diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 2b266af..5811b64 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -11,6 +11,11 @@ services: environment: POSTGRES_DB: twhelp POSTGRES_PASSWORD: twhelp + rmq: + image: rabbitmq:3.12.10-alpine + environment: + RABBITMQ_DEFAULT_USER: twhelp + RABBITMQ_DEFAULT_PASS: twhelp variables: - &go_image 'golang:1.21' @@ -30,6 +35,8 @@ steps: environment: TESTS_POSTGRES_CONNECTION_STRING: postgres://postgres:twhelp@database:5432/twhelp?sslmode=disable + TESTS_RABBITMQ_CONNECTION_STRING: + amqp://twhelp:twhelp@rmq:5672/ commands: - go test -race -coverprofile=coverage.txt -covermode=atomic ./... diff --git a/cmd/twhelp/cmd_consumer.go b/cmd/twhelp/cmd_consumer.go index cf93cda..27fa451 100644 --- a/cmd/twhelp/cmd_consumer.go +++ b/cmd/twhelp/cmd_consumer.go @@ -12,7 +12,7 @@ import ( "gitea.dwysokinski.me/twhelp/corev3/internal/health" "gitea.dwysokinski.me/twhelp/corev3/internal/health/healthfile" "gitea.dwysokinski.me/twhelp/corev3/internal/port" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill-amqp/v2/pkg/amqp" "github.com/ThreeDotsLabs/watermill/message" diff --git a/cmd/twhelp/rabbitmq.go b/cmd/twhelp/rabbitmq.go index ef684ae..2818e06 100644 --- a/cmd/twhelp/rabbitmq.go +++ b/cmd/twhelp/rabbitmq.go @@ -3,7 +3,7 @@ package main import ( "log/slog" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill-amqp/v2/pkg/amqp" "github.com/urfave/cli/v2" diff --git a/internal/adapter/adaptertest/fixture.go b/internal/adapter/adaptertest/fixture.go index 4de9039..ac18e87 100644 --- a/internal/adapter/adaptertest/fixture.go +++ b/internal/adapter/adaptertest/fixture.go @@ -5,7 +5,6 @@ import ( "io/fs" "gitea.dwysokinski.me/twhelp/corev3/internal/adapter/internal/bunmodel" - "gitea.dwysokinski.me/twhelp/corev3/internal/domain" "github.com/stretchr/testify/require" "github.com/uptrace/bun" "github.com/uptrace/bun/dbfixture" @@ -35,18 +34,3 @@ func (f *Fixture) Load(tb TestingTB, ctx context.Context, fsys fs.FS, names ...s tb.Helper() require.NoError(tb, f.f.Load(ctx, fsys, names...)) } - -func (f *Fixture) Server(tb TestingTB, id string) domain.Server { - tb.Helper() - - row, err := f.f.Row("Server." + id) - require.NoError(tb, err) - - s, ok := row.(*bunmodel.Server) - require.True(tb, ok) - - converted, err := s.ToDomain() - require.NoError(tb, err) - - return converted -} diff --git a/internal/adapter/adaptertest/postgres.go b/internal/adapter/adaptertest/postgres.go index ba63cf8..dcd2a6a 100644 --- a/internal/adapter/adaptertest/postgres.go +++ b/internal/adapter/adaptertest/postgres.go @@ -48,13 +48,13 @@ func newPostgresConfig(opts ...PostgresOption) *postgresConfig { return cfg } -func WithTTL(ttlSeconds uint) PostgresOption { +func WithPostgresTTL(ttlSeconds uint) PostgresOption { return func(cfg *postgresConfig) { cfg.ttl = ttlSeconds } } -func WithImage(image string) PostgresOption { +func WithPostgresImage(image string) PostgresOption { return func(cfg *postgresConfig) { cfg.repo, cfg.tag = docker.ParseRepositoryTag(image) } @@ -171,7 +171,7 @@ func (p *Postgres) NewBunDB(tb TestingTB) *bun.DB { } func (p *Postgres) Close() error { - if p.resource != nil { + if p != nil && p.resource != nil { if err := p.resource.Close(); err != nil { return err } diff --git a/internal/adapter/publisher_watermill_ennoblement.go b/internal/adapter/publisher_watermill_ennoblement.go index 79ee1ea..e4e1871 100644 --- a/internal/adapter/publisher_watermill_ennoblement.go +++ b/internal/adapter/publisher_watermill_ennoblement.go @@ -5,7 +5,7 @@ import ( "fmt" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/adapter/publisher_watermill_player.go b/internal/adapter/publisher_watermill_player.go index f36cb2b..ebb804d 100644 --- a/internal/adapter/publisher_watermill_player.go +++ b/internal/adapter/publisher_watermill_player.go @@ -5,7 +5,7 @@ import ( "fmt" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/adapter/publisher_watermill_server.go b/internal/adapter/publisher_watermill_server.go index 86f84b3..e60954b 100644 --- a/internal/adapter/publisher_watermill_server.go +++ b/internal/adapter/publisher_watermill_server.go @@ -5,7 +5,7 @@ import ( "fmt" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/adapter/publisher_watermill_tribe.go b/internal/adapter/publisher_watermill_tribe.go index 0a1ede9..cd7c8a9 100644 --- a/internal/adapter/publisher_watermill_tribe.go +++ b/internal/adapter/publisher_watermill_tribe.go @@ -5,7 +5,7 @@ import ( "fmt" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/adapter/publisher_watermill_village.go b/internal/adapter/publisher_watermill_village.go index 9fd6e58..590d83d 100644 --- a/internal/adapter/publisher_watermill_village.go +++ b/internal/adapter/publisher_watermill_village.go @@ -5,7 +5,7 @@ import ( "fmt" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/adapter/repository_bun_tribe_change.go b/internal/adapter/repository_bun_tribe_change.go index 7639d34..2106154 100644 --- a/internal/adapter/repository_bun_tribe_change.go +++ b/internal/adapter/repository_bun_tribe_change.go @@ -81,6 +81,10 @@ func (a listTribeChangesParamsApplier) apply(q *bun.SelectQuery) *bun.SelectQuer q = q.Order("tc.created_at ASC") case domain.TribeChangeSortCreatedAtDESC: q = q.Order("tc.created_at DESC") + case domain.TribeChangeSortIDASC: + q = q.Order("tc.id ASC") + case domain.TribeChangeSortIDDESC: + q = q.Order("tc.id DESC") case domain.TribeChangeSortServerKeyASC: q = q.Order("tc.server_key ASC") case domain.TribeChangeSortServerKeyDESC: diff --git a/internal/adapter/repository_tribe_change_test.go b/internal/adapter/repository_tribe_change_test.go index ae9a4e1..1ed4fd9 100644 --- a/internal/adapter/repository_tribe_change_test.go +++ b/internal/adapter/repository_tribe_change_test.go @@ -205,6 +205,58 @@ func testTribeChangeRepository(t *testing.T, newRepos func(t *testing.T) reposit assert.NotEmpty(t, total) }, }, + { + name: "OK: sort=[id ASC]", + params: func(t *testing.T) domain.ListTribeChangesParams { + t.Helper() + params := domain.NewListTribeChangesParams() + require.NoError(t, params.SetSort([]domain.TribeChangeSort{ + domain.TribeChangeSortIDASC, + })) + return params + }, + assertTribeChanges: func(t *testing.T, params domain.ListTribeChangesParams, tribeChanges domain.TribeChanges) { + t.Helper() + assert.NotEmpty(t, len(tribeChanges)) + assert.True(t, slices.IsSortedFunc(tribeChanges, func(a, b domain.TribeChange) int { + return cmp.Compare(a.ID(), b.ID()) + })) + }, + assertError: func(t *testing.T, err error) { + t.Helper() + require.NoError(t, err) + }, + assertTotal: func(t *testing.T, params domain.ListTribeChangesParams, total int) { + t.Helper() + assert.NotEmpty(t, total) + }, + }, + { + name: "OK: sort=[id DESC]", + params: func(t *testing.T) domain.ListTribeChangesParams { + t.Helper() + params := domain.NewListTribeChangesParams() + require.NoError(t, params.SetSort([]domain.TribeChangeSort{ + domain.TribeChangeSortIDDESC, + })) + return params + }, + assertTribeChanges: func(t *testing.T, params domain.ListTribeChangesParams, tribeChanges domain.TribeChanges) { + t.Helper() + assert.NotEmpty(t, len(tribeChanges)) + assert.True(t, slices.IsSortedFunc(tribeChanges, func(a, b domain.TribeChange) int { + return cmp.Compare(a.ID(), b.ID()) * -1 + })) + }, + assertError: func(t *testing.T, err error) { + t.Helper() + require.NoError(t, err) + }, + assertTotal: func(t *testing.T, params domain.ListTribeChangesParams, total int) { + t.Helper() + assert.NotEmpty(t, total) + }, + }, { name: fmt.Sprintf("OK: serverKeys=[%s]", randTribeChange.ServerKey()), params: func(t *testing.T) domain.ListTribeChangesParams { diff --git a/internal/domain/tribe_change.go b/internal/domain/tribe_change.go index b0a788f..e80d4cc 100644 --- a/internal/domain/tribe_change.go +++ b/internal/domain/tribe_change.go @@ -207,6 +207,8 @@ type TribeChangeSort uint8 const ( TribeChangeSortCreatedAtASC TribeChangeSort = iota + 1 TribeChangeSortCreatedAtDESC + TribeChangeSortIDASC + TribeChangeSortIDDESC TribeChangeSortServerKeyASC TribeChangeSortServerKeyDESC ) diff --git a/internal/port/consumer_watermill_ennoblement.go b/internal/port/consumer_watermill_ennoblement.go index 0c44719..527cea1 100644 --- a/internal/port/consumer_watermill_ennoblement.go +++ b/internal/port/consumer_watermill_ennoblement.go @@ -3,7 +3,7 @@ package port import ( "gitea.dwysokinski.me/twhelp/corev3/internal/app" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/port/consumer_watermill_player.go b/internal/port/consumer_watermill_player.go index 25fbb8a..55021e3 100644 --- a/internal/port/consumer_watermill_player.go +++ b/internal/port/consumer_watermill_player.go @@ -3,7 +3,7 @@ package port import ( "gitea.dwysokinski.me/twhelp/corev3/internal/app" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/port/consumer_watermill_server.go b/internal/port/consumer_watermill_server.go index f4b632e..df0e41f 100644 --- a/internal/port/consumer_watermill_server.go +++ b/internal/port/consumer_watermill_server.go @@ -3,7 +3,7 @@ package port import ( "gitea.dwysokinski.me/twhelp/corev3/internal/app" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/port/consumer_watermill_tribe.go b/internal/port/consumer_watermill_tribe.go index dc8485c..9f62ca6 100644 --- a/internal/port/consumer_watermill_tribe.go +++ b/internal/port/consumer_watermill_tribe.go @@ -3,7 +3,7 @@ package port import ( "gitea.dwysokinski.me/twhelp/corev3/internal/app" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/port/consumer_watermill_village.go b/internal/port/consumer_watermill_village.go index e476d58..b7d1fd9 100644 --- a/internal/port/consumer_watermill_village.go +++ b/internal/port/consumer_watermill_village.go @@ -3,7 +3,7 @@ package port import ( "gitea.dwysokinski.me/twhelp/corev3/internal/app" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/internal/service/data_sync_test.go b/internal/service/data_sync_test.go new file mode 100644 index 0000000..9b5c9e5 --- /dev/null +++ b/internal/service/data_sync_test.go @@ -0,0 +1,597 @@ +package service_test + +import ( + "context" + "encoding/json" + "fmt" + "io" + "io/fs" + "net/http" + "net/http/httptest" + "net/url" + "os" + "os/signal" + "path" + "syscall" + "testing" + "time" + + "gitea.dwysokinski.me/twhelp/corev3/internal/adapter" + "gitea.dwysokinski.me/twhelp/corev3/internal/app" + "gitea.dwysokinski.me/twhelp/corev3/internal/domain" + "gitea.dwysokinski.me/twhelp/corev3/internal/port" + "gitea.dwysokinski.me/twhelp/corev3/internal/tw" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillamqptest" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermilltest" + "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-amqp/v2/pkg/amqp" + "github.com/brianvoe/gofakeit/v6" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +// we can't run the subtests in parallel + +//nolint:tparallel +func TestDataSync(t *testing.T) { + t.Parallel() + + if testing.Short() { + t.Skip("skipping long-running test") + } + + ctxTimeout, cancel := context.WithTimeout(context.Background(), 150*time.Second) + defer cancel() + + ctx, stop := signal.NotifyContext(ctxTimeout, os.Interrupt, syscall.SIGTERM) + defer stop() + + // bun + db := postgres.NewBunDB(t) + + // watermill + marshaler := watermillmsg.JSONMarshaler{NewUUID: watermill.NewUUID} + generateExchangeAndRoutingKeyName := func(topic string) string { + return topic + "_sync_data" + } + rmqConn := rabbitMQ.NewConnection(t) + nopLogger := watermill.NopLogger{} + serverPub, serverSub := watermillamqptest.NewPubSub( + t, + rmqConn, + amqp.GenerateQueueNameTopicNameWithSuffix("_sync_data_server"), + generateExchangeAndRoutingKeyName, + ) + playerPub, playerSub := watermillamqptest.NewPubSub( + t, + rmqConn, + amqp.GenerateQueueNameTopicNameWithSuffix("_sync_data_player"), + generateExchangeAndRoutingKeyName, + ) + tribePub, tribeSub := watermillamqptest.NewPubSub( + t, + rmqConn, + amqp.GenerateQueueNameTopicNameWithSuffix("_sync_data_tribe"), + generateExchangeAndRoutingKeyName, + ) + villagePub, villageSub := watermillamqptest.NewPubSub( + t, + rmqConn, + amqp.GenerateQueueNameTopicNameWithSuffix("_sync_data_village"), + generateExchangeAndRoutingKeyName, + ) + + // events/commands + serverCmdSync := gofakeit.UUID() + serverEventSynced := gofakeit.UUID() + playerEventSynced := gofakeit.UUID() + tribeEventSynced := gofakeit.UUID() + villageEventSynced := gofakeit.UUID() + + // TW service + + // filesys is set later in this test to os.DirFS("./testdata/syncdata/stage{n}") + var filesys fs.FS + + srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + if r.Method != http.MethodGet { + w.WriteHeader(http.StatusMethodNotAllowed) + return + } + + u, err := url.Parse(r.URL.Query().Get("url")) + if err != nil { + w.WriteHeader(http.StatusBadRequest) + return + } + + fname := u.Path + u.Query().Get("func") + f, err := filesys.Open(path.Join(u.Host, fname)) + if err != nil { + f, err = filesys.Open(path.Join("default", fname)) + } + if err != nil { + w.WriteHeader(http.StatusNotFound) + return + } + defer func() { + _ = f.Close() + }() + + w.WriteHeader(http.StatusOK) + _, _ = io.Copy(w, f) + })) + t.Cleanup(srv.Close) + + twSvc := adapter.NewTWHTTP(tw.NewClient(tw.WithHTTPClient(&http.Client{ + Transport: &urlChangerTransport{ + url: srv.URL, + transport: srv.Client().Transport, + }, + }))) + + // adapters + versionRepo := adapter.NewVersionBunRepository(db) + serverRepo := adapter.NewServerBunRepository(db) + tribeRepo := adapter.NewTribeBunRepository(db) + playerRepo := adapter.NewPlayerBunRepository(db) + villageRepo := adapter.NewVillageBunRepository(db) + tribeChangeRepo := adapter.NewTribeChangeBunRepository(db) + serverPublisher := adapter.NewServerWatermillPublisher(serverPub, marshaler, serverCmdSync, serverEventSynced) + playerPublisher := adapter.NewPlayerWatermillPublisher(playerPub, marshaler, playerEventSynced) + tribePublisher := adapter.NewTribeWatermillPublisher(tribePub, marshaler, tribeEventSynced) + villagePublisher := adapter.NewVillageWatermillPublisher(villagePub, marshaler, villageEventSynced) + + // services + versionSvc := app.NewVersionService(versionRepo) + serverSvc := app.NewServerService(serverRepo, twSvc, serverPublisher) + tribeChangeSvc := app.NewTribeChangeService(tribeChangeRepo) + tribeSvc := app.NewTribeService(tribeRepo, twSvc, tribePublisher) + playerSvc := app.NewPlayerService(playerRepo, tribeChangeSvc, twSvc, playerPublisher) + villageSvc := app.NewVillageService(villageRepo, twSvc, villagePublisher) + dataSyncSvc := app.NewDataSyncService(versionSvc, serverSvc, serverPublisher, nil) + + watermilltest.RunRouterWithContext( + t, + ctx, + port.NewServerWatermillConsumer( + serverSvc, + serverSub, + nopLogger, + marshaler, + serverCmdSync, + serverEventSynced, + tribeEventSynced, + playerEventSynced, + villageEventSynced, + "", + ), + port.NewTribeWatermillConsumer(tribeSvc, tribeSub, nopLogger, marshaler, serverEventSynced, villageEventSynced), + port.NewPlayerWatermillConsumer(playerSvc, playerSub, nopLogger, marshaler, serverEventSynced), + port.NewVillageWatermillConsumer(villageSvc, villageSub, nopLogger, marshaler, serverEventSynced), + ) + + for _, stage := range []uint{1, 2} { + stage := stage + + t.Run(fmt.Sprintf("stage %d", stage), func(t *testing.T) { + filesys = os.DirFS(fmt.Sprintf("./testdata/syncdata/stage%d", stage)) + + require.NoError(t, dataSyncSvc.TriggerDataSync(ctx)) + + var expectedServers []map[string]any + readJSONFile(t, filesys, path.Join("expected", "servers.json"), &expectedServers) + assert.EventuallyWithTf(t, func(collect *assert.CollectT) { + require.NoError(collect, ctx.Err()) + + listParams := domain.NewListServersParams() + require.NoError(collect, listParams.SetSort([]domain.ServerSort{ + domain.ServerSortKeyASC, + })) + require.NoError(collect, listParams.SetSpecial(domain.NullBool{ + Value: false, + Valid: true, + })) + require.NoError(collect, listParams.SetLimit(domain.ServerListMaxLimit)) + + allServers := make(domain.Servers, 0, len(expectedServers)) + + for { + servers, err := serverRepo.List(ctx, listParams) + require.NoError(collect, err) + + if len(servers) == 0 { + break + } + + allServers = append(allServers, servers...) + + require.NoError(collect, listParams.SetKeyGT(domain.NullString{ + Value: servers[len(servers)-1].Key(), + Valid: true, + })) + } + + if !assert.Len(collect, allServers, len(expectedServers)) { + return + } + for i, expected := range expectedServers { + actual := allServers[i] + msg := fmt.Sprintf("Key=%s", expected["Key"]) + + assert.Equal(collect, expected["Key"], actual.Key(), msg) + assert.Equal(collect, expected["URL"], actual.URL().String(), msg) + assert.Equal(collect, expected["Open"], actual.Open(), msg) + assert.Equal(collect, expected["VersionCode"], actual.VersionCode(), msg) + assert.EqualValues(collect, expected["NumPlayers"], actual.NumPlayers(), msg) + assert.EqualValues(collect, expected["NumTribes"], actual.NumTribes(), msg) + assert.EqualValues(collect, expected["NumVillages"], actual.NumVillages(), msg) + assert.EqualValues(collect, expected["NumPlayerVillages"], actual.NumPlayerVillages(), msg) + assert.EqualValues(collect, expected["NumBonusVillages"], actual.NumBonusVillages(), msg) + assert.EqualValues( + collect, + expected["NumBarbarianVillages"], + actual.NumBarbarianVillages(), + "Key=%s", + expected["Key"], + ) + assert.WithinDuration(collect, time.Now(), actual.PlayerDataSyncedAt(), time.Minute, msg) + assert.WithinDuration(collect, time.Now(), actual.TribeDataSyncedAt(), time.Minute, msg) + assert.WithinDuration(collect, time.Now(), actual.VillageDataSyncedAt(), time.Minute, msg) + assert.JSONEqf( + collect, + string(marshalJSON(collect, expected["Config"])), + string(marshalJSON(collect, serverConfigToMap(actual.Config()))), + "Key=%s", + expected["Key"], + ) + assert.JSONEq( + collect, + string(marshalJSON(collect, expected["BuildingInfo"])), + string(marshalJSON(collect, buildingInfoToMap(actual.BuildingInfo()))), + msg, + ) + assert.JSONEq( + collect, + string(marshalJSON(collect, expected["UnitInfo"])), + string(marshalJSON(collect, unitInfoToMap(actual.UnitInfo()))), + msg, + ) + } + }, 60*time.Second, time.Second, "servers") + + var expectedTribes []map[string]any + readJSONFile(t, filesys, path.Join("expected", "tribes.json"), &expectedTribes) + assert.EventuallyWithT(t, func(collect *assert.CollectT) { + require.NoError(collect, ctx.Err()) + + listParams := domain.NewListTribesParams() + require.NoError(collect, listParams.SetSort([]domain.TribeSort{ + domain.TribeSortServerKeyASC, + domain.TribeSortIDASC, + })) + require.NoError(collect, listParams.SetLimit(domain.TribeListMaxLimit)) + + allTribes := make(domain.Tribes, 0, len(expectedTribes)) + + for { + tribes, err := tribeRepo.List(ctx, listParams) + require.NoError(collect, err) + + if len(tribes) == 0 { + break + } + + allTribes = append(allTribes, tribes...) + + require.NoError(collect, listParams.SetIDGT(domain.NullInt{ + Value: tribes[len(tribes)-1].ID(), + Valid: true, + })) + } + + if !assert.Len(collect, allTribes, len(expectedTribes)) { + return + } + for i, expected := range expectedTribes { + actual := allTribes[i] + msg := fmt.Sprintf("ID=%.0f,ServerKey=%s", expected["ID"], expected["ServerKey"]) + + assert.EqualValues(collect, expected["ID"], actual.ID(), msg) + assert.Equal(collect, expected["ServerKey"], actual.ServerKey(), msg) + assert.Equal(collect, expected["Name"], actual.Name(), msg) + assert.Equal(collect, expected["Tag"], actual.Tag(), msg) + assert.EqualValues(collect, expected["NumMembers"], actual.NumMembers(), msg) + assert.EqualValues(collect, expected["NumVillages"], actual.NumVillages(), msg) + assert.EqualValues(collect, expected["Points"], actual.Points(), msg) + assert.EqualValues(collect, expected["AllPoints"], actual.AllPoints(), msg) + assert.EqualValues(collect, expected["Rank"], actual.Rank(), msg) + assert.EqualValues(collect, expected["RankAtt"], actual.OD().RankAtt(), msg) + assert.EqualValues(collect, expected["ScoreAtt"], actual.OD().ScoreAtt(), msg) + assert.EqualValues(collect, expected["RankDef"], actual.OD().RankDef(), msg) + assert.EqualValues(collect, expected["ScoreDef"], actual.OD().ScoreDef(), msg) + assert.EqualValues(collect, expected["RankSup"], actual.OD().RankSup(), msg) + assert.EqualValues(collect, expected["ScoreSup"], actual.OD().ScoreSup(), msg) + assert.EqualValues(collect, expected["RankTotal"], actual.OD().RankTotal(), msg) + assert.EqualValues(collect, expected["ScoreTotal"], actual.OD().ScoreTotal(), msg) + assert.Equal(collect, expected["ProfileURL"], actual.ProfileURL().String(), msg) + assert.EqualValues(collect, expected["Dominance"], actual.Dominance(), msg) + assert.EqualValues(collect, expected["BestRank"], actual.BestRank(), msg) + assert.NotEmpty(collect, actual.BestRankAt(), msg) + assert.EqualValues(collect, expected["MostPoints"], actual.MostPoints(), msg) + assert.NotEmpty(collect, actual.MostPointsAt(), msg) + assert.EqualValues(collect, expected["MostVillages"], actual.MostVillages(), msg) + assert.NotEmpty(collect, actual.MostVillagesAt(), msg) + if deletedAt, ok := expected["DeletedAt"].(string); ok && (time.Time{}).Format(time.RFC3339) != deletedAt { + assert.NotEmpty(collect, actual.DeletedAt(), msg) + } else { + assert.Empty(collect, actual.DeletedAt(), msg) + } + } + }, 60*time.Second, time.Second, "tribes") + + var expectedPlayers []map[string]any + readJSONFile(t, filesys, path.Join("expected", "players.json"), &expectedPlayers) + assert.EventuallyWithT(t, func(collect *assert.CollectT) { + require.NoError(collect, ctx.Err()) + + listParams := domain.NewListPlayersParams() + require.NoError(collect, listParams.SetSort([]domain.PlayerSort{ + domain.PlayerSortServerKeyASC, + domain.PlayerSortIDASC, + })) + require.NoError(collect, listParams.SetLimit(domain.PlayerListMaxLimit)) + + allPlayers := make(domain.Players, 0, len(expectedPlayers)) + + for { + players, err := playerRepo.List(ctx, listParams) + require.NoError(collect, err) + + if len(players) == 0 { + break + } + + allPlayers = append(allPlayers, players...) + + require.NoError(collect, listParams.SetIDGT(domain.NullInt{ + Value: players[len(players)-1].ID(), + Valid: true, + })) + } + + if !assert.Len(collect, allPlayers, len(expectedPlayers)) { + return + } + for i, expected := range expectedPlayers { + actual := allPlayers[i] + msg := fmt.Sprintf("ID=%.0f,ServerKey=%s", expected["ID"], expected["ServerKey"]) + + assert.EqualValues(collect, expected["ID"], actual.ID(), msg) + assert.Equal(collect, expected["ServerKey"], actual.ServerKey(), msg) + assert.Equal(collect, expected["Name"], actual.Name(), msg) + assert.EqualValues(collect, expected["NumVillages"], actual.NumVillages(), msg) + assert.EqualValues(collect, expected["Points"], actual.Points(), msg) + assert.EqualValues(collect, expected["Rank"], actual.Rank(), msg) + assert.EqualValues(collect, expected["TribeID"], actual.TribeID(), msg) + assert.EqualValues(collect, expected["RankAtt"], actual.OD().RankAtt(), msg) + assert.EqualValues(collect, expected["ScoreAtt"], actual.OD().ScoreAtt(), msg) + assert.EqualValues(collect, expected["RankDef"], actual.OD().RankDef(), msg) + assert.EqualValues(collect, expected["ScoreDef"], actual.OD().ScoreDef(), msg) + assert.EqualValues(collect, expected["RankSup"], actual.OD().RankSup(), msg) + assert.EqualValues(collect, expected["ScoreSup"], actual.OD().ScoreSup(), msg) + assert.EqualValues(collect, expected["RankTotal"], actual.OD().RankTotal(), msg) + assert.EqualValues(collect, expected["ScoreTotal"], actual.OD().ScoreTotal(), msg) + assert.Equal(collect, expected["ProfileURL"], actual.ProfileURL().String(), msg) + assert.EqualValues(collect, expected["BestRank"], actual.BestRank(), msg) + assert.NotEmpty(collect, actual.BestRankAt(), msg) + assert.EqualValues(collect, expected["MostPoints"], actual.MostPoints(), msg) + assert.NotEmpty(collect, actual.MostPointsAt(), msg) + assert.EqualValues(collect, expected["MostVillages"], actual.MostVillages(), msg) + assert.NotEmpty(collect, actual.MostVillagesAt(), msg) + if deletedAt, ok := expected["DeletedAt"].(string); ok && (time.Time{}).Format(time.RFC3339) != deletedAt { + assert.NotEmpty(collect, actual.DeletedAt(), msg) + } else { + assert.Empty(collect, actual.DeletedAt(), msg) + } + } + }, 60*time.Second, time.Second, "players") + + var expectedVillages []map[string]any + readJSONFile(t, filesys, path.Join("expected", "villages.json"), &expectedVillages) + assert.EventuallyWithT(t, func(collect *assert.CollectT) { + require.NoError(collect, ctx.Err()) + + listParams := domain.NewListVillagesParams() + require.NoError(collect, listParams.SetSort([]domain.VillageSort{ + domain.VillageSortServerKeyASC, + domain.VillageSortIDASC, + })) + require.NoError(collect, listParams.SetLimit(domain.VillageListMaxLimit)) + + allVillages := make(domain.Villages, 0, len(expectedVillages)) + + for { + villages, err := villageRepo.List(ctx, listParams) + require.NoError(collect, err) + + if len(villages) == 0 { + break + } + + allVillages = append(allVillages, villages...) + + require.NoError(collect, listParams.SetIDGT(domain.NullInt{ + Value: villages[len(villages)-1].ID(), + Valid: true, + })) + } + + if !assert.Len(collect, allVillages, len(expectedVillages)) { + return + } + for i, expected := range expectedVillages { + actual := allVillages[i] + msg := fmt.Sprintf("ID=%.0f,ServerKey=%s", expected["ID"], expected["ServerKey"]) + + assert.EqualValues(collect, expected["ID"], actual.ID(), msg) + assert.Equal(collect, expected["ServerKey"], actual.ServerKey(), msg) + assert.Equal(collect, expected["Name"], actual.Name(), msg) + assert.EqualValues(collect, expected["Points"], actual.Points(), msg) + assert.EqualValues(collect, expected["X"], actual.X(), msg) + assert.EqualValues(collect, expected["Y"], actual.Y(), msg) + assert.Equal(collect, expected["Continent"], actual.Continent(), msg) + assert.EqualValues(collect, expected["Bonus"], actual.Bonus(), msg) + assert.EqualValues(collect, expected["PlayerID"], actual.PlayerID(), msg) + assert.Equal(collect, expected["ProfileURL"], actual.ProfileURL().String(), msg) + } + }, 60*time.Second, time.Second, "villages") + + var expectedTribeChanges []map[string]any + readJSONFile(t, filesys, path.Join("expected", "tribe-changes.json"), &expectedTribeChanges) + assert.EventuallyWithT(t, func(collect *assert.CollectT) { + require.NoError(collect, ctx.Err()) + + listParams := domain.NewListTribeChangesParams() + require.NoError(collect, listParams.SetSort([]domain.TribeChangeSort{ + domain.TribeChangeSortIDASC, + })) + require.NoError(collect, listParams.SetLimit(domain.TribeChangeListMaxLimit)) + + allTribeChanges := make(domain.TribeChanges, 0, len(expectedTribeChanges)) + + for { + tcs, err := tribeChangeRepo.List(ctx, listParams) + require.NoError(collect, err) + + if len(tcs) == 0 { + break + } + + allTribeChanges = append(allTribeChanges, tcs...) + + require.NoError(collect, listParams.SetOffset(listParams.Offset()+domain.TribeChangeListMaxLimit)) + } + + if !assert.Len(collect, allTribeChanges, len(expectedTribeChanges)) { + return + } + for i, expected := range expectedTribeChanges { + actual := allTribeChanges[i] + msg := fmt.Sprintf("ID=%.0f,ServerKey=%s", expected["ID"], expected["ServerKey"]) + + assert.EqualValues(collect, expected["ID"], actual.ID(), msg) + assert.Equal(collect, expected["ServerKey"], actual.ServerKey(), msg) + assert.EqualValues(collect, expected["PlayerID"], actual.PlayerID(), msg) + assert.EqualValues(collect, expected["OldTribeID"], actual.OldTribeID(), msg) + assert.EqualValues(collect, expected["NewTribeID"], actual.NewTribeID(), msg) + } + }, 60*time.Second, time.Second, "tribe changes") + }) + } +} + +type urlChangerTransport struct { + url string + transport http.RoundTripper +} + +func (t *urlChangerTransport) RoundTrip(r *http.Request) (*http.Response, error) { + u, err := url.Parse(t.url) + if err != nil { + return nil, err + } + u.RawQuery = url.Values{ + "url": []string{r.URL.String()}, + }.Encode() + + r2 := r.Clone(r.Context()) + r2.URL = u + + return t.transport.RoundTrip(r2) +} + +func readJSONFile(tb testing.TB, filesys fs.FS, name string, v any) { + tb.Helper() + + f, err := filesys.Open(name) + require.NoError(tb, err) + defer func() { + _ = f.Close() + }() + + require.NoError(tb, json.NewDecoder(f).Decode(v)) +} + +func serverConfigToMap(cfg domain.ServerConfig) map[string]any { + return map[string]any{ + "Speed": cfg.Speed(), + "UnitSpeed": cfg.UnitSpeed(), + "Moral": cfg.Moral(), + "Build": cfg.Build(), + "Misc": cfg.Misc(), + "Commands": cfg.Commands(), + "Newbie": cfg.Newbie(), + "Game": cfg.Game(), + "Buildings": cfg.Buildings(), + "Snob": cfg.Snob(), + "Ally": cfg.Ally(), + "Coord": cfg.Coord(), + "Sitter": cfg.Sitter(), + "Sleep": cfg.Sleep(), + "Night": cfg.Night(), + "Win": cfg.Win(), + } +} + +func unitInfoToMap(info domain.UnitInfo) map[string]any { + return map[string]any{ + "Spear": info.Spear(), + "Sword": info.Sword(), + "Axe": info.Axe(), + "Archer": info.Archer(), + "Spy": info.Spy(), + "Light": info.Light(), + "Marcher": info.Marcher(), + "Heavy": info.Heavy(), + "Ram": info.Ram(), + "Catapult": info.Catapult(), + "Knight": info.Knight(), + "Snob": info.Snob(), + "Militia": info.Militia(), + } +} + +func buildingInfoToMap(info domain.BuildingInfo) map[string]any { + return map[string]any{ + "Main": info.Main(), + "Barracks": info.Barracks(), + "Stable": info.Stable(), + "Garage": info.Garage(), + "Watchtower": info.Watchtower(), + "Snob": info.Snob(), + "Smith": info.Smith(), + "Place": info.Place(), + "Statue": info.Statue(), + "Market": info.Market(), + "Wood": info.Wood(), + "Stone": info.Stone(), + "Iron": info.Iron(), + "Farm": info.Farm(), + "Storage": info.Storage(), + "Hide": info.Hide(), + "Wall": info.Wall(), + } +} + +func marshalJSON(tb require.TestingT, v any) []byte { + if h, ok := tb.(interface { + Helper() + }); ok { + h.Helper() + } + b, err := json.Marshal(v) + require.NoError(tb, err) + return b +} diff --git a/internal/service/service_test.go b/internal/service/service_test.go new file mode 100644 index 0000000..244983d --- /dev/null +++ b/internal/service/service_test.go @@ -0,0 +1,56 @@ +package service_test + +import ( + "flag" + "log" + "os" + "testing" + + "gitea.dwysokinski.me/twhelp/corev3/internal/adapter/adaptertest" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillamqptest" + "github.com/ory/dockertest/v3" +) + +var ( + postgres *adaptertest.Postgres + rabbitMQ *watermillamqptest.RabbitMQ +) + +func TestMain(m *testing.M) { + os.Exit(testMainWrapper(m)) +} + +func testMainWrapper(m *testing.M) int { + // https://github.com/golang/go/blob/7cfa7d69259590319524c3715df4a39b39924bc3/src/testing/testing.go#L224 + flag.Parse() + + if testing.Short() { + return m.Run() + } + + pool, err := dockertest.NewPool("") + if err != nil { + log.Println("couldn't construct dockertest.Pool:", err) + return 1 + } + + postgres, err = adaptertest.NewPostgres(pool, adaptertest.WithPostgresTTL(180)) + if err != nil { + log.Println("couldn't construct adaptertest.Postgres:", err) + return 1 + } + defer func() { + _ = postgres.Close() + }() + + rabbitMQ, err = watermillamqptest.NewRabbitMQ(pool, watermillamqptest.WithRabbitMQTTL(180)) + if err != nil { + log.Println("couldn't construct watermillamqptest.RabbitMQ:", err) + return 1 + } + defer func() { + _ = rabbitMQ.Close() + }() + + return m.Run() +} diff --git a/internal/service/testdata/syncdata/stage1/default/backend/get_servers.php b/internal/service/testdata/syncdata/stage1/default/backend/get_servers.php new file mode 100644 index 0000000..c856afc --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/default/backend/get_servers.php @@ -0,0 +1 @@ +a:0:{} \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage1/expected/players.json b/internal/service/testdata/syncdata/stage1/expected/players.json new file mode 100644 index 0000000..82cd359 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/expected/players.json @@ -0,0 +1 @@ +[{"RankAtt":0,"ScoreAtt":0,"RankDef":1260,"ScoreDef":61670,"RankSup":703,"ScoreSup":48733,"RankTotal":1359,"ScoreTotal":110403,"ID":6948,"Name":"Bosman7","NumVillages":1,"Points":209,"Rank":2285,"TribeID":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6948","BestRank":2285,"BestRankAt":"2023-02-15T06:22:53.250215Z","MostPoints":209,"MostPointsAt":"2023-02-15T06:22:53.250215Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250215Z","LastActivityAt":"2023-02-15T06:22:53.250215Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":593,"ScoreAtt":222346,"RankDef":1815,"ScoreDef":11560,"RankSup":449,"ScoreSup":230726,"RankTotal":866,"ScoreTotal":464632,"ID":17714,"Name":"skobol","NumVillages":81,"Points":472873,"Rank":278,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=17714","BestRank":278,"BestRankAt":"2023-02-15T06:22:53.250216Z","MostPoints":472873,"MostPointsAt":"2023-02-15T06:22:53.250216Z","MostVillages":81,"MostVillagesAt":"2023-02-15T06:22:53.250216Z","LastActivityAt":"2023-02-15T06:22:53.250216Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250575Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":88,"ScoreAtt":3694783,"RankDef":410,"ScoreDef":719818,"RankSup":35,"ScoreSup":4366901,"RankTotal":87,"ScoreTotal":8781502,"ID":33900,"Name":"Mwito","NumVillages":254,"Points":2306948,"Rank":33,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=33900","BestRank":33,"BestRankAt":"2023-02-15T06:22:53.250217Z","MostPoints":2306948,"MostPointsAt":"2023-02-15T06:22:53.250218Z","MostVillages":254,"MostVillagesAt":"2023-02-15T06:22:53.250218Z","LastActivityAt":"2023-02-15T06:22:53.250218Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250576Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":40666,"Name":"OcHnIK","NumVillages":1,"Points":26,"Rank":2621,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=40666","BestRank":2621,"BestRankAt":"2023-02-15T06:22:53.250218Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250218Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250218Z","LastActivityAt":"2023-02-15T06:22:53.250218Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250577Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":42635,"Name":"to tylko hastrat","NumVillages":1,"Points":26,"Rank":2622,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=42635","BestRank":2622,"BestRankAt":"2023-02-15T06:22:53.250219Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250219Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250219Z","LastActivityAt":"2023-02-15T06:22:53.250219Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250577Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":743,"ScoreAtt":108523,"RankDef":1847,"ScoreDef":10080,"RankSup":668,"ScoreSup":61991,"RankTotal":1188,"ScoreTotal":180594,"ID":50930,"Name":"miki11","NumVillages":1,"Points":151,"Rank":2376,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=50930","BestRank":2376,"BestRankAt":"2023-02-15T06:22:53.250219Z","MostPoints":151,"MostPointsAt":"2023-02-15T06:22:53.250219Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250219Z","LastActivityAt":"2023-02-15T06:22:53.250219Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250578Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":536,"ScoreDef":469152,"RankSup":971,"ScoreSup":6330,"RankTotal":859,"ScoreTotal":475482,"ID":61791,"Name":"Macp","NumVillages":5,"Points":30606,"Rank":810,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=61791","BestRank":810,"BestRankAt":"2023-02-15T06:22:53.25022Z","MostPoints":30606,"MostPointsAt":"2023-02-15T06:22:53.25022Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.25022Z","LastActivityAt":"2023-02-15T06:22:53.25022Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250579Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":793,"ScoreAtt":84826,"RankDef":375,"ScoreDef":804093,"RankSup":1002,"ScoreSup":5051,"RankTotal":660,"ScoreTotal":893970,"ID":82782,"Name":"pinkiola","NumVillages":1,"Points":1646,"Rank":1723,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=82782","BestRank":1723,"BestRankAt":"2023-02-15T06:22:53.25022Z","MostPoints":1646,"MostPointsAt":"2023-02-15T06:22:53.25022Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25022Z","LastActivityAt":"2023-02-15T06:22:53.25022Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":443,"ScoreDef":637385,"RankSup":983,"ScoreSup":5983,"RankTotal":759,"ScoreTotal":643368,"ID":87575,"Name":"VEGE","NumVillages":2,"Points":10713,"Rank":1065,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=87575","BestRank":1065,"BestRankAt":"2023-02-15T06:22:53.250222Z","MostPoints":10713,"MostPointsAt":"2023-02-15T06:22:53.250222Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250222Z","LastActivityAt":"2023-02-15T06:22:53.250222Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":87825,"Name":"Antoni93","NumVillages":1,"Points":41,"Rank":2607,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=87825","BestRank":2607,"BestRankAt":"2023-02-15T06:22:53.250222Z","MostPoints":41,"MostPointsAt":"2023-02-15T06:22:53.250222Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250222Z","LastActivityAt":"2023-02-15T06:22:53.250222Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250583Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1401,"ScoreAtt":4149,"RankDef":566,"ScoreDef":409283,"RankSup":932,"ScoreSup":9160,"RankTotal":893,"ScoreTotal":422592,"ID":89637,"Name":"Mabes","NumVillages":0,"Points":0,"Rank":2882,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=89637","BestRank":2882,"BestRankAt":"2023-02-15T06:22:53.250223Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250223Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250223Z","LastActivityAt":"2023-02-15T06:22:53.250223Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":98294,"Name":"Antek93","NumVillages":1,"Points":500,"Rank":2029,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=98294","BestRank":2029,"BestRankAt":"2023-02-15T06:22:53.250223Z","MostPoints":500,"MostPointsAt":"2023-02-15T06:22:53.250223Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250223Z","LastActivityAt":"2023-02-15T06:22:53.250224Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1876,"ScoreAtt":88,"RankDef":470,"ScoreDef":564853,"RankSup":0,"ScoreSup":0,"RankTotal":792,"ScoreTotal":564941,"ID":100452,"Name":"hirek 58","NumVillages":1,"Points":2861,"Rank":1545,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=100452","BestRank":1545,"BestRankAt":"2023-02-15T06:22:53.250224Z","MostPoints":2861,"MostPointsAt":"2023-02-15T06:22:53.250224Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250224Z","LastActivityAt":"2023-02-15T06:22:53.250224Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250585Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1913,"ScoreDef":7522,"RankSup":0,"ScoreSup":0,"RankTotal":2056,"ScoreTotal":7522,"ID":101074,"Name":"Krnik","NumVillages":2,"Points":6613,"Rank":1235,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=101074","BestRank":1235,"BestRankAt":"2023-02-15T06:22:53.250224Z","MostPoints":6613,"MostPointsAt":"2023-02-15T06:22:53.250225Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250224Z","LastActivityAt":"2023-02-15T06:22:53.250225Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250587Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2487,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2563,"ScoreTotal":4,"ID":108256,"Name":"fafex","NumVillages":1,"Points":471,"Rank":2046,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=108256","BestRank":2046,"BestRankAt":"2023-02-15T06:22:53.250225Z","MostPoints":471,"MostPointsAt":"2023-02-15T06:22:53.250225Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250225Z","LastActivityAt":"2023-02-15T06:22:53.250225Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250589Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1272,"ScoreAtt":7325,"RankDef":1933,"ScoreDef":6870,"RankSup":0,"ScoreSup":0,"RankTotal":1940,"ScoreTotal":14195,"ID":112401,"Name":"*Trilesto*","NumVillages":1,"Points":2840,"Rank":1548,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=112401","BestRank":1548,"BestRankAt":"2023-02-15T06:22:53.250225Z","MostPoints":2840,"MostPointsAt":"2023-02-15T06:22:53.250226Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250226Z","LastActivityAt":"2023-02-15T06:22:53.250226Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250589Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":384,"ScoreAtt":613398,"RankDef":1122,"ScoreDef":90696,"RankSup":857,"ScoreSup":16080,"RankTotal":720,"ScoreTotal":720174,"ID":113796,"Name":"mpiechu","NumVillages":84,"Points":633855,"Rank":226,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=113796","BestRank":226,"BestRankAt":"2023-02-15T06:22:53.250227Z","MostPoints":633855,"MostPointsAt":"2023-02-15T06:22:53.250227Z","MostVillages":84,"MostVillagesAt":"2023-02-15T06:22:53.250227Z","LastActivityAt":"2023-02-15T06:22:53.250227Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250591Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1989,"ScoreDef":5371,"RankSup":0,"ScoreSup":0,"RankTotal":2117,"ScoreTotal":5371,"ID":117208,"Name":"milupa3 and IdziPR","NumVillages":1,"Points":6898,"Rank":1223,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=117208","BestRank":1223,"BestRankAt":"2023-02-15T06:22:53.250227Z","MostPoints":6898,"MostPointsAt":"2023-02-15T06:22:53.250228Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250227Z","LastActivityAt":"2023-02-15T06:22:53.250228Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1680,"ScoreAtt":695,"RankDef":782,"ScoreDef":221944,"RankSup":1132,"ScoreSup":1361,"RankTotal":1102,"ScoreTotal":224000,"ID":118121,"Name":"MRFELEK","NumVillages":4,"Points":38722,"Rank":748,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=118121","BestRank":748,"BestRankAt":"2023-02-15T06:22:53.250228Z","MostPoints":38722,"MostPointsAt":"2023-02-15T06:22:53.250228Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250228Z","LastActivityAt":"2023-02-15T06:22:53.250228Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1930,"ScoreAtt":32,"RankDef":715,"ScoreDef":263474,"RankSup":0,"ScoreSup":0,"RankTotal":1040,"ScoreTotal":263506,"ID":122492,"Name":"kybb","NumVillages":1,"Points":825,"Rank":1911,"TribeID":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=122492","BestRank":1911,"BestRankAt":"2023-02-15T06:22:53.250228Z","MostPoints":825,"MostPointsAt":"2023-02-15T06:22:53.250229Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250229Z","LastActivityAt":"2023-02-15T06:22:53.250229Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1589,"ScoreAtt":1416,"RankDef":2370,"ScoreDef":43,"RankSup":0,"ScoreSup":0,"RankTotal":2281,"ScoreTotal":1459,"ID":126954,"Name":"robert72","NumVillages":1,"Points":4824,"Rank":1342,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=126954","BestRank":1342,"BestRankAt":"2023-02-15T06:22:53.250229Z","MostPoints":4824,"MostPointsAt":"2023-02-15T06:22:53.250229Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250229Z","LastActivityAt":"2023-02-15T06:22:53.250229Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":128346,"Name":"peter3131","NumVillages":1,"Points":321,"Rank":2153,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=128346","BestRank":2153,"BestRankAt":"2023-02-15T06:22:53.25023Z","MostPoints":321,"MostPointsAt":"2023-02-15T06:22:53.25023Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25023Z","LastActivityAt":"2023-02-15T06:22:53.25023Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2088,"ScoreDef":2947,"RankSup":0,"ScoreSup":0,"RankTotal":2207,"ScoreTotal":2947,"ID":128353,"Name":"lukaszking2","NumVillages":1,"Points":129,"Rank":2418,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=128353","BestRank":2418,"BestRankAt":"2023-02-15T06:22:53.25023Z","MostPoints":129,"MostPointsAt":"2023-02-15T06:22:53.25023Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25023Z","LastActivityAt":"2023-02-15T06:22:53.25023Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1284,"ScoreDef":59293,"RankSup":0,"ScoreSup":0,"RankTotal":1559,"ScoreTotal":59293,"ID":129795,"Name":"skorbyk","NumVillages":1,"Points":531,"Rank":2010,"TribeID":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=129795","BestRank":2010,"BestRankAt":"2023-02-15T06:22:53.250231Z","MostPoints":531,"MostPointsAt":"2023-02-15T06:22:53.250231Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250231Z","LastActivityAt":"2023-02-15T06:22:53.250231Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2130,"ScoreDef":2247,"RankSup":0,"ScoreSup":0,"RankTotal":2233,"ScoreTotal":2247,"ID":131972,"Name":"Ares85","NumVillages":1,"Points":1347,"Rank":1779,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=131972","BestRank":1779,"BestRankAt":"2023-02-15T06:22:53.250231Z","MostPoints":1347,"MostPointsAt":"2023-02-15T06:22:53.250231Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250231Z","LastActivityAt":"2023-02-15T06:22:53.250231Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2239,"ScoreDef":748,"RankSup":0,"ScoreSup":0,"RankTotal":2328,"ScoreTotal":748,"ID":148405,"Name":"wtkc","NumVillages":1,"Points":26,"Rank":2623,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=148405","BestRank":2623,"BestRankAt":"2023-02-15T06:22:53.250232Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250232Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250232Z","LastActivityAt":"2023-02-15T06:22:53.250232Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1734,"ScoreAtt":395,"RankDef":772,"ScoreDef":231436,"RankSup":0,"ScoreSup":0,"RankTotal":1085,"ScoreTotal":231831,"ID":160513,"Name":"obi van kenobi","NumVillages":1,"Points":4251,"Rank":1390,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=160513","BestRank":1390,"BestRankAt":"2023-02-15T06:22:53.250232Z","MostPoints":4251,"MostPointsAt":"2023-02-15T06:22:53.250232Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250232Z","LastActivityAt":"2023-02-15T06:22:53.250233Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1050,"ScoreAtt":23281,"RankDef":531,"ScoreDef":481038,"RankSup":873,"ScoreSup":14414,"RankTotal":828,"ScoreTotal":518733,"ID":192947,"Name":"Jedrol","NumVillages":1,"Points":2376,"Rank":1599,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=192947","BestRank":1599,"BestRankAt":"2023-02-15T06:22:53.250234Z","MostPoints":2376,"MostPointsAt":"2023-02-15T06:22:53.250234Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250234Z","LastActivityAt":"2023-02-15T06:22:53.250234Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":963,"ScoreAtt":36942,"RankDef":1779,"ScoreDef":13558,"RankSup":904,"ScoreSup":11494,"RankTotal":1539,"ScoreTotal":61994,"ID":195249,"Name":"Marcio7","NumVillages":10,"Points":55910,"Rank":667,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=195249","BestRank":667,"BestRankAt":"2023-02-15T06:22:53.250235Z","MostPoints":55910,"MostPointsAt":"2023-02-15T06:22:53.250235Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250235Z","LastActivityAt":"2023-02-15T06:22:53.250235Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":663,"ScoreAtt":151562,"RankDef":1152,"ScoreDef":82789,"RankSup":1208,"ScoreSup":345,"RankTotal":1079,"ScoreTotal":234696,"ID":197581,"Name":"malwin","NumVillages":11,"Points":51644,"Rank":679,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=197581","BestRank":679,"BestRankAt":"2023-02-15T06:22:53.250235Z","MostPoints":51644,"MostPointsAt":"2023-02-15T06:22:53.250235Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.250235Z","LastActivityAt":"2023-02-15T06:22:53.250235Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1856,"ScoreAtt":118,"RankDef":2123,"ScoreDef":2374,"RankSup":1118,"ScoreSup":1551,"RankTotal":2168,"ScoreTotal":4043,"ID":205821,"Name":"Jamson","NumVillages":1,"Points":128,"Rank":2424,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=205821","BestRank":2424,"BestRankAt":"2023-02-15T06:22:53.250236Z","MostPoints":128,"MostPointsAt":"2023-02-15T06:22:53.250236Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250236Z","LastActivityAt":"2023-02-15T06:22:53.250236Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":129,"ScoreAtt":2344650,"RankDef":14,"ScoreDef":18438391,"RankSup":58,"ScoreSup":3108663,"RankTotal":21,"ScoreTotal":23891704,"ID":225023,"Name":"GKS TYCHY","NumVillages":173,"Points":1514201,"Rank":78,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=225023","BestRank":78,"BestRankAt":"2023-02-15T06:22:53.250236Z","MostPoints":1514201,"MostPointsAt":"2023-02-15T06:22:53.250236Z","MostVillages":173,"MostVillagesAt":"2023-02-15T06:22:53.250236Z","LastActivityAt":"2023-02-15T06:22:53.250236Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250607Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1156,"ScoreAtt":13636,"RankDef":1668,"ScoreDef":20530,"RankSup":503,"ScoreSup":171203,"RankTotal":1131,"ScoreTotal":205369,"ID":254937,"Name":"ilia55","NumVillages":16,"Points":133357,"Rank":487,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=254937","BestRank":487,"BestRankAt":"2023-02-15T06:22:53.250237Z","MostPoints":133357,"MostPointsAt":"2023-02-15T06:22:53.250237Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.250237Z","LastActivityAt":"2023-02-15T06:22:53.250237Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250609Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1551,"ScoreDef":29387,"RankSup":0,"ScoreSup":0,"RankTotal":1778,"ScoreTotal":29387,"ID":260666,"Name":"oracz1","NumVillages":1,"Points":8435,"Rank":1139,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=260666","BestRank":1139,"BestRankAt":"2023-02-15T06:22:53.250237Z","MostPoints":8435,"MostPointsAt":"2023-02-15T06:22:53.250237Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250237Z","LastActivityAt":"2023-02-15T06:22:53.250237Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250609Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":55,"ScoreAtt":4615284,"RankDef":88,"ScoreDef":3813465,"RankSup":91,"ScoreSup":2370396,"RankTotal":71,"ScoreTotal":10799145,"ID":272173,"Name":"dracodarco","NumVillages":247,"Points":1920593,"Rank":50,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=272173","BestRank":50,"BestRankAt":"2023-02-15T06:22:53.250238Z","MostPoints":1920593,"MostPointsAt":"2023-02-15T06:22:53.250238Z","MostVillages":247,"MostVillagesAt":"2023-02-15T06:22:53.250238Z","LastActivityAt":"2023-02-15T06:22:53.250238Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1753,"ScoreAtt":326,"RankDef":1737,"ScoreDef":16574,"RankSup":1333,"ScoreSup":10,"RankTotal":1908,"ScoreTotal":16910,"ID":281866,"Name":"bob 25","NumVillages":3,"Points":3739,"Rank":1438,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=281866","BestRank":1438,"BestRankAt":"2023-02-15T06:22:53.250238Z","MostPoints":3739,"MostPointsAt":"2023-02-15T06:22:53.250239Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250238Z","LastActivityAt":"2023-02-15T06:22:53.250239Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1417,"ScoreAtt":3780,"RankDef":865,"ScoreDef":181210,"RankSup":1121,"ScoreSup":1530,"RankTotal":1173,"ScoreTotal":186520,"ID":289542,"Name":"Jori","NumVillages":2,"Points":6470,"Rank":1241,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=289542","BestRank":1241,"BestRankAt":"2023-02-15T06:22:53.250239Z","MostPoints":6470,"MostPointsAt":"2023-02-15T06:22:53.250239Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250239Z","LastActivityAt":"2023-02-15T06:22:53.250239Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":796,"ScoreAtt":83768,"RankDef":516,"ScoreDef":494705,"RankSup":1059,"ScoreSup":2740,"RankTotal":783,"ScoreTotal":581213,"ID":301602,"Name":"Luki80","NumVillages":11,"Points":70147,"Rank":614,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=301602","BestRank":614,"BestRankAt":"2023-02-15T06:22:53.250239Z","MostPoints":70147,"MostPointsAt":"2023-02-15T06:22:53.25024Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.25024Z","LastActivityAt":"2023-02-15T06:22:53.25024Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1300,"ScoreAtt":6540,"RankDef":747,"ScoreDef":243705,"RankSup":607,"ScoreSup":96237,"RankTotal":965,"ScoreTotal":346482,"ID":310729,"Name":"Wilczekhehe","NumVillages":2,"Points":8151,"Rank":1149,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=310729","BestRank":1149,"BestRankAt":"2023-02-15T06:22:53.25024Z","MostPoints":8151,"MostPointsAt":"2023-02-15T06:22:53.25024Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.25024Z","LastActivityAt":"2023-02-15T06:22:53.25024Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250614Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1667,"ScoreDef":20650,"RankSup":0,"ScoreSup":0,"RankTotal":1863,"ScoreTotal":20650,"ID":325491,"Name":"Zbyszko ZbogdaƄca","NumVillages":0,"Points":0,"Rank":2883,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=325491","BestRank":2883,"BestRankAt":"2023-02-15T06:22:53.250241Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250241Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250241Z","LastActivityAt":"2023-02-15T06:22:53.250241Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1831,"ScoreAtt":147,"RankDef":276,"ScoreDef":1318402,"RankSup":617,"ScoreSup":89881,"RankTotal":515,"ScoreTotal":1408430,"ID":335509,"Name":"zuzel","NumVillages":1,"Points":1553,"Rank":1742,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=335509","BestRank":1742,"BestRankAt":"2023-02-15T06:22:53.250241Z","MostPoints":1553,"MostPointsAt":"2023-02-15T06:22:53.250241Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250241Z","LastActivityAt":"2023-02-15T06:22:53.250241Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1546,"ScoreAtt":1910,"RankDef":1425,"ScoreDef":40415,"RankSup":1311,"ScoreSup":19,"RankTotal":1665,"ScoreTotal":42344,"ID":337137,"Name":"Carlos75","NumVillages":1,"Points":26,"Rank":2624,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=337137","BestRank":2624,"BestRankAt":"2023-02-15T06:22:53.250242Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250242Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250242Z","LastActivityAt":"2023-02-15T06:22:53.250242Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":114,"ScoreAtt":2665937,"RankDef":852,"ScoreDef":185104,"RankSup":120,"ScoreSup":1859421,"RankTotal":200,"ScoreTotal":4710462,"ID":356642,"Name":"FKG007","NumVillages":222,"Points":1808769,"Rank":59,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=356642","BestRank":59,"BestRankAt":"2023-02-15T06:22:53.250242Z","MostPoints":1808769,"MostPointsAt":"2023-02-15T06:22:53.250242Z","MostVillages":222,"MostVillagesAt":"2023-02-15T06:22:53.250242Z","LastActivityAt":"2023-02-15T06:22:53.250242Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1138,"ScoreAtt":15088,"RankDef":594,"ScoreDef":385441,"RankSup":1156,"ScoreSup":923,"RankTotal":915,"ScoreTotal":401452,"ID":361125,"Name":"max-94","NumVillages":3,"Points":11434,"Rank":1051,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=361125","BestRank":1051,"BestRankAt":"2023-02-15T06:22:53.250243Z","MostPoints":11434,"MostPointsAt":"2023-02-15T06:22:53.250243Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250243Z","LastActivityAt":"2023-02-15T06:22:53.250243Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1166,"ScoreDef":79994,"RankSup":0,"ScoreSup":0,"RankTotal":1463,"ScoreTotal":79994,"ID":363280,"Name":"majku","NumVillages":2,"Points":4725,"Rank":1355,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=363280","BestRank":1355,"BestRankAt":"2023-02-15T06:22:53.250243Z","MostPoints":4725,"MostPointsAt":"2023-02-15T06:22:53.250243Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250243Z","LastActivityAt":"2023-02-15T06:22:53.250244Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1677,"ScoreAtt":704,"RankDef":1107,"ScoreDef":93163,"RankSup":1201,"ScoreSup":381,"RankTotal":1414,"ScoreTotal":94248,"ID":364126,"Name":"Borys35","NumVillages":9,"Points":51175,"Rank":684,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=364126","BestRank":684,"BestRankAt":"2023-02-15T06:22:53.250244Z","MostPoints":51175,"MostPointsAt":"2023-02-15T06:22:53.250244Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.250244Z","LastActivityAt":"2023-02-15T06:22:53.250244Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25062Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":366938,"Name":"owen10","NumVillages":1,"Points":26,"Rank":2625,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=366938","BestRank":2625,"BestRankAt":"2023-02-15T06:22:53.250244Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250245Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250244Z","LastActivityAt":"2023-02-15T06:22:53.250245Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2447,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2540,"ScoreTotal":10,"ID":371910,"Name":"Addamus","NumVillages":1,"Points":1874,"Rank":1689,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=371910","BestRank":1689,"BestRankAt":"2023-02-15T06:22:53.250245Z","MostPoints":1874,"MostPointsAt":"2023-02-15T06:22:53.250245Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250245Z","LastActivityAt":"2023-02-15T06:22:53.250245Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":967,"ScoreDef":136306,"RankSup":0,"ScoreSup":0,"RankTotal":1281,"ScoreTotal":136306,"ID":378757,"Name":"hajza","NumVillages":1,"Points":4338,"Rank":1384,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=378757","BestRank":1384,"BestRankAt":"2023-02-15T06:22:53.250245Z","MostPoints":4338,"MostPointsAt":"2023-02-15T06:22:53.250246Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250246Z","LastActivityAt":"2023-02-15T06:22:53.250246Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1714,"ScoreAtt":500,"RankDef":233,"ScoreDef":1631288,"RankSup":0,"ScoreSup":0,"RankTotal":470,"ScoreTotal":1631788,"ID":382222,"Name":"lechu33","NumVillages":1,"Points":1353,"Rank":1778,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=382222","BestRank":1778,"BestRankAt":"2023-02-15T06:22:53.250247Z","MostPoints":1353,"MostPointsAt":"2023-02-15T06:22:53.250247Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250247Z","LastActivityAt":"2023-02-15T06:22:53.250248Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":139,"ScoreAtt":2216126,"RankDef":307,"ScoreDef":1131172,"RankSup":128,"ScoreSup":1666300,"RankTotal":185,"ScoreTotal":5013598,"ID":393668,"Name":"Bonnie i Clyde","NumVillages":205,"Points":1793291,"Rank":61,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=393668","BestRank":61,"BestRankAt":"2023-02-15T06:22:53.250248Z","MostPoints":1793291,"MostPointsAt":"2023-02-15T06:22:53.250248Z","MostVillages":205,"MostVillagesAt":"2023-02-15T06:22:53.250248Z","LastActivityAt":"2023-02-15T06:22:53.250248Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250625Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1839,"ScoreAtt":137,"RankDef":1428,"ScoreDef":39884,"RankSup":0,"ScoreSup":0,"RankTotal":1685,"ScoreTotal":40021,"ID":412571,"Name":"bomba1","NumVillages":0,"Points":0,"Rank":2884,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=412571","BestRank":2884,"BestRankAt":"2023-02-15T06:22:53.250248Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250249Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250248Z","LastActivityAt":"2023-02-15T06:22:53.250249Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1464,"ScoreDef":37047,"RankSup":0,"ScoreSup":0,"RankTotal":1711,"ScoreTotal":37047,"ID":439825,"Name":"Pawelstryju","NumVillages":1,"Points":1560,"Rank":1741,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=439825","BestRank":1741,"BestRankAt":"2023-02-15T06:22:53.250249Z","MostPoints":1560,"MostPointsAt":"2023-02-15T06:22:53.250249Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250249Z","LastActivityAt":"2023-02-15T06:22:53.250249Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2118,"ScoreDef":2424,"RankSup":495,"ScoreSup":176701,"RankTotal":1192,"ScoreTotal":179125,"ID":466800,"Name":"leito2","NumVillages":1,"Points":3854,"Rank":1425,"TribeID":1602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=466800","BestRank":1425,"BestRankAt":"2023-02-15T06:22:53.250249Z","MostPoints":3854,"MostPointsAt":"2023-02-15T06:22:53.25025Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25025Z","LastActivityAt":"2023-02-15T06:22:53.25025Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1652,"ScoreDef":21915,"RankSup":0,"ScoreSup":0,"RankTotal":1850,"ScoreTotal":21915,"ID":470266,"Name":"PaweƂ I Wspanialy","NumVillages":1,"Points":1643,"Rank":1724,"TribeID":1421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=470266","BestRank":1724,"BestRankAt":"2023-02-15T06:22:53.25025Z","MostPoints":1643,"MostPointsAt":"2023-02-15T06:22:53.25025Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25025Z","LastActivityAt":"2023-02-15T06:22:53.25025Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":121,"ScoreAtt":2498636,"RankDef":335,"ScoreDef":961175,"RankSup":753,"ScoreSup":34997,"RankTotal":257,"ScoreTotal":3494808,"ID":477415,"Name":"dudas1","NumVillages":89,"Points":919480,"Rank":159,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=477415","BestRank":159,"BestRankAt":"2023-02-15T06:22:53.250251Z","MostPoints":919480,"MostPointsAt":"2023-02-15T06:22:53.250251Z","MostVillages":89,"MostVillagesAt":"2023-02-15T06:22:53.250251Z","LastActivityAt":"2023-02-15T06:22:53.250251Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1578,"ScoreAtt":1534,"RankDef":793,"ScoreDef":216220,"RankSup":0,"ScoreSup":0,"RankTotal":1113,"ScoreTotal":217754,"ID":478956,"Name":"Sir Zordon","NumVillages":11,"Points":58957,"Rank":657,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=478956","BestRank":657,"BestRankAt":"2023-02-15T06:22:53.250251Z","MostPoints":58957,"MostPointsAt":"2023-02-15T06:22:53.250251Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.250251Z","LastActivityAt":"2023-02-15T06:22:53.250251Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25063Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":711,"ScoreAtt":123243,"RankDef":861,"ScoreDef":182868,"RankSup":1337,"ScoreSup":9,"RankTotal":1001,"ScoreTotal":306120,"ID":483145,"Name":"Krzysztof1215","NumVillages":15,"Points":133079,"Rank":489,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=483145","BestRank":489,"BestRankAt":"2023-02-15T06:22:53.250252Z","MostPoints":133079,"MostPointsAt":"2023-02-15T06:22:53.250252Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.250252Z","LastActivityAt":"2023-02-15T06:22:53.250252Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1557,"ScoreAtt":1784,"RankDef":1473,"ScoreDef":36326,"RankSup":0,"ScoreSup":0,"RankTotal":1702,"ScoreTotal":38110,"ID":498483,"Name":"Grucha125","NumVillages":6,"Points":20619,"Rank":907,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=498483","BestRank":907,"BestRankAt":"2023-02-15T06:22:53.250252Z","MostPoints":20619,"MostPointsAt":"2023-02-15T06:22:53.250252Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250252Z","LastActivityAt":"2023-02-15T06:22:53.250252Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1393,"ScoreDef":44990,"RankSup":0,"ScoreSup":0,"RankTotal":1643,"ScoreTotal":44990,"ID":526350,"Name":"Maxwell 3","NumVillages":1,"Points":2364,"Rank":1602,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=526350","BestRank":1602,"BestRankAt":"2023-02-15T06:22:53.250253Z","MostPoints":2364,"MostPointsAt":"2023-02-15T06:22:53.250253Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250253Z","LastActivityAt":"2023-02-15T06:22:53.250253Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":960,"ScoreAtt":37346,"RankDef":2214,"ScoreDef":1017,"RankSup":0,"ScoreSup":0,"RankTotal":1700,"ScoreTotal":38363,"ID":529552,"Name":"matekstryju","NumVillages":4,"Points":27236,"Rank":835,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=529552","BestRank":835,"BestRankAt":"2023-02-15T06:22:53.250253Z","MostPoints":27236,"MostPointsAt":"2023-02-15T06:22:53.250253Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250253Z","LastActivityAt":"2023-02-15T06:22:53.250254Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":365,"ScoreAtt":655274,"RankDef":131,"ScoreDef":2960404,"RankSup":0,"ScoreSup":0,"RankTotal":251,"ScoreTotal":3615678,"ID":542253,"Name":"Tomek 7","NumVillages":50,"Points":263228,"Rank":373,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=542253","BestRank":373,"BestRankAt":"2023-02-15T06:22:53.250254Z","MostPoints":263228,"MostPointsAt":"2023-02-15T06:22:53.250254Z","MostVillages":50,"MostVillagesAt":"2023-02-15T06:22:53.250254Z","LastActivityAt":"2023-02-15T06:22:53.250254Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1774,"ScoreAtt":273,"RankDef":2259,"ScoreDef":549,"RankSup":1165,"ScoreSup":839,"RankTotal":2270,"ScoreTotal":1661,"ID":545152,"Name":"Bociek80","NumVillages":1,"Points":572,"Rank":1993,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=545152","BestRank":1993,"BestRankAt":"2023-02-15T06:22:53.250254Z","MostPoints":572,"MostPointsAt":"2023-02-15T06:22:53.250255Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250254Z","LastActivityAt":"2023-02-15T06:22:53.250255Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1786,"ScoreDef":13365,"RankSup":0,"ScoreSup":0,"RankTotal":1947,"ScoreTotal":13365,"ID":546458,"Name":"Sindbad00","NumVillages":1,"Points":592,"Rank":1988,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=546458","BestRank":1988,"BestRankAt":"2023-02-15T06:22:53.250255Z","MostPoints":592,"MostPointsAt":"2023-02-15T06:22:53.250255Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250255Z","LastActivityAt":"2023-02-15T06:22:53.250255Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":206,"ScoreAtt":1531030,"RankDef":388,"ScoreDef":787408,"RankSup":504,"ScoreSup":171081,"RankTotal":346,"ScoreTotal":2489519,"ID":556154,"Name":"SweetKimo","NumVillages":77,"Points":717686,"Rank":199,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=556154","BestRank":199,"BestRankAt":"2023-02-15T06:22:53.250255Z","MostPoints":717686,"MostPointsAt":"2023-02-15T06:22:53.250256Z","MostVillages":77,"MostVillagesAt":"2023-02-15T06:22:53.250256Z","LastActivityAt":"2023-02-15T06:22:53.250256Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":513,"ScoreDef":498350,"RankSup":0,"ScoreSup":0,"RankTotal":843,"ScoreTotal":498350,"ID":563544,"Name":"arkow","NumVillages":1,"Points":1438,"Rank":1762,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=563544","BestRank":1762,"BestRankAt":"2023-02-15T06:22:53.250256Z","MostPoints":1438,"MostPointsAt":"2023-02-15T06:22:53.250256Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250256Z","LastActivityAt":"2023-02-15T06:22:53.250256Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":565043,"Name":"nikita.11","NumVillages":1,"Points":572,"Rank":1994,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=565043","BestRank":1994,"BestRankAt":"2023-02-15T06:22:53.250257Z","MostPoints":572,"MostPointsAt":"2023-02-15T06:22:53.250257Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250257Z","LastActivityAt":"2023-02-15T06:22:53.250257Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1843,"ScoreDef":10283,"RankSup":0,"ScoreSup":0,"RankTotal":1993,"ScoreTotal":10283,"ID":566379,"Name":"floraI","NumVillages":1,"Points":235,"Rank":2244,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=566379","BestRank":2244,"BestRankAt":"2023-02-15T06:22:53.250257Z","MostPoints":235,"MostPointsAt":"2023-02-15T06:22:53.250257Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250257Z","LastActivityAt":"2023-02-15T06:22:53.250257Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1003,"ScoreDef":124391,"RankSup":0,"ScoreSup":0,"RankTotal":1315,"ScoreTotal":124391,"ID":569790,"Name":"relag06","NumVillages":1,"Points":7515,"Rank":1186,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=569790","BestRank":1186,"BestRankAt":"2023-02-15T06:22:53.250258Z","MostPoints":7515,"MostPointsAt":"2023-02-15T06:22:53.250258Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250258Z","LastActivityAt":"2023-02-15T06:22:53.250258Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1701,"ScoreAtt":581,"RankDef":1888,"ScoreDef":8378,"RankSup":0,"ScoreSup":0,"RankTotal":2021,"ScoreTotal":8959,"ID":570100,"Name":"kazek- 15","NumVillages":9,"Points":39541,"Rank":743,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=570100","BestRank":743,"BestRankAt":"2023-02-15T06:22:53.250258Z","MostPoints":39541,"MostPointsAt":"2023-02-15T06:22:53.250258Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.250258Z","LastActivityAt":"2023-02-15T06:22:53.250258Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2003,"ScoreDef":5000,"RankSup":1331,"ScoreSup":11,"RankTotal":2133,"ScoreTotal":5011,"ID":583500,"Name":"pchelka75","NumVillages":1,"Points":3440,"Rank":1474,"TribeID":1728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=583500","BestRank":1474,"BestRankAt":"2023-02-15T06:22:53.250259Z","MostPoints":3440,"MostPointsAt":"2023-02-15T06:22:53.250259Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250259Z","LastActivityAt":"2023-02-15T06:22:53.250259Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1646,"ScoreAtt":868,"RankDef":720,"ScoreDef":261994,"RankSup":0,"ScoreSup":0,"RankTotal":1043,"ScoreTotal":262862,"ID":584989,"Name":"Iceeman","NumVillages":1,"Points":381,"Rank":2100,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=584989","BestRank":2100,"BestRankAt":"2023-02-15T06:22:53.250259Z","MostPoints":381,"MostPointsAt":"2023-02-15T06:22:53.250259Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250259Z","LastActivityAt":"2023-02-15T06:22:53.25026Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":474,"ScoreDef":562496,"RankSup":1397,"ScoreSup":2,"RankTotal":794,"ScoreTotal":562498,"ID":591733,"Name":"ShOcK","NumVillages":1,"Points":10021,"Rank":1084,"TribeID":1058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=591733","BestRank":1084,"BestRankAt":"2023-02-15T06:22:53.25026Z","MostPoints":10021,"MostPointsAt":"2023-02-15T06:22:53.25026Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25026Z","LastActivityAt":"2023-02-15T06:22:53.25026Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1699,"ScoreAtt":584,"RankDef":1952,"ScoreDef":6351,"RankSup":1417,"ScoreSup":1,"RankTotal":2072,"ScoreTotal":6936,"ID":602408,"Name":"dracart","NumVillages":5,"Points":15423,"Rank":990,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=602408","BestRank":990,"BestRankAt":"2023-02-15T06:22:53.25026Z","MostPoints":15423,"MostPointsAt":"2023-02-15T06:22:53.250261Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.25026Z","LastActivityAt":"2023-02-15T06:22:53.250261Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2456,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2527,"ScoreTotal":10,"ID":603968,"Name":"Dreddenoth","NumVillages":1,"Points":2040,"Rank":1654,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=603968","BestRank":1654,"BestRankAt":"2023-02-15T06:22:53.250261Z","MostPoints":2040,"MostPointsAt":"2023-02-15T06:22:53.250261Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250261Z","LastActivityAt":"2023-02-15T06:22:53.250261Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":228,"ScoreAtt":1303914,"RankDef":1203,"ScoreDef":72428,"RankSup":69,"ScoreSup":2834521,"RankTotal":225,"ScoreTotal":4210863,"ID":606407,"Name":"BaNdzi0r","NumVillages":123,"Points":1047439,"Rank":134,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=606407","BestRank":134,"BestRankAt":"2023-02-15T06:22:53.250261Z","MostPoints":1047439,"MostPointsAt":"2023-02-15T06:22:53.250262Z","MostVillages":123,"MostVillagesAt":"2023-02-15T06:22:53.250262Z","LastActivityAt":"2023-02-15T06:22:53.250262Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":929,"ScoreAtt":44391,"RankDef":974,"ScoreDef":131662,"RankSup":1297,"ScoreSup":33,"RankTotal":1199,"ScoreTotal":176086,"ID":606706,"Name":"adam1961","NumVillages":5,"Points":26858,"Rank":839,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=606706","BestRank":839,"BestRankAt":"2023-02-15T06:22:53.250262Z","MostPoints":26858,"MostPointsAt":"2023-02-15T06:22:53.250262Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250262Z","LastActivityAt":"2023-02-15T06:22:53.250262Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1204,"ScoreAtt":10514,"RankDef":1351,"ScoreDef":50800,"RankSup":0,"ScoreSup":0,"RankTotal":1545,"ScoreTotal":61314,"ID":609384,"Name":"Brbi","NumVillages":9,"Points":21017,"Rank":902,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=609384","BestRank":902,"BestRankAt":"2023-02-15T06:22:53.250263Z","MostPoints":21017,"MostPointsAt":"2023-02-15T06:22:53.250263Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.250263Z","LastActivityAt":"2023-02-15T06:22:53.250263Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1764,"ScoreAtt":291,"RankDef":1624,"ScoreDef":24360,"RankSup":0,"ScoreSup":0,"RankTotal":1823,"ScoreTotal":24651,"ID":610196,"Name":"Tomek z Tyyrra X Adam547","NumVillages":2,"Points":778,"Rank":1925,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=610196","BestRank":1925,"BestRankAt":"2023-02-15T06:22:53.250263Z","MostPoints":778,"MostPointsAt":"2023-02-15T06:22:53.250263Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250263Z","LastActivityAt":"2023-02-15T06:22:53.250263Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1425,"ScoreAtt":3636,"RankDef":805,"ScoreDef":207069,"RankSup":1388,"ScoreSup":2,"RankTotal":1123,"ScoreTotal":210707,"ID":634848,"Name":"izolator","NumVillages":9,"Points":46582,"Rank":708,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=634848","BestRank":708,"BestRankAt":"2023-02-15T06:22:53.250264Z","MostPoints":46582,"MostPointsAt":"2023-02-15T06:22:53.250264Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.250264Z","LastActivityAt":"2023-02-15T06:22:53.250264Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2510,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2574,"ScoreTotal":1,"ID":662253,"Name":"pluton1","NumVillages":1,"Points":209,"Rank":2286,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=662253","BestRank":2286,"BestRankAt":"2023-02-15T06:22:53.250264Z","MostPoints":209,"MostPointsAt":"2023-02-15T06:22:53.250264Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250264Z","LastActivityAt":"2023-02-15T06:22:53.250264Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":457,"ScoreAtt":433457,"RankDef":1718,"ScoreDef":17534,"RankSup":0,"ScoreSup":0,"RankTotal":873,"ScoreTotal":450991,"ID":671516,"Name":"Hilwoz","NumVillages":1,"Points":26,"Rank":2626,"TribeID":1275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=671516","BestRank":2626,"BestRankAt":"2023-02-15T06:22:53.250265Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250265Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250265Z","LastActivityAt":"2023-02-15T06:22:53.250265Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25065Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":189,"ScoreAtt":1639097,"RankDef":943,"ScoreDef":146184,"RankSup":517,"ScoreSup":155200,"RankTotal":413,"ScoreTotal":1940481,"ID":692803,"Name":"maradona1006","NumVillages":181,"Points":1313277,"Rank":95,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=692803","BestRank":95,"BestRankAt":"2023-02-15T06:22:53.250265Z","MostPoints":1313277,"MostPointsAt":"2023-02-15T06:22:53.250265Z","MostVillages":181,"MostVillagesAt":"2023-02-15T06:22:53.250265Z","LastActivityAt":"2023-02-15T06:22:53.250266Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1763,"ScoreAtt":291,"RankDef":620,"ScoreDef":358375,"RankSup":0,"ScoreSup":0,"RankTotal":954,"ScoreTotal":358666,"ID":712216,"Name":"toreno1","NumVillages":1,"Points":2203,"Rank":1629,"TribeID":382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=712216","BestRank":1629,"BestRankAt":"2023-02-15T06:22:53.250266Z","MostPoints":2203,"MostPointsAt":"2023-02-15T06:22:53.250266Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250266Z","LastActivityAt":"2023-02-15T06:22:53.250266Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1250,"ScoreAtt":8189,"RankDef":544,"ScoreDef":455189,"RankSup":678,"ScoreSup":58698,"RankTotal":824,"ScoreTotal":522076,"ID":724621,"Name":"pele z zar","NumVillages":1,"Points":198,"Rank":2300,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=724621","BestRank":2300,"BestRankAt":"2023-02-15T06:22:53.250266Z","MostPoints":198,"MostPointsAt":"2023-02-15T06:22:53.250267Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250266Z","LastActivityAt":"2023-02-15T06:22:53.250267Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1137,"ScoreAtt":15103,"RankDef":518,"ScoreDef":493346,"RankSup":1256,"ScoreSup":105,"RankTotal":835,"ScoreTotal":508554,"ID":745946,"Name":"kazio73","NumVillages":8,"Points":47214,"Rank":704,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=745946","BestRank":704,"BestRankAt":"2023-02-15T06:22:53.250267Z","MostPoints":47214,"MostPointsAt":"2023-02-15T06:22:53.250267Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.250267Z","LastActivityAt":"2023-02-15T06:22:53.250267Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":823,"ScoreAtt":72427,"RankDef":1539,"ScoreDef":30197,"RankSup":0,"ScoreSup":0,"RankTotal":1382,"ScoreTotal":102624,"ID":747422,"Name":"janush4","NumVillages":8,"Points":22146,"Rank":890,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=747422","BestRank":890,"BestRankAt":"2023-02-15T06:22:53.250267Z","MostPoints":22146,"MostPointsAt":"2023-02-15T06:22:53.250268Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.250268Z","LastActivityAt":"2023-02-15T06:22:53.250268Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":188,"ScoreAtt":1639319,"RankDef":361,"ScoreDef":852830,"RankSup":629,"ScoreSup":82434,"RankTotal":338,"ScoreTotal":2574583,"ID":758104,"Name":"kaszak10","NumVillages":68,"Points":597877,"Rank":241,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=758104","BestRank":241,"BestRankAt":"2023-02-15T06:22:53.250268Z","MostPoints":597877,"MostPointsAt":"2023-02-15T06:22:53.250268Z","MostVillages":68,"MostVillagesAt":"2023-02-15T06:22:53.250268Z","LastActivityAt":"2023-02-15T06:22:53.250268Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1956,"ScoreAtt":17,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2508,"ScoreTotal":17,"ID":762859,"Name":"Mikkerland","NumVillages":1,"Points":269,"Rank":2205,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=762859","BestRank":2205,"BestRankAt":"2023-02-15T06:22:53.250269Z","MostPoints":269,"MostPointsAt":"2023-02-15T06:22:53.250269Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250269Z","LastActivityAt":"2023-02-15T06:22:53.250269Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1290,"ScoreAtt":6746,"RankDef":1741,"ScoreDef":16460,"RankSup":1289,"ScoreSup":38,"RankTotal":1838,"ScoreTotal":23244,"ID":762975,"Name":"xxczesiaxx","NumVillages":7,"Points":15713,"Rank":986,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=762975","BestRank":986,"BestRankAt":"2023-02-15T06:22:53.250269Z","MostPoints":15713,"MostPointsAt":"2023-02-15T06:22:53.250269Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.250269Z","LastActivityAt":"2023-02-15T06:22:53.250269Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":756,"ScoreAtt":98048,"RankDef":2401,"ScoreDef":21,"RankSup":0,"ScoreSup":0,"RankTotal":1400,"ScoreTotal":98069,"ID":763529,"Name":"Destination1","NumVillages":7,"Points":42124,"Rank":731,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=763529","BestRank":731,"BestRankAt":"2023-02-15T06:22:53.25027Z","MostPoints":42124,"MostPointsAt":"2023-02-15T06:22:53.25027Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.25027Z","LastActivityAt":"2023-02-15T06:22:53.25027Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":852,"ScoreAtt":62873,"RankDef":259,"ScoreDef":1430770,"RankSup":681,"ScoreSup":57474,"RankTotal":481,"ScoreTotal":1551117,"ID":765188,"Name":"pablo99999","NumVillages":11,"Points":82718,"Rank":579,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=765188","BestRank":579,"BestRankAt":"2023-02-15T06:22:53.25027Z","MostPoints":82718,"MostPointsAt":"2023-02-15T06:22:53.25027Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.25027Z","LastActivityAt":"2023-02-15T06:22:53.25027Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1918,"ScoreAtt":39,"RankDef":843,"ScoreDef":186838,"RankSup":0,"ScoreSup":0,"RankTotal":1171,"ScoreTotal":186877,"ID":769293,"Name":"fan zmijki","NumVillages":3,"Points":15784,"Rank":984,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=769293","BestRank":984,"BestRankAt":"2023-02-15T06:22:53.250271Z","MostPoints":15784,"MostPointsAt":"2023-02-15T06:22:53.250271Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250271Z","LastActivityAt":"2023-02-15T06:22:53.250271Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1174,"ScoreDef":77868,"RankSup":1299,"ScoreSup":31,"RankTotal":1476,"ScoreTotal":77899,"ID":796977,"Name":"KOMANDOR PIERWSZY","NumVillages":1,"Points":492,"Rank":2035,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=796977","BestRank":2035,"BestRankAt":"2023-02-15T06:22:53.250271Z","MostPoints":492,"MostPointsAt":"2023-02-15T06:22:53.250271Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250271Z","LastActivityAt":"2023-02-15T06:22:53.250272Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1629,"ScoreDef":23953,"RankSup":0,"ScoreSup":0,"RankTotal":1833,"ScoreTotal":23953,"ID":823987,"Name":"Pietrucha2","NumVillages":1,"Points":2720,"Rank":1563,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=823987","BestRank":1563,"BestRankAt":"2023-02-15T06:22:53.250272Z","MostPoints":2720,"MostPointsAt":"2023-02-15T06:22:53.250272Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250272Z","LastActivityAt":"2023-02-15T06:22:53.250272Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":36,"ScoreAtt":6062596,"RankDef":317,"ScoreDef":1070229,"RankSup":151,"ScoreSup":1502148,"RankTotal":91,"ScoreTotal":8634973,"ID":828637,"Name":"mklo12","NumVillages":214,"Points":2186883,"Rank":40,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=828637","BestRank":40,"BestRankAt":"2023-02-15T06:22:53.250272Z","MostPoints":2186883,"MostPointsAt":"2023-02-15T06:22:53.250273Z","MostVillages":214,"MostVillagesAt":"2023-02-15T06:22:53.250272Z","LastActivityAt":"2023-02-15T06:22:53.250273Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":867191,"Name":"bzdenio","NumVillages":1,"Points":82,"Rank":2509,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=867191","BestRank":2509,"BestRankAt":"2023-02-15T06:22:53.250273Z","MostPoints":82,"MostPointsAt":"2023-02-15T06:22:53.250273Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250273Z","LastActivityAt":"2023-02-15T06:22:53.250273Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1787,"ScoreAtt":247,"RankDef":1373,"ScoreDef":47984,"RankSup":0,"ScoreSup":0,"RankTotal":1626,"ScoreTotal":48231,"ID":869195,"Name":"Lord Siekier","NumVillages":1,"Points":2269,"Rank":1621,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=869195","BestRank":1621,"BestRankAt":"2023-02-15T06:22:53.250273Z","MostPoints":2269,"MostPointsAt":"2023-02-15T06:22:53.250274Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250274Z","LastActivityAt":"2023-02-15T06:22:53.250274Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":60,"ScoreAtt":4419223,"RankDef":1268,"ScoreDef":60748,"RankSup":4,"ScoreSup":11247702,"RankTotal":42,"ScoreTotal":15727673,"ID":873575,"Name":"kathare","NumVillages":240,"Points":2431995,"Rank":29,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=873575","BestRank":29,"BestRankAt":"2023-02-15T06:22:53.250276Z","MostPoints":2431995,"MostPointsAt":"2023-02-15T06:22:53.250276Z","MostVillages":240,"MostVillagesAt":"2023-02-15T06:22:53.250276Z","LastActivityAt":"2023-02-15T06:22:53.250276Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1696,"ScoreAtt":598,"RankDef":1190,"ScoreDef":74918,"RankSup":852,"ScoreSup":16678,"RankTotal":1425,"ScoreTotal":92194,"ID":878961,"Name":"marus1000","NumVillages":1,"Points":8752,"Rank":1127,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=878961","BestRank":1127,"BestRankAt":"2023-02-15T06:22:53.250276Z","MostPoints":8752,"MostPointsAt":"2023-02-15T06:22:53.250277Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250277Z","LastActivityAt":"2023-02-15T06:22:53.250277Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":265,"ScoreAtt":1070796,"RankDef":1488,"ScoreDef":35329,"RankSup":738,"ScoreSup":38806,"RankTotal":578,"ScoreTotal":1144931,"ID":879782,"Name":"Janxxv","NumVillages":69,"Points":612750,"Rank":232,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=879782","BestRank":232,"BestRankAt":"2023-02-15T06:22:53.250277Z","MostPoints":612750,"MostPointsAt":"2023-02-15T06:22:53.250277Z","MostVillages":69,"MostVillagesAt":"2023-02-15T06:22:53.250277Z","LastActivityAt":"2023-02-15T06:22:53.250277Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1942,"ScoreAtt":26,"RankDef":1081,"ScoreDef":98822,"RankSup":0,"ScoreSup":0,"RankTotal":1398,"ScoreTotal":98848,"ID":881782,"Name":"szymon12-95","NumVillages":0,"Points":0,"Rank":2885,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=881782","BestRank":2885,"BestRankAt":"2023-02-15T06:22:53.250278Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250278Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250278Z","LastActivityAt":"2023-02-15T06:22:53.250278Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":886,"ScoreDef":170018,"RankSup":1373,"ScoreSup":3,"RankTotal":1211,"ScoreTotal":170021,"ID":896355,"Name":"Grisza10","NumVillages":2,"Points":6393,"Rank":1247,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=896355","BestRank":1247,"BestRankAt":"2023-02-15T06:22:53.250278Z","MostPoints":6393,"MostPointsAt":"2023-02-15T06:22:53.250278Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250278Z","LastActivityAt":"2023-02-15T06:22:53.250278Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1212,"ScoreAtt":10216,"RankDef":727,"ScoreDef":258250,"RankSup":609,"ScoreSup":93378,"RankTotal":949,"ScoreTotal":361844,"ID":915113,"Name":"gex1992","NumVillages":5,"Points":27683,"Rank":833,"TribeID":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=915113","BestRank":833,"BestRankAt":"2023-02-15T06:22:53.250279Z","MostPoints":27683,"MostPointsAt":"2023-02-15T06:22:53.250279Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250279Z","LastActivityAt":"2023-02-15T06:22:53.250279Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1299,"ScoreDef":57725,"RankSup":0,"ScoreSup":0,"RankTotal":1571,"ScoreTotal":57725,"ID":919882,"Name":"Kostek33","NumVillages":0,"Points":0,"Rank":2886,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=919882","BestRank":2886,"BestRankAt":"2023-02-15T06:22:53.250279Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250279Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250279Z","LastActivityAt":"2023-02-15T06:22:53.250279Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1577,"ScoreAtt":1537,"RankDef":2108,"ScoreDef":2579,"RankSup":1358,"ScoreSup":5,"RankTotal":2163,"ScoreTotal":4121,"ID":921888,"Name":"Deadshot","NumVillages":1,"Points":26,"Rank":2627,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=921888","BestRank":2627,"BestRankAt":"2023-02-15T06:22:53.25028Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.25028Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25028Z","LastActivityAt":"2023-02-15T06:22:53.25028Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":599,"ScoreAtt":215355,"RankDef":47,"ScoreDef":6789703,"RankSup":452,"ScoreSup":222853,"RankTotal":118,"ScoreTotal":7227911,"ID":926823,"Name":"luki0911","NumVillages":7,"Points":40875,"Rank":736,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=926823","BestRank":736,"BestRankAt":"2023-02-15T06:22:53.25028Z","MostPoints":40875,"MostPointsAt":"2023-02-15T06:22:53.250281Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.25028Z","LastActivityAt":"2023-02-15T06:22:53.250281Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1892,"ScoreAtt":59,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2456,"ScoreTotal":59,"ID":930720,"Name":"Susdam","NumVillages":4,"Points":26795,"Rank":840,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=930720","BestRank":840,"BestRankAt":"2023-02-15T06:22:53.250281Z","MostPoints":26795,"MostPointsAt":"2023-02-15T06:22:53.250281Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250281Z","LastActivityAt":"2023-02-15T06:22:53.250281Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":562,"ScoreAtt":260753,"RankDef":293,"ScoreDef":1217975,"RankSup":533,"ScoreSup":142122,"RankTotal":473,"ScoreTotal":1620850,"ID":940693,"Name":"Kartes90","NumVillages":0,"Points":0,"Rank":2887,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=940693","BestRank":2887,"BestRankAt":"2023-02-15T06:22:53.250281Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250282Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250282Z","LastActivityAt":"2023-02-15T06:22:53.250282Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":538,"ScoreAtt":299012,"RankDef":1915,"ScoreDef":7504,"RankSup":820,"ScoreSup":21555,"RankTotal":981,"ScoreTotal":328071,"ID":942959,"Name":"D.E.M.O.N","NumVillages":19,"Points":97329,"Rank":548,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=942959","BestRank":548,"BestRankAt":"2023-02-15T06:22:53.250282Z","MostPoints":97329,"MostPointsAt":"2023-02-15T06:22:53.250282Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.250282Z","LastActivityAt":"2023-02-15T06:22:53.250282Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1895,"ScoreAtt":54,"RankDef":771,"ScoreDef":232379,"RankSup":0,"ScoreSup":0,"RankTotal":1084,"ScoreTotal":232433,"ID":944147,"Name":"klos111","NumVillages":1,"Points":2653,"Rank":1573,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=944147","BestRank":1573,"BestRankAt":"2023-02-15T06:22:53.250283Z","MostPoints":2653,"MostPointsAt":"2023-02-15T06:22:53.250283Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250283Z","LastActivityAt":"2023-02-15T06:22:53.250283Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1627,"ScoreDef":24145,"RankSup":0,"ScoreSup":0,"RankTotal":1830,"ScoreTotal":24145,"ID":947564,"Name":"matusia300","NumVillages":1,"Points":3840,"Rank":1426,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=947564","BestRank":1426,"BestRankAt":"2023-02-15T06:22:53.250283Z","MostPoints":3840,"MostPointsAt":"2023-02-15T06:22:53.250283Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250283Z","LastActivityAt":"2023-02-15T06:22:53.250283Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":834,"ScoreAtt":70422,"RankDef":831,"ScoreDef":193832,"RankSup":0,"ScoreSup":0,"RankTotal":1039,"ScoreTotal":264254,"ID":947923,"Name":"Piotr-B","NumVillages":4,"Points":19723,"Rank":924,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=947923","BestRank":924,"BestRankAt":"2023-02-15T06:22:53.250284Z","MostPoints":19723,"MostPointsAt":"2023-02-15T06:22:53.250284Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250284Z","LastActivityAt":"2023-02-15T06:22:53.250284Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2515,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2581,"ScoreTotal":1,"ID":949279,"Name":"niupiro","NumVillages":1,"Points":803,"Rank":1914,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=949279","BestRank":1914,"BestRankAt":"2023-02-15T06:22:53.250284Z","MostPoints":803,"MostPointsAt":"2023-02-15T06:22:53.250284Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250284Z","LastActivityAt":"2023-02-15T06:22:53.250284Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1733,"ScoreAtt":402,"RankDef":619,"ScoreDef":358643,"RankSup":0,"ScoreSup":0,"RankTotal":952,"ScoreTotal":359045,"ID":950985,"Name":"yen3","NumVillages":1,"Points":3897,"Rank":1421,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=950985","BestRank":1421,"BestRankAt":"2023-02-15T06:22:53.250285Z","MostPoints":3897,"MostPointsAt":"2023-02-15T06:22:53.250285Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250285Z","LastActivityAt":"2023-02-15T06:22:53.250285Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":878,"ScoreAtt":55882,"RankDef":1154,"ScoreDef":82606,"RankSup":750,"ScoreSup":36224,"RankTotal":1201,"ScoreTotal":174712,"ID":951823,"Name":"PawJag","NumVillages":13,"Points":99922,"Rank":539,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=951823","BestRank":539,"BestRankAt":"2023-02-15T06:22:53.250285Z","MostPoints":99922,"MostPointsAt":"2023-02-15T06:22:53.250285Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.250285Z","LastActivityAt":"2023-02-15T06:22:53.250286Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1389,"ScoreAtt":4387,"RankDef":1633,"ScoreDef":23430,"RankSup":722,"ScoreSup":42277,"RankTotal":1506,"ScoreTotal":70094,"ID":959179,"Name":"mirkos44","NumVillages":8,"Points":22703,"Rank":885,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=959179","BestRank":885,"BestRankAt":"2023-02-15T06:22:53.250286Z","MostPoints":22703,"MostPointsAt":"2023-02-15T06:22:53.250286Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.250286Z","LastActivityAt":"2023-02-15T06:22:53.250286Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1653,"ScoreAtt":819,"RankDef":1014,"ScoreDef":122269,"RankSup":1160,"ScoreSup":884,"RankTotal":1317,"ScoreTotal":123972,"ID":960100,"Name":"Konstansja","NumVillages":2,"Points":9572,"Rank":1102,"TribeID":1672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=960100","BestRank":1102,"BestRankAt":"2023-02-15T06:22:53.250286Z","MostPoints":9572,"MostPointsAt":"2023-02-15T06:22:53.250287Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250286Z","LastActivityAt":"2023-02-15T06:22:53.250287Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":35,"ScoreAtt":6073241,"RankDef":43,"ScoreDef":7565048,"RankSup":59,"ScoreSup":3075086,"RankTotal":38,"ScoreTotal":16713375,"ID":1006847,"Name":"niezwyciÄ™ĆŒony","NumVillages":213,"Points":1760715,"Rank":63,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1006847","BestRank":63,"BestRankAt":"2023-02-15T06:22:53.250287Z","MostPoints":1760715,"MostPointsAt":"2023-02-15T06:22:53.250287Z","MostVillages":213,"MostVillagesAt":"2023-02-15T06:22:53.250287Z","LastActivityAt":"2023-02-15T06:22:53.250287Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1007,"ScoreAtt":28962,"RankDef":488,"ScoreDef":540680,"RankSup":1408,"ScoreSup":1,"RankTotal":789,"ScoreTotal":569643,"ID":1015528,"Name":"XXARDASS","NumVillages":1,"Points":4417,"Rank":1380,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1015528","BestRank":1380,"BestRankAt":"2023-02-15T06:22:53.250287Z","MostPoints":4417,"MostPointsAt":"2023-02-15T06:22:53.250288Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250288Z","LastActivityAt":"2023-02-15T06:22:53.250288Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":280,"ScoreAtt":994878,"RankDef":54,"ScoreDef":6190053,"RankSup":436,"ScoreSup":247556,"RankTotal":113,"ScoreTotal":7432487,"ID":1018357,"Name":"Wujek WƂadek","NumVillages":15,"Points":132884,"Rank":490,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1018357","BestRank":490,"BestRankAt":"2023-02-15T06:22:53.250288Z","MostPoints":132884,"MostPointsAt":"2023-02-15T06:22:53.250288Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.250288Z","LastActivityAt":"2023-02-15T06:22:53.250288Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":589,"ScoreDef":390101,"RankSup":1245,"ScoreSup":157,"RankTotal":927,"ScoreTotal":390258,"ID":1020792,"Name":"rere1995","NumVillages":1,"Points":834,"Rank":1909,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1020792","BestRank":1909,"BestRankAt":"2023-02-15T06:22:53.250289Z","MostPoints":834,"MostPointsAt":"2023-02-15T06:22:53.250289Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250289Z","LastActivityAt":"2023-02-15T06:22:53.250289Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1474,"ScoreAtt":2754,"RankDef":638,"ScoreDef":338682,"RankSup":1123,"ScoreSup":1498,"RankTotal":969,"ScoreTotal":342934,"ID":1021709,"Name":"NewBetterSatan","NumVillages":1,"Points":1609,"Rank":1730,"TribeID":1705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1021709","BestRank":1730,"BestRankAt":"2023-02-15T06:22:53.250289Z","MostPoints":1609,"MostPointsAt":"2023-02-15T06:22:53.250289Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250289Z","LastActivityAt":"2023-02-15T06:22:53.250289Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1341,"ScoreAtt":5381,"RankDef":2318,"ScoreDef":222,"RankSup":0,"ScoreSup":0,"RankTotal":2109,"ScoreTotal":5603,"ID":1034117,"Name":"Splendid606","NumVillages":3,"Points":5941,"Rank":1274,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1034117","BestRank":1274,"BestRankAt":"2023-02-15T06:22:53.25029Z","MostPoints":5941,"MostPointsAt":"2023-02-15T06:22:53.25029Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.25029Z","LastActivityAt":"2023-02-15T06:22:53.25029Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":979,"ScoreDef":130875,"RankSup":0,"ScoreSup":0,"RankTotal":1295,"ScoreTotal":130875,"ID":1043028,"Name":"badadi 97","NumVillages":1,"Points":3240,"Rank":1502,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1043028","BestRank":1502,"BestRankAt":"2023-02-15T06:22:53.25029Z","MostPoints":3240,"MostPointsAt":"2023-02-15T06:22:53.25029Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25029Z","LastActivityAt":"2023-02-15T06:22:53.25029Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1904,"ScoreDef":7890,"RankSup":0,"ScoreSup":0,"RankTotal":2050,"ScoreTotal":7890,"ID":1044760,"Name":"Jatutuptup","NumVillages":1,"Points":524,"Rank":2015,"TribeID":159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1044760","BestRank":2015,"BestRankAt":"2023-02-15T06:22:53.250291Z","MostPoints":524,"MostPointsAt":"2023-02-15T06:22:53.250291Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250291Z","LastActivityAt":"2023-02-15T06:22:53.250291Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1460,"ScoreAtt":3043,"RankDef":1795,"ScoreDef":12582,"RankSup":1068,"ScoreSup":2601,"RankTotal":1889,"ScoreTotal":18226,"ID":1049851,"Name":"Strojgniew","NumVillages":4,"Points":18838,"Rank":937,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1049851","BestRank":937,"BestRankAt":"2023-02-15T06:22:53.250291Z","MostPoints":18838,"MostPointsAt":"2023-02-15T06:22:53.250291Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250291Z","LastActivityAt":"2023-02-15T06:22:53.250292Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":653,"ScoreAtt":156288,"RankDef":351,"ScoreDef":884900,"RankSup":0,"ScoreSup":0,"RankTotal":607,"ScoreTotal":1041188,"ID":1078121,"Name":"Damian283","NumVillages":11,"Points":78752,"Rank":588,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1078121","BestRank":588,"BestRankAt":"2023-02-15T06:22:53.250292Z","MostPoints":78752,"MostPointsAt":"2023-02-15T06:22:53.250292Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.250292Z","LastActivityAt":"2023-02-15T06:22:53.250292Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1860,"ScoreAtt":111,"RankDef":1222,"ScoreDef":68604,"RankSup":1060,"ScoreSup":2732,"RankTotal":1498,"ScoreTotal":71447,"ID":1079223,"Name":"elgordo","NumVillages":1,"Points":1599,"Rank":1732,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1079223","BestRank":1732,"BestRankAt":"2023-02-15T06:22:53.250292Z","MostPoints":1599,"MostPointsAt":"2023-02-15T06:22:53.250293Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250292Z","LastActivityAt":"2023-02-15T06:22:53.250293Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1085802,"Name":"golem6","NumVillages":1,"Points":26,"Rank":2628,"TribeID":1791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1085802","BestRank":2628,"BestRankAt":"2023-02-15T06:22:53.250293Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250293Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250293Z","LastActivityAt":"2023-02-15T06:22:53.250293Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":404,"ScoreAtt":578446,"RankDef":183,"ScoreDef":2047868,"RankSup":202,"ScoreSup":926550,"RankTotal":253,"ScoreTotal":3552864,"ID":1086351,"Name":"plls","NumVillages":54,"Points":294894,"Rank":358,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1086351","BestRank":358,"BestRankAt":"2023-02-15T06:22:53.250293Z","MostPoints":294894,"MostPointsAt":"2023-02-15T06:22:53.250294Z","MostVillages":54,"MostVillagesAt":"2023-02-15T06:22:53.250294Z","LastActivityAt":"2023-02-15T06:22:53.250294Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1328,"ScoreAtt":5724,"RankDef":1076,"ScoreDef":100624,"RankSup":979,"ScoreSup":6161,"RankTotal":1350,"ScoreTotal":112509,"ID":1095271,"Name":"HUBERTS111","NumVillages":1,"Points":1960,"Rank":1674,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1095271","BestRank":1674,"BestRankAt":"2023-02-15T06:22:53.250294Z","MostPoints":1960,"MostPointsAt":"2023-02-15T06:22:53.250294Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250294Z","LastActivityAt":"2023-02-15T06:22:53.250294Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250715Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":621,"ScoreAtt":190423,"RankDef":154,"ScoreDef":2481698,"RankSup":469,"ScoreSup":198215,"RankTotal":301,"ScoreTotal":2870336,"ID":1095489,"Name":"Mikares","NumVillages":4,"Points":4160,"Rank":1396,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1095489","BestRank":1396,"BestRankAt":"2023-02-15T06:22:53.250295Z","MostPoints":4160,"MostPointsAt":"2023-02-15T06:22:53.250295Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250295Z","LastActivityAt":"2023-02-15T06:22:53.250295Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":726,"ScoreAtt":112842,"RankDef":1170,"ScoreDef":78805,"RankSup":500,"ScoreSup":173244,"RankTotal":946,"ScoreTotal":364891,"ID":1096254,"Name":"marmag","NumVillages":11,"Points":79688,"Rank":586,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1096254","BestRank":586,"BestRankAt":"2023-02-15T06:22:53.250295Z","MostPoints":79688,"MostPointsAt":"2023-02-15T06:22:53.250295Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.250295Z","LastActivityAt":"2023-02-15T06:22:53.250295Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1976,"ScoreDef":5729,"RankSup":0,"ScoreSup":0,"RankTotal":2107,"ScoreTotal":5729,"ID":1106220,"Name":"mon-men","NumVillages":1,"Points":1472,"Rank":1754,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1106220","BestRank":1754,"BestRankAt":"2023-02-15T06:22:53.250296Z","MostPoints":1472,"MostPointsAt":"2023-02-15T06:22:53.250296Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250296Z","LastActivityAt":"2023-02-15T06:22:53.250296Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2365,"ScoreDef":52,"RankSup":0,"ScoreSup":0,"RankTotal":2458,"ScoreTotal":52,"ID":1132842,"Name":"bylo21","NumVillages":1,"Points":199,"Rank":2299,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1132842","BestRank":2299,"BestRankAt":"2023-02-15T06:22:53.250296Z","MostPoints":199,"MostPointsAt":"2023-02-15T06:22:53.250296Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250296Z","LastActivityAt":"2023-02-15T06:22:53.250296Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1153934,"Name":"Butcher*","NumVillages":1,"Points":32,"Rank":2615,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1153934","BestRank":2615,"BestRankAt":"2023-02-15T06:22:53.250297Z","MostPoints":32,"MostPointsAt":"2023-02-15T06:22:53.250297Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250297Z","LastActivityAt":"2023-02-15T06:22:53.250297Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1279,"ScoreAtt":7102,"RankDef":1605,"ScoreDef":25384,"RankSup":0,"ScoreSup":0,"RankTotal":1752,"ScoreTotal":32486,"ID":1164249,"Name":"kukiz70","NumVillages":2,"Points":11001,"Rank":1055,"TribeID":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1164249","BestRank":1055,"BestRankAt":"2023-02-15T06:22:53.250297Z","MostPoints":11001,"MostPointsAt":"2023-02-15T06:22:53.250297Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250297Z","LastActivityAt":"2023-02-15T06:22:53.250298Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1921,"ScoreAtt":36,"RankDef":1294,"ScoreDef":58461,"RankSup":0,"ScoreSup":0,"RankTotal":1565,"ScoreTotal":58497,"ID":1170102,"Name":"miro2558","NumVillages":1,"Points":196,"Rank":2306,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1170102","BestRank":2306,"BestRankAt":"2023-02-15T06:22:53.250298Z","MostPoints":196,"MostPointsAt":"2023-02-15T06:22:53.250298Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250298Z","LastActivityAt":"2023-02-15T06:22:53.250298Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":661,"ScoreAtt":152838,"RankDef":1628,"ScoreDef":24100,"RankSup":1413,"ScoreSup":1,"RankTotal":1195,"ScoreTotal":176939,"ID":1205898,"Name":"bolopb","NumVillages":33,"Points":198134,"Rank":415,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1205898","BestRank":415,"BestRankAt":"2023-02-15T06:22:53.250298Z","MostPoints":198134,"MostPointsAt":"2023-02-15T06:22:53.250299Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.250298Z","LastActivityAt":"2023-02-15T06:22:53.250299Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1931,"ScoreDef":6898,"RankSup":0,"ScoreSup":0,"RankTotal":2073,"ScoreTotal":6898,"ID":1227022,"Name":"Ɓukasz80","NumVillages":1,"Points":1019,"Rank":1856,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1227022","BestRank":1856,"BestRankAt":"2023-02-15T06:22:53.250299Z","MostPoints":1019,"MostPointsAt":"2023-02-15T06:22:53.250299Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250299Z","LastActivityAt":"2023-02-15T06:22:53.250299Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1603,"ScoreAtt":1273,"RankDef":1704,"ScoreDef":18722,"RankSup":1220,"ScoreSup":287,"RankTotal":1870,"ScoreTotal":20282,"ID":1227918,"Name":"leslawos","NumVillages":2,"Points":9559,"Rank":1103,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1227918","BestRank":1103,"BestRankAt":"2023-02-15T06:22:53.250299Z","MostPoints":9559,"MostPointsAt":"2023-02-15T06:22:53.2503Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.2503Z","LastActivityAt":"2023-02-15T06:22:53.2503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":69,"ScoreAtt":4240017,"RankDef":493,"ScoreDef":529488,"RankSup":43,"ScoreSup":3692500,"RankTotal":93,"ScoreTotal":8462005,"ID":1238300,"Name":"messi1996","NumVillages":309,"Points":2561800,"Rank":21,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1238300","BestRank":21,"BestRankAt":"2023-02-15T06:22:53.2503Z","MostPoints":2561800,"MostPointsAt":"2023-02-15T06:22:53.2503Z","MostVillages":309,"MostVillagesAt":"2023-02-15T06:22:53.2503Z","LastActivityAt":"2023-02-15T06:22:53.2503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1666,"ScoreAtt":753,"RankDef":1379,"ScoreDef":47680,"RankSup":0,"ScoreSup":0,"RankTotal":1625,"ScoreTotal":48433,"ID":1260088,"Name":"czorny-81","NumVillages":1,"Points":498,"Rank":2033,"TribeID":1657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1260088","BestRank":2033,"BestRankAt":"2023-02-15T06:22:53.250301Z","MostPoints":498,"MostPointsAt":"2023-02-15T06:22:53.250301Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250301Z","LastActivityAt":"2023-02-15T06:22:53.250301Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":563,"ScoreAtt":258364,"RankDef":487,"ScoreDef":544257,"RankSup":538,"ScoreSup":137355,"RankTotal":641,"ScoreTotal":939976,"ID":1267913,"Name":"19Adrian90","NumVillages":7,"Points":24218,"Rank":867,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1267913","BestRank":867,"BestRankAt":"2023-02-15T06:22:53.250301Z","MostPoints":24218,"MostPointsAt":"2023-02-15T06:22:53.250301Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.250301Z","LastActivityAt":"2023-02-15T06:22:53.250301Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1281,"ScoreAtt":6987,"RankDef":796,"ScoreDef":212998,"RankSup":1238,"ScoreSup":207,"RankTotal":1108,"ScoreTotal":220192,"ID":1270916,"Name":"*Walkiria","NumVillages":5,"Points":37072,"Rank":762,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1270916","BestRank":762,"BestRankAt":"2023-02-15T06:22:53.250302Z","MostPoints":37072,"MostPointsAt":"2023-02-15T06:22:53.250302Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250302Z","LastActivityAt":"2023-02-15T06:22:53.250302Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1484,"ScoreAtt":2578,"RankDef":1288,"ScoreDef":58951,"RankSup":1391,"ScoreSup":2,"RankTotal":1542,"ScoreTotal":61531,"ID":1276665,"Name":"krowabojowa","NumVillages":7,"Points":23295,"Rank":878,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1276665","BestRank":878,"BestRankAt":"2023-02-15T06:22:53.250302Z","MostPoints":23295,"MostPointsAt":"2023-02-15T06:22:53.250302Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.250302Z","LastActivityAt":"2023-02-15T06:22:53.250302Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1531,"ScoreAtt":2083,"RankDef":1429,"ScoreDef":39858,"RankSup":0,"ScoreSup":0,"RankTotal":1670,"ScoreTotal":41941,"ID":1284796,"Name":"joybook","NumVillages":1,"Points":665,"Rank":1964,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1284796","BestRank":1964,"BestRankAt":"2023-02-15T06:22:53.250303Z","MostPoints":665,"MostPointsAt":"2023-02-15T06:22:53.250303Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250303Z","LastActivityAt":"2023-02-15T06:22:53.250303Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1481,"ScoreAtt":2647,"RankDef":786,"ScoreDef":220862,"RankSup":0,"ScoreSup":0,"RankTotal":1104,"ScoreTotal":223509,"ID":1285441,"Name":"markus72","NumVillages":0,"Points":0,"Rank":2888,"TribeID":1431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1285441","BestRank":2888,"BestRankAt":"2023-02-15T06:22:53.250303Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250303Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250303Z","LastActivityAt":"2023-02-15T06:22:53.250304Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1622,"ScoreAtt":1081,"RankDef":1156,"ScoreDef":81894,"RankSup":917,"ScoreSup":10264,"RankTotal":1419,"ScoreTotal":93239,"ID":1286008,"Name":"perfekcja","NumVillages":1,"Points":3836,"Rank":1427,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1286008","BestRank":1427,"BestRankAt":"2023-02-15T06:22:53.250304Z","MostPoints":3836,"MostPointsAt":"2023-02-15T06:22:53.250304Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250304Z","LastActivityAt":"2023-02-15T06:22:53.250304Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1304915,"Name":"Hasyp","NumVillages":1,"Points":487,"Rank":2037,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1304915","BestRank":2037,"BestRankAt":"2023-02-15T06:22:53.250304Z","MostPoints":487,"MostPointsAt":"2023-02-15T06:22:53.250305Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250304Z","LastActivityAt":"2023-02-15T06:22:53.250305Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1973,"ScoreDef":5796,"RankSup":0,"ScoreSup":0,"RankTotal":2105,"ScoreTotal":5796,"ID":1322622,"Name":"apysia","NumVillages":1,"Points":200,"Rank":2296,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1322622","BestRank":2296,"BestRankAt":"2023-02-15T06:22:53.250305Z","MostPoints":200,"MostPointsAt":"2023-02-15T06:22:53.250305Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250305Z","LastActivityAt":"2023-02-15T06:22:53.250305Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1355,"ScoreAtt":5193,"RankDef":1553,"ScoreDef":29353,"RankSup":0,"ScoreSup":0,"RankTotal":1729,"ScoreTotal":34546,"ID":1323424,"Name":"szymekXIV","NumVillages":5,"Points":16672,"Rank":972,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1323424","BestRank":972,"BestRankAt":"2023-02-15T06:22:53.250305Z","MostPoints":16672,"MostPointsAt":"2023-02-15T06:22:53.250306Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250306Z","LastActivityAt":"2023-02-15T06:22:53.250306Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250738Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":344,"ScoreDef":901713,"RankSup":0,"ScoreSup":0,"RankTotal":656,"ScoreTotal":901713,"ID":1347385,"Name":"Zephyr II","NumVillages":1,"Points":4186,"Rank":1394,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1347385","BestRank":1394,"BestRankAt":"2023-02-15T06:22:53.250306Z","MostPoints":4186,"MostPointsAt":"2023-02-15T06:22:53.250306Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250306Z","LastActivityAt":"2023-02-15T06:22:53.250306Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1592,"ScoreAtt":1342,"RankDef":1606,"ScoreDef":25361,"RankSup":1173,"ScoreSup":681,"RankTotal":1798,"ScoreTotal":27384,"ID":1350456,"Name":"Jaruga007","NumVillages":1,"Points":192,"Rank":2316,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1350456","BestRank":2316,"BestRankAt":"2023-02-15T06:22:53.250307Z","MostPoints":192,"MostPointsAt":"2023-02-15T06:22:53.250307Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250307Z","LastActivityAt":"2023-02-15T06:22:53.250307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1916,"ScoreDef":7469,"RankSup":0,"ScoreSup":0,"RankTotal":2061,"ScoreTotal":7469,"ID":1371998,"Name":"pyari","NumVillages":1,"Points":2031,"Rank":1659,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1371998","BestRank":1659,"BestRankAt":"2023-02-15T06:22:53.250307Z","MostPoints":2031,"MostPointsAt":"2023-02-15T06:22:53.250307Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250307Z","LastActivityAt":"2023-02-15T06:22:53.250307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250741Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1384222,"Name":"Gruby0905","NumVillages":1,"Points":515,"Rank":2019,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1384222","BestRank":2019,"BestRankAt":"2023-02-15T06:22:53.250308Z","MostPoints":515,"MostPointsAt":"2023-02-15T06:22:53.250308Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250308Z","LastActivityAt":"2023-02-15T06:22:53.250308Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250742Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1345,"ScoreDef":52241,"RankSup":0,"ScoreSup":0,"RankTotal":1600,"ScoreTotal":52241,"ID":1406042,"Name":"erielle","NumVillages":1,"Points":8318,"Rank":1145,"TribeID":365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1406042","BestRank":1145,"BestRankAt":"2023-02-15T06:22:53.250308Z","MostPoints":8318,"MostPointsAt":"2023-02-15T06:22:53.250308Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250308Z","LastActivityAt":"2023-02-15T06:22:53.250308Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250744Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":217,"ScoreAtt":1420858,"RankDef":1207,"ScoreDef":71681,"RankSup":789,"ScoreSup":27564,"RankTotal":490,"ScoreTotal":1520103,"ID":1415009,"Name":"sony911","NumVillages":192,"Points":1384110,"Rank":86,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1415009","BestRank":86,"BestRankAt":"2023-02-15T06:22:53.250309Z","MostPoints":1384110,"MostPointsAt":"2023-02-15T06:22:53.250309Z","MostVillages":192,"MostVillagesAt":"2023-02-15T06:22:53.250309Z","LastActivityAt":"2023-02-15T06:22:53.250309Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250744Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":962,"ScoreAtt":37085,"RankDef":1743,"ScoreDef":16413,"RankSup":1308,"ScoreSup":21,"RankTotal":1597,"ScoreTotal":53519,"ID":1415665,"Name":"White_Lady88","NumVillages":0,"Points":0,"Rank":2889,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1415665","BestRank":2889,"BestRankAt":"2023-02-15T06:22:53.250309Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250309Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250309Z","LastActivityAt":"2023-02-15T06:22:53.25031Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250745Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":390,"ScoreAtt":605341,"RankDef":490,"ScoreDef":535112,"RankSup":300,"ScoreSup":528191,"RankTotal":464,"ScoreTotal":1668644,"ID":1424656,"Name":"Vecci","NumVillages":97,"Points":469643,"Rank":280,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1424656","BestRank":280,"BestRankAt":"2023-02-15T06:22:53.25031Z","MostPoints":469643,"MostPointsAt":"2023-02-15T06:22:53.25031Z","MostVillages":97,"MostVillagesAt":"2023-02-15T06:22:53.25031Z","LastActivityAt":"2023-02-15T06:22:53.25031Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250747Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":24,"ScoreAtt":7390915,"RankDef":70,"ScoreDef":4847755,"RankSup":113,"ScoreSup":1968157,"RankTotal":57,"ScoreTotal":14206827,"ID":1434753,"Name":"Ryba9431 x Diil3r","NumVillages":93,"Points":915411,"Rank":161,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1434753","BestRank":161,"BestRankAt":"2023-02-15T06:22:53.25031Z","MostPoints":915411,"MostPointsAt":"2023-02-15T06:22:53.250311Z","MostVillages":93,"MostVillagesAt":"2023-02-15T06:22:53.25031Z","LastActivityAt":"2023-02-15T06:22:53.250311Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250748Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1585,"ScoreAtt":1454,"RankDef":663,"ScoreDef":303399,"RankSup":1027,"ScoreSup":3811,"RankTotal":997,"ScoreTotal":308664,"ID":1450352,"Name":"PACYFICA","NumVillages":1,"Points":590,"Rank":1989,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1450352","BestRank":1989,"BestRankAt":"2023-02-15T06:22:53.250311Z","MostPoints":590,"MostPointsAt":"2023-02-15T06:22:53.250311Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250311Z","LastActivityAt":"2023-02-15T06:22:53.250311Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250748Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":869,"ScoreDef":179391,"RankSup":0,"ScoreSup":0,"RankTotal":1191,"ScoreTotal":179391,"ID":1454871,"Name":"gandalffa","NumVillages":1,"Points":1374,"Rank":1771,"TribeID":413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1454871","BestRank":1771,"BestRankAt":"2023-02-15T06:22:53.250311Z","MostPoints":1374,"MostPointsAt":"2023-02-15T06:22:53.250312Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250312Z","LastActivityAt":"2023-02-15T06:22:53.250312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1987,"ScoreDef":5389,"RankSup":0,"ScoreSup":0,"RankTotal":2116,"ScoreTotal":5389,"ID":1493696,"Name":"roooob","NumVillages":1,"Points":3883,"Rank":1422,"TribeID":1786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1493696","BestRank":1422,"BestRankAt":"2023-02-15T06:22:53.250312Z","MostPoints":3883,"MostPointsAt":"2023-02-15T06:22:53.250312Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250312Z","LastActivityAt":"2023-02-15T06:22:53.250312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250751Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":6,"ScoreAtt":15228631,"RankDef":101,"ScoreDef":3510999,"RankSup":27,"ScoreSup":4779932,"RankTotal":22,"ScoreTotal":23519562,"ID":1497168,"Name":"Krulowiec Wielki","NumVillages":236,"Points":2266144,"Rank":37,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1497168","BestRank":37,"BestRankAt":"2023-02-15T06:22:53.250313Z","MostPoints":2266144,"MostPointsAt":"2023-02-15T06:22:53.250313Z","MostVillages":236,"MostVillagesAt":"2023-02-15T06:22:53.250313Z","LastActivityAt":"2023-02-15T06:22:53.250313Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250752Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":829,"ScoreDef":194017,"RankSup":1088,"ScoreSup":2161,"RankTotal":1141,"ScoreTotal":196178,"ID":1510264,"Name":"Ɓokietek II","NumVillages":1,"Points":4104,"Rank":1401,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1510264","BestRank":1401,"BestRankAt":"2023-02-15T06:22:53.250313Z","MostPoints":4104,"MostPointsAt":"2023-02-15T06:22:53.250313Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250313Z","LastActivityAt":"2023-02-15T06:22:53.250313Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250753Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2313,"ScoreDef":231,"RankSup":0,"ScoreSup":0,"RankTotal":2397,"ScoreTotal":231,"ID":1511101,"Name":"rafi041072","NumVillages":1,"Points":522,"Rank":2017,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1511101","BestRank":2017,"BestRankAt":"2023-02-15T06:22:53.250314Z","MostPoints":522,"MostPointsAt":"2023-02-15T06:22:53.250314Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250314Z","LastActivityAt":"2023-02-15T06:22:53.250314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250755Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1517450,"Name":"Ankalagon Czarny","NumVillages":1,"Points":268,"Rank":2207,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1517450","BestRank":2207,"BestRankAt":"2023-02-15T06:22:53.250314Z","MostPoints":268,"MostPointsAt":"2023-02-15T06:22:53.250314Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250314Z","LastActivityAt":"2023-02-15T06:22:53.250314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250756Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1900,"ScoreAtt":51,"RankDef":1290,"ScoreDef":58753,"RankSup":0,"ScoreSup":0,"RankTotal":1562,"ScoreTotal":58804,"ID":1525273,"Name":"mrufki komandoski","NumVillages":1,"Points":197,"Rank":2304,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1525273","BestRank":2304,"BestRankAt":"2023-02-15T06:22:53.250315Z","MostPoints":197,"MostPointsAt":"2023-02-15T06:22:53.250315Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250315Z","LastActivityAt":"2023-02-15T06:22:53.250315Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250756Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":220,"ScoreAtt":1343488,"RankDef":1440,"ScoreDef":38943,"RankSup":70,"ScoreSup":2827694,"RankTotal":226,"ScoreTotal":4210125,"ID":1536231,"Name":"vip999","NumVillages":103,"Points":850452,"Rank":170,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1536231","BestRank":170,"BestRankAt":"2023-02-15T06:22:53.250315Z","MostPoints":850452,"MostPointsAt":"2023-02-15T06:22:53.250315Z","MostVillages":103,"MostVillagesAt":"2023-02-15T06:22:53.250315Z","LastActivityAt":"2023-02-15T06:22:53.250316Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250757Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":79,"ScoreAtt":3981331,"RankDef":358,"ScoreDef":871218,"RankSup":226,"ScoreSup":785344,"RankTotal":161,"ScoreTotal":5637893,"ID":1536625,"Name":"Spojler201","NumVillages":102,"Points":823351,"Rank":177,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1536625","BestRank":177,"BestRankAt":"2023-02-15T06:22:53.250316Z","MostPoints":823351,"MostPointsAt":"2023-02-15T06:22:53.250316Z","MostVillages":102,"MostVillagesAt":"2023-02-15T06:22:53.250316Z","LastActivityAt":"2023-02-15T06:22:53.250316Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250758Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2042,"ScoreDef":3966,"RankSup":0,"ScoreSup":0,"RankTotal":2172,"ScoreTotal":3966,"ID":1553481,"Name":"STALLON327","NumVillages":1,"Points":2065,"Rank":1646,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1553481","BestRank":1646,"BestRankAt":"2023-02-15T06:22:53.250316Z","MostPoints":2065,"MostPointsAt":"2023-02-15T06:22:53.250317Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250316Z","LastActivityAt":"2023-02-15T06:22:53.250317Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250759Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":200,"ScoreAtt":1567485,"RankDef":195,"ScoreDef":1956403,"RankSup":218,"ScoreSup":817343,"RankTotal":219,"ScoreTotal":4341231,"ID":1553947,"Name":"Tryfi","NumVillages":34,"Points":329819,"Rank":340,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1553947","BestRank":340,"BestRankAt":"2023-02-15T06:22:53.250317Z","MostPoints":329819,"MostPointsAt":"2023-02-15T06:22:53.250317Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.250317Z","LastActivityAt":"2023-02-15T06:22:53.250317Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25076Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":363,"ScoreAtt":658662,"RankDef":755,"ScoreDef":237156,"RankSup":399,"ScoreSup":316564,"RankTotal":557,"ScoreTotal":1212382,"ID":1563417,"Name":"DilerPL","NumVillages":11,"Points":94811,"Rank":552,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1563417","BestRank":552,"BestRankAt":"2023-02-15T06:22:53.250317Z","MostPoints":94811,"MostPointsAt":"2023-02-15T06:22:53.250318Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.250318Z","LastActivityAt":"2023-02-15T06:22:53.250318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250762Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1984,"ScoreDef":5459,"RankSup":0,"ScoreSup":0,"RankTotal":2114,"ScoreTotal":5459,"ID":1568700,"Name":"wilku1000","NumVillages":1,"Points":2775,"Rank":1552,"TribeID":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1568700","BestRank":1552,"BestRankAt":"2023-02-15T06:22:53.250318Z","MostPoints":2775,"MostPointsAt":"2023-02-15T06:22:53.250318Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250318Z","LastActivityAt":"2023-02-15T06:22:53.250318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250768Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2142,"ScoreDef":2078,"RankSup":0,"ScoreSup":0,"RankTotal":2240,"ScoreTotal":2078,"ID":1568908,"Name":"MIRLEON","NumVillages":1,"Points":291,"Rank":2184,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1568908","BestRank":2184,"BestRankAt":"2023-02-15T06:22:53.250319Z","MostPoints":291,"MostPointsAt":"2023-02-15T06:22:53.250319Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250319Z","LastActivityAt":"2023-02-15T06:22:53.250319Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250768Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1935,"ScoreAtt":29,"RankDef":1314,"ScoreDef":55835,"RankSup":0,"ScoreSup":0,"RankTotal":1578,"ScoreTotal":55864,"ID":1578509,"Name":"arek1s","NumVillages":1,"Points":8119,"Rank":1151,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1578509","BestRank":1151,"BestRankAt":"2023-02-15T06:22:53.250319Z","MostPoints":8119,"MostPointsAt":"2023-02-15T06:22:53.250319Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250319Z","LastActivityAt":"2023-02-15T06:22:53.250319Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25077Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2277,"ScoreDef":434,"RankSup":0,"ScoreSup":0,"RankTotal":2364,"ScoreTotal":434,"ID":1581890,"Name":"Argeen","NumVillages":1,"Points":847,"Rank":1902,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1581890","BestRank":1902,"BestRankAt":"2023-02-15T06:22:53.25032Z","MostPoints":847,"MostPointsAt":"2023-02-15T06:22:53.25032Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25032Z","LastActivityAt":"2023-02-15T06:22:53.25032Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250771Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":527,"ScoreAtt":312934,"RankDef":1504,"ScoreDef":33620,"RankSup":415,"ScoreSup":283904,"RankTotal":765,"ScoreTotal":630458,"ID":1601917,"Name":"asiok79","NumVillages":101,"Points":647058,"Rank":220,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1601917","BestRank":220,"BestRankAt":"2023-02-15T06:22:53.25032Z","MostPoints":647058,"MostPointsAt":"2023-02-15T06:22:53.25032Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.25032Z","LastActivityAt":"2023-02-15T06:22:53.25032Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250772Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1454,"ScoreAtt":3112,"RankDef":986,"ScoreDef":128503,"RankSup":588,"ScoreSup":103635,"RankTotal":1075,"ScoreTotal":235250,"ID":1606425,"Name":"Sullivan IV","NumVillages":4,"Points":42012,"Rank":732,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1606425","BestRank":732,"BestRankAt":"2023-02-15T06:22:53.250321Z","MostPoints":42012,"MostPointsAt":"2023-02-15T06:22:53.250321Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250321Z","LastActivityAt":"2023-02-15T06:22:53.250321Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250772Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":637,"ScoreAtt":170636,"RankDef":464,"ScoreDef":582629,"RankSup":1199,"ScoreSup":398,"RankTotal":703,"ScoreTotal":753663,"ID":1608563,"Name":"loj99","NumVillages":0,"Points":0,"Rank":2890,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1608563","BestRank":2890,"BestRankAt":"2023-02-15T06:22:53.250321Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250322Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250321Z","LastActivityAt":"2023-02-15T06:22:53.250322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250773Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1160,"ScoreAtt":13065,"RankDef":919,"ScoreDef":154613,"RankSup":847,"ScoreSup":16885,"RankTotal":1180,"ScoreTotal":184563,"ID":1609607,"Name":"hydra","NumVillages":1,"Points":619,"Rank":1983,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1609607","BestRank":1983,"BestRankAt":"2023-02-15T06:22:53.250322Z","MostPoints":619,"MostPointsAt":"2023-02-15T06:22:53.250322Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250322Z","LastActivityAt":"2023-02-15T06:22:53.250322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250774Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1382,"ScoreAtt":4538,"RankDef":1224,"ScoreDef":68381,"RankSup":0,"ScoreSup":0,"RankTotal":1489,"ScoreTotal":72919,"ID":1610267,"Name":"Jar0o","NumVillages":1,"Points":115,"Rank":2454,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1610267","BestRank":2454,"BestRankAt":"2023-02-15T06:22:53.250322Z","MostPoints":115,"MostPointsAt":"2023-02-15T06:22:53.250323Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250322Z","LastActivityAt":"2023-02-15T06:22:53.250323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250775Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1626626,"Name":"jedyny1taki","NumVillages":1,"Points":32,"Rank":2616,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1626626","BestRank":2616,"BestRankAt":"2023-02-15T06:22:53.250323Z","MostPoints":32,"MostPointsAt":"2023-02-15T06:22:53.250323Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250323Z","LastActivityAt":"2023-02-15T06:22:53.250323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250776Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1181,"ScoreDef":76709,"RankSup":0,"ScoreSup":0,"RankTotal":1478,"ScoreTotal":76709,"ID":1631690,"Name":"kukus1946","NumVillages":1,"Points":2284,"Rank":1616,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1631690","BestRank":1616,"BestRankAt":"2023-02-15T06:22:53.250323Z","MostPoints":2284,"MostPointsAt":"2023-02-15T06:22:53.250324Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250324Z","LastActivityAt":"2023-02-15T06:22:53.250324Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250778Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2149,"ScoreDef":1946,"RankSup":0,"ScoreSup":0,"RankTotal":2250,"ScoreTotal":1946,"ID":1645835,"Name":"cƂopciec","NumVillages":0,"Points":0,"Rank":2891,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1645835","BestRank":2891,"BestRankAt":"2023-02-15T06:22:53.250324Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250324Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250324Z","LastActivityAt":"2023-02-15T06:22:53.250324Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250779Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1206,"ScoreDef":72134,"RankSup":0,"ScoreSup":0,"RankTotal":1494,"ScoreTotal":72134,"ID":1646837,"Name":"grek159","NumVillages":1,"Points":2326,"Rank":1611,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1646837","BestRank":1611,"BestRankAt":"2023-02-15T06:22:53.250325Z","MostPoints":2326,"MostPointsAt":"2023-02-15T06:22:53.250325Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250325Z","LastActivityAt":"2023-02-15T06:22:53.250325Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250779Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":896,"ScoreAtt":51827,"RankDef":1070,"ScoreDef":102226,"RankSup":1041,"ScoreSup":3286,"RankTotal":1236,"ScoreTotal":157339,"ID":1647052,"Name":"Peny25","NumVillages":10,"Points":45845,"Rank":710,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1647052","BestRank":710,"BestRankAt":"2023-02-15T06:22:53.250325Z","MostPoints":45845,"MostPointsAt":"2023-02-15T06:22:53.250325Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250325Z","LastActivityAt":"2023-02-15T06:22:53.250325Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250781Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1670,"ScoreDef":20296,"RankSup":0,"ScoreSup":0,"RankTotal":1869,"ScoreTotal":20296,"ID":1668965,"Name":"Rychont","NumVillages":1,"Points":1091,"Rank":1837,"TribeID":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1668965","BestRank":1837,"BestRankAt":"2023-02-15T06:22:53.250326Z","MostPoints":1091,"MostPointsAt":"2023-02-15T06:22:53.250326Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250326Z","LastActivityAt":"2023-02-15T06:22:53.250326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250782Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1173,"ScoreDef":78351,"RankSup":0,"ScoreSup":0,"RankTotal":1473,"ScoreTotal":78351,"ID":1669587,"Name":"Mateuszek023","NumVillages":1,"Points":998,"Rank":1865,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1669587","BestRank":1865,"BestRankAt":"2023-02-15T06:22:53.250326Z","MostPoints":998,"MostPointsAt":"2023-02-15T06:22:53.250326Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250326Z","LastActivityAt":"2023-02-15T06:22:53.250326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250782Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2319,"ScoreDef":212,"RankSup":1146,"ScoreSup":1074,"RankTotal":2291,"ScoreTotal":1286,"ID":1675628,"Name":"Harmozabal","NumVillages":1,"Points":53,"Rank":2570,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1675628","BestRank":2570,"BestRankAt":"2023-02-15T06:22:53.250327Z","MostPoints":53,"MostPointsAt":"2023-02-15T06:22:53.250327Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250327Z","LastActivityAt":"2023-02-15T06:22:53.250327Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250783Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1684948,"Name":"robosm3352","NumVillages":1,"Points":108,"Rank":2467,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1684948","BestRank":2467,"BestRankAt":"2023-02-15T06:22:53.250327Z","MostPoints":108,"MostPointsAt":"2023-02-15T06:22:53.250327Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250327Z","LastActivityAt":"2023-02-15T06:22:53.250328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250785Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1042,"ScoreDef":112417,"RankSup":0,"ScoreSup":0,"RankTotal":1351,"ScoreTotal":112417,"ID":1693936,"Name":"Bukson","NumVillages":7,"Points":29862,"Rank":815,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1693936","BestRank":815,"BestRankAt":"2023-02-15T06:22:53.250328Z","MostPoints":29862,"MostPointsAt":"2023-02-15T06:22:53.250328Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.250328Z","LastActivityAt":"2023-02-15T06:22:53.250328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250787Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":857,"ScoreDef":183686,"RankSup":697,"ScoreSup":51277,"RankTotal":1077,"ScoreTotal":234963,"ID":1700145,"Name":"elew","NumVillages":1,"Points":1969,"Rank":1673,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1700145","BestRank":1673,"BestRankAt":"2023-02-15T06:22:53.250328Z","MostPoints":1969,"MostPointsAt":"2023-02-15T06:22:53.250329Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250328Z","LastActivityAt":"2023-02-15T06:22:53.250329Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250787Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":386,"ScoreAtt":611831,"RankDef":1346,"ScoreDef":52177,"RankSup":723,"ScoreSup":42124,"RankTotal":729,"ScoreTotal":706132,"ID":1715091,"Name":"podgrzybek brunatny","NumVillages":88,"Points":651776,"Rank":218,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1715091","BestRank":218,"BestRankAt":"2023-02-15T06:22:53.250331Z","MostPoints":651776,"MostPointsAt":"2023-02-15T06:22:53.250331Z","MostVillages":88,"MostVillagesAt":"2023-02-15T06:22:53.250331Z","LastActivityAt":"2023-02-15T06:22:53.250331Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250788Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":984,"ScoreAtt":33246,"RankDef":254,"ScoreDef":1455179,"RankSup":420,"ScoreSup":276081,"RankTotal":452,"ScoreTotal":1764506,"ID":1746216,"Name":"SzakuƂ23","NumVillages":10,"Points":62549,"Rank":643,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1746216","BestRank":643,"BestRankAt":"2023-02-15T06:22:53.250332Z","MostPoints":62549,"MostPointsAt":"2023-02-15T06:22:53.250332Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250332Z","LastActivityAt":"2023-02-15T06:22:53.250332Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25079Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":884,"ScoreAtt":54675,"RankDef":1099,"ScoreDef":94275,"RankSup":0,"ScoreSup":0,"RankTotal":1250,"ScoreTotal":148950,"ID":1748180,"Name":"Mistrz444","NumVillages":0,"Points":0,"Rank":2892,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1748180","BestRank":2892,"BestRankAt":"2023-02-15T06:22:53.250332Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250332Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250332Z","LastActivityAt":"2023-02-15T06:22:53.250332Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1753,"ScoreDef":15483,"RankSup":0,"ScoreSup":0,"RankTotal":1928,"ScoreTotal":15483,"ID":1757722,"Name":"Ludwik 3","NumVillages":1,"Points":175,"Rank":2344,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1757722","BestRank":2344,"BestRankAt":"2023-02-15T06:22:53.250333Z","MostPoints":175,"MostPointsAt":"2023-02-15T06:22:53.250333Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250333Z","LastActivityAt":"2023-02-15T06:22:53.250333Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250792Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":465,"ScoreAtt":424257,"RankDef":158,"ScoreDef":2399236,"RankSup":805,"ScoreSup":24304,"RankTotal":305,"ScoreTotal":2847797,"ID":1767876,"Name":"Kenshipl","NumVillages":10,"Points":54269,"Rank":670,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1767876","BestRank":670,"BestRankAt":"2023-02-15T06:22:53.250333Z","MostPoints":54269,"MostPointsAt":"2023-02-15T06:22:53.250333Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250333Z","LastActivityAt":"2023-02-15T06:22:53.250333Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250793Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1346,"ScoreAtt":5313,"RankDef":1465,"ScoreDef":37011,"RankSup":0,"ScoreSup":0,"RankTotal":1666,"ScoreTotal":42324,"ID":1775957,"Name":"Szczepan 1954","NumVillages":2,"Points":3453,"Rank":1471,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1775957","BestRank":1471,"BestRankAt":"2023-02-15T06:22:53.250334Z","MostPoints":3453,"MostPointsAt":"2023-02-15T06:22:53.250334Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250334Z","LastActivityAt":"2023-02-15T06:22:53.250334Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250795Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":334,"ScoreDef":974769,"RankSup":1318,"ScoreSup":16,"RankTotal":626,"ScoreTotal":974785,"ID":1782523,"Name":"piter357","NumVillages":1,"Points":6720,"Rank":1230,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1782523","BestRank":1230,"BestRankAt":"2023-02-15T06:22:53.250334Z","MostPoints":6720,"MostPointsAt":"2023-02-15T06:22:53.250334Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250334Z","LastActivityAt":"2023-02-15T06:22:53.250335Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250795Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2330,"ScoreDef":169,"RankSup":0,"ScoreSup":0,"RankTotal":2411,"ScoreTotal":169,"ID":1794060,"Name":"ten ktĂłry kroczy","NumVillages":1,"Points":121,"Rank":2442,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1794060","BestRank":2442,"BestRankAt":"2023-02-15T06:22:53.250335Z","MostPoints":121,"MostPointsAt":"2023-02-15T06:22:53.250335Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250335Z","LastActivityAt":"2023-02-15T06:22:53.250335Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":126,"ScoreAtt":2408774,"RankDef":879,"ScoreDef":174840,"RankSup":72,"ScoreSup":2822735,"RankTotal":170,"ScoreTotal":5406349,"ID":1804724,"Name":"szyymekk","NumVillages":72,"Points":701274,"Rank":206,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1804724","BestRank":206,"BestRankAt":"2023-02-15T06:22:53.250335Z","MostPoints":701274,"MostPointsAt":"2023-02-15T06:22:53.250336Z","MostVillages":72,"MostVillagesAt":"2023-02-15T06:22:53.250335Z","LastActivityAt":"2023-02-15T06:22:53.250336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250798Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1043,"ScoreAtt":24601,"RankDef":370,"ScoreDef":823822,"RankSup":1167,"ScoreSup":792,"RankTotal":670,"ScoreTotal":849215,"ID":1809381,"Name":"Wiesiek19","NumVillages":1,"Points":251,"Rank":2221,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1809381","BestRank":2221,"BestRankAt":"2023-02-15T06:22:53.250336Z","MostPoints":251,"MostPointsAt":"2023-02-15T06:22:53.250336Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250336Z","LastActivityAt":"2023-02-15T06:22:53.250336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1385,"ScoreAtt":4520,"RankDef":1247,"ScoreDef":63986,"RankSup":1347,"ScoreSup":6,"RankTotal":1511,"ScoreTotal":68512,"ID":1809943,"Name":"wiech17","NumVillages":1,"Points":867,"Rank":1898,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1809943","BestRank":1898,"BestRankAt":"2023-02-15T06:22:53.250336Z","MostPoints":867,"MostPointsAt":"2023-02-15T06:22:53.250337Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250337Z","LastActivityAt":"2023-02-15T06:22:53.250337Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":737,"ScoreAtt":109095,"RankDef":1817,"ScoreDef":11450,"RankSup":1107,"ScoreSup":1777,"RankTotal":1322,"ScoreTotal":122322,"ID":1827485,"Name":"muflon1922","NumVillages":1,"Points":335,"Rank":2142,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1827485","BestRank":2142,"BestRankAt":"2023-02-15T06:22:53.250337Z","MostPoints":335,"MostPointsAt":"2023-02-15T06:22:53.250337Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250337Z","LastActivityAt":"2023-02-15T06:22:53.250337Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250802Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":308,"ScoreAtt":883860,"RankDef":123,"ScoreDef":3119376,"RankSup":423,"ScoreSup":261766,"RankTotal":221,"ScoreTotal":4265002,"ID":1830149,"Name":"zbyszek2609","NumVillages":26,"Points":192882,"Rank":422,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1830149","BestRank":422,"BestRankAt":"2023-02-15T06:22:53.250338Z","MostPoints":192882,"MostPointsAt":"2023-02-15T06:22:53.250338Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.250338Z","LastActivityAt":"2023-02-15T06:22:53.250338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1470,"ScoreDef":36775,"RankSup":0,"ScoreSup":0,"RankTotal":1715,"ScoreTotal":36775,"ID":1831874,"Name":"denver72","NumVillages":0,"Points":0,"Rank":2893,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1831874","BestRank":2893,"BestRankAt":"2023-02-15T06:22:53.250338Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250338Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250338Z","LastActivityAt":"2023-02-15T06:22:53.250338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1866,"ScoreAtt":100,"RankDef":1638,"ScoreDef":23222,"RankSup":1324,"ScoreSup":14,"RankTotal":1836,"ScoreTotal":23336,"ID":1861962,"Name":"Karl 132","NumVillages":2,"Points":5266,"Rank":1313,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1861962","BestRank":1313,"BestRankAt":"2023-02-15T06:22:53.250339Z","MostPoints":5266,"MostPointsAt":"2023-02-15T06:22:53.250339Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250339Z","LastActivityAt":"2023-02-15T06:22:53.250339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250805Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1574,"ScoreAtt":1565,"RankDef":1716,"ScoreDef":17648,"RankSup":1307,"ScoreSup":21,"RankTotal":1879,"ScoreTotal":19234,"ID":1867161,"Name":"snake0","NumVillages":7,"Points":28968,"Rank":824,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1867161","BestRank":824,"BestRankAt":"2023-02-15T06:22:53.250339Z","MostPoints":28968,"MostPointsAt":"2023-02-15T06:22:53.250339Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.250339Z","LastActivityAt":"2023-02-15T06:22:53.250339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250806Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":947,"ScoreDef":144074,"RankSup":0,"ScoreSup":0,"RankTotal":1260,"ScoreTotal":144074,"ID":1867410,"Name":"Vi-vali","NumVillages":1,"Points":218,"Rank":2275,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1867410","BestRank":2275,"BestRankAt":"2023-02-15T06:22:53.25034Z","MostPoints":218,"MostPointsAt":"2023-02-15T06:22:53.25034Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25034Z","LastActivityAt":"2023-02-15T06:22:53.25034Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250807Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1240,"ScoreAtt":8630,"RankDef":1474,"ScoreDef":36313,"RankSup":1316,"ScoreSup":17,"RankTotal":1644,"ScoreTotal":44960,"ID":1889913,"Name":"Hanah1","NumVillages":1,"Points":224,"Rank":2264,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1889913","BestRank":2264,"BestRankAt":"2023-02-15T06:22:53.25034Z","MostPoints":224,"MostPointsAt":"2023-02-15T06:22:53.25034Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25034Z","LastActivityAt":"2023-02-15T06:22:53.250341Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250808Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1317,"ScoreAtt":6017,"RankDef":471,"ScoreDef":563172,"RankSup":1127,"ScoreSup":1384,"RankTotal":788,"ScoreTotal":570573,"ID":1895081,"Name":"Najemnik full light","NumVillages":6,"Points":21764,"Rank":893,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1895081","BestRank":893,"BestRankAt":"2023-02-15T06:22:53.250341Z","MostPoints":21764,"MostPointsAt":"2023-02-15T06:22:53.250341Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250341Z","LastActivityAt":"2023-02-15T06:22:53.250341Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":572,"ScoreAtt":247673,"RankDef":1149,"ScoreDef":84449,"RankSup":340,"ScoreSup":426008,"RankTotal":701,"ScoreTotal":758130,"ID":1900364,"Name":"Rublow","NumVillages":33,"Points":226329,"Rank":395,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1900364","BestRank":395,"BestRankAt":"2023-02-15T06:22:53.250341Z","MostPoints":226329,"MostPointsAt":"2023-02-15T06:22:53.250342Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.250341Z","LastActivityAt":"2023-02-15T06:22:53.250342Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25081Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":975,"ScoreAtt":34008,"RankDef":2075,"ScoreDef":3356,"RankSup":0,"ScoreSup":0,"RankTotal":1708,"ScoreTotal":37364,"ID":1924718,"Name":".o0krychu0o.","NumVillages":5,"Points":7067,"Rank":1212,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1924718","BestRank":1212,"BestRankAt":"2023-02-15T06:22:53.250342Z","MostPoints":7067,"MostPointsAt":"2023-02-15T06:22:53.250342Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250342Z","LastActivityAt":"2023-02-15T06:22:53.250342Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25081Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":671,"ScoreDef":296058,"RankSup":0,"ScoreSup":0,"RankTotal":1008,"ScoreTotal":296058,"ID":1945202,"Name":"Adrianzaq12wsx","NumVillages":1,"Points":26,"Rank":2629,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1945202","BestRank":2629,"BestRankAt":"2023-02-15T06:22:53.250342Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250343Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250343Z","LastActivityAt":"2023-02-15T06:22:53.250343Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250812Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1471,"ScoreAtt":2788,"RankDef":1458,"ScoreDef":37712,"RankSup":0,"ScoreSup":0,"RankTotal":1681,"ScoreTotal":40500,"ID":1957280,"Name":"zulus72","NumVillages":1,"Points":4115,"Rank":1399,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1957280","BestRank":1399,"BestRankAt":"2023-02-15T06:22:53.250343Z","MostPoints":4115,"MostPointsAt":"2023-02-15T06:22:53.250343Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250343Z","LastActivityAt":"2023-02-15T06:22:53.250343Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250813Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":56,"ScoreAtt":4589080,"RankDef":217,"ScoreDef":1734551,"RankSup":358,"ScoreSup":392780,"RankTotal":131,"ScoreTotal":6716411,"ID":1990750,"Name":"xkikutx","NumVillages":125,"Points":1199124,"Rank":112,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1990750","BestRank":112,"BestRankAt":"2023-02-15T06:22:53.250344Z","MostPoints":1199124,"MostPointsAt":"2023-02-15T06:22:53.250344Z","MostVillages":125,"MostVillagesAt":"2023-02-15T06:22:53.250344Z","LastActivityAt":"2023-02-15T06:22:53.250344Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250814Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":480,"ScoreAtt":393851,"RankDef":360,"ScoreDef":860174,"RankSup":0,"ScoreSup":0,"RankTotal":547,"ScoreTotal":1254025,"ID":2020935,"Name":"tunks","NumVillages":0,"Points":0,"Rank":2894,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2020935","BestRank":2894,"BestRankAt":"2023-02-15T06:22:53.250344Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250344Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250344Z","LastActivityAt":"2023-02-15T06:22:53.250344Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250815Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":340,"ScoreAtt":752647,"RankDef":190,"ScoreDef":1969425,"RankSup":271,"ScoreSup":607889,"RankTotal":264,"ScoreTotal":3329961,"ID":2044462,"Name":"Diablo 90","NumVillages":0,"Points":0,"Rank":2895,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2044462","BestRank":2895,"BestRankAt":"2023-02-15T06:22:53.250345Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250345Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250345Z","LastActivityAt":"2023-02-15T06:22:53.250345Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250816Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1152,"ScoreAtt":13785,"RankDef":1827,"ScoreDef":10990,"RankSup":1214,"ScoreSup":318,"RankTotal":1820,"ScoreTotal":25093,"ID":2051721,"Name":"Aragorn StraĆŒnik PóƂnocy","NumVillages":1,"Points":1364,"Rank":1774,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2051721","BestRank":1774,"BestRankAt":"2023-02-15T06:22:53.250345Z","MostPoints":1364,"MostPointsAt":"2023-02-15T06:22:53.250345Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250345Z","LastActivityAt":"2023-02-15T06:22:53.250345Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250817Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1610,"ScoreDef":25166,"RankSup":0,"ScoreSup":0,"RankTotal":1818,"ScoreTotal":25166,"ID":2061701,"Name":"pablo1912","NumVillages":0,"Points":0,"Rank":2896,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2061701","BestRank":2896,"BestRankAt":"2023-02-15T06:22:53.250346Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250346Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250346Z","LastActivityAt":"2023-02-15T06:22:53.250346Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250817Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":238,"ScoreAtt":1238424,"RankDef":373,"ScoreDef":817769,"RankSup":382,"ScoreSup":346824,"RankTotal":354,"ScoreTotal":2403017,"ID":2065730,"Name":"Farmie Kombajnem","NumVillages":148,"Points":1321936,"Rank":93,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2065730","BestRank":93,"BestRankAt":"2023-02-15T06:22:53.250346Z","MostPoints":1321936,"MostPointsAt":"2023-02-15T06:22:53.250346Z","MostVillages":148,"MostVillagesAt":"2023-02-15T06:22:53.250346Z","LastActivityAt":"2023-02-15T06:22:53.250347Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250818Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1883,"ScoreAtt":75,"RankDef":1398,"ScoreDef":44204,"RankSup":548,"ScoreSup":131111,"RankTotal":1200,"ScoreTotal":175390,"ID":2083273,"Name":"adrianh3","NumVillages":1,"Points":26,"Rank":2630,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2083273","BestRank":2630,"BestRankAt":"2023-02-15T06:22:53.250347Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250347Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250347Z","LastActivityAt":"2023-02-15T06:22:53.250347Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250819Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":716,"ScoreDef":263088,"RankSup":0,"ScoreSup":0,"RankTotal":1042,"ScoreTotal":263088,"ID":2087251,"Name":"kondziu.27x","NumVillages":0,"Points":0,"Rank":2897,"TribeID":991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2087251","BestRank":2897,"BestRankAt":"2023-02-15T06:22:53.250347Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250348Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250348Z","LastActivityAt":"2023-02-15T06:22:53.250348Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250821Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1741,"ScoreAtt":365,"RankDef":1826,"ScoreDef":11063,"RankSup":0,"ScoreSup":0,"RankTotal":1981,"ScoreTotal":11428,"ID":2105150,"Name":"zielonelody","NumVillages":3,"Points":18993,"Rank":934,"TribeID":1166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2105150","BestRank":934,"BestRankAt":"2023-02-15T06:22:53.250348Z","MostPoints":18993,"MostPointsAt":"2023-02-15T06:22:53.250348Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250348Z","LastActivityAt":"2023-02-15T06:22:53.250348Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250821Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2130659,"Name":"LukaseQxxD","NumVillages":1,"Points":312,"Rank":2161,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2130659","BestRank":2161,"BestRankAt":"2023-02-15T06:22:53.250349Z","MostPoints":312,"MostPointsAt":"2023-02-15T06:22:53.250349Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250349Z","LastActivityAt":"2023-02-15T06:22:53.250349Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250822Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":120,"ScoreAtt":2501108,"RankDef":1781,"ScoreDef":13548,"RankSup":602,"ScoreSup":98625,"RankTotal":334,"ScoreTotal":2613281,"ID":2135129,"Name":"ADAMCZYCY","NumVillages":101,"Points":828812,"Rank":175,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2135129","BestRank":175,"BestRankAt":"2023-02-15T06:22:53.250349Z","MostPoints":828812,"MostPointsAt":"2023-02-15T06:22:53.250349Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.250349Z","LastActivityAt":"2023-02-15T06:22:53.250349Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250823Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2140084,"Name":"poweju56","NumVillages":1,"Points":189,"Rank":2322,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2140084","BestRank":2322,"BestRankAt":"2023-02-15T06:22:53.25035Z","MostPoints":189,"MostPointsAt":"2023-02-15T06:22:53.25035Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25035Z","LastActivityAt":"2023-02-15T06:22:53.25035Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250824Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1233,"ScoreAtt":8954,"RankDef":1246,"ScoreDef":63990,"RankSup":0,"ScoreSup":0,"RankTotal":1488,"ScoreTotal":72944,"ID":2151163,"Name":"kabast","NumVillages":0,"Points":0,"Rank":2898,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2151163","BestRank":2898,"BestRankAt":"2023-02-15T06:22:53.25035Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.25035Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.25035Z","LastActivityAt":"2023-02-15T06:22:53.25035Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250824Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1557,"ScoreDef":29029,"RankSup":0,"ScoreSup":0,"RankTotal":1781,"ScoreTotal":29029,"ID":2162471,"Name":"Tombar76","NumVillages":1,"Points":583,"Rank":1991,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2162471","BestRank":1991,"BestRankAt":"2023-02-15T06:22:53.250351Z","MostPoints":583,"MostPointsAt":"2023-02-15T06:22:53.250351Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250351Z","LastActivityAt":"2023-02-15T06:22:53.250351Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250826Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1500,"ScoreDef":34097,"RankSup":0,"ScoreSup":0,"RankTotal":1733,"ScoreTotal":34097,"ID":2177410,"Name":"plazmi","NumVillages":1,"Points":650,"Rank":1969,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2177410","BestRank":1969,"BestRankAt":"2023-02-15T06:22:53.250351Z","MostPoints":650,"MostPointsAt":"2023-02-15T06:22:53.250351Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250351Z","LastActivityAt":"2023-02-15T06:22:53.250352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250827Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2210946,"Name":"Simon118","NumVillages":1,"Points":26,"Rank":2631,"TribeID":1799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2210946","BestRank":2631,"BestRankAt":"2023-02-15T06:22:53.250352Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250352Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250352Z","LastActivityAt":"2023-02-15T06:22:53.250352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250827Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1767,"ScoreDef":14380,"RankSup":0,"ScoreSup":0,"RankTotal":1938,"ScoreTotal":14380,"ID":2213632,"Name":"lukas1980","NumVillages":1,"Points":1258,"Rank":1799,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2213632","BestRank":1799,"BestRankAt":"2023-02-15T06:22:53.250352Z","MostPoints":1258,"MostPointsAt":"2023-02-15T06:22:53.250353Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250352Z","LastActivityAt":"2023-02-15T06:22:53.250353Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250828Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":684,"ScoreDef":285338,"RankSup":1418,"ScoreSup":1,"RankTotal":1018,"ScoreTotal":285339,"ID":2232973,"Name":"izka1611","NumVillages":1,"Points":239,"Rank":2235,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2232973","BestRank":2235,"BestRankAt":"2023-02-15T06:22:53.250353Z","MostPoints":239,"MostPointsAt":"2023-02-15T06:22:53.250353Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250353Z","LastActivityAt":"2023-02-15T06:22:53.250353Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250829Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":916,"ScoreAtt":47577,"RankDef":1785,"ScoreDef":13426,"RankSup":0,"ScoreSup":0,"RankTotal":1550,"ScoreTotal":61003,"ID":2245160,"Name":"mruva","NumVillages":1,"Points":347,"Rank":2128,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2245160","BestRank":2128,"BestRankAt":"2023-02-15T06:22:53.250353Z","MostPoints":347,"MostPointsAt":"2023-02-15T06:22:53.250354Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250354Z","LastActivityAt":"2023-02-15T06:22:53.250354Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250831Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":626,"ScoreAtt":184258,"RankDef":1005,"ScoreDef":123989,"RankSup":0,"ScoreSup":0,"RankTotal":998,"ScoreTotal":308247,"ID":2246711,"Name":"jurger","NumVillages":8,"Points":44529,"Rank":719,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2246711","BestRank":719,"BestRankAt":"2023-02-15T06:22:53.250354Z","MostPoints":44529,"MostPointsAt":"2023-02-15T06:22:53.250354Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.250354Z","LastActivityAt":"2023-02-15T06:22:53.250354Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250831Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1754,"ScoreDef":15439,"RankSup":0,"ScoreSup":0,"RankTotal":1929,"ScoreTotal":15439,"ID":2256843,"Name":"jaworbog","NumVillages":1,"Points":701,"Rank":1951,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2256843","BestRank":1951,"BestRankAt":"2023-02-15T06:22:53.250355Z","MostPoints":701,"MostPointsAt":"2023-02-15T06:22:53.250355Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250355Z","LastActivityAt":"2023-02-15T06:22:53.250355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250833Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":738,"ScoreAtt":109040,"RankDef":163,"ScoreDef":2326713,"RankSup":585,"ScoreSup":104412,"RankTotal":342,"ScoreTotal":2540165,"ID":2262902,"Name":"totmes21","NumVillages":15,"Points":76399,"Rank":597,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2262902","BestRank":597,"BestRankAt":"2023-02-15T06:22:53.250355Z","MostPoints":76399,"MostPointsAt":"2023-02-15T06:22:53.250355Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.250355Z","LastActivityAt":"2023-02-15T06:22:53.250355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250834Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1197,"ScoreAtt":10833,"RankDef":1468,"ScoreDef":36902,"RankSup":0,"ScoreSup":0,"RankTotal":1633,"ScoreTotal":47735,"ID":2268889,"Name":"dj.B.M.P.","NumVillages":4,"Points":17209,"Rank":966,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2268889","BestRank":966,"BestRankAt":"2023-02-15T06:22:53.250356Z","MostPoints":17209,"MostPointsAt":"2023-02-15T06:22:53.250356Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250356Z","LastActivityAt":"2023-02-15T06:22:53.250356Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250834Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":651,"ScoreAtt":157597,"RankDef":1384,"ScoreDef":46929,"RankSup":1412,"ScoreSup":1,"RankTotal":1133,"ScoreTotal":204527,"ID":2269943,"Name":"gabsaw","NumVillages":23,"Points":162423,"Rank":446,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2269943","BestRank":446,"BestRankAt":"2023-02-15T06:22:53.250356Z","MostPoints":162423,"MostPointsAt":"2023-02-15T06:22:53.250356Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.250356Z","LastActivityAt":"2023-02-15T06:22:53.250356Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250835Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":240,"ScoreAtt":1195570,"RankDef":36,"ScoreDef":9253798,"RankSup":191,"ScoreSup":1011820,"RankTotal":67,"ScoreTotal":11461188,"ID":2289134,"Name":"Julixx","NumVillages":46,"Points":32435,"Rank":791,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2289134","BestRank":791,"BestRankAt":"2023-02-15T06:22:53.250357Z","MostPoints":32435,"MostPointsAt":"2023-02-15T06:22:53.250357Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.250357Z","LastActivityAt":"2023-02-15T06:22:53.250357Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250836Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":305,"ScoreAtt":903179,"RankDef":1105,"ScoreDef":93212,"RankSup":197,"ScoreSup":940547,"RankTotal":414,"ScoreTotal":1936938,"ID":2293376,"Name":"szkiel1552","NumVillages":75,"Points":679518,"Rank":210,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2293376","BestRank":210,"BestRankAt":"2023-02-15T06:22:53.250357Z","MostPoints":679518,"MostPointsAt":"2023-02-15T06:22:53.250357Z","MostVillages":75,"MostVillagesAt":"2023-02-15T06:22:53.250357Z","LastActivityAt":"2023-02-15T06:22:53.250358Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1770,"ScoreAtt":281,"RankDef":1749,"ScoreDef":15815,"RankSup":1365,"ScoreSup":4,"RankTotal":1921,"ScoreTotal":16100,"ID":2297431,"Name":"BANKMAN","NumVillages":1,"Points":722,"Rank":1943,"TribeID":1585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2297431","BestRank":1943,"BestRankAt":"2023-02-15T06:22:53.250358Z","MostPoints":722,"MostPointsAt":"2023-02-15T06:22:53.250358Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250358Z","LastActivityAt":"2023-02-15T06:22:53.250358Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1724,"ScoreAtt":462,"RankDef":2025,"ScoreDef":4392,"RankSup":1130,"ScoreSup":1373,"RankTotal":2090,"ScoreTotal":6227,"ID":2308351,"Name":"markoz73","NumVillages":2,"Points":4807,"Rank":1345,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2308351","BestRank":1345,"BestRankAt":"2023-02-15T06:22:53.250358Z","MostPoints":4807,"MostPointsAt":"2023-02-15T06:22:53.250359Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250358Z","LastActivityAt":"2023-02-15T06:22:53.250359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1365,"ScoreAtt":4826,"RankDef":153,"ScoreDef":2504451,"RankSup":0,"ScoreSup":0,"RankTotal":345,"ScoreTotal":2509277,"ID":2315542,"Name":"AKIKU","NumVillages":1,"Points":866,"Rank":1899,"TribeID":517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2315542","BestRank":1899,"BestRankAt":"2023-02-15T06:22:53.250359Z","MostPoints":866,"MostPointsAt":"2023-02-15T06:22:53.250359Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250359Z","LastActivityAt":"2023-02-15T06:22:53.250359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":704,"ScoreAtt":126514,"RankDef":325,"ScoreDef":1008890,"RankSup":0,"ScoreSup":0,"RankTotal":585,"ScoreTotal":1135404,"ID":2321390,"Name":"RED54","NumVillages":35,"Points":166317,"Rank":444,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2321390","BestRank":444,"BestRankAt":"2023-02-15T06:22:53.250359Z","MostPoints":166317,"MostPointsAt":"2023-02-15T06:22:53.25036Z","MostVillages":35,"MostVillagesAt":"2023-02-15T06:22:53.25036Z","LastActivityAt":"2023-02-15T06:22:53.25036Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":720,"ScoreAtt":115381,"RankDef":1394,"ScoreDef":44816,"RankSup":695,"ScoreSup":51537,"RankTotal":1120,"ScoreTotal":211734,"ID":2323859,"Name":"alexiej","NumVillages":54,"Points":232672,"Rank":392,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2323859","BestRank":392,"BestRankAt":"2023-02-15T06:22:53.25036Z","MostPoints":232672,"MostPointsAt":"2023-02-15T06:22:53.25036Z","MostVillages":54,"MostVillagesAt":"2023-02-15T06:22:53.25036Z","LastActivityAt":"2023-02-15T06:22:53.25036Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":892,"ScoreAtt":52642,"RankDef":1134,"ScoreDef":87502,"RankSup":0,"ScoreSup":0,"RankTotal":1272,"ScoreTotal":140144,"ID":2324569,"Name":"Boginysa","NumVillages":1,"Points":3210,"Rank":1503,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2324569","BestRank":1503,"BestRankAt":"2023-02-15T06:22:53.250361Z","MostPoints":3210,"MostPointsAt":"2023-02-15T06:22:53.250361Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250361Z","LastActivityAt":"2023-02-15T06:22:53.250361Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1013,"ScoreDef":122522,"RankSup":1196,"ScoreSup":432,"RankTotal":1320,"ScoreTotal":122954,"ID":2345447,"Name":"slawomirec","NumVillages":1,"Points":294,"Rank":2182,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2345447","BestRank":2182,"BestRankAt":"2023-02-15T06:22:53.250361Z","MostPoints":294,"MostPointsAt":"2023-02-15T06:22:53.250361Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250361Z","LastActivityAt":"2023-02-15T06:22:53.250361Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1410,"ScoreAtt":3999,"RankDef":705,"ScoreDef":267962,"RankSup":1249,"ScoreSup":135,"RankTotal":1031,"ScoreTotal":272096,"ID":2357773,"Name":"BANAN 22","NumVillages":1,"Points":5955,"Rank":1271,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2357773","BestRank":1271,"BestRankAt":"2023-02-15T06:22:53.250362Z","MostPoints":5955,"MostPointsAt":"2023-02-15T06:22:53.250362Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250362Z","LastActivityAt":"2023-02-15T06:22:53.250362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1419,"ScoreAtt":3767,"RankDef":1356,"ScoreDef":50009,"RankSup":1416,"ScoreSup":1,"RankTotal":1594,"ScoreTotal":53777,"ID":2362058,"Name":"Sir Lewan","NumVillages":1,"Points":9069,"Rank":1121,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2362058","BestRank":1121,"BestRankAt":"2023-02-15T06:22:53.250362Z","MostPoints":9069,"MostPointsAt":"2023-02-15T06:22:53.250362Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250362Z","LastActivityAt":"2023-02-15T06:22:53.250362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1336,"ScoreDef":53585,"RankSup":0,"ScoreSup":0,"RankTotal":1596,"ScoreTotal":53585,"ID":2363165,"Name":"puciaa","NumVillages":1,"Points":414,"Rank":2080,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2363165","BestRank":2080,"BestRankAt":"2023-02-15T06:22:53.250363Z","MostPoints":414,"MostPointsAt":"2023-02-15T06:22:53.250363Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250363Z","LastActivityAt":"2023-02-15T06:22:53.250363Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":839,"ScoreDef":188672,"RankSup":0,"ScoreSup":0,"RankTotal":1166,"ScoreTotal":188672,"ID":2365630,"Name":"zkiw","NumVillages":1,"Points":169,"Rank":2354,"TribeID":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2365630","BestRank":2354,"BestRankAt":"2023-02-15T06:22:53.250363Z","MostPoints":169,"MostPointsAt":"2023-02-15T06:22:53.250363Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250363Z","LastActivityAt":"2023-02-15T06:22:53.250364Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1675,"ScoreAtt":707,"RankDef":1646,"ScoreDef":22527,"RankSup":1154,"ScoreSup":934,"RankTotal":1829,"ScoreTotal":24168,"ID":2371436,"Name":"jedrzej152","NumVillages":4,"Points":21474,"Rank":896,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2371436","BestRank":896,"BestRankAt":"2023-02-15T06:22:53.250364Z","MostPoints":21474,"MostPointsAt":"2023-02-15T06:22:53.250364Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250364Z","LastActivityAt":"2023-02-15T06:22:53.250364Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1898,"ScoreAtt":52,"RankDef":2129,"ScoreDef":2251,"RankSup":451,"ScoreSup":224550,"RankTotal":1094,"ScoreTotal":226853,"ID":2392791,"Name":"artur3416","NumVillages":3,"Points":30581,"Rank":811,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2392791","BestRank":811,"BestRankAt":"2023-02-15T06:22:53.250364Z","MostPoints":30581,"MostPointsAt":"2023-02-15T06:22:53.250365Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250364Z","LastActivityAt":"2023-02-15T06:22:53.250365Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":821,"ScoreAtt":72830,"RankDef":181,"ScoreDef":2052512,"RankSup":214,"ScoreSup":857060,"RankTotal":290,"ScoreTotal":2982402,"ID":2411854,"Name":"dezert8","NumVillages":1,"Points":1442,"Rank":1761,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2411854","BestRank":1761,"BestRankAt":"2023-02-15T06:22:53.250365Z","MostPoints":1442,"MostPointsAt":"2023-02-15T06:22:53.250365Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250365Z","LastActivityAt":"2023-02-15T06:22:53.250365Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1444,"ScoreAtt":3262,"RankDef":672,"ScoreDef":295378,"RankSup":169,"ScoreSup":1288252,"RankTotal":478,"ScoreTotal":1586892,"ID":2415972,"Name":"Quelus","NumVillages":14,"Points":123642,"Rank":500,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2415972","BestRank":500,"BestRankAt":"2023-02-15T06:22:53.250365Z","MostPoints":123642,"MostPointsAt":"2023-02-15T06:22:53.250366Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.250366Z","LastActivityAt":"2023-02-15T06:22:53.250366Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":865,"ScoreAtt":59356,"RankDef":888,"ScoreDef":169450,"RankSup":593,"ScoreSup":102757,"RankTotal":976,"ScoreTotal":331563,"ID":2418002,"Name":"Markus2008","NumVillages":23,"Points":122002,"Rank":503,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2418002","BestRank":503,"BestRankAt":"2023-02-15T06:22:53.250366Z","MostPoints":122002,"MostPointsAt":"2023-02-15T06:22:53.250366Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.250366Z","LastActivityAt":"2023-02-15T06:22:53.250366Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":649,"ScoreAtt":158284,"RankDef":399,"ScoreDef":754818,"RankSup":890,"ScoreSup":12897,"RankTotal":647,"ScoreTotal":925999,"ID":2418364,"Name":"Artifoks","NumVillages":16,"Points":90864,"Rank":556,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2418364","BestRank":556,"BestRankAt":"2023-02-15T06:22:53.250367Z","MostPoints":90864,"MostPointsAt":"2023-02-15T06:22:53.250367Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.250367Z","LastActivityAt":"2023-02-15T06:22:53.250367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1259,"ScoreAtt":7815,"RankDef":1185,"ScoreDef":76112,"RankSup":1182,"ScoreSup":581,"RankTotal":1451,"ScoreTotal":84508,"ID":2422415,"Name":"miodzik9669","NumVillages":1,"Points":340,"Rank":2135,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2422415","BestRank":2135,"BestRankAt":"2023-02-15T06:22:53.250367Z","MostPoints":340,"MostPointsAt":"2023-02-15T06:22:53.250367Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250367Z","LastActivityAt":"2023-02-15T06:22:53.250367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1987,"ScoreAtt":4,"RankDef":1205,"ScoreDef":72148,"RankSup":0,"ScoreSup":0,"RankTotal":1493,"ScoreTotal":72152,"ID":2426019,"Name":"riki30.1976","NumVillages":1,"Points":198,"Rank":2301,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2426019","BestRank":2301,"BestRankAt":"2023-02-15T06:22:53.250368Z","MostPoints":198,"MostPointsAt":"2023-02-15T06:22:53.250368Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250368Z","LastActivityAt":"2023-02-15T06:22:53.250368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1624,"ScoreAtt":1069,"RankDef":1418,"ScoreDef":41129,"RankSup":0,"ScoreSup":0,"RankTotal":1667,"ScoreTotal":42198,"ID":2443031,"Name":"HOST999","NumVillages":1,"Points":3081,"Rank":1518,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2443031","BestRank":1518,"BestRankAt":"2023-02-15T06:22:53.250368Z","MostPoints":3081,"MostPointsAt":"2023-02-15T06:22:53.250368Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250368Z","LastActivityAt":"2023-02-15T06:22:53.250368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25086Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":769,"ScoreAtt":93738,"RankDef":226,"ScoreDef":1672543,"RankSup":550,"ScoreSup":130479,"RankTotal":420,"ScoreTotal":1896760,"ID":2453888,"Name":"MatikB87","NumVillages":33,"Points":178901,"Rank":434,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2453888","BestRank":434,"BestRankAt":"2023-02-15T06:22:53.250369Z","MostPoints":178901,"MostPointsAt":"2023-02-15T06:22:53.250369Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.250369Z","LastActivityAt":"2023-02-15T06:22:53.250369Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":751,"ScoreAtt":102048,"RankDef":553,"ScoreDef":435845,"RankSup":1101,"ScoreSup":1876,"RankTotal":813,"ScoreTotal":539769,"ID":2467370,"Name":"marciniok1","NumVillages":1,"Points":4876,"Rank":1337,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2467370","BestRank":1337,"BestRankAt":"2023-02-15T06:22:53.250369Z","MostPoints":4876,"MostPointsAt":"2023-02-15T06:22:53.250369Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250369Z","LastActivityAt":"2023-02-15T06:22:53.25037Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2333,"ScoreDef":152,"RankSup":0,"ScoreSup":0,"RankTotal":2416,"ScoreTotal":152,"ID":2485646,"Name":"Mitze","NumVillages":1,"Points":3139,"Rank":1511,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2485646","BestRank":1511,"BestRankAt":"2023-02-15T06:22:53.25037Z","MostPoints":3139,"MostPointsAt":"2023-02-15T06:22:53.25037Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25037Z","LastActivityAt":"2023-02-15T06:22:53.25037Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1633,"ScoreAtt":988,"RankDef":2158,"ScoreDef":1836,"RankSup":0,"ScoreSup":0,"RankTotal":2217,"ScoreTotal":2824,"ID":2491724,"Name":"krzysiu1969","NumVillages":1,"Points":1750,"Rank":1710,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2491724","BestRank":1710,"BestRankAt":"2023-02-15T06:22:53.25037Z","MostPoints":1750,"MostPointsAt":"2023-02-15T06:22:53.250371Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25037Z","LastActivityAt":"2023-02-15T06:22:53.250371Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":170,"ScoreAtt":1871417,"RankDef":779,"ScoreDef":223091,"RankSup":206,"ScoreSup":889721,"RankTotal":289,"ScoreTotal":2984229,"ID":2502956,"Name":"Ziomecek","NumVillages":83,"Points":780659,"Rank":186,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2502956","BestRank":186,"BestRankAt":"2023-02-15T06:22:53.250371Z","MostPoints":780659,"MostPointsAt":"2023-02-15T06:22:53.250371Z","MostVillages":83,"MostVillagesAt":"2023-02-15T06:22:53.250371Z","LastActivityAt":"2023-02-15T06:22:53.250371Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2378,"ScoreDef":38,"RankSup":0,"ScoreSup":0,"RankTotal":2477,"ScoreTotal":38,"ID":2512219,"Name":"2 die 4","NumVillages":1,"Points":232,"Rank":2249,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2512219","BestRank":2249,"BestRankAt":"2023-02-15T06:22:53.250371Z","MostPoints":232,"MostPointsAt":"2023-02-15T06:22:53.250372Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250372Z","LastActivityAt":"2023-02-15T06:22:53.250372Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1623,"ScoreDef":24397,"RankSup":0,"ScoreSup":0,"RankTotal":1827,"ScoreTotal":24397,"ID":2514219,"Name":"Dzymek10","NumVillages":1,"Points":146,"Rank":2382,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2514219","BestRank":2382,"BestRankAt":"2023-02-15T06:22:53.250372Z","MostPoints":146,"MostPointsAt":"2023-02-15T06:22:53.250372Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250372Z","LastActivityAt":"2023-02-15T06:22:53.250372Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1637,"ScoreDef":23251,"RankSup":0,"ScoreSup":0,"RankTotal":1837,"ScoreTotal":23251,"ID":2516620,"Name":"waski098","NumVillages":1,"Points":298,"Rank":2177,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2516620","BestRank":2177,"BestRankAt":"2023-02-15T06:22:53.250373Z","MostPoints":298,"MostPointsAt":"2023-02-15T06:22:53.250373Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250373Z","LastActivityAt":"2023-02-15T06:22:53.250373Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":677,"ScoreAtt":141418,"RankDef":103,"ScoreDef":3506095,"RankSup":324,"ScoreSup":455981,"RankTotal":232,"ScoreTotal":4103494,"ID":2559569,"Name":"ivanov66","NumVillages":1,"Points":376,"Rank":2105,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2559569","BestRank":2105,"BestRankAt":"2023-02-15T06:22:53.250373Z","MostPoints":376,"MostPointsAt":"2023-02-15T06:22:53.250373Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250373Z","LastActivityAt":"2023-02-15T06:22:53.250373Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":925,"ScoreDef":151131,"RankSup":0,"ScoreSup":0,"RankTotal":1246,"ScoreTotal":151131,"ID":2569868,"Name":"LOLA1982","NumVillages":1,"Points":1176,"Rank":1811,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2569868","BestRank":1811,"BestRankAt":"2023-02-15T06:22:53.250374Z","MostPoints":1176,"MostPointsAt":"2023-02-15T06:22:53.250374Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250374Z","LastActivityAt":"2023-02-15T06:22:53.250374Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1485,"ScoreAtt":2576,"RankDef":1626,"ScoreDef":24241,"RankSup":1230,"ScoreSup":234,"RankTotal":1799,"ScoreTotal":27051,"ID":2571407,"Name":"Legion 15","NumVillages":6,"Points":23474,"Rank":877,"TribeID":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2571407","BestRank":877,"BestRankAt":"2023-02-15T06:22:53.250374Z","MostPoints":23474,"MostPointsAt":"2023-02-15T06:22:53.250374Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250374Z","LastActivityAt":"2023-02-15T06:22:53.250374Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25087Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1775,"ScoreAtt":271,"RankDef":1493,"ScoreDef":34773,"RankSup":1168,"ScoreSup":789,"RankTotal":1721,"ScoreTotal":35833,"ID":2571536,"Name":"Calimera","NumVillages":1,"Points":206,"Rank":2289,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2571536","BestRank":2289,"BestRankAt":"2023-02-15T06:22:53.250375Z","MostPoints":206,"MostPointsAt":"2023-02-15T06:22:53.250375Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250375Z","LastActivityAt":"2023-02-15T06:22:53.250375Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1949,"ScoreDef":6399,"RankSup":1267,"ScoreSup":78,"RankTotal":2084,"ScoreTotal":6477,"ID":2575842,"Name":"ddd121","NumVillages":1,"Points":493,"Rank":2034,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2575842","BestRank":2034,"BestRankAt":"2023-02-15T06:22:53.250375Z","MostPoints":493,"MostPointsAt":"2023-02-15T06:22:53.250375Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250375Z","LastActivityAt":"2023-02-15T06:22:53.250376Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":22,"ScoreAtt":7964912,"RankDef":3,"ScoreDef":46153641,"RankSup":23,"ScoreSup":4913038,"RankTotal":4,"ScoreTotal":59031591,"ID":2585846,"Name":"Arrkoo","NumVillages":275,"Points":2250576,"Rank":38,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2585846","BestRank":38,"BestRankAt":"2023-02-15T06:22:53.250376Z","MostPoints":2250576,"MostPointsAt":"2023-02-15T06:22:53.250376Z","MostVillages":275,"MostVillagesAt":"2023-02-15T06:22:53.250376Z","LastActivityAt":"2023-02-15T06:22:53.250376Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1988,"ScoreAtt":4,"RankDef":1228,"ScoreDef":67909,"RankSup":1298,"ScoreSup":31,"RankTotal":1512,"ScoreTotal":67944,"ID":2591538,"Name":"Aneta 2","NumVillages":1,"Points":426,"Rank":2073,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2591538","BestRank":2073,"BestRankAt":"2023-02-15T06:22:53.250376Z","MostPoints":426,"MostPointsAt":"2023-02-15T06:22:53.250377Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250376Z","LastActivityAt":"2023-02-15T06:22:53.250377Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":885,"ScoreAtt":54383,"RankDef":1026,"ScoreDef":117820,"RankSup":0,"ScoreSup":0,"RankTotal":1209,"ScoreTotal":172203,"ID":2593568,"Name":"aleksandro987","NumVillages":1,"Points":347,"Rank":2129,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2593568","BestRank":2129,"BestRankAt":"2023-02-15T06:22:53.250377Z","MostPoints":347,"MostPointsAt":"2023-02-15T06:22:53.250377Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250377Z","LastActivityAt":"2023-02-15T06:22:53.250377Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1074,"ScoreAtt":20472,"RankDef":702,"ScoreDef":269482,"RankSup":743,"ScoreSup":37333,"RankTotal":983,"ScoreTotal":327287,"ID":2595542,"Name":"mastaw","NumVillages":0,"Points":0,"Rank":2899,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2595542","BestRank":2899,"BestRankAt":"2023-02-15T06:22:53.250377Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250378Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250378Z","LastActivityAt":"2023-02-15T06:22:53.250378Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":288,"ScoreAtt":970939,"RankDef":100,"ScoreDef":3511709,"RankSup":356,"ScoreSup":404192,"RankTotal":192,"ScoreTotal":4886840,"ID":2600387,"Name":"DeMoN00","NumVillages":3,"Points":27838,"Rank":831,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2600387","BestRank":831,"BestRankAt":"2023-02-15T06:22:53.250378Z","MostPoints":27838,"MostPointsAt":"2023-02-15T06:22:53.250378Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250378Z","LastActivityAt":"2023-02-15T06:22:53.250378Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2602575,"Name":"palkoneti","NumVillages":1,"Points":326,"Rank":2150,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2602575","BestRank":2150,"BestRankAt":"2023-02-15T06:22:53.250379Z","MostPoints":326,"MostPointsAt":"2023-02-15T06:22:53.250379Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250379Z","LastActivityAt":"2023-02-15T06:22:53.250379Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2114,"ScoreDef":2485,"RankSup":0,"ScoreSup":0,"RankTotal":2224,"ScoreTotal":2485,"ID":2613743,"Name":"skate4321","NumVillages":1,"Points":4593,"Rank":1366,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2613743","BestRank":1366,"BestRankAt":"2023-02-15T06:22:53.250379Z","MostPoints":4593,"MostPointsAt":"2023-02-15T06:22:53.250379Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250379Z","LastActivityAt":"2023-02-15T06:22:53.250379Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1325,"ScoreDef":55017,"RankSup":0,"ScoreSup":0,"RankTotal":1587,"ScoreTotal":55017,"ID":2620389,"Name":"JeGrzegorz","NumVillages":1,"Points":62,"Rank":2555,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2620389","BestRank":2555,"BestRankAt":"2023-02-15T06:22:53.25038Z","MostPoints":62,"MostPointsAt":"2023-02-15T06:22:53.25038Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25038Z","LastActivityAt":"2023-02-15T06:22:53.25038Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1847,"ScoreAtt":133,"RankDef":1421,"ScoreDef":40910,"RankSup":0,"ScoreSup":0,"RankTotal":1674,"ScoreTotal":41043,"ID":2646397,"Name":"jagger23","NumVillages":1,"Points":2887,"Rank":1541,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2646397","BestRank":1541,"BestRankAt":"2023-02-15T06:22:53.25038Z","MostPoints":2887,"MostPointsAt":"2023-02-15T06:22:53.25038Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25038Z","LastActivityAt":"2023-02-15T06:22:53.25038Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":253,"ScoreAtt":1096543,"RankDef":583,"ScoreDef":393250,"RankSup":119,"ScoreSup":1862083,"RankTotal":262,"ScoreTotal":3351876,"ID":2665207,"Name":"xyacqqqx","NumVillages":69,"Points":636336,"Rank":224,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2665207","BestRank":224,"BestRankAt":"2023-02-15T06:22:53.250381Z","MostPoints":636336,"MostPointsAt":"2023-02-15T06:22:53.250381Z","MostVillages":69,"MostVillagesAt":"2023-02-15T06:22:53.250381Z","LastActivityAt":"2023-02-15T06:22:53.250381Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2684175,"Name":"SzCzAkUs","NumVillages":1,"Points":503,"Rank":2027,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2684175","BestRank":2027,"BestRankAt":"2023-02-15T06:22:53.250381Z","MostPoints":503,"MostPointsAt":"2023-02-15T06:22:53.250381Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250381Z","LastActivityAt":"2023-02-15T06:22:53.250382Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":801,"ScoreAtt":80097,"RankDef":1367,"ScoreDef":48673,"RankSup":662,"ScoreSup":65496,"RankTotal":1149,"ScoreTotal":194266,"ID":2692494,"Name":"Rebel1995","NumVillages":1,"Points":26,"Rank":2632,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2692494","BestRank":2632,"BestRankAt":"2023-02-15T06:22:53.250382Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250382Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250382Z","LastActivityAt":"2023-02-15T06:22:53.250382Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":849,"ScoreAtt":64464,"RankDef":1765,"ScoreDef":14454,"RankSup":0,"ScoreSup":0,"RankTotal":1469,"ScoreTotal":78918,"ID":2717161,"Name":"smerf007","NumVillages":4,"Points":19869,"Rank":920,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2717161","BestRank":920,"BestRankAt":"2023-02-15T06:22:53.250382Z","MostPoints":19869,"MostPointsAt":"2023-02-15T06:22:53.250383Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250382Z","LastActivityAt":"2023-02-15T06:22:53.250383Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1243,"ScoreAtt":8528,"RankDef":966,"ScoreDef":136855,"RankSup":0,"ScoreSup":0,"RankTotal":1258,"ScoreTotal":145383,"ID":2723244,"Name":"1gladiator","NumVillages":9,"Points":19493,"Rank":929,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2723244","BestRank":929,"BestRankAt":"2023-02-15T06:22:53.250383Z","MostPoints":19493,"MostPointsAt":"2023-02-15T06:22:53.250383Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.250383Z","LastActivityAt":"2023-02-15T06:22:53.250383Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1304,"ScoreAtt":6524,"RankDef":2055,"ScoreDef":3709,"RankSup":993,"ScoreSup":5497,"RankTotal":1924,"ScoreTotal":15730,"ID":2725721,"Name":"rudi jk25","NumVillages":10,"Points":26030,"Rank":848,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2725721","BestRank":848,"BestRankAt":"2023-02-15T06:22:53.250383Z","MostPoints":26030,"MostPointsAt":"2023-02-15T06:22:53.250384Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250384Z","LastActivityAt":"2023-02-15T06:22:53.250384Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2727535,"Name":"sajmon117","NumVillages":1,"Points":26,"Rank":2633,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2727535","BestRank":2633,"BestRankAt":"2023-02-15T06:22:53.250384Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250384Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250384Z","LastActivityAt":"2023-02-15T06:22:53.250384Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1053,"ScoreAtt":23035,"RankDef":999,"ScoreDef":124806,"RankSup":1405,"ScoreSup":1,"RankTotal":1254,"ScoreTotal":147842,"ID":2730335,"Name":"niki63","NumVillages":1,"Points":6828,"Rank":1227,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2730335","BestRank":1227,"BestRankAt":"2023-02-15T06:22:53.250385Z","MostPoints":6828,"MostPointsAt":"2023-02-15T06:22:53.250385Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250385Z","LastActivityAt":"2023-02-15T06:22:53.250385Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2091,"ScoreDef":2908,"RankSup":0,"ScoreSup":0,"RankTotal":2209,"ScoreTotal":2908,"ID":2735370,"Name":"wovi","NumVillages":0,"Points":0,"Rank":2900,"TribeID":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2735370","BestRank":2900,"BestRankAt":"2023-02-15T06:22:53.250385Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250385Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250385Z","LastActivityAt":"2023-02-15T06:22:53.250385Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1405,"ScoreDef":43298,"RankSup":0,"ScoreSup":0,"RankTotal":1660,"ScoreTotal":43298,"ID":2764337,"Name":"Stefal-S22","NumVillages":1,"Points":792,"Rank":1920,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2764337","BestRank":1920,"BestRankAt":"2023-02-15T06:22:53.250386Z","MostPoints":792,"MostPointsAt":"2023-02-15T06:22:53.250386Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250386Z","LastActivityAt":"2023-02-15T06:22:53.250386Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":670,"ScoreAtt":145709,"RankDef":734,"ScoreDef":252071,"RankSup":1209,"ScoreSup":342,"RankTotal":919,"ScoreTotal":398122,"ID":2798385,"Name":"bencu","NumVillages":0,"Points":0,"Rank":2901,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2798385","BestRank":2901,"BestRankAt":"2023-02-15T06:22:53.250386Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250386Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250386Z","LastActivityAt":"2023-02-15T06:22:53.250386Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":747,"ScoreAtt":103062,"RankDef":273,"ScoreDef":1334285,"RankSup":1210,"ScoreSup":336,"RankTotal":507,"ScoreTotal":1437683,"ID":2800032,"Name":"kamilheros2","NumVillages":11,"Points":69385,"Rank":616,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2800032","BestRank":616,"BestRankAt":"2023-02-15T06:22:53.250387Z","MostPoints":69385,"MostPointsAt":"2023-02-15T06:22:53.250387Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.250387Z","LastActivityAt":"2023-02-15T06:22:53.250387Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1448,"ScoreAtt":3237,"RankDef":580,"ScoreDef":396260,"RankSup":0,"ScoreSup":0,"RankTotal":917,"ScoreTotal":399497,"ID":2801913,"Name":"iagre","NumVillages":1,"Points":612,"Rank":1986,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2801913","BestRank":1986,"BestRankAt":"2023-02-15T06:22:53.250387Z","MostPoints":612,"MostPointsAt":"2023-02-15T06:22:53.250387Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250387Z","LastActivityAt":"2023-02-15T06:22:53.250388Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":98,"ScoreAtt":3221684,"RankDef":945,"ScoreDef":145672,"RankSup":171,"ScoreSup":1272426,"RankTotal":204,"ScoreTotal":4639782,"ID":2808172,"Name":"yogi 1","NumVillages":119,"Points":1129790,"Rank":120,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2808172","BestRank":120,"BestRankAt":"2023-02-15T06:22:53.250388Z","MostPoints":1129790,"MostPointsAt":"2023-02-15T06:22:53.250388Z","MostVillages":119,"MostVillagesAt":"2023-02-15T06:22:53.250388Z","LastActivityAt":"2023-02-15T06:22:53.250388Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2051,"ScoreDef":3773,"RankSup":0,"ScoreSup":0,"RankTotal":2180,"ScoreTotal":3773,"ID":2811353,"Name":"*worm*","NumVillages":1,"Points":3477,"Rank":1468,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2811353","BestRank":1468,"BestRankAt":"2023-02-15T06:22:53.250388Z","MostPoints":3477,"MostPointsAt":"2023-02-15T06:22:53.250389Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250389Z","LastActivityAt":"2023-02-15T06:22:53.250389Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2811568,"Name":"borowka73","NumVillages":1,"Points":400,"Rank":2088,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2811568","BestRank":2088,"BestRankAt":"2023-02-15T06:22:53.250389Z","MostPoints":400,"MostPointsAt":"2023-02-15T06:22:53.250389Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250389Z","LastActivityAt":"2023-02-15T06:22:53.250389Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1405,"ScoreAtt":4107,"RankDef":555,"ScoreDef":432982,"RankSup":0,"ScoreSup":0,"RankTotal":877,"ScoreTotal":437089,"ID":2812197,"Name":"bs160","NumVillages":1,"Points":261,"Rank":2212,"TribeID":523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2812197","BestRank":2212,"BestRankAt":"2023-02-15T06:22:53.25039Z","MostPoints":261,"MostPointsAt":"2023-02-15T06:22:53.25039Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25039Z","LastActivityAt":"2023-02-15T06:22:53.25039Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1848,"ScoreAtt":133,"RankDef":2024,"ScoreDef":4408,"RankSup":0,"ScoreSup":0,"RankTotal":2152,"ScoreTotal":4541,"ID":2819255,"Name":"Atillaa","NumVillages":1,"Points":4007,"Rank":1409,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2819255","BestRank":1409,"BestRankAt":"2023-02-15T06:22:53.25039Z","MostPoints":4007,"MostPointsAt":"2023-02-15T06:22:53.25039Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25039Z","LastActivityAt":"2023-02-15T06:22:53.25039Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1503,"ScoreAtt":2359,"RankDef":1604,"ScoreDef":25432,"RankSup":0,"ScoreSup":0,"RankTotal":1790,"ScoreTotal":27791,"ID":2819768,"Name":"rycho100","NumVillages":1,"Points":1827,"Rank":1698,"TribeID":965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2819768","BestRank":1698,"BestRankAt":"2023-02-15T06:22:53.250391Z","MostPoints":1827,"MostPointsAt":"2023-02-15T06:22:53.250391Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250391Z","LastActivityAt":"2023-02-15T06:22:53.250391Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2022,"ScoreDef":4430,"RankSup":0,"ScoreSup":0,"RankTotal":2156,"ScoreTotal":4430,"ID":2837080,"Name":"LadyVv","NumVillages":1,"Points":1959,"Rank":1675,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2837080","BestRank":1675,"BestRankAt":"2023-02-15T06:22:53.250391Z","MostPoints":1959,"MostPointsAt":"2023-02-15T06:22:53.250391Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250391Z","LastActivityAt":"2023-02-15T06:22:53.250391Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":542,"ScoreAtt":292119,"RankDef":549,"ScoreDef":442300,"RankSup":345,"ScoreSup":416172,"RankTotal":576,"ScoreTotal":1150591,"ID":2873154,"Name":"Kozak Wielki 5","NumVillages":47,"Points":254047,"Rank":381,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2873154","BestRank":381,"BestRankAt":"2023-02-15T06:22:53.250392Z","MostPoints":254047,"MostPointsAt":"2023-02-15T06:22:53.250392Z","MostVillages":47,"MostVillagesAt":"2023-02-15T06:22:53.250392Z","LastActivityAt":"2023-02-15T06:22:53.250392Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2509Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1255,"ScoreAtt":7938,"RankDef":1160,"ScoreDef":80885,"RankSup":0,"ScoreSup":0,"RankTotal":1439,"ScoreTotal":88823,"ID":2893211,"Name":"lukiluki1200","NumVillages":2,"Points":719,"Rank":1946,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2893211","BestRank":1946,"BestRankAt":"2023-02-15T06:22:53.250392Z","MostPoints":719,"MostPointsAt":"2023-02-15T06:22:53.250392Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250392Z","LastActivityAt":"2023-02-15T06:22:53.250392Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1688,"ScoreAtt":669,"RankDef":1024,"ScoreDef":117961,"RankSup":0,"ScoreSup":0,"RankTotal":1330,"ScoreTotal":118630,"ID":2924071,"Name":"lew mis","NumVillages":0,"Points":0,"Rank":2902,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2924071","BestRank":2902,"BestRankAt":"2023-02-15T06:22:53.250393Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250393Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250393Z","LastActivityAt":"2023-02-15T06:22:53.250393Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2942206,"Name":"Maniek28a","NumVillages":1,"Points":639,"Rank":1972,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2942206","BestRank":1972,"BestRankAt":"2023-02-15T06:22:53.250393Z","MostPoints":639,"MostPointsAt":"2023-02-15T06:22:53.250393Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250393Z","LastActivityAt":"2023-02-15T06:22:53.250394Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":755,"ScoreAtt":98123,"RankDef":482,"ScoreDef":551662,"RankSup":906,"ScoreSup":11165,"RankTotal":747,"ScoreTotal":660950,"ID":2972329,"Name":"Bigbangs","NumVillages":13,"Points":106506,"Rank":528,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2972329","BestRank":528,"BestRankAt":"2023-02-15T06:22:53.250394Z","MostPoints":106506,"MostPointsAt":"2023-02-15T06:22:53.250394Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.250394Z","LastActivityAt":"2023-02-15T06:22:53.250394Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":931,"ScoreAtt":43656,"RankDef":1128,"ScoreDef":89299,"RankSup":1033,"ScoreSup":3534,"RankTotal":1280,"ScoreTotal":136489,"ID":2976468,"Name":"tomnado","NumVillages":10,"Points":44068,"Rank":721,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2976468","BestRank":721,"BestRankAt":"2023-02-15T06:22:53.250394Z","MostPoints":44068,"MostPointsAt":"2023-02-15T06:22:53.250395Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250394Z","LastActivityAt":"2023-02-15T06:22:53.250395Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2349,"ScoreDef":90,"RankSup":0,"ScoreSup":0,"RankTotal":2444,"ScoreTotal":90,"ID":2980670,"Name":"snajpiradlo","NumVillages":1,"Points":150,"Rank":2378,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2980670","BestRank":2378,"BestRankAt":"2023-02-15T06:22:53.250395Z","MostPoints":150,"MostPointsAt":"2023-02-15T06:22:53.250395Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250395Z","LastActivityAt":"2023-02-15T06:22:53.250395Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":364,"ScoreAtt":655568,"RankDef":1492,"ScoreDef":34922,"RankSup":937,"ScoreSup":8835,"RankTotal":732,"ScoreTotal":699325,"ID":2999957,"Name":"GRABIERZCA 1","NumVillages":51,"Points":405335,"Rank":301,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2999957","BestRank":301,"BestRankAt":"2023-02-15T06:22:53.250396Z","MostPoints":405335,"MostPointsAt":"2023-02-15T06:22:53.250396Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.250396Z","LastActivityAt":"2023-02-15T06:22:53.250396Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":882,"ScoreDef":172215,"RankSup":0,"ScoreSup":0,"RankTotal":1208,"ScoreTotal":172215,"ID":3022364,"Name":"romusz43","NumVillages":1,"Points":343,"Rank":2134,"TribeID":809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3022364","BestRank":2134,"BestRankAt":"2023-02-15T06:22:53.250396Z","MostPoints":343,"MostPointsAt":"2023-02-15T06:22:53.250396Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250396Z","LastActivityAt":"2023-02-15T06:22:53.250396Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2026,"ScoreDef":4355,"RankSup":1370,"ScoreSup":4,"RankTotal":2159,"ScoreTotal":4359,"ID":3024357,"Name":"DETONATOR2010","NumVillages":1,"Points":5027,"Rank":1324,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3024357","BestRank":1324,"BestRankAt":"2023-02-15T06:22:53.250397Z","MostPoints":5027,"MostPointsAt":"2023-02-15T06:22:53.250397Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250397Z","LastActivityAt":"2023-02-15T06:22:53.250397Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1565,"ScoreAtt":1701,"RankDef":1075,"ScoreDef":100752,"RankSup":0,"ScoreSup":0,"RankTotal":1384,"ScoreTotal":102453,"ID":3027589,"Name":"Daria 201","NumVillages":2,"Points":6438,"Rank":1242,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3027589","BestRank":1242,"BestRankAt":"2023-02-15T06:22:53.250397Z","MostPoints":6438,"MostPointsAt":"2023-02-15T06:22:53.250397Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250397Z","LastActivityAt":"2023-02-15T06:22:53.250397Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1788,"ScoreAtt":240,"RankDef":875,"ScoreDef":176373,"RankSup":1294,"ScoreSup":35,"RankTotal":1196,"ScoreTotal":176648,"ID":3057381,"Name":"waldi0227","NumVillages":0,"Points":0,"Rank":2903,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3057381","BestRank":2903,"BestRankAt":"2023-02-15T06:22:53.250398Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250398Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250398Z","LastActivityAt":"2023-02-15T06:22:53.250398Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2486,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2561,"ScoreTotal":4,"ID":3101080,"Name":"saba13","NumVillages":1,"Points":638,"Rank":1974,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3101080","BestRank":1974,"BestRankAt":"2023-02-15T06:22:53.250398Z","MostPoints":638,"MostPointsAt":"2023-02-15T06:22:53.250398Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250398Z","LastActivityAt":"2023-02-15T06:22:53.250399Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":558,"ScoreAtt":265001,"RankDef":95,"ScoreDef":3659008,"RankSup":472,"ScoreSup":195165,"RankTotal":230,"ScoreTotal":4119174,"ID":3108144,"Name":"Vandip","NumVillages":32,"Points":196459,"Rank":417,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3108144","BestRank":417,"BestRankAt":"2023-02-15T06:22:53.250399Z","MostPoints":196459,"MostPointsAt":"2023-02-15T06:22:53.250399Z","MostVillages":32,"MostVillagesAt":"2023-02-15T06:22:53.250399Z","LastActivityAt":"2023-02-15T06:22:53.250399Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3112100,"Name":"Arletta82","NumVillages":1,"Points":104,"Rank":2470,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3112100","BestRank":2470,"BestRankAt":"2023-02-15T06:22:53.2504Z","MostPoints":104,"MostPointsAt":"2023-02-15T06:22:53.2504Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.2504Z","LastActivityAt":"2023-02-15T06:22:53.2504Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":486,"ScoreAtt":379388,"RankDef":1309,"ScoreDef":56366,"RankSup":711,"ScoreSup":45239,"RankTotal":854,"ScoreTotal":480993,"ID":3136062,"Name":"emeryt224","NumVillages":0,"Points":0,"Rank":2904,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3136062","BestRank":2904,"BestRankAt":"2023-02-15T06:22:53.2504Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250401Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.2504Z","LastActivityAt":"2023-02-15T06:22:53.250401Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1896,"ScoreAtt":53,"RankDef":846,"ScoreDef":186691,"RankSup":1004,"ScoreSup":5034,"RankTotal":1157,"ScoreTotal":191778,"ID":3181712,"Name":"Roman150","NumVillages":0,"Points":0,"Rank":2905,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3181712","BestRank":2905,"BestRankAt":"2023-02-15T06:22:53.250401Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250401Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250401Z","LastActivityAt":"2023-02-15T06:22:53.250401Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1095,"ScoreDef":95060,"RankSup":0,"ScoreSup":0,"RankTotal":1409,"ScoreTotal":95060,"ID":3185732,"Name":"Wielki Wezyr","NumVillages":1,"Points":2431,"Rank":1593,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3185732","BestRank":1593,"BestRankAt":"2023-02-15T06:22:53.250402Z","MostPoints":2431,"MostPointsAt":"2023-02-15T06:22:53.250402Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250402Z","LastActivityAt":"2023-02-15T06:22:53.250402Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3264281,"Name":"jankes630","NumVillages":1,"Points":73,"Rank":2527,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3264281","BestRank":2527,"BestRankAt":"2023-02-15T06:22:53.250402Z","MostPoints":73,"MostPointsAt":"2023-02-15T06:22:53.250403Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250402Z","LastActivityAt":"2023-02-15T06:22:53.250403Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1072,"ScoreAtt":20704,"RankDef":415,"ScoreDef":708434,"RankSup":1077,"ScoreSup":2414,"RankTotal":713,"ScoreTotal":731552,"ID":3264534,"Name":"Sosiq...","NumVillages":1,"Points":10698,"Rank":1066,"TribeID":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3264534","BestRank":1066,"BestRankAt":"2023-02-15T06:22:53.250403Z","MostPoints":10698,"MostPointsAt":"2023-02-15T06:22:53.250403Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250403Z","LastActivityAt":"2023-02-15T06:22:53.250403Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25092Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":163,"ScoreAtt":1956061,"RankDef":724,"ScoreDef":260032,"RankSup":808,"ScoreSup":23692,"RankTotal":377,"ScoreTotal":2239785,"ID":3295619,"Name":"lubiszT0","NumVillages":1,"Points":162,"Rank":2362,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3295619","BestRank":2362,"BestRankAt":"2023-02-15T06:22:53.250404Z","MostPoints":162,"MostPointsAt":"2023-02-15T06:22:53.250404Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250404Z","LastActivityAt":"2023-02-15T06:22:53.250405Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25092Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1529,"ScoreAtt":2092,"RankDef":1532,"ScoreDef":30856,"RankSup":0,"ScoreSup":0,"RankTotal":1747,"ScoreTotal":32948,"ID":3298564,"Name":"arek22310","NumVillages":1,"Points":1843,"Rank":1695,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3298564","BestRank":1695,"BestRankAt":"2023-02-15T06:22:53.250405Z","MostPoints":1843,"MostPointsAt":"2023-02-15T06:22:53.250405Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250405Z","LastActivityAt":"2023-02-15T06:22:53.250406Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1244,"ScoreAtt":8503,"RankDef":1599,"ScoreDef":25542,"RankSup":939,"ScoreSup":8560,"RankTotal":1663,"ScoreTotal":42605,"ID":3298902,"Name":"Sejmion","NumVillages":4,"Points":22828,"Rank":884,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3298902","BestRank":884,"BestRankAt":"2023-02-15T06:22:53.250406Z","MostPoints":22828,"MostPointsAt":"2023-02-15T06:22:53.250406Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250406Z","LastActivityAt":"2023-02-15T06:22:53.250406Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1009,"ScoreAtt":28749,"RankDef":1008,"ScoreDef":123444,"RankSup":992,"ScoreSup":5534,"RankTotal":1234,"ScoreTotal":157727,"ID":3319611,"Name":"niedzwiedz8807","NumVillages":1,"Points":2955,"Rank":1534,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3319611","BestRank":1534,"BestRankAt":"2023-02-15T06:22:53.250407Z","MostPoints":2955,"MostPointsAt":"2023-02-15T06:22:53.250407Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250407Z","LastActivityAt":"2023-02-15T06:22:53.250407Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":777,"ScoreAtt":89974,"RankDef":1777,"ScoreDef":13660,"RankSup":660,"ScoreSup":66453,"RankTotal":1210,"ScoreTotal":170087,"ID":3340647,"Name":"Chaos.Black","NumVillages":1,"Points":9494,"Rank":1106,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3340647","BestRank":1106,"BestRankAt":"2023-02-15T06:22:53.250407Z","MostPoints":9494,"MostPointsAt":"2023-02-15T06:22:53.250407Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250407Z","LastActivityAt":"2023-02-15T06:22:53.250408Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1587,"ScoreAtt":1427,"RankDef":376,"ScoreDef":802106,"RankSup":0,"ScoreSup":0,"RankTotal":684,"ScoreTotal":803533,"ID":3342690,"Name":"zyzok108","NumVillages":2,"Points":5794,"Rank":1285,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3342690","BestRank":1285,"BestRankAt":"2023-02-15T06:22:53.250408Z","MostPoints":5794,"MostPointsAt":"2023-02-15T06:22:53.250408Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250408Z","LastActivityAt":"2023-02-15T06:22:53.250408Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":750,"ScoreAtt":102379,"RankDef":777,"ScoreDef":224932,"RankSup":886,"ScoreSup":13784,"RankTotal":970,"ScoreTotal":341095,"ID":3345943,"Name":"dam111","NumVillages":1,"Points":50,"Rank":2581,"TribeID":546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3345943","BestRank":2581,"BestRankAt":"2023-02-15T06:22:53.250408Z","MostPoints":50,"MostPointsAt":"2023-02-15T06:22:53.250409Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250409Z","LastActivityAt":"2023-02-15T06:22:53.250409Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2160,"ScoreDef":1826,"RankSup":0,"ScoreSup":0,"RankTotal":2258,"ScoreTotal":1826,"ID":3362925,"Name":"Beast Palladin","NumVillages":1,"Points":967,"Rank":1877,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3362925","BestRank":1877,"BestRankAt":"2023-02-15T06:22:53.250409Z","MostPoints":967,"MostPointsAt":"2023-02-15T06:22:53.250409Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250409Z","LastActivityAt":"2023-02-15T06:22:53.25041Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1002,"ScoreAtt":29853,"RankDef":2140,"ScoreDef":2098,"RankSup":1213,"ScoreSup":320,"RankTotal":1754,"ScoreTotal":32271,"ID":3364735,"Name":"Vesemir7","NumVillages":7,"Points":65933,"Rank":631,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3364735","BestRank":631,"BestRankAt":"2023-02-15T06:22:53.25041Z","MostPoints":65933,"MostPointsAt":"2023-02-15T06:22:53.25041Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.25041Z","LastActivityAt":"2023-02-15T06:22:53.25041Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1316,"ScoreAtt":6150,"RankDef":1364,"ScoreDef":48893,"RankSup":1355,"ScoreSup":5,"RankTotal":1586,"ScoreTotal":55048,"ID":3365981,"Name":"Panoramix112","NumVillages":1,"Points":1598,"Rank":1733,"TribeID":116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3365981","BestRank":1733,"BestRankAt":"2023-02-15T06:22:53.250411Z","MostPoints":1598,"MostPointsAt":"2023-02-15T06:22:53.250411Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250411Z","LastActivityAt":"2023-02-15T06:22:53.250411Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1897,"ScoreDef":8054,"RankSup":0,"ScoreSup":0,"RankTotal":2042,"ScoreTotal":8054,"ID":3372959,"Name":"wowo.ww","NumVillages":3,"Points":11099,"Rank":1052,"TribeID":626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3372959","BestRank":1052,"BestRankAt":"2023-02-15T06:22:53.250411Z","MostPoints":11099,"MostPointsAt":"2023-02-15T06:22:53.250411Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250411Z","LastActivityAt":"2023-02-15T06:22:53.250412Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":864,"ScoreAtt":59496,"RankDef":400,"ScoreDef":751051,"RankSup":0,"ScoreSup":0,"RankTotal":683,"ScoreTotal":810547,"ID":3377503,"Name":"Czarny Hetman","NumVillages":3,"Points":996,"Rank":1867,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3377503","BestRank":1867,"BestRankAt":"2023-02-15T06:22:53.250412Z","MostPoints":996,"MostPointsAt":"2023-02-15T06:22:53.250412Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250412Z","LastActivityAt":"2023-02-15T06:22:53.250412Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":589,"ScoreAtt":226868,"RankDef":235,"ScoreDef":1628125,"RankSup":968,"ScoreSup":6614,"RankTotal":426,"ScoreTotal":1861607,"ID":3377827,"Name":"Krasnal01","NumVillages":3,"Points":22528,"Rank":886,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3377827","BestRank":886,"BestRankAt":"2023-02-15T06:22:53.250413Z","MostPoints":22528,"MostPointsAt":"2023-02-15T06:22:53.250413Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250413Z","LastActivityAt":"2023-02-15T06:22:53.250413Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1443,"ScoreAtt":3267,"RankDef":641,"ScoreDef":333720,"RankSup":760,"ScoreSup":33261,"RankTotal":943,"ScoreTotal":370248,"ID":3395817,"Name":"Aquarius12","NumVillages":1,"Points":437,"Rank":2065,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3395817","BestRank":2065,"BestRankAt":"2023-02-15T06:22:53.250413Z","MostPoints":437,"MostPointsAt":"2023-02-15T06:22:53.250413Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250413Z","LastActivityAt":"2023-02-15T06:22:53.250414Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1559,"ScoreAtt":1776,"RankDef":1109,"ScoreDef":92643,"RankSup":0,"ScoreSup":0,"RankTotal":1413,"ScoreTotal":94419,"ID":3409028,"Name":"giza61","NumVillages":1,"Points":2796,"Rank":1550,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3409028","BestRank":1550,"BestRankAt":"2023-02-15T06:22:53.250414Z","MostPoints":2796,"MostPointsAt":"2023-02-15T06:22:53.250414Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250414Z","LastActivityAt":"2023-02-15T06:22:53.250414Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":900,"ScoreAtt":51046,"RankDef":768,"ScoreDef":233028,"RankSup":843,"ScoreSup":17267,"RankTotal":1003,"ScoreTotal":301341,"ID":3411571,"Name":"asiulkaaa23","NumVillages":20,"Points":98184,"Rank":545,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3411571","BestRank":545,"BestRankAt":"2023-02-15T06:22:53.250415Z","MostPoints":98184,"MostPointsAt":"2023-02-15T06:22:53.250415Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.250415Z","LastActivityAt":"2023-02-15T06:22:53.250415Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":309,"ScoreAtt":877476,"RankDef":698,"ScoreDef":272273,"RankSup":581,"ScoreSup":106834,"RankTotal":546,"ScoreTotal":1256583,"ID":3428961,"Name":"patrykoss93","NumVillages":1,"Points":26,"Rank":2634,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3428961","BestRank":2634,"BestRankAt":"2023-02-15T06:22:53.250415Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250415Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250415Z","LastActivityAt":"2023-02-15T06:22:53.250416Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":951,"ScoreAtt":39435,"RankDef":599,"ScoreDef":380673,"RankSup":1124,"ScoreSup":1415,"RankTotal":894,"ScoreTotal":421523,"ID":3430969,"Name":"Barret","NumVillages":1,"Points":974,"Rank":1875,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3430969","BestRank":1875,"BestRankAt":"2023-02-15T06:22:53.250416Z","MostPoints":974,"MostPointsAt":"2023-02-15T06:22:53.250416Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250416Z","LastActivityAt":"2023-02-15T06:22:53.250416Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1948,"ScoreAtt":20,"RankDef":1983,"ScoreDef":5464,"RankSup":0,"ScoreSup":0,"RankTotal":2113,"ScoreTotal":5484,"ID":3441892,"Name":"wƂadca smokĂłw 2","NumVillages":0,"Points":0,"Rank":2906,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3441892","BestRank":2906,"BestRankAt":"2023-02-15T06:22:53.250417Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250417Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250417Z","LastActivityAt":"2023-02-15T06:22:53.250417Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":229,"ScoreAtt":1301306,"RankDef":1614,"ScoreDef":24724,"RankSup":148,"ScoreSup":1524284,"RankTotal":304,"ScoreTotal":2850314,"ID":3454753,"Name":"Iker96","NumVillages":78,"Points":715572,"Rank":200,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3454753","BestRank":200,"BestRankAt":"2023-02-15T06:22:53.250417Z","MostPoints":715572,"MostPointsAt":"2023-02-15T06:22:53.250418Z","MostVillages":78,"MostVillagesAt":"2023-02-15T06:22:53.250417Z","LastActivityAt":"2023-02-15T06:22:53.250418Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25094Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2421,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2520,"ScoreTotal":13,"ID":3462813,"Name":"Arash1","NumVillages":1,"Points":195,"Rank":2310,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3462813","BestRank":2310,"BestRankAt":"2023-02-15T06:22:53.250418Z","MostPoints":195,"MostPointsAt":"2023-02-15T06:22:53.250418Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250418Z","LastActivityAt":"2023-02-15T06:22:53.250418Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1021,"ScoreAtt":27561,"RankDef":1701,"ScoreDef":18775,"RankSup":1036,"ScoreSup":3416,"RankTotal":1615,"ScoreTotal":49752,"ID":3467919,"Name":"Tomcio Rycerz","NumVillages":16,"Points":88168,"Rank":567,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3467919","BestRank":567,"BestRankAt":"2023-02-15T06:22:53.250419Z","MostPoints":88168,"MostPointsAt":"2023-02-15T06:22:53.250419Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.250419Z","LastActivityAt":"2023-02-15T06:22:53.250419Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":517,"ScoreAtt":327183,"RankDef":51,"ScoreDef":6502818,"RankSup":417,"ScoreSup":281122,"RankTotal":122,"ScoreTotal":7111123,"ID":3475079,"Name":"de Talleyrand","NumVillages":29,"Points":118325,"Rank":508,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3475079","BestRank":508,"BestRankAt":"2023-02-15T06:22:53.250419Z","MostPoints":118325,"MostPointsAt":"2023-02-15T06:22:53.25042Z","MostVillages":29,"MostVillagesAt":"2023-02-15T06:22:53.25042Z","LastActivityAt":"2023-02-15T06:22:53.25042Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":113,"ScoreAtt":2714253,"RankDef":585,"ScoreDef":392689,"RankSup":105,"ScoreSup":2125170,"RankTotal":177,"ScoreTotal":5232112,"ID":3484132,"Name":"wojtek1409","NumVillages":165,"Points":1348778,"Rank":90,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3484132","BestRank":90,"BestRankAt":"2023-02-15T06:22:53.25042Z","MostPoints":1348778,"MostPointsAt":"2023-02-15T06:22:53.25042Z","MostVillages":165,"MostVillagesAt":"2023-02-15T06:22:53.25042Z","LastActivityAt":"2023-02-15T06:22:53.250421Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1854,"ScoreAtt":120,"RankDef":597,"ScoreDef":383076,"RankSup":0,"ScoreSup":0,"RankTotal":932,"ScoreTotal":383196,"ID":3487721,"Name":"BORKOS4","NumVillages":1,"Points":1606,"Rank":1731,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3487721","BestRank":1731,"BestRankAt":"2023-02-15T06:22:53.250421Z","MostPoints":1606,"MostPointsAt":"2023-02-15T06:22:53.250421Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250421Z","LastActivityAt":"2023-02-15T06:22:53.250421Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25095Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1896,"ScoreDef":8091,"RankSup":0,"ScoreSup":0,"RankTotal":2040,"ScoreTotal":8091,"ID":3487933,"Name":"Szujski Mastess Team","NumVillages":1,"Points":429,"Rank":2071,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3487933","BestRank":2071,"BestRankAt":"2023-02-15T06:22:53.250421Z","MostPoints":429,"MostPointsAt":"2023-02-15T06:22:53.250422Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250421Z","LastActivityAt":"2023-02-15T06:22:53.250422Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2191,"ScoreDef":1367,"RankSup":0,"ScoreSup":0,"RankTotal":2287,"ScoreTotal":1367,"ID":3499467,"Name":"ciechu0m","NumVillages":1,"Points":347,"Rank":2130,"TribeID":187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3499467","BestRank":2130,"BestRankAt":"2023-02-15T06:22:53.250422Z","MostPoints":347,"MostPointsAt":"2023-02-15T06:22:53.250422Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250422Z","LastActivityAt":"2023-02-15T06:22:53.250422Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":171,"ScoreAtt":1867684,"RankDef":40,"ScoreDef":7971132,"RankSup":282,"ScoreSup":574826,"RankTotal":75,"ScoreTotal":10413642,"ID":3502565,"Name":"Erupcja","NumVillages":25,"Points":157289,"Rank":455,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3502565","BestRank":455,"BestRankAt":"2023-02-15T06:22:53.250422Z","MostPoints":157289,"MostPointsAt":"2023-02-15T06:22:53.250423Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.250423Z","LastActivityAt":"2023-02-15T06:22:53.250423Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2338,"ScoreDef":132,"RankSup":0,"ScoreSup":0,"RankTotal":2427,"ScoreTotal":132,"ID":3518623,"Name":"Deyna10","NumVillages":1,"Points":194,"Rank":2312,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3518623","BestRank":2312,"BestRankAt":"2023-02-15T06:22:53.250423Z","MostPoints":194,"MostPointsAt":"2023-02-15T06:22:53.250423Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250423Z","LastActivityAt":"2023-02-15T06:22:53.250423Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1997,"ScoreDef":5269,"RankSup":0,"ScoreSup":0,"RankTotal":2126,"ScoreTotal":5269,"ID":3529695,"Name":"Don Kargul","NumVillages":1,"Points":9060,"Rank":1122,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3529695","BestRank":1122,"BestRankAt":"2023-02-15T06:22:53.250424Z","MostPoints":9060,"MostPointsAt":"2023-02-15T06:22:53.250424Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250424Z","LastActivityAt":"2023-02-15T06:22:53.250424Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2293,"ScoreDef":340,"RankSup":0,"ScoreSup":0,"RankTotal":2375,"ScoreTotal":340,"ID":3560281,"Name":"joannaniel","NumVillages":2,"Points":8011,"Rank":1156,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3560281","BestRank":1156,"BestRankAt":"2023-02-15T06:22:53.250424Z","MostPoints":8011,"MostPointsAt":"2023-02-15T06:22:53.250424Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250424Z","LastActivityAt":"2023-02-15T06:22:53.250424Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1257,"ScoreAtt":7889,"RankDef":863,"ScoreDef":182350,"RankSup":0,"ScoreSup":0,"RankTotal":1161,"ScoreTotal":190239,"ID":3584298,"Name":"RYCERZ MAƁY","NumVillages":0,"Points":0,"Rank":2907,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3584298","BestRank":2907,"BestRankAt":"2023-02-15T06:22:53.250425Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250425Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250425Z","LastActivityAt":"2023-02-15T06:22:53.250425Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":971,"ScoreAtt":35170,"RankDef":975,"ScoreDef":131344,"RankSup":1351,"ScoreSup":5,"RankTotal":1219,"ScoreTotal":166519,"ID":3589487,"Name":"fazii2155","NumVillages":21,"Points":106912,"Rank":527,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3589487","BestRank":527,"BestRankAt":"2023-02-15T06:22:53.250425Z","MostPoints":106912,"MostPointsAt":"2023-02-15T06:22:53.250425Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.250425Z","LastActivityAt":"2023-02-15T06:22:53.250425Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":468,"ScoreAtt":415862,"RankDef":792,"ScoreDef":217022,"RankSup":521,"ScoreSup":150218,"RankTotal":692,"ScoreTotal":783102,"ID":3600737,"Name":"elli38","NumVillages":53,"Points":343355,"Rank":333,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3600737","BestRank":333,"BestRankAt":"2023-02-15T06:22:53.250426Z","MostPoints":343355,"MostPointsAt":"2023-02-15T06:22:53.250426Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.250426Z","LastActivityAt":"2023-02-15T06:22:53.250426Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":351,"ScoreAtt":691481,"RankDef":1023,"ScoreDef":117975,"RankSup":28,"ScoreSup":4755553,"RankTotal":162,"ScoreTotal":5565009,"ID":3613413,"Name":"and987","NumVillages":66,"Points":628023,"Rank":227,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3613413","BestRank":227,"BestRankAt":"2023-02-15T06:22:53.250426Z","MostPoints":628023,"MostPointsAt":"2023-02-15T06:22:53.250426Z","MostVillages":66,"MostVillagesAt":"2023-02-15T06:22:53.250426Z","LastActivityAt":"2023-02-15T06:22:53.250427Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1536,"ScoreDef":30510,"RankSup":0,"ScoreSup":0,"RankTotal":1767,"ScoreTotal":30510,"ID":3631404,"Name":"tedy1","NumVillages":1,"Points":393,"Rank":2092,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3631404","BestRank":2092,"BestRankAt":"2023-02-15T06:22:53.250427Z","MostPoints":393,"MostPointsAt":"2023-02-15T06:22:53.250427Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250427Z","LastActivityAt":"2023-02-15T06:22:53.250427Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1482,"ScoreAtt":2605,"RankDef":840,"ScoreDef":188341,"RankSup":764,"ScoreSup":33102,"RankTotal":1101,"ScoreTotal":224048,"ID":3639628,"Name":"Zoso2000","NumVillages":1,"Points":2115,"Rank":1640,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3639628","BestRank":1640,"BestRankAt":"2023-02-15T06:22:53.250427Z","MostPoints":2115,"MostPointsAt":"2023-02-15T06:22:53.250428Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250427Z","LastActivityAt":"2023-02-15T06:22:53.250428Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2416,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":2513,"ScoreTotal":14,"ID":3647080,"Name":"MP1001","NumVillages":1,"Points":1713,"Rank":1716,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3647080","BestRank":1716,"BestRankAt":"2023-02-15T06:22:53.250428Z","MostPoints":1713,"MostPointsAt":"2023-02-15T06:22:53.250428Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250428Z","LastActivityAt":"2023-02-15T06:22:53.250428Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1725,"ScoreDef":17225,"RankSup":0,"ScoreSup":0,"RankTotal":1901,"ScoreTotal":17225,"ID":3647086,"Name":"bruno 60","NumVillages":1,"Points":6935,"Rank":1220,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3647086","BestRank":1220,"BestRankAt":"2023-02-15T06:22:53.250428Z","MostPoints":6935,"MostPointsAt":"2023-02-15T06:22:53.250429Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250429Z","LastActivityAt":"2023-02-15T06:22:53.250429Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":775,"ScoreAtt":90896,"RankDef":1348,"ScoreDef":51748,"RankSup":1094,"ScoreSup":2082,"RankTotal":1259,"ScoreTotal":144726,"ID":3652727,"Name":"sancus","NumVillages":1,"Points":2383,"Rank":1598,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3652727","BestRank":1598,"BestRankAt":"2023-02-15T06:22:53.250429Z","MostPoints":2383,"MostPointsAt":"2023-02-15T06:22:53.250429Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250429Z","LastActivityAt":"2023-02-15T06:22:53.250429Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1088,"ScoreAtt":19593,"RankDef":803,"ScoreDef":208765,"RankSup":0,"ScoreSup":0,"RankTotal":1091,"ScoreTotal":228358,"ID":3667722,"Name":"dziki71","NumVillages":1,"Points":1398,"Rank":1768,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3667722","BestRank":1768,"BestRankAt":"2023-02-15T06:22:53.25043Z","MostPoints":1398,"MostPointsAt":"2023-02-15T06:22:53.25043Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25043Z","LastActivityAt":"2023-02-15T06:22:53.25043Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2096,"ScoreDef":2841,"RankSup":1382,"ScoreSup":3,"RankTotal":2216,"ScoreTotal":2844,"ID":3668212,"Name":"Warkilia","NumVillages":1,"Points":2002,"Rank":1665,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3668212","BestRank":1665,"BestRankAt":"2023-02-15T06:22:53.25043Z","MostPoints":2002,"MostPointsAt":"2023-02-15T06:22:53.25043Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25043Z","LastActivityAt":"2023-02-15T06:22:53.25043Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1221,"ScoreAtt":9848,"RankDef":1728,"ScoreDef":17108,"RankSup":1334,"ScoreSup":10,"RankTotal":1801,"ScoreTotal":26966,"ID":3692413,"Name":"Kiubi5","NumVillages":3,"Points":5823,"Rank":1282,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3692413","BestRank":1282,"BestRankAt":"2023-02-15T06:22:53.250431Z","MostPoints":5823,"MostPointsAt":"2023-02-15T06:22:53.250431Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250431Z","LastActivityAt":"2023-02-15T06:22:53.250431Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":439,"ScoreAtt":467434,"RankDef":1530,"ScoreDef":30945,"RankSup":235,"ScoreSup":759185,"RankTotal":545,"ScoreTotal":1257564,"ID":3698627,"Name":"Bystek7","NumVillages":95,"Points":786848,"Rank":184,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3698627","BestRank":184,"BestRankAt":"2023-02-15T06:22:53.250431Z","MostPoints":786848,"MostPointsAt":"2023-02-15T06:22:53.250431Z","MostVillages":95,"MostVillagesAt":"2023-02-15T06:22:53.250431Z","LastActivityAt":"2023-02-15T06:22:53.250431Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":862,"ScoreDef":182517,"RankSup":0,"ScoreSup":0,"RankTotal":1184,"ScoreTotal":182517,"ID":3713020,"Name":"Tytus Africanus","NumVillages":1,"Points":4609,"Rank":1363,"TribeID":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3713020","BestRank":1363,"BestRankAt":"2023-02-15T06:22:53.250432Z","MostPoints":4609,"MostPointsAt":"2023-02-15T06:22:53.250432Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250432Z","LastActivityAt":"2023-02-15T06:22:53.250432Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":630,"ScoreAtt":178126,"RankDef":1619,"ScoreDef":24448,"RankSup":473,"ScoreSup":194744,"RankTotal":921,"ScoreTotal":397318,"ID":3734803,"Name":"kokso420","NumVillages":1,"Points":26,"Rank":2635,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3734803","BestRank":2635,"BestRankAt":"2023-02-15T06:22:53.250432Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250432Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250432Z","LastActivityAt":"2023-02-15T06:22:53.250433Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":254,"ScoreAtt":1094385,"RankDef":1410,"ScoreDef":41940,"RankSup":793,"ScoreSup":26884,"RankTotal":572,"ScoreTotal":1163209,"ID":3739202,"Name":"Tryagain","NumVillages":1,"Points":4809,"Rank":1344,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3739202","BestRank":1344,"BestRankAt":"2023-02-15T06:22:53.250433Z","MostPoints":4809,"MostPointsAt":"2023-02-15T06:22:53.250433Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250433Z","LastActivityAt":"2023-02-15T06:22:53.250433Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1907,"ScoreDef":7693,"RankSup":0,"ScoreSup":0,"RankTotal":2054,"ScoreTotal":7693,"ID":3743817,"Name":"E W A","NumVillages":1,"Points":66,"Rank":2545,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3743817","BestRank":2545,"BestRankAt":"2023-02-15T06:22:53.250433Z","MostPoints":66,"MostPointsAt":"2023-02-15T06:22:53.250434Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250433Z","LastActivityAt":"2023-02-15T06:22:53.250434Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":974,"ScoreAtt":34248,"RankDef":558,"ScoreDef":427264,"RankSup":0,"ScoreSup":0,"RankTotal":867,"ScoreTotal":461512,"ID":3750922,"Name":"macp1","NumVillages":1,"Points":2267,"Rank":1622,"TribeID":1528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3750922","BestRank":1622,"BestRankAt":"2023-02-15T06:22:53.250434Z","MostPoints":2267,"MostPointsAt":"2023-02-15T06:22:53.250434Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250434Z","LastActivityAt":"2023-02-15T06:22:53.250434Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1364,"ScoreAtt":4876,"RankDef":1412,"ScoreDef":41840,"RankSup":1421,"ScoreSup":1,"RankTotal":1636,"ScoreTotal":46717,"ID":3760848,"Name":"wiciu12","NumVillages":1,"Points":158,"Rank":2366,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3760848","BestRank":2366,"BestRankAt":"2023-02-15T06:22:53.250434Z","MostPoints":158,"MostPointsAt":"2023-02-15T06:22:53.250435Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250435Z","LastActivityAt":"2023-02-15T06:22:53.250435Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1698,"ScoreDef":18974,"RankSup":0,"ScoreSup":0,"RankTotal":1884,"ScoreTotal":18974,"ID":3762475,"Name":"tomiil","NumVillages":1,"Points":4441,"Rank":1376,"TribeID":435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3762475","BestRank":1376,"BestRankAt":"2023-02-15T06:22:53.250435Z","MostPoints":4441,"MostPointsAt":"2023-02-15T06:22:53.250435Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250435Z","LastActivityAt":"2023-02-15T06:22:53.250435Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25098Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3773216,"Name":"daro1974","NumVillages":1,"Points":222,"Rank":2268,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3773216","BestRank":2268,"BestRankAt":"2023-02-15T06:22:53.250436Z","MostPoints":222,"MostPointsAt":"2023-02-15T06:22:53.250436Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250436Z","LastActivityAt":"2023-02-15T06:22:53.250436Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":419,"ScoreAtt":519984,"RankDef":1702,"ScoreDef":18765,"RankSup":677,"ScoreSup":59267,"RankTotal":774,"ScoreTotal":598016,"ID":3781794,"Name":"977007","NumVillages":130,"Points":1015958,"Rank":143,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3781794","BestRank":143,"BestRankAt":"2023-02-15T06:22:53.250436Z","MostPoints":1015958,"MostPointsAt":"2023-02-15T06:22:53.250436Z","MostVillages":130,"MostVillagesAt":"2023-02-15T06:22:53.250436Z","LastActivityAt":"2023-02-15T06:22:53.250436Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2176,"ScoreDef":1618,"RankSup":1344,"ScoreSup":7,"RankTotal":2273,"ScoreTotal":1625,"ID":3800097,"Name":"Seba1112111","NumVillages":1,"Points":4745,"Rank":1350,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3800097","BestRank":1350,"BestRankAt":"2023-02-15T06:22:53.250437Z","MostPoints":4745,"MostPointsAt":"2023-02-15T06:22:53.250437Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250437Z","LastActivityAt":"2023-02-15T06:22:53.250437Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3824463,"Name":"KARY1988","NumVillages":1,"Points":26,"Rank":2636,"TribeID":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3824463","BestRank":2636,"BestRankAt":"2023-02-15T06:22:53.250437Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250437Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250437Z","LastActivityAt":"2023-02-15T06:22:53.250437Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3840616,"Name":"Arto135","NumVillages":1,"Points":74,"Rank":2525,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3840616","BestRank":2525,"BestRankAt":"2023-02-15T06:22:53.250438Z","MostPoints":74,"MostPointsAt":"2023-02-15T06:22:53.250438Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250438Z","LastActivityAt":"2023-02-15T06:22:53.250438Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1582,"ScoreDef":27259,"RankSup":833,"ScoreSup":19145,"RankTotal":1637,"ScoreTotal":46404,"ID":3842862,"Name":"M4TeK","NumVillages":3,"Points":5950,"Rank":1273,"TribeID":281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3842862","BestRank":1273,"BestRankAt":"2023-02-15T06:22:53.250438Z","MostPoints":5950,"MostPointsAt":"2023-02-15T06:22:53.250438Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250438Z","LastActivityAt":"2023-02-15T06:22:53.250439Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1066,"ScoreAtt":21659,"RankDef":2205,"ScoreDef":1126,"RankSup":762,"ScoreSup":33128,"RankTotal":1577,"ScoreTotal":55913,"ID":3860614,"Name":"szaikan96","NumVillages":1,"Points":26,"Rank":2637,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3860614","BestRank":2637,"BestRankAt":"2023-02-15T06:22:53.250439Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250439Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250439Z","LastActivityAt":"2023-02-15T06:22:53.250439Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1786,"ScoreAtt":249,"RankDef":1451,"ScoreDef":38377,"RankSup":0,"ScoreSup":0,"RankTotal":1697,"ScoreTotal":38626,"ID":3895471,"Name":"mikwojka","NumVillages":1,"Points":1997,"Rank":1667,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3895471","BestRank":1667,"BestRankAt":"2023-02-15T06:22:53.250439Z","MostPoints":1997,"MostPointsAt":"2023-02-15T06:22:53.25044Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250439Z","LastActivityAt":"2023-02-15T06:22:53.25044Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1611,"ScoreAtt":1226,"RankDef":806,"ScoreDef":205920,"RankSup":0,"ScoreSup":0,"RankTotal":1127,"ScoreTotal":207146,"ID":3896657,"Name":"robson351971","NumVillages":2,"Points":3621,"Rank":1448,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3896657","BestRank":1448,"BestRankAt":"2023-02-15T06:22:53.25044Z","MostPoints":3621,"MostPointsAt":"2023-02-15T06:22:53.25044Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.25044Z","LastActivityAt":"2023-02-15T06:22:53.25044Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":7,"ScoreAtt":14909975,"RankDef":204,"ScoreDef":1840752,"RankSup":48,"ScoreSup":3493947,"RankTotal":27,"ScoreTotal":20244674,"ID":3909522,"Name":"paawlo13","NumVillages":465,"Points":4004753,"Rank":8,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3909522","BestRank":8,"BestRankAt":"2023-02-15T06:22:53.25044Z","MostPoints":4004753,"MostPointsAt":"2023-02-15T06:22:53.250441Z","MostVillages":465,"MostVillagesAt":"2023-02-15T06:22:53.250441Z","LastActivityAt":"2023-02-15T06:22:53.250441Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1923,"ScoreDef":7187,"RankSup":0,"ScoreSup":0,"RankTotal":2066,"ScoreTotal":7187,"ID":3923887,"Name":"Nogger14","NumVillages":1,"Points":750,"Rank":1938,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3923887","BestRank":1938,"BestRankAt":"2023-02-15T06:22:53.250441Z","MostPoints":750,"MostPointsAt":"2023-02-15T06:22:53.250441Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250441Z","LastActivityAt":"2023-02-15T06:22:53.250441Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":380,"ScoreAtt":615746,"RankDef":519,"ScoreDef":493033,"RankSup":203,"ScoreSup":911772,"RankTotal":405,"ScoreTotal":2020551,"ID":3933666,"Name":"damian0ss","NumVillages":26,"Points":158808,"Rank":451,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3933666","BestRank":451,"BestRankAt":"2023-02-15T06:22:53.250442Z","MostPoints":158808,"MostPointsAt":"2023-02-15T06:22:53.250442Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.250442Z","LastActivityAt":"2023-02-15T06:22:53.250442Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1262,"ScoreAtt":7572,"RankDef":1577,"ScoreDef":27710,"RankSup":0,"ScoreSup":0,"RankTotal":1726,"ScoreTotal":35282,"ID":3957237,"Name":"DARO36","NumVillages":6,"Points":30283,"Rank":813,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3957237","BestRank":813,"BestRankAt":"2023-02-15T06:22:53.250442Z","MostPoints":30283,"MostPointsAt":"2023-02-15T06:22:53.250442Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250442Z","LastActivityAt":"2023-02-15T06:22:53.250442Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1941,"ScoreAtt":26,"RankDef":1001,"ScoreDef":124753,"RankSup":0,"ScoreSup":0,"RankTotal":1314,"ScoreTotal":124779,"ID":3969110,"Name":"ferrekin","NumVillages":1,"Points":3153,"Rank":1509,"TribeID":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3969110","BestRank":1509,"BestRankAt":"2023-02-15T06:22:53.250443Z","MostPoints":3153,"MostPointsAt":"2023-02-15T06:22:53.250443Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250443Z","LastActivityAt":"2023-02-15T06:22:53.250443Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":686,"ScoreAtt":139270,"RankDef":1044,"ScoreDef":111265,"RankSup":350,"ScoreSup":410810,"RankTotal":746,"ScoreTotal":661345,"ID":3972413,"Name":"bartekzdroj","NumVillages":1,"Points":3385,"Rank":1486,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3972413","BestRank":1486,"BestRankAt":"2023-02-15T06:22:53.250443Z","MostPoints":3385,"MostPointsAt":"2023-02-15T06:22:53.250443Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250443Z","LastActivityAt":"2023-02-15T06:22:53.250443Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3973432,"Name":"piotrus507","NumVillages":1,"Points":26,"Rank":2638,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3973432","BestRank":2638,"BestRankAt":"2023-02-15T06:22:53.250444Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250444Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250444Z","LastActivityAt":"2023-02-15T06:22:53.250444Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1548,"ScoreAtt":1855,"RankDef":206,"ScoreDef":1828467,"RankSup":0,"ScoreSup":0,"RankTotal":431,"ScoreTotal":1830322,"ID":3986807,"Name":"ORKORAN","NumVillages":15,"Points":19864,"Rank":921,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3986807","BestRank":921,"BestRankAt":"2023-02-15T06:22:53.250444Z","MostPoints":19864,"MostPointsAt":"2023-02-15T06:22:53.250444Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.250444Z","LastActivityAt":"2023-02-15T06:22:53.250445Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1549,"ScoreAtt":1845,"RankDef":467,"ScoreDef":569828,"RankSup":0,"ScoreSup":0,"RankTotal":787,"ScoreTotal":571673,"ID":3990066,"Name":"AsconX","NumVillages":6,"Points":20958,"Rank":903,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3990066","BestRank":903,"BestRankAt":"2023-02-15T06:22:53.250445Z","MostPoints":20958,"MostPointsAt":"2023-02-15T06:22:53.250445Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250445Z","LastActivityAt":"2023-02-15T06:22:53.250445Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.250999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2162,"ScoreDef":1797,"RankSup":0,"ScoreSup":0,"RankTotal":2260,"ScoreTotal":1797,"ID":5989306,"Name":"HENRYK321","NumVillages":1,"Points":367,"Rank":2114,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5989306","BestRank":2114,"BestRankAt":"2023-02-15T06:22:53.250445Z","MostPoints":367,"MostPointsAt":"2023-02-15T06:22:53.250446Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250445Z","LastActivityAt":"2023-02-15T06:22:53.250446Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":587,"ScoreAtt":228522,"RankDef":106,"ScoreDef":3442192,"RankSup":90,"ScoreSup":2375834,"RankTotal":149,"ScoreTotal":6046548,"ID":5991728,"Name":"hodowca1","NumVillages":0,"Points":0,"Rank":2908,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5991728","BestRank":2908,"BestRankAt":"2023-02-15T06:22:53.250446Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250446Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250446Z","LastActivityAt":"2023-02-15T06:22:53.250446Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":657,"ScoreAtt":155365,"RankDef":80,"ScoreDef":4266167,"RankSup":212,"ScoreSup":865269,"RankTotal":175,"ScoreTotal":5286801,"ID":5997814,"Name":"Frejas933","NumVillages":31,"Points":181281,"Rank":431,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5997814","BestRank":431,"BestRankAt":"2023-02-15T06:22:53.250446Z","MostPoints":181281,"MostPointsAt":"2023-02-15T06:22:53.250447Z","MostVillages":31,"MostVillagesAt":"2023-02-15T06:22:53.250447Z","LastActivityAt":"2023-02-15T06:22:53.250447Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":5999909,"Name":"piper97","NumVillages":1,"Points":101,"Rank":2480,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5999909","BestRank":2480,"BestRankAt":"2023-02-15T06:22:53.250447Z","MostPoints":101,"MostPointsAt":"2023-02-15T06:22:53.250447Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250447Z","LastActivityAt":"2023-02-15T06:22:53.250447Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1635,"ScoreAtt":959,"RankDef":1822,"ScoreDef":11253,"RankSup":0,"ScoreSup":0,"RankTotal":1965,"ScoreTotal":12212,"ID":6001174,"Name":"Mietusek22","NumVillages":1,"Points":7348,"Rank":1199,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6001174","BestRank":1199,"BestRankAt":"2023-02-15T06:22:53.250448Z","MostPoints":7348,"MostPointsAt":"2023-02-15T06:22:53.250448Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250448Z","LastActivityAt":"2023-02-15T06:22:53.250448Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1579,"ScoreAtt":1529,"RankDef":1223,"ScoreDef":68486,"RankSup":0,"ScoreSup":0,"RankTotal":1508,"ScoreTotal":70015,"ID":6002527,"Name":"Dj Burglar","NumVillages":2,"Points":6560,"Rank":1237,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6002527","BestRank":1237,"BestRankAt":"2023-02-15T06:22:53.250448Z","MostPoints":6560,"MostPointsAt":"2023-02-15T06:22:53.250448Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250448Z","LastActivityAt":"2023-02-15T06:22:53.250448Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1336,"ScoreAtt":5564,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2111,"ScoreTotal":5564,"ID":6021542,"Name":"rycerzrzyk2000","NumVillages":1,"Points":26,"Rank":2639,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6021542","BestRank":2639,"BestRankAt":"2023-02-15T06:22:53.250449Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250449Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250449Z","LastActivityAt":"2023-02-15T06:22:53.250449Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1394,"ScoreAtt":4272,"RankDef":1552,"ScoreDef":29375,"RankSup":0,"ScoreSup":0,"RankTotal":1742,"ScoreTotal":33647,"ID":6032352,"Name":"wojtek1435","NumVillages":2,"Points":5422,"Rank":1306,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6032352","BestRank":1306,"BestRankAt":"2023-02-15T06:22:53.250454Z","MostPoints":5422,"MostPointsAt":"2023-02-15T06:22:53.250454Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250454Z","LastActivityAt":"2023-02-15T06:22:53.250454Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6035425,"Name":"HORTON","NumVillages":1,"Points":96,"Rank":2493,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6035425","BestRank":2493,"BestRankAt":"2023-02-15T06:22:53.250454Z","MostPoints":96,"MostPointsAt":"2023-02-15T06:22:53.250455Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250455Z","LastActivityAt":"2023-02-15T06:22:53.250455Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1323,"ScoreAtt":5872,"RankDef":1120,"ScoreDef":90712,"RankSup":1340,"ScoreSup":8,"RankTotal":1403,"ScoreTotal":96592,"ID":6046368,"Name":"Moniq15","NumVillages":1,"Points":2313,"Rank":1613,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6046368","BestRank":1613,"BestRankAt":"2023-02-15T06:22:53.250455Z","MostPoints":2313,"MostPointsAt":"2023-02-15T06:22:53.250455Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250455Z","LastActivityAt":"2023-02-15T06:22:53.250455Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25101Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1929,"ScoreAtt":32,"RankDef":1059,"ScoreDef":104855,"RankSup":1341,"ScoreSup":8,"RankTotal":1376,"ScoreTotal":104895,"ID":6046743,"Name":"Filters","NumVillages":1,"Points":2319,"Rank":1612,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6046743","BestRank":1612,"BestRankAt":"2023-02-15T06:22:53.250456Z","MostPoints":2319,"MostPointsAt":"2023-02-15T06:22:53.250456Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250456Z","LastActivityAt":"2023-02-15T06:22:53.250456Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1269,"ScoreAtt":7416,"RankDef":973,"ScoreDef":132951,"RankSup":0,"ScoreSup":0,"RankTotal":1270,"ScoreTotal":140367,"ID":6048627,"Name":"rojek1122","NumVillages":2,"Points":15224,"Rank":993,"TribeID":1745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6048627","BestRank":993,"BestRankAt":"2023-02-15T06:22:53.250456Z","MostPoints":15224,"MostPointsAt":"2023-02-15T06:22:53.250456Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250456Z","LastActivityAt":"2023-02-15T06:22:53.250456Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6066254,"Name":"tomek22863","NumVillages":1,"Points":93,"Rank":2501,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6066254","BestRank":2501,"BestRankAt":"2023-02-15T06:22:53.250457Z","MostPoints":93,"MostPointsAt":"2023-02-15T06:22:53.250457Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250457Z","LastActivityAt":"2023-02-15T06:22:53.250457Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6070734,"Name":"--KEMPA--","NumVillages":1,"Points":26,"Rank":2640,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6070734","BestRank":2640,"BestRankAt":"2023-02-15T06:22:53.250457Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250457Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250457Z","LastActivityAt":"2023-02-15T06:22:53.250457Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":658,"ScoreDef":310809,"RankSup":0,"ScoreSup":0,"RankTotal":994,"ScoreTotal":310809,"ID":6071567,"Name":"Petro180","NumVillages":0,"Points":0,"Rank":2909,"TribeID":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6071567","BestRank":2909,"BestRankAt":"2023-02-15T06:22:53.250458Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250458Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250458Z","LastActivityAt":"2023-02-15T06:22:53.250458Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1621,"ScoreAtt":1083,"RankDef":1487,"ScoreDef":35438,"RankSup":1084,"ScoreSup":2263,"RankTotal":1693,"ScoreTotal":38784,"ID":6078176,"Name":"lech3838","NumVillages":1,"Points":120,"Rank":2446,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6078176","BestRank":2446,"BestRankAt":"2023-02-15T06:22:53.250458Z","MostPoints":120,"MostPointsAt":"2023-02-15T06:22:53.250459Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250458Z","LastActivityAt":"2023-02-15T06:22:53.250459Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":683,"ScoreDef":285903,"RankSup":1102,"ScoreSup":1872,"RankTotal":1013,"ScoreTotal":287775,"ID":6083448,"Name":"rafalzak","NumVillages":1,"Points":1122,"Rank":1828,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6083448","BestRank":1828,"BestRankAt":"2023-02-15T06:22:53.250459Z","MostPoints":1122,"MostPointsAt":"2023-02-15T06:22:53.250459Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250459Z","LastActivityAt":"2023-02-15T06:22:53.250459Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1469,"ScoreAtt":2843,"RankDef":481,"ScoreDef":552089,"RankSup":1019,"ScoreSup":4194,"RankTotal":798,"ScoreTotal":559126,"ID":6101033,"Name":"Smiatuniu","NumVillages":2,"Points":7762,"Rank":1172,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6101033","BestRank":1172,"BestRankAt":"2023-02-15T06:22:53.25046Z","MostPoints":7762,"MostPointsAt":"2023-02-15T06:22:53.25046Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.25046Z","LastActivityAt":"2023-02-15T06:22:53.25046Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1563,"ScoreAtt":1714,"RankDef":2154,"ScoreDef":1882,"RankSup":0,"ScoreSup":0,"RankTotal":2189,"ScoreTotal":3596,"ID":6111938,"Name":"krzysztof wspaniaƂy","NumVillages":1,"Points":4068,"Rank":1405,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6111938","BestRank":1405,"BestRankAt":"2023-02-15T06:22:53.25046Z","MostPoints":4068,"MostPointsAt":"2023-02-15T06:22:53.250461Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250461Z","LastActivityAt":"2023-02-15T06:22:53.250461Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25102Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":355,"ScoreAtt":680532,"RankDef":1430,"ScoreDef":39674,"RankSup":144,"ScoreSup":1538799,"RankTotal":375,"ScoreTotal":2259005,"ID":6116940,"Name":"piĂłro78","NumVillages":57,"Points":431647,"Rank":290,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6116940","BestRank":290,"BestRankAt":"2023-02-15T06:22:53.250461Z","MostPoints":431647,"MostPointsAt":"2023-02-15T06:22:53.250461Z","MostVillages":57,"MostVillagesAt":"2023-02-15T06:22:53.250461Z","LastActivityAt":"2023-02-15T06:22:53.250461Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":620,"ScoreAtt":190630,"RankDef":298,"ScoreDef":1177392,"RankSup":947,"ScoreSup":8087,"RankTotal":522,"ScoreTotal":1376109,"ID":6118079,"Name":"geoo","NumVillages":25,"Points":153836,"Rank":459,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6118079","BestRank":459,"BestRankAt":"2023-02-15T06:22:53.250462Z","MostPoints":153836,"MostPointsAt":"2023-02-15T06:22:53.250462Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.250462Z","LastActivityAt":"2023-02-15T06:22:53.250462Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1586,"ScoreAtt":1449,"RankDef":1094,"ScoreDef":95109,"RankSup":0,"ScoreSup":0,"RankTotal":1404,"ScoreTotal":96558,"ID":6121024,"Name":"topolskia","NumVillages":2,"Points":10994,"Rank":1056,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6121024","BestRank":1056,"BestRankAt":"2023-02-15T06:22:53.250462Z","MostPoints":10994,"MostPointsAt":"2023-02-15T06:22:53.250463Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250463Z","LastActivityAt":"2023-02-15T06:22:53.250463Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251023Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1132,"ScoreAtt":15727,"RankDef":1460,"ScoreDef":37585,"RankSup":1013,"ScoreSup":4358,"RankTotal":1572,"ScoreTotal":57670,"ID":6121519,"Name":"876g","NumVillages":0,"Points":0,"Rank":2910,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6121519","BestRank":2910,"BestRankAt":"2023-02-15T06:22:53.250463Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250463Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250463Z","LastActivityAt":"2023-02-15T06:22:53.250463Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1099,"ScoreAtt":18145,"RankDef":2100,"ScoreDef":2749,"RankSup":0,"ScoreSup":0,"RankTotal":1861,"ScoreTotal":20894,"ID":6127190,"Name":"kuka1","NumVillages":10,"Points":24124,"Rank":870,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6127190","BestRank":870,"BestRankAt":"2023-02-15T06:22:53.250464Z","MostPoints":24124,"MostPointsAt":"2023-02-15T06:22:53.250464Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.250464Z","LastActivityAt":"2023-02-15T06:22:53.250464Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1040,"ScoreAtt":24823,"RankDef":996,"ScoreDef":125418,"RankSup":880,"ScoreSup":14134,"RankTotal":1222,"ScoreTotal":164375,"ID":6131106,"Name":"pinqa","NumVillages":26,"Points":147290,"Rank":468,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6131106","BestRank":468,"BestRankAt":"2023-02-15T06:22:53.250465Z","MostPoints":147290,"MostPointsAt":"2023-02-15T06:22:53.250465Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.250465Z","LastActivityAt":"2023-02-15T06:22:53.250465Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6135387,"Name":"FreestylerWLKW","NumVillages":1,"Points":1320,"Rank":1782,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6135387","BestRank":1782,"BestRankAt":"2023-02-15T06:22:53.250466Z","MostPoints":1320,"MostPointsAt":"2023-02-15T06:22:53.250466Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250466Z","LastActivityAt":"2023-02-15T06:22:53.250466Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":799,"ScoreAtt":82082,"RankDef":618,"ScoreDef":360143,"RankSup":698,"ScoreSup":50996,"RankTotal":847,"ScoreTotal":493221,"ID":6136757,"Name":"Kaffik","NumVillages":15,"Points":96231,"Rank":549,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6136757","BestRank":549,"BestRankAt":"2023-02-15T06:22:53.250467Z","MostPoints":96231,"MostPointsAt":"2023-02-15T06:22:53.250467Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.250467Z","LastActivityAt":"2023-02-15T06:22:53.250467Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2274,"ScoreDef":446,"RankSup":0,"ScoreSup":0,"RankTotal":2362,"ScoreTotal":446,"ID":6143689,"Name":"vacik11","NumVillages":2,"Points":4726,"Rank":1354,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6143689","BestRank":1354,"BestRankAt":"2023-02-15T06:22:53.250467Z","MostPoints":4726,"MostPointsAt":"2023-02-15T06:22:53.250467Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250467Z","LastActivityAt":"2023-02-15T06:22:53.250467Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251029Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2106,"ScoreDef":2637,"RankSup":0,"ScoreSup":0,"RankTotal":2220,"ScoreTotal":2637,"ID":6145316,"Name":"zabario1","NumVillages":0,"Points":0,"Rank":2911,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6145316","BestRank":2911,"BestRankAt":"2023-02-15T06:22:53.250468Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250468Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250468Z","LastActivityAt":"2023-02-15T06:22:53.250468Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25103Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":560,"ScoreAtt":261778,"RankDef":1825,"ScoreDef":11094,"RankSup":318,"ScoreSup":468358,"RankTotal":710,"ScoreTotal":741230,"ID":6160655,"Name":"Hubix55","NumVillages":36,"Points":261739,"Rank":376,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6160655","BestRank":376,"BestRankAt":"2023-02-15T06:22:53.250469Z","MostPoints":261739,"MostPointsAt":"2023-02-15T06:22:53.250469Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.250469Z","LastActivityAt":"2023-02-15T06:22:53.250469Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1522,"ScoreDef":31755,"RankSup":0,"ScoreSup":0,"RankTotal":1758,"ScoreTotal":31755,"ID":6167751,"Name":"wlamus61","NumVillages":3,"Points":7062,"Rank":1213,"TribeID":1278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6167751","BestRank":1213,"BestRankAt":"2023-02-15T06:22:53.250469Z","MostPoints":7062,"MostPointsAt":"2023-02-15T06:22:53.250469Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250469Z","LastActivityAt":"2023-02-15T06:22:53.250469Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":294,"ScoreAtt":939418,"RankDef":1064,"ScoreDef":103596,"RankSup":439,"ScoreSup":245256,"RankTotal":541,"ScoreTotal":1288270,"ID":6169408,"Name":"Hasava","NumVillages":89,"Points":607139,"Rank":236,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6169408","BestRank":236,"BestRankAt":"2023-02-15T06:22:53.25047Z","MostPoints":607139,"MostPointsAt":"2023-02-15T06:22:53.25047Z","MostVillages":89,"MostVillagesAt":"2023-02-15T06:22:53.25047Z","LastActivityAt":"2023-02-15T06:22:53.25047Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1462,"ScoreAtt":2985,"RankDef":1303,"ScoreDef":57467,"RankSup":0,"ScoreSup":0,"RankTotal":1553,"ScoreTotal":60452,"ID":6171569,"Name":"andrzej84","NumVillages":6,"Points":19872,"Rank":919,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6171569","BestRank":919,"BestRankAt":"2023-02-15T06:22:53.25047Z","MostPoints":19872,"MostPointsAt":"2023-02-15T06:22:53.250471Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250471Z","LastActivityAt":"2023-02-15T06:22:53.250471Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":702,"ScoreAtt":127108,"RankDef":689,"ScoreDef":282124,"RankSup":1329,"ScoreSup":12,"RankTotal":907,"ScoreTotal":409244,"ID":6174010,"Name":"MARCINEK GROĆ»NY","NumVillages":1,"Points":358,"Rank":2119,"TribeID":1599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6174010","BestRank":2119,"BestRankAt":"2023-02-15T06:22:53.250471Z","MostPoints":358,"MostPointsAt":"2023-02-15T06:22:53.250471Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250471Z","LastActivityAt":"2023-02-15T06:22:53.250471Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6178803,"Name":"shakeit1","NumVillages":1,"Points":26,"Rank":2641,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6178803","BestRank":2641,"BestRankAt":"2023-02-15T06:22:53.250472Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250472Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250472Z","LastActivityAt":"2023-02-15T06:22:53.250472Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":18,"ScoreAtt":8216200,"RankDef":39,"ScoreDef":8431802,"RankSup":65,"ScoreSup":2922076,"RankTotal":29,"ScoreTotal":19570078,"ID":6180190,"Name":"Chcesz remont?","NumVillages":295,"Points":2487760,"Rank":26,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6180190","BestRank":26,"BestRankAt":"2023-02-15T06:22:53.250472Z","MostPoints":2487760,"MostPointsAt":"2023-02-15T06:22:53.250473Z","MostVillages":295,"MostVillagesAt":"2023-02-15T06:22:53.250473Z","LastActivityAt":"2023-02-15T06:22:53.250473Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1931,"ScoreAtt":31,"RankDef":878,"ScoreDef":175319,"RankSup":498,"ScoreSup":173656,"RankTotal":963,"ScoreTotal":349006,"ID":6186491,"Name":"andrux","NumVillages":4,"Points":14734,"Rank":1001,"TribeID":211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6186491","BestRank":1001,"BestRankAt":"2023-02-15T06:22:53.250473Z","MostPoints":14734,"MostPointsAt":"2023-02-15T06:22:53.250473Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250473Z","LastActivityAt":"2023-02-15T06:22:53.250474Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6193337,"Name":"smagi007","NumVillages":1,"Points":853,"Rank":1900,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6193337","BestRank":1900,"BestRankAt":"2023-02-15T06:22:53.250474Z","MostPoints":853,"MostPointsAt":"2023-02-15T06:22:53.250474Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250474Z","LastActivityAt":"2023-02-15T06:22:53.250474Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25104Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1008,"ScoreAtt":28955,"RankDef":2326,"ScoreDef":194,"RankSup":869,"ScoreSup":14982,"RankTotal":1652,"ScoreTotal":44131,"ID":6212605,"Name":"ADAMUS75","NumVillages":24,"Points":152535,"Rank":462,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6212605","BestRank":462,"BestRankAt":"2023-02-15T06:22:53.250475Z","MostPoints":152535,"MostPointsAt":"2023-02-15T06:22:53.250475Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.250475Z","LastActivityAt":"2023-02-15T06:22:53.250475Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1194,"ScoreAtt":10973,"RankDef":1707,"ScoreDef":18477,"RankSup":0,"ScoreSup":0,"RankTotal":1777,"ScoreTotal":29450,"ID":6240801,"Name":"MrTed","NumVillages":8,"Points":37152,"Rank":759,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6240801","BestRank":759,"BestRankAt":"2023-02-15T06:22:53.250475Z","MostPoints":37152,"MostPointsAt":"2023-02-15T06:22:53.250475Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.250475Z","LastActivityAt":"2023-02-15T06:22:53.250476Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":666,"ScoreAtt":147534,"RankDef":610,"ScoreDef":367771,"RankSup":779,"ScoreSup":29924,"RankTotal":806,"ScoreTotal":545229,"ID":6242167,"Name":"colt9","NumVillages":1,"Points":26,"Rank":2642,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6242167","BestRank":2642,"BestRankAt":"2023-02-15T06:22:53.250476Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250476Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250476Z","LastActivityAt":"2023-02-15T06:22:53.250476Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251042Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2314,"ScoreDef":231,"RankSup":0,"ScoreSup":0,"RankTotal":2396,"ScoreTotal":231,"ID":6243588,"Name":"deEdion","NumVillages":1,"Points":9777,"Rank":1090,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6243588","BestRank":1090,"BestRankAt":"2023-02-15T06:22:53.250476Z","MostPoints":9777,"MostPointsAt":"2023-02-15T06:22:53.250477Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250477Z","LastActivityAt":"2023-02-15T06:22:53.250477Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1418,"ScoreAtt":3769,"RankDef":465,"ScoreDef":580085,"RankSup":0,"ScoreSup":0,"RankTotal":779,"ScoreTotal":583854,"ID":6249486,"Name":"REXMUNDI","NumVillages":1,"Points":3881,"Rank":1424,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6249486","BestRank":1424,"BestRankAt":"2023-02-15T06:22:53.250477Z","MostPoints":3881,"MostPointsAt":"2023-02-15T06:22:53.250477Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250477Z","LastActivityAt":"2023-02-15T06:22:53.250477Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6249524,"Name":"hornet9","NumVillages":1,"Points":26,"Rank":2643,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6249524","BestRank":2643,"BestRankAt":"2023-02-15T06:22:53.250478Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250478Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250478Z","LastActivityAt":"2023-02-15T06:22:53.250478Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251049Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":176,"ScoreAtt":1806917,"RankDef":728,"ScoreDef":255973,"RankSup":217,"ScoreSup":817462,"RankTotal":300,"ScoreTotal":2880352,"ID":6258092,"Name":"tarcza55","NumVillages":124,"Points":1098095,"Rank":125,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6258092","BestRank":125,"BestRankAt":"2023-02-15T06:22:53.250479Z","MostPoints":1098095,"MostPointsAt":"2023-02-15T06:22:53.250479Z","MostVillages":124,"MostVillagesAt":"2023-02-15T06:22:53.250479Z","LastActivityAt":"2023-02-15T06:22:53.250479Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25105Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1351,"ScoreAtt":5271,"RankDef":2177,"ScoreDef":1590,"RankSup":0,"ScoreSup":0,"RankTotal":2075,"ScoreTotal":6861,"ID":6262469,"Name":"Muck123","NumVillages":0,"Points":0,"Rank":2912,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6262469","BestRank":2912,"BestRankAt":"2023-02-15T06:22:53.250479Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250479Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250479Z","LastActivityAt":"2023-02-15T06:22:53.250479Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":629,"ScoreDef":343571,"RankSup":0,"ScoreSup":0,"RankTotal":968,"ScoreTotal":343571,"ID":6270765,"Name":"MoistVonLipwing","NumVillages":1,"Points":26,"Rank":2644,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6270765","BestRank":2644,"BestRankAt":"2023-02-15T06:22:53.25048Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.25048Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25048Z","LastActivityAt":"2023-02-15T06:22:53.25048Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2165,"ScoreDef":1785,"RankSup":0,"ScoreSup":0,"RankTotal":2263,"ScoreTotal":1785,"ID":6276208,"Name":"biesta","NumVillages":1,"Points":463,"Rank":2049,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6276208","BestRank":2049,"BestRankAt":"2023-02-15T06:22:53.25048Z","MostPoints":463,"MostPointsAt":"2023-02-15T06:22:53.250481Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250481Z","LastActivityAt":"2023-02-15T06:22:53.250481Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":836,"ScoreAtt":70209,"RankDef":242,"ScoreDef":1551356,"RankSup":468,"ScoreSup":200063,"RankTotal":433,"ScoreTotal":1821628,"ID":6276419,"Name":"gerania","NumVillages":0,"Points":0,"Rank":2913,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6276419","BestRank":2913,"BestRankAt":"2023-02-15T06:22:53.250481Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250481Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250481Z","LastActivityAt":"2023-02-15T06:22:53.250481Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251055Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1573,"ScoreAtt":1603,"RankDef":1167,"ScoreDef":79689,"RankSup":590,"ScoreSup":103544,"RankTotal":1178,"ScoreTotal":184836,"ID":6284929,"Name":"antenkay","NumVillages":1,"Points":1096,"Rank":1836,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6284929","BestRank":1836,"BestRankAt":"2023-02-15T06:22:53.250482Z","MostPoints":1096,"MostPointsAt":"2023-02-15T06:22:53.250482Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250482Z","LastActivityAt":"2023-02-15T06:22:53.250482Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251055Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1911,"ScoreAtt":42,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2469,"ScoreTotal":42,"ID":6294942,"Name":"sendzia555","NumVillages":1,"Points":128,"Rank":2425,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6294942","BestRank":2425,"BestRankAt":"2023-02-15T06:22:53.250483Z","MostPoints":128,"MostPointsAt":"2023-02-15T06:22:53.250483Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250483Z","LastActivityAt":"2023-02-15T06:22:53.250483Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1712,"ScoreAtt":523,"RankDef":425,"ScoreDef":676417,"RankSup":0,"ScoreSup":0,"RankTotal":740,"ScoreTotal":676940,"ID":6296228,"Name":"oleska2002","NumVillages":1,"Points":2963,"Rank":1533,"TribeID":475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6296228","BestRank":1533,"BestRankAt":"2023-02-15T06:22:53.250483Z","MostPoints":2963,"MostPointsAt":"2023-02-15T06:22:53.250483Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250483Z","LastActivityAt":"2023-02-15T06:22:53.250484Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6298409,"Name":"Krzysztofeks16","NumVillages":1,"Points":182,"Rank":2331,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6298409","BestRank":2331,"BestRankAt":"2023-02-15T06:22:53.250484Z","MostPoints":182,"MostPointsAt":"2023-02-15T06:22:53.250484Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250484Z","LastActivityAt":"2023-02-15T06:22:53.250484Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1136,"ScoreAtt":15183,"RankDef":893,"ScoreDef":167472,"RankSup":1001,"ScoreSup":5130,"RankTotal":1167,"ScoreTotal":187785,"ID":6299408,"Name":"tylos3","NumVillages":9,"Points":51392,"Rank":682,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6299408","BestRank":682,"BestRankAt":"2023-02-15T06:22:53.250485Z","MostPoints":51392,"MostPointsAt":"2023-02-15T06:22:53.250485Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.250485Z","LastActivityAt":"2023-02-15T06:22:53.250485Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25106Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1864,"ScoreDef":9620,"RankSup":0,"ScoreSup":0,"RankTotal":2007,"ScoreTotal":9620,"ID":6300771,"Name":"PetC","NumVillages":1,"Points":298,"Rank":2178,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6300771","BestRank":2178,"BestRankAt":"2023-02-15T06:22:53.250485Z","MostPoints":298,"MostPointsAt":"2023-02-15T06:22:53.250485Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250485Z","LastActivityAt":"2023-02-15T06:22:53.250485Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251061Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":954,"ScoreDef":142557,"RankSup":778,"ScoreSup":29960,"RankTotal":1205,"ScoreTotal":172517,"ID":6301789,"Name":"Ewelinaq","NumVillages":3,"Points":7983,"Rank":1160,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6301789","BestRank":1160,"BestRankAt":"2023-02-15T06:22:53.250486Z","MostPoints":7983,"MostPointsAt":"2023-02-15T06:22:53.250486Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.250486Z","LastActivityAt":"2023-02-15T06:22:53.250486Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251062Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":997,"ScoreAtt":30916,"RankDef":94,"ScoreDef":3672613,"RankSup":824,"ScoreSup":20316,"RankTotal":246,"ScoreTotal":3723845,"ID":6308670,"Name":"Artemida-21","NumVillages":0,"Points":0,"Rank":2914,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6308670","BestRank":2914,"BestRankAt":"2023-02-15T06:22:53.250486Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250487Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250487Z","LastActivityAt":"2023-02-15T06:22:53.250487Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251064Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1853,"ScoreAtt":121,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2432,"ScoreTotal":121,"ID":6310214,"Name":"bino666","NumVillages":1,"Points":365,"Rank":2115,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6310214","BestRank":2115,"BestRankAt":"2023-02-15T06:22:53.250487Z","MostPoints":365,"MostPointsAt":"2023-02-15T06:22:53.250487Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250487Z","LastActivityAt":"2023-02-15T06:22:53.250487Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251064Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1081,"ScoreAtt":20168,"RankDef":1768,"ScoreDef":14327,"RankSup":0,"ScoreSup":0,"RankTotal":1730,"ScoreTotal":34495,"ID":6315553,"Name":"LESTAT SKI","NumVillages":6,"Points":16653,"Rank":973,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6315553","BestRank":973,"BestRankAt":"2023-02-15T06:22:53.250488Z","MostPoints":16653,"MostPointsAt":"2023-02-15T06:22:53.250488Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250488Z","LastActivityAt":"2023-02-15T06:22:53.250488Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251065Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1962,"ScoreAtt":13,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2523,"ScoreTotal":13,"ID":6323735,"Name":"Kaczoland","NumVillages":1,"Points":213,"Rank":2279,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6323735","BestRank":2279,"BestRankAt":"2023-02-15T06:22:53.250489Z","MostPoints":213,"MostPointsAt":"2023-02-15T06:22:53.250489Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250489Z","LastActivityAt":"2023-02-15T06:22:53.250489Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6326215,"Name":"afibatin","NumVillages":1,"Points":58,"Rank":2561,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6326215","BestRank":2561,"BestRankAt":"2023-02-15T06:22:53.250489Z","MostPoints":58,"MostPointsAt":"2023-02-15T06:22:53.250489Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250489Z","LastActivityAt":"2023-02-15T06:22:53.25049Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":879,"ScoreAtt":55768,"RankDef":1788,"ScoreDef":13300,"RankSup":1050,"ScoreSup":2998,"RankTotal":1495,"ScoreTotal":72066,"ID":6326324,"Name":"LubieĆŒny Mietek","NumVillages":1,"Points":26,"Rank":2645,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6326324","BestRank":2645,"BestRankAt":"2023-02-15T06:22:53.25049Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.25049Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.25049Z","LastActivityAt":"2023-02-15T06:22:53.25049Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251068Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2144,"ScoreDef":2043,"RankSup":872,"ScoreSup":14565,"RankTotal":1913,"ScoreTotal":16608,"ID":6330147,"Name":"marcelinor","NumVillages":0,"Points":0,"Rank":2915,"TribeID":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6330147","BestRank":2915,"BestRankAt":"2023-02-15T06:22:53.250491Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250491Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250491Z","LastActivityAt":"2023-02-15T06:22:53.250491Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":694,"ScoreAtt":134942,"RankDef":230,"ScoreDef":1654961,"RankSup":625,"ScoreSup":85342,"RankTotal":424,"ScoreTotal":1875245,"ID":6343784,"Name":"reiter 13","NumVillages":53,"Points":294241,"Rank":359,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6343784","BestRank":359,"BestRankAt":"2023-02-15T06:22:53.250491Z","MostPoints":294241,"MostPointsAt":"2023-02-15T06:22:53.250492Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.250491Z","LastActivityAt":"2023-02-15T06:22:53.250492Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251071Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":367,"ScoreAtt":650787,"RankDef":607,"ScoreDef":373066,"RankSup":234,"ScoreSup":759781,"RankTotal":445,"ScoreTotal":1783634,"ID":6354098,"Name":"Wioska MiaƂa Być Pusta","NumVillages":87,"Points":590675,"Rank":245,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6354098","BestRank":245,"BestRankAt":"2023-02-15T06:22:53.250492Z","MostPoints":590675,"MostPointsAt":"2023-02-15T06:22:53.250492Z","MostVillages":87,"MostVillagesAt":"2023-02-15T06:22:53.250492Z","LastActivityAt":"2023-02-15T06:22:53.250492Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251071Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1717,"ScoreAtt":492,"RankDef":2479,"ScoreDef":8,"RankSup":0,"ScoreSup":0,"RankTotal":2349,"ScoreTotal":500,"ID":6354962,"Name":"filips 19","NumVillages":1,"Points":2259,"Rank":1623,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6354962","BestRank":1623,"BestRankAt":"2023-02-15T06:22:53.250493Z","MostPoints":2259,"MostPointsAt":"2023-02-15T06:22:53.250493Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250493Z","LastActivityAt":"2023-02-15T06:22:53.250493Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251072Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2304,"ScoreDef":262,"RankSup":0,"ScoreSup":0,"RankTotal":2389,"ScoreTotal":262,"ID":6379173,"Name":"pierszak","NumVillages":1,"Points":549,"Rank":2007,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6379173","BestRank":2007,"BestRankAt":"2023-02-15T06:22:53.250493Z","MostPoints":549,"MostPointsAt":"2023-02-15T06:22:53.250493Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250493Z","LastActivityAt":"2023-02-15T06:22:53.250493Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251073Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":131,"ScoreAtt":2319121,"RankDef":176,"ScoreDef":2080869,"RankSup":181,"ScoreSup":1103191,"RankTotal":164,"ScoreTotal":5503181,"ID":6384450,"Name":"ronislaw007","NumVillages":71,"Points":638952,"Rank":222,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6384450","BestRank":222,"BestRankAt":"2023-02-15T06:22:53.250494Z","MostPoints":638952,"MostPointsAt":"2023-02-15T06:22:53.250494Z","MostVillages":71,"MostVillagesAt":"2023-02-15T06:22:53.250494Z","LastActivityAt":"2023-02-15T06:22:53.250494Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251074Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1833,"ScoreAtt":143,"RankDef":835,"ScoreDef":191094,"RankSup":1278,"ScoreSup":58,"RankTotal":1159,"ScoreTotal":191295,"ID":6395848,"Name":"pit71","NumVillages":1,"Points":3436,"Rank":1476,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6395848","BestRank":1476,"BestRankAt":"2023-02-15T06:22:53.250494Z","MostPoints":3436,"MostPointsAt":"2023-02-15T06:22:53.250494Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250494Z","LastActivityAt":"2023-02-15T06:22:53.250495Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1954,"ScoreDef":6297,"RankSup":0,"ScoreSup":0,"RankTotal":2089,"ScoreTotal":6297,"ID":6409472,"Name":"Best Wiedzmin","NumVillages":5,"Points":25482,"Rank":856,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6409472","BestRank":856,"BestRankAt":"2023-02-15T06:22:53.250495Z","MostPoints":25482,"MostPointsAt":"2023-02-15T06:22:53.250495Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250495Z","LastActivityAt":"2023-02-15T06:22:53.250495Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251077Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":736,"ScoreAtt":109794,"RankDef":439,"ScoreDef":646106,"RankSup":798,"ScoreSup":25086,"RankTotal":693,"ScoreTotal":780986,"ID":6414286,"Name":"myszkof1","NumVillages":0,"Points":0,"Rank":2916,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6414286","BestRank":2916,"BestRankAt":"2023-02-15T06:22:53.250495Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250496Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250495Z","LastActivityAt":"2023-02-15T06:22:53.250496Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":858,"ScoreAtt":60218,"RankDef":1507,"ScoreDef":33364,"RankSup":1410,"ScoreSup":1,"RankTotal":1416,"ScoreTotal":93583,"ID":6416213,"Name":"Granit 19","NumVillages":5,"Points":21232,"Rank":898,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6416213","BestRank":898,"BestRankAt":"2023-02-15T06:22:53.250496Z","MostPoints":21232,"MostPointsAt":"2023-02-15T06:22:53.250496Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.250496Z","LastActivityAt":"2023-02-15T06:22:53.250496Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":932,"ScoreAtt":43532,"RankDef":1979,"ScoreDef":5655,"RankSup":732,"ScoreSup":40281,"RankTotal":1438,"ScoreTotal":89468,"ID":6417987,"Name":"majonespzn","NumVillages":27,"Points":191580,"Rank":425,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6417987","BestRank":425,"BestRankAt":"2023-02-15T06:22:53.250496Z","MostPoints":191580,"MostPointsAt":"2023-02-15T06:22:53.250497Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.250497Z","LastActivityAt":"2023-02-15T06:22:53.250497Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25108Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1778,"ScoreAtt":263,"RankDef":2269,"ScoreDef":500,"RankSup":0,"ScoreSup":0,"RankTotal":2325,"ScoreTotal":763,"ID":6423275,"Name":"Dorian888","NumVillages":1,"Points":514,"Rank":2020,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6423275","BestRank":2020,"BestRankAt":"2023-02-15T06:22:53.250497Z","MostPoints":514,"MostPointsAt":"2023-02-15T06:22:53.250497Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250497Z","LastActivityAt":"2023-02-15T06:22:53.250497Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251081Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1884,"ScoreAtt":72,"RankDef":635,"ScoreDef":340624,"RankSup":0,"ScoreSup":0,"RankTotal":971,"ScoreTotal":340696,"ID":6423719,"Name":"Bydlak777","NumVillages":0,"Points":0,"Rank":2917,"TribeID":185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6423719","BestRank":2917,"BestRankAt":"2023-02-15T06:22:53.250498Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.250498Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.250498Z","LastActivityAt":"2023-02-15T06:22:53.250498Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":392,"ScoreAtt":601227,"RankDef":1597,"ScoreDef":25643,"RankSup":659,"ScoreSup":67727,"RankTotal":736,"ScoreTotal":694597,"ID":6425087,"Name":"moniullka987","NumVillages":4,"Points":6985,"Rank":1217,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6425087","BestRank":1217,"BestRankAt":"2023-02-15T06:22:53.250498Z","MostPoints":6985,"MostPointsAt":"2023-02-15T06:22:53.250498Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250498Z","LastActivityAt":"2023-02-15T06:22:53.250498Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251083Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6468217,"Name":"spiki2009","NumVillages":1,"Points":569,"Rank":1995,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6468217","BestRank":1995,"BestRankAt":"2023-02-15T06:22:53.250499Z","MostPoints":569,"MostPointsAt":"2023-02-15T06:22:53.250499Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250499Z","LastActivityAt":"2023-02-15T06:22:53.250499Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":692,"ScoreAtt":136233,"RankDef":1920,"ScoreDef":7310,"RankSup":0,"ScoreSup":0,"RankTotal":1262,"ScoreTotal":143543,"ID":6472706,"Name":"mondo96","NumVillages":6,"Points":25000,"Rank":861,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6472706","BestRank":861,"BestRankAt":"2023-02-15T06:22:53.250499Z","MostPoints":25000,"MostPointsAt":"2023-02-15T06:22:53.250499Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.250499Z","LastActivityAt":"2023-02-15T06:22:53.250499Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6474323,"Name":"sarab","NumVillages":1,"Points":1176,"Rank":1812,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6474323","BestRank":1812,"BestRankAt":"2023-02-15T06:22:53.2505Z","MostPoints":1176,"MostPointsAt":"2023-02-15T06:22:53.2505Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.2505Z","LastActivityAt":"2023-02-15T06:22:53.2505Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6504658,"Name":"ADiKxD","NumVillages":1,"Points":55,"Rank":2564,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6504658","BestRank":2564,"BestRankAt":"2023-02-15T06:22:53.2505Z","MostPoints":55,"MostPointsAt":"2023-02-15T06:22:53.2505Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.2505Z","LastActivityAt":"2023-02-15T06:22:53.250501Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251086Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":239,"ScoreAtt":1206064,"RankDef":648,"ScoreDef":322577,"RankSup":284,"ScoreSup":573858,"RankTotal":393,"ScoreTotal":2102499,"ID":6510480,"Name":"Bytomiak","NumVillages":136,"Points":1034996,"Rank":140,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6510480","BestRank":140,"BestRankAt":"2023-02-15T06:22:53.250501Z","MostPoints":1034996,"MostPointsAt":"2023-02-15T06:22:53.250501Z","MostVillages":136,"MostVillagesAt":"2023-02-15T06:22:53.250501Z","LastActivityAt":"2023-02-15T06:22:53.250501Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251087Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1886,"ScoreAtt":68,"RankDef":2044,"ScoreDef":3935,"RankSup":0,"ScoreSup":0,"RankTotal":2170,"ScoreTotal":4003,"ID":6516085,"Name":"EpSi1","NumVillages":1,"Points":893,"Rank":1889,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6516085","BestRank":1889,"BestRankAt":"2023-02-15T06:22:53.250501Z","MostPoints":893,"MostPointsAt":"2023-02-15T06:22:53.250502Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250501Z","LastActivityAt":"2023-02-15T06:22:53.250502Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1773,"ScoreAtt":278,"RankDef":1742,"ScoreDef":16430,"RankSup":0,"ScoreSup":0,"RankTotal":1910,"ScoreTotal":16708,"ID":6517003,"Name":"...bil...","NumVillages":1,"Points":1064,"Rank":1845,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6517003","BestRank":1845,"BestRankAt":"2023-02-15T06:22:53.250502Z","MostPoints":1064,"MostPointsAt":"2023-02-15T06:22:53.250502Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250502Z","LastActivityAt":"2023-02-15T06:22:53.250502Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":851,"ScoreAtt":63629,"RankDef":1571,"ScoreDef":28217,"RankSup":0,"ScoreSup":0,"RankTotal":1426,"ScoreTotal":91846,"ID":6517826,"Name":"maki5b","NumVillages":8,"Points":26625,"Rank":841,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6517826","BestRank":841,"BestRankAt":"2023-02-15T06:22:53.250502Z","MostPoints":26625,"MostPointsAt":"2023-02-15T06:22:53.250503Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.250503Z","LastActivityAt":"2023-02-15T06:22:53.250503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.25109Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":403,"ScoreAtt":579859,"RankDef":2081,"ScoreDef":3133,"RankSup":611,"ScoreSup":92249,"RankTotal":741,"ScoreTotal":675241,"ID":6520732,"Name":"lukassaw","NumVillages":26,"Points":230964,"Rank":393,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6520732","BestRank":393,"BestRankAt":"2023-02-15T06:22:53.250503Z","MostPoints":230964,"MostPointsAt":"2023-02-15T06:22:53.250503Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.250503Z","LastActivityAt":"2023-02-15T06:22:53.250503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251091Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":283,"ScoreAtt":991090,"RankDef":437,"ScoreDef":647531,"RankSup":823,"ScoreSup":20586,"RankTotal":465,"ScoreTotal":1659207,"ID":6528152,"Name":"blondynek23","NumVillages":45,"Points":306845,"Rank":354,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6528152","BestRank":354,"BestRankAt":"2023-02-15T06:22:53.250504Z","MostPoints":306845,"MostPointsAt":"2023-02-15T06:22:53.250504Z","MostVillages":45,"MostVillagesAt":"2023-02-15T06:22:53.250504Z","LastActivityAt":"2023-02-15T06:22:53.250504Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251092Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1655,"ScoreDef":21803,"RankSup":1216,"ScoreSup":307,"RankTotal":1849,"ScoreTotal":22110,"ID":6541079,"Name":"Pheniks2009","NumVillages":1,"Points":122,"Rank":2440,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6541079","BestRank":2440,"BestRankAt":"2023-02-15T06:22:53.250504Z","MostPoints":122,"MostPointsAt":"2023-02-15T06:22:53.250504Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250504Z","LastActivityAt":"2023-02-15T06:22:53.250504Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6545206,"Name":"xxxbestiaxxx","NumVillages":1,"Points":97,"Rank":2488,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6545206","BestRank":2488,"BestRankAt":"2023-02-15T06:22:53.250505Z","MostPoints":97,"MostPointsAt":"2023-02-15T06:22:53.250505Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250505Z","LastActivityAt":"2023-02-15T06:22:53.250505Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251094Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1089,"ScoreAtt":19559,"RankDef":1697,"ScoreDef":19017,"RankSup":0,"ScoreSup":0,"RankTotal":1699,"ScoreTotal":38576,"ID":6554011,"Name":"mateusz16180","NumVillages":1,"Points":101,"Rank":2481,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6554011","BestRank":2481,"BestRankAt":"2023-02-15T06:22:53.250505Z","MostPoints":101,"MostPointsAt":"2023-02-15T06:22:53.250505Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250505Z","LastActivityAt":"2023-02-15T06:22:53.250505Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2342,"ScoreDef":112,"RankSup":0,"ScoreSup":0,"RankTotal":2436,"ScoreTotal":112,"ID":6557487,"Name":"Fezzoo","NumVillages":1,"Points":26,"Rank":2646,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6557487","BestRank":2646,"BestRankAt":"2023-02-15T06:22:53.250506Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250506Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250506Z","LastActivityAt":"2023-02-15T06:22:53.250506Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1337,"ScoreAtt":5554,"RankDef":1796,"ScoreDef":12567,"RankSup":0,"ScoreSup":0,"RankTotal":1890,"ScoreTotal":18121,"ID":6557824,"Name":"nsplus","NumVillages":1,"Points":191,"Rank":2319,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6557824","BestRank":2319,"BestRankAt":"2023-02-15T06:22:53.250506Z","MostPoints":191,"MostPointsAt":"2023-02-15T06:22:53.250506Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250506Z","LastActivityAt":"2023-02-15T06:22:53.250507Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251097Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6577211,"Name":"TeroXer s","NumVillages":1,"Points":26,"Rank":2647,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6577211","BestRank":2647,"BestRankAt":"2023-02-15T06:22:53.250507Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250507Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250507Z","LastActivityAt":"2023-02-15T06:22:53.250507Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251098Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1928,"ScoreAtt":33,"RankDef":1784,"ScoreDef":13471,"RankSup":0,"ScoreSup":0,"RankTotal":1946,"ScoreTotal":13504,"ID":6590149,"Name":"Apollo8","NumVillages":1,"Points":403,"Rank":2085,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6590149","BestRank":2085,"BestRankAt":"2023-02-15T06:22:53.250507Z","MostPoints":403,"MostPointsAt":"2023-02-15T06:22:53.250508Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250507Z","LastActivityAt":"2023-02-15T06:22:53.250508Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":689,"ScoreAtt":138883,"RankDef":1200,"ScoreDef":72792,"RankSup":494,"ScoreSup":176773,"RankTotal":928,"ScoreTotal":388448,"ID":6606543,"Name":"borek102","NumVillages":1,"Points":5458,"Rank":1303,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6606543","BestRank":1303,"BestRankAt":"2023-02-15T06:22:53.250508Z","MostPoints":5458,"MostPointsAt":"2023-02-15T06:22:53.250508Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250508Z","LastActivityAt":"2023-02-15T06:22:53.250508Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2511Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1971,"ScoreAtt":9,"RankDef":1644,"ScoreDef":22757,"RankSup":0,"ScoreSup":0,"RankTotal":1840,"ScoreTotal":22766,"ID":6617912,"Name":"leolen","NumVillages":1,"Points":2509,"Rank":1586,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6617912","BestRank":1586,"BestRankAt":"2023-02-15T06:22:53.250508Z","MostPoints":2509,"MostPointsAt":"2023-02-15T06:22:53.250509Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250509Z","LastActivityAt":"2023-02-15T06:22:53.250509Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251102Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":861,"ScoreAtt":59939,"RankDef":445,"ScoreDef":633567,"RankSup":1037,"ScoreSup":3360,"RankTotal":733,"ScoreTotal":696866,"ID":6618608,"Name":"pawƂapiotra","NumVillages":4,"Points":7193,"Rank":1207,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6618608","BestRank":1207,"BestRankAt":"2023-02-15T06:22:53.250509Z","MostPoints":7193,"MostPointsAt":"2023-02-15T06:22:53.250509Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.250509Z","LastActivityAt":"2023-02-15T06:22:53.250509Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251103Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":583,"ScoreAtt":234479,"RankDef":299,"ScoreDef":1176858,"RankSup":410,"ScoreSup":297777,"RankTotal":459,"ScoreTotal":1709114,"ID":6625437,"Name":"GRIGOR-2007","NumVillages":19,"Points":126174,"Rank":498,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6625437","BestRank":498,"BestRankAt":"2023-02-15T06:22:53.25051Z","MostPoints":126174,"MostPointsAt":"2023-02-15T06:22:53.25051Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.25051Z","LastActivityAt":"2023-02-15T06:22:53.25051Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251103Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":489,"ScoreDef":537399,"RankSup":0,"ScoreSup":0,"RankTotal":815,"ScoreTotal":537399,"ID":6625716,"Name":"zollmeister","NumVillages":0,"Points":0,"Rank":2918,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6625716","BestRank":2918,"BestRankAt":"2023-02-15T06:22:53.25051Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.25051Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.25051Z","LastActivityAt":"2023-02-15T06:22:53.25051Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251105Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6643002,"Name":"HAPPYxxx","NumVillages":1,"Points":61,"Rank":2557,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6643002","BestRank":2557,"BestRankAt":"2023-02-15T06:22:53.250511Z","MostPoints":61,"MostPointsAt":"2023-02-15T06:22:53.250511Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250511Z","LastActivityAt":"2023-02-15T06:22:53.250511Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251106Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":643,"ScoreDef":330551,"RankSup":1045,"ScoreSup":3079,"RankTotal":975,"ScoreTotal":333630,"ID":6647535,"Name":"Qtafon","NumVillages":1,"Points":1007,"Rank":1862,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6647535","BestRank":1862,"BestRankAt":"2023-02-15T06:22:53.250511Z","MostPoints":1007,"MostPointsAt":"2023-02-15T06:22:53.250511Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250511Z","LastActivityAt":"2023-02-15T06:22:53.250511Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251107Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2428,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2522,"ScoreTotal":13,"ID":6647642,"Name":"ajnoƂ","NumVillages":1,"Points":3035,"Rank":1524,"TribeID":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6647642","BestRank":1524,"BestRankAt":"2023-02-15T06:22:53.250512Z","MostPoints":3035,"MostPointsAt":"2023-02-15T06:22:53.250512Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250512Z","LastActivityAt":"2023-02-15T06:22:53.250512Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251108Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1920,"ScoreAtt":37,"RankDef":2389,"ScoreDef":26,"RankSup":0,"ScoreSup":0,"RankTotal":2455,"ScoreTotal":63,"ID":6651072,"Name":"Tomek 20011989","NumVillages":2,"Points":4213,"Rank":1393,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6651072","BestRank":1393,"BestRankAt":"2023-02-15T06:22:53.250512Z","MostPoints":4213,"MostPointsAt":"2023-02-15T06:22:53.250512Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.250512Z","LastActivityAt":"2023-02-15T06:22:53.250513Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251109Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1032,"ScoreAtt":26508,"RankDef":569,"ScoreDef":407287,"RankSup":0,"ScoreSup":0,"RankTotal":882,"ScoreTotal":433795,"ID":6654098,"Name":"P-406","NumVillages":1,"Points":1360,"Rank":1776,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6654098","BestRank":1776,"BestRankAt":"2023-02-15T06:22:53.250513Z","MostPoints":1360,"MostPointsAt":"2023-02-15T06:22:53.250513Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250513Z","LastActivityAt":"2023-02-15T06:22:53.250513Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251111Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1440,"ScoreAtt":3286,"RankDef":2170,"ScoreDef":1708,"RankSup":0,"ScoreSup":0,"RankTotal":2137,"ScoreTotal":4994,"ID":6658016,"Name":"DoRoCiA95","NumVillages":1,"Points":1887,"Rank":1685,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6658016","BestRank":1685,"BestRankAt":"2023-02-15T06:22:53.250513Z","MostPoints":1887,"MostPointsAt":"2023-02-15T06:22:53.250514Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250514Z","LastActivityAt":"2023-02-15T06:22:53.250514Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251111Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6670484,"Name":"Moddark","NumVillages":1,"Points":26,"Rank":2648,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6670484","BestRank":2648,"BestRankAt":"2023-02-15T06:22:53.250514Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.250514Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.250514Z","LastActivityAt":"2023-02-15T06:22:53.250514Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.251112Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2323,"ScoreDef":200,"RankSup":1029,"ScoreSup":3688,"RankTotal":2175,"ScoreTotal":3888,"ID":6674092,"Name":"wladyslaw011","NumVillages":1,"Points":2104,"Rank":1642,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6674092","BestRank":1642,"BestRankAt":"2023-02-15T06:22:53.305146Z","MostPoints":2104,"MostPointsAt":"2023-02-15T06:22:53.305146Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305146Z","LastActivityAt":"2023-02-15T06:22:53.305146Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2199,"ScoreDef":1209,"RankSup":0,"ScoreSup":0,"RankTotal":2300,"ScoreTotal":1209,"ID":6677893,"Name":"superpuszka","NumVillages":1,"Points":276,"Rank":2199,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6677893","BestRank":2199,"BestRankAt":"2023-02-15T06:22:53.305147Z","MostPoints":276,"MostPointsAt":"2023-02-15T06:22:53.305147Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305147Z","LastActivityAt":"2023-02-15T06:22:53.305147Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2465,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2533,"ScoreTotal":10,"ID":6692351,"Name":"nicoleesme","NumVillages":1,"Points":1381,"Rank":1770,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6692351","BestRank":1770,"BestRankAt":"2023-02-15T06:22:53.305147Z","MostPoints":1381,"MostPointsAt":"2023-02-15T06:22:53.305148Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305148Z","LastActivityAt":"2023-02-15T06:22:53.305148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1442,"ScoreDef":38878,"RankSup":0,"ScoreSup":0,"RankTotal":1692,"ScoreTotal":38878,"ID":6704738,"Name":"Miko6","NumVillages":1,"Points":307,"Rank":2169,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6704738","BestRank":2169,"BestRankAt":"2023-02-15T06:22:53.305148Z","MostPoints":307,"MostPointsAt":"2023-02-15T06:22:53.305148Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305148Z","LastActivityAt":"2023-02-15T06:22:53.305148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1150,"ScoreDef":84324,"RankSup":0,"ScoreSup":0,"RankTotal":1452,"ScoreTotal":84324,"ID":6736666,"Name":"szopen966","NumVillages":0,"Points":0,"Rank":2919,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6736666","BestRank":2919,"BestRankAt":"2023-02-15T06:22:53.305149Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305149Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305149Z","LastActivityAt":"2023-02-15T06:22:53.305149Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6766467,"Name":"slawekx28","NumVillages":1,"Points":255,"Rank":2217,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6766467","BestRank":2217,"BestRankAt":"2023-02-15T06:22:53.305149Z","MostPoints":255,"MostPointsAt":"2023-02-15T06:22:53.305149Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305149Z","LastActivityAt":"2023-02-15T06:22:53.305149Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":956,"ScoreAtt":38076,"RankDef":866,"ScoreDef":180771,"RankSup":0,"ScoreSup":0,"RankTotal":1110,"ScoreTotal":218847,"ID":6786449,"Name":"=Wilku=","NumVillages":6,"Points":53393,"Rank":671,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6786449","BestRank":671,"BestRankAt":"2023-02-15T06:22:53.30515Z","MostPoints":53393,"MostPointsAt":"2023-02-15T06:22:53.305151Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.30515Z","LastActivityAt":"2023-02-15T06:22:53.305151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1693,"ScoreAtt":636,"RankDef":1276,"ScoreDef":59956,"RankSup":1283,"ScoreSup":46,"RankTotal":1551,"ScoreTotal":60638,"ID":6795280,"Name":"SUPER KRÓL PAWEƁ","NumVillages":1,"Points":3945,"Rank":1416,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6795280","BestRank":1416,"BestRankAt":"2023-02-15T06:22:53.305151Z","MostPoints":3945,"MostPointsAt":"2023-02-15T06:22:53.305151Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305151Z","LastActivityAt":"2023-02-15T06:22:53.305151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":401,"ScoreAtt":582161,"RankDef":1719,"ScoreDef":17511,"RankSup":20,"ScoreSup":5382217,"RankTotal":152,"ScoreTotal":5981889,"ID":6818593,"Name":"CzarnamambaPL","NumVillages":111,"Points":843784,"Rank":172,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6818593","BestRank":172,"BestRankAt":"2023-02-15T06:22:53.305151Z","MostPoints":843784,"MostPointsAt":"2023-02-15T06:22:53.305152Z","MostVillages":111,"MostVillagesAt":"2023-02-15T06:22:53.305152Z","LastActivityAt":"2023-02-15T06:22:53.305152Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1934,"ScoreAtt":30,"RankDef":2019,"ScoreDef":4516,"RankSup":0,"ScoreSup":0,"RankTotal":2151,"ScoreTotal":4546,"ID":6821136,"Name":"3dychy","NumVillages":2,"Points":7537,"Rank":1183,"TribeID":1779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6821136","BestRank":1183,"BestRankAt":"2023-02-15T06:22:53.305153Z","MostPoints":7537,"MostPointsAt":"2023-02-15T06:22:53.305153Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305153Z","LastActivityAt":"2023-02-15T06:22:53.305153Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1957,"ScoreDef":6166,"RankSup":0,"ScoreSup":0,"RankTotal":2092,"ScoreTotal":6166,"ID":6822085,"Name":"xmox","NumVillages":1,"Points":626,"Rank":1981,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6822085","BestRank":1981,"BestRankAt":"2023-02-15T06:22:53.305153Z","MostPoints":626,"MostPointsAt":"2023-02-15T06:22:53.305153Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305153Z","LastActivityAt":"2023-02-15T06:22:53.305154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":279,"ScoreAtt":996704,"RankDef":503,"ScoreDef":512527,"RankSup":526,"ScoreSup":146780,"RankTotal":466,"ScoreTotal":1656011,"ID":6822957,"Name":"LegatusXI","NumVillages":59,"Points":520985,"Rank":261,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6822957","BestRank":261,"BestRankAt":"2023-02-15T06:22:53.305154Z","MostPoints":520985,"MostPointsAt":"2023-02-15T06:22:53.305154Z","MostVillages":59,"MostVillagesAt":"2023-02-15T06:22:53.305154Z","LastActivityAt":"2023-02-15T06:22:53.305154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1964,"ScoreAtt":11,"RankDef":1666,"ScoreDef":21050,"RankSup":0,"ScoreSup":0,"RankTotal":1857,"ScoreTotal":21061,"ID":6837266,"Name":"swenty1968","NumVillages":1,"Points":4996,"Rank":1327,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6837266","BestRank":1327,"BestRankAt":"2023-02-15T06:22:53.305154Z","MostPoints":4996,"MostPointsAt":"2023-02-15T06:22:53.305155Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305154Z","LastActivityAt":"2023-02-15T06:22:53.305155Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6851059,"Name":"mustanq123","NumVillages":1,"Points":86,"Rank":2506,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6851059","BestRank":2506,"BestRankAt":"2023-02-15T06:22:53.305155Z","MostPoints":86,"MostPointsAt":"2023-02-15T06:22:53.305155Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305155Z","LastActivityAt":"2023-02-15T06:22:53.305155Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":216,"ScoreAtt":1421140,"RankDef":949,"ScoreDef":143492,"RankSup":46,"ScoreSup":3529700,"RankTotal":181,"ScoreTotal":5094332,"ID":6853693,"Name":"lukiuki","NumVillages":87,"Points":667310,"Rank":214,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6853693","BestRank":214,"BestRankAt":"2023-02-15T06:22:53.305155Z","MostPoints":667310,"MostPointsAt":"2023-02-15T06:22:53.305156Z","MostVillages":87,"MostVillagesAt":"2023-02-15T06:22:53.305156Z","LastActivityAt":"2023-02-15T06:22:53.305156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1108,"ScoreAtt":17494,"RankDef":2072,"ScoreDef":3366,"RankSup":867,"ScoreSup":15140,"RankTotal":1720,"ScoreTotal":36000,"ID":6857973,"Name":"popki 2","NumVillages":11,"Points":31666,"Rank":796,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6857973","BestRank":796,"BestRankAt":"2023-02-15T06:22:53.305156Z","MostPoints":31666,"MostPointsAt":"2023-02-15T06:22:53.305156Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.305156Z","LastActivityAt":"2023-02-15T06:22:53.305156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":713,"ScoreAtt":122043,"RankDef":1650,"ScoreDef":22103,"RankSup":1039,"ScoreSup":3351,"RankTotal":1255,"ScoreTotal":147497,"ID":6870350,"Name":"13kris","NumVillages":19,"Points":143466,"Rank":474,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6870350","BestRank":474,"BestRankAt":"2023-02-15T06:22:53.305157Z","MostPoints":143466,"MostPointsAt":"2023-02-15T06:22:53.305157Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.305157Z","LastActivityAt":"2023-02-15T06:22:53.305158Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1260,"ScoreAtt":7684,"RankDef":746,"ScoreDef":243973,"RankSup":702,"ScoreSup":48782,"RankTotal":1004,"ScoreTotal":300439,"ID":6882236,"Name":"Rosawow","NumVillages":2,"Points":11779,"Rank":1045,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6882236","BestRank":1045,"BestRankAt":"2023-02-15T06:22:53.305158Z","MostPoints":11779,"MostPointsAt":"2023-02-15T06:22:53.305158Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305158Z","LastActivityAt":"2023-02-15T06:22:53.305158Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1618,"ScoreAtt":1127,"RankDef":1221,"ScoreDef":68631,"RankSup":0,"ScoreSup":0,"RankTotal":1509,"ScoreTotal":69758,"ID":6884492,"Name":"Janusz IV","NumVillages":7,"Points":50279,"Rank":689,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6884492","BestRank":689,"BestRankAt":"2023-02-15T06:22:53.305158Z","MostPoints":50279,"MostPointsAt":"2023-02-15T06:22:53.305159Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305158Z","LastActivityAt":"2023-02-15T06:22:53.305159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1640,"ScoreAtt":920,"RankDef":1282,"ScoreDef":59545,"RankSup":0,"ScoreSup":0,"RankTotal":1552,"ScoreTotal":60465,"ID":6892517,"Name":"D.M.K.","NumVillages":4,"Points":9782,"Rank":1089,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6892517","BestRank":1089,"BestRankAt":"2023-02-15T06:22:53.305159Z","MostPoints":9782,"MostPointsAt":"2023-02-15T06:22:53.305159Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305159Z","LastActivityAt":"2023-02-15T06:22:53.305159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":66,"ScoreAtt":4282751,"RankDef":6,"ScoreDef":32245198,"RankSup":34,"ScoreSup":4389969,"RankTotal":10,"ScoreTotal":40917918,"ID":6910361,"Name":"Kuzyn Kamil","NumVillages":36,"Points":142814,"Rank":476,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6910361","BestRank":476,"BestRankAt":"2023-02-15T06:22:53.305159Z","MostPoints":142814,"MostPointsAt":"2023-02-15T06:22:53.30516Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.30516Z","LastActivityAt":"2023-02-15T06:22:53.30516Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":84,"ScoreAtt":3771418,"RankDef":617,"ScoreDef":360466,"RankSup":83,"ScoreSup":2475364,"RankTotal":135,"ScoreTotal":6607248,"ID":6920960,"Name":"grzesiek9521","NumVillages":277,"Points":2386881,"Rank":31,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6920960","BestRank":31,"BestRankAt":"2023-02-15T06:22:53.30516Z","MostPoints":2386881,"MostPointsAt":"2023-02-15T06:22:53.30516Z","MostVillages":277,"MostVillagesAt":"2023-02-15T06:22:53.30516Z","LastActivityAt":"2023-02-15T06:22:53.30516Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":789,"ScoreAtt":85795,"RankDef":1978,"ScoreDef":5690,"RankSup":818,"ScoreSup":21922,"RankTotal":1347,"ScoreTotal":113407,"ID":6921135,"Name":"aksamitny71","NumVillages":16,"Points":76573,"Rank":596,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6921135","BestRank":596,"BestRankAt":"2023-02-15T06:22:53.305161Z","MostPoints":76573,"MostPointsAt":"2023-02-15T06:22:53.305161Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.305161Z","LastActivityAt":"2023-02-15T06:22:53.305161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":580,"ScoreAtt":239001,"RankDef":184,"ScoreDef":2042173,"RankSup":347,"ScoreSup":413869,"RankTotal":324,"ScoreTotal":2695043,"ID":6923061,"Name":"liberator1992","NumVillages":7,"Points":24354,"Rank":866,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6923061","BestRank":866,"BestRankAt":"2023-02-15T06:22:53.305161Z","MostPoints":24354,"MostPointsAt":"2023-02-15T06:22:53.305161Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305161Z","LastActivityAt":"2023-02-15T06:22:53.305161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1205,"ScoreAtt":10510,"RankDef":810,"ScoreDef":204817,"RankSup":1244,"ScoreSup":159,"RankTotal":1116,"ScoreTotal":215486,"ID":6925574,"Name":"zyrer","NumVillages":1,"Points":1857,"Rank":1692,"TribeID":1416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6925574","BestRank":1692,"BestRankAt":"2023-02-15T06:22:53.305162Z","MostPoints":1857,"MostPointsAt":"2023-02-15T06:22:53.305162Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305162Z","LastActivityAt":"2023-02-15T06:22:53.305162Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1595,"ScoreAtt":1328,"RankDef":1161,"ScoreDef":80879,"RankSup":929,"ScoreSup":9554,"RankTotal":1427,"ScoreTotal":91761,"ID":6927748,"Name":"MIREK2222222","NumVillages":1,"Points":3072,"Rank":1520,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6927748","BestRank":1520,"BestRankAt":"2023-02-15T06:22:53.305162Z","MostPoints":3072,"MostPointsAt":"2023-02-15T06:22:53.305162Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305162Z","LastActivityAt":"2023-02-15T06:22:53.305162Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":393,"ScoreAtt":599799,"RankDef":1940,"ScoreDef":6697,"RankSup":456,"ScoreSup":218643,"RankTotal":678,"ScoreTotal":825139,"ID":6929240,"Name":"ruch135","NumVillages":46,"Points":345168,"Rank":330,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6929240","BestRank":330,"BestRankAt":"2023-02-15T06:22:53.305164Z","MostPoints":345168,"MostPointsAt":"2023-02-15T06:22:53.305164Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.305164Z","LastActivityAt":"2023-02-15T06:22:53.305164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":40,"ScoreAtt":5755476,"RankDef":96,"ScoreDef":3632667,"RankSup":14,"ScoreSup":6481686,"RankTotal":40,"ScoreTotal":15869829,"ID":6936607,"Name":".achim.","NumVillages":433,"Points":3855294,"Rank":10,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6936607","BestRank":10,"BestRankAt":"2023-02-15T06:22:53.305164Z","MostPoints":3855294,"MostPointsAt":"2023-02-15T06:22:53.305164Z","MostVillages":433,"MostVillagesAt":"2023-02-15T06:22:53.305164Z","LastActivityAt":"2023-02-15T06:22:53.305164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":153,"ScoreAtt":2028867,"RankDef":137,"ScoreDef":2822013,"RankSup":96,"ScoreSup":2260828,"RankTotal":121,"ScoreTotal":7111708,"ID":6948793,"Name":"Kuzyn Bartosz","NumVillages":90,"Points":787673,"Rank":182,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6948793","BestRank":182,"BestRankAt":"2023-02-15T06:22:53.305165Z","MostPoints":787673,"MostPointsAt":"2023-02-15T06:22:53.305165Z","MostVillages":90,"MostVillagesAt":"2023-02-15T06:22:53.305165Z","LastActivityAt":"2023-02-15T06:22:53.305165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1617,"ScoreAtt":1130,"RankDef":1806,"ScoreDef":12094,"RankSup":0,"ScoreSup":0,"RankTotal":1951,"ScoreTotal":13224,"ID":6955809,"Name":"Hank Evans","NumVillages":1,"Points":4982,"Rank":1330,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6955809","BestRank":1330,"BestRankAt":"2023-02-15T06:22:53.305165Z","MostPoints":4982,"MostPointsAt":"2023-02-15T06:22:53.305165Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305165Z","LastActivityAt":"2023-02-15T06:22:53.305165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1207,"ScoreAtt":10361,"RankDef":1647,"ScoreDef":22498,"RankSup":1322,"ScoreSup":15,"RankTotal":1748,"ScoreTotal":32874,"ID":6956104,"Name":"marcopolo1324","NumVillages":14,"Points":69800,"Rank":615,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6956104","BestRank":615,"BestRankAt":"2023-02-15T06:22:53.305166Z","MostPoints":69800,"MostPointsAt":"2023-02-15T06:22:53.305166Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.305166Z","LastActivityAt":"2023-02-15T06:22:53.305166Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2079,"ScoreDef":3206,"RankSup":0,"ScoreSup":0,"RankTotal":2199,"ScoreTotal":3206,"ID":6968280,"Name":"bartek696","NumVillages":1,"Points":26,"Rank":2649,"TribeID":1707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6968280","BestRank":2649,"BestRankAt":"2023-02-15T06:22:53.305166Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305166Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305166Z","LastActivityAt":"2023-02-15T06:22:53.305167Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":568,"ScoreAtt":251988,"RankDef":311,"ScoreDef":1094040,"RankSup":642,"ScoreSup":75862,"RankTotal":510,"ScoreTotal":1421890,"ID":6986891,"Name":"pasy18","NumVillages":1,"Points":1583,"Rank":1736,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6986891","BestRank":1736,"BestRankAt":"2023-02-15T06:22:53.305167Z","MostPoints":1583,"MostPointsAt":"2023-02-15T06:22:53.305167Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305167Z","LastActivityAt":"2023-02-15T06:22:53.305167Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2334,"ScoreDef":149,"RankSup":0,"ScoreSup":0,"RankTotal":2419,"ScoreTotal":149,"ID":6995252,"Name":"krycha9867","NumVillages":1,"Points":278,"Rank":2195,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6995252","BestRank":2195,"BestRankAt":"2023-02-15T06:22:53.305167Z","MostPoints":278,"MostPointsAt":"2023-02-15T06:22:53.305168Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305167Z","LastActivityAt":"2023-02-15T06:22:53.305168Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1797,"ScoreAtt":224,"RankDef":1368,"ScoreDef":48658,"RankSup":1263,"ScoreSup":90,"RankTotal":1621,"ScoreTotal":48972,"ID":7007969,"Name":"1edc","NumVillages":1,"Points":26,"Rank":2650,"TribeID":1317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7007969","BestRank":2650,"BestRankAt":"2023-02-15T06:22:53.305168Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305168Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305168Z","LastActivityAt":"2023-02-15T06:22:53.305168Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":671,"ScoreAtt":145695,"RankDef":420,"ScoreDef":696389,"RankSup":887,"ScoreSup":13605,"RankTotal":668,"ScoreTotal":855689,"ID":7012651,"Name":"KrĂłlowo ZƂota","NumVillages":7,"Points":19923,"Rank":915,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7012651","BestRank":915,"BestRankAt":"2023-02-15T06:22:53.305168Z","MostPoints":19923,"MostPointsAt":"2023-02-15T06:22:53.305169Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305169Z","LastActivityAt":"2023-02-15T06:22:53.305169Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":514,"ScoreAtt":330576,"RankDef":667,"ScoreDef":298876,"RankSup":409,"ScoreSup":299790,"RankTotal":646,"ScoreTotal":929242,"ID":7013660,"Name":"jjaare","NumVillages":1,"Points":802,"Rank":1915,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7013660","BestRank":1915,"BestRankAt":"2023-02-15T06:22:53.305169Z","MostPoints":802,"MostPointsAt":"2023-02-15T06:22:53.305169Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305169Z","LastActivityAt":"2023-02-15T06:22:53.305169Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":952,"ScoreAtt":38932,"RankDef":2309,"ScoreDef":244,"RankSup":0,"ScoreSup":0,"RankTotal":1687,"ScoreTotal":39176,"ID":7023110,"Name":"vanromex76","NumVillages":1,"Points":1326,"Rank":1780,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7023110","BestRank":1780,"BestRankAt":"2023-02-15T06:22:53.30517Z","MostPoints":1326,"MostPointsAt":"2023-02-15T06:22:53.30517Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30517Z","LastActivityAt":"2023-02-15T06:22:53.30517Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7024597,"Name":"artur1488","NumVillages":1,"Points":764,"Rank":1932,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7024597","BestRank":1932,"BestRankAt":"2023-02-15T06:22:53.30517Z","MostPoints":764,"MostPointsAt":"2023-02-15T06:22:53.30517Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30517Z","LastActivityAt":"2023-02-15T06:22:53.30517Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":464,"ScoreAtt":424778,"RankDef":1301,"ScoreDef":57660,"RankSup":664,"ScoreSup":63898,"RankTotal":804,"ScoreTotal":546336,"ID":7038651,"Name":"Yoh Asakura","NumVillages":53,"Points":358536,"Rank":319,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7038651","BestRank":319,"BestRankAt":"2023-02-15T06:22:53.305171Z","MostPoints":358536,"MostPointsAt":"2023-02-15T06:22:53.305171Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.305171Z","LastActivityAt":"2023-02-15T06:22:53.305171Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":754,"ScoreAtt":98953,"RankDef":1844,"ScoreDef":10266,"RankSup":673,"ScoreSup":59814,"RankTotal":1214,"ScoreTotal":169033,"ID":7047342,"Name":"Rok Szczura","NumVillages":106,"Points":1107684,"Rank":123,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7047342","BestRank":123,"BestRankAt":"2023-02-15T06:22:53.305171Z","MostPoints":1107684,"MostPointsAt":"2023-02-15T06:22:53.305171Z","MostVillages":106,"MostVillagesAt":"2023-02-15T06:22:53.305171Z","LastActivityAt":"2023-02-15T06:22:53.305171Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":925,"ScoreAtt":45230,"RankDef":1509,"ScoreDef":33045,"RankSup":0,"ScoreSup":0,"RankTotal":1475,"ScoreTotal":78275,"ID":7064954,"Name":"shaggy909","NumVillages":8,"Points":32971,"Rank":787,"TribeID":1790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7064954","BestRank":787,"BestRankAt":"2023-02-15T06:22:53.305172Z","MostPoints":32971,"MostPointsAt":"2023-02-15T06:22:53.305172Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.305172Z","LastActivityAt":"2023-02-15T06:22:53.305172Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2261,"ScoreDef":544,"RankSup":0,"ScoreSup":0,"RankTotal":2343,"ScoreTotal":544,"ID":7067846,"Name":"oisaj-org","NumVillages":1,"Points":26,"Rank":2651,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7067846","BestRank":2651,"BestRankAt":"2023-02-15T06:22:53.305172Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305172Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305172Z","LastActivityAt":"2023-02-15T06:22:53.305173Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1552,"ScoreAtt":1819,"RankDef":668,"ScoreDef":298332,"RankSup":1321,"ScoreSup":15,"RankTotal":1005,"ScoreTotal":300166,"ID":7069895,"Name":"orko3","NumVillages":1,"Points":167,"Rank":2358,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7069895","BestRank":2358,"BestRankAt":"2023-02-15T06:22:53.305173Z","MostPoints":167,"MostPointsAt":"2023-02-15T06:22:53.305173Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305173Z","LastActivityAt":"2023-02-15T06:22:53.305173Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1393,"ScoreAtt":4273,"RankDef":2422,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2160,"ScoreTotal":4286,"ID":7083877,"Name":"jumperr88","NumVillages":1,"Points":1999,"Rank":1666,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7083877","BestRank":1666,"BestRankAt":"2023-02-15T06:22:53.305173Z","MostPoints":1999,"MostPointsAt":"2023-02-15T06:22:53.305174Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305173Z","LastActivityAt":"2023-02-15T06:22:53.305174Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":130,"ScoreAtt":2323922,"RankDef":1733,"ScoreDef":16800,"RankSup":914,"ScoreSup":10480,"RankTotal":362,"ScoreTotal":2351202,"ID":7085502,"Name":"Kuman333","NumVillages":125,"Points":980289,"Rank":149,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7085502","BestRank":149,"BestRankAt":"2023-02-15T06:22:53.305174Z","MostPoints":980289,"MostPointsAt":"2023-02-15T06:22:53.305174Z","MostVillages":125,"MostVillagesAt":"2023-02-15T06:22:53.305174Z","LastActivityAt":"2023-02-15T06:22:53.305174Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":175,"ScoreAtt":1817646,"RankDef":85,"ScoreDef":4052425,"RankSup":204,"ScoreSup":900365,"RankTotal":130,"ScoreTotal":6770436,"ID":7085510,"Name":"magnats","NumVillages":90,"Points":601563,"Rank":239,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7085510","BestRank":239,"BestRankAt":"2023-02-15T06:22:53.305174Z","MostPoints":601563,"MostPointsAt":"2023-02-15T06:22:53.305175Z","MostVillages":90,"MostVillagesAt":"2023-02-15T06:22:53.305175Z","LastActivityAt":"2023-02-15T06:22:53.305175Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":76,"ScoreAtt":4074636,"RankDef":380,"ScoreDef":794965,"RankSup":565,"ScoreSup":121767,"RankTotal":187,"ScoreTotal":4991368,"ID":7092442,"Name":"Sir Valense2","NumVillages":117,"Points":1116008,"Rank":121,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7092442","BestRank":121,"BestRankAt":"2023-02-15T06:22:53.305175Z","MostPoints":1116008,"MostPointsAt":"2023-02-15T06:22:53.305175Z","MostVillages":117,"MostVillagesAt":"2023-02-15T06:22:53.305175Z","LastActivityAt":"2023-02-15T06:22:53.305175Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7096208,"Name":"gis1969b","NumVillages":1,"Points":26,"Rank":2652,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7096208","BestRank":2652,"BestRankAt":"2023-02-15T06:22:53.305176Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305176Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305176Z","LastActivityAt":"2023-02-15T06:22:53.305176Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":735,"ScoreAtt":109938,"RankDef":1216,"ScoreDef":69894,"RankSup":0,"ScoreSup":0,"RankTotal":1189,"ScoreTotal":179832,"ID":7097727,"Name":"spiderandsobol","NumVillages":15,"Points":88622,"Rank":565,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7097727","BestRank":565,"BestRankAt":"2023-02-15T06:22:53.305176Z","MostPoints":88622,"MostPointsAt":"2023-02-15T06:22:53.305176Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.305176Z","LastActivityAt":"2023-02-15T06:22:53.305176Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":624,"ScoreAtt":186439,"RankDef":309,"ScoreDef":1101037,"RankSup":618,"ScoreSup":89567,"RankTotal":521,"ScoreTotal":1377043,"ID":7098955,"Name":"Dragonus80","NumVillages":7,"Points":45831,"Rank":711,"TribeID":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7098955","BestRank":711,"BestRankAt":"2023-02-15T06:22:53.305178Z","MostPoints":45831,"MostPointsAt":"2023-02-15T06:22:53.305178Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305178Z","LastActivityAt":"2023-02-15T06:22:53.305179Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7114815,"Name":"neo328","NumVillages":1,"Points":158,"Rank":2367,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7114815","BestRank":2367,"BestRankAt":"2023-02-15T06:22:53.305179Z","MostPoints":158,"MostPointsAt":"2023-02-15T06:22:53.305179Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305179Z","LastActivityAt":"2023-02-15T06:22:53.305179Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":707,"ScoreAtt":124759,"RankDef":2119,"ScoreDef":2385,"RankSup":749,"ScoreSup":36839,"RankTotal":1223,"ScoreTotal":163983,"ID":7125212,"Name":"0xadam","NumVillages":28,"Points":237607,"Rank":388,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7125212","BestRank":388,"BestRankAt":"2023-02-15T06:22:53.30518Z","MostPoints":237607,"MostPointsAt":"2023-02-15T06:22:53.30518Z","MostVillages":28,"MostVillagesAt":"2023-02-15T06:22:53.30518Z","LastActivityAt":"2023-02-15T06:22:53.30518Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1446,"ScoreAtt":3245,"RankDef":1102,"ScoreDef":93894,"RankSup":0,"ScoreSup":0,"RankTotal":1402,"ScoreTotal":97139,"ID":7127455,"Name":"rychor","NumVillages":9,"Points":62392,"Rank":644,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7127455","BestRank":644,"BestRankAt":"2023-02-15T06:22:53.30518Z","MostPoints":62392,"MostPointsAt":"2023-02-15T06:22:53.305181Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.305181Z","LastActivityAt":"2023-02-15T06:22:53.305181Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1938,"ScoreDef":6705,"RankSup":0,"ScoreSup":0,"RankTotal":2077,"ScoreTotal":6705,"ID":7135037,"Name":"H Cezar","NumVillages":1,"Points":3701,"Rank":1439,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7135037","BestRank":1439,"BestRankAt":"2023-02-15T06:22:53.305181Z","MostPoints":3701,"MostPointsAt":"2023-02-15T06:22:53.305181Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305181Z","LastActivityAt":"2023-02-15T06:22:53.305181Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":184,"ScoreAtt":1675232,"RankDef":989,"ScoreDef":126932,"RankSup":111,"ScoreSup":1994636,"RankTotal":242,"ScoreTotal":3796800,"ID":7139820,"Name":"-Efektywny?","NumVillages":101,"Points":920280,"Rank":158,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7139820","BestRank":158,"BestRankAt":"2023-02-15T06:22:53.305182Z","MostPoints":920280,"MostPointsAt":"2023-02-15T06:22:53.305182Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.305182Z","LastActivityAt":"2023-02-15T06:22:53.305182Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305605Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1000,"ScoreAtt":30579,"RankDef":1568,"ScoreDef":28389,"RankSup":0,"ScoreSup":0,"RankTotal":1561,"ScoreTotal":58968,"ID":7139853,"Name":"gregorek18","NumVillages":15,"Points":68144,"Rank":621,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7139853","BestRank":621,"BestRankAt":"2023-02-15T06:22:53.305182Z","MostPoints":68144,"MostPointsAt":"2023-02-15T06:22:53.305183Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.305183Z","LastActivityAt":"2023-02-15T06:22:53.305183Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305605Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1867,"ScoreAtt":99,"RankDef":1330,"ScoreDef":54720,"RankSup":0,"ScoreSup":0,"RankTotal":1588,"ScoreTotal":54819,"ID":7140413,"Name":"44dor","NumVillages":1,"Points":901,"Rank":1887,"TribeID":374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7140413","BestRank":1887,"BestRankAt":"2023-02-15T06:22:53.305183Z","MostPoints":901,"MostPointsAt":"2023-02-15T06:22:53.305183Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305183Z","LastActivityAt":"2023-02-15T06:22:53.305183Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305605Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":187,"ScoreAtt":1639716,"RankDef":993,"ScoreDef":125768,"RankSup":865,"ScoreSup":15241,"RankTotal":446,"ScoreTotal":1780725,"ID":7142659,"Name":"tomson89","NumVillages":70,"Points":610556,"Rank":233,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7142659","BestRank":233,"BestRankAt":"2023-02-15T06:22:53.305184Z","MostPoints":610556,"MostPointsAt":"2023-02-15T06:22:53.305184Z","MostVillages":70,"MostVillagesAt":"2023-02-15T06:22:53.305184Z","LastActivityAt":"2023-02-15T06:22:53.305184Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305605Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1444,"ScoreDef":38763,"RankSup":0,"ScoreSup":0,"RankTotal":1694,"ScoreTotal":38763,"ID":7150683,"Name":"sos1234","NumVillages":1,"Points":1258,"Rank":1800,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7150683","BestRank":1800,"BestRankAt":"2023-02-15T06:22:53.305184Z","MostPoints":1258,"MostPointsAt":"2023-02-15T06:22:53.305185Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305185Z","LastActivityAt":"2023-02-15T06:22:53.305185Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305605Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1015,"ScoreAtt":28166,"RankDef":237,"ScoreDef":1598475,"RankSup":537,"ScoreSup":138148,"RankTotal":451,"ScoreTotal":1764789,"ID":7150939,"Name":"gulden","NumVillages":2,"Points":4994,"Rank":1328,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7150939","BestRank":1328,"BestRankAt":"2023-02-15T06:22:53.305185Z","MostPoints":4994,"MostPointsAt":"2023-02-15T06:22:53.305185Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305185Z","LastActivityAt":"2023-02-15T06:22:53.305186Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":172,"ScoreAtt":1836875,"RankDef":1525,"ScoreDef":31575,"RankSup":441,"ScoreSup":242505,"RankTotal":392,"ScoreTotal":2110955,"ID":7154207,"Name":"sylwek2011","NumVillages":90,"Points":804264,"Rank":179,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7154207","BestRank":179,"BestRankAt":"2023-02-15T06:22:53.305186Z","MostPoints":804264,"MostPointsAt":"2023-02-15T06:22:53.305186Z","MostVillages":90,"MostVillagesAt":"2023-02-15T06:22:53.305186Z","LastActivityAt":"2023-02-15T06:22:53.305186Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":785,"ScoreAtt":87068,"RankDef":652,"ScoreDef":316045,"RankSup":961,"ScoreSup":7301,"RankTotal":904,"ScoreTotal":410414,"ID":7157316,"Name":"TheHacker","NumVillages":0,"Points":0,"Rank":2920,"TribeID":693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7157316","BestRank":2920,"BestRankAt":"2023-02-15T06:22:53.305187Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305187Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305187Z","LastActivityAt":"2023-02-15T06:22:53.305187Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1318,"ScoreAtt":6000,"RankDef":1163,"ScoreDef":80687,"RankSup":730,"ScoreSup":40848,"RankTotal":1305,"ScoreTotal":127535,"ID":7158871,"Name":"Sapir1","NumVillages":1,"Points":6337,"Rank":1255,"TribeID":475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7158871","BestRank":1255,"BestRankAt":"2023-02-15T06:22:53.305187Z","MostPoints":6337,"MostPointsAt":"2023-02-15T06:22:53.305187Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305187Z","LastActivityAt":"2023-02-15T06:22:53.305188Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7180447,"Name":"rainyday","NumVillages":1,"Points":371,"Rank":2110,"TribeID":1792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7180447","BestRank":2110,"BestRankAt":"2023-02-15T06:22:53.305188Z","MostPoints":371,"MostPointsAt":"2023-02-15T06:22:53.305188Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305188Z","LastActivityAt":"2023-02-15T06:22:53.305188Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305607Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":339,"ScoreAtt":759021,"RankDef":1313,"ScoreDef":55955,"RankSup":615,"ScoreSup":91001,"RankTotal":654,"ScoreTotal":905977,"ID":7181335,"Name":"Sque","NumVillages":1,"Points":10160,"Rank":1079,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7181335","BestRank":1079,"BestRankAt":"2023-02-15T06:22:53.305189Z","MostPoints":10160,"MostPointsAt":"2023-02-15T06:22:53.305189Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305189Z","LastActivityAt":"2023-02-15T06:22:53.305189Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305607Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":105,"ScoreAtt":2954976,"RankDef":240,"ScoreDef":1583934,"RankSup":233,"ScoreSup":760148,"RankTotal":173,"ScoreTotal":5299058,"ID":7183372,"Name":"MarcinFix","NumVillages":114,"Points":970477,"Rank":151,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7183372","BestRank":151,"BestRankAt":"2023-02-15T06:22:53.305189Z","MostPoints":970477,"MostPointsAt":"2023-02-15T06:22:53.30519Z","MostVillages":114,"MostVillagesAt":"2023-02-15T06:22:53.305189Z","LastActivityAt":"2023-02-15T06:22:53.30519Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305607Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1103,"ScoreAtt":17729,"RankDef":730,"ScoreDef":254394,"RankSup":0,"ScoreSup":0,"RankTotal":1030,"ScoreTotal":272123,"ID":7210775,"Name":"torys666","NumVillages":1,"Points":3501,"Rank":1462,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7210775","BestRank":1462,"BestRankAt":"2023-02-15T06:22:53.30519Z","MostPoints":3501,"MostPointsAt":"2023-02-15T06:22:53.30519Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30519Z","LastActivityAt":"2023-02-15T06:22:53.30519Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305607Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1376,"ScoreAtt":4617,"RankDef":1556,"ScoreDef":29110,"RankSup":0,"ScoreSup":0,"RankTotal":1738,"ScoreTotal":33727,"ID":7220989,"Name":"DontCry","NumVillages":1,"Points":3807,"Rank":1429,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7220989","BestRank":1429,"BestRankAt":"2023-02-15T06:22:53.305191Z","MostPoints":3807,"MostPointsAt":"2023-02-15T06:22:53.305191Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305191Z","LastActivityAt":"2023-02-15T06:22:53.305191Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1416,"ScoreAtt":3852,"RankDef":971,"ScoreDef":134432,"RankSup":1252,"ScoreSup":126,"RankTotal":1276,"ScoreTotal":138410,"ID":7221139,"Name":"Nieƛmiertelny97","NumVillages":3,"Points":7051,"Rank":1215,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7221139","BestRank":1215,"BestRankAt":"2023-02-15T06:22:53.305191Z","MostPoints":7051,"MostPointsAt":"2023-02-15T06:22:53.305192Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305192Z","LastActivityAt":"2023-02-15T06:22:53.305192Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":795,"ScoreAtt":84055,"RankDef":1495,"ScoreDef":34472,"RankSup":554,"ScoreSup":129155,"RankTotal":1056,"ScoreTotal":247682,"ID":7226782,"Name":"soloma1500","NumVillages":32,"Points":152476,"Rank":463,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7226782","BestRank":463,"BestRankAt":"2023-02-15T06:22:53.305192Z","MostPoints":152476,"MostPointsAt":"2023-02-15T06:22:53.305192Z","MostVillages":32,"MostVillagesAt":"2023-02-15T06:22:53.305192Z","LastActivityAt":"2023-02-15T06:22:53.305192Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1781,"ScoreAtt":260,"RankDef":1908,"ScoreDef":7693,"RankSup":0,"ScoreSup":0,"RankTotal":2046,"ScoreTotal":7953,"ID":7230689,"Name":"rhodos77","NumVillages":1,"Points":3689,"Rank":1442,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7230689","BestRank":1442,"BestRankAt":"2023-02-15T06:22:53.305193Z","MostPoints":3689,"MostPointsAt":"2023-02-15T06:22:53.305193Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305193Z","LastActivityAt":"2023-02-15T06:22:53.305193Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2018,"ScoreDef":4527,"RankSup":0,"ScoreSup":0,"RankTotal":2153,"ScoreTotal":4527,"ID":7242969,"Name":"gazolek123","NumVillages":1,"Points":79,"Rank":2516,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7242969","BestRank":2516,"BestRankAt":"2023-02-15T06:22:53.305193Z","MostPoints":79,"MostPointsAt":"2023-02-15T06:22:53.305194Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305194Z","LastActivityAt":"2023-02-15T06:22:53.305194Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":23,"ScoreAtt":7509545,"RankDef":77,"ScoreDef":4531137,"RankSup":103,"ScoreSup":2197116,"RankTotal":56,"ScoreTotal":14237798,"ID":7249451,"Name":"Max Delor","NumVillages":190,"Points":1662069,"Rank":67,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7249451","BestRank":67,"BestRankAt":"2023-02-15T06:22:53.305194Z","MostPoints":1662069,"MostPointsAt":"2023-02-15T06:22:53.305194Z","MostVillages":190,"MostVillagesAt":"2023-02-15T06:22:53.305194Z","LastActivityAt":"2023-02-15T06:22:53.305194Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305609Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1130,"ScoreDef":88356,"RankSup":0,"ScoreSup":0,"RankTotal":1440,"ScoreTotal":88356,"ID":7259218,"Name":"kraczyƄski","NumVillages":1,"Points":1229,"Rank":1802,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7259218","BestRank":1802,"BestRankAt":"2023-02-15T06:22:53.305195Z","MostPoints":1229,"MostPointsAt":"2023-02-15T06:22:53.305195Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305195Z","LastActivityAt":"2023-02-15T06:22:53.305195Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305609Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1514,"ScoreAtt":2202,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2237,"ScoreTotal":2202,"ID":7259690,"Name":"SAGITTARIUS70","NumVillages":6,"Points":14674,"Rank":1002,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7259690","BestRank":1002,"BestRankAt":"2023-02-15T06:22:53.305195Z","MostPoints":14674,"MostPointsAt":"2023-02-15T06:22:53.305195Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305195Z","LastActivityAt":"2023-02-15T06:22:53.305196Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30561Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2308,"ScoreDef":246,"RankSup":0,"ScoreSup":0,"RankTotal":2392,"ScoreTotal":246,"ID":7262049,"Name":"amon201","NumVillages":1,"Points":926,"Rank":1883,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7262049","BestRank":1883,"BestRankAt":"2023-02-15T06:22:53.305196Z","MostPoints":926,"MostPointsAt":"2023-02-15T06:22:53.305196Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305196Z","LastActivityAt":"2023-02-15T06:22:53.305196Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30561Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":112,"ScoreAtt":2741974,"RankDef":369,"ScoreDef":825218,"RankSup":102,"ScoreSup":2216155,"RankTotal":158,"ScoreTotal":5783347,"ID":7271812,"Name":"spiryt pro elo","NumVillages":164,"Points":1248167,"Rank":99,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7271812","BestRank":99,"BestRankAt":"2023-02-15T06:22:53.305196Z","MostPoints":1248167,"MostPointsAt":"2023-02-15T06:22:53.305197Z","MostVillages":164,"MostVillagesAt":"2023-02-15T06:22:53.305196Z","LastActivityAt":"2023-02-15T06:22:53.305197Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30561Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1422,"ScoreAtt":3685,"RankDef":521,"ScoreDef":491834,"RankSup":0,"ScoreSup":0,"RankTotal":846,"ScoreTotal":495519,"ID":7272223,"Name":"robus7","NumVillages":2,"Points":9523,"Rank":1105,"TribeID":4,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7272223","BestRank":1105,"BestRankAt":"2023-02-15T06:22:53.305197Z","MostPoints":9523,"MostPointsAt":"2023-02-15T06:22:53.305197Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305197Z","LastActivityAt":"2023-02-15T06:22:53.305197Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30561Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7286392,"Name":"GrubsonSzczecin","NumVillages":1,"Points":26,"Rank":2653,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7286392","BestRank":2653,"BestRankAt":"2023-02-15T06:22:53.305197Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305198Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305198Z","LastActivityAt":"2023-02-15T06:22:53.305198Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1521,"ScoreAtt":2162,"RankDef":1258,"ScoreDef":62324,"RankSup":830,"ScoreSup":19552,"RankTotal":1453,"ScoreTotal":84038,"ID":7287342,"Name":"martin1181","NumVillages":1,"Points":4885,"Rank":1335,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7287342","BestRank":1335,"BestRankAt":"2023-02-15T06:22:53.305198Z","MostPoints":4885,"MostPointsAt":"2023-02-15T06:22:53.305198Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305198Z","LastActivityAt":"2023-02-15T06:22:53.305198Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1537,"ScoreAtt":1980,"RankDef":774,"ScoreDef":226567,"RankSup":0,"ScoreSup":0,"RankTotal":1090,"ScoreTotal":228547,"ID":7297881,"Name":"Zawisza160","NumVillages":0,"Points":0,"Rank":2921,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7297881","BestRank":2921,"BestRankAt":"2023-02-15T06:22:53.305199Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305199Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305199Z","LastActivityAt":"2023-02-15T06:22:53.305199Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1837,"ScoreAtt":138,"RankDef":1349,"ScoreDef":51679,"RankSup":0,"ScoreSup":0,"RankTotal":1603,"ScoreTotal":51817,"ID":7313287,"Name":"Striker09","NumVillages":1,"Points":1043,"Rank":1848,"TribeID":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7313287","BestRank":1848,"BestRankAt":"2023-02-15T06:22:53.305199Z","MostPoints":1043,"MostPointsAt":"2023-02-15T06:22:53.305199Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305199Z","LastActivityAt":"2023-02-15T06:22:53.305199Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":443,"ScoreAtt":465578,"RankDef":113,"ScoreDef":3268635,"RankSup":246,"ScoreSup":721628,"RankTotal":213,"ScoreTotal":4455841,"ID":7318415,"Name":"bula9001","NumVillages":5,"Points":26242,"Rank":845,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7318415","BestRank":845,"BestRankAt":"2023-02-15T06:22:53.3052Z","MostPoints":26242,"MostPointsAt":"2023-02-15T06:22:53.3052Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.3052Z","LastActivityAt":"2023-02-15T06:22:53.3052Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":539,"ScoreAtt":298296,"RankDef":468,"ScoreDef":565878,"RankSup":211,"ScoreSup":869419,"RankTotal":456,"ScoreTotal":1733593,"ID":7318949,"Name":"czarny8216","NumVillages":2,"Points":7990,"Rank":1158,"TribeID":1645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7318949","BestRank":1158,"BestRankAt":"2023-02-15T06:22:53.3052Z","MostPoints":7990,"MostPointsAt":"2023-02-15T06:22:53.3052Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.3052Z","LastActivityAt":"2023-02-15T06:22:53.305201Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7322865,"Name":"Sonomi","NumVillages":1,"Points":26,"Rank":2654,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7322865","BestRank":2654,"BestRankAt":"2023-02-15T06:22:53.305201Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305201Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305201Z","LastActivityAt":"2023-02-15T06:22:53.305201Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":541,"ScoreAtt":295815,"RankDef":621,"ScoreDef":358104,"RankSup":606,"ScoreSup":96311,"RankTotal":707,"ScoreTotal":750230,"ID":7333216,"Name":"Majsmen","NumVillages":8,"Points":77623,"Rank":591,"TribeID":936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7333216","BestRank":591,"BestRankAt":"2023-02-15T06:22:53.305201Z","MostPoints":77623,"MostPointsAt":"2023-02-15T06:22:53.305202Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.305201Z","LastActivityAt":"2023-02-15T06:22:53.305202Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1478,"ScoreAtt":2700,"RankDef":1265,"ScoreDef":61184,"RankSup":1126,"ScoreSup":1396,"RankTotal":1526,"ScoreTotal":65280,"ID":7337110,"Name":"kwiatek7777","NumVillages":1,"Points":1162,"Rank":1816,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7337110","BestRank":1816,"BestRankAt":"2023-02-15T06:22:53.305202Z","MostPoints":1162,"MostPointsAt":"2023-02-15T06:22:53.305202Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305202Z","LastActivityAt":"2023-02-15T06:22:53.305202Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":270,"ScoreAtt":1051654,"RankDef":33,"ScoreDef":9693842,"RankSup":546,"ScoreSup":131946,"RankTotal":70,"ScoreTotal":10877442,"ID":7340529,"Name":"morra12311","NumVillages":67,"Points":641795,"Rank":221,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7340529","BestRank":221,"BestRankAt":"2023-02-15T06:22:53.305202Z","MostPoints":641795,"MostPointsAt":"2023-02-15T06:22:53.305203Z","MostVillages":67,"MostVillagesAt":"2023-02-15T06:22:53.305203Z","LastActivityAt":"2023-02-15T06:22:53.305203Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1264,"ScoreAtt":7537,"RankDef":1063,"ScoreDef":103956,"RankSup":1275,"ScoreSup":63,"RankTotal":1356,"ScoreTotal":111556,"ID":7346797,"Name":"saladyn89.","NumVillages":4,"Points":10519,"Rank":1073,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7346797","BestRank":1073,"BestRankAt":"2023-02-15T06:22:53.305203Z","MostPoints":10519,"MostPointsAt":"2023-02-15T06:22:53.305203Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305203Z","LastActivityAt":"2023-02-15T06:22:53.305203Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":303,"ScoreAtt":909908,"RankDef":520,"ScoreDef":492330,"RankSup":73,"ScoreSup":2818730,"RankTotal":223,"ScoreTotal":4220968,"ID":7349282,"Name":"Staƛkinio","NumVillages":9,"Points":53311,"Rank":672,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7349282","BestRank":672,"BestRankAt":"2023-02-15T06:22:53.305204Z","MostPoints":53311,"MostPointsAt":"2023-02-15T06:22:53.305204Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.305204Z","LastActivityAt":"2023-02-15T06:22:53.305204Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1109,"ScoreAtt":17400,"RankDef":1782,"ScoreDef":13493,"RankSup":0,"ScoreSup":0,"RankTotal":1763,"ScoreTotal":30893,"ID":7357503,"Name":"kajko1962","NumVillages":6,"Points":30789,"Rank":808,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7357503","BestRank":808,"BestRankAt":"2023-02-15T06:22:53.305204Z","MostPoints":30789,"MostPointsAt":"2023-02-15T06:22:53.305204Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305204Z","LastActivityAt":"2023-02-15T06:22:53.305204Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1343,"ScoreAtt":5368,"RankDef":2053,"ScoreDef":3732,"RankSup":1394,"ScoreSup":2,"RankTotal":2016,"ScoreTotal":9102,"ID":7365299,"Name":"wiewioreczkavivat","NumVillages":1,"Points":3767,"Rank":1435,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7365299","BestRank":1435,"BestRankAt":"2023-02-15T06:22:53.305205Z","MostPoints":3767,"MostPointsAt":"2023-02-15T06:22:53.305205Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305205Z","LastActivityAt":"2023-02-15T06:22:53.305205Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305614Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":553,"ScoreAtt":273032,"RankDef":336,"ScoreDef":945220,"RankSup":291,"ScoreSup":561957,"RankTotal":447,"ScoreTotal":1780209,"ID":7386358,"Name":"upalamba","NumVillages":13,"Points":64741,"Rank":637,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7386358","BestRank":637,"BestRankAt":"2023-02-15T06:22:53.305205Z","MostPoints":64741,"MostPointsAt":"2023-02-15T06:22:53.305205Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.305205Z","LastActivityAt":"2023-02-15T06:22:53.305205Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305614Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":529,"ScoreAtt":311888,"RankDef":655,"ScoreDef":313355,"RankSup":1178,"ScoreSup":617,"RankTotal":768,"ScoreTotal":625860,"ID":7394371,"Name":"adi7474","NumVillages":48,"Points":426936,"Rank":293,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7394371","BestRank":293,"BestRankAt":"2023-02-15T06:22:53.305206Z","MostPoints":426936,"MostPointsAt":"2023-02-15T06:22:53.305206Z","MostVillages":48,"MostVillagesAt":"2023-02-15T06:22:53.305206Z","LastActivityAt":"2023-02-15T06:22:53.305206Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305614Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1879,"ScoreAtt":85,"RankDef":2384,"ScoreDef":30,"RankSup":995,"ScoreSup":5445,"RankTotal":2112,"ScoreTotal":5560,"ID":7409475,"Name":"Xenae","NumVillages":3,"Points":24412,"Rank":865,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7409475","BestRank":865,"BestRankAt":"2023-02-15T06:22:53.305206Z","MostPoints":24412,"MostPointsAt":"2023-02-15T06:22:53.305206Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305206Z","LastActivityAt":"2023-02-15T06:22:53.305207Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305614Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":427,"ScoreAtt":490557,"RankDef":91,"ScoreDef":3743373,"RankSup":199,"ScoreSup":935075,"RankTotal":179,"ScoreTotal":5169005,"ID":7417116,"Name":"master^_^","NumVillages":18,"Points":177387,"Rank":437,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7417116","BestRank":437,"BestRankAt":"2023-02-15T06:22:53.305207Z","MostPoints":177387,"MostPointsAt":"2023-02-15T06:22:53.305207Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.305207Z","LastActivityAt":"2023-02-15T06:22:53.305207Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305615Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":287,"ScoreAtt":976084,"RankDef":1363,"ScoreDef":49109,"RankSup":1116,"ScoreSup":1575,"RankTotal":611,"ScoreTotal":1026768,"ID":7418168,"Name":"smok42 PLEMIENNY BUREK","NumVillages":20,"Points":170721,"Rank":443,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7418168","BestRank":443,"BestRankAt":"2023-02-15T06:22:53.305209Z","MostPoints":170721,"MostPointsAt":"2023-02-15T06:22:53.305209Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.305209Z","LastActivityAt":"2023-02-15T06:22:53.305209Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305615Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1446,"ScoreDef":38730,"RankSup":0,"ScoreSup":0,"RankTotal":1695,"ScoreTotal":38730,"ID":7422002,"Name":"korek62","NumVillages":1,"Points":1373,"Rank":1772,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7422002","BestRank":1772,"BestRankAt":"2023-02-15T06:22:53.305209Z","MostPoints":1373,"MostPointsAt":"2023-02-15T06:22:53.305209Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305209Z","LastActivityAt":"2023-02-15T06:22:53.305209Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305615Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":887,"ScoreAtt":53590,"RankDef":1178,"ScoreDef":77393,"RankSup":0,"ScoreSup":0,"RankTotal":1293,"ScoreTotal":130983,"ID":7427966,"Name":"Pitter82","NumVillages":10,"Points":29114,"Rank":823,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7427966","BestRank":823,"BestRankAt":"2023-02-15T06:22:53.30521Z","MostPoints":29114,"MostPointsAt":"2023-02-15T06:22:53.30521Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.30521Z","LastActivityAt":"2023-02-15T06:22:53.30521Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305615Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1886,"ScoreDef":8492,"RankSup":1184,"ScoreSup":558,"RankTotal":2019,"ScoreTotal":9050,"ID":7428666,"Name":"Maliniak77","NumVillages":1,"Points":4696,"Rank":1356,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7428666","BestRank":1356,"BestRankAt":"2023-02-15T06:22:53.30521Z","MostPoints":4696,"MostPointsAt":"2023-02-15T06:22:53.30521Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30521Z","LastActivityAt":"2023-02-15T06:22:53.30521Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305615Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7431759,"Name":"De Integro","NumVillages":1,"Points":32,"Rank":2617,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7431759","BestRank":2617,"BestRankAt":"2023-02-15T06:22:53.305211Z","MostPoints":32,"MostPointsAt":"2023-02-15T06:22:53.305211Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305211Z","LastActivityAt":"2023-02-15T06:22:53.305211Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2163,"ScoreDef":1793,"RankSup":0,"ScoreSup":0,"RankTotal":2261,"ScoreTotal":1793,"ID":7440474,"Name":"Lepsi5","NumVillages":1,"Points":3009,"Rank":1527,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7440474","BestRank":1527,"BestRankAt":"2023-02-15T06:22:53.305211Z","MostPoints":3009,"MostPointsAt":"2023-02-15T06:22:53.305211Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305211Z","LastActivityAt":"2023-02-15T06:22:53.305212Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":57,"ScoreAtt":4552303,"RankDef":258,"ScoreDef":1434313,"RankSup":132,"ScoreSup":1633783,"RankTotal":109,"ScoreTotal":7620399,"ID":7449254,"Name":"Bochun10","NumVillages":194,"Points":1728259,"Rank":64,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7449254","BestRank":64,"BestRankAt":"2023-02-15T06:22:53.305212Z","MostPoints":1728259,"MostPointsAt":"2023-02-15T06:22:53.305212Z","MostVillages":194,"MostVillagesAt":"2023-02-15T06:22:53.305212Z","LastActivityAt":"2023-02-15T06:22:53.305212Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":80,"ScoreAtt":3863656,"RankDef":665,"ScoreDef":302189,"RankSup":179,"ScoreSup":1147464,"RankTotal":172,"ScoreTotal":5313309,"ID":7462660,"Name":"vequs","NumVillages":141,"Points":1238163,"Rank":104,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7462660","BestRank":104,"BestRankAt":"2023-02-15T06:22:53.305212Z","MostPoints":1238163,"MostPointsAt":"2023-02-15T06:22:53.305213Z","MostVillages":141,"MostVillagesAt":"2023-02-15T06:22:53.305212Z","LastActivityAt":"2023-02-15T06:22:53.305213Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1779,"ScoreAtt":262,"RankDef":2117,"ScoreDef":2459,"RankSup":0,"ScoreSup":0,"RankTotal":2219,"ScoreTotal":2721,"ID":7474527,"Name":"kerto13","NumVillages":3,"Points":5178,"Rank":1316,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7474527","BestRank":1316,"BestRankAt":"2023-02-15T06:22:53.305213Z","MostPoints":5178,"MostPointsAt":"2023-02-15T06:22:53.305213Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305213Z","LastActivityAt":"2023-02-15T06:22:53.305213Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1879,"ScoreDef":8821,"RankSup":0,"ScoreSup":0,"RankTotal":2025,"ScoreTotal":8821,"ID":7477695,"Name":"Pupenplatz","NumVillages":0,"Points":0,"Rank":2922,"TribeID":1727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7477695","BestRank":2922,"BestRankAt":"2023-02-15T06:22:53.305213Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305214Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305214Z","LastActivityAt":"2023-02-15T06:22:53.305214Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1077,"ScoreAtt":20368,"RankDef":1172,"ScoreDef":78599,"RankSup":0,"ScoreSup":0,"RankTotal":1397,"ScoreTotal":98967,"ID":7485877,"Name":"ro98","NumVillages":12,"Points":59757,"Rank":654,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7485877","BestRank":654,"BestRankAt":"2023-02-15T06:22:53.305214Z","MostPoints":59757,"MostPointsAt":"2023-02-15T06:22:53.305214Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.305214Z","LastActivityAt":"2023-02-15T06:22:53.305214Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":95,"ScoreAtt":3364151,"RankDef":68,"ScoreDef":4916117,"RankSup":352,"ScoreSup":407400,"RankTotal":89,"ScoreTotal":8687668,"ID":7491093,"Name":"nubeN","NumVillages":90,"Points":855843,"Rank":169,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7491093","BestRank":169,"BestRankAt":"2023-02-15T06:22:53.305215Z","MostPoints":855843,"MostPointsAt":"2023-02-15T06:22:53.305215Z","MostVillages":90,"MostVillagesAt":"2023-02-15T06:22:53.305215Z","LastActivityAt":"2023-02-15T06:22:53.305215Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1661,"ScoreAtt":787,"RankDef":2028,"ScoreDef":4275,"RankSup":0,"ScoreSup":0,"RankTotal":2131,"ScoreTotal":5062,"ID":7492426,"Name":"Aritian1","NumVillages":1,"Points":7448,"Rank":1189,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7492426","BestRank":1189,"BestRankAt":"2023-02-15T06:22:53.305215Z","MostPoints":7448,"MostPointsAt":"2023-02-15T06:22:53.305215Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305215Z","LastActivityAt":"2023-02-15T06:22:53.305215Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1061,"ScoreAtt":21988,"RankDef":1511,"ScoreDef":32678,"RankSup":1293,"ScoreSup":35,"RankTotal":1590,"ScoreTotal":54701,"ID":7494178,"Name":"minijuncio1","NumVillages":1,"Points":317,"Rank":2157,"TribeID":548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7494178","BestRank":2157,"BestRankAt":"2023-02-15T06:22:53.305216Z","MostPoints":317,"MostPointsAt":"2023-02-15T06:22:53.305216Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305216Z","LastActivityAt":"2023-02-15T06:22:53.305216Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":192,"ScoreAtt":1621283,"RankDef":981,"ScoreDef":129925,"RankSup":558,"ScoreSup":127603,"RankTotal":423,"ScoreTotal":1878811,"ID":7494497,"Name":"damiant61","NumVillages":107,"Points":811011,"Rank":178,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7494497","BestRank":178,"BestRankAt":"2023-02-15T06:22:53.305216Z","MostPoints":811011,"MostPointsAt":"2023-02-15T06:22:53.305216Z","MostVillages":107,"MostVillagesAt":"2023-02-15T06:22:53.305216Z","LastActivityAt":"2023-02-15T06:22:53.305216Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7495050,"Name":"Księga przyrodniczo","NumVillages":1,"Points":102,"Rank":2473,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7495050","BestRank":2473,"BestRankAt":"2023-02-15T06:22:53.305217Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.305217Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305217Z","LastActivityAt":"2023-02-15T06:22:53.305217Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1969,"ScoreDef":5846,"RankSup":1223,"ScoreSup":265,"RankTotal":2093,"ScoreTotal":6111,"ID":7499430,"Name":"kosmo1972","NumVillages":1,"Points":5843,"Rank":1281,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7499430","BestRank":1281,"BestRankAt":"2023-02-15T06:22:53.305217Z","MostPoints":5843,"MostPointsAt":"2023-02-15T06:22:53.305217Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305217Z","LastActivityAt":"2023-02-15T06:22:53.305218Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1429,"ScoreAtt":3587,"RankDef":1359,"ScoreDef":49802,"RankSup":1205,"ScoreSup":362,"RankTotal":1595,"ScoreTotal":53751,"ID":7508390,"Name":"MauritiusMagnus","NumVillages":1,"Points":138,"Rank":2395,"TribeID":1610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7508390","BestRank":2395,"BestRankAt":"2023-02-15T06:22:53.305218Z","MostPoints":138,"MostPointsAt":"2023-02-15T06:22:53.305218Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305218Z","LastActivityAt":"2023-02-15T06:22:53.305218Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1456,"ScoreAtt":3085,"RankDef":838,"ScoreDef":190133,"RankSup":0,"ScoreSup":0,"RankTotal":1152,"ScoreTotal":193218,"ID":7516892,"Name":"jaromirek","NumVillages":1,"Points":764,"Rank":1933,"TribeID":1333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7516892","BestRank":1933,"BestRankAt":"2023-02-15T06:22:53.305219Z","MostPoints":764,"MostPointsAt":"2023-02-15T06:22:53.305219Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305219Z","LastActivityAt":"2023-02-15T06:22:53.305219Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":918,"ScoreAtt":47302,"RankDef":438,"ScoreDef":646382,"RankSup":1306,"ScoreSup":22,"RankTotal":737,"ScoreTotal":693706,"ID":7518529,"Name":"LAROX","NumVillages":2,"Points":12874,"Rank":1030,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7518529","BestRank":1030,"BestRankAt":"2023-02-15T06:22:53.305219Z","MostPoints":12874,"MostPointsAt":"2023-02-15T06:22:53.30522Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305219Z","LastActivityAt":"2023-02-15T06:22:53.30522Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1852,"ScoreAtt":126,"RankDef":2495,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2428,"ScoreTotal":128,"ID":7520280,"Name":"barex10","NumVillages":1,"Points":4046,"Rank":1407,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7520280","BestRank":1407,"BestRankAt":"2023-02-15T06:22:53.30522Z","MostPoints":4046,"MostPointsAt":"2023-02-15T06:22:53.30522Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30522Z","LastActivityAt":"2023-02-15T06:22:53.30522Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1610,"ScoreAtt":1235,"RankDef":2396,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2295,"ScoreTotal":1257,"ID":7526090,"Name":"Ballab","NumVillages":2,"Points":4653,"Rank":1361,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7526090","BestRank":1361,"BestRankAt":"2023-02-15T06:22:53.305221Z","MostPoints":4653,"MostPointsAt":"2023-02-15T06:22:53.305221Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305221Z","LastActivityAt":"2023-02-15T06:22:53.305221Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1046,"ScoreAtt":24412,"RankDef":1992,"ScoreDef":5347,"RankSup":478,"ScoreSup":191015,"RankTotal":1107,"ScoreTotal":220774,"ID":7528491,"Name":"Bocianikson","NumVillages":28,"Points":192062,"Rank":424,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7528491","BestRank":424,"BestRankAt":"2023-02-15T06:22:53.305221Z","MostPoints":192062,"MostPointsAt":"2023-02-15T06:22:53.305221Z","MostVillages":28,"MostVillagesAt":"2023-02-15T06:22:53.305221Z","LastActivityAt":"2023-02-15T06:22:53.305221Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1667,"ScoreAtt":746,"RankDef":1671,"ScoreDef":20255,"RankSup":1140,"ScoreSup":1155,"RankTotal":1848,"ScoreTotal":22156,"ID":7530708,"Name":"SlodLenka","NumVillages":6,"Points":17355,"Rank":965,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7530708","BestRank":965,"BestRankAt":"2023-02-15T06:22:53.305222Z","MostPoints":17355,"MostPointsAt":"2023-02-15T06:22:53.305222Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305222Z","LastActivityAt":"2023-02-15T06:22:53.305222Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1904,"ScoreAtt":46,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2464,"ScoreTotal":46,"ID":7539223,"Name":"Destruktorix I","NumVillages":1,"Points":124,"Rank":2437,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7539223","BestRank":2437,"BestRankAt":"2023-02-15T06:22:53.305222Z","MostPoints":124,"MostPointsAt":"2023-02-15T06:22:53.305222Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305222Z","LastActivityAt":"2023-02-15T06:22:53.305222Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":534,"ScoreAtt":307859,"RankDef":64,"ScoreDef":5444885,"RankSup":263,"ScoreSup":649359,"RankTotal":139,"ScoreTotal":6402103,"ID":7540891,"Name":"Ras 7C","NumVillages":84,"Points":356870,"Rank":320,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7540891","BestRank":320,"BestRankAt":"2023-02-15T06:22:53.305223Z","MostPoints":356870,"MostPointsAt":"2023-02-15T06:22:53.305223Z","MostVillages":84,"MostVillagesAt":"2023-02-15T06:22:53.305223Z","LastActivityAt":"2023-02-15T06:22:53.305223Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1325,"ScoreAtt":5836,"RankDef":964,"ScoreDef":138212,"RankSup":0,"ScoreSup":0,"RankTotal":1261,"ScoreTotal":144048,"ID":7550472,"Name":"Sir.Gardier","NumVillages":1,"Points":9604,"Rank":1100,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7550472","BestRank":1100,"BestRankAt":"2023-02-15T06:22:53.305223Z","MostPoints":9604,"MostPointsAt":"2023-02-15T06:22:53.305223Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305223Z","LastActivityAt":"2023-02-15T06:22:53.305224Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":99,"ScoreAtt":3202496,"RankDef":34,"ScoreDef":9579441,"RankSup":61,"ScoreSup":3053132,"RankTotal":41,"ScoreTotal":15835069,"ID":7555180,"Name":"LukasKeller","NumVillages":34,"Points":240289,"Rank":387,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7555180","BestRank":387,"BestRankAt":"2023-02-15T06:22:53.305224Z","MostPoints":240289,"MostPointsAt":"2023-02-15T06:22:53.305224Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.305224Z","LastActivityAt":"2023-02-15T06:22:53.305224Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2189,"ScoreDef":1400,"RankSup":0,"ScoreSup":0,"RankTotal":2284,"ScoreTotal":1400,"ID":7557683,"Name":"dadek26","NumVillages":3,"Points":7313,"Rank":1201,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7557683","BestRank":1201,"BestRankAt":"2023-02-15T06:22:53.305224Z","MostPoints":7313,"MostPointsAt":"2023-02-15T06:22:53.305225Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305224Z","LastActivityAt":"2023-02-15T06:22:53.305225Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1723,"ScoreDef":17374,"RankSup":1139,"ScoreSup":1167,"RankTotal":1887,"ScoreTotal":18541,"ID":7559093,"Name":"WJHK","NumVillages":1,"Points":5667,"Rank":1291,"TribeID":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7559093","BestRank":1291,"BestRankAt":"2023-02-15T06:22:53.305225Z","MostPoints":5667,"MostPointsAt":"2023-02-15T06:22:53.305225Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305225Z","LastActivityAt":"2023-02-15T06:22:53.305225Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7560085,"Name":"cyaaaa2","NumVillages":1,"Points":134,"Rank":2406,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7560085","BestRank":2406,"BestRankAt":"2023-02-15T06:22:53.305225Z","MostPoints":134,"MostPointsAt":"2023-02-15T06:22:53.305226Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305226Z","LastActivityAt":"2023-02-15T06:22:53.305226Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1027,"ScoreAtt":27037,"RankDef":1734,"ScoreDef":16690,"RankSup":0,"ScoreSup":0,"RankTotal":1655,"ScoreTotal":43727,"ID":7560474,"Name":"JasJ","NumVillages":10,"Points":62121,"Rank":645,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7560474","BestRank":645,"BestRankAt":"2023-02-15T06:22:53.305226Z","MostPoints":62121,"MostPointsAt":"2023-02-15T06:22:53.305226Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.305226Z","LastActivityAt":"2023-02-15T06:22:53.305226Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":790,"ScoreAtt":85726,"RankDef":234,"ScoreDef":1630841,"RankSup":966,"ScoreSup":6864,"RankTotal":457,"ScoreTotal":1723431,"ID":7563185,"Name":"zajadek96","NumVillages":3,"Points":7826,"Rank":1168,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7563185","BestRank":1168,"BestRankAt":"2023-02-15T06:22:53.305227Z","MostPoints":7826,"MostPointsAt":"2023-02-15T06:22:53.305227Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305227Z","LastActivityAt":"2023-02-15T06:22:53.305227Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1145,"ScoreAtt":14242,"RankDef":1162,"ScoreDef":80848,"RankSup":0,"ScoreSup":0,"RankTotal":1408,"ScoreTotal":95090,"ID":7563943,"Name":"bukai","NumVillages":4,"Points":18928,"Rank":936,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7563943","BestRank":936,"BestRankAt":"2023-02-15T06:22:53.305227Z","MostPoints":18928,"MostPointsAt":"2023-02-15T06:22:53.305227Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305227Z","LastActivityAt":"2023-02-15T06:22:53.305227Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1268,"ScoreAtt":7480,"RankDef":868,"ScoreDef":180002,"RankSup":0,"ScoreSup":0,"RankTotal":1168,"ScoreTotal":187482,"ID":7574317,"Name":"sir alec","NumVillages":0,"Points":0,"Rank":2923,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7574317","BestRank":2923,"BestRankAt":"2023-02-15T06:22:53.305228Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305228Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305228Z","LastActivityAt":"2023-02-15T06:22:53.305228Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1966,"ScoreAtt":10,"RankDef":1332,"ScoreDef":54411,"RankSup":1296,"ScoreSup":33,"RankTotal":1591,"ScoreTotal":54454,"ID":7575174,"Name":"maniuƛ1968","NumVillages":1,"Points":1084,"Rank":1839,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7575174","BestRank":1839,"BestRankAt":"2023-02-15T06:22:53.305228Z","MostPoints":1084,"MostPointsAt":"2023-02-15T06:22:53.305228Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305228Z","LastActivityAt":"2023-02-15T06:22:53.305228Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":42,"ScoreAtt":5618662,"RankDef":760,"ScoreDef":235048,"RankSup":24,"ScoreSup":4840705,"RankTotal":72,"ScoreTotal":10694415,"ID":7581876,"Name":"sas584","NumVillages":174,"Points":1614467,"Rank":72,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7581876","BestRank":72,"BestRankAt":"2023-02-15T06:22:53.305229Z","MostPoints":1614467,"MostPointsAt":"2023-02-15T06:22:53.305229Z","MostVillages":174,"MostVillagesAt":"2023-02-15T06:22:53.305229Z","LastActivityAt":"2023-02-15T06:22:53.305229Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":479,"ScoreAtt":396569,"RankDef":1595,"ScoreDef":25739,"RankSup":621,"ScoreSup":87593,"RankTotal":833,"ScoreTotal":509901,"ID":7588382,"Name":"buczkowice1998","NumVillages":51,"Points":427976,"Rank":292,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7588382","BestRank":292,"BestRankAt":"2023-02-15T06:22:53.305229Z","MostPoints":427976,"MostPointsAt":"2023-02-15T06:22:53.305229Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.305229Z","LastActivityAt":"2023-02-15T06:22:53.30523Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":519,"ScoreAtt":326347,"RankDef":1882,"ScoreDef":8748,"RankSup":108,"ScoreSup":2060546,"RankTotal":355,"ScoreTotal":2395641,"ID":7589468,"Name":"Filipets","NumVillages":67,"Points":500728,"Rank":270,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7589468","BestRank":270,"BestRankAt":"2023-02-15T06:22:53.30523Z","MostPoints":500728,"MostPointsAt":"2023-02-15T06:22:53.30523Z","MostVillages":67,"MostVillagesAt":"2023-02-15T06:22:53.30523Z","LastActivityAt":"2023-02-15T06:22:53.30523Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1123,"ScoreAtt":16373,"RankDef":1537,"ScoreDef":30453,"RankSup":1177,"ScoreSup":620,"RankTotal":1634,"ScoreTotal":47446,"ID":7590135,"Name":"Arystek","NumVillages":4,"Points":20525,"Rank":909,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7590135","BestRank":909,"BestRankAt":"2023-02-15T06:22:53.30523Z","MostPoints":20525,"MostPointsAt":"2023-02-15T06:22:53.305231Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.30523Z","LastActivityAt":"2023-02-15T06:22:53.305231Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1675,"ScoreDef":20127,"RankSup":0,"ScoreSup":0,"RankTotal":1872,"ScoreTotal":20127,"ID":7590275,"Name":"MORUSGRIN","NumVillages":1,"Points":7252,"Rank":1205,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7590275","BestRank":1205,"BestRankAt":"2023-02-15T06:22:53.305231Z","MostPoints":7252,"MostPointsAt":"2023-02-15T06:22:53.305231Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305231Z","LastActivityAt":"2023-02-15T06:22:53.305231Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1270,"ScoreDef":60407,"RankSup":0,"ScoreSup":0,"RankTotal":1554,"ScoreTotal":60407,"ID":7605446,"Name":"Danka Ch","NumVillages":1,"Points":475,"Rank":2045,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7605446","BestRank":2045,"BestRankAt":"2023-02-15T06:22:53.305231Z","MostPoints":475,"MostPointsAt":"2023-02-15T06:22:53.305232Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305232Z","LastActivityAt":"2023-02-15T06:22:53.305232Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2212,"ScoreDef":1026,"RankSup":0,"ScoreSup":0,"RankTotal":2306,"ScoreTotal":1026,"ID":7629036,"Name":"ziomeka4","NumVillages":1,"Points":2408,"Rank":1595,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7629036","BestRank":1595,"BestRankAt":"2023-02-15T06:22:53.305232Z","MostPoints":2408,"MostPointsAt":"2023-02-15T06:22:53.305232Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305232Z","LastActivityAt":"2023-02-15T06:22:53.305232Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305625Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":915,"ScoreDef":157182,"RankSup":1009,"ScoreSup":4585,"RankTotal":1227,"ScoreTotal":161767,"ID":7646152,"Name":"Kierownik44","NumVillages":4,"Points":11467,"Rank":1050,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7646152","BestRank":1050,"BestRankAt":"2023-02-15T06:22:53.305233Z","MostPoints":11467,"MostPointsAt":"2023-02-15T06:22:53.305233Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305233Z","LastActivityAt":"2023-02-15T06:22:53.305233Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305625Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":906,"ScoreAtt":48526,"RankDef":1934,"ScoreDef":6855,"RankSup":571,"ScoreSup":117023,"RankTotal":1207,"ScoreTotal":172404,"ID":7651093,"Name":"Hankier","NumVillages":20,"Points":141931,"Rank":477,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7651093","BestRank":477,"BestRankAt":"2023-02-15T06:22:53.305233Z","MostPoints":141931,"MostPointsAt":"2023-02-15T06:22:53.305233Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.305233Z","LastActivityAt":"2023-02-15T06:22:53.305233Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305625Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1695,"ScoreAtt":626,"RankDef":828,"ScoreDef":194713,"RankSup":0,"ScoreSup":0,"RankTotal":1144,"ScoreTotal":195339,"ID":7661091,"Name":"stecj","NumVillages":1,"Points":7345,"Rank":1200,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7661091","BestRank":1200,"BestRankAt":"2023-02-15T06:22:53.305234Z","MostPoints":7345,"MostPointsAt":"2023-02-15T06:22:53.305234Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305234Z","LastActivityAt":"2023-02-15T06:22:53.305234Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7663945,"Name":"Sir Hood","NumVillages":1,"Points":26,"Rank":2655,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7663945","BestRank":2655,"BestRankAt":"2023-02-15T06:22:53.305234Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305234Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305234Z","LastActivityAt":"2023-02-15T06:22:53.305234Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":890,"ScoreAtt":53026,"RankDef":418,"ScoreDef":699257,"RankSup":640,"ScoreSup":76132,"RankTotal":677,"ScoreTotal":828415,"ID":7675610,"Name":"kawskole","NumVillages":6,"Points":13341,"Rank":1022,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7675610","BestRank":1022,"BestRankAt":"2023-02-15T06:22:53.305235Z","MostPoints":13341,"MostPointsAt":"2023-02-15T06:22:53.305235Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305235Z","LastActivityAt":"2023-02-15T06:22:53.305235Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7687862,"Name":"Ale AHMED","NumVillages":1,"Points":338,"Rank":2139,"TribeID":1648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7687862","BestRank":2139,"BestRankAt":"2023-02-15T06:22:53.305235Z","MostPoints":338,"MostPointsAt":"2023-02-15T06:22:53.305235Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305235Z","LastActivityAt":"2023-02-15T06:22:53.305236Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":959,"ScoreDef":139935,"RankSup":0,"ScoreSup":0,"RankTotal":1273,"ScoreTotal":139935,"ID":7691817,"Name":"czesc","NumVillages":1,"Points":2706,"Rank":1567,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7691817","BestRank":1567,"BestRankAt":"2023-02-15T06:22:53.305236Z","MostPoints":2706,"MostPointsAt":"2023-02-15T06:22:53.305236Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305236Z","LastActivityAt":"2023-02-15T06:22:53.305236Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":346,"ScoreAtt":702181,"RankDef":319,"ScoreDef":1061592,"RankSup":949,"ScoreSup":7957,"RankTotal":449,"ScoreTotal":1771730,"ID":7695478,"Name":"Turbo Gumiƛ","NumVillages":0,"Points":0,"Rank":2924,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7695478","BestRank":2924,"BestRankAt":"2023-02-15T06:22:53.305236Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305237Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305236Z","LastActivityAt":"2023-02-15T06:22:53.305237Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1662,"ScoreAtt":770,"RankDef":1101,"ScoreDef":93936,"RankSup":994,"ScoreSup":5489,"RankTotal":1392,"ScoreTotal":100195,"ID":7695659,"Name":"MrZibo","NumVillages":1,"Points":1129,"Rank":1824,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7695659","BestRank":1824,"BestRankAt":"2023-02-15T06:22:53.305237Z","MostPoints":1129,"MostPointsAt":"2023-02-15T06:22:53.305237Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305237Z","LastActivityAt":"2023-02-15T06:22:53.305237Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":869,"ScoreAtt":57501,"RankDef":2040,"ScoreDef":3971,"RankSup":1264,"ScoreSup":89,"RankTotal":1541,"ScoreTotal":61561,"ID":7699382,"Name":"DiabeƂ x SokóƂ","NumVillages":0,"Points":0,"Rank":2925,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7699382","BestRank":2925,"BestRankAt":"2023-02-15T06:22:53.305237Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305238Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305238Z","LastActivityAt":"2023-02-15T06:22:53.305238Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2399,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2496,"ScoreTotal":22,"ID":7707390,"Name":"Hellooo","NumVillages":2,"Points":7243,"Rank":1206,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7707390","BestRank":1206,"BestRankAt":"2023-02-15T06:22:53.305238Z","MostPoints":7243,"MostPointsAt":"2023-02-15T06:22:53.305238Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305238Z","LastActivityAt":"2023-02-15T06:22:53.305238Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1608,"ScoreAtt":1239,"RankDef":2327,"ScoreDef":193,"RankSup":0,"ScoreSup":0,"RankTotal":2282,"ScoreTotal":1432,"ID":7720028,"Name":"blok konk","NumVillages":0,"Points":0,"Rank":2926,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7720028","BestRank":2926,"BestRankAt":"2023-02-15T06:22:53.305239Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305239Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305239Z","LastActivityAt":"2023-02-15T06:22:53.305239Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":994,"ScoreDef":125651,"RankSup":0,"ScoreSup":0,"RankTotal":1310,"ScoreTotal":125651,"ID":7721441,"Name":"elisea","NumVillages":0,"Points":0,"Rank":2927,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7721441","BestRank":2927,"BestRankAt":"2023-02-15T06:22:53.305239Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305239Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305239Z","LastActivityAt":"2023-02-15T06:22:53.305239Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1714,"ScoreDef":17728,"RankSup":1246,"ScoreSup":157,"RankTotal":1891,"ScoreTotal":17885,"ID":7733128,"Name":"Helios874","NumVillages":1,"Points":230,"Rank":2250,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7733128","BestRank":2250,"BestRankAt":"2023-02-15T06:22:53.30524Z","MostPoints":230,"MostPointsAt":"2023-02-15T06:22:53.30524Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30524Z","LastActivityAt":"2023-02-15T06:22:53.30524Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":398,"ScoreDef":760905,"RankSup":0,"ScoreSup":0,"RankTotal":699,"ScoreTotal":760905,"ID":7749444,"Name":"TCH1","NumVillages":1,"Points":3988,"Rank":1411,"TribeID":355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7749444","BestRank":1411,"BestRankAt":"2023-02-15T06:22:53.30524Z","MostPoints":3988,"MostPointsAt":"2023-02-15T06:22:53.30524Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30524Z","LastActivityAt":"2023-02-15T06:22:53.30524Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1484,"ScoreDef":35781,"RankSup":0,"ScoreSup":0,"RankTotal":1722,"ScoreTotal":35781,"ID":7750835,"Name":"Drago Mich","NumVillages":0,"Points":0,"Rank":2928,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7750835","BestRank":2928,"BestRankAt":"2023-02-15T06:22:53.305241Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305241Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305241Z","LastActivityAt":"2023-02-15T06:22:53.305241Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7751626,"Name":"neron Lodz","NumVillages":1,"Points":508,"Rank":2025,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7751626","BestRank":2025,"BestRankAt":"2023-02-15T06:22:53.305241Z","MostPoints":508,"MostPointsAt":"2023-02-15T06:22:53.305241Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305241Z","LastActivityAt":"2023-02-15T06:22:53.305242Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":383,"ScoreAtt":614029,"RankDef":1792,"ScoreDef":12794,"RankSup":174,"ScoreSup":1245645,"RankTotal":425,"ScoreTotal":1872468,"ID":7756002,"Name":"HORUS 33","NumVillages":55,"Points":461108,"Rank":281,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7756002","BestRank":281,"BestRankAt":"2023-02-15T06:22:53.305242Z","MostPoints":461108,"MostPointsAt":"2023-02-15T06:22:53.305242Z","MostVillages":55,"MostVillagesAt":"2023-02-15T06:22:53.305242Z","LastActivityAt":"2023-02-15T06:22:53.305242Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":110,"ScoreAtt":2788234,"RankDef":130,"ScoreDef":2982583,"RankSup":165,"ScoreSup":1322991,"RankTotal":123,"ScoreTotal":7093808,"ID":7758085,"Name":"Obywatel Leszcz","NumVillages":180,"Points":1585542,"Rank":73,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7758085","BestRank":73,"BestRankAt":"2023-02-15T06:22:53.305242Z","MostPoints":1585542,"MostPointsAt":"2023-02-15T06:22:53.305243Z","MostVillages":180,"MostVillagesAt":"2023-02-15T06:22:53.305242Z","LastActivityAt":"2023-02-15T06:22:53.305243Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":225,"ScoreAtt":1321264,"RankDef":138,"ScoreDef":2809964,"RankSup":832,"ScoreSup":19437,"RankTotal":229,"ScoreTotal":4150665,"ID":7765098,"Name":"perƂa 1983","NumVillages":10,"Points":90629,"Rank":557,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7765098","BestRank":557,"BestRankAt":"2023-02-15T06:22:53.305243Z","MostPoints":90629,"MostPointsAt":"2023-02-15T06:22:53.305243Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.305243Z","LastActivityAt":"2023-02-15T06:22:53.305243Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1494,"ScoreAtt":2430,"RankDef":2084,"ScoreDef":3054,"RankSup":1235,"ScoreSup":214,"RankTotal":2108,"ScoreTotal":5698,"ID":7775311,"Name":"lagoony","NumVillages":3,"Points":18825,"Rank":938,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7775311","BestRank":938,"BestRankAt":"2023-02-15T06:22:53.305243Z","MostPoints":18825,"MostPointsAt":"2023-02-15T06:22:53.305244Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305244Z","LastActivityAt":"2023-02-15T06:22:53.305244Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1912,"ScoreAtt":42,"RankDef":1030,"ScoreDef":115811,"RankSup":831,"ScoreSup":19441,"RankTotal":1284,"ScoreTotal":135294,"ID":7781236,"Name":"gajawa","NumVillages":1,"Points":634,"Rank":1975,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7781236","BestRank":1975,"BestRankAt":"2023-02-15T06:22:53.305244Z","MostPoints":634,"MostPointsAt":"2023-02-15T06:22:53.305244Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305244Z","LastActivityAt":"2023-02-15T06:22:53.305244Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1065,"ScoreDef":102888,"RankSup":0,"ScoreSup":0,"RankTotal":1380,"ScoreTotal":102888,"ID":7787254,"Name":"ziutek 1","NumVillages":1,"Points":7559,"Rank":1181,"TribeID":597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7787254","BestRank":1181,"BestRankAt":"2023-02-15T06:22:53.305245Z","MostPoints":7559,"MostPointsAt":"2023-02-15T06:22:53.305245Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305245Z","LastActivityAt":"2023-02-15T06:22:53.305245Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":742,"ScoreDef":246697,"RankSup":0,"ScoreSup":0,"RankTotal":1058,"ScoreTotal":246697,"ID":7802435,"Name":"nawi4","NumVillages":1,"Points":1070,"Rank":1843,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7802435","BestRank":1843,"BestRankAt":"2023-02-15T06:22:53.305245Z","MostPoints":1070,"MostPointsAt":"2023-02-15T06:22:53.305245Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305245Z","LastActivityAt":"2023-02-15T06:22:53.305245Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1805,"ScoreAtt":190,"RankDef":2161,"ScoreDef":1811,"RankSup":0,"ScoreSup":0,"RankTotal":2248,"ScoreTotal":2001,"ID":7803631,"Name":"Helios322","NumVillages":1,"Points":869,"Rank":1896,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7803631","BestRank":1896,"BestRankAt":"2023-02-15T06:22:53.305246Z","MostPoints":869,"MostPointsAt":"2023-02-15T06:22:53.305246Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305246Z","LastActivityAt":"2023-02-15T06:22:53.305246Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2076,"ScoreDef":3303,"RankSup":0,"ScoreSup":0,"RankTotal":2197,"ScoreTotal":3303,"ID":7809316,"Name":"japacz","NumVillages":1,"Points":26,"Rank":2656,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7809316","BestRank":2656,"BestRankAt":"2023-02-15T06:22:53.305246Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305246Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305246Z","LastActivityAt":"2023-02-15T06:22:53.305246Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1058,"ScoreDef":105301,"RankSup":0,"ScoreSup":0,"RankTotal":1374,"ScoreTotal":105301,"ID":7820575,"Name":"Mogok","NumVillages":1,"Points":173,"Rank":2346,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7820575","BestRank":2346,"BestRankAt":"2023-02-15T06:22:53.305247Z","MostPoints":173,"MostPointsAt":"2023-02-15T06:22:53.305247Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305247Z","LastActivityAt":"2023-02-15T06:22:53.305247Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":515,"ScoreAtt":329689,"RankDef":484,"ScoreDef":551196,"RankSup":45,"ScoreSup":3544230,"RankTotal":216,"ScoreTotal":4425115,"ID":7829201,"Name":"hbmacko","NumVillages":78,"Points":677151,"Rank":211,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7829201","BestRank":211,"BestRankAt":"2023-02-15T06:22:53.305247Z","MostPoints":677151,"MostPointsAt":"2023-02-15T06:22:53.305247Z","MostVillages":78,"MostVillagesAt":"2023-02-15T06:22:53.305247Z","LastActivityAt":"2023-02-15T06:22:53.305248Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1146,"ScoreAtt":14196,"RankDef":405,"ScoreDef":740950,"RankSup":0,"ScoreSup":0,"RankTotal":702,"ScoreTotal":755146,"ID":7831811,"Name":"dragon622","NumVillages":1,"Points":219,"Rank":2272,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7831811","BestRank":2272,"BestRankAt":"2023-02-15T06:22:53.305248Z","MostPoints":219,"MostPointsAt":"2023-02-15T06:22:53.305248Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305248Z","LastActivityAt":"2023-02-15T06:22:53.305248Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":483,"ScoreAtt":386096,"RankDef":295,"ScoreDef":1214988,"RankSup":1012,"ScoreSup":4441,"RankTotal":475,"ScoreTotal":1605525,"ID":7842579,"Name":"basket60","NumVillages":30,"Points":208683,"Rank":409,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7842579","BestRank":409,"BestRankAt":"2023-02-15T06:22:53.305248Z","MostPoints":208683,"MostPointsAt":"2023-02-15T06:22:53.305249Z","MostVillages":30,"MostVillagesAt":"2023-02-15T06:22:53.305248Z","LastActivityAt":"2023-02-15T06:22:53.305249Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7844370,"Name":"grzesiek576","NumVillages":1,"Points":299,"Rank":2176,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7844370","BestRank":2176,"BestRankAt":"2023-02-15T06:22:53.305249Z","MostPoints":299,"MostPointsAt":"2023-02-15T06:22:53.305249Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305249Z","LastActivityAt":"2023-02-15T06:22:53.305249Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":316,"ScoreAtt":853298,"RankDef":601,"ScoreDef":380516,"RankSup":221,"ScoreSup":805880,"RankTotal":401,"ScoreTotal":2039694,"ID":7860453,"Name":"Bombardier11","NumVillages":44,"Points":324986,"Rank":345,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7860453","BestRank":345,"BestRankAt":"2023-02-15T06:22:53.305249Z","MostPoints":324986,"MostPointsAt":"2023-02-15T06:22:53.30525Z","MostVillages":44,"MostVillagesAt":"2023-02-15T06:22:53.30525Z","LastActivityAt":"2023-02-15T06:22:53.30525Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2242,"ScoreDef":701,"RankSup":0,"ScoreSup":0,"RankTotal":2329,"ScoreTotal":701,"ID":7865511,"Name":"Mr Dymer","NumVillages":1,"Points":3622,"Rank":1447,"TribeID":1636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7865511","BestRank":1447,"BestRankAt":"2023-02-15T06:22:53.30525Z","MostPoints":3622,"MostPointsAt":"2023-02-15T06:22:53.30525Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30525Z","LastActivityAt":"2023-02-15T06:22:53.30525Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2063,"ScoreDef":3601,"RankSup":0,"ScoreSup":0,"RankTotal":2188,"ScoreTotal":3601,"ID":7866994,"Name":"znek8","NumVillages":1,"Points":1015,"Rank":1858,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7866994","BestRank":1858,"BestRankAt":"2023-02-15T06:22:53.305251Z","MostPoints":1015,"MostPointsAt":"2023-02-15T06:22:53.305251Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305251Z","LastActivityAt":"2023-02-15T06:22:53.305251Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1060,"ScoreAtt":22263,"RankDef":1135,"ScoreDef":86580,"RankSup":1387,"ScoreSup":2,"RankTotal":1361,"ScoreTotal":108845,"ID":7897925,"Name":"Destroyers96","NumVillages":0,"Points":0,"Rank":2929,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7897925","BestRank":2929,"BestRankAt":"2023-02-15T06:22:53.305251Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305251Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305251Z","LastActivityAt":"2023-02-15T06:22:53.305251Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1958,"ScoreAtt":15,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2511,"ScoreTotal":15,"ID":7899232,"Name":"seafighter1","NumVillages":1,"Points":7751,"Rank":1173,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7899232","BestRank":1173,"BestRankAt":"2023-02-15T06:22:53.305252Z","MostPoints":7751,"MostPointsAt":"2023-02-15T06:22:53.305252Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305252Z","LastActivityAt":"2023-02-15T06:22:53.305252Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7906167,"Name":"Kupidynek","NumVillages":1,"Points":26,"Rank":2657,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7906167","BestRank":2657,"BestRankAt":"2023-02-15T06:22:53.305252Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305252Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305252Z","LastActivityAt":"2023-02-15T06:22:53.305252Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1944,"ScoreAtt":23,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2493,"ScoreTotal":23,"ID":7910501,"Name":"Wigerek","NumVillages":1,"Points":271,"Rank":2202,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7910501","BestRank":2202,"BestRankAt":"2023-02-15T06:22:53.305253Z","MostPoints":271,"MostPointsAt":"2023-02-15T06:22:53.305253Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305253Z","LastActivityAt":"2023-02-15T06:22:53.305253Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1604,"ScoreAtt":1267,"RankDef":2450,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2292,"ScoreTotal":1277,"ID":7913305,"Name":"cycu269","NumVillages":1,"Points":1871,"Rank":1690,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7913305","BestRank":1690,"BestRankAt":"2023-02-15T06:22:53.305253Z","MostPoints":1871,"MostPointsAt":"2023-02-15T06:22:53.305253Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305253Z","LastActivityAt":"2023-02-15T06:22:53.305254Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2153,"ScoreDef":1891,"RankSup":0,"ScoreSup":0,"RankTotal":2254,"ScoreTotal":1891,"ID":7914131,"Name":"mateuszek15517","NumVillages":1,"Points":5067,"Rank":1322,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7914131","BestRank":1322,"BestRankAt":"2023-02-15T06:22:53.305254Z","MostPoints":5067,"MostPointsAt":"2023-02-15T06:22:53.305254Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305254Z","LastActivityAt":"2023-02-15T06:22:53.305254Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1859,"ScoreAtt":112,"RankDef":2285,"ScoreDef":388,"RankSup":0,"ScoreSup":0,"RankTotal":2350,"ScoreTotal":500,"ID":7915966,"Name":"JungleBoyz","NumVillages":4,"Points":28164,"Rank":828,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7915966","BestRank":828,"BestRankAt":"2023-02-15T06:22:53.305254Z","MostPoints":28164,"MostPointsAt":"2023-02-15T06:22:53.305255Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305254Z","LastActivityAt":"2023-02-15T06:22:53.305255Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1012,"ScoreAtt":28506,"RankDef":1305,"ScoreDef":56967,"RankSup":0,"ScoreSup":0,"RankTotal":1448,"ScoreTotal":85473,"ID":7919620,"Name":"Voxeti","NumVillages":6,"Points":31734,"Rank":795,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7919620","BestRank":795,"BestRankAt":"2023-02-15T06:22:53.305255Z","MostPoints":31734,"MostPointsAt":"2023-02-15T06:22:53.305255Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305255Z","LastActivityAt":"2023-02-15T06:22:53.305255Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2290,"ScoreDef":347,"RankSup":0,"ScoreSup":0,"RankTotal":2373,"ScoreTotal":347,"ID":7927374,"Name":"Knykieć Dyl","NumVillages":1,"Points":196,"Rank":2307,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7927374","BestRank":2307,"BestRankAt":"2023-02-15T06:22:53.305255Z","MostPoints":196,"MostPointsAt":"2023-02-15T06:22:53.305256Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305256Z","LastActivityAt":"2023-02-15T06:22:53.305256Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1982,"ScoreDef":5593,"RankSup":0,"ScoreSup":0,"RankTotal":2110,"ScoreTotal":5593,"ID":7929731,"Name":"rutek75","NumVillages":1,"Points":4267,"Rank":1388,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7929731","BestRank":1388,"BestRankAt":"2023-02-15T06:22:53.305256Z","MostPoints":4267,"MostPointsAt":"2023-02-15T06:22:53.305256Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305256Z","LastActivityAt":"2023-02-15T06:22:53.305256Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7951206,"Name":"Cegla x DrTaxi","NumVillages":1,"Points":41,"Rank":2608,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7951206","BestRank":2608,"BestRankAt":"2023-02-15T06:22:53.305257Z","MostPoints":41,"MostPointsAt":"2023-02-15T06:22:53.305257Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305257Z","LastActivityAt":"2023-02-15T06:22:53.305257Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7964548,"Name":"ABE 1","NumVillages":1,"Points":181,"Rank":2335,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7964548","BestRank":2335,"BestRankAt":"2023-02-15T06:22:53.305257Z","MostPoints":181,"MostPointsAt":"2023-02-15T06:22:53.305257Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305257Z","LastActivityAt":"2023-02-15T06:22:53.305257Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1213,"ScoreAtt":10136,"RankDef":1590,"ScoreDef":26130,"RankSup":775,"ScoreSup":30076,"RankTotal":1519,"ScoreTotal":66342,"ID":7970506,"Name":"botlike","NumVillages":1,"Points":26,"Rank":2658,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7970506","BestRank":2658,"BestRankAt":"2023-02-15T06:22:53.305258Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305258Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305258Z","LastActivityAt":"2023-02-15T06:22:53.305258Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":299,"ScoreAtt":919317,"RankDef":703,"ScoreDef":268909,"RankSup":583,"ScoreSup":105850,"RankTotal":539,"ScoreTotal":1294076,"ID":7973893,"Name":"Tedock","NumVillages":90,"Points":708894,"Rank":202,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7973893","BestRank":202,"BestRankAt":"2023-02-15T06:22:53.305258Z","MostPoints":708894,"MostPointsAt":"2023-02-15T06:22:53.305258Z","MostVillages":90,"MostVillagesAt":"2023-02-15T06:22:53.305258Z","LastActivityAt":"2023-02-15T06:22:53.305258Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":115,"ScoreAtt":2648080,"RankDef":504,"ScoreDef":510557,"RankSup":57,"ScoreSup":3119542,"RankTotal":141,"ScoreTotal":6278179,"ID":7976264,"Name":"komandos48","NumVillages":144,"Points":1180389,"Rank":116,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7976264","BestRank":116,"BestRankAt":"2023-02-15T06:22:53.305259Z","MostPoints":1180389,"MostPointsAt":"2023-02-15T06:22:53.305259Z","MostVillages":144,"MostVillagesAt":"2023-02-15T06:22:53.305259Z","LastActivityAt":"2023-02-15T06:22:53.305259Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2488,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2559,"ScoreTotal":4,"ID":7982117,"Name":"diabolllo","NumVillages":1,"Points":1043,"Rank":1849,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7982117","BestRank":1849,"BestRankAt":"2023-02-15T06:22:53.305259Z","MostPoints":1043,"MostPointsAt":"2023-02-15T06:22:53.305259Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305259Z","LastActivityAt":"2023-02-15T06:22:53.30526Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1575,"ScoreAtt":1565,"RankDef":2264,"ScoreDef":528,"RankSup":746,"ScoreSup":37004,"RankTotal":1688,"ScoreTotal":39097,"ID":7985956,"Name":"Bocianv2","NumVillages":1,"Points":8462,"Rank":1138,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7985956","BestRank":1138,"BestRankAt":"2023-02-15T06:22:53.30526Z","MostPoints":8462,"MostPointsAt":"2023-02-15T06:22:53.30526Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30526Z","LastActivityAt":"2023-02-15T06:22:53.30526Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1742,"ScoreAtt":357,"RankDef":498,"ScoreDef":522130,"RankSup":528,"ScoreSup":145732,"RankTotal":744,"ScoreTotal":668219,"ID":7995033,"Name":"adahin","NumVillages":1,"Points":487,"Rank":2038,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7995033","BestRank":2038,"BestRankAt":"2023-02-15T06:22:53.30526Z","MostPoints":487,"MostPointsAt":"2023-02-15T06:22:53.305261Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30526Z","LastActivityAt":"2023-02-15T06:22:53.305261Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":575,"ScoreAtt":241876,"RankDef":1663,"ScoreDef":21305,"RankSup":1015,"ScoreSup":4340,"RankTotal":1035,"ScoreTotal":267521,"ID":7999103,"Name":"Franko Mocny 2","NumVillages":22,"Points":144438,"Rank":472,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7999103","BestRank":472,"BestRankAt":"2023-02-15T06:22:53.305261Z","MostPoints":144438,"MostPointsAt":"2023-02-15T06:22:53.305262Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.305261Z","LastActivityAt":"2023-02-15T06:22:53.305262Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":20,"ScoreAtt":8080756,"RankDef":509,"ScoreDef":502744,"RankSup":127,"ScoreSup":1686105,"RankTotal":77,"ScoreTotal":10269605,"ID":8000875,"Name":"B. Moon l Black E.","NumVillages":230,"Points":1981975,"Rank":47,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8000875","BestRank":47,"BestRankAt":"2023-02-15T06:22:53.305262Z","MostPoints":1981975,"MostPointsAt":"2023-02-15T06:22:53.305262Z","MostVillages":230,"MostVillagesAt":"2023-02-15T06:22:53.305262Z","LastActivityAt":"2023-02-15T06:22:53.305262Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":65,"ScoreAtt":4384195,"RankDef":196,"ScoreDef":1928927,"RankSup":180,"ScoreSup":1116667,"RankTotal":114,"ScoreTotal":7429789,"ID":8004076,"Name":"ExpertoCredite","NumVillages":194,"Points":1705869,"Rank":65,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8004076","BestRank":65,"BestRankAt":"2023-02-15T06:22:53.305263Z","MostPoints":1705869,"MostPointsAt":"2023-02-15T06:22:53.305263Z","MostVillages":194,"MostVillagesAt":"2023-02-15T06:22:53.305263Z","LastActivityAt":"2023-02-15T06:22:53.305263Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1924,"ScoreAtt":36,"RankDef":1019,"ScoreDef":120011,"RankSup":0,"ScoreSup":0,"RankTotal":1325,"ScoreTotal":120047,"ID":8006209,"Name":"Szymon9904","NumVillages":1,"Points":692,"Rank":1954,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8006209","BestRank":1954,"BestRankAt":"2023-02-15T06:22:53.305263Z","MostPoints":692,"MostPointsAt":"2023-02-15T06:22:53.305263Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305263Z","LastActivityAt":"2023-02-15T06:22:53.305263Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":547,"ScoreAtt":286980,"RankDef":2061,"ScoreDef":3627,"RankSup":690,"ScoreSup":54161,"RankTotal":967,"ScoreTotal":344768,"ID":8013349,"Name":"Malinka696","NumVillages":33,"Points":282095,"Rank":362,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8013349","BestRank":362,"BestRankAt":"2023-02-15T06:22:53.305264Z","MostPoints":282095,"MostPointsAt":"2023-02-15T06:22:53.305264Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.305264Z","LastActivityAt":"2023-02-15T06:22:53.305264Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1846,"ScoreDef":10204,"RankSup":0,"ScoreSup":0,"RankTotal":1994,"ScoreTotal":10204,"ID":8015775,"Name":"nihal3377","NumVillages":3,"Points":10718,"Rank":1064,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8015775","BestRank":1064,"BestRankAt":"2023-02-15T06:22:53.305264Z","MostPoints":10718,"MostPointsAt":"2023-02-15T06:22:53.305264Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305264Z","LastActivityAt":"2023-02-15T06:22:53.305264Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1126,"ScoreAtt":16268,"RankDef":2459,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1919,"ScoreTotal":16278,"ID":8015955,"Name":"kacper10ciupek","NumVillages":2,"Points":9333,"Rank":1111,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8015955","BestRank":1111,"BestRankAt":"2023-02-15T06:22:53.305265Z","MostPoints":9333,"MostPointsAt":"2023-02-15T06:22:53.305265Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305265Z","LastActivityAt":"2023-02-15T06:22:53.305265Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":541,"ScoreDef":457747,"RankSup":0,"ScoreSup":0,"RankTotal":869,"ScoreTotal":457747,"ID":8019812,"Name":"Vladoks","NumVillages":1,"Points":5940,"Rank":1275,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8019812","BestRank":1275,"BestRankAt":"2023-02-15T06:22:53.305267Z","MostPoints":5940,"MostPointsAt":"2023-02-15T06:22:53.305267Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305267Z","LastActivityAt":"2023-02-15T06:22:53.305267Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8043286,"Name":"Saladyn Pustyny","NumVillages":1,"Points":26,"Rank":2659,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8043286","BestRank":2659,"BestRankAt":"2023-02-15T06:22:53.305268Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305268Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305268Z","LastActivityAt":"2023-02-15T06:22:53.305268Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":578,"ScoreAtt":240497,"RankDef":366,"ScoreDef":830634,"RankSup":566,"ScoreSup":121389,"RankTotal":560,"ScoreTotal":1192520,"ID":8048374,"Name":"szlon","NumVillages":21,"Points":158931,"Rank":450,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8048374","BestRank":450,"BestRankAt":"2023-02-15T06:22:53.305268Z","MostPoints":158931,"MostPointsAt":"2023-02-15T06:22:53.305268Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.305268Z","LastActivityAt":"2023-02-15T06:22:53.305269Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8055581,"Name":"Botty","NumVillages":1,"Points":228,"Rank":2252,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8055581","BestRank":2252,"BestRankAt":"2023-02-15T06:22:53.305269Z","MostPoints":228,"MostPointsAt":"2023-02-15T06:22:53.305269Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305269Z","LastActivityAt":"2023-02-15T06:22:53.305269Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1535,"ScoreDef":30563,"RankSup":0,"ScoreSup":0,"RankTotal":1766,"ScoreTotal":30563,"ID":8061953,"Name":"artnow","NumVillages":1,"Points":119,"Rank":2448,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8061953","BestRank":2448,"BestRankAt":"2023-02-15T06:22:53.305269Z","MostPoints":119,"MostPointsAt":"2023-02-15T06:22:53.30527Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305269Z","LastActivityAt":"2023-02-15T06:22:53.30527Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1682,"ScoreAtt":682,"RankDef":914,"ScoreDef":157553,"RankSup":0,"ScoreSup":0,"RankTotal":1233,"ScoreTotal":158235,"ID":8062053,"Name":"Dam-","NumVillages":1,"Points":1765,"Rank":1707,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8062053","BestRank":1707,"BestRankAt":"2023-02-15T06:22:53.30527Z","MostPoints":1765,"MostPointsAt":"2023-02-15T06:22:53.30527Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30527Z","LastActivityAt":"2023-02-15T06:22:53.30527Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":214,"ScoreAtt":1464445,"RankDef":822,"ScoreDef":197248,"RankSup":215,"ScoreSup":854046,"RankTotal":343,"ScoreTotal":2515739,"ID":8078914,"Name":"Panicore1","NumVillages":127,"Points":1159541,"Rank":118,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8078914","BestRank":118,"BestRankAt":"2023-02-15T06:22:53.30527Z","MostPoints":1159541,"MostPointsAt":"2023-02-15T06:22:53.305271Z","MostVillages":127,"MostVillagesAt":"2023-02-15T06:22:53.305271Z","LastActivityAt":"2023-02-15T06:22:53.305271Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1914,"ScoreDef":7509,"RankSup":0,"ScoreSup":0,"RankTotal":2057,"ScoreTotal":7509,"ID":8082376,"Name":"Chefrenus","NumVillages":1,"Points":2887,"Rank":1542,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8082376","BestRank":1542,"BestRankAt":"2023-02-15T06:22:53.305271Z","MostPoints":2887,"MostPointsAt":"2023-02-15T06:22:53.305271Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305271Z","LastActivityAt":"2023-02-15T06:22:53.305271Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":237,"ScoreAtt":1251455,"RankDef":1439,"ScoreDef":38969,"RankSup":431,"ScoreSup":250658,"RankTotal":482,"ScoreTotal":1541082,"ID":8083365,"Name":"Segadorr","NumVillages":1,"Points":26,"Rank":2660,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8083365","BestRank":2660,"BestRankAt":"2023-02-15T06:22:53.305272Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305272Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305272Z","LastActivityAt":"2023-02-15T06:22:53.305272Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8095505,"Name":"iSeAtakuj","NumVillages":1,"Points":26,"Rank":2661,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8095505","BestRank":2661,"BestRankAt":"2023-02-15T06:22:53.305272Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305272Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305272Z","LastActivityAt":"2023-02-15T06:22:53.305272Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":224,"ScoreAtt":1322646,"RankDef":912,"ScoreDef":157944,"RankSup":277,"ScoreSup":588570,"RankTotal":396,"ScoreTotal":2069160,"ID":8096537,"Name":"koffi950","NumVillages":80,"Points":724862,"Rank":197,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8096537","BestRank":197,"BestRankAt":"2023-02-15T06:22:53.305273Z","MostPoints":724862,"MostPointsAt":"2023-02-15T06:22:53.305273Z","MostVillages":80,"MostVillagesAt":"2023-02-15T06:22:53.305273Z","LastActivityAt":"2023-02-15T06:22:53.305273Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1519,"ScoreDef":32092,"RankSup":0,"ScoreSup":0,"RankTotal":1755,"ScoreTotal":32092,"ID":8097158,"Name":"maybe-later","NumVillages":1,"Points":1467,"Rank":1756,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8097158","BestRank":1756,"BestRankAt":"2023-02-15T06:22:53.305273Z","MostPoints":1467,"MostPointsAt":"2023-02-15T06:22:53.305273Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305273Z","LastActivityAt":"2023-02-15T06:22:53.305273Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":138,"ScoreAtt":2241865,"RankDef":2,"ScoreDef":57036551,"RankSup":53,"ScoreSup":3303897,"RankTotal":3,"ScoreTotal":62582313,"ID":8099868,"Name":"Brown","NumVillages":56,"Points":469814,"Rank":279,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8099868","BestRank":279,"BestRankAt":"2023-02-15T06:22:53.305274Z","MostPoints":469814,"MostPointsAt":"2023-02-15T06:22:53.305274Z","MostVillages":56,"MostVillagesAt":"2023-02-15T06:22:53.305274Z","LastActivityAt":"2023-02-15T06:22:53.305274Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8106333,"Name":"wojtas0112","NumVillages":1,"Points":213,"Rank":2280,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8106333","BestRank":2280,"BestRankAt":"2023-02-15T06:22:53.305274Z","MostPoints":213,"MostPointsAt":"2023-02-15T06:22:53.305274Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305274Z","LastActivityAt":"2023-02-15T06:22:53.305275Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1056,"ScoreAtt":22871,"RankDef":329,"ScoreDef":992528,"RankSup":864,"ScoreSup":15248,"RankTotal":609,"ScoreTotal":1030647,"ID":8123790,"Name":"ƁYSY WIATR","NumVillages":10,"Points":23714,"Rank":875,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8123790","BestRank":875,"BestRankAt":"2023-02-15T06:22:53.305275Z","MostPoints":23714,"MostPointsAt":"2023-02-15T06:22:53.305275Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.305275Z","LastActivityAt":"2023-02-15T06:22:53.305275Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1874,"ScoreDef":9086,"RankSup":1145,"ScoreSup":1078,"RankTotal":1995,"ScoreTotal":10164,"ID":8128478,"Name":"szabla32","NumVillages":1,"Points":560,"Rank":1999,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8128478","BestRank":1999,"BestRankAt":"2023-02-15T06:22:53.305275Z","MostPoints":560,"MostPointsAt":"2023-02-15T06:22:53.305276Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305275Z","LastActivityAt":"2023-02-15T06:22:53.305276Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8134135,"Name":"SHIRINA","NumVillages":1,"Points":468,"Rank":2047,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8134135","BestRank":2047,"BestRankAt":"2023-02-15T06:22:53.305276Z","MostPoints":468,"MostPointsAt":"2023-02-15T06:22:53.305276Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305276Z","LastActivityAt":"2023-02-15T06:22:53.305276Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":319,"ScoreAtt":834296,"RankDef":1202,"ScoreDef":72556,"RankSup":771,"ScoreSup":32382,"RankTotal":642,"ScoreTotal":939234,"ID":8138506,"Name":"jablonka345","NumVillages":43,"Points":405343,"Rank":300,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8138506","BestRank":300,"BestRankAt":"2023-02-15T06:22:53.305276Z","MostPoints":405343,"MostPointsAt":"2023-02-15T06:22:53.305277Z","MostVillages":43,"MostVillagesAt":"2023-02-15T06:22:53.305277Z","LastActivityAt":"2023-02-15T06:22:53.305277Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":281,"ScoreAtt":993105,"RankDef":29,"ScoreDef":11485813,"RankSup":37,"ScoreSup":4202695,"RankTotal":39,"ScoreTotal":16681613,"ID":8153179,"Name":"Gryffinhart","NumVillages":3,"Points":18354,"Rank":942,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8153179","BestRank":942,"BestRankAt":"2023-02-15T06:22:53.305277Z","MostPoints":18354,"MostPointsAt":"2023-02-15T06:22:53.305277Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305277Z","LastActivityAt":"2023-02-15T06:22:53.305277Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":609,"ScoreAtt":203283,"RankDef":812,"ScoreDef":203462,"RankSup":433,"ScoreSup":249142,"RankTotal":750,"ScoreTotal":655887,"ID":8153941,"Name":"IIIIIIIIIIIII","NumVillages":23,"Points":133106,"Rank":488,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8153941","BestRank":488,"BestRankAt":"2023-02-15T06:22:53.305278Z","MostPoints":133106,"MostPointsAt":"2023-02-15T06:22:53.305278Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.305278Z","LastActivityAt":"2023-02-15T06:22:53.305278Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":146,"ScoreAtt":2111136,"RankDef":97,"ScoreDef":3614607,"RankSup":74,"ScoreSup":2805192,"RankTotal":92,"ScoreTotal":8530935,"ID":8155296,"Name":"maniek 1985","NumVillages":56,"Points":521504,"Rank":260,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8155296","BestRank":260,"BestRankAt":"2023-02-15T06:22:53.305278Z","MostPoints":521504,"MostPointsAt":"2023-02-15T06:22:53.305278Z","MostVillages":56,"MostVillagesAt":"2023-02-15T06:22:53.305278Z","LastActivityAt":"2023-02-15T06:22:53.305278Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1999,"ScoreDef":5237,"RankSup":0,"ScoreSup":0,"RankTotal":2127,"ScoreTotal":5237,"ID":8160123,"Name":"Ahaber","NumVillages":0,"Points":0,"Rank":2930,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8160123","BestRank":2930,"BestRankAt":"2023-02-15T06:22:53.305279Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305279Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305279Z","LastActivityAt":"2023-02-15T06:22:53.305279Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1507,"ScoreAtt":2300,"RankDef":371,"ScoreDef":822175,"RankSup":608,"ScoreSup":94017,"RankTotal":649,"ScoreTotal":918492,"ID":8167837,"Name":"diwad11x","NumVillages":0,"Points":0,"Rank":2931,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8167837","BestRank":2931,"BestRankAt":"2023-02-15T06:22:53.305279Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305279Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305279Z","LastActivityAt":"2023-02-15T06:22:53.305279Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":776,"ScoreAtt":90768,"RankDef":185,"ScoreDef":2007007,"RankSup":325,"ScoreSup":453722,"RankTotal":341,"ScoreTotal":2551497,"ID":8175236,"Name":"Joker77777","NumVillages":14,"Points":18239,"Rank":943,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8175236","BestRank":943,"BestRankAt":"2023-02-15T06:22:53.30528Z","MostPoints":18239,"MostPointsAt":"2023-02-15T06:22:53.30528Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.30528Z","LastActivityAt":"2023-02-15T06:22:53.30528Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":528,"ScoreAtt":312394,"RankDef":191,"ScoreDef":1967646,"RankSup":465,"ScoreSup":202176,"RankTotal":348,"ScoreTotal":2482216,"ID":8184383,"Name":"ProXima26","NumVillages":7,"Points":43373,"Rank":722,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8184383","BestRank":722,"BestRankAt":"2023-02-15T06:22:53.30528Z","MostPoints":43373,"MostPointsAt":"2023-02-15T06:22:53.30528Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.30528Z","LastActivityAt":"2023-02-15T06:22:53.305281Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2462,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2528,"ScoreTotal":10,"ID":8185721,"Name":"endwar77","NumVillages":1,"Points":1918,"Rank":1681,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8185721","BestRank":1681,"BestRankAt":"2023-02-15T06:22:53.305281Z","MostPoints":1918,"MostPointsAt":"2023-02-15T06:22:53.305281Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305281Z","LastActivityAt":"2023-02-15T06:22:53.305281Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":369,"ScoreAtt":648499,"RankDef":738,"ScoreDef":248366,"RankSup":306,"ScoreSup":514380,"RankTotal":514,"ScoreTotal":1411245,"ID":8191129,"Name":"Diabellny","NumVillages":23,"Points":216775,"Rank":405,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8191129","BestRank":405,"BestRankAt":"2023-02-15T06:22:53.305281Z","MostPoints":216775,"MostPointsAt":"2023-02-15T06:22:53.305282Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.305281Z","LastActivityAt":"2023-02-15T06:22:53.305282Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1882,"ScoreAtt":75,"RankDef":1208,"ScoreDef":71549,"RankSup":0,"ScoreSup":0,"RankTotal":1496,"ScoreTotal":71624,"ID":8192845,"Name":"silesias marco","NumVillages":2,"Points":13377,"Rank":1021,"TribeID":1161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8192845","BestRank":1021,"BestRankAt":"2023-02-15T06:22:53.305282Z","MostPoints":13377,"MostPointsAt":"2023-02-15T06:22:53.305282Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305282Z","LastActivityAt":"2023-02-15T06:22:53.305282Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8197987,"Name":"Andragon21","NumVillages":1,"Points":61,"Rank":2558,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8197987","BestRank":2558,"BestRankAt":"2023-02-15T06:22:53.305282Z","MostPoints":61,"MostPointsAt":"2023-02-15T06:22:53.305283Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305283Z","LastActivityAt":"2023-02-15T06:22:53.305283Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":231,"ScoreAtt":1288954,"RankDef":1583,"ScoreDef":27027,"RankSup":10,"ScoreSup":6857996,"RankTotal":98,"ScoreTotal":8173977,"ID":8199417,"Name":"abimm5644","NumVillages":91,"Points":917993,"Rank":160,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8199417","BestRank":160,"BestRankAt":"2023-02-15T06:22:53.305283Z","MostPoints":917993,"MostPointsAt":"2023-02-15T06:22:53.305283Z","MostVillages":91,"MostVillagesAt":"2023-02-15T06:22:53.305283Z","LastActivityAt":"2023-02-15T06:22:53.305283Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":210,"ScoreAtt":1495104,"RankDef":904,"ScoreDef":164639,"RankSup":54,"ScoreSup":3269792,"RankTotal":190,"ScoreTotal":4929535,"ID":8201460,"Name":"MUNq","NumVillages":69,"Points":664238,"Rank":215,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8201460","BestRank":215,"BestRankAt":"2023-02-15T06:22:53.305284Z","MostPoints":664238,"MostPointsAt":"2023-02-15T06:22:53.305284Z","MostVillages":69,"MostVillagesAt":"2023-02-15T06:22:53.305284Z","LastActivityAt":"2023-02-15T06:22:53.305284Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1527,"ScoreDef":31261,"RankSup":0,"ScoreSup":0,"RankTotal":1761,"ScoreTotal":31261,"ID":8204028,"Name":"moskittt","NumVillages":1,"Points":307,"Rank":2170,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8204028","BestRank":2170,"BestRankAt":"2023-02-15T06:22:53.305284Z","MostPoints":307,"MostPointsAt":"2023-02-15T06:22:53.305284Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305284Z","LastActivityAt":"2023-02-15T06:22:53.305284Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1059,"ScoreAtt":22310,"RankDef":1086,"ScoreDef":97623,"RankSup":0,"ScoreSup":0,"RankTotal":1326,"ScoreTotal":119933,"ID":8204926,"Name":"crisyss","NumVillages":0,"Points":0,"Rank":2932,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8204926","BestRank":2932,"BestRankAt":"2023-02-15T06:22:53.305285Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305285Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305285Z","LastActivityAt":"2023-02-15T06:22:53.305285Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8217130,"Name":"dalesz1212","NumVillages":1,"Points":947,"Rank":1881,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8217130","BestRank":1881,"BestRankAt":"2023-02-15T06:22:53.305285Z","MostPoints":947,"MostPointsAt":"2023-02-15T06:22:53.305285Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305285Z","LastActivityAt":"2023-02-15T06:22:53.305285Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":544,"ScoreAtt":291140,"RankDef":265,"ScoreDef":1396037,"RankSup":438,"ScoreSup":246379,"RankTotal":415,"ScoreTotal":1933556,"ID":8218433,"Name":"yam1","NumVillages":1,"Points":169,"Rank":2355,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8218433","BestRank":2355,"BestRankAt":"2023-02-15T06:22:53.305286Z","MostPoints":169,"MostPointsAt":"2023-02-15T06:22:53.305286Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305286Z","LastActivityAt":"2023-02-15T06:22:53.305286Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1158,"ScoreAtt":13213,"RankDef":1338,"ScoreDef":53455,"RankSup":970,"ScoreSup":6391,"RankTotal":1487,"ScoreTotal":73059,"ID":8224678,"Name":"marcinnn19922","NumVillages":16,"Points":126806,"Rank":497,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8224678","BestRank":497,"BestRankAt":"2023-02-15T06:22:53.305286Z","MostPoints":126806,"MostPointsAt":"2023-02-15T06:22:53.305286Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.305286Z","LastActivityAt":"2023-02-15T06:22:53.305287Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8239348,"Name":"gejus007","NumVillages":1,"Points":128,"Rank":2426,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8239348","BestRank":2426,"BestRankAt":"2023-02-15T06:22:53.305287Z","MostPoints":128,"MostPointsAt":"2023-02-15T06:22:53.305287Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305287Z","LastActivityAt":"2023-02-15T06:22:53.305287Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1358,"ScoreDef":49834,"RankSup":0,"ScoreSup":0,"RankTotal":1614,"ScoreTotal":49834,"ID":8240209,"Name":"nagtagumpay","NumVillages":0,"Points":0,"Rank":2933,"TribeID":89,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8240209","BestRank":2933,"BestRankAt":"2023-02-15T06:22:53.305287Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305288Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305287Z","LastActivityAt":"2023-02-15T06:22:53.305288Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":986,"ScoreAtt":33054,"RankDef":1232,"ScoreDef":66920,"RankSup":0,"ScoreSup":0,"RankTotal":1393,"ScoreTotal":99974,"ID":8240677,"Name":"saskie123","NumVillages":6,"Points":41703,"Rank":734,"TribeID":176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8240677","BestRank":734,"BestRankAt":"2023-02-15T06:22:53.305288Z","MostPoints":41703,"MostPointsAt":"2023-02-15T06:22:53.305288Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305288Z","LastActivityAt":"2023-02-15T06:22:53.305288Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":496,"ScoreAtt":355418,"RankDef":1385,"ScoreDef":46727,"RankSup":1383,"ScoreSup":2,"RankTotal":913,"ScoreTotal":402147,"ID":8259895,"Name":"strateg5","NumVillages":51,"Points":261884,"Rank":375,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8259895","BestRank":375,"BestRankAt":"2023-02-15T06:22:53.305289Z","MostPoints":261884,"MostPointsAt":"2023-02-15T06:22:53.305289Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.305289Z","LastActivityAt":"2023-02-15T06:22:53.305289Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":413,"ScoreAtt":552609,"RankDef":722,"ScoreDef":261736,"RankSup":319,"ScoreSup":464671,"RankTotal":543,"ScoreTotal":1279016,"ID":8268010,"Name":"WALECZNY213","NumVillages":36,"Points":232895,"Rank":391,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8268010","BestRank":391,"BestRankAt":"2023-02-15T06:22:53.305289Z","MostPoints":232895,"MostPointsAt":"2023-02-15T06:22:53.305289Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.305289Z","LastActivityAt":"2023-02-15T06:22:53.305289Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1026,"ScoreAtt":27042,"RankDef":1542,"ScoreDef":30120,"RankSup":0,"ScoreSup":0,"RankTotal":1574,"ScoreTotal":57162,"ID":8274566,"Name":"dzoper1000","NumVillages":0,"Points":0,"Rank":2934,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8274566","BestRank":2934,"BestRankAt":"2023-02-15T06:22:53.30529Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.30529Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.30529Z","LastActivityAt":"2023-02-15T06:22:53.30529Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2006,"ScoreDef":4820,"RankSup":1327,"ScoreSup":13,"RankTotal":2139,"ScoreTotal":4833,"ID":8288459,"Name":"baka21sklad","NumVillages":0,"Points":0,"Rank":2935,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8288459","BestRank":2935,"BestRankAt":"2023-02-15T06:22:53.30529Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.30529Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.30529Z","LastActivityAt":"2023-02-15T06:22:53.30529Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8290773,"Name":"Chubi i marcinzero","NumVillages":1,"Points":26,"Rank":2662,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8290773","BestRank":2662,"BestRankAt":"2023-02-15T06:22:53.305291Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305291Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305291Z","LastActivityAt":"2023-02-15T06:22:53.305291Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1614,"ScoreAtt":1184,"RankDef":1961,"ScoreDef":6023,"RankSup":0,"ScoreSup":0,"RankTotal":2065,"ScoreTotal":7207,"ID":8292737,"Name":"wodzu 22","NumVillages":2,"Points":7837,"Rank":1167,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8292737","BestRank":1167,"BestRankAt":"2023-02-15T06:22:53.305291Z","MostPoints":7837,"MostPointsAt":"2023-02-15T06:22:53.305291Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305291Z","LastActivityAt":"2023-02-15T06:22:53.305292Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1524,"ScoreAtt":2139,"RankDef":2013,"ScoreDef":4583,"RankSup":0,"ScoreSup":0,"RankTotal":2076,"ScoreTotal":6722,"ID":8305343,"Name":"julix5","NumVillages":1,"Points":2332,"Rank":1609,"TribeID":503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8305343","BestRank":1609,"BestRankAt":"2023-02-15T06:22:53.305292Z","MostPoints":2332,"MostPointsAt":"2023-02-15T06:22:53.305292Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305292Z","LastActivityAt":"2023-02-15T06:22:53.305292Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8309492,"Name":"MANTOQ","NumVillages":1,"Points":204,"Rank":2292,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8309492","BestRank":2292,"BestRankAt":"2023-02-15T06:22:53.305292Z","MostPoints":204,"MostPointsAt":"2023-02-15T06:22:53.305293Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305292Z","LastActivityAt":"2023-02-15T06:22:53.305293Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8312412,"Name":"SwwQ","NumVillages":1,"Points":26,"Rank":2663,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8312412","BestRank":2663,"BestRankAt":"2023-02-15T06:22:53.305293Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305293Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305293Z","LastActivityAt":"2023-02-15T06:22:53.305293Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1720,"ScoreAtt":485,"RankDef":889,"ScoreDef":169254,"RankSup":810,"ScoreSup":23286,"RankTotal":1154,"ScoreTotal":193025,"ID":8320319,"Name":"niunio69","NumVillages":1,"Points":4176,"Rank":1395,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8320319","BestRank":1395,"BestRankAt":"2023-02-15T06:22:53.305293Z","MostPoints":4176,"MostPointsAt":"2023-02-15T06:22:53.305294Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305294Z","LastActivityAt":"2023-02-15T06:22:53.305294Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":193,"ScoreAtt":1608448,"RankDef":899,"ScoreDef":166369,"RankSup":876,"ScoreSup":14226,"RankTotal":441,"ScoreTotal":1789043,"ID":8323711,"Name":"Yaooo","NumVillages":56,"Points":504306,"Rank":266,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8323711","BestRank":266,"BestRankAt":"2023-02-15T06:22:53.305294Z","MostPoints":504306,"MostPointsAt":"2023-02-15T06:22:53.305294Z","MostVillages":56,"MostVillagesAt":"2023-02-15T06:22:53.305294Z","LastActivityAt":"2023-02-15T06:22:53.305294Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":939,"ScoreAtt":42299,"RankDef":1972,"ScoreDef":5800,"RankSup":0,"ScoreSup":0,"RankTotal":1628,"ScoreTotal":48099,"ID":8325063,"Name":"krzysiuaa","NumVillages":0,"Points":0,"Rank":2936,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8325063","BestRank":2936,"BestRankAt":"2023-02-15T06:22:53.305295Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305295Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305295Z","LastActivityAt":"2023-02-15T06:22:53.305295Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30565Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1457,"ScoreAtt":3082,"RankDef":616,"ScoreDef":360668,"RankSup":868,"ScoreSup":15122,"RankTotal":935,"ScoreTotal":378872,"ID":8325700,"Name":"bambinos66","NumVillages":2,"Points":7524,"Rank":1185,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8325700","BestRank":1185,"BestRankAt":"2023-02-15T06:22:53.305295Z","MostPoints":7524,"MostPointsAt":"2023-02-15T06:22:53.305295Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305295Z","LastActivityAt":"2023-02-15T06:22:53.305295Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30565Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":145,"ScoreAtt":2131768,"RankDef":769,"ScoreDef":232836,"RankSup":624,"ScoreSup":86004,"RankTotal":351,"ScoreTotal":2450608,"ID":8337151,"Name":"lisseks","NumVillages":133,"Points":1241146,"Rank":102,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8337151","BestRank":102,"BestRankAt":"2023-02-15T06:22:53.305296Z","MostPoints":1241146,"MostPointsAt":"2023-02-15T06:22:53.305296Z","MostVillages":133,"MostVillagesAt":"2023-02-15T06:22:53.305296Z","LastActivityAt":"2023-02-15T06:22:53.305296Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30565Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1592,"ScoreDef":25958,"RankSup":0,"ScoreSup":0,"RankTotal":1812,"ScoreTotal":25958,"ID":8362886,"Name":"lozi20","NumVillages":1,"Points":174,"Rank":2345,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8362886","BestRank":2345,"BestRankAt":"2023-02-15T06:22:53.305296Z","MostPoints":174,"MostPointsAt":"2023-02-15T06:22:53.305296Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305296Z","LastActivityAt":"2023-02-15T06:22:53.305296Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":682,"ScoreAtt":140454,"RankDef":1966,"ScoreDef":5883,"RankSup":1020,"ScoreSup":4164,"RankTotal":1248,"ScoreTotal":150501,"ID":8366045,"Name":"**Dzikos**","NumVillages":20,"Points":136688,"Rank":483,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8366045","BestRank":483,"BestRankAt":"2023-02-15T06:22:53.305297Z","MostPoints":136688,"MostPointsAt":"2023-02-15T06:22:53.305297Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.305297Z","LastActivityAt":"2023-02-15T06:22:53.305297Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1873,"ScoreDef":9089,"RankSup":0,"ScoreSup":0,"RankTotal":2017,"ScoreTotal":9089,"ID":8366849,"Name":"stopercool","NumVillages":1,"Points":133,"Rank":2409,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8366849","BestRank":2409,"BestRankAt":"2023-02-15T06:22:53.305297Z","MostPoints":133,"MostPointsAt":"2023-02-15T06:22:53.305297Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305297Z","LastActivityAt":"2023-02-15T06:22:53.305298Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":513,"ScoreAtt":331832,"RankDef":121,"ScoreDef":3160861,"RankSup":719,"ScoreSup":42661,"RankTotal":255,"ScoreTotal":3535354,"ID":8369561,"Name":"GELU-GELU","NumVillages":0,"Points":0,"Rank":2937,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8369561","BestRank":2937,"BestRankAt":"2023-02-15T06:22:53.305298Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305298Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305298Z","LastActivityAt":"2023-02-15T06:22:53.305298Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1824,"ScoreAtt":154,"RankDef":2064,"ScoreDef":3592,"RankSup":0,"ScoreSup":0,"RankTotal":2183,"ScoreTotal":3746,"ID":8369657,"Name":"czarna perƂa","NumVillages":1,"Points":1175,"Rank":1813,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8369657","BestRank":1813,"BestRankAt":"2023-02-15T06:22:53.305298Z","MostPoints":1175,"MostPointsAt":"2023-02-15T06:22:53.305299Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305298Z","LastActivityAt":"2023-02-15T06:22:53.305299Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":596,"ScoreAtt":216715,"RankDef":1491,"ScoreDef":34935,"RankSup":116,"ScoreSup":1933189,"RankTotal":383,"ScoreTotal":2184839,"ID":8369778,"Name":"PARASOL X","NumVillages":48,"Points":436353,"Rank":287,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8369778","BestRank":287,"BestRankAt":"2023-02-15T06:22:53.305299Z","MostPoints":436353,"MostPointsAt":"2023-02-15T06:22:53.305299Z","MostVillages":48,"MostVillagesAt":"2023-02-15T06:22:53.305299Z","LastActivityAt":"2023-02-15T06:22:53.305299Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1637,"ScoreAtt":950,"RankDef":1709,"ScoreDef":18198,"RankSup":0,"ScoreSup":0,"RankTotal":1882,"ScoreTotal":19148,"ID":8370183,"Name":"ZWIADOWCA 2","NumVillages":1,"Points":771,"Rank":1930,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8370183","BestRank":1930,"BestRankAt":"2023-02-15T06:22:53.305299Z","MostPoints":771,"MostPointsAt":"2023-02-15T06:22:53.3053Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.3053Z","LastActivityAt":"2023-02-15T06:22:53.3053Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1064,"ScoreAtt":21695,"RankDef":1113,"ScoreDef":91799,"RankSup":0,"ScoreSup":0,"RankTotal":1346,"ScoreTotal":113494,"ID":8373234,"Name":"20Cinek20","NumVillages":0,"Points":0,"Rank":2938,"TribeID":1626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8373234","BestRank":2938,"BestRankAt":"2023-02-15T06:22:53.3053Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305301Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305301Z","LastActivityAt":"2023-02-15T06:22:53.305301Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1560,"ScoreDef":28931,"RankSup":0,"ScoreSup":0,"RankTotal":1783,"ScoreTotal":28931,"ID":8379825,"Name":"Frolunda","NumVillages":1,"Points":536,"Rank":2008,"TribeID":474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8379825","BestRank":2008,"BestRankAt":"2023-02-15T06:22:53.305301Z","MostPoints":536,"MostPointsAt":"2023-02-15T06:22:53.305301Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305301Z","LastActivityAt":"2023-02-15T06:22:53.305301Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1862,"ScoreDef":9689,"RankSup":0,"ScoreSup":0,"RankTotal":2006,"ScoreTotal":9689,"ID":8379871,"Name":"bula1101-95","NumVillages":1,"Points":3662,"Rank":1444,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8379871","BestRank":1444,"BestRankAt":"2023-02-15T06:22:53.305302Z","MostPoints":3662,"MostPointsAt":"2023-02-15T06:22:53.305302Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305302Z","LastActivityAt":"2023-02-15T06:22:53.305302Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1945,"ScoreAtt":23,"RankDef":1550,"ScoreDef":29485,"RankSup":0,"ScoreSup":0,"RankTotal":1776,"ScoreTotal":29508,"ID":8386608,"Name":"milosz1612","NumVillages":0,"Points":0,"Rank":2939,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8386608","BestRank":2939,"BestRankAt":"2023-02-15T06:22:53.305302Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305302Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305302Z","LastActivityAt":"2023-02-15T06:22:53.305302Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8399822,"Name":"Future Traveler","NumVillages":1,"Points":26,"Rank":2664,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8399822","BestRank":2664,"BestRankAt":"2023-02-15T06:22:53.305303Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305303Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305303Z","LastActivityAt":"2023-02-15T06:22:53.305303Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1449,"ScoreAtt":3236,"RankDef":1315,"ScoreDef":55791,"RankSup":0,"ScoreSup":0,"RankTotal":1560,"ScoreTotal":59027,"ID":8400180,"Name":"plelinia","NumVillages":5,"Points":42910,"Rank":726,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8400180","BestRank":726,"BestRankAt":"2023-02-15T06:22:53.305303Z","MostPoints":42910,"MostPointsAt":"2023-02-15T06:22:53.305303Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.305303Z","LastActivityAt":"2023-02-15T06:22:53.305303Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1803,"ScoreAtt":207,"RankDef":924,"ScoreDef":151344,"RankSup":0,"ScoreSup":0,"RankTotal":1245,"ScoreTotal":151551,"ID":8400975,"Name":"leo1414","NumVillages":2,"Points":3410,"Rank":1483,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8400975","BestRank":1483,"BestRankAt":"2023-02-15T06:22:53.305304Z","MostPoints":3410,"MostPointsAt":"2023-02-15T06:22:53.305304Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305304Z","LastActivityAt":"2023-02-15T06:22:53.305304Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2023,"ScoreDef":4427,"RankSup":1302,"ScoreSup":27,"RankTotal":2155,"ScoreTotal":4454,"ID":8408007,"Name":"admirer2","NumVillages":1,"Points":1987,"Rank":1668,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8408007","BestRank":1668,"BestRankAt":"2023-02-15T06:22:53.305304Z","MostPoints":1987,"MostPointsAt":"2023-02-15T06:22:53.305304Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305304Z","LastActivityAt":"2023-02-15T06:22:53.305305Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1922,"ScoreDef":7212,"RankSup":0,"ScoreSup":0,"RankTotal":2064,"ScoreTotal":7212,"ID":8411874,"Name":"uks13","NumVillages":1,"Points":771,"Rank":1931,"TribeID":841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8411874","BestRank":1931,"BestRankAt":"2023-02-15T06:22:53.305305Z","MostPoints":771,"MostPointsAt":"2023-02-15T06:22:53.305305Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305305Z","LastActivityAt":"2023-02-15T06:22:53.305305Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":699,"ScoreAtt":130798,"RankDef":1859,"ScoreDef":9722,"RankSup":0,"ScoreSup":0,"RankTotal":1269,"ScoreTotal":140520,"ID":8418489,"Name":"Inpetto","NumVillages":10,"Points":71555,"Rank":607,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8418489","BestRank":607,"BestRankAt":"2023-02-15T06:22:53.305305Z","MostPoints":71555,"MostPointsAt":"2023-02-15T06:22:53.305306Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.305305Z","LastActivityAt":"2023-02-15T06:22:53.305306Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":52,"ScoreAtt":4839651,"RankDef":316,"ScoreDef":1071165,"RankSup":256,"ScoreSup":664256,"RankTotal":136,"ScoreTotal":6575072,"ID":8419570,"Name":"Maddov","NumVillages":116,"Points":1069193,"Rank":131,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8419570","BestRank":131,"BestRankAt":"2023-02-15T06:22:53.305306Z","MostPoints":1069193,"MostPointsAt":"2023-02-15T06:22:53.305306Z","MostVillages":116,"MostVillagesAt":"2023-02-15T06:22:53.305306Z","LastActivityAt":"2023-02-15T06:22:53.305306Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1605,"ScoreAtt":1252,"RankDef":1146,"ScoreDef":85303,"RankSup":0,"ScoreSup":0,"RankTotal":1445,"ScoreTotal":86555,"ID":8420564,"Name":"dawinczi397","NumVillages":0,"Points":0,"Rank":2940,"TribeID":520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8420564","BestRank":2940,"BestRankAt":"2023-02-15T06:22:53.305306Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305307Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305307Z","LastActivityAt":"2023-02-15T06:22:53.305307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1196,"ScoreAtt":10882,"RankDef":142,"ScoreDef":2734448,"RankSup":916,"ScoreSup":10283,"RankTotal":314,"ScoreTotal":2755613,"ID":8423835,"Name":"niunia wredna","NumVillages":1,"Points":484,"Rank":2039,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8423835","BestRank":2039,"BestRankAt":"2023-02-15T06:22:53.305307Z","MostPoints":484,"MostPointsAt":"2023-02-15T06:22:53.305307Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305307Z","LastActivityAt":"2023-02-15T06:22:53.305307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1894,"ScoreAtt":55,"RankDef":2045,"ScoreDef":3932,"RankSup":0,"ScoreSup":0,"RankTotal":2171,"ScoreTotal":3987,"ID":8425594,"Name":"bobo2210","NumVillages":1,"Points":7987,"Rank":1159,"TribeID":1582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8425594","BestRank":1159,"BestRankAt":"2023-02-15T06:22:53.305308Z","MostPoints":7987,"MostPointsAt":"2023-02-15T06:22:53.305308Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305308Z","LastActivityAt":"2023-02-15T06:22:53.305308Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":602,"ScoreAtt":213489,"RankDef":1450,"ScoreDef":38415,"RankSup":253,"ScoreSup":681873,"RankTotal":645,"ScoreTotal":933777,"ID":8428196,"Name":"Sonofrad","NumVillages":64,"Points":500563,"Rank":271,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8428196","BestRank":271,"BestRankAt":"2023-02-15T06:22:53.305308Z","MostPoints":500563,"MostPointsAt":"2023-02-15T06:22:53.305308Z","MostVillages":64,"MostVillagesAt":"2023-02-15T06:22:53.305308Z","LastActivityAt":"2023-02-15T06:22:53.305308Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8429484,"Name":"MarekLH44","NumVillages":1,"Points":2003,"Rank":1664,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8429484","BestRank":1664,"BestRankAt":"2023-02-15T06:22:53.305309Z","MostPoints":2003,"MostPointsAt":"2023-02-15T06:22:53.305309Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305309Z","LastActivityAt":"2023-02-15T06:22:53.305309Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2351,"ScoreDef":79,"RankSup":0,"ScoreSup":0,"RankTotal":2446,"ScoreTotal":79,"ID":8434727,"Name":"Hektor888","NumVillages":1,"Points":886,"Rank":1891,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8434727","BestRank":1891,"BestRankAt":"2023-02-15T06:22:53.305309Z","MostPoints":886,"MostPointsAt":"2023-02-15T06:22:53.305309Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305309Z","LastActivityAt":"2023-02-15T06:22:53.305309Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":610,"ScoreAtt":203184,"RankDef":1115,"ScoreDef":91687,"RankSup":1326,"ScoreSup":13,"RankTotal":1009,"ScoreTotal":294884,"ID":8438707,"Name":"rom2009","NumVillages":18,"Points":143544,"Rank":473,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8438707","BestRank":473,"BestRankAt":"2023-02-15T06:22:53.30531Z","MostPoints":143544,"MostPointsAt":"2023-02-15T06:22:53.30531Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.30531Z","LastActivityAt":"2023-02-15T06:22:53.30531Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":297,"ScoreAtt":921138,"RankDef":761,"ScoreDef":235012,"RankSup":896,"ScoreSup":12377,"RankTotal":569,"ScoreTotal":1168527,"ID":8444356,"Name":"optyksrebro","NumVillages":19,"Points":190005,"Rank":426,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8444356","BestRank":426,"BestRankAt":"2023-02-15T06:22:53.30531Z","MostPoints":190005,"MostPointsAt":"2023-02-15T06:22:53.30531Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.30531Z","LastActivityAt":"2023-02-15T06:22:53.305311Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1735,"ScoreAtt":382,"RankDef":1036,"ScoreDef":114982,"RankSup":0,"ScoreSup":0,"RankTotal":1342,"ScoreTotal":115364,"ID":8444698,"Name":"Menager86","NumVillages":4,"Points":7264,"Rank":1204,"TribeID":1691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8444698","BestRank":1204,"BestRankAt":"2023-02-15T06:22:53.305311Z","MostPoints":7264,"MostPointsAt":"2023-02-15T06:22:53.305311Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305311Z","LastActivityAt":"2023-02-15T06:22:53.305311Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":143,"ScoreAtt":2165507,"RankDef":389,"ScoreDef":779152,"RankSup":454,"ScoreSup":220696,"RankTotal":277,"ScoreTotal":3165355,"ID":8459255,"Name":"pallad","NumVillages":99,"Points":951452,"Rank":154,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8459255","BestRank":154,"BestRankAt":"2023-02-15T06:22:53.305311Z","MostPoints":951452,"MostPointsAt":"2023-02-15T06:22:53.305312Z","MostVillages":99,"MostVillagesAt":"2023-02-15T06:22:53.305312Z","LastActivityAt":"2023-02-15T06:22:53.305312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8468862,"Name":"pol992","NumVillages":1,"Points":121,"Rank":2443,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8468862","BestRank":2443,"BestRankAt":"2023-02-15T06:22:53.305312Z","MostPoints":121,"MostPointsAt":"2023-02-15T06:22:53.305312Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305312Z","LastActivityAt":"2023-02-15T06:22:53.305312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":467,"ScoreAtt":416170,"RankDef":69,"ScoreDef":4865740,"RankSup":927,"ScoreSup":9708,"RankTotal":174,"ScoreTotal":5291618,"ID":8478874,"Name":"Tyson 23","NumVillages":1,"Points":5802,"Rank":1284,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8478874","BestRank":1284,"BestRankAt":"2023-02-15T06:22:53.305313Z","MostPoints":5802,"MostPointsAt":"2023-02-15T06:22:53.305313Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305313Z","LastActivityAt":"2023-02-15T06:22:53.305313Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":767,"ScoreDef":233698,"RankSup":1336,"ScoreSup":9,"RankTotal":1081,"ScoreTotal":233707,"ID":8483719,"Name":"Maja40","NumVillages":1,"Points":1856,"Rank":1693,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8483719","BestRank":1693,"BestRankAt":"2023-02-15T06:22:53.305313Z","MostPoints":1856,"MostPointsAt":"2023-02-15T06:22:53.305313Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305313Z","LastActivityAt":"2023-02-15T06:22:53.305313Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1248,"ScoreAtt":8340,"RankDef":634,"ScoreDef":341384,"RankSup":1288,"ScoreSup":40,"RankTotal":960,"ScoreTotal":349764,"ID":8501514,"Name":"Kugiel102","NumVillages":7,"Points":45603,"Rank":715,"TribeID":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8501514","BestRank":715,"BestRankAt":"2023-02-15T06:22:53.305314Z","MostPoints":45603,"MostPointsAt":"2023-02-15T06:22:53.305314Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305314Z","LastActivityAt":"2023-02-15T06:22:53.305314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1686,"ScoreAtt":671,"RankDef":1002,"ScoreDef":124730,"RankSup":671,"ScoreSup":60876,"RankTotal":1174,"ScoreTotal":186277,"ID":8502135,"Name":"OZON-01","NumVillages":1,"Points":1189,"Rank":1810,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8502135","BestRank":1810,"BestRankAt":"2023-02-15T06:22:53.305314Z","MostPoints":1189,"MostPointsAt":"2023-02-15T06:22:53.305314Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305314Z","LastActivityAt":"2023-02-15T06:22:53.305314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":888,"ScoreAtt":53417,"RankDef":255,"ScoreDef":1454075,"RankSup":1304,"ScoreSup":23,"RankTotal":493,"ScoreTotal":1507515,"ID":8503255,"Name":"Czapla506506","NumVillages":2,"Points":5682,"Rank":1290,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8503255","BestRank":1290,"BestRankAt":"2023-02-15T06:22:53.305315Z","MostPoints":5682,"MostPointsAt":"2023-02-15T06:22:53.305315Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305315Z","LastActivityAt":"2023-02-15T06:22:53.305315Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2034,"ScoreDef":4098,"RankSup":0,"ScoreSup":0,"RankTotal":2166,"ScoreTotal":4098,"ID":8510466,"Name":"RychuR","NumVillages":0,"Points":0,"Rank":2941,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8510466","BestRank":2941,"BestRankAt":"2023-02-15T06:22:53.305315Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305315Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305315Z","LastActivityAt":"2023-02-15T06:22:53.305316Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1568,"ScoreAtt":1677,"RankDef":483,"ScoreDef":551349,"RankSup":241,"ScoreSup":736044,"RankTotal":540,"ScoreTotal":1289070,"ID":8513699,"Name":"JW1964","NumVillages":4,"Points":23167,"Rank":880,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8513699","BestRank":880,"BestRankAt":"2023-02-15T06:22:53.305316Z","MostPoints":23167,"MostPointsAt":"2023-02-15T06:22:53.305316Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305316Z","LastActivityAt":"2023-02-15T06:22:53.305316Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":67,"ScoreAtt":4262575,"RankDef":55,"ScoreDef":6145786,"RankSup":40,"ScoreSup":4024436,"RankTotal":52,"ScoreTotal":14432797,"ID":8539216,"Name":"adamkk222","NumVillages":138,"Points":302479,"Rank":355,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8539216","BestRank":355,"BestRankAt":"2023-02-15T06:22:53.305316Z","MostPoints":302479,"MostPointsAt":"2023-02-15T06:22:53.305317Z","MostVillages":138,"MostVillagesAt":"2023-02-15T06:22:53.305316Z","LastActivityAt":"2023-02-15T06:22:53.305317Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":606,"ScoreAtt":206989,"RankDef":1875,"ScoreDef":9053,"RankSup":1212,"ScoreSup":327,"RankTotal":1115,"ScoreTotal":216369,"ID":8541236,"Name":"katoryjcias","NumVillages":8,"Points":69115,"Rank":617,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8541236","BestRank":617,"BestRankAt":"2023-02-15T06:22:53.305317Z","MostPoints":69115,"MostPointsAt":"2023-02-15T06:22:53.305317Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.305317Z","LastActivityAt":"2023-02-15T06:22:53.305317Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8551316,"Name":"vaksso","NumVillages":1,"Points":113,"Rank":2459,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8551316","BestRank":2459,"BestRankAt":"2023-02-15T06:22:53.305317Z","MostPoints":113,"MostPointsAt":"2023-02-15T06:22:53.305318Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305318Z","LastActivityAt":"2023-02-15T06:22:53.305318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1880,"ScoreAtt":82,"RankDef":1613,"ScoreDef":25031,"RankSup":0,"ScoreSup":0,"RankTotal":1819,"ScoreTotal":25113,"ID":8552893,"Name":"dynamit666","NumVillages":1,"Points":2421,"Rank":1594,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8552893","BestRank":1594,"BestRankAt":"2023-02-15T06:22:53.305318Z","MostPoints":2421,"MostPointsAt":"2023-02-15T06:22:53.305318Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305318Z","LastActivityAt":"2023-02-15T06:22:53.305318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1917,"ScoreDef":7449,"RankSup":0,"ScoreSup":0,"RankTotal":2062,"ScoreTotal":7449,"ID":8553904,"Name":"Byziaczek","NumVillages":1,"Points":2140,"Rank":1638,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8553904","BestRank":1638,"BestRankAt":"2023-02-15T06:22:53.305319Z","MostPoints":2140,"MostPointsAt":"2023-02-15T06:22:53.305319Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305319Z","LastActivityAt":"2023-02-15T06:22:53.305319Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1054,"ScoreAtt":22959,"RankDef":1168,"ScoreDef":79600,"RankSup":1343,"ScoreSup":7,"RankTotal":1383,"ScoreTotal":102566,"ID":8574922,"Name":"mleczyk123","NumVillages":0,"Points":0,"Rank":2942,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8574922","BestRank":2942,"BestRankAt":"2023-02-15T06:22:53.305319Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.30532Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305319Z","LastActivityAt":"2023-02-15T06:22:53.30532Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1014,"ScoreAtt":28311,"RankDef":909,"ScoreDef":159112,"RankSup":0,"ScoreSup":0,"RankTotal":1169,"ScoreTotal":187423,"ID":8582487,"Name":"Jarl Pękniny","NumVillages":2,"Points":16548,"Rank":975,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8582487","BestRank":975,"BestRankAt":"2023-02-15T06:22:53.30532Z","MostPoints":16548,"MostPointsAt":"2023-02-15T06:22:53.30532Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.30532Z","LastActivityAt":"2023-02-15T06:22:53.30532Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2439,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2546,"ScoreTotal":10,"ID":8583185,"Name":"kaka858","NumVillages":1,"Points":1131,"Rank":1822,"TribeID":1754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8583185","BestRank":1822,"BestRankAt":"2023-02-15T06:22:53.30532Z","MostPoints":1131,"MostPointsAt":"2023-02-15T06:22:53.305321Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305321Z","LastActivityAt":"2023-02-15T06:22:53.305321Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1067,"ScoreAtt":21557,"RankDef":809,"ScoreDef":204935,"RankSup":1237,"ScoreSup":210,"RankTotal":1095,"ScoreTotal":226702,"ID":8588789,"Name":"lolobolos","NumVillages":1,"Points":8790,"Rank":1125,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8588789","BestRank":1125,"BestRankAt":"2023-02-15T06:22:53.305321Z","MostPoints":8790,"MostPointsAt":"2023-02-15T06:22:53.305321Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305321Z","LastActivityAt":"2023-02-15T06:22:53.305321Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":657,"ScoreDef":313270,"RankSup":1219,"ScoreSup":294,"RankTotal":992,"ScoreTotal":313564,"ID":8593382,"Name":"lee-1","NumVillages":0,"Points":0,"Rank":2943,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8593382","BestRank":2943,"BestRankAt":"2023-02-15T06:22:53.305322Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305322Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305322Z","LastActivityAt":"2023-02-15T06:22:53.305322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8595633,"Name":"pi0run","NumVillages":1,"Points":284,"Rank":2192,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8595633","BestRank":2192,"BestRankAt":"2023-02-15T06:22:53.305322Z","MostPoints":284,"MostPointsAt":"2023-02-15T06:22:53.305322Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305322Z","LastActivityAt":"2023-02-15T06:22:53.305322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1458,"ScoreAtt":3078,"RankDef":1186,"ScoreDef":75942,"RankSup":0,"ScoreSup":0,"RankTotal":1466,"ScoreTotal":79020,"ID":8606809,"Name":"sengus avan123","NumVillages":5,"Points":25248,"Rank":858,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8606809","BestRank":858,"BestRankAt":"2023-02-15T06:22:53.305323Z","MostPoints":25248,"MostPointsAt":"2023-02-15T06:22:53.305323Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.305323Z","LastActivityAt":"2023-02-15T06:22:53.305323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":485,"ScoreAtt":385579,"RankDef":90,"ScoreDef":3752641,"RankSup":162,"ScoreSup":1350626,"RankTotal":165,"ScoreTotal":5488846,"ID":8607734,"Name":"EnPater","NumVillages":60,"Points":523391,"Rank":258,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8607734","BestRank":258,"BestRankAt":"2023-02-15T06:22:53.305323Z","MostPoints":523391,"MostPointsAt":"2023-02-15T06:22:53.305323Z","MostVillages":60,"MostVillagesAt":"2023-02-15T06:22:53.305323Z","LastActivityAt":"2023-02-15T06:22:53.305323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1082,"ScoreAtt":19983,"RankDef":1250,"ScoreDef":63361,"RankSup":953,"ScoreSup":7700,"RankTotal":1432,"ScoreTotal":91044,"ID":8609713,"Name":"Vlo4","NumVillages":6,"Points":33157,"Rank":786,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8609713","BestRank":786,"BestRankAt":"2023-02-15T06:22:53.305324Z","MostPoints":33157,"MostPointsAt":"2023-02-15T06:22:53.305324Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305324Z","LastActivityAt":"2023-02-15T06:22:53.305324Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":257,"ScoreAtt":1086396,"RankDef":1180,"ScoreDef":77104,"RankSup":184,"ScoreSup":1072946,"RankTotal":378,"ScoreTotal":2236446,"ID":8612358,"Name":"Brayan20","NumVillages":32,"Points":254918,"Rank":379,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8612358","BestRank":379,"BestRankAt":"2023-02-15T06:22:53.305324Z","MostPoints":254918,"MostPointsAt":"2023-02-15T06:22:53.305324Z","MostVillages":32,"MostVillagesAt":"2023-02-15T06:22:53.305324Z","LastActivityAt":"2023-02-15T06:22:53.305325Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8616713,"Name":"Vasqu","NumVillages":1,"Points":206,"Rank":2290,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8616713","BestRank":2290,"BestRankAt":"2023-02-15T06:22:53.305325Z","MostPoints":206,"MostPointsAt":"2023-02-15T06:22:53.305325Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305325Z","LastActivityAt":"2023-02-15T06:22:53.305325Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1862,"ScoreAtt":108,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2438,"ScoreTotal":108,"ID":8617889,"Name":"Herold102","NumVillages":1,"Points":1669,"Rank":1720,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8617889","BestRank":1720,"BestRankAt":"2023-02-15T06:22:53.305325Z","MostPoints":1669,"MostPointsAt":"2023-02-15T06:22:53.305326Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305325Z","LastActivityAt":"2023-02-15T06:22:53.305326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8621570,"Name":"iminlove","NumVillages":1,"Points":173,"Rank":2347,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8621570","BestRank":2347,"BestRankAt":"2023-02-15T06:22:53.305326Z","MostPoints":173,"MostPointsAt":"2023-02-15T06:22:53.305326Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305326Z","LastActivityAt":"2023-02-15T06:22:53.305326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1730,"ScoreDef":17031,"RankSup":0,"ScoreSup":0,"RankTotal":1906,"ScoreTotal":17031,"ID":8622901,"Name":"ArturNowy","NumVillages":4,"Points":13272,"Rank":1024,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8622901","BestRank":1024,"BestRankAt":"2023-02-15T06:22:53.305327Z","MostPoints":13272,"MostPointsAt":"2023-02-15T06:22:53.305327Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305327Z","LastActivityAt":"2023-02-15T06:22:53.305327Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":347,"ScoreAtt":700860,"RankDef":2103,"ScoreDef":2707,"RankSup":137,"ScoreSup":1572300,"RankTotal":371,"ScoreTotal":2275867,"ID":8627359,"Name":"Gregorius XII","NumVillages":46,"Points":377741,"Rank":310,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8627359","BestRank":310,"BestRankAt":"2023-02-15T06:22:53.305327Z","MostPoints":377741,"MostPointsAt":"2023-02-15T06:22:53.305328Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.305327Z","LastActivityAt":"2023-02-15T06:22:53.305328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":135,"ScoreAtt":2276843,"RankDef":1331,"ScoreDef":54719,"RankSup":230,"ScoreSup":768149,"RankTotal":280,"ScoreTotal":3099711,"ID":8630972,"Name":"PijaniiBracia","NumVillages":308,"Points":2582551,"Rank":19,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8630972","BestRank":19,"BestRankAt":"2023-02-15T06:22:53.305328Z","MostPoints":2582551,"MostPointsAt":"2023-02-15T06:22:53.305328Z","MostVillages":308,"MostVillagesAt":"2023-02-15T06:22:53.305328Z","LastActivityAt":"2023-02-15T06:22:53.305328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":295,"ScoreAtt":934854,"RankDef":279,"ScoreDef":1311596,"RankSup":192,"ScoreSup":1011488,"RankTotal":269,"ScoreTotal":3257938,"ID":8632462,"Name":"rohhan415","NumVillages":65,"Points":482769,"Rank":273,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8632462","BestRank":273,"BestRankAt":"2023-02-15T06:22:53.305329Z","MostPoints":482769,"MostPointsAt":"2023-02-15T06:22:53.305329Z","MostVillages":65,"MostVillagesAt":"2023-02-15T06:22:53.305329Z","LastActivityAt":"2023-02-15T06:22:53.305329Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8644299,"Name":"MAXIMUS-1","NumVillages":1,"Points":26,"Rank":2665,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8644299","BestRank":2665,"BestRankAt":"2023-02-15T06:22:53.305329Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.30533Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305329Z","LastActivityAt":"2023-02-15T06:22:53.30533Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8646849,"Name":"Margog","NumVillages":0,"Points":0,"Rank":2944,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8646849","BestRank":2944,"BestRankAt":"2023-02-15T06:22:53.30533Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.30533Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.30533Z","LastActivityAt":"2023-02-15T06:22:53.30533Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":127,"ScoreAtt":2399784,"RankDef":30,"ScoreDef":11303579,"RankSup":247,"ScoreSup":716776,"RankTotal":53,"ScoreTotal":14420139,"ID":8649412,"Name":"Unforget","NumVillages":53,"Points":480190,"Rank":274,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8649412","BestRank":274,"BestRankAt":"2023-02-15T06:22:53.305331Z","MostPoints":480190,"MostPointsAt":"2023-02-15T06:22:53.305331Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.305331Z","LastActivityAt":"2023-02-15T06:22:53.305331Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8651917,"Name":"markam27","NumVillages":1,"Points":1452,"Rank":1759,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8651917","BestRank":1759,"BestRankAt":"2023-02-15T06:22:53.305331Z","MostPoints":1452,"MostPointsAt":"2023-02-15T06:22:53.305332Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305332Z","LastActivityAt":"2023-02-15T06:22:53.305332Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":300,"ScoreAtt":919083,"RankDef":1296,"ScoreDef":58269,"RankSup":210,"ScoreSup":877068,"RankTotal":427,"ScoreTotal":1854420,"ID":8654156,"Name":"Taki Pan","NumVillages":1,"Points":10362,"Rank":1076,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8654156","BestRank":1076,"BestRankAt":"2023-02-15T06:22:53.305332Z","MostPoints":10362,"MostPointsAt":"2023-02-15T06:22:53.305332Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305332Z","LastActivityAt":"2023-02-15T06:22:53.305332Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":150,"ScoreAtt":2037809,"RankDef":1114,"ScoreDef":91760,"RankSup":962,"ScoreSup":7260,"RankTotal":391,"ScoreTotal":2136829,"ID":8662264,"Name":"-umino-","NumVillages":1,"Points":26,"Rank":2666,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8662264","BestRank":2666,"BestRankAt":"2023-02-15T06:22:53.305333Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305333Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305333Z","LastActivityAt":"2023-02-15T06:22:53.305333Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2363,"ScoreDef":52,"RankSup":0,"ScoreSup":0,"RankTotal":2457,"ScoreTotal":52,"ID":8662634,"Name":"QiczikJP","NumVillages":1,"Points":278,"Rank":2196,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8662634","BestRank":2196,"BestRankAt":"2023-02-15T06:22:53.305334Z","MostPoints":278,"MostPointsAt":"2023-02-15T06:22:53.305334Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305334Z","LastActivityAt":"2023-02-15T06:22:53.305334Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":462,"ScoreAtt":428088,"RankDef":690,"ScoreDef":280921,"RankSup":331,"ScoreSup":443350,"RankTotal":574,"ScoreTotal":1152359,"ID":8665783,"Name":"kolomoloolo","NumVillages":46,"Points":326551,"Rank":344,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8665783","BestRank":344,"BestRankAt":"2023-02-15T06:22:53.305334Z","MostPoints":326551,"MostPointsAt":"2023-02-15T06:22:53.305334Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.305334Z","LastActivityAt":"2023-02-15T06:22:53.305334Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1120,"ScoreAtt":16694,"RankDef":2209,"ScoreDef":1082,"RankSup":0,"ScoreSup":0,"RankTotal":1892,"ScoreTotal":17776,"ID":8669398,"Name":"misiu809","NumVillages":12,"Points":61876,"Rank":646,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8669398","BestRank":646,"BestRankAt":"2023-02-15T06:22:53.305335Z","MostPoints":61876,"MostPointsAt":"2023-02-15T06:22:53.305335Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.305335Z","LastActivityAt":"2023-02-15T06:22:53.305335Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":809,"ScoreAtt":76735,"RankDef":424,"ScoreDef":678183,"RankSup":303,"ScoreSup":522493,"RankTotal":544,"ScoreTotal":1277411,"ID":8674163,"Name":"klekoc","NumVillages":9,"Points":58845,"Rank":658,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8674163","BestRank":658,"BestRankAt":"2023-02-15T06:22:53.305335Z","MostPoints":58845,"MostPointsAt":"2023-02-15T06:22:53.305335Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.305335Z","LastActivityAt":"2023-02-15T06:22:53.305336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":277,"ScoreAtt":1006884,"RankDef":407,"ScoreDef":732623,"RankSup":701,"ScoreSup":49109,"RankTotal":443,"ScoreTotal":1788616,"ID":8675636,"Name":"Hubix","NumVillages":85,"Points":797697,"Rank":181,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8675636","BestRank":181,"BestRankAt":"2023-02-15T06:22:53.305336Z","MostPoints":797697,"MostPointsAt":"2023-02-15T06:22:53.305336Z","MostVillages":85,"MostVillagesAt":"2023-02-15T06:22:53.305336Z","LastActivityAt":"2023-02-15T06:22:53.305336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":654,"ScoreAtt":156113,"RankDef":1396,"ScoreDef":44577,"RankSup":800,"ScoreSup":24677,"RankTotal":1099,"ScoreTotal":225367,"ID":8677963,"Name":"WSWW","NumVillages":26,"Points":157842,"Rank":453,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8677963","BestRank":453,"BestRankAt":"2023-02-15T06:22:53.305336Z","MostPoints":157842,"MostPointsAt":"2023-02-15T06:22:53.305337Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.305336Z","LastActivityAt":"2023-02-15T06:22:53.305337Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1639,"ScoreAtt":923,"RankDef":2250,"ScoreDef":621,"RankSup":0,"ScoreSup":0,"RankTotal":2274,"ScoreTotal":1544,"ID":8678008,"Name":"Hanka32","NumVillages":1,"Points":9103,"Rank":1118,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8678008","BestRank":1118,"BestRankAt":"2023-02-15T06:22:53.305337Z","MostPoints":9103,"MostPointsAt":"2023-02-15T06:22:53.305337Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305337Z","LastActivityAt":"2023-02-15T06:22:53.305337Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1909,"ScoreAtt":44,"RankDef":1894,"ScoreDef":8233,"RankSup":0,"ScoreSup":0,"RankTotal":2035,"ScoreTotal":8277,"ID":8696132,"Name":"Sportowiec73","NumVillages":1,"Points":3606,"Rank":1450,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8696132","BestRank":1450,"BestRankAt":"2023-02-15T06:22:53.305337Z","MostPoints":3606,"MostPointsAt":"2023-02-15T06:22:53.305338Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305338Z","LastActivityAt":"2023-02-15T06:22:53.305338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1638,"ScoreAtt":933,"RankDef":918,"ScoreDef":155674,"RankSup":782,"ScoreSup":29124,"RankTotal":1176,"ScoreTotal":185731,"ID":8698728,"Name":"zosia321","NumVillages":1,"Points":3372,"Rank":1488,"TribeID":211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8698728","BestRank":1488,"BestRankAt":"2023-02-15T06:22:53.305338Z","MostPoints":3372,"MostPointsAt":"2023-02-15T06:22:53.305338Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305338Z","LastActivityAt":"2023-02-15T06:22:53.305338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1353,"ScoreAtt":5241,"RankDef":2124,"ScoreDef":2367,"RankSup":1147,"ScoreSup":1058,"RankTotal":2029,"ScoreTotal":8666,"ID":8699429,"Name":"MaƂpa07","NumVillages":2,"Points":8634,"Rank":1130,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8699429","BestRank":1130,"BestRankAt":"2023-02-15T06:22:53.305339Z","MostPoints":8634,"MostPointsAt":"2023-02-15T06:22:53.305339Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305339Z","LastActivityAt":"2023-02-15T06:22:53.305339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8704709,"Name":"AzER","NumVillages":1,"Points":26,"Rank":2667,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8704709","BestRank":2667,"BestRankAt":"2023-02-15T06:22:53.305339Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305339Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305339Z","LastActivityAt":"2023-02-15T06:22:53.305339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1899,"ScoreAtt":51,"RankDef":798,"ScoreDef":211960,"RankSup":1399,"ScoreSup":2,"RankTotal":1119,"ScoreTotal":212013,"ID":8708728,"Name":"vodka442","NumVillages":1,"Points":301,"Rank":2173,"TribeID":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8708728","BestRank":2173,"BestRankAt":"2023-02-15T06:22:53.30534Z","MostPoints":301,"MostPointsAt":"2023-02-15T06:22:53.30534Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30534Z","LastActivityAt":"2023-02-15T06:22:53.30534Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8709940,"Name":"Khorstes","NumVillages":1,"Points":26,"Rank":2668,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8709940","BestRank":2668,"BestRankAt":"2023-02-15T06:22:53.30534Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.30534Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30534Z","LastActivityAt":"2023-02-15T06:22:53.30534Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":368,"ScoreAtt":649362,"RankDef":125,"ScoreDef":3102084,"RankSup":240,"ScoreSup":740743,"RankTotal":209,"ScoreTotal":4492189,"ID":8710047,"Name":"mikolaj4862","NumVillages":2,"Points":19844,"Rank":922,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8710047","BestRank":922,"BestRankAt":"2023-02-15T06:22:53.305341Z","MostPoints":19844,"MostPointsAt":"2023-02-15T06:22:53.305341Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305341Z","LastActivityAt":"2023-02-15T06:22:53.305341Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1395,"ScoreDef":44787,"RankSup":1414,"ScoreSup":1,"RankTotal":1645,"ScoreTotal":44788,"ID":8720321,"Name":"jajoasia","NumVillages":1,"Points":782,"Rank":1924,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8720321","BestRank":1924,"BestRankAt":"2023-02-15T06:22:53.305342Z","MostPoints":782,"MostPointsAt":"2023-02-15T06:22:53.305342Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305342Z","LastActivityAt":"2023-02-15T06:22:53.305342Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1049,"ScoreAtt":23550,"RankDef":1974,"ScoreDef":5787,"RankSup":1231,"ScoreSup":233,"RankTotal":1774,"ScoreTotal":29570,"ID":8724192,"Name":"michal21871","NumVillages":22,"Points":88685,"Rank":564,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8724192","BestRank":564,"BestRankAt":"2023-02-15T06:22:53.305342Z","MostPoints":88685,"MostPointsAt":"2023-02-15T06:22:53.305342Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.305342Z","LastActivityAt":"2023-02-15T06:22:53.305343Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8728202,"Name":"Sharkox","NumVillages":1,"Points":26,"Rank":2669,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8728202","BestRank":2669,"BestRankAt":"2023-02-15T06:22:53.305343Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305343Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305343Z","LastActivityAt":"2023-02-15T06:22:53.305343Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":757,"ScoreAtt":97726,"RankDef":1544,"ScoreDef":30043,"RankSup":322,"ScoreSup":458469,"RankTotal":776,"ScoreTotal":586238,"ID":8729672,"Name":"Wychylybymy14","NumVillages":20,"Points":187597,"Rank":428,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8729672","BestRank":428,"BestRankAt":"2023-02-15T06:22:53.305344Z","MostPoints":187597,"MostPointsAt":"2023-02-15T06:22:53.305344Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.305344Z","LastActivityAt":"2023-02-15T06:22:53.305344Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":183,"ScoreAtt":1716256,"RankDef":306,"ScoreDef":1136594,"RankSup":316,"ScoreSup":479167,"RankTotal":263,"ScoreTotal":3332017,"ID":8740199,"Name":"miterez9","NumVillages":85,"Points":733900,"Rank":195,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8740199","BestRank":195,"BestRankAt":"2023-02-15T06:22:53.305345Z","MostPoints":733900,"MostPointsAt":"2023-02-15T06:22:53.305345Z","MostVillages":85,"MostVillagesAt":"2023-02-15T06:22:53.305345Z","LastActivityAt":"2023-02-15T06:22:53.305345Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1483,"ScoreAtt":2592,"RankDef":534,"ScoreDef":472471,"RankSup":0,"ScoreSup":0,"RankTotal":860,"ScoreTotal":475063,"ID":8741336,"Name":"lord zbyszek1960","NumVillages":1,"Points":3207,"Rank":1504,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8741336","BestRank":1504,"BestRankAt":"2023-02-15T06:22:53.305345Z","MostPoints":3207,"MostPointsAt":"2023-02-15T06:22:53.305346Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305346Z","LastActivityAt":"2023-02-15T06:22:53.305346Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":451,"ScoreAtt":449527,"RankDef":1911,"ScoreDef":7565,"RankSup":509,"ScoreSup":165699,"RankTotal":770,"ScoreTotal":622791,"ID":8742874,"Name":"Monia i Ruch","NumVillages":26,"Points":178793,"Rank":435,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8742874","BestRank":435,"BestRankAt":"2023-02-15T06:22:53.305346Z","MostPoints":178793,"MostPointsAt":"2023-02-15T06:22:53.305346Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.305346Z","LastActivityAt":"2023-02-15T06:22:53.305346Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8746112,"Name":"King Grzes","NumVillages":1,"Points":47,"Rank":2588,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8746112","BestRank":2588,"BestRankAt":"2023-02-15T06:22:53.305347Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.305347Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305347Z","LastActivityAt":"2023-02-15T06:22:53.305347Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30567Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":965,"ScoreAtt":36292,"RankDef":1189,"ScoreDef":75259,"RankSup":1239,"ScoreSup":188,"RankTotal":1354,"ScoreTotal":111739,"ID":8752714,"Name":"Kamol1998","NumVillages":7,"Points":21890,"Rank":891,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8752714","BestRank":891,"BestRankAt":"2023-02-15T06:22:53.305347Z","MostPoints":21890,"MostPointsAt":"2023-02-15T06:22:53.305348Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305348Z","LastActivityAt":"2023-02-15T06:22:53.305348Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30567Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1319,"ScoreAtt":5998,"RankDef":350,"ScoreDef":891275,"RankSup":1159,"ScoreSup":886,"RankTotal":657,"ScoreTotal":898159,"ID":8753956,"Name":"GanjaMafiaTHC","NumVillages":0,"Points":0,"Rank":2945,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8753956","BestRank":2945,"BestRankAt":"2023-02-15T06:22:53.305348Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305348Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305348Z","LastActivityAt":"2023-02-15T06:22:53.305348Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30567Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1122,"ScoreAtt":16424,"RankDef":565,"ScoreDef":412229,"RankSup":1117,"ScoreSup":1575,"RankTotal":886,"ScoreTotal":430228,"ID":8758298,"Name":"piotr1960","NumVillages":1,"Points":1578,"Rank":1738,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8758298","BestRank":1738,"BestRankAt":"2023-02-15T06:22:53.305349Z","MostPoints":1578,"MostPointsAt":"2023-02-15T06:22:53.305349Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305349Z","LastActivityAt":"2023-02-15T06:22:53.305349Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30567Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1759,"ScoreAtt":308,"RankDef":486,"ScoreDef":544500,"RankSup":0,"ScoreSup":0,"RankTotal":807,"ScoreTotal":544808,"ID":8760124,"Name":"Bonaro","NumVillages":1,"Points":4359,"Rank":1383,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8760124","BestRank":1383,"BestRankAt":"2023-02-15T06:22:53.305349Z","MostPoints":4359,"MostPointsAt":"2023-02-15T06:22:53.30535Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305349Z","LastActivityAt":"2023-02-15T06:22:53.30535Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1269,"ScoreDef":60434,"RankSup":1043,"ScoreSup":3121,"RankTotal":1537,"ScoreTotal":63555,"ID":8760563,"Name":"dziwas2","NumVillages":1,"Points":1899,"Rank":1683,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8760563","BestRank":1683,"BestRankAt":"2023-02-15T06:22:53.30535Z","MostPoints":1899,"MostPointsAt":"2023-02-15T06:22:53.30535Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30535Z","LastActivityAt":"2023-02-15T06:22:53.30535Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8766033,"Name":"Your Nightmare","NumVillages":1,"Points":46,"Rank":2595,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8766033","BestRank":2595,"BestRankAt":"2023-02-15T06:22:53.30535Z","MostPoints":46,"MostPointsAt":"2023-02-15T06:22:53.305351Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305351Z","LastActivityAt":"2023-02-15T06:22:53.305351Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1041,"ScoreAtt":24730,"RankDef":1682,"ScoreDef":19893,"RankSup":0,"ScoreSup":0,"RankTotal":1646,"ScoreTotal":44623,"ID":8772425,"Name":"FilozofMiejski","NumVillages":29,"Points":98841,"Rank":542,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8772425","BestRank":542,"BestRankAt":"2023-02-15T06:22:53.305351Z","MostPoints":98841,"MostPointsAt":"2023-02-15T06:22:53.305351Z","MostVillages":29,"MostVillagesAt":"2023-02-15T06:22:53.305351Z","LastActivityAt":"2023-02-15T06:22:53.305351Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1933,"ScoreAtt":30,"RankDef":1631,"ScoreDef":23556,"RankSup":0,"ScoreSup":0,"RankTotal":1834,"ScoreTotal":23586,"ID":8772923,"Name":"szalony iwan","NumVillages":1,"Points":531,"Rank":2011,"TribeID":200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8772923","BestRank":2011,"BestRankAt":"2023-02-15T06:22:53.305352Z","MostPoints":531,"MostPointsAt":"2023-02-15T06:22:53.305352Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305352Z","LastActivityAt":"2023-02-15T06:22:53.305352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8773151,"Name":"Lord Zabijaka1999","NumVillages":1,"Points":47,"Rank":2589,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8773151","BestRank":2589,"BestRankAt":"2023-02-15T06:22:53.305352Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.305352Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305352Z","LastActivityAt":"2023-02-15T06:22:53.305352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1609,"ScoreDef":25205,"RankSup":0,"ScoreSup":0,"RankTotal":1817,"ScoreTotal":25205,"ID":8773967,"Name":"chudyn","NumVillages":2,"Points":14564,"Rank":1004,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8773967","BestRank":1004,"BestRankAt":"2023-02-15T06:22:53.305353Z","MostPoints":14564,"MostPointsAt":"2023-02-15T06:22:53.305353Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305353Z","LastActivityAt":"2023-02-15T06:22:53.305353Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1649,"ScoreDef":22333,"RankSup":0,"ScoreSup":0,"RankTotal":1846,"ScoreTotal":22333,"ID":8776452,"Name":"polotny33","NumVillages":1,"Points":307,"Rank":2171,"TribeID":1477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8776452","BestRank":2171,"BestRankAt":"2023-02-15T06:22:53.305353Z","MostPoints":307,"MostPointsAt":"2023-02-15T06:22:53.305353Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305353Z","LastActivityAt":"2023-02-15T06:22:53.305353Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":167,"ScoreAtt":1904294,"RankDef":16,"ScoreDef":18080334,"RankSup":198,"ScoreSup":939440,"RankTotal":26,"ScoreTotal":20924068,"ID":8779575,"Name":"I ZNOWU KUBA","NumVillages":51,"Points":272719,"Rank":364,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8779575","BestRank":364,"BestRankAt":"2023-02-15T06:22:53.305354Z","MostPoints":272719,"MostPointsAt":"2023-02-15T06:22:53.305354Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.305354Z","LastActivityAt":"2023-02-15T06:22:53.305354Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1222,"ScoreAtt":9759,"RankDef":614,"ScoreDef":362398,"RankSup":0,"ScoreSup":0,"RankTotal":942,"ScoreTotal":372157,"ID":8784866,"Name":"Spasny","NumVillages":1,"Points":6528,"Rank":1240,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8784866","BestRank":1240,"BestRankAt":"2023-02-15T06:22:53.305354Z","MostPoints":6528,"MostPointsAt":"2023-02-15T06:22:53.305354Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305354Z","LastActivityAt":"2023-02-15T06:22:53.305355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1807,"ScoreDef":12004,"RankSup":0,"ScoreSup":0,"RankTotal":1967,"ScoreTotal":12004,"ID":8785003,"Name":"ignacy","NumVillages":4,"Points":10242,"Rank":1078,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8785003","BestRank":1078,"BestRankAt":"2023-02-15T06:22:53.305355Z","MostPoints":10242,"MostPointsAt":"2023-02-15T06:22:53.305355Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.305355Z","LastActivityAt":"2023-02-15T06:22:53.305355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":285,"ScoreAtt":986979,"RankDef":1148,"ScoreDef":85008,"RankSup":902,"ScoreSup":11613,"RankTotal":596,"ScoreTotal":1083600,"ID":8785314,"Name":"Jehu","NumVillages":72,"Points":556547,"Rank":250,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8785314","BestRank":250,"BestRankAt":"2023-02-15T06:22:53.305355Z","MostPoints":556547,"MostPointsAt":"2023-02-15T06:22:53.305356Z","MostVillages":72,"MostVillagesAt":"2023-02-15T06:22:53.305355Z","LastActivityAt":"2023-02-15T06:22:53.305356Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":28,"ScoreAtt":6910051,"RankDef":52,"ScoreDef":6350192,"RankSup":89,"ScoreSup":2380957,"RankTotal":45,"ScoreTotal":15641200,"ID":8788366,"Name":"Lord Arsey","NumVillages":128,"Points":1247224,"Rank":100,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8788366","BestRank":100,"BestRankAt":"2023-02-15T06:22:53.305356Z","MostPoints":1247224,"MostPointsAt":"2023-02-15T06:22:53.305356Z","MostVillages":128,"MostVillagesAt":"2023-02-15T06:22:53.305356Z","LastActivityAt":"2023-02-15T06:22:53.305356Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8790027,"Name":"Sir Wiking","NumVillages":1,"Points":109,"Rank":2466,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8790027","BestRank":2466,"BestRankAt":"2023-02-15T06:22:53.305356Z","MostPoints":109,"MostPointsAt":"2023-02-15T06:22:53.305357Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305357Z","LastActivityAt":"2023-02-15T06:22:53.305357Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1409,"ScoreAtt":4017,"RankDef":1926,"ScoreDef":7135,"RankSup":0,"ScoreSup":0,"RankTotal":1985,"ScoreTotal":11152,"ID":8792844,"Name":"atotadzio","NumVillages":3,"Points":10461,"Rank":1074,"TribeID":287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8792844","BestRank":1074,"BestRankAt":"2023-02-15T06:22:53.305357Z","MostPoints":10461,"MostPointsAt":"2023-02-15T06:22:53.305357Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305357Z","LastActivityAt":"2023-02-15T06:22:53.305357Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":934,"ScoreAtt":43248,"RankDef":1104,"ScoreDef":93768,"RankSup":1000,"ScoreSup":5138,"RankTotal":1263,"ScoreTotal":142154,"ID":8796215,"Name":"Dnabuk","NumVillages":0,"Points":0,"Rank":2946,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8796215","BestRank":2946,"BestRankAt":"2023-02-15T06:22:53.305358Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305358Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305358Z","LastActivityAt":"2023-02-15T06:22:53.305358Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1464,"ScoreAtt":2969,"RankDef":1457,"ScoreDef":37985,"RankSup":0,"ScoreSup":0,"RankTotal":1676,"ScoreTotal":40954,"ID":8806145,"Name":"MegaMocny","NumVillages":1,"Points":2208,"Rank":1628,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8806145","BestRank":1628,"BestRankAt":"2023-02-15T06:22:53.305358Z","MostPoints":2208,"MostPointsAt":"2023-02-15T06:22:53.305358Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305358Z","LastActivityAt":"2023-02-15T06:22:53.305358Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":933,"ScoreAtt":43447,"RankDef":1432,"ScoreDef":39516,"RankSup":634,"ScoreSup":79998,"RankTotal":1225,"ScoreTotal":162961,"ID":8811880,"Name":"tomek016","NumVillages":7,"Points":13380,"Rank":1020,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8811880","BestRank":1020,"BestRankAt":"2023-02-15T06:22:53.305359Z","MostPoints":13380,"MostPointsAt":"2023-02-15T06:22:53.305359Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.305359Z","LastActivityAt":"2023-02-15T06:22:53.305359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1356,"ScoreAtt":5165,"RankDef":108,"ScoreDef":3411009,"RankSup":367,"ScoreSup":372360,"RankTotal":243,"ScoreTotal":3788534,"ID":8812550,"Name":"przytulaczekROBO","NumVillages":1,"Points":2517,"Rank":1584,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8812550","BestRank":1584,"BestRankAt":"2023-02-15T06:22:53.305359Z","MostPoints":2517,"MostPointsAt":"2023-02-15T06:22:53.305359Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305359Z","LastActivityAt":"2023-02-15T06:22:53.305359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2141,"ScoreDef":2079,"RankSup":0,"ScoreSup":0,"RankTotal":2239,"ScoreTotal":2079,"ID":8815353,"Name":"Lord PaweƂ I","NumVillages":0,"Points":0,"Rank":2947,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8815353","BestRank":2947,"BestRankAt":"2023-02-15T06:22:53.30536Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.30536Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.30536Z","LastActivityAt":"2023-02-15T06:22:53.30536Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":159,"ScoreAtt":1985158,"RankDef":1231,"ScoreDef":67260,"RankSup":573,"ScoreSup":116281,"RankTotal":386,"ScoreTotal":2168699,"ID":8815749,"Name":"Sir Black Blood","NumVillages":21,"Points":204164,"Rank":411,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8815749","BestRank":411,"BestRankAt":"2023-02-15T06:22:53.30536Z","MostPoints":204164,"MostPointsAt":"2023-02-15T06:22:53.30536Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.30536Z","LastActivityAt":"2023-02-15T06:22:53.305361Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8816336,"Name":"Lord Ɓukasz05","NumVillages":1,"Points":2371,"Rank":1601,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8816336","BestRank":1601,"BestRankAt":"2023-02-15T06:22:53.305361Z","MostPoints":2371,"MostPointsAt":"2023-02-15T06:22:53.305361Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305361Z","LastActivityAt":"2023-02-15T06:22:53.305361Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2441,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2529,"ScoreTotal":10,"ID":8819990,"Name":"bitefight1998","NumVillages":1,"Points":361,"Rank":2117,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8819990","BestRank":2117,"BestRankAt":"2023-02-15T06:22:53.305361Z","MostPoints":361,"MostPointsAt":"2023-02-15T06:22:53.305362Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305361Z","LastActivityAt":"2023-02-15T06:22:53.305362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1506,"ScoreAtt":2312,"RankDef":1673,"ScoreDef":20178,"RankSup":0,"ScoreSup":0,"RankTotal":1844,"ScoreTotal":22490,"ID":8827094,"Name":"ElitoPogero","NumVillages":10,"Points":88024,"Rank":568,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8827094","BestRank":568,"BestRankAt":"2023-02-15T06:22:53.305362Z","MostPoints":88024,"MostPointsAt":"2023-02-15T06:22:53.305362Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.305362Z","LastActivityAt":"2023-02-15T06:22:53.305362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":859,"ScoreDef":183378,"RankSup":0,"ScoreSup":0,"RankTotal":1182,"ScoreTotal":183378,"ID":8831977,"Name":"skowron","NumVillages":1,"Points":168,"Rank":2356,"TribeID":89,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8831977","BestRank":2356,"BestRankAt":"2023-02-15T06:22:53.305362Z","MostPoints":168,"MostPointsAt":"2023-02-15T06:22:53.305363Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305363Z","LastActivityAt":"2023-02-15T06:22:53.305363Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8838462,"Name":"Wilkuwolf","NumVillages":1,"Points":282,"Rank":2194,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8838462","BestRank":2194,"BestRankAt":"2023-02-15T06:22:53.305363Z","MostPoints":282,"MostPointsAt":"2023-02-15T06:22:53.305363Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305363Z","LastActivityAt":"2023-02-15T06:22:53.305363Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1827,"ScoreAtt":150,"RankDef":592,"ScoreDef":386028,"RankSup":1162,"ScoreSup":880,"RankTotal":929,"ScoreTotal":387058,"ID":8839171,"Name":"Marwinek","NumVillages":1,"Points":3504,"Rank":1461,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8839171","BestRank":1461,"BestRankAt":"2023-02-15T06:22:53.305364Z","MostPoints":3504,"MostPointsAt":"2023-02-15T06:22:53.305364Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305364Z","LastActivityAt":"2023-02-15T06:22:53.305364Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1497,"ScoreDef":34460,"RankSup":0,"ScoreSup":0,"RankTotal":1732,"ScoreTotal":34460,"ID":8839403,"Name":"IgnacEs","NumVillages":3,"Points":22893,"Rank":882,"TribeID":255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8839403","BestRank":882,"BestRankAt":"2023-02-15T06:22:53.305364Z","MostPoints":22893,"MostPointsAt":"2023-02-15T06:22:53.305364Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305364Z","LastActivityAt":"2023-02-15T06:22:53.305364Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":4,"ScoreAtt":18639899,"RankDef":333,"ScoreDef":984309,"RankSup":7,"ScoreSup":9136677,"RankTotal":15,"ScoreTotal":28760885,"ID":8841266,"Name":"Bandii.","NumVillages":672,"Points":6139081,"Rank":4,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8841266","BestRank":4,"BestRankAt":"2023-02-15T06:22:53.305365Z","MostPoints":6139081,"MostPointsAt":"2023-02-15T06:22:53.305365Z","MostVillages":672,"MostVillagesAt":"2023-02-15T06:22:53.305365Z","LastActivityAt":"2023-02-15T06:22:53.305365Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":459,"ScoreAtt":429833,"RankDef":122,"ScoreDef":3144228,"RankSup":421,"ScoreSup":262836,"RankTotal":241,"ScoreTotal":3836897,"ID":8842936,"Name":"z4l3wski","NumVillages":8,"Points":71834,"Rank":604,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8842936","BestRank":604,"BestRankAt":"2023-02-15T06:22:53.305365Z","MostPoints":71834,"MostPointsAt":"2023-02-15T06:22:53.305365Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.305365Z","LastActivityAt":"2023-02-15T06:22:53.305365Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1491,"ScoreAtt":2455,"RankDef":897,"ScoreDef":166769,"RankSup":0,"ScoreSup":0,"RankTotal":1213,"ScoreTotal":169224,"ID":8843774,"Name":"Lord LovelyBones","NumVillages":3,"Points":19050,"Rank":933,"TribeID":624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8843774","BestRank":933,"BestRankAt":"2023-02-15T06:22:53.305366Z","MostPoints":19050,"MostPointsAt":"2023-02-15T06:22:53.305366Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305366Z","LastActivityAt":"2023-02-15T06:22:53.305366Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":70,"ScoreAtt":4231049,"RankDef":305,"ScoreDef":1140466,"RankSup":153,"ScoreSup":1469720,"RankTotal":129,"ScoreTotal":6841235,"ID":8847546,"Name":"traczu1224","NumVillages":242,"Points":1917219,"Rank":51,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8847546","BestRank":51,"BestRankAt":"2023-02-15T06:22:53.305366Z","MostPoints":1917219,"MostPointsAt":"2023-02-15T06:22:53.305366Z","MostVillages":242,"MostVillagesAt":"2023-02-15T06:22:53.305366Z","LastActivityAt":"2023-02-15T06:22:53.305367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":612,"ScoreDef":363053,"RankSup":0,"ScoreSup":0,"RankTotal":948,"ScoreTotal":363053,"ID":8849267,"Name":"rzemo","NumVillages":0,"Points":0,"Rank":2948,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8849267","BestRank":2948,"BestRankAt":"2023-02-15T06:22:53.305367Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305367Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305367Z","LastActivityAt":"2023-02-15T06:22:53.305367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2035,"ScoreDef":4083,"RankSup":0,"ScoreSup":0,"RankTotal":2167,"ScoreTotal":4083,"ID":8852026,"Name":"forestrr","NumVillages":1,"Points":7463,"Rank":1188,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8852026","BestRank":1188,"BestRankAt":"2023-02-15T06:22:53.305367Z","MostPoints":7463,"MostPointsAt":"2023-02-15T06:22:53.305368Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305368Z","LastActivityAt":"2023-02-15T06:22:53.305368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2221,"ScoreDef":859,"RankSup":0,"ScoreSup":0,"RankTotal":2312,"ScoreTotal":859,"ID":8853146,"Name":"przemek2707","NumVillages":1,"Points":7662,"Rank":1176,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8853146","BestRank":1176,"BestRankAt":"2023-02-15T06:22:53.305368Z","MostPoints":7662,"MostPointsAt":"2023-02-15T06:22:53.305368Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305368Z","LastActivityAt":"2023-02-15T06:22:53.305368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1037,"ScoreAtt":25802,"RankDef":1235,"ScoreDef":66491,"RankSup":0,"ScoreSup":0,"RankTotal":1423,"ScoreTotal":92293,"ID":8855679,"Name":"chopek1","NumVillages":1,"Points":2776,"Rank":1551,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8855679","BestRank":1551,"BestRankAt":"2023-02-15T06:22:53.305369Z","MostPoints":2776,"MostPointsAt":"2023-02-15T06:22:53.305369Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305369Z","LastActivityAt":"2023-02-15T06:22:53.305369Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1723,"ScoreAtt":466,"RankDef":1893,"ScoreDef":8235,"RankSup":0,"ScoreSup":0,"RankTotal":2028,"ScoreTotal":8701,"ID":8856821,"Name":"kosiarziii","NumVillages":1,"Points":7354,"Rank":1197,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8856821","BestRank":1197,"BestRankAt":"2023-02-15T06:22:53.305369Z","MostPoints":7354,"MostPointsAt":"2023-02-15T06:22:53.305369Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305369Z","LastActivityAt":"2023-02-15T06:22:53.305369Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2168,"ScoreDef":1719,"RankSup":0,"ScoreSup":0,"RankTotal":2266,"ScoreTotal":1719,"ID":8868716,"Name":"Lord Sir szok","NumVillages":1,"Points":3412,"Rank":1481,"TribeID":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8868716","BestRank":1481,"BestRankAt":"2023-02-15T06:22:53.30537Z","MostPoints":3412,"MostPointsAt":"2023-02-15T06:22:53.30537Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30537Z","LastActivityAt":"2023-02-15T06:22:53.30537Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1534,"ScoreAtt":2031,"RankDef":1182,"ScoreDef":76582,"RankSup":1217,"ScoreSup":306,"RankTotal":1468,"ScoreTotal":78919,"ID":8876551,"Name":"wodzuniunio1","NumVillages":3,"Points":9198,"Rank":1115,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8876551","BestRank":1115,"BestRankAt":"2023-02-15T06:22:53.30537Z","MostPoints":9198,"MostPointsAt":"2023-02-15T06:22:53.30537Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.30537Z","LastActivityAt":"2023-02-15T06:22:53.30537Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":638,"ScoreAtt":168299,"RankDef":1799,"ScoreDef":12503,"RankSup":943,"ScoreSup":8354,"RankTotal":1165,"ScoreTotal":189156,"ID":8877156,"Name":"Woja7155","NumVillages":26,"Points":210217,"Rank":407,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8877156","BestRank":407,"BestRankAt":"2023-02-15T06:22:53.305371Z","MostPoints":210217,"MostPointsAt":"2023-02-15T06:22:53.305371Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.305371Z","LastActivityAt":"2023-02-15T06:22:53.305371Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8877462,"Name":"Avgan","NumVillages":1,"Points":116,"Rank":2452,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8877462","BestRank":2452,"BestRankAt":"2023-02-15T06:22:53.305371Z","MostPoints":116,"MostPointsAt":"2023-02-15T06:22:53.305371Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305371Z","LastActivityAt":"2023-02-15T06:22:53.305372Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1721,"ScoreAtt":480,"RankDef":2402,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2351,"ScoreTotal":500,"ID":8877886,"Name":"Lord kongo","NumVillages":2,"Points":7394,"Rank":1195,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8877886","BestRank":1195,"BestRankAt":"2023-02-15T06:22:53.305372Z","MostPoints":7394,"MostPointsAt":"2023-02-15T06:22:53.305372Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305372Z","LastActivityAt":"2023-02-15T06:22:53.305372Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8886999,"Name":"kamien335","NumVillages":1,"Points":54,"Rank":2567,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8886999","BestRank":2567,"BestRankAt":"2023-02-15T06:22:53.305372Z","MostPoints":54,"MostPointsAt":"2023-02-15T06:22:53.305373Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305372Z","LastActivityAt":"2023-02-15T06:22:53.305373Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8889781,"Name":"wuener","NumVillages":1,"Points":462,"Rank":2052,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8889781","BestRank":2052,"BestRankAt":"2023-02-15T06:22:53.305373Z","MostPoints":462,"MostPointsAt":"2023-02-15T06:22:53.305373Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305373Z","LastActivityAt":"2023-02-15T06:22:53.305373Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1239,"ScoreAtt":8760,"RankDef":1119,"ScoreDef":91152,"RankSup":0,"ScoreSup":0,"RankTotal":1394,"ScoreTotal":99912,"ID":8890346,"Name":"brif123456789","NumVillages":2,"Points":7652,"Rank":1177,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8890346","BestRank":1177,"BestRankAt":"2023-02-15T06:22:53.305373Z","MostPoints":7652,"MostPointsAt":"2023-02-15T06:22:53.305374Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305374Z","LastActivityAt":"2023-02-15T06:22:53.305374Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8890611,"Name":"Harasi","NumVillages":1,"Points":47,"Rank":2590,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8890611","BestRank":2590,"BestRankAt":"2023-02-15T06:22:53.305374Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.305374Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305374Z","LastActivityAt":"2023-02-15T06:22:53.305374Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":586,"ScoreAtt":229546,"RankDef":453,"ScoreDef":609396,"RankSup":848,"ScoreSup":16853,"RankTotal":667,"ScoreTotal":855795,"ID":8890793,"Name":"Ronoxo and Zaruss","NumVillages":0,"Points":0,"Rank":2949,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8890793","BestRank":2949,"BestRankAt":"2023-02-15T06:22:53.305375Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305375Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305375Z","LastActivityAt":"2023-02-15T06:22:53.305375Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":162,"ScoreAtt":1964676,"RankDef":613,"ScoreDef":362571,"RankSup":387,"ScoreSup":333863,"RankTotal":326,"ScoreTotal":2661110,"ID":8895532,"Name":"KubekXD11","NumVillages":0,"Points":0,"Rank":2950,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8895532","BestRank":2950,"BestRankAt":"2023-02-15T06:22:53.305375Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305375Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305375Z","LastActivityAt":"2023-02-15T06:22:53.305375Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1747,"ScoreAtt":342,"RankDef":776,"ScoreDef":225533,"RankSup":0,"ScoreSup":0,"RankTotal":1098,"ScoreTotal":225875,"ID":8897100,"Name":"lord leoni","NumVillages":1,"Points":884,"Rank":1892,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8897100","BestRank":1892,"BestRankAt":"2023-02-15T06:22:53.305376Z","MostPoints":884,"MostPointsAt":"2023-02-15T06:22:53.305376Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305376Z","LastActivityAt":"2023-02-15T06:22:53.305376Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":273,"ScoreAtt":1027524,"RankDef":1494,"ScoreDef":34490,"RankSup":754,"ScoreSup":34715,"RankTotal":592,"ScoreTotal":1096729,"ID":8900955,"Name":"Pablosta","NumVillages":34,"Points":271339,"Rank":366,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8900955","BestRank":366,"BestRankAt":"2023-02-15T06:22:53.305376Z","MostPoints":271339,"MostPointsAt":"2023-02-15T06:22:53.305376Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.305376Z","LastActivityAt":"2023-02-15T06:22:53.305376Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8907069,"Name":"kcys2","NumVillages":1,"Points":47,"Rank":2591,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8907069","BestRank":2591,"BestRankAt":"2023-02-15T06:22:53.305377Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.305377Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305377Z","LastActivityAt":"2023-02-15T06:22:53.305377Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1004,"ScoreAtt":29681,"RankDef":644,"ScoreDef":329223,"RankSup":1349,"ScoreSup":6,"RankTotal":953,"ScoreTotal":358910,"ID":8907258,"Name":"adrianww13","NumVillages":1,"Points":312,"Rank":2162,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8907258","BestRank":2162,"BestRankAt":"2023-02-15T06:22:53.305377Z","MostPoints":312,"MostPointsAt":"2023-02-15T06:22:53.305377Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305377Z","LastActivityAt":"2023-02-15T06:22:53.305378Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":213,"ScoreAtt":1471784,"RankDef":1192,"ScoreDef":74355,"RankSup":160,"ScoreSup":1401833,"RankTotal":294,"ScoreTotal":2947972,"ID":8908002,"Name":"Kuzyn Platynov","NumVillages":63,"Points":514474,"Rank":265,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8908002","BestRank":265,"BestRankAt":"2023-02-15T06:22:53.305378Z","MostPoints":514474,"MostPointsAt":"2023-02-15T06:22:53.305378Z","MostVillages":63,"MostVillagesAt":"2023-02-15T06:22:53.305378Z","LastActivityAt":"2023-02-15T06:22:53.305378Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1203,"ScoreAtt":10563,"RankDef":953,"ScoreDef":142779,"RankSup":0,"ScoreSup":0,"RankTotal":1240,"ScoreTotal":153342,"ID":8908544,"Name":"AndĆŒi San","NumVillages":1,"Points":5624,"Rank":1293,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8908544","BestRank":1293,"BestRankAt":"2023-02-15T06:22:53.305378Z","MostPoints":5624,"MostPointsAt":"2023-02-15T06:22:53.305379Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305378Z","LastActivityAt":"2023-02-15T06:22:53.305379Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":972,"ScoreAtt":34728,"RankDef":1399,"ScoreDef":44124,"RankSup":0,"ScoreSup":0,"RankTotal":1471,"ScoreTotal":78852,"ID":8916982,"Name":"morus854","NumVillages":18,"Points":67119,"Rank":626,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8916982","BestRank":626,"BestRankAt":"2023-02-15T06:22:53.305379Z","MostPoints":67119,"MostPointsAt":"2023-02-15T06:22:53.305379Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.305379Z","LastActivityAt":"2023-02-15T06:22:53.305379Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1907,"ScoreAtt":46,"RankDef":1055,"ScoreDef":106236,"RankSup":0,"ScoreSup":0,"RankTotal":1371,"ScoreTotal":106282,"ID":8922870,"Name":"MAX LU Prime","NumVillages":1,"Points":774,"Rank":1927,"TribeID":1753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8922870","BestRank":1927,"BestRankAt":"2023-02-15T06:22:53.305379Z","MostPoints":774,"MostPointsAt":"2023-02-15T06:22:53.30538Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30538Z","LastActivityAt":"2023-02-15T06:22:53.30538Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1399,"ScoreAtt":4201,"RankDef":2271,"ScoreDef":477,"RankSup":0,"ScoreSup":0,"RankTotal":2142,"ScoreTotal":4678,"ID":8924845,"Name":"Totalnie Mocarny Goƛciu","NumVillages":1,"Points":136,"Rank":2399,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8924845","BestRank":2399,"BestRankAt":"2023-02-15T06:22:53.30538Z","MostPoints":136,"MostPointsAt":"2023-02-15T06:22:53.30538Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30538Z","LastActivityAt":"2023-02-15T06:22:53.30538Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":846,"ScoreAtt":66039,"RankDef":1416,"ScoreDef":41389,"RankSup":0,"ScoreSup":0,"RankTotal":1363,"ScoreTotal":107428,"ID":8925624,"Name":"Napastnik.","NumVillages":9,"Points":57263,"Rank":665,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8925624","BestRank":665,"BestRankAt":"2023-02-15T06:22:53.305381Z","MostPoints":57263,"MostPointsAt":"2023-02-15T06:22:53.305381Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.305381Z","LastActivityAt":"2023-02-15T06:22:53.305381Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":460,"ScoreAtt":429738,"RankDef":1845,"ScoreDef":10229,"RankSup":786,"ScoreSup":28026,"RankTotal":864,"ScoreTotal":467993,"ID":8925695,"Name":"tutek101","NumVillages":20,"Points":151945,"Rank":465,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8925695","BestRank":465,"BestRankAt":"2023-02-15T06:22:53.305381Z","MostPoints":151945,"MostPointsAt":"2023-02-15T06:22:53.305381Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.305381Z","LastActivityAt":"2023-02-15T06:22:53.305381Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1968,"ScoreAtt":9,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2551,"ScoreTotal":9,"ID":8926516,"Name":"pogromca xcc","NumVillages":1,"Points":176,"Rank":2342,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8926516","BestRank":2342,"BestRankAt":"2023-02-15T06:22:53.305382Z","MostPoints":176,"MostPointsAt":"2023-02-15T06:22:53.305382Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305382Z","LastActivityAt":"2023-02-15T06:22:53.305382Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2256,"ScoreDef":563,"RankSup":0,"ScoreSup":0,"RankTotal":2340,"ScoreTotal":563,"ID":8942143,"Name":"bartek145972","NumVillages":1,"Points":339,"Rank":2136,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8942143","BestRank":2136,"BestRankAt":"2023-02-15T06:22:53.305382Z","MostPoints":339,"MostPointsAt":"2023-02-15T06:22:53.305382Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305382Z","LastActivityAt":"2023-02-15T06:22:53.305382Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2235,"ScoreDef":756,"RankSup":0,"ScoreSup":0,"RankTotal":2326,"ScoreTotal":756,"ID":8947021,"Name":"Gollum18","NumVillages":1,"Points":3252,"Rank":1500,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8947021","BestRank":1500,"BestRankAt":"2023-02-15T06:22:53.305383Z","MostPoints":3252,"MostPointsAt":"2023-02-15T06:22:53.305383Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305383Z","LastActivityAt":"2023-02-15T06:22:53.305383Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2060,"ScoreDef":3633,"RankSup":0,"ScoreSup":0,"RankTotal":2187,"ScoreTotal":3633,"ID":8947705,"Name":"PysioSsie","NumVillages":1,"Points":286,"Rank":2189,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8947705","BestRank":2189,"BestRankAt":"2023-02-15T06:22:53.305383Z","MostPoints":286,"MostPointsAt":"2023-02-15T06:22:53.305383Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305383Z","LastActivityAt":"2023-02-15T06:22:53.305383Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":136,"ScoreAtt":2267457,"RankDef":711,"ScoreDef":264636,"RankSup":329,"ScoreSup":447224,"RankTotal":291,"ScoreTotal":2979317,"ID":8954402,"Name":"darkmike01","NumVillages":75,"Points":697936,"Rank":207,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8954402","BestRank":207,"BestRankAt":"2023-02-15T06:22:53.305384Z","MostPoints":697936,"MostPointsAt":"2023-02-15T06:22:53.305384Z","MostVillages":75,"MostVillagesAt":"2023-02-15T06:22:53.305384Z","LastActivityAt":"2023-02-15T06:22:53.305384Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1246,"ScoreAtt":8432,"RankDef":1506,"ScoreDef":33558,"RankSup":0,"ScoreSup":0,"RankTotal":1669,"ScoreTotal":41990,"ID":8956715,"Name":"Norane","NumVillages":1,"Points":212,"Rank":2281,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8956715","BestRank":2281,"BestRankAt":"2023-02-15T06:22:53.305384Z","MostPoints":212,"MostPointsAt":"2023-02-15T06:22:53.305385Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305384Z","LastActivityAt":"2023-02-15T06:22:53.305385Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":345,"ScoreAtt":707484,"RankDef":83,"ScoreDef":4087908,"RankSup":825,"ScoreSup":20179,"RankTotal":196,"ScoreTotal":4815571,"ID":8963720,"Name":"Lord Binladen","NumVillages":5,"Points":32713,"Rank":788,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8963720","BestRank":788,"BestRankAt":"2023-02-15T06:22:53.305388Z","MostPoints":32713,"MostPointsAt":"2023-02-15T06:22:53.305388Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.305388Z","LastActivityAt":"2023-02-15T06:22:53.305388Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":194,"ScoreAtt":1600938,"RankDef":250,"ScoreDef":1499296,"RankSup":195,"ScoreSup":975573,"RankTotal":233,"ScoreTotal":4075807,"ID":8966820,"Name":"arti..","NumVillages":21,"Points":158430,"Rank":452,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8966820","BestRank":452,"BestRankAt":"2023-02-15T06:22:53.305388Z","MostPoints":158430,"MostPointsAt":"2023-02-15T06:22:53.305389Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.305389Z","LastActivityAt":"2023-02-15T06:22:53.305389Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":354,"ScoreAtt":682393,"RankDef":48,"ScoreDef":6758765,"RankSup":372,"ScoreSup":362794,"RankTotal":106,"ScoreTotal":7803952,"ID":8967440,"Name":"Many","NumVillages":44,"Points":268640,"Rank":367,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8967440","BestRank":367,"BestRankAt":"2023-02-15T06:22:53.305389Z","MostPoints":268640,"MostPointsAt":"2023-02-15T06:22:53.305389Z","MostVillages":44,"MostVillagesAt":"2023-02-15T06:22:53.305389Z","LastActivityAt":"2023-02-15T06:22:53.305389Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8968520,"Name":"Fieffe","NumVillages":1,"Points":76,"Rank":2521,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8968520","BestRank":2521,"BestRankAt":"2023-02-15T06:22:53.30539Z","MostPoints":76,"MostPointsAt":"2023-02-15T06:22:53.30539Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30539Z","LastActivityAt":"2023-02-15T06:22:53.30539Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1739,"ScoreAtt":367,"RankDef":1062,"ScoreDef":103977,"RankSup":1251,"ScoreSup":129,"RankTotal":1378,"ScoreTotal":104473,"ID":8970390,"Name":"dodocolo","NumVillages":1,"Points":2661,"Rank":1572,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8970390","BestRank":1572,"BestRankAt":"2023-02-15T06:22:53.30539Z","MostPoints":2661,"MostPointsAt":"2023-02-15T06:22:53.30539Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30539Z","LastActivityAt":"2023-02-15T06:22:53.30539Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8975453,"Name":"kolejne multikonto","NumVillages":1,"Points":26,"Rank":2670,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8975453","BestRank":2670,"BestRankAt":"2023-02-15T06:22:53.305391Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305391Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305391Z","LastActivityAt":"2023-02-15T06:22:53.305391Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":422,"ScoreAtt":509733,"RankDef":1307,"ScoreDef":56565,"RankSup":954,"ScoreSup":7623,"RankTotal":786,"ScoreTotal":573921,"ID":8976313,"Name":"tranquill","NumVillages":52,"Points":368228,"Rank":316,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8976313","BestRank":316,"BestRankAt":"2023-02-15T06:22:53.305391Z","MostPoints":368228,"MostPointsAt":"2023-02-15T06:22:53.305391Z","MostVillages":52,"MostVillagesAt":"2023-02-15T06:22:53.305391Z","LastActivityAt":"2023-02-15T06:22:53.305391Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1952,"ScoreAtt":19,"RankDef":992,"ScoreDef":126069,"RankSup":0,"ScoreSup":0,"RankTotal":1309,"ScoreTotal":126088,"ID":8978080,"Name":"Gacek565","NumVillages":1,"Points":2745,"Rank":1559,"TribeID":1498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8978080","BestRank":1559,"BestRankAt":"2023-02-15T06:22:53.305392Z","MostPoints":2745,"MostPointsAt":"2023-02-15T06:22:53.305392Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305392Z","LastActivityAt":"2023-02-15T06:22:53.305392Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":360,"ScoreAtt":661120,"RankDef":1433,"ScoreDef":39491,"RankSup":479,"ScoreSup":190732,"RankTotal":661,"ScoreTotal":891343,"ID":8980651,"Name":"cyni123","NumVillages":60,"Points":502402,"Rank":268,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8980651","BestRank":268,"BestRankAt":"2023-02-15T06:22:53.305392Z","MostPoints":502402,"MostPointsAt":"2023-02-15T06:22:53.305392Z","MostVillages":60,"MostVillagesAt":"2023-02-15T06:22:53.305392Z","LastActivityAt":"2023-02-15T06:22:53.305393Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1691,"ScoreAtt":665,"RankDef":1191,"ScoreDef":74645,"RankSup":0,"ScoreSup":0,"RankTotal":1480,"ScoreTotal":75310,"ID":8983479,"Name":"AnImA83","NumVillages":0,"Points":0,"Rank":2951,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8983479","BestRank":2951,"BestRankAt":"2023-02-15T06:22:53.305393Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305393Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305393Z","LastActivityAt":"2023-02-15T06:22:53.305393Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8984336,"Name":"Nicosta","NumVillages":1,"Points":26,"Rank":2671,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8984336","BestRank":2671,"BestRankAt":"2023-02-15T06:22:53.305393Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305394Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305393Z","LastActivityAt":"2023-02-15T06:22:53.305394Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":579,"ScoreAtt":240489,"RankDef":429,"ScoreDef":667946,"RankSup":650,"ScoreSup":72366,"RankTotal":622,"ScoreTotal":980801,"ID":8985694,"Name":"robert15365","NumVillages":0,"Points":0,"Rank":2952,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8985694","BestRank":2952,"BestRankAt":"2023-02-15T06:22:53.305394Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305394Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305394Z","LastActivityAt":"2023-02-15T06:22:53.305394Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1242,"ScoreAtt":8542,"RankDef":850,"ScoreDef":185329,"RankSup":0,"ScoreSup":0,"RankTotal":1150,"ScoreTotal":193871,"ID":8991696,"Name":"dziadek1974","NumVillages":5,"Points":21157,"Rank":900,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8991696","BestRank":900,"BestRankAt":"2023-02-15T06:22:53.305394Z","MostPoints":21157,"MostPointsAt":"2023-02-15T06:22:53.305395Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.305395Z","LastActivityAt":"2023-02-15T06:22:53.305395Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2460,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2534,"ScoreTotal":10,"ID":8994199,"Name":"Froozantenna","NumVillages":1,"Points":1838,"Rank":1696,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8994199","BestRank":1696,"BestRankAt":"2023-02-15T06:22:53.305395Z","MostPoints":1838,"MostPointsAt":"2023-02-15T06:22:53.305395Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305395Z","LastActivityAt":"2023-02-15T06:22:53.305395Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1038,"ScoreAtt":25667,"RankDef":969,"ScoreDef":135268,"RankSup":1021,"ScoreSup":4085,"RankTotal":1221,"ScoreTotal":165020,"ID":8997874,"Name":"Sir lechman","NumVillages":2,"Points":6389,"Rank":1249,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8997874","BestRank":1249,"BestRankAt":"2023-02-15T06:22:53.305396Z","MostPoints":6389,"MostPointsAt":"2023-02-15T06:22:53.305396Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305396Z","LastActivityAt":"2023-02-15T06:22:53.305396Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":409,"ScoreAtt":565891,"RankDef":750,"ScoreDef":242545,"RankSup":931,"ScoreSup":9263,"RankTotal":681,"ScoreTotal":817699,"ID":9000253,"Name":"Rokkas","NumVillages":0,"Points":0,"Rank":2953,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9000253","BestRank":2953,"BestRankAt":"2023-02-15T06:22:53.305396Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305396Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305396Z","LastActivityAt":"2023-02-15T06:22:53.305396Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9002278,"Name":"badidek","NumVillages":1,"Points":26,"Rank":2672,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9002278","BestRank":2672,"BestRankAt":"2023-02-15T06:22:53.305397Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305397Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305397Z","LastActivityAt":"2023-02-15T06:22:53.305397Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":328,"ScoreAtt":799302,"RankDef":1165,"ScoreDef":80197,"RankSup":637,"ScoreSup":78158,"RankTotal":639,"ScoreTotal":957657,"ID":9003698,"Name":"Quenthelq","NumVillages":31,"Points":247081,"Rank":382,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9003698","BestRank":382,"BestRankAt":"2023-02-15T06:22:53.305397Z","MostPoints":247081,"MostPointsAt":"2023-02-15T06:22:53.305397Z","MostVillages":31,"MostVillagesAt":"2023-02-15T06:22:53.305397Z","LastActivityAt":"2023-02-15T06:22:53.305397Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9004337,"Name":"mariuszf","NumVillages":1,"Points":98,"Rank":2487,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9004337","BestRank":2487,"BestRankAt":"2023-02-15T06:22:53.305398Z","MostPoints":98,"MostPointsAt":"2023-02-15T06:22:53.305398Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305398Z","LastActivityAt":"2023-02-15T06:22:53.305398Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9006528,"Name":"KESHIK","NumVillages":1,"Points":48,"Rank":2585,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9006528","BestRank":2585,"BestRankAt":"2023-02-15T06:22:53.305398Z","MostPoints":48,"MostPointsAt":"2023-02-15T06:22:53.305398Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305398Z","LastActivityAt":"2023-02-15T06:22:53.305399Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9012894,"Name":"maciej55413","NumVillages":1,"Points":68,"Rank":2538,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9012894","BestRank":2538,"BestRankAt":"2023-02-15T06:22:53.305399Z","MostPoints":68,"MostPointsAt":"2023-02-15T06:22:53.305399Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305399Z","LastActivityAt":"2023-02-15T06:22:53.305399Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1039,"ScoreDef":113440,"RankSup":985,"ScoreSup":5914,"RankTotal":1328,"ScoreTotal":119354,"ID":9014108,"Name":"ewciamariusz","NumVillages":1,"Points":1131,"Rank":1823,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9014108","BestRank":1823,"BestRankAt":"2023-02-15T06:22:53.305399Z","MostPoints":1131,"MostPointsAt":"2023-02-15T06:22:53.3054Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305399Z","LastActivityAt":"2023-02-15T06:22:53.3054Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1167,"ScoreAtt":12693,"RankDef":935,"ScoreDef":148294,"RankSup":1332,"ScoreSup":11,"RankTotal":1228,"ScoreTotal":160998,"ID":9016464,"Name":"Sir lobbek","NumVillages":1,"Points":3491,"Rank":1466,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9016464","BestRank":1466,"BestRankAt":"2023-02-15T06:22:53.3054Z","MostPoints":3491,"MostPointsAt":"2023-02-15T06:22:53.3054Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.3054Z","LastActivityAt":"2023-02-15T06:22:53.3054Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":645,"ScoreAtt":164385,"RankDef":1554,"ScoreDef":29316,"RankSup":388,"ScoreSup":331068,"RankTotal":823,"ScoreTotal":524769,"ID":9016560,"Name":"Vikingen x Control360","NumVillages":3,"Points":22215,"Rank":889,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9016560","BestRank":889,"BestRankAt":"2023-02-15T06:22:53.3054Z","MostPoints":22215,"MostPointsAt":"2023-02-15T06:22:53.305401Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305401Z","LastActivityAt":"2023-02-15T06:22:53.305401Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.30569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1913,"ScoreAtt":40,"RankDef":1830,"ScoreDef":10886,"RankSup":0,"ScoreSup":0,"RankTotal":1988,"ScoreTotal":10926,"ID":9021037,"Name":"BD84","NumVillages":1,"Points":1979,"Rank":1669,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9021037","BestRank":1669,"BestRankAt":"2023-02-15T06:22:53.305401Z","MostPoints":1979,"MostPointsAt":"2023-02-15T06:22:53.305401Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305401Z","LastActivityAt":"2023-02-15T06:22:53.305401Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":494,"ScoreAtt":361893,"RankDef":312,"ScoreDef":1091379,"RankSup":200,"ScoreSup":934983,"RankTotal":356,"ScoreTotal":2388255,"ID":9021920,"Name":"Sebek4991","NumVillages":1,"Points":10026,"Rank":1083,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9021920","BestRank":1083,"BestRankAt":"2023-02-15T06:22:53.305402Z","MostPoints":10026,"MostPointsAt":"2023-02-15T06:22:53.305402Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305402Z","LastActivityAt":"2023-02-15T06:22:53.305402Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":166,"ScoreAtt":1912601,"RankDef":783,"ScoreDef":221666,"RankSup":227,"ScoreSup":783100,"RankTotal":296,"ScoreTotal":2917367,"ID":9023703,"Name":"SirBiaƂy VII","NumVillages":100,"Points":889640,"Rank":165,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9023703","BestRank":165,"BestRankAt":"2023-02-15T06:22:53.305402Z","MostPoints":889640,"MostPointsAt":"2023-02-15T06:22:53.305402Z","MostVillages":100,"MostVillagesAt":"2023-02-15T06:22:53.305402Z","LastActivityAt":"2023-02-15T06:22:53.305402Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2335,"ScoreDef":149,"RankSup":0,"ScoreSup":0,"RankTotal":2418,"ScoreTotal":149,"ID":9029627,"Name":"KRIS 74 PL","NumVillages":1,"Points":26,"Rank":2673,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9029627","BestRank":2673,"BestRankAt":"2023-02-15T06:22:53.305403Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305403Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305403Z","LastActivityAt":"2023-02-15T06:22:53.305403Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":415,"ScoreAtt":546963,"RankDef":172,"ScoreDef":2156716,"RankSup":360,"ScoreSup":388928,"RankTotal":282,"ScoreTotal":3092607,"ID":9029928,"Name":"Smykaj","NumVillages":8,"Points":33208,"Rank":784,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9029928","BestRank":784,"BestRankAt":"2023-02-15T06:22:53.305403Z","MostPoints":33208,"MostPointsAt":"2023-02-15T06:22:53.305403Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.305403Z","LastActivityAt":"2023-02-15T06:22:53.305403Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":628,"ScoreDef":344141,"RankSup":813,"ScoreSup":22738,"RankTotal":945,"ScoreTotal":366879,"ID":9031705,"Name":"SIR UNITED","NumVillages":1,"Points":44,"Rank":2600,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9031705","BestRank":2600,"BestRankAt":"2023-02-15T06:22:53.305404Z","MostPoints":44,"MostPointsAt":"2023-02-15T06:22:53.305404Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305404Z","LastActivityAt":"2023-02-15T06:22:53.305404Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":310,"ScoreAtt":876817,"RankDef":577,"ScoreDef":403076,"RankSup":122,"ScoreSup":1815387,"RankTotal":281,"ScoreTotal":3095280,"ID":9037756,"Name":"Psycho McB","NumVillages":38,"Points":244810,"Rank":383,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9037756","BestRank":383,"BestRankAt":"2023-02-15T06:22:53.305404Z","MostPoints":244810,"MostPointsAt":"2023-02-15T06:22:53.305404Z","MostVillages":38,"MostVillagesAt":"2023-02-15T06:22:53.305404Z","LastActivityAt":"2023-02-15T06:22:53.305405Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":456,"ScoreAtt":433855,"RankDef":129,"ScoreDef":2991485,"RankSup":597,"ScoreSup":100400,"RankTotal":256,"ScoreTotal":3525740,"ID":9043233,"Name":"marianoitaliuano","NumVillages":1,"Points":26,"Rank":2674,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9043233","BestRank":2674,"BestRankAt":"2023-02-15T06:22:53.305405Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305405Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305405Z","LastActivityAt":"2023-02-15T06:22:53.305405Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":399,"ScoreAtt":587673,"RankDef":236,"ScoreDef":1624665,"RankSup":244,"ScoreSup":728079,"RankTotal":295,"ScoreTotal":2940417,"ID":9047658,"Name":"Hanibal25","NumVillages":0,"Points":0,"Rank":2954,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9047658","BestRank":2954,"BestRankAt":"2023-02-15T06:22:53.305405Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305406Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305405Z","LastActivityAt":"2023-02-15T06:22:53.305406Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":565,"ScoreAtt":257270,"RankDef":223,"ScoreDef":1691440,"RankSup":539,"ScoreSup":137056,"RankTotal":394,"ScoreTotal":2085766,"ID":9048764,"Name":"BagPipePL","NumVillages":2,"Points":20523,"Rank":910,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9048764","BestRank":910,"BestRankAt":"2023-02-15T06:22:53.305406Z","MostPoints":20523,"MostPointsAt":"2023-02-15T06:22:53.305406Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305406Z","LastActivityAt":"2023-02-15T06:22:53.305406Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1785,"ScoreAtt":252,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2391,"ScoreTotal":252,"ID":9053254,"Name":"malwina1","NumVillages":1,"Points":976,"Rank":1874,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9053254","BestRank":1874,"BestRankAt":"2023-02-15T06:22:53.305407Z","MostPoints":976,"MostPointsAt":"2023-02-15T06:22:53.305407Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305407Z","LastActivityAt":"2023-02-15T06:22:53.305407Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":835,"ScoreAtt":70229,"RankDef":128,"ScoreDef":3010527,"RankSup":134,"ScoreSup":1603410,"RankTotal":202,"ScoreTotal":4684166,"ID":9057880,"Name":"mamcos98","NumVillages":1,"Points":26,"Rank":2675,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9057880","BestRank":2675,"BestRankAt":"2023-02-15T06:22:53.305407Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305407Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305407Z","LastActivityAt":"2023-02-15T06:22:53.305407Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":208,"ScoreAtt":1504258,"RankDef":133,"ScoreDef":2933303,"RankSup":344,"ScoreSup":417448,"RankTotal":193,"ScoreTotal":4855009,"ID":9060641,"Name":"Koloalu","NumVillages":43,"Points":378628,"Rank":309,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9060641","BestRank":309,"BestRankAt":"2023-02-15T06:22:53.305408Z","MostPoints":378628,"MostPointsAt":"2023-02-15T06:22:53.305408Z","MostVillages":43,"MostVillagesAt":"2023-02-15T06:22:53.305408Z","LastActivityAt":"2023-02-15T06:22:53.305408Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":411,"ScoreAtt":560872,"RankDef":117,"ScoreDef":3190865,"RankSup":208,"ScoreSup":884996,"RankTotal":205,"ScoreTotal":4636733,"ID":9060885,"Name":"zƂyy banan.","NumVillages":3,"Points":15142,"Rank":994,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9060885","BestRank":994,"BestRankAt":"2023-02-15T06:22:53.305408Z","MostPoints":15142,"MostPointsAt":"2023-02-15T06:22:53.305408Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305408Z","LastActivityAt":"2023-02-15T06:22:53.305408Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1034,"ScoreAtt":26283,"RankDef":1713,"ScoreDef":17729,"RankSup":1185,"ScoreSup":536,"RankTotal":1648,"ScoreTotal":44548,"ID":9067168,"Name":"mevest","NumVillages":1,"Points":42,"Rank":2606,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9067168","BestRank":2606,"BestRankAt":"2023-02-15T06:22:53.305409Z","MostPoints":42,"MostPointsAt":"2023-02-15T06:22:53.305409Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305409Z","LastActivityAt":"2023-02-15T06:22:53.305409Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1362,"ScoreDef":49235,"RankSup":0,"ScoreSup":0,"RankTotal":1619,"ScoreTotal":49235,"ID":9071253,"Name":"Lord Sir bogdan","NumVillages":0,"Points":0,"Rank":2955,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9071253","BestRank":2955,"BestRankAt":"2023-02-15T06:22:53.305409Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305409Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305409Z","LastActivityAt":"2023-02-15T06:22:53.30541Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9073704,"Name":"xFacHoWieCx","NumVillages":1,"Points":26,"Rank":2676,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9073704","BestRank":2676,"BestRankAt":"2023-02-15T06:22:53.30541Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.30541Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30541Z","LastActivityAt":"2023-02-15T06:22:53.30541Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1845,"ScoreAtt":134,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2425,"ScoreTotal":134,"ID":9090040,"Name":"czubak91","NumVillages":3,"Points":6697,"Rank":1231,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9090040","BestRank":1231,"BestRankAt":"2023-02-15T06:22:53.30541Z","MostPoints":6697,"MostPointsAt":"2023-02-15T06:22:53.305411Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.30541Z","LastActivityAt":"2023-02-15T06:22:53.305411Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1600,"ScoreDef":25519,"RankSup":1269,"ScoreSup":73,"RankTotal":1814,"ScoreTotal":25592,"ID":9091557,"Name":"SzybaSc","NumVillages":1,"Points":3085,"Rank":1517,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9091557","BestRank":1517,"BestRankAt":"2023-02-15T06:22:53.305411Z","MostPoints":3085,"MostPointsAt":"2023-02-15T06:22:53.305411Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305411Z","LastActivityAt":"2023-02-15T06:22:53.305411Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":656,"ScoreAtt":155893,"RankDef":666,"ScoreDef":300856,"RankSup":391,"ScoreSup":327529,"RankTotal":691,"ScoreTotal":784278,"ID":9094538,"Name":"koziki","NumVillages":9,"Points":38344,"Rank":750,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9094538","BestRank":750,"BestRankAt":"2023-02-15T06:22:53.305411Z","MostPoints":38344,"MostPointsAt":"2023-02-15T06:22:53.305412Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.305411Z","LastActivityAt":"2023-02-15T06:22:53.305412Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1080,"ScoreAtt":20290,"RankDef":2228,"ScoreDef":799,"RankSup":1273,"ScoreSup":65,"RankTotal":1855,"ScoreTotal":21154,"ID":9095581,"Name":"Lord SnOOpDoG","NumVillages":3,"Points":8465,"Rank":1137,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9095581","BestRank":1137,"BestRankAt":"2023-02-15T06:22:53.305412Z","MostPoints":8465,"MostPointsAt":"2023-02-15T06:22:53.305412Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.305412Z","LastActivityAt":"2023-02-15T06:22:53.305412Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":768,"ScoreAtt":93946,"RankDef":787,"ScoreDef":220848,"RankSup":508,"ScoreSup":165850,"RankTotal":855,"ScoreTotal":480644,"ID":9096738,"Name":"MistycznaParowa","NumVillages":1,"Points":188,"Rank":2325,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9096738","BestRank":2325,"BestRankAt":"2023-02-15T06:22:53.305412Z","MostPoints":188,"MostPointsAt":"2023-02-15T06:22:53.305413Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305413Z","LastActivityAt":"2023-02-15T06:22:53.305413Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":934,"ScoreDef":148684,"RankSup":0,"ScoreSup":0,"RankTotal":1251,"ScoreTotal":148684,"ID":9097545,"Name":"Lord Ɓukasz1997","NumVillages":1,"Points":2092,"Rank":1643,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9097545","BestRank":1643,"BestRankAt":"2023-02-15T06:22:53.305413Z","MostPoints":2092,"MostPointsAt":"2023-02-15T06:22:53.305413Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305413Z","LastActivityAt":"2023-02-15T06:22:53.305413Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9098296,"Name":"solidna","NumVillages":1,"Points":182,"Rank":2332,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9098296","BestRank":2332,"BestRankAt":"2023-02-15T06:22:53.305414Z","MostPoints":182,"MostPointsAt":"2023-02-15T06:22:53.305414Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305414Z","LastActivityAt":"2023-02-15T06:22:53.305414Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":523,"ScoreAtt":320655,"RankDef":825,"ScoreDef":196005,"RankSup":332,"ScoreSup":441777,"RankTotal":637,"ScoreTotal":958437,"ID":9101574,"Name":"Hashirama","NumVillages":51,"Points":371362,"Rank":312,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9101574","BestRank":312,"BestRankAt":"2023-02-15T06:22:53.305414Z","MostPoints":371362,"MostPointsAt":"2023-02-15T06:22:53.305414Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.305414Z","LastActivityAt":"2023-02-15T06:22:53.305414Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":891,"ScoreAtt":52920,"RankDef":308,"ScoreDef":1120247,"RankSup":649,"ScoreSup":72799,"RankTotal":548,"ScoreTotal":1245966,"ID":9103424,"Name":"kiokiokio","NumVillages":12,"Points":74275,"Rank":603,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9103424","BestRank":603,"BestRankAt":"2023-02-15T06:22:53.305415Z","MostPoints":74275,"MostPointsAt":"2023-02-15T06:22:53.305415Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.305415Z","LastActivityAt":"2023-02-15T06:22:53.305415Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":429,"ScoreAtt":488424,"RankDef":331,"ScoreDef":987378,"RankSup":525,"ScoreSup":147550,"RankTotal":472,"ScoreTotal":1623352,"ID":9106642,"Name":"Aftjero","NumVillages":0,"Points":0,"Rank":2956,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9106642","BestRank":2956,"BestRankAt":"2023-02-15T06:22:53.305415Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305415Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305415Z","LastActivityAt":"2023-02-15T06:22:53.305416Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1672,"ScoreAtt":722,"RankDef":649,"ScoreDef":322131,"RankSup":0,"ScoreSup":0,"RankTotal":986,"ScoreTotal":322853,"ID":9106690,"Name":"teduniook","NumVillages":2,"Points":4509,"Rank":1368,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9106690","BestRank":1368,"BestRankAt":"2023-02-15T06:22:53.305416Z","MostPoints":4509,"MostPointsAt":"2023-02-15T06:22:53.305416Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305416Z","LastActivityAt":"2023-02-15T06:22:53.305416Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1267,"ScoreDef":61075,"RankSup":643,"ScoreSup":75562,"RankTotal":1279,"ScoreTotal":136637,"ID":9113064,"Name":"OlaLuv","NumVillages":6,"Points":18479,"Rank":941,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9113064","BestRank":941,"BestRankAt":"2023-02-15T06:22:53.305416Z","MostPoints":18479,"MostPointsAt":"2023-02-15T06:22:53.305417Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.305416Z","LastActivityAt":"2023-02-15T06:22:53.305417Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9114562,"Name":"Tohsaka Rin","NumVillages":1,"Points":394,"Rank":2091,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9114562","BestRank":2091,"BestRankAt":"2023-02-15T06:22:53.305417Z","MostPoints":394,"MostPointsAt":"2023-02-15T06:22:53.305417Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305417Z","LastActivityAt":"2023-02-15T06:22:53.305417Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1070,"ScoreAtt":20805,"RankDef":1194,"ScoreDef":73740,"RankSup":1203,"ScoreSup":368,"RankTotal":1411,"ScoreTotal":94913,"ID":9120206,"Name":"hubo00","NumVillages":13,"Points":64680,"Rank":638,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9120206","BestRank":638,"BestRankAt":"2023-02-15T06:22:53.305417Z","MostPoints":64680,"MostPointsAt":"2023-02-15T06:22:53.305418Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.305418Z","LastActivityAt":"2023-02-15T06:22:53.305418Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2133,"ScoreDef":2172,"RankSup":0,"ScoreSup":0,"RankTotal":2238,"ScoreTotal":2172,"ID":9124682,"Name":"Unknown","NumVillages":1,"Points":150,"Rank":2379,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9124682","BestRank":2379,"BestRankAt":"2023-02-15T06:22:53.305418Z","MostPoints":150,"MostPointsAt":"2023-02-15T06:22:53.305418Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305418Z","LastActivityAt":"2023-02-15T06:22:53.305418Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9128606,"Name":"KamykosXD","NumVillages":1,"Points":70,"Rank":2534,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9128606","BestRank":2534,"BestRankAt":"2023-02-15T06:22:53.305419Z","MostPoints":70,"MostPointsAt":"2023-02-15T06:22:53.305419Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305419Z","LastActivityAt":"2023-02-15T06:22:53.305419Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1869,"ScoreAtt":94,"RankDef":2206,"ScoreDef":1120,"RankSup":0,"ScoreSup":0,"RankTotal":2299,"ScoreTotal":1214,"ID":9129046,"Name":"misiu12193","NumVillages":1,"Points":339,"Rank":2137,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9129046","BestRank":2137,"BestRankAt":"2023-02-15T06:22:53.305419Z","MostPoints":339,"MostPointsAt":"2023-02-15T06:22:53.305419Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305419Z","LastActivityAt":"2023-02-15T06:22:53.305419Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9135525,"Name":"apokalipsa25","NumVillages":1,"Points":26,"Rank":2677,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9135525","BestRank":2677,"BestRankAt":"2023-02-15T06:22:53.30542Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.30542Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30542Z","LastActivityAt":"2023-02-15T06:22:53.30542Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2247,"ScoreDef":647,"RankSup":0,"ScoreSup":0,"RankTotal":2333,"ScoreTotal":647,"ID":9136062,"Name":"bercik53","NumVillages":1,"Points":1453,"Rank":1758,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9136062","BestRank":1758,"BestRankAt":"2023-02-15T06:22:53.30542Z","MostPoints":1453,"MostPointsAt":"2023-02-15T06:22:53.30542Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30542Z","LastActivityAt":"2023-02-15T06:22:53.30542Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2143,"ScoreDef":2066,"RankSup":0,"ScoreSup":0,"RankTotal":2242,"ScoreTotal":2066,"ID":9138661,"Name":"Lodar93","NumVillages":1,"Points":26,"Rank":2678,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9138661","BestRank":2678,"BestRankAt":"2023-02-15T06:22:53.305421Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305421Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305421Z","LastActivityAt":"2023-02-15T06:22:53.305421Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1864,"ScoreAtt":107,"RankDef":588,"ScoreDef":392202,"RankSup":0,"ScoreSup":0,"RankTotal":924,"ScoreTotal":392309,"ID":9140898,"Name":"kmakma","NumVillages":2,"Points":7775,"Rank":1170,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9140898","BestRank":1170,"BestRankAt":"2023-02-15T06:22:53.305421Z","MostPoints":7775,"MostPointsAt":"2023-02-15T06:22:53.305421Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305421Z","LastActivityAt":"2023-02-15T06:22:53.305421Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1302,"ScoreAtt":6532,"RankDef":736,"ScoreDef":251567,"RankSup":0,"ScoreSup":0,"RankTotal":1045,"ScoreTotal":258099,"ID":9147518,"Name":"przemomam","NumVillages":1,"Points":2253,"Rank":1624,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9147518","BestRank":1624,"BestRankAt":"2023-02-15T06:22:53.305422Z","MostPoints":2253,"MostPointsAt":"2023-02-15T06:22:53.305422Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305422Z","LastActivityAt":"2023-02-15T06:22:53.305422Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":436,"ScoreAtt":472852,"RankDef":171,"ScoreDef":2158304,"RankSup":545,"ScoreSup":133472,"RankTotal":312,"ScoreTotal":2764628,"ID":9148043,"Name":"I am best1","NumVillages":44,"Points":296663,"Rank":357,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9148043","BestRank":357,"BestRankAt":"2023-02-15T06:22:53.305422Z","MostPoints":296663,"MostPointsAt":"2023-02-15T06:22:53.305422Z","MostVillages":44,"MostVillagesAt":"2023-02-15T06:22:53.305422Z","LastActivityAt":"2023-02-15T06:22:53.305423Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1526,"ScoreAtt":2122,"RankDef":1823,"ScoreDef":11153,"RankSup":0,"ScoreSup":0,"RankTotal":1949,"ScoreTotal":13275,"ID":9148439,"Name":"przembarca20","NumVillages":1,"Points":8120,"Rank":1150,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9148439","BestRank":1150,"BestRankAt":"2023-02-15T06:22:53.305423Z","MostPoints":8120,"MostPointsAt":"2023-02-15T06:22:53.305423Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305423Z","LastActivityAt":"2023-02-15T06:22:53.305423Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1943,"ScoreAtt":24,"RankDef":1052,"ScoreDef":107247,"RankSup":861,"ScoreSup":15750,"RankTotal":1319,"ScoreTotal":123021,"ID":9151549,"Name":"Brzydal 3-5","NumVillages":1,"Points":3250,"Rank":1501,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9151549","BestRank":1501,"BestRankAt":"2023-02-15T06:22:53.305423Z","MostPoints":3250,"MostPointsAt":"2023-02-15T06:22:53.305424Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305423Z","LastActivityAt":"2023-02-15T06:22:53.305424Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2113,"ScoreDef":2517,"RankSup":0,"ScoreSup":0,"RankTotal":2223,"ScoreTotal":2517,"ID":9153430,"Name":"- V -","NumVillages":1,"Points":235,"Rank":2245,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9153430","BestRank":2245,"BestRankAt":"2023-02-15T06:22:53.305424Z","MostPoints":235,"MostPointsAt":"2023-02-15T06:22:53.305424Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305424Z","LastActivityAt":"2023-02-15T06:22:53.305424Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":179,"ScoreAtt":1746829,"RankDef":58,"ScoreDef":5826417,"RankSup":547,"ScoreSup":131875,"RankTotal":108,"ScoreTotal":7705121,"ID":9154293,"Name":"Terror x Miniqo","NumVillages":1,"Points":26,"Rank":2679,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9154293","BestRank":2679,"BestRankAt":"2023-02-15T06:22:53.305424Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305425Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305425Z","LastActivityAt":"2023-02-15T06:22:53.305425Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":128,"ScoreAtt":2371307,"RankDef":611,"ScoreDef":365469,"RankSup":219,"ScoreSup":817274,"RankTotal":252,"ScoreTotal":3554050,"ID":9154820,"Name":"wilq332","NumVillages":0,"Points":0,"Rank":2957,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9154820","BestRank":2957,"BestRankAt":"2023-02-15T06:22:53.305425Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.305425Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.305425Z","LastActivityAt":"2023-02-15T06:22:53.305425Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1754,"ScoreAtt":323,"RankDef":2111,"ScoreDef":2523,"RankSup":0,"ScoreSup":0,"RankTotal":2215,"ScoreTotal":2846,"ID":9163140,"Name":".Krakers.","NumVillages":8,"Points":25076,"Rank":860,"TribeID":1368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9163140","BestRank":860,"BestRankAt":"2023-02-15T06:22:53.305426Z","MostPoints":25076,"MostPointsAt":"2023-02-15T06:22:53.305426Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.305426Z","LastActivityAt":"2023-02-15T06:22:53.305426Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":59,"ScoreAtt":4451047,"RankDef":105,"ScoreDef":3457749,"RankSup":92,"ScoreSup":2362611,"RankTotal":76,"ScoreTotal":10271407,"ID":9167250,"Name":"smieli","NumVillages":81,"Points":668460,"Rank":212,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9167250","BestRank":212,"BestRankAt":"2023-02-15T06:22:53.305426Z","MostPoints":668460,"MostPointsAt":"2023-02-15T06:22:53.305426Z","MostVillages":81,"MostVillagesAt":"2023-02-15T06:22:53.305426Z","LastActivityAt":"2023-02-15T06:22:53.305426Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":106,"ScoreAtt":2941544,"RankDef":1486,"ScoreDef":35593,"RankSup":741,"ScoreSup":37799,"RankTotal":287,"ScoreTotal":3014936,"ID":9174887,"Name":"JedynyTwardyPrawdziwy","NumVillages":71,"Points":705616,"Rank":205,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9174887","BestRank":205,"BestRankAt":"2023-02-15T06:22:53.305427Z","MostPoints":705616,"MostPointsAt":"2023-02-15T06:22:53.305427Z","MostVillages":71,"MostVillagesAt":"2023-02-15T06:22:53.305427Z","LastActivityAt":"2023-02-15T06:22:53.305427Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1077,"ScoreDef":100419,"RankSup":0,"ScoreSup":0,"RankTotal":1391,"ScoreTotal":100419,"ID":9179700,"Name":"KonopiTop","NumVillages":1,"Points":2516,"Rank":1585,"TribeID":1772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9179700","BestRank":1585,"BestRankAt":"2023-02-15T06:22:53.305427Z","MostPoints":2516,"MostPointsAt":"2023-02-15T06:22:53.305427Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305427Z","LastActivityAt":"2023-02-15T06:22:53.305427Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":687,"ScoreAtt":139193,"RankDef":1617,"ScoreDef":24511,"RankSup":172,"ScoreSup":1265785,"RankTotal":508,"ScoreTotal":1429489,"ID":9180206,"Name":"Larvanger","NumVillages":30,"Points":221444,"Rank":399,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9180206","BestRank":399,"BestRankAt":"2023-02-15T06:22:53.305428Z","MostPoints":221444,"MostPointsAt":"2023-02-15T06:22:53.305428Z","MostVillages":30,"MostVillagesAt":"2023-02-15T06:22:53.305428Z","LastActivityAt":"2023-02-15T06:22:53.305428Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":573,"ScoreAtt":242341,"RankDef":449,"ScoreDef":625062,"RankSup":349,"ScoreSup":412274,"RankTotal":542,"ScoreTotal":1279677,"ID":9182487,"Name":"Sir kamil 1999","NumVillages":1,"Points":119,"Rank":2449,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9182487","BestRank":2449,"BestRankAt":"2023-02-15T06:22:53.305429Z","MostPoints":119,"MostPointsAt":"2023-02-15T06:22:53.305429Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305429Z","LastActivityAt":"2023-02-15T06:22:53.305429Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1623,"ScoreAtt":1073,"RankDef":526,"ScoreDef":486207,"RankSup":0,"ScoreSup":0,"RankTotal":849,"ScoreTotal":487280,"ID":9185931,"Name":"bury16","NumVillages":1,"Points":5995,"Rank":1269,"TribeID":12,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9185931","BestRank":1269,"BestRankAt":"2023-02-15T06:22:53.305429Z","MostPoints":5995,"MostPointsAt":"2023-02-15T06:22:53.305429Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305429Z","LastActivityAt":"2023-02-15T06:22:53.30543Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":684,"ScoreAtt":139437,"RankDef":1964,"ScoreDef":5899,"RankSup":315,"ScoreSup":479284,"RankTotal":769,"ScoreTotal":624620,"ID":9186126,"Name":"KingJulian","NumVillages":27,"Points":227054,"Rank":394,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9186126","BestRank":394,"BestRankAt":"2023-02-15T06:22:53.30543Z","MostPoints":227054,"MostPointsAt":"2023-02-15T06:22:53.30543Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.30543Z","LastActivityAt":"2023-02-15T06:22:53.30543Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":152,"ScoreAtt":2030581,"RankDef":827,"ScoreDef":194796,"RankSup":338,"ScoreSup":430630,"RankTotal":327,"ScoreTotal":2656007,"ID":9186877,"Name":"Bernhard Roth*","NumVillages":1,"Points":206,"Rank":2291,"TribeID":1806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9186877","BestRank":2291,"BestRankAt":"2023-02-15T06:22:53.30543Z","MostPoints":206,"MostPointsAt":"2023-02-15T06:22:53.305431Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.30543Z","LastActivityAt":"2023-02-15T06:22:53.305431Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":223,"ScoreAtt":1324407,"RankDef":1139,"ScoreDef":86299,"RankSup":62,"ScoreSup":3043049,"RankTotal":214,"ScoreTotal":4453755,"ID":9188016,"Name":"byMuerte","NumVillages":150,"Points":1203969,"Rank":111,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9188016","BestRank":111,"BestRankAt":"2023-02-15T06:22:53.305431Z","MostPoints":1203969,"MostPointsAt":"2023-02-15T06:22:53.305431Z","MostVillages":150,"MostVillagesAt":"2023-02-15T06:22:53.305431Z","LastActivityAt":"2023-02-15T06:22:53.305431Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1700,"ScoreAtt":582,"RankDef":1312,"ScoreDef":56169,"RankSup":1380,"ScoreSup":3,"RankTotal":1575,"ScoreTotal":56754,"ID":9191031,"Name":"Lord Yogurt I","NumVillages":5,"Points":23924,"Rank":873,"TribeID":1763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9191031","BestRank":873,"BestRankAt":"2023-02-15T06:22:53.305431Z","MostPoints":23924,"MostPointsAt":"2023-02-15T06:22:53.305432Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.305432Z","LastActivityAt":"2023-02-15T06:22:53.305432Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":632,"ScoreAtt":177403,"RankDef":428,"ScoreDef":668174,"RankSup":770,"ScoreSup":32479,"RankTotal":664,"ScoreTotal":878056,"ID":9195661,"Name":"MĂłwMiHarpagan","NumVillages":11,"Points":67321,"Rank":624,"TribeID":1793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9195661","BestRank":624,"BestRankAt":"2023-02-15T06:22:53.305432Z","MostPoints":67321,"MostPointsAt":"2023-02-15T06:22:53.305432Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.305432Z","LastActivityAt":"2023-02-15T06:22:53.305432Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":604,"ScoreAtt":208214,"RankDef":406,"ScoreDef":737788,"RankSup":761,"ScoreSup":33236,"RankTotal":623,"ScoreTotal":979238,"ID":9199885,"Name":"Sir maniek","NumVillages":26,"Points":151459,"Rank":466,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9199885","BestRank":466,"BestRankAt":"2023-02-15T06:22:53.305433Z","MostPoints":151459,"MostPointsAt":"2023-02-15T06:22:53.305433Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.305433Z","LastActivityAt":"2023-02-15T06:22:53.305433Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9201946,"Name":"kojak14","NumVillages":1,"Points":26,"Rank":2680,"TribeID":1799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9201946","BestRank":2680,"BestRankAt":"2023-02-15T06:22:53.305433Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305433Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305433Z","LastActivityAt":"2023-02-15T06:22:53.305433Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2493,"ScoreDef":3,"RankSup":0,"ScoreSup":0,"RankTotal":2567,"ScoreTotal":3,"ID":9213654,"Name":"maniek38","NumVillages":1,"Points":26,"Rank":2681,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9213654","BestRank":2681,"BestRankAt":"2023-02-15T06:22:53.305434Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.305434Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305434Z","LastActivityAt":"2023-02-15T06:22:53.305434Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9219778,"Name":"miki0412","NumVillages":1,"Points":166,"Rank":2359,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9219778","BestRank":2359,"BestRankAt":"2023-02-15T06:22:53.305434Z","MostPoints":166,"MostPointsAt":"2023-02-15T06:22:53.305434Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305434Z","LastActivityAt":"2023-02-15T06:22:53.305434Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1768,"ScoreAtt":286,"RankDef":1801,"ScoreDef":12339,"RankSup":1018,"ScoreSup":4215,"RankTotal":1909,"ScoreTotal":16840,"ID":9225795,"Name":"SatsIronSide","NumVillages":1,"Points":6136,"Rank":1264,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9225795","BestRank":1264,"BestRankAt":"2023-02-15T06:22:53.305435Z","MostPoints":6136,"MostPointsAt":"2023-02-15T06:22:53.305435Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305435Z","LastActivityAt":"2023-02-15T06:22:53.305435Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":246,"ScoreAtt":1163994,"RankDef":1466,"ScoreDef":36966,"RankSup":520,"ScoreSup":151729,"RankTotal":526,"ScoreTotal":1352689,"ID":9228039,"Name":"sKev","NumVillages":86,"Points":663676,"Rank":216,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9228039","BestRank":216,"BestRankAt":"2023-02-15T06:22:53.305435Z","MostPoints":663676,"MostPointsAt":"2023-02-15T06:22:53.305435Z","MostVillages":86,"MostVillagesAt":"2023-02-15T06:22:53.305435Z","LastActivityAt":"2023-02-15T06:22:53.305436Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1590,"ScoreAtt":1392,"RankDef":1252,"ScoreDef":62972,"RankSup":0,"ScoreSup":0,"RankTotal":1533,"ScoreTotal":64364,"ID":9231765,"Name":"Lord Jack Carver","NumVillages":1,"Points":3949,"Rank":1415,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9231765","BestRank":1415,"BestRankAt":"2023-02-15T06:22:53.305436Z","MostPoints":3949,"MostPointsAt":"2023-02-15T06:22:53.305436Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305436Z","LastActivityAt":"2023-02-15T06:22:53.305436Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1400,"ScoreAtt":4169,"RankDef":409,"ScoreDef":723166,"RankSup":0,"ScoreSup":0,"RankTotal":715,"ScoreTotal":727335,"ID":9234594,"Name":"prince rudeboy","NumVillages":1,"Points":136,"Rank":2400,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9234594","BestRank":2400,"BestRankAt":"2023-02-15T06:22:53.305436Z","MostPoints":136,"MostPointsAt":"2023-02-15T06:22:53.305437Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.305436Z","LastActivityAt":"2023-02-15T06:22:53.305437Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1017,"ScoreAtt":27937,"RankDef":1285,"ScoreDef":59213,"RankSup":878,"ScoreSup":14163,"RankTotal":1388,"ScoreTotal":101313,"ID":9235561,"Name":"Chesterton","NumVillages":12,"Points":62929,"Rank":642,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9235561","BestRank":642,"BestRankAt":"2023-02-15T06:22:53.305437Z","MostPoints":62929,"MostPointsAt":"2023-02-15T06:22:53.305437Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.305437Z","LastActivityAt":"2023-02-15T06:22:53.305437Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":16,"ScoreAtt":9877891,"RankDef":81,"ScoreDef":4238466,"RankSup":55,"ScoreSup":3154087,"RankTotal":36,"ScoreTotal":17270444,"ID":9236866,"Name":"notfair.","NumVillages":293,"Points":2543824,"Rank":22,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9236866","BestRank":22,"BestRankAt":"2023-02-15T06:22:53.305437Z","MostPoints":2543824,"MostPointsAt":"2023-02-15T06:22:53.305438Z","MostVillages":293,"MostVillagesAt":"2023-02-15T06:22:53.305438Z","LastActivityAt":"2023-02-15T06:22:53.305438Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":306,"ScoreAtt":903020,"RankDef":1106,"ScoreDef":93197,"RankSup":444,"ScoreSup":235724,"RankTotal":550,"ScoreTotal":1231941,"ID":9238175,"Name":"Mucharadza","NumVillages":86,"Points":845999,"Rank":171,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9238175","BestRank":171,"BestRankAt":"2023-02-15T06:22:53.305438Z","MostPoints":845999,"MostPointsAt":"2023-02-15T06:22:53.305438Z","MostVillages":86,"MostVillagesAt":"2023-02-15T06:22:53.305438Z","LastActivityAt":"2023-02-15T06:22:53.305438Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":917,"ScoreAtt":47568,"RankDef":178,"ScoreDef":2065078,"RankSup":323,"ScoreSup":457884,"RankTotal":339,"ScoreTotal":2570530,"ID":9239515,"Name":"WiedĆșma100","NumVillages":21,"Points":94287,"Rank":553,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9239515","BestRank":553,"BestRankAt":"2023-02-15T06:22:53.305439Z","MostPoints":94287,"MostPointsAt":"2023-02-15T06:22:53.305439Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.305439Z","LastActivityAt":"2023-02-15T06:22:53.305439Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1974,"ScoreAtt":9,"RankDef":1226,"ScoreDef":68044,"RankSup":895,"ScoreSup":12406,"RankTotal":1461,"ScoreTotal":80459,"ID":9240154,"Name":"JackBlant","NumVillages":2,"Points":4467,"Rank":1375,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9240154","BestRank":1375,"BestRankAt":"2023-02-15T06:22:53.305439Z","MostPoints":4467,"MostPointsAt":"2023-02-15T06:22:53.305439Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.305439Z","LastActivityAt":"2023-02-15T06:22:53.305439Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.305707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9247737,"Name":"lukempire","NumVillages":1,"Points":26,"Rank":2682,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9247737","BestRank":2682,"BestRankAt":"2023-02-15T06:22:53.373052Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373053Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373053Z","LastActivityAt":"2023-02-15T06:22:53.373053Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1175,"ScoreAtt":12181,"RankDef":1727,"ScoreDef":17135,"RankSup":0,"ScoreSup":0,"RankTotal":1779,"ScoreTotal":29316,"ID":9253494,"Name":"LordDeltax","NumVillages":6,"Points":45642,"Rank":713,"TribeID":1470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9253494","BestRank":713,"BestRankAt":"2023-02-15T06:22:53.373054Z","MostPoints":45642,"MostPointsAt":"2023-02-15T06:22:53.373055Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.373055Z","LastActivityAt":"2023-02-15T06:22:53.373055Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2286,"ScoreDef":382,"RankSup":996,"ScoreSup":5437,"RankTotal":2103,"ScoreTotal":5819,"ID":9257513,"Name":"adekkolt1","NumVillages":1,"Points":26,"Rank":2683,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9257513","BestRank":2683,"BestRankAt":"2023-02-15T06:22:53.373056Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373056Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373056Z","LastActivityAt":"2023-02-15T06:22:53.373057Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1335,"ScoreDef":53601,"RankSup":1076,"ScoreSup":2420,"RankTotal":1576,"ScoreTotal":56021,"ID":9260447,"Name":"Mursilis","NumVillages":1,"Points":2540,"Rank":1582,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9260447","BestRank":1582,"BestRankAt":"2023-02-15T06:22:53.373057Z","MostPoints":2540,"MostPointsAt":"2023-02-15T06:22:53.373058Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373057Z","LastActivityAt":"2023-02-15T06:22:53.373058Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1562,"ScoreDef":28650,"RankSup":0,"ScoreSup":0,"RankTotal":1784,"ScoreTotal":28650,"ID":9262877,"Name":"Blautek Janello","NumVillages":1,"Points":6399,"Rank":1245,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9262877","BestRank":1245,"BestRankAt":"2023-02-15T06:22:53.373059Z","MostPoints":6399,"MostPointsAt":"2023-02-15T06:22:53.373059Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373059Z","LastActivityAt":"2023-02-15T06:22:53.373059Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":205,"ScoreAtt":1536924,"RankDef":1066,"ScoreDef":102868,"RankSup":0,"ScoreSup":0,"RankTotal":469,"ScoreTotal":1639792,"ID":9264752,"Name":"Hitman003","NumVillages":21,"Points":215655,"Rank":406,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9264752","BestRank":406,"BestRankAt":"2023-02-15T06:22:53.373061Z","MostPoints":215655,"MostPointsAt":"2023-02-15T06:22:53.373061Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.373061Z","LastActivityAt":"2023-02-15T06:22:53.373061Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1791,"ScoreAtt":233,"RankDef":1531,"ScoreDef":30909,"RankSup":839,"ScoreSup":17676,"RankTotal":1622,"ScoreTotal":48818,"ID":9266092,"Name":"julka27","NumVillages":1,"Points":2120,"Rank":1639,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9266092","BestRank":1639,"BestRankAt":"2023-02-15T06:22:53.373062Z","MostPoints":2120,"MostPointsAt":"2023-02-15T06:22:53.373062Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373062Z","LastActivityAt":"2023-02-15T06:22:53.373062Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1299,"ScoreAtt":6583,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2081,"ScoreTotal":6583,"ID":9270302,"Name":"Sir Pazdan","NumVillages":1,"Points":1281,"Rank":1791,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9270302","BestRank":1791,"BestRankAt":"2023-02-15T06:22:53.373064Z","MostPoints":1281,"MostPointsAt":"2023-02-15T06:22:53.373065Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373064Z","LastActivityAt":"2023-02-15T06:22:53.373065Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":201,"ScoreAtt":1564933,"RankDef":256,"ScoreDef":1452011,"RankSup":15,"ScoreSup":6018415,"RankTotal":82,"ScoreTotal":9035359,"ID":9272054,"Name":"Gracze","NumVillages":102,"Points":963354,"Rank":152,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9272054","BestRank":152,"BestRankAt":"2023-02-15T06:22:53.373065Z","MostPoints":963354,"MostPointsAt":"2023-02-15T06:22:53.373066Z","MostVillages":102,"MostVillagesAt":"2023-02-15T06:22:53.373066Z","LastActivityAt":"2023-02-15T06:22:53.373066Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1033,"ScoreAtt":26292,"RankDef":898,"ScoreDef":166763,"RankSup":1176,"ScoreSup":622,"RankTotal":1151,"ScoreTotal":193677,"ID":9277642,"Name":"cago1994","NumVillages":1,"Points":5319,"Rank":1310,"TribeID":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9277642","BestRank":1310,"BestRankAt":"2023-02-15T06:22:53.373067Z","MostPoints":5319,"MostPointsAt":"2023-02-15T06:22:53.373067Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373067Z","LastActivityAt":"2023-02-15T06:22:53.373067Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":25,"ScoreAtt":7346222,"RankDef":241,"ScoreDef":1558749,"RankSup":12,"ScoreSup":6764550,"RankTotal":44,"ScoreTotal":15669521,"ID":9280477,"Name":"Kampaj3","NumVillages":278,"Points":2572859,"Rank":20,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9280477","BestRank":20,"BestRankAt":"2023-02-15T06:22:53.373068Z","MostPoints":2572859,"MostPointsAt":"2023-02-15T06:22:53.373068Z","MostVillages":278,"MostVillagesAt":"2023-02-15T06:22:53.373068Z","LastActivityAt":"2023-02-15T06:22:53.373068Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":581,"ScoreAtt":236718,"RankDef":459,"ScoreDef":600382,"RankSup":1114,"ScoreSup":1608,"RankTotal":673,"ScoreTotal":838708,"ID":9280679,"Name":"Kross x Smerf","NumVillages":1,"Points":26,"Rank":2684,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9280679","BestRank":2684,"BestRankAt":"2023-02-15T06:22:53.373069Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.37307Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373069Z","LastActivityAt":"2023-02-15T06:22:53.37307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1302,"ScoreDef":57579,"RankSup":1371,"ScoreSup":3,"RankTotal":1573,"ScoreTotal":57582,"ID":9282669,"Name":"Johnny B","NumVillages":1,"Points":4663,"Rank":1359,"TribeID":1389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9282669","BestRank":1359,"BestRankAt":"2023-02-15T06:22:53.373072Z","MostPoints":4663,"MostPointsAt":"2023-02-15T06:22:53.373072Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373072Z","LastActivityAt":"2023-02-15T06:22:53.373072Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":226,"ScoreAtt":1318612,"RankDef":2046,"ScoreDef":3897,"RankSup":866,"ScoreSup":15198,"RankTotal":529,"ScoreTotal":1337707,"ID":9282974,"Name":"Geamel","NumVillages":1,"Points":26,"Rank":2685,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9282974","BestRank":2685,"BestRankAt":"2023-02-15T06:22:53.373073Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373073Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373073Z","LastActivityAt":"2023-02-15T06:22:53.373073Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1291,"ScoreAtt":6735,"RankDef":873,"ScoreDef":176573,"RankSup":0,"ScoreSup":0,"RankTotal":1183,"ScoreTotal":183308,"ID":9283142,"Name":"Zi3lonoMi","NumVillages":2,"Points":10744,"Rank":1062,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9283142","BestRank":1062,"BestRankAt":"2023-02-15T06:22:53.373074Z","MostPoints":10744,"MostPointsAt":"2023-02-15T06:22:53.373074Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373074Z","LastActivityAt":"2023-02-15T06:22:53.373075Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1480,"ScoreAtt":2676,"RankDef":1870,"ScoreDef":9262,"RankSup":0,"ScoreSup":0,"RankTotal":1968,"ScoreTotal":11938,"ID":9283775,"Name":"nani91","NumVillages":11,"Points":38684,"Rank":749,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9283775","BestRank":749,"BestRankAt":"2023-02-15T06:22:53.373075Z","MostPoints":38684,"MostPointsAt":"2023-02-15T06:22:53.373076Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.373076Z","LastActivityAt":"2023-02-15T06:22:53.373076Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":48,"ScoreAtt":5009603,"RankDef":126,"ScoreDef":3045776,"RankSup":68,"ScoreSup":2842017,"RankTotal":69,"ScoreTotal":10897396,"ID":9291984,"Name":"Alessaandra","NumVillages":213,"Points":1822825,"Rank":58,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9291984","BestRank":58,"BestRankAt":"2023-02-15T06:22:53.373077Z","MostPoints":1822825,"MostPointsAt":"2023-02-15T06:22:53.373077Z","MostVillages":213,"MostVillagesAt":"2023-02-15T06:22:53.373077Z","LastActivityAt":"2023-02-15T06:22:53.373077Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":998,"ScoreAtt":30875,"RankDef":1547,"ScoreDef":29827,"RankSup":1155,"ScoreSup":930,"RankTotal":1540,"ScoreTotal":61632,"ID":9292037,"Name":"VestoreI","NumVillages":1,"Points":1581,"Rank":1737,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9292037","BestRank":1737,"BestRankAt":"2023-02-15T06:22:53.373078Z","MostPoints":1581,"MostPointsAt":"2023-02-15T06:22:53.373078Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373078Z","LastActivityAt":"2023-02-15T06:22:53.373078Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9294339,"Name":"peniozdw","NumVillages":1,"Points":26,"Rank":2686,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9294339","BestRank":2686,"BestRankAt":"2023-02-15T06:22:53.373079Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373079Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373079Z","LastActivityAt":"2023-02-15T06:22:53.37308Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":810,"ScoreAtt":76381,"RankDef":673,"ScoreDef":293814,"RankSup":93,"ScoreSup":2357137,"RankTotal":321,"ScoreTotal":2727332,"ID":9299539,"Name":"DefinitelyRlyTheD0orek","NumVillages":174,"Points":1394283,"Rank":84,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9299539","BestRank":84,"BestRankAt":"2023-02-15T06:22:53.37308Z","MostPoints":1394283,"MostPointsAt":"2023-02-15T06:22:53.373081Z","MostVillages":174,"MostVillagesAt":"2023-02-15T06:22:53.37308Z","LastActivityAt":"2023-02-15T06:22:53.373081Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9300026,"Name":"Rangiku Matsumoto","NumVillages":1,"Points":26,"Rank":2687,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9300026","BestRank":2687,"BestRankAt":"2023-02-15T06:22:53.373082Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373082Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373082Z","LastActivityAt":"2023-02-15T06:22:53.373082Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9302748,"Name":"PijęMurzyniankę","NumVillages":1,"Points":69,"Rank":2536,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9302748","BestRank":2536,"BestRankAt":"2023-02-15T06:22:53.373083Z","MostPoints":69,"MostPointsAt":"2023-02-15T06:22:53.373083Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373083Z","LastActivityAt":"2023-02-15T06:22:53.373083Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1873,"ScoreAtt":90,"RankDef":2503,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2442,"ScoreTotal":92,"ID":9312528,"Name":"mateszko166","NumVillages":1,"Points":3883,"Rank":1423,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9312528","BestRank":1423,"BestRankAt":"2023-02-15T06:22:53.373084Z","MostPoints":3883,"MostPointsAt":"2023-02-15T06:22:53.373084Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373084Z","LastActivityAt":"2023-02-15T06:22:53.373085Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":276,"ScoreAtt":1020709,"RankDef":576,"ScoreDef":403206,"RankSup":603,"ScoreSup":98413,"RankTotal":489,"ScoreTotal":1522328,"ID":9314079,"Name":"Kamilex00","NumVillages":101,"Points":765826,"Rank":188,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9314079","BestRank":188,"BestRankAt":"2023-02-15T06:22:53.373085Z","MostPoints":765826,"MostPointsAt":"2023-02-15T06:22:53.373086Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.373085Z","LastActivityAt":"2023-02-15T06:22:53.373086Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1403,"ScoreAtt":4139,"RankDef":391,"ScoreDef":771043,"RankSup":0,"ScoreSup":0,"RankTotal":695,"ScoreTotal":775182,"ID":9314153,"Name":"Giermek franek","NumVillages":1,"Points":3781,"Rank":1434,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9314153","BestRank":1434,"BestRankAt":"2023-02-15T06:22:53.373086Z","MostPoints":3781,"MostPointsAt":"2023-02-15T06:22:53.373087Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373087Z","LastActivityAt":"2023-02-15T06:22:53.373087Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1053,"ScoreDef":106673,"RankSup":1396,"ScoreSup":2,"RankTotal":1369,"ScoreTotal":106675,"ID":9318449,"Name":"paulinarzy","NumVillages":0,"Points":0,"Rank":2958,"TribeID":1338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9318449","BestRank":2958,"BestRankAt":"2023-02-15T06:22:53.373088Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373088Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373088Z","LastActivityAt":"2023-02-15T06:22:53.373088Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":119,"ScoreAtt":2503982,"RankDef":302,"ScoreDef":1150010,"RankSup":86,"ScoreSup":2429993,"RankTotal":146,"ScoreTotal":6083985,"ID":9319058,"Name":"walka500","NumVillages":141,"Points":1347755,"Rank":91,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9319058","BestRank":91,"BestRankAt":"2023-02-15T06:22:53.37309Z","MostPoints":1347755,"MostPointsAt":"2023-02-15T06:22:53.373091Z","MostVillages":141,"MostVillagesAt":"2023-02-15T06:22:53.37309Z","LastActivityAt":"2023-02-15T06:22:53.373091Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":740,"ScoreAtt":108556,"RankDef":364,"ScoreDef":837597,"RankSup":238,"ScoreSup":745107,"RankTotal":462,"ScoreTotal":1691260,"ID":9320272,"Name":"Raukodel","NumVillages":3,"Points":12203,"Rank":1041,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9320272","BestRank":1041,"BestRankAt":"2023-02-15T06:22:53.373091Z","MostPoints":12203,"MostPointsAt":"2023-02-15T06:22:53.373092Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373092Z","LastActivityAt":"2023-02-15T06:22:53.373092Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":335,"ScoreAtt":774260,"RankDef":559,"ScoreDef":424614,"RankSup":395,"ScoreSup":321132,"RankTotal":491,"ScoreTotal":1520006,"ID":698143931,"Name":"Thresh","NumVillages":27,"Points":264662,"Rank":369,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698143931","BestRank":369,"BestRankAt":"2023-02-15T06:22:53.373093Z","MostPoints":264662,"MostPointsAt":"2023-02-15T06:22:53.373093Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.373093Z","LastActivityAt":"2023-02-15T06:22:53.373093Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":302,"ScoreAtt":913811,"RankDef":853,"ScoreDef":184948,"RankSup":220,"ScoreSup":814984,"RankTotal":417,"ScoreTotal":1913743,"ID":698147372,"Name":"hardkour","NumVillages":41,"Points":317779,"Rank":349,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698147372","BestRank":349,"BestRankAt":"2023-02-15T06:22:53.373094Z","MostPoints":317779,"MostPointsAt":"2023-02-15T06:22:53.373094Z","MostVillages":41,"MostVillagesAt":"2023-02-15T06:22:53.373094Z","LastActivityAt":"2023-02-15T06:22:53.373094Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":548,"ScoreAtt":285927,"RankDef":203,"ScoreDef":1844189,"RankSup":806,"ScoreSup":24237,"RankTotal":388,"ScoreTotal":2154353,"ID":698147969,"Name":"Wysypisko Ć»ycia","NumVillages":1,"Points":99,"Rank":2485,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698147969","BestRank":2485,"BestRankAt":"2023-02-15T06:22:53.373095Z","MostPoints":99,"MostPointsAt":"2023-02-15T06:22:53.373095Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373095Z","LastActivityAt":"2023-02-15T06:22:53.373096Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1295,"ScoreDef":58359,"RankSup":0,"ScoreSup":0,"RankTotal":1566,"ScoreTotal":58359,"ID":698151302,"Name":"tomaszek74","NumVillages":1,"Points":2045,"Rank":1652,"TribeID":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698151302","BestRank":1652,"BestRankAt":"2023-02-15T06:22:53.373096Z","MostPoints":2045,"MostPointsAt":"2023-02-15T06:22:53.373097Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373097Z","LastActivityAt":"2023-02-15T06:22:53.373097Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":8,"ScoreAtt":14193835,"RankDef":11,"ScoreDef":20341024,"RankSup":1,"ScoreSup":29895545,"RankTotal":2,"ScoreTotal":64430404,"ID":698152377,"Name":"DefinitelyRlyTheMackobl","NumVillages":888,"Points":7474323,"Rank":1,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698152377","BestRank":1,"BestRankAt":"2023-02-15T06:22:53.373098Z","MostPoints":7474323,"MostPointsAt":"2023-02-15T06:22:53.373098Z","MostVillages":888,"MostVillagesAt":"2023-02-15T06:22:53.373098Z","LastActivityAt":"2023-02-15T06:22:53.373098Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":837,"ScoreAtt":69650,"RankDef":1776,"ScoreDef":13887,"RankSup":1120,"ScoreSup":1542,"RankTotal":1450,"ScoreTotal":85079,"ID":698152498,"Name":"Murano","NumVillages":1,"Points":2453,"Rank":1590,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698152498","BestRank":1590,"BestRankAt":"2023-02-15T06:22:53.373099Z","MostPoints":2453,"MostPointsAt":"2023-02-15T06:22:53.373099Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373099Z","LastActivityAt":"2023-02-15T06:22:53.373099Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":124,"ScoreAtt":2425619,"RankDef":403,"ScoreDef":747433,"RankSup":130,"ScoreSup":1641487,"RankTotal":197,"ScoreTotal":4814539,"ID":698160606,"Name":"denq","NumVillages":157,"Points":1240497,"Rank":103,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698160606","BestRank":103,"BestRankAt":"2023-02-15T06:22:53.3731Z","MostPoints":1240497,"MostPointsAt":"2023-02-15T06:22:53.3731Z","MostVillages":157,"MostVillagesAt":"2023-02-15T06:22:53.3731Z","LastActivityAt":"2023-02-15T06:22:53.373101Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698162153,"Name":"Lord Magik77","NumVillages":1,"Points":75,"Rank":2522,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698162153","BestRank":2522,"BestRankAt":"2023-02-15T06:22:53.373101Z","MostPoints":75,"MostPointsAt":"2023-02-15T06:22:53.373102Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373101Z","LastActivityAt":"2023-02-15T06:22:53.373102Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1349,"ScoreAtt":5304,"RankDef":225,"ScoreDef":1674338,"RankSup":899,"ScoreSup":11992,"RankTotal":461,"ScoreTotal":1691634,"ID":698162312,"Name":"delta6583","NumVillages":1,"Points":405,"Rank":2084,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698162312","BestRank":2084,"BestRankAt":"2023-02-15T06:22:53.373103Z","MostPoints":405,"MostPointsAt":"2023-02-15T06:22:53.373103Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373103Z","LastActivityAt":"2023-02-15T06:22:53.373103Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1668,"ScoreAtt":744,"RankDef":1990,"ScoreDef":5365,"RankSup":0,"ScoreSup":0,"RankTotal":2094,"ScoreTotal":6109,"ID":698162357,"Name":"SirCzoper","NumVillages":1,"Points":1974,"Rank":1672,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698162357","BestRank":1672,"BestRankAt":"2023-02-15T06:22:53.373104Z","MostPoints":1974,"MostPointsAt":"2023-02-15T06:22:53.373104Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373104Z","LastActivityAt":"2023-02-15T06:22:53.373104Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":717,"ScoreAtt":117907,"RankDef":547,"ScoreDef":448815,"RankSup":490,"ScoreSup":181253,"RankTotal":708,"ScoreTotal":747975,"ID":698167138,"Name":"borysdragosani","NumVillages":24,"Points":60437,"Rank":653,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698167138","BestRank":653,"BestRankAt":"2023-02-15T06:22:53.373105Z","MostPoints":60437,"MostPointsAt":"2023-02-15T06:22:53.373105Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.373105Z","LastActivityAt":"2023-02-15T06:22:53.373106Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1771,"ScoreAtt":280,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2386,"ScoreTotal":280,"ID":698167153,"Name":"ok3m","NumVillages":1,"Points":1124,"Rank":1827,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698167153","BestRank":1827,"BestRankAt":"2023-02-15T06:22:53.373106Z","MostPoints":1124,"MostPointsAt":"2023-02-15T06:22:53.373107Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373106Z","LastActivityAt":"2023-02-15T06:22:53.373107Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698167413,"Name":"PrzechyƂy i przechyƂy...","NumVillages":1,"Points":26,"Rank":2688,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698167413","BestRank":2688,"BestRankAt":"2023-02-15T06:22:53.373107Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373108Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373108Z","LastActivityAt":"2023-02-15T06:22:53.373108Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1641,"ScoreAtt":910,"RankDef":923,"ScoreDef":151980,"RankSup":1310,"ScoreSup":20,"RankTotal":1241,"ScoreTotal":152910,"ID":698169715,"Name":"misiekmaƂy","NumVillages":1,"Points":3437,"Rank":1475,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698169715","BestRank":1475,"BestRankAt":"2023-02-15T06:22:53.373109Z","MostPoints":3437,"MostPointsAt":"2023-02-15T06:22:53.373109Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373109Z","LastActivityAt":"2023-02-15T06:22:53.373109Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1270,"ScoreAtt":7413,"RankDef":532,"ScoreDef":477951,"RankSup":684,"ScoreSup":56228,"RankTotal":811,"ScoreTotal":541592,"ID":698171150,"Name":"DRAGONMIR","NumVillages":1,"Points":1274,"Rank":1795,"TribeID":1757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698171150","BestRank":1795,"BestRankAt":"2023-02-15T06:22:53.37311Z","MostPoints":1274,"MostPointsAt":"2023-02-15T06:22:53.37311Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37311Z","LastActivityAt":"2023-02-15T06:22:53.37311Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":791,"ScoreAtt":84895,"RankDef":270,"ScoreDef":1343037,"RankSup":0,"ScoreSup":0,"RankTotal":509,"ScoreTotal":1427932,"ID":698178312,"Name":"mygos","NumVillages":13,"Points":37444,"Rank":756,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698178312","BestRank":756,"BestRankAt":"2023-02-15T06:22:53.373111Z","MostPoints":37444,"MostPointsAt":"2023-02-15T06:22:53.373112Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.373111Z","LastActivityAt":"2023-02-15T06:22:53.373112Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1186,"ScoreAtt":11437,"RankDef":2281,"ScoreDef":416,"RankSup":0,"ScoreSup":0,"RankTotal":1970,"ScoreTotal":11853,"ID":698182935,"Name":"xxShiva18xx","NumVillages":2,"Points":10045,"Rank":1082,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698182935","BestRank":1082,"BestRankAt":"2023-02-15T06:22:53.373112Z","MostPoints":10045,"MostPointsAt":"2023-02-15T06:22:53.373113Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373113Z","LastActivityAt":"2023-02-15T06:22:53.373113Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1814,"ScoreAtt":174,"RankDef":1241,"ScoreDef":65726,"RankSup":1110,"ScoreSup":1686,"RankTotal":1515,"ScoreTotal":67586,"ID":698187023,"Name":"dzbanek54321","NumVillages":1,"Points":4472,"Rank":1374,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698187023","BestRank":1374,"BestRankAt":"2023-02-15T06:22:53.373114Z","MostPoints":4472,"MostPointsAt":"2023-02-15T06:22:53.373114Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373114Z","LastActivityAt":"2023-02-15T06:22:53.373114Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1811,"ScoreDef":11745,"RankSup":0,"ScoreSup":0,"RankTotal":1971,"ScoreTotal":11745,"ID":698190039,"Name":"mirmyn","NumVillages":1,"Points":1355,"Rank":1777,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698190039","BestRank":1777,"BestRankAt":"2023-02-15T06:22:53.373115Z","MostPoints":1355,"MostPointsAt":"2023-02-15T06:22:53.373115Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373115Z","LastActivityAt":"2023-02-15T06:22:53.373115Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":643,"ScoreAtt":165097,"RankDef":1413,"ScoreDef":41654,"RankSup":562,"ScoreSup":123194,"RankTotal":978,"ScoreTotal":329945,"ID":698191218,"Name":"SeexyPapi","NumVillages":409,"Points":3136853,"Rank":15,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698191218","BestRank":15,"BestRankAt":"2023-02-15T06:22:53.373116Z","MostPoints":3136853,"MostPointsAt":"2023-02-15T06:22:53.373116Z","MostVillages":409,"MostVillagesAt":"2023-02-15T06:22:53.373116Z","LastActivityAt":"2023-02-15T06:22:53.373117Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":981,"ScoreAtt":33407,"RankDef":1289,"ScoreDef":58822,"RankSup":0,"ScoreSup":0,"RankTotal":1424,"ScoreTotal":92229,"ID":698200480,"Name":"Ida Madame","NumVillages":20,"Points":113414,"Rank":514,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698200480","BestRank":514,"BestRankAt":"2023-02-15T06:22:53.373117Z","MostPoints":113414,"MostPointsAt":"2023-02-15T06:22:53.373118Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.373117Z","LastActivityAt":"2023-02-15T06:22:53.373118Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1906,"ScoreDef":7836,"RankSup":0,"ScoreSup":0,"RankTotal":2052,"ScoreTotal":7836,"ID":698202162,"Name":"Volf102","NumVillages":1,"Points":138,"Rank":2396,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698202162","BestRank":2396,"BestRankAt":"2023-02-15T06:22:53.373119Z","MostPoints":138,"MostPointsAt":"2023-02-15T06:22:53.373119Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373119Z","LastActivityAt":"2023-02-15T06:22:53.373119Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":526,"ScoreAtt":313978,"RankDef":1658,"ScoreDef":21668,"RankSup":0,"ScoreSup":0,"RankTotal":973,"ScoreTotal":335646,"ID":698203538,"Name":"Stadar","NumVillages":1,"Points":26,"Rank":2689,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698203538","BestRank":2689,"BestRankAt":"2023-02-15T06:22:53.37312Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.37312Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37312Z","LastActivityAt":"2023-02-15T06:22:53.37312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698206922,"Name":"Sir Alano1","NumVillages":1,"Points":86,"Rank":2507,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698206922","BestRank":2507,"BestRankAt":"2023-02-15T06:22:53.373121Z","MostPoints":86,"MostPointsAt":"2023-02-15T06:22:53.373121Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373121Z","LastActivityAt":"2023-02-15T06:22:53.373122Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1030,"ScoreAtt":26619,"RankDef":261,"ScoreDef":1422231,"RankSup":0,"ScoreSup":0,"RankTotal":504,"ScoreTotal":1448850,"ID":698207545,"Name":"Lord Ɓoszo","NumVillages":1,"Points":696,"Rank":1952,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698207545","BestRank":1952,"BestRankAt":"2023-02-15T06:22:53.373122Z","MostPoints":696,"MostPointsAt":"2023-02-15T06:22:53.373123Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373122Z","LastActivityAt":"2023-02-15T06:22:53.373123Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1406,"ScoreAtt":4090,"RankDef":1218,"ScoreDef":69547,"RankSup":0,"ScoreSup":0,"RankTotal":1483,"ScoreTotal":73637,"ID":698212272,"Name":"Szyderczy promil","NumVillages":0,"Points":0,"Rank":2959,"TribeID":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698212272","BestRank":2959,"BestRankAt":"2023-02-15T06:22:53.373123Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373124Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373124Z","LastActivityAt":"2023-02-15T06:22:53.373124Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":473,"ScoreAtt":408916,"RankDef":1334,"ScoreDef":53855,"RankSup":18,"ScoreSup":5516130,"RankTotal":153,"ScoreTotal":5978901,"ID":698215322,"Name":"MeRHeT","NumVillages":131,"Points":1022602,"Rank":141,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698215322","BestRank":141,"BestRankAt":"2023-02-15T06:22:53.373126Z","MostPoints":1022602,"MostPointsAt":"2023-02-15T06:22:53.373126Z","MostVillages":131,"MostVillagesAt":"2023-02-15T06:22:53.373126Z","LastActivityAt":"2023-02-15T06:22:53.373127Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698226224,"Name":"playbackp","NumVillages":1,"Points":26,"Rank":2690,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698226224","BestRank":2690,"BestRankAt":"2023-02-15T06:22:53.373127Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373128Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373127Z","LastActivityAt":"2023-02-15T06:22:53.373128Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":109,"ScoreAtt":2845250,"RankDef":397,"ScoreDef":761071,"RankSup":36,"ScoreSup":4353390,"RankTotal":101,"ScoreTotal":7959711,"ID":698231772,"Name":"Psykoo","NumVillages":311,"Points":2511033,"Rank":25,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698231772","BestRank":25,"BestRankAt":"2023-02-15T06:22:53.373129Z","MostPoints":2511033,"MostPointsAt":"2023-02-15T06:22:53.373129Z","MostVillages":311,"MostVillagesAt":"2023-02-15T06:22:53.373129Z","LastActivityAt":"2023-02-15T06:22:53.373129Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":724,"ScoreAtt":114107,"RankDef":1471,"ScoreDef":36632,"RankSup":572,"ScoreSup":116477,"RankTotal":1036,"ScoreTotal":267216,"ID":698232227,"Name":"Vendea","NumVillages":46,"Points":386180,"Rank":306,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698232227","BestRank":306,"BestRankAt":"2023-02-15T06:22:53.37313Z","MostPoints":386180,"MostPointsAt":"2023-02-15T06:22:53.37313Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.37313Z","LastActivityAt":"2023-02-15T06:22:53.37313Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1431,"ScoreAtt":3573,"RankDef":1773,"ScoreDef":13959,"RankSup":0,"ScoreSup":0,"RankTotal":1897,"ScoreTotal":17532,"ID":698234770,"Name":"zolw222","NumVillages":7,"Points":60915,"Rank":650,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698234770","BestRank":650,"BestRankAt":"2023-02-15T06:22:53.373131Z","MostPoints":60915,"MostPointsAt":"2023-02-15T06:22:53.373131Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373131Z","LastActivityAt":"2023-02-15T06:22:53.373132Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":75,"ScoreAtt":4085183,"RankDef":382,"ScoreDef":794161,"RankSup":418,"ScoreSup":279817,"RankTotal":180,"ScoreTotal":5159161,"ID":698239813,"Name":"Tottal Score","NumVillages":101,"Points":991913,"Rank":147,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698239813","BestRank":147,"BestRankAt":"2023-02-15T06:22:53.373132Z","MostPoints":991913,"MostPointsAt":"2023-02-15T06:22:53.373133Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.373132Z","LastActivityAt":"2023-02-15T06:22:53.373133Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":615,"ScoreAtt":192411,"RankDef":392,"ScoreDef":770662,"RankSup":279,"ScoreSup":577489,"RankTotal":483,"ScoreTotal":1540562,"ID":698241117,"Name":"LordGeorg","NumVillages":8,"Points":51493,"Rank":681,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698241117","BestRank":681,"BestRankAt":"2023-02-15T06:22:53.373133Z","MostPoints":51493,"MostPointsAt":"2023-02-15T06:22:53.373134Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.373134Z","LastActivityAt":"2023-02-15T06:22:53.373134Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698248308,"Name":"Mareaa","NumVillages":1,"Points":1279,"Rank":1793,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698248308","BestRank":1793,"BestRankAt":"2023-02-15T06:22:53.373135Z","MostPoints":1279,"MostPointsAt":"2023-02-15T06:22:53.373135Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373135Z","LastActivityAt":"2023-02-15T06:22:53.373135Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1198,"ScoreAtt":10755,"RankDef":460,"ScoreDef":597234,"RankSup":0,"ScoreSup":0,"RankTotal":773,"ScoreTotal":607989,"ID":698258283,"Name":"Gran Torino","NumVillages":3,"Points":19896,"Rank":916,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698258283","BestRank":916,"BestRankAt":"2023-02-15T06:22:53.373136Z","MostPoints":19896,"MostPointsAt":"2023-02-15T06:22:53.373136Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373136Z","LastActivityAt":"2023-02-15T06:22:53.373137Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1421,"ScoreAtt":3749,"RankDef":2369,"ScoreDef":49,"RankSup":0,"ScoreSup":0,"RankTotal":2179,"ScoreTotal":3798,"ID":698262808,"Name":"Akantos","NumVillages":1,"Points":50,"Rank":2582,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698262808","BestRank":2582,"BestRankAt":"2023-02-15T06:22:53.373137Z","MostPoints":50,"MostPointsAt":"2023-02-15T06:22:53.373138Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373137Z","LastActivityAt":"2023-02-15T06:22:53.373138Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1979,"ScoreAtt":7,"RankDef":1513,"ScoreDef":32509,"RankSup":1183,"ScoreSup":576,"RankTotal":1746,"ScoreTotal":33092,"ID":698264828,"Name":"Elener","NumVillages":1,"Points":2799,"Rank":1549,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698264828","BestRank":1549,"BestRankAt":"2023-02-15T06:22:53.373138Z","MostPoints":2799,"MostPointsAt":"2023-02-15T06:22:53.373139Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373139Z","LastActivityAt":"2023-02-15T06:22:53.373139Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1509,"ScoreAtt":2252,"RankDef":402,"ScoreDef":748974,"RankSup":1363,"ScoreSup":4,"RankTotal":705,"ScoreTotal":751230,"ID":698273555,"Name":"Sir Paolo75","NumVillages":0,"Points":0,"Rank":2960,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698273555","BestRank":2960,"BestRankAt":"2023-02-15T06:22:53.37314Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37314Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37314Z","LastActivityAt":"2023-02-15T06:22:53.37314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1475,"ScoreAtt":2749,"RankDef":1033,"ScoreDef":115205,"RankSup":881,"ScoreSup":14134,"RankTotal":1290,"ScoreTotal":132088,"ID":698278542,"Name":"Lord Znienacka","NumVillages":5,"Points":19641,"Rank":926,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698278542","BestRank":926,"BestRankAt":"2023-02-15T06:22:53.373141Z","MostPoints":19641,"MostPointsAt":"2023-02-15T06:22:53.373141Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.373141Z","LastActivityAt":"2023-02-15T06:22:53.373142Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1388,"ScoreAtt":4455,"RankDef":920,"ScoreDef":154136,"RankSup":0,"ScoreSup":0,"RankTotal":1232,"ScoreTotal":158591,"ID":698279195,"Name":"CzerowyDziadek","NumVillages":1,"Points":1595,"Rank":1734,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698279195","BestRank":1734,"BestRankAt":"2023-02-15T06:22:53.373142Z","MostPoints":1595,"MostPointsAt":"2023-02-15T06:22:53.373143Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373142Z","LastActivityAt":"2023-02-15T06:22:53.373143Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698281635,"Name":"Genotypek","NumVillages":1,"Points":132,"Rank":2414,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698281635","BestRank":2414,"BestRankAt":"2023-02-15T06:22:53.373143Z","MostPoints":132,"MostPointsAt":"2023-02-15T06:22:53.373144Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373144Z","LastActivityAt":"2023-02-15T06:22:53.373144Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1857,"ScoreDef":9810,"RankSup":0,"ScoreSup":0,"RankTotal":2003,"ScoreTotal":9810,"ID":698281649,"Name":"cycedoziemi","NumVillages":1,"Points":8500,"Rank":1136,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698281649","BestRank":1136,"BestRankAt":"2023-02-15T06:22:53.373145Z","MostPoints":8500,"MostPointsAt":"2023-02-15T06:22:53.373145Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373145Z","LastActivityAt":"2023-02-15T06:22:53.373145Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":911,"ScoreAtt":47917,"RankDef":1096,"ScoreDef":94869,"RankSup":33,"ScoreSup":4540622,"RankTotal":203,"ScoreTotal":4683408,"ID":698285444,"Name":"Maniaq1","NumVillages":155,"Points":1626652,"Rank":69,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698285444","BestRank":69,"BestRankAt":"2023-02-15T06:22:53.373146Z","MostPoints":1626652,"MostPointsAt":"2023-02-15T06:22:53.373146Z","MostVillages":155,"MostVillagesAt":"2023-02-15T06:22:53.373146Z","LastActivityAt":"2023-02-15T06:22:53.373146Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":576,"ScoreAtt":241742,"RankDef":263,"ScoreDef":1412863,"RankSup":1143,"ScoreSup":1107,"RankTotal":467,"ScoreTotal":1655712,"ID":698290319,"Name":"homektyjek6","NumVillages":9,"Points":84521,"Rank":575,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698290319","BestRank":575,"BestRankAt":"2023-02-15T06:22:53.373147Z","MostPoints":84521,"MostPointsAt":"2023-02-15T06:22:53.373147Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373147Z","LastActivityAt":"2023-02-15T06:22:53.373148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":51,"ScoreAtt":4843741,"RankDef":251,"ScoreDef":1478532,"RankSup":280,"ScoreSup":576974,"RankTotal":128,"ScoreTotal":6899247,"ID":698290577,"Name":"Mercel","NumVillages":192,"Points":1317633,"Rank":94,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698290577","BestRank":94,"BestRankAt":"2023-02-15T06:22:53.373148Z","MostPoints":1317633,"MostPointsAt":"2023-02-15T06:22:53.373149Z","MostVillages":192,"MostVillagesAt":"2023-02-15T06:22:53.373149Z","LastActivityAt":"2023-02-15T06:22:53.373149Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":871,"ScoreAtt":57473,"RankDef":340,"ScoreDef":920772,"RankSup":574,"ScoreSup":115703,"RankTotal":594,"ScoreTotal":1093948,"ID":698295651,"Name":"klez","NumVillages":22,"Points":140053,"Rank":478,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698295651","BestRank":478,"BestRankAt":"2023-02-15T06:22:53.37315Z","MostPoints":140053,"MostPointsAt":"2023-02-15T06:22:53.37315Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.37315Z","LastActivityAt":"2023-02-15T06:22:53.37315Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698298333,"Name":"Timb3r","NumVillages":1,"Points":26,"Rank":2691,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698298333","BestRank":2691,"BestRankAt":"2023-02-15T06:22:53.373151Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373151Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373151Z","LastActivityAt":"2023-02-15T06:22:53.373151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1669,"ScoreAtt":738,"RankDef":1083,"ScoreDef":98671,"RankSup":0,"ScoreSup":0,"RankTotal":1396,"ScoreTotal":99409,"ID":698299678,"Name":"KakaowyBudyn","NumVillages":0,"Points":0,"Rank":2961,"TribeID":1609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698299678","BestRank":2961,"BestRankAt":"2023-02-15T06:22:53.373152Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373152Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373152Z","LastActivityAt":"2023-02-15T06:22:53.373153Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":219,"ScoreAtt":1346898,"RankDef":1858,"ScoreDef":9770,"RankSup":877,"ScoreSup":14214,"RankTotal":523,"ScoreTotal":1370882,"ID":698305474,"Name":"SajmonNijoo","NumVillages":46,"Points":398199,"Rank":303,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698305474","BestRank":303,"BestRankAt":"2023-02-15T06:22:53.373153Z","MostPoints":398199,"MostPointsAt":"2023-02-15T06:22:53.373154Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.373154Z","LastActivityAt":"2023-02-15T06:22:53.373154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2207,"ScoreDef":1108,"RankSup":0,"ScoreSup":0,"RankTotal":2304,"ScoreTotal":1108,"ID":698312347,"Name":"Gienioslawek","NumVillages":1,"Points":3064,"Rank":1521,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698312347","BestRank":1521,"BestRankAt":"2023-02-15T06:22:53.373155Z","MostPoints":3064,"MostPointsAt":"2023-02-15T06:22:53.373155Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373155Z","LastActivityAt":"2023-02-15T06:22:53.373155Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1092,"ScoreAtt":19307,"RankDef":1479,"ScoreDef":36238,"RankSup":0,"ScoreSup":0,"RankTotal":1581,"ScoreTotal":55545,"ID":698315881,"Name":"Lord dankos","NumVillages":2,"Points":6338,"Rank":1254,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698315881","BestRank":1254,"BestRankAt":"2023-02-15T06:22:53.373156Z","MostPoints":6338,"MostPointsAt":"2023-02-15T06:22:53.373156Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373156Z","LastActivityAt":"2023-02-15T06:22:53.373156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2490,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2562,"ScoreTotal":4,"ID":698321130,"Name":"liliput81","NumVillages":1,"Points":1665,"Rank":1721,"TribeID":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698321130","BestRank":1721,"BestRankAt":"2023-02-15T06:22:53.373157Z","MostPoints":1665,"MostPointsAt":"2023-02-15T06:22:53.373157Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373157Z","LastActivityAt":"2023-02-15T06:22:53.373158Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1846,"ScoreAtt":134,"RankDef":896,"ScoreDef":166785,"RankSup":0,"ScoreSup":0,"RankTotal":1218,"ScoreTotal":166919,"ID":698324343,"Name":"Kurji","NumVillages":1,"Points":7434,"Rank":1190,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698324343","BestRank":1190,"BestRankAt":"2023-02-15T06:22:53.373158Z","MostPoints":7434,"MostPointsAt":"2023-02-15T06:22:53.373159Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373158Z","LastActivityAt":"2023-02-15T06:22:53.373159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1411,"ScoreAtt":3986,"RankDef":717,"ScoreDef":263066,"RankSup":0,"ScoreSup":0,"RankTotal":1037,"ScoreTotal":267052,"ID":698330221,"Name":"ninja92","NumVillages":0,"Points":0,"Rank":2962,"TribeID":336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698330221","BestRank":2962,"BestRankAt":"2023-02-15T06:22:53.373159Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37316Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37316Z","LastActivityAt":"2023-02-15T06:22:53.37316Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1950,"ScoreAtt":20,"RankDef":2348,"ScoreDef":95,"RankSup":0,"ScoreSup":0,"RankTotal":2435,"ScoreTotal":115,"ID":698331388,"Name":"ZYXW","NumVillages":1,"Points":3759,"Rank":1436,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698331388","BestRank":1436,"BestRankAt":"2023-02-15T06:22:53.373161Z","MostPoints":3759,"MostPointsAt":"2023-02-15T06:22:53.373161Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373161Z","LastActivityAt":"2023-02-15T06:22:53.373161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":510,"ScoreAtt":336873,"RankDef":275,"ScoreDef":1319382,"RankSup":613,"ScoreSup":91766,"RankTotal":455,"ScoreTotal":1748021,"ID":698338524,"Name":"Nice","NumVillages":9,"Points":49097,"Rank":699,"TribeID":1683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698338524","BestRank":699,"BestRankAt":"2023-02-15T06:22:53.373162Z","MostPoints":49097,"MostPointsAt":"2023-02-15T06:22:53.373162Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373162Z","LastActivityAt":"2023-02-15T06:22:53.373163Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":458,"ScoreAtt":432760,"RankDef":714,"ScoreDef":263672,"RankSup":799,"ScoreSup":24956,"RankTotal":718,"ScoreTotal":721388,"ID":698342159,"Name":"Blaszczu11","NumVillages":42,"Points":354054,"Rank":322,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698342159","BestRank":322,"BestRankAt":"2023-02-15T06:22:53.373163Z","MostPoints":354054,"MostPointsAt":"2023-02-15T06:22:53.373164Z","MostVillages":42,"MostVillagesAt":"2023-02-15T06:22:53.373163Z","LastActivityAt":"2023-02-15T06:22:53.373164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1459,"ScoreAtt":3076,"RankDef":582,"ScoreDef":394453,"RankSup":0,"ScoreSup":0,"RankTotal":920,"ScoreTotal":397529,"ID":698345556,"Name":"Wiezowiec","NumVillages":12,"Points":86850,"Rank":573,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698345556","BestRank":573,"BestRankAt":"2023-02-15T06:22:53.373164Z","MostPoints":86850,"MostPointsAt":"2023-02-15T06:22:53.373165Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.373165Z","LastActivityAt":"2023-02-15T06:22:53.373165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1407,"ScoreAtt":4063,"RankDef":1991,"ScoreDef":5349,"RankSup":0,"ScoreSup":0,"RankTotal":2011,"ScoreTotal":9412,"ID":698346318,"Name":"ByXon","NumVillages":7,"Points":52934,"Rank":673,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698346318","BestRank":673,"BestRankAt":"2023-02-15T06:22:53.373166Z","MostPoints":52934,"MostPointsAt":"2023-02-15T06:22:53.373166Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373166Z","LastActivityAt":"2023-02-15T06:22:53.373166Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":816,"ScoreDef":200307,"RankSup":0,"ScoreSup":0,"RankTotal":1138,"ScoreTotal":200307,"ID":698346954,"Name":"marek46aa","NumVillages":1,"Points":454,"Rank":2056,"TribeID":13,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698346954","BestRank":2056,"BestRankAt":"2023-02-15T06:22:53.373167Z","MostPoints":454,"MostPointsAt":"2023-02-15T06:22:53.373167Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373167Z","LastActivityAt":"2023-02-15T06:22:53.373167Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":618,"ScoreAtt":191761,"RankDef":675,"ScoreDef":291745,"RankSup":0,"ScoreSup":0,"RankTotal":851,"ScoreTotal":483506,"ID":698349125,"Name":"KDK-","NumVillages":9,"Points":47031,"Rank":705,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698349125","BestRank":705,"BestRankAt":"2023-02-15T06:22:53.373168Z","MostPoints":47031,"MostPointsAt":"2023-02-15T06:22:53.373169Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373168Z","LastActivityAt":"2023-02-15T06:22:53.373169Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":408,"ScoreAtt":566660,"RankDef":296,"ScoreDef":1212148,"RankSup":60,"ScoreSup":3058287,"RankTotal":194,"ScoreTotal":4837095,"ID":698350371,"Name":"JuanDe","NumVillages":114,"Points":895225,"Rank":164,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698350371","BestRank":164,"BestRankAt":"2023-02-15T06:22:53.373169Z","MostPoints":895225,"MostPointsAt":"2023-02-15T06:22:53.37317Z","MostVillages":114,"MostVillagesAt":"2023-02-15T06:22:53.37317Z","LastActivityAt":"2023-02-15T06:22:53.37317Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":425,"ScoreAtt":503963,"RankDef":287,"ScoreDef":1243536,"RankSup":140,"ScoreSup":1560531,"RankTotal":266,"ScoreTotal":3308030,"ID":698353083,"Name":"Mateuszekbezuszek","NumVillages":62,"Points":414180,"Rank":296,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698353083","BestRank":296,"BestRankAt":"2023-02-15T06:22:53.373171Z","MostPoints":414180,"MostPointsAt":"2023-02-15T06:22:53.373171Z","MostVillages":62,"MostVillagesAt":"2023-02-15T06:22:53.373171Z","LastActivityAt":"2023-02-15T06:22:53.373171Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1395,"ScoreAtt":4261,"RankDef":795,"ScoreDef":213061,"RankSup":0,"ScoreSup":0,"RankTotal":1114,"ScoreTotal":217322,"ID":698356304,"Name":"Sir Zdzich","NumVillages":10,"Points":37124,"Rank":760,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698356304","BestRank":760,"BestRankAt":"2023-02-15T06:22:53.373172Z","MostPoints":37124,"MostPointsAt":"2023-02-15T06:22:53.373172Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.373172Z","LastActivityAt":"2023-02-15T06:22:53.373172Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":39,"ScoreAtt":5914470,"RankDef":112,"ScoreDef":3342894,"RankSup":56,"ScoreSup":3120651,"RankTotal":62,"ScoreTotal":12378015,"ID":698361257,"Name":"grolas","NumVillages":234,"Points":2120429,"Rank":43,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698361257","BestRank":43,"BestRankAt":"2023-02-15T06:22:53.373173Z","MostPoints":2120429,"MostPointsAt":"2023-02-15T06:22:53.373173Z","MostVillages":234,"MostVillagesAt":"2023-02-15T06:22:53.373173Z","LastActivityAt":"2023-02-15T06:22:53.373174Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1401,"ScoreDef":43927,"RankSup":0,"ScoreSup":0,"RankTotal":1654,"ScoreTotal":43927,"ID":698363063,"Name":"YenSu","NumVillages":1,"Points":1809,"Rank":1701,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698363063","BestRank":1701,"BestRankAt":"2023-02-15T06:22:53.373174Z","MostPoints":1809,"MostPointsAt":"2023-02-15T06:22:53.373175Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373175Z","LastActivityAt":"2023-02-15T06:22:53.373175Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":165,"ScoreAtt":1924565,"RankDef":1136,"ScoreDef":86547,"RankSup":289,"ScoreSup":564501,"RankTotal":337,"ScoreTotal":2575613,"ID":698364331,"Name":"wdamianse","NumVillages":93,"Points":723923,"Rank":198,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698364331","BestRank":198,"BestRankAt":"2023-02-15T06:22:53.373176Z","MostPoints":723923,"MostPointsAt":"2023-02-15T06:22:53.373176Z","MostVillages":93,"MostVillagesAt":"2023-02-15T06:22:53.373176Z","LastActivityAt":"2023-02-15T06:22:53.373176Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":203,"ScoreAtt":1557111,"RankDef":1215,"ScoreDef":70108,"RankSup":0,"ScoreSup":0,"RankTotal":471,"ScoreTotal":1627219,"ID":698365960,"Name":"MrStradivarius","NumVillages":165,"Points":1401852,"Rank":83,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698365960","BestRank":83,"BestRankAt":"2023-02-15T06:22:53.373177Z","MostPoints":1401852,"MostPointsAt":"2023-02-15T06:22:53.373177Z","MostVillages":165,"MostVillagesAt":"2023-02-15T06:22:53.373177Z","LastActivityAt":"2023-02-15T06:22:53.373177Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2098,"ScoreDef":2802,"RankSup":0,"ScoreSup":0,"RankTotal":2218,"ScoreTotal":2802,"ID":698368493,"Name":"Kaszyce131","NumVillages":3,"Points":8374,"Rank":1142,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698368493","BestRank":1142,"BestRankAt":"2023-02-15T06:22:53.373178Z","MostPoints":8374,"MostPointsAt":"2023-02-15T06:22:53.373178Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373178Z","LastActivityAt":"2023-02-15T06:22:53.373179Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1518,"ScoreAtt":2173,"RankDef":691,"ScoreDef":280783,"RankSup":1291,"ScoreSup":36,"RankTotal":1020,"ScoreTotal":282992,"ID":698373265,"Name":"Imperator ciemnoƛci","NumVillages":0,"Points":0,"Rank":2963,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698373265","BestRank":2963,"BestRankAt":"2023-02-15T06:22:53.373179Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37318Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37318Z","LastActivityAt":"2023-02-15T06:22:53.37318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698379979,"Name":"zewlakow6","NumVillages":1,"Points":26,"Rank":2692,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698379979","BestRank":2692,"BestRankAt":"2023-02-15T06:22:53.373181Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373181Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373181Z","LastActivityAt":"2023-02-15T06:22:53.373181Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698380048,"Name":"lordlewy10","NumVillages":1,"Points":26,"Rank":2693,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698380048","BestRank":2693,"BestRankAt":"2023-02-15T06:22:53.373182Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373182Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373182Z","LastActivityAt":"2023-02-15T06:22:53.373182Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1872,"ScoreAtt":91,"RankDef":1821,"ScoreDef":11272,"RankSup":0,"ScoreSup":0,"RankTotal":1982,"ScoreTotal":11363,"ID":698383417,"Name":"aver121","NumVillages":1,"Points":8694,"Rank":1129,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698383417","BestRank":1129,"BestRankAt":"2023-02-15T06:22:53.373183Z","MostPoints":8694,"MostPointsAt":"2023-02-15T06:22:53.373183Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373183Z","LastActivityAt":"2023-02-15T06:22:53.373184Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1892,"ScoreDef":8237,"RankSup":0,"ScoreSup":0,"RankTotal":2036,"ScoreTotal":8237,"ID":698384662,"Name":"jar-11","NumVillages":1,"Points":1611,"Rank":1729,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698384662","BestRank":1729,"BestRankAt":"2023-02-15T06:22:53.373184Z","MostPoints":1611,"MostPointsAt":"2023-02-15T06:22:53.373185Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373184Z","LastActivityAt":"2023-02-15T06:22:53.373185Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1721,"ScoreDef":17412,"RankSup":0,"ScoreSup":0,"RankTotal":1899,"ScoreTotal":17412,"ID":698384726,"Name":"marszalek-duck","NumVillages":1,"Points":295,"Rank":2180,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698384726","BestRank":2180,"BestRankAt":"2023-02-15T06:22:53.373185Z","MostPoints":295,"MostPointsAt":"2023-02-15T06:22:53.373186Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373186Z","LastActivityAt":"2023-02-15T06:22:53.373186Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1452,"ScoreDef":38157,"RankSup":0,"ScoreSup":0,"RankTotal":1701,"ScoreTotal":38157,"ID":698385619,"Name":"mioduch","NumVillages":1,"Points":2663,"Rank":1571,"TribeID":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698385619","BestRank":1571,"BestRankAt":"2023-02-15T06:22:53.373188Z","MostPoints":2663,"MostPointsAt":"2023-02-15T06:22:53.373188Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373188Z","LastActivityAt":"2023-02-15T06:22:53.373189Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1602,"ScoreDef":25456,"RankSup":0,"ScoreSup":0,"RankTotal":1816,"ScoreTotal":25456,"ID":698388041,"Name":"Jestem Pogromca z TOPu","NumVillages":1,"Points":249,"Rank":2224,"TribeID":750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698388041","BestRank":2224,"BestRankAt":"2023-02-15T06:22:53.373189Z","MostPoints":249,"MostPointsAt":"2023-02-15T06:22:53.37319Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373189Z","LastActivityAt":"2023-02-15T06:22:53.37319Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":204,"ScoreAtt":1539857,"RankDef":1175,"ScoreDef":77795,"RankSup":404,"ScoreSup":311490,"RankTotal":416,"ScoreTotal":1929142,"ID":698388578,"Name":"JJJuriJJJ","NumVillages":167,"Points":1418641,"Rank":82,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698388578","BestRank":82,"BestRankAt":"2023-02-15T06:22:53.373191Z","MostPoints":1418641,"MostPointsAt":"2023-02-15T06:22:53.373191Z","MostVillages":167,"MostVillagesAt":"2023-02-15T06:22:53.373191Z","LastActivityAt":"2023-02-15T06:22:53.373191Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1985,"ScoreDef":5441,"RankSup":0,"ScoreSup":0,"RankTotal":2115,"ScoreTotal":5441,"ID":698403524,"Name":"kamillo220","NumVillages":1,"Points":26,"Rank":2694,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698403524","BestRank":2694,"BestRankAt":"2023-02-15T06:22:53.373192Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373192Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373192Z","LastActivityAt":"2023-02-15T06:22:53.373192Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698410946,"Name":"RicoTW","NumVillages":1,"Points":48,"Rank":2586,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698410946","BestRank":2586,"BestRankAt":"2023-02-15T06:22:53.373193Z","MostPoints":48,"MostPointsAt":"2023-02-15T06:22:53.373193Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373193Z","LastActivityAt":"2023-02-15T06:22:53.373194Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":140,"ScoreAtt":2197684,"RankDef":881,"ScoreDef":173964,"RankSup":907,"ScoreSup":11038,"RankTotal":360,"ScoreTotal":2382686,"ID":698416970,"Name":"zioms1","NumVillages":153,"Points":1050065,"Rank":133,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698416970","BestRank":133,"BestRankAt":"2023-02-15T06:22:53.373194Z","MostPoints":1050065,"MostPointsAt":"2023-02-15T06:22:53.373195Z","MostVillages":153,"MostVillagesAt":"2023-02-15T06:22:53.373194Z","LastActivityAt":"2023-02-15T06:22:53.373195Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":68,"ScoreAtt":4261727,"RankDef":937,"ScoreDef":147460,"RankSup":121,"ScoreSup":1837766,"RankTotal":143,"ScoreTotal":6246953,"ID":698420691,"Name":"Lord Lord Franek","NumVillages":239,"Points":2325383,"Rank":32,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698420691","BestRank":32,"BestRankAt":"2023-02-15T06:22:53.373195Z","MostPoints":2325383,"MostPointsAt":"2023-02-15T06:22:53.373196Z","MostVillages":239,"MostVillagesAt":"2023-02-15T06:22:53.373196Z","LastActivityAt":"2023-02-15T06:22:53.373196Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698431574,"Name":"mk2014","NumVillages":1,"Points":2186,"Rank":1632,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698431574","BestRank":1632,"BestRankAt":"2023-02-15T06:22:53.373197Z","MostPoints":2186,"MostPointsAt":"2023-02-15T06:22:53.373197Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373197Z","LastActivityAt":"2023-02-15T06:22:53.373197Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1424,"ScoreAtt":3648,"RankDef":365,"ScoreDef":836207,"RankSup":512,"ScoreSup":164062,"RankTotal":618,"ScoreTotal":1003917,"ID":698442418,"Name":"wolgler1234","NumVillages":2,"Points":14255,"Rank":1010,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698442418","BestRank":1010,"BestRankAt":"2023-02-15T06:22:53.373198Z","MostPoints":14255,"MostPointsAt":"2023-02-15T06:22:53.373198Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373198Z","LastActivityAt":"2023-02-15T06:22:53.373199Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698455203,"Name":"Mufferr","NumVillages":1,"Points":120,"Rank":2447,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698455203","BestRank":2447,"BestRankAt":"2023-02-15T06:22:53.373199Z","MostPoints":120,"MostPointsAt":"2023-02-15T06:22:53.3732Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373199Z","LastActivityAt":"2023-02-15T06:22:53.3732Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1317,"ScoreDef":55719,"RankSup":1284,"ScoreSup":46,"RankTotal":1579,"ScoreTotal":55765,"ID":698457392,"Name":"App1e","NumVillages":1,"Points":1413,"Rank":1765,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698457392","BestRank":1765,"BestRankAt":"2023-02-15T06:22:53.3732Z","MostPoints":1413,"MostPointsAt":"2023-02-15T06:22:53.373201Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373201Z","LastActivityAt":"2023-02-15T06:22:53.373201Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":631,"ScoreAtt":177843,"RankDef":98,"ScoreDef":3554796,"RankSup":298,"ScoreSup":535670,"RankTotal":220,"ScoreTotal":4268309,"ID":698462285,"Name":"Ć»ulioner","NumVillages":2,"Points":4893,"Rank":1333,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698462285","BestRank":1333,"BestRankAt":"2023-02-15T06:22:53.373202Z","MostPoints":4893,"MostPointsAt":"2023-02-15T06:22:53.373202Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373202Z","LastActivityAt":"2023-02-15T06:22:53.373202Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698472522,"Name":"ladio","NumVillages":1,"Points":225,"Rank":2261,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698472522","BestRank":2261,"BestRankAt":"2023-02-15T06:22:53.373203Z","MostPoints":225,"MostPointsAt":"2023-02-15T06:22:53.373203Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373203Z","LastActivityAt":"2023-02-15T06:22:53.373203Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":648,"ScoreAtt":158341,"RankDef":359,"ScoreDef":860871,"RankSup":645,"ScoreSup":75321,"RankTotal":593,"ScoreTotal":1094533,"ID":698477883,"Name":"rufusix","NumVillages":1,"Points":2761,"Rank":1557,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698477883","BestRank":1557,"BestRankAt":"2023-02-15T06:22:53.373204Z","MostPoints":2761,"MostPointsAt":"2023-02-15T06:22:53.373204Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373204Z","LastActivityAt":"2023-02-15T06:22:53.373205Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1906,"ScoreAtt":46,"RankDef":1320,"ScoreDef":55429,"RankSup":1066,"ScoreSup":2638,"RankTotal":1568,"ScoreTotal":58113,"ID":698485268,"Name":"wabos","NumVillages":1,"Points":128,"Rank":2427,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698485268","BestRank":2427,"BestRankAt":"2023-02-15T06:22:53.373205Z","MostPoints":128,"MostPointsAt":"2023-02-15T06:22:53.373206Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373205Z","LastActivityAt":"2023-02-15T06:22:53.373206Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":705,"ScoreAtt":126107,"RankDef":575,"ScoreDef":403780,"RankSup":908,"ScoreSup":10911,"RankTotal":812,"ScoreTotal":540798,"ID":698486277,"Name":"dragonk6","NumVillages":0,"Points":0,"Rank":2964,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698486277","BestRank":2964,"BestRankAt":"2023-02-15T06:22:53.373207Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373207Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373207Z","LastActivityAt":"2023-02-15T06:22:53.373207Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1932,"ScoreAtt":30,"RankDef":748,"ScoreDef":243532,"RankSup":0,"ScoreSup":0,"RankTotal":1064,"ScoreTotal":243562,"ID":698488800,"Name":"Galactus","NumVillages":1,"Points":237,"Rank":2238,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698488800","BestRank":2238,"BestRankAt":"2023-02-15T06:22:53.373208Z","MostPoints":237,"MostPointsAt":"2023-02-15T06:22:53.373208Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373208Z","LastActivityAt":"2023-02-15T06:22:53.373208Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":97,"ScoreAtt":3261947,"RankDef":633,"ScoreDef":342224,"RankSup":236,"ScoreSup":753237,"RankTotal":218,"ScoreTotal":4357408,"ID":698489071,"Name":"3lobit","NumVillages":187,"Points":1560964,"Rank":74,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698489071","BestRank":74,"BestRankAt":"2023-02-15T06:22:53.373209Z","MostPoints":1560964,"MostPointsAt":"2023-02-15T06:22:53.373209Z","MostVillages":187,"MostVillagesAt":"2023-02-15T06:22:53.373209Z","LastActivityAt":"2023-02-15T06:22:53.37321Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1591,"ScoreDef":26022,"RankSup":0,"ScoreSup":0,"RankTotal":1811,"ScoreTotal":26022,"ID":698511920,"Name":"tarzan04","NumVillages":1,"Points":2716,"Rank":1565,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698511920","BestRank":1565,"BestRankAt":"2023-02-15T06:22:53.37321Z","MostPoints":2716,"MostPointsAt":"2023-02-15T06:22:53.373211Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37321Z","LastActivityAt":"2023-02-15T06:22:53.373211Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1636,"ScoreAtt":956,"RankDef":1279,"ScoreDef":59737,"RankSup":1192,"ScoreSup":467,"RankTotal":1548,"ScoreTotal":61160,"ID":698519133,"Name":"Isabella","NumVillages":1,"Points":2197,"Rank":1630,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698519133","BestRank":1630,"BestRankAt":"2023-02-15T06:22:53.373212Z","MostPoints":2197,"MostPointsAt":"2023-02-15T06:22:53.373212Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373212Z","LastActivityAt":"2023-02-15T06:22:53.373212Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1360,"ScoreAtt":5105,"RankDef":911,"ScoreDef":158094,"RankSup":0,"ScoreSup":0,"RankTotal":1224,"ScoreTotal":163199,"ID":698526036,"Name":"lordtados","NumVillages":2,"Points":13062,"Rank":1026,"TribeID":373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698526036","BestRank":1026,"BestRankAt":"2023-02-15T06:22:53.373213Z","MostPoints":13062,"MostPointsAt":"2023-02-15T06:22:53.373213Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373213Z","LastActivityAt":"2023-02-15T06:22:53.373213Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698526500,"Name":"Fontowcy Dual i MaƂpiake","NumVillages":1,"Points":26,"Rank":2695,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698526500","BestRank":2695,"BestRankAt":"2023-02-15T06:22:53.373214Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373214Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373214Z","LastActivityAt":"2023-02-15T06:22:53.373215Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1373,"ScoreAtt":4646,"RankDef":650,"ScoreDef":321134,"RankSup":1181,"ScoreSup":603,"RankTotal":984,"ScoreTotal":326383,"ID":698540331,"Name":"Kajtej","NumVillages":6,"Points":28895,"Rank":825,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698540331","BestRank":825,"BestRankAt":"2023-02-15T06:22:53.373215Z","MostPoints":28895,"MostPointsAt":"2023-02-15T06:22:53.373216Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.373215Z","LastActivityAt":"2023-02-15T06:22:53.373216Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698542183,"Name":"falat030","NumVillages":1,"Points":59,"Rank":2559,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698542183","BestRank":2559,"BestRankAt":"2023-02-15T06:22:53.373216Z","MostPoints":59,"MostPointsAt":"2023-02-15T06:22:53.373217Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373217Z","LastActivityAt":"2023-02-15T06:22:53.373217Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":495,"ScoreAtt":357251,"RankDef":1498,"ScoreDef":34411,"RankSup":402,"ScoreSup":315736,"RankTotal":728,"ScoreTotal":707398,"ID":698545981,"Name":"Adaczu","NumVillages":0,"Points":0,"Rank":2965,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698545981","BestRank":2965,"BestRankAt":"2023-02-15T06:22:53.373218Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373218Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373218Z","LastActivityAt":"2023-02-15T06:22:53.373218Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1703,"ScoreAtt":568,"RankDef":1937,"ScoreDef":6750,"RankSup":1265,"ScoreSup":88,"RankTotal":2063,"ScoreTotal":7406,"ID":698548451,"Name":"Paul2493","NumVillages":1,"Points":3060,"Rank":1522,"TribeID":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698548451","BestRank":1522,"BestRankAt":"2023-02-15T06:22:53.373219Z","MostPoints":3060,"MostPointsAt":"2023-02-15T06:22:53.373219Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373219Z","LastActivityAt":"2023-02-15T06:22:53.37322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698556600,"Name":"snake7","NumVillages":1,"Points":130,"Rank":2417,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698556600","BestRank":2417,"BestRankAt":"2023-02-15T06:22:53.37322Z","MostPoints":130,"MostPointsAt":"2023-02-15T06:22:53.373221Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37322Z","LastActivityAt":"2023-02-15T06:22:53.373221Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":423,"ScoreDef":680465,"RankSup":0,"ScoreSup":0,"RankTotal":738,"ScoreTotal":680465,"ID":698557087,"Name":"SenTuƛka","NumVillages":0,"Points":0,"Rank":2966,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698557087","BestRank":2966,"BestRankAt":"2023-02-15T06:22:53.373221Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373222Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373222Z","LastActivityAt":"2023-02-15T06:22:53.373222Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":290,"ScoreAtt":960410,"RankDef":1422,"ScoreDef":40626,"RankSup":314,"ScoreSup":480317,"RankTotal":498,"ScoreTotal":1481353,"ID":698562644,"Name":"DawidN","NumVillages":78,"Points":650266,"Rank":219,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698562644","BestRank":219,"BestRankAt":"2023-02-15T06:22:53.373223Z","MostPoints":650266,"MostPointsAt":"2023-02-15T06:22:53.373223Z","MostVillages":78,"MostVillagesAt":"2023-02-15T06:22:53.373223Z","LastActivityAt":"2023-02-15T06:22:53.373223Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698575453,"Name":"resp","NumVillages":0,"Points":0,"Rank":2967,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698575453","BestRank":2967,"BestRankAt":"2023-02-15T06:22:53.373224Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373224Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373224Z","LastActivityAt":"2023-02-15T06:22:53.373225Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1193,"ScoreAtt":11058,"RankDef":2172,"ScoreDef":1679,"RankSup":846,"ScoreSup":16899,"RankTotal":1772,"ScoreTotal":29636,"ID":698580310,"Name":"warkoczynka","NumVillages":1,"Points":844,"Rank":1906,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698580310","BestRank":1906,"BestRankAt":"2023-02-15T06:22:53.373225Z","MostPoints":844,"MostPointsAt":"2023-02-15T06:22:53.373226Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373225Z","LastActivityAt":"2023-02-15T06:22:53.373226Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2082,"ScoreDef":3123,"RankSup":0,"ScoreSup":0,"RankTotal":2202,"ScoreTotal":3123,"ID":698582741,"Name":"ogri","NumVillages":0,"Points":0,"Rank":2968,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698582741","BestRank":2968,"BestRankAt":"2023-02-15T06:22:53.373226Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373227Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373227Z","LastActivityAt":"2023-02-15T06:22:53.373227Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":83,"ScoreAtt":3793717,"RankDef":156,"ScoreDef":2432562,"RankSup":335,"ScoreSup":439500,"RankTotal":134,"ScoreTotal":6665779,"ID":698585370,"Name":"S1Joker","NumVillages":153,"Points":1371239,"Rank":87,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698585370","BestRank":87,"BestRankAt":"2023-02-15T06:22:53.373228Z","MostPoints":1371239,"MostPointsAt":"2023-02-15T06:22:53.373228Z","MostVillages":153,"MostVillagesAt":"2023-02-15T06:22:53.373228Z","LastActivityAt":"2023-02-15T06:22:53.373228Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":325,"ScoreAtt":809573,"RankDef":20,"ScoreDef":16276092,"RankSup":99,"ScoreSup":2234445,"RankTotal":31,"ScoreTotal":19320110,"ID":698588535,"Name":"krismal","NumVillages":127,"Points":1205656,"Rank":110,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698588535","BestRank":110,"BestRankAt":"2023-02-15T06:22:53.373229Z","MostPoints":1205656,"MostPointsAt":"2023-02-15T06:22:53.373229Z","MostVillages":127,"MostVillagesAt":"2023-02-15T06:22:53.373229Z","LastActivityAt":"2023-02-15T06:22:53.37323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":714,"ScoreAtt":121448,"RankDef":561,"ScoreDef":416536,"RankSup":584,"ScoreSup":105559,"RankTotal":758,"ScoreTotal":643543,"ID":698588812,"Name":"Lord Sir felek","NumVillages":13,"Points":65165,"Rank":633,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698588812","BestRank":633,"BestRankAt":"2023-02-15T06:22:53.37323Z","MostPoints":65165,"MostPointsAt":"2023-02-15T06:22:53.373231Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.37323Z","LastActivityAt":"2023-02-15T06:22:53.373231Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1694,"ScoreAtt":630,"RankDef":1020,"ScoreDef":119911,"RankSup":1034,"ScoreSup":3434,"RankTotal":1316,"ScoreTotal":123975,"ID":698589866,"Name":"Sir Arczi99","NumVillages":1,"Points":2005,"Rank":1663,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698589866","BestRank":1663,"BestRankAt":"2023-02-15T06:22:53.373231Z","MostPoints":2005,"MostPointsAt":"2023-02-15T06:22:53.373232Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373232Z","LastActivityAt":"2023-02-15T06:22:53.373232Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2287,"ScoreDef":377,"RankSup":0,"ScoreSup":0,"RankTotal":2371,"ScoreTotal":377,"ID":698592565,"Name":"filip9399","NumVillages":1,"Points":26,"Rank":2696,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698592565","BestRank":2696,"BestRankAt":"2023-02-15T06:22:53.373233Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373233Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373233Z","LastActivityAt":"2023-02-15T06:22:53.373233Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1942,"ScoreDef":6560,"RankSup":0,"ScoreSup":0,"RankTotal":2082,"ScoreTotal":6560,"ID":698592907,"Name":"MamTegoDoƛć","NumVillages":1,"Points":5928,"Rank":1277,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698592907","BestRank":1277,"BestRankAt":"2023-02-15T06:22:53.373234Z","MostPoints":5928,"MostPointsAt":"2023-02-15T06:22:53.373234Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373234Z","LastActivityAt":"2023-02-15T06:22:53.373234Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":311,"ScoreAtt":872898,"RankDef":669,"ScoreDef":297218,"RankSup":742,"ScoreSup":37679,"RankTotal":558,"ScoreTotal":1207795,"ID":698599365,"Name":"RoBaCzEk101 reaktywacja","NumVillages":53,"Points":446152,"Rank":283,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698599365","BestRank":283,"BestRankAt":"2023-02-15T06:22:53.373235Z","MostPoints":446152,"MostPointsAt":"2023-02-15T06:22:53.373236Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.373235Z","LastActivityAt":"2023-02-15T06:22:53.373236Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1016,"ScoreAtt":28165,"RankDef":479,"ScoreDef":555857,"RankSup":0,"ScoreSup":0,"RankTotal":778,"ScoreTotal":584022,"ID":698604229,"Name":"greenapple","NumVillages":1,"Points":26,"Rank":2697,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698604229","BestRank":2697,"BestRankAt":"2023-02-15T06:22:53.373236Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373237Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373237Z","LastActivityAt":"2023-02-15T06:22:53.373237Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1131,"ScoreAtt":15753,"RankDef":1575,"ScoreDef":27922,"RankSup":0,"ScoreSup":0,"RankTotal":1657,"ScoreTotal":43675,"ID":698605444,"Name":"1kip7","NumVillages":0,"Points":0,"Rank":2969,"TribeID":1357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698605444","BestRank":2969,"BestRankAt":"2023-02-15T06:22:53.373238Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373238Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373238Z","LastActivityAt":"2023-02-15T06:22:53.373238Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1435,"ScoreAtt":3424,"RankDef":218,"ScoreDef":1724159,"RankSup":292,"ScoreSup":560009,"RankTotal":369,"ScoreTotal":2287592,"ID":698613394,"Name":"SOL menka","NumVillages":3,"Points":9716,"Rank":1095,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698613394","BestRank":1095,"BestRankAt":"2023-02-15T06:22:53.373239Z","MostPoints":9716,"MostPointsAt":"2023-02-15T06:22:53.373239Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373239Z","LastActivityAt":"2023-02-15T06:22:53.373239Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":461,"ScoreAtt":428343,"RankDef":573,"ScoreDef":405976,"RankSup":354,"ScoreSup":405626,"RankTotal":549,"ScoreTotal":1239945,"ID":698620694,"Name":"rurek50029","NumVillages":51,"Points":335811,"Rank":336,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698620694","BestRank":336,"BestRankAt":"2023-02-15T06:22:53.37324Z","MostPoints":335811,"MostPointsAt":"2023-02-15T06:22:53.37324Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.37324Z","LastActivityAt":"2023-02-15T06:22:53.373241Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1978,"ScoreAtt":8,"RankDef":1505,"ScoreDef":33578,"RankSup":0,"ScoreSup":0,"RankTotal":1743,"ScoreTotal":33586,"ID":698623373,"Name":"rt27","NumVillages":1,"Points":1262,"Rank":1798,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698623373","BestRank":1798,"BestRankAt":"2023-02-15T06:22:53.373241Z","MostPoints":1262,"MostPointsAt":"2023-02-15T06:22:53.373242Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373242Z","LastActivityAt":"2023-02-15T06:22:53.373242Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":816,"ScoreAtt":75345,"RankDef":550,"ScoreDef":440279,"RankSup":80,"ScoreSup":2715161,"RankTotal":273,"ScoreTotal":3230785,"ID":698625834,"Name":"PjetreQ","NumVillages":188,"Points":1287509,"Rank":97,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698625834","BestRank":97,"BestRankAt":"2023-02-15T06:22:53.373243Z","MostPoints":1287509,"MostPointsAt":"2023-02-15T06:22:53.373243Z","MostVillages":188,"MostVillagesAt":"2023-02-15T06:22:53.373243Z","LastActivityAt":"2023-02-15T06:22:53.373243Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1202,"ScoreAtt":10588,"RankDef":2121,"ScoreDef":2378,"RankSup":0,"ScoreSup":0,"RankTotal":1953,"ScoreTotal":12966,"ID":698630140,"Name":"Espel132","NumVillages":1,"Points":7265,"Rank":1203,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698630140","BestRank":1203,"BestRankAt":"2023-02-15T06:22:53.373244Z","MostPoints":7265,"MostPointsAt":"2023-02-15T06:22:53.373244Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373244Z","LastActivityAt":"2023-02-15T06:22:53.373244Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":634,"ScoreAtt":174143,"RankDef":318,"ScoreDef":1061795,"RankSup":450,"ScoreSup":225127,"RankTotal":500,"ScoreTotal":1461065,"ID":698630507,"Name":"Mpower e36","NumVillages":17,"Points":114549,"Rank":511,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698630507","BestRank":511,"BestRankAt":"2023-02-15T06:22:53.373245Z","MostPoints":114549,"MostPointsAt":"2023-02-15T06:22:53.373245Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.373245Z","LastActivityAt":"2023-02-15T06:22:53.373246Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698631190,"Name":"gracjan1995","NumVillages":1,"Points":1811,"Rank":1700,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698631190","BestRank":1700,"BestRankAt":"2023-02-15T06:22:53.373246Z","MostPoints":1811,"MostPointsAt":"2023-02-15T06:22:53.373247Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373246Z","LastActivityAt":"2023-02-15T06:22:53.373247Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":168,"ScoreAtt":1888799,"RankDef":277,"ScoreDef":1313586,"RankSup":71,"ScoreSup":2823122,"RankTotal":150,"ScoreTotal":6025507,"ID":698635863,"Name":"JaaMwG","NumVillages":399,"Points":4032853,"Rank":7,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698635863","BestRank":7,"BestRankAt":"2023-02-15T06:22:53.373248Z","MostPoints":4032853,"MostPointsAt":"2023-02-15T06:22:53.373248Z","MostVillages":399,"MostVillagesAt":"2023-02-15T06:22:53.373248Z","LastActivityAt":"2023-02-15T06:22:53.373248Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698639278,"Name":"dominik121","NumVillages":1,"Points":194,"Rank":2313,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698639278","BestRank":2313,"BestRankAt":"2023-02-15T06:22:53.373249Z","MostPoints":194,"MostPointsAt":"2023-02-15T06:22:53.373249Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373249Z","LastActivityAt":"2023-02-15T06:22:53.373249Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":87,"ScoreAtt":3739531,"RankDef":297,"ScoreDef":1200161,"RankSup":150,"ScoreSup":1509606,"RankTotal":138,"ScoreTotal":6449298,"ID":698641566,"Name":"Kuzyn Patryk","NumVillages":79,"Points":753542,"Rank":190,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698641566","BestRank":190,"BestRankAt":"2023-02-15T06:22:53.37325Z","MostPoints":753542,"MostPointsAt":"2023-02-15T06:22:53.37325Z","MostVillages":79,"MostVillagesAt":"2023-02-15T06:22:53.37325Z","LastActivityAt":"2023-02-15T06:22:53.373251Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698645802,"Name":"B.E.R.S.E.R.","NumVillages":1,"Points":26,"Rank":2698,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698645802","BestRank":2698,"BestRankAt":"2023-02-15T06:22:53.373251Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373252Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373251Z","LastActivityAt":"2023-02-15T06:22:53.373252Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1793,"ScoreDef":12680,"RankSup":0,"ScoreSup":0,"RankTotal":1957,"ScoreTotal":12680,"ID":698647624,"Name":"Kayohix","NumVillages":1,"Points":6230,"Rank":1260,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698647624","BestRank":1260,"BestRankAt":"2023-02-15T06:22:53.373252Z","MostPoints":6230,"MostPointsAt":"2023-02-15T06:22:53.373253Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373253Z","LastActivityAt":"2023-02-15T06:22:53.373253Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698648691,"Name":"KrĂłl Mieszko I","NumVillages":1,"Points":122,"Rank":2441,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698648691","BestRank":2441,"BestRankAt":"2023-02-15T06:22:53.373254Z","MostPoints":122,"MostPointsAt":"2023-02-15T06:22:53.373254Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373254Z","LastActivityAt":"2023-02-15T06:22:53.373254Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":263,"ScoreAtt":1073337,"RankDef":427,"ScoreDef":672762,"RankSup":663,"ScoreSup":64198,"RankTotal":435,"ScoreTotal":1810297,"ID":698650301,"Name":"Kopersss","NumVillages":37,"Points":329815,"Rank":341,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698650301","BestRank":341,"BestRankAt":"2023-02-15T06:22:53.373255Z","MostPoints":329815,"MostPointsAt":"2023-02-15T06:22:53.373255Z","MostVillages":37,"MostVillagesAt":"2023-02-15T06:22:53.373255Z","LastActivityAt":"2023-02-15T06:22:53.373255Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2230,"ScoreDef":793,"RankSup":0,"ScoreSup":0,"RankTotal":2320,"ScoreTotal":793,"ID":698650509,"Name":"DefinitelyNotLegion","NumVillages":2,"Points":7881,"Rank":1165,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698650509","BestRank":1165,"BestRankAt":"2023-02-15T06:22:53.373256Z","MostPoints":7881,"MostPointsAt":"2023-02-15T06:22:53.373257Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373256Z","LastActivityAt":"2023-02-15T06:22:53.373257Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":377,"ScoreAtt":623964,"RankDef":965,"ScoreDef":137991,"RankSup":368,"ScoreSup":368586,"RankTotal":587,"ScoreTotal":1130541,"ID":698652014,"Name":"Maru","NumVillages":51,"Points":416137,"Rank":295,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698652014","BestRank":295,"BestRankAt":"2023-02-15T06:22:53.373257Z","MostPoints":416137,"MostPointsAt":"2023-02-15T06:22:53.373258Z","MostVillages":51,"MostVillagesAt":"2023-02-15T06:22:53.373258Z","LastActivityAt":"2023-02-15T06:22:53.373258Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1420,"ScoreAtt":3759,"RankDef":2292,"ScoreDef":340,"RankSup":817,"ScoreSup":21968,"RankTotal":1810,"ScoreTotal":26067,"ID":698652171,"Name":"lordkali91s","NumVillages":15,"Points":87119,"Rank":571,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698652171","BestRank":571,"BestRankAt":"2023-02-15T06:22:53.373259Z","MostPoints":87119,"MostPointsAt":"2023-02-15T06:22:53.373259Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.373259Z","LastActivityAt":"2023-02-15T06:22:53.373259Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2478,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2536,"ScoreTotal":10,"ID":698654164,"Name":"Jabolek","NumVillages":1,"Points":3119,"Rank":1513,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698654164","BestRank":1513,"BestRankAt":"2023-02-15T06:22:53.37326Z","MostPoints":3119,"MostPointsAt":"2023-02-15T06:22:53.37326Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37326Z","LastActivityAt":"2023-02-15T06:22:53.37326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1386,"ScoreDef":46338,"RankSup":0,"ScoreSup":0,"RankTotal":1638,"ScoreTotal":46338,"ID":698655576,"Name":"brutal29","NumVillages":1,"Points":56,"Rank":2562,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698655576","BestRank":2562,"BestRankAt":"2023-02-15T06:22:53.373261Z","MostPoints":56,"MostPointsAt":"2023-02-15T06:22:53.373261Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373261Z","LastActivityAt":"2023-02-15T06:22:53.373262Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":760,"ScoreAtt":96154,"RankDef":1803,"ScoreDef":12184,"RankSup":0,"ScoreSup":0,"RankTotal":1362,"ScoreTotal":108338,"ID":698655859,"Name":"Chmelnycky","NumVillages":4,"Points":19191,"Rank":932,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698655859","BestRank":932,"BestRankAt":"2023-02-15T06:22:53.373262Z","MostPoints":19191,"MostPointsAt":"2023-02-15T06:22:53.373263Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373262Z","LastActivityAt":"2023-02-15T06:22:53.373263Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698658087,"Name":"techniq","NumVillages":1,"Points":67,"Rank":2544,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698658087","BestRank":2544,"BestRankAt":"2023-02-15T06:22:53.373264Z","MostPoints":67,"MostPointsAt":"2023-02-15T06:22:53.373264Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373264Z","LastActivityAt":"2023-02-15T06:22:53.373264Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1,"ScoreAtt":29706138,"RankDef":25,"ScoreDef":12585611,"RankSup":22,"ScoreSup":4942966,"RankTotal":6,"ScoreTotal":47234715,"ID":698659980,"Name":"zawodnik","NumVillages":637,"Points":6166974,"Rank":3,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698659980","BestRank":3,"BestRankAt":"2023-02-15T06:22:53.373265Z","MostPoints":6166974,"MostPointsAt":"2023-02-15T06:22:53.373265Z","MostVillages":637,"MostVillagesAt":"2023-02-15T06:22:53.373265Z","LastActivityAt":"2023-02-15T06:22:53.373265Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2227,"ScoreDef":806,"RankSup":0,"ScoreSup":0,"RankTotal":2318,"ScoreTotal":806,"ID":698661697,"Name":"carrex95","NumVillages":1,"Points":266,"Rank":2209,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698661697","BestRank":2209,"BestRankAt":"2023-02-15T06:22:53.373266Z","MostPoints":266,"MostPointsAt":"2023-02-15T06:22:53.373266Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373266Z","LastActivityAt":"2023-02-15T06:22:53.373267Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1441,"ScoreAtt":3286,"RankDef":741,"ScoreDef":246835,"RankSup":499,"ScoreSup":173564,"RankTotal":891,"ScoreTotal":423685,"ID":698663855,"Name":"Dzieciake","NumVillages":61,"Points":346976,"Rank":328,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698663855","BestRank":328,"BestRankAt":"2023-02-15T06:22:53.373267Z","MostPoints":346976,"MostPointsAt":"2023-02-15T06:22:53.373268Z","MostVillages":61,"MostVillagesAt":"2023-02-15T06:22:53.373267Z","LastActivityAt":"2023-02-15T06:22:53.373268Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1102,"ScoreAtt":17745,"RankDef":1693,"ScoreDef":19311,"RankSup":653,"ScoreSup":70284,"RankTotal":1364,"ScoreTotal":107340,"ID":698666810,"Name":"Gryfios","NumVillages":81,"Points":734480,"Rank":194,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698666810","BestRank":194,"BestRankAt":"2023-02-15T06:22:53.373268Z","MostPoints":734480,"MostPointsAt":"2023-02-15T06:22:53.373269Z","MostVillages":81,"MostVillagesAt":"2023-02-15T06:22:53.373269Z","LastActivityAt":"2023-02-15T06:22:53.373269Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1986,"ScoreAtt":4,"RankDef":1700,"ScoreDef":18855,"RankSup":0,"ScoreSup":0,"RankTotal":1885,"ScoreTotal":18859,"ID":698667255,"Name":"Szary Ubek","NumVillages":1,"Points":733,"Rank":1942,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698667255","BestRank":1942,"BestRankAt":"2023-02-15T06:22:53.37327Z","MostPoints":733,"MostPointsAt":"2023-02-15T06:22:53.37327Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37327Z","LastActivityAt":"2023-02-15T06:22:53.37327Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":326,"ScoreAtt":801669,"RankDef":1242,"ScoreDef":65641,"RankSup":464,"ScoreSup":203037,"RankTotal":601,"ScoreTotal":1070347,"ID":698670524,"Name":"Simon21","NumVillages":48,"Points":370724,"Rank":315,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698670524","BestRank":315,"BestRankAt":"2023-02-15T06:22:53.373271Z","MostPoints":370724,"MostPointsAt":"2023-02-15T06:22:53.373271Z","MostVillages":48,"MostVillagesAt":"2023-02-15T06:22:53.373271Z","LastActivityAt":"2023-02-15T06:22:53.373272Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698676429,"Name":"halooogan","NumVillages":1,"Points":26,"Rank":2699,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698676429","BestRank":2699,"BestRankAt":"2023-02-15T06:22:53.373272Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373273Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373272Z","LastActivityAt":"2023-02-15T06:22:53.373273Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698676788,"Name":"ligedman92","NumVillages":1,"Points":1792,"Rank":1702,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698676788","BestRank":1702,"BestRankAt":"2023-02-15T06:22:53.373273Z","MostPoints":1792,"MostPointsAt":"2023-02-15T06:22:53.373274Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373274Z","LastActivityAt":"2023-02-15T06:22:53.373274Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":748,"ScoreAtt":102911,"RankDef":2246,"ScoreDef":650,"RankSup":1232,"ScoreSup":230,"RankTotal":1379,"ScoreTotal":103791,"ID":698677650,"Name":"GranicaPSK","NumVillages":25,"Points":71827,"Rank":605,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698677650","BestRank":605,"BestRankAt":"2023-02-15T06:22:53.373275Z","MostPoints":71827,"MostPointsAt":"2023-02-15T06:22:53.373275Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.373275Z","LastActivityAt":"2023-02-15T06:22:53.373275Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":794,"ScoreAtt":84698,"RankDef":1885,"ScoreDef":8649,"RankSup":487,"ScoreSup":184813,"RankTotal":1026,"ScoreTotal":278160,"ID":698680806,"Name":"spartakus270","NumVillages":9,"Points":65318,"Rank":632,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698680806","BestRank":632,"BestRankAt":"2023-02-15T06:22:53.373276Z","MostPoints":65318,"MostPointsAt":"2023-02-15T06:22:53.373276Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373276Z","LastActivityAt":"2023-02-15T06:22:53.373276Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2198,"ScoreDef":1257,"RankSup":0,"ScoreSup":0,"RankTotal":2294,"ScoreTotal":1257,"ID":698687597,"Name":"kjs12","NumVillages":1,"Points":628,"Rank":1978,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698687597","BestRank":1978,"BestRankAt":"2023-02-15T06:22:53.373277Z","MostPoints":628,"MostPointsAt":"2023-02-15T06:22:53.373278Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373277Z","LastActivityAt":"2023-02-15T06:22:53.373278Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1107,"ScoreAtt":17616,"RankDef":1366,"ScoreDef":48823,"RankSup":0,"ScoreSup":0,"RankTotal":1518,"ScoreTotal":66439,"ID":698687678,"Name":"ciniol97","NumVillages":0,"Points":0,"Rank":2970,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698687678","BestRank":2970,"BestRankAt":"2023-02-15T06:22:53.373278Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373279Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373279Z","LastActivityAt":"2023-02-15T06:22:53.373279Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698689858,"Name":"kraku123","NumVillages":0,"Points":0,"Rank":2971,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698689858","BestRank":2971,"BestRankAt":"2023-02-15T06:22:53.37328Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37328Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37328Z","LastActivityAt":"2023-02-15T06:22:53.37328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1164,"ScoreAtt":12908,"RankDef":593,"ScoreDef":386000,"RankSup":909,"ScoreSup":10805,"RankTotal":906,"ScoreTotal":409713,"ID":698692141,"Name":"barczi1979","NumVillages":1,"Points":3445,"Rank":1472,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698692141","BestRank":1472,"BestRankAt":"2023-02-15T06:22:53.373281Z","MostPoints":3445,"MostPointsAt":"2023-02-15T06:22:53.373281Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373281Z","LastActivityAt":"2023-02-15T06:22:53.373281Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1905,"ScoreDef":7883,"RankSup":0,"ScoreSup":0,"RankTotal":2051,"ScoreTotal":7883,"ID":698693697,"Name":"AGH Szary","NumVillages":2,"Points":14286,"Rank":1009,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698693697","BestRank":1009,"BestRankAt":"2023-02-15T06:22:53.373282Z","MostPoints":14286,"MostPointsAt":"2023-02-15T06:22:53.373282Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373282Z","LastActivityAt":"2023-02-15T06:22:53.373283Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1994,"ScoreDef":5311,"RankSup":0,"ScoreSup":0,"RankTotal":2122,"ScoreTotal":5311,"ID":698696420,"Name":"prezes naczelny","NumVillages":1,"Points":3494,"Rank":1465,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698696420","BestRank":1465,"BestRankAt":"2023-02-15T06:22:53.373283Z","MostPoints":3494,"MostPointsAt":"2023-02-15T06:22:53.373284Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373284Z","LastActivityAt":"2023-02-15T06:22:53.373284Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698698087,"Name":"Sir xyz1","NumVillages":1,"Points":1129,"Rank":1825,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698698087","BestRank":1825,"BestRankAt":"2023-02-15T06:22:53.373285Z","MostPoints":1129,"MostPointsAt":"2023-02-15T06:22:53.373285Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373285Z","LastActivityAt":"2023-02-15T06:22:53.373285Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1051,"ScoreAtt":23148,"RankDef":1625,"ScoreDef":24339,"RankSup":1062,"ScoreSup":2706,"RankTotal":1612,"ScoreTotal":50193,"ID":698701911,"Name":"Xerez","NumVillages":12,"Points":41058,"Rank":735,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698701911","BestRank":735,"BestRankAt":"2023-02-15T06:22:53.373286Z","MostPoints":41058,"MostPointsAt":"2023-02-15T06:22:53.373286Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.373286Z","LastActivityAt":"2023-02-15T06:22:53.373286Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":117,"ScoreAtt":2535735,"RankDef":1390,"ScoreDef":45706,"RankSup":704,"ScoreSup":48653,"RankTotal":333,"ScoreTotal":2630094,"ID":698702991,"Name":"carnage234","NumVillages":116,"Points":948171,"Rank":155,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698702991","BestRank":155,"BestRankAt":"2023-02-15T06:22:53.373287Z","MostPoints":948171,"MostPointsAt":"2023-02-15T06:22:53.373287Z","MostVillages":116,"MostVillagesAt":"2023-02-15T06:22:53.373287Z","LastActivityAt":"2023-02-15T06:22:53.373288Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":85,"ScoreAtt":3752420,"RankDef":140,"ScoreDef":2745407,"RankSup":77,"ScoreSup":2766333,"RankTotal":80,"ScoreTotal":9264160,"ID":698704189,"Name":"Reco","NumVillages":235,"Points":1990340,"Rank":46,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698704189","BestRank":46,"BestRankAt":"2023-02-15T06:22:53.373288Z","MostPoints":1990340,"MostPointsAt":"2023-02-15T06:22:53.373289Z","MostVillages":235,"MostVillagesAt":"2023-02-15T06:22:53.373288Z","LastActivityAt":"2023-02-15T06:22:53.373289Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1292,"ScoreDef":58563,"RankSup":990,"ScoreSup":5635,"RankTotal":1534,"ScoreTotal":64198,"ID":698704875,"Name":"Dominator2014","NumVillages":0,"Points":0,"Rank":2972,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698704875","BestRank":2972,"BestRankAt":"2023-02-15T06:22:53.37329Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37329Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37329Z","LastActivityAt":"2023-02-15T06:22:53.37329Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698712383,"Name":"pRoFiCe II","NumVillages":1,"Points":4844,"Rank":1339,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698712383","BestRank":1339,"BestRankAt":"2023-02-15T06:22:53.373291Z","MostPoints":4844,"MostPointsAt":"2023-02-15T06:22:53.373291Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373291Z","LastActivityAt":"2023-02-15T06:22:53.373291Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":362,"ScoreAtt":660070,"RankDef":1311,"ScoreDef":56242,"RankSup":492,"ScoreSup":178588,"RankTotal":659,"ScoreTotal":894900,"ID":698723158,"Name":"kaliber84","NumVillages":64,"Points":440256,"Rank":285,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698723158","BestRank":285,"BestRankAt":"2023-02-15T06:22:53.373292Z","MostPoints":440256,"MostPointsAt":"2023-02-15T06:22:53.373292Z","MostVillages":64,"MostVillagesAt":"2023-02-15T06:22:53.373292Z","LastActivityAt":"2023-02-15T06:22:53.373293Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1119,"ScoreAtt":16736,"RankDef":1680,"ScoreDef":19902,"RankSup":841,"ScoreSup":17434,"RankTotal":1592,"ScoreTotal":54072,"ID":698736778,"Name":"Lady mysza89100","NumVillages":7,"Points":16990,"Rank":969,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698736778","BestRank":969,"BestRankAt":"2023-02-15T06:22:53.373293Z","MostPoints":16990,"MostPointsAt":"2023-02-15T06:22:53.373294Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373293Z","LastActivityAt":"2023-02-15T06:22:53.373294Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1045,"ScoreAtt":24468,"RankDef":1750,"ScoreDef":15757,"RankSup":0,"ScoreSup":0,"RankTotal":1683,"ScoreTotal":40225,"ID":698738810,"Name":"King Kamil I","NumVillages":2,"Points":5149,"Rank":1318,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698738810","BestRank":1318,"BestRankAt":"2023-02-15T06:22:53.373294Z","MostPoints":5149,"MostPointsAt":"2023-02-15T06:22:53.373295Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373295Z","LastActivityAt":"2023-02-15T06:22:53.373295Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":323,"ScoreAtt":812446,"RankDef":1381,"ScoreDef":47439,"RankSup":30,"ScoreSup":4647565,"RankTotal":163,"ScoreTotal":5507450,"ID":698739350,"Name":"SaFaR","NumVillages":193,"Points":1773207,"Rank":62,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698739350","BestRank":62,"BestRankAt":"2023-02-15T06:22:53.373296Z","MostPoints":1773207,"MostPointsAt":"2023-02-15T06:22:53.373296Z","MostVillages":193,"MostVillagesAt":"2023-02-15T06:22:53.373296Z","LastActivityAt":"2023-02-15T06:22:53.373296Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1715,"ScoreAtt":494,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2352,"ScoreTotal":494,"ID":698743511,"Name":"Lech798","NumVillages":1,"Points":241,"Rank":2232,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698743511","BestRank":2232,"BestRankAt":"2023-02-15T06:22:53.373297Z","MostPoints":241,"MostPointsAt":"2023-02-15T06:22:53.373297Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373297Z","LastActivityAt":"2023-02-15T06:22:53.373298Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698747719,"Name":"frrrantic","NumVillages":1,"Points":243,"Rank":2230,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698747719","BestRank":2230,"BestRankAt":"2023-02-15T06:22:53.373298Z","MostPoints":243,"MostPointsAt":"2023-02-15T06:22:53.373299Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373298Z","LastActivityAt":"2023-02-15T06:22:53.373299Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1849,"ScoreAtt":132,"RankDef":1459,"ScoreDef":37610,"RankSup":991,"ScoreSup":5610,"RankTotal":1659,"ScoreTotal":43352,"ID":698748891,"Name":"Sumienie","NumVillages":1,"Points":1702,"Rank":1717,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698748891","BestRank":1717,"BestRankAt":"2023-02-15T06:22:53.373299Z","MostPoints":1702,"MostPointsAt":"2023-02-15T06:22:53.3733Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.3733Z","LastActivityAt":"2023-02-15T06:22:53.3733Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1573,"ScoreDef":28058,"RankSup":0,"ScoreSup":0,"RankTotal":1788,"ScoreTotal":28058,"ID":698749311,"Name":"Mergio","NumVillages":1,"Points":1489,"Rank":1752,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698749311","BestRank":1752,"BestRankAt":"2023-02-15T06:22:53.373301Z","MostPoints":1489,"MostPointsAt":"2023-02-15T06:22:53.373301Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373301Z","LastActivityAt":"2023-02-15T06:22:53.373301Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698754087,"Name":"Santa aka Dziadzia","NumVillages":1,"Points":26,"Rank":2700,"TribeID":1802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698754087","BestRank":2700,"BestRankAt":"2023-02-15T06:22:53.373302Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373302Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373302Z","LastActivityAt":"2023-02-15T06:22:53.373302Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1159,"ScoreAtt":13156,"RankDef":1747,"ScoreDef":16014,"RankSup":556,"ScoreSup":128199,"RankTotal":1235,"ScoreTotal":157369,"ID":698757439,"Name":"Kristoffs","NumVillages":24,"Points":196737,"Rank":416,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698757439","BestRank":416,"BestRankAt":"2023-02-15T06:22:53.373303Z","MostPoints":196737,"MostPointsAt":"2023-02-15T06:22:53.373304Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.373303Z","LastActivityAt":"2023-02-15T06:22:53.373304Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1823,"ScoreAtt":160,"RankDef":2005,"ScoreDef":4984,"RankSup":0,"ScoreSup":0,"RankTotal":2128,"ScoreTotal":5144,"ID":698757487,"Name":"Halny","NumVillages":1,"Points":2345,"Rank":1605,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698757487","BestRank":1605,"BestRankAt":"2023-02-15T06:22:53.373304Z","MostPoints":2345,"MostPointsAt":"2023-02-15T06:22:53.373305Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373305Z","LastActivityAt":"2023-02-15T06:22:53.373305Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698766178,"Name":"Peter1","NumVillages":1,"Points":408,"Rank":2083,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698766178","BestRank":2083,"BestRankAt":"2023-02-15T06:22:53.373306Z","MostPoints":408,"MostPointsAt":"2023-02-15T06:22:53.373306Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373306Z","LastActivityAt":"2023-02-15T06:22:53.373306Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1945,"ScoreDef":6438,"RankSup":1317,"ScoreSup":16,"RankTotal":2085,"ScoreTotal":6454,"ID":698766369,"Name":"SHIZA","NumVillages":1,"Points":1957,"Rank":1676,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698766369","BestRank":1676,"BestRankAt":"2023-02-15T06:22:53.373307Z","MostPoints":1957,"MostPointsAt":"2023-02-15T06:22:53.373307Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373307Z","LastActivityAt":"2023-02-15T06:22:53.373307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1855,"ScoreDef":9854,"RankSup":1392,"ScoreSup":2,"RankTotal":2002,"ScoreTotal":9856,"ID":698766454,"Name":"Doniel","NumVillages":1,"Points":222,"Rank":2269,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698766454","BestRank":2269,"BestRankAt":"2023-02-15T06:22:53.373308Z","MostPoints":222,"MostPointsAt":"2023-02-15T06:22:53.373308Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373308Z","LastActivityAt":"2023-02-15T06:22:53.373309Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":331,"ScoreAtt":791687,"RankDef":1397,"ScoreDef":44487,"RankSup":98,"ScoreSup":2246948,"RankTotal":283,"ScoreTotal":3083122,"ID":698768565,"Name":"Ronin1995","NumVillages":182,"Points":1548756,"Rank":75,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698768565","BestRank":75,"BestRankAt":"2023-02-15T06:22:53.373309Z","MostPoints":1548756,"MostPointsAt":"2023-02-15T06:22:53.37331Z","MostVillages":182,"MostVillagesAt":"2023-02-15T06:22:53.37331Z","LastActivityAt":"2023-02-15T06:22:53.37331Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":343,"ScoreAtt":719912,"RankDef":115,"ScoreDef":3215206,"RankSup":265,"ScoreSup":631670,"RankTotal":207,"ScoreTotal":4566788,"ID":698769107,"Name":"DobromirPan","NumVillages":88,"Points":582954,"Rank":246,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698769107","BestRank":246,"BestRankAt":"2023-02-15T06:22:53.373311Z","MostPoints":582954,"MostPointsAt":"2023-02-15T06:22:53.373311Z","MostVillages":88,"MostVillagesAt":"2023-02-15T06:22:53.373311Z","LastActivityAt":"2023-02-15T06:22:53.373311Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1975,"ScoreAtt":9,"RankDef":2388,"ScoreDef":28,"RankSup":1353,"ScoreSup":5,"RankTotal":2470,"ScoreTotal":42,"ID":698776998,"Name":"Monia18","NumVillages":1,"Points":1772,"Rank":1705,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698776998","BestRank":1705,"BestRankAt":"2023-02-15T06:22:53.373312Z","MostPoints":1772,"MostPointsAt":"2023-02-15T06:22:53.373312Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373312Z","LastActivityAt":"2023-02-15T06:22:53.373312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1209,"ScoreAtt":10341,"RankDef":854,"ScoreDef":184930,"RankSup":0,"ScoreSup":0,"RankTotal":1145,"ScoreTotal":195271,"ID":698783754,"Name":"proof333","NumVillages":1,"Points":7960,"Rank":1162,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698783754","BestRank":1162,"BestRankAt":"2023-02-15T06:22:53.373313Z","MostPoints":7960,"MostPointsAt":"2023-02-15T06:22:53.373313Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373313Z","LastActivityAt":"2023-02-15T06:22:53.373314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1881,"ScoreAtt":82,"RankDef":1579,"ScoreDef":27359,"RankSup":0,"ScoreSup":0,"RankTotal":1794,"ScoreTotal":27441,"ID":698785538,"Name":"LastWish","NumVillages":1,"Points":645,"Rank":1970,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698785538","BestRank":1970,"BestRankAt":"2023-02-15T06:22:53.373314Z","MostPoints":645,"MostPointsAt":"2023-02-15T06:22:53.373315Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373314Z","LastActivityAt":"2023-02-15T06:22:53.373315Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":731,"ScoreAtt":110777,"RankDef":1660,"ScoreDef":21625,"RankSup":26,"ScoreSup":4817971,"RankTotal":189,"ScoreTotal":4950373,"ID":698786826,"Name":"Sir develes","NumVillages":111,"Points":1016410,"Rank":142,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698786826","BestRank":142,"BestRankAt":"2023-02-15T06:22:53.373318Z","MostPoints":1016410,"MostPointsAt":"2023-02-15T06:22:53.373318Z","MostVillages":111,"MostVillagesAt":"2023-02-15T06:22:53.373318Z","LastActivityAt":"2023-02-15T06:22:53.373318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":453,"ScoreAtt":446204,"RankDef":79,"ScoreDef":4326401,"RankSup":327,"ScoreSup":450524,"RankTotal":178,"ScoreTotal":5223129,"ID":698789253,"Name":"Galasfree","NumVillages":1,"Points":2927,"Rank":1538,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698789253","BestRank":1538,"BestRankAt":"2023-02-15T06:22:53.373319Z","MostPoints":2927,"MostPointsAt":"2023-02-15T06:22:53.373319Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373319Z","LastActivityAt":"2023-02-15T06:22:53.37332Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1149,"ScoreAtt":13983,"RankDef":2083,"ScoreDef":3087,"RankSup":0,"ScoreSup":0,"RankTotal":1904,"ScoreTotal":17070,"ID":698791053,"Name":"Kanut","NumVillages":1,"Points":200,"Rank":2297,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698791053","BestRank":2297,"BestRankAt":"2023-02-15T06:22:53.37332Z","MostPoints":200,"MostPointsAt":"2023-02-15T06:22:53.373321Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37332Z","LastActivityAt":"2023-02-15T06:22:53.373321Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373958Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2368,"ScoreDef":50,"RankSup":0,"ScoreSup":0,"RankTotal":2462,"ScoreTotal":50,"ID":698795589,"Name":"endriu1990","NumVillages":1,"Points":633,"Rank":1977,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698795589","BestRank":1977,"BestRankAt":"2023-02-15T06:22:53.373321Z","MostPoints":633,"MostPointsAt":"2023-02-15T06:22:53.373322Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373322Z","LastActivityAt":"2023-02-15T06:22:53.373322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373958Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2393,"ScoreDef":25,"RankSup":0,"ScoreSup":0,"RankTotal":2491,"ScoreTotal":25,"ID":698798180,"Name":"nocna1993","NumVillages":1,"Points":26,"Rank":2701,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698798180","BestRank":2701,"BestRankAt":"2023-02-15T06:22:53.373323Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373323Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373323Z","LastActivityAt":"2023-02-15T06:22:53.373323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1381,"ScoreAtt":4563,"RankDef":1812,"ScoreDef":11724,"RankSup":1385,"ScoreSup":2,"RankTotal":1918,"ScoreTotal":16289,"ID":698806018,"Name":"krzysztofgucio","NumVillages":13,"Points":70618,"Rank":611,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698806018","BestRank":611,"BestRankAt":"2023-02-15T06:22:53.373324Z","MostPoints":70618,"MostPointsAt":"2023-02-15T06:22:53.373324Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.373324Z","LastActivityAt":"2023-02-15T06:22:53.373325Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":61,"ScoreAtt":4410499,"RankDef":23,"ScoreDef":14262032,"RankSup":269,"ScoreSup":617717,"RankTotal":32,"ScoreTotal":19290248,"ID":698807570,"Name":"xHavajek","NumVillages":244,"Points":2286053,"Rank":35,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698807570","BestRank":35,"BestRankAt":"2023-02-15T06:22:53.373325Z","MostPoints":2286053,"MostPointsAt":"2023-02-15T06:22:53.373326Z","MostVillages":244,"MostVillagesAt":"2023-02-15T06:22:53.373325Z","LastActivityAt":"2023-02-15T06:22:53.373326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":815,"ScoreAtt":75402,"RankDef":441,"ScoreDef":645083,"RankSup":863,"ScoreSup":15646,"RankTotal":711,"ScoreTotal":736131,"ID":698811281,"Name":"SHENRON81","NumVillages":0,"Points":0,"Rank":2973,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698811281","BestRank":2973,"BestRankAt":"2023-02-15T06:22:53.373326Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373327Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373327Z","LastActivityAt":"2023-02-15T06:22:53.373327Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1195,"ScoreAtt":10954,"RankDef":2248,"ScoreDef":639,"RankSup":0,"ScoreSup":0,"RankTotal":1975,"ScoreTotal":11593,"ID":698817235,"Name":"Lord Baszczu123","NumVillages":3,"Points":19296,"Rank":931,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698817235","BestRank":931,"BestRankAt":"2023-02-15T06:22:53.373328Z","MostPoints":19296,"MostPointsAt":"2023-02-15T06:22:53.373328Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373328Z","LastActivityAt":"2023-02-15T06:22:53.373328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":348,"ScoreAtt":700256,"RankDef":61,"ScoreDef":5640061,"RankSup":268,"ScoreSup":621967,"RankTotal":126,"ScoreTotal":6962284,"ID":698823542,"Name":"AwangardazCiechanowa","NumVillages":4,"Points":36659,"Rank":764,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698823542","BestRank":764,"BestRankAt":"2023-02-15T06:22:53.373329Z","MostPoints":36659,"MostPointsAt":"2023-02-15T06:22:53.373329Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373329Z","LastActivityAt":"2023-02-15T06:22:53.373329Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1820,"ScoreAtt":166,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2412,"ScoreTotal":166,"ID":698826217,"Name":"AllAdin","NumVillages":1,"Points":333,"Rank":2144,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698826217","BestRank":2144,"BestRankAt":"2023-02-15T06:22:53.37333Z","MostPoints":333,"MostPointsAt":"2023-02-15T06:22:53.373331Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37333Z","LastActivityAt":"2023-02-15T06:22:53.373331Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1332,"ScoreAtt":5655,"RankDef":701,"ScoreDef":269983,"RankSup":336,"ScoreSup":437750,"RankTotal":723,"ScoreTotal":713388,"ID":698826986,"Name":"Chirucas","NumVillages":17,"Points":51678,"Rank":678,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698826986","BestRank":678,"BestRankAt":"2023-02-15T06:22:53.373331Z","MostPoints":51678,"MostPointsAt":"2023-02-15T06:22:53.373332Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.373332Z","LastActivityAt":"2023-02-15T06:22:53.373332Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":426,"ScoreAtt":493624,"RankDef":21,"ScoreDef":15954032,"RankSup":334,"ScoreSup":440149,"RankTotal":37,"ScoreTotal":16887805,"ID":698829590,"Name":"SƂodki Urai","NumVillages":37,"Points":331603,"Rank":339,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698829590","BestRank":339,"BestRankAt":"2023-02-15T06:22:53.373333Z","MostPoints":331603,"MostPointsAt":"2023-02-15T06:22:53.373333Z","MostVillages":37,"MostVillagesAt":"2023-02-15T06:22:53.373333Z","LastActivityAt":"2023-02-15T06:22:53.373333Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1957,"ScoreAtt":15,"RankDef":2506,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2509,"ScoreTotal":16,"ID":698830638,"Name":"ascend","NumVillages":1,"Points":2705,"Rank":1568,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698830638","BestRank":1568,"BestRankAt":"2023-02-15T06:22:53.373334Z","MostPoints":2705,"MostPointsAt":"2023-02-15T06:22:53.373334Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373334Z","LastActivityAt":"2023-02-15T06:22:53.373334Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1130,"ScoreAtt":15770,"RankDef":510,"ScoreDef":502449,"RankSup":1064,"ScoreSup":2689,"RankTotal":825,"ScoreTotal":520908,"ID":698837993,"Name":"Don Quijote","NumVillages":3,"Points":5079,"Rank":1321,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698837993","BestRank":1321,"BestRankAt":"2023-02-15T06:22:53.373335Z","MostPoints":5079,"MostPointsAt":"2023-02-15T06:22:53.373335Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373335Z","LastActivityAt":"2023-02-15T06:22:53.373336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":636,"ScoreAtt":171918,"RankDef":343,"ScoreDef":909796,"RankSup":0,"ScoreSup":0,"RankTotal":597,"ScoreTotal":1081714,"ID":698842996,"Name":"Ernesto Hoosta","NumVillages":0,"Points":0,"Rank":2974,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698842996","BestRank":2974,"BestRankAt":"2023-02-15T06:22:53.373336Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373337Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373337Z","LastActivityAt":"2023-02-15T06:22:53.373337Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698845107,"Name":"Swiechu","NumVillages":1,"Points":102,"Rank":2474,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698845107","BestRank":2474,"BestRankAt":"2023-02-15T06:22:53.373338Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.373338Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373338Z","LastActivityAt":"2023-02-15T06:22:53.373338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":487,"ScoreAtt":378801,"RankDef":1490,"ScoreDef":34971,"RankSup":552,"ScoreSup":130293,"RankTotal":809,"ScoreTotal":544065,"ID":698845189,"Name":"tesa","NumVillages":35,"Points":307170,"Rank":353,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698845189","BestRank":353,"BestRankAt":"2023-02-15T06:22:53.373339Z","MostPoints":307170,"MostPointsAt":"2023-02-15T06:22:53.373339Z","MostVillages":35,"MostVillagesAt":"2023-02-15T06:22:53.373339Z","LastActivityAt":"2023-02-15T06:22:53.373339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1916,"ScoreAtt":40,"RankDef":1214,"ScoreDef":70156,"RankSup":1240,"ScoreSup":188,"RankTotal":1504,"ScoreTotal":70384,"ID":698848067,"Name":"Sir Hycel","NumVillages":1,"Points":7425,"Rank":1191,"TribeID":305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698848067","BestRank":1191,"BestRankAt":"2023-02-15T06:22:53.37334Z","MostPoints":7425,"MostPointsAt":"2023-02-15T06:22:53.37334Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37334Z","LastActivityAt":"2023-02-15T06:22:53.373341Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1466,"ScoreAtt":2917,"RankDef":1046,"ScoreDef":109223,"RankSup":1174,"ScoreSup":641,"RankTotal":1348,"ScoreTotal":112781,"ID":698848373,"Name":"BloodyMath","NumVillages":10,"Points":29652,"Rank":820,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698848373","BestRank":820,"BestRankAt":"2023-02-15T06:22:53.373341Z","MostPoints":29652,"MostPointsAt":"2023-02-15T06:22:53.373342Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.373341Z","LastActivityAt":"2023-02-15T06:22:53.373342Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1313,"ScoreAtt":6276,"RankDef":339,"ScoreDef":926122,"RankSup":570,"ScoreSup":117220,"RankTotal":606,"ScoreTotal":1049618,"ID":698849979,"Name":"Mihalina","NumVillages":1,"Points":509,"Rank":2024,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698849979","BestRank":2024,"BestRankAt":"2023-02-15T06:22:53.373343Z","MostPoints":509,"MostPointsAt":"2023-02-15T06:22:53.373343Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373343Z","LastActivityAt":"2023-02-15T06:22:53.373343Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698850251,"Name":"NeXi","NumVillages":1,"Points":26,"Rank":2702,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698850251","BestRank":2702,"BestRankAt":"2023-02-15T06:22:53.373344Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373344Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373344Z","LastActivityAt":"2023-02-15T06:22:53.373344Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698850319,"Name":"Patrz Ale Nie Zjadaj","NumVillages":1,"Points":26,"Rank":2703,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698850319","BestRank":2703,"BestRankAt":"2023-02-15T06:22:53.373345Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373345Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373345Z","LastActivityAt":"2023-02-15T06:22:53.373346Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698854238,"Name":"Querto","NumVillages":1,"Points":237,"Rank":2239,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698854238","BestRank":2239,"BestRankAt":"2023-02-15T06:22:53.373346Z","MostPoints":237,"MostPointsAt":"2023-02-15T06:22:53.373347Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373346Z","LastActivityAt":"2023-02-15T06:22:53.373347Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1490,"ScoreAtt":2475,"RankDef":2276,"ScoreDef":437,"RankSup":1152,"ScoreSup":960,"RankTotal":2176,"ScoreTotal":3872,"ID":698855681,"Name":"Pieguss","NumVillages":1,"Points":162,"Rank":2363,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698855681","BestRank":2363,"BestRankAt":"2023-02-15T06:22:53.373347Z","MostPoints":162,"MostPointsAt":"2023-02-15T06:22:53.373348Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373348Z","LastActivityAt":"2023-02-15T06:22:53.373348Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698866770,"Name":"muchaPG","NumVillages":1,"Points":457,"Rank":2055,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698866770","BestRank":2055,"BestRankAt":"2023-02-15T06:22:53.373349Z","MostPoints":457,"MostPointsAt":"2023-02-15T06:22:53.373349Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373349Z","LastActivityAt":"2023-02-15T06:22:53.373349Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":448,"ScoreAtt":453292,"RankDef":528,"ScoreDef":483039,"RankSup":429,"ScoreSup":254403,"RankTotal":561,"ScoreTotal":1190734,"ID":698867446,"Name":"pisiur71","NumVillages":71,"Points":667536,"Rank":213,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698867446","BestRank":213,"BestRankAt":"2023-02-15T06:22:53.37335Z","MostPoints":667536,"MostPointsAt":"2023-02-15T06:22:53.37335Z","MostVillages":71,"MostVillagesAt":"2023-02-15T06:22:53.37335Z","LastActivityAt":"2023-02-15T06:22:53.37335Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":320,"ScoreAtt":826986,"RankDef":401,"ScoreDef":750341,"RankSup":232,"ScoreSup":763529,"RankTotal":365,"ScoreTotal":2340856,"ID":698867483,"Name":"pa ZZI","NumVillages":118,"Points":736930,"Rank":193,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698867483","BestRank":193,"BestRankAt":"2023-02-15T06:22:53.373351Z","MostPoints":736930,"MostPointsAt":"2023-02-15T06:22:53.373352Z","MostVillages":118,"MostVillagesAt":"2023-02-15T06:22:53.373351Z","LastActivityAt":"2023-02-15T06:22:53.373352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":937,"ScoreAtt":42906,"RankDef":417,"ScoreDef":703289,"RankSup":355,"ScoreSup":404605,"RankTotal":575,"ScoreTotal":1150800,"ID":698879638,"Name":"leito3","NumVillages":4,"Points":8366,"Rank":1143,"TribeID":1760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698879638","BestRank":1143,"BestRankAt":"2023-02-15T06:22:53.373352Z","MostPoints":8366,"MostPointsAt":"2023-02-15T06:22:53.373353Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373353Z","LastActivityAt":"2023-02-15T06:22:53.373353Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":980,"ScoreAtt":33553,"RankDef":152,"ScoreDef":2538293,"RankSup":639,"ScoreSup":76318,"RankTotal":328,"ScoreTotal":2648164,"ID":698881022,"Name":"sila","NumVillages":8,"Points":42893,"Rank":728,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698881022","BestRank":728,"BestRankAt":"2023-02-15T06:22:53.373354Z","MostPoints":42893,"MostPointsAt":"2023-02-15T06:22:53.373354Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.373354Z","LastActivityAt":"2023-02-15T06:22:53.373354Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":58,"ScoreAtt":4520229,"RankDef":1009,"ScoreDef":123068,"RankSup":88,"ScoreSup":2391177,"RankTotal":124,"ScoreTotal":7034474,"ID":698884287,"Name":"Nervouse","NumVillages":132,"Points":1299770,"Rank":96,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698884287","BestRank":96,"BestRankAt":"2023-02-15T06:22:53.373355Z","MostPoints":1299770,"MostPointsAt":"2023-02-15T06:22:53.373355Z","MostVillages":132,"MostVillagesAt":"2023-02-15T06:22:53.373355Z","LastActivityAt":"2023-02-15T06:22:53.373355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698885960,"Name":"Sir fojerman","NumVillages":1,"Points":97,"Rank":2489,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698885960","BestRank":2489,"BestRankAt":"2023-02-15T06:22:53.373356Z","MostPoints":97,"MostPointsAt":"2023-02-15T06:22:53.373356Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373356Z","LastActivityAt":"2023-02-15T06:22:53.373357Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1058,"ScoreAtt":22316,"RankDef":120,"ScoreDef":3177177,"RankSup":1247,"ScoreSup":153,"RankTotal":275,"ScoreTotal":3199646,"ID":698895940,"Name":"tnt3nt","NumVillages":13,"Points":44626,"Rank":718,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698895940","BestRank":718,"BestRankAt":"2023-02-15T06:22:53.373357Z","MostPoints":44626,"MostPointsAt":"2023-02-15T06:22:53.373358Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.373357Z","LastActivityAt":"2023-02-15T06:22:53.373358Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1555,"ScoreAtt":1809,"RankDef":1141,"ScoreDef":86104,"RankSup":0,"ScoreSup":0,"RankTotal":1441,"ScoreTotal":87913,"ID":698897472,"Name":"AndrewwXYZ","NumVillages":1,"Points":1310,"Rank":1785,"TribeID":1431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698897472","BestRank":1785,"BestRankAt":"2023-02-15T06:22:53.373359Z","MostPoints":1310,"MostPointsAt":"2023-02-15T06:22:53.373359Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373359Z","LastActivityAt":"2023-02-15T06:22:53.373359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2491,"ScoreDef":3,"RankSup":0,"ScoreSup":0,"RankTotal":2568,"ScoreTotal":3,"ID":698897841,"Name":"Error?","NumVillages":1,"Points":227,"Rank":2255,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698897841","BestRank":2255,"BestRankAt":"2023-02-15T06:22:53.37336Z","MostPoints":227,"MostPointsAt":"2023-02-15T06:22:53.37336Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37336Z","LastActivityAt":"2023-02-15T06:22:53.37336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":969,"ScoreAtt":35542,"RankDef":1388,"ScoreDef":46003,"RankSup":0,"ScoreSup":0,"RankTotal":1459,"ScoreTotal":81545,"ID":698905177,"Name":"TheWolfie","NumVillages":8,"Points":49418,"Rank":697,"TribeID":1127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698905177","BestRank":697,"BestRankAt":"2023-02-15T06:22:53.373361Z","MostPoints":49418,"MostPointsAt":"2023-02-15T06:22:53.373361Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.373361Z","LastActivityAt":"2023-02-15T06:22:53.373362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":800,"ScoreAtt":81751,"RankDef":1598,"ScoreDef":25565,"RankSup":0,"ScoreSup":0,"RankTotal":1365,"ScoreTotal":107316,"ID":698906190,"Name":"MaraczxD","NumVillages":9,"Points":58718,"Rank":659,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698906190","BestRank":659,"BestRankAt":"2023-02-15T06:22:53.373362Z","MostPoints":58718,"MostPointsAt":"2023-02-15T06:22:53.373363Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373362Z","LastActivityAt":"2023-02-15T06:22:53.373363Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2067,"ScoreDef":3530,"RankSup":0,"ScoreSup":0,"RankTotal":2191,"ScoreTotal":3530,"ID":698906643,"Name":"ArturLublin","NumVillages":1,"Points":1083,"Rank":1840,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698906643","BestRank":1840,"BestRankAt":"2023-02-15T06:22:53.373363Z","MostPoints":1083,"MostPointsAt":"2023-02-15T06:22:53.373364Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373364Z","LastActivityAt":"2023-02-15T06:22:53.373364Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":144,"ScoreAtt":2164795,"RankDef":182,"ScoreDef":2049057,"RankSup":416,"ScoreSup":282270,"RankTotal":208,"ScoreTotal":4496122,"ID":698908184,"Name":"EXPUGNATOR","NumVillages":124,"Points":903421,"Rank":163,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698908184","BestRank":163,"BestRankAt":"2023-02-15T06:22:53.373365Z","MostPoints":903421,"MostPointsAt":"2023-02-15T06:22:53.373365Z","MostVillages":124,"MostVillagesAt":"2023-02-15T06:22:53.373365Z","LastActivityAt":"2023-02-15T06:22:53.373365Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1445,"ScoreAtt":3253,"RankDef":1093,"ScoreDef":95452,"RankSup":1374,"ScoreSup":3,"RankTotal":1399,"ScoreTotal":98708,"ID":698908912,"Name":"Chybik","NumVillages":9,"Points":92209,"Rank":554,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698908912","BestRank":554,"BestRankAt":"2023-02-15T06:22:53.373366Z","MostPoints":92209,"MostPointsAt":"2023-02-15T06:22:53.373366Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373366Z","LastActivityAt":"2023-02-15T06:22:53.373367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1813,"ScoreDef":11674,"RankSup":0,"ScoreSup":0,"RankTotal":1973,"ScoreTotal":11674,"ID":698911639,"Name":"Kafaro","NumVillages":1,"Points":460,"Rank":2053,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698911639","BestRank":2053,"BestRankAt":"2023-02-15T06:22:53.373367Z","MostPoints":460,"MostPointsAt":"2023-02-15T06:22:53.373368Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373367Z","LastActivityAt":"2023-02-15T06:22:53.373368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1832,"ScoreAtt":144,"RankDef":2432,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2415,"ScoreTotal":154,"ID":698913618,"Name":"kukis","NumVillages":1,"Points":2494,"Rank":1587,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698913618","BestRank":1587,"BestRankAt":"2023-02-15T06:22:53.373368Z","MostPoints":2494,"MostPointsAt":"2023-02-15T06:22:53.373369Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373369Z","LastActivityAt":"2023-02-15T06:22:53.373369Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698915069,"Name":"Squander","NumVillages":1,"Points":219,"Rank":2273,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698915069","BestRank":2273,"BestRankAt":"2023-02-15T06:22:53.37337Z","MostPoints":219,"MostPointsAt":"2023-02-15T06:22:53.37337Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37337Z","LastActivityAt":"2023-02-15T06:22:53.37337Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698916256,"Name":"Blak widow","NumVillages":1,"Points":237,"Rank":2240,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698916256","BestRank":2240,"BestRankAt":"2023-02-15T06:22:53.373371Z","MostPoints":237,"MostPointsAt":"2023-02-15T06:22:53.373371Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373371Z","LastActivityAt":"2023-02-15T06:22:53.373371Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":826,"ScoreAtt":71394,"RankDef":215,"ScoreDef":1757593,"RankSup":694,"ScoreSup":51741,"RankTotal":421,"ScoreTotal":1880728,"ID":698916948,"Name":"Jose2015","NumVillages":7,"Points":33606,"Rank":782,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698916948","BestRank":782,"BestRankAt":"2023-02-15T06:22:53.373372Z","MostPoints":33606,"MostPointsAt":"2023-02-15T06:22:53.373372Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373372Z","LastActivityAt":"2023-02-15T06:22:53.373373Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1493,"ScoreAtt":2430,"RankDef":1958,"ScoreDef":6055,"RankSup":1151,"ScoreSup":996,"RankTotal":2009,"ScoreTotal":9481,"ID":698926585,"Name":"Sir Rekin II","NumVillages":1,"Points":9905,"Rank":1086,"TribeID":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698926585","BestRank":1086,"BestRankAt":"2023-02-15T06:22:53.373373Z","MostPoints":9905,"MostPointsAt":"2023-02-15T06:22:53.373374Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373374Z","LastActivityAt":"2023-02-15T06:22:53.373374Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37398Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2229,"ScoreDef":793,"RankSup":0,"ScoreSup":0,"RankTotal":2321,"ScoreTotal":793,"ID":698931404,"Name":"Lord lukis2012","NumVillages":1,"Points":1718,"Rank":1715,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698931404","BestRank":1715,"BestRankAt":"2023-02-15T06:22:53.373375Z","MostPoints":1718,"MostPointsAt":"2023-02-15T06:22:53.373375Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373375Z","LastActivityAt":"2023-02-15T06:22:53.373375Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37398Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2069,"ScoreDef":3458,"RankSup":0,"ScoreSup":0,"RankTotal":2193,"ScoreTotal":3458,"ID":698931998,"Name":"katarzyna2012","NumVillages":1,"Points":1733,"Rank":1713,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698931998","BestRank":1713,"BestRankAt":"2023-02-15T06:22:53.373376Z","MostPoints":1733,"MostPointsAt":"2023-02-15T06:22:53.373376Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373376Z","LastActivityAt":"2023-02-15T06:22:53.373376Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":961,"ScoreAtt":37143,"RankDef":1654,"ScoreDef":21817,"RankSup":986,"ScoreSup":5913,"RankTotal":1530,"ScoreTotal":64873,"ID":698934729,"Name":"Gregor20-90","NumVillages":5,"Points":14560,"Rank":1005,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698934729","BestRank":1005,"BestRankAt":"2023-02-15T06:22:53.373377Z","MostPoints":14560,"MostPointsAt":"2023-02-15T06:22:53.373377Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.373377Z","LastActivityAt":"2023-02-15T06:22:53.373378Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698936852,"Name":"ksiazejanusz","NumVillages":1,"Points":1777,"Rank":1703,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698936852","BestRank":1703,"BestRankAt":"2023-02-15T06:22:53.373378Z","MostPoints":1777,"MostPointsAt":"2023-02-15T06:22:53.373379Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373378Z","LastActivityAt":"2023-02-15T06:22:53.373379Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":763,"ScoreDef":234404,"RankSup":0,"ScoreSup":0,"RankTotal":1080,"ScoreTotal":234404,"ID":698938264,"Name":"alanbebz","NumVillages":1,"Points":894,"Rank":1888,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698938264","BestRank":1888,"BestRankAt":"2023-02-15T06:22:53.373379Z","MostPoints":894,"MostPointsAt":"2023-02-15T06:22:53.37338Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37338Z","LastActivityAt":"2023-02-15T06:22:53.37338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2464,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2541,"ScoreTotal":10,"ID":698941586,"Name":"Vito Corleone 2","NumVillages":1,"Points":1550,"Rank":1743,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698941586","BestRank":1743,"BestRankAt":"2023-02-15T06:22:53.373381Z","MostPoints":1550,"MostPointsAt":"2023-02-15T06:22:53.373381Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373381Z","LastActivityAt":"2023-02-15T06:22:53.373381Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1761,"ScoreAtt":301,"RankDef":845,"ScoreDef":186724,"RankSup":0,"ScoreSup":0,"RankTotal":1170,"ScoreTotal":187025,"ID":698946155,"Name":"Lord Lord Giza","NumVillages":1,"Points":2596,"Rank":1577,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698946155","BestRank":1577,"BestRankAt":"2023-02-15T06:22:53.373382Z","MostPoints":2596,"MostPointsAt":"2023-02-15T06:22:53.373382Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373382Z","LastActivityAt":"2023-02-15T06:22:53.373383Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1674,"ScoreAtt":716,"RankDef":1079,"ScoreDef":100183,"RankSup":0,"ScoreSup":0,"RankTotal":1389,"ScoreTotal":100899,"ID":698957176,"Name":"Pogodny WĂłdz","NumVillages":1,"Points":311,"Rank":2164,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698957176","BestRank":2164,"BestRankAt":"2023-02-15T06:22:53.373383Z","MostPoints":311,"MostPointsAt":"2023-02-15T06:22:53.373384Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373383Z","LastActivityAt":"2023-02-15T06:22:53.373384Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":17,"ScoreAtt":9398881,"RankDef":289,"ScoreDef":1235620,"RankSup":39,"ScoreSup":4028560,"RankTotal":49,"ScoreTotal":14663061,"ID":698962117,"Name":"pawcio231","NumVillages":404,"Points":3457451,"Rank":12,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698962117","BestRank":12,"BestRankAt":"2023-02-15T06:22:53.373384Z","MostPoints":3457451,"MostPointsAt":"2023-02-15T06:22:53.373385Z","MostVillages":404,"MostVillagesAt":"2023-02-15T06:22:53.373385Z","LastActivityAt":"2023-02-15T06:22:53.373385Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":29,"ScoreAtt":6887180,"RankDef":60,"ScoreDef":5706643,"RankSup":66,"ScoreSup":2884289,"RankTotal":46,"ScoreTotal":15478112,"ID":698971484,"Name":"ryju15","NumVillages":225,"Points":1890554,"Rank":55,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698971484","BestRank":55,"BestRankAt":"2023-02-15T06:22:53.373386Z","MostPoints":1890554,"MostPointsAt":"2023-02-15T06:22:53.373386Z","MostVillages":225,"MostVillagesAt":"2023-02-15T06:22:53.373386Z","LastActivityAt":"2023-02-15T06:22:53.373386Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1810,"ScoreAtt":179,"RankDef":637,"ScoreDef":339232,"RankSup":0,"ScoreSup":0,"RankTotal":972,"ScoreTotal":339411,"ID":698983867,"Name":"Rommel","NumVillages":1,"Points":371,"Rank":2111,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698983867","BestRank":2111,"BestRankAt":"2023-02-15T06:22:53.373387Z","MostPoints":371,"MostPointsAt":"2023-02-15T06:22:53.373387Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373387Z","LastActivityAt":"2023-02-15T06:22:53.373387Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698984562,"Name":"krzok14","NumVillages":1,"Points":71,"Rank":2531,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698984562","BestRank":2531,"BestRankAt":"2023-02-15T06:22:53.373388Z","MostPoints":71,"MostPointsAt":"2023-02-15T06:22:53.373389Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373388Z","LastActivityAt":"2023-02-15T06:22:53.373389Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1069,"ScoreAtt":20922,"RankDef":436,"ScoreDef":647814,"RankSup":601,"ScoreSup":98722,"RankTotal":697,"ScoreTotal":767458,"ID":698987598,"Name":"Aniuta","NumVillages":0,"Points":0,"Rank":2975,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698987598","BestRank":2975,"BestRankAt":"2023-02-15T06:22:53.373389Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37339Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37339Z","LastActivityAt":"2023-02-15T06:22:53.37339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":977,"ScoreAtt":33839,"RankDef":283,"ScoreDef":1285969,"RankSup":644,"ScoreSup":75426,"RankTotal":518,"ScoreTotal":1395234,"ID":698993706,"Name":"barot2","NumVillages":6,"Points":52521,"Rank":677,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698993706","BestRank":677,"BestRankAt":"2023-02-15T06:22:53.373391Z","MostPoints":52521,"MostPointsAt":"2023-02-15T06:22:53.373391Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.373391Z","LastActivityAt":"2023-02-15T06:22:53.373391Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":356,"ScoreAtt":678653,"RankDef":1328,"ScoreDef":54788,"RankSup":0,"ScoreSup":0,"RankTotal":712,"ScoreTotal":733441,"ID":698996782,"Name":"MrDynamitePl","NumVillages":27,"Points":198590,"Rank":414,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698996782","BestRank":414,"BestRankAt":"2023-02-15T06:22:53.373392Z","MostPoints":198590,"MostPointsAt":"2023-02-15T06:22:53.373392Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.373392Z","LastActivityAt":"2023-02-15T06:22:53.373392Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":968,"ScoreDef":135573,"RankSup":0,"ScoreSup":0,"RankTotal":1282,"ScoreTotal":135573,"ID":698998882,"Name":"Ervin21","NumVillages":2,"Points":11078,"Rank":1053,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698998882","BestRank":1053,"BestRankAt":"2023-02-15T06:22:53.373393Z","MostPoints":11078,"MostPointsAt":"2023-02-15T06:22:53.373393Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373393Z","LastActivityAt":"2023-02-15T06:22:53.373394Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":696,"ScoreAtt":133381,"RankDef":1333,"ScoreDef":54026,"RankSup":222,"ScoreSup":801120,"RankTotal":621,"ScoreTotal":988527,"ID":698999105,"Name":"Rose1827","NumVillages":79,"Points":782910,"Rank":185,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698999105","BestRank":185,"BestRankAt":"2023-02-15T06:22:53.373394Z","MostPoints":782910,"MostPointsAt":"2023-02-15T06:22:53.373395Z","MostVillages":79,"MostVillagesAt":"2023-02-15T06:22:53.373395Z","LastActivityAt":"2023-02-15T06:22:53.373395Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1865,"ScoreAtt":100,"RankDef":1264,"ScoreDef":61262,"RankSup":0,"ScoreSup":0,"RankTotal":1544,"ScoreTotal":61362,"ID":699004723,"Name":"PLSPopo","NumVillages":0,"Points":0,"Rank":2976,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699004723","BestRank":2976,"BestRankAt":"2023-02-15T06:22:53.373396Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373396Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373396Z","LastActivityAt":"2023-02-15T06:22:53.373396Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2085,"ScoreDef":3027,"RankSup":0,"ScoreSup":0,"RankTotal":2204,"ScoreTotal":3027,"ID":699006683,"Name":"qsza","NumVillages":0,"Points":0,"Rank":2977,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699006683","BestRank":2977,"BestRankAt":"2023-02-15T06:22:53.373397Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373397Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373397Z","LastActivityAt":"2023-02-15T06:22:53.373397Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1903,"ScoreDef":7894,"RankSup":0,"ScoreSup":0,"RankTotal":2049,"ScoreTotal":7894,"ID":699007059,"Name":"Lolitkaa","NumVillages":1,"Points":6536,"Rank":1238,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699007059","BestRank":1238,"BestRankAt":"2023-02-15T06:22:53.373398Z","MostPoints":6536,"MostPointsAt":"2023-02-15T06:22:53.373398Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373398Z","LastActivityAt":"2023-02-15T06:22:53.373399Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699011096,"Name":"freaky97","NumVillages":1,"Points":26,"Rank":2704,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699011096","BestRank":2704,"BestRankAt":"2023-02-15T06:22:53.373399Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.3734Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373399Z","LastActivityAt":"2023-02-15T06:22:53.3734Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2089,"ScoreDef":2946,"RankSup":0,"ScoreSup":0,"RankTotal":2208,"ScoreTotal":2946,"ID":699011415,"Name":"noidea","NumVillages":1,"Points":458,"Rank":2054,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699011415","BestRank":2054,"BestRankAt":"2023-02-15T06:22:53.373401Z","MostPoints":458,"MostPointsAt":"2023-02-15T06:22:53.373401Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373401Z","LastActivityAt":"2023-02-15T06:22:53.373401Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":664,"ScoreAtt":148137,"RankDef":725,"ScoreDef":259639,"RankSup":351,"ScoreSup":408097,"RankTotal":682,"ScoreTotal":815873,"ID":699016994,"Name":"TeenShey","NumVillages":25,"Points":157317,"Rank":454,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699016994","BestRank":454,"BestRankAt":"2023-02-15T06:22:53.373402Z","MostPoints":157317,"MostPointsAt":"2023-02-15T06:22:53.373402Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.373402Z","LastActivityAt":"2023-02-15T06:22:53.373402Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1726,"ScoreDef":17159,"RankSup":0,"ScoreSup":0,"RankTotal":1903,"ScoreTotal":17159,"ID":699019249,"Name":"LoRd BoNiO","NumVillages":1,"Points":1831,"Rank":1697,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699019249","BestRank":1697,"BestRankAt":"2023-02-15T06:22:53.373403Z","MostPoints":1831,"MostPointsAt":"2023-02-15T06:22:53.373403Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373403Z","LastActivityAt":"2023-02-15T06:22:53.373404Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1657,"ScoreAtt":797,"RankDef":1778,"ScoreDef":13657,"RankSup":1250,"ScoreSup":131,"RankTotal":1935,"ScoreTotal":14585,"ID":699025262,"Name":"Pif paf...","NumVillages":1,"Points":989,"Rank":1868,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699025262","BestRank":1868,"BestRankAt":"2023-02-15T06:22:53.373404Z","MostPoints":989,"MostPointsAt":"2023-02-15T06:22:53.373405Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373404Z","LastActivityAt":"2023-02-15T06:22:53.373405Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1912,"ScoreDef":7552,"RankSup":0,"ScoreSup":0,"RankTotal":2055,"ScoreTotal":7552,"ID":699027000,"Name":"Martin1991","NumVillages":1,"Points":5600,"Rank":1295,"TribeID":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699027000","BestRank":1295,"BestRankAt":"2023-02-15T06:22:53.373405Z","MostPoints":5600,"MostPointsAt":"2023-02-15T06:22:53.373406Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373406Z","LastActivityAt":"2023-02-15T06:22:53.373406Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1766,"ScoreAtt":288,"RankDef":1918,"ScoreDef":7438,"RankSup":950,"ScoreSup":7932,"RankTotal":1925,"ScoreTotal":15658,"ID":699034094,"Name":"Marduk","NumVillages":6,"Points":26591,"Rank":842,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699034094","BestRank":842,"BestRankAt":"2023-02-15T06:22:53.373407Z","MostPoints":26591,"MostPointsAt":"2023-02-15T06:22:53.373407Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.373407Z","LastActivityAt":"2023-02-15T06:22:53.373407Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1706,"ScoreAtt":557,"RankDef":991,"ScoreDef":126159,"RankSup":1226,"ScoreSup":247,"RankTotal":1306,"ScoreTotal":126963,"ID":699037086,"Name":"telimena","NumVillages":4,"Points":8537,"Rank":1134,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699037086","BestRank":1134,"BestRankAt":"2023-02-15T06:22:53.373408Z","MostPoints":8537,"MostPointsAt":"2023-02-15T06:22:53.373408Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373408Z","LastActivityAt":"2023-02-15T06:22:53.373409Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1451,"ScoreAtt":3207,"RankDef":1534,"ScoreDef":30784,"RankSup":1005,"ScoreSup":5010,"RankTotal":1690,"ScoreTotal":39001,"ID":699039013,"Name":"zbigbrader","NumVillages":2,"Points":7382,"Rank":1196,"TribeID":1538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699039013","BestRank":1196,"BestRankAt":"2023-02-15T06:22:53.373409Z","MostPoints":7382,"MostPointsAt":"2023-02-15T06:22:53.37341Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373409Z","LastActivityAt":"2023-02-15T06:22:53.37341Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2373,"ScoreDef":41,"RankSup":0,"ScoreSup":0,"RankTotal":2471,"ScoreTotal":41,"ID":699040431,"Name":"Skylly","NumVillages":1,"Points":80,"Rank":2511,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699040431","BestRank":2511,"BestRankAt":"2023-02-15T06:22:53.37341Z","MostPoints":80,"MostPointsAt":"2023-02-15T06:22:53.373411Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373411Z","LastActivityAt":"2023-02-15T06:22:53.373411Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1162,"ScoreAtt":12991,"RankDef":1082,"ScoreDef":98715,"RankSup":0,"ScoreSup":0,"RankTotal":1355,"ScoreTotal":111706,"ID":699054327,"Name":"kondzio95rrr","NumVillages":1,"Points":155,"Rank":2371,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699054327","BestRank":2371,"BestRankAt":"2023-02-15T06:22:53.373412Z","MostPoints":155,"MostPointsAt":"2023-02-15T06:22:53.373412Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373412Z","LastActivityAt":"2023-02-15T06:22:53.373412Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":177,"ScoreAtt":1799609,"RankDef":155,"ScoreDef":2443294,"RankSup":123,"ScoreSup":1808002,"RankTotal":148,"ScoreTotal":6050905,"ID":699054373,"Name":"chelseafan69","NumVillages":79,"Points":741183,"Rank":192,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699054373","BestRank":192,"BestRankAt":"2023-02-15T06:22:53.373413Z","MostPoints":741183,"MostPointsAt":"2023-02-15T06:22:53.373413Z","MostVillages":79,"MostVillagesAt":"2023-02-15T06:22:53.373413Z","LastActivityAt":"2023-02-15T06:22:53.373413Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699056677,"Name":"SHAKARA","NumVillages":1,"Points":478,"Rank":2043,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699056677","BestRank":2043,"BestRankAt":"2023-02-15T06:22:53.373414Z","MostPoints":478,"MostPointsAt":"2023-02-15T06:22:53.373415Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373414Z","LastActivityAt":"2023-02-15T06:22:53.373415Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1980,"ScoreAtt":6,"RankDef":2434,"ScoreDef":10,"RankSup":1372,"ScoreSup":3,"RankTotal":2502,"ScoreTotal":19,"ID":699057459,"Name":"Crezys","NumVillages":1,"Points":1525,"Rank":1749,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699057459","BestRank":1749,"BestRankAt":"2023-02-15T06:22:53.373415Z","MostPoints":1525,"MostPointsAt":"2023-02-15T06:22:53.373416Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373416Z","LastActivityAt":"2023-02-15T06:22:53.373416Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1959,"ScoreAtt":15,"RankDef":2469,"ScoreDef":10,"RankSup":1309,"ScoreSup":20,"RankTotal":2465,"ScoreTotal":45,"ID":699058253,"Name":"Belmondo77","NumVillages":1,"Points":1584,"Rank":1735,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699058253","BestRank":1735,"BestRankAt":"2023-02-15T06:22:53.373417Z","MostPoints":1584,"MostPointsAt":"2023-02-15T06:22:53.373417Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373417Z","LastActivityAt":"2023-02-15T06:22:53.373417Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699062337,"Name":"*ZasadĆșca*","NumVillages":1,"Points":105,"Rank":2469,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699062337","BestRank":2469,"BestRankAt":"2023-02-15T06:22:53.373418Z","MostPoints":105,"MostPointsAt":"2023-02-15T06:22:53.373418Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373418Z","LastActivityAt":"2023-02-15T06:22:53.373418Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":278,"ScoreAtt":998458,"RankDef":253,"ScoreDef":1460733,"RankSup":422,"ScoreSup":262122,"RankTotal":323,"ScoreTotal":2721313,"ID":699065686,"Name":"Sir skawiu","NumVillages":1,"Points":133,"Rank":2410,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699065686","BestRank":2410,"BestRankAt":"2023-02-15T06:22:53.373419Z","MostPoints":133,"MostPointsAt":"2023-02-15T06:22:53.373419Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373419Z","LastActivityAt":"2023-02-15T06:22:53.37342Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":708,"ScoreAtt":124486,"RankDef":1696,"ScoreDef":19019,"RankSup":1074,"ScoreSup":2486,"RankTotal":1257,"ScoreTotal":145991,"ID":699066118,"Name":"tomiwet","NumVillages":12,"Points":71745,"Rank":606,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699066118","BestRank":606,"BestRankAt":"2023-02-15T06:22:53.37342Z","MostPoints":71745,"MostPointsAt":"2023-02-15T06:22:53.373421Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.37342Z","LastActivityAt":"2023-02-15T06:22:53.373421Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1278,"ScoreAtt":7114,"RankDef":2443,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2069,"ScoreTotal":7124,"ID":699069151,"Name":"ToHellAndBack","NumVillages":3,"Points":9749,"Rank":1091,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699069151","BestRank":1091,"BestRankAt":"2023-02-15T06:22:53.373422Z","MostPoints":9749,"MostPointsAt":"2023-02-15T06:22:53.373422Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373422Z","LastActivityAt":"2023-02-15T06:22:53.373422Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.373999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":34,"ScoreAtt":6242248,"RankDef":416,"ScoreDef":706598,"RankSup":309,"ScoreSup":501704,"RankTotal":111,"ScoreTotal":7450550,"ID":699072129,"Name":"Charfa","NumVillages":307,"Points":2536905,"Rank":23,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699072129","BestRank":23,"BestRankAt":"2023-02-15T06:22:53.373423Z","MostPoints":2536905,"MostPointsAt":"2023-02-15T06:22:53.373423Z","MostVillages":307,"MostVillagesAt":"2023-02-15T06:22:53.373423Z","LastActivityAt":"2023-02-15T06:22:53.373423Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1201,"ScoreDef":72688,"RankSup":0,"ScoreSup":0,"RankTotal":1491,"ScoreTotal":72688,"ID":699075351,"Name":"JAN1234","NumVillages":1,"Points":4233,"Rank":1392,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699075351","BestRank":1392,"BestRankAt":"2023-02-15T06:22:53.373424Z","MostPoints":4233,"MostPointsAt":"2023-02-15T06:22:53.373424Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373424Z","LastActivityAt":"2023-02-15T06:22:53.373425Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699075613,"Name":"oliwer1996","NumVillages":1,"Points":5997,"Rank":1268,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699075613","BestRank":1268,"BestRankAt":"2023-02-15T06:22:53.373425Z","MostPoints":5997,"MostPointsAt":"2023-02-15T06:22:53.373426Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373425Z","LastActivityAt":"2023-02-15T06:22:53.373426Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":641,"ScoreAtt":166245,"RankDef":332,"ScoreDef":984577,"RankSup":267,"ScoreSup":625744,"RankTotal":448,"ScoreTotal":1776566,"ID":699083129,"Name":"skogu","NumVillages":25,"Points":195307,"Rank":420,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699083129","BestRank":420,"BestRankAt":"2023-02-15T06:22:53.373426Z","MostPoints":195307,"MostPointsAt":"2023-02-15T06:22:53.373427Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.373427Z","LastActivityAt":"2023-02-15T06:22:53.373427Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699084064,"Name":"gsxr600k2","NumVillages":1,"Points":178,"Rank":2340,"TribeID":1809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699084064","BestRank":2340,"BestRankAt":"2023-02-15T06:22:53.373428Z","MostPoints":178,"MostPointsAt":"2023-02-15T06:22:53.373428Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373428Z","LastActivityAt":"2023-02-15T06:22:53.373428Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":771,"ScoreAtt":93101,"RankDef":462,"ScoreDef":593183,"RankSup":821,"ScoreSup":21466,"RankTotal":727,"ScoreTotal":707750,"ID":699086436,"Name":"bogmar","NumVillages":0,"Points":0,"Rank":2978,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699086436","BestRank":2978,"BestRankAt":"2023-02-15T06:22:53.373429Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373429Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373429Z","LastActivityAt":"2023-02-15T06:22:53.37343Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1063,"ScoreAtt":21902,"RankDef":710,"ScoreDef":265549,"RankSup":816,"ScoreSup":22013,"RankTotal":995,"ScoreTotal":309464,"ID":699088529,"Name":"waldek10","NumVillages":9,"Points":50104,"Rank":692,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699088529","BestRank":692,"BestRankAt":"2023-02-15T06:22:53.37343Z","MostPoints":50104,"MostPointsAt":"2023-02-15T06:22:53.373431Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.37343Z","LastActivityAt":"2023-02-15T06:22:53.373431Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":44,"ScoreAtt":5293101,"RankDef":476,"ScoreDef":561534,"RankSup":63,"ScoreSup":3016001,"RankTotal":85,"ScoreTotal":8870636,"ID":699088769,"Name":"Before1995","NumVillages":216,"Points":2069622,"Rank":44,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699088769","BestRank":44,"BestRankAt":"2023-02-15T06:22:53.373431Z","MostPoints":2069622,"MostPointsAt":"2023-02-15T06:22:53.373432Z","MostVillages":216,"MostVillagesAt":"2023-02-15T06:22:53.373432Z","LastActivityAt":"2023-02-15T06:22:53.373432Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1515,"ScoreDef":32444,"RankSup":0,"ScoreSup":0,"RankTotal":1753,"ScoreTotal":32444,"ID":699091553,"Name":"dudus1992","NumVillages":0,"Points":0,"Rank":2979,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699091553","BestRank":2979,"BestRankAt":"2023-02-15T06:22:53.373433Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373433Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373433Z","LastActivityAt":"2023-02-15T06:22:53.373433Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":241,"ScoreAtt":1173563,"RankDef":19,"ScoreDef":16414227,"RankSup":124,"ScoreSup":1739304,"RankTotal":30,"ScoreTotal":19327094,"ID":699097885,"Name":"epsilonPL","NumVillages":32,"Points":272192,"Rank":365,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699097885","BestRank":365,"BestRankAt":"2023-02-15T06:22:53.373434Z","MostPoints":272192,"MostPointsAt":"2023-02-15T06:22:53.373434Z","MostVillages":32,"MostVillagesAt":"2023-02-15T06:22:53.373434Z","LastActivityAt":"2023-02-15T06:22:53.373435Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":5,"ScoreAtt":17492315,"RankDef":8,"ScoreDef":22806985,"RankSup":32,"ScoreSup":4591440,"RankTotal":8,"ScoreTotal":44890740,"ID":699098531,"Name":"Flip i Flap","NumVillages":742,"Points":6466161,"Rank":2,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699098531","BestRank":2,"BestRankAt":"2023-02-15T06:22:53.373435Z","MostPoints":6466161,"MostPointsAt":"2023-02-15T06:22:53.373436Z","MostVillages":742,"MostVillagesAt":"2023-02-15T06:22:53.373435Z","LastActivityAt":"2023-02-15T06:22:53.373436Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":752,"ScoreAtt":101922,"RankDef":808,"ScoreDef":205501,"RankSup":836,"ScoreSup":18187,"RankTotal":985,"ScoreTotal":325610,"ID":699099385,"Name":"Sessue","NumVillages":1,"Points":43,"Rank":2603,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699099385","BestRank":2603,"BestRankAt":"2023-02-15T06:22:53.373436Z","MostPoints":43,"MostPointsAt":"2023-02-15T06:22:53.373437Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373437Z","LastActivityAt":"2023-02-15T06:22:53.373437Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":375,"ScoreAtt":625734,"RankDef":1732,"ScoreDef":16873,"RankSup":297,"ScoreSup":538722,"RankTotal":565,"ScoreTotal":1181329,"ID":699099811,"Name":"P0tulny","NumVillages":66,"Points":449915,"Rank":282,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699099811","BestRank":282,"BestRankAt":"2023-02-15T06:22:53.373438Z","MostPoints":449915,"MostPointsAt":"2023-02-15T06:22:53.373438Z","MostVillages":66,"MostVillagesAt":"2023-02-15T06:22:53.373438Z","LastActivityAt":"2023-02-15T06:22:53.373438Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":454,"ScoreAtt":440153,"RankDef":1565,"ScoreDef":28597,"RankSup":712,"ScoreSup":44736,"RankTotal":831,"ScoreTotal":513486,"ID":699111651,"Name":"POLdi","NumVillages":1,"Points":10290,"Rank":1077,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699111651","BestRank":1077,"BestRankAt":"2023-02-15T06:22:53.373439Z","MostPoints":10290,"MostPointsAt":"2023-02-15T06:22:53.373439Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373439Z","LastActivityAt":"2023-02-15T06:22:53.373439Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1413,"ScoreAtt":3941,"RankDef":1417,"ScoreDef":41266,"RankSup":709,"ScoreSup":45547,"RankTotal":1434,"ScoreTotal":90754,"ID":699117178,"Name":"Sir Borsuk011","NumVillages":4,"Points":31021,"Rank":804,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699117178","BestRank":804,"BestRankAt":"2023-02-15T06:22:53.37344Z","MostPoints":31021,"MostPointsAt":"2023-02-15T06:22:53.373441Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.37344Z","LastActivityAt":"2023-02-15T06:22:53.373441Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":912,"ScoreAtt":47870,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":1631,"ScoreTotal":47870,"ID":699117865,"Name":"WOJOWNICZKA.","NumVillages":1,"Points":9633,"Rank":1098,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699117865","BestRank":1098,"BestRankAt":"2023-02-15T06:22:53.373441Z","MostPoints":9633,"MostPointsAt":"2023-02-15T06:22:53.373442Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373442Z","LastActivityAt":"2023-02-15T06:22:53.373442Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1003,"ScoreAtt":29717,"RankDef":744,"ScoreDef":246113,"RankSup":913,"ScoreSup":10680,"RankTotal":1015,"ScoreTotal":286510,"ID":699117992,"Name":"Bakun83","NumVillages":15,"Points":88947,"Rank":563,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699117992","BestRank":563,"BestRankAt":"2023-02-15T06:22:53.373443Z","MostPoints":88947,"MostPointsAt":"2023-02-15T06:22:53.373443Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.373443Z","LastActivityAt":"2023-02-15T06:22:53.373443Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":414,"ScoreAtt":547084,"RankDef":579,"ScoreDef":402035,"RankSup":373,"ScoreSup":360135,"RankTotal":535,"ScoreTotal":1309254,"ID":699121671,"Name":"KotAlik","NumVillages":55,"Points":372180,"Rank":311,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699121671","BestRank":311,"BestRankAt":"2023-02-15T06:22:53.373444Z","MostPoints":372180,"MostPointsAt":"2023-02-15T06:22:53.373444Z","MostVillages":55,"MostVillagesAt":"2023-02-15T06:22:53.373444Z","LastActivityAt":"2023-02-15T06:22:53.373444Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":874,"ScoreDef":176539,"RankSup":920,"ScoreSup":10186,"RankTotal":1172,"ScoreTotal":186725,"ID":699121777,"Name":"Trevor05","NumVillages":0,"Points":0,"Rank":2980,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699121777","BestRank":2980,"BestRankAt":"2023-02-15T06:22:53.373445Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373445Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373445Z","LastActivityAt":"2023-02-15T06:22:53.373446Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":244,"ScoreAtt":1165967,"RankDef":1752,"ScoreDef":15506,"RankSup":1137,"ScoreSup":1184,"RankTotal":563,"ScoreTotal":1182657,"ID":699126484,"Name":"Andzynek","NumVillages":36,"Points":336516,"Rank":335,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699126484","BestRank":335,"BestRankAt":"2023-02-15T06:22:53.373446Z","MostPoints":336516,"MostPointsAt":"2023-02-15T06:22:53.373447Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.373447Z","LastActivityAt":"2023-02-15T06:22:53.373447Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2320,"ScoreDef":209,"RankSup":0,"ScoreSup":0,"RankTotal":2400,"ScoreTotal":209,"ID":699126490,"Name":"Bipi","NumVillages":1,"Points":2769,"Rank":1554,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699126490","BestRank":1554,"BestRankAt":"2023-02-15T06:22:53.373448Z","MostPoints":2769,"MostPointsAt":"2023-02-15T06:22:53.373448Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373448Z","LastActivityAt":"2023-02-15T06:22:53.373448Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1738,"ScoreAtt":369,"RankDef":1546,"ScoreDef":29855,"RankSup":0,"ScoreSup":0,"RankTotal":1770,"ScoreTotal":30224,"ID":699127156,"Name":"donguralesko80","NumVillages":2,"Points":7415,"Rank":1192,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699127156","BestRank":1192,"BestRankAt":"2023-02-15T06:22:53.373449Z","MostPoints":7415,"MostPointsAt":"2023-02-15T06:22:53.373449Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373449Z","LastActivityAt":"2023-02-15T06:22:53.373449Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1851,"ScoreAtt":128,"RankDef":522,"ScoreDef":491648,"RankSup":892,"ScoreSup":12691,"RankTotal":839,"ScoreTotal":504467,"ID":699127546,"Name":"kinia 20","NumVillages":2,"Points":9425,"Rank":1108,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699127546","BestRank":1108,"BestRankAt":"2023-02-15T06:22:53.37345Z","MostPoints":9425,"MostPointsAt":"2023-02-15T06:22:53.37345Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.37345Z","LastActivityAt":"2023-02-15T06:22:53.373451Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2331,"ScoreDef":156,"RankSup":0,"ScoreSup":0,"RankTotal":2414,"ScoreTotal":156,"ID":699131849,"Name":"brt007","NumVillages":1,"Points":172,"Rank":2349,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699131849","BestRank":2349,"BestRankAt":"2023-02-15T06:22:53.373451Z","MostPoints":172,"MostPointsAt":"2023-02-15T06:22:53.373452Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373451Z","LastActivityAt":"2023-02-15T06:22:53.373452Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1190,"ScoreAtt":11192,"RankDef":745,"ScoreDef":245477,"RankSup":860,"ScoreSup":15914,"RankTotal":1029,"ScoreTotal":272583,"ID":699139964,"Name":"dudek2222","NumVillages":2,"Points":6944,"Rank":1219,"TribeID":1771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699139964","BestRank":1219,"BestRankAt":"2023-02-15T06:22:53.373452Z","MostPoints":6944,"MostPointsAt":"2023-02-15T06:22:53.373453Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373453Z","LastActivityAt":"2023-02-15T06:22:53.373453Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1278,"ScoreDef":59805,"RankSup":0,"ScoreSup":0,"RankTotal":1557,"ScoreTotal":59805,"ID":699144886,"Name":"jurek15","NumVillages":1,"Points":1267,"Rank":1797,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699144886","BestRank":1797,"BestRankAt":"2023-02-15T06:22:53.373454Z","MostPoints":1267,"MostPointsAt":"2023-02-15T06:22:53.373454Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373454Z","LastActivityAt":"2023-02-15T06:22:53.373454Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":196,"ScoreAtt":1580462,"RankDef":32,"ScoreDef":10896710,"RankSup":76,"ScoreSup":2781268,"RankTotal":47,"ScoreTotal":15258440,"ID":699146580,"Name":"Lord miki12323","NumVillages":95,"Points":609436,"Rank":234,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699146580","BestRank":234,"BestRankAt":"2023-02-15T06:22:53.373455Z","MostPoints":609436,"MostPointsAt":"2023-02-15T06:22:53.373455Z","MostVillages":95,"MostVillagesAt":"2023-02-15T06:22:53.373455Z","LastActivityAt":"2023-02-15T06:22:53.373456Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1133,"ScoreAtt":15589,"RankDef":2184,"ScoreDef":1462,"RankSup":0,"ScoreSup":0,"RankTotal":1905,"ScoreTotal":17051,"ID":699146876,"Name":"DzikiNieogar","NumVillages":3,"Points":11515,"Rank":1049,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699146876","BestRank":1049,"BestRankAt":"2023-02-15T06:22:53.373456Z","MostPoints":11515,"MostPointsAt":"2023-02-15T06:22:53.373457Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373456Z","LastActivityAt":"2023-02-15T06:22:53.373457Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2498,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2569,"ScoreTotal":2,"ID":699147813,"Name":"Zakrecony","NumVillages":1,"Points":376,"Rank":2106,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699147813","BestRank":2106,"BestRankAt":"2023-02-15T06:22:53.373457Z","MostPoints":376,"MostPointsAt":"2023-02-15T06:22:53.373458Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373458Z","LastActivityAt":"2023-02-15T06:22:53.373458Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1287,"ScoreAtt":6767,"RankDef":1692,"ScoreDef":19468,"RankSup":0,"ScoreSup":0,"RankTotal":1808,"ScoreTotal":26235,"ID":699148121,"Name":"robertos1","NumVillages":1,"Points":1627,"Rank":1727,"TribeID":1432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699148121","BestRank":1727,"BestRankAt":"2023-02-15T06:22:53.373459Z","MostPoints":1627,"MostPointsAt":"2023-02-15T06:22:53.373459Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373459Z","LastActivityAt":"2023-02-15T06:22:53.373459Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":322,"ScoreAtt":821191,"RankDef":950,"ScoreDef":143272,"RankSup":1051,"ScoreSup":2973,"RankTotal":632,"ScoreTotal":967436,"ID":699150527,"Name":"F4T4L","NumVillages":55,"Points":476849,"Rank":275,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699150527","BestRank":275,"BestRankAt":"2023-02-15T06:22:53.37346Z","MostPoints":476849,"MostPointsAt":"2023-02-15T06:22:53.37346Z","MostVillages":55,"MostVillagesAt":"2023-02-15T06:22:53.37346Z","LastActivityAt":"2023-02-15T06:22:53.37346Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1284,"ScoreAtt":6927,"RankDef":450,"ScoreDef":622220,"RankSup":0,"ScoreSup":0,"RankTotal":766,"ScoreTotal":629147,"ID":699155679,"Name":"marekwalczyk","NumVillages":1,"Points":214,"Rank":2278,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699155679","BestRank":2278,"BestRankAt":"2023-02-15T06:22:53.373461Z","MostPoints":214,"MostPointsAt":"2023-02-15T06:22:53.373462Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373461Z","LastActivityAt":"2023-02-15T06:22:53.373462Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1020,"ScoreAtt":27725,"RankDef":2077,"ScoreDef":3284,"RankSup":1255,"ScoreSup":115,"RankTotal":1762,"ScoreTotal":31124,"ID":699156456,"Name":"KATOZAUR","NumVillages":1,"Points":77,"Rank":2519,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699156456","BestRank":2519,"BestRankAt":"2023-02-15T06:22:53.373462Z","MostPoints":77,"MostPointsAt":"2023-02-15T06:22:53.373463Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373463Z","LastActivityAt":"2023-02-15T06:22:53.373463Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699163285,"Name":"Zukos","NumVillages":1,"Points":26,"Rank":2705,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699163285","BestRank":2705,"BestRankAt":"2023-02-15T06:22:53.373464Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373464Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373464Z","LastActivityAt":"2023-02-15T06:22:53.373464Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1361,"ScoreDef":49269,"RankSup":0,"ScoreSup":0,"RankTotal":1618,"ScoreTotal":49269,"ID":699167148,"Name":"dekunka2","NumVillages":1,"Points":1853,"Rank":1694,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699167148","BestRank":1694,"BestRankAt":"2023-02-15T06:22:53.373465Z","MostPoints":1853,"MostPointsAt":"2023-02-15T06:22:53.373465Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373465Z","LastActivityAt":"2023-02-15T06:22:53.373465Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1800,"ScoreDef":12463,"RankSup":0,"ScoreSup":0,"RankTotal":1959,"ScoreTotal":12463,"ID":699169828,"Name":"Atanami","NumVillages":0,"Points":0,"Rank":2981,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699169828","BestRank":2981,"BestRankAt":"2023-02-15T06:22:53.373466Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373466Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373466Z","LastActivityAt":"2023-02-15T06:22:53.373467Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":116,"ScoreAtt":2617419,"RankDef":310,"ScoreDef":1097258,"RankSup":106,"ScoreSup":2123521,"RankTotal":156,"ScoreTotal":5838198,"ID":699170684,"Name":"krzychu20177","NumVillages":70,"Points":637773,"Rank":223,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699170684","BestRank":223,"BestRankAt":"2023-02-15T06:22:53.373467Z","MostPoints":637773,"MostPointsAt":"2023-02-15T06:22:53.373468Z","MostVillages":70,"MostVillagesAt":"2023-02-15T06:22:53.373467Z","LastActivityAt":"2023-02-15T06:22:53.373468Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":262,"ScoreAtt":1078952,"RankDef":1661,"ScoreDef":21510,"RankSup":259,"ScoreSup":655688,"RankTotal":454,"ScoreTotal":1756150,"ID":699176234,"Name":"Loker","NumVillages":3,"Points":29822,"Rank":816,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699176234","BestRank":816,"BestRankAt":"2023-02-15T06:22:53.373469Z","MostPoints":29822,"MostPointsAt":"2023-02-15T06:22:53.373469Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373469Z","LastActivityAt":"2023-02-15T06:22:53.373469Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":108,"ScoreAtt":2934255,"RankDef":53,"ScoreDef":6205667,"RankSup":13,"ScoreSup":6563498,"RankTotal":43,"ScoreTotal":15703420,"ID":699189792,"Name":"Inko","NumVillages":191,"Points":1660111,"Rank":68,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699189792","BestRank":68,"BestRankAt":"2023-02-15T06:22:53.37347Z","MostPoints":1660111,"MostPointsAt":"2023-02-15T06:22:53.37347Z","MostVillages":191,"MostVillagesAt":"2023-02-15T06:22:53.37347Z","LastActivityAt":"2023-02-15T06:22:53.37347Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374019Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":524,"ScoreAtt":317315,"RankDef":1467,"ScoreDef":36951,"RankSup":933,"ScoreSup":9140,"RankTotal":947,"ScoreTotal":363406,"ID":699191449,"Name":"Chodziu95","NumVillages":33,"Points":192481,"Rank":423,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699191449","BestRank":423,"BestRankAt":"2023-02-15T06:22:53.373471Z","MostPoints":192481,"MostPointsAt":"2023-02-15T06:22:53.373471Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.373471Z","LastActivityAt":"2023-02-15T06:22:53.373472Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374019Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":521,"ScoreAtt":321791,"RankDef":1642,"ScoreDef":22923,"RankSup":901,"ScoreSup":11859,"RankTotal":956,"ScoreTotal":356573,"ID":699191455,"Name":"KingPoiek","NumVillages":26,"Points":152176,"Rank":464,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699191455","BestRank":464,"BestRankAt":"2023-02-15T06:22:53.373472Z","MostPoints":152176,"MostPointsAt":"2023-02-15T06:22:53.373473Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.373472Z","LastActivityAt":"2023-02-15T06:22:53.373473Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37402Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":477,"ScoreAtt":401931,"RankDef":867,"ScoreDef":180564,"RankSup":922,"ScoreSup":10082,"RankTotal":775,"ScoreTotal":592577,"ID":699191464,"Name":"Lord Queno","NumVillages":24,"Points":114512,"Rank":512,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699191464","BestRank":512,"BestRankAt":"2023-02-15T06:22:53.373473Z","MostPoints":114512,"MostPointsAt":"2023-02-15T06:22:53.373474Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.373474Z","LastActivityAt":"2023-02-15T06:22:53.373474Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37402Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":234,"ScoreAtt":1278634,"RankDef":1069,"ScoreDef":102369,"RankSup":767,"ScoreSup":32988,"RankTotal":512,"ScoreTotal":1413991,"ID":699194766,"Name":"osilek123","NumVillages":17,"Points":156334,"Rank":456,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699194766","BestRank":456,"BestRankAt":"2023-02-15T06:22:53.373475Z","MostPoints":156334,"MostPointsAt":"2023-02-15T06:22:53.373475Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.373475Z","LastActivityAt":"2023-02-15T06:22:53.373475Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":595,"ScoreAtt":218788,"RankDef":864,"ScoreDef":181313,"RankSup":430,"ScoreSup":252849,"RankTotal":753,"ScoreTotal":652950,"ID":699195358,"Name":"Ribeskanina","NumVillages":57,"Points":430416,"Rank":291,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699195358","BestRank":291,"BestRankAt":"2023-02-15T06:22:53.373476Z","MostPoints":430416,"MostPointsAt":"2023-02-15T06:22:53.373476Z","MostVillages":57,"MostVillagesAt":"2023-02-15T06:22:53.373476Z","LastActivityAt":"2023-02-15T06:22:53.373477Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":233,"ScoreAtt":1282710,"RankDef":948,"ScoreDef":143740,"RankSup":851,"ScoreSup":16729,"RankTotal":506,"ScoreTotal":1443179,"ID":699196829,"Name":"Ethan Hunt","NumVillages":6,"Points":36198,"Rank":766,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699196829","BestRank":766,"BestRankAt":"2023-02-15T06:22:53.373477Z","MostPoints":36198,"MostPointsAt":"2023-02-15T06:22:53.373478Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.373477Z","LastActivityAt":"2023-02-15T06:22:53.373478Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":545,"ScoreAtt":288786,"RankDef":323,"ScoreDef":1037005,"RankSup":401,"ScoreSup":315898,"RankTotal":468,"ScoreTotal":1641689,"ID":699199084,"Name":"Sir JuriGagarin","NumVillages":1,"Points":436,"Rank":2068,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699199084","BestRank":2068,"BestRankAt":"2023-02-15T06:22:53.373478Z","MostPoints":436,"MostPointsAt":"2023-02-15T06:22:53.373479Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373479Z","LastActivityAt":"2023-02-15T06:22:53.373479Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1055,"ScoreAtt":22890,"RankDef":860,"ScoreDef":182870,"RankSup":0,"ScoreSup":0,"RankTotal":1130,"ScoreTotal":205760,"ID":699201278,"Name":"wodzu11","NumVillages":2,"Points":15419,"Rank":991,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699201278","BestRank":991,"BestRankAt":"2023-02-15T06:22:53.37348Z","MostPoints":15419,"MostPointsAt":"2023-02-15T06:22:53.37348Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.37348Z","LastActivityAt":"2023-02-15T06:22:53.37348Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374023Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1214,"ScoreAtt":10127,"RankDef":300,"ScoreDef":1164946,"RankSup":733,"ScoreSup":40239,"RankTotal":556,"ScoreTotal":1215312,"ID":699204478,"Name":"DannyQ","NumVillages":5,"Points":34580,"Rank":776,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699204478","BestRank":776,"BestRankAt":"2023-02-15T06:22:53.373481Z","MostPoints":34580,"MostPointsAt":"2023-02-15T06:22:53.373481Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.373481Z","LastActivityAt":"2023-02-15T06:22:53.373482Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374023Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":199,"ScoreAtt":1571875,"RankDef":951,"ScoreDef":143192,"RankSup":369,"ScoreSup":368262,"RankTotal":395,"ScoreTotal":2083329,"ID":699208929,"Name":"tann","NumVillages":101,"Points":828267,"Rank":176,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699208929","BestRank":176,"BestRankAt":"2023-02-15T06:22:53.373482Z","MostPoints":828267,"MostPointsAt":"2023-02-15T06:22:53.373483Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.373482Z","LastActivityAt":"2023-02-15T06:22:53.373483Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1647,"ScoreAtt":852,"RankDef":2041,"ScoreDef":3970,"RankSup":0,"ScoreSup":0,"RankTotal":2140,"ScoreTotal":4822,"ID":699212614,"Name":"Lord xXWiLQXx","NumVillages":0,"Points":0,"Rank":2982,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699212614","BestRank":2982,"BestRankAt":"2023-02-15T06:22:53.373483Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373484Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373484Z","LastActivityAt":"2023-02-15T06:22:53.373484Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":96,"ScoreAtt":3350082,"RankDef":661,"ScoreDef":308733,"RankSup":164,"ScoreSup":1344703,"RankTotal":186,"ScoreTotal":5003518,"ID":699213622,"Name":"Murzyn","NumVillages":85,"Points":657196,"Rank":217,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699213622","BestRank":217,"BestRankAt":"2023-02-15T06:22:53.373485Z","MostPoints":657196,"MostPointsAt":"2023-02-15T06:22:53.373485Z","MostVillages":85,"MostVillagesAt":"2023-02-15T06:22:53.373485Z","LastActivityAt":"2023-02-15T06:22:53.373485Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":314,"ScoreAtt":866894,"RankDef":892,"ScoreDef":167679,"RankSup":569,"ScoreSup":117941,"RankTotal":573,"ScoreTotal":1152514,"ID":699238479,"Name":"majster0607","NumVillages":25,"Points":202917,"Rank":413,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699238479","BestRank":413,"BestRankAt":"2023-02-15T06:22:53.373486Z","MostPoints":202917,"MostPointsAt":"2023-02-15T06:22:53.373486Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.373486Z","LastActivityAt":"2023-02-15T06:22:53.373487Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1780,"ScoreAtt":260,"RankDef":2092,"ScoreDef":2887,"RankSup":0,"ScoreSup":0,"RankTotal":2201,"ScoreTotal":3147,"ID":699238678,"Name":"pepus1971","NumVillages":2,"Points":3587,"Rank":1454,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699238678","BestRank":1454,"BestRankAt":"2023-02-15T06:22:53.373487Z","MostPoints":3587,"MostPointsAt":"2023-02-15T06:22:53.373488Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373487Z","LastActivityAt":"2023-02-15T06:22:53.373488Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1171,"ScoreAtt":12381,"RankDef":814,"ScoreDef":201872,"RankSup":0,"ScoreSup":0,"RankTotal":1117,"ScoreTotal":214253,"ID":699244334,"Name":"DO100JNY","NumVillages":11,"Points":35835,"Rank":771,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699244334","BestRank":771,"BestRankAt":"2023-02-15T06:22:53.373488Z","MostPoints":35835,"MostPointsAt":"2023-02-15T06:22:53.373489Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.373489Z","LastActivityAt":"2023-02-15T06:22:53.373489Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":222,"ScoreAtt":1329013,"RankDef":62,"ScoreDef":5583593,"RankSup":699,"ScoreSup":49348,"RankTotal":127,"ScoreTotal":6961954,"ID":699246032,"Name":"Kwest","NumVillages":6,"Points":50587,"Rank":688,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699246032","BestRank":688,"BestRankAt":"2023-02-15T06:22:53.37349Z","MostPoints":50587,"MostPointsAt":"2023-02-15T06:22:53.37349Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.37349Z","LastActivityAt":"2023-02-15T06:22:53.37349Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":291,"ScoreAtt":957939,"RankDef":134,"ScoreDef":2905048,"RankSup":274,"ScoreSup":597860,"RankTotal":212,"ScoreTotal":4460847,"ID":699250676,"Name":"Sir maryƛka","NumVillages":2,"Points":17057,"Rank":968,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699250676","BestRank":968,"BestRankAt":"2023-02-15T06:22:53.373491Z","MostPoints":17057,"MostPointsAt":"2023-02-15T06:22:53.373491Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373491Z","LastActivityAt":"2023-02-15T06:22:53.373491Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1751,"ScoreAtt":336,"RankDef":1641,"ScoreDef":23020,"RankSup":0,"ScoreSup":0,"RankTotal":1835,"ScoreTotal":23356,"ID":699251542,"Name":"Zoodix","NumVillages":3,"Points":19572,"Rank":927,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699251542","BestRank":927,"BestRankAt":"2023-02-15T06:22:53.373492Z","MostPoints":19572,"MostPointsAt":"2023-02-15T06:22:53.373492Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373492Z","LastActivityAt":"2023-02-15T06:22:53.373493Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2494,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2572,"ScoreTotal":2,"ID":699254631,"Name":"ceru","NumVillages":1,"Points":112,"Rank":2461,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699254631","BestRank":2461,"BestRankAt":"2023-02-15T06:22:53.373493Z","MostPoints":112,"MostPointsAt":"2023-02-15T06:22:53.373494Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373494Z","LastActivityAt":"2023-02-15T06:22:53.373494Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":77,"ScoreAtt":4068859,"RankDef":164,"ScoreDef":2314003,"RankSup":209,"ScoreSup":880157,"RankTotal":116,"ScoreTotal":7263019,"ID":699262350,"Name":"Brat447","NumVillages":118,"Points":1089904,"Rank":127,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699262350","BestRank":127,"BestRankAt":"2023-02-15T06:22:53.373495Z","MostPoints":1089904,"MostPointsAt":"2023-02-15T06:22:53.373495Z","MostVillages":118,"MostVillagesAt":"2023-02-15T06:22:53.373495Z","LastActivityAt":"2023-02-15T06:22:53.373495Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699264947,"Name":"Kwiatuu","NumVillages":1,"Points":26,"Rank":2706,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699264947","BestRank":2706,"BestRankAt":"2023-02-15T06:22:53.373496Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373496Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373496Z","LastActivityAt":"2023-02-15T06:22:53.373496Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374029Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":73,"ScoreAtt":4123159,"RankDef":660,"ScoreDef":309057,"RankSup":95,"ScoreSup":2269630,"RankTotal":132,"ScoreTotal":6701846,"ID":699265922,"Name":"murzyn59","NumVillages":145,"Points":1236042,"Rank":105,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699265922","BestRank":105,"BestRankAt":"2023-02-15T06:22:53.373497Z","MostPoints":1236042,"MostPointsAt":"2023-02-15T06:22:53.373497Z","MostVillages":145,"MostVillagesAt":"2023-02-15T06:22:53.373497Z","LastActivityAt":"2023-02-15T06:22:53.373498Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374029Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":829,"ScoreAtt":71099,"RankDef":1880,"ScoreDef":8802,"RankSup":633,"ScoreSup":80024,"RankTotal":1230,"ScoreTotal":159925,"ID":699266530,"Name":"LordTrol","NumVillages":20,"Points":136463,"Rank":484,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699266530","BestRank":484,"BestRankAt":"2023-02-15T06:22:53.373498Z","MostPoints":136463,"MostPointsAt":"2023-02-15T06:22:53.373499Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.373498Z","LastActivityAt":"2023-02-15T06:22:53.373499Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":49,"ScoreAtt":4923506,"RankDef":198,"ScoreDef":1896108,"RankSup":38,"ScoreSup":4183414,"RankTotal":68,"ScoreTotal":11003028,"ID":699269923,"Name":"Kuzyn Karol","NumVillages":152,"Points":1325532,"Rank":92,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699269923","BestRank":92,"BestRankAt":"2023-02-15T06:22:53.3735Z","MostPoints":1325532,"MostPointsAt":"2023-02-15T06:22:53.3735Z","MostVillages":152,"MostVillagesAt":"2023-02-15T06:22:53.3735Z","LastActivityAt":"2023-02-15T06:22:53.3735Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":669,"ScoreAtt":145935,"RankDef":1665,"ScoreDef":21120,"RankSup":665,"ScoreSup":63145,"RankTotal":1088,"ScoreTotal":230200,"ID":699272633,"Name":"pachnis96","NumVillages":39,"Points":350520,"Rank":325,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699272633","BestRank":325,"BestRankAt":"2023-02-15T06:22:53.373501Z","MostPoints":350520,"MostPointsAt":"2023-02-15T06:22:53.373501Z","MostVillages":39,"MostVillagesAt":"2023-02-15T06:22:53.373501Z","LastActivityAt":"2023-02-15T06:22:53.373501Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":169,"ScoreAtt":1879400,"RankDef":1016,"ScoreDef":122037,"RankSup":541,"ScoreSup":136183,"RankTotal":390,"ScoreTotal":2137620,"ID":699272880,"Name":"TyQ1710","NumVillages":141,"Points":1366221,"Rank":88,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699272880","BestRank":88,"BestRankAt":"2023-02-15T06:22:53.373502Z","MostPoints":1366221,"MostPointsAt":"2023-02-15T06:22:53.373502Z","MostVillages":141,"MostVillagesAt":"2023-02-15T06:22:53.373502Z","LastActivityAt":"2023-02-15T06:22:53.373503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":27,"ScoreAtt":7143601,"RankDef":426,"ScoreDef":676415,"RankSup":346,"ScoreSup":416045,"RankTotal":96,"ScoreTotal":8236061,"ID":699273451,"Name":"Gram offa","NumVillages":268,"Points":2487295,"Rank":27,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699273451","BestRank":27,"BestRankAt":"2023-02-15T06:22:53.373503Z","MostPoints":2487295,"MostPointsAt":"2023-02-15T06:22:53.373504Z","MostVillages":268,"MostVillagesAt":"2023-02-15T06:22:53.373503Z","LastActivityAt":"2023-02-15T06:22:53.373504Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":245,"ScoreAtt":1164542,"RankDef":1211,"ScoreDef":70907,"RankSup":428,"ScoreSup":256140,"RankTotal":496,"ScoreTotal":1491589,"ID":699277039,"Name":"B.E.T.O.N","NumVillages":17,"Points":65972,"Rank":630,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699277039","BestRank":630,"BestRankAt":"2023-02-15T06:22:53.373504Z","MostPoints":65972,"MostPointsAt":"2023-02-15T06:22:53.373505Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.373505Z","LastActivityAt":"2023-02-15T06:22:53.373505Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1489,"ScoreAtt":2478,"RankDef":430,"ScoreDef":666235,"RankSup":752,"ScoreSup":35036,"RankTotal":731,"ScoreTotal":703749,"ID":699278528,"Name":"LadyMauritius","NumVillages":14,"Points":90380,"Rank":560,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699278528","BestRank":560,"BestRankAt":"2023-02-15T06:22:53.373506Z","MostPoints":90380,"MostPointsAt":"2023-02-15T06:22:53.373506Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.373506Z","LastActivityAt":"2023-02-15T06:22:53.373506Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":266,"ScoreAtt":1061805,"RankDef":385,"ScoreDef":790025,"RankSup":592,"ScoreSup":103239,"RankTotal":411,"ScoreTotal":1955069,"ID":699280514,"Name":"hary","NumVillages":18,"Points":80544,"Rank":584,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699280514","BestRank":584,"BestRankAt":"2023-02-15T06:22:53.373507Z","MostPoints":80544,"MostPointsAt":"2023-02-15T06:22:53.373507Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.373507Z","LastActivityAt":"2023-02-15T06:22:53.373508Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1512,"ScoreAtt":2215,"RankDef":2436,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2236,"ScoreTotal":2225,"ID":699282717,"Name":"jury1993","NumVillages":2,"Points":5336,"Rank":1309,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699282717","BestRank":1309,"BestRankAt":"2023-02-15T06:22:53.373508Z","MostPoints":5336,"MostPointsAt":"2023-02-15T06:22:53.373509Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373508Z","LastActivityAt":"2023-02-15T06:22:53.373509Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699282793,"Name":"Kira Motyl","NumVillages":1,"Points":26,"Rank":2707,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699282793","BestRank":2707,"BestRankAt":"2023-02-15T06:22:53.373509Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.37351Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37351Z","LastActivityAt":"2023-02-15T06:22:53.37351Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":274,"ScoreAtt":1026083,"RankDef":1169,"ScoreDef":79516,"RankSup":342,"ScoreSup":420497,"RankTotal":488,"ScoreTotal":1526096,"ID":699283869,"Name":"Seylito","NumVillages":1,"Points":1884,"Rank":1686,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699283869","BestRank":1686,"BestRankAt":"2023-02-15T06:22:53.373511Z","MostPoints":1884,"MostPointsAt":"2023-02-15T06:22:53.373511Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373511Z","LastActivityAt":"2023-02-15T06:22:53.373511Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1813,"ScoreAtt":175,"RankDef":2241,"ScoreDef":732,"RankSup":1222,"ScoreSup":271,"RankTotal":2302,"ScoreTotal":1178,"ID":699284822,"Name":"Karol III WIelki","NumVillages":1,"Points":3398,"Rank":1485,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699284822","BestRank":1485,"BestRankAt":"2023-02-15T06:22:53.373512Z","MostPoints":3398,"MostPointsAt":"2023-02-15T06:22:53.373512Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373512Z","LastActivityAt":"2023-02-15T06:22:53.373512Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1625,"ScoreAtt":1054,"RankDef":1209,"ScoreDef":71340,"RankSup":1330,"ScoreSup":11,"RankTotal":1492,"ScoreTotal":72405,"ID":699285160,"Name":"odek69","NumVillages":2,"Points":8036,"Rank":1154,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699285160","BestRank":1154,"BestRankAt":"2023-02-15T06:22:53.373513Z","MostPoints":8036,"MostPointsAt":"2023-02-15T06:22:53.373513Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373513Z","LastActivityAt":"2023-02-15T06:22:53.373514Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":333,"ScoreAtt":775693,"RankDef":1326,"ScoreDef":54827,"RankSup":156,"ScoreSup":1450554,"RankTotal":370,"ScoreTotal":2281074,"ID":699287032,"Name":"=PanR=","NumVillages":2,"Points":16537,"Rank":976,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699287032","BestRank":976,"BestRankAt":"2023-02-15T06:22:53.373514Z","MostPoints":16537,"MostPointsAt":"2023-02-15T06:22:53.373515Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373515Z","LastActivityAt":"2023-02-15T06:22:53.373515Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699294577,"Name":"Jakub JĂłĆșwiak","NumVillages":1,"Points":26,"Rank":2708,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699294577","BestRank":2708,"BestRankAt":"2023-02-15T06:22:53.373516Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373516Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373516Z","LastActivityAt":"2023-02-15T06:22:53.373516Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":86,"ScoreAtt":3751608,"RankDef":224,"ScoreDef":1675003,"RankSup":672,"ScoreSup":59839,"RankTotal":166,"ScoreTotal":5486450,"ID":699298370,"Name":"Gatt","NumVillages":226,"Points":2132872,"Rank":42,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699298370","BestRank":42,"BestRankAt":"2023-02-15T06:22:53.373517Z","MostPoints":2132872,"MostPointsAt":"2023-02-15T06:22:53.373517Z","MostVillages":226,"MostVillagesAt":"2023-02-15T06:22:53.373517Z","LastActivityAt":"2023-02-15T06:22:53.373517Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":33,"ScoreAtt":6242330,"RankDef":114,"ScoreDef":3259775,"RankSup":67,"ScoreSup":2873182,"RankTotal":63,"ScoreTotal":12375287,"ID":699299123,"Name":"d33L","NumVillages":211,"Points":1941868,"Rank":49,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699299123","BestRank":49,"BestRankAt":"2023-02-15T06:22:53.373518Z","MostPoints":1941868,"MostPointsAt":"2023-02-15T06:22:53.373518Z","MostVillages":211,"MostVillagesAt":"2023-02-15T06:22:53.373518Z","LastActivityAt":"2023-02-15T06:22:53.373519Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":948,"ScoreAtt":40896,"RankDef":707,"ScoreDef":267120,"RankSup":1133,"ScoreSup":1320,"RankTotal":996,"ScoreTotal":309336,"ID":699301458,"Name":"ZORDON2016","NumVillages":4,"Points":5953,"Rank":1272,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699301458","BestRank":1272,"BestRankAt":"2023-02-15T06:22:53.373519Z","MostPoints":5953,"MostPointsAt":"2023-02-15T06:22:53.37352Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373519Z","LastActivityAt":"2023-02-15T06:22:53.37352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374039Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":317,"ScoreAtt":852614,"RankDef":207,"ScoreDef":1824092,"RankSup":536,"ScoreSup":138996,"RankTotal":308,"ScoreTotal":2815702,"ID":699304554,"Name":"TransportBUS","NumVillages":13,"Points":20229,"Rank":913,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699304554","BestRank":913,"BestRankAt":"2023-02-15T06:22:53.373521Z","MostPoints":20229,"MostPointsAt":"2023-02-15T06:22:53.373521Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.373521Z","LastActivityAt":"2023-02-15T06:22:53.373521Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374039Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":532,"ScoreAtt":309905,"RankDef":1248,"ScoreDef":63758,"RankSup":951,"ScoreSup":7763,"RankTotal":933,"ScoreTotal":381426,"ID":699308637,"Name":"Freshlajkdzieju","NumVillages":34,"Points":223959,"Rank":396,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699308637","BestRank":396,"BestRankAt":"2023-02-15T06:22:53.373522Z","MostPoints":223959,"MostPointsAt":"2023-02-15T06:22:53.373522Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.373522Z","LastActivityAt":"2023-02-15T06:22:53.373522Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37404Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":301,"ScoreAtt":918915,"RankDef":1157,"ScoreDef":81870,"RankSup":326,"ScoreSup":450592,"RankTotal":502,"ScoreTotal":1451377,"ID":699316421,"Name":"Alstrem x Ataturk","NumVillages":78,"Points":726366,"Rank":196,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699316421","BestRank":196,"BestRankAt":"2023-02-15T06:22:53.373523Z","MostPoints":726366,"MostPointsAt":"2023-02-15T06:22:53.373523Z","MostVillages":78,"MostVillagesAt":"2023-02-15T06:22:53.373523Z","LastActivityAt":"2023-02-15T06:22:53.373524Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37404Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1725,"ScoreAtt":460,"RankDef":1449,"ScoreDef":38519,"RankSup":1169,"ScoreSup":779,"RankTotal":1686,"ScoreTotal":39758,"ID":699319395,"Name":"Cacuƛ-Lion","NumVillages":0,"Points":0,"Rank":2983,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699319395","BestRank":2983,"BestRankAt":"2023-02-15T06:22:53.373524Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373525Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373524Z","LastActivityAt":"2023-02-15T06:22:53.373525Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":435,"ScoreAtt":473923,"RankDef":1372,"ScoreDef":48100,"RankSup":275,"ScoreSup":594074,"RankTotal":590,"ScoreTotal":1116097,"ID":699320017,"Name":"Sir czerwis","NumVillages":0,"Points":0,"Rank":2984,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699320017","BestRank":2984,"BestRankAt":"2023-02-15T06:22:53.373525Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373526Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373526Z","LastActivityAt":"2023-02-15T06:22:53.373526Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":792,"ScoreAtt":84853,"RankDef":363,"ScoreDef":844196,"RankSup":997,"ScoreSup":5309,"RankTotal":644,"ScoreTotal":934358,"ID":699321518,"Name":"cado","NumVillages":7,"Points":24074,"Rank":871,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699321518","BestRank":871,"BestRankAt":"2023-02-15T06:22:53.373527Z","MostPoints":24074,"MostPointsAt":"2023-02-15T06:22:53.373527Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373527Z","LastActivityAt":"2023-02-15T06:22:53.373527Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374042Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":149,"ScoreAtt":2065610,"RankDef":876,"ScoreDef":175561,"RankSup":146,"ScoreSup":1527600,"RankTotal":244,"ScoreTotal":3768771,"ID":699323302,"Name":"zeta.reticuli","NumVillages":123,"Points":1196257,"Rank":114,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699323302","BestRank":114,"BestRankAt":"2023-02-15T06:22:53.373528Z","MostPoints":1196257,"MostPointsAt":"2023-02-15T06:22:53.373528Z","MostVillages":123,"MostVillagesAt":"2023-02-15T06:22:53.373528Z","LastActivityAt":"2023-02-15T06:22:53.373529Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374042Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1863,"ScoreAtt":107,"RankDef":1229,"ScoreDef":67727,"RankSup":0,"ScoreSup":0,"RankTotal":1513,"ScoreTotal":67834,"ID":699323781,"Name":"bogdan0811","NumVillages":1,"Points":4498,"Rank":1369,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699323781","BestRank":1369,"BestRankAt":"2023-02-15T06:22:53.373529Z","MostPoints":4498,"MostPointsAt":"2023-02-15T06:22:53.37353Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373529Z","LastActivityAt":"2023-02-15T06:22:53.37353Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374043Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1716,"ScoreAtt":494,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2353,"ScoreTotal":494,"ID":699325506,"Name":"CareHoster","NumVillages":1,"Points":2711,"Rank":1566,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699325506","BestRank":1566,"BestRankAt":"2023-02-15T06:22:53.37353Z","MostPoints":2711,"MostPointsAt":"2023-02-15T06:22:53.373531Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373531Z","LastActivityAt":"2023-02-15T06:22:53.373531Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374043Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1433,"ScoreAtt":3470,"RankDef":1193,"ScoreDef":74273,"RankSup":1131,"ScoreSup":1369,"RankTotal":1465,"ScoreTotal":79112,"ID":699326171,"Name":"SlashOfDark","NumVillages":1,"Points":8043,"Rank":1153,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699326171","BestRank":1153,"BestRankAt":"2023-02-15T06:22:53.373532Z","MostPoints":8043,"MostPointsAt":"2023-02-15T06:22:53.373532Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373532Z","LastActivityAt":"2023-02-15T06:22:53.373532Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1919,"ScoreAtt":38,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2478,"ScoreTotal":38,"ID":699330765,"Name":"Lady Basia408","NumVillages":1,"Points":125,"Rank":2436,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699330765","BestRank":2436,"BestRankAt":"2023-02-15T06:22:53.373533Z","MostPoints":125,"MostPointsAt":"2023-02-15T06:22:53.373533Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373533Z","LastActivityAt":"2023-02-15T06:22:53.373533Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":103,"ScoreAtt":3021963,"RankDef":7,"ScoreDef":27764621,"RankSup":308,"ScoreSup":506130,"RankTotal":12,"ScoreTotal":31292714,"ID":699333701,"Name":"KrĂłl Fabian*","NumVillages":73,"Points":500992,"Rank":269,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699333701","BestRank":269,"BestRankAt":"2023-02-15T06:22:53.373534Z","MostPoints":500992,"MostPointsAt":"2023-02-15T06:22:53.373535Z","MostVillages":73,"MostVillagesAt":"2023-02-15T06:22:53.373534Z","LastActivityAt":"2023-02-15T06:22:53.373535Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374045Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1697,"ScoreAtt":593,"RankDef":1476,"ScoreDef":36257,"RankSup":0,"ScoreSup":0,"RankTotal":1712,"ScoreTotal":36850,"ID":699336679,"Name":"Raissa","NumVillages":1,"Points":499,"Rank":2032,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699336679","BestRank":2032,"BestRankAt":"2023-02-15T06:22:53.373535Z","MostPoints":499,"MostPointsAt":"2023-02-15T06:22:53.373536Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373536Z","LastActivityAt":"2023-02-15T06:22:53.373536Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374045Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":92,"ScoreAtt":3516597,"RankDef":383,"ScoreDef":794105,"RankSup":29,"ScoreSup":4709176,"RankTotal":83,"ScoreTotal":9019878,"ID":699336777,"Name":"Elsche x Astaroth","NumVillages":114,"Points":1041616,"Rank":137,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699336777","BestRank":137,"BestRankAt":"2023-02-15T06:22:53.373537Z","MostPoints":1041616,"MostPointsAt":"2023-02-15T06:22:53.373537Z","MostVillages":114,"MostVillagesAt":"2023-02-15T06:22:53.373537Z","LastActivityAt":"2023-02-15T06:22:53.373537Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374046Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1757,"ScoreAtt":311,"RankDef":2496,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2379,"ScoreTotal":313,"ID":699339594,"Name":"665783847","NumVillages":1,"Points":5293,"Rank":1311,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699339594","BestRank":1311,"BestRankAt":"2023-02-15T06:22:53.373538Z","MostPoints":5293,"MostPointsAt":"2023-02-15T06:22:53.373538Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373538Z","LastActivityAt":"2023-02-15T06:22:53.373538Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374046Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1631,"ScoreAtt":998,"RankDef":213,"ScoreDef":1787465,"RankSup":670,"ScoreSup":61136,"RankTotal":428,"ScoreTotal":1849599,"ID":699341889,"Name":"Rafer","NumVillages":1,"Points":6355,"Rank":1253,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699341889","BestRank":1253,"BestRankAt":"2023-02-15T06:22:53.373539Z","MostPoints":6355,"MostPointsAt":"2023-02-15T06:22:53.373539Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373539Z","LastActivityAt":"2023-02-15T06:22:53.37354Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374047Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":132,"ScoreAtt":2318941,"RankDef":13,"ScoreDef":18919038,"RankSup":9,"ScoreSup":8904160,"RankTotal":14,"ScoreTotal":30142139,"ID":699342219,"Name":"BLACK15","NumVillages":240,"Points":2279254,"Rank":36,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699342219","BestRank":36,"BestRankAt":"2023-02-15T06:22:53.37354Z","MostPoints":2279254,"MostPointsAt":"2023-02-15T06:22:53.373541Z","MostVillages":240,"MostVillagesAt":"2023-02-15T06:22:53.373541Z","LastActivityAt":"2023-02-15T06:22:53.373541Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374047Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1982,"ScoreAtt":5,"RankDef":1910,"ScoreDef":7666,"RankSup":713,"ScoreSup":44450,"RankTotal":1601,"ScoreTotal":52121,"ID":699343887,"Name":"daniel420","NumVillages":6,"Points":21624,"Rank":894,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699343887","BestRank":894,"BestRankAt":"2023-02-15T06:22:53.373542Z","MostPoints":21624,"MostPointsAt":"2023-02-15T06:22:53.373542Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.373542Z","LastActivityAt":"2023-02-15T06:22:53.373542Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374048Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699345087,"Name":"Elendila","NumVillages":1,"Points":26,"Rank":2709,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699345087","BestRank":2709,"BestRankAt":"2023-02-15T06:22:53.373543Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373543Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373543Z","LastActivityAt":"2023-02-15T06:22:53.373543Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374048Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":352,"ScoreAtt":689735,"RankDef":1153,"ScoreDef":82785,"RankSup":956,"ScoreSup":7611,"RankTotal":694,"ScoreTotal":780131,"ID":699346267,"Name":"yaruciak1","NumVillages":1,"Points":26,"Rank":2710,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699346267","BestRank":2710,"BestRankAt":"2023-02-15T06:22:53.373544Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373544Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373544Z","LastActivityAt":"2023-02-15T06:22:53.373545Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374049Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":337,"ScoreAtt":771728,"RankDef":1863,"ScoreDef":9650,"RankSup":371,"ScoreSup":362825,"RankTotal":579,"ScoreTotal":1144203,"ID":699346280,"Name":"yuri09","NumVillages":53,"Points":514742,"Rank":264,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699346280","BestRank":264,"BestRankAt":"2023-02-15T06:22:53.373545Z","MostPoints":514742,"MostPointsAt":"2023-02-15T06:22:53.373546Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.373545Z","LastActivityAt":"2023-02-15T06:22:53.373546Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374049Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":350,"ScoreAtt":692456,"RankDef":740,"ScoreDef":247629,"RankSup":748,"ScoreSup":36845,"RankTotal":624,"ScoreTotal":976930,"ID":699347951,"Name":"abadon666","NumVillages":61,"Points":473939,"Rank":277,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699347951","BestRank":277,"BestRankAt":"2023-02-15T06:22:53.373546Z","MostPoints":473939,"MostPointsAt":"2023-02-15T06:22:53.373547Z","MostVillages":61,"MostVillagesAt":"2023-02-15T06:22:53.373547Z","LastActivityAt":"2023-02-15T06:22:53.373547Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2146,"ScoreDef":2003,"RankSup":0,"ScoreSup":0,"RankTotal":2247,"ScoreTotal":2003,"ID":699351046,"Name":"tomektonkiel","NumVillages":2,"Points":7964,"Rank":1161,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699351046","BestRank":1161,"BestRankAt":"2023-02-15T06:22:53.373548Z","MostPoints":7964,"MostPointsAt":"2023-02-15T06:22:53.373548Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373548Z","LastActivityAt":"2023-02-15T06:22:53.373548Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":282,"ScoreAtt":991801,"RankDef":1662,"ScoreDef":21382,"RankSup":407,"ScoreSup":308431,"RankTotal":532,"ScoreTotal":1321614,"ID":699351301,"Name":"Sir ItWasntMe","NumVillages":101,"Points":932020,"Rank":157,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699351301","BestRank":157,"BestRankAt":"2023-02-15T06:22:53.373549Z","MostPoints":932020,"MostPointsAt":"2023-02-15T06:22:53.373549Z","MostVillages":101,"MostVillagesAt":"2023-02-15T06:22:53.373549Z","LastActivityAt":"2023-02-15T06:22:53.37355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374051Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":734,"ScoreAtt":110490,"RankDef":200,"ScoreDef":1883590,"RankSup":231,"ScoreSup":765735,"RankTotal":313,"ScoreTotal":2759815,"ID":699355601,"Name":"piast123","NumVillages":17,"Points":97824,"Rank":546,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699355601","BestRank":546,"BestRankAt":"2023-02-15T06:22:53.37355Z","MostPoints":97824,"MostPointsAt":"2023-02-15T06:22:53.373551Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.37355Z","LastActivityAt":"2023-02-15T06:22:53.373551Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374051Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699355948,"Name":"hmc.","NumVillages":1,"Points":38,"Rank":2611,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699355948","BestRank":2611,"BestRankAt":"2023-02-15T06:22:53.373551Z","MostPoints":38,"MostPointsAt":"2023-02-15T06:22:53.373552Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373552Z","LastActivityAt":"2023-02-15T06:22:53.373552Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2222,"ScoreDef":854,"RankSup":0,"ScoreSup":0,"RankTotal":2313,"ScoreTotal":854,"ID":699356102,"Name":"streak2k12","NumVillages":1,"Points":2159,"Rank":1635,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699356102","BestRank":1635,"BestRankAt":"2023-02-15T06:22:53.373553Z","MostPoints":2159,"MostPointsAt":"2023-02-15T06:22:53.373553Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373553Z","LastActivityAt":"2023-02-15T06:22:53.373553Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":482,"ScoreAtt":386549,"RankDef":1029,"ScoreDef":116344,"RankSup":1276,"ScoreSup":61,"RankTotal":842,"ScoreTotal":502954,"ID":699356968,"Name":"Heui","NumVillages":27,"Points":127242,"Rank":496,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699356968","BestRank":496,"BestRankAt":"2023-02-15T06:22:53.373554Z","MostPoints":127242,"MostPointsAt":"2023-02-15T06:22:53.373554Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.373554Z","LastActivityAt":"2023-02-15T06:22:53.373554Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699360521,"Name":"NajlepszyZiomekWeWsi","NumVillages":1,"Points":135,"Rank":2404,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699360521","BestRank":2404,"BestRankAt":"2023-02-15T06:22:53.373555Z","MostPoints":135,"MostPointsAt":"2023-02-15T06:22:53.373556Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373555Z","LastActivityAt":"2023-02-15T06:22:53.373556Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":19,"ScoreAtt":8198443,"RankDef":1,"ScoreDef":60221467,"RankSup":109,"ScoreSup":2037574,"RankTotal":1,"ScoreTotal":70457484,"ID":699364813,"Name":"Warzywa Style","NumVillages":149,"Points":1384730,"Rank":85,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699364813","BestRank":85,"BestRankAt":"2023-02-15T06:22:53.373556Z","MostPoints":1384730,"MostPointsAt":"2023-02-15T06:22:53.373557Z","MostVillages":149,"MostVillagesAt":"2023-02-15T06:22:53.373557Z","LastActivityAt":"2023-02-15T06:22:53.373557Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374054Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":749,"ScoreDef":242627,"RankSup":0,"ScoreSup":0,"RankTotal":1066,"ScoreTotal":242627,"ID":699366937,"Name":"Mr.SoLo","NumVillages":1,"Points":551,"Rank":2005,"TribeID":206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699366937","BestRank":2005,"BestRankAt":"2023-02-15T06:22:53.373558Z","MostPoints":551,"MostPointsAt":"2023-02-15T06:22:53.373558Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373558Z","LastActivityAt":"2023-02-15T06:22:53.373558Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374054Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":62,"ScoreAtt":4409587,"RankDef":5,"ScoreDef":38812934,"RankSup":154,"ScoreSup":1455173,"RankTotal":9,"ScoreTotal":44677694,"ID":699368887,"Name":"Tomi77","NumVillages":222,"Points":1972955,"Rank":48,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699368887","BestRank":48,"BestRankAt":"2023-02-15T06:22:53.373559Z","MostPoints":1972955,"MostPointsAt":"2023-02-15T06:22:53.373559Z","MostVillages":222,"MostVillagesAt":"2023-02-15T06:22:53.373559Z","LastActivityAt":"2023-02-15T06:22:53.373559Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374055Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1352,"ScoreAtt":5260,"RankDef":412,"ScoreDef":715187,"RankSup":446,"ScoreSup":234957,"RankTotal":640,"ScoreTotal":955404,"ID":699372829,"Name":"4 ewelina","NumVillages":11,"Points":18141,"Rank":946,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699372829","BestRank":946,"BestRankAt":"2023-02-15T06:22:53.37356Z","MostPoints":18141,"MostPointsAt":"2023-02-15T06:22:53.37356Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.37356Z","LastActivityAt":"2023-02-15T06:22:53.373561Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374055Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":782,"ScoreAtt":87942,"RankDef":731,"ScoreDef":254337,"RankSup":674,"ScoreSup":59537,"RankTotal":914,"ScoreTotal":401816,"ID":699373225,"Name":"miniuk","NumVillages":2,"Points":5237,"Rank":1314,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699373225","BestRank":1314,"BestRankAt":"2023-02-15T06:22:53.373561Z","MostPoints":5237,"MostPointsAt":"2023-02-15T06:22:53.373562Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373562Z","LastActivityAt":"2023-02-15T06:22:53.373562Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":873,"ScoreAtt":57303,"RankDef":1584,"ScoreDef":26525,"RankSup":114,"ScoreSup":1960765,"RankTotal":399,"ScoreTotal":2044593,"ID":699373599,"Name":"Sarna","NumVillages":93,"Points":712676,"Rank":201,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699373599","BestRank":201,"BestRankAt":"2023-02-15T06:22:53.373563Z","MostPoints":712676,"MostPointsAt":"2023-02-15T06:22:53.373563Z","MostVillages":93,"MostVillagesAt":"2023-02-15T06:22:53.373563Z","LastActivityAt":"2023-02-15T06:22:53.373563Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":767,"ScoreAtt":94263,"RankDef":1480,"ScoreDef":36235,"RankSup":1395,"ScoreSup":2,"RankTotal":1296,"ScoreTotal":130500,"ID":699375903,"Name":"Steven","NumVillages":1,"Points":2154,"Rank":1637,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699375903","BestRank":1637,"BestRankAt":"2023-02-15T06:22:53.373564Z","MostPoints":2154,"MostPointsAt":"2023-02-15T06:22:53.373564Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373564Z","LastActivityAt":"2023-02-15T06:22:53.373564Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":500,"ScoreAtt":348981,"RankDef":1234,"ScoreDef":66497,"RankSup":780,"ScoreSup":29719,"RankTotal":874,"ScoreTotal":445197,"ID":699377151,"Name":"Hindukusz","NumVillages":15,"Points":99555,"Rank":541,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699377151","BestRank":541,"BestRankAt":"2023-02-15T06:22:53.373565Z","MostPoints":99555,"MostPointsAt":"2023-02-15T06:22:53.373565Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.373565Z","LastActivityAt":"2023-02-15T06:22:53.373566Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":788,"ScoreAtt":86084,"RankDef":1772,"ScoreDef":13968,"RankSup":553,"ScoreSup":129968,"RankTotal":1089,"ScoreTotal":230020,"ID":699377401,"Name":"stalowyhetzer","NumVillages":13,"Points":80758,"Rank":583,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699377401","BestRank":583,"BestRankAt":"2023-02-15T06:22:53.373566Z","MostPoints":80758,"MostPointsAt":"2023-02-15T06:22:53.373567Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.373566Z","LastActivityAt":"2023-02-15T06:22:53.373567Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":284,"ScoreAtt":989301,"RankDef":931,"ScoreDef":149757,"RankSup":408,"ScoreSup":304709,"RankTotal":505,"ScoreTotal":1443767,"ID":699379895,"Name":"Cet4boN","NumVillages":68,"Points":602962,"Rank":238,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699379895","BestRank":238,"BestRankAt":"2023-02-15T06:22:53.373568Z","MostPoints":602962,"MostPointsAt":"2023-02-15T06:22:53.373568Z","MostVillages":68,"MostVillagesAt":"2023-02-15T06:22:53.373568Z","LastActivityAt":"2023-02-15T06:22:53.373568Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":147,"ScoreAtt":2104482,"RankDef":723,"ScoreDef":260373,"RankSup":44,"ScoreSup":3642430,"RankTotal":151,"ScoreTotal":6007285,"ID":699380607,"Name":"Dejv.oldplyr","NumVillages":124,"Points":1214867,"Rank":108,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699380607","BestRank":108,"BestRankAt":"2023-02-15T06:22:53.373569Z","MostPoints":1214867,"MostPointsAt":"2023-02-15T06:22:53.373569Z","MostVillages":124,"MostVillagesAt":"2023-02-15T06:22:53.373569Z","LastActivityAt":"2023-02-15T06:22:53.373569Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":373,"ScoreAtt":628236,"RankDef":1164,"ScoreDef":80478,"RankSup":1091,"ScoreSup":2104,"RankTotal":724,"ScoreTotal":710818,"ID":699380621,"Name":"fajterooo","NumVillages":5,"Points":49668,"Rank":695,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699380621","BestRank":695,"BestRankAt":"2023-02-15T06:22:53.37357Z","MostPoints":49668,"MostPointsAt":"2023-02-15T06:22:53.37357Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.37357Z","LastActivityAt":"2023-02-15T06:22:53.373571Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699380730,"Name":"marart2","NumVillages":1,"Points":53,"Rank":2571,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699380730","BestRank":2571,"BestRankAt":"2023-02-15T06:22:53.373571Z","MostPoints":53,"MostPointsAt":"2023-02-15T06:22:53.373572Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373571Z","LastActivityAt":"2023-02-15T06:22:53.373572Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":47,"ScoreAtt":5012098,"RankDef":93,"ScoreDef":3711282,"RankSup":51,"ScoreSup":3324324,"RankTotal":65,"ScoreTotal":12047704,"ID":699382126,"Name":"TuniosƂaw","NumVillages":168,"Points":1623658,"Rank":71,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699382126","BestRank":71,"BestRankAt":"2023-02-15T06:22:53.373572Z","MostPoints":1623658,"MostPointsAt":"2023-02-15T06:22:53.373573Z","MostVillages":168,"MostVillagesAt":"2023-02-15T06:22:53.373573Z","LastActivityAt":"2023-02-15T06:22:53.373573Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":502,"ScoreAtt":346073,"RankDef":1603,"ScoreDef":25442,"RankSup":175,"ScoreSup":1244058,"RankTotal":474,"ScoreTotal":1615573,"ID":699383121,"Name":"Falco11","NumVillages":43,"Points":323152,"Rank":346,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699383121","BestRank":346,"BestRankAt":"2023-02-15T06:22:53.373574Z","MostPoints":323152,"MostPointsAt":"2023-02-15T06:22:53.373574Z","MostVillages":43,"MostVillagesAt":"2023-02-15T06:22:53.373574Z","LastActivityAt":"2023-02-15T06:22:53.373574Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374061Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":101,"ScoreAtt":3066699,"RankDef":75,"ScoreDef":4681464,"RankSup":177,"ScoreSup":1176448,"RankTotal":84,"ScoreTotal":8924611,"ID":699383279,"Name":"bax8009","NumVillages":145,"Points":1252123,"Rank":98,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699383279","BestRank":98,"BestRankAt":"2023-02-15T06:22:53.373575Z","MostPoints":1252123,"MostPointsAt":"2023-02-15T06:22:53.373575Z","MostVillages":145,"MostVillagesAt":"2023-02-15T06:22:53.373575Z","LastActivityAt":"2023-02-15T06:22:53.373576Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374061Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":540,"ScoreAtt":297224,"RankDef":408,"ScoreDef":730120,"RankSup":477,"ScoreSup":191587,"RankTotal":552,"ScoreTotal":1218931,"ID":699385139,"Name":"gotkamil","NumVillages":22,"Points":180227,"Rank":433,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699385139","BestRank":433,"BestRankAt":"2023-02-15T06:22:53.373579Z","MostPoints":180227,"MostPointsAt":"2023-02-15T06:22:53.37358Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.37358Z","LastActivityAt":"2023-02-15T06:22:53.37358Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374062Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":329,"ScoreAtt":798009,"RankDef":759,"ScoreDef":235778,"RankSup":757,"ScoreSup":34024,"RankTotal":602,"ScoreTotal":1067811,"ID":699390457,"Name":"SirSin X","NumVillages":1,"Points":134,"Rank":2407,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699390457","BestRank":2407,"BestRankAt":"2023-02-15T06:22:53.373581Z","MostPoints":134,"MostPointsAt":"2023-02-15T06:22:53.373581Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373581Z","LastActivityAt":"2023-02-15T06:22:53.373581Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374062Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1893,"ScoreAtt":57,"RankDef":1233,"ScoreDef":66890,"RankSup":0,"ScoreSup":0,"RankTotal":1517,"ScoreTotal":66947,"ID":699391409,"Name":"frolunda63","NumVillages":1,"Points":243,"Rank":2231,"TribeID":1247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699391409","BestRank":2231,"BestRankAt":"2023-02-15T06:22:53.373582Z","MostPoints":243,"MostPointsAt":"2023-02-15T06:22:53.373582Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373582Z","LastActivityAt":"2023-02-15T06:22:53.373583Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374063Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":104,"ScoreAtt":3008669,"RankDef":160,"ScoreDef":2368728,"RankSup":254,"ScoreSup":678200,"RankTotal":147,"ScoreTotal":6055597,"ID":699393742,"Name":"DeanMiles","NumVillages":79,"Points":707524,"Rank":203,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699393742","BestRank":203,"BestRankAt":"2023-02-15T06:22:53.373583Z","MostPoints":707524,"MostPointsAt":"2023-02-15T06:22:53.373584Z","MostVillages":79,"MostVillagesAt":"2023-02-15T06:22:53.373583Z","LastActivityAt":"2023-02-15T06:22:53.373584Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374063Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":753,"ScoreAtt":101240,"RankDef":1639,"ScoreDef":23186,"RankSup":693,"ScoreSup":52009,"RankTotal":1197,"ScoreTotal":176435,"ID":699393759,"Name":"Tekson1","NumVillages":23,"Points":146931,"Rank":470,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699393759","BestRank":470,"BestRankAt":"2023-02-15T06:22:53.373584Z","MostPoints":146931,"MostPointsAt":"2023-02-15T06:22:53.373585Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.373585Z","LastActivityAt":"2023-02-15T06:22:53.373585Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374064Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1560,"ScoreAtt":1750,"RankDef":1695,"ScoreDef":19157,"RankSup":1352,"ScoreSup":5,"RankTotal":1860,"ScoreTotal":20912,"ID":699396429,"Name":"obywateldb","NumVillages":8,"Points":14347,"Rank":1008,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699396429","BestRank":1008,"BestRankAt":"2023-02-15T06:22:53.373586Z","MostPoints":14347,"MostPointsAt":"2023-02-15T06:22:53.373586Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.373586Z","LastActivityAt":"2023-02-15T06:22:53.373586Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374064Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699397280,"Name":"gggg1989","NumVillages":1,"Points":26,"Rank":2711,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699397280","BestRank":2711,"BestRankAt":"2023-02-15T06:22:53.373587Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373587Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373587Z","LastActivityAt":"2023-02-15T06:22:53.373588Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374065Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699399386,"Name":"Pablo Escobar-.","NumVillages":1,"Points":26,"Rank":2712,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699399386","BestRank":2712,"BestRankAt":"2023-02-15T06:22:53.373588Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373589Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373588Z","LastActivityAt":"2023-02-15T06:22:53.373589Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374065Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1807,"ScoreAtt":186,"RankDef":2445,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2403,"ScoreTotal":196,"ID":699401083,"Name":"Sir Spiro","NumVillages":1,"Points":2074,"Rank":1645,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699401083","BestRank":1645,"BestRankAt":"2023-02-15T06:22:53.373589Z","MostPoints":2074,"MostPointsAt":"2023-02-15T06:22:53.37359Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37359Z","LastActivityAt":"2023-02-15T06:22:53.37359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374066Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":174,"ScoreAtt":1822607,"RankDef":1378,"ScoreDef":47710,"RankSup":285,"ScoreSup":573852,"RankTotal":352,"ScoreTotal":2444169,"ID":699402816,"Name":"Luxipux","NumVillages":52,"Points":515905,"Rank":262,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699402816","BestRank":262,"BestRankAt":"2023-02-15T06:22:53.373591Z","MostPoints":515905,"MostPointsAt":"2023-02-15T06:22:53.373591Z","MostVillages":52,"MostVillagesAt":"2023-02-15T06:22:53.373591Z","LastActivityAt":"2023-02-15T06:22:53.373591Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374066Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1777,"ScoreAtt":268,"RankDef":1462,"ScoreDef":37135,"RankSup":1345,"ScoreSup":7,"RankTotal":1706,"ScoreTotal":37410,"ID":699405877,"Name":"DzikiDzik","NumVillages":1,"Points":132,"Rank":2415,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699405877","BestRank":2415,"BestRankAt":"2023-02-15T06:22:53.373592Z","MostPoints":132,"MostPointsAt":"2023-02-15T06:22:53.373592Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373592Z","LastActivityAt":"2023-02-15T06:22:53.373592Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699406101,"Name":"HoroeX","NumVillages":1,"Points":742,"Rank":1941,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406101","BestRank":1941,"BestRankAt":"2023-02-15T06:22:53.373593Z","MostPoints":742,"MostPointsAt":"2023-02-15T06:22:53.373593Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373593Z","LastActivityAt":"2023-02-15T06:22:53.373594Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":492,"ScoreAtt":369812,"RankDef":266,"ScoreDef":1392482,"RankSup":708,"ScoreSup":45769,"RankTotal":437,"ScoreTotal":1808063,"ID":699406247,"Name":"Uaschitschun","NumVillages":14,"Points":71092,"Rank":609,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406247","BestRank":609,"BestRankAt":"2023-02-15T06:22:53.373594Z","MostPoints":71092,"MostPointsAt":"2023-02-15T06:22:53.373595Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.373595Z","LastActivityAt":"2023-02-15T06:22:53.373595Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374068Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":729,"ScoreAtt":111726,"RankDef":1387,"ScoreDef":46006,"RankSup":1098,"ScoreSup":1951,"RankTotal":1231,"ScoreTotal":159683,"ID":699406750,"Name":"mAcIeK 1988","NumVillages":28,"Points":277398,"Rank":363,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406750","BestRank":363,"BestRankAt":"2023-02-15T06:22:53.373596Z","MostPoints":277398,"MostPointsAt":"2023-02-15T06:22:53.373596Z","MostVillages":28,"MostVillagesAt":"2023-02-15T06:22:53.373596Z","LastActivityAt":"2023-02-15T06:22:53.373596Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374068Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":275,"ScoreAtt":1021678,"RankDef":78,"ScoreDef":4420245,"RankSup":989,"ScoreSup":5744,"RankTotal":169,"ScoreTotal":5447667,"ID":699406776,"Name":"Maczo - Pieczarz - Ɓobuz","NumVillages":22,"Points":97390,"Rank":547,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406776","BestRank":547,"BestRankAt":"2023-02-15T06:22:53.373597Z","MostPoints":97390,"MostPointsAt":"2023-02-15T06:22:53.373597Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.373597Z","LastActivityAt":"2023-02-15T06:22:53.373597Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":452,"ScoreAtt":446744,"RankDef":239,"ScoreDef":1594207,"RankSup":447,"ScoreSup":234275,"RankTotal":372,"ScoreTotal":2275226,"ID":699408669,"Name":"Merr","NumVillages":0,"Points":0,"Rank":2985,"TribeID":430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699408669","BestRank":2985,"BestRankAt":"2023-02-15T06:22:53.373598Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373598Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373598Z","LastActivityAt":"2023-02-15T06:22:53.373599Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1110,"ScoreAtt":17370,"RankDef":1132,"ScoreDef":87995,"RankSup":815,"ScoreSup":22460,"RankTotal":1304,"ScoreTotal":127825,"ID":699409420,"Name":"adam0218","NumVillages":1,"Points":721,"Rank":1944,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699409420","BestRank":1944,"BestRankAt":"2023-02-15T06:22:53.373599Z","MostPoints":721,"MostPointsAt":"2023-02-15T06:22:53.3736Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373599Z","LastActivityAt":"2023-02-15T06:22:53.3736Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":215,"ScoreAtt":1429545,"RankDef":1121,"ScoreDef":90702,"RankSup":216,"ScoreSup":824449,"RankTotal":364,"ScoreTotal":2344696,"ID":699413040,"Name":"ƚlimakYT","NumVillages":71,"Points":595732,"Rank":242,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699413040","BestRank":242,"BestRankAt":"2023-02-15T06:22:53.373601Z","MostPoints":595732,"MostPointsAt":"2023-02-15T06:22:53.373601Z","MostVillages":71,"MostVillagesAt":"2023-02-15T06:22:53.373601Z","LastActivityAt":"2023-02-15T06:22:53.373601Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":817,"ScoreAtt":74077,"RankDef":243,"ScoreDef":1546850,"RankSup":501,"ScoreSup":172813,"RankTotal":439,"ScoreTotal":1793740,"ID":699413581,"Name":"DonRocco","NumVillages":16,"Points":102714,"Rank":532,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699413581","BestRank":532,"BestRankAt":"2023-02-15T06:22:53.373602Z","MostPoints":102714,"MostPointsAt":"2023-02-15T06:22:53.373602Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.373602Z","LastActivityAt":"2023-02-15T06:22:53.373602Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374071Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":908,"ScoreAtt":48397,"RankDef":1586,"ScoreDef":26437,"RankSup":0,"ScoreSup":0,"RankTotal":1481,"ScoreTotal":74834,"ID":699419851,"Name":"191deto","NumVillages":1,"Points":6135,"Rank":1265,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699419851","BestRank":1265,"BestRankAt":"2023-02-15T06:22:53.373603Z","MostPoints":6135,"MostPointsAt":"2023-02-15T06:22:53.373603Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373603Z","LastActivityAt":"2023-02-15T06:22:53.373604Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374071Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1540,"ScoreDef":30176,"RankSup":0,"ScoreSup":0,"RankTotal":1771,"ScoreTotal":30176,"ID":699421735,"Name":"Henryk IV","NumVillages":1,"Points":6361,"Rank":1252,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699421735","BestRank":1252,"BestRankAt":"2023-02-15T06:22:53.373604Z","MostPoints":6361,"MostPointsAt":"2023-02-15T06:22:53.373605Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373604Z","LastActivityAt":"2023-02-15T06:22:53.373605Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374072Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1564,"ScoreAtt":1703,"RankDef":1085,"ScoreDef":97885,"RankSup":0,"ScoreSup":0,"RankTotal":1395,"ScoreTotal":99588,"ID":699423167,"Name":"Mishiu","NumVillages":1,"Points":3936,"Rank":1418,"TribeID":1651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699423167","BestRank":1418,"BestRankAt":"2023-02-15T06:22:53.373605Z","MostPoints":3936,"MostPointsAt":"2023-02-15T06:22:53.373606Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373606Z","LastActivityAt":"2023-02-15T06:22:53.373606Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374072Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1251,"ScoreAtt":8124,"RankDef":413,"ScoreDef":712454,"RankSup":1242,"ScoreSup":166,"RankTotal":719,"ScoreTotal":720744,"ID":699424741,"Name":"maciekz123","NumVillages":2,"Points":12860,"Rank":1032,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699424741","BestRank":1032,"BestRankAt":"2023-02-15T06:22:53.373607Z","MostPoints":12860,"MostPointsAt":"2023-02-15T06:22:53.373607Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373607Z","LastActivityAt":"2023-02-15T06:22:53.373607Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374073Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":227,"ScoreAtt":1306747,"RankDef":395,"ScoreDef":768631,"RankSup":290,"ScoreSup":564133,"RankTotal":331,"ScoreTotal":2639511,"ID":699425709,"Name":"Wieslaw Geralt","NumVillages":52,"Points":441583,"Rank":284,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699425709","BestRank":284,"BestRankAt":"2023-02-15T06:22:53.373608Z","MostPoints":441583,"MostPointsAt":"2023-02-15T06:22:53.373608Z","MostVillages":52,"MostVillagesAt":"2023-02-15T06:22:53.373608Z","LastActivityAt":"2023-02-15T06:22:53.373609Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374073Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2398,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2497,"ScoreTotal":22,"ID":699428898,"Name":"nortos17","NumVillages":1,"Points":126,"Rank":2432,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699428898","BestRank":2432,"BestRankAt":"2023-02-15T06:22:53.373609Z","MostPoints":126,"MostPointsAt":"2023-02-15T06:22:53.37361Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373609Z","LastActivityAt":"2023-02-15T06:22:53.37361Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374074Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":272,"ScoreAtt":1032662,"RankDef":726,"ScoreDef":258401,"RankSup":161,"ScoreSup":1354321,"RankTotal":330,"ScoreTotal":2645384,"ID":699429153,"Name":"Ɓazan","NumVillages":202,"Points":1823493,"Rank":57,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699429153","BestRank":57,"BestRankAt":"2023-02-15T06:22:53.37361Z","MostPoints":1823493,"MostPointsAt":"2023-02-15T06:22:53.373611Z","MostVillages":202,"MostVillagesAt":"2023-02-15T06:22:53.373611Z","LastActivityAt":"2023-02-15T06:22:53.373611Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374074Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1098,"ScoreAtt":18591,"RankDef":1204,"ScoreDef":72376,"RankSup":0,"ScoreSup":0,"RankTotal":1433,"ScoreTotal":90967,"ID":699429335,"Name":"Arda26 and Azdro","NumVillages":7,"Points":58098,"Rank":662,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699429335","BestRank":662,"BestRankAt":"2023-02-15T06:22:53.373612Z","MostPoints":58098,"MostPointsAt":"2023-02-15T06:22:53.373612Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373612Z","LastActivityAt":"2023-02-15T06:22:53.373612Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":74,"ScoreAtt":4092786,"RankDef":623,"ScoreDef":352558,"RankSup":264,"ScoreSup":644644,"RankTotal":182,"ScoreTotal":5089988,"ID":699431255,"Name":"MacioB1997","NumVillages":167,"Points":1481437,"Rank":79,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699431255","BestRank":79,"BestRankAt":"2023-02-15T06:22:53.373613Z","MostPoints":1481437,"MostPointsAt":"2023-02-15T06:22:53.373613Z","MostVillages":167,"MostVillagesAt":"2023-02-15T06:22:53.373613Z","LastActivityAt":"2023-02-15T06:22:53.373613Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699431590,"Name":"LokiPLN","NumVillages":1,"Points":224,"Rank":2265,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699431590","BestRank":2265,"BestRankAt":"2023-02-15T06:22:53.373614Z","MostPoints":224,"MostPointsAt":"2023-02-15T06:22:53.373615Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373614Z","LastActivityAt":"2023-02-15T06:22:53.373615Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374076Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":164,"ScoreAtt":1929045,"RankDef":475,"ScoreDef":561877,"RankSup":819,"ScoreSup":21559,"RankTotal":344,"ScoreTotal":2512481,"ID":699432672,"Name":"142klp3","NumVillages":83,"Points":799775,"Rank":180,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699432672","BestRank":180,"BestRankAt":"2023-02-15T06:22:53.373615Z","MostPoints":799775,"MostPointsAt":"2023-02-15T06:22:53.373616Z","MostVillages":83,"MostVillagesAt":"2023-02-15T06:22:53.373616Z","LastActivityAt":"2023-02-15T06:22:53.373616Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374076Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":148,"ScoreAtt":2095484,"RankDef":696,"ScoreDef":275453,"RankSup":107,"ScoreSup":2109192,"RankTotal":210,"ScoreTotal":4480129,"ID":699433558,"Name":"Guardian92","NumVillages":107,"Points":1012268,"Rank":144,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699433558","BestRank":144,"BestRankAt":"2023-02-15T06:22:53.373617Z","MostPoints":1012268,"MostPointsAt":"2023-02-15T06:22:53.373617Z","MostVillages":107,"MostVillagesAt":"2023-02-15T06:22:53.373617Z","LastActivityAt":"2023-02-15T06:22:53.373617Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374077Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1730,"ScoreAtt":434,"RankDef":1612,"ScoreDef":25041,"RankSup":0,"ScoreSup":0,"RankTotal":1815,"ScoreTotal":25475,"ID":699438389,"Name":"super hero","NumVillages":1,"Points":4082,"Rank":1403,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699438389","BestRank":1403,"BestRankAt":"2023-02-15T06:22:53.373618Z","MostPoints":4082,"MostPointsAt":"2023-02-15T06:22:53.373618Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373618Z","LastActivityAt":"2023-02-15T06:22:53.373618Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374077Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":470,"ScoreAtt":412568,"RankDef":1350,"ScoreDef":51402,"RankSup":856,"ScoreSup":16132,"RankTotal":856,"ScoreTotal":480102,"ID":699441366,"Name":"OdyseuszProFighter","NumVillages":40,"Points":355105,"Rank":321,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699441366","BestRank":321,"BestRankAt":"2023-02-15T06:22:53.373619Z","MostPoints":355105,"MostPointsAt":"2023-02-15T06:22:53.373619Z","MostVillages":40,"MostVillagesAt":"2023-02-15T06:22:53.373619Z","LastActivityAt":"2023-02-15T06:22:53.37362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":209,"ScoreAtt":1502012,"RankDef":10,"ScoreDef":21069128,"RankSup":75,"ScoreSup":2792275,"RankTotal":19,"ScoreTotal":25363415,"ID":699443920,"Name":"mooseloose","NumVillages":148,"Points":1196371,"Rank":113,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699443920","BestRank":113,"BestRankAt":"2023-02-15T06:22:53.37362Z","MostPoints":1196371,"MostPointsAt":"2023-02-15T06:22:53.373621Z","MostVillages":148,"MostVillagesAt":"2023-02-15T06:22:53.373621Z","LastActivityAt":"2023-02-15T06:22:53.373621Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":349,"ScoreAtt":697259,"RankDef":533,"ScoreDef":475479,"RankSup":551,"ScoreSup":130448,"RankTotal":537,"ScoreTotal":1303186,"ID":699448276,"Name":"Minerva","NumVillages":2,"Points":2999,"Rank":1529,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699448276","BestRank":1529,"BestRankAt":"2023-02-15T06:22:53.373622Z","MostPoints":2999,"MostPointsAt":"2023-02-15T06:22:53.373622Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.373622Z","LastActivityAt":"2023-02-15T06:22:53.373622Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374079Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2377,"ScoreDef":39,"RankSup":0,"ScoreSup":0,"RankTotal":2475,"ScoreTotal":39,"ID":699448843,"Name":"jarko123","NumVillages":1,"Points":1083,"Rank":1841,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699448843","BestRank":1841,"BestRankAt":"2023-02-15T06:22:53.373623Z","MostPoints":1083,"MostPointsAt":"2023-02-15T06:22:53.373623Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373623Z","LastActivityAt":"2023-02-15T06:22:53.373623Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374079Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1808,"ScoreDef":11922,"RankSup":1189,"ScoreSup":482,"RankTotal":1961,"ScoreTotal":12404,"ID":699449946,"Name":"rkot","NumVillages":1,"Points":3295,"Rank":1494,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699449946","BestRank":1494,"BestRankAt":"2023-02-15T06:22:53.373624Z","MostPoints":3295,"MostPointsAt":"2023-02-15T06:22:53.373624Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373624Z","LastActivityAt":"2023-02-15T06:22:53.373625Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1970,"ScoreAtt":9,"RankDef":2280,"ScoreDef":418,"RankSup":0,"ScoreSup":0,"RankTotal":2365,"ScoreTotal":427,"ID":699451338,"Name":"Jacaxxx","NumVillages":1,"Points":136,"Rank":2401,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699451338","BestRank":2401,"BestRankAt":"2023-02-15T06:22:53.373625Z","MostPoints":136,"MostPointsAt":"2023-02-15T06:22:53.373626Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373625Z","LastActivityAt":"2023-02-15T06:22:53.373626Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2278,"ScoreDef":423,"RankSup":0,"ScoreSup":0,"RankTotal":2367,"ScoreTotal":423,"ID":699456288,"Name":"kapittan","NumVillages":1,"Points":679,"Rank":1960,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699456288","BestRank":1960,"BestRankAt":"2023-02-15T06:22:53.373626Z","MostPoints":679,"MostPointsAt":"2023-02-15T06:22:53.373627Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373627Z","LastActivityAt":"2023-02-15T06:22:53.373627Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374081Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1881,"ScoreDef":8802,"RankSup":0,"ScoreSup":0,"RankTotal":2026,"ScoreTotal":8802,"ID":699469600,"Name":"wertywer","NumVillages":1,"Points":1031,"Rank":1851,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699469600","BestRank":1851,"BestRankAt":"2023-02-15T06:22:53.373628Z","MostPoints":1031,"MostPointsAt":"2023-02-15T06:22:53.373628Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373628Z","LastActivityAt":"2023-02-15T06:22:53.373628Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374081Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1760,"ScoreDef":14803,"RankSup":0,"ScoreSup":0,"RankTotal":1933,"ScoreTotal":14803,"ID":699470220,"Name":"monitor123aa","NumVillages":0,"Points":0,"Rank":2986,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699470220","BestRank":2986,"BestRankAt":"2023-02-15T06:22:53.373629Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373629Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373629Z","LastActivityAt":"2023-02-15T06:22:53.37363Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699471024,"Name":"Uparty1","NumVillages":1,"Points":634,"Rank":1976,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699471024","BestRank":1976,"BestRankAt":"2023-02-15T06:22:53.37363Z","MostPoints":634,"MostPointsAt":"2023-02-15T06:22:53.373631Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37363Z","LastActivityAt":"2023-02-15T06:22:53.373631Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1561,"ScoreAtt":1721,"RankDef":1526,"ScoreDef":31439,"RankSup":1134,"ScoreSup":1318,"RankTotal":1731,"ScoreTotal":34478,"ID":699471829,"Name":"witold2129","NumVillages":1,"Points":4734,"Rank":1352,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699471829","BestRank":1352,"BestRankAt":"2023-02-15T06:22:53.373631Z","MostPoints":4734,"MostPointsAt":"2023-02-15T06:22:53.373632Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373632Z","LastActivityAt":"2023-02-15T06:22:53.373632Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374083Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1280,"ScoreAtt":7089,"RankDef":2407,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2070,"ScoreTotal":7109,"ID":699477624,"Name":"Majin Buu","NumVillages":3,"Points":8014,"Rank":1155,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699477624","BestRank":1155,"BestRankAt":"2023-02-15T06:22:53.373633Z","MostPoints":8014,"MostPointsAt":"2023-02-15T06:22:53.373633Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373633Z","LastActivityAt":"2023-02-15T06:22:53.373633Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374083Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":820,"ScoreAtt":73080,"RankDef":432,"ScoreDef":659466,"RankSup":614,"ScoreSup":91260,"RankTotal":679,"ScoreTotal":823806,"ID":699478692,"Name":"Adas532","NumVillages":9,"Points":35350,"Rank":772,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699478692","BestRank":772,"BestRankAt":"2023-02-15T06:22:53.373634Z","MostPoints":35350,"MostPointsAt":"2023-02-15T06:22:53.373634Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.373634Z","LastActivityAt":"2023-02-15T06:22:53.373635Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699480768,"Name":"Stupid","NumVillages":1,"Points":45,"Rank":2597,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699480768","BestRank":2597,"BestRankAt":"2023-02-15T06:22:53.373635Z","MostPoints":45,"MostPointsAt":"2023-02-15T06:22:53.373636Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373635Z","LastActivityAt":"2023-02-15T06:22:53.373636Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":938,"ScoreAtt":42899,"RankDef":1217,"ScoreDef":69832,"RankSup":834,"ScoreSup":19135,"RankTotal":1291,"ScoreTotal":131866,"ID":699483429,"Name":"psychol16","NumVillages":18,"Points":111287,"Rank":519,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699483429","BestRank":519,"BestRankAt":"2023-02-15T06:22:53.373636Z","MostPoints":111287,"MostPointsAt":"2023-02-15T06:22:53.373637Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.373637Z","LastActivityAt":"2023-02-15T06:22:53.373637Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":90,"ScoreAtt":3586562,"RankDef":76,"ScoreDef":4677497,"RankSup":138,"ScoreSup":1569981,"RankTotal":79,"ScoreTotal":9834040,"ID":699485250,"Name":"TYLKODOBREDĆ»ISY","NumVillages":127,"Points":1101803,"Rank":124,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699485250","BestRank":124,"BestRankAt":"2023-02-15T06:22:53.373638Z","MostPoints":1101803,"MostPointsAt":"2023-02-15T06:22:53.373638Z","MostVillages":127,"MostVillagesAt":"2023-02-15T06:22:53.373638Z","LastActivityAt":"2023-02-15T06:22:53.373638Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":710,"ScoreAtt":123509,"RankDef":1043,"ScoreDef":111628,"RankSup":977,"ScoreSup":6217,"RankTotal":1068,"ScoreTotal":241354,"ID":699488108,"Name":"TwĂłj Kolega","NumVillages":14,"Points":115801,"Rank":509,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699488108","BestRank":509,"BestRankAt":"2023-02-15T06:22:53.373639Z","MostPoints":115801,"MostPointsAt":"2023-02-15T06:22:53.373639Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.373639Z","LastActivityAt":"2023-02-15T06:22:53.373639Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374086Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2481,"ScoreDef":6,"RankSup":0,"ScoreSup":0,"RankTotal":2555,"ScoreTotal":6,"ID":699490365,"Name":"bercion","NumVillages":1,"Points":1764,"Rank":1708,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699490365","BestRank":1708,"BestRankAt":"2023-02-15T06:22:53.37364Z","MostPoints":1764,"MostPointsAt":"2023-02-15T06:22:53.373641Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37364Z","LastActivityAt":"2023-02-15T06:22:53.373641Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374086Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":13,"ScoreAtt":10672067,"RankDef":18,"ScoreDef":16471367,"RankSup":168,"ScoreSup":1306590,"RankTotal":16,"ScoreTotal":28450024,"ID":699491076,"Name":"DaSilva2402","NumVillages":206,"Points":1911465,"Rank":53,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699491076","BestRank":53,"BestRankAt":"2023-02-15T06:22:53.373641Z","MostPoints":1911465,"MostPointsAt":"2023-02-15T06:22:53.373642Z","MostVillages":206,"MostVillagesAt":"2023-02-15T06:22:53.373642Z","LastActivityAt":"2023-02-15T06:22:53.373642Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374087Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699491827,"Name":"KsiÄ™ĆŒnaAnna","NumVillages":1,"Points":743,"Rank":1939,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699491827","BestRank":1939,"BestRankAt":"2023-02-15T06:22:53.373643Z","MostPoints":743,"MostPointsAt":"2023-02-15T06:22:53.373643Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373643Z","LastActivityAt":"2023-02-15T06:22:53.373643Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374087Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2218,"ScoreDef":899,"RankSup":0,"ScoreSup":0,"RankTotal":2309,"ScoreTotal":899,"ID":699491924,"Name":"Lejlu","NumVillages":1,"Points":245,"Rank":2229,"TribeID":1795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699491924","BestRank":2229,"BestRankAt":"2023-02-15T06:22:53.373644Z","MostPoints":245,"MostPointsAt":"2023-02-15T06:22:53.373644Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373644Z","LastActivityAt":"2023-02-15T06:22:53.373644Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374088Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699492120,"Name":"djraaa1","NumVillages":1,"Points":168,"Rank":2357,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699492120","BestRank":2357,"BestRankAt":"2023-02-15T06:22:53.373645Z","MostPoints":168,"MostPointsAt":"2023-02-15T06:22:53.373645Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373645Z","LastActivityAt":"2023-02-15T06:22:53.373646Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374088Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699492817,"Name":"CebulowyRycerz","NumVillages":1,"Points":94,"Rank":2497,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699492817","BestRank":2497,"BestRankAt":"2023-02-15T06:22:53.373646Z","MostPoints":94,"MostPointsAt":"2023-02-15T06:22:53.373647Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373646Z","LastActivityAt":"2023-02-15T06:22:53.373647Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1144,"ScoreAtt":14283,"RankDef":1708,"ScoreDef":18260,"RankSup":769,"ScoreSup":32479,"RankTotal":1529,"ScoreTotal":65022,"ID":699493750,"Name":"krychukozak","NumVillages":8,"Points":32693,"Rank":790,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699493750","BestRank":790,"BestRankAt":"2023-02-15T06:22:53.373648Z","MostPoints":32693,"MostPointsAt":"2023-02-15T06:22:53.373648Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.373648Z","LastActivityAt":"2023-02-15T06:22:53.373648Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1075,"ScoreAtt":20457,"RankDef":175,"ScoreDef":2107729,"RankSup":445,"ScoreSup":235307,"RankTotal":361,"ScoreTotal":2363493,"ID":699494480,"Name":"Azucar","NumVillages":15,"Points":129227,"Rank":495,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699494480","BestRank":495,"BestRankAt":"2023-02-15T06:22:53.373649Z","MostPoints":129227,"MostPointsAt":"2023-02-15T06:22:53.373649Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.373649Z","LastActivityAt":"2023-02-15T06:22:53.373649Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":221,"ScoreAtt":1338512,"RankDef":890,"ScoreDef":169239,"RankSup":42,"ScoreSup":3851849,"RankTotal":171,"ScoreTotal":5359600,"ID":699494488,"Name":"ScofieldTPS","NumVillages":123,"Points":1223901,"Rank":106,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699494488","BestRank":106,"BestRankAt":"2023-02-15T06:22:53.37365Z","MostPoints":1223901,"MostPointsAt":"2023-02-15T06:22:53.37365Z","MostVillages":123,"MostVillagesAt":"2023-02-15T06:22:53.37365Z","LastActivityAt":"2023-02-15T06:22:53.373651Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1679,"ScoreDef":19990,"RankSup":0,"ScoreSup":0,"RankTotal":1876,"ScoreTotal":19990,"ID":699498602,"Name":"Tymek1","NumVillages":0,"Points":0,"Rank":2987,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699498602","BestRank":2987,"BestRankAt":"2023-02-15T06:22:53.373651Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373652Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373651Z","LastActivityAt":"2023-02-15T06:22:53.373652Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374091Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1985,"ScoreAtt":4,"RankDef":1124,"ScoreDef":90225,"RankSup":1354,"ScoreSup":5,"RankTotal":1436,"ScoreTotal":90234,"ID":699501322,"Name":"Egwene","NumVillages":1,"Points":2946,"Rank":1535,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699501322","BestRank":1535,"BestRankAt":"2023-02-15T06:22:53.373652Z","MostPoints":2946,"MostPointsAt":"2023-02-15T06:22:53.373653Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373653Z","LastActivityAt":"2023-02-15T06:22:53.373653Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374091Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1071,"ScoreAtt":20717,"RankDef":1545,"ScoreDef":29953,"RankSup":0,"ScoreSup":0,"RankTotal":1610,"ScoreTotal":50670,"ID":699503079,"Name":"cinek3456","NumVillages":0,"Points":0,"Rank":2988,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699503079","BestRank":2988,"BestRankAt":"2023-02-15T06:22:53.373654Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373654Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373654Z","LastActivityAt":"2023-02-15T06:22:53.373654Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374092Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1036,"ScoreAtt":26021,"RankDef":1746,"ScoreDef":16108,"RankSup":0,"ScoreSup":0,"RankTotal":1668,"ScoreTotal":42129,"ID":699508363,"Name":"Myanmar","NumVillages":1,"Points":26,"Rank":2713,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699508363","BestRank":2713,"BestRankAt":"2023-02-15T06:22:53.373655Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.373655Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373655Z","LastActivityAt":"2023-02-15T06:22:53.373656Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374092Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":488,"ScoreAtt":376817,"RankDef":150,"ScoreDef":2552237,"RankSup":595,"ScoreSup":102111,"RankTotal":285,"ScoreTotal":3031165,"ID":699509239,"Name":"XMM Rudy 102","NumVillages":15,"Points":90155,"Rank":562,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699509239","BestRank":562,"BestRankAt":"2023-02-15T06:22:53.373656Z","MostPoints":90155,"MostPointsAt":"2023-02-15T06:22:53.373657Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.373656Z","LastActivityAt":"2023-02-15T06:22:53.373657Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1208,"ScoreAtt":10355,"RankDef":357,"ScoreDef":874078,"RankSup":620,"ScoreSup":88250,"RankTotal":629,"ScoreTotal":972683,"ID":699509284,"Name":"Lord Nc3dyh","NumVillages":5,"Points":20710,"Rank":905,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699509284","BestRank":905,"BestRankAt":"2023-02-15T06:22:53.373657Z","MostPoints":20710,"MostPointsAt":"2023-02-15T06:22:53.373658Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.373658Z","LastActivityAt":"2023-02-15T06:22:53.373658Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1377,"ScoreAtt":4613,"RankDef":1357,"ScoreDef":49928,"RankSup":903,"ScoreSup":11512,"RankTotal":1522,"ScoreTotal":66053,"ID":699510045,"Name":"BLACK SOLDI LP","NumVillages":4,"Points":18086,"Rank":949,"TribeID":1209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699510045","BestRank":949,"BestRankAt":"2023-02-15T06:22:53.373659Z","MostPoints":18086,"MostPointsAt":"2023-02-15T06:22:53.373659Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373659Z","LastActivityAt":"2023-02-15T06:22:53.373659Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374094Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":111,"ScoreAtt":2761492,"RankDef":466,"ScoreDef":571324,"RankSup":141,"ScoreSup":1557739,"RankTotal":191,"ScoreTotal":4890555,"ID":699510259,"Name":"Dulnik","NumVillages":93,"Points":706979,"Rank":204,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699510259","BestRank":204,"BestRankAt":"2023-02-15T06:22:53.37366Z","MostPoints":706979,"MostPointsAt":"2023-02-15T06:22:53.37366Z","MostVillages":93,"MostVillagesAt":"2023-02-15T06:22:53.37366Z","LastActivityAt":"2023-02-15T06:22:53.373661Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374095Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":665,"ScoreAtt":148003,"RankDef":1805,"ScoreDef":12134,"RankSup":0,"ScoreSup":0,"RankTotal":1229,"ScoreTotal":160137,"ID":699511295,"Name":"Raven000PL","NumVillages":21,"Points":111763,"Rank":517,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699511295","BestRank":517,"BestRankAt":"2023-02-15T06:22:53.373661Z","MostPoints":111763,"MostPointsAt":"2023-02-15T06:22:53.373662Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.373661Z","LastActivityAt":"2023-02-15T06:22:53.373662Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374095Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1784,"ScoreAtt":254,"RankDef":2164,"ScoreDef":1792,"RankSup":0,"ScoreSup":0,"RankTotal":2245,"ScoreTotal":2046,"ID":699511370,"Name":"brzydko.1","NumVillages":1,"Points":7408,"Rank":1193,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699511370","BestRank":1193,"BestRankAt":"2023-02-15T06:22:53.373662Z","MostPoints":7408,"MostPointsAt":"2023-02-15T06:22:53.373663Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373663Z","LastActivityAt":"2023-02-15T06:22:53.373663Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":12,"ScoreAtt":11458244,"RankDef":24,"ScoreDef":13375496,"RankSup":2,"ScoreSup":20061036,"RankTotal":7,"ScoreTotal":44894776,"ID":699513260,"Name":"Kuzyn Marek","NumVillages":361,"Points":3470872,"Rank":11,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699513260","BestRank":11,"BestRankAt":"2023-02-15T06:22:53.373664Z","MostPoints":3470872,"MostPointsAt":"2023-02-15T06:22:53.373664Z","MostVillages":361,"MostVillagesAt":"2023-02-15T06:22:53.373664Z","LastActivityAt":"2023-02-15T06:22:53.373664Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":512,"ScoreAtt":334459,"RankDef":1006,"ScoreDef":123787,"RankSup":155,"ScoreSup":1453641,"RankTotal":419,"ScoreTotal":1911887,"ID":699516250,"Name":"DuĆŒy Arek","NumVillages":3,"Points":8868,"Rank":1124,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699516250","BestRank":1124,"BestRankAt":"2023-02-15T06:22:53.373665Z","MostPoints":8868,"MostPointsAt":"2023-02-15T06:22:53.373665Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.373665Z","LastActivityAt":"2023-02-15T06:22:53.373665Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374097Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1650,"ScoreAtt":843,"RankDef":1561,"ScoreDef":28683,"RankSup":0,"ScoreSup":0,"RankTotal":1775,"ScoreTotal":29526,"ID":699516268,"Name":"krakusekk","NumVillages":5,"Points":39506,"Rank":744,"TribeID":557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699516268","BestRank":744,"BestRankAt":"2023-02-15T06:22:53.373666Z","MostPoints":39506,"MostPointsAt":"2023-02-15T06:22:53.373666Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.373666Z","LastActivityAt":"2023-02-15T06:22:53.373667Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374097Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1858,"ScoreAtt":114,"RankDef":1581,"ScoreDef":27327,"RankSup":0,"ScoreSup":0,"RankTotal":1795,"ScoreTotal":27441,"ID":699518384,"Name":"landhaus1","NumVillages":1,"Points":689,"Rank":1956,"TribeID":945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699518384","BestRank":1956,"BestRankAt":"2023-02-15T06:22:53.373667Z","MostPoints":689,"MostPointsAt":"2023-02-15T06:22:53.373668Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373668Z","LastActivityAt":"2023-02-15T06:22:53.373668Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374098Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1295,"ScoreAtt":6622,"RankDef":2364,"ScoreDef":52,"RankSup":0,"ScoreSup":0,"RankTotal":2079,"ScoreTotal":6674,"ID":699518454,"Name":"blatio","NumVillages":1,"Points":3307,"Rank":1492,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699518454","BestRank":1492,"BestRankAt":"2023-02-15T06:22:53.373669Z","MostPoints":3307,"MostPointsAt":"2023-02-15T06:22:53.373669Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373669Z","LastActivityAt":"2023-02-15T06:22:53.373669Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374098Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1644,"ScoreAtt":889,"RankDef":1257,"ScoreDef":62379,"RankSup":0,"ScoreSup":0,"RankTotal":1538,"ScoreTotal":63268,"ID":699520575,"Name":"Adamsoft","NumVillages":1,"Points":7994,"Rank":1157,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699520575","BestRank":1157,"BestRankAt":"2023-02-15T06:22:53.37367Z","MostPoints":7994,"MostPointsAt":"2023-02-15T06:22:53.37367Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.37367Z","LastActivityAt":"2023-02-15T06:22:53.37367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1134,"ScoreAtt":15521,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":1927,"ScoreTotal":15521,"ID":699522257,"Name":"LORDHerkules13","NumVillages":1,"Points":4379,"Rank":1381,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699522257","BestRank":1381,"BestRankAt":"2023-02-15T06:22:53.373671Z","MostPoints":4379,"MostPointsAt":"2023-02-15T06:22:53.373671Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373671Z","LastActivityAt":"2023-02-15T06:22:53.373672Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":402,"ScoreAtt":581020,"RankDef":1762,"ScoreDef":14783,"RankSup":365,"ScoreSup":376994,"RankTotal":628,"ScoreTotal":972797,"ID":699523631,"Name":"l2adziu","NumVillages":56,"Points":557941,"Rank":249,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699523631","BestRank":249,"BestRankAt":"2023-02-15T06:22:53.373672Z","MostPoints":557941,"MostPointsAt":"2023-02-15T06:22:53.373673Z","MostVillages":56,"MostVillagesAt":"2023-02-15T06:22:53.373672Z","LastActivityAt":"2023-02-15T06:22:53.373673Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3741Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":484,"ScoreAtt":385948,"RankDef":1921,"ScoreDef":7275,"RankSup":759,"ScoreSup":33643,"RankTotal":888,"ScoreTotal":426866,"ID":699524362,"Name":"Pioter007","NumVillages":54,"Points":263489,"Rank":371,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699524362","BestRank":371,"BestRankAt":"2023-02-15T06:22:53.373674Z","MostPoints":263489,"MostPointsAt":"2023-02-15T06:22:53.373674Z","MostVillages":54,"MostVillagesAt":"2023-02-15T06:22:53.373674Z","LastActivityAt":"2023-02-15T06:22:53.373674Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3741Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":442,"ScoreAtt":466309,"RankDef":1681,"ScoreDef":19902,"RankSup":261,"ScoreSup":651271,"RankTotal":584,"ScoreTotal":1137482,"ID":699524891,"Name":"Tomall78","NumVillages":68,"Points":473988,"Rank":276,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699524891","BestRank":276,"BestRankAt":"2023-02-15T06:22:53.373675Z","MostPoints":473988,"MostPointsAt":"2023-02-15T06:22:53.373675Z","MostVillages":68,"MostVillagesAt":"2023-02-15T06:22:53.373675Z","LastActivityAt":"2023-02-15T06:22:53.373675Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374101Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1632,"ScoreAtt":990,"RankDef":1187,"ScoreDef":75693,"RankSup":0,"ScoreSup":0,"RankTotal":1479,"ScoreTotal":76683,"ID":699530673,"Name":"Westor","NumVillages":5,"Points":24042,"Rank":872,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699530673","BestRank":872,"BestRankAt":"2023-02-15T06:22:53.373676Z","MostPoints":24042,"MostPointsAt":"2023-02-15T06:22:53.373676Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.373676Z","LastActivityAt":"2023-02-15T06:22:53.373677Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374101Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699535590,"Name":"lsjhjvdhgvfskhbsfv","NumVillages":1,"Points":208,"Rank":2288,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699535590","BestRank":2288,"BestRankAt":"2023-02-15T06:22:53.373677Z","MostPoints":208,"MostPointsAt":"2023-02-15T06:22:53.373678Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373677Z","LastActivityAt":"2023-02-15T06:22:53.373678Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374102Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1628,"ScoreAtt":1030,"RankDef":1588,"ScoreDef":26368,"RankSup":0,"ScoreSup":0,"RankTotal":1797,"ScoreTotal":27398,"ID":699541376,"Name":"Mr.P","NumVillages":4,"Points":11843,"Rank":1044,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699541376","BestRank":1044,"BestRankAt":"2023-02-15T06:22:53.373678Z","MostPoints":11843,"MostPointsAt":"2023-02-15T06:22:53.373679Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.373679Z","LastActivityAt":"2023-02-15T06:22:53.373679Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374102Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2343,"ScoreDef":107,"RankSup":0,"ScoreSup":0,"RankTotal":2439,"ScoreTotal":107,"ID":699542874,"Name":"Makss","NumVillages":0,"Points":0,"Rank":2989,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699542874","BestRank":2989,"BestRankAt":"2023-02-15T06:22:53.37368Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.37368Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.37368Z","LastActivityAt":"2023-02-15T06:22:53.37368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374103Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":928,"ScoreAtt":44744,"RankDef":1563,"ScoreDef":28615,"RankSup":0,"ScoreSup":0,"RankTotal":1485,"ScoreTotal":73359,"ID":699543968,"Name":"0nxss","NumVillages":0,"Points":0,"Rank":2990,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699543968","BestRank":2990,"BestRankAt":"2023-02-15T06:22:53.373681Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.373681Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.373681Z","LastActivityAt":"2023-02-15T06:22:53.373682Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374103Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1792,"ScoreAtt":233,"RankDef":515,"ScoreDef":497108,"RankSup":112,"ScoreSup":1983801,"RankTotal":349,"ScoreTotal":2481142,"ID":699545762,"Name":"Deornoth","NumVillages":7,"Points":29697,"Rank":819,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699545762","BestRank":819,"BestRankAt":"2023-02-15T06:22:53.373682Z","MostPoints":29697,"MostPointsAt":"2023-02-15T06:22:53.373683Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.373682Z","LastActivityAt":"2023-02-15T06:22:53.373683Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374104Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1570,"ScoreDef":28324,"RankSup":0,"ScoreSup":0,"RankTotal":1786,"ScoreTotal":28324,"ID":699545975,"Name":"Mistrzunio229","NumVillages":1,"Points":195,"Rank":2311,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699545975","BestRank":2311,"BestRankAt":"2023-02-15T06:22:53.373683Z","MostPoints":195,"MostPointsAt":"2023-02-15T06:22:53.373684Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.373684Z","LastActivityAt":"2023-02-15T06:22:53.373684Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.374104Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1282,"ScoreAtt":6983,"RankDef":1300,"ScoreDef":57682,"RankSup":0,"ScoreSup":0,"RankTotal":1531,"ScoreTotal":64665,"ID":699546317,"Name":"Sebko70","NumVillages":1,"Points":224,"Rank":2266,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699546317","BestRank":2266,"BestRankAt":"2023-02-15T06:22:53.454541Z","MostPoints":224,"MostPointsAt":"2023-02-15T06:22:53.454542Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454542Z","LastActivityAt":"2023-02-15T06:22:53.454542Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45527Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":509,"ScoreAtt":339100,"RankDef":210,"ScoreDef":1799870,"RankSup":434,"ScoreSup":248090,"RankTotal":357,"ScoreTotal":2387060,"ID":699548295,"Name":"zimny 11","NumVillages":6,"Points":37922,"Rank":752,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699548295","BestRank":752,"BestRankAt":"2023-02-15T06:22:53.454543Z","MostPoints":37922,"MostPointsAt":"2023-02-15T06:22:53.454544Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.454544Z","LastActivityAt":"2023-02-15T06:22:53.454544Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455273Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699548922,"Name":"Nooowka07","NumVillages":1,"Points":26,"Rank":2714,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699548922","BestRank":2714,"BestRankAt":"2023-02-15T06:22:53.454545Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454545Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454545Z","LastActivityAt":"2023-02-15T06:22:53.454545Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455275Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":828,"ScoreAtt":71358,"RankDef":570,"ScoreDef":407068,"RankSup":0,"ScoreSup":0,"RankTotal":857,"ScoreTotal":478426,"ID":699550876,"Name":"StopsoN7","NumVillages":15,"Points":76688,"Rank":594,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699550876","BestRank":594,"BestRankAt":"2023-02-15T06:22:53.454546Z","MostPoints":76688,"MostPointsAt":"2023-02-15T06:22:53.454547Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.454546Z","LastActivityAt":"2023-02-15T06:22:53.454547Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455277Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1238,"ScoreAtt":8803,"RankDef":2257,"ScoreDef":561,"RankSup":0,"ScoreSup":0,"RankTotal":2012,"ScoreTotal":9364,"ID":699551148,"Name":"pisior18","NumVillages":1,"Points":62,"Rank":2556,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699551148","BestRank":2556,"BestRankAt":"2023-02-15T06:22:53.454547Z","MostPoints":62,"MostPointsAt":"2023-02-15T06:22:53.454548Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454548Z","LastActivityAt":"2023-02-15T06:22:53.454548Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455278Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":530,"ScoreAtt":311220,"RankDef":228,"ScoreDef":1663559,"RankSup":237,"ScoreSup":750968,"RankTotal":322,"ScoreTotal":2725747,"ID":699552859,"Name":"Don Kalion","NumVillages":1,"Points":26,"Rank":2715,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699552859","BestRank":2715,"BestRankAt":"2023-02-15T06:22:53.454549Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454549Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454549Z","LastActivityAt":"2023-02-15T06:22:53.454549Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455279Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":881,"ScoreAtt":55212,"RankDef":1761,"ScoreDef":14796,"RankSup":1149,"ScoreSup":996,"RankTotal":1499,"ScoreTotal":71004,"ID":699554427,"Name":"Krejv95","NumVillages":1,"Points":26,"Rank":2716,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699554427","BestRank":2716,"BestRankAt":"2023-02-15T06:22:53.45455Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.45455Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45455Z","LastActivityAt":"2023-02-15T06:22:53.45455Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455281Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1324,"ScoreAtt":5871,"RankDef":1744,"ScoreDef":16218,"RankSup":619,"ScoreSup":88438,"RankTotal":1358,"ScoreTotal":110527,"ID":699556684,"Name":"Atryda","NumVillages":0,"Points":0,"Rank":2991,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699556684","BestRank":2991,"BestRankAt":"2023-02-15T06:22:53.454551Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454552Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454551Z","LastActivityAt":"2023-02-15T06:22:53.454552Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455283Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":732,"ScoreAtt":110609,"RankDef":461,"ScoreDef":594814,"RankSup":0,"ScoreSup":0,"RankTotal":730,"ScoreTotal":705423,"ID":699557165,"Name":"mmarcinho","NumVillages":1,"Points":26,"Rank":2717,"TribeID":1638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699557165","BestRank":2717,"BestRankAt":"2023-02-15T06:22:53.454553Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454553Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454553Z","LastActivityAt":"2023-02-15T06:22:53.454553Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455283Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":854,"ScoreAtt":62642,"RankDef":1321,"ScoreDef":55227,"RankSup":0,"ScoreSup":0,"RankTotal":1332,"ScoreTotal":117869,"ID":699560327,"Name":"Hartigan","NumVillages":2,"Points":14893,"Rank":997,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699560327","BestRank":997,"BestRankAt":"2023-02-15T06:22:53.454554Z","MostPoints":14893,"MostPointsAt":"2023-02-15T06:22:53.454554Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454554Z","LastActivityAt":"2023-02-15T06:22:53.454555Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699560963,"Name":"Sir NoToKredki","NumVillages":1,"Points":56,"Rank":2563,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699560963","BestRank":2563,"BestRankAt":"2023-02-15T06:22:53.454555Z","MostPoints":56,"MostPointsAt":"2023-02-15T06:22:53.454556Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454555Z","LastActivityAt":"2023-02-15T06:22:53.454556Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":691,"ScoreAtt":137319,"RankDef":118,"ScoreDef":3186252,"RankSup":579,"ScoreSup":108344,"RankTotal":259,"ScoreTotal":3431915,"ID":699562182,"Name":"diammyx3","NumVillages":5,"Points":19513,"Rank":928,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699562182","BestRank":928,"BestRankAt":"2023-02-15T06:22:53.454556Z","MostPoints":19513,"MostPointsAt":"2023-02-15T06:22:53.454557Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454557Z","LastActivityAt":"2023-02-15T06:22:53.454557Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1461,"ScoreAtt":3025,"RankDef":903,"ScoreDef":164644,"RankSup":1335,"ScoreSup":9,"RankTotal":1215,"ScoreTotal":167678,"ID":699562874,"Name":"hubertw25","NumVillages":7,"Points":39797,"Rank":741,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699562874","BestRank":741,"BestRankAt":"2023-02-15T06:22:53.454558Z","MostPoints":39797,"MostPointsAt":"2023-02-15T06:22:53.454558Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454558Z","LastActivityAt":"2023-02-15T06:22:53.454558Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455294Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699564303,"Name":"coreslaw","NumVillages":1,"Points":200,"Rank":2298,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699564303","BestRank":2298,"BestRankAt":"2023-02-15T06:22:53.454559Z","MostPoints":200,"MostPointsAt":"2023-02-15T06:22:53.454559Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454559Z","LastActivityAt":"2023-02-15T06:22:53.454559Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":181,"ScoreAtt":1731024,"RankDef":1636,"ScoreDef":23311,"RankSup":31,"ScoreSup":4608478,"RankTotal":140,"ScoreTotal":6362813,"ID":699567608,"Name":"Stanly156","NumVillages":163,"Points":1530527,"Rank":77,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699567608","BestRank":77,"BestRankAt":"2023-02-15T06:22:53.454561Z","MostPoints":1530527,"MostPointsAt":"2023-02-15T06:22:53.454561Z","MostVillages":163,"MostVillagesAt":"2023-02-15T06:22:53.454561Z","LastActivityAt":"2023-02-15T06:22:53.454561Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1705,"ScoreAtt":560,"RankDef":2202,"ScoreDef":1152,"RankSup":1186,"ScoreSup":532,"RankTotal":2235,"ScoreTotal":2244,"ID":699569800,"Name":"Lululu95","NumVillages":3,"Points":18958,"Rank":935,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699569800","BestRank":935,"BestRankAt":"2023-02-15T06:22:53.454562Z","MostPoints":18958,"MostPointsAt":"2023-02-15T06:22:53.454562Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454562Z","LastActivityAt":"2023-02-15T06:22:53.454562Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":107,"ScoreAtt":2937106,"RankDef":790,"ScoreDef":217860,"RankSup":544,"ScoreSup":134664,"RankTotal":267,"ScoreTotal":3289630,"ID":699573053,"Name":"MONAMI","NumVillages":106,"Points":1080784,"Rank":130,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699573053","BestRank":130,"BestRankAt":"2023-02-15T06:22:53.454563Z","MostPoints":1080784,"MostPointsAt":"2023-02-15T06:22:53.454564Z","MostVillages":106,"MostVillagesAt":"2023-02-15T06:22:53.454563Z","LastActivityAt":"2023-02-15T06:22:53.454564Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":440,"ScoreAtt":466980,"RankDef":1502,"ScoreDef":33756,"RankSup":493,"ScoreSup":177137,"RankTotal":739,"ScoreTotal":677873,"ID":699574408,"Name":"emoriar","NumVillages":105,"Points":838582,"Rank":174,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699574408","BestRank":174,"BestRankAt":"2023-02-15T06:22:53.454564Z","MostPoints":838582,"MostPointsAt":"2023-02-15T06:22:53.454565Z","MostVillages":105,"MostVillagesAt":"2023-02-15T06:22:53.454565Z","LastActivityAt":"2023-02-15T06:22:53.454565Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":941,"ScoreAtt":41810,"RankDef":1391,"ScoreDef":45472,"RankSup":837,"ScoreSup":18024,"RankTotal":1373,"ScoreTotal":105306,"ID":699576407,"Name":"AAnubiSS","NumVillages":6,"Points":35291,"Rank":774,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699576407","BestRank":774,"BestRankAt":"2023-02-15T06:22:53.454566Z","MostPoints":35291,"MostPointsAt":"2023-02-15T06:22:53.454566Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.454566Z","LastActivityAt":"2023-02-15T06:22:53.454566Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1199,"ScoreAtt":10678,"RankDef":1050,"ScoreDef":107763,"RankSup":1194,"ScoreSup":450,"RankTotal":1329,"ScoreTotal":118891,"ID":699576978,"Name":"andziolaa","NumVillages":1,"Points":847,"Rank":1903,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699576978","BestRank":1903,"BestRankAt":"2023-02-15T06:22:53.454567Z","MostPoints":847,"MostPointsAt":"2023-02-15T06:22:53.454567Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454567Z","LastActivityAt":"2023-02-15T06:22:53.454567Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455305Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699577663,"Name":"RudnikDagger","NumVillages":1,"Points":26,"Rank":2718,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699577663","BestRank":2718,"BestRankAt":"2023-02-15T06:22:53.454568Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454568Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454568Z","LastActivityAt":"2023-02-15T06:22:53.454569Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":475,"ScoreAtt":406622,"RankDef":1371,"ScoreDef":48145,"RankSup":1085,"ScoreSup":2260,"RankTotal":870,"ScoreTotal":457027,"ID":699578606,"Name":"Lord Konzi","NumVillages":0,"Points":0,"Rank":2992,"TribeID":1716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699578606","BestRank":2992,"BestRankAt":"2023-02-15T06:22:53.454569Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.45457Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.45457Z","LastActivityAt":"2023-02-15T06:22:53.45457Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":688,"ScoreAtt":139035,"RankDef":326,"ScoreDef":1007637,"RankSup":505,"ScoreSup":170989,"RankTotal":534,"ScoreTotal":1317661,"ID":699580120,"Name":"Ciachociech","NumVillages":32,"Points":220749,"Rank":401,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699580120","BestRank":401,"BestRankAt":"2023-02-15T06:22:53.454571Z","MostPoints":220749,"MostPointsAt":"2023-02-15T06:22:53.454571Z","MostVillages":32,"MostVillagesAt":"2023-02-15T06:22:53.454571Z","LastActivityAt":"2023-02-15T06:22:53.454571Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1019,"ScoreAtt":27873,"RankDef":1032,"ScoreDef":115243,"RankSup":462,"ScoreSup":209325,"RankTotal":958,"ScoreTotal":352441,"ID":699583677,"Name":"Lexmet","NumVillages":0,"Points":0,"Rank":2993,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699583677","BestRank":2993,"BestRankAt":"2023-02-15T06:22:53.454572Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454572Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454572Z","LastActivityAt":"2023-02-15T06:22:53.454572Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1876,"ScoreDef":9046,"RankSup":1420,"ScoreSup":1,"RankTotal":2020,"ScoreTotal":9047,"ID":699588526,"Name":"Dirk ze Skraju Lasu","NumVillages":3,"Points":10138,"Rank":1080,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699588526","BestRank":1080,"BestRankAt":"2023-02-15T06:22:53.454573Z","MostPoints":10138,"MostPointsAt":"2023-02-15T06:22:53.454573Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454573Z","LastActivityAt":"2023-02-15T06:22:53.454574Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455314Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":830,"ScoreAtt":70850,"RankDef":608,"ScoreDef":368909,"RankSup":610,"ScoreSup":93292,"RankTotal":819,"ScoreTotal":533051,"ID":699589540,"Name":"bbbarteqqq","NumVillages":1,"Points":324,"Rank":2151,"TribeID":1528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699589540","BestRank":2151,"BestRankAt":"2023-02-15T06:22:53.454576Z","MostPoints":324,"MostPointsAt":"2023-02-15T06:22:53.454577Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454577Z","LastActivityAt":"2023-02-15T06:22:53.454577Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":505,"ScoreDef":509942,"RankSup":0,"ScoreSup":0,"RankTotal":832,"ScoreTotal":509942,"ID":699590236,"Name":"ZygaH","NumVillages":1,"Points":3029,"Rank":1525,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699590236","BestRank":1525,"BestRankAt":"2023-02-15T06:22:53.454578Z","MostPoints":3029,"MostPointsAt":"2023-02-15T06:22:53.454578Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454578Z","LastActivityAt":"2023-02-15T06:22:53.454578Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1117,"ScoreAtt":16968,"RankDef":1711,"ScoreDef":17800,"RankSup":310,"ScoreSup":500882,"RankTotal":816,"ScoreTotal":535650,"ID":699595556,"Name":"Lord ramagama","NumVillages":7,"Points":35894,"Rank":770,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699595556","BestRank":770,"BestRankAt":"2023-02-15T06:22:53.454579Z","MostPoints":35894,"MostPointsAt":"2023-02-15T06:22:53.454579Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454579Z","LastActivityAt":"2023-02-15T06:22:53.454579Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":604,"ScoreDef":377011,"RankSup":1089,"ScoreSup":2140,"RankTotal":934,"ScoreTotal":379151,"ID":699598396,"Name":"gall","NumVillages":9,"Points":18773,"Rank":939,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598396","BestRank":939,"BestRankAt":"2023-02-15T06:22:53.45458Z","MostPoints":18773,"MostPointsAt":"2023-02-15T06:22:53.45458Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.45458Z","LastActivityAt":"2023-02-15T06:22:53.454581Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45532Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":53,"ScoreAtt":4802458,"RankDef":455,"ScoreDef":605326,"RankSup":669,"ScoreSup":61869,"RankTotal":168,"ScoreTotal":5469653,"ID":699598425,"Name":"Pomidorowy dzem","NumVillages":192,"Points":1542135,"Rank":76,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598425","BestRank":76,"BestRankAt":"2023-02-15T06:22:53.454581Z","MostPoints":1542135,"MostPointsAt":"2023-02-15T06:22:53.454582Z","MostVillages":192,"MostVillagesAt":"2023-02-15T06:22:53.454582Z","LastActivityAt":"2023-02-15T06:22:53.454582Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2427,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2515,"ScoreTotal":13,"ID":699598671,"Name":"marq135","NumVillages":1,"Points":1160,"Rank":1817,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598671","BestRank":1817,"BestRankAt":"2023-02-15T06:22:53.454583Z","MostPoints":1160,"MostPointsAt":"2023-02-15T06:22:53.454583Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454583Z","LastActivityAt":"2023-02-15T06:22:53.454583Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455322Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2423,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2517,"ScoreTotal":13,"ID":699598764,"Name":"Afterparty","NumVillages":1,"Points":1144,"Rank":1821,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598764","BestRank":1821,"BestRankAt":"2023-02-15T06:22:53.454584Z","MostPoints":1144,"MostPointsAt":"2023-02-15T06:22:53.454584Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454584Z","LastActivityAt":"2023-02-15T06:22:53.454584Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1673,"ScoreAtt":721,"RankDef":2267,"ScoreDef":517,"RankSup":1268,"ScoreSup":76,"RankTotal":2289,"ScoreTotal":1314,"ID":699600167,"Name":"Szyszka77","NumVillages":1,"Points":143,"Rank":2385,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699600167","BestRank":2385,"BestRankAt":"2023-02-15T06:22:53.454585Z","MostPoints":143,"MostPointsAt":"2023-02-15T06:22:53.454585Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454585Z","LastActivityAt":"2023-02-15T06:22:53.454586Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":824,"ScoreAtt":71783,"RankDef":378,"ScoreDef":800627,"RankSup":796,"ScoreSup":25213,"RankTotal":658,"ScoreTotal":897623,"ID":699600855,"Name":"7homasbaN1","NumVillages":1,"Points":277,"Rank":2197,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699600855","BestRank":2197,"BestRankAt":"2023-02-15T06:22:53.454586Z","MostPoints":277,"MostPointsAt":"2023-02-15T06:22:53.454587Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454586Z","LastActivityAt":"2023-02-15T06:22:53.454587Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699603033,"Name":"Krzysiek933","NumVillages":1,"Points":102,"Rank":2475,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699603033","BestRank":2475,"BestRankAt":"2023-02-15T06:22:53.454587Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.454588Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454588Z","LastActivityAt":"2023-02-15T06:22:53.454588Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":249,"ScoreAtt":1127435,"RankDef":1482,"ScoreDef":36118,"RankSup":689,"ScoreSup":54862,"RankTotal":553,"ScoreTotal":1218415,"ID":699603116,"Name":"Infamiia x Bartez","NumVillages":67,"Points":522621,"Rank":259,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699603116","BestRank":259,"BestRankAt":"2023-02-15T06:22:53.454589Z","MostPoints":522621,"MostPointsAt":"2023-02-15T06:22:53.454589Z","MostVillages":67,"MostVillagesAt":"2023-02-15T06:22:53.454589Z","LastActivityAt":"2023-02-15T06:22:53.454589Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455331Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":839,"ScoreAtt":69125,"RankDef":929,"ScoreDef":150336,"RankSup":965,"ScoreSup":6939,"RankTotal":1097,"ScoreTotal":226400,"ID":699604515,"Name":"KruliK","NumVillages":7,"Points":15823,"Rank":983,"TribeID":1652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699604515","BestRank":983,"BestRankAt":"2023-02-15T06:22:53.45459Z","MostPoints":15823,"MostPointsAt":"2023-02-15T06:22:53.45459Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.45459Z","LastActivityAt":"2023-02-15T06:22:53.454591Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455332Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":41,"ScoreAtt":5654937,"RankDef":244,"ScoreDef":1543124,"RankSup":135,"ScoreSup":1586810,"RankTotal":86,"ScoreTotal":8784871,"ID":699605333,"Name":"Dominik 17cm","NumVillages":136,"Points":1244225,"Rank":101,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699605333","BestRank":101,"BestRankAt":"2023-02-15T06:22:53.454591Z","MostPoints":1244225,"MostPointsAt":"2023-02-15T06:22:53.454592Z","MostVillages":136,"MostVillagesAt":"2023-02-15T06:22:53.454591Z","LastActivityAt":"2023-02-15T06:22:53.454592Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1871,"ScoreAtt":94,"RankDef":2193,"ScoreDef":1313,"RankSup":0,"ScoreSup":0,"RankTotal":2283,"ScoreTotal":1407,"ID":699609445,"Name":"Bicoss","NumVillages":1,"Points":1026,"Rank":1855,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699609445","BestRank":1855,"BestRankAt":"2023-02-15T06:22:53.454592Z","MostPoints":1026,"MostPointsAt":"2023-02-15T06:22:53.454593Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454593Z","LastActivityAt":"2023-02-15T06:22:53.454593Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1181,"ScoreAtt":11736,"RankDef":506,"ScoreDef":507543,"RankSup":1202,"ScoreSup":378,"RankTotal":827,"ScoreTotal":519657,"ID":699611673,"Name":"Asaret","NumVillages":4,"Points":24466,"Rank":864,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699611673","BestRank":864,"BestRankAt":"2023-02-15T06:22:53.454594Z","MostPoints":24466,"MostPointsAt":"2023-02-15T06:22:53.454594Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.454594Z","LastActivityAt":"2023-02-15T06:22:53.454594Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1889,"ScoreAtt":62,"RankDef":2305,"ScoreDef":261,"RankSup":0,"ScoreSup":0,"RankTotal":2378,"ScoreTotal":323,"ID":699613884,"Name":"Bracket","NumVillages":0,"Points":0,"Rank":2994,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699613884","BestRank":2994,"BestRankAt":"2023-02-15T06:22:53.454595Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454595Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454595Z","LastActivityAt":"2023-02-15T06:22:53.454595Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1969,"ScoreAtt":9,"RankDef":2059,"ScoreDef":3642,"RankSup":0,"ScoreSup":0,"RankTotal":2185,"ScoreTotal":3651,"ID":699614027,"Name":"BenyZSZ","NumVillages":1,"Points":989,"Rank":1869,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699614027","BestRank":1869,"BestRankAt":"2023-02-15T06:22:53.454596Z","MostPoints":989,"MostPointsAt":"2023-02-15T06:22:53.454597Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454596Z","LastActivityAt":"2023-02-15T06:22:53.454597Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45534Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1932,"ScoreDef":6879,"RankSup":0,"ScoreSup":0,"RankTotal":2074,"ScoreTotal":6879,"ID":699614821,"Name":"gazda30","NumVillages":1,"Points":127,"Rank":2430,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699614821","BestRank":2430,"BestRankAt":"2023-02-15T06:22:53.454597Z","MostPoints":127,"MostPointsAt":"2023-02-15T06:22:53.454598Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454598Z","LastActivityAt":"2023-02-15T06:22:53.454598Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699617524,"Name":"Dziobson266","NumVillages":1,"Points":203,"Rank":2293,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699617524","BestRank":2293,"BestRankAt":"2023-02-15T06:22:53.454599Z","MostPoints":203,"MostPointsAt":"2023-02-15T06:22:53.454599Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454599Z","LastActivityAt":"2023-02-15T06:22:53.454599Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699618066,"Name":"donpabloone","NumVillages":1,"Points":26,"Rank":2719,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699618066","BestRank":2719,"BestRankAt":"2023-02-15T06:22:53.4546Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.4546Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.4546Z","LastActivityAt":"2023-02-15T06:22:53.4546Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2429,"ScoreDef":12,"RankSup":0,"ScoreSup":0,"RankTotal":2525,"ScoreTotal":12,"ID":699618326,"Name":"Maverick1","NumVillages":1,"Points":3993,"Rank":1410,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699618326","BestRank":1410,"BestRankAt":"2023-02-15T06:22:53.454601Z","MostPoints":3993,"MostPointsAt":"2023-02-15T06:22:53.454601Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454601Z","LastActivityAt":"2023-02-15T06:22:53.454602Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":851,"ScoreDef":185252,"RankSup":1315,"ScoreSup":17,"RankTotal":1177,"ScoreTotal":185269,"ID":699620730,"Name":"rumcajski","NumVillages":0,"Points":0,"Rank":2995,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699620730","BestRank":2995,"BestRankAt":"2023-02-15T06:22:53.454602Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454603Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454603Z","LastActivityAt":"2023-02-15T06:22:53.454603Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1170,"ScoreAtt":12387,"RankDef":1448,"ScoreDef":38565,"RankSup":1014,"ScoreSup":4345,"RankTotal":1584,"ScoreTotal":55297,"ID":699621601,"Name":"Joffrey666","NumVillages":22,"Points":144636,"Rank":471,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699621601","BestRank":471,"BestRankAt":"2023-02-15T06:22:53.454604Z","MostPoints":144636,"MostPointsAt":"2023-02-15T06:22:53.454604Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.454604Z","LastActivityAt":"2023-02-15T06:22:53.454604Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1750,"ScoreAtt":340,"RankDef":1867,"ScoreDef":9533,"RankSup":0,"ScoreSup":0,"RankTotal":2001,"ScoreTotal":9873,"ID":699622781,"Name":"Jack 69","NumVillages":1,"Points":2736,"Rank":1561,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699622781","BestRank":1561,"BestRankAt":"2023-02-15T06:22:53.454605Z","MostPoints":2736,"MostPointsAt":"2023-02-15T06:22:53.454605Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454605Z","LastActivityAt":"2023-02-15T06:22:53.454605Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45535Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1532,"ScoreAtt":2070,"RankDef":1227,"ScoreDef":68004,"RankSup":0,"ScoreSup":0,"RankTotal":1507,"ScoreTotal":70074,"ID":699622958,"Name":"kuba987","NumVillages":1,"Points":97,"Rank":2490,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699622958","BestRank":2490,"BestRankAt":"2023-02-15T06:22:53.454606Z","MostPoints":97,"MostPointsAt":"2023-02-15T06:22:53.454606Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454606Z","LastActivityAt":"2023-02-15T06:22:53.454607Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699624570,"Name":"Deckuƛ DowĂłdca Podziemia","NumVillages":1,"Points":77,"Rank":2520,"TribeID":1802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699624570","BestRank":2520,"BestRankAt":"2023-02-15T06:22:53.454607Z","MostPoints":77,"MostPointsAt":"2023-02-15T06:22:53.454608Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454607Z","LastActivityAt":"2023-02-15T06:22:53.454608Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1415,"ScoreAtt":3920,"RankDef":1383,"ScoreDef":46954,"RankSup":0,"ScoreSup":0,"RankTotal":1608,"ScoreTotal":50874,"ID":699627771,"Name":"P1Kasik","NumVillages":4,"Points":12583,"Rank":1036,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699627771","BestRank":1036,"BestRankAt":"2023-02-15T06:22:53.454609Z","MostPoints":12583,"MostPointsAt":"2023-02-15T06:22:53.454609Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.454609Z","LastActivityAt":"2023-02-15T06:22:53.454609Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":154,"ScoreAtt":2013814,"RankDef":1766,"ScoreDef":14446,"RankSup":540,"ScoreSup":136588,"RankTotal":387,"ScoreTotal":2164848,"ID":699628084,"Name":"k4myk","NumVillages":99,"Points":779299,"Rank":187,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699628084","BestRank":187,"BestRankAt":"2023-02-15T06:22:53.454612Z","MostPoints":779299,"MostPointsAt":"2023-02-15T06:22:53.454612Z","MostVillages":99,"MostVillagesAt":"2023-02-15T06:22:53.454612Z","LastActivityAt":"2023-02-15T06:22:53.454612Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455356Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2004,"ScoreDef":4998,"RankSup":0,"ScoreSup":0,"RankTotal":2135,"ScoreTotal":4998,"ID":699630110,"Name":"Dam2314","NumVillages":1,"Points":4776,"Rank":1348,"TribeID":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699630110","BestRank":1348,"BestRankAt":"2023-02-15T06:22:53.454613Z","MostPoints":4776,"MostPointsAt":"2023-02-15T06:22:53.454613Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454613Z","LastActivityAt":"2023-02-15T06:22:53.454613Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699630393,"Name":"MiczMicz","NumVillages":1,"Points":104,"Rank":2471,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699630393","BestRank":2471,"BestRankAt":"2023-02-15T06:22:53.454614Z","MostPoints":104,"MostPointsAt":"2023-02-15T06:22:53.454614Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454614Z","LastActivityAt":"2023-02-15T06:22:53.454615Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1147,"ScoreAtt":14188,"RankDef":1179,"ScoreDef":77126,"RankSup":0,"ScoreSup":0,"RankTotal":1431,"ScoreTotal":91314,"ID":699632387,"Name":"Lady elo320","NumVillages":1,"Points":3480,"Rank":1467,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699632387","BestRank":1467,"BestRankAt":"2023-02-15T06:22:53.454615Z","MostPoints":3480,"MostPointsAt":"2023-02-15T06:22:53.454616Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454615Z","LastActivityAt":"2023-02-15T06:22:53.454616Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45536Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699633365,"Name":"King Schultz","NumVillages":1,"Points":443,"Rank":2062,"TribeID":1807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699633365","BestRank":2062,"BestRankAt":"2023-02-15T06:22:53.454616Z","MostPoints":443,"MostPointsAt":"2023-02-15T06:22:53.454617Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454617Z","LastActivityAt":"2023-02-15T06:22:53.454617Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699635774,"Name":"Mad World","NumVillages":1,"Points":26,"Rank":2720,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699635774","BestRank":2720,"BestRankAt":"2023-02-15T06:22:53.454618Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454618Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454618Z","LastActivityAt":"2023-02-15T06:22:53.454618Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455365Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2295,"ScoreDef":326,"RankSup":0,"ScoreSup":0,"RankTotal":2376,"ScoreTotal":326,"ID":699639001,"Name":"RĂłĆŒalXDD","NumVillages":1,"Points":1110,"Rank":1832,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699639001","BestRank":1832,"BestRankAt":"2023-02-15T06:22:53.454619Z","MostPoints":1110,"MostPointsAt":"2023-02-15T06:22:53.454619Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454619Z","LastActivityAt":"2023-02-15T06:22:53.45462Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455365Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1815,"ScoreAtt":174,"RankDef":1374,"ScoreDef":47862,"RankSup":0,"ScoreSup":0,"RankTotal":1629,"ScoreTotal":48036,"ID":699639005,"Name":"kakuna","NumVillages":1,"Points":2287,"Rank":1615,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699639005","BestRank":1615,"BestRankAt":"2023-02-15T06:22:53.45462Z","MostPoints":2287,"MostPointsAt":"2023-02-15T06:22:53.454621Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45462Z","LastActivityAt":"2023-02-15T06:22:53.454621Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":700,"ScoreAtt":128299,"RankDef":679,"ScoreDef":287177,"RankSup":0,"ScoreSup":0,"RankTotal":901,"ScoreTotal":415476,"ID":699639122,"Name":"Arkadio1","NumVillages":2,"Points":8575,"Rank":1133,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699639122","BestRank":1133,"BestRankAt":"2023-02-15T06:22:53.454621Z","MostPoints":8575,"MostPointsAt":"2023-02-15T06:22:53.454622Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454622Z","LastActivityAt":"2023-02-15T06:22:53.454622Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1598,"ScoreAtt":1297,"RankDef":646,"ScoreDef":327110,"RankSup":0,"ScoreSup":0,"RankTotal":980,"ScoreTotal":328407,"ID":699641777,"Name":"Lord Shimonus","NumVillages":13,"Points":49609,"Rank":696,"TribeID":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699641777","BestRank":696,"BestRankAt":"2023-02-15T06:22:53.454623Z","MostPoints":49609,"MostPointsAt":"2023-02-15T06:22:53.454623Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.454623Z","LastActivityAt":"2023-02-15T06:22:53.454623Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1238,"ScoreDef":66255,"RankSup":0,"ScoreSup":0,"RankTotal":1520,"ScoreTotal":66255,"ID":699642954,"Name":"Herkuless","NumVillages":1,"Points":808,"Rank":1913,"TribeID":625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699642954","BestRank":1913,"BestRankAt":"2023-02-15T06:22:53.454624Z","MostPoints":808,"MostPointsAt":"2023-02-15T06:22:53.454624Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454624Z","LastActivityAt":"2023-02-15T06:22:53.454625Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":895,"ScoreDef":166843,"RankSup":812,"ScoreSup":22748,"RankTotal":1163,"ScoreTotal":189591,"ID":699644054,"Name":"Lijor","NumVillages":3,"Points":6881,"Rank":1226,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699644054","BestRank":1226,"BestRankAt":"2023-02-15T06:22:53.454625Z","MostPoints":6881,"MostPointsAt":"2023-02-15T06:22:53.454626Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454625Z","LastActivityAt":"2023-02-15T06:22:53.454626Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1085,"ScoreAtt":19695,"RankDef":770,"ScoreDef":232766,"RankSup":0,"ScoreSup":0,"RankTotal":1052,"ScoreTotal":252461,"ID":699644448,"Name":"Rodriges1271","NumVillages":14,"Points":66314,"Rank":628,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699644448","BestRank":628,"BestRankAt":"2023-02-15T06:22:53.454626Z","MostPoints":66314,"MostPointsAt":"2023-02-15T06:22:53.454627Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.454627Z","LastActivityAt":"2023-02-15T06:22:53.454627Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":987,"ScoreAtt":32961,"RankDef":632,"ScoreDef":342816,"RankSup":1144,"ScoreSup":1102,"RankTotal":939,"ScoreTotal":376879,"ID":699644852,"Name":"Natka1968","NumVillages":7,"Points":13458,"Rank":1018,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699644852","BestRank":1018,"BestRankAt":"2023-02-15T06:22:53.454628Z","MostPoints":13458,"MostPointsAt":"2023-02-15T06:22:53.454628Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454628Z","LastActivityAt":"2023-02-15T06:22:53.454628Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699648975,"Name":"Rejku30","NumVillages":1,"Points":71,"Rank":2532,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699648975","BestRank":2532,"BestRankAt":"2023-02-15T06:22:53.454629Z","MostPoints":71,"MostPointsAt":"2023-02-15T06:22:53.454629Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454629Z","LastActivityAt":"2023-02-15T06:22:53.454629Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1528,"ScoreAtt":2111,"RankDef":1860,"ScoreDef":9702,"RankSup":1122,"ScoreSup":1516,"RankTotal":1948,"ScoreTotal":13329,"ID":699650981,"Name":"Jacollo","NumVillages":5,"Points":7743,"Rank":1174,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699650981","BestRank":1174,"BestRankAt":"2023-02-15T06:22:53.45463Z","MostPoints":7743,"MostPointsAt":"2023-02-15T06:22:53.454631Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.45463Z","LastActivityAt":"2023-02-15T06:22:53.454631Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1735,"ScoreDef":16663,"RankSup":0,"ScoreSup":0,"RankTotal":1911,"ScoreTotal":16663,"ID":699651260,"Name":"Cray123","NumVillages":0,"Points":0,"Rank":2996,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699651260","BestRank":2996,"BestRankAt":"2023-02-15T06:22:53.454631Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454632Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454632Z","LastActivityAt":"2023-02-15T06:22:53.454632Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1861,"ScoreDef":9693,"RankSup":0,"ScoreSup":0,"RankTotal":2005,"ScoreTotal":9693,"ID":699655364,"Name":"igrane5000","NumVillages":1,"Points":26,"Rank":2721,"TribeID":1484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699655364","BestRank":2721,"BestRankAt":"2023-02-15T06:22:53.454633Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454633Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454633Z","LastActivityAt":"2023-02-15T06:22:53.454633Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":556,"ScoreAtt":268531,"RankDef":2134,"ScoreDef":2155,"RankSup":915,"ScoreSup":10287,"RankTotal":1022,"ScoreTotal":280973,"ID":699656989,"Name":"Hubixon","NumVillages":24,"Points":186326,"Rank":429,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699656989","BestRank":429,"BestRankAt":"2023-02-15T06:22:53.454634Z","MostPoints":186326,"MostPointsAt":"2023-02-15T06:22:53.454634Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.454634Z","LastActivityAt":"2023-02-15T06:22:53.454634Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1960,"ScoreAtt":15,"RankDef":1703,"ScoreDef":18737,"RankSup":0,"ScoreSup":0,"RankTotal":1886,"ScoreTotal":18752,"ID":699657242,"Name":"Krz40","NumVillages":1,"Points":2932,"Rank":1537,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699657242","BestRank":1537,"BestRankAt":"2023-02-15T06:22:53.454635Z","MostPoints":2932,"MostPointsAt":"2023-02-15T06:22:53.454635Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454635Z","LastActivityAt":"2023-02-15T06:22:53.454636Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":787,"ScoreAtt":86634,"RankDef":485,"ScoreDef":549903,"RankSup":1295,"ScoreSup":34,"RankTotal":762,"ScoreTotal":636571,"ID":699657450,"Name":"Lord Myster Boos","NumVillages":24,"Points":132189,"Rank":491,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699657450","BestRank":491,"BestRankAt":"2023-02-15T06:22:53.454636Z","MostPoints":132189,"MostPointsAt":"2023-02-15T06:22:53.454637Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.454637Z","LastActivityAt":"2023-02-15T06:22:53.454637Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":151,"ScoreAtt":2035868,"RankDef":939,"ScoreDef":147128,"RankSup":125,"ScoreSup":1723950,"RankTotal":238,"ScoreTotal":3906946,"ID":699658023,"Name":"Syisy","NumVillages":65,"Points":580109,"Rank":247,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699658023","BestRank":247,"BestRankAt":"2023-02-15T06:22:53.454638Z","MostPoints":580109,"MostPointsAt":"2023-02-15T06:22:53.454638Z","MostVillages":65,"MostVillagesAt":"2023-02-15T06:22:53.454638Z","LastActivityAt":"2023-02-15T06:22:53.454638Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1047,"ScoreAtt":23806,"RankDef":2054,"ScoreDef":3726,"RankSup":0,"ScoreSup":0,"RankTotal":1793,"ScoreTotal":27532,"ID":699659708,"Name":"Melon944","NumVillages":7,"Points":31344,"Rank":800,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699659708","BestRank":800,"BestRankAt":"2023-02-15T06:22:53.454639Z","MostPoints":31344,"MostPointsAt":"2023-02-15T06:22:53.454639Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454639Z","LastActivityAt":"2023-02-15T06:22:53.454639Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45539Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":122,"ScoreAtt":2482231,"RankDef":1098,"ScoreDef":94670,"RankSup":183,"ScoreSup":1082248,"RankTotal":250,"ScoreTotal":3659149,"ID":699660539,"Name":"Fresio","NumVillages":131,"Points":1000952,"Rank":146,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699660539","BestRank":146,"BestRankAt":"2023-02-15T06:22:53.45464Z","MostPoints":1000952,"MostPointsAt":"2023-02-15T06:22:53.45464Z","MostVillages":131,"MostVillagesAt":"2023-02-15T06:22:53.45464Z","LastActivityAt":"2023-02-15T06:22:53.454641Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1511,"ScoreAtt":2236,"RankDef":1955,"ScoreDef":6257,"RankSup":0,"ScoreSup":0,"RankTotal":2033,"ScoreTotal":8493,"ID":699662232,"Name":"raflinski","NumVillages":2,"Points":5005,"Rank":1325,"TribeID":1715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699662232","BestRank":1325,"BestRankAt":"2023-02-15T06:22:53.454641Z","MostPoints":5005,"MostPointsAt":"2023-02-15T06:22:53.454642Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454641Z","LastActivityAt":"2023-02-15T06:22:53.454642Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":552,"ScoreAtt":273277,"RankDef":2220,"ScoreDef":887,"RankSup":714,"ScoreSup":44192,"RankTotal":989,"ScoreTotal":318356,"ID":699664910,"Name":"rzeĆșnik88","NumVillages":24,"Points":175764,"Rank":439,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699664910","BestRank":439,"BestRankAt":"2023-02-15T06:22:53.454643Z","MostPoints":175764,"MostPointsAt":"2023-02-15T06:22:53.454643Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.454643Z","LastActivityAt":"2023-02-15T06:22:53.454643Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":723,"ScoreAtt":114916,"RankDef":987,"ScoreDef":128346,"RankSup":934,"ScoreSup":9092,"RankTotal":1053,"ScoreTotal":252354,"ID":699665031,"Name":"juventino1988","NumVillages":1,"Points":150,"Rank":2380,"TribeID":1460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699665031","BestRank":2380,"BestRankAt":"2023-02-15T06:22:53.454644Z","MostPoints":150,"MostPointsAt":"2023-02-15T06:22:53.454644Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454644Z","LastActivityAt":"2023-02-15T06:22:53.454644Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":260,"ScoreAtt":1084503,"RankDef":384,"ScoreDef":792455,"RankSup":406,"ScoreSup":309449,"RankTotal":382,"ScoreTotal":2186407,"ID":699665152,"Name":"marweb","NumVillages":4,"Points":34258,"Rank":778,"TribeID":1716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699665152","BestRank":778,"BestRankAt":"2023-02-15T06:22:53.454645Z","MostPoints":34258,"MostPointsAt":"2023-02-15T06:22:53.454645Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.454645Z","LastActivityAt":"2023-02-15T06:22:53.454646Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699665188,"Name":"dawdevil","NumVillages":0,"Points":0,"Rank":2997,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699665188","BestRank":2997,"BestRankAt":"2023-02-15T06:22:53.454646Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454647Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454646Z","LastActivityAt":"2023-02-15T06:22:53.454647Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2387,"ScoreDef":28,"RankSup":0,"ScoreSup":0,"RankTotal":2486,"ScoreTotal":28,"ID":699668392,"Name":"Lady K8","NumVillages":1,"Points":26,"Rank":2722,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699668392","BestRank":2722,"BestRankAt":"2023-02-15T06:22:53.454647Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454648Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454648Z","LastActivityAt":"2023-02-15T06:22:53.454648Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":899,"ScoreAtt":51484,"RankDef":984,"ScoreDef":128715,"RankSup":1016,"ScoreSup":4270,"RankTotal":1181,"ScoreTotal":184469,"ID":699671197,"Name":"arzipi","NumVillages":17,"Points":137178,"Rank":480,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699671197","BestRank":480,"BestRankAt":"2023-02-15T06:22:53.454649Z","MostPoints":137178,"MostPointsAt":"2023-02-15T06:22:53.454649Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.454649Z","LastActivityAt":"2023-02-15T06:22:53.454649Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":813,"ScoreAtt":75974,"RankDef":1771,"ScoreDef":14081,"RankSup":471,"ScoreSup":195800,"RankTotal":1017,"ScoreTotal":285855,"ID":699671454,"Name":"gazela1209","NumVillages":33,"Points":222632,"Rank":397,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699671454","BestRank":397,"BestRankAt":"2023-02-15T06:22:53.45465Z","MostPoints":222632,"MostPointsAt":"2023-02-15T06:22:53.45465Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.45465Z","LastActivityAt":"2023-02-15T06:22:53.454651Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1844,"ScoreAtt":134,"RankDef":2038,"ScoreDef":3978,"RankSup":0,"ScoreSup":0,"RankTotal":2164,"ScoreTotal":4112,"ID":699672060,"Name":"Mario 76","NumVillages":1,"Points":620,"Rank":1982,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699672060","BestRank":1982,"BestRankAt":"2023-02-15T06:22:53.454651Z","MostPoints":620,"MostPointsAt":"2023-02-15T06:22:53.454652Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454651Z","LastActivityAt":"2023-02-15T06:22:53.454652Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2317,"ScoreDef":222,"RankSup":0,"ScoreSup":0,"RankTotal":2399,"ScoreTotal":222,"ID":699673236,"Name":"Ulanyksiadz","NumVillages":1,"Points":354,"Rank":2122,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699673236","BestRank":2122,"BestRankAt":"2023-02-15T06:22:53.454652Z","MostPoints":354,"MostPointsAt":"2023-02-15T06:22:53.454653Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454653Z","LastActivityAt":"2023-02-15T06:22:53.454653Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":530,"ScoreDef":481283,"RankSup":514,"ScoreSup":162724,"RankTotal":757,"ScoreTotal":644007,"ID":699674355,"Name":"Aniuta77","NumVillages":0,"Points":0,"Rank":2998,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699674355","BestRank":2998,"BestRankAt":"2023-02-15T06:22:53.454654Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454654Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454654Z","LastActivityAt":"2023-02-15T06:22:53.454654Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":258,"ScoreAtt":1085765,"RankDef":687,"ScoreDef":282621,"RankSup":405,"ScoreSup":309874,"RankTotal":463,"ScoreTotal":1678260,"ID":699676005,"Name":"Groovyq","NumVillages":120,"Points":1141693,"Rank":119,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699676005","BestRank":119,"BestRankAt":"2023-02-15T06:22:53.454655Z","MostPoints":1141693,"MostPointsAt":"2023-02-15T06:22:53.454655Z","MostVillages":120,"MostVillagesAt":"2023-02-15T06:22:53.454655Z","LastActivityAt":"2023-02-15T06:22:53.454656Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":855,"ScoreDef":184774,"RankSup":0,"ScoreSup":0,"RankTotal":1179,"ScoreTotal":184774,"ID":699677277,"Name":"MalinowaZaba","NumVillages":1,"Points":812,"Rank":1912,"TribeID":429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699677277","BestRank":1912,"BestRankAt":"2023-02-15T06:22:53.454656Z","MostPoints":812,"MostPointsAt":"2023-02-15T06:22:53.454657Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454656Z","LastActivityAt":"2023-02-15T06:22:53.454657Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455411Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1037,"ScoreDef":114841,"RankSup":0,"ScoreSup":0,"RankTotal":1343,"ScoreTotal":114841,"ID":699677325,"Name":"czmielu80","NumVillages":0,"Points":0,"Rank":2999,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699677325","BestRank":2999,"BestRankAt":"2023-02-15T06:22:53.454657Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454658Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454658Z","LastActivityAt":"2023-02-15T06:22:53.454658Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455413Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1961,"ScoreAtt":14,"RankDef":605,"ScoreDef":375134,"RankSup":1040,"ScoreSup":3314,"RankTotal":936,"ScoreTotal":378462,"ID":699678739,"Name":"seba3333","NumVillages":0,"Points":0,"Rank":3000,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699678739","BestRank":3000,"BestRankAt":"2023-02-15T06:22:53.454659Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454659Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454659Z","LastActivityAt":"2023-02-15T06:22:53.454659Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455413Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":902,"ScoreAtt":49166,"RankDef":651,"ScoreDef":320318,"RankSup":0,"ScoreSup":0,"RankTotal":944,"ScoreTotal":369484,"ID":699678801,"Name":"Sir SilverBaron","NumVillages":1,"Points":2552,"Rank":1579,"TribeID":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699678801","BestRank":1579,"BestRankAt":"2023-02-15T06:22:53.45466Z","MostPoints":2552,"MostPointsAt":"2023-02-15T06:22:53.45466Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45466Z","LastActivityAt":"2023-02-15T06:22:53.454661Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1231,"ScoreAtt":8983,"RankDef":2254,"ScoreDef":604,"RankSup":1367,"ScoreSup":4,"RankTotal":2008,"ScoreTotal":9591,"ID":699679662,"Name":"Komaros1992","NumVillages":2,"Points":7541,"Rank":1182,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699679662","BestRank":1182,"BestRankAt":"2023-02-15T06:22:53.454661Z","MostPoints":7541,"MostPointsAt":"2023-02-15T06:22:53.454662Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454661Z","LastActivityAt":"2023-02-15T06:22:53.454662Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455417Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2454,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2531,"ScoreTotal":10,"ID":699682780,"Name":"Krzych0007","NumVillages":1,"Points":3204,"Rank":1505,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699682780","BestRank":1505,"BestRankAt":"2023-02-15T06:22:53.454662Z","MostPoints":3204,"MostPointsAt":"2023-02-15T06:22:53.454663Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454663Z","LastActivityAt":"2023-02-15T06:22:53.454663Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455419Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":420,"ScoreAtt":516211,"RankDef":985,"ScoreDef":128672,"RankSup":1381,"ScoreSup":3,"RankTotal":756,"ScoreTotal":644886,"ID":699684062,"Name":"WanHeDa","NumVillages":49,"Points":421842,"Rank":294,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699684062","BestRank":294,"BestRankAt":"2023-02-15T06:22:53.454664Z","MostPoints":421842,"MostPointsAt":"2023-02-15T06:22:53.454664Z","MostVillages":49,"MostVillagesAt":"2023-02-15T06:22:53.454664Z","LastActivityAt":"2023-02-15T06:22:53.454664Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455419Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":910,"ScoreAtt":48063,"RankDef":281,"ScoreDef":1296895,"RankSup":1305,"ScoreSup":22,"RankTotal":528,"ScoreTotal":1344980,"ID":699684693,"Name":"XanSaul","NumVillages":2,"Points":17841,"Rank":955,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699684693","BestRank":955,"BestRankAt":"2023-02-15T06:22:53.454665Z","MostPoints":17841,"MostPointsAt":"2023-02-15T06:22:53.454665Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454665Z","LastActivityAt":"2023-02-15T06:22:53.454665Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455421Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2283,"ScoreDef":395,"RankSup":0,"ScoreSup":0,"RankTotal":2369,"ScoreTotal":395,"ID":699685533,"Name":"Szaszka","NumVillages":1,"Points":988,"Rank":1871,"TribeID":1755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699685533","BestRank":1871,"BestRankAt":"2023-02-15T06:22:53.454666Z","MostPoints":988,"MostPointsAt":"2023-02-15T06:22:53.454666Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454666Z","LastActivityAt":"2023-02-15T06:22:53.454667Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1708,"ScoreAtt":555,"RankDef":2390,"ScoreDef":26,"RankSup":0,"ScoreSup":0,"RankTotal":2339,"ScoreTotal":581,"ID":699687328,"Name":"AlekTbg","NumVillages":1,"Points":2399,"Rank":1596,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699687328","BestRank":1596,"BestRankAt":"2023-02-15T06:22:53.454667Z","MostPoints":2399,"MostPointsAt":"2023-02-15T06:22:53.454668Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454668Z","LastActivityAt":"2023-02-15T06:22:53.454668Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455424Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1582,"ScoreAtt":1484,"RankDef":2458,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2278,"ScoreTotal":1494,"ID":699688180,"Name":"Adijen","NumVillages":2,"Points":10551,"Rank":1070,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699688180","BestRank":1070,"BestRankAt":"2023-02-15T06:22:53.454669Z","MostPoints":10551,"MostPointsAt":"2023-02-15T06:22:53.454669Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454669Z","LastActivityAt":"2023-02-15T06:22:53.454669Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1237,"ScoreAtt":8808,"RankDef":627,"ScoreDef":344532,"RankSup":1366,"ScoreSup":4,"RankTotal":957,"ScoreTotal":353344,"ID":699693687,"Name":"Nevada","NumVillages":1,"Points":3411,"Rank":1482,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699693687","BestRank":1482,"BestRankAt":"2023-02-15T06:22:53.45467Z","MostPoints":3411,"MostPointsAt":"2023-02-15T06:22:53.45467Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45467Z","LastActivityAt":"2023-02-15T06:22:53.45467Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1298,"ScoreAtt":6603,"RankDef":1802,"ScoreDef":12317,"RankSup":874,"ScoreSup":14358,"RankTotal":1744,"ScoreTotal":33278,"ID":699694284,"Name":"Yomasz","NumVillages":22,"Points":107423,"Rank":526,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699694284","BestRank":526,"BestRankAt":"2023-02-15T06:22:53.454683Z","MostPoints":107423,"MostPointsAt":"2023-02-15T06:22:53.454683Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.454683Z","LastActivityAt":"2023-02-15T06:22:53.454683Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455434Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":613,"ScoreAtt":197610,"RankDef":1275,"ScoreDef":60029,"RankSup":506,"ScoreSup":169430,"RankTotal":887,"ScoreTotal":427069,"ID":699695167,"Name":"Kosiarze","NumVillages":59,"Points":361556,"Rank":318,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699695167","BestRank":318,"BestRankAt":"2023-02-15T06:22:53.454684Z","MostPoints":361556,"MostPointsAt":"2023-02-15T06:22:53.454685Z","MostVillages":59,"MostVillagesAt":"2023-02-15T06:22:53.454684Z","LastActivityAt":"2023-02-15T06:22:53.454685Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455435Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699696740,"Name":"AjuZGora","NumVillages":1,"Points":210,"Rank":2284,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699696740","BestRank":2284,"BestRankAt":"2023-02-15T06:22:53.454685Z","MostPoints":210,"MostPointsAt":"2023-02-15T06:22:53.454686Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454686Z","LastActivityAt":"2023-02-15T06:22:53.454686Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":843,"ScoreAtt":67523,"RankDef":1369,"ScoreDef":48635,"RankSup":0,"ScoreSup":0,"RankTotal":1339,"ScoreTotal":116158,"ID":699697136,"Name":"Hrabia mol","NumVillages":2,"Points":15563,"Rank":988,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699697136","BestRank":988,"BestRankAt":"2023-02-15T06:22:53.454687Z","MostPoints":15563,"MostPointsAt":"2023-02-15T06:22:53.454687Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454687Z","LastActivityAt":"2023-02-15T06:22:53.454687Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":21,"ScoreAtt":8043355,"RankDef":42,"ScoreDef":7703135,"RankSup":52,"ScoreSup":3315834,"RankTotal":33,"ScoreTotal":19062324,"ID":699697558,"Name":"Deveste","NumVillages":442,"Points":4148995,"Rank":6,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699697558","BestRank":6,"BestRankAt":"2023-02-15T06:22:53.454688Z","MostPoints":4148995,"MostPointsAt":"2023-02-15T06:22:53.454688Z","MostVillages":442,"MostVillagesAt":"2023-02-15T06:22:53.454688Z","LastActivityAt":"2023-02-15T06:22:53.454688Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":382,"ScoreAtt":614874,"RankDef":315,"ScoreDef":1072621,"RankSup":557,"ScoreSup":127651,"RankTotal":434,"ScoreTotal":1815146,"ID":699698079,"Name":"kejmill","NumVillages":2,"Points":9398,"Rank":1109,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698079","BestRank":1109,"BestRankAt":"2023-02-15T06:22:53.454689Z","MostPoints":9398,"MostPointsAt":"2023-02-15T06:22:53.454689Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454689Z","LastActivityAt":"2023-02-15T06:22:53.45469Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455441Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":250,"ScoreAtt":1103773,"RankDef":46,"ScoreDef":6797088,"RankSup":443,"ScoreSup":238447,"RankTotal":99,"ScoreTotal":8139308,"ID":699698253,"Name":"Dominatorxd","NumVillages":38,"Points":254831,"Rank":380,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698253","BestRank":380,"BestRankAt":"2023-02-15T06:22:53.45469Z","MostPoints":254831,"MostPointsAt":"2023-02-15T06:22:53.454691Z","MostVillages":38,"MostVillagesAt":"2023-02-15T06:22:53.454691Z","LastActivityAt":"2023-02-15T06:22:53.454691Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455442Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2411,"ScoreDef":17,"RankSup":0,"ScoreSup":0,"RankTotal":2506,"ScoreTotal":17,"ID":699698745,"Name":"Bliskoznaczny","NumVillages":1,"Points":26,"Rank":2723,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698745","BestRank":2723,"BestRankAt":"2023-02-15T06:22:53.454692Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454692Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454692Z","LastActivityAt":"2023-02-15T06:22:53.454692Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699698873,"Name":"PrawdziwyIlveron","NumVillages":1,"Points":68,"Rank":2539,"TribeID":1751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698873","BestRank":2539,"BestRankAt":"2023-02-15T06:22:53.454693Z","MostPoints":68,"MostPointsAt":"2023-02-15T06:22:53.454693Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454693Z","LastActivityAt":"2023-02-15T06:22:53.454693Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455445Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2048,"ScoreDef":3848,"RankSup":0,"ScoreSup":0,"RankTotal":2177,"ScoreTotal":3848,"ID":699699422,"Name":"Krukuu","NumVillages":1,"Points":989,"Rank":1870,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699422","BestRank":1870,"BestRankAt":"2023-02-15T06:22:53.454694Z","MostPoints":989,"MostPointsAt":"2023-02-15T06:22:53.454694Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454694Z","LastActivityAt":"2023-02-15T06:22:53.454695Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455447Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2513,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2576,"ScoreTotal":1,"ID":699699563,"Name":"maciejasz3k","NumVillages":1,"Points":974,"Rank":1876,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699563","BestRank":1876,"BestRankAt":"2023-02-15T06:22:53.454695Z","MostPoints":974,"MostPointsAt":"2023-02-15T06:22:53.454696Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454695Z","LastActivityAt":"2023-02-15T06:22:53.454696Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455448Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":474,"ScoreAtt":408371,"RankDef":35,"ScoreDef":9346260,"RankSup":228,"ScoreSup":770781,"RankTotal":74,"ScoreTotal":10525412,"ID":699699601,"Name":"szczylo","NumVillages":5,"Points":27276,"Rank":834,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699601","BestRank":834,"BestRankAt":"2023-02-15T06:22:53.454696Z","MostPoints":27276,"MostPointsAt":"2023-02-15T06:22:53.454697Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454697Z","LastActivityAt":"2023-02-15T06:22:53.454697Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":778,"ScoreAtt":89785,"RankDef":1406,"ScoreDef":43218,"RankSup":944,"ScoreSup":8337,"RankTotal":1267,"ScoreTotal":141340,"ID":699699650,"Name":"Zdrowa Pięta Achillesa","NumVillages":1,"Points":26,"Rank":2724,"TribeID":1787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699650","BestRank":2724,"BestRankAt":"2023-02-15T06:22:53.454698Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454698Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454698Z","LastActivityAt":"2023-02-15T06:22:53.454698Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699700007,"Name":"xFeFe","NumVillages":1,"Points":26,"Rank":2725,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699700007","BestRank":2725,"BestRankAt":"2023-02-15T06:22:53.454699Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454699Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454699Z","LastActivityAt":"2023-02-15T06:22:53.4547Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":867,"ScoreAtt":58651,"RankDef":1308,"ScoreDef":56371,"RankSup":1172,"ScoreSup":695,"RankTotal":1341,"ScoreTotal":115717,"ID":699703295,"Name":"kowalola123","NumVillages":2,"Points":12877,"Rank":1029,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699703295","BestRank":1029,"BestRankAt":"2023-02-15T06:22:53.4547Z","MostPoints":12877,"MostPointsAt":"2023-02-15T06:22:53.454701Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.4547Z","LastActivityAt":"2023-02-15T06:22:53.454701Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455454Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":173,"ScoreAtt":1827672,"RankDef":778,"ScoreDef":223963,"RankSup":104,"ScoreSup":2164033,"RankTotal":224,"ScoreTotal":4215668,"ID":699703642,"Name":"LadyAnimaVilis","NumVillages":92,"Points":874818,"Rank":166,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699703642","BestRank":166,"BestRankAt":"2023-02-15T06:22:53.454701Z","MostPoints":874818,"MostPointsAt":"2023-02-15T06:22:53.454702Z","MostVillages":92,"MostVillagesAt":"2023-02-15T06:22:53.454702Z","LastActivityAt":"2023-02-15T06:22:53.454702Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":180,"ScoreAtt":1731912,"RankDef":119,"ScoreDef":3186130,"RankSup":390,"ScoreSup":329781,"RankTotal":176,"ScoreTotal":5247823,"ID":699703782,"Name":"pacyfic","NumVillages":0,"Points":0,"Rank":3001,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699703782","BestRank":3001,"BestRankAt":"2023-02-15T06:22:53.454703Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454703Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454703Z","LastActivityAt":"2023-02-15T06:22:53.454703Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":338,"ScoreAtt":762463,"RankDef":508,"ScoreDef":503252,"RankSup":243,"ScoreSup":729892,"RankTotal":408,"ScoreTotal":1995607,"ID":699704542,"Name":"Geriavit65","NumVillages":59,"Points":371016,"Rank":313,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699704542","BestRank":313,"BestRankAt":"2023-02-15T06:22:53.454704Z","MostPoints":371016,"MostPointsAt":"2023-02-15T06:22:53.454704Z","MostVillages":59,"MostVillagesAt":"2023-02-15T06:22:53.454704Z","LastActivityAt":"2023-02-15T06:22:53.454705Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":797,"ScoreAtt":83417,"RankDef":1377,"ScoreDef":47751,"RankSup":651,"ScoreSup":72254,"RankTotal":1135,"ScoreTotal":203422,"ID":699705601,"Name":"Kamilkaze135","NumVillages":23,"Points":162338,"Rank":447,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699705601","BestRank":447,"BestRankAt":"2023-02-15T06:22:53.454705Z","MostPoints":162338,"MostPointsAt":"2023-02-15T06:22:53.454706Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.454705Z","LastActivityAt":"2023-02-15T06:22:53.454706Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455462Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699705910,"Name":"KiepLach","NumVillages":1,"Points":26,"Rank":2726,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699705910","BestRank":2726,"BestRankAt":"2023-02-15T06:22:53.454706Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454707Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454707Z","LastActivityAt":"2023-02-15T06:22:53.454707Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455462Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1447,"ScoreAtt":3243,"RankDef":501,"ScoreDef":518734,"RankSup":959,"ScoreSup":7390,"RankTotal":821,"ScoreTotal":529367,"ID":699706047,"Name":"zbycho73","NumVillages":0,"Points":0,"Rank":3002,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699706047","BestRank":3002,"BestRankAt":"2023-02-15T06:22:53.454708Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454708Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454708Z","LastActivityAt":"2023-02-15T06:22:53.454708Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":838,"ScoreAtt":69389,"RankDef":1245,"ScoreDef":64101,"RankSup":1274,"ScoreSup":64,"RankTotal":1287,"ScoreTotal":133554,"ID":699706955,"Name":"migs","NumVillages":14,"Points":68456,"Rank":620,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699706955","BestRank":620,"BestRankAt":"2023-02-15T06:22:53.454709Z","MostPoints":68456,"MostPointsAt":"2023-02-15T06:22:53.454709Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.454709Z","LastActivityAt":"2023-02-15T06:22:53.454709Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699707057,"Name":"Adrianxl95.","NumVillages":1,"Points":26,"Rank":2727,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699707057","BestRank":2727,"BestRankAt":"2023-02-15T06:22:53.45471Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454711Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45471Z","LastActivityAt":"2023-02-15T06:22:53.454711Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455467Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1829,"ScoreDef":10948,"RankSup":0,"ScoreSup":0,"RankTotal":1987,"ScoreTotal":10948,"ID":699709160,"Name":"Baat","NumVillages":1,"Points":872,"Rank":1895,"TribeID":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699709160","BestRank":1895,"BestRankAt":"2023-02-15T06:22:53.454711Z","MostPoints":872,"MostPointsAt":"2023-02-15T06:22:53.454712Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454712Z","LastActivityAt":"2023-02-15T06:22:53.454712Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455468Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":207,"ScoreAtt":1508389,"RankDef":27,"ScoreDef":11809284,"RankSup":176,"ScoreSup":1214463,"RankTotal":51,"ScoreTotal":14532136,"ID":699710633,"Name":"Valhim","NumVillages":28,"Points":240726,"Rank":386,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699710633","BestRank":386,"BestRankAt":"2023-02-15T06:22:53.454713Z","MostPoints":240726,"MostPointsAt":"2023-02-15T06:22:53.454713Z","MostVillages":28,"MostVillagesAt":"2023-02-15T06:22:53.454713Z","LastActivityAt":"2023-02-15T06:22:53.454713Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45547Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699711334,"Name":"najarany szachista","NumVillages":1,"Points":26,"Rank":2728,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711334","BestRank":2728,"BestRankAt":"2023-02-15T06:22:53.454714Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454714Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454714Z","LastActivityAt":"2023-02-15T06:22:53.454714Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":855,"ScoreAtt":62553,"RankDef":826,"ScoreDef":195368,"RankSup":0,"ScoreSup":0,"RankTotal":1046,"ScoreTotal":257921,"ID":699711706,"Name":"malaula","NumVillages":10,"Points":43294,"Rank":724,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711706","BestRank":724,"BestRankAt":"2023-02-15T06:22:53.454715Z","MostPoints":43294,"MostPointsAt":"2023-02-15T06:22:53.454715Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.454715Z","LastActivityAt":"2023-02-15T06:22:53.454716Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":605,"ScoreAtt":207282,"RankDef":1219,"ScoreDef":69437,"RankSup":1093,"ScoreSup":2087,"RankTotal":1025,"ScoreTotal":278806,"ID":699711723,"Name":"prayforyou","NumVillages":13,"Points":83862,"Rank":576,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711723","BestRank":576,"BestRankAt":"2023-02-15T06:22:53.454716Z","MostPoints":83862,"MostPointsAt":"2023-02-15T06:22:53.454717Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.454716Z","LastActivityAt":"2023-02-15T06:22:53.454717Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455474Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":831,"ScoreAtt":70722,"RankDef":1818,"ScoreDef":11435,"RankSup":341,"ScoreSup":424812,"RankTotal":836,"ScoreTotal":506969,"ID":699711926,"Name":"Inchi","NumVillages":41,"Points":219625,"Rank":402,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711926","BestRank":402,"BestRankAt":"2023-02-15T06:22:53.454718Z","MostPoints":219625,"MostPointsAt":"2023-02-15T06:22:53.454718Z","MostVillages":41,"MostVillagesAt":"2023-02-15T06:22:53.454718Z","LastActivityAt":"2023-02-15T06:22:53.454718Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1835,"ScoreAtt":140,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2421,"ScoreTotal":140,"ID":699711996,"Name":"Lord lotos652","NumVillages":1,"Points":390,"Rank":2095,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711996","BestRank":2095,"BestRankAt":"2023-02-15T06:22:53.454719Z","MostPoints":390,"MostPointsAt":"2023-02-15T06:22:53.454719Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454719Z","LastActivityAt":"2023-02-15T06:22:53.454719Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699712243,"Name":"KrzysztofBerg95","NumVillages":1,"Points":463,"Rank":2050,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699712243","BestRank":2050,"BestRankAt":"2023-02-15T06:22:53.45472Z","MostPoints":463,"MostPointsAt":"2023-02-15T06:22:53.45472Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45472Z","LastActivityAt":"2023-02-15T06:22:53.454721Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":433,"ScoreAtt":477236,"RankDef":221,"ScoreDef":1700606,"RankSup":728,"ScoreSup":41064,"RankTotal":380,"ScoreTotal":2218906,"ID":699712422,"Name":"kukas94","NumVillages":1,"Points":772,"Rank":1928,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699712422","BestRank":1928,"BestRankAt":"2023-02-15T06:22:53.454721Z","MostPoints":772,"MostPointsAt":"2023-02-15T06:22:53.454722Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454721Z","LastActivityAt":"2023-02-15T06:22:53.454722Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45548Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":901,"ScoreAtt":50019,"RankDef":988,"ScoreDef":127113,"RankSup":756,"ScoreSup":34117,"RankTotal":1121,"ScoreTotal":211249,"ID":699713515,"Name":"Shrek z Bagien","NumVillages":19,"Points":122227,"Rank":502,"TribeID":1740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699713515","BestRank":502,"BestRankAt":"2023-02-15T06:22:53.454722Z","MostPoints":122227,"MostPointsAt":"2023-02-15T06:22:53.454723Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.454723Z","LastActivityAt":"2023-02-15T06:22:53.454723Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455482Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699714935,"Name":"Marian1960","NumVillages":1,"Points":177,"Rank":2341,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699714935","BestRank":2341,"BestRankAt":"2023-02-15T06:22:53.454724Z","MostPoints":177,"MostPointsAt":"2023-02-15T06:22:53.454724Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454724Z","LastActivityAt":"2023-02-15T06:22:53.454724Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2217,"ScoreDef":914,"RankSup":963,"ScoreSup":7238,"RankTotal":2039,"ScoreTotal":8152,"ID":699716785,"Name":"Nijord","NumVillages":1,"Points":2273,"Rank":1619,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699716785","BestRank":1619,"BestRankAt":"2023-02-15T06:22:53.454725Z","MostPoints":2273,"MostPointsAt":"2023-02-15T06:22:53.454725Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454725Z","LastActivityAt":"2023-02-15T06:22:53.454726Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455484Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":683,"ScoreAtt":139492,"RankDef":1147,"ScoreDef":85092,"RankSup":776,"ScoreSup":29969,"RankTotal":1050,"ScoreTotal":254553,"ID":699718269,"Name":"SweetPain","NumVillages":15,"Points":88401,"Rank":566,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699718269","BestRank":566,"BestRankAt":"2023-02-15T06:22:53.454726Z","MostPoints":88401,"MostPointsAt":"2023-02-15T06:22:53.454727Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.454726Z","LastActivityAt":"2023-02-15T06:22:53.454727Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455486Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2341,"ScoreDef":117,"RankSup":0,"ScoreSup":0,"RankTotal":2434,"ScoreTotal":117,"ID":699720374,"Name":"rutej123","NumVillages":1,"Points":116,"Rank":2453,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699720374","BestRank":2453,"BestRankAt":"2023-02-15T06:22:53.454727Z","MostPoints":116,"MostPointsAt":"2023-02-15T06:22:53.454728Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454728Z","LastActivityAt":"2023-02-15T06:22:53.454728Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455488Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699721590,"Name":"hiszpan78","NumVillages":1,"Points":409,"Rank":2082,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699721590","BestRank":2082,"BestRankAt":"2023-02-15T06:22:53.454729Z","MostPoints":409,"MostPointsAt":"2023-02-15T06:22:53.454729Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454729Z","LastActivityAt":"2023-02-15T06:22:53.454729Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":38,"ScoreAtt":5990367,"RankDef":144,"ScoreDef":2665172,"RankSup":575,"ScoreSup":114655,"RankTotal":88,"ScoreTotal":8770194,"ID":699722599,"Name":"Sandre","NumVillages":204,"Points":1901112,"Rank":54,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699722599","BestRank":54,"BestRankAt":"2023-02-15T06:22:53.45473Z","MostPoints":1901112,"MostPointsAt":"2023-02-15T06:22:53.45473Z","MostVillages":204,"MostVillagesAt":"2023-02-15T06:22:53.45473Z","LastActivityAt":"2023-02-15T06:22:53.45473Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45549Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":155,"ScoreAtt":2003093,"RankDef":419,"ScoreDef":699023,"RankSup":188,"ScoreSup":1018408,"RankTotal":247,"ScoreTotal":3720524,"ID":699723284,"Name":"Aissa","NumVillages":103,"Points":983289,"Rank":148,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699723284","BestRank":148,"BestRankAt":"2023-02-15T06:22:53.454731Z","MostPoints":983289,"MostPointsAt":"2023-02-15T06:22:53.454732Z","MostVillages":103,"MostVillagesAt":"2023-02-15T06:22:53.454731Z","LastActivityAt":"2023-02-15T06:22:53.454732Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455494Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1897,"ScoreAtt":52,"RankDef":1116,"ScoreDef":91650,"RankSup":0,"ScoreSup":0,"RankTotal":1429,"ScoreTotal":91702,"ID":699724603,"Name":"Sir MaƂy101","NumVillages":1,"Points":262,"Rank":2211,"TribeID":236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699724603","BestRank":2211,"BestRankAt":"2023-02-15T06:22:53.454732Z","MostPoints":262,"MostPointsAt":"2023-02-15T06:22:53.454733Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454733Z","LastActivityAt":"2023-02-15T06:22:53.454733Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455494Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":50,"ScoreAtt":4852304,"RankDef":12,"ScoreDef":19690461,"RankSup":187,"ScoreSup":1020162,"RankTotal":17,"ScoreTotal":25562927,"ID":699725436,"Name":"Dimitria x Ciemny","NumVillages":93,"Points":872489,"Rank":167,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699725436","BestRank":167,"BestRankAt":"2023-02-15T06:22:53.454734Z","MostPoints":872489,"MostPointsAt":"2023-02-15T06:22:53.454734Z","MostVillages":93,"MostVillagesAt":"2023-02-15T06:22:53.454734Z","LastActivityAt":"2023-02-15T06:22:53.454734Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455496Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1951,"ScoreAtt":19,"RankDef":2056,"ScoreDef":3706,"RankSup":638,"ScoreSup":76808,"RankTotal":1460,"ScoreTotal":80533,"ID":699726660,"Name":"ryhu","NumVillages":1,"Points":2889,"Rank":1540,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699726660","BestRank":1540,"BestRankAt":"2023-02-15T06:22:53.454735Z","MostPoints":2889,"MostPointsAt":"2023-02-15T06:22:53.454735Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454735Z","LastActivityAt":"2023-02-15T06:22:53.454735Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455498Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":195,"ScoreAtt":1600482,"RankDef":1877,"ScoreDef":8984,"RankSup":173,"ScoreSup":1247255,"RankTotal":303,"ScoreTotal":2856721,"ID":699728159,"Name":"Woocash","NumVillages":78,"Points":533470,"Rank":256,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699728159","BestRank":256,"BestRankAt":"2023-02-15T06:22:53.454736Z","MostPoints":533470,"MostPointsAt":"2023-02-15T06:22:53.454736Z","MostVillages":78,"MostVillagesAt":"2023-02-15T06:22:53.454736Z","LastActivityAt":"2023-02-15T06:22:53.454737Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4555Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1479,"ScoreAtt":2678,"RankDef":2234,"ScoreDef":760,"RankSup":1415,"ScoreSup":1,"RankTotal":2195,"ScoreTotal":3439,"ID":699728266,"Name":"Buzka9395","NumVillages":10,"Points":32255,"Rank":793,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699728266","BestRank":793,"BestRankAt":"2023-02-15T06:22:53.454737Z","MostPoints":32255,"MostPointsAt":"2023-02-15T06:22:53.454738Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.454738Z","LastActivityAt":"2023-02-15T06:22:53.454738Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4555Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2272,"ScoreDef":472,"RankSup":0,"ScoreSup":0,"RankTotal":2357,"ScoreTotal":472,"ID":699729211,"Name":"Robert242","NumVillages":1,"Points":483,"Rank":2041,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699729211","BestRank":2041,"BestRankAt":"2023-02-15T06:22:53.454739Z","MostPoints":483,"MostPointsAt":"2023-02-15T06:22:53.454739Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454739Z","LastActivityAt":"2023-02-15T06:22:53.454739Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455502Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1308,"ScoreAtt":6359,"RankDef":1950,"ScoreDef":6391,"RankSup":0,"ScoreSup":0,"RankTotal":1955,"ScoreTotal":12750,"ID":699730399,"Name":"Cypis666","NumVillages":1,"Points":5440,"Rank":1305,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699730399","BestRank":1305,"BestRankAt":"2023-02-15T06:22:53.45474Z","MostPoints":5440,"MostPointsAt":"2023-02-15T06:22:53.45474Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45474Z","LastActivityAt":"2023-02-15T06:22:53.45474Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455504Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":985,"ScoreAtt":33137,"RankDef":337,"ScoreDef":932925,"RankSup":0,"ScoreSup":0,"RankTotal":633,"ScoreTotal":966062,"ID":699730714,"Name":"Neroven","NumVillages":7,"Points":33194,"Rank":785,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699730714","BestRank":785,"BestRankAt":"2023-02-15T06:22:53.454741Z","MostPoints":33194,"MostPointsAt":"2023-02-15T06:22:53.454741Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454741Z","LastActivityAt":"2023-02-15T06:22:53.454742Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455504Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1367,"ScoreAtt":4776,"RankDef":598,"ScoreDef":381311,"RankSup":700,"ScoreSup":49298,"RankTotal":880,"ScoreTotal":435385,"ID":699730998,"Name":"MATTI","NumVillages":8,"Points":26894,"Rank":838,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699730998","BestRank":838,"BestRankAt":"2023-02-15T06:22:53.454742Z","MostPoints":26894,"MostPointsAt":"2023-02-15T06:22:53.454743Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.454742Z","LastActivityAt":"2023-02-15T06:22:53.454743Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":659,"ScoreAtt":154130,"RankDef":84,"ScoreDef":4056320,"RankSup":426,"ScoreSup":256738,"RankTotal":211,"ScoreTotal":4467188,"ID":699733098,"Name":"Le Coq","NumVillages":3,"Points":20560,"Rank":908,"TribeID":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699733098","BestRank":908,"BestRankAt":"2023-02-15T06:22:53.454744Z","MostPoints":20560,"MostPointsAt":"2023-02-15T06:22:53.454744Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454744Z","LastActivityAt":"2023-02-15T06:22:53.454744Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1083,"ScoreAtt":19766,"RankDef":654,"ScoreDef":314047,"RankSup":398,"ScoreSup":316762,"RankTotal":754,"ScoreTotal":650575,"ID":699733501,"Name":"Jopo32","NumVillages":7,"Points":55903,"Rank":668,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699733501","BestRank":668,"BestRankAt":"2023-02-15T06:22:53.454745Z","MostPoints":55903,"MostPointsAt":"2023-02-15T06:22:53.454745Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454745Z","LastActivityAt":"2023-02-15T06:22:53.454745Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45551Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1094,"ScoreAtt":19080,"RankDef":219,"ScoreDef":1713237,"RankSup":792,"ScoreSup":27107,"RankTotal":453,"ScoreTotal":1759424,"ID":699734152,"Name":"micha6","NumVillages":0,"Points":0,"Rank":3003,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699734152","BestRank":3003,"BestRankAt":"2023-02-15T06:22:53.454746Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454746Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454746Z","LastActivityAt":"2023-02-15T06:22:53.454747Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45551Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1097,"ScoreAtt":18836,"RankDef":1272,"ScoreDef":60327,"RankSup":787,"ScoreSup":27895,"RankTotal":1366,"ScoreTotal":107058,"ID":699734445,"Name":"Sir HEROES","NumVillages":2,"Points":8161,"Rank":1148,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699734445","BestRank":1148,"BestRankAt":"2023-02-15T06:22:53.454747Z","MostPoints":8161,"MostPointsAt":"2023-02-15T06:22:53.454748Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454747Z","LastActivityAt":"2023-02-15T06:22:53.454748Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455512Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":979,"ScoreAtt":33598,"RankDef":933,"ScoreDef":149003,"RankSup":891,"ScoreSup":12838,"RankTotal":1143,"ScoreTotal":195439,"ID":699734795,"Name":"cobra2ooo","NumVillages":1,"Points":628,"Rank":1979,"TribeID":1376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699734795","BestRank":1979,"BestRankAt":"2023-02-15T06:22:53.454748Z","MostPoints":628,"MostPointsAt":"2023-02-15T06:22:53.454749Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454749Z","LastActivityAt":"2023-02-15T06:22:53.454749Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455514Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":416,"ScoreAtt":533981,"RankDef":1078,"ScoreDef":100390,"RankSup":307,"ScoreSup":506458,"RankTotal":581,"ScoreTotal":1140829,"ID":699735020,"Name":"dz1ku","NumVillages":1,"Points":9747,"Rank":1092,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699735020","BestRank":1092,"BestRankAt":"2023-02-15T06:22:53.45475Z","MostPoints":9747,"MostPointsAt":"2023-02-15T06:22:53.45475Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45475Z","LastActivityAt":"2023-02-15T06:22:53.45475Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455515Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":10,"ScoreAtt":12182758,"RankDef":4,"ScoreDef":40358391,"RankSup":17,"ScoreSup":5823680,"RankTotal":5,"ScoreTotal":58364829,"ID":699736927,"Name":"Bociarze","NumVillages":383,"Points":3235051,"Rank":14,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699736927","BestRank":14,"BestRankAt":"2023-02-15T06:22:53.454751Z","MostPoints":3235051,"MostPointsAt":"2023-02-15T06:22:53.454751Z","MostVillages":383,"MostVillagesAt":"2023-02-15T06:22:53.454751Z","LastActivityAt":"2023-02-15T06:22:53.454752Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455517Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":549,"ScoreAtt":281169,"RankDef":49,"ScoreDef":6667170,"RankSup":507,"ScoreSup":168077,"RankTotal":120,"ScoreTotal":7116416,"ID":699736959,"Name":"mackooo24","NumVillages":2,"Points":8400,"Rank":1141,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699736959","BestRank":1141,"BestRankAt":"2023-02-15T06:22:53.454752Z","MostPoints":8400,"MostPointsAt":"2023-02-15T06:22:53.454753Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454752Z","LastActivityAt":"2023-02-15T06:22:53.454753Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":463,"ScoreAtt":427655,"RankDef":847,"ScoreDef":186171,"RankSup":239,"ScoreSup":741146,"RankTotal":525,"ScoreTotal":1354972,"ID":699737356,"Name":"Sekou","NumVillages":82,"Points":622253,"Rank":229,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699737356","BestRank":229,"BestRankAt":"2023-02-15T06:22:53.454753Z","MostPoints":622253,"MostPointsAt":"2023-02-15T06:22:53.454754Z","MostVillages":82,"MostVillagesAt":"2023-02-15T06:22:53.454754Z","LastActivityAt":"2023-02-15T06:22:53.454754Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45552Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699737563,"Name":"Agamemnon","NumVillages":1,"Points":26,"Rank":2729,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699737563","BestRank":2729,"BestRankAt":"2023-02-15T06:22:53.454755Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454755Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454755Z","LastActivityAt":"2023-02-15T06:22:53.454755Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455521Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":434,"ScoreAtt":476861,"RankDef":1073,"ScoreDef":100933,"RankSup":363,"ScoreSup":381199,"RankTotal":636,"ScoreTotal":958993,"ID":699738350,"Name":"Ramdzis12","NumVillages":38,"Points":343840,"Rank":332,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699738350","BestRank":332,"BestRankAt":"2023-02-15T06:22:53.454756Z","MostPoints":343840,"MostPointsAt":"2023-02-15T06:22:53.454756Z","MostVillages":38,"MostVillagesAt":"2023-02-15T06:22:53.454756Z","LastActivityAt":"2023-02-15T06:22:53.454756Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455523Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2010,"ScoreDef":4610,"RankSup":0,"ScoreSup":0,"RankTotal":2147,"ScoreTotal":4610,"ID":699739523,"Name":"Ysiek","NumVillages":1,"Points":2750,"Rank":1558,"TribeID":723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699739523","BestRank":1558,"BestRankAt":"2023-02-15T06:22:53.454757Z","MostPoints":2750,"MostPointsAt":"2023-02-15T06:22:53.454758Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454757Z","LastActivityAt":"2023-02-15T06:22:53.454758Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455526Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1829,"ScoreAtt":149,"RankDef":2009,"ScoreDef":4647,"RankSup":0,"ScoreSup":0,"RankTotal":2141,"ScoreTotal":4796,"ID":699739891,"Name":"Waldus","NumVillages":0,"Points":0,"Rank":3004,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699739891","BestRank":3004,"BestRankAt":"2023-02-15T06:22:53.454758Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454759Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454759Z","LastActivityAt":"2023-02-15T06:22:53.454759Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455528Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1320,"ScoreAtt":5902,"RankDef":2359,"ScoreDef":64,"RankSup":0,"ScoreSup":0,"RankTotal":2097,"ScoreTotal":5966,"ID":699741694,"Name":"Mega Niepokorny","NumVillages":4,"Points":6650,"Rank":1232,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699741694","BestRank":1232,"BestRankAt":"2023-02-15T06:22:53.45476Z","MostPoints":6650,"MostPointsAt":"2023-02-15T06:22:53.45476Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.45476Z","LastActivityAt":"2023-02-15T06:22:53.45476Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455528Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2284,"ScoreDef":390,"RankSup":0,"ScoreSup":0,"RankTotal":2370,"ScoreTotal":390,"ID":699742054,"Name":"Yeta","NumVillages":0,"Points":0,"Rank":3005,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699742054","BestRank":3005,"BestRankAt":"2023-02-15T06:22:53.454761Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454761Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454761Z","LastActivityAt":"2023-02-15T06:22:53.454761Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45553Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1052,"ScoreAtt":23114,"RankDef":794,"ScoreDef":214603,"RankSup":1360,"ScoreSup":4,"RankTotal":1071,"ScoreTotal":237721,"ID":699744012,"Name":"piratwoj","NumVillages":2,"Points":3928,"Rank":1419,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699744012","BestRank":1419,"BestRankAt":"2023-02-15T06:22:53.454762Z","MostPoints":3928,"MostPointsAt":"2023-02-15T06:22:53.454763Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454762Z","LastActivityAt":"2023-02-15T06:22:53.454763Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455532Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":378,"ScoreAtt":623353,"RankDef":73,"ScoreDef":4693997,"RankSup":357,"ScoreSup":393297,"RankTotal":160,"ScoreTotal":5710647,"ID":699744766,"Name":"CriS00","NumVillages":2,"Points":12321,"Rank":1040,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699744766","BestRank":1040,"BestRankAt":"2023-02-15T06:22:53.454763Z","MostPoints":12321,"MostPointsAt":"2023-02-15T06:22:53.454764Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454764Z","LastActivityAt":"2023-02-15T06:22:53.454764Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455532Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":588,"ScoreAtt":227742,"RankDef":872,"ScoreDef":177696,"RankSup":1161,"ScoreSup":881,"RankTotal":910,"ScoreTotal":406319,"ID":699745265,"Name":"Misteryo777","NumVillages":8,"Points":76630,"Rank":595,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699745265","BestRank":595,"BestRankAt":"2023-02-15T06:22:53.454765Z","MostPoints":76630,"MostPointsAt":"2023-02-15T06:22:53.454765Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.454765Z","LastActivityAt":"2023-02-15T06:22:53.454765Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455534Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699747504,"Name":"maciusw","NumVillages":1,"Points":154,"Rank":2372,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699747504","BestRank":2372,"BestRankAt":"2023-02-15T06:22:53.454766Z","MostPoints":154,"MostPointsAt":"2023-02-15T06:22:53.454766Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454766Z","LastActivityAt":"2023-02-15T06:22:53.454766Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455536Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699748916,"Name":"Dominoo1","NumVillages":1,"Points":373,"Rank":2108,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699748916","BestRank":2108,"BestRankAt":"2023-02-15T06:22:53.454767Z","MostPoints":373,"MostPointsAt":"2023-02-15T06:22:53.454767Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454767Z","LastActivityAt":"2023-02-15T06:22:53.454768Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455538Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2344,"ScoreDef":102,"RankSup":0,"ScoreSup":0,"RankTotal":2440,"ScoreTotal":102,"ID":699749184,"Name":"Strusiek","NumVillages":1,"Points":422,"Rank":2078,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699749184","BestRank":2078,"BestRankAt":"2023-02-15T06:22:53.454768Z","MostPoints":422,"MostPointsAt":"2023-02-15T06:22:53.454769Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454768Z","LastActivityAt":"2023-02-15T06:22:53.454769Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455538Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699749530,"Name":"mefisom13","NumVillages":1,"Points":368,"Rank":2113,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699749530","BestRank":2113,"BestRankAt":"2023-02-15T06:22:53.45477Z","MostPoints":368,"MostPointsAt":"2023-02-15T06:22:53.45477Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45477Z","LastActivityAt":"2023-02-15T06:22:53.45477Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45554Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":743,"ScoreDef":246192,"RankSup":1129,"ScoreSup":1382,"RankTotal":1057,"ScoreTotal":247574,"ID":699751062,"Name":"Hejhej","NumVillages":1,"Points":308,"Rank":2167,"TribeID":517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699751062","BestRank":2167,"BestRankAt":"2023-02-15T06:22:53.454771Z","MostPoints":308,"MostPointsAt":"2023-02-15T06:22:53.454771Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454771Z","LastActivityAt":"2023-02-15T06:22:53.454771Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455542Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699751562,"Name":"gracforfun","NumVillages":1,"Points":1111,"Rank":1831,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699751562","BestRank":1831,"BestRankAt":"2023-02-15T06:22:53.454772Z","MostPoints":1111,"MostPointsAt":"2023-02-15T06:22:53.454772Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454772Z","LastActivityAt":"2023-02-15T06:22:53.454773Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455542Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699751887,"Name":"zbawiciel4","NumVillages":1,"Points":64,"Rank":2550,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699751887","BestRank":2550,"BestRankAt":"2023-02-15T06:22:53.454773Z","MostPoints":64,"MostPointsAt":"2023-02-15T06:22:53.454774Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454773Z","LastActivityAt":"2023-02-15T06:22:53.454774Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455544Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1801,"ScoreAtt":215,"RankDef":2306,"ScoreDef":254,"RankSup":0,"ScoreSup":0,"RankTotal":2358,"ScoreTotal":469,"ID":699752402,"Name":"leonek","NumVillages":0,"Points":0,"Rank":3006,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699752402","BestRank":3006,"BestRankAt":"2023-02-15T06:22:53.454774Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454775Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454775Z","LastActivityAt":"2023-02-15T06:22:53.454775Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455546Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699752776,"Name":"rafixiem","NumVillages":1,"Points":236,"Rank":2243,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699752776","BestRank":2243,"BestRankAt":"2023-02-15T06:22:53.454776Z","MostPoints":236,"MostPointsAt":"2023-02-15T06:22:53.454776Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454776Z","LastActivityAt":"2023-02-15T06:22:53.454776Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455548Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1093,"ScoreAtt":19197,"RankDef":1342,"ScoreDef":52425,"RankSup":380,"ScoreSup":348408,"RankTotal":895,"ScoreTotal":420030,"ID":699753640,"Name":"Raguel888","NumVillages":7,"Points":24908,"Rank":862,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699753640","BestRank":862,"BestRankAt":"2023-02-15T06:22:53.454777Z","MostPoints":24908,"MostPointsAt":"2023-02-15T06:22:53.454777Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454777Z","LastActivityAt":"2023-02-15T06:22:53.454778Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455549Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1990,"ScoreAtt":2,"RankDef":2110,"ScoreDef":2542,"RankSup":0,"ScoreSup":0,"RankTotal":2222,"ScoreTotal":2544,"ID":699753863,"Name":"Poranna Gwiazda","NumVillages":1,"Points":212,"Rank":2282,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699753863","BestRank":2282,"BestRankAt":"2023-02-15T06:22:53.454778Z","MostPoints":212,"MostPointsAt":"2023-02-15T06:22:53.454779Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454778Z","LastActivityAt":"2023-02-15T06:22:53.454779Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455551Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2414,"ScoreDef":15,"RankSup":0,"ScoreSup":0,"RankTotal":2512,"ScoreTotal":15,"ID":699754856,"Name":"Zwolin","NumVillages":1,"Points":5603,"Rank":1294,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699754856","BestRank":1294,"BestRankAt":"2023-02-15T06:22:53.454779Z","MostPoints":5603,"MostPointsAt":"2023-02-15T06:22:53.45478Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45478Z","LastActivityAt":"2023-02-15T06:22:53.45478Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455552Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":870,"ScoreAtt":57488,"RankDef":1909,"ScoreDef":7690,"RankSup":0,"ScoreSup":0,"RankTotal":1527,"ScoreTotal":65178,"ID":699755859,"Name":"lixx1337","NumVillages":1,"Points":4900,"Rank":1332,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699755859","BestRank":1332,"BestRankAt":"2023-02-15T06:22:53.454781Z","MostPoints":4900,"MostPointsAt":"2023-02-15T06:22:53.454781Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454781Z","LastActivityAt":"2023-02-15T06:22:53.454781Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455554Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":45,"ScoreAtt":5141636,"RankDef":57,"ScoreDef":5872633,"RankSup":47,"ScoreSup":3522122,"RankTotal":50,"ScoreTotal":14536391,"ID":699756210,"Name":"rafaldan","NumVillages":168,"Points":1623883,"Rank":70,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699756210","BestRank":70,"BestRankAt":"2023-02-15T06:22:53.454782Z","MostPoints":1623883,"MostPointsAt":"2023-02-15T06:22:53.454782Z","MostVillages":168,"MostVillagesAt":"2023-02-15T06:22:53.454782Z","LastActivityAt":"2023-02-15T06:22:53.454782Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455555Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699756403,"Name":"lucko5","NumVillages":1,"Points":26,"Rank":2730,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699756403","BestRank":2730,"BestRankAt":"2023-02-15T06:22:53.454783Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454784Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454783Z","LastActivityAt":"2023-02-15T06:22:53.454784Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455558Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1022,"ScoreAtt":27493,"RankDef":941,"ScoreDef":146384,"RankSup":1234,"ScoreSup":215,"RankTotal":1202,"ScoreTotal":174092,"ID":699758688,"Name":"Bedoi King","NumVillages":2,"Points":7134,"Rank":1210,"TribeID":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699758688","BestRank":1210,"BestRankAt":"2023-02-15T06:22:53.454784Z","MostPoints":7134,"MostPointsAt":"2023-02-15T06:22:53.454785Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454785Z","LastActivityAt":"2023-02-15T06:22:53.454785Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455559Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":46,"ScoreAtt":5095690,"RankDef":377,"ScoreDef":801545,"RankSup":448,"ScoreSup":232034,"RankTotal":144,"ScoreTotal":6129269,"ID":699759128,"Name":"Guachilla","NumVillages":214,"Points":2049603,"Rank":45,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699759128","BestRank":45,"BestRankAt":"2023-02-15T06:22:53.454786Z","MostPoints":2049603,"MostPointsAt":"2023-02-15T06:22:53.454786Z","MostVillages":214,"MostVillagesAt":"2023-02-15T06:22:53.454786Z","LastActivityAt":"2023-02-15T06:22:53.454786Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45556Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699760696,"Name":"Zaba12","NumVillages":1,"Points":26,"Rank":2731,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699760696","BestRank":2731,"BestRankAt":"2023-02-15T06:22:53.454787Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454787Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454787Z","LastActivityAt":"2023-02-15T06:22:53.454787Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1550,"ScoreAtt":1821,"RankDef":1828,"ScoreDef":10960,"RankSup":1400,"ScoreSup":2,"RankTotal":1954,"ScoreTotal":12783,"ID":699760767,"Name":"ZemstaPowraca","NumVillages":0,"Points":0,"Rank":3007,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699760767","BestRank":3007,"BestRankAt":"2023-02-15T06:22:53.454788Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454788Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454788Z","LastActivityAt":"2023-02-15T06:22:53.454789Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":186,"ScoreAtt":1645321,"RankDef":26,"ScoreDef":11918805,"RankSup":139,"ScoreSup":1562384,"RankTotal":48,"ScoreTotal":15126510,"ID":699761749,"Name":"Szwedzio","NumVillages":172,"Points":1686035,"Rank":66,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699761749","BestRank":66,"BestRankAt":"2023-02-15T06:22:53.454789Z","MostPoints":1686035,"MostPointsAt":"2023-02-15T06:22:53.45479Z","MostVillages":172,"MostVillagesAt":"2023-02-15T06:22:53.45479Z","LastActivityAt":"2023-02-15T06:22:53.45479Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699762118,"Name":"Jaayzik","NumVillages":1,"Points":26,"Rank":2732,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699762118","BestRank":2732,"BestRankAt":"2023-02-15T06:22:53.454791Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454791Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454791Z","LastActivityAt":"2023-02-15T06:22:53.454791Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699762681,"Name":"Maarri91","NumVillages":1,"Points":26,"Rank":2733,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699762681","BestRank":2733,"BestRankAt":"2023-02-15T06:22:53.454792Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454792Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454792Z","LastActivityAt":"2023-02-15T06:22:53.454792Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455571Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1218,"ScoreAtt":9952,"RankDef":1840,"ScoreDef":10459,"RankSup":0,"ScoreSup":0,"RankTotal":1865,"ScoreTotal":20411,"ID":699763225,"Name":"waldaksi12","NumVillages":8,"Points":24199,"Rank":868,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699763225","BestRank":868,"BestRankAt":"2023-02-15T06:22:53.454793Z","MostPoints":24199,"MostPointsAt":"2023-02-15T06:22:53.454793Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.454793Z","LastActivityAt":"2023-02-15T06:22:53.454794Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455572Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1533,"ScoreDef":30795,"RankSup":0,"ScoreSup":0,"RankTotal":1765,"ScoreTotal":30795,"ID":699765601,"Name":"GryzipiĂłrek","NumVillages":1,"Points":1537,"Rank":1747,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699765601","BestRank":1747,"BestRankAt":"2023-02-15T06:22:53.454794Z","MostPoints":1537,"MostPointsAt":"2023-02-15T06:22:53.454795Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454794Z","LastActivityAt":"2023-02-15T06:22:53.454795Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":749,"ScoreAtt":102414,"RankDef":653,"ScoreDef":315881,"RankSup":982,"ScoreSup":6096,"RankTotal":890,"ScoreTotal":424391,"ID":699765971,"Name":"Banan001","NumVillages":1,"Points":26,"Rank":2734,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699765971","BestRank":2734,"BestRankAt":"2023-02-15T06:22:53.454795Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454796Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454796Z","LastActivityAt":"2023-02-15T06:22:53.454796Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455575Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699766223,"Name":"bart1234","NumVillages":0,"Points":0,"Rank":3008,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699766223","BestRank":3008,"BestRankAt":"2023-02-15T06:22:53.454797Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454797Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454797Z","LastActivityAt":"2023-02-15T06:22:53.454797Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455577Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699767482,"Name":"akamee","NumVillages":1,"Points":26,"Rank":2735,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699767482","BestRank":2735,"BestRankAt":"2023-02-15T06:22:53.454798Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454798Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454798Z","LastActivityAt":"2023-02-15T06:22:53.454799Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455578Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699773770,"Name":"Lis44","NumVillages":1,"Points":64,"Rank":2551,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699773770","BestRank":2551,"BestRankAt":"2023-02-15T06:22:53.454799Z","MostPoints":64,"MostPointsAt":"2023-02-15T06:22:53.4548Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454799Z","LastActivityAt":"2023-02-15T06:22:53.4548Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455579Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1292,"ScoreAtt":6710,"RankDef":2074,"ScoreDef":3358,"RankSup":0,"ScoreSup":0,"RankTotal":1997,"ScoreTotal":10068,"ID":699774694,"Name":"Trip kuba","NumVillages":9,"Points":18031,"Rank":950,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699774694","BestRank":950,"BestRankAt":"2023-02-15T06:22:53.4548Z","MostPoints":18031,"MostPointsAt":"2023-02-15T06:22:53.454801Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.454801Z","LastActivityAt":"2023-02-15T06:22:53.454801Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455581Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2208,"ScoreDef":1091,"RankSup":0,"ScoreSup":0,"RankTotal":2305,"ScoreTotal":1091,"ID":699776412,"Name":"semunus x Przemek9595","NumVillages":1,"Points":26,"Rank":2736,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699776412","BestRank":2736,"BestRankAt":"2023-02-15T06:22:53.454802Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454802Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454802Z","LastActivityAt":"2023-02-15T06:22:53.454802Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455583Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":133,"ScoreAtt":2318168,"RankDef":885,"ScoreDef":170277,"RankSup":145,"ScoreSup":1536301,"RankTotal":234,"ScoreTotal":4024746,"ID":699777234,"Name":"7.62 mm","NumVillages":86,"Points":787254,"Rank":183,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699777234","BestRank":183,"BestRankAt":"2023-02-15T06:22:53.454803Z","MostPoints":787254,"MostPointsAt":"2023-02-15T06:22:53.454803Z","MostVillages":86,"MostVillagesAt":"2023-02-15T06:22:53.454803Z","LastActivityAt":"2023-02-15T06:22:53.454803Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455583Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":421,"ScoreAtt":509930,"RankDef":976,"ScoreDef":131329,"RankSup":1191,"ScoreSup":467,"RankTotal":760,"ScoreTotal":641726,"ID":699777372,"Name":"Marioesp","NumVillages":20,"Points":124004,"Rank":499,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699777372","BestRank":499,"BestRankAt":"2023-02-15T06:22:53.454804Z","MostPoints":124004,"MostPointsAt":"2023-02-15T06:22:53.454805Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.454804Z","LastActivityAt":"2023-02-15T06:22:53.454805Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455585Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1362,"ScoreAtt":4993,"RankDef":472,"ScoreDef":563099,"RankSup":612,"ScoreSup":91869,"RankTotal":748,"ScoreTotal":659961,"ID":699777556,"Name":"dami991","NumVillages":1,"Points":2036,"Rank":1656,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699777556","BestRank":1656,"BestRankAt":"2023-02-15T06:22:53.454805Z","MostPoints":2036,"MostPointsAt":"2023-02-15T06:22:53.454806Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454806Z","LastActivityAt":"2023-02-15T06:22:53.454806Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455587Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":202,"ScoreAtt":1564681,"RankDef":908,"ScoreDef":160828,"RankSup":386,"ScoreSup":337570,"RankTotal":397,"ScoreTotal":2063079,"ID":699778028,"Name":"Black Bird","NumVillages":1,"Points":875,"Rank":1893,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699778028","BestRank":1893,"BestRankAt":"2023-02-15T06:22:53.454807Z","MostPoints":875,"MostPointsAt":"2023-02-15T06:22:53.454807Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454807Z","LastActivityAt":"2023-02-15T06:22:53.454807Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455589Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699778684,"Name":"Lego.","NumVillages":1,"Points":215,"Rank":2277,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699778684","BestRank":2277,"BestRankAt":"2023-02-15T06:22:53.454808Z","MostPoints":215,"MostPointsAt":"2023-02-15T06:22:53.454808Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454808Z","LastActivityAt":"2023-02-15T06:22:53.454808Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455589Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":497,"ScoreAtt":354641,"RankDef":1411,"ScoreDef":41863,"RankSup":225,"ScoreSup":788116,"RankTotal":562,"ScoreTotal":1184620,"ID":699778867,"Name":"kimbos","NumVillages":98,"Points":864857,"Rank":168,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699778867","BestRank":168,"BestRankAt":"2023-02-15T06:22:53.454813Z","MostPoints":864857,"MostPointsAt":"2023-02-15T06:22:53.454813Z","MostVillages":98,"MostVillagesAt":"2023-02-15T06:22:53.454813Z","LastActivityAt":"2023-02-15T06:22:53.454814Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1789,"ScoreDef":13094,"RankSup":0,"ScoreSup":0,"RankTotal":1952,"ScoreTotal":13094,"ID":699779038,"Name":"Feleross","NumVillages":0,"Points":0,"Rank":3009,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699779038","BestRank":3009,"BestRankAt":"2023-02-15T06:22:53.454814Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454815Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454814Z","LastActivityAt":"2023-02-15T06:22:53.454815Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1989,"ScoreAtt":3,"RankDef":1415,"ScoreDef":41423,"RankSup":0,"ScoreSup":0,"RankTotal":1672,"ScoreTotal":41426,"ID":699780721,"Name":"ptomptom","NumVillages":1,"Points":615,"Rank":1985,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699780721","BestRank":1985,"BestRankAt":"2023-02-15T06:22:53.454815Z","MostPoints":615,"MostPointsAt":"2023-02-15T06:22:53.454816Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454816Z","LastActivityAt":"2023-02-15T06:22:53.454816Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1387,"ScoreAtt":4473,"RankDef":1852,"ScoreDef":10008,"RankSup":894,"ScoreSup":12457,"RankTotal":1802,"ScoreTotal":26938,"ID":699780873,"Name":"Lexlutor","NumVillages":2,"Points":6886,"Rank":1225,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699780873","BestRank":1225,"BestRankAt":"2023-02-15T06:22:53.454817Z","MostPoints":6886,"MostPointsAt":"2023-02-15T06:22:53.454817Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454817Z","LastActivityAt":"2023-02-15T06:22:53.454817Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1737,"ScoreAtt":375,"RankDef":0,"ScoreDef":0,"RankSup":807,"ScoreSup":23971,"RankTotal":1828,"ScoreTotal":24346,"ID":699781390,"Name":"Sir Christopher Last","NumVillages":1,"Points":792,"Rank":1921,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699781390","BestRank":1921,"BestRankAt":"2023-02-15T06:22:53.454818Z","MostPoints":792,"MostPointsAt":"2023-02-15T06:22:53.454818Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454818Z","LastActivityAt":"2023-02-15T06:22:53.454819Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":571,"ScoreAtt":248822,"RankDef":433,"ScoreDef":658831,"RankSup":1339,"ScoreSup":8,"RankTotal":652,"ScoreTotal":907661,"ID":699781605,"Name":"Asmo17","NumVillages":0,"Points":0,"Rank":3010,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699781605","BestRank":3010,"BestRankAt":"2023-02-15T06:22:53.454819Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.45482Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454819Z","LastActivityAt":"2023-02-15T06:22:53.45482Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4556Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":72,"ScoreAtt":4165341,"RankDef":9,"ScoreDef":22675493,"RankSup":50,"ScoreSup":3394119,"RankTotal":13,"ScoreTotal":30234953,"ID":699781762,"Name":"Meok","NumVillages":104,"Points":1008515,"Rank":145,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699781762","BestRank":145,"BestRankAt":"2023-02-15T06:22:53.45482Z","MostPoints":1008515,"MostPointsAt":"2023-02-15T06:22:53.454821Z","MostVillages":104,"MostVillagesAt":"2023-02-15T06:22:53.454821Z","LastActivityAt":"2023-02-15T06:22:53.454821Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4556Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":633,"ScoreAtt":177373,"RankDef":562,"ScoreDef":416148,"RankSup":854,"ScoreSup":16471,"RankTotal":772,"ScoreTotal":609992,"ID":699783063,"Name":"Tzarski707","NumVillages":3,"Points":15343,"Rank":992,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699783063","BestRank":992,"BestRankAt":"2023-02-15T06:22:53.454822Z","MostPoints":15343,"MostPointsAt":"2023-02-15T06:22:53.454822Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454822Z","LastActivityAt":"2023-02-15T06:22:53.454822Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2392,"ScoreDef":25,"RankSup":0,"ScoreSup":0,"RankTotal":2490,"ScoreTotal":25,"ID":699783641,"Name":"mily546","NumVillages":0,"Points":0,"Rank":3011,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699783641","BestRank":3011,"BestRankAt":"2023-02-15T06:22:53.454823Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454823Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454823Z","LastActivityAt":"2023-02-15T06:22:53.454823Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":3,"ScoreAtt":19374739,"RankDef":187,"ScoreDef":1997648,"RankSup":362,"ScoreSup":385964,"RankTotal":24,"ScoreTotal":21758351,"ID":699783765,"Name":"xKentinPL","NumVillages":451,"Points":4336589,"Rank":5,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699783765","BestRank":5,"BestRankAt":"2023-02-15T06:22:53.454824Z","MostPoints":4336589,"MostPointsAt":"2023-02-15T06:22:53.454825Z","MostVillages":451,"MostVillagesAt":"2023-02-15T06:22:53.454824Z","LastActivityAt":"2023-02-15T06:22:53.454825Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":63,"ScoreAtt":4406307,"RankDef":1049,"ScoreDef":108683,"RankSup":6,"ScoreSup":9746520,"RankTotal":55,"ScoreTotal":14261510,"ID":699784536,"Name":"kocziurs","NumVillages":177,"Points":1824470,"Rank":56,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699784536","BestRank":56,"BestRankAt":"2023-02-15T06:22:53.454825Z","MostPoints":1824470,"MostPointsAt":"2023-02-15T06:22:53.454826Z","MostVillages":177,"MostVillagesAt":"2023-02-15T06:22:53.454826Z","LastActivityAt":"2023-02-15T06:22:53.454826Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2068,"ScoreDef":3515,"RankSup":0,"ScoreSup":0,"RankTotal":2192,"ScoreTotal":3515,"ID":699785141,"Name":"miki021","NumVillages":1,"Points":793,"Rank":1918,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699785141","BestRank":1918,"BestRankAt":"2023-02-15T06:22:53.454827Z","MostPoints":793,"MostPointsAt":"2023-02-15T06:22:53.454827Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454827Z","LastActivityAt":"2023-02-15T06:22:53.454827Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":197,"ScoreAtt":1572983,"RankDef":477,"ScoreDef":558964,"RankSup":100,"ScoreSup":2231326,"RankTotal":217,"ScoreTotal":4363273,"ID":699785935,"Name":"Vampirka* x Czaruƛ","NumVillages":213,"Points":1912756,"Rank":52,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699785935","BestRank":52,"BestRankAt":"2023-02-15T06:22:53.454828Z","MostPoints":1912756,"MostPointsAt":"2023-02-15T06:22:53.454828Z","MostVillages":213,"MostVillagesAt":"2023-02-15T06:22:53.454828Z","LastActivityAt":"2023-02-15T06:22:53.454828Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45561Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":505,"ScoreAtt":341992,"RankDef":1316,"ScoreDef":55774,"RankSup":359,"ScoreSup":391708,"RankTotal":689,"ScoreTotal":789474,"ID":699788305,"Name":"lihtum","NumVillages":33,"Points":301410,"Rank":356,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699788305","BestRank":356,"BestRankAt":"2023-02-15T06:22:53.454829Z","MostPoints":301410,"MostPointsAt":"2023-02-15T06:22:53.454829Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.454829Z","LastActivityAt":"2023-02-15T06:22:53.45483Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699788972,"Name":"Saintros","NumVillages":1,"Points":26,"Rank":2737,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699788972","BestRank":2737,"BestRankAt":"2023-02-15T06:22:53.45483Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454831Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454831Z","LastActivityAt":"2023-02-15T06:22:53.454831Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455612Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1447,"ScoreDef":38606,"RankSup":0,"ScoreSup":0,"RankTotal":1698,"ScoreTotal":38606,"ID":699789609,"Name":"LuzakNT","NumVillages":1,"Points":2274,"Rank":1617,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699789609","BestRank":1617,"BestRankAt":"2023-02-15T06:22:53.454832Z","MostPoints":2274,"MostPointsAt":"2023-02-15T06:22:53.454832Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454832Z","LastActivityAt":"2023-02-15T06:22:53.454832Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455614Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":508,"ScoreAtt":339675,"RankDef":2058,"ScoreDef":3686,"RankSup":940,"ScoreSup":8557,"RankTotal":959,"ScoreTotal":351918,"ID":699790202,"Name":"Pokraczny850","NumVillages":1,"Points":26,"Rank":2738,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699790202","BestRank":2738,"BestRankAt":"2023-02-15T06:22:53.454833Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454833Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454833Z","LastActivityAt":"2023-02-15T06:22:53.454833Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1200,"ScoreAtt":10675,"RankDef":901,"ScoreDef":165635,"RankSup":1393,"ScoreSup":2,"RankTotal":1198,"ScoreTotal":176312,"ID":699791054,"Name":"Shooott","NumVillages":2,"Points":3501,"Rank":1463,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699791054","BestRank":1463,"BestRankAt":"2023-02-15T06:22:53.454834Z","MostPoints":3501,"MostPointsAt":"2023-02-15T06:22:53.454834Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454834Z","LastActivityAt":"2023-02-15T06:22:53.454835Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1465,"ScoreAtt":2932,"RankDef":1375,"ScoreDef":47770,"RankSup":0,"ScoreSup":0,"RankTotal":1609,"ScoreTotal":50702,"ID":699792747,"Name":"Fatality51","NumVillages":1,"Points":5653,"Rank":1292,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699792747","BestRank":1292,"BestRankAt":"2023-02-15T06:22:53.454835Z","MostPoints":5653,"MostPointsAt":"2023-02-15T06:22:53.454836Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454835Z","LastActivityAt":"2023-02-15T06:22:53.454836Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":489,"ScoreAtt":376475,"RankDef":1798,"ScoreDef":12528,"RankSup":784,"ScoreSup":28600,"RankTotal":898,"ScoreTotal":417603,"ID":699794286,"Name":"Somalija","NumVillages":1,"Points":80,"Rank":2512,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794286","BestRank":2512,"BestRankAt":"2023-02-15T06:22:53.454836Z","MostPoints":80,"MostPointsAt":"2023-02-15T06:22:53.454837Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454837Z","LastActivityAt":"2023-02-15T06:22:53.454837Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1596,"ScoreAtt":1315,"RankDef":1657,"ScoreDef":21669,"RankSup":0,"ScoreSup":0,"RankTotal":1839,"ScoreTotal":22984,"ID":699794421,"Name":"wieslaw1","NumVillages":5,"Points":15073,"Rank":996,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794421","BestRank":996,"BestRankAt":"2023-02-15T06:22:53.454838Z","MostPoints":15073,"MostPointsAt":"2023-02-15T06:22:53.454838Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454838Z","LastActivityAt":"2023-02-15T06:22:53.454838Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1740,"ScoreAtt":367,"RankDef":1774,"ScoreDef":13955,"RankSup":0,"ScoreSup":0,"RankTotal":1939,"ScoreTotal":14322,"ID":699794720,"Name":"Ozilo","NumVillages":2,"Points":6815,"Rank":1228,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794720","BestRank":1228,"BestRankAt":"2023-02-15T06:22:53.454839Z","MostPoints":6815,"MostPointsAt":"2023-02-15T06:22:53.454839Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454839Z","LastActivityAt":"2023-02-15T06:22:53.45484Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":125,"ScoreAtt":2409162,"RankDef":700,"ScoreDef":270011,"RankSup":455,"ScoreSup":219416,"RankTotal":298,"ScoreTotal":2898589,"ID":699794765,"Name":"KrulAndrzej","NumVillages":150,"Points":1047236,"Rank":135,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794765","BestRank":135,"BestRankAt":"2023-02-15T06:22:53.45484Z","MostPoints":1047236,"MostPointsAt":"2023-02-15T06:22:53.454841Z","MostVillages":150,"MostVillagesAt":"2023-02-15T06:22:53.45484Z","LastActivityAt":"2023-02-15T06:22:53.454841Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1875,"ScoreAtt":90,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2443,"ScoreTotal":90,"ID":699795301,"Name":"Paranormalny","NumVillages":1,"Points":1478,"Rank":1753,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699795301","BestRank":1753,"BestRankAt":"2023-02-15T06:22:53.454841Z","MostPoints":1478,"MostPointsAt":"2023-02-15T06:22:53.454842Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454842Z","LastActivityAt":"2023-02-15T06:22:53.454842Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":455,"ScoreAtt":439524,"RankDef":442,"ScoreDef":637875,"RankSup":425,"ScoreSup":260084,"RankTotal":530,"ScoreTotal":1337483,"ID":699795378,"Name":"hurricaneAG","NumVillages":44,"Points":400100,"Rank":302,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699795378","BestRank":302,"BestRankAt":"2023-02-15T06:22:53.454843Z","MostPoints":400100,"MostPointsAt":"2023-02-15T06:22:53.454843Z","MostVillages":44,"MostVillagesAt":"2023-02-15T06:22:53.454843Z","LastActivityAt":"2023-02-15T06:22:53.454843Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":914,"ScoreAtt":47775,"RankDef":2192,"ScoreDef":1320,"RankSup":0,"ScoreSup":0,"RankTotal":1620,"ScoreTotal":49095,"ID":699795698,"Name":"dabek","NumVillages":4,"Points":23884,"Rank":874,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699795698","BestRank":874,"BestRankAt":"2023-02-15T06:22:53.454844Z","MostPoints":23884,"MostPointsAt":"2023-02-15T06:22:53.454844Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.454844Z","LastActivityAt":"2023-02-15T06:22:53.454844Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":141,"ScoreAtt":2181650,"RankDef":842,"ScoreDef":187448,"RankSup":147,"ScoreSup":1525143,"RankTotal":239,"ScoreTotal":3894241,"ID":699796330,"Name":"SugarDandy","NumVillages":170,"Points":1360330,"Rank":89,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699796330","BestRank":89,"BestRankAt":"2023-02-15T06:22:53.454845Z","MostPoints":1360330,"MostPointsAt":"2023-02-15T06:22:53.454846Z","MostVillages":170,"MostVillagesAt":"2023-02-15T06:22:53.454845Z","LastActivityAt":"2023-02-15T06:22:53.454846Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1938,"ScoreAtt":27,"RankDef":1103,"ScoreDef":93862,"RankSup":0,"ScoreSup":0,"RankTotal":1415,"ScoreTotal":93889,"ID":699796630,"Name":"nero26","NumVillages":2,"Points":6182,"Rank":1262,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699796630","BestRank":1262,"BestRankAt":"2023-02-15T06:22:53.454846Z","MostPoints":6182,"MostPointsAt":"2023-02-15T06:22:53.454847Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454847Z","LastActivityAt":"2023-02-15T06:22:53.454847Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1808,"ScoreAtt":184,"RankDef":1981,"ScoreDef":5620,"RankSup":0,"ScoreSup":0,"RankTotal":2104,"ScoreTotal":5804,"ID":699797065,"Name":"peterw21","NumVillages":1,"Points":330,"Rank":2146,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797065","BestRank":2146,"BestRankAt":"2023-02-15T06:22:53.454848Z","MostPoints":330,"MostPointsAt":"2023-02-15T06:22:53.454848Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454848Z","LastActivityAt":"2023-02-15T06:22:53.454848Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":507,"ScoreDef":505743,"RankSup":0,"ScoreSup":0,"RankTotal":837,"ScoreTotal":505743,"ID":699797252,"Name":"Kaimek","NumVillages":1,"Points":2997,"Rank":1530,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797252","BestRank":1530,"BestRankAt":"2023-02-15T06:22:53.454849Z","MostPoints":2997,"MostPointsAt":"2023-02-15T06:22:53.454849Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454849Z","LastActivityAt":"2023-02-15T06:22:53.454849Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":550,"ScoreAtt":275816,"RankDef":304,"ScoreDef":1141082,"RankSup":502,"ScoreSup":172503,"RankTotal":477,"ScoreTotal":1589401,"ID":699797508,"Name":"biunar","NumVillages":2,"Points":14858,"Rank":998,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797508","BestRank":998,"BestRankAt":"2023-02-15T06:22:53.45485Z","MostPoints":14858,"MostPointsAt":"2023-02-15T06:22:53.45485Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.45485Z","LastActivityAt":"2023-02-15T06:22:53.454851Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1307,"ScoreAtt":6409,"RankDef":1975,"ScoreDef":5759,"RankSup":627,"ScoreSup":83388,"RankTotal":1407,"ScoreTotal":95556,"ID":699797805,"Name":"Terminatorka1992","NumVillages":14,"Points":48589,"Rank":700,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797805","BestRank":700,"BestRankAt":"2023-02-15T06:22:53.454851Z","MostPoints":48589,"MostPointsAt":"2023-02-15T06:22:53.454852Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.454851Z","LastActivityAt":"2023-02-15T06:22:53.454852Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1437,"ScoreDef":39058,"RankSup":0,"ScoreSup":0,"RankTotal":1689,"ScoreTotal":39058,"ID":699798611,"Name":"marekkkzzz665","NumVillages":1,"Points":190,"Rank":2321,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699798611","BestRank":2321,"BestRankAt":"2023-02-15T06:22:53.454853Z","MostPoints":190,"MostPointsAt":"2023-02-15T06:22:53.454853Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454853Z","LastActivityAt":"2023-02-15T06:22:53.454853Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699798847,"Name":"aquarius250000","NumVillages":1,"Points":133,"Rank":2411,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699798847","BestRank":2411,"BestRankAt":"2023-02-15T06:22:53.454854Z","MostPoints":133,"MostPointsAt":"2023-02-15T06:22:53.454854Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454854Z","LastActivityAt":"2023-02-15T06:22:53.454854Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":622,"ScoreAtt":189512,"RankDef":264,"ScoreDef":1397244,"RankSup":255,"ScoreSup":673762,"RankTotal":374,"ScoreTotal":2260518,"ID":699799629,"Name":"KaZZiu1993","NumVillages":41,"Points":352179,"Rank":324,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699799629","BestRank":324,"BestRankAt":"2023-02-15T06:22:53.454855Z","MostPoints":352179,"MostPointsAt":"2023-02-15T06:22:53.454855Z","MostVillages":41,"MostVillagesAt":"2023-02-15T06:22:53.454855Z","LastActivityAt":"2023-02-15T06:22:53.454856Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":946,"ScoreAtt":41163,"RankDef":961,"ScoreDef":138840,"RankSup":735,"ScoreSup":39460,"RankTotal":1109,"ScoreTotal":219463,"ID":699800377,"Name":"Frupek","NumVillages":3,"Points":6371,"Rank":1250,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699800377","BestRank":1250,"BestRankAt":"2023-02-15T06:22:53.454856Z","MostPoints":6371,"MostPointsAt":"2023-02-15T06:22:53.454857Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454856Z","LastActivityAt":"2023-02-15T06:22:53.454857Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1084,"ScoreAtt":19707,"RankDef":706,"ScoreDef":267507,"RankSup":1075,"ScoreSup":2427,"RankTotal":1011,"ScoreTotal":289641,"ID":699800992,"Name":"BeIIator","NumVillages":1,"Points":6057,"Rank":1266,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699800992","BestRank":1266,"BestRankAt":"2023-02-15T06:22:53.454857Z","MostPoints":6057,"MostPointsAt":"2023-02-15T06:22:53.454858Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454858Z","LastActivityAt":"2023-02-15T06:22:53.454858Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699802009,"Name":"przemekagatki","NumVillages":1,"Points":26,"Rank":2739,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699802009","BestRank":2739,"BestRankAt":"2023-02-15T06:22:53.454859Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454859Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454859Z","LastActivityAt":"2023-02-15T06:22:53.454859Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1944,"ScoreDef":6494,"RankSup":883,"ScoreSup":13906,"RankTotal":1866,"ScoreTotal":20400,"ID":699802012,"Name":"alexwpr","NumVillages":2,"Points":4668,"Rank":1358,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699802012","BestRank":1358,"BestRankAt":"2023-02-15T06:22:53.45486Z","MostPoints":4668,"MostPointsAt":"2023-02-15T06:22:53.45486Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.45486Z","LastActivityAt":"2023-02-15T06:22:53.45486Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":905,"ScoreAtt":48877,"RankDef":151,"ScoreDef":2549925,"RankSup":705,"ScoreSup":48364,"RankTotal":329,"ScoreTotal":2647166,"ID":699803070,"Name":"Ravmlm","NumVillages":0,"Points":0,"Rank":3012,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699803070","BestRank":3012,"BestRankAt":"2023-02-15T06:22:53.454861Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454862Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454861Z","LastActivityAt":"2023-02-15T06:22:53.454862Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45565Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2166,"ScoreDef":1743,"RankSup":0,"ScoreSup":0,"RankTotal":2265,"ScoreTotal":1743,"ID":699803189,"Name":"MojaJedynaMiƂoƛć","NumVillages":3,"Points":7893,"Rank":1164,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699803189","BestRank":1164,"BestRankAt":"2023-02-15T06:22:53.454862Z","MostPoints":7893,"MostPointsAt":"2023-02-15T06:22:53.454863Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454863Z","LastActivityAt":"2023-02-15T06:22:53.454863Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699803939,"Name":"Drain","NumVillages":1,"Points":908,"Rank":1886,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699803939","BestRank":1886,"BestRankAt":"2023-02-15T06:22:53.454864Z","MostPoints":908,"MostPointsAt":"2023-02-15T06:22:53.454864Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454864Z","LastActivityAt":"2023-02-15T06:22:53.454864Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":424,"ScoreAtt":505048,"RankDef":1865,"ScoreDef":9585,"RankSup":826,"ScoreSup":20157,"RankTotal":818,"ScoreTotal":534790,"ID":699804790,"Name":"snake5665","NumVillages":42,"Points":320873,"Rank":347,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699804790","BestRank":347,"BestRankAt":"2023-02-15T06:22:53.454865Z","MostPoints":320873,"MostPointsAt":"2023-02-15T06:22:53.454865Z","MostVillages":42,"MostVillagesAt":"2023-02-15T06:22:53.454865Z","LastActivityAt":"2023-02-15T06:22:53.454865Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":994,"ScoreAtt":31250,"RankDef":1872,"ScoreDef":9222,"RankSup":734,"ScoreSup":39934,"RankTotal":1462,"ScoreTotal":80406,"ID":699805379,"Name":"Pampun","NumVillages":10,"Points":18153,"Rank":945,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699805379","BestRank":945,"BestRankAt":"2023-02-15T06:22:53.454866Z","MostPoints":18153,"MostPointsAt":"2023-02-15T06:22:53.454867Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.454866Z","LastActivityAt":"2023-02-15T06:22:53.454867Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1600,"ScoreAtt":1285,"RankDef":1664,"ScoreDef":21150,"RankSup":370,"ScoreSup":368236,"RankTotal":925,"ScoreTotal":390671,"ID":699805839,"Name":"DejMon","NumVillages":22,"Points":111692,"Rank":518,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699805839","BestRank":518,"BestRankAt":"2023-02-15T06:22:53.454867Z","MostPoints":111692,"MostPointsAt":"2023-02-15T06:22:53.454868Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.454868Z","LastActivityAt":"2023-02-15T06:22:53.454868Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699807296,"Name":"Kuba555","NumVillages":1,"Points":318,"Rank":2156,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699807296","BestRank":2156,"BestRankAt":"2023-02-15T06:22:53.454869Z","MostPoints":318,"MostPointsAt":"2023-02-15T06:22:53.454869Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454869Z","LastActivityAt":"2023-02-15T06:22:53.454869Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699808655,"Name":"solek4321","NumVillages":1,"Points":1059,"Rank":1846,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699808655","BestRank":1846,"BestRankAt":"2023-02-15T06:22:53.454886Z","MostPoints":1059,"MostPointsAt":"2023-02-15T06:22:53.454887Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454886Z","LastActivityAt":"2023-02-15T06:22:53.454887Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2300,"ScoreDef":298,"RankSup":0,"ScoreSup":0,"RankTotal":2383,"ScoreTotal":298,"ID":699811133,"Name":"bleta spz","NumVillages":1,"Points":275,"Rank":2201,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699811133","BestRank":2201,"BestRankAt":"2023-02-15T06:22:53.454888Z","MostPoints":275,"MostPointsAt":"2023-02-15T06:22:53.454888Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454888Z","LastActivityAt":"2023-02-15T06:22:53.454888Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1804,"ScoreDef":12181,"RankSup":0,"ScoreSup":0,"RankTotal":1966,"ScoreTotal":12181,"ID":699811844,"Name":"Time Traveler","NumVillages":1,"Points":26,"Rank":2740,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699811844","BestRank":2740,"BestRankAt":"2023-02-15T06:22:53.454889Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454889Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454889Z","LastActivityAt":"2023-02-15T06:22:53.454889Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":379,"ScoreAtt":618674,"RankDef":1854,"ScoreDef":9924,"RankSup":801,"ScoreSup":24629,"RankTotal":752,"ScoreTotal":653227,"ID":699812007,"Name":"Pediadoks","NumVillages":26,"Points":203060,"Rank":412,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812007","BestRank":412,"BestRankAt":"2023-02-15T06:22:53.45489Z","MostPoints":203060,"MostPointsAt":"2023-02-15T06:22:53.45489Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.45489Z","LastActivityAt":"2023-02-15T06:22:53.454891Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":996,"ScoreAtt":31042,"RankDef":603,"ScoreDef":378930,"RankSup":1204,"ScoreSup":362,"RankTotal":905,"ScoreTotal":410334,"ID":699812351,"Name":"Lisu79","NumVillages":5,"Points":9109,"Rank":1117,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812351","BestRank":1117,"BestRankAt":"2023-02-15T06:22:53.454891Z","MostPoints":9109,"MostPointsAt":"2023-02-15T06:22:53.454892Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454891Z","LastActivityAt":"2023-02-15T06:22:53.454892Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":784,"ScoreAtt":87112,"RankDef":1340,"ScoreDef":53090,"RankSup":1319,"ScoreSup":15,"RankTotal":1271,"ScoreTotal":140217,"ID":699812571,"Name":"kryska6969","NumVillages":2,"Points":3701,"Rank":1440,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812571","BestRank":1440,"BestRankAt":"2023-02-15T06:22:53.454892Z","MostPoints":3701,"MostPointsAt":"2023-02-15T06:22:53.454893Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454893Z","LastActivityAt":"2023-02-15T06:22:53.454893Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1572,"ScoreAtt":1609,"RankDef":818,"ScoreDef":198897,"RankSup":1375,"ScoreSup":3,"RankTotal":1137,"ScoreTotal":200509,"ID":699812653,"Name":"King Arkadius 1","NumVillages":1,"Points":1055,"Rank":1847,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812653","BestRank":1847,"BestRankAt":"2023-02-15T06:22:53.454894Z","MostPoints":1055,"MostPointsAt":"2023-02-15T06:22:53.454894Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454894Z","LastActivityAt":"2023-02-15T06:22:53.454894Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699812824,"Name":"WhiteMuffin","NumVillages":1,"Points":32,"Rank":2618,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812824","BestRank":2618,"BestRankAt":"2023-02-15T06:22:53.454895Z","MostPoints":32,"MostPointsAt":"2023-02-15T06:22:53.454895Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454895Z","LastActivityAt":"2023-02-15T06:22:53.454896Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699812828,"Name":"RYSIO E46","NumVillages":1,"Points":26,"Rank":2741,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812828","BestRank":2741,"BestRankAt":"2023-02-15T06:22:53.454896Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454897Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454896Z","LastActivityAt":"2023-02-15T06:22:53.454897Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1392,"ScoreAtt":4285,"RankDef":1477,"ScoreDef":36243,"RankSup":0,"ScoreSup":0,"RankTotal":1680,"ScoreTotal":40528,"ID":699812869,"Name":"TheKingDestroyer","NumVillages":1,"Points":3257,"Rank":1498,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812869","BestRank":1498,"BestRankAt":"2023-02-15T06:22:53.454897Z","MostPoints":3257,"MostPointsAt":"2023-02-15T06:22:53.454898Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454898Z","LastActivityAt":"2023-02-15T06:22:53.454898Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699813587,"Name":"Monsio","NumVillages":1,"Points":194,"Rank":2314,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699813587","BestRank":2314,"BestRankAt":"2023-02-15T06:22:53.454899Z","MostPoints":194,"MostPointsAt":"2023-02-15T06:22:53.454899Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454899Z","LastActivityAt":"2023-02-15T06:22:53.454899Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":118,"ScoreAtt":2527437,"RankDef":324,"ScoreDef":1026576,"RankSup":117,"ScoreSup":1927982,"RankTotal":167,"ScoreTotal":5481995,"ID":699814283,"Name":"Majson x SZEF RYSZARD","NumVillages":1,"Points":8266,"Rank":1146,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699814283","BestRank":1146,"BestRankAt":"2023-02-15T06:22:53.4549Z","MostPoints":8266,"MostPointsAt":"2023-02-15T06:22:53.4549Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.4549Z","LastActivityAt":"2023-02-15T06:22:53.4549Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1643,"ScoreAtt":892,"RankDef":773,"ScoreDef":229009,"RankSup":1218,"ScoreSup":303,"RankTotal":1087,"ScoreTotal":230204,"ID":699816699,"Name":"ksiÄ…ĆŒÄ™ plemienia","NumVillages":1,"Points":834,"Rank":1910,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699816699","BestRank":1910,"BestRankAt":"2023-02-15T06:22:53.454901Z","MostPoints":834,"MostPointsAt":"2023-02-15T06:22:53.454901Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454901Z","LastActivityAt":"2023-02-15T06:22:53.454902Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":806,"ScoreAtt":77536,"RankDef":1775,"ScoreDef":13912,"RankSup":0,"ScoreSup":0,"RankTotal":1430,"ScoreTotal":91448,"ID":699818726,"Name":"Felicjan","NumVillages":23,"Points":159097,"Rank":449,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699818726","BestRank":449,"BestRankAt":"2023-02-15T06:22:53.454902Z","MostPoints":159097,"MostPointsAt":"2023-02-15T06:22:53.454903Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.454903Z","LastActivityAt":"2023-02-15T06:22:53.454903Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":298,"ScoreAtt":920690,"RankDef":169,"ScoreDef":2214059,"RankSup":737,"ScoreSup":38829,"RankTotal":276,"ScoreTotal":3173578,"ID":699820572,"Name":"Stresik","NumVillages":1,"Points":129,"Rank":2419,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699820572","BestRank":2419,"BestRankAt":"2023-02-15T06:22:53.454904Z","MostPoints":129,"MostPointsAt":"2023-02-15T06:22:53.454904Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454904Z","LastActivityAt":"2023-02-15T06:22:53.454904Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699820969,"Name":"NikoMat","NumVillages":1,"Points":53,"Rank":2572,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699820969","BestRank":2572,"BestRankAt":"2023-02-15T06:22:53.454905Z","MostPoints":53,"MostPointsAt":"2023-02-15T06:22:53.454905Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454905Z","LastActivityAt":"2023-02-15T06:22:53.454905Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":695,"ScoreAtt":134908,"RankDef":268,"ScoreDef":1388376,"RankSup":1046,"ScoreSup":3060,"RankTotal":487,"ScoreTotal":1526344,"ID":699821629,"Name":"Lady Miriam","NumVillages":12,"Points":52629,"Rank":676,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699821629","BestRank":676,"BestRankAt":"2023-02-15T06:22:53.454906Z","MostPoints":52629,"MostPointsAt":"2023-02-15T06:22:53.454906Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.454906Z","LastActivityAt":"2023-02-15T06:22:53.454907Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":968,"ScoreAtt":35667,"RankDef":910,"ScoreDef":158658,"RankSup":0,"ScoreSup":0,"RankTotal":1148,"ScoreTotal":194325,"ID":699821755,"Name":"Dawidoff","NumVillages":3,"Points":21199,"Rank":899,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699821755","BestRank":899,"BestRankAt":"2023-02-15T06:22:53.454907Z","MostPoints":21199,"MostPointsAt":"2023-02-15T06:22:53.454908Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454907Z","LastActivityAt":"2023-02-15T06:22:53.454908Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1816,"ScoreDef":11520,"RankSup":0,"ScoreSup":0,"RankTotal":1978,"ScoreTotal":11520,"ID":699823365,"Name":"lulus69","NumVillages":0,"Points":0,"Rank":3013,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699823365","BestRank":3013,"BestRankAt":"2023-02-15T06:22:53.454908Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454909Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454909Z","LastActivityAt":"2023-02-15T06:22:53.454909Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":959,"ScoreAtt":37448,"RankDef":1884,"ScoreDef":8701,"RankSup":1376,"ScoreSup":3,"RankTotal":1639,"ScoreTotal":46152,"ID":699823490,"Name":"hubert21227","NumVillages":11,"Points":67164,"Rank":625,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699823490","BestRank":625,"BestRankAt":"2023-02-15T06:22:53.45491Z","MostPoints":67164,"MostPointsAt":"2023-02-15T06:22:53.45491Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.45491Z","LastActivityAt":"2023-02-15T06:22:53.45491Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":746,"ScoreAtt":104449,"RankDef":640,"ScoreDef":336160,"RankSup":721,"ScoreSup":42526,"RankTotal":853,"ScoreTotal":483135,"ID":699825089,"Name":"miro75","NumVillages":1,"Points":32,"Rank":2619,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825089","BestRank":2619,"BestRankAt":"2023-02-15T06:22:53.454911Z","MostPoints":32,"MostPointsAt":"2023-02-15T06:22:53.454911Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454911Z","LastActivityAt":"2023-02-15T06:22:53.454912Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":818,"ScoreAtt":73736,"RankDef":1017,"ScoreDef":121840,"RankSup":1292,"ScoreSup":36,"RankTotal":1142,"ScoreTotal":195612,"ID":699825236,"Name":"magregor","NumVillages":14,"Points":100517,"Rank":538,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825236","BestRank":538,"BestRankAt":"2023-02-15T06:22:53.454912Z","MostPoints":100517,"MostPointsAt":"2023-02-15T06:22:53.454913Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.454912Z","LastActivityAt":"2023-02-15T06:22:53.454913Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699825797,"Name":"gozzi vel jammeroe","NumVillages":1,"Points":172,"Rank":2350,"TribeID":1810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825797","BestRank":2350,"BestRankAt":"2023-02-15T06:22:53.454913Z","MostPoints":172,"MostPointsAt":"2023-02-15T06:22:53.454914Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454914Z","LastActivityAt":"2023-02-15T06:22:53.454914Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2355,"ScoreDef":67,"RankSup":0,"ScoreSup":0,"RankTotal":2451,"ScoreTotal":67,"ID":699825977,"Name":"Feruell","NumVillages":1,"Points":133,"Rank":2412,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825977","BestRank":2412,"BestRankAt":"2023-02-15T06:22:53.454915Z","MostPoints":133,"MostPointsAt":"2023-02-15T06:22:53.454915Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454915Z","LastActivityAt":"2023-02-15T06:22:53.454915Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1828,"ScoreAtt":150,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2417,"ScoreTotal":150,"ID":699826312,"Name":"grzeg","NumVillages":1,"Points":371,"Rank":2112,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699826312","BestRank":2112,"BestRankAt":"2023-02-15T06:22:53.454916Z","MostPoints":371,"MostPointsAt":"2023-02-15T06:22:53.454916Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454916Z","LastActivityAt":"2023-02-15T06:22:53.454917Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2297,"ScoreDef":305,"RankSup":0,"ScoreSup":0,"RankTotal":2381,"ScoreTotal":305,"ID":699826996,"Name":"krzyĆŒak1","NumVillages":1,"Points":1086,"Rank":1838,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699826996","BestRank":1838,"BestRankAt":"2023-02-15T06:22:53.454917Z","MostPoints":1086,"MostPointsAt":"2023-02-15T06:22:53.454918Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454917Z","LastActivityAt":"2023-02-15T06:22:53.454918Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":157,"ScoreAtt":1999002,"RankDef":330,"ScoreDef":992017,"RankSup":343,"ScoreSup":418713,"RankTotal":260,"ScoreTotal":3409732,"ID":699827112,"Name":"Orientall","NumVillages":34,"Points":316648,"Rank":350,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699827112","BestRank":350,"BestRankAt":"2023-02-15T06:22:53.454918Z","MostPoints":316648,"MostPointsAt":"2023-02-15T06:22:53.454919Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.454919Z","LastActivityAt":"2023-02-15T06:22:53.454919Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1855,"ScoreAtt":120,"RankDef":1684,"ScoreDef":19740,"RankSup":0,"ScoreSup":0,"RankTotal":1878,"ScoreTotal":19860,"ID":699828338,"Name":"Pigula1983","NumVillages":1,"Points":5589,"Rank":1297,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699828338","BestRank":1297,"BestRankAt":"2023-02-15T06:22:53.45492Z","MostPoints":5589,"MostPointsAt":"2023-02-15T06:22:53.45492Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45492Z","LastActivityAt":"2023-02-15T06:22:53.45492Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":218,"ScoreAtt":1367246,"RankDef":821,"ScoreDef":197476,"RankSup":16,"ScoreSup":5986760,"RankTotal":110,"ScoreTotal":7551482,"ID":699828442,"Name":"Adalino","NumVillages":125,"Points":1038901,"Rank":138,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699828442","BestRank":138,"BestRankAt":"2023-02-15T06:22:53.454921Z","MostPoints":1038901,"MostPointsAt":"2023-02-15T06:22:53.454921Z","MostVillages":125,"MostVillagesAt":"2023-02-15T06:22:53.454921Z","LastActivityAt":"2023-02-15T06:22:53.454921Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":318,"ScoreAtt":839593,"RankDef":906,"ScoreDef":163223,"RankSup":25,"ScoreSup":4822675,"RankTotal":157,"ScoreTotal":5825491,"ID":699828685,"Name":"myself","NumVillages":136,"Points":1082541,"Rank":129,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699828685","BestRank":129,"BestRankAt":"2023-02-15T06:22:53.454922Z","MostPoints":1082541,"MostPointsAt":"2023-02-15T06:22:53.454923Z","MostVillages":136,"MostVillagesAt":"2023-02-15T06:22:53.454922Z","LastActivityAt":"2023-02-15T06:22:53.454923Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1011,"ScoreAtt":28618,"RankDef":2136,"ScoreDef":2135,"RankSup":791,"ScoreSup":27191,"RankTotal":1570,"ScoreTotal":57944,"ID":699829494,"Name":"BOA1","NumVillages":7,"Points":31396,"Rank":799,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699829494","BestRank":799,"BestRankAt":"2023-02-15T06:22:53.454923Z","MostPoints":31396,"MostPointsAt":"2023-02-15T06:22:53.454924Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454924Z","LastActivityAt":"2023-02-15T06:22:53.454924Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45571Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1289,"ScoreAtt":6763,"RankDef":1097,"ScoreDef":94748,"RankSup":1254,"ScoreSup":121,"RankTotal":1386,"ScoreTotal":101632,"ID":699829916,"Name":"Scarface91","NumVillages":1,"Points":3006,"Rank":1528,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699829916","BestRank":1528,"BestRankAt":"2023-02-15T06:22:53.454925Z","MostPoints":3006,"MostPointsAt":"2023-02-15T06:22:53.454925Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454925Z","LastActivityAt":"2023-02-15T06:22:53.454925Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1849,"ScoreDef":10061,"RankSup":0,"ScoreSup":0,"RankTotal":1998,"ScoreTotal":10061,"ID":699829975,"Name":"amsz","NumVillages":1,"Points":26,"Rank":2742,"TribeID":415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699829975","BestRank":2742,"BestRankAt":"2023-02-15T06:22:53.454926Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454926Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454926Z","LastActivityAt":"2023-02-15T06:22:53.454926Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1065,"ScoreAtt":21686,"RankDef":1585,"ScoreDef":26496,"RankSup":0,"ScoreSup":0,"RankTotal":1627,"ScoreTotal":48182,"ID":699830255,"Name":"Lord Sloik1935","NumVillages":5,"Points":25790,"Rank":852,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699830255","BestRank":852,"BestRankAt":"2023-02-15T06:22:53.454927Z","MostPoints":25790,"MostPointsAt":"2023-02-15T06:22:53.454927Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454927Z","LastActivityAt":"2023-02-15T06:22:53.454928Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2216,"ScoreDef":914,"RankSup":0,"ScoreSup":0,"RankTotal":2308,"ScoreTotal":914,"ID":699831193,"Name":"daria519","NumVillages":1,"Points":1530,"Rank":1748,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831193","BestRank":1748,"BestRankAt":"2023-02-15T06:22:53.454928Z","MostPoints":1530,"MostPointsAt":"2023-02-15T06:22:53.454929Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454928Z","LastActivityAt":"2023-02-15T06:22:53.454929Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1263,"ScoreDef":61296,"RankSup":0,"ScoreSup":0,"RankTotal":1547,"ScoreTotal":61296,"ID":699831366,"Name":"P0L0","NumVillages":0,"Points":0,"Rank":3014,"TribeID":443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831366","BestRank":3014,"BestRankAt":"2023-02-15T06:22:53.45493Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.45493Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.45493Z","LastActivityAt":"2023-02-15T06:22:53.45493Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699831524,"Name":"Pan ƚwirusek","NumVillages":1,"Points":26,"Rank":2743,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831524","BestRank":2743,"BestRankAt":"2023-02-15T06:22:53.454931Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454931Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454931Z","LastActivityAt":"2023-02-15T06:22:53.454931Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699831603,"Name":"Maniek.W","NumVillages":1,"Points":26,"Rank":2744,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831603","BestRank":2744,"BestRankAt":"2023-02-15T06:22:53.454932Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454932Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454932Z","LastActivityAt":"2023-02-15T06:22:53.454933Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1220,"ScoreAtt":9902,"RankDef":844,"ScoreDef":186811,"RankSup":1221,"ScoreSup":273,"RankTotal":1140,"ScoreTotal":196986,"ID":699831860,"Name":"kawon2","NumVillages":2,"Points":2342,"Rank":1607,"TribeID":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831860","BestRank":1607,"BestRankAt":"2023-02-15T06:22:53.454933Z","MostPoints":2342,"MostPointsAt":"2023-02-15T06:22:53.454934Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454933Z","LastActivityAt":"2023-02-15T06:22:53.454934Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":480,"ScoreDef":554941,"RankSup":0,"ScoreSup":0,"RankTotal":800,"ScoreTotal":554941,"ID":699832431,"Name":"sznur","NumVillages":1,"Points":351,"Rank":2124,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699832431","BestRank":2124,"BestRankAt":"2023-02-15T06:22:53.454934Z","MostPoints":351,"MostPointsAt":"2023-02-15T06:22:53.454935Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454935Z","LastActivityAt":"2023-02-15T06:22:53.454935Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":850,"ScoreAtt":63633,"RankDef":801,"ScoreDef":210034,"RankSup":333,"ScoreSup":441183,"RankTotal":721,"ScoreTotal":714850,"ID":699832463,"Name":"msramfis","NumVillages":5,"Points":20016,"Rank":914,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699832463","BestRank":914,"BestRankAt":"2023-02-15T06:22:53.454936Z","MostPoints":20016,"MostPointsAt":"2023-02-15T06:22:53.454936Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454936Z","LastActivityAt":"2023-02-15T06:22:53.454936Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699832737,"Name":"LOCODEMACONHA","NumVillages":1,"Points":26,"Rank":2745,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699832737","BestRank":2745,"BestRankAt":"2023-02-15T06:22:53.454937Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454937Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454937Z","LastActivityAt":"2023-02-15T06:22:53.454938Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":763,"ScoreAtt":95308,"RankDef":149,"ScoreDef":2565869,"RankSup":980,"ScoreSup":6133,"RankTotal":325,"ScoreTotal":2667310,"ID":699833171,"Name":"Roffi","NumVillages":21,"Points":123279,"Rank":501,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699833171","BestRank":501,"BestRankAt":"2023-02-15T06:22:53.454938Z","MostPoints":123279,"MostPointsAt":"2023-02-15T06:22:53.454939Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.454938Z","LastActivityAt":"2023-02-15T06:22:53.454939Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":243,"ScoreAtt":1168652,"RankDef":355,"ScoreDef":876737,"RankSup":413,"ScoreSup":291261,"RankTotal":366,"ScoreTotal":2336650,"ID":699834004,"Name":"Zero-","NumVillages":48,"Points":406489,"Rank":299,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699834004","BestRank":299,"BestRankAt":"2023-02-15T06:22:53.454939Z","MostPoints":406489,"MostPointsAt":"2023-02-15T06:22:53.45494Z","MostVillages":48,"MostVillagesAt":"2023-02-15T06:22:53.45494Z","LastActivityAt":"2023-02-15T06:22:53.45494Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1553,"ScoreAtt":1814,"RankDef":2159,"ScoreDef":1828,"RankSup":0,"ScoreSup":0,"RankTotal":2186,"ScoreTotal":3642,"ID":699835178,"Name":"CrazyJack","NumVillages":1,"Points":182,"Rank":2333,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699835178","BestRank":2333,"BestRankAt":"2023-02-15T06:22:53.454941Z","MostPoints":182,"MostPointsAt":"2023-02-15T06:22:53.454941Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454941Z","LastActivityAt":"2023-02-15T06:22:53.454941Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699836388,"Name":"RED87","NumVillages":1,"Points":97,"Rank":2491,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699836388","BestRank":2491,"BestRankAt":"2023-02-15T06:22:53.454942Z","MostPoints":97,"MostPointsAt":"2023-02-15T06:22:53.454942Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454942Z","LastActivityAt":"2023-02-15T06:22:53.454942Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":949,"ScoreAtt":40331,"RankDef":1758,"ScoreDef":14911,"RankSup":1386,"ScoreSup":2,"RankTotal":1585,"ScoreTotal":55244,"ID":699837483,"Name":"MarcelloGawron","NumVillages":6,"Points":22878,"Rank":883,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699837483","BestRank":883,"BestRankAt":"2023-02-15T06:22:53.454943Z","MostPoints":22878,"MostPointsAt":"2023-02-15T06:22:53.454944Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.454943Z","LastActivityAt":"2023-02-15T06:22:53.454944Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":875,"ScoreAtt":56935,"RankDef":285,"ScoreDef":1265509,"RankSup":419,"ScoreSup":279345,"RankTotal":476,"ScoreTotal":1601789,"ID":699837826,"Name":"pierer123","NumVillages":16,"Points":68055,"Rank":622,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699837826","BestRank":622,"BestRankAt":"2023-02-15T06:22:53.454944Z","MostPoints":68055,"MostPointsAt":"2023-02-15T06:22:53.454945Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.454945Z","LastActivityAt":"2023-02-15T06:22:53.454945Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2374,"ScoreDef":40,"RankSup":0,"ScoreSup":0,"RankTotal":2473,"ScoreTotal":40,"ID":699840189,"Name":"piro78","NumVillages":1,"Points":3534,"Rank":1457,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699840189","BestRank":1457,"BestRankAt":"2023-02-15T06:22:53.454946Z","MostPoints":3534,"MostPointsAt":"2023-02-15T06:22:53.454946Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454946Z","LastActivityAt":"2023-02-15T06:22:53.454946Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455738Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699841905,"Name":"Donek94","NumVillages":1,"Points":3464,"Rank":1469,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699841905","BestRank":1469,"BestRankAt":"2023-02-15T06:22:53.454947Z","MostPoints":3464,"MostPointsAt":"2023-02-15T06:22:53.454947Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454947Z","LastActivityAt":"2023-02-15T06:22:53.454947Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45574Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1319,"ScoreDef":55536,"RankSup":0,"ScoreSup":0,"RankTotal":1582,"ScoreTotal":55536,"ID":699841959,"Name":"Koticzak","NumVillages":1,"Points":3627,"Rank":1446,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699841959","BestRank":1446,"BestRankAt":"2023-02-15T06:22:53.454948Z","MostPoints":3627,"MostPointsAt":"2023-02-15T06:22:53.454948Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454948Z","LastActivityAt":"2023-02-15T06:22:53.454949Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45574Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699842078,"Name":"VencedorPL","NumVillages":1,"Points":26,"Rank":2746,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699842078","BestRank":2746,"BestRankAt":"2023-02-15T06:22:53.454949Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.45495Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45495Z","LastActivityAt":"2023-02-15T06:22:53.45495Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455742Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1677,"ScoreDef":20066,"RankSup":0,"ScoreSup":0,"RankTotal":1874,"ScoreTotal":20066,"ID":699842853,"Name":"kriz73","NumVillages":2,"Points":2562,"Rank":1578,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699842853","BestRank":1578,"BestRankAt":"2023-02-15T06:22:53.454951Z","MostPoints":2562,"MostPointsAt":"2023-02-15T06:22:53.454951Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.454951Z","LastActivityAt":"2023-02-15T06:22:53.454951Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455744Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1671,"ScoreAtt":727,"RankDef":2353,"ScoreDef":74,"RankSup":0,"ScoreSup":0,"RankTotal":2319,"ScoreTotal":801,"ID":699843389,"Name":"Foks","NumVillages":1,"Points":482,"Rank":2042,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699843389","BestRank":2042,"BestRankAt":"2023-02-15T06:22:53.454952Z","MostPoints":482,"MostPointsAt":"2023-02-15T06:22:53.454952Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454952Z","LastActivityAt":"2023-02-15T06:22:53.454952Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455745Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1157,"ScoreAtt":13382,"RankDef":636,"ScoreDef":340334,"RankSup":809,"ScoreSup":23652,"RankTotal":937,"ScoreTotal":377368,"ID":699843417,"Name":"hello11","NumVillages":0,"Points":0,"Rank":3015,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699843417","BestRank":3015,"BestRankAt":"2023-02-15T06:22:53.454953Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454953Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454953Z","LastActivityAt":"2023-02-15T06:22:53.454954Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455746Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2500,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2570,"ScoreTotal":2,"ID":699843936,"Name":"Marecki2222","NumVillages":1,"Points":50,"Rank":2583,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699843936","BestRank":2583,"BestRankAt":"2023-02-15T06:22:53.454954Z","MostPoints":50,"MostPointsAt":"2023-02-15T06:22:53.454955Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454954Z","LastActivityAt":"2023-02-15T06:22:53.454955Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455748Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1710,"ScoreAtt":545,"RankDef":1834,"ScoreDef":10752,"RankSup":0,"ScoreSup":0,"RankTotal":1983,"ScoreTotal":11297,"ID":699844314,"Name":"Szarik1","NumVillages":7,"Points":16152,"Rank":980,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844314","BestRank":980,"BestRankAt":"2023-02-15T06:22:53.454955Z","MostPoints":16152,"MostPointsAt":"2023-02-15T06:22:53.454956Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454956Z","LastActivityAt":"2023-02-15T06:22:53.454956Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45575Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1283,"ScoreAtt":6932,"RankDef":1074,"ScoreDef":100826,"RankSup":763,"ScoreSup":33121,"RankTotal":1268,"ScoreTotal":140879,"ID":699844594,"Name":"MocarnyCzosnek","NumVillages":0,"Points":0,"Rank":3016,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844594","BestRank":3016,"BestRankAt":"2023-02-15T06:22:53.454957Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454957Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454957Z","LastActivityAt":"2023-02-15T06:22:53.454957Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455751Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":745,"ScoreAtt":105033,"RankDef":320,"ScoreDef":1059806,"RankSup":884,"ScoreSup":13822,"RankTotal":566,"ScoreTotal":1178661,"ID":699844727,"Name":"Marcinho10","NumVillages":1,"Points":2040,"Rank":1655,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844727","BestRank":1655,"BestRankAt":"2023-02-15T06:22:53.454958Z","MostPoints":2040,"MostPointsAt":"2023-02-15T06:22:53.454958Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454958Z","LastActivityAt":"2023-02-15T06:22:53.454959Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455753Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2470,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2547,"ScoreTotal":10,"ID":699844880,"Name":"kilolo","NumVillages":1,"Points":321,"Rank":2154,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844880","BestRank":2154,"BestRankAt":"2023-02-15T06:22:53.454959Z","MostPoints":321,"MostPointsAt":"2023-02-15T06:22:53.45496Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454959Z","LastActivityAt":"2023-02-15T06:22:53.45496Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455755Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1076,"ScoreAtt":20375,"RankDef":1318,"ScoreDef":55700,"RankSup":1057,"ScoreSup":2804,"RankTotal":1470,"ScoreTotal":78879,"ID":699845400,"Name":"czarny1975","NumVillages":5,"Points":31338,"Rank":801,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699845400","BestRank":801,"BestRankAt":"2023-02-15T06:22:53.45496Z","MostPoints":31338,"MostPointsAt":"2023-02-15T06:22:53.454961Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454961Z","LastActivityAt":"2023-02-15T06:22:53.454961Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455756Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699845927,"Name":"PROboszczz","NumVillages":1,"Points":74,"Rank":2526,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699845927","BestRank":2526,"BestRankAt":"2023-02-15T06:22:53.454962Z","MostPoints":74,"MostPointsAt":"2023-02-15T06:22:53.454962Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454962Z","LastActivityAt":"2023-02-15T06:22:53.454962Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455758Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":372,"ScoreAtt":634999,"RankDef":247,"ScoreDef":1528523,"RankSup":655,"ScoreSup":68691,"RankTotal":379,"ScoreTotal":2232213,"ID":699846892,"Name":"Kupsztajl","NumVillages":63,"Points":435755,"Rank":288,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699846892","BestRank":288,"BestRankAt":"2023-02-15T06:22:53.454963Z","MostPoints":435755,"MostPointsAt":"2023-02-15T06:22:53.454963Z","MostVillages":63,"MostVillagesAt":"2023-02-15T06:22:53.454963Z","LastActivityAt":"2023-02-15T06:22:53.454963Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455759Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699847354,"Name":"jaro222","NumVillages":1,"Points":235,"Rank":2246,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699847354","BestRank":2246,"BestRankAt":"2023-02-15T06:22:53.454964Z","MostPoints":235,"MostPointsAt":"2023-02-15T06:22:53.454965Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454964Z","LastActivityAt":"2023-02-15T06:22:53.454965Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455761Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":437,"ScoreAtt":471992,"RankDef":31,"ScoreDef":11031147,"RankSup":248,"ScoreSup":714338,"RankTotal":64,"ScoreTotal":12217477,"ID":699849210,"Name":"Alicei","NumVillages":58,"Points":378748,"Rank":308,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699849210","BestRank":308,"BestRankAt":"2023-02-15T06:22:53.454965Z","MostPoints":378748,"MostPointsAt":"2023-02-15T06:22:53.454966Z","MostVillages":58,"MostVillagesAt":"2023-02-15T06:22:53.454966Z","LastActivityAt":"2023-02-15T06:22:53.454966Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455762Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":395,"ScoreAtt":593804,"RankDef":411,"ScoreDef":718390,"RankSup":305,"ScoreSup":518013,"RankTotal":432,"ScoreTotal":1830207,"ID":699850967,"Name":"GeraltV47","NumVillages":1,"Points":351,"Rank":2125,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699850967","BestRank":2125,"BestRankAt":"2023-02-15T06:22:53.454967Z","MostPoints":351,"MostPointsAt":"2023-02-15T06:22:53.454967Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454967Z","LastActivityAt":"2023-02-15T06:22:53.454967Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455764Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699851001,"Name":"drrakox","NumVillages":1,"Points":26,"Rank":2747,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851001","BestRank":2747,"BestRankAt":"2023-02-15T06:22:53.454968Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454968Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454968Z","LastActivityAt":"2023-02-15T06:22:53.454968Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455766Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":522,"ScoreAtt":321406,"RankDef":1548,"ScoreDef":29772,"RankSup":945,"ScoreSup":8257,"RankTotal":951,"ScoreTotal":359435,"ID":699851345,"Name":"Krolik14","NumVillages":26,"Points":236474,"Rank":389,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851345","BestRank":389,"BestRankAt":"2023-02-15T06:22:53.454969Z","MostPoints":236474,"MostPointsAt":"2023-02-15T06:22:53.454969Z","MostVillages":26,"MostVillagesAt":"2023-02-15T06:22:53.454969Z","LastActivityAt":"2023-02-15T06:22:53.45497Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455767Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":247,"ScoreAtt":1143893,"RankDef":1261,"ScoreDef":61636,"RankSup":460,"ScoreSup":214212,"RankTotal":511,"ScoreTotal":1419741,"ID":699851426,"Name":"Sir ƚmigi","NumVillages":0,"Points":0,"Rank":3017,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851426","BestRank":3017,"BestRankAt":"2023-02-15T06:22:53.45497Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454971Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.45497Z","LastActivityAt":"2023-02-15T06:22:53.454971Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455768Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":32,"ScoreAtt":6374797,"RankDef":686,"ScoreDef":283161,"RankSup":49,"ScoreSup":3411085,"RankTotal":78,"ScoreTotal":10069043,"ID":699851427,"Name":"ScigusseK","NumVillages":105,"Points":1055029,"Rank":132,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851427","BestRank":132,"BestRankAt":"2023-02-15T06:22:53.454972Z","MostPoints":1055029,"MostPointsAt":"2023-02-15T06:22:53.454972Z","MostVillages":105,"MostVillagesAt":"2023-02-15T06:22:53.454972Z","LastActivityAt":"2023-02-15T06:22:53.454972Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45577Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1197,"ScoreDef":73479,"RankSup":1286,"ScoreSup":42,"RankTotal":1484,"ScoreTotal":73521,"ID":699852080,"Name":"Lord Nemo","NumVillages":3,"Points":6915,"Rank":1222,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699852080","BestRank":1222,"BestRankAt":"2023-02-15T06:22:53.454973Z","MostPoints":6915,"MostPointsAt":"2023-02-15T06:22:53.454973Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.454973Z","LastActivityAt":"2023-02-15T06:22:53.454973Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455771Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699852606,"Name":"jacek1891","NumVillages":1,"Points":72,"Rank":2529,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699852606","BestRank":2529,"BestRankAt":"2023-02-15T06:22:53.454974Z","MostPoints":72,"MostPointsAt":"2023-02-15T06:22:53.454974Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454974Z","LastActivityAt":"2023-02-15T06:22:53.454975Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455772Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699853286,"Name":"beast01","NumVillages":1,"Points":26,"Rank":2748,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699853286","BestRank":2748,"BestRankAt":"2023-02-15T06:22:53.454975Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454976Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454975Z","LastActivityAt":"2023-02-15T06:22:53.454976Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455774Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1732,"ScoreAtt":403,"RankDef":1832,"ScoreDef":10881,"RankSup":0,"ScoreSup":0,"RankTotal":1984,"ScoreTotal":11284,"ID":699853308,"Name":"Hubs1","NumVillages":1,"Points":3290,"Rank":1495,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699853308","BestRank":1495,"BestRankAt":"2023-02-15T06:22:53.454976Z","MostPoints":3290,"MostPointsAt":"2023-02-15T06:22:53.454977Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454977Z","LastActivityAt":"2023-02-15T06:22:53.454977Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455776Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699853526,"Name":"Morbital","NumVillages":1,"Points":530,"Rank":2012,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699853526","BestRank":2012,"BestRankAt":"2023-02-15T06:22:53.454978Z","MostPoints":530,"MostPointsAt":"2023-02-15T06:22:53.454978Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454978Z","LastActivityAt":"2023-02-15T06:22:53.454978Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455777Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1798,"ScoreAtt":223,"RankDef":997,"ScoreDef":125197,"RankSup":1348,"ScoreSup":6,"RankTotal":1312,"ScoreTotal":125426,"ID":699854312,"Name":"Yebiewdenko","NumVillages":4,"Points":6221,"Rank":1261,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699854312","BestRank":1261,"BestRankAt":"2023-02-15T06:22:53.454979Z","MostPoints":6221,"MostPointsAt":"2023-02-15T06:22:53.454979Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.454979Z","LastActivityAt":"2023-02-15T06:22:53.45498Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455778Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":242,"ScoreAtt":1168870,"RankDef":980,"ScoreDef":130193,"RankSup":133,"ScoreSup":1613803,"RankTotal":297,"ScoreTotal":2912866,"ID":699854484,"Name":"DonSzwagreone","NumVillages":117,"Points":957408,"Rank":153,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699854484","BestRank":153,"BestRankAt":"2023-02-15T06:22:53.45498Z","MostPoints":957408,"MostPointsAt":"2023-02-15T06:22:53.454981Z","MostVillages":117,"MostVillagesAt":"2023-02-15T06:22:53.45498Z","LastActivityAt":"2023-02-15T06:22:53.454981Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45578Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1541,"ScoreAtt":1940,"RankDef":2016,"ScoreDef":4548,"RankSup":1369,"ScoreSup":4,"RankTotal":2083,"ScoreTotal":6492,"ID":699854830,"Name":"b5artek","NumVillages":7,"Points":36914,"Rank":763,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699854830","BestRank":763,"BestRankAt":"2023-02-15T06:22:53.454981Z","MostPoints":36914,"MostPointsAt":"2023-02-15T06:22:53.454982Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.454982Z","LastActivityAt":"2023-02-15T06:22:53.454982Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455782Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1963,"ScoreAtt":13,"RankDef":2095,"ScoreDef":2854,"RankSup":0,"ScoreSup":0,"RankTotal":2211,"ScoreTotal":2867,"ID":699855277,"Name":"bastekx","NumVillages":1,"Points":26,"Rank":2749,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699855277","BestRank":2749,"BestRankAt":"2023-02-15T06:22:53.454983Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454983Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454983Z","LastActivityAt":"2023-02-15T06:22:53.454983Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455782Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699855469,"Name":"Anko Itosu","NumVillages":1,"Points":26,"Rank":2750,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699855469","BestRank":2750,"BestRankAt":"2023-02-15T06:22:53.454984Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.454984Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454984Z","LastActivityAt":"2023-02-15T06:22:53.454984Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455785Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2151,"ScoreDef":1902,"RankSup":0,"ScoreSup":0,"RankTotal":2253,"ScoreTotal":1902,"ID":699855647,"Name":"Michal CR7","NumVillages":1,"Points":2842,"Rank":1547,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699855647","BestRank":1547,"BestRankAt":"2023-02-15T06:22:53.454985Z","MostPoints":2842,"MostPointsAt":"2023-02-15T06:22:53.454986Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454985Z","LastActivityAt":"2023-02-15T06:22:53.454986Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455787Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1967,"ScoreAtt":9,"RankDef":386,"ScoreDef":789342,"RankSup":0,"ScoreSup":0,"RankTotal":690,"ScoreTotal":789351,"ID":699856586,"Name":"Czuowieku","NumVillages":0,"Points":0,"Rank":3018,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699856586","BestRank":3018,"BestRankAt":"2023-02-15T06:22:53.454986Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.454987Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.454987Z","LastActivityAt":"2023-02-15T06:22:53.454987Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455789Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1301,"ScoreAtt":6538,"RankDef":956,"ScoreDef":141720,"RankSup":0,"ScoreSup":0,"RankTotal":1253,"ScoreTotal":148258,"ID":699856830,"Name":"Chudy19","NumVillages":1,"Points":321,"Rank":2155,"TribeID":176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699856830","BestRank":2155,"BestRankAt":"2023-02-15T06:22:53.454988Z","MostPoints":321,"MostPointsAt":"2023-02-15T06:22:53.454988Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454988Z","LastActivityAt":"2023-02-15T06:22:53.454988Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455789Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":15,"ScoreAtt":10120971,"RankDef":208,"ScoreDef":1817378,"RankSup":85,"ScoreSup":2433546,"RankTotal":54,"ScoreTotal":14371895,"ID":699856962,"Name":"Suppx","NumVillages":248,"Points":2239403,"Rank":39,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699856962","BestRank":39,"BestRankAt":"2023-02-15T06:22:53.454989Z","MostPoints":2239403,"MostPointsAt":"2023-02-15T06:22:53.454989Z","MostVillages":248,"MostVillagesAt":"2023-02-15T06:22:53.454989Z","LastActivityAt":"2023-02-15T06:22:53.454989Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1285,"ScoreAtt":6865,"RankDef":404,"ScoreDef":746571,"RankSup":978,"ScoreSup":6193,"RankTotal":700,"ScoreTotal":759629,"ID":699857387,"Name":"Luk160","NumVillages":13,"Points":100768,"Rank":537,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699857387","BestRank":537,"BestRankAt":"2023-02-15T06:22:53.45499Z","MostPoints":100768,"MostPointsAt":"2023-02-15T06:22:53.45499Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.45499Z","LastActivityAt":"2023-02-15T06:22:53.454991Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455793Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1649,"ScoreAtt":844,"RankDef":1022,"ScoreDef":119545,"RankSup":1224,"ScoreSup":262,"RankTotal":1324,"ScoreTotal":120651,"ID":699858313,"Name":"matstr","NumVillages":4,"Points":12684,"Rank":1034,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699858313","BestRank":1034,"BestRankAt":"2023-02-15T06:22:53.454991Z","MostPoints":12684,"MostPointsAt":"2023-02-15T06:22:53.454992Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.454992Z","LastActivityAt":"2023-02-15T06:22:53.454992Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455794Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699858423,"Name":"zniszczywacz","NumVillages":1,"Points":187,"Rank":2327,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699858423","BestRank":2327,"BestRankAt":"2023-02-15T06:22:53.454993Z","MostPoints":187,"MostPointsAt":"2023-02-15T06:22:53.454993Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454993Z","LastActivityAt":"2023-02-15T06:22:53.454993Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455796Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699858532,"Name":"exim","NumVillages":1,"Points":502,"Rank":2028,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699858532","BestRank":2028,"BestRankAt":"2023-02-15T06:22:53.454994Z","MostPoints":502,"MostPointsAt":"2023-02-15T06:22:53.454994Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454994Z","LastActivityAt":"2023-02-15T06:22:53.454994Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":472,"ScoreAtt":409251,"RankDef":252,"ScoreDef":1473883,"RankSup":559,"ScoreSup":126920,"RankTotal":406,"ScoreTotal":2010054,"ID":699859013,"Name":"PECUS","NumVillages":5,"Points":31742,"Rank":794,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699859013","BestRank":794,"BestRankAt":"2023-02-15T06:22:53.454995Z","MostPoints":31742,"MostPointsAt":"2023-02-15T06:22:53.454995Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.454995Z","LastActivityAt":"2023-02-15T06:22:53.454996Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1796,"ScoreAtt":225,"RankDef":0,"ScoreDef":0,"RankSup":1342,"ScoreSup":7,"RankTotal":2395,"ScoreTotal":232,"ID":699860418,"Name":"ociek123","NumVillages":1,"Points":2969,"Rank":1532,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699860418","BestRank":1532,"BestRankAt":"2023-02-15T06:22:53.454996Z","MostPoints":2969,"MostPointsAt":"2023-02-15T06:22:53.454997Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454996Z","LastActivityAt":"2023-02-15T06:22:53.454997Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4558Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2012,"ScoreDef":4596,"RankSup":0,"ScoreSup":0,"RankTotal":2149,"ScoreTotal":4596,"ID":699860651,"Name":"lord MichaƂ 1","NumVillages":1,"Points":381,"Rank":2101,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699860651","BestRank":2101,"BestRankAt":"2023-02-15T06:22:53.454997Z","MostPoints":381,"MostPointsAt":"2023-02-15T06:22:53.454998Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.454998Z","LastActivityAt":"2023-02-15T06:22:53.454998Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455802Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":397,"ScoreAtt":593507,"RankDef":525,"ScoreDef":486475,"RankSup":1282,"ScoreSup":46,"RankTotal":598,"ScoreTotal":1080028,"ID":699861004,"Name":"PanTatami","NumVillages":10,"Points":90496,"Rank":559,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699861004","BestRank":559,"BestRankAt":"2023-02-15T06:22:53.454999Z","MostPoints":90496,"MostPointsAt":"2023-02-15T06:22:53.454999Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.454999Z","LastActivityAt":"2023-02-15T06:22:53.454999Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1877,"ScoreAtt":88,"RankDef":2288,"ScoreDef":368,"RankSup":0,"ScoreSup":0,"RankTotal":2361,"ScoreTotal":456,"ID":699862278,"Name":"wƂadcamarceli","NumVillages":1,"Points":2443,"Rank":1592,"TribeID":1209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699862278","BestRank":1592,"BestRankAt":"2023-02-15T06:22:53.455Z","MostPoints":2443,"MostPointsAt":"2023-02-15T06:22:53.455Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455Z","LastActivityAt":"2023-02-15T06:22:53.455001Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455805Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1500,"ScoreAtt":2390,"RankDef":709,"ScoreDef":266099,"RankSup":0,"ScoreSup":0,"RankTotal":1034,"ScoreTotal":268489,"ID":699863708,"Name":"janusz6161","NumVillages":5,"Points":20778,"Rank":904,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699863708","BestRank":904,"BestRankAt":"2023-02-15T06:22:53.455001Z","MostPoints":20778,"MostPointsAt":"2023-02-15T06:22:53.455002Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.455001Z","LastActivityAt":"2023-02-15T06:22:53.455002Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455806Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":783,"ScoreAtt":87665,"RankDef":1145,"ScoreDef":85307,"RankSup":364,"ScoreSup":378197,"RankTotal":802,"ScoreTotal":551169,"ID":699864013,"Name":"Arek486","NumVillages":12,"Points":87299,"Rank":569,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699864013","BestRank":569,"BestRankAt":"2023-02-15T06:22:53.455002Z","MostPoints":87299,"MostPointsAt":"2023-02-15T06:22:53.455003Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.455003Z","LastActivityAt":"2023-02-15T06:22:53.455003Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455807Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699864609,"Name":"champion271","NumVillages":1,"Points":81,"Rank":2510,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699864609","BestRank":2510,"BestRankAt":"2023-02-15T06:22:53.455004Z","MostPoints":81,"MostPointsAt":"2023-02-15T06:22:53.455004Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455004Z","LastActivityAt":"2023-02-15T06:22:53.455004Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699865603,"Name":"damianslipiec","NumVillages":1,"Points":26,"Rank":2751,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699865603","BestRank":2751,"BestRankAt":"2023-02-15T06:22:53.455005Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455005Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455005Z","LastActivityAt":"2023-02-15T06:22:53.455005Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45581Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699865716,"Name":"Piorun000","NumVillages":1,"Points":333,"Rank":2145,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699865716","BestRank":2145,"BestRankAt":"2023-02-15T06:22:53.455006Z","MostPoints":333,"MostPointsAt":"2023-02-15T06:22:53.455007Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455006Z","LastActivityAt":"2023-02-15T06:22:53.455007Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455812Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":658,"ScoreAtt":154484,"RankDef":214,"ScoreDef":1778854,"RankSup":437,"ScoreSup":246398,"RankTotal":384,"ScoreTotal":2179736,"ID":699866225,"Name":"Pietrasfryzjer","NumVillages":1,"Points":590,"Rank":1990,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699866225","BestRank":1990,"BestRankAt":"2023-02-15T06:22:53.455007Z","MostPoints":590,"MostPointsAt":"2023-02-15T06:22:53.455008Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455008Z","LastActivityAt":"2023-02-15T06:22:53.455008Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455813Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2289,"ScoreDef":353,"RankSup":0,"ScoreSup":0,"RankTotal":2372,"ScoreTotal":353,"ID":699866271,"Name":"Driata","NumVillages":1,"Points":763,"Rank":1934,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699866271","BestRank":1934,"BestRankAt":"2023-02-15T06:22:53.455009Z","MostPoints":763,"MostPointsAt":"2023-02-15T06:22:53.455009Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455009Z","LastActivityAt":"2023-02-15T06:22:53.455009Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455816Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":444,"ScoreDef":636124,"RankSup":458,"ScoreSup":216657,"RankTotal":669,"ScoreTotal":852781,"ID":699866510,"Name":"EvilTwin","NumVillages":1,"Points":55,"Rank":2565,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699866510","BestRank":2565,"BestRankAt":"2023-02-15T06:22:53.45501Z","MostPoints":55,"MostPointsAt":"2023-02-15T06:22:53.45501Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45501Z","LastActivityAt":"2023-02-15T06:22:53.45501Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455817Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699867390,"Name":"tomek-gt","NumVillages":1,"Points":435,"Rank":2069,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699867390","BestRank":2069,"BestRankAt":"2023-02-15T06:22:53.455011Z","MostPoints":435,"MostPointsAt":"2023-02-15T06:22:53.455011Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455011Z","LastActivityAt":"2023-02-15T06:22:53.455012Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455819Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":601,"ScoreAtt":213531,"RankDef":1131,"ScoreDef":88006,"RankSup":766,"ScoreSup":33010,"RankTotal":974,"ScoreTotal":334547,"ID":699867602,"Name":"wlodas62","NumVillages":0,"Points":0,"Rank":3019,"TribeID":1448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699867602","BestRank":3019,"BestRankAt":"2023-02-15T06:22:53.455012Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455013Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455012Z","LastActivityAt":"2023-02-15T06:22:53.455013Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455821Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2182,"ScoreDef":1480,"RankSup":0,"ScoreSup":0,"RankTotal":2279,"ScoreTotal":1480,"ID":699867743,"Name":"Skonekƚwir","NumVillages":1,"Points":1014,"Rank":1859,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699867743","BestRank":1859,"BestRankAt":"2023-02-15T06:22:53.455014Z","MostPoints":1014,"MostPointsAt":"2023-02-15T06:22:53.455014Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455014Z","LastActivityAt":"2023-02-15T06:22:53.455014Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455821Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":100,"ScoreAtt":3199098,"RankDef":44,"ScoreDef":7192219,"RankSup":3,"ScoreSup":13527645,"RankTotal":20,"ScoreTotal":23918962,"ID":699868002,"Name":"tw1ster2","NumVillages":16,"Points":98635,"Rank":544,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868002","BestRank":544,"BestRankAt":"2023-02-15T06:22:53.455015Z","MostPoints":98635,"MostPointsAt":"2023-02-15T06:22:53.455015Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.455015Z","LastActivityAt":"2023-02-15T06:22:53.455015Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455823Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2360,"ScoreDef":64,"RankSup":0,"ScoreSup":0,"RankTotal":2454,"ScoreTotal":64,"ID":699868399,"Name":"Savek","NumVillages":1,"Points":26,"Rank":2752,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868399","BestRank":2752,"BestRankAt":"2023-02-15T06:22:53.455016Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455016Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455016Z","LastActivityAt":"2023-02-15T06:22:53.455017Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455825Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699868448,"Name":"OgnistaOwca","NumVillages":1,"Points":54,"Rank":2568,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868448","BestRank":2568,"BestRankAt":"2023-02-15T06:22:53.455017Z","MostPoints":54,"MostPointsAt":"2023-02-15T06:22:53.455018Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455017Z","LastActivityAt":"2023-02-15T06:22:53.455018Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455827Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1288,"ScoreAtt":6763,"RankDef":1419,"ScoreDef":41037,"RankSup":0,"ScoreSup":0,"RankTotal":1632,"ScoreTotal":47800,"ID":699868739,"Name":"TOLCIA1","NumVillages":6,"Points":17805,"Rank":957,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868739","BestRank":957,"BestRankAt":"2023-02-15T06:22:53.455018Z","MostPoints":17805,"MostPointsAt":"2023-02-15T06:22:53.455019Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.455019Z","LastActivityAt":"2023-02-15T06:22:53.455019Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455827Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":64,"ScoreAtt":4387188,"RankDef":132,"ScoreDef":2943596,"RankSup":302,"ScoreSup":527430,"RankTotal":104,"ScoreTotal":7858214,"ID":699869682,"Name":"wancki i gustlikk","NumVillages":3,"Points":27841,"Rank":830,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699869682","BestRank":830,"BestRankAt":"2023-02-15T06:22:53.45502Z","MostPoints":27841,"MostPointsAt":"2023-02-15T06:22:53.45502Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.45502Z","LastActivityAt":"2023-02-15T06:22:53.45502Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455829Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1322,"ScoreAtt":5894,"RankDef":353,"ScoreDef":879222,"RankSup":0,"ScoreSup":0,"RankTotal":663,"ScoreTotal":885116,"ID":699870198,"Name":"JabaDu","NumVillages":0,"Points":0,"Rank":3020,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699870198","BestRank":3020,"BestRankAt":"2023-02-15T06:22:53.455021Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455021Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455021Z","LastActivityAt":"2023-02-15T06:22:53.455022Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455831Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699870267,"Name":"aitseb","NumVillages":1,"Points":3337,"Rank":1489,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699870267","BestRank":1489,"BestRankAt":"2023-02-15T06:22:53.455022Z","MostPoints":3337,"MostPointsAt":"2023-02-15T06:22:53.455023Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455022Z","LastActivityAt":"2023-02-15T06:22:53.455023Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455833Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":761,"ScoreAtt":95802,"RankDef":478,"ScoreDef":556010,"RankSup":849,"ScoreSup":16831,"RankTotal":743,"ScoreTotal":668643,"ID":699870923,"Name":"LodowyPtyƛ","NumVillages":1,"Points":26,"Rank":2753,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699870923","BestRank":2753,"BestRankAt":"2023-02-15T06:22:53.455023Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455024Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455024Z","LastActivityAt":"2023-02-15T06:22:53.455024Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455833Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1609,"ScoreAtt":1236,"RankDef":1589,"ScoreDef":26186,"RankSup":0,"ScoreSup":0,"RankTotal":1796,"ScoreTotal":27422,"ID":699872032,"Name":"Ainsley","NumVillages":6,"Points":46980,"Rank":706,"TribeID":1535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699872032","BestRank":706,"BestRankAt":"2023-02-15T06:22:53.455025Z","MostPoints":46980,"MostPointsAt":"2023-02-15T06:22:53.455025Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.455025Z","LastActivityAt":"2023-02-15T06:22:53.455025Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455835Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1544,"ScoreAtt":1920,"RankDef":2466,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2252,"ScoreTotal":1930,"ID":699872401,"Name":"PanByczek","NumVillages":1,"Points":3516,"Rank":1460,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699872401","BestRank":1460,"BestRankAt":"2023-02-15T06:22:53.455026Z","MostPoints":3516,"MostPointsAt":"2023-02-15T06:22:53.455026Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455026Z","LastActivityAt":"2023-02-15T06:22:53.455026Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1018,"ScoreAtt":27905,"RankDef":737,"ScoreDef":250240,"RankSup":1065,"ScoreSup":2688,"RankTotal":1023,"ScoreTotal":280833,"ID":699872616,"Name":"KrĂłl Jaƛ","NumVillages":5,"Points":29767,"Rank":818,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699872616","BestRank":818,"BestRankAt":"2023-02-15T06:22:53.455027Z","MostPoints":29767,"MostPointsAt":"2023-02-15T06:22:53.455028Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.455027Z","LastActivityAt":"2023-02-15T06:22:53.455028Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1948,"ScoreDef":6401,"RankSup":1378,"ScoreSup":3,"RankTotal":2087,"ScoreTotal":6404,"ID":699873141,"Name":"mayald","NumVillages":1,"Points":127,"Rank":2431,"TribeID":597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699873141","BestRank":2431,"BestRankAt":"2023-02-15T06:22:53.455028Z","MostPoints":127,"MostPointsAt":"2023-02-15T06:22:53.455029Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455029Z","LastActivityAt":"2023-02-15T06:22:53.455029Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699875086,"Name":"Impro","NumVillages":1,"Points":26,"Rank":2754,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875086","BestRank":2754,"BestRankAt":"2023-02-15T06:22:53.45503Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.45503Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45503Z","LastActivityAt":"2023-02-15T06:22:53.45503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1760,"ScoreAtt":301,"RankDef":685,"ScoreDef":283357,"RankSup":1113,"ScoreSup":1620,"RankTotal":1019,"ScoreTotal":285278,"ID":699875132,"Name":"jarekamyk","NumVillages":1,"Points":3524,"Rank":1459,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875132","BestRank":1459,"BestRankAt":"2023-02-15T06:22:53.455031Z","MostPoints":3524,"MostPointsAt":"2023-02-15T06:22:53.455031Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455031Z","LastActivityAt":"2023-02-15T06:22:53.455031Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":819,"ScoreAtt":73695,"RankDef":294,"ScoreDef":1217792,"RankSup":682,"ScoreSup":56566,"RankTotal":527,"ScoreTotal":1348053,"ID":699875213,"Name":"Sir atylla","NumVillages":11,"Points":26178,"Rank":846,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875213","BestRank":846,"BestRankAt":"2023-02-15T06:22:53.455032Z","MostPoints":26178,"MostPointsAt":"2023-02-15T06:22:53.455032Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.455032Z","LastActivityAt":"2023-02-15T06:22:53.455033Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1946,"ScoreDef":6425,"RankSup":0,"ScoreSup":0,"RankTotal":2086,"ScoreTotal":6425,"ID":699875650,"Name":"CzambaƁamba","NumVillages":1,"Points":559,"Rank":2000,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875650","BestRank":2000,"BestRankAt":"2023-02-15T06:22:53.455033Z","MostPoints":559,"MostPointsAt":"2023-02-15T06:22:53.455034Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455033Z","LastActivityAt":"2023-02-15T06:22:53.455034Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":597,"ScoreAtt":216628,"RankDef":848,"ScoreDef":186055,"RankSup":936,"ScoreSup":8872,"RankTotal":903,"ScoreTotal":411555,"ID":699876345,"Name":"AG2018","NumVillages":21,"Points":181840,"Rank":430,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699876345","BestRank":430,"BestRankAt":"2023-02-15T06:22:53.455035Z","MostPoints":181840,"MostPointsAt":"2023-02-15T06:22:53.455035Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.455035Z","LastActivityAt":"2023-02-15T06:22:53.455035Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699876653,"Name":"slawekkrasulak","NumVillages":1,"Points":26,"Rank":2755,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699876653","BestRank":2755,"BestRankAt":"2023-02-15T06:22:53.455036Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455036Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455036Z","LastActivityAt":"2023-02-15T06:22:53.455036Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1172,"ScoreAtt":12258,"RankDef":1007,"ScoreDef":123770,"RankSup":1082,"ScoreSup":2300,"RankTotal":1277,"ScoreTotal":138328,"ID":699876746,"Name":"Zielony Zielony Zielony","NumVillages":4,"Points":16021,"Rank":982,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699876746","BestRank":982,"BestRankAt":"2023-02-15T06:22:53.455037Z","MostPoints":16021,"MostPointsAt":"2023-02-15T06:22:53.455037Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.455037Z","LastActivityAt":"2023-02-15T06:22:53.455038Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699877413,"Name":"Panda Gomes","NumVillages":1,"Points":329,"Rank":2147,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699877413","BestRank":2147,"BestRankAt":"2023-02-15T06:22:53.455038Z","MostPoints":329,"MostPointsAt":"2023-02-15T06:22:53.455039Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455038Z","LastActivityAt":"2023-02-15T06:22:53.455039Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":428,"ScoreAtt":488817,"RankDef":1352,"ScoreDef":50643,"RankSup":726,"ScoreSup":41919,"RankTotal":782,"ScoreTotal":581379,"ID":699878150,"Name":"Pan Magneto","NumVillages":33,"Points":195664,"Rank":419,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878150","BestRank":419,"BestRankAt":"2023-02-15T06:22:53.455039Z","MostPoints":195664,"MostPointsAt":"2023-02-15T06:22:53.45504Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.45504Z","LastActivityAt":"2023-02-15T06:22:53.45504Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699878443,"Name":"ChudyMRW","NumVillages":1,"Points":387,"Rank":2098,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878443","BestRank":2098,"BestRankAt":"2023-02-15T06:22:53.455041Z","MostPoints":387,"MostPointsAt":"2023-02-15T06:22:53.455041Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455041Z","LastActivityAt":"2023-02-15T06:22:53.455041Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":385,"ScoreAtt":613070,"RankDef":556,"ScoreDef":432071,"RankSup":126,"ScoreSup":1722447,"RankTotal":309,"ScoreTotal":2767588,"ID":699878511,"Name":"Lorus22","NumVillages":105,"Points":612770,"Rank":231,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878511","BestRank":231,"BestRankAt":"2023-02-15T06:22:53.455042Z","MostPoints":612770,"MostPointsAt":"2023-02-15T06:22:53.455042Z","MostVillages":105,"MostVillagesAt":"2023-02-15T06:22:53.455042Z","LastActivityAt":"2023-02-15T06:22:53.455043Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699878952,"Name":"100dni","NumVillages":1,"Points":26,"Rank":2756,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878952","BestRank":2756,"BestRankAt":"2023-02-15T06:22:53.455043Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455044Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455043Z","LastActivityAt":"2023-02-15T06:22:53.455044Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1398,"ScoreAtt":4210,"RankDef":733,"ScoreDef":252299,"RankSup":0,"ScoreSup":0,"RankTotal":1047,"ScoreTotal":256509,"ID":699879113,"Name":"munban","NumVillages":0,"Points":0,"Rank":3021,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699879113","BestRank":3021,"BestRankAt":"2023-02-15T06:22:53.455044Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455045Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455045Z","LastActivityAt":"2023-02-15T06:22:53.455045Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1379,"ScoreAtt":4572,"RankDef":572,"ScoreDef":406752,"RankSup":524,"ScoreSup":148254,"RankTotal":797,"ScoreTotal":559578,"ID":699879556,"Name":"MDKS","NumVillages":1,"Points":3118,"Rank":1514,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699879556","BestRank":1514,"BestRankAt":"2023-02-15T06:22:53.455046Z","MostPoints":3118,"MostPointsAt":"2023-02-15T06:22:53.455046Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455046Z","LastActivityAt":"2023-02-15T06:22:53.455046Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":388,"ScoreAtt":606514,"RankDef":622,"ScoreDef":354767,"RankSup":427,"ScoreSup":256527,"RankTotal":554,"ScoreTotal":1217808,"ID":699879927,"Name":"szymi3","NumVillages":0,"Points":0,"Rank":3022,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699879927","BestRank":3022,"BestRankAt":"2023-02-15T06:22:53.455047Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455047Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455047Z","LastActivityAt":"2023-02-15T06:22:53.455047Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1056,"ScoreDef":105606,"RankSup":973,"ScoreSup":6284,"RankTotal":1353,"ScoreTotal":111890,"ID":699880701,"Name":"Swoboda","NumVillages":1,"Points":889,"Rank":1890,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699880701","BestRank":1890,"BestRankAt":"2023-02-15T06:22:53.455048Z","MostPoints":889,"MostPointsAt":"2023-02-15T06:22:53.455049Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455048Z","LastActivityAt":"2023-02-15T06:22:53.455049Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":37,"ScoreAtt":6061948,"RankDef":804,"ScoreDef":208367,"RankSup":136,"ScoreSup":1580183,"RankTotal":105,"ScoreTotal":7850498,"ID":699883079,"Name":"VN No Door","NumVillages":245,"Points":2163501,"Rank":41,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699883079","BestRank":41,"BestRankAt":"2023-02-15T06:22:53.455049Z","MostPoints":2163501,"MostPointsAt":"2023-02-15T06:22:53.45505Z","MostVillages":245,"MostVillagesAt":"2023-02-15T06:22:53.45505Z","LastActivityAt":"2023-02-15T06:22:53.45505Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1168,"ScoreAtt":12651,"RankDef":1040,"ScoreDef":112775,"RankSup":0,"ScoreSup":0,"RankTotal":1311,"ScoreTotal":125426,"ID":699883836,"Name":"Soldier2020","NumVillages":3,"Points":9224,"Rank":1113,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699883836","BestRank":1113,"BestRankAt":"2023-02-15T06:22:53.455051Z","MostPoints":9224,"MostPointsAt":"2023-02-15T06:22:53.455051Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.455051Z","LastActivityAt":"2023-02-15T06:22:53.455051Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1819,"ScoreAtt":167,"RankDef":2178,"ScoreDef":1572,"RankSup":1125,"ScoreSup":1409,"RankTotal":2200,"ScoreTotal":3148,"ID":699884788,"Name":"klogan","NumVillages":1,"Points":6261,"Rank":1259,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699884788","BestRank":1259,"BestRankAt":"2023-02-15T06:22:53.455052Z","MostPoints":6261,"MostPointsAt":"2023-02-15T06:22:53.455052Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455052Z","LastActivityAt":"2023-02-15T06:22:53.455052Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1963,"ScoreDef":5949,"RankSup":0,"ScoreSup":0,"RankTotal":2099,"ScoreTotal":5949,"ID":848882397,"Name":"Puma79","NumVillages":1,"Points":2045,"Rank":1653,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848882397","BestRank":1653,"BestRankAt":"2023-02-15T06:22:53.455053Z","MostPoints":2045,"MostPointsAt":"2023-02-15T06:22:53.455053Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455053Z","LastActivityAt":"2023-02-15T06:22:53.455054Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848882446,"Name":"Kamilooo97","NumVillages":1,"Points":694,"Rank":1953,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848882446","BestRank":1953,"BestRankAt":"2023-02-15T06:22:53.455054Z","MostPoints":694,"MostPointsAt":"2023-02-15T06:22:53.455055Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455055Z","LastActivityAt":"2023-02-15T06:22:53.455055Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1375,"ScoreAtt":4618,"RankDef":2408,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2144,"ScoreTotal":4638,"ID":848882577,"Name":"lukaszn93","NumVillages":1,"Points":5847,"Rank":1280,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848882577","BestRank":1280,"BestRankAt":"2023-02-15T06:22:53.455056Z","MostPoints":5847,"MostPointsAt":"2023-02-15T06:22:53.455056Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455056Z","LastActivityAt":"2023-02-15T06:22:53.455056Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":507,"ScoreAtt":339795,"RankDef":1251,"ScoreDef":63071,"RankSup":518,"ScoreSup":153727,"RankTotal":799,"ScoreTotal":556593,"ID":848883237,"Name":"Flinii","NumVillages":49,"Points":345439,"Rank":329,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883237","BestRank":329,"BestRankAt":"2023-02-15T06:22:53.455057Z","MostPoints":345439,"MostPointsAt":"2023-02-15T06:22:53.455057Z","MostVillages":49,"MostVillagesAt":"2023-02-15T06:22:53.455057Z","LastActivityAt":"2023-02-15T06:22:53.455057Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1567,"ScoreAtt":1691,"RankDef":1722,"ScoreDef":17406,"RankSup":0,"ScoreSup":0,"RankTotal":1883,"ScoreTotal":19097,"ID":848883542,"Name":"Matz32","NumVillages":1,"Points":506,"Rank":2026,"TribeID":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883542","BestRank":2026,"BestRankAt":"2023-02-15T06:22:53.455058Z","MostPoints":506,"MostPointsAt":"2023-02-15T06:22:53.455058Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455058Z","LastActivityAt":"2023-02-15T06:22:53.455059Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":313,"ScoreAtt":867105,"RankDef":278,"ScoreDef":1312678,"RankSup":293,"ScoreSup":559642,"RankTotal":319,"ScoreTotal":2739425,"ID":848883684,"Name":"Bele7h","NumVillages":47,"Points":343891,"Rank":331,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883684","BestRank":331,"BestRankAt":"2023-02-15T06:22:53.455059Z","MostPoints":343891,"MostPointsAt":"2023-02-15T06:22:53.45506Z","MostVillages":47,"MostVillagesAt":"2023-02-15T06:22:53.455059Z","LastActivityAt":"2023-02-15T06:22:53.45506Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45588Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1345,"ScoreAtt":5318,"RankDef":1310,"ScoreDef":56303,"RankSup":1028,"ScoreSup":3718,"RankTotal":1524,"ScoreTotal":65339,"ID":848883791,"Name":"Jerzy-z-Lodowca","NumVillages":1,"Points":553,"Rank":2004,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883791","BestRank":2004,"BestRankAt":"2023-02-15T06:22:53.45506Z","MostPoints":553,"MostPointsAt":"2023-02-15T06:22:53.455061Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455061Z","LastActivityAt":"2023-02-15T06:22:53.455061Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":481,"ScoreAtt":387836,"RankDef":262,"ScoreDef":1416603,"RankSup":278,"ScoreSup":579392,"RankTotal":358,"ScoreTotal":2383831,"ID":848886056,"Name":"Abo co","NumVillages":25,"Points":120874,"Rank":505,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886056","BestRank":505,"BestRankAt":"2023-02-15T06:22:53.455062Z","MostPoints":120874,"MostPointsAt":"2023-02-15T06:22:53.455062Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.455062Z","LastActivityAt":"2023-02-15T06:22:53.455062Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1438,"ScoreAtt":3338,"RankDef":1407,"ScoreDef":42457,"RankSup":0,"ScoreSup":0,"RankTotal":1640,"ScoreTotal":45795,"ID":848886200,"Name":"Bochunn","NumVillages":6,"Points":31482,"Rank":797,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886200","BestRank":797,"BestRankAt":"2023-02-15T06:22:53.455063Z","MostPoints":31482,"MostPointsAt":"2023-02-15T06:22:53.455063Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.455063Z","LastActivityAt":"2023-02-15T06:22:53.455064Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":546,"ScoreAtt":288718,"RankDef":946,"ScoreDef":144443,"RankSup":1086,"ScoreSup":2259,"RankTotal":879,"ScoreTotal":435420,"ID":848886870,"Name":"Akuzinek1","NumVillages":16,"Points":165281,"Rank":445,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886870","BestRank":445,"BestRankAt":"2023-02-15T06:22:53.455064Z","MostPoints":165281,"MostPointsAt":"2023-02-15T06:22:53.455065Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.455064Z","LastActivityAt":"2023-02-15T06:22:53.455065Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":371,"ScoreAtt":640626,"RankDef":72,"ScoreDef":4722290,"RankSup":294,"ScoreSup":556192,"RankTotal":154,"ScoreTotal":5919108,"ID":848886973,"Name":"Traczu Dominator","NumVillages":39,"Points":307313,"Rank":352,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886973","BestRank":352,"BestRankAt":"2023-02-15T06:22:53.455065Z","MostPoints":307313,"MostPointsAt":"2023-02-15T06:22:53.455066Z","MostVillages":39,"MostVillagesAt":"2023-02-15T06:22:53.455066Z","LastActivityAt":"2023-02-15T06:22:53.455066Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848887011,"Name":"Laduu","NumVillages":1,"Points":95,"Rank":2494,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848887011","BestRank":2494,"BestRankAt":"2023-02-15T06:22:53.455067Z","MostPoints":95,"MostPointsAt":"2023-02-15T06:22:53.455067Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455067Z","LastActivityAt":"2023-02-15T06:22:53.455067Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":897,"ScoreAtt":51611,"RankDef":463,"ScoreDef":584016,"RankSup":1190,"ScoreSup":470,"RankTotal":763,"ScoreTotal":636097,"ID":848887199,"Name":"Marceldom","NumVillages":2,"Points":6635,"Rank":1233,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848887199","BestRank":1233,"BestRankAt":"2023-02-15T06:22:53.455068Z","MostPoints":6635,"MostPointsAt":"2023-02-15T06:22:53.455068Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455068Z","LastActivityAt":"2023-02-15T06:22:53.455068Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848887366,"Name":"Crift","NumVillages":1,"Points":1622,"Rank":1728,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848887366","BestRank":1728,"BestRankAt":"2023-02-15T06:22:53.455069Z","MostPoints":1622,"MostPointsAt":"2023-02-15T06:22:53.45507Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455069Z","LastActivityAt":"2023-02-15T06:22:53.45507Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848888394,"Name":"boyka8721","NumVillages":1,"Points":45,"Rank":2598,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848888394","BestRank":2598,"BestRankAt":"2023-02-15T06:22:53.45507Z","MostPoints":45,"MostPointsAt":"2023-02-15T06:22:53.455071Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455071Z","LastActivityAt":"2023-02-15T06:22:53.455071Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2263,"ScoreDef":539,"RankSup":0,"ScoreSup":0,"RankTotal":2345,"ScoreTotal":539,"ID":848888787,"Name":"Samotny Wilk","NumVillages":1,"Points":197,"Rank":2305,"TribeID":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848888787","BestRank":2305,"BestRankAt":"2023-02-15T06:22:53.455072Z","MostPoints":197,"MostPointsAt":"2023-02-15T06:22:53.455072Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455072Z","LastActivityAt":"2023-02-15T06:22:53.455072Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":533,"ScoreAtt":308758,"RankDef":452,"ScoreDef":609623,"RankSup":683,"ScoreSup":56529,"RankTotal":625,"ScoreTotal":974910,"ID":848889556,"Name":"bohatejro","NumVillages":13,"Points":112813,"Rank":516,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848889556","BestRank":516,"BestRankAt":"2023-02-15T06:22:53.455073Z","MostPoints":112813,"MostPointsAt":"2023-02-15T06:22:53.455073Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.455073Z","LastActivityAt":"2023-02-15T06:22:53.455073Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":774,"ScoreAtt":91467,"RankDef":1640,"ScoreDef":23163,"RankSup":885,"ScoreSup":13788,"RankTotal":1303,"ScoreTotal":128418,"ID":848889850,"Name":"jonllll","NumVillages":6,"Points":31406,"Rank":798,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848889850","BestRank":798,"BestRankAt":"2023-02-15T06:22:53.455074Z","MostPoints":31406,"MostPointsAt":"2023-02-15T06:22:53.455074Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.455074Z","LastActivityAt":"2023-02-15T06:22:53.455075Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1588,"ScoreAtt":1417,"RankDef":1574,"ScoreDef":28000,"RankSup":1038,"ScoreSup":3351,"RankTotal":1749,"ScoreTotal":32768,"ID":848890012,"Name":"Glaber","NumVillages":2,"Points":3543,"Rank":1456,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848890012","BestRank":1456,"BestRankAt":"2023-02-15T06:22:53.455075Z","MostPoints":3543,"MostPointsAt":"2023-02-15T06:22:53.455076Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455076Z","LastActivityAt":"2023-02-15T06:22:53.455076Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4559Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1310,"ScoreAtt":6343,"RankDef":1866,"ScoreDef":9541,"RankSup":1175,"ScoreSup":631,"RankTotal":1917,"ScoreTotal":16515,"ID":848892804,"Name":"Josef","NumVillages":3,"Points":4781,"Rank":1347,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848892804","BestRank":1347,"BestRankAt":"2023-02-15T06:22:53.455077Z","MostPoints":4781,"MostPointsAt":"2023-02-15T06:22:53.455077Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.455077Z","LastActivityAt":"2023-02-15T06:22:53.455077Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848893447,"Name":"Latino","NumVillages":1,"Points":26,"Rank":2757,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848893447","BestRank":2757,"BestRankAt":"2023-02-15T06:22:53.455078Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455078Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455078Z","LastActivityAt":"2023-02-15T06:22:53.455078Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848893520,"Name":"marekttt","NumVillages":1,"Points":26,"Rank":2758,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848893520","BestRank":2758,"BestRankAt":"2023-02-15T06:22:53.455079Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455079Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455079Z","LastActivityAt":"2023-02-15T06:22:53.45508Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":950,"ScoreAtt":39462,"RankDef":1455,"ScoreDef":38033,"RankSup":974,"ScoreSup":6265,"RankTotal":1454,"ScoreTotal":83760,"ID":848895676,"Name":"WarDuke","NumVillages":6,"Points":20638,"Rank":906,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848895676","BestRank":906,"BestRankAt":"2023-02-15T06:22:53.45508Z","MostPoints":20638,"MostPointsAt":"2023-02-15T06:22:53.455081Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.45508Z","LastActivityAt":"2023-02-15T06:22:53.455081Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":825,"ScoreAtt":71400,"RankDef":917,"ScoreDef":156800,"RankSup":0,"ScoreSup":0,"RankTotal":1092,"ScoreTotal":228200,"ID":848896434,"Name":"Liczyrzepa","NumVillages":12,"Points":28789,"Rank":827,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848896434","BestRank":827,"BestRankAt":"2023-02-15T06:22:53.455081Z","MostPoints":28789,"MostPointsAt":"2023-02-15T06:22:53.455082Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.455082Z","LastActivityAt":"2023-02-15T06:22:53.455082Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":232,"ScoreAtt":1286090,"RankDef":584,"ScoreDef":392783,"RankSup":185,"ScoreSup":1063475,"RankTotal":318,"ScoreTotal":2742348,"ID":848896948,"Name":"TheDoubleSunset","NumVillages":54,"Points":503337,"Rank":267,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848896948","BestRank":267,"BestRankAt":"2023-02-15T06:22:53.455083Z","MostPoints":503337,"MostPointsAt":"2023-02-15T06:22:53.455083Z","MostVillages":54,"MostVillagesAt":"2023-02-15T06:22:53.455083Z","LastActivityAt":"2023-02-15T06:22:53.455083Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848897333,"Name":"Dziwny As","NumVillages":1,"Points":119,"Rank":2450,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848897333","BestRank":2450,"BestRankAt":"2023-02-15T06:22:53.455084Z","MostPoints":119,"MostPointsAt":"2023-02-15T06:22:53.455084Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455084Z","LastActivityAt":"2023-02-15T06:22:53.455085Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1057,"ScoreAtt":22564,"RankDef":938,"ScoreDef":147398,"RankSup":0,"ScoreSup":0,"RankTotal":1212,"ScoreTotal":169962,"ID":848897972,"Name":"Skiczak","NumVillages":0,"Points":0,"Rank":3023,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848897972","BestRank":3023,"BestRankAt":"2023-02-15T06:22:53.455085Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455086Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455085Z","LastActivityAt":"2023-02-15T06:22:53.455086Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1536,"ScoreAtt":2022,"RankDef":1971,"ScoreDef":5803,"RankSup":186,"ScoreSup":1059697,"RankTotal":604,"ScoreTotal":1067522,"ID":848899726,"Name":"Savi","NumVillages":15,"Points":109899,"Rank":520,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848899726","BestRank":520,"BestRankAt":"2023-02-15T06:22:53.455086Z","MostPoints":109899,"MostPointsAt":"2023-02-15T06:22:53.455087Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.455087Z","LastActivityAt":"2023-02-15T06:22:53.455087Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1428,"ScoreAtt":3612,"RankDef":1791,"ScoreDef":12973,"RankSup":0,"ScoreSup":0,"RankTotal":1915,"ScoreTotal":16585,"ID":848901396,"Name":"Kekuuƛ","NumVillages":3,"Points":12867,"Rank":1031,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848901396","BestRank":1031,"BestRankAt":"2023-02-15T06:22:53.455088Z","MostPoints":12867,"MostPointsAt":"2023-02-15T06:22:53.455088Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.455088Z","LastActivityAt":"2023-02-15T06:22:53.455088Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848901822,"Name":"koka17","NumVillages":1,"Points":952,"Rank":1879,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848901822","BestRank":1879,"BestRankAt":"2023-02-15T06:22:53.455089Z","MostPoints":952,"MostPointsAt":"2023-02-15T06:22:53.455089Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455089Z","LastActivityAt":"2023-02-15T06:22:53.455089Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":894,"ScoreAtt":52177,"RankDef":789,"ScoreDef":218581,"RankSup":0,"ScoreSup":0,"RankTotal":1033,"ScoreTotal":270758,"ID":848902592,"Name":"Generalruski","NumVillages":16,"Points":80047,"Rank":585,"TribeID":633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848902592","BestRank":585,"BestRankAt":"2023-02-15T06:22:53.45509Z","MostPoints":80047,"MostPointsAt":"2023-02-15T06:22:53.455091Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.45509Z","LastActivityAt":"2023-02-15T06:22:53.455091Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":798,"ScoreAtt":82423,"RankDef":422,"ScoreDef":682537,"RankSup":632,"ScoreSup":80740,"RankTotal":671,"ScoreTotal":845700,"ID":848902744,"Name":"sliwatojo","NumVillages":7,"Points":48279,"Rank":701,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848902744","BestRank":701,"BestRankAt":"2023-02-15T06:22:53.455091Z","MostPoints":48279,"MostPointsAt":"2023-02-15T06:22:53.455092Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.455092Z","LastActivityAt":"2023-02-15T06:22:53.455092Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1005,"ScoreAtt":29346,"RankDef":1521,"ScoreDef":31764,"RankSup":925,"ScoreSup":9795,"RankTotal":1500,"ScoreTotal":70905,"ID":848903260,"Name":"Gazun","NumVillages":1,"Points":3428,"Rank":1479,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848903260","BestRank":1479,"BestRankAt":"2023-02-15T06:22:53.455093Z","MostPoints":3428,"MostPointsAt":"2023-02-15T06:22:53.455093Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455093Z","LastActivityAt":"2023-02-15T06:22:53.455093Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1630,"ScoreAtt":999,"RankDef":2132,"ScoreDef":2205,"RankSup":587,"ScoreSup":103683,"RankTotal":1367,"ScoreTotal":106887,"ID":848903690,"Name":"Rajmundeq","NumVillages":1,"Points":4255,"Rank":1389,"TribeID":822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848903690","BestRank":1389,"BestRankAt":"2023-02-15T06:22:53.455094Z","MostPoints":4255,"MostPointsAt":"2023-02-15T06:22:53.455094Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455094Z","LastActivityAt":"2023-02-15T06:22:53.455094Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":877,"ScoreAtt":56152,"RankDef":124,"ScoreDef":3103516,"RankSup":1266,"ScoreSup":80,"RankTotal":278,"ScoreTotal":3159748,"ID":848905770,"Name":"TakiKris","NumVillages":1,"Points":3289,"Rank":1496,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848905770","BestRank":1496,"BestRankAt":"2023-02-15T06:22:53.455095Z","MostPoints":3289,"MostPointsAt":"2023-02-15T06:22:53.455095Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455095Z","LastActivityAt":"2023-02-15T06:22:53.455096Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2412,"ScoreDef":17,"RankSup":0,"ScoreSup":0,"RankTotal":2507,"ScoreTotal":17,"ID":848905784,"Name":"epstein.","NumVillages":1,"Points":123,"Rank":2439,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848905784","BestRank":2439,"BestRankAt":"2023-02-15T06:22:53.455096Z","MostPoints":123,"MostPointsAt":"2023-02-15T06:22:53.455097Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455097Z","LastActivityAt":"2023-02-15T06:22:53.455097Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848906441,"Name":"ACFT","NumVillages":1,"Points":26,"Rank":2759,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848906441","BestRank":2759,"BestRankAt":"2023-02-15T06:22:53.455098Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455098Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455098Z","LastActivityAt":"2023-02-15T06:22:53.455098Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":978,"ScoreAtt":33655,"RankDef":2446,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1741,"ScoreTotal":33665,"ID":848907771,"Name":"DZiki250","NumVillages":2,"Points":8327,"Rank":1144,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848907771","BestRank":1144,"BestRankAt":"2023-02-15T06:22:53.455099Z","MostPoints":8327,"MostPointsAt":"2023-02-15T06:22:53.455099Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455099Z","LastActivityAt":"2023-02-15T06:22:53.455099Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1469,"ScoreDef":36806,"RankSup":0,"ScoreSup":0,"RankTotal":1714,"ScoreTotal":36806,"ID":848908144,"Name":"Speedway007","NumVillages":1,"Points":1170,"Rank":1814,"TribeID":397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848908144","BestRank":1814,"BestRankAt":"2023-02-15T06:22:53.4551Z","MostPoints":1170,"MostPointsAt":"2023-02-15T06:22:53.4551Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.4551Z","LastActivityAt":"2023-02-15T06:22:53.455101Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848909122,"Name":"hujozo","NumVillages":1,"Points":220,"Rank":2271,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848909122","BestRank":2271,"BestRankAt":"2023-02-15T06:22:53.455101Z","MostPoints":220,"MostPointsAt":"2023-02-15T06:22:53.455102Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455101Z","LastActivityAt":"2023-02-15T06:22:53.455102Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2474,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2542,"ScoreTotal":10,"ID":848909292,"Name":"goodvibegoodman","NumVillages":1,"Points":1284,"Rank":1790,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848909292","BestRank":1790,"BestRankAt":"2023-02-15T06:22:53.455102Z","MostPoints":1284,"MostPointsAt":"2023-02-15T06:22:53.455103Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455103Z","LastActivityAt":"2023-02-15T06:22:53.455103Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":312,"ScoreAtt":868075,"RankDef":758,"ScoreDef":235957,"RankSup":361,"ScoreSup":387817,"RankTotal":495,"ScoreTotal":1491849,"ID":848909464,"Name":"klops3","NumVillages":46,"Points":407535,"Rank":298,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848909464","BestRank":298,"BestRankAt":"2023-02-15T06:22:53.455104Z","MostPoints":407535,"MostPointsAt":"2023-02-15T06:22:53.455104Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.455104Z","LastActivityAt":"2023-02-15T06:22:53.455104Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1659,"ScoreAtt":793,"RankDef":435,"ScoreDef":647879,"RankSup":1115,"ScoreSup":1592,"RankTotal":755,"ScoreTotal":650264,"ID":848910122,"Name":"GrzyBson04","NumVillages":9,"Points":16219,"Rank":978,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848910122","BestRank":978,"BestRankAt":"2023-02-15T06:22:53.455105Z","MostPoints":16219,"MostPointsAt":"2023-02-15T06:22:53.455105Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.455105Z","LastActivityAt":"2023-02-15T06:22:53.455106Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848910971,"Name":"xMario25x","NumVillages":1,"Points":26,"Rank":2760,"TribeID":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848910971","BestRank":2760,"BestRankAt":"2023-02-15T06:22:53.455106Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455107Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455106Z","LastActivityAt":"2023-02-15T06:22:53.455107Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848911863,"Name":"zapomniaƂem hasƂa","NumVillages":1,"Points":248,"Rank":2228,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848911863","BestRank":2228,"BestRankAt":"2023-02-15T06:22:53.455107Z","MostPoints":248,"MostPointsAt":"2023-02-15T06:22:53.455108Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455108Z","LastActivityAt":"2023-02-15T06:22:53.455108Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848912151,"Name":"aegalionkak","NumVillages":1,"Points":26,"Rank":2761,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912151","BestRank":2761,"BestRankAt":"2023-02-15T06:22:53.455109Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455109Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455109Z","LastActivityAt":"2023-02-15T06:22:53.455109Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":137,"ScoreAtt":2266959,"RankDef":775,"ScoreDef":225707,"RankSup":320,"ScoreSup":460500,"RankTotal":293,"ScoreTotal":2953166,"ID":848912265,"Name":"Luftmysza93","NumVillages":71,"Points":552548,"Rank":253,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912265","BestRank":253,"BestRankAt":"2023-02-15T06:22:53.45511Z","MostPoints":552548,"MostPointsAt":"2023-02-15T06:22:53.45511Z","MostVillages":71,"MostVillagesAt":"2023-02-15T06:22:53.45511Z","LastActivityAt":"2023-02-15T06:22:53.45511Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":525,"ScoreAtt":314086,"RankDef":729,"ScoreDef":254874,"RankSup":850,"ScoreSup":16827,"RankTotal":777,"ScoreTotal":585787,"ID":848912772,"Name":"xNieZnaJoMyx","NumVillages":25,"Points":235755,"Rank":390,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912772","BestRank":390,"BestRankAt":"2023-02-15T06:22:53.455111Z","MostPoints":235755,"MostPointsAt":"2023-02-15T06:22:53.455112Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.455111Z","LastActivityAt":"2023-02-15T06:22:53.455112Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1984,"ScoreAtt":4,"RankDef":837,"ScoreDef":190292,"RankSup":1241,"ScoreSup":183,"RankTotal":1160,"ScoreTotal":190479,"ID":848912937,"Name":"Szalony Ost","NumVillages":1,"Points":4985,"Rank":1329,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912937","BestRank":1329,"BestRankAt":"2023-02-15T06:22:53.455112Z","MostPoints":4985,"MostPointsAt":"2023-02-15T06:22:53.455113Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455113Z","LastActivityAt":"2023-02-15T06:22:53.455113Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1112,"ScoreAtt":17348,"RankDef":458,"ScoreDef":600811,"RankSup":397,"ScoreSup":317398,"RankTotal":643,"ScoreTotal":935557,"ID":848913030,"Name":"Makoo","NumVillages":1,"Points":26,"Rank":2762,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913030","BestRank":2762,"BestRankAt":"2023-02-15T06:22:53.455114Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455114Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455114Z","LastActivityAt":"2023-02-15T06:22:53.455114Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":198,"ScoreAtt":1571938,"RankDef":916,"ScoreDef":156977,"RankSup":287,"ScoreSup":565408,"RankTotal":368,"ScoreTotal":2294323,"ID":848913037,"Name":"FraPe","NumVillages":92,"Points":750867,"Rank":191,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913037","BestRank":191,"BestRankAt":"2023-02-15T06:22:53.455118Z","MostPoints":750867,"MostPointsAt":"2023-02-15T06:22:53.455119Z","MostVillages":92,"MostVillagesAt":"2023-02-15T06:22:53.455119Z","LastActivityAt":"2023-02-15T06:22:53.455119Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1556,"ScoreAtt":1788,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2262,"ScoreTotal":1788,"ID":848913252,"Name":"DAJWIDOS16","NumVillages":2,"Points":3789,"Rank":1431,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913252","BestRank":1431,"BestRankAt":"2023-02-15T06:22:53.45512Z","MostPoints":3789,"MostPointsAt":"2023-02-15T06:22:53.45512Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.45512Z","LastActivityAt":"2023-02-15T06:22:53.45512Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":185,"ScoreAtt":1649787,"RankDef":38,"ScoreDef":8684653,"RankSup":167,"ScoreSup":1318832,"RankTotal":66,"ScoreTotal":11653272,"ID":848913998,"Name":"Kuzyn Piotruƛ","NumVillages":129,"Points":903868,"Rank":162,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913998","BestRank":162,"BestRankAt":"2023-02-15T06:22:53.455121Z","MostPoints":903868,"MostPointsAt":"2023-02-15T06:22:53.455121Z","MostVillages":129,"MostVillagesAt":"2023-02-15T06:22:53.455121Z","LastActivityAt":"2023-02-15T06:22:53.455122Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1848,"ScoreDef":10072,"RankSup":0,"ScoreSup":0,"RankTotal":1996,"ScoreTotal":10072,"ID":848914120,"Name":"Lost im Wald","NumVillages":1,"Points":1164,"Rank":1815,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848914120","BestRank":1815,"BestRankAt":"2023-02-15T06:22:53.455122Z","MostPoints":1164,"MostPointsAt":"2023-02-15T06:22:53.455123Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455122Z","LastActivityAt":"2023-02-15T06:22:53.455123Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":629,"ScoreAtt":178796,"RankDef":167,"ScoreDef":2244365,"RankSup":389,"ScoreSup":329848,"RankTotal":315,"ScoreTotal":2753009,"ID":848914661,"Name":"M A S S A C R E","NumVillages":1,"Points":26,"Rank":2763,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848914661","BestRank":2763,"BestRankAt":"2023-02-15T06:22:53.455123Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455124Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455124Z","LastActivityAt":"2023-02-15T06:22:53.455124Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1426,"ScoreAtt":3621,"RankDef":1630,"ScoreDef":23853,"RankSup":1111,"ScoreSup":1663,"RankTotal":1780,"ScoreTotal":29137,"ID":848915032,"Name":"Naval3","NumVillages":1,"Points":7192,"Rank":1208,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915032","BestRank":1208,"BestRankAt":"2023-02-15T06:22:53.455125Z","MostPoints":7192,"MostPointsAt":"2023-02-15T06:22:53.455125Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455125Z","LastActivityAt":"2023-02-15T06:22:53.455125Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":123,"ScoreAtt":2466665,"RankDef":590,"ScoreDef":387305,"RankSup":64,"ScoreSup":2926575,"RankTotal":159,"ScoreTotal":5780545,"ID":848915531,"Name":"Amator7","NumVillages":163,"Points":1454064,"Rank":81,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915531","BestRank":81,"BestRankAt":"2023-02-15T06:22:53.455126Z","MostPoints":1454064,"MostPointsAt":"2023-02-15T06:22:53.455126Z","MostVillages":163,"MostVillagesAt":"2023-02-15T06:22:53.455126Z","LastActivityAt":"2023-02-15T06:22:53.455126Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":9,"ScoreAtt":13282022,"RankDef":17,"ScoreDef":17032497,"RankSup":41,"ScoreSup":3909293,"RankTotal":11,"ScoreTotal":34223812,"ID":848915730,"Name":"szunaj23 x Kewlys","NumVillages":435,"Points":3917742,"Rank":9,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915730","BestRank":9,"BestRankAt":"2023-02-15T06:22:53.455127Z","MostPoints":3917742,"MostPointsAt":"2023-02-15T06:22:53.455128Z","MostVillages":435,"MostVillagesAt":"2023-02-15T06:22:53.455127Z","LastActivityAt":"2023-02-15T06:22:53.455128Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":811,"ScoreDef":203724,"RankSup":0,"ScoreSup":0,"RankTotal":1134,"ScoreTotal":203724,"ID":848915956,"Name":"Kreynoss","NumVillages":0,"Points":0,"Rank":3024,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915956","BestRank":3024,"BestRankAt":"2023-02-15T06:22:53.455128Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455129Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455129Z","LastActivityAt":"2023-02-15T06:22:53.455129Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1086,"ScoreAtt":19662,"RankDef":1239,"ScoreDef":65933,"RankSup":0,"ScoreSup":0,"RankTotal":1447,"ScoreTotal":85595,"ID":848916779,"Name":"Davcio1994","NumVillages":1,"Points":26,"Rank":2764,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848916779","BestRank":2764,"BestRankAt":"2023-02-15T06:22:53.45513Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.45513Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45513Z","LastActivityAt":"2023-02-15T06:22:53.45513Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1538,"ScoreAtt":1979,"RankDef":1035,"ScoreDef":114991,"RankSup":1350,"ScoreSup":6,"RankTotal":1336,"ScoreTotal":116976,"ID":848917127,"Name":"PiotrekPazzi","NumVillages":1,"Points":158,"Rank":2368,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848917127","BestRank":2368,"BestRankAt":"2023-02-15T06:22:53.455131Z","MostPoints":158,"MostPointsAt":"2023-02-15T06:22:53.455131Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455131Z","LastActivityAt":"2023-02-15T06:22:53.455131Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2245,"ScoreDef":675,"RankSup":984,"ScoreSup":5962,"RankTotal":2080,"ScoreTotal":6637,"ID":848917401,"Name":"GƂaz","NumVillages":1,"Points":1083,"Rank":1842,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848917401","BestRank":1842,"BestRankAt":"2023-02-15T06:22:53.455132Z","MostPoints":1083,"MostPointsAt":"2023-02-15T06:22:53.455132Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455132Z","LastActivityAt":"2023-02-15T06:22:53.455133Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1068,"ScoreAtt":21197,"RankDef":856,"ScoreDef":184738,"RankSup":802,"ScoreSup":24624,"RankTotal":1086,"ScoreTotal":230559,"ID":848917570,"Name":"JURAND WIELKI","NumVillages":10,"Points":43351,"Rank":723,"TribeID":1368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848917570","BestRank":723,"BestRankAt":"2023-02-15T06:22:53.455133Z","MostPoints":43351,"MostPointsAt":"2023-02-15T06:22:53.455134Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.455134Z","LastActivityAt":"2023-02-15T06:22:53.455134Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1348,"ScoreAtt":5305,"RankDef":2094,"ScoreDef":2865,"RankSup":0,"ScoreSup":0,"RankTotal":2037,"ScoreTotal":8170,"ID":848918262,"Name":"Przekocur","NumVillages":2,"Points":17505,"Rank":962,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848918262","BestRank":962,"BestRankAt":"2023-02-15T06:22:53.455135Z","MostPoints":17505,"MostPointsAt":"2023-02-15T06:22:53.455135Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455135Z","LastActivityAt":"2023-02-15T06:22:53.455135Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":31,"ScoreAtt":6723809,"RankDef":238,"ScoreDef":1597838,"RankSup":21,"ScoreSup":4959613,"RankTotal":58,"ScoreTotal":13281260,"ID":848918380,"Name":"THEvMOLKA","NumVillages":241,"Points":2400094,"Rank":30,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848918380","BestRank":30,"BestRankAt":"2023-02-15T06:22:53.455136Z","MostPoints":2400094,"MostPointsAt":"2023-02-15T06:22:53.455136Z","MostVillages":241,"MostVillagesAt":"2023-02-15T06:22:53.455136Z","LastActivityAt":"2023-02-15T06:22:53.455136Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2303,"ScoreDef":264,"RankSup":0,"ScoreSup":0,"RankTotal":2388,"ScoreTotal":264,"ID":848919959,"Name":"arusaru10","NumVillages":1,"Points":527,"Rank":2013,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848919959","BestRank":2013,"BestRankAt":"2023-02-15T06:22:53.455137Z","MostPoints":527,"MostPointsAt":"2023-02-15T06:22:53.455137Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455137Z","LastActivityAt":"2023-02-15T06:22:53.455138Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1361,"ScoreAtt":5088,"RankDef":802,"ScoreDef":208966,"RankSup":1024,"ScoreSup":3945,"RankTotal":1112,"ScoreTotal":217999,"ID":848921536,"Name":"DemolkaHD","NumVillages":17,"Points":100943,"Rank":536,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848921536","BestRank":536,"BestRankAt":"2023-02-15T06:22:53.455138Z","MostPoints":100943,"MostPointsAt":"2023-02-15T06:22:53.455139Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.455138Z","LastActivityAt":"2023-02-15T06:22:53.455139Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":679,"ScoreAtt":141025,"RankDef":517,"ScoreDef":494414,"RankSup":772,"ScoreSup":31735,"RankTotal":745,"ScoreTotal":667174,"ID":848921793,"Name":"kubaaa26","NumVillages":1,"Points":11678,"Rank":1046,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848921793","BestRank":1046,"BestRankAt":"2023-02-15T06:22:53.45514Z","MostPoints":11678,"MostPointsAt":"2023-02-15T06:22:53.45514Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45514Z","LastActivityAt":"2023-02-15T06:22:53.45514Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":516,"ScoreAtt":329073,"RankDef":1255,"ScoreDef":62460,"RankSup":930,"ScoreSup":9441,"RankTotal":916,"ScoreTotal":400974,"ID":848921861,"Name":"Tiex","NumVillages":28,"Points":258736,"Rank":378,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848921861","BestRank":378,"BestRankAt":"2023-02-15T06:22:53.455141Z","MostPoints":258736,"MostPointsAt":"2023-02-15T06:22:53.455141Z","MostVillages":28,"MostVillagesAt":"2023-02-15T06:22:53.455141Z","LastActivityAt":"2023-02-15T06:22:53.455141Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1520,"ScoreAtt":2164,"RankDef":1699,"ScoreDef":18950,"RankSup":0,"ScoreSup":0,"RankTotal":1856,"ScoreTotal":21114,"ID":848922118,"Name":"Perszing125","NumVillages":1,"Points":393,"Rank":2093,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848922118","BestRank":2093,"BestRankAt":"2023-02-15T06:22:53.455142Z","MostPoints":393,"MostPointsAt":"2023-02-15T06:22:53.455142Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455142Z","LastActivityAt":"2023-02-15T06:22:53.455143Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2195,"ScoreDef":1286,"RankSup":0,"ScoreSup":0,"RankTotal":2290,"ScoreTotal":1286,"ID":848922517,"Name":"Albertini","NumVillages":1,"Points":26,"Rank":2765,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848922517","BestRank":2765,"BestRankAt":"2023-02-15T06:22:53.455143Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455144Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455143Z","LastActivityAt":"2023-02-15T06:22:53.455144Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1472,"ScoreAtt":2780,"RankDef":2468,"ScoreDef":10,"RankSup":1270,"ScoreSup":68,"RankTotal":2212,"ScoreTotal":2858,"ID":848922958,"Name":"Luftwafel","NumVillages":4,"Points":7587,"Rank":1180,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848922958","BestRank":1180,"BestRankAt":"2023-02-15T06:22:53.455144Z","MostPoints":7587,"MostPointsAt":"2023-02-15T06:22:53.455145Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.455145Z","LastActivityAt":"2023-02-15T06:22:53.455145Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1114,"ScoreAtt":17122,"RankDef":1621,"ScoreDef":24410,"RankSup":1138,"ScoreSup":1180,"RankTotal":1662,"ScoreTotal":42712,"ID":848923540,"Name":"nival","NumVillages":0,"Points":0,"Rank":3025,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848923540","BestRank":3025,"BestRankAt":"2023-02-15T06:22:53.455146Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.455146Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.455146Z","LastActivityAt":"2023-02-15T06:22:53.455146Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848923646,"Name":"mani4884","NumVillages":1,"Points":26,"Rank":2766,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848923646","BestRank":2766,"BestRankAt":"2023-02-15T06:22:53.455147Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455147Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455147Z","LastActivityAt":"2023-02-15T06:22:53.455148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848923754,"Name":"monkeyy","NumVillages":1,"Points":55,"Rank":2566,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848923754","BestRank":2566,"BestRankAt":"2023-02-15T06:22:53.455148Z","MostPoints":55,"MostPointsAt":"2023-02-15T06:22:53.455149Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455148Z","LastActivityAt":"2023-02-15T06:22:53.455149Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":616,"ScoreAtt":192066,"RankDef":161,"ScoreDef":2341825,"RankSup":598,"ScoreSup":100338,"RankTotal":332,"ScoreTotal":2634229,"ID":848924219,"Name":"AndziaN","NumVillages":15,"Points":61333,"Rank":648,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848924219","BestRank":648,"BestRankAt":"2023-02-15T06:22:53.455149Z","MostPoints":61333,"MostPointsAt":"2023-02-15T06:22:53.45515Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.45515Z","LastActivityAt":"2023-02-15T06:22:53.45515Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1842,"ScoreAtt":134,"RankDef":2057,"ScoreDef":3692,"RankSup":0,"ScoreSup":0,"RankTotal":2178,"ScoreTotal":3826,"ID":848924648,"Name":"XXXRETARDION","NumVillages":1,"Points":716,"Rank":1947,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848924648","BestRank":1947,"BestRankAt":"2023-02-15T06:22:53.455151Z","MostPoints":716,"MostPointsAt":"2023-02-15T06:22:53.455151Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455151Z","LastActivityAt":"2023-02-15T06:22:53.455151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1216,"ScoreAtt":10019,"RankDef":546,"ScoreDef":453593,"RankSup":1108,"ScoreSup":1771,"RankTotal":865,"ScoreTotal":465383,"ID":848925840,"Name":"Ariel69","NumVillages":2,"Points":18018,"Rank":951,"TribeID":1040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848925840","BestRank":951,"BestRankAt":"2023-02-15T06:22:53.455152Z","MostPoints":18018,"MostPointsAt":"2023-02-15T06:22:53.455152Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455152Z","LastActivityAt":"2023-02-15T06:22:53.455152Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2322,"ScoreDef":201,"RankSup":0,"ScoreSup":0,"RankTotal":2402,"ScoreTotal":201,"ID":848926070,"Name":"KOSMACZ1","NumVillages":1,"Points":439,"Rank":2064,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848926070","BestRank":2064,"BestRankAt":"2023-02-15T06:22:53.455153Z","MostPoints":439,"MostPointsAt":"2023-02-15T06:22:53.455153Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455153Z","LastActivityAt":"2023-02-15T06:22:53.455154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":423,"ScoreAtt":508432,"RankDef":1842,"ScoreDef":10303,"RankSup":313,"ScoreSup":486795,"RankTotal":617,"ScoreTotal":1005530,"ID":848926293,"Name":"Mr.Creep","NumVillages":42,"Points":328692,"Rank":343,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848926293","BestRank":343,"BestRankAt":"2023-02-15T06:22:53.455154Z","MostPoints":328692,"MostPointsAt":"2023-02-15T06:22:53.455155Z","MostVillages":42,"MostVillagesAt":"2023-02-15T06:22:53.455155Z","LastActivityAt":"2023-02-15T06:22:53.455155Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":860,"ScoreAtt":59949,"RankDef":535,"ScoreDef":471726,"RankSup":911,"ScoreSup":10733,"RankTotal":810,"ScoreTotal":542408,"ID":848927262,"Name":"Loca","NumVillages":1,"Points":54,"Rank":2569,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848927262","BestRank":2569,"BestRankAt":"2023-02-15T06:22:53.455156Z","MostPoints":54,"MostPointsAt":"2023-02-15T06:22:53.455156Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455156Z","LastActivityAt":"2023-02-15T06:22:53.455156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":499,"ScoreAtt":351240,"RankDef":1188,"ScoreDef":75385,"RankSup":531,"ScoreSup":142622,"RankTotal":790,"ScoreTotal":569247,"ID":848928486,"Name":"ciachbabkewpiach","NumVillages":8,"Points":55903,"Rank":669,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848928486","BestRank":669,"BestRankAt":"2023-02-15T06:22:53.455157Z","MostPoints":55903,"MostPointsAt":"2023-02-15T06:22:53.455157Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.455157Z","LastActivityAt":"2023-02-15T06:22:53.455157Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.455998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":332,"ScoreAtt":783845,"RankDef":1028,"ScoreDef":117209,"RankSup":667,"ScoreSup":62142,"RankTotal":634,"ScoreTotal":963196,"ID":848928624,"Name":"Mr Bizy","NumVillages":36,"Points":264100,"Rank":370,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848928624","BestRank":370,"BestRankAt":"2023-02-15T06:22:53.455158Z","MostPoints":264100,"MostPointsAt":"2023-02-15T06:22:53.455158Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.455158Z","LastActivityAt":"2023-02-15T06:22:53.455159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":721,"ScoreAtt":115177,"RankDef":136,"ScoreDef":2835359,"RankSup":245,"ScoreSup":727210,"RankTotal":249,"ScoreTotal":3677746,"ID":848930111,"Name":"Slawpol","NumVillages":2,"Points":19887,"Rank":918,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930111","BestRank":918,"BestRankAt":"2023-02-15T06:22:53.455159Z","MostPoints":19887,"MostPointsAt":"2023-02-15T06:22:53.45516Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455159Z","LastActivityAt":"2023-02-15T06:22:53.45516Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":926,"ScoreDef":151017,"RankSup":0,"ScoreSup":0,"RankTotal":1247,"ScoreTotal":151017,"ID":848930498,"Name":"5dych","NumVillages":1,"Points":140,"Rank":2391,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930498","BestRank":2391,"BestRankAt":"2023-02-15T06:22:53.455161Z","MostPoints":140,"MostPointsAt":"2023-02-15T06:22:53.455161Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455161Z","LastActivityAt":"2023-02-15T06:22:53.455161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1180,"ScoreAtt":11918,"RankDef":2457,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1969,"ScoreTotal":11928,"ID":848930898,"Name":"NiezƂomni 44","NumVillages":4,"Points":13642,"Rank":1014,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930898","BestRank":1014,"BestRankAt":"2023-02-15T06:22:53.455162Z","MostPoints":13642,"MostPointsAt":"2023-02-15T06:22:53.455162Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.455162Z","LastActivityAt":"2023-02-15T06:22:53.455162Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848930996,"Name":"cwaniaczek25","NumVillages":1,"Points":26,"Rank":2767,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930996","BestRank":2767,"BestRankAt":"2023-02-15T06:22:53.455163Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.455163Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455163Z","LastActivityAt":"2023-02-15T06:22:53.455164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1836,"ScoreDef":10691,"RankSup":0,"ScoreSup":0,"RankTotal":1990,"ScoreTotal":10691,"ID":848931321,"Name":"tomek709","NumVillages":1,"Points":10986,"Rank":1057,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848931321","BestRank":1057,"BestRankAt":"2023-02-15T06:22:53.455164Z","MostPoints":10986,"MostPointsAt":"2023-02-15T06:22:53.455165Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455164Z","LastActivityAt":"2023-02-15T06:22:53.455165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2032,"ScoreDef":4152,"RankSup":0,"ScoreSup":0,"RankTotal":2162,"ScoreTotal":4152,"ID":848932115,"Name":"Raff Tierro","NumVillages":1,"Points":260,"Rank":2213,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848932115","BestRank":2213,"BestRankAt":"2023-02-15T06:22:53.455165Z","MostPoints":260,"MostPointsAt":"2023-02-15T06:22:53.455166Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455166Z","LastActivityAt":"2023-02-15T06:22:53.455166Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":660,"ScoreAtt":153759,"RankDef":1724,"ScoreDef":17321,"RankSup":435,"ScoreSup":247873,"RankTotal":897,"ScoreTotal":418953,"ID":848932879,"Name":"mƂody77","NumVillages":58,"Points":434698,"Rank":289,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848932879","BestRank":289,"BestRankAt":"2023-02-15T06:22:53.455167Z","MostPoints":434698,"MostPointsAt":"2023-02-15T06:22:53.455167Z","MostVillages":58,"MostVillagesAt":"2023-02-15T06:22:53.455167Z","LastActivityAt":"2023-02-15T06:22:53.455167Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1096,"ScoreAtt":18969,"RankDef":928,"ScoreDef":150596,"RankSup":921,"ScoreSup":10175,"RankTotal":1190,"ScoreTotal":179740,"ID":848933470,"Name":"toficiii","NumVillages":2,"Points":1027,"Rank":1852,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848933470","BestRank":1852,"BestRankAt":"2023-02-15T06:22:53.455168Z","MostPoints":1027,"MostPointsAt":"2023-02-15T06:22:53.455168Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455168Z","LastActivityAt":"2023-02-15T06:22:53.455169Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":134,"ScoreAtt":2288266,"RankDef":390,"ScoreDef":774475,"RankSup":258,"ScoreSup":656962,"RankTotal":248,"ScoreTotal":3719703,"ID":848934935,"Name":"Czakalaka","NumVillages":144,"Points":1189615,"Rank":115,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848934935","BestRank":115,"BestRankAt":"2023-02-15T06:22:53.455169Z","MostPoints":1189615,"MostPointsAt":"2023-02-15T06:22:53.45517Z","MostVillages":144,"MostVillagesAt":"2023-02-15T06:22:53.455169Z","LastActivityAt":"2023-02-15T06:22:53.45517Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":269,"ScoreAtt":1052044,"RankDef":1144,"ScoreDef":85879,"RankSup":781,"ScoreSup":29372,"RankTotal":570,"ScoreTotal":1167295,"ID":848935020,"Name":"Bkonkel4","NumVillages":28,"Points":217653,"Rank":404,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848935020","BestRank":404,"BestRankAt":"2023-02-15T06:22:53.45517Z","MostPoints":217653,"MostPointsAt":"2023-02-15T06:22:53.455171Z","MostVillages":28,"MostVillagesAt":"2023-02-15T06:22:53.455171Z","LastActivityAt":"2023-02-15T06:22:53.455171Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":160,"ScoreAtt":1977167,"RankDef":457,"ScoreDef":602145,"RankSup":257,"ScoreSup":663649,"RankTotal":272,"ScoreTotal":3242961,"ID":848935389,"Name":"Agresywny Gabriel","NumVillages":39,"Points":385867,"Rank":307,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848935389","BestRank":307,"BestRankAt":"2023-02-15T06:22:53.455172Z","MostPoints":385867,"MostPointsAt":"2023-02-15T06:22:53.455172Z","MostVillages":39,"MostVillagesAt":"2023-02-15T06:22:53.455172Z","LastActivityAt":"2023-02-15T06:22:53.455172Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1793,"ScoreAtt":230,"RankDef":2435,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2394,"ScoreTotal":240,"ID":848935732,"Name":"ArąStaro","NumVillages":1,"Points":2032,"Rank":1658,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848935732","BestRank":1658,"BestRankAt":"2023-02-15T06:22:53.455173Z","MostPoints":2032,"MostPointsAt":"2023-02-15T06:22:53.455173Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455173Z","LastActivityAt":"2023-02-15T06:22:53.455173Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":536,"ScoreAtt":300947,"RankDef":567,"ScoreDef":408983,"RankSup":1314,"ScoreSup":17,"RankTotal":726,"ScoreTotal":709947,"ID":848936053,"Name":"Born-kes","NumVillages":1,"Points":2537,"Rank":1583,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848936053","BestRank":1583,"BestRankAt":"2023-02-15T06:22:53.455174Z","MostPoints":2537,"MostPointsAt":"2023-02-15T06:22:53.455175Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455174Z","LastActivityAt":"2023-02-15T06:22:53.455175Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2463,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2549,"ScoreTotal":10,"ID":848936229,"Name":"marianos1994","NumVillages":1,"Points":689,"Rank":1957,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848936229","BestRank":1957,"BestRankAt":"2023-02-15T06:22:53.455175Z","MostPoints":689,"MostPointsAt":"2023-02-15T06:22:53.455176Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455176Z","LastActivityAt":"2023-02-15T06:22:53.455176Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":988,"ScoreAtt":32792,"RankDef":1929,"ScoreDef":6936,"RankSup":1090,"ScoreSup":2119,"RankTotal":1671,"ScoreTotal":41847,"ID":848937248,"Name":"Saran1","NumVillages":12,"Points":33323,"Rank":783,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848937248","BestRank":783,"BestRankAt":"2023-02-15T06:22:53.455177Z","MostPoints":33323,"MostPointsAt":"2023-02-15T06:22:53.455177Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.455177Z","LastActivityAt":"2023-02-15T06:22:53.455177Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1612,"ScoreAtt":1191,"RankDef":1344,"ScoreDef":52299,"RankSup":0,"ScoreSup":0,"RankTotal":1598,"ScoreTotal":53490,"ID":848937780,"Name":"SiwyStaruszek","NumVillages":1,"Points":1308,"Rank":1787,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848937780","BestRank":1787,"BestRankAt":"2023-02-15T06:22:53.455178Z","MostPoints":1308,"MostPointsAt":"2023-02-15T06:22:53.455178Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455178Z","LastActivityAt":"2023-02-15T06:22:53.455178Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1802,"ScoreAtt":213,"RankDef":1648,"ScoreDef":22476,"RankSup":0,"ScoreSup":0,"RankTotal":1842,"ScoreTotal":22689,"ID":848939131,"Name":"MichaelCh","NumVillages":2,"Points":3657,"Rank":1445,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848939131","BestRank":1445,"BestRankAt":"2023-02-15T06:22:53.455179Z","MostPoints":3657,"MostPointsAt":"2023-02-15T06:22:53.455179Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.455179Z","LastActivityAt":"2023-02-15T06:22:53.45518Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2337,"ScoreDef":138,"RankSup":0,"ScoreSup":0,"RankTotal":2422,"ScoreTotal":138,"ID":848939203,"Name":"Szczerbatka","NumVillages":1,"Points":1468,"Rank":1755,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848939203","BestRank":1755,"BestRankAt":"2023-02-15T06:22:53.45518Z","MostPoints":1468,"MostPointsAt":"2023-02-15T06:22:53.455181Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.45518Z","LastActivityAt":"2023-02-15T06:22:53.455181Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848939434,"Name":"wikingowy4321","NumVillages":1,"Points":233,"Rank":2248,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848939434","BestRank":2248,"BestRankAt":"2023-02-15T06:22:53.455181Z","MostPoints":233,"MostPointsAt":"2023-02-15T06:22:53.455182Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455182Z","LastActivityAt":"2023-02-15T06:22:53.455182Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1900,"ScoreDef":8010,"RankSup":0,"ScoreSup":0,"RankTotal":2045,"ScoreTotal":8010,"ID":848940223,"Name":"damiano3106","NumVillages":1,"Points":129,"Rank":2420,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848940223","BestRank":2420,"BestRankAt":"2023-02-15T06:22:53.455183Z","MostPoints":129,"MostPointsAt":"2023-02-15T06:22:53.455183Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455183Z","LastActivityAt":"2023-02-15T06:22:53.455183Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848942565,"Name":"Alibaba420","NumVillages":1,"Points":425,"Rank":2075,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942565","BestRank":2075,"BestRankAt":"2023-02-15T06:22:53.455184Z","MostPoints":425,"MostPointsAt":"2023-02-15T06:22:53.455184Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455184Z","LastActivityAt":"2023-02-15T06:22:53.455185Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1115,"ScoreAtt":17073,"RankDef":2073,"ScoreDef":3364,"RankSup":0,"ScoreSup":0,"RankTotal":1864,"ScoreTotal":20437,"ID":848942587,"Name":"kamilpo4","NumVillages":3,"Points":21485,"Rank":895,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942587","BestRank":895,"BestRankAt":"2023-02-15T06:22:53.455185Z","MostPoints":21485,"MostPointsAt":"2023-02-15T06:22:53.455186Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.455185Z","LastActivityAt":"2023-02-15T06:22:53.455186Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1739,"ScoreDef":16516,"RankSup":0,"ScoreSup":0,"RankTotal":1916,"ScoreTotal":16516,"ID":848942618,"Name":"Gebels25","NumVillages":1,"Points":158,"Rank":2369,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942618","BestRank":2369,"BestRankAt":"2023-02-15T06:22:53.455186Z","MostPoints":158,"MostPointsAt":"2023-02-15T06:22:53.455187Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455187Z","LastActivityAt":"2023-02-15T06:22:53.455187Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1922,"ScoreAtt":36,"RankDef":2332,"ScoreDef":152,"RankSup":0,"ScoreSup":0,"RankTotal":2404,"ScoreTotal":188,"ID":848942734,"Name":"Harpun98","NumVillages":1,"Points":512,"Rank":2022,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942734","BestRank":2022,"BestRankAt":"2023-02-15T06:22:53.455188Z","MostPoints":512,"MostPointsAt":"2023-02-15T06:22:53.455188Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455188Z","LastActivityAt":"2023-02-15T06:22:53.455188Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1835,"ScoreDef":10697,"RankSup":0,"ScoreSup":0,"RankTotal":1989,"ScoreTotal":10697,"ID":848942847,"Name":"taysi","NumVillages":1,"Points":1917,"Rank":1682,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942847","BestRank":1682,"BestRankAt":"2023-02-15T06:22:53.455189Z","MostPoints":1917,"MostPointsAt":"2023-02-15T06:22:53.455189Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455189Z","LastActivityAt":"2023-02-15T06:22:53.455189Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1566,"ScoreAtt":1701,"RankDef":396,"ScoreDef":764080,"RankSup":0,"ScoreSup":0,"RankTotal":698,"ScoreTotal":765781,"ID":848942968,"Name":"Stalker1","NumVillages":5,"Points":20266,"Rank":912,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942968","BestRank":912,"BestRankAt":"2023-02-15T06:22:53.45519Z","MostPoints":20266,"MostPointsAt":"2023-02-15T06:22:53.455191Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.45519Z","LastActivityAt":"2023-02-15T06:22:53.455191Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1812,"ScoreAtt":176,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2409,"ScoreTotal":176,"ID":848943145,"Name":"allombard","NumVillages":1,"Points":3442,"Rank":1473,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848943145","BestRank":1473,"BestRankAt":"2023-02-15T06:22:53.455191Z","MostPoints":3442,"MostPointsAt":"2023-02-15T06:22:53.455192Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455192Z","LastActivityAt":"2023-02-15T06:22:53.455192Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848944455,"Name":"aniarobifoty","NumVillages":1,"Points":344,"Rank":2132,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848944455","BestRank":2132,"BestRankAt":"2023-02-15T06:22:53.455193Z","MostPoints":344,"MostPointsAt":"2023-02-15T06:22:53.455193Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455193Z","LastActivityAt":"2023-02-15T06:22:53.455193Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456043Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848944534,"Name":"piteroch","NumVillages":1,"Points":226,"Rank":2258,"TribeID":1785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848944534","BestRank":2258,"BestRankAt":"2023-02-15T06:22:53.455194Z","MostPoints":226,"MostPointsAt":"2023-02-15T06:22:53.455194Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455194Z","LastActivityAt":"2023-02-15T06:22:53.455194Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456045Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1078,"ScoreAtt":20363,"RankDef":456,"ScoreDef":603130,"RankSup":379,"ScoreSup":349908,"RankTotal":627,"ScoreTotal":973401,"ID":848945529,"Name":"Niunia1","NumVillages":13,"Points":66076,"Rank":629,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848945529","BestRank":629,"BestRankAt":"2023-02-15T06:22:53.455195Z","MostPoints":66076,"MostPointsAt":"2023-02-15T06:22:53.455195Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.455195Z","LastActivityAt":"2023-02-15T06:22:53.455196Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456045Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":995,"ScoreAtt":31213,"RankDef":766,"ScoreDef":233810,"RankSup":1228,"ScoreSup":238,"RankTotal":1038,"ScoreTotal":265261,"ID":848946608,"Name":"-Robert-","NumVillages":6,"Points":25153,"Rank":859,"TribeID":520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848946608","BestRank":859,"BestRankAt":"2023-02-15T06:22:53.455196Z","MostPoints":25153,"MostPointsAt":"2023-02-15T06:22:53.455197Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.455197Z","LastActivityAt":"2023-02-15T06:22:53.455197Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456047Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":370,"ScoreAtt":648294,"RankDef":2014,"ScoreDef":4569,"RankSup":969,"ScoreSup":6596,"RankTotal":749,"ScoreTotal":659459,"ID":848946700,"Name":"Lord Maximus","NumVillages":49,"Points":292867,"Rank":360,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848946700","BestRank":360,"BestRankAt":"2023-02-15T06:22:53.455198Z","MostPoints":292867,"MostPointsAt":"2023-02-15T06:22:53.455198Z","MostVillages":49,"MostVillagesAt":"2023-02-15T06:22:53.455198Z","LastActivityAt":"2023-02-15T06:22:53.455198Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456049Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1905,"ScoreAtt":46,"RankDef":1155,"ScoreDef":81959,"RankSup":1401,"ScoreSup":2,"RankTotal":1458,"ScoreTotal":82007,"ID":848949271,"Name":"sebo1303","NumVillages":1,"Points":135,"Rank":2405,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848949271","BestRank":2405,"BestRankAt":"2023-02-15T06:22:53.455199Z","MostPoints":135,"MostPointsAt":"2023-02-15T06:22:53.455199Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.455199Z","LastActivityAt":"2023-02-15T06:22:53.455199Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.45605Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1843,"ScoreAtt":134,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2424,"ScoreTotal":134,"ID":848949517,"Name":"Machoneyy","NumVillages":1,"Points":977,"Rank":1873,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848949517","BestRank":1873,"BestRankAt":"2023-02-15T06:22:53.4552Z","MostPoints":977,"MostPointsAt":"2023-02-15T06:22:53.4552Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.4552Z","LastActivityAt":"2023-02-15T06:22:53.455201Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.456052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1489,"ScoreDef":35268,"RankSup":0,"ScoreSup":0,"RankTotal":1727,"ScoreTotal":35268,"ID":848949597,"Name":"RadoLigonss","NumVillages":6,"Points":29462,"Rank":821,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848949597","BestRank":821,"BestRankAt":"2023-02-15T06:22:53.556874Z","MostPoints":29462,"MostPointsAt":"2023-02-15T06:22:53.556875Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.556874Z","LastActivityAt":"2023-02-15T06:22:53.556875Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557284Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2116,"ScoreDef":2465,"RankSup":0,"ScoreSup":0,"RankTotal":2226,"ScoreTotal":2465,"ID":848950255,"Name":"Tabaluga1922","NumVillages":1,"Points":844,"Rank":1907,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848950255","BestRank":1907,"BestRankAt":"2023-02-15T06:22:53.556875Z","MostPoints":844,"MostPointsAt":"2023-02-15T06:22:53.556875Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556875Z","LastActivityAt":"2023-02-15T06:22:53.556875Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557284Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848951699,"Name":"Szp4Q","NumVillages":1,"Points":129,"Rank":2421,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848951699","BestRank":2421,"BestRankAt":"2023-02-15T06:22:53.556876Z","MostPoints":129,"MostPointsAt":"2023-02-15T06:22:53.556876Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556876Z","LastActivityAt":"2023-02-15T06:22:53.556876Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1035,"ScoreAtt":26040,"RankDef":2279,"ScoreDef":422,"RankSup":0,"ScoreSup":0,"RankTotal":1807,"ScoreTotal":26462,"ID":848952556,"Name":"Arthi1991","NumVillages":1,"Points":783,"Rank":1923,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848952556","BestRank":1923,"BestRankAt":"2023-02-15T06:22:53.556876Z","MostPoints":783,"MostPointsAt":"2023-02-15T06:22:53.556876Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556876Z","LastActivityAt":"2023-02-15T06:22:53.556877Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1315,"ScoreAtt":6161,"RankDef":1890,"ScoreDef":8298,"RankSup":0,"ScoreSup":0,"RankTotal":1937,"ScoreTotal":14459,"ID":848952566,"Name":"morogram","NumVillages":2,"Points":5979,"Rank":1270,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848952566","BestRank":1270,"BestRankAt":"2023-02-15T06:22:53.556877Z","MostPoints":5979,"MostPointsAt":"2023-02-15T06:22:53.556877Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556877Z","LastActivityAt":"2023-02-15T06:22:53.556877Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":430,"ScoreAtt":486952,"RankDef":1091,"ScoreDef":95809,"RankSup":0,"ScoreSup":0,"RankTotal":780,"ScoreTotal":582761,"ID":848953066,"Name":"Pippo11.4fun","NumVillages":13,"Points":109810,"Rank":521,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848953066","BestRank":521,"BestRankAt":"2023-02-15T06:22:53.556878Z","MostPoints":109810,"MostPointsAt":"2023-02-15T06:22:53.556878Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.556878Z","LastActivityAt":"2023-02-15T06:22:53.556878Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1023,"ScoreAtt":27382,"RankDef":1757,"ScoreDef":15058,"RankSup":0,"ScoreSup":0,"RankTotal":1664,"ScoreTotal":42440,"ID":848953472,"Name":"kizak1","NumVillages":1,"Points":1372,"Rank":1773,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848953472","BestRank":1773,"BestRankAt":"2023-02-15T06:22:53.556878Z","MostPoints":1372,"MostPointsAt":"2023-02-15T06:22:53.556878Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556878Z","LastActivityAt":"2023-02-15T06:22:53.556878Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2480,"ScoreDef":7,"RankSup":0,"ScoreSup":0,"RankTotal":2554,"ScoreTotal":7,"ID":848954163,"Name":"Wiecznie pokƂucony","NumVillages":1,"Points":1005,"Rank":1863,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848954163","BestRank":1863,"BestRankAt":"2023-02-15T06:22:53.556879Z","MostPoints":1005,"MostPointsAt":"2023-02-15T06:22:53.556879Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556879Z","LastActivityAt":"2023-02-15T06:22:53.556879Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557286Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":957,"ScoreDef":141428,"RankSup":0,"ScoreSup":0,"RankTotal":1265,"ScoreTotal":141428,"ID":848954236,"Name":"C.a.","NumVillages":1,"Points":3454,"Rank":1470,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848954236","BestRank":1470,"BestRankAt":"2023-02-15T06:22:53.556879Z","MostPoints":3454,"MostPointsAt":"2023-02-15T06:22:53.556879Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556879Z","LastActivityAt":"2023-02-15T06:22:53.55688Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557286Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1597,"ScoreAtt":1298,"RankDef":833,"ScoreDef":193198,"RankSup":0,"ScoreSup":0,"RankTotal":1146,"ScoreTotal":194496,"ID":848955311,"Name":"PyrMen","NumVillages":0,"Points":0,"Rank":3026,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848955311","BestRank":3026,"BestRankAt":"2023-02-15T06:22:53.55688Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.55688Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.55688Z","LastActivityAt":"2023-02-15T06:22:53.55688Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557286Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848955756,"Name":"Patryczekk","NumVillages":1,"Points":229,"Rank":2251,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848955756","BestRank":2251,"BestRankAt":"2023-02-15T06:22:53.55688Z","MostPoints":229,"MostPointsAt":"2023-02-15T06:22:53.556881Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55688Z","LastActivityAt":"2023-02-15T06:22:53.556881Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557286Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":71,"ScoreAtt":4228066,"RankDef":143,"ScoreDef":2685989,"RankSup":170,"ScoreSup":1282628,"RankTotal":97,"ScoreTotal":8196683,"ID":848955783,"Name":"Bucks x Kamiiiru","NumVillages":186,"Points":1459988,"Rank":80,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848955783","BestRank":80,"BestRankAt":"2023-02-15T06:22:53.556881Z","MostPoints":1459988,"MostPointsAt":"2023-02-15T06:22:53.556881Z","MostVillages":186,"MostVillagesAt":"2023-02-15T06:22:53.556881Z","LastActivityAt":"2023-02-15T06:22:53.556881Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":692,"ScoreDef":280700,"RankSup":0,"ScoreSup":0,"RankTotal":1024,"ScoreTotal":280700,"ID":848956013,"Name":"Ɓotrka","NumVillages":0,"Points":0,"Rank":3027,"TribeID":147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956013","BestRank":3027,"BestRankAt":"2023-02-15T06:22:53.556882Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556882Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556882Z","LastActivityAt":"2023-02-15T06:22:53.556882Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":14,"ScoreAtt":10515776,"RankDef":328,"ScoreDef":1002004,"RankSup":149,"ScoreSup":1516397,"RankTotal":60,"ScoreTotal":13034177,"ID":848956513,"Name":"Ilia x BieniuS","NumVillages":258,"Points":2471663,"Rank":28,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956513","BestRank":28,"BestRankAt":"2023-02-15T06:22:53.556882Z","MostPoints":2471663,"MostPointsAt":"2023-02-15T06:22:53.556882Z","MostVillages":258,"MostVillagesAt":"2023-02-15T06:22:53.556882Z","LastActivityAt":"2023-02-15T06:22:53.556883Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848956537,"Name":"real124","NumVillages":1,"Points":26,"Rank":2768,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956537","BestRank":2768,"BestRankAt":"2023-02-15T06:22:53.556883Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556883Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556883Z","LastActivityAt":"2023-02-15T06:22:53.556883Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":11,"ScoreAtt":11463375,"RankDef":28,"ScoreDef":11533675,"RankSup":87,"ScoreSup":2395658,"RankTotal":18,"ScoreTotal":25392708,"ID":848956765,"Name":"Fristajla","NumVillages":376,"Points":3135935,"Rank":16,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956765","BestRank":16,"BestRankAt":"2023-02-15T06:22:53.556883Z","MostPoints":3135935,"MostPointsAt":"2023-02-15T06:22:53.556884Z","MostVillages":376,"MostVillagesAt":"2023-02-15T06:22:53.556883Z","LastActivityAt":"2023-02-15T06:22:53.556884Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848958005,"Name":"Chwedi","NumVillages":1,"Points":1011,"Rank":1860,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848958005","BestRank":1860,"BestRankAt":"2023-02-15T06:22:53.556884Z","MostPoints":1011,"MostPointsAt":"2023-02-15T06:22:53.556884Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556884Z","LastActivityAt":"2023-02-15T06:22:53.556884Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1140,"ScoreDef":86182,"RankSup":0,"ScoreSup":0,"RankTotal":1446,"ScoreTotal":86182,"ID":848958111,"Name":"WannaBeLoved","NumVillages":0,"Points":0,"Rank":3028,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848958111","BestRank":3028,"BestRankAt":"2023-02-15T06:22:53.556884Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556885Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556885Z","LastActivityAt":"2023-02-15T06:22:53.556885Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1634,"ScoreAtt":970,"RankDef":788,"ScoreDef":219395,"RankSup":1032,"ScoreSup":3568,"RankTotal":1103,"ScoreTotal":223933,"ID":848958556,"Name":"Bill40","NumVillages":5,"Points":16067,"Rank":981,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848958556","BestRank":981,"BestRankAt":"2023-02-15T06:22:53.556885Z","MostPoints":16067,"MostPointsAt":"2023-02-15T06:22:53.556885Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.556885Z","LastActivityAt":"2023-02-15T06:22:53.556885Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1947,"ScoreAtt":22,"RankDef":1878,"ScoreDef":8897,"RankSup":0,"ScoreSup":0,"RankTotal":2023,"ScoreTotal":8919,"ID":848959231,"Name":"swistolek","NumVillages":0,"Points":0,"Rank":3029,"TribeID":12,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848959231","BestRank":3029,"BestRankAt":"2023-02-15T06:22:53.556886Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556887Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556886Z","LastActivityAt":"2023-02-15T06:22:53.556887Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848959422,"Name":"Bozydar666","NumVillages":1,"Points":217,"Rank":2276,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848959422","BestRank":2276,"BestRankAt":"2023-02-15T06:22:53.556887Z","MostPoints":217,"MostPointsAt":"2023-02-15T06:22:53.556887Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556887Z","LastActivityAt":"2023-02-15T06:22:53.556887Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557289Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1523,"ScoreAtt":2144,"RankDef":1259,"ScoreDef":61849,"RankSup":1092,"ScoreSup":2103,"RankTotal":1521,"ScoreTotal":66096,"ID":848960061,"Name":"Karolo1","NumVillages":1,"Points":388,"Rank":2096,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848960061","BestRank":2096,"BestRankAt":"2023-02-15T06:22:53.556887Z","MostPoints":388,"MostPointsAt":"2023-02-15T06:22:53.556888Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556888Z","LastActivityAt":"2023-02-15T06:22:53.556888Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557289Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":502,"ScoreDef":515345,"RankSup":0,"ScoreSup":0,"RankTotal":830,"ScoreTotal":515345,"ID":848963236,"Name":"Mararte","NumVillages":1,"Points":3421,"Rank":1480,"TribeID":92,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963236","BestRank":1480,"BestRankAt":"2023-02-15T06:22:53.556888Z","MostPoints":3421,"MostPointsAt":"2023-02-15T06:22:53.556888Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556888Z","LastActivityAt":"2023-02-15T06:22:53.556888Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557289Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1850,"ScoreAtt":130,"RankDef":2294,"ScoreDef":328,"RankSup":0,"ScoreSup":0,"RankTotal":2360,"ScoreTotal":458,"ID":848963521,"Name":"Adrian8808","NumVillages":1,"Points":1633,"Rank":1725,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963521","BestRank":1725,"BestRankAt":"2023-02-15T06:22:53.556889Z","MostPoints":1633,"MostPointsAt":"2023-02-15T06:22:53.556889Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556889Z","LastActivityAt":"2023-02-15T06:22:53.556889Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557289Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848963634,"Name":"etrusk","NumVillages":1,"Points":26,"Rank":2769,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963634","BestRank":2769,"BestRankAt":"2023-02-15T06:22:53.556889Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556889Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556889Z","LastActivityAt":"2023-02-15T06:22:53.556889Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557289Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848963694,"Name":"Limited23","NumVillages":1,"Points":241,"Rank":2233,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963694","BestRank":2233,"BestRankAt":"2023-02-15T06:22:53.55689Z","MostPoints":241,"MostPointsAt":"2023-02-15T06:22:53.55689Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55689Z","LastActivityAt":"2023-02-15T06:22:53.55689Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848963696,"Name":"Soro","NumVillages":1,"Points":26,"Rank":2770,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963696","BestRank":2770,"BestRankAt":"2023-02-15T06:22:53.55689Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.55689Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55689Z","LastActivityAt":"2023-02-15T06:22:53.55689Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848964085,"Name":"Huayna Capac","NumVillages":1,"Points":26,"Rank":2771,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848964085","BestRank":2771,"BestRankAt":"2023-02-15T06:22:53.556891Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556891Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556891Z","LastActivityAt":"2023-02-15T06:22:53.556891Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1830,"ScoreAtt":149,"RankDef":1382,"ScoreDef":47157,"RankSup":0,"ScoreSup":0,"RankTotal":1635,"ScoreTotal":47306,"ID":848964811,"Name":"Sir zombi","NumVillages":1,"Points":792,"Rank":1922,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848964811","BestRank":1922,"BestRankAt":"2023-02-15T06:22:53.556891Z","MostPoints":792,"MostPointsAt":"2023-02-15T06:22:53.556891Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556891Z","LastActivityAt":"2023-02-15T06:22:53.556892Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848965205,"Name":"QdamianQ","NumVillages":1,"Points":93,"Rank":2502,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848965205","BestRank":2502,"BestRankAt":"2023-02-15T06:22:53.556892Z","MostPoints":93,"MostPointsAt":"2023-02-15T06:22:53.556892Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556892Z","LastActivityAt":"2023-02-15T06:22:53.556892Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2357,"ScoreDef":65,"RankSup":0,"ScoreSup":0,"RankTotal":2453,"ScoreTotal":65,"ID":848965531,"Name":"utache","NumVillages":1,"Points":209,"Rank":2287,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848965531","BestRank":2287,"BestRankAt":"2023-02-15T06:22:53.556892Z","MostPoints":209,"MostPointsAt":"2023-02-15T06:22:53.556893Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556892Z","LastActivityAt":"2023-02-15T06:22:53.556893Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848966404,"Name":"*Kaziu*","NumVillages":1,"Points":47,"Rank":2592,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848966404","BestRank":2592,"BestRankAt":"2023-02-15T06:22:53.556893Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.556893Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556893Z","LastActivityAt":"2023-02-15T06:22:53.556893Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1125,"ScoreAtt":16270,"RankDef":491,"ScoreDef":534827,"RankSup":0,"ScoreSup":0,"RankTotal":803,"ScoreTotal":551097,"ID":848966521,"Name":"Luƛka1206","NumVillages":3,"Points":12372,"Rank":1038,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848966521","BestRank":1038,"BestRankAt":"2023-02-15T06:22:53.556893Z","MostPoints":12372,"MostPointsAt":"2023-02-15T06:22:53.556894Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.556894Z","LastActivityAt":"2023-02-15T06:22:53.556894Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":251,"ScoreAtt":1103638,"RankDef":246,"ScoreDef":1532391,"RankSup":385,"ScoreSup":337911,"RankTotal":292,"ScoreTotal":2973940,"ID":848967422,"Name":"Frenchi","NumVillages":1,"Points":10611,"Rank":1069,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848967422","BestRank":1069,"BestRankAt":"2023-02-15T06:22:53.556894Z","MostPoints":10611,"MostPointsAt":"2023-02-15T06:22:53.556894Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556894Z","LastActivityAt":"2023-02-15T06:22:53.556894Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":30,"ScoreAtt":6828027,"RankDef":65,"ScoreDef":5311671,"RankSup":189,"ScoreSup":1016126,"RankTotal":59,"ScoreTotal":13155824,"ID":848967710,"Name":"Exano","NumVillages":258,"Points":2513210,"Rank":24,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848967710","BestRank":24,"BestRankAt":"2023-02-15T06:22:53.556895Z","MostPoints":2513210,"MostPointsAt":"2023-02-15T06:22:53.556895Z","MostVillages":258,"MostVillagesAt":"2023-02-15T06:22:53.556895Z","LastActivityAt":"2023-02-15T06:22:53.556895Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557292Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1824,"ScoreDef":11094,"RankSup":0,"ScoreSup":0,"RankTotal":1986,"ScoreTotal":11094,"ID":848968427,"Name":"misiek210","NumVillages":0,"Points":0,"Rank":3030,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848968427","BestRank":3030,"BestRankAt":"2023-02-15T06:22:53.556895Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556895Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556895Z","LastActivityAt":"2023-02-15T06:22:53.556895Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557292Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2410,"ScoreDef":18,"RankSup":0,"ScoreSup":0,"RankTotal":2504,"ScoreTotal":18,"ID":848969160,"Name":"acer123","NumVillages":1,"Points":1243,"Rank":1801,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848969160","BestRank":1801,"BestRankAt":"2023-02-15T06:22:53.556896Z","MostPoints":1243,"MostPointsAt":"2023-02-15T06:22:53.556896Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556896Z","LastActivityAt":"2023-02-15T06:22:53.556896Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557292Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1888,"ScoreAtt":63,"RankDef":2433,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2448,"ScoreTotal":73,"ID":848969313,"Name":"Vebo","NumVillages":1,"Points":4427,"Rank":1379,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848969313","BestRank":1379,"BestRankAt":"2023-02-15T06:22:53.556896Z","MostPoints":4427,"MostPointsAt":"2023-02-15T06:22:53.556896Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556896Z","LastActivityAt":"2023-02-15T06:22:53.556896Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557292Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2071,"ScoreDef":3414,"RankSup":0,"ScoreSup":0,"RankTotal":2196,"ScoreTotal":3414,"ID":848970357,"Name":"KrwawyBaronW3","NumVillages":2,"Points":5453,"Rank":1304,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848970357","BestRank":1304,"BestRankAt":"2023-02-15T06:22:53.556897Z","MostPoints":5453,"MostPointsAt":"2023-02-15T06:22:53.556897Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556897Z","LastActivityAt":"2023-02-15T06:22:53.556897Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557293Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":445,"ScoreAtt":458929,"RankDef":2011,"ScoreDef":4609,"RankSup":201,"ScoreSup":931088,"RankTotal":519,"ScoreTotal":1394626,"ID":848971079,"Name":"mocek12345","NumVillages":126,"Points":1113746,"Rank":122,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848971079","BestRank":122,"BestRankAt":"2023-02-15T06:22:53.556898Z","MostPoints":1113746,"MostPointsAt":"2023-02-15T06:22:53.556898Z","MostVillages":126,"MostVillagesAt":"2023-02-15T06:22:53.556898Z","LastActivityAt":"2023-02-15T06:22:53.556899Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557293Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1615,"ScoreAtt":1172,"RankDef":1517,"ScoreDef":32305,"RankSup":1052,"ScoreSup":2874,"RankTotal":1718,"ScoreTotal":36351,"ID":848973715,"Name":"Pawlo101","NumVillages":3,"Points":10731,"Rank":1063,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848973715","BestRank":1063,"BestRankAt":"2023-02-15T06:22:53.556899Z","MostPoints":10731,"MostPointsAt":"2023-02-15T06:22:53.556899Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.556899Z","LastActivityAt":"2023-02-15T06:22:53.556899Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557293Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1870,"ScoreAtt":94,"RankDef":2148,"ScoreDef":1969,"RankSup":0,"ScoreSup":0,"RankTotal":2243,"ScoreTotal":2063,"ID":848973968,"Name":"AP1997","NumVillages":1,"Points":249,"Rank":2225,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848973968","BestRank":2225,"BestRankAt":"2023-02-15T06:22:53.556899Z","MostPoints":249,"MostPointsAt":"2023-02-15T06:22:53.5569Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556899Z","LastActivityAt":"2023-02-15T06:22:53.5569Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557293Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1645,"ScoreDef":22665,"RankSup":0,"ScoreSup":0,"RankTotal":1843,"ScoreTotal":22665,"ID":848974611,"Name":"dawid20211","NumVillages":1,"Points":5543,"Rank":1300,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848974611","BestRank":1300,"BestRankAt":"2023-02-15T06:22:53.5569Z","MostPoints":5543,"MostPointsAt":"2023-02-15T06:22:53.5569Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.5569Z","LastActivityAt":"2023-02-15T06:22:53.5569Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557293Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1453,"ScoreAtt":3145,"RankDef":1431,"ScoreDef":39543,"RankSup":1099,"ScoreSup":1934,"RankTotal":1647,"ScoreTotal":44622,"ID":848974774,"Name":"Arco87","NumVillages":1,"Points":249,"Rank":2226,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848974774","BestRank":2226,"BestRankAt":"2023-02-15T06:22:53.5569Z","MostPoints":249,"MostPointsAt":"2023-02-15T06:22:53.556901Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556901Z","LastActivityAt":"2023-02-15T06:22:53.556901Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557294Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1436,"ScoreAtt":3409,"RankDef":704,"ScoreDef":268270,"RankSup":1054,"ScoreSup":2842,"RankTotal":1028,"ScoreTotal":274521,"ID":848975192,"Name":"Chmielu0927","NumVillages":1,"Points":2354,"Rank":1604,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848975192","BestRank":1604,"BestRankAt":"2023-02-15T06:22:53.556901Z","MostPoints":2354,"MostPointsAt":"2023-02-15T06:22:53.556901Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556901Z","LastActivityAt":"2023-02-15T06:22:53.556901Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557294Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":733,"ScoreAtt":110525,"RankDef":473,"ScoreDef":562758,"RankSup":0,"ScoreSup":0,"RankTotal":742,"ScoreTotal":673283,"ID":848976034,"Name":"kiljanos","NumVillages":9,"Points":47766,"Rank":703,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848976034","BestRank":703,"BestRankAt":"2023-02-15T06:22:53.556902Z","MostPoints":47766,"MostPointsAt":"2023-02-15T06:22:53.556902Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.556902Z","LastActivityAt":"2023-02-15T06:22:53.556902Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557294Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1946,"ScoreAtt":23,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2492,"ScoreTotal":23,"ID":848976720,"Name":"Lord Patka999","NumVillages":1,"Points":412,"Rank":2081,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848976720","BestRank":2081,"BestRankAt":"2023-02-15T06:22:53.556902Z","MostPoints":412,"MostPointsAt":"2023-02-15T06:22:53.556902Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556902Z","LastActivityAt":"2023-02-15T06:22:53.556902Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557294Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848977118,"Name":"sucha woda","NumVillages":1,"Points":388,"Rank":2097,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977118","BestRank":2097,"BestRankAt":"2023-02-15T06:22:53.556903Z","MostPoints":388,"MostPointsAt":"2023-02-15T06:22:53.556903Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556903Z","LastActivityAt":"2023-02-15T06:22:53.556903Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557295Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1656,"ScoreAtt":800,"RankDef":2017,"ScoreDef":4530,"RankSup":0,"ScoreSup":0,"RankTotal":2120,"ScoreTotal":5330,"ID":848977203,"Name":"mateusz15963","NumVillages":1,"Points":6632,"Rank":1234,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977203","BestRank":1234,"BestRankAt":"2023-02-15T06:22:53.556903Z","MostPoints":6632,"MostPointsAt":"2023-02-15T06:22:53.556903Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556903Z","LastActivityAt":"2023-02-15T06:22:53.556903Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557295Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":977,"ScoreDef":131203,"RankSup":1280,"ScoreSup":53,"RankTotal":1292,"ScoreTotal":131256,"ID":848977412,"Name":"goska111","NumVillages":1,"Points":3405,"Rank":1484,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977412","BestRank":1484,"BestRankAt":"2023-02-15T06:22:53.556904Z","MostPoints":3405,"MostPointsAt":"2023-02-15T06:22:53.556904Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556904Z","LastActivityAt":"2023-02-15T06:22:53.556904Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557295Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1105,"ScoreAtt":17681,"RankDef":1117,"ScoreDef":91397,"RankSup":827,"ScoreSup":20095,"RankTotal":1300,"ScoreTotal":129173,"ID":848977600,"Name":"piwkoo","NumVillages":15,"Points":76997,"Rank":593,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977600","BestRank":593,"BestRankAt":"2023-02-15T06:22:53.556904Z","MostPoints":76997,"MostPointsAt":"2023-02-15T06:22:53.556904Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.556904Z","LastActivityAt":"2023-02-15T06:22:53.556905Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557295Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":759,"ScoreAtt":96990,"RankDef":877,"ScoreDef":175400,"RankSup":679,"ScoreSup":57783,"RankTotal":977,"ScoreTotal":330173,"ID":848977649,"Name":"Maszlug","NumVillages":24,"Points":161402,"Rank":448,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977649","BestRank":448,"BestRankAt":"2023-02-15T06:22:53.556905Z","MostPoints":161402,"MostPointsAt":"2023-02-15T06:22:53.556905Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.556905Z","LastActivityAt":"2023-02-15T06:22:53.556905Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557295Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":296,"ScoreAtt":922329,"RankDef":1496,"ScoreDef":34469,"RankSup":312,"ScoreSup":492996,"RankTotal":503,"ScoreTotal":1449794,"ID":848977748,"Name":"Varendial x Visyq","NumVillages":1,"Points":26,"Rank":2772,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977748","BestRank":2772,"BestRankAt":"2023-02-15T06:22:53.556905Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556906Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556906Z","LastActivityAt":"2023-02-15T06:22:53.556906Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1596,"ScoreDef":25668,"RankSup":1071,"ScoreSup":2533,"RankTotal":1787,"ScoreTotal":28201,"ID":848978052,"Name":"Biegacz1","NumVillages":1,"Points":171,"Rank":2351,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978052","BestRank":2351,"BestRankAt":"2023-02-15T06:22:53.556906Z","MostPoints":171,"MostPointsAt":"2023-02-15T06:22:53.556906Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556906Z","LastActivityAt":"2023-02-15T06:22:53.556906Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848978169,"Name":"zielonyjohn","NumVillages":1,"Points":26,"Rank":2773,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978169","BestRank":2773,"BestRankAt":"2023-02-15T06:22:53.556907Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556907Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556907Z","LastActivityAt":"2023-02-15T06:22:53.556907Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1174,"ScoreAtt":12182,"RankDef":2312,"ScoreDef":231,"RankSup":0,"ScoreSup":0,"RankTotal":1960,"ScoreTotal":12413,"ID":848978284,"Name":"olos","NumVillages":0,"Points":0,"Rank":3031,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978284","BestRank":3031,"BestRankAt":"2023-02-15T06:22:53.556907Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556907Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556907Z","LastActivityAt":"2023-02-15T06:22:53.556907Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":555,"ScoreAtt":272949,"RankDef":45,"ScoreDef":6928339,"RankSup":440,"ScoreSup":243378,"RankTotal":112,"ScoreTotal":7444666,"ID":848978297,"Name":"Marcinmesi","NumVillages":7,"Points":39265,"Rank":746,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978297","BestRank":746,"BestRankAt":"2023-02-15T06:22:53.556908Z","MostPoints":39265,"MostPointsAt":"2023-02-15T06:22:53.556908Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.556908Z","LastActivityAt":"2023-02-15T06:22:53.556908Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2086,"ScoreDef":3024,"RankSup":0,"ScoreSup":0,"RankTotal":2205,"ScoreTotal":3024,"ID":848978534,"Name":"JUlkA07","NumVillages":0,"Points":0,"Rank":3032,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978534","BestRank":3032,"BestRankAt":"2023-02-15T06:22:53.556908Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556908Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556908Z","LastActivityAt":"2023-02-15T06:22:53.556908Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1683,"ScoreAtt":678,"RankDef":186,"ScoreDef":2004353,"RankSup":1211,"ScoreSup":330,"RankTotal":407,"ScoreTotal":2005361,"ID":848978903,"Name":"RIPNAMAJKU","NumVillages":5,"Points":37327,"Rank":757,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978903","BestRank":757,"BestRankAt":"2023-02-15T06:22:53.556909Z","MostPoints":37327,"MostPointsAt":"2023-02-15T06:22:53.556909Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.556909Z","LastActivityAt":"2023-02-15T06:22:53.556909Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980119,"Name":"ndse","NumVillages":1,"Points":26,"Rank":2774,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980119","BestRank":2774,"BestRankAt":"2023-02-15T06:22:53.556909Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556909Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556909Z","LastActivityAt":"2023-02-15T06:22:53.55691Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980120,"Name":"bsju","NumVillages":1,"Points":26,"Rank":2775,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980120","BestRank":2775,"BestRankAt":"2023-02-15T06:22:53.55691Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.55691Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55691Z","LastActivityAt":"2023-02-15T06:22:53.55691Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":814,"ScoreAtt":75561,"RankDef":269,"ScoreDef":1380554,"RankSup":926,"ScoreSup":9740,"RankTotal":499,"ScoreTotal":1465855,"ID":848980237,"Name":"yonek111","NumVillages":1,"Points":8776,"Rank":1126,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980237","BestRank":1126,"BestRankAt":"2023-02-15T06:22:53.55691Z","MostPoints":8776,"MostPointsAt":"2023-02-15T06:22:53.556911Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55691Z","LastActivityAt":"2023-02-15T06:22:53.556911Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980456,"Name":"gsno","NumVillages":1,"Points":26,"Rank":2776,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980456","BestRank":2776,"BestRankAt":"2023-02-15T06:22:53.556911Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556911Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556911Z","LastActivityAt":"2023-02-15T06:22:53.556911Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980458,"Name":"khiu","NumVillages":1,"Points":26,"Rank":2777,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980458","BestRank":2777,"BestRankAt":"2023-02-15T06:22:53.556911Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556912Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556912Z","LastActivityAt":"2023-02-15T06:22:53.556912Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980459,"Name":"cvde","NumVillages":1,"Points":26,"Rank":2778,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980459","BestRank":2778,"BestRankAt":"2023-02-15T06:22:53.556912Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556912Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556912Z","LastActivityAt":"2023-02-15T06:22:53.556912Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980460,"Name":"fswq","NumVillages":1,"Points":26,"Rank":2779,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980460","BestRank":2779,"BestRankAt":"2023-02-15T06:22:53.556913Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556913Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556913Z","LastActivityAt":"2023-02-15T06:22:53.556913Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980461,"Name":"nipki","NumVillages":1,"Points":26,"Rank":2780,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980461","BestRank":2780,"BestRankAt":"2023-02-15T06:22:53.556913Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556913Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556913Z","LastActivityAt":"2023-02-15T06:22:53.556913Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980492,"Name":"veru","NumVillages":1,"Points":26,"Rank":2781,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980492","BestRank":2781,"BestRankAt":"2023-02-15T06:22:53.556914Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556914Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556914Z","LastActivityAt":"2023-02-15T06:22:53.556914Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980493,"Name":"tews","NumVillages":1,"Points":26,"Rank":2782,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980493","BestRank":2782,"BestRankAt":"2023-02-15T06:22:53.556914Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556914Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556914Z","LastActivityAt":"2023-02-15T06:22:53.556914Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980494,"Name":"laszc","NumVillages":1,"Points":26,"Rank":2783,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980494","BestRank":2783,"BestRankAt":"2023-02-15T06:22:53.556915Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556915Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556915Z","LastActivityAt":"2023-02-15T06:22:53.556915Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980495,"Name":"nmih","NumVillages":1,"Points":26,"Rank":2784,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980495","BestRank":2784,"BestRankAt":"2023-02-15T06:22:53.556915Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556915Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556915Z","LastActivityAt":"2023-02-15T06:22:53.556916Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980496,"Name":"afad","NumVillages":1,"Points":26,"Rank":2785,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980496","BestRank":2785,"BestRankAt":"2023-02-15T06:22:53.556916Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556916Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556916Z","LastActivityAt":"2023-02-15T06:22:53.556916Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980497,"Name":"vosd","NumVillages":1,"Points":26,"Rank":2786,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980497","BestRank":2786,"BestRankAt":"2023-02-15T06:22:53.556916Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556917Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556916Z","LastActivityAt":"2023-02-15T06:22:53.556917Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980498,"Name":"amlk","NumVillages":1,"Points":26,"Rank":2787,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980498","BestRank":2787,"BestRankAt":"2023-02-15T06:22:53.556917Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556917Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556917Z","LastActivityAt":"2023-02-15T06:22:53.556917Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1983,"ScoreAtt":4,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2560,"ScoreTotal":4,"ID":848980727,"Name":"vasper123","NumVillages":1,"Points":671,"Rank":1962,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980727","BestRank":1962,"BestRankAt":"2023-02-15T06:22:53.556917Z","MostPoints":671,"MostPointsAt":"2023-02-15T06:22:53.556918Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556918Z","LastActivityAt":"2023-02-15T06:22:53.556918Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":871,"ScoreDef":178864,"RankSup":0,"ScoreSup":0,"RankTotal":1193,"ScoreTotal":178864,"ID":848981244,"Name":"Kaktus49","NumVillages":1,"Points":4147,"Rank":1398,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848981244","BestRank":1398,"BestRankAt":"2023-02-15T06:22:53.556918Z","MostPoints":4147,"MostPointsAt":"2023-02-15T06:22:53.556918Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556918Z","LastActivityAt":"2023-02-15T06:22:53.556918Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2169,"ScoreDef":1714,"RankSup":0,"ScoreSup":0,"RankTotal":2267,"ScoreTotal":1714,"ID":848981523,"Name":"wozny1020","NumVillages":1,"Points":250,"Rank":2222,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848981523","BestRank":2222,"BestRankAt":"2023-02-15T06:22:53.556919Z","MostPoints":250,"MostPointsAt":"2023-02-15T06:22:53.556919Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556919Z","LastActivityAt":"2023-02-15T06:22:53.556919Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1591,"ScoreAtt":1373,"RankDef":1137,"ScoreDef":86508,"RankSup":1073,"ScoreSup":2509,"RankTotal":1435,"ScoreTotal":90390,"ID":848981726,"Name":"Rudzia06","NumVillages":12,"Points":57732,"Rank":664,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848981726","BestRank":664,"BestRankAt":"2023-02-15T06:22:53.55692Z","MostPoints":57732,"MostPointsAt":"2023-02-15T06:22:53.55692Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.55692Z","LastActivityAt":"2023-02-15T06:22:53.55692Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1594,"ScoreAtt":1329,"RankDef":1924,"ScoreDef":7174,"RankSup":0,"ScoreSup":0,"RankTotal":2032,"ScoreTotal":8503,"ID":848982634,"Name":"anda22","NumVillages":8,"Points":17594,"Rank":960,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848982634","BestRank":960,"BestRankAt":"2023-02-15T06:22:53.556921Z","MostPoints":17594,"MostPointsAt":"2023-02-15T06:22:53.556921Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.556921Z","LastActivityAt":"2023-02-15T06:22:53.556921Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557302Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2340,"ScoreDef":124,"RankSup":0,"ScoreSup":0,"RankTotal":2430,"ScoreTotal":124,"ID":848982635,"Name":"piter787878","NumVillages":1,"Points":153,"Rank":2373,"TribeID":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848982635","BestRank":2373,"BestRankAt":"2023-02-15T06:22:53.556921Z","MostPoints":153,"MostPointsAt":"2023-02-15T06:22:53.556921Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556921Z","LastActivityAt":"2023-02-15T06:22:53.556921Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557302Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848983660,"Name":"Janusz9704","NumVillages":1,"Points":7062,"Rank":1214,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848983660","BestRank":1214,"BestRankAt":"2023-02-15T06:22:53.556922Z","MostPoints":7062,"MostPointsAt":"2023-02-15T06:22:53.556922Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556922Z","LastActivityAt":"2023-02-15T06:22:53.556922Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557302Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1296,"ScoreAtt":6617,"RankDef":1084,"ScoreDef":98155,"RankSup":0,"ScoreSup":0,"RankTotal":1377,"ScoreTotal":104772,"ID":848984022,"Name":"dafffciu","NumVillages":1,"Points":9391,"Rank":1110,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848984022","BestRank":1110,"BestRankAt":"2023-02-15T06:22:53.556922Z","MostPoints":9391,"MostPointsAt":"2023-02-15T06:22:53.556922Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556922Z","LastActivityAt":"2023-02-15T06:22:53.556923Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557302Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":2,"ScoreAtt":19935406,"RankDef":165,"ScoreDef":2277963,"RankSup":375,"ScoreSup":358068,"RankTotal":23,"ScoreTotal":22571437,"ID":848985692,"Name":"Lord Axen","NumVillages":347,"Points":3322858,"Rank":13,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848985692","BestRank":13,"BestRankAt":"2023-02-15T06:22:53.556923Z","MostPoints":3322858,"MostPointsAt":"2023-02-15T06:22:53.556923Z","MostVillages":347,"MostVillagesAt":"2023-02-15T06:22:53.556923Z","LastActivityAt":"2023-02-15T06:22:53.556923Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":336,"ScoreAtt":773480,"RankDef":624,"ScoreDef":351190,"RankSup":496,"ScoreSup":175209,"RankTotal":538,"ScoreTotal":1299879,"ID":848986287,"Name":"Klemens Zdobywca 69","NumVillages":16,"Points":153182,"Rank":460,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848986287","BestRank":460,"BestRankAt":"2023-02-15T06:22:53.556923Z","MostPoints":153182,"MostPointsAt":"2023-02-15T06:22:53.556924Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.556923Z","LastActivityAt":"2023-02-15T06:22:53.556924Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1488,"ScoreAtt":2500,"RankDef":807,"ScoreDef":205635,"RankSup":739,"ScoreSup":37862,"RankTotal":1059,"ScoreTotal":245997,"ID":848986638,"Name":"Gwen1","NumVillages":8,"Points":7400,"Rank":1194,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848986638","BestRank":1194,"BestRankAt":"2023-02-15T06:22:53.556924Z","MostPoints":7400,"MostPointsAt":"2023-02-15T06:22:53.556924Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.556924Z","LastActivityAt":"2023-02-15T06:22:53.556924Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":554,"ScoreAtt":272952,"RankDef":884,"ScoreDef":170400,"RankSup":252,"ScoreSup":687812,"RankTotal":586,"ScoreTotal":1131164,"ID":848987051,"Name":"Lord Pumbarak","NumVillages":133,"Points":1088678,"Rank":128,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848987051","BestRank":128,"BestRankAt":"2023-02-15T06:22:53.556925Z","MostPoints":1088678,"MostPointsAt":"2023-02-15T06:22:53.556925Z","MostVillages":133,"MostVillagesAt":"2023-02-15T06:22:53.556925Z","LastActivityAt":"2023-02-15T06:22:53.556925Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1712,"ScoreDef":17735,"RankSup":0,"ScoreSup":0,"RankTotal":1893,"ScoreTotal":17735,"ID":848987695,"Name":"goldman","NumVillages":1,"Points":3321,"Rank":1491,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848987695","BestRank":1491,"BestRankAt":"2023-02-15T06:22:53.556925Z","MostPoints":3321,"MostPointsAt":"2023-02-15T06:22:53.556925Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556925Z","LastActivityAt":"2023-02-15T06:22:53.556925Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557304Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":712,"ScoreAtt":122247,"RankDef":887,"ScoreDef":169682,"RankSup":1157,"ScoreSup":913,"RankTotal":1010,"ScoreTotal":292842,"ID":848988401,"Name":"niko30","NumVillages":3,"Points":13624,"Rank":1015,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848988401","BestRank":1015,"BestRankAt":"2023-02-15T06:22:53.556926Z","MostPoints":13624,"MostPointsAt":"2023-02-15T06:22:53.556926Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.556926Z","LastActivityAt":"2023-02-15T06:22:53.556926Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557304Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1713,"ScoreAtt":505,"RankDef":963,"ScoreDef":138535,"RankSup":1078,"ScoreSup":2382,"RankTotal":1266,"ScoreTotal":141422,"ID":848988744,"Name":"euro97","NumVillages":7,"Points":46020,"Rank":709,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848988744","BestRank":709,"BestRankAt":"2023-02-15T06:22:53.556926Z","MostPoints":46020,"MostPointsAt":"2023-02-15T06:22:53.556926Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.556926Z","LastActivityAt":"2023-02-15T06:22:53.556926Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557304Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1249,"ScoreAtt":8316,"RankDef":1601,"ScoreDef":25496,"RankSup":0,"ScoreSup":0,"RankTotal":1737,"ScoreTotal":33812,"ID":848989855,"Name":"Zard","NumVillages":3,"Points":23269,"Rank":879,"TribeID":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848989855","BestRank":879,"BestRankAt":"2023-02-15T06:22:53.556927Z","MostPoints":23269,"MostPointsAt":"2023-02-15T06:22:53.556927Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.556927Z","LastActivityAt":"2023-02-15T06:22:53.556927Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557304Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1821,"ScoreAtt":161,"RankDef":527,"ScoreDef":485136,"RankSup":1153,"ScoreSup":935,"RankTotal":850,"ScoreTotal":486232,"ID":848993505,"Name":"Mallutka33","NumVillages":2,"Points":10648,"Rank":1067,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848993505","BestRank":1067,"BestRankAt":"2023-02-15T06:22:53.556927Z","MostPoints":10648,"MostPointsAt":"2023-02-15T06:22:53.556927Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556927Z","LastActivityAt":"2023-02-15T06:22:53.556928Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557304Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2201,"ScoreDef":1169,"RankSup":0,"ScoreSup":0,"RankTotal":2303,"ScoreTotal":1169,"ID":848993769,"Name":"Lord Rycerz96","NumVillages":2,"Points":3429,"Rank":1478,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848993769","BestRank":1478,"BestRankAt":"2023-02-15T06:22:53.556928Z","MostPoints":3429,"MostPointsAt":"2023-02-15T06:22:53.556928Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556928Z","LastActivityAt":"2023-02-15T06:22:53.556928Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557305Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848993903,"Name":"ekopark","NumVillages":1,"Points":52,"Rank":2574,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848993903","BestRank":2574,"BestRankAt":"2023-02-15T06:22:53.556928Z","MostPoints":52,"MostPointsAt":"2023-02-15T06:22:53.556929Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556928Z","LastActivityAt":"2023-02-15T06:22:53.556929Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557305Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":255,"ScoreAtt":1094052,"RankDef":1769,"ScoreDef":14270,"RankSup":110,"ScoreSup":2008040,"RankTotal":279,"ScoreTotal":3116362,"ID":848995242,"Name":"Szpingischan","NumVillages":97,"Points":939330,"Rank":156,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995242","BestRank":156,"BestRankAt":"2023-02-15T06:22:53.556929Z","MostPoints":939330,"MostPointsAt":"2023-02-15T06:22:53.556929Z","MostVillages":97,"MostVillagesAt":"2023-02-15T06:22:53.556929Z","LastActivityAt":"2023-02-15T06:22:53.556929Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557305Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848995262,"Name":"Dj-saken","NumVillages":1,"Points":429,"Rank":2072,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995262","BestRank":2072,"BestRankAt":"2023-02-15T06:22:53.556929Z","MostPoints":429,"MostPointsAt":"2023-02-15T06:22:53.55693Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55693Z","LastActivityAt":"2023-02-15T06:22:53.55693Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557305Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1111,"ScoreDef":92382,"RankSup":0,"ScoreSup":0,"RankTotal":1421,"ScoreTotal":92382,"ID":848995291,"Name":"SirArthureek","NumVillages":1,"Points":5028,"Rank":1323,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995291","BestRank":1323,"BestRankAt":"2023-02-15T06:22:53.55693Z","MostPoints":5028,"MostPointsAt":"2023-02-15T06:22:53.55693Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55693Z","LastActivityAt":"2023-02-15T06:22:53.55693Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2033,"ScoreDef":4104,"RankSup":0,"ScoreSup":0,"RankTotal":2165,"ScoreTotal":4104,"ID":848995446,"Name":"AndrzejJ96","NumVillages":1,"Points":269,"Rank":2206,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995446","BestRank":2206,"BestRankAt":"2023-02-15T06:22:53.556931Z","MostPoints":269,"MostPointsAt":"2023-02-15T06:22:53.556931Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556931Z","LastActivityAt":"2023-02-15T06:22:53.556931Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":405,"ScoreAtt":575180,"RankDef":1304,"ScoreDef":57312,"RankSup":442,"ScoreSup":242363,"RankTotal":665,"ScoreTotal":874855,"ID":848995478,"Name":"Delongii","NumVillages":77,"Points":538352,"Rank":254,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995478","BestRank":254,"BestRankAt":"2023-02-15T06:22:53.556931Z","MostPoints":538352,"MostPointsAt":"2023-02-15T06:22:53.556931Z","MostVillages":77,"MostVillagesAt":"2023-02-15T06:22:53.556931Z","LastActivityAt":"2023-02-15T06:22:53.556931Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848997058,"Name":"jaktoon","NumVillages":1,"Points":78,"Rank":2518,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848997058","BestRank":2518,"BestRankAt":"2023-02-15T06:22:53.556932Z","MostPoints":78,"MostPointsAt":"2023-02-15T06:22:53.556932Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556932Z","LastActivityAt":"2023-02-15T06:22:53.556932Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2224,"ScoreDef":847,"RankSup":0,"ScoreSup":0,"RankTotal":2314,"ScoreTotal":847,"ID":848998530,"Name":"Orgetoryks","NumVillages":5,"Points":21131,"Rank":901,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848998530","BestRank":901,"BestRankAt":"2023-02-15T06:22:53.556932Z","MostPoints":21131,"MostPointsAt":"2023-02-15T06:22:53.556932Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.556932Z","LastActivityAt":"2023-02-15T06:22:53.556932Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1001,"ScoreAtt":30393,"RankDef":1256,"ScoreDef":62439,"RankSup":0,"ScoreSup":0,"RankTotal":1420,"ScoreTotal":92832,"ID":848999448,"Name":"Etitek","NumVillages":4,"Points":7467,"Rank":1187,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848999448","BestRank":1187,"BestRankAt":"2023-02-15T06:22:53.556933Z","MostPoints":7467,"MostPointsAt":"2023-02-15T06:22:53.556933Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.556933Z","LastActivityAt":"2023-02-15T06:22:53.556933Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1659,"ScoreDef":21637,"RankSup":0,"ScoreSup":0,"RankTotal":1851,"ScoreTotal":21637,"ID":848999518,"Name":"CccC2","NumVillages":1,"Points":140,"Rank":2392,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848999518","BestRank":2392,"BestRankAt":"2023-02-15T06:22:53.556933Z","MostPoints":140,"MostPointsAt":"2023-02-15T06:22:53.556933Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556933Z","LastActivityAt":"2023-02-15T06:22:53.556934Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":491,"ScoreAtt":371185,"RankDef":1516,"ScoreDef":32400,"RankSup":555,"ScoreSup":128823,"RankTotal":820,"ScoreTotal":532408,"ID":848999671,"Name":"TakaTo","NumVillages":42,"Points":241453,"Rank":385,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848999671","BestRank":385,"BestRankAt":"2023-02-15T06:22:53.556934Z","MostPoints":241453,"MostPointsAt":"2023-02-15T06:22:53.556934Z","MostVillages":42,"MostVillagesAt":"2023-02-15T06:22:53.556934Z","LastActivityAt":"2023-02-15T06:22:53.556934Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1253,"ScoreAtt":8063,"RankDef":1353,"ScoreDef":50510,"RankSup":1419,"ScoreSup":1,"RankTotal":1564,"ScoreTotal":58574,"ID":849000135,"Name":"NoeyPl","NumVillages":5,"Points":25709,"Rank":853,"TribeID":1758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849000135","BestRank":853,"BestRankAt":"2023-02-15T06:22:53.556934Z","MostPoints":25709,"MostPointsAt":"2023-02-15T06:22:53.556935Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.556934Z","LastActivityAt":"2023-02-15T06:22:53.556935Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1267,"ScoreAtt":7495,"RankDef":2078,"ScoreDef":3276,"RankSup":676,"ScoreSup":59373,"RankTotal":1505,"ScoreTotal":70144,"ID":849001277,"Name":"CiÄ™ĆŒki Kawalerzysta","NumVillages":3,"Points":14048,"Rank":1012,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001277","BestRank":1012,"BestRankAt":"2023-02-15T06:22:53.556935Z","MostPoints":14048,"MostPointsAt":"2023-02-15T06:22:53.556935Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.556935Z","LastActivityAt":"2023-02-15T06:22:53.556935Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557308Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849001388,"Name":"Mizerkaa","NumVillages":1,"Points":26,"Rank":2788,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001388","BestRank":2788,"BestRankAt":"2023-02-15T06:22:53.556935Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556936Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556936Z","LastActivityAt":"2023-02-15T06:22:53.556936Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557308Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":267,"ScoreAtt":1061216,"RankDef":1635,"ScoreDef":23319,"RankSup":94,"ScoreSup":2270897,"RankTotal":261,"ScoreTotal":3355432,"ID":849001572,"Name":"Daremny","NumVillages":64,"Points":598925,"Rank":240,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001572","BestRank":240,"BestRankAt":"2023-02-15T06:22:53.556936Z","MostPoints":598925,"MostPointsAt":"2023-02-15T06:22:53.556936Z","MostVillages":64,"MostVillagesAt":"2023-02-15T06:22:53.556936Z","LastActivityAt":"2023-02-15T06:22:53.556936Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557308Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":256,"ScoreAtt":1092271,"RankDef":159,"ScoreDef":2376918,"RankSup":152,"ScoreSup":1481187,"RankTotal":188,"ScoreTotal":4950376,"ID":849001724,"Name":"Tloluvin","NumVillages":4,"Points":40212,"Rank":740,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001724","BestRank":740,"BestRankAt":"2023-02-15T06:22:53.556937Z","MostPoints":40212,"MostPointsAt":"2023-02-15T06:22:53.556937Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.556937Z","LastActivityAt":"2023-02-15T06:22:53.556937Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557308Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849001762,"Name":"J3bacTo","NumVillages":1,"Points":225,"Rank":2262,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001762","BestRank":2262,"BestRankAt":"2023-02-15T06:22:53.556937Z","MostPoints":225,"MostPointsAt":"2023-02-15T06:22:53.556937Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556937Z","LastActivityAt":"2023-02-15T06:22:53.556937Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557308Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":511,"ScoreAtt":334481,"RankDef":735,"ScoreDef":251646,"RankSup":696,"ScoreSup":51293,"RankTotal":761,"ScoreTotal":637420,"ID":849002091,"Name":"klima69","NumVillages":18,"Points":147148,"Rank":469,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849002091","BestRank":469,"BestRankAt":"2023-02-15T06:22:53.556938Z","MostPoints":147148,"MostPointsAt":"2023-02-15T06:22:53.556938Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.556938Z","LastActivityAt":"2023-02-15T06:22:53.556938Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849002486,"Name":"ManchesterKing","NumVillages":1,"Points":79,"Rank":2517,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849002486","BestRank":2517,"BestRankAt":"2023-02-15T06:22:53.556938Z","MostPoints":79,"MostPointsAt":"2023-02-15T06:22:53.556938Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556938Z","LastActivityAt":"2023-02-15T06:22:53.556938Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1044,"ScoreAtt":24518,"RankDef":568,"ScoreDef":408463,"RankSup":568,"ScoreSup":118378,"RankTotal":801,"ScoreTotal":551359,"ID":849002796,"Name":"Hamar","NumVillages":15,"Points":80950,"Rank":581,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849002796","BestRank":581,"BestRankAt":"2023-02-15T06:22:53.556939Z","MostPoints":80950,"MostPointsAt":"2023-02-15T06:22:53.556939Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.556939Z","LastActivityAt":"2023-02-15T06:22:53.556939Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849003332,"Name":"Co biedaa","NumVillages":1,"Points":26,"Rank":2789,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849003332","BestRank":2789,"BestRankAt":"2023-02-15T06:22:53.556939Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556939Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556939Z","LastActivityAt":"2023-02-15T06:22:53.55694Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":361,"ScoreAtt":661093,"RankDef":1068,"ScoreDef":102788,"RankSup":529,"ScoreSup":144666,"RankTotal":651,"ScoreTotal":908547,"ID":849004274,"Name":"guex","NumVillages":27,"Points":263243,"Rank":372,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004274","BestRank":372,"BestRankAt":"2023-02-15T06:22:53.55694Z","MostPoints":263243,"MostPointsAt":"2023-02-15T06:22:53.55694Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.55694Z","LastActivityAt":"2023-02-15T06:22:53.55694Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849004338,"Name":"Hwastu","NumVillages":1,"Points":26,"Rank":2790,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004338","BestRank":2790,"BestRankAt":"2023-02-15T06:22:53.55694Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556941Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55694Z","LastActivityAt":"2023-02-15T06:22:53.556941Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1887,"ScoreAtt":67,"RankDef":2171,"ScoreDef":1688,"RankSup":0,"ScoreSup":0,"RankTotal":2264,"ScoreTotal":1755,"ID":849004461,"Name":"LOƁKICK","NumVillages":1,"Points":1879,"Rank":1688,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004461","BestRank":1688,"BestRankAt":"2023-02-15T06:22:53.556941Z","MostPoints":1879,"MostPointsAt":"2023-02-15T06:22:53.556941Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556941Z","LastActivityAt":"2023-02-15T06:22:53.556941Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":264,"ScoreAtt":1073197,"RankDef":712,"ScoreDef":264518,"RankSup":527,"ScoreSup":145861,"RankTotal":497,"ScoreTotal":1483576,"ID":849004759,"Name":"..Tomek..","NumVillages":1,"Points":2214,"Rank":1627,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004759","BestRank":1627,"BestRankAt":"2023-02-15T06:22:53.556942Z","MostPoints":2214,"MostPointsAt":"2023-02-15T06:22:53.556942Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556942Z","LastActivityAt":"2023-02-15T06:22:53.556942Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1206,"ScoreAtt":10370,"RankDef":1833,"ScoreDef":10790,"RankSup":0,"ScoreSup":0,"RankTotal":1854,"ScoreTotal":21160,"ID":849005658,"Name":"Skols998","NumVillages":1,"Points":2720,"Rank":1564,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849005658","BestRank":1564,"BestRankAt":"2023-02-15T06:22:53.556942Z","MostPoints":2720,"MostPointsAt":"2023-02-15T06:22:53.556942Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556942Z","LastActivityAt":"2023-02-15T06:22:53.556942Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1363,"ScoreAtt":4941,"RankDef":1512,"ScoreDef":32587,"RankSup":0,"ScoreSup":0,"RankTotal":1705,"ScoreTotal":37528,"ID":849005829,"Name":"themonk","NumVillages":4,"Points":13300,"Rank":1023,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849005829","BestRank":1023,"BestRankAt":"2023-02-15T06:22:53.556943Z","MostPoints":13300,"MostPointsAt":"2023-02-15T06:22:53.556943Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.556943Z","LastActivityAt":"2023-02-15T06:22:53.556943Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557311Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1331,"ScoreAtt":5690,"RankDef":958,"ScoreDef":140708,"RankSup":716,"ScoreSup":43207,"RankTotal":1162,"ScoreTotal":189605,"ID":849006011,"Name":"faraon1981","NumVillages":1,"Points":437,"Rank":2066,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006011","BestRank":2066,"BestRankAt":"2023-02-15T06:22:53.556943Z","MostPoints":437,"MostPointsAt":"2023-02-15T06:22:53.556943Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556943Z","LastActivityAt":"2023-02-15T06:22:53.556943Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557311Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":342,"ScoreAtt":721626,"RankDef":157,"ScoreDef":2408894,"RankSup":564,"ScoreSup":122180,"RankTotal":270,"ScoreTotal":3252700,"ID":849006145,"Name":"pledos","NumVillages":12,"Points":103815,"Rank":531,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006145","BestRank":531,"BestRankAt":"2023-02-15T06:22:53.556944Z","MostPoints":103815,"MostPointsAt":"2023-02-15T06:22:53.556944Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.556944Z","LastActivityAt":"2023-02-15T06:22:53.556944Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557311Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1923,"ScoreAtt":36,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2479,"ScoreTotal":36,"ID":849006194,"Name":"KAUN","NumVillages":1,"Points":180,"Rank":2336,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006194","BestRank":2336,"BestRankAt":"2023-02-15T06:22:53.556944Z","MostPoints":180,"MostPointsAt":"2023-02-15T06:22:53.556944Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556944Z","LastActivityAt":"2023-02-15T06:22:53.556945Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557311Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1245,"ScoreAtt":8446,"RankDef":345,"ScoreDef":898707,"RankSup":0,"ScoreSup":0,"RankTotal":653,"ScoreTotal":907153,"ID":849006385,"Name":"Lord MARCEL12345","NumVillages":13,"Points":51591,"Rank":680,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006385","BestRank":680,"BestRankAt":"2023-02-15T06:22:53.556945Z","MostPoints":51591,"MostPointsAt":"2023-02-15T06:22:53.556945Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.556945Z","LastActivityAt":"2023-02-15T06:22:53.556945Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":551,"ScoreAtt":275412,"RankDef":1380,"ScoreDef":47532,"RankSup":523,"ScoreSup":148650,"RankTotal":861,"ScoreTotal":471594,"ID":849006412,"Name":"Madarra","NumVillages":37,"Points":333533,"Rank":338,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006412","BestRank":338,"BestRankAt":"2023-02-15T06:22:53.556945Z","MostPoints":333533,"MostPointsAt":"2023-02-15T06:22:53.556946Z","MostVillages":37,"MostVillagesAt":"2023-02-15T06:22:53.556945Z","LastActivityAt":"2023-02-15T06:22:53.556946Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1937,"ScoreAtt":27,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2488,"ScoreTotal":27,"ID":849008396,"Name":"szymoniasty2740","NumVillages":1,"Points":352,"Rank":2123,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849008396","BestRank":2123,"BestRankAt":"2023-02-15T06:22:53.556946Z","MostPoints":352,"MostPointsAt":"2023-02-15T06:22:53.556946Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556946Z","LastActivityAt":"2023-02-15T06:22:53.556946Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849009059,"Name":"Krasnoludek.Mędrek","NumVillages":1,"Points":26,"Rank":2791,"TribeID":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849009059","BestRank":2791,"BestRankAt":"2023-02-15T06:22:53.556946Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556947Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556947Z","LastActivityAt":"2023-02-15T06:22:53.556947Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1234,"ScoreAtt":8931,"RankDef":1995,"ScoreDef":5287,"RankSup":888,"ScoreSup":13527,"RankTotal":1791,"ScoreTotal":27745,"ID":849009623,"Name":"Sir zamelus365","NumVillages":7,"Points":38263,"Rank":751,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849009623","BestRank":751,"BestRankAt":"2023-02-15T06:22:53.556947Z","MostPoints":38263,"MostPointsAt":"2023-02-15T06:22:53.556947Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.556947Z","LastActivityAt":"2023-02-15T06:22:53.556947Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":142,"ScoreAtt":2170020,"RankDef":174,"ScoreDef":2131721,"RankSup":321,"ScoreSup":459024,"RankTotal":198,"ScoreTotal":4760765,"ID":849009945,"Name":"TheZeNiT","NumVillages":1,"Points":26,"Rank":2792,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849009945","BestRank":2792,"BestRankAt":"2023-02-15T06:22:53.556948Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556948Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556948Z","LastActivityAt":"2023-02-15T06:22:53.556948Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557313Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":211,"ScoreAtt":1481594,"RankDef":212,"ScoreDef":1791108,"RankSup":270,"ScoreSup":614278,"RankTotal":240,"ScoreTotal":3886980,"ID":849010255,"Name":"rutecky","NumVillages":69,"Points":515714,"Rank":263,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010255","BestRank":263,"BestRankAt":"2023-02-15T06:22:53.556948Z","MostPoints":515714,"MostPointsAt":"2023-02-15T06:22:53.556948Z","MostVillages":69,"MostVillagesAt":"2023-02-15T06:22:53.556948Z","LastActivityAt":"2023-02-15T06:22:53.556948Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557313Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":765,"ScoreAtt":95065,"RankDef":494,"ScoreDef":527682,"RankSup":0,"ScoreSup":0,"RankTotal":771,"ScoreTotal":622747,"ID":849010386,"Name":"Pomidorop","NumVillages":3,"Points":3253,"Rank":1499,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010386","BestRank":1499,"BestRankAt":"2023-02-15T06:22:53.556949Z","MostPoints":3253,"MostPointsAt":"2023-02-15T06:22:53.556949Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.556949Z","LastActivityAt":"2023-02-15T06:22:53.556949Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557313Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1698,"ScoreAtt":585,"RankDef":2233,"ScoreDef":780,"RankSup":0,"ScoreSup":0,"RankTotal":2288,"ScoreTotal":1365,"ID":849010865,"Name":"matesa2","NumVillages":1,"Points":2376,"Rank":1600,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010865","BestRank":1600,"BestRankAt":"2023-02-15T06:22:53.556949Z","MostPoints":2376,"MostPointsAt":"2023-02-15T06:22:53.556949Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556949Z","LastActivityAt":"2023-02-15T06:22:53.556949Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557313Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849010955,"Name":"stefek alibaba","NumVillages":1,"Points":101,"Rank":2482,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010955","BestRank":2482,"BestRankAt":"2023-02-15T06:22:53.55695Z","MostPoints":101,"MostPointsAt":"2023-02-15T06:22:53.55695Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55695Z","LastActivityAt":"2023-02-15T06:22:53.55695Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557314Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849012219,"Name":"HotChrum","NumVillages":1,"Points":219,"Rank":2274,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012219","BestRank":2274,"BestRankAt":"2023-02-15T06:22:53.55695Z","MostPoints":219,"MostPointsAt":"2023-02-15T06:22:53.55695Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55695Z","LastActivityAt":"2023-02-15T06:22:53.556951Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557314Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":94,"ScoreAtt":3442043,"RankDef":197,"ScoreDef":1913407,"RankSup":118,"ScoreSup":1885370,"RankTotal":117,"ScoreTotal":7240820,"ID":849012521,"Name":"Born2befree x Hitman007","NumVillages":123,"Points":1038355,"Rank":139,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012521","BestRank":139,"BestRankAt":"2023-02-15T06:22:53.556951Z","MostPoints":1038355,"MostPointsAt":"2023-02-15T06:22:53.556951Z","MostVillages":123,"MostVillagesAt":"2023-02-15T06:22:53.556951Z","LastActivityAt":"2023-02-15T06:22:53.556951Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557314Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":923,"ScoreAtt":45557,"RankDef":1529,"ScoreDef":31209,"RankSup":511,"ScoreSup":164814,"RankTotal":1067,"ScoreTotal":241580,"ID":849012843,"Name":"Darktix87","NumVillages":36,"Points":180893,"Rank":432,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012843","BestRank":432,"BestRankAt":"2023-02-15T06:22:53.556953Z","MostPoints":180893,"MostPointsAt":"2023-02-15T06:22:53.556954Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.556953Z","LastActivityAt":"2023-02-15T06:22:53.556954Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557314Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":693,"ScoreAtt":134973,"RankDef":313,"ScoreDef":1080956,"RankSup":481,"ScoreSup":189408,"RankTotal":516,"ScoreTotal":1405337,"ID":849012985,"Name":"killeer","NumVillages":0,"Points":0,"Rank":3033,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012985","BestRank":3033,"BestRankAt":"2023-02-15T06:22:53.556954Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556954Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556954Z","LastActivityAt":"2023-02-15T06:22:53.556954Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":716,"ScoreAtt":118360,"RankDef":1841,"ScoreDef":10328,"RankSup":0,"ScoreSup":0,"RankTotal":1301,"ScoreTotal":128688,"ID":849013126,"Name":"Baala","NumVillages":16,"Points":114189,"Rank":513,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849013126","BestRank":513,"BestRankAt":"2023-02-15T06:22:53.556955Z","MostPoints":114189,"MostPointsAt":"2023-02-15T06:22:53.556955Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.556955Z","LastActivityAt":"2023-02-15T06:22:53.556955Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":612,"ScoreAtt":200368,"RankDef":321,"ScoreDef":1053105,"RankSup":530,"ScoreSup":143209,"RankTotal":517,"ScoreTotal":1396682,"ID":849014147,"Name":"piotrekbmm","NumVillages":18,"Points":108724,"Rank":523,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849014147","BestRank":523,"BestRankAt":"2023-02-15T06:22:53.556955Z","MostPoints":108724,"MostPointsAt":"2023-02-15T06:22:53.556955Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.556955Z","LastActivityAt":"2023-02-15T06:22:53.556955Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":357,"ScoreAtt":677150,"RankDef":1435,"ScoreDef":39362,"RankSup":396,"ScoreSup":318040,"RankTotal":608,"ScoreTotal":1034552,"ID":849014413,"Name":"sygut","NumVillages":17,"Points":172773,"Rank":440,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849014413","BestRank":440,"BestRankAt":"2023-02-15T06:22:53.556956Z","MostPoints":172773,"MostPointsAt":"2023-02-15T06:22:53.556956Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.556956Z","LastActivityAt":"2023-02-15T06:22:53.556956Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":292,"ScoreAtt":955019,"RankDef":15,"ScoreDef":18389178,"RankSup":242,"ScoreSup":734363,"RankTotal":28,"ScoreTotal":20078560,"ID":849014922,"Name":"Tomasz Ɓomot","NumVillages":122,"Points":333889,"Rank":337,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849014922","BestRank":337,"BestRankAt":"2023-02-15T06:22:53.556956Z","MostPoints":333889,"MostPointsAt":"2023-02-15T06:22:53.556956Z","MostVillages":122,"MostVillagesAt":"2023-02-15T06:22:53.556956Z","LastActivityAt":"2023-02-15T06:22:53.556956Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1402,"ScoreDef":43717,"RankSup":0,"ScoreSup":0,"RankTotal":1656,"ScoreTotal":43717,"ID":849015875,"Name":"DrJointtt","NumVillages":0,"Points":0,"Rank":3034,"TribeID":1750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849015875","BestRank":3034,"BestRankAt":"2023-02-15T06:22:53.556957Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556957Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556957Z","LastActivityAt":"2023-02-15T06:22:53.556957Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849016425,"Name":"Bombelnik","NumVillages":1,"Points":134,"Rank":2408,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849016425","BestRank":2408,"BestRankAt":"2023-02-15T06:22:53.556957Z","MostPoints":134,"MostPointsAt":"2023-02-15T06:22:53.556957Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556957Z","LastActivityAt":"2023-02-15T06:22:53.556958Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849016844,"Name":"bartki37","NumVillages":1,"Points":102,"Rank":2476,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849016844","BestRank":2476,"BestRankAt":"2023-02-15T06:22:53.556958Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.556958Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556958Z","LastActivityAt":"2023-02-15T06:22:53.556958Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":611,"ScoreAtt":202782,"RankDef":1618,"ScoreDef":24499,"RankSup":0,"ScoreSup":0,"RankTotal":1093,"ScoreTotal":227281,"ID":849017820,"Name":"Silent17","NumVillages":25,"Points":148168,"Rank":467,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849017820","BestRank":467,"BestRankAt":"2023-02-15T06:22:53.556958Z","MostPoints":148168,"MostPointsAt":"2023-02-15T06:22:53.556959Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.556958Z","LastActivityAt":"2023-02-15T06:22:53.556959Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1622,"ScoreDef":24404,"RankSup":1272,"ScoreSup":67,"RankTotal":1824,"ScoreTotal":24471,"ID":849017894,"Name":"trail","NumVillages":1,"Points":3794,"Rank":1430,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849017894","BestRank":1430,"BestRankAt":"2023-02-15T06:22:53.556959Z","MostPoints":3794,"MostPointsAt":"2023-02-15T06:22:53.556959Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556959Z","LastActivityAt":"2023-02-15T06:22:53.556959Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557317Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":26,"ScoreAtt":7152796,"RankDef":1047,"ScoreDef":109087,"RankSup":5,"ScoreSup":10991321,"RankTotal":34,"ScoreTotal":18253204,"ID":849018239,"Name":"-P3K-","NumVillages":338,"Points":3131326,"Rank":17,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018239","BestRank":17,"BestRankAt":"2023-02-15T06:22:53.556959Z","MostPoints":3131326,"MostPointsAt":"2023-02-15T06:22:53.55696Z","MostVillages":338,"MostVillagesAt":"2023-02-15T06:22:53.55696Z","LastActivityAt":"2023-02-15T06:22:53.55696Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557317Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":646,"ScoreAtt":163886,"RankDef":1687,"ScoreDef":19642,"RankSup":988,"ScoreSup":5848,"RankTotal":1164,"ScoreTotal":189376,"ID":849018442,"Name":"goƛć018443","NumVillages":65,"Points":350098,"Rank":326,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018442","BestRank":326,"BestRankAt":"2023-02-15T06:22:53.55696Z","MostPoints":350098,"MostPointsAt":"2023-02-15T06:22:53.55696Z","MostVillages":65,"MostVillagesAt":"2023-02-15T06:22:53.55696Z","LastActivityAt":"2023-02-15T06:22:53.55696Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557317Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1358,"ScoreAtt":5148,"RankDef":1158,"ScoreDef":81816,"RankSup":0,"ScoreSup":0,"RankTotal":1444,"ScoreTotal":86964,"ID":849018778,"Name":"Lord Pynio","NumVillages":1,"Points":6964,"Rank":1218,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018778","BestRank":1218,"BestRankAt":"2023-02-15T06:22:53.556961Z","MostPoints":6964,"MostPointsAt":"2023-02-15T06:22:53.556961Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556961Z","LastActivityAt":"2023-02-15T06:22:53.556961Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557317Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1953,"ScoreAtt":18,"RankDef":2126,"ScoreDef":2269,"RankSup":1368,"ScoreSup":4,"RankTotal":2230,"ScoreTotal":2291,"ID":849018780,"Name":"Lak1","NumVillages":1,"Points":1211,"Rank":1806,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018780","BestRank":1806,"BestRankAt":"2023-02-15T06:22:53.556961Z","MostPoints":1211,"MostPointsAt":"2023-02-15T06:22:53.556961Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556961Z","LastActivityAt":"2023-02-15T06:22:53.556961Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557317Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1329,"ScoreAtt":5724,"RankDef":1831,"ScoreDef":10884,"RankSup":0,"ScoreSup":0,"RankTotal":1914,"ScoreTotal":16608,"ID":849019785,"Name":"peres5130","NumVillages":1,"Points":761,"Rank":1935,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849019785","BestRank":1935,"BestRankAt":"2023-02-15T06:22:53.556962Z","MostPoints":761,"MostPointsAt":"2023-02-15T06:22:53.556962Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556962Z","LastActivityAt":"2023-02-15T06:22:53.556962Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":919,"ScoreAtt":47102,"RankDef":1569,"ScoreDef":28376,"RankSup":729,"ScoreSup":40986,"RankTotal":1338,"ScoreTotal":116464,"ID":849020094,"Name":"Bartonzkl","NumVillages":13,"Points":66340,"Rank":627,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849020094","BestRank":627,"BestRankAt":"2023-02-15T06:22:53.556962Z","MostPoints":66340,"MostPointsAt":"2023-02-15T06:22:53.556962Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.556962Z","LastActivityAt":"2023-02-15T06:22:53.556962Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1340,"ScoreAtt":5394,"RankDef":2139,"ScoreDef":2109,"RankSup":1404,"ScoreSup":1,"RankTotal":2058,"ScoreTotal":7504,"ID":849020212,"Name":"InnosensQ","NumVillages":1,"Points":26,"Rank":2793,"TribeID":733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849020212","BestRank":2793,"BestRankAt":"2023-02-15T06:22:53.556963Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556963Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556963Z","LastActivityAt":"2023-02-15T06:22:53.556963Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1071,"ScoreDef":101537,"RankSup":1407,"ScoreSup":1,"RankTotal":1387,"ScoreTotal":101538,"ID":849020667,"Name":"Szrek5","NumVillages":1,"Points":3784,"Rank":1433,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849020667","BestRank":1433,"BestRankAt":"2023-02-15T06:22:53.556963Z","MostPoints":3784,"MostPointsAt":"2023-02-15T06:22:53.556963Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556963Z","LastActivityAt":"2023-02-15T06:22:53.556964Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":936,"ScoreAtt":43051,"RankDef":1354,"ScoreDef":50075,"RankSup":1063,"ScoreSup":2696,"RankTotal":1405,"ScoreTotal":95822,"ID":849021566,"Name":"raskip","NumVillages":2,"Points":12589,"Rank":1035,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849021566","BestRank":1035,"BestRankAt":"2023-02-15T06:22:53.556964Z","MostPoints":12589,"MostPointsAt":"2023-02-15T06:22:53.556964Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556964Z","LastActivityAt":"2023-02-15T06:22:53.556964Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557319Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1280,"ScoreDef":59734,"RankSup":0,"ScoreSup":0,"RankTotal":1558,"ScoreTotal":59734,"ID":849022063,"Name":"misiek650","NumVillages":1,"Points":189,"Rank":2323,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849022063","BestRank":2323,"BestRankAt":"2023-02-15T06:22:53.556964Z","MostPoints":189,"MostPointsAt":"2023-02-15T06:22:53.556965Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556965Z","LastActivityAt":"2023-02-15T06:22:53.556965Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557319Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2273,"ScoreDef":463,"RankSup":0,"ScoreSup":0,"RankTotal":2359,"ScoreTotal":463,"ID":849022649,"Name":"mikiwnyk","NumVillages":1,"Points":2927,"Rank":1539,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849022649","BestRank":1539,"BestRankAt":"2023-02-15T06:22:53.556965Z","MostPoints":2927,"MostPointsAt":"2023-02-15T06:22:53.556965Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556965Z","LastActivityAt":"2023-02-15T06:22:53.556965Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557319Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849022907,"Name":"KeymilLoveOrHate","NumVillages":1,"Points":26,"Rank":2794,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849022907","BestRank":2794,"BestRankAt":"2023-02-15T06:22:53.556966Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556966Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556966Z","LastActivityAt":"2023-02-15T06:22:53.556966Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557319Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":706,"ScoreAtt":125772,"RankDef":1143,"ScoreDef":86048,"RankSup":194,"ScoreSup":987333,"RankTotal":559,"ScoreTotal":1199153,"ID":849023078,"Name":"pingwin112","NumVillages":0,"Points":0,"Rank":3035,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023078","BestRank":3035,"BestRankAt":"2023-02-15T06:22:53.556966Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556966Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556966Z","LastActivityAt":"2023-02-15T06:22:53.556966Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557319Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1198,"ScoreDef":73446,"RankSup":1197,"ScoreSup":428,"RankTotal":1482,"ScoreTotal":73874,"ID":849023212,"Name":"Aleksander1973","NumVillages":1,"Points":7790,"Rank":1169,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023212","BestRank":1169,"BestRankAt":"2023-02-15T06:22:53.556967Z","MostPoints":7790,"MostPointsAt":"2023-02-15T06:22:53.556967Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556967Z","LastActivityAt":"2023-02-15T06:22:53.556967Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849023337,"Name":"Ƃysy97","NumVillages":1,"Points":26,"Rank":2795,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023337","BestRank":2795,"BestRankAt":"2023-02-15T06:22:53.556967Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556967Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556967Z","LastActivityAt":"2023-02-15T06:22:53.556967Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":718,"ScoreAtt":117897,"RankDef":192,"ScoreDef":1963959,"RankSup":561,"ScoreSup":126081,"RankTotal":381,"ScoreTotal":2207937,"ID":849023540,"Name":"Ed3kMonster","NumVillages":1,"Points":226,"Rank":2259,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023540","BestRank":2259,"BestRankAt":"2023-02-15T06:22:53.556968Z","MostPoints":226,"MostPointsAt":"2023-02-15T06:22:53.556968Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556968Z","LastActivityAt":"2023-02-15T06:22:53.556968Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1584,"ScoreAtt":1462,"RankDef":2062,"ScoreDef":3604,"RankSup":0,"ScoreSup":0,"RankTotal":2130,"ScoreTotal":5066,"ID":849024152,"Name":"polska1234","NumVillages":1,"Points":1121,"Rank":1829,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849024152","BestRank":1829,"BestRankAt":"2023-02-15T06:22:53.556968Z","MostPoints":1121,"MostPointsAt":"2023-02-15T06:22:53.556968Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556968Z","LastActivityAt":"2023-02-15T06:22:53.556969Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1767,"ScoreAtt":287,"RankDef":1518,"ScoreDef":32280,"RankSup":0,"ScoreSup":0,"RankTotal":1750,"ScoreTotal":32567,"ID":849024208,"Name":"Rychu0890","NumVillages":1,"Points":441,"Rank":2063,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849024208","BestRank":2063,"BestRankAt":"2023-02-15T06:22:53.556969Z","MostPoints":441,"MostPointsAt":"2023-02-15T06:22:53.556969Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556969Z","LastActivityAt":"2023-02-15T06:22:53.556969Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1743,"ScoreAtt":353,"RankDef":2093,"ScoreDef":2874,"RankSup":0,"ScoreSup":0,"RankTotal":2198,"ScoreTotal":3227,"ID":849024333,"Name":"skwarol888","NumVillages":0,"Points":0,"Rank":3036,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849024333","BestRank":3036,"BestRankAt":"2023-02-15T06:22:53.556969Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.55697Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556969Z","LastActivityAt":"2023-02-15T06:22:53.55697Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1954,"ScoreAtt":18,"RankDef":1271,"ScoreDef":60347,"RankSup":0,"ScoreSup":0,"RankTotal":1555,"ScoreTotal":60365,"ID":849025083,"Name":"martwy dzik","NumVillages":0,"Points":0,"Rank":3037,"TribeID":766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849025083","BestRank":3037,"BestRankAt":"2023-02-15T06:22:53.55697Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.55697Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.55697Z","LastActivityAt":"2023-02-15T06:22:53.55697Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1672,"ScoreDef":20237,"RankSup":0,"ScoreSup":0,"RankTotal":1871,"ScoreTotal":20237,"ID":849025558,"Name":"Szezeger","NumVillages":1,"Points":2762,"Rank":1556,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849025558","BestRank":1556,"BestRankAt":"2023-02-15T06:22:53.55697Z","MostPoints":2762,"MostPointsAt":"2023-02-15T06:22:53.556971Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556971Z","LastActivityAt":"2023-02-15T06:22:53.556971Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849025839,"Name":"adhd","NumVillages":1,"Points":68,"Rank":2540,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849025839","BestRank":2540,"BestRankAt":"2023-02-15T06:22:53.556971Z","MostPoints":68,"MostPointsAt":"2023-02-15T06:22:53.556971Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556971Z","LastActivityAt":"2023-02-15T06:22:53.556971Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":531,"ScoreAtt":310303,"RankDef":66,"ScoreDef":5091924,"RankSup":213,"ScoreSup":863552,"RankTotal":142,"ScoreTotal":6265779,"ID":849026145,"Name":"Writter.89","NumVillages":27,"Points":119073,"Rank":507,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849026145","BestRank":507,"BestRankAt":"2023-02-15T06:22:53.556972Z","MostPoints":119073,"MostPointsAt":"2023-02-15T06:22:53.556972Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.556972Z","LastActivityAt":"2023-02-15T06:22:53.556972Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557322Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":91,"ScoreAtt":3543267,"RankDef":524,"ScoreDef":488758,"RankSup":283,"ScoreSup":573923,"RankTotal":206,"ScoreTotal":4605948,"ID":849027025,"Name":"SoƂtys caƂej wsi","NumVillages":146,"Points":1162012,"Rank":117,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849027025","BestRank":117,"BestRankAt":"2023-02-15T06:22:53.556972Z","MostPoints":1162012,"MostPointsAt":"2023-02-15T06:22:53.556972Z","MostVillages":146,"MostVillagesAt":"2023-02-15T06:22:53.556972Z","LastActivityAt":"2023-02-15T06:22:53.556972Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557322Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":644,"ScoreAtt":164707,"RankDef":952,"ScoreDef":142923,"RankSup":470,"ScoreSup":196303,"RankTotal":840,"ScoreTotal":503933,"ID":849027653,"Name":"BIG PAPA.","NumVillages":9,"Points":91645,"Rank":555,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849027653","BestRank":555,"BestRankAt":"2023-02-15T06:22:53.556973Z","MostPoints":91645,"MostPointsAt":"2023-02-15T06:22:53.556973Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.556973Z","LastActivityAt":"2023-02-15T06:22:53.556973Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557322Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1782,"ScoreAtt":260,"RankDef":600,"ScoreDef":380521,"RankSup":594,"ScoreSup":102406,"RankTotal":852,"ScoreTotal":483187,"ID":849027712,"Name":"tomalascala","NumVillages":1,"Points":6370,"Rank":1251,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849027712","BestRank":1251,"BestRankAt":"2023-02-15T06:22:53.556973Z","MostPoints":6370,"MostPointsAt":"2023-02-15T06:22:53.556973Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556973Z","LastActivityAt":"2023-02-15T06:22:53.556973Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557322Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849028040,"Name":"Abazur","NumVillages":1,"Points":80,"Rank":2513,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849028040","BestRank":2513,"BestRankAt":"2023-02-15T06:22:53.556974Z","MostPoints":80,"MostPointsAt":"2023-02-15T06:22:53.556974Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556974Z","LastActivityAt":"2023-02-15T06:22:53.556974Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557323Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1689,"ScoreAtt":668,"RankDef":849,"ScoreDef":185468,"RankSup":0,"ScoreSup":0,"RankTotal":1175,"ScoreTotal":186136,"ID":849028071,"Name":"Dom Kichot","NumVillages":1,"Points":26,"Rank":2796,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849028071","BestRank":2796,"BestRankAt":"2023-02-15T06:22:53.556974Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556974Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556974Z","LastActivityAt":"2023-02-15T06:22:53.556975Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557323Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":341,"ScoreAtt":747828,"RankDef":327,"ScoreDef":1002140,"RankSup":190,"ScoreSup":1016019,"RankTotal":310,"ScoreTotal":2765987,"ID":849028088,"Name":"Bexaaa","NumVillages":37,"Points":353950,"Rank":323,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849028088","BestRank":323,"BestRankAt":"2023-02-15T06:22:53.556975Z","MostPoints":353950,"MostPointsAt":"2023-02-15T06:22:53.556975Z","MostVillages":37,"MostVillagesAt":"2023-02-15T06:22:53.556975Z","LastActivityAt":"2023-02-15T06:22:53.556975Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557323Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849029077,"Name":"Kluha Jo","NumVillages":1,"Points":141,"Rank":2388,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849029077","BestRank":2388,"BestRankAt":"2023-02-15T06:22:53.556975Z","MostPoints":141,"MostPointsAt":"2023-02-15T06:22:53.556976Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556975Z","LastActivityAt":"2023-02-15T06:22:53.556976Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557323Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849029559,"Name":"BOMBA NA BANIIE","NumVillages":1,"Points":26,"Rank":2797,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849029559","BestRank":2797,"BestRankAt":"2023-02-15T06:22:53.556976Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556976Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556976Z","LastActivityAt":"2023-02-15T06:22:53.556976Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2451,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2537,"ScoreTotal":10,"ID":849030062,"Name":"Domino00155","NumVillages":1,"Points":704,"Rank":1950,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030062","BestRank":1950,"BestRankAt":"2023-02-15T06:22:53.556976Z","MostPoints":704,"MostPointsAt":"2023-02-15T06:22:53.556977Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556977Z","LastActivityAt":"2023-02-15T06:22:53.556977Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":942,"ScoreAtt":41802,"RankDef":1869,"ScoreDef":9312,"RankSup":0,"ScoreSup":0,"RankTotal":1606,"ScoreTotal":51114,"ID":849030086,"Name":"Arehukas","NumVillages":15,"Points":77658,"Rank":590,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030086","BestRank":590,"BestRankAt":"2023-02-15T06:22:53.556977Z","MostPoints":77658,"MostPointsAt":"2023-02-15T06:22:53.556977Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.556977Z","LastActivityAt":"2023-02-15T06:22:53.556977Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":93,"ScoreAtt":3462101,"RankDef":1072,"ScoreDef":101007,"RankSup":19,"ScoreSup":5503338,"RankTotal":81,"ScoreTotal":9066446,"ID":849030226,"Name":"poolie96","NumVillages":108,"Points":1096481,"Rank":126,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030226","BestRank":126,"BestRankAt":"2023-02-15T06:22:53.556978Z","MostPoints":1096481,"MostPointsAt":"2023-02-15T06:22:53.556978Z","MostVillages":108,"MostVillagesAt":"2023-02-15T06:22:53.556978Z","LastActivityAt":"2023-02-15T06:22:53.556978Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849030481,"Name":"hubal3","NumVillages":1,"Points":45,"Rank":2599,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030481","BestRank":2599,"BestRankAt":"2023-02-15T06:22:53.556978Z","MostPoints":45,"MostPointsAt":"2023-02-15T06:22:53.556978Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556978Z","LastActivityAt":"2023-02-15T06:22:53.556978Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1010,"ScoreAtt":28664,"RankDef":314,"ScoreDef":1077371,"RankSup":758,"ScoreSup":33664,"RankTotal":582,"ScoreTotal":1139699,"ID":849030643,"Name":"rosiu56","NumVillages":0,"Points":0,"Rank":3038,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030643","BestRank":3038,"BestRankAt":"2023-02-15T06:22:53.556979Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556979Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556979Z","LastActivityAt":"2023-02-15T06:22:53.556979Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557325Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849031197,"Name":"miodek1143143","NumVillages":1,"Points":26,"Rank":2798,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031197","BestRank":2798,"BestRankAt":"2023-02-15T06:22:53.556979Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556979Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556979Z","LastActivityAt":"2023-02-15T06:22:53.556979Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557325Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849031759,"Name":"ponger19955","NumVillages":1,"Points":489,"Rank":2036,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031759","BestRank":2036,"BestRankAt":"2023-02-15T06:22:53.55698Z","MostPoints":489,"MostPointsAt":"2023-02-15T06:22:53.55698Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55698Z","LastActivityAt":"2023-02-15T06:22:53.55698Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557325Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849031779,"Name":"jekord","NumVillages":1,"Points":26,"Rank":2799,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031779","BestRank":2799,"BestRankAt":"2023-02-15T06:22:53.55698Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556981Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55698Z","LastActivityAt":"2023-02-15T06:22:53.556981Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557325Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":289,"ScoreAtt":961472,"RankDef":642,"ScoreDef":331975,"RankSup":515,"ScoreSup":158211,"RankTotal":501,"ScoreTotal":1451658,"ID":849031818,"Name":"Kinglevy","NumVillages":29,"Points":222587,"Rank":398,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031818","BestRank":398,"BestRankAt":"2023-02-15T06:22:53.556981Z","MostPoints":222587,"MostPointsAt":"2023-02-15T06:22:53.556981Z","MostVillages":29,"MostVillagesAt":"2023-02-15T06:22:53.556981Z","LastActivityAt":"2023-02-15T06:22:53.556981Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":614,"ScoreAtt":194604,"RankDef":209,"ScoreDef":1807307,"RankSup":718,"ScoreSup":42897,"RankTotal":398,"ScoreTotal":2044808,"ID":849031846,"Name":"Lolek3333","NumVillages":1,"Points":4235,"Rank":1391,"TribeID":1780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031846","BestRank":1391,"BestRankAt":"2023-02-15T06:22:53.556981Z","MostPoints":4235,"MostPointsAt":"2023-02-15T06:22:53.556982Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556982Z","LastActivityAt":"2023-02-15T06:22:53.556982Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2173,"ScoreDef":1670,"RankSup":0,"ScoreSup":0,"RankTotal":2269,"ScoreTotal":1670,"ID":849032027,"Name":"Sir dziadekk19","NumVillages":1,"Points":761,"Rank":1936,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032027","BestRank":1936,"BestRankAt":"2023-02-15T06:22:53.556982Z","MostPoints":761,"MostPointsAt":"2023-02-15T06:22:53.556982Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556982Z","LastActivityAt":"2023-02-15T06:22:53.556982Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":537,"ScoreAtt":299339,"RankDef":179,"ScoreDef":2058644,"RankSup":207,"ScoreSup":888764,"RankTotal":271,"ScoreTotal":3246747,"ID":849032059,"Name":"Stickman","NumVillages":2,"Points":17158,"Rank":967,"TribeID":1780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032059","BestRank":967,"BestRankAt":"2023-02-15T06:22:53.556983Z","MostPoints":17158,"MostPointsAt":"2023-02-15T06:22:53.556983Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556983Z","LastActivityAt":"2023-02-15T06:22:53.556983Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1501,"ScoreAtt":2381,"RankDef":602,"ScoreDef":380349,"RankSup":957,"ScoreSup":7578,"RankTotal":926,"ScoreTotal":390308,"ID":849032413,"Name":"onek666","NumVillages":1,"Points":379,"Rank":2103,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032413","BestRank":2103,"BestRankAt":"2023-02-15T06:22:53.556983Z","MostPoints":379,"MostPointsAt":"2023-02-15T06:22:53.556983Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556983Z","LastActivityAt":"2023-02-15T06:22:53.556983Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":639,"ScoreAtt":168161,"RankDef":2138,"ScoreDef":2122,"RankSup":626,"ScoreSup":83794,"RankTotal":1051,"ScoreTotal":254077,"ID":849032414,"Name":"georgek","NumVillages":34,"Points":221200,"Rank":400,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032414","BestRank":400,"BestRankAt":"2023-02-15T06:22:53.556984Z","MostPoints":221200,"MostPointsAt":"2023-02-15T06:22:53.556984Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.556984Z","LastActivityAt":"2023-02-15T06:22:53.556984Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1225,"ScoreAtt":9486,"RankDef":523,"ScoreDef":489013,"RankSup":981,"ScoreSup":6133,"RankTotal":838,"ScoreTotal":504632,"ID":849032741,"Name":"Deylor","NumVillages":1,"Points":453,"Rank":2057,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032741","BestRank":2057,"BestRankAt":"2023-02-15T06:22:53.556984Z","MostPoints":453,"MostPointsAt":"2023-02-15T06:22:53.556984Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556984Z","LastActivityAt":"2023-02-15T06:22:53.556984Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849033395,"Name":"S1mple...","NumVillages":1,"Points":26,"Rank":2800,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849033395","BestRank":2800,"BestRankAt":"2023-02-15T06:22:53.556985Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556985Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556985Z","LastActivityAt":"2023-02-15T06:22:53.556985Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1370,"ScoreDef":48547,"RankSup":0,"ScoreSup":0,"RankTotal":1624,"ScoreTotal":48547,"ID":849034666,"Name":"FanBednar","NumVillages":1,"Points":3137,"Rank":1512,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849034666","BestRank":1512,"BestRankAt":"2023-02-15T06:22:53.556985Z","MostPoints":3137,"MostPointsAt":"2023-02-15T06:22:53.556985Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556985Z","LastActivityAt":"2023-02-15T06:22:53.556986Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":82,"ScoreAtt":3807184,"RankDef":540,"ScoreDef":460594,"RankSup":337,"ScoreSup":431861,"RankTotal":201,"ScoreTotal":4699639,"ID":849034882,"Name":"GamiBer2021","NumVillages":58,"Points":603522,"Rank":237,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849034882","BestRank":237,"BestRankAt":"2023-02-15T06:22:53.556986Z","MostPoints":603522,"MostPointsAt":"2023-02-15T06:22:53.556986Z","MostVillages":58,"MostVillagesAt":"2023-02-15T06:22:53.556986Z","LastActivityAt":"2023-02-15T06:22:53.556986Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1826,"ScoreAtt":151,"RankDef":2442,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2413,"ScoreTotal":161,"ID":849034917,"Name":"Bombalena","NumVillages":1,"Points":9091,"Rank":1120,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849034917","BestRank":1120,"BestRankAt":"2023-02-15T06:22:53.556986Z","MostPoints":9091,"MostPointsAt":"2023-02-15T06:22:53.556987Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556986Z","LastActivityAt":"2023-02-15T06:22:53.556987Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1925,"ScoreDef":7145,"RankSup":0,"ScoreSup":0,"RankTotal":2067,"ScoreTotal":7145,"ID":849035447,"Name":"pinkolinka","NumVillages":1,"Points":5708,"Rank":1288,"TribeID":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849035447","BestRank":1288,"BestRankAt":"2023-02-15T06:22:53.556987Z","MostPoints":5708,"MostPointsAt":"2023-02-15T06:22:53.556987Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556987Z","LastActivityAt":"2023-02-15T06:22:53.556987Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":235,"ScoreAtt":1271812,"RankDef":693,"ScoreDef":280453,"RankSup":276,"ScoreSup":592942,"RankTotal":389,"ScoreTotal":2145207,"ID":849035525,"Name":"Aiken","NumVillages":53,"Points":492200,"Rank":272,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849035525","BestRank":272,"BestRankAt":"2023-02-15T06:22:53.556987Z","MostPoints":492200,"MostPointsAt":"2023-02-15T06:22:53.556988Z","MostVillages":53,"MostVillagesAt":"2023-02-15T06:22:53.556988Z","LastActivityAt":"2023-02-15T06:22:53.556988Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":327,"ScoreAtt":799578,"RankDef":564,"ScoreDef":413309,"RankSup":266,"ScoreSup":629167,"RankTotal":429,"ScoreTotal":1842054,"ID":849035905,"Name":"Jamapet","NumVillages":76,"Points":683722,"Rank":208,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849035905","BestRank":208,"BestRankAt":"2023-02-15T06:22:53.556988Z","MostPoints":683722,"MostPointsAt":"2023-02-15T06:22:53.556988Z","MostVillages":76,"MostVillagesAt":"2023-02-15T06:22:53.556988Z","LastActivityAt":"2023-02-15T06:22:53.556988Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557329Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2512,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2582,"ScoreTotal":1,"ID":849036055,"Name":"AlfaCentauri","NumVillages":1,"Points":30,"Rank":2620,"TribeID":1040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849036055","BestRank":2620,"BestRankAt":"2023-02-15T06:22:53.556989Z","MostPoints":30,"MostPointsAt":"2023-02-15T06:22:53.556989Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556989Z","LastActivityAt":"2023-02-15T06:22:53.556989Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557329Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1277,"ScoreDef":59825,"RankSup":0,"ScoreSup":0,"RankTotal":1556,"ScoreTotal":59825,"ID":849036262,"Name":"egon 322","NumVillages":0,"Points":0,"Rank":3039,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849036262","BestRank":3039,"BestRankAt":"2023-02-15T06:22:53.556989Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.556989Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.556989Z","LastActivityAt":"2023-02-15T06:22:53.556989Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557329Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1380,"ScoreAtt":4563,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2150,"ScoreTotal":4563,"ID":849037354,"Name":"Saint Clair","NumVillages":1,"Points":5485,"Rank":1302,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037354","BestRank":1302,"BestRankAt":"2023-02-15T06:22:53.55699Z","MostPoints":5485,"MostPointsAt":"2023-02-15T06:22:53.55699Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55699Z","LastActivityAt":"2023-02-15T06:22:53.55699Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557329Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":78,"ScoreAtt":4045950,"RankDef":168,"ScoreDef":2225789,"RankSup":158,"ScoreSup":1436190,"RankTotal":107,"ScoreTotal":7707929,"ID":849037407,"Name":"Ksiądz PL","NumVillages":129,"Points":1205837,"Rank":109,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037407","BestRank":109,"BestRankAt":"2023-02-15T06:22:53.55699Z","MostPoints":1205837,"MostPointsAt":"2023-02-15T06:22:53.55699Z","MostVillages":129,"MostVillagesAt":"2023-02-15T06:22:53.55699Z","LastActivityAt":"2023-02-15T06:22:53.55699Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":574,"ScoreAtt":242300,"RankDef":41,"ScoreDef":7724164,"RankSup":78,"ScoreSup":2724908,"RankTotal":73,"ScoreTotal":10691372,"ID":849037469,"Name":"h1d3th","NumVillages":44,"Points":391821,"Rank":304,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037469","BestRank":304,"BestRankAt":"2023-02-15T06:22:53.556991Z","MostPoints":391821,"MostPointsAt":"2023-02-15T06:22:53.556991Z","MostVillages":44,"MostVillagesAt":"2023-02-15T06:22:53.556991Z","LastActivityAt":"2023-02-15T06:22:53.556991Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1054,"ScoreDef":106411,"RankSup":1313,"ScoreSup":18,"RankTotal":1370,"ScoreTotal":106429,"ID":849037699,"Name":"shokode","NumVillages":1,"Points":6430,"Rank":1243,"TribeID":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037699","BestRank":1243,"BestRankAt":"2023-02-15T06:22:53.556991Z","MostPoints":6430,"MostPointsAt":"2023-02-15T06:22:53.556992Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556991Z","LastActivityAt":"2023-02-15T06:22:53.556992Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1973,"ScoreAtt":9,"RankDef":834,"ScoreDef":191730,"RankSup":0,"ScoreSup":0,"RankTotal":1158,"ScoreTotal":191739,"ID":849038195,"Name":"Spekulant951","NumVillages":1,"Points":170,"Rank":2352,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038195","BestRank":2352,"BestRankAt":"2023-02-15T06:22:53.556992Z","MostPoints":170,"MostPointsAt":"2023-02-15T06:22:53.556992Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556992Z","LastActivityAt":"2023-02-15T06:22:53.556992Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1939,"ScoreAtt":27,"RankDef":2299,"ScoreDef":298,"RankSup":0,"ScoreSup":0,"RankTotal":2377,"ScoreTotal":325,"ID":849038572,"Name":"Bzyyykox3","NumVillages":1,"Points":191,"Rank":2320,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038572","BestRank":2320,"BestRankAt":"2023-02-15T06:22:53.556992Z","MostPoints":191,"MostPointsAt":"2023-02-15T06:22:53.556993Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556993Z","LastActivityAt":"2023-02-15T06:22:53.556993Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1412,"ScoreAtt":3956,"RankDef":2188,"ScoreDef":1406,"RankSup":0,"ScoreSup":0,"RankTotal":2118,"ScoreTotal":5362,"ID":849038597,"Name":"janusz12","NumVillages":5,"Points":14393,"Rank":1007,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038597","BestRank":1007,"BestRankAt":"2023-02-15T06:22:53.556993Z","MostPoints":14393,"MostPointsAt":"2023-02-15T06:22:53.556993Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.556993Z","LastActivityAt":"2023-02-15T06:22:53.556993Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557331Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2087,"ScoreDef":2996,"RankSup":0,"ScoreSup":0,"RankTotal":2206,"ScoreTotal":2996,"ID":849038985,"Name":"Kraken121","NumVillages":1,"Points":2059,"Rank":1648,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038985","BestRank":1648,"BestRankAt":"2023-02-15T06:22:53.556994Z","MostPoints":2059,"MostPointsAt":"2023-02-15T06:22:53.556994Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556994Z","LastActivityAt":"2023-02-15T06:22:53.556994Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557331Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":685,"ScoreAtt":139342,"RankDef":1324,"ScoreDef":55033,"RankSup":0,"ScoreSup":0,"RankTotal":1147,"ScoreTotal":194375,"ID":849039310,"Name":"vwbora","NumVillages":17,"Points":121171,"Rank":504,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849039310","BestRank":504,"BestRankAt":"2023-02-15T06:22:53.556994Z","MostPoints":121171,"MostPointsAt":"2023-02-15T06:22:53.556994Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.556994Z","LastActivityAt":"2023-02-15T06:22:53.556994Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557331Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849039766,"Name":"wolf1982","NumVillages":1,"Points":26,"Rank":2801,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849039766","BestRank":2801,"BestRankAt":"2023-02-15T06:22:53.556995Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.556995Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556995Z","LastActivityAt":"2023-02-15T06:22:53.556995Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557331Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":569,"ScoreAtt":251895,"RankDef":756,"ScoreDef":236841,"RankSup":381,"ScoreSup":347277,"RankTotal":675,"ScoreTotal":836013,"ID":849040142,"Name":"Vizier19","NumVillages":19,"Points":113403,"Rank":515,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040142","BestRank":515,"BestRankAt":"2023-02-15T06:22:53.556995Z","MostPoints":113403,"MostPointsAt":"2023-02-15T06:22:53.556995Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.556995Z","LastActivityAt":"2023-02-15T06:22:53.556995Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557332Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":585,"ScoreAtt":231335,"RankDef":139,"ScoreDef":2755361,"RankSup":838,"ScoreSup":17745,"RankTotal":288,"ScoreTotal":3004441,"ID":849040194,"Name":"RabarbarWB","NumVillages":2,"Points":14502,"Rank":1006,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040194","BestRank":1006,"BestRankAt":"2023-02-15T06:22:53.556996Z","MostPoints":14502,"MostPointsAt":"2023-02-15T06:22:53.556996Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556996Z","LastActivityAt":"2023-02-15T06:22:53.556996Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557332Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849040332,"Name":"lukaku","NumVillages":1,"Points":65,"Rank":2549,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040332","BestRank":2549,"BestRankAt":"2023-02-15T06:22:53.556996Z","MostPoints":65,"MostPointsAt":"2023-02-15T06:22:53.556996Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556996Z","LastActivityAt":"2023-02-15T06:22:53.556997Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557332Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1334,"ScoreAtt":5624,"RankDef":1524,"ScoreDef":31721,"RankSup":0,"ScoreSup":0,"RankTotal":1709,"ScoreTotal":37345,"ID":849040462,"Name":"emilek","NumVillages":2,"Points":4745,"Rank":1351,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040462","BestRank":1351,"BestRankAt":"2023-02-15T06:22:53.556997Z","MostPoints":4745,"MostPointsAt":"2023-02-15T06:22:53.556997Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556997Z","LastActivityAt":"2023-02-15T06:22:53.556997Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557332Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":883,"ScoreAtt":55005,"RankDef":280,"ScoreDef":1297981,"RankSup":488,"ScoreSup":184662,"RankTotal":485,"ScoreTotal":1537648,"ID":849041192,"Name":"Lord Tost","NumVillages":14,"Points":70341,"Rank":612,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849041192","BestRank":612,"BestRankAt":"2023-02-15T06:22:53.556997Z","MostPoints":70341,"MostPointsAt":"2023-02-15T06:22:53.556998Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.556997Z","LastActivityAt":"2023-02-15T06:22:53.556998Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557332Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849041557,"Name":"Kavve","NumVillages":1,"Points":91,"Rank":2504,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849041557","BestRank":2504,"BestRankAt":"2023-02-15T06:22:53.556998Z","MostPoints":91,"MostPointsAt":"2023-02-15T06:22:53.556998Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556998Z","LastActivityAt":"2023-02-15T06:22:53.556998Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557333Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2262,"ScoreDef":542,"RankSup":0,"ScoreSup":0,"RankTotal":2344,"ScoreTotal":542,"ID":849042461,"Name":"perespol43","NumVillages":1,"Points":2077,"Rank":1644,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849042461","BestRank":1644,"BestRankAt":"2023-02-15T06:22:53.556998Z","MostPoints":2077,"MostPointsAt":"2023-02-15T06:22:53.556999Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.556999Z","LastActivityAt":"2023-02-15T06:22:53.556999Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557333Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1606,"ScoreAtt":1252,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2296,"ScoreTotal":1252,"ID":849042480,"Name":"michelangelo420","NumVillages":2,"Points":6155,"Rank":1263,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849042480","BestRank":1263,"BestRankAt":"2023-02-15T06:22:53.556999Z","MostPoints":6155,"MostPointsAt":"2023-02-15T06:22:53.556999Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.556999Z","LastActivityAt":"2023-02-15T06:22:53.556999Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557333Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":970,"ScoreDef":134454,"RankSup":0,"ScoreSup":0,"RankTotal":1286,"ScoreTotal":134454,"ID":849043776,"Name":"touchmeboy","NumVillages":1,"Points":430,"Rank":2070,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849043776","BestRank":2070,"BestRankAt":"2023-02-15T06:22:53.557Z","MostPoints":430,"MostPointsAt":"2023-02-15T06:22:53.557Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557Z","LastActivityAt":"2023-02-15T06:22:53.557Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557333Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":812,"ScoreAtt":76015,"RankDef":1057,"ScoreDef":105586,"RankSup":0,"ScoreSup":0,"RankTotal":1187,"ScoreTotal":181601,"ID":849044705,"Name":"Tathagatta","NumVillages":20,"Points":119348,"Rank":506,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849044705","BestRank":506,"BestRankAt":"2023-02-15T06:22:53.557Z","MostPoints":119348,"MostPointsAt":"2023-02-15T06:22:53.557Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.557Z","LastActivityAt":"2023-02-15T06:22:53.557Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849044724,"Name":"xarans","NumVillages":1,"Points":1146,"Rank":1819,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849044724","BestRank":1819,"BestRankAt":"2023-02-15T06:22:53.557001Z","MostPoints":1146,"MostPointsAt":"2023-02-15T06:22:53.557001Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557001Z","LastActivityAt":"2023-02-15T06:22:53.557001Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1370,"ScoreAtt":4732,"RankDef":936,"ScoreDef":147787,"RankSup":1346,"ScoreSup":7,"RankTotal":1242,"ScoreTotal":152526,"ID":849044961,"Name":"PaweƂU136f","NumVillages":5,"Points":31077,"Rank":803,"TribeID":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849044961","BestRank":803,"BestRankAt":"2023-02-15T06:22:53.557001Z","MostPoints":31077,"MostPointsAt":"2023-02-15T06:22:53.557001Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.557001Z","LastActivityAt":"2023-02-15T06:22:53.557001Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":248,"ScoreAtt":1129117,"RankDef":288,"ScoreDef":1239122,"RankSup":628,"ScoreSup":83274,"RankTotal":350,"ScoreTotal":2451513,"ID":849045047,"Name":"Songoku29","NumVillages":0,"Points":0,"Rank":3040,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849045047","BestRank":3040,"BestRankAt":"2023-02-15T06:22:53.557002Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557002Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557002Z","LastActivityAt":"2023-02-15T06:22:53.557002Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":772,"ScoreAtt":92981,"RankDef":791,"ScoreDef":217802,"RankSup":1025,"ScoreSup":3941,"RankTotal":991,"ScoreTotal":314724,"ID":849045675,"Name":"DebeƛciakZpodlasia","NumVillages":8,"Points":64456,"Rank":640,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849045675","BestRank":640,"BestRankAt":"2023-02-15T06:22:53.557002Z","MostPoints":64456,"MostPointsAt":"2023-02-15T06:22:53.557002Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.557002Z","LastActivityAt":"2023-02-15T06:22:53.557003Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1473,"ScoreAtt":2779,"RankDef":194,"ScoreDef":1957340,"RankSup":1083,"ScoreSup":2288,"RankTotal":410,"ScoreTotal":1962407,"ID":849045915,"Name":"Gremar90","NumVillages":2,"Points":16614,"Rank":974,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849045915","BestRank":974,"BestRankAt":"2023-02-15T06:22:53.557003Z","MostPoints":16614,"MostPointsAt":"2023-02-15T06:22:53.557003Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557003Z","LastActivityAt":"2023-02-15T06:22:53.557003Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557335Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1762,"ScoreAtt":296,"RankDef":2187,"ScoreDef":1409,"RankSup":0,"ScoreSup":0,"RankTotal":2268,"ScoreTotal":1705,"ID":849046206,"Name":"Zuzia","NumVillages":1,"Points":1011,"Rank":1861,"TribeID":1785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046206","BestRank":1861,"BestRankAt":"2023-02-15T06:22:53.557003Z","MostPoints":1011,"MostPointsAt":"2023-02-15T06:22:53.557004Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557003Z","LastActivityAt":"2023-02-15T06:22:53.557004Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557335Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":999,"ScoreAtt":30671,"RankDef":1710,"ScoreDef":18031,"RankSup":0,"ScoreSup":0,"RankTotal":1623,"ScoreTotal":48702,"ID":849046232,"Name":"kamilos937","NumVillages":4,"Points":34153,"Rank":779,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046232","BestRank":779,"BestRankAt":"2023-02-15T06:22:53.557004Z","MostPoints":34153,"MostPointsAt":"2023-02-15T06:22:53.557004Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.557004Z","LastActivityAt":"2023-02-15T06:22:53.557004Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557335Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849046397,"Name":"kamera","NumVillages":1,"Points":52,"Rank":2575,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046397","BestRank":2575,"BestRankAt":"2023-02-15T06:22:53.557005Z","MostPoints":52,"MostPointsAt":"2023-02-15T06:22:53.557005Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557005Z","LastActivityAt":"2023-02-15T06:22:53.557005Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557335Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849046647,"Name":"DĆŒejdĆŒejj","NumVillages":1,"Points":26,"Rank":2802,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046647","BestRank":2802,"BestRankAt":"2023-02-15T06:22:53.557005Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557005Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557005Z","LastActivityAt":"2023-02-15T06:22:53.557005Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1645,"ScoreAtt":889,"RankDef":2099,"ScoreDef":2800,"RankSup":1301,"ScoreSup":27,"RankTotal":2184,"ScoreTotal":3716,"ID":849047044,"Name":"Angelyears","NumVillages":7,"Points":58294,"Rank":660,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849047044","BestRank":660,"BestRankAt":"2023-02-15T06:22:53.557006Z","MostPoints":58294,"MostPointsAt":"2023-02-15T06:22:53.557006Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.557006Z","LastActivityAt":"2023-02-15T06:22:53.557006Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":625,"ScoreAtt":184646,"RankDef":1274,"ScoreDef":60107,"RankSup":0,"ScoreSup":0,"RankTotal":1061,"ScoreTotal":244753,"ID":849047233,"Name":"Morgan578","NumVillages":7,"Points":32413,"Rank":792,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849047233","BestRank":792,"BestRankAt":"2023-02-15T06:22:53.557006Z","MostPoints":32413,"MostPointsAt":"2023-02-15T06:22:53.557006Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.557006Z","LastActivityAt":"2023-02-15T06:22:53.557006Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":567,"ScoreAtt":255113,"RankDef":284,"ScoreDef":1281838,"RankSup":432,"ScoreSup":250453,"RankTotal":444,"ScoreTotal":1787404,"ID":849048112,"Name":"mrozzo","NumVillages":1,"Points":26,"Rank":2803,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048112","BestRank":2803,"BestRankAt":"2023-02-15T06:22:53.557007Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557007Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557007Z","LastActivityAt":"2023-02-15T06:22:53.557007Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":945,"ScoreAtt":41250,"RankDef":982,"ScoreDef":129194,"RankSup":657,"ScoreSup":67853,"RankTotal":1070,"ScoreTotal":238297,"ID":849048216,"Name":"Wektor39","NumVillages":11,"Points":40380,"Rank":739,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048216","BestRank":739,"BestRankAt":"2023-02-15T06:22:53.557007Z","MostPoints":40380,"MostPointsAt":"2023-02-15T06:22:53.557007Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.557007Z","LastActivityAt":"2023-02-15T06:22:53.557008Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1106,"ScoreAtt":17635,"RankDef":2394,"ScoreDef":24,"RankSup":0,"ScoreSup":0,"RankTotal":1894,"ScoreTotal":17659,"ID":849048241,"Name":"Krystian438997","NumVillages":1,"Points":5178,"Rank":1317,"TribeID":1692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048241","BestRank":1317,"BestRankAt":"2023-02-15T06:22:53.557008Z","MostPoints":5178,"MostPointsAt":"2023-02-15T06:22:53.557008Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557008Z","LastActivityAt":"2023-02-15T06:22:53.557008Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":804,"ScoreAtt":79603,"RankDef":557,"ScoreDef":427735,"RankSup":840,"ScoreSup":17656,"RankTotal":822,"ScoreTotal":524994,"ID":849048455,"Name":"Brannigan","NumVillages":1,"Points":1754,"Rank":1709,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048455","BestRank":1709,"BestRankAt":"2023-02-15T06:22:53.557008Z","MostPoints":1754,"MostPointsAt":"2023-02-15T06:22:53.557009Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557008Z","LastActivityAt":"2023-02-15T06:22:53.557009Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":847,"ScoreAtt":65666,"RankDef":631,"ScoreDef":342840,"RankSup":941,"ScoreSup":8520,"RankTotal":900,"ScoreTotal":417026,"ID":849048552,"Name":"Sylwiaa1234","NumVillages":1,"Points":68,"Rank":2541,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048552","BestRank":2541,"BestRankAt":"2023-02-15T06:22:53.557009Z","MostPoints":68,"MostPointsAt":"2023-02-15T06:22:53.557009Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557009Z","LastActivityAt":"2023-02-15T06:22:53.557009Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1129,"ScoreAtt":15812,"RankDef":1327,"ScoreDef":54806,"RankSup":0,"ScoreSup":0,"RankTotal":1502,"ScoreTotal":70618,"ID":849048562,"Name":"Adam19955","NumVillages":1,"Points":8612,"Rank":1131,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048562","BestRank":1131,"BestRankAt":"2023-02-15T06:22:53.557009Z","MostPoints":8612,"MostPointsAt":"2023-02-15T06:22:53.55701Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55701Z","LastActivityAt":"2023-02-15T06:22:53.55701Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":957,"ScoreAtt":37911,"RankDef":1690,"ScoreDef":19542,"RankSup":938,"ScoreSup":8575,"RankTotal":1523,"ScoreTotal":66028,"ID":849048734,"Name":"Wincy94","NumVillages":6,"Points":25997,"Rank":849,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048734","BestRank":849,"BestRankAt":"2023-02-15T06:22:53.55701Z","MostPoints":25997,"MostPointsAt":"2023-02-15T06:22:53.55701Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.55701Z","LastActivityAt":"2023-02-15T06:22:53.55701Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1434,"ScoreAtt":3444,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2194,"ScoreTotal":3444,"ID":849048856,"Name":"Ffran","NumVillages":5,"Points":23690,"Rank":876,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048856","BestRank":876,"BestRankAt":"2023-02-15T06:22:53.557011Z","MostPoints":23690,"MostPointsAt":"2023-02-15T06:22:53.557011Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.557011Z","LastActivityAt":"2023-02-15T06:22:53.557011Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":698,"ScoreAtt":131708,"RankDef":1038,"ScoreDef":113445,"RankSup":724,"ScoreSup":41982,"RankTotal":1014,"ScoreTotal":287135,"ID":849048867,"Name":"sylwek02","NumVillages":30,"Points":208982,"Rank":408,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048867","BestRank":408,"BestRankAt":"2023-02-15T06:22:53.557011Z","MostPoints":208982,"MostPointsAt":"2023-02-15T06:22:53.557011Z","MostVillages":30,"MostVillagesAt":"2023-02-15T06:22:53.557011Z","LastActivityAt":"2023-02-15T06:22:53.557011Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":446,"ScoreAtt":455166,"RankDef":282,"ScoreDef":1289083,"RankSup":542,"ScoreSup":135971,"RankTotal":422,"ScoreTotal":1880220,"ID":849049045,"Name":"rafal9725","NumVillages":14,"Points":137079,"Rank":481,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049045","BestRank":481,"BestRankAt":"2023-02-15T06:22:53.557012Z","MostPoints":137079,"MostPointsAt":"2023-02-15T06:22:53.557012Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.557012Z","LastActivityAt":"2023-02-15T06:22:53.557012Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":652,"ScoreAtt":156399,"RankDef":680,"ScoreDef":287016,"RankSup":1128,"ScoreSup":1382,"RankTotal":875,"ScoreTotal":444797,"ID":849049155,"Name":"NHL2022","NumVillages":3,"Points":25876,"Rank":851,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049155","BestRank":851,"BestRankAt":"2023-02-15T06:22:53.557012Z","MostPoints":25876,"MostPointsAt":"2023-02-15T06:22:53.557012Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557012Z","LastActivityAt":"2023-02-15T06:22:53.557012Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2475,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2543,"ScoreTotal":10,"ID":849049288,"Name":"maaadzior95","NumVillages":1,"Points":2688,"Rank":1570,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049288","BestRank":1570,"BestRankAt":"2023-02-15T06:22:53.557013Z","MostPoints":2688,"MostPointsAt":"2023-02-15T06:22:53.557013Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557013Z","LastActivityAt":"2023-02-15T06:22:53.557013Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849049864,"Name":"Itadakimasu","NumVillages":1,"Points":26,"Rank":2804,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049864","BestRank":2804,"BestRankAt":"2023-02-15T06:22:53.557013Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557013Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557013Z","LastActivityAt":"2023-02-15T06:22:53.557014Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1236,"ScoreAtt":8841,"RankDef":1751,"ScoreDef":15564,"RankSup":0,"ScoreSup":0,"RankTotal":1826,"ScoreTotal":24405,"ID":849050087,"Name":"bunu","NumVillages":4,"Points":7526,"Rank":1184,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050087","BestRank":1184,"BestRankAt":"2023-02-15T06:22:53.557016Z","MostPoints":7526,"MostPointsAt":"2023-02-15T06:22:53.557016Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.557016Z","LastActivityAt":"2023-02-15T06:22:53.557016Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1498,"ScoreAtt":2415,"RankDef":1212,"ScoreDef":70827,"RankSup":879,"ScoreSup":14147,"RankTotal":1442,"ScoreTotal":87389,"ID":849050191,"Name":"Sir Refresh","NumVillages":1,"Points":5703,"Rank":1289,"TribeID":1734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050191","BestRank":1289,"BestRankAt":"2023-02-15T06:22:53.557016Z","MostPoints":5703,"MostPointsAt":"2023-02-15T06:22:53.557016Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557016Z","LastActivityAt":"2023-02-15T06:22:53.557016Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849050410,"Name":"221719123","NumVillages":1,"Points":26,"Rank":2805,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050410","BestRank":2805,"BestRankAt":"2023-02-15T06:22:53.557017Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557017Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557017Z","LastActivityAt":"2023-02-15T06:22:53.557017Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":678,"ScoreDef":288160,"RankSup":1180,"ScoreSup":605,"RankTotal":1012,"ScoreTotal":288765,"ID":849050734,"Name":"piotrpeters","NumVillages":0,"Points":0,"Rank":3041,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050734","BestRank":3041,"BestRankAt":"2023-02-15T06:22:53.557017Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557017Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557017Z","LastActivityAt":"2023-02-15T06:22:53.557018Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":518,"ScoreAtt":326552,"RankDef":1061,"ScoreDef":104505,"RankSup":0,"ScoreSup":0,"RankTotal":884,"ScoreTotal":431057,"ID":849050849,"Name":"Dawid 84","NumVillages":7,"Points":49266,"Rank":698,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050849","BestRank":698,"BestRankAt":"2023-02-15T06:22:53.557018Z","MostPoints":49266,"MostPointsAt":"2023-02-15T06:22:53.557018Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.557018Z","LastActivityAt":"2023-02-15T06:22:53.557018Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1420,"ScoreDef":40999,"RankSup":0,"ScoreSup":0,"RankTotal":1675,"ScoreTotal":40999,"ID":849051363,"Name":"Tomus 01011973","NumVillages":1,"Points":323,"Rank":2152,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051363","BestRank":2152,"BestRankAt":"2023-02-15T06:22:53.557018Z","MostPoints":323,"MostPointsAt":"2023-02-15T06:22:53.557019Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557018Z","LastActivityAt":"2023-02-15T06:22:53.557019Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1090,"ScoreAtt":19539,"RankDef":216,"ScoreDef":1752217,"RankSup":803,"ScoreSup":24516,"RankTotal":438,"ScoreTotal":1796272,"ID":849051436,"Name":"Cataloniaa","NumVillages":0,"Points":0,"Rank":3042,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051436","BestRank":3042,"BestRankAt":"2023-02-15T06:22:53.557019Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557019Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557019Z","LastActivityAt":"2023-02-15T06:22:53.557019Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1783,"ScoreAtt":258,"RankDef":2431,"ScoreDef":11,"RankSup":0,"ScoreSup":0,"RankTotal":2387,"ScoreTotal":269,"ID":849051731,"Name":"dzidek76","NumVillages":1,"Points":3288,"Rank":1497,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051731","BestRank":1497,"BestRankAt":"2023-02-15T06:22:53.55702Z","MostPoints":3288,"MostPointsAt":"2023-02-15T06:22:53.55702Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55702Z","LastActivityAt":"2023-02-15T06:22:53.55702Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":947,"ScoreAtt":40963,"RankDef":1414,"ScoreDef":41454,"RankSup":0,"ScoreSup":0,"RankTotal":1457,"ScoreTotal":82417,"ID":849051976,"Name":"AdamC7","NumVillages":3,"Points":21830,"Rank":892,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051976","BestRank":892,"BestRankAt":"2023-02-15T06:22:53.55702Z","MostPoints":21830,"MostPointsAt":"2023-02-15T06:22:53.55702Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.55702Z","LastActivityAt":"2023-02-15T06:22:53.55702Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1840,"ScoreAtt":135,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2423,"ScoreTotal":135,"ID":849052195,"Name":"PaszaBiceps","NumVillages":1,"Points":226,"Rank":2260,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052195","BestRank":2260,"BestRankAt":"2023-02-15T06:22:53.557021Z","MostPoints":226,"MostPointsAt":"2023-02-15T06:22:53.557021Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557021Z","LastActivityAt":"2023-02-15T06:22:53.557021Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1408,"ScoreAtt":4050,"RankDef":2167,"ScoreDef":1734,"RankSup":0,"ScoreSup":0,"RankTotal":2106,"ScoreTotal":5784,"ID":849052289,"Name":"Avilkson","NumVillages":1,"Points":8403,"Rank":1140,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052289","BestRank":1140,"BestRankAt":"2023-02-15T06:22:53.557021Z","MostPoints":8403,"MostPointsAt":"2023-02-15T06:22:53.557021Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557021Z","LastActivityAt":"2023-02-15T06:22:53.557021Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849052488,"Name":"Terada","NumVillages":1,"Points":358,"Rank":2120,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052488","BestRank":2120,"BestRankAt":"2023-02-15T06:22:53.557022Z","MostPoints":358,"MostPointsAt":"2023-02-15T06:22:53.557022Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557022Z","LastActivityAt":"2023-02-15T06:22:53.557022Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":598,"ScoreAtt":216618,"RankDef":141,"ScoreDef":2744723,"RankSup":647,"ScoreSup":74745,"RankTotal":284,"ScoreTotal":3036086,"ID":849052549,"Name":"Mateo1315","NumVillages":1,"Points":26,"Rank":2806,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052549","BestRank":2806,"BestRankAt":"2023-02-15T06:22:53.557022Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557022Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557022Z","LastActivityAt":"2023-02-15T06:22:53.557022Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1450,"ScoreAtt":3214,"RankDef":932,"ScoreDef":149021,"RankSup":1279,"ScoreSup":57,"RankTotal":1243,"ScoreTotal":152292,"ID":849052588,"Name":"nula132","NumVillages":0,"Points":0,"Rank":3043,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052588","BestRank":3043,"BestRankAt":"2023-02-15T06:22:53.557023Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557023Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557023Z","LastActivityAt":"2023-02-15T06:22:53.557023Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2311,"ScoreDef":240,"RankSup":0,"ScoreSup":0,"RankTotal":2393,"ScoreTotal":240,"ID":849053122,"Name":"mockingcoffin","NumVillages":1,"Points":2886,"Rank":1543,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849053122","BestRank":1543,"BestRankAt":"2023-02-15T06:22:53.557023Z","MostPoints":2886,"MostPointsAt":"2023-02-15T06:22:53.557024Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557023Z","LastActivityAt":"2023-02-15T06:22:53.557024Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1530,"ScoreAtt":2087,"RankDef":762,"ScoreDef":234522,"RankSup":1164,"ScoreSup":847,"RankTotal":1072,"ScoreTotal":237456,"ID":849053868,"Name":"Hajotus","NumVillages":0,"Points":0,"Rank":3044,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849053868","BestRank":3044,"BestRankAt":"2023-02-15T06:22:53.557024Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557024Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557024Z","LastActivityAt":"2023-02-15T06:22:53.557024Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":417,"ScoreAtt":531083,"RankDef":1045,"ScoreDef":109387,"RankSup":549,"ScoreSup":130800,"RankTotal":696,"ScoreTotal":771270,"ID":849054582,"Name":"Pompka15","NumVillages":46,"Points":328897,"Rank":342,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849054582","BestRank":342,"BestRankAt":"2023-02-15T06:22:53.557024Z","MostPoints":328897,"MostPointsAt":"2023-02-15T06:22:53.557025Z","MostVillages":46,"MostVillagesAt":"2023-02-15T06:22:53.557025Z","LastActivityAt":"2023-02-15T06:22:53.557025Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849054606,"Name":"TheMooon","NumVillages":1,"Points":138,"Rank":2397,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849054606","BestRank":2397,"BestRankAt":"2023-02-15T06:22:53.557025Z","MostPoints":138,"MostPointsAt":"2023-02-15T06:22:53.557025Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557025Z","LastActivityAt":"2023-02-15T06:22:53.557025Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":81,"ScoreAtt":3858958,"RankDef":543,"ScoreDef":456243,"RankSup":142,"ScoreSup":1553771,"RankTotal":155,"ScoreTotal":5868972,"ID":849054951,"Name":"maxigtr95","NumVillages":58,"Points":555172,"Rank":252,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849054951","BestRank":252,"BestRankAt":"2023-02-15T06:22:53.557026Z","MostPoints":555172,"MostPointsAt":"2023-02-15T06:22:53.557026Z","MostVillages":58,"MostVillagesAt":"2023-02-15T06:22:53.557026Z","LastActivityAt":"2023-02-15T06:22:53.557026Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849055096,"Name":"dorkness","NumVillages":1,"Points":136,"Rank":2402,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055096","BestRank":2402,"BestRankAt":"2023-02-15T06:22:53.557026Z","MostPoints":136,"MostPointsAt":"2023-02-15T06:22:53.557026Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557026Z","LastActivityAt":"2023-02-15T06:22:53.557026Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1540,"ScoreAtt":1978,"RankDef":1607,"ScoreDef":25301,"RankSup":1200,"ScoreSup":391,"RankTotal":1792,"ScoreTotal":27670,"ID":849055181,"Name":"Lord Arczi997","NumVillages":9,"Points":22285,"Rank":888,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055181","BestRank":888,"BestRankAt":"2023-02-15T06:22:53.557027Z","MostPoints":22285,"MostPointsAt":"2023-02-15T06:22:53.557027Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.557027Z","LastActivityAt":"2023-02-15T06:22:53.557027Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1755,"ScoreAtt":313,"RankDef":1112,"ScoreDef":92068,"RankSup":0,"ScoreSup":0,"RankTotal":1422,"ScoreTotal":92381,"ID":849055309,"Name":"Rango","NumVillages":1,"Points":772,"Rank":1929,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055309","BestRank":1929,"BestRankAt":"2023-02-15T06:22:53.557027Z","MostPoints":772,"MostPointsAt":"2023-02-15T06:22:53.557027Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557027Z","LastActivityAt":"2023-02-15T06:22:53.557027Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":955,"ScoreAtt":38310,"RankDef":1048,"ScoreDef":108987,"RankSup":467,"ScoreSup":201714,"RankTotal":962,"ScoreTotal":349011,"ID":849055425,"Name":"Karl Dzikens","NumVillages":16,"Points":108133,"Rank":525,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055425","BestRank":525,"BestRankAt":"2023-02-15T06:22:53.557028Z","MostPoints":108133,"MostPointsAt":"2023-02-15T06:22:53.557028Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.557028Z","LastActivityAt":"2023-02-15T06:22:53.557028Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1620,"ScoreDef":24417,"RankSup":1320,"ScoreSup":15,"RankTotal":1825,"ScoreTotal":24432,"ID":849055527,"Name":"fikumiku111","NumVillages":1,"Points":179,"Rank":2339,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055527","BestRank":2339,"BestRankAt":"2023-02-15T06:22:53.557028Z","MostPoints":179,"MostPointsAt":"2023-02-15T06:22:53.557028Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557028Z","LastActivityAt":"2023-02-15T06:22:53.557029Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1576,"ScoreAtt":1557,"RankDef":751,"ScoreDef":242429,"RankSup":0,"ScoreSup":0,"RankTotal":1063,"ScoreTotal":243986,"ID":849055553,"Name":"Bv3y","NumVillages":2,"Points":7072,"Rank":1211,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055553","BestRank":1211,"BestRankAt":"2023-02-15T06:22:53.557029Z","MostPoints":7072,"MostPointsAt":"2023-02-15T06:22:53.557029Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557029Z","LastActivityAt":"2023-02-15T06:22:53.557029Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1669,"ScoreDef":20311,"RankSup":0,"ScoreSup":0,"RankTotal":1868,"ScoreTotal":20311,"ID":849056475,"Name":"lis 1","NumVillages":1,"Points":1273,"Rank":1796,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849056475","BestRank":1796,"BestRankAt":"2023-02-15T06:22:53.557029Z","MostPoints":1273,"MostPointsAt":"2023-02-15T06:22:53.55703Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557029Z","LastActivityAt":"2023-02-15T06:22:53.55703Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":770,"ScoreAtt":93268,"RankDef":205,"ScoreDef":1832232,"RankSup":599,"ScoreSup":99731,"RankTotal":403,"ScoreTotal":2025231,"ID":849056744,"Name":"setts","NumVillages":8,"Points":38789,"Rank":747,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849056744","BestRank":747,"BestRankAt":"2023-02-15T06:22:53.55703Z","MostPoints":38789,"MostPointsAt":"2023-02-15T06:22:53.55703Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.55703Z","LastActivityAt":"2023-02-15T06:22:53.55703Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":681,"ScoreDef":286426,"RankSup":0,"ScoreSup":0,"RankTotal":1016,"ScoreTotal":286426,"ID":849056892,"Name":"General Kaczor","NumVillages":0,"Points":0,"Rank":3045,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849056892","BestRank":3045,"BestRankAt":"2023-02-15T06:22:53.55703Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557031Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557031Z","LastActivityAt":"2023-02-15T06:22:53.557031Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1959,"ScoreDef":6038,"RankSup":0,"ScoreSup":0,"RankTotal":2095,"ScoreTotal":6038,"ID":849057176,"Name":"Patoszek","NumVillages":0,"Points":0,"Rank":3046,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057176","BestRank":3046,"BestRankAt":"2023-02-15T06:22:53.557031Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557031Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557031Z","LastActivityAt":"2023-02-15T06:22:53.557031Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1765,"ScoreAtt":288,"RankDef":563,"ScoreDef":414190,"RankSup":0,"ScoreSup":0,"RankTotal":902,"ScoreTotal":414478,"ID":849057450,"Name":"Rutalo","NumVillages":1,"Points":1813,"Rank":1699,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057450","BestRank":1699,"BestRankAt":"2023-02-15T06:22:53.557032Z","MostPoints":1813,"MostPointsAt":"2023-02-15T06:22:53.557032Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557032Z","LastActivityAt":"2023-02-15T06:22:53.557032Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":590,"ScoreAtt":224176,"RankDef":199,"ScoreDef":1886666,"RankSup":260,"ScoreSup":654823,"RankTotal":311,"ScoreTotal":2765665,"ID":849057572,"Name":"L44ndryn","NumVillages":4,"Points":28050,"Rank":829,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057572","BestRank":829,"BestRankAt":"2023-02-15T06:22:53.557032Z","MostPoints":28050,"MostPointsAt":"2023-02-15T06:22:53.557032Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.557032Z","LastActivityAt":"2023-02-15T06:22:53.557032Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":504,"ScoreAtt":343819,"RankDef":110,"ScoreDef":3400530,"RankSup":193,"ScoreSup":1002599,"RankTotal":199,"ScoreTotal":4746948,"ID":849057655,"Name":"Pimpuƛ","NumVillages":1,"Points":52,"Rank":2576,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057655","BestRank":2576,"BestRankAt":"2023-02-15T06:22:53.557033Z","MostPoints":52,"MostPointsAt":"2023-02-15T06:22:53.557033Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557033Z","LastActivityAt":"2023-02-15T06:22:53.557033Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1496,"ScoreAtt":2416,"RankDef":596,"ScoreDef":383279,"RankSup":577,"ScoreSup":112500,"RankTotal":844,"ScoreTotal":498195,"ID":849057764,"Name":"Grzejdas","NumVillages":8,"Points":30430,"Rank":812,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057764","BestRank":812,"BestRankAt":"2023-02-15T06:22:53.557033Z","MostPoints":30430,"MostPointsAt":"2023-02-15T06:22:53.557033Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.557033Z","LastActivityAt":"2023-02-15T06:22:53.557034Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":703,"ScoreAtt":126983,"RankDef":799,"ScoreDef":211115,"RankSup":707,"ScoreSup":46934,"RankTotal":931,"ScoreTotal":385032,"ID":849058207,"Name":"webi","NumVillages":1,"Points":183,"Rank":2329,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849058207","BestRank":2329,"BestRankAt":"2023-02-15T06:22:53.557034Z","MostPoints":183,"MostPointsAt":"2023-02-15T06:22:53.557034Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557034Z","LastActivityAt":"2023-02-15T06:22:53.557034Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1041,"ScoreDef":112602,"RankSup":0,"ScoreSup":0,"RankTotal":1349,"ScoreTotal":112602,"ID":849059331,"Name":"Hubida","NumVillages":0,"Points":0,"Rank":3047,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849059331","BestRank":3047,"BestRankAt":"2023-02-15T06:22:53.557034Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557035Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557034Z","LastActivityAt":"2023-02-15T06:22:53.557035Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":848,"ScoreAtt":65582,"RankDef":1220,"ScoreDef":69002,"RankSup":510,"ScoreSup":165042,"RankTotal":1006,"ScoreTotal":299626,"ID":849059457,"Name":"serwis??????????????","NumVillages":17,"Points":102082,"Rank":534,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849059457","BestRank":534,"BestRankAt":"2023-02-15T06:22:53.557035Z","MostPoints":102082,"MostPointsAt":"2023-02-15T06:22:53.557035Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.557035Z","LastActivityAt":"2023-02-15T06:22:53.557035Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":315,"ScoreAtt":853911,"RankDef":59,"ScoreDef":5803221,"RankSup":286,"ScoreSup":569584,"RankTotal":119,"ScoreTotal":7226716,"ID":849059491,"Name":"Robbinho","NumVillages":33,"Points":265438,"Rank":368,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849059491","BestRank":368,"BestRankAt":"2023-02-15T06:22:53.557035Z","MostPoints":265438,"MostPointsAt":"2023-02-15T06:22:53.557036Z","MostVillages":33,"MostVillagesAt":"2023-02-15T06:22:53.557036Z","LastActivityAt":"2023-02-15T06:22:53.557036Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1665,"ScoreAtt":755,"RankDef":1986,"ScoreDef":5431,"RankSup":1409,"ScoreSup":1,"RankTotal":2091,"ScoreTotal":6187,"ID":849060099,"Name":"Krycek","NumVillages":1,"Points":9097,"Rank":1119,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849060099","BestRank":1119,"BestRankAt":"2023-02-15T06:22:53.557036Z","MostPoints":9097,"MostPointsAt":"2023-02-15T06:22:53.557036Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557036Z","LastActivityAt":"2023-02-15T06:22:53.557036Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2352,"ScoreDef":77,"RankSup":0,"ScoreSup":0,"RankTotal":2447,"ScoreTotal":77,"ID":849060357,"Name":"Marcelinka","NumVillages":1,"Points":2111,"Rank":1641,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849060357","BestRank":1641,"BestRankAt":"2023-02-15T06:22:53.557037Z","MostPoints":2111,"MostPointsAt":"2023-02-15T06:22:53.557037Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557037Z","LastActivityAt":"2023-02-15T06:22:53.557037Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":324,"ScoreAtt":811352,"RankDef":86,"ScoreDef":3944607,"RankSup":393,"ScoreSup":325443,"RankTotal":183,"ScoreTotal":5081402,"ID":849060446,"Name":"karu7","NumVillages":34,"Points":308903,"Rank":351,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849060446","BestRank":351,"BestRankAt":"2023-02-15T06:22:53.557037Z","MostPoints":308903,"MostPointsAt":"2023-02-15T06:22:53.557037Z","MostVillages":34,"MostVillagesAt":"2023-02-15T06:22:53.557037Z","LastActivityAt":"2023-02-15T06:22:53.557037Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":212,"ScoreAtt":1481037,"RankDef":22,"ScoreDef":14367037,"RankSup":115,"ScoreSup":1936850,"RankTotal":35,"ScoreTotal":17784924,"ID":849061374,"Name":"kosiarapan","NumVillages":11,"Points":101270,"Rank":535,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061374","BestRank":535,"BestRankAt":"2023-02-15T06:22:53.557038Z","MostPoints":101270,"MostPointsAt":"2023-02-15T06:22:53.557038Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.557038Z","LastActivityAt":"2023-02-15T06:22:53.557038Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":182,"ScoreAtt":1730001,"RankDef":220,"ScoreDef":1712187,"RankSup":747,"ScoreSup":36891,"RankTotal":258,"ScoreTotal":3479079,"ID":849061406,"Name":"BastianCHW","NumVillages":1,"Points":26,"Rank":2807,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061406","BestRank":2807,"BestRankAt":"2023-02-15T06:22:53.557038Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557038Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557038Z","LastActivityAt":"2023-02-15T06:22:53.557038Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1427,"ScoreAtt":3619,"RankDef":1740,"ScoreDef":16480,"RankSup":0,"ScoreSup":0,"RankTotal":1873,"ScoreTotal":20099,"ID":849061417,"Name":"Poqson1337","NumVillages":1,"Points":437,"Rank":2067,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061417","BestRank":2067,"BestRankAt":"2023-02-15T06:22:53.557039Z","MostPoints":437,"MostPointsAt":"2023-02-15T06:22:53.557039Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557039Z","LastActivityAt":"2023-02-15T06:22:53.557039Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849061418,"Name":"Bellu","NumVillages":1,"Points":26,"Rank":2808,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061418","BestRank":2808,"BestRankAt":"2023-02-15T06:22:53.557039Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557039Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557039Z","LastActivityAt":"2023-02-15T06:22:53.55704Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1692,"ScoreAtt":643,"RankDef":1977,"ScoreDef":5725,"RankSup":0,"ScoreSup":0,"RankTotal":2088,"ScoreTotal":6368,"ID":849062546,"Name":"karlitos MMz","NumVillages":1,"Points":4432,"Rank":1378,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849062546","BestRank":1378,"BestRankAt":"2023-02-15T06:22:53.55704Z","MostPoints":4432,"MostPointsAt":"2023-02-15T06:22:53.55704Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55704Z","LastActivityAt":"2023-02-15T06:22:53.55704Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849062706,"Name":"Pysia.","NumVillages":1,"Points":26,"Rank":2809,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849062706","BestRank":2809,"BestRankAt":"2023-02-15T06:22:53.55704Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557041Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55704Z","LastActivityAt":"2023-02-15T06:22:53.557041Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1140,"ScoreAtt":14829,"RankDef":1616,"ScoreDef":24527,"RankSup":855,"ScoreSup":16256,"RankTotal":1580,"ScoreTotal":55612,"ID":849062920,"Name":"TheJarzabek","NumVillages":2,"Points":5852,"Rank":1279,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849062920","BestRank":1279,"BestRankAt":"2023-02-15T06:22:53.557041Z","MostPoints":5852,"MostPointsAt":"2023-02-15T06:22:53.557041Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557041Z","LastActivityAt":"2023-02-15T06:22:53.557041Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1135,"ScoreAtt":15329,"RankDef":166,"ScoreDef":2261037,"RankSup":755,"ScoreSup":34520,"RankTotal":367,"ScoreTotal":2310886,"ID":849063605,"Name":"Mescalero","NumVillages":1,"Points":291,"Rank":2185,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063605","BestRank":2185,"BestRankAt":"2023-02-15T06:22:53.557041Z","MostPoints":291,"MostPointsAt":"2023-02-15T06:22:53.557042Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557042Z","LastActivityAt":"2023-02-15T06:22:53.557042Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":954,"ScoreAtt":38346,"RankDef":1244,"ScoreDef":64158,"RankSup":785,"ScoreSup":28429,"RankTotal":1294,"ScoreTotal":130933,"ID":849063793,"Name":"Nowak2508","NumVillages":10,"Points":36260,"Rank":765,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063793","BestRank":765,"BestRankAt":"2023-02-15T06:22:53.557042Z","MostPoints":36260,"MostPointsAt":"2023-02-15T06:22:53.557042Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.557042Z","LastActivityAt":"2023-02-15T06:22:53.557042Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":396,"ScoreAtt":593766,"RankDef":342,"ScoreDef":910548,"RankSup":474,"ScoreSup":193661,"RankTotal":460,"ScoreTotal":1697975,"ID":849063849,"Name":"specanz","NumVillages":80,"Points":614254,"Rank":230,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063849","BestRank":230,"BestRankAt":"2023-02-15T06:22:53.557043Z","MostPoints":614254,"MostPointsAt":"2023-02-15T06:22:53.557043Z","MostVillages":80,"MostVillagesAt":"2023-02-15T06:22:53.557043Z","LastActivityAt":"2023-02-15T06:22:53.557043Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":617,"ScoreAtt":191808,"RankDef":784,"ScoreDef":221569,"RankSup":1030,"ScoreSup":3650,"RankTotal":899,"ScoreTotal":417027,"ID":849063932,"Name":"Electriccc","NumVillages":0,"Points":0,"Rank":3048,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063932","BestRank":3048,"BestRankAt":"2023-02-15T06:22:53.557043Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557043Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557043Z","LastActivityAt":"2023-02-15T06:22:53.557043Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1581,"ScoreAtt":1487,"RankDef":2329,"ScoreDef":170,"RankSup":0,"ScoreSup":0,"RankTotal":2271,"ScoreTotal":1657,"ID":849064084,"Name":"bolek13241","NumVillages":1,"Points":2648,"Rank":1574,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064084","BestRank":1574,"BestRankAt":"2023-02-15T06:22:53.557044Z","MostPoints":2648,"MostPointsAt":"2023-02-15T06:22:53.557044Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557044Z","LastActivityAt":"2023-02-15T06:22:53.557044Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1571,"ScoreAtt":1609,"RankDef":1438,"ScoreDef":39006,"RankSup":1262,"ScoreSup":91,"RankTotal":1678,"ScoreTotal":40706,"ID":849064087,"Name":"Myszka21","NumVillages":1,"Points":401,"Rank":2087,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064087","BestRank":2087,"BestRankAt":"2023-02-15T06:22:53.557044Z","MostPoints":401,"MostPointsAt":"2023-02-15T06:22:53.557044Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557044Z","LastActivityAt":"2023-02-15T06:22:53.557045Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":559,"ScoreAtt":262110,"RankDef":292,"ScoreDef":1219468,"RankSup":163,"ScoreSup":1344938,"RankTotal":307,"ScoreTotal":2826516,"ID":849064614,"Name":"rzecznianin","NumVillages":96,"Points":537838,"Rank":255,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064614","BestRank":255,"BestRankAt":"2023-02-15T06:22:53.557045Z","MostPoints":537838,"MostPointsAt":"2023-02-15T06:22:53.557045Z","MostVillages":96,"MostVillagesAt":"2023-02-15T06:22:53.557045Z","LastActivityAt":"2023-02-15T06:22:53.557045Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":972,"ScoreDef":133533,"RankSup":0,"ScoreSup":0,"RankTotal":1288,"ScoreTotal":133533,"ID":849064715,"Name":"Forwalls","NumVillages":1,"Points":126,"Rank":2433,"TribeID":689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064715","BestRank":2433,"BestRankAt":"2023-02-15T06:22:53.557045Z","MostPoints":126,"MostPointsAt":"2023-02-15T06:22:53.557046Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557045Z","LastActivityAt":"2023-02-15T06:22:53.557046Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":43,"ScoreAtt":5482618,"RankDef":37,"ScoreDef":8958689,"RankSup":11,"ScoreSup":6767483,"RankTotal":25,"ScoreTotal":21208790,"ID":849064752,"Name":"Soliz","NumVillages":360,"Points":2879539,"Rank":18,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064752","BestRank":18,"BestRankAt":"2023-02-15T06:22:53.557046Z","MostPoints":2879539,"MostPointsAt":"2023-02-15T06:22:53.557046Z","MostVillages":360,"MostVillagesAt":"2023-02-15T06:22:53.557046Z","LastActivityAt":"2023-02-15T06:22:53.557046Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1508,"ScoreDef":33162,"RankSup":0,"ScoreSup":0,"RankTotal":1745,"ScoreTotal":33162,"ID":849065566,"Name":"warmonger","NumVillages":1,"Points":43,"Rank":2604,"TribeID":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065566","BestRank":2604,"BestRankAt":"2023-02-15T06:22:53.557046Z","MostPoints":43,"MostPointsAt":"2023-02-15T06:22:53.557047Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557047Z","LastActivityAt":"2023-02-15T06:22:53.557047Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1522,"ScoreAtt":2152,"RankDef":2112,"ScoreDef":2517,"RankSup":0,"ScoreSup":0,"RankTotal":2143,"ScoreTotal":4669,"ID":849065606,"Name":"AriaVikings","NumVillages":1,"Points":1109,"Rank":1834,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065606","BestRank":1834,"BestRankAt":"2023-02-15T06:22:53.557047Z","MostPoints":1109,"MostPointsAt":"2023-02-15T06:22:53.557047Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557047Z","LastActivityAt":"2023-02-15T06:22:53.557047Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":394,"ScoreAtt":598562,"RankDef":1643,"ScoreDef":22864,"RankSup":353,"ScoreSup":405809,"RankTotal":610,"ScoreTotal":1027235,"ID":849065697,"Name":"aJMers","NumVillages":1,"Points":3533,"Rank":1458,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065697","BestRank":1458,"BestRankAt":"2023-02-15T06:22:53.557048Z","MostPoints":3533,"MostPointsAt":"2023-02-15T06:22:53.557048Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557048Z","LastActivityAt":"2023-02-15T06:22:53.557048Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849065742,"Name":"Marczelok5","NumVillages":1,"Points":270,"Rank":2203,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065742","BestRank":2203,"BestRankAt":"2023-02-15T06:22:53.557048Z","MostPoints":270,"MostPointsAt":"2023-02-15T06:22:53.557048Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557048Z","LastActivityAt":"2023-02-15T06:22:53.557048Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557353Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2052,"ScoreDef":3750,"RankSup":0,"ScoreSup":0,"RankTotal":2182,"ScoreTotal":3750,"ID":849065829,"Name":"Sir Kmicic","NumVillages":1,"Points":202,"Rank":2294,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065829","BestRank":2294,"BestRankAt":"2023-02-15T06:22:53.557049Z","MostPoints":202,"MostPointsAt":"2023-02-15T06:22:53.557049Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557049Z","LastActivityAt":"2023-02-15T06:22:53.557049Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557353Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1976,"ScoreAtt":8,"RankDef":2307,"ScoreDef":252,"RankSup":0,"ScoreSup":0,"RankTotal":2390,"ScoreTotal":260,"ID":849066035,"Name":"lukasz111","NumVillages":1,"Points":237,"Rank":2241,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066035","BestRank":2241,"BestRankAt":"2023-02-15T06:22:53.557049Z","MostPoints":237,"MostPointsAt":"2023-02-15T06:22:53.557049Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557049Z","LastActivityAt":"2023-02-15T06:22:53.557049Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557353Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":921,"ScoreAtt":46653,"RankDef":1210,"ScoreDef":70970,"RankSup":1303,"ScoreSup":23,"RankTotal":1333,"ScoreTotal":117646,"ID":849066044,"Name":"Rzezimieszek96","NumVillages":6,"Points":49984,"Rank":693,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066044","BestRank":693,"BestRankAt":"2023-02-15T06:22:53.55705Z","MostPoints":49984,"MostPointsAt":"2023-02-15T06:22:53.55705Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.55705Z","LastActivityAt":"2023-02-15T06:22:53.55705Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557353Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":924,"ScoreAtt":45397,"RankDef":670,"ScoreDef":296816,"RankSup":466,"ScoreSup":202024,"RankTotal":808,"ScoreTotal":544237,"ID":849066125,"Name":"Ć»ulionerka","NumVillages":1,"Points":254,"Rank":2219,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066125","BestRank":2219,"BestRankAt":"2023-02-15T06:22:53.55705Z","MostPoints":254,"MostPointsAt":"2023-02-15T06:22:53.55705Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55705Z","LastActivityAt":"2023-02-15T06:22:53.557051Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1651,"ScoreAtt":835,"RankDef":785,"ScoreDef":221074,"RankSup":1158,"ScoreSup":907,"RankTotal":1106,"ScoreTotal":222816,"ID":849066618,"Name":"Piorunek1996","NumVillages":1,"Points":1279,"Rank":1794,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066618","BestRank":1794,"BestRankAt":"2023-02-15T06:22:53.557051Z","MostPoints":1279,"MostPointsAt":"2023-02-15T06:22:53.557051Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557051Z","LastActivityAt":"2023-02-15T06:22:53.557051Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1722,"ScoreAtt":470,"RankDef":2417,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":2355,"ScoreTotal":484,"ID":849066808,"Name":"Argo733","NumVillages":1,"Points":618,"Rank":1984,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066808","BestRank":1984,"BestRankAt":"2023-02-15T06:22:53.557051Z","MostPoints":618,"MostPointsAt":"2023-02-15T06:22:53.557052Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557051Z","LastActivityAt":"2023-02-15T06:22:53.557052Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":722,"ScoreAtt":115163,"RankDef":1988,"ScoreDef":5385,"RankSup":249,"ScoreSup":709472,"RankTotal":676,"ScoreTotal":830020,"ID":849066849,"Name":"Bilonhg","NumVillages":25,"Points":136890,"Rank":482,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066849","BestRank":482,"BestRankAt":"2023-02-15T06:22:53.557052Z","MostPoints":136890,"MostPointsAt":"2023-02-15T06:22:53.557052Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.557052Z","LastActivityAt":"2023-02-15T06:22:53.557052Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1400,"ScoreDef":44002,"RankSup":0,"ScoreSup":0,"RankTotal":1653,"ScoreTotal":44002,"ID":849067079,"Name":"AreYouHorny?","NumVillages":1,"Points":3620,"Rank":1449,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849067079","BestRank":1449,"BestRankAt":"2023-02-15T06:22:53.557052Z","MostPoints":3620,"MostPointsAt":"2023-02-15T06:22:53.557053Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557053Z","LastActivityAt":"2023-02-15T06:22:53.557053Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1261,"ScoreAtt":7575,"RankDef":1783,"ScoreDef":13485,"RankSup":0,"ScoreSup":0,"RankTotal":1858,"ScoreTotal":21060,"ID":849067192,"Name":"borys1695","NumVillages":6,"Points":26064,"Rank":847,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849067192","BestRank":847,"BestRankAt":"2023-02-15T06:22:53.557053Z","MostPoints":26064,"MostPointsAt":"2023-02-15T06:22:53.557053Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.557053Z","LastActivityAt":"2023-02-15T06:22:53.557053Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557355Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1000,"ScoreDef":124790,"RankSup":0,"ScoreSup":0,"RankTotal":1313,"ScoreTotal":124790,"ID":849067216,"Name":"Gum23","NumVillages":1,"Points":3982,"Rank":1412,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849067216","BestRank":1412,"BestRankAt":"2023-02-15T06:22:53.557054Z","MostPoints":3982,"MostPointsAt":"2023-02-15T06:22:53.557054Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557054Z","LastActivityAt":"2023-02-15T06:22:53.557054Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557355Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1275,"ScoreAtt":7142,"RankDef":286,"ScoreDef":1252357,"RankSup":675,"ScoreSup":59430,"RankTotal":533,"ScoreTotal":1318929,"ID":849068108,"Name":"Haszka13","NumVillages":9,"Points":37865,"Rank":753,"TribeID":822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849068108","BestRank":753,"BestRankAt":"2023-02-15T06:22:53.557054Z","MostPoints":37865,"MostPointsAt":"2023-02-15T06:22:53.557054Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.557054Z","LastActivityAt":"2023-02-15T06:22:53.557054Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557355Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849068436,"Name":"Kubaa333","NumVillages":1,"Points":639,"Rank":1973,"TribeID":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849068436","BestRank":1973,"BestRankAt":"2023-02-15T06:22:53.557055Z","MostPoints":639,"MostPointsAt":"2023-02-15T06:22:53.557055Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557055Z","LastActivityAt":"2023-02-15T06:22:53.557055Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557355Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":570,"ScoreAtt":250026,"RankDef":1011,"ScoreDef":123016,"RankSup":586,"ScoreSup":104350,"RankTotal":858,"ScoreTotal":477392,"ID":849068662,"Name":"ZƂylos","NumVillages":20,"Points":134990,"Rank":485,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849068662","BestRank":485,"BestRankAt":"2023-02-15T06:22:53.557055Z","MostPoints":134990,"MostPointsAt":"2023-02-15T06:22:53.557055Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.557055Z","LastActivityAt":"2023-02-15T06:22:53.557056Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557356Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1525,"ScoreAtt":2129,"RankDef":2080,"ScoreDef":3203,"RankSup":0,"ScoreSup":0,"RankTotal":2119,"ScoreTotal":5332,"ID":849069010,"Name":"Jackob666","NumVillages":1,"Points":270,"Rank":2204,"TribeID":1656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849069010","BestRank":2204,"BestRankAt":"2023-02-15T06:22:53.557056Z","MostPoints":270,"MostPointsAt":"2023-02-15T06:22:53.557056Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557056Z","LastActivityAt":"2023-02-15T06:22:53.557056Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557356Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":469,"ScoreAtt":415790,"RankDef":721,"ScoreDef":261800,"RankSup":765,"ScoreSup":33067,"RankTotal":725,"ScoreTotal":710657,"ID":849069022,"Name":"Jesse1910","NumVillages":0,"Points":0,"Rank":3049,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849069022","BestRank":3049,"BestRankAt":"2023-02-15T06:22:53.557056Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557057Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557056Z","LastActivityAt":"2023-02-15T06:22:53.557057Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557356Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1626,"ScoreAtt":1037,"RankDef":1567,"ScoreDef":28548,"RankSup":1406,"ScoreSup":1,"RankTotal":1773,"ScoreTotal":29586,"ID":849070220,"Name":"agjao","NumVillages":1,"Points":874,"Rank":1894,"TribeID":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070220","BestRank":1894,"BestRankAt":"2023-02-15T06:22:53.557057Z","MostPoints":874,"MostPointsAt":"2023-02-15T06:22:53.557057Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557057Z","LastActivityAt":"2023-02-15T06:22:53.557057Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557356Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":966,"ScoreAtt":36239,"RankDef":290,"ScoreDef":1233963,"RankSup":532,"ScoreSup":142162,"RankTotal":513,"ScoreTotal":1412364,"ID":849070335,"Name":"MaRm13","NumVillages":3,"Points":27102,"Rank":836,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070335","BestRank":836,"BestRankAt":"2023-02-15T06:22:53.557057Z","MostPoints":27102,"MostPointsAt":"2023-02-15T06:22:53.557058Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557058Z","LastActivityAt":"2023-02-15T06:22:53.557058Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557357Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":304,"ScoreAtt":907137,"RankDef":1895,"ScoreDef":8146,"RankSup":720,"ScoreSup":42592,"RankTotal":638,"ScoreTotal":957875,"ID":849070464,"Name":"Thao0","NumVillages":17,"Points":137804,"Rank":479,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070464","BestRank":479,"BestRankAt":"2023-02-15T06:22:53.557058Z","MostPoints":137804,"MostPointsAt":"2023-02-15T06:22:53.557058Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.557058Z","LastActivityAt":"2023-02-15T06:22:53.557058Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557357Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1504,"ScoreAtt":2315,"RankDef":1935,"ScoreDef":6769,"RankSup":0,"ScoreSup":0,"RankTotal":2018,"ScoreTotal":9084,"ID":849070736,"Name":"GoƂabek","NumVillages":1,"Points":5870,"Rank":1278,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070736","BestRank":1278,"BestRankAt":"2023-02-15T06:22:53.557059Z","MostPoints":5870,"MostPointsAt":"2023-02-15T06:22:53.557059Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557059Z","LastActivityAt":"2023-02-15T06:22:53.557059Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557357Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1559,"ScoreDef":28981,"RankSup":0,"ScoreSup":0,"RankTotal":1782,"ScoreTotal":28981,"ID":849070812,"Name":"marko91","NumVillages":1,"Points":1301,"Rank":1789,"TribeID":1783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070812","BestRank":1789,"BestRankAt":"2023-02-15T06:22:53.557059Z","MostPoints":1301,"MostPointsAt":"2023-02-15T06:22:53.557059Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557059Z","LastActivityAt":"2023-02-15T06:22:53.557059Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557357Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":271,"ScoreAtt":1041914,"RankDef":942,"ScoreDef":146263,"RankSup":392,"ScoreSup":325981,"RankTotal":492,"ScoreTotal":1514158,"ID":849070946,"Name":"Diduƛ97","NumVillages":81,"Points":634445,"Rank":225,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070946","BestRank":225,"BestRankAt":"2023-02-15T06:22:53.55706Z","MostPoints":634445,"MostPointsAt":"2023-02-15T06:22:53.55706Z","MostVillages":81,"MostVillagesAt":"2023-02-15T06:22:53.55706Z","LastActivityAt":"2023-02-15T06:22:53.55706Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557357Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":431,"ScoreAtt":482238,"RankDef":586,"ScoreDef":392443,"RankSup":534,"ScoreSup":141730,"RankTotal":613,"ScoreTotal":1016411,"ID":849071545,"Name":"timonuser","NumVillages":0,"Points":0,"Rank":3050,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849071545","BestRank":3050,"BestRankAt":"2023-02-15T06:22:53.55706Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.55706Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.55706Z","LastActivityAt":"2023-02-15T06:22:53.55706Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849071883,"Name":"game777","NumVillages":1,"Points":94,"Rank":2498,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849071883","BestRank":2498,"BestRankAt":"2023-02-15T06:22:53.557061Z","MostPoints":94,"MostPointsAt":"2023-02-15T06:22:53.557061Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557061Z","LastActivityAt":"2023-02-15T06:22:53.557061Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849072703,"Name":"83Krzysiek83","NumVillages":1,"Points":869,"Rank":1897,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072703","BestRank":1897,"BestRankAt":"2023-02-15T06:22:53.557061Z","MostPoints":869,"MostPointsAt":"2023-02-15T06:22:53.557061Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557061Z","LastActivityAt":"2023-02-15T06:22:53.557062Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":943,"ScoreAtt":41751,"RankDef":1956,"ScoreDef":6224,"RankSup":0,"ScoreSup":0,"RankTotal":1630,"ScoreTotal":47975,"ID":849072846,"Name":"Vallias","NumVillages":0,"Points":0,"Rank":3051,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072846","BestRank":3051,"BestRankAt":"2023-02-15T06:22:53.557062Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557062Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557062Z","LastActivityAt":"2023-02-15T06:22:53.557062Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849072855,"Name":"Luu123","NumVillages":1,"Points":93,"Rank":2503,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072855","BestRank":2503,"BestRankAt":"2023-02-15T06:22:53.557062Z","MostPoints":93,"MostPointsAt":"2023-02-15T06:22:53.557063Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557062Z","LastActivityAt":"2023-02-15T06:22:53.557063Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557359Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1468,"ScoreAtt":2849,"RankDef":921,"ScoreDef":153960,"RankSup":1229,"ScoreSup":237,"RankTotal":1237,"ScoreTotal":157046,"ID":849072873,"Name":"Nika1234","NumVillages":3,"Points":24687,"Rank":863,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072873","BestRank":863,"BestRankAt":"2023-02-15T06:22:53.557063Z","MostPoints":24687,"MostPointsAt":"2023-02-15T06:22:53.557063Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557063Z","LastActivityAt":"2023-02-15T06:22:53.557063Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557359Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2501,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2571,"ScoreTotal":2,"ID":849072919,"Name":"miniorek","NumVillages":1,"Points":26,"Rank":2810,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072919","BestRank":2810,"BestRankAt":"2023-02-15T06:22:53.557063Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557064Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557064Z","LastActivityAt":"2023-02-15T06:22:53.557064Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557359Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1241,"ScoreAtt":8544,"RankDef":625,"ScoreDef":350774,"RankSup":751,"ScoreSup":35218,"RankTotal":922,"ScoreTotal":394536,"ID":849073156,"Name":"bestleevatican","NumVillages":1,"Points":1428,"Rank":1763,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073156","BestRank":1763,"BestRankAt":"2023-02-15T06:22:53.557064Z","MostPoints":1428,"MostPointsAt":"2023-02-15T06:22:53.557064Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557064Z","LastActivityAt":"2023-02-15T06:22:53.557064Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557359Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1825,"ScoreAtt":151,"RankDef":1820,"ScoreDef":11334,"RankSup":0,"ScoreSup":0,"RankTotal":1980,"ScoreTotal":11485,"ID":849073314,"Name":"DANIEL48","NumVillages":1,"Points":1192,"Rank":1809,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073314","BestRank":1809,"BestRankAt":"2023-02-15T06:22:53.557065Z","MostPoints":1192,"MostPointsAt":"2023-02-15T06:22:53.557065Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557065Z","LastActivityAt":"2023-02-15T06:22:53.557065Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849073486,"Name":"kristoferix","NumVillages":1,"Points":26,"Rank":2811,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073486","BestRank":2811,"BestRankAt":"2023-02-15T06:22:53.557065Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557065Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557065Z","LastActivityAt":"2023-02-15T06:22:53.557065Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849073939,"Name":"Shadow39","NumVillages":1,"Points":1208,"Rank":1807,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073939","BestRank":1807,"BestRankAt":"2023-02-15T06:22:53.557066Z","MostPoints":1208,"MostPointsAt":"2023-02-15T06:22:53.557066Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557066Z","LastActivityAt":"2023-02-15T06:22:53.557066Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1878,"ScoreAtt":86,"RankDef":2047,"ScoreDef":3869,"RankSup":0,"ScoreSup":0,"RankTotal":2173,"ScoreTotal":3955,"ID":849074508,"Name":"ZimoweMajtki","NumVillages":1,"Points":2727,"Rank":1562,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849074508","BestRank":1562,"BestRankAt":"2023-02-15T06:22:53.557066Z","MostPoints":2727,"MostPointsAt":"2023-02-15T06:22:53.557066Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557066Z","LastActivityAt":"2023-02-15T06:22:53.557066Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1390,"ScoreAtt":4371,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2158,"ScoreTotal":4371,"ID":849075298,"Name":"Gosia99","NumVillages":2,"Points":5823,"Rank":1283,"TribeID":1721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075298","BestRank":1283,"BestRankAt":"2023-02-15T06:22:53.557067Z","MostPoints":5823,"MostPointsAt":"2023-02-15T06:22:53.557067Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557067Z","LastActivityAt":"2023-02-15T06:22:53.557067Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1262,"ScoreDef":61308,"RankSup":0,"ScoreSup":0,"RankTotal":1546,"ScoreTotal":61308,"ID":849075442,"Name":"isku","NumVillages":0,"Points":0,"Rank":3052,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075442","BestRank":3052,"BestRankAt":"2023-02-15T06:22:53.557067Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557068Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557067Z","LastActivityAt":"2023-02-15T06:22:53.557068Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557361Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849075744,"Name":"Damian0704","NumVillages":1,"Points":1976,"Rank":1671,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075744","BestRank":1671,"BestRankAt":"2023-02-15T06:22:53.557068Z","MostPoints":1976,"MostPointsAt":"2023-02-15T06:22:53.557068Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557068Z","LastActivityAt":"2023-02-15T06:22:53.557068Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557361Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1215,"ScoreAtt":10096,"RankDef":817,"ScoreDef":199864,"RankSup":870,"ScoreSup":14981,"RankTotal":1100,"ScoreTotal":224941,"ID":849075836,"Name":"Buku27","NumVillages":14,"Points":104218,"Rank":530,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075836","BestRank":530,"BestRankAt":"2023-02-15T06:22:53.557068Z","MostPoints":104218,"MostPointsAt":"2023-02-15T06:22:53.557069Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.557069Z","LastActivityAt":"2023-02-15T06:22:53.557069Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557361Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1520,"ScoreDef":31828,"RankSup":0,"ScoreSup":0,"RankTotal":1757,"ScoreTotal":31828,"ID":849076187,"Name":"HappyTheFriends","NumVillages":0,"Points":0,"Rank":3053,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076187","BestRank":3053,"BestRankAt":"2023-02-15T06:22:53.557069Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557069Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557069Z","LastActivityAt":"2023-02-15T06:22:53.557069Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557361Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":758,"ScoreAtt":97163,"RankDef":148,"ScoreDef":2598655,"RankSup":692,"ScoreSup":52913,"RankTotal":317,"ScoreTotal":2748731,"ID":849076515,"Name":"kamilos4444","NumVillages":6,"Points":22431,"Rank":887,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076515","BestRank":887,"BestRankAt":"2023-02-15T06:22:53.55707Z","MostPoints":22431,"MostPointsAt":"2023-02-15T06:22:53.55707Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.55707Z","LastActivityAt":"2023-02-15T06:22:53.55707Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1029,"ScoreAtt":26756,"RankDef":676,"ScoreDef":290430,"RankSup":919,"ScoreSup":10198,"RankTotal":982,"ScoreTotal":327384,"ID":849076678,"Name":"EWKA82","NumVillages":1,"Points":285,"Rank":2191,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076678","BestRank":2191,"BestRankAt":"2023-02-15T06:22:53.55707Z","MostPoints":285,"MostPointsAt":"2023-02-15T06:22:53.55707Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55707Z","LastActivityAt":"2023-02-15T06:22:53.55707Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":490,"ScoreAtt":376346,"RankDef":177,"ScoreDef":2080263,"RankSup":580,"ScoreSup":106920,"RankTotal":340,"ScoreTotal":2563529,"ID":849076810,"Name":"Dziobak6658","NumVillages":11,"Points":48260,"Rank":702,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076810","BestRank":702,"BestRankAt":"2023-02-15T06:22:53.557071Z","MostPoints":48260,"MostPointsAt":"2023-02-15T06:22:53.557071Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.557071Z","LastActivityAt":"2023-02-15T06:22:53.557071Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1857,"ScoreAtt":116,"RankDef":2502,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2433,"ScoreTotal":118,"ID":849076953,"Name":"heweltjakub664","NumVillages":1,"Points":1005,"Rank":1864,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076953","BestRank":1864,"BestRankAt":"2023-02-15T06:22:53.557071Z","MostPoints":1005,"MostPointsAt":"2023-02-15T06:22:53.557071Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557071Z","LastActivityAt":"2023-02-15T06:22:53.557071Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":808,"ScoreAtt":77228,"RankDef":1962,"ScoreDef":5970,"RankSup":0,"ScoreSup":0,"RankTotal":1455,"ScoreTotal":83198,"ID":849077481,"Name":"dedej","NumVillages":0,"Points":0,"Rank":3054,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849077481","BestRank":3054,"BestRankAt":"2023-02-15T06:22:53.557072Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557072Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557072Z","LastActivityAt":"2023-02-15T06:22:53.557072Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1176,"ScoreAtt":12045,"RankDef":1199,"ScoreDef":73094,"RankSup":1097,"ScoreSup":2009,"RankTotal":1443,"ScoreTotal":87148,"ID":849078086,"Name":"123Misiek","NumVillages":1,"Points":5771,"Rank":1286,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078086","BestRank":1286,"BestRankAt":"2023-02-15T06:22:53.557072Z","MostPoints":5771,"MostPointsAt":"2023-02-15T06:22:53.557072Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557072Z","LastActivityAt":"2023-02-15T06:22:53.557073Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849078119,"Name":"lukasz45567","NumVillages":1,"Points":373,"Rank":2109,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078119","BestRank":2109,"BestRankAt":"2023-02-15T06:22:53.557073Z","MostPoints":373,"MostPointsAt":"2023-02-15T06:22:53.557073Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557073Z","LastActivityAt":"2023-02-15T06:22:53.557073Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":619,"ScoreAtt":191212,"RankDef":387,"ScoreDef":788677,"RankSup":484,"ScoreSup":187236,"RankTotal":571,"ScoreTotal":1167125,"ID":849078297,"Name":"Trenger","NumVillages":14,"Points":83062,"Rank":578,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078297","BestRank":578,"BestRankAt":"2023-02-15T06:22:53.557073Z","MostPoints":83062,"MostPointsAt":"2023-02-15T06:22:53.557074Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.557073Z","LastActivityAt":"2023-02-15T06:22:53.557074Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1118,"ScoreAtt":16927,"RankDef":145,"ScoreDef":2654505,"RankSup":299,"ScoreSup":529115,"RankTotal":274,"ScoreTotal":3200547,"ID":849078498,"Name":"UUffoo","NumVillages":1,"Points":5933,"Rank":1276,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078498","BestRank":1276,"BestRankAt":"2023-02-15T06:22:53.557074Z","MostPoints":5933,"MostPointsAt":"2023-02-15T06:22:53.557074Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557074Z","LastActivityAt":"2023-02-15T06:22:53.557074Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1173,"ScoreAtt":12194,"RankDef":2036,"ScoreDef":4031,"RankSup":0,"ScoreSup":0,"RankTotal":1920,"ScoreTotal":16225,"ID":849078942,"Name":"Boski222","NumVillages":2,"Points":3602,"Rank":1452,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078942","BestRank":1452,"BestRankAt":"2023-02-15T06:22:53.557075Z","MostPoints":3602,"MostPointsAt":"2023-02-15T06:22:53.557075Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557075Z","LastActivityAt":"2023-02-15T06:22:53.557075Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557364Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2328,"ScoreDef":171,"RankSup":0,"ScoreSup":0,"RankTotal":2410,"ScoreTotal":171,"ID":849079977,"Name":"Mateuszek0330","NumVillages":1,"Points":192,"Rank":2317,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849079977","BestRank":2317,"BestRankAt":"2023-02-15T06:22:53.557075Z","MostPoints":192,"MostPointsAt":"2023-02-15T06:22:53.557075Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557075Z","LastActivityAt":"2023-02-15T06:22:53.557075Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557364Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":926,"ScoreAtt":44867,"RankDef":451,"ScoreDef":613508,"RankSup":687,"ScoreSup":55361,"RankTotal":722,"ScoreTotal":713736,"ID":849080011,"Name":"IAmChaozu","NumVillages":4,"Points":13053,"Rank":1027,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080011","BestRank":1027,"BestRankAt":"2023-02-15T06:22:53.557076Z","MostPoints":13053,"MostPointsAt":"2023-02-15T06:22:53.557076Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.557076Z","LastActivityAt":"2023-02-15T06:22:53.557076Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557364Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1756,"ScoreAtt":312,"RankDef":1337,"ScoreDef":53486,"RankSup":0,"ScoreSup":0,"RankTotal":1593,"ScoreTotal":53798,"ID":849080118,"Name":"fedziu675","NumVillages":0,"Points":0,"Rank":3055,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080118","BestRank":3055,"BestRankAt":"2023-02-15T06:22:53.557076Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557076Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557076Z","LastActivityAt":"2023-02-15T06:22:53.557076Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557364Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1868,"ScoreAtt":99,"RankDef":1756,"ScoreDef":15247,"RankSup":0,"ScoreSup":0,"RankTotal":1930,"ScoreTotal":15346,"ID":849080197,"Name":"Vectar","NumVillages":1,"Points":2606,"Rank":1576,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080197","BestRank":1576,"BestRankAt":"2023-02-15T06:22:53.557077Z","MostPoints":2606,"MostPointsAt":"2023-02-15T06:22:53.557077Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557077Z","LastActivityAt":"2023-02-15T06:22:53.557077Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557364Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2029,"ScoreDef":4257,"RankSup":0,"ScoreSup":0,"RankTotal":2161,"ScoreTotal":4257,"ID":849080260,"Name":"Apfel","NumVillages":1,"Points":1776,"Rank":1704,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080260","BestRank":1704,"BestRankAt":"2023-02-15T06:22:53.557077Z","MostPoints":1776,"MostPointsAt":"2023-02-15T06:22:53.557077Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557077Z","LastActivityAt":"2023-02-15T06:22:53.557078Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557365Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":447,"ScoreAtt":454858,"RankDef":1810,"ScoreDef":11760,"RankSup":773,"ScoreSup":31415,"RankTotal":845,"ScoreTotal":498033,"ID":849080702,"Name":"Zorro","NumVillages":27,"Points":242983,"Rank":384,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080702","BestRank":384,"BestRankAt":"2023-02-15T06:22:53.557078Z","MostPoints":242983,"MostPointsAt":"2023-02-15T06:22:53.557078Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.557078Z","LastActivityAt":"2023-02-15T06:22:53.557078Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557365Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1427,"ScoreDef":40337,"RankSup":0,"ScoreSup":0,"RankTotal":1682,"ScoreTotal":40337,"ID":849081284,"Name":"mlodyfacetkosmita","NumVillages":1,"Points":41,"Rank":2609,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849081284","BestRank":2609,"BestRankAt":"2023-02-15T06:22:53.557078Z","MostPoints":41,"MostPointsAt":"2023-02-15T06:22:53.557079Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557078Z","LastActivityAt":"2023-02-15T06:22:53.557079Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557365Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1347,"ScoreDef":51845,"RankSup":1402,"ScoreSup":2,"RankTotal":1602,"ScoreTotal":51847,"ID":849081641,"Name":"MarcinMazury","NumVillages":1,"Points":256,"Rank":2216,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849081641","BestRank":2216,"BestRankAt":"2023-02-15T06:22:53.557079Z","MostPoints":256,"MostPointsAt":"2023-02-15T06:22:53.557079Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557079Z","LastActivityAt":"2023-02-15T06:22:53.557079Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557365Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2382,"ScoreDef":30,"RankSup":0,"ScoreSup":0,"RankTotal":2484,"ScoreTotal":30,"ID":849081869,"Name":"3637","NumVillages":1,"Points":12021,"Rank":1042,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849081869","BestRank":1042,"BestRankAt":"2023-02-15T06:22:53.557079Z","MostPoints":12021,"MostPointsAt":"2023-02-15T06:22:53.55708Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55708Z","LastActivityAt":"2023-02-15T06:22:53.55708Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557366Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1240,"ScoreDef":65817,"RankSup":853,"ScoreSup":16642,"RankTotal":1456,"ScoreTotal":82459,"ID":849082154,"Name":"Cipendeys","NumVillages":4,"Points":17913,"Rank":953,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082154","BestRank":953,"BestRankAt":"2023-02-15T06:22:53.55708Z","MostPoints":17913,"MostPointsAt":"2023-02-15T06:22:53.55708Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.55708Z","LastActivityAt":"2023-02-15T06:22:53.55708Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557366Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1476,"ScoreAtt":2744,"RankDef":1951,"ScoreDef":6373,"RankSup":1328,"ScoreSup":13,"RankTotal":2015,"ScoreTotal":9130,"ID":849082580,"Name":"nappystarr","NumVillages":1,"Points":3169,"Rank":1508,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082580","BestRank":1508,"BestRankAt":"2023-02-15T06:22:53.557081Z","MostPoints":3169,"MostPointsAt":"2023-02-15T06:22:53.557081Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557081Z","LastActivityAt":"2023-02-15T06:22:53.557081Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557366Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":418,"ScoreAtt":530007,"RankDef":1306,"ScoreDef":56580,"RankSup":710,"ScoreSup":45349,"RankTotal":764,"ScoreTotal":631936,"ID":849082839,"Name":"Minikod","NumVillages":1,"Points":26,"Rank":2812,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082839","BestRank":2812,"BestRankAt":"2023-02-15T06:22:53.557081Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557081Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557081Z","LastActivityAt":"2023-02-15T06:22:53.557081Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557366Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":779,"ScoreAtt":88817,"RankDef":394,"ScoreDef":769329,"RankSup":1193,"ScoreSup":455,"RankTotal":666,"ScoreTotal":858601,"ID":849082848,"Name":"Jastrząb z NBP","NumVillages":1,"Points":4607,"Rank":1364,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082848","BestRank":1364,"BestRankAt":"2023-02-15T06:22:53.557082Z","MostPoints":4607,"MostPointsAt":"2023-02-15T06:22:53.557082Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557082Z","LastActivityAt":"2023-02-15T06:22:53.557082Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2258,"ScoreDef":549,"RankSup":0,"ScoreSup":0,"RankTotal":2342,"ScoreTotal":549,"ID":849083293,"Name":"Vocare","NumVillages":1,"Points":3603,"Rank":1451,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083293","BestRank":1451,"BestRankAt":"2023-02-15T06:22:53.557082Z","MostPoints":3603,"MostPointsAt":"2023-02-15T06:22:53.557082Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557082Z","LastActivityAt":"2023-02-15T06:22:53.557082Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1266,"ScoreDef":61128,"RankSup":897,"ScoreSup":12218,"RankTotal":1486,"ScoreTotal":73346,"ID":849083294,"Name":"Merida.waleczna","NumVillages":2,"Points":7652,"Rank":1178,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083294","BestRank":1178,"BestRankAt":"2023-02-15T06:22:53.557083Z","MostPoints":7652,"MostPointsAt":"2023-02-15T06:22:53.557083Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557083Z","LastActivityAt":"2023-02-15T06:22:53.557083Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":766,"ScoreAtt":94636,"RankDef":274,"ScoreDef":1331512,"RankSup":348,"ScoreSup":412879,"RankTotal":430,"ScoreTotal":1839027,"ID":849083501,"Name":"SaturnV","NumVillages":9,"Points":64742,"Rank":636,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083501","BestRank":636,"BestRankAt":"2023-02-15T06:22:53.557083Z","MostPoints":64742,"MostPointsAt":"2023-02-15T06:22:53.557083Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.557083Z","LastActivityAt":"2023-02-15T06:22:53.557084Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2336,"ScoreDef":140,"RankSup":905,"ScoreSup":11421,"RankTotal":1977,"ScoreTotal":11561,"ID":849083534,"Name":"Nadav","NumVillages":1,"Points":2056,"Rank":1649,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083534","BestRank":1649,"BestRankAt":"2023-02-15T06:22:53.557084Z","MostPoints":2056,"MostPointsAt":"2023-02-15T06:22:53.557084Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557084Z","LastActivityAt":"2023-02-15T06:22:53.557084Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849083705,"Name":"Tomasz Stanek","NumVillages":1,"Points":26,"Rank":2813,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083705","BestRank":2813,"BestRankAt":"2023-02-15T06:22:53.557084Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557085Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557084Z","LastActivityAt":"2023-02-15T06:22:53.557085Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557368Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":862,"ScoreAtt":59710,"RankDef":446,"ScoreDef":630756,"RankSup":1008,"ScoreSup":4660,"RankTotal":735,"ScoreTotal":695126,"ID":849083725,"Name":"Koc Mƛciwy","NumVillages":1,"Points":129,"Rank":2422,"TribeID":19,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083725","BestRank":2422,"BestRankAt":"2023-02-15T06:22:53.557085Z","MostPoints":129,"MostPointsAt":"2023-02-15T06:22:53.557085Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557085Z","LastActivityAt":"2023-02-15T06:22:53.557085Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557368Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849083942,"Name":"Velsaniq","NumVillages":1,"Points":26,"Rank":2814,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083942","BestRank":2814,"BestRankAt":"2023-02-15T06:22:53.557085Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557086Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557086Z","LastActivityAt":"2023-02-15T06:22:53.557086Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557368Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":89,"ScoreAtt":3674270,"RankDef":753,"ScoreDef":239515,"RankSup":8,"ScoreSup":8965702,"RankTotal":61,"ScoreTotal":12879487,"ID":849084005,"Name":"Kuzyn Jacob","NumVillages":315,"Points":2303144,"Rank":34,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084005","BestRank":34,"BestRankAt":"2023-02-15T06:22:53.557086Z","MostPoints":2303144,"MostPointsAt":"2023-02-15T06:22:53.557086Z","MostVillages":315,"MostVillagesAt":"2023-02-15T06:22:53.557086Z","LastActivityAt":"2023-02-15T06:22:53.557086Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557368Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1678,"ScoreAtt":704,"RankDef":1656,"ScoreDef":21715,"RankSup":0,"ScoreSup":0,"RankTotal":1845,"ScoreTotal":22419,"ID":849084066,"Name":"RROO","NumVillages":2,"Points":10131,"Rank":1081,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084066","BestRank":1081,"BestRankAt":"2023-02-15T06:22:53.557087Z","MostPoints":10131,"MostPointsAt":"2023-02-15T06:22:53.557087Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557087Z","LastActivityAt":"2023-02-15T06:22:53.557087Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":964,"ScoreAtt":36512,"RankDef":880,"ScoreDef":174412,"RankSup":1287,"ScoreSup":41,"RankTotal":1122,"ScoreTotal":210965,"ID":849084474,"Name":"Atero","NumVillages":1,"Points":1402,"Rank":1766,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084474","BestRank":1766,"BestRankAt":"2023-02-15T06:22:53.557087Z","MostPoints":1402,"MostPointsAt":"2023-02-15T06:22:53.557087Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557087Z","LastActivityAt":"2023-02-15T06:22:53.557087Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849084699,"Name":"cinek1998","NumVillages":1,"Points":26,"Rank":2815,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084699","BestRank":2815,"BestRankAt":"2023-02-15T06:22:53.557088Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557088Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557088Z","LastActivityAt":"2023-02-15T06:22:53.557088Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":191,"ScoreAtt":1625465,"RankDef":82,"ScoreDef":4153987,"RankSup":82,"ScoreSup":2547348,"RankTotal":95,"ScoreTotal":8326800,"ID":849084740,"Name":"Fisherrwd","NumVillages":71,"Points":533245,"Rank":257,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084740","BestRank":257,"BestRankAt":"2023-02-15T06:22:53.557088Z","MostPoints":533245,"MostPointsAt":"2023-02-15T06:22:53.557088Z","MostVillages":71,"MostVillagesAt":"2023-02-15T06:22:53.557088Z","LastActivityAt":"2023-02-15T06:22:53.557089Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":286,"ScoreAtt":983368,"RankDef":74,"ScoreDef":4688957,"RankSup":330,"ScoreSup":446182,"RankTotal":145,"ScoreTotal":6118507,"ID":849084911,"Name":"Rewson","NumVillages":1,"Points":26,"Rank":2816,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084911","BestRank":2816,"BestRankAt":"2023-02-15T06:22:53.557089Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557089Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557089Z","LastActivityAt":"2023-02-15T06:22:53.557089Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1228,"ScoreAtt":9282,"RankDef":551,"ScoreDef":438105,"RankSup":976,"ScoreSup":6254,"RankTotal":872,"ScoreTotal":453641,"ID":849084920,"Name":"Magdalena82","NumVillages":2,"Points":6533,"Rank":1239,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084920","BestRank":1239,"BestRankAt":"2023-02-15T06:22:53.557089Z","MostPoints":6533,"MostPointsAt":"2023-02-15T06:22:53.55709Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557089Z","LastActivityAt":"2023-02-15T06:22:53.55709Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55737Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":54,"ScoreAtt":4651830,"RankDef":173,"ScoreDef":2133260,"RankSup":166,"ScoreSup":1319079,"RankTotal":100,"ScoreTotal":8104169,"ID":849084985,"Name":"Tivis","NumVillages":112,"Points":1046213,"Rank":136,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084985","BestRank":136,"BestRankAt":"2023-02-15T06:22:53.55709Z","MostPoints":1046213,"MostPointsAt":"2023-02-15T06:22:53.55709Z","MostVillages":112,"MostVillagesAt":"2023-02-15T06:22:53.55709Z","LastActivityAt":"2023-02-15T06:22:53.55709Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55737Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1230,"ScoreAtt":8983,"RankDef":1928,"ScoreDef":7006,"RankSup":0,"ScoreSup":0,"RankTotal":1922,"ScoreTotal":15989,"ID":849085160,"Name":"ElMajkelos","NumVillages":20,"Points":95026,"Rank":551,"TribeID":1535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085160","BestRank":551,"BestRankAt":"2023-02-15T06:22:53.557091Z","MostPoints":95026,"MostPointsAt":"2023-02-15T06:22:53.557091Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.557091Z","LastActivityAt":"2023-02-15T06:22:53.557091Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55737Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1311,"ScoreAtt":6318,"RankDef":1329,"ScoreDef":54786,"RankSup":0,"ScoreSup":0,"RankTotal":1549,"ScoreTotal":61104,"ID":849085293,"Name":"Misiaczka69","NumVillages":3,"Points":4594,"Rank":1365,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085293","BestRank":1365,"BestRankAt":"2023-02-15T06:22:53.557091Z","MostPoints":4594,"MostPointsAt":"2023-02-15T06:22:53.557091Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557091Z","LastActivityAt":"2023-02-15T06:22:53.557091Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55737Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":915,"ScoreAtt":47649,"RankDef":1060,"ScoreDef":104598,"RankSup":0,"ScoreSup":0,"RankTotal":1244,"ScoreTotal":152247,"ID":849085371,"Name":"wykolejonymiki","NumVillages":5,"Points":25320,"Rank":857,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085371","BestRank":857,"BestRankAt":"2023-02-15T06:22:53.557092Z","MostPoints":25320,"MostPointsAt":"2023-02-15T06:22:53.557092Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.557092Z","LastActivityAt":"2023-02-15T06:22:53.557092Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1339,"ScoreAtt":5439,"RankDef":374,"ScoreDef":813655,"RankSup":589,"ScoreSup":103547,"RankTotal":648,"ScoreTotal":922641,"ID":849085605,"Name":"LukaszWspanialy","NumVillages":2,"Points":9202,"Rank":1114,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085605","BestRank":1114,"BestRankAt":"2023-02-15T06:22:53.557092Z","MostPoints":9202,"MostPointsAt":"2023-02-15T06:22:53.557092Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557092Z","LastActivityAt":"2023-02-15T06:22:53.557092Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":970,"ScoreAtt":35438,"RankDef":697,"ScoreDef":274491,"RankSup":1135,"ScoreSup":1293,"RankTotal":993,"ScoreTotal":311222,"ID":849085764,"Name":"Seiyouwasabi","NumVillages":0,"Points":0,"Rank":3056,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085764","BestRank":3056,"BestRankAt":"2023-02-15T06:22:53.557093Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557093Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557093Z","LastActivityAt":"2023-02-15T06:22:53.557093Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1179,"ScoreAtt":11977,"RankDef":1889,"ScoreDef":8371,"RankSup":0,"ScoreSup":0,"RankTotal":1867,"ScoreTotal":20348,"ID":849085908,"Name":"krunor","NumVillages":0,"Points":0,"Rank":3057,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085908","BestRank":3057,"BestRankAt":"2023-02-15T06:22:53.557093Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557093Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557093Z","LastActivityAt":"2023-02-15T06:22:53.557094Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":321,"ScoreAtt":826978,"RankDef":1729,"ScoreDef":17079,"RankSup":516,"ScoreSup":157504,"RankTotal":619,"ScoreTotal":1001561,"ID":849085961,"Name":"owusum","NumVillages":1,"Points":9735,"Rank":1093,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085961","BestRank":1093,"BestRankAt":"2023-02-15T06:22:53.557094Z","MostPoints":9735,"MostPointsAt":"2023-02-15T06:22:53.557094Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557094Z","LastActivityAt":"2023-02-15T06:22:53.557094Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849086074,"Name":"Lady evee","NumVillages":1,"Points":4440,"Rank":1377,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086074","BestRank":1377,"BestRankAt":"2023-02-15T06:22:53.557094Z","MostPoints":4440,"MostPointsAt":"2023-02-15T06:22:53.557095Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557094Z","LastActivityAt":"2023-02-15T06:22:53.557095Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2301,"ScoreDef":292,"RankSup":0,"ScoreSup":0,"RankTotal":2384,"ScoreTotal":292,"ID":849086132,"Name":"dixon15pl","NumVillages":1,"Points":149,"Rank":2381,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086132","BestRank":2381,"BestRankAt":"2023-02-15T06:22:53.557095Z","MostPoints":149,"MostPointsAt":"2023-02-15T06:22:53.557095Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557095Z","LastActivityAt":"2023-02-15T06:22:53.557095Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1201,"ScoreAtt":10658,"RankDef":1025,"ScoreDef":117898,"RankSup":1150,"ScoreSup":996,"RankTotal":1299,"ScoreTotal":129552,"ID":849086357,"Name":"dadan2","NumVillages":1,"Points":2741,"Rank":1560,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086357","BestRank":1560,"BestRankAt":"2023-02-15T06:22:53.557095Z","MostPoints":2741,"MostPointsAt":"2023-02-15T06:22:53.557096Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557096Z","LastActivityAt":"2023-02-15T06:22:53.557096Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":387,"ScoreAtt":609457,"RankDef":193,"ScoreDef":1962691,"RankSup":412,"ScoreSup":291894,"RankTotal":302,"ScoreTotal":2864042,"ID":849086491,"Name":"Aratorn","NumVillages":7,"Points":40841,"Rank":737,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086491","BestRank":737,"BestRankAt":"2023-02-15T06:22:53.557096Z","MostPoints":40841,"MostPointsAt":"2023-02-15T06:22:53.557096Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.557096Z","LastActivityAt":"2023-02-15T06:22:53.557096Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":944,"ScoreAtt":41549,"RankDef":813,"ScoreDef":203150,"RankSup":999,"ScoreSup":5169,"RankTotal":1054,"ScoreTotal":249868,"ID":849086693,"Name":"Dixon 1993","NumVillages":1,"Points":4659,"Rank":1360,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086693","BestRank":1360,"BestRankAt":"2023-02-15T06:22:53.557097Z","MostPoints":4659,"MostPointsAt":"2023-02-15T06:22:53.557097Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557097Z","LastActivityAt":"2023-02-15T06:22:53.557097Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849086777,"Name":"cba444","NumVillages":1,"Points":327,"Rank":2148,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086777","BestRank":2148,"BestRankAt":"2023-02-15T06:22:53.557097Z","MostPoints":327,"MostPointsAt":"2023-02-15T06:22:53.557097Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557097Z","LastActivityAt":"2023-02-15T06:22:53.557097Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1067,"ScoreDef":102821,"RankSup":0,"ScoreSup":0,"RankTotal":1381,"ScoreTotal":102821,"ID":849086783,"Name":"Anton707","NumVillages":0,"Points":0,"Rank":3058,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086783","BestRank":3058,"BestRankAt":"2023-02-15T06:22:53.557098Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557098Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557098Z","LastActivityAt":"2023-02-15T06:22:53.557098Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":662,"ScoreDef":306349,"RankSup":0,"ScoreSup":0,"RankTotal":1000,"ScoreTotal":306349,"ID":849086817,"Name":"Elban","NumVillages":1,"Points":3080,"Rank":1519,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086817","BestRank":1519,"BestRankAt":"2023-02-15T06:22:53.557098Z","MostPoints":3080,"MostPointsAt":"2023-02-15T06:22:53.557098Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557098Z","LastActivityAt":"2023-02-15T06:22:53.557098Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":699,"ScoreDef":271503,"RankSup":0,"ScoreSup":0,"RankTotal":1032,"ScoreTotal":271503,"ID":849086925,"Name":"Hautoria","NumVillages":1,"Points":308,"Rank":2168,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086925","BestRank":2168,"BestRankAt":"2023-02-15T06:22:53.557099Z","MostPoints":308,"MostPointsAt":"2023-02-15T06:22:53.557099Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557099Z","LastActivityAt":"2023-02-15T06:22:53.557099Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2400,"ScoreDef":21,"RankSup":0,"ScoreSup":0,"RankTotal":2498,"ScoreTotal":21,"ID":849087149,"Name":"mm1370","NumVillages":1,"Points":655,"Rank":1967,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087149","BestRank":1967,"BestRankAt":"2023-02-15T06:22:53.557099Z","MostPoints":655,"MostPointsAt":"2023-02-15T06:22:53.557099Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557099Z","LastActivityAt":"2023-02-15T06:22:53.5571Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1330,"ScoreAtt":5713,"RankDef":421,"ScoreDef":689048,"RankSup":794,"ScoreSup":26684,"RankTotal":717,"ScoreTotal":721445,"ID":849087581,"Name":"takenn90","NumVillages":1,"Points":2052,"Rank":1650,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087581","BestRank":1650,"BestRankAt":"2023-02-15T06:22:53.5571Z","MostPoints":2052,"MostPointsAt":"2023-02-15T06:22:53.5571Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.5571Z","LastActivityAt":"2023-02-15T06:22:53.5571Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":432,"ScoreAtt":480694,"RankDef":291,"ScoreDef":1232876,"RankSup":646,"ScoreSup":75281,"RankTotal":442,"ScoreTotal":1788851,"ID":849087742,"Name":"RichiePichie","NumVillages":0,"Points":0,"Rank":3059,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087742","BestRank":3059,"BestRankAt":"2023-02-15T06:22:53.5571Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557101Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557101Z","LastActivityAt":"2023-02-15T06:22:53.557101Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1306,"ScoreAtt":6460,"RankDef":2197,"ScoreDef":1259,"RankSup":1022,"ScoreSup":4025,"RankTotal":1972,"ScoreTotal":11744,"ID":849087786,"Name":"jajco55","NumVillages":6,"Points":25528,"Rank":855,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087786","BestRank":855,"BestRankAt":"2023-02-15T06:22:53.557101Z","MostPoints":25528,"MostPointsAt":"2023-02-15T06:22:53.557101Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.557101Z","LastActivityAt":"2023-02-15T06:22:53.557101Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":450,"ScoreAtt":449826,"RankDef":1293,"ScoreDef":58536,"RankSup":157,"ScoreSup":1436313,"RankTotal":412,"ScoreTotal":1944675,"ID":849087855,"Name":"Pegaz","NumVillages":40,"Points":361684,"Rank":317,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087855","BestRank":317,"BestRankAt":"2023-02-15T06:22:53.557102Z","MostPoints":361684,"MostPointsAt":"2023-02-15T06:22:53.557102Z","MostVillages":40,"MostVillagesAt":"2023-02-15T06:22:53.557102Z","LastActivityAt":"2023-02-15T06:22:53.557102Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1593,"ScoreDef":25951,"RankSup":0,"ScoreSup":0,"RankTotal":1813,"ScoreTotal":25951,"ID":849087895,"Name":"Izuia98","NumVillages":0,"Points":0,"Rank":3060,"TribeID":1170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087895","BestRank":3060,"BestRankAt":"2023-02-15T06:22:53.557102Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557102Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557102Z","LastActivityAt":"2023-02-15T06:22:53.557102Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":728,"ScoreAtt":112286,"RankDef":1088,"ScoreDef":97286,"RankSup":1058,"ScoreSup":2802,"RankTotal":1118,"ScoreTotal":212374,"ID":849088101,"Name":"Sir Dzikus","NumVillages":1,"Points":9972,"Rank":1085,"TribeID":1680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088101","BestRank":1085,"BestRankAt":"2023-02-15T06:22:53.557103Z","MostPoints":9972,"MostPointsAt":"2023-02-15T06:22:53.557103Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557103Z","LastActivityAt":"2023-02-15T06:22:53.557103Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1463,"ScoreDef":37080,"RankSup":0,"ScoreSup":0,"RankTotal":1710,"ScoreTotal":37080,"ID":849088199,"Name":"Balti","NumVillages":2,"Points":12559,"Rank":1037,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088199","BestRank":1037,"BestRankAt":"2023-02-15T06:22:53.557103Z","MostPoints":12559,"MostPointsAt":"2023-02-15T06:22:53.557103Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557103Z","LastActivityAt":"2023-02-15T06:22:53.557103Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":268,"ScoreAtt":1060779,"RankDef":92,"ScoreDef":3740275,"RankSup":101,"ScoreSup":2223889,"RankTotal":125,"ScoreTotal":7024943,"ID":849088243,"Name":"noomouse","NumVillages":85,"Points":681755,"Rank":209,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088243","BestRank":209,"BestRankAt":"2023-02-15T06:22:53.557104Z","MostPoints":681755,"MostPointsAt":"2023-02-15T06:22:53.557104Z","MostVillages":85,"MostVillagesAt":"2023-02-15T06:22:53.557104Z","LastActivityAt":"2023-02-15T06:22:53.557104Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849088414,"Name":"Miltonia","NumVillages":1,"Points":146,"Rank":2383,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088414","BestRank":2383,"BestRankAt":"2023-02-15T06:22:53.557104Z","MostPoints":146,"MostPointsAt":"2023-02-15T06:22:53.557104Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557104Z","LastActivityAt":"2023-02-15T06:22:53.557105Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849088429,"Name":"Mozzie","NumVillages":1,"Points":26,"Rank":2817,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088429","BestRank":2817,"BestRankAt":"2023-02-15T06:22:53.557105Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557105Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557105Z","LastActivityAt":"2023-02-15T06:22:53.557105Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":158,"ScoreAtt":1991363,"RankDef":492,"ScoreDef":529986,"RankSup":630,"ScoreSup":81559,"RankTotal":336,"ScoreTotal":2602908,"ID":849088515,"Name":"Maroni","NumVillages":68,"Points":591302,"Rank":244,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088515","BestRank":244,"BestRankAt":"2023-02-15T06:22:53.557105Z","MostPoints":591302,"MostPointsAt":"2023-02-15T06:22:53.557106Z","MostVillages":68,"MostVillagesAt":"2023-02-15T06:22:53.557105Z","LastActivityAt":"2023-02-15T06:22:53.557106Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":872,"ScoreAtt":57339,"RankDef":1850,"ScoreDef":10044,"RankSup":1258,"ScoreSup":102,"RankTotal":1516,"ScoreTotal":67485,"ID":849088639,"Name":"Goku ssj2","NumVillages":3,"Points":17370,"Rank":964,"TribeID":1680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088639","BestRank":964,"BestRankAt":"2023-02-15T06:22:53.557106Z","MostPoints":17370,"MostPointsAt":"2023-02-15T06:22:53.557106Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557106Z","LastActivityAt":"2023-02-15T06:22:53.557106Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1423,"ScoreAtt":3665,"RankDef":414,"ScoreDef":709380,"RankSup":923,"ScoreSup":10068,"RankTotal":716,"ScoreTotal":723113,"ID":849088880,"Name":"Damian098po","NumVillages":1,"Points":311,"Rank":2165,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088880","BestRank":2165,"BestRankAt":"2023-02-15T06:22:53.557106Z","MostPoints":311,"MostPointsAt":"2023-02-15T06:22:53.557107Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557107Z","LastActivityAt":"2023-02-15T06:22:53.557107Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1226,"ScoreAtt":9358,"RankDef":1715,"ScoreDef":17693,"RankSup":0,"ScoreSup":0,"RankTotal":1800,"ScoreTotal":27051,"ID":849088882,"Name":"Jastrzębie zdrĂłj","NumVillages":1,"Points":3817,"Rank":1428,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088882","BestRank":1428,"BestRankAt":"2023-02-15T06:22:53.557107Z","MostPoints":3817,"MostPointsAt":"2023-02-15T06:22:53.557107Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557107Z","LastActivityAt":"2023-02-15T06:22:53.557107Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1141,"ScoreAtt":14623,"RankDef":752,"ScoreDef":241738,"RankSup":0,"ScoreSup":0,"RankTotal":1048,"ScoreTotal":256361,"ID":849088923,"Name":"naja1920ruch","NumVillages":1,"Points":26,"Rank":2818,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088923","BestRank":2818,"BestRankAt":"2023-02-15T06:22:53.557108Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557108Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557108Z","LastActivityAt":"2023-02-15T06:22:53.557108Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1243,"ScoreDef":64179,"RankSup":0,"ScoreSup":0,"RankTotal":1535,"ScoreTotal":64179,"ID":849089207,"Name":"Mistrz 99","NumVillages":1,"Points":170,"Rank":2353,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089207","BestRank":2353,"BestRankAt":"2023-02-15T06:22:53.557108Z","MostPoints":170,"MostPointsAt":"2023-02-15T06:22:53.557108Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557108Z","LastActivityAt":"2023-02-15T06:22:53.557108Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1790,"ScoreAtt":238,"RankDef":2324,"ScoreDef":199,"RankSup":0,"ScoreSup":0,"RankTotal":2363,"ScoreTotal":437,"ID":849089323,"Name":"Hyzio","NumVillages":1,"Points":1926,"Rank":1680,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089323","BestRank":1680,"BestRankAt":"2023-02-15T06:22:53.557109Z","MostPoints":1926,"MostPointsAt":"2023-02-15T06:22:53.557109Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557109Z","LastActivityAt":"2023-02-15T06:22:53.557109Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":259,"ScoreAtt":1084590,"RankDef":50,"ScoreDef":6639827,"RankSup":491,"ScoreSup":180510,"RankTotal":103,"ScoreTotal":7904927,"ID":849089459,"Name":"Abdoulxx","NumVillages":52,"Points":439346,"Rank":286,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089459","BestRank":286,"BestRankAt":"2023-02-15T06:22:53.557109Z","MostPoints":439346,"MostPointsAt":"2023-02-15T06:22:53.557109Z","MostVillages":52,"MostVillagesAt":"2023-02-15T06:22:53.557109Z","LastActivityAt":"2023-02-15T06:22:53.557109Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1545,"ScoreAtt":1912,"RankDef":1594,"ScoreDef":25905,"RankSup":745,"ScoreSup":37257,"RankTotal":1528,"ScoreTotal":65074,"ID":849089499,"Name":"staszku","NumVillages":8,"Points":20316,"Rank":911,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089499","BestRank":911,"BestRankAt":"2023-02-15T06:22:53.55711Z","MostPoints":20316,"MostPointsAt":"2023-02-15T06:22:53.55711Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.55711Z","LastActivityAt":"2023-02-15T06:22:53.55711Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1360,"ScoreDef":49747,"RankSup":0,"ScoreSup":0,"RankTotal":1616,"ScoreTotal":49747,"ID":849089512,"Name":"bzyku195","NumVillages":1,"Points":426,"Rank":2074,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089512","BestRank":2074,"BestRankAt":"2023-02-15T06:22:53.55711Z","MostPoints":426,"MostPointsAt":"2023-02-15T06:22:53.557111Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55711Z","LastActivityAt":"2023-02-15T06:22:53.557111Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1048,"ScoreAtt":23556,"RankDef":2179,"ScoreDef":1518,"RankSup":0,"ScoreSup":0,"RankTotal":1821,"ScoreTotal":25074,"ID":849089601,"Name":"krisssak","NumVillages":11,"Points":45693,"Rank":712,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089601","BestRank":712,"BestRankAt":"2023-02-15T06:22:53.557111Z","MostPoints":45693,"MostPointsAt":"2023-02-15T06:22:53.557111Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.557111Z","LastActivityAt":"2023-02-15T06:22:53.557111Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1357,"ScoreAtt":5150,"RankDef":2157,"ScoreDef":1846,"RankSup":0,"ScoreSup":0,"RankTotal":2071,"ScoreTotal":6996,"ID":849089654,"Name":"wawur","NumVillages":7,"Points":13740,"Rank":1013,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089654","BestRank":1013,"BestRankAt":"2023-02-15T06:22:53.557111Z","MostPoints":13740,"MostPointsAt":"2023-02-15T06:22:53.557112Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.557112Z","LastActivityAt":"2023-02-15T06:22:53.557112Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":478,"ScoreAtt":400846,"RankDef":87,"ScoreDef":3836786,"RankSup":272,"ScoreSup":598862,"RankTotal":195,"ScoreTotal":4836494,"ID":849089881,"Name":"mcwie","NumVillages":48,"Points":336795,"Rank":334,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089881","BestRank":334,"BestRankAt":"2023-02-15T06:22:53.557112Z","MostPoints":336795,"MostPointsAt":"2023-02-15T06:22:53.557112Z","MostVillages":48,"MostVillagesAt":"2023-02-15T06:22:53.557112Z","LastActivityAt":"2023-02-15T06:22:53.557112Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":407,"ScoreAtt":566876,"RankDef":188,"ScoreDef":1977769,"RankSup":159,"ScoreSup":1414588,"RankTotal":236,"ScoreTotal":3959233,"ID":849090130,"Name":"AdamTy","NumVillages":41,"Points":319962,"Rank":348,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090130","BestRank":348,"BestRankAt":"2023-02-15T06:22:53.557113Z","MostPoints":319962,"MostPointsAt":"2023-02-15T06:22:53.557113Z","MostVillages":41,"MostVillagesAt":"2023-02-15T06:22:53.557113Z","LastActivityAt":"2023-02-15T06:22:53.557113Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1519,"ScoreAtt":2172,"RankDef":990,"ScoreDef":126326,"RankSup":0,"ScoreSup":0,"RankTotal":1302,"ScoreTotal":128498,"ID":849090187,"Name":"Flisek10th","NumVillages":1,"Points":2243,"Rank":1626,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090187","BestRank":1626,"BestRankAt":"2023-02-15T06:22:53.557113Z","MostPoints":2243,"MostPointsAt":"2023-02-15T06:22:53.557113Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557113Z","LastActivityAt":"2023-02-15T06:22:53.557113Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849090243,"Name":"Habibi Malik","NumVillages":1,"Points":85,"Rank":2508,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090243","BestRank":2508,"BestRankAt":"2023-02-15T06:22:53.557114Z","MostPoints":85,"MostPointsAt":"2023-02-15T06:22:53.557114Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557114Z","LastActivityAt":"2023-02-15T06:22:53.557114Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55738Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849090289,"Name":"Jack Daniels","NumVillages":1,"Points":126,"Rank":2434,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090289","BestRank":2434,"BestRankAt":"2023-02-15T06:22:53.557114Z","MostPoints":126,"MostPointsAt":"2023-02-15T06:22:53.557114Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557114Z","LastActivityAt":"2023-02-15T06:22:53.557114Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55738Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1890,"ScoreAtt":60,"RankDef":2437,"ScoreDef":10,"RankSup":1049,"ScoreSup":3002,"RankTotal":2203,"ScoreTotal":3072,"ID":849090573,"Name":"ZiomekWafla","NumVillages":3,"Points":4690,"Rank":1357,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090573","BestRank":1357,"BestRankAt":"2023-02-15T06:22:53.557115Z","MostPoints":4690,"MostPointsAt":"2023-02-15T06:22:53.557115Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557115Z","LastActivityAt":"2023-02-15T06:22:53.557115Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55738Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1616,"ScoreAtt":1141,"RankDef":1501,"ScoreDef":33866,"RankSup":1171,"ScoreSup":748,"RankTotal":1723,"ScoreTotal":35755,"ID":849090765,"Name":"=Rosalet=","NumVillages":0,"Points":0,"Rank":3061,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090765","BestRank":3061,"BestRankAt":"2023-02-15T06:22:53.557115Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557115Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557115Z","LastActivityAt":"2023-02-15T06:22:53.557116Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55738Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2266,"ScoreDef":520,"RankSup":0,"ScoreSup":0,"RankTotal":2346,"ScoreTotal":520,"ID":849090846,"Name":"marek123","NumVillages":2,"Points":10398,"Rank":1075,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090846","BestRank":1075,"BestRankAt":"2023-02-15T06:22:53.557116Z","MostPoints":10398,"MostPointsAt":"2023-02-15T06:22:53.557116Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557116Z","LastActivityAt":"2023-02-15T06:22:53.557116Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849090890,"Name":"szewa432","NumVillages":1,"Points":164,"Rank":2361,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090890","BestRank":2361,"BestRankAt":"2023-02-15T06:22:53.557116Z","MostPoints":164,"MostPointsAt":"2023-02-15T06:22:53.557117Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557116Z","LastActivityAt":"2023-02-15T06:22:53.557117Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1968,"ScoreDef":5873,"RankSup":0,"ScoreSup":0,"RankTotal":2101,"ScoreTotal":5873,"ID":849090954,"Name":"Dr.Węgiel","NumVillages":0,"Points":0,"Rank":3062,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090954","BestRank":3062,"BestRankAt":"2023-02-15T06:22:53.557117Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557117Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557117Z","LastActivityAt":"2023-02-15T06:22:53.557117Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":190,"ScoreAtt":1635335,"RankDef":99,"ScoreDef":3512699,"RankSup":143,"ScoreSup":1546710,"RankTotal":133,"ScoreTotal":6694744,"ID":849091060,"Name":"JuanPabloII","NumVillages":1,"Points":26,"Rank":2819,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091060","BestRank":2819,"BestRankAt":"2023-02-15T06:22:53.557117Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557118Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557118Z","LastActivityAt":"2023-02-15T06:22:53.557118Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":498,"ScoreAtt":354536,"RankDef":146,"ScoreDef":2649921,"RankSup":842,"ScoreSup":17374,"RankTotal":286,"ScoreTotal":3021831,"ID":849091084,"Name":"Makro","NumVillages":10,"Points":68589,"Rank":619,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091084","BestRank":619,"BestRankAt":"2023-02-15T06:22:53.557118Z","MostPoints":68589,"MostPointsAt":"2023-02-15T06:22:53.557118Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.557118Z","LastActivityAt":"2023-02-15T06:22:53.557118Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":344,"ScoreAtt":717406,"RankDef":1706,"ScoreDef":18623,"RankSup":661,"ScoreSup":65909,"RankTotal":685,"ScoreTotal":801938,"ID":849091105,"Name":"Raogar12","NumVillages":58,"Points":389620,"Rank":305,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091105","BestRank":305,"BestRankAt":"2023-02-15T06:22:53.557119Z","MostPoints":389620,"MostPointsAt":"2023-02-15T06:22:53.557119Z","MostVillages":58,"MostVillagesAt":"2023-02-15T06:22:53.557119Z","LastActivityAt":"2023-02-15T06:22:53.557119Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":261,"ScoreAtt":1083112,"RankDef":71,"ScoreDef":4845436,"RankSup":79,"ScoreSup":2720057,"RankTotal":90,"ScoreTotal":8648605,"ID":849091769,"Name":"wotek","NumVillages":73,"Points":607187,"Rank":235,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091769","BestRank":235,"BestRankAt":"2023-02-15T06:22:53.557119Z","MostPoints":607187,"MostPointsAt":"2023-02-15T06:22:53.557119Z","MostVillages":73,"MostVillagesAt":"2023-02-15T06:22:53.557119Z","LastActivityAt":"2023-02-15T06:22:53.557119Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":307,"ScoreAtt":888430,"RankDef":1010,"ScoreDef":123026,"RankSup":301,"ScoreSup":528021,"RankTotal":484,"ScoreTotal":1539477,"ID":849091866,"Name":"Mat05usz","NumVillages":108,"Points":971533,"Rank":150,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091866","BestRank":150,"BestRankAt":"2023-02-15T06:22:53.55712Z","MostPoints":971533,"MostPointsAt":"2023-02-15T06:22:53.55712Z","MostVillages":108,"MostVillagesAt":"2023-02-15T06:22:53.55712Z","LastActivityAt":"2023-02-15T06:22:53.55712Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":441,"ScoreAtt":466329,"RankDef":1051,"ScoreDef":107390,"RankSup":946,"ScoreSup":8254,"RankTotal":781,"ScoreTotal":581973,"ID":849091897,"Name":"Danon23","NumVillages":21,"Points":194858,"Rank":421,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091897","BestRank":421,"BestRankAt":"2023-02-15T06:22:53.55712Z","MostPoints":194858,"MostPointsAt":"2023-02-15T06:22:53.55712Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.55712Z","LastActivityAt":"2023-02-15T06:22:53.55712Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":607,"ScoreAtt":206601,"RankDef":162,"ScoreDef":2339976,"RankSup":378,"ScoreSup":350513,"RankTotal":299,"ScoreTotal":2897090,"ID":849091899,"Name":"Arnhem","NumVillages":21,"Points":130250,"Rank":493,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091899","BestRank":493,"BestRankAt":"2023-02-15T06:22:53.557121Z","MostPoints":130250,"MostPointsAt":"2023-02-15T06:22:53.557121Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.557121Z","LastActivityAt":"2023-02-15T06:22:53.557121Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1095,"ScoreAtt":19038,"RankDef":257,"ScoreDef":1444331,"RankSup":715,"ScoreSup":43641,"RankTotal":494,"ScoreTotal":1507010,"ID":849091947,"Name":"OSkoczekO","NumVillages":0,"Points":0,"Rank":3063,"TribeID":19,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091947","BestRank":3063,"BestRankAt":"2023-02-15T06:22:53.557121Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557122Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557121Z","LastActivityAt":"2023-02-15T06:22:53.557122Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1871,"ScoreDef":9245,"RankSup":0,"ScoreSup":0,"RankTotal":2013,"ScoreTotal":9245,"ID":849091972,"Name":"Gimi7777","NumVillages":1,"Points":930,"Rank":1882,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091972","BestRank":1882,"BestRankAt":"2023-02-15T06:22:53.557122Z","MostPoints":930,"MostPointsAt":"2023-02-15T06:22:53.557122Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557122Z","LastActivityAt":"2023-02-15T06:22:53.557122Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":773,"ScoreAtt":92403,"RankDef":354,"ScoreDef":878875,"RankSup":0,"ScoreSup":0,"RankTotal":630,"ScoreTotal":971278,"ID":849092109,"Name":"Lord Endy","NumVillages":0,"Points":0,"Rank":3064,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092109","BestRank":3064,"BestRankAt":"2023-02-15T06:22:53.557122Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557123Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557123Z","LastActivityAt":"2023-02-15T06:22:53.557123Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1249,"ScoreDef":63567,"RankSup":0,"ScoreSup":0,"RankTotal":1536,"ScoreTotal":63567,"ID":849092185,"Name":"Antonio PaTeras","NumVillages":0,"Points":0,"Rank":3065,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092185","BestRank":3065,"BestRankAt":"2023-02-15T06:22:53.557123Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557123Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557123Z","LastActivityAt":"2023-02-15T06:22:53.557123Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":930,"ScoreDef":150249,"RankSup":0,"ScoreSup":0,"RankTotal":1249,"ScoreTotal":150249,"ID":849092244,"Name":"kijo","NumVillages":0,"Points":0,"Rank":3066,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092244","BestRank":3066,"BestRankAt":"2023-02-15T06:22:53.557124Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557124Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557124Z","LastActivityAt":"2023-02-15T06:22:53.557124Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1211,"ScoreAtt":10248,"RankDef":352,"ScoreDef":883476,"RankSup":641,"ScoreSup":75985,"RankTotal":631,"ScoreTotal":969709,"ID":849092309,"Name":"Klaudek","NumVillages":36,"Points":196206,"Rank":418,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092309","BestRank":418,"BestRankAt":"2023-02-15T06:22:53.557124Z","MostPoints":196206,"MostPointsAt":"2023-02-15T06:22:53.557124Z","MostVillages":36,"MostVillagesAt":"2023-02-15T06:22:53.557124Z","LastActivityAt":"2023-02-15T06:22:53.557124Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2015,"ScoreDef":4566,"RankSup":1290,"ScoreSup":38,"RankTotal":2148,"ScoreTotal":4604,"ID":849092639,"Name":"GONDAS9696","NumVillages":1,"Points":2334,"Rank":1608,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092639","BestRank":1608,"BestRankAt":"2023-02-15T06:22:53.557125Z","MostPoints":2334,"MostPointsAt":"2023-02-15T06:22:53.557127Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557127Z","LastActivityAt":"2023-02-15T06:22:53.557128Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":701,"ScoreAtt":127746,"RankDef":1118,"ScoreDef":91305,"RankSup":596,"ScoreSup":101263,"RankTotal":987,"ScoreTotal":320314,"ID":849092685,"Name":"kalou","NumVillages":10,"Points":51128,"Rank":685,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092685","BestRank":685,"BestRankAt":"2023-02-15T06:22:53.557128Z","MostPoints":51128,"MostPointsAt":"2023-02-15T06:22:53.557128Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.557128Z","LastActivityAt":"2023-02-15T06:22:53.557128Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":506,"ScoreAtt":340775,"RankDef":189,"ScoreDef":1973479,"RankSup":304,"ScoreSup":520040,"RankTotal":306,"ScoreTotal":2834294,"ID":849092723,"Name":"Cocofedron69","NumVillages":9,"Points":81090,"Rank":580,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092723","BestRank":580,"BestRankAt":"2023-02-15T06:22:53.557129Z","MostPoints":81090,"MostPointsAt":"2023-02-15T06:22:53.557129Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.557129Z","LastActivityAt":"2023-02-15T06:22:53.557129Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":293,"ScoreAtt":948947,"RankDef":905,"ScoreDef":163428,"RankSup":797,"ScoreSup":25160,"RankTotal":583,"ScoreTotal":1137535,"ID":849092769,"Name":"Guti14PL","NumVillages":23,"Points":188552,"Rank":427,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092769","BestRank":427,"BestRankAt":"2023-02-15T06:22:53.557129Z","MostPoints":188552,"MostPointsAt":"2023-02-15T06:22:53.557129Z","MostVillages":23,"MostVillagesAt":"2023-02-15T06:22:53.557129Z","LastActivityAt":"2023-02-15T06:22:53.55713Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":675,"ScoreAtt":142821,"RankDef":581,"ScoreDef":395770,"RankSup":459,"ScoreSup":214704,"RankTotal":704,"ScoreTotal":753295,"ID":849092827,"Name":"Najan","NumVillages":39,"Points":284858,"Rank":361,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092827","BestRank":361,"BestRankAt":"2023-02-15T06:22:53.55713Z","MostPoints":284858,"MostPointsAt":"2023-02-15T06:22:53.55713Z","MostVillages":39,"MostVillagesAt":"2023-02-15T06:22:53.55713Z","LastActivityAt":"2023-02-15T06:22:53.55713Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849092868,"Name":"Koza","NumVillages":1,"Points":26,"Rank":2820,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092868","BestRank":2820,"BestRankAt":"2023-02-15T06:22:53.557131Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557131Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557131Z","LastActivityAt":"2023-02-15T06:22:53.557131Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849092875,"Name":"Danielo3","NumVillages":1,"Points":26,"Rank":2821,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092875","BestRank":2821,"BestRankAt":"2023-02-15T06:22:53.557131Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557131Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557131Z","LastActivityAt":"2023-02-15T06:22:53.557132Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1191,"ScoreAtt":11148,"RankDef":170,"ScoreDef":2211817,"RankSup":461,"ScoreSup":213232,"RankTotal":353,"ScoreTotal":2436197,"ID":849092978,"Name":"patrix01","NumVillages":1,"Points":3698,"Rank":1441,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092978","BestRank":1441,"BestRankAt":"2023-02-15T06:22:53.557132Z","MostPoints":3698,"MostPointsAt":"2023-02-15T06:22:53.557132Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557132Z","LastActivityAt":"2023-02-15T06:22:53.557132Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":672,"ScoreAtt":144665,"RankDef":858,"ScoreDef":183664,"RankSup":635,"ScoreSup":78694,"RankTotal":909,"ScoreTotal":407023,"ID":849093003,"Name":"DANEK31.","NumVillages":0,"Points":0,"Rank":3067,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093003","BestRank":3067,"BestRankAt":"2023-02-15T06:22:53.557133Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557133Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557133Z","LastActivityAt":"2023-02-15T06:22:53.557133Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1569,"ScoreAtt":1656,"RankDef":554,"ScoreDef":435227,"RankSup":0,"ScoreSup":0,"RankTotal":878,"ScoreTotal":436883,"ID":849093155,"Name":"lukasz0707","NumVillages":6,"Points":43053,"Rank":725,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093155","BestRank":725,"BestRankAt":"2023-02-15T06:22:53.557133Z","MostPoints":43053,"MostPointsAt":"2023-02-15T06:22:53.557133Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.557133Z","LastActivityAt":"2023-02-15T06:22:53.557134Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":628,"ScoreAtt":179982,"RankDef":1794,"ScoreDef":12669,"RankSup":0,"ScoreSup":0,"RankTotal":1156,"ScoreTotal":192651,"ID":849093353,"Name":"gorzki1984","NumVillages":6,"Points":26368,"Rank":844,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093353","BestRank":844,"BestRankAt":"2023-02-15T06:22:53.557134Z","MostPoints":26368,"MostPointsAt":"2023-02-15T06:22:53.557134Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.557134Z","LastActivityAt":"2023-02-15T06:22:53.557134Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":400,"ScoreAtt":583271,"RankDef":63,"ScoreDef":5506114,"RankSup":97,"ScoreSup":2251445,"RankTotal":94,"ScoreTotal":8340830,"ID":849093422,"Name":"niangmen","NumVillages":16,"Points":154638,"Rank":458,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093422","BestRank":458,"BestRankAt":"2023-02-15T06:22:53.557135Z","MostPoints":154638,"MostPointsAt":"2023-02-15T06:22:53.557135Z","MostVillages":16,"MostVillagesAt":"2023-02-15T06:22:53.557135Z","LastActivityAt":"2023-02-15T06:22:53.557135Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":230,"ScoreAtt":1289134,"RankDef":765,"ScoreDef":234055,"RankSup":81,"ScoreSup":2629269,"RankTotal":228,"ScoreTotal":4152458,"ID":849093426,"Name":"Kuba Zenen","NumVillages":145,"Points":1220023,"Rank":107,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093426","BestRank":107,"BestRankAt":"2023-02-15T06:22:53.557136Z","MostPoints":1220023,"MostPointsAt":"2023-02-15T06:22:53.557136Z","MostVillages":145,"MostVillagesAt":"2023-02-15T06:22:53.557136Z","LastActivityAt":"2023-02-15T06:22:53.557136Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1184,"ScoreAtt":11641,"RankDef":757,"ScoreDef":236327,"RankSup":882,"ScoreSup":14070,"RankTotal":1044,"ScoreTotal":262038,"ID":849093576,"Name":"Sylwek2503","NumVillages":1,"Points":2047,"Rank":1651,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093576","BestRank":1651,"BestRankAt":"2023-02-15T06:22:53.557141Z","MostPoints":2047,"MostPointsAt":"2023-02-15T06:22:53.557141Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557141Z","LastActivityAt":"2023-02-15T06:22:53.557141Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849093724,"Name":"tyskie323","NumVillages":1,"Points":129,"Rank":2423,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093724","BestRank":2423,"BestRankAt":"2023-02-15T06:22:53.557141Z","MostPoints":129,"MostPointsAt":"2023-02-15T06:22:53.557142Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557141Z","LastActivityAt":"2023-02-15T06:22:53.557142Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":330,"ScoreAtt":795988,"RankDef":955,"ScoreDef":142349,"RankSup":486,"ScoreSup":184975,"RankTotal":588,"ScoreTotal":1123312,"ID":849093742,"Name":"Marek Pustoszyciel","NumVillages":63,"Points":556386,"Rank":251,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093742","BestRank":251,"BestRankAt":"2023-02-15T06:22:53.557142Z","MostPoints":556386,"MostPointsAt":"2023-02-15T06:22:53.557142Z","MostVillages":63,"MostVillagesAt":"2023-02-15T06:22:53.557142Z","LastActivityAt":"2023-02-15T06:22:53.557142Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":894,"ScoreDef":167153,"RankSup":1312,"ScoreSup":18,"RankTotal":1216,"ScoreTotal":167171,"ID":849093771,"Name":"Breisse","NumVillages":1,"Points":743,"Rank":1940,"TribeID":373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093771","BestRank":1940,"BestRankAt":"2023-02-15T06:22:53.557143Z","MostPoints":743,"MostPointsAt":"2023-02-15T06:22:53.557143Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557143Z","LastActivityAt":"2023-02-15T06:22:53.557143Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":591,"ScoreAtt":223618,"RankDef":381,"ScoreDef":794428,"RankSup":691,"ScoreSup":53200,"RankTotal":600,"ScoreTotal":1071246,"ID":849093875,"Name":"Martita08","NumVillages":8,"Points":39544,"Rank":742,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093875","BestRank":742,"BestRankAt":"2023-02-15T06:22:53.557143Z","MostPoints":39544,"MostPointsAt":"2023-02-15T06:22:53.557144Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.557143Z","LastActivityAt":"2023-02-15T06:22:53.557144Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":582,"ScoreAtt":234566,"RankDef":739,"ScoreDef":247902,"RankSup":666,"ScoreSup":62942,"RankTotal":805,"ScoreTotal":545410,"ID":849093924,"Name":"bezludna","NumVillages":0,"Points":0,"Rank":3068,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093924","BestRank":3068,"BestRankAt":"2023-02-15T06:22:53.557144Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557144Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557144Z","LastActivityAt":"2023-02-15T06:22:53.557144Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1874,"ScoreAtt":90,"RankDef":2204,"ScoreDef":1144,"RankSup":0,"ScoreSup":0,"RankTotal":2298,"ScoreTotal":1234,"ID":849094006,"Name":"Wieƛmenn","NumVillages":1,"Points":7351,"Rank":1198,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094006","BestRank":1198,"BestRankAt":"2023-02-15T06:22:53.557145Z","MostPoints":7351,"MostPointsAt":"2023-02-15T06:22:53.557145Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557145Z","LastActivityAt":"2023-02-15T06:22:53.557145Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":353,"ScoreAtt":684854,"RankDef":1004,"ScoreDef":124354,"RankSup":790,"ScoreSup":27560,"RankTotal":674,"ScoreTotal":836768,"ID":849094023,"Name":"Tasmanski22","NumVillages":0,"Points":0,"Rank":3069,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094023","BestRank":3069,"BestRankAt":"2023-02-15T06:22:53.557145Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557146Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557145Z","LastActivityAt":"2023-02-15T06:22:53.557146Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849094061,"Name":"marcin2202","NumVillages":1,"Points":288,"Rank":2188,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094061","BestRank":2188,"BestRankAt":"2023-02-15T06:22:53.557146Z","MostPoints":288,"MostPointsAt":"2023-02-15T06:22:53.557146Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557146Z","LastActivityAt":"2023-02-15T06:22:53.557146Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":398,"ScoreAtt":592510,"RankDef":1738,"ScoreDef":16518,"RankSup":129,"ScoreSup":1663774,"RankTotal":373,"ScoreTotal":2272802,"ID":849094067,"Name":"Franss","NumVillages":56,"Points":594330,"Rank":243,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094067","BestRank":243,"BestRankAt":"2023-02-15T06:22:53.557147Z","MostPoints":594330,"MostPointsAt":"2023-02-15T06:22:53.557147Z","MostVillages":56,"MostVillagesAt":"2023-02-15T06:22:53.557147Z","LastActivityAt":"2023-02-15T06:22:53.557147Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1210,"ScoreAtt":10300,"RankDef":1392,"ScoreDef":45087,"RankSup":0,"ScoreSup":0,"RankTotal":1583,"ScoreTotal":55387,"ID":849094111,"Name":"Antos","NumVillages":1,"Points":2767,"Rank":1555,"TribeID":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094111","BestRank":1555,"BestRankAt":"2023-02-15T06:22:53.557147Z","MostPoints":2767,"MostPointsAt":"2023-02-15T06:22:53.557148Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557148Z","LastActivityAt":"2023-02-15T06:22:53.557148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1183,"ScoreAtt":11692,"RankDef":542,"ScoreDef":457389,"RankSup":706,"ScoreSup":47364,"RankTotal":829,"ScoreTotal":516445,"ID":849094147,"Name":"LordKat69","NumVillages":2,"Points":15077,"Rank":995,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094147","BestRank":995,"BestRankAt":"2023-02-15T06:22:53.557148Z","MostPoints":15077,"MostPointsAt":"2023-02-15T06:22:53.557148Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557148Z","LastActivityAt":"2023-02-15T06:22:53.557148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849094319,"Name":"Koziok","NumVillages":1,"Points":26,"Rank":2822,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094319","BestRank":2822,"BestRankAt":"2023-02-15T06:22:53.557149Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557149Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557149Z","LastActivityAt":"2023-02-15T06:22:53.557149Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2291,"ScoreDef":343,"RankSup":0,"ScoreSup":0,"RankTotal":2374,"ScoreTotal":343,"ID":849094355,"Name":"Karolinka6868","NumVillages":1,"Points":26,"Rank":2823,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094355","BestRank":2823,"BestRankAt":"2023-02-15T06:22:53.557149Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.55715Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557149Z","LastActivityAt":"2023-02-15T06:22:53.55715Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1100,"ScoreAtt":17958,"RankDef":245,"ScoreDef":1534595,"RankSup":987,"ScoreSup":5907,"RankTotal":480,"ScoreTotal":1558460,"ID":849094586,"Name":"Nekoyo","NumVillages":3,"Points":9618,"Rank":1099,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094586","BestRank":1099,"BestRankAt":"2023-02-15T06:22:53.55715Z","MostPoints":9618,"MostPointsAt":"2023-02-15T06:22:53.55715Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.55715Z","LastActivityAt":"2023-02-15T06:22:53.55715Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.55739Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1116,"ScoreAtt":16979,"RankDef":1080,"ScoreDef":100050,"RankSup":0,"ScoreSup":0,"RankTotal":1335,"ScoreTotal":117029,"ID":849094597,"Name":"Wyczesany CzesƂaw","NumVillages":0,"Points":0,"Rank":3070,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094597","BestRank":3070,"BestRankAt":"2023-02-15T06:22:53.557151Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557151Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557151Z","LastActivityAt":"2023-02-15T06:22:53.557151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1121,"ScoreAtt":16543,"RankDef":497,"ScoreDef":522598,"RankSup":424,"ScoreSup":260774,"RankTotal":686,"ScoreTotal":799915,"ID":849094603,"Name":"Goƛć094603","NumVillages":2,"Points":6933,"Rank":1221,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094603","BestRank":1221,"BestRankAt":"2023-02-15T06:22:53.557151Z","MostPoints":6933,"MostPointsAt":"2023-02-15T06:22:53.557151Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557151Z","LastActivityAt":"2023-02-15T06:22:53.557151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":156,"ScoreAtt":2001700,"RankDef":677,"ScoreDef":289601,"RankSup":686,"ScoreSup":55451,"RankTotal":363,"ScoreTotal":2346752,"ID":849094609,"Name":"AkademiaPanaKleksa","NumVillages":92,"Points":755699,"Rank":189,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094609","BestRank":189,"BestRankAt":"2023-02-15T06:22:53.557152Z","MostPoints":755699,"MostPointsAt":"2023-02-15T06:22:53.557152Z","MostVillages":92,"MostVillagesAt":"2023-02-15T06:22:53.557152Z","LastActivityAt":"2023-02-15T06:22:53.557152Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1432,"ScoreAtt":3515,"RankDef":548,"ScoreDef":443820,"RankSup":955,"ScoreSup":7618,"RankTotal":871,"ScoreTotal":454953,"ID":849094653,"Name":"Deny2107","NumVillages":0,"Points":0,"Rank":3071,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094653","BestRank":3071,"BestRankAt":"2023-02-15T06:22:53.557152Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557152Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557152Z","LastActivityAt":"2023-02-15T06:22:53.557153Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1342,"ScoreAtt":5372,"RankDef":1543,"ScoreDef":30067,"RankSup":0,"ScoreSup":0,"RankTotal":1725,"ScoreTotal":35439,"ID":849094688,"Name":"dawszz","NumVillages":5,"Points":26500,"Rank":843,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094688","BestRank":843,"BestRankAt":"2023-02-15T06:22:53.557153Z","MostPoints":26500,"MostPointsAt":"2023-02-15T06:22:53.557153Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.557153Z","LastActivityAt":"2023-02-15T06:22:53.557153Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1276,"ScoreAtt":7141,"RankDef":609,"ScoreDef":368227,"RankSup":0,"ScoreSup":0,"RankTotal":940,"ScoreTotal":375368,"ID":849094759,"Name":"aziii2","NumVillages":6,"Points":19692,"Rank":925,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094759","BestRank":925,"BestRankAt":"2023-02-15T06:22:53.557153Z","MostPoints":19692,"MostPointsAt":"2023-02-15T06:22:53.557154Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.557153Z","LastActivityAt":"2023-02-15T06:22:53.557154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1386,"ScoreAtt":4501,"RankDef":1523,"ScoreDef":31743,"RankSup":0,"ScoreSup":0,"RankTotal":1719,"ScoreTotal":36244,"ID":849094789,"Name":"kortom","NumVillages":2,"Points":12782,"Rank":1033,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094789","BestRank":1033,"BestRankAt":"2023-02-15T06:22:53.557154Z","MostPoints":12782,"MostPointsAt":"2023-02-15T06:22:53.557154Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557154Z","LastActivityAt":"2023-02-15T06:22:53.557154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1745,"ScoreDef":16147,"RankSup":1047,"ScoreSup":3027,"RankTotal":1880,"ScoreTotal":19174,"ID":849094972,"Name":"Sir Moon Knight","NumVillages":1,"Points":143,"Rank":2386,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094972","BestRank":2386,"BestRankAt":"2023-02-15T06:22:53.557154Z","MostPoints":143,"MostPointsAt":"2023-02-15T06:22:53.557155Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557155Z","LastActivityAt":"2023-02-15T06:22:53.557155Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":412,"ScoreAtt":553112,"RankDef":102,"ScoreDef":3510084,"RankSup":616,"ScoreSup":90932,"RankTotal":227,"ScoreTotal":4154128,"ID":849095014,"Name":"Hexiu","NumVillages":3,"Points":17761,"Rank":958,"TribeID":1428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095014","BestRank":958,"BestRankAt":"2023-02-15T06:22:53.557155Z","MostPoints":17761,"MostPointsAt":"2023-02-15T06:22:53.557155Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.557155Z","LastActivityAt":"2023-02-15T06:22:53.557155Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":466,"ScoreAtt":421351,"RankDef":348,"ScoreDef":894916,"RankSup":250,"ScoreSup":705427,"RankTotal":404,"ScoreTotal":2021694,"ID":849095068,"Name":"PogromcaZabiegƂych","NumVillages":78,"Points":622928,"Rank":228,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095068","BestRank":228,"BestRankAt":"2023-02-15T06:22:53.557156Z","MostPoints":622928,"MostPointsAt":"2023-02-15T06:22:53.557156Z","MostVillages":78,"MostVillagesAt":"2023-02-15T06:22:53.557156Z","LastActivityAt":"2023-02-15T06:22:53.557156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1219,"ScoreAtt":9932,"RankDef":962,"ScoreDef":138712,"RankSup":0,"ScoreSup":0,"RankTotal":1252,"ScoreTotal":148644,"ID":849095219,"Name":"the. mehow","NumVillages":0,"Points":0,"Rank":3072,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095219","BestRank":3072,"BestRankAt":"2023-02-15T06:22:53.557156Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557156Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557156Z","LastActivityAt":"2023-02-15T06:22:53.557156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":236,"ScoreAtt":1252081,"RankDef":1678,"ScoreDef":20044,"RankSup":311,"ScoreSup":494683,"RankTotal":450,"ScoreTotal":1766808,"ID":849095227,"Name":"Krystiano242","NumVillages":89,"Points":840540,"Rank":173,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095227","BestRank":173,"BestRankAt":"2023-02-15T06:22:53.557157Z","MostPoints":840540,"MostPointsAt":"2023-02-15T06:22:53.557157Z","MostVillages":89,"MostVillagesAt":"2023-02-15T06:22:53.557157Z","LastActivityAt":"2023-02-15T06:22:53.557157Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":503,"ScoreAtt":345463,"RankDef":180,"ScoreDef":2058221,"RankSup":383,"ScoreSup":346373,"RankTotal":316,"ScoreTotal":2750057,"ID":849095240,"Name":"JohnSnow","NumVillages":2,"Points":19428,"Rank":930,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095240","BestRank":930,"BestRankAt":"2023-02-15T06:22:53.557157Z","MostPoints":19428,"MostPointsAt":"2023-02-15T06:22:53.557157Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557157Z","LastActivityAt":"2023-02-15T06:22:53.557157Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":678,"ScoreAtt":141159,"RankDef":718,"ScoreDef":262819,"RankSup":0,"ScoreSup":0,"RankTotal":912,"ScoreTotal":403978,"ID":849095324,"Name":"CarlosPL","NumVillages":0,"Points":0,"Rank":3073,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095324","BestRank":3073,"BestRankAt":"2023-02-15T06:22:53.557158Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557158Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557158Z","LastActivityAt":"2023-02-15T06:22:53.557158Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1508,"ScoreAtt":2278,"RankDef":1549,"ScoreDef":29731,"RankSup":1100,"ScoreSup":1927,"RankTotal":1734,"ScoreTotal":33936,"ID":849095376,"Name":"LeƛnyJebas","NumVillages":8,"Points":60877,"Rank":652,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095376","BestRank":652,"BestRankAt":"2023-02-15T06:22:53.557158Z","MostPoints":60877,"MostPointsAt":"2023-02-15T06:22:53.557158Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.557158Z","LastActivityAt":"2023-02-15T06:22:53.557159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2298,"ScoreDef":299,"RankSup":0,"ScoreSup":0,"RankTotal":2382,"ScoreTotal":299,"ID":849095430,"Name":"WiktorTraktor","NumVillages":1,"Points":4049,"Rank":1406,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095430","BestRank":1406,"BestRankAt":"2023-02-15T06:22:53.557159Z","MostPoints":4049,"MostPointsAt":"2023-02-15T06:22:53.557159Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557159Z","LastActivityAt":"2023-02-15T06:22:53.557159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":719,"ScoreAtt":115921,"RankDef":1514,"ScoreDef":32475,"RankSup":376,"ScoreSup":355061,"RankTotal":841,"ScoreTotal":503457,"ID":849095435,"Name":"jawor","NumVillages":9,"Points":44267,"Rank":720,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095435","BestRank":720,"BestRankAt":"2023-02-15T06:22:53.557159Z","MostPoints":44267,"MostPointsAt":"2023-02-15T06:22:53.55716Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.557159Z","LastActivityAt":"2023-02-15T06:22:53.55716Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":600,"ScoreAtt":214986,"RankDef":1686,"ScoreDef":19692,"RankSup":1277,"ScoreSup":61,"RankTotal":1078,"ScoreTotal":234739,"ID":849095446,"Name":"extor98","NumVillages":1,"Points":26,"Rank":2824,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095446","BestRank":2824,"BestRankAt":"2023-02-15T06:22:53.55716Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.55716Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.55716Z","LastActivityAt":"2023-02-15T06:22:53.55716Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1634,"ScoreDef":23321,"RankSup":394,"ScoreSup":322323,"RankTotal":966,"ScoreTotal":345644,"ID":849095448,"Name":"Omikronmen","NumVillages":1,"Points":1733,"Rank":1714,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095448","BestRank":1714,"BestRankAt":"2023-02-15T06:22:53.55716Z","MostPoints":1733,"MostPointsAt":"2023-02-15T06:22:53.557161Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557161Z","LastActivityAt":"2023-02-15T06:22:53.557161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":856,"ScoreAtt":62475,"RankDef":147,"ScoreDef":2625569,"RankSup":273,"ScoreSup":598079,"RankTotal":268,"ScoreTotal":3286123,"ID":849095482,"Name":"Adrian SzachMat","NumVillages":21,"Points":99874,"Rank":540,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095482","BestRank":540,"BestRankAt":"2023-02-15T06:22:53.557161Z","MostPoints":99874,"MostPointsAt":"2023-02-15T06:22:53.557161Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.557161Z","LastActivityAt":"2023-02-15T06:22:53.557161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":668,"ScoreAtt":146070,"RankDef":1281,"ScoreDef":59670,"RankSup":1010,"ScoreSup":4532,"RankTotal":1124,"ScoreTotal":210272,"ID":849095488,"Name":"Lancer0","NumVillages":0,"Points":0,"Rank":3074,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095488","BestRank":3074,"BestRankAt":"2023-02-15T06:22:53.557162Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.557162Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.557162Z","LastActivityAt":"2023-02-15T06:22:53.557162Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1452,"ScoreAtt":3183,"RankDef":1674,"ScoreDef":20160,"RankSup":1170,"ScoreSup":758,"RankTotal":1831,"ScoreTotal":24101,"ID":849095509,"Name":"kubek86","NumVillages":7,"Points":34286,"Rank":777,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095509","BestRank":777,"BestRankAt":"2023-02-15T06:22:53.557162Z","MostPoints":34286,"MostPointsAt":"2023-02-15T06:22:53.557162Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.557162Z","LastActivityAt":"2023-02-15T06:22:53.557162Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849095594,"Name":"Farmer155","NumVillages":1,"Points":909,"Rank":1885,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095594","BestRank":1885,"BestRankAt":"2023-02-15T06:22:53.557163Z","MostPoints":909,"MostPointsAt":"2023-02-15T06:22:53.557163Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557163Z","LastActivityAt":"2023-02-15T06:22:53.557163Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":520,"ScoreAtt":325580,"RankDef":1838,"ScoreDef":10506,"RankSup":727,"ScoreSup":41188,"RankTotal":938,"ScoreTotal":377274,"ID":849095599,"Name":"Diczku","NumVillages":39,"Points":260327,"Rank":377,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095599","BestRank":377,"BestRankAt":"2023-02-15T06:22:53.557163Z","MostPoints":260327,"MostPointsAt":"2023-02-15T06:22:53.557163Z","MostVillages":39,"MostVillagesAt":"2023-02-15T06:22:53.557163Z","LastActivityAt":"2023-02-15T06:22:53.557164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1752,"ScoreAtt":332,"RankDef":1355,"ScoreDef":50016,"RankSup":1225,"ScoreSup":254,"RankTotal":1611,"ScoreTotal":50602,"ID":849095601,"Name":"Hydrawydra","NumVillages":1,"Points":7686,"Rank":1175,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095601","BestRank":1175,"BestRankAt":"2023-02-15T06:22:53.557164Z","MostPoints":7686,"MostPointsAt":"2023-02-15T06:22:53.557164Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557164Z","LastActivityAt":"2023-02-15T06:22:53.557164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1898,"ScoreDef":8050,"RankSup":0,"ScoreSup":0,"RankTotal":2043,"ScoreTotal":8050,"ID":849095642,"Name":"DamianDK","NumVillages":1,"Points":3330,"Rank":1490,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095642","BestRank":1490,"BestRankAt":"2023-02-15T06:22:53.557164Z","MostPoints":3330,"MostPointsAt":"2023-02-15T06:22:53.557165Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557164Z","LastActivityAt":"2023-02-15T06:22:53.557165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849095756,"Name":"wiNo","NumVillages":1,"Points":26,"Rank":2825,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095756","BestRank":2825,"BestRankAt":"2023-02-15T06:22:53.557165Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.557165Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557165Z","LastActivityAt":"2023-02-15T06:22:53.557165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1333,"ScoreAtt":5632,"RankDef":1967,"ScoreDef":5875,"RankSup":0,"ScoreSup":0,"RankTotal":1979,"ScoreTotal":11507,"ID":849095771,"Name":"klejmon","NumVillages":1,"Points":705,"Rank":1948,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095771","BestRank":1948,"BestRankAt":"2023-02-15T06:22:53.557165Z","MostPoints":705,"MostPointsAt":"2023-02-15T06:22:53.557166Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.557166Z","LastActivityAt":"2023-02-15T06:22:53.557166Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":647,"ScoreAtt":162684,"RankDef":1441,"ScoreDef":38906,"RankSup":1017,"ScoreSup":4218,"RankTotal":1129,"ScoreTotal":205808,"ID":849095778,"Name":"komrat966","NumVillages":6,"Points":52741,"Rank":675,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095778","BestRank":675,"BestRankAt":"2023-02-15T06:22:53.557166Z","MostPoints":52741,"MostPointsAt":"2023-02-15T06:22:53.557166Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.557166Z","LastActivityAt":"2023-02-15T06:22:53.557166Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1492,"ScoreAtt":2453,"RankDef":2203,"ScoreDef":1150,"RankSup":814,"ScoreSup":22483,"RankTotal":1809,"ScoreTotal":26086,"ID":849095800,"Name":"Bigosowy","NumVillages":2,"Points":14656,"Rank":1003,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095800","BestRank":1003,"BestRankAt":"2023-02-15T06:22:53.557167Z","MostPoints":14656,"MostPointsAt":"2023-02-15T06:22:53.557167Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.557167Z","LastActivityAt":"2023-02-15T06:22:53.557167Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.557397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1439,"ScoreAtt":3316,"RankDef":1566,"ScoreDef":28554,"RankSup":0,"ScoreSup":0,"RankTotal":1756,"ScoreTotal":31870,"ID":849095814,"Name":"Goƛć095814","NumVillages":7,"Points":14794,"Rank":1000,"TribeID":1729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095814","BestRank":1000,"BestRankAt":"2023-02-15T06:22:53.676001Z","MostPoints":14794,"MostPointsAt":"2023-02-15T06:22:53.676002Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676001Z","LastActivityAt":"2023-02-15T06:22:53.676002Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676788Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1608,"ScoreDef":25217,"RankSup":1109,"ScoreSup":1720,"RankTotal":1803,"ScoreTotal":26937,"ID":849095825,"Name":"PtyƛTurbo","NumVillages":1,"Points":138,"Rank":2398,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095825","BestRank":2398,"BestRankAt":"2023-02-15T06:22:53.676003Z","MostPoints":138,"MostPointsAt":"2023-02-15T06:22:53.676003Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676003Z","LastActivityAt":"2023-02-15T06:22:53.676003Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676788Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":762,"ScoreAtt":95532,"RankDef":732,"ScoreDef":253558,"RankSup":0,"ScoreSup":0,"RankTotal":961,"ScoreTotal":349090,"ID":849095829,"Name":"Lukanio","NumVillages":0,"Points":0,"Rank":3075,"TribeID":1681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095829","BestRank":3075,"BestRankAt":"2023-02-15T06:22:53.676004Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676005Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676004Z","LastActivityAt":"2023-02-15T06:22:53.676005Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676789Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":840,"ScoreAtt":68774,"RankDef":1323,"ScoreDef":55090,"RankSup":1081,"ScoreSup":2307,"RankTotal":1308,"ScoreTotal":126171,"ID":849095879,"Name":"Goƛć095879","NumVillages":1,"Points":5001,"Rank":1326,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095879","BestRank":1326,"BestRankAt":"2023-02-15T06:22:53.676006Z","MostPoints":5001,"MostPointsAt":"2023-02-15T06:22:53.676006Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676006Z","LastActivityAt":"2023-02-15T06:22:53.676006Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676789Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":811,"ScoreAtt":76260,"RankDef":349,"ScoreDef":892648,"RankSup":740,"ScoreSup":37817,"RankTotal":616,"ScoreTotal":1006725,"ID":849095948,"Name":"maribast","NumVillages":2,"Points":3748,"Rank":1437,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095948","BestRank":1437,"BestRankAt":"2023-02-15T06:22:53.676007Z","MostPoints":3748,"MostPointsAt":"2023-02-15T06:22:53.676008Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676007Z","LastActivityAt":"2023-02-15T06:22:53.676008Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":376,"ScoreAtt":624305,"RankDef":135,"ScoreDef":2889524,"RankSup":457,"ScoreSup":217053,"RankTotal":245,"ScoreTotal":3730882,"ID":849095959,"Name":"mateuszek720","NumVillages":5,"Points":18135,"Rank":947,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095959","BestRank":947,"BestRankAt":"2023-02-15T06:22:53.676008Z","MostPoints":18135,"MostPointsAt":"2023-02-15T06:22:53.676009Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676009Z","LastActivityAt":"2023-02-15T06:22:53.676009Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":764,"ScoreAtt":95155,"RankDef":1183,"ScoreDef":76177,"RankSup":1103,"ScoreSup":1840,"RankTotal":1203,"ScoreTotal":173172,"ID":849095963,"Name":"matrix281","NumVillages":12,"Points":102358,"Rank":533,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095963","BestRank":533,"BestRankAt":"2023-02-15T06:22:53.67601Z","MostPoints":102358,"MostPointsAt":"2023-02-15T06:22:53.67601Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.67601Z","LastActivityAt":"2023-02-15T06:22:53.67601Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":594,"ScoreAtt":220800,"RankDef":1341,"ScoreDef":52894,"RankSup":223,"ScoreSup":800266,"RankTotal":599,"ScoreTotal":1073960,"ID":849095992,"Name":"Koba98","NumVillages":18,"Points":142994,"Rank":475,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095992","BestRank":475,"BestRankAt":"2023-02-15T06:22:53.676011Z","MostPoints":142994,"MostPointsAt":"2023-02-15T06:22:53.676012Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.676011Z","LastActivityAt":"2023-02-15T06:22:53.676012Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1354,"ScoreAtt":5222,"RankDef":1572,"ScoreDef":28193,"RankSup":900,"ScoreSup":11977,"RankTotal":1642,"ScoreTotal":45392,"ID":849096041,"Name":"arobest","NumVillages":1,"Points":1110,"Rank":1833,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096041","BestRank":1833,"BestRankAt":"2023-02-15T06:22:53.676012Z","MostPoints":1110,"MostPointsAt":"2023-02-15T06:22:53.676013Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676013Z","LastActivityAt":"2023-02-15T06:22:53.676013Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676792Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1745,"ScoreAtt":346,"RankDef":1177,"ScoreDef":77528,"RankSup":1142,"ScoreSup":1119,"RankTotal":1467,"ScoreTotal":78993,"ID":849096102,"Name":"Radziox321","NumVillages":1,"Points":1954,"Rank":1677,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096102","BestRank":1677,"BestRankAt":"2023-02-15T06:22:53.676014Z","MostPoints":1954,"MostPointsAt":"2023-02-15T06:22:53.676014Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676014Z","LastActivityAt":"2023-02-15T06:22:53.676014Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676792Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1543,"ScoreAtt":1936,"RankDef":2043,"ScoreDef":3961,"RankSup":1271,"ScoreSup":68,"RankTotal":2098,"ScoreTotal":5965,"ID":849096123,"Name":"Miczenso","NumVillages":1,"Points":4733,"Rank":1353,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096123","BestRank":1353,"BestRankAt":"2023-02-15T06:22:53.676015Z","MostPoints":4733,"MostPointsAt":"2023-02-15T06:22:53.676015Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676015Z","LastActivityAt":"2023-02-15T06:22:53.676016Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676793Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":676,"ScoreAtt":142186,"RankDef":341,"ScoreDef":920638,"RankSup":1233,"ScoreSup":224,"RankTotal":605,"ScoreTotal":1063048,"ID":849096182,"Name":"AreKing","NumVillages":3,"Points":7773,"Rank":1171,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096182","BestRank":1171,"BestRankAt":"2023-02-15T06:22:53.676016Z","MostPoints":7773,"MostPointsAt":"2023-02-15T06:22:53.676017Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676016Z","LastActivityAt":"2023-02-15T06:22:53.676017Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676793Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":802,"ScoreAtt":80042,"RankDef":688,"ScoreDef":282312,"RankSup":262,"ScoreSup":650256,"RankTotal":614,"ScoreTotal":1012610,"ID":849096215,"Name":"IgƂaa","NumVillages":12,"Points":35985,"Rank":768,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096215","BestRank":768,"BestRankAt":"2023-02-15T06:22:53.676017Z","MostPoints":35985,"MostPointsAt":"2023-02-15T06:22:53.676018Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.676018Z","LastActivityAt":"2023-02-15T06:22:53.676018Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676794Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1273,"ScoreAtt":7225,"RankDef":1138,"ScoreDef":86351,"RankSup":0,"ScoreSup":0,"RankTotal":1417,"ScoreTotal":93576,"ID":849096265,"Name":"bielacz","NumVillages":1,"Points":845,"Rank":1905,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096265","BestRank":1905,"BestRankAt":"2023-02-15T06:22:53.67602Z","MostPoints":845,"MostPointsAt":"2023-02-15T06:22:53.67602Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67602Z","LastActivityAt":"2023-02-15T06:22:53.67602Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676794Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1247,"ScoreAtt":8373,"RankDef":496,"ScoreDef":523828,"RankSup":1069,"ScoreSup":2597,"RankTotal":817,"ScoreTotal":534798,"ID":849096285,"Name":"MokryRick","NumVillages":2,"Points":9007,"Rank":1123,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096285","BestRank":1123,"BestRankAt":"2023-02-15T06:22:53.676021Z","MostPoints":9007,"MostPointsAt":"2023-02-15T06:22:53.676021Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676021Z","LastActivityAt":"2023-02-15T06:22:53.676022Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676795Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":805,"ScoreAtt":77798,"RankDef":367,"ScoreDef":828990,"RankSup":1031,"ScoreSup":3636,"RankTotal":650,"ScoreTotal":910424,"ID":849096310,"Name":"Giser","NumVillages":11,"Points":58151,"Rank":661,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096310","BestRank":661,"BestRankAt":"2023-02-15T06:22:53.676022Z","MostPoints":58151,"MostPointsAt":"2023-02-15T06:22:53.676023Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676022Z","LastActivityAt":"2023-02-15T06:22:53.676023Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676795Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1128,"ScoreAtt":15856,"RankDef":1611,"ScoreDef":25095,"RankSup":1072,"ScoreSup":2520,"RankTotal":1658,"ScoreTotal":43471,"ID":849096334,"Name":"Tomekrol","NumVillages":6,"Points":35297,"Rank":773,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096334","BestRank":773,"BestRankAt":"2023-02-15T06:22:53.676023Z","MostPoints":35297,"MostPointsAt":"2023-02-15T06:22:53.676024Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676024Z","LastActivityAt":"2023-02-15T06:22:53.676024Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676796Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2405,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2501,"ScoreTotal":20,"ID":849096341,"Name":"Meldennsen","NumVillages":1,"Points":2881,"Rank":1544,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096341","BestRank":1544,"BestRankAt":"2023-02-15T06:22:53.676025Z","MostPoints":2881,"MostPointsAt":"2023-02-15T06:22:53.676025Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676025Z","LastActivityAt":"2023-02-15T06:22:53.676025Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676796Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1772,"ScoreAtt":280,"RankDef":1528,"ScoreDef":31244,"RankSup":0,"ScoreSup":0,"RankTotal":1760,"ScoreTotal":31524,"ID":849096346,"Name":"chips03","NumVillages":1,"Points":26,"Rank":2826,"TribeID":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096346","BestRank":2826,"BestRankAt":"2023-02-15T06:22:53.676026Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676026Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676026Z","LastActivityAt":"2023-02-15T06:22:53.676026Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":358,"ScoreAtt":668803,"RankDef":56,"ScoreDef":6098139,"RankSup":178,"ScoreSup":1175314,"RankTotal":102,"ScoreTotal":7942256,"ID":849096354,"Name":"Artur199556","NumVillages":12,"Points":40779,"Rank":738,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096354","BestRank":738,"BestRankAt":"2023-02-15T06:22:53.676027Z","MostPoints":40779,"MostPointsAt":"2023-02-15T06:22:53.676028Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.676027Z","LastActivityAt":"2023-02-15T06:22:53.676028Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1293,"ScoreAtt":6653,"RankDef":495,"ScoreDef":527556,"RankSup":317,"ScoreSup":478046,"RankTotal":615,"ScoreTotal":1012255,"ID":849096383,"Name":"Kallichore","NumVillages":0,"Points":0,"Rank":3076,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096383","BestRank":3076,"BestRankAt":"2023-02-15T06:22:53.676028Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676029Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676029Z","LastActivityAt":"2023-02-15T06:22:53.676029Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676798Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1369,"ScoreAtt":4743,"RankDef":1339,"ScoreDef":53453,"RankSup":1390,"ScoreSup":2,"RankTotal":1567,"ScoreTotal":58198,"ID":849096399,"Name":"Vetiuss","NumVillages":2,"Points":2273,"Rank":1620,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096399","BestRank":1620,"BestRankAt":"2023-02-15T06:22:53.67603Z","MostPoints":2273,"MostPointsAt":"2023-02-15T06:22:53.67603Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.67603Z","LastActivityAt":"2023-02-15T06:22:53.67603Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676798Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1166,"ScoreAtt":12707,"RankDef":1443,"ScoreDef":38840,"RankSup":0,"ScoreSup":0,"RankTotal":1605,"ScoreTotal":51547,"ID":849096435,"Name":"HKS RUCH","NumVillages":1,"Points":1315,"Rank":1784,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096435","BestRank":1784,"BestRankAt":"2023-02-15T06:22:53.676031Z","MostPoints":1315,"MostPointsAt":"2023-02-15T06:22:53.676031Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676031Z","LastActivityAt":"2023-02-15T06:22:53.676031Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":697,"ScoreAtt":131952,"RankDef":372,"ScoreDef":821507,"RankSup":942,"ScoreSup":8404,"RankTotal":635,"ScoreTotal":961863,"ID":849096454,"Name":"Power76","NumVillages":1,"Points":51,"Rank":2580,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096454","BestRank":2580,"BestRankAt":"2023-02-15T06:22:53.676032Z","MostPoints":51,"MostPointsAt":"2023-02-15T06:22:53.676032Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676032Z","LastActivityAt":"2023-02-15T06:22:53.676033Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1013,"ScoreAtt":28386,"RankDef":109,"ScoreDef":3405783,"RankSup":591,"ScoreSup":103282,"RankTotal":254,"ScoreTotal":3537451,"ID":849096458,"Name":"wookash","NumVillages":19,"Points":130604,"Rank":492,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096458","BestRank":492,"BestRankAt":"2023-02-15T06:22:53.676034Z","MostPoints":130604,"MostPointsAt":"2023-02-15T06:22:53.676035Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.676035Z","LastActivityAt":"2023-02-15T06:22:53.676035Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6768Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849096543,"Name":"Alpinista","NumVillages":1,"Points":26,"Rank":2827,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096543","BestRank":2827,"BestRankAt":"2023-02-15T06:22:53.676036Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676036Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676036Z","LastActivityAt":"2023-02-15T06:22:53.676036Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6768Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1601,"ScoreAtt":1283,"RankDef":248,"ScoreDef":1523826,"RankSup":736,"ScoreSup":38925,"RankTotal":479,"ScoreTotal":1564034,"ID":849096544,"Name":"Proczu","NumVillages":11,"Points":96123,"Rank":550,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096544","BestRank":550,"BestRankAt":"2023-02-15T06:22:53.676037Z","MostPoints":96123,"MostPointsAt":"2023-02-15T06:22:53.676037Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676037Z","LastActivityAt":"2023-02-15T06:22:53.676038Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676801Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":334,"ScoreAtt":775162,"RankDef":232,"ScoreDef":1642074,"RankSup":476,"ScoreSup":191589,"RankTotal":335,"ScoreTotal":2608825,"ID":849096547,"Name":"mikson1995","NumVillages":7,"Points":25537,"Rank":854,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096547","BestRank":854,"BestRankAt":"2023-02-15T06:22:53.676038Z","MostPoints":25537,"MostPointsAt":"2023-02-15T06:22:53.676039Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676038Z","LastActivityAt":"2023-02-15T06:22:53.676039Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676801Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1838,"ScoreAtt":138,"RankDef":940,"ScoreDef":147032,"RankSup":795,"ScoreSup":25279,"RankTotal":1206,"ScoreTotal":172449,"ID":849096592,"Name":"Marshmike","NumVillages":1,"Points":5414,"Rank":1307,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096592","BestRank":1307,"BestRankAt":"2023-02-15T06:22:53.676039Z","MostPoints":5414,"MostPointsAt":"2023-02-15T06:22:53.67604Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67604Z","LastActivityAt":"2023-02-15T06:22:53.67604Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676802Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":859,"ScoreAtt":60115,"RankDef":891,"ScoreDef":168408,"RankSup":1007,"ScoreSup":4678,"RankTotal":1083,"ScoreTotal":233201,"ID":849096594,"Name":"Kerpi","NumVillages":1,"Points":1562,"Rank":1740,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096594","BestRank":1740,"BestRankAt":"2023-02-15T06:22:53.676041Z","MostPoints":1562,"MostPointsAt":"2023-02-15T06:22:53.676041Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676041Z","LastActivityAt":"2023-02-15T06:22:53.676041Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676802Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":178,"ScoreAtt":1779554,"RankDef":127,"ScoreDef":3034492,"RankSup":84,"ScoreSup":2454536,"RankTotal":115,"ScoreTotal":7268582,"ID":849096606,"Name":"Darma dla zawodnika","NumVillages":0,"Points":0,"Rank":3077,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096606","BestRank":3077,"BestRankAt":"2023-02-15T06:22:53.676042Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676042Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676042Z","LastActivityAt":"2023-02-15T06:22:53.676042Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1062,"ScoreAtt":21967,"RankDef":1947,"ScoreDef":6410,"RankSup":998,"ScoreSup":5309,"RankTotal":1739,"ScoreTotal":33686,"ID":849096631,"Name":"PotÄ™ĆŒny Sycowianin","NumVillages":11,"Points":78243,"Rank":589,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096631","BestRank":589,"BestRankAt":"2023-02-15T06:22:53.676043Z","MostPoints":78243,"MostPointsAt":"2023-02-15T06:22:53.676043Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676043Z","LastActivityAt":"2023-02-15T06:22:53.676044Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":655,"ScoreAtt":156077,"RankDef":301,"ScoreDef":1152616,"RankSup":875,"ScoreSup":14228,"RankTotal":531,"ScoreTotal":1322921,"ID":849096649,"Name":"BudzikRide","NumVillages":2,"Points":15733,"Rank":985,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096649","BestRank":985,"BestRankAt":"2023-02-15T06:22:53.676044Z","MostPoints":15733,"MostPointsAt":"2023-02-15T06:22:53.676045Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676045Z","LastActivityAt":"2023-02-15T06:22:53.676045Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676804Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":913,"ScoreAtt":47803,"RankDef":538,"ScoreDef":462218,"RankSup":788,"ScoreSup":27759,"RankTotal":814,"ScoreTotal":537780,"ID":849096768,"Name":"Adamo","NumVillages":7,"Points":52933,"Rank":674,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096768","BestRank":674,"BestRankAt":"2023-02-15T06:22:53.676046Z","MostPoints":52933,"MostPointsAt":"2023-02-15T06:22:53.676046Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676046Z","LastActivityAt":"2023-02-15T06:22:53.676046Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676804Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":803,"ScoreAtt":79903,"RankDef":322,"ScoreDef":1044988,"RankSup":844,"ScoreSup":17208,"RankTotal":580,"ScoreTotal":1142099,"ID":849096856,"Name":"pilkowski","NumVillages":1,"Points":101,"Rank":2483,"TribeID":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096856","BestRank":2483,"BestRankAt":"2023-02-15T06:22:53.676047Z","MostPoints":101,"MostPointsAt":"2023-02-15T06:22:53.676047Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676047Z","LastActivityAt":"2023-02-15T06:22:53.676047Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676805Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":898,"ScoreAtt":51529,"RankDef":368,"ScoreDef":826802,"RankSup":576,"ScoreSup":112568,"RankTotal":620,"ScoreTotal":990899,"ID":849096874,"Name":"Igordaniel313","NumVillages":0,"Points":0,"Rank":3078,"TribeID":1651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096874","BestRank":3078,"BestRankAt":"2023-02-15T06:22:53.676048Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676048Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676048Z","LastActivityAt":"2023-02-15T06:22:53.676049Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676805Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":667,"ScoreAtt":146389,"RankDef":229,"ScoreDef":1660170,"RankSup":281,"ScoreSup":576857,"RankTotal":359,"ScoreTotal":2383416,"ID":849096882,"Name":"MarekKrk","NumVillages":7,"Points":49810,"Rank":694,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096882","BestRank":694,"BestRankAt":"2023-02-15T06:22:53.676049Z","MostPoints":49810,"MostPointsAt":"2023-02-15T06:22:53.67605Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676049Z","LastActivityAt":"2023-02-15T06:22:53.67605Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676806Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1312,"ScoreAtt":6283,"RankDef":1322,"ScoreDef":55102,"RankSup":1261,"ScoreSup":97,"RankTotal":1543,"ScoreTotal":61482,"ID":849096891,"Name":"Kapral16","NumVillages":1,"Points":5577,"Rank":1298,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096891","BestRank":1298,"BestRankAt":"2023-02-15T06:22:53.67605Z","MostPoints":5577,"MostPointsAt":"2023-02-15T06:22:53.676051Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676051Z","LastActivityAt":"2023-02-15T06:22:53.676051Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676806Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849096936,"Name":"Karakan13","NumVillages":1,"Points":26,"Rank":2828,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096936","BestRank":2828,"BestRankAt":"2023-02-15T06:22:53.676052Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676052Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676052Z","LastActivityAt":"2023-02-15T06:22:53.676052Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676807Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":844,"ScoreAtt":67152,"RankDef":764,"ScoreDef":234103,"RankSup":1259,"ScoreSup":101,"RankTotal":1002,"ScoreTotal":301356,"ID":849096944,"Name":"Jarko","NumVillages":1,"Points":8598,"Rank":1132,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096944","BestRank":1132,"BestRankAt":"2023-02-15T06:22:53.676053Z","MostPoints":8598,"MostPointsAt":"2023-02-15T06:22:53.676053Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676053Z","LastActivityAt":"2023-02-15T06:22:53.676054Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676807Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":577,"ScoreAtt":240707,"RankDef":116,"ScoreDef":3206856,"RankSup":224,"ScoreSup":788466,"RankTotal":222,"ScoreTotal":4236029,"ID":849096945,"Name":"Boru1996","NumVillages":14,"Points":22925,"Rank":881,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096945","BestRank":881,"BestRankAt":"2023-02-15T06:22:53.676054Z","MostPoints":22925,"MostPointsAt":"2023-02-15T06:22:53.676055Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.676054Z","LastActivityAt":"2023-02-15T06:22:53.676055Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676808Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":991,"ScoreAtt":32626,"RankDef":1151,"ScoreDef":83814,"RankSup":845,"ScoreSup":16961,"RankTotal":1289,"ScoreTotal":133401,"ID":849096954,"Name":"xKratz","NumVillages":1,"Points":41,"Rank":2610,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096954","BestRank":2610,"BestRankAt":"2023-02-15T06:22:53.676055Z","MostPoints":41,"MostPointsAt":"2023-02-15T06:22:53.676056Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676056Z","LastActivityAt":"2023-02-15T06:22:53.676056Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676808Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":727,"ScoreAtt":112454,"RankDef":682,"ScoreDef":286142,"RankSup":952,"ScoreSup":7723,"RankTotal":911,"ScoreTotal":406319,"ID":849096958,"Name":"majchi96","NumVillages":10,"Points":76266,"Rank":599,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096958","BestRank":599,"BestRankAt":"2023-02-15T06:22:53.676057Z","MostPoints":76266,"MostPointsAt":"2023-02-15T06:22:53.676057Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.676057Z","LastActivityAt":"2023-02-15T06:22:53.676057Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":940,"ScoreAtt":42287,"RankDef":664,"ScoreDef":302335,"RankSup":648,"ScoreSup":74552,"RankTotal":896,"ScoreTotal":419174,"ID":849096972,"Name":"Triton1","NumVillages":32,"Points":206398,"Rank":410,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096972","BestRank":410,"BestRankAt":"2023-02-15T06:22:53.676058Z","MostPoints":206398,"MostPointsAt":"2023-02-15T06:22:53.676058Z","MostVillages":32,"MostVillagesAt":"2023-02-15T06:22:53.676058Z","LastActivityAt":"2023-02-15T06:22:53.676058Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1148,"ScoreAtt":14149,"RankDef":578,"ScoreDef":402600,"RankSup":859,"ScoreSup":15944,"RankTotal":883,"ScoreTotal":432693,"ID":849096977,"Name":"Gabiii","NumVillages":1,"Points":3787,"Rank":1432,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096977","BestRank":1432,"BestRankAt":"2023-02-15T06:22:53.676059Z","MostPoints":3787,"MostPointsAt":"2023-02-15T06:22:53.676059Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676059Z","LastActivityAt":"2023-02-15T06:22:53.67606Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1570,"ScoreAtt":1610,"RankDef":272,"ScoreDef":1337029,"RankSup":777,"ScoreSup":29968,"RankTotal":524,"ScoreTotal":1368607,"ID":849096979,"Name":"Zachariasz Grundbaum","NumVillages":1,"Points":26,"Rank":2829,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096979","BestRank":2829,"BestRankAt":"2023-02-15T06:22:53.676062Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676062Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676062Z","LastActivityAt":"2023-02-15T06:22:53.676062Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1472,"ScoreDef":36443,"RankSup":0,"ScoreSup":0,"RankTotal":1717,"ScoreTotal":36443,"ID":849096990,"Name":"Mr.ElCzapo","NumVillages":1,"Points":3303,"Rank":1493,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096990","BestRank":1493,"BestRankAt":"2023-02-15T06:22:53.676063Z","MostPoints":3303,"MostPointsAt":"2023-02-15T06:22:53.676063Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676063Z","LastActivityAt":"2023-02-15T06:22:53.676063Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676811Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":781,"ScoreAtt":88294,"RankDef":1125,"ScoreDef":90026,"RankSup":328,"ScoreSup":450495,"RankTotal":767,"ScoreTotal":628815,"ID":849097002,"Name":"KazuyaVV","NumVillages":21,"Points":171222,"Rank":442,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097002","BestRank":442,"BestRankAt":"2023-02-15T06:22:53.676064Z","MostPoints":171222,"MostPointsAt":"2023-02-15T06:22:53.676064Z","MostVillages":21,"MostVillagesAt":"2023-02-15T06:22:53.676064Z","LastActivityAt":"2023-02-15T06:22:53.676065Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676811Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1185,"ScoreAtt":11458,"RankDef":1856,"ScoreDef":9849,"RankSup":0,"ScoreSup":0,"RankTotal":1853,"ScoreTotal":21307,"ID":849097006,"Name":"Hasha","NumVillages":1,"Points":392,"Rank":2094,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097006","BestRank":2094,"BestRankAt":"2023-02-15T06:22:53.676065Z","MostPoints":392,"MostPointsAt":"2023-02-15T06:22:53.676066Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676065Z","LastActivityAt":"2023-02-15T06:22:53.676066Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676812Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":742,"ScoreAtt":108532,"RankDef":1424,"ScoreDef":40561,"RankSup":414,"ScoreSup":290873,"RankTotal":876,"ScoreTotal":439966,"ID":849097103,"Name":"Krystian19k","NumVillages":18,"Points":79533,"Rank":587,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097103","BestRank":587,"BestRankAt":"2023-02-15T06:22:53.676067Z","MostPoints":79533,"MostPointsAt":"2023-02-15T06:22:53.676067Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.676067Z","LastActivityAt":"2023-02-15T06:22:53.676067Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676812Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2252,"ScoreDef":607,"RankSup":0,"ScoreSup":0,"RankTotal":2337,"ScoreTotal":607,"ID":849097123,"Name":"RediiSD","NumVillages":2,"Points":9183,"Rank":1116,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097123","BestRank":1116,"BestRankAt":"2023-02-15T06:22:53.676068Z","MostPoints":9183,"MostPointsAt":"2023-02-15T06:22:53.676068Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676068Z","LastActivityAt":"2023-02-15T06:22:53.676068Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676813Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":557,"ScoreAtt":266031,"RankDef":379,"ScoreDef":799545,"RankSup":582,"ScoreSup":106339,"RankTotal":568,"ScoreTotal":1171915,"ID":849097175,"Name":"GrendysaPowrĂłt","NumVillages":5,"Points":14163,"Rank":1011,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097175","BestRank":1011,"BestRankAt":"2023-02-15T06:22:53.676069Z","MostPoints":14163,"MostPointsAt":"2023-02-15T06:22:53.676069Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676069Z","LastActivityAt":"2023-02-15T06:22:53.67607Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676813Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2127,"ScoreDef":2260,"RankSup":403,"ScoreSup":315363,"RankTotal":990,"ScoreTotal":317623,"ID":849097220,"Name":"wesolykrystek","NumVillages":4,"Points":18106,"Rank":948,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097220","BestRank":948,"BestRankAt":"2023-02-15T06:22:53.67607Z","MostPoints":18106,"MostPointsAt":"2023-02-15T06:22:53.676071Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.67607Z","LastActivityAt":"2023-02-15T06:22:53.676071Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676814Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849097274,"Name":"Feii","NumVillages":1,"Points":26,"Rank":2830,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097274","BestRank":2830,"BestRankAt":"2023-02-15T06:22:53.676071Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676072Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676072Z","LastActivityAt":"2023-02-15T06:22:53.676072Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676814Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1467,"ScoreAtt":2896,"RankDef":1960,"ScoreDef":6027,"RankSup":0,"ScoreSup":0,"RankTotal":2022,"ScoreTotal":8923,"ID":849097312,"Name":"Bbartek97","NumVillages":2,"Points":8112,"Rank":1152,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097312","BestRank":1152,"BestRankAt":"2023-02-15T06:22:53.676073Z","MostPoints":8112,"MostPointsAt":"2023-02-15T06:22:53.676073Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676073Z","LastActivityAt":"2023-02-15T06:22:53.676073Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676815Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":832,"ScoreAtt":70710,"RankDef":1434,"ScoreDef":39375,"RankSup":1281,"ScoreSup":51,"RankTotal":1360,"ScoreTotal":110136,"ID":849097357,"Name":"morfeusz37","NumVillages":1,"Points":364,"Rank":2116,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097357","BestRank":2116,"BestRankAt":"2023-02-15T06:22:53.676074Z","MostPoints":364,"MostPointsAt":"2023-02-15T06:22:53.676074Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676074Z","LastActivityAt":"2023-02-15T06:22:53.676074Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676815Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1025,"ScoreAtt":27094,"RankDef":1297,"ScoreDef":58088,"RankSup":1398,"ScoreSup":2,"RankTotal":1449,"ScoreTotal":85184,"ID":849097370,"Name":"CzarnyBlade","NumVillages":7,"Points":32697,"Rank":789,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097370","BestRank":789,"BestRankAt":"2023-02-15T06:22:53.676075Z","MostPoints":32697,"MostPointsAt":"2023-02-15T06:22:53.676076Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676075Z","LastActivityAt":"2023-02-15T06:22:53.676076Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676816Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1991,"ScoreAtt":1,"RankDef":2196,"ScoreDef":1270,"RankSup":0,"ScoreSup":0,"RankTotal":2293,"ScoreTotal":1271,"ID":849097373,"Name":"pinoki","NumVillages":1,"Points":3375,"Rank":1487,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097373","BestRank":1487,"BestRankAt":"2023-02-15T06:22:53.676076Z","MostPoints":3375,"MostPointsAt":"2023-02-15T06:22:53.676077Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676077Z","LastActivityAt":"2023-02-15T06:22:53.676077Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676816Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1497,"ScoreAtt":2415,"RankDef":1090,"ScoreDef":97005,"RankSup":960,"ScoreSup":7313,"RankTotal":1368,"ScoreTotal":106733,"ID":849097386,"Name":"betka36","NumVillages":1,"Points":3559,"Rank":1455,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097386","BestRank":1455,"BestRankAt":"2023-02-15T06:22:53.676078Z","MostPoints":3559,"MostPointsAt":"2023-02-15T06:22:53.676078Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676078Z","LastActivityAt":"2023-02-15T06:22:53.676078Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676817Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1702,"ScoreAtt":577,"RankDef":1814,"ScoreDef":11658,"RankSup":0,"ScoreSup":0,"RankTotal":1964,"ScoreTotal":12235,"ID":849097445,"Name":"eddyk","NumVillages":1,"Points":653,"Rank":1968,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097445","BestRank":1968,"BestRankAt":"2023-02-15T06:22:53.676079Z","MostPoints":653,"MostPointsAt":"2023-02-15T06:22:53.676079Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676079Z","LastActivityAt":"2023-02-15T06:22:53.676079Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676817Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1547,"ScoreAtt":1867,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2255,"ScoreTotal":1867,"ID":849097477,"Name":"Artok","NumVillages":1,"Points":1418,"Rank":1764,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097477","BestRank":1764,"BestRankAt":"2023-02-15T06:22:53.67608Z","MostPoints":1418,"MostPointsAt":"2023-02-15T06:22:53.67608Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67608Z","LastActivityAt":"2023-02-15T06:22:53.676081Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676818Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":853,"ScoreAtt":62725,"RankDef":346,"ScoreDef":896854,"RankSup":482,"ScoreSup":188844,"RankTotal":577,"ScoreTotal":1148423,"ID":849097614,"Name":"RUCHWKSAZBUD","NumVillages":17,"Points":114694,"Rank":510,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097614","BestRank":510,"BestRankAt":"2023-02-15T06:22:53.676081Z","MostPoints":114694,"MostPointsAt":"2023-02-15T06:22:53.676082Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.676081Z","LastActivityAt":"2023-02-15T06:22:53.676082Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676818Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1150,"ScoreAtt":13856,"RankDef":995,"ScoreDef":125651,"RankSup":0,"ScoreSup":0,"RankTotal":1274,"ScoreTotal":139507,"ID":849097620,"Name":"MikolajOSK","NumVillages":0,"Points":0,"Rank":3079,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097620","BestRank":3079,"BestRankAt":"2023-02-15T06:22:53.676083Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676083Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676083Z","LastActivityAt":"2023-02-15T06:22:53.676083Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676819Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1503,"ScoreDef":33675,"RankSup":0,"ScoreSup":0,"RankTotal":1740,"ScoreTotal":33675,"ID":849097681,"Name":"piotr245","NumVillages":1,"Points":4773,"Rank":1349,"TribeID":1798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097681","BestRank":1349,"BestRankAt":"2023-02-15T06:22:53.676084Z","MostPoints":4773,"MostPointsAt":"2023-02-15T06:22:53.676084Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676084Z","LastActivityAt":"2023-02-15T06:22:53.676085Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676819Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":876,"ScoreAtt":56445,"RankDef":960,"ScoreDef":139934,"RankSup":731,"ScoreSup":40321,"RankTotal":1073,"ScoreTotal":236700,"ID":849097716,"Name":"Ja1234","NumVillages":13,"Points":87291,"Rank":570,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097716","BestRank":570,"BestRankAt":"2023-02-15T06:22:53.676085Z","MostPoints":87291,"MostPointsAt":"2023-02-15T06:22:53.676086Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.676086Z","LastActivityAt":"2023-02-15T06:22:53.676086Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1127,"ScoreDef":89907,"RankSup":0,"ScoreSup":0,"RankTotal":1437,"ScoreTotal":89907,"ID":849097729,"Name":"Angelina2013","NumVillages":1,"Points":132,"Rank":2416,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097729","BestRank":2416,"BestRankAt":"2023-02-15T06:22:53.676087Z","MostPoints":132,"MostPointsAt":"2023-02-15T06:22:53.676087Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676087Z","LastActivityAt":"2023-02-15T06:22:53.676087Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":623,"ScoreAtt":186712,"RankDef":656,"ScoreDef":313271,"RankSup":822,"ScoreSup":20665,"RankTotal":826,"ScoreTotal":520648,"ID":849097737,"Name":"VentX","NumVillages":15,"Points":85426,"Rank":574,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097737","BestRank":574,"BestRankAt":"2023-02-15T06:22:53.676088Z","MostPoints":85426,"MostPointsAt":"2023-02-15T06:22:53.676089Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.676088Z","LastActivityAt":"2023-02-15T06:22:53.676089Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676821Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1437,"ScoreAtt":3370,"RankDef":1034,"ScoreDef":115120,"RankSup":0,"ScoreSup":0,"RankTotal":1331,"ScoreTotal":118490,"ID":849097792,"Name":"MihuPoKielichu","NumVillages":0,"Points":0,"Rank":3080,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097792","BestRank":3080,"BestRankAt":"2023-02-15T06:22:53.676089Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.67609Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.67609Z","LastActivityAt":"2023-02-15T06:22:53.67609Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676821Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1177,"ScoreAtt":12015,"RankDef":781,"ScoreDef":222984,"RankSup":0,"ScoreSup":0,"RankTotal":1076,"ScoreTotal":234999,"ID":849097793,"Name":"Vintrax","NumVillages":1,"Points":26,"Rank":2831,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097793","BestRank":2831,"BestRankAt":"2023-02-15T06:22:53.676091Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676091Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676091Z","LastActivityAt":"2023-02-15T06:22:53.676091Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676822Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":161,"ScoreAtt":1974498,"RankDef":645,"ScoreDef":328720,"RankSup":489,"ScoreSup":183645,"RankTotal":347,"ScoreTotal":2486863,"ID":849097799,"Name":"wgola","NumVillages":48,"Points":370798,"Rank":314,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097799","BestRank":314,"BestRankAt":"2023-02-15T06:22:53.676092Z","MostPoints":370798,"MostPointsAt":"2023-02-15T06:22:53.676092Z","MostVillages":48,"MostVillagesAt":"2023-02-15T06:22:53.676092Z","LastActivityAt":"2023-02-15T06:22:53.676093Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676822Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1789,"ScoreAtt":240,"RankDef":1927,"ScoreDef":7119,"RankSup":1003,"ScoreSup":5044,"RankTotal":1962,"ScoreTotal":12403,"ID":849097837,"Name":"Adamek95","NumVillages":9,"Points":50170,"Rank":691,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097837","BestRank":691,"BestRankAt":"2023-02-15T06:22:53.676093Z","MostPoints":50170,"MostPointsAt":"2023-02-15T06:22:53.676094Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.676093Z","LastActivityAt":"2023-02-15T06:22:53.676094Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676823Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":889,"ScoreAtt":53035,"RankDef":440,"ScoreDef":645389,"RankSup":717,"ScoreSup":42973,"RankTotal":709,"ScoreTotal":741397,"ID":849097898,"Name":"kRolo94","NumVillages":8,"Points":59147,"Rank":656,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097898","BestRank":656,"BestRankAt":"2023-02-15T06:22:53.676094Z","MostPoints":59147,"MostPointsAt":"2023-02-15T06:22:53.676095Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676095Z","LastActivityAt":"2023-02-15T06:22:53.676095Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676823Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1423,"ScoreDef":40562,"RankSup":0,"ScoreSup":0,"RankTotal":1679,"ScoreTotal":40562,"ID":849097924,"Name":"Aragorn93","NumVillages":0,"Points":0,"Rank":3081,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097924","BestRank":3081,"BestRankAt":"2023-02-15T06:22:53.676096Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676096Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676096Z","LastActivityAt":"2023-02-15T06:22:53.676096Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676824Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":444,"ScoreAtt":462761,"RankDef":695,"ScoreDef":275783,"RankSup":631,"ScoreSup":80991,"RankTotal":680,"ScoreTotal":819535,"ID":849097937,"Name":"Krasnetus","NumVillages":25,"Points":219470,"Rank":403,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097937","BestRank":403,"BestRankAt":"2023-02-15T06:22:53.676097Z","MostPoints":219470,"MostPointsAt":"2023-02-15T06:22:53.676098Z","MostVillages":25,"MostVillagesAt":"2023-02-15T06:22:53.676097Z","LastActivityAt":"2023-02-15T06:22:53.676098Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676824Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":920,"ScoreAtt":46717,"RankDef":639,"ScoreDef":337897,"RankSup":804,"ScoreSup":24440,"RankTotal":908,"ScoreTotal":409054,"ID":849097954,"Name":"Mr. Schecter","NumVillages":0,"Points":0,"Rank":3082,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097954","BestRank":3082,"BestRankAt":"2023-02-15T06:22:53.676098Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676099Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676099Z","LastActivityAt":"2023-02-15T06:22:53.676099Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676825Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1091,"ScoreAtt":19316,"RankDef":362,"ScoreDef":848633,"RankSup":828,"ScoreSup":19883,"RankTotal":662,"ScoreTotal":887832,"ID":849097981,"Name":"devaster","NumVillages":8,"Points":67394,"Rank":623,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097981","BestRank":623,"BestRankAt":"2023-02-15T06:22:53.6761Z","MostPoints":67394,"MostPointsAt":"2023-02-15T06:22:53.6761Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.6761Z","LastActivityAt":"2023-02-15T06:22:53.6761Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676825Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":833,"ScoreAtt":70632,"RankDef":1012,"ScoreDef":122932,"RankSup":889,"ScoreSup":13436,"RankTotal":1128,"ScoreTotal":207000,"ID":849098109,"Name":"wojtek11423","NumVillages":0,"Points":0,"Rank":3083,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098109","BestRank":3083,"BestRankAt":"2023-02-15T06:22:53.676101Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676102Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676101Z","LastActivityAt":"2023-02-15T06:22:53.676102Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676826Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1599,"ScoreAtt":1295,"RankDef":1705,"ScoreDef":18680,"RankSup":0,"ScoreSup":0,"RankTotal":1877,"ScoreTotal":19975,"ID":849098132,"Name":"grzegorzzdw","NumVillages":1,"Points":2343,"Rank":1606,"TribeID":1690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098132","BestRank":1606,"BestRankAt":"2023-02-15T06:22:53.676103Z","MostPoints":2343,"MostPointsAt":"2023-02-15T06:22:53.676103Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676103Z","LastActivityAt":"2023-02-15T06:22:53.676103Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676826Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":674,"ScoreAtt":143710,"RankDef":1555,"ScoreDef":29188,"RankSup":1325,"ScoreSup":14,"RankTotal":1204,"ScoreTotal":172912,"ID":849098136,"Name":"Arhibitsus","NumVillages":8,"Points":56988,"Rank":666,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098136","BestRank":666,"BestRankAt":"2023-02-15T06:22:53.676104Z","MostPoints":56988,"MostPointsAt":"2023-02-15T06:22:53.676104Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676104Z","LastActivityAt":"2023-02-15T06:22:53.676105Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676827Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1154,"ScoreAtt":13712,"RankDef":1254,"ScoreDef":62795,"RankSup":1104,"ScoreSup":1838,"RankTotal":1474,"ScoreTotal":78345,"ID":849098159,"Name":"marlis1992","NumVillages":1,"Points":26,"Rank":2832,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098159","BestRank":2832,"BestRankAt":"2023-02-15T06:22:53.676105Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676106Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676105Z","LastActivityAt":"2023-02-15T06:22:53.676106Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676827Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1171,"ScoreDef":78599,"RankSup":0,"ScoreSup":0,"RankTotal":1472,"ScoreTotal":78599,"ID":849098162,"Name":"Baleron1215","NumVillages":0,"Points":0,"Rank":3084,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098162","BestRank":3084,"BestRankAt":"2023-02-15T06:22:53.676106Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676107Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676107Z","LastActivityAt":"2023-02-15T06:22:53.676107Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676828Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1297,"ScoreAtt":6608,"RankDef":1176,"ScoreDef":77774,"RankSup":652,"ScoreSup":72158,"RankTotal":1238,"ScoreTotal":156540,"ID":849098192,"Name":"Guru18","NumVillages":1,"Points":6610,"Rank":1236,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098192","BestRank":1236,"BestRankAt":"2023-02-15T06:22:53.676108Z","MostPoints":6610,"MostPointsAt":"2023-02-15T06:22:53.676108Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676108Z","LastActivityAt":"2023-02-15T06:22:53.676108Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676828Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849098197,"Name":"Dawid4321","NumVillages":1,"Points":26,"Rank":2833,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098197","BestRank":2833,"BestRankAt":"2023-02-15T06:22:53.676109Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676109Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676109Z","LastActivityAt":"2023-02-15T06:22:53.67611Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676829Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":690,"ScoreAtt":138832,"RankDef":713,"ScoreDef":263857,"RankSup":411,"ScoreSup":293715,"RankTotal":734,"ScoreTotal":696404,"ID":849098200,"Name":"pestekkinice","NumVillages":0,"Points":0,"Rank":3085,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098200","BestRank":3085,"BestRankAt":"2023-02-15T06:22:53.67611Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676111Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.67611Z","LastActivityAt":"2023-02-15T06:22:53.676111Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1143,"ScoreAtt":14314,"RankDef":927,"ScoreDef":150804,"RankSup":0,"ScoreSup":0,"RankTotal":1220,"ScoreTotal":165118,"ID":849098217,"Name":"Kapral161","NumVillages":1,"Points":276,"Rank":2200,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098217","BestRank":2200,"BestRankAt":"2023-02-15T06:22:53.676111Z","MostPoints":276,"MostPointsAt":"2023-02-15T06:22:53.676112Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676112Z","LastActivityAt":"2023-02-15T06:22:53.676112Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":391,"ScoreAtt":603107,"RankDef":587,"ScoreDef":392416,"RankSup":453,"ScoreSup":222194,"RankTotal":555,"ScoreTotal":1217717,"ID":849098265,"Name":"Brauer92","NumVillages":1,"Points":26,"Rank":2834,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098265","BestRank":2834,"BestRankAt":"2023-02-15T06:22:53.676113Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676113Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676113Z","LastActivityAt":"2023-02-15T06:22:53.676113Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1101,"ScoreAtt":17879,"RankDef":626,"ScoreDef":346476,"RankSup":339,"ScoreSup":430210,"RankTotal":688,"ScoreTotal":794565,"ID":849098299,"Name":"PParker","NumVillages":12,"Points":61116,"Rank":649,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098299","BestRank":649,"BestRankAt":"2023-02-15T06:22:53.676114Z","MostPoints":61116,"MostPointsAt":"2023-02-15T06:22:53.676114Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.676114Z","LastActivityAt":"2023-02-15T06:22:53.676114Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676831Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1263,"ScoreAtt":7550,"RankDef":591,"ScoreDef":386124,"RankSup":0,"ScoreSup":0,"RankTotal":923,"ScoreTotal":393674,"ID":849098324,"Name":"Merilly","NumVillages":1,"Points":449,"Rank":2059,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098324","BestRank":2059,"BestRankAt":"2023-02-15T06:22:53.676115Z","MostPoints":449,"MostPointsAt":"2023-02-15T06:22:53.676115Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676115Z","LastActivityAt":"2023-02-15T06:22:53.676116Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676832Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1486,"ScoreAtt":2533,"RankDef":1939,"ScoreDef":6700,"RankSup":0,"ScoreSup":0,"RankTotal":2014,"ScoreTotal":9233,"ID":849098326,"Name":"piotrczi","NumVillages":8,"Points":42756,"Rank":729,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098326","BestRank":729,"BestRankAt":"2023-02-15T06:22:53.676116Z","MostPoints":42756,"MostPointsAt":"2023-02-15T06:22:53.676117Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676117Z","LastActivityAt":"2023-02-15T06:22:53.676117Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676832Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":895,"ScoreAtt":52171,"RankDef":1283,"ScoreDef":59434,"RankSup":1067,"ScoreSup":2624,"RankTotal":1345,"ScoreTotal":114229,"ID":849098374,"Name":"ChoraĆŒy Torpeda","NumVillages":1,"Points":4474,"Rank":1373,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098374","BestRank":1373,"BestRankAt":"2023-02-15T06:22:53.676118Z","MostPoints":4474,"MostPointsAt":"2023-02-15T06:22:53.676118Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676118Z","LastActivityAt":"2023-02-15T06:22:53.676118Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676833Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":730,"ScoreAtt":111540,"RankDef":830,"ScoreDef":193931,"RankSup":656,"ScoreSup":68279,"RankTotal":941,"ScoreTotal":373750,"ID":849098387,"Name":"paluchowski","NumVillages":9,"Points":76366,"Rank":598,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098387","BestRank":598,"BestRankAt":"2023-02-15T06:22:53.676119Z","MostPoints":76366,"MostPointsAt":"2023-02-15T06:22:53.676119Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.676119Z","LastActivityAt":"2023-02-15T06:22:53.676119Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676833Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":640,"ScoreAtt":167715,"RankDef":447,"ScoreDef":629870,"RankSup":400,"ScoreSup":316463,"RankTotal":591,"ScoreTotal":1114048,"ID":849098400,"Name":"Milq","NumVillages":2,"Points":4486,"Rank":1371,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098400","BestRank":1371,"BestRankAt":"2023-02-15T06:22:53.67612Z","MostPoints":4486,"MostPointsAt":"2023-02-15T06:22:53.67612Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.67612Z","LastActivityAt":"2023-02-15T06:22:53.676121Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676834Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":989,"ScoreAtt":32790,"RankDef":797,"ScoreDef":212548,"RankSup":0,"ScoreSup":0,"RankTotal":1060,"ScoreTotal":245338,"ID":849098423,"Name":"Tuna93","NumVillages":1,"Points":3013,"Rank":1526,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098423","BestRank":1526,"BestRankAt":"2023-02-15T06:22:53.676121Z","MostPoints":3013,"MostPointsAt":"2023-02-15T06:22:53.676122Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676121Z","LastActivityAt":"2023-02-15T06:22:53.676122Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676834Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1822,"ScoreAtt":161,"RankDef":2049,"ScoreDef":3844,"RankSup":0,"ScoreSup":0,"RankTotal":2169,"ScoreTotal":4005,"ID":849098476,"Name":"beziuleq","NumVillages":0,"Points":0,"Rank":3086,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098476","BestRank":3086,"BestRankAt":"2023-02-15T06:22:53.676122Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676123Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676123Z","LastActivityAt":"2023-02-15T06:22:53.676123Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676835Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1510,"ScoreAtt":2242,"RankDef":2135,"ScoreDef":2146,"RankSup":0,"ScoreSup":0,"RankTotal":2157,"ScoreTotal":4388,"ID":849098477,"Name":"siedlik12345","NumVillages":1,"Points":1362,"Rank":1775,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098477","BestRank":1775,"BestRankAt":"2023-02-15T06:22:53.676124Z","MostPoints":1362,"MostPointsAt":"2023-02-15T06:22:53.676124Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676124Z","LastActivityAt":"2023-02-15T06:22:53.676124Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676835Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":893,"ScoreAtt":52377,"RankDef":571,"ScoreDef":406811,"RankSup":1095,"ScoreSup":2064,"RankTotal":868,"ScoreTotal":461252,"ID":849098516,"Name":"shart3012","NumVillages":0,"Points":0,"Rank":3087,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098516","BestRank":3087,"BestRankAt":"2023-02-15T06:22:53.676127Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676127Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676127Z","LastActivityAt":"2023-02-15T06:22:53.676127Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676836Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1704,"ScoreAtt":560,"RankDef":560,"ScoreDef":421197,"RankSup":1105,"ScoreSup":1831,"RankTotal":892,"ScoreTotal":423588,"ID":849098557,"Name":"chmielek","NumVillages":1,"Points":346,"Rank":2131,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098557","BestRank":2131,"BestRankAt":"2023-02-15T06:22:53.676128Z","MostPoints":346,"MostPointsAt":"2023-02-15T06:22:53.676128Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676128Z","LastActivityAt":"2023-02-15T06:22:53.676128Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676836Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1972,"ScoreAtt":9,"RankDef":1564,"ScoreDef":28607,"RankSup":0,"ScoreSup":0,"RankTotal":1785,"ScoreTotal":28616,"ID":849098592,"Name":"Aga22011993","NumVillages":1,"Points":327,"Rank":2149,"TribeID":1645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098592","BestRank":2149,"BestRankAt":"2023-02-15T06:22:53.676129Z","MostPoints":327,"MostPointsAt":"2023-02-15T06:22:53.676129Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676129Z","LastActivityAt":"2023-02-15T06:22:53.67613Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676837Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2255,"ScoreDef":589,"RankSup":0,"ScoreSup":0,"RankTotal":2338,"ScoreTotal":589,"ID":849098607,"Name":"Goƛć098607","NumVillages":1,"Points":2021,"Rank":1660,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098607","BestRank":1660,"BestRankAt":"2023-02-15T06:22:53.67613Z","MostPoints":2021,"MostPointsAt":"2023-02-15T06:22:53.676131Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67613Z","LastActivityAt":"2023-02-15T06:22:53.676131Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676837Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":471,"ScoreAtt":411701,"RankDef":111,"ScoreDef":3345807,"RankSup":483,"ScoreSup":187817,"RankTotal":237,"ScoreTotal":3945325,"ID":849098628,"Name":"GorącyDelfinek69","NumVillages":20,"Points":65033,"Rank":635,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098628","BestRank":635,"BestRankAt":"2023-02-15T06:22:53.676132Z","MostPoints":65033,"MostPointsAt":"2023-02-15T06:22:53.676132Z","MostVillages":20,"MostVillagesAt":"2023-02-15T06:22:53.676132Z","LastActivityAt":"2023-02-15T06:22:53.676132Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":608,"ScoreAtt":205057,"RankDef":922,"ScoreDef":153075,"RankSup":1106,"ScoreSup":1791,"RankTotal":950,"ScoreTotal":359923,"ID":849098648,"Name":"Kamazer1","NumVillages":9,"Points":63146,"Rank":641,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098648","BestRank":641,"BestRankAt":"2023-02-15T06:22:53.676133Z","MostPoints":63146,"MostPointsAt":"2023-02-15T06:22:53.676133Z","MostVillages":9,"MostVillagesAt":"2023-02-15T06:22:53.676133Z","LastActivityAt":"2023-02-15T06:22:53.676133Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2122,"ScoreDef":2377,"RankSup":0,"ScoreSup":0,"RankTotal":2229,"ScoreTotal":2377,"ID":849098667,"Name":"barcioch","NumVillages":1,"Points":678,"Rank":1961,"TribeID":56,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098667","BestRank":1961,"BestRankAt":"2023-02-15T06:22:53.676134Z","MostPoints":678,"MostPointsAt":"2023-02-15T06:22:53.676134Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676134Z","LastActivityAt":"2023-02-15T06:22:53.676135Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":366,"ScoreAtt":651057,"RankDef":67,"ScoreDef":5024038,"RankSup":205,"ScoreSup":890263,"RankTotal":137,"ScoreTotal":6565358,"ID":849098688,"Name":"Gosia08","NumVillages":41,"Points":348917,"Rank":327,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098688","BestRank":327,"BestRankAt":"2023-02-15T06:22:53.676135Z","MostPoints":348917,"MostPointsAt":"2023-02-15T06:22:53.676136Z","MostVillages":41,"MostVillagesAt":"2023-02-15T06:22:53.676135Z","LastActivityAt":"2023-02-15T06:22:53.676136Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1182,"ScoreAtt":11724,"RankDef":1759,"ScoreDef":14903,"RankSup":1300,"ScoreSup":29,"RankTotal":1806,"ScoreTotal":26656,"ID":849098693,"Name":"1kornik83","NumVillages":10,"Points":70197,"Rank":613,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098693","BestRank":613,"BestRankAt":"2023-02-15T06:22:53.676136Z","MostPoints":70197,"MostPointsAt":"2023-02-15T06:22:53.676137Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.676137Z","LastActivityAt":"2023-02-15T06:22:53.676137Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":406,"ScoreAtt":571334,"RankDef":231,"ScoreDef":1653296,"RankSup":182,"ScoreSup":1088119,"RankTotal":265,"ScoreTotal":3312749,"ID":849098695,"Name":"KiwiThief","NumVillages":35,"Points":263084,"Rank":374,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098695","BestRank":374,"BestRankAt":"2023-02-15T06:22:53.676138Z","MostPoints":263084,"MostPointsAt":"2023-02-15T06:22:53.676138Z","MostVillages":35,"MostVillagesAt":"2023-02-15T06:22:53.676138Z","LastActivityAt":"2023-02-15T06:22:53.676138Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1178,"ScoreAtt":12009,"RankDef":1159,"ScoreDef":81040,"RankSup":1061,"ScoreSup":2724,"RankTotal":1406,"ScoreTotal":95773,"ID":849098724,"Name":"cienki11","NumVillages":2,"Points":7288,"Rank":1202,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098724","BestRank":1202,"BestRankAt":"2023-02-15T06:22:53.676139Z","MostPoints":7288,"MostPointsAt":"2023-02-15T06:22:53.676139Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676139Z","LastActivityAt":"2023-02-15T06:22:53.67614Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1619,"ScoreAtt":1101,"RankDef":500,"ScoreDef":520998,"RankSup":688,"ScoreSup":54906,"RankTotal":784,"ScoreTotal":577005,"ID":849098727,"Name":"Riv93","NumVillages":3,"Points":10825,"Rank":1060,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098727","BestRank":1060,"BestRankAt":"2023-02-15T06:22:53.67614Z","MostPoints":10825,"MostPointsAt":"2023-02-15T06:22:53.676141Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.67614Z","LastActivityAt":"2023-02-15T06:22:53.676141Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2007,"ScoreDef":4805,"RankSup":1236,"ScoreSup":210,"RankTotal":2132,"ScoreTotal":5015,"ID":849098731,"Name":"Maarczu","NumVillages":3,"Points":4550,"Rank":1367,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098731","BestRank":1367,"BestRankAt":"2023-02-15T06:22:53.676141Z","MostPoints":4550,"MostPointsAt":"2023-02-15T06:22:53.676142Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676142Z","LastActivityAt":"2023-02-15T06:22:53.676142Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2115,"ScoreDef":2470,"RankSup":0,"ScoreSup":0,"RankTotal":2225,"ScoreTotal":2470,"ID":849098766,"Name":"Inergio","NumVillages":1,"Points":2851,"Rank":1546,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098766","BestRank":1546,"BestRankAt":"2023-02-15T06:22:53.676143Z","MostPoints":2851,"MostPointsAt":"2023-02-15T06:22:53.676143Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676143Z","LastActivityAt":"2023-02-15T06:22:53.676143Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":252,"ScoreAtt":1098050,"RankDef":1408,"ScoreDef":42447,"RankSup":725,"ScoreSup":41979,"RankTotal":564,"ScoreTotal":1182476,"ID":849098769,"Name":"hesus93","NumVillages":52,"Points":412702,"Rank":297,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098769","BestRank":297,"BestRankAt":"2023-02-15T06:22:53.676144Z","MostPoints":412702,"MostPointsAt":"2023-02-15T06:22:53.676144Z","MostVillages":52,"MostVillagesAt":"2023-02-15T06:22:53.676144Z","LastActivityAt":"2023-02-15T06:22:53.676144Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":845,"ScoreAtt":66456,"RankDef":512,"ScoreDef":498812,"RankSup":0,"ScoreSup":0,"RankTotal":791,"ScoreTotal":565268,"ID":849098774,"Name":"CypisWariat","NumVillages":0,"Points":0,"Rank":3088,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098774","BestRank":3088,"BestRankAt":"2023-02-15T06:22:53.676145Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676146Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676145Z","LastActivityAt":"2023-02-15T06:22:53.676146Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":592,"ScoreAtt":222840,"RankDef":356,"ScoreDef":875364,"RankSup":251,"ScoreSup":692318,"RankTotal":440,"ScoreTotal":1790522,"ID":849098782,"Name":"Kratos007","NumVillages":59,"Points":569850,"Rank":248,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098782","BestRank":248,"BestRankAt":"2023-02-15T06:22:53.676146Z","MostPoints":569850,"MostPointsAt":"2023-02-15T06:22:53.676147Z","MostVillages":59,"MostVillagesAt":"2023-02-15T06:22:53.676147Z","LastActivityAt":"2023-02-15T06:22:53.676147Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":866,"ScoreAtt":59039,"RankDef":1936,"ScoreDef":6751,"RankSup":374,"ScoreSup":359063,"RankTotal":889,"ScoreTotal":424853,"ID":849098784,"Name":"Riko97","NumVillages":2,"Points":4813,"Rank":1343,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098784","BestRank":1343,"BestRankAt":"2023-02-15T06:22:53.676148Z","MostPoints":4813,"MostPointsAt":"2023-02-15T06:22:53.676148Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676148Z","LastActivityAt":"2023-02-15T06:22:53.676148Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":822,"ScoreAtt":72699,"RankDef":431,"ScoreDef":663077,"RankSup":871,"ScoreSup":14681,"RankTotal":706,"ScoreTotal":750457,"ID":849098791,"Name":"ilona12005","NumVillages":1,"Points":5561,"Rank":1299,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098791","BestRank":1299,"BestRankAt":"2023-02-15T06:22:53.676149Z","MostPoints":5561,"MostPointsAt":"2023-02-15T06:22:53.676149Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676149Z","LastActivityAt":"2023-02-15T06:22:53.676149Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1442,"ScoreAtt":3281,"RankDef":2020,"ScoreDef":4509,"RankSup":1056,"ScoreSup":2825,"RankTotal":1991,"ScoreTotal":10615,"ID":849098822,"Name":"SirCharles2","NumVillages":3,"Points":17935,"Rank":952,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098822","BestRank":952,"BestRankAt":"2023-02-15T06:22:53.67615Z","MostPoints":17935,"MostPointsAt":"2023-02-15T06:22:53.67615Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.67615Z","LastActivityAt":"2023-02-15T06:22:53.676151Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1868,"ScoreDef":9469,"RankSup":0,"ScoreSup":0,"RankTotal":2010,"ScoreTotal":9469,"ID":849098827,"Name":"zbrzeziu44","NumVillages":1,"Points":1651,"Rank":1722,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098827","BestRank":1722,"BestRankAt":"2023-02-15T06:22:53.676151Z","MostPoints":1651,"MostPointsAt":"2023-02-15T06:22:53.676152Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676151Z","LastActivityAt":"2023-02-15T06:22:53.676152Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1627,"ScoreAtt":1032,"RankDef":944,"ScoreDef":145901,"RankSup":0,"ScoreSup":0,"RankTotal":1256,"ScoreTotal":146933,"ID":849098848,"Name":"Kufe","NumVillages":0,"Points":0,"Rank":3089,"TribeID":1737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098848","BestRank":3089,"BestRankAt":"2023-02-15T06:22:53.676152Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676153Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676153Z","LastActivityAt":"2023-02-15T06:22:53.676153Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1153,"ScoreAtt":13768,"RankDef":249,"ScoreDef":1517571,"RankSup":1166,"ScoreSup":814,"RankTotal":486,"ScoreTotal":1532153,"ID":849098966,"Name":"GrimS","NumVillages":12,"Points":71352,"Rank":608,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098966","BestRank":608,"BestRankAt":"2023-02-15T06:22:53.676154Z","MostPoints":71352,"MostPointsAt":"2023-02-15T06:22:53.676154Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.676154Z","LastActivityAt":"2023-02-15T06:22:53.676154Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2379,"ScoreDef":34,"RankSup":0,"ScoreSup":0,"RankTotal":2481,"ScoreTotal":34,"ID":849098993,"Name":"bulkas9999333","NumVillages":1,"Points":532,"Rank":2009,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098993","BestRank":2009,"BestRankAt":"2023-02-15T06:22:53.676155Z","MostPoints":532,"MostPointsAt":"2023-02-15T06:22:53.676155Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676155Z","LastActivityAt":"2023-02-15T06:22:53.676156Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":725,"ScoreAtt":113452,"RankDef":89,"ScoreDef":3797508,"RankSup":680,"ScoreSup":57608,"RankTotal":235,"ScoreTotal":3968568,"ID":849099021,"Name":"mibre","NumVillages":0,"Points":0,"Rank":3090,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099021","BestRank":3090,"BestRankAt":"2023-02-15T06:22:53.676156Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676157Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676156Z","LastActivityAt":"2023-02-15T06:22:53.676157Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1188,"ScoreAtt":11289,"RankDef":1993,"ScoreDef":5342,"RankSup":0,"ScoreSup":0,"RankTotal":1912,"ScoreTotal":16631,"ID":849099054,"Name":"GromHellscream","NumVillages":7,"Points":50849,"Rank":687,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099054","BestRank":687,"BestRankAt":"2023-02-15T06:22:53.676157Z","MostPoints":50849,"MostPointsAt":"2023-02-15T06:22:53.676158Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676158Z","LastActivityAt":"2023-02-15T06:22:53.676158Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1729,"ScoreAtt":436,"RankDef":347,"ScoreDef":896468,"RankSup":972,"ScoreSup":6285,"RankTotal":655,"ScoreTotal":903189,"ID":849099105,"Name":"GrandeGallo","NumVillages":0,"Points":0,"Rank":3091,"TribeID":1483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099105","BestRank":3091,"BestRankAt":"2023-02-15T06:22:53.676159Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676159Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676159Z","LastActivityAt":"2023-02-15T06:22:53.676159Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1371,"ScoreAtt":4731,"RankDef":1541,"ScoreDef":30175,"RankSup":0,"ScoreSup":0,"RankTotal":1728,"ScoreTotal":34906,"ID":849099131,"Name":"SzopPracz93","NumVillages":1,"Points":450,"Rank":2058,"TribeID":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099131","BestRank":2058,"BestRankAt":"2023-02-15T06:22:53.67616Z","MostPoints":450,"MostPointsAt":"2023-02-15T06:22:53.67616Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67616Z","LastActivityAt":"2023-02-15T06:22:53.676161Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1256,"ScoreAtt":7910,"RankDef":674,"ScoreDef":293035,"RankSup":975,"ScoreSup":6258,"RankTotal":999,"ScoreTotal":307203,"ID":849099138,"Name":"SkyForce2","NumVillages":1,"Points":2384,"Rank":1597,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099138","BestRank":1597,"BestRankAt":"2023-02-15T06:22:53.676161Z","MostPoints":2384,"MostPointsAt":"2023-02-15T06:22:53.676162Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676161Z","LastActivityAt":"2023-02-15T06:22:53.676162Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1266,"ScoreAtt":7515,"RankDef":1110,"ScoreDef":92621,"RankSup":1198,"ScoreSup":419,"RankTotal":1390,"ScoreTotal":100555,"ID":849099141,"Name":"Rafi43","NumVillages":1,"Points":556,"Rank":2002,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099141","BestRank":2002,"BestRankAt":"2023-02-15T06:22:53.676162Z","MostPoints":556,"MostPointsAt":"2023-02-15T06:22:53.676163Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676163Z","LastActivityAt":"2023-02-15T06:22:53.676163Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1515,"ScoreAtt":2190,"RankDef":836,"ScoreDef":190905,"RankSup":0,"ScoreSup":0,"RankTotal":1153,"ScoreTotal":193095,"ID":849099145,"Name":"Szymon9405","NumVillages":1,"Points":4011,"Rank":1408,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099145","BestRank":1408,"BestRankAt":"2023-02-15T06:22:53.676164Z","MostPoints":4011,"MostPointsAt":"2023-02-15T06:22:53.676164Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676164Z","LastActivityAt":"2023-02-15T06:22:53.676164Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":635,"ScoreAtt":173534,"RankDef":260,"ScoreDef":1430188,"RankSup":463,"ScoreSup":206356,"RankTotal":436,"ScoreTotal":1810078,"ID":849099160,"Name":"FiftyShades","NumVillages":10,"Points":104708,"Rank":529,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099160","BestRank":529,"BestRankAt":"2023-02-15T06:22:53.676165Z","MostPoints":104708,"MostPointsAt":"2023-02-15T06:22:53.676165Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.676165Z","LastActivityAt":"2023-02-15T06:22:53.676165Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849099255,"Name":"tomas289","NumVillages":1,"Points":26,"Rank":2835,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099255","BestRank":2835,"BestRankAt":"2023-02-15T06:22:53.676166Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676166Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676166Z","LastActivityAt":"2023-02-15T06:22:53.676167Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1533,"ScoreAtt":2052,"RankDef":998,"ScoreDef":125081,"RankSup":948,"ScoreSup":7971,"RankTotal":1285,"ScoreTotal":135104,"ID":849099258,"Name":"POLiii","NumVillages":6,"Points":35904,"Rank":769,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099258","BestRank":769,"BestRankAt":"2023-02-15T06:22:53.676167Z","MostPoints":35904,"MostPointsAt":"2023-02-15T06:22:53.676168Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676167Z","LastActivityAt":"2023-02-15T06:22:53.676168Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":374,"ScoreAtt":627988,"RankDef":107,"ScoreDef":3422165,"RankSup":366,"ScoreSup":375632,"RankTotal":215,"ScoreTotal":4425785,"ID":849099276,"Name":"Sosen1","NumVillages":7,"Points":37091,"Rank":761,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099276","BestRank":761,"BestRankAt":"2023-02-15T06:22:53.676169Z","MostPoints":37091,"MostPointsAt":"2023-02-15T06:22:53.676169Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676169Z","LastActivityAt":"2023-02-15T06:22:53.676169Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1383,"ScoreAtt":4537,"RankDef":2090,"ScoreDef":2937,"RankSup":0,"ScoreSup":0,"RankTotal":2060,"ScoreTotal":7474,"ID":849099280,"Name":"staszek233","NumVillages":2,"Points":4831,"Rank":1341,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099280","BestRank":1341,"BestRankAt":"2023-02-15T06:22:53.67617Z","MostPoints":4831,"MostPointsAt":"2023-02-15T06:22:53.67617Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.67617Z","LastActivityAt":"2023-02-15T06:22:53.67617Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":744,"ScoreAtt":105384,"RankDef":2105,"ScoreDef":2640,"RankSup":1023,"ScoreSup":3966,"RankTotal":1352,"ScoreTotal":111990,"ID":849099342,"Name":"Michalxj6","NumVillages":7,"Points":45636,"Rank":714,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099342","BestRank":714,"BestRankAt":"2023-02-15T06:22:53.676171Z","MostPoints":45636,"MostPointsAt":"2023-02-15T06:22:53.676171Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676171Z","LastActivityAt":"2023-02-15T06:22:53.676172Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1684,"ScoreAtt":675,"RankDef":2000,"ScoreDef":5189,"RankSup":0,"ScoreSup":0,"RankTotal":2102,"ScoreTotal":5864,"ID":849099391,"Name":"AzinG","NumVillages":2,"Points":8706,"Rank":1128,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099391","BestRank":1128,"BestRankAt":"2023-02-15T06:22:53.676172Z","MostPoints":8706,"MostPointsAt":"2023-02-15T06:22:53.676173Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676172Z","LastActivityAt":"2023-02-15T06:22:53.676173Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":990,"ScoreAtt":32627,"RankDef":1809,"ScoreDef":11792,"RankSup":0,"ScoreSup":0,"RankTotal":1650,"ScoreTotal":44419,"ID":849099422,"Name":"franekkimono510","NumVillages":11,"Points":60889,"Rank":651,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099422","BestRank":651,"BestRankAt":"2023-02-15T06:22:53.676173Z","MostPoints":60889,"MostPointsAt":"2023-02-15T06:22:53.676174Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676174Z","LastActivityAt":"2023-02-15T06:22:53.676174Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849099425,"Name":"Ponury Grabarz 1995","NumVillages":1,"Points":641,"Rank":1971,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099425","BestRank":1971,"BestRankAt":"2023-02-15T06:22:53.676175Z","MostPoints":641,"MostPointsAt":"2023-02-15T06:22:53.676175Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676175Z","LastActivityAt":"2023-02-15T06:22:53.676175Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":584,"ScoreAtt":234296,"RankDef":1998,"ScoreDef":5261,"RankSup":1338,"ScoreSup":9,"RankTotal":1069,"ScoreTotal":239566,"ID":849099434,"Name":"luverten","NumVillages":11,"Points":86870,"Rank":572,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099434","BestRank":572,"BestRankAt":"2023-02-15T06:22:53.676176Z","MostPoints":86870,"MostPointsAt":"2023-02-15T06:22:53.676176Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676176Z","LastActivityAt":"2023-02-15T06:22:53.676177Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":681,"ScoreAtt":140885,"RankDef":303,"ScoreDef":1143022,"RankSup":811,"ScoreSup":23265,"RankTotal":536,"ScoreTotal":1307172,"ID":849099463,"Name":"mosiekk","NumVillages":5,"Points":37575,"Rank":755,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099463","BestRank":755,"BestRankAt":"2023-02-15T06:22:53.676177Z","MostPoints":37575,"MostPointsAt":"2023-02-15T06:22:53.676178Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676177Z","LastActivityAt":"2023-02-15T06:22:53.676178Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":741,"ScoreAtt":108534,"RankDef":227,"ScoreDef":1669982,"RankSup":543,"ScoreSup":135058,"RankTotal":418,"ScoreTotal":1913574,"ID":849099505,"Name":"Andrzejizator","NumVillages":2,"Points":5116,"Rank":1319,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099505","BestRank":1319,"BestRankAt":"2023-02-15T06:22:53.676178Z","MostPoints":5116,"MostPointsAt":"2023-02-15T06:22:53.676179Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676179Z","LastActivityAt":"2023-02-15T06:22:53.676179Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":982,"ScoreAtt":33402,"RankDef":2107,"ScoreDef":2632,"RankSup":623,"ScoreSup":86647,"RankTotal":1321,"ScoreTotal":122681,"ID":849099517,"Name":"MatWa","NumVillages":5,"Points":37583,"Rank":754,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099517","BestRank":754,"BestRankAt":"2023-02-15T06:22:53.67618Z","MostPoints":37583,"MostPointsAt":"2023-02-15T06:22:53.67618Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.67618Z","LastActivityAt":"2023-02-15T06:22:53.67618Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1461,"ScoreDef":37377,"RankSup":1357,"ScoreSup":5,"RankTotal":1707,"ScoreTotal":37382,"ID":849099541,"Name":"Mrkime","NumVillages":1,"Points":4308,"Rank":1385,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099541","BestRank":1385,"BestRankAt":"2023-02-15T06:22:53.676181Z","MostPoints":4308,"MostPointsAt":"2023-02-15T06:22:53.676181Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676181Z","LastActivityAt":"2023-02-15T06:22:53.676181Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":493,"ScoreAtt":365320,"RankDef":615,"ScoreDef":361712,"RankSup":654,"ScoreSup":69844,"RankTotal":687,"ScoreTotal":796876,"ID":849099544,"Name":"happydrinker","NumVillages":15,"Points":109018,"Rank":522,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099544","BestRank":522,"BestRankAt":"2023-02-15T06:22:53.676182Z","MostPoints":109018,"MostPointsAt":"2023-02-15T06:22:53.676182Z","MostVillages":15,"MostVillagesAt":"2023-02-15T06:22:53.676182Z","LastActivityAt":"2023-02-15T06:22:53.676183Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1602,"ScoreAtt":1277,"RankDef":820,"ScoreDef":197678,"RankSup":0,"ScoreSup":0,"RankTotal":1139,"ScoreTotal":198955,"ID":849099557,"Name":"IZRA","NumVillages":0,"Points":0,"Rank":3092,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099557","BestRank":3092,"BestRankAt":"2023-02-15T06:22:53.676183Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676184Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676184Z","LastActivityAt":"2023-02-15T06:22:53.676184Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1470,"ScoreAtt":2806,"RankDef":2101,"ScoreDef":2742,"RankSup":1141,"ScoreSup":1149,"RankTotal":2078,"ScoreTotal":6697,"ID":849099558,"Name":"Seprinoth","NumVillages":1,"Points":2940,"Rank":1536,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099558","BestRank":1536,"BestRankAt":"2023-02-15T06:22:53.676185Z","MostPoints":2940,"MostPointsAt":"2023-02-15T06:22:53.676185Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676185Z","LastActivityAt":"2023-02-15T06:22:53.676185Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":930,"ScoreAtt":43979,"RankDef":1100,"ScoreDef":94244,"RankSup":1207,"ScoreSup":353,"RankTotal":1275,"ScoreTotal":138576,"ID":849099601,"Name":"Pro100wryj","NumVillages":6,"Points":19798,"Rank":923,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099601","BestRank":923,"BestRankAt":"2023-02-15T06:22:53.676186Z","MostPoints":19798,"MostPointsAt":"2023-02-15T06:22:53.676186Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676186Z","LastActivityAt":"2023-02-15T06:22:53.676186Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1165,"ScoreAtt":12849,"RankDef":694,"ScoreDef":279462,"RankSup":295,"ScoreSup":546735,"RankTotal":672,"ScoreTotal":839046,"ID":849099640,"Name":"DonOrleon","NumVillages":11,"Points":74545,"Rank":601,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099640","BestRank":601,"BestRankAt":"2023-02-15T06:22:53.676187Z","MostPoints":74545,"MostPointsAt":"2023-02-15T06:22:53.676187Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676187Z","LastActivityAt":"2023-02-15T06:22:53.676188Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1554,"ScoreAtt":1813,"RankDef":1839,"ScoreDef":10474,"RankSup":0,"ScoreSup":0,"RankTotal":1963,"ScoreTotal":12287,"ID":849099660,"Name":"ProCzacha","NumVillages":1,"Points":26,"Rank":2836,"TribeID":806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099660","BestRank":2836,"BestRankAt":"2023-02-15T06:22:53.676188Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676189Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676188Z","LastActivityAt":"2023-02-15T06:22:53.676189Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1799,"ScoreAtt":217,"RankDef":1887,"ScoreDef":8484,"RankSup":1053,"ScoreSup":2870,"RankTotal":1976,"ScoreTotal":11571,"ID":849099689,"Name":"seba1234567","NumVillages":3,"Points":11596,"Rank":1047,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099689","BestRank":1047,"BestRankAt":"2023-02-15T06:22:53.676189Z","MostPoints":11596,"MostPointsAt":"2023-02-15T06:22:53.67619Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.67619Z","LastActivityAt":"2023-02-15T06:22:53.67619Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":389,"ScoreAtt":606431,"RankDef":104,"ScoreDef":3496033,"RankSup":1087,"ScoreSup":2212,"RankTotal":231,"ScoreTotal":4104676,"ID":849099696,"Name":"harryson","NumVillages":14,"Points":70870,"Rank":610,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099696","BestRank":610,"BestRankAt":"2023-02-15T06:22:53.676191Z","MostPoints":70870,"MostPointsAt":"2023-02-15T06:22:53.676191Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.676191Z","LastActivityAt":"2023-02-15T06:22:53.676191Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":449,"ScoreAtt":449879,"RankDef":448,"ScoreDef":626275,"RankSup":912,"ScoreSup":10688,"RankTotal":595,"ScoreTotal":1086842,"ID":849099785,"Name":"Kamileq69","NumVillages":1,"Points":26,"Rank":2837,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099785","BestRank":2837,"BestRankAt":"2023-02-15T06:22:53.676192Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676192Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676192Z","LastActivityAt":"2023-02-15T06:22:53.676193Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1396,"ScoreAtt":4243,"RankDef":1123,"ScoreDef":90641,"RankSup":0,"ScoreSup":0,"RankTotal":1412,"ScoreTotal":94884,"ID":849099797,"Name":"dekmax","NumVillages":1,"Points":1523,"Rank":1750,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099797","BestRank":1750,"BestRankAt":"2023-02-15T06:22:53.676193Z","MostPoints":1523,"MostPointsAt":"2023-02-15T06:22:53.676194Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676193Z","LastActivityAt":"2023-02-15T06:22:53.676194Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1402,"ScoreAtt":4143,"RankDef":1688,"ScoreDef":19628,"RankSup":1227,"ScoreSup":241,"RankTotal":1832,"ScoreTotal":24012,"ID":849099804,"Name":"karmelon","NumVillages":1,"Points":2453,"Rank":1591,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099804","BestRank":1591,"BestRankAt":"2023-02-15T06:22:53.676194Z","MostPoints":2453,"MostPointsAt":"2023-02-15T06:22:53.676195Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676195Z","LastActivityAt":"2023-02-15T06:22:53.676195Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1104,"ScoreAtt":17692,"RankDef":574,"ScoreDef":404279,"RankSup":893,"ScoreSup":12688,"RankTotal":881,"ScoreTotal":434659,"ID":849099815,"Name":"CarIsonn","NumVillages":0,"Points":0,"Rank":3093,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099815","BestRank":3093,"BestRankAt":"2023-02-15T06:22:53.676196Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676196Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676196Z","LastActivityAt":"2023-02-15T06:22:53.676196Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1359,"ScoreAtt":5138,"RankDef":1236,"ScoreDef":66449,"RankSup":0,"ScoreSup":0,"RankTotal":1497,"ScoreTotal":71587,"ID":849099859,"Name":"Goƛć099859","NumVillages":1,"Points":3686,"Rank":1443,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099859","BestRank":1443,"BestRankAt":"2023-02-15T06:22:53.676197Z","MostPoints":3686,"MostPointsAt":"2023-02-15T06:22:53.676197Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676197Z","LastActivityAt":"2023-02-15T06:22:53.676197Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1795,"ScoreAtt":225,"RankDef":1087,"ScoreDef":97343,"RankSup":829,"ScoreSup":19666,"RankTotal":1334,"ScoreTotal":117234,"ID":849099864,"Name":"oskar996","NumVillages":1,"Points":5592,"Rank":1296,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099864","BestRank":1296,"BestRankAt":"2023-02-15T06:22:53.676198Z","MostPoints":5592,"MostPointsAt":"2023-02-15T06:22:53.676198Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676198Z","LastActivityAt":"2023-02-15T06:22:53.676199Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":102,"ScoreAtt":3030696,"RankDef":595,"ScoreDef":383398,"RankSup":131,"ScoreSup":1640011,"RankTotal":184,"ScoreTotal":5054105,"ID":849099876,"Name":"heetsik","NumVillages":193,"Points":1804782,"Rank":60,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099876","BestRank":60,"BestRankAt":"2023-02-15T06:22:53.676199Z","MostPoints":1804782,"MostPointsAt":"2023-02-15T06:22:53.6762Z","MostVillages":193,"MostVillagesAt":"2023-02-15T06:22:53.6762Z","LastActivityAt":"2023-02-15T06:22:53.6762Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1485,"ScoreDef":35688,"RankSup":1389,"ScoreSup":2,"RankTotal":1724,"ScoreTotal":35690,"ID":849099887,"Name":"NiedzwiedzWampir","NumVillages":1,"Points":1281,"Rank":1792,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099887","BestRank":1792,"BestRankAt":"2023-02-15T06:22:53.676201Z","MostPoints":1281,"MostPointsAt":"2023-02-15T06:22:53.676201Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676201Z","LastActivityAt":"2023-02-15T06:22:53.676201Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2066,"ScoreDef":3534,"RankSup":1006,"ScoreSup":4902,"RankTotal":2034,"ScoreTotal":8436,"ID":849099924,"Name":"kondzikkk","NumVillages":3,"Points":9710,"Rank":1096,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099924","BestRank":1096,"BestRankAt":"2023-02-15T06:22:53.676202Z","MostPoints":9710,"MostPointsAt":"2023-02-15T06:22:53.676202Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676202Z","LastActivityAt":"2023-02-15T06:22:53.676202Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1087,"ScoreAtt":19616,"RankDef":841,"ScoreDef":187717,"RankSup":0,"ScoreSup":0,"RankTotal":1126,"ScoreTotal":207333,"ID":849099932,"Name":"Mati1995","NumVillages":0,"Points":0,"Rank":3094,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099932","BestRank":3094,"BestRankAt":"2023-02-15T06:22:53.676203Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676203Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676203Z","LastActivityAt":"2023-02-15T06:22:53.676204Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":983,"ScoreAtt":33305,"RankDef":1389,"ScoreDef":45745,"RankSup":1248,"ScoreSup":149,"RankTotal":1464,"ScoreTotal":79199,"ID":849099955,"Name":"VIK97","NumVillages":2,"Points":6297,"Rank":1258,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099955","BestRank":1258,"BestRankAt":"2023-02-15T06:22:53.676204Z","MostPoints":6297,"MostPointsAt":"2023-02-15T06:22:53.676205Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676204Z","LastActivityAt":"2023-02-15T06:22:53.676205Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":564,"ScoreAtt":257553,"RankDef":201,"ScoreDef":1882017,"RankSup":578,"ScoreSup":111873,"RankTotal":376,"ScoreTotal":2251443,"ID":849099965,"Name":"Don Sracze","NumVillages":4,"Points":11524,"Rank":1048,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099965","BestRank":1048,"BestRankAt":"2023-02-15T06:22:53.676205Z","MostPoints":11524,"MostPointsAt":"2023-02-15T06:22:53.676206Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676206Z","LastActivityAt":"2023-02-15T06:22:53.676206Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2251,"ScoreDef":615,"RankSup":0,"ScoreSup":0,"RankTotal":2336,"ScoreTotal":615,"ID":849100006,"Name":"andzia524","NumVillages":1,"Points":3499,"Rank":1464,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100006","BestRank":1464,"BestRankAt":"2023-02-15T06:22:53.676207Z","MostPoints":3499,"MostPointsAt":"2023-02-15T06:22:53.676207Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676207Z","LastActivityAt":"2023-02-15T06:22:53.676207Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1687,"ScoreAtt":670,"RankDef":719,"ScoreDef":262679,"RankSup":0,"ScoreSup":0,"RankTotal":1041,"ScoreTotal":263349,"ID":849100016,"Name":"pawelek113","NumVillages":1,"Points":1695,"Rank":1718,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100016","BestRank":1718,"BestRankAt":"2023-02-15T06:22:53.676208Z","MostPoints":1695,"MostPointsAt":"2023-02-15T06:22:53.676208Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676208Z","LastActivityAt":"2023-02-15T06:22:53.676208Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1344,"ScoreAtt":5351,"RankDef":434,"ScoreDef":648704,"RankSup":0,"ScoreSup":0,"RankTotal":751,"ScoreTotal":654055,"ID":849100034,"Name":"Dyaebel","NumVillages":0,"Points":0,"Rank":3095,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100034","BestRank":3095,"BestRankAt":"2023-02-15T06:22:53.676209Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.67621Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676209Z","LastActivityAt":"2023-02-15T06:22:53.67621Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1189,"ScoreAtt":11228,"RankDef":2215,"ScoreDef":984,"RankSup":475,"ScoreSup":192502,"RankTotal":1132,"ScoreTotal":204714,"ID":849100082,"Name":"malinos29","NumVillages":6,"Points":51311,"Rank":683,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100082","BestRank":683,"BestRankAt":"2023-02-15T06:22:53.67621Z","MostPoints":51311,"MostPointsAt":"2023-02-15T06:22:53.676211Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676211Z","LastActivityAt":"2023-02-15T06:22:53.676211Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1648,"ScoreAtt":850,"RankDef":1653,"ScoreDef":21886,"RankSup":0,"ScoreSup":0,"RankTotal":1841,"ScoreTotal":22736,"ID":849100083,"Name":"paskowy","NumVillages":3,"Points":17637,"Rank":959,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100083","BestRank":959,"BestRankAt":"2023-02-15T06:22:53.676212Z","MostPoints":17637,"MostPointsAt":"2023-02-15T06:22:53.676212Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676212Z","LastActivityAt":"2023-02-15T06:22:53.676212Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2065,"ScoreDef":3581,"RankSup":0,"ScoreSup":0,"RankTotal":2190,"ScoreTotal":3581,"ID":849100089,"Name":"Szymkowiak","NumVillages":1,"Points":26,"Rank":2838,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100089","BestRank":2838,"BestRankAt":"2023-02-15T06:22:53.676213Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676213Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676213Z","LastActivityAt":"2023-02-15T06:22:53.676213Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2131,"ScoreDef":2245,"RankSup":0,"ScoreSup":0,"RankTotal":2234,"ScoreTotal":2245,"ID":849100134,"Name":"Paprykk777","NumVillages":1,"Points":1899,"Rank":1684,"TribeID":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100134","BestRank":1684,"BestRankAt":"2023-02-15T06:22:53.676214Z","MostPoints":1899,"MostPointsAt":"2023-02-15T06:22:53.676214Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676214Z","LastActivityAt":"2023-02-15T06:22:53.676215Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":662,"ScoreAtt":152592,"RankDef":1286,"ScoreDef":59204,"RankSup":196,"ScoreSup":963084,"RankTotal":567,"ScoreTotal":1174880,"ID":849100149,"Name":"kolo123321","NumVillages":14,"Points":108460,"Rank":524,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100149","BestRank":524,"BestRankAt":"2023-02-15T06:22:53.676215Z","MostPoints":108460,"MostPointsAt":"2023-02-15T06:22:53.676216Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.676215Z","LastActivityAt":"2023-02-15T06:22:53.676216Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2232,"ScoreDef":780,"RankSup":0,"ScoreSup":0,"RankTotal":2323,"ScoreTotal":780,"ID":849100162,"Name":"Mag Gywer","NumVillages":1,"Points":2775,"Rank":1553,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100162","BestRank":1553,"BestRankAt":"2023-02-15T06:22:53.676217Z","MostPoints":2775,"MostPointsAt":"2023-02-15T06:22:53.676217Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676217Z","LastActivityAt":"2023-02-15T06:22:53.676217Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1463,"ScoreAtt":2969,"RankDef":2174,"ScoreDef":1650,"RankSup":0,"ScoreSup":0,"RankTotal":2146,"ScoreTotal":4619,"ID":849100199,"Name":"Gra31","NumVillages":0,"Points":0,"Rank":3096,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100199","BestRank":3096,"BestRankAt":"2023-02-15T06:22:53.676218Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676218Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676218Z","LastActivityAt":"2023-02-15T06:22:53.676218Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1343,"ScoreDef":52425,"RankSup":0,"ScoreSup":0,"RankTotal":1599,"ScoreTotal":52425,"ID":849100211,"Name":"Andrew97","NumVillages":0,"Points":0,"Rank":3097,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100211","BestRank":3097,"BestRankAt":"2023-02-15T06:22:53.676219Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676219Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676219Z","LastActivityAt":"2023-02-15T06:22:53.67622Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":857,"ScoreAtt":60742,"RankDef":511,"ScoreDef":501343,"RankSup":0,"ScoreSup":0,"RankTotal":795,"ScoreTotal":562085,"ID":849100228,"Name":"Koziar1999","NumVillages":3,"Points":29789,"Rank":817,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100228","BestRank":817,"BestRankAt":"2023-02-15T06:22:53.67622Z","MostPoints":29789,"MostPointsAt":"2023-02-15T06:22:53.676221Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.67622Z","LastActivityAt":"2023-02-15T06:22:53.676221Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1366,"ScoreAtt":4824,"RankDef":2109,"ScoreDef":2579,"RankSup":563,"ScoreSup":123019,"RankTotal":1297,"ScoreTotal":130422,"ID":849100246,"Name":"atomwaffen","NumVillages":5,"Points":29287,"Rank":822,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100246","BestRank":822,"BestRankAt":"2023-02-15T06:22:53.676221Z","MostPoints":29287,"MostPointsAt":"2023-02-15T06:22:53.676222Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676222Z","LastActivityAt":"2023-02-15T06:22:53.676222Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":535,"ScoreAtt":303071,"RankDef":1021,"ScoreDef":119785,"RankSup":535,"ScoreSup":140462,"RankTotal":793,"ScoreTotal":563318,"ID":849100262,"Name":"YeQiu","NumVillages":19,"Points":172645,"Rank":441,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100262","BestRank":441,"BestRankAt":"2023-02-15T06:22:53.676223Z","MostPoints":172645,"MostPointsAt":"2023-02-15T06:22:53.676223Z","MostVillages":19,"MostVillagesAt":"2023-02-15T06:22:53.676223Z","LastActivityAt":"2023-02-15T06:22:53.676223Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1749,"ScoreAtt":340,"RankDef":1891,"ScoreDef":8264,"RankSup":0,"ScoreSup":0,"RankTotal":2030,"ScoreTotal":8604,"ID":849100288,"Name":"metyh","NumVillages":1,"Points":2696,"Rank":1569,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100288","BestRank":1569,"BestRankAt":"2023-02-15T06:22:53.676224Z","MostPoints":2696,"MostPointsAt":"2023-02-15T06:22:53.676224Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676224Z","LastActivityAt":"2023-02-15T06:22:53.676225Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1404,"ScoreAtt":4129,"RankDef":1426,"ScoreDef":40375,"RankSup":0,"ScoreSup":0,"RankTotal":1649,"ScoreTotal":44504,"ID":849100289,"Name":"GalAnonim94","NumVillages":1,"Points":1457,"Rank":1757,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100289","BestRank":1757,"BestRankAt":"2023-02-15T06:22:53.676225Z","MostPoints":1457,"MostPointsAt":"2023-02-15T06:22:53.676226Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676225Z","LastActivityAt":"2023-02-15T06:22:53.676226Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":476,"ScoreAtt":405020,"RankDef":514,"ScoreDef":497289,"RankSup":567,"ScoreSup":120484,"RankTotal":612,"ScoreTotal":1022793,"ID":849100323,"Name":"zucholag","NumVillages":1,"Points":4875,"Rank":1338,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100323","BestRank":1338,"BestRankAt":"2023-02-15T06:22:53.676226Z","MostPoints":4875,"MostPointsAt":"2023-02-15T06:22:53.676227Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676227Z","LastActivityAt":"2023-02-15T06:22:53.676227Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":381,"ScoreAtt":615081,"RankDef":267,"ScoreDef":1389187,"RankSup":497,"ScoreSup":175071,"RankTotal":385,"ScoreTotal":2179339,"ID":849100349,"Name":"Marass","NumVillages":1,"Points":151,"Rank":2377,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100349","BestRank":2377,"BestRankAt":"2023-02-15T06:22:53.676228Z","MostPoints":151,"MostPointsAt":"2023-02-15T06:22:53.676228Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676228Z","LastActivityAt":"2023-02-15T06:22:53.676228Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1495,"ScoreAtt":2425,"RankDef":1253,"ScoreDef":62892,"RankSup":0,"ScoreSup":0,"RankTotal":1525,"ScoreTotal":65317,"ID":849100352,"Name":"cwiek21","NumVillages":2,"Points":7001,"Rank":1216,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100352","BestRank":1216,"BestRankAt":"2023-02-15T06:22:53.676229Z","MostPoints":7001,"MostPointsAt":"2023-02-15T06:22:53.676229Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676229Z","LastActivityAt":"2023-02-15T06:22:53.676229Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1124,"ScoreAtt":16357,"RankDef":1018,"ScoreDef":120625,"RankSup":0,"ScoreSup":0,"RankTotal":1278,"ScoreTotal":136982,"ID":849100354,"Name":"Boćka","NumVillages":8,"Points":74559,"Rank":600,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100354","BestRank":600,"BestRankAt":"2023-02-15T06:22:53.676232Z","MostPoints":74559,"MostPointsAt":"2023-02-15T06:22:53.676233Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676232Z","LastActivityAt":"2023-02-15T06:22:53.676233Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":842,"ScoreAtt":67666,"RankDef":1483,"ScoreDef":36108,"RankSup":910,"ScoreSup":10793,"RankTotal":1344,"ScoreTotal":114567,"ID":849100383,"Name":"KDJ7","NumVillages":5,"Points":28794,"Rank":826,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100383","BestRank":826,"BestRankAt":"2023-02-15T06:22:53.676233Z","MostPoints":28794,"MostPointsAt":"2023-02-15T06:22:53.676234Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676234Z","LastActivityAt":"2023-02-15T06:22:53.676234Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1727,"ScoreAtt":444,"RankDef":2325,"ScoreDef":195,"RankSup":0,"ScoreSup":0,"RankTotal":2334,"ScoreTotal":639,"ID":849100399,"Name":"huzaj","NumVillages":3,"Points":27084,"Rank":837,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100399","BestRank":837,"BestRankAt":"2023-02-15T06:22:53.676235Z","MostPoints":27084,"MostPointsAt":"2023-02-15T06:22:53.676235Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676235Z","LastActivityAt":"2023-02-15T06:22:53.676235Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1327,"ScoreAtt":5813,"RankDef":1142,"ScoreDef":86066,"RankSup":560,"ScoreSup":126551,"RankTotal":1111,"ScoreTotal":218430,"ID":849100406,"Name":"SEDZIADRED","NumVillages":6,"Points":34136,"Rank":780,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100406","BestRank":780,"BestRankAt":"2023-02-15T06:22:53.676236Z","MostPoints":34136,"MostPointsAt":"2023-02-15T06:22:53.676236Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676236Z","LastActivityAt":"2023-02-15T06:22:53.676236Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1384,"ScoreAtt":4526,"RankDef":2027,"ScoreDef":4333,"RankSup":0,"ScoreSup":0,"RankTotal":2024,"ScoreTotal":8859,"ID":849100439,"Name":"ƚpiący Szaman","NumVillages":1,"Points":1543,"Rank":1746,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100439","BestRank":1746,"BestRankAt":"2023-02-15T06:22:53.676237Z","MostPoints":1543,"MostPointsAt":"2023-02-15T06:22:53.676237Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676237Z","LastActivityAt":"2023-02-15T06:22:53.676238Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":863,"ScoreAtt":59523,"RankDef":883,"ScoreDef":171260,"RankSup":1070,"ScoreSup":2583,"RankTotal":1082,"ScoreTotal":233366,"ID":849100463,"Name":"RaphaelMiner69","NumVillages":0,"Points":0,"Rank":3098,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100463","BestRank":3098,"BestRankAt":"2023-02-15T06:22:53.676238Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676239Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676239Z","LastActivityAt":"2023-02-15T06:22:53.676239Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":780,"ScoreDef":223069,"RankSup":0,"ScoreSup":0,"RankTotal":1105,"ScoreTotal":223069,"ID":849100496,"Name":"DZ4L4","NumVillages":1,"Points":128,"Rank":2428,"TribeID":1258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100496","BestRank":2428,"BestRankAt":"2023-02-15T06:22:53.67624Z","MostPoints":128,"MostPointsAt":"2023-02-15T06:22:53.67624Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67624Z","LastActivityAt":"2023-02-15T06:22:53.67624Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1271,"ScoreAtt":7335,"RankDef":1632,"ScoreDef":23499,"RankSup":0,"ScoreSup":0,"RankTotal":1764,"ScoreTotal":30834,"ID":849100584,"Name":"Matrix9105","NumVillages":0,"Points":0,"Rank":3099,"TribeID":1494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100584","BestRank":3099,"BestRankAt":"2023-02-15T06:22:53.676241Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676241Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676241Z","LastActivityAt":"2023-02-15T06:22:53.676241Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1232,"ScoreAtt":8960,"RankDef":659,"ScoreDef":309505,"RankSup":0,"ScoreSup":0,"RankTotal":988,"ScoreTotal":318465,"ID":849100611,"Name":"amazonka","NumVillages":1,"Points":4878,"Rank":1336,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100611","BestRank":1336,"BestRankAt":"2023-02-15T06:22:53.676242Z","MostPoints":4878,"MostPointsAt":"2023-02-15T06:22:53.676242Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676242Z","LastActivityAt":"2023-02-15T06:22:53.676243Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1477,"ScoreAtt":2735,"RankDef":1797,"ScoreDef":12550,"RankSup":0,"ScoreSup":0,"RankTotal":1931,"ScoreTotal":15285,"ID":849100612,"Name":"MajkelEs","NumVillages":4,"Points":16797,"Rank":970,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100612","BestRank":970,"BestRankAt":"2023-02-15T06:22:53.676243Z","MostPoints":16797,"MostPointsAt":"2023-02-15T06:22:53.676244Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676243Z","LastActivityAt":"2023-02-15T06:22:53.676244Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":543,"ScoreAtt":291713,"RankDef":271,"ScoreDef":1339084,"RankSup":377,"ScoreSup":352525,"RankTotal":409,"ScoreTotal":1983322,"ID":849100615,"Name":"wojas2302","NumVillages":2,"Points":5270,"Rank":1312,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100615","BestRank":1312,"BestRankAt":"2023-02-15T06:22:53.676245Z","MostPoints":5270,"MostPointsAt":"2023-02-15T06:22:53.676245Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676245Z","LastActivityAt":"2023-02-15T06:22:53.676245Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":922,"ScoreAtt":46266,"RankDef":1291,"ScoreDef":58661,"RankSup":1285,"ScoreSup":44,"RankTotal":1375,"ScoreTotal":104971,"ID":849100656,"Name":"KK95VLV","NumVillages":5,"Points":42654,"Rank":730,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100656","BestRank":730,"BestRankAt":"2023-02-15T06:22:53.676246Z","MostPoints":42654,"MostPointsAt":"2023-02-15T06:22:53.676246Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676246Z","LastActivityAt":"2023-02-15T06:22:53.676246Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1192,"ScoreAtt":11131,"RankDef":900,"ScoreDef":166311,"RankSup":0,"ScoreSup":0,"RankTotal":1194,"ScoreTotal":177442,"ID":849100680,"Name":"TadeuszeQW","NumVillages":1,"Points":6421,"Rank":1244,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100680","BestRank":1244,"BestRankAt":"2023-02-15T06:22:53.676247Z","MostPoints":6421,"MostPointsAt":"2023-02-15T06:22:53.676247Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676247Z","LastActivityAt":"2023-02-15T06:22:53.676248Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1670,"ScoreAtt":734,"RankDef":1676,"ScoreDef":20114,"RankSup":0,"ScoreSup":0,"RankTotal":1862,"ScoreTotal":20848,"ID":849100743,"Name":"Developer1994","NumVillages":0,"Points":0,"Rank":3100,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100743","BestRank":3100,"BestRankAt":"2023-02-15T06:22:53.676248Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676249Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676248Z","LastActivityAt":"2023-02-15T06:22:53.676249Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1217,"ScoreAtt":9993,"RankDef":800,"ScoreDef":210497,"RankSup":858,"ScoreSup":16051,"RankTotal":1074,"ScoreTotal":236541,"ID":849100744,"Name":"Totomoose","NumVillages":6,"Points":17558,"Rank":961,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100744","BestRank":961,"BestRankAt":"2023-02-15T06:22:53.676249Z","MostPoints":17558,"MostPointsAt":"2023-02-15T06:22:53.67625Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.67625Z","LastActivityAt":"2023-02-15T06:22:53.67625Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1746,"ScoreAtt":344,"RankDef":2362,"ScoreDef":54,"RankSup":1257,"ScoreSup":103,"RankTotal":2348,"ScoreTotal":501,"ID":849100760,"Name":"Majerasz","NumVillages":1,"Points":949,"Rank":1880,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100760","BestRank":1880,"BestRankAt":"2023-02-15T06:22:53.676251Z","MostPoints":949,"MostPointsAt":"2023-02-15T06:22:53.676251Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676251Z","LastActivityAt":"2023-02-15T06:22:53.676251Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1326,"ScoreAtt":5817,"RankDef":2152,"ScoreDef":1898,"RankSup":1206,"ScoreSup":356,"RankTotal":2041,"ScoreTotal":8071,"ID":849100782,"Name":"Lord Pat Gla","NumVillages":2,"Points":6741,"Rank":1229,"TribeID":1261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100782","BestRank":1229,"BestRankAt":"2023-02-15T06:22:53.676252Z","MostPoints":6741,"MostPointsAt":"2023-02-15T06:22:53.676252Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676252Z","LastActivityAt":"2023-02-15T06:22:53.676252Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":927,"ScoreAtt":44762,"RankDef":1970,"ScoreDef":5807,"RankSup":1187,"ScoreSup":499,"RankTotal":1607,"ScoreTotal":51068,"ID":849100787,"Name":"Drwal 95 PL","NumVillages":3,"Points":9885,"Rank":1087,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100787","BestRank":1087,"BestRankAt":"2023-02-15T06:22:53.676253Z","MostPoints":9885,"MostPointsAt":"2023-02-15T06:22:53.676254Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676253Z","LastActivityAt":"2023-02-15T06:22:53.676254Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1079,"ScoreAtt":20304,"RankDef":2240,"ScoreDef":744,"RankSup":0,"ScoreSup":0,"RankTotal":1859,"ScoreTotal":21048,"ID":849100796,"Name":"Elzap","NumVillages":3,"Points":17877,"Rank":954,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100796","BestRank":954,"BestRankAt":"2023-02-15T06:22:53.676254Z","MostPoints":17877,"MostPointsAt":"2023-02-15T06:22:53.676255Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676255Z","LastActivityAt":"2023-02-15T06:22:53.676255Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":673,"ScoreAtt":144153,"RankDef":393,"ScoreDef":769844,"RankSup":519,"ScoreSup":153677,"RankTotal":603,"ScoreTotal":1067674,"ID":849100811,"Name":"KOSSARII","NumVillages":1,"Points":2546,"Rank":1581,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100811","BestRank":1581,"BestRankAt":"2023-02-15T06:22:53.676256Z","MostPoints":2546,"MostPointsAt":"2023-02-15T06:22:53.676256Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676256Z","LastActivityAt":"2023-02-15T06:22:53.676256Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1024,"ScoreAtt":27265,"RankDef":529,"ScoreDef":482585,"RankSup":0,"ScoreSup":0,"RankTotal":834,"ScoreTotal":509850,"ID":849100814,"Name":"Aksente","NumVillages":8,"Points":25926,"Rank":850,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100814","BestRank":850,"BestRankAt":"2023-02-15T06:22:53.676257Z","MostPoints":25926,"MostPointsAt":"2023-02-15T06:22:53.676257Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676257Z","LastActivityAt":"2023-02-15T06:22:53.676257Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2226,"ScoreDef":807,"RankSup":0,"ScoreSup":0,"RankTotal":2317,"ScoreTotal":807,"ID":849100815,"Name":"Mercedes450","NumVillages":0,"Points":0,"Rank":3101,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100815","BestRank":3101,"BestRankAt":"2023-02-15T06:22:53.676258Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676258Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676258Z","LastActivityAt":"2023-02-15T06:22:53.676259Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1538,"ScoreDef":30265,"RankSup":0,"ScoreSup":0,"RankTotal":1769,"ScoreTotal":30265,"ID":849100827,"Name":"Ramboq123","NumVillages":0,"Points":0,"Rank":3102,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100827","BestRank":3102,"BestRankAt":"2023-02-15T06:22:53.676259Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.67626Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.67626Z","LastActivityAt":"2023-02-15T06:22:53.67626Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849100836,"Name":"patryczekpyrka96","NumVillages":1,"Points":26,"Rank":2839,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100836","BestRank":2839,"BestRankAt":"2023-02-15T06:22:53.676261Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676261Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676261Z","LastActivityAt":"2023-02-15T06:22:53.676261Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":904,"ScoreAtt":49041,"RankDef":2104,"ScoreDef":2649,"RankSup":0,"ScoreSup":0,"RankTotal":1604,"ScoreTotal":51690,"ID":849100877,"Name":"SteveTƂok","NumVillages":8,"Points":50886,"Rank":686,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100877","BestRank":686,"BestRankAt":"2023-02-15T06:22:53.676262Z","MostPoints":50886,"MostPointsAt":"2023-02-15T06:22:53.676262Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676262Z","LastActivityAt":"2023-02-15T06:22:53.676262Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1006,"ScoreAtt":29329,"RankDef":1089,"ScoreDef":97043,"RankSup":1215,"ScoreSup":314,"RankTotal":1307,"ScoreTotal":126686,"ID":849100882,"Name":"Elesar Aragorn","NumVillages":0,"Points":0,"Rank":3103,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100882","BestRank":3103,"BestRankAt":"2023-02-15T06:22:53.676263Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676263Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676263Z","LastActivityAt":"2023-02-15T06:22:53.676264Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1726,"ScoreAtt":458,"RankDef":1689,"ScoreDef":19583,"RankSup":0,"ScoreSup":0,"RankTotal":1875,"ScoreTotal":20041,"ID":849100891,"Name":"SƂowianie","NumVillages":1,"Points":550,"Rank":2006,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100891","BestRank":2006,"BestRankAt":"2023-02-15T06:22:53.676264Z","MostPoints":550,"MostPointsAt":"2023-02-15T06:22:53.676265Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676264Z","LastActivityAt":"2023-02-15T06:22:53.676265Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":359,"ScoreAtt":664187,"RankDef":469,"ScoreDef":565298,"RankSup":1260,"ScoreSup":97,"RankTotal":551,"ScoreTotal":1229582,"ID":849100994,"Name":"Merlic","NumVillages":22,"Points":176079,"Rank":438,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100994","BestRank":438,"BestRankAt":"2023-02-15T06:22:53.676265Z","MostPoints":176079,"MostPointsAt":"2023-02-15T06:22:53.676266Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.676266Z","LastActivityAt":"2023-02-15T06:22:53.676266Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1265,"ScoreAtt":7521,"RankDef":1587,"ScoreDef":26407,"RankSup":0,"ScoreSup":0,"RankTotal":1735,"ScoreTotal":33928,"ID":849101018,"Name":"sebastianxxx19","NumVillages":1,"Points":2979,"Rank":1531,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101018","BestRank":1531,"BestRankAt":"2023-02-15T06:22:53.676267Z","MostPoints":2979,"MostPointsAt":"2023-02-15T06:22:53.676267Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676267Z","LastActivityAt":"2023-02-15T06:22:53.676267Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":739,"ScoreAtt":108930,"RankDef":1298,"ScoreDef":58021,"RankSup":0,"ScoreSup":0,"RankTotal":1217,"ScoreTotal":166951,"ID":849101029,"Name":"bela831","NumVillages":13,"Points":90323,"Rank":561,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101029","BestRank":561,"BestRankAt":"2023-02-15T06:22:53.676268Z","MostPoints":90323,"MostPointsAt":"2023-02-15T06:22:53.676268Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.676268Z","LastActivityAt":"2023-02-15T06:22:53.676269Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1142,"ScoreAtt":14496,"RankDef":1031,"ScoreDef":115474,"RankSup":604,"ScoreSup":96446,"RankTotal":1096,"ScoreTotal":226416,"ID":849101083,"Name":"PIROTECHNIK","NumVillages":14,"Points":50220,"Rank":690,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101083","BestRank":690,"BestRankAt":"2023-02-15T06:22:53.676269Z","MostPoints":50220,"MostPointsAt":"2023-02-15T06:22:53.67627Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.676269Z","LastActivityAt":"2023-02-15T06:22:53.67627Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":886,"ScoreAtt":54167,"RankDef":832,"ScoreDef":193600,"RankSup":0,"ScoreSup":0,"RankTotal":1055,"ScoreTotal":247767,"ID":849101092,"Name":"brajanacm","NumVillages":5,"Points":30996,"Rank":805,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101092","BestRank":805,"BestRankAt":"2023-02-15T06:22:53.67627Z","MostPoints":30996,"MostPointsAt":"2023-02-15T06:22:53.676271Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676271Z","LastActivityAt":"2023-02-15T06:22:53.676271Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":907,"ScoreAtt":48425,"RankDef":1230,"ScoreDef":67519,"RankSup":0,"ScoreSup":0,"RankTotal":1340,"ScoreTotal":115944,"ID":849101102,"Name":"skuzmi","NumVillages":6,"Points":46662,"Rank":707,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101102","BestRank":707,"BestRankAt":"2023-02-15T06:22:53.676272Z","MostPoints":46662,"MostPointsAt":"2023-02-15T06:22:53.676272Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676272Z","LastActivityAt":"2023-02-15T06:22:53.676272Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1658,"ScoreAtt":793,"RankDef":870,"ScoreDef":179253,"RankSup":1112,"ScoreSup":1626,"RankTotal":1185,"ScoreTotal":181672,"ID":849101104,"Name":"beazy","NumVillages":1,"Points":3898,"Rank":1420,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101104","BestRank":1420,"BestRankAt":"2023-02-15T06:22:53.676273Z","MostPoints":3898,"MostPointsAt":"2023-02-15T06:22:53.676273Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676273Z","LastActivityAt":"2023-02-15T06:22:53.676273Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1031,"ScoreAtt":26544,"RankDef":2102,"ScoreDef":2711,"RankSup":1042,"ScoreSup":3243,"RankTotal":1751,"ScoreTotal":32498,"ID":849101108,"Name":"rafisonik2","NumVillages":10,"Points":68713,"Rank":618,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101108","BestRank":618,"BestRankAt":"2023-02-15T06:22:53.676274Z","MostPoints":68713,"MostPointsAt":"2023-02-15T06:22:53.676274Z","MostVillages":10,"MostVillagesAt":"2023-02-15T06:22:53.676274Z","LastActivityAt":"2023-02-15T06:22:53.676275Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":501,"ScoreAtt":348746,"RankDef":338,"ScoreDef":929257,"RankSup":600,"ScoreSup":99044,"RankTotal":520,"ScoreTotal":1377047,"ID":849101116,"Name":"kaban1988","NumVillages":7,"Points":42907,"Rank":727,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101116","BestRank":727,"BestRankAt":"2023-02-15T06:22:53.676275Z","MostPoints":42907,"MostPointsAt":"2023-02-15T06:22:53.676276Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676276Z","LastActivityAt":"2023-02-15T06:22:53.676276Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1607,"ScoreAtt":1244,"RankDef":815,"ScoreDef":201298,"RankSup":0,"ScoreSup":0,"RankTotal":1136,"ScoreTotal":202542,"ID":849101132,"Name":"Maciek2001PL","NumVillages":0,"Points":0,"Rank":3104,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101132","BestRank":3104,"BestRankAt":"2023-02-15T06:22:53.676277Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676277Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676277Z","LastActivityAt":"2023-02-15T06:22:53.676277Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1717,"ScoreDef":17634,"RankSup":0,"ScoreSup":0,"RankTotal":1895,"ScoreTotal":17634,"ID":849101135,"Name":"DZIMMMI","NumVillages":1,"Points":9724,"Rank":1094,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101135","BestRank":1094,"BestRankAt":"2023-02-15T06:22:53.676278Z","MostPoints":9724,"MostPointsAt":"2023-02-15T06:22:53.676278Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676278Z","LastActivityAt":"2023-02-15T06:22:53.676278Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1642,"ScoreAtt":893,"RankDef":2210,"ScoreDef":1080,"RankSup":1384,"ScoreSup":2,"RankTotal":2249,"ScoreTotal":1975,"ID":849101144,"Name":"Pascal277","NumVillages":3,"Points":16743,"Rank":971,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101144","BestRank":971,"BestRankAt":"2023-02-15T06:22:53.676279Z","MostPoints":16743,"MostPointsAt":"2023-02-15T06:22:53.676279Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676279Z","LastActivityAt":"2023-02-15T06:22:53.67628Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1305,"ScoreAtt":6502,"RankDef":902,"ScoreDef":165276,"RankSup":924,"ScoreSup":9830,"RankTotal":1186,"ScoreTotal":181608,"ID":849101148,"Name":"Herom","NumVillages":8,"Points":61442,"Rank":647,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101148","BestRank":647,"BestRankAt":"2023-02-15T06:22:53.67628Z","MostPoints":61442,"MostPointsAt":"2023-02-15T06:22:53.676281Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.67628Z","LastActivityAt":"2023-02-15T06:22:53.676281Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":627,"ScoreAtt":181158,"RankDef":1287,"ScoreDef":58961,"RankSup":1044,"ScoreSup":3102,"RankTotal":1065,"ScoreTotal":243221,"ID":849101162,"Name":"Transporter77","NumVillages":27,"Points":129625,"Rank":494,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101162","BestRank":494,"BestRankAt":"2023-02-15T06:22:53.676281Z","MostPoints":129625,"MostPointsAt":"2023-02-15T06:22:53.676282Z","MostVillages":27,"MostVillagesAt":"2023-02-15T06:22:53.676282Z","LastActivityAt":"2023-02-15T06:22:53.676282Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1527,"ScoreAtt":2112,"RankDef":2231,"ScoreDef":790,"RankSup":0,"ScoreSup":0,"RankTotal":2210,"ScoreTotal":2902,"ID":849101177,"Name":"Bunkier u Mariana","NumVillages":1,"Points":8264,"Rank":1147,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101177","BestRank":1147,"BestRankAt":"2023-02-15T06:22:53.676283Z","MostPoints":8264,"MostPointsAt":"2023-02-15T06:22:53.676283Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676283Z","LastActivityAt":"2023-02-15T06:22:53.676283Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1042,"ScoreAtt":24677,"RankDef":647,"ScoreDef":325425,"RankSup":967,"ScoreSup":6854,"RankTotal":955,"ScoreTotal":356956,"ID":849101186,"Name":"Karki98","NumVillages":1,"Points":312,"Rank":2163,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101186","BestRank":2163,"BestRankAt":"2023-02-15T06:22:53.676284Z","MostPoints":312,"MostPointsAt":"2023-02-15T06:22:53.676284Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676284Z","LastActivityAt":"2023-02-15T06:22:53.676285Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1294,"ScoreAtt":6628,"RankDef":1273,"ScoreDef":60298,"RankSup":622,"ScoreSup":86655,"RankTotal":1239,"ScoreTotal":153581,"ID":849101205,"Name":"Adixkod","NumVillages":17,"Points":83347,"Rank":577,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101205","BestRank":577,"BestRankAt":"2023-02-15T06:22:53.676285Z","MostPoints":83347,"MostPointsAt":"2023-02-15T06:22:53.676286Z","MostVillages":17,"MostVillagesAt":"2023-02-15T06:22:53.676285Z","LastActivityAt":"2023-02-15T06:22:53.676286Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1274,"ScoreAtt":7197,"RankDef":1133,"ScoreDef":87741,"RankSup":0,"ScoreSup":0,"RankTotal":1410,"ScoreTotal":94938,"ID":849101224,"Name":"Max2255","NumVillages":1,"Points":925,"Rank":1884,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101224","BestRank":1884,"BestRankAt":"2023-02-15T06:22:53.676286Z","MostPoints":925,"MostPointsAt":"2023-02-15T06:22:53.676287Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676287Z","LastActivityAt":"2023-02-15T06:22:53.676287Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6769Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1613,"ScoreAtt":1188,"RankDef":1787,"ScoreDef":13355,"RankSup":0,"ScoreSup":0,"RankTotal":1936,"ScoreTotal":14543,"ID":849101232,"Name":"Szuwi","NumVillages":0,"Points":0,"Rank":3105,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101232","BestRank":3105,"BestRankAt":"2023-02-15T06:22:53.676288Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676288Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676288Z","LastActivityAt":"2023-02-15T06:22:53.676288Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6769Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":973,"ScoreAtt":34436,"RankDef":913,"ScoreDef":157598,"RankSup":1163,"ScoreSup":866,"RankTotal":1155,"ScoreTotal":192900,"ID":849101248,"Name":"kaatbus","NumVillages":0,"Points":0,"Rank":3106,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101248","BestRank":3106,"BestRankAt":"2023-02-15T06:22:53.676289Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676289Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676289Z","LastActivityAt":"2023-02-15T06:22:53.676289Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1718,"ScoreAtt":492,"RankDef":2070,"ScoreDef":3441,"RankSup":0,"ScoreSup":0,"RankTotal":2174,"ScoreTotal":3933,"ID":849101268,"Name":"kaga","NumVillages":13,"Points":65081,"Rank":634,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101268","BestRank":634,"BestRankAt":"2023-02-15T06:22:53.67629Z","MostPoints":65081,"MostPointsAt":"2023-02-15T06:22:53.676291Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.67629Z","LastActivityAt":"2023-02-15T06:22:53.676291Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1736,"ScoreAtt":382,"RankDef":1510,"ScoreDef":32896,"RankSup":744,"ScoreSup":37312,"RankTotal":1503,"ScoreTotal":70590,"ID":849101276,"Name":"Witololo","NumVillages":5,"Points":13048,"Rank":1028,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101276","BestRank":1028,"BestRankAt":"2023-02-15T06:22:53.676291Z","MostPoints":13048,"MostPointsAt":"2023-02-15T06:22:53.676292Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676292Z","LastActivityAt":"2023-02-15T06:22:53.676292Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1965,"ScoreDef":5898,"RankSup":0,"ScoreSup":0,"RankTotal":2100,"ScoreTotal":5898,"ID":849101284,"Name":"TraktorWiktor","NumVillages":1,"Points":334,"Rank":2143,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101284","BestRank":2143,"BestRankAt":"2023-02-15T06:22:53.676293Z","MostPoints":334,"MostPointsAt":"2023-02-15T06:22:53.676293Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676293Z","LastActivityAt":"2023-02-15T06:22:53.676293Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1368,"ScoreAtt":4755,"RankDef":1129,"ScoreDef":88713,"RankSup":0,"ScoreSup":0,"RankTotal":1418,"ScoreTotal":93468,"ID":849101291,"Name":"wiras123","NumVillages":0,"Points":0,"Rank":3107,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101291","BestRank":3107,"BestRankAt":"2023-02-15T06:22:53.676294Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676294Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676294Z","LastActivityAt":"2023-02-15T06:22:53.676294Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1655,"ScoreAtt":800,"RankDef":1403,"ScoreDef":43403,"RankSup":0,"ScoreSup":0,"RankTotal":1651,"ScoreTotal":44203,"ID":849101293,"Name":"CatsDad","NumVillages":2,"Points":8502,"Rank":1135,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101293","BestRank":1135,"BestRankAt":"2023-02-15T06:22:53.676295Z","MostPoints":8502,"MostPointsAt":"2023-02-15T06:22:53.676295Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676295Z","LastActivityAt":"2023-02-15T06:22:53.676296Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1453,"ScoreDef":38129,"RankSup":1048,"ScoreSup":3009,"RankTotal":1673,"ScoreTotal":41138,"ID":849101309,"Name":"Dawideq102","NumVillages":7,"Points":27836,"Rank":832,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101309","BestRank":832,"BestRankAt":"2023-02-15T06:22:53.676296Z","MostPoints":27836,"MostPointsAt":"2023-02-15T06:22:53.676297Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676296Z","LastActivityAt":"2023-02-15T06:22:53.676297Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1397,"ScoreAtt":4238,"RankDef":630,"ScoreDef":343399,"RankSup":0,"ScoreSup":0,"RankTotal":964,"ScoreTotal":347637,"ID":849101311,"Name":"Adrian11234595","NumVillages":1,"Points":4075,"Rank":1404,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101311","BestRank":1404,"BestRankAt":"2023-02-15T06:22:53.676298Z","MostPoints":4075,"MostPointsAt":"2023-02-15T06:22:53.676298Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676298Z","LastActivityAt":"2023-02-15T06:22:53.676298Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":882,"ScoreAtt":55172,"RankDef":499,"ScoreDef":521348,"RankSup":0,"ScoreSup":0,"RankTotal":785,"ScoreTotal":576520,"ID":849101377,"Name":"HashandTag","NumVillages":2,"Points":10802,"Rank":1061,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101377","BestRank":1061,"BestRankAt":"2023-02-15T06:22:53.676299Z","MostPoints":10802,"MostPointsAt":"2023-02-15T06:22:53.676299Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676299Z","LastActivityAt":"2023-02-15T06:22:53.676299Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":650,"ScoreAtt":157607,"RankDef":824,"ScoreDef":196272,"RankSup":229,"ScoreSup":768201,"RankTotal":589,"ScoreTotal":1122080,"ID":849101378,"Name":"KieƂba","NumVillages":12,"Points":98806,"Rank":543,"TribeID":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101378","BestRank":543,"BestRankAt":"2023-02-15T06:22:53.6763Z","MostPoints":98806,"MostPointsAt":"2023-02-15T06:22:53.6763Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.6763Z","LastActivityAt":"2023-02-15T06:22:53.676301Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":976,"ScoreAtt":33988,"RankDef":1445,"ScoreDef":38743,"RankSup":0,"ScoreSup":0,"RankTotal":1490,"ScoreTotal":72731,"ID":849101382,"Name":"ewaa","NumVillages":2,"Points":9872,"Rank":1088,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101382","BestRank":1088,"BestRankAt":"2023-02-15T06:22:53.676301Z","MostPoints":9872,"MostPointsAt":"2023-02-15T06:22:53.676302Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676301Z","LastActivityAt":"2023-02-15T06:22:53.676302Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1583,"ScoreAtt":1471,"RankDef":978,"ScoreDef":131129,"RankSup":1055,"ScoreSup":2835,"RankTotal":1283,"ScoreTotal":135435,"ID":849101391,"Name":"dark.lady","NumVillages":0,"Points":0,"Rank":3108,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101391","BestRank":3108,"BestRankAt":"2023-02-15T06:22:53.676302Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676303Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676303Z","LastActivityAt":"2023-02-15T06:22:53.676303Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849101396,"Name":"Robert Nowakowski Jan","NumVillages":1,"Points":26,"Rank":2840,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101396","BestRank":2840,"BestRankAt":"2023-02-15T06:22:53.676304Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676304Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676304Z","LastActivityAt":"2023-02-15T06:22:53.676304Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849101403,"Name":"sabaciorz","NumVillages":1,"Points":26,"Rank":2841,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101403","BestRank":2841,"BestRankAt":"2023-02-15T06:22:53.676305Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676305Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676305Z","LastActivityAt":"2023-02-15T06:22:53.676305Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1499,"ScoreAtt":2412,"RankDef":2001,"ScoreDef":5064,"RankSup":0,"ScoreSup":0,"RankTotal":2059,"ScoreTotal":7476,"ID":849101409,"Name":"StachodĆŒons93","NumVillages":5,"Points":15538,"Rank":989,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101409","BestRank":989,"BestRankAt":"2023-02-15T06:22:53.676306Z","MostPoints":15538,"MostPointsAt":"2023-02-15T06:22:53.676307Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676306Z","LastActivityAt":"2023-02-15T06:22:53.676307Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2200,"ScoreDef":1201,"RankSup":0,"ScoreSup":0,"RankTotal":2301,"ScoreTotal":1201,"ID":849101443,"Name":"Specjalista007","NumVillages":0,"Points":0,"Rank":3109,"TribeID":1372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101443","BestRank":3109,"BestRankAt":"2023-02-15T06:22:53.676307Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676308Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676308Z","LastActivityAt":"2023-02-15T06:22:53.676308Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1163,"ScoreAtt":12984,"RankDef":1576,"ScoreDef":27759,"RankSup":1356,"ScoreSup":5,"RankTotal":1677,"ScoreTotal":40748,"ID":849101526,"Name":"qbaa.d","NumVillages":3,"Points":10530,"Rank":1071,"TribeID":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101526","BestRank":1071,"BestRankAt":"2023-02-15T06:22:53.676309Z","MostPoints":10530,"MostPointsAt":"2023-02-15T06:22:53.676309Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676309Z","LastActivityAt":"2023-02-15T06:22:53.676309Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1744,"ScoreAtt":349,"RankDef":1478,"ScoreDef":36242,"RankSup":0,"ScoreSup":0,"RankTotal":1716,"ScoreTotal":36591,"ID":849101578,"Name":"FIFI121212","NumVillages":1,"Points":1017,"Rank":1857,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101578","BestRank":1857,"BestRankAt":"2023-02-15T06:22:53.67631Z","MostPoints":1017,"MostPointsAt":"2023-02-15T06:22:53.67631Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67631Z","LastActivityAt":"2023-02-15T06:22:53.67631Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1430,"ScoreAtt":3582,"RankDef":823,"ScoreDef":197168,"RankSup":485,"ScoreSup":185681,"RankTotal":930,"ScoreTotal":386431,"ID":849101579,"Name":"Duszkowsky","NumVillages":1,"Points":5712,"Rank":1287,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101579","BestRank":1287,"BestRankAt":"2023-02-15T06:22:53.676311Z","MostPoints":5712,"MostPointsAt":"2023-02-15T06:22:53.676311Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676311Z","LastActivityAt":"2023-02-15T06:22:53.676312Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":709,"ScoreAtt":123833,"RankDef":1184,"ScoreDef":76122,"RankSup":685,"ScoreSup":55880,"RankTotal":1049,"ScoreTotal":255835,"ID":849101580,"Name":"michy","NumVillages":0,"Points":0,"Rank":3110,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101580","BestRank":3110,"BestRankAt":"2023-02-15T06:22:53.676312Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676313Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676313Z","LastActivityAt":"2023-02-15T06:22:53.676313Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1748,"ScoreAtt":341,"RankDef":2253,"ScoreDef":606,"RankSup":0,"ScoreSup":0,"RankTotal":2307,"ScoreTotal":947,"ID":849101581,"Name":"Siepacz","NumVillages":1,"Points":4103,"Rank":1402,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101581","BestRank":1402,"BestRankAt":"2023-02-15T06:22:53.676314Z","MostPoints":4103,"MostPointsAt":"2023-02-15T06:22:53.676314Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676314Z","LastActivityAt":"2023-02-15T06:22:53.676314Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":967,"ScoreAtt":35840,"RankDef":1092,"ScoreDef":95569,"RankSup":522,"ScoreSup":149913,"RankTotal":1021,"ScoreTotal":281322,"ID":849101604,"Name":"konradboss","NumVillages":14,"Points":74309,"Rank":602,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101604","BestRank":602,"BestRankAt":"2023-02-15T06:22:53.676315Z","MostPoints":74309,"MostPointsAt":"2023-02-15T06:22:53.676315Z","MostVillages":14,"MostVillagesAt":"2023-02-15T06:22:53.676315Z","LastActivityAt":"2023-02-15T06:22:53.676315Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2021,"ScoreDef":4462,"RankSup":0,"ScoreSup":0,"RankTotal":2154,"ScoreTotal":4462,"ID":849101646,"Name":"tomekjasko","NumVillages":1,"Points":144,"Rank":2384,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101646","BestRank":2384,"BestRankAt":"2023-02-15T06:22:53.676316Z","MostPoints":144,"MostPointsAt":"2023-02-15T06:22:53.676316Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676316Z","LastActivityAt":"2023-02-15T06:22:53.676317Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1414,"ScoreAtt":3923,"RankDef":2380,"ScoreDef":32,"RankSup":1148,"ScoreSup":1041,"RankTotal":2136,"ScoreTotal":4996,"ID":849101647,"Name":"Ketarsky","NumVillages":6,"Points":33799,"Rank":781,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101647","BestRank":781,"BestRankAt":"2023-02-15T06:22:53.676317Z","MostPoints":33799,"MostPointsAt":"2023-02-15T06:22:53.676318Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676317Z","LastActivityAt":"2023-02-15T06:22:53.676318Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":786,"ScoreAtt":87038,"RankDef":1499,"ScoreDef":34147,"RankSup":935,"ScoreSup":9088,"RankTotal":1298,"ScoreTotal":130273,"ID":849101652,"Name":"lidxoxo","NumVillages":12,"Points":77382,"Rank":592,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101652","BestRank":592,"BestRankAt":"2023-02-15T06:22:53.676318Z","MostPoints":77382,"MostPointsAt":"2023-02-15T06:22:53.676319Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.676319Z","LastActivityAt":"2023-02-15T06:22:53.676319Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849101656,"Name":"Kilmonn","NumVillages":1,"Points":72,"Rank":2530,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101656","BestRank":2530,"BestRankAt":"2023-02-15T06:22:53.67632Z","MostPoints":72,"MostPointsAt":"2023-02-15T06:22:53.67632Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67632Z","LastActivityAt":"2023-02-15T06:22:53.67632Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1378,"ScoreAtt":4583,"RankDef":1683,"ScoreDef":19823,"RankSup":1079,"ScoreSup":2359,"RankTotal":1805,"ScoreTotal":26765,"ID":849101674,"Name":"mateusz2288","NumVillages":7,"Points":30918,"Rank":806,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101674","BestRank":806,"BestRankAt":"2023-02-15T06:22:53.676321Z","MostPoints":30918,"MostPointsAt":"2023-02-15T06:22:53.676321Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676321Z","LastActivityAt":"2023-02-15T06:22:53.676322Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1286,"ScoreAtt":6859,"RankDef":2213,"ScoreDef":1025,"RankSup":928,"ScoreSup":9583,"RankTotal":1898,"ScoreTotal":17467,"ID":849101694,"Name":"Sir Paxx","NumVillages":5,"Points":30052,"Rank":814,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101694","BestRank":814,"BestRankAt":"2023-02-15T06:22:53.676322Z","MostPoints":30052,"MostPointsAt":"2023-02-15T06:22:53.676323Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676322Z","LastActivityAt":"2023-02-15T06:22:53.676323Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2265,"ScoreDef":522,"RankSup":1080,"ScoreSup":2330,"RankTotal":2214,"ScoreTotal":2852,"ID":849101771,"Name":"franka","NumVillages":4,"Points":9680,"Rank":1097,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101771","BestRank":1097,"BestRankAt":"2023-02-15T06:22:53.676323Z","MostPoints":9680,"MostPointsAt":"2023-02-15T06:22:53.676324Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676324Z","LastActivityAt":"2023-02-15T06:22:53.676324Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1321,"ScoreAtt":5900,"RankDef":1919,"ScoreDef":7348,"RankSup":0,"ScoreSup":0,"RankTotal":1950,"ScoreTotal":13248,"ID":849101814,"Name":"czorny998","NumVillages":3,"Points":10530,"Rank":1072,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101814","BestRank":1072,"BestRankAt":"2023-02-15T06:22:53.676325Z","MostPoints":10530,"MostPointsAt":"2023-02-15T06:22:53.676325Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676325Z","LastActivityAt":"2023-02-15T06:22:53.676325Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":566,"ScoreAtt":255534,"RankDef":1195,"ScoreDef":73557,"RankSup":0,"ScoreSup":0,"RankTotal":979,"ScoreTotal":329091,"ID":849101845,"Name":"Fiko","NumVillages":24,"Points":178295,"Rank":436,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101845","BestRank":436,"BestRankAt":"2023-02-15T06:22:53.676326Z","MostPoints":178295,"MostPointsAt":"2023-02-15T06:22:53.676326Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.676326Z","LastActivityAt":"2023-02-15T06:22:53.676326Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1113,"ScoreAtt":17249,"RankDef":1691,"ScoreDef":19476,"RankSup":1253,"ScoreSup":125,"RankTotal":1713,"ScoreTotal":36850,"ID":849101871,"Name":"King2000","NumVillages":1,"Points":296,"Rank":2179,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101871","BestRank":2179,"BestRankAt":"2023-02-15T06:22:53.676327Z","MostPoints":296,"MostPointsAt":"2023-02-15T06:22:53.676327Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676327Z","LastActivityAt":"2023-02-15T06:22:53.676328Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":680,"ScoreAtt":141008,"RankDef":907,"ScoreDef":160854,"RankSup":605,"ScoreSup":96356,"RankTotal":918,"ScoreTotal":398218,"ID":849101881,"Name":"Lucyfer1999","NumVillages":11,"Points":64661,"Rank":639,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101881","BestRank":639,"BestRankAt":"2023-02-15T06:22:53.676328Z","MostPoints":64661,"MostPointsAt":"2023-02-15T06:22:53.676329Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.676329Z","LastActivityAt":"2023-02-15T06:22:53.676329Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":909,"ScoreAtt":48199,"RankDef":1225,"ScoreDef":68312,"RankSup":1195,"ScoreSup":441,"RankTotal":1337,"ScoreTotal":116952,"ID":849101884,"Name":"Patrycja412","NumVillages":7,"Points":45073,"Rank":717,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101884","BestRank":717,"BestRankAt":"2023-02-15T06:22:53.67633Z","MostPoints":45073,"MostPointsAt":"2023-02-15T06:22:53.67633Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.67633Z","LastActivityAt":"2023-02-15T06:22:53.67633Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":807,"ScoreAtt":77389,"RankDef":211,"ScoreDef":1791459,"RankSup":513,"ScoreSup":163772,"RankTotal":402,"ScoreTotal":2032620,"ID":849101889,"Name":"5spajk5","NumVillages":2,"Points":3591,"Rank":1453,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101889","BestRank":1453,"BestRankAt":"2023-02-15T06:22:53.676331Z","MostPoints":3591,"MostPointsAt":"2023-02-15T06:22:53.676331Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676331Z","LastActivityAt":"2023-02-15T06:22:53.676331Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":841,"ScoreAtt":68265,"RankDef":1409,"ScoreDef":42366,"RankSup":0,"ScoreSup":0,"RankTotal":1357,"ScoreTotal":110631,"ID":849101893,"Name":"kostunio","NumVillages":6,"Points":30743,"Rank":809,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101893","BestRank":809,"BestRankAt":"2023-02-15T06:22:53.676332Z","MostPoints":30743,"MostPointsAt":"2023-02-15T06:22:53.676332Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676332Z","LastActivityAt":"2023-02-15T06:22:53.676333Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":868,"ScoreAtt":58120,"RankDef":1953,"ScoreDef":6339,"RankSup":0,"ScoreSup":0,"RankTotal":1532,"ScoreTotal":64459,"ID":849101945,"Name":"Oawek","NumVillages":8,"Points":36181,"Rank":767,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101945","BestRank":767,"BestRankAt":"2023-02-15T06:22:53.676333Z","MostPoints":36181,"MostPointsAt":"2023-02-15T06:22:53.676334Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676333Z","LastActivityAt":"2023-02-15T06:22:53.676334Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1391,"ScoreAtt":4287,"RankDef":1930,"ScoreDef":6924,"RankSup":1026,"ScoreSup":3867,"RankTotal":1932,"ScoreTotal":15078,"ID":849101947,"Name":"LokiValhallen","NumVillages":1,"Points":4979,"Rank":1331,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101947","BestRank":1331,"BestRankAt":"2023-02-15T06:22:53.676334Z","MostPoints":4979,"MostPointsAt":"2023-02-15T06:22:53.676335Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676335Z","LastActivityAt":"2023-02-15T06:22:53.676335Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":827,"ScoreAtt":71365,"RankDef":1980,"ScoreDef":5625,"RankSup":1188,"ScoreSup":498,"RankTotal":1477,"ScoreTotal":77488,"ID":849101962,"Name":"Babidi","NumVillages":8,"Points":45130,"Rank":716,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101962","BestRank":716,"BestRankAt":"2023-02-15T06:22:53.676336Z","MostPoints":45130,"MostPointsAt":"2023-02-15T06:22:53.676336Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676336Z","LastActivityAt":"2023-02-15T06:22:53.676336Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2391,"ScoreDef":26,"RankSup":0,"ScoreSup":0,"RankTotal":2489,"ScoreTotal":26,"ID":849102037,"Name":"Lord tomekr","NumVillages":0,"Points":0,"Rank":3111,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102037","BestRank":3111,"BestRankAt":"2023-02-15T06:22:53.676337Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676337Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676337Z","LastActivityAt":"2023-02-15T06:22:53.676338Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849102047,"Name":"bartoszkar","NumVillages":0,"Points":0,"Rank":3112,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102047","BestRank":3112,"BestRankAt":"2023-02-15T06:22:53.676338Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676339Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676338Z","LastActivityAt":"2023-02-15T06:22:53.676339Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":438,"ScoreAtt":471294,"RankDef":222,"ScoreDef":1695323,"RankSup":288,"ScoreSup":565365,"RankTotal":320,"ScoreTotal":2731982,"ID":849102068,"Name":"TribalMaster","NumVillages":22,"Points":133518,"Rank":486,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102068","BestRank":486,"BestRankAt":"2023-02-15T06:22:53.676339Z","MostPoints":133518,"MostPointsAt":"2023-02-15T06:22:53.67634Z","MostVillages":22,"MostVillagesAt":"2023-02-15T06:22:53.67634Z","LastActivityAt":"2023-02-15T06:22:53.67634Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":410,"ScoreAtt":562722,"RankDef":454,"ScoreDef":608552,"RankSup":296,"ScoreSup":542106,"RankTotal":458,"ScoreTotal":1713380,"ID":849102092,"Name":"slovik-","NumVillages":24,"Points":154693,"Rank":457,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102092","BestRank":457,"BestRankAt":"2023-02-15T06:22:53.676341Z","MostPoints":154693,"MostPointsAt":"2023-02-15T06:22:53.676341Z","MostVillages":24,"MostVillagesAt":"2023-02-15T06:22:53.676341Z","LastActivityAt":"2023-02-15T06:22:53.676341Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":958,"ScoreAtt":37853,"RankDef":2125,"ScoreDef":2328,"RankSup":0,"ScoreSup":0,"RankTotal":1684,"ScoreTotal":40181,"ID":849102094,"Name":"PavoreAni","NumVillages":3,"Points":14807,"Rank":999,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102094","BestRank":999,"BestRankAt":"2023-02-15T06:22:53.676342Z","MostPoints":14807,"MostPointsAt":"2023-02-15T06:22:53.676342Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676342Z","LastActivityAt":"2023-02-15T06:22:53.676342Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":715,"ScoreAtt":118638,"RankDef":1475,"ScoreDef":36300,"RankSup":958,"ScoreSup":7392,"RankTotal":1226,"ScoreTotal":162330,"ID":849102108,"Name":"Goveso","NumVillages":13,"Points":80816,"Rank":582,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102108","BestRank":582,"BestRankAt":"2023-02-15T06:22:53.676343Z","MostPoints":80816,"MostPointsAt":"2023-02-15T06:22:53.676344Z","MostVillages":13,"MostVillagesAt":"2023-02-15T06:22:53.676343Z","LastActivityAt":"2023-02-15T06:22:53.676344Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1309,"ScoreAtt":6345,"RankDef":2128,"ScoreDef":2253,"RankSup":1361,"ScoreSup":4,"RankTotal":2031,"ScoreTotal":8602,"ID":849102143,"Name":"Kacpro3310","NumVillages":1,"Points":6323,"Rank":1256,"TribeID":1163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102143","BestRank":1256,"BestRankAt":"2023-02-15T06:22:53.676344Z","MostPoints":6323,"MostPointsAt":"2023-02-15T06:22:53.676345Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676345Z","LastActivityAt":"2023-02-15T06:22:53.676345Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1580,"ScoreAtt":1494,"RankDef":2236,"ScoreDef":756,"RankSup":0,"ScoreSup":0,"RankTotal":2232,"ScoreTotal":2250,"ID":849102150,"Name":"DewTour","NumVillages":6,"Points":13613,"Rank":1016,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102150","BestRank":1016,"BestRankAt":"2023-02-15T06:22:53.676346Z","MostPoints":13613,"MostPointsAt":"2023-02-15T06:22:53.676346Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676346Z","LastActivityAt":"2023-02-15T06:22:53.676346Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2483,"ScoreDef":5,"RankSup":0,"ScoreSup":0,"RankTotal":2558,"ScoreTotal":5,"ID":849102302,"Name":"dextermorgan","NumVillages":0,"Points":0,"Rank":3113,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102302","BestRank":3113,"BestRankAt":"2023-02-15T06:22:53.676347Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676347Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676347Z","LastActivityAt":"2023-02-15T06:22:53.676347Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1039,"ScoreAtt":25002,"RankDef":1943,"ScoreDef":6532,"RankSup":0,"ScoreSup":0,"RankTotal":1759,"ScoreTotal":31534,"ID":849102336,"Name":"Albus Lepus","NumVillages":12,"Points":59739,"Rank":655,"TribeID":1588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102336","BestRank":655,"BestRankAt":"2023-02-15T06:22:53.676348Z","MostPoints":59739,"MostPointsAt":"2023-02-15T06:22:53.676348Z","MostVillages":12,"MostVillagesAt":"2023-02-15T06:22:53.676348Z","LastActivityAt":"2023-02-15T06:22:53.676349Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":780,"ScoreAtt":88534,"RankDef":819,"ScoreDef":198442,"RankSup":918,"ScoreSup":10205,"RankTotal":1007,"ScoreTotal":297181,"ID":849102464,"Name":"rafik9797","NumVillages":2,"Points":16158,"Rank":979,"TribeID":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102464","BestRank":979,"BestRankAt":"2023-02-15T06:22:53.676349Z","MostPoints":16158,"MostPointsAt":"2023-02-15T06:22:53.67635Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676349Z","LastActivityAt":"2023-02-15T06:22:53.67635Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":935,"ScoreAtt":43138,"RankDef":2150,"ScoreDef":1936,"RankSup":1179,"ScoreSup":607,"RankTotal":1641,"ScoreTotal":45681,"ID":849102480,"Name":"Karyagin","NumVillages":8,"Points":58007,"Rank":663,"TribeID":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102480","BestRank":663,"BestRankAt":"2023-02-15T06:22:53.676351Z","MostPoints":58007,"MostPointsAt":"2023-02-15T06:22:53.676351Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676351Z","LastActivityAt":"2023-02-15T06:22:53.676351Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849102491,"Name":"pawelec123","NumVillages":0,"Points":0,"Rank":3114,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102491","BestRank":3114,"BestRankAt":"2023-02-15T06:22:53.676352Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676352Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676352Z","LastActivityAt":"2023-02-15T06:22:53.676352Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2492,"ScoreDef":3,"RankSup":0,"ScoreSup":0,"RankTotal":2566,"ScoreTotal":3,"ID":849102505,"Name":"skubana123","NumVillages":0,"Points":0,"Rank":3115,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102505","BestRank":3115,"BestRankAt":"2023-02-15T06:22:53.676353Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676353Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676353Z","LastActivityAt":"2023-02-15T06:22:53.676354Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":874,"ScoreAtt":57070,"RankDef":606,"ScoreDef":373291,"RankSup":0,"ScoreSup":0,"RankTotal":885,"ScoreTotal":430361,"ID":849102573,"Name":"Chispet92","NumVillages":8,"Points":41779,"Rank":733,"TribeID":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102573","BestRank":733,"BestRankAt":"2023-02-15T06:22:53.676354Z","MostPoints":41779,"MostPointsAt":"2023-02-15T06:22:53.676355Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676354Z","LastActivityAt":"2023-02-15T06:22:53.676355Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849102833,"Name":"polska222","NumVillages":1,"Points":228,"Rank":2253,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102833","BestRank":2253,"BestRankAt":"2023-02-15T06:22:53.676355Z","MostPoints":228,"MostPointsAt":"2023-02-15T06:22:53.676356Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676356Z","LastActivityAt":"2023-02-15T06:22:53.676356Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1816,"ScoreAtt":172,"RankDef":2453,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2406,"ScoreTotal":182,"ID":849102985,"Name":"szaszek94","NumVillages":1,"Points":1633,"Rank":1726,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102985","BestRank":1726,"BestRankAt":"2023-02-15T06:22:53.676357Z","MostPoints":1633,"MostPointsAt":"2023-02-15T06:22:53.676357Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676357Z","LastActivityAt":"2023-02-15T06:22:53.676357Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103113,"Name":"thor13","NumVillages":1,"Points":375,"Rank":2107,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103113","BestRank":2107,"BestRankAt":"2023-02-15T06:22:53.676358Z","MostPoints":375,"MostPointsAt":"2023-02-15T06:22:53.676358Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676358Z","LastActivityAt":"2023-02-15T06:22:53.676359Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1303,"ScoreAtt":6531,"RankDef":1481,"ScoreDef":36219,"RankSup":898,"ScoreSup":12041,"RankTotal":1589,"ScoreTotal":54791,"ID":849103148,"Name":"Trollsonix","NumVillages":4,"Points":21441,"Rank":897,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103148","BestRank":897,"BestRankAt":"2023-02-15T06:22:53.676359Z","MostPoints":21441,"MostPointsAt":"2023-02-15T06:22:53.67636Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676359Z","LastActivityAt":"2023-02-15T06:22:53.67636Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1663,"ScoreAtt":767,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2324,"ScoreTotal":767,"ID":849103156,"Name":"Pirdek999","NumVillages":1,"Points":2477,"Rank":1588,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103156","BestRank":1588,"BestRankAt":"2023-02-15T06:22:53.67636Z","MostPoints":2477,"MostPointsAt":"2023-02-15T06:22:53.676361Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676361Z","LastActivityAt":"2023-02-15T06:22:53.676361Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1562,"ScoreAtt":1716,"RankDef":2223,"ScoreDef":848,"RankSup":0,"ScoreSup":0,"RankTotal":2221,"ScoreTotal":2564,"ID":849103237,"Name":"Trzepak7","NumVillages":1,"Points":249,"Rank":2227,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103237","BestRank":2227,"BestRankAt":"2023-02-15T06:22:53.676362Z","MostPoints":249,"MostPointsAt":"2023-02-15T06:22:53.676362Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676362Z","LastActivityAt":"2023-02-15T06:22:53.676362Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1252,"ScoreAtt":8111,"RankDef":539,"ScoreDef":461971,"RankSup":0,"ScoreSup":0,"RankTotal":862,"ScoreTotal":470082,"ID":849103456,"Name":"Cukiernia RĂłĆŒa","NumVillages":0,"Points":0,"Rank":3116,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103456","BestRank":3116,"BestRankAt":"2023-02-15T06:22:53.676363Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676363Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676363Z","LastActivityAt":"2023-02-15T06:22:53.676363Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103570,"Name":"henior123","NumVillages":0,"Points":0,"Rank":3117,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103570","BestRank":3117,"BestRankAt":"2023-02-15T06:22:53.676364Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676364Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676364Z","LastActivityAt":"2023-02-15T06:22:53.676365Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2413,"ScoreDef":16,"RankSup":0,"ScoreSup":0,"RankTotal":2510,"ScoreTotal":16,"ID":849103595,"Name":"justyna1234","NumVillages":1,"Points":50,"Rank":2584,"TribeID":1460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103595","BestRank":2584,"BestRankAt":"2023-02-15T06:22:53.676365Z","MostPoints":50,"MostPointsAt":"2023-02-15T06:22:53.676366Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676366Z","LastActivityAt":"2023-02-15T06:22:53.676366Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103644,"Name":"czarekpol","NumVillages":1,"Points":99,"Rank":2486,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103644","BestRank":2486,"BestRankAt":"2023-02-15T06:22:53.676367Z","MostPoints":99,"MostPointsAt":"2023-02-15T06:22:53.676367Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676367Z","LastActivityAt":"2023-02-15T06:22:53.676367Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1454,"ScoreDef":38045,"RankSup":0,"ScoreSup":0,"RankTotal":1703,"ScoreTotal":38045,"ID":849103688,"Name":"Avaqer","NumVillages":1,"Points":4277,"Rank":1386,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103688","BestRank":1386,"BestRankAt":"2023-02-15T06:22:53.676368Z","MostPoints":4277,"MostPointsAt":"2023-02-15T06:22:53.676368Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676368Z","LastActivityAt":"2023-02-15T06:22:53.676368Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103876,"Name":"mjk105","NumVillages":1,"Points":26,"Rank":2842,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103876","BestRank":2842,"BestRankAt":"2023-02-15T06:22:53.676369Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676369Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676369Z","LastActivityAt":"2023-02-15T06:22:53.67637Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1902,"ScoreAtt":50,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2461,"ScoreTotal":50,"ID":849103914,"Name":"adamzagi","NumVillages":1,"Points":380,"Rank":2102,"TribeID":1783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103914","BestRank":2102,"BestRankAt":"2023-02-15T06:22:53.67637Z","MostPoints":380,"MostPointsAt":"2023-02-15T06:22:53.676371Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67637Z","LastActivityAt":"2023-02-15T06:22:53.676371Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1804,"ScoreAtt":206,"RankDef":1578,"ScoreDef":27678,"RankSup":1323,"ScoreSup":14,"RankTotal":1789,"ScoreTotal":27898,"ID":849103947,"Name":"pinek3","NumVillages":2,"Points":10627,"Rank":1068,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103947","BestRank":1068,"BestRankAt":"2023-02-15T06:22:53.676371Z","MostPoints":10627,"MostPointsAt":"2023-02-15T06:22:53.676372Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676372Z","LastActivityAt":"2023-02-15T06:22:53.676372Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1542,"ScoreAtt":1937,"RankDef":1376,"ScoreDef":47751,"RankSup":1243,"ScoreSup":163,"RankTotal":1613,"ScoreTotal":49851,"ID":849104010,"Name":"Kawa","NumVillages":0,"Points":0,"Rank":3118,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104010","BestRank":3118,"BestRankAt":"2023-02-15T06:22:53.676373Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676373Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676373Z","LastActivityAt":"2023-02-15T06:22:53.676373Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1227,"ScoreAtt":9341,"RankDef":1108,"ScoreDef":92793,"RankSup":0,"ScoreSup":0,"RankTotal":1385,"ScoreTotal":102134,"ID":849104100,"Name":"Czadamm","NumVillages":1,"Points":80,"Rank":2514,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104100","BestRank":2514,"BestRankAt":"2023-02-15T06:22:53.676374Z","MostPoints":80,"MostPointsAt":"2023-02-15T06:22:53.676374Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676374Z","LastActivityAt":"2023-02-15T06:22:53.676374Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104121,"Name":"skwr85","NumVillages":1,"Points":1977,"Rank":1670,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104121","BestRank":1670,"BestRankAt":"2023-02-15T06:22:53.676375Z","MostPoints":1977,"MostPointsAt":"2023-02-15T06:22:53.676375Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676375Z","LastActivityAt":"2023-02-15T06:22:53.676376Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1258,"ScoreAtt":7875,"RankDef":708,"ScoreDef":266901,"RankSup":0,"ScoreSup":0,"RankTotal":1027,"ScoreTotal":274776,"ID":849104286,"Name":"TwojaStaraTabaluga","NumVillages":1,"Points":6393,"Rank":1248,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104286","BestRank":1248,"BestRankAt":"2023-02-15T06:22:53.676376Z","MostPoints":6393,"MostPointsAt":"2023-02-15T06:22:53.676377Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676377Z","LastActivityAt":"2023-02-15T06:22:53.676377Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1161,"ScoreAtt":13000,"RankDef":983,"ScoreDef":129114,"RankSup":0,"ScoreSup":0,"RankTotal":1264,"ScoreTotal":142114,"ID":849104297,"Name":"Kadar","NumVillages":1,"Points":284,"Rank":2193,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104297","BestRank":2193,"BestRankAt":"2023-02-15T06:22:53.676378Z","MostPoints":284,"MostPointsAt":"2023-02-15T06:22:53.676378Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676378Z","LastActivityAt":"2023-02-15T06:22:53.676378Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104310,"Name":"jack2","NumVillages":1,"Points":182,"Rank":2334,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104310","BestRank":2334,"BestRankAt":"2023-02-15T06:22:53.676379Z","MostPoints":182,"MostPointsAt":"2023-02-15T06:22:53.676379Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676379Z","LastActivityAt":"2023-02-15T06:22:53.676379Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":561,"ScoreAtt":261326,"RankDef":552,"ScoreDef":436206,"RankSup":768,"ScoreSup":32548,"RankTotal":714,"ScoreTotal":730080,"ID":849104328,"Name":"Martinex","NumVillages":18,"Points":153097,"Rank":461,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104328","BestRank":461,"BestRankAt":"2023-02-15T06:22:53.67638Z","MostPoints":153097,"MostPointsAt":"2023-02-15T06:22:53.67638Z","MostVillages":18,"MostVillagesAt":"2023-02-15T06:22:53.67638Z","LastActivityAt":"2023-02-15T06:22:53.676381Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":903,"ScoreAtt":49150,"RankDef":1685,"ScoreDef":19715,"RankSup":783,"ScoreSup":28929,"RankTotal":1401,"ScoreTotal":97794,"ID":849104356,"Name":"KaszczuJ","NumVillages":4,"Points":39491,"Rank":745,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104356","BestRank":745,"BestRankAt":"2023-02-15T06:22:53.676381Z","MostPoints":39491,"MostPointsAt":"2023-02-15T06:22:53.676382Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676381Z","LastActivityAt":"2023-02-15T06:22:53.676382Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104468,"Name":"Marian Morderca","NumVillages":1,"Points":1157,"Rank":1818,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104468","BestRank":1818,"BestRankAt":"2023-02-15T06:22:53.676382Z","MostPoints":1157,"MostPointsAt":"2023-02-15T06:22:53.676383Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676383Z","LastActivityAt":"2023-02-15T06:22:53.676383Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104474,"Name":"mrugowal","NumVillages":1,"Points":71,"Rank":2533,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104474","BestRank":2533,"BestRankAt":"2023-02-15T06:22:53.676384Z","MostPoints":71,"MostPointsAt":"2023-02-15T06:22:53.676384Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676384Z","LastActivityAt":"2023-02-15T06:22:53.676384Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1660,"ScoreAtt":792,"RankDef":537,"ScoreDef":467385,"RankSup":0,"ScoreSup":0,"RankTotal":863,"ScoreTotal":468177,"ID":849104491,"Name":"MANUO","NumVillages":2,"Points":720,"Rank":1945,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104491","BestRank":1945,"BestRankAt":"2023-02-15T06:22:53.676385Z","MostPoints":720,"MostPointsAt":"2023-02-15T06:22:53.676385Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676385Z","LastActivityAt":"2023-02-15T06:22:53.676386Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1073,"ScoreAtt":20697,"RankDef":545,"ScoreDef":454914,"RankSup":862,"ScoreSup":15677,"RankTotal":848,"ScoreTotal":491288,"ID":849104546,"Name":"Jensiu90","NumVillages":5,"Points":35080,"Rank":775,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104546","BestRank":775,"BestRankAt":"2023-02-15T06:22:53.676386Z","MostPoints":35080,"MostPointsAt":"2023-02-15T06:22:53.676387Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676386Z","LastActivityAt":"2023-02-15T06:22:53.676387Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1883,"ScoreDef":8711,"RankSup":0,"ScoreSup":0,"RankTotal":2027,"ScoreTotal":8711,"ID":849104633,"Name":"Miia","NumVillages":0,"Points":0,"Rank":3119,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104633","BestRank":3119,"BestRankAt":"2023-02-15T06:22:53.676387Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676388Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676388Z","LastActivityAt":"2023-02-15T06:22:53.676388Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1996,"ScoreDef":5278,"RankSup":0,"ScoreSup":0,"RankTotal":2125,"ScoreTotal":5278,"ID":849104814,"Name":"Xava","NumVillages":0,"Points":0,"Rank":3120,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104814","BestRank":3120,"BestRankAt":"2023-02-15T06:22:53.676389Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676389Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676389Z","LastActivityAt":"2023-02-15T06:22:53.676389Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1800,"ScoreAtt":216,"RankDef":2194,"ScoreDef":1296,"RankSup":0,"ScoreSup":0,"RankTotal":2276,"ScoreTotal":1512,"ID":849104818,"Name":"bombelboniewo","NumVillages":1,"Points":4160,"Rank":1397,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104818","BestRank":1397,"BestRankAt":"2023-02-15T06:22:53.67639Z","MostPoints":4160,"MostPointsAt":"2023-02-15T06:22:53.67639Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67639Z","LastActivityAt":"2023-02-15T06:22:53.67639Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":953,"ScoreAtt":38798,"RankDef":2346,"ScoreDef":95,"RankSup":0,"ScoreSup":0,"RankTotal":1691,"ScoreTotal":38893,"ID":849104855,"Name":"Hary666","NumVillages":5,"Points":37312,"Rank":758,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104855","BestRank":758,"BestRankAt":"2023-02-15T06:22:53.676391Z","MostPoints":37312,"MostPointsAt":"2023-02-15T06:22:53.676392Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676391Z","LastActivityAt":"2023-02-15T06:22:53.676392Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849105032,"Name":"PiotrBiznes","NumVillages":1,"Points":114,"Rank":2457,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105032","BestRank":2457,"BestRankAt":"2023-02-15T06:22:53.676392Z","MostPoints":114,"MostPointsAt":"2023-02-15T06:22:53.676393Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676393Z","LastActivityAt":"2023-02-15T06:22:53.676393Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1235,"ScoreAtt":8926,"RankDef":1558,"ScoreDef":29010,"RankSup":0,"ScoreSup":0,"RankTotal":1704,"ScoreTotal":37936,"ID":849105071,"Name":"myrcin","NumVillages":3,"Points":13507,"Rank":1017,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105071","BestRank":1017,"BestRankAt":"2023-02-15T06:22:53.676394Z","MostPoints":13507,"MostPointsAt":"2023-02-15T06:22:53.676394Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676394Z","LastActivityAt":"2023-02-15T06:22:53.676394Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2418,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":2514,"ScoreTotal":14,"ID":849105072,"Name":"Kendal","NumVillages":1,"Points":7865,"Rank":1166,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105072","BestRank":1166,"BestRankAt":"2023-02-15T06:22:53.676395Z","MostPoints":7865,"MostPointsAt":"2023-02-15T06:22:53.676395Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676395Z","LastActivityAt":"2023-02-15T06:22:53.676395Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":993,"ScoreAtt":32141,"RankDef":1196,"ScoreDef":73536,"RankSup":0,"ScoreSup":0,"RankTotal":1372,"ScoreTotal":105677,"ID":849105102,"Name":"PatanTERROR","NumVillages":4,"Points":24171,"Rank":869,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105102","BestRank":869,"BestRankAt":"2023-02-15T06:22:53.676396Z","MostPoints":24171,"MostPointsAt":"2023-02-15T06:22:53.676396Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676396Z","LastActivityAt":"2023-02-15T06:22:53.676397Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849105187,"Name":"Chmielu94","NumVillages":1,"Points":115,"Rank":2455,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105187","BestRank":2455,"BestRankAt":"2023-02-15T06:22:53.676397Z","MostPoints":115,"MostPointsAt":"2023-02-15T06:22:53.676398Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676397Z","LastActivityAt":"2023-02-15T06:22:53.676398Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2497,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2573,"ScoreTotal":2,"ID":849105201,"Name":"samolot11","NumVillages":1,"Points":139,"Rank":2394,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105201","BestRank":2394,"BestRankAt":"2023-02-15T06:22:53.676398Z","MostPoints":139,"MostPointsAt":"2023-02-15T06:22:53.676399Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676399Z","LastActivityAt":"2023-02-15T06:22:53.676399Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1187,"ScoreAtt":11377,"RankDef":1764,"ScoreDef":14534,"RankSup":1011,"ScoreSup":4500,"RankTotal":1768,"ScoreTotal":30411,"ID":849105232,"Name":"krzysztofkryn148","NumVillages":7,"Points":17410,"Rank":963,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105232","BestRank":963,"BestRankAt":"2023-02-15T06:22:53.6764Z","MostPoints":17410,"MostPointsAt":"2023-02-15T06:22:53.6764Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.6764Z","LastActivityAt":"2023-02-15T06:22:53.6764Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2316,"ScoreDef":224,"RankSup":0,"ScoreSup":0,"RankTotal":2398,"ScoreTotal":224,"ID":849105408,"Name":"Fermer","NumVillages":1,"Points":2183,"Rank":1633,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105408","BestRank":1633,"BestRankAt":"2023-02-15T06:22:53.676401Z","MostPoints":2183,"MostPointsAt":"2023-02-15T06:22:53.676401Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676401Z","LastActivityAt":"2023-02-15T06:22:53.676402Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1139,"ScoreAtt":14879,"RankDef":1941,"ScoreDef":6585,"RankSup":0,"ScoreSup":0,"RankTotal":1852,"ScoreTotal":21464,"ID":849105417,"Name":"GdziePiniondzeSomZaLas","NumVillages":5,"Points":12372,"Rank":1039,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105417","BestRank":1039,"BestRankAt":"2023-02-15T06:22:53.676402Z","MostPoints":12372,"MostPointsAt":"2023-02-15T06:22:53.676403Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676402Z","LastActivityAt":"2023-02-15T06:22:53.676403Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1780,"ScoreDef":13551,"RankSup":0,"ScoreSup":0,"RankTotal":1945,"ScoreTotal":13551,"ID":849105420,"Name":"Natalia9388","NumVillages":1,"Points":9464,"Rank":1107,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105420","BestRank":1107,"BestRankAt":"2023-02-15T06:22:53.676403Z","MostPoints":9464,"MostPointsAt":"2023-02-15T06:22:53.676404Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676404Z","LastActivityAt":"2023-02-15T06:22:53.676404Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1505,"ScoreAtt":2314,"RankDef":2186,"ScoreDef":1440,"RankSup":0,"ScoreSup":0,"RankTotal":2181,"ScoreTotal":3754,"ID":849105463,"Name":"zwyczajny bandyta","NumVillages":6,"Points":9553,"Rank":1104,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105463","BestRank":1104,"BestRankAt":"2023-02-15T06:22:53.676405Z","MostPoints":9553,"MostPointsAt":"2023-02-15T06:22:53.676405Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676405Z","LastActivityAt":"2023-02-15T06:22:53.676405Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2156,"ScoreDef":1853,"RankSup":0,"ScoreSup":0,"RankTotal":2256,"ScoreTotal":1853,"ID":849105613,"Name":"Firau","NumVillages":1,"Points":557,"Rank":2001,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105613","BestRank":2001,"BestRankAt":"2023-02-15T06:22:53.676406Z","MostPoints":557,"MostPointsAt":"2023-02-15T06:22:53.676406Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676406Z","LastActivityAt":"2023-02-15T06:22:53.676406Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1901,"ScoreDef":7952,"RankSup":0,"ScoreSup":0,"RankTotal":2047,"ScoreTotal":7952,"ID":849105880,"Name":"wojtas.kaziu","NumVillages":0,"Points":0,"Rank":3121,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105880","BestRank":3121,"BestRankAt":"2023-02-15T06:22:53.676407Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676407Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676407Z","LastActivityAt":"2023-02-15T06:22:53.676408Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1899,"ScoreDef":8020,"RankSup":0,"ScoreSup":0,"RankTotal":2044,"ScoreTotal":8020,"ID":849105954,"Name":"SteamUser1668416228","NumVillages":0,"Points":0,"Rank":3122,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105954","BestRank":3122,"BestRankAt":"2023-02-15T06:22:53.676408Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676409Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676408Z","LastActivityAt":"2023-02-15T06:22:53.676409Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1694,"ScoreDef":19173,"RankSup":0,"ScoreSup":0,"RankTotal":1881,"ScoreTotal":19173,"ID":849106210,"Name":"blady14","NumVillages":1,"Points":1881,"Rank":1687,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106210","BestRank":1687,"BestRankAt":"2023-02-15T06:22:53.67641Z","MostPoints":1881,"MostPointsAt":"2023-02-15T06:22:53.67641Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67641Z","LastActivityAt":"2023-02-15T06:22:53.67641Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1915,"ScoreAtt":40,"RankDef":1763,"ScoreDef":14740,"RankSup":0,"ScoreSup":0,"RankTotal":1934,"ScoreTotal":14780,"ID":849106303,"Name":"Kaminski95","NumVillages":1,"Points":1115,"Rank":1830,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106303","BestRank":1830,"BestRankAt":"2023-02-15T06:22:53.676411Z","MostPoints":1115,"MostPointsAt":"2023-02-15T06:22:53.676411Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676411Z","LastActivityAt":"2023-02-15T06:22:53.676411Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1335,"ScoreAtt":5595,"RankDef":2137,"ScoreDef":2128,"RankSup":0,"ScoreSup":0,"RankTotal":2053,"ScoreTotal":7723,"ID":849106316,"Name":"Dzejkob23","NumVillages":6,"Points":18231,"Rank":944,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106316","BestRank":944,"BestRankAt":"2023-02-15T06:22:53.676412Z","MostPoints":18231,"MostPointsAt":"2023-02-15T06:22:53.676412Z","MostVillages":6,"MostVillagesAt":"2023-02-15T06:22:53.676412Z","LastActivityAt":"2023-02-15T06:22:53.676413Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1314,"ScoreAtt":6233,"RankDef":754,"ScoreDef":237913,"RankSup":0,"ScoreSup":0,"RankTotal":1062,"ScoreTotal":244146,"ID":849106340,"Name":"Koza69","NumVillages":0,"Points":0,"Rank":3123,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106340","BestRank":3123,"BestRankAt":"2023-02-15T06:22:53.676413Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676414Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676413Z","LastActivityAt":"2023-02-15T06:22:53.676414Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1679,"ScoreAtt":695,"RankDef":1456,"ScoreDef":38009,"RankSup":0,"ScoreSup":0,"RankTotal":1696,"ScoreTotal":38704,"ID":849106383,"Name":"R0se69","NumVillages":2,"Points":13390,"Rank":1019,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106383","BestRank":1019,"BestRankAt":"2023-02-15T06:22:53.676414Z","MostPoints":13390,"MostPointsAt":"2023-02-15T06:22:53.676415Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676415Z","LastActivityAt":"2023-02-15T06:22:53.676415Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1664,"ScoreAtt":762,"RankDef":2211,"ScoreDef":1071,"RankSup":0,"ScoreSup":0,"RankTotal":2257,"ScoreTotal":1833,"ID":849106420,"Name":"SAwars","NumVillages":8,"Points":30870,"Rank":807,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106420","BestRank":807,"BestRankAt":"2023-02-15T06:22:53.676416Z","MostPoints":30870,"MostPointsAt":"2023-02-15T06:22:53.676416Z","MostVillages":8,"MostVillagesAt":"2023-02-15T06:22:53.676416Z","LastActivityAt":"2023-02-15T06:22:53.676416Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849106548,"Name":"jozin4don","NumVillages":1,"Points":500,"Rank":2030,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106548","BestRank":2030,"BestRankAt":"2023-02-15T06:22:53.676417Z","MostPoints":500,"MostPointsAt":"2023-02-15T06:22:53.676417Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676417Z","LastActivityAt":"2023-02-15T06:22:53.676418Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1908,"ScoreAtt":45,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2466,"ScoreTotal":45,"ID":849106576,"Name":"Bober5180","NumVillages":1,"Points":126,"Rank":2435,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106576","BestRank":2435,"BestRankAt":"2023-02-15T06:22:53.676418Z","MostPoints":126,"MostPointsAt":"2023-02-15T06:22:53.676419Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676418Z","LastActivityAt":"2023-02-15T06:22:53.676419Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2145,"ScoreDef":2032,"RankSup":0,"ScoreSup":0,"RankTotal":2246,"ScoreTotal":2032,"ID":849106601,"Name":"DrXE7","NumVillages":1,"Points":253,"Rank":2220,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106601","BestRank":2220,"BestRankAt":"2023-02-15T06:22:53.676419Z","MostPoints":253,"MostPointsAt":"2023-02-15T06:22:53.67642Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67642Z","LastActivityAt":"2023-02-15T06:22:53.67642Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1372,"ScoreAtt":4672,"RankDef":1404,"ScoreDef":43358,"RankSup":1119,"ScoreSup":1546,"RankTotal":1617,"ScoreTotal":49576,"ID":849106612,"Name":"Ufok834","NumVillages":5,"Points":11019,"Rank":1054,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106612","BestRank":1054,"BestRankAt":"2023-02-15T06:22:53.676421Z","MostPoints":11019,"MostPointsAt":"2023-02-15T06:22:53.676421Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676421Z","LastActivityAt":"2023-02-15T06:22:53.676421Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2381,"ScoreDef":30,"RankSup":0,"ScoreSup":0,"RankTotal":2485,"ScoreTotal":30,"ID":849106698,"Name":"Harley Quinn","NumVillages":1,"Points":194,"Rank":2315,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106698","BestRank":2315,"BestRankAt":"2023-02-15T06:22:53.676422Z","MostPoints":194,"MostPointsAt":"2023-02-15T06:22:53.676422Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676422Z","LastActivityAt":"2023-02-15T06:22:53.676422Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849106741,"Name":"Koza2021","NumVillages":1,"Points":68,"Rank":2542,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106741","BestRank":2542,"BestRankAt":"2023-02-15T06:22:53.676423Z","MostPoints":68,"MostPointsAt":"2023-02-15T06:22:53.676423Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676423Z","LastActivityAt":"2023-02-15T06:22:53.676424Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1709,"ScoreAtt":554,"RankDef":1720,"ScoreDef":17466,"RankSup":480,"ScoreSup":190671,"RankTotal":1125,"ScoreTotal":208691,"ID":849106785,"Name":"LordFrotto","NumVillages":3,"Points":15659,"Rank":987,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106785","BestRank":987,"BestRankAt":"2023-02-15T06:22:53.676424Z","MostPoints":15659,"MostPointsAt":"2023-02-15T06:22:53.676425Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676424Z","LastActivityAt":"2023-02-15T06:22:53.676425Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1809,"ScoreAtt":180,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2407,"ScoreTotal":180,"ID":849106820,"Name":"Cheltenham","NumVillages":1,"Points":690,"Rank":1955,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106820","BestRank":1955,"BestRankAt":"2023-02-15T06:22:53.676425Z","MostPoints":690,"MostPointsAt":"2023-02-15T06:22:53.676426Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676426Z","LastActivityAt":"2023-02-15T06:22:53.676426Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2467,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2550,"ScoreTotal":10,"ID":849106828,"Name":"anatol2619","NumVillages":1,"Points":463,"Rank":2051,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106828","BestRank":2051,"BestRankAt":"2023-02-15T06:22:53.676427Z","MostPoints":463,"MostPointsAt":"2023-02-15T06:22:53.676427Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676427Z","LastActivityAt":"2023-02-15T06:22:53.676427Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849106923,"Name":"kowal26022","NumVillages":1,"Points":4362,"Rank":1382,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106923","BestRank":1382,"BestRankAt":"2023-02-15T06:22:53.676428Z","MostPoints":4362,"MostPointsAt":"2023-02-15T06:22:53.676428Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676428Z","LastActivityAt":"2023-02-15T06:22:53.676429Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1224,"ScoreAtt":9541,"RankDef":2030,"ScoreDef":4209,"RankSup":0,"ScoreSup":0,"RankTotal":1944,"ScoreTotal":13750,"ID":849106971,"Name":"Irek216","NumVillages":5,"Points":16346,"Rank":977,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106971","BestRank":977,"BestRankAt":"2023-02-15T06:22:53.676429Z","MostPoints":16346,"MostPointsAt":"2023-02-15T06:22:53.67643Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676429Z","LastActivityAt":"2023-02-15T06:22:53.67643Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676958Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1652,"ScoreAtt":833,"RankDef":2449,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2315,"ScoreTotal":843,"ID":849107104,"Name":"k3d4r89","NumVillages":1,"Points":1952,"Rank":1678,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107104","BestRank":1678,"BestRankAt":"2023-02-15T06:22:53.67643Z","MostPoints":1952,"MostPointsAt":"2023-02-15T06:22:53.676431Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676431Z","LastActivityAt":"2023-02-15T06:22:53.676431Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676958Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2406,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2499,"ScoreTotal":20,"ID":849107188,"Name":"Bondzia","NumVillages":1,"Points":2008,"Rank":1662,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107188","BestRank":1662,"BestRankAt":"2023-02-15T06:22:53.676432Z","MostPoints":2008,"MostPointsAt":"2023-02-15T06:22:53.676432Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676432Z","LastActivityAt":"2023-02-15T06:22:53.676432Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849107391,"Name":"BedsideBrick477","NumVillages":1,"Points":104,"Rank":2472,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107391","BestRank":2472,"BestRankAt":"2023-02-15T06:22:53.676433Z","MostPoints":104,"MostPointsAt":"2023-02-15T06:22:53.676433Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676433Z","LastActivityAt":"2023-02-15T06:22:53.676433Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1517,"ScoreAtt":2178,"RankDef":1755,"ScoreDef":15425,"RankSup":0,"ScoreSup":0,"RankTotal":1896,"ScoreTotal":17603,"ID":849107426,"Name":"MichaƂ zƂoƛliwy","NumVillages":1,"Points":310,"Rank":2166,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107426","BestRank":2166,"BestRankAt":"2023-02-15T06:22:53.676434Z","MostPoints":310,"MostPointsAt":"2023-02-15T06:22:53.676434Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676434Z","LastActivityAt":"2023-02-15T06:22:53.676435Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1728,"ScoreAtt":440,"RankDef":2181,"ScoreDef":1497,"RankSup":0,"ScoreSup":0,"RankTotal":2251,"ScoreTotal":1937,"ID":849107507,"Name":"bartekwach","NumVillages":1,"Points":4275,"Rank":1387,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107507","BestRank":1387,"BestRankAt":"2023-02-15T06:22:53.676435Z","MostPoints":4275,"MostPointsAt":"2023-02-15T06:22:53.676436Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676435Z","LastActivityAt":"2023-02-15T06:22:53.676436Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":880,"ScoreAtt":55595,"RankDef":2155,"ScoreDef":1878,"RankSup":1136,"ScoreSup":1222,"RankTotal":1563,"ScoreTotal":58695,"ID":849107532,"Name":"Ponury morderca","NumVillages":5,"Points":18595,"Rank":940,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107532","BestRank":940,"BestRankAt":"2023-02-15T06:22:53.676437Z","MostPoints":18595,"MostPointsAt":"2023-02-15T06:22:53.676437Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676437Z","LastActivityAt":"2023-02-15T06:22:53.676437Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849107571,"Name":"mFxXx","NumVillages":1,"Points":1309,"Rank":1786,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107571","BestRank":1786,"BestRankAt":"2023-02-15T06:22:53.676438Z","MostPoints":1309,"MostPointsAt":"2023-02-15T06:22:53.676438Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676438Z","LastActivityAt":"2023-02-15T06:22:53.676438Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1223,"ScoreAtt":9713,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2004,"ScoreTotal":9713,"ID":849107703,"Name":"KRONOSIK8","NumVillages":1,"Points":6307,"Rank":1257,"TribeID":1163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107703","BestRank":1257,"BestRankAt":"2023-02-15T06:22:53.676439Z","MostPoints":6307,"MostPointsAt":"2023-02-15T06:22:53.676439Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676439Z","LastActivityAt":"2023-02-15T06:22:53.67644Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2511,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2575,"ScoreTotal":1,"ID":849107799,"Name":"Podzal","NumVillages":1,"Points":980,"Rank":1872,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107799","BestRank":1872,"BestRankAt":"2023-02-15T06:22:53.67644Z","MostPoints":980,"MostPointsAt":"2023-02-15T06:22:53.676441Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67644Z","LastActivityAt":"2023-02-15T06:22:53.676441Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849107860,"Name":"alexxdize","NumVillages":1,"Points":136,"Rank":2403,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107860","BestRank":2403,"BestRankAt":"2023-02-15T06:22:53.676441Z","MostPoints":136,"MostPointsAt":"2023-02-15T06:22:53.676442Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676442Z","LastActivityAt":"2023-02-15T06:22:53.676442Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2367,"ScoreDef":50,"RankSup":0,"ScoreSup":0,"RankTotal":2459,"ScoreTotal":50,"ID":849107881,"Name":"POMPIARZ 122","NumVillages":1,"Points":4835,"Rank":1340,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107881","BestRank":1340,"BestRankAt":"2023-02-15T06:22:53.676443Z","MostPoints":4835,"MostPointsAt":"2023-02-15T06:22:53.676443Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676443Z","LastActivityAt":"2023-02-15T06:22:53.676443Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1818,"ScoreAtt":170,"RankDef":1651,"ScoreDef":21988,"RankSup":1403,"ScoreSup":1,"RankTotal":1847,"ScoreTotal":22159,"ID":849108007,"Name":"SkalpeR1337","NumVillages":2,"Points":9272,"Rank":1112,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108007","BestRank":1112,"BestRankAt":"2023-02-15T06:22:53.676444Z","MostPoints":9272,"MostPointsAt":"2023-02-15T06:22:53.676444Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676444Z","LastActivityAt":"2023-02-15T06:22:53.676444Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108034,"Name":"Frodo1","NumVillages":1,"Points":26,"Rank":2843,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108034","BestRank":2843,"BestRankAt":"2023-02-15T06:22:53.676445Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676446Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676445Z","LastActivityAt":"2023-02-15T06:22:53.676446Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1654,"ScoreAtt":818,"RankDef":2356,"ScoreDef":66,"RankSup":0,"ScoreSup":0,"RankTotal":2311,"ScoreTotal":884,"ID":849108053,"Name":"Olczii","NumVillages":1,"Points":1207,"Rank":1808,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108053","BestRank":1808,"BestRankAt":"2023-02-15T06:22:53.676446Z","MostPoints":1207,"MostPointsAt":"2023-02-15T06:22:53.676447Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676447Z","LastActivityAt":"2023-02-15T06:22:53.676447Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1455,"ScoreAtt":3111,"RankDef":1237,"ScoreDef":66328,"RankSup":0,"ScoreSup":0,"RankTotal":1510,"ScoreTotal":69439,"ID":849108148,"Name":"Yomikuri","NumVillages":1,"Points":201,"Rank":2295,"TribeID":1431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108148","BestRank":2295,"BestRankAt":"2023-02-15T06:22:53.676448Z","MostPoints":201,"MostPointsAt":"2023-02-15T06:22:53.676448Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676448Z","LastActivityAt":"2023-02-15T06:22:53.676448Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1254,"ScoreAtt":7940,"RankDef":2315,"ScoreDef":224,"RankSup":0,"ScoreSup":0,"RankTotal":2038,"ScoreTotal":8164,"ID":849108157,"Name":"Wu7ek","NumVillages":3,"Points":4496,"Rank":1370,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108157","BestRank":1370,"BestRankAt":"2023-02-15T06:22:53.676449Z","MostPoints":4496,"MostPointsAt":"2023-02-15T06:22:53.676449Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676449Z","LastActivityAt":"2023-02-15T06:22:53.676449Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1516,"ScoreAtt":2187,"RankDef":1027,"ScoreDef":117355,"RankSup":0,"ScoreSup":0,"RankTotal":1327,"ScoreTotal":119542,"ID":849108328,"Name":"mirabelik","NumVillages":0,"Points":0,"Rank":3124,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108328","BestRank":3124,"BestRankAt":"2023-02-15T06:22:53.67645Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.67645Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.67645Z","LastActivityAt":"2023-02-15T06:22:53.676451Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2404,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2500,"ScoreTotal":20,"ID":849108339,"Name":"DiduDidek","NumVillages":1,"Points":2194,"Rank":1631,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108339","BestRank":1631,"BestRankAt":"2023-02-15T06:22:53.676451Z","MostPoints":2194,"MostPointsAt":"2023-02-15T06:22:53.676452Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676451Z","LastActivityAt":"2023-02-15T06:22:53.676452Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2183,"ScoreDef":1464,"RankSup":0,"ScoreSup":0,"RankTotal":2280,"ScoreTotal":1464,"ID":849108350,"Name":"Gumaty","NumVillages":1,"Points":75,"Rank":2523,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108350","BestRank":2523,"BestRankAt":"2023-02-15T06:22:53.676453Z","MostPoints":75,"MostPointsAt":"2023-02-15T06:22:53.676453Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676453Z","LastActivityAt":"2023-02-15T06:22:53.676453Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2514,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2577,"ScoreTotal":1,"ID":849108352,"Name":"SharpWaldek","NumVillages":1,"Points":114,"Rank":2458,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108352","BestRank":2458,"BestRankAt":"2023-02-15T06:22:53.676454Z","MostPoints":114,"MostPointsAt":"2023-02-15T06:22:53.676454Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676454Z","LastActivityAt":"2023-02-15T06:22:53.676454Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108600,"Name":"OneGiet","NumVillages":1,"Points":173,"Rank":2348,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108600","BestRank":2348,"BestRankAt":"2023-02-15T06:22:53.676455Z","MostPoints":173,"MostPointsAt":"2023-02-15T06:22:53.676455Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676455Z","LastActivityAt":"2023-02-15T06:22:53.676456Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":642,"ScoreAtt":165215,"RankDef":202,"ScoreDef":1846329,"RankSup":774,"ScoreSup":30877,"RankTotal":400,"ScoreTotal":2042421,"ID":849108623,"Name":"Kapiburaczek","NumVillages":2,"Points":13253,"Rank":1025,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108623","BestRank":1025,"BestRankAt":"2023-02-15T06:22:53.676456Z","MostPoints":13253,"MostPointsAt":"2023-02-15T06:22:53.676457Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676456Z","LastActivityAt":"2023-02-15T06:22:53.676457Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108673,"Name":"DonArturo","NumVillages":1,"Points":26,"Rank":2844,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108673","BestRank":2844,"BestRankAt":"2023-02-15T06:22:53.676457Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676458Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676458Z","LastActivityAt":"2023-02-15T06:22:53.676458Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1925,"ScoreAtt":35,"RankDef":2238,"ScoreDef":750,"RankSup":0,"ScoreSup":0,"RankTotal":2322,"ScoreTotal":785,"ID":849108762,"Name":"batman2022","NumVillages":1,"Points":400,"Rank":2089,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108762","BestRank":2089,"BestRankAt":"2023-02-15T06:22:53.676459Z","MostPoints":400,"MostPointsAt":"2023-02-15T06:22:53.676459Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676459Z","LastActivityAt":"2023-02-15T06:22:53.676459Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":603,"ScoreAtt":211892,"RankDef":2031,"ScoreDef":4154,"RankSup":384,"ScoreSup":345009,"RankTotal":796,"ScoreTotal":561055,"ID":849108780,"Name":"przegraƂ","NumVillages":11,"Points":90614,"Rank":558,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108780","BestRank":558,"BestRankAt":"2023-02-15T06:22:53.67646Z","MostPoints":90614,"MostPointsAt":"2023-02-15T06:22:53.67646Z","MostVillages":11,"MostVillagesAt":"2023-02-15T06:22:53.67646Z","LastActivityAt":"2023-02-15T06:22:53.67646Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1338,"ScoreAtt":5507,"RankDef":1436,"ScoreDef":39351,"RankSup":636,"ScoreSup":78257,"RankTotal":1318,"ScoreTotal":123115,"ID":849108784,"Name":"Berciak","NumVillages":7,"Points":31188,"Rank":802,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108784","BestRank":802,"BestRankAt":"2023-02-15T06:22:53.676461Z","MostPoints":31188,"MostPointsAt":"2023-02-15T06:22:53.676461Z","MostVillages":7,"MostVillagesAt":"2023-02-15T06:22:53.676461Z","LastActivityAt":"2023-02-15T06:22:53.676462Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108891,"Name":"jd21372005","NumVillages":1,"Points":303,"Rank":2172,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108891","BestRank":2172,"BestRankAt":"2023-02-15T06:22:53.676462Z","MostPoints":303,"MostPointsAt":"2023-02-15T06:22:53.676463Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676463Z","LastActivityAt":"2023-02-15T06:22:53.676463Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108915,"Name":"jordonjbe","NumVillages":1,"Points":180,"Rank":2337,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108915","BestRank":2337,"BestRankAt":"2023-02-15T06:22:53.676464Z","MostPoints":180,"MostPointsAt":"2023-02-15T06:22:53.676464Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676464Z","LastActivityAt":"2023-02-15T06:22:53.676464Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108933,"Name":"Gilutyna","NumVillages":1,"Points":33,"Rank":2614,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108933","BestRank":2614,"BestRankAt":"2023-02-15T06:22:53.676465Z","MostPoints":33,"MostPointsAt":"2023-02-15T06:22:53.676465Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676465Z","LastActivityAt":"2023-02-15T06:22:53.676465Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1111,"ScoreAtt":17369,"RankDef":2419,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":1900,"ScoreTotal":17383,"ID":849108934,"Name":"Stefek7","NumVillages":1,"Points":801,"Rank":1917,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108934","BestRank":1917,"BestRankAt":"2023-02-15T06:22:53.676466Z","MostPoints":801,"MostPointsAt":"2023-02-15T06:22:53.676466Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676466Z","LastActivityAt":"2023-02-15T06:22:53.676467Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2386,"ScoreDef":28,"RankSup":0,"ScoreSup":0,"RankTotal":2487,"ScoreTotal":28,"ID":849108971,"Name":"MGryglak95","NumVillages":1,"Points":2476,"Rank":1589,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108971","BestRank":1589,"BestRankAt":"2023-02-15T06:22:53.676467Z","MostPoints":2476,"MostPointsAt":"2023-02-15T06:22:53.676468Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676467Z","LastActivityAt":"2023-02-15T06:22:53.676468Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1127,"ScoreAtt":15956,"RankDef":1580,"ScoreDef":27341,"RankSup":0,"ScoreSup":0,"RankTotal":1661,"ScoreTotal":43297,"ID":849108991,"Name":"krisus8497","NumVillages":1,"Points":1068,"Rank":1844,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108991","BestRank":1844,"BestRankAt":"2023-02-15T06:22:53.676468Z","MostPoints":1068,"MostPointsAt":"2023-02-15T06:22:53.676469Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676469Z","LastActivityAt":"2023-02-15T06:22:53.676469Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1949,"ScoreAtt":20,"RankDef":2282,"ScoreDef":406,"RankSup":0,"ScoreSup":0,"RankTotal":2366,"ScoreTotal":426,"ID":849109010,"Name":"SirNiuchniuch","NumVillages":1,"Points":4109,"Rank":1400,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109010","BestRank":1400,"BestRankAt":"2023-02-15T06:22:53.67647Z","MostPoints":4109,"MostPointsAt":"2023-02-15T06:22:53.67647Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67647Z","LastActivityAt":"2023-02-15T06:22:53.67647Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109036,"Name":"Gerf","NumVillages":1,"Points":239,"Rank":2236,"TribeID":1789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109036","BestRank":2236,"BestRankAt":"2023-02-15T06:22:53.676471Z","MostPoints":239,"MostPointsAt":"2023-02-15T06:22:53.676471Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676471Z","LastActivityAt":"2023-02-15T06:22:53.676471Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109045,"Name":"Lilit","NumVillages":1,"Points":403,"Rank":2086,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109045","BestRank":2086,"BestRankAt":"2023-02-15T06:22:53.676472Z","MostPoints":403,"MostPointsAt":"2023-02-15T06:22:53.676473Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676472Z","LastActivityAt":"2023-02-15T06:22:53.676473Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1213,"ScoreDef":70777,"RankSup":0,"ScoreSup":0,"RankTotal":1501,"ScoreTotal":70777,"ID":849109072,"Name":"mikos","NumVillages":1,"Points":291,"Rank":2186,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109072","BestRank":2186,"BestRankAt":"2023-02-15T06:22:53.676473Z","MostPoints":291,"MostPointsAt":"2023-02-15T06:22:53.676474Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676474Z","LastActivityAt":"2023-02-15T06:22:53.676474Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2471,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2530,"ScoreTotal":10,"ID":849109116,"Name":"apolinary","NumVillages":1,"Points":5180,"Rank":1315,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109116","BestRank":1315,"BestRankAt":"2023-02-15T06:22:53.676475Z","MostPoints":5180,"MostPointsAt":"2023-02-15T06:22:53.676475Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676475Z","LastActivityAt":"2023-02-15T06:22:53.676475Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1910,"ScoreAtt":42,"RankDef":1731,"ScoreDef":16909,"RankSup":0,"ScoreSup":0,"RankTotal":1907,"ScoreTotal":16951,"ID":849109152,"Name":"leon1214","NumVillages":1,"Points":111,"Rank":2464,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109152","BestRank":2464,"BestRankAt":"2023-02-15T06:22:53.676476Z","MostPoints":111,"MostPointsAt":"2023-02-15T06:22:53.676476Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676476Z","LastActivityAt":"2023-02-15T06:22:53.676476Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1981,"ScoreAtt":6,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2556,"ScoreTotal":6,"ID":849109232,"Name":"Lord patban177","NumVillages":1,"Points":448,"Rank":2060,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109232","BestRank":2060,"BestRankAt":"2023-02-15T06:22:53.676477Z","MostPoints":448,"MostPointsAt":"2023-02-15T06:22:53.676477Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676477Z","LastActivityAt":"2023-02-15T06:22:53.676478Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109351,"Name":"Seledynowy skuter wodny","NumVillages":1,"Points":183,"Rank":2330,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109351","BestRank":2330,"BestRankAt":"2023-02-15T06:22:53.676478Z","MostPoints":183,"MostPointsAt":"2023-02-15T06:22:53.676479Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676478Z","LastActivityAt":"2023-02-15T06:22:53.676479Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1558,"ScoreAtt":1779,"RankDef":1126,"ScoreDef":89934,"RankSup":1379,"ScoreSup":3,"RankTotal":1428,"ScoreTotal":91716,"ID":849109413,"Name":"Javor","NumVillages":0,"Points":0,"Rank":3125,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109413","BestRank":3125,"BestRankAt":"2023-02-15T06:22:53.67648Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.67648Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.67648Z","LastActivityAt":"2023-02-15T06:22:53.67648Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1817,"ScoreAtt":171,"RankDef":1015,"ScoreDef":122121,"RankSup":0,"ScoreSup":0,"RankTotal":1323,"ScoreTotal":122292,"ID":849109507,"Name":"ewazeth","NumVillages":1,"Points":26,"Rank":2845,"TribeID":1528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109507","BestRank":2845,"BestRankAt":"2023-02-15T06:22:53.676481Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676481Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676481Z","LastActivityAt":"2023-02-15T06:22:53.676481Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1776,"ScoreAtt":270,"RankDef":2147,"ScoreDef":1996,"RankSup":0,"ScoreSup":0,"RankTotal":2231,"ScoreTotal":2266,"ID":849109521,"Name":"justys3828","NumVillages":0,"Points":0,"Rank":3126,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109521","BestRank":3126,"BestRankAt":"2023-02-15T06:22:53.676482Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676482Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676482Z","LastActivityAt":"2023-02-15T06:22:53.676483Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109601,"Name":"EpsHunT","NumVillages":1,"Points":26,"Rank":2846,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109601","BestRank":2846,"BestRankAt":"2023-02-15T06:22:53.676483Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676484Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676483Z","LastActivityAt":"2023-02-15T06:22:53.676484Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":992,"ScoreAtt":32386,"RankDef":2185,"ScoreDef":1454,"RankSup":1377,"ScoreSup":3,"RankTotal":1736,"ScoreTotal":33843,"ID":849109637,"Name":"Czemi96","NumVillages":2,"Points":5487,"Rank":1301,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109637","BestRank":1301,"BestRankAt":"2023-02-15T06:22:53.676484Z","MostPoints":5487,"MostPointsAt":"2023-02-15T06:22:53.676485Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676485Z","LastActivityAt":"2023-02-15T06:22:53.676485Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109701,"Name":"VaniaMay","NumVillages":1,"Points":360,"Rank":2118,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109701","BestRank":2118,"BestRankAt":"2023-02-15T06:22:53.676486Z","MostPoints":360,"MostPointsAt":"2023-02-15T06:22:53.676486Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676486Z","LastActivityAt":"2023-02-15T06:22:53.676486Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109705,"Name":"DomiNio","NumVillages":1,"Points":357,"Rank":2121,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109705","BestRank":2121,"BestRankAt":"2023-02-15T06:22:53.676487Z","MostPoints":357,"MostPointsAt":"2023-02-15T06:22:53.676487Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676487Z","LastActivityAt":"2023-02-15T06:22:53.676487Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1155,"ScoreAtt":13706,"RankDef":2321,"ScoreDef":208,"RankSup":0,"ScoreSup":0,"RankTotal":1942,"ScoreTotal":13914,"ID":849109795,"Name":"Peka44","NumVillages":5,"Points":17824,"Rank":956,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109795","BestRank":956,"BestRankAt":"2023-02-15T06:22:53.676488Z","MostPoints":17824,"MostPointsAt":"2023-02-15T06:22:53.676489Z","MostVillages":5,"MostVillagesAt":"2023-02-15T06:22:53.676488Z","LastActivityAt":"2023-02-15T06:22:53.676489Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109875,"Name":"v3n1s","NumVillages":1,"Points":180,"Rank":2338,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109875","BestRank":2338,"BestRankAt":"2023-02-15T06:22:53.676489Z","MostPoints":180,"MostPointsAt":"2023-02-15T06:22:53.67649Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67649Z","LastActivityAt":"2023-02-15T06:22:53.67649Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2225,"ScoreDef":817,"RankSup":0,"ScoreSup":0,"RankTotal":2316,"ScoreTotal":817,"ID":849109885,"Name":"graf72","NumVillages":1,"Points":1746,"Rank":1711,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109885","BestRank":1711,"BestRankAt":"2023-02-15T06:22:53.676491Z","MostPoints":1746,"MostPointsAt":"2023-02-15T06:22:53.676491Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676491Z","LastActivityAt":"2023-02-15T06:22:53.676491Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1748,"ScoreDef":15916,"RankSup":0,"ScoreSup":0,"RankTotal":1923,"ScoreTotal":15916,"ID":849109935,"Name":"Patrykos91","NumVillages":1,"Points":1226,"Rank":1803,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109935","BestRank":1803,"BestRankAt":"2023-02-15T06:22:53.676492Z","MostPoints":1226,"MostPointsAt":"2023-02-15T06:22:53.676492Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676492Z","LastActivityAt":"2023-02-15T06:22:53.676492Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1620,"ScoreAtt":1091,"RankDef":2275,"ScoreDef":439,"RankSup":0,"ScoreSup":0,"RankTotal":2275,"ScoreTotal":1530,"ID":849109966,"Name":"KozioƂ","NumVillages":1,"Points":344,"Rank":2133,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109966","BestRank":2133,"BestRankAt":"2023-02-15T06:22:53.676493Z","MostPoints":344,"MostPointsAt":"2023-02-15T06:22:53.676493Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676493Z","LastActivityAt":"2023-02-15T06:22:53.676494Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110021,"Name":"Piotr-Wielki2","NumVillages":1,"Points":2167,"Rank":1634,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110021","BestRank":1634,"BestRankAt":"2023-02-15T06:22:53.676494Z","MostPoints":2167,"MostPointsAt":"2023-02-15T06:22:53.676495Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676494Z","LastActivityAt":"2023-02-15T06:22:53.676495Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110289,"Name":"daniok94","NumVillages":1,"Points":603,"Rank":1987,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110289","BestRank":1987,"BestRankAt":"2023-02-15T06:22:53.676495Z","MostPoints":603,"MostPointsAt":"2023-02-15T06:22:53.676496Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676496Z","LastActivityAt":"2023-02-15T06:22:53.676496Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2002,"ScoreDef":5001,"RankSup":0,"ScoreSup":0,"RankTotal":2134,"ScoreTotal":5001,"ID":849110304,"Name":"Paveulon","NumVillages":1,"Points":97,"Rank":2492,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110304","BestRank":2492,"BestRankAt":"2023-02-15T06:22:53.676497Z","MostPoints":97,"MostPointsAt":"2023-02-15T06:22:53.676497Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676497Z","LastActivityAt":"2023-02-15T06:22:53.676497Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1374,"ScoreAtt":4638,"RankDef":2302,"ScoreDef":282,"RankSup":0,"ScoreSup":0,"RankTotal":2138,"ScoreTotal":4920,"ID":849110310,"Name":"Mantvel","NumVillages":0,"Points":0,"Rank":3127,"TribeID":1643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110310","BestRank":3127,"BestRankAt":"2023-02-15T06:22:53.676498Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676498Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676498Z","LastActivityAt":"2023-02-15T06:22:53.676499Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1151,"ScoreAtt":13847,"RankDef":2375,"ScoreDef":40,"RankSup":0,"ScoreSup":0,"RankTotal":1943,"ScoreTotal":13887,"ID":849110365,"Name":"bojanees","NumVillages":3,"Points":9599,"Rank":1101,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110365","BestRank":1101,"BestRankAt":"2023-02-15T06:22:53.676499Z","MostPoints":9599,"MostPointsAt":"2023-02-15T06:22:53.6765Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676499Z","LastActivityAt":"2023-02-15T06:22:53.6765Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2371,"ScoreDef":43,"RankSup":0,"ScoreSup":0,"RankTotal":2467,"ScoreTotal":43,"ID":849110380,"Name":"JasneĆ»eSzymek","NumVillages":1,"Points":225,"Rank":2263,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110380","BestRank":2263,"BestRankAt":"2023-02-15T06:22:53.6765Z","MostPoints":225,"MostPointsAt":"2023-02-15T06:22:53.676501Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676501Z","LastActivityAt":"2023-02-15T06:22:53.676501Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1028,"ScoreAtt":26798,"RankDef":2440,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1804,"ScoreTotal":26808,"ID":849110382,"Name":"Hardex","NumVillages":3,"Points":10945,"Rank":1059,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110382","BestRank":1059,"BestRankAt":"2023-02-15T06:22:53.676502Z","MostPoints":10945,"MostPointsAt":"2023-02-15T06:22:53.676502Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676502Z","LastActivityAt":"2023-02-15T06:22:53.676502Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110479,"Name":"rambo3423","NumVillages":1,"Points":115,"Rank":2456,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110479","BestRank":2456,"BestRankAt":"2023-02-15T06:22:53.676503Z","MostPoints":115,"MostPointsAt":"2023-02-15T06:22:53.676503Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676503Z","LastActivityAt":"2023-02-15T06:22:53.676503Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2504,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2578,"ScoreTotal":1,"ID":849110571,"Name":"Ywozdreiwt Nyzuk","NumVillages":1,"Points":2552,"Rank":1580,"TribeID":256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110571","BestRank":1580,"BestRankAt":"2023-02-15T06:22:53.676504Z","MostPoints":2552,"MostPointsAt":"2023-02-15T06:22:53.676504Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676504Z","LastActivityAt":"2023-02-15T06:22:53.676505Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2472,"ScoreDef":10,"RankSup":835,"ScoreSup":18386,"RankTotal":1888,"ScoreTotal":18396,"ID":849110622,"Name":"ciulpa","NumVillages":1,"Points":2157,"Rank":1636,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110622","BestRank":1636,"BestRankAt":"2023-02-15T06:22:53.676505Z","MostPoints":2157,"MostPointsAt":"2023-02-15T06:22:53.676506Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676506Z","LastActivityAt":"2023-02-15T06:22:53.676506Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1853,"ScoreDef":9971,"RankSup":0,"ScoreSup":0,"RankTotal":2000,"ScoreTotal":9971,"ID":849110644,"Name":"METALCORE","NumVillages":1,"Points":121,"Rank":2444,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110644","BestRank":2444,"BestRankAt":"2023-02-15T06:22:53.676507Z","MostPoints":121,"MostPointsAt":"2023-02-15T06:22:53.676507Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676507Z","LastActivityAt":"2023-02-15T06:22:53.676507Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1676,"ScoreAtt":707,"RankDef":2243,"ScoreDef":692,"RankSup":0,"ScoreSup":0,"RankTotal":2285,"ScoreTotal":1399,"ID":849110674,"Name":"KrĂłl Mieszko1","NumVillages":1,"Points":670,"Rank":1963,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110674","BestRank":1963,"BestRankAt":"2023-02-15T06:22:53.676508Z","MostPoints":670,"MostPointsAt":"2023-02-15T06:22:53.676508Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676508Z","LastActivityAt":"2023-02-15T06:22:53.676508Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1707,"ScoreAtt":557,"RankDef":1736,"ScoreDef":16623,"RankSup":0,"ScoreSup":0,"RankTotal":1902,"ScoreTotal":17180,"ID":849110688,"Name":"Szarykocik717","NumVillages":1,"Points":3147,"Rank":1510,"TribeID":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110688","BestRank":1510,"BestRankAt":"2023-02-15T06:22:53.676513Z","MostPoints":3147,"MostPointsAt":"2023-02-15T06:22:53.676513Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676513Z","LastActivityAt":"2023-02-15T06:22:53.676514Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":658,"ScoreSup":67742,"RankTotal":1514,"ScoreTotal":67742,"ID":849110711,"Name":"Johny544","NumVillages":3,"Points":7640,"Rank":1179,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110711","BestRank":1179,"BestRankAt":"2023-02-15T06:22:53.676514Z","MostPoints":7640,"MostPointsAt":"2023-02-15T06:22:53.676515Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676514Z","LastActivityAt":"2023-02-15T06:22:53.676515Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110726,"Name":"BiiLii","NumVillages":1,"Points":162,"Rank":2364,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110726","BestRank":2364,"BestRankAt":"2023-02-15T06:22:53.676515Z","MostPoints":162,"MostPointsAt":"2023-02-15T06:22:53.676516Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676516Z","LastActivityAt":"2023-02-15T06:22:53.676516Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1169,"ScoreAtt":12553,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":1958,"ScoreTotal":12553,"ID":849110743,"Name":"Bart97","NumVillages":3,"Points":10950,"Rank":1058,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110743","BestRank":1058,"BestRankAt":"2023-02-15T06:22:53.676517Z","MostPoints":10950,"MostPointsAt":"2023-02-15T06:22:53.676517Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676517Z","LastActivityAt":"2023-02-15T06:22:53.676517Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110747,"Name":"knoxville5","NumVillages":1,"Points":26,"Rank":2847,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110747","BestRank":2847,"BestRankAt":"2023-02-15T06:22:53.676518Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676518Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676518Z","LastActivityAt":"2023-02-15T06:22:53.676518Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110781,"Name":"BabciaZosia","NumVillages":1,"Points":59,"Rank":2560,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110781","BestRank":2560,"BestRankAt":"2023-02-15T06:22:53.676519Z","MostPoints":59,"MostPointsAt":"2023-02-15T06:22:53.676519Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676519Z","LastActivityAt":"2023-02-15T06:22:53.67652Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110852,"Name":"mysza","NumVillages":1,"Points":417,"Rank":2079,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110852","BestRank":2079,"BestRankAt":"2023-02-15T06:22:53.67652Z","MostPoints":417,"MostPointsAt":"2023-02-15T06:22:53.676521Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67652Z","LastActivityAt":"2023-02-15T06:22:53.676521Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2339,"ScoreDef":127,"RankSup":0,"ScoreSup":0,"RankTotal":2429,"ScoreTotal":127,"ID":849110916,"Name":"Chronek09","NumVillages":1,"Points":658,"Rank":1966,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110916","BestRank":1966,"BestRankAt":"2023-02-15T06:22:53.676522Z","MostPoints":658,"MostPointsAt":"2023-02-15T06:22:53.676522Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676522Z","LastActivityAt":"2023-02-15T06:22:53.676522Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1277,"ScoreAtt":7117,"RankDef":2403,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2068,"ScoreTotal":7137,"ID":849111050,"Name":"Tomkos","NumVillages":2,"Points":3977,"Rank":1413,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111050","BestRank":1413,"BestRankAt":"2023-02-15T06:22:53.676523Z","MostPoints":3977,"MostPointsAt":"2023-02-15T06:22:53.676523Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676523Z","LastActivityAt":"2023-02-15T06:22:53.676523Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111052,"Name":"FAST ROTHMANS","NumVillages":1,"Points":26,"Rank":2848,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111052","BestRank":2848,"BestRankAt":"2023-02-15T06:22:53.676524Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676524Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676524Z","LastActivityAt":"2023-02-15T06:22:53.676525Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111109,"Name":"Cinse","NumVillages":1,"Points":117,"Rank":2451,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111109","BestRank":2451,"BestRankAt":"2023-02-15T06:22:53.676525Z","MostPoints":117,"MostPointsAt":"2023-02-15T06:22:53.676526Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676525Z","LastActivityAt":"2023-02-15T06:22:53.676526Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111121,"Name":"t0m45","NumVillages":1,"Points":192,"Rank":2318,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111121","BestRank":2318,"BestRankAt":"2023-02-15T06:22:53.676526Z","MostPoints":192,"MostPointsAt":"2023-02-15T06:22:53.676527Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676527Z","LastActivityAt":"2023-02-15T06:22:53.676527Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1513,"ScoreAtt":2209,"RankDef":1365,"ScoreDef":48832,"RankSup":964,"ScoreSup":6958,"RankTotal":1569,"ScoreTotal":57999,"ID":849111196,"Name":"batomixmix","NumVillages":4,"Points":19895,"Rank":917,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111196","BestRank":917,"BestRankAt":"2023-02-15T06:22:53.676528Z","MostPoints":19895,"MostPointsAt":"2023-02-15T06:22:53.676528Z","MostVillages":4,"MostVillagesAt":"2023-02-15T06:22:53.676528Z","LastActivityAt":"2023-02-15T06:22:53.676528Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":1359,"ScoreSup":4,"RankTotal":2565,"ScoreTotal":4,"ID":849111231,"Name":"Ciapolos","NumVillages":1,"Points":3047,"Rank":1523,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111231","BestRank":1523,"BestRankAt":"2023-02-15T06:22:53.676529Z","MostPoints":3047,"MostPointsAt":"2023-02-15T06:22:53.676529Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676529Z","LastActivityAt":"2023-02-15T06:22:53.676529Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1539,"ScoreAtt":1978,"RankDef":2350,"ScoreDef":88,"RankSup":0,"ScoreSup":0,"RankTotal":2241,"ScoreTotal":2066,"ID":849111244,"Name":"MannyKing97","NumVillages":1,"Points":4481,"Rank":1372,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111244","BestRank":1372,"BestRankAt":"2023-02-15T06:22:53.67653Z","MostPoints":4481,"MostPointsAt":"2023-02-15T06:22:53.67653Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67653Z","LastActivityAt":"2023-02-15T06:22:53.676531Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1861,"ScoreAtt":110,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2437,"ScoreTotal":110,"ID":849111316,"Name":"Pazuros","NumVillages":1,"Points":3090,"Rank":1516,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111316","BestRank":1516,"BestRankAt":"2023-02-15T06:22:53.676531Z","MostPoints":3090,"MostPointsAt":"2023-02-15T06:22:53.676532Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676532Z","LastActivityAt":"2023-02-15T06:22:53.676532Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1347,"ScoreAtt":5308,"RankDef":2455,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2121,"ScoreTotal":5318,"ID":849111332,"Name":"w00hanczyk","NumVillages":2,"Points":4888,"Rank":1334,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111332","BestRank":1334,"BestRankAt":"2023-02-15T06:22:53.676533Z","MostPoints":4888,"MostPointsAt":"2023-02-15T06:22:53.676533Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676533Z","LastActivityAt":"2023-02-15T06:22:53.676533Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1758,"ScoreAtt":310,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2380,"ScoreTotal":310,"ID":849111408,"Name":"Lisq12","NumVillages":1,"Points":3200,"Rank":1506,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111408","BestRank":1506,"BestRankAt":"2023-02-15T06:22:53.676534Z","MostPoints":3200,"MostPointsAt":"2023-02-15T06:22:53.676534Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676534Z","LastActivityAt":"2023-02-15T06:22:53.676534Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.676999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1917,"ScoreAtt":39,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2476,"ScoreTotal":39,"ID":849111418,"Name":"adamcx91","NumVillages":1,"Points":1323,"Rank":1781,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111418","BestRank":1781,"BestRankAt":"2023-02-15T06:22:53.676535Z","MostPoints":1323,"MostPointsAt":"2023-02-15T06:22:53.676535Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676535Z","LastActivityAt":"2023-02-15T06:22:53.676536Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2489,"ScoreDef":4,"RankSup":1362,"ScoreSup":4,"RankTotal":2552,"ScoreTotal":8,"ID":849111487,"Name":"smokee944","NumVillages":1,"Points":4782,"Rank":1346,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111487","BestRank":1346,"BestRankAt":"2023-02-15T06:22:53.676536Z","MostPoints":4782,"MostPointsAt":"2023-02-15T06:22:53.676537Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676536Z","LastActivityAt":"2023-02-15T06:22:53.676537Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2358,"ScoreDef":65,"RankSup":0,"ScoreSup":0,"RankTotal":2452,"ScoreTotal":65,"ID":849111632,"Name":"UlanyKaplan","NumVillages":1,"Points":524,"Rank":2016,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111632","BestRank":2016,"BestRankAt":"2023-02-15T06:22:53.676537Z","MostPoints":524,"MostPointsAt":"2023-02-15T06:22:53.676538Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676538Z","LastActivityAt":"2023-02-15T06:22:53.676538Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1901,"ScoreAtt":50,"RankDef":1615,"ScoreDef":24609,"RankSup":0,"ScoreSup":0,"RankTotal":1822,"ScoreTotal":24659,"ID":849111667,"Name":"Artur350","NumVillages":0,"Points":0,"Rank":3128,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111667","BestRank":3128,"BestRankAt":"2023-02-15T06:22:53.676539Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.676539Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676539Z","LastActivityAt":"2023-02-15T06:22:53.676539Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1811,"ScoreAtt":178,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2408,"ScoreTotal":178,"ID":849111732,"Name":"Dragonics1991","NumVillages":1,"Points":1549,"Rank":1744,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111732","BestRank":1744,"BestRankAt":"2023-02-15T06:22:53.67654Z","MostPoints":1549,"MostPointsAt":"2023-02-15T06:22:53.67654Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67654Z","LastActivityAt":"2023-02-15T06:22:53.676541Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1731,"ScoreAtt":419,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2368,"ScoreTotal":419,"ID":849111792,"Name":"zbigniew.G","NumVillages":1,"Points":7165,"Rank":1209,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111792","BestRank":1209,"BestRankAt":"2023-02-15T06:22:53.676541Z","MostPoints":7165,"MostPointsAt":"2023-02-15T06:22:53.676542Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676541Z","LastActivityAt":"2023-02-15T06:22:53.676542Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1806,"ScoreAtt":186,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2405,"ScoreTotal":186,"ID":849111819,"Name":"Lord darecki2","NumVillages":1,"Points":3177,"Rank":1507,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111819","BestRank":1507,"BestRankAt":"2023-02-15T06:22:53.676542Z","MostPoints":3177,"MostPointsAt":"2023-02-15T06:22:53.676543Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676543Z","LastActivityAt":"2023-02-15T06:22:53.676543Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111911,"Name":"pebloss","NumVillages":1,"Points":3975,"Rank":1414,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111911","BestRank":1414,"BestRankAt":"2023-02-15T06:22:53.676544Z","MostPoints":3975,"MostPointsAt":"2023-02-15T06:22:53.676544Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676544Z","LastActivityAt":"2023-02-15T06:22:53.676544Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1229,"ScoreAtt":9010,"RankDef":2296,"ScoreDef":306,"RankSup":1035,"ScoreSup":3432,"RankTotal":1956,"ScoreTotal":12748,"ID":849112029,"Name":"macqu","NumVillages":2,"Points":6887,"Rank":1224,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112029","BestRank":1224,"BestRankAt":"2023-02-15T06:22:53.676545Z","MostPoints":6887,"MostPointsAt":"2023-02-15T06:22:53.676545Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676545Z","LastActivityAt":"2023-02-15T06:22:53.676545Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2482,"ScoreDef":6,"RankSup":1096,"ScoreSup":2056,"RankTotal":2244,"ScoreTotal":2062,"ID":849112033,"Name":"Paxon13","NumVillages":2,"Points":5106,"Rank":1320,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112033","BestRank":1320,"BestRankAt":"2023-02-15T06:22:53.676546Z","MostPoints":5106,"MostPointsAt":"2023-02-15T06:22:53.676546Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676546Z","LastActivityAt":"2023-02-15T06:22:53.676547Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1770,"ScoreDef":14091,"RankSup":0,"ScoreSup":0,"RankTotal":1941,"ScoreTotal":14091,"ID":849112050,"Name":"nowikpzk","NumVillages":1,"Points":1108,"Rank":1835,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112050","BestRank":1835,"BestRankAt":"2023-02-15T06:22:53.676547Z","MostPoints":1108,"MostPointsAt":"2023-02-15T06:22:53.676548Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676548Z","LastActivityAt":"2023-02-15T06:22:53.676548Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112094,"Name":"herqers","NumVillages":1,"Points":3431,"Rank":1477,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112094","BestRank":1477,"BestRankAt":"2023-02-15T06:22:53.676549Z","MostPoints":3431,"MostPointsAt":"2023-02-15T06:22:53.676549Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676549Z","LastActivityAt":"2023-02-15T06:22:53.676549Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112178,"Name":"paweƂdante","NumVillages":1,"Points":52,"Rank":2577,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112178","BestRank":2577,"BestRankAt":"2023-02-15T06:22:53.67655Z","MostPoints":52,"MostPointsAt":"2023-02-15T06:22:53.67655Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67655Z","LastActivityAt":"2023-02-15T06:22:53.67655Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2509,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2579,"ScoreTotal":1,"ID":849112264,"Name":"Kacperr12","NumVillages":1,"Points":47,"Rank":2593,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112264","BestRank":2593,"BestRankAt":"2023-02-15T06:22:53.676551Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.676551Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676551Z","LastActivityAt":"2023-02-15T06:22:53.676552Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2485,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2564,"ScoreTotal":4,"ID":849112312,"Name":"Natalia1999","NumVillages":1,"Points":2357,"Rank":1603,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112312","BestRank":1603,"BestRankAt":"2023-02-15T06:22:53.676552Z","MostPoints":2357,"MostPointsAt":"2023-02-15T06:22:53.676553Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676552Z","LastActivityAt":"2023-02-15T06:22:53.676553Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1487,"ScoreAtt":2529,"RankDef":1790,"ScoreDef":13027,"RankSup":0,"ScoreSup":0,"RankTotal":1926,"ScoreTotal":15556,"ID":849112368,"Name":"Ruchna722","NumVillages":1,"Points":2274,"Rank":1618,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112368","BestRank":1618,"BestRankAt":"2023-02-15T06:22:53.676553Z","MostPoints":2274,"MostPointsAt":"2023-02-15T06:22:53.676554Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676554Z","LastActivityAt":"2023-02-15T06:22:53.676554Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1690,"ScoreAtt":665,"RankDef":2039,"ScoreDef":3972,"RankSup":0,"ScoreSup":0,"RankTotal":2145,"ScoreTotal":4637,"ID":849112369,"Name":"malagagaga","NumVillages":2,"Points":4611,"Rank":1362,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112369","BestRank":1362,"BestRankAt":"2023-02-15T06:22:53.676555Z","MostPoints":4611,"MostPointsAt":"2023-02-15T06:22:53.676555Z","MostVillages":2,"MostVillagesAt":"2023-02-15T06:22:53.676555Z","LastActivityAt":"2023-02-15T06:22:53.676555Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2395,"ScoreDef":23,"RankSup":0,"ScoreSup":0,"RankTotal":2494,"ScoreTotal":23,"ID":849112435,"Name":"Quattro only","NumVillages":1,"Points":6050,"Rank":1267,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112435","BestRank":1267,"BestRankAt":"2023-02-15T06:22:53.676556Z","MostPoints":6050,"MostPointsAt":"2023-02-15T06:22:53.676556Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676556Z","LastActivityAt":"2023-02-15T06:22:53.676556Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112443,"Name":"brodatykebab","NumVillages":1,"Points":26,"Rank":2849,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112443","BestRank":2849,"BestRankAt":"2023-02-15T06:22:53.676557Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676558Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676557Z","LastActivityAt":"2023-02-15T06:22:53.676558Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112504,"Name":"HucuPL","NumVillages":1,"Points":3099,"Rank":1515,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112504","BestRank":1515,"BestRankAt":"2023-02-15T06:22:53.676558Z","MostPoints":3099,"MostPointsAt":"2023-02-15T06:22:53.676559Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676559Z","LastActivityAt":"2023-02-15T06:22:53.676559Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1940,"ScoreAtt":27,"RankDef":2097,"ScoreDef":2831,"RankSup":0,"ScoreSup":0,"RankTotal":2213,"ScoreTotal":2858,"ID":849112510,"Name":"Chwaliszew2008","NumVillages":1,"Points":106,"Rank":2468,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112510","BestRank":2468,"BestRankAt":"2023-02-15T06:22:53.67656Z","MostPoints":106,"MostPointsAt":"2023-02-15T06:22:53.67656Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67656Z","LastActivityAt":"2023-02-15T06:22:53.67656Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112561,"Name":"Stefan Batory V","NumVillages":1,"Points":26,"Rank":2850,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112561","BestRank":2850,"BestRankAt":"2023-02-15T06:22:53.676561Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676561Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676561Z","LastActivityAt":"2023-02-15T06:22:53.676561Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112666,"Name":"DiscoZenon","NumVillages":1,"Points":102,"Rank":2477,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112666","BestRank":2477,"BestRankAt":"2023-02-15T06:22:53.676562Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.676562Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676562Z","LastActivityAt":"2023-02-15T06:22:53.676563Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112725,"Name":"domin964","NumVillages":1,"Points":2064,"Rank":1647,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112725","BestRank":1647,"BestRankAt":"2023-02-15T06:22:53.676563Z","MostPoints":2064,"MostPointsAt":"2023-02-15T06:22:53.676564Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676563Z","LastActivityAt":"2023-02-15T06:22:53.676564Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112733,"Name":"Astecki","NumVillages":1,"Points":52,"Rank":2578,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112733","BestRank":2578,"BestRankAt":"2023-02-15T06:22:53.676564Z","MostPoints":52,"MostPointsAt":"2023-02-15T06:22:53.676565Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676565Z","LastActivityAt":"2023-02-15T06:22:53.676565Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1902,"ScoreDef":7942,"RankSup":0,"ScoreSup":0,"RankTotal":2048,"ScoreTotal":7942,"ID":849112774,"Name":"Xpace67","NumVillages":1,"Points":26,"Rank":2851,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112774","BestRank":2851,"BestRankAt":"2023-02-15T06:22:53.676566Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676566Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676566Z","LastActivityAt":"2023-02-15T06:22:53.676566Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112850,"Name":"Klaudia121","NumVillages":1,"Points":102,"Rank":2478,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112850","BestRank":2478,"BestRankAt":"2023-02-15T06:22:53.676567Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.676567Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676567Z","LastActivityAt":"2023-02-15T06:22:53.676567Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2354,"ScoreDef":70,"RankSup":0,"ScoreSup":0,"RankTotal":2449,"ScoreTotal":70,"ID":849112876,"Name":"Fajfus","NumVillages":1,"Points":188,"Rank":2326,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112876","BestRank":2326,"BestRankAt":"2023-02-15T06:22:53.676568Z","MostPoints":188,"MostPointsAt":"2023-02-15T06:22:53.676568Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676568Z","LastActivityAt":"2023-02-15T06:22:53.676569Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1851,"ScoreDef":10029,"RankSup":0,"ScoreSup":0,"RankTotal":1999,"ScoreTotal":10029,"ID":849112879,"Name":"marcinmista","NumVillages":1,"Points":2631,"Rank":1575,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112879","BestRank":1575,"BestRankAt":"2023-02-15T06:22:53.676569Z","MostPoints":2631,"MostPointsAt":"2023-02-15T06:22:53.67657Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67657Z","LastActivityAt":"2023-02-15T06:22:53.67657Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2190,"ScoreDef":1380,"RankSup":0,"ScoreSup":0,"RankTotal":2286,"ScoreTotal":1380,"ID":849112887,"Name":"Banan123","NumVillages":1,"Points":1214,"Rank":1805,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112887","BestRank":1805,"BestRankAt":"2023-02-15T06:22:53.676571Z","MostPoints":1214,"MostPointsAt":"2023-02-15T06:22:53.676571Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676571Z","LastActivityAt":"2023-02-15T06:22:53.676571Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2409,"ScoreDef":19,"RankSup":0,"ScoreSup":0,"RankTotal":2503,"ScoreTotal":19,"ID":849112960,"Name":"Arlosik","NumVillages":1,"Points":1394,"Rank":1769,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112960","BestRank":1769,"BestRankAt":"2023-02-15T06:22:53.676572Z","MostPoints":1394,"MostPointsAt":"2023-02-15T06:22:53.676572Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676572Z","LastActivityAt":"2023-02-15T06:22:53.676572Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1927,"ScoreAtt":34,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2482,"ScoreTotal":34,"ID":849113055,"Name":"Mlody165","NumVillages":1,"Points":2293,"Rank":1614,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113055","BestRank":1614,"BestRankAt":"2023-02-15T06:22:53.676573Z","MostPoints":2293,"MostPointsAt":"2023-02-15T06:22:53.676573Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676573Z","LastActivityAt":"2023-02-15T06:22:53.676574Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113063,"Name":"Nowicjusz1","NumVillages":1,"Points":64,"Rank":2552,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113063","BestRank":2552,"BestRankAt":"2023-02-15T06:22:53.676574Z","MostPoints":64,"MostPointsAt":"2023-02-15T06:22:53.676575Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676574Z","LastActivityAt":"2023-02-15T06:22:53.676575Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2507,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2580,"ScoreTotal":1,"ID":849113078,"Name":"Sara23","NumVillages":1,"Points":1402,"Rank":1767,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113078","BestRank":1767,"BestRankAt":"2023-02-15T06:22:53.676575Z","MostPoints":1402,"MostPointsAt":"2023-02-15T06:22:53.676576Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676576Z","LastActivityAt":"2023-02-15T06:22:53.676576Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113226,"Name":"Adison II ƚmiaƂy","NumVillages":1,"Points":478,"Rank":2044,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113226","BestRank":2044,"BestRankAt":"2023-02-15T06:22:53.676577Z","MostPoints":478,"MostPointsAt":"2023-02-15T06:22:53.676577Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676577Z","LastActivityAt":"2023-02-15T06:22:53.676577Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2376,"ScoreDef":40,"RankSup":0,"ScoreSup":0,"RankTotal":2474,"ScoreTotal":40,"ID":849113300,"Name":"Sir sernik","NumVillages":1,"Points":313,"Rank":2160,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113300","BestRank":2160,"BestRankAt":"2023-02-15T06:22:53.676578Z","MostPoints":313,"MostPointsAt":"2023-02-15T06:22:53.676578Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676578Z","LastActivityAt":"2023-02-15T06:22:53.676578Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2219,"ScoreDef":897,"RankSup":0,"ScoreSup":0,"RankTotal":2310,"ScoreTotal":897,"ID":849113350,"Name":"SirPatryk23","NumVillages":0,"Points":0,"Rank":3129,"TribeID":1526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113350","BestRank":3129,"BestRankAt":"2023-02-15T06:22:53.676579Z","MostPoints":0,"MostPointsAt":"2023-02-15T06:22:53.67658Z","MostVillages":0,"MostVillagesAt":"2023-02-15T06:22:53.676579Z","LastActivityAt":"2023-02-15T06:22:53.67658Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113480,"Name":"Olek96","NumVillages":1,"Points":1858,"Rank":1691,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113480","BestRank":1691,"BestRankAt":"2023-02-15T06:22:53.67658Z","MostPoints":1858,"MostPointsAt":"2023-02-15T06:22:53.676581Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676581Z","LastActivityAt":"2023-02-15T06:22:53.676581Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677019Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2270,"ScoreDef":478,"RankSup":0,"ScoreSup":0,"RankTotal":2356,"ScoreTotal":478,"ID":849113485,"Name":"Knoxpl","NumVillages":1,"Points":48,"Rank":2587,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113485","BestRank":2587,"BestRankAt":"2023-02-15T06:22:53.676582Z","MostPoints":48,"MostPointsAt":"2023-02-15T06:22:53.676582Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676582Z","LastActivityAt":"2023-02-15T06:22:53.676582Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677019Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1629,"ScoreAtt":1002,"RankDef":2310,"ScoreDef":241,"RankSup":0,"ScoreSup":0,"RankTotal":2297,"ScoreTotal":1243,"ID":849113546,"Name":"bboy1994","NumVillages":3,"Points":6396,"Rank":1246,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113546","BestRank":1246,"BestRankAt":"2023-02-15T06:22:53.676583Z","MostPoints":6396,"MostPointsAt":"2023-02-15T06:22:53.676583Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676583Z","LastActivityAt":"2023-02-15T06:22:53.676583Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113556,"Name":"aghjs5","NumVillages":1,"Points":257,"Rank":2215,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113556","BestRank":2215,"BestRankAt":"2023-02-15T06:22:53.676584Z","MostPoints":257,"MostPointsAt":"2023-02-15T06:22:53.676584Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676584Z","LastActivityAt":"2023-02-15T06:22:53.676585Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113580,"Name":"Marcin Marci","NumVillages":1,"Points":26,"Rank":2852,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113580","BestRank":2852,"BestRankAt":"2023-02-15T06:22:53.676585Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676586Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676585Z","LastActivityAt":"2023-02-15T06:22:53.676586Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1350,"ScoreAtt":5292,"RankDef":0,"ScoreDef":0,"RankSup":1364,"ScoreSup":4,"RankTotal":2123,"ScoreTotal":5296,"ID":849113595,"Name":"Kosiaczkyyy","NumVillages":1,"Points":1320,"Rank":1783,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113595","BestRank":1783,"BestRankAt":"2023-02-15T06:22:53.676586Z","MostPoints":1320,"MostPointsAt":"2023-02-15T06:22:53.676587Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676587Z","LastActivityAt":"2023-02-15T06:22:53.676587Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1593,"ScoreAtt":1330,"RankDef":2050,"ScoreDef":3798,"RankSup":0,"ScoreSup":0,"RankTotal":2129,"ScoreTotal":5128,"ID":849113597,"Name":"Wenol","NumVillages":1,"Points":1741,"Rank":1712,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113597","BestRank":1712,"BestRankAt":"2023-02-15T06:22:53.676588Z","MostPoints":1741,"MostPointsAt":"2023-02-15T06:22:53.676588Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676588Z","LastActivityAt":"2023-02-15T06:22:53.676588Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2397,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2495,"ScoreTotal":22,"ID":849113603,"Name":"JW94","NumVillages":1,"Points":802,"Rank":1916,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113603","BestRank":1916,"BestRankAt":"2023-02-15T06:22:53.676589Z","MostPoints":802,"MostPointsAt":"2023-02-15T06:22:53.676589Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676589Z","LastActivityAt":"2023-02-15T06:22:53.67659Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2268,"ScoreDef":512,"RankSup":0,"ScoreSup":0,"RankTotal":2347,"ScoreTotal":512,"ID":849113673,"Name":"Ferox-1","NumVillages":1,"Points":223,"Rank":2267,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113673","BestRank":2267,"BestRankAt":"2023-02-15T06:22:53.67659Z","MostPoints":223,"MostPointsAt":"2023-02-15T06:22:53.676591Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67659Z","LastActivityAt":"2023-02-15T06:22:53.676591Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677023Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113819,"Name":"NurseJK","NumVillages":1,"Points":1446,"Rank":1760,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113819","BestRank":1760,"BestRankAt":"2023-02-15T06:22:53.676591Z","MostPoints":1446,"MostPointsAt":"2023-02-15T06:22:53.676592Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676592Z","LastActivityAt":"2023-02-15T06:22:53.676592Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113868,"Name":"Mroczne Elfy 1","NumVillages":1,"Points":102,"Rank":2479,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113868","BestRank":2479,"BestRankAt":"2023-02-15T06:22:53.676593Z","MostPoints":102,"MostPointsAt":"2023-02-15T06:22:53.676593Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676593Z","LastActivityAt":"2023-02-15T06:22:53.676593Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2461,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2538,"ScoreTotal":10,"ID":849114022,"Name":"gmaciejwagner","NumVillages":1,"Points":846,"Rank":1904,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114022","BestRank":1904,"BestRankAt":"2023-02-15T06:22:53.676594Z","MostPoints":846,"MostPointsAt":"2023-02-15T06:22:53.676594Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676594Z","LastActivityAt":"2023-02-15T06:22:53.676594Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114028,"Name":"KoƂowata","NumVillages":1,"Points":395,"Rank":2090,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114028","BestRank":2090,"BestRankAt":"2023-02-15T06:22:53.676595Z","MostPoints":395,"MostPointsAt":"2023-02-15T06:22:53.676595Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676595Z","LastActivityAt":"2023-02-15T06:22:53.676596Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2244,"ScoreDef":678,"RankSup":0,"ScoreSup":0,"RankTotal":2331,"ScoreTotal":678,"ID":849114033,"Name":"przemysƂ II","NumVillages":1,"Points":1126,"Rank":1826,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114033","BestRank":1826,"BestRankAt":"2023-02-15T06:22:53.676596Z","MostPoints":1126,"MostPointsAt":"2023-02-15T06:22:53.676597Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676596Z","LastActivityAt":"2023-02-15T06:22:53.676597Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114040,"Name":"Kulfix","NumVillages":1,"Points":521,"Rank":2018,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114040","BestRank":2018,"BestRankAt":"2023-02-15T06:22:53.676598Z","MostPoints":521,"MostPointsAt":"2023-02-15T06:22:53.676598Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676598Z","LastActivityAt":"2023-02-15T06:22:53.676598Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1551,"ScoreAtt":1820,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2259,"ScoreTotal":1820,"ID":849114085,"Name":"Krystiann11","NumVillages":1,"Points":1951,"Rank":1679,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114085","BestRank":1679,"BestRankAt":"2023-02-15T06:22:53.676599Z","MostPoints":1951,"MostPointsAt":"2023-02-15T06:22:53.676599Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676599Z","LastActivityAt":"2023-02-15T06:22:53.676599Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2444,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2544,"ScoreTotal":10,"ID":849114112,"Name":"Adikson16","NumVillages":1,"Points":143,"Rank":2387,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114112","BestRank":2387,"BestRankAt":"2023-02-15T06:22:53.6766Z","MostPoints":143,"MostPointsAt":"2023-02-15T06:22:53.6766Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.6766Z","LastActivityAt":"2023-02-15T06:22:53.676601Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2175,"ScoreDef":1628,"RankSup":0,"ScoreSup":0,"RankTotal":2272,"ScoreTotal":1628,"ID":849114119,"Name":"Adek77","NumVillages":1,"Points":1027,"Rank":1853,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114119","BestRank":1853,"BestRankAt":"2023-02-15T06:22:53.676601Z","MostPoints":1027,"MostPointsAt":"2023-02-15T06:22:53.676602Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676601Z","LastActivityAt":"2023-02-15T06:22:53.676602Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1834,"ScoreAtt":142,"RankDef":2361,"ScoreDef":62,"RankSup":0,"ScoreSup":0,"RankTotal":2401,"ScoreTotal":204,"ID":849114265,"Name":"narcyz3973","NumVillages":3,"Points":11999,"Rank":1043,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114265","BestRank":1043,"BestRankAt":"2023-02-15T06:22:53.676602Z","MostPoints":11999,"MostPointsAt":"2023-02-15T06:22:53.676603Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676603Z","LastActivityAt":"2023-02-15T06:22:53.676603Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1535,"ScoreAtt":2030,"RankDef":2037,"ScoreDef":3985,"RankSup":0,"ScoreSup":0,"RankTotal":2096,"ScoreTotal":6015,"ID":849114408,"Name":"Ragnarok 76","NumVillages":1,"Points":1027,"Rank":1854,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114408","BestRank":1854,"BestRankAt":"2023-02-15T06:22:53.676604Z","MostPoints":1027,"MostPointsAt":"2023-02-15T06:22:53.676604Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676604Z","LastActivityAt":"2023-02-15T06:22:53.676604Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677029Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2430,"ScoreDef":12,"RankSup":1411,"ScoreSup":1,"RankTotal":2524,"ScoreTotal":13,"ID":849114445,"Name":"kindza","NumVillages":1,"Points":1686,"Rank":1719,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114445","BestRank":1719,"BestRankAt":"2023-02-15T06:22:53.676605Z","MostPoints":1686,"MostPointsAt":"2023-02-15T06:22:53.676605Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676605Z","LastActivityAt":"2023-02-15T06:22:53.676605Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677029Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2372,"ScoreDef":42,"RankSup":0,"ScoreSup":0,"RankTotal":2468,"ScoreTotal":42,"ID":849114450,"Name":"matipo321","NumVillages":1,"Points":113,"Rank":2460,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114450","BestRank":2460,"BestRankAt":"2023-02-15T06:22:53.676606Z","MostPoints":113,"MostPointsAt":"2023-02-15T06:22:53.676606Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676606Z","LastActivityAt":"2023-02-15T06:22:53.676607Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1936,"ScoreAtt":28,"RankDef":2347,"ScoreDef":95,"RankSup":0,"ScoreSup":0,"RankTotal":2431,"ScoreTotal":123,"ID":849114477,"Name":"Monczi25","NumVillages":1,"Points":198,"Rank":2302,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114477","BestRank":2302,"BestRankAt":"2023-02-15T06:22:53.676607Z","MostPoints":198,"MostPointsAt":"2023-02-15T06:22:53.676608Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676608Z","LastActivityAt":"2023-02-15T06:22:53.676608Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.67703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2476,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2532,"ScoreTotal":10,"ID":849114502,"Name":"sada2","NumVillages":1,"Points":3943,"Rank":1417,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114502","BestRank":1417,"BestRankAt":"2023-02-15T06:22:53.676609Z","MostPoints":3943,"MostPointsAt":"2023-02-15T06:22:53.676609Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676609Z","LastActivityAt":"2023-02-15T06:22:53.676609Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1841,"ScoreAtt":134,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2426,"ScoreTotal":134,"ID":849114579,"Name":"SzymonMF6465","NumVillages":1,"Points":7901,"Rank":1163,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114579","BestRank":1163,"BestRankAt":"2023-02-15T06:22:53.67661Z","MostPoints":7901,"MostPointsAt":"2023-02-15T06:22:53.67661Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67661Z","LastActivityAt":"2023-02-15T06:22:53.67661Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114603,"Name":"Flink","NumVillages":1,"Points":222,"Rank":2270,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114603","BestRank":2270,"BestRankAt":"2023-02-15T06:22:53.676611Z","MostPoints":222,"MostPointsAt":"2023-02-15T06:22:53.676611Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676611Z","LastActivityAt":"2023-02-15T06:22:53.676612Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114664,"Name":"Patryk95","NumVillages":1,"Points":26,"Rank":2853,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114664","BestRank":2853,"BestRankAt":"2023-02-15T06:22:53.676612Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676613Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676612Z","LastActivityAt":"2023-02-15T06:22:53.676613Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2383,"ScoreDef":30,"RankSup":0,"ScoreSup":0,"RankTotal":2483,"ScoreTotal":30,"ID":849114683,"Name":"jareczek951","NumVillages":1,"Points":1034,"Rank":1850,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114683","BestRank":1850,"BestRankAt":"2023-02-15T06:22:53.676613Z","MostPoints":1034,"MostPointsAt":"2023-02-15T06:22:53.676614Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676614Z","LastActivityAt":"2023-02-15T06:22:53.676614Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115010,"Name":"Treon","NumVillages":1,"Points":53,"Rank":2573,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115010","BestRank":2573,"BestRankAt":"2023-02-15T06:22:53.676615Z","MostPoints":53,"MostPointsAt":"2023-02-15T06:22:53.676615Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676615Z","LastActivityAt":"2023-02-15T06:22:53.676615Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2425,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2518,"ScoreTotal":13,"ID":849115254,"Name":"Simon93","NumVillages":1,"Points":1546,"Rank":1745,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115254","BestRank":1745,"BestRankAt":"2023-02-15T06:22:53.676616Z","MostPoints":1546,"MostPointsAt":"2023-02-15T06:22:53.676616Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676616Z","LastActivityAt":"2023-02-15T06:22:53.676616Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115256,"Name":"CorAngar96","NumVillages":1,"Points":44,"Rank":2601,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115256","BestRank":2601,"BestRankAt":"2023-02-15T06:22:53.676617Z","MostPoints":44,"MostPointsAt":"2023-02-15T06:22:53.676617Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676617Z","LastActivityAt":"2023-02-15T06:22:53.676618Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115304,"Name":"kijek","NumVillages":1,"Points":38,"Rank":2612,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115304","BestRank":2612,"BestRankAt":"2023-02-15T06:22:53.676618Z","MostPoints":38,"MostPointsAt":"2023-02-15T06:22:53.676619Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676619Z","LastActivityAt":"2023-02-15T06:22:53.676619Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115365,"Name":"Pati999","NumVillages":1,"Points":196,"Rank":2308,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115365","BestRank":2308,"BestRankAt":"2023-02-15T06:22:53.67662Z","MostPoints":196,"MostPointsAt":"2023-02-15T06:22:53.67662Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67662Z","LastActivityAt":"2023-02-15T06:22:53.67662Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1965,"ScoreAtt":10,"RankDef":2499,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2526,"ScoreTotal":12,"ID":849115431,"Name":"fifiogf","NumVillages":1,"Points":686,"Rank":1958,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115431","BestRank":1958,"BestRankAt":"2023-02-15T06:22:53.676621Z","MostPoints":686,"MostPointsAt":"2023-02-15T06:22:53.676621Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676621Z","LastActivityAt":"2023-02-15T06:22:53.676621Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115509,"Name":"Kox12344","NumVillages":1,"Points":153,"Rank":2374,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115509","BestRank":2374,"BestRankAt":"2023-02-15T06:22:53.676622Z","MostPoints":153,"MostPointsAt":"2023-02-15T06:22:53.676622Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676622Z","LastActivityAt":"2023-02-15T06:22:53.676623Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115920,"Name":"Damian2023","NumVillages":1,"Points":121,"Rank":2445,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115920","BestRank":2445,"BestRankAt":"2023-02-15T06:22:53.676623Z","MostPoints":121,"MostPointsAt":"2023-02-15T06:22:53.676624Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676623Z","LastActivityAt":"2023-02-15T06:22:53.676624Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2420,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2519,"ScoreTotal":13,"ID":849115994,"Name":"Struma","NumVillages":1,"Points":212,"Rank":2283,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115994","BestRank":2283,"BestRankAt":"2023-02-15T06:22:53.676624Z","MostPoints":212,"MostPointsAt":"2023-02-15T06:22:53.676625Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676625Z","LastActivityAt":"2023-02-15T06:22:53.676625Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116044,"Name":"Mandrysi","NumVillages":1,"Points":295,"Rank":2181,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116044","BestRank":2181,"BestRankAt":"2023-02-15T06:22:53.676626Z","MostPoints":295,"MostPointsAt":"2023-02-15T06:22:53.676626Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676626Z","LastActivityAt":"2023-02-15T06:22:53.676626Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116089,"Name":"tribal766","NumVillages":1,"Points":26,"Rank":2854,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116089","BestRank":2854,"BestRankAt":"2023-02-15T06:22:53.676627Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.676627Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.676627Z","LastActivityAt":"2023-02-15T06:22:53.676627Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1711,"ScoreAtt":530,"RankDef":2008,"ScoreDef":4749,"RankSup":0,"ScoreSup":0,"RankTotal":2124,"ScoreTotal":5279,"ID":849116221,"Name":"ChadxikH8","NumVillages":3,"Points":5396,"Rank":1308,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116221","BestRank":1308,"BestRankAt":"2023-02-15T06:22:53.676628Z","MostPoints":5396,"MostPointsAt":"2023-02-15T06:22:53.676628Z","MostVillages":3,"MostVillagesAt":"2023-02-15T06:22:53.676628Z","LastActivityAt":"2023-02-15T06:22:53.676629Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677039Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116225,"Name":"Pongo","NumVillages":1,"Points":46,"Rank":2596,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116225","BestRank":2596,"BestRankAt":"2023-02-15T06:22:53.676629Z","MostPoints":46,"MostPointsAt":"2023-02-15T06:22:53.67663Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.67663Z","LastActivityAt":"2023-02-15T06:22:53.67663Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.677039Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116251,"Name":"natofp","NumVillages":1,"Points":101,"Rank":2484,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116251","BestRank":2484,"BestRankAt":"2023-02-15T06:22:53.875867Z","MostPoints":101,"MostPointsAt":"2023-02-15T06:22:53.875867Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875867Z","LastActivityAt":"2023-02-15T06:22:53.875867Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116287,"Name":"Jozin321","NumVillages":1,"Points":234,"Rank":2247,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116287","BestRank":2247,"BestRankAt":"2023-02-15T06:22:53.875867Z","MostPoints":234,"MostPointsAt":"2023-02-15T06:22:53.875868Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875867Z","LastActivityAt":"2023-02-15T06:22:53.875868Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1502,"ScoreAtt":2364,"RankDef":2415,"ScoreDef":15,"RankSup":0,"ScoreSup":0,"RankTotal":2228,"ScoreTotal":2379,"ID":849116310,"Name":"VillaSHL","NumVillages":1,"Points":2327,"Rank":1610,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116310","BestRank":1610,"BestRankAt":"2023-02-15T06:22:53.875868Z","MostPoints":2327,"MostPointsAt":"2023-02-15T06:22:53.875868Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875868Z","LastActivityAt":"2023-02-15T06:22:53.875868Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1903,"ScoreAtt":49,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2463,"ScoreTotal":49,"ID":849116357,"Name":"Kerakein","NumVillages":1,"Points":277,"Rank":2198,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116357","BestRank":2198,"BestRankAt":"2023-02-15T06:22:53.875869Z","MostPoints":277,"MostPointsAt":"2023-02-15T06:22:53.875869Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875869Z","LastActivityAt":"2023-02-15T06:22:53.875869Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2426,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2521,"ScoreTotal":13,"ID":849116416,"Name":"rafaltz","NumVillages":1,"Points":250,"Rank":2223,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116416","BestRank":2223,"BestRankAt":"2023-02-15T06:22:53.875869Z","MostPoints":250,"MostPointsAt":"2023-02-15T06:22:53.87587Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875869Z","LastActivityAt":"2023-02-15T06:22:53.87587Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1837,"ScoreDef":10573,"RankSup":0,"ScoreSup":0,"RankTotal":1992,"ScoreTotal":10573,"ID":849116419,"Name":"ArtBe","NumVillages":1,"Points":2251,"Rank":1625,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116419","BestRank":1625,"BestRankAt":"2023-02-15T06:22:53.87587Z","MostPoints":2251,"MostPointsAt":"2023-02-15T06:22:53.87587Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87587Z","LastActivityAt":"2023-02-15T06:22:53.87587Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1891,"ScoreAtt":60,"RankDef":2385,"ScoreDef":28,"RankSup":0,"ScoreSup":0,"RankTotal":2445,"ScoreTotal":88,"ID":849116679,"Name":"Szy.mek","NumVillages":1,"Points":842,"Rank":1908,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116679","BestRank":1908,"BestRankAt":"2023-02-15T06:22:53.87587Z","MostPoints":842,"MostPointsAt":"2023-02-15T06:22:53.875871Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875871Z","LastActivityAt":"2023-02-15T06:22:53.875871Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116819,"Name":"smerfy 22","NumVillages":1,"Points":52,"Rank":2579,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116819","BestRank":2579,"BestRankAt":"2023-02-15T06:22:53.875871Z","MostPoints":52,"MostPointsAt":"2023-02-15T06:22:53.875871Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875871Z","LastActivityAt":"2023-02-15T06:22:53.875871Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116911,"Name":"Hakal93","NumVillages":1,"Points":26,"Rank":2855,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116911","BestRank":2855,"BestRankAt":"2023-02-15T06:22:53.875872Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875872Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875872Z","LastActivityAt":"2023-02-15T06:22:53.875872Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2505,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2583,"ScoreTotal":1,"ID":849116980,"Name":"Bacik1906","NumVillages":1,"Points":26,"Rank":2856,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116980","BestRank":2856,"BestRankAt":"2023-02-15T06:22:53.875872Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875872Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875872Z","LastActivityAt":"2023-02-15T06:22:53.875872Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117035,"Name":"Alderos","NumVillages":1,"Points":26,"Rank":2857,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117035","BestRank":2857,"BestRankAt":"2023-02-15T06:22:53.875873Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875873Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875873Z","LastActivityAt":"2023-02-15T06:22:53.875873Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117087,"Name":"SunSun","NumVillages":1,"Points":566,"Rank":1996,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117087","BestRank":1996,"BestRankAt":"2023-02-15T06:22:53.875873Z","MostPoints":566,"MostPointsAt":"2023-02-15T06:22:53.875874Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875874Z","LastActivityAt":"2023-02-15T06:22:53.875874Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1681,"ScoreAtt":683,"RankDef":2473,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2330,"ScoreTotal":693,"ID":849117143,"Name":"karty123","NumVillages":1,"Points":2034,"Rank":1657,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117143","BestRank":1657,"BestRankAt":"2023-02-15T06:22:53.875874Z","MostPoints":2034,"MostPointsAt":"2023-02-15T06:22:53.875874Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875874Z","LastActivityAt":"2023-02-15T06:22:53.875874Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2260,"ScoreDef":549,"RankSup":0,"ScoreSup":0,"RankTotal":2341,"ScoreTotal":549,"ID":849117196,"Name":"ekursy","NumVillages":1,"Points":958,"Rank":1878,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117196","BestRank":1878,"BestRankAt":"2023-02-15T06:22:53.875875Z","MostPoints":958,"MostPointsAt":"2023-02-15T06:22:53.875875Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875875Z","LastActivityAt":"2023-02-15T06:22:53.875875Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2424,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2516,"ScoreTotal":13,"ID":849117240,"Name":"Love4evere3","NumVillages":1,"Points":349,"Rank":2127,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117240","BestRank":2127,"BestRankAt":"2023-02-15T06:22:53.875875Z","MostPoints":349,"MostPointsAt":"2023-02-15T06:22:53.875875Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875875Z","LastActivityAt":"2023-02-15T06:22:53.875875Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2120,"ScoreDef":2382,"RankSup":0,"ScoreSup":0,"RankTotal":2227,"ScoreTotal":2382,"ID":849117242,"Name":"frombosu1","NumVillages":1,"Points":1146,"Rank":1820,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117242","BestRank":1820,"BestRankAt":"2023-02-15T06:22:53.875876Z","MostPoints":1146,"MostPointsAt":"2023-02-15T06:22:53.875876Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875876Z","LastActivityAt":"2023-02-15T06:22:53.875876Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117362,"Name":"festher","NumVillages":1,"Points":1219,"Rank":1804,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117362","BestRank":1804,"BestRankAt":"2023-02-15T06:22:53.875876Z","MostPoints":1219,"MostPointsAt":"2023-02-15T06:22:53.875876Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875876Z","LastActivityAt":"2023-02-15T06:22:53.875876Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1685,"ScoreAtt":675,"RankDef":2508,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2332,"ScoreTotal":676,"ID":849117427,"Name":"Mateusz400","NumVillages":1,"Points":573,"Rank":1992,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117427","BestRank":1992,"BestRankAt":"2023-02-15T06:22:53.875877Z","MostPoints":573,"MostPointsAt":"2023-02-15T06:22:53.875877Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875877Z","LastActivityAt":"2023-02-15T06:22:53.875877Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2477,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2539,"ScoreTotal":10,"ID":849117454,"Name":"Bimber123","NumVillages":1,"Points":776,"Rank":1926,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117454","BestRank":1926,"BestRankAt":"2023-02-15T06:22:53.875878Z","MostPoints":776,"MostPointsAt":"2023-02-15T06:22:53.875878Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875878Z","LastActivityAt":"2023-02-15T06:22:53.875878Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117513,"Name":"heroarek","NumVillages":1,"Points":26,"Rank":2858,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117513","BestRank":2858,"BestRankAt":"2023-02-15T06:22:53.875878Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875879Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875879Z","LastActivityAt":"2023-02-15T06:22:53.875879Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2484,"ScoreDef":5,"RankSup":0,"ScoreSup":0,"RankTotal":2557,"ScoreTotal":5,"ID":849117533,"Name":"Krzysiek12","NumVillages":1,"Points":73,"Rank":2528,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117533","BestRank":2528,"BestRankAt":"2023-02-15T06:22:53.875879Z","MostPoints":73,"MostPointsAt":"2023-02-15T06:22:53.875879Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875879Z","LastActivityAt":"2023-02-15T06:22:53.875879Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117536,"Name":"Jacymir15","NumVillages":1,"Points":68,"Rank":2543,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117536","BestRank":2543,"BestRankAt":"2023-02-15T06:22:53.87588Z","MostPoints":68,"MostPointsAt":"2023-02-15T06:22:53.87588Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87588Z","LastActivityAt":"2023-02-15T06:22:53.87588Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117551,"Name":"perko","NumVillages":1,"Points":484,"Rank":2040,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117551","BestRank":2040,"BestRankAt":"2023-02-15T06:22:53.87588Z","MostPoints":484,"MostPointsAt":"2023-02-15T06:22:53.87588Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87588Z","LastActivityAt":"2023-02-15T06:22:53.87588Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117622,"Name":"smiesznylucek","NumVillages":1,"Points":1308,"Rank":1788,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117622","BestRank":1788,"BestRankAt":"2023-02-15T06:22:53.875881Z","MostPoints":1308,"MostPointsAt":"2023-02-15T06:22:53.875881Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875881Z","LastActivityAt":"2023-02-15T06:22:53.875881Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117644,"Name":"WillyBilly","NumVillages":1,"Points":26,"Rank":2859,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117644","BestRank":2859,"BestRankAt":"2023-02-15T06:22:53.875881Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875881Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875881Z","LastActivityAt":"2023-02-15T06:22:53.875881Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117695,"Name":"sadomaso6903","NumVillages":1,"Points":350,"Rank":2126,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117695","BestRank":2126,"BestRankAt":"2023-02-15T06:22:53.875882Z","MostPoints":350,"MostPointsAt":"2023-02-15T06:22:53.875882Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875882Z","LastActivityAt":"2023-02-15T06:22:53.875882Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1794,"ScoreAtt":228,"RankDef":1819,"ScoreDef":11384,"RankSup":0,"ScoreSup":0,"RankTotal":1974,"ScoreTotal":11612,"ID":849117830,"Name":"kosmiczny","NumVillages":1,"Points":2016,"Rank":1661,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117830","BestRank":1661,"BestRankAt":"2023-02-15T06:22:53.875882Z","MostPoints":2016,"MostPointsAt":"2023-02-15T06:22:53.875882Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875882Z","LastActivityAt":"2023-02-15T06:22:53.875883Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118043,"Name":"barca35fcb","NumVillages":1,"Points":26,"Rank":2860,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118043","BestRank":2860,"BestRankAt":"2023-02-15T06:22:53.875883Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875883Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875883Z","LastActivityAt":"2023-02-15T06:22:53.875883Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118128,"Name":"jaro513","NumVillages":1,"Points":228,"Rank":2254,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118128","BestRank":2254,"BestRankAt":"2023-02-15T06:22:53.875883Z","MostPoints":228,"MostPointsAt":"2023-02-15T06:22:53.875883Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875883Z","LastActivityAt":"2023-02-15T06:22:53.875884Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118231,"Name":"Czaq1","NumVillages":1,"Points":111,"Rank":2465,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118231","BestRank":2465,"BestRankAt":"2023-02-15T06:22:53.875884Z","MostPoints":111,"MostPointsAt":"2023-02-15T06:22:53.875884Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875884Z","LastActivityAt":"2023-02-15T06:22:53.875884Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1769,"ScoreAtt":282,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2385,"ScoreTotal":282,"ID":849118259,"Name":"Kopansky","NumVillages":1,"Points":1496,"Rank":1751,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118259","BestRank":1751,"BestRankAt":"2023-02-15T06:22:53.875884Z","MostPoints":1496,"MostPointsAt":"2023-02-15T06:22:53.875885Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875884Z","LastActivityAt":"2023-02-15T06:22:53.875885Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118261,"Name":"justyna010114","NumVillages":1,"Points":446,"Rank":2061,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118261","BestRank":2061,"BestRankAt":"2023-02-15T06:22:53.875885Z","MostPoints":446,"MostPointsAt":"2023-02-15T06:22:53.875885Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875885Z","LastActivityAt":"2023-02-15T06:22:53.875885Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2448,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2545,"ScoreTotal":10,"ID":849118262,"Name":"xKirioSan","NumVillages":1,"Points":424,"Rank":2076,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118262","BestRank":2076,"BestRankAt":"2023-02-15T06:22:53.875885Z","MostPoints":424,"MostPointsAt":"2023-02-15T06:22:53.875886Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875886Z","LastActivityAt":"2023-02-15T06:22:53.875886Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118435,"Name":"Budrys2000","NumVillages":1,"Points":26,"Rank":2861,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118435","BestRank":2861,"BestRankAt":"2023-02-15T06:22:53.875886Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875886Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875886Z","LastActivityAt":"2023-02-15T06:22:53.875886Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1719,"ScoreAtt":490,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2354,"ScoreTotal":490,"ID":849118441,"Name":"AdaSobieraj","NumVillages":1,"Points":565,"Rank":1998,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118441","BestRank":1998,"BestRankAt":"2023-02-15T06:22:53.875887Z","MostPoints":565,"MostPointsAt":"2023-02-15T06:22:53.875887Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875887Z","LastActivityAt":"2023-02-15T06:22:53.875887Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2438,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2548,"ScoreTotal":10,"ID":849118462,"Name":"wlodek1404","NumVillages":1,"Points":793,"Rank":1919,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118462","BestRank":1919,"BestRankAt":"2023-02-15T06:22:53.875887Z","MostPoints":793,"MostPointsAt":"2023-02-15T06:22:53.875887Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875887Z","LastActivityAt":"2023-02-15T06:22:53.875887Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118478,"Name":"Vokhar","NumVillages":1,"Points":26,"Rank":2862,"TribeID":1764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118478","BestRank":2862,"BestRankAt":"2023-02-15T06:22:53.875888Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875888Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875888Z","LastActivityAt":"2023-02-15T06:22:53.875888Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118616,"Name":"Kolodzij","NumVillages":1,"Points":94,"Rank":2499,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118616","BestRank":2499,"BestRankAt":"2023-02-15T06:22:53.875888Z","MostPoints":94,"MostPointsAt":"2023-02-15T06:22:53.875888Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875888Z","LastActivityAt":"2023-02-15T06:22:53.875888Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1914,"ScoreAtt":40,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2472,"ScoreTotal":40,"ID":849118709,"Name":"Addu","NumVillages":1,"Points":317,"Rank":2158,"TribeID":1795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118709","BestRank":2158,"BestRankAt":"2023-02-15T06:22:53.875889Z","MostPoints":317,"MostPointsAt":"2023-02-15T06:22:53.875889Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875889Z","LastActivityAt":"2023-02-15T06:22:53.875889Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118761,"Name":"Kokeszko94","NumVillages":1,"Points":26,"Rank":2863,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118761","BestRank":2863,"BestRankAt":"2023-02-15T06:22:53.875889Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875889Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875889Z","LastActivityAt":"2023-02-15T06:22:53.875889Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118769,"Name":"joaopaulo98","NumVillages":1,"Points":26,"Rank":2864,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118769","BestRank":2864,"BestRankAt":"2023-02-15T06:22:53.87589Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.87589Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87589Z","LastActivityAt":"2023-02-15T06:22:53.87589Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2180,"ScoreDef":1499,"RankSup":0,"ScoreSup":0,"RankTotal":2277,"ScoreTotal":1499,"ID":849118786,"Name":"hair12345","NumVillages":1,"Points":761,"Rank":1937,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118786","BestRank":1937,"BestRankAt":"2023-02-15T06:22:53.87589Z","MostPoints":761,"MostPointsAt":"2023-02-15T06:22:53.87589Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87589Z","LastActivityAt":"2023-02-15T06:22:53.875891Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118806,"Name":"trend","NumVillages":1,"Points":338,"Rank":2140,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118806","BestRank":2140,"BestRankAt":"2023-02-15T06:22:53.875891Z","MostPoints":338,"MostPointsAt":"2023-02-15T06:22:53.875891Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875891Z","LastActivityAt":"2023-02-15T06:22:53.875891Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118820,"Name":"zenek12","NumVillages":1,"Points":289,"Rank":2187,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118820","BestRank":2187,"BestRankAt":"2023-02-15T06:22:53.875891Z","MostPoints":289,"MostPointsAt":"2023-02-15T06:22:53.875892Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875891Z","LastActivityAt":"2023-02-15T06:22:53.875892Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118827,"Name":"kozielniak","NumVillages":1,"Points":141,"Rank":2389,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118827","BestRank":2389,"BestRankAt":"2023-02-15T06:22:53.875892Z","MostPoints":141,"MostPointsAt":"2023-02-15T06:22:53.875892Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875892Z","LastActivityAt":"2023-02-15T06:22:53.875892Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118930,"Name":"Mc Fly","NumVillages":1,"Points":128,"Rank":2429,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118930","BestRank":2429,"BestRankAt":"2023-02-15T06:22:53.875892Z","MostPoints":128,"MostPointsAt":"2023-02-15T06:22:53.875893Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875893Z","LastActivityAt":"2023-02-15T06:22:53.875893Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118954,"Name":"Grzaegorz1122","NumVillages":1,"Points":268,"Rank":2208,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118954","BestRank":2208,"BestRankAt":"2023-02-15T06:22:53.875893Z","MostPoints":268,"MostPointsAt":"2023-02-15T06:22:53.875893Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875893Z","LastActivityAt":"2023-02-15T06:22:53.875893Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118998,"Name":"balkres","NumVillages":1,"Points":237,"Rank":2242,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118998","BestRank":2242,"BestRankAt":"2023-02-15T06:22:53.875894Z","MostPoints":237,"MostPointsAt":"2023-02-15T06:22:53.875894Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875894Z","LastActivityAt":"2023-02-15T06:22:53.875894Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1836,"ScoreAtt":140,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2420,"ScoreTotal":140,"ID":849118999,"Name":"Minister123","NumVillages":1,"Points":1768,"Rank":1706,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118999","BestRank":1706,"BestRankAt":"2023-02-15T06:22:53.875894Z","MostPoints":1768,"MostPointsAt":"2023-02-15T06:22:53.875894Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875894Z","LastActivityAt":"2023-02-15T06:22:53.875894Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119017,"Name":"rewox","NumVillages":1,"Points":26,"Rank":2865,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119017","BestRank":2865,"BestRankAt":"2023-02-15T06:22:53.875895Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875895Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875895Z","LastActivityAt":"2023-02-15T06:22:53.875895Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1977,"ScoreAtt":8,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2553,"ScoreTotal":8,"ID":849119078,"Name":"GrubySponsor","NumVillages":1,"Points":141,"Rank":2390,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119078","BestRank":2390,"BestRankAt":"2023-02-15T06:22:53.875895Z","MostPoints":141,"MostPointsAt":"2023-02-15T06:22:53.875895Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875895Z","LastActivityAt":"2023-02-15T06:22:53.875895Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119121,"Name":"aceofa","NumVillages":1,"Points":664,"Rank":1965,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119121","BestRank":1965,"BestRankAt":"2023-02-15T06:22:53.875896Z","MostPoints":664,"MostPointsAt":"2023-02-15T06:22:53.875897Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875896Z","LastActivityAt":"2023-02-15T06:22:53.875897Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119163,"Name":"Dawidoxil1996","NumVillages":1,"Points":227,"Rank":2256,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119163","BestRank":2256,"BestRankAt":"2023-02-15T06:22:53.875897Z","MostPoints":227,"MostPointsAt":"2023-02-15T06:22:53.875897Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875897Z","LastActivityAt":"2023-02-15T06:22:53.875897Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119173,"Name":"kafejtor","NumVillages":1,"Points":227,"Rank":2257,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119173","BestRank":2257,"BestRankAt":"2023-02-15T06:22:53.875897Z","MostPoints":227,"MostPointsAt":"2023-02-15T06:22:53.875898Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875898Z","LastActivityAt":"2023-02-15T06:22:53.875898Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119223,"Name":"Grzelakb","NumVillages":1,"Points":339,"Rank":2138,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119223","BestRank":2138,"BestRankAt":"2023-02-15T06:22:53.875898Z","MostPoints":339,"MostPointsAt":"2023-02-15T06:22:53.875898Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875898Z","LastActivityAt":"2023-02-15T06:22:53.875898Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119328,"Name":"miglanc06","NumVillages":1,"Points":682,"Rank":1959,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119328","BestRank":1959,"BestRankAt":"2023-02-15T06:22:53.875898Z","MostPoints":682,"MostPointsAt":"2023-02-15T06:22:53.875899Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875899Z","LastActivityAt":"2023-02-15T06:22:53.875899Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119407,"Name":"Tomaszer12","NumVillages":1,"Points":525,"Rank":2014,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119407","BestRank":2014,"BestRankAt":"2023-02-15T06:22:53.875899Z","MostPoints":525,"MostPointsAt":"2023-02-15T06:22:53.875899Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875899Z","LastActivityAt":"2023-02-15T06:22:53.875899Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119423,"Name":"Polak212","NumVillages":1,"Points":514,"Rank":2021,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119423","BestRank":2021,"BestRankAt":"2023-02-15T06:22:53.8759Z","MostPoints":514,"MostPointsAt":"2023-02-15T06:22:53.8759Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.8759Z","LastActivityAt":"2023-02-15T06:22:53.8759Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119432,"Name":"WitoldWolski","NumVillages":1,"Points":153,"Rank":2375,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119432","BestRank":2375,"BestRankAt":"2023-02-15T06:22:53.8759Z","MostPoints":153,"MostPointsAt":"2023-02-15T06:22:53.8759Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.8759Z","LastActivityAt":"2023-02-15T06:22:53.8759Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119476,"Name":"gnom1","NumVillages":1,"Points":301,"Rank":2174,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119476","BestRank":2174,"BestRankAt":"2023-02-15T06:22:53.875901Z","MostPoints":301,"MostPointsAt":"2023-02-15T06:22:53.875901Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875901Z","LastActivityAt":"2023-02-15T06:22:53.875901Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119486,"Name":"paviks","NumVillages":1,"Points":26,"Rank":2866,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119486","BestRank":2866,"BestRankAt":"2023-02-15T06:22:53.875901Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875901Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875901Z","LastActivityAt":"2023-02-15T06:22:53.875901Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119528,"Name":"SERWAR","NumVillages":1,"Points":1574,"Rank":1739,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119528","BestRank":1739,"BestRankAt":"2023-02-15T06:22:53.875902Z","MostPoints":1574,"MostPointsAt":"2023-02-15T06:22:53.875902Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875902Z","LastActivityAt":"2023-02-15T06:22:53.875902Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119631,"Name":"ChujajBuja","NumVillages":1,"Points":189,"Rank":2324,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119631","BestRank":2324,"BestRankAt":"2023-02-15T06:22:53.875902Z","MostPoints":189,"MostPointsAt":"2023-02-15T06:22:53.875902Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875902Z","LastActivityAt":"2023-02-15T06:22:53.875903Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119827,"Name":"Mishkkk","NumVillages":1,"Points":317,"Rank":2159,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119827","BestRank":2159,"BestRankAt":"2023-02-15T06:22:53.875903Z","MostPoints":317,"MostPointsAt":"2023-02-15T06:22:53.875903Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875903Z","LastActivityAt":"2023-02-15T06:22:53.875903Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119842,"Name":"karplop123","NumVillages":1,"Points":66,"Rank":2546,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119842","BestRank":2546,"BestRankAt":"2023-02-15T06:22:53.875903Z","MostPoints":66,"MostPointsAt":"2023-02-15T06:22:53.875903Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875903Z","LastActivityAt":"2023-02-15T06:22:53.875904Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119848,"Name":"drewniak","NumVillages":1,"Points":176,"Rank":2343,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119848","BestRank":2343,"BestRankAt":"2023-02-15T06:22:53.875904Z","MostPoints":176,"MostPointsAt":"2023-02-15T06:22:53.875904Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875904Z","LastActivityAt":"2023-02-15T06:22:53.875904Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2345,"ScoreDef":100,"RankSup":0,"ScoreSup":0,"RankTotal":2441,"ScoreTotal":100,"ID":849119862,"Name":"belzebub szatan","NumVillages":1,"Points":466,"Rank":2048,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119862","BestRank":2048,"BestRankAt":"2023-02-15T06:22:53.875904Z","MostPoints":466,"MostPointsAt":"2023-02-15T06:22:53.875905Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875904Z","LastActivityAt":"2023-02-15T06:22:53.875905Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2249,"ScoreDef":636,"RankSup":0,"ScoreSup":0,"RankTotal":2335,"ScoreTotal":636,"ID":849119975,"Name":"Przemko duch","NumVillages":1,"Points":627,"Rank":1980,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119975","BestRank":1980,"BestRankAt":"2023-02-15T06:22:53.875905Z","MostPoints":627,"MostPointsAt":"2023-02-15T06:22:53.875905Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875905Z","LastActivityAt":"2023-02-15T06:22:53.875905Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2452,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2535,"ScoreTotal":10,"ID":849119994,"Name":"Exodus303","NumVillages":1,"Points":998,"Rank":1866,"TribeID":1777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119994","BestRank":1866,"BestRankAt":"2023-02-15T06:22:53.875905Z","MostPoints":998,"MostPointsAt":"2023-02-15T06:22:53.875906Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875906Z","LastActivityAt":"2023-02-15T06:22:53.875906Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120051,"Name":"Noto Wojsko","NumVillages":1,"Points":26,"Rank":2867,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120051","BestRank":2867,"BestRankAt":"2023-02-15T06:22:53.875906Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875906Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875906Z","LastActivityAt":"2023-02-15T06:22:53.875906Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120075,"Name":"saulgoodman","NumVillages":1,"Points":124,"Rank":2438,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120075","BestRank":2438,"BestRankAt":"2023-02-15T06:22:53.875907Z","MostPoints":124,"MostPointsAt":"2023-02-15T06:22:53.875907Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875907Z","LastActivityAt":"2023-02-15T06:22:53.875907Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120088,"Name":"Czaki995","NumVillages":1,"Points":185,"Rank":2328,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120088","BestRank":2328,"BestRankAt":"2023-02-15T06:22:53.875907Z","MostPoints":185,"MostPointsAt":"2023-02-15T06:22:53.875907Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875907Z","LastActivityAt":"2023-02-15T06:22:53.875907Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120093,"Name":"marcinpaluch0211","NumVillages":1,"Points":69,"Rank":2537,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120093","BestRank":2537,"BestRankAt":"2023-02-15T06:22:53.875908Z","MostPoints":69,"MostPointsAt":"2023-02-15T06:22:53.875908Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875908Z","LastActivityAt":"2023-02-15T06:22:53.875908Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120129,"Name":"Derek69","NumVillages":1,"Points":849,"Rank":1901,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120129","BestRank":1901,"BestRankAt":"2023-02-15T06:22:53.875908Z","MostPoints":849,"MostPointsAt":"2023-02-15T06:22:53.875908Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875908Z","LastActivityAt":"2023-02-15T06:22:53.875908Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120285,"Name":"pollak21","NumVillages":1,"Points":165,"Rank":2360,"TribeID":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120285","BestRank":2360,"BestRankAt":"2023-02-15T06:22:53.875909Z","MostPoints":165,"MostPointsAt":"2023-02-15T06:22:53.875909Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875909Z","LastActivityAt":"2023-02-15T06:22:53.875909Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120311,"Name":"KOYE","NumVillages":1,"Points":26,"Rank":2868,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120311","BestRank":2868,"BestRankAt":"2023-02-15T06:22:53.875909Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875909Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875909Z","LastActivityAt":"2023-02-15T06:22:53.875909Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120421,"Name":"Kampffliege","NumVillages":1,"Points":112,"Rank":2462,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120421","BestRank":2462,"BestRankAt":"2023-02-15T06:22:53.87591Z","MostPoints":112,"MostPointsAt":"2023-02-15T06:22:53.87591Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87591Z","LastActivityAt":"2023-02-15T06:22:53.87591Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120438,"Name":"Wanderwoman","NumVillages":1,"Points":500,"Rank":2031,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120438","BestRank":2031,"BestRankAt":"2023-02-15T06:22:53.87591Z","MostPoints":500,"MostPointsAt":"2023-02-15T06:22:53.87591Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87591Z","LastActivityAt":"2023-02-15T06:22:53.875911Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2237,"ScoreDef":750,"RankSup":0,"ScoreSup":0,"RankTotal":2327,"ScoreTotal":750,"ID":849120467,"Name":"czaka222","NumVillages":1,"Points":198,"Rank":2303,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120467","BestRank":2303,"BestRankAt":"2023-02-15T06:22:53.875911Z","MostPoints":198,"MostPointsAt":"2023-02-15T06:22:53.875911Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875911Z","LastActivityAt":"2023-02-15T06:22:53.875911Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120488,"Name":"bonktrzmiel","NumVillages":1,"Points":255,"Rank":2218,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120488","BestRank":2218,"BestRankAt":"2023-02-15T06:22:53.875911Z","MostPoints":255,"MostPointsAt":"2023-02-15T06:22:53.875912Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875911Z","LastActivityAt":"2023-02-15T06:22:53.875912Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120526,"Name":"Kolekcjon","NumVillages":1,"Points":140,"Rank":2393,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120526","BestRank":2393,"BestRankAt":"2023-02-15T06:22:53.875912Z","MostPoints":140,"MostPointsAt":"2023-02-15T06:22:53.875912Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875912Z","LastActivityAt":"2023-02-15T06:22:53.875912Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120698,"Name":"rozyczka","NumVillages":1,"Points":705,"Rank":1949,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120698","BestRank":1949,"BestRankAt":"2023-02-15T06:22:53.875912Z","MostPoints":705,"MostPointsAt":"2023-02-15T06:22:53.875913Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875913Z","LastActivityAt":"2023-02-15T06:22:53.875913Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120763,"Name":"spokojnabaƛka123","NumVillages":1,"Points":64,"Rank":2553,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120763","BestRank":2553,"BestRankAt":"2023-02-15T06:22:53.875913Z","MostPoints":64,"MostPointsAt":"2023-02-15T06:22:53.875913Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875913Z","LastActivityAt":"2023-02-15T06:22:53.875913Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120791,"Name":"ERAS","NumVillages":1,"Points":26,"Rank":2869,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120791","BestRank":2869,"BestRankAt":"2023-02-15T06:22:53.875914Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875914Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875914Z","LastActivityAt":"2023-02-15T06:22:53.875914Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120855,"Name":"tinki","NumVillages":1,"Points":26,"Rank":2870,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120855","BestRank":2870,"BestRankAt":"2023-02-15T06:22:53.875914Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875914Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875914Z","LastActivityAt":"2023-02-15T06:22:53.875914Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120865,"Name":"Martynka2010","NumVillages":1,"Points":66,"Rank":2547,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120865","BestRank":2547,"BestRankAt":"2023-02-15T06:22:53.875915Z","MostPoints":66,"MostPointsAt":"2023-02-15T06:22:53.875915Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875915Z","LastActivityAt":"2023-02-15T06:22:53.875915Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120889,"Name":"Layton","NumVillages":1,"Points":47,"Rank":2594,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120889","BestRank":2594,"BestRankAt":"2023-02-15T06:22:53.875915Z","MostPoints":47,"MostPointsAt":"2023-02-15T06:22:53.875915Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875915Z","LastActivityAt":"2023-02-15T06:22:53.875915Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120966,"Name":"Michal1614","NumVillages":1,"Points":26,"Rank":2871,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120966","BestRank":2871,"BestRankAt":"2023-02-15T06:22:53.875916Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875916Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875916Z","LastActivityAt":"2023-02-15T06:22:53.875916Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121036,"Name":"ARENTHAI","NumVillages":1,"Points":70,"Rank":2535,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121036","BestRank":2535,"BestRankAt":"2023-02-15T06:22:53.875916Z","MostPoints":70,"MostPointsAt":"2023-02-15T06:22:53.875916Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875916Z","LastActivityAt":"2023-02-15T06:22:53.875916Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121196,"Name":"Szymonos420","NumVillages":1,"Points":238,"Rank":2237,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121196","BestRank":2237,"BestRankAt":"2023-02-15T06:22:53.875917Z","MostPoints":238,"MostPointsAt":"2023-02-15T06:22:53.875917Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875917Z","LastActivityAt":"2023-02-15T06:22:53.875917Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121269,"Name":"Choroszcz","NumVillages":1,"Points":34,"Rank":2613,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121269","BestRank":2613,"BestRankAt":"2023-02-15T06:22:53.875917Z","MostPoints":34,"MostPointsAt":"2023-02-15T06:22:53.875917Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875917Z","LastActivityAt":"2023-02-15T06:22:53.875918Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121320,"Name":"pawka283","NumVillages":1,"Points":44,"Rank":2602,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121320","BestRank":2602,"BestRankAt":"2023-02-15T06:22:53.875918Z","MostPoints":44,"MostPointsAt":"2023-02-15T06:22:53.875918Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875918Z","LastActivityAt":"2023-02-15T06:22:53.875918Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121329,"Name":"Szalejot3","NumVillages":1,"Points":294,"Rank":2183,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121329","BestRank":2183,"BestRankAt":"2023-02-15T06:22:53.875918Z","MostPoints":294,"MostPointsAt":"2023-02-15T06:22:53.875919Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875918Z","LastActivityAt":"2023-02-15T06:22:53.875919Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121331,"Name":"Dankok2k23","NumVillages":1,"Points":512,"Rank":2023,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121331","BestRank":2023,"BestRankAt":"2023-02-15T06:22:53.875919Z","MostPoints":512,"MostPointsAt":"2023-02-15T06:22:53.875919Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875919Z","LastActivityAt":"2023-02-15T06:22:53.875919Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121337,"Name":"Ppfarmer","NumVillages":1,"Points":26,"Rank":2872,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121337","BestRank":2872,"BestRankAt":"2023-02-15T06:22:53.875919Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.87592Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875919Z","LastActivityAt":"2023-02-15T06:22:53.87592Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121389,"Name":"huzar28","NumVillages":1,"Points":26,"Rank":2873,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121389","BestRank":2873,"BestRankAt":"2023-02-15T06:22:53.87592Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.87592Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87592Z","LastActivityAt":"2023-02-15T06:22:53.87592Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121483,"Name":"xLyn","NumVillages":1,"Points":555,"Rank":2003,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121483","BestRank":2003,"BestRankAt":"2023-02-15T06:22:53.87592Z","MostPoints":555,"MostPointsAt":"2023-02-15T06:22:53.875921Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875921Z","LastActivityAt":"2023-02-15T06:22:53.875921Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121504,"Name":"HinduKush","NumVillages":1,"Points":94,"Rank":2500,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121504","BestRank":2500,"BestRankAt":"2023-02-15T06:22:53.875921Z","MostPoints":94,"MostPointsAt":"2023-02-15T06:22:53.875921Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875921Z","LastActivityAt":"2023-02-15T06:22:53.875921Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121536,"Name":"LeadyBoo","NumVillages":1,"Points":26,"Rank":2874,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121536","BestRank":2874,"BestRankAt":"2023-02-15T06:22:53.875922Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875922Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875922Z","LastActivityAt":"2023-02-15T06:22:53.875922Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121570,"Name":"LupaPL","NumVillages":1,"Points":240,"Rank":2234,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121570","BestRank":2234,"BestRankAt":"2023-02-15T06:22:53.875922Z","MostPoints":240,"MostPointsAt":"2023-02-15T06:22:53.875922Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875922Z","LastActivityAt":"2023-02-15T06:22:53.875922Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121623,"Name":"prosiaczek","NumVillages":1,"Points":301,"Rank":2175,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121623","BestRank":2175,"BestRankAt":"2023-02-15T06:22:53.875923Z","MostPoints":301,"MostPointsAt":"2023-02-15T06:22:53.875923Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875923Z","LastActivityAt":"2023-02-15T06:22:53.875923Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121686,"Name":"danek","NumVillages":1,"Points":26,"Rank":2875,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121686","BestRank":2875,"BestRankAt":"2023-02-15T06:22:53.875923Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875923Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875923Z","LastActivityAt":"2023-02-15T06:22:53.875923Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121691,"Name":"Szpadyzor","NumVillages":1,"Points":133,"Rank":2413,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121691","BestRank":2413,"BestRankAt":"2023-02-15T06:22:53.875924Z","MostPoints":133,"MostPointsAt":"2023-02-15T06:22:53.875924Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875924Z","LastActivityAt":"2023-02-15T06:22:53.875924Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121697,"Name":"S3b3k1999","NumVillages":1,"Points":26,"Rank":2876,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121697","BestRank":2876,"BestRankAt":"2023-02-15T06:22:53.875924Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875924Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875924Z","LastActivityAt":"2023-02-15T06:22:53.875925Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121725,"Name":"drzyzga123","NumVillages":1,"Points":26,"Rank":2877,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121725","BestRank":2877,"BestRankAt":"2023-02-15T06:22:53.875925Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875925Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875925Z","LastActivityAt":"2023-02-15T06:22:53.875925Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121746,"Name":"robotykjakinny","NumVillages":1,"Points":26,"Rank":2878,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121746","BestRank":2878,"BestRankAt":"2023-02-15T06:22:53.875925Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875926Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875925Z","LastActivityAt":"2023-02-15T06:22:53.875926Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121762,"Name":"Jopi","NumVillages":1,"Points":377,"Rank":2104,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121762","BestRank":2104,"BestRankAt":"2023-02-15T06:22:53.875926Z","MostPoints":377,"MostPointsAt":"2023-02-15T06:22:53.875926Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875926Z","LastActivityAt":"2023-02-15T06:22:53.875926Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121811,"Name":"Cookie","NumVillages":1,"Points":158,"Rank":2370,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121811","BestRank":2370,"BestRankAt":"2023-02-15T06:22:53.875926Z","MostPoints":158,"MostPointsAt":"2023-02-15T06:22:53.875927Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875926Z","LastActivityAt":"2023-02-15T06:22:53.875927Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1926,"ScoreAtt":34,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2480,"ScoreTotal":34,"ID":849121835,"Name":"mati997","NumVillages":1,"Points":424,"Rank":2077,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121835","BestRank":2077,"BestRankAt":"2023-02-15T06:22:53.875927Z","MostPoints":424,"MostPointsAt":"2023-02-15T06:22:53.875927Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875927Z","LastActivityAt":"2023-02-15T06:22:53.875927Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121846,"Name":"Maxi Montana","NumVillages":1,"Points":286,"Rank":2190,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121846","BestRank":2190,"BestRankAt":"2023-02-15T06:22:53.875927Z","MostPoints":286,"MostPointsAt":"2023-02-15T06:22:53.875928Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875928Z","LastActivityAt":"2023-02-15T06:22:53.875928Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121975,"Name":"anita","NumVillages":1,"Points":264,"Rank":2210,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121975","BestRank":2210,"BestRankAt":"2023-02-15T06:22:53.875928Z","MostPoints":264,"MostPointsAt":"2023-02-15T06:22:53.875928Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875928Z","LastActivityAt":"2023-02-15T06:22:53.875928Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122047,"Name":"grzesiek9522","NumVillages":1,"Points":66,"Rank":2548,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122047","BestRank":2548,"BestRankAt":"2023-02-15T06:22:53.875929Z","MostPoints":66,"MostPointsAt":"2023-02-15T06:22:53.875929Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875929Z","LastActivityAt":"2023-02-15T06:22:53.875929Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122297,"Name":"Leszek1964","NumVillages":1,"Points":566,"Rank":1997,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122297","BestRank":1997,"BestRankAt":"2023-02-15T06:22:53.875929Z","MostPoints":566,"MostPointsAt":"2023-02-15T06:22:53.875929Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875929Z","LastActivityAt":"2023-02-15T06:22:53.875929Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122318,"Name":"polska652","NumVillages":1,"Points":112,"Rank":2463,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122318","BestRank":2463,"BestRankAt":"2023-02-15T06:22:53.87593Z","MostPoints":112,"MostPointsAt":"2023-02-15T06:22:53.87593Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87593Z","LastActivityAt":"2023-02-15T06:22:53.87593Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122450,"Name":"SteamUser1675976894","NumVillages":1,"Points":88,"Rank":2505,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122450","BestRank":2505,"BestRankAt":"2023-02-15T06:22:53.87593Z","MostPoints":88,"MostPointsAt":"2023-02-15T06:22:53.87593Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.87593Z","LastActivityAt":"2023-02-15T06:22:53.87593Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122487,"Name":"kamilek6969","NumVillages":1,"Points":259,"Rank":2214,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122487","BestRank":2214,"BestRankAt":"2023-02-15T06:22:53.875931Z","MostPoints":259,"MostPointsAt":"2023-02-15T06:22:53.875931Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875931Z","LastActivityAt":"2023-02-15T06:22:53.875931Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122658,"Name":"sweetdream","NumVillages":1,"Points":26,"Rank":2879,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122658","BestRank":2879,"BestRankAt":"2023-02-15T06:22:53.875931Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875931Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875931Z","LastActivityAt":"2023-02-15T06:22:53.875931Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122738,"Name":"Saladyn92","NumVillages":1,"Points":386,"Rank":2099,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122738","BestRank":2099,"BestRankAt":"2023-02-15T06:22:53.875932Z","MostPoints":386,"MostPointsAt":"2023-02-15T06:22:53.875932Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875932Z","LastActivityAt":"2023-02-15T06:22:53.875932Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1885,"ScoreAtt":70,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2450,"ScoreTotal":70,"ID":849122768,"Name":"niedzwiedzxd","NumVillages":1,"Points":336,"Rank":2141,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122768","BestRank":2141,"BestRankAt":"2023-02-15T06:22:53.875932Z","MostPoints":336,"MostPointsAt":"2023-02-15T06:22:53.875932Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875932Z","LastActivityAt":"2023-02-15T06:22:53.875933Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2366,"ScoreDef":50,"RankSup":0,"ScoreSup":0,"RankTotal":2460,"ScoreTotal":50,"ID":849122819,"Name":"BELOZ","NumVillages":1,"Points":95,"Rank":2495,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122819","BestRank":2495,"BestRankAt":"2023-02-15T06:22:53.875933Z","MostPoints":95,"MostPointsAt":"2023-02-15T06:22:53.875933Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875933Z","LastActivityAt":"2023-02-15T06:22:53.875933Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122821,"Name":"SzefPatryƛ","NumVillages":1,"Points":64,"Rank":2554,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122821","BestRank":2554,"BestRankAt":"2023-02-15T06:22:53.875933Z","MostPoints":64,"MostPointsAt":"2023-02-15T06:22:53.875934Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875933Z","LastActivityAt":"2023-02-15T06:22:53.875934Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122822,"Name":"jmz41922","NumVillages":1,"Points":162,"Rank":2365,"TribeID":1803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122822","BestRank":2365,"BestRankAt":"2023-02-15T06:22:53.875934Z","MostPoints":162,"MostPointsAt":"2023-02-15T06:22:53.875934Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875934Z","LastActivityAt":"2023-02-15T06:22:53.875934Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122931,"Name":"gumis111","NumVillages":1,"Points":26,"Rank":2880,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122931","BestRank":2880,"BestRankAt":"2023-02-15T06:22:53.875934Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875935Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875935Z","LastActivityAt":"2023-02-15T06:22:53.875935Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123002,"Name":"zdziƛ123","NumVillages":1,"Points":26,"Rank":2881,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123002","BestRank":2881,"BestRankAt":"2023-02-15T06:22:53.875935Z","MostPoints":26,"MostPointsAt":"2023-02-15T06:22:53.875935Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875935Z","LastActivityAt":"2023-02-15T06:22:53.875935Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1955,"ScoreAtt":18,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2505,"ScoreTotal":18,"ID":849123125,"Name":"Lukaczka","NumVillages":1,"Points":196,"Rank":2309,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123125","BestRank":2309,"BestRankAt":"2023-02-15T06:22:53.875936Z","MostPoints":196,"MostPointsAt":"2023-02-15T06:22:53.875936Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875936Z","LastActivityAt":"2023-02-15T06:22:53.875936Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123128,"Name":"farmerzestoczka","NumVillages":1,"Points":75,"Rank":2524,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123128","BestRank":2524,"BestRankAt":"2023-02-15T06:22:53.875936Z","MostPoints":75,"MostPointsAt":"2023-02-15T06:22:53.875936Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875936Z","LastActivityAt":"2023-02-15T06:22:53.875936Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123135,"Name":"Ljuboja1916","NumVillages":1,"Points":43,"Rank":2605,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123135","BestRank":2605,"BestRankAt":"2023-02-15T06:22:53.875937Z","MostPoints":43,"MostPointsAt":"2023-02-15T06:22:53.875937Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875937Z","LastActivityAt":"2023-02-15T06:22:53.875937Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123162,"Name":"jesslexuwuowo","NumVillages":1,"Points":80,"Rank":2515,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123162","BestRank":2515,"BestRankAt":"2023-02-15T06:22:53.875937Z","MostPoints":80,"MostPointsAt":"2023-02-15T06:22:53.875937Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875937Z","LastActivityAt":"2023-02-15T06:22:53.875937Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123267,"Name":"Sewo2137","NumVillages":1,"Points":95,"Rank":2496,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123267","BestRank":2496,"BestRankAt":"2023-02-15T06:22:53.875938Z","MostPoints":95,"MostPointsAt":"2023-02-15T06:22:53.875938Z","MostVillages":1,"MostVillagesAt":"2023-02-15T06:22:53.875938Z","LastActivityAt":"2023-02-15T06:22:53.875938Z","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.875998Z","DeletedAt":"0001-01-01T00:00:00Z"}] diff --git a/internal/service/testdata/syncdata/stage1/expected/servers.json b/internal/service/testdata/syncdata/stage1/expected/servers.json new file mode 100644 index 0000000..2a60905 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/expected/servers.json @@ -0,0 +1 @@ +[{"Key":"pl181","URL":"https://pl181.plemiona.pl","Open":true,"Special":false,"NumPlayers":3129,"NumTribes":283,"NumVillages":57633,"NumPlayerVillages":57107,"NumBarbarianVillages":526,"NumBonusVillages":3601,"Config":{"Speed":1,"UnitSpeed":1,"Moral":1,"Build":{"Destroy":1},"Misc":{"KillRanking":2,"Tutorial":5,"TradeCancelTime":300},"Commands":{"MillisArrival":1,"CommandCancelTime":600},"Newbie":{"Days":7,"RatioDays":60,"Ratio":20,"RemoveNewbieVillages":1},"Game":{"BuildtimeFormula":2,"Knight":3,"KnightNewItems":0,"Archer":1,"Tech":2,"FarmLimit":0,"Church":0,"Watchtower":0,"Stronghold":1,"FakeLimit":1,"BarbarianRise":0.003,"BarbarianShrink":1,"BarbarianMaxPoints":2000,"Scavenging":1,"Hauls":1,"HaulsBase":1000,"HaulsMax":100000,"BaseProduction":30,"Event":10,"SuppressEvents":0},"Buildings":{"CustomMain":-1,"CustomFarm":-1,"CustomStorage":-1,"CustomPlace":-1,"CustomBarracks":-1,"CustomChurch":-1,"CustomSmith":-1,"CustomWood":-1,"CustomStone":-1,"CustomIron":-1,"CustomMarket":-1,"CustomStable":-1,"CustomWall":-1,"CustomGarage":-1,"CustomHide":-1,"CustomSnob":-1,"CustomStatue":-1,"CustomWatchtower":-1},"Snob":{"Gold":1,"CheapRebuild":0,"Rise":2,"MaxDist":1000,"Factor":0.9,"CoinWood":28000,"CoinStone":30000,"CoinIron":25000,"NoBarbConquer":0},"Ally":{"NoHarm":0,"NoOtherSupport":1,"NoOtherSupportType":0,"AllytimeSupport":0,"NoLeave":0,"NoJoin":0,"Limit":50,"FixedAllies":0,"PointsMemberCount":0,"WarsMemberRequirement":5,"WarsPointsRequirement":15000,"WarsAutoacceptDays":7,"Levels":1,"XpRequirements":"v1"},"Coord":{"MapSize":1000,"Func":4,"EmptyVillages":70,"BonusVillages":10,"BonusNew":0,"Inner":8287,"SelectStart":1,"VillageMoveWait":336,"NobleRestart":1,"StartVillages":1},"Sitter":{"Allow":1},"Sleep":{"Active":0,"Delay":60,"Min":6,"Max":10,"MinAwake":12,"MaxAwake":36,"WarnTime":10},"Night":{"Active":1,"StartHour":23,"EndHour":8,"DefFactor":2,"Duration":14},"Win":{"Check":5}},"BuildingInfo":{"Main":{"MaxLevel":30,"MinLevel":1,"Wood":90,"Stone":80,"Iron":70,"Pop":5,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":900,"BuildTimeFactor":1.2},"Barracks":{"MaxLevel":25,"MinLevel":0,"Wood":200,"Stone":170,"Iron":90,"Pop":7,"WoodFactor":1.26,"StoneFactor":1.28,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":1800,"BuildTimeFactor":1.2},"Stable":{"MaxLevel":20,"MinLevel":0,"Wood":270,"Stone":240,"Iron":260,"Pop":8,"WoodFactor":1.26,"StoneFactor":1.28,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":6000,"BuildTimeFactor":1.2},"Garage":{"MaxLevel":15,"MinLevel":0,"Wood":300,"Stone":240,"Iron":260,"Pop":8,"WoodFactor":1.26,"StoneFactor":1.28,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":6000,"BuildTimeFactor":1.2},"Watchtower":{"MaxLevel":0,"MinLevel":0,"Wood":0,"Stone":0,"Iron":0,"Pop":0,"WoodFactor":0,"StoneFactor":0,"IronFactor":0,"PopFactor":0,"BuildTime":0,"BuildTimeFactor":0},"Snob":{"MaxLevel":1,"MinLevel":0,"Wood":15000,"Stone":25000,"Iron":10000,"Pop":80,"WoodFactor":2,"StoneFactor":2,"IronFactor":2,"PopFactor":1.17,"BuildTime":586800,"BuildTimeFactor":1.2},"Smith":{"MaxLevel":20,"MinLevel":0,"Wood":220,"Stone":180,"Iron":240,"Pop":20,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":6000,"BuildTimeFactor":1.2},"Place":{"MaxLevel":1,"MinLevel":0,"Wood":10,"Stone":40,"Iron":30,"Pop":0,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":10860,"BuildTimeFactor":1.2},"Statue":{"MaxLevel":1,"MinLevel":0,"Wood":220,"Stone":220,"Iron":220,"Pop":10,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":1500,"BuildTimeFactor":1.2},"Market":{"MaxLevel":25,"MinLevel":0,"Wood":100,"Stone":100,"Iron":100,"Pop":20,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":2700,"BuildTimeFactor":1.2},"Wood":{"MaxLevel":30,"MinLevel":0,"Wood":50,"Stone":60,"Iron":40,"Pop":5,"WoodFactor":1.25,"StoneFactor":1.275,"IronFactor":1.245,"PopFactor":1.155,"BuildTime":900,"BuildTimeFactor":1.2},"Stone":{"MaxLevel":30,"MinLevel":0,"Wood":65,"Stone":50,"Iron":40,"Pop":10,"WoodFactor":1.27,"StoneFactor":1.265,"IronFactor":1.24,"PopFactor":1.14,"BuildTime":900,"BuildTimeFactor":1.2},"Iron":{"MaxLevel":30,"MinLevel":0,"Wood":75,"Stone":65,"Iron":70,"Pop":10,"WoodFactor":1.252,"StoneFactor":1.275,"IronFactor":1.24,"PopFactor":1.17,"BuildTime":1080,"BuildTimeFactor":1.2},"Farm":{"MaxLevel":30,"MinLevel":1,"Wood":45,"Stone":40,"Iron":30,"Pop":0,"WoodFactor":1.3,"StoneFactor":1.32,"IronFactor":1.29,"PopFactor":1,"BuildTime":1200,"BuildTimeFactor":1.2},"Storage":{"MaxLevel":30,"MinLevel":1,"Wood":60,"Stone":50,"Iron":40,"Pop":0,"WoodFactor":1.265,"StoneFactor":1.27,"IronFactor":1.245,"PopFactor":1.15,"BuildTime":1020,"BuildTimeFactor":1.2},"Hide":{"MaxLevel":10,"MinLevel":0,"Wood":50,"Stone":60,"Iron":50,"Pop":2,"WoodFactor":1.25,"StoneFactor":1.25,"IronFactor":1.25,"PopFactor":1.17,"BuildTime":1800,"BuildTimeFactor":1.2},"Wall":{"MaxLevel":20,"MinLevel":0,"Wood":50,"Stone":100,"Iron":20,"Pop":5,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":3600,"BuildTimeFactor":1.2}},"UnitInfo":{"Spear":{"BuildTime":1020,"Pop":1,"Speed":18,"Attack":10,"Defense":15,"DefenseCavalry":45,"DefenseArcher":20,"Carry":25},"Sword":{"BuildTime":1500,"Pop":1,"Speed":22,"Attack":25,"Defense":50,"DefenseCavalry":15,"DefenseArcher":40,"Carry":15},"Axe":{"BuildTime":1320,"Pop":1,"Speed":18,"Attack":40,"Defense":10,"DefenseCavalry":5,"DefenseArcher":10,"Carry":10},"Archer":{"BuildTime":1800,"Pop":1,"Speed":18,"Attack":15,"Defense":50,"DefenseCavalry":40,"DefenseArcher":5,"Carry":10},"Spy":{"BuildTime":900,"Pop":2,"Speed":9,"Attack":0,"Defense":2,"DefenseCavalry":1,"DefenseArcher":2,"Carry":0},"Light":{"BuildTime":1800,"Pop":4,"Speed":10,"Attack":130,"Defense":30,"DefenseCavalry":40,"DefenseArcher":30,"Carry":80},"Marcher":{"BuildTime":2700,"Pop":5,"Speed":10,"Attack":120,"Defense":40,"DefenseCavalry":30,"DefenseArcher":50,"Carry":50},"Heavy":{"BuildTime":3600,"Pop":6,"Speed":11,"Attack":150,"Defense":200,"DefenseCavalry":80,"DefenseArcher":180,"Carry":50},"Ram":{"BuildTime":4800,"Pop":5,"Speed":30,"Attack":2,"Defense":20,"DefenseCavalry":50,"DefenseArcher":20,"Carry":0},"Catapult":{"BuildTime":7200,"Pop":8,"Speed":30,"Attack":100,"Defense":100,"DefenseCavalry":50,"DefenseArcher":100,"Carry":0},"Knight":{"BuildTime":21600,"Pop":10,"Speed":10,"Attack":150,"Defense":250,"DefenseCavalry":400,"DefenseArcher":150,"Carry":100},"Snob":{"BuildTime":18000,"Pop":100,"Speed":35,"Attack":30,"Defense":100,"DefenseCavalry":50,"DefenseArcher":100,"Carry":0},"Militia":{"BuildTime":1,"Pop":0,"Speed":0.016666666666667,"Attack":0,"Defense":15,"DefenseCavalry":45,"DefenseArcher":25,"Carry":0}},"CreatedAt":"2023-02-15T06:22:53.222293Z","PlayerDataUpdatedAt":"2023-02-15T06:22:53.960985Z","PlayerSnapshotsCreatedAt":"0001-01-01T00:00:00Z","TribeDataUpdatedAt":"2023-02-15T06:22:53.276482Z","TribeSnapshotsCreatedAt":"0001-01-01T00:00:00Z","VillageDataUpdatedAt":"2023-02-15T06:22:55.28473Z","EnnoblementDataUpdatedAt":"0001-01-01T00:00:00Z","VersionCode":"pl"}] diff --git a/internal/service/testdata/syncdata/stage1/expected/tribe-changes.json b/internal/service/testdata/syncdata/stage1/expected/tribe-changes.json new file mode 100644 index 0000000..51dd912 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/expected/tribe-changes.json @@ -0,0 +1 @@ +[{"ID":1,"PlayerID":6948,"NewTribeID":214,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279956Z"},{"ID":2,"PlayerID":17714,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279956Z"},{"ID":3,"PlayerID":33900,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279957Z"},{"ID":4,"PlayerID":82782,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279957Z"},{"ID":5,"PlayerID":87575,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279958Z"},{"ID":6,"PlayerID":100452,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279959Z"},{"ID":7,"PlayerID":101074,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27996Z"},{"ID":8,"PlayerID":108256,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27996Z"},{"ID":9,"PlayerID":113796,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279961Z"},{"ID":10,"PlayerID":117208,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279961Z"},{"ID":11,"PlayerID":118121,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279962Z"},{"ID":12,"PlayerID":122492,"NewTribeID":554,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279962Z"},{"ID":13,"PlayerID":126954,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279962Z"},{"ID":14,"PlayerID":128353,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279963Z"},{"ID":15,"PlayerID":129795,"NewTribeID":554,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279963Z"},{"ID":16,"PlayerID":131972,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279964Z"},{"ID":17,"PlayerID":192947,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279965Z"},{"ID":18,"PlayerID":195249,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279965Z"},{"ID":19,"PlayerID":197581,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279966Z"},{"ID":20,"PlayerID":225023,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279966Z"},{"ID":21,"PlayerID":254937,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279966Z"},{"ID":22,"PlayerID":272173,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279967Z"},{"ID":23,"PlayerID":281866,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279968Z"},{"ID":24,"PlayerID":289542,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279968Z"},{"ID":25,"PlayerID":301602,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279969Z"},{"ID":26,"PlayerID":335509,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279969Z"},{"ID":27,"PlayerID":337137,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27997Z"},{"ID":28,"PlayerID":356642,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27997Z"},{"ID":29,"PlayerID":361125,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27997Z"},{"ID":30,"PlayerID":363280,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279971Z"},{"ID":31,"PlayerID":364126,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279971Z"},{"ID":32,"PlayerID":371910,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279972Z"},{"ID":33,"PlayerID":382222,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279972Z"},{"ID":34,"PlayerID":393668,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279973Z"},{"ID":35,"PlayerID":439825,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279973Z"},{"ID":36,"PlayerID":466800,"NewTribeID":1602,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279974Z"},{"ID":37,"PlayerID":470266,"NewTribeID":1421,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279975Z"},{"ID":38,"PlayerID":477415,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279975Z"},{"ID":39,"PlayerID":483145,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279975Z"},{"ID":40,"PlayerID":498483,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279976Z"},{"ID":41,"PlayerID":526350,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279976Z"},{"ID":42,"PlayerID":545152,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279976Z"},{"ID":43,"PlayerID":546458,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279977Z"},{"ID":44,"PlayerID":556154,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279978Z"},{"ID":45,"PlayerID":569790,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279978Z"},{"ID":46,"PlayerID":570100,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279979Z"},{"ID":47,"PlayerID":583500,"NewTribeID":1728,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279979Z"},{"ID":48,"PlayerID":591733,"NewTribeID":1058,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27998Z"},{"ID":49,"PlayerID":602408,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27998Z"},{"ID":50,"PlayerID":603968,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27998Z"},{"ID":51,"PlayerID":606407,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279981Z"},{"ID":52,"PlayerID":606706,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279981Z"},{"ID":53,"PlayerID":609384,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279982Z"},{"ID":54,"PlayerID":634848,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279982Z"},{"ID":55,"PlayerID":662253,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279983Z"},{"ID":56,"PlayerID":671516,"NewTribeID":1275,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279983Z"},{"ID":57,"PlayerID":692803,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279983Z"},{"ID":58,"PlayerID":712216,"NewTribeID":382,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279984Z"},{"ID":59,"PlayerID":724621,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279984Z"},{"ID":60,"PlayerID":745946,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279985Z"},{"ID":61,"PlayerID":747422,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279985Z"},{"ID":62,"PlayerID":758104,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279985Z"},{"ID":63,"PlayerID":762975,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279986Z"},{"ID":64,"PlayerID":765188,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279987Z"},{"ID":65,"PlayerID":796977,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279987Z"},{"ID":66,"PlayerID":823987,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279987Z"},{"ID":67,"PlayerID":828637,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279988Z"},{"ID":68,"PlayerID":873575,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279988Z"},{"ID":69,"PlayerID":878961,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279989Z"},{"ID":70,"PlayerID":879782,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279989Z"},{"ID":71,"PlayerID":896355,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27999Z"},{"ID":72,"PlayerID":915113,"NewTribeID":830,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27999Z"},{"ID":73,"PlayerID":926823,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.27999Z"},{"ID":74,"PlayerID":930720,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279991Z"},{"ID":75,"PlayerID":942959,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279992Z"},{"ID":76,"PlayerID":944147,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279992Z"},{"ID":77,"PlayerID":947923,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279992Z"},{"ID":78,"PlayerID":951823,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279993Z"},{"ID":79,"PlayerID":959179,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279993Z"},{"ID":80,"PlayerID":960100,"NewTribeID":1672,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279994Z"},{"ID":81,"PlayerID":1006847,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279994Z"},{"ID":82,"PlayerID":1018357,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279995Z"},{"ID":83,"PlayerID":1020792,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279995Z"},{"ID":84,"PlayerID":1021709,"NewTribeID":1705,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279995Z"},{"ID":85,"PlayerID":1043028,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279996Z"},{"ID":86,"PlayerID":1044760,"NewTribeID":159,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279997Z"},{"ID":87,"PlayerID":1079223,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279997Z"},{"ID":88,"PlayerID":1085802,"NewTribeID":1791,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279997Z"},{"ID":89,"PlayerID":1086351,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279998Z"},{"ID":90,"PlayerID":1095271,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279999Z"},{"ID":91,"PlayerID":1095489,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279999Z"},{"ID":92,"PlayerID":1096254,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.279999Z"},{"ID":93,"PlayerID":1164249,"NewTribeID":72,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28Z"},{"ID":94,"PlayerID":1170102,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28Z"},{"ID":95,"PlayerID":1205898,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280001Z"},{"ID":96,"PlayerID":1227918,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280001Z"},{"ID":97,"PlayerID":1238300,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280001Z"},{"ID":98,"PlayerID":1260088,"NewTribeID":1657,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280002Z"},{"ID":99,"PlayerID":1267913,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280002Z"},{"ID":100,"PlayerID":1270916,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280003Z"},{"ID":101,"PlayerID":1276665,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280003Z"},{"ID":102,"PlayerID":1284796,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280004Z"},{"ID":103,"PlayerID":1285441,"NewTribeID":1431,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280004Z"},{"ID":104,"PlayerID":1286008,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280004Z"},{"ID":105,"PlayerID":1304915,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280005Z"},{"ID":106,"PlayerID":1323424,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280006Z"},{"ID":107,"PlayerID":1350456,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280006Z"},{"ID":108,"PlayerID":1371998,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280006Z"},{"ID":109,"PlayerID":1406042,"NewTribeID":365,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280007Z"},{"ID":110,"PlayerID":1415009,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280007Z"},{"ID":111,"PlayerID":1415665,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280008Z"},{"ID":112,"PlayerID":1424656,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280008Z"},{"ID":113,"PlayerID":1434753,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280009Z"},{"ID":114,"PlayerID":1450352,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280009Z"},{"ID":115,"PlayerID":1454871,"NewTribeID":413,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280009Z"},{"ID":116,"PlayerID":1493696,"NewTribeID":1786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28001Z"},{"ID":117,"PlayerID":1497168,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280011Z"},{"ID":118,"PlayerID":1511101,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280011Z"},{"ID":119,"PlayerID":1525273,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280011Z"},{"ID":120,"PlayerID":1536231,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280012Z"},{"ID":121,"PlayerID":1536625,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280012Z"},{"ID":122,"PlayerID":1553947,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280013Z"},{"ID":123,"PlayerID":1563417,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280013Z"},{"ID":124,"PlayerID":1568700,"NewTribeID":339,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280013Z"},{"ID":125,"PlayerID":1568908,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280014Z"},{"ID":126,"PlayerID":1578509,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280014Z"},{"ID":127,"PlayerID":1601917,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280015Z"},{"ID":128,"PlayerID":1606425,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280015Z"},{"ID":129,"PlayerID":1608563,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280016Z"},{"ID":130,"PlayerID":1646837,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280016Z"},{"ID":131,"PlayerID":1647052,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280016Z"},{"ID":132,"PlayerID":1668965,"NewTribeID":220,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280017Z"},{"ID":133,"PlayerID":1693936,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280018Z"},{"ID":134,"PlayerID":1700145,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280018Z"},{"ID":135,"PlayerID":1715091,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280018Z"},{"ID":136,"PlayerID":1746216,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280019Z"},{"ID":137,"PlayerID":1748180,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280019Z"},{"ID":138,"PlayerID":1767876,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28002Z"},{"ID":139,"PlayerID":1775957,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28002Z"},{"ID":140,"PlayerID":1782523,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280021Z"},{"ID":141,"PlayerID":1804724,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280021Z"},{"ID":142,"PlayerID":1809943,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280022Z"},{"ID":143,"PlayerID":1830149,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280022Z"},{"ID":144,"PlayerID":1867161,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280022Z"},{"ID":145,"PlayerID":1889913,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280023Z"},{"ID":146,"PlayerID":1895081,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280023Z"},{"ID":147,"PlayerID":1900364,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280024Z"},{"ID":148,"PlayerID":1924718,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280024Z"},{"ID":149,"PlayerID":1990750,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280025Z"},{"ID":150,"PlayerID":2065730,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280025Z"},{"ID":151,"PlayerID":2083273,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280025Z"},{"ID":152,"PlayerID":2087251,"NewTribeID":991,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280026Z"},{"ID":153,"PlayerID":2105150,"NewTribeID":1166,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280026Z"},{"ID":154,"PlayerID":2130659,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280027Z"},{"ID":155,"PlayerID":2135129,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280027Z"},{"ID":156,"PlayerID":2177410,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280028Z"},{"ID":157,"PlayerID":2210946,"NewTribeID":1799,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280028Z"},{"ID":158,"PlayerID":2232973,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280029Z"},{"ID":159,"PlayerID":2246711,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280029Z"},{"ID":160,"PlayerID":2262902,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28003Z"},{"ID":161,"PlayerID":2268889,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280031Z"},{"ID":162,"PlayerID":2269943,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280031Z"},{"ID":163,"PlayerID":2289134,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280032Z"},{"ID":164,"PlayerID":2293376,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280032Z"},{"ID":165,"PlayerID":2297431,"NewTribeID":1585,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280032Z"},{"ID":166,"PlayerID":2308351,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280033Z"},{"ID":167,"PlayerID":2315542,"NewTribeID":517,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280033Z"},{"ID":168,"PlayerID":2321390,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280034Z"},{"ID":169,"PlayerID":2323859,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280034Z"},{"ID":170,"PlayerID":2324569,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280035Z"},{"ID":171,"PlayerID":2345447,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280035Z"},{"ID":172,"PlayerID":2357773,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280035Z"},{"ID":173,"PlayerID":2363165,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280036Z"},{"ID":174,"PlayerID":2365630,"NewTribeID":451,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280036Z"},{"ID":175,"PlayerID":2392791,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280037Z"},{"ID":176,"PlayerID":2411854,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280037Z"},{"ID":177,"PlayerID":2415972,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280037Z"},{"ID":178,"PlayerID":2418002,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280038Z"},{"ID":179,"PlayerID":2418364,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280038Z"},{"ID":180,"PlayerID":2453888,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280039Z"},{"ID":181,"PlayerID":2467370,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280039Z"},{"ID":182,"PlayerID":2502956,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280039Z"},{"ID":183,"PlayerID":2514219,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28004Z"},{"ID":184,"PlayerID":2571407,"NewTribeID":97,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280041Z"},{"ID":185,"PlayerID":2571536,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280041Z"},{"ID":186,"PlayerID":2575842,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280041Z"},{"ID":187,"PlayerID":2585846,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280042Z"},{"ID":188,"PlayerID":2591538,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280042Z"},{"ID":189,"PlayerID":2593568,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280043Z"},{"ID":190,"PlayerID":2595542,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280043Z"},{"ID":191,"PlayerID":2600387,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280043Z"},{"ID":192,"PlayerID":2620389,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280044Z"},{"ID":193,"PlayerID":2646397,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280044Z"},{"ID":194,"PlayerID":2665207,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280045Z"},{"ID":195,"PlayerID":2684175,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280045Z"},{"ID":196,"PlayerID":2692494,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280045Z"},{"ID":197,"PlayerID":2717161,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280046Z"},{"ID":198,"PlayerID":2723244,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280046Z"},{"ID":199,"PlayerID":2725721,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280047Z"},{"ID":200,"PlayerID":2730335,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280047Z"},{"ID":201,"PlayerID":2735370,"NewTribeID":989,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280048Z"},{"ID":202,"PlayerID":2764337,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280048Z"},{"ID":203,"PlayerID":2800032,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280048Z"},{"ID":204,"PlayerID":2801913,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280049Z"},{"ID":205,"PlayerID":2808172,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28005Z"},{"ID":206,"PlayerID":2811568,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28005Z"},{"ID":207,"PlayerID":2812197,"NewTribeID":523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28005Z"},{"ID":208,"PlayerID":2819768,"NewTribeID":965,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280051Z"},{"ID":209,"PlayerID":2837080,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280051Z"},{"ID":210,"PlayerID":2873154,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280052Z"},{"ID":211,"PlayerID":2976468,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280052Z"},{"ID":212,"PlayerID":2999957,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280053Z"},{"ID":213,"PlayerID":3022364,"NewTribeID":809,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280053Z"},{"ID":214,"PlayerID":3024357,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280053Z"},{"ID":215,"PlayerID":3057381,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280054Z"},{"ID":216,"PlayerID":3108144,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280054Z"},{"ID":217,"PlayerID":3181712,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280055Z"},{"ID":218,"PlayerID":3264534,"NewTribeID":1456,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280055Z"},{"ID":219,"PlayerID":3298564,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280056Z"},{"ID":220,"PlayerID":3298902,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280056Z"},{"ID":221,"PlayerID":3319611,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280057Z"},{"ID":222,"PlayerID":3340647,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280057Z"},{"ID":223,"PlayerID":3342690,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280057Z"},{"ID":224,"PlayerID":3345943,"NewTribeID":546,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280058Z"},{"ID":225,"PlayerID":3362925,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280058Z"},{"ID":226,"PlayerID":3364735,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280059Z"},{"ID":227,"PlayerID":3365981,"NewTribeID":116,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280059Z"},{"ID":228,"PlayerID":3372959,"NewTribeID":626,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28006Z"},{"ID":229,"PlayerID":3377503,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28006Z"},{"ID":230,"PlayerID":3377827,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28006Z"},{"ID":231,"PlayerID":3395817,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280061Z"},{"ID":232,"PlayerID":3409028,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280062Z"},{"ID":233,"PlayerID":3411571,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280062Z"},{"ID":234,"PlayerID":3430969,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280062Z"},{"ID":235,"PlayerID":3441892,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280063Z"},{"ID":236,"PlayerID":3454753,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280063Z"},{"ID":237,"PlayerID":3467919,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280064Z"},{"ID":238,"PlayerID":3475079,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280064Z"},{"ID":239,"PlayerID":3484132,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280064Z"},{"ID":240,"PlayerID":3487721,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280065Z"},{"ID":241,"PlayerID":3499467,"NewTribeID":187,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280065Z"},{"ID":242,"PlayerID":3502565,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280066Z"},{"ID":243,"PlayerID":3560281,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280066Z"},{"ID":244,"PlayerID":3589487,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280067Z"},{"ID":245,"PlayerID":3600737,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280067Z"},{"ID":246,"PlayerID":3613413,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280068Z"},{"ID":247,"PlayerID":3631404,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280068Z"},{"ID":248,"PlayerID":3639628,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280068Z"},{"ID":249,"PlayerID":3647080,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280069Z"},{"ID":250,"PlayerID":3647086,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280069Z"},{"ID":251,"PlayerID":3652727,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280069Z"},{"ID":252,"PlayerID":3667722,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28007Z"},{"ID":253,"PlayerID":3692413,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28007Z"},{"ID":254,"PlayerID":3698627,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280071Z"},{"ID":255,"PlayerID":3713020,"NewTribeID":317,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280071Z"},{"ID":256,"PlayerID":3739202,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280071Z"},{"ID":257,"PlayerID":3750922,"NewTribeID":1528,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280072Z"},{"ID":258,"PlayerID":3762475,"NewTribeID":435,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280073Z"},{"ID":259,"PlayerID":3781794,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280073Z"},{"ID":260,"PlayerID":3824463,"NewTribeID":1804,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280073Z"},{"ID":261,"PlayerID":3842862,"NewTribeID":281,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280074Z"},{"ID":262,"PlayerID":3895471,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280075Z"},{"ID":263,"PlayerID":3896657,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280075Z"},{"ID":264,"PlayerID":3909522,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280076Z"},{"ID":265,"PlayerID":3933666,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280076Z"},{"ID":266,"PlayerID":3957237,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280076Z"},{"ID":267,"PlayerID":3969110,"NewTribeID":319,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280077Z"},{"ID":268,"PlayerID":3986807,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280077Z"},{"ID":269,"PlayerID":5991728,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280078Z"},{"ID":270,"PlayerID":5997814,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280078Z"},{"ID":271,"PlayerID":6001174,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280079Z"},{"ID":272,"PlayerID":6002527,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280079Z"},{"ID":273,"PlayerID":6032352,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28008Z"},{"ID":274,"PlayerID":6046368,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28008Z"},{"ID":275,"PlayerID":6046743,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28008Z"},{"ID":276,"PlayerID":6048627,"NewTribeID":1745,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280081Z"},{"ID":277,"PlayerID":6071567,"NewTribeID":664,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280081Z"},{"ID":278,"PlayerID":6078176,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280082Z"},{"ID":279,"PlayerID":6083448,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280082Z"},{"ID":280,"PlayerID":6101033,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280083Z"},{"ID":281,"PlayerID":6111938,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280083Z"},{"ID":282,"PlayerID":6116940,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280083Z"},{"ID":283,"PlayerID":6118079,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280084Z"},{"ID":284,"PlayerID":6121024,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280084Z"},{"ID":285,"PlayerID":6127190,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280085Z"},{"ID":286,"PlayerID":6131106,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280085Z"},{"ID":287,"PlayerID":6135387,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280085Z"},{"ID":288,"PlayerID":6136757,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280086Z"},{"ID":289,"PlayerID":6143689,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280087Z"},{"ID":290,"PlayerID":6145316,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280087Z"},{"ID":291,"PlayerID":6160655,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280087Z"},{"ID":292,"PlayerID":6167751,"NewTribeID":1278,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280088Z"},{"ID":293,"PlayerID":6169408,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280088Z"},{"ID":294,"PlayerID":6171569,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280089Z"},{"ID":295,"PlayerID":6174010,"NewTribeID":1599,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280089Z"},{"ID":296,"PlayerID":6180190,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280089Z"},{"ID":297,"PlayerID":6186491,"NewTribeID":211,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28009Z"},{"ID":298,"PlayerID":6193337,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.28009Z"},{"ID":299,"PlayerID":6212605,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280091Z"},{"ID":300,"PlayerID":6240801,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280091Z"},{"ID":301,"PlayerID":6243588,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280091Z"},{"ID":302,"PlayerID":6258092,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280092Z"},{"ID":303,"PlayerID":6262469,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280092Z"},{"ID":304,"PlayerID":6270765,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280093Z"},{"ID":305,"PlayerID":6276419,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280093Z"},{"ID":306,"PlayerID":6284929,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280094Z"},{"ID":307,"PlayerID":6296228,"NewTribeID":475,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280094Z"},{"ID":308,"PlayerID":6299408,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280094Z"},{"ID":309,"PlayerID":6300771,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280095Z"},{"ID":310,"PlayerID":6301789,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280095Z"},{"ID":311,"PlayerID":6310214,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280096Z"},{"ID":312,"PlayerID":6315553,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280096Z"},{"ID":313,"PlayerID":6323735,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280097Z"},{"ID":314,"PlayerID":6330147,"NewTribeID":216,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280097Z"},{"ID":315,"PlayerID":6343784,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280098Z"},{"ID":316,"PlayerID":6354098,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280098Z"},{"ID":317,"PlayerID":6354962,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280098Z"},{"ID":318,"PlayerID":6379173,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280099Z"},{"ID":319,"PlayerID":6384450,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280099Z"},{"ID":320,"PlayerID":6395848,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2801Z"},{"ID":321,"PlayerID":6409472,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.2801Z"},{"ID":322,"PlayerID":6416213,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280101Z"},{"ID":323,"PlayerID":6417987,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280101Z"},{"ID":324,"PlayerID":6423275,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280101Z"},{"ID":325,"PlayerID":6423719,"NewTribeID":185,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280102Z"},{"ID":326,"PlayerID":6425087,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280102Z"},{"ID":327,"PlayerID":6468217,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280103Z"},{"ID":328,"PlayerID":6510480,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280104Z"},{"ID":329,"PlayerID":6516085,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280104Z"},{"ID":330,"PlayerID":6517826,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280105Z"},{"ID":331,"PlayerID":6520732,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280105Z"},{"ID":332,"PlayerID":6528152,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280106Z"},{"ID":333,"PlayerID":6541079,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280106Z"},{"ID":334,"PlayerID":6557824,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280106Z"},{"ID":335,"PlayerID":6590149,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280107Z"},{"ID":336,"PlayerID":6618608,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280107Z"},{"ID":337,"PlayerID":6625437,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280108Z"},{"ID":338,"PlayerID":6647642,"NewTribeID":319,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280108Z"},{"ID":339,"PlayerID":6651072,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280109Z"},{"ID":340,"PlayerID":6658016,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.280109Z"},{"ID":341,"PlayerID":6674092,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333257Z"},{"ID":342,"PlayerID":6692351,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333257Z"},{"ID":343,"PlayerID":6786449,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333258Z"},{"ID":344,"PlayerID":6818593,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333258Z"},{"ID":345,"PlayerID":6821136,"NewTribeID":1779,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333258Z"},{"ID":346,"PlayerID":6822957,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333259Z"},{"ID":347,"PlayerID":6853693,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333259Z"},{"ID":348,"PlayerID":6857973,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33326Z"},{"ID":349,"PlayerID":6870350,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33326Z"},{"ID":350,"PlayerID":6882236,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33326Z"},{"ID":351,"PlayerID":6910361,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333261Z"},{"ID":352,"PlayerID":6920960,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333261Z"},{"ID":353,"PlayerID":6921135,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333261Z"},{"ID":354,"PlayerID":6923061,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333262Z"},{"ID":355,"PlayerID":6925574,"NewTribeID":1416,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333262Z"},{"ID":356,"PlayerID":6927748,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333262Z"},{"ID":357,"PlayerID":6929240,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333263Z"},{"ID":358,"PlayerID":6936607,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333263Z"},{"ID":359,"PlayerID":6948793,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333263Z"},{"ID":360,"PlayerID":6956104,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333264Z"},{"ID":361,"PlayerID":6968280,"NewTribeID":1707,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333264Z"},{"ID":362,"PlayerID":6986891,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333264Z"},{"ID":363,"PlayerID":7007969,"NewTribeID":1317,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333265Z"},{"ID":364,"PlayerID":7012651,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333265Z"},{"ID":365,"PlayerID":7013660,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333265Z"},{"ID":366,"PlayerID":7038651,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333266Z"},{"ID":367,"PlayerID":7047342,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333266Z"},{"ID":368,"PlayerID":7064954,"NewTribeID":1790,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333267Z"},{"ID":369,"PlayerID":7083877,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333267Z"},{"ID":370,"PlayerID":7085502,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333267Z"},{"ID":371,"PlayerID":7085510,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333268Z"},{"ID":372,"PlayerID":7092442,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333268Z"},{"ID":373,"PlayerID":7098955,"NewTribeID":830,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333268Z"},{"ID":374,"PlayerID":7125212,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333269Z"},{"ID":375,"PlayerID":7135037,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333269Z"},{"ID":376,"PlayerID":7139820,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333269Z"},{"ID":377,"PlayerID":7139853,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33327Z"},{"ID":378,"PlayerID":7140413,"NewTribeID":374,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33327Z"},{"ID":379,"PlayerID":7142659,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33327Z"},{"ID":380,"PlayerID":7150939,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333271Z"},{"ID":381,"PlayerID":7154207,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333271Z"},{"ID":382,"PlayerID":7157316,"NewTribeID":693,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333271Z"},{"ID":383,"PlayerID":7158871,"NewTribeID":475,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333272Z"},{"ID":384,"PlayerID":7180447,"NewTribeID":1792,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333272Z"},{"ID":385,"PlayerID":7181335,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333272Z"},{"ID":386,"PlayerID":7183372,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333273Z"},{"ID":387,"PlayerID":7210775,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333273Z"},{"ID":388,"PlayerID":7221139,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333274Z"},{"ID":389,"PlayerID":7226782,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333274Z"},{"ID":390,"PlayerID":7249451,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333274Z"},{"ID":391,"PlayerID":7259690,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333275Z"},{"ID":392,"PlayerID":7271812,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333275Z"},{"ID":393,"PlayerID":7272223,"NewTribeID":4,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333275Z"},{"ID":394,"PlayerID":7287342,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333276Z"},{"ID":395,"PlayerID":7313287,"NewTribeID":1530,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333276Z"},{"ID":396,"PlayerID":7318415,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333276Z"},{"ID":397,"PlayerID":7318949,"NewTribeID":1645,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333277Z"},{"ID":398,"PlayerID":7333216,"NewTribeID":936,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333277Z"},{"ID":399,"PlayerID":7337110,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333277Z"},{"ID":400,"PlayerID":7340529,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333278Z"},{"ID":401,"PlayerID":7346797,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333278Z"},{"ID":402,"PlayerID":7349282,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333278Z"},{"ID":403,"PlayerID":7365299,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333279Z"},{"ID":404,"PlayerID":7386358,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333279Z"},{"ID":405,"PlayerID":7394371,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333279Z"},{"ID":406,"PlayerID":7409475,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33328Z"},{"ID":407,"PlayerID":7417116,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33328Z"},{"ID":408,"PlayerID":7418168,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333281Z"},{"ID":409,"PlayerID":7422002,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333281Z"},{"ID":410,"PlayerID":7427966,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333281Z"},{"ID":411,"PlayerID":7428666,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333282Z"},{"ID":412,"PlayerID":7449254,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333282Z"},{"ID":413,"PlayerID":7462660,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333283Z"},{"ID":414,"PlayerID":7474527,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333283Z"},{"ID":415,"PlayerID":7477695,"NewTribeID":1727,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333283Z"},{"ID":416,"PlayerID":7491093,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333284Z"},{"ID":417,"PlayerID":7494178,"NewTribeID":548,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333284Z"},{"ID":418,"PlayerID":7494497,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333284Z"},{"ID":419,"PlayerID":7499430,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333285Z"},{"ID":420,"PlayerID":7508390,"NewTribeID":1610,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333285Z"},{"ID":421,"PlayerID":7516892,"NewTribeID":1333,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333285Z"},{"ID":422,"PlayerID":7518529,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333286Z"},{"ID":423,"PlayerID":7520280,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333286Z"},{"ID":424,"PlayerID":7526090,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333286Z"},{"ID":425,"PlayerID":7528491,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333287Z"},{"ID":426,"PlayerID":7530708,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333287Z"},{"ID":427,"PlayerID":7540891,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333287Z"},{"ID":428,"PlayerID":7550472,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333288Z"},{"ID":429,"PlayerID":7555180,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333288Z"},{"ID":430,"PlayerID":7557683,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333289Z"},{"ID":431,"PlayerID":7559093,"NewTribeID":1399,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333289Z"},{"ID":432,"PlayerID":7560474,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333289Z"},{"ID":433,"PlayerID":7563943,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33329Z"},{"ID":434,"PlayerID":7581876,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33329Z"},{"ID":435,"PlayerID":7588382,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33329Z"},{"ID":436,"PlayerID":7589468,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333291Z"},{"ID":437,"PlayerID":7590135,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333291Z"},{"ID":438,"PlayerID":7605446,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333291Z"},{"ID":439,"PlayerID":7646152,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333292Z"},{"ID":440,"PlayerID":7651093,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333292Z"},{"ID":441,"PlayerID":7661091,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333292Z"},{"ID":442,"PlayerID":7675610,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333293Z"},{"ID":443,"PlayerID":7687862,"NewTribeID":1648,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333293Z"},{"ID":444,"PlayerID":7691817,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333293Z"},{"ID":445,"PlayerID":7733128,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333294Z"},{"ID":446,"PlayerID":7749444,"NewTribeID":355,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333294Z"},{"ID":447,"PlayerID":7756002,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333295Z"},{"ID":448,"PlayerID":7758085,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333295Z"},{"ID":449,"PlayerID":7775311,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333295Z"},{"ID":450,"PlayerID":7781236,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333296Z"},{"ID":451,"PlayerID":7787254,"NewTribeID":597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333296Z"},{"ID":452,"PlayerID":7803631,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333296Z"},{"ID":453,"PlayerID":7829201,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333297Z"},{"ID":454,"PlayerID":7831811,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333297Z"},{"ID":455,"PlayerID":7842579,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333298Z"},{"ID":456,"PlayerID":7860453,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333298Z"},{"ID":457,"PlayerID":7865511,"NewTribeID":1636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333298Z"},{"ID":458,"PlayerID":7897925,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333299Z"},{"ID":459,"PlayerID":7899232,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333299Z"},{"ID":460,"PlayerID":7913305,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333299Z"},{"ID":461,"PlayerID":7914131,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3333Z"},{"ID":462,"PlayerID":7915966,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3333Z"},{"ID":463,"PlayerID":7919620,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3333Z"},{"ID":464,"PlayerID":7929731,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333301Z"},{"ID":465,"PlayerID":7973893,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333301Z"},{"ID":466,"PlayerID":7976264,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333301Z"},{"ID":467,"PlayerID":7985956,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333302Z"},{"ID":468,"PlayerID":7995033,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333302Z"},{"ID":469,"PlayerID":7999103,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333302Z"},{"ID":470,"PlayerID":8000875,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333303Z"},{"ID":471,"PlayerID":8004076,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333303Z"},{"ID":472,"PlayerID":8013349,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333303Z"},{"ID":473,"PlayerID":8015775,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333304Z"},{"ID":474,"PlayerID":8015955,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333304Z"},{"ID":475,"PlayerID":8019812,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333305Z"},{"ID":476,"PlayerID":8048374,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333305Z"},{"ID":477,"PlayerID":8078914,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333305Z"},{"ID":478,"PlayerID":8096537,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333306Z"},{"ID":479,"PlayerID":8099868,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333306Z"},{"ID":480,"PlayerID":8106333,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333306Z"},{"ID":481,"PlayerID":8123790,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333307Z"},{"ID":482,"PlayerID":8134135,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333307Z"},{"ID":483,"PlayerID":8138506,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333307Z"},{"ID":484,"PlayerID":8153179,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333308Z"},{"ID":485,"PlayerID":8155296,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333308Z"},{"ID":486,"PlayerID":8175236,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333308Z"},{"ID":487,"PlayerID":8184383,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333309Z"},{"ID":488,"PlayerID":8191129,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333309Z"},{"ID":489,"PlayerID":8192845,"NewTribeID":1161,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333309Z"},{"ID":490,"PlayerID":8199417,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33331Z"},{"ID":491,"PlayerID":8201460,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33331Z"},{"ID":492,"PlayerID":8204926,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333311Z"},{"ID":493,"PlayerID":8217130,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333311Z"},{"ID":494,"PlayerID":8218433,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333311Z"},{"ID":495,"PlayerID":8224678,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333312Z"},{"ID":496,"PlayerID":8240209,"NewTribeID":89,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333312Z"},{"ID":497,"PlayerID":8240677,"NewTribeID":176,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333312Z"},{"ID":498,"PlayerID":8259895,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333313Z"},{"ID":499,"PlayerID":8268010,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333313Z"},{"ID":500,"PlayerID":8288459,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333313Z"},{"ID":501,"PlayerID":8292737,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333314Z"},{"ID":502,"PlayerID":8305343,"NewTribeID":503,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333314Z"},{"ID":503,"PlayerID":8320319,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333314Z"},{"ID":504,"PlayerID":8323711,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333315Z"},{"ID":505,"PlayerID":8325063,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333315Z"},{"ID":506,"PlayerID":8325700,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333315Z"},{"ID":507,"PlayerID":8337151,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333316Z"},{"ID":508,"PlayerID":8362886,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333316Z"},{"ID":509,"PlayerID":8366045,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333316Z"},{"ID":510,"PlayerID":8369561,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333317Z"},{"ID":511,"PlayerID":8369778,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333317Z"},{"ID":512,"PlayerID":8373234,"NewTribeID":1626,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333317Z"},{"ID":513,"PlayerID":8379825,"NewTribeID":474,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333318Z"},{"ID":514,"PlayerID":8400180,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333318Z"},{"ID":515,"PlayerID":8400975,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333318Z"},{"ID":516,"PlayerID":8408007,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333319Z"},{"ID":517,"PlayerID":8411874,"NewTribeID":841,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333319Z"},{"ID":518,"PlayerID":8418489,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33332Z"},{"ID":519,"PlayerID":8419570,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33332Z"},{"ID":520,"PlayerID":8420564,"NewTribeID":520,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33332Z"},{"ID":521,"PlayerID":8423835,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333321Z"},{"ID":522,"PlayerID":8425594,"NewTribeID":1582,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333321Z"},{"ID":523,"PlayerID":8428196,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333321Z"},{"ID":524,"PlayerID":8429484,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333322Z"},{"ID":525,"PlayerID":8434727,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333322Z"},{"ID":526,"PlayerID":8438707,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333322Z"},{"ID":527,"PlayerID":8444356,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333323Z"},{"ID":528,"PlayerID":8444698,"NewTribeID":1691,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333323Z"},{"ID":529,"PlayerID":8459255,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333323Z"},{"ID":530,"PlayerID":8478874,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333324Z"},{"ID":531,"PlayerID":8483719,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333324Z"},{"ID":532,"PlayerID":8501514,"NewTribeID":115,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333324Z"},{"ID":533,"PlayerID":8502135,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333325Z"},{"ID":534,"PlayerID":8503255,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333325Z"},{"ID":535,"PlayerID":8513699,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333326Z"},{"ID":536,"PlayerID":8539216,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333326Z"},{"ID":537,"PlayerID":8541236,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333327Z"},{"ID":538,"PlayerID":8552893,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333327Z"},{"ID":539,"PlayerID":8553904,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333327Z"},{"ID":540,"PlayerID":8583185,"NewTribeID":1754,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333328Z"},{"ID":541,"PlayerID":8588789,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333328Z"},{"ID":542,"PlayerID":8595633,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333328Z"},{"ID":543,"PlayerID":8607734,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333329Z"},{"ID":544,"PlayerID":8609713,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333329Z"},{"ID":545,"PlayerID":8612358,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333329Z"},{"ID":546,"PlayerID":8622901,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33333Z"},{"ID":547,"PlayerID":8627359,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33333Z"},{"ID":548,"PlayerID":8630972,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33333Z"},{"ID":549,"PlayerID":8632462,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333331Z"},{"ID":550,"PlayerID":8649412,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333331Z"},{"ID":551,"PlayerID":8654156,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333331Z"},{"ID":552,"PlayerID":8662264,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333332Z"},{"ID":553,"PlayerID":8662634,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333332Z"},{"ID":554,"PlayerID":8665783,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333333Z"},{"ID":555,"PlayerID":8669398,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333333Z"},{"ID":556,"PlayerID":8674163,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333333Z"},{"ID":557,"PlayerID":8675636,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333334Z"},{"ID":558,"PlayerID":8677963,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333334Z"},{"ID":559,"PlayerID":8678008,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333334Z"},{"ID":560,"PlayerID":8698728,"NewTribeID":211,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333335Z"},{"ID":561,"PlayerID":8699429,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333335Z"},{"ID":562,"PlayerID":8708728,"NewTribeID":220,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333335Z"},{"ID":563,"PlayerID":8710047,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333336Z"},{"ID":564,"PlayerID":8720321,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333336Z"},{"ID":565,"PlayerID":8724192,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333336Z"},{"ID":566,"PlayerID":8729672,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333337Z"},{"ID":567,"PlayerID":8740199,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333337Z"},{"ID":568,"PlayerID":8741336,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333337Z"},{"ID":569,"PlayerID":8742874,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333338Z"},{"ID":570,"PlayerID":8752714,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333338Z"},{"ID":571,"PlayerID":8753956,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333338Z"},{"ID":572,"PlayerID":8760563,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333339Z"},{"ID":573,"PlayerID":8772923,"NewTribeID":200,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333339Z"},{"ID":574,"PlayerID":8776452,"NewTribeID":1477,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333339Z"},{"ID":575,"PlayerID":8779575,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33334Z"},{"ID":576,"PlayerID":8785003,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33334Z"},{"ID":577,"PlayerID":8785314,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333341Z"},{"ID":578,"PlayerID":8788366,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333341Z"},{"ID":579,"PlayerID":8792844,"NewTribeID":287,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333341Z"},{"ID":580,"PlayerID":8806145,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333342Z"},{"ID":581,"PlayerID":8811880,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333342Z"},{"ID":582,"PlayerID":8812550,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333342Z"},{"ID":583,"PlayerID":8815353,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333343Z"},{"ID":584,"PlayerID":8815749,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333343Z"},{"ID":585,"PlayerID":8816336,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333343Z"},{"ID":586,"PlayerID":8827094,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333344Z"},{"ID":587,"PlayerID":8831977,"NewTribeID":89,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333344Z"},{"ID":588,"PlayerID":8838462,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333344Z"},{"ID":589,"PlayerID":8839403,"NewTribeID":255,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333345Z"},{"ID":590,"PlayerID":8841266,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333345Z"},{"ID":591,"PlayerID":8842936,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333345Z"},{"ID":592,"PlayerID":8843774,"NewTribeID":624,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333346Z"},{"ID":593,"PlayerID":8847546,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333346Z"},{"ID":594,"PlayerID":8852026,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333346Z"},{"ID":595,"PlayerID":8853146,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333347Z"},{"ID":596,"PlayerID":8855679,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333347Z"},{"ID":597,"PlayerID":8856821,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333347Z"},{"ID":598,"PlayerID":8868716,"NewTribeID":554,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333348Z"},{"ID":599,"PlayerID":8877156,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333348Z"},{"ID":600,"PlayerID":8877886,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333348Z"},{"ID":601,"PlayerID":8890346,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333349Z"},{"ID":602,"PlayerID":8890793,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333349Z"},{"ID":603,"PlayerID":8895532,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33335Z"},{"ID":604,"PlayerID":8900955,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33335Z"},{"ID":605,"PlayerID":8908002,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33335Z"},{"ID":606,"PlayerID":8908544,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333351Z"},{"ID":607,"PlayerID":8916982,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333351Z"},{"ID":608,"PlayerID":8922870,"NewTribeID":1753,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333351Z"},{"ID":609,"PlayerID":8925624,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333352Z"},{"ID":610,"PlayerID":8925695,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333352Z"},{"ID":611,"PlayerID":8954402,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333352Z"},{"ID":612,"PlayerID":8956715,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333353Z"},{"ID":613,"PlayerID":8963720,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333353Z"},{"ID":614,"PlayerID":8966820,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333353Z"},{"ID":615,"PlayerID":8967440,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333354Z"},{"ID":616,"PlayerID":8976313,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333354Z"},{"ID":617,"PlayerID":8978080,"NewTribeID":1498,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333354Z"},{"ID":618,"PlayerID":8980651,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333355Z"},{"ID":619,"PlayerID":8991696,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333355Z"},{"ID":620,"PlayerID":8997874,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333355Z"},{"ID":621,"PlayerID":9003698,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333356Z"},{"ID":622,"PlayerID":9014108,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333356Z"},{"ID":623,"PlayerID":9016464,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333357Z"},{"ID":624,"PlayerID":9016560,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333357Z"},{"ID":625,"PlayerID":9021037,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333357Z"},{"ID":626,"PlayerID":9021920,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333358Z"},{"ID":627,"PlayerID":9023703,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333358Z"},{"ID":628,"PlayerID":9029627,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333358Z"},{"ID":629,"PlayerID":9029928,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333359Z"},{"ID":630,"PlayerID":9037756,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333359Z"},{"ID":631,"PlayerID":9048764,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333359Z"},{"ID":632,"PlayerID":9053254,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33336Z"},{"ID":633,"PlayerID":9057880,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33336Z"},{"ID":634,"PlayerID":9060641,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.33336Z"},{"ID":635,"PlayerID":9060885,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333361Z"},{"ID":636,"PlayerID":9095581,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333361Z"},{"ID":637,"PlayerID":9097545,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333362Z"},{"ID":638,"PlayerID":9101574,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333362Z"},{"ID":639,"PlayerID":9103424,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333362Z"},{"ID":640,"PlayerID":9106642,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333363Z"},{"ID":641,"PlayerID":9113064,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333363Z"},{"ID":642,"PlayerID":9120206,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333363Z"},{"ID":643,"PlayerID":9136062,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333364Z"},{"ID":644,"PlayerID":9147518,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333364Z"},{"ID":645,"PlayerID":9148043,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333365Z"},{"ID":646,"PlayerID":9148439,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333365Z"},{"ID":647,"PlayerID":9153430,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333365Z"},{"ID":648,"PlayerID":9163140,"NewTribeID":1368,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333366Z"},{"ID":649,"PlayerID":9167250,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333366Z"},{"ID":650,"PlayerID":9174887,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333366Z"},{"ID":651,"PlayerID":9179700,"NewTribeID":1772,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333366Z"},{"ID":652,"PlayerID":9180206,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333366Z"},{"ID":653,"PlayerID":9185931,"NewTribeID":12,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333367Z"},{"ID":654,"PlayerID":9186126,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333367Z"},{"ID":655,"PlayerID":9186877,"NewTribeID":1806,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333367Z"},{"ID":656,"PlayerID":9188016,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333367Z"},{"ID":657,"PlayerID":9191031,"NewTribeID":1763,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333367Z"},{"ID":658,"PlayerID":9195661,"NewTribeID":1793,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333367Z"},{"ID":659,"PlayerID":9199885,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333368Z"},{"ID":660,"PlayerID":9201946,"NewTribeID":1799,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333368Z"},{"ID":661,"PlayerID":9228039,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333368Z"},{"ID":662,"PlayerID":9231765,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333368Z"},{"ID":663,"PlayerID":9234594,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333368Z"},{"ID":664,"PlayerID":9235561,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333368Z"},{"ID":665,"PlayerID":9236866,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333369Z"},{"ID":666,"PlayerID":9238175,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333369Z"},{"ID":667,"PlayerID":9239515,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333369Z"},{"ID":668,"PlayerID":9240154,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.333369Z"},{"ID":669,"PlayerID":9253494,"NewTribeID":1470,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398462Z"},{"ID":670,"PlayerID":9257513,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398466Z"},{"ID":671,"PlayerID":9264752,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398473Z"},{"ID":672,"PlayerID":9266092,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398476Z"},{"ID":673,"PlayerID":9270302,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398478Z"},{"ID":674,"PlayerID":9272054,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398479Z"},{"ID":675,"PlayerID":9277642,"NewTribeID":1530,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398481Z"},{"ID":676,"PlayerID":9280477,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398483Z"},{"ID":677,"PlayerID":9282669,"NewTribeID":1389,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398487Z"},{"ID":678,"PlayerID":9283142,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398489Z"},{"ID":679,"PlayerID":9283775,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398489Z"},{"ID":680,"PlayerID":9291984,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398491Z"},{"ID":681,"PlayerID":9299539,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398492Z"},{"ID":682,"PlayerID":9312528,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398494Z"},{"ID":683,"PlayerID":9314079,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398496Z"},{"ID":684,"PlayerID":9318449,"NewTribeID":1338,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398497Z"},{"ID":685,"PlayerID":9319058,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398499Z"},{"ID":686,"PlayerID":698143931,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398501Z"},{"ID":687,"PlayerID":698147372,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398502Z"},{"ID":688,"PlayerID":698147969,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398504Z"},{"ID":689,"PlayerID":698151302,"NewTribeID":72,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398505Z"},{"ID":690,"PlayerID":698152377,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398506Z"},{"ID":691,"PlayerID":698152498,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398508Z"},{"ID":692,"PlayerID":698160606,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398509Z"},{"ID":693,"PlayerID":698162312,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398511Z"},{"ID":694,"PlayerID":698167138,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398514Z"},{"ID":695,"PlayerID":698171150,"NewTribeID":1757,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398516Z"},{"ID":696,"PlayerID":698178312,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398518Z"},{"ID":697,"PlayerID":698187023,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398519Z"},{"ID":698,"PlayerID":698191218,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398521Z"},{"ID":699,"PlayerID":698200480,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398521Z"},{"ID":700,"PlayerID":698212272,"NewTribeID":686,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398523Z"},{"ID":701,"PlayerID":698215322,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398524Z"},{"ID":702,"PlayerID":698231772,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398526Z"},{"ID":703,"PlayerID":698232227,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398528Z"},{"ID":704,"PlayerID":698239813,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398529Z"},{"ID":705,"PlayerID":698241117,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398531Z"},{"ID":706,"PlayerID":698248308,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398533Z"},{"ID":707,"PlayerID":698258283,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398535Z"},{"ID":708,"PlayerID":698264828,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398537Z"},{"ID":709,"PlayerID":698273555,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398537Z"},{"ID":710,"PlayerID":698278542,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398538Z"},{"ID":711,"PlayerID":698279195,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398542Z"},{"ID":712,"PlayerID":698285444,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398543Z"},{"ID":713,"PlayerID":698290319,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398545Z"},{"ID":714,"PlayerID":698290577,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398547Z"},{"ID":715,"PlayerID":698295651,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398548Z"},{"ID":716,"PlayerID":698299678,"NewTribeID":1609,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39855Z"},{"ID":717,"PlayerID":698305474,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398552Z"},{"ID":718,"PlayerID":698321130,"NewTribeID":1347,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398553Z"},{"ID":719,"PlayerID":698330221,"NewTribeID":336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398554Z"},{"ID":720,"PlayerID":698331388,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398555Z"},{"ID":721,"PlayerID":698338524,"NewTribeID":1683,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398557Z"},{"ID":722,"PlayerID":698342159,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398559Z"},{"ID":723,"PlayerID":698345556,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398561Z"},{"ID":724,"PlayerID":698346954,"NewTribeID":13,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398562Z"},{"ID":725,"PlayerID":698349125,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398564Z"},{"ID":726,"PlayerID":698350371,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398566Z"},{"ID":727,"PlayerID":698353083,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398569Z"},{"ID":728,"PlayerID":698356304,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398571Z"},{"ID":729,"PlayerID":698361257,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398571Z"},{"ID":730,"PlayerID":698363063,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398572Z"},{"ID":731,"PlayerID":698364331,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398573Z"},{"ID":732,"PlayerID":698365960,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398574Z"},{"ID":733,"PlayerID":698368493,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398575Z"},{"ID":734,"PlayerID":698383417,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398576Z"},{"ID":735,"PlayerID":698384726,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398578Z"},{"ID":736,"PlayerID":698385619,"NewTribeID":686,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398579Z"},{"ID":737,"PlayerID":698388041,"NewTribeID":750,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39858Z"},{"ID":738,"PlayerID":698388578,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39858Z"},{"ID":739,"PlayerID":698416970,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398581Z"},{"ID":740,"PlayerID":698420691,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398582Z"},{"ID":741,"PlayerID":698442418,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398585Z"},{"ID":742,"PlayerID":698457392,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398587Z"},{"ID":743,"PlayerID":698462285,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398588Z"},{"ID":744,"PlayerID":698477883,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398589Z"},{"ID":745,"PlayerID":698486277,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39859Z"},{"ID":746,"PlayerID":698489071,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398591Z"},{"ID":747,"PlayerID":698511920,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398592Z"},{"ID":748,"PlayerID":698519133,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398592Z"},{"ID":749,"PlayerID":698526036,"NewTribeID":373,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398593Z"},{"ID":750,"PlayerID":698540331,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398594Z"},{"ID":751,"PlayerID":698545981,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398595Z"},{"ID":752,"PlayerID":698548451,"NewTribeID":651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398596Z"},{"ID":753,"PlayerID":698556600,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398597Z"},{"ID":754,"PlayerID":698557087,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398598Z"},{"ID":755,"PlayerID":698562644,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398599Z"},{"ID":756,"PlayerID":698585370,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3986Z"},{"ID":757,"PlayerID":698588535,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398602Z"},{"ID":758,"PlayerID":698588812,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398602Z"},{"ID":759,"PlayerID":698589866,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398603Z"},{"ID":760,"PlayerID":698592565,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398604Z"},{"ID":761,"PlayerID":698599365,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398605Z"},{"ID":762,"PlayerID":698605444,"NewTribeID":1357,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398606Z"},{"ID":763,"PlayerID":698613394,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398607Z"},{"ID":764,"PlayerID":698620694,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398608Z"},{"ID":765,"PlayerID":698625834,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398609Z"},{"ID":766,"PlayerID":698630507,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39861Z"},{"ID":767,"PlayerID":698631190,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398611Z"},{"ID":768,"PlayerID":698635863,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398611Z"},{"ID":769,"PlayerID":698641566,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398612Z"},{"ID":770,"PlayerID":698650301,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398613Z"},{"ID":771,"PlayerID":698652014,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398614Z"},{"ID":772,"PlayerID":698652171,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398615Z"},{"ID":773,"PlayerID":698655576,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398616Z"},{"ID":774,"PlayerID":698659980,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398617Z"},{"ID":775,"PlayerID":698663855,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398617Z"},{"ID":776,"PlayerID":698666810,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398618Z"},{"ID":777,"PlayerID":698667255,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39862Z"},{"ID":778,"PlayerID":698670524,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39862Z"},{"ID":779,"PlayerID":698676788,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398621Z"},{"ID":780,"PlayerID":698677650,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398622Z"},{"ID":781,"PlayerID":698680806,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398623Z"},{"ID":782,"PlayerID":698687597,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398624Z"},{"ID":783,"PlayerID":698693697,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398625Z"},{"ID":784,"PlayerID":698696420,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398625Z"},{"ID":785,"PlayerID":698701911,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398626Z"},{"ID":786,"PlayerID":698702991,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398628Z"},{"ID":787,"PlayerID":698704189,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398629Z"},{"ID":788,"PlayerID":698723158,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398629Z"},{"ID":789,"PlayerID":698736778,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39863Z"},{"ID":790,"PlayerID":698738810,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398631Z"},{"ID":791,"PlayerID":698739350,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398632Z"},{"ID":792,"PlayerID":698743511,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398632Z"},{"ID":793,"PlayerID":698748891,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398633Z"},{"ID":794,"PlayerID":698754087,"NewTribeID":1802,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398635Z"},{"ID":795,"PlayerID":698757439,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398636Z"},{"ID":796,"PlayerID":698766178,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398637Z"},{"ID":797,"PlayerID":698766369,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398637Z"},{"ID":798,"PlayerID":698766454,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398638Z"},{"ID":799,"PlayerID":698768565,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398638Z"},{"ID":800,"PlayerID":698769107,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398639Z"},{"ID":801,"PlayerID":698776998,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39864Z"},{"ID":802,"PlayerID":698785538,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398641Z"},{"ID":803,"PlayerID":698786826,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398642Z"},{"ID":804,"PlayerID":698789253,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398643Z"},{"ID":805,"PlayerID":698791053,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398644Z"},{"ID":806,"PlayerID":698795589,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398645Z"},{"ID":807,"PlayerID":698806018,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398645Z"},{"ID":808,"PlayerID":698807570,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398646Z"},{"ID":809,"PlayerID":698817235,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398647Z"},{"ID":810,"PlayerID":698823542,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398648Z"},{"ID":811,"PlayerID":698826986,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398651Z"},{"ID":812,"PlayerID":698829590,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398652Z"},{"ID":813,"PlayerID":698830638,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398653Z"},{"ID":814,"PlayerID":698845189,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398654Z"},{"ID":815,"PlayerID":698848067,"NewTribeID":305,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398655Z"},{"ID":816,"PlayerID":698848373,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398656Z"},{"ID":817,"PlayerID":698849979,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398656Z"},{"ID":818,"PlayerID":698855681,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398657Z"},{"ID":819,"PlayerID":698867446,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398658Z"},{"ID":820,"PlayerID":698867483,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398659Z"},{"ID":821,"PlayerID":698879638,"NewTribeID":1760,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39866Z"},{"ID":822,"PlayerID":698881022,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398661Z"},{"ID":823,"PlayerID":698884287,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398662Z"},{"ID":824,"PlayerID":698897472,"NewTribeID":1431,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398663Z"},{"ID":825,"PlayerID":698905177,"NewTribeID":1127,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398664Z"},{"ID":826,"PlayerID":698908184,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398664Z"},{"ID":827,"PlayerID":698908912,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398665Z"},{"ID":828,"PlayerID":698913618,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398666Z"},{"ID":829,"PlayerID":698926585,"NewTribeID":989,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398667Z"},{"ID":830,"PlayerID":698934729,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398668Z"},{"ID":831,"PlayerID":698938264,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398668Z"},{"ID":832,"PlayerID":698941586,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398669Z"},{"ID":833,"PlayerID":698957176,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39867Z"},{"ID":834,"PlayerID":698962117,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398671Z"},{"ID":835,"PlayerID":698971484,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398672Z"},{"ID":836,"PlayerID":698983867,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398673Z"},{"ID":837,"PlayerID":698993706,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398673Z"},{"ID":838,"PlayerID":698996782,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398674Z"},{"ID":839,"PlayerID":698999105,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398675Z"},{"ID":840,"PlayerID":699011415,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398676Z"},{"ID":841,"PlayerID":699016994,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398676Z"},{"ID":842,"PlayerID":699025262,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398677Z"},{"ID":843,"PlayerID":699027000,"NewTribeID":1347,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398678Z"},{"ID":844,"PlayerID":699034094,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39868Z"},{"ID":845,"PlayerID":699037086,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398681Z"},{"ID":846,"PlayerID":699039013,"NewTribeID":1538,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398681Z"},{"ID":847,"PlayerID":699054373,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398681Z"},{"ID":848,"PlayerID":699056677,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398682Z"},{"ID":849,"PlayerID":699057459,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398683Z"},{"ID":850,"PlayerID":699058253,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398684Z"},{"ID":851,"PlayerID":699066118,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398685Z"},{"ID":852,"PlayerID":699072129,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398686Z"},{"ID":853,"PlayerID":699075351,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398687Z"},{"ID":854,"PlayerID":699083129,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398688Z"},{"ID":855,"PlayerID":699084064,"NewTribeID":1809,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398688Z"},{"ID":856,"PlayerID":699086436,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398689Z"},{"ID":857,"PlayerID":699088529,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398689Z"},{"ID":858,"PlayerID":699088769,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39869Z"},{"ID":859,"PlayerID":699097885,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398691Z"},{"ID":860,"PlayerID":699098531,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398692Z"},{"ID":861,"PlayerID":699099811,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398694Z"},{"ID":862,"PlayerID":699111651,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398694Z"},{"ID":863,"PlayerID":699117178,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398695Z"},{"ID":864,"PlayerID":699117992,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398696Z"},{"ID":865,"PlayerID":699121671,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398697Z"},{"ID":866,"PlayerID":699126484,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398697Z"},{"ID":867,"PlayerID":699127156,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398698Z"},{"ID":868,"PlayerID":699139964,"NewTribeID":1771,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398699Z"},{"ID":869,"PlayerID":699146580,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3987Z"},{"ID":870,"PlayerID":699146876,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398701Z"},{"ID":871,"PlayerID":699148121,"NewTribeID":1432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398702Z"},{"ID":872,"PlayerID":699150527,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398702Z"},{"ID":873,"PlayerID":699170684,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398703Z"},{"ID":874,"PlayerID":699176234,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398704Z"},{"ID":875,"PlayerID":699189792,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398705Z"},{"ID":876,"PlayerID":699191449,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398705Z"},{"ID":877,"PlayerID":699191455,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398706Z"},{"ID":878,"PlayerID":699191464,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398708Z"},{"ID":879,"PlayerID":699194766,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398708Z"},{"ID":880,"PlayerID":699195358,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398709Z"},{"ID":881,"PlayerID":699196829,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398712Z"},{"ID":882,"PlayerID":699199084,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398713Z"},{"ID":883,"PlayerID":699201278,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398714Z"},{"ID":884,"PlayerID":699204478,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398715Z"},{"ID":885,"PlayerID":699208929,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398716Z"},{"ID":886,"PlayerID":699212614,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398716Z"},{"ID":887,"PlayerID":699213622,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398717Z"},{"ID":888,"PlayerID":699238479,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398718Z"},{"ID":889,"PlayerID":699244334,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398719Z"},{"ID":890,"PlayerID":699246032,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39872Z"},{"ID":891,"PlayerID":699251542,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39872Z"},{"ID":892,"PlayerID":699262350,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398721Z"},{"ID":893,"PlayerID":699265922,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398722Z"},{"ID":894,"PlayerID":699266530,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398724Z"},{"ID":895,"PlayerID":699269923,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398724Z"},{"ID":896,"PlayerID":699272633,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398725Z"},{"ID":897,"PlayerID":699272880,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398725Z"},{"ID":898,"PlayerID":699273451,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398726Z"},{"ID":899,"PlayerID":699278528,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398727Z"},{"ID":900,"PlayerID":699280514,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398728Z"},{"ID":901,"PlayerID":699282717,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398729Z"},{"ID":902,"PlayerID":699283869,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39873Z"},{"ID":903,"PlayerID":699285160,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398731Z"},{"ID":904,"PlayerID":699287032,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398732Z"},{"ID":905,"PlayerID":699298370,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398732Z"},{"ID":906,"PlayerID":699299123,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398733Z"},{"ID":907,"PlayerID":699304554,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398733Z"},{"ID":908,"PlayerID":699308637,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398734Z"},{"ID":909,"PlayerID":699316421,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398735Z"},{"ID":910,"PlayerID":699319395,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398736Z"},{"ID":911,"PlayerID":699321518,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398738Z"},{"ID":912,"PlayerID":699323302,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398738Z"},{"ID":913,"PlayerID":699323781,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398739Z"},{"ID":914,"PlayerID":699333701,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39874Z"},{"ID":915,"PlayerID":699336679,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398741Z"},{"ID":916,"PlayerID":699336777,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398741Z"},{"ID":917,"PlayerID":699339594,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398742Z"},{"ID":918,"PlayerID":699341889,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398743Z"},{"ID":919,"PlayerID":699342219,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398744Z"},{"ID":920,"PlayerID":699343887,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398745Z"},{"ID":921,"PlayerID":699346280,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398745Z"},{"ID":922,"PlayerID":699347951,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398746Z"},{"ID":923,"PlayerID":699351301,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398747Z"},{"ID":924,"PlayerID":699355601,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398748Z"},{"ID":925,"PlayerID":699356102,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398748Z"},{"ID":926,"PlayerID":699356968,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398749Z"},{"ID":927,"PlayerID":699360521,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39875Z"},{"ID":928,"PlayerID":699364813,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398751Z"},{"ID":929,"PlayerID":699366937,"NewTribeID":206,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398752Z"},{"ID":930,"PlayerID":699368887,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398753Z"},{"ID":931,"PlayerID":699372829,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398754Z"},{"ID":932,"PlayerID":699373599,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398755Z"},{"ID":933,"PlayerID":699375903,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398756Z"},{"ID":934,"PlayerID":699377151,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398757Z"},{"ID":935,"PlayerID":699377401,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398757Z"},{"ID":936,"PlayerID":699379895,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398758Z"},{"ID":937,"PlayerID":699380607,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398758Z"},{"ID":938,"PlayerID":699382126,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398759Z"},{"ID":939,"PlayerID":699383121,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39876Z"},{"ID":940,"PlayerID":699383279,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398761Z"},{"ID":941,"PlayerID":699385139,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398762Z"},{"ID":942,"PlayerID":699391409,"NewTribeID":1247,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398763Z"},{"ID":943,"PlayerID":699393742,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398764Z"},{"ID":944,"PlayerID":699393759,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398765Z"},{"ID":945,"PlayerID":699396429,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398765Z"},{"ID":946,"PlayerID":699402816,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398766Z"},{"ID":947,"PlayerID":699405877,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398767Z"},{"ID":948,"PlayerID":699406247,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398768Z"},{"ID":949,"PlayerID":699406750,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398769Z"},{"ID":950,"PlayerID":699406776,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39877Z"},{"ID":951,"PlayerID":699408669,"NewTribeID":430,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398773Z"},{"ID":952,"PlayerID":699409420,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398773Z"},{"ID":953,"PlayerID":699413040,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398774Z"},{"ID":954,"PlayerID":699413581,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398775Z"},{"ID":955,"PlayerID":699423167,"NewTribeID":1651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398775Z"},{"ID":956,"PlayerID":699424741,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398776Z"},{"ID":957,"PlayerID":699425709,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398777Z"},{"ID":958,"PlayerID":699429153,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398778Z"},{"ID":959,"PlayerID":699429335,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398779Z"},{"ID":960,"PlayerID":699431255,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39878Z"},{"ID":961,"PlayerID":699432672,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398781Z"},{"ID":962,"PlayerID":699433558,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398782Z"},{"ID":963,"PlayerID":699438389,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398783Z"},{"ID":964,"PlayerID":699441366,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398784Z"},{"ID":965,"PlayerID":699443920,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398784Z"},{"ID":966,"PlayerID":699449946,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398785Z"},{"ID":967,"PlayerID":699451338,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398786Z"},{"ID":968,"PlayerID":699469600,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398787Z"},{"ID":969,"PlayerID":699471829,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398788Z"},{"ID":970,"PlayerID":699477624,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398789Z"},{"ID":971,"PlayerID":699478692,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39879Z"},{"ID":972,"PlayerID":699483429,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398791Z"},{"ID":973,"PlayerID":699485250,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398791Z"},{"ID":974,"PlayerID":699488108,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398792Z"},{"ID":975,"PlayerID":699490365,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398792Z"},{"ID":976,"PlayerID":699491076,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398793Z"},{"ID":977,"PlayerID":699491924,"NewTribeID":1795,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398794Z"},{"ID":978,"PlayerID":699493750,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398796Z"},{"ID":979,"PlayerID":699494480,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398796Z"},{"ID":980,"PlayerID":699494488,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398797Z"},{"ID":981,"PlayerID":699503079,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398798Z"},{"ID":982,"PlayerID":699508363,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398799Z"},{"ID":983,"PlayerID":699509239,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3988Z"},{"ID":984,"PlayerID":699509284,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398801Z"},{"ID":985,"PlayerID":699510045,"NewTribeID":1209,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398801Z"},{"ID":986,"PlayerID":699510259,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398803Z"},{"ID":987,"PlayerID":699513260,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398804Z"},{"ID":988,"PlayerID":699516268,"NewTribeID":557,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398805Z"},{"ID":989,"PlayerID":699518384,"NewTribeID":945,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398806Z"},{"ID":990,"PlayerID":699518454,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398807Z"},{"ID":991,"PlayerID":699520575,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398808Z"},{"ID":992,"PlayerID":699522257,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398809Z"},{"ID":993,"PlayerID":699523631,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39881Z"},{"ID":994,"PlayerID":699524362,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.39881Z"},{"ID":995,"PlayerID":699524891,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398811Z"},{"ID":996,"PlayerID":699545762,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.398812Z"},{"ID":997,"PlayerID":699546317,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487803Z"},{"ID":998,"PlayerID":699548295,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487803Z"},{"ID":999,"PlayerID":699550876,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487803Z"},{"ID":1000,"PlayerID":699552859,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487804Z"},{"ID":1001,"PlayerID":699557165,"NewTribeID":1638,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487804Z"},{"ID":1002,"PlayerID":699560327,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487804Z"},{"ID":1003,"PlayerID":699562182,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487805Z"},{"ID":1004,"PlayerID":699562874,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487805Z"},{"ID":1005,"PlayerID":699567608,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487805Z"},{"ID":1006,"PlayerID":699569800,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487806Z"},{"ID":1007,"PlayerID":699573053,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487806Z"},{"ID":1008,"PlayerID":699574408,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487806Z"},{"ID":1009,"PlayerID":699576407,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487807Z"},{"ID":1010,"PlayerID":699578606,"NewTribeID":1716,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487807Z"},{"ID":1011,"PlayerID":699580120,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487807Z"},{"ID":1012,"PlayerID":699588526,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487808Z"},{"ID":1013,"PlayerID":699589540,"NewTribeID":1528,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487808Z"},{"ID":1014,"PlayerID":699595556,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487808Z"},{"ID":1015,"PlayerID":699598425,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487809Z"},{"ID":1016,"PlayerID":699600167,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487809Z"},{"ID":1017,"PlayerID":699600855,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487809Z"},{"ID":1018,"PlayerID":699603116,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48781Z"},{"ID":1019,"PlayerID":699604515,"NewTribeID":1652,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48781Z"},{"ID":1020,"PlayerID":699605333,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48781Z"},{"ID":1021,"PlayerID":699611673,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487811Z"},{"ID":1022,"PlayerID":699618326,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487811Z"},{"ID":1023,"PlayerID":699620730,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487811Z"},{"ID":1024,"PlayerID":699621601,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487812Z"},{"ID":1025,"PlayerID":699622781,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487812Z"},{"ID":1026,"PlayerID":699622958,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487813Z"},{"ID":1027,"PlayerID":699624570,"NewTribeID":1802,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487813Z"},{"ID":1028,"PlayerID":699627771,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487813Z"},{"ID":1029,"PlayerID":699628084,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487813Z"},{"ID":1030,"PlayerID":699630110,"NewTribeID":664,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487814Z"},{"ID":1031,"PlayerID":699633365,"NewTribeID":1807,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487814Z"},{"ID":1032,"PlayerID":699639001,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487815Z"},{"ID":1033,"PlayerID":699639005,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487815Z"},{"ID":1034,"PlayerID":699639122,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487815Z"},{"ID":1035,"PlayerID":699641777,"NewTribeID":53,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487816Z"},{"ID":1036,"PlayerID":699642954,"NewTribeID":625,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487816Z"},{"ID":1037,"PlayerID":699644054,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487816Z"},{"ID":1038,"PlayerID":699644448,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487817Z"},{"ID":1039,"PlayerID":699644852,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487817Z"},{"ID":1040,"PlayerID":699650981,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487817Z"},{"ID":1041,"PlayerID":699655364,"NewTribeID":1484,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487818Z"},{"ID":1042,"PlayerID":699656989,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487818Z"},{"ID":1043,"PlayerID":699657242,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487818Z"},{"ID":1044,"PlayerID":699657450,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487819Z"},{"ID":1045,"PlayerID":699658023,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487819Z"},{"ID":1046,"PlayerID":699660539,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487819Z"},{"ID":1047,"PlayerID":699662232,"NewTribeID":1715,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48782Z"},{"ID":1048,"PlayerID":699664910,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48782Z"},{"ID":1049,"PlayerID":699665031,"NewTribeID":1460,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48782Z"},{"ID":1050,"PlayerID":699665152,"NewTribeID":1716,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487821Z"},{"ID":1051,"PlayerID":699671197,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487821Z"},{"ID":1052,"PlayerID":699671454,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487821Z"},{"ID":1053,"PlayerID":699672060,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487822Z"},{"ID":1054,"PlayerID":699673236,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487822Z"},{"ID":1055,"PlayerID":699676005,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487822Z"},{"ID":1056,"PlayerID":699677277,"NewTribeID":429,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487823Z"},{"ID":1057,"PlayerID":699678739,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487823Z"},{"ID":1058,"PlayerID":699678801,"NewTribeID":664,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487823Z"},{"ID":1059,"PlayerID":699679662,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487824Z"},{"ID":1060,"PlayerID":699684062,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487824Z"},{"ID":1061,"PlayerID":699685533,"NewTribeID":1755,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487824Z"},{"ID":1062,"PlayerID":699688180,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487825Z"},{"ID":1063,"PlayerID":699693687,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487825Z"},{"ID":1064,"PlayerID":699694284,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487826Z"},{"ID":1065,"PlayerID":699695167,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487826Z"},{"ID":1066,"PlayerID":699697136,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487826Z"},{"ID":1067,"PlayerID":699697558,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487827Z"},{"ID":1068,"PlayerID":699698079,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487827Z"},{"ID":1069,"PlayerID":699698253,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487827Z"},{"ID":1070,"PlayerID":699698873,"NewTribeID":1751,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487828Z"},{"ID":1071,"PlayerID":699699563,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487828Z"},{"ID":1072,"PlayerID":699699601,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487828Z"},{"ID":1073,"PlayerID":699699650,"NewTribeID":1787,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487829Z"},{"ID":1074,"PlayerID":699703295,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487829Z"},{"ID":1075,"PlayerID":699703642,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487829Z"},{"ID":1076,"PlayerID":699704542,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48783Z"},{"ID":1077,"PlayerID":699705601,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48783Z"},{"ID":1078,"PlayerID":699706955,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48783Z"},{"ID":1079,"PlayerID":699709160,"NewTribeID":220,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487831Z"},{"ID":1080,"PlayerID":699710633,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487831Z"},{"ID":1081,"PlayerID":699711706,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487832Z"},{"ID":1082,"PlayerID":699711723,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487832Z"},{"ID":1083,"PlayerID":699711926,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487832Z"},{"ID":1084,"PlayerID":699711996,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487833Z"},{"ID":1085,"PlayerID":699712243,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487833Z"},{"ID":1086,"PlayerID":699712422,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487833Z"},{"ID":1087,"PlayerID":699713515,"NewTribeID":1740,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487834Z"},{"ID":1088,"PlayerID":699716785,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487834Z"},{"ID":1089,"PlayerID":699718269,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487834Z"},{"ID":1090,"PlayerID":699722599,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487835Z"},{"ID":1091,"PlayerID":699723284,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487835Z"},{"ID":1092,"PlayerID":699724603,"NewTribeID":236,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487835Z"},{"ID":1093,"PlayerID":699725436,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487836Z"},{"ID":1094,"PlayerID":699726660,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487836Z"},{"ID":1095,"PlayerID":699728159,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487836Z"},{"ID":1096,"PlayerID":699728266,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487837Z"},{"ID":1097,"PlayerID":699730399,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487837Z"},{"ID":1098,"PlayerID":699730714,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487837Z"},{"ID":1099,"PlayerID":699730998,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487838Z"},{"ID":1100,"PlayerID":699733098,"NewTribeID":1808,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487838Z"},{"ID":1101,"PlayerID":699733501,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487838Z"},{"ID":1102,"PlayerID":699734445,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487839Z"},{"ID":1103,"PlayerID":699734795,"NewTribeID":1376,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487839Z"},{"ID":1104,"PlayerID":699735020,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487839Z"},{"ID":1105,"PlayerID":699736927,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48784Z"},{"ID":1106,"PlayerID":699736959,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48784Z"},{"ID":1107,"PlayerID":699737356,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48784Z"},{"ID":1108,"PlayerID":699738350,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487841Z"},{"ID":1109,"PlayerID":699739523,"NewTribeID":723,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487841Z"},{"ID":1110,"PlayerID":699739891,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487841Z"},{"ID":1111,"PlayerID":699741694,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487842Z"},{"ID":1112,"PlayerID":699744012,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487842Z"},{"ID":1113,"PlayerID":699744766,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487842Z"},{"ID":1114,"PlayerID":699745265,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487843Z"},{"ID":1115,"PlayerID":699751062,"NewTribeID":517,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487843Z"},{"ID":1116,"PlayerID":699753640,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487844Z"},{"ID":1117,"PlayerID":699754856,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487844Z"},{"ID":1118,"PlayerID":699755859,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487844Z"},{"ID":1119,"PlayerID":699756210,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487845Z"},{"ID":1120,"PlayerID":699758688,"NewTribeID":1399,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487845Z"},{"ID":1121,"PlayerID":699759128,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487845Z"},{"ID":1122,"PlayerID":699760767,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487846Z"},{"ID":1123,"PlayerID":699761749,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487846Z"},{"ID":1124,"PlayerID":699763225,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487846Z"},{"ID":1125,"PlayerID":699765601,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487847Z"},{"ID":1126,"PlayerID":699774694,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487847Z"},{"ID":1127,"PlayerID":699777234,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487847Z"},{"ID":1128,"PlayerID":699777372,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487848Z"},{"ID":1129,"PlayerID":699777556,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487848Z"},{"ID":1130,"PlayerID":699778028,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487848Z"},{"ID":1131,"PlayerID":699778867,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487849Z"},{"ID":1132,"PlayerID":699780873,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487849Z"},{"ID":1133,"PlayerID":699781390,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487849Z"},{"ID":1134,"PlayerID":699781605,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48785Z"},{"ID":1135,"PlayerID":699781762,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48785Z"},{"ID":1136,"PlayerID":699783765,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48785Z"},{"ID":1137,"PlayerID":699784536,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487851Z"},{"ID":1138,"PlayerID":699785935,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487851Z"},{"ID":1139,"PlayerID":699788305,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487851Z"},{"ID":1140,"PlayerID":699791054,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487852Z"},{"ID":1141,"PlayerID":699794421,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487852Z"},{"ID":1142,"PlayerID":699794720,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487852Z"},{"ID":1143,"PlayerID":699794765,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487853Z"},{"ID":1144,"PlayerID":699795301,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487853Z"},{"ID":1145,"PlayerID":699795378,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487853Z"},{"ID":1146,"PlayerID":699796330,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487854Z"},{"ID":1147,"PlayerID":699796630,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487854Z"},{"ID":1148,"PlayerID":699797252,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487854Z"},{"ID":1149,"PlayerID":699797805,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487855Z"},{"ID":1150,"PlayerID":699799629,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487855Z"},{"ID":1151,"PlayerID":699802012,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487856Z"},{"ID":1152,"PlayerID":699803070,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487856Z"},{"ID":1153,"PlayerID":699803189,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487856Z"},{"ID":1154,"PlayerID":699804790,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487857Z"},{"ID":1155,"PlayerID":699805379,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487857Z"},{"ID":1156,"PlayerID":699805839,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487857Z"},{"ID":1157,"PlayerID":699807296,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487858Z"},{"ID":1158,"PlayerID":699811844,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487858Z"},{"ID":1159,"PlayerID":699812007,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487858Z"},{"ID":1160,"PlayerID":699812351,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487859Z"},{"ID":1161,"PlayerID":699812653,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487859Z"},{"ID":1162,"PlayerID":699812869,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487859Z"},{"ID":1163,"PlayerID":699818726,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48786Z"},{"ID":1164,"PlayerID":699821629,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48786Z"},{"ID":1165,"PlayerID":699821755,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48786Z"},{"ID":1166,"PlayerID":699823490,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487861Z"},{"ID":1167,"PlayerID":699825236,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487861Z"},{"ID":1168,"PlayerID":699825797,"NewTribeID":1810,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487861Z"},{"ID":1169,"PlayerID":699826312,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487862Z"},{"ID":1170,"PlayerID":699826996,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487862Z"},{"ID":1171,"PlayerID":699827112,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487862Z"},{"ID":1172,"PlayerID":699828338,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487863Z"},{"ID":1173,"PlayerID":699828442,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487863Z"},{"ID":1174,"PlayerID":699828685,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487863Z"},{"ID":1175,"PlayerID":699829494,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487864Z"},{"ID":1176,"PlayerID":699829975,"NewTribeID":415,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487864Z"},{"ID":1177,"PlayerID":699830255,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487864Z"},{"ID":1178,"PlayerID":699831366,"NewTribeID":443,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487865Z"},{"ID":1179,"PlayerID":699831860,"NewTribeID":651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487865Z"},{"ID":1180,"PlayerID":699832463,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487866Z"},{"ID":1181,"PlayerID":699833171,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487866Z"},{"ID":1182,"PlayerID":699834004,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487866Z"},{"ID":1183,"PlayerID":699837483,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487867Z"},{"ID":1184,"PlayerID":699837826,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487867Z"},{"ID":1185,"PlayerID":699840189,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487867Z"},{"ID":1186,"PlayerID":699841905,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487868Z"},{"ID":1187,"PlayerID":699841959,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487868Z"},{"ID":1188,"PlayerID":699842853,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487868Z"},{"ID":1189,"PlayerID":699843417,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487869Z"},{"ID":1190,"PlayerID":699844314,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487869Z"},{"ID":1191,"PlayerID":699844727,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487869Z"},{"ID":1192,"PlayerID":699845400,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48787Z"},{"ID":1193,"PlayerID":699847354,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48787Z"},{"ID":1194,"PlayerID":699849210,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487871Z"},{"ID":1195,"PlayerID":699851345,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487871Z"},{"ID":1196,"PlayerID":699851427,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487871Z"},{"ID":1197,"PlayerID":699852080,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487872Z"},{"ID":1198,"PlayerID":699853308,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487872Z"},{"ID":1199,"PlayerID":699853526,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487872Z"},{"ID":1200,"PlayerID":699854312,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487873Z"},{"ID":1201,"PlayerID":699854484,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487873Z"},{"ID":1202,"PlayerID":699854830,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487873Z"},{"ID":1203,"PlayerID":699856830,"NewTribeID":176,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487874Z"},{"ID":1204,"PlayerID":699856962,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487874Z"},{"ID":1205,"PlayerID":699857387,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487874Z"},{"ID":1206,"PlayerID":699858313,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487875Z"},{"ID":1207,"PlayerID":699858532,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487875Z"},{"ID":1208,"PlayerID":699860418,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487875Z"},{"ID":1209,"PlayerID":699861004,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487876Z"},{"ID":1210,"PlayerID":699862278,"NewTribeID":1209,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487876Z"},{"ID":1211,"PlayerID":699863708,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487876Z"},{"ID":1212,"PlayerID":699864013,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487877Z"},{"ID":1213,"PlayerID":699866225,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487877Z"},{"ID":1214,"PlayerID":699866510,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487877Z"},{"ID":1215,"PlayerID":699867602,"NewTribeID":1448,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487878Z"},{"ID":1216,"PlayerID":699868002,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487878Z"},{"ID":1217,"PlayerID":699868448,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487878Z"},{"ID":1218,"PlayerID":699868739,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487879Z"},{"ID":1219,"PlayerID":699869682,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487879Z"},{"ID":1220,"PlayerID":699872032,"NewTribeID":1535,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487879Z"},{"ID":1221,"PlayerID":699872401,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48788Z"},{"ID":1222,"PlayerID":699872616,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48788Z"},{"ID":1223,"PlayerID":699873141,"NewTribeID":597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48788Z"},{"ID":1224,"PlayerID":699875213,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487881Z"},{"ID":1225,"PlayerID":699875650,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487881Z"},{"ID":1226,"PlayerID":699876345,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487881Z"},{"ID":1227,"PlayerID":699876746,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487882Z"},{"ID":1228,"PlayerID":699878150,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487882Z"},{"ID":1229,"PlayerID":699878443,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487883Z"},{"ID":1230,"PlayerID":699878511,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487883Z"},{"ID":1231,"PlayerID":699880701,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487883Z"},{"ID":1232,"PlayerID":699883079,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487884Z"},{"ID":1233,"PlayerID":699883836,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487884Z"},{"ID":1234,"PlayerID":699884788,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487884Z"},{"ID":1235,"PlayerID":848882446,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487885Z"},{"ID":1236,"PlayerID":848882577,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487885Z"},{"ID":1237,"PlayerID":848883237,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487885Z"},{"ID":1238,"PlayerID":848883542,"NewTribeID":686,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487886Z"},{"ID":1239,"PlayerID":848883684,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487886Z"},{"ID":1240,"PlayerID":848883791,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487886Z"},{"ID":1241,"PlayerID":848886056,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487887Z"},{"ID":1242,"PlayerID":848886870,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487887Z"},{"ID":1243,"PlayerID":848886973,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487887Z"},{"ID":1244,"PlayerID":848887199,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487888Z"},{"ID":1245,"PlayerID":848888787,"NewTribeID":290,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487888Z"},{"ID":1246,"PlayerID":848889556,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487888Z"},{"ID":1247,"PlayerID":848889850,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487889Z"},{"ID":1248,"PlayerID":848890012,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487889Z"},{"ID":1249,"PlayerID":848892804,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487889Z"},{"ID":1250,"PlayerID":848895676,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48789Z"},{"ID":1251,"PlayerID":848896948,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48789Z"},{"ID":1252,"PlayerID":848899726,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48789Z"},{"ID":1253,"PlayerID":848901822,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487891Z"},{"ID":1254,"PlayerID":848902592,"NewTribeID":633,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487891Z"},{"ID":1255,"PlayerID":848902744,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487891Z"},{"ID":1256,"PlayerID":848903260,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487892Z"},{"ID":1257,"PlayerID":848903690,"NewTribeID":822,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487892Z"},{"ID":1258,"PlayerID":848905770,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487892Z"},{"ID":1259,"PlayerID":848908144,"NewTribeID":397,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487893Z"},{"ID":1260,"PlayerID":848909122,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487893Z"},{"ID":1261,"PlayerID":848909292,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487893Z"},{"ID":1262,"PlayerID":848909464,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487894Z"},{"ID":1263,"PlayerID":848910122,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487894Z"},{"ID":1264,"PlayerID":848910971,"NewTribeID":1804,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487894Z"},{"ID":1265,"PlayerID":848912265,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487895Z"},{"ID":1266,"PlayerID":848912772,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487895Z"},{"ID":1267,"PlayerID":848912937,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487896Z"},{"ID":1268,"PlayerID":848913030,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487896Z"},{"ID":1269,"PlayerID":848913037,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487896Z"},{"ID":1270,"PlayerID":848913998,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487897Z"},{"ID":1271,"PlayerID":848914661,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487897Z"},{"ID":1272,"PlayerID":848915531,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487897Z"},{"ID":1273,"PlayerID":848915730,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487898Z"},{"ID":1274,"PlayerID":848916779,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487898Z"},{"ID":1275,"PlayerID":848917127,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487898Z"},{"ID":1276,"PlayerID":848917401,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487899Z"},{"ID":1277,"PlayerID":848917570,"NewTribeID":1368,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487899Z"},{"ID":1278,"PlayerID":848918380,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487899Z"},{"ID":1279,"PlayerID":848919959,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4879Z"},{"ID":1280,"PlayerID":848921536,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4879Z"},{"ID":1281,"PlayerID":848921793,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4879Z"},{"ID":1282,"PlayerID":848921861,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487901Z"},{"ID":1283,"PlayerID":848922958,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487901Z"},{"ID":1284,"PlayerID":848924219,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487901Z"},{"ID":1285,"PlayerID":848925840,"NewTribeID":1040,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487902Z"},{"ID":1286,"PlayerID":848926293,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487902Z"},{"ID":1287,"PlayerID":848928486,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487902Z"},{"ID":1288,"PlayerID":848928624,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487903Z"},{"ID":1289,"PlayerID":848930111,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487903Z"},{"ID":1290,"PlayerID":848930498,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487903Z"},{"ID":1291,"PlayerID":848930898,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487904Z"},{"ID":1292,"PlayerID":848932879,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487904Z"},{"ID":1293,"PlayerID":848933470,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487905Z"},{"ID":1294,"PlayerID":848934935,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487905Z"},{"ID":1295,"PlayerID":848935020,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487905Z"},{"ID":1296,"PlayerID":848935732,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487906Z"},{"ID":1297,"PlayerID":848936053,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487906Z"},{"ID":1298,"PlayerID":848937248,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487906Z"},{"ID":1299,"PlayerID":848939203,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487907Z"},{"ID":1300,"PlayerID":848942565,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487907Z"},{"ID":1301,"PlayerID":848942587,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487907Z"},{"ID":1302,"PlayerID":848942618,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487908Z"},{"ID":1303,"PlayerID":848942847,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487908Z"},{"ID":1304,"PlayerID":848943145,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487908Z"},{"ID":1305,"PlayerID":848944534,"NewTribeID":1785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487909Z"},{"ID":1306,"PlayerID":848945529,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487909Z"},{"ID":1307,"PlayerID":848946608,"NewTribeID":520,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.487909Z"},{"ID":1308,"PlayerID":848946700,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48791Z"},{"ID":1309,"PlayerID":848949271,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.48791Z"},{"ID":1310,"PlayerID":848949597,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583097Z"},{"ID":1311,"PlayerID":848952556,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583098Z"},{"ID":1312,"PlayerID":848953066,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583098Z"},{"ID":1313,"PlayerID":848955783,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583098Z"},{"ID":1314,"PlayerID":848956013,"NewTribeID":147,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583098Z"},{"ID":1315,"PlayerID":848956513,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583098Z"},{"ID":1316,"PlayerID":848956765,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583099Z"},{"ID":1317,"PlayerID":848958005,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583099Z"},{"ID":1318,"PlayerID":848959231,"NewTribeID":12,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583099Z"},{"ID":1319,"PlayerID":848963236,"NewTribeID":92,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583099Z"},{"ID":1320,"PlayerID":848963521,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5831Z"},{"ID":1321,"PlayerID":848965531,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5831Z"},{"ID":1322,"PlayerID":848966521,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5831Z"},{"ID":1323,"PlayerID":848967710,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5831Z"},{"ID":1324,"PlayerID":848969313,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5831Z"},{"ID":1325,"PlayerID":848970357,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583101Z"},{"ID":1326,"PlayerID":848971079,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583101Z"},{"ID":1327,"PlayerID":848974611,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583101Z"},{"ID":1328,"PlayerID":848975192,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583101Z"},{"ID":1329,"PlayerID":848976720,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583102Z"},{"ID":1330,"PlayerID":848977118,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583102Z"},{"ID":1331,"PlayerID":848977412,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583102Z"},{"ID":1332,"PlayerID":848977600,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583102Z"},{"ID":1333,"PlayerID":848977649,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583102Z"},{"ID":1334,"PlayerID":848977748,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583103Z"},{"ID":1335,"PlayerID":848978052,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583103Z"},{"ID":1336,"PlayerID":848978284,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583103Z"},{"ID":1337,"PlayerID":848978297,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583103Z"},{"ID":1338,"PlayerID":848978903,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583103Z"},{"ID":1339,"PlayerID":848980237,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583104Z"},{"ID":1340,"PlayerID":848980727,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583104Z"},{"ID":1341,"PlayerID":848981523,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583104Z"},{"ID":1342,"PlayerID":848981726,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583104Z"},{"ID":1343,"PlayerID":848982634,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583104Z"},{"ID":1344,"PlayerID":848982635,"NewTribeID":1770,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583105Z"},{"ID":1345,"PlayerID":848985692,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583105Z"},{"ID":1346,"PlayerID":848986287,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583105Z"},{"ID":1347,"PlayerID":848986638,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583105Z"},{"ID":1348,"PlayerID":848987051,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583106Z"},{"ID":1349,"PlayerID":848987695,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583106Z"},{"ID":1350,"PlayerID":848988744,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583106Z"},{"ID":1351,"PlayerID":848989855,"NewTribeID":1399,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583106Z"},{"ID":1352,"PlayerID":848993769,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583106Z"},{"ID":1353,"PlayerID":848995242,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583107Z"},{"ID":1354,"PlayerID":848995291,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583107Z"},{"ID":1355,"PlayerID":848995478,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583107Z"},{"ID":1356,"PlayerID":848998530,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583107Z"},{"ID":1357,"PlayerID":848999671,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583107Z"},{"ID":1358,"PlayerID":849000135,"NewTribeID":1758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583107Z"},{"ID":1359,"PlayerID":849001277,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583108Z"},{"ID":1360,"PlayerID":849001572,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583108Z"},{"ID":1361,"PlayerID":849001724,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583108Z"},{"ID":1362,"PlayerID":849002091,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583108Z"},{"ID":1363,"PlayerID":849002796,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583108Z"},{"ID":1364,"PlayerID":849004274,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583109Z"},{"ID":1365,"PlayerID":849004461,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583109Z"},{"ID":1366,"PlayerID":849005658,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583109Z"},{"ID":1367,"PlayerID":849005829,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583109Z"},{"ID":1368,"PlayerID":849006011,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58311Z"},{"ID":1369,"PlayerID":849006145,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58311Z"},{"ID":1370,"PlayerID":849006385,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58311Z"},{"ID":1371,"PlayerID":849006412,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58311Z"},{"ID":1372,"PlayerID":849009059,"NewTribeID":1804,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58311Z"},{"ID":1373,"PlayerID":849009623,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583111Z"},{"ID":1374,"PlayerID":849010255,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583111Z"},{"ID":1375,"PlayerID":849010865,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583111Z"},{"ID":1376,"PlayerID":849012521,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583111Z"},{"ID":1377,"PlayerID":849012843,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583112Z"},{"ID":1378,"PlayerID":849013126,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583112Z"},{"ID":1379,"PlayerID":849014147,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583112Z"},{"ID":1380,"PlayerID":849014413,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583112Z"},{"ID":1381,"PlayerID":849014922,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583112Z"},{"ID":1382,"PlayerID":849015875,"NewTribeID":1750,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583113Z"},{"ID":1383,"PlayerID":849017820,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583113Z"},{"ID":1384,"PlayerID":849017894,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583113Z"},{"ID":1385,"PlayerID":849018239,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583113Z"},{"ID":1386,"PlayerID":849018442,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583114Z"},{"ID":1387,"PlayerID":849018778,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583114Z"},{"ID":1388,"PlayerID":849018780,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583114Z"},{"ID":1389,"PlayerID":849019785,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583114Z"},{"ID":1390,"PlayerID":849020094,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583114Z"},{"ID":1391,"PlayerID":849020212,"NewTribeID":733,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583115Z"},{"ID":1392,"PlayerID":849020667,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583115Z"},{"ID":1393,"PlayerID":849021566,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583115Z"},{"ID":1394,"PlayerID":849022063,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583115Z"},{"ID":1395,"PlayerID":849023212,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583115Z"},{"ID":1396,"PlayerID":849023540,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583116Z"},{"ID":1397,"PlayerID":849024152,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583116Z"},{"ID":1398,"PlayerID":849025083,"NewTribeID":766,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583116Z"},{"ID":1399,"PlayerID":849026145,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583116Z"},{"ID":1400,"PlayerID":849027025,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583116Z"},{"ID":1401,"PlayerID":849027653,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583117Z"},{"ID":1402,"PlayerID":849027712,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583117Z"},{"ID":1403,"PlayerID":849028071,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583117Z"},{"ID":1404,"PlayerID":849028088,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583117Z"},{"ID":1405,"PlayerID":849030226,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583117Z"},{"ID":1406,"PlayerID":849031759,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583118Z"},{"ID":1407,"PlayerID":849031818,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583118Z"},{"ID":1408,"PlayerID":849031846,"NewTribeID":1780,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583118Z"},{"ID":1409,"PlayerID":849032027,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583118Z"},{"ID":1410,"PlayerID":849032059,"NewTribeID":1780,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583118Z"},{"ID":1411,"PlayerID":849032414,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583119Z"},{"ID":1412,"PlayerID":849034882,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583119Z"},{"ID":1413,"PlayerID":849034917,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583119Z"},{"ID":1414,"PlayerID":849035447,"NewTribeID":260,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583119Z"},{"ID":1415,"PlayerID":849035525,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58312Z"},{"ID":1416,"PlayerID":849035905,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58312Z"},{"ID":1417,"PlayerID":849036055,"NewTribeID":1040,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58312Z"},{"ID":1418,"PlayerID":849037354,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58312Z"},{"ID":1419,"PlayerID":849037407,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58312Z"},{"ID":1420,"PlayerID":849037469,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583121Z"},{"ID":1421,"PlayerID":849037699,"NewTribeID":651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583121Z"},{"ID":1422,"PlayerID":849038985,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583121Z"},{"ID":1423,"PlayerID":849039310,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583121Z"},{"ID":1424,"PlayerID":849040142,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583121Z"},{"ID":1425,"PlayerID":849040194,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583122Z"},{"ID":1426,"PlayerID":849041192,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583122Z"},{"ID":1427,"PlayerID":849042480,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583122Z"},{"ID":1428,"PlayerID":849044705,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583122Z"},{"ID":1429,"PlayerID":849044961,"NewTribeID":134,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583122Z"},{"ID":1430,"PlayerID":849045675,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583123Z"},{"ID":1431,"PlayerID":849045915,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583123Z"},{"ID":1432,"PlayerID":849046206,"NewTribeID":1785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583123Z"},{"ID":1433,"PlayerID":849046232,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583123Z"},{"ID":1434,"PlayerID":849047044,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583123Z"},{"ID":1435,"PlayerID":849047233,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583124Z"},{"ID":1436,"PlayerID":849048112,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583124Z"},{"ID":1437,"PlayerID":849048216,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583124Z"},{"ID":1438,"PlayerID":849048241,"NewTribeID":1692,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583124Z"},{"ID":1439,"PlayerID":849048552,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583125Z"},{"ID":1440,"PlayerID":849048562,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583125Z"},{"ID":1441,"PlayerID":849048734,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583125Z"},{"ID":1442,"PlayerID":849048867,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583125Z"},{"ID":1443,"PlayerID":849049288,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583125Z"},{"ID":1444,"PlayerID":849050087,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583126Z"},{"ID":1445,"PlayerID":849050191,"NewTribeID":1734,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583126Z"},{"ID":1446,"PlayerID":849050734,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583126Z"},{"ID":1447,"PlayerID":849050849,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583126Z"},{"ID":1448,"PlayerID":849051436,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583126Z"},{"ID":1449,"PlayerID":849051731,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583127Z"},{"ID":1450,"PlayerID":849052289,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583127Z"},{"ID":1451,"PlayerID":849052549,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583127Z"},{"ID":1452,"PlayerID":849053122,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583127Z"},{"ID":1453,"PlayerID":849054582,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583127Z"},{"ID":1454,"PlayerID":849054951,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583128Z"},{"ID":1455,"PlayerID":849055181,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583128Z"},{"ID":1456,"PlayerID":849055309,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583128Z"},{"ID":1457,"PlayerID":849055425,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583128Z"},{"ID":1458,"PlayerID":849055527,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583128Z"},{"ID":1459,"PlayerID":849055553,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583129Z"},{"ID":1460,"PlayerID":849056744,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583129Z"},{"ID":1461,"PlayerID":849057450,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583129Z"},{"ID":1462,"PlayerID":849057572,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583129Z"},{"ID":1463,"PlayerID":849057764,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583129Z"},{"ID":1464,"PlayerID":849059457,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58313Z"},{"ID":1465,"PlayerID":849059491,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58313Z"},{"ID":1466,"PlayerID":849060446,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58313Z"},{"ID":1467,"PlayerID":849061374,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58313Z"},{"ID":1468,"PlayerID":849061417,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58313Z"},{"ID":1469,"PlayerID":849062920,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583131Z"},{"ID":1470,"PlayerID":849063605,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583131Z"},{"ID":1471,"PlayerID":849063793,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583131Z"},{"ID":1472,"PlayerID":849063849,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583131Z"},{"ID":1473,"PlayerID":849064614,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583131Z"},{"ID":1474,"PlayerID":849064715,"NewTribeID":689,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583132Z"},{"ID":1475,"PlayerID":849064752,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583132Z"},{"ID":1476,"PlayerID":849065566,"NewTribeID":1347,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583132Z"},{"ID":1477,"PlayerID":849065606,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583132Z"},{"ID":1478,"PlayerID":849065697,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583133Z"},{"ID":1479,"PlayerID":849065829,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583133Z"},{"ID":1480,"PlayerID":849066044,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583133Z"},{"ID":1481,"PlayerID":849066125,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583133Z"},{"ID":1482,"PlayerID":849066618,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583133Z"},{"ID":1483,"PlayerID":849066808,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583134Z"},{"ID":1484,"PlayerID":849066849,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583134Z"},{"ID":1485,"PlayerID":849067079,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583134Z"},{"ID":1486,"PlayerID":849067192,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583134Z"},{"ID":1487,"PlayerID":849067216,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583134Z"},{"ID":1488,"PlayerID":849068108,"NewTribeID":822,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583135Z"},{"ID":1489,"PlayerID":849068436,"NewTribeID":1782,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583135Z"},{"ID":1490,"PlayerID":849068662,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583135Z"},{"ID":1491,"PlayerID":849069010,"NewTribeID":1656,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583135Z"},{"ID":1492,"PlayerID":849070220,"NewTribeID":214,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583135Z"},{"ID":1493,"PlayerID":849070335,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583136Z"},{"ID":1494,"PlayerID":849070464,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583136Z"},{"ID":1495,"PlayerID":849070812,"NewTribeID":1783,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583136Z"},{"ID":1496,"PlayerID":849070946,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583136Z"},{"ID":1497,"PlayerID":849071545,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583137Z"},{"ID":1498,"PlayerID":849072873,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583137Z"},{"ID":1499,"PlayerID":849073156,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583137Z"},{"ID":1500,"PlayerID":849073314,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583137Z"},{"ID":1501,"PlayerID":849073939,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583137Z"},{"ID":1502,"PlayerID":849075298,"NewTribeID":1721,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583138Z"},{"ID":1503,"PlayerID":849075744,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583138Z"},{"ID":1504,"PlayerID":849075836,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583138Z"},{"ID":1505,"PlayerID":849076515,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583138Z"},{"ID":1506,"PlayerID":849076678,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583138Z"},{"ID":1507,"PlayerID":849076810,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583139Z"},{"ID":1508,"PlayerID":849076953,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583139Z"},{"ID":1509,"PlayerID":849078086,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583139Z"},{"ID":1510,"PlayerID":849078119,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583139Z"},{"ID":1511,"PlayerID":849078297,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583139Z"},{"ID":1512,"PlayerID":849078498,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58314Z"},{"ID":1513,"PlayerID":849078942,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58314Z"},{"ID":1514,"PlayerID":849080011,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58314Z"},{"ID":1515,"PlayerID":849080197,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58314Z"},{"ID":1516,"PlayerID":849080702,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583141Z"},{"ID":1517,"PlayerID":849081641,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583141Z"},{"ID":1518,"PlayerID":849081869,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583141Z"},{"ID":1519,"PlayerID":849082154,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583141Z"},{"ID":1520,"PlayerID":849082580,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583141Z"},{"ID":1521,"PlayerID":849082848,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583142Z"},{"ID":1522,"PlayerID":849083294,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583142Z"},{"ID":1523,"PlayerID":849083501,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583142Z"},{"ID":1524,"PlayerID":849083534,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583142Z"},{"ID":1525,"PlayerID":849083725,"NewTribeID":19,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583142Z"},{"ID":1526,"PlayerID":849084005,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583143Z"},{"ID":1527,"PlayerID":849084066,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583143Z"},{"ID":1528,"PlayerID":849084474,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583143Z"},{"ID":1529,"PlayerID":849084740,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583143Z"},{"ID":1530,"PlayerID":849084911,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583143Z"},{"ID":1531,"PlayerID":849084985,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583144Z"},{"ID":1532,"PlayerID":849085160,"NewTribeID":1535,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583144Z"},{"ID":1533,"PlayerID":849085371,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583144Z"},{"ID":1534,"PlayerID":849085605,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583144Z"},{"ID":1535,"PlayerID":849085961,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583145Z"},{"ID":1536,"PlayerID":849086074,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583145Z"},{"ID":1537,"PlayerID":849086357,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583145Z"},{"ID":1538,"PlayerID":849086491,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583145Z"},{"ID":1539,"PlayerID":849086693,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583145Z"},{"ID":1540,"PlayerID":849086777,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583146Z"},{"ID":1541,"PlayerID":849087149,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583146Z"},{"ID":1542,"PlayerID":849087786,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583146Z"},{"ID":1543,"PlayerID":849087855,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583146Z"},{"ID":1544,"PlayerID":849087895,"NewTribeID":1170,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583146Z"},{"ID":1545,"PlayerID":849088101,"NewTribeID":1680,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583146Z"},{"ID":1546,"PlayerID":849088199,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583147Z"},{"ID":1547,"PlayerID":849088243,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583147Z"},{"ID":1548,"PlayerID":849088515,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583147Z"},{"ID":1549,"PlayerID":849088639,"NewTribeID":1680,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583147Z"},{"ID":1550,"PlayerID":849088880,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583147Z"},{"ID":1551,"PlayerID":849088882,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583148Z"},{"ID":1552,"PlayerID":849088923,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583148Z"},{"ID":1553,"PlayerID":849089207,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583148Z"},{"ID":1554,"PlayerID":849089323,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583148Z"},{"ID":1555,"PlayerID":849089459,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583148Z"},{"ID":1556,"PlayerID":849089499,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583149Z"},{"ID":1557,"PlayerID":849089601,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583149Z"},{"ID":1558,"PlayerID":849089654,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583149Z"},{"ID":1559,"PlayerID":849089881,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583149Z"},{"ID":1560,"PlayerID":849090130,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583149Z"},{"ID":1561,"PlayerID":849090573,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58315Z"},{"ID":1562,"PlayerID":849090846,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58315Z"},{"ID":1563,"PlayerID":849091060,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58315Z"},{"ID":1564,"PlayerID":849091084,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.58315Z"},{"ID":1565,"PlayerID":849091105,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583151Z"},{"ID":1566,"PlayerID":849091769,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583151Z"},{"ID":1567,"PlayerID":849091866,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583151Z"},{"ID":1568,"PlayerID":849091897,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583151Z"},{"ID":1569,"PlayerID":849091899,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583151Z"},{"ID":1570,"PlayerID":849091947,"NewTribeID":19,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583152Z"},{"ID":1571,"PlayerID":849091972,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583152Z"},{"ID":1572,"PlayerID":849092109,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583152Z"},{"ID":1573,"PlayerID":849092185,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583152Z"},{"ID":1574,"PlayerID":849092244,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583152Z"},{"ID":1575,"PlayerID":849092309,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583153Z"},{"ID":1576,"PlayerID":849092685,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583153Z"},{"ID":1577,"PlayerID":849092769,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583153Z"},{"ID":1578,"PlayerID":849092827,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583153Z"},{"ID":1579,"PlayerID":849093353,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583154Z"},{"ID":1580,"PlayerID":849093422,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583154Z"},{"ID":1581,"PlayerID":849093426,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583154Z"},{"ID":1582,"PlayerID":849093576,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583154Z"},{"ID":1583,"PlayerID":849093742,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583154Z"},{"ID":1584,"PlayerID":849093771,"NewTribeID":373,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583155Z"},{"ID":1585,"PlayerID":849093875,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583155Z"},{"ID":1586,"PlayerID":849094061,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583155Z"},{"ID":1587,"PlayerID":849094067,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583155Z"},{"ID":1588,"PlayerID":849094111,"NewTribeID":72,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583155Z"},{"ID":1589,"PlayerID":849094586,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583156Z"},{"ID":1590,"PlayerID":849094603,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583156Z"},{"ID":1591,"PlayerID":849094609,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583156Z"},{"ID":1592,"PlayerID":849094688,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583156Z"},{"ID":1593,"PlayerID":849095014,"NewTribeID":1428,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583156Z"},{"ID":1594,"PlayerID":849095068,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583157Z"},{"ID":1595,"PlayerID":849095227,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583157Z"},{"ID":1596,"PlayerID":849095240,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583157Z"},{"ID":1597,"PlayerID":849095376,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583157Z"},{"ID":1598,"PlayerID":849095430,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583157Z"},{"ID":1599,"PlayerID":849095435,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583158Z"},{"ID":1600,"PlayerID":849095482,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583158Z"},{"ID":1601,"PlayerID":849095509,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583158Z"},{"ID":1602,"PlayerID":849095594,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583158Z"},{"ID":1603,"PlayerID":849095599,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583158Z"},{"ID":1604,"PlayerID":849095778,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583159Z"},{"ID":1605,"PlayerID":849095800,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.583159Z"},{"ID":1606,"PlayerID":849095814,"NewTribeID":1729,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738157Z"},{"ID":1607,"PlayerID":849095829,"NewTribeID":1681,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738158Z"},{"ID":1608,"PlayerID":849095948,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738159Z"},{"ID":1609,"PlayerID":849095963,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738159Z"},{"ID":1610,"PlayerID":849095992,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738159Z"},{"ID":1611,"PlayerID":849096041,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73816Z"},{"ID":1612,"PlayerID":849096102,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738164Z"},{"ID":1613,"PlayerID":849096215,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738164Z"},{"ID":1614,"PlayerID":849096265,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738165Z"},{"ID":1615,"PlayerID":849096310,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738165Z"},{"ID":1616,"PlayerID":849096334,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738165Z"},{"ID":1617,"PlayerID":849096341,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738166Z"},{"ID":1618,"PlayerID":849096346,"NewTribeID":1530,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738167Z"},{"ID":1619,"PlayerID":849096354,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738167Z"},{"ID":1620,"PlayerID":849096399,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738168Z"},{"ID":1621,"PlayerID":849096454,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738168Z"},{"ID":1622,"PlayerID":849096458,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738169Z"},{"ID":1623,"PlayerID":849096544,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738169Z"},{"ID":1624,"PlayerID":849096547,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73817Z"},{"ID":1625,"PlayerID":849096592,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73817Z"},{"ID":1626,"PlayerID":849096631,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73817Z"},{"ID":1627,"PlayerID":849096649,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738171Z"},{"ID":1628,"PlayerID":849096768,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738172Z"},{"ID":1629,"PlayerID":849096856,"NewTribeID":830,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738172Z"},{"ID":1630,"PlayerID":849096874,"NewTribeID":1651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738173Z"},{"ID":1631,"PlayerID":849096882,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738173Z"},{"ID":1632,"PlayerID":849096891,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738173Z"},{"ID":1633,"PlayerID":849096944,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738174Z"},{"ID":1634,"PlayerID":849096945,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738175Z"},{"ID":1635,"PlayerID":849096954,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738175Z"},{"ID":1636,"PlayerID":849096958,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738176Z"},{"ID":1637,"PlayerID":849096972,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738176Z"},{"ID":1638,"PlayerID":849096979,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738177Z"},{"ID":1639,"PlayerID":849097002,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738177Z"},{"ID":1640,"PlayerID":849097103,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738177Z"},{"ID":1641,"PlayerID":849097123,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738178Z"},{"ID":1642,"PlayerID":849097175,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738178Z"},{"ID":1643,"PlayerID":849097220,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738179Z"},{"ID":1644,"PlayerID":849097312,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73818Z"},{"ID":1645,"PlayerID":849097370,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73818Z"},{"ID":1646,"PlayerID":849097373,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73818Z"},{"ID":1647,"PlayerID":849097445,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738181Z"},{"ID":1648,"PlayerID":849097477,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738181Z"},{"ID":1649,"PlayerID":849097614,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738182Z"},{"ID":1650,"PlayerID":849097620,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738182Z"},{"ID":1651,"PlayerID":849097681,"NewTribeID":1798,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738182Z"},{"ID":1652,"PlayerID":849097716,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738183Z"},{"ID":1653,"PlayerID":849097729,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738183Z"},{"ID":1654,"PlayerID":849097737,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738184Z"},{"ID":1655,"PlayerID":849097799,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738184Z"},{"ID":1656,"PlayerID":849097837,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738184Z"},{"ID":1657,"PlayerID":849097898,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738185Z"},{"ID":1658,"PlayerID":849097924,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738185Z"},{"ID":1659,"PlayerID":849097937,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738186Z"},{"ID":1660,"PlayerID":849097981,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738187Z"},{"ID":1661,"PlayerID":849098132,"NewTribeID":1690,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738187Z"},{"ID":1662,"PlayerID":849098136,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738187Z"},{"ID":1663,"PlayerID":849098192,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738188Z"},{"ID":1664,"PlayerID":849098200,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738189Z"},{"ID":1665,"PlayerID":849098217,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73819Z"},{"ID":1666,"PlayerID":849098265,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73819Z"},{"ID":1667,"PlayerID":849098299,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73819Z"},{"ID":1668,"PlayerID":849098324,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738191Z"},{"ID":1669,"PlayerID":849098326,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738192Z"},{"ID":1670,"PlayerID":849098387,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738192Z"},{"ID":1671,"PlayerID":849098400,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738193Z"},{"ID":1672,"PlayerID":849098477,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738193Z"},{"ID":1673,"PlayerID":849098516,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738194Z"},{"ID":1674,"PlayerID":849098557,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738195Z"},{"ID":1675,"PlayerID":849098592,"NewTribeID":1645,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738195Z"},{"ID":1676,"PlayerID":849098628,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738195Z"},{"ID":1677,"PlayerID":849098648,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738196Z"},{"ID":1678,"PlayerID":849098667,"NewTribeID":56,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738196Z"},{"ID":1679,"PlayerID":849098688,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738197Z"},{"ID":1680,"PlayerID":849098693,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738198Z"},{"ID":1681,"PlayerID":849098695,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738198Z"},{"ID":1682,"PlayerID":849098724,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738199Z"},{"ID":1683,"PlayerID":849098727,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738199Z"},{"ID":1684,"PlayerID":849098731,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7382Z"},{"ID":1685,"PlayerID":849098766,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738201Z"},{"ID":1686,"PlayerID":849098769,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738201Z"},{"ID":1687,"PlayerID":849098774,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738202Z"},{"ID":1688,"PlayerID":849098782,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738202Z"},{"ID":1689,"PlayerID":849098784,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738203Z"},{"ID":1690,"PlayerID":849098822,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738204Z"},{"ID":1691,"PlayerID":849098827,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738204Z"},{"ID":1692,"PlayerID":849098848,"NewTribeID":1737,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738205Z"},{"ID":1693,"PlayerID":849098966,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738205Z"},{"ID":1694,"PlayerID":849099021,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738206Z"},{"ID":1695,"PlayerID":849099054,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738207Z"},{"ID":1696,"PlayerID":849099105,"NewTribeID":1483,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738207Z"},{"ID":1697,"PlayerID":849099131,"NewTribeID":963,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738208Z"},{"ID":1698,"PlayerID":849099138,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738208Z"},{"ID":1699,"PlayerID":849099160,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738209Z"},{"ID":1700,"PlayerID":849099258,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73821Z"},{"ID":1701,"PlayerID":849099276,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73821Z"},{"ID":1702,"PlayerID":849099280,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738211Z"},{"ID":1703,"PlayerID":849099342,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738211Z"},{"ID":1704,"PlayerID":849099391,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738212Z"},{"ID":1705,"PlayerID":849099422,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738212Z"},{"ID":1706,"PlayerID":849099425,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738213Z"},{"ID":1707,"PlayerID":849099434,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738214Z"},{"ID":1708,"PlayerID":849099463,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738214Z"},{"ID":1709,"PlayerID":849099505,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738215Z"},{"ID":1710,"PlayerID":849099517,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738215Z"},{"ID":1711,"PlayerID":849099541,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738216Z"},{"ID":1712,"PlayerID":849099544,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738217Z"},{"ID":1713,"PlayerID":849099557,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738218Z"},{"ID":1714,"PlayerID":849099558,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738218Z"},{"ID":1715,"PlayerID":849099601,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738218Z"},{"ID":1716,"PlayerID":849099640,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73822Z"},{"ID":1717,"PlayerID":849099660,"NewTribeID":806,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73822Z"},{"ID":1718,"PlayerID":849099689,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738221Z"},{"ID":1719,"PlayerID":849099696,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738221Z"},{"ID":1720,"PlayerID":849099804,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738222Z"},{"ID":1721,"PlayerID":849099859,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738223Z"},{"ID":1722,"PlayerID":849099876,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738223Z"},{"ID":1723,"PlayerID":849099887,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738224Z"},{"ID":1724,"PlayerID":849099955,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738224Z"},{"ID":1725,"PlayerID":849099965,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738225Z"},{"ID":1726,"PlayerID":849100034,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738226Z"},{"ID":1727,"PlayerID":849100082,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738227Z"},{"ID":1728,"PlayerID":849100083,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738227Z"},{"ID":1729,"PlayerID":849100089,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738228Z"},{"ID":1730,"PlayerID":849100134,"NewTribeID":963,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738229Z"},{"ID":1731,"PlayerID":849100149,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738229Z"},{"ID":1732,"PlayerID":849100228,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73823Z"},{"ID":1733,"PlayerID":849100246,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738231Z"},{"ID":1734,"PlayerID":849100262,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738231Z"},{"ID":1735,"PlayerID":849100288,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738232Z"},{"ID":1736,"PlayerID":849100289,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738232Z"},{"ID":1737,"PlayerID":849100323,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738233Z"},{"ID":1738,"PlayerID":849100349,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738234Z"},{"ID":1739,"PlayerID":849100352,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738235Z"},{"ID":1740,"PlayerID":849100354,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738235Z"},{"ID":1741,"PlayerID":849100383,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738235Z"},{"ID":1742,"PlayerID":849100399,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738237Z"},{"ID":1743,"PlayerID":849100406,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738237Z"},{"ID":1744,"PlayerID":849100496,"NewTribeID":1258,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738238Z"},{"ID":1745,"PlayerID":849100584,"NewTribeID":1494,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738238Z"},{"ID":1746,"PlayerID":849100612,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738239Z"},{"ID":1747,"PlayerID":849100615,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73824Z"},{"ID":1748,"PlayerID":849100656,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73824Z"},{"ID":1749,"PlayerID":849100680,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738241Z"},{"ID":1750,"PlayerID":849100744,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738241Z"},{"ID":1751,"PlayerID":849100760,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738242Z"},{"ID":1752,"PlayerID":849100782,"NewTribeID":1261,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738242Z"},{"ID":1753,"PlayerID":849100787,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738243Z"},{"ID":1754,"PlayerID":849100796,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738244Z"},{"ID":1755,"PlayerID":849100811,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738244Z"},{"ID":1756,"PlayerID":849100827,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738244Z"},{"ID":1757,"PlayerID":849100877,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738245Z"},{"ID":1758,"PlayerID":849100882,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738246Z"},{"ID":1759,"PlayerID":849100994,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738246Z"},{"ID":1760,"PlayerID":849101018,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738247Z"},{"ID":1761,"PlayerID":849101029,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738247Z"},{"ID":1762,"PlayerID":849101083,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738248Z"},{"ID":1763,"PlayerID":849101092,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738248Z"},{"ID":1764,"PlayerID":849101102,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738249Z"},{"ID":1765,"PlayerID":849101104,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738249Z"},{"ID":1766,"PlayerID":849101108,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73825Z"},{"ID":1767,"PlayerID":849101116,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73825Z"},{"ID":1768,"PlayerID":849101132,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738251Z"},{"ID":1769,"PlayerID":849101144,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738252Z"},{"ID":1770,"PlayerID":849101148,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738252Z"},{"ID":1771,"PlayerID":849101162,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738253Z"},{"ID":1772,"PlayerID":849101177,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738253Z"},{"ID":1773,"PlayerID":849101186,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738254Z"},{"ID":1774,"PlayerID":849101205,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738255Z"},{"ID":1775,"PlayerID":849101224,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738255Z"},{"ID":1776,"PlayerID":849101268,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738256Z"},{"ID":1777,"PlayerID":849101276,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738256Z"},{"ID":1778,"PlayerID":849101284,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738257Z"},{"ID":1779,"PlayerID":849101293,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738258Z"},{"ID":1780,"PlayerID":849101309,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738258Z"},{"ID":1781,"PlayerID":849101311,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738259Z"},{"ID":1782,"PlayerID":849101377,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738259Z"},{"ID":1783,"PlayerID":849101378,"NewTribeID":1418,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73826Z"},{"ID":1784,"PlayerID":849101382,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738261Z"},{"ID":1785,"PlayerID":849101409,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738261Z"},{"ID":1786,"PlayerID":849101443,"NewTribeID":1372,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738262Z"},{"ID":1787,"PlayerID":849101526,"NewTribeID":1423,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738262Z"},{"ID":1788,"PlayerID":849101579,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738263Z"},{"ID":1789,"PlayerID":849101580,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738264Z"},{"ID":1790,"PlayerID":849101581,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738264Z"},{"ID":1791,"PlayerID":849101604,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738265Z"},{"ID":1792,"PlayerID":849101647,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738265Z"},{"ID":1793,"PlayerID":849101652,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738265Z"},{"ID":1794,"PlayerID":849101674,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738266Z"},{"ID":1795,"PlayerID":849101694,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738267Z"},{"ID":1796,"PlayerID":849101771,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738267Z"},{"ID":1797,"PlayerID":849101814,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738268Z"},{"ID":1798,"PlayerID":849101845,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738268Z"},{"ID":1799,"PlayerID":849101871,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738269Z"},{"ID":1800,"PlayerID":849101881,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73827Z"},{"ID":1801,"PlayerID":849101884,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73827Z"},{"ID":1802,"PlayerID":849101945,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738271Z"},{"ID":1803,"PlayerID":849101947,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738271Z"},{"ID":1804,"PlayerID":849101962,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738272Z"},{"ID":1805,"PlayerID":849102068,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738273Z"},{"ID":1806,"PlayerID":849102092,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738273Z"},{"ID":1807,"PlayerID":849102094,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738274Z"},{"ID":1808,"PlayerID":849102108,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738274Z"},{"ID":1809,"PlayerID":849102143,"NewTribeID":1163,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738275Z"},{"ID":1810,"PlayerID":849102150,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738276Z"},{"ID":1811,"PlayerID":849102336,"NewTribeID":1588,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738276Z"},{"ID":1812,"PlayerID":849102464,"NewTribeID":1418,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738277Z"},{"ID":1813,"PlayerID":849102480,"NewTribeID":1418,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738277Z"},{"ID":1814,"PlayerID":849102573,"NewTribeID":1423,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738277Z"},{"ID":1815,"PlayerID":849103148,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738278Z"},{"ID":1816,"PlayerID":849103237,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738279Z"},{"ID":1817,"PlayerID":849103595,"NewTribeID":1460,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738279Z"},{"ID":1818,"PlayerID":849103914,"NewTribeID":1783,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73828Z"},{"ID":1819,"PlayerID":849103947,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73828Z"},{"ID":1820,"PlayerID":849104286,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738281Z"},{"ID":1821,"PlayerID":849104297,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738282Z"},{"ID":1822,"PlayerID":849104328,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738282Z"},{"ID":1823,"PlayerID":849104356,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738283Z"},{"ID":1824,"PlayerID":849104474,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738283Z"},{"ID":1825,"PlayerID":849104491,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738284Z"},{"ID":1826,"PlayerID":849104546,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738285Z"},{"ID":1827,"PlayerID":849104818,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738285Z"},{"ID":1828,"PlayerID":849104855,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738286Z"},{"ID":1829,"PlayerID":849105072,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738286Z"},{"ID":1830,"PlayerID":849105102,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738287Z"},{"ID":1831,"PlayerID":849105232,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738288Z"},{"ID":1832,"PlayerID":849105417,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738288Z"},{"ID":1833,"PlayerID":849105463,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738289Z"},{"ID":1834,"PlayerID":849105613,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738289Z"},{"ID":1835,"PlayerID":849106316,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73829Z"},{"ID":1836,"PlayerID":849106340,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738291Z"},{"ID":1837,"PlayerID":849106420,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738291Z"},{"ID":1838,"PlayerID":849106548,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738292Z"},{"ID":1839,"PlayerID":849106612,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738292Z"},{"ID":1840,"PlayerID":849106785,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738293Z"},{"ID":1841,"PlayerID":849106820,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738293Z"},{"ID":1842,"PlayerID":849106923,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738294Z"},{"ID":1843,"PlayerID":849106971,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738295Z"},{"ID":1844,"PlayerID":849107104,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738295Z"},{"ID":1845,"PlayerID":849107426,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738295Z"},{"ID":1846,"PlayerID":849107532,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738296Z"},{"ID":1847,"PlayerID":849107703,"NewTribeID":1163,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738297Z"},{"ID":1848,"PlayerID":849107799,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738297Z"},{"ID":1849,"PlayerID":849107881,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738298Z"},{"ID":1850,"PlayerID":849108007,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738298Z"},{"ID":1851,"PlayerID":849108053,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738299Z"},{"ID":1852,"PlayerID":849108148,"NewTribeID":1431,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7383Z"},{"ID":1853,"PlayerID":849108157,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7383Z"},{"ID":1854,"PlayerID":849108328,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738301Z"},{"ID":1855,"PlayerID":849108623,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738301Z"},{"ID":1856,"PlayerID":849108780,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738302Z"},{"ID":1857,"PlayerID":849108784,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738303Z"},{"ID":1858,"PlayerID":849108891,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738303Z"},{"ID":1859,"PlayerID":849108971,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738304Z"},{"ID":1860,"PlayerID":849109010,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738304Z"},{"ID":1861,"PlayerID":849109036,"NewTribeID":1789,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738305Z"},{"ID":1862,"PlayerID":849109045,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738306Z"},{"ID":1863,"PlayerID":849109072,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738306Z"},{"ID":1864,"PlayerID":849109116,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738307Z"},{"ID":1865,"PlayerID":849109232,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738307Z"},{"ID":1866,"PlayerID":849109413,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738307Z"},{"ID":1867,"PlayerID":849109507,"NewTribeID":1528,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738308Z"},{"ID":1868,"PlayerID":849109637,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738309Z"},{"ID":1869,"PlayerID":849109795,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73831Z"},{"ID":1870,"PlayerID":849109966,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73831Z"},{"ID":1871,"PlayerID":849110310,"NewTribeID":1643,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738311Z"},{"ID":1872,"PlayerID":849110365,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738311Z"},{"ID":1873,"PlayerID":849110380,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738312Z"},{"ID":1874,"PlayerID":849110382,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738313Z"},{"ID":1875,"PlayerID":849110479,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738313Z"},{"ID":1876,"PlayerID":849110571,"NewTribeID":256,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738314Z"},{"ID":1877,"PlayerID":849110622,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738314Z"},{"ID":1878,"PlayerID":849110688,"NewTribeID":214,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738315Z"},{"ID":1879,"PlayerID":849110711,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738315Z"},{"ID":1880,"PlayerID":849110743,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738316Z"},{"ID":1881,"PlayerID":849111196,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738317Z"},{"ID":1882,"PlayerID":849111231,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738317Z"},{"ID":1883,"PlayerID":849111244,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738318Z"},{"ID":1884,"PlayerID":849111316,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738319Z"},{"ID":1885,"PlayerID":849111332,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73832Z"},{"ID":1886,"PlayerID":849111408,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73832Z"},{"ID":1887,"PlayerID":849111418,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738321Z"},{"ID":1888,"PlayerID":849111487,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738321Z"},{"ID":1889,"PlayerID":849111632,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738322Z"},{"ID":1890,"PlayerID":849111732,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738323Z"},{"ID":1891,"PlayerID":849111792,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738324Z"},{"ID":1892,"PlayerID":849111819,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738324Z"},{"ID":1893,"PlayerID":849112029,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738325Z"},{"ID":1894,"PlayerID":849112033,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738326Z"},{"ID":1895,"PlayerID":849112050,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738326Z"},{"ID":1896,"PlayerID":849112094,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738327Z"},{"ID":1897,"PlayerID":849112368,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738327Z"},{"ID":1898,"PlayerID":849112435,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738328Z"},{"ID":1899,"PlayerID":849112504,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738329Z"},{"ID":1900,"PlayerID":849112879,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738329Z"},{"ID":1901,"PlayerID":849112960,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73833Z"},{"ID":1902,"PlayerID":849113350,"NewTribeID":1526,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73833Z"},{"ID":1903,"PlayerID":849113480,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738331Z"},{"ID":1904,"PlayerID":849113595,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738332Z"},{"ID":1905,"PlayerID":849113597,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738332Z"},{"ID":1906,"PlayerID":849113819,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738333Z"},{"ID":1907,"PlayerID":849114033,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738334Z"},{"ID":1908,"PlayerID":849114119,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738334Z"},{"ID":1909,"PlayerID":849114265,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738335Z"},{"ID":1910,"PlayerID":849114445,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738336Z"},{"ID":1911,"PlayerID":849114477,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738336Z"},{"ID":1912,"PlayerID":849114579,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738336Z"},{"ID":1913,"PlayerID":849114683,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738337Z"},{"ID":1914,"PlayerID":849115254,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738337Z"},{"ID":1915,"PlayerID":849115431,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738338Z"},{"ID":1916,"PlayerID":849116221,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.738339Z"},{"ID":1917,"PlayerID":849116251,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883698Z"},{"ID":1918,"PlayerID":849116310,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883698Z"},{"ID":1919,"PlayerID":849116416,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883699Z"},{"ID":1920,"PlayerID":849116679,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883699Z"},{"ID":1921,"PlayerID":849117087,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8837Z"},{"ID":1922,"PlayerID":849117143,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8837Z"},{"ID":1923,"PlayerID":849117196,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883701Z"},{"ID":1924,"PlayerID":849117427,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883701Z"},{"ID":1925,"PlayerID":849117454,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883701Z"},{"ID":1926,"PlayerID":849117622,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883702Z"},{"ID":1927,"PlayerID":849117695,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883702Z"},{"ID":1928,"PlayerID":849118441,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883703Z"},{"ID":1929,"PlayerID":849118478,"NewTribeID":1764,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883703Z"},{"ID":1930,"PlayerID":849118616,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883704Z"},{"ID":1931,"PlayerID":849118709,"NewTribeID":1795,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883704Z"},{"ID":1932,"PlayerID":849118999,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883705Z"},{"ID":1933,"PlayerID":849119121,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883705Z"},{"ID":1934,"PlayerID":849119163,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883705Z"},{"ID":1935,"PlayerID":849119223,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883706Z"},{"ID":1936,"PlayerID":849119423,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883706Z"},{"ID":1937,"PlayerID":849119528,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883707Z"},{"ID":1938,"PlayerID":849119848,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883707Z"},{"ID":1939,"PlayerID":849119994,"NewTribeID":1777,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883708Z"},{"ID":1940,"PlayerID":849120129,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883708Z"},{"ID":1941,"PlayerID":849120285,"NewTribeID":1456,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883709Z"},{"ID":1942,"PlayerID":849120488,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883709Z"},{"ID":1943,"PlayerID":849121329,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883709Z"},{"ID":1944,"PlayerID":849122297,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.88371Z"},{"ID":1945,"PlayerID":849122822,"NewTribeID":1803,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.88371Z"},{"ID":1946,"PlayerID":849123002,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883711Z"},{"ID":1947,"PlayerID":849123135,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.883711Z"}] diff --git a/internal/service/testdata/syncdata/stage1/expected/tribes.json b/internal/service/testdata/syncdata/stage1/expected/tribes.json new file mode 100644 index 0000000..2fb9bb4 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/expected/tribes.json @@ -0,0 +1 @@ +[{"RankAtt":2,"ScoreAtt":197149923,"RankDef":3,"ScoreDef":223526800,"RankSup":0,"ScoreSup":0,"RankTotal":2,"ScoreTotal":515371643,"ID":1,"Name":"Konfederacja","Tag":"CSA-X","NumMembers":49,"NumVillages":9610,"Points":79734535,"AllPoints":84293901,"Rank":1,"Dominance":16.828059607403645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1","BestRank":1,"BestRankAt":"2023-02-26T08:03:28.379171Z","MostPoints":84293901,"MostPointsAt":"2023-02-26T08:03:28.379172Z","MostVillages":9610,"MostVillagesAt":"2023-02-26T08:03:28.379172Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":163,"ScoreAtt":7808,"RankDef":91,"ScoreDef":1123538,"RankSup":0,"ScoreSup":0,"RankTotal":99,"ScoreTotal":1148596,"ID":4,"Name":"Farmerzy","Tag":"Farma","NumMembers":1,"NumVillages":2,"Points":9523,"AllPoints":9523,"Rank":127,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=4","BestRank":127,"BestRankAt":"2023-02-26T08:03:28.379179Z","MostPoints":9523,"MostPointsAt":"2023-02-26T08:03:28.37918Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.37918Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":4,"ScoreAtt":133940808,"RankDef":2,"ScoreDef":263707452,"RankSup":0,"ScoreSup":0,"RankTotal":3,"ScoreTotal":513604231,"ID":7,"Name":"Spoceni Kuzyni","Tag":"KUZYNI","NumMembers":41,"NumVillages":4745,"Points":39443045,"AllPoints":39443116,"Rank":4,"Dominance":8.308963874831457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=7","BestRank":4,"BestRankAt":"2023-02-26T08:03:28.379182Z","MostPoints":39443116,"MostPointsAt":"2023-02-26T08:03:28.379182Z","MostVillages":4745,"MostVillagesAt":"2023-02-26T08:03:28.379182Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":89,"ScoreAtt":155525,"RankDef":66,"ScoreDef":2442577,"RankSup":0,"ScoreSup":0,"RankTotal":68,"ScoreTotal":2934253,"ID":8,"Name":"W O W","Tag":"WOW","NumMembers":10,"NumVillages":10,"Points":26037,"AllPoints":26037,"Rank":90,"Dominance":0.017510988145061027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=8","BestRank":90,"BestRankAt":"2023-02-26T08:03:28.379183Z","MostPoints":26037,"MostPointsAt":"2023-02-26T08:03:28.379184Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:28.379183Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":114,"ScoreAtt":71331,"RankDef":78,"ScoreDef":1791593,"RankSup":0,"ScoreSup":0,"RankTotal":82,"ScoreTotal":1995368,"ID":12,"Name":"AveMy","Tag":"AveMy","NumMembers":2,"NumVillages":1,"Points":5995,"AllPoints":5995,"Rank":146,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=12","BestRank":146,"BestRankAt":"2023-02-26T08:03:28.379185Z","MostPoints":5995,"MostPointsAt":"2023-02-26T08:03:28.379185Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379185Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":119,"ScoreAtt":63826,"RankDef":116,"ScoreDef":586792,"RankSup":0,"ScoreSup":0,"RankTotal":119,"ScoreTotal":650623,"ID":13,"Name":"FarmerzyPremium","Tag":"P.P","NumMembers":1,"NumVillages":1,"Points":454,"AllPoints":454,"Rank":216,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=13","BestRank":216,"BestRankAt":"2023-02-26T08:03:28.379187Z","MostPoints":454,"MostPointsAt":"2023-02-26T08:03:28.379188Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379187Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":29,"ScoreAtt":3109409,"RankDef":33,"ScoreDef":7654576,"RankSup":0,"ScoreSup":0,"RankTotal":34,"ScoreTotal":11791705,"ID":19,"Name":"Wojna Domowa Centrum","Tag":"*WDC*","NumMembers":2,"NumVillages":1,"Points":129,"AllPoints":129,"Rank":241,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=19","BestRank":241,"BestRankAt":"2023-02-26T08:03:28.379188Z","MostPoints":129,"MostPointsAt":"2023-02-26T08:03:28.379189Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379189Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":80,"ScoreAtt":205544,"RankDef":73,"ScoreDef":1956734,"RankSup":0,"ScoreSup":0,"RankTotal":79,"ScoreTotal":2163061,"ID":24,"Name":"Anonymous","Tag":"IT","NumMembers":17,"NumVillages":21,"Points":69149,"AllPoints":69149,"Rank":63,"Dominance":0.036773075104628156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=24","BestRank":63,"BestRankAt":"2023-02-26T08:03:28.37919Z","MostPoints":69149,"MostPointsAt":"2023-02-26T08:03:28.379191Z","MostVillages":21,"MostVillagesAt":"2023-02-26T08:03:28.379191Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":60,"ScoreAtt":419592,"RankDef":52,"ScoreDef":3536233,"RankSup":0,"ScoreSup":0,"RankTotal":56,"ScoreTotal":4019564,"ID":29,"Name":"Elitarne plemie zbieraczy PP","Tag":"EPZPP","NumMembers":50,"NumVillages":122,"Points":481916,"AllPoints":484598,"Rank":32,"Dominance":0.2136340553697445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=29","BestRank":32,"BestRankAt":"2023-02-26T08:03:28.379192Z","MostPoints":484598,"MostPointsAt":"2023-02-26T08:03:28.379192Z","MostVillages":122,"MostVillagesAt":"2023-02-26T08:03:28.379192Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":68,"ScoreAtt":271134,"RankDef":56,"ScoreDef":3182520,"RankSup":0,"ScoreSup":0,"RankTotal":62,"ScoreTotal":3579958,"ID":31,"Name":"Project D","Tag":"PD","NumMembers":20,"NumVillages":28,"Points":71157,"AllPoints":71157,"Rank":62,"Dominance":0.049030766806170877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=31","BestRank":62,"BestRankAt":"2023-02-26T08:03:28.379193Z","MostPoints":71157,"MostPointsAt":"2023-02-26T08:03:28.379194Z","MostVillages":28,"MostVillagesAt":"2023-02-26T08:03:28.379193Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":99,"ScoreAtt":127014,"RankDef":31,"ScoreDef":7967918,"RankSup":0,"ScoreSup":0,"RankTotal":35,"ScoreTotal":11518323,"ID":33,"Name":"Towarzystwo Wzajemnej Asekuracji","Tag":"TWA","NumMembers":25,"NumVillages":61,"Points":243847,"AllPoints":243847,"Rank":44,"Dominance":0.10681702768487225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=33","BestRank":44,"BestRankAt":"2023-02-26T08:03:28.379195Z","MostPoints":243847,"MostPointsAt":"2023-02-26T08:03:28.379195Z","MostVillages":61,"MostVillagesAt":"2023-02-26T08:03:28.379195Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":6,"ScoreAtt":67576037,"RankDef":15,"ScoreDef":30817347,"RankSup":0,"ScoreSup":0,"RankTotal":9,"ScoreTotal":116574112,"ID":35,"Name":"MotoMyszy.","Tag":"MzM","NumMembers":48,"NumVillages":4085,"Points":35223609,"AllPoints":35837645,"Rank":6,"Dominance":7.15323865725743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=35","BestRank":6,"BestRankAt":"2023-02-26T08:03:28.379197Z","MostPoints":35837645,"MostPointsAt":"2023-02-26T08:03:28.379197Z","MostVillages":4085,"MostVillagesAt":"2023-02-26T08:03:28.379197Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":8,"ScoreAtt":38547158,"RankDef":12,"ScoreDef":40733659,"RankSup":0,"ScoreSup":0,"RankTotal":11,"ScoreTotal":90816918,"ID":39,"Name":"OZDR + Why","Tag":"Ozdr@","NumMembers":28,"NumVillages":374,"Points":2661501,"AllPoints":2661501,"Rank":15,"Dominance":0.6549109566252823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=39","BestRank":15,"BestRankAt":"2023-02-26T08:03:28.379198Z","MostPoints":2661501,"MostPointsAt":"2023-02-26T08:03:28.379199Z","MostVillages":374,"MostVillagesAt":"2023-02-26T08:03:28.379198Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1,"ScoreAtt":236152747,"RankDef":4,"ScoreDef":123030942,"RankSup":0,"ScoreSup":0,"RankTotal":4,"ScoreTotal":465294036,"ID":47,"Name":"Konfederacja Z","Tag":"CSA-Z","NumMembers":48,"NumVillages":9539,"Points":77167049,"AllPoints":81825499,"Rank":2,"Dominance":16.70373159157371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=47","BestRank":2,"BestRankAt":"2023-02-26T08:03:28.379199Z","MostPoints":81825499,"MostPointsAt":"2023-02-26T08:03:28.3792Z","MostVillages":9539,"MostVillagesAt":"2023-02-26T08:03:28.379199Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":187,"ScoreAtt":1297,"RankDef":134,"ScoreDef":327110,"RankSup":0,"ScoreSup":0,"RankTotal":145,"ScoreTotal":328407,"ID":53,"Name":"Zakon Zielonego Liƛcia","Tag":"420","NumMembers":1,"NumVillages":13,"Points":49609,"AllPoints":49609,"Rank":71,"Dominance":0.022764284588579334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=53","BestRank":71,"BestRankAt":"2023-02-26T08:03:28.379201Z","MostPoints":49609,"MostPointsAt":"2023-02-26T08:03:28.379202Z","MostVillages":13,"MostVillagesAt":"2023-02-26T08:03:28.379201Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":102,"ScoreAtt":107411,"RankDef":118,"ScoreDef":524360,"RankSup":0,"ScoreSup":0,"RankTotal":120,"ScoreTotal":632131,"ID":56,"Name":"PotÄ™ĆŒne Pelikany","Tag":"*PP*","NumMembers":1,"NumVillages":1,"Points":678,"AllPoints":678,"Rank":207,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=56","BestRank":207,"BestRankAt":"2023-02-26T08:03:28.379202Z","MostPoints":678,"MostPointsAt":"2023-02-26T08:03:28.379203Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379203Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":108,"ScoreAtt":89693,"RankDef":55,"ScoreDef":3236269,"RankSup":0,"ScoreSup":0,"RankTotal":61,"ScoreTotal":3640507,"ID":59,"Name":"Znani i Nieznani","Tag":"ZiN","NumMembers":9,"NumVillages":8,"Points":17154,"AllPoints":17154,"Rank":109,"Dominance":0.01400879051604882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=59","BestRank":109,"BestRankAt":"2023-02-26T08:03:28.379208Z","MostPoints":17154,"MostPointsAt":"2023-02-26T08:03:28.37921Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.37921Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":45,"ScoreAtt":1066395,"RankDef":44,"ScoreDef":5126302,"RankSup":0,"ScoreSup":0,"RankTotal":48,"ScoreTotal":6533937,"ID":68,"Name":"ObroƄcy Cadii","Tag":"Cadia","NumMembers":20,"NumVillages":105,"Points":496548,"AllPoints":496548,"Rank":31,"Dominance":0.18386537552314078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=68","BestRank":31,"BestRankAt":"2023-02-26T08:03:28.379211Z","MostPoints":496548,"MostPointsAt":"2023-02-26T08:03:28.379212Z","MostVillages":105,"MostVillagesAt":"2023-02-26T08:03:28.379211Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":16,"ScoreAtt":8406402,"RankDef":36,"ScoreDef":6435280,"RankSup":0,"ScoreSup":0,"RankTotal":31,"ScoreTotal":15537972,"ID":71,"Name":"why so serious","Tag":"Why?","NumMembers":26,"NumVillages":1144,"Points":9778999,"AllPoints":9778999,"Rank":10,"Dominance":2.0032570437949815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=71","BestRank":10,"BestRankAt":"2023-02-26T08:03:28.379213Z","MostPoints":9778999,"MostPointsAt":"2023-02-26T08:03:28.379213Z","MostVillages":1144,"MostVillagesAt":"2023-02-26T08:03:28.379213Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":133,"ScoreAtt":38620,"RankDef":119,"ScoreDef":506287,"RankSup":0,"ScoreSup":0,"RankTotal":127,"ScoreTotal":544908,"ID":72,"Name":"Dinozaury","Tag":"DINO","NumMembers":3,"NumVillages":4,"Points":15813,"AllPoints":15813,"Rank":111,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=72","BestRank":111,"BestRankAt":"2023-02-26T08:03:28.379423Z","MostPoints":15813,"MostPointsAt":"2023-02-26T08:03:28.379423Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379423Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":34,"ScoreAtt":2196064,"RankDef":22,"ScoreDef":18308136,"RankSup":0,"ScoreSup":0,"RankTotal":25,"ScoreTotal":24603199,"ID":77,"Name":"Wyznawcy Darksizmu","Tag":"-WzDa-","NumMembers":5,"NumVillages":5,"Points":3811,"AllPoints":3811,"Rank":164,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=77","BestRank":164,"BestRankAt":"2023-02-26T08:03:28.379424Z","MostPoints":3811,"MostPointsAt":"2023-02-26T08:03:28.379424Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379424Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":25,"ScoreAtt":4699158,"RankDef":17,"ScoreDef":27243852,"RankSup":0,"ScoreSup":0,"RankTotal":21,"ScoreTotal":36195899,"ID":80,"Name":"Legion","Tag":"-LM-","NumMembers":13,"NumVillages":31,"Points":162947,"AllPoints":162947,"Rank":49,"Dominance":0.05428406324968918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=80","BestRank":49,"BestRankAt":"2023-02-26T08:03:28.379424Z","MostPoints":162947,"MostPointsAt":"2023-02-26T08:03:28.379425Z","MostVillages":31,"MostVillagesAt":"2023-02-26T08:03:28.379425Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":5,"ScoreAtt":86023620,"RankDef":18,"ScoreDef":26537205,"RankSup":0,"ScoreSup":0,"RankTotal":7,"ScoreTotal":120816085,"ID":85,"Name":"Motomyszy","Tag":"MzM.","NumMembers":50,"NumVillages":4613,"Points":38916809,"AllPoints":40754476,"Rank":5,"Dominance":8.07781883131665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=85","BestRank":5,"BestRankAt":"2023-02-26T08:03:28.379425Z","MostPoints":40754476,"MostPointsAt":"2023-02-26T08:03:28.379425Z","MostVillages":4613,"MostVillagesAt":"2023-02-26T08:03:28.379425Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":105,"ScoreAtt":94543,"RankDef":99,"ScoreDef":819602,"RankSup":0,"ScoreSup":0,"RankTotal":105,"ScoreTotal":936121,"ID":89,"Name":"FRIENDOLINOS","Tag":"OG","NumMembers":2,"NumVillages":0,"Points":168,"AllPoints":168,"Rank":237,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=89","BestRank":237,"BestRankAt":"2023-02-26T08:03:28.379425Z","MostPoints":168,"MostPointsAt":"2023-02-26T08:03:28.379426Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379426Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":79,"ScoreAtt":208853,"RankDef":80,"ScoreDef":1704695,"RankSup":0,"ScoreSup":0,"RankTotal":85,"ScoreTotal":1913549,"ID":92,"Name":"MotoMyszy!","Tag":"MzM!","NumMembers":1,"NumVillages":1,"Points":3421,"AllPoints":3421,"Rank":167,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=92","BestRank":167,"BestRankAt":"2023-02-26T08:03:28.379426Z","MostPoints":3421,"MostPointsAt":"2023-02-26T08:03:28.379426Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379426Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":129,"ScoreAtt":40098,"RankDef":61,"ScoreDef":2763830,"RankSup":0,"ScoreSup":0,"RankTotal":70,"ScoreTotal":2812912,"ID":96,"Name":"Zakon Czerwonej RĂłĆŒy","Tag":"Z.C.R","NumMembers":12,"NumVillages":13,"Points":19201,"AllPoints":19201,"Rank":102,"Dominance":0.022764284588579334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=96","BestRank":102,"BestRankAt":"2023-02-26T08:03:28.379426Z","MostPoints":19201,"MostPointsAt":"2023-02-26T08:03:28.379427Z","MostVillages":13,"MostVillagesAt":"2023-02-26T08:03:28.379427Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":137,"ScoreAtt":33470,"RankDef":117,"ScoreDef":543960,"RankSup":0,"ScoreSup":0,"RankTotal":123,"ScoreTotal":598608,"ID":97,"Name":"FARMERZY PLEMION","Tag":"FARME","NumMembers":1,"NumVillages":6,"Points":23474,"AllPoints":23474,"Rank":95,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=97","BestRank":95,"BestRankAt":"2023-02-26T08:03:28.379427Z","MostPoints":23474,"MostPointsAt":"2023-02-26T08:03:28.379427Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379427Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":39,"ScoreAtt":1547869,"RankDef":65,"ScoreDef":2461280,"RankSup":0,"ScoreSup":0,"RankTotal":55,"ScoreTotal":4428016,"ID":106,"Name":"GWIEZDNA FEDERACJA","Tag":"GF","NumMembers":24,"NumVillages":342,"Points":1896632,"AllPoints":1896632,"Rank":16,"Dominance":0.5988757945610871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=106","BestRank":16,"BestRankAt":"2023-02-26T08:03:28.379427Z","MostPoints":1896632,"MostPointsAt":"2023-02-26T08:03:28.379428Z","MostVillages":342,"MostVillagesAt":"2023-02-26T08:03:28.379428Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":38,"ScoreAtt":1711002,"RankDef":19,"ScoreDef":24098705,"RankSup":0,"ScoreSup":0,"RankTotal":22,"ScoreTotal":30162886,"ID":112,"Name":"coƛ więcej","Tag":"CW","NumMembers":4,"NumVillages":3,"Points":1122,"AllPoints":1122,"Rank":196,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=112","BestRank":196,"BestRankAt":"2023-02-26T08:03:28.379428Z","MostPoints":1122,"MostPointsAt":"2023-02-26T08:03:28.379428Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379428Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":142,"ScoreAtt":25141,"RankDef":125,"ScoreDef":432992,"RankSup":0,"ScoreSup":0,"RankTotal":133,"ScoreTotal":476582,"ID":115,"Name":"zgierzanie","Tag":"zgr","NumMembers":1,"NumVillages":7,"Points":45603,"AllPoints":45603,"Rank":76,"Dominance":0.012257691701542719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=115","BestRank":76,"BestRankAt":"2023-02-26T08:03:28.379428Z","MostPoints":45603,"MostPointsAt":"2023-02-26T08:03:28.379429Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379428Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":110,"ScoreAtt":85225,"RankDef":90,"ScoreDef":1158499,"RankSup":0,"ScoreSup":0,"RankTotal":95,"ScoreTotal":1243734,"ID":116,"Name":"PotrzymajMiBrowar","Tag":"PMB","NumMembers":1,"NumVillages":1,"Points":1598,"AllPoints":1598,"Rank":187,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=116","BestRank":187,"BestRankAt":"2023-02-26T08:03:28.379429Z","MostPoints":1598,"MostPointsAt":"2023-02-26T08:03:28.379429Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379429Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":146,"ScoreAtt":21965,"RankDef":63,"ScoreDef":2637247,"RankSup":0,"ScoreSup":0,"RankTotal":67,"ScoreTotal":3041909,"ID":117,"Name":"Przybysze z kosmosu","Tag":"Pzk","NumMembers":5,"NumVillages":5,"Points":19683,"AllPoints":19683,"Rank":101,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=117","BestRank":101,"BestRankAt":"2023-02-26T08:03:28.379434Z","MostPoints":19683,"MostPointsAt":"2023-02-26T08:03:28.379435Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379434Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":3,"ScoreAtt":139926286,"RankDef":1,"ScoreDef":273736161,"RankSup":0,"ScoreSup":0,"RankTotal":1,"ScoreTotal":572571198,"ID":120,"Name":"Orkowi Zawodnicy Dominują Rybki","Tag":"OZDR","NumMembers":49,"NumVillages":5550,"Points":46956015,"AllPoints":48360507,"Rank":3,"Dominance":9.71859842050887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=120","BestRank":3,"BestRankAt":"2023-02-26T08:03:28.379435Z","MostPoints":48360507,"MostPointsAt":"2023-02-26T08:03:28.379435Z","MostVillages":5550,"MostVillagesAt":"2023-02-26T08:03:28.379435Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":100,"ScoreAtt":110559,"RankDef":77,"ScoreDef":1826223,"RankSup":0,"ScoreSup":0,"RankTotal":83,"ScoreTotal":1945540,"ID":125,"Name":"Szczęƛliwi Gracze","Tag":"SG","NumMembers":4,"NumVillages":6,"Points":33298,"AllPoints":33298,"Rank":85,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=125","BestRank":85,"BestRankAt":"2023-02-26T08:03:28.379435Z","MostPoints":33298,"MostPointsAt":"2023-02-26T08:03:28.379436Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379435Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":111,"ScoreAtt":82762,"RankDef":58,"ScoreDef":3053157,"RankSup":0,"ScoreSup":0,"RankTotal":65,"ScoreTotal":3202656,"ID":129,"Name":"PREM","Tag":"Punkty","NumMembers":5,"NumVillages":19,"Points":24356,"AllPoints":24356,"Rank":93,"Dominance":0.03327087747561595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=129","BestRank":93,"BestRankAt":"2023-02-26T08:03:28.379436Z","MostPoints":24356,"MostPointsAt":"2023-02-26T08:03:28.379436Z","MostVillages":19,"MostVillagesAt":"2023-02-26T08:03:28.379436Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":62,"ScoreAtt":397211,"RankDef":102,"ScoreDef":788292,"RankSup":0,"ScoreSup":0,"RankTotal":96,"ScoreTotal":1224123,"ID":134,"Name":"DarNocy","Tag":"DN","NumMembers":1,"NumVillages":5,"Points":31077,"AllPoints":31077,"Rank":87,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=134","BestRank":87,"BestRankAt":"2023-02-26T08:03:28.379436Z","MostPoints":31077,"MostPointsAt":"2023-02-26T08:03:28.379437Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379436Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":112,"ScoreAtt":80447,"RankDef":74,"ScoreDef":1947811,"RankSup":0,"ScoreSup":0,"RankTotal":81,"ScoreTotal":2028269,"ID":147,"Name":"Bandycka Elita NiskorosƂych","Tag":"BENIS","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":260,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=147","BestRank":260,"BestRankAt":"2023-02-26T08:03:28.379437Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379437Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379437Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":61,"ScoreAtt":415697,"RankDef":46,"ScoreDef":4950615,"RankSup":0,"ScoreSup":0,"RankTotal":49,"ScoreTotal":6305119,"ID":157,"Name":"Domino","Tag":"Dom","NumMembers":35,"NumVillages":181,"Points":916826,"AllPoints":916826,"Rank":25,"Dominance":0.31694888542560457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=157","BestRank":25,"BestRankAt":"2023-02-26T08:03:28.379437Z","MostPoints":916826,"MostPointsAt":"2023-02-26T08:03:28.379438Z","MostVillages":181,"MostVillagesAt":"2023-02-26T08:03:28.379437Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":225,"ScoreDef":7890,"RankSup":0,"ScoreSup":0,"RankTotal":236,"ScoreTotal":7890,"ID":159,"Name":"Oggr","Tag":"Ogg","NumMembers":1,"NumVillages":0,"Points":524,"AllPoints":524,"Rank":214,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=159","BestRank":214,"BestRankAt":"2023-02-26T08:03:28.379438Z","MostPoints":524,"MostPointsAt":"2023-02-26T08:03:28.379438Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379438Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":152,"ScoreAtt":16504,"RankDef":159,"ScoreDef":141720,"RankSup":0,"ScoreSup":0,"RankTotal":167,"ScoreTotal":158224,"ID":176,"Name":"Albanski Raj","Tag":"AR","NumMembers":2,"NumVillages":6,"Points":42024,"AllPoints":42024,"Rank":78,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=176","BestRank":78,"BestRankAt":"2023-02-26T08:03:28.379438Z","MostPoints":42024,"MostPointsAt":"2023-02-26T08:03:28.379439Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379438Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":166,"ScoreAtt":7378,"RankDef":130,"ScoreDef":370427,"RankSup":0,"ScoreSup":0,"RankTotal":140,"ScoreTotal":377805,"ID":185,"Name":"NISZCZYCIELE","Tag":"|N|","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":261,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=185","BestRank":261,"BestRankAt":"2023-02-26T08:03:28.379439Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379439Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379439Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":245,"ScoreDef":1367,"RankSup":0,"ScoreSup":0,"RankTotal":251,"ScoreTotal":1367,"ID":187,"Name":"Champions League","Tag":"-ChL-","NumMembers":1,"NumVillages":0,"Points":347,"AllPoints":347,"Rank":220,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=187","BestRank":220,"BestRankAt":"2023-02-26T08:03:28.379439Z","MostPoints":347,"MostPointsAt":"2023-02-26T08:03:28.37944Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37944Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":31,"ScoreAtt":2607720,"RankDef":16,"ScoreDef":29684725,"RankSup":0,"ScoreSup":0,"RankTotal":20,"ScoreTotal":38560907,"ID":194,"Name":"Vis Maior","Tag":"VS","NumMembers":17,"NumVillages":150,"Points":820208,"AllPoints":820208,"Rank":26,"Dominance":0.26266482217591536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=194","BestRank":26,"BestRankAt":"2023-02-26T08:03:28.37944Z","MostPoints":820208,"MostPointsAt":"2023-02-26T08:03:28.37944Z","MostVillages":150,"MostVillagesAt":"2023-02-26T08:03:28.37944Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":208,"ScoreAtt":30,"RankDef":210,"ScoreDef":23556,"RankSup":0,"ScoreSup":0,"RankTotal":224,"ScoreTotal":23586,"ID":200,"Name":"Takie tam","Tag":"Ttm.","NumMembers":1,"NumVillages":0,"Points":531,"AllPoints":531,"Rank":213,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=200","BestRank":213,"BestRankAt":"2023-02-26T08:03:28.37944Z","MostPoints":531,"MostPointsAt":"2023-02-26T08:03:28.379441Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379441Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":142,"ScoreDef":242627,"RankSup":0,"ScoreSup":0,"RankTotal":151,"ScoreTotal":242627,"ID":206,"Name":"Pppp","Tag":"P..p","NumMembers":1,"NumVillages":0,"Points":551,"AllPoints":551,"Rank":211,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=206","BestRank":211,"BestRankAt":"2023-02-26T08:03:28.379441Z","MostPoints":551,"MostPointsAt":"2023-02-26T08:03:28.379441Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379441Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":83,"ScoreAtt":178718,"RankDef":53,"ScoreDef":3465436,"RankSup":0,"ScoreSup":0,"RankTotal":59,"ScoreTotal":3759711,"ID":210,"Name":"NoPon","Tag":"N-P","NumMembers":47,"NumVillages":68,"Points":204493,"AllPoints":205215,"Rank":47,"Dominance":0.11907471938641498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=210","BestRank":47,"BestRankAt":"2023-02-26T08:03:28.379441Z","MostPoints":205215,"MostPointsAt":"2023-02-26T08:03:28.379442Z","MostVillages":68,"MostVillagesAt":"2023-02-26T08:03:28.379441Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":71,"ScoreAtt":257208,"RankDef":67,"ScoreDef":2411001,"RankSup":0,"ScoreSup":0,"RankTotal":69,"ScoreTotal":2893518,"ID":211,"Name":"*Potrzymaj mi Piwo","Tag":"*PmP","NumMembers":2,"NumVillages":5,"Points":18106,"AllPoints":18106,"Rank":106,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=211","BestRank":106,"BestRankAt":"2023-02-26T08:03:28.379445Z","MostPoints":18106,"MostPointsAt":"2023-02-26T08:03:28.379445Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379445Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":127,"ScoreAtt":41521,"RankDef":101,"ScoreDef":791197,"RankSup":0,"ScoreSup":0,"RankTotal":102,"ScoreTotal":993608,"ID":214,"Name":"Armia Bosmana","Tag":"BOSMAN","NumMembers":3,"NumVillages":3,"Points":4230,"AllPoints":4230,"Rank":159,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=214","BestRank":159,"BestRankAt":"2023-02-26T08:03:28.379446Z","MostPoints":4230,"MostPointsAt":"2023-02-26T08:03:28.379446Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379446Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":211,"ScoreAtt":12,"RankDef":216,"ScoreDef":17866,"RankSup":0,"ScoreSup":0,"RankTotal":213,"ScoreTotal":32443,"ID":216,"Name":"Plemie Igora","Tag":"P.L.I","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":262,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=216","BestRank":262,"BestRankAt":"2023-02-26T08:03:28.379446Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379446Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379446Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":161,"ScoreAtt":8278,"RankDef":113,"ScoreDef":600370,"RankSup":0,"ScoreSup":0,"RankTotal":121,"ScoreTotal":630577,"ID":220,"Name":"Amatorzy Kiszonych OgĂłrkĂłw","Tag":"ALKO","NumMembers":3,"NumVillages":3,"Points":2264,"AllPoints":2264,"Rank":179,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=220","BestRank":179,"BestRankAt":"2023-02-26T08:03:28.379447Z","MostPoints":2264,"MostPointsAt":"2023-02-26T08:03:28.379447Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379447Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":65,"ScoreAtt":362768,"RankDef":62,"ScoreDef":2733729,"RankSup":0,"ScoreSup":0,"RankTotal":66,"ScoreTotal":3097023,"ID":234,"Name":"Pepeki123","Tag":"pepek","NumMembers":24,"NumVillages":27,"Points":81264,"AllPoints":81264,"Rank":57,"Dominance":0.04727966799166477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=234","BestRank":57,"BestRankAt":"2023-02-26T08:03:28.379447Z","MostPoints":81264,"MostPointsAt":"2023-02-26T08:03:28.379447Z","MostVillages":27,"MostVillagesAt":"2023-02-26T08:03:28.379447Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":202,"ScoreAtt":52,"RankDef":172,"ScoreDef":91650,"RankSup":0,"ScoreSup":0,"RankTotal":182,"ScoreTotal":91702,"ID":236,"Name":"Nakręcane Myszy","Tag":"NM","NumMembers":1,"NumVillages":0,"Points":262,"AllPoints":262,"Rank":226,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=236","BestRank":226,"BestRankAt":"2023-02-26T08:03:28.379448Z","MostPoints":262,"MostPointsAt":"2023-02-26T08:03:28.379448Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379448Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":201,"ScoreDef":34460,"RankSup":0,"ScoreSup":0,"RankTotal":210,"ScoreTotal":34460,"ID":255,"Name":"-QED-","Tag":"QED","NumMembers":1,"NumVillages":3,"Points":22893,"AllPoints":22893,"Rank":96,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=255","BestRank":96,"BestRankAt":"2023-02-26T08:03:28.379448Z","MostPoints":22893,"MostPointsAt":"2023-02-26T08:03:28.379448Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379448Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":33,"ScoreAtt":2264454,"RankDef":60,"ScoreDef":2894965,"RankSup":0,"ScoreSup":0,"RankTotal":50,"ScoreTotal":6123731,"ID":256,"Name":"GET this osada","Tag":"GETTO","NumMembers":1,"NumVillages":1,"Points":2552,"AllPoints":2552,"Rank":174,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=256","BestRank":174,"BestRankAt":"2023-02-26T08:03:28.379449Z","MostPoints":2552,"MostPointsAt":"2023-02-26T08:03:28.379449Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379449Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":156,"ScoreAtt":10522,"RankDef":174,"ScoreDef":90324,"RankSup":0,"ScoreSup":0,"RankTotal":178,"ScoreTotal":100851,"ID":260,"Name":"BƂękitna Planeta","Tag":"*BP*","NumMembers":1,"NumVillages":0,"Points":5708,"AllPoints":5708,"Rank":149,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=260","BestRank":149,"BestRankAt":"2023-02-26T08:03:28.379449Z","MostPoints":5708,"MostPointsAt":"2023-02-26T08:03:28.379449Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379449Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":168,"ScoreDef":109440,"RankSup":0,"ScoreSup":0,"RankTotal":170,"ScoreTotal":140209,"ID":281,"Name":"Liga Mistrzow","Tag":"LM","NumMembers":1,"NumVillages":3,"Points":5950,"AllPoints":5950,"Rank":147,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=281","BestRank":147,"BestRankAt":"2023-02-26T08:03:28.37945Z","MostPoints":5950,"MostPointsAt":"2023-02-26T08:03:28.37945Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37945Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":91,"ScoreAtt":150587,"RankDef":86,"ScoreDef":1306890,"RankSup":0,"ScoreSup":0,"RankTotal":87,"ScoreTotal":1515968,"ID":285,"Name":"Kompletnie Bezsensowne Plemię xD","Tag":"KBS","NumMembers":17,"NumVillages":51,"Points":211326,"AllPoints":211326,"Rank":46,"Dominance":0.08930603953981124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=285","BestRank":46,"BestRankAt":"2023-02-26T08:03:28.37945Z","MostPoints":211326,"MostPointsAt":"2023-02-26T08:03:28.37945Z","MostVillages":51,"MostVillagesAt":"2023-02-26T08:03:28.37945Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":174,"ScoreAtt":4521,"RankDef":227,"ScoreDef":7145,"RankSup":0,"ScoreSup":0,"RankTotal":232,"ScoreTotal":11666,"ID":287,"Name":"fififi","Tag":"fi","NumMembers":1,"NumVillages":3,"Points":10461,"AllPoints":10461,"Rank":123,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=287","BestRank":123,"BestRankAt":"2023-02-26T08:03:28.379451Z","MostPoints":10461,"MostPointsAt":"2023-02-26T08:03:28.379451Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379451Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":248,"ScoreDef":539,"RankSup":0,"ScoreSup":0,"RankTotal":253,"ScoreTotal":539,"ID":290,"Name":"Komercja Plemionn","Tag":"K - P","NumMembers":1,"NumVillages":0,"Points":197,"AllPoints":197,"Rank":233,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=290","BestRank":233,"BestRankAt":"2023-02-26T08:03:28.379451Z","MostPoints":197,"MostPointsAt":"2023-02-26T08:03:28.379451Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379451Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":9,"ScoreAtt":36875586,"RankDef":21,"ScoreDef":19185870,"RankSup":0,"ScoreSup":0,"RankTotal":17,"ScoreTotal":62760850,"ID":291,"Name":"MotoMyszy?","Tag":".Mzm.","NumMembers":47,"NumVillages":2593,"Points":19704268,"AllPoints":20286906,"Rank":8,"Dominance":4.540599226014324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=291","BestRank":8,"BestRankAt":"2023-02-26T08:03:28.379452Z","MostPoints":20286906,"MostPointsAt":"2023-02-26T08:03:28.379452Z","MostVillages":2593,"MostVillagesAt":"2023-02-26T08:03:28.379452Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":11,"ScoreAtt":26806801,"RankDef":38,"ScoreDef":6194947,"RankSup":0,"ScoreSup":0,"RankTotal":18,"ScoreTotal":53752856,"ID":301,"Name":"Psycho szczury","Tag":"MzM..","NumMembers":37,"NumVillages":1866,"Points":14094868,"AllPoints":14094868,"Rank":9,"Dominance":3.2675503878683876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=301","BestRank":9,"BestRankAt":"2023-02-26T08:03:28.379452Z","MostPoints":14094868,"MostPointsAt":"2023-02-26T08:03:28.379453Z","MostVillages":1866,"MostVillagesAt":"2023-02-26T08:03:28.379453Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":148,"ScoreAtt":19292,"RankDef":154,"ScoreDef":178401,"RankSup":0,"ScoreSup":0,"RankTotal":158,"ScoreTotal":198650,"ID":305,"Name":"Pro Sto","Tag":"Pro","NumMembers":1,"NumVillages":1,"Points":7425,"AllPoints":7425,"Rank":136,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=305","BestRank":136,"BestRankAt":"2023-02-26T08:03:28.379457Z","MostPoints":7425,"MostPointsAt":"2023-02-26T08:03:28.379457Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379457Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":10,"ScoreAtt":36138019,"RankDef":30,"ScoreDef":8632397,"RankSup":0,"ScoreSup":0,"RankTotal":16,"ScoreTotal":65055844,"ID":309,"Name":"Konfederacja Y","Tag":"CSA-Y","NumMembers":18,"NumVillages":1088,"Points":9174264,"AllPoints":9174264,"Rank":11,"Dominance":1.9051955101826397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=309","BestRank":11,"BestRankAt":"2023-02-26T08:03:28.379458Z","MostPoints":9174264,"MostPointsAt":"2023-02-26T08:03:28.379458Z","MostVillages":1088,"MostVillagesAt":"2023-02-26T08:03:28.379458Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":153,"ScoreDef":182517,"RankSup":0,"ScoreSup":0,"RankTotal":164,"ScoreTotal":182517,"ID":317,"Name":"Szalone NiedĆșwiedzie","Tag":"Miƛki","NumMembers":1,"NumVillages":0,"Points":4609,"AllPoints":4609,"Rank":157,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=317","BestRank":157,"BestRankAt":"2023-02-26T08:03:28.379458Z","MostPoints":4609,"MostPointsAt":"2023-02-26T08:03:28.379458Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379458Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":118,"ScoreAtt":67239,"RankDef":110,"ScoreDef":638904,"RankSup":0,"ScoreSup":0,"RankTotal":116,"ScoreTotal":708504,"ID":319,"Name":"PAKT","Tag":"PAKT","NumMembers":2,"NumVillages":2,"Points":6188,"AllPoints":6188,"Rank":145,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=319","BestRank":145,"BestRankAt":"2023-02-26T08:03:28.379459Z","MostPoints":6188,"MostPointsAt":"2023-02-26T08:03:28.379459Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379459Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":178,"ScoreAtt":3986,"RankDef":141,"ScoreDef":263066,"RankSup":0,"ScoreSup":0,"RankTotal":148,"ScoreTotal":267052,"ID":336,"Name":"hkgj","Tag":"kw","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":263,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=336","BestRank":263,"BestRankAt":"2023-02-26T08:03:28.37946Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.37946Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37946Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":233,"ScoreDef":5459,"RankSup":0,"ScoreSup":0,"RankTotal":242,"ScoreTotal":5459,"ID":339,"Name":"ZARZEW","Tag":"ZRW","NumMembers":1,"NumVillages":0,"Points":2775,"AllPoints":2775,"Rank":170,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=339","BestRank":170,"BestRankAt":"2023-02-26T08:03:28.37946Z","MostPoints":2775,"MostPointsAt":"2023-02-26T08:03:28.37946Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37946Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":104,"ScoreDef":760905,"RankSup":0,"ScoreSup":0,"RankTotal":113,"ScoreTotal":760905,"ID":355,"Name":"uuuuuuuuuuuuuuu","Tag":"uuu","NumMembers":1,"NumVillages":0,"Points":3988,"AllPoints":3988,"Rank":160,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=355","BestRank":160,"BestRankAt":"2023-02-26T08:03:28.379461Z","MostPoints":3988,"MostPointsAt":"2023-02-26T08:03:28.379461Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379461Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":189,"ScoreDef":52241,"RankSup":0,"ScoreSup":0,"RankTotal":200,"ScoreTotal":52241,"ID":365,"Name":"GIEƁDA","Tag":"GA","NumMembers":1,"NumVillages":0,"Points":8318,"AllPoints":8318,"Rank":131,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=365","BestRank":131,"BestRankAt":"2023-02-26T08:03:28.379461Z","MostPoints":8318,"MostPointsAt":"2023-02-26T08:03:28.379462Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379462Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":7,"ScoreAtt":58830293,"RankDef":13,"ScoreDef":38986612,"RankSup":0,"ScoreSup":0,"RankTotal":5,"ScoreTotal":176482721,"ID":369,"Name":"0rkowi Zawodnicy Dominują Rybki","Tag":"0ZDR","NumMembers":36,"NumVillages":3043,"Points":26198197,"AllPoints":26198197,"Rank":7,"Dominance":5.3285936925420705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=369","BestRank":7,"BestRankAt":"2023-02-26T08:03:28.379462Z","MostPoints":26198197,"MostPointsAt":"2023-02-26T08:03:28.379462Z","MostVillages":3043,"MostVillagesAt":"2023-02-26T08:03:28.379462Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":128,"ScoreAtt":40352,"RankDef":108,"ScoreDef":670466,"RankSup":0,"ScoreSup":0,"RankTotal":115,"ScoreTotal":711036,"ID":373,"Name":"Gildia Kupiecka","Tag":"GK","NumMembers":2,"NumVillages":3,"Points":13805,"AllPoints":13805,"Rank":115,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=373","BestRank":115,"BestRankAt":"2023-02-26T08:03:28.379463Z","MostPoints":13805,"MostPointsAt":"2023-02-26T08:03:28.379463Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379463Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":200,"ScoreAtt":99,"RankDef":186,"ScoreDef":54720,"RankSup":0,"ScoreSup":0,"RankTotal":197,"ScoreTotal":54819,"ID":374,"Name":"xyz.","Tag":"xyz.","NumMembers":1,"NumVillages":0,"Points":901,"AllPoints":901,"Rank":199,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=374","BestRank":199,"BestRankAt":"2023-02-26T08:03:28.379463Z","MostPoints":901,"MostPointsAt":"2023-02-26T08:03:28.379464Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379463Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":84,"ScoreAtt":174378,"RankDef":89,"ScoreDef":1195885,"RankSup":0,"ScoreSup":0,"RankTotal":89,"ScoreTotal":1379428,"ID":375,"Name":"PePeKi PP.PP","Tag":"PKTPP","NumMembers":18,"NumVillages":16,"Points":38947,"AllPoints":38947,"Rank":80,"Dominance":0.02801758103209764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=375","BestRank":80,"BestRankAt":"2023-02-26T08:03:28.379464Z","MostPoints":38947,"MostPointsAt":"2023-02-26T08:03:28.379464Z","MostVillages":16,"MostVillagesAt":"2023-02-26T08:03:28.379464Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":67,"ScoreAtt":331213,"RankDef":47,"ScoreDef":4922975,"RankSup":0,"ScoreSup":0,"RankTotal":52,"ScoreTotal":5347117,"ID":377,"Name":"AKADEMIA WD","Tag":"AWD","NumMembers":24,"NumVillages":26,"Points":56124,"AllPoints":56124,"Rank":68,"Dominance":0.04552856917715867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=377","BestRank":68,"BestRankAt":"2023-02-26T08:03:28.379464Z","MostPoints":56124,"MostPointsAt":"2023-02-26T08:03:28.379465Z","MostVillages":26,"MostVillagesAt":"2023-02-26T08:03:28.379465Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":196,"ScoreAtt":291,"RankDef":132,"ScoreDef":358375,"RankSup":0,"ScoreSup":0,"RankTotal":143,"ScoreTotal":358666,"ID":382,"Name":"HANDEL","Tag":"HANDEL","NumMembers":1,"NumVillages":1,"Points":2203,"AllPoints":2203,"Rank":180,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=382","BestRank":180,"BestRankAt":"2023-02-26T08:03:28.379465Z","MostPoints":2203,"MostPointsAt":"2023-02-26T08:03:28.379465Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379465Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":90,"ScoreAtt":153097,"RankDef":82,"ScoreDef":1615856,"RankSup":0,"ScoreSup":0,"RankTotal":86,"ScoreTotal":1780581,"ID":385,"Name":"BiaƂa Armia","Tag":"B.A","NumMembers":5,"NumVillages":17,"Points":80171,"AllPoints":80171,"Rank":58,"Dominance":0.029768679846603745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=385","BestRank":58,"BestRankAt":"2023-02-26T08:03:28.379466Z","MostPoints":80171,"MostPointsAt":"2023-02-26T08:03:28.379466Z","MostVillages":17,"MostVillagesAt":"2023-02-26T08:03:28.379466Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":200,"ScoreDef":36806,"RankSup":0,"ScoreSup":0,"RankTotal":208,"ScoreTotal":36806,"ID":397,"Name":"Emka","Tag":"E.M.","NumMembers":1,"NumVillages":1,"Points":1170,"AllPoints":1170,"Rank":194,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=397","BestRank":194,"BestRankAt":"2023-02-26T08:03:28.379471Z","MostPoints":1170,"MostPointsAt":"2023-02-26T08:03:28.379471Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379471Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":52,"ScoreAtt":642975,"RankDef":41,"ScoreDef":5899052,"RankSup":0,"ScoreSup":0,"RankTotal":46,"ScoreTotal":6846095,"ID":412,"Name":"BOMBA","Tag":"BOMBA","NumMembers":22,"NumVillages":107,"Points":396978,"AllPoints":396978,"Rank":35,"Dominance":0.18736757315215297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=412","BestRank":35,"BestRankAt":"2023-02-26T08:03:28.379471Z","MostPoints":396978,"MostPointsAt":"2023-02-26T08:03:28.379471Z","MostVillages":107,"MostVillagesAt":"2023-02-26T08:03:28.379471Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":145,"ScoreDef":215538,"RankSup":0,"ScoreSup":0,"RankTotal":156,"ScoreTotal":215538,"ID":413,"Name":"Giht","Tag":"Hggf","NumMembers":1,"NumVillages":1,"Points":1374,"AllPoints":1374,"Rank":189,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=413","BestRank":189,"BestRankAt":"2023-02-26T08:03:28.379472Z","MostPoints":1374,"MostPointsAt":"2023-02-26T08:03:28.379472Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379472Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":222,"ScoreDef":10061,"RankSup":0,"ScoreSup":0,"RankTotal":234,"ScoreTotal":10061,"ID":415,"Name":".:xxx:.","Tag":"xxxx","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":249,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=415","BestRank":249,"BestRankAt":"2023-02-26T08:03:28.379472Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379472Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379472Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":151,"ScoreDef":184774,"RankSup":0,"ScoreSup":0,"RankTotal":163,"ScoreTotal":184774,"ID":429,"Name":"Zabi Staw","Tag":"Z-S","NumMembers":1,"NumVillages":0,"Points":812,"AllPoints":812,"Rank":200,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=429","BestRank":200,"BestRankAt":"2023-02-26T08:03:28.379473Z","MostPoints":812,"MostPointsAt":"2023-02-26T08:03:28.379473Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379473Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":32,"ScoreAtt":2549096,"RankDef":24,"ScoreDef":16198878,"RankSup":0,"ScoreSup":0,"RankTotal":27,"ScoreTotal":19841316,"ID":430,"Name":"**Wojna Idei**","Tag":"**WD**","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":264,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=430","BestRank":264,"BestRankAt":"2023-02-26T08:03:28.379473Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379473Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379473Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":24,"ScoreAtt":5051794,"RankDef":71,"ScoreDef":2040203,"RankSup":0,"ScoreSup":0,"RankTotal":40,"ScoreTotal":7641920,"ID":432,"Name":"McOpole","Tag":"McOpo","NumMembers":21,"NumVillages":210,"Points":1249639,"AllPoints":1249639,"Rank":21,"Dominance":0.36773075104628156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=432","BestRank":21,"BestRankAt":"2023-02-26T08:03:28.379474Z","MostPoints":1249639,"MostPointsAt":"2023-02-26T08:03:28.379474Z","MostVillages":210,"MostVillagesAt":"2023-02-26T08:03:28.379474Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":147,"ScoreAtt":20699,"RankDef":158,"ScoreDef":162816,"RankSup":0,"ScoreSup":0,"RankTotal":159,"ScoreTotal":197777,"ID":435,"Name":"ave sieci","Tag":"sieci","NumMembers":1,"NumVillages":1,"Points":4441,"AllPoints":4441,"Rank":158,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=435","BestRank":158,"BestRankAt":"2023-02-26T08:03:28.379474Z","MostPoints":4441,"MostPointsAt":"2023-02-26T08:03:28.379474Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379474Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":55,"ScoreAtt":579188,"RankDef":37,"ScoreDef":6276638,"RankSup":0,"ScoreSup":0,"RankTotal":44,"ScoreTotal":7023533,"ID":441,"Name":"Project D!","Tag":"PD!","NumMembers":23,"NumVillages":43,"Points":96866,"AllPoints":96866,"Rank":55,"Dominance":0.07529724902376242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=441","BestRank":55,"BestRankAt":"2023-02-26T08:03:28.379475Z","MostPoints":96866,"MostPointsAt":"2023-02-26T08:03:28.379475Z","MostVillages":43,"MostVillagesAt":"2023-02-26T08:03:28.379475Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":190,"ScoreAtt":1031,"RankDef":175,"ScoreDef":82553,"RankSup":0,"ScoreSup":0,"RankTotal":183,"ScoreTotal":83584,"ID":443,"Name":"PEAKY BLINDERS","Tag":"PB","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":265,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=443","BestRank":265,"BestRankAt":"2023-02-26T08:03:28.379475Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379475Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379475Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":150,"ScoreDef":188672,"RankSup":0,"ScoreSup":0,"RankTotal":161,"ScoreTotal":188672,"ID":451,"Name":"AVE (M)","Tag":"AVE(M)","NumMembers":1,"NumVillages":0,"Points":169,"AllPoints":169,"Rank":236,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=451","BestRank":236,"BestRankAt":"2023-02-26T08:03:28.379476Z","MostPoints":169,"MostPointsAt":"2023-02-26T08:03:28.379476Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379476Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":48,"ScoreAtt":725489,"RankDef":32,"ScoreDef":7720010,"RankSup":0,"ScoreSup":0,"RankTotal":38,"ScoreTotal":9512471,"ID":452,"Name":"ObroƄcy Krasnali Ogroduwych","Tag":"OKO","NumMembers":47,"NumVillages":108,"Points":386827,"AllPoints":388034,"Rank":36,"Dominance":0.18911867196665907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=452","BestRank":36,"BestRankAt":"2023-02-26T08:03:28.379476Z","MostPoints":388034,"MostPointsAt":"2023-02-26T08:03:28.379476Z","MostVillages":108,"MostVillagesAt":"2023-02-26T08:03:28.379476Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":204,"ScoreDef":28931,"RankSup":0,"ScoreSup":0,"RankTotal":218,"ScoreTotal":28931,"ID":474,"Name":"zagubiony natanek","Tag":"wul","NumMembers":1,"NumVillages":0,"Points":536,"AllPoints":536,"Rank":212,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=474","BestRank":212,"BestRankAt":"2023-02-26T08:03:28.379477Z","MostPoints":536,"MostPointsAt":"2023-02-26T08:03:28.379477Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379477Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":138,"ScoreAtt":30918,"RankDef":87,"ScoreDef":1224347,"RankSup":0,"ScoreSup":0,"RankTotal":94,"ScoreTotal":1255265,"ID":475,"Name":"Zbieracze Punktow Premium","Tag":"Z*P*P","NumMembers":2,"NumVillages":2,"Points":9300,"AllPoints":9300,"Rank":129,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=475","BestRank":129,"BestRankAt":"2023-02-26T08:03:28.379477Z","MostPoints":9300,"MostPointsAt":"2023-02-26T08:03:28.379477Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379477Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":183,"ScoreAtt":2275,"RankDef":234,"ScoreDef":5219,"RankSup":0,"ScoreSup":0,"RankTotal":238,"ScoreTotal":7494,"ID":503,"Name":"TMPL","Tag":"TMP","NumMembers":1,"NumVillages":1,"Points":2332,"AllPoints":2332,"Rank":178,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=503","BestRank":178,"BestRankAt":"2023-02-26T08:03:28.379477Z","MostPoints":2332,"MostPointsAt":"2023-02-26T08:03:28.379478Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379478Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":172,"ScoreAtt":4826,"RankDef":64,"ScoreDef":2609213,"RankSup":0,"ScoreSup":0,"RankTotal":71,"ScoreTotal":2615421,"ID":517,"Name":"MĂłj Dom","Tag":"= MD =","NumMembers":2,"NumVillages":1,"Points":1174,"AllPoints":1174,"Rank":193,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=517","BestRank":193,"BestRankAt":"2023-02-26T08:03:28.379481Z","MostPoints":1174,"MostPointsAt":"2023-02-26T08:03:28.379481Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379481Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":96,"ScoreAtt":137000,"RankDef":137,"ScoreDef":313250,"RankSup":0,"ScoreSup":0,"RankTotal":135,"ScoreTotal":454684,"ID":520,"Name":"ESSA","Tag":"ESSA","NumMembers":2,"NumVillages":6,"Points":25153,"AllPoints":25153,"Rank":92,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=520","BestRank":92,"BestRankAt":"2023-02-26T08:03:28.379481Z","MostPoints":25153,"MostPointsAt":"2023-02-26T08:03:28.379482Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379482Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":176,"ScoreAtt":4107,"RankDef":126,"ScoreDef":432982,"RankSup":0,"ScoreSup":0,"RankTotal":137,"ScoreTotal":437089,"ID":523,"Name":"Wiocha","Tag":"Yuby","NumMembers":1,"NumVillages":0,"Points":261,"AllPoints":261,"Rank":227,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=523","BestRank":227,"BestRankAt":"2023-02-26T08:03:28.379482Z","MostPoints":261,"MostPointsAt":"2023-02-26T08:03:28.379482Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379482Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":35,"ScoreAtt":2097153,"RankDef":48,"ScoreDef":4265938,"RankSup":0,"ScoreSup":0,"RankTotal":42,"ScoreTotal":7268867,"ID":546,"Name":"WOJNA IDEI","Tag":"WD","NumMembers":1,"NumVillages":1,"Points":50,"AllPoints":50,"Rank":248,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=546","BestRank":248,"BestRankAt":"2023-02-26T08:03:28.379482Z","MostPoints":50,"MostPointsAt":"2023-02-26T08:03:28.379483Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379483Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":41,"ScoreAtt":1309325,"RankDef":49,"ScoreDef":4231284,"RankSup":0,"ScoreSup":0,"RankTotal":41,"ScoreTotal":7387675,"ID":548,"Name":"Co Chcesz?","Tag":"CO","NumMembers":1,"NumVillages":1,"Points":317,"AllPoints":317,"Rank":223,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=548","BestRank":223,"BestRankAt":"2023-02-26T08:03:28.379483Z","MostPoints":317,"MostPointsAt":"2023-02-26T08:03:28.379483Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379483Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":207,"ScoreAtt":32,"RankDef":135,"ScoreDef":322767,"RankSup":0,"ScoreSup":0,"RankTotal":146,"ScoreTotal":322799,"ID":554,"Name":"=premium=","Tag":"pp.","NumMembers":3,"NumVillages":2,"Points":4768,"AllPoints":4768,"Rank":155,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=554","BestRank":155,"BestRankAt":"2023-02-26T08:03:28.379483Z","MostPoints":4768,"MostPointsAt":"2023-02-26T08:03:28.379484Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379484Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":188,"ScoreAtt":1239,"RankDef":205,"ScoreDef":28691,"RankSup":0,"ScoreSup":0,"RankTotal":217,"ScoreTotal":29930,"ID":557,"Name":"WYROLOWANI","Tag":"WYROL","NumMembers":1,"NumVillages":5,"Points":39506,"AllPoints":39506,"Rank":79,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=557","BestRank":79,"BestRankAt":"2023-02-26T08:03:28.379484Z","MostPoints":39506,"MostPointsAt":"2023-02-26T08:03:28.379484Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379484Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":37,"ScoreAtt":1766507,"RankDef":28,"ScoreDef":11702793,"RankSup":0,"ScoreSup":0,"RankTotal":29,"ScoreTotal":16158300,"ID":594,"Name":"T E R Y T O R I U M","Tag":"]T[","NumMembers":4,"NumVillages":4,"Points":13494,"AllPoints":13494,"Rank":117,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=594","BestRank":117,"BestRankAt":"2023-02-26T08:03:28.379484Z","MostPoints":13494,"MostPointsAt":"2023-02-26T08:03:28.379485Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379485Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":160,"ScoreAtt":8289,"RankDef":162,"ScoreDef":131188,"RankSup":0,"ScoreSup":0,"RankTotal":172,"ScoreTotal":139493,"ID":597,"Name":"Bractwo KrzyĆŒowe","Tag":"+BK+","NumMembers":2,"NumVillages":1,"Points":7686,"AllPoints":7686,"Rank":134,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=597","BestRank":134,"BestRankAt":"2023-02-26T08:03:28.379485Z","MostPoints":7686,"MostPointsAt":"2023-02-26T08:03:28.379485Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379485Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":74,"ScoreAtt":222168,"RankDef":96,"ScoreDef":979477,"RankSup":0,"ScoreSup":0,"RankTotal":97,"ScoreTotal":1218207,"ID":607,"Name":"NAJEMNICY.","Tag":"N/M/Y","NumMembers":5,"NumVillages":22,"Points":95363,"AllPoints":95363,"Rank":56,"Dominance":0.03852417391913426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=607","BestRank":56,"BestRankAt":"2023-02-26T08:03:28.379485Z","MostPoints":95363,"MostPointsAt":"2023-02-26T08:03:28.379486Z","MostVillages":22,"MostVillagesAt":"2023-02-26T08:03:28.379486Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":181,"ScoreAtt":2475,"RankDef":152,"ScoreDef":182954,"RankSup":0,"ScoreSup":0,"RankTotal":162,"ScoreTotal":185431,"ID":624,"Name":"K35 DEMONY","Tag":"K35","NumMembers":1,"NumVillages":3,"Points":19050,"AllPoints":19050,"Rank":103,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=624","BestRank":103,"BestRankAt":"2023-02-26T08:03:28.379486Z","MostPoints":19050,"MostPointsAt":"2023-02-26T08:03:28.379486Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379486Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":179,"ScoreDef":66255,"RankSup":0,"ScoreSup":0,"RankTotal":193,"ScoreTotal":66255,"ID":625,"Name":"Wilki","Tag":"Wilki","NumMembers":1,"NumVillages":0,"Points":808,"AllPoints":808,"Rank":201,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=625","BestRank":201,"BestRankAt":"2023-02-26T08:03:28.379486Z","MostPoints":808,"MostPointsAt":"2023-02-26T08:03:28.379487Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379487Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":224,"ScoreDef":8121,"RankSup":0,"ScoreSup":0,"RankTotal":235,"ScoreTotal":8121,"ID":626,"Name":"Targowica","Tag":"Targ","NumMembers":1,"NumVillages":3,"Points":11099,"AllPoints":11099,"Rank":121,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=626","BestRank":121,"BestRankAt":"2023-02-26T08:03:28.379487Z","MostPoints":11099,"MostPointsAt":"2023-02-26T08:03:28.379487Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379487Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":123,"ScoreAtt":51266,"RankDef":144,"ScoreDef":218581,"RankSup":0,"ScoreSup":0,"RankTotal":147,"ScoreTotal":269847,"ID":633,"Name":"Wolny","Tag":"WS","NumMembers":1,"NumVillages":16,"Points":80047,"AllPoints":80047,"Rank":59,"Dominance":0.02801758103209764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=633","BestRank":59,"BestRankAt":"2023-02-26T08:03:28.379487Z","MostPoints":80047,"MostPointsAt":"2023-02-26T08:03:28.379488Z","MostVillages":16,"MostVillagesAt":"2023-02-26T08:03:28.379488Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":124,"ScoreAtt":48384,"RankDef":169,"ScoreDef":100606,"RankSup":0,"ScoreSup":0,"RankTotal":169,"ScoreTotal":149152,"ID":636,"Name":"Superpremium","Tag":"($)","NumMembers":5,"NumVillages":5,"Points":5381,"AllPoints":5381,"Rank":151,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=636","BestRank":151,"BestRankAt":"2023-02-26T08:03:28.379488Z","MostPoints":5381,"MostPointsAt":"2023-02-26T08:03:28.379488Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379488Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":113,"ScoreAtt":72783,"RankDef":97,"ScoreDef":893889,"RankSup":0,"ScoreSup":0,"RankTotal":104,"ScoreTotal":991269,"ID":647,"Name":"OwƂosione Rogale","Tag":"OwR","NumMembers":7,"NumVillages":11,"Points":36369,"AllPoints":36369,"Rank":82,"Dominance":0.01926208695956713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=647","BestRank":82,"BestRankAt":"2023-02-26T08:03:28.379491Z","MostPoints":36369,"MostPointsAt":"2023-02-26T08:03:28.379492Z","MostVillages":11,"MostVillagesAt":"2023-02-26T08:03:28.379492Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":97,"ScoreAtt":136651,"RankDef":93,"ScoreDef":1039357,"RankSup":0,"ScoreSup":0,"RankTotal":98,"ScoreTotal":1202644,"ID":651,"Name":"Semper Invicta","Tag":"Sempe","NumMembers":3,"NumVillages":4,"Points":11832,"AllPoints":11832,"Rank":120,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=651","BestRank":120,"BestRankAt":"2023-02-26T08:03:28.379492Z","MostPoints":11832,"MostPointsAt":"2023-02-26T08:03:28.379492Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379492Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":150,"ScoreAtt":18675,"RankDef":85,"ScoreDef":1352646,"RankSup":0,"ScoreSup":0,"RankTotal":90,"ScoreTotal":1371321,"ID":664,"Name":"Kal-Kol","Tag":"K L N","NumMembers":3,"NumVillages":2,"Points":7328,"AllPoints":7328,"Rank":138,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=664","BestRank":138,"BestRankAt":"2023-02-26T08:03:28.379492Z","MostPoints":7328,"MostPointsAt":"2023-02-26T08:03:28.379493Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379493Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":17,"ScoreAtt":8113232,"RankDef":11,"ScoreDef":48156459,"RankSup":0,"ScoreSup":0,"RankTotal":14,"ScoreTotal":67122577,"ID":666,"Name":"KOM0RNICY 2","Tag":"KOM2","NumMembers":27,"NumVillages":504,"Points":3631190,"AllPoints":3631190,"Rank":13,"Dominance":0.8825538025110756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=666","BestRank":13,"BestRankAt":"2023-02-26T08:03:28.379493Z","MostPoints":3631190,"MostPointsAt":"2023-02-26T08:03:28.379493Z","MostVillages":504,"MostVillagesAt":"2023-02-26T08:03:28.379493Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":120,"ScoreAtt":61938,"RankDef":112,"ScoreDef":602468,"RankSup":0,"ScoreSup":0,"RankTotal":118,"ScoreTotal":672292,"ID":686,"Name":"Semper Invicta.","Tag":"Semp.","NumMembers":3,"NumVillages":2,"Points":3169,"AllPoints":3169,"Rank":169,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=686","BestRank":169,"BestRankAt":"2023-02-26T08:03:28.379493Z","MostPoints":3169,"MostPointsAt":"2023-02-26T08:03:28.379494Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379493Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":161,"ScoreDef":135903,"RankSup":0,"ScoreSup":0,"RankTotal":174,"ScoreTotal":135903,"ID":689,"Name":"Gaƛnice PoĆŒarowe StraĆŒaka","Tag":"GPS!","NumMembers":1,"NumVillages":0,"Points":126,"AllPoints":126,"Rank":243,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=689","BestRank":243,"BestRankAt":"2023-02-26T08:03:28.379494Z","MostPoints":126,"MostPointsAt":"2023-02-26T08:03:28.379494Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379494Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":23,"ScoreAtt":5125520,"RankDef":34,"ScoreDef":7123124,"RankSup":0,"ScoreSup":0,"RankTotal":33,"ScoreTotal":13927849,"ID":693,"Name":"Why So Serious?","Tag":"Why","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":266,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=693","BestRank":266,"BestRankAt":"2023-02-26T08:03:28.379494Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379495Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379494Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":27,"ScoreAtt":3734858,"RankDef":20,"ScoreDef":22025239,"RankSup":0,"ScoreSup":0,"RankTotal":23,"ScoreTotal":28313016,"ID":722,"Name":"Bractwo Nocnych Polan","Tag":"BNP","NumMembers":30,"NumVillages":196,"Points":1067408,"AllPoints":1067408,"Rank":22,"Dominance":0.3432153676431961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=722","BestRank":22,"BestRankAt":"2023-02-26T08:03:28.379495Z","MostPoints":1067408,"MostPointsAt":"2023-02-26T08:03:28.379495Z","MostVillages":196,"MostVillagesAt":"2023-02-26T08:03:28.379495Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":237,"ScoreDef":4610,"RankSup":0,"ScoreSup":0,"RankTotal":246,"ScoreTotal":4610,"ID":723,"Name":"Raki nie boraki","Tag":"Rnb","NumMembers":1,"NumVillages":1,"Points":2750,"AllPoints":2750,"Rank":171,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=723","BestRank":171,"BestRankAt":"2023-02-26T08:03:28.379495Z","MostPoints":2750,"MostPointsAt":"2023-02-26T08:03:28.379496Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379495Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":95,"ScoreAtt":141728,"RankDef":133,"ScoreDef":328377,"RankSup":0,"ScoreSup":0,"RankTotal":129,"ScoreTotal":512496,"ID":733,"Name":"Kuzyni 2","Tag":"KUZYNA","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":250,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=733","BestRank":250,"BestRankAt":"2023-02-26T08:03:28.379496Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379496Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379496Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":107,"ScoreAtt":91301,"RankDef":106,"ScoreDef":735077,"RankSup":0,"ScoreSup":0,"RankTotal":108,"ScoreTotal":876738,"ID":750,"Name":"Moje OHV","Tag":"OHV","NumMembers":1,"NumVillages":0,"Points":249,"AllPoints":249,"Rank":228,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=750","BestRank":228,"BestRankAt":"2023-02-26T08:03:28.379496Z","MostPoints":249,"MostPointsAt":"2023-02-26T08:03:28.379497Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379496Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":77,"ScoreAtt":212637,"RankDef":95,"ScoreDef":1010984,"RankSup":0,"ScoreSup":0,"RankTotal":93,"ScoreTotal":1256466,"ID":758,"Name":"-300-","Tag":"-300-","NumMembers":5,"NumVillages":6,"Points":13695,"AllPoints":13695,"Rank":116,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=758","BestRank":116,"BestRankAt":"2023-02-26T08:03:28.379497Z","MostPoints":13695,"MostPointsAt":"2023-02-26T08:03:28.379497Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379497Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":130,"ScoreAtt":40018,"RankDef":136,"ScoreDef":322406,"RankSup":0,"ScoreSup":0,"RankTotal":141,"ScoreTotal":365059,"ID":766,"Name":"*Anonymous*","Tag":"*AMS*","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":267,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=766","BestRank":267,"BestRankAt":"2023-02-26T08:03:28.379497Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379498Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379497Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":154,"ScoreAtt":16261,"RankDef":70,"ScoreDef":2153298,"RankSup":0,"ScoreSup":0,"RankTotal":78,"ScoreTotal":2169593,"ID":778,"Name":"Imperium Polskie","Tag":"IP","NumMembers":12,"NumVillages":12,"Points":30040,"AllPoints":30040,"Rank":88,"Dominance":0.021013185774073233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=778","BestRank":88,"BestRankAt":"2023-02-26T08:03:28.379498Z","MostPoints":30040,"MostPointsAt":"2023-02-26T08:03:28.379498Z","MostVillages":12,"MostVillagesAt":"2023-02-26T08:03:28.379498Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":15,"ScoreAtt":8726932,"RankDef":7,"ScoreDef":82715139,"RankSup":0,"ScoreSup":0,"RankTotal":10,"ScoreTotal":107610800,"ID":785,"Name":"KOMORNICY3","Tag":"KOM3","NumMembers":38,"NumVillages":737,"Points":5057759,"AllPoints":5057759,"Rank":12,"Dominance":1.2905598262909976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=785","BestRank":12,"BestRankAt":"2023-02-26T08:03:28.379498Z","MostPoints":5057759,"MostPointsAt":"2023-02-26T08:03:28.379499Z","MostVillages":737,"MostVillagesAt":"2023-02-26T08:03:28.379498Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":58,"ScoreAtt":492119,"RankDef":75,"ScoreDef":1933759,"RankSup":0,"ScoreSup":0,"RankTotal":63,"ScoreTotal":3554001,"ID":786,"Name":"JP2 2137","Tag":"21:37","NumMembers":7,"NumVillages":48,"Points":257077,"AllPoints":257077,"Rank":42,"Dominance":0.08405274309629293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=786","BestRank":42,"BestRankAt":"2023-02-26T08:03:28.379502Z","MostPoints":257077,"MostPointsAt":"2023-02-26T08:03:28.379502Z","MostVillages":48,"MostVillagesAt":"2023-02-26T08:03:28.379502Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":82,"ScoreAtt":187855,"RankDef":140,"ScoreDef":276830,"RankSup":0,"ScoreSup":0,"RankTotal":132,"ScoreTotal":476872,"ID":806,"Name":"Cesarstwo Zachodnio Rzymskie","Tag":"SPQR","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":251,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=806","BestRank":251,"BestRankAt":"2023-02-26T08:03:28.379502Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379503Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379503Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":156,"ScoreDef":171639,"RankSup":0,"ScoreSup":0,"RankTotal":165,"ScoreTotal":171639,"ID":809,"Name":"NOC3","Tag":"NOC3","NumMembers":1,"NumVillages":0,"Points":343,"AllPoints":343,"Rank":221,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=809","BestRank":221,"BestRankAt":"2023-02-26T08:03:28.379503Z","MostPoints":343,"MostPointsAt":"2023-02-26T08:03:28.379503Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379503Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":76,"ScoreAtt":214844,"RankDef":76,"ScoreDef":1928071,"RankSup":0,"ScoreSup":0,"RankTotal":77,"ScoreTotal":2340609,"ID":822,"Name":"*Gramy Dla Zabawy**","Tag":"*GDZ**","NumMembers":2,"NumVillages":10,"Points":42120,"AllPoints":42120,"Rank":77,"Dominance":0.017510988145061027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=822","BestRank":77,"BestRankAt":"2023-02-26T08:03:28.379503Z","MostPoints":42120,"MostPointsAt":"2023-02-26T08:03:28.379504Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:28.379504Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":20,"ScoreAtt":6182634,"RankDef":8,"ScoreDef":71201569,"RankSup":0,"ScoreSup":0,"RankTotal":12,"ScoreTotal":87500446,"ID":830,"Name":"Komornicy","Tag":"KOM1","NumMembers":3,"NumVillages":13,"Points":73615,"AllPoints":73615,"Rank":61,"Dominance":0.022764284588579334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=830","BestRank":61,"BestRankAt":"2023-02-26T08:03:28.379504Z","MostPoints":73615,"MostPointsAt":"2023-02-26T08:03:28.379504Z","MostVillages":13,"MostVillagesAt":"2023-02-26T08:03:28.379504Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":153,"ScoreAtt":16412,"RankDef":187,"ScoreDef":52998,"RankSup":0,"ScoreSup":0,"RankTotal":190,"ScoreTotal":69410,"ID":841,"Name":"PP Pan Dziobak","Tag":"PEPE","NumMembers":1,"NumVillages":1,"Points":771,"AllPoints":771,"Rank":203,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=841","BestRank":203,"BestRankAt":"2023-02-26T08:03:28.379504Z","MostPoints":771,"MostPointsAt":"2023-02-26T08:03:28.379505Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379504Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":73,"ScoreAtt":241905,"RankDef":69,"ScoreDef":2171639,"RankSup":0,"ScoreSup":0,"RankTotal":75,"ScoreTotal":2487934,"ID":847,"Name":"Nowa nadzieja","Tag":"Nowa","NumMembers":35,"NumVillages":119,"Points":351739,"AllPoints":351739,"Rank":39,"Dominance":0.20838075892622623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=847","BestRank":39,"BestRankAt":"2023-02-26T08:03:28.379505Z","MostPoints":351739,"MostPointsAt":"2023-02-26T08:03:28.379505Z","MostVillages":119,"MostVillagesAt":"2023-02-26T08:03:28.379505Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":12,"ScoreAtt":18894601,"RankDef":5,"ScoreDef":101830140,"RankSup":0,"ScoreSup":0,"RankTotal":6,"ScoreTotal":136829959,"ID":862,"Name":"IMPERIUM +","Tag":".:+:.","NumMembers":31,"NumVillages":287,"Points":1774471,"AllPoints":1774471,"Rank":17,"Dominance":0.5025653597632515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=862","BestRank":17,"BestRankAt":"2023-02-26T08:03:28.379505Z","MostPoints":1774471,"MostPointsAt":"2023-02-26T08:03:28.379506Z","MostVillages":287,"MostVillagesAt":"2023-02-26T08:03:28.379506Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":40,"ScoreAtt":1367259,"RankDef":120,"ScoreDef":477351,"RankSup":0,"ScoreSup":0,"RankTotal":84,"ScoreTotal":1940894,"ID":936,"Name":"Gracz bula9001 zablokowaƂ cię.","Tag":"bula90","NumMembers":1,"NumVillages":8,"Points":77623,"AllPoints":77623,"Rank":60,"Dominance":0.01400879051604882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=936","BestRank":60,"BestRankAt":"2023-02-26T08:03:28.379506Z","MostPoints":77623,"MostPointsAt":"2023-02-26T08:03:28.379506Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379506Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":72,"ScoreAtt":249585,"RankDef":59,"ScoreDef":2957488,"RankSup":0,"ScoreSup":0,"RankTotal":64,"ScoreTotal":3264303,"ID":944,"Name":"YOGI","Tag":"YOGI","NumMembers":7,"NumVillages":14,"Points":60284,"AllPoints":60284,"Rank":66,"Dominance":0.024515383403085438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=944","BestRank":66,"BestRankAt":"2023-02-26T08:03:28.379506Z","MostPoints":60284,"MostPointsAt":"2023-02-26T08:03:28.379507Z","MostVillages":14,"MostVillagesAt":"2023-02-26T08:03:28.379507Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":198,"ScoreAtt":114,"RankDef":207,"ScoreDef":27327,"RankSup":0,"ScoreSup":0,"RankTotal":222,"ScoreTotal":27441,"ID":945,"Name":"Brygada RR","Tag":"RR","NumMembers":1,"NumVillages":0,"Points":689,"AllPoints":689,"Rank":206,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=945","BestRank":206,"BestRankAt":"2023-02-26T08:03:28.379507Z","MostPoints":689,"MostPointsAt":"2023-02-26T08:03:28.379507Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379507Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":169,"ScoreAtt":6190,"RankDef":173,"ScoreDef":90726,"RankSup":0,"ScoreSup":0,"RankTotal":179,"ScoreTotal":97544,"ID":963,"Name":"Grupa Amerykanka","Tag":"GAZ","NumMembers":2,"NumVillages":2,"Points":2349,"AllPoints":2349,"Rank":176,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=963","BestRank":176,"BestRankAt":"2023-02-26T08:03:28.379508Z","MostPoints":2349,"MostPointsAt":"2023-02-26T08:03:28.379508Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379508Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":182,"ScoreAtt":2359,"RankDef":209,"ScoreDef":25168,"RankSup":0,"ScoreSup":0,"RankTotal":221,"ScoreTotal":27527,"ID":965,"Name":"Kamilanie Gora","Tag":"KG","NumMembers":1,"NumVillages":0,"Points":1827,"AllPoints":1827,"Rank":182,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=965","BestRank":182,"BestRankAt":"2023-02-26T08:03:28.379508Z","MostPoints":1827,"MostPointsAt":"2023-02-26T08:03:28.379508Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379508Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":49,"ScoreAtt":702186,"RankDef":81,"ScoreDef":1684724,"RankSup":0,"ScoreSup":0,"RankTotal":74,"ScoreTotal":2543700,"ID":989,"Name":"KOMORNICYX","Tag":"KOMX","NumMembers":2,"NumVillages":1,"Points":9905,"AllPoints":9905,"Rank":125,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=989","BestRank":125,"BestRankAt":"2023-02-26T08:03:28.379509Z","MostPoints":9905,"MostPointsAt":"2023-02-26T08:03:28.379509Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379509Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":104,"ScoreAtt":99680,"RankDef":129,"ScoreDef":393721,"RankSup":0,"ScoreSup":0,"RankTotal":130,"ScoreTotal":500661,"ID":991,"Name":"Ordo Theutonicorum","Tag":"OT","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":268,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=991","BestRank":268,"BestRankAt":"2023-02-26T08:03:28.379509Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379509Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379509Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":46,"ScoreAtt":869386,"RankDef":29,"ScoreDef":11579200,"RankSup":0,"ScoreSup":0,"RankTotal":32,"ScoreTotal":14729351,"ID":1023,"Name":"AWANGARDA","Tag":".)A(.","NumMembers":4,"NumVillages":15,"Points":55248,"AllPoints":55248,"Rank":69,"Dominance":0.026266482217591536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1023","BestRank":69,"BestRankAt":"2023-02-26T08:03:28.379513Z","MostPoints":55248,"MostPointsAt":"2023-02-26T08:03:28.379513Z","MostVillages":15,"MostVillagesAt":"2023-02-26T08:03:28.379513Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":13,"ScoreAtt":10258911,"RankDef":9,"ScoreDef":60773093,"RankSup":0,"ScoreSup":0,"RankTotal":13,"ScoreTotal":85035694,"ID":1039,"Name":"IMPERIUM ++","Tag":":+:","NumMembers":11,"NumVillages":107,"Points":563999,"AllPoints":563999,"Rank":30,"Dominance":0.18736757315215297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1039","BestRank":30,"BestRankAt":"2023-02-26T08:03:28.379513Z","MostPoints":563999,"MostPointsAt":"2023-02-26T08:03:28.379514Z","MostVillages":107,"MostVillagesAt":"2023-02-26T08:03:28.379514Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":36,"ScoreAtt":1922517,"RankDef":35,"ScoreDef":6807047,"RankSup":0,"ScoreSup":0,"RankTotal":36,"ScoreTotal":11104753,"ID":1040,"Name":"We Are Ready!","Tag":"WAR!","NumMembers":2,"NumVillages":3,"Points":18048,"AllPoints":18048,"Rank":107,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1040","BestRank":107,"BestRankAt":"2023-02-26T08:03:28.379514Z","MostPoints":18048,"MostPointsAt":"2023-02-26T08:03:28.379514Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379514Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":51,"ScoreAtt":659407,"RankDef":39,"ScoreDef":6122989,"RankSup":0,"ScoreSup":0,"RankTotal":43,"ScoreTotal":7062125,"ID":1052,"Name":"Gachi Frens","Tag":"-=GF=-","NumMembers":11,"NumVillages":29,"Points":139074,"AllPoints":139074,"Rank":51,"Dominance":0.05078186562067698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1052","BestRank":51,"BestRankAt":"2023-02-26T08:03:28.379514Z","MostPoints":139074,"MostPointsAt":"2023-02-26T08:03:28.379515Z","MostVillages":29,"MostVillagesAt":"2023-02-26T08:03:28.379515Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":125,"ScoreAtt":44295,"RankDef":100,"ScoreDef":811470,"RankSup":0,"ScoreSup":0,"RankTotal":109,"ScoreTotal":863124,"ID":1058,"Name":"PowaĆŒneUgrupowanieByƂychGraczy","Tag":"PUBG","NumMembers":1,"NumVillages":1,"Points":10021,"AllPoints":10021,"Rank":124,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1058","BestRank":124,"BestRankAt":"2023-02-26T08:03:28.379515Z","MostPoints":10021,"MostPointsAt":"2023-02-26T08:03:28.379515Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379515Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":85,"ScoreAtt":172850,"RankDef":68,"ScoreDef":2218960,"RankSup":0,"ScoreSup":0,"RankTotal":58,"ScoreTotal":3819385,"ID":1079,"Name":"Rycerze Czerwonego Tartanu","Tag":"RCT","NumMembers":6,"NumVillages":56,"Points":369388,"AllPoints":369388,"Rank":37,"Dominance":0.09806153361234175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1079","BestRank":37,"BestRankAt":"2023-02-26T08:03:28.379515Z","MostPoints":369388,"MostPointsAt":"2023-02-26T08:03:28.379516Z","MostVillages":56,"MostVillagesAt":"2023-02-26T08:03:28.379516Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":135,"ScoreAtt":36721,"RankDef":105,"ScoreDef":752682,"RankSup":0,"ScoreSup":0,"RankTotal":111,"ScoreTotal":792047,"ID":1096,"Name":"DNR F","Tag":"ACHTUN","NumMembers":4,"NumVillages":7,"Points":38811,"AllPoints":38811,"Rank":81,"Dominance":0.012257691701542719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1096","BestRank":81,"BestRankAt":"2023-02-26T08:03:28.379516Z","MostPoints":38811,"MostPointsAt":"2023-02-26T08:03:28.379516Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379516Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":30,"ScoreAtt":2992607,"RankDef":26,"ScoreDef":13488903,"RankSup":0,"ScoreSup":0,"RankTotal":28,"ScoreTotal":17760154,"ID":1108,"Name":"K0MORNICY4","Tag":"KOM4","NumMembers":13,"NumVillages":68,"Points":329883,"AllPoints":329883,"Rank":40,"Dominance":0.11907471938641498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1108","BestRank":40,"BestRankAt":"2023-02-26T08:03:28.379516Z","MostPoints":329883,"MostPointsAt":"2023-02-26T08:03:28.379517Z","MostVillages":68,"MostVillagesAt":"2023-02-26T08:03:28.379516Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":136,"ScoreAtt":35542,"RankDef":195,"ScoreDef":46003,"RankSup":0,"ScoreSup":0,"RankTotal":185,"ScoreTotal":81545,"ID":1127,"Name":"BLOCKCHAIN","Tag":"CRYPTO","NumMembers":1,"NumVillages":8,"Points":49418,"AllPoints":49418,"Rank":72,"Dominance":0.01400879051604882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1127","BestRank":72,"BestRankAt":"2023-02-26T08:03:28.379517Z","MostPoints":49418,"MostPointsAt":"2023-02-26T08:03:28.379517Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379517Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":18,"ScoreAtt":7828246,"RankDef":10,"ScoreDef":54938117,"RankSup":0,"ScoreSup":0,"RankTotal":15,"ScoreTotal":66569234,"ID":1128,"Name":"Nazwa będzie wkrĂłtce","Tag":"NBW","NumMembers":16,"NumVillages":81,"Points":416408,"AllPoints":416408,"Rank":33,"Dominance":0.14183900397499433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1128","BestRank":33,"BestRankAt":"2023-02-26T08:03:28.379517Z","MostPoints":416408,"MostPointsAt":"2023-02-26T08:03:28.379518Z","MostVillages":81,"MostVillagesAt":"2023-02-26T08:03:28.379517Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":21,"ScoreAtt":6065875,"RankDef":124,"ScoreDef":443639,"RankSup":0,"ScoreSup":0,"RankTotal":47,"ScoreTotal":6606194,"ID":1140,"Name":"0.7 zgƂoƛ się","Tag":"POLEJ","NumMembers":8,"NumVillages":135,"Points":1011133,"AllPoints":1011133,"Rank":24,"Dominance":0.23639833995832385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1140","BestRank":24,"BestRankAt":"2023-02-26T08:03:28.379518Z","MostPoints":1011133,"MostPointsAt":"2023-02-26T08:03:28.379518Z","MostVillages":135,"MostVillagesAt":"2023-02-26T08:03:28.379518Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":42,"ScoreAtt":1223288,"RankDef":40,"ScoreDef":5966245,"RankSup":0,"ScoreSup":0,"RankTotal":39,"ScoreTotal":8063060,"ID":1148,"Name":"HELLGATE","Tag":"*HG*","NumMembers":9,"NumVillages":61,"Points":234026,"AllPoints":234026,"Rank":45,"Dominance":0.10681702768487225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1148","BestRank":45,"BestRankAt":"2023-02-26T08:03:28.379518Z","MostPoints":234026,"MostPointsAt":"2023-02-26T08:03:28.379519Z","MostVillages":61,"MostVillagesAt":"2023-02-26T08:03:28.379518Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":121,"ScoreAtt":59985,"RankDef":122,"ScoreDef":473253,"RankSup":0,"ScoreSup":0,"RankTotal":101,"ScoreTotal":996140,"ID":1161,"Name":"OseƂka","Tag":"OS.","NumMembers":1,"NumVillages":2,"Points":13377,"AllPoints":13377,"Rank":118,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1161","BestRank":118,"BestRankAt":"2023-02-26T08:03:28.379519Z","MostPoints":13377,"MostPointsAt":"2023-02-26T08:03:28.379519Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379519Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":140,"ScoreAtt":28985,"RankDef":192,"ScoreDef":47907,"RankSup":0,"ScoreSup":0,"RankTotal":187,"ScoreTotal":77166,"ID":1163,"Name":"Kl8F","Tag":"Klasa8","NumMembers":2,"NumVillages":2,"Points":12630,"AllPoints":12630,"Rank":119,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1163","BestRank":119,"BestRankAt":"2023-02-26T08:03:28.379519Z","MostPoints":12630,"MostPointsAt":"2023-02-26T08:03:28.37952Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.37952Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":193,"ScoreAtt":365,"RankDef":221,"ScoreDef":11063,"RankSup":0,"ScoreSup":0,"RankTotal":233,"ScoreTotal":11428,"ID":1166,"Name":"Dybuk","Tag":"Dybuk","NumMembers":1,"NumVillages":3,"Points":18993,"AllPoints":18993,"Rank":104,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1166","BestRank":104,"BestRankAt":"2023-02-26T08:03:28.37952Z","MostPoints":18993,"MostPointsAt":"2023-02-26T08:03:28.37952Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37952Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":170,"ScoreAtt":6131,"RankDef":214,"ScoreDef":19000,"RankSup":0,"ScoreSup":0,"RankTotal":220,"ScoreTotal":27655,"ID":1170,"Name":"Nono","Tag":"Nnn","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":269,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1170","BestRank":269,"BestRankAt":"2023-02-26T08:03:28.379524Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379524Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379524Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":81,"ScoreAtt":200678,"RankDef":111,"ScoreDef":635798,"RankSup":0,"ScoreSup":0,"RankTotal":107,"ScoreTotal":886014,"ID":1209,"Name":"Komandosi na 5","Tag":"KOM5","NumMembers":2,"NumVillages":5,"Points":20529,"AllPoints":20529,"Rank":100,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1209","BestRank":100,"BestRankAt":"2023-02-26T08:03:28.379524Z","MostPoints":20529,"MostPointsAt":"2023-02-26T08:03:28.379524Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379524Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":26,"ScoreAtt":4223030,"RankDef":43,"ScoreDef":5640076,"RankSup":0,"ScoreSup":0,"RankTotal":37,"ScoreTotal":10147516,"ID":1226,"Name":"Cartel TW","Tag":"Cartel","NumMembers":40,"NumVillages":476,"Points":3200975,"AllPoints":3200975,"Rank":14,"Dominance":0.8335230357049049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1226","BestRank":14,"BestRankAt":"2023-02-26T08:03:28.379525Z","MostPoints":3200975,"MostPointsAt":"2023-02-26T08:03:28.379525Z","MostVillages":476,"MostVillagesAt":"2023-02-26T08:03:28.379525Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":86,"ScoreAtt":171782,"RankDef":51,"ScoreDef":3588148,"RankSup":0,"ScoreSup":0,"RankTotal":57,"ScoreTotal":3875380,"ID":1232,"Name":"Braty i Kompany","Tag":"BiK","NumMembers":4,"NumVillages":4,"Points":1235,"AllPoints":1235,"Rank":192,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1232","BestRank":192,"BestRankAt":"2023-02-26T08:03:28.379525Z","MostPoints":1235,"MostPointsAt":"2023-02-26T08:03:28.379525Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379525Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":178,"ScoreDef":66890,"RankSup":0,"ScoreSup":0,"RankTotal":192,"ScoreTotal":66890,"ID":1247,"Name":"ĆŒydek natanek","Tag":"qwq","NumMembers":1,"NumVillages":0,"Points":243,"AllPoints":243,"Rank":229,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1247","BestRank":229,"BestRankAt":"2023-02-26T08:03:28.379526Z","MostPoints":243,"MostPointsAt":"2023-02-26T08:03:28.379526Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379526Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":143,"ScoreDef":223069,"RankSup":0,"ScoreSup":0,"RankTotal":153,"ScoreTotal":223069,"ID":1258,"Name":"Bum!","Tag":"Bum!","NumMembers":1,"NumVillages":0,"Points":128,"AllPoints":128,"Rank":242,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1258","BestRank":242,"BestRankAt":"2023-02-26T08:03:28.379526Z","MostPoints":128,"MostPointsAt":"2023-02-26T08:03:28.379526Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379526Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":168,"ScoreAtt":6589,"RankDef":229,"ScoreDef":6352,"RankSup":0,"ScoreSup":0,"RankTotal":230,"ScoreTotal":13732,"ID":1261,"Name":"Ujazdowcy","Tag":"UJ","NumMembers":1,"NumVillages":2,"Points":6741,"AllPoints":6741,"Rank":143,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1261","BestRank":143,"BestRankAt":"2023-02-26T08:03:28.379527Z","MostPoints":6741,"MostPointsAt":"2023-02-26T08:03:28.379527Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379527Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":63,"ScoreAtt":394386,"RankDef":235,"ScoreDef":4979,"RankSup":0,"ScoreSup":0,"RankTotal":138,"ScoreTotal":399365,"ID":1275,"Name":"CSA-ATAK","Tag":"CSA-AT","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":252,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1275","BestRank":252,"BestRankAt":"2023-02-26T08:03:28.379527Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379527Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379527Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":149,"ScoreAtt":19193,"RankDef":123,"ScoreDef":462546,"RankSup":0,"ScoreSup":0,"RankTotal":131,"ScoreTotal":481948,"ID":1278,"Name":"Waffen-SS","Tag":"W-SS","NumMembers":1,"NumVillages":3,"Points":7062,"AllPoints":7062,"Rank":141,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1278","BestRank":141,"BestRankAt":"2023-02-26T08:03:28.379528Z","MostPoints":7062,"MostPointsAt":"2023-02-26T08:03:28.379528Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379528Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":66,"ScoreAtt":351269,"RankDef":50,"ScoreDef":3808303,"RankSup":0,"ScoreSup":0,"RankTotal":53,"ScoreTotal":4833403,"ID":1293,"Name":"youll never walk alone","Tag":"ynwa","NumMembers":11,"NumVillages":50,"Points":301640,"AllPoints":301640,"Rank":41,"Dominance":0.08755494072530512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1293","BestRank":41,"BestRankAt":"2023-02-26T08:03:28.379528Z","MostPoints":301640,"MostPointsAt":"2023-02-26T08:03:28.379528Z","MostVillages":50,"MostVillagesAt":"2023-02-26T08:03:28.379528Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":53,"ScoreAtt":635357,"RankDef":83,"ScoreDef":1602570,"RankSup":0,"ScoreSup":0,"RankTotal":76,"ScoreTotal":2353367,"ID":1312,"Name":"Purpurowi Zegarmistrze ƚwiatƂa","Tag":"ZEGARY","NumMembers":45,"NumVillages":186,"Points":701653,"AllPoints":703439,"Rank":28,"Dominance":0.3257043794981351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1312","BestRank":28,"BestRankAt":"2023-02-26T08:03:28.379529Z","MostPoints":703439,"MostPointsAt":"2023-02-26T08:03:28.379529Z","MostVillages":186,"MostVillagesAt":"2023-02-26T08:03:28.379529Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":205,"ScoreAtt":42,"RankDef":194,"ScoreDef":46103,"RankSup":0,"ScoreSup":0,"RankTotal":204,"ScoreTotal":46145,"ID":1317,"Name":"1edc","Tag":"1edc","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":253,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1317","BestRank":253,"BestRankAt":"2023-02-26T08:03:28.379529Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379529Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379529Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":171,"ScoreAtt":5757,"RankDef":149,"ScoreDef":191510,"RankSup":0,"ScoreSup":0,"RankTotal":160,"ScoreTotal":197267,"ID":1333,"Name":"Grupa Wsparcia AmatorĂłw","Tag":"GWA","NumMembers":1,"NumVillages":0,"Points":764,"AllPoints":764,"Rank":204,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1333","BestRank":204,"BestRankAt":"2023-02-26T08:03:28.37953Z","MostPoints":764,"MostPointsAt":"2023-02-26T08:03:28.37953Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37953Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":28,"ScoreAtt":3119338,"RankDef":25,"ScoreDef":15190900,"RankSup":0,"ScoreSup":0,"RankTotal":26,"ScoreTotal":20372946,"ID":1336,"Name":"Scandi Power","Tag":"SCP","NumMembers":21,"NumVillages":266,"Points":1514988,"AllPoints":1514988,"Rank":18,"Dominance":0.46579228465862327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1336","BestRank":18,"BestRankAt":"2023-02-26T08:03:28.37953Z","MostPoints":1514988,"MostPointsAt":"2023-02-26T08:03:28.37953Z","MostVillages":266,"MostVillagesAt":"2023-02-26T08:03:28.37953Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":167,"ScoreDef":113618,"RankSup":0,"ScoreSup":0,"RankTotal":177,"ScoreTotal":113620,"ID":1338,"Name":"weee","Tag":"wg","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":270,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1338","BestRank":270,"BestRankAt":"2023-02-26T08:03:28.379531Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379531Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379531Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":210,"ScoreAtt":15,"RankDef":199,"ScoreDef":40822,"RankSup":0,"ScoreSup":0,"RankTotal":207,"ScoreTotal":40837,"ID":1347,"Name":"BezCov","Tag":"B-C","NumMembers":3,"NumVillages":2,"Points":7308,"AllPoints":7308,"Rank":139,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1347","BestRank":139,"BestRankAt":"2023-02-26T08:03:28.379534Z","MostPoints":7308,"MostPointsAt":"2023-02-26T08:03:28.379535Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379534Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":141,"ScoreAtt":26793,"RankDef":147,"ScoreDef":197411,"RankSup":0,"ScoreSup":0,"RankTotal":152,"ScoreTotal":224264,"ID":1357,"Name":"J. B. B....","Tag":"JBB;/","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":271,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1357","BestRank":271,"BestRankAt":"2023-02-26T08:03:28.379535Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379535Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379535Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":92,"ScoreAtt":149732,"RankDef":92,"ScoreDef":1114175,"RankSup":0,"ScoreSup":0,"RankTotal":92,"ScoreTotal":1288389,"ID":1368,"Name":"Elitarny Legion","Tag":"ELITA","NumMembers":2,"NumVillages":18,"Points":68427,"AllPoints":68427,"Rank":64,"Dominance":0.031519778661109846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1368","BestRank":64,"BestRankAt":"2023-02-26T08:03:28.379535Z","MostPoints":68427,"MostPointsAt":"2023-02-26T08:03:28.379536Z","MostVillages":18,"MostVillagesAt":"2023-02-26T08:03:28.379535Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":179,"ScoreAtt":3874,"RankDef":181,"ScoreDef":64564,"RankSup":0,"ScoreSup":0,"RankTotal":191,"ScoreTotal":68452,"ID":1372,"Name":"WIDMO","Tag":"WIDMO","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":272,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1372","BestRank":272,"BestRankAt":"2023-02-26T08:03:28.379536Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379536Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379536Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":47,"ScoreAtt":783132,"RankDef":42,"ScoreDef":5740497,"RankSup":0,"ScoreSup":0,"RankTotal":45,"ScoreTotal":6847914,"ID":1376,"Name":"Wojna Idei P","Tag":"WDP","NumMembers":1,"NumVillages":1,"Points":628,"AllPoints":628,"Rank":209,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1376","BestRank":209,"BestRankAt":"2023-02-26T08:03:28.379536Z","MostPoints":628,"MostPointsAt":"2023-02-26T08:03:28.379537Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379536Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":190,"ScoreDef":51599,"RankSup":0,"ScoreSup":0,"RankTotal":201,"ScoreTotal":51601,"ID":1389,"Name":"dfbdfbd","Tag":"db","NumMembers":1,"NumVillages":0,"Points":4663,"AllPoints":4663,"Rank":156,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1389","BestRank":156,"BestRankAt":"2023-02-26T08:03:28.379537Z","MostPoints":4663,"MostPointsAt":"2023-02-26T08:03:28.379537Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379537Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":122,"ScoreAtt":57170,"RankDef":98,"ScoreDef":860657,"RankSup":0,"ScoreSup":0,"RankTotal":103,"ScoreTotal":992741,"ID":1399,"Name":"BojkĂłw","Tag":"_B_","NumMembers":3,"NumVillages":6,"Points":36070,"AllPoints":36070,"Rank":83,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1399","BestRank":83,"BestRankAt":"2023-02-26T08:03:28.379537Z","MostPoints":36070,"MostPointsAt":"2023-02-26T08:03:28.379537Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379537Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":22,"ScoreAtt":5711015,"RankDef":14,"ScoreDef":36967078,"RankSup":0,"ScoreSup":0,"RankTotal":19,"ScoreTotal":47859039,"ID":1411,"Name":"HURAGAN","Tag":"Tajfun","NumMembers":28,"NumVillages":257,"Points":1405083,"AllPoints":1405083,"Rank":20,"Dominance":0.4500323953280683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1411","BestRank":20,"BestRankAt":"2023-02-26T08:03:28.379538Z","MostPoints":1405083,"MostPointsAt":"2023-02-26T08:03:28.379538Z","MostVillages":257,"MostVillagesAt":"2023-02-26T08:03:28.379538Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":157,"ScoreAtt":10013,"RankDef":146,"ScoreDef":204595,"RankSup":0,"ScoreSup":0,"RankTotal":157,"ScoreTotal":214608,"ID":1416,"Name":"ZƂodzieje PrzyszƂoƛci","Tag":"=ZP=","NumMembers":1,"NumVillages":1,"Points":1857,"AllPoints":1857,"Rank":181,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1416","BestRank":181,"BestRankAt":"2023-02-26T08:03:28.379538Z","MostPoints":1857,"MostPointsAt":"2023-02-26T08:03:28.379538Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379538Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":64,"ScoreAtt":364951,"RankDef":84,"ScoreDef":1398761,"RankSup":0,"ScoreSup":0,"RankTotal":73,"ScoreTotal":2557465,"ID":1418,"Name":"Plemię Rodu Smoka","Tag":"PRS","NumMembers":3,"NumVillages":22,"Points":172971,"AllPoints":172971,"Rank":48,"Dominance":0.03852417391913426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1418","BestRank":48,"BestRankAt":"2023-02-26T08:03:28.379539Z","MostPoints":172971,"MostPointsAt":"2023-02-26T08:03:28.379539Z","MostVillages":22,"MostVillagesAt":"2023-02-26T08:03:28.379539Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":180,"ScoreAtt":3128,"RankDef":202,"ScoreDef":32137,"RankSup":0,"ScoreSup":0,"RankTotal":209,"ScoreTotal":35273,"ID":1421,"Name":"Dla fanu pykamy","Tag":"DFP","NumMembers":1,"NumVillages":0,"Points":1643,"AllPoints":1643,"Rank":184,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1421","BestRank":184,"BestRankAt":"2023-02-26T08:03:28.379539Z","MostPoints":1643,"MostPointsAt":"2023-02-26T08:03:28.379539Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379539Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":115,"ScoreAtt":70186,"RankDef":128,"ScoreDef":401050,"RankSup":0,"ScoreSup":0,"RankTotal":134,"ScoreTotal":471241,"ID":1423,"Name":"Grupa Armii ƚrodek","Tag":"ƚrodek","NumMembers":2,"NumVillages":11,"Points":52309,"AllPoints":52309,"Rank":70,"Dominance":0.01926208695956713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1423","BestRank":70,"BestRankAt":"2023-02-26T08:03:28.37954Z","MostPoints":52309,"MostPointsAt":"2023-02-26T08:03:28.37954Z","MostVillages":11,"MostVillagesAt":"2023-02-26T08:03:28.37954Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":54,"ScoreAtt":610324,"RankDef":223,"ScoreDef":9859,"RankSup":0,"ScoreSup":0,"RankTotal":122,"ScoreTotal":630185,"ID":1428,"Name":"Wodne zwierzaczki","Tag":"WZ","NumMembers":1,"NumVillages":3,"Points":17761,"AllPoints":17761,"Rank":108,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1428","BestRank":108,"BestRankAt":"2023-02-26T08:03:28.37954Z","MostPoints":17761,"MostPointsAt":"2023-02-26T08:03:28.37954Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37954Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":164,"ScoreAtt":7530,"RankDef":115,"ScoreDef":587311,"RankSup":0,"ScoreSup":0,"RankTotal":124,"ScoreTotal":594841,"ID":1431,"Name":"Amanita Muscaria","Tag":"A-M","NumMembers":3,"NumVillages":2,"Points":1511,"AllPoints":1511,"Rank":188,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1431","BestRank":188,"BestRankAt":"2023-02-26T08:03:28.379541Z","MostPoints":1511,"MostPointsAt":"2023-02-26T08:03:28.379541Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379541Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":116,"ScoreAtt":67981,"RankDef":109,"ScoreDef":665488,"RankSup":0,"ScoreSup":0,"RankTotal":114,"ScoreTotal":733473,"ID":1432,"Name":"Nasze Plemie","Tag":"ABW","NumMembers":1,"NumVillages":1,"Points":1627,"AllPoints":1627,"Rank":185,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1432","BestRank":185,"BestRankAt":"2023-02-26T08:03:28.379541Z","MostPoints":1627,"MostPointsAt":"2023-02-26T08:03:28.379541Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379541Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":98,"ScoreAtt":132845,"RankDef":218,"ScoreDef":16361,"RankSup":0,"ScoreSup":0,"RankTotal":168,"ScoreTotal":149206,"ID":1448,"Name":"myself","Tag":"=Mf=","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":273,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1448","BestRank":273,"BestRankAt":"2023-02-26T08:03:28.379547Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379547Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379547Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":155,"ScoreAtt":11762,"RankDef":103,"ScoreDef":769792,"RankSup":0,"ScoreSup":0,"RankTotal":112,"ScoreTotal":785196,"ID":1456,"Name":"1-2-0","Tag":"1x2","NumMembers":2,"NumVillages":2,"Points":10863,"AllPoints":10863,"Rank":122,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1456","BestRank":122,"BestRankAt":"2023-02-26T08:03:28.379548Z","MostPoints":10863,"MostPointsAt":"2023-02-26T08:03:28.379548Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379548Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":250,"ScoreDef":381,"RankSup":0,"ScoreSup":0,"RankTotal":255,"ScoreTotal":381,"ID":1460,"Name":"bobertos","Tag":"ZIOM","NumMembers":2,"NumVillages":1,"Points":200,"AllPoints":200,"Rank":232,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1460","BestRank":232,"BestRankAt":"2023-02-26T08:03:28.379548Z","MostPoints":200,"MostPointsAt":"2023-02-26T08:03:28.379548Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379548Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":103,"ScoreAtt":101232,"RankDef":88,"ScoreDef":1197564,"RankSup":0,"ScoreSup":0,"RankTotal":88,"ScoreTotal":1449811,"ID":1466,"Name":"GREEN STREET HOOLIGANS","Tag":"GSH","NumMembers":7,"NumVillages":20,"Points":112014,"AllPoints":112014,"Rank":54,"Dominance":0.035021976290122055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1466","BestRank":54,"BestRankAt":"2023-02-26T08:03:28.379548Z","MostPoints":112014,"MostPointsAt":"2023-02-26T08:03:28.379549Z","MostVillages":20,"MostVillagesAt":"2023-02-26T08:03:28.379549Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":57,"ScoreAtt":507857,"RankDef":213,"ScoreDef":20287,"RankSup":0,"ScoreSup":0,"RankTotal":128,"ScoreTotal":528181,"ID":1470,"Name":"SunnyValley","Tag":"SV","NumMembers":1,"NumVillages":6,"Points":45642,"AllPoints":45642,"Rank":75,"Dominance":0.010506592887036616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1470","BestRank":75,"BestRankAt":"2023-02-26T08:03:28.379549Z","MostPoints":45642,"MostPointsAt":"2023-02-26T08:03:28.379549Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379549Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":191,"ScoreAtt":375,"RankDef":131,"ScoreDef":358545,"RankSup":0,"ScoreSup":0,"RankTotal":142,"ScoreTotal":358920,"ID":1477,"Name":"Do koƄca!","Tag":"DK!","NumMembers":1,"NumVillages":1,"Points":307,"AllPoints":307,"Rank":224,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1477","BestRank":224,"BestRankAt":"2023-02-26T08:03:28.379549Z","MostPoints":307,"MostPointsAt":"2023-02-26T08:03:28.37955Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37955Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":19,"ScoreAtt":7053464,"RankDef":23,"ScoreDef":17352076,"RankSup":0,"ScoreSup":0,"RankTotal":24,"ScoreTotal":26406450,"ID":1480,"Name":"KUZYN X","Tag":"KUZYN?","NumMembers":14,"NumVillages":284,"Points":1482901,"AllPoints":1482901,"Rank":19,"Dominance":0.49731206331973316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1480","BestRank":19,"BestRankAt":"2023-02-26T08:03:28.37955Z","MostPoints":1482901,"MostPointsAt":"2023-02-26T08:03:28.37955Z","MostVillages":284,"MostVillagesAt":"2023-02-26T08:03:28.37955Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":87,"ScoreAtt":171122,"RankDef":79,"ScoreDef":1762582,"RankSup":0,"ScoreSup":0,"RankTotal":80,"ScoreTotal":2062188,"ID":1483,"Name":"Afrika Korps","Tag":"AK","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":274,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1483","BestRank":274,"BestRankAt":"2023-02-26T08:03:28.37955Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379551Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379551Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":212,"ScoreDef":22040,"RankSup":0,"ScoreSup":0,"RankTotal":225,"ScoreTotal":22060,"ID":1484,"Name":"INVISIBLE","Tag":"IV","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":254,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1484","BestRank":254,"BestRankAt":"2023-02-26T08:03:28.379551Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379551Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379551Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":167,"ScoreAtt":7195,"RankDef":211,"ScoreDef":23237,"RankSup":0,"ScoreSup":0,"RankTotal":215,"ScoreTotal":30432,"ID":1494,"Name":"Wioska Matrix9105@","Tag":"Matrix","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":275,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1494","BestRank":275,"BestRankAt":"2023-02-26T08:03:28.379551Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379552Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379552Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":209,"ScoreAtt":19,"RankDef":163,"ScoreDef":126061,"RankSup":0,"ScoreSup":0,"RankTotal":176,"ScoreTotal":126080,"ID":1498,"Name":"Kokoko","Tag":"KKK7","NumMembers":1,"NumVillages":0,"Points":2745,"AllPoints":2745,"Rank":172,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1498","BestRank":172,"BestRankAt":"2023-02-26T08:03:28.379552Z","MostPoints":2745,"MostPointsAt":"2023-02-26T08:03:28.379552Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379552Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":14,"ScoreAtt":9693986,"RankDef":6,"ScoreDef":91796591,"RankSup":0,"ScoreSup":0,"RankTotal":8,"ScoreTotal":117037428,"ID":1523,"Name":"Ty i Twoje orzeszki","Tag":"T.T","NumMembers":26,"NumVillages":115,"Points":649837,"AllPoints":649837,"Rank":29,"Dominance":0.20137636366820177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1523","BestRank":29,"BestRankAt":"2023-02-26T08:03:28.379552Z","MostPoints":649837,"MostPointsAt":"2023-02-26T08:03:28.379553Z","MostVillages":115,"MostVillagesAt":"2023-02-26T08:03:28.379553Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":177,"ScoreAtt":4100,"RankDef":184,"ScoreDef":60390,"RankSup":0,"ScoreSup":0,"RankTotal":184,"ScoreTotal":81749,"ID":1526,"Name":"Polanie","Tag":"Polani","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":276,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1526","BestRank":276,"BestRankAt":"2023-02-26T08:03:28.379553Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379553Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379553Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":59,"ScoreAtt":476359,"RankDef":45,"ScoreDef":5076313,"RankSup":0,"ScoreSup":0,"RankTotal":51,"ScoreTotal":5769388,"ID":1528,"Name":"NieZniszczalni.","Tag":"NZ","NumMembers":3,"NumVillages":3,"Points":2617,"AllPoints":2617,"Rank":173,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1528","BestRank":173,"BestRankAt":"2023-02-26T08:03:28.379553Z","MostPoints":2617,"MostPointsAt":"2023-02-26T08:03:28.379554Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379554Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":134,"ScoreAtt":36737,"RankDef":94,"ScoreDef":1014380,"RankSup":0,"ScoreSup":0,"RankTotal":100,"ScoreTotal":1117026,"ID":1530,"Name":"SƁOWIANIE","Tag":"SƁOWO","NumMembers":3,"NumVillages":3,"Points":6388,"AllPoints":6388,"Rank":144,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1530","BestRank":144,"BestRankAt":"2023-02-26T08:03:28.379554Z","MostPoints":6388,"MostPointsAt":"2023-02-26T08:03:28.379554Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379554Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":162,"ScoreAtt":7897,"RankDef":197,"ScoreDef":44982,"RankSup":0,"ScoreSup":0,"RankTotal":198,"ScoreTotal":52879,"ID":1535,"Name":"The Gorillas","Tag":"GOR","NumMembers":2,"NumVillages":26,"Points":142006,"AllPoints":142006,"Rank":50,"Dominance":0.04552856917715867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1535","BestRank":50,"BestRankAt":"2023-02-26T08:03:28.379558Z","MostPoints":142006,"MostPointsAt":"2023-02-26T08:03:28.379558Z","MostVillages":26,"MostVillagesAt":"2023-02-26T08:03:28.379558Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":242,"ScoreDef":3192,"RankSup":0,"ScoreSup":0,"RankTotal":249,"ScoreTotal":3192,"ID":1538,"Name":"Ho no tu","Tag":"SOO","NumMembers":1,"NumVillages":2,"Points":7382,"AllPoints":7382,"Rank":137,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1538","BestRank":137,"BestRankAt":"2023-02-26T08:03:28.379558Z","MostPoints":7382,"MostPointsAt":"2023-02-26T08:03:28.379559Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379559Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":109,"ScoreAtt":86090,"RankDef":139,"ScoreDef":283986,"RankSup":0,"ScoreSup":0,"RankTotal":139,"ScoreTotal":395786,"ID":1551,"Name":"Siewca Wiatru","Tag":"~SW~","NumMembers":7,"NumVillages":14,"Points":48043,"AllPoints":48043,"Rank":74,"Dominance":0.024515383403085438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1551","BestRank":74,"BestRankAt":"2023-02-26T08:03:28.379559Z","MostPoints":48043,"MostPointsAt":"2023-02-26T08:03:28.379559Z","MostVillages":14,"MostVillagesAt":"2023-02-26T08:03:28.379559Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":194,"ScoreAtt":326,"RankDef":185,"ScoreDef":56269,"RankSup":0,"ScoreSup":0,"RankTotal":196,"ScoreTotal":56642,"ID":1573,"Name":"DUCHY","Tag":"DUCH","NumMembers":11,"NumVillages":10,"Points":9505,"AllPoints":9505,"Rank":128,"Dominance":0.017510988145061027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1573","BestRank":128,"BestRankAt":"2023-02-26T08:03:28.37956Z","MostPoints":9505,"MostPointsAt":"2023-02-26T08:03:28.37956Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:28.37956Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":201,"ScoreAtt":55,"RankDef":239,"ScoreDef":3932,"RankSup":0,"ScoreSup":0,"RankTotal":248,"ScoreTotal":3987,"ID":1582,"Name":"CaƂe Ć»ycie z Wariatami","Tag":"WARIAT","NumMembers":1,"NumVillages":1,"Points":7987,"AllPoints":7987,"Rank":133,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1582","BestRank":133,"BestRankAt":"2023-02-26T08:03:28.37956Z","MostPoints":7987,"MostPointsAt":"2023-02-26T08:03:28.37956Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37956Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.3797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":197,"ScoreAtt":281,"RankDef":220,"ScoreDef":13591,"RankSup":0,"ScoreSup":0,"RankTotal":229,"ScoreTotal":13876,"ID":1585,"Name":"SAM WE MƁYNIE","Tag":"SWM","NumMembers":1,"NumVillages":0,"Points":722,"AllPoints":722,"Rank":205,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1585","BestRank":205,"BestRankAt":"2023-02-26T08:03:28.379561Z","MostPoints":722,"MostPointsAt":"2023-02-26T08:03:28.379561Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379561Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.3797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":143,"ScoreAtt":25002,"RankDef":228,"ScoreDef":6522,"RankSup":0,"ScoreSup":0,"RankTotal":214,"ScoreTotal":31524,"ID":1588,"Name":"Moment Strategiczny","Tag":"no cĂłĆŒ","NumMembers":1,"NumVillages":12,"Points":59739,"AllPoints":59739,"Rank":67,"Dominance":0.021013185774073233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1588","BestRank":67,"BestRankAt":"2023-02-26T08:03:28.379561Z","MostPoints":59739,"MostPointsAt":"2023-02-26T08:03:28.379561Z","MostVillages":12,"MostVillagesAt":"2023-02-26T08:03:28.379561Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":208,"ScoreDef":25538,"RankSup":0,"ScoreSup":0,"RankTotal":223,"ScoreTotal":25538,"ID":1590,"Name":"Bo od tylu tez jest fajnie","Tag":"Xes","NumMembers":5,"NumVillages":5,"Points":3318,"AllPoints":3318,"Rank":168,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1590","BestRank":168,"BestRankAt":"2023-02-26T08:03:28.379562Z","MostPoints":3318,"MostPointsAt":"2023-02-26T08:03:28.379562Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379562Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":50,"ScoreAtt":668744,"RankDef":54,"ScoreDef":3454766,"RankSup":0,"ScoreSup":0,"RankTotal":54,"ScoreTotal":4697746,"ID":1597,"Name":"Kontra","Tag":"Kontra","NumMembers":42,"NumVillages":178,"Points":791549,"AllPoints":799441,"Rank":27,"Dominance":0.31169558898208627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1597","BestRank":27,"BestRankAt":"2023-02-26T08:03:28.379562Z","MostPoints":799441,"MostPointsAt":"2023-02-26T08:03:28.379562Z","MostVillages":178,"MostVillagesAt":"2023-02-26T08:03:28.379562Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":131,"ScoreAtt":39978,"RankDef":164,"ScoreDef":125295,"RankSup":0,"ScoreSup":0,"RankTotal":166,"ScoreTotal":165273,"ID":1599,"Name":"maƂe ciche do gęsiej szyji","Tag":"mcgs","NumMembers":1,"NumVillages":0,"Points":358,"AllPoints":358,"Rank":219,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1599","BestRank":219,"BestRankAt":"2023-02-26T08:03:28.379562Z","MostPoints":358,"MostPointsAt":"2023-02-26T08:03:28.379563Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379563Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":145,"ScoreAtt":23331,"RankDef":121,"ScoreDef":475515,"RankSup":0,"ScoreSup":0,"RankTotal":110,"ScoreTotal":805496,"ID":1602,"Name":"Uuuu","Tag":"Uuy","NumMembers":1,"NumVillages":1,"Points":3854,"AllPoints":3854,"Rank":163,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1602","BestRank":163,"BestRankAt":"2023-02-26T08:03:28.379563Z","MostPoints":3854,"MostPointsAt":"2023-02-26T08:03:28.379563Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379563Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":203,"ScoreAtt":52,"RankDef":171,"ScoreDef":97442,"RankSup":0,"ScoreSup":0,"RankTotal":180,"ScoreTotal":97494,"ID":1609,"Name":"asdd","Tag":"das","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":277,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1609","BestRank":277,"BestRankAt":"2023-02-26T08:03:28.379564Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379564Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379564Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":191,"ScoreDef":48607,"RankSup":0,"ScoreSup":0,"RankTotal":202,"ScoreTotal":48607,"ID":1610,"Name":"Kombinat PunkktĂłw Premium","Tag":"KPP","NumMembers":1,"NumVillages":0,"Points":138,"AllPoints":138,"Rank":240,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1610","BestRank":240,"BestRankAt":"2023-02-26T08:03:28.379564Z","MostPoints":138,"MostPointsAt":"2023-02-26T08:03:28.379564Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379564Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":43,"ScoreAtt":1204990,"RankDef":27,"ScoreDef":12298812,"RankSup":0,"ScoreSup":0,"RankTotal":30,"ScoreTotal":16042856,"ID":1621,"Name":"Rolnicy Podlasie","Tag":"RP","NumMembers":11,"NumVillages":186,"Points":1018468,"AllPoints":1018468,"Rank":23,"Dominance":0.3257043794981351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1621","BestRank":23,"BestRankAt":"2023-02-26T08:03:28.379565Z","MostPoints":1018468,"MostPointsAt":"2023-02-26T08:03:28.379565Z","MostVillages":186,"MostVillagesAt":"2023-02-26T08:03:28.379565Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":158,"ScoreAtt":9530,"RankDef":240,"ScoreDef":3909,"RankSup":0,"ScoreSup":0,"RankTotal":231,"ScoreTotal":13439,"ID":1626,"Name":"JazdaZKuramk","Tag":"JZK","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":278,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1626","BestRank":278,"BestRankAt":"2023-02-26T08:03:28.379565Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379565Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379565Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":139,"ScoreAtt":29761,"RankDef":138,"ScoreDef":302333,"RankSup":0,"ScoreSup":0,"RankTotal":144,"ScoreTotal":333654,"ID":1627,"Name":"ANONYMOUSS","Tag":"ANS","NumMembers":15,"NumVillages":43,"Points":112530,"AllPoints":112530,"Rank":53,"Dominance":0.07529724902376242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1627","BestRank":53,"BestRankAt":"2023-02-26T08:03:28.379568Z","MostPoints":112530,"MostPointsAt":"2023-02-26T08:03:28.379569Z","MostVillages":43,"MostVillagesAt":"2023-02-26T08:03:28.379568Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":75,"ScoreAtt":220320,"RankDef":247,"ScoreDef":711,"RankSup":0,"ScoreSup":0,"RankTotal":154,"ScoreTotal":221031,"ID":1636,"Name":"GDZIE SĄ ???","Tag":"MAƁYSZ","NumMembers":1,"NumVillages":1,"Points":3622,"AllPoints":3622,"Rank":165,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1636","BestRank":165,"BestRankAt":"2023-02-26T08:03:28.379569Z","MostPoints":3622,"MostPointsAt":"2023-02-26T08:03:28.379569Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379569Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":101,"ScoreAtt":107892,"RankDef":114,"ScoreDef":591912,"RankSup":0,"ScoreSup":0,"RankTotal":117,"ScoreTotal":699804,"ID":1638,"Name":"asyy","Tag":"asyy","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":255,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1638","BestRank":255,"BestRankAt":"2023-02-26T08:03:28.379569Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.37957Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379569Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":173,"ScoreAtt":4638,"RankDef":251,"ScoreDef":282,"RankSup":0,"ScoreSup":0,"RankTotal":244,"ScoreTotal":4920,"ID":1643,"Name":"1112","Tag":"12","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":279,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1643","BestRank":279,"BestRankAt":"2023-02-26T08:03:28.37957Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.37957Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37957Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":206,"ScoreDef":28423,"RankSup":0,"ScoreSup":0,"RankTotal":211,"ScoreTotal":33370,"ID":1645,"Name":"Rekontakt","Tag":"REK","NumMembers":2,"NumVillages":3,"Points":8317,"AllPoints":8317,"Rank":132,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1645","BestRank":132,"BestRankAt":"2023-02-26T08:03:28.379571Z","MostPoints":8317,"MostPointsAt":"2023-02-26T08:03:28.379571Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379571Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":44,"ScoreAtt":1091715,"RankDef":148,"ScoreDef":194797,"RankSup":0,"ScoreSup":0,"RankTotal":91,"ScoreTotal":1299521,"ID":1648,"Name":"Aldente","Tag":"Ald","NumMembers":1,"NumVillages":1,"Points":338,"AllPoints":338,"Rank":222,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1648","BestRank":222,"BestRankAt":"2023-02-26T08:03:28.379571Z","MostPoints":338,"MostPointsAt":"2023-02-26T08:03:28.379571Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379571Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":88,"ScoreAtt":166503,"RankDef":72,"ScoreDef":2038539,"RankSup":0,"ScoreSup":0,"RankTotal":72,"ScoreTotal":2577567,"ID":1651,"Name":"Oszukani","Tag":"New","NumMembers":2,"NumVillages":1,"Points":3936,"AllPoints":3936,"Rank":161,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1651","BestRank":161,"BestRankAt":"2023-02-26T08:03:28.379572Z","MostPoints":3936,"MostPointsAt":"2023-02-26T08:03:28.379572Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379572Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":69,"ScoreAtt":258353,"RankDef":243,"ScoreDef":2854,"RankSup":0,"ScoreSup":0,"RankTotal":149,"ScoreTotal":261207,"ID":1652,"Name":"Ɓomocimy","Tag":"Zajęnc","NumMembers":1,"NumVillages":7,"Points":15823,"AllPoints":15823,"Rank":110,"Dominance":0.012257691701542719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1652","BestRank":110,"BestRankAt":"2023-02-26T08:03:28.379572Z","MostPoints":15823,"MostPointsAt":"2023-02-26T08:03:28.379572Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379572Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":184,"ScoreAtt":2129,"RankDef":241,"ScoreDef":3203,"RankSup":0,"ScoreSup":0,"RankTotal":243,"ScoreTotal":5332,"ID":1656,"Name":"Robotniczy Klub Sportowy HUWDU","Tag":"HUWDU","NumMembers":1,"NumVillages":1,"Points":270,"AllPoints":270,"Rank":225,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1656","BestRank":225,"BestRankAt":"2023-02-26T08:03:28.379573Z","MostPoints":270,"MostPointsAt":"2023-02-26T08:03:28.379573Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379573Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":132,"ScoreAtt":38951,"RankDef":155,"ScoreDef":176879,"RankSup":0,"ScoreSup":0,"RankTotal":155,"ScoreTotal":215830,"ID":1657,"Name":"Xyz,","Tag":"Xyz,","NumMembers":1,"NumVillages":0,"Points":498,"AllPoints":498,"Rank":215,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1657","BestRank":215,"BestRankAt":"2023-02-26T08:03:28.379573Z","MostPoints":498,"MostPointsAt":"2023-02-26T08:03:28.379573Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379573Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":159,"ScoreAtt":9010,"RankDef":215,"ScoreDef":18439,"RankSup":0,"ScoreSup":0,"RankTotal":212,"ScoreTotal":32937,"ID":1669,"Name":"Mocny FULL","Tag":"FULL","NumMembers":5,"NumVillages":8,"Points":18721,"AllPoints":18721,"Rank":105,"Dominance":0.01400879051604882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1669","BestRank":105,"BestRankAt":"2023-02-26T08:03:28.379574Z","MostPoints":18721,"MostPointsAt":"2023-02-26T08:03:28.379574Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379574Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":213,"ScoreAtt":1,"RankDef":232,"ScoreDef":5467,"RankSup":0,"ScoreSup":0,"RankTotal":241,"ScoreTotal":5468,"ID":1672,"Name":"MKM.","Tag":"MKM.","NumMembers":1,"NumVillages":2,"Points":9572,"AllPoints":9572,"Rank":126,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1672","BestRank":126,"BestRankAt":"2023-02-26T08:03:28.379574Z","MostPoints":9572,"MostPointsAt":"2023-02-26T08:03:28.379574Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379574Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":93,"ScoreAtt":149155,"RankDef":170,"ScoreDef":97513,"RankSup":0,"ScoreSup":0,"RankTotal":150,"ScoreTotal":249572,"ID":1680,"Name":"Mymu","Tag":"My","NumMembers":2,"NumVillages":4,"Points":27342,"AllPoints":27342,"Rank":89,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1680","BestRank":89,"BestRankAt":"2023-02-26T08:03:28.379575Z","MostPoints":27342,"MostPointsAt":"2023-02-26T08:03:28.379575Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379575Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":144,"ScoreAtt":24465,"RankDef":196,"ScoreDef":45091,"RankSup":0,"ScoreSup":0,"RankTotal":189,"ScoreTotal":69556,"ID":1681,"Name":"fehg","Tag":"wwerj","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":280,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1681","BestRank":280,"BestRankAt":"2023-02-26T08:03:28.379575Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379575Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379575Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":186,"ScoreAtt":1682,"RankDef":182,"ScoreDef":62887,"RankSup":0,"ScoreSup":0,"RankTotal":195,"ScoreTotal":64569,"ID":1683,"Name":"......","Tag":"FIN","NumMembers":1,"NumVillages":9,"Points":49097,"AllPoints":49097,"Rank":73,"Dominance":0.015759889330554923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1683","BestRank":73,"BestRankAt":"2023-02-26T08:03:28.379576Z","MostPoints":49097,"MostPointsAt":"2023-02-26T08:03:28.379576Z","MostVillages":9,"MostVillagesAt":"2023-02-26T08:03:28.379576Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":185,"ScoreAtt":1713,"RankDef":166,"ScoreDef":117365,"RankSup":0,"ScoreSup":0,"RankTotal":173,"ScoreTotal":137468,"ID":1687,"Name":"SoSKooperacja","Tag":"SoS","NumMembers":7,"NumVillages":7,"Points":14738,"AllPoints":14738,"Rank":114,"Dominance":0.012257691701542719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1687","BestRank":114,"BestRankAt":"2023-02-26T08:03:28.37958Z","MostPoints":14738,"MostPointsAt":"2023-02-26T08:03:28.37958Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.37958Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":217,"ScoreDef":16936,"RankSup":0,"ScoreSup":0,"RankTotal":228,"ScoreTotal":16936,"ID":1690,"Name":"Nieƛmiertelni","Tag":"ookp","NumMembers":1,"NumVillages":1,"Points":2343,"AllPoints":2343,"Rank":177,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1690","BestRank":177,"BestRankAt":"2023-02-26T08:03:28.37958Z","MostPoints":2343,"MostPointsAt":"2023-02-26T08:03:28.379581Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37958Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":192,"ScoreAtt":370,"RankDef":177,"ScoreDef":73682,"RankSup":0,"ScoreSup":0,"RankTotal":188,"ScoreTotal":74052,"ID":1691,"Name":"Zbieram flagi","Tag":"Zbf","NumMembers":1,"NumVillages":4,"Points":7264,"AllPoints":7264,"Rank":140,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1691","BestRank":140,"BestRankAt":"2023-02-26T08:03:28.379581Z","MostPoints":7264,"MostPointsAt":"2023-02-26T08:03:28.379581Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379581Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":151,"ScoreAtt":17635,"RankDef":255,"ScoreDef":24,"RankSup":0,"ScoreSup":0,"RankTotal":226,"ScoreTotal":17659,"ID":1692,"Name":"Zapraszam chętnych","Tag":"Buuu","NumMembers":1,"NumVillages":1,"Points":5178,"AllPoints":5178,"Rank":152,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1692","BestRank":152,"BestRankAt":"2023-02-26T08:03:28.379581Z","MostPoints":5178,"MostPointsAt":"2023-02-26T08:03:28.379582Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379581Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":117,"ScoreAtt":67818,"RankDef":127,"ScoreDef":428102,"RankSup":0,"ScoreSup":0,"RankTotal":126,"ScoreTotal":575944,"ID":1700,"Name":"Fiku Miku","Tag":"FIUFIU","NumMembers":4,"NumVillages":70,"Points":367550,"AllPoints":367550,"Rank":38,"Dominance":0.12257691701542718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1700","BestRank":38,"BestRankAt":"2023-02-26T08:03:28.379582Z","MostPoints":367550,"MostPointsAt":"2023-02-26T08:03:28.379582Z","MostVillages":70,"MostVillagesAt":"2023-02-26T08:03:28.379582Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":254,"ScoreDef":62,"RankSup":0,"ScoreSup":0,"RankTotal":258,"ScoreTotal":62,"ID":1705,"Name":"Galaktyczna Federacja ƚwiatƂa","Tag":"GF II","NumMembers":1,"NumVillages":1,"Points":1609,"AllPoints":1609,"Rank":186,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1705","BestRank":186,"BestRankAt":"2023-02-26T08:03:28.379582Z","MostPoints":1609,"MostPointsAt":"2023-02-26T08:03:28.379583Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379583Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1707,"Name":"Koniec","Tag":"1234","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":256,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1707","BestRank":256,"BestRankAt":"2023-02-26T08:03:28.379583Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379583Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379583Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":230,"ScoreDef":6260,"RankSup":0,"ScoreSup":0,"RankTotal":239,"ScoreTotal":6946,"ID":1715,"Name":"R-C-","Tag":"RC","NumMembers":1,"NumVillages":2,"Points":5005,"AllPoints":5005,"Rank":153,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1715","BestRank":153,"BestRankAt":"2023-02-26T08:03:28.379583Z","MostPoints":5005,"MostPointsAt":"2023-02-26T08:03:28.379584Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379583Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":56,"ScoreAtt":523524,"RankDef":183,"ScoreDef":61350,"RankSup":0,"ScoreSup":0,"RankTotal":125,"ScoreTotal":584874,"ID":1716,"Name":"KOMORNIKI","Tag":"KOMY","NumMembers":2,"NumVillages":4,"Points":34258,"AllPoints":34258,"Rank":84,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1716","BestRank":84,"BestRankAt":"2023-02-26T08:03:28.379584Z","MostPoints":34258,"MostPointsAt":"2023-02-26T08:03:28.379584Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379584Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":175,"ScoreAtt":4371,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":247,"ScoreTotal":4371,"ID":1721,"Name":"Pocahontas","Tag":"Gg","NumMembers":1,"NumVillages":2,"Points":5823,"AllPoints":5823,"Rank":148,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1721","BestRank":148,"BestRankAt":"2023-02-26T08:03:28.379584Z","MostPoints":5823,"MostPointsAt":"2023-02-26T08:03:28.379585Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379584Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":78,"ScoreAtt":210586,"RankDef":107,"ScoreDef":692133,"RankSup":0,"ScoreSup":0,"RankTotal":106,"ScoreTotal":917830,"ID":1724,"Name":"Punkty Premium i Flagi","Tag":"Witamy","NumMembers":37,"NumVillages":64,"Points":251898,"AllPoints":251898,"Rank":43,"Dominance":0.11207032412839056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1724","BestRank":43,"BestRankAt":"2023-02-26T08:03:28.379585Z","MostPoints":251898,"MostPointsAt":"2023-02-26T08:03:28.379585Z","MostVillages":64,"MostVillagesAt":"2023-02-26T08:03:28.379585Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":226,"ScoreDef":7801,"RankSup":0,"ScoreSup":0,"RankTotal":237,"ScoreTotal":7801,"ID":1727,"Name":"Lykanie","Tag":"LK","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":281,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1727","BestRank":281,"BestRankAt":"2023-02-26T08:03:28.379585Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379586Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379586Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1728,"Name":"fffff","Tag":"fffff","NumMembers":1,"NumVillages":1,"Points":3440,"AllPoints":3440,"Rank":166,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1728","BestRank":166,"BestRankAt":"2023-02-26T08:03:28.379586Z","MostPoints":3440,"MostPointsAt":"2023-02-26T08:03:28.379586Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379586Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":199,"ScoreAtt":106,"RankDef":238,"ScoreDef":4434,"RankSup":0,"ScoreSup":0,"RankTotal":240,"ScoreTotal":6680,"ID":1729,"Name":"Gallowo","Tag":"GAL","NumMembers":1,"NumVillages":7,"Points":14794,"AllPoints":14794,"Rank":113,"Dominance":0.012257691701542719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1729","BestRank":113,"BestRankAt":"2023-02-26T08:03:28.379587Z","MostPoints":14794,"MostPointsAt":"2023-02-26T08:03:28.379587Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379587Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":180,"ScoreDef":64596,"RankSup":0,"ScoreSup":0,"RankTotal":194,"ScoreTotal":64596,"ID":1734,"Name":"Woir","Tag":"Wrrrr","NumMembers":1,"NumVillages":1,"Points":5703,"AllPoints":5703,"Rank":150,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1734","BestRank":150,"BestRankAt":"2023-02-26T08:03:28.379587Z","MostPoints":5703,"MostPointsAt":"2023-02-26T08:03:28.379587Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379587Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":70,"ScoreAtt":257705,"RankDef":157,"ScoreDef":164228,"RankSup":0,"ScoreSup":0,"RankTotal":136,"ScoreTotal":449124,"ID":1735,"Name":"Strong Ekipa","Tag":"SE","NumMembers":31,"NumVillages":114,"Points":404065,"AllPoints":404065,"Rank":34,"Dominance":0.19962526485369567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1735","BestRank":34,"BestRankAt":"2023-02-26T08:03:28.379591Z","MostPoints":404065,"MostPointsAt":"2023-02-26T08:03:28.379592Z","MostVillages":114,"MostVillagesAt":"2023-02-26T08:03:28.379592Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":189,"ScoreAtt":1032,"RankDef":160,"ScoreDef":139080,"RankSup":0,"ScoreSup":0,"RankTotal":171,"ScoreTotal":140112,"ID":1737,"Name":"Samiec Alfa","Tag":"Alfa","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":282,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1737","BestRank":282,"BestRankAt":"2023-02-26T08:03:28.379592Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379592Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379592Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":176,"ScoreDef":81019,"RankSup":0,"ScoreSup":0,"RankTotal":186,"ScoreTotal":81233,"ID":1740,"Name":"T.W.","Tag":"=TW=","NumMembers":1,"NumVillages":19,"Points":122227,"AllPoints":122227,"Rank":52,"Dominance":0.03327087747561595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1740","BestRank":52,"BestRankAt":"2023-02-26T08:03:28.379592Z","MostPoints":122227,"MostPointsAt":"2023-02-26T08:03:28.379593Z","MostVillages":19,"MostVillagesAt":"2023-02-26T08:03:28.379593Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":165,"ScoreAtt":7416,"RankDef":165,"ScoreDef":122707,"RankSup":0,"ScoreSup":0,"RankTotal":175,"ScoreTotal":130123,"ID":1745,"Name":"Dni w Plemieniu","Tag":"DWP","NumMembers":1,"NumVillages":2,"Points":15224,"AllPoints":15224,"Rank":112,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1745","BestRank":112,"BestRankAt":"2023-02-26T08:03:28.379593Z","MostPoints":15224,"MostPointsAt":"2023-02-26T08:03:28.379593Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379593Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":198,"ScoreDef":43707,"RankSup":0,"ScoreSup":0,"RankTotal":205,"ScoreTotal":43707,"ID":1750,"Name":"CZY TO X?","Tag":"Xx","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":283,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1750","BestRank":283,"BestRankAt":"2023-02-26T08:03:28.379593Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379594Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379594Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1751,"Name":"xddd","Tag":"xddd","NumMembers":1,"NumVillages":0,"Points":68,"AllPoints":68,"Rank":246,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1751","BestRank":246,"BestRankAt":"2023-02-26T08:03:28.379594Z","MostPoints":68,"MostPointsAt":"2023-02-26T08:03:28.379594Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379594Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":259,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":263,"ScoreTotal":2,"ID":1753,"Name":"eeee","Tag":"eeee","NumMembers":1,"NumVillages":1,"Points":774,"AllPoints":774,"Rank":202,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1753","BestRank":202,"BestRankAt":"2023-02-26T08:03:28.379594Z","MostPoints":774,"MostPointsAt":"2023-02-26T08:03:28.379595Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379595Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":257,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":262,"ScoreTotal":10,"ID":1754,"Name":"PogromcY","Tag":"PY","NumMembers":1,"NumVillages":1,"Points":1131,"AllPoints":1131,"Rank":195,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1754","BestRank":195,"BestRankAt":"2023-02-26T08:03:28.379595Z","MostPoints":1131,"MostPointsAt":"2023-02-26T08:03:28.379595Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379595Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":249,"ScoreDef":395,"RankSup":0,"ScoreSup":0,"RankTotal":254,"ScoreTotal":395,"ID":1755,"Name":"cudo","Tag":"C!!","NumMembers":1,"NumVillages":1,"Points":988,"AllPoints":988,"Rank":198,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1755","BestRank":198,"BestRankAt":"2023-02-26T08:03:28.379596Z","MostPoints":988,"MostPointsAt":"2023-02-26T08:03:28.379596Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379596Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":246,"ScoreDef":1278,"RankSup":0,"ScoreSup":0,"RankTotal":252,"ScoreTotal":1278,"ID":1757,"Name":"Lublin","Tag":"LUB","NumMembers":1,"NumVillages":1,"Points":1274,"AllPoints":1274,"Rank":190,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1757","BestRank":190,"BestRankAt":"2023-02-26T08:03:28.379596Z","MostPoints":1274,"MostPointsAt":"2023-02-26T08:03:28.379596Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379596Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":203,"ScoreDef":30079,"RankSup":0,"ScoreSup":0,"RankTotal":216,"ScoreTotal":30079,"ID":1758,"Name":"Oddam wioski","Tag":"OW","NumMembers":1,"NumVillages":5,"Points":25709,"AllPoints":25709,"Rank":91,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1758","BestRank":91,"BestRankAt":"2023-02-26T08:03:28.379596Z","MostPoints":25709,"MostPointsAt":"2023-02-26T08:03:28.379597Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379597Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":219,"ScoreTotal":27699,"ID":1760,"Name":"Qwer","Tag":"Qwe","NumMembers":1,"NumVillages":4,"Points":8366,"AllPoints":8366,"Rank":130,"Dominance":0.00700439525802441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1760","BestRank":130,"BestRankAt":"2023-02-26T08:03:28.379597Z","MostPoints":8366,"MostPointsAt":"2023-02-26T08:03:28.379597Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379597Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":212,"ScoreAtt":9,"RankDef":193,"ScoreDef":46590,"RankSup":0,"ScoreSup":0,"RankTotal":203,"ScoreTotal":46599,"ID":1763,"Name":"Altra","Tag":"ALR","NumMembers":1,"NumVillages":5,"Points":23924,"AllPoints":23924,"Rank":94,"Dominance":0.008755494072530514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1763","BestRank":94,"BestRankAt":"2023-02-26T08:03:28.379598Z","MostPoints":23924,"MostPointsAt":"2023-02-26T08:03:28.379598Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379598Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1764,"Name":"Traktor","Tag":"TRK","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":257,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1764","BestRank":257,"BestRankAt":"2023-02-26T08:03:28.379598Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379598Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379598Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":253,"ScoreDef":124,"RankSup":0,"ScoreSup":0,"RankTotal":257,"ScoreTotal":124,"ID":1770,"Name":"ooooo","Tag":"ooo","NumMembers":1,"NumVillages":1,"Points":153,"AllPoints":153,"Rank":239,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1770","BestRank":239,"BestRankAt":"2023-02-26T08:03:28.379599Z","MostPoints":153,"MostPointsAt":"2023-02-26T08:03:28.379599Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379599Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":188,"ScoreDef":52625,"RankSup":0,"ScoreSup":0,"RankTotal":199,"ScoreTotal":52625,"ID":1771,"Name":"WD40","Tag":"30","NumMembers":1,"NumVillages":2,"Points":6944,"AllPoints":6944,"Rank":142,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1771","BestRank":142,"BestRankAt":"2023-02-26T08:03:28.379599Z","MostPoints":6944,"MostPointsAt":"2023-02-26T08:03:28.379599Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379599Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":236,"ScoreDef":4774,"RankSup":0,"ScoreSup":0,"RankTotal":245,"ScoreTotal":4774,"ID":1772,"Name":"Jdhd","Tag":"Hdhdh","NumMembers":1,"NumVillages":1,"Points":2516,"AllPoints":2516,"Rank":175,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1772","BestRank":175,"BestRankAt":"2023-02-26T08:03:28.379606Z","MostPoints":2516,"MostPointsAt":"2023-02-26T08:03:28.379607Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379606Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":256,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":261,"ScoreTotal":10,"ID":1777,"Name":"Chlip","Tag":"CHP","NumMembers":1,"NumVillages":1,"Points":998,"AllPoints":998,"Rank":197,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1777","BestRank":197,"BestRankAt":"2023-02-26T08:03:28.379607Z","MostPoints":998,"MostPointsAt":"2023-02-26T08:03:28.379607Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379607Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":252,"ScoreDef":207,"RankSup":0,"ScoreSup":0,"RankTotal":256,"ScoreTotal":207,"ID":1779,"Name":"1905","Tag":"CWKS","NumMembers":1,"NumVillages":2,"Points":7537,"AllPoints":7537,"Rank":135,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1779","BestRank":135,"BestRankAt":"2023-02-26T08:03:28.379607Z","MostPoints":7537,"MostPointsAt":"2023-02-26T08:03:28.379607Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379607Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":94,"ScoreAtt":142522,"RankDef":57,"ScoreDef":3095378,"RankSup":0,"ScoreSup":0,"RankTotal":60,"ScoreTotal":3642793,"ID":1780,"Name":"Lololololol","Tag":"Lol","NumMembers":2,"NumVillages":3,"Points":21393,"AllPoints":21393,"Rank":97,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1780","BestRank":97,"BestRankAt":"2023-02-26T08:03:28.379608Z","MostPoints":21393,"MostPointsAt":"2023-02-26T08:03:28.379608Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379608Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1782,"Name":"disco","Tag":"dsc","NumMembers":1,"NumVillages":1,"Points":639,"AllPoints":639,"Rank":208,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1782","BestRank":208,"BestRankAt":"2023-02-26T08:03:28.379608Z","MostPoints":639,"MostPointsAt":"2023-02-26T08:03:28.379608Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379608Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":204,"ScoreAtt":50,"RankDef":258,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":259,"ScoreTotal":52,"ID":1783,"Name":"Niszczycielski Akwedukt","Tag":"NA","NumMembers":2,"NumVillages":2,"Points":1681,"AllPoints":1681,"Rank":183,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1783","BestRank":183,"BestRankAt":"2023-02-26T08:03:28.379609Z","MostPoints":1681,"MostPointsAt":"2023-02-26T08:03:28.379609Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379609Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":195,"ScoreAtt":296,"RankDef":244,"ScoreDef":1409,"RankSup":0,"ScoreSup":0,"RankTotal":250,"ScoreTotal":1705,"ID":1785,"Name":"HELLO","Tag":"HELLO","NumMembers":2,"NumVillages":2,"Points":1237,"AllPoints":1237,"Rank":191,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1785","BestRank":191,"BestRankAt":"2023-02-26T08:03:28.379609Z","MostPoints":1237,"MostPointsAt":"2023-02-26T08:03:28.379609Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379609Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1786,"Name":"Pomyƛl zanim kopniesz Qunia","Tag":"QƄ.","NumMembers":1,"NumVillages":1,"Points":3883,"AllPoints":3883,"Rank":162,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1786","BestRank":162,"BestRankAt":"2023-02-26T08:03:28.37961Z","MostPoints":3883,"MostPointsAt":"2023-02-26T08:03:28.37961Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37961Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1787,"Name":"WCF !","Tag":"WCF","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":258,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1787","BestRank":258,"BestRankAt":"2023-02-26T08:03:28.37961Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.37961Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37961Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1789,"Name":"klin","Tag":"lki","NumMembers":1,"NumVillages":0,"Points":239,"AllPoints":239,"Rank":230,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1789","BestRank":230,"BestRankAt":"2023-02-26T08:03:28.379611Z","MostPoints":239,"MostPointsAt":"2023-02-26T08:03:28.379611Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379611Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":126,"ScoreAtt":43136,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":206,"ScoreTotal":43136,"ID":1790,"Name":"Kruk","Tag":"-KR-","NumMembers":1,"NumVillages":8,"Points":32971,"AllPoints":32971,"Rank":86,"Dominance":0.01400879051604882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1790","BestRank":86,"BestRankAt":"2023-02-26T08:03:28.379611Z","MostPoints":32971,"MostPointsAt":"2023-02-26T08:03:28.379612Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379612Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1791,"Name":"Wymiana","Tag":"Flagi","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":259,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1791","BestRank":259,"BestRankAt":"2023-02-26T08:03:28.379612Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379612Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379612Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1792,"Name":"Winners","Tag":"Win","NumMembers":1,"NumVillages":1,"Points":371,"AllPoints":371,"Rank":218,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1792","BestRank":218,"BestRankAt":"2023-02-26T08:03:28.379612Z","MostPoints":371,"MostPointsAt":"2023-02-26T08:03:28.379613Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379613Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":106,"ScoreAtt":91636,"RankDef":231,"ScoreDef":5563,"RankSup":0,"ScoreSup":0,"RankTotal":181,"ScoreTotal":97199,"ID":1793,"Name":"Sam1","Tag":"Sam1","NumMembers":1,"NumVillages":11,"Points":67321,"AllPoints":67321,"Rank":65,"Dominance":0.01926208695956713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1793","BestRank":65,"BestRankAt":"2023-02-26T08:03:28.379613Z","MostPoints":67321,"MostPointsAt":"2023-02-26T08:03:28.379613Z","MostVillages":11,"MostVillagesAt":"2023-02-26T08:03:28.379613Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":206,"ScoreAtt":40,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":260,"ScoreTotal":40,"ID":1795,"Name":"Kukabaka","Tag":"kUKLA","NumMembers":2,"NumVillages":2,"Points":562,"AllPoints":562,"Rank":210,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1795","BestRank":210,"BestRankAt":"2023-02-26T08:03:28.379613Z","MostPoints":562,"MostPointsAt":"2023-02-26T08:03:28.379614Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379614Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":219,"ScoreDef":15811,"RankSup":0,"ScoreSup":0,"RankTotal":227,"ScoreTotal":17184,"ID":1797,"Name":"MiƂoƛnicy Taniego Piwa","Tag":"Browar","NumMembers":18,"NumVillages":19,"Points":21004,"AllPoints":21004,"Rank":98,"Dominance":0.03327087747561595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1797","BestRank":98,"BestRankAt":"2023-02-26T08:03:28.379617Z","MostPoints":21004,"MostPointsAt":"2023-02-26T08:03:28.379617Z","MostVillages":19,"MostVillagesAt":"2023-02-26T08:03:28.379617Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1798,"Name":"Gggg","Tag":"Ggg","NumMembers":1,"NumVillages":1,"Points":4773,"AllPoints":4773,"Rank":154,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1798","BestRank":154,"BestRankAt":"2023-02-26T08:03:28.379617Z","MostPoints":4773,"MostPointsAt":"2023-02-26T08:03:28.379618Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379618Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1799,"Name":"Kkkkk","Tag":"Kkkkk","NumMembers":2,"NumVillages":2,"Points":52,"AllPoints":52,"Rank":247,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1799","BestRank":247,"BestRankAt":"2023-02-26T08:03:28.379618Z","MostPoints":52,"MostPointsAt":"2023-02-26T08:03:28.379618Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379618Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1802,"Name":"weRFAS","Tag":"DFSAFS","NumMembers":2,"NumVillages":2,"Points":103,"AllPoints":103,"Rank":244,"Dominance":0.003502197629012205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1802","BestRank":244,"BestRankAt":"2023-02-26T08:03:28.379619Z","MostPoints":103,"MostPointsAt":"2023-02-26T08:03:28.379619Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379619Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1803,"Name":"czarnuchowo","Tag":"WPDS","NumMembers":1,"NumVillages":1,"Points":162,"AllPoints":162,"Rank":238,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1803","BestRank":238,"BestRankAt":"2023-02-26T08:03:28.379619Z","MostPoints":162,"MostPointsAt":"2023-02-26T08:03:28.379619Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379619Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1804,"Name":"12345","Tag":"12345","NumMembers":3,"NumVillages":3,"Points":78,"AllPoints":78,"Rank":245,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1804","BestRank":245,"BestRankAt":"2023-02-26T08:03:28.37962Z","MostPoints":78,"MostPointsAt":"2023-02-26T08:03:28.37962Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37962Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1806,"Name":"Kto zjadƂ ciastka?","Tag":"KZC?","NumMembers":1,"NumVillages":1,"Points":206,"AllPoints":206,"Rank":231,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1806","BestRank":231,"BestRankAt":"2023-02-26T08:03:28.37962Z","MostPoints":206,"MostPointsAt":"2023-02-26T08:03:28.37962Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37962Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1807,"Name":"ZaPPFrakcja W","Tag":"CSA-W","NumMembers":1,"NumVillages":0,"Points":443,"AllPoints":443,"Rank":217,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1807","BestRank":217,"BestRankAt":"2023-02-26T08:03:28.379621Z","MostPoints":443,"MostPointsAt":"2023-02-26T08:03:28.379621Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379621Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1808,"Name":"LECOQ","Tag":"LECOQ","NumMembers":1,"NumVillages":3,"Points":20560,"AllPoints":20560,"Rank":99,"Dominance":0.005253296443518308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1808","BestRank":99,"BestRankAt":"2023-02-26T08:03:28.379621Z","MostPoints":20560,"MostPointsAt":"2023-02-26T08:03:28.379621Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379621Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1809,"Name":"Vexel","Tag":"Vexel","NumMembers":1,"NumVillages":1,"Points":178,"AllPoints":178,"Rank":234,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1809","BestRank":234,"BestRankAt":"2023-02-26T08:03:28.379622Z","MostPoints":178,"MostPointsAt":"2023-02-26T08:03:28.379622Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379622Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1810,"Name":"Sobie Sam","Tag":"SS","NumMembers":1,"NumVillages":1,"Points":172,"AllPoints":172,"Rank":235,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1810","BestRank":235,"BestRankAt":"2023-02-26T08:03:28.379622Z","MostPoints":172,"MostPointsAt":"2023-02-26T08:03:28.379622Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379622Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"}] diff --git a/internal/service/testdata/syncdata/stage1/expected/villages.json b/internal/service/testdata/syncdata/stage1/expected/villages.json new file mode 100644 index 0000000..3b9a3e3 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/expected/villages.json @@ -0,0 +1 @@ +[{"ID":1,"Name":"2. Tortoise **","Points":7834,"X":493,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313579Z"},{"ID":2,"Name":"0041 K54 and987 OZDR.","Points":9861,"X":490,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31358Z"},{"ID":3,"Name":"Ateny_62","Points":9835,"X":472,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31358Z"},{"ID":4,"Name":"AR_Madzia","Points":5836,"X":466,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313581Z"},{"ID":5,"Name":"013","Points":9899,"X":475,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313581Z"},{"ID":6,"Name":"Wioska barbarzyƄska","Points":6573,"X":516,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313582Z"},{"ID":7,"Name":"024","Points":2945,"X":463,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313582Z"},{"ID":8,"Name":"Winter is coming","Points":2111,"X":438,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313582Z"},{"ID":9,"Name":"*Ateny_41","Points":9638,"X":470,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313583Z"},{"ID":10,"Name":"amator","Points":11550,"X":524,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313583Z"},{"ID":11,"Name":"*Ateny_15","Points":3464,"X":471,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313583Z"},{"ID":12,"Name":"NOT?","Points":10042,"X":430,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313584Z"},{"ID":13,"Name":"Front_19","Points":9638,"X":456,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313584Z"},{"ID":14,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":422,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313584Z"},{"ID":15,"Name":"Front_12","Points":4025,"X":458,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313585Z"},{"ID":16,"Name":"Daleko 030","Points":8744,"X":473,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313585Z"},{"ID":17,"Name":"Wioska barbarzyƄska","Points":1248,"X":454,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313585Z"},{"ID":18,"Name":"Lord Arsey KING","Points":10285,"X":522,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313586Z"},{"ID":19,"Name":"*Ateny_08","Points":9638,"X":470,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313586Z"},{"ID":20,"Name":"*Ateny_29","Points":3497,"X":465,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313586Z"},{"ID":21,"Name":"NOT!","Points":10042,"X":468,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313587Z"},{"ID":22,"Name":"amfa fatima","Points":10008,"X":448,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313587Z"},{"ID":23,"Name":"020","Points":6783,"X":472,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313588Z"},{"ID":24,"Name":"*Ateny_48","Points":8744,"X":466,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313588Z"},{"ID":25,"Name":"*Ateny_27","Points":9638,"X":479,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313588Z"},{"ID":26,"Name":"PRO8L3M","Points":10242,"X":478,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313589Z"},{"ID":27,"Name":"Lucky Strike","Points":9835,"X":497,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313589Z"},{"ID":28,"Name":"A 012.","Points":9894,"X":433,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31359Z"},{"ID":29,"Name":"Lynortis","Points":9558,"X":464,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31359Z"},{"ID":30,"Name":"08 Belgia","Points":8169,"X":587,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31359Z"},{"ID":31,"Name":"keepo","Points":5373,"X":475,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31359Z"},{"ID":32,"Name":"012","Points":3812,"X":473,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313591Z"},{"ID":33,"Name":"DROGA BEZ POWROTU","Points":10728,"X":539,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313591Z"},{"ID":34,"Name":"5. Koszutka","Points":10330,"X":481,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313591Z"},{"ID":35,"Name":"Suppi","Points":9556,"X":445,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313592Z"},{"ID":36,"Name":"keepo","Points":10252,"X":482,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313592Z"},{"ID":37,"Name":"Aleartis","Points":9711,"X":481,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313593Z"},{"ID":38,"Name":"KIELBA 084","Points":10384,"X":455,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313593Z"},{"ID":39,"Name":"051","Points":10042,"X":419,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313593Z"},{"ID":40,"Name":"Village","Points":11481,"X":491,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313593Z"},{"ID":41,"Name":"ƚmieszkii","Points":9064,"X":520,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313594Z"},{"ID":42,"Name":"POGRZEB GRUBYCH","Points":9455,"X":540,"Y":446,"Continent":"K45","Bonus":7,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313594Z"},{"ID":43,"Name":"031","Points":10060,"X":479,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313594Z"},{"ID":44,"Name":"Szlachcic","Points":10237,"X":577,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313595Z"},{"ID":45,"Name":"0006","Points":10495,"X":496,"Y":501,"Continent":"K54","Bonus":3,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313595Z"},{"ID":46,"Name":"Wioska barbarzyƄska","Points":10481,"X":398,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313595Z"},{"ID":47,"Name":"~054.","Points":10495,"X":497,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313596Z"},{"ID":48,"Name":"006 Tokio","Points":9718,"X":619,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313596Z"},{"ID":49,"Name":"Ateny_74","Points":7122,"X":470,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313596Z"},{"ID":50,"Name":"[109] North9","Points":10218,"X":574,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313597Z"},{"ID":51,"Name":"*Ateny_46","Points":9638,"X":474,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313597Z"},{"ID":52,"Name":"119.","Points":6345,"X":494,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313597Z"},{"ID":53,"Name":"012","Points":10495,"X":609,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313598Z"},{"ID":54,"Name":"B062","Points":8502,"X":472,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313598Z"},{"ID":55,"Name":"Yogi","Points":9983,"X":485,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313599Z"},{"ID":56,"Name":"F067","Points":9251,"X":489,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313599Z"},{"ID":57,"Name":"Szlachcic","Points":10295,"X":485,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313599Z"},{"ID":58,"Name":"030","Points":9631,"X":478,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3136Z"},{"ID":59,"Name":"NOT!","Points":6994,"X":467,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3136Z"},{"ID":60,"Name":"Alien!","Points":9835,"X":499,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3136Z"},{"ID":61,"Name":"keepo","Points":10495,"X":484,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3136Z"},{"ID":62,"Name":"#0047 SamobĂłj","Points":10000,"X":489,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=62","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313601Z"},{"ID":63,"Name":"061 Finlandia","Points":10495,"X":572,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=63","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313601Z"},{"ID":64,"Name":"1. Is-7 !!!","Points":9820,"X":491,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=64","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313601Z"},{"ID":65,"Name":"K44 008","Points":6772,"X":426,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=65","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313602Z"},{"ID":66,"Name":"*INTERTWINED*","Points":9711,"X":478,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=66","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313602Z"},{"ID":67,"Name":"Jungle Boyz!","Points":9835,"X":495,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=67","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313602Z"},{"ID":68,"Name":"F091","Points":10019,"X":481,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=68","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313603Z"},{"ID":69,"Name":"K55","Points":10252,"X":538,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=69","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313603Z"},{"ID":70,"Name":"*Ateny_51","Points":9638,"X":461,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=70","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313604Z"},{"ID":71,"Name":"~~LatającyHolender~~","Points":10144,"X":587,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=71","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313604Z"},{"ID":72,"Name":"Lynortis","Points":11824,"X":466,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":849001724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=72","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313604Z"},{"ID":73,"Name":"003","Points":9202,"X":562,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=73","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313605Z"},{"ID":74,"Name":"#0048 Tajemnica Poliszynela","Points":10003,"X":485,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=74","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313605Z"},{"ID":75,"Name":"002","Points":10160,"X":431,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=75","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313606Z"},{"ID":76,"Name":"012","Points":2640,"X":462,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=76","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313606Z"},{"ID":77,"Name":"AbacadA 009","Points":10495,"X":558,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=77","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313606Z"},{"ID":78,"Name":"0096","Points":9014,"X":464,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=78","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313607Z"},{"ID":79,"Name":"Wioska BarbarzyƄska","Points":9889,"X":547,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=79","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313607Z"},{"ID":80,"Name":"CHW#028","Points":10495,"X":480,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=80","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313607Z"},{"ID":81,"Name":"Szlachcic","Points":9885,"X":486,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=81","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313608Z"},{"ID":82,"Name":"0065","Points":10495,"X":487,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=82","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313608Z"},{"ID":83,"Name":"Brat447","Points":10559,"X":454,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=83","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313608Z"},{"ID":84,"Name":"Yogi","Points":9983,"X":485,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=84","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313608Z"},{"ID":85,"Name":"CHW#046","Points":5000,"X":481,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=85","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313609Z"},{"ID":86,"Name":"CALL 1017","Points":10311,"X":553,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=86","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313609Z"},{"ID":87,"Name":"SsSs","Points":10002,"X":457,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=87","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313609Z"},{"ID":88,"Name":"05 California","Points":10728,"X":469,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=88","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31361Z"},{"ID":89,"Name":"PRO8L3M","Points":9976,"X":461,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=89","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31361Z"},{"ID":90,"Name":"NOT?","Points":10042,"X":417,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=90","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313611Z"},{"ID":91,"Name":"Brat447","Points":10720,"X":463,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=91","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313611Z"},{"ID":92,"Name":"lady","Points":10455,"X":494,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=92","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313611Z"},{"ID":93,"Name":"0013","Points":10495,"X":509,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=93","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313612Z"},{"ID":94,"Name":"135 Puebla","Points":9761,"X":479,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=94","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313612Z"},{"ID":95,"Name":"Ręcznik do zmiany","Points":10495,"X":382,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=95","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313612Z"},{"ID":96,"Name":"Monetki","Points":10295,"X":474,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=96","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313613Z"},{"ID":98,"Name":"NOT?","Points":10042,"X":417,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=98","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313613Z"},{"ID":99,"Name":"0052","Points":10495,"X":519,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=99","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313614Z"},{"ID":100,"Name":"Lord Arsey KING","Points":9417,"X":520,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313614Z"},{"ID":101,"Name":"0207","Points":10019,"X":534,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313615Z"},{"ID":102,"Name":"PRO8L3M","Points":10311,"X":464,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313615Z"},{"ID":103,"Name":"Horyzont zdarzeƄ","Points":9835,"X":519,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313615Z"},{"ID":104,"Name":"Winter is coming","Points":2034,"X":444,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313616Z"},{"ID":105,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313616Z"},{"ID":106,"Name":"Monetki","Points":10295,"X":483,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313617Z"},{"ID":107,"Name":"021N Lord Alexxx","Points":10143,"X":577,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313617Z"},{"ID":108,"Name":"063. ALFI","Points":1468,"X":474,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313617Z"},{"ID":109,"Name":"Lord Arsey KING","Points":10285,"X":531,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313618Z"},{"ID":110,"Name":"Osada","Points":10295,"X":499,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313618Z"},{"ID":111,"Name":"Kasyno","Points":9902,"X":440,"Y":510,"Continent":"K54","Bonus":7,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313618Z"},{"ID":112,"Name":"0052 K55 and987 OZDR","Points":10083,"X":509,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313619Z"},{"ID":113,"Name":"- 037 -","Points":10000,"X":534,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313619Z"},{"ID":114,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9827,"X":458,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313619Z"},{"ID":115,"Name":"Brat447","Points":6984,"X":460,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31362Z"},{"ID":116,"Name":"Szlachcic","Points":10311,"X":491,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31362Z"},{"ID":117,"Name":"Village","Points":11321,"X":502,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31362Z"},{"ID":118,"Name":"MAXX","Points":9835,"X":496,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313621Z"},{"ID":119,"Name":"Wioska BarbarzyƄska","Points":10019,"X":546,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313621Z"},{"ID":120,"Name":"Szlachcic","Points":9690,"X":495,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313621Z"},{"ID":121,"Name":"Szlachcic","Points":10294,"X":489,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313622Z"},{"ID":122,"Name":"0115","Points":10019,"X":469,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313622Z"},{"ID":123,"Name":"030 |","Points":9957,"X":553,"Y":534,"Continent":"K55","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313622Z"},{"ID":124,"Name":"Szlachcic","Points":9957,"X":487,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313623Z"},{"ID":125,"Name":"Bagdad","Points":10654,"X":477,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313623Z"},{"ID":126,"Name":"Szlachcic","Points":10311,"X":498,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313624Z"},{"ID":127,"Name":"0015","Points":9860,"X":508,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313624Z"},{"ID":128,"Name":"Szlachcic","Points":10292,"X":488,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313624Z"},{"ID":129,"Name":"Mzm48","Points":7447,"X":553,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313625Z"},{"ID":130,"Name":"A001","Points":10495,"X":490,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313625Z"},{"ID":131,"Name":"CHW#027r","Points":9711,"X":484,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313625Z"},{"ID":132,"Name":"161 Belo Horizonte","Points":9761,"X":482,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313626Z"},{"ID":133,"Name":"#0068 Robert L","Points":10014,"X":498,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313626Z"},{"ID":134,"Name":"Szlachcic","Points":9637,"X":500,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313626Z"},{"ID":135,"Name":"PRO8L3M","Points":10178,"X":421,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313627Z"},{"ID":136,"Name":"0003 smarfa","Points":10019,"X":501,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313627Z"},{"ID":137,"Name":"CALL 953","Points":10311,"X":546,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313628Z"},{"ID":138,"Name":"x Cast Away 001","Points":8861,"X":457,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313628Z"},{"ID":139,"Name":"005","Points":10807,"X":510,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313628Z"},{"ID":140,"Name":"#0046 Nero","Points":10000,"X":497,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313629Z"},{"ID":141,"Name":"#0105 OrchĂłwek","Points":9780,"X":481,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313629Z"},{"ID":142,"Name":"makelovenotwar5","Points":10068,"X":392,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31363Z"},{"ID":143,"Name":"CALL 1046","Points":10311,"X":540,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31363Z"},{"ID":144,"Name":"30001","Points":11087,"X":490,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31363Z"},{"ID":145,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":434,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313631Z"},{"ID":146,"Name":"F028","Points":10003,"X":486,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313631Z"},{"ID":147,"Name":"10*","Points":7548,"X":571,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313631Z"},{"ID":148,"Name":"Jaaa","Points":10487,"X":578,"Y":541,"Continent":"K55","Bonus":3,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313631Z"},{"ID":149,"Name":"#0034 Turbocola","Points":10000,"X":495,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313632Z"},{"ID":150,"Name":"2. Su !!!","Points":9823,"X":496,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313632Z"},{"ID":151,"Name":"2. Obj 261 !!!","Points":10362,"X":496,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313632Z"},{"ID":152,"Name":"#0080 Czas to puƂapka","Points":10003,"X":485,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313633Z"},{"ID":153,"Name":"PiekƂo to inni","Points":10160,"X":522,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313633Z"},{"ID":154,"Name":"PiekƂo to inni","Points":6639,"X":525,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313634Z"},{"ID":155,"Name":"CALL 980","Points":10544,"X":550,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313634Z"},{"ID":156,"Name":"Ɓyk i buch!","Points":10401,"X":493,"Y":510,"Continent":"K54","Bonus":9,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313635Z"},{"ID":157,"Name":"NOT!","Points":9310,"X":466,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313635Z"},{"ID":158,"Name":"Szlachcic","Points":9882,"X":502,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313635Z"},{"ID":159,"Name":"HCG","Points":10495,"X":622,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313636Z"},{"ID":160,"Name":"Yogi","Points":7386,"X":517,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313636Z"},{"ID":161,"Name":"*008*","Points":8614,"X":620,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313637Z"},{"ID":162,"Name":"OBTW","Points":3239,"X":433,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313637Z"},{"ID":163,"Name":"Szlachcic","Points":8958,"X":510,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313637Z"},{"ID":164,"Name":"SsSs","Points":7524,"X":422,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313638Z"},{"ID":165,"Name":"10 Backstage","Points":9713,"X":615,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313638Z"},{"ID":166,"Name":"Osada","Points":10292,"X":498,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313638Z"},{"ID":167,"Name":"Kielce","Points":9835,"X":590,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313639Z"},{"ID":168,"Name":"F033","Points":9701,"X":491,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313639Z"},{"ID":169,"Name":"015.","Points":10019,"X":599,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313639Z"},{"ID":170,"Name":"Winter is coming","Points":2551,"X":435,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313639Z"},{"ID":171,"Name":"Suppi","Points":9549,"X":441,"Y":530,"Continent":"K54","Bonus":8,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31364Z"},{"ID":172,"Name":"Handel","Points":10237,"X":508,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31364Z"},{"ID":173,"Name":"Village","Points":10559,"X":505,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313641Z"},{"ID":174,"Name":"Wioska Edwardes","Points":10083,"X":599,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313641Z"},{"ID":175,"Name":"0076","Points":10495,"X":602,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313641Z"},{"ID":176,"Name":"Krab Oceaniczny","Points":8035,"X":475,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313641Z"},{"ID":177,"Name":"PiekƂo to inni","Points":10019,"X":512,"Y":477,"Continent":"K45","Bonus":6,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313642Z"},{"ID":178,"Name":"podgrzybek","Points":9962,"X":598,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313642Z"},{"ID":179,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":450,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313642Z"},{"ID":180,"Name":"Taran 004","Points":10311,"X":617,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313643Z"},{"ID":181,"Name":"F008","Points":9747,"X":507,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313643Z"},{"ID":182,"Name":"rakieta 012","Points":9819,"X":625,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313643Z"},{"ID":183,"Name":"044.","Points":10252,"X":509,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313644Z"},{"ID":184,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313644Z"},{"ID":185,"Name":"032","Points":10047,"X":592,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313644Z"},{"ID":186,"Name":"001. Ragnar","Points":10252,"X":585,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313645Z"},{"ID":187,"Name":"Joms 030","Points":9708,"X":521,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313645Z"},{"ID":189,"Name":"Wioska barbarzyƄska","Points":2866,"X":532,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313645Z"},{"ID":190,"Name":"sƂodziuteƄka 09","Points":10160,"X":604,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313646Z"},{"ID":191,"Name":"PóƂnoc","Points":10093,"X":607,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313646Z"},{"ID":192,"Name":"YES?","Points":3955,"X":458,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313646Z"},{"ID":193,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":589,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313647Z"},{"ID":194,"Name":"Jaaa","Points":10236,"X":589,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313647Z"},{"ID":195,"Name":"003. NH STREET","Points":8814,"X":614,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313647Z"},{"ID":196,"Name":"A.181.00","Points":10242,"X":598,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313648Z"},{"ID":197,"Name":"Wioska barbarzyƄska","Points":10008,"X":446,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313648Z"},{"ID":198,"Name":"sƂodziuteƄka 01","Points":9740,"X":603,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313648Z"},{"ID":199,"Name":"013","Points":9899,"X":525,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313649Z"},{"ID":200,"Name":"Lord Arsey KING","Points":10285,"X":512,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313649Z"},{"ID":201,"Name":"023","Points":10478,"X":456,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313649Z"},{"ID":202,"Name":"#0001 Amegakure","Points":9761,"X":527,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313649Z"},{"ID":203,"Name":"Lord Arsey KING","Points":10285,"X":529,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31365Z"},{"ID":204,"Name":"010. Czomolungma","Points":10495,"X":602,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31365Z"},{"ID":205,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":570,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31365Z"},{"ID":206,"Name":"PiekƂo to inni","Points":6331,"X":524,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313651Z"},{"ID":207,"Name":":cc","Points":10019,"X":541,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313651Z"},{"ID":208,"Name":"[001] Drep Big *","Points":10290,"X":604,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313651Z"},{"ID":209,"Name":"Mzm06","Points":10362,"X":613,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313652Z"},{"ID":210,"Name":"Wioska 3","Points":4383,"X":529,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313652Z"},{"ID":211,"Name":"Wioska 17ohly17","Points":9681,"X":596,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313653Z"},{"ID":212,"Name":"Creep","Points":9528,"X":594,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313653Z"},{"ID":213,"Name":"SsSs","Points":4660,"X":460,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313653Z"},{"ID":214,"Name":"ƁomĆŒa","Points":9324,"X":588,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313653Z"},{"ID":215,"Name":"yogi","Points":7444,"X":526,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313654Z"},{"ID":216,"Name":"0011","Points":10019,"X":505,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313654Z"},{"ID":217,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":507,"Continent":"K55","Bonus":4,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313655Z"},{"ID":218,"Name":"Wioska Dziadzi","Points":3421,"X":600,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":848963236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313655Z"},{"ID":219,"Name":"Jaaa","Points":10479,"X":568,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313655Z"},{"ID":220,"Name":"Essa 002","Points":10216,"X":573,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313655Z"},{"ID":221,"Name":"-015-","Points":10351,"X":465,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313656Z"},{"ID":222,"Name":"AnioƂ soli","Points":9761,"X":603,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313656Z"},{"ID":223,"Name":"Szlachcic","Points":10291,"X":485,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313657Z"},{"ID":224,"Name":"Essa 003 Magdula","Points":10237,"X":568,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313657Z"},{"ID":225,"Name":"Kiedyƛ Wielki Wojownik","Points":9711,"X":398,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313657Z"},{"ID":226,"Name":"012 Lucek ville","Points":10495,"X":603,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313657Z"},{"ID":227,"Name":"048","Points":10495,"X":586,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313658Z"},{"ID":228,"Name":"081","Points":10093,"X":612,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313658Z"},{"ID":229,"Name":"SsSs","Points":10160,"X":452,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313658Z"},{"ID":230,"Name":"Wioska barbarzyƄska","Points":9478,"X":484,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313659Z"},{"ID":231,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313659Z"},{"ID":232,"Name":"#0074 Ɓąka","Points":10019,"X":492,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31366Z"},{"ID":233,"Name":"061.","Points":7301,"X":513,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31366Z"},{"ID":234,"Name":"*012*","Points":8501,"X":608,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31366Z"},{"ID":235,"Name":"-[027]- Rakaposhi","Points":7596,"X":562,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31366Z"},{"ID":236,"Name":"002","Points":8024,"X":509,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313661Z"},{"ID":238,"Name":"Szlachcic","Points":10291,"X":487,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313661Z"},{"ID":239,"Name":"NOT?","Points":3471,"X":461,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313661Z"},{"ID":240,"Name":"Szlachcic","Points":9620,"X":498,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313662Z"},{"ID":241,"Name":"025","Points":10129,"X":415,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313662Z"},{"ID":242,"Name":"Wioska FKG007","Points":9835,"X":421,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313662Z"},{"ID":243,"Name":"Szlachcic","Points":10292,"X":487,"Y":476,"Continent":"K44","Bonus":5,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313663Z"},{"ID":244,"Name":"s181eo01","Points":9894,"X":393,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313663Z"},{"ID":245,"Name":"Wioska barbarzyƄska","Points":9817,"X":499,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313663Z"},{"ID":247,"Name":"Gdybys Kiedyƛ","Points":9835,"X":500,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313664Z"},{"ID":249,"Name":"~~LatającyHolender~~","Points":10144,"X":584,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313664Z"},{"ID":251,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9835,"X":462,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313664Z"},{"ID":253,"Name":"Suppi","Points":9570,"X":425,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313665Z"},{"ID":255,"Name":"keepo","Points":10016,"X":484,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313665Z"},{"ID":256,"Name":"Pf Konfederacja","Points":9740,"X":482,"Y":496,"Continent":"K44","Bonus":5,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313666Z"},{"ID":257,"Name":"001","Points":9964,"X":385,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313666Z"},{"ID":258,"Name":"Suppi","Points":9551,"X":444,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313666Z"},{"ID":259,"Name":"0080","Points":8139,"X":465,"Y":554,"Continent":"K54","Bonus":5,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313666Z"},{"ID":260,"Name":"#0127 Fascynacja","Points":6988,"X":495,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313667Z"},{"ID":261,"Name":"038.","Points":10252,"X":554,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313667Z"},{"ID":262,"Name":"[0001]","Points":10495,"X":458,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313667Z"},{"ID":263,"Name":"059","Points":10495,"X":552,"Y":430,"Continent":"K45","Bonus":6,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313668Z"},{"ID":264,"Name":"Szulernia","Points":10053,"X":418,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313668Z"},{"ID":266,"Name":"Yogi","Points":10019,"X":515,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313668Z"},{"ID":268,"Name":"Suppi","Points":8617,"X":444,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313669Z"},{"ID":270,"Name":".:021:. Chilout","Points":8227,"X":510,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313669Z"},{"ID":271,"Name":"A001","Points":10479,"X":444,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313669Z"},{"ID":272,"Name":"2xxxxxxxxxxxx","Points":10244,"X":464,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31367Z"},{"ID":273,"Name":"NOT","Points":10042,"X":420,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31367Z"},{"ID":274,"Name":"~~LatającyHolender~~","Points":9905,"X":597,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31367Z"},{"ID":275,"Name":"20005","Points":10728,"X":505,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313671Z"},{"ID":276,"Name":"00Wioska barbarzyƄska","Points":9197,"X":475,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313671Z"},{"ID":277,"Name":"0079","Points":10311,"X":442,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313671Z"},{"ID":278,"Name":"KONFA TO MARKA, NARKA","Points":10971,"X":402,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313672Z"},{"ID":281,"Name":"005","Points":8493,"X":567,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313672Z"},{"ID":282,"Name":"+44 61 Tassin la Demi Lune","Points":10019,"X":417,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313672Z"},{"ID":283,"Name":"Cast Away 011","Points":8639,"X":453,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313673Z"},{"ID":284,"Name":"~067.","Points":8380,"X":498,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313673Z"},{"ID":285,"Name":"-017-","Points":10348,"X":461,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313674Z"},{"ID":286,"Name":"K44 x001","Points":10495,"X":442,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313674Z"},{"ID":287,"Name":"JaamMwG 002","Points":9814,"X":525,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313674Z"},{"ID":289,"Name":"Strasznie MiƂy Sąsiad!","Points":6472,"X":546,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313674Z"},{"ID":290,"Name":"064. |XD|","Points":10209,"X":497,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313675Z"},{"ID":291,"Name":"048 Belgia","Points":10495,"X":583,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313675Z"},{"ID":293,"Name":"+44 63 Bron","Points":9841,"X":431,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313676Z"},{"ID":294,"Name":"0007 K55 and987 OZDR.","Points":9845,"X":504,"Y":559,"Continent":"K55","Bonus":7,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313676Z"},{"ID":295,"Name":"NOT","Points":10042,"X":415,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313676Z"},{"ID":297,"Name":"Fajna 016","Points":6743,"X":453,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313677Z"},{"ID":298,"Name":"Minas Tirith","Points":10019,"X":506,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313677Z"},{"ID":299,"Name":"Szlachcic","Points":10237,"X":466,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313677Z"},{"ID":300,"Name":"Land of Fire","Points":9678,"X":395,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313678Z"},{"ID":301,"Name":"Pf Konfederacja","Points":9938,"X":491,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313678Z"},{"ID":302,"Name":"TRR 001","Points":10008,"X":407,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313678Z"},{"ID":303,"Name":"Szlachcic","Points":9885,"X":492,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313679Z"},{"ID":305,"Name":"9. Wysypisko","Points":10338,"X":547,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313679Z"},{"ID":306,"Name":"20016","Points":11130,"X":519,"Y":553,"Continent":"K55","Bonus":4,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313679Z"},{"ID":307,"Name":"F002","Points":9753,"X":507,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313679Z"},{"ID":308,"Name":"0016 K55 and987 OZDR.","Points":9780,"X":504,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31368Z"},{"ID":310,"Name":"Brat447","Points":10495,"X":452,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31368Z"},{"ID":313,"Name":"Jaaa","Points":10476,"X":577,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313681Z"},{"ID":315,"Name":"Wioska Mateoo","Points":4081,"X":551,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313681Z"},{"ID":316,"Name":"Nowy Trueschool","Points":9976,"X":503,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313681Z"},{"ID":317,"Name":"PRO8L3M","Points":10311,"X":450,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313682Z"},{"ID":318,"Name":"028 Oxenfurt","Points":10068,"X":620,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313682Z"},{"ID":320,"Name":"NOT?","Points":10042,"X":429,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313682Z"},{"ID":321,"Name":"Amaranthe","Points":9835,"X":498,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313683Z"},{"ID":322,"Name":"Merhet","Points":10228,"X":523,"Y":582,"Continent":"K55","Bonus":3,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313683Z"},{"ID":323,"Name":"Village","Points":9323,"X":488,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313684Z"},{"ID":324,"Name":"BucksbarzyƄsKamiiiru","Points":10178,"X":426,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313684Z"},{"ID":325,"Name":"30002","Points":12111,"X":494,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313684Z"},{"ID":327,"Name":"Wioska barbarzyƄska","Points":9794,"X":432,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313685Z"},{"ID":328,"Name":"2. BC","Points":7395,"X":496,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313685Z"},{"ID":330,"Name":".:097:. Chillout","Points":4267,"X":543,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313685Z"},{"ID":332,"Name":"-[021]- Khunyang Chhish","Points":7739,"X":552,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313686Z"},{"ID":334,"Name":"keepo","Points":9832,"X":486,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313686Z"},{"ID":335,"Name":"015. Wioska tukkan","Points":9986,"X":580,"Y":514,"Continent":"K55","Bonus":3,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313686Z"},{"ID":337,"Name":"0000","Points":10047,"X":441,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313687Z"},{"ID":338,"Name":"Wioska_01","Points":5302,"X":537,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313687Z"},{"ID":339,"Name":"xhav","Points":10068,"X":396,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313687Z"},{"ID":340,"Name":"Horyzont zdarzeƄ","Points":9835,"X":516,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313688Z"},{"ID":343,"Name":"Butem w Morgen","Points":10124,"X":485,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313688Z"},{"ID":344,"Name":"MasteroN 02","Points":10290,"X":568,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313688Z"},{"ID":347,"Name":"Wioska Wojtek150 005","Points":9835,"X":533,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313688Z"},{"ID":348,"Name":"014","Points":9825,"X":491,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313689Z"},{"ID":349,"Name":"BucksbarzyƄsKamiiiru","Points":10001,"X":428,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313689Z"},{"ID":350,"Name":"215 Broome","Points":9761,"X":531,"Y":436,"Continent":"K45","Bonus":2,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313689Z"},{"ID":352,"Name":"NOT?","Points":6803,"X":426,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31369Z"},{"ID":354,"Name":"Monetki","Points":9623,"X":471,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31369Z"},{"ID":356,"Name":"Warzywniak 020","Points":1942,"X":451,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31369Z"},{"ID":357,"Name":"Horyzont zdarzeƄ","Points":10019,"X":535,"Y":547,"Continent":"K55","Bonus":4,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313691Z"},{"ID":360,"Name":"0.Hollywood","Points":9962,"X":520,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313691Z"},{"ID":362,"Name":"025","Points":4935,"X":467,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313691Z"},{"ID":364,"Name":"PiekƂo to inni","Points":10160,"X":519,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313692Z"},{"ID":366,"Name":"Vito 1","Points":10019,"X":511,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313692Z"},{"ID":367,"Name":"PiekƂo to inni","Points":10160,"X":516,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313692Z"},{"ID":368,"Name":"xxx","Points":10495,"X":513,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313693Z"},{"ID":369,"Name":".:029:. Chillout","Points":10495,"X":518,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313693Z"},{"ID":370,"Name":"0030 K54 and987 OZDR.","Points":9845,"X":488,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313693Z"},{"ID":371,"Name":"1-*Airdrie...","Points":12154,"X":526,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313694Z"},{"ID":372,"Name":"064. ALFI","Points":1461,"X":481,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313694Z"},{"ID":373,"Name":"213 Darwin","Points":9761,"X":529,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313694Z"},{"ID":374,"Name":"A023","Points":10495,"X":487,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313695Z"},{"ID":375,"Name":"19-Mesquite","Points":9806,"X":528,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313695Z"},{"ID":376,"Name":"Forteca","Points":10495,"X":502,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313695Z"},{"ID":377,"Name":".:039:. Chillout","Points":9388,"X":518,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313696Z"},{"ID":378,"Name":"Szlachcic","Points":9899,"X":507,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313696Z"},{"ID":379,"Name":"Napewno to nie jest off","Points":10495,"X":515,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313696Z"},{"ID":380,"Name":"NOT?","Points":1603,"X":436,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313696Z"},{"ID":381,"Name":"PiekƂo to inni","Points":10160,"X":519,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313697Z"},{"ID":382,"Name":"Szlachcic","Points":8202,"X":508,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313697Z"},{"ID":383,"Name":"Butem w Morgen","Points":10085,"X":483,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313697Z"},{"ID":384,"Name":".achim.","Points":10311,"X":519,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313698Z"},{"ID":385,"Name":"KoƄczyć czas:)","Points":8983,"X":548,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313698Z"},{"ID":386,"Name":".:031:. Chillout","Points":6605,"X":521,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313698Z"},{"ID":387,"Name":".:041:. Chillout","Points":10495,"X":520,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313698Z"},{"ID":388,"Name":"Osada","Points":9827,"X":498,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313699Z"},{"ID":389,"Name":".achim.","Points":10544,"X":527,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313699Z"},{"ID":390,"Name":"+44 75 Saint Omer","Points":9635,"X":454,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313699Z"},{"ID":391,"Name":"Szlachcic","Points":9166,"X":516,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3137Z"},{"ID":392,"Name":"Ręcznik do zmiany","Points":10019,"X":414,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3137Z"},{"ID":394,"Name":"Napewno to nie jest off","Points":10495,"X":516,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3137Z"},{"ID":395,"Name":"Bagdad","Points":10654,"X":475,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313701Z"},{"ID":396,"Name":"Dum Spiro Spero","Points":9981,"X":491,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313701Z"},{"ID":397,"Name":"xxx","Points":10199,"X":511,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313701Z"},{"ID":398,"Name":"05. C3F","Points":9521,"X":475,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313702Z"},{"ID":399,"Name":"PiekƂo to inni","Points":10019,"X":529,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313702Z"},{"ID":400,"Name":"AbacadA 019","Points":10221,"X":559,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313702Z"},{"ID":401,"Name":"7.62 mm","Points":10019,"X":507,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313702Z"},{"ID":402,"Name":"C034","Points":7379,"X":522,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313703Z"},{"ID":403,"Name":"Szlachcic","Points":10300,"X":486,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313703Z"},{"ID":404,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":517,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313703Z"},{"ID":406,"Name":"NOT?","Points":10042,"X":423,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313704Z"},{"ID":407,"Name":"Szlachcic","Points":7112,"X":505,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313704Z"},{"ID":408,"Name":"#11.","Points":10252,"X":520,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313704Z"},{"ID":409,"Name":"Osada","Points":9617,"X":509,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313704Z"},{"ID":410,"Name":"PiekƂo to inni","Points":10083,"X":522,"Y":484,"Continent":"K45","Bonus":1,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313705Z"},{"ID":411,"Name":"Osada","Points":9632,"X":507,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313705Z"},{"ID":412,"Name":"-xx10","Points":10252,"X":498,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313705Z"},{"ID":413,"Name":"Osada","Points":4695,"X":511,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313705Z"},{"ID":414,"Name":"Szlachcic","Points":10068,"X":499,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313706Z"},{"ID":415,"Name":"Wioska 432","Points":10495,"X":561,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313706Z"},{"ID":416,"Name":"Gravity","Points":9491,"X":412,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313706Z"},{"ID":417,"Name":"Wioska 514","Points":10495,"X":571,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313707Z"},{"ID":418,"Name":"PiekƂo to inni","Points":10160,"X":510,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313707Z"},{"ID":419,"Name":"051. ALFI","Points":1489,"X":483,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313707Z"},{"ID":420,"Name":"7.62 mm","Points":10019,"X":504,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313708Z"},{"ID":421,"Name":"#0098 KopytĂłw","Points":9144,"X":475,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313708Z"},{"ID":422,"Name":"Cast Away 018","Points":10867,"X":445,"Y":483,"Continent":"K44","Bonus":1,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313708Z"},{"ID":424,"Name":".:018:. Chillout","Points":7209,"X":508,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313708Z"},{"ID":425,"Name":"Napewno to nie jest off","Points":8904,"X":514,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313709Z"},{"ID":426,"Name":"- 300 -","Points":10000,"X":529,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313709Z"},{"ID":427,"Name":".:063:. Chillout","Points":5862,"X":512,"Y":425,"Continent":"K45","Bonus":7,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313709Z"},{"ID":429,"Name":"028#","Points":10189,"X":538,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31371Z"},{"ID":430,"Name":".:034:. Chillout","Points":3306,"X":521,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31371Z"},{"ID":431,"Name":"7.62 mm","Points":10019,"X":503,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31371Z"},{"ID":433,"Name":"Kasyno","Points":9680,"X":445,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31371Z"},{"ID":434,"Name":"Napewno to nie jest off","Points":10495,"X":517,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313711Z"},{"ID":435,"Name":"087.","Points":10068,"X":475,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313711Z"},{"ID":436,"Name":"Osada","Points":10294,"X":501,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313711Z"},{"ID":437,"Name":"JaamMwG 003","Points":9809,"X":526,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313712Z"},{"ID":438,"Name":"Szlachcic","Points":9109,"X":508,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313712Z"},{"ID":439,"Name":"016","Points":9885,"X":566,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313712Z"},{"ID":440,"Name":"#04.","Points":10252,"X":525,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313713Z"},{"ID":441,"Name":"Yogi","Points":10019,"X":533,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313713Z"},{"ID":442,"Name":"PiekƂo to inni","Points":10160,"X":512,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313713Z"},{"ID":443,"Name":"SsSs","Points":9456,"X":421,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313714Z"},{"ID":445,"Name":"Osada","Points":10294,"X":500,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313714Z"},{"ID":446,"Name":"xxx","Points":10495,"X":477,"Y":437,"Continent":"K44","Bonus":8,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313714Z"},{"ID":447,"Name":"X07","Points":2697,"X":530,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313715Z"},{"ID":448,"Name":"kathare","Points":10322,"X":498,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313715Z"},{"ID":449,"Name":"x 011. Garƛć dynamitu","Points":7856,"X":414,"Y":490,"Continent":"K44","Bonus":5,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313715Z"},{"ID":450,"Name":"Szlachcic","Points":10311,"X":499,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313716Z"},{"ID":451,"Name":"K55 kaszka manna:P","Points":10252,"X":542,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313716Z"},{"ID":452,"Name":"Szlachcic","Points":9620,"X":496,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313716Z"},{"ID":453,"Name":"!Alakazam","Points":10019,"X":567,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313716Z"},{"ID":454,"Name":"Minas Tirith","Points":9835,"X":505,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313717Z"},{"ID":455,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3608,"X":457,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313717Z"},{"ID":456,"Name":"Szlachcic","Points":9888,"X":505,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313717Z"},{"ID":457,"Name":".achim.","Points":9083,"X":532,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313717Z"},{"ID":458,"Name":"093.","Points":10004,"X":500,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313718Z"},{"ID":459,"Name":"067. ALFI","Points":1331,"X":463,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313718Z"},{"ID":460,"Name":"Szlachcic","Points":10292,"X":488,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313718Z"},{"ID":461,"Name":"004","Points":10012,"X":508,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313719Z"},{"ID":462,"Name":"Szlachcic","Points":9899,"X":504,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313719Z"},{"ID":463,"Name":"|083|","Points":6614,"X":557,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313719Z"},{"ID":464,"Name":"0016 bęc","Points":10019,"X":513,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313719Z"},{"ID":465,"Name":"020","Points":9851,"X":537,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848930111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31372Z"},{"ID":466,"Name":"P Konfederacja 8","Points":9784,"X":460,"Y":453,"Continent":"K44","Bonus":7,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31372Z"},{"ID":467,"Name":"Wioska Ko5a","Points":9835,"X":492,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31372Z"},{"ID":468,"Name":"004","Points":8493,"X":568,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313721Z"},{"ID":469,"Name":"-x7","Points":10252,"X":499,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313721Z"},{"ID":470,"Name":"CALL 1041","Points":9835,"X":550,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313721Z"},{"ID":471,"Name":"002","Points":9976,"X":503,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313722Z"},{"ID":472,"Name":"Szlachcic","Points":9637,"X":505,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313722Z"},{"ID":473,"Name":"Polania 002","Points":8024,"X":540,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313722Z"},{"ID":474,"Name":"013W Wiocha","Points":10143,"X":558,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313723Z"},{"ID":475,"Name":"Szlachcic","Points":9767,"X":494,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313723Z"},{"ID":476,"Name":"OgrĂłd Warzywny","Points":7458,"X":448,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313723Z"},{"ID":477,"Name":"Szlachcic","Points":9956,"X":491,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313724Z"},{"ID":478,"Name":"KONFA TO MARKA, NARKA","Points":10654,"X":428,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313724Z"},{"ID":479,"Name":"Szlachcic","Points":10359,"X":500,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313724Z"},{"ID":480,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":439,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313725Z"},{"ID":481,"Name":"Szlachcic","Points":9814,"X":508,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313725Z"},{"ID":482,"Name":"067.","Points":10393,"X":509,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313725Z"},{"ID":483,"Name":"Szlachcic","Points":10252,"X":504,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313725Z"},{"ID":484,"Name":"009","Points":9756,"X":414,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313726Z"},{"ID":485,"Name":"0018","Points":10019,"X":506,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313726Z"},{"ID":486,"Name":"0056","Points":10495,"X":513,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313726Z"},{"ID":487,"Name":"#Scyther","Points":12154,"X":574,"Y":457,"Continent":"K45","Bonus":9,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313727Z"},{"ID":488,"Name":"PiekƂo to inni","Points":9487,"X":518,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313727Z"},{"ID":489,"Name":"Butem w Morgen","Points":10495,"X":485,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313727Z"},{"ID":490,"Name":"-xx15","Points":10393,"X":491,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313727Z"},{"ID":491,"Name":"0004 Venezuela","Points":9835,"X":493,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313728Z"},{"ID":492,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":423,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313728Z"},{"ID":493,"Name":"Szlachcic","Points":10311,"X":492,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313728Z"},{"ID":494,"Name":"K44 024","Points":5529,"X":426,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313728Z"},{"ID":495,"Name":"Szlachcic","Points":10311,"X":491,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313729Z"},{"ID":496,"Name":"053. ALFI","Points":2858,"X":486,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313729Z"},{"ID":497,"Name":"Szlachcic","Points":9835,"X":496,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313729Z"},{"ID":498,"Name":"Szlachcic","Points":10294,"X":494,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313729Z"},{"ID":499,"Name":"Szlachcic","Points":9637,"X":504,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31373Z"},{"ID":500,"Name":"043.","Points":10485,"X":509,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31373Z"},{"ID":501,"Name":"Szlachcic","Points":9852,"X":559,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31373Z"},{"ID":502,"Name":"Szlachcic","Points":10311,"X":493,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313731Z"},{"ID":503,"Name":"#5#","Points":9835,"X":500,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313731Z"},{"ID":504,"Name":"095 Grand Junction","Points":9761,"X":477,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313731Z"},{"ID":505,"Name":"002","Points":9835,"X":489,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313732Z"},{"ID":506,"Name":"K44 026","Points":4303,"X":419,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313732Z"},{"ID":507,"Name":"Szlachcic","Points":9637,"X":510,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313732Z"},{"ID":508,"Name":"Szlachcic","Points":8507,"X":496,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313733Z"},{"ID":509,"Name":"Pf Konfederacja","Points":9322,"X":487,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313733Z"},{"ID":510,"Name":"Szlachcic","Points":10115,"X":496,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313733Z"},{"ID":511,"Name":"0027","Points":9606,"X":504,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313734Z"},{"ID":512,"Name":"0017 K55 and987 OZDR.","Points":9861,"X":506,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313734Z"},{"ID":513,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313734Z"},{"ID":514,"Name":"Pf Konfederacja","Points":9938,"X":495,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313735Z"},{"ID":515,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313735Z"},{"ID":516,"Name":"Zero Stresu","Points":10252,"X":448,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313735Z"},{"ID":517,"Name":"Lord Arsey KING","Points":10285,"X":526,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313735Z"},{"ID":518,"Name":"ChceszPokojuSzykujSięDoWojny","Points":6824,"X":456,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313736Z"},{"ID":519,"Name":"Lord Arsey KING","Points":10285,"X":513,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313736Z"},{"ID":520,"Name":"K44 010","Points":7003,"X":431,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313736Z"},{"ID":521,"Name":"Wioska 11","Points":10971,"X":520,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313736Z"},{"ID":522,"Name":"Ręcznik do zmiany","Points":10845,"X":417,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313737Z"},{"ID":523,"Name":"Lord Arsey KING","Points":10285,"X":520,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313737Z"},{"ID":524,"Name":"xxx","Points":10495,"X":481,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313737Z"},{"ID":525,"Name":"078.","Points":11130,"X":508,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313737Z"},{"ID":526,"Name":"KIELBA 028","Points":10495,"X":451,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313738Z"},{"ID":527,"Name":"Szlachcic","Points":9068,"X":508,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313738Z"},{"ID":528,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3042,"X":467,"Y":513,"Continent":"K54","Bonus":4,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313738Z"},{"ID":529,"Name":"054.","Points":10252,"X":506,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313738Z"},{"ID":530,"Name":"Lord Arsey KING","Points":5969,"X":517,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313739Z"},{"ID":531,"Name":"K45 - 004","Points":10320,"X":558,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313739Z"},{"ID":532,"Name":"Szlachcic","Points":10303,"X":491,"Y":482,"Continent":"K44","Bonus":2,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313739Z"},{"ID":533,"Name":"022","Points":10311,"X":567,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313739Z"},{"ID":534,"Name":"Winter is coming","Points":2788,"X":444,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31374Z"},{"ID":535,"Name":"Lord Arsey KING","Points":10285,"X":513,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31374Z"},{"ID":536,"Name":"CALL 976","Points":10311,"X":547,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31374Z"},{"ID":537,"Name":"Lord Arsey KING","Points":10285,"X":521,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31374Z"},{"ID":538,"Name":"112.","Points":6016,"X":534,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313741Z"},{"ID":539,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313741Z"},{"ID":540,"Name":"Napewno to nie jest off","Points":6847,"X":515,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313741Z"},{"ID":541,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313742Z"},{"ID":542,"Name":"[088]","Points":10492,"X":535,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313742Z"},{"ID":543,"Name":"Lord Arsey KING","Points":10285,"X":576,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313742Z"},{"ID":544,"Name":"0593","Points":9494,"X":476,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313742Z"},{"ID":545,"Name":"Lord Arsey KING","Points":10285,"X":513,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313743Z"},{"ID":546,"Name":"017 C12","Points":3206,"X":522,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313743Z"},{"ID":547,"Name":"Lord Arsey KING","Points":10285,"X":525,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313743Z"},{"ID":548,"Name":"PiekƂo to inni","Points":10019,"X":514,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313744Z"},{"ID":549,"Name":"Monetki","Points":10295,"X":482,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313744Z"},{"ID":550,"Name":"Joms 008","Points":10030,"X":529,"Y":417,"Continent":"K45","Bonus":1,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313744Z"},{"ID":551,"Name":"Szlachcic","Points":9680,"X":499,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313745Z"},{"ID":552,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313745Z"},{"ID":553,"Name":"CJRT","Points":7573,"X":544,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313745Z"},{"ID":554,"Name":"011","Points":9835,"X":528,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313745Z"},{"ID":555,"Name":"0014","Points":10322,"X":621,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313746Z"},{"ID":556,"Name":"WioskaC","Points":9762,"X":516,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313746Z"},{"ID":557,"Name":"Lord Arsey KING","Points":10285,"X":520,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313746Z"},{"ID":558,"Name":"Mzm20","Points":10362,"X":558,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313746Z"},{"ID":559,"Name":"Taran 009","Points":9615,"X":623,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313747Z"},{"ID":560,"Name":"[135]","Points":9495,"X":563,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313747Z"},{"ID":561,"Name":"0014","Points":10019,"X":510,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313747Z"},{"ID":562,"Name":"?+44 86 Zegerscappel","Points":9695,"X":464,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313748Z"},{"ID":563,"Name":"001","Points":8024,"X":509,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313748Z"},{"ID":564,"Name":"PiekƂo to inni","Points":7827,"X":516,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313748Z"},{"ID":565,"Name":"052.","Points":10252,"X":504,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313748Z"},{"ID":566,"Name":"F083","Points":8926,"X":490,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313749Z"},{"ID":567,"Name":"[066] My","Points":10216,"X":528,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313749Z"},{"ID":568,"Name":"tawerna","Points":10311,"X":570,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313749Z"},{"ID":569,"Name":"PiekƂo to inni","Points":9669,"X":518,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313749Z"},{"ID":570,"Name":"006 Wioska","Points":10083,"X":521,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31375Z"},{"ID":571,"Name":"C008","Points":10559,"X":524,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31375Z"},{"ID":572,"Name":"Szlachcic","Points":10297,"X":490,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31375Z"},{"ID":573,"Name":"#03.","Points":10485,"X":524,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31375Z"},{"ID":574,"Name":"019. ALFI","Points":1418,"X":487,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313751Z"},{"ID":575,"Name":"PiekƂo to inni","Points":10083,"X":516,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313751Z"},{"ID":576,"Name":"Szafir","Points":9976,"X":533,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313751Z"},{"ID":577,"Name":"006","Points":3049,"X":507,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313752Z"},{"ID":579,"Name":"079.","Points":9958,"X":567,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313752Z"},{"ID":580,"Name":"014 piotr","Points":10495,"X":618,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313752Z"},{"ID":581,"Name":"Sharks!","Points":9835,"X":498,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313753Z"},{"ID":582,"Name":"0026","Points":5978,"X":505,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313753Z"},{"ID":583,"Name":"???","Points":9520,"X":481,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313753Z"},{"ID":584,"Name":"Lord Arsey KING","Points":10285,"X":523,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313753Z"},{"ID":585,"Name":"~052.","Points":10495,"X":493,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313754Z"},{"ID":586,"Name":"012","Points":11819,"X":524,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313754Z"},{"ID":587,"Name":"[068] Bunuh kamu","Points":10049,"X":535,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313755Z"},{"ID":588,"Name":"Lord Arsey KING","Points":10285,"X":528,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313755Z"},{"ID":589,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313755Z"},{"ID":590,"Name":"206 Ohio Rios","Points":9761,"X":465,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313755Z"},{"ID":591,"Name":"123.","Points":7749,"X":512,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313756Z"},{"ID":592,"Name":"Wioska barbarzyƄska","Points":3846,"X":451,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313756Z"},{"ID":593,"Name":"X05","Points":4120,"X":535,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313756Z"},{"ID":594,"Name":"~074.","Points":10495,"X":485,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313757Z"},{"ID":595,"Name":"Lord Arsey KING","Points":10285,"X":520,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313757Z"},{"ID":596,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313757Z"},{"ID":597,"Name":"[026] Kubulala","Points":10057,"X":587,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313757Z"},{"ID":598,"Name":"0005 K55 and987 OZDR.","Points":9953,"X":505,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313758Z"},{"ID":599,"Name":"0Wioska barbarzyƄska","Points":9764,"X":479,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313758Z"},{"ID":600,"Name":"F010","Points":9761,"X":505,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313758Z"},{"ID":601,"Name":"Mzm25","Points":10362,"X":559,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313758Z"},{"ID":602,"Name":"Yogi","Points":10019,"X":508,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313759Z"},{"ID":603,"Name":"x05","Points":10066,"X":550,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313759Z"},{"ID":604,"Name":"0043 K55 and987 OZDR","Points":9861,"X":506,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313759Z"},{"ID":605,"Name":"Gattacka","Points":9554,"X":587,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313759Z"},{"ID":606,"Name":"003 B.O.R","Points":8538,"X":576,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31376Z"},{"ID":607,"Name":"Horyzont zdarzeƄ","Points":10019,"X":508,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31376Z"},{"ID":608,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":436,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31376Z"},{"ID":609,"Name":"CALL 1059","Points":10495,"X":518,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313761Z"},{"ID":610,"Name":"Szczęƛliwego Nowego Roku:)","Points":7786,"X":540,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313761Z"},{"ID":611,"Name":"004. Midnight Never Ends","Points":10160,"X":615,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313761Z"},{"ID":612,"Name":"057 Hana","Points":9761,"X":457,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313761Z"},{"ID":613,"Name":"Wioska barbarzyƄska","Points":10285,"X":434,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313762Z"},{"ID":614,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313762Z"},{"ID":615,"Name":"Gravity","Points":9505,"X":420,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313762Z"},{"ID":616,"Name":"F063","Points":9761,"X":506,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313762Z"},{"ID":617,"Name":"Sparta_61","Points":9638,"X":476,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313763Z"},{"ID":618,"Name":"Yogi","Points":10019,"X":518,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313763Z"},{"ID":619,"Name":"F073","Points":9761,"X":503,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313763Z"},{"ID":620,"Name":"Koszmarna Noc","Points":10178,"X":497,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313763Z"},{"ID":621,"Name":"020. ALFI","Points":1508,"X":486,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313764Z"},{"ID":622,"Name":"Lord Arsey KING","Points":10285,"X":514,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313764Z"},{"ID":623,"Name":"*INTERTWINED*","Points":9711,"X":498,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313764Z"},{"ID":624,"Name":"[017] Pepehi ia oe","Points":10292,"X":586,"Y":524,"Continent":"K55","Bonus":8,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313764Z"},{"ID":625,"Name":"20004","Points":11130,"X":503,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313765Z"},{"ID":626,"Name":"BucksbarzyƄsKamiiiru","Points":10171,"X":428,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313765Z"},{"ID":627,"Name":"[085]","Points":10232,"X":553,"Y":513,"Continent":"K55","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313765Z"},{"ID":628,"Name":"50002","Points":4885,"X":504,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313765Z"},{"ID":629,"Name":"F062","Points":9050,"X":488,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313766Z"},{"ID":630,"Name":"ADEN","Points":7438,"X":560,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313766Z"},{"ID":631,"Name":"004.","Points":7387,"X":613,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313766Z"},{"ID":632,"Name":"0156","Points":7332,"X":468,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313766Z"},{"ID":633,"Name":"Gdy zgaƛnie sƂoƄce","Points":9835,"X":505,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313767Z"},{"ID":634,"Name":"2.Strv !!!","Points":10019,"X":493,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313767Z"},{"ID":635,"Name":"kathare","Points":10495,"X":499,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313767Z"},{"ID":636,"Name":"F005","Points":9761,"X":502,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313767Z"},{"ID":637,"Name":"Yogi","Points":4542,"X":520,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313768Z"},{"ID":638,"Name":"PRO8L3M","Points":10068,"X":420,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313768Z"},{"ID":639,"Name":"Yogi","Points":10019,"X":489,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313768Z"},{"ID":640,"Name":"Szlachcic","Points":10294,"X":483,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313768Z"},{"ID":641,"Name":"Gdy opadnie popióƂ!","Points":9835,"X":503,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313769Z"},{"ID":642,"Name":"BucksbarzyƄsKamiiiru","Points":9160,"X":424,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313769Z"},{"ID":644,"Name":"0037","Points":9030,"X":463,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313769Z"},{"ID":645,"Name":"Szlachcic","Points":7229,"X":503,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313769Z"},{"ID":646,"Name":"Szlachcic","Points":10237,"X":581,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31377Z"},{"ID":647,"Name":"xxx","Points":10495,"X":509,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31377Z"},{"ID":648,"Name":"0063 Somali lew","Points":8805,"X":443,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31377Z"},{"ID":649,"Name":"Osada","Points":9637,"X":510,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31377Z"},{"ID":650,"Name":"Szlachcic","Points":7594,"X":506,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31377Z"},{"ID":651,"Name":"F003","Points":9189,"X":497,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313771Z"},{"ID":652,"Name":"0014","Points":10495,"X":506,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313771Z"},{"ID":653,"Name":"F036","Points":9080,"X":495,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313771Z"},{"ID":654,"Name":"0053","Points":10495,"X":509,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313771Z"},{"ID":655,"Name":"Dum Spiro Spero","Points":9976,"X":493,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313772Z"},{"ID":656,"Name":"Strefa Komfortu","Points":10495,"X":500,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313772Z"},{"ID":657,"Name":"B031","Points":9985,"X":483,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313772Z"},{"ID":658,"Name":"Miasto ƚmiechu","Points":9835,"X":504,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313772Z"},{"ID":659,"Name":"184 Medellin","Points":9761,"X":469,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313773Z"},{"ID":660,"Name":"Wioska barbarzyƄska","Points":10287,"X":509,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313773Z"},{"ID":661,"Name":"JaamMwG 020","Points":9817,"X":517,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313773Z"},{"ID":662,"Name":"018 F-1","Points":10495,"X":602,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313773Z"},{"ID":663,"Name":"Diagnoza!","Points":10040,"X":494,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313774Z"},{"ID":664,"Name":"Wioska rafalzak 01","Points":9835,"X":520,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313774Z"},{"ID":665,"Name":"Osada BR","Points":2806,"X":454,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313774Z"},{"ID":666,"Name":"F032","Points":9761,"X":501,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313774Z"},{"ID":667,"Name":"007","Points":10008,"X":446,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313775Z"},{"ID":668,"Name":"0066","Points":10495,"X":506,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313775Z"},{"ID":669,"Name":"CALL 1056","Points":10495,"X":521,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313775Z"},{"ID":670,"Name":"Napewno to nie jest off","Points":7494,"X":516,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313776Z"},{"ID":671,"Name":"OgrĂłd Warzywny","Points":8012,"X":450,"Y":562,"Continent":"K54","Bonus":8,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313776Z"},{"ID":672,"Name":"3. M41 Buldog !!!","Points":10008,"X":496,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313776Z"},{"ID":673,"Name":"#038","Points":10019,"X":519,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313777Z"},{"ID":675,"Name":"keepo","Points":9515,"X":489,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313777Z"},{"ID":676,"Name":"0005","Points":10495,"X":508,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313777Z"},{"ID":677,"Name":"FF007","Points":5401,"X":471,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313778Z"},{"ID":678,"Name":"ztb","Points":9835,"X":500,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313778Z"},{"ID":679,"Name":"Wioska 1","Points":7465,"X":521,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313778Z"},{"ID":681,"Name":"0Wioska barbarzyƄska","Points":10078,"X":480,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313779Z"},{"ID":682,"Name":"Bon Appetit","Points":12154,"X":518,"Y":511,"Continent":"K55","Bonus":1,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313779Z"},{"ID":683,"Name":"F043","Points":8913,"X":487,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313779Z"},{"ID":684,"Name":"Monetki","Points":10291,"X":471,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31378Z"},{"ID":685,"Name":"2. Isu !!!","Points":9966,"X":501,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31378Z"},{"ID":686,"Name":"Butem w Morgen","Points":10559,"X":490,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31378Z"},{"ID":687,"Name":"Front_08","Points":4336,"X":460,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31378Z"},{"ID":688,"Name":"1. Type-5H","Points":7727,"X":498,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313781Z"},{"ID":689,"Name":"0092 Alakazam","Points":9549,"X":455,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313781Z"},{"ID":691,"Name":"~~LatającyHolender~~","Points":10141,"X":546,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313781Z"},{"ID":692,"Name":"005","Points":10019,"X":522,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313781Z"},{"ID":693,"Name":"Monetki","Points":10292,"X":476,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313782Z"},{"ID":694,"Name":"Harpagan5","Points":9835,"X":501,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313782Z"},{"ID":695,"Name":"+44 61 Lyon Monplaisir","Points":9818,"X":416,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313782Z"},{"ID":696,"Name":"069. |XD|","Points":10209,"X":496,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313782Z"},{"ID":697,"Name":"B010","Points":10495,"X":491,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313783Z"},{"ID":698,"Name":"CHW#055s","Points":5505,"X":527,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313783Z"},{"ID":699,"Name":"50001","Points":10728,"X":505,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313783Z"},{"ID":700,"Name":"XXX Abadon","Points":10393,"X":563,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313783Z"},{"ID":701,"Name":"Jeszcze nie czas","Points":9835,"X":500,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313784Z"},{"ID":702,"Name":"Horyzont zdarzeƄ","Points":10019,"X":501,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313784Z"},{"ID":703,"Name":"CALL 960","Points":10311,"X":545,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313784Z"},{"ID":704,"Name":"Hahahaha","Points":9835,"X":488,"Y":470,"Continent":"K44","Bonus":2,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313784Z"},{"ID":705,"Name":"1.Lansen !!!","Points":9854,"X":498,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313785Z"},{"ID":706,"Name":"#Machamp","Points":11130,"X":572,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313785Z"},{"ID":707,"Name":"F064","Points":9761,"X":505,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313785Z"},{"ID":708,"Name":"F075","Points":9761,"X":504,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313785Z"},{"ID":709,"Name":"|006|","Points":10495,"X":552,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313786Z"},{"ID":710,"Name":"F076","Points":9741,"X":508,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313786Z"},{"ID":711,"Name":"ƚmieszkii","Points":9115,"X":519,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313786Z"},{"ID":712,"Name":"keepo","Points":9777,"X":490,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313786Z"},{"ID":713,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313787Z"},{"ID":714,"Name":"~065.","Points":8234,"X":489,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313787Z"},{"ID":715,"Name":"Lord Arsey KING","Points":10285,"X":513,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313787Z"},{"ID":716,"Name":"1.Amx CDC !!!","Points":10072,"X":497,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313787Z"},{"ID":717,"Name":"Yogi","Points":10078,"X":487,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313788Z"},{"ID":718,"Name":"181","Points":9724,"X":392,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313788Z"},{"ID":719,"Name":"1. Is-3","Points":9674,"X":492,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313788Z"},{"ID":720,"Name":"005","Points":9702,"X":521,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313788Z"},{"ID":721,"Name":"PRO8L3M","Points":10019,"X":479,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313788Z"},{"ID":722,"Name":"Wioska barbarzyƄska","Points":9720,"X":602,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313789Z"},{"ID":723,"Name":"Szlachcic","Points":10292,"X":487,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313789Z"},{"ID":724,"Name":"F046","Points":9555,"X":483,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313789Z"},{"ID":725,"Name":"P.004","Points":9966,"X":536,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313789Z"},{"ID":726,"Name":"keepo","Points":10444,"X":482,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31379Z"},{"ID":727,"Name":"Pf Konfederacja","Points":9740,"X":493,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31379Z"},{"ID":728,"Name":"0057","Points":10416,"X":490,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31379Z"},{"ID":729,"Name":"Numenor","Points":9899,"X":506,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31379Z"},{"ID":730,"Name":"Klub","Points":9753,"X":542,"Y":434,"Continent":"K45","Bonus":3,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313791Z"},{"ID":731,"Name":"016","Points":8603,"X":479,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313791Z"},{"ID":732,"Name":"086 Orzech pekan","Points":10495,"X":541,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313791Z"},{"ID":733,"Name":"bandzior","Points":10311,"X":493,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313791Z"},{"ID":734,"Name":"Problemy luksusowe","Points":12154,"X":507,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313792Z"},{"ID":735,"Name":"keepo","Points":10251,"X":479,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313792Z"},{"ID":736,"Name":"STAL MIELEC","Points":7535,"X":551,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313792Z"},{"ID":737,"Name":"0062","Points":10495,"X":507,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313792Z"},{"ID":738,"Name":"165 Kurytyba","Points":9761,"X":479,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313792Z"},{"ID":739,"Name":"056","Points":9615,"X":536,"Y":486,"Continent":"K45","Bonus":7,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313793Z"},{"ID":740,"Name":"Wioska barbarzyƄska......","Points":10189,"X":486,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313793Z"},{"ID":741,"Name":"*INTERTWINED**","Points":9318,"X":463,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313793Z"},{"ID":742,"Name":"keepo","Points":8993,"X":483,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313793Z"},{"ID":743,"Name":"?+44 86 Quaedypre","Points":9080,"X":465,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313794Z"},{"ID":744,"Name":"0007","Points":10495,"X":509,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313794Z"},{"ID":745,"Name":"Butem w Morgen","Points":10495,"X":487,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313794Z"},{"ID":746,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":436,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313794Z"},{"ID":747,"Name":"A019","Points":10495,"X":494,"Y":411,"Continent":"K44","Bonus":1,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313795Z"},{"ID":748,"Name":"F030","Points":11420,"X":499,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313795Z"},{"ID":749,"Name":"Lord Arsey KING","Points":10285,"X":509,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313795Z"},{"ID":750,"Name":"Rivendell","Points":9522,"X":502,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313795Z"},{"ID":751,"Name":"Hobbiton","Points":10019,"X":504,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313796Z"},{"ID":752,"Name":"001 - Nowa przygoda","Points":9728,"X":421,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313796Z"},{"ID":753,"Name":"C Zach 001 Gliwice","Points":9937,"X":409,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313796Z"},{"ID":754,"Name":"0063 b4","Points":10239,"X":449,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313797Z"},{"ID":755,"Name":"C 002 Mikolow","Points":7915,"X":418,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313797Z"},{"ID":756,"Name":"037 |","Points":10141,"X":557,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313797Z"},{"ID":757,"Name":"nijmegen","Points":9135,"X":402,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313798Z"},{"ID":758,"Name":"A045","Points":10495,"X":497,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313798Z"},{"ID":759,"Name":"A.005","Points":9436,"X":409,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313798Z"},{"ID":760,"Name":"Wioska 02","Points":10285,"X":434,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313799Z"},{"ID":761,"Name":"C 010 Bukowno","Points":7810,"X":415,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313799Z"},{"ID":762,"Name":"-004-","Points":9034,"X":538,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":849070335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313799Z"},{"ID":763,"Name":"CALL 1016","Points":10311,"X":552,"Y":562,"Continent":"K55","Bonus":1,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313799Z"},{"ID":764,"Name":"001thx","Points":9614,"X":411,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3138Z"},{"ID":765,"Name":"NOT?","Points":10042,"X":432,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3138Z"},{"ID":766,"Name":"-5- (Loss of life)","Points":9170,"X":415,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313801Z"},{"ID":767,"Name":"P001","Points":9727,"X":503,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313801Z"},{"ID":768,"Name":"Fajna 081","Points":8619,"X":458,"Y":559,"Continent":"K54","Bonus":9,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313801Z"},{"ID":769,"Name":"016","Points":9976,"X":524,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313802Z"},{"ID":770,"Name":"A 015.","Points":10019,"X":431,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313802Z"},{"ID":771,"Name":"Szlachcic","Points":10294,"X":487,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313802Z"},{"ID":772,"Name":"0058","Points":10495,"X":489,"Y":514,"Continent":"K54","Bonus":2,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313802Z"},{"ID":773,"Name":"WioskaKrĂłl Artur I(WiotrPitczak)","Points":9835,"X":408,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313803Z"},{"ID":774,"Name":"001","Points":10053,"X":426,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313803Z"},{"ID":775,"Name":"B053","Points":9380,"X":475,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313803Z"},{"ID":776,"Name":"C 001 Katowice","Points":10604,"X":417,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313803Z"},{"ID":777,"Name":"C 008 Bochnia","Points":8823,"X":419,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313803Z"},{"ID":778,"Name":"A.018 LW","Points":10476,"X":413,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313804Z"},{"ID":779,"Name":"020","Points":9741,"X":530,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313804Z"},{"ID":780,"Name":"Barad Eithel","Points":7592,"X":495,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313804Z"},{"ID":781,"Name":"Osada","Points":9150,"X":508,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313804Z"},{"ID":782,"Name":"poza kontrolą !","Points":10160,"X":493,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313805Z"},{"ID":783,"Name":"066. |XD|","Points":10209,"X":494,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313805Z"},{"ID":784,"Name":"0072","Points":10495,"X":530,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313805Z"},{"ID":785,"Name":"Myto myto!","Points":9835,"X":497,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313805Z"},{"ID":786,"Name":"Szlachcic 026","Points":9338,"X":558,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313806Z"},{"ID":787,"Name":"O czym ƛnisz?!","Points":10362,"X":499,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313806Z"},{"ID":788,"Name":"+44 72 Etaples","Points":9841,"X":429,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313806Z"},{"ID":789,"Name":"-x2","Points":10252,"X":491,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313806Z"},{"ID":790,"Name":"C024","Points":7087,"X":526,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313807Z"},{"ID":791,"Name":"#PRO8L3M","Points":10311,"X":431,"Y":491,"Continent":"K44","Bonus":3,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313807Z"},{"ID":792,"Name":"072. |XD|","Points":9694,"X":494,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313807Z"},{"ID":793,"Name":"027","Points":9742,"X":528,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313807Z"},{"ID":794,"Name":"Kontrast","Points":10068,"X":514,"Y":509,"Continent":"K55","Bonus":3,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313808Z"},{"ID":795,"Name":"005","Points":10528,"X":488,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313808Z"},{"ID":796,"Name":"04 Las Palmas","Points":12154,"X":472,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313808Z"},{"ID":797,"Name":"094","Points":9928,"X":539,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313808Z"},{"ID":798,"Name":"Konfiasze","Points":10971,"X":475,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313808Z"},{"ID":799,"Name":"110 Thunder Bay","Points":10237,"X":477,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313809Z"},{"ID":800,"Name":"0103","Points":8639,"X":468,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313809Z"},{"ID":801,"Name":"108.","Points":10252,"X":480,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313809Z"},{"ID":802,"Name":"Osada","Points":10294,"X":491,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313809Z"},{"ID":803,"Name":"031","Points":9835,"X":479,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31381Z"},{"ID":804,"Name":"108 Oho","Points":3441,"X":543,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31381Z"},{"ID":805,"Name":"PRO8L3M","Points":10311,"X":473,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31381Z"},{"ID":806,"Name":"Winter is coming","Points":10178,"X":507,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31381Z"},{"ID":807,"Name":"117 St Catharines","Points":9994,"X":478,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313811Z"},{"ID":808,"Name":"7.62 mm","Points":10019,"X":470,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313811Z"},{"ID":809,"Name":"01 Eyjafjallajokull","Points":11377,"X":472,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313811Z"},{"ID":810,"Name":"008","Points":6474,"X":472,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313812Z"},{"ID":811,"Name":"021. ALFI","Points":1269,"X":475,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313812Z"},{"ID":813,"Name":"Part II","Points":10495,"X":536,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313812Z"},{"ID":814,"Name":"013","Points":9171,"X":519,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313812Z"},{"ID":815,"Name":"[056] Eta","Points":10232,"X":543,"Y":489,"Continent":"K45","Bonus":7,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313813Z"},{"ID":816,"Name":"C005 Hamunarpta","Points":9761,"X":602,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313813Z"},{"ID":817,"Name":"B059","Points":9198,"X":472,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313813Z"},{"ID":818,"Name":"PRO8L3M1","Points":9835,"X":454,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313813Z"},{"ID":819,"Name":"Brat447","Points":10495,"X":453,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313814Z"},{"ID":820,"Name":"[120] North20","Points":10051,"X":570,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313814Z"},{"ID":821,"Name":"-Billie Jean","Points":9835,"X":511,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313814Z"},{"ID":822,"Name":"SsSs","Points":9814,"X":448,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313814Z"},{"ID":823,"Name":"068.","Points":12154,"X":514,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313814Z"},{"ID":824,"Name":"Os Konfederacja","Points":10055,"X":481,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313815Z"},{"ID":825,"Name":"JaamMwG 027","Points":10218,"X":520,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313815Z"},{"ID":826,"Name":"023","Points":7461,"X":549,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313815Z"},{"ID":828,"Name":"[100]","Points":9898,"X":548,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313815Z"},{"ID":829,"Name":"066","Points":9740,"X":482,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313816Z"},{"ID":830,"Name":"0031 K54 and987 OZDR.","Points":9917,"X":488,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313816Z"},{"ID":831,"Name":"183 Bogota","Points":9783,"X":467,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313816Z"},{"ID":832,"Name":"0034 MzM","Points":9807,"X":529,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313816Z"},{"ID":833,"Name":"005","Points":9747,"X":549,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313817Z"},{"ID":834,"Name":"204 Santo Domingo","Points":9771,"X":468,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313817Z"},{"ID":835,"Name":"006 wioska GdaƄsk","Points":8735,"X":610,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313817Z"},{"ID":836,"Name":"-Idziesz spać, ja robię bang","Points":9835,"X":516,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313817Z"},{"ID":837,"Name":"Horyzont zdarzeƄ","Points":9835,"X":502,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313818Z"},{"ID":838,"Name":"szlachcic","Points":8655,"X":439,"Y":542,"Continent":"K54","Bonus":9,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313818Z"},{"ID":839,"Name":"064. Vindobona","Points":9606,"X":615,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313818Z"},{"ID":840,"Name":"PiekƂo to inni","Points":10160,"X":526,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313818Z"},{"ID":841,"Name":"0022 K55 and987 OZDR.","Points":9853,"X":505,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313819Z"},{"ID":842,"Name":"008","Points":10232,"X":618,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313819Z"},{"ID":843,"Name":"162 Campo Grande","Points":9761,"X":483,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313819Z"},{"ID":844,"Name":"1. Is-1 !!!","Points":10019,"X":501,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31382Z"},{"ID":845,"Name":"037","Points":9924,"X":617,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31382Z"},{"ID":846,"Name":"#0133 Rykoszet","Points":9579,"X":494,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31382Z"},{"ID":847,"Name":"034.","Points":9835,"X":611,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313821Z"},{"ID":848,"Name":"Szlachcic","Points":9687,"X":505,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313821Z"},{"ID":849,"Name":"50000","Points":10838,"X":502,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313821Z"},{"ID":850,"Name":"+44 73 Le Touquet Paris plage","Points":9840,"X":433,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313822Z"},{"ID":851,"Name":"Sparta_36","Points":9426,"X":480,"Y":579,"Continent":"K54","Bonus":2,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313822Z"},{"ID":852,"Name":"C 006 Olkusz","Points":7726,"X":415,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313823Z"},{"ID":853,"Name":"Szlachcic","Points":9721,"X":566,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313823Z"},{"ID":854,"Name":"0002 K55 and987 OZDR.","Points":10083,"X":505,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313823Z"},{"ID":855,"Name":"Fajna 020","Points":6756,"X":450,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313824Z"},{"ID":856,"Name":"Komturia","Points":10019,"X":512,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313824Z"},{"ID":857,"Name":"091.","Points":10252,"X":508,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313824Z"},{"ID":858,"Name":"Szlachcic","Points":10301,"X":615,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313825Z"},{"ID":859,"Name":"yogi","Points":10252,"X":514,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313825Z"},{"ID":860,"Name":"P Konfederacja","Points":9406,"X":461,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313825Z"},{"ID":861,"Name":"026","Points":5377,"X":519,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313825Z"},{"ID":862,"Name":"D022","Points":10495,"X":576,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313826Z"},{"ID":863,"Name":"017","Points":7491,"X":489,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313826Z"},{"ID":864,"Name":"0012 K55 and987 OZDR.","Points":9853,"X":509,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313826Z"},{"ID":865,"Name":"009 Kagawa","Points":10495,"X":619,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313826Z"},{"ID":866,"Name":"Monetki","Points":10295,"X":469,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313827Z"},{"ID":867,"Name":"Wioska 6","Points":10001,"X":621,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313827Z"},{"ID":868,"Name":"Horyzont zdarzeƄ","Points":9835,"X":526,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313827Z"},{"ID":869,"Name":"063. Sinope","Points":10236,"X":618,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313827Z"},{"ID":870,"Name":"Szlachcic","Points":10237,"X":573,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313827Z"},{"ID":871,"Name":"064 The Lion","Points":9553,"X":621,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313828Z"},{"ID":872,"Name":"Pauza","Points":9835,"X":534,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313828Z"},{"ID":873,"Name":"Carsultyal.","Points":9711,"X":486,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313828Z"},{"ID":874,"Name":"#0002 Carsultyal","Points":10000,"X":485,"Y":553,"Continent":"K54","Bonus":9,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313828Z"},{"ID":875,"Name":"L 6","Points":10316,"X":614,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313829Z"},{"ID":876,"Name":"~039.","Points":10495,"X":489,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313829Z"},{"ID":877,"Name":"Tu spoczywa Deornoth","Points":9004,"X":625,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313829Z"},{"ID":878,"Name":"1.Progetto !!!","Points":10019,"X":498,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313829Z"},{"ID":879,"Name":"2. Strv1065**","Points":9291,"X":499,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31383Z"},{"ID":880,"Name":"15 Ćpunolandia","Points":11550,"X":612,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31383Z"},{"ID":881,"Name":"Sparta_73","Points":9638,"X":475,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31383Z"},{"ID":882,"Name":"boh12prawdziwy","Points":8369,"X":396,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31383Z"},{"ID":883,"Name":"Yogi","Points":10019,"X":521,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313831Z"},{"ID":884,"Name":"xxx","Points":8497,"X":512,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313831Z"},{"ID":885,"Name":"#0134 Bastian","Points":9595,"X":496,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313831Z"},{"ID":886,"Name":"C023","Points":10728,"X":513,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313831Z"},{"ID":888,"Name":"Wioska barbarzyƄska","Points":9691,"X":570,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313832Z"},{"ID":889,"Name":"[189]","Points":10290,"X":537,"Y":489,"Continent":"K45","Bonus":8,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313832Z"},{"ID":890,"Name":"PiekƂo to inni","Points":10160,"X":517,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313832Z"},{"ID":891,"Name":"Wioska barbarzyƄska","Points":10252,"X":536,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313832Z"},{"ID":892,"Name":"xxx","Points":10971,"X":514,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313833Z"},{"ID":893,"Name":"Pf Konfederacja","Points":9938,"X":494,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313833Z"},{"ID":894,"Name":"C001","Points":10728,"X":523,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313833Z"},{"ID":895,"Name":"NOT?","Points":3197,"X":460,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313833Z"},{"ID":896,"Name":"PiekƂo to inni","Points":10160,"X":515,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313834Z"},{"ID":897,"Name":"#0113 Wieƛ PóƂnocna","Points":10019,"X":478,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313834Z"},{"ID":898,"Name":"PiekƂo to inni","Points":10160,"X":516,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313834Z"},{"ID":899,"Name":"Mysza 1","Points":6191,"X":483,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313834Z"},{"ID":900,"Name":"PiekƂo to inni","Points":10160,"X":515,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313834Z"},{"ID":901,"Name":".:040:. Chillout","Points":10252,"X":519,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313835Z"},{"ID":902,"Name":"[136] North ----","Points":10297,"X":581,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313835Z"},{"ID":903,"Name":"xxx","Points":10495,"X":505,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313835Z"},{"ID":904,"Name":"003 YAYAMIOMATE","Points":6974,"X":540,"Y":522,"Continent":"K55","Bonus":6,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313835Z"},{"ID":905,"Name":"Napewno to nie jest off","Points":10495,"X":516,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313836Z"},{"ID":906,"Name":"04. C2F","Points":10838,"X":473,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313836Z"},{"ID":907,"Name":"C033","Points":8581,"X":531,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313836Z"},{"ID":908,"Name":"A009","Points":10495,"X":491,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313836Z"},{"ID":909,"Name":"Szlachcic","Points":9632,"X":508,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313837Z"},{"ID":910,"Name":"keepo","Points":9967,"X":487,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313837Z"},{"ID":911,"Name":"009","Points":10042,"X":413,"Y":500,"Continent":"K54","Bonus":8,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313837Z"},{"ID":912,"Name":"C006","Points":10728,"X":524,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313837Z"},{"ID":913,"Name":"~~LatającyHolender~~","Points":10149,"X":585,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313837Z"},{"ID":914,"Name":"001","Points":9860,"X":606,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313838Z"},{"ID":915,"Name":"Winter is coming","Points":9116,"X":447,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313838Z"},{"ID":916,"Name":"[001]","Points":9809,"X":618,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313838Z"},{"ID":917,"Name":"Fajna 088","Points":7098,"X":452,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313838Z"},{"ID":918,"Name":"DDD","Points":9618,"X":528,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313839Z"},{"ID":919,"Name":"Wioska barbarzyƄska","Points":9579,"X":485,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313839Z"},{"ID":920,"Name":"PiekƂo to inni","Points":10160,"X":514,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313839Z"},{"ID":921,"Name":"Fred Perry","Points":10495,"X":505,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313839Z"},{"ID":922,"Name":".:002:. Chillout","Points":10362,"X":509,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31384Z"},{"ID":923,"Name":"C029","Points":10332,"X":524,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31384Z"},{"ID":924,"Name":"CALL 1085","Points":10495,"X":537,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31384Z"},{"ID":925,"Name":".:011:. Chillout","Points":7100,"X":517,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31384Z"},{"ID":926,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":517,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313841Z"},{"ID":927,"Name":"C043","Points":4889,"X":536,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313841Z"},{"ID":928,"Name":".:098:. Chillout","Points":9771,"X":523,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313841Z"},{"ID":929,"Name":"032","Points":8612,"X":525,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313842Z"},{"ID":930,"Name":".:066:. Chillout","Points":7663,"X":500,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313842Z"},{"ID":931,"Name":".achim.","Points":10311,"X":518,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313842Z"},{"ID":932,"Name":"Szlachcic","Points":9852,"X":567,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313843Z"},{"ID":933,"Name":"Osada","Points":9123,"X":511,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313843Z"},{"ID":934,"Name":"109. Dzięki szunaj :]","Points":10252,"X":489,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313843Z"},{"ID":935,"Name":"Lord Arsey KING","Points":9976,"X":519,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313844Z"},{"ID":936,"Name":"CHW#025r","Points":9038,"X":484,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313844Z"},{"ID":937,"Name":"keepo","Points":9983,"X":481,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313844Z"},{"ID":938,"Name":"Monetki","Points":10291,"X":473,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313845Z"},{"ID":939,"Name":"Pf Konfederacja","Points":9938,"X":487,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313845Z"},{"ID":940,"Name":"Osada","Points":7584,"X":496,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313845Z"},{"ID":941,"Name":"B022","Points":9683,"X":483,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313846Z"},{"ID":942,"Name":"B039","Points":9370,"X":495,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313846Z"},{"ID":943,"Name":"Ateny_45","Points":9088,"X":471,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313847Z"},{"ID":944,"Name":"20023","Points":10971,"X":505,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313847Z"},{"ID":945,"Name":"Pf Konfederacja","Points":9575,"X":489,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313847Z"},{"ID":946,"Name":"0Osada koczownikĂłw","Points":9203,"X":479,"Y":527,"Continent":"K54","Bonus":6,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313847Z"},{"ID":947,"Name":"092.","Points":10252,"X":499,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313848Z"},{"ID":948,"Name":"SsSs","Points":10487,"X":458,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313848Z"},{"ID":949,"Name":"Szlachcic !!!","Points":10311,"X":496,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313848Z"},{"ID":950,"Name":".:120:. Niangmen","Points":9559,"X":513,"Y":415,"Continent":"K45","Bonus":6,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313848Z"},{"ID":951,"Name":".:029:. San Escobar","Points":9260,"X":503,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313848Z"},{"ID":952,"Name":"K45 - 010","Points":9790,"X":560,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313849Z"},{"ID":953,"Name":"-[013]- Gaszerbrum II","Points":9216,"X":549,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313849Z"},{"ID":954,"Name":"Feed me more 002","Points":10300,"X":497,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313849Z"},{"ID":955,"Name":".033.","Points":10485,"X":490,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313849Z"},{"ID":956,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31385Z"},{"ID":957,"Name":"ADEN","Points":10311,"X":577,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31385Z"},{"ID":958,"Name":"C041","Points":10728,"X":535,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31385Z"},{"ID":959,"Name":"So Far Away","Points":9952,"X":511,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31385Z"},{"ID":960,"Name":"Yogi","Points":8584,"X":515,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313851Z"},{"ID":961,"Name":"F080","Points":8604,"X":510,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313851Z"},{"ID":962,"Name":"Piękni ludzie","Points":10160,"X":502,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313851Z"},{"ID":963,"Name":"F077","Points":7752,"X":502,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313851Z"},{"ID":964,"Name":"098","Points":10035,"X":553,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313852Z"},{"ID":965,"Name":"Szlachcic","Points":10019,"X":506,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313852Z"},{"ID":966,"Name":"xxx","Points":10495,"X":510,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313852Z"},{"ID":967,"Name":"Osada","Points":9824,"X":511,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313852Z"},{"ID":968,"Name":"006343 Miedziany 2","Points":7892,"X":442,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313853Z"},{"ID":969,"Name":"PiekƂo to inni","Points":10224,"X":512,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313853Z"},{"ID":970,"Name":"Wioska 3","Points":2955,"X":425,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313853Z"},{"ID":971,"Name":"PiekƂo to inni","Points":10019,"X":515,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313853Z"},{"ID":972,"Name":"Daleko 007","Points":8151,"X":475,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313854Z"},{"ID":973,"Name":"Szlachcic","Points":9637,"X":504,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313854Z"},{"ID":974,"Name":"Lord Arsey KING","Points":10285,"X":524,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313854Z"},{"ID":975,"Name":"#0026 Wirus","Points":10478,"X":502,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313854Z"},{"ID":976,"Name":"-Za pĂłĆșno","Points":9953,"X":518,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313854Z"},{"ID":977,"Name":"Yogi","Points":10160,"X":524,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313855Z"},{"ID":978,"Name":"040.","Points":10252,"X":502,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313855Z"},{"ID":979,"Name":"55k$ Grvvyq","Points":10495,"X":528,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313855Z"},{"ID":980,"Name":"*INTERTWINED*","Points":9153,"X":485,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313855Z"},{"ID":981,"Name":"Wioska barbarzyƄska","Points":9835,"X":521,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313856Z"},{"ID":982,"Name":"JaamMwG 016","Points":9539,"X":524,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313856Z"},{"ID":983,"Name":"MichaƂ","Points":10495,"X":534,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313856Z"},{"ID":984,"Name":"Wioska barbarzyƄska","Points":9975,"X":452,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313856Z"},{"ID":985,"Name":"Osada GL","Points":2940,"X":457,"Y":542,"Continent":"K54","Bonus":2,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313857Z"},{"ID":986,"Name":"PodhalaƄski ZbĂłj! -001-","Points":10019,"X":525,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313857Z"},{"ID":987,"Name":"ƚmieszkii","Points":10160,"X":530,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313857Z"},{"ID":988,"Name":"008.","Points":10047,"X":522,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313857Z"},{"ID":989,"Name":"Ateny_64","Points":6930,"X":476,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313858Z"},{"ID":990,"Name":"20007","Points":6364,"X":520,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313858Z"},{"ID":991,"Name":".achim.","Points":10311,"X":520,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313858Z"},{"ID":992,"Name":"JaamMwG 021","Points":9806,"X":519,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313858Z"},{"ID":993,"Name":"008","Points":10252,"X":531,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313859Z"},{"ID":994,"Name":"PRO8L3M","Points":10178,"X":449,"Y":490,"Continent":"K44","Bonus":6,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313859Z"},{"ID":995,"Name":"Pf Konfederacja","Points":9938,"X":486,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313859Z"},{"ID":996,"Name":"PiekƂo to inni","Points":6847,"X":517,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313859Z"},{"ID":997,"Name":"0061","Points":10495,"X":506,"Y":524,"Continent":"K55","Bonus":4,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313859Z"},{"ID":999,"Name":"[181]","Points":9959,"X":531,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31386Z"},{"ID":1000,"Name":"111 Winnipeg","Points":9761,"X":478,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31386Z"},{"ID":1001,"Name":"IQ151","Points":6088,"X":552,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31386Z"},{"ID":1002,"Name":"122 Banff","Points":9761,"X":479,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31386Z"},{"ID":1003,"Name":"5 ESIOK f","Points":9038,"X":538,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313861Z"},{"ID":1004,"Name":"083.","Points":10485,"X":481,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313861Z"},{"ID":1005,"Name":"023","Points":10129,"X":415,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313861Z"},{"ID":1006,"Name":"Pf Konfederacja","Points":10066,"X":488,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313861Z"},{"ID":1007,"Name":".achim.","Points":10311,"X":536,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313862Z"},{"ID":1008,"Name":"Jaaa","Points":10263,"X":579,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313862Z"},{"ID":1009,"Name":"Butem w Morgen","Points":10559,"X":484,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313862Z"},{"ID":1010,"Name":"057. Koniec Konfy???","Points":10252,"X":481,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313862Z"},{"ID":1011,"Name":"Wioska barbarzyƄska","Points":10487,"X":465,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313863Z"},{"ID":1012,"Name":"085.","Points":9325,"X":474,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313863Z"},{"ID":1013,"Name":"Monetki","Points":10295,"X":481,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313863Z"},{"ID":1014,"Name":"PRO8L3M","Points":10311,"X":473,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313863Z"},{"ID":1015,"Name":"0014 K55 and987 OZDR.","Points":9847,"X":502,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313864Z"},{"ID":1016,"Name":"148 Veracruz","Points":9761,"X":472,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313864Z"},{"ID":1017,"Name":"020 Wioska barbarzyƄska","Points":9744,"X":572,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313864Z"},{"ID":1018,"Name":"keepo","Points":10495,"X":478,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313865Z"},{"ID":1019,"Name":"Gattacka","Points":9747,"X":588,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313865Z"},{"ID":1020,"Name":"A 013.","Points":9694,"X":435,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313865Z"},{"ID":1021,"Name":"-018-","Points":10481,"X":466,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313865Z"},{"ID":1022,"Name":"Pf Konfederacja","Points":10068,"X":486,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313866Z"},{"ID":1023,"Name":"Wioska barbarzyƄska","Points":9689,"X":571,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313866Z"},{"ID":1024,"Name":"Konfiasze","Points":10971,"X":471,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313866Z"},{"ID":1025,"Name":"146 Puerto Escondido","Points":9761,"X":478,"Y":486,"Continent":"K44","Bonus":9,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313867Z"},{"ID":1026,"Name":"071","Points":10311,"X":583,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313867Z"},{"ID":1027,"Name":"082","Points":10093,"X":616,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313867Z"},{"ID":1028,"Name":"sas","Points":10200,"X":536,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313867Z"},{"ID":1029,"Name":"053.","Points":9403,"X":507,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313868Z"},{"ID":1030,"Name":"Wioska_06","Points":6870,"X":544,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313868Z"},{"ID":1031,"Name":"Yogi","Points":10019,"X":521,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313868Z"},{"ID":1032,"Name":"AAA","Points":8961,"X":526,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313868Z"},{"ID":1033,"Name":"025","Points":8225,"X":523,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313869Z"},{"ID":1034,"Name":"PiekƂo to inni","Points":10019,"X":516,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313869Z"},{"ID":1035,"Name":"Vito 3","Points":9835,"X":513,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313869Z"},{"ID":1036,"Name":"Winter is coming","Points":10068,"X":500,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313869Z"},{"ID":1037,"Name":"adam5","Points":9684,"X":523,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31387Z"},{"ID":1038,"Name":"Esgaroth","Points":8874,"X":503,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31387Z"},{"ID":1039,"Name":"*Ateny_78","Points":9638,"X":474,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31387Z"},{"ID":1040,"Name":"[083]","Points":10293,"X":536,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.31387Z"},{"ID":1041,"Name":"CHW#034","Points":10330,"X":476,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313871Z"},{"ID":1042,"Name":"Jaaa","Points":10479,"X":574,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313871Z"},{"ID":1043,"Name":"NOT!","Points":8122,"X":468,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313871Z"},{"ID":1044,"Name":"1. Type-4H","Points":9116,"X":500,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313871Z"},{"ID":1045,"Name":"Suppi","Points":9682,"X":471,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313872Z"},{"ID":1046,"Name":"Pf Konfederacja","Points":10268,"X":483,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313872Z"},{"ID":1047,"Name":"SsSs","Points":9818,"X":425,"Y":493,"Continent":"K44","Bonus":7,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313872Z"},{"ID":1048,"Name":"039. ALFI","Points":1908,"X":468,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313872Z"},{"ID":1049,"Name":"BBB","Points":7189,"X":555,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313872Z"},{"ID":1050,"Name":"038. ALFI","Points":1896,"X":467,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313873Z"},{"ID":1051,"Name":"038 |","Points":10478,"X":567,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313873Z"},{"ID":1052,"Name":"034. ALFI","Points":2682,"X":476,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313873Z"},{"ID":1053,"Name":"Wioska BarbarzyƄska","Points":10019,"X":546,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313873Z"},{"ID":1054,"Name":"0649","Points":10019,"X":477,"Y":548,"Continent":"K54","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.313874Z"},{"ID":1055,"Name":"040. ALFI","Points":1449,"X":473,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346504Z"},{"ID":1056,"Name":"#0060 Psylocibina","Points":9098,"X":483,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346506Z"},{"ID":1057,"Name":"OgrĂłd Warzywny","Points":7743,"X":446,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346508Z"},{"ID":1058,"Name":"CHW#035","Points":9523,"X":477,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346509Z"},{"ID":1059,"Name":"NOT?","Points":10042,"X":427,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34651Z"},{"ID":1060,"Name":"*Ateny_04","Points":9638,"X":471,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34651Z"},{"ID":1061,"Name":"Follow !","Points":10375,"X":501,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346511Z"},{"ID":1062,"Name":"0127","Points":10019,"X":463,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346512Z"},{"ID":1063,"Name":"Szlachcic","Points":9617,"X":500,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346514Z"},{"ID":1064,"Name":"ZostaƂem Krabem","Points":10252,"X":464,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346514Z"},{"ID":1065,"Name":"064.","Points":10393,"X":509,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346515Z"},{"ID":1066,"Name":"#0094 Lebiedziew","Points":8094,"X":474,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346516Z"},{"ID":1067,"Name":"Os Konfederacja","Points":10178,"X":475,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346517Z"},{"ID":1068,"Name":"Kwidzyn","Points":10311,"X":509,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346517Z"},{"ID":1069,"Name":"Miejsca z plakatu","Points":10160,"X":503,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346518Z"},{"ID":1070,"Name":"Business District","Points":10495,"X":519,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346519Z"},{"ID":1071,"Name":"- Jeszcze pięć minut","Points":10160,"X":511,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34652Z"},{"ID":1072,"Name":"*Ateny_35","Points":3823,"X":470,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34652Z"},{"ID":1073,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9490,"X":455,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346521Z"},{"ID":1074,"Name":"Szlachcic","Points":10161,"X":491,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346708Z"},{"ID":1075,"Name":"170 Caracas","Points":9753,"X":478,"Y":494,"Continent":"K44","Bonus":9,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346709Z"},{"ID":1076,"Name":"Szlachcic","Points":10300,"X":487,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346709Z"},{"ID":1077,"Name":"Szlachcic !!!","Points":10311,"X":483,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346709Z"},{"ID":1078,"Name":"Sector 5","Points":10147,"X":509,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346709Z"},{"ID":1079,"Name":"001","Points":9596,"X":489,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34671Z"},{"ID":1080,"Name":"Szlachcic","Points":10297,"X":490,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34671Z"},{"ID":1081,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34671Z"},{"ID":1082,"Name":"086.","Points":10252,"X":478,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34671Z"},{"ID":1083,"Name":"116.","Points":7134,"X":542,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346711Z"},{"ID":1084,"Name":"maro baron 1997(Mieszko 1995)","Points":9899,"X":410,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346711Z"},{"ID":1085,"Name":"C Zach 002 Sosnicowice","Points":10503,"X":404,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346711Z"},{"ID":1086,"Name":"Mzm13.","Points":10426,"X":560,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346711Z"},{"ID":1087,"Name":"A.002","Points":10259,"X":417,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346711Z"},{"ID":1088,"Name":"[076] Tote dich","Points":10397,"X":535,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346712Z"},{"ID":1089,"Name":"A.007","Points":10475,"X":410,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346712Z"},{"ID":1090,"Name":"A.013","Points":10559,"X":411,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346712Z"},{"ID":1091,"Name":"Abadon landy","Points":9938,"X":563,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346713Z"},{"ID":1092,"Name":"xxx","Points":10495,"X":496,"Y":435,"Continent":"K44","Bonus":8,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346713Z"},{"ID":1093,"Name":"[163]","Points":8973,"X":537,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346713Z"},{"ID":1094,"Name":"D04","Points":7408,"X":546,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346713Z"},{"ID":1096,"Name":"MojeSzczytToTwĂłjDno","Points":10160,"X":534,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346713Z"},{"ID":1097,"Name":"~~LatającyHolender~~","Points":10066,"X":578,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346714Z"},{"ID":1098,"Name":".achim.","Points":10311,"X":540,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346714Z"},{"ID":1099,"Name":"para","Points":10636,"X":495,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346714Z"},{"ID":1100,"Name":"122 Wioska-005-","Points":10001,"X":541,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346714Z"},{"ID":1101,"Name":"Osada","Points":9842,"X":491,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346715Z"},{"ID":1102,"Name":"026","Points":9825,"X":543,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346715Z"},{"ID":1103,"Name":"Lord Arsey KING","Points":10285,"X":528,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346715Z"},{"ID":1104,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":528,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346715Z"},{"ID":1106,"Name":"Szlachcic","Points":10096,"X":491,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346716Z"},{"ID":1107,"Name":"001 ƚwięta Terra","Points":10019,"X":521,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346716Z"},{"ID":1108,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346716Z"},{"ID":1109,"Name":"Wioska BarbarzyƄska","Points":9149,"X":547,"Y":486,"Continent":"K45","Bonus":7,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346716Z"},{"ID":1110,"Name":"Wioska 181","Points":2552,"X":524,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346717Z"},{"ID":1111,"Name":"*INTERTWINED*","Points":9537,"X":471,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346717Z"},{"ID":1112,"Name":"yogi","Points":10019,"X":527,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346717Z"},{"ID":1113,"Name":"Mzm38","Points":10426,"X":564,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346717Z"},{"ID":1114,"Name":"Horyzont zdarzeƄ","Points":9835,"X":514,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346718Z"},{"ID":1115,"Name":"015","Points":9192,"X":529,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346718Z"},{"ID":1116,"Name":"yogi","Points":10019,"X":524,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346718Z"},{"ID":1117,"Name":"[145] North","Points":10052,"X":581,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346718Z"},{"ID":1118,"Name":"Jaaa","Points":10495,"X":580,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346718Z"},{"ID":1119,"Name":"Horyzont zdarzeƄ","Points":10160,"X":514,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346719Z"},{"ID":1120,"Name":"NOT?","Points":10042,"X":420,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346719Z"},{"ID":1121,"Name":"055.","Points":9735,"X":513,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346719Z"},{"ID":1122,"Name":"Zero Stresu","Points":10252,"X":445,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346719Z"},{"ID":1123,"Name":"21 Valhalla","Points":9819,"X":528,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34672Z"},{"ID":1124,"Name":"(031)","Points":8837,"X":419,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34672Z"},{"ID":1125,"Name":"MichaƂ","Points":10495,"X":534,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34672Z"},{"ID":1126,"Name":"Pf Konfederacja","Points":9832,"X":487,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34672Z"},{"ID":1127,"Name":"Mzm01","Points":10362,"X":608,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346721Z"},{"ID":1128,"Name":"168 Capo Grande","Points":9761,"X":480,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346721Z"},{"ID":1129,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":574,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346721Z"},{"ID":1130,"Name":"0062 ~4~","Points":10237,"X":444,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346721Z"},{"ID":1131,"Name":"P.024","Points":10436,"X":536,"Y":559,"Continent":"K55","Bonus":8,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346722Z"},{"ID":1132,"Name":"- 097 -","Points":10000,"X":545,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346722Z"},{"ID":1133,"Name":"[070] Epsilon","Points":10495,"X":552,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346722Z"},{"ID":1134,"Name":"B003","Points":10019,"X":553,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346722Z"},{"ID":1135,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":442,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346723Z"},{"ID":1136,"Name":"Wioska 17","Points":8207,"X":554,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346723Z"},{"ID":1137,"Name":"keepo","Points":4822,"X":477,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346723Z"},{"ID":1138,"Name":"[174]","Points":7068,"X":553,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346723Z"},{"ID":1139,"Name":"~~LatającyHolender~~","Points":10224,"X":559,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346723Z"},{"ID":1140,"Name":"Jehu_Kingdom_25_","Points":9993,"X":600,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346724Z"},{"ID":1141,"Name":"Lord Arsey KING","Points":10285,"X":510,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346724Z"},{"ID":1142,"Name":"010","Points":10068,"X":526,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346724Z"},{"ID":1143,"Name":"xxx","Points":10559,"X":512,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346724Z"},{"ID":1144,"Name":"Brat447","Points":10476,"X":391,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346725Z"},{"ID":1145,"Name":"007","Points":8979,"X":520,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346725Z"},{"ID":1146,"Name":"009","Points":9835,"X":531,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346725Z"},{"ID":1147,"Name":"PiekƂo to inni","Points":6844,"X":516,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346725Z"},{"ID":1148,"Name":"[069] Vonoy ianao","Points":10051,"X":531,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346726Z"},{"ID":1149,"Name":"-[009]- Nanga Parbat","Points":8134,"X":550,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346726Z"},{"ID":1150,"Name":"007. Atelstan","Points":10252,"X":593,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346726Z"},{"ID":1151,"Name":"Lord Arsey KING","Points":10285,"X":584,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346726Z"},{"ID":1152,"Name":"005.","Points":7764,"X":615,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346726Z"},{"ID":1153,"Name":"224 Coober Pedy","Points":9761,"X":528,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346727Z"},{"ID":1155,"Name":"Brat447","Points":10495,"X":445,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346727Z"},{"ID":1156,"Name":"NWO","Points":10950,"X":388,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346727Z"},{"ID":1157,"Name":"163 Recife","Points":9761,"X":478,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346727Z"},{"ID":1158,"Name":"068 |","Points":10495,"X":546,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346728Z"},{"ID":1159,"Name":"hack3d by gh05t","Points":9738,"X":476,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346728Z"},{"ID":1160,"Name":"PiekƂo to inni","Points":10019,"X":522,"Y":483,"Continent":"K45","Bonus":7,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346728Z"},{"ID":1161,"Name":"118","Points":10393,"X":543,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346728Z"},{"ID":1162,"Name":"[213]","Points":10216,"X":542,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346729Z"},{"ID":1163,"Name":"CALL 993","Points":10178,"X":535,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346729Z"},{"ID":1164,"Name":"[060] Theta **","Points":10241,"X":534,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346729Z"},{"ID":1165,"Name":"Wioska dezert8","Points":10252,"X":541,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346729Z"},{"ID":1166,"Name":"SsSs","Points":9745,"X":423,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34673Z"},{"ID":1167,"Name":"[146]","Points":9547,"X":540,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34673Z"},{"ID":1168,"Name":"Osada","Points":10295,"X":502,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34673Z"},{"ID":1169,"Name":"031. Wioska ZbĂłjnik44","Points":10252,"X":552,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34673Z"},{"ID":1170,"Name":"K45 - 009","Points":10319,"X":564,"Y":462,"Continent":"K45","Bonus":5,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34673Z"},{"ID":1171,"Name":"050. A-RE-SE-EY","Points":10252,"X":543,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346731Z"},{"ID":1172,"Name":"0180","Points":9377,"X":464,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346731Z"},{"ID":1173,"Name":"K34 - [133] Before Land","Points":8853,"X":458,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346731Z"},{"ID":1174,"Name":"Yuppi","Points":9644,"X":473,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346731Z"},{"ID":1175,"Name":"#08.","Points":10971,"X":519,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346732Z"},{"ID":1176,"Name":"Carsultyal.","Points":9711,"X":487,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346732Z"},{"ID":1177,"Name":"0133","Points":7769,"X":456,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346732Z"},{"ID":1178,"Name":"C027","Points":8541,"X":524,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346732Z"},{"ID":1179,"Name":"K34 - [005] Before Land","Points":10259,"X":453,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346733Z"},{"ID":1180,"Name":"Szlachcic","Points":8506,"X":516,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346733Z"},{"ID":1181,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":430,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346733Z"},{"ID":1182,"Name":"047. A-RE-SE-EY","Points":10252,"X":553,"Y":515,"Continent":"K55","Bonus":6,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346733Z"},{"ID":1183,"Name":"C009","Points":10495,"X":523,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346734Z"},{"ID":1184,"Name":"C026","Points":8194,"X":526,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346734Z"},{"ID":1185,"Name":"15*","Points":6104,"X":567,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346734Z"},{"ID":1186,"Name":"001 hodowca1","Points":8086,"X":530,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346734Z"},{"ID":1187,"Name":"Samarkanda","Points":6491,"X":531,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":8513699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346734Z"},{"ID":1188,"Name":"#09.","Points":10971,"X":527,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346735Z"},{"ID":1189,"Name":"Szlachcic","Points":9852,"X":569,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346735Z"},{"ID":1190,"Name":"KHAND","Points":10559,"X":537,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346735Z"},{"ID":1191,"Name":".achim.","Points":9687,"X":533,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346735Z"},{"ID":1192,"Name":"Lord Arsey KING","Points":10285,"X":539,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346736Z"},{"ID":1193,"Name":"C002","Points":10728,"X":524,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346736Z"},{"ID":1194,"Name":"Wioska barbarzyƄska","Points":5753,"X":536,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346736Z"},{"ID":1195,"Name":"1 ESIOK","Points":9571,"X":538,"Y":467,"Continent":"K45","Bonus":2,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346736Z"},{"ID":1196,"Name":"C046","Points":4799,"X":536,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346737Z"},{"ID":1197,"Name":"Os Konfederacja","Points":9812,"X":479,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346737Z"},{"ID":1198,"Name":"GELU@GELU","Points":9010,"X":534,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346737Z"},{"ID":1199,"Name":"Yogi","Points":10019,"X":537,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346737Z"},{"ID":1200,"Name":"Horyzont zdarzeƄ","Points":10019,"X":511,"Y":540,"Continent":"K55","Bonus":2,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346738Z"},{"ID":1201,"Name":"C030","Points":9437,"X":526,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346738Z"},{"ID":1202,"Name":"Mzm16","Points":10426,"X":559,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346738Z"},{"ID":1203,"Name":"016 GELU-GELU a","Points":10986,"X":530,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346738Z"},{"ID":1204,"Name":"PiekƂo to inni","Points":10160,"X":526,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346739Z"},{"ID":1205,"Name":"C022","Points":8221,"X":525,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346739Z"},{"ID":1206,"Name":"-000-","Points":9034,"X":538,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":849070335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346739Z"},{"ID":1207,"Name":"*Ateny_17","Points":3105,"X":468,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346739Z"},{"ID":1208,"Name":"Ć»ELAZNE WZGÓRZA","Points":10861,"X":532,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346739Z"},{"ID":1209,"Name":"011.","Points":10132,"X":525,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34674Z"},{"ID":1210,"Name":"08*","Points":7321,"X":567,"Y":544,"Continent":"K55","Bonus":1,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34674Z"},{"ID":1212,"Name":"F019","Points":9074,"X":494,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34674Z"},{"ID":1213,"Name":"107.","Points":7424,"X":508,"Y":485,"Continent":"K45","Bonus":5,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34674Z"},{"ID":1214,"Name":"Szlachcic","Points":9623,"X":505,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346741Z"},{"ID":1215,"Name":"Horyzont zdarzeƄ","Points":9811,"X":535,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346741Z"},{"ID":1216,"Name":"PiekƂo to inni","Points":8302,"X":511,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346741Z"},{"ID":1217,"Name":"BETI 005","Points":1361,"X":457,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346741Z"},{"ID":1218,"Name":"?+44 85 Audruicq","Points":9653,"X":455,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346742Z"},{"ID":1219,"Name":"B036","Points":10728,"X":488,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346742Z"},{"ID":1220,"Name":"Suppi","Points":9664,"X":471,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346742Z"},{"ID":1221,"Name":"Szlachcic","Points":8252,"X":511,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346742Z"},{"ID":1222,"Name":"0071","Points":9559,"X":468,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346743Z"},{"ID":1223,"Name":"043.","Points":9827,"X":575,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346743Z"},{"ID":1224,"Name":"(011)","Points":9904,"X":419,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346743Z"},{"ID":1225,"Name":"0082","Points":10495,"X":531,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346743Z"},{"ID":1226,"Name":"0189","Points":7937,"X":465,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346744Z"},{"ID":1227,"Name":"BBB","Points":8476,"X":555,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346744Z"},{"ID":1228,"Name":"023 Iowa","Points":10362,"X":606,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346744Z"},{"ID":1229,"Name":"0101","Points":7896,"X":461,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346744Z"},{"ID":1230,"Name":"KIELBA 091","Points":9220,"X":447,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346744Z"},{"ID":1231,"Name":"#052","Points":10393,"X":476,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346745Z"},{"ID":1232,"Name":"K45 - 002","Points":10316,"X":561,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346745Z"},{"ID":1233,"Name":"o.s.a.d.a","Points":10495,"X":554,"Y":476,"Continent":"K45","Bonus":8,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346745Z"},{"ID":1234,"Name":"*Ateny_66","Points":9638,"X":468,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346745Z"},{"ID":1235,"Name":"Wioska Matyy","Points":7651,"X":547,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346746Z"},{"ID":1236,"Name":"Ręcznik do zmiany","Points":10160,"X":386,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346746Z"},{"ID":1237,"Name":"hack3d by gh05t","Points":6024,"X":478,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346746Z"},{"ID":1238,"Name":"003","Points":9924,"X":610,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346746Z"},{"ID":1239,"Name":"?+44 76 Lyon Les Etats Unis","Points":9793,"X":464,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346747Z"},{"ID":1240,"Name":"0001","Points":10971,"X":616,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346747Z"},{"ID":1241,"Name":"JaamMwG 007","Points":9699,"X":520,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346747Z"},{"ID":1242,"Name":"Wioska Fezzoo","Points":10242,"X":604,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346747Z"},{"ID":1243,"Name":"Szlachcic","Points":10470,"X":493,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346747Z"},{"ID":1244,"Name":".Wioska Rok Szczura","Points":10478,"X":609,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346748Z"},{"ID":1245,"Name":"0001. A - Ellesmera","Points":9761,"X":606,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346748Z"},{"ID":1246,"Name":"Bocianikson001","Points":9950,"X":609,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346748Z"},{"ID":1247,"Name":"0053 K55 and987 OZDR","Points":10083,"X":510,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346748Z"},{"ID":1248,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":602,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346749Z"},{"ID":1249,"Name":"[108]","Points":9873,"X":562,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346749Z"},{"ID":1250,"Name":"-1-","Points":10971,"X":583,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346749Z"},{"ID":1251,"Name":"ADEN","Points":10136,"X":559,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346749Z"},{"ID":1252,"Name":"016 Sebo","Points":10160,"X":619,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34675Z"},{"ID":1253,"Name":"095 Macedonia PóƂnocna","Points":10495,"X":572,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34675Z"},{"ID":1254,"Name":"001 start","Points":10559,"X":610,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34675Z"},{"ID":1255,"Name":"South Barba 3","Points":9802,"X":455,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34675Z"},{"ID":1256,"Name":"ccc","Points":10474,"X":606,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346751Z"},{"ID":1257,"Name":"0001 MzM","Points":9630,"X":599,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346751Z"},{"ID":1258,"Name":"Szlachcic 001","Points":10311,"X":615,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346751Z"},{"ID":1259,"Name":"Monetki","Points":10295,"X":478,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346751Z"},{"ID":1261,"Name":"0008","Points":10337,"X":607,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346751Z"},{"ID":1262,"Name":"F070","Points":9261,"X":486,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346752Z"},{"ID":1263,"Name":"Wioska nocna1993","Points":10242,"X":610,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346752Z"},{"ID":1264,"Name":"-[019]- Ngadi Chuli","Points":7377,"X":551,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346752Z"},{"ID":1265,"Name":"0051","Points":10495,"X":513,"Y":524,"Continent":"K55","Bonus":1,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346752Z"},{"ID":1266,"Name":"A.015","Points":10000,"X":594,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346753Z"},{"ID":1267,"Name":"Gattacka","Points":9821,"X":591,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346753Z"},{"ID":1268,"Name":"20001","Points":9472,"X":519,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346753Z"},{"ID":1269,"Name":"tomson89","Points":10362,"X":608,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346753Z"},{"ID":1270,"Name":"002 pieska Leszka","Points":10545,"X":605,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346754Z"},{"ID":1271,"Name":"036","Points":10495,"X":583,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346754Z"},{"ID":1272,"Name":"Jaaa","Points":10045,"X":579,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346754Z"},{"ID":1273,"Name":"-[008]- Manaslu","Points":8116,"X":544,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346754Z"},{"ID":1274,"Name":"054.","Points":9769,"X":518,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346755Z"},{"ID":1275,"Name":"067","Points":10365,"X":550,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346755Z"},{"ID":1276,"Name":"rakieta 004","Points":9905,"X":617,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346755Z"},{"ID":1277,"Name":"002","Points":9956,"X":620,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346755Z"},{"ID":1278,"Name":"Pf Konfederacja","Points":9089,"X":489,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346755Z"},{"ID":1279,"Name":"*5502* Dym Aguszka","Points":10287,"X":592,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346756Z"},{"ID":1280,"Name":"31.","Points":10104,"X":565,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346756Z"},{"ID":1281,"Name":"001 Pallet Town","Points":11109,"X":595,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346756Z"},{"ID":1282,"Name":"~036.","Points":10495,"X":492,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346756Z"},{"ID":1283,"Name":"001","Points":10495,"X":606,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346757Z"},{"ID":1284,"Name":"F061","Points":9399,"X":489,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346757Z"},{"ID":1285,"Name":"058.","Points":10252,"X":480,"Y":488,"Continent":"K44","Bonus":6,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346757Z"},{"ID":1286,"Name":"#0131 Maja","Points":4593,"X":486,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346757Z"},{"ID":1287,"Name":"054 Waikiki","Points":9761,"X":456,"Y":467,"Continent":"K44","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346758Z"},{"ID":1288,"Name":"*Ateny_09","Points":9638,"X":472,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346758Z"},{"ID":1289,"Name":"*Ateny_76","Points":8007,"X":475,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346758Z"},{"ID":1290,"Name":"185","Points":9653,"X":558,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346758Z"},{"ID":1291,"Name":"*Ateny_10","Points":3449,"X":472,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346759Z"},{"ID":1292,"Name":"049. A-RE-SE-EY","Points":10252,"X":541,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346759Z"},{"ID":1293,"Name":"067. |XD|","Points":9817,"X":493,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346759Z"},{"ID":1294,"Name":".:017:. Znicz","Points":10160,"X":510,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346759Z"},{"ID":1295,"Name":".:001:. Here We Go Again","Points":9745,"X":509,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346759Z"},{"ID":1296,"Name":".achim.","Points":10838,"X":532,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34676Z"},{"ID":1297,"Name":"F053","Points":9212,"X":486,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34676Z"},{"ID":1298,"Name":"088.","Points":8892,"X":475,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34676Z"},{"ID":1299,"Name":".:010:. Etyka","Points":9428,"X":502,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34676Z"},{"ID":1300,"Name":"Wioska barbarzyƄska","Points":9533,"X":448,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346761Z"},{"ID":1301,"Name":"F041","Points":8922,"X":488,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346761Z"},{"ID":1302,"Name":"208 Nassau","Points":9761,"X":468,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346761Z"},{"ID":1303,"Name":".:006:. TopĂłr","Points":9737,"X":510,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346761Z"},{"ID":1304,"Name":"NOT?","Points":10042,"X":423,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346762Z"},{"ID":1305,"Name":".:139:. Niangmen","Points":10252,"X":510,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346762Z"},{"ID":1306,"Name":"A10","Points":9889,"X":548,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346762Z"},{"ID":1307,"Name":".:001:. Chillout","Points":10001,"X":505,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346762Z"},{"ID":1308,"Name":"Suppi","Points":9994,"X":437,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346763Z"},{"ID":1309,"Name":"xxx","Points":7782,"X":515,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346763Z"},{"ID":1310,"Name":"0053 Szkolna 17","Points":10083,"X":439,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346763Z"},{"ID":1311,"Name":"0020","Points":10019,"X":508,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346763Z"},{"ID":1312,"Name":"Lynortis","Points":9830,"X":465,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":849001724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346764Z"},{"ID":1314,"Name":"0055","Points":9993,"X":464,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346764Z"},{"ID":1315,"Name":"017 Oklahoma","Points":10479,"X":427,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346764Z"},{"ID":1316,"Name":"Suppi","Points":9570,"X":440,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346764Z"},{"ID":1317,"Name":"NOT!? YET","Points":1286,"X":459,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346764Z"},{"ID":1318,"Name":"0033 Wioska T S","Points":10342,"X":432,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346765Z"},{"ID":1319,"Name":"0016 O","Points":10075,"X":434,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346765Z"},{"ID":1320,"Name":"[053] Delta","Points":10178,"X":539,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346765Z"},{"ID":1321,"Name":"[090]","Points":10068,"X":540,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346765Z"},{"ID":1322,"Name":"Nie ƛpię bo gonie sny","Points":10224,"X":568,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346766Z"},{"ID":1323,"Name":"KRÓL PAPI WIELKI","Points":9899,"X":570,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346766Z"},{"ID":1324,"Name":"SsSs","Points":8476,"X":421,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346766Z"},{"ID":1325,"Name":"026. Wioska Songoku29","Points":10252,"X":556,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346766Z"},{"ID":1326,"Name":"Lord Arsey KING","Points":10285,"X":566,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346767Z"},{"ID":1327,"Name":"PoƂudniowa brama","Points":10316,"X":572,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346767Z"},{"ID":1328,"Name":"15 | Legionex","Points":5430,"X":541,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346767Z"},{"ID":1329,"Name":"[126]","Points":9914,"X":543,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346767Z"},{"ID":1330,"Name":"Wioska 505","Points":10495,"X":577,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346767Z"},{"ID":1331,"Name":"014","Points":8408,"X":542,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346768Z"},{"ID":1333,"Name":"7.62 mm","Points":10019,"X":482,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346768Z"},{"ID":1334,"Name":"074","Points":10311,"X":566,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346768Z"},{"ID":1335,"Name":"PRO8L3M","Points":10495,"X":405,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346768Z"},{"ID":1336,"Name":"F089","Points":9912,"X":497,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346769Z"},{"ID":1337,"Name":"Wioska BarbarzyƄska","Points":9267,"X":540,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346769Z"},{"ID":1338,"Name":"78k$ Grvvyq","Points":9379,"X":541,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346769Z"},{"ID":1339,"Name":"022. ALFI","Points":1815,"X":474,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346769Z"},{"ID":1340,"Name":"[185]","Points":9959,"X":540,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34677Z"},{"ID":1341,"Name":"kathare","Points":9918,"X":493,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34677Z"},{"ID":1342,"Name":"[055] Dzeta ***","Points":10252,"X":538,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34677Z"},{"ID":1343,"Name":"~~LatającyHolender~~","Points":9545,"X":568,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34677Z"},{"ID":1344,"Name":"[094]","Points":11321,"X":538,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346771Z"},{"ID":1345,"Name":"A026","Points":10495,"X":488,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346771Z"},{"ID":1346,"Name":"[098]","Points":11137,"X":534,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346771Z"},{"ID":1347,"Name":"yogi","Points":10160,"X":532,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346771Z"},{"ID":1348,"Name":"PRO8L3M","Points":10099,"X":409,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346771Z"},{"ID":1349,"Name":"Witam w wietnamie","Points":9899,"X":419,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346772Z"},{"ID":1350,"Name":"*Ateny_32","Points":5447,"X":465,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346772Z"},{"ID":1351,"Name":"018","Points":2152,"X":462,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346772Z"},{"ID":1352,"Name":"F050","Points":8913,"X":491,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346773Z"},{"ID":1353,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3879,"X":459,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346773Z"},{"ID":1354,"Name":"FF002","Points":9663,"X":469,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346773Z"},{"ID":1355,"Name":"[085]","Points":10394,"X":528,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346773Z"},{"ID":1356,"Name":"Szlachcic","Points":10311,"X":484,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346773Z"},{"ID":1357,"Name":"PiekƂo to inni","Points":10160,"X":513,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346774Z"},{"ID":1358,"Name":"009. Marzyciel Shrek","Points":5698,"X":456,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346774Z"},{"ID":1359,"Name":"0069","Points":10495,"X":528,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346774Z"},{"ID":1360,"Name":"Brat447","Points":6290,"X":457,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346774Z"},{"ID":1361,"Name":"Wioska 426","Points":10495,"X":590,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346775Z"},{"ID":1362,"Name":"...Just like that","Points":10452,"X":452,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346775Z"},{"ID":1363,"Name":"JaamMwG 025","Points":9753,"X":522,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346775Z"},{"ID":1364,"Name":"?+44 75 Feyzin","Points":9840,"X":455,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346775Z"},{"ID":1365,"Name":"041 Fairbanks","Points":9761,"X":458,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346776Z"},{"ID":1366,"Name":"-x3","Points":10252,"X":500,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346776Z"},{"ID":1367,"Name":"010 |","Points":9888,"X":561,"Y":558,"Continent":"K55","Bonus":5,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346776Z"},{"ID":1369,"Name":"...Just like that","Points":3962,"X":462,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346776Z"},{"ID":1371,"Name":"065 Phildelphia","Points":9761,"X":462,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346777Z"},{"ID":1372,"Name":"?+44 85 Lyon Vaise","Points":9852,"X":457,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346777Z"},{"ID":1373,"Name":"Szlachcic","Points":10297,"X":492,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346777Z"},{"ID":1374,"Name":"Cast Away 009","Points":10068,"X":449,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346777Z"},{"ID":1375,"Name":"B007","Points":9640,"X":556,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346778Z"},{"ID":1376,"Name":"Yogi","Points":10019,"X":515,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346778Z"},{"ID":1377,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346778Z"},{"ID":1378,"Name":"sas","Points":9159,"X":514,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346778Z"},{"ID":1379,"Name":"ƚmieszkiii","Points":8491,"X":479,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346779Z"},{"ID":1380,"Name":"0009","Points":10495,"X":507,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346779Z"},{"ID":1381,"Name":"P.003","Points":10097,"X":537,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346779Z"},{"ID":1382,"Name":"20011","Points":11550,"X":518,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346779Z"},{"ID":1383,"Name":"025. A-RE-SE-EY","Points":10252,"X":575,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34678Z"},{"ID":1384,"Name":"Horyzont zdarzeƄ","Points":10019,"X":516,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34678Z"},{"ID":1385,"Name":"004","Points":9835,"X":549,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34678Z"},{"ID":1386,"Name":"yogi","Points":10019,"X":516,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34678Z"},{"ID":1387,"Name":"Butem w Morgen","Points":10495,"X":484,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34678Z"},{"ID":1388,"Name":"MichaƂ","Points":10495,"X":531,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346781Z"},{"ID":1389,"Name":"Hilonia","Points":7946,"X":512,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346781Z"},{"ID":1390,"Name":"Yogi","Points":10019,"X":518,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346781Z"},{"ID":1391,"Name":"Fajna 056","Points":2308,"X":456,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346782Z"},{"ID":1392,"Name":"Horyzont zdarzeƄ","Points":9835,"X":526,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346782Z"},{"ID":1393,"Name":"0073","Points":10495,"X":511,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346782Z"},{"ID":1394,"Name":"xxx","Points":10495,"X":503,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346782Z"},{"ID":1395,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346782Z"},{"ID":1396,"Name":"Wioska barbarzyƄska","Points":7704,"X":421,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346783Z"},{"ID":1397,"Name":"Daleko 032","Points":8376,"X":476,"Y":578,"Continent":"K54","Bonus":2,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346783Z"},{"ID":1398,"Name":"0067","Points":10495,"X":506,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346783Z"},{"ID":1399,"Name":"017. BƂud","Points":9534,"X":511,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346783Z"},{"ID":1400,"Name":"Lord Arsey KING","Points":10285,"X":524,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346784Z"},{"ID":1401,"Name":"Ateny_73","Points":3028,"X":470,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346784Z"},{"ID":1402,"Name":"B048","Points":10495,"X":484,"Y":464,"Continent":"K44","Bonus":6,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346784Z"},{"ID":1403,"Name":"Wioska 4","Points":7071,"X":523,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346784Z"},{"ID":1404,"Name":"002 Wawrzyszew","Points":10019,"X":540,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346785Z"},{"ID":1405,"Name":"?+44 85 Brexent Enocq","Points":9860,"X":458,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346785Z"},{"ID":1406,"Name":"Wioska barbarzyƄska","Points":10252,"X":526,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346785Z"},{"ID":1407,"Name":"066 Punxsutawney","Points":9761,"X":461,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346785Z"},{"ID":1408,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":393,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346786Z"},{"ID":1409,"Name":"0006","Points":10795,"X":390,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346786Z"},{"ID":1410,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":387,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346786Z"},{"ID":1411,"Name":"PiekƂo to inni","Points":9745,"X":520,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346786Z"},{"ID":1412,"Name":".:028:. Belka","Points":9130,"X":513,"Y":419,"Continent":"K45","Bonus":1,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346786Z"},{"ID":1413,"Name":"MichaƂ","Points":10495,"X":534,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346787Z"},{"ID":1414,"Name":".Br10..","Points":9782,"X":428,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346787Z"},{"ID":1415,"Name":"0050 K55 and987 OZDR","Points":10083,"X":508,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346787Z"},{"ID":1416,"Name":"#008 - Awzan","Points":8850,"X":520,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346787Z"},{"ID":1417,"Name":"P.008Z","Points":10157,"X":506,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346788Z"},{"ID":1418,"Name":"018. A-RE-SE-EY","Points":10252,"X":572,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346788Z"},{"ID":1419,"Name":"20009","Points":11130,"X":503,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346788Z"},{"ID":1420,"Name":"B043","Points":10113,"X":480,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346788Z"},{"ID":1421,"Name":"SƂoneczna PrzystaƄ","Points":10019,"X":519,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346789Z"},{"ID":1422,"Name":"09*","Points":8548,"X":571,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346789Z"},{"ID":1423,"Name":"Horyzont zdarzeƄ","Points":11911,"X":507,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346789Z"},{"ID":1424,"Name":"adam3","Points":9811,"X":525,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346789Z"},{"ID":1425,"Name":"*INTERTWINED**","Points":9711,"X":522,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34679Z"},{"ID":1426,"Name":"F040","Points":9884,"X":482,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34679Z"},{"ID":1427,"Name":"Horyzont zdarzeƄ","Points":10019,"X":519,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34679Z"},{"ID":1428,"Name":"ƚmieszkii","Points":9006,"X":517,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34679Z"},{"ID":1429,"Name":"ƚmieszkii","Points":9182,"X":516,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346791Z"},{"ID":1430,"Name":"059.","Points":10252,"X":501,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346791Z"},{"ID":1431,"Name":"yogi","Points":10019,"X":526,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346791Z"},{"ID":1432,"Name":"Bilonia","Points":10376,"X":517,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346791Z"},{"ID":1433,"Name":"yogi","Points":10019,"X":520,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346791Z"},{"ID":1434,"Name":"20027","Points":11321,"X":507,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346792Z"},{"ID":1435,"Name":"016 PrzelotĂłwka","Points":9873,"X":421,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346792Z"},{"ID":1436,"Name":"Zagrzeb","Points":9765,"X":425,"Y":458,"Continent":"K44","Bonus":7,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346792Z"},{"ID":1437,"Name":"ƚmieszkii","Points":10224,"X":525,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346792Z"},{"ID":1438,"Name":"Gratuluje mĂłzgu","Points":6408,"X":442,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346793Z"},{"ID":1439,"Name":"ƚmieszkii","Points":9123,"X":517,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346793Z"},{"ID":1440,"Name":"Horyzont zdarzeƄ","Points":10019,"X":515,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346793Z"},{"ID":1441,"Name":"10000","Points":11321,"X":527,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346793Z"},{"ID":1442,"Name":"Lord Arsey KING","Points":10285,"X":523,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346794Z"},{"ID":1443,"Name":"ƚmieszkii","Points":9335,"X":517,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346794Z"},{"ID":1444,"Name":"006.","Points":10188,"X":520,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346794Z"},{"ID":1445,"Name":"Osada","Points":10300,"X":497,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346794Z"},{"ID":1446,"Name":"0050","Points":10495,"X":508,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346795Z"},{"ID":1447,"Name":"0038 K54 and987 OZDR.","Points":9861,"X":495,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346795Z"},{"ID":1448,"Name":"OgrĂłd Warzywny","Points":7623,"X":444,"Y":564,"Continent":"K54","Bonus":8,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346795Z"},{"ID":1449,"Name":"Lord Arsey KING","Points":10285,"X":522,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346795Z"},{"ID":1450,"Name":"PRO8L3M","Points":6572,"X":461,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346795Z"},{"ID":1451,"Name":"051 Hilo","Points":9761,"X":457,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346796Z"},{"ID":1452,"Name":"?+44 76 Lyon Tete dOr","Points":9752,"X":462,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346796Z"},{"ID":1453,"Name":"?+44 85 Lyon Perrache","Points":10495,"X":454,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346796Z"},{"ID":1454,"Name":"F068","Points":9034,"X":486,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346796Z"},{"ID":1455,"Name":"031 Nashville","Points":9761,"X":452,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346797Z"},{"ID":1456,"Name":"026","Points":9290,"X":526,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346797Z"},{"ID":1457,"Name":"PRO8L3M","Points":10336,"X":466,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346797Z"},{"ID":1458,"Name":"JaamMwG 008","Points":9691,"X":519,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346797Z"},{"ID":1459,"Name":"077.","Points":10252,"X":467,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346798Z"},{"ID":1460,"Name":"Mniejsze zƂo 0049","Points":5923,"X":419,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346798Z"},{"ID":1461,"Name":"SsSs","Points":10495,"X":463,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346798Z"},{"ID":1462,"Name":"PiekƂo to inni","Points":10160,"X":522,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346798Z"},{"ID":1463,"Name":"068 Scranton","Points":9761,"X":464,"Y":479,"Continent":"K44","Bonus":2,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346799Z"},{"ID":1464,"Name":".Mobile","Points":12154,"X":469,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346799Z"},{"ID":1465,"Name":"0035","Points":7888,"X":464,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346799Z"},{"ID":1466,"Name":"?+44 95 Pusignan","Points":9726,"X":459,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346799Z"},{"ID":1467,"Name":"keepo","Points":10495,"X":482,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3468Z"},{"ID":1468,"Name":"B060","Points":10495,"X":473,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3468Z"},{"ID":1469,"Name":"PRO8L3M","Points":8231,"X":465,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3468Z"},{"ID":1470,"Name":"PRO8L3M","Points":10068,"X":460,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3468Z"},{"ID":1471,"Name":"028","Points":9761,"X":457,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3468Z"},{"ID":1472,"Name":"Wioska barbarzyƄska","Points":10252,"X":537,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346801Z"},{"ID":1473,"Name":"Horyzont zdarzeƄ","Points":10019,"X":537,"Y":561,"Continent":"K55","Bonus":8,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346801Z"},{"ID":1474,"Name":"####Wioska barbarzyƄska","Points":10209,"X":437,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346801Z"},{"ID":1475,"Name":"0026 K55 and987 OZDR.","Points":9861,"X":500,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346801Z"},{"ID":1476,"Name":"P.014","Points":10384,"X":539,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346802Z"},{"ID":1477,"Name":"yogi","Points":10019,"X":511,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346802Z"},{"ID":1478,"Name":"0Wioska barbarzyƄska","Points":10023,"X":479,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346802Z"},{"ID":1479,"Name":"004 | Niflheim","Points":10019,"X":508,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346802Z"},{"ID":1480,"Name":"0008 K55 and987 OZDR.","Points":10160,"X":506,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346803Z"},{"ID":1481,"Name":"0062 ~3~","Points":10365,"X":443,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346803Z"},{"ID":1482,"Name":"0102","Points":9582,"X":445,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346803Z"},{"ID":1483,"Name":"021. A-RE-SE-EY","Points":10252,"X":572,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346803Z"},{"ID":1484,"Name":"027 San Antonio","Points":10476,"X":433,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346804Z"},{"ID":1485,"Name":"-[005]- Makalu","Points":7296,"X":554,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346804Z"},{"ID":1486,"Name":"2.Rhm-B-Wt !!!","Points":10002,"X":497,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346804Z"},{"ID":1487,"Name":"Wioska barbarzyƄska","Points":9708,"X":586,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346804Z"},{"ID":1488,"Name":"0050 MlekoƂak","Points":9885,"X":433,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346804Z"},{"ID":1489,"Name":"WioskaA","Points":10231,"X":513,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346805Z"},{"ID":1490,"Name":"lady","Points":10454,"X":504,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346805Z"},{"ID":1491,"Name":"002","Points":9761,"X":497,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346805Z"},{"ID":1492,"Name":"Szlachcic","Points":9680,"X":487,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346805Z"},{"ID":1493,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":397,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346806Z"},{"ID":1494,"Name":"Suppi","Points":10220,"X":425,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346806Z"},{"ID":1495,"Name":"Wioska barbarzyƄska","Points":10160,"X":474,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346806Z"},{"ID":1496,"Name":"Ręcznik do zmiany","Points":10160,"X":398,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346806Z"},{"ID":1497,"Name":"Monetki","Points":10294,"X":486,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346807Z"},{"ID":1498,"Name":"0013 G","Points":10160,"X":431,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346807Z"},{"ID":1499,"Name":"NOT?","Points":7428,"X":434,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346807Z"},{"ID":1500,"Name":"Gravity","Points":9525,"X":409,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346807Z"},{"ID":1501,"Name":"*INTERTWINED*","Points":9711,"X":473,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346808Z"},{"ID":1502,"Name":"0011 S","Points":10075,"X":431,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346808Z"},{"ID":1503,"Name":"Gravity","Points":9763,"X":406,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346808Z"},{"ID":1504,"Name":"0070","Points":10495,"X":510,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346808Z"},{"ID":1505,"Name":"Suppi","Points":9894,"X":428,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346809Z"},{"ID":1506,"Name":"7.62 mm","Points":10019,"X":488,"Y":430,"Continent":"K44","Bonus":7,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346809Z"},{"ID":1507,"Name":"x19","Points":10285,"X":409,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346809Z"},{"ID":1508,"Name":"033","Points":9745,"X":520,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346809Z"},{"ID":1509,"Name":"FKG 01-01","Points":9835,"X":420,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34681Z"},{"ID":1510,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":448,"Y":453,"Continent":"K44","Bonus":1,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34681Z"},{"ID":1511,"Name":"CALL 1055","Points":10495,"X":520,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34681Z"},{"ID":1512,"Name":"0026 A-01","Points":10083,"X":428,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34681Z"},{"ID":1513,"Name":"0045 K55 and987 OZDR","Points":10083,"X":506,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34681Z"},{"ID":1514,"Name":"SsSs","Points":7710,"X":419,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346811Z"},{"ID":1515,"Name":"A010","Points":10237,"X":447,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346811Z"},{"ID":1516,"Name":"BucksbarzyƄsKamiiiru","Points":10093,"X":428,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346811Z"},{"ID":1517,"Name":"CALL 1063","Points":9727,"X":519,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346811Z"},{"ID":1518,"Name":"NOT","Points":10042,"X":422,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346812Z"},{"ID":1519,"Name":"[141] North","Points":10054,"X":583,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346812Z"},{"ID":1520,"Name":"#0061 Meskalina","Points":10011,"X":496,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346812Z"},{"ID":1521,"Name":"Winter is coming","Points":5814,"X":445,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346812Z"},{"ID":1522,"Name":"0002","Points":10017,"X":443,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346813Z"},{"ID":1523,"Name":"CALL 972","Points":10452,"X":545,"Y":553,"Continent":"K55","Bonus":2,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346813Z"},{"ID":1524,"Name":"ƚmieszkii","Points":10316,"X":532,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346813Z"},{"ID":1525,"Name":"Winter is coming","Points":1702,"X":443,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346813Z"},{"ID":1526,"Name":"84k$ Grvvyq","Points":10495,"X":526,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346814Z"},{"ID":1527,"Name":"0109","Points":9251,"X":461,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346814Z"},{"ID":1528,"Name":"Szlachcic","Points":9883,"X":500,"Y":469,"Continent":"K45","Bonus":4,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346814Z"},{"ID":1529,"Name":"Nie oceniaj","Points":10160,"X":505,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346814Z"},{"ID":1530,"Name":"JaamMwG 009","Points":9885,"X":521,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346815Z"},{"ID":1531,"Name":"KAER MORHEN","Points":9674,"X":481,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346815Z"},{"ID":1532,"Name":"#07.","Points":10252,"X":529,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346815Z"},{"ID":1533,"Name":"0012 K","Points":10252,"X":431,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346815Z"},{"ID":1534,"Name":"Wioska BarbarzyƄska","Points":9309,"X":554,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346815Z"},{"ID":1535,"Name":"0080","Points":9924,"X":441,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346816Z"},{"ID":1536,"Name":"[122]","Points":9811,"X":568,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346816Z"},{"ID":1537,"Name":"001","Points":10285,"X":409,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346816Z"},{"ID":1538,"Name":"A15","Points":10068,"X":553,"Y":449,"Continent":"K45","Bonus":5,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346816Z"},{"ID":1539,"Name":"Gravity","Points":9502,"X":413,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346817Z"},{"ID":1540,"Name":"[115]","Points":9885,"X":542,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346817Z"},{"ID":1541,"Name":"K44 x027","Points":9850,"X":437,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346817Z"},{"ID":1542,"Name":"CALL 975","Points":10311,"X":541,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346817Z"},{"ID":1543,"Name":"FAKE OR OFF","Points":9858,"X":436,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346818Z"},{"ID":1544,"Name":"SsSs","Points":9454,"X":421,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346818Z"},{"ID":1545,"Name":"002","Points":10019,"X":580,"Y":534,"Continent":"K55","Bonus":3,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346818Z"},{"ID":1546,"Name":"BoOmBaa..","Points":10495,"X":444,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346818Z"},{"ID":1547,"Name":"22.","Points":10178,"X":561,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346819Z"},{"ID":1548,"Name":"K44 x004","Points":9603,"X":442,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346819Z"},{"ID":1549,"Name":"Osada SP","Points":9489,"X":449,"Y":536,"Continent":"K54","Bonus":9,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346819Z"},{"ID":1550,"Name":"Kentin ufam Tobie","Points":10019,"X":432,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346819Z"},{"ID":1551,"Name":"[112]","Points":9955,"X":555,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346819Z"},{"ID":1552,"Name":"0063","Points":10495,"X":505,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34682Z"},{"ID":1553,"Name":"A005","Points":10218,"X":446,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34682Z"},{"ID":1554,"Name":"B012","Points":9401,"X":537,"Y":481,"Continent":"K45","Bonus":6,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34682Z"},{"ID":1555,"Name":"NOT","Points":10042,"X":414,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34682Z"},{"ID":1556,"Name":"Szlachcic 027","Points":9338,"X":566,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346821Z"},{"ID":1557,"Name":"0107","Points":9835,"X":456,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346821Z"},{"ID":1559,"Name":"CALL 979","Points":10311,"X":552,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346821Z"},{"ID":1560,"Name":"[080]","Points":10030,"X":533,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346821Z"},{"ID":1561,"Name":"Osada","Points":9976,"X":498,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346822Z"},{"ID":1562,"Name":"No i MiĂłd","Points":9835,"X":535,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346822Z"},{"ID":1563,"Name":"[082]","Points":10030,"X":530,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346822Z"},{"ID":1564,"Name":"0120","Points":6082,"X":460,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346822Z"},{"ID":1565,"Name":"76k$ Grvvyq","Points":10495,"X":527,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346823Z"},{"ID":1566,"Name":"80k$ Grvvyq","Points":10495,"X":530,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346823Z"},{"ID":1568,"Name":"0061 Wioska","Points":10242,"X":444,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346823Z"},{"ID":1569,"Name":"JaamMwG 010","Points":10087,"X":527,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346823Z"},{"ID":1570,"Name":"Lord Arsey KING","Points":10285,"X":522,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346824Z"},{"ID":1571,"Name":"Szlachcic 004","Points":10311,"X":618,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346824Z"},{"ID":1572,"Name":"0081 Wioska","Points":10223,"X":443,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346824Z"},{"ID":1573,"Name":"117.","Points":10252,"X":537,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346824Z"},{"ID":1574,"Name":"BBB","Points":6480,"X":552,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346825Z"},{"ID":1576,"Name":"20028","Points":10388,"X":507,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346825Z"},{"ID":1577,"Name":"Suppi","Points":9825,"X":424,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346825Z"},{"ID":1578,"Name":"Wioska barbarzyƄska","Points":10285,"X":414,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346825Z"},{"ID":1579,"Name":"00192 Wioska","Points":7082,"X":438,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346825Z"},{"ID":1581,"Name":"Osada","Points":10292,"X":495,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346826Z"},{"ID":1582,"Name":"#039","Points":10059,"X":520,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346826Z"},{"ID":1583,"Name":"Filantrop_ktoƛ?","Points":7669,"X":579,"Y":485,"Continent":"K45","Bonus":3,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346826Z"},{"ID":1584,"Name":"0001","Points":10201,"X":439,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346826Z"},{"ID":1585,"Name":"Jaaa","Points":10484,"X":569,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346827Z"},{"ID":1586,"Name":"Land of Fire","Points":9505,"X":396,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346827Z"},{"ID":1587,"Name":"(019)","Points":10144,"X":426,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346827Z"},{"ID":1588,"Name":"Velenneth","Points":10068,"X":403,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346827Z"},{"ID":1589,"Name":"0116","Points":10019,"X":450,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346828Z"},{"ID":1590,"Name":"Szlachcic","Points":11063,"X":455,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346828Z"},{"ID":1591,"Name":"Gravity","Points":9527,"X":406,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346829Z"},{"ID":1592,"Name":"9.9 Heytroom","Points":8435,"X":550,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346829Z"},{"ID":1593,"Name":"05. Brakujący element","Points":10057,"X":404,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346829Z"},{"ID":1594,"Name":"0019","Points":10495,"X":531,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346829Z"},{"ID":1595,"Name":"Alabama","Points":9835,"X":409,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34683Z"},{"ID":1596,"Name":"x11","Points":10285,"X":406,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34683Z"},{"ID":1597,"Name":"0030","Points":9812,"X":512,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34683Z"},{"ID":1598,"Name":"KONFA TO MARKA, NARKA","Points":11950,"X":401,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34683Z"},{"ID":1599,"Name":"0Wioska barbarzyƄska","Points":10311,"X":477,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346831Z"},{"ID":1600,"Name":"ƚmieszkii","Points":10160,"X":538,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346831Z"},{"ID":1601,"Name":"F078","Points":9753,"X":509,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346831Z"},{"ID":1602,"Name":"Zeta Reticuli S","Points":11188,"X":418,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346831Z"},{"ID":1603,"Name":"Ręcznik do zmiany","Points":11635,"X":412,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346831Z"},{"ID":1604,"Name":"20012","Points":7036,"X":529,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346832Z"},{"ID":1605,"Name":"Szlachcic","Points":10237,"X":460,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346832Z"},{"ID":1607,"Name":"Lord Arsey KING","Points":10285,"X":538,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346832Z"},{"ID":1608,"Name":"Osada","Points":9637,"X":490,"Y":456,"Continent":"K44","Bonus":4,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346832Z"},{"ID":1609,"Name":"CALL 996","Points":9638,"X":543,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346833Z"},{"ID":1610,"Name":"asasa","Points":9840,"X":401,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346833Z"},{"ID":1611,"Name":"003","Points":10252,"X":531,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346833Z"},{"ID":1612,"Name":"Mzm39","Points":10362,"X":548,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346833Z"},{"ID":1613,"Name":"10010","Points":8708,"X":531,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346834Z"},{"ID":1614,"Name":"C003","Points":10971,"X":518,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346834Z"},{"ID":1615,"Name":"003","Points":8886,"X":552,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346834Z"},{"ID":1616,"Name":"102.","Points":6990,"X":505,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346834Z"},{"ID":1617,"Name":"Yogi","Points":9669,"X":539,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346835Z"},{"ID":1618,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":574,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346835Z"},{"ID":1619,"Name":"0034:","Points":10160,"X":431,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346835Z"},{"ID":1620,"Name":"Daleko 039","Points":8762,"X":485,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346835Z"},{"ID":1621,"Name":"[0002]","Points":10495,"X":423,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346836Z"},{"ID":1622,"Name":"Pf Konfederacja","Points":9976,"X":491,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346836Z"},{"ID":1623,"Name":"Gravity","Points":9497,"X":406,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346836Z"},{"ID":1624,"Name":"Br4","Points":8845,"X":425,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346836Z"},{"ID":1625,"Name":"Yogi","Points":10019,"X":511,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346836Z"},{"ID":1626,"Name":"Wioska barbarzyƄska","Points":10119,"X":495,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346837Z"},{"ID":1627,"Name":"*310*","Points":10294,"X":508,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346837Z"},{"ID":1628,"Name":"Szlachcic","Points":9899,"X":497,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346837Z"},{"ID":1629,"Name":"0117","Points":7743,"X":461,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346837Z"},{"ID":1630,"Name":"0001 K55 and987 OZDR.","Points":10160,"X":504,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346838Z"},{"ID":1631,"Name":"ƚmieszkii","Points":9835,"X":513,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346838Z"},{"ID":1632,"Name":"Horyzont zdarzeƄ","Points":9835,"X":517,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346838Z"},{"ID":1633,"Name":"PRO8L3M","Points":10311,"X":447,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346838Z"},{"ID":1634,"Name":"CALL 1057","Points":10495,"X":520,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346839Z"},{"ID":1635,"Name":"Wioska barbarzyƄska","Points":9782,"X":430,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346839Z"},{"ID":1636,"Name":"021. Ć»mij","Points":9761,"X":508,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346839Z"},{"ID":1637,"Name":"Nirvana","Points":4500,"X":539,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699127546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346839Z"},{"ID":1638,"Name":"Reco","Points":9711,"X":495,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34684Z"},{"ID":1639,"Name":".:065:. Chillout","Points":2753,"X":515,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34684Z"},{"ID":1640,"Name":"ƚmieszkii","Points":10019,"X":511,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34684Z"},{"ID":1641,"Name":".:031:. Makaron","Points":8923,"X":512,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34684Z"},{"ID":1642,"Name":"[182]","Points":10233,"X":530,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346841Z"},{"ID":1643,"Name":".achim.","Points":10311,"X":530,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346841Z"},{"ID":1644,"Name":"207 San Juan","Points":9761,"X":466,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346841Z"},{"ID":1645,"Name":"Gundabad","Points":10971,"X":534,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346841Z"},{"ID":1646,"Name":"Ręcznik do zmiany","Points":10845,"X":418,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346841Z"},{"ID":1647,"Name":"ƚmieszkii","Points":9123,"X":518,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346842Z"},{"ID":1648,"Name":"P.013","Points":10375,"X":531,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346842Z"},{"ID":1649,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9835,"X":453,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346842Z"},{"ID":1650,"Name":"Yogi","Points":10019,"X":514,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346842Z"},{"ID":1651,"Name":"Dilonia","Points":8160,"X":518,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346843Z"},{"ID":1652,"Name":"Wioska 519","Points":10495,"X":558,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346843Z"},{"ID":1653,"Name":"Shire","Points":9811,"X":531,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346843Z"},{"ID":1654,"Name":"Gattacka","Points":10635,"X":586,"Y":514,"Continent":"K55","Bonus":8,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346843Z"},{"ID":1655,"Name":"Horyzont zdarzeƄ","Points":10019,"X":512,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346844Z"},{"ID":1656,"Name":"0242","Points":10019,"X":521,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346844Z"},{"ID":1657,"Name":"NOT?","Points":10042,"X":432,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346844Z"},{"ID":1658,"Name":"Summer Slam ~ 006","Points":9703,"X":513,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346844Z"},{"ID":1659,"Name":"10002","Points":11550,"X":525,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346845Z"},{"ID":1660,"Name":"Lord Arsey KING","Points":10285,"X":509,"Y":526,"Continent":"K55","Bonus":7,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346845Z"},{"ID":1661,"Name":"Wioska barbarzyƄska","Points":10495,"X":510,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346845Z"},{"ID":1662,"Name":"Lord Arsey KING","Points":10285,"X":537,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346845Z"},{"ID":1663,"Name":"xxx","Points":10495,"X":487,"Y":443,"Continent":"K44","Bonus":9,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346846Z"},{"ID":1664,"Name":"Wioska","Points":10178,"X":383,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346846Z"},{"ID":1665,"Name":"NOT?","Points":10042,"X":418,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346846Z"},{"ID":1667,"Name":"xxx","Points":8881,"X":513,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346846Z"},{"ID":1668,"Name":"019","Points":7279,"X":517,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346847Z"},{"ID":1669,"Name":"CALL 1015","Points":10311,"X":551,"Y":562,"Continent":"K55","Bonus":4,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346847Z"},{"ID":1670,"Name":"#027","Points":9941,"X":518,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346847Z"},{"ID":1671,"Name":"068. ALFI","Points":1852,"X":477,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346847Z"},{"ID":1672,"Name":"0080","Points":10495,"X":527,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346848Z"},{"ID":1673,"Name":"yogi","Points":10019,"X":513,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346848Z"},{"ID":1674,"Name":"Suppi","Points":9697,"X":441,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346848Z"},{"ID":1675,"Name":"A042","Points":10495,"X":508,"Y":430,"Continent":"K45","Bonus":8,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346848Z"},{"ID":1676,"Name":"20026","Points":11321,"X":507,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346849Z"},{"ID":1677,"Name":"Dum Spiro Spero","Points":10183,"X":493,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346849Z"},{"ID":1678,"Name":"CALL 962","Points":10311,"X":545,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346849Z"},{"ID":1679,"Name":"PARASOL X","Points":10221,"X":504,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346849Z"},{"ID":1680,"Name":"Horyzont zdarzeƄ","Points":10019,"X":509,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346849Z"},{"ID":1681,"Name":"000 Wioska","Points":10636,"X":510,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34685Z"},{"ID":1682,"Name":"Gryfios 018","Points":12143,"X":617,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34685Z"},{"ID":1683,"Name":"Mzm50","Points":4710,"X":538,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34685Z"},{"ID":1684,"Name":"0023 K55 and987 OZDR.","Points":9861,"X":505,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34685Z"},{"ID":1685,"Name":"024. A-RE-SE-EY","Points":10252,"X":570,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346851Z"},{"ID":1686,"Name":"ƚmieszkii","Points":9835,"X":522,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346851Z"},{"ID":1687,"Name":"77k$ Grvvyq","Points":10495,"X":527,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346851Z"},{"ID":1688,"Name":"024. Utopiec","Points":9761,"X":510,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346851Z"},{"ID":1689,"Name":".achim.","Points":9398,"X":529,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346852Z"},{"ID":1690,"Name":"KIELBA 103","Points":10495,"X":450,"Y":569,"Continent":"K54","Bonus":2,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346852Z"},{"ID":1691,"Name":"0046 K55 and987 OZDR","Points":10083,"X":509,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346852Z"},{"ID":1692,"Name":"lady","Points":10612,"X":506,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346852Z"},{"ID":1693,"Name":"10001","Points":11130,"X":534,"Y":564,"Continent":"K55","Bonus":9,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346853Z"},{"ID":1694,"Name":"Karaz-a-Karak","Points":10019,"X":517,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346853Z"},{"ID":1695,"Name":"035. ALFI","Points":1625,"X":471,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346853Z"},{"ID":1696,"Name":"006 Deliverance","Points":9835,"X":520,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346853Z"},{"ID":1697,"Name":"0118","Points":8354,"X":460,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346853Z"},{"ID":1698,"Name":"Szlachcic","Points":9685,"X":487,"Y":480,"Continent":"K44","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346854Z"},{"ID":1699,"Name":"Horyzont zdarzeƄ","Points":10019,"X":513,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346854Z"},{"ID":1700,"Name":"002 Jak tam chƂopie, ƛpisz?","Points":10008,"X":465,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346854Z"},{"ID":1701,"Name":"A002","Points":10495,"X":493,"Y":417,"Continent":"K44","Bonus":8,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346855Z"},{"ID":1702,"Name":"1. Is-2 !!!","Points":10019,"X":500,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346855Z"},{"ID":1703,"Name":"Wioska 501","Points":10495,"X":577,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346855Z"},{"ID":1704,"Name":"2. World !!!","Points":10019,"X":503,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346855Z"},{"ID":1705,"Name":"P Konfederacja","Points":9823,"X":454,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346856Z"},{"ID":1706,"Name":"Wioska","Points":9674,"X":391,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346856Z"},{"ID":1707,"Name":"0054","Points":6520,"X":460,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346856Z"},{"ID":1708,"Name":"2. Jagdpanzer !!!","Points":9828,"X":500,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346856Z"},{"ID":1709,"Name":"Szlachcic 009","Points":9338,"X":564,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346856Z"},{"ID":1710,"Name":"015 - Tychy***","Points":10495,"X":448,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346857Z"},{"ID":1711,"Name":"20025","Points":8672,"X":509,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346857Z"},{"ID":1712,"Name":"20021","Points":9926,"X":504,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346857Z"},{"ID":1713,"Name":"0036 K55 and987 OZDR.","Points":9919,"X":503,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346857Z"},{"ID":1714,"Name":"- Nie biorę tabletek na sen","Points":9835,"X":510,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346858Z"},{"ID":1715,"Name":"Nilonia","Points":6238,"X":518,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346858Z"},{"ID":1716,"Name":"JaamMwG 011","Points":9148,"X":521,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346858Z"},{"ID":1717,"Name":"0033","Points":10203,"X":620,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346858Z"},{"ID":1718,"Name":"(017)","Points":9880,"X":425,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346859Z"},{"ID":1719,"Name":"Oilonia","Points":6521,"X":512,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346859Z"},{"ID":1720,"Name":"Szlachcic","Points":9852,"X":551,"Y":496,"Continent":"K45","Bonus":3,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346859Z"},{"ID":1721,"Name":"010.","Points":10132,"X":530,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346859Z"},{"ID":1722,"Name":"065. ALFI","Points":1299,"X":471,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34686Z"},{"ID":1723,"Name":"And987","Points":10495,"X":502,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34686Z"},{"ID":1724,"Name":"#0124 Zabawa","Points":9410,"X":493,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34686Z"},{"ID":1725,"Name":"ƚmieszkii","Points":9175,"X":512,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34686Z"},{"ID":1726,"Name":"004","Points":10252,"X":530,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346861Z"},{"ID":1727,"Name":"Aleartis","Points":9711,"X":487,"Y":546,"Continent":"K54","Bonus":6,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346861Z"},{"ID":1728,"Name":"Horyzont zdarzeƄ","Points":9835,"X":529,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346861Z"},{"ID":1729,"Name":"Head Held High","Points":10362,"X":501,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346861Z"},{"ID":1730,"Name":"Winter is coming","Points":10311,"X":509,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346862Z"},{"ID":1731,"Name":"007","Points":10160,"X":528,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346862Z"},{"ID":1732,"Name":"KARTAGINA ..2","Points":6898,"X":454,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346862Z"},{"ID":1733,"Name":"Wioska 7","Points":1428,"X":443,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346862Z"},{"ID":1734,"Name":"KIELBA 002","Points":10495,"X":447,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346862Z"},{"ID":1735,"Name":"0018","Points":10495,"X":530,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346863Z"},{"ID":1736,"Name":"Wioska skobol","Points":10216,"X":599,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346863Z"},{"ID":1737,"Name":"005","Points":8070,"X":470,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346863Z"},{"ID":1738,"Name":"001. Pianohi1Tars","Points":10066,"X":611,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346863Z"},{"ID":1739,"Name":"Ilonia","Points":8230,"X":520,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346864Z"},{"ID":1740,"Name":"...xXx... II","Points":9966,"X":603,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346864Z"},{"ID":1741,"Name":"7.62 mm","Points":10019,"X":503,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346864Z"},{"ID":1742,"Name":"001.Aconcagua","Points":10495,"X":601,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346864Z"},{"ID":1743,"Name":"037.","Points":10252,"X":551,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346865Z"},{"ID":1744,"Name":"Gliwice","Points":9899,"X":593,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346865Z"},{"ID":1745,"Name":"Brat447","Points":10476,"X":418,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346865Z"},{"ID":1747,"Name":"Napewno to nie jest off","Points":7536,"X":515,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346865Z"},{"ID":1748,"Name":"Krakow","Points":9526,"X":592,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346866Z"},{"ID":1749,"Name":"#0107 ƚwięty MikoƂaj","Points":9295,"X":480,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346866Z"},{"ID":1750,"Name":"podgrzybek","Points":9591,"X":601,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346866Z"},{"ID":1751,"Name":"031","Points":10495,"X":537,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346866Z"},{"ID":1752,"Name":"W.181/01","Points":10242,"X":608,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346867Z"},{"ID":1753,"Name":"Monetki","Points":10291,"X":472,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346867Z"},{"ID":1754,"Name":"Godziwa nazwa","Points":9966,"X":605,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346867Z"},{"ID":1755,"Name":"~~LatającyHolender~~","Points":7808,"X":547,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346867Z"},{"ID":1756,"Name":".WIDZEW","Points":9840,"X":595,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346867Z"},{"ID":1757,"Name":"+44 73 Lyon Confluence","Points":9849,"X":430,"Y":471,"Continent":"K44","Bonus":6,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346868Z"},{"ID":1759,"Name":"#0126 Koliber","Points":10160,"X":494,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346868Z"},{"ID":1760,"Name":"EXA","Points":10495,"X":616,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346868Z"},{"ID":1761,"Name":"017 Indianopolis","Points":9761,"X":439,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346868Z"},{"ID":1762,"Name":"ƚpij spokojnie","Points":10495,"X":582,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346869Z"},{"ID":1763,"Name":"Jaaa","Points":10490,"X":571,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346869Z"},{"ID":1764,"Name":"*5601* Bradford City","Points":10287,"X":600,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346869Z"},{"ID":1765,"Name":"09 | Wioska barbarzyƄska","Points":9757,"X":541,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346869Z"},{"ID":1766,"Name":"0001","Points":10495,"X":604,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34687Z"},{"ID":1767,"Name":"Szlachcic","Points":9637,"X":493,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34687Z"},{"ID":1768,"Name":"Abadonia WWW","Points":10955,"X":618,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34687Z"},{"ID":1769,"Name":"7.62 mm","Points":10019,"X":477,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34687Z"},{"ID":1770,"Name":"001 Sparta","Points":10019,"X":605,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346873Z"},{"ID":1771,"Name":"Yogi","Points":10019,"X":540,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346873Z"},{"ID":1772,"Name":"040","Points":10068,"X":586,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346874Z"},{"ID":1773,"Name":"001. Wioska BieniuS","Points":10495,"X":593,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346876Z"},{"ID":1774,"Name":"008.","Points":6722,"X":615,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346877Z"},{"ID":1775,"Name":"007 Sol.","Points":10019,"X":611,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346877Z"},{"ID":1776,"Name":"0018 MzM","Points":9322,"X":607,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346878Z"},{"ID":1777,"Name":"Osada","Points":10300,"X":501,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346879Z"},{"ID":1778,"Name":"0050","Points":9483,"X":600,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34688Z"},{"ID":1779,"Name":"0001","Points":10343,"X":571,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346881Z"},{"ID":1780,"Name":"CALL 1038","Points":10838,"X":540,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346881Z"},{"ID":1781,"Name":"9.6 Bonus PKP","Points":10471,"X":555,"Y":434,"Continent":"K45","Bonus":4,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346882Z"},{"ID":1782,"Name":"~~LatającyHolender~~","Points":10247,"X":598,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346883Z"},{"ID":1783,"Name":"OgrĂłd Warzywny","Points":10371,"X":455,"Y":561,"Continent":"K54","Bonus":3,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346884Z"},{"ID":1784,"Name":"002","Points":9860,"X":606,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346885Z"},{"ID":1785,"Name":"GONDOR f","Points":8877,"X":541,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346886Z"},{"ID":1786,"Name":"ZAMEK ABADONA 1","Points":11130,"X":591,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346887Z"},{"ID":1787,"Name":"amator MO5","Points":10487,"X":536,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346888Z"},{"ID":1788,"Name":"sƂodziuteƄka 13","Points":10019,"X":602,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346888Z"},{"ID":1789,"Name":"Szlachcic","Points":10237,"X":582,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34689Z"},{"ID":1790,"Name":"111.","Points":8034,"X":533,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346891Z"},{"ID":1791,"Name":"sƂodziuteƄka 06","Points":9821,"X":604,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346892Z"},{"ID":1792,"Name":"CALL 956","Points":10311,"X":547,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346892Z"},{"ID":1793,"Name":"013","Points":9934,"X":612,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346893Z"},{"ID":1794,"Name":"PRO8L3M","Points":10437,"X":447,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346894Z"},{"ID":1795,"Name":"Wioska JaaMwG","Points":10478,"X":578,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346896Z"},{"ID":1796,"Name":"Jaaa","Points":10432,"X":567,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346896Z"},{"ID":1797,"Name":"B044","Points":10116,"X":480,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346897Z"},{"ID":1798,"Name":"Szlachcic","Points":10237,"X":579,"Y":493,"Continent":"K45","Bonus":3,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346898Z"},{"ID":1799,"Name":"[186]","Points":9976,"X":536,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346899Z"},{"ID":1800,"Name":"#01.","Points":10252,"X":526,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346899Z"},{"ID":1801,"Name":"a moĆŒe off ? :)","Points":9374,"X":574,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3469Z"},{"ID":1802,"Name":"Wioska 408","Points":10495,"X":555,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346901Z"},{"ID":1803,"Name":"022.","Points":6874,"X":612,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346902Z"},{"ID":1804,"Name":"ZƂote Wrota","Points":5950,"X":532,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":8513699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346902Z"},{"ID":1805,"Name":"010 Moria","Points":9816,"X":604,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346903Z"},{"ID":1807,"Name":"+44 63 Mions","Points":9840,"X":432,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346904Z"},{"ID":1808,"Name":"-001- Delusions of Saviour","Points":10294,"X":578,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698693697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346906Z"},{"ID":1809,"Name":"139 Gudalajahara","Points":9761,"X":472,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346906Z"},{"ID":1810,"Name":"Szlachcic x","Points":9152,"X":508,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346907Z"},{"ID":1811,"Name":"Wioska barbarzyƄska","Points":10008,"X":433,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346908Z"},{"ID":1812,"Name":"EXA","Points":10495,"X":605,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346909Z"},{"ID":1813,"Name":"027","Points":10236,"X":467,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34691Z"},{"ID":1814,"Name":"000 PRO8L3M?","Points":9744,"X":573,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346911Z"},{"ID":1815,"Name":"F021","Points":9753,"X":497,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346912Z"},{"ID":1816,"Name":"PiekƂo to inni","Points":9761,"X":521,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346913Z"},{"ID":1817,"Name":"Marienburg 8","Points":2412,"X":527,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346913Z"},{"ID":1818,"Name":"014.","Points":7563,"X":599,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346914Z"},{"ID":1819,"Name":"B007","Points":10495,"X":483,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346915Z"},{"ID":1820,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":581,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346916Z"},{"ID":1821,"Name":".WisƂa KrakĂłw.","Points":10328,"X":599,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346916Z"},{"ID":1822,"Name":"[109]","Points":9938,"X":544,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346917Z"},{"ID":1823,"Name":"PiekƂo to inni","Points":8806,"X":518,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346918Z"},{"ID":1824,"Name":"MĂłwili na nią sƂoƄce","Points":10311,"X":577,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346919Z"},{"ID":1825,"Name":"+44 63 Sainte Foy les Lyon","Points":9840,"X":433,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346919Z"},{"ID":1826,"Name":"Lord Arsey KING","Points":10285,"X":581,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34692Z"},{"ID":1827,"Name":"115.","Points":9299,"X":509,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346921Z"},{"ID":1828,"Name":"A#034#","Points":11837,"X":421,"Y":476,"Continent":"K44","Bonus":6,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346922Z"},{"ID":1829,"Name":"0007","Points":10301,"X":604,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346922Z"},{"ID":1830,"Name":"!Wioska 502","Points":10495,"X":586,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346924Z"},{"ID":1831,"Name":"044","Points":10068,"X":599,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346925Z"},{"ID":1832,"Name":"07 Chorwacja","Points":9595,"X":586,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346926Z"},{"ID":1833,"Name":"012.","Points":9737,"X":608,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346926Z"},{"ID":1834,"Name":"Front_22","Points":9638,"X":455,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346927Z"},{"ID":1835,"Name":"Lord Arsey KING","Points":10285,"X":575,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346928Z"},{"ID":1836,"Name":"004","Points":3134,"X":506,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346929Z"},{"ID":1837,"Name":"PiekƂo to inni","Points":9761,"X":518,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346929Z"},{"ID":1838,"Name":"Lord Arsey KING","Points":10285,"X":581,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34693Z"},{"ID":1839,"Name":"#0078 Wermikulit","Points":10005,"X":496,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346931Z"},{"ID":1840,"Name":"050","Points":9481,"X":492,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346932Z"},{"ID":1841,"Name":"016","Points":10160,"X":465,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346933Z"},{"ID":1842,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":600,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346934Z"},{"ID":1843,"Name":"B002","Points":9588,"X":555,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346935Z"},{"ID":1844,"Name":"0032","Points":9846,"X":616,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346936Z"},{"ID":1845,"Name":"0229","Points":10019,"X":470,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346937Z"},{"ID":1846,"Name":"OSTIGLIAT","Points":8966,"X":532,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346937Z"},{"ID":1847,"Name":"039","Points":8398,"X":555,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346938Z"},{"ID":1848,"Name":"007","Points":9547,"X":558,"Y":541,"Continent":"K55","Bonus":7,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346939Z"},{"ID":1849,"Name":"[035]","Points":10252,"X":595,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346941Z"},{"ID":1850,"Name":"ObroƄcyZamkuTrzymaliSieDzielnie","Points":10236,"X":479,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346941Z"},{"ID":1851,"Name":"KiLL YoU!","Points":10311,"X":603,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346942Z"},{"ID":1852,"Name":"035","Points":9747,"X":519,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346943Z"},{"ID":1853,"Name":"Essa 001","Points":10218,"X":570,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346944Z"},{"ID":1854,"Name":"Szlachcic","Points":9976,"X":569,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346944Z"},{"ID":1855,"Name":"Jaaa","Points":10479,"X":589,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346945Z"},{"ID":1856,"Name":".achim.","Points":5178,"X":532,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346946Z"},{"ID":1857,"Name":"Szlachcic 002","Points":10311,"X":616,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346947Z"},{"ID":1858,"Name":"Ateny_71","Points":3241,"X":472,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346948Z"},{"ID":1859,"Name":"006.","Points":6373,"X":613,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346949Z"},{"ID":1860,"Name":"K44 x020.","Points":6957,"X":457,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34695Z"},{"ID":1861,"Name":"Kotka nie ma, myszka harcuje","Points":10160,"X":571,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346951Z"},{"ID":1862,"Name":"nie ma mnie ,ostrze kredki","Points":9761,"X":606,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346951Z"},{"ID":1863,"Name":"Wioska BarbarzyƄska","Points":9761,"X":544,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346952Z"},{"ID":1864,"Name":"Moria","Points":6405,"X":535,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346953Z"},{"ID":1865,"Name":"MichaƂ","Points":10495,"X":531,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346954Z"},{"ID":1866,"Name":"Pf Konfederacja","Points":7482,"X":491,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346955Z"},{"ID":1867,"Name":"CALL 1077","Points":10728,"X":528,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346956Z"},{"ID":1868,"Name":"0055","Points":10495,"X":510,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346957Z"},{"ID":1869,"Name":"Wioska","Points":10178,"X":384,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346958Z"},{"ID":1870,"Name":"Zeta Reticuli S","Points":11188,"X":404,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346958Z"},{"ID":1871,"Name":"kek","Points":7000,"X":545,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346959Z"},{"ID":1872,"Name":"0073","Points":10429,"X":451,"Y":439,"Continent":"K44","Bonus":8,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346961Z"},{"ID":1873,"Name":"Szlachcic 060","Points":8024,"X":540,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346962Z"},{"ID":1874,"Name":"Butem w Morgen","Points":9836,"X":482,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346962Z"},{"ID":1875,"Name":"CALL 999","Points":10311,"X":542,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346963Z"},{"ID":1876,"Name":"Os Konfederacja","Points":9448,"X":470,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346964Z"},{"ID":1877,"Name":"026 - Belfast","Points":10495,"X":406,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346965Z"},{"ID":1878,"Name":"[143]","Points":9809,"X":562,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346966Z"},{"ID":1879,"Name":"Oh oh oho","Points":10160,"X":537,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346967Z"},{"ID":1880,"Name":"kathare","Points":10495,"X":493,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346968Z"},{"ID":1881,"Name":"CALL 1061","Points":10495,"X":523,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346969Z"},{"ID":1882,"Name":"aaa","Points":1985,"X":456,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346969Z"},{"ID":1883,"Name":"003","Points":10019,"X":524,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34697Z"},{"ID":1884,"Name":"P Konfederacja","Points":9535,"X":453,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346971Z"},{"ID":1885,"Name":"SsSs","Points":9906,"X":418,"Y":492,"Continent":"K44","Bonus":7,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346972Z"},{"ID":1886,"Name":"Wioska uorior","Points":9626,"X":530,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346972Z"},{"ID":1887,"Name":"Szlachcic !!!","Points":10311,"X":498,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346973Z"},{"ID":1888,"Name":"amator MO4","Points":10495,"X":535,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346974Z"},{"ID":1889,"Name":"keepo","Points":5971,"X":477,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346976Z"},{"ID":1890,"Name":"0038 MzM","Points":10019,"X":547,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346976Z"},{"ID":1891,"Name":"003","Points":5470,"X":471,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346977Z"},{"ID":1892,"Name":"sas","Points":10277,"X":539,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346978Z"},{"ID":1893,"Name":"10015","Points":8014,"X":527,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346979Z"},{"ID":1894,"Name":"Jilonia","Points":6749,"X":513,"Y":555,"Continent":"K55","Bonus":7,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34698Z"},{"ID":1895,"Name":"MichaƂ","Points":10495,"X":537,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346981Z"},{"ID":1896,"Name":"009","Points":9744,"X":554,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346981Z"},{"ID":1897,"Name":"Szlachcic","Points":9852,"X":550,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346982Z"},{"ID":1898,"Name":".:009:. Chillout","Points":9146,"X":515,"Y":430,"Continent":"K45","Bonus":1,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346983Z"},{"ID":1899,"Name":"kek","Points":8451,"X":537,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346984Z"},{"ID":1900,"Name":"032","Points":9742,"X":522,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346985Z"},{"ID":1901,"Name":"K55","Points":11678,"X":531,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346986Z"},{"ID":1902,"Name":"[089]","Points":10005,"X":535,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346986Z"},{"ID":1903,"Name":"Tamk 005. Vegeta","Points":9084,"X":398,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346987Z"},{"ID":1904,"Name":"Fajna 001","Points":4596,"X":450,"Y":557,"Continent":"K54","Bonus":4,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346988Z"},{"ID":1905,"Name":"Lord Arsey KING","Points":10285,"X":539,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346989Z"},{"ID":1906,"Name":"CALL 1021","Points":10311,"X":550,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34699Z"},{"ID":1907,"Name":"CALL 1084","Points":10495,"X":536,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34699Z"},{"ID":1908,"Name":"002. Marzyciel Shrek","Points":5781,"X":482,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346991Z"},{"ID":1909,"Name":"85k$ Grvvyq","Points":9355,"X":535,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346993Z"},{"ID":1910,"Name":"30005","Points":8838,"X":488,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346994Z"},{"ID":1911,"Name":"P.032","Points":10143,"X":544,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346994Z"},{"ID":1912,"Name":"0062 ~223~","Points":9091,"X":442,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346995Z"},{"ID":1914,"Name":"xxx","Points":9949,"X":504,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346996Z"},{"ID":1915,"Name":"056.","Points":9741,"X":529,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346997Z"},{"ID":1916,"Name":"B009","Points":10495,"X":485,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346997Z"},{"ID":1917,"Name":"[193","Points":9814,"X":530,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346998Z"},{"ID":1918,"Name":"0.Nowy Jork","Points":9954,"X":518,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.346999Z"},{"ID":1919,"Name":"Osada","Points":9968,"X":493,"Y":448,"Continent":"K44","Bonus":8,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347001Z"},{"ID":1920,"Name":"0001 paawlo13","Points":10160,"X":424,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347001Z"},{"ID":1921,"Name":"112 Ottawa","Points":9761,"X":479,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347002Z"},{"ID":1924,"Name":"Os Konfederacja","Points":9812,"X":480,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347003Z"},{"ID":1926,"Name":"021","Points":9986,"X":505,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347004Z"},{"ID":1928,"Name":"457|424","Points":10481,"X":450,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347004Z"},{"ID":1929,"Name":"001 Delirium","Points":10476,"X":425,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347005Z"},{"ID":1930,"Name":"A010","Points":10495,"X":489,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347006Z"},{"ID":1932,"Name":"Fajna 045","Points":3782,"X":458,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347007Z"},{"ID":1934,"Name":"K44 009","Points":7589,"X":429,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347008Z"},{"ID":1936,"Name":"P Konfederacja","Points":9897,"X":456,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347009Z"},{"ID":1940,"Name":"Lord Arsey KING","Points":9146,"X":517,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34701Z"},{"ID":1941,"Name":"Mam do tego nosa","Points":9899,"X":498,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347011Z"},{"ID":1942,"Name":"011","Points":10393,"X":468,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347011Z"},{"ID":1943,"Name":"Darma","Points":9835,"X":427,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347012Z"},{"ID":1944,"Name":"Butem w Morgen","Points":10495,"X":489,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347013Z"},{"ID":1947,"Name":"Fresio","Points":10067,"X":420,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347014Z"},{"ID":1948,"Name":"PRO8L3M","Points":10311,"X":411,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347014Z"},{"ID":1949,"Name":"0030","Points":10677,"X":454,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347016Z"},{"ID":1950,"Name":"045","Points":5957,"X":543,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347017Z"},{"ID":1952,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9218,"X":452,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347018Z"},{"ID":1953,"Name":"SugarDandy","Points":10319,"X":431,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347018Z"},{"ID":1954,"Name":"1. T-10","Points":10144,"X":493,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347019Z"},{"ID":1956,"Name":"078. ALFI","Points":1894,"X":481,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34702Z"},{"ID":1957,"Name":"Suppi","Points":10231,"X":424,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347021Z"},{"ID":1958,"Name":"Wioska barbarzyƄska","Points":9809,"X":442,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347021Z"},{"ID":1959,"Name":"VN No Door","Points":9835,"X":467,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347022Z"},{"ID":1961,"Name":"B028","Points":8514,"X":482,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347023Z"},{"ID":1963,"Name":"Wioska barbarzyƄska","Points":9703,"X":586,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347024Z"},{"ID":1964,"Name":"NOT","Points":10042,"X":418,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347025Z"},{"ID":1965,"Name":"Suppi","Points":9559,"X":425,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347026Z"},{"ID":1966,"Name":"Jaaa","Points":10481,"X":583,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347027Z"},{"ID":1967,"Name":"Szlachcic","Points":10311,"X":494,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347028Z"},{"ID":1968,"Name":"?+44 85 Zuydcoote","Points":9747,"X":455,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347028Z"},{"ID":1969,"Name":"yogi","Points":10019,"X":510,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347029Z"},{"ID":1970,"Name":"keepo","Points":10495,"X":484,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34703Z"},{"ID":1972,"Name":"Joms 005","Points":10178,"X":527,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347031Z"},{"ID":1973,"Name":"0158","Points":8596,"X":462,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347032Z"},{"ID":1974,"Name":"*INTERTWINED*","Points":9711,"X":519,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347032Z"},{"ID":1975,"Name":"kathare","Points":10401,"X":498,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347033Z"},{"ID":1976,"Name":"lady anima","Points":9997,"X":495,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347034Z"},{"ID":1977,"Name":"036. Ara","Points":9628,"X":506,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347035Z"},{"ID":1978,"Name":"A#064#","Points":10391,"X":417,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347036Z"},{"ID":1979,"Name":"lady","Points":7413,"X":495,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347037Z"},{"ID":1980,"Name":"Landy 3","Points":8845,"X":566,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347037Z"},{"ID":1981,"Name":"Nowa Nadzieja","Points":9734,"X":493,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347038Z"},{"ID":1982,"Name":".:044:. Chillout","Points":10559,"X":500,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347039Z"},{"ID":1983,"Name":"NOT?","Points":10042,"X":422,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34704Z"},{"ID":1984,"Name":"x16","Points":10285,"X":432,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347041Z"},{"ID":1985,"Name":"-xx13","Points":10252,"X":490,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347041Z"},{"ID":1986,"Name":"Suppi","Points":10311,"X":431,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347042Z"},{"ID":1987,"Name":"P Konfederacja 8","Points":9694,"X":458,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347043Z"},{"ID":1988,"Name":"Suppi","Points":9777,"X":439,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347044Z"},{"ID":1989,"Name":"034","Points":9745,"X":518,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347046Z"},{"ID":1990,"Name":"Osada ST","Points":2800,"X":454,"Y":540,"Continent":"K54","Bonus":6,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347046Z"},{"ID":1991,"Name":"Wioska barbarzyƄska","Points":10285,"X":426,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347047Z"},{"ID":1992,"Name":"09 Niemcy","Points":6263,"X":585,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347048Z"},{"ID":1993,"Name":"064","Points":10042,"X":420,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347049Z"},{"ID":1994,"Name":"Os Konfederacja","Points":9720,"X":480,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347049Z"},{"ID":1995,"Name":"014","Points":10129,"X":421,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34705Z"},{"ID":1996,"Name":"Szlachcic","Points":10300,"X":492,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347051Z"},{"ID":1997,"Name":"Lynortis","Points":4181,"X":454,"Y":546,"Continent":"K54","Bonus":2,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347052Z"},{"ID":1998,"Name":"058 Kahului","Points":9761,"X":460,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347052Z"},{"ID":1999,"Name":"046","Points":9825,"X":421,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347053Z"},{"ID":2000,"Name":"Jaaa","Points":10484,"X":582,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347054Z"},{"ID":2001,"Name":"[183]","Points":9587,"X":553,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347055Z"},{"ID":2002,"Name":"JL5","Points":8253,"X":539,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347056Z"},{"ID":2003,"Name":"Osada","Points":10295,"X":491,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347057Z"},{"ID":2004,"Name":"012 123 rta","Points":9013,"X":542,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347058Z"},{"ID":2005,"Name":"!Aqua004","Points":10495,"X":564,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347059Z"},{"ID":2006,"Name":"Cyber detox","Points":10204,"X":400,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347059Z"},{"ID":2007,"Name":"172 Ushuaia","Points":9761,"X":482,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34706Z"},{"ID":2008,"Name":"Butem w Morgen","Points":10495,"X":553,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347061Z"},{"ID":2009,"Name":"004","Points":9638,"X":555,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347062Z"},{"ID":2010,"Name":"Taran","Points":10237,"X":585,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347063Z"},{"ID":2011,"Name":"BBB","Points":8849,"X":576,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347063Z"},{"ID":2012,"Name":"- 216 -","Points":10000,"X":552,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347064Z"},{"ID":2013,"Name":"070 Chicago","Points":10019,"X":456,"Y":476,"Continent":"K44","Bonus":4,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347065Z"},{"ID":2014,"Name":"20015","Points":10971,"X":516,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347066Z"},{"ID":2015,"Name":"F034","Points":9750,"X":496,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347067Z"},{"ID":2016,"Name":"012. Yrka","Points":10083,"X":510,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347068Z"},{"ID":2017,"Name":"K55","Points":9538,"X":539,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347069Z"},{"ID":2018,"Name":"Obreit","Points":4076,"X":431,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347069Z"},{"ID":2019,"Name":"CALL 1062","Points":9899,"X":520,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34707Z"},{"ID":2020,"Name":".:028:.Chillout","Points":7734,"X":512,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347071Z"},{"ID":2021,"Name":"?+44 75 Lyon Grange Blanche","Points":9709,"X":459,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347072Z"},{"ID":2022,"Name":"Napewno to nie jest off","Points":9629,"X":513,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347073Z"},{"ID":2023,"Name":"PRO8L3M","Points":8419,"X":457,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347074Z"},{"ID":2024,"Name":"0020","Points":9993,"X":464,"Y":466,"Continent":"K44","Bonus":9,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347075Z"},{"ID":2025,"Name":"P.016","Points":10345,"X":534,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347076Z"},{"ID":2026,"Name":"C020","Points":10214,"X":526,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347076Z"},{"ID":2027,"Name":"051","Points":10160,"X":531,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347078Z"},{"ID":2028,"Name":"- 118 -","Points":9424,"X":540,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347079Z"},{"ID":2029,"Name":"+44 61 Chaponost","Points":9860,"X":417,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34708Z"},{"ID":2030,"Name":"Kasyno","Points":9994,"X":437,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347081Z"},{"ID":2031,"Name":"160 Fortaleza","Points":9761,"X":479,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347082Z"},{"ID":2032,"Name":"159 Rio de Janeiro","Points":9761,"X":480,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347083Z"},{"ID":2033,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":424,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347084Z"},{"ID":2034,"Name":"003 Arizona","Points":10495,"X":610,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347084Z"},{"ID":2035,"Name":"0028 K55 and987 OZDR.","Points":9842,"X":504,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347086Z"},{"ID":2036,"Name":"+44 61 Rexpoede","Points":9653,"X":415,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347087Z"},{"ID":2037,"Name":"206","Points":9756,"X":565,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347088Z"},{"ID":2038,"Name":"7.62 mm","Points":10019,"X":467,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347088Z"},{"ID":2039,"Name":"0027","Points":10211,"X":561,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34709Z"},{"ID":2040,"Name":"2. Vipera","Points":10287,"X":489,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347091Z"},{"ID":2041,"Name":"SsSs","Points":10069,"X":423,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347092Z"},{"ID":2042,"Name":"Ręcznik do zmiany","Points":12154,"X":426,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347092Z"},{"ID":2043,"Name":".:092:. JuanPabloII","Points":8605,"X":542,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347094Z"},{"ID":2044,"Name":"?+44 86 Lyon Croix Rousse","Points":9724,"X":460,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347095Z"},{"ID":2045,"Name":"Brat447","Points":8460,"X":441,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347096Z"},{"ID":2046,"Name":"...Just like that","Points":9364,"X":463,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347096Z"},{"ID":2047,"Name":"CALL 959","Points":10311,"X":543,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347098Z"},{"ID":2048,"Name":"ANGMAR a","Points":11130,"X":532,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347099Z"},{"ID":2049,"Name":"xxx","Points":10495,"X":484,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3471Z"},{"ID":2050,"Name":"Harbar 3","Points":3223,"X":430,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3471Z"},{"ID":2051,"Name":"xxx","Points":10495,"X":481,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347101Z"},{"ID":2052,"Name":"-019-","Points":10357,"X":468,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347103Z"},{"ID":2053,"Name":"Mielno","Points":10375,"X":520,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347104Z"},{"ID":2054,"Name":"- 046 -","Points":10000,"X":539,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347105Z"},{"ID":2055,"Name":"ZasiedmiogĂłrogrĂłd","Points":10178,"X":518,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347105Z"},{"ID":2056,"Name":"Pf Konfederacja","Points":9902,"X":485,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347106Z"},{"ID":2057,"Name":"077 Shreveport","Points":9761,"X":457,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347107Z"},{"ID":2058,"Name":"Monetki","Points":10290,"X":473,"Y":436,"Continent":"K44","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347108Z"},{"ID":2059,"Name":"P Konfederacja","Points":9720,"X":460,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347108Z"},{"ID":2060,"Name":"SsSs","Points":10495,"X":449,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347109Z"},{"ID":2061,"Name":"Azgeda","Points":9816,"X":537,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34711Z"},{"ID":2062,"Name":"Wioska barbarzyƄska","Points":8511,"X":536,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347111Z"},{"ID":2063,"Name":"Brat447","Points":10160,"X":384,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347112Z"},{"ID":2064,"Name":"Brat447","Points":10244,"X":384,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347113Z"},{"ID":2065,"Name":"2. War**","Points":6062,"X":491,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347114Z"},{"ID":2066,"Name":"ok.","Points":10495,"X":389,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347115Z"},{"ID":2067,"Name":"0009 K55 and987 OZDR.","Points":9842,"X":504,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347116Z"},{"ID":2068,"Name":"214 Gold Coast","Points":9761,"X":531,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347117Z"},{"ID":2069,"Name":"0015 K55 and987 OZDR.","Points":9844,"X":502,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347118Z"},{"ID":2070,"Name":".achim.","Points":12154,"X":532,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347119Z"},{"ID":2071,"Name":"Sparta_41","Points":9638,"X":480,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347119Z"},{"ID":2072,"Name":".:089:.JuanPabloII","Points":10495,"X":539,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34712Z"},{"ID":2073,"Name":"007 Celadon City","Points":11109,"X":589,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347121Z"},{"ID":2074,"Name":"PUƁ WYPƁATY POSZƁO NA MUREK XDD","Points":9878,"X":547,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347122Z"},{"ID":2075,"Name":"Utumno","Points":9680,"X":504,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347123Z"},{"ID":2076,"Name":"Stage group A","Points":8769,"X":503,"Y":582,"Continent":"K55","Bonus":6,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347124Z"},{"ID":2077,"Name":"Stolica","Points":10019,"X":537,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347125Z"},{"ID":2078,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":565,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347126Z"},{"ID":2079,"Name":"ZasiedmiogĂłrogrĂłd","Points":5841,"X":538,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347126Z"},{"ID":2080,"Name":"ƚmieszkii","Points":9404,"X":519,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347127Z"},{"ID":2081,"Name":"Catern","Points":10019,"X":538,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347128Z"},{"ID":2082,"Name":"2. Sosnomysz","Points":10252,"X":545,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347129Z"},{"ID":2083,"Name":"Os Konfederacja +","Points":10068,"X":475,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.34713Z"},{"ID":2084,"Name":"A034","Points":9792,"X":496,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347131Z"},{"ID":2085,"Name":"SsSs","Points":9833,"X":461,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347132Z"},{"ID":2086,"Name":"PiekƂo to inni","Points":10160,"X":518,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347133Z"},{"ID":2087,"Name":"006","Points":9711,"X":549,"Y":534,"Continent":"K55","Bonus":7,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347134Z"},{"ID":2088,"Name":"Marienburgg 11","Points":8780,"X":533,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347135Z"},{"ID":2089,"Name":"-2-","Points":10997,"X":585,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347136Z"},{"ID":2091,"Name":"Szlachcic","Points":9852,"X":562,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.347137Z"},{"ID":2092,"Name":"Teatr","Points":10495,"X":433,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378252Z"},{"ID":2093,"Name":"keepo","Points":5041,"X":478,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378253Z"},{"ID":2094,"Name":"Suppi","Points":9556,"X":436,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378253Z"},{"ID":2095,"Name":"Fajna 014","Points":6701,"X":451,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378254Z"},{"ID":2096,"Name":"[098]","Points":9957,"X":552,"Y":508,"Continent":"K55","Bonus":7,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378255Z"},{"ID":2098,"Name":"001 Jacek Jaworek baza","Points":9651,"X":415,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378255Z"},{"ID":2099,"Name":"Jaaa","Points":10484,"X":573,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378256Z"},{"ID":2100,"Name":"Suppi","Points":9825,"X":416,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378256Z"},{"ID":2101,"Name":"069","Points":10129,"X":416,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378257Z"},{"ID":2102,"Name":". Incepcja","Points":8854,"X":419,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378258Z"},{"ID":2103,"Name":"KIELBA 069","Points":10365,"X":469,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378258Z"},{"ID":2104,"Name":".achim.","Points":10311,"X":540,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378259Z"},{"ID":2105,"Name":"027","Points":10042,"X":422,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378259Z"},{"ID":2106,"Name":".achim.","Points":10311,"X":532,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37826Z"},{"ID":2107,"Name":"008","Points":9835,"X":549,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37826Z"},{"ID":2108,"Name":"BBB","Points":10495,"X":583,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378261Z"},{"ID":2109,"Name":"Pf Konfederacja","Points":9714,"X":484,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378262Z"},{"ID":2110,"Name":"(018)","Points":10146,"X":425,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378262Z"},{"ID":2111,"Name":"?+44 85 Brignais","Points":9846,"X":459,"Y":481,"Continent":"K44","Bonus":2,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378263Z"},{"ID":2112,"Name":"012","Points":10495,"X":588,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378263Z"},{"ID":2113,"Name":"Wioska 434","Points":10495,"X":566,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378264Z"},{"ID":2114,"Name":"-xx14","Points":10393,"X":492,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378264Z"},{"ID":2115,"Name":"!Wioska 424","Points":10495,"X":563,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378265Z"},{"ID":2116,"Name":"BBB","Points":9494,"X":588,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378265Z"},{"ID":2117,"Name":"[091]","Points":10057,"X":539,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378266Z"},{"ID":2118,"Name":"Mzm15","Points":10495,"X":547,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378267Z"},{"ID":2119,"Name":"Mzm35","Points":10362,"X":550,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378267Z"},{"ID":2120,"Name":"0072","Points":8839,"X":452,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378268Z"},{"ID":2121,"Name":"00972","Points":6600,"X":462,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378268Z"},{"ID":2122,"Name":"Napewno to nie jest off","Points":3661,"X":515,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378269Z"},{"ID":2123,"Name":"0076","Points":7693,"X":449,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378269Z"},{"ID":2124,"Name":".achim.","Points":10311,"X":518,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37827Z"},{"ID":2125,"Name":"00731 nsplus1","Points":9835,"X":450,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378271Z"},{"ID":2126,"Name":"Szlachcic","Points":9885,"X":497,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378271Z"},{"ID":2127,"Name":"00703","Points":7528,"X":452,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378272Z"},{"ID":2128,"Name":"B010","Points":10495,"X":578,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378272Z"},{"ID":2129,"Name":"P.021","Points":10136,"X":538,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378273Z"},{"ID":2130,"Name":"014","Points":10311,"X":584,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378273Z"},{"ID":2131,"Name":"ladyanima","Points":9811,"X":513,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378274Z"},{"ID":2132,"Name":"052 |","Points":9919,"X":545,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378274Z"},{"ID":2133,"Name":"xxx","Points":10495,"X":503,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378275Z"},{"ID":2134,"Name":"ladyanima","Points":9151,"X":515,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378276Z"},{"ID":2135,"Name":"The Last One","Points":6355,"X":500,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699341889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378276Z"},{"ID":2136,"Name":"048","Points":9771,"X":430,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378277Z"},{"ID":2137,"Name":"Unlovable","Points":8156,"X":506,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378277Z"},{"ID":2138,"Name":"NOT?","Points":2032,"X":439,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378278Z"},{"ID":2139,"Name":"030","Points":10636,"X":562,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378278Z"},{"ID":2140,"Name":"GÓRY BƁĘKITNE f?","Points":11366,"X":530,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378279Z"},{"ID":2141,"Name":"036. ALFI","Points":1705,"X":477,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37828Z"},{"ID":2142,"Name":"052.","Points":9902,"X":523,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37828Z"},{"ID":2143,"Name":"Joms 004","Points":10241,"X":526,"Y":422,"Continent":"K45","Bonus":2,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378281Z"},{"ID":2144,"Name":"keepo","Points":4787,"X":475,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378281Z"},{"ID":2145,"Name":"-[031]- Saltoro Kangri","Points":6756,"X":551,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378282Z"},{"ID":2147,"Name":"001 Washington D.C.","Points":9761,"X":438,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378282Z"},{"ID":2148,"Name":"Gratuluje mĂłzgu","Points":9881,"X":444,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378283Z"},{"ID":2149,"Name":"9.1 ƚciernisko","Points":10495,"X":545,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378284Z"},{"ID":2150,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":432,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378284Z"},{"ID":2151,"Name":"Suppi","Points":10237,"X":431,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378285Z"},{"ID":2152,"Name":"Szlachcic","Points":9622,"X":508,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378285Z"},{"ID":2153,"Name":".achim.","Points":10311,"X":531,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378286Z"},{"ID":2154,"Name":"015","Points":5953,"X":417,"Y":519,"Continent":"K54","Bonus":4,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378286Z"},{"ID":2155,"Name":"Mzm23","Points":10362,"X":574,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378287Z"},{"ID":2156,"Name":"P Konfederacja","Points":10068,"X":457,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378287Z"},{"ID":2157,"Name":"A052","Points":10495,"X":500,"Y":423,"Continent":"K45","Bonus":2,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378288Z"},{"ID":2158,"Name":"024. Wioska k4myk","Points":10252,"X":575,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378289Z"},{"ID":2159,"Name":"a moĆŒe off ? :)","Points":10211,"X":583,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378289Z"},{"ID":2160,"Name":"Going Under","Points":10362,"X":501,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37829Z"},{"ID":2161,"Name":"!Wioska 400","Points":10495,"X":564,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37829Z"},{"ID":2162,"Name":"013. Wioska POLdi","Points":10252,"X":574,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378291Z"},{"ID":2163,"Name":"0025 K55 and987 OZDR.","Points":9792,"X":503,"Y":562,"Continent":"K55","Bonus":7,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378292Z"},{"ID":2164,"Name":"Filonia","Points":8673,"X":521,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378292Z"},{"ID":2165,"Name":"A06","Points":8290,"X":550,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378293Z"},{"ID":2166,"Name":"NOT?","Points":10068,"X":435,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378293Z"},{"ID":2167,"Name":"237 Maduraj","Points":4738,"X":474,"Y":514,"Continent":"K54","Bonus":7,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378294Z"},{"ID":2169,"Name":"076.","Points":9949,"X":568,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378295Z"},{"ID":2170,"Name":"Korczo","Points":10204,"X":397,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378295Z"},{"ID":2171,"Name":"045","Points":6720,"X":448,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378296Z"},{"ID":2172,"Name":"Wioska szyymekk","Points":7447,"X":396,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":960100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378296Z"},{"ID":2173,"Name":"Craven Cottage","Points":6806,"X":547,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378297Z"},{"ID":2174,"Name":"Wioska szyymekk","Points":10251,"X":403,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378297Z"},{"ID":2175,"Name":"Winter is coming","Points":10311,"X":507,"Y":574,"Continent":"K55","Bonus":6,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378298Z"},{"ID":2176,"Name":"06. Yaren Bolt","Points":10110,"X":565,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378299Z"},{"ID":2177,"Name":"Winter is coming","Points":9843,"X":505,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378299Z"},{"ID":2178,"Name":"B011","Points":10160,"X":552,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3783Z"},{"ID":2179,"Name":"NOT?","Points":9460,"X":429,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378301Z"},{"ID":2180,"Name":"- 069 -","Points":10000,"X":543,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378301Z"},{"ID":2181,"Name":"034","Points":9744,"X":559,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378302Z"},{"ID":2182,"Name":"Napewno to nie jest off","Points":10178,"X":516,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378302Z"},{"ID":2183,"Name":"0053","Points":10971,"X":591,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378303Z"},{"ID":2184,"Name":"Os Konfederacja +","Points":9846,"X":475,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378303Z"},{"ID":2185,"Name":"Wioska","Points":10178,"X":384,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378304Z"},{"ID":2186,"Name":"218 Adelaide","Points":8652,"X":531,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378304Z"},{"ID":2187,"Name":"AR_ELA","Points":9638,"X":459,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378305Z"},{"ID":2188,"Name":"Joms 018","Points":10268,"X":518,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378306Z"},{"ID":2189,"Name":"Wioska BarbarzyƄska","Points":10019,"X":542,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378306Z"},{"ID":2190,"Name":"JaamMwG 012","Points":9054,"X":524,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378307Z"},{"ID":2191,"Name":"keepo","Points":10362,"X":478,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378307Z"},{"ID":2192,"Name":"Gravity","Points":9497,"X":412,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378308Z"},{"ID":2193,"Name":"Winter is coming","Points":5548,"X":444,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378309Z"},{"ID":2194,"Name":"Fajna 011","Points":7736,"X":451,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378309Z"},{"ID":2195,"Name":"xxx","Points":10495,"X":502,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37831Z"},{"ID":2196,"Name":"CALL 1045","Points":7229,"X":567,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37831Z"},{"ID":2197,"Name":"161","Points":7092,"X":433,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378311Z"},{"ID":2198,"Name":"Wioska barbarzyƄska","Points":10008,"X":434,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378311Z"},{"ID":2199,"Name":"A038","Points":10495,"X":507,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378312Z"},{"ID":2200,"Name":"SsSs","Points":9875,"X":401,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378313Z"},{"ID":2201,"Name":"[142] North","Points":10052,"X":578,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378313Z"},{"ID":2202,"Name":"- 099 -","Points":9664,"X":533,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378314Z"},{"ID":2203,"Name":"Wioska barbarzyƄska","Points":9902,"X":561,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378314Z"},{"ID":2204,"Name":"JF2","Points":4763,"X":555,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378315Z"},{"ID":2205,"Name":"MasteroN 03","Points":10636,"X":569,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378315Z"},{"ID":2206,"Name":"026","Points":9771,"X":432,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378316Z"},{"ID":2207,"Name":"225 Auckland","Points":9761,"X":539,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378317Z"},{"ID":2208,"Name":"KIELBA 060","Points":10444,"X":458,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378317Z"},{"ID":2209,"Name":"xxx","Points":8669,"X":512,"Y":447,"Continent":"K45","Bonus":4,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378318Z"},{"ID":2210,"Name":"Jaaa","Points":10239,"X":575,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378318Z"},{"ID":2211,"Name":"amator MO1","Points":10636,"X":536,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378319Z"},{"ID":2212,"Name":"- 049 -","Points":10000,"X":540,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378319Z"},{"ID":2213,"Name":"Wioska CzarnamambaPL","Points":9835,"X":562,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37832Z"},{"ID":2214,"Name":"035.","Points":10252,"X":504,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37832Z"},{"ID":2215,"Name":"16*","Points":6224,"X":565,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378321Z"},{"ID":2216,"Name":"201 Asuncion","Points":9761,"X":469,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378322Z"},{"ID":2217,"Name":"Szlachcic 001","Points":8024,"X":565,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378322Z"},{"ID":2218,"Name":"PRO8L3M","Points":7740,"X":462,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378323Z"},{"ID":2219,"Name":"JM4","Points":5778,"X":561,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378323Z"},{"ID":2220,"Name":"038 - Getafe","Points":7947,"X":609,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378324Z"},{"ID":2221,"Name":"023","Points":9744,"X":569,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378325Z"},{"ID":2222,"Name":"Sheraton","Points":10495,"X":579,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378325Z"},{"ID":2223,"Name":"F013","Points":9750,"X":493,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378326Z"},{"ID":2224,"Name":"Bagdad","Points":10654,"X":476,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378326Z"},{"ID":2225,"Name":".achim.","Points":10311,"X":533,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378327Z"},{"ID":2226,"Name":"CHW#029","Points":10495,"X":479,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378327Z"},{"ID":2227,"Name":"Napewno to nie jest off","Points":7394,"X":514,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378328Z"},{"ID":2228,"Name":"*INTERTWINED*","Points":9711,"X":531,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378328Z"},{"ID":2229,"Name":"- 312 -","Points":10000,"X":524,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378329Z"},{"ID":2230,"Name":"Wioska4","Points":10254,"X":492,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37833Z"},{"ID":2231,"Name":"Wioska barbarzyƄska","Points":10008,"X":434,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37833Z"},{"ID":2232,"Name":"PiekƂo to inni","Points":10160,"X":523,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378331Z"},{"ID":2233,"Name":"PiekƂo to inni","Points":10160,"X":519,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378331Z"},{"ID":2234,"Name":"Abadon landy 2","Points":7445,"X":566,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378332Z"},{"ID":2235,"Name":"2. Wz !!!","Points":9817,"X":497,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378333Z"},{"ID":2236,"Name":"monetki","Points":9824,"X":508,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378333Z"},{"ID":2237,"Name":"Osada x","Points":9390,"X":509,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378334Z"},{"ID":2238,"Name":"Monetki","Points":10297,"X":474,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378334Z"},{"ID":2239,"Name":"Napewno to nie jest off","Points":4967,"X":512,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378335Z"},{"ID":2240,"Name":"Warzywniak 018","Points":2822,"X":447,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378335Z"},{"ID":2241,"Name":"028. RarĂłg","Points":9582,"X":518,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378336Z"},{"ID":2242,"Name":"A02","Points":9994,"X":549,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378337Z"},{"ID":2243,"Name":"BucksbarzyƄsKamiiiru","Points":6812,"X":438,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378337Z"},{"ID":2244,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":437,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378338Z"},{"ID":2245,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":452,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378338Z"},{"ID":2246,"Name":"KIELBA 065","Points":10495,"X":470,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378339Z"},{"ID":2247,"Name":"Sparta_31","Points":9638,"X":489,"Y":576,"Continent":"K54","Bonus":9,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37834Z"},{"ID":2248,"Name":"017","Points":10042,"X":418,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37834Z"},{"ID":2249,"Name":"Szlachcic","Points":9583,"X":568,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378341Z"},{"ID":2250,"Name":"yogi","Points":10019,"X":520,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378341Z"},{"ID":2251,"Name":"yogi","Points":10083,"X":522,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378342Z"},{"ID":2252,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378343Z"},{"ID":2253,"Name":"022 Grand Forks","Points":9761,"X":448,"Y":470,"Continent":"K44","Bonus":6,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378343Z"},{"ID":2254,"Name":"001 Fiona","Points":10203,"X":446,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378344Z"},{"ID":2255,"Name":"029","Points":10495,"X":539,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378344Z"},{"ID":2256,"Name":"***9f*** Brzoskwinia","Points":10068,"X":553,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378345Z"},{"ID":2257,"Name":"012","Points":9744,"X":574,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378345Z"},{"ID":2258,"Name":"042","Points":10311,"X":554,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378346Z"},{"ID":2259,"Name":"0033 K55 and987 OZDR.","Points":9861,"X":502,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378346Z"},{"ID":2260,"Name":"031","Points":2184,"X":451,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378347Z"},{"ID":2261,"Name":"Forteca","Points":9009,"X":499,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378347Z"},{"ID":2262,"Name":"Szlachcic","Points":10104,"X":587,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378348Z"},{"ID":2263,"Name":"Os Konfederacja","Points":10311,"X":474,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378348Z"},{"ID":2264,"Name":"121 Trois Rivieres","Points":9761,"X":478,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378349Z"},{"ID":2265,"Name":"Os Konfederacja +","Points":9976,"X":474,"Y":450,"Continent":"K44","Bonus":9,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37835Z"},{"ID":2267,"Name":"Cast Away 021","Points":4228,"X":441,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37835Z"},{"ID":2268,"Name":"093 Luksemburg","Points":10495,"X":574,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378351Z"},{"ID":2269,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":428,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378351Z"},{"ID":2270,"Name":"Village","Points":12154,"X":504,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378352Z"},{"ID":2271,"Name":"047","Points":7297,"X":446,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378352Z"},{"ID":2272,"Name":"--------1","Points":10362,"X":455,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378353Z"},{"ID":2273,"Name":"094 Ɓotwa","Points":10495,"X":572,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378353Z"},{"ID":2274,"Name":"Onda","Points":4042,"X":435,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378354Z"},{"ID":2275,"Name":"[175]","Points":6951,"X":562,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378354Z"},{"ID":2276,"Name":"Kasyno","Points":9902,"X":444,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378355Z"},{"ID":2277,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378356Z"},{"ID":2278,"Name":"x03","Points":10016,"X":545,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378356Z"},{"ID":2279,"Name":"Midgard","Points":10252,"X":483,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378357Z"},{"ID":2280,"Name":"211 Wagga Wagga","Points":9261,"X":539,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378357Z"},{"ID":2281,"Name":"Brat447","Points":8577,"X":446,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378358Z"},{"ID":2282,"Name":"Brat447","Points":7977,"X":437,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378358Z"},{"ID":2283,"Name":"PYRLANDIA 005 $","Points":10495,"X":571,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378359Z"},{"ID":2284,"Name":"Szlachcic","Points":9852,"X":572,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378359Z"},{"ID":2285,"Name":"sas","Points":10019,"X":526,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37836Z"},{"ID":2286,"Name":"105 Dumdi diri daj","Points":5039,"X":542,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37836Z"},{"ID":2287,"Name":"CALL 1081","Points":10636,"X":532,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378361Z"},{"ID":2288,"Name":"Horyzont zdarzeƄ","Points":9835,"X":532,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378362Z"},{"ID":2289,"Name":"Napewno to nie jest off","Points":6451,"X":515,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378362Z"},{"ID":2290,"Name":"xxx","Points":10495,"X":485,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378363Z"},{"ID":2291,"Name":".:019:. Krab","Points":9742,"X":511,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378363Z"},{"ID":2292,"Name":"100","Points":10042,"X":409,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378364Z"},{"ID":2293,"Name":"02 WƂochy","Points":9374,"X":582,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378364Z"},{"ID":2294,"Name":"Osada","Points":9976,"X":499,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378365Z"},{"ID":2295,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3566,"X":457,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378365Z"},{"ID":2296,"Name":"SsSs","Points":9131,"X":416,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378366Z"},{"ID":2297,"Name":"11 | Pcim dolny","Points":8418,"X":537,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378366Z"},{"ID":2298,"Name":"Wioska","Points":10178,"X":391,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378367Z"},{"ID":2299,"Name":"Wioska barbarzyƄska","Points":10008,"X":431,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378367Z"},{"ID":2300,"Name":"001. WDP","Points":7669,"X":611,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378368Z"},{"ID":2301,"Name":"0011 K55 and987 OZDR.","Points":9861,"X":507,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378369Z"},{"ID":2302,"Name":"Minas Tirith","Points":10068,"X":534,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378369Z"},{"ID":2303,"Name":"Marienburg 2","Points":3442,"X":523,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37837Z"},{"ID":2304,"Name":"[0112]","Points":10365,"X":443,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37837Z"},{"ID":2305,"Name":"Szlachcic","Points":10104,"X":576,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378371Z"},{"ID":2306,"Name":"Monetki","Points":10292,"X":469,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378371Z"},{"ID":2307,"Name":"ADEN","Points":10211,"X":582,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378372Z"},{"ID":2308,"Name":"042 InnyNizWszyscy","Points":9221,"X":540,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378372Z"},{"ID":2309,"Name":"0030","Points":10211,"X":560,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378373Z"},{"ID":2310,"Name":"Szlachcic","Points":8888,"X":498,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378374Z"},{"ID":2311,"Name":"7.62 mm","Points":10019,"X":489,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378374Z"},{"ID":2312,"Name":"Szlachcic","Points":10311,"X":495,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378375Z"},{"ID":2313,"Name":"Wioska barbarzyƄska","Points":9664,"X":492,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378375Z"},{"ID":2314,"Name":"[115] North15","Points":10052,"X":575,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378376Z"},{"ID":2315,"Name":".:004:. Chillout","Points":9496,"X":501,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378376Z"},{"ID":2316,"Name":"B02","Points":9814,"X":540,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378377Z"},{"ID":2317,"Name":"A011","Points":10495,"X":488,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378377Z"},{"ID":2318,"Name":"0Wioska barbarzyƄska","Points":2769,"X":473,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378378Z"},{"ID":2319,"Name":"#0021 Szczur","Points":10019,"X":486,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378379Z"},{"ID":2320,"Name":"Horyzont zdarzeƄ","Points":10019,"X":525,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378379Z"},{"ID":2321,"Name":"053","Points":10129,"X":419,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37838Z"},{"ID":2322,"Name":"x07","Points":10267,"X":560,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37838Z"},{"ID":2323,"Name":"PRO8L3M","Points":8099,"X":423,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378381Z"},{"ID":2324,"Name":"hack3d by gh05t","Points":9835,"X":474,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378381Z"},{"ID":2325,"Name":"101","Points":10035,"X":548,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378382Z"},{"ID":2326,"Name":"082 MEHEHE","Points":10019,"X":497,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378383Z"},{"ID":2327,"Name":"Suppi","Points":9562,"X":438,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378383Z"},{"ID":2328,"Name":"mehehehe","Points":10348,"X":467,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378384Z"},{"ID":2329,"Name":"Szlachcic","Points":10237,"X":559,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378384Z"},{"ID":2330,"Name":"[234] WEST","Points":10052,"X":598,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378385Z"},{"ID":2331,"Name":"P Konfederacja","Points":9812,"X":457,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378386Z"},{"ID":2332,"Name":"043","Points":10311,"X":544,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378386Z"},{"ID":2333,"Name":"ladyanima","Points":9613,"X":514,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378387Z"},{"ID":2334,"Name":"0000 Velka pardubicka","Points":9899,"X":471,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378387Z"},{"ID":2335,"Name":"Yogi","Points":10019,"X":512,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378388Z"},{"ID":2336,"Name":"PRO8L3M","Points":10495,"X":460,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378388Z"},{"ID":2337,"Name":"x Romper Stomper","Points":7238,"X":423,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378389Z"},{"ID":2338,"Name":"Brat447","Points":10728,"X":456,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378389Z"},{"ID":2339,"Name":"[154] North","Points":10411,"X":566,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37839Z"},{"ID":2340,"Name":"Wioska barbarzyƄska","Points":4953,"X":514,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378391Z"},{"ID":2341,"Name":"Wioska 16","Points":8687,"X":530,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378391Z"},{"ID":2342,"Name":"Strasznie MiƂy Sąsiad!","Points":9643,"X":548,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378392Z"},{"ID":2343,"Name":"069. ALFI","Points":1444,"X":465,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378392Z"},{"ID":2344,"Name":"+44 62 Broukerque","Points":9669,"X":420,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378393Z"},{"ID":2345,"Name":"037. A-RE-SE-EY","Points":10252,"X":548,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378393Z"},{"ID":2346,"Name":"10022","Points":10728,"X":531,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378394Z"},{"ID":2347,"Name":"[111]","Points":9976,"X":557,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378395Z"},{"ID":2348,"Name":"Osada","Points":10292,"X":498,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378395Z"},{"ID":2349,"Name":"CALL 977","Points":10311,"X":551,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378396Z"},{"ID":2350,"Name":"Wioska barbarzyƄska","Points":7218,"X":452,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378396Z"},{"ID":2351,"Name":"Szlachcic","Points":10025,"X":577,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378397Z"},{"ID":2352,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":519,"Continent":"K55","Bonus":9,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378397Z"},{"ID":2353,"Name":"RZESZÓW","Points":9668,"X":422,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378398Z"},{"ID":2354,"Name":"Ta cena się nie zmienia","Points":8351,"X":512,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378399Z"},{"ID":2355,"Name":"Land of Fire","Points":9505,"X":396,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378399Z"},{"ID":2356,"Name":"slow","Points":10316,"X":530,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3784Z"},{"ID":2357,"Name":"Szlachcic","Points":10237,"X":578,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3784Z"},{"ID":2358,"Name":"0019. B -","Points":10160,"X":577,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378401Z"},{"ID":2359,"Name":"Wioska barbarzyƄska","Points":10595,"X":538,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378401Z"},{"ID":2360,"Name":"Pf Konfederacja","Points":9438,"X":495,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378402Z"},{"ID":2361,"Name":"023 Rapid City","Points":9761,"X":438,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378402Z"},{"ID":2362,"Name":"FAKE OR OFF","Points":9828,"X":438,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378403Z"},{"ID":2363,"Name":"A031","Points":10495,"X":496,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378404Z"},{"ID":2364,"Name":"0016","Points":10495,"X":547,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378404Z"},{"ID":2365,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378405Z"},{"ID":2366,"Name":"kathare","Points":11130,"X":497,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378405Z"},{"ID":2367,"Name":"010. A-RE-SE-EY","Points":10252,"X":575,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378406Z"},{"ID":2368,"Name":"008 | Lord Axen - Beware!","Points":9960,"X":552,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378406Z"},{"ID":2369,"Name":"0031","Points":8891,"X":467,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378407Z"},{"ID":2370,"Name":"Sir Hood 1","Points":10393,"X":386,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378407Z"},{"ID":2371,"Name":".:123:. Niangmen","Points":9899,"X":520,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378408Z"},{"ID":2372,"Name":"!Charizard","Points":9651,"X":568,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378409Z"},{"ID":2373,"Name":"DobromirPan","Points":9701,"X":412,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378409Z"},{"ID":2375,"Name":"KIELBA 032","Points":9624,"X":453,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37841Z"},{"ID":2376,"Name":"Wioska BarbarzyƄska","Points":10362,"X":547,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37841Z"},{"ID":2377,"Name":"Wioska sila","Points":10779,"X":503,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378411Z"},{"ID":2378,"Name":"106.","Points":7203,"X":495,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378411Z"},{"ID":2379,"Name":"0012","Points":10495,"X":509,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378412Z"},{"ID":2380,"Name":"221 Mackay","Points":10043,"X":531,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378412Z"},{"ID":2381,"Name":"0001","Points":10495,"X":512,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378413Z"},{"ID":2382,"Name":"Wioska BarbarzyƄska","Points":10019,"X":544,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378414Z"},{"ID":2383,"Name":"FF011","Points":4098,"X":465,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378414Z"},{"ID":2384,"Name":"045. ALFI","Points":1700,"X":479,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378415Z"},{"ID":2385,"Name":"+44 73 Saint Priest Bel Air","Points":9855,"X":430,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378415Z"},{"ID":2386,"Name":"Carsultyal","Points":9711,"X":482,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378416Z"},{"ID":2387,"Name":"#0024 Wycieczka szkolna","Points":10019,"X":487,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378416Z"},{"ID":2388,"Name":"FFF","Points":4433,"X":531,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378417Z"},{"ID":2389,"Name":"007. ALFI","Points":1546,"X":469,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378418Z"},{"ID":2390,"Name":"Sparta_64","Points":9638,"X":482,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378418Z"},{"ID":2391,"Name":"Wioska 13","Points":9227,"X":532,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378419Z"},{"ID":2393,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":575,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378419Z"},{"ID":2394,"Name":"Monetki","Points":10306,"X":485,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37842Z"},{"ID":2395,"Name":"001. ALFI","Points":2237,"X":472,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37842Z"},{"ID":2396,"Name":"KIELBA 074","Points":10237,"X":469,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378421Z"},{"ID":2397,"Name":".achim.","Points":10132,"X":558,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378422Z"},{"ID":2398,"Name":"002. ALFI","Points":1235,"X":472,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378422Z"},{"ID":2399,"Name":"Minas Anor 017","Points":10495,"X":573,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378423Z"},{"ID":2400,"Name":"194 Georgetown","Points":9761,"X":466,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378423Z"},{"ID":2401,"Name":"OgrĂłd Warzywny","Points":7237,"X":447,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378424Z"},{"ID":2402,"Name":"Szlachcic","Points":9435,"X":566,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378424Z"},{"ID":2403,"Name":"Szlachcic","Points":10294,"X":491,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378425Z"},{"ID":2404,"Name":"036 Tulsa","Points":10495,"X":434,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378425Z"},{"ID":2405,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":425,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378426Z"},{"ID":2406,"Name":"Suppi","Points":10104,"X":433,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378426Z"},{"ID":2407,"Name":"086","Points":5130,"X":533,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378427Z"},{"ID":2408,"Name":"024 Trititi","Points":10019,"X":543,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378427Z"},{"ID":2409,"Name":"Wioska barbarzyƄska","Points":9811,"X":535,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378428Z"},{"ID":2410,"Name":"Kentin ufam Tobie","Points":10000,"X":391,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378429Z"},{"ID":2411,"Name":"182 Artigas","Points":9761,"X":479,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378429Z"},{"ID":2412,"Name":"166 Belem","Points":9761,"X":482,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37843Z"},{"ID":2413,"Name":".achim.","Points":12154,"X":530,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37843Z"},{"ID":2414,"Name":"7.62 mm","Points":10019,"X":486,"Y":429,"Continent":"K44","Bonus":6,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378431Z"},{"ID":2415,"Name":"0Wioska barbarzyƄska","Points":4428,"X":470,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378431Z"},{"ID":2416,"Name":"0648","Points":10005,"X":478,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378432Z"},{"ID":2417,"Name":"C013","Points":9768,"X":526,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378433Z"},{"ID":2418,"Name":"004","Points":8073,"X":473,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378433Z"},{"ID":2419,"Name":"0062 ~222~ zając","Points":10478,"X":442,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378434Z"},{"ID":2420,"Name":"[147] North","Points":10060,"X":583,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378435Z"},{"ID":2421,"Name":"91k$ Grvvyq","Points":10495,"X":559,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378435Z"},{"ID":2422,"Name":"ObroƄcyZamkuTrzymaliSieDzielnie","Points":9850,"X":479,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378436Z"},{"ID":2423,"Name":"?+44 96 Ecully Val dOuest","Points":11487,"X":467,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378436Z"},{"ID":2424,"Name":"033","Points":9747,"X":522,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378437Z"},{"ID":2425,"Name":"084.","Points":10252,"X":469,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378438Z"},{"ID":2426,"Name":".achim.","Points":6319,"X":534,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378438Z"},{"ID":2427,"Name":"107 Quebec City","Points":9761,"X":464,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378439Z"},{"ID":2428,"Name":"PiekƂo to inni","Points":9251,"X":517,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378439Z"},{"ID":2429,"Name":"#0077 SƂaboƛć","Points":9976,"X":497,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37844Z"},{"ID":2430,"Name":"049","Points":10495,"X":588,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378441Z"},{"ID":2431,"Name":"Lord Arsey KING","Points":10285,"X":514,"Y":526,"Continent":"K55","Bonus":2,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378441Z"},{"ID":2432,"Name":"#0079 UPC","Points":10014,"X":495,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378442Z"},{"ID":2433,"Name":"7.62 mm","Points":10019,"X":498,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378442Z"},{"ID":2434,"Name":"026 Nelin","Points":9889,"X":542,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378443Z"},{"ID":2435,"Name":"#0099 ƚwidnik","Points":9307,"X":479,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378443Z"},{"ID":2436,"Name":"A018","Points":10495,"X":489,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378444Z"},{"ID":2437,"Name":"018 - Chicanna***","Points":10495,"X":436,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378445Z"},{"ID":2438,"Name":"Szlachcic","Points":9693,"X":497,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378445Z"},{"ID":2439,"Name":"7.62 mm","Points":10019,"X":477,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378446Z"},{"ID":2440,"Name":"015. Dola","Points":9449,"X":509,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378446Z"},{"ID":2441,"Name":"Os Konfederacja +","Points":9749,"X":478,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378447Z"},{"ID":2442,"Name":"Osada","Points":10294,"X":496,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378447Z"},{"ID":2443,"Name":"Os Konfederacja","Points":10252,"X":473,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378448Z"},{"ID":2444,"Name":"023. ALFI","Points":1595,"X":486,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378449Z"},{"ID":2445,"Name":"Strasznie MiƂy Sąsiad!","Points":9735,"X":549,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378449Z"},{"ID":2446,"Name":"7.62 mm","Points":10019,"X":514,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37845Z"},{"ID":2447,"Name":"Jaaa","Points":10282,"X":572,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37845Z"},{"ID":2448,"Name":"Gratuluje mĂłzgu","Points":9674,"X":442,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378451Z"},{"ID":2449,"Name":"meh","Points":1657,"X":438,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378451Z"},{"ID":2450,"Name":"073.","Points":10252,"X":493,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378452Z"},{"ID":2451,"Name":"0081","Points":10495,"X":527,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378453Z"},{"ID":2452,"Name":"Wioska barbarzyƄska","Points":10008,"X":406,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378453Z"},{"ID":2453,"Name":"009711","Points":10133,"X":464,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378454Z"},{"ID":2454,"Name":"P Konfederacja","Points":9921,"X":454,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378455Z"},{"ID":2455,"Name":"NOT?","Points":9184,"X":461,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378455Z"},{"ID":2456,"Name":"~~LatającyHolender~~","Points":10149,"X":583,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378456Z"},{"ID":2457,"Name":"036","Points":9701,"X":613,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378456Z"},{"ID":2458,"Name":"Szlachcic","Points":9798,"X":556,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378457Z"},{"ID":2459,"Name":"Madryt","Points":10495,"X":422,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378457Z"},{"ID":2460,"Name":"0032","Points":10132,"X":523,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378458Z"},{"ID":2461,"Name":"031","Points":7617,"X":523,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378458Z"},{"ID":2462,"Name":"Kasyno","Points":10237,"X":441,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378459Z"},{"ID":2463,"Name":"Isengard","Points":8441,"X":532,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378459Z"},{"ID":2464,"Name":"Suppi","Points":9559,"X":443,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37846Z"},{"ID":2465,"Name":"Arizona","Points":9761,"X":406,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37846Z"},{"ID":2466,"Name":"SS04","Points":5422,"X":533,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699744766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378461Z"},{"ID":2467,"Name":"072 Houston","Points":9761,"X":448,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378462Z"},{"ID":2468,"Name":"Szlachcic","Points":9623,"X":510,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378462Z"},{"ID":2469,"Name":"086. ALFI","Points":1275,"X":484,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378463Z"},{"ID":2470,"Name":"Fajna 025","Points":6266,"X":446,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378464Z"},{"ID":2471,"Name":"Atlantis 07","Points":10654,"X":542,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378464Z"},{"ID":2472,"Name":"Szlachcic","Points":9721,"X":557,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378465Z"},{"ID":2473,"Name":"Village","Points":12154,"X":504,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378465Z"},{"ID":2474,"Name":"Wioska 417","Points":10495,"X":564,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378466Z"},{"ID":2475,"Name":"- 299 -","Points":10008,"X":527,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378467Z"},{"ID":2476,"Name":"Szlachcic","Points":8318,"X":506,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378467Z"},{"ID":2477,"Name":"#0015 Zapalniczka","Points":10008,"X":500,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378468Z"},{"ID":2478,"Name":"SsSs","Points":7168,"X":424,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378469Z"},{"ID":2479,"Name":"0034 K55 and987 OZDR.","Points":9845,"X":503,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378469Z"},{"ID":2480,"Name":"KIELBA 058","Points":10259,"X":466,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37847Z"},{"ID":2481,"Name":"warzywa style","Points":9790,"X":507,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37847Z"},{"ID":2483,"Name":"JaamMwG 015","Points":10226,"X":523,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378471Z"},{"ID":2484,"Name":"040. A-RE-SE-EY","Points":10252,"X":563,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378471Z"},{"ID":2485,"Name":"CALL 969","Points":10311,"X":548,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378472Z"},{"ID":2486,"Name":"079","Points":10068,"X":568,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378472Z"},{"ID":2487,"Name":"+44 72 Inxent","Points":9710,"X":421,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378473Z"},{"ID":2488,"Name":"..::004::.. Planeta Guwbu","Points":10285,"X":412,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378474Z"},{"ID":2489,"Name":"093","Points":10495,"X":591,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378474Z"},{"ID":2490,"Name":"Szlachcic","Points":10297,"X":491,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378475Z"},{"ID":2491,"Name":"067 Baltimore","Points":9761,"X":461,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378475Z"},{"ID":2492,"Name":"IBAR","Points":2676,"X":431,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378476Z"},{"ID":2493,"Name":"043 Kodiak","Points":9761,"X":463,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378476Z"},{"ID":2494,"Name":"091 Liechtenstein","Points":10495,"X":574,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378477Z"},{"ID":2495,"Name":"062 Carson City","Points":9761,"X":457,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378478Z"},{"ID":2496,"Name":"Suppi","Points":9580,"X":431,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378478Z"},{"ID":2497,"Name":"Cast Away 023","Points":3688,"X":438,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378479Z"},{"ID":2498,"Name":"Joms 014","Points":9861,"X":521,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37848Z"},{"ID":2499,"Name":"+44 83 Ghyvelde","Points":9839,"X":437,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37848Z"},{"ID":2500,"Name":"Osada","Points":10295,"X":491,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378481Z"},{"ID":2501,"Name":"~086.","Points":10495,"X":494,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378481Z"},{"ID":2502,"Name":"Monetki","Points":10294,"X":482,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378482Z"},{"ID":2503,"Name":"Osada KS","Points":9722,"X":450,"Y":536,"Continent":"K54","Bonus":5,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378482Z"},{"ID":2504,"Name":"Teby_01","Points":9638,"X":504,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378483Z"},{"ID":2505,"Name":"Brat447","Points":8851,"X":437,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378483Z"},{"ID":2506,"Name":"P Konfederacja +","Points":9692,"X":458,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378484Z"},{"ID":2507,"Name":"Wioska BarbarzyƄska","Points":10019,"X":553,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378484Z"},{"ID":2508,"Name":"078 Albuquerque","Points":9761,"X":463,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378485Z"},{"ID":2509,"Name":"?+44 85 Hesdigneul les Boulogne","Points":9849,"X":456,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378485Z"},{"ID":2510,"Name":"JM3","Points":8793,"X":561,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378486Z"},{"ID":2511,"Name":"0636","Points":10019,"X":438,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378487Z"},{"ID":2512,"Name":"kek","Points":7131,"X":535,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378487Z"},{"ID":2513,"Name":".achim.","Points":10311,"X":536,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378488Z"},{"ID":2514,"Name":"CALL 947","Points":10311,"X":546,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378488Z"},{"ID":2515,"Name":"Andrzejuuu","Points":10285,"X":437,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378489Z"},{"ID":2516,"Name":"021","Points":10001,"X":432,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378489Z"},{"ID":2517,"Name":"|064|000","Points":6385,"X":568,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37849Z"},{"ID":2518,"Name":"Knowhere","Points":10452,"X":410,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37849Z"},{"ID":2519,"Name":"001","Points":10495,"X":554,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378491Z"},{"ID":2520,"Name":"[114]","Points":9886,"X":551,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378491Z"},{"ID":2521,"Name":"027 |","Points":10476,"X":555,"Y":545,"Continent":"K55","Bonus":1,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378492Z"},{"ID":2522,"Name":"002","Points":10495,"X":560,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378492Z"},{"ID":2523,"Name":"*INTERTWINED**","Points":9570,"X":462,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378493Z"},{"ID":2524,"Name":"?+44 85 Craywick","Points":9728,"X":458,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378494Z"},{"ID":2525,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378494Z"},{"ID":2526,"Name":"0032","Points":10705,"X":564,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378495Z"},{"ID":2527,"Name":"[132]","Points":9808,"X":553,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378495Z"},{"ID":2528,"Name":"[117] North17","Points":10052,"X":572,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378496Z"},{"ID":2529,"Name":"010","Points":10495,"X":588,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378496Z"},{"ID":2530,"Name":"A01","Points":9084,"X":548,"Y":453,"Continent":"K45","Bonus":2,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378497Z"},{"ID":2531,"Name":"B067","Points":10495,"X":474,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378497Z"},{"ID":2532,"Name":"NOT?","Points":10042,"X":434,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378498Z"},{"ID":2533,"Name":"K44 004","Points":10094,"X":418,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378498Z"},{"ID":2534,"Name":"A#039#","Points":11727,"X":419,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378499Z"},{"ID":2535,"Name":"[073]","Points":9960,"X":557,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3785Z"},{"ID":2536,"Name":"K44 005","Points":4703,"X":420,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3785Z"},{"ID":2537,"Name":"132 Acapulco","Points":9761,"X":478,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378501Z"},{"ID":2538,"Name":"Joms 021","Points":10273,"X":528,"Y":417,"Continent":"K45","Bonus":5,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378501Z"},{"ID":2539,"Name":"0063 kamieƄ","Points":9847,"X":446,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378502Z"},{"ID":2540,"Name":"031. Andromeda","Points":10083,"X":490,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378502Z"},{"ID":2541,"Name":"Szlachcic","Points":10237,"X":580,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378503Z"},{"ID":2542,"Name":"103.","Points":9782,"X":504,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378503Z"},{"ID":2544,"Name":"KONFA TO MARKA, NARKA","Points":10364,"X":449,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378504Z"},{"ID":2545,"Name":"Gattacka","Points":9835,"X":588,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378504Z"},{"ID":2546,"Name":"0022 MzM","Points":9258,"X":568,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378505Z"},{"ID":2547,"Name":"Wioska Wiecznie pokƂucony","Points":1005,"X":582,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":848954163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378505Z"},{"ID":2548,"Name":"C032","Points":7949,"X":527,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378506Z"},{"ID":2549,"Name":"...Just like that","Points":10452,"X":452,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378506Z"},{"ID":2550,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":426,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378507Z"},{"ID":2551,"Name":"017 |","Points":10140,"X":560,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378507Z"},{"ID":2552,"Name":"budzik","Points":5649,"X":441,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378508Z"},{"ID":2553,"Name":"065 Holandia","Points":10495,"X":573,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378509Z"},{"ID":2554,"Name":"025","Points":10147,"X":528,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378509Z"},{"ID":2555,"Name":"045.","Points":10252,"X":499,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37851Z"},{"ID":2556,"Name":"Gratuluje mĂłzgu","Points":8362,"X":441,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37851Z"},{"ID":2557,"Name":"A05","Points":9377,"X":552,"Y":451,"Continent":"K45","Bonus":9,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378511Z"},{"ID":2558,"Name":"Suppi","Points":9818,"X":445,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378511Z"},{"ID":2559,"Name":"6. Nędza","Points":10471,"X":550,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378512Z"},{"ID":2560,"Name":"Gratuluje mĂłzgu","Points":8709,"X":444,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378512Z"},{"ID":2561,"Name":"Yogi","Points":8623,"X":514,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378513Z"},{"ID":2562,"Name":"Szlachcic","Points":10237,"X":582,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378514Z"},{"ID":2563,"Name":"~~LatającyHolender~~","Points":10139,"X":581,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378514Z"},{"ID":2564,"Name":"Pf Konfederacja","Points":9938,"X":490,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378515Z"},{"ID":2565,"Name":"Wioska BarbarzyƄska","Points":10019,"X":542,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378515Z"},{"ID":2566,"Name":"Winter is coming","Points":6964,"X":440,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378516Z"},{"ID":2567,"Name":"7.62 mm","Points":10019,"X":509,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378516Z"},{"ID":2568,"Name":"CALL 952","Points":10311,"X":551,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378517Z"},{"ID":2569,"Name":"073","Points":10042,"X":417,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378517Z"},{"ID":2570,"Name":"BBB","Points":9055,"X":527,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378518Z"},{"ID":2571,"Name":"035","Points":10042,"X":413,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378518Z"},{"ID":2572,"Name":".achim.","Points":12154,"X":532,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378519Z"},{"ID":2573,"Name":"*Ateny_06","Points":9638,"X":470,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378519Z"},{"ID":2574,"Name":"C 004.","Points":10713,"X":459,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37852Z"},{"ID":2575,"Name":"NOT?","Points":10042,"X":419,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378521Z"},{"ID":2576,"Name":"B024","Points":10495,"X":490,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378521Z"},{"ID":2577,"Name":"?+44 86 La Capelle les Boulogne","Points":9669,"X":461,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378522Z"},{"ID":2578,"Name":"010","Points":8562,"X":552,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378522Z"},{"ID":2579,"Name":"XXX002","Points":8635,"X":570,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378523Z"},{"ID":2580,"Name":".achim.","Points":10634,"X":528,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378523Z"},{"ID":2581,"Name":"ƚmieszkii","Points":9210,"X":512,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378524Z"},{"ID":2582,"Name":"0087","Points":3652,"X":465,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378524Z"},{"ID":2583,"Name":"ADEN","Points":10180,"X":564,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378525Z"},{"ID":2584,"Name":"[104] North4","Points":10049,"X":575,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378525Z"},{"ID":2585,"Name":"10007","Points":8251,"X":527,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378526Z"},{"ID":2586,"Name":"Coruscant 2","Points":9797,"X":503,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378526Z"},{"ID":2587,"Name":"~015.","Points":10495,"X":504,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378527Z"},{"ID":2588,"Name":"0002 dla","Points":10019,"X":506,"Y":505,"Continent":"K55","Bonus":8,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378527Z"},{"ID":2589,"Name":"Yellow Candy","Points":10703,"X":402,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378528Z"},{"ID":2590,"Name":"008 Fiona","Points":7870,"X":447,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378528Z"},{"ID":2591,"Name":"Fajna 028","Points":6847,"X":446,"Y":557,"Continent":"K54","Bonus":3,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378529Z"},{"ID":2592,"Name":"Yogi","Points":10019,"X":527,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378529Z"},{"ID":2593,"Name":"NOT!!","Points":10122,"X":469,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37853Z"},{"ID":2594,"Name":"006","Points":10495,"X":465,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378531Z"},{"ID":2595,"Name":"#1#","Points":9283,"X":501,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378531Z"},{"ID":2596,"Name":"CALL 968","Points":10311,"X":546,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378532Z"},{"ID":2597,"Name":".achim.","Points":10311,"X":518,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378532Z"},{"ID":2598,"Name":"yogi","Points":10252,"X":513,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378533Z"},{"ID":2599,"Name":"Horyzont zdarzeƄ","Points":9835,"X":533,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378533Z"},{"ID":2600,"Name":"Cast Away 008","Points":10206,"X":448,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378534Z"},{"ID":2601,"Name":"043 |","Points":10143,"X":566,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378535Z"},{"ID":2602,"Name":"130","Points":10311,"X":565,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378535Z"},{"ID":2603,"Name":"0Wioska barbarzyƄska","Points":9277,"X":479,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378536Z"},{"ID":2604,"Name":"Szlachcic","Points":10290,"X":486,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378536Z"},{"ID":2605,"Name":"Osada","Points":10306,"X":500,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378537Z"},{"ID":2606,"Name":"Wioska Gebels25","Points":7958,"X":465,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378538Z"},{"ID":2607,"Name":"Szlachcic 035","Points":8024,"X":562,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378538Z"},{"ID":2608,"Name":"Szlachcic","Points":10237,"X":578,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378539Z"},{"ID":2609,"Name":"PRO8L3M","Points":9992,"X":414,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378539Z"},{"ID":2610,"Name":"Lord Arsey KING","Points":6838,"X":518,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37854Z"},{"ID":2611,"Name":"Ręcznik do zmiany","Points":11489,"X":417,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37854Z"},{"ID":2612,"Name":"Osada","Points":10113,"X":491,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378541Z"},{"ID":2613,"Name":"NOT?","Points":8371,"X":467,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378541Z"},{"ID":2614,"Name":"052. ALFI","Points":1866,"X":486,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378542Z"},{"ID":2615,"Name":"Jaaa","Points":10495,"X":605,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378542Z"},{"ID":2616,"Name":"0176","Points":9995,"X":473,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378543Z"},{"ID":2617,"Name":"052 Waimea","Points":9761,"X":453,"Y":458,"Continent":"K44","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378543Z"},{"ID":2618,"Name":"Suppi","Points":9556,"X":443,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378544Z"},{"ID":2619,"Name":"Pf Konfederacja","Points":9938,"X":497,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378544Z"},{"ID":2620,"Name":"SsSs","Points":8565,"X":423,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378545Z"},{"ID":2621,"Name":"Wioska barbarzyƄska","Points":3970,"X":422,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378545Z"},{"ID":2622,"Name":"NWO","Points":10966,"X":393,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378546Z"},{"ID":2623,"Name":".:012:.Chillout","Points":4078,"X":515,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378546Z"},{"ID":2624,"Name":"PiekƂo to inni","Points":10160,"X":516,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378547Z"},{"ID":2625,"Name":"Os Konfederacja","Points":9836,"X":474,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378548Z"},{"ID":2626,"Name":"Warzywniak 007","Points":2274,"X":451,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378548Z"},{"ID":2627,"Name":"CALL 963","Points":10311,"X":544,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378549Z"},{"ID":2628,"Name":"Szlachcic 021","Points":9295,"X":555,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378549Z"},{"ID":2629,"Name":"ADEN","Points":6366,"X":561,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37855Z"},{"ID":2630,"Name":"0102 dzik","Points":10181,"X":468,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37855Z"},{"ID":2631,"Name":"Jaaa","Points":10438,"X":574,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378551Z"},{"ID":2632,"Name":"0106 bbbb kojotqqqqqqqqqqqqqqqqq","Points":9739,"X":470,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378551Z"},{"ID":2633,"Name":"WioskaD","Points":9730,"X":513,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378552Z"},{"ID":2634,"Name":".:033:. Chillout","Points":5516,"X":502,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378552Z"},{"ID":2635,"Name":"K44 011","Points":4005,"X":433,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378553Z"},{"ID":2636,"Name":"A nie pamiętasz jak?","Points":9835,"X":502,"Y":517,"Continent":"K55","Bonus":2,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378554Z"},{"ID":2637,"Name":"Odepta","Points":6259,"X":438,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378554Z"},{"ID":2638,"Name":"NOT?","Points":10042,"X":435,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378555Z"},{"ID":2639,"Name":"keepo","Points":9777,"X":488,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378555Z"},{"ID":2640,"Name":"Winter is coming","Points":9558,"X":447,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378556Z"},{"ID":2641,"Name":"54k$ Grvvyq","Points":10495,"X":528,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378556Z"},{"ID":2642,"Name":"009741","Points":8652,"X":464,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378557Z"},{"ID":2643,"Name":"086","Points":10129,"X":425,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378557Z"},{"ID":2644,"Name":"BucksbarzyƄsKamiiiru","Points":9580,"X":428,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378558Z"},{"ID":2645,"Name":"0028","Points":9106,"X":548,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378559Z"},{"ID":2646,"Name":"077.","Points":10364,"X":569,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378559Z"},{"ID":2647,"Name":"[074]","Points":10295,"X":558,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37856Z"},{"ID":2648,"Name":"Wioska Klemens Zdobywca 69","Points":10476,"X":549,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37856Z"},{"ID":2649,"Name":"1. Baza","Points":10495,"X":547,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378561Z"},{"ID":2650,"Name":"Traptosteron!","Points":9835,"X":494,"Y":504,"Continent":"K54","Bonus":6,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378561Z"},{"ID":2651,"Name":"049","Points":10495,"X":540,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378562Z"},{"ID":2652,"Name":"01 | Wiocha","Points":11383,"X":539,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378562Z"},{"ID":2653,"Name":"196","Points":10311,"X":548,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378563Z"},{"ID":2654,"Name":"026. PƂanetnik","Points":9761,"X":510,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378563Z"},{"ID":2655,"Name":"Minas Anor 025","Points":10495,"X":574,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378564Z"},{"ID":2656,"Name":"Monetki","Points":10311,"X":474,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378565Z"},{"ID":2657,"Name":"K45 - 012","Points":9796,"X":559,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378565Z"},{"ID":2658,"Name":"7.62 mm","Points":10019,"X":494,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378566Z"},{"ID":2659,"Name":"Wioska barbarzyƄska","Points":10252,"X":538,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378566Z"},{"ID":2660,"Name":"Osada","Points":9618,"X":500,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378567Z"},{"ID":2661,"Name":"022","Points":6072,"X":548,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378567Z"},{"ID":2662,"Name":"xxx","Points":10495,"X":501,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378568Z"},{"ID":2663,"Name":"048 |","Points":10164,"X":550,"Y":548,"Continent":"K55","Bonus":2,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378568Z"},{"ID":2664,"Name":"Szlachcic","Points":10019,"X":500,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378569Z"},{"ID":2665,"Name":"#0023 Velo","Points":10000,"X":486,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378569Z"},{"ID":2666,"Name":"B025","Points":10495,"X":496,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37857Z"},{"ID":2667,"Name":"Pf Konfederacja","Points":9938,"X":485,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37857Z"},{"ID":2668,"Name":"098 Sierra Vista","Points":9761,"X":480,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378571Z"},{"ID":2669,"Name":"A017","Points":10490,"X":491,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378572Z"},{"ID":2670,"Name":"Wioska","Points":10178,"X":379,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378572Z"},{"ID":2671,"Name":"Szlachcic 002","Points":9338,"X":566,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378573Z"},{"ID":2672,"Name":"Ręcznik do zmiany","Points":11911,"X":417,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378573Z"},{"ID":2673,"Name":"szla","Points":9835,"X":564,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378574Z"},{"ID":2674,"Name":"Szlachcic 040","Points":9338,"X":560,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378574Z"},{"ID":2675,"Name":"[097]","Points":9957,"X":550,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378575Z"},{"ID":2676,"Name":"Napewno to nie jest off","Points":4502,"X":515,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378575Z"},{"ID":2677,"Name":"*Ateny_43","Points":9682,"X":468,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378576Z"},{"ID":2679,"Name":"KIELBA 013","Points":10478,"X":446,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378576Z"},{"ID":2680,"Name":"Wioska BarbarzyƄska","Points":9855,"X":545,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378577Z"},{"ID":2681,"Name":"Fajna 071","Points":6188,"X":459,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378577Z"},{"ID":2682,"Name":"Suppi","Points":10237,"X":428,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378578Z"},{"ID":2683,"Name":"Suppi","Points":9828,"X":427,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378579Z"},{"ID":2684,"Name":"039 |","Points":10060,"X":564,"Y":540,"Continent":"K55","Bonus":9,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378579Z"},{"ID":2685,"Name":"-1- FOB UP","Points":9835,"X":508,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37858Z"},{"ID":2686,"Name":"CALL 1042","Points":10070,"X":549,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37858Z"},{"ID":2687,"Name":"099.","Points":10252,"X":506,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378581Z"},{"ID":2688,"Name":"F017","Points":9080,"X":496,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378581Z"},{"ID":2689,"Name":"ZasiedmiogĂłrogrĂłd","Points":9821,"X":518,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378582Z"},{"ID":2690,"Name":"xxx","Points":10636,"X":509,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378582Z"},{"ID":2691,"Name":"Szlachcic","Points":10237,"X":582,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378583Z"},{"ID":2692,"Name":".:079:. Takmahal","Points":7570,"X":524,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378583Z"},{"ID":2693,"Name":"zapodlina","Points":6370,"X":569,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":849027712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378584Z"},{"ID":2694,"Name":"#0093 Leniuszki","Points":10019,"X":483,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378585Z"},{"ID":2695,"Name":"Wioska 419","Points":10636,"X":565,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378585Z"},{"ID":2696,"Name":"- 305 -","Points":10000,"X":529,"Y":583,"Continent":"K55","Bonus":2,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378586Z"},{"ID":2697,"Name":"30004","Points":9827,"X":486,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378586Z"},{"ID":2698,"Name":"F014","Points":9761,"X":488,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378587Z"},{"ID":2699,"Name":"5. Bieda","Points":10495,"X":548,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378587Z"},{"ID":2700,"Name":"~061.","Points":10495,"X":480,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378588Z"},{"ID":2701,"Name":"#0085 Kolonia Piszczac","Points":10019,"X":476,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378588Z"},{"ID":2702,"Name":"Wioska barbarzyƄska","Points":7040,"X":556,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378589Z"},{"ID":2703,"Name":"CHW#031r","Points":9711,"X":481,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378589Z"},{"ID":2704,"Name":"~~LatającyHolender~~","Points":9615,"X":579,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37859Z"},{"ID":2705,"Name":"#0004 Warszawka","Points":10495,"X":498,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37859Z"},{"ID":2706,"Name":"Brat447","Points":10481,"X":446,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378591Z"},{"ID":2707,"Name":"#0020 Kaƛka Koniecko","Points":10000,"X":494,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378591Z"},{"ID":2708,"Name":"Pf Konfederacja","Points":9938,"X":490,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378592Z"},{"ID":2709,"Name":"#0071 Mateusz P","Points":10019,"X":490,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378592Z"},{"ID":2710,"Name":"070. ALFI","Points":1344,"X":475,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378593Z"},{"ID":2711,"Name":"Os Konfederacja +","Points":9812,"X":480,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378593Z"},{"ID":2712,"Name":"*Ateny_42","Points":9638,"X":469,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378594Z"},{"ID":2713,"Name":"Mzm29","Points":10362,"X":555,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378594Z"},{"ID":2714,"Name":"#0115 Doniczka","Points":9132,"X":479,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378595Z"},{"ID":2715,"Name":"XXXX","Points":10178,"X":500,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378596Z"},{"ID":2716,"Name":"019. A-RE-SE-EY","Points":10252,"X":572,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378596Z"},{"ID":2717,"Name":"001 Reaction","Points":10377,"X":563,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378597Z"},{"ID":2718,"Name":"[082]","Points":9853,"X":541,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378597Z"},{"ID":2719,"Name":"008 Hubal","Points":7703,"X":562,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378598Z"},{"ID":2720,"Name":"#065","Points":8438,"X":472,"Y":586,"Continent":"K54","Bonus":5,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378598Z"},{"ID":2721,"Name":"002","Points":8161,"X":568,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378599Z"},{"ID":2722,"Name":"Osada","Points":10297,"X":499,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378599Z"},{"ID":2723,"Name":"035. A-RE-SE-EY","Points":10252,"X":571,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3786Z"},{"ID":2724,"Name":"[120]","Points":9820,"X":551,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3786Z"},{"ID":2725,"Name":"076 Lubbock","Points":9761,"X":456,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378601Z"},{"ID":2726,"Name":"B051","Points":9257,"X":476,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378601Z"},{"ID":2727,"Name":"Wioska","Points":10178,"X":385,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378602Z"},{"ID":2728,"Name":"0001","Points":10211,"X":559,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378603Z"},{"ID":2729,"Name":"030 Chippewa Falls","Points":9761,"X":446,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378603Z"},{"ID":2730,"Name":"[136]","Points":10054,"X":561,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378604Z"},{"ID":2731,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":397,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378604Z"},{"ID":2732,"Name":"128.","Points":10495,"X":491,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378605Z"},{"ID":2733,"Name":"CALL 985","Points":10495,"X":545,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378605Z"},{"ID":2734,"Name":"A012","Points":10495,"X":495,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378606Z"},{"ID":2735,"Name":"Ręcznik do zmiany","Points":12154,"X":416,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378606Z"},{"ID":2736,"Name":"KARTAGINA .10","Points":8157,"X":459,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378607Z"},{"ID":2737,"Name":"xxx","Points":11130,"X":510,"Y":427,"Continent":"K45","Bonus":4,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378607Z"},{"ID":2738,"Name":"038 Lexinton","Points":9761,"X":448,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378608Z"},{"ID":2739,"Name":"PiekƂo to inni","Points":9908,"X":517,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378608Z"},{"ID":2740,"Name":"Szlachcic","Points":9824,"X":510,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378609Z"},{"ID":2741,"Name":"KONFA TO MARKA, NARKA","Points":10941,"X":441,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378609Z"},{"ID":2742,"Name":"PuƂapka na motyle","Points":12154,"X":516,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37861Z"},{"ID":2743,"Name":"Jaaa","Points":7770,"X":578,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37861Z"},{"ID":2744,"Name":"PiekƂo to inni","Points":10362,"X":522,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378611Z"},{"ID":2745,"Name":"SƂoneczna WƂócznia","Points":4593,"X":540,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378612Z"},{"ID":2746,"Name":"002","Points":8447,"X":482,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378612Z"},{"ID":2747,"Name":"008. Marzyciel Shrek","Points":9959,"X":456,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378613Z"},{"ID":2748,"Name":"Joms 013","Points":10122,"X":527,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378613Z"},{"ID":2749,"Name":"Szlachcic","Points":9721,"X":559,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378614Z"},{"ID":2750,"Name":"Pf Konfederacja","Points":9297,"X":493,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378614Z"},{"ID":2751,"Name":"003","Points":10495,"X":606,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378615Z"},{"ID":2752,"Name":"083 Denver","Points":9761,"X":479,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378616Z"},{"ID":2753,"Name":"Mzm40","Points":10362,"X":565,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378616Z"},{"ID":2754,"Name":"B029","Points":10495,"X":479,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378617Z"},{"ID":2755,"Name":"07*","Points":9531,"X":568,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378617Z"},{"ID":2756,"Name":"00977","Points":5903,"X":461,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378618Z"},{"ID":2757,"Name":"Taran","Points":9825,"X":544,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378618Z"},{"ID":2758,"Name":"0063 Madrid","Points":10262,"X":449,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378619Z"},{"ID":2759,"Name":".:074:. Takmahal","Points":8555,"X":526,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378619Z"},{"ID":2760,"Name":"0063 12qqqqqqqqqqqqqqqqqqqq","Points":10160,"X":448,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37862Z"},{"ID":2761,"Name":"Osada koczownikĂłw","Points":10008,"X":432,"Y":507,"Continent":"K54","Bonus":3,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37862Z"},{"ID":2762,"Name":"0057","Points":10072,"X":445,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378621Z"},{"ID":2763,"Name":"075","Points":9576,"X":569,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378621Z"},{"ID":2764,"Name":"054","Points":10311,"X":572,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378622Z"},{"ID":2765,"Name":"049.","Points":9835,"X":546,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378622Z"},{"ID":2766,"Name":"0063 b11","Points":9361,"X":455,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378623Z"},{"ID":2768,"Name":"- 221 -","Points":10000,"X":549,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378623Z"},{"ID":2769,"Name":"078.","Points":9946,"X":571,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378624Z"},{"ID":2770,"Name":"013 |","Points":10495,"X":561,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378625Z"},{"ID":2771,"Name":"0036","Points":9993,"X":461,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378625Z"},{"ID":2772,"Name":"Szlachcic","Points":10237,"X":578,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378626Z"},{"ID":2773,"Name":"Dioda v3","Points":10495,"X":543,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378626Z"},{"ID":2774,"Name":"009","Points":7981,"X":566,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378627Z"},{"ID":2775,"Name":"Lord Arsey KING","Points":10285,"X":541,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378627Z"},{"ID":2776,"Name":"[116] North16","Points":9980,"X":574,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378628Z"},{"ID":2777,"Name":"! Wioska 436","Points":8383,"X":548,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378628Z"},{"ID":2778,"Name":"Front_13","Points":9638,"X":457,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378629Z"},{"ID":2779,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3543,"X":460,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378629Z"},{"ID":2780,"Name":"0164","Points":9250,"X":463,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37863Z"},{"ID":2781,"Name":"SsSs","Points":8501,"X":460,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37863Z"},{"ID":2782,"Name":"PiekƂo to inni","Points":10160,"X":518,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378631Z"},{"ID":2783,"Name":"Brat447","Points":11302,"X":462,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378631Z"},{"ID":2784,"Name":"Brat447","Points":8649,"X":461,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378632Z"},{"ID":2785,"Name":"CALL 957","Points":10311,"X":550,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378633Z"},{"ID":2786,"Name":"NIERAJ10","Points":3994,"X":444,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699859013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378633Z"},{"ID":2787,"Name":"P Konfederacja +","Points":9687,"X":471,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378634Z"},{"ID":2788,"Name":"Osada","Points":9637,"X":501,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378634Z"},{"ID":2789,"Name":"P Konfederacja","Points":9305,"X":462,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378635Z"},{"ID":2790,"Name":"079 Orzech arachidowy","Points":10495,"X":551,"Y":471,"Continent":"K45","Bonus":1,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378635Z"},{"ID":2791,"Name":"0327","Points":9797,"X":446,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378636Z"},{"ID":2792,"Name":"Ręcznik do zmiany","Points":10654,"X":420,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378636Z"},{"ID":2793,"Name":"Wioska barbarzyƄska","Points":4081,"X":539,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378637Z"},{"ID":2794,"Name":"Wioska barbarzyƄska","Points":9650,"X":497,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378637Z"},{"ID":2795,"Name":"K44 025","Points":9166,"X":425,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378638Z"},{"ID":2796,"Name":"PRO8L3M","Points":9899,"X":426,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378638Z"},{"ID":2797,"Name":"obĂłz Pracy","Points":7348,"X":422,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378639Z"},{"ID":2798,"Name":"Ateny_72","Points":3094,"X":472,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378639Z"},{"ID":2799,"Name":"SsSs","Points":10149,"X":421,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37864Z"},{"ID":2800,"Name":"018","Points":9761,"X":432,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378641Z"},{"ID":2801,"Name":"NOT?","Points":3437,"X":434,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378641Z"},{"ID":2802,"Name":"Wioska barbarzyƄska","Points":9302,"X":567,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378642Z"},{"ID":2803,"Name":"013 Esiok f","Points":10179,"X":535,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378642Z"},{"ID":2804,"Name":"0063 b5 mehehehe","Points":10149,"X":450,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378643Z"},{"ID":2805,"Name":"0063 13","Points":9975,"X":452,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378643Z"},{"ID":2806,"Name":"C005","Points":10838,"X":523,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378644Z"},{"ID":2807,"Name":"[058] Kappa","Points":10237,"X":526,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378645Z"},{"ID":2808,"Name":"Wioska 415","Points":10495,"X":570,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378645Z"},{"ID":2809,"Name":"Os Konfederacja +","Points":9668,"X":469,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378646Z"},{"ID":2810,"Name":"-[006]- Czo Oju","Points":7088,"X":553,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378646Z"},{"ID":2811,"Name":"Monetki","Points":10291,"X":483,"Y":425,"Continent":"K44","Bonus":7,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378647Z"},{"ID":2812,"Name":"195 Santiago de Surco","Points":10068,"X":467,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378647Z"},{"ID":2813,"Name":"Wioska_09","Points":5369,"X":556,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378648Z"},{"ID":2814,"Name":"CALL 949","Points":10311,"X":547,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378648Z"},{"ID":2815,"Name":"IQ154","Points":6765,"X":554,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378649Z"},{"ID":2816,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3122,"X":462,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37865Z"},{"ID":2817,"Name":"013","Points":10311,"X":541,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37865Z"},{"ID":2818,"Name":".achim.","Points":10801,"X":539,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378651Z"},{"ID":2819,"Name":"- 319 -","Points":10000,"X":525,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378651Z"},{"ID":2820,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":389,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378652Z"},{"ID":2821,"Name":"ƚmieszkii","Points":9156,"X":515,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378653Z"},{"ID":2822,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":419,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378653Z"},{"ID":2823,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":423,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378654Z"},{"ID":2824,"Name":"Szlachcic","Points":10237,"X":580,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378654Z"},{"ID":2825,"Name":"F026","Points":9702,"X":496,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378655Z"},{"ID":2826,"Name":"003","Points":10495,"X":461,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378655Z"},{"ID":2827,"Name":"keepo","Points":10330,"X":474,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378656Z"},{"ID":2828,"Name":"0170","Points":9500,"X":470,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378656Z"},{"ID":2829,"Name":"B006","Points":10160,"X":555,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378657Z"},{"ID":2830,"Name":"003 - Who next?","Points":10495,"X":426,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378657Z"},{"ID":2831,"Name":"Mesaria","Points":10285,"X":437,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378658Z"},{"ID":2832,"Name":"Merhet","Points":10220,"X":521,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378658Z"},{"ID":2834,"Name":"F084","Points":9694,"X":484,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378659Z"},{"ID":2835,"Name":"044. A-RE-SE-EY","Points":10252,"X":567,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378659Z"},{"ID":2836,"Name":"+44 61 Ferques","Points":9840,"X":412,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37866Z"},{"ID":2837,"Name":"26.","Points":10104,"X":565,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37866Z"},{"ID":2838,"Name":"003","Points":7361,"X":566,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378661Z"},{"ID":2839,"Name":"Szlachcic 043","Points":9338,"X":565,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378661Z"},{"ID":2840,"Name":"Szlachcic","Points":10160,"X":556,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378662Z"},{"ID":2841,"Name":"[137]","Points":9750,"X":566,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378662Z"},{"ID":2842,"Name":"10021","Points":5765,"X":534,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378663Z"},{"ID":2843,"Name":"Osada","Points":9629,"X":498,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378664Z"},{"ID":2844,"Name":"F011","Points":9744,"X":500,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378664Z"},{"ID":2845,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":399,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378665Z"},{"ID":2846,"Name":"Mniejsze zƂo 0059","Points":6076,"X":417,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378665Z"},{"ID":2847,"Name":"Szlachcic","Points":9166,"X":495,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378666Z"},{"ID":2848,"Name":"10012","Points":8163,"X":533,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378666Z"},{"ID":2849,"Name":"AƁA NIE BIJ BOLI","Points":9835,"X":493,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378667Z"},{"ID":2850,"Name":"Szlachcic","Points":9764,"X":492,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378667Z"},{"ID":2851,"Name":"029 - Katowice","Points":10495,"X":406,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378668Z"},{"ID":2852,"Name":"?+44 85 Wirwignes","Points":9175,"X":459,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378668Z"},{"ID":2853,"Name":"228 Queenstown","Points":8898,"X":535,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378669Z"},{"ID":2855,"Name":"003 Osada koczownikĂłw","Points":9744,"X":573,"Y":549,"Continent":"K55","Bonus":5,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378669Z"},{"ID":2857,"Name":"Osada","Points":9629,"X":496,"Y":447,"Continent":"K44","Bonus":1,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37867Z"},{"ID":2858,"Name":"Szlachcic","Points":9701,"X":509,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37867Z"},{"ID":2859,"Name":"220 Townsville","Points":9146,"X":536,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378671Z"},{"ID":2860,"Name":"Winter is coming","Points":9976,"X":503,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378671Z"},{"ID":2861,"Name":"ƚmieszkii","Points":9115,"X":514,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378672Z"},{"ID":2862,"Name":"025. Oborot","Points":9761,"X":505,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378672Z"},{"ID":2863,"Name":"Wioska 506","Points":10495,"X":575,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378673Z"},{"ID":2864,"Name":"Minas Ithil","Points":9386,"X":506,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378674Z"},{"ID":2865,"Name":"(023)","Points":10152,"X":422,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378674Z"},{"ID":2866,"Name":"- Alternatywa","Points":10160,"X":507,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378675Z"},{"ID":2867,"Name":"+44 73 Sorrus","Points":9661,"X":435,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378675Z"},{"ID":2868,"Name":"BBB","Points":5982,"X":563,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378676Z"},{"ID":2869,"Name":"#0097 DobryƄ DuĆŒy","Points":9033,"X":473,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378676Z"},{"ID":2870,"Name":"OgrĂłd Warzywny","Points":10495,"X":451,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378677Z"},{"ID":2871,"Name":"088 Cincinnati","Points":10247,"X":476,"Y":457,"Continent":"K44","Bonus":9,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378677Z"},{"ID":2872,"Name":"008","Points":9750,"X":415,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378678Z"},{"ID":2873,"Name":".:064:. Chillout","Points":5466,"X":510,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378678Z"},{"ID":2874,"Name":"104","Points":10129,"X":412,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378679Z"},{"ID":2875,"Name":"065","Points":10042,"X":423,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378679Z"},{"ID":2876,"Name":"011","Points":4022,"X":464,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37868Z"},{"ID":2877,"Name":"BucksbarzyƄsKamiiiru","Points":10756,"X":425,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37868Z"},{"ID":2878,"Name":"Szlachcic","Points":7984,"X":498,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378681Z"},{"ID":2879,"Name":"[103]","Points":9907,"X":552,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378681Z"},{"ID":2880,"Name":"082","Points":10042,"X":415,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378682Z"},{"ID":2881,"Name":"Suppi","Points":9636,"X":442,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378682Z"},{"ID":2882,"Name":"NOT?","Points":10042,"X":424,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378683Z"},{"ID":2883,"Name":"Monetki ???","Points":10295,"X":485,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378684Z"},{"ID":2884,"Name":"PiekƂo to inni","Points":9761,"X":523,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378684Z"},{"ID":2885,"Name":"044","Points":10311,"X":553,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378685Z"},{"ID":2886,"Name":"- 307 -","Points":10000,"X":524,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378685Z"},{"ID":2887,"Name":"South K45","Points":9297,"X":569,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378686Z"},{"ID":2888,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":451,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378686Z"},{"ID":2889,"Name":"B015","Points":10495,"X":567,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378687Z"},{"ID":2890,"Name":"wioska ofensywna","Points":9771,"X":549,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378687Z"},{"ID":2891,"Name":"011","Points":10495,"X":560,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378688Z"},{"ID":2892,"Name":"Szlachcic","Points":10311,"X":492,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378688Z"},{"ID":2893,"Name":"002 King","Points":5381,"X":531,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378689Z"},{"ID":2894,"Name":"+44 61 Landrethun le Nord","Points":9843,"X":416,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37869Z"},{"ID":2895,"Name":"Marienburg 5","Points":3549,"X":527,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37869Z"},{"ID":2896,"Name":"Monetki","Points":10292,"X":473,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378691Z"},{"ID":2897,"Name":"SPARTA_67","Points":9638,"X":480,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378692Z"},{"ID":2898,"Name":"Szlachcic","Points":9332,"X":559,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378692Z"},{"ID":2899,"Name":"027. ALFI","Points":1838,"X":484,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378693Z"},{"ID":2900,"Name":"[119]","Points":9941,"X":563,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378693Z"},{"ID":2901,"Name":"#0001","Points":10495,"X":546,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378694Z"},{"ID":2902,"Name":"0011","Points":10495,"X":508,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378694Z"},{"ID":2903,"Name":"#0017 Bober","Points":10000,"X":489,"Y":561,"Continent":"K54","Bonus":8,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378695Z"},{"ID":2904,"Name":"0083","Points":10160,"X":551,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378695Z"},{"ID":2905,"Name":"Wioska BarbarzyƄska","Points":9094,"X":546,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378696Z"},{"ID":2906,"Name":"Bagdad","Points":10654,"X":475,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378697Z"},{"ID":2907,"Name":"Mzm24","Points":10362,"X":551,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378697Z"},{"ID":2908,"Name":"Konfederacja","Points":10160,"X":468,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378698Z"},{"ID":2909,"Name":"CALL 1033","Points":10495,"X":550,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378698Z"},{"ID":2910,"Name":"Yogi","Points":10019,"X":533,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378699Z"},{"ID":2911,"Name":"CALL 946","Points":10311,"X":551,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378699Z"},{"ID":2912,"Name":"P Konfederacja","Points":9222,"X":463,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3787Z"},{"ID":2913,"Name":"-= 010 =-","Points":10008,"X":443,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378701Z"},{"ID":2914,"Name":"Fajna 078","Points":4395,"X":459,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378701Z"},{"ID":2915,"Name":"Suppi","Points":9556,"X":442,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378702Z"},{"ID":2916,"Name":"...Just like that","Points":10452,"X":453,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378702Z"},{"ID":2917,"Name":"D01","Points":10301,"X":544,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378703Z"},{"ID":2918,"Name":"Strasznie MiƂy Sąsiad!","Points":9735,"X":547,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378703Z"},{"ID":2919,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":444,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378704Z"},{"ID":2920,"Name":"046 Boise","Points":9761,"X":467,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378704Z"},{"ID":2921,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378705Z"},{"ID":2922,"Name":"200 Paramaribo","Points":9902,"X":470,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378705Z"},{"ID":2923,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":431,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378706Z"},{"ID":2924,"Name":"Os Konfederacja","Points":10203,"X":477,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378706Z"},{"ID":2925,"Name":"10 | 002","Points":5707,"X":537,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378707Z"},{"ID":2926,"Name":"B041","Points":8933,"X":476,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378707Z"},{"ID":2927,"Name":"COUSINS","Points":9176,"X":487,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378708Z"},{"ID":2928,"Name":"014. Wioska mruva","Points":10252,"X":578,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378708Z"},{"ID":2929,"Name":"012","Points":7981,"X":559,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378709Z"},{"ID":2930,"Name":"Gattacka","Points":10506,"X":579,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378709Z"},{"ID":2931,"Name":"Jaaa","Points":10490,"X":571,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37871Z"},{"ID":2932,"Name":"BEEF","Points":10495,"X":498,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378711Z"},{"ID":2933,"Name":"Fajna 085","Points":335,"X":457,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378711Z"},{"ID":2934,"Name":"Wioska 20.","Points":9963,"X":495,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378712Z"},{"ID":2935,"Name":"007 Fiona","Points":7711,"X":445,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378712Z"},{"ID":2936,"Name":"K55","Points":10019,"X":539,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378713Z"},{"ID":2937,"Name":"NOT?","Points":10042,"X":412,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378713Z"},{"ID":2938,"Name":"CALL 1086","Points":10495,"X":536,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378714Z"},{"ID":2939,"Name":"063 Grecja","Points":10495,"X":572,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378714Z"},{"ID":2940,"Name":"Wioska barbarzyƄska","Points":10285,"X":438,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378715Z"},{"ID":2941,"Name":"Szlachcic","Points":9845,"X":568,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378715Z"},{"ID":2942,"Name":"Anioly3","Points":7083,"X":438,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378716Z"},{"ID":2943,"Name":"Abad On","Points":9863,"X":569,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378717Z"},{"ID":2944,"Name":"Wioska barbarzyƄska","Points":10478,"X":435,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378717Z"},{"ID":2945,"Name":"Szlachcic","Points":10237,"X":568,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378718Z"},{"ID":2946,"Name":"100.","Points":6773,"X":503,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378718Z"},{"ID":2947,"Name":"[143] North","Points":10311,"X":578,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378719Z"},{"ID":2948,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378719Z"},{"ID":2949,"Name":"Suppi","Points":9659,"X":435,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37872Z"},{"ID":2950,"Name":"Lord Arsey KING","Points":8392,"X":517,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37872Z"},{"ID":2951,"Name":".achim.","Points":10375,"X":538,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378721Z"},{"ID":2952,"Name":"SsSs","Points":9698,"X":423,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378721Z"},{"ID":2953,"Name":"Suppi","Points":9553,"X":441,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378722Z"},{"ID":2954,"Name":"037. ALFI","Points":1324,"X":469,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378722Z"},{"ID":2955,"Name":"BETI 006","Points":1641,"X":463,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378723Z"},{"ID":2956,"Name":"0169","Points":9081,"X":470,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378723Z"},{"ID":2957,"Name":"Szlachcic","Points":10117,"X":559,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378724Z"},{"ID":2958,"Name":"Winter is coming","Points":8022,"X":438,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378724Z"},{"ID":2959,"Name":"019 Ewolucja","Points":7165,"X":554,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378725Z"},{"ID":2960,"Name":"...Just like that","Points":10452,"X":452,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378725Z"},{"ID":2961,"Name":"Montgomery","Points":9960,"X":466,"Y":494,"Continent":"K44","Bonus":4,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378726Z"},{"ID":2962,"Name":"007","Points":8969,"X":553,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378727Z"},{"ID":2963,"Name":"PiekƂo to inni","Points":10160,"X":522,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378727Z"},{"ID":2964,"Name":"NEW ABADON","Points":9172,"X":563,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378728Z"},{"ID":2965,"Name":"PiekƂo to inni","Points":10160,"X":523,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378728Z"},{"ID":2966,"Name":"Anioly1","Points":9670,"X":439,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378729Z"},{"ID":2967,"Name":"Mzm31","Points":10426,"X":547,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378729Z"},{"ID":2968,"Name":"Gratuluje mĂłzgu","Points":9924,"X":440,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37873Z"},{"ID":2969,"Name":"Gratuluje mĂłzgu","Points":7100,"X":442,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37873Z"},{"ID":2970,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378731Z"},{"ID":2971,"Name":"*INTERTWINED*","Points":9711,"X":476,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378731Z"},{"ID":2972,"Name":".:062:. Chillout","Points":9076,"X":518,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378732Z"},{"ID":2973,"Name":"004","Points":10654,"X":563,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378732Z"},{"ID":2974,"Name":"116 Mcbride","Points":9761,"X":479,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378733Z"},{"ID":2976,"Name":"006","Points":10290,"X":481,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378733Z"},{"ID":2977,"Name":"......","Points":7576,"X":553,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378734Z"},{"ID":2978,"Name":"scar","Points":10365,"X":478,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378734Z"},{"ID":2979,"Name":"107 Kasztan Kasztanem Pogania","Points":5138,"X":544,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378735Z"},{"ID":2980,"Name":".:127:. Niangmen","Points":9899,"X":512,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378735Z"},{"ID":2981,"Name":"7.62 mm","Points":8723,"X":509,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378736Z"},{"ID":2982,"Name":"Cast Away 015","Points":5597,"X":448,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378736Z"},{"ID":2983,"Name":"045","Points":10311,"X":566,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378737Z"},{"ID":2984,"Name":"0Wioska barbarzyƄska","Points":10083,"X":473,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378738Z"},{"ID":2985,"Name":"[130] North","Points":10060,"X":580,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378738Z"},{"ID":2986,"Name":"Wioska BarbarzyƄska","Points":10019,"X":543,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378739Z"},{"ID":2987,"Name":"097","Points":10311,"X":568,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378739Z"},{"ID":2988,"Name":"PiekƂo to inni","Points":10160,"X":525,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37874Z"},{"ID":2989,"Name":"A04","Points":9439,"X":555,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37874Z"},{"ID":2990,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":425,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378741Z"},{"ID":2991,"Name":"South K45","Points":8736,"X":574,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378741Z"},{"ID":2992,"Name":"warzywa","Points":10394,"X":496,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378742Z"},{"ID":2993,"Name":"?+44 76 Charly","Points":9466,"X":460,"Y":475,"Continent":"K44","Bonus":7,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378743Z"},{"ID":2994,"Name":"Pf Konfederacja","Points":9682,"X":490,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378743Z"},{"ID":2995,"Name":"Konfiasze","Points":10787,"X":473,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378744Z"},{"ID":2996,"Name":"[086]","Points":10107,"X":529,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378744Z"},{"ID":2997,"Name":"084 Pistacja","Points":9637,"X":543,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378745Z"},{"ID":2998,"Name":"JaamMwG 031","Points":12154,"X":530,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378745Z"},{"ID":2999,"Name":"Mzm21","Points":10503,"X":560,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378746Z"},{"ID":3001,"Name":"Monetki","Points":10295,"X":469,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378746Z"},{"ID":3003,"Name":"0032 K55 and987 OZDR.","Points":9792,"X":503,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378747Z"},{"ID":3004,"Name":"073 Amarillo","Points":9771,"X":454,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378747Z"},{"ID":3006,"Name":"20006","Points":10838,"X":505,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378748Z"},{"ID":3007,"Name":"071 Dallas","Points":9761,"X":453,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378748Z"},{"ID":3008,"Name":"#0033 ƚwinoujƛcie","Points":10000,"X":486,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378749Z"},{"ID":3009,"Name":"004. ALFI","Points":1521,"X":483,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378749Z"},{"ID":3010,"Name":"Szlachcic 010","Points":8024,"X":557,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37875Z"},{"ID":3011,"Name":"006 Fiona","Points":7403,"X":444,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37875Z"},{"ID":3012,"Name":"Mzm05","Points":10636,"X":556,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378751Z"},{"ID":3013,"Name":"Monetki","Points":10291,"X":475,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378752Z"},{"ID":3014,"Name":"Osada","Points":9617,"X":500,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378752Z"},{"ID":3015,"Name":"7.62 mm","Points":10019,"X":472,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378753Z"},{"ID":3016,"Name":".:141:. Niangmen","Points":9761,"X":507,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378753Z"},{"ID":3017,"Name":".achim.","Points":10311,"X":515,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378754Z"},{"ID":3018,"Name":"Szlachcic","Points":8318,"X":502,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378754Z"},{"ID":3019,"Name":"Brat447","Points":10495,"X":445,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378755Z"},{"ID":3020,"Name":"Wioska barbarzyƄska","Points":9250,"X":533,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378755Z"},{"ID":3021,"Name":"Brat447","Points":10495,"X":447,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378756Z"},{"ID":3023,"Name":"#Kingler","Points":10252,"X":573,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378756Z"},{"ID":3025,"Name":"~045.","Points":10495,"X":481,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378757Z"},{"ID":3026,"Name":"NOT","Points":10042,"X":419,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378757Z"},{"ID":3027,"Name":"...001...","Points":9060,"X":553,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378758Z"},{"ID":3028,"Name":"|010|","Points":10311,"X":553,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378758Z"},{"ID":3029,"Name":"A09","Points":9994,"X":550,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378759Z"},{"ID":3030,"Name":"?+44 86","Points":9626,"X":463,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378759Z"},{"ID":3031,"Name":"Wioska barbarzyƄska","Points":10300,"X":526,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37876Z"},{"ID":3032,"Name":"Tank 001","Points":10343,"X":396,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378761Z"},{"ID":3033,"Name":"C018","Points":9759,"X":526,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378761Z"},{"ID":3034,"Name":"LEGION_1","Points":3482,"X":553,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":6101033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378762Z"},{"ID":3035,"Name":"FF009","Points":5813,"X":468,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378762Z"},{"ID":3036,"Name":"Strasznie MiƂy Sąsiad!","Points":9735,"X":548,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378763Z"},{"ID":3037,"Name":"~049.","Points":10495,"X":492,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378763Z"},{"ID":3038,"Name":"004","Points":10019,"X":500,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378764Z"},{"ID":3039,"Name":"slow","Points":10252,"X":533,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378764Z"},{"ID":3041,"Name":"024","Points":9761,"X":531,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378765Z"},{"ID":3042,"Name":"[180]","Points":10524,"X":541,"Y":548,"Continent":"K55","Bonus":8,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378765Z"},{"ID":3043,"Name":"Wioska","Points":10178,"X":379,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378766Z"},{"ID":3044,"Name":"007","Points":6448,"X":507,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378766Z"},{"ID":3045,"Name":"ccc","Points":10476,"X":611,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378767Z"},{"ID":3046,"Name":"lady anima","Points":10535,"X":493,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378767Z"},{"ID":3047,"Name":"Wioska","Points":10178,"X":380,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378768Z"},{"ID":3048,"Name":"024 Buffalo","Points":9761,"X":440,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378768Z"},{"ID":3049,"Name":"PiekƂo to inni","Points":10160,"X":518,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378769Z"},{"ID":3050,"Name":"P.018","Points":9915,"X":540,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378769Z"},{"ID":3051,"Name":".achim.","Points":10311,"X":516,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37877Z"},{"ID":3052,"Name":"4 ESIOK f","Points":8935,"X":538,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378771Z"},{"ID":3053,"Name":"0063 4 Lechxxxxx","Points":10316,"X":450,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378771Z"},{"ID":3054,"Name":"0063 3","Points":10083,"X":448,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378772Z"},{"ID":3055,"Name":"*INTERTWINED**","Points":8546,"X":468,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378772Z"},{"ID":3056,"Name":"P Konfederacja","Points":9319,"X":459,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378773Z"},{"ID":3057,"Name":"0110","Points":8776,"X":469,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378773Z"},{"ID":3058,"Name":"CALL 1020","Points":10311,"X":550,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378774Z"},{"ID":3059,"Name":"Wioska barbarzyƄska","Points":10285,"X":431,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378774Z"},{"ID":3060,"Name":"CALL 941","Points":10311,"X":553,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378775Z"},{"ID":3061,"Name":"K44 x014","Points":10495,"X":441,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378775Z"},{"ID":3062,"Name":"NOT?","Points":9950,"X":425,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378776Z"},{"ID":3063,"Name":"00533 W01","Points":8006,"X":440,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378776Z"},{"ID":3064,"Name":"Szlachcic","Points":10300,"X":486,"Y":479,"Continent":"K44","Bonus":2,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378777Z"},{"ID":3065,"Name":"070","Points":10495,"X":547,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378778Z"},{"ID":3066,"Name":"KONFA TO MARKA, NARKA","Points":10643,"X":446,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378778Z"},{"ID":3067,"Name":"03 | Osada bolcownikĂłw","Points":8877,"X":543,"Y":432,"Continent":"K45","Bonus":9,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378779Z"},{"ID":3068,"Name":"054","Points":10495,"X":542,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378779Z"},{"ID":3069,"Name":"PiekƂo to inni","Points":8131,"X":520,"Y":472,"Continent":"K45","Bonus":9,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37878Z"},{"ID":3070,"Name":"Pf Konfederacja","Points":9912,"X":484,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37878Z"},{"ID":3071,"Name":"Pf Konfederacja +","Points":9938,"X":486,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378781Z"},{"ID":3072,"Name":".achim.","Points":10311,"X":526,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378781Z"},{"ID":3073,"Name":"P.019","Points":10028,"X":539,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378782Z"},{"ID":3074,"Name":"#0018 Wizualizacja","Points":10346,"X":490,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378783Z"},{"ID":3075,"Name":"*INTERTWINED*","Points":9565,"X":469,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378783Z"},{"ID":3076,"Name":"amator MO3","Points":10971,"X":533,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378784Z"},{"ID":3077,"Name":"-[023]- Nanda Devi","Points":7445,"X":550,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378784Z"},{"ID":3078,"Name":"CALL 1078","Points":11130,"X":535,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378785Z"},{"ID":3079,"Name":"0090","Points":9924,"X":451,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378786Z"},{"ID":3080,"Name":"[0101]","Points":10495,"X":448,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378786Z"},{"ID":3081,"Name":".008","Points":10495,"X":460,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378787Z"},{"ID":3082,"Name":"K34 x002","Points":10495,"X":447,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378788Z"},{"ID":3083,"Name":"Wioska 420","Points":10495,"X":554,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378788Z"},{"ID":3084,"Name":"Wioska gotkamil","Points":9711,"X":523,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378789Z"},{"ID":3085,"Name":"219 Brisbane","Points":9966,"X":532,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378789Z"},{"ID":3086,"Name":"001","Points":8095,"X":522,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37879Z"},{"ID":3087,"Name":"A12","Points":9994,"X":549,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.37879Z"},{"ID":3088,"Name":"Ateny_78","Points":2569,"X":473,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378791Z"},{"ID":3089,"Name":"09. Ren Grouver","Points":10178,"X":563,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378791Z"},{"ID":3090,"Name":"07 ZrĂłb mi huragan","Points":3249,"X":474,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378792Z"},{"ID":3091,"Name":"- 034 -","Points":10000,"X":532,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378792Z"},{"ID":3092,"Name":"+44 62 Hesdin l Abbe","Points":9852,"X":420,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378793Z"},{"ID":3093,"Name":"- 261 -","Points":10000,"X":529,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378793Z"},{"ID":3094,"Name":"036","Points":9199,"X":554,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378794Z"},{"ID":3095,"Name":"Lord Arsey KING","Points":10285,"X":501,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378794Z"},{"ID":3096,"Name":"Front_21","Points":9638,"X":456,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378795Z"},{"ID":3097,"Name":"Szlachcic","Points":9899,"X":498,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378795Z"},{"ID":3098,"Name":"South barba 1","Points":10495,"X":457,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378796Z"},{"ID":3099,"Name":"053","Points":10495,"X":548,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378796Z"},{"ID":3100,"Name":"013","Points":10495,"X":556,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378797Z"},{"ID":3101,"Name":"+44 84 Airon Saint Vaast","Points":9652,"X":444,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378798Z"},{"ID":3102,"Name":"NOT?","Points":10042,"X":425,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378798Z"},{"ID":3103,"Name":"P.020","Points":10026,"X":540,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378799Z"},{"ID":3104,"Name":"NOT?","Points":10042,"X":434,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378799Z"},{"ID":3105,"Name":"Winter is coming","Points":8924,"X":446,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3788Z"},{"ID":3106,"Name":"Szlachcic","Points":10237,"X":558,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.3788Z"},{"ID":3107,"Name":"!Wioska 413","Points":10838,"X":569,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378801Z"},{"ID":3108,"Name":"...Just like that","Points":10452,"X":450,"Y":482,"Continent":"K44","Bonus":6,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378801Z"},{"ID":3109,"Name":"002 KSG","Points":9245,"X":560,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378802Z"},{"ID":3110,"Name":"ASEINGARD f","Points":9384,"X":539,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378802Z"},{"ID":3111,"Name":"Wioska BarbarzyƄska.","Points":10019,"X":555,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.378803Z"},{"ID":3112,"Name":"Maximize","Points":10495,"X":507,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408969Z"},{"ID":3113,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40897Z"},{"ID":3114,"Name":"PRO8L3M","Points":9835,"X":412,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408971Z"},{"ID":3115,"Name":"WeszƂo Ƃadnie","Points":9835,"X":516,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408972Z"},{"ID":3116,"Name":"-[014]- Sziszapangma","Points":8087,"X":551,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408973Z"},{"ID":3117,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408974Z"},{"ID":3118,"Name":"Szlachcic","Points":10237,"X":587,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408975Z"},{"ID":3119,"Name":"070.","Points":11321,"X":514,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408978Z"},{"ID":3120,"Name":"[105]","Points":9962,"X":559,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408979Z"},{"ID":3121,"Name":"007 Hasta la vista baby","Points":9808,"X":465,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408979Z"},{"ID":3122,"Name":"...Just like that","Points":10117,"X":467,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40898Z"},{"ID":3123,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10252,"X":462,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408981Z"},{"ID":3124,"Name":"F086","Points":9771,"X":481,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408982Z"},{"ID":3125,"Name":"05 Hafnarfjordur","Points":5082,"X":472,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408983Z"},{"ID":3126,"Name":"PRO8L3M","Points":11321,"X":457,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408984Z"},{"ID":3127,"Name":"Brat447","Points":10728,"X":455,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408985Z"},{"ID":3128,"Name":"Darma","Points":9835,"X":425,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408986Z"},{"ID":3129,"Name":"002","Points":10068,"X":424,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408986Z"},{"ID":3130,"Name":"keepo","Points":4961,"X":477,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408987Z"},{"ID":3131,"Name":"?+44 85 Riillieux la Pape","Points":9889,"X":455,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408988Z"},{"ID":3132,"Name":"Fajna 086","Points":850,"X":456,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408989Z"},{"ID":3133,"Name":"?+44 85 Villeurbanne Poudrette","Points":9669,"X":457,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408989Z"},{"ID":3134,"Name":"xxx","Points":6328,"X":506,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40899Z"},{"ID":3135,"Name":"KIELBA 035","Points":10495,"X":451,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408992Z"},{"ID":3136,"Name":"00971 ddd pies","Points":5505,"X":463,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408993Z"},{"ID":3137,"Name":"7. Brasil","Points":6947,"X":453,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408993Z"},{"ID":3138,"Name":"005","Points":10019,"X":576,"Y":544,"Continent":"K55","Bonus":1,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408994Z"},{"ID":3139,"Name":"A03","Points":9313,"X":551,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408995Z"},{"ID":3140,"Name":"SsSs","Points":8542,"X":435,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408996Z"},{"ID":3141,"Name":"A20","Points":7512,"X":554,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408996Z"},{"ID":3142,"Name":"Fajna 018","Points":7574,"X":449,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408997Z"},{"ID":3143,"Name":"Feed me more 007","Points":10495,"X":492,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408999Z"},{"ID":3144,"Name":"X14","Points":3087,"X":544,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.408999Z"},{"ID":3145,"Name":"Yyyy","Points":10132,"X":500,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409Z"},{"ID":3146,"Name":"ƚmieszkii","Points":9072,"X":510,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409001Z"},{"ID":3147,"Name":"040","Points":10495,"X":561,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409002Z"},{"ID":3148,"Name":"Wioska 6","Points":7576,"X":535,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409003Z"},{"ID":3149,"Name":".:083:. Takmahal","Points":10636,"X":524,"Y":451,"Continent":"K45","Bonus":8,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409003Z"},{"ID":3150,"Name":"033","Points":10495,"X":560,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409004Z"},{"ID":3151,"Name":"Szlachcic","Points":7603,"X":509,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409005Z"},{"ID":3152,"Name":"7.62 mm","Points":10019,"X":470,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409006Z"},{"ID":3153,"Name":"KONFA TO MARKA, NARKA","Points":10447,"X":445,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409006Z"},{"ID":3155,"Name":"Selonari.","Points":9711,"X":460,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409007Z"},{"ID":3156,"Name":"Psytrance","Points":10171,"X":504,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409008Z"},{"ID":3157,"Name":"BBB","Points":6900,"X":554,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409009Z"},{"ID":3158,"Name":"A051","Points":10495,"X":503,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40901Z"},{"ID":3159,"Name":"042 |","Points":10178,"X":555,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40901Z"},{"ID":3160,"Name":"F009","Points":9586,"X":505,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409011Z"},{"ID":3161,"Name":"F006","Points":9756,"X":501,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409012Z"},{"ID":3162,"Name":"0064","Points":10495,"X":508,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409013Z"},{"ID":3163,"Name":"Obnisk","Points":4094,"X":434,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409014Z"},{"ID":3164,"Name":"[084]","Points":9976,"X":551,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409015Z"},{"ID":3165,"Name":"018 |","Points":10155,"X":550,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409016Z"},{"ID":3166,"Name":"0078","Points":10160,"X":463,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409016Z"},{"ID":3167,"Name":"003 Jak tam chƂopie, ƛpisz?","Points":10008,"X":465,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409017Z"},{"ID":3168,"Name":"Osada","Points":9637,"X":496,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409018Z"},{"ID":3169,"Name":"WesoƂych ƚwiąt","Points":11653,"X":558,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409019Z"},{"ID":3170,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":426,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409019Z"},{"ID":3171,"Name":"KoƄczyć czas:)","Points":9955,"X":549,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40902Z"},{"ID":3172,"Name":"063.","Points":9935,"X":480,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409021Z"},{"ID":3173,"Name":"Wioska barbarzyƄska","Points":9994,"X":564,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409022Z"},{"ID":3174,"Name":"Wioska barbarzyƄska","Points":10083,"X":510,"Y":541,"Continent":"K55","Bonus":1,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409022Z"},{"ID":3175,"Name":"A13","Points":9902,"X":550,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409023Z"},{"ID":3176,"Name":"WesoƂych ƚwiąt","Points":6799,"X":564,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409025Z"},{"ID":3177,"Name":"Szlachcic !!!","Points":9685,"X":502,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409026Z"},{"ID":3178,"Name":"#0090 WyczóƂki","Points":10027,"X":474,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409027Z"},{"ID":3179,"Name":"Monetki","Points":10303,"X":479,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409027Z"},{"ID":3180,"Name":"*INTERTWINED*","Points":9711,"X":478,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409028Z"},{"ID":3181,"Name":"KIELBA 062","Points":10479,"X":462,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40903Z"},{"ID":3182,"Name":"001","Points":10495,"X":464,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409031Z"},{"ID":3183,"Name":"Fajna007","Points":1727,"X":467,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409031Z"},{"ID":3184,"Name":"0092qqqqqqqqqqqqqqqqqqqqqqqqqqq","Points":9503,"X":455,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409032Z"},{"ID":3185,"Name":"2. Bison**","Points":10157,"X":497,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409033Z"},{"ID":3186,"Name":"Osada","Points":10297,"X":499,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409034Z"},{"ID":3187,"Name":"Dum Spiro Spero","Points":9981,"X":493,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409034Z"},{"ID":3188,"Name":".:076:. Takmahal","Points":6812,"X":526,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409035Z"},{"ID":3189,"Name":"055 |","Points":10160,"X":547,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409036Z"},{"ID":3190,"Name":"NOT?","Points":10060,"X":426,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409037Z"},{"ID":3191,"Name":"038. A-RE-SE-EY","Points":10316,"X":548,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409037Z"},{"ID":3192,"Name":"Yeet","Points":1170,"X":530,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":848908144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409038Z"},{"ID":3193,"Name":"030","Points":7090,"X":469,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409039Z"},{"ID":3194,"Name":"100","Points":9406,"X":529,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40904Z"},{"ID":3195,"Name":"Zadupie","Points":10856,"X":493,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40904Z"},{"ID":3196,"Name":"Cast Away 016","Points":3668,"X":447,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409042Z"},{"ID":3197,"Name":"005. ALFI","Points":1821,"X":492,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409043Z"},{"ID":3198,"Name":"#0014 Oscylator","Points":10000,"X":498,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409044Z"},{"ID":3199,"Name":"yogi","Points":10019,"X":514,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409044Z"},{"ID":3200,"Name":"167 Sao Paulo","Points":9761,"X":480,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409045Z"},{"ID":3201,"Name":"Wioska 0005","Points":10188,"X":407,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409046Z"},{"ID":3202,"Name":"076. |XD|","Points":10252,"X":494,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409047Z"},{"ID":3203,"Name":"Wioska","Points":10178,"X":378,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409047Z"},{"ID":3204,"Name":"Oponka","Points":9761,"X":440,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40905Z"},{"ID":3205,"Name":"Pobozowisko","Points":10971,"X":420,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409051Z"},{"ID":3206,"Name":"092 San Bernardino","Points":9761,"X":472,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409052Z"},{"ID":3207,"Name":"Horyzont zdarzeƄ","Points":9835,"X":520,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409052Z"},{"ID":3208,"Name":"Horyzont zdarzeƄ","Points":10019,"X":521,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409053Z"},{"ID":3209,"Name":"0062 ~21~","Points":7139,"X":440,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409054Z"},{"ID":3210,"Name":"- 113 -","Points":9706,"X":544,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409055Z"},{"ID":3211,"Name":"Osada","Points":9887,"X":489,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409055Z"},{"ID":3212,"Name":"- 061 -","Points":10000,"X":543,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409056Z"},{"ID":3213,"Name":"Oczko w gƂowie","Points":9835,"X":504,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409057Z"},{"ID":3214,"Name":"035 Memphis","Points":10479,"X":438,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409058Z"},{"ID":3215,"Name":"Szlachcic","Points":10311,"X":496,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409058Z"},{"ID":3216,"Name":"034 Jacksonville","Points":10495,"X":437,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409059Z"},{"ID":3217,"Name":"EREGION f","Points":10324,"X":539,"Y":466,"Continent":"K45","Bonus":2,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409061Z"},{"ID":3218,"Name":"003","Points":8969,"X":560,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409062Z"},{"ID":3219,"Name":"140 Zacatecas","Points":9761,"X":473,"Y":489,"Continent":"K44","Bonus":2,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409062Z"},{"ID":3220,"Name":"Szlachcic","Points":9459,"X":563,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409063Z"},{"ID":3221,"Name":"Wioska 523","Points":10495,"X":557,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409064Z"},{"ID":3222,"Name":"Szlachcic 061","Points":9338,"X":545,"Y":531,"Continent":"K55","Bonus":7,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409065Z"},{"ID":3223,"Name":"0071","Points":10019,"X":565,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409065Z"},{"ID":3224,"Name":"7.62 mm","Points":10019,"X":494,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409066Z"},{"ID":3225,"Name":"ChceszPokojuSzykujSięDoWojny","Points":11896,"X":468,"Y":508,"Continent":"K54","Bonus":9,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409067Z"},{"ID":3226,"Name":"003","Points":10495,"X":549,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409069Z"},{"ID":3227,"Name":"xxx","Points":10495,"X":495,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409069Z"},{"ID":3228,"Name":"113 Prince Rupert","Points":9761,"X":477,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40907Z"},{"ID":3229,"Name":"Osada","Points":10306,"X":488,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409071Z"},{"ID":3230,"Name":"Pf Konfederacja +","Points":10068,"X":474,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409072Z"},{"ID":3231,"Name":"Stage group B","Points":6141,"X":440,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409072Z"},{"ID":3232,"Name":"A#054#","Points":10692,"X":415,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409073Z"},{"ID":3233,"Name":"XnX-01","Points":7848,"X":439,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409074Z"},{"ID":3234,"Name":"120.","Points":10158,"X":488,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409075Z"},{"ID":3235,"Name":"K44 027","Points":4447,"X":413,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409075Z"},{"ID":3236,"Name":"Pf Konfederacja","Points":9938,"X":485,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409076Z"},{"ID":3237,"Name":"Fajna 022","Points":2111,"X":446,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409077Z"},{"ID":3238,"Name":"CALL 1040","Points":10068,"X":550,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409078Z"},{"ID":3239,"Name":"Winter is coming","Points":5848,"X":441,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409078Z"},{"ID":3240,"Name":"CALL 945","Points":10311,"X":546,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409079Z"},{"ID":3241,"Name":"Ręcznik do zmiany","Points":10160,"X":393,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40908Z"},{"ID":3242,"Name":"A024","Points":10495,"X":487,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409081Z"},{"ID":3243,"Name":"Kentin ufam Tobie","Points":10000,"X":389,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409082Z"},{"ID":3244,"Name":"[071] Sayhello","Points":10495,"X":548,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409082Z"},{"ID":3245,"Name":"0097","Points":10083,"X":459,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409083Z"},{"ID":3246,"Name":"*INTERTWINED*","Points":9711,"X":477,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409084Z"},{"ID":3247,"Name":"3xxxxxxxxxxxx","Points":10236,"X":462,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409085Z"},{"ID":3248,"Name":"Fajna003","Points":7241,"X":452,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409086Z"},{"ID":3249,"Name":"Shot Down","Points":10495,"X":501,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409087Z"},{"ID":3250,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":420,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409087Z"},{"ID":3251,"Name":"#0005 GƂębiej","Points":10011,"X":501,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409088Z"},{"ID":3253,"Name":"013W Osada","Points":10003,"X":562,"Y":511,"Continent":"K55","Bonus":7,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409089Z"},{"ID":3254,"Name":"004 Asgard","Points":9598,"X":603,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409089Z"},{"ID":3255,"Name":"Wioska barbarzyƄska","Points":10008,"X":432,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40909Z"},{"ID":3256,"Name":"003 Heviz","Points":10161,"X":604,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409092Z"},{"ID":3257,"Name":"7.62 mm","Points":10019,"X":504,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409092Z"},{"ID":3258,"Name":".:131:. Niangmen","Points":9899,"X":516,"Y":418,"Continent":"K45","Bonus":5,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409093Z"},{"ID":3259,"Name":"Suppi","Points":10316,"X":441,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409094Z"},{"ID":3260,"Name":"Nostra","Points":9761,"X":458,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409095Z"},{"ID":3261,"Name":"Suppi","Points":9744,"X":442,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409095Z"},{"ID":3262,"Name":"KIELBA 067","Points":10495,"X":471,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409096Z"},{"ID":3263,"Name":"Otim","Points":3143,"X":433,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409097Z"},{"ID":3265,"Name":"066.","Points":10252,"X":498,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409098Z"},{"ID":3266,"Name":"Jaaak! Kung fu panda (;","Points":8403,"X":484,"Y":510,"Continent":"K54","Bonus":6,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409098Z"},{"ID":3267,"Name":"Jak tam chƂopie, ƛpisz?","Points":10008,"X":465,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409099Z"},{"ID":3268,"Name":"Sparta_54","Points":9638,"X":481,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4091Z"},{"ID":3269,"Name":"081. xDDDDDDDDDD","Points":10252,"X":476,"Y":496,"Continent":"K44","Bonus":6,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409101Z"},{"ID":3270,"Name":"002. Taterka","Points":4299,"X":427,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409101Z"},{"ID":3271,"Name":".achim.","Points":10311,"X":515,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409102Z"},{"ID":3272,"Name":"Wioska 4","Points":3300,"X":426,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409103Z"},{"ID":3273,"Name":"lady anima","Points":10471,"X":512,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409104Z"},{"ID":3274,"Name":"Brat447","Points":7717,"X":444,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409104Z"},{"ID":3275,"Name":"022. Wodnik","Points":6517,"X":507,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409105Z"},{"ID":3276,"Name":"To nie nasz klimat","Points":10495,"X":504,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409106Z"},{"ID":3277,"Name":"C010","Points":10036,"X":520,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409108Z"},{"ID":3278,"Name":"- 054 -","Points":10000,"X":541,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409108Z"},{"ID":3279,"Name":"028 Texarkana","Points":9761,"X":435,"Y":477,"Continent":"K44","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409109Z"},{"ID":3280,"Name":"CCC","Points":8946,"X":527,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40911Z"},{"ID":3281,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":428,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409111Z"},{"ID":3282,"Name":"Napewno to nie jest off","Points":10495,"X":495,"Y":413,"Continent":"K44","Bonus":4,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409111Z"},{"ID":3283,"Name":"Joms 031","Points":9835,"X":521,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409112Z"},{"ID":3284,"Name":"Osada","Points":10292,"X":501,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409113Z"},{"ID":3285,"Name":".achim.","Points":10311,"X":526,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409114Z"},{"ID":3286,"Name":"Szlachcic !!!","Points":10295,"X":485,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409114Z"},{"ID":3287,"Name":".achim.","Points":10311,"X":533,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409115Z"},{"ID":3288,"Name":"023","Points":9717,"X":548,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409116Z"},{"ID":3290,"Name":"026","Points":6291,"X":539,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699250676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409118Z"},{"ID":3291,"Name":"B035","Points":10495,"X":489,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409119Z"},{"ID":3292,"Name":"Monetki","Points":10355,"X":482,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40912Z"},{"ID":3293,"Name":".002.","Points":10393,"X":500,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409121Z"},{"ID":3294,"Name":"Feed me more 005","Points":10325,"X":499,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409122Z"},{"ID":3295,"Name":"Lord Arsey KING","Points":9019,"X":522,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409122Z"},{"ID":3296,"Name":"006","Points":10042,"X":414,"Y":509,"Continent":"K54","Bonus":8,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409123Z"},{"ID":3297,"Name":"004 | Lord Axen - rumbling,","Points":9968,"X":556,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409124Z"},{"ID":3298,"Name":"#0041 Zamczysko","Points":10000,"X":495,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409125Z"},{"ID":3299,"Name":"Dum Spiro Spero","Points":10064,"X":494,"Y":557,"Continent":"K54","Bonus":5,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409125Z"},{"ID":3300,"Name":"047 |","Points":9976,"X":554,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409126Z"},{"ID":3301,"Name":"016","Points":9386,"X":529,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409127Z"},{"ID":3302,"Name":"Minas Anor 021","Points":10495,"X":578,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409128Z"},{"ID":3303,"Name":"K45 - 005","Points":10186,"X":559,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409128Z"},{"ID":3304,"Name":"[144] North","Points":10311,"X":576,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409129Z"},{"ID":3305,"Name":"MaltaƄskie Tango!","Points":9835,"X":495,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40913Z"},{"ID":3307,"Name":"014 Fiona","Points":9917,"X":447,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409131Z"},{"ID":3308,"Name":"Joms 023","Points":9733,"X":522,"Y":416,"Continent":"K45","Bonus":7,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409131Z"},{"ID":3310,"Name":".achim.","Points":10311,"X":534,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409132Z"},{"ID":3311,"Name":"Zero Stresu","Points":10008,"X":445,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409133Z"},{"ID":3312,"Name":"F037","Points":9718,"X":489,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409134Z"},{"ID":3313,"Name":"szlachcic","Points":3445,"X":442,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409135Z"},{"ID":3314,"Name":"7.62 mm","Points":10019,"X":489,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409135Z"},{"ID":3315,"Name":"Winter is coming","Points":1450,"X":440,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409136Z"},{"ID":3316,"Name":"Mzm32","Points":10362,"X":545,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409137Z"},{"ID":3317,"Name":"[057] Jota","Points":10161,"X":532,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409138Z"},{"ID":3318,"Name":"014 Espana","Points":5410,"X":534,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409138Z"},{"ID":3319,"Name":"B014","Points":10019,"X":562,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409139Z"},{"ID":3320,"Name":"Mniejsze zƂo 0065","Points":7186,"X":416,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409141Z"},{"ID":3321,"Name":"B015","Points":10019,"X":560,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409142Z"},{"ID":3322,"Name":"- 100 -","Points":10000,"X":545,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409142Z"},{"ID":3323,"Name":"...Just like that","Points":5802,"X":467,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409143Z"},{"ID":3324,"Name":"Os Konfederacja +","Points":9960,"X":479,"Y":429,"Continent":"K44","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409144Z"},{"ID":3325,"Name":"?+44 76 Wierre Effroy","Points":9840,"X":466,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409145Z"},{"ID":3326,"Name":"019 Spokane","Points":9761,"X":438,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409145Z"},{"ID":3327,"Name":"B006","Points":10495,"X":486,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409146Z"},{"ID":3328,"Name":"Gattacka","Points":10560,"X":580,"Y":517,"Continent":"K55","Bonus":1,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409147Z"},{"ID":3329,"Name":"+44 64 Villeurbanne Gratte Ciel","Points":9695,"X":441,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409148Z"},{"ID":3330,"Name":"12*","Points":6980,"X":565,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409148Z"},{"ID":3331,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9630,"X":469,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409149Z"},{"ID":3332,"Name":"ChceszPokojuSzykujSięDoWojny","Points":4472,"X":468,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40915Z"},{"ID":3333,"Name":"- 071 -","Points":10000,"X":543,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409151Z"},{"ID":3334,"Name":".achim.","Points":10925,"X":533,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409151Z"},{"ID":3335,"Name":"F009","Points":9750,"X":496,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409152Z"},{"ID":3336,"Name":"014.ZdM","Points":10479,"X":389,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409153Z"},{"ID":3337,"Name":"Amator","Points":10971,"X":510,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409154Z"},{"ID":3338,"Name":".achim.","Points":10068,"X":532,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409154Z"},{"ID":3339,"Name":"015 DoNotCry.ZdM","Points":8851,"X":392,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409155Z"},{"ID":3340,"Name":"GRUBASKI","Points":10093,"X":536,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409157Z"},{"ID":3341,"Name":"Lord Arsey KING","Points":10285,"X":582,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409157Z"},{"ID":3342,"Name":"Gotham","Points":9792,"X":545,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409158Z"},{"ID":3343,"Name":"101.","Points":8388,"X":502,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409159Z"},{"ID":3344,"Name":"090 MEHEHE 2","Points":10160,"X":491,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40916Z"},{"ID":3345,"Name":"031","Points":8075,"X":489,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409161Z"},{"ID":3346,"Name":"BETI 007","Points":2555,"X":460,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409161Z"},{"ID":3347,"Name":"PiekƂo to inni","Points":8405,"X":521,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409162Z"},{"ID":3348,"Name":"Fajna 040","Points":1765,"X":461,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409163Z"},{"ID":3349,"Name":"0030","Points":9952,"X":463,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409164Z"},{"ID":3350,"Name":"~~LatającyHolender~~","Points":10636,"X":579,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409164Z"},{"ID":3351,"Name":"SsSs","Points":9914,"X":451,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409165Z"},{"ID":3352,"Name":"yogi","Points":10019,"X":516,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409166Z"},{"ID":3353,"Name":"0063 L","Points":5418,"X":452,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409167Z"},{"ID":3354,"Name":"00633","Points":6013,"X":443,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409167Z"},{"ID":3355,"Name":"Sparta_45","Points":9638,"X":481,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409168Z"},{"ID":3356,"Name":"JK1","Points":9566,"X":560,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409169Z"},{"ID":3357,"Name":"131 Oaxaca","Points":9761,"X":483,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40917Z"},{"ID":3358,"Name":"184","Points":10311,"X":562,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40917Z"},{"ID":3359,"Name":"9.8 Sherwood","Points":10471,"X":551,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409171Z"},{"ID":3360,"Name":"Sparta_27","Points":9638,"X":486,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409173Z"},{"ID":3361,"Name":"A08","Points":10058,"X":549,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409174Z"},{"ID":3362,"Name":"Village","Points":12154,"X":517,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409174Z"},{"ID":3363,"Name":"JM5","Points":8202,"X":563,"Y":459,"Continent":"K45","Bonus":2,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409175Z"},{"ID":3364,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":450,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409176Z"},{"ID":3365,"Name":"Szlachcic","Points":9899,"X":494,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409177Z"},{"ID":3366,"Name":"187","Points":10311,"X":570,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409177Z"},{"ID":3367,"Name":"P Konfederacja","Points":9030,"X":460,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409178Z"},{"ID":3368,"Name":"0597","Points":7599,"X":465,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409179Z"},{"ID":3369,"Name":"0106","Points":8036,"X":464,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40918Z"},{"ID":3370,"Name":"~~LatającyHolender~~","Points":10779,"X":554,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40918Z"},{"ID":3371,"Name":"026","Points":10129,"X":422,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409181Z"},{"ID":3372,"Name":"Szlachcic 016","Points":8024,"X":552,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409182Z"},{"ID":3373,"Name":"K44 019","Points":7797,"X":433,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409183Z"},{"ID":3374,"Name":"~~LatającyHolender~~","Points":10160,"X":554,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409183Z"},{"ID":3375,"Name":"~035.","Points":10495,"X":489,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409184Z"},{"ID":3376,"Name":"Wioska BarbarzyƄska","Points":10083,"X":543,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409187Z"},{"ID":3377,"Name":"+44 61 Samer","Points":9844,"X":418,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409188Z"},{"ID":3378,"Name":"Wioska BarbarzyƄska","Points":8450,"X":546,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409189Z"},{"ID":3379,"Name":"005","Points":9835,"X":516,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409189Z"},{"ID":3380,"Name":"0062 ~2~","Points":10083,"X":441,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40919Z"},{"ID":3381,"Name":"Szlachcic","Points":10237,"X":577,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409191Z"},{"ID":3382,"Name":"Suppi","Points":9708,"X":438,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409192Z"},{"ID":3383,"Name":"xxx","Points":10495,"X":503,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409193Z"},{"ID":3384,"Name":"P.001","Points":10170,"X":537,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409194Z"},{"ID":3385,"Name":"Osada","Points":10358,"X":494,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409194Z"},{"ID":3386,"Name":"P.009","Points":10157,"X":535,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409195Z"},{"ID":3387,"Name":"Lord Arsey KING","Points":6801,"X":543,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409196Z"},{"ID":3388,"Name":"Wioska barbarzyƄska","Points":9830,"X":446,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409197Z"},{"ID":3389,"Name":"CALL 1036","Points":10311,"X":553,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409198Z"},{"ID":3390,"Name":"Wioska barbarzyƄska","Points":10495,"X":448,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409199Z"},{"ID":3391,"Name":"F035","Points":9674,"X":491,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409199Z"},{"ID":3392,"Name":"084","Points":10129,"X":414,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4092Z"},{"ID":3393,"Name":"x17","Points":10285,"X":432,"Y":440,"Continent":"K44","Bonus":8,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409201Z"},{"ID":3394,"Name":"072","Points":10129,"X":417,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409202Z"},{"ID":3395,"Name":"Wioska barbarzyƄska","Points":10008,"X":447,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409202Z"},{"ID":3396,"Name":"Atena","Points":8684,"X":461,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409203Z"},{"ID":3397,"Name":"PiekƂo to inni","Points":9461,"X":521,"Y":477,"Continent":"K45","Bonus":5,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409204Z"},{"ID":3398,"Name":"*INTERTWINED*","Points":6689,"X":460,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409205Z"},{"ID":3399,"Name":"NOT?","Points":7794,"X":459,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409205Z"},{"ID":3400,"Name":"Selonari","Points":9236,"X":460,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409207Z"},{"ID":3401,"Name":"Fajna 013","Points":9727,"X":446,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409207Z"},{"ID":3402,"Name":"043. ALFI","Points":1190,"X":462,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409208Z"},{"ID":3403,"Name":"Fajna 026","Points":7313,"X":445,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409209Z"},{"ID":3405,"Name":"Wioska barbarzyƄska","Points":10252,"X":537,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40921Z"},{"ID":3406,"Name":"jack herrer","Points":9357,"X":402,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40921Z"},{"ID":3407,"Name":"Lord Arsey KING","Points":10285,"X":543,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409211Z"},{"ID":3408,"Name":"C Zach 0011 KozƂów","Points":10030,"X":407,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409212Z"},{"ID":3409,"Name":"|063|Ooo","Points":8548,"X":582,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409212Z"},{"ID":3410,"Name":"055 Lanai City","Points":9761,"X":456,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409213Z"},{"ID":3411,"Name":"Osada","Points":9629,"X":495,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409214Z"},{"ID":3412,"Name":"P Konfederacja","Points":8480,"X":459,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409215Z"},{"ID":3413,"Name":"024","Points":9352,"X":533,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409216Z"},{"ID":3414,"Name":"017 M Diler to marka","Points":10495,"X":591,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409217Z"},{"ID":3415,"Name":"x18","Points":10285,"X":423,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409218Z"},{"ID":3416,"Name":"Szlachcic","Points":10237,"X":575,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409218Z"},{"ID":3417,"Name":"- 066 -","Points":10000,"X":537,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409219Z"},{"ID":3418,"Name":"Winter is coming","Points":9922,"X":502,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40922Z"},{"ID":3419,"Name":"Tretogor","Points":10495,"X":498,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409221Z"},{"ID":3420,"Name":"+44 83 Lyon La Guillotiere","Points":9802,"X":435,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409221Z"},{"ID":3421,"Name":"A039","Points":10204,"X":502,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409223Z"},{"ID":3422,"Name":"A029","Points":10495,"X":495,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409224Z"},{"ID":3423,"Name":"033","Points":9744,"X":551,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409225Z"},{"ID":3424,"Name":"KIELBA 096","Points":10495,"X":464,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409225Z"},{"ID":3425,"Name":"Pf Konfederacja","Points":10030,"X":487,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409226Z"},{"ID":3426,"Name":"KIELBA 039","Points":10495,"X":456,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409227Z"},{"ID":3427,"Name":"Wioska barbarzyƄska","Points":10008,"X":435,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409228Z"},{"ID":3428,"Name":"ƚmieszki","Points":9095,"X":531,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409228Z"},{"ID":3429,"Name":"Joms 033","Points":10273,"X":535,"Y":417,"Continent":"K45","Bonus":3,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409229Z"},{"ID":3430,"Name":"Kamyk","Points":9835,"X":592,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40923Z"},{"ID":3431,"Name":"K55","Points":10252,"X":543,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409231Z"},{"ID":3432,"Name":"064 Hiszpania","Points":10495,"X":575,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409231Z"},{"ID":3433,"Name":"PRO8L3M","Points":9835,"X":454,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409232Z"},{"ID":3434,"Name":"!Wioska 500","Points":10495,"X":576,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409233Z"},{"ID":3435,"Name":"ChceszPokojuSzykujSięDoWojny","Points":8042,"X":468,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409234Z"},{"ID":3436,"Name":"HiA","Points":2614,"X":431,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409234Z"},{"ID":3437,"Name":"FF004","Points":9835,"X":466,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409235Z"},{"ID":3438,"Name":"Front_18","Points":9218,"X":457,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409236Z"},{"ID":3439,"Name":"Osada","Points":10294,"X":490,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409237Z"},{"ID":3440,"Name":"- 041 -","Points":10000,"X":534,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409238Z"},{"ID":3441,"Name":"B003","Points":10023,"X":487,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409239Z"},{"ID":3442,"Name":"!Wioska 414","Points":10495,"X":556,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40924Z"},{"ID":3443,"Name":"009991","Points":10147,"X":470,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409241Z"},{"ID":3444,"Name":"099 Douglas","Points":9761,"X":479,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409242Z"},{"ID":3445,"Name":"x10","Points":10400,"X":563,"Y":477,"Continent":"K45","Bonus":1,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409242Z"},{"ID":3446,"Name":"Monetki","Points":9618,"X":475,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409243Z"},{"ID":3447,"Name":"A01 Oslo","Points":10355,"X":578,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409244Z"},{"ID":3448,"Name":"[096]","Points":9805,"X":562,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409245Z"},{"ID":3449,"Name":"10 Albania","Points":8914,"X":580,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409245Z"},{"ID":3450,"Name":"011","Points":10469,"X":553,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409246Z"},{"ID":3451,"Name":"004 Chicago","Points":10478,"X":427,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409247Z"},{"ID":3452,"Name":"Thunderstruck","Points":9835,"X":499,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409248Z"},{"ID":3453,"Name":"~~LatającyHolender~~","Points":10083,"X":576,"Y":498,"Continent":"K45","Bonus":9,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409249Z"},{"ID":3454,"Name":"Suppi","Points":9888,"X":428,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409249Z"},{"ID":3455,"Name":"Winter is coming","Points":6771,"X":437,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40925Z"},{"ID":3456,"Name":"0002 Fc Gold Paw","Points":9835,"X":487,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409251Z"},{"ID":3457,"Name":"0027 K54 and987 OZDR.","Points":9861,"X":499,"Y":560,"Continent":"K54","Bonus":7,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409252Z"},{"ID":3458,"Name":"173 Buenos Aires","Points":9835,"X":483,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409253Z"},{"ID":3459,"Name":"040.","Points":9461,"X":574,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409254Z"},{"ID":3460,"Name":"yogi","Points":10019,"X":485,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409257Z"},{"ID":3461,"Name":"C 002.","Points":10301,"X":450,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409257Z"},{"ID":3462,"Name":"Aleartis","Points":9711,"X":486,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409258Z"},{"ID":3463,"Name":"~~LatającyHolender~~","Points":10141,"X":563,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409259Z"},{"ID":3464,"Name":"~~LatającyHolender~~","Points":8555,"X":563,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40926Z"},{"ID":3465,"Name":"077 Orzech wƂoski","Points":10495,"X":551,"Y":475,"Continent":"K45","Bonus":4,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40926Z"},{"ID":3466,"Name":"Szlachcic","Points":10237,"X":568,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409261Z"},{"ID":3467,"Name":"10005","Points":10971,"X":531,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409262Z"},{"ID":3468,"Name":"Dum Spiro Spero","Points":9976,"X":490,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409263Z"},{"ID":3469,"Name":"7.62 mm","Points":10019,"X":489,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409263Z"},{"ID":3470,"Name":"Valhalla","Points":9835,"X":502,"Y":508,"Continent":"K55","Bonus":5,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409264Z"},{"ID":3471,"Name":"Dum Spiro Spero","Points":9995,"X":489,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409265Z"},{"ID":3472,"Name":"022","Points":9744,"X":573,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409266Z"},{"ID":3473,"Name":"Brat447","Points":10479,"X":445,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409266Z"},{"ID":3474,"Name":"0647","Points":10362,"X":477,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409267Z"},{"ID":3475,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409268Z"},{"ID":3476,"Name":"keepo","Points":9456,"X":485,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409269Z"},{"ID":3477,"Name":"...Just like that","Points":5366,"X":454,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409269Z"},{"ID":3478,"Name":"Szlachcic","Points":10297,"X":491,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40927Z"},{"ID":3479,"Name":"0084","Points":9366,"X":537,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409271Z"},{"ID":3481,"Name":"[148] North","Points":10294,"X":576,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409273Z"},{"ID":3482,"Name":"Lord Arsey KING","Points":10285,"X":543,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409273Z"},{"ID":3483,"Name":"Suppi","Points":9556,"X":436,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409274Z"},{"ID":3484,"Name":"Wioska barbarzyƄska","Points":10158,"X":432,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409275Z"},{"ID":3485,"Name":"0048","Points":9272,"X":456,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409276Z"},{"ID":3486,"Name":"Joms 026","Points":10495,"X":526,"Y":421,"Continent":"K45","Bonus":4,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409276Z"},{"ID":3487,"Name":"B014","Points":10172,"X":481,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409277Z"},{"ID":3488,"Name":"Wioska barbarzyƄska","Points":5961,"X":431,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409278Z"},{"ID":3489,"Name":"[227] WEST","Points":10068,"X":605,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409279Z"},{"ID":3490,"Name":"102 Toronto","Points":9364,"X":475,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409279Z"},{"ID":3491,"Name":"K44 028","Points":10179,"X":415,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40928Z"},{"ID":3492,"Name":"081 Jackson","Points":9761,"X":468,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409281Z"},{"ID":3493,"Name":"005 Jak tam chƂopie, ƛpisz?","Points":10008,"X":464,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409282Z"},{"ID":3494,"Name":"P.028","Points":9929,"X":535,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409282Z"},{"ID":3495,"Name":"05 Portugalia","Points":8162,"X":581,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409283Z"},{"ID":3496,"Name":"Fajna 037","Points":991,"X":455,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409284Z"},{"ID":3497,"Name":"Szlachcic !!!","Points":9835,"X":524,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409285Z"},{"ID":3498,"Name":"4.Antykwariat","Points":6710,"X":504,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409285Z"},{"ID":3499,"Name":"0331","Points":10495,"X":448,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409286Z"},{"ID":3500,"Name":"Pf Konfederacja","Points":9924,"X":491,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409287Z"},{"ID":3501,"Name":"013","Points":10147,"X":527,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409289Z"},{"ID":3502,"Name":"095.","Points":10252,"X":502,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409289Z"},{"ID":3503,"Name":"021","Points":8969,"X":530,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40929Z"},{"ID":3504,"Name":"037. Aries","Points":9513,"X":500,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409291Z"},{"ID":3505,"Name":"K45 - 011","Points":9790,"X":570,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409292Z"},{"ID":3506,"Name":"#020 A","Points":10083,"X":463,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409293Z"},{"ID":3507,"Name":"xxx","Points":10495,"X":511,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409293Z"},{"ID":3508,"Name":"Monetki","Points":10300,"X":478,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409294Z"},{"ID":3509,"Name":"Szlachcic","Points":10294,"X":487,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409295Z"},{"ID":3510,"Name":"#0016 Kleszcz","Points":10019,"X":491,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409296Z"},{"ID":3511,"Name":"Os Konfederacja","Points":9822,"X":478,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409296Z"},{"ID":3512,"Name":"NOT?","Points":10042,"X":433,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409297Z"},{"ID":3513,"Name":"205 Montego Bay","Points":9761,"X":466,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409298Z"},{"ID":3514,"Name":"Garfii","Points":10285,"X":434,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409299Z"},{"ID":3515,"Name":"C045","Points":3592,"X":534,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409299Z"},{"ID":3516,"Name":"F022","Points":9750,"X":500,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4093Z"},{"ID":3517,"Name":"105. DefinitelyRlyKoniecKonfy???","Points":10252,"X":451,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409301Z"},{"ID":3518,"Name":"*Ateny_38","Points":2240,"X":471,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409302Z"},{"ID":3519,"Name":"14*","Points":7233,"X":566,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409303Z"},{"ID":3520,"Name":"029 |","Points":10495,"X":564,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409303Z"},{"ID":3521,"Name":"032. A-RE-SE-EY","Points":10252,"X":570,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409305Z"},{"ID":3522,"Name":"Yogi","Points":9726,"X":539,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409306Z"},{"ID":3524,"Name":"Osada","Points":10295,"X":499,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409306Z"},{"ID":3525,"Name":"Wioska pawela76","Points":10495,"X":536,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409307Z"},{"ID":3526,"Name":"2 c3risa","Points":10237,"X":443,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409308Z"},{"ID":3527,"Name":"OgrĂłd Warzywny","Points":8594,"X":448,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409309Z"},{"ID":3528,"Name":"7.62 mm","Points":10019,"X":487,"Y":429,"Continent":"K44","Bonus":4,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409309Z"},{"ID":3529,"Name":"A058","Points":10444,"X":500,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40931Z"},{"ID":3530,"Name":"ladyanima","Points":9151,"X":511,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409311Z"},{"ID":3531,"Name":"0.St. Louis","Points":9970,"X":521,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409312Z"},{"ID":3532,"Name":"*Ateny_02","Points":9638,"X":474,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409312Z"},{"ID":3533,"Name":"NOT?","Points":4689,"X":459,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409313Z"},{"ID":3534,"Name":"Szlachcic","Points":9334,"X":501,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409314Z"},{"ID":3535,"Name":"*005*","Points":8552,"X":608,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409315Z"},{"ID":3536,"Name":"#Raichu","Points":10362,"X":565,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409315Z"},{"ID":3537,"Name":"Os Konfederacja","Points":9915,"X":484,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409316Z"},{"ID":3538,"Name":"WesoƂych ƚwiąt","Points":9761,"X":581,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409317Z"},{"ID":3539,"Name":"!Wioska 504","Points":10495,"X":575,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409318Z"},{"ID":3540,"Name":"Szlachcic 039","Points":8024,"X":568,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409318Z"},{"ID":3541,"Name":"HibaST","Points":3352,"X":427,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409319Z"},{"ID":3542,"Name":".achim.","Points":6447,"X":529,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409321Z"},{"ID":3543,"Name":"Village","Points":12154,"X":518,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409322Z"},{"ID":3544,"Name":"Fajna 069","Points":5181,"X":453,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409322Z"},{"ID":3545,"Name":".achim.","Points":10311,"X":529,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409323Z"},{"ID":3546,"Name":"Wioska 12","Points":5681,"X":527,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409326Z"},{"ID":3547,"Name":"Wioska leito2","Points":3854,"X":562,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":466800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409327Z"},{"ID":3548,"Name":"Oster","Points":9738,"X":443,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409327Z"},{"ID":3549,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":490,"Continent":"K45","Bonus":9,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409328Z"},{"ID":3550,"Name":"016 Rammstein","Points":7219,"X":562,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409329Z"},{"ID":3551,"Name":"82k$ Grvvyq","Points":10495,"X":540,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40933Z"},{"ID":3552,"Name":"Wioska barbarzyƄska","Points":9740,"X":598,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40933Z"},{"ID":3553,"Name":"071. ALFI","Points":781,"X":477,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409331Z"},{"ID":3554,"Name":"NOT?","Points":6564,"X":430,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409332Z"},{"ID":3555,"Name":"Os Konfederacja","Points":9853,"X":477,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409333Z"},{"ID":3556,"Name":"keepo","Points":4115,"X":476,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409333Z"},{"ID":3557,"Name":"(033)","Points":9369,"X":419,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409334Z"},{"ID":3558,"Name":"Fajna 027","Points":4610,"X":446,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409335Z"},{"ID":3559,"Name":"012 New Bark Town","Points":11109,"X":590,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409336Z"},{"ID":3560,"Name":"OgrĂłd Warzywny","Points":7458,"X":454,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409337Z"},{"ID":3561,"Name":"086 Huntsville","Points":9761,"X":480,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409338Z"},{"ID":3562,"Name":"B013","Points":10495,"X":559,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409339Z"},{"ID":3563,"Name":"193 Guayaquil","Points":9761,"X":464,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40934Z"},{"ID":3564,"Name":"C 007 Wieliczka","Points":7422,"X":418,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40934Z"},{"ID":3565,"Name":"Amator","Points":4952,"X":523,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409341Z"},{"ID":3566,"Name":"kathare","Points":10503,"X":542,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409342Z"},{"ID":3567,"Name":"024. ALFI","Points":1418,"X":477,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409343Z"},{"ID":3568,"Name":"Wioska Ania12345","Points":9662,"X":471,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409344Z"},{"ID":3569,"Name":"0123","Points":10160,"X":463,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409345Z"},{"ID":3570,"Name":"222 Hobart","Points":9761,"X":531,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409345Z"},{"ID":3571,"Name":"slow","Points":10252,"X":535,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409346Z"},{"ID":3572,"Name":"Summer Slam ~ 010","Points":9835,"X":520,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409347Z"},{"ID":3573,"Name":"Sarajewo","Points":10285,"X":424,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409348Z"},{"ID":3574,"Name":"- 032 -","Points":10000,"X":537,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409349Z"},{"ID":3575,"Name":"003","Points":9746,"X":551,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409349Z"},{"ID":3576,"Name":"Jaaa","Points":10487,"X":568,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40935Z"},{"ID":3577,"Name":"Kasyno","Points":9902,"X":444,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409351Z"},{"ID":3579,"Name":"Wioska BarbarzyƄska","Points":10019,"X":547,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409352Z"},{"ID":3580,"Name":"ƚmieszkii","Points":9175,"X":513,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409353Z"},{"ID":3581,"Name":"04*kit pszczeli","Points":7280,"X":572,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409353Z"},{"ID":3582,"Name":"125.","Points":11130,"X":511,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409354Z"},{"ID":3583,"Name":".achim.","Points":8013,"X":540,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409355Z"},{"ID":3584,"Name":"Wioska","Points":2203,"X":545,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":712216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409356Z"},{"ID":3585,"Name":"Winter is coming","Points":10311,"X":504,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409357Z"},{"ID":3586,"Name":"0054 K55 and987 OZDR","Points":10636,"X":506,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409357Z"},{"ID":3587,"Name":"B020","Points":10495,"X":488,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409358Z"},{"ID":3588,"Name":".:008:. Magia","Points":9761,"X":515,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409359Z"},{"ID":3589,"Name":"005. Marzyciel Shrek","Points":6357,"X":463,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40936Z"},{"ID":3590,"Name":"002 Wioska fan zmijki","Points":9744,"X":571,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40936Z"},{"ID":3591,"Name":"Ręcznik do zmiany","Points":10845,"X":412,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409361Z"},{"ID":3592,"Name":"RHUN","Points":9805,"X":533,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409362Z"},{"ID":3593,"Name":".:032:. Oliwa","Points":9753,"X":512,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409363Z"},{"ID":3594,"Name":"Suppi","Points":9550,"X":436,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409363Z"},{"ID":3595,"Name":"KIELBA 059","Points":10247,"X":461,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409364Z"},{"ID":3596,"Name":"BETI 008","Points":1364,"X":457,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409365Z"},{"ID":3597,"Name":"K55","Points":9147,"X":540,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409366Z"},{"ID":3599,"Name":"ladyanima","Points":9064,"X":512,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409367Z"},{"ID":3600,"Name":"Front_06","Points":3818,"X":461,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409368Z"},{"ID":3601,"Name":"Sparta_70","Points":9638,"X":467,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409368Z"},{"ID":3602,"Name":"082 Vancouver","Points":9761,"X":453,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409369Z"},{"ID":3603,"Name":"026. A-RE-SE-EY","Points":10252,"X":575,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40937Z"},{"ID":3604,"Name":"I Wioska z Czarodziejem","Points":5662,"X":441,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409371Z"},{"ID":3605,"Name":"Szlachcic","Points":9965,"X":568,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409372Z"},{"ID":3606,"Name":"3 KRÓLESTWO","Points":10590,"X":537,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409373Z"},{"ID":3607,"Name":"~055.","Points":10495,"X":490,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409374Z"},{"ID":3608,"Name":"A028","Points":10495,"X":492,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409374Z"},{"ID":3609,"Name":"(013)","Points":10140,"X":421,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409375Z"},{"ID":3610,"Name":"118 Mississauga","Points":9761,"X":476,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409376Z"},{"ID":3611,"Name":"ADEN","Points":10072,"X":559,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409377Z"},{"ID":3612,"Name":"KIELBA 132","Points":10223,"X":454,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409378Z"},{"ID":3613,"Name":"Brat447","Points":4951,"X":442,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409379Z"},{"ID":3614,"Name":"145 Tuxla Gutierezz","Points":9761,"X":464,"Y":485,"Continent":"K44","Bonus":7,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40938Z"},{"ID":3615,"Name":"K44 014","Points":7674,"X":433,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40938Z"},{"ID":3616,"Name":"150 Gwatemala","Points":9761,"X":457,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409381Z"},{"ID":3617,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9563,"X":459,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409382Z"},{"ID":3618,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":449,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409383Z"},{"ID":3619,"Name":"ƚmieszkii","Points":9046,"X":518,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409383Z"},{"ID":3620,"Name":"Wioska barbarzyƄska","Points":10103,"X":445,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409384Z"},{"ID":3621,"Name":"Wioska barbarzyƄska","Points":9924,"X":465,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409385Z"},{"ID":3622,"Name":"Front_16","Points":9638,"X":458,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409386Z"},{"ID":3623,"Name":"091 San Diego","Points":9835,"X":473,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409386Z"},{"ID":3624,"Name":"A040","Points":10495,"X":505,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409387Z"},{"ID":3625,"Name":"Sparta_50","Points":9638,"X":479,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409388Z"},{"ID":3626,"Name":"Wioska barbarzyƄska","Points":10252,"X":540,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409389Z"},{"ID":3627,"Name":".achim.","Points":10311,"X":527,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40939Z"},{"ID":3628,"Name":"A057","Points":10495,"X":503,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40939Z"},{"ID":3629,"Name":"0063 b3","Points":10075,"X":453,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409391Z"},{"ID":3630,"Name":"NWO","Points":10952,"X":388,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409392Z"},{"ID":3631,"Name":"Szlachcic !!!","Points":10311,"X":498,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409393Z"},{"ID":3632,"Name":"Suppi","Points":9596,"X":445,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409395Z"},{"ID":3634,"Name":"Lord Arsey KING","Points":10285,"X":526,"Y":489,"Continent":"K45","Bonus":3,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409396Z"},{"ID":3635,"Name":"Szlachcic","Points":9701,"X":503,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409397Z"},{"ID":3636,"Name":"Pf Konfederacja +","Points":9309,"X":486,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409397Z"},{"ID":3637,"Name":"Bagdad","Points":9835,"X":479,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409398Z"},{"ID":3638,"Name":"Osada","Points":9629,"X":498,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409399Z"},{"ID":3639,"Name":"[050] Alfa ***","Points":10495,"X":542,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4094Z"},{"ID":3640,"Name":"007","Points":2892,"X":434,"Y":549,"Continent":"K54","Bonus":3,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409401Z"},{"ID":3641,"Name":"A047","Points":9909,"X":498,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409401Z"},{"ID":3642,"Name":"Kasyno","Points":9902,"X":445,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409402Z"},{"ID":3643,"Name":"006 Wizna","Points":8526,"X":567,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409403Z"},{"ID":3644,"Name":"ƚmieszkii","Points":9017,"X":515,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409405Z"},{"ID":3645,"Name":"BucksbarzyƄsKamiiiru","Points":10344,"X":425,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409405Z"},{"ID":3646,"Name":"P.017Z","Points":10150,"X":523,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409406Z"},{"ID":3647,"Name":"Stage group B 2","Points":9084,"X":462,"Y":557,"Continent":"K54","Bonus":8,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409407Z"},{"ID":3648,"Name":"Puzzle","Points":12154,"X":506,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409408Z"},{"ID":3649,"Name":"COUSINS","Points":10401,"X":491,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409409Z"},{"ID":3650,"Name":"030. Bieda","Points":8930,"X":504,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40941Z"},{"ID":3651,"Name":"089 Colorado Springs","Points":9761,"X":477,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409411Z"},{"ID":3652,"Name":"CALL 1080","Points":10559,"X":525,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409411Z"},{"ID":3653,"Name":"018","Points":10766,"X":542,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699250676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409412Z"},{"ID":3654,"Name":"PRO8L3M","Points":9835,"X":435,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409413Z"},{"ID":3655,"Name":"Wioska barbarzyƄska","Points":8971,"X":509,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409414Z"},{"ID":3656,"Name":"slow","Points":10316,"X":533,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409415Z"},{"ID":3657,"Name":"JaamMwG 005","Points":10218,"X":527,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409415Z"},{"ID":3658,"Name":"BBB","Points":6975,"X":549,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409416Z"},{"ID":3659,"Name":"TROJA.13","Points":4101,"X":457,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409417Z"},{"ID":3660,"Name":"NOT?","Points":10042,"X":426,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409418Z"},{"ID":3661,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":450,"Y":472,"Continent":"K44","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409418Z"},{"ID":3662,"Name":"033 Flagstaff","Points":9761,"X":450,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409419Z"},{"ID":3663,"Name":"037","Points":9747,"X":428,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40942Z"},{"ID":3664,"Name":"Zero Stresu","Points":10008,"X":446,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409422Z"},{"ID":3665,"Name":"006 Fort Worth","Points":9761,"X":440,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409422Z"},{"ID":3666,"Name":"*INTERTWINED*","Points":9711,"X":475,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409423Z"},{"ID":3667,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":566,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409424Z"},{"ID":3668,"Name":"Szlachcic","Points":9888,"X":498,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409425Z"},{"ID":3669,"Name":"#017 S","Points":10252,"X":472,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409425Z"},{"ID":3670,"Name":"023","Points":3322,"X":464,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409426Z"},{"ID":3671,"Name":"(022)","Points":10160,"X":424,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409427Z"},{"ID":3672,"Name":"018","Points":9744,"X":572,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409428Z"},{"ID":3673,"Name":"006","Points":10365,"X":513,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409428Z"},{"ID":3674,"Name":"Horyzont zdarzeƄ","Points":9835,"X":526,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409429Z"},{"ID":3675,"Name":"Arabska noc","Points":10068,"X":507,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40943Z"},{"ID":3676,"Name":"046","Points":9843,"X":447,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409431Z"},{"ID":3677,"Name":"Gravity","Points":9491,"X":422,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409431Z"},{"ID":3678,"Name":"CALL 1014","Points":10311,"X":520,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409432Z"},{"ID":3679,"Name":"090. ALFI","Points":838,"X":475,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409433Z"},{"ID":3680,"Name":"Ręcznik do zmiany","Points":10495,"X":412,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409434Z"},{"ID":3682,"Name":"022","Points":9966,"X":530,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409434Z"},{"ID":3683,"Name":"Horyzont zdarzeƄ","Points":10019,"X":524,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409435Z"},{"ID":3684,"Name":"091","Points":10129,"X":413,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409436Z"},{"ID":3685,"Name":"~~LatającyHolender~~","Points":10207,"X":560,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409438Z"},{"ID":3686,"Name":"Lord Arsey KING","Points":10285,"X":512,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409438Z"},{"ID":3687,"Name":"Village","Points":12154,"X":516,"Y":579,"Continent":"K55","Bonus":5,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409439Z"},{"ID":3688,"Name":"057. ALFI","Points":1240,"X":474,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40944Z"},{"ID":3689,"Name":"Wioska barbarzyƄska","Points":6952,"X":536,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409441Z"},{"ID":3690,"Name":".achim.","Points":10311,"X":516,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409441Z"},{"ID":3691,"Name":"020. PĂłlnica","Points":9402,"X":494,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409442Z"},{"ID":3692,"Name":"0126","Points":5411,"X":463,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409444Z"},{"ID":3693,"Name":"002 |","Points":9962,"X":563,"Y":558,"Continent":"K55","Bonus":8,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409445Z"},{"ID":3694,"Name":"Wioska barbarzyƄska","Points":10252,"X":533,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409445Z"},{"ID":3695,"Name":"NWO","Points":10957,"X":383,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409446Z"},{"ID":3696,"Name":"Suppi","Points":9554,"X":434,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409447Z"},{"ID":3697,"Name":"ADEN","Points":10072,"X":557,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409448Z"},{"ID":3698,"Name":"|012|","Points":10439,"X":555,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409448Z"},{"ID":3699,"Name":"013","Points":10129,"X":418,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409449Z"},{"ID":3700,"Name":"Osada","Points":10294,"X":495,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40945Z"},{"ID":3701,"Name":"...","Points":10394,"X":477,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409451Z"},{"ID":3702,"Name":"Pf Konfederacja","Points":9818,"X":493,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409452Z"},{"ID":3703,"Name":"#0114 Krzywowierzba-Kolonia","Points":9189,"X":489,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409452Z"},{"ID":3704,"Name":"K44 018","Points":8894,"X":434,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409453Z"},{"ID":3705,"Name":"Brat447","Points":5623,"X":459,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409454Z"},{"ID":3706,"Name":"Bramborowa dolina 004","Points":10019,"X":536,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409455Z"},{"ID":3707,"Name":"C039","Points":10728,"X":536,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409456Z"},{"ID":3708,"Name":"ADEN","Points":9978,"X":563,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409457Z"},{"ID":3709,"Name":"F087","Points":10362,"X":488,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409458Z"},{"ID":3710,"Name":"026 |","Points":10495,"X":558,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409459Z"},{"ID":3711,"Name":"7.62 mm","Points":10019,"X":505,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409459Z"},{"ID":3712,"Name":"A0303","Points":10362,"X":376,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40946Z"},{"ID":3713,"Name":"Wioska 409","Points":10495,"X":559,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409461Z"},{"ID":3714,"Name":".achim.","Points":10311,"X":560,"Y":437,"Continent":"K45","Bonus":2,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409462Z"},{"ID":3715,"Name":"Winter is coming","Points":2288,"X":439,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409462Z"},{"ID":3716,"Name":"021 |","Points":10049,"X":564,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409463Z"},{"ID":3717,"Name":"zx deflektor y","Points":2018,"X":440,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409466Z"},{"ID":3718,"Name":"PRO8L3M","Points":10452,"X":453,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409467Z"},{"ID":3719,"Name":"Suppi","Points":9570,"X":441,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409467Z"},{"ID":3720,"Name":"SsSs","Points":9451,"X":464,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409468Z"},{"ID":3721,"Name":"PiekƂo to inni","Points":10160,"X":517,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409469Z"},{"ID":3722,"Name":"?+44 86 Bollezeele","Points":9669,"X":463,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40947Z"},{"ID":3723,"Name":"Szlachcic","Points":10291,"X":492,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40947Z"},{"ID":3724,"Name":"Z02 Saqqaq","Points":10052,"X":562,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409471Z"},{"ID":3725,"Name":"Monetki","Points":10297,"X":479,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409473Z"},{"ID":3726,"Name":"lady","Points":10471,"X":498,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409474Z"},{"ID":3727,"Name":"Wioska barbarzyƄska","Points":10008,"X":449,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409474Z"},{"ID":3728,"Name":"021","Points":10129,"X":421,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409475Z"},{"ID":3729,"Name":"xxx","Points":10495,"X":484,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409476Z"},{"ID":3730,"Name":"PRO8L3M","Points":10311,"X":463,"Y":497,"Continent":"K44","Bonus":8,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409477Z"},{"ID":3731,"Name":"Fajna 069","Points":6516,"X":455,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409477Z"},{"ID":3732,"Name":"X D02","Points":10282,"X":547,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409478Z"},{"ID":3733,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":435,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409479Z"},{"ID":3734,"Name":"036 Reno","Points":9761,"X":442,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40948Z"},{"ID":3735,"Name":"060 |","Points":9976,"X":548,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40948Z"},{"ID":3736,"Name":"Tesa 11","Points":6604,"X":531,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409481Z"},{"ID":3737,"Name":".:132:. Niangmen","Points":9899,"X":516,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409482Z"},{"ID":3738,"Name":"003","Points":9275,"X":490,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409483Z"},{"ID":3739,"Name":"029","Points":9906,"X":554,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409483Z"},{"ID":3740,"Name":"Prywatny bal","Points":7334,"X":507,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409484Z"},{"ID":3741,"Name":"Jaaa","Points":10495,"X":573,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409485Z"},{"ID":3742,"Name":"JF4","Points":10971,"X":554,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409486Z"},{"ID":3743,"Name":"Ithilien","Points":9393,"X":571,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409486Z"},{"ID":3744,"Name":"EEE Abadon","Points":9384,"X":565,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409487Z"},{"ID":3745,"Name":"ƚmieszkii","Points":9256,"X":514,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409489Z"},{"ID":3746,"Name":"PRO8L3M","Points":9370,"X":467,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40949Z"},{"ID":3747,"Name":".:077:. Takmahal","Points":5934,"X":525,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40949Z"},{"ID":3748,"Name":"SsSs","Points":10144,"X":424,"Y":493,"Continent":"K44","Bonus":8,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409491Z"},{"ID":3749,"Name":"Myk i do kieszonki","Points":9799,"X":378,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409492Z"},{"ID":3750,"Name":"079","Points":10086,"X":412,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409493Z"},{"ID":3751,"Name":"Suppi","Points":9562,"X":438,"Y":449,"Continent":"K44","Bonus":7,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409493Z"},{"ID":3752,"Name":"7.62 mm","Points":10019,"X":497,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409494Z"},{"ID":3753,"Name":"Szlachcic","Points":10290,"X":489,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409495Z"},{"ID":3754,"Name":"Marienburg 3","Points":9148,"X":528,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409496Z"},{"ID":3755,"Name":"Jaaa","Points":10476,"X":574,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409496Z"},{"ID":3756,"Name":"Wioska Mitze","Points":3139,"X":522,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":2485646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409497Z"},{"ID":3757,"Name":"89k$ Grvvyq","Points":10034,"X":546,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409498Z"},{"ID":3758,"Name":"008","Points":10129,"X":414,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409499Z"},{"ID":3759,"Name":"-[018]- Distaghil Sar","Points":6791,"X":554,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409499Z"},{"ID":3760,"Name":"Mzm28.","Points":10362,"X":553,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4095Z"},{"ID":3761,"Name":"119 Churchill","Points":9761,"X":479,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409502Z"},{"ID":3762,"Name":"-3-","Points":10518,"X":589,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409504Z"},{"ID":3763,"Name":"+44 63 Dardilly","Points":9844,"X":434,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409505Z"},{"ID":3764,"Name":"Joms 003","Points":10140,"X":525,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409507Z"},{"ID":3765,"Name":"+44 73 Lyon La Duchere","Points":9843,"X":433,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40951Z"},{"ID":3766,"Name":"Wioska kiss-my-axe","Points":2785,"X":440,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409512Z"},{"ID":3767,"Name":"08 | Tej nie atakuj","Points":9582,"X":539,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409515Z"},{"ID":3768,"Name":"TaƄcząc w ciemnoƛciach","Points":9899,"X":502,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409515Z"},{"ID":3769,"Name":"134 Mexico City","Points":9761,"X":478,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409517Z"},{"ID":3770,"Name":"Joms 009","Points":10273,"X":518,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409519Z"},{"ID":3771,"Name":"K44 023","Points":9050,"X":428,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409521Z"},{"ID":3772,"Name":"Wioska barbarzyƄska","Points":10252,"X":534,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409522Z"},{"ID":3773,"Name":"PiekƂo to inni","Points":10160,"X":523,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409524Z"},{"ID":3774,"Name":"0063 b15","Points":10043,"X":454,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409526Z"},{"ID":3775,"Name":"xxx","Points":9879,"X":513,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409528Z"},{"ID":3776,"Name":"+44 63 Caluire et Cuire","Points":10002,"X":431,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409528Z"},{"ID":3777,"Name":"#0086 ChotyƂów","Points":9899,"X":475,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40953Z"},{"ID":3778,"Name":"ADEN","Points":10173,"X":563,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409532Z"},{"ID":3779,"Name":"*INTERTWINED*","Points":8914,"X":475,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409534Z"},{"ID":3780,"Name":"[124]","Points":9760,"X":564,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409535Z"},{"ID":3781,"Name":"kathare","Points":10824,"X":492,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409537Z"},{"ID":3782,"Name":"Gratuluje mĂłzgu","Points":10495,"X":443,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409538Z"},{"ID":3783,"Name":"009. A-RE-SE-EY","Points":10252,"X":579,"Y":526,"Continent":"K55","Bonus":3,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40954Z"},{"ID":3784,"Name":"kathare","Points":10401,"X":492,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409541Z"},{"ID":3785,"Name":"Knowhere","Points":8007,"X":391,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409544Z"},{"ID":3786,"Name":"PRO8L3M","Points":2173,"X":422,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409546Z"},{"ID":3787,"Name":"139","Points":10311,"X":563,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409548Z"},{"ID":3788,"Name":"CALL 997","Points":9971,"X":544,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409548Z"},{"ID":3789,"Name":"*Ateny_16","Points":2987,"X":470,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409552Z"},{"ID":3790,"Name":"197 La Paz","Points":9390,"X":469,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409554Z"},{"ID":3791,"Name":"011","Points":7076,"X":494,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409556Z"},{"ID":3792,"Name":"062.","Points":10252,"X":497,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409556Z"},{"ID":3793,"Name":"085 Nerkowiec","Points":10252,"X":557,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409558Z"},{"ID":3794,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":429,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40956Z"},{"ID":3795,"Name":"115 Niagara Falls","Points":9761,"X":480,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409562Z"},{"ID":3796,"Name":"#0050 Amarena","Points":10235,"X":495,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409562Z"},{"ID":3797,"Name":"#0010 Muflon","Points":10019,"X":490,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409564Z"},{"ID":3798,"Name":"Szlachcic 007","Points":8024,"X":565,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409566Z"},{"ID":3799,"Name":"[064] Omikron","Points":9968,"X":540,"Y":493,"Continent":"K45","Bonus":9,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409568Z"},{"ID":3800,"Name":"Kasyno","Points":10838,"X":450,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409568Z"},{"ID":3801,"Name":"-020-","Points":10479,"X":456,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409574Z"},{"ID":3802,"Name":"SsSs","Points":4313,"X":464,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409575Z"},{"ID":3803,"Name":"Cast Away 010","Points":8500,"X":452,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409578Z"},{"ID":3804,"Name":"yogi","Points":10019,"X":539,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409578Z"},{"ID":3805,"Name":"Osada","Points":8448,"X":503,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409581Z"},{"ID":3806,"Name":"Szlachcic","Points":10237,"X":584,"Y":490,"Continent":"K45","Bonus":6,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409583Z"},{"ID":3807,"Name":"|025|","Points":10303,"X":556,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409585Z"},{"ID":3808,"Name":"005 Fiona","Points":7785,"X":446,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409585Z"},{"ID":3809,"Name":"NOT?","Points":10042,"X":434,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409587Z"},{"ID":3810,"Name":"Szlachcic","Points":10237,"X":467,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409589Z"},{"ID":3811,"Name":"Szlachcic !!!","Points":8915,"X":505,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409591Z"},{"ID":3812,"Name":"Wioska BarbarzyƄska","Points":9060,"X":545,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409591Z"},{"ID":3813,"Name":"A.017","Points":7456,"X":606,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409593Z"},{"ID":3814,"Name":"Fajna 044","Points":6193,"X":458,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409595Z"},{"ID":3815,"Name":"-021-","Points":10479,"X":458,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409597Z"},{"ID":3816,"Name":"JaamMwG 013","Points":9489,"X":522,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409597Z"},{"ID":3817,"Name":"20013","Points":5931,"X":515,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409599Z"},{"ID":3818,"Name":"PiekƂo to inni","Points":10019,"X":511,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409601Z"},{"ID":3819,"Name":"155 Esquipulas","Points":9966,"X":454,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409603Z"},{"ID":3820,"Name":"Wioska 456","Points":10495,"X":582,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409603Z"},{"ID":3821,"Name":"KIELBA 130","Points":10576,"X":443,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409605Z"},{"ID":3822,"Name":"Chatka Hagrida","Points":10237,"X":455,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409607Z"},{"ID":3823,"Name":"ChceszPokojuSzykujSięDoWojny","Points":8259,"X":454,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409609Z"},{"ID":3824,"Name":"Suppi","Points":9554,"X":440,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409609Z"},{"ID":3825,"Name":"005","Points":10495,"X":461,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409612Z"},{"ID":3826,"Name":"ƚmieszkiii","Points":9047,"X":496,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409614Z"},{"ID":3827,"Name":"B066","Points":10495,"X":473,"Y":471,"Continent":"K44","Bonus":2,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409616Z"},{"ID":3828,"Name":"#0031","Points":10495,"X":547,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409617Z"},{"ID":3829,"Name":"[099] KONIEC","Points":8438,"X":538,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409618Z"},{"ID":3830,"Name":"20024","Points":8280,"X":502,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40962Z"},{"ID":3831,"Name":"-046-","Points":10371,"X":461,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409622Z"},{"ID":3832,"Name":". Jameson","Points":9245,"X":423,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409624Z"},{"ID":3833,"Name":"Monetki","Points":10170,"X":483,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409625Z"},{"ID":3834,"Name":".:019:. Chilout","Points":4954,"X":508,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409626Z"},{"ID":3835,"Name":"097. Wioska Sarna","Points":10252,"X":487,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409628Z"},{"ID":3836,"Name":"Sparta_28","Points":9638,"X":488,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40963Z"},{"ID":3837,"Name":"ZasiedmiogĂłrogrĂłd","Points":10040,"X":534,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409631Z"},{"ID":3838,"Name":"7.62 mm","Points":10019,"X":492,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409632Z"},{"ID":3839,"Name":"Lord Arsey KING","Points":10285,"X":581,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409634Z"},{"ID":3840,"Name":"[113] North13","Points":10048,"X":575,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409636Z"},{"ID":3841,"Name":"0009","Points":10328,"X":619,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409636Z"},{"ID":3842,"Name":"Yogi","Points":10019,"X":524,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409638Z"},{"ID":3843,"Name":"OgrĂłd Warzywny","Points":2863,"X":454,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40964Z"},{"ID":3844,"Name":"Wioska 018","Points":9761,"X":592,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409643Z"},{"ID":3845,"Name":"!Wioska 428","Points":10495,"X":563,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409644Z"},{"ID":3846,"Name":"-022-","Points":10479,"X":464,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409646Z"},{"ID":3847,"Name":"032","Points":10495,"X":583,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409647Z"},{"ID":3848,"Name":"Szlachcic","Points":10387,"X":484,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409649Z"},{"ID":3849,"Name":"[191]","Points":8498,"X":544,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40965Z"},{"ID":3850,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409652Z"},{"ID":3851,"Name":"Warzywniak 004","Points":3031,"X":447,"Y":544,"Continent":"K54","Bonus":6,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409654Z"},{"ID":3852,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":451,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409655Z"},{"ID":3853,"Name":"!Wioska 429","Points":10495,"X":564,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409656Z"},{"ID":3854,"Name":"012 Fiona","Points":4974,"X":447,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409658Z"},{"ID":3855,"Name":". PerƂa","Points":4106,"X":425,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40966Z"},{"ID":3856,"Name":"Fajna 033","Points":1834,"X":463,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409661Z"},{"ID":3857,"Name":"Wioska barbarzyƄska","Points":8144,"X":519,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409662Z"},{"ID":3858,"Name":"030","Points":9761,"X":446,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409664Z"},{"ID":3859,"Name":"KONFA TO MARKA, NARKA","Points":10643,"X":444,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409666Z"},{"ID":3860,"Name":"015 Atlantic City","Points":9761,"X":444,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409667Z"},{"ID":3861,"Name":"0100 pantera","Points":10069,"X":465,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409668Z"},{"ID":3862,"Name":"Oltar","Points":3282,"X":440,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40967Z"},{"ID":3863,"Name":"FAKE OR OFF","Points":9842,"X":456,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409672Z"},{"ID":3864,"Name":"Wioska 508","Points":10559,"X":575,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409674Z"},{"ID":3865,"Name":"Gattacka","Points":10019,"X":582,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409675Z"},{"ID":3866,"Name":"042. ALFI","Points":1863,"X":467,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409677Z"},{"ID":3867,"Name":"[180]","Points":9516,"X":547,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409679Z"},{"ID":3868,"Name":"039 - pobite gary","Points":10495,"X":411,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40968Z"},{"ID":3869,"Name":"[144]","Points":9554,"X":555,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409681Z"},{"ID":3871,"Name":"Warzywniak 002","Points":3857,"X":446,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409683Z"},{"ID":3872,"Name":"0015","Points":10495,"X":524,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409685Z"},{"ID":3873,"Name":"016","Points":10042,"X":420,"Y":511,"Continent":"K54","Bonus":8,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409686Z"},{"ID":3874,"Name":"ADEN","Points":10121,"X":564,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409687Z"},{"ID":3875,"Name":"0594","Points":9827,"X":476,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409689Z"},{"ID":3876,"Name":"Konfederacja 8","Points":10001,"X":460,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409691Z"},{"ID":3877,"Name":"xxxx","Points":10495,"X":497,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409692Z"},{"ID":3878,"Name":"Baobab","Points":9835,"X":385,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409693Z"},{"ID":3879,"Name":"?+44 85 Lyon Point du Jour","Points":9860,"X":456,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409695Z"},{"ID":3880,"Name":"9.4 Legancko","Points":10059,"X":545,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409697Z"},{"ID":3881,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409698Z"},{"ID":3882,"Name":"19. Wioska 19","Points":10019,"X":408,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409699Z"},{"ID":3883,"Name":"Brat447","Points":8327,"X":455,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409701Z"},{"ID":3884,"Name":"STAƁKA","Points":4508,"X":451,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409703Z"},{"ID":3885,"Name":"Fajna 089","Points":2346,"X":456,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409708Z"},{"ID":3886,"Name":"yogi","Points":10019,"X":525,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409709Z"},{"ID":3887,"Name":"KONFA TO MARKA, NARKA","Points":10306,"X":449,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409711Z"},{"ID":3888,"Name":"Monetki","Points":10295,"X":474,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409713Z"},{"ID":3889,"Name":"C002","Points":9963,"X":521,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409715Z"},{"ID":3890,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":450,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409715Z"},{"ID":3891,"Name":"045 |","Points":10487,"X":561,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409717Z"},{"ID":3892,"Name":"085 Saint Louis","Points":9761,"X":465,"Y":459,"Continent":"K44","Bonus":8,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409719Z"},{"ID":3893,"Name":"Wioska BarbarzyƄska","Points":10019,"X":542,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409721Z"},{"ID":3894,"Name":"Tranquillo","Points":10032,"X":504,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409721Z"},{"ID":3895,"Name":"Onest","Points":8461,"X":442,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409723Z"},{"ID":3896,"Name":"Pf Konfederacja w","Points":10068,"X":494,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409725Z"},{"ID":3897,"Name":"0062 ~211~ miedziany 3","Points":6925,"X":439,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409726Z"},{"ID":3898,"Name":"ada","Points":2044,"X":463,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409728Z"},{"ID":3899,"Name":"KIELBA 054","Points":10290,"X":455,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409729Z"},{"ID":3900,"Name":"Winter is coming","Points":2048,"X":441,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409731Z"},{"ID":3901,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10019,"X":456,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409733Z"},{"ID":3902,"Name":"!Wioska 507","Points":10495,"X":570,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409735Z"},{"ID":3903,"Name":"125","Points":10311,"X":549,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409735Z"},{"ID":3904,"Name":"ƚmieszkii","Points":9210,"X":511,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409737Z"},{"ID":3905,"Name":"053 Kahului","Points":9761,"X":461,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40974Z"},{"ID":3906,"Name":"Oibar","Points":3660,"X":430,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409742Z"},{"ID":3907,"Name":"013. DziwoĆŒona","Points":10157,"X":513,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409742Z"},{"ID":3908,"Name":"Welll","Points":3080,"X":545,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":849086817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409744Z"},{"ID":3909,"Name":"0045","Points":8086,"X":457,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409746Z"},{"ID":3910,"Name":"Horyzont zdarzeƄ","Points":9835,"X":533,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409748Z"},{"ID":3911,"Name":"CALL 915","Points":10311,"X":556,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409748Z"},{"ID":3912,"Name":"OgrĂłd Warzywny","Points":6424,"X":449,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40975Z"},{"ID":3913,"Name":"Fajna 053","Points":2450,"X":455,"Y":550,"Continent":"K54","Bonus":9,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409752Z"},{"ID":3914,"Name":"Pf Konfederacja","Points":9938,"X":485,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409754Z"},{"ID":3915,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409754Z"},{"ID":3916,"Name":"[063] Lambda","Points":10300,"X":542,"Y":484,"Continent":"K45","Bonus":2,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409756Z"},{"ID":3917,"Name":"|044|","Points":10018,"X":555,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409758Z"},{"ID":3918,"Name":"Szlachcic !!!","Points":10303,"X":486,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40976Z"},{"ID":3919,"Name":"C014","Points":10971,"X":527,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409761Z"},{"ID":3920,"Name":"Wioska 411","Points":10495,"X":577,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409763Z"},{"ID":3921,"Name":"4. Pierdziszewo","Points":10471,"X":544,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409765Z"},{"ID":3922,"Name":"Fajna 031","Points":9179,"X":450,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409767Z"},{"ID":3923,"Name":"NOT?","Points":10042,"X":425,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409767Z"},{"ID":3924,"Name":"Lynortis","Points":12154,"X":463,"Y":532,"Continent":"K54","Bonus":8,"PlayerID":849001724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409769Z"},{"ID":3925,"Name":"014","Points":7618,"X":506,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409772Z"},{"ID":3927,"Name":"KIELBA 115","Points":10039,"X":450,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409774Z"},{"ID":3928,"Name":"B040","Points":10495,"X":473,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409774Z"},{"ID":3929,"Name":"[024] Et mato","Points":10052,"X":586,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409776Z"},{"ID":3930,"Name":"001","Points":5532,"X":587,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":6048627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409778Z"},{"ID":3931,"Name":"Winter is coming","Points":1399,"X":440,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40978Z"},{"ID":3932,"Name":"Suppi","Points":9902,"X":454,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40978Z"},{"ID":3933,"Name":"Wioska barbarzyƄska","Points":2334,"X":445,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409782Z"},{"ID":3934,"Name":"0003","Points":10211,"X":564,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409784Z"},{"ID":3935,"Name":"JaamMwG 022","Points":9806,"X":530,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409786Z"},{"ID":3936,"Name":"[184]","Points":10264,"X":543,"Y":552,"Continent":"K55","Bonus":8,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409786Z"},{"ID":3937,"Name":"ZasiedmiogĂłrogrĂłd","Points":9650,"X":532,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409788Z"},{"ID":3938,"Name":"IQ153","Points":6107,"X":553,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40979Z"},{"ID":3939,"Name":"Wioska barbarzyƄska","Points":9422,"X":475,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409792Z"},{"ID":3940,"Name":"NOT?","Points":10068,"X":433,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409792Z"},{"ID":3941,"Name":"KIELBA 066","Points":10495,"X":470,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409794Z"},{"ID":3942,"Name":"Wioska barbarzyƄska","Points":10019,"X":525,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409796Z"},{"ID":3943,"Name":"0010 K55 and987 OZDR.","Points":9841,"X":504,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409798Z"},{"ID":3944,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9835,"X":454,"Y":513,"Continent":"K54","Bonus":6,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409798Z"},{"ID":3945,"Name":"097 MEHEHE m","Points":10019,"X":493,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4098Z"},{"ID":3946,"Name":"Wioska barbarzyƄska","Points":5839,"X":572,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409803Z"},{"ID":3947,"Name":"Szlachcic","Points":9696,"X":503,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409805Z"},{"ID":3948,"Name":"019. Wioska Zaconek","Points":10252,"X":572,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409806Z"},{"ID":3949,"Name":"Brat447","Points":10490,"X":445,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409808Z"},{"ID":3950,"Name":"001","Points":10285,"X":607,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409809Z"},{"ID":3951,"Name":"OgrĂłd Warzywny","Points":2316,"X":455,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409811Z"},{"ID":3952,"Name":"CALL 1037","Points":9868,"X":548,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409812Z"},{"ID":3953,"Name":"Mzm37","Points":10362,"X":549,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409814Z"},{"ID":3954,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":452,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409815Z"},{"ID":3955,"Name":".achim.","Points":10311,"X":523,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409817Z"},{"ID":3956,"Name":"Szlachcic 062","Points":8288,"X":556,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409818Z"},{"ID":3957,"Name":"JF1","Points":7356,"X":555,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40982Z"},{"ID":3958,"Name":"00634 Widzew","Points":9037,"X":441,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409821Z"},{"ID":3959,"Name":"K44 012","Points":10343,"X":433,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409823Z"},{"ID":3960,"Name":"Pf Konfederacja","Points":9938,"X":488,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409825Z"},{"ID":3962,"Name":"Winter is coming","Points":9976,"X":503,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409825Z"},{"ID":3963,"Name":"011 Fiona","Points":5142,"X":446,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409827Z"},{"ID":3964,"Name":"#0062 LSD","Points":10008,"X":491,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409829Z"},{"ID":3965,"Name":"Szlachcic","Points":7265,"X":501,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409831Z"},{"ID":3966,"Name":"0024","Points":10019,"X":512,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409832Z"},{"ID":3967,"Name":"Wioska BarbarzyƄska","Points":9166,"X":545,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409835Z"},{"ID":3968,"Name":"042","Points":9742,"X":475,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409837Z"},{"ID":3969,"Name":"|046|","Points":10211,"X":558,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409838Z"},{"ID":3970,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9835,"X":454,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409839Z"},{"ID":3971,"Name":"010 Trumnypremium.pl","Points":7634,"X":553,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409844Z"},{"ID":3972,"Name":"Suppi","Points":9584,"X":439,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409846Z"},{"ID":3973,"Name":"amator MO2","Points":10971,"X":536,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409848Z"},{"ID":3974,"Name":"069","Points":10495,"X":552,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409848Z"},{"ID":3975,"Name":"Wioska barbarzyƄska","Points":7400,"X":515,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40985Z"},{"ID":3976,"Name":"K45 002","Points":8403,"X":417,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409852Z"},{"ID":3977,"Name":"[A]_[039] Dejv.oldplyr","Points":10495,"X":416,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409854Z"},{"ID":3978,"Name":"SsSs","Points":10160,"X":453,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409854Z"},{"ID":3979,"Name":"kathare","Points":10362,"X":493,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409856Z"},{"ID":3980,"Name":"023","Points":9007,"X":529,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409858Z"},{"ID":3981,"Name":"MARYLIN","Points":10237,"X":515,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40986Z"},{"ID":3982,"Name":"- 266 -","Points":10000,"X":529,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40986Z"},{"ID":3983,"Name":"~~LatającyHolender~~","Points":10152,"X":561,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409862Z"},{"ID":3984,"Name":"Szlachcic","Points":10311,"X":485,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409864Z"},{"ID":3985,"Name":"Szlachcic","Points":9965,"X":559,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409866Z"},{"ID":3986,"Name":"- 308 -","Points":10000,"X":531,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409867Z"},{"ID":3987,"Name":"[155] North","Points":10411,"X":561,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409869Z"},{"ID":3989,"Name":"xxx","Points":7857,"X":510,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409871Z"},{"ID":3990,"Name":"[112] North12","Points":10161,"X":571,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409873Z"},{"ID":3992,"Name":"014","Points":9761,"X":421,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409874Z"},{"ID":3993,"Name":"0Wioska barbarzyƄska","Points":9968,"X":476,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409876Z"},{"ID":3994,"Name":".achim.","Points":10311,"X":534,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409878Z"},{"ID":3995,"Name":"keepo","Points":10330,"X":482,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409879Z"},{"ID":3996,"Name":".:068:. Chillout","Points":3497,"X":511,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40988Z"},{"ID":3997,"Name":"087 Dziadek do orzechĂłw","Points":10495,"X":541,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409882Z"},{"ID":3998,"Name":"030","Points":10495,"X":536,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409883Z"},{"ID":3999,"Name":"055","Points":10042,"X":426,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409885Z"},{"ID":4000,"Name":"0016|Rzym","Points":9821,"X":508,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409886Z"},{"ID":4002,"Name":"Bulletproof","Points":8480,"X":482,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409888Z"},{"ID":4003,"Name":"Horyzont zdarzeƄ","Points":10019,"X":530,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40989Z"},{"ID":4004,"Name":".:033:. Czosnek","Points":7159,"X":503,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409892Z"},{"ID":4005,"Name":"Monetki","Points":9835,"X":477,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409892Z"},{"ID":4006,"Name":"Os Konfederacja","Points":9822,"X":478,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409894Z"},{"ID":4007,"Name":"keepo","Points":10516,"X":482,"Y":537,"Continent":"K54","Bonus":2,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409896Z"},{"ID":4009,"Name":"K44 x021","Points":6466,"X":459,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409898Z"},{"ID":4010,"Name":"B004","Points":9354,"X":556,"Y":503,"Continent":"K55","Bonus":7,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409898Z"},{"ID":4011,"Name":"~090.","Points":10495,"X":496,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409901Z"},{"ID":4012,"Name":"[190]","Points":9034,"X":544,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409903Z"},{"ID":4013,"Name":"KIELBA 075","Points":10223,"X":469,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409905Z"},{"ID":4014,"Name":"PiekƂo to inni","Points":5684,"X":512,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409905Z"},{"ID":4015,"Name":"Konfiasze","Points":10971,"X":474,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409907Z"},{"ID":4016,"Name":"...Just like that","Points":7116,"X":461,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409909Z"},{"ID":4017,"Name":"Suppi","Points":9984,"X":439,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409911Z"},{"ID":4018,"Name":"Sparta_53","Points":9638,"X":477,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409911Z"},{"ID":4019,"Name":"NOT?","Points":8123,"X":431,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409913Z"},{"ID":4020,"Name":"7.62 mm","Points":10019,"X":470,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409915Z"},{"ID":4021,"Name":"0114","Points":8169,"X":468,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409917Z"},{"ID":4022,"Name":"Sparta_43","Points":9638,"X":482,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409917Z"},{"ID":4023,"Name":"0022","Points":10495,"X":519,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409919Z"},{"ID":4024,"Name":"186 Barquisimeto","Points":9761,"X":465,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409921Z"},{"ID":4025,"Name":"027. Wioska Loalanek","Points":10252,"X":564,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409923Z"},{"ID":4026,"Name":"JaamMwG 024","Points":8634,"X":531,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409923Z"},{"ID":4027,"Name":"Qusz","Points":9761,"X":420,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409925Z"},{"ID":4028,"Name":"Monetki","Points":10294,"X":484,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409927Z"},{"ID":4029,"Name":"[119] North19","Points":10047,"X":571,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409929Z"},{"ID":4030,"Name":"Osada","Points":10291,"X":494,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409932Z"},{"ID":4031,"Name":"Napewno to nie jest off","Points":10495,"X":513,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409932Z"},{"ID":4032,"Name":"NOT?","Points":10042,"X":425,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409934Z"},{"ID":4033,"Name":"005","Points":9744,"X":571,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409936Z"},{"ID":4034,"Name":"yogi","Points":10019,"X":538,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409938Z"},{"ID":4035,"Name":"Suppi","Points":9580,"X":439,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409938Z"},{"ID":4036,"Name":"Wioska 435","Points":10495,"X":572,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40994Z"},{"ID":4037,"Name":"Wioska 402","Points":10495,"X":559,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409942Z"},{"ID":4038,"Name":"016","Points":9312,"X":492,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409944Z"},{"ID":4039,"Name":"041.","Points":10316,"X":504,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409945Z"},{"ID":4040,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":567,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409946Z"},{"ID":4041,"Name":"Gravity","Points":9506,"X":404,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409948Z"},{"ID":4042,"Name":"FULL DEFF","Points":7987,"X":544,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40995Z"},{"ID":4043,"Name":"Yogi","Points":10019,"X":525,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409951Z"},{"ID":4044,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3753,"X":459,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409952Z"},{"ID":4045,"Name":"P Konfederacja","Points":9484,"X":456,"Y":442,"Continent":"K44","Bonus":5,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409954Z"},{"ID":4046,"Name":"-[017]- Himalchuli","Points":6844,"X":549,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409956Z"},{"ID":4047,"Name":"PiekƂo to inni","Points":9854,"X":507,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409957Z"},{"ID":4048,"Name":"00701","Points":5439,"X":452,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409958Z"},{"ID":4049,"Name":"Wioska superpuszka","Points":6419,"X":581,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40996Z"},{"ID":4050,"Name":"20010","Points":8583,"X":516,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409963Z"},{"ID":4051,"Name":"038","Points":8864,"X":552,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409964Z"},{"ID":4052,"Name":"025","Points":9742,"X":528,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409966Z"},{"ID":4053,"Name":"0.Oklahoma","Points":9974,"X":520,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409968Z"},{"ID":4054,"Name":"049","Points":9744,"X":527,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409969Z"},{"ID":4055,"Name":"Sparta_39","Points":9638,"X":483,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40997Z"},{"ID":4056,"Name":".054.","Points":6774,"X":507,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409972Z"},{"ID":4057,"Name":"NOT?","Points":8075,"X":431,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409973Z"},{"ID":4058,"Name":"[158]","Points":6633,"X":538,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409978Z"},{"ID":4059,"Name":"7.62 mm","Points":10019,"X":499,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409979Z"},{"ID":4060,"Name":"A027","Points":10495,"X":496,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409981Z"},{"ID":4061,"Name":"Monetki","Points":10291,"X":481,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409983Z"},{"ID":4062,"Name":"-[029]- Kamet","Points":7410,"X":558,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409984Z"},{"ID":4063,"Name":"NOT?","Points":10042,"X":428,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409985Z"},{"ID":4064,"Name":"Erena","Points":1451,"X":458,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409987Z"},{"ID":4065,"Name":"014 Wierzbno","Points":4712,"X":537,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409988Z"},{"ID":4066,"Name":"W.181/21","Points":10242,"X":611,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.40999Z"},{"ID":4067,"Name":".:013:. Wilk","Points":9989,"X":508,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409991Z"},{"ID":4068,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":567,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409993Z"},{"ID":4069,"Name":"yogi","Points":10019,"X":491,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409994Z"},{"ID":4070,"Name":"012","Points":10311,"X":576,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409997Z"},{"ID":4071,"Name":"008 Fuchsia City","Points":11109,"X":591,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.409998Z"},{"ID":4072,"Name":"X01","Points":12154,"X":560,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.41Z"},{"ID":4073,"Name":"kek","Points":10252,"X":538,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410002Z"},{"ID":4074,"Name":"037","Points":9761,"X":542,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410003Z"},{"ID":4076,"Name":"C021","Points":10728,"X":523,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410004Z"},{"ID":4077,"Name":"NOT?","Points":8865,"X":463,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410006Z"},{"ID":4078,"Name":"ƚmieszkii","Points":9011,"X":512,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410008Z"},{"ID":4079,"Name":"Osada","Points":9637,"X":495,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410009Z"},{"ID":4080,"Name":"Wioska (033)","Points":9838,"X":573,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.41001Z"},{"ID":4081,"Name":"B010","Points":10019,"X":536,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410012Z"},{"ID":4082,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":413,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410014Z"},{"ID":4083,"Name":"F042","Points":8651,"X":488,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410016Z"},{"ID":4084,"Name":"031","Points":10838,"X":591,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410016Z"},{"ID":4085,"Name":"Szlachcic","Points":10237,"X":577,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410018Z"},{"ID":4086,"Name":"STOLICA DMK","Points":8127,"X":401,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":6892517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.41002Z"},{"ID":4087,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":443,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410022Z"},{"ID":4088,"Name":"xxx","Points":10495,"X":494,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410022Z"},{"ID":4089,"Name":"Wioska barbarzyƄska","Points":9720,"X":463,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410024Z"},{"ID":4090,"Name":"Wioska barbarzyƄska","Points":10008,"X":431,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410026Z"},{"ID":4091,"Name":".:034:. Papryczka","Points":8540,"X":510,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410029Z"},{"ID":4092,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":440,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.41003Z"},{"ID":4093,"Name":"(032)","Points":10075,"X":418,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410031Z"},{"ID":4094,"Name":"Tank 009. Za garƛć dolarĂłw","Points":9362,"X":399,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410033Z"},{"ID":4095,"Name":"007","Points":9720,"X":556,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410035Z"},{"ID":4096,"Name":"043","Points":9753,"X":425,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410037Z"},{"ID":4097,"Name":"AbacadA 012","Points":9924,"X":567,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410037Z"},{"ID":4098,"Name":"?+44 76 Baincthun","Points":9844,"X":468,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410039Z"},{"ID":4099,"Name":"90k$ Grvvyq","Points":10495,"X":561,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410041Z"},{"ID":4100,"Name":"0024 K55 and987 OZDR.","Points":9850,"X":505,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410043Z"},{"ID":4101,"Name":"0049","Points":10095,"X":457,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410044Z"},{"ID":4102,"Name":"Szlachcic","Points":10292,"X":489,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410046Z"},{"ID":4103,"Name":"Wembley","Points":10845,"X":620,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410048Z"},{"ID":4104,"Name":"-023-","Points":10479,"X":461,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410049Z"},{"ID":4105,"Name":"Monetki","Points":10292,"X":478,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.41005Z"},{"ID":4106,"Name":"006","Points":10019,"X":582,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410052Z"},{"ID":4107,"Name":"COUSINS...,....","Points":10295,"X":474,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410054Z"},{"ID":4108,"Name":"Monetki ???","Points":10292,"X":481,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410055Z"},{"ID":4109,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410056Z"},{"ID":4110,"Name":"30006","Points":9114,"X":487,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410058Z"},{"ID":4111,"Name":"Szlachcic","Points":10029,"X":565,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410061Z"},{"ID":4112,"Name":"Wioska barbarzyƄska","Points":10152,"X":464,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410063Z"},{"ID":4113,"Name":"Fajna005","Points":3436,"X":453,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410063Z"},{"ID":4114,"Name":"031","Points":9744,"X":521,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410065Z"},{"ID":4115,"Name":"021. Wioska Krystiano242","Points":10252,"X":570,"Y":507,"Continent":"K55","Bonus":9,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410067Z"},{"ID":4116,"Name":"Domek 1 *","Points":8616,"X":545,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410069Z"},{"ID":4117,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":430,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410069Z"},{"ID":4119,"Name":"yogi","Points":10019,"X":502,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410071Z"},{"ID":4120,"Name":"060 San Jose","Points":9761,"X":458,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410073Z"},{"ID":4121,"Name":"K45 - 007","Points":9841,"X":562,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410075Z"},{"ID":4122,"Name":"Brat447","Points":10476,"X":440,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410075Z"},{"ID":4123,"Name":"Szlachcic","Points":10237,"X":467,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410077Z"},{"ID":4124,"Name":"#Shellder","Points":10362,"X":563,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410079Z"},{"ID":4125,"Name":"Wioska barbarzyƄska","Points":2212,"X":458,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410081Z"},{"ID":4126,"Name":"Monetki","Points":10295,"X":487,"Y":434,"Continent":"K44","Bonus":2,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410081Z"},{"ID":4128,"Name":"189 Cuzco","Points":9761,"X":463,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410083Z"},{"ID":4129,"Name":"7.62 mm","Points":10019,"X":477,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410085Z"},{"ID":4130,"Name":"Baza2","Points":10285,"X":430,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410087Z"},{"ID":4131,"Name":"*Ateny_14","Points":9638,"X":471,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410087Z"},{"ID":4132,"Name":"0187","Points":8721,"X":466,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410089Z"},{"ID":4133,"Name":"004","Points":10008,"X":445,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410092Z"},{"ID":4134,"Name":"|065|Ooo","Points":6894,"X":569,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.410094Z"},{"ID":4135,"Name":"87k$ Grvvyq","Points":8834,"X":542,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440356Z"},{"ID":4136,"Name":"003","Points":10273,"X":566,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440359Z"},{"ID":4137,"Name":"Daleko 006","Points":8013,"X":477,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440361Z"},{"ID":4138,"Name":"Amator","Points":11321,"X":522,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440363Z"},{"ID":4139,"Name":"Sparta_44","Points":9638,"X":485,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440365Z"},{"ID":4140,"Name":"K45 - 008","Points":10495,"X":563,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440365Z"},{"ID":4141,"Name":"Mniejsze zƂo 0050","Points":6463,"X":421,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440367Z"},{"ID":4142,"Name":"3. Gnojowice","Points":10471,"X":549,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440369Z"},{"ID":4143,"Name":"- 116 -","Points":10000,"X":548,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440371Z"},{"ID":4144,"Name":"A#035#","Points":11383,"X":424,"Y":479,"Continent":"K44","Bonus":3,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440372Z"},{"ID":4145,"Name":"Szlachcic","Points":9980,"X":494,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440373Z"},{"ID":4146,"Name":"Wioska barbarzyƄska","Points":6137,"X":539,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440375Z"},{"ID":4147,"Name":"Sparta_37","Points":9638,"X":478,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440377Z"},{"ID":4149,"Name":"002","Points":10252,"X":530,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440378Z"},{"ID":4150,"Name":"7.62 mm","Points":10019,"X":489,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44038Z"},{"ID":4151,"Name":"KoƄczyć czas:)","Points":6663,"X":552,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440382Z"},{"ID":4152,"Name":"Front_03","Points":5417,"X":460,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440385Z"},{"ID":4153,"Name":"Deff stop, chyba ĆŒe dla ryca exp","Points":9835,"X":490,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440385Z"},{"ID":4154,"Name":"Gravity","Points":9505,"X":423,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440387Z"},{"ID":4156,"Name":"07 | Twoja stara wioska","Points":9887,"X":544,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440389Z"},{"ID":4157,"Name":"Pf Konfederacja","Points":10178,"X":494,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440391Z"},{"ID":4158,"Name":"Osada","Points":10292,"X":496,"Y":441,"Continent":"K44","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440391Z"},{"ID":4159,"Name":"Fajna 019","Points":5849,"X":449,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440393Z"},{"ID":4160,"Name":"049.","Points":10252,"X":501,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440395Z"},{"ID":4161,"Name":"076.","Points":10252,"X":499,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440397Z"},{"ID":4162,"Name":"048.","Points":10485,"X":499,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440397Z"},{"ID":4163,"Name":"ADEN","Points":8163,"X":561,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440399Z"},{"ID":4164,"Name":"001","Points":10495,"X":555,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440401Z"},{"ID":4165,"Name":"#0089 Brzeƛć","Points":10146,"X":476,"Y":556,"Continent":"K54","Bonus":3,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440403Z"},{"ID":4166,"Name":"Merhet","Points":10228,"X":522,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440404Z"},{"ID":4167,"Name":"Wioska barbarzyƄska","Points":10252,"X":539,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440405Z"},{"ID":4168,"Name":"054","Points":9761,"X":448,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440407Z"},{"ID":4169,"Name":"081.","Points":10330,"X":567,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440409Z"},{"ID":4170,"Name":"049","Points":9750,"X":432,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44041Z"},{"ID":4171,"Name":"0080","Points":3942,"X":463,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440412Z"},{"ID":4172,"Name":"- 033 -","Points":10000,"X":535,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440413Z"},{"ID":4173,"Name":"P Konfederacja 8","Points":10336,"X":457,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440417Z"},{"ID":4174,"Name":"Szlachcic !!!","Points":9701,"X":504,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440417Z"},{"ID":4175,"Name":"Omali","Points":3955,"X":435,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440419Z"},{"ID":4176,"Name":"ZostaƂem Krabem","Points":10005,"X":469,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440421Z"},{"ID":4177,"Name":"0063 1","Points":10478,"X":451,"Y":431,"Continent":"K44","Bonus":2,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440423Z"},{"ID":4178,"Name":"ƚmieszkii","Points":9835,"X":510,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440423Z"},{"ID":4179,"Name":"Wioska barbarzyƄska","Points":5355,"X":486,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440425Z"},{"ID":4180,"Name":"Sparta_68","Points":9261,"X":489,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440427Z"},{"ID":4181,"Name":"025. ALFI","Points":1870,"X":484,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440429Z"},{"ID":4182,"Name":"ZasiedmiogĂłrogrĂłd","Points":9367,"X":537,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440429Z"},{"ID":4183,"Name":"Fajna 034","Points":1765,"X":462,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440432Z"},{"ID":4184,"Name":"044 |","Points":9953,"X":557,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440433Z"},{"ID":4185,"Name":"043","Points":10129,"X":421,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440435Z"},{"ID":4186,"Name":"NOT?","Points":10042,"X":425,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440436Z"},{"ID":4187,"Name":"018","Points":8490,"X":531,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440438Z"},{"ID":4188,"Name":"SsSs","Points":9860,"X":452,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440439Z"},{"ID":4189,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":427,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440441Z"},{"ID":4190,"Name":"Propion4t","Points":9966,"X":623,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440442Z"},{"ID":4191,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":439,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440444Z"},{"ID":4192,"Name":"03. C1F","Points":12154,"X":473,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440445Z"},{"ID":4193,"Name":"#0120 ƁabaƂbaƂ","Points":8510,"X":477,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440449Z"},{"ID":4194,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":389,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440449Z"},{"ID":4195,"Name":"- 092 -","Points":10000,"X":539,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440451Z"},{"ID":4196,"Name":"ZasiedmiogĂłrogrĂłd","Points":6163,"X":532,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440453Z"},{"ID":4197,"Name":"Joms 015","Points":10036,"X":530,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440455Z"},{"ID":4198,"Name":"|011|","Points":10178,"X":559,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440455Z"},{"ID":4199,"Name":"Yogi","Points":10019,"X":504,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440457Z"},{"ID":4200,"Name":"?+44 86 Jons","Points":9841,"X":460,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440459Z"},{"ID":4201,"Name":"114.","Points":9498,"X":534,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440461Z"},{"ID":4202,"Name":"Wioska Pitter82","Points":10252,"X":478,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440463Z"},{"ID":4203,"Name":"~~LatającyHolender~~","Points":9288,"X":562,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440463Z"},{"ID":4204,"Name":"002","Points":10042,"X":411,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440465Z"},{"ID":4205,"Name":"Aleartis","Points":9711,"X":480,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440467Z"},{"ID":4206,"Name":"Eldorado!","Points":9899,"X":498,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440469Z"},{"ID":4207,"Name":"174 Cordoba","Points":9761,"X":480,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44047Z"},{"ID":4208,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":433,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440472Z"},{"ID":4209,"Name":"P Konfederacja","Points":9202,"X":475,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440477Z"},{"ID":4210,"Name":"[102] North2","Points":10054,"X":574,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440478Z"},{"ID":4211,"Name":"009","Points":10311,"X":567,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440479Z"},{"ID":4212,"Name":"027. Alkanost","Points":9653,"X":510,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440481Z"},{"ID":4214,"Name":"066 |","Points":9938,"X":565,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440484Z"},{"ID":4215,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440486Z"},{"ID":4216,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":427,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440486Z"},{"ID":4217,"Name":"WIEĆ»A GRANICZNA","Points":10409,"X":537,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440488Z"},{"ID":4218,"Name":"Zadzwonię do Ciebie !","Points":10160,"X":500,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44049Z"},{"ID":4219,"Name":"0184","Points":9328,"X":475,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440492Z"},{"ID":4220,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":443,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440492Z"},{"ID":4221,"Name":"K44 007","Points":5520,"X":421,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440494Z"},{"ID":4222,"Name":"CALL 1019","Points":10311,"X":543,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440496Z"},{"ID":4223,"Name":"Horyzont zdarzeƄ","Points":9835,"X":527,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440498Z"},{"ID":4224,"Name":"Wioska barbarzyƄska","Points":2654,"X":457,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440498Z"},{"ID":4225,"Name":"005. Cintra","Points":10495,"X":564,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4405Z"},{"ID":4226,"Name":"Szlachcic","Points":10237,"X":466,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440502Z"},{"ID":4228,"Name":"Brat447","Points":10481,"X":445,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440504Z"},{"ID":4229,"Name":".achim.","Points":10311,"X":536,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440504Z"},{"ID":4230,"Name":"Prawo ponad prawem!","Points":9835,"X":493,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440506Z"},{"ID":4231,"Name":"Wioska BarbarzyƄska","Points":9449,"X":547,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440508Z"},{"ID":4232,"Name":"P.006","Points":9807,"X":540,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44051Z"},{"ID":4233,"Name":"Monetki","Points":10291,"X":477,"Y":414,"Continent":"K44","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44051Z"},{"ID":4234,"Name":"Twierdza 001","Points":10171,"X":421,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440512Z"},{"ID":4235,"Name":"023","Points":7371,"X":548,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440515Z"},{"ID":4236,"Name":"NOT FOR YOU","Points":5954,"X":456,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440517Z"},{"ID":4237,"Name":"[097]","Points":10068,"X":538,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440518Z"},{"ID":4238,"Name":"0173","Points":10004,"X":471,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440519Z"},{"ID":4239,"Name":"015","Points":9761,"X":420,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440521Z"},{"ID":4240,"Name":"B011","Points":10061,"X":488,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440523Z"},{"ID":4241,"Name":"ATENY","Points":10008,"X":474,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440524Z"},{"ID":4242,"Name":"Szlachcic","Points":9335,"X":560,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440525Z"},{"ID":4243,"Name":"Akademia Bogactwa","Points":10160,"X":550,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440527Z"},{"ID":4245,"Name":"-12-","Points":10971,"X":589,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440529Z"},{"ID":4246,"Name":"NOT?","Points":10042,"X":433,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44053Z"},{"ID":4247,"Name":"Wioska BarbarzyƄska","Points":10019,"X":548,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440532Z"},{"ID":4249,"Name":"ladyanima","Points":9223,"X":509,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440533Z"},{"ID":4251,"Name":"Fajna 003","Points":9163,"X":450,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440535Z"},{"ID":4252,"Name":"Szlachcic","Points":10237,"X":578,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440536Z"},{"ID":4253,"Name":"Yuppi","Points":9601,"X":454,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440538Z"},{"ID":4254,"Name":"Szlachcic 050","Points":9338,"X":567,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44054Z"},{"ID":4255,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":426,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440541Z"},{"ID":4256,"Name":"Wioska","Points":10178,"X":385,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440542Z"},{"ID":4257,"Name":"CALL 1054","Points":10559,"X":520,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440544Z"},{"ID":4258,"Name":"ChceszPokojuSzykujSięDoWojny","Points":5185,"X":462,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440547Z"},{"ID":4259,"Name":"Mniejsze zƂo 0008","Points":9708,"X":391,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440549Z"},{"ID":4260,"Name":"Mniejsze zƂo 0063","Points":8246,"X":420,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440549Z"},{"ID":4261,"Name":"Ikona*","Points":10142,"X":394,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440551Z"},{"ID":4262,"Name":"Szlachcic !!!","Points":10311,"X":494,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440553Z"},{"ID":4263,"Name":"X09","Points":2284,"X":531,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440555Z"},{"ID":4264,"Name":".:116:. Niangmen","Points":9825,"X":513,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440555Z"},{"ID":4265,"Name":"KIELBA 064","Points":10273,"X":470,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440557Z"},{"ID":4266,"Name":"Fajna 070","Points":7904,"X":454,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440559Z"},{"ID":4267,"Name":"MORIA F","Points":10817,"X":540,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440561Z"},{"ID":4268,"Name":"xxx","Points":10495,"X":504,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440561Z"},{"ID":4269,"Name":"059. ALFI","Points":1066,"X":484,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440563Z"},{"ID":4270,"Name":"NOT?","Points":2257,"X":435,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440565Z"},{"ID":4271,"Name":"Oreo","Points":3940,"X":439,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440567Z"},{"ID":4272,"Name":"Wawrzyniak 017","Points":2318,"X":450,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440569Z"},{"ID":4273,"Name":"Kasyno","Points":10237,"X":449,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44057Z"},{"ID":4274,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":425,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440572Z"},{"ID":4275,"Name":"212 New Delhi","Points":6813,"X":472,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440574Z"},{"ID":4276,"Name":"Jaaa","Points":10495,"X":586,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440576Z"},{"ID":4277,"Name":"NOT?","Points":10042,"X":433,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440577Z"},{"ID":4279,"Name":"*INTERTWINED*","Points":9711,"X":476,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44058Z"},{"ID":4280,"Name":"-----------------3","Points":10362,"X":460,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440582Z"},{"ID":4281,"Name":"NIERAJ07","Points":5605,"X":442,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699859013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440584Z"},{"ID":4282,"Name":"024","Points":3021,"X":464,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440584Z"},{"ID":4283,"Name":"Szlachcic","Points":10478,"X":486,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440586Z"},{"ID":4284,"Name":"0033","Points":5295,"X":556,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440588Z"},{"ID":4285,"Name":"153 MIKOX 054","Points":10001,"X":591,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44059Z"},{"ID":4286,"Name":"Monetki","Points":10295,"X":482,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440591Z"},{"ID":4287,"Name":"20008","Points":7633,"X":519,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440593Z"},{"ID":4288,"Name":"053 |","Points":10311,"X":555,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440595Z"},{"ID":4289,"Name":"Szlachcic","Points":9721,"X":564,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440596Z"},{"ID":4290,"Name":"CALL 958","Points":10311,"X":543,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440597Z"},{"ID":4291,"Name":"012 Moab","Points":9761,"X":438,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440599Z"},{"ID":4292,"Name":"055. ALFI","Points":1997,"X":485,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440601Z"},{"ID":4293,"Name":"Belvedere 001","Points":10290,"X":579,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440602Z"},{"ID":4294,"Name":"055.","Points":10252,"X":510,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440603Z"},{"ID":4295,"Name":"Szlachcic","Points":9771,"X":561,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440605Z"},{"ID":4296,"Name":"P.002","Points":9964,"X":532,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440607Z"},{"ID":4297,"Name":"~~LatającyHolender~~","Points":10143,"X":581,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440609Z"},{"ID":4298,"Name":"s181eo17","Points":9966,"X":399,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440609Z"},{"ID":4299,"Name":"F052","Points":8493,"X":483,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440616Z"},{"ID":4300,"Name":"Joms 024","Points":9924,"X":529,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440617Z"},{"ID":4301,"Name":"- 302 -","Points":10000,"X":528,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440619Z"},{"ID":4302,"Name":"Domek 3","Points":9750,"X":547,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44062Z"},{"ID":4303,"Name":".:006:.Chillout","Points":8065,"X":511,"Y":443,"Continent":"K45","Bonus":4,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440622Z"},{"ID":4304,"Name":"LEGION_2","Points":4280,"X":553,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":6101033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440624Z"},{"ID":4305,"Name":"Fajna009","Points":1721,"X":464,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440625Z"},{"ID":4306,"Name":"PARA","Points":9286,"X":475,"Y":581,"Continent":"K54","Bonus":6,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440626Z"},{"ID":4307,"Name":"Szlachcic !!!","Points":6421,"X":514,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440628Z"},{"ID":4308,"Name":"Wioska BarbarzyƄska","Points":8923,"X":547,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44063Z"},{"ID":4309,"Name":"009 HEAVY","Points":9113,"X":555,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440632Z"},{"ID":4310,"Name":"[187]","Points":9885,"X":537,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440632Z"},{"ID":4311,"Name":"amator","Points":11550,"X":527,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440634Z"},{"ID":4312,"Name":".achim.","Points":10654,"X":530,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440636Z"},{"ID":4313,"Name":".achim.","Points":6878,"X":534,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440638Z"},{"ID":4314,"Name":"Osada","Points":9637,"X":497,"Y":443,"Continent":"K44","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440638Z"},{"ID":4315,"Name":"!Snorlax","Points":7795,"X":570,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44064Z"},{"ID":4316,"Name":"Fajna 050","Points":2348,"X":452,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440642Z"},{"ID":4317,"Name":"039 St. George","Points":9761,"X":446,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440643Z"},{"ID":4318,"Name":"xxx","Points":10495,"X":486,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440644Z"},{"ID":4319,"Name":"Wioska BarbarzyƄska","Points":9593,"X":547,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440647Z"},{"ID":4320,"Name":"Sas","Points":10019,"X":511,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440649Z"},{"ID":4321,"Name":"keepo","Points":12154,"X":475,"Y":509,"Continent":"K54","Bonus":8,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440651Z"},{"ID":4322,"Name":"merkus 73","Points":10400,"X":429,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440651Z"},{"ID":4323,"Name":"OsaDavout","Points":5963,"X":451,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440653Z"},{"ID":4324,"Name":"Winter is coming","Points":1296,"X":441,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440655Z"},{"ID":4325,"Name":"012 | Lord Arsey - Konfederacji","Points":10090,"X":567,"Y":553,"Continent":"K55","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440657Z"},{"ID":4326,"Name":"Cast Away 022","Points":4232,"X":440,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440657Z"},{"ID":4327,"Name":"019","Points":10036,"X":536,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848930111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440659Z"},{"ID":4328,"Name":"Pf Konfederacja w","Points":10311,"X":487,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440661Z"},{"ID":4329,"Name":"Szlachcic","Points":9690,"X":492,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440663Z"},{"ID":4330,"Name":"Ręcznik do zmiany","Points":10083,"X":417,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440663Z"},{"ID":4331,"Name":"JaamMwG 004","Points":9084,"X":526,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440665Z"},{"ID":4332,"Name":"BETI 009","Points":1795,"X":461,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440667Z"},{"ID":4333,"Name":"Fresio","Points":9808,"X":449,"Y":445,"Continent":"K44","Bonus":2,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440669Z"},{"ID":4334,"Name":"Village","Points":12154,"X":505,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44067Z"},{"ID":4335,"Name":"Pf Konfederacja","Points":9726,"X":491,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440671Z"},{"ID":4336,"Name":"SsSs","Points":8884,"X":422,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440673Z"},{"ID":4337,"Name":"007","Points":7513,"X":556,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440675Z"},{"ID":4338,"Name":"001 | B. Moon l Black E.","Points":9959,"X":562,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440678Z"},{"ID":4339,"Name":"Taran","Points":10237,"X":580,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440679Z"},{"ID":4340,"Name":"Szlachcic 041","Points":9338,"X":567,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440681Z"},{"ID":4341,"Name":"SPARTA_66","Points":8969,"X":485,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440683Z"},{"ID":4342,"Name":"Szlachcic","Points":10311,"X":485,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440684Z"},{"ID":4343,"Name":"- 096 -","Points":10000,"X":544,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440685Z"},{"ID":4344,"Name":"Suppi","Points":9570,"X":469,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440687Z"},{"ID":4345,"Name":"White widow","Points":8845,"X":401,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440689Z"},{"ID":4346,"Name":"060 Estonia","Points":10495,"X":574,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44069Z"},{"ID":4347,"Name":"Village","Points":12154,"X":518,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440691Z"},{"ID":4348,"Name":"01*","Points":7111,"X":564,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440693Z"},{"ID":4349,"Name":"108 St Johns","Points":9761,"X":473,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440695Z"},{"ID":4350,"Name":"- 309 -","Points":10000,"X":524,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440696Z"},{"ID":4351,"Name":"-[024]- Chomo Lonzo","Points":7605,"X":559,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440697Z"},{"ID":4352,"Name":"F004","Points":9761,"X":509,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440699Z"},{"ID":4353,"Name":"...Just like that","Points":10452,"X":456,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440701Z"},{"ID":4354,"Name":"0005","Points":9961,"X":449,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440702Z"},{"ID":4355,"Name":"xxx","Points":10495,"X":486,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440703Z"},{"ID":4356,"Name":"#0118 Jupiter","Points":10083,"X":499,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440705Z"},{"ID":4357,"Name":"P Konfederacja","Points":9463,"X":455,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440707Z"},{"ID":4358,"Name":"Winter is coming","Points":10311,"X":506,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44071Z"},{"ID":4359,"Name":"x01","Points":10067,"X":544,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44071Z"},{"ID":4360,"Name":"[108] North8","Points":9975,"X":571,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440712Z"},{"ID":4361,"Name":"009. Nocnica","Points":10160,"X":497,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440714Z"},{"ID":4362,"Name":"x04","Points":10018,"X":549,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440716Z"},{"ID":4363,"Name":"CALL 1082","Points":10495,"X":540,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440716Z"},{"ID":4364,"Name":"Fajna 049","Points":945,"X":454,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440718Z"},{"ID":4365,"Name":"Wioska BarbarzyƄska","Points":10019,"X":548,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44072Z"},{"ID":4366,"Name":"Joms 039","Points":9297,"X":532,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440722Z"},{"ID":4367,"Name":"Sparta_23","Points":9638,"X":496,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440722Z"},{"ID":4368,"Name":"Wioska barbarzyƄska","Points":5024,"X":455,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440724Z"},{"ID":4369,"Name":"~030.","Points":10495,"X":476,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440726Z"},{"ID":4370,"Name":"Szlachcic","Points":9899,"X":492,"Y":459,"Continent":"K44","Bonus":4,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440728Z"},{"ID":4371,"Name":"Szlachcic","Points":10237,"X":457,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440728Z"},{"ID":4372,"Name":"New York","Points":10285,"X":425,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44073Z"},{"ID":4373,"Name":"Winter is coming","Points":10075,"X":503,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440732Z"},{"ID":4374,"Name":"027","Points":9744,"X":567,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440734Z"},{"ID":4375,"Name":"PRO8L3M","Points":9835,"X":420,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440734Z"},{"ID":4376,"Name":"Front_15","Points":5593,"X":459,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440737Z"},{"ID":4377,"Name":"x B002","Points":10345,"X":392,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440739Z"},{"ID":4378,"Name":"001","Points":10019,"X":585,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440741Z"},{"ID":4379,"Name":"ChceszPokojuSzykujSięDoWojny","Points":11487,"X":467,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440742Z"},{"ID":4380,"Name":"xxx","Points":10971,"X":512,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440744Z"},{"ID":4381,"Name":"011. PóƂnocnica","Points":9761,"X":505,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440746Z"},{"ID":4382,"Name":"P.007Z","Points":10203,"X":509,"Y":559,"Continent":"K55","Bonus":1,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44075Z"},{"ID":4383,"Name":"Wioska barbarzyƄska","Points":10201,"X":436,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440751Z"},{"ID":4384,"Name":"Kasyno","Points":9902,"X":440,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440753Z"},{"ID":4385,"Name":"Fajna 087","Points":1733,"X":457,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440755Z"},{"ID":4386,"Name":"Ręcznik do zmiany","Points":10019,"X":421,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440756Z"},{"ID":4387,"Name":"Kasyno","Points":10337,"X":445,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440757Z"},{"ID":4388,"Name":"001","Points":10252,"X":530,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440759Z"},{"ID":4389,"Name":"018","Points":8019,"X":490,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440761Z"},{"ID":4390,"Name":"023","Points":10135,"X":529,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440762Z"},{"ID":4391,"Name":"Pf Konfederacja","Points":9933,"X":493,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440763Z"},{"ID":4392,"Name":"- 036 -","Points":10000,"X":533,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440765Z"},{"ID":4393,"Name":"006. ALFI","Points":2118,"X":484,"Y":573,"Continent":"K54","Bonus":4,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440767Z"},{"ID":4394,"Name":"Offline","Points":10495,"X":503,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440769Z"},{"ID":4395,"Name":"Wioska Kermej","Points":7474,"X":537,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440769Z"},{"ID":4396,"Name":"Wioska barbarzyƄska","Points":9135,"X":510,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440771Z"},{"ID":4397,"Name":"Winter is coming","Points":4648,"X":442,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440773Z"},{"ID":4398,"Name":"Osada","Points":8561,"X":500,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440776Z"},{"ID":4399,"Name":"Yogi","Points":10160,"X":532,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440777Z"},{"ID":4400,"Name":"Rilonia","Points":5371,"X":514,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440778Z"},{"ID":4401,"Name":"Szlachcic 052","Points":9338,"X":571,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44078Z"},{"ID":4402,"Name":"[095]","Points":11391,"X":539,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440782Z"},{"ID":4403,"Name":"[072] Noqtlok","Points":10178,"X":528,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440784Z"},{"ID":4404,"Name":"Wioska barbarzyƄska","Points":9345,"X":512,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440784Z"},{"ID":4405,"Name":".achim.","Points":12154,"X":533,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440786Z"},{"ID":4406,"Name":"[121] North21","Points":10051,"X":571,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440788Z"},{"ID":4407,"Name":"Szlachcic","Points":9721,"X":565,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44079Z"},{"ID":4408,"Name":"015. ALFI","Points":2559,"X":483,"Y":568,"Continent":"K54","Bonus":1,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440791Z"},{"ID":4409,"Name":"PRO8L3M","Points":7978,"X":468,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440792Z"},{"ID":4410,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":440,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440794Z"},{"ID":4411,"Name":"B017","Points":10495,"X":485,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440796Z"},{"ID":4412,"Name":"Brat447","Points":10479,"X":418,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440797Z"},{"ID":4413,"Name":"Suppi","Points":9670,"X":444,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440799Z"},{"ID":4414,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":445,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4408Z"},{"ID":4415,"Name":"Jehu_Kingdom_30_","Points":9993,"X":586,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440802Z"},{"ID":4416,"Name":"Sparta_29","Points":9638,"X":489,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440803Z"},{"ID":4417,"Name":"023. Ni ma opcji xd","Points":9761,"X":506,"Y":583,"Continent":"K55","Bonus":3,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440805Z"},{"ID":4418,"Name":".achim.","Points":9491,"X":541,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440808Z"},{"ID":4419,"Name":"*INTERTWINED*","Points":9711,"X":479,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440809Z"},{"ID":4420,"Name":"[124] North24","Points":10054,"X":572,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44081Z"},{"ID":4421,"Name":"Knowhere","Points":10452,"X":394,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440812Z"},{"ID":4422,"Name":"016. ALFI","Points":2453,"X":471,"Y":571,"Continent":"K54","Bonus":3,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440814Z"},{"ID":4423,"Name":"Dum Spiro Spero","Points":10042,"X":494,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440816Z"},{"ID":4424,"Name":"BBB","Points":7788,"X":552,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440816Z"},{"ID":4425,"Name":"007. Wioska lllllllllXDlllllllll","Points":10495,"X":568,"Y":529,"Continent":"K55","Bonus":2,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440818Z"},{"ID":4427,"Name":"NOT?","Points":10042,"X":417,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44082Z"},{"ID":4428,"Name":"165 Ale mnie gƂówka boli","Points":10636,"X":386,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440822Z"},{"ID":4429,"Name":"090 Des Moines","Points":9761,"X":478,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440822Z"},{"ID":4430,"Name":"0008","Points":10495,"X":505,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440824Z"},{"ID":4431,"Name":"#0027 Kwarantanna","Points":10066,"X":498,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440826Z"},{"ID":4432,"Name":"096.","Points":10047,"X":477,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440828Z"},{"ID":4433,"Name":"Olenale","Points":3508,"X":439,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440828Z"},{"ID":4434,"Name":"Horyzont zdarzeƄ","Points":9835,"X":517,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44083Z"},{"ID":4435,"Name":"WOJSKO","Points":9761,"X":476,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699869682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440832Z"},{"ID":4436,"Name":"XXX001","Points":10004,"X":569,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440834Z"},{"ID":4437,"Name":"~~LatającyHolender~~","Points":9708,"X":557,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440834Z"},{"ID":4438,"Name":"KIELBA 072","Points":10495,"X":471,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440836Z"},{"ID":4439,"Name":"Daleko 019","Points":8431,"X":484,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440839Z"},{"ID":4440,"Name":"Lynortis","Points":6404,"X":464,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":849001724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440841Z"},{"ID":4441,"Name":"*INTERTWINED*","Points":6624,"X":481,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440842Z"},{"ID":4442,"Name":"012","Points":3874,"X":561,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440843Z"},{"ID":4443,"Name":"Durthang","Points":10160,"X":505,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440845Z"},{"ID":4444,"Name":"046","Points":10311,"X":549,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440847Z"},{"ID":4445,"Name":"Wioska Mateox","Points":3733,"X":555,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440848Z"},{"ID":4446,"Name":".achim.","Points":10311,"X":540,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440849Z"},{"ID":4447,"Name":"Szlachcic","Points":10043,"X":565,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440851Z"},{"ID":4448,"Name":"Szlachcic !!!","Points":9899,"X":499,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440853Z"},{"ID":4449,"Name":"ZasiedmiogĂłrogrĂłd","Points":10068,"X":530,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440854Z"},{"ID":4450,"Name":"Ręcznik do zmiany","Points":10252,"X":423,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440855Z"},{"ID":4451,"Name":".achim.","Points":10068,"X":525,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440857Z"},{"ID":4452,"Name":"*INTERTWINED**","Points":9711,"X":532,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440859Z"},{"ID":4453,"Name":"[118]","Points":9894,"X":565,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44086Z"},{"ID":4454,"Name":"Napewno to nie jest off","Points":6398,"X":514,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440862Z"},{"ID":4455,"Name":"- 109 -","Points":10000,"X":540,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440863Z"},{"ID":4456,"Name":"Gattacka","Points":10373,"X":579,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440865Z"},{"ID":4457,"Name":"045","Points":10019,"X":472,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440866Z"},{"ID":4458,"Name":"NOT?","Points":10042,"X":418,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440868Z"},{"ID":4459,"Name":"Bagdad","Points":10242,"X":466,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44087Z"},{"ID":4460,"Name":"C012","Points":10728,"X":524,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440872Z"},{"ID":4461,"Name":"035 |","Points":10476,"X":568,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440873Z"},{"ID":4462,"Name":"Pf Konfederacja","Points":10232,"X":494,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440875Z"},{"ID":4463,"Name":"+44 84","Points":9664,"X":444,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440877Z"},{"ID":4464,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":436,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440878Z"},{"ID":4465,"Name":"014","Points":9798,"X":528,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44088Z"},{"ID":4466,"Name":"B015","Points":10495,"X":480,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44088Z"},{"ID":4467,"Name":"C019","Points":9484,"X":528,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440885Z"},{"ID":4468,"Name":"?+44 96 Desvres","Points":9669,"X":465,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440887Z"},{"ID":4469,"Name":"P Konfederacja","Points":10030,"X":458,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440889Z"},{"ID":4470,"Name":"Butem w Morgen","Points":10495,"X":552,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44089Z"},{"ID":4471,"Name":"0018 K55 and987 OZDR.","Points":9845,"X":500,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440892Z"},{"ID":4472,"Name":"Pf Konfederacja","Points":10365,"X":488,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440894Z"},{"ID":4473,"Name":"[052] Gamma","Points":10311,"X":542,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440895Z"},{"ID":4474,"Name":"Osada","Points":6625,"X":510,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440896Z"},{"ID":4475,"Name":"#0132 Kleofas","Points":4642,"X":494,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440898Z"},{"ID":4476,"Name":"P.015","Points":10271,"X":541,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4409Z"},{"ID":4477,"Name":"NOT?","Points":9033,"X":432,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440902Z"},{"ID":4478,"Name":"Selonari","Points":9735,"X":460,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440902Z"},{"ID":4479,"Name":"Selonari","Points":9711,"X":462,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440905Z"},{"ID":4480,"Name":"CALL 940","Points":10311,"X":548,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440907Z"},{"ID":4481,"Name":"xxx","Points":10495,"X":487,"Y":432,"Continent":"K44","Bonus":1,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440909Z"},{"ID":4482,"Name":"10009","Points":11550,"X":523,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440909Z"},{"ID":4483,"Name":"/01","Points":11568,"X":410,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440911Z"},{"ID":4484,"Name":"Kasyno","Points":10237,"X":442,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440913Z"},{"ID":4485,"Name":"Jaaa","Points":10479,"X":577,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440915Z"},{"ID":4486,"Name":"Wioska barbarzyƄska","Points":9493,"X":445,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440915Z"},{"ID":4487,"Name":"Wioska 10","Points":9171,"X":530,"Y":498,"Continent":"K45","Bonus":7,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440919Z"},{"ID":4488,"Name":"PiekƂo to inni","Points":10160,"X":517,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440921Z"},{"ID":4489,"Name":"+44 64","Points":8992,"X":445,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440923Z"},{"ID":4490,"Name":"ƚmieszkiii","Points":7870,"X":480,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440923Z"},{"ID":4491,"Name":"142 Durango","Points":9761,"X":468,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440925Z"},{"ID":4492,"Name":"[034] MONETKI","Points":10252,"X":597,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440927Z"},{"ID":4493,"Name":"Wioska barbarzyƄska","Points":2178,"X":451,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440929Z"},{"ID":4494,"Name":"Lord Arsey KING","Points":10285,"X":581,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440929Z"},{"ID":4495,"Name":"Butem w Morgen","Points":9937,"X":485,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440931Z"},{"ID":4496,"Name":"CALL 934","Points":10311,"X":552,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440933Z"},{"ID":4497,"Name":"- 043 -","Points":10000,"X":535,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440935Z"},{"ID":4498,"Name":"Monetki","Points":10297,"X":473,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440935Z"},{"ID":4499,"Name":"010","Points":9761,"X":413,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440938Z"},{"ID":4500,"Name":"Wioska","Points":10178,"X":381,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44094Z"},{"ID":4501,"Name":"7.62 mm","Points":10019,"X":469,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440942Z"},{"ID":4502,"Name":"0040 MzM","Points":11678,"X":530,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440942Z"},{"ID":4503,"Name":"026. ALFI","Points":1725,"X":483,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440944Z"},{"ID":4504,"Name":"114 Yellowknife","Points":9761,"X":478,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440946Z"},{"ID":4505,"Name":"WesoƂych ƚwiąt","Points":9994,"X":568,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440948Z"},{"ID":4506,"Name":"001.xxx","Points":10495,"X":464,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440948Z"},{"ID":4507,"Name":"7.62 mm","Points":10019,"X":489,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44095Z"},{"ID":4508,"Name":"Wioska barbarzyƄska","Points":8486,"X":437,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440952Z"},{"ID":4509,"Name":"0004 K55 and987 OZDR.","Points":9899,"X":504,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440954Z"},{"ID":4510,"Name":"7.62 mm","Points":10019,"X":477,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440954Z"},{"ID":4511,"Name":"007 Dworzec GdaƄski","Points":10019,"X":542,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440956Z"},{"ID":4512,"Name":"022","Points":9753,"X":482,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440958Z"},{"ID":4513,"Name":"031 |","Points":10149,"X":558,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44096Z"},{"ID":4514,"Name":"006. Marzyciel Shrek","Points":5646,"X":459,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44096Z"},{"ID":4515,"Name":"017","Points":2763,"X":462,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440962Z"},{"ID":4516,"Name":"kathare","Points":10595,"X":536,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440964Z"},{"ID":4517,"Name":"Myk i do kieszonki","Points":9799,"X":381,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440966Z"},{"ID":4518,"Name":".:016:. Chillout","Points":9401,"X":500,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440966Z"},{"ID":4519,"Name":"20019","Points":8729,"X":515,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44097Z"},{"ID":4520,"Name":"Harbar","Points":2903,"X":428,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440971Z"},{"ID":4521,"Name":"C028","Points":7450,"X":525,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440973Z"},{"ID":4522,"Name":"PiekƂo to inni","Points":9596,"X":518,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440974Z"},{"ID":4523,"Name":"#13.","Points":10971,"X":529,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440976Z"},{"ID":4524,"Name":"Winter is coming","Points":7227,"X":443,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440977Z"},{"ID":4525,"Name":"Lord Arsey KING","Points":10285,"X":508,"Y":524,"Continent":"K55","Bonus":6,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440979Z"},{"ID":4526,"Name":"- 094 -","Points":10000,"X":542,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44098Z"},{"ID":4527,"Name":"PiekƂo to inni","Points":10083,"X":511,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440982Z"},{"ID":4528,"Name":"#0138 Anne-Marie","Points":3560,"X":557,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440983Z"},{"ID":4529,"Name":"CALL 965","Points":10311,"X":521,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440985Z"},{"ID":4530,"Name":"0046","Points":5352,"X":458,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440987Z"},{"ID":4531,"Name":"xxx","Points":8549,"X":511,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440988Z"},{"ID":4532,"Name":"7.62 mm","Points":8638,"X":511,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440989Z"},{"ID":4533,"Name":"009 | Lord Axen - Coming for you","Points":10303,"X":558,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440991Z"},{"ID":4534,"Name":"-[022]- Maszerbrum","Points":7477,"X":555,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440993Z"},{"ID":4535,"Name":"Szlachcic","Points":10237,"X":583,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440994Z"},{"ID":4536,"Name":"Palma pod palma!","Points":9835,"X":499,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440996Z"},{"ID":4537,"Name":"009","Points":9986,"X":550,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.440997Z"},{"ID":4538,"Name":"0062 ~23~","Points":10214,"X":438,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441001Z"},{"ID":4539,"Name":"Grafoll","Points":9753,"X":455,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441001Z"},{"ID":4540,"Name":"015. A-RE-SE-EY","Points":10252,"X":574,"Y":524,"Continent":"K55","Bonus":5,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441003Z"},{"ID":4541,"Name":"7.62 mm","Points":10019,"X":495,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441005Z"},{"ID":4542,"Name":"0202","Points":10559,"X":455,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441007Z"},{"ID":4543,"Name":"Wioska 430","Points":10495,"X":565,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441007Z"},{"ID":4544,"Name":"Lord Arsey KING","Points":10285,"X":511,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441009Z"},{"ID":4545,"Name":"Wioska 401","Points":10495,"X":561,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441011Z"},{"ID":4546,"Name":"Kasyno","Points":8005,"X":443,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441013Z"},{"ID":4547,"Name":"*INTERTWINED*","Points":9595,"X":465,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441013Z"},{"ID":4548,"Name":"Fajna 073","Points":1877,"X":455,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441015Z"},{"ID":4549,"Name":"Gattacka","Points":9455,"X":581,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441017Z"},{"ID":4550,"Name":"Wioska Marceli Tower","Points":2827,"X":445,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441022Z"},{"ID":4551,"Name":"+44 84","Points":8798,"X":443,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441022Z"},{"ID":4552,"Name":"04 Anglia","Points":9394,"X":586,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441024Z"},{"ID":4553,"Name":"ChceszPokojuSzykujSięDoWojny","Points":3862,"X":459,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441026Z"},{"ID":4554,"Name":"ChceszPokojuSzykujSięDoWojny","Points":4336,"X":460,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441028Z"},{"ID":4555,"Name":"Pf Konfederacja","Points":9575,"X":491,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441028Z"},{"ID":4556,"Name":"P.012","Points":10141,"X":544,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44103Z"},{"ID":4557,"Name":"008 Boulder City","Points":9761,"X":438,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441032Z"},{"ID":4558,"Name":"Fort","Points":10300,"X":501,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441035Z"},{"ID":4559,"Name":"+44 72 Montcavrel","Points":10827,"X":421,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441036Z"},{"ID":4560,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441037Z"},{"ID":4561,"Name":"lady","Points":12154,"X":489,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441039Z"},{"ID":4562,"Name":"068","Points":10495,"X":551,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441041Z"},{"ID":4563,"Name":"KONFA TO MARKA, NARKA","Points":10438,"X":450,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441042Z"},{"ID":4564,"Name":"098.","Points":6995,"X":503,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441044Z"},{"ID":4565,"Name":"120 Royal New France","Points":9761,"X":477,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441045Z"},{"ID":4566,"Name":"D018","Points":9925,"X":505,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441047Z"},{"ID":4567,"Name":"NOT?","Points":3688,"X":460,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441048Z"},{"ID":4568,"Name":"071.","Points":10252,"X":509,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441049Z"},{"ID":4569,"Name":"002","Points":4394,"X":472,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441051Z"},{"ID":4570,"Name":"z 029","Points":10237,"X":556,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441053Z"},{"ID":4571,"Name":"036","Points":10068,"X":598,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441054Z"},{"ID":4572,"Name":"Joms 029","Points":9761,"X":530,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441055Z"},{"ID":4573,"Name":"Szlachcic","Points":9492,"X":573,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441057Z"},{"ID":4574,"Name":"x cast Away","Points":9845,"X":434,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441059Z"},{"ID":4575,"Name":".achim.","Points":4713,"X":540,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44106Z"},{"ID":4576,"Name":"Dum Spiro Spero","Points":10000,"X":492,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441061Z"},{"ID":4577,"Name":"048 BuƂeczka v3","Points":10001,"X":532,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441063Z"},{"ID":4578,"Name":"025","Points":9744,"X":567,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441066Z"},{"ID":4579,"Name":"Pf Konfederacja +","Points":10157,"X":487,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441067Z"},{"ID":4580,"Name":"015 Fiona","Points":10096,"X":446,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441068Z"},{"ID":4581,"Name":"SiƂa, Masa, RzeĆșba 10","Points":8308,"X":622,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44107Z"},{"ID":4582,"Name":"JaamMwG 028","Points":9851,"X":521,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441072Z"},{"ID":4583,"Name":"KONFA TO MARKA, NARKA","Points":10654,"X":446,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441073Z"},{"ID":4584,"Name":"Wioska mati","Points":2703,"X":548,"Y":497,"Continent":"K45","Bonus":6,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441075Z"},{"ID":4585,"Name":"Os Konfederacja","Points":9053,"X":469,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441077Z"},{"ID":4586,"Name":"NOT?","Points":8316,"X":436,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441078Z"},{"ID":4587,"Name":"Horyzont zdarzeƄ","Points":9814,"X":525,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441079Z"},{"ID":4588,"Name":"7.62 mm","Points":6432,"X":488,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441081Z"},{"ID":4589,"Name":"[110]","Points":9888,"X":569,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441083Z"},{"ID":4590,"Name":"HoƂopole","Points":10178,"X":493,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441084Z"},{"ID":4591,"Name":"35 min to dƂugo","Points":6359,"X":551,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441085Z"},{"ID":4592,"Name":"~~LatającyHolender~~","Points":10316,"X":586,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441087Z"},{"ID":4593,"Name":"Wioska barbarzyƄska","Points":9458,"X":511,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441088Z"},{"ID":4594,"Name":"[139]","Points":9627,"X":548,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44109Z"},{"ID":4595,"Name":"?+44 85 Villeurbanne La Doua","Points":9841,"X":456,"Y":480,"Continent":"K44","Bonus":8,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441092Z"},{"ID":4596,"Name":"#181Wrrr...","Points":3700,"X":579,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441093Z"},{"ID":4597,"Name":"A#061#","Points":10397,"X":416,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441095Z"},{"ID":4598,"Name":"CALL 990","Points":10311,"X":544,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441097Z"},{"ID":4599,"Name":"Wioska barbarzyƄska","Points":10252,"X":526,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441099Z"},{"ID":4600,"Name":".:035:. Cynamon","Points":7667,"X":510,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4411Z"},{"ID":4601,"Name":"A | Forest Cyaaaanku","Points":10000,"X":389,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441102Z"},{"ID":4602,"Name":"Winter is coming","Points":3740,"X":430,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441104Z"},{"ID":4604,"Name":"C015","Points":10838,"X":518,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441106Z"},{"ID":4605,"Name":"Nitrbolon","Points":9885,"X":571,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441106Z"},{"ID":4606,"Name":"Szlachcic","Points":8856,"X":506,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441108Z"},{"ID":4607,"Name":"0022","Points":8037,"X":505,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44111Z"},{"ID":4608,"Name":"Szlachcic !!!","Points":7083,"X":507,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441112Z"},{"ID":4609,"Name":"ADEN","Points":9971,"X":568,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441112Z"},{"ID":4610,"Name":"[091]","Points":9962,"X":555,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441114Z"},{"ID":4611,"Name":"Knowhere","Points":10282,"X":385,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441116Z"},{"ID":4612,"Name":"Mniejsze zƂo 0067","Points":7903,"X":421,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441118Z"},{"ID":4613,"Name":"028","Points":2794,"X":468,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441118Z"},{"ID":4614,"Name":"0050","Points":8841,"X":462,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44112Z"},{"ID":4615,"Name":"*INTERTWINED*","Points":5364,"X":461,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441122Z"},{"ID":4616,"Name":"C042","Points":6393,"X":533,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441124Z"},{"ID":4617,"Name":"011 Indigo Plateau","Points":11109,"X":588,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441124Z"},{"ID":4618,"Name":"!Wioska 406","Points":10495,"X":559,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441126Z"},{"ID":4619,"Name":"[140]","Points":9312,"X":559,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441129Z"},{"ID":4620,"Name":"KIELBA 118","Points":7536,"X":435,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441131Z"},{"ID":4621,"Name":"Osada","Points":10291,"X":501,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441131Z"},{"ID":4622,"Name":"lady","Points":9394,"X":487,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441133Z"},{"ID":4623,"Name":"kek","Points":8811,"X":537,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441135Z"},{"ID":4624,"Name":"Szlachcic 028","Points":9338,"X":572,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441137Z"},{"ID":4625,"Name":"030. Wioska osilek123","Points":10252,"X":552,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441137Z"},{"ID":4626,"Name":"06 Arabia Saudyjska","Points":9339,"X":468,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441139Z"},{"ID":4627,"Name":"7.62 mm","Points":10019,"X":494,"Y":428,"Continent":"K44","Bonus":6,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441141Z"},{"ID":4628,"Name":"Szlachcic","Points":10237,"X":573,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441143Z"},{"ID":4629,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":449,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441144Z"},{"ID":4630,"Name":"Wioska 431","Points":10495,"X":557,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441145Z"},{"ID":4631,"Name":"0101","Points":9841,"X":467,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441147Z"},{"ID":4632,"Name":"B014","Points":10495,"X":570,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441149Z"},{"ID":4633,"Name":"CALL 1043","Points":7234,"X":550,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44115Z"},{"ID":4634,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10290,"X":461,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441151Z"},{"ID":4635,"Name":"SsSs","Points":6265,"X":422,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441156Z"},{"ID":4636,"Name":"Village","Points":9534,"X":452,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441158Z"},{"ID":4637,"Name":"Gattacka","Points":8526,"X":583,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441159Z"},{"ID":4638,"Name":"10014","Points":9329,"X":533,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441161Z"},{"ID":4639,"Name":"033","Points":9761,"X":475,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441164Z"},{"ID":4640,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441166Z"},{"ID":4641,"Name":"ƚmieszkii","Points":9248,"X":507,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441166Z"},{"ID":4642,"Name":"0.Pittsburgh","Points":9970,"X":518,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441168Z"},{"ID":4643,"Name":"Winter is coming","Points":6949,"X":441,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44117Z"},{"ID":4644,"Name":"Jaaa","Points":10487,"X":571,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441172Z"},{"ID":4645,"Name":"0047","Points":6859,"X":458,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441172Z"},{"ID":4647,"Name":"187 Cali","Points":9761,"X":470,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441174Z"},{"ID":4648,"Name":"*INTERTWINED**","Points":9711,"X":461,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441176Z"},{"ID":4649,"Name":"Gattacka","Points":9570,"X":582,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441178Z"},{"ID":4650,"Name":"A013","Points":10481,"X":494,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441178Z"},{"ID":4651,"Name":"022. A-RE-SE-EY","Points":10252,"X":575,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44118Z"},{"ID":4652,"Name":"Front_28","Points":6995,"X":454,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441182Z"},{"ID":4653,"Name":"068","Points":10237,"X":448,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441184Z"},{"ID":4654,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":425,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441184Z"},{"ID":4655,"Name":"041","Points":8662,"X":445,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441186Z"},{"ID":4656,"Name":"PiekƂo to inni","Points":9761,"X":519,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441188Z"},{"ID":4657,"Name":"SsSs","Points":3804,"X":437,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44119Z"},{"ID":4658,"Name":"Szlachcic 037","Points":9338,"X":552,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44119Z"},{"ID":4659,"Name":"Brat447","Points":11321,"X":455,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441192Z"},{"ID":4660,"Name":"Jaaa","Points":10481,"X":572,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441195Z"},{"ID":4661,"Name":"CALL 1047","Points":10311,"X":542,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441197Z"},{"ID":4662,"Name":"001 MƂociny","Points":10019,"X":536,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441199Z"},{"ID":4663,"Name":"011.","Points":6359,"X":615,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441199Z"},{"ID":4664,"Name":"adam4","Points":9641,"X":526,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441201Z"},{"ID":4665,"Name":"~009.","Points":10495,"X":503,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441203Z"},{"ID":4666,"Name":"-13-","Points":10400,"X":586,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441205Z"},{"ID":4667,"Name":"*Ateny_49","Points":2925,"X":465,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441205Z"},{"ID":4668,"Name":"Monetki","Points":10294,"X":477,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441207Z"},{"ID":4669,"Name":"Winter is coming","Points":1978,"X":440,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441209Z"},{"ID":4670,"Name":"Monetki","Points":10311,"X":481,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441211Z"},{"ID":4671,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":446,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441211Z"},{"ID":4672,"Name":"0004","Points":10320,"X":622,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441213Z"},{"ID":4673,"Name":"Daleko 029","Points":8286,"X":472,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441215Z"},{"ID":4674,"Name":"003","Points":10068,"X":429,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441217Z"},{"ID":4675,"Name":"Suppi","Points":9554,"X":439,"Y":520,"Continent":"K54","Bonus":2,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441217Z"},{"ID":4676,"Name":"Wioska BarbarzyƄska","Points":10019,"X":544,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441219Z"},{"ID":4677,"Name":"A016","Points":10495,"X":487,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441221Z"},{"ID":4678,"Name":".achim.","Points":10311,"X":558,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441223Z"},{"ID":4679,"Name":"104 Hejka","Points":5613,"X":541,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441223Z"},{"ID":4680,"Name":"Presja","Points":12154,"X":512,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441226Z"},{"ID":4681,"Name":"JaamMwG 017","Points":10220,"X":529,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441228Z"},{"ID":4682,"Name":"OOI","Points":9738,"X":508,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44123Z"},{"ID":4683,"Name":"xxx","Points":10495,"X":501,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441231Z"},{"ID":4684,"Name":"199 Santa Cruz de La Sierra","Points":10016,"X":468,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441232Z"},{"ID":4685,"Name":"1. Obj 705 !!!","Points":10019,"X":498,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441234Z"},{"ID":4686,"Name":"CALL 951","Points":10311,"X":548,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441236Z"},{"ID":4687,"Name":"Joms 025","Points":10495,"X":532,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441237Z"},{"ID":4688,"Name":"7.62 mm","Points":8468,"X":465,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441238Z"},{"ID":4689,"Name":"PRO8L3M","Points":9862,"X":448,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44124Z"},{"ID":4690,"Name":".achim.","Points":10311,"X":517,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441242Z"},{"ID":4691,"Name":"#0096 DobryƄ MaƂy","Points":10019,"X":475,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441243Z"},{"ID":4692,"Name":"COUSINS","Points":10203,"X":495,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441244Z"},{"ID":4693,"Name":"+44 72 Sainte Consorce","Points":9726,"X":424,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441246Z"},{"ID":4694,"Name":"034.","Points":10201,"X":505,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441248Z"},{"ID":4695,"Name":"0174","Points":8929,"X":472,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441249Z"},{"ID":4696,"Name":"F074","Points":9588,"X":504,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44125Z"},{"ID":4697,"Name":".:009:. Taktyka","Points":9780,"X":517,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441252Z"},{"ID":4698,"Name":"NOT","Points":10042,"X":418,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441254Z"},{"ID":4699,"Name":"KIELBA 068","Points":10444,"X":470,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441255Z"},{"ID":4700,"Name":"Cast Away 012","Points":5400,"X":450,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441257Z"},{"ID":4701,"Name":"Joms 042","Points":6874,"X":543,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441259Z"},{"ID":4702,"Name":"96k$ Grvvyq","Points":10495,"X":553,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441261Z"},{"ID":4703,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":428,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441262Z"},{"ID":4704,"Name":"[0003]","Points":10495,"X":450,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441264Z"},{"ID":4705,"Name":"094 Barstow","Points":9761,"X":480,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441265Z"},{"ID":4706,"Name":"236 Denpasar","Points":9994,"X":548,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441267Z"},{"ID":4707,"Name":"093 Needles","Points":9761,"X":474,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441268Z"},{"ID":4708,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":430,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441269Z"},{"ID":4709,"Name":"Szlachcic","Points":10237,"X":468,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441271Z"},{"ID":4710,"Name":"Szlachcic","Points":9657,"X":555,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441273Z"},{"ID":4711,"Name":"CALL 955","Points":10311,"X":551,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441274Z"},{"ID":4712,"Name":"Warsztat","Points":7060,"X":552,"Y":442,"Continent":"K45","Bonus":7,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441276Z"},{"ID":4713,"Name":"*002 Wyspy owcze","Points":9873,"X":385,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441277Z"},{"ID":4714,"Name":"Szlachcic 047","Points":9338,"X":569,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441279Z"},{"ID":4715,"Name":"ADEN","Points":9737,"X":526,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44128Z"},{"ID":4716,"Name":"+44 83 Escalles","Points":10088,"X":435,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441282Z"},{"ID":4717,"Name":"Szlachcic 006","Points":9338,"X":565,"Y":529,"Continent":"K55","Bonus":1,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441283Z"},{"ID":4718,"Name":"Wioska barbarzyƄska","Points":9647,"X":500,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441285Z"},{"ID":4719,"Name":"KIELBA 036","Points":10495,"X":447,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441286Z"},{"ID":4720,"Name":"Bilgewater","Points":10008,"X":444,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441292Z"},{"ID":4721,"Name":"|027|","Points":9913,"X":553,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441294Z"},{"ID":4722,"Name":"Kentin ufam Tobie","Points":11130,"X":431,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441296Z"},{"ID":4723,"Name":"F072","Points":10050,"X":508,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441297Z"},{"ID":4724,"Name":"Winter is coming","Points":9891,"X":504,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441298Z"},{"ID":4725,"Name":"3 ESIOK f","Points":10239,"X":537,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4413Z"},{"ID":4726,"Name":"ladyanima","Points":9201,"X":516,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441302Z"},{"ID":4727,"Name":"Lord Arsey KING","Points":10285,"X":527,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441304Z"},{"ID":4728,"Name":"A021","Points":10495,"X":496,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441304Z"},{"ID":4729,"Name":"017. A-RE-SE-EY","Points":10252,"X":573,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441306Z"},{"ID":4730,"Name":"Metamorfoza","Points":10030,"X":508,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441308Z"},{"ID":4731,"Name":"F024","Points":9750,"X":493,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44131Z"},{"ID":4732,"Name":"Szlachcic","Points":10237,"X":577,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44131Z"},{"ID":4733,"Name":"P.011","Points":10273,"X":538,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441312Z"},{"ID":4734,"Name":"C040","Points":9883,"X":534,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441314Z"},{"ID":4735,"Name":"! Wioska barbarzyƄska","Points":8709,"X":539,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441316Z"},{"ID":4736,"Name":"NOT?","Points":10042,"X":431,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441316Z"},{"ID":4737,"Name":"Wioska barbarzyƄska","Points":8504,"X":461,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441318Z"},{"ID":4738,"Name":"Village","Points":8046,"X":499,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44132Z"},{"ID":4739,"Name":"0017","Points":10495,"X":529,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441323Z"},{"ID":4740,"Name":"P Konfederacja","Points":9508,"X":460,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441323Z"},{"ID":4741,"Name":"065 |","Points":9891,"X":560,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441325Z"},{"ID":4742,"Name":"Pf Konfederacja","Points":9641,"X":491,"Y":504,"Continent":"K54","Bonus":3,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441327Z"},{"ID":4744,"Name":"0185","Points":9187,"X":474,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441329Z"},{"ID":4745,"Name":"0.Savannah","Points":9970,"X":519,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44133Z"},{"ID":4746,"Name":"Mzm43","Points":9817,"X":569,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441331Z"},{"ID":4747,"Name":"#0109 Powodzenia","Points":8171,"X":502,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441333Z"},{"ID":4748,"Name":"Suppi","Points":9556,"X":439,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441335Z"},{"ID":4749,"Name":"Gattacka","Points":9364,"X":594,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441336Z"},{"ID":4750,"Name":"096 Malta","Points":10495,"X":569,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441337Z"},{"ID":4751,"Name":"0117","Points":10495,"X":457,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441339Z"},{"ID":4752,"Name":"188 Lima","Points":10016,"X":468,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441341Z"},{"ID":4753,"Name":"0079","Points":6670,"X":462,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441342Z"},{"ID":4754,"Name":"014 Violet City","Points":11109,"X":563,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441344Z"},{"ID":4755,"Name":"Dum Spiro Spero","Points":9979,"X":493,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441345Z"},{"ID":4756,"Name":"PiekƂo to inni","Points":10019,"X":518,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441347Z"},{"ID":4757,"Name":"7.62 mm","Points":10019,"X":492,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441348Z"},{"ID":4758,"Name":"Belegost","Points":8730,"X":502,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441349Z"},{"ID":4759,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":423,"Continent":"K45","Bonus":5,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441351Z"},{"ID":4760,"Name":"009 Nie wymiękƂem","Points":10478,"X":602,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441354Z"},{"ID":4761,"Name":"KIELBA 031","Points":10495,"X":455,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441355Z"},{"ID":4762,"Name":"#060","Points":9711,"X":518,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441357Z"},{"ID":4763,"Name":"[151] North","Points":10052,"X":573,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441359Z"},{"ID":4764,"Name":"KIELBA 098","Points":10495,"X":465,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44136Z"},{"ID":4765,"Name":":).","Points":10019,"X":542,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441361Z"},{"ID":4766,"Name":"CALL 995","Points":10311,"X":543,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441363Z"},{"ID":4767,"Name":"Sparta_33","Points":9638,"X":481,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441365Z"},{"ID":4768,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441366Z"},{"ID":4769,"Name":"*INTERTWINED*","Points":7979,"X":460,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441367Z"},{"ID":4770,"Name":"COUS,,","Points":6602,"X":498,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441369Z"},{"ID":4771,"Name":"ƚmieszkiii","Points":9038,"X":485,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441371Z"},{"ID":4772,"Name":"Os Konfederacja","Points":10068,"X":474,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441372Z"},{"ID":4773,"Name":"066","Points":6224,"X":550,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441373Z"},{"ID":4774,"Name":"|041|","Points":9870,"X":549,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441375Z"},{"ID":4775,"Name":"Suppi","Points":9550,"X":444,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441377Z"},{"ID":4776,"Name":"198","Points":5230,"X":547,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441379Z"},{"ID":4777,"Name":"Szlachcic","Points":9687,"X":494,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441379Z"},{"ID":4778,"Name":"004","Points":9708,"X":521,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441381Z"},{"ID":4779,"Name":"Mniejsze zƂo 0051","Points":7800,"X":418,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441383Z"},{"ID":4780,"Name":"020 |","Points":10141,"X":553,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441386Z"},{"ID":4781,"Name":"008","Points":10192,"X":512,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441387Z"},{"ID":4783,"Name":"Lord Arsey KING","Points":10285,"X":525,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441388Z"},{"ID":4784,"Name":"GƂucha noc","Points":10495,"X":506,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44139Z"},{"ID":4785,"Name":"157 Belmopan","Points":9761,"X":455,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441392Z"},{"ID":4786,"Name":"Osada","Points":9968,"X":497,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441393Z"},{"ID":4787,"Name":"Suppi","Points":8272,"X":442,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441394Z"},{"ID":4788,"Name":"PiekƂo to inni","Points":10160,"X":513,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441396Z"},{"ID":4789,"Name":"Oleander","Points":4750,"X":438,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441398Z"},{"ID":4790,"Name":"NOT?","Points":10042,"X":432,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4414Z"},{"ID":4791,"Name":"sas","Points":7963,"X":531,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4414Z"},{"ID":4792,"Name":"017","Points":9192,"X":516,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441402Z"},{"ID":4794,"Name":"Butla","Points":6136,"X":582,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":9225795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441404Z"},{"ID":4795,"Name":"#027","Points":10393,"X":477,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441406Z"},{"ID":4796,"Name":"+44 73 Verton","Points":9799,"X":431,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441407Z"},{"ID":4797,"Name":"Stage group B5","Points":3335,"X":438,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441408Z"},{"ID":4798,"Name":"ADEN","Points":9692,"X":559,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44141Z"},{"ID":4799,"Name":"023","Points":10362,"X":481,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441412Z"},{"ID":4800,"Name":"OddaƂ wioskę, ma gest!","Points":9835,"X":503,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441413Z"},{"ID":4801,"Name":"032. Antlia","Points":9761,"X":489,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441414Z"},{"ID":4802,"Name":"-x1","Points":11307,"X":490,"Y":496,"Continent":"K44","Bonus":6,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441418Z"},{"ID":4803,"Name":"F027","Points":9628,"X":492,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44142Z"},{"ID":4804,"Name":"Gattacka","Points":10367,"X":583,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44142Z"},{"ID":4805,"Name":"169 Natal","Points":9825,"X":478,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441422Z"},{"ID":4806,"Name":"WioskaB","Points":10130,"X":511,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441428Z"},{"ID":4807,"Name":"Wioska BarbarzyƄska","Points":10019,"X":548,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441429Z"},{"ID":4808,"Name":"Kasyno","Points":10301,"X":439,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44143Z"},{"ID":4809,"Name":"009743","Points":7021,"X":466,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441432Z"},{"ID":4810,"Name":"Fajna 084","Points":5526,"X":458,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441434Z"},{"ID":4811,"Name":"Os Konfederacja","Points":9304,"X":472,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441436Z"},{"ID":4812,"Name":"7.62 mm","Points":10019,"X":471,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441436Z"},{"ID":4813,"Name":"053 CzarnogĂłra","Points":9747,"X":580,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441438Z"},{"ID":4814,"Name":"ADEN","Points":6100,"X":561,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44144Z"},{"ID":4815,"Name":"Wioska 433","Points":10495,"X":570,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441442Z"},{"ID":4816,"Name":"NOT?","Points":5895,"X":434,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441442Z"},{"ID":4817,"Name":"NOT?","Points":10042,"X":413,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441444Z"},{"ID":4818,"Name":"yogi","Points":10393,"X":537,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441446Z"},{"ID":4819,"Name":"KONFA TO MARKA, NARKA","Points":10432,"X":445,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441448Z"},{"ID":4820,"Name":"012. A-RE-SE-EY","Points":10252,"X":578,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441448Z"},{"ID":4821,"Name":"BoBa","Points":9596,"X":490,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44145Z"},{"ID":4822,"Name":"Village","Points":12154,"X":519,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441453Z"},{"ID":4823,"Name":"Bruksela","Points":9976,"X":424,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441455Z"},{"ID":4824,"Name":"Szlachcic 025","Points":9338,"X":556,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441456Z"},{"ID":4825,"Name":"009","Points":10495,"X":468,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441457Z"},{"ID":4826,"Name":"10018","Points":9609,"X":537,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441459Z"},{"ID":4827,"Name":".achim.","Points":7939,"X":535,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441461Z"},{"ID":4828,"Name":"Otimek","Points":2855,"X":433,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441462Z"},{"ID":4829,"Name":"Carsultyal.","Points":9711,"X":486,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441463Z"},{"ID":4830,"Name":"CHW#056t","Points":1144,"X":451,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441465Z"},{"ID":4831,"Name":"0091","Points":10083,"X":454,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441467Z"},{"ID":4832,"Name":"7.62 mm","Points":8328,"X":466,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441468Z"},{"ID":4833,"Name":"Joms 022","Points":10365,"X":529,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441469Z"},{"ID":4834,"Name":"Szlachcic","Points":9778,"X":570,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441471Z"},{"ID":4835,"Name":"yogi","Points":9837,"X":486,"Y":530,"Continent":"K54","Bonus":7,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441473Z"},{"ID":4836,"Name":"BETI 001","Points":1996,"X":462,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441474Z"},{"ID":4837,"Name":"7.62 mm","Points":10019,"X":497,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441475Z"},{"ID":4838,"Name":"Wioska Matii","Points":3816,"X":556,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441477Z"},{"ID":4839,"Name":"Village","Points":8723,"X":492,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441479Z"},{"ID":4840,"Name":"Szlachcic","Points":10237,"X":578,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44148Z"},{"ID":4841,"Name":"[076]","Points":9880,"X":562,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441481Z"},{"ID":4842,"Name":"Wioska tomaszek74","Points":10008,"X":433,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441485Z"},{"ID":4843,"Name":"JaamMwG 014","Points":9225,"X":521,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441487Z"},{"ID":4844,"Name":"012","Points":9789,"X":546,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441487Z"},{"ID":4845,"Name":"Szlachcic","Points":3659,"X":542,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441489Z"},{"ID":4846,"Name":"Gratuluje mĂłzgu","Points":10252,"X":452,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441491Z"},{"ID":4847,"Name":"Tesa 8","Points":10019,"X":533,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441493Z"},{"ID":4848,"Name":"Cast Away 020","Points":4077,"X":443,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441493Z"},{"ID":4849,"Name":"Wioska (032)","Points":9814,"X":572,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441495Z"},{"ID":4850,"Name":".042.","Points":10426,"X":502,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441497Z"},{"ID":4851,"Name":"Natii","Points":8767,"X":435,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441499Z"},{"ID":4852,"Name":"Dum Spiro Spero","Points":8923,"X":496,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441499Z"},{"ID":4853,"Name":"Wioska barbarzyƄska","Points":6794,"X":564,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441501Z"},{"ID":4854,"Name":"176","Points":10311,"X":575,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441503Z"},{"ID":4855,"Name":"Szlachcic 017","Points":8024,"X":570,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441505Z"},{"ID":4856,"Name":"ZasiedmiogĂłrogrĂłd","Points":10375,"X":530,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441507Z"},{"ID":4857,"Name":"~~LatającyHolender~~","Points":10149,"X":582,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441507Z"},{"ID":4858,"Name":"KIELBA 125","Points":6950,"X":450,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441509Z"},{"ID":4859,"Name":"0040 K54 and987 OZDR.","Points":9841,"X":496,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441511Z"},{"ID":4860,"Name":"Jaaa","Points":10481,"X":574,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441513Z"},{"ID":4861,"Name":"006","Points":10341,"X":557,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441513Z"},{"ID":4862,"Name":"Jaaa","Points":10487,"X":584,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441516Z"},{"ID":4863,"Name":"ZasiedmiogĂłrogrĂłd","Points":10362,"X":517,"Y":435,"Continent":"K45","Bonus":9,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441518Z"},{"ID":4864,"Name":"Wioska","Points":10178,"X":388,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44152Z"},{"ID":4865,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44152Z"},{"ID":4866,"Name":".:049:.Chillout","Points":4064,"X":513,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441522Z"},{"ID":4867,"Name":"0.San Antonio","Points":9951,"X":520,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441524Z"},{"ID":4868,"Name":"...Just like that","Points":4467,"X":461,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441526Z"},{"ID":4869,"Name":"#0125 Koperta","Points":9346,"X":492,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441526Z"},{"ID":4870,"Name":"Wioska browar150","Points":6781,"X":407,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441528Z"},{"ID":4871,"Name":"*INTERTWINED*","Points":9711,"X":478,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44153Z"},{"ID":4872,"Name":"Os Konfederacja","Points":9836,"X":478,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441532Z"},{"ID":4873,"Name":"BBB","Points":7779,"X":556,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441533Z"},{"ID":4874,"Name":"0231","Points":10083,"X":469,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441534Z"},{"ID":4875,"Name":"Wioska BarbarzyƄska","Points":9188,"X":553,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441536Z"},{"ID":4876,"Name":"Wioska 416","Points":10495,"X":572,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441538Z"},{"ID":4877,"Name":"Szlachcic 013","Points":9338,"X":572,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441539Z"},{"ID":4878,"Name":"Wioska barbarzyƄska","Points":3028,"X":455,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44154Z"},{"ID":4879,"Name":"004 West Palm Beach","Points":9761,"X":442,"Y":470,"Continent":"K44","Bonus":6,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441542Z"},{"ID":4880,"Name":"Szlachcic 031","Points":9338,"X":558,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441544Z"},{"ID":4881,"Name":"Winter is coming","Points":8032,"X":439,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441545Z"},{"ID":4882,"Name":"X06","Points":7755,"X":536,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441548Z"},{"ID":4883,"Name":"Wioska barbarzyƄska","Points":10821,"X":441,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44155Z"},{"ID":4884,"Name":"ADEN","Points":8113,"X":562,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441551Z"},{"ID":4885,"Name":"ƚmieszkiii","Points":9130,"X":498,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441552Z"},{"ID":4886,"Name":"Gravity","Points":9515,"X":410,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441554Z"},{"ID":4887,"Name":"A005","Points":10495,"X":488,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441556Z"},{"ID":4888,"Name":"Szlachcic","Points":10237,"X":463,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441557Z"},{"ID":4889,"Name":"[A]_[044] Dejv.oldplyr","Points":10444,"X":410,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441558Z"},{"ID":4890,"Name":"A18","Points":9014,"X":551,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441563Z"},{"ID":4891,"Name":"024","Points":10336,"X":614,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441565Z"},{"ID":4892,"Name":"NOT?","Points":10042,"X":434,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441567Z"},{"ID":4893,"Name":"Jaaa","Points":10400,"X":583,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441567Z"},{"ID":4894,"Name":"#Dragonite","Points":10147,"X":578,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441569Z"},{"ID":4895,"Name":"x11","Points":10267,"X":552,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441571Z"},{"ID":4896,"Name":".Selonari","Points":8405,"X":472,"Y":562,"Continent":"K54","Bonus":2,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441573Z"},{"ID":4897,"Name":"0084","Points":7046,"X":446,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441574Z"},{"ID":4898,"Name":"Zajazd","Points":6476,"X":504,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441575Z"},{"ID":4899,"Name":"Winter is coming","Points":10117,"X":505,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441577Z"},{"ID":4900,"Name":"058 |","Points":10336,"X":551,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441579Z"},{"ID":4901,"Name":"keepo","Points":10023,"X":484,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44158Z"},{"ID":4902,"Name":"IQ149","Points":6678,"X":552,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441583Z"},{"ID":4903,"Name":"KONFA TO MARKA, NARKA","Points":10528,"X":428,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441584Z"},{"ID":4904,"Name":"[121]","Points":9809,"X":542,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441586Z"},{"ID":4905,"Name":"*INTERTWINED*","Points":8296,"X":460,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441587Z"},{"ID":4906,"Name":"KONFA TO MARKA, NARKA","Points":10306,"X":429,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441589Z"},{"ID":4907,"Name":".achim.","Points":10311,"X":520,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44159Z"},{"ID":4908,"Name":"CALL 939","Points":10311,"X":554,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441592Z"},{"ID":4910,"Name":"+44 73 Irigny","Points":9849,"X":433,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441593Z"},{"ID":4911,"Name":"CALL 1048","Points":10311,"X":520,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441594Z"},{"ID":4912,"Name":"NOT?","Points":10042,"X":433,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441596Z"},{"ID":4913,"Name":"Lord Arsey KING","Points":10285,"X":571,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441598Z"},{"ID":4914,"Name":"FALAS a","Points":9666,"X":529,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441599Z"},{"ID":4915,"Name":"Chill gaming","Points":3064,"X":583,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":698312347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4416Z"},{"ID":4916,"Name":"Wioska barbarzyƄska","Points":10008,"X":435,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441602Z"},{"ID":4917,"Name":"028. ALFI","Points":1534,"X":476,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441604Z"},{"ID":4918,"Name":"022","Points":8746,"X":532,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441605Z"},{"ID":4919,"Name":"020","Points":9976,"X":531,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441606Z"},{"ID":4920,"Name":"~066.","Points":7494,"X":479,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441608Z"},{"ID":4921,"Name":"PRO8L3M","Points":9437,"X":434,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44161Z"},{"ID":4922,"Name":"Szlachcic","Points":9885,"X":498,"Y":482,"Continent":"K44","Bonus":5,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441613Z"},{"ID":4923,"Name":"0596","Points":9814,"X":475,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441614Z"},{"ID":4924,"Name":"Gratuluje mĂłzgu","Points":1868,"X":449,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441615Z"},{"ID":4925,"Name":"Darma","Points":9835,"X":423,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441617Z"},{"ID":4926,"Name":"x Wioska wschĂłd","Points":8603,"X":438,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44162Z"},{"ID":4927,"Name":"Pf Konfederacja","Points":9955,"X":493,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44162Z"},{"ID":4928,"Name":"006","Points":8976,"X":558,"Y":483,"Continent":"K45","Bonus":4,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441622Z"},{"ID":4929,"Name":"yogi","Points":10160,"X":538,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441624Z"},{"ID":4930,"Name":"[065] KSi","Points":9994,"X":533,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441626Z"},{"ID":4931,"Name":"055 Czechy","Points":10160,"X":586,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441627Z"},{"ID":4932,"Name":"Zimbabwe1","Points":8229,"X":439,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441628Z"},{"ID":4933,"Name":"~047.","Points":10495,"X":487,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44163Z"},{"ID":4934,"Name":"Nogrod","Points":7999,"X":502,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441632Z"},{"ID":4935,"Name":"Wioska 403","Points":10495,"X":562,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441633Z"},{"ID":4936,"Name":"0137","Points":10252,"X":456,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441635Z"},{"ID":4939,"Name":"MasteroN 11","Points":10252,"X":566,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441637Z"},{"ID":4940,"Name":".achim.","Points":10311,"X":541,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441639Z"},{"ID":4941,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9828,"X":454,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44164Z"},{"ID":4943,"Name":"Szlachcic","Points":9852,"X":576,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441642Z"},{"ID":4944,"Name":"005 nowoczesnenagrobki.eu","Points":7749,"X":566,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441644Z"},{"ID":4945,"Name":"PiekƂo to inni","Points":9761,"X":515,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441647Z"},{"ID":4946,"Name":"03*awangarda","Points":9893,"X":549,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441647Z"},{"ID":4947,"Name":"KARTAGINA ..9","Points":8403,"X":461,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441649Z"},{"ID":4948,"Name":"A007","Points":10495,"X":489,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441651Z"},{"ID":4949,"Name":"016. Czart","Points":9825,"X":510,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441653Z"},{"ID":4950,"Name":"#0013 Retrospekcja","Points":10005,"X":490,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441653Z"},{"ID":4951,"Name":"B045","Points":10495,"X":481,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441655Z"},{"ID":4952,"Name":"Dum Spiro Spero","Points":9995,"X":494,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441657Z"},{"ID":4953,"Name":"OgrĂłd Warzywny","Points":6550,"X":448,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441659Z"},{"ID":4954,"Name":"Fajna 066","Points":6935,"X":450,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441659Z"},{"ID":4955,"Name":"*INTERTWINED**","Points":9711,"X":528,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441661Z"},{"ID":4956,"Name":"P Konfederacja","Points":9333,"X":460,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441663Z"},{"ID":4957,"Name":"Noc","Points":9013,"X":546,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441665Z"},{"ID":4958,"Name":"001","Points":10495,"X":471,"Y":509,"Continent":"K54","Bonus":6,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441665Z"},{"ID":4959,"Name":"077. |XD|","Points":10209,"X":496,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441667Z"},{"ID":4960,"Name":"Szlachcic","Points":9623,"X":507,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441669Z"},{"ID":4961,"Name":"Os Konfederacja","Points":10319,"X":482,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441671Z"},{"ID":4962,"Name":"Wioska barbarzyƄska","Points":8579,"X":506,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441671Z"},{"ID":4963,"Name":"?+44 95 Verlincthun","Points":9846,"X":455,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441673Z"},{"ID":4964,"Name":"Szlachcic 020","Points":8024,"X":551,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441675Z"},{"ID":4965,"Name":"-x8","Points":10252,"X":497,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441678Z"},{"ID":4966,"Name":"10016","Points":7662,"X":522,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441678Z"},{"ID":4967,"Name":"0071","Points":10290,"X":454,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44168Z"},{"ID":4968,"Name":"074 San Antonio","Points":9761,"X":460,"Y":458,"Continent":"K44","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441682Z"},{"ID":4969,"Name":"Wioska rufusix","Points":10252,"X":546,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441684Z"},{"ID":4970,"Name":"Wioska barbarzyƄska","Points":9851,"X":462,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441685Z"},{"ID":4971,"Name":"010 Binghamton","Points":9761,"X":438,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441686Z"},{"ID":4972,"Name":"041. Camelopardalis","Points":9761,"X":512,"Y":580,"Continent":"K55","Bonus":8,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441688Z"},{"ID":4973,"Name":"x 00022","Points":6915,"X":551,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44169Z"},{"ID":4974,"Name":"yogi","Points":10019,"X":519,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441691Z"},{"ID":4975,"Name":"Village","Points":12154,"X":517,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441693Z"},{"ID":4976,"Name":"Szczęƛliwego Nowego Roku ;)","Points":10245,"X":585,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441694Z"},{"ID":4977,"Name":"xxx","Points":9835,"X":499,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441699Z"},{"ID":4978,"Name":"Suppi","Points":9825,"X":428,"Y":452,"Continent":"K44","Bonus":7,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4417Z"},{"ID":4979,"Name":"Suppi","Points":9556,"X":443,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441702Z"},{"ID":4980,"Name":"092","Points":10106,"X":541,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441704Z"},{"ID":4981,"Name":"S181 Pędzę Sobie Samogon","Points":10311,"X":499,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441705Z"},{"ID":4982,"Name":"-[028]- Namcze Barwa","Points":7638,"X":550,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441706Z"},{"ID":4983,"Name":"063","Points":9761,"X":442,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441708Z"},{"ID":4984,"Name":"029. A-RE-SE-EY","Points":10252,"X":576,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44171Z"},{"ID":4985,"Name":"084.","Points":10225,"X":584,"Y":477,"Continent":"K45","Bonus":8,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441713Z"},{"ID":4986,"Name":"Pf Konfederacja","Points":10068,"X":488,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441715Z"},{"ID":4987,"Name":"OgrĂłd Warzywny","Points":8963,"X":449,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441715Z"},{"ID":4988,"Name":"Wioska 407","Points":10495,"X":559,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441717Z"},{"ID":4989,"Name":"Bounce","Points":10495,"X":508,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441719Z"},{"ID":4990,"Name":"NOT?","Points":2708,"X":457,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441721Z"},{"ID":4991,"Name":"072. ALFI","Points":1391,"X":465,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441721Z"},{"ID":4993,"Name":"133 Tijuana","Points":9771,"X":468,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441723Z"},{"ID":4994,"Name":"Monetki","Points":10295,"X":482,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441725Z"},{"ID":4995,"Name":"Pf Konfederacja","Points":11164,"X":493,"Y":491,"Continent":"K44","Bonus":6,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441727Z"},{"ID":4996,"Name":"014","Points":10160,"X":468,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441727Z"},{"ID":4997,"Name":"022.","Points":7951,"X":580,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441729Z"},{"ID":4998,"Name":"xxxx","Points":10166,"X":492,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441731Z"},{"ID":4999,"Name":"Lord Arsey KING","Points":10285,"X":501,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441733Z"},{"ID":5000,"Name":"SsSs","Points":7967,"X":466,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441734Z"},{"ID":5001,"Name":"7.62 mm","Points":10019,"X":472,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441735Z"},{"ID":5002,"Name":"Os Konfederacja","Points":10001,"X":475,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441737Z"},{"ID":5004,"Name":"Wioska barbarzyƄska","Points":10252,"X":537,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441739Z"},{"ID":5005,"Name":"025. Wioska Mozzie","Points":10252,"X":560,"Y":504,"Continent":"K55","Bonus":6,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441739Z"},{"ID":5006,"Name":"9.5 Moje","Points":9861,"X":544,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441741Z"},{"ID":5007,"Name":"GPS","Points":9018,"X":540,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441744Z"},{"ID":5008,"Name":"PiekƂo to inni","Points":10237,"X":513,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441746Z"},{"ID":5009,"Name":"F029","Points":9639,"X":486,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441747Z"},{"ID":5010,"Name":"Fajna 076","Points":5971,"X":456,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441749Z"},{"ID":5011,"Name":"P Konfederacja 8","Points":9654,"X":460,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44175Z"},{"ID":5012,"Name":".:078:. Takmahal","Points":7624,"X":527,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441752Z"},{"ID":5013,"Name":"xxx","Points":10330,"X":517,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441753Z"},{"ID":5014,"Name":"Wioska 11","Points":10657,"X":524,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441754Z"},{"ID":5015,"Name":"Lord Arsey KING","Points":10285,"X":521,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441756Z"},{"ID":5016,"Name":"Os Konfederacja +","Points":9646,"X":469,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441758Z"},{"ID":5017,"Name":"048","Points":10129,"X":422,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441759Z"},{"ID":5018,"Name":"Winter is coming","Points":10311,"X":506,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44176Z"},{"ID":5019,"Name":"NOT?","Points":9100,"X":427,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441762Z"},{"ID":5020,"Name":"11*","Points":9457,"X":566,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441764Z"},{"ID":5021,"Name":"009990","Points":8459,"X":469,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441765Z"},{"ID":5022,"Name":"Brat447","Points":9143,"X":444,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441766Z"},{"ID":5023,"Name":"~064.","Points":9798,"X":489,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441768Z"},{"ID":5024,"Name":"EXA","Points":8149,"X":585,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44177Z"},{"ID":5025,"Name":"A056","Points":10495,"X":501,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441771Z"},{"ID":5026,"Name":"szlachcic","Points":6186,"X":439,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441773Z"},{"ID":5027,"Name":"200","Points":5949,"X":548,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441776Z"},{"ID":5028,"Name":"004 Fiona","Points":7997,"X":447,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441777Z"},{"ID":5029,"Name":"Suppi","Points":9691,"X":427,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441778Z"},{"ID":5030,"Name":"NOT?","Points":10042,"X":413,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44178Z"},{"ID":5031,"Name":"079.","Points":10252,"X":577,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441782Z"},{"ID":5032,"Name":"NOT?","Points":9712,"X":433,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441784Z"},{"ID":5033,"Name":"0001 sztart","Points":10019,"X":505,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441784Z"},{"ID":5034,"Name":"[051] Beta","Points":10290,"X":545,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441786Z"},{"ID":5035,"Name":"Os Konfederacja","Points":9824,"X":480,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441788Z"},{"ID":5036,"Name":"Szlachcic 022","Points":8024,"X":554,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44179Z"},{"ID":5037,"Name":"Osada koczownikĂłw","Points":2715,"X":454,"Y":543,"Continent":"K54","Bonus":1,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44179Z"},{"ID":5038,"Name":"NOT?","Points":4999,"X":425,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441792Z"},{"ID":5039,"Name":"-[026]- Kanjut Sar","Points":7101,"X":551,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441794Z"},{"ID":5040,"Name":"[106] North6","Points":10054,"X":574,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441796Z"},{"ID":5041,"Name":"056. ALFI","Points":2025,"X":472,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441796Z"},{"ID":5042,"Name":"ƚmieszkii","Points":8086,"X":520,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441798Z"},{"ID":5043,"Name":"PiekƂo to inni","Points":9258,"X":512,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4418Z"},{"ID":5044,"Name":"Kasyno","Points":7281,"X":448,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441802Z"},{"ID":5045,"Name":"OgrĂłd Warzywny","Points":10495,"X":449,"Y":562,"Continent":"K54","Bonus":4,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441802Z"},{"ID":5046,"Name":"Ręcznik do zmiany","Points":10362,"X":395,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441804Z"},{"ID":5047,"Name":"00952 meheheheqqqqqqqqqqqqqqqqqq","Points":10152,"X":459,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441807Z"},{"ID":5048,"Name":"Szlachcic 023","Points":9111,"X":555,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441809Z"},{"ID":5049,"Name":"057.","Points":10452,"X":523,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441809Z"},{"ID":5050,"Name":"*INTERTWINED**","Points":9318,"X":462,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441811Z"},{"ID":5051,"Name":"Szlachcic","Points":10237,"X":572,"Y":491,"Continent":"K45","Bonus":6,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441813Z"},{"ID":5052,"Name":"bazan","Points":9663,"X":566,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441815Z"},{"ID":5053,"Name":"B047","Points":9711,"X":483,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441817Z"},{"ID":5054,"Name":"...Just like that","Points":10452,"X":454,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441818Z"},{"ID":5055,"Name":"004 Cerulean City","Points":11109,"X":591,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441819Z"},{"ID":5056,"Name":"Front_11","Points":2989,"X":459,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441821Z"},{"ID":5057,"Name":"0063 b5","Points":10220,"X":450,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441823Z"},{"ID":5059,"Name":"Wioska Matyyy","Points":6039,"X":549,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441824Z"},{"ID":5060,"Name":"Gratuluje mĂłzgu","Points":9670,"X":443,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441826Z"},{"ID":5061,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441827Z"},{"ID":5062,"Name":"+44 74 Armbout Cappel","Points":9855,"X":448,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441829Z"},{"ID":5063,"Name":"003","Points":12154,"X":469,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44183Z"},{"ID":5064,"Name":"BETI 003","Points":1698,"X":460,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441835Z"},{"ID":5065,"Name":"Wioska BarbarzyƄska","Points":9439,"X":553,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441837Z"},{"ID":5066,"Name":"B032","Points":10495,"X":490,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441838Z"},{"ID":5067,"Name":"Pf Konfederacja","Points":9639,"X":492,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441839Z"},{"ID":5068,"Name":"017","Points":7618,"X":556,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441842Z"},{"ID":5069,"Name":".:036:. Curry","Points":8532,"X":507,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441844Z"},{"ID":5070,"Name":"029","Points":10129,"X":429,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441846Z"},{"ID":5071,"Name":"Warzywniak 001","Points":5416,"X":446,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441846Z"},{"ID":5072,"Name":"024 |","Points":10141,"X":560,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441848Z"},{"ID":5073,"Name":"Wioska barbarzyƄska","Points":10252,"X":535,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44185Z"},{"ID":5074,"Name":"*001*","Points":9359,"X":613,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441852Z"},{"ID":5075,"Name":"???","Points":9711,"X":482,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441852Z"},{"ID":5076,"Name":"DOL GULDUR","Points":9879,"X":543,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441854Z"},{"ID":5077,"Name":"ƛnieg","Points":10393,"X":494,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441856Z"},{"ID":5078,"Name":"[218]","Points":2482,"X":557,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441858Z"},{"ID":5079,"Name":"NOT?","Points":9711,"X":434,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441858Z"},{"ID":5080,"Name":"(003)","Points":10160,"X":428,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44186Z"},{"ID":5081,"Name":"Wioska ciniol97","Points":9806,"X":508,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441862Z"},{"ID":5082,"Name":"~~LatającyHolender~~","Points":9547,"X":584,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441864Z"},{"ID":5083,"Name":"096 Bisbee","Points":9761,"X":478,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441864Z"},{"ID":5084,"Name":"NOT?","Points":10042,"X":427,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441866Z"},{"ID":5086,"Name":"Lord Arsey KING","Points":8505,"X":580,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441868Z"},{"ID":5087,"Name":"ChceszPokojuSzykujSięDoWojny","Points":6513,"X":457,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44187Z"},{"ID":5088,"Name":"ƚmieszkiii","Points":8199,"X":487,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44187Z"},{"ID":5089,"Name":"Cast Away 007","Points":10138,"X":449,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441873Z"},{"ID":5090,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":573,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441875Z"},{"ID":5091,"Name":"217 Sydney","Points":9761,"X":529,"Y":441,"Continent":"K45","Bonus":3,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441877Z"},{"ID":5092,"Name":"073","Points":10495,"X":585,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441877Z"},{"ID":5093,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":573,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441879Z"},{"ID":5094,"Name":"0BrunO","Points":8388,"X":470,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441881Z"},{"ID":5095,"Name":"PRO8L3M","Points":10311,"X":451,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441883Z"},{"ID":5096,"Name":"Merhet","Points":6630,"X":520,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441883Z"},{"ID":5097,"Name":"128 La Paz","Points":9761,"X":464,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441885Z"},{"ID":5098,"Name":"~021.","Points":10495,"X":489,"Y":567,"Continent":"K54","Bonus":1,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441887Z"},{"ID":5099,"Name":"WesoƂych ƚwiąt","Points":11653,"X":563,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441889Z"},{"ID":5100,"Name":"027","Points":3718,"X":467,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441889Z"},{"ID":5101,"Name":"06 Polska","Points":10426,"X":584,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441891Z"},{"ID":5102,"Name":"031","Points":10348,"X":455,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441893Z"},{"ID":5103,"Name":"Horyzont zdarzeƄ","Points":9835,"X":532,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441895Z"},{"ID":5104,"Name":"Erebor","Points":10237,"X":505,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441895Z"},{"ID":5105,"Name":"Szlachcic 032","Points":9338,"X":562,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441897Z"},{"ID":5106,"Name":"052","Points":10160,"X":532,"Y":576,"Continent":"K55","Bonus":1,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441899Z"},{"ID":5107,"Name":"010","Points":10481,"X":466,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441901Z"},{"ID":5108,"Name":"!Wioska 421","Points":10636,"X":552,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441901Z"},{"ID":5109,"Name":"+44 61 Looberghe","Points":9797,"X":417,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441904Z"},{"ID":5110,"Name":"Szlachcic","Points":9696,"X":494,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441906Z"},{"ID":5111,"Name":"~~LatającyHolender~~","Points":10141,"X":582,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441908Z"},{"ID":5112,"Name":"- 038 -","Points":10000,"X":535,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441908Z"},{"ID":5113,"Name":"Fajna 074","Points":8372,"X":456,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44191Z"},{"ID":5114,"Name":"*Front_27","Points":9638,"X":453,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441912Z"},{"ID":5115,"Name":"Butem w Morgen","Points":10342,"X":489,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441914Z"},{"ID":5116,"Name":"Gattacka","Points":10268,"X":578,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441914Z"},{"ID":5117,"Name":"Butem w Morgen","Points":10495,"X":554,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441916Z"},{"ID":5118,"Name":"A041","Points":10495,"X":507,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441918Z"},{"ID":5119,"Name":"Carsultyal.","Points":9711,"X":484,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44192Z"},{"ID":5120,"Name":"Wioska MatiĆčĆșĆș","Points":4294,"X":554,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441922Z"},{"ID":5121,"Name":"W007","Points":9220,"X":446,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441922Z"},{"ID":5122,"Name":"NOT?","Points":10042,"X":413,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441924Z"},{"ID":5123,"Name":"Wioska barbarzyƄska","Points":9650,"X":511,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441926Z"},{"ID":5124,"Name":"0004 kolejowo","Points":10019,"X":503,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441928Z"},{"ID":5125,"Name":"NOT!","Points":10042,"X":465,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441929Z"},{"ID":5126,"Name":"JF5","Points":5328,"X":553,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44193Z"},{"ID":5127,"Name":"002","Points":8809,"X":524,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441932Z"},{"ID":5128,"Name":"NOT?","Points":10042,"X":411,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441935Z"},{"ID":5129,"Name":"062 Francja","Points":10495,"X":573,"Y":455,"Continent":"K45","Bonus":8,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441936Z"},{"ID":5130,"Name":"xxxx","Points":10495,"X":505,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441938Z"},{"ID":5131,"Name":"JF3","Points":6189,"X":555,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44194Z"},{"ID":5133,"Name":"Mzm45","Points":10426,"X":573,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441942Z"},{"ID":5134,"Name":"024","Points":9744,"X":566,"Y":547,"Continent":"K55","Bonus":7,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441942Z"},{"ID":5135,"Name":"-xx12","Points":10393,"X":491,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441944Z"},{"ID":5136,"Name":"ƚmieszkii","Points":9046,"X":516,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441946Z"},{"ID":5137,"Name":"Szlachcic","Points":9617,"X":510,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441948Z"},{"ID":5138,"Name":"Jaaa","Points":10475,"X":579,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441948Z"},{"ID":5139,"Name":"Szlachcic","Points":10063,"X":493,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44195Z"},{"ID":5140,"Name":"|009|","Points":10178,"X":552,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441952Z"},{"ID":5141,"Name":"Jaaa","Points":10495,"X":585,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441954Z"},{"ID":5142,"Name":"-043-","Points":10238,"X":470,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441954Z"},{"ID":5143,"Name":"0094","Points":10220,"X":457,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441956Z"},{"ID":5144,"Name":"Mzm22.","Points":10362,"X":561,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441958Z"},{"ID":5145,"Name":"x15","Points":10285,"X":427,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44196Z"},{"ID":5146,"Name":"B050","Points":9277,"X":475,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44196Z"},{"ID":5147,"Name":"PrzypaƂ","Points":9016,"X":560,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441962Z"},{"ID":5148,"Name":"Jaaa","Points":10397,"X":580,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441964Z"},{"ID":5149,"Name":"F023","Points":9861,"X":491,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.44197Z"},{"ID":5151,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":513,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441971Z"},{"ID":5152,"Name":"Wioska BarbarzyƄska","Points":10019,"X":543,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441973Z"},{"ID":5153,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441974Z"},{"ID":5154,"Name":"[111] North111","Points":10068,"X":577,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441976Z"},{"ID":5155,"Name":"003","Points":7089,"X":505,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441977Z"},{"ID":5156,"Name":"NOT?","Points":8741,"X":432,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441979Z"},{"ID":5157,"Name":"A07","Points":9994,"X":552,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441981Z"},{"ID":5158,"Name":"DOM 2","Points":9555,"X":563,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.441982Z"},{"ID":5159,"Name":".:071:. Chillout","Points":3573,"X":513,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475314Z"},{"ID":5160,"Name":"Wioska BarbarzyƄska","Points":10019,"X":556,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47532Z"},{"ID":5161,"Name":"#0108 MaƂaszewicze","Points":9251,"X":472,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475325Z"},{"ID":5162,"Name":"Belvedere 002","Points":10290,"X":577,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475328Z"},{"ID":5163,"Name":"- 035 -","Points":10000,"X":535,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475331Z"},{"ID":5164,"Name":"Ateny_57","Points":8667,"X":473,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475332Z"},{"ID":5165,"Name":"Jetlag!","Points":9835,"X":498,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475335Z"},{"ID":5166,"Name":"KIELBA 076","Points":10217,"X":475,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47534Z"},{"ID":5167,"Name":"+44 74 Conchil le Temple","Points":9715,"X":446,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475363Z"},{"ID":5168,"Name":"Pf Konfederacja","Points":9516,"X":484,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475364Z"},{"ID":5169,"Name":"W.181/24","Points":10242,"X":613,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475371Z"},{"ID":5170,"Name":"020. Kompania Braci","Points":9249,"X":540,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475377Z"},{"ID":5171,"Name":"[007] Patyon ka","Points":10068,"X":603,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475383Z"},{"ID":5172,"Name":"Taran","Points":10237,"X":582,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475384Z"},{"ID":5173,"Name":"025","Points":9756,"X":543,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47539Z"},{"ID":5174,"Name":"047","Points":9747,"X":427,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475398Z"},{"ID":5175,"Name":"070","Points":10311,"X":563,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475404Z"},{"ID":5176,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":438,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475406Z"},{"ID":5177,"Name":"#0032 Suwalki","Points":10000,"X":483,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475411Z"},{"ID":5178,"Name":"012","Points":8622,"X":529,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475418Z"},{"ID":5179,"Name":"015","Points":10311,"X":572,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475424Z"},{"ID":5180,"Name":"B009","Points":10019,"X":552,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475426Z"},{"ID":5181,"Name":"COUSINS...,,,,...","Points":10051,"X":485,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475432Z"},{"ID":5182,"Name":"014","Points":2766,"X":460,"Y":531,"Continent":"K54","Bonus":1,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475441Z"},{"ID":5183,"Name":"Joms 040","Points":10273,"X":548,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475447Z"},{"ID":5184,"Name":"Marienburg 6","Points":3099,"X":527,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475449Z"},{"ID":5186,"Name":"~051.","Points":10495,"X":488,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475456Z"},{"ID":5187,"Name":".:075:. Takmahal","Points":10600,"X":526,"Y":443,"Continent":"K45","Bonus":2,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475464Z"},{"ID":5188,"Name":"xxx","Points":10495,"X":482,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475471Z"},{"ID":5189,"Name":"#0073 JeĆŒ","Points":10019,"X":493,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475472Z"},{"ID":5190,"Name":"NOT?","Points":2168,"X":439,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475485Z"},{"ID":5191,"Name":"Warzywniak 003","Points":1279,"X":447,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475495Z"},{"ID":5192,"Name":"008","Points":8493,"X":573,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475503Z"},{"ID":5193,"Name":".:037:. OgĂłrki","Points":9742,"X":512,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475504Z"},{"ID":5194,"Name":"Wioska tnt3nt","Points":11321,"X":510,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475511Z"},{"ID":5195,"Name":"JK4","Points":6189,"X":559,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475519Z"},{"ID":5196,"Name":"Os Konfederacja +","Points":8647,"X":471,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475527Z"},{"ID":5197,"Name":"MOTEL 5","Points":9741,"X":566,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475528Z"},{"ID":5198,"Name":"Suppi","Points":9283,"X":433,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.475538Z"},{"ID":5199,"Name":"#029","Points":8785,"X":490,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47621Z"},{"ID":5200,"Name":"+44 83 Lyon Mermoz","Points":9860,"X":438,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476229Z"},{"ID":5201,"Name":"Wioska barbarzyƄska","Points":10947,"X":535,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47623Z"},{"ID":5202,"Name":"Wioska 509","Points":10495,"X":574,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476249Z"},{"ID":5203,"Name":"Wioska (030)","Points":9232,"X":568,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476257Z"},{"ID":5204,"Name":"-10-","Points":10164,"X":589,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476264Z"},{"ID":5205,"Name":"Wioska barbarzyƄska","Points":2875,"X":456,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476265Z"},{"ID":5206,"Name":"005 Jose2k15","Points":10495,"X":393,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476273Z"},{"ID":5207,"Name":"051 |","Points":9976,"X":563,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476286Z"},{"ID":5208,"Name":"K44 x017","Points":10705,"X":452,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476297Z"},{"ID":5209,"Name":"138 Tepic","Points":9761,"X":467,"Y":483,"Continent":"K44","Bonus":8,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476298Z"},{"ID":5210,"Name":"Brat447","Points":10476,"X":418,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476306Z"},{"ID":5211,"Name":"K44 x015.","Points":10658,"X":459,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476313Z"},{"ID":5212,"Name":"Suppi","Points":9570,"X":441,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47632Z"},{"ID":5213,"Name":"Pf Konfederacja","Points":10068,"X":495,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476322Z"},{"ID":5214,"Name":"yogi","Points":10019,"X":531,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476333Z"},{"ID":5215,"Name":"NOT?","Points":3410,"X":428,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47634Z"},{"ID":5216,"Name":"NOT?","Points":10042,"X":412,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476348Z"},{"ID":5218,"Name":"016","Points":10019,"X":583,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476349Z"},{"ID":5219,"Name":"066 Irlandia","Points":10495,"X":574,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476356Z"},{"ID":5220,"Name":"Wioska barbarzyƄska","Points":5011,"X":623,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476365Z"},{"ID":5221,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476374Z"},{"ID":5222,"Name":"7.62 mm","Points":5937,"X":547,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476375Z"},{"ID":5223,"Name":"BucksbarzyƄsKamiiiru","Points":8899,"X":425,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476385Z"},{"ID":5224,"Name":"*Ateny_40","Points":9595,"X":472,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476393Z"},{"ID":5225,"Name":"-037-","Points":10479,"X":458,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476401Z"},{"ID":5226,"Name":"Szlachcic","Points":9200,"X":504,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476409Z"},{"ID":5227,"Name":"0075","Points":10495,"X":501,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47641Z"},{"ID":5228,"Name":"B034","Points":10229,"X":489,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476423Z"},{"ID":5229,"Name":"F058","Points":9410,"X":492,"Y":516,"Continent":"K54","Bonus":4,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476433Z"},{"ID":5230,"Name":"PiekƂo to inni","Points":10160,"X":528,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476444Z"},{"ID":5231,"Name":"044","Points":4428,"X":546,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476446Z"},{"ID":5234,"Name":"088 Orzech macadamia","Points":10164,"X":544,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476453Z"},{"ID":5235,"Name":"Wioska barbarzyƄska","Points":10285,"X":435,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476461Z"},{"ID":5236,"Name":"C036","Points":10160,"X":530,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476471Z"},{"ID":5237,"Name":"NOT?","Points":10042,"X":420,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476472Z"},{"ID":5238,"Name":"9.3 Gitara","Points":10471,"X":545,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476488Z"},{"ID":5239,"Name":"!Wioska 437","Points":12154,"X":556,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476498Z"},{"ID":5240,"Name":"002 Oklahoma City","Points":9761,"X":442,"Y":478,"Continent":"K44","Bonus":8,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476511Z"},{"ID":5241,"Name":"FilipV","Points":10008,"X":447,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476513Z"},{"ID":5242,"Name":"00632","Points":9882,"X":442,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476525Z"},{"ID":5243,"Name":"001","Points":4752,"X":471,"Y":514,"Continent":"K54","Bonus":5,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476535Z"},{"ID":5244,"Name":"2. Rybnik","Points":10544,"X":510,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476544Z"},{"ID":5245,"Name":"09 Valhalla","Points":9462,"X":502,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476545Z"},{"ID":5246,"Name":"+44 71 Cucq","Points":9849,"X":418,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476552Z"},{"ID":5247,"Name":"+44 72 Beutin","Points":9669,"X":422,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476561Z"},{"ID":5249,"Name":"074.","Points":9944,"X":567,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476568Z"},{"ID":5250,"Name":"067 Islandia","Points":10495,"X":572,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47657Z"},{"ID":5251,"Name":"082.","Points":10252,"X":496,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476577Z"},{"ID":5252,"Name":"043 Vasperland","Points":10495,"X":602,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476587Z"},{"ID":5253,"Name":"Horyzont zdarzeƄ","Points":9835,"X":517,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476594Z"},{"ID":5254,"Name":".:015:. Chillout","Points":7309,"X":515,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476596Z"},{"ID":5255,"Name":".:082:.JuanPabloII","Points":8720,"X":540,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476604Z"},{"ID":5256,"Name":"Wioska LoRd BoNiO","Points":1831,"X":570,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699019249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476613Z"},{"ID":5257,"Name":"015.","Points":9902,"X":524,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47662Z"},{"ID":5258,"Name":"lady","Points":10471,"X":500,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476622Z"},{"ID":5259,"Name":"SS03","Points":6899,"X":533,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":699744766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476629Z"},{"ID":5260,"Name":"Os Konfederacja","Points":9791,"X":481,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476637Z"},{"ID":5261,"Name":"A0174","Points":10362,"X":382,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476645Z"},{"ID":5262,"Name":"[149]","Points":9509,"X":552,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476646Z"},{"ID":5263,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476652Z"},{"ID":5264,"Name":"015","Points":9068,"X":477,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476661Z"},{"ID":5265,"Name":"033.","Points":10252,"X":504,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476666Z"},{"ID":5266,"Name":"Ateny_80","Points":5368,"X":471,"Y":524,"Continent":"K54","Bonus":2,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476668Z"},{"ID":5267,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":436,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476674Z"},{"ID":5268,"Name":"*INTERTWINED*","Points":9520,"X":470,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476681Z"},{"ID":5269,"Name":"*INTERTWINED*","Points":9711,"X":469,"Y":572,"Continent":"K54","Bonus":7,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476687Z"},{"ID":5270,"Name":"Monetki","Points":10290,"X":481,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476688Z"},{"ID":5271,"Name":"lady","Points":8514,"X":498,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476695Z"},{"ID":5272,"Name":"PiekƂo to inni","Points":9738,"X":520,"Y":473,"Continent":"K45","Bonus":4,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4767Z"},{"ID":5273,"Name":"Wioska barbarzyƄska","Points":3146,"X":442,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699859013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476703Z"},{"ID":5274,"Name":"037","Points":10495,"X":585,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476704Z"},{"ID":5275,"Name":"011","Points":8186,"X":536,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476707Z"},{"ID":5276,"Name":"+44 75 Tassin Le Bourg","Points":9860,"X":455,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47671Z"},{"ID":5277,"Name":"026 Lafayette","Points":9761,"X":447,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476712Z"},{"ID":5278,"Name":"Szlachcic","Points":10237,"X":470,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476713Z"},{"ID":5279,"Name":"120 s000","Points":8326,"X":401,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476716Z"},{"ID":5280,"Name":"Szlachcic 033","Points":9338,"X":555,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476718Z"},{"ID":5281,"Name":"Szlachcic","Points":10237,"X":582,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476721Z"},{"ID":5282,"Name":"2 KRÓLESTWO f?","Points":8147,"X":537,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476721Z"},{"ID":5283,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":446,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476724Z"},{"ID":5284,"Name":"x02","Points":10139,"X":545,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476727Z"},{"ID":5285,"Name":"014","Points":8493,"X":560,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476729Z"},{"ID":5286,"Name":"Monetki","Points":10294,"X":475,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47673Z"},{"ID":5287,"Name":"[150] North","Points":10052,"X":578,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476733Z"},{"ID":5288,"Name":"Szlachcic","Points":10292,"X":489,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476736Z"},{"ID":5289,"Name":"0035 K54 and987 OZDR.","Points":9845,"X":499,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476738Z"},{"ID":5290,"Name":"{001} Asta","Points":10495,"X":538,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476739Z"},{"ID":5291,"Name":"(014)","Points":10144,"X":419,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476741Z"},{"ID":5292,"Name":"Szlachcic 049","Points":8851,"X":567,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476745Z"},{"ID":5293,"Name":"015","Points":4371,"X":564,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476747Z"},{"ID":5294,"Name":"[078]","Points":10173,"X":525,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476751Z"},{"ID":5295,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":443,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476751Z"},{"ID":5296,"Name":"PiekƂo to inni","Points":10160,"X":525,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476754Z"},{"ID":5297,"Name":"Joms 016","Points":10030,"X":519,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476757Z"},{"ID":5298,"Name":"028","Points":10129,"X":420,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47676Z"},{"ID":5299,"Name":"A050","Points":10178,"X":501,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47676Z"},{"ID":5300,"Name":"Monetki","Points":10226,"X":473,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476763Z"},{"ID":5301,"Name":"Fajna008","Points":2015,"X":464,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476766Z"},{"ID":5302,"Name":"SoƂtys Wsi Dejvvvvv","Points":10237,"X":441,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476769Z"},{"ID":5303,"Name":"Wioska barbarzyƄska","Points":5127,"X":583,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476769Z"},{"ID":5305,"Name":".:087:.JuanPabloII","Points":6962,"X":541,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476772Z"},{"ID":5307,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":426,"Y":464,"Continent":"K44","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476775Z"},{"ID":5308,"Name":"#0052 Traumon","Points":10362,"X":488,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476777Z"},{"ID":5309,"Name":"KIELBA 105","Points":10218,"X":454,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476778Z"},{"ID":5311,"Name":"!Wioska 405","Points":10838,"X":564,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476781Z"},{"ID":5312,"Name":"Knowhere","Points":10452,"X":379,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476784Z"},{"ID":5313,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476787Z"},{"ID":5314,"Name":"056 |","Points":10311,"X":549,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476787Z"},{"ID":5315,"Name":"[A]_[038] Dejv.oldplyr","Points":10495,"X":408,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476791Z"},{"ID":5316,"Name":"Os Konfederacja","Points":10201,"X":475,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476793Z"},{"ID":5317,"Name":"002. Zwiadowcy","Points":10106,"X":480,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476799Z"},{"ID":5318,"Name":"C035","Points":10838,"X":529,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476799Z"},{"ID":5319,"Name":"Gratuluje mĂłzgu","Points":5888,"X":451,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476803Z"},{"ID":5320,"Name":"kek","Points":9922,"X":537,"Y":516,"Continent":"K55","Bonus":1,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476805Z"},{"ID":5321,"Name":"NOT?","Points":6425,"X":429,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476808Z"},{"ID":5322,"Name":"*INTERTWINED*","Points":9038,"X":488,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476809Z"},{"ID":5323,"Name":"JaamMwG 030","Points":9745,"X":523,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476811Z"},{"ID":5324,"Name":"Wioska kinia 20","Points":4925,"X":540,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699127546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476814Z"},{"ID":5325,"Name":"00621 Wioska","Points":7092,"X":442,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476817Z"},{"ID":5326,"Name":".:003:. Chillout","Points":8597,"X":513,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476817Z"},{"ID":5327,"Name":"Osada","Points":10295,"X":494,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476821Z"},{"ID":5328,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10237,"X":454,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476823Z"},{"ID":5329,"Name":"Szlachcic 018","Points":9338,"X":553,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476827Z"},{"ID":5330,"Name":"002. BAKAJOKO","Points":6736,"X":611,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476827Z"},{"ID":5331,"Name":"~~LatającyHolender~~","Points":8396,"X":548,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47683Z"},{"ID":5332,"Name":".achim.","Points":10311,"X":538,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476833Z"},{"ID":5333,"Name":"019","Points":8664,"X":532,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476836Z"},{"ID":5334,"Name":"OgrĂłd Warzywny","Points":9505,"X":445,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476837Z"},{"ID":5335,"Name":"Kasyno","Points":10122,"X":447,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47684Z"},{"ID":5336,"Name":"Front_36","Points":2221,"X":457,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476843Z"},{"ID":5337,"Name":"OgrĂłd Warzywny","Points":10452,"X":450,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476846Z"},{"ID":5338,"Name":"Wioska barbarzyƄska","Points":10067,"X":464,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476846Z"},{"ID":5339,"Name":".achim.","Points":7777,"X":531,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476849Z"},{"ID":5340,"Name":"Suppi","Points":9553,"X":425,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476852Z"},{"ID":5341,"Name":"ADEN","Points":10090,"X":563,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476855Z"},{"ID":5342,"Name":"Czujnoƛć to podstawa","Points":10042,"X":593,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476856Z"},{"ID":5343,"Name":"046.","Points":9813,"X":504,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476859Z"},{"ID":5344,"Name":"HELMOWY RAJ","Points":10569,"X":533,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476862Z"},{"ID":5345,"Name":"024","Points":10042,"X":415,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476865Z"},{"ID":5346,"Name":"124","Points":10311,"X":548,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476865Z"},{"ID":5347,"Name":"PRO8L3M","Points":10495,"X":453,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476868Z"},{"ID":5348,"Name":"NOT?","Points":10042,"X":424,"Y":520,"Continent":"K54","Bonus":5,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476871Z"},{"ID":5349,"Name":".achim.","Points":10311,"X":525,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476874Z"},{"ID":5350,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476874Z"},{"ID":5351,"Name":"Wioska barbarzyƄska","Points":10223,"X":435,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476877Z"},{"ID":5352,"Name":"MasteroN 06","Points":10135,"X":568,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47688Z"},{"ID":5353,"Name":"Gryfios 002","Points":10495,"X":615,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476883Z"},{"ID":5354,"Name":"0025","Points":10495,"X":530,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476883Z"},{"ID":5355,"Name":"003. Novigrad","Points":10495,"X":562,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476886Z"},{"ID":5356,"Name":"Szlachcic","Points":10237,"X":567,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476889Z"},{"ID":5357,"Name":"Kasyno","Points":6601,"X":442,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476892Z"},{"ID":5358,"Name":"NOT?","Points":9921,"X":425,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476893Z"},{"ID":5359,"Name":"*Ateny_26","Points":9394,"X":474,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476896Z"},{"ID":5360,"Name":"PiekƂo to inni","Points":9507,"X":516,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476898Z"},{"ID":5361,"Name":"-[007]- Dhaulagiri","Points":8063,"X":553,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476901Z"},{"ID":5362,"Name":"NOT?","Points":9029,"X":431,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476904Z"},{"ID":5363,"Name":"PRO8L3M","Points":2421,"X":432,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476904Z"},{"ID":5364,"Name":"BucksbarzyƄsKamiiiru","Points":8820,"X":427,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476908Z"},{"ID":5365,"Name":"PiekƂo to inni","Points":9312,"X":517,"Y":476,"Continent":"K45","Bonus":5,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47691Z"},{"ID":5366,"Name":"001","Points":10019,"X":558,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476913Z"},{"ID":5367,"Name":"185 Baranquilla","Points":9771,"X":468,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476913Z"},{"ID":5368,"Name":"xwqe","Points":1770,"X":455,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476916Z"},{"ID":5369,"Name":"Osada","Points":10294,"X":503,"Y":443,"Continent":"K45","Bonus":7,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476919Z"},{"ID":5370,"Name":"Szlachcic 034","Points":8024,"X":561,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476922Z"},{"ID":5371,"Name":"0013 MzM","Points":7642,"X":567,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476922Z"},{"ID":5372,"Name":"Sparta_63","Points":8174,"X":494,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476925Z"},{"ID":5373,"Name":"7.62 mm","Points":10019,"X":486,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476928Z"},{"ID":5374,"Name":"PiekƂo to inni","Points":10160,"X":517,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476932Z"},{"ID":5375,"Name":"Jaaa","Points":10476,"X":580,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476932Z"},{"ID":5376,"Name":"Suppi","Points":9562,"X":444,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476935Z"},{"ID":5377,"Name":"FAKE OR OFF","Points":9816,"X":438,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476937Z"},{"ID":5378,"Name":"00951","Points":6520,"X":458,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47694Z"},{"ID":5379,"Name":"032","Points":10495,"X":565,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476941Z"},{"ID":5380,"Name":"Z01 Galicznik","Points":10426,"X":561,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476944Z"},{"ID":5381,"Name":"Monetki","Points":10303,"X":479,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476946Z"},{"ID":5382,"Name":"JM1","Points":7064,"X":559,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476949Z"},{"ID":5383,"Name":"Wioska BontaBom","Points":4115,"X":556,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":1957280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47695Z"},{"ID":5384,"Name":"[075] Vermoord jou","Points":10395,"X":529,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476953Z"},{"ID":5385,"Name":"+44 72 Wacquinghen","Points":9860,"X":426,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476955Z"},{"ID":5386,"Name":"002","Points":10160,"X":623,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476958Z"},{"ID":5387,"Name":".:038:. Studnia","Points":9244,"X":512,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476959Z"},{"ID":5388,"Name":"2+2x2","Points":10446,"X":509,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476962Z"},{"ID":5389,"Name":"xxx","Points":10971,"X":522,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476964Z"},{"ID":5390,"Name":"F049","Points":8842,"X":489,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476967Z"},{"ID":5391,"Name":"0018|Berlin","Points":9441,"X":511,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476968Z"},{"ID":5392,"Name":"7.62 mm","Points":10019,"X":498,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476971Z"},{"ID":5393,"Name":"ZasiedmiogĂłrogrĂłd","Points":6709,"X":541,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476973Z"},{"ID":5394,"Name":".achim.","Points":6125,"X":523,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476976Z"},{"ID":5395,"Name":"Suppi","Points":9565,"X":444,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476977Z"},{"ID":5396,"Name":"PiekƂo to inni","Points":10160,"X":516,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47698Z"},{"ID":5397,"Name":"0063 b12","Points":5986,"X":454,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476983Z"},{"ID":5398,"Name":"Wioska iver1","Points":6821,"X":515,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476986Z"},{"ID":5399,"Name":"014","Points":9744,"X":569,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476986Z"},{"ID":5400,"Name":"001 Viborg","Points":10238,"X":599,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476989Z"},{"ID":5401,"Name":"NOT?","Points":2867,"X":433,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476994Z"},{"ID":5402,"Name":"010 Fiona","Points":9443,"X":447,"Y":509,"Continent":"K54","Bonus":8,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476997Z"},{"ID":5403,"Name":"Village","Points":12154,"X":516,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.476997Z"},{"ID":5404,"Name":"Szlachcic","Points":9968,"X":490,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477Z"},{"ID":5405,"Name":"003","Points":9873,"X":405,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477003Z"},{"ID":5406,"Name":"Warzywniak 015","Points":2472,"X":453,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477005Z"},{"ID":5407,"Name":"013 Kuasta","Points":9918,"X":614,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477006Z"},{"ID":5408,"Name":"0001","Points":10010,"X":466,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477009Z"},{"ID":5409,"Name":"Joms 036","Points":8003,"X":532,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477011Z"},{"ID":5410,"Name":"Pf Konfederacja","Points":9938,"X":486,"Y":486,"Continent":"K44","Bonus":8,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477015Z"},{"ID":5411,"Name":"~~LatającyHolender~~","Points":10160,"X":552,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477015Z"},{"ID":5412,"Name":"00761","Points":8167,"X":449,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477018Z"},{"ID":5414,"Name":"Szlachcic","Points":10237,"X":575,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477021Z"},{"ID":5415,"Name":"Osada","Points":9899,"X":495,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477024Z"},{"ID":5416,"Name":"Szlachcic","Points":10237,"X":579,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477024Z"},{"ID":5417,"Name":"Wioska barbarzyƄska","Points":10008,"X":432,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477027Z"},{"ID":5418,"Name":"7.62 mm","Points":10019,"X":505,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47703Z"},{"ID":5419,"Name":"A0153","Points":10362,"X":381,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477033Z"},{"ID":5420,"Name":"#0063 DMT","Points":10008,"X":496,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477033Z"},{"ID":5421,"Name":".:010:. Chillout","Points":7622,"X":502,"Y":414,"Continent":"K45","Bonus":6,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477036Z"},{"ID":5422,"Name":"kathare","Points":10495,"X":498,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477039Z"},{"ID":5423,"Name":"003. ALFI","Points":1318,"X":472,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477041Z"},{"ID":5424,"Name":"Wioska barbarzyƄska","Points":1660,"X":451,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477042Z"},{"ID":5425,"Name":"NOT?","Points":8009,"X":427,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477045Z"},{"ID":5426,"Name":"Suppi","Points":9570,"X":426,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477048Z"},{"ID":5427,"Name":"023. Wioska kaszak10","Points":10252,"X":579,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477051Z"},{"ID":5428,"Name":"Szlachcic 048","Points":8024,"X":574,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477054Z"},{"ID":5429,"Name":"#12.","Points":10971,"X":519,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477054Z"},{"ID":5430,"Name":"Brat447","Points":10479,"X":452,"Y":498,"Continent":"K44","Bonus":3,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477057Z"},{"ID":5431,"Name":"13 | Rozbojowisko","Points":8286,"X":537,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477059Z"},{"ID":5432,"Name":"Front_32","Points":5963,"X":453,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477062Z"},{"ID":5433,"Name":"Jaaa","Points":10476,"X":581,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477063Z"},{"ID":5434,"Name":"KIELBA 104","Points":10223,"X":452,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477066Z"},{"ID":5435,"Name":"SsSs","Points":7058,"X":464,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477069Z"},{"ID":5436,"Name":"Wioska barbarzyƄska","Points":10425,"X":584,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477072Z"},{"ID":5438,"Name":"P.033","Points":10346,"X":544,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477072Z"},{"ID":5439,"Name":"Zeta Reticuli 0S","Points":10728,"X":417,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477075Z"},{"ID":5440,"Name":"xxx","Points":9290,"X":503,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477078Z"},{"ID":5441,"Name":"0063 b16qqqqqqqqqqqqqqqqqqqq","Points":10083,"X":454,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47708Z"},{"ID":5442,"Name":"B061","Points":10495,"X":473,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477081Z"},{"ID":5443,"Name":"#0006 ToĆŒsamoƛć","Points":10019,"X":492,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477084Z"},{"ID":5444,"Name":"NOT?","Points":5884,"X":437,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477087Z"},{"ID":5445,"Name":"183","Points":9815,"X":562,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47709Z"},{"ID":5446,"Name":"113.","Points":6345,"X":531,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47709Z"},{"ID":5447,"Name":"Horyzont zdarzeƄ","Points":10019,"X":527,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477093Z"},{"ID":5448,"Name":"NOT?","Points":8649,"X":428,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477096Z"},{"ID":5449,"Name":"Szlachcic","Points":10237,"X":573,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477099Z"},{"ID":5450,"Name":"keepo","Points":10495,"X":480,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477099Z"},{"ID":5451,"Name":"Fajna 021","Points":1610,"X":450,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477102Z"},{"ID":5452,"Name":"xxx","Points":10495,"X":510,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477105Z"},{"ID":5453,"Name":"Osada koczownikĂłw","Points":8908,"X":492,"Y":534,"Continent":"K54","Bonus":6,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477107Z"},{"ID":5454,"Name":".achim.","Points":8091,"X":540,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477108Z"},{"ID":5455,"Name":"Szlachcic !!!","Points":10292,"X":488,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47711Z"},{"ID":5456,"Name":"+44 72 Villeurbanne Cusset","Points":9872,"X":429,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477114Z"},{"ID":5457,"Name":"Strasznie MiƂy Sąsiad!","Points":9735,"X":549,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477117Z"},{"ID":5458,"Name":"Dioda v2","Points":9757,"X":539,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477117Z"},{"ID":5459,"Name":"PRO8L3M","Points":10311,"X":452,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47712Z"},{"ID":5460,"Name":"Wioska barbarzyƄska","Points":9994,"X":570,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477123Z"},{"ID":5461,"Name":"7.62 mm","Points":10019,"X":495,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477126Z"},{"ID":5462,"Name":"Nottingham","Points":5169,"X":554,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477126Z"},{"ID":5463,"Name":"Myk i do kieszonki","Points":9799,"X":385,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477129Z"},{"ID":5464,"Name":"080. ALFI","Points":1858,"X":480,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477132Z"},{"ID":5466,"Name":"F057","Points":9337,"X":494,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477135Z"},{"ID":5467,"Name":"016","Points":4313,"X":568,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477135Z"},{"ID":5468,"Name":"SsSs","Points":10149,"X":438,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477138Z"},{"ID":5469,"Name":"#050","Points":7253,"X":524,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477141Z"},{"ID":5470,"Name":"ladyanima","Points":9613,"X":513,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477144Z"},{"ID":5471,"Name":"Szlachcic","Points":10117,"X":557,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477144Z"},{"ID":5472,"Name":"DARMA TUTEK101MZMNIEUMIECZYTAĆ","Points":7414,"X":585,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477147Z"},{"ID":5473,"Name":"Wioska 001","Points":9981,"X":491,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47715Z"},{"ID":5474,"Name":"Monetki","Points":10295,"X":474,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477153Z"},{"ID":5475,"Name":"C 011 D.GĂłrnicza","Points":9718,"X":413,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477153Z"},{"ID":5476,"Name":"Sparta_38","Points":9638,"X":483,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477156Z"},{"ID":5477,"Name":"~~LatającyHolender~~","Points":9561,"X":557,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477159Z"},{"ID":5478,"Name":"slow","Points":10485,"X":534,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477162Z"},{"ID":5479,"Name":"0082","Points":10453,"X":444,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477162Z"},{"ID":5480,"Name":"x09","Points":10267,"X":558,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477166Z"},{"ID":5481,"Name":"Monetki","Points":10096,"X":479,"Y":423,"Continent":"K44","Bonus":4,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477169Z"},{"ID":5482,"Name":"CALL 964","Points":10311,"X":542,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477172Z"},{"ID":5483,"Name":"Wioska barbarzyƄska","Points":9694,"X":569,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477172Z"},{"ID":5484,"Name":"016. Wioska Ronin1995","Points":10252,"X":568,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477175Z"},{"ID":5485,"Name":"036.","Points":10237,"X":490,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477177Z"},{"ID":5486,"Name":"Joms 019","Points":9775,"X":531,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47718Z"},{"ID":5487,"Name":"*Ateny_39","Points":5085,"X":465,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477181Z"},{"ID":5488,"Name":"KoƄczyć czas:)","Points":9902,"X":550,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477186Z"},{"ID":5489,"Name":"*INTERTWINED*","Points":9711,"X":477,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477189Z"},{"ID":5490,"Name":"Ondulina","Points":9293,"X":444,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477192Z"},{"ID":5491,"Name":"010. Topielica","Points":10237,"X":496,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477196Z"},{"ID":5492,"Name":"073. ALFI","Points":1855,"X":488,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477197Z"},{"ID":5493,"Name":"Wioska BarbarzyƄska","Points":9750,"X":545,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477202Z"},{"ID":5494,"Name":"Kasyno","Points":9994,"X":447,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477206Z"},{"ID":5495,"Name":"OgrĂłd Warzywny","Points":11130,"X":462,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477209Z"},{"ID":5496,"Name":"005","Points":9655,"X":561,"Y":542,"Continent":"K55","Bonus":1,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477209Z"},{"ID":5497,"Name":"#06.","Points":10252,"X":526,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477213Z"},{"ID":5498,"Name":"[092]","Points":9959,"X":560,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477216Z"},{"ID":5499,"Name":"0181","Points":8099,"X":474,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477219Z"},{"ID":5500,"Name":"006 Plac Wilsona","Points":5957,"X":535,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477219Z"},{"ID":5501,"Name":"7.62 mm","Points":9529,"X":465,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477222Z"},{"ID":5502,"Name":"Marienburg 9","Points":8747,"X":532,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477225Z"},{"ID":5503,"Name":"KIELBA 033","Points":10495,"X":454,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477229Z"},{"ID":5504,"Name":"Szlachcic","Points":9721,"X":572,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477229Z"},{"ID":5505,"Name":"*Ateny_28","Points":5205,"X":466,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477232Z"},{"ID":5506,"Name":"112 Fuga","Points":8774,"X":541,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477235Z"},{"ID":5507,"Name":"Ręcznik do zmiany","Points":11691,"X":423,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477237Z"},{"ID":5508,"Name":"...Just like that","Points":10452,"X":468,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477238Z"},{"ID":5509,"Name":"[005] Hil zaitez","Points":10306,"X":586,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47724Z"},{"ID":5510,"Name":"[027] K D","Points":10013,"X":584,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477244Z"},{"ID":5511,"Name":"Szlachcic","Points":9657,"X":552,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477246Z"},{"ID":5512,"Name":"0056","Points":10952,"X":605,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477247Z"},{"ID":5513,"Name":"Jaaa","Points":10484,"X":569,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47725Z"},{"ID":5514,"Name":"+44 72 Vaulx en Velin","Points":9846,"X":428,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477252Z"},{"ID":5515,"Name":"[054] pa ZZI BEST dude","Points":10362,"X":541,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477255Z"},{"ID":5516,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":449,"Y":456,"Continent":"K44","Bonus":1,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477255Z"},{"ID":5517,"Name":"Brat447","Points":5177,"X":460,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477258Z"},{"ID":5518,"Name":"[025] Wanuchiy QAN","Points":10060,"X":584,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477262Z"},{"ID":5519,"Name":"0005","Points":8142,"X":458,"Y":504,"Continent":"K54","Bonus":9,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477264Z"},{"ID":5520,"Name":"Warzywniak 011","Points":2498,"X":443,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477265Z"},{"ID":5521,"Name":"ChceszPokojuSzykujSięDoWojny","Points":4428,"X":451,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477268Z"},{"ID":5522,"Name":"Wioska Matiyyy","Points":3618,"X":557,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477271Z"},{"ID":5523,"Name":"11*szpica","Points":7479,"X":560,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477274Z"},{"ID":5524,"Name":"PiekƂo to inni","Points":10147,"X":524,"Y":473,"Continent":"K45","Bonus":7,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477275Z"},{"ID":5525,"Name":"ƚmieszkiii","Points":8582,"X":498,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477278Z"},{"ID":5526,"Name":"B042","Points":10495,"X":485,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477282Z"},{"ID":5527,"Name":"Stage group B 7","Points":9047,"X":437,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477284Z"},{"ID":5528,"Name":"20020","Points":7021,"X":503,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477285Z"},{"ID":5529,"Name":"056","Points":7391,"X":545,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477287Z"},{"ID":5530,"Name":"NOT?","Points":10060,"X":433,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47729Z"},{"ID":5531,"Name":"Szlachcic","Points":9856,"X":584,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477293Z"},{"ID":5532,"Name":"Brat447","Points":10479,"X":439,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477293Z"},{"ID":5533,"Name":"rakieta 019","Points":7357,"X":618,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477297Z"},{"ID":5534,"Name":"~~LatającyHolender~~","Points":9179,"X":547,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477299Z"},{"ID":5535,"Name":"0081","Points":9835,"X":441,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477302Z"},{"ID":5536,"Name":"Gattacka","Points":9894,"X":574,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477303Z"},{"ID":5537,"Name":"Szlachcic","Points":10237,"X":468,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477306Z"},{"ID":5538,"Name":"020. A-RE-SE-EY","Points":10252,"X":573,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477309Z"},{"ID":5539,"Name":"[084]","Points":10049,"X":541,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477311Z"},{"ID":5540,"Name":"Brat447","Points":8903,"X":439,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477312Z"},{"ID":5541,"Name":"Suppi","Points":9606,"X":433,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477315Z"},{"ID":5542,"Name":"0059","Points":10495,"X":508,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477318Z"},{"ID":5543,"Name":"A061","Points":10495,"X":504,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47732Z"},{"ID":5544,"Name":"K55","Points":10495,"X":527,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477321Z"},{"ID":5545,"Name":"B055","Points":10111,"X":478,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477323Z"},{"ID":5546,"Name":"Myk i do kieszonki","Points":9799,"X":382,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477326Z"},{"ID":5547,"Name":"007.","Points":9793,"X":524,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477329Z"},{"ID":5548,"Name":"14 | ƚląsk","Points":4848,"X":537,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47733Z"},{"ID":5549,"Name":"MichaƂ","Points":10495,"X":533,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477332Z"},{"ID":5550,"Name":"[184]","Points":7691,"X":549,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477335Z"},{"ID":5551,"Name":"Wioska barbarzyƄska","Points":10484,"X":397,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477338Z"},{"ID":5552,"Name":"0Wioska barbarzyƄska","Points":10495,"X":482,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477338Z"},{"ID":5553,"Name":"xxx","Points":10495,"X":498,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477341Z"},{"ID":5554,"Name":"Winter is coming","Points":9976,"X":507,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477344Z"},{"ID":5555,"Name":"0006","Points":10495,"X":536,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477348Z"},{"ID":5556,"Name":"~058.","Points":10495,"X":487,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477352Z"},{"ID":5557,"Name":"017. ALFI","Points":1421,"X":477,"Y":566,"Continent":"K54","Bonus":2,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477353Z"},{"ID":5558,"Name":"BBB","Points":11228,"X":562,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477355Z"},{"ID":5559,"Name":"NOT?","Points":10042,"X":414,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477358Z"},{"ID":5560,"Name":"#0025 Oskar","Points":10083,"X":491,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477361Z"},{"ID":5561,"Name":"Mzm42","Points":10362,"X":566,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477361Z"},{"ID":5562,"Name":"0008","Points":9940,"X":505,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477364Z"},{"ID":5563,"Name":"Leicester","Points":4796,"X":549,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477367Z"},{"ID":5564,"Name":"00702","Points":10069,"X":451,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47737Z"},{"ID":5565,"Name":"Wioska 510","Points":10495,"X":579,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47737Z"},{"ID":5566,"Name":"7.62 mm","Points":10019,"X":483,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477373Z"},{"ID":5567,"Name":"Szlachcic !!!","Points":9891,"X":485,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477376Z"},{"ID":5568,"Name":"Wioska barbarzyƄska","Points":9644,"X":499,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477379Z"},{"ID":5569,"Name":"K44 013","Points":7594,"X":433,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477379Z"},{"ID":5570,"Name":"~040.","Points":10495,"X":481,"Y":550,"Continent":"K54","Bonus":7,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477382Z"},{"ID":5571,"Name":"035 Atlanta","Points":9761,"X":441,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477388Z"},{"ID":5572,"Name":"Sparta_48","Points":9638,"X":485,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47739Z"},{"ID":5573,"Name":"090 Kazachstan","Points":10495,"X":576,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477391Z"},{"ID":5574,"Name":"Everest","Points":9835,"X":542,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477394Z"},{"ID":5575,"Name":"Szlachcic","Points":10237,"X":587,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477397Z"},{"ID":5576,"Name":"C017","Points":8634,"X":524,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4774Z"},{"ID":5577,"Name":"Szlachcic","Points":9637,"X":494,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4774Z"},{"ID":5578,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":431,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477404Z"},{"ID":5580,"Name":"D05","Points":7883,"X":547,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477407Z"},{"ID":5581,"Name":"xxx","Points":7076,"X":509,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477409Z"},{"ID":5582,"Name":"0062 Wioska","Points":10495,"X":443,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47741Z"},{"ID":5583,"Name":".achim.","Points":9601,"X":516,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477412Z"},{"ID":5584,"Name":"A | Forest Cyaaaanku","Points":9976,"X":389,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477415Z"},{"ID":5585,"Name":"Pf Konfederacja","Points":9621,"X":485,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477418Z"},{"ID":5586,"Name":"Yogi","Points":10019,"X":526,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477419Z"},{"ID":5587,"Name":"Wioska X","Points":4245,"X":543,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477423Z"},{"ID":5588,"Name":"Wioska 404","Points":10495,"X":565,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477426Z"},{"ID":5589,"Name":"003","Points":9664,"X":524,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477428Z"},{"ID":5590,"Name":"Fajna 024","Points":2535,"X":448,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477429Z"},{"ID":5591,"Name":"CALL 1035","Points":9792,"X":545,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477432Z"},{"ID":5592,"Name":"002. Wioska Exano","Points":10252,"X":553,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477434Z"},{"ID":5593,"Name":"CALL 973","Points":10429,"X":544,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477437Z"},{"ID":5594,"Name":"NOT FOR YOU","Points":8307,"X":459,"Y":553,"Continent":"K54","Bonus":2,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477438Z"},{"ID":5595,"Name":"ZBIE","Points":10222,"X":598,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477441Z"},{"ID":5596,"Name":"016 Orlando","Points":9761,"X":443,"Y":471,"Continent":"K44","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477444Z"},{"ID":5598,"Name":"Kapitan_BƂąd","Points":7903,"X":557,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477447Z"},{"ID":5599,"Name":"00821","Points":6081,"X":442,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477447Z"},{"ID":5600,"Name":"FF006","Points":6127,"X":464,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47745Z"},{"ID":5601,"Name":"Szlachcic 004","Points":9338,"X":561,"Y":533,"Continent":"K55","Bonus":5,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477453Z"},{"ID":5602,"Name":"BBB","Points":9556,"X":579,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477456Z"},{"ID":5603,"Name":"005. RusaƂka","Points":9761,"X":507,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477457Z"},{"ID":5604,"Name":"#042","Points":9790,"X":489,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47746Z"},{"ID":5605,"Name":"024","Points":8125,"X":527,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477463Z"},{"ID":5607,"Name":"Wioska defensywna","Points":7104,"X":540,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477467Z"},{"ID":5608,"Name":"A006","Points":10495,"X":492,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477468Z"},{"ID":5609,"Name":"Gratuluje mĂłzgu","Points":10160,"X":450,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477473Z"},{"ID":5610,"Name":".:039:. Sznur","Points":9745,"X":513,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477477Z"},{"ID":5611,"Name":"Marienburgg 10","Points":7012,"X":534,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477485Z"},{"ID":5612,"Name":"Wioska BarbarzyƄska","Points":9271,"X":545,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477486Z"},{"ID":5613,"Name":"A033","Points":10495,"X":477,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477494Z"},{"ID":5614,"Name":"slow","Points":10252,"X":534,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477497Z"},{"ID":5616,"Name":"-8-","Points":11321,"X":588,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4775Z"},{"ID":5617,"Name":".034.","Points":10316,"X":489,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477501Z"},{"ID":5618,"Name":"ƚmieszkii","Points":9375,"X":518,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477504Z"},{"ID":5619,"Name":"054","Points":10042,"X":416,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477508Z"},{"ID":5620,"Name":"Os Konfederacja","Points":9890,"X":479,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477512Z"},{"ID":5621,"Name":"020","Points":6812,"X":522,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477513Z"},{"ID":5622,"Name":"003","Points":10019,"X":622,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477516Z"},{"ID":5624,"Name":"[185]","Points":4543,"X":536,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477518Z"},{"ID":5625,"Name":"019","Points":7512,"X":530,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477521Z"},{"ID":5626,"Name":"Wioska 19","Points":9360,"X":529,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477523Z"},{"ID":5627,"Name":"[156]","Points":7905,"X":545,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477524Z"},{"ID":5628,"Name":"Napewno to nie jest off","Points":10495,"X":489,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477527Z"},{"ID":5629,"Name":"036","Points":9980,"X":458,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477529Z"},{"ID":5630,"Name":"Yogi","Points":10636,"X":533,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477532Z"},{"ID":5631,"Name":"KONFA TO MARKA, NARKA","Points":10444,"X":452,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477532Z"},{"ID":5632,"Name":"Ateny_12","Points":9809,"X":475,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477535Z"},{"ID":5633,"Name":"007. Marzyciel Shrek","Points":10109,"X":456,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477537Z"},{"ID":5634,"Name":"084 Salt Lake City","Points":9761,"X":473,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47754Z"},{"ID":5635,"Name":"Szlachcic","Points":9976,"X":489,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47754Z"},{"ID":5636,"Name":"-Zapraszam do taƄca! :P","Points":10083,"X":515,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477544Z"},{"ID":5638,"Name":"001 Puk...Puk...Przeprowadzka!!!","Points":10211,"X":576,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477546Z"},{"ID":5639,"Name":"ƚmieszkii","Points":9267,"X":509,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477548Z"},{"ID":5640,"Name":"B008","Points":10019,"X":576,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477549Z"},{"ID":5641,"Name":"Szlachcic","Points":10237,"X":586,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477551Z"},{"ID":5642,"Name":"Szlachcic","Points":9647,"X":567,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477554Z"},{"ID":5643,"Name":"[149] North","Points":10014,"X":573,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477557Z"},{"ID":5644,"Name":"004 koka hera hasz lsd :) i","Points":9933,"X":425,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477558Z"},{"ID":5645,"Name":"P Konfederacja","Points":9664,"X":453,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477561Z"},{"ID":5646,"Name":"Szlachcic","Points":9626,"X":498,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477563Z"},{"ID":5647,"Name":"Jaaa","Points":10481,"X":576,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477565Z"},{"ID":5648,"Name":"Ulu-mulu","Points":10637,"X":431,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477566Z"},{"ID":5650,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":437,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477568Z"},{"ID":5651,"Name":"190 Trujillo","Points":9761,"X":462,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477571Z"},{"ID":5652,"Name":"017","Points":9221,"X":529,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477573Z"},{"ID":5653,"Name":"056 Kilauea","Points":9761,"X":455,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477574Z"},{"ID":5654,"Name":"Os Konfederacja","Points":9803,"X":477,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477577Z"},{"ID":5655,"Name":"SsSs","Points":6795,"X":453,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477579Z"},{"ID":5656,"Name":"JW3","Points":7257,"X":556,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477582Z"},{"ID":5657,"Name":"+44 63 Ecully","Points":9860,"X":430,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477582Z"},{"ID":5658,"Name":"*Ateny_05 Juppi 3 -","Points":9638,"X":471,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477584Z"},{"ID":5659,"Name":"Joms 028","Points":10030,"X":529,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477587Z"},{"ID":5660,"Name":".achim.","Points":8530,"X":537,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477589Z"},{"ID":5661,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":416,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47759Z"},{"ID":5662,"Name":"Cast Away 017","Points":4575,"X":446,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477595Z"},{"ID":5663,"Name":"049 Fort Laudardale","Points":9761,"X":452,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477598Z"},{"ID":5664,"Name":"x12","Points":8191,"X":551,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4776Z"},{"ID":5665,"Name":"MTS","Points":9537,"X":493,"Y":520,"Continent":"K54","Bonus":2,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477601Z"},{"ID":5666,"Name":"Fajna 077","Points":7193,"X":456,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477604Z"},{"ID":5667,"Name":"0063 10","Points":10268,"X":451,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477613Z"},{"ID":5668,"Name":"NOT?","Points":10042,"X":415,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477616Z"},{"ID":5669,"Name":"Szlachcic","Points":9976,"X":566,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477617Z"},{"ID":5670,"Name":"002","Points":10495,"X":466,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477619Z"},{"ID":5671,"Name":"087 Kansas City","Points":9761,"X":474,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477621Z"},{"ID":5672,"Name":"Lord Arsey KING","Points":10285,"X":535,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477623Z"},{"ID":5673,"Name":"Zero Stresu","Points":9898,"X":446,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477623Z"},{"ID":5675,"Name":"...Just like that","Points":7140,"X":466,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477626Z"},{"ID":5676,"Name":"[146] North","Points":10048,"X":581,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477628Z"},{"ID":5677,"Name":"008. ALFI","Points":1426,"X":470,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477631Z"},{"ID":5678,"Name":"Szlachcic","Points":10237,"X":464,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477631Z"},{"ID":5679,"Name":"!Wioska 518","Points":10495,"X":556,"Y":459,"Continent":"K45","Bonus":3,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477634Z"},{"ID":5680,"Name":"0.Edison Mob","Points":10474,"X":525,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477638Z"},{"ID":5681,"Name":"Wioska barbarzyƄska","Points":9994,"X":574,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47764Z"},{"ID":5682,"Name":"KONFA TO MARKA, NARKA","Points":9957,"X":432,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47764Z"},{"ID":5683,"Name":"Wioska barbarzyƄska","Points":9362,"X":511,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477643Z"},{"ID":5684,"Name":"Yogi","Points":6189,"X":531,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477647Z"},{"ID":5685,"Name":"Kasyno","Points":9966,"X":444,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477649Z"},{"ID":5686,"Name":"141 San Louis Potosi","Points":9761,"X":471,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47765Z"},{"ID":5687,"Name":"K45 - 006","Points":10187,"X":561,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477652Z"},{"ID":5688,"Name":"monetki","Points":9821,"X":510,"Y":415,"Continent":"K45","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477654Z"},{"ID":5689,"Name":"yogi","Points":10160,"X":525,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477657Z"},{"ID":5690,"Name":"PiekƂo to inni","Points":9750,"X":511,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477658Z"},{"ID":5691,"Name":"11111","Points":10495,"X":479,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47766Z"},{"ID":5692,"Name":"PiekƂo to inni","Points":9090,"X":520,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477663Z"},{"ID":5693,"Name":"F001","Points":9428,"X":498,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477666Z"},{"ID":5694,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477668Z"},{"ID":5695,"Name":"Joms 007","Points":9867,"X":522,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477668Z"},{"ID":5696,"Name":"South K35","Points":9809,"X":555,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47767Z"},{"ID":5697,"Name":"~062.","Points":8397,"X":487,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477672Z"},{"ID":5698,"Name":"OgrĂłd Warzywny","Points":6016,"X":445,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477675Z"},{"ID":5699,"Name":"CALL 936","Points":10311,"X":548,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477676Z"},{"ID":5700,"Name":"007.","Points":7408,"X":609,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477678Z"},{"ID":5701,"Name":"NOT?","Points":1419,"X":438,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47768Z"},{"ID":5702,"Name":"Wioska barbarzyƄska","Points":9827,"X":429,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477683Z"},{"ID":5703,"Name":"063","Points":10495,"X":553,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477683Z"},{"ID":5704,"Name":". Jack Daniels","Points":8941,"X":423,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477686Z"},{"ID":5705,"Name":"007 | Lord Axen - rumbling!","Points":10362,"X":559,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477688Z"},{"ID":5706,"Name":"032","Points":10495,"X":497,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47769Z"},{"ID":5707,"Name":"Fajna 079","Points":4228,"X":455,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477691Z"},{"ID":5708,"Name":"1. Type 58 !!!","Points":10019,"X":492,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477693Z"},{"ID":5709,"Name":"Ateny_76","Points":2717,"X":474,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477696Z"},{"ID":5710,"Name":"Os Konfederacja","Points":9542,"X":479,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477698Z"},{"ID":5711,"Name":"SsSs","Points":10160,"X":419,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477698Z"},{"ID":5712,"Name":"0026","Points":10058,"X":591,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477701Z"},{"ID":5713,"Name":"Yogi","Points":10019,"X":525,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477703Z"},{"ID":5714,"Name":"NOT?","Points":9425,"X":430,"Y":537,"Continent":"K54","Bonus":3,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477706Z"},{"ID":5715,"Name":"!Pikaczu","Points":10362,"X":569,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477706Z"},{"ID":5716,"Name":"|084|","Points":4199,"X":571,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477708Z"},{"ID":5717,"Name":"slow","Points":10595,"X":530,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477711Z"},{"ID":5718,"Name":"068","Points":10042,"X":415,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477715Z"},{"ID":5719,"Name":"Wioska barbarzyƄska","Points":10285,"X":433,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477715Z"},{"ID":5720,"Name":"Lord Arsey KING","Points":10285,"X":540,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477717Z"},{"ID":5721,"Name":"097 Tombstone","Points":10019,"X":480,"Y":463,"Continent":"K44","Bonus":4,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477719Z"},{"ID":5722,"Name":"046.","Points":9899,"X":550,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477722Z"},{"ID":5723,"Name":"NOT?","Points":9656,"X":433,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477722Z"},{"ID":5724,"Name":"Brat447","Points":4551,"X":466,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477725Z"},{"ID":5725,"Name":"MasteroN 07","Points":10495,"X":570,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477727Z"},{"ID":5726,"Name":"Fajna006","Points":6195,"X":454,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477729Z"},{"ID":5727,"Name":"NOT!","Points":10042,"X":467,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47773Z"},{"ID":5728,"Name":"SsSs","Points":9797,"X":438,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477732Z"},{"ID":5729,"Name":"- 076 -","Points":10000,"X":535,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477735Z"},{"ID":5730,"Name":"#001","Points":10393,"X":467,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477737Z"},{"ID":5732,"Name":"Brat447","Points":8732,"X":461,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477737Z"},{"ID":5733,"Name":"Wioska barbarzyƄska","Points":9581,"X":530,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477739Z"},{"ID":5734,"Name":"Szlachcic","Points":9721,"X":563,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477742Z"},{"ID":5735,"Name":"KoƄczyć czas:)","Points":7186,"X":552,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477744Z"},{"ID":5736,"Name":"sas","Points":9466,"X":535,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477744Z"},{"ID":5737,"Name":"Wioska Matixx","Points":3934,"X":550,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477746Z"},{"ID":5738,"Name":"Wioska barbarzyƄska","Points":10279,"X":489,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477749Z"},{"ID":5739,"Name":"keepo","Points":10027,"X":483,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477751Z"},{"ID":5740,"Name":"Szlachcic 038","Points":9338,"X":553,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477751Z"},{"ID":5741,"Name":".:017:. Chillout","Points":7223,"X":514,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477753Z"},{"ID":5742,"Name":"001","Points":10004,"X":417,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477756Z"},{"ID":5743,"Name":"5. Witosa","Points":9835,"X":477,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477758Z"},{"ID":5744,"Name":"sas","Points":9624,"X":512,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477759Z"},{"ID":5745,"Name":"004","Points":9417,"X":483,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477789Z"},{"ID":5746,"Name":"0188","Points":10019,"X":472,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477791Z"},{"ID":5747,"Name":"[135] North","Points":10411,"X":578,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477795Z"},{"ID":5748,"Name":"Suppi","Points":9570,"X":433,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477795Z"},{"ID":5749,"Name":"[061] Będzie psikus","Points":10311,"X":530,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477797Z"},{"ID":5750,"Name":"- Bis zu ende","Points":9976,"X":518,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477799Z"},{"ID":5751,"Name":"086 OD KOGO BIJE BLASK","Points":6606,"X":404,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477802Z"},{"ID":5752,"Name":"Szlachcic","Points":10292,"X":488,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477802Z"},{"ID":5753,"Name":"Szlachcic 024","Points":8024,"X":558,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47781Z"},{"ID":5754,"Name":"Suppi","Points":9559,"X":442,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477811Z"},{"ID":5755,"Name":"KIELBA 001","Points":10273,"X":445,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477813Z"},{"ID":5756,"Name":"029. Leszy","Points":9186,"X":511,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477815Z"},{"ID":5757,"Name":".:003:. Same Thing","Points":9547,"X":511,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477869Z"},{"ID":5758,"Name":"Fajna004","Points":4865,"X":452,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477872Z"},{"ID":5759,"Name":"Joms 011","Points":9797,"X":520,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477874Z"},{"ID":5760,"Name":"#025","Points":10030,"X":519,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477894Z"},{"ID":5761,"Name":"126 Tulum","Points":9761,"X":477,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477895Z"},{"ID":5762,"Name":"7.62 mm","Points":10019,"X":488,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477897Z"},{"ID":5763,"Name":"044","Points":10129,"X":431,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477899Z"},{"ID":5764,"Name":"078 Orzech laskowy","Points":10495,"X":553,"Y":474,"Continent":"K45","Bonus":2,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477902Z"},{"ID":5765,"Name":"0023","Points":10495,"X":519,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477902Z"},{"ID":5766,"Name":"+44 72 Vernaison","Points":9914,"X":422,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477904Z"},{"ID":5767,"Name":"Mimosa!","Points":9835,"X":498,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477907Z"},{"ID":5768,"Name":"Lord Arsey KING","Points":5251,"X":542,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477909Z"},{"ID":5769,"Name":"ƚmieszkii","Points":9115,"X":519,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477909Z"},{"ID":5770,"Name":"0020. B -","Points":9825,"X":577,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477911Z"},{"ID":5771,"Name":"OXA","Points":9899,"X":497,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477913Z"},{"ID":5772,"Name":".achim.","Points":10311,"X":534,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477916Z"},{"ID":5773,"Name":"?+44 96","Points":8825,"X":466,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477916Z"},{"ID":5774,"Name":"171 Sao Luis","Points":9761,"X":479,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477918Z"},{"ID":5775,"Name":"005","Points":10129,"X":409,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47792Z"},{"ID":5776,"Name":"016","Points":9744,"X":412,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477922Z"},{"ID":5777,"Name":"Butem w Morgen","Points":10001,"X":488,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477923Z"},{"ID":5778,"Name":"Sparta_11","Points":9638,"X":495,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477925Z"},{"ID":5779,"Name":"003. Marzyciel Shrek","Points":6099,"X":466,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477927Z"},{"ID":5780,"Name":"Szlachcic","Points":10237,"X":580,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477929Z"},{"ID":5781,"Name":"Joms 002","Points":10140,"X":524,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477929Z"},{"ID":5782,"Name":"-[002]- K2","Points":8104,"X":555,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477931Z"},{"ID":5783,"Name":"Osada","Points":9616,"X":501,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477933Z"},{"ID":5784,"Name":"- 301 -","Points":10008,"X":525,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477936Z"},{"ID":5785,"Name":"Monetki","Points":10294,"X":474,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477936Z"},{"ID":5786,"Name":"SsSs","Points":5405,"X":461,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477939Z"},{"ID":5787,"Name":"~043.","Points":10495,"X":482,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477941Z"},{"ID":5788,"Name":"Szary ƚwiat","Points":10224,"X":576,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477943Z"},{"ID":5789,"Name":"TROJA.11","Points":9036,"X":456,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477944Z"},{"ID":5790,"Name":"Filip IV","Points":10008,"X":447,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477948Z"},{"ID":5791,"Name":"Kattegat","Points":9836,"X":518,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47795Z"},{"ID":5792,"Name":"017 Ecruteak City","Points":11109,"X":565,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477953Z"},{"ID":5793,"Name":"20003","Points":8045,"X":516,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477953Z"},{"ID":5794,"Name":"keepo","Points":9293,"X":480,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477956Z"},{"ID":5795,"Name":"C038","Points":10971,"X":533,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477958Z"},{"ID":5796,"Name":"South K35","Points":10042,"X":555,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47796Z"},{"ID":5797,"Name":"0Wioska barbarzyƄska","Points":8284,"X":467,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47796Z"},{"ID":5798,"Name":"JK5","Points":6238,"X":559,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477962Z"},{"ID":5799,"Name":"073","Points":10311,"X":554,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477965Z"},{"ID":5800,"Name":"Harbar 2","Points":3402,"X":429,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477967Z"},{"ID":5801,"Name":"?+44 76 Corbas","Points":9844,"X":467,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477967Z"},{"ID":5802,"Name":"+44 75 Rang du Fliers","Points":9653,"X":451,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477969Z"},{"ID":5803,"Name":"Warzywniak 022","Points":3787,"X":453,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477972Z"},{"ID":5804,"Name":"CALL 961","Points":10311,"X":544,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477974Z"},{"ID":5805,"Name":"B018","Points":9906,"X":487,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477974Z"},{"ID":5806,"Name":"~059.","Points":10184,"X":491,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477977Z"},{"ID":5807,"Name":"0021 K55 and987 OZDR.","Points":9845,"X":502,"Y":551,"Continent":"K55","Bonus":5,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477979Z"},{"ID":5808,"Name":"[153] North","Points":10411,"X":564,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477981Z"},{"ID":5809,"Name":"Strasznie MiƂy Sąsiad!","Points":5716,"X":546,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477981Z"},{"ID":5810,"Name":"00974","Points":9885,"X":462,"Y":441,"Continent":"K44","Bonus":2,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477983Z"},{"ID":5812,"Name":"018","Points":10019,"X":581,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477985Z"},{"ID":5813,"Name":"Osada","Points":8381,"X":506,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477988Z"},{"ID":5814,"Name":"Bloody Mary","Points":10311,"X":560,"Y":546,"Continent":"K55","Bonus":8,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477988Z"},{"ID":5815,"Name":"Wioska barbarzyƄska","Points":10252,"X":487,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47799Z"},{"ID":5816,"Name":"Lord Arsey KING","Points":10285,"X":547,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477992Z"},{"ID":5817,"Name":"014. A-RE-SE-EY","Points":10252,"X":579,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477994Z"},{"ID":5818,"Name":"Wioska barbarzyƄska","Points":9350,"X":528,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477994Z"},{"ID":5819,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":428,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477997Z"},{"ID":5820,"Name":"SSS-Abadon","Points":10357,"X":566,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.477999Z"},{"ID":5821,"Name":"Szlachcic","Points":9771,"X":574,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478001Z"},{"ID":5822,"Name":"Wioska 2","Points":8230,"X":523,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478003Z"},{"ID":5823,"Name":"024","Points":10478,"X":456,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478003Z"},{"ID":5824,"Name":"05*","Points":9525,"X":571,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478005Z"},{"ID":5825,"Name":"COUSINS","Points":10292,"X":483,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478008Z"},{"ID":5826,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":421,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47801Z"},{"ID":5827,"Name":"[164]","Points":8337,"X":578,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47801Z"},{"ID":5828,"Name":"CALL 1072","Points":10495,"X":519,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478013Z"},{"ID":5829,"Name":"Wioska barbarzyƄska","Points":10252,"X":486,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478015Z"},{"ID":5830,"Name":".achim.","Points":6969,"X":517,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478017Z"},{"ID":5831,"Name":"032.","Points":10495,"X":503,"Y":490,"Continent":"K45","Bonus":9,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478017Z"},{"ID":5832,"Name":"yogi","Points":10224,"X":533,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478021Z"},{"ID":5833,"Name":"Wioska barbarzyƄska","Points":9714,"X":497,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478025Z"},{"ID":5834,"Name":"022","Points":8174,"X":518,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478027Z"},{"ID":5835,"Name":"#058","Points":9711,"X":518,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478028Z"},{"ID":5836,"Name":"KONFA TO MARKA, NARKA","Points":11962,"X":395,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47803Z"},{"ID":5837,"Name":"+44 62 Saint Laurent de Mure","Points":9841,"X":420,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478032Z"},{"ID":5838,"Name":"NOT?","Points":6589,"X":435,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478034Z"},{"ID":5839,"Name":"144 Leon","Points":9761,"X":471,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478035Z"},{"ID":5840,"Name":"*INTERTWINED*","Points":9711,"X":472,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478037Z"},{"ID":5841,"Name":"Wioska","Points":10178,"X":383,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478039Z"},{"ID":5842,"Name":"Wioska barbarzyƄska","Points":10008,"X":432,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478041Z"},{"ID":5843,"Name":"030. A-RE-SE-EY","Points":10252,"X":576,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478041Z"},{"ID":5844,"Name":"x 0002 dwa x to maƂo 091","Points":9127,"X":551,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478043Z"},{"ID":5845,"Name":"PRO8L3M","Points":10311,"X":425,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478046Z"},{"ID":5846,"Name":"080","Points":10129,"X":425,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478048Z"},{"ID":5847,"Name":"036.","Points":10252,"X":502,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478048Z"},{"ID":5848,"Name":"Szlachcic","Points":9616,"X":509,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47805Z"},{"ID":5849,"Name":".:014:. Owca","Points":8862,"X":511,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478053Z"},{"ID":5850,"Name":"PRO8L3M","Points":10495,"X":466,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478055Z"},{"ID":5851,"Name":"!Wioska 522","Points":10495,"X":558,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478055Z"},{"ID":5852,"Name":".achim.","Points":10311,"X":529,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478057Z"},{"ID":5853,"Name":"PRO8L3M","Points":10495,"X":457,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478059Z"},{"ID":5854,"Name":"Się wjeĆŒdĆŒa !","Points":10495,"X":498,"Y":500,"Continent":"K54","Bonus":3,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478061Z"},{"ID":5855,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":539,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478062Z"},{"ID":5856,"Name":"amator","Points":9094,"X":511,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478064Z"},{"ID":5857,"Name":"ZasiedmiogĂłrogrĂłd","Points":7092,"X":538,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478066Z"},{"ID":5858,"Name":"Santorini","Points":8878,"X":436,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478068Z"},{"ID":5859,"Name":"xxx","Points":10495,"X":507,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478068Z"},{"ID":5860,"Name":"Gattacka","Points":10302,"X":581,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47807Z"},{"ID":5861,"Name":"026","Points":9532,"X":568,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478073Z"},{"ID":5862,"Name":"Lilonia","Points":7388,"X":516,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478075Z"},{"ID":5863,"Name":"Pf Konfederacja","Points":10301,"X":495,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478075Z"},{"ID":5864,"Name":"Warzywniak 009","Points":2683,"X":444,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478077Z"},{"ID":5865,"Name":"-024-","Points":10490,"X":456,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47808Z"},{"ID":5866,"Name":"lady","Points":9508,"X":494,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478082Z"},{"ID":5867,"Name":"010. Marzyciel Shrek","Points":10243,"X":455,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478082Z"},{"ID":5868,"Name":"Wioska","Points":10178,"X":381,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478084Z"},{"ID":5869,"Name":"ADEN","Points":4727,"X":557,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478087Z"},{"ID":5870,"Name":"x06","Points":10400,"X":559,"Y":477,"Continent":"K45","Bonus":4,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478089Z"},{"ID":5871,"Name":"-002-","Points":9034,"X":535,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":849070335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478089Z"},{"ID":5872,"Name":"Wioska BarbarzyƄska","Points":9430,"X":543,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478091Z"},{"ID":5873,"Name":"~~LatającyHolender~~","Points":9727,"X":558,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478093Z"},{"ID":5874,"Name":"+44 84","Points":9075,"X":447,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478095Z"},{"ID":5875,"Name":"PiekƂo to inni","Points":10160,"X":523,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478096Z"},{"ID":5876,"Name":"Wioska barbarzyƄska","Points":10008,"X":411,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478098Z"},{"ID":5878,"Name":"~~LatającyHolender~~","Points":10006,"X":559,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478102Z"},{"ID":5879,"Name":"[140] North","Points":10060,"X":579,"Y":464,"Continent":"K45","Bonus":4,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478104Z"},{"ID":5880,"Name":"NOT?","Points":10042,"X":429,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478104Z"},{"ID":5881,"Name":"Brat447","Points":10479,"X":447,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478107Z"},{"ID":5882,"Name":"076","Points":10129,"X":416,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478109Z"},{"ID":5883,"Name":"Wioska_02","Points":8805,"X":538,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478111Z"},{"ID":5884,"Name":"Szlachcic","Points":8915,"X":508,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478111Z"},{"ID":5885,"Name":"NOT?","Points":9902,"X":404,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478113Z"},{"ID":5886,"Name":"|007|","Points":10306,"X":551,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478116Z"},{"ID":5887,"Name":"Wioska barbarzyƄska","Points":3788,"X":456,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478118Z"},{"ID":5888,"Name":"C031","Points":6507,"X":528,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47812Z"},{"ID":5889,"Name":"008","Points":9835,"X":533,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47812Z"},{"ID":5890,"Name":"!Blastoise","Points":9805,"X":572,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478122Z"},{"ID":5891,"Name":"CALL 933","Points":10311,"X":552,"Y":561,"Continent":"K55","Bonus":2,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478124Z"},{"ID":5892,"Name":"0175","Points":9720,"X":473,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478127Z"},{"ID":5893,"Name":"022. Infinity War","Points":4125,"X":428,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478127Z"},{"ID":5894,"Name":"[072]","Points":9956,"X":556,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478129Z"},{"ID":5895,"Name":"FF005","Points":10232,"X":465,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478131Z"},{"ID":5896,"Name":"CALL 938","Points":10311,"X":553,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478133Z"},{"ID":5897,"Name":"003","Points":10019,"X":578,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478134Z"},{"ID":5898,"Name":"CZEKAM NA SZLACHTE","Points":10243,"X":536,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478136Z"},{"ID":5899,"Name":"Wioska barbarzyƄska","Points":3940,"X":589,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478138Z"},{"ID":5900,"Name":"Szlachcic","Points":10300,"X":484,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47814Z"},{"ID":5901,"Name":"A048","Points":10495,"X":500,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47814Z"},{"ID":5902,"Name":"CALL 942","Points":10311,"X":555,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478142Z"},{"ID":5903,"Name":"- Na pierwsze, deser","Points":9860,"X":514,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478144Z"},{"ID":5904,"Name":"JaawmG P","Points":10019,"X":620,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478147Z"},{"ID":5905,"Name":"Dum Spiro Spero","Points":9995,"X":490,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478147Z"},{"ID":5906,"Name":"Pf Konfederacja","Points":10047,"X":487,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47815Z"},{"ID":5907,"Name":"~~LatającyHolender~~","Points":12021,"X":560,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478152Z"},{"ID":5908,"Name":"CALL 935","Points":10311,"X":551,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478154Z"},{"ID":5909,"Name":"EKG .::.Inchi + R","Points":10495,"X":480,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478154Z"},{"ID":5910,"Name":"Monetki","Points":10294,"X":473,"Y":427,"Continent":"K44","Bonus":5,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478156Z"},{"ID":5911,"Name":"004 (Popeye14)","Points":9953,"X":411,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478158Z"},{"ID":5912,"Name":"010","Points":10495,"X":464,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478161Z"},{"ID":5913,"Name":"NOT?","Points":8190,"X":431,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478161Z"},{"ID":5914,"Name":"Wioska barbarzyƄska","Points":9835,"X":482,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478163Z"},{"ID":5915,"Name":"0021","Points":9547,"X":506,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478165Z"},{"ID":5916,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":442,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478169Z"},{"ID":5917,"Name":"...Just like that","Points":6366,"X":463,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478169Z"},{"ID":5918,"Name":"NOT?","Points":9950,"X":430,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478171Z"},{"ID":5919,"Name":"#Weezing","Points":10971,"X":569,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478173Z"},{"ID":5920,"Name":"0119","Points":7568,"X":467,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478176Z"},{"ID":5921,"Name":"0058","Points":8767,"X":589,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478176Z"},{"ID":5922,"Name":"028","Points":10047,"X":588,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478179Z"},{"ID":5923,"Name":"0025","Points":9655,"X":504,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478181Z"},{"ID":5924,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478184Z"},{"ID":5925,"Name":"004 Mamy pierwszą wysiadkę!","Points":10476,"X":603,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478184Z"},{"ID":5926,"Name":"10011","Points":10311,"X":532,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478186Z"},{"ID":5927,"Name":"036 - one","Points":10495,"X":421,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478189Z"},{"ID":5928,"Name":"Pf Konfederacja","Points":9530,"X":484,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478191Z"},{"ID":5929,"Name":"034","Points":10042,"X":414,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478191Z"},{"ID":5930,"Name":"015","Points":9976,"X":526,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478193Z"},{"ID":5931,"Name":"-[003]- Kanczenczonga","Points":8124,"X":555,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478195Z"},{"ID":5932,"Name":"023","Points":10019,"X":531,"Y":428,"Continent":"K45","Bonus":5,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478197Z"},{"ID":5933,"Name":"KIELBA 071","Points":10487,"X":474,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478197Z"},{"ID":5934,"Name":"F007","Points":9750,"X":507,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4782Z"},{"ID":5935,"Name":"A001","Points":10362,"X":609,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478202Z"},{"ID":5936,"Name":"...Just like that","Points":9639,"X":471,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478204Z"},{"ID":5937,"Name":"Szlachcic","Points":9552,"X":506,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478204Z"},{"ID":5938,"Name":"-007-Richmond,VA","Points":9364,"X":449,"Y":517,"Continent":"K54","Bonus":6,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478206Z"},{"ID":5939,"Name":".:011:. Fresk","Points":9839,"X":517,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478208Z"},{"ID":5940,"Name":"KONFA TO MARKA, NARKA","Points":10162,"X":423,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47821Z"},{"ID":5941,"Name":"~~LatającyHolender~~","Points":10139,"X":560,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478211Z"},{"ID":5942,"Name":"020 Roswell","Points":9761,"X":441,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478213Z"},{"ID":5943,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478215Z"},{"ID":5944,"Name":".achim.","Points":10311,"X":560,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478225Z"},{"ID":5945,"Name":"0007","Points":10495,"X":610,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478225Z"},{"ID":5946,"Name":"7.62 mm","Points":10019,"X":495,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478231Z"},{"ID":5947,"Name":"A013","Points":9925,"X":513,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478232Z"},{"ID":5948,"Name":"7.62 mm","Points":10019,"X":466,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478233Z"},{"ID":5949,"Name":"Sparta_56","Points":9638,"X":487,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478233Z"},{"ID":5950,"Name":"[131]","Points":9616,"X":560,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478234Z"},{"ID":5951,"Name":"B070","Points":10495,"X":484,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478235Z"},{"ID":5952,"Name":"00976 Alakazam","Points":10226,"X":460,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478236Z"},{"ID":5953,"Name":"[019] Gbuo gi","Points":10217,"X":584,"Y":532,"Continent":"K55","Bonus":2,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478238Z"},{"ID":5955,"Name":"065.","Points":10252,"X":507,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478238Z"},{"ID":5956,"Name":"A.010","Points":10237,"X":414,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478239Z"},{"ID":5957,"Name":"Szlachcic !!!","Points":9891,"X":503,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47824Z"},{"ID":5958,"Name":"Gattacka","Points":9741,"X":587,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478241Z"},{"ID":5959,"Name":"0020 K55 and987 OZDR.","Points":9861,"X":506,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478241Z"},{"ID":5960,"Name":"A032","Points":10495,"X":496,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478242Z"},{"ID":5961,"Name":"0019","Points":9993,"X":466,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478243Z"},{"ID":5962,"Name":"+44 84","Points":9374,"X":441,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478244Z"},{"ID":5963,"Name":"!Arcanine","Points":9232,"X":571,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478245Z"},{"ID":5964,"Name":"Wioska_08","Points":4142,"X":556,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478246Z"},{"ID":5965,"Name":"Lord Arsey KING","Points":10285,"X":520,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478247Z"},{"ID":5966,"Name":"WesoƂych ƚwiąt","Points":9994,"X":562,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478248Z"},{"ID":5967,"Name":"[355] Chorągiewka na wietrze","Points":10474,"X":593,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478248Z"},{"ID":5968,"Name":"ChceszPokojuSzykujSięDoWojny","Points":6398,"X":467,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47825Z"},{"ID":5969,"Name":"s181eo02","Points":9886,"X":396,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478251Z"},{"ID":5970,"Name":"023 |","Points":10144,"X":559,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478252Z"},{"ID":5971,"Name":"Wioska barbarzyƄska","Points":10178,"X":432,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478252Z"},{"ID":5972,"Name":"Szlachcic !!!","Points":7249,"X":497,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478255Z"},{"ID":5973,"Name":"029. ALFI","Points":930,"X":477,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478257Z"},{"ID":5974,"Name":"Lord Arsey KING","Points":10285,"X":538,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47826Z"},{"ID":5975,"Name":"keepo","Points":9666,"X":479,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47826Z"},{"ID":5976,"Name":"Front_30","Points":5940,"X":453,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478262Z"},{"ID":5977,"Name":"Ręcznik do zmiany","Points":10495,"X":412,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478272Z"},{"ID":5978,"Name":"lady","Points":10471,"X":510,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478273Z"},{"ID":5979,"Name":"~~LatającyHolender~~","Points":10149,"X":586,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478273Z"},{"ID":5980,"Name":"164 Brasilia","Points":9761,"X":481,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478274Z"},{"ID":5981,"Name":"*Ateny_65","Points":9638,"X":470,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478276Z"},{"ID":5983,"Name":"009. ALFI","Points":2432,"X":480,"Y":571,"Continent":"K54","Bonus":3,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478279Z"},{"ID":5985,"Name":"Wioska barbarzyƄska","Points":10492,"X":454,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478279Z"},{"ID":5986,"Name":"Semantyka","Points":10019,"X":504,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478281Z"},{"ID":5987,"Name":"0027","Points":10160,"X":539,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478284Z"},{"ID":5988,"Name":"037 Minneapolis","Points":9761,"X":448,"Y":463,"Continent":"K44","Bonus":2,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478286Z"},{"ID":5989,"Name":"B.001","Points":10495,"X":410,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478287Z"},{"ID":5990,"Name":"Village","Points":11479,"X":517,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478289Z"},{"ID":5991,"Name":"ZasiedmiogĂłrogrĂłd","Points":10068,"X":518,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478291Z"},{"ID":5992,"Name":"x 012089","Points":8370,"X":551,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478293Z"},{"ID":5993,"Name":".:121:. Niangmen","Points":9899,"X":516,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478294Z"},{"ID":5994,"Name":"Myk i do kieszonki","Points":9799,"X":381,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478296Z"},{"ID":5995,"Name":"KONFA TO MARKA, NARKA","Points":10654,"X":441,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478298Z"},{"ID":5996,"Name":"*Ateny_60","Points":9708,"X":476,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4783Z"},{"ID":5997,"Name":"Nic na krechę","Points":5855,"X":511,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4783Z"},{"ID":5998,"Name":"029 Twierdza","Points":9542,"X":622,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478303Z"},{"ID":5999,"Name":"Os Konfederacja","Points":9812,"X":473,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478305Z"},{"ID":6000,"Name":"Jaaa","Points":10495,"X":575,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478307Z"},{"ID":6001,"Name":"+44 71 Champagne au Mont dOr","Points":9849,"X":419,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478307Z"},{"ID":6002,"Name":"Pilonia","Points":8425,"X":520,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478309Z"},{"ID":6003,"Name":"7.62 mm","Points":5160,"X":490,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478314Z"},{"ID":6004,"Name":"008","Points":9555,"X":559,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478316Z"},{"ID":6005,"Name":"NOT?","Points":10042,"X":428,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478316Z"},{"ID":6006,"Name":"-[034]- Molamenqing","Points":7201,"X":558,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478318Z"},{"ID":6007,"Name":"Osada koczownikĂłw","Points":10311,"X":469,"Y":585,"Continent":"K54","Bonus":1,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47832Z"},{"ID":6008,"Name":"NOT","Points":10042,"X":418,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478323Z"},{"ID":6009,"Name":"Sparta_72","Points":9638,"X":471,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478323Z"},{"ID":6010,"Name":".:048:.Chillout","Points":10495,"X":507,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478326Z"},{"ID":6011,"Name":"015 |","Points":10481,"X":562,"Y":550,"Continent":"K55","Bonus":3,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478328Z"},{"ID":6012,"Name":"Taran","Points":10237,"X":581,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47833Z"},{"ID":6013,"Name":"SkrzydƂa","Points":9835,"X":496,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47833Z"},{"ID":6014,"Name":"00975 Avada","Points":10142,"X":461,"Y":440,"Continent":"K44","Bonus":4,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478333Z"},{"ID":6015,"Name":"A.012","Points":10559,"X":412,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478336Z"},{"ID":6016,"Name":"Wioska Nacz0","Points":10057,"X":394,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478339Z"},{"ID":6017,"Name":"002","Points":10495,"X":605,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478345Z"},{"ID":6018,"Name":"Suppi","Points":9700,"X":443,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478345Z"},{"ID":6019,"Name":"20017","Points":9392,"X":515,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478348Z"},{"ID":6020,"Name":"Joms 027","Points":10252,"X":528,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47835Z"},{"ID":6021,"Name":"JaamMwG 006","Points":9814,"X":526,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478353Z"},{"ID":6022,"Name":"Wioska BarbarzyƄska","Points":10019,"X":549,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478353Z"},{"ID":6023,"Name":"Szlachcic","Points":9922,"X":566,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478355Z"},{"ID":6024,"Name":"Wioska_04","Points":5076,"X":543,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478357Z"},{"ID":6025,"Name":"Polania 003","Points":9338,"X":539,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478359Z"},{"ID":6026,"Name":"K44 x031.","Points":7075,"X":453,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47836Z"},{"ID":6027,"Name":"~~LatającyHolender~~","Points":10143,"X":559,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478362Z"},{"ID":6028,"Name":"021 Pensacola","Points":9761,"X":439,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478365Z"},{"ID":6029,"Name":"?+44 85 Lyon Brotteaux","Points":9844,"X":455,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478367Z"},{"ID":6030,"Name":"Bucks x Kamiiiru","Points":10362,"X":449,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478368Z"},{"ID":6031,"Name":"[087]","Points":9894,"X":551,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47837Z"},{"ID":6033,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":520,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478372Z"},{"ID":6034,"Name":"[131] North","Points":10054,"X":582,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478374Z"},{"ID":6035,"Name":"Village","Points":12154,"X":517,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478374Z"},{"ID":6036,"Name":"Wioska_03","Points":8805,"X":538,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478376Z"},{"ID":6037,"Name":"[152] North","Points":10411,"X":568,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478379Z"},{"ID":6038,"Name":"Wioska barbarzyƄska 017|","Points":9619,"X":557,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478381Z"},{"ID":6039,"Name":"NOT?","Points":9693,"X":429,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478381Z"},{"ID":6040,"Name":"ƚmieszkiii","Points":8411,"X":493,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478383Z"},{"ID":6041,"Name":"7.62 mm","Points":10019,"X":489,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478385Z"},{"ID":6042,"Name":"027","Points":8986,"X":533,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478387Z"},{"ID":6043,"Name":"Wioska Muszti","Points":10495,"X":550,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478388Z"},{"ID":6045,"Name":"Wioska 7","Points":7743,"X":525,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47839Z"},{"ID":6047,"Name":"[101]","Points":9957,"X":551,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478392Z"},{"ID":6048,"Name":"Wioska 8","Points":9115,"X":533,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478394Z"},{"ID":6049,"Name":"City Ground","Points":6342,"X":547,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478395Z"},{"ID":6050,"Name":"Niespodzinaka ?","Points":9882,"X":467,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478397Z"},{"ID":6051,"Name":"ZasiedmiogĂłrogrĂłd","Points":10297,"X":525,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.4784Z"},{"ID":6052,"Name":"elqueria","Points":9013,"X":554,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478402Z"},{"ID":6053,"Name":"Szlachcic","Points":9679,"X":578,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478402Z"},{"ID":6054,"Name":"A022","Points":10495,"X":493,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478405Z"},{"ID":6055,"Name":"+44 74 Airon Notre Dame","Points":9655,"X":443,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478414Z"},{"ID":6056,"Name":"(002)","Points":10160,"X":423,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478415Z"},{"ID":6057,"Name":"NOT?","Points":4605,"X":433,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478415Z"},{"ID":6058,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":535,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478418Z"},{"ID":6059,"Name":"#043","Points":10728,"X":455,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47842Z"},{"ID":6060,"Name":"0033","Points":10019,"X":519,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478421Z"},{"ID":6061,"Name":"PRO8L3M","Points":10311,"X":420,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478421Z"},{"ID":6062,"Name":"[074] Tihlum rawh","Points":10311,"X":533,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478422Z"},{"ID":6063,"Name":"10. Dennis Cranmer","Points":10178,"X":562,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478423Z"},{"ID":6064,"Name":"ƚmieszkii","Points":10478,"X":519,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478424Z"},{"ID":6065,"Name":"Szlachcic 030","Points":8024,"X":540,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478424Z"},{"ID":6066,"Name":"Porysowany","Points":5618,"X":513,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478425Z"},{"ID":6067,"Name":"041","Points":10495,"X":540,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478426Z"},{"ID":6068,"Name":"B002","Points":10495,"X":487,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478427Z"},{"ID":6069,"Name":"*INTERTWINED*","Points":9711,"X":508,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478428Z"},{"ID":6070,"Name":".achim.","Points":10311,"X":527,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478429Z"},{"ID":6071,"Name":"Obląg","Points":8840,"X":439,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47843Z"},{"ID":6072,"Name":"NOT?","Points":3247,"X":429,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478432Z"},{"ID":6073,"Name":"0.Mobilek","Points":10495,"X":519,"Y":580,"Continent":"K55","Bonus":8,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478432Z"},{"ID":6074,"Name":"7.62 mm","Points":10019,"X":492,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478433Z"},{"ID":6075,"Name":"Only","Points":3758,"X":436,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478434Z"},{"ID":6076,"Name":"060.","Points":6918,"X":514,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478435Z"},{"ID":6077,"Name":"Brat447","Points":10374,"X":464,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478435Z"},{"ID":6078,"Name":"1xxxxxxxxxxxx","Points":10236,"X":467,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478436Z"},{"ID":6079,"Name":"Monetki","Points":10292,"X":470,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478439Z"},{"ID":6080,"Name":"#05.","Points":10971,"X":526,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478441Z"},{"ID":6081,"Name":"009742","Points":9037,"X":464,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478442Z"},{"ID":6082,"Name":"Praga","Points":9841,"X":426,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478444Z"},{"ID":6083,"Name":"202 Kingston","Points":9261,"X":462,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478446Z"},{"ID":6084,"Name":"F092","Points":9878,"X":489,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478448Z"},{"ID":6085,"Name":"------------------4","Points":10410,"X":459,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47845Z"},{"ID":6086,"Name":"KIELBA 037","Points":10495,"X":444,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478451Z"},{"ID":6087,"Name":"079. ALFI","Points":1725,"X":480,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478453Z"},{"ID":6088,"Name":"Wioska barbarzyƄska","Points":7974,"X":590,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478455Z"},{"ID":6089,"Name":"Forteca","Points":10306,"X":501,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478459Z"},{"ID":6090,"Name":"A#002#","Points":12154,"X":404,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478459Z"},{"ID":6091,"Name":"[088]","Points":9849,"X":541,"Y":487,"Continent":"K45","Bonus":7,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478462Z"},{"ID":6092,"Name":"ƚmieszki","Points":9199,"X":536,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478465Z"},{"ID":6093,"Name":".:020:. Chillout","Points":6255,"X":509,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478469Z"},{"ID":6094,"Name":"BBB","Points":9341,"X":554,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478469Z"},{"ID":6095,"Name":"028","Points":8741,"X":532,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478472Z"},{"ID":6096,"Name":"+44 84","Points":9669,"X":443,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478476Z"},{"ID":6097,"Name":"Suppi","Points":9052,"X":430,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478479Z"},{"ID":6098,"Name":"Osada","Points":9632,"X":496,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478479Z"},{"ID":6099,"Name":"011","Points":9761,"X":439,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478484Z"},{"ID":6100,"Name":"2. Grille","Points":7848,"X":493,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478487Z"},{"ID":6101,"Name":"ParyĆŒ","Points":10083,"X":424,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478489Z"},{"ID":6102,"Name":"PiekƂo to inni","Points":8826,"X":515,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47849Z"},{"ID":6103,"Name":"F048","Points":9335,"X":488,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478492Z"},{"ID":6104,"Name":"-------------2","Points":10362,"X":467,"Y":426,"Continent":"K44","Bonus":8,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478495Z"},{"ID":6105,"Name":"006341","Points":8754,"X":440,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478497Z"},{"ID":6106,"Name":"Lord Arsey KING","Points":8621,"X":529,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478497Z"},{"ID":6107,"Name":"016 |","Points":9956,"X":560,"Y":550,"Continent":"K55","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478499Z"},{"ID":6108,"Name":"~056.","Points":10495,"X":489,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478501Z"},{"ID":6109,"Name":"BucksbarzyƄsKamiiiru","Points":10654,"X":437,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478503Z"},{"ID":6110,"Name":"Horyzont zdarzeƄ","Points":10495,"X":536,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478503Z"},{"ID":6111,"Name":"Wioska BarbarzyƄska","Points":10019,"X":543,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478506Z"},{"ID":6112,"Name":"A060","Points":10311,"X":502,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478509Z"},{"ID":6113,"Name":"NOT?","Points":10060,"X":430,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478511Z"},{"ID":6114,"Name":"OOIV","Points":9267,"X":508,"Y":437,"Continent":"K45","Bonus":3,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478511Z"},{"ID":6115,"Name":"050","Points":9756,"X":528,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478513Z"},{"ID":6116,"Name":"NOT?","Points":9136,"X":426,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478515Z"},{"ID":6117,"Name":"Wioska 4","Points":2849,"X":443,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478517Z"},{"ID":6118,"Name":"NOT?","Points":3619,"X":431,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478517Z"},{"ID":6119,"Name":"0012. A - Petrovya","Points":10160,"X":608,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478519Z"},{"ID":6120,"Name":"Gratuluje mĂłzgu","Points":7426,"X":442,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478522Z"},{"ID":6121,"Name":"Wioska barbarzyƄska","Points":7030,"X":524,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478524Z"},{"ID":6122,"Name":"018 Norfolk","Points":9761,"X":441,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478524Z"},{"ID":6123,"Name":"100 Jamestown","Points":9761,"X":474,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478526Z"},{"ID":6124,"Name":"NOT?","Points":10042,"X":423,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478529Z"},{"ID":6125,"Name":"045 Seattle","Points":9761,"X":467,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478531Z"},{"ID":6126,"Name":"Kasyno","Points":9652,"X":448,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478531Z"},{"ID":6127,"Name":"yogi","Points":10019,"X":545,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478533Z"},{"ID":6128,"Name":"065. Palmyra","Points":10233,"X":618,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478535Z"},{"ID":6129,"Name":"Wioska barbarzyƄska","Points":2786,"X":456,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478537Z"},{"ID":6130,"Name":"keepo","Points":10495,"X":478,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478537Z"},{"ID":6131,"Name":"#0064 MolekuƂa duszy","Points":10000,"X":490,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47854Z"},{"ID":6132,"Name":"Os Konfederacja","Points":9976,"X":469,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478542Z"},{"ID":6133,"Name":"PiekƂo to inni","Points":10019,"X":511,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478544Z"},{"ID":6134,"Name":"013 Cherrygrove City","Points":11109,"X":590,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478544Z"},{"ID":6135,"Name":"Szlachcic","Points":10099,"X":490,"Y":479,"Continent":"K44","Bonus":2,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478546Z"},{"ID":6136,"Name":"033. ALFI","Points":1501,"X":477,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478549Z"},{"ID":6137,"Name":"Castle of glass!","Points":9835,"X":497,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478551Z"},{"ID":6138,"Name":"~~LatającyHolender~~","Points":10160,"X":586,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478551Z"},{"ID":6139,"Name":"A053","Points":10178,"X":501,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478553Z"},{"ID":6140,"Name":"zaboli","Points":7543,"X":551,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478556Z"},{"ID":6141,"Name":"C044","Points":9302,"X":533,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478558Z"},{"ID":6142,"Name":"Kentin ufam Tobie","Points":10000,"X":436,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478558Z"},{"ID":6143,"Name":"0005 CH","Points":10495,"X":425,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478561Z"},{"ID":6144,"Name":"19 Valhalla","Points":5357,"X":484,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478563Z"},{"ID":6145,"Name":"PiekƂo to inni","Points":9761,"X":525,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478565Z"},{"ID":6146,"Name":"069.","Points":10252,"X":510,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478566Z"},{"ID":6147,"Name":"Warzywniak 014","Points":2322,"X":449,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478568Z"},{"ID":6148,"Name":"NOT?","Points":4065,"X":432,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47857Z"},{"ID":6149,"Name":"BBB","Points":8368,"X":559,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478572Z"},{"ID":6150,"Name":"001. Kaer Morhen","Points":10495,"X":563,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478574Z"},{"ID":6151,"Name":"-025-","Points":10479,"X":459,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478575Z"},{"ID":6152,"Name":"Angband","Points":8195,"X":510,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478577Z"},{"ID":6153,"Name":"0Wioska barbarzyƄska","Points":4030,"X":473,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478579Z"},{"ID":6154,"Name":"0.Davenport","Points":10211,"X":521,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478581Z"},{"ID":6155,"Name":"Lord Arsey KING","Points":10285,"X":521,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478581Z"},{"ID":6156,"Name":"Wioska 427","Points":10495,"X":559,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478583Z"},{"ID":6157,"Name":"*INTERTWINED*","Points":9403,"X":465,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478585Z"},{"ID":6158,"Name":"monetki","Points":9367,"X":507,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478588Z"},{"ID":6159,"Name":"- 111 -","Points":10000,"X":538,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478588Z"},{"ID":6160,"Name":"Szlachcic","Points":9693,"X":502,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47859Z"},{"ID":6161,"Name":"0044 K55 and987 OZDR","Points":10083,"X":510,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478592Z"},{"ID":6162,"Name":"Suppi","Points":9896,"X":471,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478594Z"},{"ID":6163,"Name":"*INTERTWINED*","Points":9711,"X":530,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478594Z"},{"ID":6164,"Name":"B001","Points":10484,"X":486,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478596Z"},{"ID":6165,"Name":"?+44 76 Recques sur Course","Points":9653,"X":467,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478598Z"},{"ID":6166,"Name":"xxx","Points":10294,"X":486,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478601Z"},{"ID":6167,"Name":"Osada","Points":10303,"X":497,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478601Z"},{"ID":6168,"Name":"KONFA TO MARKA, NARKA","Points":10432,"X":435,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478603Z"},{"ID":6169,"Name":"2.Kanonjgpd !!!","Points":9908,"X":496,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478605Z"},{"ID":6170,"Name":"042","Points":10042,"X":419,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478607Z"},{"ID":6171,"Name":"Moria","Points":10019,"X":520,"Y":539,"Continent":"K55","Bonus":4,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478608Z"},{"ID":6172,"Name":"Wioska Wojtek150 003","Points":10019,"X":531,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47861Z"},{"ID":6173,"Name":"ƚmieszkiii","Points":8316,"X":480,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478615Z"},{"ID":6174,"Name":"113 Choroszcz","Points":2142,"X":540,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478617Z"},{"ID":6175,"Name":"F047","Points":9130,"X":486,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478617Z"},{"ID":6176,"Name":"Rampage 2","Points":3148,"X":525,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478619Z"},{"ID":6177,"Name":"Winter is coming","Points":9960,"X":505,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478621Z"},{"ID":6178,"Name":"Employee Housing Area","Points":10495,"X":515,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478623Z"},{"ID":6179,"Name":"~~LatającyHolender~~","Points":10210,"X":583,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478624Z"},{"ID":6180,"Name":"z 020","Points":10216,"X":538,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478626Z"},{"ID":6181,"Name":"040 Chattanooga","Points":9761,"X":448,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478628Z"},{"ID":6182,"Name":"0.Palm Bay Mob","Points":10047,"X":525,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.47863Z"},{"ID":6183,"Name":"017","Points":9628,"X":532,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478631Z"},{"ID":6184,"Name":"0093","Points":8638,"X":465,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478633Z"},{"ID":6185,"Name":".:070:. Chillout","Points":7435,"X":505,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478637Z"},{"ID":6186,"Name":".achim.","Points":8375,"X":541,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.478639Z"},{"ID":6187,"Name":"216 Mount Gambier","Points":9761,"X":533,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508315Z"},{"ID":6188,"Name":"SPARTA_71","Points":9638,"X":468,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508316Z"},{"ID":6189,"Name":"Dum Spiro Spero","Points":10000,"X":494,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508316Z"},{"ID":6190,"Name":"x 0001","Points":6082,"X":548,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508316Z"},{"ID":6191,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10382,"X":462,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508317Z"},{"ID":6193,"Name":"030. ALFI","Points":1290,"X":477,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508317Z"},{"ID":6194,"Name":"002. Licho","Points":10160,"X":508,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508317Z"},{"ID":6195,"Name":"yogi","Points":10019,"X":513,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508318Z"},{"ID":6196,"Name":"ADEN","Points":10035,"X":567,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508318Z"},{"ID":6197,"Name":"Osada L","Points":8538,"X":426,"Y":547,"Continent":"K54","Bonus":4,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508318Z"},{"ID":6199,"Name":"Os Konfederacja","Points":10068,"X":477,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508319Z"},{"ID":6200,"Name":"Kattegat","Points":10495,"X":536,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508319Z"},{"ID":6201,"Name":"NOT?","Points":10042,"X":427,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508319Z"},{"ID":6202,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":574,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50832Z"},{"ID":6203,"Name":"[132] North","Points":10295,"X":577,"Y":472,"Continent":"K45","Bonus":8,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50832Z"},{"ID":6204,"Name":"PRO8L3M","Points":10495,"X":411,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50832Z"},{"ID":6205,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10362,"X":458,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50832Z"},{"ID":6206,"Name":"...Just like that","Points":10452,"X":452,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508321Z"},{"ID":6207,"Name":"083. ALFI","Points":1846,"X":482,"Y":562,"Continent":"K54","Bonus":8,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508321Z"},{"ID":6208,"Name":"WesoƂych ƚwiąt","Points":11653,"X":568,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508321Z"},{"ID":6209,"Name":"Kontrola Jakoƛci!","Points":9835,"X":499,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508322Z"},{"ID":6210,"Name":"Village","Points":12154,"X":519,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508322Z"},{"ID":6211,"Name":"K55","Points":10252,"X":543,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508323Z"},{"ID":6212,"Name":"A030","Points":10259,"X":497,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508323Z"},{"ID":6213,"Name":"Mniejsze zƂo 0066","Points":5227,"X":421,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508323Z"},{"ID":6214,"Name":"018","Points":8632,"X":527,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508324Z"},{"ID":6215,"Name":"075. |XD|","Points":10209,"X":496,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508324Z"},{"ID":6216,"Name":"KONFA TO MARKA, NARKA","Points":10306,"X":442,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508324Z"},{"ID":6217,"Name":"025","Points":9808,"X":436,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508324Z"},{"ID":6218,"Name":"XnX-03","Points":7694,"X":438,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508325Z"},{"ID":6219,"Name":"KoƄczyć czas:)","Points":6300,"X":547,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508325Z"},{"ID":6220,"Name":"003 Osada","Points":6441,"X":527,"Y":466,"Continent":"K45","Bonus":2,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508326Z"},{"ID":6221,"Name":"018","Points":10224,"X":554,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508326Z"},{"ID":6222,"Name":"33-wara od moich wiosek","Points":7095,"X":543,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508326Z"},{"ID":6223,"Name":"Suppi","Points":9570,"X":442,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508327Z"},{"ID":6224,"Name":"089 Orzech","Points":7910,"X":545,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508327Z"},{"ID":6225,"Name":"004 Uber Schlesien","Points":7604,"X":567,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508327Z"},{"ID":6226,"Name":"050 |","Points":10425,"X":550,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508328Z"},{"ID":6227,"Name":"0054","Points":10495,"X":513,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508328Z"},{"ID":6228,"Name":"Opti","Points":4635,"X":439,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508328Z"},{"ID":6229,"Name":"0063 La Casa De Los Hombres","Points":10401,"X":446,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508329Z"},{"ID":6230,"Name":"Szlachcic","Points":10237,"X":578,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508329Z"},{"ID":6231,"Name":"#0030 ƚwiebodzin","Points":10000,"X":480,"Y":564,"Continent":"K54","Bonus":2,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508329Z"},{"ID":6232,"Name":"U-6","Points":6855,"X":544,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50833Z"},{"ID":6233,"Name":"PiekƂo to inni","Points":5113,"X":512,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50833Z"},{"ID":6234,"Name":"069 Harrisburg","Points":9761,"X":460,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50833Z"},{"ID":6235,"Name":"72k$ Grvvyq","Points":10495,"X":548,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508331Z"},{"ID":6236,"Name":"Carsultyal.","Points":9711,"X":485,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508331Z"},{"ID":6237,"Name":"A025","Points":10495,"X":492,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508331Z"},{"ID":6238,"Name":"NOT?","Points":10042,"X":435,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508332Z"},{"ID":6239,"Name":"0111","Points":9045,"X":468,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508332Z"},{"ID":6240,"Name":"*INTERTWINED*","Points":9711,"X":469,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508332Z"},{"ID":6241,"Name":"Lynortis","Points":4224,"X":458,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508333Z"},{"ID":6242,"Name":"Joms 020","Points":9771,"X":531,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508333Z"},{"ID":6243,"Name":"Front_17","Points":3037,"X":458,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508333Z"},{"ID":6244,"Name":"061","Points":9741,"X":441,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508333Z"},{"ID":6245,"Name":"Ręcznik do zmiany","Points":11581,"X":416,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508334Z"},{"ID":6246,"Name":"DEFF CENTRUM","Points":9523,"X":539,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508334Z"},{"ID":6247,"Name":"136 Puerto Vallarta","Points":9761,"X":467,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508334Z"},{"ID":6248,"Name":"!Wioska 412","Points":10495,"X":563,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508335Z"},{"ID":6249,"Name":"002","Points":10019,"X":504,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508335Z"},{"ID":6250,"Name":"PiekƂo to inni","Points":10160,"X":525,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508335Z"},{"ID":6251,"Name":"PiekƂo to inni","Points":10160,"X":522,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508335Z"},{"ID":6252,"Name":"016 Goldenrod City","Points":11109,"X":590,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508336Z"},{"ID":6254,"Name":"Joms 034","Points":10273,"X":534,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508336Z"},{"ID":6255,"Name":"Winter is coming","Points":9835,"X":503,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508336Z"},{"ID":6256,"Name":"020","Points":5751,"X":512,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508337Z"},{"ID":6257,"Name":"Forteca","Points":10295,"X":500,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508337Z"},{"ID":6258,"Name":"Ulu-mulu","Points":10316,"X":431,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508337Z"},{"ID":6259,"Name":"KIELBA 007","Points":10247,"X":446,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508338Z"},{"ID":6260,"Name":"0063","Points":7745,"X":462,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508338Z"},{"ID":6261,"Name":"PiekƂo to inni","Points":5702,"X":510,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508338Z"},{"ID":6262,"Name":"ƚmieszkiii","Points":8258,"X":491,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508339Z"},{"ID":6263,"Name":"Wioska barbarzyƄska","Points":10008,"X":434,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508339Z"},{"ID":6264,"Name":"075 Nowy Orlean","Points":9761,"X":470,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508339Z"},{"ID":6265,"Name":"West 04","Points":9753,"X":587,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50834Z"},{"ID":6266,"Name":"xxx","Points":5944,"X":490,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50834Z"},{"ID":6267,"Name":"CALL 1060","Points":10495,"X":519,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50834Z"},{"ID":6268,"Name":"Wioska 18","Points":9480,"X":520,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508341Z"},{"ID":6269,"Name":"08 Zakręć kurą swą","Points":10178,"X":473,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508341Z"},{"ID":6270,"Name":"003.","Points":10019,"X":608,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508342Z"},{"ID":6271,"Name":"Front_01","Points":9735,"X":463,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508342Z"},{"ID":6272,"Name":"Brat447 XXX","Points":10495,"X":386,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508342Z"},{"ID":6273,"Name":"020","Points":10478,"X":457,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508343Z"},{"ID":6274,"Name":"002","Points":10311,"X":573,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508343Z"},{"ID":6275,"Name":"Szlachcic","Points":10178,"X":490,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508343Z"},{"ID":6276,"Name":"Lord Arsey KING","Points":10285,"X":521,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508344Z"},{"ID":6277,"Name":"Taran","Points":10237,"X":577,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508344Z"},{"ID":6278,"Name":"Wioska barbarzyƄska","Points":10495,"X":533,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508344Z"},{"ID":6279,"Name":"151 Quetzaltenango","Points":9761,"X":453,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508344Z"},{"ID":6280,"Name":"001","Points":10231,"X":504,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508345Z"},{"ID":6281,"Name":"Szlachcic","Points":9258,"X":561,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508345Z"},{"ID":6282,"Name":"163","Points":10311,"X":538,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508346Z"},{"ID":6283,"Name":"Szlachcic 011","Points":9338,"X":557,"Y":528,"Continent":"K55","Bonus":2,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508346Z"},{"ID":6284,"Name":"Pf Konfederacja","Points":8870,"X":492,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508346Z"},{"ID":6285,"Name":"B008","Points":10484,"X":485,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508347Z"},{"ID":6286,"Name":"Warzywniak 006","Points":3021,"X":448,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508347Z"},{"ID":6287,"Name":"007","Points":10495,"X":605,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508347Z"},{"ID":6288,"Name":"010","Points":10107,"X":547,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508347Z"},{"ID":6289,"Name":"Wioska BarbarzyƄska","Points":8899,"X":546,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508348Z"},{"ID":6290,"Name":"0003","Points":10495,"X":511,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508348Z"},{"ID":6291,"Name":"- 021 -","Points":10000,"X":539,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508348Z"},{"ID":6292,"Name":"KONFA TO MARKA, NARKA","Points":10358,"X":438,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508349Z"},{"ID":6293,"Name":"CHW#038","Points":8792,"X":480,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508349Z"},{"ID":6294,"Name":"PRO8L3M","Points":8397,"X":474,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508349Z"},{"ID":6295,"Name":"keepo","Points":10495,"X":484,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50835Z"},{"ID":6296,"Name":"210 Port Pirie","Points":9835,"X":534,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50835Z"},{"ID":6297,"Name":"Szlachcic","Points":10297,"X":491,"Y":467,"Continent":"K44","Bonus":1,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50835Z"},{"ID":6298,"Name":"Wioska HI","Points":2923,"X":427,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508351Z"},{"ID":6300,"Name":".:040:. Hak","Points":6424,"X":514,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508351Z"},{"ID":6301,"Name":"Szlachcic PóƂnoc 006","Points":7101,"X":624,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508351Z"},{"ID":6302,"Name":"KONFA TO MARKA, NARKA","Points":10654,"X":440,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508351Z"},{"ID":6303,"Name":"+44 72 Genas","Points":9841,"X":427,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508352Z"},{"ID":6304,"Name":"Front_10","Points":1916,"X":459,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508352Z"},{"ID":6305,"Name":"#0111 Talerz","Points":9714,"X":479,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508352Z"},{"ID":6306,"Name":"039","Points":9747,"X":435,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508353Z"},{"ID":6307,"Name":"Brat447","Points":7374,"X":460,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508353Z"},{"ID":6308,"Name":"Szlachcic","Points":9922,"X":569,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508354Z"},{"ID":6309,"Name":"a Wioska 1","Points":4864,"X":454,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508354Z"},{"ID":6310,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":423,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508354Z"},{"ID":6311,"Name":"JM2","Points":5839,"X":561,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508354Z"},{"ID":6312,"Name":"Kapitan_James_BƂąd_007","Points":10728,"X":557,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508355Z"},{"ID":6313,"Name":"013 Fiona","Points":5337,"X":448,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508355Z"},{"ID":6314,"Name":"K45 - 001","Points":10317,"X":561,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508355Z"},{"ID":6315,"Name":"Lord Arsey KING","Points":10285,"X":509,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508356Z"},{"ID":6316,"Name":"Suppi","Points":9652,"X":437,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508356Z"},{"ID":6317,"Name":"xxxx","Points":10495,"X":507,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508356Z"},{"ID":6318,"Name":"Yogi","Points":5334,"X":534,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508357Z"},{"ID":6319,"Name":"P.023","Points":10254,"X":538,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508357Z"},{"ID":6320,"Name":"*INTERTWINED*","Points":9711,"X":465,"Y":566,"Continent":"K54","Bonus":2,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508357Z"},{"ID":6321,"Name":"Suppi","Points":9575,"X":443,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508357Z"},{"ID":6322,"Name":"004","Points":6396,"X":528,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508358Z"},{"ID":6323,"Name":"(001)","Points":10152,"X":420,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508358Z"},{"ID":6324,"Name":"(020)","Points":10146,"X":427,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508358Z"},{"ID":6325,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508359Z"},{"ID":6326,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508359Z"},{"ID":6327,"Name":"019","Points":9546,"X":586,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508359Z"},{"ID":6328,"Name":"K45 - 003","Points":10079,"X":559,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50836Z"},{"ID":6329,"Name":"095","Points":10129,"X":413,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50836Z"},{"ID":6330,"Name":"Gattacka","Points":9847,"X":582,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50836Z"},{"ID":6331,"Name":"+44 72 Coquelles","Points":9849,"X":428,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508361Z"},{"ID":6332,"Name":"*INTERTWINED*","Points":9711,"X":479,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508361Z"},{"ID":6333,"Name":"...Just like that","Points":5851,"X":459,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508361Z"},{"ID":6334,"Name":"JaƂowęsy","Points":8805,"X":535,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508362Z"},{"ID":6335,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508362Z"},{"ID":6336,"Name":"CALL 981","Points":10311,"X":549,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508362Z"},{"ID":6337,"Name":"Szlachcic","Points":9952,"X":494,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508363Z"},{"ID":6338,"Name":"keepo","Points":8239,"X":477,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508363Z"},{"ID":6339,"Name":"0098","Points":10297,"X":459,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508363Z"},{"ID":6340,"Name":"Wioska barbarzyƄska","Points":6735,"X":510,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508364Z"},{"ID":6341,"Name":"ZasiedmiogĂłrogrĂłd","Points":5699,"X":539,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508364Z"},{"ID":6342,"Name":"Kasyno","Points":9865,"X":443,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508364Z"},{"ID":6343,"Name":"F016","Points":9753,"X":497,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508365Z"},{"ID":6344,"Name":"Wioska","Points":10178,"X":379,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508365Z"},{"ID":6345,"Name":"Orish","Points":3323,"X":430,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508365Z"},{"ID":6346,"Name":"041","Points":10129,"X":417,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508366Z"},{"ID":6347,"Name":"Oplot","Points":6474,"X":437,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508366Z"},{"ID":6348,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":445,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508366Z"},{"ID":6349,"Name":"- 039 -","Points":10000,"X":532,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508366Z"},{"ID":6350,"Name":"Szlachcic","Points":10237,"X":466,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508367Z"},{"ID":6351,"Name":"SsSs","Points":7563,"X":453,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508367Z"},{"ID":6352,"Name":"-[020]- Nuptse","Points":7318,"X":558,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508367Z"},{"ID":6353,"Name":"0001 Gehenna Facility","Points":10703,"X":387,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508368Z"},{"ID":6354,"Name":"10006","Points":11130,"X":529,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508368Z"},{"ID":6355,"Name":"191 Cartagena","Points":9761,"X":470,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508368Z"},{"ID":6356,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":418,"Y":483,"Continent":"K44","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508369Z"},{"ID":6358,"Name":"~~LatającyHolender~~","Points":10155,"X":585,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508369Z"},{"ID":6359,"Name":"7.62 mm","Points":10019,"X":493,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508369Z"},{"ID":6361,"Name":"Horyzont zdarzeƄ","Points":10019,"X":524,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50837Z"},{"ID":6362,"Name":"Monetki","Points":10290,"X":475,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50837Z"},{"ID":6363,"Name":"0Wioska barbarzyƄska","Points":8786,"X":482,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50837Z"},{"ID":6364,"Name":"PRO8L3M","Points":7492,"X":461,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508371Z"},{"ID":6365,"Name":"021","Points":6954,"X":527,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508371Z"},{"ID":6366,"Name":"Ateny_75","Points":4550,"X":474,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508371Z"},{"ID":6367,"Name":"24.","Points":10178,"X":565,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508371Z"},{"ID":6368,"Name":"001. Gloria Victis","Points":10357,"X":439,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508372Z"},{"ID":6369,"Name":"Fajna 030","Points":8816,"X":449,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508372Z"},{"ID":6370,"Name":"0078","Points":10495,"X":528,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508372Z"},{"ID":6371,"Name":"~~LatającyHolender~~","Points":10208,"X":585,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508373Z"},{"ID":6372,"Name":"1. Type 58 G !!!","Points":10019,"X":494,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508373Z"},{"ID":6373,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":418,"Y":480,"Continent":"K44","Bonus":6,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508373Z"},{"ID":6374,"Name":"Szlachcic !!!","Points":9835,"X":510,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508374Z"},{"ID":6375,"Name":"028 |","Points":10143,"X":556,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508374Z"},{"ID":6376,"Name":"Wioska barbarzyƄska","Points":7376,"X":521,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508374Z"},{"ID":6377,"Name":"keepo","Points":9817,"X":481,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508375Z"},{"ID":6378,"Name":".:069:. Chillout","Points":10107,"X":503,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508375Z"},{"ID":6379,"Name":"NOT?","Points":9897,"X":438,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508375Z"},{"ID":6380,"Name":"NIERAJ001","Points":10356,"X":469,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508375Z"},{"ID":6381,"Name":"073.","Points":7337,"X":568,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508376Z"},{"ID":6382,"Name":"0076","Points":9835,"X":456,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508376Z"},{"ID":6383,"Name":"Gattacka","Points":9750,"X":590,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508376Z"},{"ID":6384,"Name":"A0006","Points":10362,"X":388,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508377Z"},{"ID":6385,"Name":"Forteca","Points":10311,"X":500,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508377Z"},{"ID":6386,"Name":"FF001","Points":7145,"X":469,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508377Z"},{"ID":6387,"Name":"040","Points":9742,"X":436,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508378Z"},{"ID":6388,"Name":"[145]","Points":8962,"X":568,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508378Z"},{"ID":6389,"Name":"[A]_[023] Dejv.oldplyr","Points":10495,"X":404,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508378Z"},{"ID":6390,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":437,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508378Z"},{"ID":6391,"Name":"109 Aha","Points":9563,"X":551,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508379Z"},{"ID":6393,"Name":"~~LatającyHolender~~","Points":9535,"X":566,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508379Z"},{"ID":6394,"Name":"Your Body!","Points":9835,"X":499,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508379Z"},{"ID":6395,"Name":"Kasyno","Points":10008,"X":448,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50838Z"},{"ID":6396,"Name":"Wioska barbarzyƄska","Points":9275,"X":431,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50838Z"},{"ID":6397,"Name":"0063 11","Points":9919,"X":452,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50838Z"},{"ID":6398,"Name":"P.022","Points":9964,"X":539,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50838Z"},{"ID":6399,"Name":"Wioska barbarzyƄska","Points":8493,"X":471,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508381Z"},{"ID":6400,"Name":"Pf Konfederacja","Points":9938,"X":482,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508381Z"},{"ID":6401,"Name":"025","Points":9747,"X":438,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508381Z"},{"ID":6402,"Name":"002.","Points":9902,"X":523,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508382Z"},{"ID":6403,"Name":"050","Points":10129,"X":425,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508382Z"},{"ID":6404,"Name":"SsSs","Points":8318,"X":452,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508382Z"},{"ID":6406,"Name":"Fajna 090","Points":828,"X":455,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508383Z"},{"ID":6407,"Name":"*Ateny_47","Points":9638,"X":468,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508383Z"},{"ID":6408,"Name":"[081]","Points":9959,"X":555,"Y":547,"Continent":"K55","Bonus":5,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508383Z"},{"ID":6409,"Name":"LEƚNE KRÓLESTWO","Points":10184,"X":537,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508383Z"},{"ID":6410,"Name":"7.62 mm","Points":10019,"X":471,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508384Z"},{"ID":6411,"Name":"Suppi","Points":9808,"X":428,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508384Z"},{"ID":6412,"Name":"Wioska BarbarzyƄska","Points":10019,"X":542,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508384Z"},{"ID":6413,"Name":"105 Saskatoon","Points":9761,"X":476,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508385Z"},{"ID":6414,"Name":"CALL 954","Points":10311,"X":545,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508385Z"},{"ID":6415,"Name":"Erebor 7","Points":7858,"X":499,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508385Z"},{"ID":6416,"Name":"Szlachcic","Points":10237,"X":464,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508386Z"},{"ID":6417,"Name":"0056 Zodiak","Points":10444,"X":439,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508386Z"},{"ID":6418,"Name":"NOT?","Points":9993,"X":413,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508386Z"},{"ID":6419,"Name":"- 215 -","Points":10000,"X":551,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508387Z"},{"ID":6420,"Name":".achim.","Points":10311,"X":525,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508387Z"},{"ID":6421,"Name":"kathare","Points":10011,"X":496,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508387Z"},{"ID":6422,"Name":"Carsultyal.","Points":6053,"X":487,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508388Z"},{"ID":6423,"Name":"Osada","Points":10113,"X":492,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508388Z"},{"ID":6424,"Name":"Konfiasze","Points":10971,"X":474,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508388Z"},{"ID":6425,"Name":"014 |","Points":10232,"X":568,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508389Z"},{"ID":6426,"Name":"Horyzont zdarzeƄ","Points":9835,"X":515,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508389Z"},{"ID":6427,"Name":"00901","Points":8501,"X":452,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508389Z"},{"ID":6428,"Name":"#0036 Agrest","Points":10019,"X":498,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50839Z"},{"ID":6429,"Name":"Os Konfederacja","Points":9853,"X":474,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50839Z"},{"ID":6431,"Name":"BBB","Points":8653,"X":553,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50839Z"},{"ID":6432,"Name":"Wioska barbarzyƄska","Points":3078,"X":441,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50839Z"},{"ID":6433,"Name":"Wioska 423","Points":10495,"X":558,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508391Z"},{"ID":6434,"Name":"Wioska","Points":10178,"X":381,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508391Z"},{"ID":6435,"Name":"PRO8L3M","Points":8999,"X":464,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508391Z"},{"ID":6436,"Name":"sas","Points":10051,"X":536,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508392Z"},{"ID":6437,"Name":"Osada","Points":10306,"X":493,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508392Z"},{"ID":6438,"Name":"#0031 ƚwidwin","Points":10000,"X":485,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508392Z"},{"ID":6439,"Name":"PiekƂo to inni","Points":9761,"X":516,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508393Z"},{"ID":6440,"Name":"xxx","Points":10495,"X":479,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508393Z"},{"ID":6441,"Name":"South K45","Points":10042,"X":595,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508393Z"},{"ID":6442,"Name":"0063 b2qqqqqqqqqqqqqqqqqqqqqqqqq","Points":10083,"X":453,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508394Z"},{"ID":6443,"Name":"#0012 Szalony Ogier","Points":10000,"X":485,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508394Z"},{"ID":6445,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":441,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508394Z"},{"ID":6446,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9642,"X":469,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508395Z"},{"ID":6447,"Name":"Szlachcic","Points":10237,"X":577,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508395Z"},{"ID":6449,"Name":"0085","Points":8009,"X":545,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508395Z"},{"ID":6450,"Name":"Suppi","Points":9881,"X":424,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508396Z"},{"ID":6451,"Name":"-[004]- Lhotse","Points":7524,"X":555,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508396Z"},{"ID":6452,"Name":"- 063 -","Points":10000,"X":536,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508397Z"},{"ID":6453,"Name":"BETI 004","Points":1824,"X":457,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508397Z"},{"ID":6454,"Name":"0051 Bombas","Points":10444,"X":436,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508397Z"},{"ID":6455,"Name":"013","Points":10019,"X":581,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508398Z"},{"ID":6456,"Name":"SZYMI PALACE 1","Points":9756,"X":392,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508398Z"},{"ID":6457,"Name":"015","Points":5877,"X":560,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508398Z"},{"ID":6458,"Name":"Wioska barbarzyƄska","Points":10285,"X":437,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508399Z"},{"ID":6459,"Name":"Os Konfederacja +","Points":10001,"X":471,"Y":443,"Continent":"K44","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508399Z"},{"ID":6460,"Name":".achim.","Points":10311,"X":534,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508399Z"},{"ID":6461,"Name":"Warzywniak 010","Points":2062,"X":443,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5084Z"},{"ID":6462,"Name":"OgrĂłd Warzywny","Points":9111,"X":450,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5084Z"},{"ID":6463,"Name":"Wioska barbarzyƄska","Points":10285,"X":427,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5084Z"},{"ID":6464,"Name":"Szlachcic 042","Points":9343,"X":567,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508401Z"},{"ID":6465,"Name":"Mordor","Points":10971,"X":503,"Y":531,"Continent":"K55","Bonus":3,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508401Z"},{"ID":6466,"Name":"Suppi","Points":9738,"X":432,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508401Z"},{"ID":6467,"Name":"7.62 mm","Points":10019,"X":500,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508402Z"},{"ID":6468,"Name":"SSJ 002","Points":9761,"X":489,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508402Z"},{"ID":6469,"Name":"038","Points":10237,"X":485,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508402Z"},{"ID":6470,"Name":"0049 K55 and987 OZDR","Points":9914,"X":500,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508403Z"},{"ID":6471,"Name":"003 Fiona","Points":5911,"X":446,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508403Z"},{"ID":6472,"Name":"Szlachcic","Points":9899,"X":501,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508403Z"},{"ID":6473,"Name":"Osada","Points":10295,"X":498,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508404Z"},{"ID":6474,"Name":"Monetki","Points":10297,"X":482,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508404Z"},{"ID":6475,"Name":"0208","Points":10019,"X":524,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508404Z"},{"ID":6476,"Name":"Suppi","Points":9559,"X":436,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508404Z"},{"ID":6477,"Name":"Ost-in-Edhil","Points":8751,"X":503,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508405Z"},{"ID":6478,"Name":"Jaaa","Points":10484,"X":581,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508405Z"},{"ID":6479,"Name":"001. Harnaƛ","Points":9825,"X":428,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508405Z"},{"ID":6480,"Name":"Marienburg 4","Points":5368,"X":528,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508406Z"},{"ID":6481,"Name":"0029","Points":10211,"X":561,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508406Z"},{"ID":6482,"Name":"Szlachcic","Points":9721,"X":564,"Y":494,"Continent":"K45","Bonus":4,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508406Z"},{"ID":6483,"Name":"Wioska BarbarzyƄska","Points":9478,"X":544,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508407Z"},{"ID":6484,"Name":"015 Texas","Points":10495,"X":432,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508407Z"},{"ID":6485,"Name":"Suppi","Points":9553,"X":440,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508407Z"},{"ID":6486,"Name":"075.","Points":9955,"X":570,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508408Z"},{"ID":6487,"Name":"064","Points":10495,"X":554,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508408Z"},{"ID":6488,"Name":"P.010","Points":9915,"X":539,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508408Z"},{"ID":6489,"Name":"Winter is coming","Points":9868,"X":508,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508409Z"},{"ID":6490,"Name":"Winter is coming","Points":3178,"X":440,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508409Z"},{"ID":6491,"Name":".achim.","Points":7377,"X":532,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508409Z"},{"ID":6492,"Name":"0074","Points":10495,"X":549,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50841Z"},{"ID":6493,"Name":"KONFA TO MARKA, NARKA","Points":10306,"X":434,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50841Z"},{"ID":6494,"Name":"-014-","Points":10487,"X":453,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50841Z"},{"ID":6495,"Name":"aaa","Points":9342,"X":565,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50841Z"},{"ID":6496,"Name":"NOT?","Points":8093,"X":436,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508411Z"},{"ID":6497,"Name":"ƚmieszkii","Points":9196,"X":517,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508411Z"},{"ID":6498,"Name":"Opas","Points":3529,"X":434,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508411Z"},{"ID":6499,"Name":"0.Phoenix","Points":9970,"X":522,"Y":586,"Continent":"K55","Bonus":3,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508412Z"},{"ID":6500,"Name":"ADEN","Points":10178,"X":559,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508412Z"},{"ID":6501,"Name":"Wioska barbarzyƄska","Points":10285,"X":437,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508412Z"},{"ID":6502,"Name":"Os Konfederacja +","Points":10001,"X":476,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508412Z"},{"ID":6503,"Name":"Szlachcic","Points":10237,"X":571,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508413Z"},{"ID":6504,"Name":"|008|","Points":10484,"X":552,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508413Z"},{"ID":6505,"Name":"JaamMwG 018","Points":9156,"X":525,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508413Z"},{"ID":6506,"Name":"ADEN","Points":10072,"X":558,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508414Z"},{"ID":6507,"Name":"!Wioska 503","Points":10495,"X":578,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508414Z"},{"ID":6508,"Name":"PYRLANDIA 040 $+C","Points":10401,"X":578,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508414Z"},{"ID":6509,"Name":"025 Bayou La Batre","Points":9797,"X":449,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508414Z"},{"ID":6510,"Name":"...Just like that","Points":10452,"X":453,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508415Z"},{"ID":6511,"Name":"Mniejsze zƂo 0055","Points":7553,"X":421,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508415Z"},{"ID":6512,"Name":"Kasyno","Points":10093,"X":442,"Y":510,"Continent":"K54","Bonus":3,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508415Z"},{"ID":6513,"Name":"021","Points":9181,"X":583,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508416Z"},{"ID":6514,"Name":"A008","Points":10495,"X":489,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508416Z"},{"ID":6515,"Name":"Brat447","Points":10476,"X":443,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508416Z"},{"ID":6516,"Name":"NOT?","Points":10042,"X":434,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508417Z"},{"ID":6517,"Name":"Gattacka","Points":9821,"X":587,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508417Z"},{"ID":6518,"Name":"B068","Points":10495,"X":473,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508417Z"},{"ID":6519,"Name":"D03","Points":10580,"X":548,"Y":463,"Continent":"K45","Bonus":8,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508418Z"},{"ID":6520,"Name":"Front_05","Points":3756,"X":460,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508418Z"},{"ID":6521,"Name":"F060","Points":9434,"X":489,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508418Z"},{"ID":6522,"Name":"X03","Points":2525,"X":538,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508418Z"},{"ID":6523,"Name":"002 Fiona","Points":6893,"X":445,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508419Z"},{"ID":6524,"Name":"02*","Points":7994,"X":575,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508419Z"},{"ID":6525,"Name":"ƚmieszkii","Points":9051,"X":517,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508419Z"},{"ID":6526,"Name":"ADEN","Points":9971,"X":555,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50842Z"},{"ID":6527,"Name":"Wioska barbarzyƄska","Points":9700,"X":586,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50842Z"},{"ID":6528,"Name":"Kasyno","Points":10237,"X":443,"Y":517,"Continent":"K54","Bonus":6,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50842Z"},{"ID":6529,"Name":".achim.","Points":10042,"X":527,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50842Z"},{"ID":6530,"Name":"0014|Zagrzeb","Points":7345,"X":508,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508421Z"},{"ID":6531,"Name":"Fajna 065","Points":8574,"X":451,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508421Z"},{"ID":6532,"Name":"B046","Points":10495,"X":483,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508421Z"},{"ID":6534,"Name":"0163","Points":10495,"X":548,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508422Z"},{"ID":6536,"Name":"92k$ Grvvyq","Points":10495,"X":564,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508422Z"},{"ID":6537,"Name":"KIELBA 127","Points":10226,"X":462,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508422Z"},{"ID":6538,"Name":"[212]","Points":8614,"X":545,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508422Z"},{"ID":6539,"Name":"-026-","Points":10213,"X":460,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508423Z"},{"ID":6540,"Name":".achim.","Points":9203,"X":533,"Y":453,"Continent":"K45","Bonus":5,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508423Z"},{"ID":6542,"Name":"Jaaa","Points":10487,"X":575,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508423Z"},{"ID":6543,"Name":"Yogi","Points":10019,"X":492,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508424Z"},{"ID":6544,"Name":"#0140 Sustanon","Points":7225,"X":494,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508424Z"},{"ID":6545,"Name":"087. ALFI","Points":1376,"X":475,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508425Z"},{"ID":6546,"Name":"010. ALFI","Points":2383,"X":483,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508425Z"},{"ID":6547,"Name":"124.","Points":7032,"X":513,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508425Z"},{"ID":6548,"Name":"037","Points":9902,"X":543,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508425Z"},{"ID":6549,"Name":"006","Points":9835,"X":565,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508426Z"},{"ID":6550,"Name":"Yogi","Points":10083,"X":535,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508426Z"},{"ID":6551,"Name":"Winter is coming","Points":9729,"X":437,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508426Z"},{"ID":6552,"Name":"043 - B01***","Points":10495,"X":434,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508426Z"},{"ID":6553,"Name":"042.","Points":10068,"X":597,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508427Z"},{"ID":6554,"Name":"ƚmieszkii","Points":9175,"X":506,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508427Z"},{"ID":6555,"Name":"#0070 Piotr J","Points":10000,"X":497,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508427Z"},{"ID":6556,"Name":"Fajna 075","Points":5634,"X":455,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508427Z"},{"ID":6557,"Name":"yogi","Points":10019,"X":503,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508428Z"},{"ID":6558,"Name":"042. A-RE-SE-EY","Points":10252,"X":569,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508428Z"},{"ID":6559,"Name":".achim.","Points":12154,"X":529,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508428Z"},{"ID":6560,"Name":"xxx","Points":10495,"X":509,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508429Z"},{"ID":6561,"Name":"JaamMwG 019","Points":9616,"X":525,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508429Z"},{"ID":6562,"Name":"TRR 002","Points":10008,"X":410,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508429Z"},{"ID":6563,"Name":"P Konfederacja","Points":10002,"X":466,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508429Z"},{"ID":6564,"Name":"Sparta_40","Points":9638,"X":483,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50843Z"},{"ID":6565,"Name":"PiekƂo to inni","Points":10160,"X":526,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50843Z"},{"ID":6566,"Name":"Monetki","Points":10294,"X":480,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50843Z"},{"ID":6567,"Name":"NOT?","Points":10042,"X":413,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50843Z"},{"ID":6568,"Name":"Brat447","Points":8575,"X":459,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508431Z"},{"ID":6569,"Name":"Szlachcic 015","Points":8024,"X":558,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508431Z"},{"ID":6570,"Name":"058. ALFI","Points":1531,"X":484,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508431Z"},{"ID":6571,"Name":"Szlachcic !!!","Points":9565,"X":503,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508432Z"},{"ID":6572,"Name":"Kilonia","Points":7072,"X":516,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508432Z"},{"ID":6573,"Name":"Jaaa","Points":10484,"X":583,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508432Z"},{"ID":6574,"Name":"#0082 Prawiedniki","Points":10000,"X":498,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508432Z"},{"ID":6575,"Name":"K45 - 012","Points":10019,"X":557,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508433Z"},{"ID":6576,"Name":"045 Plemię","Points":10495,"X":574,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508433Z"},{"ID":6577,"Name":"*INTERTWINED*","Points":9735,"X":477,"Y":544,"Continent":"K54","Bonus":1,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508433Z"},{"ID":6578,"Name":"007","Points":10042,"X":411,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508434Z"},{"ID":6579,"Name":"KIELBA 029","Points":10259,"X":452,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508434Z"},{"ID":6580,"Name":"Burdel","Points":10348,"X":550,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508434Z"},{"ID":6581,"Name":"013","Points":4358,"X":561,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508434Z"},{"ID":6582,"Name":"Rubinowa Dolina","Points":5885,"X":535,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":8513699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508435Z"},{"ID":6583,"Name":"Kasyno","Points":9994,"X":440,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508435Z"},{"ID":6584,"Name":"P.026","Points":9913,"X":538,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508436Z"},{"ID":6585,"Name":"Wioska barbarzyƄska","Points":10008,"X":446,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508436Z"},{"ID":6587,"Name":"Yogi","Points":10019,"X":541,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508436Z"},{"ID":6588,"Name":"JW1","Points":8719,"X":555,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508436Z"},{"ID":6589,"Name":".achim.","Points":10311,"X":526,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508437Z"},{"ID":6591,"Name":"A046","Points":10178,"X":501,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508437Z"},{"ID":6592,"Name":"050 Fresno","Points":9761,"X":471,"Y":468,"Continent":"K44","Bonus":8,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508437Z"},{"ID":6593,"Name":"Gattacka","Points":9664,"X":581,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508438Z"},{"ID":6594,"Name":".achim.","Points":10311,"X":532,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508438Z"},{"ID":6595,"Name":"Awanturnik 1908","Points":8882,"X":516,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508438Z"},{"ID":6596,"Name":"006","Points":9730,"X":523,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508438Z"},{"ID":6597,"Name":".achim.","Points":10375,"X":532,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508439Z"},{"ID":6598,"Name":"016. A-RE-SE-EY","Points":10252,"X":579,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508439Z"},{"ID":6599,"Name":"Aleartis","Points":9711,"X":488,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508439Z"},{"ID":6600,"Name":"kathare","Points":10457,"X":497,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50844Z"},{"ID":6601,"Name":"szczęƛliwego nowego fejkomatu","Points":5942,"X":395,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50844Z"},{"ID":6602,"Name":"[122] North22","Points":10054,"X":570,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508441Z"},{"ID":6603,"Name":"ladyanima","Points":9448,"X":516,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508441Z"},{"ID":6604,"Name":"Kulik 003","Points":7426,"X":402,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508441Z"},{"ID":6605,"Name":"Wioska 0013","Points":10188,"X":401,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508442Z"},{"ID":6606,"Name":"[186]","Points":8032,"X":540,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508442Z"},{"ID":6608,"Name":"#0056 Nimesil","Points":9976,"X":490,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508442Z"},{"ID":6609,"Name":"Pf Konfederacja","Points":10887,"X":495,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508443Z"},{"ID":6610,"Name":"ƚmieszkiii","Points":8457,"X":496,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508443Z"},{"ID":6611,"Name":"Wioska Ariel69","Points":9771,"X":604,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":848925840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508443Z"},{"ID":6612,"Name":"P Konfederacja","Points":7998,"X":460,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508443Z"},{"ID":6613,"Name":"JK6","Points":9918,"X":562,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508444Z"},{"ID":6614,"Name":"203 Port au Prince","Points":9761,"X":468,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508444Z"},{"ID":6615,"Name":"Monetki","Points":9637,"X":473,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508444Z"},{"ID":6616,"Name":"198 Alice Springs","Points":9902,"X":532,"Y":428,"Continent":"K45","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508444Z"},{"ID":6617,"Name":"P Konfederacja 8","Points":9808,"X":452,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508445Z"},{"ID":6618,"Name":"xxx","Points":10495,"X":504,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508445Z"},{"ID":6619,"Name":"~~LatającyHolender~~","Points":10149,"X":588,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508445Z"},{"ID":6620,"Name":"Gattacka","Points":9744,"X":582,"Y":495,"Continent":"K45","Bonus":1,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508445Z"},{"ID":6621,"Name":"Barba","Points":10008,"X":434,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508446Z"},{"ID":6622,"Name":".:037:. Chillout","Points":8631,"X":518,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508446Z"},{"ID":6623,"Name":"Gratuluje mĂłzgu","Points":5704,"X":441,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508446Z"},{"ID":6624,"Name":"Suppi","Points":9559,"X":426,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508446Z"},{"ID":6625,"Name":"CALL 971","Points":10311,"X":548,"Y":558,"Continent":"K55","Bonus":6,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508447Z"},{"ID":6626,"Name":"Entrance","Points":10495,"X":524,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508447Z"},{"ID":6627,"Name":"Lord Arsey KING","Points":10285,"X":528,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508447Z"},{"ID":6628,"Name":"Wioska 2","Points":5169,"X":428,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508448Z"},{"ID":6629,"Name":"SsSs","Points":9734,"X":422,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508448Z"},{"ID":6630,"Name":"WesternGold","Points":9578,"X":539,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508448Z"},{"ID":6631,"Name":"044. ALFI","Points":1903,"X":485,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508448Z"},{"ID":6632,"Name":"Dum Spiro Spero","Points":9976,"X":493,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508449Z"},{"ID":6633,"Name":"A#044#","Points":11706,"X":423,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508449Z"},{"ID":6634,"Name":"-027-","Points":10479,"X":461,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508449Z"},{"ID":6636,"Name":"11 SƂowacja","Points":6473,"X":589,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50845Z"},{"ID":6637,"Name":"Os Konfederacja","Points":10068,"X":474,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50845Z"},{"ID":6638,"Name":"Szlachcic","Points":9721,"X":572,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50845Z"},{"ID":6639,"Name":"C011","Points":10711,"X":526,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50845Z"},{"ID":6640,"Name":"Dum Spiro Spero","Points":10000,"X":494,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508451Z"},{"ID":6641,"Name":"PiekƂo to inni","Points":10160,"X":528,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508451Z"},{"ID":6642,"Name":"Suppi","Points":9627,"X":441,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508451Z"},{"ID":6643,"Name":"022","Points":1859,"X":463,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508451Z"},{"ID":6644,"Name":"NOT?","Points":10042,"X":433,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508452Z"},{"ID":6645,"Name":":(.","Points":8270,"X":542,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508452Z"},{"ID":6646,"Name":"ABADON STAY","Points":9095,"X":568,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508453Z"},{"ID":6648,"Name":"[073] Patua koe","Points":10011,"X":536,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508453Z"},{"ID":6649,"Name":"Szlachcic 058","Points":9338,"X":576,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508453Z"},{"ID":6650,"Name":"CALL 986","Points":10311,"X":555,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508453Z"},{"ID":6651,"Name":"Winter is coming","Points":9885,"X":439,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508454Z"},{"ID":6652,"Name":"4 c4bat","Points":9392,"X":439,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508454Z"},{"ID":6653,"Name":".achim.","Points":10336,"X":534,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508454Z"},{"ID":6654,"Name":"175 Bahia Blanca","Points":9761,"X":483,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508454Z"},{"ID":6655,"Name":"[128] North28","Points":10400,"X":577,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508455Z"},{"ID":6656,"Name":"Village","Points":12154,"X":517,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508455Z"},{"ID":6657,"Name":"091","Points":10311,"X":558,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508456Z"},{"ID":6658,"Name":"KIELBA 102","Points":10229,"X":444,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508456Z"},{"ID":6659,"Name":".:067:. Chillout","Points":10636,"X":506,"Y":415,"Continent":"K45","Bonus":3,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508456Z"},{"ID":6660,"Name":"Village","Points":12154,"X":502,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508456Z"},{"ID":6661,"Name":"OgrĂłd Warzywny","Points":7935,"X":454,"Y":560,"Continent":"K54","Bonus":9,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508457Z"},{"ID":6662,"Name":"Oleole","Points":4049,"X":436,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508457Z"},{"ID":6663,"Name":"KIELBA 056","Points":10290,"X":457,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508457Z"},{"ID":6664,"Name":"002","Points":10008,"X":446,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508458Z"},{"ID":6665,"Name":"[134]","Points":9494,"X":557,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508458Z"},{"ID":6666,"Name":"008511","Points":7809,"X":439,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508458Z"},{"ID":6667,"Name":"Cast Away 004","Points":7876,"X":451,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508458Z"},{"ID":6668,"Name":"-= 007 =-","Points":10008,"X":443,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508459Z"},{"ID":6669,"Name":"Szmaragdowa Wyspa","Points":4841,"X":537,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":8513699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508459Z"},{"ID":6670,"Name":"WioskaE","Points":8367,"X":510,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508459Z"},{"ID":6671,"Name":"Wioska taysi","Points":1917,"X":516,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":848942847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50846Z"},{"ID":6672,"Name":"0. Mob","Points":10241,"X":521,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50846Z"},{"ID":6673,"Name":"Szlachcic","Points":9721,"X":572,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50846Z"},{"ID":6674,"Name":"[182]","Points":7290,"X":543,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508461Z"},{"ID":6675,"Name":".achim.","Points":10311,"X":528,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508461Z"},{"ID":6676,"Name":"F085","Points":8962,"X":490,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508461Z"},{"ID":6677,"Name":"Kasyno","Points":10104,"X":443,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508461Z"},{"ID":6678,"Name":"A004","Points":10495,"X":481,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508462Z"},{"ID":6679,"Name":"x005","Points":7063,"X":428,"Y":499,"Continent":"K44","Bonus":5,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508462Z"},{"ID":6681,"Name":"keepo","Points":10287,"X":484,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508462Z"},{"ID":6682,"Name":"048 Miami","Points":9761,"X":452,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508462Z"},{"ID":6683,"Name":"Wioska barbarzyƄska","Points":10405,"X":443,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508463Z"},{"ID":6685,"Name":"Wioska *Swiss*Bang*","Points":8651,"X":445,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508463Z"},{"ID":6686,"Name":"Osada","Points":7840,"X":507,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508464Z"},{"ID":6687,"Name":"FilipVII","Points":9533,"X":442,"Y":531,"Continent":"K54","Bonus":7,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508464Z"},{"ID":6688,"Name":"109 Sept-Iles","Points":9825,"X":479,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508464Z"},{"ID":6689,"Name":"Mniejsze zƂo 0032","Points":8116,"X":418,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508464Z"},{"ID":6690,"Name":"[071]","Points":9894,"X":558,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508465Z"},{"ID":6691,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":450,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508465Z"},{"ID":6692,"Name":"C 016","Points":10362,"X":563,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508465Z"},{"ID":6693,"Name":"002","Points":9128,"X":539,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508465Z"},{"ID":6695,"Name":"005","Points":10195,"X":603,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508466Z"},{"ID":6696,"Name":"B012","Points":10436,"X":490,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508466Z"},{"ID":6697,"Name":"007 Tucson","Points":9761,"X":440,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508466Z"},{"ID":6698,"Name":"- 218 -","Points":10000,"X":548,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508466Z"},{"ID":6699,"Name":"013","Points":2803,"X":461,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508467Z"},{"ID":6700,"Name":"Pf Konfederacja","Points":9912,"X":495,"Y":499,"Continent":"K44","Bonus":7,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508467Z"},{"ID":6701,"Name":"Brat447","Points":10495,"X":447,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508467Z"},{"ID":6702,"Name":"F044","Points":8993,"X":485,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508468Z"},{"ID":6703,"Name":"Brat447","Points":5878,"X":463,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508468Z"},{"ID":6704,"Name":"Szlachcic","Points":9693,"X":495,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508468Z"},{"ID":6705,"Name":"F066","Points":9033,"X":484,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508469Z"},{"ID":6706,"Name":"Lord Arsey KING","Points":10285,"X":530,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508469Z"},{"ID":6707,"Name":"#0135 Barbarian","Points":5223,"X":552,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508469Z"},{"ID":6708,"Name":"163 Ale mnie gƂówka boli","Points":10636,"X":385,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50847Z"},{"ID":6709,"Name":"075","Points":10042,"X":413,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50847Z"},{"ID":6710,"Name":"Szlachcic","Points":10237,"X":468,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50847Z"},{"ID":6711,"Name":"!Rapidash","Points":10160,"X":566,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508471Z"},{"ID":6712,"Name":"0029 K54 and987 OZDR.","Points":9856,"X":487,"Y":549,"Continent":"K54","Bonus":6,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508471Z"},{"ID":6713,"Name":"+44 62 L Arbresle","Points":9669,"X":429,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508472Z"},{"ID":6714,"Name":"-028-","Points":10822,"X":466,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508472Z"},{"ID":6715,"Name":"Szlachcic","Points":10164,"X":505,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508472Z"},{"ID":6716,"Name":"Omonomo","Points":2950,"X":438,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508473Z"},{"ID":6717,"Name":"Szlachcic 014","Points":9338,"X":571,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508473Z"},{"ID":6718,"Name":"NOT FOR YOU","Points":5314,"X":458,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508473Z"},{"ID":6719,"Name":"Jaaa","Points":10484,"X":570,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508474Z"},{"ID":6720,"Name":"OgrĂłd Warzywny","Points":7523,"X":449,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508474Z"},{"ID":6721,"Name":"005 Palm Springs","Points":10019,"X":444,"Y":469,"Continent":"K44","Bonus":4,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508474Z"},{"ID":6722,"Name":"Mzm34","Points":10362,"X":592,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508475Z"},{"ID":6723,"Name":"Szlachcic","Points":9771,"X":559,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508475Z"},{"ID":6724,"Name":"ZS03","Points":10008,"X":450,"Y":527,"Continent":"K54","Bonus":2,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508475Z"},{"ID":6725,"Name":"Os Konfederacja","Points":9861,"X":482,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508475Z"},{"ID":6726,"Name":"Lord Arsey KING","Points":10285,"X":510,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508476Z"},{"ID":6727,"Name":"2.Skorpion !!!","Points":10000,"X":499,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508476Z"},{"ID":6728,"Name":"PRO8L3M","Points":9513,"X":427,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508476Z"},{"ID":6729,"Name":"0051 K55 and987 OZDR","Points":9878,"X":508,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508476Z"},{"ID":6730,"Name":"|014|","Points":10336,"X":554,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508477Z"},{"ID":6731,"Name":"Szlachcic","Points":10357,"X":484,"Y":479,"Continent":"K44","Bonus":8,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508477Z"},{"ID":6732,"Name":"041 |","Points":10495,"X":561,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508477Z"},{"ID":6733,"Name":"Os Konfederacja","Points":9969,"X":475,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508477Z"},{"ID":6734,"Name":"Cast Away 002","Points":4853,"X":454,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508478Z"},{"ID":6735,"Name":"- 212 -","Points":10000,"X":547,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508478Z"},{"ID":6736,"Name":"0003","Points":10320,"X":614,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508478Z"},{"ID":6737,"Name":"-xx11","Points":10252,"X":497,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508479Z"},{"ID":6738,"Name":"Szlachcic","Points":10311,"X":494,"Y":482,"Continent":"K44","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508479Z"},{"ID":6739,"Name":"9.9.1 Legiony","Points":5728,"X":544,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508479Z"},{"ID":6740,"Name":"Pf Konfederacja","Points":10044,"X":494,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50848Z"},{"ID":6741,"Name":"Szlachcic","Points":10237,"X":558,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50848Z"},{"ID":6742,"Name":"047.","Points":10728,"X":500,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50848Z"},{"ID":6743,"Name":"Azymut!","Points":9835,"X":498,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50848Z"},{"ID":6744,"Name":"yogi","Points":6530,"X":532,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508481Z"},{"ID":6745,"Name":"?+44 85 Colombier Saugnieu","Points":9722,"X":454,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508481Z"},{"ID":6746,"Name":"~~LatającyHolender~~","Points":10252,"X":585,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508481Z"},{"ID":6747,"Name":"*Ateny_18","Points":3122,"X":467,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508482Z"},{"ID":6748,"Name":"NOT?","Points":10042,"X":431,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508482Z"},{"ID":6749,"Name":"Ręcznik do zmiany","Points":10362,"X":416,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508482Z"},{"ID":6751,"Name":"Mzm18","Points":10252,"X":567,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508483Z"},{"ID":6752,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":427,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508483Z"},{"ID":6753,"Name":"#Sawk","Points":10654,"X":566,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508483Z"},{"ID":6754,"Name":"Szlachcic","Points":9123,"X":509,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508484Z"},{"ID":6755,"Name":"...Just like that","Points":10452,"X":454,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508484Z"},{"ID":6757,"Name":"034","Points":9761,"X":437,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508484Z"},{"ID":6758,"Name":"ADEN","Points":8836,"X":561,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508485Z"},{"ID":6759,"Name":"P Konfederacja","Points":10031,"X":460,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508485Z"},{"ID":6760,"Name":"052. A-RE-SE-EY","Points":10252,"X":546,"Y":516,"Continent":"K55","Bonus":6,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508485Z"},{"ID":6761,"Name":"033 |","Points":10146,"X":569,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508486Z"},{"ID":6762,"Name":"028","Points":9744,"X":569,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508486Z"},{"ID":6763,"Name":"Annapurna","Points":9825,"X":380,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508487Z"},{"ID":6764,"Name":"A#051#","Points":10877,"X":415,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508487Z"},{"ID":6765,"Name":"Brat447","Points":9510,"X":462,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508487Z"},{"ID":6766,"Name":"045","Points":10042,"X":428,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508487Z"},{"ID":6768,"Name":"Wioska 001","Points":9761,"X":593,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508488Z"},{"ID":6769,"Name":"Diss na budzik!","Points":10178,"X":495,"Y":507,"Continent":"K54","Bonus":4,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508488Z"},{"ID":6770,"Name":"#019","Points":9866,"X":540,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508488Z"},{"ID":6771,"Name":"Warzywniak 013","Points":1476,"X":448,"Y":546,"Continent":"K54","Bonus":7,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508488Z"},{"ID":6772,"Name":"SsSs","Points":10160,"X":420,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508489Z"},{"ID":6773,"Name":"Szlachcic","Points":10029,"X":567,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508489Z"},{"ID":6774,"Name":"7.62 mm","Points":9633,"X":504,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508489Z"},{"ID":6775,"Name":"Os Konfederacja","Points":3876,"X":483,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50849Z"},{"ID":6776,"Name":"088","Points":9963,"X":540,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50849Z"},{"ID":6777,"Name":"014","Points":5418,"X":558,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50849Z"},{"ID":6778,"Name":"xxx","Points":10495,"X":497,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50849Z"},{"ID":6779,"Name":"Szlachcic","Points":9621,"X":507,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508491Z"},{"ID":6780,"Name":"PRO8L3M","Points":10311,"X":457,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508491Z"},{"ID":6781,"Name":"poglądowoƛci Z","Points":5567,"X":569,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508491Z"},{"ID":6782,"Name":"Warzywniak 005","Points":810,"X":447,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508491Z"},{"ID":6783,"Name":"Szlachcic 036","Points":9241,"X":551,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508492Z"},{"ID":6784,"Name":"063","Points":10129,"X":419,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508492Z"},{"ID":6785,"Name":"Szlachcic","Points":10311,"X":500,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508492Z"},{"ID":6786,"Name":"074.","Points":10252,"X":501,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508492Z"},{"ID":6787,"Name":"Wioska barbarzyƄska","Points":8876,"X":501,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508493Z"},{"ID":6788,"Name":"SsSs","Points":9200,"X":436,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508493Z"},{"ID":6789,"Name":"0029","Points":10143,"X":508,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508493Z"},{"ID":6790,"Name":"-[016]- Tenzing Peak","Points":8430,"X":550,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508493Z"},{"ID":6791,"Name":"Wioska barbarzyƄska","Points":9994,"X":564,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508494Z"},{"ID":6792,"Name":"052","Points":10042,"X":423,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508494Z"},{"ID":6793,"Name":"#0081 Barabasz","Points":10011,"X":483,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508494Z"},{"ID":6794,"Name":"K44 016","Points":7124,"X":435,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508495Z"},{"ID":6795,"Name":"ZasiedmiogĂłrogrĂłd","Points":10068,"X":535,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508495Z"},{"ID":6796,"Name":"177 Punta del Diablo","Points":9761,"X":479,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508495Z"},{"ID":6797,"Name":"Front_34","Points":9638,"X":455,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508496Z"},{"ID":6798,"Name":"0113","Points":9143,"X":471,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508496Z"},{"ID":6799,"Name":"0010 pech","Points":10019,"X":504,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508496Z"},{"ID":6800,"Name":"KONFA TO MARKA, NARKA","Points":10536,"X":449,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508496Z"},{"ID":6801,"Name":"COUS","Points":10209,"X":493,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508497Z"},{"ID":6802,"Name":"[125]","Points":9912,"X":557,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508497Z"},{"ID":6803,"Name":"Yogi","Points":5389,"X":533,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508497Z"},{"ID":6804,"Name":"Wioska barbarzyƄska","Points":9835,"X":500,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508497Z"},{"ID":6805,"Name":"B005","Points":6721,"X":555,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508498Z"},{"ID":6807,"Name":"Butem w Morgen","Points":10060,"X":488,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508498Z"},{"ID":6808,"Name":"Wioska barbarzyƄska","Points":7237,"X":460,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508498Z"},{"ID":6809,"Name":"031. A-RE-SE-EY","Points":10252,"X":571,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508498Z"},{"ID":6810,"Name":"Osada","Points":7159,"X":512,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508499Z"},{"ID":6811,"Name":"BETI 010","Points":1763,"X":459,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508499Z"},{"ID":6812,"Name":"040","Points":10129,"X":424,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508499Z"},{"ID":6813,"Name":"020","Points":7496,"X":581,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508499Z"},{"ID":6814,"Name":"JaamMwG 023","Points":8622,"X":528,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5085Z"},{"ID":6815,"Name":"Szlachcic !!!","Points":9687,"X":496,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5085Z"},{"ID":6816,"Name":"066. ALFI","Points":1452,"X":470,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5085Z"},{"ID":6817,"Name":"Lord Arsey KING","Points":10285,"X":528,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5085Z"},{"ID":6818,"Name":"#0022 Robercik","Points":10019,"X":493,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508501Z"},{"ID":6819,"Name":"Lord Arsey KING","Points":10285,"X":522,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508501Z"},{"ID":6820,"Name":"0592","Points":9951,"X":476,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508501Z"},{"ID":6821,"Name":"Szlachcic","Points":10636,"X":500,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508501Z"},{"ID":6822,"Name":"Suppi","Points":9905,"X":428,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508502Z"},{"ID":6823,"Name":"054 |","Points":10068,"X":565,"Y":561,"Continent":"K55","Bonus":3,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508502Z"},{"ID":6824,"Name":"080.","Points":10375,"X":570,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508502Z"},{"ID":6825,"Name":"Horyzont zdarzeƄ","Points":9835,"X":528,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508503Z"},{"ID":6826,"Name":"008. Rivia","Points":10495,"X":559,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508503Z"},{"ID":6827,"Name":"Szlachcic","Points":9580,"X":567,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508503Z"},{"ID":6828,"Name":"B016","Points":10495,"X":481,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508504Z"},{"ID":6829,"Name":"monetki","Points":9835,"X":508,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508504Z"},{"ID":6830,"Name":"Daj mi znać","Points":6946,"X":511,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508504Z"},{"ID":6831,"Name":"?+44 85 Fort Mahon Plage","Points":9653,"X":455,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508505Z"},{"ID":6832,"Name":"002. Mediolanum","Points":9308,"X":611,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508505Z"},{"ID":6833,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":436,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508505Z"},{"ID":6835,"Name":"Wioska BarbarzyƄska","Points":10019,"X":545,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508505Z"},{"ID":6836,"Name":"-[011]- Gaszerbrum I","Points":8078,"X":550,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508506Z"},{"ID":6837,"Name":"Butem w Morgen","Points":10516,"X":492,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508506Z"},{"ID":6838,"Name":"20022","Points":9175,"X":504,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508507Z"},{"ID":6839,"Name":"Szlachcic","Points":10292,"X":490,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508507Z"},{"ID":6840,"Name":"P.030","Points":10636,"X":543,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508507Z"},{"ID":6841,"Name":".:035:. Chillout","Points":3082,"X":522,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508508Z"},{"ID":6842,"Name":"Horyzont zdarzeƄ","Points":9835,"X":527,"Y":544,"Continent":"K55","Bonus":2,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508508Z"},{"ID":6844,"Name":"Cast Away 014","Points":10073,"X":454,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508508Z"},{"ID":6845,"Name":"CHW#024r","Points":9711,"X":487,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508509Z"},{"ID":6846,"Name":"PiekƂo to inni","Points":10160,"X":524,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508509Z"},{"ID":6847,"Name":"013","Points":8493,"X":569,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508509Z"},{"ID":6848,"Name":"[A]_[032] Dejv.oldplyr","Points":10401,"X":408,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50851Z"},{"ID":6849,"Name":"Mzm17.","Points":10362,"X":559,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50851Z"},{"ID":6850,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":429,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508511Z"},{"ID":6851,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9835,"X":454,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508511Z"},{"ID":6852,"Name":"B001","Points":10019,"X":558,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508511Z"},{"ID":6853,"Name":"Front_24","Points":9648,"X":455,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508511Z"},{"ID":6854,"Name":"+44 75 Lyon Menival","Points":9846,"X":452,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508512Z"},{"ID":6855,"Name":"*INTERTWINED*","Points":9711,"X":532,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508512Z"},{"ID":6857,"Name":"Suppi","Points":9734,"X":440,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508513Z"},{"ID":6858,"Name":"[020] Membunuhmu","Points":10211,"X":590,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508513Z"},{"ID":6859,"Name":".achim.","Points":9251,"X":541,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508513Z"},{"ID":6861,"Name":"Kaczystan","Points":9576,"X":550,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508514Z"},{"ID":6862,"Name":"Carsultyal.","Points":9711,"X":484,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508514Z"},{"ID":6863,"Name":"06 Hazard","Points":9624,"X":614,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508514Z"},{"ID":6864,"Name":"0019","Points":10019,"X":507,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508515Z"},{"ID":6865,"Name":"(025)","Points":10149,"X":418,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508515Z"},{"ID":6866,"Name":"029","Points":9742,"X":527,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508515Z"},{"ID":6867,"Name":"-029-","Points":10479,"X":466,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508515Z"},{"ID":6868,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":422,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508516Z"},{"ID":6869,"Name":"Szlachcic","Points":9693,"X":499,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508516Z"},{"ID":6870,"Name":"ZasiedmiogĂłrogrĂłd","Points":10224,"X":517,"Y":436,"Continent":"K45","Bonus":9,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508516Z"},{"ID":6871,"Name":"Wioska","Points":10178,"X":381,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508516Z"},{"ID":6872,"Name":"Wioska barbarzyƄska","Points":9761,"X":457,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508517Z"},{"ID":6873,"Name":"A015","Points":10495,"X":490,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508517Z"},{"ID":6874,"Name":"Osada","Points":9623,"X":503,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508517Z"},{"ID":6875,"Name":"Front_02","Points":3766,"X":461,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508518Z"},{"ID":6876,"Name":"008","Points":5143,"X":478,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508518Z"},{"ID":6877,"Name":"[086]","Points":8386,"X":550,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508518Z"},{"ID":6878,"Name":"Wioska barbarzyƄska 016|","Points":9582,"X":572,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508519Z"},{"ID":6879,"Name":"009 Fiona","Points":4984,"X":447,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508519Z"},{"ID":6880,"Name":"C004","Points":10971,"X":521,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508519Z"},{"ID":6881,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":544,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508519Z"},{"ID":6882,"Name":"005","Points":10068,"X":564,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50852Z"},{"ID":6883,"Name":"PiekƂo to inni","Points":9596,"X":517,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50852Z"},{"ID":6884,"Name":"056.","Points":10252,"X":511,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50852Z"},{"ID":6885,"Name":"[153]","Points":6589,"X":562,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50852Z"},{"ID":6886,"Name":"szkot","Points":10226,"X":486,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508521Z"},{"ID":6887,"Name":".:126:. Niangmen","Points":9899,"X":518,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508521Z"},{"ID":6888,"Name":"022. Wioska Lord Pumbarak","Points":10252,"X":565,"Y":517,"Continent":"K55","Bonus":8,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508521Z"},{"ID":6889,"Name":"F059","Points":9511,"X":489,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508521Z"},{"ID":6890,"Name":"CALL 950","Points":10311,"X":552,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508522Z"},{"ID":6891,"Name":"+44 72 Leffrinckouque","Points":9841,"X":428,"Y":475,"Continent":"K44","Bonus":2,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508522Z"},{"ID":6892,"Name":"Szlachcic","Points":9715,"X":494,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508522Z"},{"ID":6893,"Name":"B021","Points":10495,"X":483,"Y":456,"Continent":"K44","Bonus":9,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508523Z"},{"ID":6894,"Name":"Alltimov","Points":7630,"X":501,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508523Z"},{"ID":6895,"Name":"Szlachcic !!!","Points":10068,"X":504,"Y":469,"Continent":"K45","Bonus":4,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508523Z"},{"ID":6896,"Name":"Konfiasze","Points":10492,"X":473,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508524Z"},{"ID":6897,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508524Z"},{"ID":6898,"Name":"20018","Points":11321,"X":514,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508524Z"},{"ID":6899,"Name":"011 Portland","Points":9761,"X":445,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508524Z"},{"ID":6900,"Name":"062 |","Points":10476,"X":549,"Y":508,"Continent":"K55","Bonus":3,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508525Z"},{"ID":6901,"Name":"0033","Points":10019,"X":463,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508525Z"},{"ID":6902,"Name":"074. ALFI","Points":1462,"X":485,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508525Z"},{"ID":6903,"Name":"Szlachcic 056","Points":8024,"X":562,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508526Z"},{"ID":6904,"Name":"076","Points":10311,"X":565,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508526Z"},{"ID":6905,"Name":"062. ALFI","Points":1425,"X":469,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508526Z"},{"ID":6907,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":572,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508527Z"},{"ID":6908,"Name":"064 New York City","Points":9761,"X":463,"Y":475,"Continent":"K44","Bonus":6,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508527Z"},{"ID":6909,"Name":"080 Little Rock","Points":9761,"X":470,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508527Z"},{"ID":6910,"Name":"ChceszPokojuSzykujSięDoWojny","Points":8474,"X":455,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508527Z"},{"ID":6911,"Name":".achim.","Points":10311,"X":534,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508528Z"},{"ID":6912,"Name":"040 |","Points":10149,"X":560,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508528Z"},{"ID":6913,"Name":"#0007 Globus","Points":9442,"X":493,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508528Z"},{"ID":6914,"Name":"~~LatającyHolender~~","Points":10210,"X":560,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508528Z"},{"ID":6915,"Name":"Wioska barbarzyƄska","Points":10008,"X":446,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508529Z"},{"ID":6916,"Name":"CALL 1083","Points":10495,"X":534,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508529Z"},{"ID":6917,"Name":"1h10 jeszcze dƂuĆŒej","Points":6338,"X":551,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508529Z"},{"ID":6918,"Name":"A003","Points":10495,"X":488,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50853Z"},{"ID":6919,"Name":"111 Ok? Ok.","Points":10495,"X":539,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50853Z"},{"ID":6920,"Name":"#064","Points":7866,"X":474,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50853Z"},{"ID":6921,"Name":"7.62 mm","Points":8861,"X":504,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508531Z"},{"ID":6922,"Name":"A#045#","Points":11106,"X":412,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508531Z"},{"ID":6923,"Name":"Bye Bye Beautiful","Points":10362,"X":491,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508531Z"},{"ID":6924,"Name":"0026","Points":10495,"X":527,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508531Z"},{"ID":6925,"Name":"168 Ale mnie gƂówka boli","Points":10636,"X":387,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508532Z"},{"ID":6926,"Name":"223 Canberra","Points":9146,"X":532,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508532Z"},{"ID":6927,"Name":"Sparta_35","Points":9638,"X":480,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508532Z"},{"ID":6928,"Name":"041 Plemię","Points":10155,"X":574,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508533Z"},{"ID":6929,"Name":"Witam w wietnamie","Points":10008,"X":419,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508533Z"},{"ID":6930,"Name":"Szlachcic","Points":10303,"X":501,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508533Z"},{"ID":6931,"Name":"106 Regina","Points":9761,"X":472,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508534Z"},{"ID":6932,"Name":"084. ALFI","Points":2264,"X":482,"Y":553,"Continent":"K54","Bonus":1,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508534Z"},{"ID":6933,"Name":"006","Points":9411,"X":485,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":849092723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508535Z"},{"ID":6934,"Name":"PRO8L3M","Points":9899,"X":468,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508535Z"},{"ID":6935,"Name":"Fajna 046","Points":3569,"X":458,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508536Z"},{"ID":6936,"Name":"Monetki","Points":10290,"X":474,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508536Z"},{"ID":6937,"Name":"WystrzeliƂem się Tobą !","Points":10083,"X":500,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508536Z"},{"ID":6938,"Name":"To chyba to","Points":5311,"X":483,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508537Z"},{"ID":6939,"Name":"Tesa 15","Points":4065,"X":533,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508537Z"},{"ID":6940,"Name":"NOT?","Points":10042,"X":428,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508537Z"},{"ID":6941,"Name":"Mzm26","Points":10362,"X":556,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508537Z"},{"ID":6942,"Name":"Wioska barbarzyƄska","Points":7898,"X":451,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508538Z"},{"ID":6943,"Name":"Winter is coming","Points":8888,"X":438,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508538Z"},{"ID":6944,"Name":"Lord Arsey KING","Points":10285,"X":536,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508538Z"},{"ID":6945,"Name":"Lincoln","Points":5176,"X":554,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508539Z"},{"ID":6946,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":446,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508539Z"},{"ID":6947,"Name":"Szlachcic 005","Points":9338,"X":567,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508539Z"},{"ID":6948,"Name":"033. Apus","Points":7606,"X":511,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50854Z"},{"ID":6949,"Name":"0055 K55 and987 OZDR","Points":10495,"X":507,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50854Z"},{"ID":6950,"Name":"#0095 Zastawek","Points":8558,"X":474,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50854Z"},{"ID":6951,"Name":"xxx","Points":10495,"X":506,"Y":444,"Continent":"K45","Bonus":8,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50854Z"},{"ID":6952,"Name":"*INTERTWINED**","Points":9711,"X":503,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508541Z"},{"ID":6953,"Name":"~~LatającyHolender~~","Points":8272,"X":577,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508541Z"},{"ID":6954,"Name":"HoƂopole","Points":9976,"X":488,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508541Z"},{"ID":6955,"Name":"*Ateny_07","Points":9643,"X":469,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508541Z"},{"ID":6956,"Name":"WINTER IS COMING","Points":9763,"X":471,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508542Z"},{"ID":6957,"Name":"NOT?","Points":10042,"X":434,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508542Z"},{"ID":6958,"Name":"Sparta_30","Points":7270,"X":484,"Y":578,"Continent":"K54","Bonus":4,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508543Z"},{"ID":6960,"Name":"A044","Points":10495,"X":496,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508543Z"},{"ID":6961,"Name":"Winter is coming","Points":9899,"X":504,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508543Z"},{"ID":6962,"Name":"- 124 -","Points":10000,"X":536,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508544Z"},{"ID":6963,"Name":"021","Points":9532,"X":574,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508544Z"},{"ID":6964,"Name":"Amsterdam","Points":10495,"X":538,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508544Z"},{"ID":6965,"Name":"007","Points":11305,"X":507,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508545Z"},{"ID":6966,"Name":"keepo","Points":8946,"X":483,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508545Z"},{"ID":6967,"Name":"Wioska 418","Points":10495,"X":557,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508545Z"},{"ID":6968,"Name":"Wioska barbarzyƄska","Points":9585,"X":438,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508545Z"},{"ID":6969,"Name":"0035","Points":4787,"X":553,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508546Z"},{"ID":6970,"Name":"keepo","Points":5973,"X":479,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508546Z"},{"ID":6971,"Name":"+44 61 Marcy LEtoile","Points":9849,"X":418,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508546Z"},{"ID":6972,"Name":"[200] WEST","Points":10047,"X":611,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508546Z"},{"ID":6973,"Name":":c.","Points":10019,"X":543,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508547Z"},{"ID":6974,"Name":"?+44 85 Saint Georges sur lAa","Points":9653,"X":456,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508547Z"},{"ID":6975,"Name":"Lord Arsey KING","Points":8470,"X":521,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508547Z"},{"ID":6976,"Name":"SsSs","Points":7624,"X":462,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508547Z"},{"ID":6977,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":400,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508548Z"},{"ID":6978,"Name":"0144","Points":7473,"X":467,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508548Z"},{"ID":6979,"Name":"Napewno to nie jest off","Points":10495,"X":494,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508548Z"},{"ID":6980,"Name":"Monetki","Points":10162,"X":480,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508549Z"},{"ID":6981,"Name":"POGRZEB GRUBYCH","Points":10947,"X":539,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508549Z"},{"ID":6982,"Name":"013","Points":10160,"X":462,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508549Z"},{"ID":6983,"Name":"005. A-RE-SE-EY","Points":10252,"X":585,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50855Z"},{"ID":6984,"Name":"5.No cheba","Points":5971,"X":506,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50855Z"},{"ID":6985,"Name":"Kentin ufam Tobie","Points":10000,"X":408,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50855Z"},{"ID":6986,"Name":"Monetki","Points":10291,"X":475,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50855Z"},{"ID":6987,"Name":"MichaƂ","Points":10495,"X":530,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50855Z"},{"ID":6988,"Name":"B021","Points":10495,"X":496,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508551Z"},{"ID":6989,"Name":"003","Points":2926,"X":434,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508551Z"},{"ID":6990,"Name":"NOT FOR YOU","Points":7775,"X":456,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508551Z"},{"ID":6991,"Name":"WesoƂych ƚwiąt","Points":8627,"X":563,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508551Z"},{"ID":6992,"Name":"018.KAT","Points":8199,"X":556,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508552Z"},{"ID":6993,"Name":"Lord Arsey KING","Points":10285,"X":513,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508552Z"},{"ID":6994,"Name":"budzik","Points":8673,"X":443,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508552Z"},{"ID":6995,"Name":"Szlachcic 046","Points":9338,"X":549,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508552Z"},{"ID":6996,"Name":"-042-","Points":10479,"X":456,"Y":425,"Continent":"K44","Bonus":3,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508553Z"},{"ID":6997,"Name":"Skanned","Points":3785,"X":555,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508553Z"},{"ID":6998,"Name":"0091","Points":8039,"X":469,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508553Z"},{"ID":6999,"Name":"MasteroN 09","Points":9869,"X":571,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508554Z"},{"ID":7000,"Name":"Wioska barbarzyƄska","Points":8257,"X":581,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508554Z"},{"ID":7001,"Name":"4xxxxxxxxxxxx","Points":9845,"X":464,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508554Z"},{"ID":7002,"Name":"EEE","Points":9135,"X":530,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508554Z"},{"ID":7003,"Name":"Szlachcic","Points":10237,"X":579,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508555Z"},{"ID":7004,"Name":"L 5","Points":10316,"X":613,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508555Z"},{"ID":7005,"Name":"x A23","Points":6375,"X":551,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508555Z"},{"ID":7006,"Name":"Wioska barbarzyƄska","Points":10252,"X":485,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508555Z"},{"ID":7007,"Name":".achim.","Points":8163,"X":530,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508556Z"},{"ID":7008,"Name":"006","Points":10297,"X":475,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508556Z"},{"ID":7009,"Name":"A036","Points":7414,"X":494,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508556Z"},{"ID":7010,"Name":"[0059]","Points":10495,"X":416,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508557Z"},{"ID":7011,"Name":"Domek 2","Points":9761,"X":547,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508557Z"},{"ID":7012,"Name":"050","Points":9761,"X":411,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508557Z"},{"ID":7013,"Name":"0000","Points":10495,"X":451,"Y":427,"Continent":"K44","Bonus":9,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508558Z"},{"ID":7014,"Name":"Z04 Rivan","Points":10186,"X":561,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508558Z"},{"ID":7015,"Name":"KONFA TO MARKA, NARKA","Points":10539,"X":452,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508559Z"},{"ID":7016,"Name":"0012","Points":10019,"X":507,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508559Z"},{"ID":7017,"Name":"PiekƂo to inni","Points":10160,"X":524,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508559Z"},{"ID":7018,"Name":"CALL 944","Points":10311,"X":551,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50856Z"},{"ID":7019,"Name":"K44 022","Points":5061,"X":428,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50856Z"},{"ID":7020,"Name":"Marienburg 1","Points":9690,"X":524,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50856Z"},{"ID":7021,"Name":"2. Jagdtiger","Points":8995,"X":494,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508561Z"},{"ID":7022,"Name":"029","Points":8600,"X":534,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508561Z"},{"ID":7023,"Name":".achim.","Points":8279,"X":517,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508562Z"},{"ID":7024,"Name":"Kasyno","Points":9817,"X":442,"Y":511,"Continent":"K54","Bonus":3,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508562Z"},{"ID":7025,"Name":"Wioska barbarzyƄska","Points":1391,"X":419,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508563Z"},{"ID":7026,"Name":"Szlachcic","Points":10297,"X":489,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508563Z"},{"ID":7027,"Name":"030 Kentucky","Points":10495,"X":607,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508564Z"},{"ID":7028,"Name":"Monetki","Points":10292,"X":471,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508564Z"},{"ID":7029,"Name":"Wioska Wojtek150 002","Points":10019,"X":534,"Y":519,"Continent":"K55","Bonus":1,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508564Z"},{"ID":7030,"Name":"Fajna 051","Points":5969,"X":448,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508564Z"},{"ID":7031,"Name":"Mniejsze zƂo 0056","Points":6628,"X":420,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508565Z"},{"ID":7032,"Name":"Warzywniak 021","Points":1514,"X":452,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508565Z"},{"ID":7033,"Name":"Gattacka","Points":9744,"X":590,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508565Z"},{"ID":7035,"Name":"F031","Points":9761,"X":500,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508566Z"},{"ID":7036,"Name":"Front_35","Points":3751,"X":455,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508566Z"},{"ID":7037,"Name":"0063 Cr250r","Points":9562,"X":455,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508567Z"},{"ID":7038,"Name":"[096]","Points":9835,"X":541,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508567Z"},{"ID":7039,"Name":"[133] North","Points":10054,"X":582,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508567Z"},{"ID":7040,"Name":"ƚmieszkiii","Points":9303,"X":499,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508567Z"},{"ID":7041,"Name":"NOT?","Points":10060,"X":429,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508568Z"},{"ID":7042,"Name":"0062 ~41~Wioska","Points":8208,"X":444,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508568Z"},{"ID":7043,"Name":"PRO8L3M","Points":10068,"X":449,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508568Z"},{"ID":7044,"Name":"Osada","Points":9960,"X":502,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508569Z"},{"ID":7045,"Name":"#0069 Mateusz W","Points":10019,"X":494,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508569Z"},{"ID":7046,"Name":"PiekƂo to inni","Points":10160,"X":524,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508569Z"},{"ID":7047,"Name":"PiekƂo to inni","Points":8891,"X":509,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50857Z"},{"ID":7048,"Name":"Jaaa","Points":10476,"X":584,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50857Z"},{"ID":7049,"Name":"Monetki","Points":10300,"X":481,"Y":435,"Continent":"K44","Bonus":1,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50857Z"},{"ID":7050,"Name":"006 Lavender Town","Points":11109,"X":587,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50857Z"},{"ID":7051,"Name":"10008","Points":6788,"X":523,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508571Z"},{"ID":7052,"Name":"Szlachcic","Points":9690,"X":483,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508571Z"},{"ID":7053,"Name":"B049","Points":10495,"X":477,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508571Z"},{"ID":7054,"Name":"-[200]- Mont Blanc","Points":9650,"X":575,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508571Z"},{"ID":7055,"Name":"PRO8L3M","Points":8675,"X":462,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508572Z"},{"ID":7056,"Name":"Osada","Points":9166,"X":508,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508572Z"},{"ID":7057,"Name":"013W JaCoB*","Points":10495,"X":561,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508572Z"},{"ID":7058,"Name":"10003","Points":10838,"X":527,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508573Z"},{"ID":7059,"Name":"Wioska barbarzyƄska","Points":10008,"X":434,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508573Z"},{"ID":7060,"Name":"[A]_[006] Dejv.oldplyr","Points":10495,"X":398,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508573Z"},{"ID":7061,"Name":"Winter is coming","Points":10311,"X":504,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508573Z"},{"ID":7062,"Name":"ADEN","Points":10268,"X":524,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508574Z"},{"ID":7063,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":425,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508574Z"},{"ID":7064,"Name":"Taran","Points":9566,"X":545,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508574Z"},{"ID":7065,"Name":"NOT?","Points":10042,"X":418,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508575Z"},{"ID":7066,"Name":"kek","Points":9307,"X":536,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508575Z"},{"ID":7067,"Name":"091","Points":10108,"X":540,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508575Z"},{"ID":7068,"Name":"JaamMwG 029","Points":9975,"X":525,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508576Z"},{"ID":7069,"Name":"7.62 mm","Points":10019,"X":490,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508576Z"},{"ID":7070,"Name":"ADEN","Points":9819,"X":528,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508576Z"},{"ID":7071,"Name":"Brat447","Points":6053,"X":434,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508576Z"},{"ID":7072,"Name":"007","Points":10495,"X":465,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508577Z"},{"ID":7073,"Name":"0017|Praga","Points":8302,"X":511,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508577Z"},{"ID":7074,"Name":"-004-","Points":10019,"X":512,"Y":543,"Continent":"K55","Bonus":4,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508577Z"},{"ID":7075,"Name":"016","Points":9109,"X":481,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508577Z"},{"ID":7076,"Name":"Gattacka","Points":9753,"X":590,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508578Z"},{"ID":7077,"Name":"*INTERTWINED**","Points":9143,"X":461,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508578Z"},{"ID":7078,"Name":"Mzm47","Points":7701,"X":557,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508579Z"},{"ID":7079,"Name":"00976 ZARABIAM PP","Points":5913,"X":462,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508579Z"},{"ID":7080,"Name":"Pf Konfederacja","Points":9938,"X":490,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508579Z"},{"ID":7081,"Name":"002","Points":9553,"X":554,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508579Z"},{"ID":7082,"Name":"- 095 -","Points":10000,"X":546,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50858Z"},{"ID":7083,"Name":"Brat447","Points":8887,"X":456,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50858Z"},{"ID":7084,"Name":"-045-","Points":10236,"X":464,"Y":425,"Continent":"K44","Bonus":6,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508581Z"},{"ID":7085,"Name":"PRO8L3M","Points":8701,"X":430,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508581Z"},{"ID":7086,"Name":"[114] North14","Points":9975,"X":574,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508581Z"},{"ID":7087,"Name":"EXA","Points":10495,"X":606,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508581Z"},{"ID":7088,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508582Z"},{"ID":7089,"Name":"Szlachcic","Points":9701,"X":496,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508582Z"},{"ID":7091,"Name":"PRO8L3M","Points":9359,"X":409,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508582Z"},{"ID":7092,"Name":"#0029 ƚwiętochƂowice","Points":10008,"X":482,"Y":560,"Continent":"K54","Bonus":1,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508582Z"},{"ID":7093,"Name":"KONIEC","Points":9835,"X":509,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508583Z"},{"ID":7094,"Name":"Pf Konfederacja","Points":9955,"X":488,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508583Z"},{"ID":7095,"Name":"NOT?","Points":6215,"X":432,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508583Z"},{"ID":7096,"Name":"MONNN","Points":10971,"X":506,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508584Z"},{"ID":7097,"Name":"NOT?","Points":8209,"X":426,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508584Z"},{"ID":7098,"Name":"SsSs","Points":8937,"X":423,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508584Z"},{"ID":7099,"Name":"xxx","Points":9052,"X":515,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508584Z"},{"ID":7100,"Name":"F056","Points":9516,"X":506,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508585Z"},{"ID":7101,"Name":"Winter is coming","Points":10068,"X":504,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508585Z"},{"ID":7102,"Name":"035.","Points":10495,"X":479,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508585Z"},{"ID":7103,"Name":"[062] O i jest Psikus","Points":10088,"X":532,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508586Z"},{"ID":7104,"Name":"050","Points":10495,"X":540,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508586Z"},{"ID":7105,"Name":"kek","Points":7108,"X":534,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508586Z"},{"ID":7106,"Name":"006. Kikimora","Points":9761,"X":509,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508587Z"},{"ID":7107,"Name":"Szlachcic","Points":9250,"X":491,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508587Z"},{"ID":7108,"Name":"*INTERTWINED*","Points":9711,"X":472,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508587Z"},{"ID":7109,"Name":"Szlachcic 029","Points":9230,"X":554,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508588Z"},{"ID":7110,"Name":"P Konfederacja","Points":10068,"X":459,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508588Z"},{"ID":7111,"Name":"008","Points":9744,"X":553,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508589Z"},{"ID":7112,"Name":"001","Points":8674,"X":538,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508589Z"},{"ID":7114,"Name":"Winter is coming","Points":4273,"X":463,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508589Z"},{"ID":7115,"Name":"xxx","Points":10495,"X":505,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50859Z"},{"ID":7116,"Name":"! 011","Points":9828,"X":556,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50859Z"},{"ID":7117,"Name":"Tu obok juĆŒ nie macie tyle defa?","Points":10362,"X":583,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50859Z"},{"ID":7118,"Name":"053.","Points":9902,"X":522,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50859Z"},{"ID":7119,"Name":"036","Points":10129,"X":412,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508591Z"},{"ID":7120,"Name":"Vaes Drakaris","Points":10495,"X":476,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508591Z"},{"ID":7121,"Name":"Monetki","Points":10292,"X":472,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508591Z"},{"ID":7122,"Name":".:027:. Kaktus","Points":10273,"X":504,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508592Z"},{"ID":7123,"Name":"031. ALFI - 2,5","Points":1627,"X":479,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508592Z"},{"ID":7124,"Name":"#0044 Yagami WĂłdz","Points":10000,"X":495,"Y":557,"Continent":"K54","Bonus":7,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508592Z"},{"ID":7125,"Name":"00705","Points":9036,"X":450,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508593Z"},{"ID":7126,"Name":".achim.","Points":10273,"X":540,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508593Z"},{"ID":7127,"Name":"F079","Points":8551,"X":502,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508593Z"},{"ID":7128,"Name":"nie atakujcie mnie:(","Points":2673,"X":445,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508594Z"},{"ID":7129,"Name":"a Wioska 2","Points":7167,"X":453,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508594Z"},{"ID":7130,"Name":"-Czeƛć! Jak się masz? :)","Points":10083,"X":515,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508594Z"},{"ID":7131,"Name":"Osada 1","Points":10008,"X":431,"Y":505,"Continent":"K54","Bonus":1,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508594Z"},{"ID":7132,"Name":"0087","Points":9637,"X":447,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508595Z"},{"ID":7133,"Name":"Szlachcic","Points":10237,"X":575,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508595Z"},{"ID":7134,"Name":"NOT?","Points":10042,"X":414,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508596Z"},{"ID":7135,"Name":"058.","Points":8212,"X":515,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508596Z"},{"ID":7136,"Name":"002","Points":10093,"X":602,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508597Z"},{"ID":7137,"Name":"Wioska barbarzyƄska","Points":10252,"X":527,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508597Z"},{"ID":7138,"Name":"Jaaa","Points":10490,"X":571,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508597Z"},{"ID":7139,"Name":"Merhet","Points":10136,"X":521,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508597Z"},{"ID":7140,"Name":"0Wioska barbarzyƄska","Points":10193,"X":480,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508598Z"},{"ID":7141,"Name":"Szlachcic","Points":10237,"X":467,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508598Z"},{"ID":7142,"Name":"Ręcznik do zmiany","Points":12154,"X":415,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508598Z"},{"ID":7143,"Name":"181 Maracaibo","Points":9825,"X":467,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508598Z"},{"ID":7144,"Name":"032","Points":9744,"X":565,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508599Z"},{"ID":7145,"Name":"Wioska barbarzyƄska","Points":10008,"X":432,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508599Z"},{"ID":7146,"Name":"ZasiedmiogĂłrogrĂłd","Points":8564,"X":536,"Y":426,"Continent":"K45","Bonus":5,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508599Z"},{"ID":7147,"Name":"[090]","Points":9888,"X":555,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5086Z"},{"ID":7148,"Name":"-[012]- Broad Peak","Points":8113,"X":556,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5086Z"},{"ID":7149,"Name":"BETI 011","Points":899,"X":464,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5086Z"},{"ID":7150,"Name":"(016)","Points":10141,"X":424,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5086Z"},{"ID":7151,"Name":"Lord Arsey KING","Points":10285,"X":500,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508601Z"},{"ID":7152,"Name":"103 Montreal","Points":9761,"X":468,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508601Z"},{"ID":7153,"Name":"KIELBA 099","Points":10320,"X":447,"Y":569,"Continent":"K54","Bonus":7,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508601Z"},{"ID":7154,"Name":"011","Points":10311,"X":586,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508601Z"},{"ID":7155,"Name":"yogi","Points":11074,"X":523,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508602Z"},{"ID":7156,"Name":"Winter is coming","Points":6930,"X":438,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508602Z"},{"ID":7157,"Name":"06*","Points":8922,"X":568,"Y":543,"Continent":"K55","Bonus":8,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508602Z"},{"ID":7158,"Name":"B058","Points":10495,"X":477,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508602Z"},{"ID":7159,"Name":"Warzywniak 008","Points":1373,"X":444,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508603Z"},{"ID":7160,"Name":"SsSs","Points":9979,"X":397,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508603Z"},{"ID":7161,"Name":"-x9","Points":10252,"X":497,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508603Z"},{"ID":7162,"Name":"048.","Points":10495,"X":548,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508603Z"},{"ID":7163,"Name":"xxx","Points":10495,"X":512,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508604Z"},{"ID":7164,"Name":"B056","Points":9003,"X":474,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508604Z"},{"ID":7165,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":574,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508604Z"},{"ID":7166,"Name":"Wioska barbarzyƄska","Points":2393,"X":442,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508605Z"},{"ID":7167,"Name":"Suppi","Points":9806,"X":426,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508605Z"},{"ID":7168,"Name":"Szlachcic","Points":10160,"X":392,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508605Z"},{"ID":7169,"Name":"046","Points":8367,"X":489,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508605Z"},{"ID":7170,"Name":"Fffff","Points":10132,"X":422,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508606Z"},{"ID":7171,"Name":"KONFA TO MARKA, NARKA","Points":10361,"X":428,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508606Z"},{"ID":7172,"Name":"Wioska","Points":10178,"X":386,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508606Z"},{"ID":7173,"Name":"0018","Points":9993,"X":463,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508606Z"},{"ID":7174,"Name":"ChceszPokojuSzykujSięDoWojny","Points":8564,"X":466,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508607Z"},{"ID":7175,"Name":"002","Points":10005,"X":548,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508607Z"},{"ID":7176,"Name":"051.","Points":10393,"X":497,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508607Z"},{"ID":7177,"Name":"P Konfederacja","Points":9797,"X":459,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508608Z"},{"ID":7178,"Name":"xxx","Points":10495,"X":499,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508608Z"},{"ID":7179,"Name":"Szlachcic","Points":9721,"X":564,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508608Z"},{"ID":7180,"Name":"Szlachcic 045","Points":9338,"X":570,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508609Z"},{"ID":7181,"Name":"*INTERTWINED*","Points":9275,"X":463,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508609Z"},{"ID":7182,"Name":"063","Points":10495,"X":586,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508609Z"},{"ID":7183,"Name":"kathare","Points":10495,"X":494,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50861Z"},{"ID":7184,"Name":"szlachcic","Points":2223,"X":440,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50861Z"},{"ID":7185,"Name":".achim.","Points":8236,"X":528,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50861Z"},{"ID":7186,"Name":"xxx","Points":8934,"X":461,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508611Z"},{"ID":7187,"Name":"10013","Points":8674,"X":529,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508611Z"},{"ID":7189,"Name":"027. A-RE-SE-EY","Points":10252,"X":574,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508612Z"},{"ID":7190,"Name":"C Zach 008 Tarnowskie G","Points":9352,"X":411,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508612Z"},{"ID":7191,"Name":"026","Points":3503,"X":467,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508612Z"},{"ID":7192,"Name":"Z03 Qeqertat","Points":10006,"X":562,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508613Z"},{"ID":7193,"Name":"B027","Points":10149,"X":478,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508613Z"},{"ID":7194,"Name":"0024","Points":10495,"X":526,"Y":512,"Continent":"K55","Bonus":1,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508614Z"},{"ID":7195,"Name":"Fajna 052","Points":8145,"X":449,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508614Z"},{"ID":7196,"Name":"046 |","Points":10104,"X":559,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508614Z"},{"ID":7197,"Name":"CALL 1023","Points":10311,"X":543,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508615Z"},{"ID":7198,"Name":"- 045 -","Points":10000,"X":533,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508615Z"},{"ID":7200,"Name":"075. ALFI","Points":1324,"X":466,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508616Z"},{"ID":7201,"Name":"050. ALFI","Points":1517,"X":480,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508617Z"},{"ID":7202,"Name":"[129] North29","Points":10391,"X":577,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508617Z"},{"ID":7203,"Name":"0009","Points":9975,"X":468,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508617Z"},{"ID":7204,"Name":"147 Zihuatanejo","Points":9761,"X":466,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508618Z"},{"ID":7205,"Name":"Tesa 10","Points":10252,"X":533,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508618Z"},{"ID":7206,"Name":"Merhet","Points":5621,"X":519,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508619Z"},{"ID":7207,"Name":"Mzm03","Points":10362,"X":601,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508619Z"},{"ID":7208,"Name":"...","Points":10008,"X":436,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.50862Z"},{"ID":7209,"Name":"Selonari","Points":9034,"X":459,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508621Z"},{"ID":7210,"Name":"012","Points":10495,"X":460,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508621Z"},{"ID":7211,"Name":"0034","Points":5274,"X":554,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508622Z"},{"ID":7212,"Name":"Feed me more 004","Points":10160,"X":497,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508622Z"},{"ID":7213,"Name":"0177","Points":10083,"X":471,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508622Z"},{"ID":7214,"Name":"|013|","Points":10433,"X":556,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508623Z"},{"ID":7215,"Name":"017 TNN","Points":7804,"X":561,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508623Z"},{"ID":7216,"Name":"Nospa","Points":10396,"X":456,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508624Z"},{"ID":7217,"Name":"Wioska mockingcoffin","Points":2886,"X":621,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":849053122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508624Z"},{"ID":7218,"Name":"154 Puerto Barrios","Points":9761,"X":454,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508625Z"},{"ID":7219,"Name":"KIELBA 094","Points":10495,"X":445,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508625Z"},{"ID":7220,"Name":"xxx","Points":10495,"X":503,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508626Z"},{"ID":7221,"Name":"003 Virginia Beach","Points":9761,"X":441,"Y":478,"Continent":"K44","Bonus":5,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508626Z"},{"ID":7222,"Name":"CALL 1034","Points":10311,"X":544,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508626Z"},{"ID":7223,"Name":"Niby to myszy w nocy harcują..","Points":9116,"X":545,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.508627Z"},{"ID":7224,"Name":"031 Colorado Springs","Points":10484,"X":423,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538936Z"},{"ID":7225,"Name":"050.","Points":10252,"X":507,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538937Z"},{"ID":7226,"Name":"Front_29","Points":5683,"X":453,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538937Z"},{"ID":7227,"Name":"X08","Points":1886,"X":530,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":6923061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538937Z"},{"ID":7228,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":568,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538938Z"},{"ID":7229,"Name":"226 Wellington","Points":8652,"X":533,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538938Z"},{"ID":7231,"Name":"7.62 mm","Points":10019,"X":467,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538938Z"},{"ID":7232,"Name":"ChceszPokojuSzykujSięDoWojny","Points":10147,"X":453,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538938Z"},{"ID":7233,"Name":"Lord Arsey KING","Points":10285,"X":515,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538939Z"},{"ID":7234,"Name":"NOT?","Points":10042,"X":424,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538939Z"},{"ID":7235,"Name":"008 Czary mary","Points":8001,"X":588,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538939Z"},{"ID":7236,"Name":"COUS,","Points":7043,"X":493,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53894Z"},{"ID":7237,"Name":"081. ALFI","Points":1791,"X":479,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53894Z"},{"ID":7238,"Name":"Sparta_42","Points":9638,"X":481,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53894Z"},{"ID":7239,"Name":"! Wioska MMM","Points":3961,"X":557,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538941Z"},{"ID":7240,"Name":"-004- Uszka mee","Points":10479,"X":455,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538941Z"},{"ID":7241,"Name":"Osada","Points":10294,"X":499,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538941Z"},{"ID":7242,"Name":"047 Idaho Falls","Points":9761,"X":469,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538941Z"},{"ID":7243,"Name":"A054","Points":10495,"X":497,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538942Z"},{"ID":7244,"Name":"121.","Points":8400,"X":495,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538942Z"},{"ID":7245,"Name":"~~LatającyHolender~~","Points":10160,"X":567,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538943Z"},{"ID":7246,"Name":"Wioska BarbarzyƄska","Points":9013,"X":544,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538943Z"},{"ID":7247,"Name":"JF6","Points":6746,"X":553,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538943Z"},{"ID":7248,"Name":"039.","Points":10252,"X":506,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538944Z"},{"ID":7249,"Name":"- 211 -","Points":10000,"X":548,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538944Z"},{"ID":7250,"Name":"P Konfederacja 8","Points":9812,"X":458,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538944Z"},{"ID":7251,"Name":"Szlachcic","Points":10237,"X":581,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538944Z"},{"ID":7252,"Name":"ROHAN","Points":9383,"X":536,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538945Z"},{"ID":7253,"Name":".54","Points":10291,"X":428,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538945Z"},{"ID":7254,"Name":"8. Gruzowisko","Points":10471,"X":543,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538945Z"},{"ID":7255,"Name":"Suppi","Points":9565,"X":439,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538946Z"},{"ID":7256,"Name":"0228","Points":10495,"X":451,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538946Z"},{"ID":7257,"Name":"7.62 mm","Points":10019,"X":502,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538946Z"},{"ID":7258,"Name":"MYSZOƁÓW","Points":10286,"X":539,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538947Z"},{"ID":7259,"Name":"WesoƂych ƚwiąt","Points":9994,"X":559,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538947Z"},{"ID":7260,"Name":"209 Margaret River","Points":9835,"X":535,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538947Z"},{"ID":7261,"Name":"011. ALFI","Points":1484,"X":476,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538947Z"},{"ID":7262,"Name":"+44 73 Bourbourg","Points":10195,"X":433,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538948Z"},{"ID":7263,"Name":"NWO","Points":10971,"X":394,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538948Z"},{"ID":7264,"Name":"0085","Points":9924,"X":443,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538948Z"},{"ID":7265,"Name":"Zaodrze","Points":3521,"X":389,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538949Z"},{"ID":7266,"Name":"0Wioska barbarzyƄska","Points":10083,"X":474,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538949Z"},{"ID":7267,"Name":"NOT?","Points":9675,"X":469,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538949Z"},{"ID":7268,"Name":"B063","Points":10252,"X":477,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53895Z"},{"ID":7269,"Name":"030","Points":9745,"X":526,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53895Z"},{"ID":7270,"Name":"Osada","Points":10295,"X":498,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538951Z"},{"ID":7271,"Name":"Wioska BarbarzyƄska","Points":9561,"X":544,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538951Z"},{"ID":7272,"Name":"Gattacka","Points":10370,"X":575,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538951Z"},{"ID":7273,"Name":"ADEN","Points":7857,"X":562,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538951Z"},{"ID":7274,"Name":"018","Points":10129,"X":417,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538952Z"},{"ID":7275,"Name":"xxx","Points":10495,"X":487,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538952Z"},{"ID":7276,"Name":"~060.","Points":10115,"X":481,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538952Z"},{"ID":7277,"Name":"001","Points":1262,"X":434,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538953Z"},{"ID":7278,"Name":"Lord Arsey KING","Points":7850,"X":540,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538953Z"},{"ID":7279,"Name":"CALL 1039","Points":9272,"X":545,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538953Z"},{"ID":7280,"Name":"Mzm36","Points":10362,"X":543,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538954Z"},{"ID":7281,"Name":"DAWAĆ GRUBE","Points":8789,"X":540,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538954Z"},{"ID":7282,"Name":"Os Konfederacja","Points":9812,"X":480,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538954Z"},{"ID":7283,"Name":"018. Wioska B.E.R.S.E.R.","Points":10252,"X":565,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538954Z"},{"ID":7284,"Name":"F020","Points":9756,"X":493,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538955Z"},{"ID":7285,"Name":"PRO8L3M","Points":10495,"X":465,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538955Z"},{"ID":7286,"Name":"054. ALFI","Points":1661,"X":485,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538955Z"},{"ID":7287,"Name":"A21","Points":9459,"X":556,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538956Z"},{"ID":7288,"Name":"?+44 85 Marquise","Points":9844,"X":458,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538956Z"},{"ID":7289,"Name":"079 Mobile","Points":9761,"X":461,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538956Z"},{"ID":7290,"Name":"7.62 mm","Points":10019,"X":470,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538956Z"},{"ID":7291,"Name":"73k$ Grvvyq","Points":10495,"X":549,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538957Z"},{"ID":7292,"Name":"Yogi","Points":8822,"X":514,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538957Z"},{"ID":7293,"Name":"MasteroN","Points":10160,"X":568,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538957Z"},{"ID":7294,"Name":"037 Fresno","Points":9804,"X":436,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538958Z"},{"ID":7295,"Name":"xxx","Points":10495,"X":484,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538958Z"},{"ID":7296,"Name":"*INTERTWINED*","Points":8560,"X":458,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538958Z"},{"ID":7297,"Name":"Pf Konfederacja","Points":9938,"X":495,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538959Z"},{"ID":7298,"Name":"kek","Points":6209,"X":544,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538959Z"},{"ID":7299,"Name":"Kasyno","Points":10237,"X":446,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538959Z"},{"ID":7300,"Name":"Fajna 062","Points":8391,"X":452,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53896Z"},{"ID":7301,"Name":"042.","Points":9462,"X":510,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53896Z"},{"ID":7302,"Name":"Jehu_Kingdom_04_","Points":9993,"X":587,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53896Z"},{"ID":7303,"Name":"NOT?","Points":10042,"X":412,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538961Z"},{"ID":7304,"Name":"[133]","Points":9564,"X":567,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538961Z"},{"ID":7305,"Name":".:129:. Niangmen","Points":9814,"X":519,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538961Z"},{"ID":7306,"Name":"Szlachcic","Points":9899,"X":494,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538962Z"},{"ID":7307,"Name":".achim.","Points":10654,"X":529,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538962Z"},{"ID":7308,"Name":".achim.","Points":10311,"X":535,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538962Z"},{"ID":7309,"Name":"Suppi","Points":9549,"X":469,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538962Z"},{"ID":7310,"Name":"-CaƂoƛć do caƂoƛci","Points":9814,"X":516,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538963Z"},{"ID":7311,"Name":"02 | CiemnogrĂłd","Points":9477,"X":537,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538963Z"},{"ID":7312,"Name":"PRO8L3M","Points":9615,"X":456,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538963Z"},{"ID":7313,"Name":"Taran","Points":10237,"X":579,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538964Z"},{"ID":7314,"Name":"- 058 -","Points":10000,"X":540,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538964Z"},{"ID":7315,"Name":"Wioska barbarzyƄska","Points":1894,"X":452,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538964Z"},{"ID":7316,"Name":"Osada","Points":9962,"X":492,"Y":448,"Continent":"K44","Bonus":9,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538965Z"},{"ID":7317,"Name":"Joms 041","Points":10273,"X":546,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538965Z"},{"ID":7318,"Name":"SsSs","Points":7242,"X":455,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538965Z"},{"ID":7319,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9761,"X":460,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538966Z"},{"ID":7320,"Name":"[188]","Points":9885,"X":532,"Y":492,"Continent":"K45","Bonus":2,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538966Z"},{"ID":7321,"Name":"OgrĂłd Warzywny","Points":5040,"X":456,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538966Z"},{"ID":7322,"Name":"Cast Away 013","Points":9608,"X":453,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538967Z"},{"ID":7323,"Name":"Osada koczownikĂłw","Points":8946,"X":534,"Y":434,"Continent":"K45","Bonus":7,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538967Z"},{"ID":7324,"Name":"PiekƂo to inni","Points":10252,"X":519,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538967Z"},{"ID":7325,"Name":"Bellucci","Points":10495,"X":503,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538971Z"},{"ID":7326,"Name":"002 - Madrid","Points":10019,"X":597,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538972Z"},{"ID":7327,"Name":"Monetki","Points":10311,"X":469,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538972Z"},{"ID":7328,"Name":"Teatr","Points":8474,"X":437,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538972Z"},{"ID":7329,"Name":"Mzm02.","Points":10019,"X":609,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538973Z"},{"ID":7330,"Name":"83k$ Grvvyq","Points":10495,"X":547,"Y":532,"Continent":"K55","Bonus":2,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538973Z"},{"ID":7331,"Name":"Daleko 012","Points":8557,"X":480,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538973Z"},{"ID":7332,"Name":"Suppi","Points":9554,"X":442,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538974Z"},{"ID":7333,"Name":"F045","Points":8883,"X":483,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538974Z"},{"ID":7334,"Name":"...Just like that","Points":10452,"X":461,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538974Z"},{"ID":7335,"Name":"+44 73 Frencq","Points":9844,"X":432,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538974Z"},{"ID":7336,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":448,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538975Z"},{"ID":7337,"Name":"I po ƚwiętach ;)))","Points":7067,"X":563,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538975Z"},{"ID":7338,"Name":"0.Nowy Orlean","Points":9951,"X":521,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538975Z"},{"ID":7339,"Name":"EKG M14","Points":10004,"X":484,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538976Z"},{"ID":7340,"Name":"B054","Points":10495,"X":481,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538976Z"},{"ID":7341,"Name":"Wioska barbarzyƄska","Points":10008,"X":449,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538976Z"},{"ID":7342,"Name":"JK3","Points":6927,"X":559,"Y":449,"Continent":"K45","Bonus":1,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538977Z"},{"ID":7343,"Name":"021","Points":10311,"X":552,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538977Z"},{"ID":7344,"Name":"Milonia","Points":7083,"X":518,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538977Z"},{"ID":7345,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":422,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538977Z"},{"ID":7346,"Name":"*Ateny_13","Points":9682,"X":470,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538978Z"},{"ID":7347,"Name":"Napewno to nie jest off","Points":10495,"X":516,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538978Z"},{"ID":7348,"Name":"CALL 967","Points":10311,"X":545,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538978Z"},{"ID":7349,"Name":"013 Savanah","Points":9761,"X":440,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538979Z"},{"ID":7350,"Name":"050 BuƂgaria","Points":10495,"X":585,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538979Z"},{"ID":7351,"Name":"F069","Points":9433,"X":492,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538979Z"},{"ID":7352,"Name":"(021)","Points":10160,"X":424,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538979Z"},{"ID":7353,"Name":"Wioska barbarzyƄska","Points":9694,"X":493,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53898Z"},{"ID":7354,"Name":"...Just like that","Points":10452,"X":469,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53898Z"},{"ID":7355,"Name":".:038:. Chillout","Points":7133,"X":521,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53898Z"},{"ID":7356,"Name":"P.034","Points":10297,"X":543,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538981Z"},{"ID":7357,"Name":"Szlachcic 054","Points":9338,"X":573,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538981Z"},{"ID":7358,"Name":"PRO8L3M","Points":9127,"X":448,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538981Z"},{"ID":7359,"Name":"Warzywniak016","Points":2383,"X":453,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538982Z"},{"ID":7360,"Name":"Monetki","Points":10290,"X":475,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538982Z"},{"ID":7361,"Name":"#020","Points":10393,"X":472,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538982Z"},{"ID":7362,"Name":"PiekƂo to inni","Points":8864,"X":521,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538983Z"},{"ID":7363,"Name":"Wioska 10.","Points":11141,"X":496,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538983Z"},{"ID":7364,"Name":"ladyanima 200 pik 300 miecz","Points":9415,"X":514,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538983Z"},{"ID":7365,"Name":"Lord Arsey KING","Points":10285,"X":523,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538983Z"},{"ID":7366,"Name":"XnX-02","Points":8573,"X":437,"Y":541,"Continent":"K54","Bonus":2,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538984Z"},{"ID":7367,"Name":"- 031 -","Points":10000,"X":535,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538984Z"},{"ID":7368,"Name":"-[025]- Batura Sar","Points":8089,"X":557,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538984Z"},{"ID":7369,"Name":"011. A-RE-SE-EY","Points":10252,"X":577,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538985Z"},{"ID":7370,"Name":"002","Points":9692,"X":587,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":6048627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538985Z"},{"ID":7371,"Name":"(006)","Points":10144,"X":416,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538985Z"},{"ID":7372,"Name":"Monetki","Points":10297,"X":468,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538986Z"},{"ID":7373,"Name":"022","Points":10160,"X":518,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8191129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538986Z"},{"ID":7374,"Name":"A014","Points":10495,"X":494,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538986Z"},{"ID":7375,"Name":"xxx","Points":10495,"X":514,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538987Z"},{"ID":7376,"Name":"NOT?","Points":9329,"X":428,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538987Z"},{"ID":7377,"Name":"Niusam","Points":9761,"X":457,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538987Z"},{"ID":7378,"Name":"Suppi","Points":9570,"X":425,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538987Z"},{"ID":7379,"Name":"Sparta_34","Points":9638,"X":479,"Y":582,"Continent":"K54","Bonus":9,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538988Z"},{"ID":7380,"Name":"Niedopasowany","Points":9899,"X":498,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538988Z"},{"ID":7381,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538988Z"},{"ID":7382,"Name":"011 | Lord Arsey - Poskramiacz","Points":10140,"X":560,"Y":566,"Continent":"K55","Bonus":1,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538989Z"},{"ID":7383,"Name":"~~LatającyHolender~~","Points":8790,"X":550,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538989Z"},{"ID":7384,"Name":"1. Char mle","Points":9355,"X":495,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538989Z"},{"ID":7385,"Name":"004 Are you seriously?","Points":9744,"X":570,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53899Z"},{"ID":7386,"Name":"039","Points":10129,"X":414,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53899Z"},{"ID":7387,"Name":"A043","Points":10058,"X":505,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53899Z"},{"ID":7388,"Name":"KIELBA 126","Points":7286,"X":465,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538991Z"},{"ID":7389,"Name":"Bagdad","Points":10470,"X":475,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538991Z"},{"ID":7390,"Name":"Muszla","Points":10068,"X":398,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538991Z"},{"ID":7391,"Name":"lady","Points":9761,"X":493,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538991Z"},{"ID":7392,"Name":"C037","Points":10838,"X":532,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538992Z"},{"ID":7393,"Name":"Wioska barbarzyƄska","Points":9835,"X":528,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538992Z"},{"ID":7394,"Name":"B023","Points":10495,"X":484,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538992Z"},{"ID":7395,"Name":"lady","Points":9761,"X":510,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538993Z"},{"ID":7396,"Name":"NOT?","Points":10042,"X":410,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538993Z"},{"ID":7397,"Name":"Jaaa","Points":10484,"X":570,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538993Z"},{"ID":7398,"Name":"slow","Points":10485,"X":531,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538994Z"},{"ID":7399,"Name":"1. Is-4 !!!","Points":9917,"X":488,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538994Z"},{"ID":7400,"Name":"Wioska barbarzyƄska","Points":9835,"X":560,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538994Z"},{"ID":7401,"Name":"011 Politechnika","Points":4720,"X":538,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538995Z"},{"ID":7402,"Name":"yogi","Points":10019,"X":524,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538995Z"},{"ID":7403,"Name":"-= 004 =-","Points":10008,"X":446,"Y":521,"Continent":"K54","Bonus":4,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538995Z"},{"ID":7404,"Name":"NOT?","Points":10042,"X":411,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538995Z"},{"ID":7405,"Name":"Lord Arsey KING","Points":10285,"X":528,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538996Z"},{"ID":7406,"Name":"Front_31","Points":3809,"X":453,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538996Z"},{"ID":7407,"Name":"CALL 1000","Points":10411,"X":552,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538997Z"},{"ID":7408,"Name":".:073:. Takmahal","Points":4075,"X":522,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538997Z"},{"ID":7409,"Name":".achim.","Points":10311,"X":526,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538997Z"},{"ID":7410,"Name":"kek","Points":7058,"X":546,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538998Z"},{"ID":7412,"Name":"Optima","Points":2828,"X":432,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538998Z"},{"ID":7414,"Name":"PiekƂo to inni","Points":9761,"X":522,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538998Z"},{"ID":7415,"Name":"Szlachcic","Points":9654,"X":586,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538999Z"},{"ID":7416,"Name":"063 Pittsburg","Points":9761,"X":464,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538999Z"},{"ID":7417,"Name":"#0117 Rambo","Points":10019,"X":499,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538999Z"},{"ID":7418,"Name":"[101] Mateni Kowe","Points":10252,"X":574,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.538999Z"},{"ID":7419,"Name":"CALL 937","Points":10311,"X":549,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539Z"},{"ID":7420,"Name":"#046","Points":10393,"X":475,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539Z"},{"ID":7421,"Name":"sas","Points":9836,"X":537,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539Z"},{"ID":7422,"Name":"*INTERTWINED*","Points":9711,"X":474,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539001Z"},{"ID":7423,"Name":"Suppi","Points":9570,"X":427,"Y":447,"Continent":"K44","Bonus":3,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539001Z"},{"ID":7424,"Name":"B038","Points":10166,"X":487,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539001Z"},{"ID":7425,"Name":"K44 015","Points":3394,"X":435,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539001Z"},{"ID":7426,"Name":"#0066 Jakub K","Points":10000,"X":493,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539002Z"},{"ID":7427,"Name":"082. |XD|","Points":10173,"X":495,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539002Z"},{"ID":7428,"Name":"0083","Points":7022,"X":445,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539002Z"},{"ID":7429,"Name":"Lord Arsey KING","Points":10285,"X":525,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539003Z"},{"ID":7430,"Name":"116","Points":4269,"X":399,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539003Z"},{"ID":7431,"Name":"Szlachcic !!!","Points":10294,"X":489,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539003Z"},{"ID":7432,"Name":"Strasznie MiƂy Sąsiad!","Points":9735,"X":551,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539004Z"},{"ID":7433,"Name":"ZasiedmiogĂłrogrĂłd","Points":9442,"X":524,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539004Z"},{"ID":7434,"Name":"HARAD f","Points":11188,"X":534,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539004Z"},{"ID":7435,"Name":"Wioska 1","Points":9753,"X":426,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539005Z"},{"ID":7436,"Name":"ADEN","Points":9711,"X":558,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539005Z"},{"ID":7437,"Name":"P Konfederacja","Points":9759,"X":453,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539005Z"},{"ID":7439,"Name":"Szlachcic","Points":10292,"X":487,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539006Z"},{"ID":7440,"Name":"#0067 Daniel Z","Points":10000,"X":486,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539006Z"},{"ID":7441,"Name":"046. ALFI","Points":1386,"X":482,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539006Z"},{"ID":7442,"Name":"+44 70 Collonges au Mont dOr","Points":9846,"X":409,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539007Z"},{"ID":7443,"Name":".:042:. Chillout","Points":5861,"X":523,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539007Z"},{"ID":7444,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":435,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539007Z"},{"ID":7445,"Name":"95k$ Grvvyq","Points":4600,"X":548,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539008Z"},{"ID":7446,"Name":"x08","Points":10267,"X":558,"Y":478,"Continent":"K45","Bonus":5,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539008Z"},{"ID":7447,"Name":"Sparta_58","Points":9638,"X":479,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539008Z"},{"ID":7448,"Name":"ƚmieszkii","Points":9117,"X":512,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539008Z"},{"ID":7449,"Name":"006. Wioska Lord Axen","Points":10495,"X":574,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539009Z"},{"ID":7450,"Name":"Szlachcic","Points":10237,"X":574,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539009Z"},{"ID":7451,"Name":"DOM 7","Points":9818,"X":567,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539009Z"},{"ID":7452,"Name":"xxx","Points":9186,"X":512,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53901Z"},{"ID":7453,"Name":"Fajna010","Points":1915,"X":460,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53901Z"},{"ID":7454,"Name":"0063 7 strupin","Points":10078,"X":446,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53901Z"},{"ID":7455,"Name":"Z07 Mikkeli","Points":10345,"X":561,"Y":514,"Continent":"K55","Bonus":7,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539011Z"},{"ID":7456,"Name":"-x6","Points":10495,"X":499,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539011Z"},{"ID":7457,"Name":"0036 MzM","Points":10019,"X":544,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539011Z"},{"ID":7458,"Name":"033","Points":10495,"X":584,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539011Z"},{"ID":7459,"Name":"007 Rupik95","Points":9744,"X":576,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539012Z"},{"ID":7460,"Name":"Joms 035","Points":6797,"X":533,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539012Z"},{"ID":7461,"Name":"Wioska BarbarzyƄska","Points":8893,"X":555,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539012Z"},{"ID":7462,"Name":"Sparta_74","Points":9638,"X":470,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539013Z"},{"ID":7463,"Name":"019 |","Points":10159,"X":556,"Y":552,"Continent":"K55","Bonus":1,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539013Z"},{"ID":7464,"Name":"Stage group D","Points":9924,"X":463,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539013Z"},{"ID":7465,"Name":"041. A-RE-SE-EY","Points":10252,"X":573,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539014Z"},{"ID":7466,"Name":"Ethan Hunt 04","Points":9844,"X":603,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539014Z"},{"ID":7467,"Name":"Knowhere","Points":10452,"X":378,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539014Z"},{"ID":7468,"Name":"058","Points":9747,"X":444,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539014Z"},{"ID":7469,"Name":"13*","Points":8902,"X":568,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539015Z"},{"ID":7470,"Name":"Kasyno","Points":9994,"X":443,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539015Z"},{"ID":7471,"Name":"Szlachcic !!!","Points":10178,"X":507,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539015Z"},{"ID":7472,"Name":"PiekƂo to inni","Points":10083,"X":520,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539015Z"},{"ID":7473,"Name":"Kasyno","Points":10058,"X":444,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539016Z"},{"ID":7474,"Name":"[117]","Points":9875,"X":544,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539016Z"},{"ID":7475,"Name":"006","Points":10019,"X":529,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539016Z"},{"ID":7476,"Name":"!Wioska 511","Points":10495,"X":576,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539017Z"},{"ID":7477,"Name":"-[032]- Jannu","Points":9568,"X":555,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539017Z"},{"ID":7478,"Name":"XnX-16","Points":9780,"X":458,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539017Z"},{"ID":7479,"Name":"[125] North25","Points":10236,"X":574,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539018Z"},{"ID":7480,"Name":"[009] MORTU VIN","Points":10159,"X":607,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539018Z"},{"ID":7481,"Name":"JW2","Points":6806,"X":553,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539018Z"},{"ID":7482,"Name":"[127] North27","Points":10359,"X":573,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539018Z"},{"ID":7483,"Name":"MINAS MORGUL F","Points":10997,"X":537,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539019Z"},{"ID":7484,"Name":"[A]_[022] Dejv.oldplyr","Points":10365,"X":400,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539019Z"},{"ID":7485,"Name":"Rampage 1","Points":3705,"X":527,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539019Z"},{"ID":7486,"Name":"004 - piekƂo","Points":10495,"X":418,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53902Z"},{"ID":7487,"Name":"059 |","Points":10160,"X":547,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53902Z"},{"ID":7488,"Name":"Wioska barbarzyƄska","Points":10108,"X":450,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53902Z"},{"ID":7489,"Name":"PRO8L3M","Points":7358,"X":423,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539021Z"},{"ID":7490,"Name":"038","Points":10129,"X":424,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539021Z"},{"ID":7491,"Name":"0063 b56","Points":8487,"X":452,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539021Z"},{"ID":7492,"Name":"WesoƂych ƚwiąt","Points":9994,"X":561,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539022Z"},{"ID":7493,"Name":"ladyanima","Points":9689,"X":513,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539022Z"},{"ID":7494,"Name":"Fajna 032","Points":7649,"X":451,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539022Z"},{"ID":7495,"Name":"Wioska 025","Points":9761,"X":590,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539023Z"},{"ID":7496,"Name":"Tutkowa darma","Points":7772,"X":590,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539023Z"},{"ID":7497,"Name":"Owa","Points":3146,"X":429,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539023Z"},{"ID":7498,"Name":"027","Points":10016,"X":441,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539023Z"},{"ID":7499,"Name":"043. A-RE-SE-EY","Points":10252,"X":563,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539024Z"},{"ID":7500,"Name":"Szlachcic 051","Points":9338,"X":577,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539024Z"},{"ID":7501,"Name":"?+44 76 Hoymille","Points":9763,"X":465,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539024Z"},{"ID":7502,"Name":"F090","Points":9505,"X":495,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539025Z"},{"ID":7503,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9020,"X":455,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539025Z"},{"ID":7504,"Name":"Tank Wioska Damian0704","Points":10217,"X":430,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539025Z"},{"ID":7505,"Name":"Osada","Points":10292,"X":501,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539026Z"},{"ID":7506,"Name":"Moria","Points":4414,"X":494,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539026Z"},{"ID":7507,"Name":"[089]","Points":9902,"X":550,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539026Z"},{"ID":7508,"Name":"PRO8L3M","Points":10163,"X":413,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539026Z"},{"ID":7509,"Name":"06 | ZagƂębie Rury","Points":9217,"X":542,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539027Z"},{"ID":7510,"Name":"Cilonia","Points":8322,"X":514,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539027Z"},{"ID":7511,"Name":"ANIOƁY I DEMONY","Points":10083,"X":502,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539027Z"},{"ID":7512,"Name":"|054|","Points":9834,"X":551,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539027Z"},{"ID":7513,"Name":"A17","Points":7727,"X":550,"Y":449,"Continent":"K45","Bonus":7,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539028Z"},{"ID":7514,"Name":"0003","Points":10025,"X":444,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539028Z"},{"ID":7515,"Name":"*Ateny_01","Points":9682,"X":474,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539029Z"},{"ID":7516,"Name":"Napewno to nie jest off","Points":2762,"X":514,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539029Z"},{"ID":7517,"Name":"10004","Points":11550,"X":525,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539029Z"},{"ID":7518,"Name":"Lord Arsey KING","Points":9889,"X":502,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539029Z"},{"ID":7519,"Name":"OOV","Points":9700,"X":510,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53903Z"},{"ID":7520,"Name":"152 Jutiapa","Points":9761,"X":454,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53903Z"},{"ID":7521,"Name":"Selonari.","Points":7761,"X":461,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53903Z"},{"ID":7522,"Name":"Front_26","Points":9638,"X":453,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539031Z"},{"ID":7523,"Name":"022","Points":10311,"X":542,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539031Z"},{"ID":7524,"Name":"047","Points":10042,"X":424,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539031Z"},{"ID":7525,"Name":"Suppi","Points":9553,"X":441,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539031Z"},{"ID":7526,"Name":"003.","Points":9902,"X":523,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539032Z"},{"ID":7527,"Name":"Fresio","Points":9409,"X":450,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539032Z"},{"ID":7528,"Name":"156 Mazatenango","Points":9783,"X":454,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539032Z"},{"ID":7529,"Name":"Wioska","Points":10178,"X":384,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539033Z"},{"ID":7530,"Name":"008","Points":10495,"X":463,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539033Z"},{"ID":7531,"Name":"Wioska barbarzyƄska","Points":10241,"X":437,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539033Z"},{"ID":7532,"Name":"keepo","Points":7452,"X":479,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539034Z"},{"ID":7533,"Name":"Wioska barbarzyƄska","Points":10285,"X":434,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539034Z"},{"ID":7534,"Name":"005","Points":6176,"X":508,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539034Z"},{"ID":7536,"Name":"Wioska BarbarzyƄska","Points":10083,"X":544,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539034Z"},{"ID":7537,"Name":"008 Ratusz ArsenaƂ","Points":4508,"X":540,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539035Z"},{"ID":7538,"Name":"Osada koczownikĂłw","Points":10008,"X":434,"Y":503,"Continent":"K54","Bonus":2,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539035Z"},{"ID":7540,"Name":"Wioska 21","Points":3997,"X":538,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539035Z"},{"ID":7541,"Name":"Winter is coming","Points":6066,"X":438,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539035Z"},{"ID":7542,"Name":"Szlachcic 003","Points":9338,"X":570,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539036Z"},{"ID":7543,"Name":"Osada","Points":10297,"X":500,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539036Z"},{"ID":7544,"Name":"COUSINS","Points":10259,"X":490,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539037Z"},{"ID":7545,"Name":"KIELBA 034","Points":10495,"X":452,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539037Z"},{"ID":7546,"Name":"Part III","Points":10495,"X":535,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539037Z"},{"ID":7547,"Name":"Wioska barbarzyƄska","Points":2643,"X":455,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539038Z"},{"ID":7548,"Name":"Wioska barbarzyƄska","Points":9740,"X":592,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539038Z"},{"ID":7549,"Name":"034. A-RE-SE-EY","Points":10252,"X":570,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539038Z"},{"ID":7550,"Name":"Village","Points":8441,"X":499,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539038Z"},{"ID":7551,"Name":"00704","Points":9577,"X":452,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539039Z"},{"ID":7552,"Name":"[079]","Points":9957,"X":527,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539039Z"},{"ID":7553,"Name":"Szlachcic","Points":10167,"X":491,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539039Z"},{"ID":7554,"Name":".:096:. Rewson","Points":6100,"X":542,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539039Z"},{"ID":7555,"Name":"PiekƂo to inni","Points":10083,"X":522,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53904Z"},{"ID":7556,"Name":"NOT?","Points":8571,"X":433,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53904Z"},{"ID":7557,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53904Z"},{"ID":7558,"Name":"Yogi","Points":10019,"X":494,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53904Z"},{"ID":7559,"Name":"Otręt","Points":9994,"X":444,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539041Z"},{"ID":7560,"Name":"B030","Points":9133,"X":485,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539041Z"},{"ID":7561,"Name":"Osada","Points":10300,"X":496,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539041Z"},{"ID":7562,"Name":"Ręcznik do zmiany","Points":12154,"X":416,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539042Z"},{"ID":7563,"Name":"FF003","Points":5728,"X":467,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539042Z"},{"ID":7564,"Name":"Strasznie MiƂy Sąsiad!","Points":6990,"X":547,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539042Z"},{"ID":7565,"Name":"009 Dras-Leona","Points":10083,"X":611,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539042Z"},{"ID":7566,"Name":".:041:. ƁaƄcuch","Points":8746,"X":503,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539043Z"},{"ID":7567,"Name":"020. Wioska SeexyPapi","Points":10252,"X":578,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539043Z"},{"ID":7568,"Name":"192 Quito","Points":7862,"X":472,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539043Z"},{"ID":7569,"Name":"Monetki","Points":10292,"X":474,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539044Z"},{"ID":7570,"Name":"019","Points":9189,"X":492,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539044Z"},{"ID":7571,"Name":"Lord Arsey KING","Points":10285,"X":575,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539044Z"},{"ID":7572,"Name":"MasteroN 10","Points":9887,"X":565,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539045Z"},{"ID":7573,"Name":"Szlachcic","Points":10358,"X":488,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539045Z"},{"ID":7574,"Name":"Sector 5 Slums Area","Points":10083,"X":514,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539045Z"},{"ID":7575,"Name":"Szlachcic x","Points":9835,"X":508,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539046Z"},{"ID":7576,"Name":"P.005","Points":10184,"X":535,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539046Z"},{"ID":7577,"Name":"00973","Points":10279,"X":461,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539046Z"},{"ID":7578,"Name":"PRO8L3M","Points":9234,"X":465,"Y":496,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539046Z"},{"ID":7579,"Name":"7.62 mm","Points":9249,"X":465,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539047Z"},{"ID":7580,"Name":"046. A-RE-SE-EY","Points":10485,"X":554,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539047Z"},{"ID":7581,"Name":"ƚmieszkii","Points":9175,"X":508,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539047Z"},{"ID":7582,"Name":"Osada","Points":10291,"X":499,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539048Z"},{"ID":7583,"Name":"Wioska barbarzyƄska","Points":9697,"X":572,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539048Z"},{"ID":7584,"Name":"Wioska_05","Points":9341,"X":539,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539048Z"},{"ID":7585,"Name":"0063 b1","Points":10072,"X":456,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539049Z"},{"ID":7586,"Name":"?+44 76 Tingry","Points":9649,"X":460,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539049Z"},{"ID":7587,"Name":"K44 020","Points":9996,"X":431,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539049Z"},{"ID":7588,"Name":"Winter is coming","Points":9976,"X":505,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539049Z"},{"ID":7589,"Name":"0039 K55 and987 OZDR.","Points":9842,"X":505,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53905Z"},{"ID":7590,"Name":"Szlachcic","Points":9852,"X":577,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53905Z"},{"ID":7591,"Name":"Wioska barbarzyƄska","Points":10058,"X":565,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53905Z"},{"ID":7592,"Name":"PRO8L3M","Points":10311,"X":452,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53905Z"},{"ID":7593,"Name":"002","Points":10478,"X":462,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539051Z"},{"ID":7594,"Name":"PiekƂo to inni","Points":10160,"X":520,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539051Z"},{"ID":7595,"Name":"Napewno to nie jest off","Points":2477,"X":518,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539051Z"},{"ID":7596,"Name":"Suppi","Points":9570,"X":443,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539052Z"},{"ID":7597,"Name":"0060","Points":10495,"X":509,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539052Z"},{"ID":7598,"Name":"Szlachcic 053","Points":9338,"X":569,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539052Z"},{"ID":7599,"Name":"075.","Points":10252,"X":504,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539053Z"},{"ID":7600,"Name":"Brat447","Points":10476,"X":384,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539053Z"},{"ID":7601,"Name":"Gratuluje mĂłzgu","Points":10008,"X":444,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539053Z"},{"ID":7602,"Name":"044","Points":9745,"X":434,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539053Z"},{"ID":7603,"Name":"Jaaa","Points":10830,"X":567,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539054Z"},{"ID":7604,"Name":"Abadon landy 3","Points":6416,"X":563,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539054Z"},{"ID":7605,"Name":"A11","Points":9825,"X":548,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539054Z"},{"ID":7606,"Name":"Kentin ufam Tobie","Points":10000,"X":433,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539055Z"},{"ID":7607,"Name":"B065","Points":10495,"X":478,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539055Z"},{"ID":7608,"Name":"061 Sacramento","Points":9761,"X":462,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539055Z"},{"ID":7609,"Name":"017. Wioska Exano","Points":10252,"X":569,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539056Z"},{"ID":7610,"Name":"101 Edmonton","Points":9761,"X":472,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539056Z"},{"ID":7611,"Name":"A049","Points":10495,"X":500,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539056Z"},{"ID":7612,"Name":"P Konfederacja +","Points":9480,"X":462,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539056Z"},{"ID":7613,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539057Z"},{"ID":7614,"Name":"012 Sosnowiec","Points":10478,"X":429,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539057Z"},{"ID":7615,"Name":"015","Points":9744,"X":570,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539057Z"},{"ID":7616,"Name":"028. Wioska Misiaczek6","Points":10252,"X":569,"Y":504,"Continent":"K55","Bonus":9,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539058Z"},{"ID":7618,"Name":"[107] North7","Points":9978,"X":579,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539058Z"},{"ID":7619,"Name":"Fajna002","Points":7444,"X":451,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539058Z"},{"ID":7620,"Name":"Jaaa","Points":10476,"X":575,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539058Z"},{"ID":7621,"Name":"P.027","Points":9913,"X":538,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539059Z"},{"ID":7622,"Name":".:100:. Niangmen","Points":9899,"X":502,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539059Z"},{"ID":7623,"Name":"+44 62 Saint Didier au Mont dOr","Points":9844,"X":425,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539059Z"},{"ID":7624,"Name":"Szlachcic","Points":8552,"X":507,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53906Z"},{"ID":7625,"Name":"-001- ChodĆș chodĆș chodĆș","Points":10487,"X":450,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53906Z"},{"ID":7626,"Name":"...Just like that","Points":10452,"X":455,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53906Z"},{"ID":7627,"Name":"Wioska barbarzyƄska","Points":10008,"X":436,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539061Z"},{"ID":7629,"Name":"010 Cinnabar Island","Points":11109,"X":565,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539061Z"},{"ID":7630,"Name":"Szlachcic !!!","Points":10365,"X":498,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539061Z"},{"ID":7631,"Name":"PiekƂo to inni","Points":10160,"X":521,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539061Z"},{"ID":7632,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":442,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539062Z"},{"ID":7633,"Name":"W001Wygnanie","Points":10157,"X":445,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539062Z"},{"ID":7634,"Name":"Ateny_10","Points":10008,"X":473,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539062Z"},{"ID":7635,"Name":"Joms 001","Points":9800,"X":523,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539063Z"},{"ID":7636,"Name":"- 052 -","Points":10000,"X":541,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539063Z"},{"ID":7637,"Name":"Winter is coming","Points":10311,"X":508,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539063Z"},{"ID":7638,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":566,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539063Z"},{"ID":7639,"Name":".:020:. Kot","Points":9747,"X":506,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539064Z"},{"ID":7640,"Name":"Winter is coming","Points":10559,"X":510,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539064Z"},{"ID":7641,"Name":"ƚmieszkiii","Points":8751,"X":486,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539064Z"},{"ID":7642,"Name":"...Just like that","Points":5414,"X":469,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539064Z"},{"ID":7643,"Name":"Daleko 014","Points":10495,"X":474,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539065Z"},{"ID":7644,"Name":"South Barba 2","Points":10563,"X":457,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539065Z"},{"ID":7645,"Name":"Jaaa","Points":10479,"X":577,"Y":549,"Continent":"K55","Bonus":2,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539065Z"},{"ID":7646,"Name":"[155]","Points":7842,"X":550,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539065Z"},{"ID":7647,"Name":"CALL 970","Points":10311,"X":552,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539066Z"},{"ID":7648,"Name":"WioskaF","Points":7897,"X":509,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539066Z"},{"ID":7649,"Name":"[110] North10","Points":10051,"X":578,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539066Z"},{"ID":7650,"Name":"CALL 1012","Points":10311,"X":525,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539067Z"},{"ID":7651,"Name":"JaamMwG 001","Points":9808,"X":524,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539067Z"},{"ID":7653,"Name":"Szlachcic","Points":10300,"X":489,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539067Z"},{"ID":7654,"Name":"Fajna 083","Points":5745,"X":457,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539068Z"},{"ID":7655,"Name":"Suppi","Points":9554,"X":439,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539068Z"},{"ID":7656,"Name":"a CSA-Z","Points":2856,"X":454,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539068Z"},{"ID":7657,"Name":"Os Konfederacja","Points":9556,"X":471,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539068Z"},{"ID":7658,"Name":"Kasyno","Points":8965,"X":441,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539069Z"},{"ID":7659,"Name":"ABADON NEW1","Points":5594,"X":553,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539069Z"},{"ID":7660,"Name":".:004:. KrĂłlestwo","Points":9860,"X":511,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539069Z"},{"ID":7661,"Name":"7.62 mm","Points":10019,"X":468,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53907Z"},{"ID":7662,"Name":"NOT?","Points":8743,"X":433,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53907Z"},{"ID":7663,"Name":"Suppi","Points":9556,"X":441,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53907Z"},{"ID":7664,"Name":"CALL 1058","Points":10495,"X":522,"Y":532,"Continent":"K55","Bonus":9,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53907Z"},{"ID":7665,"Name":"#0075 Radoƛć","Points":9981,"X":497,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539071Z"},{"ID":7666,"Name":"Marienburg 7","Points":2609,"X":526,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539071Z"},{"ID":7667,"Name":"Summer Slam ~ 011","Points":9810,"X":521,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539071Z"},{"ID":7668,"Name":"014","Points":9922,"X":558,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539072Z"},{"ID":7669,"Name":"Enigma 004","Points":6747,"X":508,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539072Z"},{"ID":7670,"Name":"Cast Away 005","Points":8804,"X":450,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539072Z"},{"ID":7671,"Name":"keepo","Points":4233,"X":476,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539072Z"},{"ID":7672,"Name":"000 Warszawa","Points":10019,"X":541,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539073Z"},{"ID":7673,"Name":"0013 K55 and987 OZDR.","Points":9845,"X":509,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539073Z"},{"ID":7674,"Name":"+44 61 Nesles","Points":9878,"X":411,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539073Z"},{"ID":7675,"Name":"Szlachcic","Points":10237,"X":580,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539073Z"},{"ID":7676,"Name":"0053","Points":4420,"X":460,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539074Z"},{"ID":7677,"Name":"#0122 Uprzejmoƛć","Points":10003,"X":482,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539074Z"},{"ID":7678,"Name":"PiekƂo to inni","Points":10019,"X":514,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539074Z"},{"ID":7679,"Name":"SsSs","Points":10160,"X":451,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539075Z"},{"ID":7680,"Name":"keepo","Points":10495,"X":482,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539075Z"},{"ID":7681,"Name":"0062 ~1~","Points":10083,"X":444,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539075Z"},{"ID":7682,"Name":"lady","Points":10471,"X":501,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539075Z"},{"ID":7683,"Name":"Ethan Hunt 01","Points":9768,"X":603,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539076Z"},{"ID":7684,"Name":"061. ALFI","Points":1882,"X":469,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539076Z"},{"ID":7685,"Name":".:021:. Pies","Points":8976,"X":518,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539076Z"},{"ID":7686,"Name":"0060 Wioska","Points":10436,"X":447,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539076Z"},{"ID":7687,"Name":"Mersulka","Points":10285,"X":433,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539077Z"},{"ID":7688,"Name":".:030:. Sos","Points":9162,"X":499,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539077Z"},{"ID":7689,"Name":"~~LatającyHolender~~","Points":10146,"X":561,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539077Z"},{"ID":7690,"Name":"~~LatającyHolender~~","Points":10393,"X":581,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539078Z"},{"ID":7691,"Name":"Szlachcic 9;20","Points":10267,"X":505,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539078Z"},{"ID":7692,"Name":"019","Points":8464,"X":531,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539078Z"},{"ID":7693,"Name":"Front_04","Points":9638,"X":459,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539079Z"},{"ID":7694,"Name":"yogi","Points":10019,"X":539,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539079Z"},{"ID":7695,"Name":"WarehousePCC","Points":11550,"X":585,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539079Z"},{"ID":7696,"Name":"067 |","Points":10025,"X":553,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539079Z"},{"ID":7697,"Name":"090.","Points":10252,"X":506,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53908Z"},{"ID":7698,"Name":"027 Memphis","Points":9761,"X":444,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53908Z"},{"ID":7699,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":495,"Continent":"K45","Bonus":4,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53908Z"},{"ID":7700,"Name":"! Wioska barbarzyƄska","Points":8820,"X":543,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539081Z"},{"ID":7701,"Name":"+44 72 Villeurbanne Bon Coin","Points":9841,"X":426,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539081Z"},{"ID":7702,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":427,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539081Z"},{"ID":7703,"Name":"PiekƂo to inni","Points":10019,"X":515,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539081Z"},{"ID":7704,"Name":"Village","Points":10636,"X":503,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539082Z"},{"ID":7705,"Name":"PiekƂo to inni","Points":10160,"X":523,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539082Z"},{"ID":7706,"Name":"Lord Arsey KING","Points":10285,"X":573,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539082Z"},{"ID":7707,"Name":"Okaz","Points":3953,"X":436,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539083Z"},{"ID":7708,"Name":"0070 Osada","Points":7565,"X":453,"Y":441,"Continent":"K44","Bonus":6,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539083Z"},{"ID":7709,"Name":"Sparta_46","Points":9648,"X":480,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539084Z"},{"ID":7710,"Name":"20000","Points":11321,"X":520,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539084Z"},{"ID":7711,"Name":"008","Points":10019,"X":595,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539084Z"},{"ID":7712,"Name":"[183]","Points":7832,"X":536,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539084Z"},{"ID":7713,"Name":"Osada","Points":9637,"X":508,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539085Z"},{"ID":7714,"Name":".achim.","Points":10311,"X":515,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539085Z"},{"ID":7715,"Name":"EPICENTRUM","Points":10035,"X":539,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539085Z"},{"ID":7716,"Name":"0063 sawin","Points":10239,"X":447,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539085Z"},{"ID":7717,"Name":"[128]","Points":9761,"X":553,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539086Z"},{"ID":7718,"Name":"Joms 010","Points":9861,"X":518,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539086Z"},{"ID":7719,"Name":"-[033]- Tiricz Mir","Points":8121,"X":558,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539086Z"},{"ID":7720,"Name":"067","Points":10129,"X":413,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539087Z"},{"ID":7721,"Name":"0015|Lublana","Points":9383,"X":510,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539087Z"},{"ID":7723,"Name":"0wi","Points":4765,"X":471,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539087Z"},{"ID":7724,"Name":"10019","Points":7324,"X":537,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539087Z"},{"ID":7725,"Name":"B052","Points":9694,"X":475,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539088Z"},{"ID":7726,"Name":"0006 MzM","Points":8455,"X":572,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539088Z"},{"ID":7727,"Name":"C 015 BiaƂy KoƛcióƂ","Points":9834,"X":417,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539088Z"},{"ID":7728,"Name":"Szlachcic","Points":10237,"X":580,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539088Z"},{"ID":7729,"Name":"Wioska BarbarzyƄska","Points":10160,"X":544,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539089Z"},{"ID":7730,"Name":"KIELBA 124","Points":4785,"X":452,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539089Z"},{"ID":7731,"Name":"yogi","Points":6686,"X":514,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539089Z"},{"ID":7732,"Name":"015","Points":8781,"X":549,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539089Z"},{"ID":7733,"Name":"062","Points":10129,"X":408,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53909Z"},{"ID":7734,"Name":"Mzm30","Points":10362,"X":555,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53909Z"},{"ID":7736,"Name":"Winter is coming","Points":1532,"X":443,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53909Z"},{"ID":7737,"Name":"[067] Chwilowa","Points":10257,"X":535,"Y":492,"Continent":"K45","Bonus":1,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53909Z"},{"ID":7738,"Name":"Za daleko","Points":10178,"X":578,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539091Z"},{"ID":7739,"Name":"Suppi","Points":9570,"X":439,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539091Z"},{"ID":7740,"Name":"Horyzont zdarzeƄ","Points":9835,"X":534,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539091Z"},{"ID":7741,"Name":"040. Caelum","Points":9628,"X":512,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539092Z"},{"ID":7742,"Name":"Szlachcic","Points":10237,"X":579,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539092Z"},{"ID":7743,"Name":"Szlachcic","Points":10162,"X":488,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539092Z"},{"ID":7744,"Name":"PiekƂo to inni","Points":10160,"X":513,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539092Z"},{"ID":7745,"Name":"MIKOR 004","Points":10083,"X":559,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539093Z"},{"ID":7746,"Name":"Wioska barbarzyƄska","Points":10008,"X":449,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539093Z"},{"ID":7747,"Name":"WINTER IS COMING","Points":10207,"X":473,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539093Z"},{"ID":7748,"Name":"Ręcznik do zmiany","Points":10495,"X":417,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539093Z"},{"ID":7749,"Name":"(004)","Points":10146,"X":412,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539094Z"},{"ID":7750,"Name":"keepo","Points":9351,"X":488,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539094Z"},{"ID":7751,"Name":"Osada","Points":9637,"X":504,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539094Z"},{"ID":7752,"Name":"-030-","Points":10479,"X":464,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539094Z"},{"ID":7753,"Name":"CALL 978","Points":10311,"X":545,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539095Z"},{"ID":7754,"Name":"x daro 091","Points":8574,"X":552,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539095Z"},{"ID":7755,"Name":"033.","Points":10495,"X":483,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539095Z"},{"ID":7756,"Name":"Mzm41","Points":10252,"X":567,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539096Z"},{"ID":7757,"Name":"[126] Dolina Cienia","Points":10362,"X":581,"Y":473,"Continent":"K45","Bonus":3,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539096Z"},{"ID":7758,"Name":"036. A-RE-SE-EY","Points":10252,"X":569,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539096Z"},{"ID":7759,"Name":"Joms 006","Points":10273,"X":527,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539096Z"},{"ID":7760,"Name":"Fajna 002","Points":6481,"X":450,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539097Z"},{"ID":7761,"Name":"Wioska_07","Points":5135,"X":546,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":8674163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539097Z"},{"ID":7762,"Name":"Sparta_49","Points":9638,"X":485,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539097Z"},{"ID":7763,"Name":"BiaƂy Sad","Points":9756,"X":483,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539097Z"},{"ID":7764,"Name":"018","Points":8703,"X":492,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539098Z"},{"ID":7765,"Name":"Wioska barbarzyƄska","Points":10145,"X":484,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539098Z"},{"ID":7766,"Name":"029 Montgomery","Points":9761,"X":437,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539098Z"},{"ID":7767,"Name":"B026","Points":10495,"X":478,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539099Z"},{"ID":7768,"Name":"022 |","Points":10144,"X":560,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539099Z"},{"ID":7769,"Name":"Fajna 035","Points":1977,"X":458,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539099Z"},{"ID":7770,"Name":"Szlachcic","Points":10237,"X":462,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5391Z"},{"ID":7771,"Name":"*INTERTWINED*","Points":9711,"X":533,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5391Z"},{"ID":7772,"Name":"077. ALFI","Points":1536,"X":466,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5391Z"},{"ID":7773,"Name":"HoƂopole","Points":10160,"X":487,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5391Z"},{"ID":7774,"Name":"Suppi","Points":11678,"X":431,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539101Z"},{"ID":7775,"Name":"!Wioska 410","Points":10495,"X":571,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539101Z"},{"ID":7776,"Name":".:081:. Takmahal","Points":3854,"X":525,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539101Z"},{"ID":7777,"Name":"Mniejsze zƂo 0057","Points":7066,"X":420,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539102Z"},{"ID":7778,"Name":"Gattacka","Points":8532,"X":572,"Y":493,"Continent":"K45","Bonus":4,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539102Z"},{"ID":7779,"Name":"Wioska Nie Ruszać","Points":9811,"X":498,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539102Z"},{"ID":7780,"Name":"0080 Wioska","Points":10083,"X":443,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539102Z"},{"ID":7781,"Name":"-14-","Points":10508,"X":584,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539103Z"},{"ID":7782,"Name":"Wioska barbarzyƄska","Points":4035,"X":513,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539103Z"},{"ID":7783,"Name":"Ręcznik do zmiany","Points":11123,"X":416,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539103Z"},{"ID":7784,"Name":"KIELBA 090","Points":10239,"X":445,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539104Z"},{"ID":7785,"Name":"NOT?","Points":10042,"X":419,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539104Z"},{"ID":7786,"Name":"Wioska 20","Points":12154,"X":515,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539104Z"},{"ID":7787,"Name":"- Killing Me Slowly","Points":10083,"X":510,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539104Z"},{"ID":7788,"Name":"Winter is coming","Points":2159,"X":434,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539105Z"},{"ID":7789,"Name":"Ręcznik do zmiany","Points":11348,"X":419,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539105Z"},{"ID":7790,"Name":"009 Saffron City","Points":11109,"X":564,"Y":459,"Continent":"K45","Bonus":2,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539105Z"},{"ID":7791,"Name":"Szlachcic","Points":10237,"X":578,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539106Z"},{"ID":7792,"Name":"lady","Points":10521,"X":514,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539106Z"},{"ID":7793,"Name":"0000009#","Points":10475,"X":434,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539106Z"},{"ID":7794,"Name":"[077] Kukupha iwe","Points":10516,"X":530,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539107Z"},{"ID":7795,"Name":"Lord Arsey KING","Points":9014,"X":529,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539107Z"},{"ID":7796,"Name":"127 San Felipe","Points":9761,"X":462,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539107Z"},{"ID":7797,"Name":"Szlachcic","Points":9781,"X":567,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539108Z"},{"ID":7798,"Name":"Pf Konfederacja","Points":9976,"X":487,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539108Z"},{"ID":7799,"Name":"085. ALFI","Points":1762,"X":482,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539108Z"},{"ID":7800,"Name":"Horyzont zdarzeƄ","Points":10019,"X":527,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539108Z"},{"ID":7801,"Name":"- 306 -","Points":10000,"X":530,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539109Z"},{"ID":7802,"Name":"Z05 Danderyd","Points":10429,"X":561,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539109Z"},{"ID":7803,"Name":"Szlachcic","Points":9882,"X":499,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539109Z"},{"ID":7804,"Name":"021 - Palenque***","Points":10495,"X":435,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539109Z"},{"ID":7805,"Name":"Village","Points":8354,"X":498,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539109Z"},{"ID":7806,"Name":"xxx","Points":10495,"X":500,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53911Z"},{"ID":7807,"Name":"Wioska barbarzyƄska","Points":9689,"X":588,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53911Z"},{"ID":7808,"Name":"K44 003","Points":7446,"X":418,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53911Z"},{"ID":7809,"Name":"SsSs","Points":9436,"X":465,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539111Z"},{"ID":7810,"Name":"Lord Arsey KING","Points":10285,"X":535,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539111Z"},{"ID":7811,"Name":"Hengfors","Points":10311,"X":486,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539111Z"},{"ID":7812,"Name":"F053","Points":9346,"X":493,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539111Z"},{"ID":7813,"Name":"Front_25","Points":9249,"X":455,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539112Z"},{"ID":7814,"Name":"018. ALFI","Points":1959,"X":481,"Y":566,"Continent":"K54","Bonus":9,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539112Z"},{"ID":7815,"Name":"Horyzont zdarzeƄ","Points":10019,"X":519,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539112Z"},{"ID":7816,"Name":"Cast Away 006","Points":10073,"X":450,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539112Z"},{"ID":7817,"Name":"Met4n4boL","Points":10495,"X":618,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539113Z"},{"ID":7818,"Name":"NOT?","Points":5444,"X":441,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539113Z"},{"ID":7819,"Name":"Sparta_32","Points":9638,"X":489,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539113Z"},{"ID":7820,"Name":"NOT?","Points":6763,"X":424,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539113Z"},{"ID":7821,"Name":"Lord Arsey KING","Points":10285,"X":526,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539114Z"},{"ID":7822,"Name":"Xx Pegaz xX","Points":10002,"X":500,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539114Z"},{"ID":7823,"Name":"SsSs","Points":8114,"X":453,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539114Z"},{"ID":7824,"Name":"B057","Points":10495,"X":475,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539115Z"},{"ID":7825,"Name":"PiekƂo to inni","Points":10160,"X":522,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539115Z"},{"ID":7826,"Name":"CALL 984","Points":10068,"X":546,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539115Z"},{"ID":7827,"Name":"keepo","Points":9540,"X":480,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539115Z"},{"ID":7828,"Name":"Szlachcic 012","Points":8024,"X":556,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539115Z"},{"ID":7829,"Name":"Village","Points":12154,"X":520,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539116Z"},{"ID":7830,"Name":"0002","Points":10495,"X":510,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539116Z"},{"ID":7831,"Name":"034","Points":6815,"X":478,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539116Z"},{"ID":7832,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9109,"X":466,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539117Z"},{"ID":7833,"Name":"122.","Points":4840,"X":494,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539117Z"},{"ID":7834,"Name":"SiƂa, Masa, RzeĆșba 14","Points":6167,"X":620,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539117Z"},{"ID":7835,"Name":"Szlachcic","Points":10237,"X":576,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539117Z"},{"ID":7836,"Name":"Dum Spiro Spero","Points":9984,"X":493,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539118Z"},{"ID":7837,"Name":"Suppi","Points":10229,"X":429,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539118Z"},{"ID":7838,"Name":"009 ƚwiętokrzyska","Points":4769,"X":535,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":849083501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539118Z"},{"ID":7839,"Name":"P Konfederacja","Points":9361,"X":459,"Y":444,"Continent":"K44","Bonus":5,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539118Z"},{"ID":7840,"Name":"8. Columbia","Points":8688,"X":459,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539119Z"},{"ID":7841,"Name":"Fajna 038","Points":6769,"X":454,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539119Z"},{"ID":7842,"Name":"OgrĂłd Warzywny","Points":8346,"X":464,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539119Z"},{"ID":7843,"Name":"[101] North1","Points":10083,"X":573,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53912Z"},{"ID":7844,"Name":"ZasiedmiogĂłrogrĂłd","Points":10787,"X":534,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53912Z"},{"ID":7845,"Name":"063.","Points":7234,"X":511,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53912Z"},{"ID":7846,"Name":"K44 017","Points":8225,"X":433,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53912Z"},{"ID":7847,"Name":"CALL 948","Points":10311,"X":548,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539121Z"},{"ID":7848,"Name":"Pf Konfederacja","Points":9653,"X":489,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539121Z"},{"ID":7849,"Name":"Szlachcic","Points":10237,"X":584,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539121Z"},{"ID":7850,"Name":"Wioska 10","Points":2524,"X":443,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539121Z"},{"ID":7851,"Name":"A.001","Points":10559,"X":410,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539122Z"},{"ID":7852,"Name":"#028","Points":9744,"X":491,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539122Z"},{"ID":7853,"Name":"[139] North","Points":10787,"X":588,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539122Z"},{"ID":7854,"Name":"Lord Arsey KING","Points":10285,"X":532,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539123Z"},{"ID":7855,"Name":"081","Points":10311,"X":565,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539123Z"},{"ID":7856,"Name":"047. ALFI","Points":1634,"X":484,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539123Z"},{"ID":7857,"Name":"Majin Buu 005","Points":9408,"X":440,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539123Z"},{"ID":7858,"Name":"[141]","Points":9921,"X":560,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539124Z"},{"ID":7859,"Name":"Pln 001 Busko-ZdrĂłj","Points":9128,"X":421,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539124Z"},{"ID":7860,"Name":"Wioska barbarzyƄska","Points":10485,"X":529,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539124Z"},{"ID":7861,"Name":"Village","Points":12154,"X":518,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539125Z"},{"ID":7862,"Name":"Wioska barbarzyƄska","Points":10252,"X":538,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539125Z"},{"ID":7863,"Name":"#0130 Kropiwki","Points":9579,"X":483,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539125Z"},{"ID":7864,"Name":"kathare","Points":10348,"X":538,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539126Z"},{"ID":7865,"Name":"006 Miami","Points":10495,"X":431,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539126Z"},{"ID":7866,"Name":"080.","Points":10252,"X":513,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539126Z"},{"ID":7867,"Name":"keepo","Points":10495,"X":483,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539127Z"},{"ID":7868,"Name":"015","Points":2718,"X":461,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539127Z"},{"ID":7869,"Name":"B044","Points":2319,"X":430,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539128Z"},{"ID":7870,"Name":"Konfiasze","Points":10544,"X":472,"Y":497,"Continent":"K44","Bonus":6,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539128Z"},{"ID":7871,"Name":"ChceszPokojuSzykujSięDoWojny","Points":6125,"X":459,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539128Z"},{"ID":7872,"Name":"Szlachcic","Points":9682,"X":499,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539128Z"},{"ID":7873,"Name":"200131","Points":6868,"X":514,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539129Z"},{"ID":7874,"Name":"NOT?","Points":2573,"X":458,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539129Z"},{"ID":7875,"Name":"F055","Points":9756,"X":502,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539129Z"},{"ID":7876,"Name":"Szlachcic","Points":10237,"X":582,"Y":489,"Continent":"K45","Bonus":1,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53913Z"},{"ID":7877,"Name":"Gravity","Points":9579,"X":416,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53913Z"},{"ID":7878,"Name":"NOT?","Points":9954,"X":413,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53913Z"},{"ID":7879,"Name":"Wioska barbarzyƄska","Points":7877,"X":488,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539131Z"},{"ID":7880,"Name":"+44 72 Heyrieux","Points":10000,"X":420,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539131Z"},{"ID":7881,"Name":"*INTERTWINED**","Points":9711,"X":526,"Y":561,"Continent":"K55","Bonus":4,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539131Z"},{"ID":7882,"Name":"Kula","Points":2761,"X":544,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":698477883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539132Z"},{"ID":7883,"Name":"ChceszPokojuSzykujSięDoWojny","Points":5919,"X":465,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539132Z"},{"ID":7884,"Name":"044","Points":10495,"X":545,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539132Z"},{"ID":7885,"Name":"szlachcic","Points":2009,"X":442,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539132Z"},{"ID":7886,"Name":"Wioska BarbarzyƄska","Points":10019,"X":539,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539133Z"},{"ID":7887,"Name":"Wioska BarbarzyƄska","Points":10019,"X":548,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539133Z"},{"ID":7888,"Name":"Monetki","Points":9814,"X":478,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539133Z"},{"ID":7889,"Name":"B004","Points":10495,"X":484,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539133Z"},{"ID":7890,"Name":"ADEN","Points":9737,"X":522,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539134Z"},{"ID":7891,"Name":"Barad-dur","Points":7041,"X":533,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539134Z"},{"ID":7892,"Name":"009791 Choroszcz","Points":7501,"X":463,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539134Z"},{"ID":7893,"Name":"087","Points":10121,"X":543,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539135Z"},{"ID":7894,"Name":"143 Ciudad Juarez","Points":9761,"X":466,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539135Z"},{"ID":7895,"Name":"0063 2 wierzbica","Points":10075,"X":448,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539135Z"},{"ID":7896,"Name":"Osada","Points":10292,"X":496,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539135Z"},{"ID":7897,"Name":"Szlachcic !!!","Points":9899,"X":504,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539135Z"},{"ID":7898,"Name":"103","Points":10042,"X":413,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539136Z"},{"ID":7899,"Name":"Wioska 521","Points":10495,"X":556,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539136Z"},{"ID":7900,"Name":"Szlachcic","Points":9166,"X":505,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539136Z"},{"ID":7901,"Name":"k55 Hieronim","Points":8514,"X":543,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539136Z"},{"ID":7902,"Name":"03 Francja","Points":8020,"X":584,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539137Z"},{"ID":7903,"Name":"NOT?","Points":10042,"X":426,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539137Z"},{"ID":7904,"Name":"076","Points":10316,"X":569,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539137Z"},{"ID":7905,"Name":"[151]","Points":9613,"X":550,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539137Z"},{"ID":7906,"Name":"Wioska","Points":10178,"X":380,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539138Z"},{"ID":7907,"Name":"Szlachcic","Points":10306,"X":487,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539138Z"},{"ID":7908,"Name":"Kentin ufam Tobie","Points":10000,"X":405,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539138Z"},{"ID":7909,"Name":"SsSs","Points":8938,"X":425,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539139Z"},{"ID":7910,"Name":"045 - B06***","Points":10495,"X":433,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539139Z"},{"ID":7911,"Name":"016 Fiona","Points":9965,"X":445,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539139Z"},{"ID":7912,"Name":"Monetki","Points":10291,"X":484,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539139Z"},{"ID":7913,"Name":"Joms 038","Points":7637,"X":544,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53914Z"},{"ID":7914,"Name":"~050.","Points":10495,"X":489,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53914Z"},{"ID":7915,"Name":"NOT?","Points":10042,"X":433,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53914Z"},{"ID":7916,"Name":"PiekƂo to inni","Points":10160,"X":528,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539141Z"},{"ID":7917,"Name":"*INTERTWINED*","Points":9711,"X":524,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539141Z"},{"ID":7918,"Name":"+44 73 Maninghen Henne","Points":9841,"X":430,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539141Z"},{"ID":7919,"Name":"Gattacka","Points":9663,"X":583,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539141Z"},{"ID":7920,"Name":"KIELBA 051","Points":10495,"X":466,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539142Z"},{"ID":7921,"Name":"-031-","Points":10479,"X":457,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539142Z"},{"ID":7922,"Name":".achim.","Points":5372,"X":533,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539142Z"},{"ID":7923,"Name":"JK2","Points":6550,"X":560,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539142Z"},{"ID":7924,"Name":"Andrzejownia Pupownia","Points":9752,"X":544,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539143Z"},{"ID":7925,"Name":"046","Points":10129,"X":427,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539143Z"},{"ID":7926,"Name":"Szlachcic","Points":10311,"X":499,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539143Z"},{"ID":7927,"Name":"-[015]- Gyachung Kang","Points":8087,"X":557,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539144Z"},{"ID":7928,"Name":"ADEN","Points":10311,"X":564,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539144Z"},{"ID":7929,"Name":"NOT?","Points":10042,"X":430,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539144Z"},{"ID":7930,"Name":"Wioska barbarzyƄska","Points":9783,"X":449,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539144Z"},{"ID":7931,"Name":"K44 006","Points":7331,"X":420,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539145Z"},{"ID":7932,"Name":"048. A-RE-SE-EY","Points":10252,"X":549,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539145Z"},{"ID":7933,"Name":"030","Points":10042,"X":421,"Y":523,"Continent":"K54","Bonus":6,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539145Z"},{"ID":7934,"Name":"083","Points":10042,"X":418,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539145Z"},{"ID":7935,"Name":"030","Points":9372,"X":531,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539146Z"},{"ID":7936,"Name":"ƚmieszkiii","Points":9847,"X":498,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539146Z"},{"ID":7937,"Name":"kathare","Points":10224,"X":538,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539147Z"},{"ID":7938,"Name":"0086","Points":8149,"X":447,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539147Z"},{"ID":7939,"Name":"Szlachcic 055","Points":8024,"X":561,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539147Z"},{"ID":7940,"Name":"Lord Arsey KING","Points":10285,"X":519,"Y":499,"Continent":"K45","Bonus":4,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539147Z"},{"ID":7941,"Name":"*INTERTWINED*","Points":9711,"X":512,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539148Z"},{"ID":7943,"Name":"NOT?","Points":10042,"X":430,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539148Z"},{"ID":7944,"Name":"Szlachcic","Points":9835,"X":585,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539148Z"},{"ID":7945,"Name":"034","Points":10495,"X":584,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539149Z"},{"ID":7946,"Name":"#10.","Points":10252,"X":524,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539149Z"},{"ID":7947,"Name":"051. A-RE-SE-EY","Points":10252,"X":543,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539149Z"},{"ID":7949,"Name":"Village","Points":11824,"X":504,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539149Z"},{"ID":7950,"Name":"041. ALFI","Points":1359,"X":468,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53915Z"},{"ID":7951,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53915Z"},{"ID":7952,"Name":"SkƂad","Points":10291,"X":513,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53915Z"},{"ID":7953,"Name":"Lord Arsey KING","Points":10285,"X":523,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539151Z"},{"ID":7954,"Name":"Dobranoc","Points":9756,"X":423,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539151Z"},{"ID":7955,"Name":"keepo","Points":9426,"X":484,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539151Z"},{"ID":7956,"Name":"xxx","Points":10495,"X":520,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539151Z"},{"ID":7957,"Name":"F018","Points":9677,"X":495,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539152Z"},{"ID":7959,"Name":"Ręcznik do zmiany","Points":11215,"X":422,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539152Z"},{"ID":7960,"Name":"041","Points":9756,"X":433,"Y":501,"Continent":"K54","Bonus":6,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539152Z"},{"ID":7961,"Name":".achim.","Points":10841,"X":533,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539152Z"},{"ID":7962,"Name":"046","Points":6031,"X":541,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539152Z"},{"ID":7963,"Name":"013 RacƂawicka","Points":3463,"X":537,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539153Z"},{"ID":7964,"Name":"032 Santa Barbara","Points":9761,"X":441,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539153Z"},{"ID":7965,"Name":"KIELBA 073","Points":10301,"X":471,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539153Z"},{"ID":7966,"Name":"+44 61 Lyon Gerland","Points":9846,"X":417,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539154Z"},{"ID":7967,"Name":".achim.","Points":9597,"X":557,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539154Z"},{"ID":7968,"Name":"02 Skrable","Points":8865,"X":617,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539154Z"},{"ID":7969,"Name":"Suppi","Points":9559,"X":438,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539155Z"},{"ID":7970,"Name":"Szlachcic !!!","Points":7503,"X":514,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539155Z"},{"ID":7971,"Name":"-[030]- Dhaulagiri II","Points":7050,"X":551,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539155Z"},{"ID":7972,"Name":"Pf Konfederacja","Points":9938,"X":494,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539155Z"},{"ID":7973,"Name":"Fajna 017","Points":8215,"X":449,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539156Z"},{"ID":7974,"Name":"*INTERTWINED*","Points":9711,"X":480,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539156Z"},{"ID":7975,"Name":"kathare","Points":10121,"X":497,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539156Z"},{"ID":7976,"Name":"PiekƂo to inni","Points":10160,"X":526,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539157Z"},{"ID":7977,"Name":"TROJA.14","Points":8661,"X":460,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539157Z"},{"ID":7978,"Name":"WINTER IS COMING","Points":10636,"X":472,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539157Z"},{"ID":7979,"Name":"CALL 1079","Points":10971,"X":540,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539158Z"},{"ID":7980,"Name":"Village","Points":12154,"X":514,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539158Z"},{"ID":7981,"Name":"[093]","Points":9062,"X":532,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539158Z"},{"ID":7982,"Name":"~~LatającyHolender~~","Points":10152,"X":581,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539158Z"},{"ID":7983,"Name":"7.62 mm","Points":10019,"X":491,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539159Z"},{"ID":7984,"Name":"NOT?","Points":10042,"X":411,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539159Z"},{"ID":7985,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":421,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539159Z"},{"ID":7986,"Name":"00851","Points":8213,"X":440,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53916Z"},{"ID":7987,"Name":"026 co ja tu robie 2","Points":10001,"X":582,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53916Z"},{"ID":7988,"Name":"Sparta_69","Points":9638,"X":469,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53916Z"},{"ID":7989,"Name":"Szlachcic","Points":10237,"X":577,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53916Z"},{"ID":7990,"Name":"0006 K55 and987 OZDR.","Points":9844,"X":501,"Y":558,"Continent":"K55","Bonus":2,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539161Z"},{"ID":7991,"Name":"yogi","Points":10083,"X":525,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539161Z"},{"ID":7992,"Name":"#0141 Reptilianin","Points":10495,"X":497,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539161Z"},{"ID":7993,"Name":"Wioska barbarzyƄska","Points":2904,"X":514,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539161Z"},{"ID":7994,"Name":"125 Cancun","Points":9761,"X":479,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539162Z"},{"ID":7995,"Name":"Zochcinek f?","Points":8303,"X":536,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539162Z"},{"ID":7996,"Name":"7.62 mm","Points":10019,"X":500,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539162Z"},{"ID":7997,"Name":"099","Points":9350,"X":552,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539162Z"},{"ID":7998,"Name":"ERIADOR","Points":10359,"X":535,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539163Z"},{"ID":7999,"Name":".:005:. Chillout","Points":6167,"X":514,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539163Z"},{"ID":8001,"Name":"Sparta_47","Points":9638,"X":483,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539163Z"},{"ID":8002,"Name":".....","Points":11321,"X":544,"Y":549,"Continent":"K55","Bonus":9,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539163Z"},{"ID":8003,"Name":"! Szczęƛliwego Nowego Roku:)","Points":6483,"X":553,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539164Z"},{"ID":8004,"Name":"064","Points":10495,"X":587,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539164Z"},{"ID":8005,"Name":"Mniejsze zƂo 0058","Points":8349,"X":415,"Y":507,"Continent":"K54","Bonus":7,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539164Z"},{"ID":8006,"Name":"#MaƂeOrzeszki","Points":10019,"X":571,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539165Z"},{"ID":8007,"Name":"Ten stan","Points":6804,"X":515,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539165Z"},{"ID":8008,"Name":"Wioska barbarzyƄska","Points":10252,"X":537,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539165Z"},{"ID":8009,"Name":"ƚmieszkii","Points":9115,"X":515,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539165Z"},{"ID":8010,"Name":"B019","Points":10495,"X":484,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539166Z"},{"ID":8011,"Name":"C016","Points":9621,"X":516,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539166Z"},{"ID":8012,"Name":"Wioska Szpanerq","Points":9835,"X":523,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539166Z"},{"ID":8013,"Name":"+44 73 Pierre Benite","Points":9860,"X":432,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539166Z"},{"ID":8014,"Name":"Sparta_51","Points":9638,"X":480,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539167Z"},{"ID":8015,"Name":"Szlachcic 057","Points":9338,"X":573,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539167Z"},{"ID":8016,"Name":"PiekƂo to inni","Points":2571,"X":511,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539167Z"},{"ID":8017,"Name":"017","Points":10083,"X":426,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539168Z"},{"ID":8018,"Name":"Horyzont zdarzeƄ","Points":9835,"X":530,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539168Z"},{"ID":8020,"Name":"0650","Points":10019,"X":476,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539168Z"},{"ID":8021,"Name":".:124:. Niangmen","Points":9899,"X":519,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539168Z"},{"ID":8022,"Name":"PRO8L3M","Points":9289,"X":467,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539169Z"},{"ID":8023,"Name":"047.","Points":10132,"X":549,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539169Z"},{"ID":8024,"Name":"Jaaa","Points":10476,"X":580,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53917Z"},{"ID":8025,"Name":"C025","Points":10971,"X":519,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53917Z"},{"ID":8026,"Name":"Suppi","Points":9570,"X":435,"Y":449,"Continent":"K44","Bonus":9,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53917Z"},{"ID":8027,"Name":"076. ALFI","Points":1358,"X":486,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53917Z"},{"ID":8028,"Name":"PiekƂo to inni","Points":8726,"X":521,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539171Z"},{"ID":8029,"Name":"Winter is coming","Points":2018,"X":439,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539171Z"},{"ID":8030,"Name":"Szlachcic","Points":8730,"X":505,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539171Z"},{"ID":8031,"Name":"F025","Points":9747,"X":496,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539172Z"},{"ID":8032,"Name":"[152]","Points":8094,"X":561,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539172Z"},{"ID":8033,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":573,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539172Z"},{"ID":8034,"Name":".achim.","Points":10237,"X":529,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539173Z"},{"ID":8035,"Name":"[118] North18","Points":9977,"X":579,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539173Z"},{"ID":8036,"Name":"COUSINS","Points":10113,"X":490,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539173Z"},{"ID":8037,"Name":"Mniejsze zƂo 0064","Points":6504,"X":418,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539173Z"},{"ID":8038,"Name":"*Ateny_03","Points":10182,"X":472,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539174Z"},{"ID":8039,"Name":"CALL 966","Points":10311,"X":547,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539174Z"},{"ID":8040,"Name":"008. A-RE-SE-EY","Points":10252,"X":586,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539174Z"},{"ID":8041,"Name":"Gattacka","Points":9811,"X":585,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539175Z"},{"ID":8042,"Name":".achim.","Points":10311,"X":540,"Y":423,"Continent":"K45","Bonus":3,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539175Z"},{"ID":8043,"Name":"001","Points":10728,"X":619,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539175Z"},{"ID":8044,"Name":"B005","Points":10495,"X":483,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539175Z"},{"ID":8045,"Name":"+44 62 Condette","Points":9860,"X":422,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539176Z"},{"ID":8046,"Name":"033. A-RE-SE-EY","Points":10252,"X":570,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539176Z"},{"ID":8047,"Name":"0021 MzM","Points":9258,"X":559,"Y":483,"Continent":"K45","Bonus":2,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539176Z"},{"ID":8048,"Name":"129 Playa Del Carmen","Points":9761,"X":465,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539177Z"},{"ID":8049,"Name":"Wioska 422","Points":10495,"X":563,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539177Z"},{"ID":8050,"Name":"BBB","Points":7628,"X":557,"Y":440,"Continent":"K45","Bonus":6,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539177Z"},{"ID":8051,"Name":"C004 Kamigata","Points":9277,"X":606,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539178Z"},{"ID":8052,"Name":"~~LatającyHolender~~","Points":10155,"X":588,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539178Z"},{"ID":8053,"Name":"Winter is coming","Points":9812,"X":504,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539178Z"},{"ID":8054,"Name":"Winter is coming","Points":10068,"X":506,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539179Z"},{"ID":8055,"Name":"PRO8L3M","Points":10452,"X":455,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539179Z"},{"ID":8056,"Name":"0095","Points":10306,"X":458,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539179Z"},{"ID":8057,"Name":"013","Points":9783,"X":560,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539179Z"},{"ID":8058,"Name":"FF008","Points":6365,"X":470,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53918Z"},{"ID":8059,"Name":"Wioska barbarzyƄska","Points":4702,"X":429,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53918Z"},{"ID":8060,"Name":"103 NiemiƂe zaskoczenie","Points":8885,"X":542,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53918Z"},{"ID":8061,"Name":"032","Points":10971,"X":595,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53918Z"},{"ID":8062,"Name":"004 eQNares","Points":9711,"X":488,"Y":547,"Continent":"K54","Bonus":1,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539181Z"},{"ID":8063,"Name":".achim.","Points":10336,"X":531,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539181Z"},{"ID":8064,"Name":"~048.","Points":10495,"X":480,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539181Z"},{"ID":8065,"Name":"Bagdad","Points":10654,"X":469,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539182Z"},{"ID":8066,"Name":"Front_07","Points":2631,"X":461,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539182Z"},{"ID":8067,"Name":"- 093 -","Points":10000,"X":539,"Y":575,"Continent":"K55","Bonus":1,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539182Z"},{"ID":8068,"Name":"Monetki","Points":9632,"X":472,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539182Z"},{"ID":8069,"Name":"Szlachcic","Points":10292,"X":485,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539183Z"},{"ID":8070,"Name":"0063 M","Points":5086,"X":453,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539183Z"},{"ID":8071,"Name":"KIELBA 070","Points":10273,"X":473,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539183Z"},{"ID":8072,"Name":"064","Points":9745,"X":439,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539183Z"},{"ID":8073,"Name":"Wioska barbarzyƄska","Points":2522,"X":453,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539184Z"},{"ID":8074,"Name":"026","Points":9745,"X":529,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539184Z"},{"ID":8075,"Name":"0002Loarderon","Points":9400,"X":422,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539184Z"},{"ID":8076,"Name":".achim.","Points":10311,"X":516,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539184Z"},{"ID":8077,"Name":"Wioska","Points":10008,"X":408,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539184Z"},{"ID":8078,"Name":"Wioska barbarzyƄska","Points":10285,"X":428,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539185Z"},{"ID":8079,"Name":"[094]","Points":9962,"X":562,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539185Z"},{"ID":8080,"Name":"005 | Lord Axen - its coming!","Points":10158,"X":563,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539185Z"},{"ID":8081,"Name":"K44 001","Points":9337,"X":417,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539186Z"},{"ID":8082,"Name":"110.","Points":8542,"X":507,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539186Z"},{"ID":8083,"Name":"ƚmieszkiii","Points":9734,"X":479,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539186Z"},{"ID":8084,"Name":"057 |","Points":10495,"X":550,"Y":499,"Continent":"K45","Bonus":6,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539187Z"},{"ID":8085,"Name":"Suppi","Points":10223,"X":445,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539187Z"},{"ID":8086,"Name":"179 Caracas","Points":9761,"X":468,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539187Z"},{"ID":8087,"Name":"Brat447","Points":10481,"X":446,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539187Z"},{"ID":8088,"Name":"Joms 017","Points":10401,"X":523,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539188Z"},{"ID":8089,"Name":"Front_33","Points":3843,"X":454,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539188Z"},{"ID":8090,"Name":"Wioska barbarzyƄska","Points":1956,"X":454,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539188Z"},{"ID":8091,"Name":"[093]","Points":9821,"X":552,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539189Z"},{"ID":8092,"Name":"*INTERTWINED**","Points":9711,"X":522,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539189Z"},{"ID":8093,"Name":"Joanna","Points":9708,"X":497,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539189Z"},{"ID":8094,"Name":"2. GW e100 !!!","Points":10144,"X":489,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539189Z"},{"ID":8095,"Name":"A059","Points":10495,"X":504,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53919Z"},{"ID":8096,"Name":"027 co ja tu robie 3","Points":9924,"X":584,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53919Z"},{"ID":8097,"Name":"130 Merida","Points":9761,"X":483,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53919Z"},{"ID":8098,"Name":"Yogi","Points":7338,"X":512,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53919Z"},{"ID":8099,"Name":"Wioska barbarzyƄska","Points":10008,"X":444,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539191Z"},{"ID":8100,"Name":"9.2 San Francisco","Points":10452,"X":536,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539191Z"},{"ID":8101,"Name":"SsSs","Points":7424,"X":420,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539191Z"},{"ID":8102,"Name":".:022:. Misa","Points":9028,"X":507,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539191Z"},{"ID":8103,"Name":"Napewno to nie jest off","Points":10495,"X":506,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539192Z"},{"ID":8104,"Name":"029. Wioska Groovyq","Points":10252,"X":552,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539192Z"},{"ID":8105,"Name":"008 Pusta Xd","Points":9549,"X":554,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539192Z"},{"ID":8106,"Name":"Szlachcic","Points":10297,"X":484,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539192Z"},{"ID":8107,"Name":"Osada","Points":10290,"X":501,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539193Z"},{"ID":8108,"Name":"Szlachcic","Points":9687,"X":493,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539193Z"},{"ID":8109,"Name":"Gattacka","Points":10452,"X":570,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539193Z"},{"ID":8110,"Name":"NOT?","Points":10042,"X":416,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539194Z"},{"ID":8111,"Name":"196 Sucre","Points":9761,"X":467,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539194Z"},{"ID":8112,"Name":"025 |","Points":10140,"X":567,"Y":558,"Continent":"K55","Bonus":2,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539194Z"},{"ID":8113,"Name":"F015","Points":9744,"X":488,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539194Z"},{"ID":8114,"Name":"Wioska barbarzyƄska","Points":10201,"X":451,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539195Z"},{"ID":8115,"Name":"CALL 994","Points":10311,"X":543,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539195Z"},{"ID":8116,"Name":"ladyanima","Points":8788,"X":513,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539195Z"},{"ID":8117,"Name":"Ręcznik do zmiany","Points":11970,"X":417,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539196Z"},{"ID":8118,"Name":".:084:. Takmahal","Points":12154,"X":540,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539196Z"},{"ID":8119,"Name":"158 Belize City","Points":9761,"X":454,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539196Z"},{"ID":8120,"Name":"Wioska BarbarzyƄska","Points":10019,"X":543,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539197Z"},{"ID":8121,"Name":"?+44 76 Cormont","Points":9661,"X":464,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539197Z"},{"ID":8122,"Name":"!Wioska 425","Points":10495,"X":568,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539197Z"},{"ID":8123,"Name":"NOT?","Points":9591,"X":432,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539197Z"},{"ID":8124,"Name":"- 314 -","Points":10000,"X":525,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539198Z"},{"ID":8125,"Name":"Teatr","Points":10478,"X":436,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539198Z"},{"ID":8126,"Name":"CALL 998","Points":10311,"X":541,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539198Z"},{"ID":8127,"Name":"-032-","Points":10241,"X":458,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539198Z"},{"ID":8128,"Name":"Ateny_79","Points":1073,"X":472,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539199Z"},{"ID":8129,"Name":"Horyzont zdarzeƄ","Points":9835,"X":529,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539199Z"},{"ID":8130,"Name":"+44 63 Coudekerque","Points":9844,"X":434,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539199Z"},{"ID":8131,"Name":"Napewno to nie jest off","Points":4529,"X":503,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539199Z"},{"ID":8132,"Name":"Gliniok","Points":10019,"X":541,"Y":476,"Continent":"K45","Bonus":2,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5392Z"},{"ID":8133,"Name":"Oldschool","Points":9683,"X":442,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5392Z"},{"ID":8134,"Name":"20014","Points":6359,"X":532,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539201Z"},{"ID":8135,"Name":"~~LatającyHolender~~","Points":10160,"X":582,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539201Z"},{"ID":8136,"Name":"Pf Konfederacja","Points":10132,"X":492,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539201Z"},{"ID":8137,"Name":"Szlachcic","Points":10232,"X":584,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539202Z"},{"ID":8138,"Name":"002","Points":8712,"X":565,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539202Z"},{"ID":8139,"Name":"042 Anchorage","Points":9761,"X":465,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539202Z"},{"ID":8140,"Name":"[187]","Points":6510,"X":531,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539202Z"},{"ID":8141,"Name":"P.025","Points":10056,"X":535,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539203Z"},{"ID":8142,"Name":"Wioska barbarzyƄska","Points":10008,"X":447,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539203Z"},{"ID":8143,"Name":"045. A-RE-SE-EY","Points":10054,"X":564,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539203Z"},{"ID":8144,"Name":"*INTERTWINED**","Points":8000,"X":463,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539204Z"},{"ID":8145,"Name":"slow","Points":10252,"X":534,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539204Z"},{"ID":8146,"Name":"Gattacka","Points":9745,"X":580,"Y":499,"Continent":"K45","Bonus":5,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539204Z"},{"ID":8147,"Name":"001. Roma","Points":10252,"X":611,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539204Z"},{"ID":8148,"Name":"Front_09","Points":9638,"X":459,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539205Z"},{"ID":8149,"Name":"A055","Points":10178,"X":502,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539205Z"},{"ID":8150,"Name":"7.62 mm","Points":10019,"X":494,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539205Z"},{"ID":8151,"Name":"Erebor","Points":12154,"X":507,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539205Z"},{"ID":8152,"Name":"028. A-RE-SE-EY","Points":10252,"X":576,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539206Z"},{"ID":8153,"Name":"072.","Points":9400,"X":482,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539206Z"},{"ID":8154,"Name":"106 Nieuczciwe praktyki rynkowe","Points":7411,"X":544,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539206Z"},{"ID":8155,"Name":"0155","Points":7567,"X":461,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539206Z"},{"ID":8156,"Name":"ADEN","Points":6588,"X":561,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539207Z"},{"ID":8157,"Name":"086.","Points":7582,"X":584,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539207Z"},{"ID":8158,"Name":"049 Boƛnia i Hercegowina","Points":10252,"X":584,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539207Z"},{"ID":8159,"Name":"ADEN","Points":9475,"X":566,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539208Z"},{"ID":8160,"Name":"0Wioska barbarzyƄska","Points":10636,"X":483,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539208Z"},{"ID":8161,"Name":"0Wioska barbarzyƄska","Points":3431,"X":473,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539208Z"},{"ID":8162,"Name":"?+44 76 Toussieu","Points":9998,"X":463,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539208Z"},{"ID":8163,"Name":"Konfiasze","Points":10311,"X":479,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":698908912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539209Z"},{"ID":8164,"Name":"Wioska barbarzyƄska","Points":10008,"X":450,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539209Z"},{"ID":8165,"Name":"Brat447","Points":5053,"X":444,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539209Z"},{"ID":8166,"Name":"*Ateny_30","Points":2027,"X":464,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539209Z"},{"ID":8167,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":433,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53921Z"},{"ID":8168,"Name":"Napewno to nie jest off","Points":6213,"X":516,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53921Z"},{"ID":8169,"Name":"[099]","Points":9968,"X":551,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53921Z"},{"ID":8170,"Name":"028","Points":9745,"X":527,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539211Z"},{"ID":8171,"Name":"Z06 Nokia","Points":10185,"X":559,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539211Z"},{"ID":8172,"Name":"Wioska barbarzyƄska","Points":9924,"X":448,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539211Z"},{"ID":8173,"Name":"104 Calgary","Points":9761,"X":470,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539212Z"},{"ID":8174,"Name":"Osada C","Points":10504,"X":450,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539212Z"},{"ID":8175,"Name":"012. ALFI","Points":2242,"X":480,"Y":567,"Continent":"K54","Bonus":8,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539212Z"},{"ID":8176,"Name":"052 Chorwacja","Points":10495,"X":580,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539212Z"},{"ID":8177,"Name":"#0072 Marian","Points":10019,"X":485,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539213Z"},{"ID":8178,"Name":"F082","Points":9318,"X":488,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539213Z"},{"ID":8179,"Name":"MasteroN 04","Points":10019,"X":565,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539213Z"},{"ID":8180,"Name":"074","Points":10421,"X":592,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539214Z"},{"ID":8181,"Name":"Kolbudy","Points":5270,"X":436,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539214Z"},{"ID":8182,"Name":"Wioska barbarzyƄska","Points":2904,"X":457,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539214Z"},{"ID":8183,"Name":"Szlachcic","Points":10237,"X":462,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539214Z"},{"ID":8184,"Name":"P Konfederacja","Points":9319,"X":460,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539215Z"},{"ID":8185,"Name":".:061:. Chillout","Points":2826,"X":517,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539215Z"},{"ID":8186,"Name":"015","Points":8963,"X":465,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539215Z"},{"ID":8187,"Name":"Ręcznik do zmiany","Points":10495,"X":413,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539216Z"},{"ID":8188,"Name":"00611","Points":6902,"X":445,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539216Z"},{"ID":8189,"Name":"Ateny_44","Points":9218,"X":471,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539217Z"},{"ID":8190,"Name":"005 koczownikĂłw","Points":10349,"X":587,"Y":480,"Continent":"K45","Bonus":2,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539217Z"},{"ID":8191,"Name":"Fresio","Points":9851,"X":450,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539217Z"},{"ID":8192,"Name":"0063 b4 Wioska bb","Points":9747,"X":449,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539217Z"},{"ID":8193,"Name":"Monetki","Points":10292,"X":476,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539218Z"},{"ID":8194,"Name":"#0051 Coca-Cola","Points":10000,"X":484,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539218Z"},{"ID":8195,"Name":"042","Points":6585,"X":448,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539218Z"},{"ID":8196,"Name":"*Ateny_31","Points":5003,"X":465,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539218Z"},{"ID":8197,"Name":"CALL 1028","Points":10311,"X":543,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539219Z"},{"ID":8198,"Name":"B064","Points":10495,"X":478,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539219Z"},{"ID":8199,"Name":"Mzm46","Points":10038,"X":578,"Y":511,"Continent":"K55","Bonus":7,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539219Z"},{"ID":8201,"Name":"xxx","Points":10495,"X":515,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53922Z"},{"ID":8202,"Name":"NOT?","Points":10042,"X":427,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53922Z"},{"ID":8203,"Name":"095","Points":9934,"X":545,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53922Z"},{"ID":8204,"Name":"ƚmieszkii","Points":9019,"X":518,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53922Z"},{"ID":8205,"Name":"10020","Points":8448,"X":532,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539221Z"},{"ID":8206,"Name":"PiekƂo to inni","Points":9179,"X":518,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539221Z"},{"ID":8207,"Name":"008x","Points":10346,"X":531,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539221Z"},{"ID":8208,"Name":".achim.","Points":11550,"X":531,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539221Z"},{"ID":8209,"Name":"Wioska barbarzyƄska","Points":10008,"X":437,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539222Z"},{"ID":8210,"Name":"NOT?","Points":1110,"X":437,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539222Z"},{"ID":8211,"Name":"0107","Points":9156,"X":469,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539222Z"},{"ID":8212,"Name":"036","Points":9742,"X":522,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539222Z"},{"ID":8213,"Name":"7.62 mm","Points":8652,"X":480,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539223Z"},{"ID":8214,"Name":"0068","Points":10495,"X":521,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539223Z"},{"ID":8215,"Name":"[103] North3","Points":10049,"X":573,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539223Z"},{"ID":8216,"Name":"EKG M02 Ɓ","Points":10495,"X":478,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539224Z"},{"ID":8217,"Name":"7. Pisowisko","Points":10495,"X":551,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539224Z"},{"ID":8218,"Name":"047","Points":10311,"X":561,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539224Z"},{"ID":8219,"Name":"002","Points":9756,"X":511,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539224Z"},{"ID":8220,"Name":"[083]","Points":9957,"X":558,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539225Z"},{"ID":8221,"Name":"+44 72 Groffliers","Points":9749,"X":425,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539225Z"},{"ID":8222,"Name":"#0087 ZamoƂodycze","Points":9346,"X":483,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539225Z"},{"ID":8223,"Name":"Suppi","Points":9551,"X":438,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539225Z"},{"ID":8224,"Name":"Mzm33.","Points":10362,"X":590,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539226Z"},{"ID":8225,"Name":"#0076 ƚwiecko","Points":10019,"X":485,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539226Z"},{"ID":8226,"Name":"Wioska barbarzyƄska","Points":10252,"X":533,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539226Z"},{"ID":8227,"Name":"Ɓ2Ɓ","Points":7589,"X":536,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539227Z"},{"ID":8228,"Name":"-[010]- Annapurna I","Points":7612,"X":556,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539227Z"},{"ID":8229,"Name":"Wioska 09","Points":10621,"X":495,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539227Z"},{"ID":8230,"Name":"#0011 Partycypacja","Points":10000,"X":486,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539228Z"},{"ID":8231,"Name":"0037 K55 and987 OZDR.","Points":9842,"X":508,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539228Z"},{"ID":8232,"Name":"KONFA TO MARKA, NARKA","Points":10303,"X":434,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539228Z"},{"ID":8233,"Name":"Szlachcic 044","Points":9338,"X":569,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539228Z"},{"ID":8234,"Name":"039. A-RE-SE-EY","Points":10252,"X":546,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539229Z"},{"ID":8235,"Name":"0002","Points":10268,"X":594,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539229Z"},{"ID":8236,"Name":"137 Colima","Points":9761,"X":473,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539229Z"},{"ID":8237,"Name":"KIELBA 128","Points":9860,"X":467,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.539229Z"},{"ID":8238,"Name":"~~LatającyHolender~~","Points":10155,"X":582,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53923Z"},{"ID":8239,"Name":"PiekƂo to inni","Points":9991,"X":518,"Y":473,"Continent":"K45","Bonus":2,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53923Z"},{"ID":8240,"Name":"- 083 -","Points":10000,"X":538,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.53923Z"},{"ID":8241,"Name":"013","Points":8070,"X":482,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569875Z"},{"ID":8242,"Name":"*INTERTWINED*","Points":9711,"X":471,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569875Z"},{"ID":8243,"Name":"*Ateny_33","Points":3130,"X":466,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569876Z"},{"ID":8244,"Name":"023. A-RE-SE-EY","Points":10252,"X":570,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569876Z"},{"ID":8245,"Name":"Gattacka","Points":9753,"X":581,"Y":500,"Continent":"K55","Bonus":5,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569877Z"},{"ID":8246,"Name":"Mzm51","Points":7719,"X":538,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569877Z"},{"ID":8247,"Name":"Monetki","Points":10292,"X":475,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569877Z"},{"ID":8248,"Name":"AbacadA 020","Points":10290,"X":558,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569878Z"},{"ID":8249,"Name":"F071","Points":10385,"X":496,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569878Z"},{"ID":8250,"Name":"F065","Points":9745,"X":507,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569878Z"},{"ID":8251,"Name":"...Just like that","Points":10452,"X":462,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569878Z"},{"ID":8252,"Name":"Napewno to nie jest off","Points":10495,"X":498,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569879Z"},{"ID":8253,"Name":".achim.","Points":9012,"X":558,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569879Z"},{"ID":8254,"Name":"FF010","Points":7037,"X":470,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569879Z"},{"ID":8255,"Name":".:005:. Busik","Points":9577,"X":509,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56988Z"},{"ID":8256,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":437,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56988Z"},{"ID":8257,"Name":"0359","Points":10495,"X":502,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56988Z"},{"ID":8258,"Name":"7.62 mm","Points":10019,"X":495,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56988Z"},{"ID":8259,"Name":"153 Escuintla","Points":9761,"X":453,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569881Z"},{"ID":8260,"Name":"007. Boginka","Points":9761,"X":506,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569881Z"},{"ID":8261,"Name":"keepo","Points":9978,"X":486,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569881Z"},{"ID":8263,"Name":"Szlachcic","Points":9721,"X":567,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569881Z"},{"ID":8264,"Name":"Wioska Krolik14","Points":9907,"X":593,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569882Z"},{"ID":8265,"Name":"[091]","Points":10528,"X":540,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569882Z"},{"ID":8266,"Name":"015","Points":9761,"X":491,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569882Z"},{"ID":8267,"Name":".Tuscaloosa","Points":10252,"X":469,"Y":493,"Continent":"K44","Bonus":3,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569883Z"},{"ID":8268,"Name":"Suppi","Points":9570,"X":440,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569883Z"},{"ID":8269,"Name":"Sparta_59","Points":9638,"X":475,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569883Z"},{"ID":8270,"Name":"Wioska barbarzyƄska","Points":9941,"X":563,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569883Z"},{"ID":8271,"Name":"Daleko 005","Points":8235,"X":475,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569884Z"},{"ID":8272,"Name":"Monetki","Points":10311,"X":479,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569884Z"},{"ID":8273,"Name":"7.62 mm","Points":8960,"X":468,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569884Z"},{"ID":8274,"Name":"MaƂy","Points":7584,"X":466,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569885Z"},{"ID":8275,"Name":"007 WrzĂłd na d....","Points":7832,"X":566,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569885Z"},{"ID":8276,"Name":".achim.","Points":10311,"X":533,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569885Z"},{"ID":8277,"Name":"010.","Points":5889,"X":614,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569886Z"},{"ID":8278,"Name":"0105qqqqqqqqqqqqqqqqqqqqqqqqq","Points":10069,"X":468,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569886Z"},{"ID":8280,"Name":"Szlachcic","Points":10300,"X":493,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569886Z"},{"ID":8281,"Name":"NOT?","Points":10042,"X":427,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569886Z"},{"ID":8282,"Name":"PiekƂo to inni","Points":10160,"X":517,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569887Z"},{"ID":8283,"Name":"Village","Points":12154,"X":517,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569887Z"},{"ID":8284,"Name":"0082","Points":9549,"X":463,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569887Z"},{"ID":8285,"Name":"MIKOR 000","Points":10232,"X":559,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569888Z"},{"ID":8286,"Name":"xxx","Points":10495,"X":484,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569888Z"},{"ID":8287,"Name":"013. ALFI","Points":1375,"X":482,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569888Z"},{"ID":8288,"Name":"Jaaa","Points":10476,"X":580,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569888Z"},{"ID":8289,"Name":"001","Points":9753,"X":495,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569889Z"},{"ID":8290,"Name":"- 213 -","Points":10000,"X":553,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569889Z"},{"ID":8291,"Name":"Wioska Michalpol545","Points":10955,"X":394,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569889Z"},{"ID":8292,"Name":".achim.","Points":10311,"X":524,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569889Z"},{"ID":8293,"Name":"003","Points":10129,"X":407,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56989Z"},{"ID":8294,"Name":"Jaaa","Points":10484,"X":586,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56989Z"},{"ID":8295,"Name":"035","Points":10495,"X":583,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56989Z"},{"ID":8296,"Name":"Taran","Points":10237,"X":580,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56989Z"},{"ID":8297,"Name":"060","Points":10042,"X":403,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569891Z"},{"ID":8298,"Name":"0599","Points":10019,"X":438,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569891Z"},{"ID":8299,"Name":"0052","Points":10971,"X":591,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569892Z"},{"ID":8300,"Name":"0.Chicago","Points":9956,"X":520,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569892Z"},{"ID":8301,"Name":"2..","Points":10285,"X":426,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569892Z"},{"ID":8302,"Name":"A020","Points":10495,"X":481,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569892Z"},{"ID":8303,"Name":"IBAR 2","Points":3190,"X":432,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569893Z"},{"ID":8304,"Name":"065","Points":10495,"X":589,"Y":479,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569893Z"},{"ID":8305,"Name":"Suppi","Points":10076,"X":418,"Y":536,"Continent":"K54","Bonus":6,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569893Z"},{"ID":8306,"Name":"ZasiedmiogĂłrogrĂłd","Points":6053,"X":543,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569894Z"},{"ID":8307,"Name":"KIELBA 026","Points":10273,"X":454,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569894Z"},{"ID":8308,"Name":"Majin Buu 013","Points":9591,"X":438,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569894Z"},{"ID":8309,"Name":"Atlantis 15","Points":5158,"X":542,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569894Z"},{"ID":8310,"Name":"SKELLIGE","Points":9686,"X":497,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569894Z"},{"ID":8311,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":418,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569895Z"},{"ID":8312,"Name":"04 | WygwizdĂłw","Points":9409,"X":541,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569895Z"},{"ID":8313,"Name":"- 323 -","Points":10000,"X":530,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569895Z"},{"ID":8314,"Name":"(007)","Points":10143,"X":419,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569896Z"},{"ID":8315,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":390,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569896Z"},{"ID":8316,"Name":"Erebor 6","Points":8923,"X":499,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569896Z"},{"ID":8317,"Name":"Alabasta","Points":10311,"X":498,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569896Z"},{"ID":8318,"Name":"- 320 -","Points":10343,"X":528,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569897Z"},{"ID":8319,"Name":"00631 Wioska","Points":7362,"X":442,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569897Z"},{"ID":8320,"Name":"xxx:Aabadon","Points":11824,"X":591,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569897Z"},{"ID":8321,"Name":"Szlachcic","Points":10237,"X":465,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569897Z"},{"ID":8322,"Name":"0.Honolulu","Points":9983,"X":519,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569898Z"},{"ID":8323,"Name":"Probol4N","Points":10495,"X":592,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569898Z"},{"ID":8324,"Name":"012","Points":10005,"X":583,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569898Z"},{"ID":8325,"Name":"003","Points":10311,"X":563,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569898Z"},{"ID":8326,"Name":".achim.","Points":10452,"X":514,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569899Z"},{"ID":8327,"Name":"[203] WEST","Points":9974,"X":612,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569899Z"},{"ID":8328,"Name":".achim.","Points":10311,"X":518,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5699Z"},{"ID":8329,"Name":"069 |","Points":10068,"X":567,"Y":565,"Continent":"K55","Bonus":1,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5699Z"},{"ID":8330,"Name":"039.","Points":10495,"X":577,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5699Z"},{"ID":8331,"Name":"Village","Points":8351,"X":471,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569901Z"},{"ID":8332,"Name":"057","Points":7336,"X":546,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569901Z"},{"ID":8333,"Name":"Jaaa","Points":10484,"X":568,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569901Z"},{"ID":8334,"Name":"050","Points":10495,"X":587,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569901Z"},{"ID":8335,"Name":"A#023#","Points":11970,"X":402,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569902Z"},{"ID":8336,"Name":"066","Points":10495,"X":586,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569902Z"},{"ID":8338,"Name":"(024)","Points":8730,"X":420,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569902Z"},{"ID":8339,"Name":"0.Nashville","Points":9959,"X":519,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569902Z"},{"ID":8340,"Name":"Erebor 4","Points":10471,"X":501,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569903Z"},{"ID":8341,"Name":"Teatr","Points":7265,"X":434,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569903Z"},{"ID":8342,"Name":".achim.","Points":10311,"X":516,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569903Z"},{"ID":8343,"Name":"047 POD MOSTEM","Points":10476,"X":421,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569904Z"},{"ID":8344,"Name":"091 MEHEHE","Points":10019,"X":494,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569904Z"},{"ID":8345,"Name":"[015] Matarte","Points":10052,"X":589,"Y":526,"Continent":"K55","Bonus":7,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569904Z"},{"ID":8346,"Name":"Lord Arsey KING","Points":10285,"X":579,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569905Z"},{"ID":8347,"Name":"Feed me more 003","Points":9924,"X":497,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569905Z"},{"ID":8348,"Name":"Wioska 2","Points":3724,"X":425,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569905Z"},{"ID":8349,"Name":"Cztery kostki lodu","Points":10311,"X":566,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569906Z"},{"ID":8350,"Name":"+44 61 Lyon Charpennes","Points":9669,"X":415,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569906Z"},{"ID":8351,"Name":"0017","Points":9816,"X":465,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569906Z"},{"ID":8352,"Name":"PRO8L3M","Points":9884,"X":407,"Y":499,"Continent":"K44","Bonus":6,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569907Z"},{"ID":8353,"Name":".0.Brooklyn","Points":9978,"X":521,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569907Z"},{"ID":8354,"Name":"Gattacka","Points":9757,"X":591,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569907Z"},{"ID":8355,"Name":"Oskal","Points":2999,"X":429,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569908Z"},{"ID":8356,"Name":"+44 71 Blecquenecques","Points":9658,"X":416,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569908Z"},{"ID":8357,"Name":".achim.","Points":10311,"X":517,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569908Z"},{"ID":8358,"Name":"-4-","Points":10495,"X":590,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569909Z"},{"ID":8359,"Name":"197","Points":7458,"X":546,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569909Z"},{"ID":8360,"Name":"[077]","Points":9933,"X":563,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569909Z"},{"ID":8361,"Name":"Dobranoc","Points":9418,"X":418,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56991Z"},{"ID":8362,"Name":"Wioska barbarzyƄska","Points":10252,"X":591,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56991Z"},{"ID":8363,"Name":"- 085 -","Points":10000,"X":535,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56991Z"},{"ID":8364,"Name":"+44 52 Lyon Eurexpo","Points":9681,"X":421,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569911Z"},{"ID":8365,"Name":"K34 - [045] Before Land","Points":10016,"X":462,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569911Z"},{"ID":8366,"Name":"- 081 -","Points":10000,"X":538,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569911Z"},{"ID":8367,"Name":"Boszkowo","Points":9381,"X":420,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569912Z"},{"ID":8368,"Name":"0054","Points":10838,"X":591,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569912Z"},{"ID":8369,"Name":"- 244 -","Points":10000,"X":544,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569912Z"},{"ID":8370,"Name":"NOT?","Points":10063,"X":414,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569912Z"},{"ID":8371,"Name":"C 001.","Points":9530,"X":450,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569913Z"},{"ID":8372,"Name":"Jaaa","Points":10123,"X":577,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569913Z"},{"ID":8374,"Name":"Feed me more 011","Points":10140,"X":492,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569913Z"},{"ID":8375,"Name":"033 Palm Springs","Points":10495,"X":433,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569914Z"},{"ID":8376,"Name":"Darma tutek101","Points":9169,"X":591,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569914Z"},{"ID":8377,"Name":"077","Points":10042,"X":425,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569914Z"},{"ID":8378,"Name":"G008","Points":8045,"X":438,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569915Z"},{"ID":8379,"Name":"0.Miami","Points":9975,"X":524,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569915Z"},{"ID":8380,"Name":"0002","Points":10495,"X":615,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569915Z"},{"ID":8381,"Name":"KIELBA 025","Points":10273,"X":453,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569916Z"},{"ID":8382,"Name":". Interstellar","Points":9151,"X":422,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569916Z"},{"ID":8384,"Name":"0062 ~25~","Points":7716,"X":437,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569916Z"},{"ID":8385,"Name":"0178","Points":10252,"X":466,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569917Z"},{"ID":8386,"Name":"Jaaa","Points":10484,"X":570,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569917Z"},{"ID":8387,"Name":"|026|","Points":10295,"X":557,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569917Z"},{"ID":8388,"Name":"-010- Czemu? WytƂumaczę potem","Points":10479,"X":456,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569918Z"},{"ID":8389,"Name":"013","Points":9744,"X":571,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569918Z"},{"ID":8390,"Name":"Monetki","Points":10303,"X":471,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569918Z"},{"ID":8391,"Name":"059","Points":6281,"X":543,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569919Z"},{"ID":8392,"Name":"Zao","Points":10311,"X":489,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569919Z"},{"ID":8393,"Name":"+44 61 Ecuires","Points":9650,"X":413,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569919Z"},{"ID":8394,"Name":"0059","Points":10495,"X":447,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569919Z"},{"ID":8395,"Name":"Wioska barbarzyƄska","Points":10252,"X":590,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56992Z"},{"ID":8396,"Name":"[0004]","Points":10495,"X":452,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56992Z"},{"ID":8397,"Name":"Wioska barbarzyƄska","Points":9806,"X":497,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56992Z"},{"ID":8398,"Name":"+44 71 Campigneulles les Petites","Points":9669,"X":414,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569921Z"},{"ID":8399,"Name":"Popas9","Points":8939,"X":407,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569921Z"},{"ID":8401,"Name":"WDG","Points":3138,"X":425,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569921Z"},{"ID":8402,"Name":"Szlachcic","Points":9329,"X":568,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569922Z"},{"ID":8403,"Name":"[107]","Points":9864,"X":567,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569922Z"},{"ID":8405,"Name":"Wioska Szymon4077","Points":10008,"X":427,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569922Z"},{"ID":8406,"Name":"Wioska barbarzyƄska","Points":10487,"X":587,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569923Z"},{"ID":8407,"Name":"z 007","Points":10476,"X":560,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569923Z"},{"ID":8408,"Name":"KIELBA 129","Points":10237,"X":464,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569923Z"},{"ID":8409,"Name":"Majin Buu 014","Points":6210,"X":439,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569924Z"},{"ID":8410,"Name":"Knowhere","Points":10452,"X":410,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569924Z"},{"ID":8411,"Name":"KIELBA 005","Points":10495,"X":445,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569924Z"},{"ID":8412,"Name":"Wioska barbarzyƄska","Points":9994,"X":571,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569924Z"},{"ID":8413,"Name":"00593","Points":10276,"X":453,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569925Z"},{"ID":8414,"Name":".achim.","Points":10544,"X":535,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569925Z"},{"ID":8415,"Name":"015 Azalea Town","Points":11109,"X":591,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569925Z"},{"ID":8416,"Name":"[095]","Points":10221,"X":562,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569925Z"},{"ID":8417,"Name":"Wioska barbarzyƄska","Points":9861,"X":503,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569926Z"},{"ID":8418,"Name":"Jaaa","Points":10479,"X":581,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569926Z"},{"ID":8419,"Name":"0090","Points":10083,"X":460,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569926Z"},{"ID":8420,"Name":"#Gyarados","Points":10019,"X":577,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569926Z"},{"ID":8422,"Name":"Wioska barbarzyƄska","Points":9656,"X":500,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569927Z"},{"ID":8423,"Name":"Village","Points":7999,"X":471,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569927Z"},{"ID":8424,"Name":"lady","Points":10471,"X":500,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569927Z"},{"ID":8425,"Name":"Suppi","Points":10090,"X":417,"Y":543,"Continent":"K54","Bonus":1,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569927Z"},{"ID":8426,"Name":"~~LatającyHolender~~","Points":10146,"X":602,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569928Z"},{"ID":8427,"Name":"Wioska 512","Points":10495,"X":581,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569928Z"},{"ID":8428,"Name":"Wioska barbarzyƄska","Points":3784,"X":511,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569928Z"},{"ID":8429,"Name":"#008","Points":7889,"X":577,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569928Z"},{"ID":8430,"Name":"#052","Points":9742,"X":525,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569929Z"},{"ID":8431,"Name":"011","Points":9744,"X":574,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569929Z"},{"ID":8432,"Name":"KONFA TO MARKA, NARKA","Points":10336,"X":412,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569929Z"},{"ID":8433,"Name":"Mzm27","Points":10426,"X":589,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56993Z"},{"ID":8434,"Name":"Monetki","Points":10291,"X":471,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56993Z"},{"ID":8435,"Name":"NOT?","Points":10042,"X":409,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56993Z"},{"ID":8436,"Name":".:013:. Chillout","Points":7649,"X":504,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569931Z"},{"ID":8437,"Name":"Teatr","Points":9524,"X":433,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569931Z"},{"ID":8438,"Name":"WD1","Points":3610,"X":426,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569931Z"},{"ID":8439,"Name":"00.1","Points":9074,"X":496,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569932Z"},{"ID":8440,"Name":"Jaaa","Points":10487,"X":578,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569932Z"},{"ID":8442,"Name":"105","Points":10129,"X":412,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569932Z"},{"ID":8443,"Name":"- 298 -","Points":10000,"X":537,"Y":582,"Continent":"K55","Bonus":6,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569933Z"},{"ID":8444,"Name":"102","Points":10311,"X":564,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569933Z"},{"ID":8445,"Name":"Wioska barbarzyƄska","Points":10285,"X":425,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569933Z"},{"ID":8446,"Name":"00562","Points":5214,"X":439,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569934Z"},{"ID":8447,"Name":"#045","Points":9809,"X":522,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569934Z"},{"ID":8448,"Name":"#049","Points":6709,"X":522,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569934Z"},{"ID":8449,"Name":"Brat447","Points":10495,"X":410,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569934Z"},{"ID":8450,"Name":"Wioska barbarzyƄska","Points":9994,"X":570,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569935Z"},{"ID":8451,"Name":"A037","Points":6646,"X":490,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569935Z"},{"ID":8452,"Name":"038 Kansas City","Points":9283,"X":435,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569935Z"},{"ID":8453,"Name":"Wioska barbarzyƄska","Points":10090,"X":431,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569935Z"},{"ID":8454,"Name":".:043:. Kisiel","Points":9544,"X":504,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569936Z"},{"ID":8455,"Name":"Gryfios 003","Points":10484,"X":617,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569936Z"},{"ID":8456,"Name":"Opyle","Points":3416,"X":429,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569936Z"},{"ID":8457,"Name":"[138]","Points":9897,"X":565,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569936Z"},{"ID":8458,"Name":".achim.","Points":10311,"X":514,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569937Z"},{"ID":8459,"Name":"WDJ","Points":3614,"X":425,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569937Z"},{"ID":8460,"Name":".achim.","Points":10311,"X":526,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569937Z"},{"ID":8461,"Name":"Wioska barbarzyƄska","Points":10285,"X":424,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569937Z"},{"ID":8462,"Name":"Suppi","Points":9644,"X":427,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569938Z"},{"ID":8463,"Name":"012","Points":9775,"X":412,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569938Z"},{"ID":8464,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":413,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569938Z"},{"ID":8465,"Name":"D0004","Points":8370,"X":439,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569938Z"},{"ID":8466,"Name":"#004","Points":8882,"X":578,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569939Z"},{"ID":8467,"Name":".achim.","Points":10452,"X":537,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569939Z"},{"ID":8468,"Name":"Jaaa","Points":10441,"X":574,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569939Z"},{"ID":8469,"Name":"00594","Points":4924,"X":451,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569939Z"},{"ID":8470,"Name":"Wioska barbarzyƄska","Points":9820,"X":495,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56994Z"},{"ID":8471,"Name":"Jaaa","Points":10484,"X":583,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56994Z"},{"ID":8472,"Name":"049","Points":10129,"X":414,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56994Z"},{"ID":8473,"Name":"002. Lagerta","Points":10252,"X":589,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56994Z"},{"ID":8474,"Name":"#005","Points":7657,"X":576,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569941Z"},{"ID":8475,"Name":"Radek","Points":10495,"X":413,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569941Z"},{"ID":8476,"Name":"00591","Points":10072,"X":449,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569941Z"},{"ID":8477,"Name":"044.","Points":10551,"X":579,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569941Z"},{"ID":8478,"Name":"0017","Points":10168,"X":594,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569942Z"},{"ID":8479,"Name":"049 |","Points":10068,"X":563,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569942Z"},{"ID":8480,"Name":"K34 x025.","Points":10495,"X":466,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569942Z"},{"ID":8481,"Name":"005. Wioska JaaMwG","Points":10495,"X":591,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569942Z"},{"ID":8482,"Name":"Sparta_25","Points":9638,"X":492,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569943Z"},{"ID":8483,"Name":"15. Cloud Strife","Points":10559,"X":535,"Y":587,"Continent":"K55","Bonus":6,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569943Z"},{"ID":8485,"Name":".achim.","Points":10311,"X":518,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569943Z"},{"ID":8486,"Name":"Suppi","Points":9825,"X":414,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569944Z"},{"ID":8487,"Name":"Gravity","Points":9773,"X":420,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569944Z"},{"ID":8488,"Name":"#006","Points":8122,"X":576,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569944Z"},{"ID":8489,"Name":"047 Riihimaki","Points":10579,"X":605,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569944Z"},{"ID":8490,"Name":"- 084 -","Points":10000,"X":534,"Y":586,"Continent":"K55","Bonus":8,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569944Z"},{"ID":8491,"Name":"0007","Points":10019,"X":502,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569945Z"},{"ID":8492,"Name":"010","Points":9744,"X":574,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569945Z"},{"ID":8493,"Name":"Sparta_06","Points":9181,"X":498,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569945Z"},{"ID":8494,"Name":".achim.","Points":10311,"X":520,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569945Z"},{"ID":8495,"Name":"Suppi","Points":10459,"X":415,"Y":539,"Continent":"K54","Bonus":2,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569946Z"},{"ID":8496,"Name":"NOT?","Points":10042,"X":410,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569946Z"},{"ID":8497,"Name":"Hej hoo","Points":10495,"X":456,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569946Z"},{"ID":8498,"Name":"HoƂopole","Points":10170,"X":489,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569947Z"},{"ID":8499,"Name":"0338","Points":10495,"X":499,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569947Z"},{"ID":8500,"Name":"Knowhere","Points":10452,"X":410,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569947Z"},{"ID":8501,"Name":".achim.","Points":10311,"X":524,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569948Z"},{"ID":8502,"Name":"- 077 -","Points":10000,"X":535,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569948Z"},{"ID":8503,"Name":"Nowa Nadzieja 1","Points":9263,"X":497,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569948Z"},{"ID":8504,"Name":"Monetki","Points":10294,"X":479,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569948Z"},{"ID":8505,"Name":"Jaaa","Points":10495,"X":574,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569949Z"},{"ID":8506,"Name":"Gravity","Points":9505,"X":418,"Y":456,"Continent":"K44","Bonus":3,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569949Z"},{"ID":8507,"Name":"KIELBA 044","Points":10495,"X":458,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569949Z"},{"ID":8508,"Name":"- 057 -","Points":10000,"X":540,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56995Z"},{"ID":8509,"Name":"LubiƂa rĂłĆŒe..","Points":10311,"X":562,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56995Z"},{"ID":8510,"Name":"Wioska barbarzyƄska","Points":9835,"X":569,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56995Z"},{"ID":8511,"Name":"Taran","Points":10237,"X":582,"Y":462,"Continent":"K45","Bonus":6,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569951Z"},{"ID":8512,"Name":"krzysiek1293-vequ2","Points":10122,"X":412,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569951Z"},{"ID":8513,"Name":"ADEN","Points":6747,"X":560,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569951Z"},{"ID":8514,"Name":"Majin Buu 002","Points":9761,"X":440,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569951Z"},{"ID":8516,"Name":"047","Points":10728,"X":565,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569952Z"},{"ID":8517,"Name":"NOT?","Points":10042,"X":411,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569952Z"},{"ID":8518,"Name":"049 - A01.***","Points":10495,"X":440,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569952Z"},{"ID":8519,"Name":"Gattacka","Points":7333,"X":593,"Y":492,"Continent":"K45","Bonus":4,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569953Z"},{"ID":8520,"Name":"[004] Maak jou dood *","Points":10162,"X":590,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569953Z"},{"ID":8521,"Name":"182","Points":10311,"X":558,"Y":428,"Continent":"K45","Bonus":6,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569953Z"},{"ID":8522,"Name":"CALL 1024","Points":10311,"X":561,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569953Z"},{"ID":8523,"Name":"0.Columbia","Points":9610,"X":522,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569953Z"},{"ID":8524,"Name":"Kentin ufam Tobie","Points":10000,"X":406,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569954Z"},{"ID":8525,"Name":"BBB","Points":10213,"X":555,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569954Z"},{"ID":8526,"Name":"048","Points":10311,"X":552,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569954Z"},{"ID":8527,"Name":"KIELBA 014","Points":10484,"X":445,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569955Z"},{"ID":8528,"Name":"Avanti!","Points":10042,"X":378,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569955Z"},{"ID":8529,"Name":"ObƂo...","Points":3556,"X":432,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569955Z"},{"ID":8530,"Name":"MasteroN 05","Points":10362,"X":570,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569955Z"},{"ID":8531,"Name":"Wioska 516","Points":10495,"X":584,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569956Z"},{"ID":8532,"Name":"Majin Buu 001","Points":9761,"X":442,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569956Z"},{"ID":8533,"Name":"-9-","Points":12154,"X":591,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569956Z"},{"ID":8534,"Name":"ƚmieszki","Points":9168,"X":532,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569956Z"},{"ID":8535,"Name":"Syrup Village","Points":10311,"X":499,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569957Z"},{"ID":8536,"Name":"[A]_[049] Dejv.oldplyr","Points":10248,"X":408,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569957Z"},{"ID":8537,"Name":"NOT?","Points":10042,"X":410,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569957Z"},{"ID":8539,"Name":"Teatr","Points":9888,"X":434,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569957Z"},{"ID":8540,"Name":"0098","Points":9835,"X":447,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569958Z"},{"ID":8541,"Name":".:142:. Niangmen","Points":9761,"X":508,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569958Z"},{"ID":8542,"Name":"- 082 -","Points":10000,"X":537,"Y":585,"Continent":"K55","Bonus":1,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569958Z"},{"ID":8543,"Name":"*301*","Points":10311,"X":507,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569958Z"},{"ID":8544,"Name":".achim.","Points":10311,"X":532,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569959Z"},{"ID":8545,"Name":"0060","Points":7313,"X":592,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569959Z"},{"ID":8546,"Name":"Gravity","Points":9489,"X":418,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569959Z"},{"ID":8547,"Name":"Gattacka","Points":9741,"X":591,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569959Z"},{"ID":8548,"Name":"B033","Points":10495,"X":488,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56996Z"},{"ID":8549,"Name":"Jaaa","Points":10476,"X":577,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56996Z"},{"ID":8550,"Name":"Canberra","Points":10285,"X":422,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56996Z"},{"ID":8551,"Name":"Alaska","Points":9761,"X":414,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56996Z"},{"ID":8552,"Name":"Jaaa","Points":10481,"X":581,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56996Z"},{"ID":8553,"Name":"- 318 -","Points":10000,"X":527,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569961Z"},{"ID":8554,"Name":"Research and Development","Points":10316,"X":532,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569961Z"},{"ID":8555,"Name":"S7 - 6 Service Tunnel","Points":10224,"X":533,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569961Z"},{"ID":8556,"Name":"Wioska barbarzyƄska","Points":10495,"X":585,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569961Z"},{"ID":8557,"Name":".achim.","Points":10311,"X":517,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569962Z"},{"ID":8558,"Name":"#002","Points":9249,"X":577,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569962Z"},{"ID":8559,"Name":"[014] Kashe Ka","Points":10223,"X":591,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569962Z"},{"ID":8560,"Name":"NOT?","Points":10042,"X":416,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569963Z"},{"ID":8561,"Name":"041","Points":10311,"X":557,"Y":427,"Continent":"K45","Bonus":9,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569963Z"},{"ID":8562,"Name":"Suppi","Points":9944,"X":419,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569963Z"},{"ID":8563,"Name":"Wioska barbarzyƄska","Points":10285,"X":431,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569963Z"},{"ID":8564,"Name":"COUSINS","Points":10104,"X":484,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569964Z"},{"ID":8565,"Name":"058","Points":10495,"X":539,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569964Z"},{"ID":8566,"Name":"HoƂopole","Points":10311,"X":490,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569964Z"},{"ID":8567,"Name":"KIELBA 004","Points":10495,"X":446,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569964Z"},{"ID":8568,"Name":"KARTAGINA ..4","Points":8655,"X":456,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569965Z"},{"ID":8569,"Name":"Horyzont zdarzeƄ","Points":9835,"X":531,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569965Z"},{"ID":8570,"Name":"Wioska barbarzyƄska","Points":9835,"X":565,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569965Z"},{"ID":8571,"Name":"019. Brzeginka","Points":6676,"X":505,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569966Z"},{"ID":8572,"Name":"5. Szprotka","Points":10013,"X":478,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569966Z"},{"ID":8573,"Name":"[A]_[036] Dejv.oldplyr","Points":10495,"X":409,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569966Z"},{"ID":8574,"Name":"041.","Points":9456,"X":579,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569967Z"},{"ID":8575,"Name":"!Wioska 513","Points":10495,"X":584,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569967Z"},{"ID":8576,"Name":"- 210 -","Points":10000,"X":549,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569967Z"},{"ID":8577,"Name":"Suppi","Points":9670,"X":426,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569967Z"},{"ID":8578,"Name":"jol jol","Points":7430,"X":402,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569968Z"},{"ID":8579,"Name":"0056","Points":9675,"X":592,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569968Z"},{"ID":8580,"Name":"|020|","Points":10444,"X":557,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569968Z"},{"ID":8581,"Name":"KIELBA 024","Points":10273,"X":452,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569969Z"},{"ID":8582,"Name":"[0055]","Points":10495,"X":448,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569969Z"},{"ID":8583,"Name":"Wioska barbarzyƄska","Points":9881,"X":493,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569969Z"},{"ID":8584,"Name":"NOT?","Points":10042,"X":413,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56997Z"},{"ID":8585,"Name":"Monetki","Points":10167,"X":481,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56997Z"},{"ID":8586,"Name":"083.","Points":11344,"X":588,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56997Z"},{"ID":8587,"Name":"061","Points":10042,"X":406,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569971Z"},{"ID":8588,"Name":"A016","Points":10221,"X":449,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569971Z"},{"ID":8589,"Name":"Idar","Points":3642,"X":428,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569971Z"},{"ID":8590,"Name":"0034","Points":9787,"X":589,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569972Z"},{"ID":8591,"Name":"- 129 -","Points":10000,"X":542,"Y":583,"Continent":"K55","Bonus":8,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569972Z"},{"ID":8592,"Name":"#067","Points":9663,"X":471,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569972Z"},{"ID":8593,"Name":".achim.","Points":10311,"X":519,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569972Z"},{"ID":8594,"Name":"02. Wioska Prykopek","Points":10495,"X":470,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569973Z"},{"ID":8595,"Name":"x13","Points":10285,"X":422,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569973Z"},{"ID":8596,"Name":"Wioska barbarzyƄska","Points":9994,"X":573,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569973Z"},{"ID":8597,"Name":"Monetki","Points":10294,"X":476,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569974Z"},{"ID":8598,"Name":"NOT?","Points":10060,"X":408,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569974Z"},{"ID":8599,"Name":"Ghost Rider4","Points":9155,"X":487,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569974Z"},{"ID":8600,"Name":"Kiedyƛ Wielki Wojownik","Points":9765,"X":394,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569974Z"},{"ID":8601,"Name":"Wioska barbarzyƄska","Points":9492,"X":447,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569975Z"},{"ID":8602,"Name":"Wioska barbarzyƄska","Points":9318,"X":481,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569975Z"},{"ID":8603,"Name":"Majin Buu 016","Points":9546,"X":436,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569975Z"},{"ID":8604,"Name":". Fight Club","Points":9492,"X":422,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569975Z"},{"ID":8605,"Name":".achim.","Points":10311,"X":526,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569976Z"},{"ID":8606,"Name":"Wioska 0020","Points":9539,"X":408,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569976Z"},{"ID":8607,"Name":"Wioska barbarzyƄska","Points":10285,"X":428,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569976Z"},{"ID":8608,"Name":"029 Honolulu","Points":9597,"X":434,"Y":436,"Continent":"K44","Bonus":3,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569976Z"},{"ID":8609,"Name":".achim.","Points":10311,"X":523,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569977Z"},{"ID":8610,"Name":"Szlachcic","Points":9721,"X":592,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569977Z"},{"ID":8611,"Name":".:015:. Szafa","Points":9761,"X":507,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569977Z"},{"ID":8612,"Name":"West 02","Points":9761,"X":591,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569977Z"},{"ID":8613,"Name":"KIELBA 008","Points":10245,"X":445,"Y":573,"Continent":"K54","Bonus":3,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569978Z"},{"ID":8614,"Name":"D0001","Points":10354,"X":439,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569978Z"},{"ID":8615,"Name":"merhet","Points":10036,"X":538,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569978Z"},{"ID":8616,"Name":"A0010","Points":10362,"X":384,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569979Z"},{"ID":8617,"Name":"096","Points":10042,"X":409,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569979Z"},{"ID":8618,"Name":"Erebor 3","Points":10471,"X":502,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569979Z"},{"ID":8619,"Name":"CALL 1001","Points":10495,"X":555,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56998Z"},{"ID":8620,"Name":"ƚmieszki","Points":9131,"X":534,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56998Z"},{"ID":8621,"Name":"Jaaa","Points":10484,"X":570,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56998Z"},{"ID":8622,"Name":"Suppi","Points":9827,"X":412,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56998Z"},{"ID":8623,"Name":"Popas3","Points":9761,"X":407,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569981Z"},{"ID":8624,"Name":"Suppi","Points":9811,"X":417,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569981Z"},{"ID":8625,"Name":"098","Points":10048,"X":414,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569981Z"},{"ID":8626,"Name":".achim.","Points":10544,"X":537,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569981Z"},{"ID":8627,"Name":"028","Points":10495,"X":547,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569981Z"},{"ID":8628,"Name":"Sparta_62","Points":9638,"X":493,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569982Z"},{"ID":8629,"Name":"scoti","Points":10349,"X":492,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569982Z"},{"ID":8630,"Name":"Wioska 0007","Points":10161,"X":410,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569982Z"},{"ID":8631,"Name":"Wioska barbarzyƄska","Points":9897,"X":499,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569982Z"},{"ID":8632,"Name":"-11-","Points":10177,"X":590,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569983Z"},{"ID":8633,"Name":"Jaaa","Points":10478,"X":577,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569983Z"},{"ID":8634,"Name":"KOSZARY ABADONA","Points":12154,"X":590,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569983Z"},{"ID":8635,"Name":"Mmmmm","Points":4632,"X":429,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569983Z"},{"ID":8636,"Name":"KIELBA 089","Points":10023,"X":452,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569984Z"},{"ID":8637,"Name":"055","Points":10495,"X":545,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569984Z"},{"ID":8638,"Name":"[A]_[033] Dejv.oldplyr","Points":10444,"X":404,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569984Z"},{"ID":8639,"Name":".:002:. Another World","Points":8930,"X":510,"Y":408,"Continent":"K45","Bonus":5,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569984Z"},{"ID":8640,"Name":"Kentin ufam Tobie","Points":10000,"X":406,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569985Z"},{"ID":8641,"Name":"0000001#","Points":10542,"X":432,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569985Z"},{"ID":8642,"Name":"034","Points":8726,"X":557,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569985Z"},{"ID":8643,"Name":"Jehu_Kingdom_26_","Points":9993,"X":598,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569985Z"},{"ID":8644,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":409,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569986Z"},{"ID":8646,"Name":"[104]","Points":9956,"X":568,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569986Z"},{"ID":8647,"Name":"SsSs","Points":9547,"X":417,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569986Z"},{"ID":8648,"Name":"AbacadA 016","Points":10273,"X":559,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569987Z"},{"ID":8649,"Name":"Hammerhead","Points":10160,"X":531,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569987Z"},{"ID":8650,"Name":"037","Points":10042,"X":411,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569987Z"},{"ID":8651,"Name":"Szlachcic","Points":9147,"X":470,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569987Z"},{"ID":8652,"Name":"[137] North","Points":10311,"X":587,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569988Z"},{"ID":8653,"Name":"Gattacka","Points":9745,"X":594,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569988Z"},{"ID":8654,"Name":"Monetki ???","Points":10292,"X":479,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569988Z"},{"ID":8655,"Name":"003 Jednak za maƂo deffa w nocy","Points":10319,"X":587,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569988Z"},{"ID":8656,"Name":"[A]_[034] Dejv.oldplyr","Points":10495,"X":409,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569989Z"},{"ID":8657,"Name":"027. Beta","Points":10495,"X":543,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569989Z"},{"ID":8658,"Name":"#044","Points":9809,"X":520,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569989Z"},{"ID":8659,"Name":"Wioska barbarzyƄska","Points":10490,"X":589,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56999Z"},{"ID":8660,"Name":"Wioska barbarzyƄska","Points":6323,"X":464,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56999Z"},{"ID":8661,"Name":"Teatr","Points":9722,"X":436,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56999Z"},{"ID":8662,"Name":"011","Points":9634,"X":545,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.56999Z"},{"ID":8663,"Name":"KIELBA 047","Points":10495,"X":460,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569991Z"},{"ID":8664,"Name":"x05","Points":10285,"X":423,"Y":445,"Continent":"K44","Bonus":1,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569991Z"},{"ID":8665,"Name":"Suppi","Points":9808,"X":416,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569991Z"},{"ID":8666,"Name":".achim.","Points":10311,"X":521,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569991Z"},{"ID":8667,"Name":"HoƂopole","Points":9899,"X":480,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569992Z"},{"ID":8668,"Name":".:023:. Zlew","Points":9906,"X":509,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569992Z"},{"ID":8669,"Name":"???","Points":9296,"X":425,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569992Z"},{"ID":8670,"Name":"[138] North","Points":10051,"X":587,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569992Z"},{"ID":8671,"Name":"FKG 01-16","Points":9835,"X":418,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569993Z"},{"ID":8672,"Name":"089","Points":10129,"X":406,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569993Z"},{"ID":8673,"Name":"0002","Points":10211,"X":558,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569993Z"},{"ID":8674,"Name":"Daleko 025","Points":8021,"X":481,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569993Z"},{"ID":8675,"Name":"Teatr","Points":10029,"X":435,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569994Z"},{"ID":8676,"Name":"022","Points":10129,"X":410,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569994Z"},{"ID":8677,"Name":"Malbork","Points":9835,"X":441,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569994Z"},{"ID":8678,"Name":"0001","Points":10559,"X":606,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569995Z"},{"ID":8679,"Name":"Jaaa","Points":10479,"X":578,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569995Z"},{"ID":8680,"Name":".achim.","Points":10311,"X":528,"Y":413,"Continent":"K45","Bonus":3,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569995Z"},{"ID":8681,"Name":"026 Andora","Points":10495,"X":589,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569995Z"},{"ID":8682,"Name":"Wioska barbarzyƄska","Points":10285,"X":432,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569996Z"},{"ID":8683,"Name":".zaƛ ten KUBA","Points":8804,"X":423,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569996Z"},{"ID":8684,"Name":"KIELBA 015","Points":10294,"X":442,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569996Z"},{"ID":8685,"Name":"003 Pewter City","Points":11109,"X":595,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569997Z"},{"ID":8686,"Name":"#012","Points":9761,"X":532,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569997Z"},{"ID":8687,"Name":"0020","Points":10301,"X":594,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569997Z"},{"ID":8688,"Name":"KIELBA 012","Points":10259,"X":445,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569997Z"},{"ID":8689,"Name":"Popas","Points":9816,"X":405,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569998Z"},{"ID":8690,"Name":"019","Points":9744,"X":575,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569998Z"},{"ID":8691,"Name":"012","Points":10320,"X":618,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569998Z"},{"ID":8692,"Name":"Sector 6 Slums Area","Points":10083,"X":514,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569999Z"},{"ID":8693,"Name":"Okuba","Points":3644,"X":431,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569999Z"},{"ID":8694,"Name":"-013- Wszystko dlatego ĆŒe","Points":10479,"X":456,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569999Z"},{"ID":8695,"Name":"Wioska barbarzyƄska 018|","Points":9663,"X":547,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.569999Z"},{"ID":8696,"Name":"#068","Points":10728,"X":476,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57Z"},{"ID":8697,"Name":"045.","Points":9760,"X":582,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57Z"},{"ID":8698,"Name":"Village","Points":8258,"X":470,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57Z"},{"ID":8699,"Name":"042.","Points":9827,"X":578,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57Z"},{"ID":8700,"Name":"045","Points":10247,"X":503,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570001Z"},{"ID":8701,"Name":".achim.","Points":10311,"X":518,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570001Z"},{"ID":8702,"Name":"Teatr","Points":10143,"X":434,"Y":568,"Continent":"K54","Bonus":6,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570001Z"},{"ID":8703,"Name":"098 MEHEHE","Points":10160,"X":518,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570002Z"},{"ID":8704,"Name":"Jaaa","Points":10478,"X":584,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570002Z"},{"ID":8705,"Name":"ADEN","Points":9056,"X":562,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570002Z"},{"ID":8706,"Name":"Sector 1","Points":10559,"X":531,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570002Z"},{"ID":8707,"Name":"COUSINS","Points":10041,"X":485,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570003Z"},{"ID":8708,"Name":"Osada koczownikĂłw","Points":3646,"X":430,"Y":560,"Continent":"K54","Bonus":1,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570003Z"},{"ID":8709,"Name":"Cast Away 019","Points":10636,"X":444,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570003Z"},{"ID":8710,"Name":"- 214 -","Points":10000,"X":555,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570003Z"},{"ID":8711,"Name":"002 Viridian City","Points":11109,"X":592,"Y":499,"Continent":"K45","Bonus":5,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570004Z"},{"ID":8712,"Name":"Darma Tomi77","Points":10237,"X":510,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570004Z"},{"ID":8713,"Name":"Teatr","Points":9960,"X":431,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570004Z"},{"ID":8714,"Name":"ADEN","Points":10056,"X":564,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570004Z"},{"ID":8715,"Name":"Monetki","Points":10292,"X":472,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570005Z"},{"ID":8717,"Name":".achim.","Points":10311,"X":525,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570005Z"},{"ID":8719,"Name":"NOT?","Points":10042,"X":410,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570005Z"},{"ID":8720,"Name":"PRO8L3M","Points":10311,"X":408,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570005Z"},{"ID":8721,"Name":"Witam w wietnamie","Points":10008,"X":420,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570005Z"},{"ID":8722,"Name":"ƚmieszkiii","Points":8370,"X":475,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570006Z"},{"ID":8723,"Name":"0013","Points":10301,"X":595,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570006Z"},{"ID":8724,"Name":".achim.","Points":10311,"X":533,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570006Z"},{"ID":8725,"Name":"Popas7","Points":9054,"X":406,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570006Z"},{"ID":8726,"Name":"VN Canalie Braize","Points":9558,"X":467,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570007Z"},{"ID":8727,"Name":"KARTAGINA ..1","Points":7904,"X":455,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570007Z"},{"ID":8728,"Name":"IRW","Points":3293,"X":427,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570007Z"},{"ID":8729,"Name":"0058","Points":10259,"X":446,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570007Z"},{"ID":8730,"Name":"Wioska 0010","Points":10167,"X":408,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570008Z"},{"ID":8731,"Name":"Szlachcic","Points":9835,"X":509,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570008Z"},{"ID":8732,"Name":"Szlachcic","Points":10237,"X":459,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570008Z"},{"ID":8733,"Name":"- 284 -","Points":10000,"X":517,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570008Z"},{"ID":8734,"Name":"Wioska7","Points":10220,"X":512,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570009Z"},{"ID":8735,"Name":"F074","Points":7551,"X":508,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570009Z"},{"ID":8736,"Name":"[A]_[027] Dejv.oldplyr","Points":10495,"X":408,"Y":482,"Continent":"K44","Bonus":5,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570009Z"},{"ID":8737,"Name":"+44 61 Widehem","Points":9669,"X":413,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570009Z"},{"ID":8738,"Name":"Szlachcic","Points":10237,"X":462,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570009Z"},{"ID":8739,"Name":"012","Points":10093,"X":477,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57001Z"},{"ID":8740,"Name":"CALL 1027","Points":10311,"X":558,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57001Z"},{"ID":8741,"Name":"Szlachcic","Points":9762,"X":494,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57001Z"},{"ID":8742,"Name":"PRO8L3M","Points":9220,"X":406,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57001Z"},{"ID":8743,"Name":".achim.","Points":10311,"X":534,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570011Z"},{"ID":8744,"Name":"020","Points":10042,"X":419,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570011Z"},{"ID":8745,"Name":"ADEN","Points":7987,"X":561,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570011Z"},{"ID":8746,"Name":"051","Points":10495,"X":588,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570011Z"},{"ID":8747,"Name":"+44 61 Decines","Points":9841,"X":411,"Y":465,"Continent":"K44","Bonus":6,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570012Z"},{"ID":8748,"Name":"Witam w wietnamie","Points":7888,"X":422,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570012Z"},{"ID":8749,"Name":"181 Kicia..........","Points":10084,"X":463,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570012Z"},{"ID":8750,"Name":"Sparta_05","Points":9638,"X":500,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570012Z"},{"ID":8751,"Name":"+44 61 Bray Dunes","Points":10495,"X":412,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570013Z"},{"ID":8752,"Name":"Winstrol","Points":10495,"X":593,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570013Z"},{"ID":8753,"Name":"015","Points":9814,"X":587,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570013Z"},{"ID":8754,"Name":"#0095","Points":10495,"X":510,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570013Z"},{"ID":8755,"Name":"Szlachcic","Points":10237,"X":464,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570013Z"},{"ID":8756,"Name":"Daleko 027","Points":8332,"X":480,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570014Z"},{"ID":8757,"Name":"079","Points":10311,"X":549,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570014Z"},{"ID":8758,"Name":"Teatr","Points":10503,"X":434,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570014Z"},{"ID":8759,"Name":".:025:. Rower","Points":9745,"X":513,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570014Z"},{"ID":8760,"Name":"090","Points":10495,"X":592,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570015Z"},{"ID":8761,"Name":"Wioska barbarzyƄska","Points":7549,"X":568,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570015Z"},{"ID":8762,"Name":"0016","Points":10273,"X":477,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570015Z"},{"ID":8763,"Name":"017 - Legancko***","Points":10495,"X":448,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570015Z"},{"ID":8764,"Name":"West Blue","Points":10530,"X":492,"Y":407,"Continent":"K44","Bonus":5,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570016Z"},{"ID":8765,"Name":"Szlachcic","Points":10237,"X":459,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570016Z"},{"ID":8767,"Name":"NOT?","Points":10042,"X":408,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570016Z"},{"ID":8768,"Name":"L 4","Points":10224,"X":613,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570016Z"},{"ID":8769,"Name":".achim.","Points":9674,"X":538,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570017Z"},{"ID":8770,"Name":"ADEN","Points":7735,"X":565,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570017Z"},{"ID":8771,"Name":"027","Points":10104,"X":574,"Y":441,"Continent":"K45","Bonus":8,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570017Z"},{"ID":8772,"Name":". Ć»ywiec","Points":7552,"X":424,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570017Z"},{"ID":8773,"Name":"020","Points":9761,"X":542,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570017Z"},{"ID":8774,"Name":"010","Points":9892,"X":584,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570018Z"},{"ID":8775,"Name":"00592","Points":10160,"X":450,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570018Z"},{"ID":8776,"Name":"Suppi","Points":9989,"X":414,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570018Z"},{"ID":8777,"Name":"Bez sƂów","Points":10311,"X":564,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570018Z"},{"ID":8778,"Name":"Szlachcic","Points":10237,"X":468,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570019Z"},{"ID":8779,"Name":"Radek","Points":10478,"X":410,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570019Z"},{"ID":8780,"Name":"097","Points":10129,"X":409,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570019Z"},{"ID":8781,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":573,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570019Z"},{"ID":8782,"Name":"CALL 1022","Points":10311,"X":559,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57002Z"},{"ID":8783,"Name":"HoƂopole","Points":10311,"X":485,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57002Z"},{"ID":8784,"Name":"Mzm08.","Points":10495,"X":593,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57002Z"},{"ID":8785,"Name":"092","Points":10495,"X":591,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57002Z"},{"ID":8786,"Name":"004","Points":10636,"X":561,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57002Z"},{"ID":8787,"Name":"(010)","Points":10143,"X":416,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570021Z"},{"ID":8788,"Name":"Kanczendzonga","Points":9825,"X":378,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570021Z"},{"ID":8789,"Name":"0062 ~26~ Lech -7","Points":9850,"X":437,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570021Z"},{"ID":8790,"Name":"074","Points":10042,"X":408,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570021Z"},{"ID":8791,"Name":"Wioska 517","Points":10495,"X":582,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570022Z"},{"ID":8792,"Name":"011","Points":9873,"X":414,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570022Z"},{"ID":8793,"Name":"Suppi","Points":10362,"X":416,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570022Z"},{"ID":8794,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":418,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570022Z"},{"ID":8795,"Name":"Osada koczownikĂłw","Points":10285,"X":424,"Y":446,"Continent":"K44","Bonus":2,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570023Z"},{"ID":8796,"Name":"Taran","Points":9592,"X":583,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570023Z"},{"ID":8797,"Name":"Gattacka","Points":9753,"X":594,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570023Z"},{"ID":8798,"Name":"XXXX","Points":10242,"X":491,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570023Z"},{"ID":8799,"Name":"008. Wietrzyca","Points":9697,"X":507,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570024Z"},{"ID":8800,"Name":"Jaaa","Points":10479,"X":581,"Y":550,"Continent":"K55","Bonus":5,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570024Z"},{"ID":8801,"Name":"Monetki 2","Points":10349,"X":470,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570024Z"},{"ID":8802,"Name":"WDBar","Points":2603,"X":425,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570024Z"},{"ID":8803,"Name":"KIELBA 049","Points":10247,"X":461,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570025Z"},{"ID":8804,"Name":"Szlachcic","Points":10237,"X":462,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570025Z"},{"ID":8805,"Name":"026 Nashville","Points":10495,"X":431,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570025Z"},{"ID":8807,"Name":"#0035 Coals","Points":10000,"X":481,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570025Z"},{"ID":8808,"Name":".achim.","Points":10311,"X":525,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570025Z"},{"ID":8809,"Name":"-5-","Points":10569,"X":589,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570026Z"},{"ID":8810,"Name":"#003","Points":7345,"X":577,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570026Z"},{"ID":8812,"Name":"Daleko 010","Points":7437,"X":478,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570026Z"},{"ID":8813,"Name":"Teatr","Points":10157,"X":434,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570026Z"},{"ID":8814,"Name":"Wioska (041)","Points":9785,"X":620,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570027Z"},{"ID":8815,"Name":"G001","Points":10178,"X":432,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570027Z"},{"ID":8816,"Name":"+44 61 Saint Priest Manissieux","Points":9844,"X":412,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570027Z"},{"ID":8817,"Name":"Gravity","Points":9579,"X":415,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570027Z"},{"ID":8818,"Name":"Witam w wietnamie","Points":9644,"X":415,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570028Z"},{"ID":8819,"Name":"Feed me more 013","Points":10066,"X":493,"Y":406,"Continent":"K44","Bonus":4,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570028Z"},{"ID":8820,"Name":"017","Points":9550,"X":399,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570028Z"},{"ID":8821,"Name":"PszczóƂki","Points":10311,"X":432,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570028Z"},{"ID":8823,"Name":"FAKE OR OFF","Points":9833,"X":442,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570029Z"},{"ID":8824,"Name":"012","Points":9274,"X":572,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570029Z"},{"ID":8825,"Name":"-015- Dotykać, przytulać","Points":10441,"X":456,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570029Z"},{"ID":8826,"Name":"0004","Points":10495,"X":524,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570029Z"},{"ID":8827,"Name":"Z03","Points":10180,"X":554,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57003Z"},{"ID":8829,"Name":"Szlachcic","Points":10237,"X":461,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57003Z"},{"ID":8830,"Name":"KIELBA 010","Points":10273,"X":445,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57003Z"},{"ID":8831,"Name":"Kentin ufam Tobie","Points":10000,"X":431,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57003Z"},{"ID":8832,"Name":"PRO8L3M","Points":10311,"X":406,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57003Z"},{"ID":8833,"Name":".016.","Points":10316,"X":482,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570031Z"},{"ID":8834,"Name":"039 Baltimore","Points":10487,"X":431,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570031Z"},{"ID":8835,"Name":".achim.","Points":10311,"X":534,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570031Z"},{"ID":8836,"Name":"CALL 1004","Points":10544,"X":553,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570031Z"},{"ID":8838,"Name":"088 MEHEHE 4","Points":10019,"X":487,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570032Z"},{"ID":8839,"Name":"####","Points":10495,"X":451,"Y":580,"Continent":"K54","Bonus":9,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570032Z"},{"ID":8840,"Name":"ZasiedmiogĂłrogrĂłd","Points":9976,"X":540,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570032Z"},{"ID":8841,"Name":"064 |","Points":9740,"X":565,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570032Z"},{"ID":8842,"Name":"Jehu_Kingdom_29_","Points":9993,"X":591,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570033Z"},{"ID":8843,"Name":"Wioska 515","Points":10495,"X":583,"Y":451,"Continent":"K45","Bonus":2,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570033Z"},{"ID":8844,"Name":".achim.","Points":10311,"X":527,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570033Z"},{"ID":8845,"Name":".achim.","Points":10311,"X":525,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570033Z"},{"ID":8846,"Name":"020","Points":10211,"X":504,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570034Z"},{"ID":8847,"Name":"Lord Arsey KING","Points":10285,"X":590,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570034Z"},{"ID":8848,"Name":"Szlachcic","Points":10237,"X":460,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570034Z"},{"ID":8849,"Name":"Szlachcic","Points":8201,"X":466,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570034Z"},{"ID":8850,"Name":"Dobranoc","Points":9670,"X":418,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570035Z"},{"ID":8851,"Name":"Connecticut","Points":9761,"X":410,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570035Z"},{"ID":8852,"Name":"[092]","Points":10057,"X":531,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570035Z"},{"ID":8853,"Name":"+44 61 Hervelinghen","Points":9844,"X":413,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570035Z"},{"ID":8854,"Name":"+44 61 Uxem","Points":9658,"X":415,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570036Z"},{"ID":8855,"Name":"Wioska barbarzyƄska","Points":5630,"X":405,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570036Z"},{"ID":8856,"Name":"Monetki","Points":10311,"X":483,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570036Z"},{"ID":8857,"Name":"-6-","Points":10636,"X":592,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570036Z"},{"ID":8858,"Name":"- 091 -","Points":10000,"X":536,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570037Z"},{"ID":8859,"Name":"088","Points":10129,"X":410,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570037Z"},{"ID":8860,"Name":"KARTAGINA ..5","Points":9028,"X":456,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570037Z"},{"ID":8861,"Name":"- 281 -","Points":10000,"X":518,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570038Z"},{"ID":8862,"Name":"AbacadA 014","Points":9658,"X":561,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570038Z"},{"ID":8863,"Name":"023 Jednak z sensem","Points":9749,"X":432,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570038Z"},{"ID":8864,"Name":"Jaaa","Points":10484,"X":580,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570038Z"},{"ID":8865,"Name":"021","Points":9417,"X":408,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570039Z"},{"ID":8866,"Name":"daleko 009","Points":8102,"X":478,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570039Z"},{"ID":8867,"Name":"Stage group C","Points":10311,"X":568,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570039Z"},{"ID":8868,"Name":"*INTERTWINED**","Points":9711,"X":525,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57004Z"},{"ID":8869,"Name":"Monetki ???","Points":10292,"X":477,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57004Z"},{"ID":8870,"Name":"bright crystal","Points":9077,"X":469,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57004Z"},{"ID":8871,"Name":"Gravity","Points":9498,"X":416,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570041Z"},{"ID":8872,"Name":"F012","Points":9756,"X":500,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570041Z"},{"ID":8873,"Name":"Mięguszowiecki Szczyt","Points":9614,"X":414,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570041Z"},{"ID":8874,"Name":"01. Piccolo","Points":9735,"X":512,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849085961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570042Z"},{"ID":8875,"Name":"Popas4","Points":9811,"X":405,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570042Z"},{"ID":8876,"Name":"- 098 -","Points":10000,"X":548,"Y":581,"Continent":"K55","Bonus":7,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570042Z"},{"ID":8878,"Name":"[A]_[029] Dejv.oldplyr","Points":10495,"X":404,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570042Z"},{"ID":8879,"Name":".:054:.Chillout","Points":7879,"X":508,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570042Z"},{"ID":8880,"Name":"Sector 6","Points":10019,"X":513,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570043Z"},{"ID":8881,"Name":"KIELBA 133","Points":10362,"X":465,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570043Z"},{"ID":8882,"Name":"Tu polegƂ Kalifah Idris IV","Points":10362,"X":506,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570043Z"},{"ID":8883,"Name":"085","Points":10129,"X":404,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570043Z"},{"ID":8884,"Name":"003. A-RE-SE-EY","Points":10252,"X":591,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570044Z"},{"ID":8885,"Name":"001","Points":10129,"X":408,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570044Z"},{"ID":8886,"Name":"Sphinx","Points":4934,"X":426,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570044Z"},{"ID":8887,"Name":"NOT!!","Points":10042,"X":466,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570044Z"},{"ID":8889,"Name":"Z06","Points":9870,"X":545,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570045Z"},{"ID":8890,"Name":"SƂodki Urai","Points":3794,"X":504,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":849017894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570045Z"},{"ID":8891,"Name":"- 104 -","Points":10000,"X":543,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570045Z"},{"ID":8892,"Name":"[100] North","Points":10181,"X":576,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570045Z"},{"ID":8893,"Name":"HoƂopole","Points":9835,"X":492,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570046Z"},{"ID":8894,"Name":"- 122 -","Points":9973,"X":542,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570046Z"},{"ID":8895,"Name":"Suppi","Points":9809,"X":413,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570046Z"},{"ID":8896,"Name":"082. ALFI","Points":1354,"X":481,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570046Z"},{"ID":8897,"Name":"031","Points":9107,"X":573,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570047Z"},{"ID":8898,"Name":"Taran","Points":10237,"X":585,"Y":465,"Continent":"K45","Bonus":4,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570047Z"},{"ID":8899,"Name":"010","Points":10129,"X":406,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570047Z"},{"ID":8900,"Name":"#0091 Piszczac Pierwszy","Points":10083,"X":478,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570048Z"},{"ID":8901,"Name":"Monetki","Points":10292,"X":476,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570048Z"},{"ID":8902,"Name":"006 | Lord Axen - Rumbling,","Points":10343,"X":559,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570048Z"},{"ID":8903,"Name":"011","Points":10019,"X":586,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570048Z"},{"ID":8904,"Name":"KIELBA 046","Points":10495,"X":459,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570049Z"},{"ID":8905,"Name":".achim.","Points":10311,"X":513,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570049Z"},{"ID":8906,"Name":"Szlachcic","Points":10237,"X":465,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570049Z"},{"ID":8907,"Name":"030","Points":8286,"X":491,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570049Z"},{"ID":8908,"Name":"K44 x028.","Points":6323,"X":451,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57005Z"},{"ID":8909,"Name":"004. A-RE-SE-EY","Points":10252,"X":591,"Y":525,"Continent":"K55","Bonus":9,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57005Z"},{"ID":8910,"Name":"088","Points":10311,"X":566,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57005Z"},{"ID":8912,"Name":"- 103 -","Points":10000,"X":542,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57005Z"},{"ID":8913,"Name":"Knowhere","Points":10452,"X":376,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570051Z"},{"ID":8914,"Name":"eeeeee","Points":7464,"X":575,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570051Z"},{"ID":8915,"Name":"Gravity","Points":9553,"X":421,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570051Z"},{"ID":8916,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":409,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570051Z"},{"ID":8917,"Name":"Wioska barbarzyƄska","Points":9653,"X":497,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570052Z"},{"ID":8918,"Name":"026.","Points":9995,"X":591,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570052Z"},{"ID":8919,"Name":"0019","Points":9192,"X":476,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570052Z"},{"ID":8920,"Name":".J wydziaƂ","Points":8756,"X":421,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570052Z"},{"ID":8921,"Name":"003. Wioska Ilia","Points":10495,"X":593,"Y":525,"Continent":"K55","Bonus":9,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570053Z"},{"ID":8922,"Name":"Szlachcic","Points":10237,"X":580,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570053Z"},{"ID":8923,"Name":"Village","Points":8079,"X":467,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570053Z"},{"ID":8924,"Name":"bluberry","Points":9835,"X":590,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570054Z"},{"ID":8925,"Name":"Suppi","Points":9550,"X":418,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570054Z"},{"ID":8926,"Name":"099","Points":10042,"X":409,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570054Z"},{"ID":8927,"Name":"Domek 6","Points":9750,"X":557,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570054Z"},{"ID":8928,"Name":"Gattacka","Points":9821,"X":594,"Y":485,"Continent":"K45","Bonus":9,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570055Z"},{"ID":8929,"Name":"Gattacka","Points":9664,"X":583,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570055Z"},{"ID":8930,"Name":"Wioska barbarzyƄska","Points":9835,"X":566,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570055Z"},{"ID":8932,"Name":"PPP1","Points":3614,"X":429,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570055Z"},{"ID":8933,"Name":"-7-","Points":10728,"X":592,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570056Z"},{"ID":8934,"Name":"Jaaa","Points":10476,"X":583,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570056Z"},{"ID":8935,"Name":"04.","Points":9994,"X":572,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570056Z"},{"ID":8936,"Name":"AbacadA 022","Points":9824,"X":560,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570056Z"},{"ID":8937,"Name":"053","Points":9761,"X":484,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570057Z"},{"ID":8938,"Name":"00593","Points":10566,"X":449,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570057Z"},{"ID":8939,"Name":"[002] Ubiti te","Points":10273,"X":591,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570057Z"},{"ID":8940,"Name":"Z07","Points":9972,"X":548,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570057Z"},{"ID":8941,"Name":"#0028 Krąg","Points":10019,"X":487,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570058Z"},{"ID":8942,"Name":"Gravity","Points":9497,"X":420,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570058Z"},{"ID":8943,"Name":"Village","Points":12154,"X":503,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570058Z"},{"ID":8944,"Name":"Rysy","Points":9667,"X":415,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570058Z"},{"ID":8945,"Name":"- 316 -","Points":10000,"X":528,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570059Z"},{"ID":8946,"Name":"Cintra","Points":9430,"X":515,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570059Z"},{"ID":8947,"Name":"Szlachcic","Points":10237,"X":455,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570059Z"},{"ID":8948,"Name":"Carpo","Points":9401,"X":423,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570059Z"},{"ID":8949,"Name":"CALL 1018","Points":10311,"X":559,"Y":575,"Continent":"K55","Bonus":6,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57006Z"},{"ID":8950,"Name":".achim.","Points":10311,"X":516,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57006Z"},{"ID":8951,"Name":".:053:. Chillout","Points":6181,"X":503,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57006Z"},{"ID":8952,"Name":"Jehu_Kingdom_05_","Points":9993,"X":592,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57006Z"},{"ID":8953,"Name":"! KOXOWNIA","Points":9228,"X":582,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57006Z"},{"ID":8954,"Name":".achim.","Points":10677,"X":540,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570061Z"},{"ID":8956,"Name":"013. A-RE-SE-EY","Points":10252,"X":587,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570061Z"},{"ID":8957,"Name":"OstrĂłdzki Sektor","Points":10838,"X":517,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570061Z"},{"ID":8958,"Name":"Gravity","Points":9489,"X":416,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570061Z"},{"ID":8960,"Name":"NOT","Points":10042,"X":421,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570062Z"},{"ID":8961,"Name":"Wioska barbarzyƄska","Points":9264,"X":594,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570062Z"},{"ID":8962,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":568,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570062Z"},{"ID":8963,"Name":"Wioska barbarzyƄska","Points":9524,"X":587,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570062Z"},{"ID":8964,"Name":"090","Points":10042,"X":410,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570063Z"},{"ID":8965,"Name":"ADEN","Points":10055,"X":566,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570063Z"},{"ID":8966,"Name":"0052 Kerfurqqqqqqqqqqqqqqqqqqqq","Points":9438,"X":439,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570063Z"},{"ID":8967,"Name":"Wioska,","Points":9894,"X":504,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570064Z"},{"ID":8968,"Name":"Gravity","Points":9505,"X":419,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570064Z"},{"ID":8969,"Name":"002. A-RE-SE-EY","Points":10252,"X":590,"Y":530,"Continent":"K55","Bonus":6,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570064Z"},{"ID":8970,"Name":"Gravity","Points":9763,"X":419,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570064Z"},{"ID":8971,"Name":"- 285 -","Points":10000,"X":519,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570065Z"},{"ID":8972,"Name":"Jaaa","Points":10479,"X":580,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570065Z"},{"ID":8973,"Name":"023","Points":9901,"X":562,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570065Z"},{"ID":8974,"Name":"Teatr","Points":9794,"X":436,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570065Z"},{"ID":8975,"Name":"001 Hello Moto","Points":10001,"X":595,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570066Z"},{"ID":8976,"Name":"Wioska barbarzyƄska","Points":10285,"X":426,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570066Z"},{"ID":8977,"Name":"017","Points":10019,"X":587,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570066Z"},{"ID":8978,"Name":"Gravity","Points":9500,"X":417,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570066Z"},{"ID":8979,"Name":"C001","Points":10203,"X":573,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570067Z"},{"ID":8980,"Name":"ZasiedmiogĂłrogrĂłd","Points":7011,"X":544,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570067Z"},{"ID":8981,"Name":"Erebor","Points":10471,"X":500,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570067Z"},{"ID":8982,"Name":"[A]_[050] Dejv.oldplyr","Points":10231,"X":406,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570067Z"},{"ID":8983,"Name":"CALL 1002","Points":10544,"X":552,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570067Z"},{"ID":8984,"Name":"Teatr","Points":10282,"X":430,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570068Z"},{"ID":8985,"Name":"Wioska barbarzyƄska","Points":5858,"X":403,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570068Z"},{"ID":8986,"Name":"[102]","Points":9966,"X":566,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570068Z"},{"ID":8987,"Name":"Wioska 0030","Points":10210,"X":406,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570068Z"},{"ID":8988,"Name":"Batory","Points":10495,"X":501,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570069Z"},{"ID":8989,"Name":"072","Points":10203,"X":550,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570069Z"},{"ID":8990,"Name":"Jaaa","Points":10475,"X":583,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570069Z"},{"ID":8991,"Name":".achim.","Points":10311,"X":531,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570069Z"},{"ID":8992,"Name":"!Mew","Points":9968,"X":582,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57007Z"},{"ID":8993,"Name":".achim.","Points":10273,"X":512,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57007Z"},{"ID":8994,"Name":"KIELBA 135","Points":9668,"X":431,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57007Z"},{"ID":8996,"Name":"Wioska barbarzyƄska","Points":10285,"X":426,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57007Z"},{"ID":8997,"Name":"009","Points":10019,"X":585,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570071Z"},{"ID":8998,"Name":"KARTAGINA ..3","Points":6817,"X":456,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570071Z"},{"ID":8999,"Name":"0204","Points":10216,"X":407,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570071Z"},{"ID":9000,"Name":"Gravity","Points":9539,"X":404,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570071Z"},{"ID":9001,"Name":"Daleko 016","Points":7777,"X":481,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570071Z"},{"ID":9002,"Name":"083 MEHEHE 6","Points":10019,"X":465,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570072Z"},{"ID":9003,"Name":"KIELBA 042","Points":10495,"X":459,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570072Z"},{"ID":9004,"Name":"Wyspy Skellige","Points":9783,"X":496,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570072Z"},{"ID":9005,"Name":"Sparta_07","Points":9742,"X":498,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570072Z"},{"ID":9006,"Name":"161","Points":7950,"X":562,"Y":428,"Continent":"K45","Bonus":6,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570073Z"},{"ID":9007,"Name":"KARTAGINA ...","Points":8423,"X":457,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570073Z"},{"ID":9008,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":566,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570073Z"},{"ID":9009,"Name":"Gattacka","Points":9976,"X":594,"Y":476,"Continent":"K45","Bonus":4,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570073Z"},{"ID":9010,"Name":".032.","Points":10393,"X":490,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570074Z"},{"ID":9011,"Name":"KARTAGINA ..7","Points":10019,"X":454,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570074Z"},{"ID":9012,"Name":"A.019","Points":10000,"X":598,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570074Z"},{"ID":9014,"Name":".achim.","Points":10920,"X":537,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570074Z"},{"ID":9015,"Name":"032 Odense","Points":10160,"X":603,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570074Z"},{"ID":9016,"Name":"Teatr","Points":8510,"X":430,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570075Z"},{"ID":9017,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":574,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570075Z"},{"ID":9018,"Name":"056","Points":10129,"X":401,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570075Z"},{"ID":9019,"Name":"CALL 1044","Points":10311,"X":571,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570075Z"},{"ID":9020,"Name":"181","Points":2889,"X":624,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699726660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570076Z"},{"ID":9021,"Name":"Daleko 026","Points":8490,"X":480,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570076Z"},{"ID":9022,"Name":"Land of Fire","Points":9505,"X":394,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570076Z"},{"ID":9023,"Name":"0004 MzM","Points":9630,"X":602,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570076Z"},{"ID":9024,"Name":"Wioska barbarzyƄska","Points":7705,"X":567,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570077Z"},{"ID":9025,"Name":"001 Bybzi Bybzi","Points":9797,"X":572,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570077Z"},{"ID":9026,"Name":"024","Points":10495,"X":547,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570077Z"},{"ID":9027,"Name":"Wioska","Points":10178,"X":382,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570077Z"},{"ID":9028,"Name":"0055","Points":10971,"X":592,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570078Z"},{"ID":9029,"Name":"Nowa Nadzieja 7","Points":6380,"X":502,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570078Z"},{"ID":9030,"Name":"0008","Points":11130,"X":530,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570078Z"},{"ID":9031,"Name":"Wioska 0031","Points":8557,"X":405,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570078Z"},{"ID":9032,"Name":"Ostend","Points":9761,"X":423,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570079Z"},{"ID":9033,"Name":"022","Points":10019,"X":581,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570079Z"},{"ID":9034,"Name":"COUSINS00000","Points":10133,"X":490,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570079Z"},{"ID":9035,"Name":"Gravity","Points":9515,"X":419,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57008Z"},{"ID":9036,"Name":"007","Points":10019,"X":584,"Y":541,"Continent":"K55","Bonus":7,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57008Z"},{"ID":9037,"Name":"056","Points":10495,"X":545,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57008Z"},{"ID":9038,"Name":"SINGED X SZEF","Points":10178,"X":494,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57008Z"},{"ID":9039,"Name":"134","Points":10311,"X":559,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57008Z"},{"ID":9040,"Name":"Z02","Points":10495,"X":554,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570081Z"},{"ID":9041,"Name":"Kalifornia","Points":9462,"X":410,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570081Z"},{"ID":9042,"Name":".achim.","Points":10311,"X":522,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570081Z"},{"ID":9043,"Name":"Jaaa","Points":10495,"X":569,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570081Z"},{"ID":9044,"Name":".achim.","Points":10971,"X":539,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570082Z"},{"ID":9045,"Name":"Najlepszy sąsiad 012","Points":10273,"X":601,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570082Z"},{"ID":9046,"Name":".NA PRZECIWKO","Points":9860,"X":423,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570082Z"},{"ID":9047,"Name":"NOT?","Points":10042,"X":433,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570082Z"},{"ID":9048,"Name":"Lord Arsey KING","Points":8469,"X":577,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570083Z"},{"ID":9049,"Name":"Jaaa","Points":10487,"X":578,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570083Z"},{"ID":9050,"Name":"Pobozowisko","Points":10971,"X":414,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570083Z"},{"ID":9052,"Name":"Z08","Points":9966,"X":550,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570083Z"},{"ID":9053,"Name":"~092.","Points":10495,"X":495,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570084Z"},{"ID":9054,"Name":"Monetki","Points":10292,"X":475,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570084Z"},{"ID":9055,"Name":"Wioska barbarzyƄska","Points":10252,"X":591,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570084Z"},{"ID":9056,"Name":"0057","Points":10100,"X":592,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570084Z"},{"ID":9057,"Name":"Wioska","Points":9835,"X":587,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570085Z"},{"ID":9058,"Name":"032","Points":10129,"X":404,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570085Z"},{"ID":9059,"Name":"008","Points":9873,"X":412,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570085Z"},{"ID":9061,"Name":"+44 61 Lyon Part Dieu","Points":9841,"X":411,"Y":467,"Continent":"K44","Bonus":9,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570085Z"},{"ID":9062,"Name":"Fajna 082","Points":6847,"X":459,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570086Z"},{"ID":9063,"Name":"Darma","Points":9835,"X":428,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570086Z"},{"ID":9064,"Name":".:125:. Niangmen","Points":9899,"X":508,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570086Z"},{"ID":9065,"Name":"Szlachcic","Points":9721,"X":587,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570086Z"},{"ID":9066,"Name":"30003","Points":11003,"X":489,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570087Z"},{"ID":9067,"Name":".achim.","Points":10311,"X":533,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570087Z"},{"ID":9068,"Name":"#013","Points":9761,"X":534,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570087Z"},{"ID":9069,"Name":"#056","Points":9809,"X":522,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570087Z"},{"ID":9070,"Name":"#047","Points":9750,"X":527,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570088Z"},{"ID":9071,"Name":"Wioska Velsaniq 3","Points":7873,"X":490,"Y":597,"Continent":"K54","Bonus":3,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570088Z"},{"ID":9072,"Name":"Gattacka","Points":9835,"X":598,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570088Z"},{"ID":9073,"Name":"101","Points":10129,"X":408,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570088Z"},{"ID":9074,"Name":"0054 To juĆŒ koniecqqqqqqqqqqqqqq","Points":10078,"X":441,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570088Z"},{"ID":9075,"Name":"Wioska M01","Points":9722,"X":406,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570089Z"},{"ID":9076,"Name":"002","Points":9761,"X":396,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570089Z"},{"ID":9077,"Name":"082","Points":10490,"X":589,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570089Z"},{"ID":9078,"Name":"Gravity","Points":9515,"X":420,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570089Z"},{"ID":9079,"Name":"Sector 7","Points":10019,"X":509,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57009Z"},{"ID":9080,"Name":"CALL 1025","Points":10311,"X":563,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57009Z"},{"ID":9081,"Name":"-15-","Points":10551,"X":591,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57009Z"},{"ID":9082,"Name":"KARTAGINA ..8","Points":9770,"X":453,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57009Z"},{"ID":9083,"Name":"A.001","Points":10000,"X":601,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570091Z"},{"ID":9084,"Name":"Jaaa","Points":10441,"X":584,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570091Z"},{"ID":9085,"Name":"- 120 -","Points":10000,"X":538,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570091Z"},{"ID":9086,"Name":"020","Points":9873,"X":410,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570091Z"},{"ID":9087,"Name":"Monetki","Points":10311,"X":473,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570092Z"},{"ID":9088,"Name":"Jaaa","Points":10490,"X":576,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570092Z"},{"ID":9089,"Name":"Szlachcic","Points":10237,"X":453,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570092Z"},{"ID":9090,"Name":"Wioska8","Points":10208,"X":515,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570092Z"},{"ID":9091,"Name":"A043","Points":10294,"X":475,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570093Z"},{"ID":9092,"Name":"[A]_[041] Dejv.oldplyr","Points":10444,"X":409,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570093Z"},{"ID":9093,"Name":"BBB","Points":10083,"X":579,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570093Z"},{"ID":9094,"Name":"KIELBA 018","Points":10259,"X":444,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570093Z"},{"ID":9095,"Name":"132","Points":10311,"X":551,"Y":420,"Continent":"K45","Bonus":7,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570094Z"},{"ID":9096,"Name":"Suppi","Points":9825,"X":417,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570094Z"},{"ID":9097,"Name":"Gravity","Points":9505,"X":412,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570094Z"},{"ID":9098,"Name":"Dobranoc","Points":8930,"X":414,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570094Z"},{"ID":9099,"Name":"Wioska6,","Points":9883,"X":514,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570095Z"},{"ID":9100,"Name":"021 Horik","Points":10019,"X":580,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570095Z"},{"ID":9102,"Name":"Erebor 2","Points":10471,"X":502,"Y":593,"Continent":"K55","Bonus":7,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570095Z"},{"ID":9103,"Name":"Shire","Points":10160,"X":594,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570095Z"},{"ID":9104,"Name":"A017","Points":10223,"X":449,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570095Z"},{"ID":9105,"Name":"CALL 1003","Points":10311,"X":551,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570096Z"},{"ID":9107,"Name":"038","Points":10495,"X":609,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570096Z"},{"ID":9108,"Name":"Gattacka","Points":9747,"X":593,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570096Z"},{"ID":9109,"Name":"003 - Valencia","Points":10019,"X":597,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570096Z"},{"ID":9110,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":576,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570097Z"},{"ID":9111,"Name":"Monetki","Points":10297,"X":470,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570097Z"},{"ID":9112,"Name":"KIELBA 119","Points":10183,"X":430,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570097Z"},{"ID":9113,"Name":"para","Points":8155,"X":498,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570097Z"},{"ID":9114,"Name":"071","Points":10129,"X":405,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570098Z"},{"ID":9115,"Name":"Wioska barbarzyƄska","Points":10285,"X":423,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570098Z"},{"ID":9116,"Name":"~~LatającyHolender~~","Points":10160,"X":597,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570098Z"},{"ID":9117,"Name":"Majin Buu 010","Points":9761,"X":439,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570098Z"},{"ID":9119,"Name":"004 - Sevilla","Points":10019,"X":597,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570099Z"},{"ID":9120,"Name":"Kentin ufam Tobie","Points":10014,"X":407,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570099Z"},{"ID":9121,"Name":"Sparta_08","Points":9638,"X":497,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570099Z"},{"ID":9122,"Name":"013","Points":9873,"X":409,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570099Z"},{"ID":9123,"Name":"Blaviken","Points":9899,"X":489,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5701Z"},{"ID":9124,"Name":"Jehu_Kingdom_27_","Points":9993,"X":595,"Y":486,"Continent":"K45","Bonus":5,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5701Z"},{"ID":9125,"Name":"#055","Points":9809,"X":520,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5701Z"},{"ID":9126,"Name":"Oby..","Points":4557,"X":430,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5701Z"},{"ID":9127,"Name":"030.","Points":10362,"X":565,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5701Z"},{"ID":9128,"Name":"#007","Points":7411,"X":576,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570101Z"},{"ID":9129,"Name":"020","Points":10019,"X":583,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570101Z"},{"ID":9130,"Name":"029","Points":10495,"X":552,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570101Z"},{"ID":9131,"Name":"Monetki","Points":10294,"X":479,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570101Z"},{"ID":9132,"Name":". GRYZIESZ PIACH","Points":9761,"X":422,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570102Z"},{"ID":9133,"Name":"W 002 bombastik","Points":9239,"X":432,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570102Z"},{"ID":9134,"Name":"005 Vermilion City","Points":11109,"X":595,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570102Z"},{"ID":9135,"Name":".:016:. Kosa","Points":9745,"X":511,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570102Z"},{"ID":9136,"Name":"098","Points":10311,"X":547,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570103Z"},{"ID":9137,"Name":"003","Points":10203,"X":604,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570103Z"},{"ID":9138,"Name":"Gattacka","Points":10653,"X":593,"Y":486,"Continent":"K45","Bonus":9,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570103Z"},{"ID":9139,"Name":"Wodospady","Points":10375,"X":560,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570103Z"},{"ID":9140,"Name":"0209","Points":10083,"X":524,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570104Z"},{"ID":9141,"Name":"+44 61 Vaugneray","Points":9860,"X":414,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570104Z"},{"ID":9143,"Name":".:055:. Chillout","Points":6745,"X":504,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570104Z"},{"ID":9144,"Name":"0024","Points":9889,"X":596,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570104Z"},{"ID":9145,"Name":"Arkansass","Points":9761,"X":409,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570105Z"},{"ID":9146,"Name":"0009","Points":10252,"X":532,"Y":592,"Continent":"K55","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570105Z"},{"ID":9147,"Name":".achim.","Points":10311,"X":522,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570105Z"},{"ID":9148,"Name":"Wioska barbarzyƄska","Points":10285,"X":427,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570105Z"},{"ID":9149,"Name":"004","Points":10019,"X":588,"Y":541,"Continent":"K55","Bonus":6,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570106Z"},{"ID":9150,"Name":"10017","Points":11321,"X":527,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570106Z"},{"ID":9151,"Name":"Wioska barbarzyƄska","Points":7464,"X":574,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570106Z"},{"ID":9152,"Name":"024","Points":8399,"X":569,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570106Z"},{"ID":9153,"Name":"Taran","Points":9814,"X":543,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570107Z"},{"ID":9154,"Name":"----------5","Points":10346,"X":454,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570107Z"},{"ID":9155,"Name":"KIELBA 027","Points":10237,"X":440,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570107Z"},{"ID":9156,"Name":"0052 kA","Points":10083,"X":440,"Y":425,"Continent":"K44","Bonus":7,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570107Z"},{"ID":9157,"Name":"KIELBA 003","Points":10495,"X":447,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570108Z"},{"ID":9158,"Name":"Cristo de la Concordia","Points":4305,"X":428,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570108Z"},{"ID":9159,"Name":"Kentin ufam Tobie","Points":10000,"X":403,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570108Z"},{"ID":9160,"Name":"KIELBA 041","Points":10495,"X":459,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570108Z"},{"ID":9161,"Name":"AbacadA 021","Points":7344,"X":566,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570109Z"},{"ID":9162,"Name":"Z04","Points":10449,"X":555,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570109Z"},{"ID":9163,"Name":"#022","Points":9564,"X":531,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570109Z"},{"ID":9164,"Name":"Jaaa","Points":9986,"X":563,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570109Z"},{"ID":9165,"Name":"#048","Points":9750,"X":526,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57011Z"},{"ID":9166,"Name":"[041]","Points":10394,"X":590,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57011Z"},{"ID":9167,"Name":"025","Points":10495,"X":546,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57011Z"},{"ID":9168,"Name":"001","Points":9873,"X":411,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57011Z"},{"ID":9169,"Name":"#057","Points":9735,"X":521,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57011Z"},{"ID":9170,"Name":"0051 Zodiak","Points":9649,"X":437,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570111Z"},{"ID":9171,"Name":"Wioska barbarzyƄska","Points":5338,"X":402,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570111Z"},{"ID":9172,"Name":"033","Points":10129,"X":416,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570111Z"},{"ID":9173,"Name":"Wioska barbarzyƄska","Points":7601,"X":448,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570111Z"},{"ID":9174,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":407,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570112Z"},{"ID":9175,"Name":"021","Points":10019,"X":584,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570112Z"},{"ID":9176,"Name":"|031|","Points":9835,"X":569,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570112Z"},{"ID":9177,"Name":"Majin Buu 011","Points":9761,"X":438,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570112Z"},{"ID":9178,"Name":"Teatr","Points":9312,"X":433,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570113Z"},{"ID":9179,"Name":"008. Wioska Vampirka*","Points":10252,"X":593,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570113Z"},{"ID":9180,"Name":"Monetki","Points":10291,"X":478,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570113Z"},{"ID":9181,"Name":"Sparta_60","Points":9638,"X":496,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570113Z"},{"ID":9182,"Name":"#059","Points":9711,"X":517,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570114Z"},{"ID":9183,"Name":"067","Points":10444,"X":595,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570114Z"},{"ID":9184,"Name":"A#026#","Points":11949,"X":406,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570114Z"},{"ID":9185,"Name":"[A]_[045] Dejv.oldplyr","Points":10336,"X":407,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570114Z"},{"ID":9186,"Name":"KIELBA 101","Points":10220,"X":463,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570115Z"},{"ID":9187,"Name":"WK46","Points":2284,"X":460,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":1631690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570115Z"},{"ID":9188,"Name":"[A]_[052] Dejv.oldplyr","Points":10495,"X":405,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570115Z"},{"ID":9189,"Name":"Wioska kruszynka1","Points":10495,"X":432,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570115Z"},{"ID":9190,"Name":"kathare","Points":10362,"X":536,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570116Z"},{"ID":9191,"Name":".,.,","Points":9676,"X":403,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570116Z"},{"ID":9192,"Name":"[003] Te vras","Points":10300,"X":592,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570116Z"},{"ID":9193,"Name":"010","Points":9873,"X":410,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570116Z"},{"ID":9194,"Name":"Monetki","Points":10297,"X":477,"Y":406,"Continent":"K44","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570117Z"},{"ID":9195,"Name":"O:Aabadon A","Points":12154,"X":596,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570117Z"},{"ID":9196,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":575,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570117Z"},{"ID":9197,"Name":"Suppi","Points":9809,"X":411,"Y":534,"Continent":"K54","Bonus":2,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570117Z"},{"ID":9199,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":408,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570118Z"},{"ID":9200,"Name":"Village","Points":8370,"X":473,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570118Z"},{"ID":9201,"Name":"0021","Points":10301,"X":595,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570118Z"},{"ID":9202,"Name":"049","Points":10311,"X":547,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570118Z"},{"ID":9203,"Name":"Wioska Horst","Points":9870,"X":405,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570119Z"},{"ID":9204,"Name":"Popas10","Points":9808,"X":402,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570119Z"},{"ID":9205,"Name":"kathare","Points":10495,"X":549,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570119Z"},{"ID":9206,"Name":"048","Points":10495,"X":551,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570119Z"},{"ID":9207,"Name":".:024:. Motyka","Points":9761,"X":508,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570119Z"},{"ID":9208,"Name":"Sparta_04","Points":9638,"X":500,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57012Z"},{"ID":9209,"Name":".achim.","Points":10290,"X":526,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57012Z"},{"ID":9211,"Name":"(034)","Points":10072,"X":406,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57012Z"},{"ID":9212,"Name":"Jaaa","Points":10479,"X":578,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57012Z"},{"ID":9213,"Name":"Jehu_Kingdom_28_","Points":9993,"X":594,"Y":481,"Continent":"K45","Bonus":4,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570121Z"},{"ID":9214,"Name":"- 102 -","Points":10000,"X":544,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570121Z"},{"ID":9215,"Name":"026","Points":8429,"X":561,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570121Z"},{"ID":9216,"Name":"*001 Islandia","Points":9873,"X":388,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570121Z"},{"ID":9217,"Name":"Wioska 452","Points":10495,"X":588,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570122Z"},{"ID":9218,"Name":"PRO8L3M","Points":10178,"X":449,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570122Z"},{"ID":9219,"Name":"Monetki","Points":10294,"X":481,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570122Z"},{"ID":9220,"Name":"Village","Points":8087,"X":471,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570122Z"},{"ID":9221,"Name":"Szlachcic","Points":10237,"X":459,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570123Z"},{"ID":9222,"Name":"Napewno to nie jest off","Points":10495,"X":496,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570123Z"},{"ID":9223,"Name":"0012","Points":10168,"X":595,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570123Z"},{"ID":9224,"Name":"Wioska","Points":7837,"X":427,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570123Z"},{"ID":9225,"Name":".achim.","Points":10311,"X":534,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570123Z"},{"ID":9226,"Name":"Gravity","Points":9486,"X":420,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570124Z"},{"ID":9228,"Name":"091","Points":10495,"X":585,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570124Z"},{"ID":9229,"Name":"NOT?","Points":8478,"X":412,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570124Z"},{"ID":9230,"Name":"1.Indianapolis","Points":10094,"X":542,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570124Z"},{"ID":9231,"Name":"Z05","Points":10838,"X":555,"Y":578,"Continent":"K55","Bonus":1,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570125Z"},{"ID":9232,"Name":"0202","Points":10216,"X":403,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570125Z"},{"ID":9233,"Name":"NOT?","Points":9950,"X":413,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570125Z"},{"ID":9234,"Name":"South K35","Points":10042,"X":564,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570126Z"},{"ID":9235,"Name":"BBB","Points":7624,"X":579,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570126Z"},{"ID":9236,"Name":"005","Points":10495,"X":596,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570126Z"},{"ID":9237,"Name":"0201","Points":10216,"X":405,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570126Z"},{"ID":9238,"Name":"s181eo31","Points":10611,"X":383,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570126Z"},{"ID":9239,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":577,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570127Z"},{"ID":9240,"Name":"Wioska barbarzyƄska","Points":7024,"X":569,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570127Z"},{"ID":9241,"Name":"00505 CalciFord","Points":9942,"X":433,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570127Z"},{"ID":9242,"Name":"Gravity","Points":9498,"X":417,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570127Z"},{"ID":9243,"Name":"Monetki","Points":9816,"X":476,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570128Z"},{"ID":9244,"Name":"K34 - [017] Before Land","Points":10290,"X":447,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570128Z"},{"ID":9245,"Name":"Szlachcic","Points":10237,"X":463,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570128Z"},{"ID":9247,"Name":"Sparta_10","Points":9638,"X":495,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570128Z"},{"ID":9248,"Name":"KIELBA 050","Points":10247,"X":454,"Y":586,"Continent":"K54","Bonus":6,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570129Z"},{"ID":9249,"Name":"102","Points":10129,"X":406,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570129Z"},{"ID":9250,"Name":"022","Points":10495,"X":597,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570129Z"},{"ID":9251,"Name":"Gravity","Points":9499,"X":417,"Y":452,"Continent":"K44","Bonus":7,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570129Z"},{"ID":9252,"Name":"Jaaa","Points":10495,"X":578,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57013Z"},{"ID":9253,"Name":"OBB","Points":3455,"X":425,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57013Z"},{"ID":9254,"Name":"KIELBA 016","Points":10273,"X":441,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57013Z"},{"ID":9255,"Name":"CALL 1026","Points":10311,"X":562,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57013Z"},{"ID":9256,"Name":"P.031","Points":10503,"X":545,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.57013Z"},{"ID":9257,"Name":".achim.","Points":10971,"X":539,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570131Z"},{"ID":9258,"Name":"0056 Wioska 1","Points":10083,"X":440,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570131Z"},{"ID":9259,"Name":"AAA","Points":9761,"X":509,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570131Z"},{"ID":9260,"Name":"111........","Points":8760,"X":476,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570131Z"},{"ID":9261,"Name":".achim.","Points":10311,"X":526,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570132Z"},{"ID":9262,"Name":"Wioska barbarzyƄska","Points":9835,"X":563,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570132Z"},{"ID":9263,"Name":"Gravity","Points":9499,"X":418,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570132Z"},{"ID":9264,"Name":"Kentin ufam Tobie","Points":10000,"X":403,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570132Z"},{"ID":9265,"Name":"1.Atlanta","Points":9980,"X":541,"Y":589,"Continent":"K55","Bonus":2,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570133Z"},{"ID":9266,"Name":"*00D1","Points":9041,"X":560,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570133Z"},{"ID":9267,"Name":"KIELBA 006","Points":10273,"X":443,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570133Z"},{"ID":9268,"Name":"Sparta_03","Points":9638,"X":501,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570133Z"},{"ID":9269,"Name":"~044.","Points":10495,"X":488,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570134Z"},{"ID":9270,"Name":"Avanti!","Points":9989,"X":380,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570134Z"},{"ID":9271,"Name":"AbacadA 002","Points":10189,"X":565,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570134Z"},{"ID":9272,"Name":".achim.","Points":10311,"X":517,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570134Z"},{"ID":9273,"Name":"A018","Points":10221,"X":447,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570134Z"},{"ID":9274,"Name":"05 | Zalesie","Points":9408,"X":542,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":849002091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570135Z"},{"ID":9275,"Name":"ADEN","Points":10167,"X":564,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570135Z"},{"ID":9276,"Name":"083","Points":9601,"X":595,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570135Z"},{"ID":9277,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":582,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570135Z"},{"ID":9278,"Name":"Teatr","Points":10076,"X":432,"Y":569,"Continent":"K54","Bonus":9,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570136Z"},{"ID":9279,"Name":"Monetki","Points":10311,"X":469,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.570136Z"},{"ID":9280,"Name":"KIELBA 009","Points":10273,"X":446,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599611Z"},{"ID":9281,"Name":"- 280 -","Points":10000,"X":518,"Y":596,"Continent":"K55","Bonus":6,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599614Z"},{"ID":9282,"Name":"A020","Points":10221,"X":450,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599614Z"},{"ID":9283,"Name":"011. Wioska Mucharadza","Points":10252,"X":593,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599615Z"},{"ID":9284,"Name":"Bagdad","Points":10679,"X":468,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599615Z"},{"ID":9285,"Name":"-012- opresji wytaraskać","Points":10481,"X":457,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599616Z"},{"ID":9286,"Name":"[006] Ubiti","Points":10223,"X":590,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599617Z"},{"ID":9287,"Name":"004","Points":10495,"X":598,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599618Z"},{"ID":9288,"Name":"lady","Points":9045,"X":481,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599624Z"},{"ID":9289,"Name":"granica wyobrazni","Points":9818,"X":559,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599625Z"},{"ID":9290,"Name":"A022","Points":10226,"X":447,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599626Z"},{"ID":9291,"Name":"A062","Points":8556,"X":504,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599626Z"},{"ID":9292,"Name":"Domek 7","Points":9761,"X":559,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599627Z"},{"ID":9293,"Name":"-011- Yo, nie mogę się z","Points":10479,"X":457,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599627Z"},{"ID":9294,"Name":"Szlachcic","Points":10237,"X":462,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599628Z"},{"ID":9295,"Name":"kathare","Points":10362,"X":548,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59963Z"},{"ID":9296,"Name":"Jaaa","Points":10478,"X":581,"Y":554,"Continent":"K55","Bonus":5,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59963Z"},{"ID":9297,"Name":"- 321 -","Points":9147,"X":532,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599631Z"},{"ID":9298,"Name":"00561","Points":8687,"X":438,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599632Z"},{"ID":9299,"Name":"Samotna GĂłra","Points":10019,"X":534,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599632Z"},{"ID":9300,"Name":"018","Points":10495,"X":557,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599633Z"},{"ID":9301,"Name":".achim.","Points":10311,"X":527,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599634Z"},{"ID":9302,"Name":"Szlachcic","Points":10237,"X":461,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599634Z"},{"ID":9303,"Name":"0210","Points":10083,"X":524,"Y":593,"Continent":"K55","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599635Z"},{"ID":9304,"Name":"041","Points":9761,"X":490,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599636Z"},{"ID":9305,"Name":"Wioska 0003","Points":10311,"X":399,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599637Z"},{"ID":9306,"Name":"027 Herman Melville","Points":5952,"X":590,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599638Z"},{"ID":9307,"Name":"014. ALFI","Points":2999,"X":474,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599638Z"},{"ID":9308,"Name":"Jaaa","Points":10484,"X":581,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599639Z"},{"ID":9310,"Name":"G004","Points":10506,"X":431,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599639Z"},{"ID":9312,"Name":".achim.","Points":10311,"X":530,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59964Z"},{"ID":9313,"Name":"Witam w wietnamie","Points":10008,"X":416,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599641Z"},{"ID":9314,"Name":"+44 61 Villeurbanne Grandclement","Points":9841,"X":412,"Y":462,"Continent":"K44","Bonus":8,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599642Z"},{"ID":9315,"Name":"F051","Points":8902,"X":490,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599643Z"},{"ID":9316,"Name":"KIELBA 114","Points":8301,"X":430,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599643Z"},{"ID":9317,"Name":"Wioska barbarzyƄska","Points":9835,"X":488,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599644Z"},{"ID":9318,"Name":"A#025#","Points":11951,"X":407,"Y":478,"Continent":"K44","Bonus":7,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599645Z"},{"ID":9319,"Name":"- 313 -","Points":9454,"X":536,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599646Z"},{"ID":9320,"Name":"Wioska barbarzyƄska","Points":9994,"X":576,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599647Z"},{"ID":9321,"Name":"075","Points":10161,"X":591,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599647Z"},{"ID":9322,"Name":"B09","Points":9761,"X":502,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599648Z"},{"ID":9323,"Name":"022","Points":8426,"X":608,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599648Z"},{"ID":9324,"Name":"Monetki","Points":10294,"X":469,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599649Z"},{"ID":9326,"Name":"B16","Points":9825,"X":499,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59965Z"},{"ID":9327,"Name":"Gravity","Points":9505,"X":416,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59965Z"},{"ID":9328,"Name":"084","Points":9024,"X":587,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599651Z"},{"ID":9330,"Name":"Teatr","Points":10490,"X":431,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599652Z"},{"ID":9332,"Name":".Intouchables","Points":10008,"X":418,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599653Z"},{"ID":9333,"Name":"NOT","Points":10042,"X":420,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599653Z"},{"ID":9334,"Name":"ladyanima","Points":9761,"X":514,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599654Z"},{"ID":9335,"Name":"Lord Arsey KING","Points":10285,"X":594,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599655Z"},{"ID":9336,"Name":"009 Syracuse","Points":9761,"X":441,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599655Z"},{"ID":9337,"Name":"#0091","Points":10495,"X":509,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599656Z"},{"ID":9338,"Name":"Monetki","Points":10292,"X":469,"Y":408,"Continent":"K44","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599657Z"},{"ID":9339,"Name":"(012)","Points":10149,"X":408,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599657Z"},{"ID":9340,"Name":"016","Points":9741,"X":549,"Y":582,"Continent":"K55","Bonus":4,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599658Z"},{"ID":9341,"Name":"#061","Points":9819,"X":520,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599658Z"},{"ID":9342,"Name":"0012","Points":10252,"X":522,"Y":595,"Continent":"K55","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599659Z"},{"ID":9343,"Name":".achim.","Points":10311,"X":537,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599659Z"},{"ID":9344,"Name":"-014- ciągle chcesz mnie gƂaskać","Points":10479,"X":456,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59966Z"},{"ID":9346,"Name":"Wioska barbarzyƄska","Points":9051,"X":443,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599661Z"},{"ID":9347,"Name":"Szlachcic","Points":10237,"X":457,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599662Z"},{"ID":9348,"Name":"00502","Points":8732,"X":434,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599663Z"},{"ID":9349,"Name":"Wioska5","Points":10212,"X":509,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599663Z"},{"ID":9350,"Name":"NOT?","Points":10042,"X":411,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599664Z"},{"ID":9351,"Name":"Ataturk Mask","Points":2578,"X":425,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599665Z"},{"ID":9352,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":565,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599665Z"},{"ID":9353,"Name":"Popas6","Points":9816,"X":403,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599666Z"},{"ID":9354,"Name":"Dobranoc","Points":10083,"X":415,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599667Z"},{"ID":9355,"Name":"030","Points":10346,"X":585,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599668Z"},{"ID":9356,"Name":"Polania 001","Points":9415,"X":541,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599669Z"},{"ID":9357,"Name":"Astana","Points":10285,"X":422,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59967Z"},{"ID":9358,"Name":"BBB","Points":6926,"X":581,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59967Z"},{"ID":9359,"Name":"Monetki","Points":10292,"X":477,"Y":404,"Continent":"K44","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599671Z"},{"ID":9360,"Name":"BBB","Points":8195,"X":582,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599671Z"},{"ID":9361,"Name":"BBB","Points":6396,"X":556,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599672Z"},{"ID":9362,"Name":"137","Points":10311,"X":565,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599674Z"},{"ID":9363,"Name":"Szlachcic 019","Points":9338,"X":590,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599674Z"},{"ID":9364,"Name":"Wioska M.01","Points":8565,"X":404,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599675Z"},{"ID":9365,"Name":"Wioska barbarzyƄska","Points":10285,"X":422,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599676Z"},{"ID":9366,"Name":"AbacadA 023","Points":5329,"X":560,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599676Z"},{"ID":9367,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":406,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599677Z"},{"ID":9368,"Name":"BBB","Points":7592,"X":553,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599677Z"},{"ID":9369,"Name":"0002","Points":10301,"X":597,"Y":497,"Continent":"K45","Bonus":8,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599678Z"},{"ID":9370,"Name":"BoOmBaa..","Points":7251,"X":443,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599679Z"},{"ID":9371,"Name":"KIELBA 052","Points":10290,"X":454,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59968Z"},{"ID":9372,"Name":"[040]","Points":10392,"X":592,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59968Z"},{"ID":9373,"Name":".achim.","Points":10598,"X":536,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599681Z"},{"ID":9374,"Name":"Wioska 0008","Points":10185,"X":402,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599682Z"},{"ID":9375,"Name":"[038]","Points":10068,"X":593,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599682Z"},{"ID":9376,"Name":"o3pO","Points":9370,"X":442,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599683Z"},{"ID":9377,"Name":"Sector 7Slums Area","Points":10083,"X":512,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599684Z"},{"ID":9378,"Name":"0053 kA1","Points":10430,"X":441,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599685Z"},{"ID":9379,"Name":".achim.","Points":10311,"X":520,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599686Z"},{"ID":9380,"Name":"0000","Points":10160,"X":552,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599687Z"},{"ID":9381,"Name":"Z01","Points":10346,"X":555,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599687Z"},{"ID":9382,"Name":"Sparta_12","Points":9638,"X":496,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599688Z"},{"ID":9383,"Name":"0004. B - Teirm","Points":9761,"X":595,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599688Z"},{"ID":9384,"Name":"QƂosek","Points":9994,"X":419,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599689Z"},{"ID":9385,"Name":"Szlachcic","Points":10237,"X":456,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59969Z"},{"ID":9386,"Name":"Monetki","Points":10295,"X":469,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59969Z"},{"ID":9387,"Name":"Wioska15","Points":8804,"X":620,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599691Z"},{"ID":9388,"Name":"1.Detroit","Points":9980,"X":551,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599692Z"},{"ID":9389,"Name":"[A]_[043] Dejv.oldplyr","Points":10444,"X":407,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599693Z"},{"ID":9390,"Name":"Gravity","Points":9505,"X":415,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599693Z"},{"ID":9391,"Name":"068","Points":10495,"X":587,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599694Z"},{"ID":9392,"Name":"#054","Points":10393,"X":476,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599696Z"},{"ID":9393,"Name":"Witam w wietnamie","Points":10008,"X":421,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599697Z"},{"ID":9394,"Name":"004","Points":10495,"X":556,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599697Z"},{"ID":9395,"Name":"Gravity","Points":9506,"X":415,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599698Z"},{"ID":9396,"Name":"- 286 -","Points":10000,"X":517,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599699Z"},{"ID":9397,"Name":"Wioska4,","Points":10221,"X":492,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5997Z"},{"ID":9398,"Name":"Suppi","Points":10237,"X":413,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5997Z"},{"ID":9399,"Name":"[031] Kwica YoU","Points":10019,"X":597,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599702Z"},{"ID":9400,"Name":"013","Points":9761,"X":440,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599702Z"},{"ID":9401,"Name":"A023","Points":10229,"X":451,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599703Z"},{"ID":9402,"Name":"Monetki","Points":10291,"X":478,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599704Z"},{"ID":9403,"Name":"NiĆŒnie Rysy","Points":9580,"X":408,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599704Z"},{"ID":9404,"Name":"CHW#051","Points":9315,"X":481,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599705Z"},{"ID":9405,"Name":"020 Wioska","Points":10495,"X":619,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599706Z"},{"ID":9406,"Name":"A 007.","Points":9980,"X":438,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599707Z"},{"ID":9407,"Name":"NOT?","Points":9811,"X":427,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599708Z"},{"ID":9408,"Name":"KIELBA 057","Points":10273,"X":462,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599709Z"},{"ID":9409,"Name":"063 |","Points":10160,"X":545,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599709Z"},{"ID":9410,"Name":"Jehu_Kingdom_06_","Points":9993,"X":593,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59971Z"},{"ID":9411,"Name":"- 317 -","Points":10000,"X":533,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599711Z"},{"ID":9412,"Name":"0350","Points":10019,"X":444,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599711Z"},{"ID":9413,"Name":"Z09","Points":10144,"X":550,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599712Z"},{"ID":9414,"Name":"Tczew","Points":9835,"X":429,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599713Z"},{"ID":9416,"Name":"Jaaa","Points":10478,"X":579,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599714Z"},{"ID":9417,"Name":"Jaaa","Points":10955,"X":570,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599714Z"},{"ID":9418,"Name":"B10","Points":9737,"X":505,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599715Z"},{"ID":9419,"Name":"001","Points":10636,"X":564,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599716Z"},{"ID":9420,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":571,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599716Z"},{"ID":9421,"Name":"- 287 -","Points":10000,"X":519,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599717Z"},{"ID":9422,"Name":"WesoƂych ƚwiąt","Points":9994,"X":585,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599718Z"},{"ID":9423,"Name":"Gattacka","Points":9835,"X":596,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599719Z"},{"ID":9424,"Name":"Wioska Sekou","Points":8723,"X":607,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59972Z"},{"ID":9425,"Name":"Jaaa","Points":10478,"X":569,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59972Z"},{"ID":9426,"Name":"Nowa Nadzieja 3","Points":9797,"X":495,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599721Z"},{"ID":9427,"Name":"KIELBA 063","Points":10362,"X":462,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599722Z"},{"ID":9428,"Name":"032","Points":10217,"X":404,"Y":492,"Continent":"K44","Bonus":9,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599722Z"},{"ID":9429,"Name":"U Patryka","Points":10295,"X":542,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599722Z"},{"ID":9430,"Name":"Wioska barbarzyƄska","Points":7602,"X":572,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599724Z"},{"ID":9431,"Name":"~~LatającyHolender~~","Points":10160,"X":595,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599724Z"},{"ID":9432,"Name":"K44 x012","Points":9636,"X":445,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599725Z"},{"ID":9433,"Name":"BBB","Points":7116,"X":581,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599725Z"},{"ID":9434,"Name":"A 010.","Points":10218,"X":438,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599727Z"},{"ID":9435,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":405,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599727Z"},{"ID":9436,"Name":"0211","Points":10019,"X":526,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599728Z"},{"ID":9437,"Name":"AbacadA 010","Points":9788,"X":562,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599728Z"},{"ID":9438,"Name":"NOT","Points":10042,"X":424,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59973Z"},{"ID":9439,"Name":"Napewno to nie jest off","Points":9186,"X":490,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599731Z"},{"ID":9440,"Name":".Cwajka Fans","Points":10495,"X":500,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599731Z"},{"ID":9441,"Name":"- 282 -","Points":10000,"X":518,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599732Z"},{"ID":9442,"Name":"001","Points":2148,"X":475,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599733Z"},{"ID":9443,"Name":"Jaaa","Points":10162,"X":582,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599734Z"},{"ID":9444,"Name":"Domek 5","Points":9814,"X":558,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599734Z"},{"ID":9445,"Name":"COUSINS","Points":9596,"X":484,"Y":594,"Continent":"K54","Bonus":9,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599735Z"},{"ID":9446,"Name":"F081","Points":8944,"X":488,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599736Z"},{"ID":9447,"Name":"006","Points":9873,"X":410,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599737Z"},{"ID":9448,"Name":"Wioska REXMUNDI","Points":10004,"X":491,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599738Z"},{"ID":9449,"Name":"Jaaa","Points":10484,"X":585,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599739Z"},{"ID":9450,"Name":"0622","Points":10495,"X":550,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59974Z"},{"ID":9451,"Name":"Winter is coming","Points":10311,"X":511,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59974Z"},{"ID":9453,"Name":"052","Points":10495,"X":555,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599741Z"},{"ID":9454,"Name":"Gravity","Points":9505,"X":413,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599743Z"},{"ID":9455,"Name":"Wioska 455","Points":10495,"X":591,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599743Z"},{"ID":9456,"Name":".:051:. Chillout","Points":7240,"X":502,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599744Z"},{"ID":9457,"Name":"A.011","Points":10495,"X":409,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599745Z"},{"ID":9458,"Name":"CALL 988","Points":10495,"X":560,"Y":577,"Continent":"K55","Bonus":8,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599745Z"},{"ID":9460,"Name":"AbacadA 006","Points":10030,"X":563,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599746Z"},{"ID":9461,"Name":"West 03","Points":9819,"X":595,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599747Z"},{"ID":9462,"Name":"Wioska barbarzyƄska","Points":1093,"X":426,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599747Z"},{"ID":9463,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":402,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599749Z"},{"ID":9464,"Name":"+44 61 Bergues","Points":9844,"X":411,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599749Z"},{"ID":9465,"Name":"Winter is coming","Points":10068,"X":455,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59975Z"},{"ID":9466,"Name":"Wioska 0015","Points":10196,"X":404,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599751Z"},{"ID":9467,"Name":"057","Points":10495,"X":544,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599751Z"},{"ID":9468,"Name":"Szlachcic","Points":10237,"X":451,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599752Z"},{"ID":9469,"Name":"Wioska barbarzyƄska","Points":10285,"X":425,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599753Z"},{"ID":9470,"Name":"Wioska barbarzyƄska","Points":9744,"X":441,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599754Z"},{"ID":9471,"Name":"KIELBA 019","Points":10259,"X":442,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599755Z"},{"ID":9472,"Name":"Wioska","Points":1997,"X":508,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":3895471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599755Z"},{"ID":9473,"Name":"017WDZ ZNÓW GOƚCI W TWOICH SNACH","Points":9867,"X":411,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599756Z"},{"ID":9474,"Name":"009 Nie caƂkiem zgodnie z planem","Points":9861,"X":493,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599756Z"},{"ID":9475,"Name":"0000010#","Points":10490,"X":436,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599757Z"},{"ID":9476,"Name":"0212","Points":10019,"X":532,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599757Z"},{"ID":9477,"Name":"KIELBA 021","Points":10495,"X":444,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599758Z"},{"ID":9478,"Name":"Winter is coming","Points":10311,"X":466,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59976Z"},{"ID":9479,"Name":"- 311 -","Points":10000,"X":531,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599761Z"},{"ID":9480,"Name":"BBB","Points":9752,"X":581,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599762Z"},{"ID":9481,"Name":"Wioska barbarzyƄska","Points":9835,"X":564,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599764Z"},{"ID":9482,"Name":"[A]_[031] Dejv.oldplyr","Points":10495,"X":403,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599765Z"},{"ID":9483,"Name":"ABADON B.A.D L.I.N.E","Points":11321,"X":594,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599766Z"},{"ID":9484,"Name":"005 - Zaragoza","Points":10019,"X":598,"Y":487,"Continent":"K45","Bonus":7,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599767Z"},{"ID":9485,"Name":"Quimon","Points":9976,"X":419,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599769Z"},{"ID":9486,"Name":"#063","Points":7824,"X":480,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599771Z"},{"ID":9487,"Name":"033","Points":10495,"X":554,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599772Z"},{"ID":9488,"Name":"Sector 7 Pillar","Points":10375,"X":515,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599773Z"},{"ID":9489,"Name":"Joms 043","Points":9535,"X":553,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599774Z"},{"ID":9490,"Name":".achim.","Points":10311,"X":532,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599775Z"},{"ID":9491,"Name":"[A]_[028] Dejv.oldplyr","Points":10495,"X":405,"Y":487,"Continent":"K44","Bonus":4,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599776Z"},{"ID":9492,"Name":"Yogi","Points":9903,"X":489,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599777Z"},{"ID":9493,"Name":"Adiyogi Shiva","Points":5720,"X":426,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599779Z"},{"ID":9494,"Name":"1.Memphis","Points":10016,"X":540,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599779Z"},{"ID":9495,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":593,"Y":535,"Continent":"K55","Bonus":5,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59978Z"},{"ID":9496,"Name":"AAA","Points":8567,"X":498,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599781Z"},{"ID":9497,"Name":"Wioska barbarzyƄska","Points":9689,"X":594,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599782Z"},{"ID":9498,"Name":"009","Points":10206,"X":384,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599784Z"},{"ID":9499,"Name":"BBB","Points":6543,"X":583,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599785Z"},{"ID":9500,"Name":"ChceszPokojuSzykujSięDoWojny","Points":12154,"X":467,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599787Z"},{"ID":9501,"Name":"0213","Points":10019,"X":524,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599788Z"},{"ID":9502,"Name":"Suppi","Points":9806,"X":411,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599789Z"},{"ID":9503,"Name":"076","Points":10097,"X":592,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599789Z"},{"ID":9504,"Name":"Szlachcic","Points":9637,"X":507,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59979Z"},{"ID":9505,"Name":"Wioska","Points":8969,"X":596,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599791Z"},{"ID":9506,"Name":"Wioska Inko","Points":9744,"X":545,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599792Z"},{"ID":9507,"Name":"043","Points":8724,"X":551,"Y":415,"Continent":"K45","Bonus":6,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599793Z"},{"ID":9508,"Name":"FAKE OR OFF","Points":9963,"X":440,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599795Z"},{"ID":9509,"Name":"AbacadA 008","Points":10495,"X":577,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599796Z"},{"ID":9510,"Name":"022","Points":10166,"X":477,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599797Z"},{"ID":9511,"Name":"Sparta_77","Points":9638,"X":498,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599799Z"},{"ID":9512,"Name":"NOT?","Points":10042,"X":404,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.5998Z"},{"ID":9513,"Name":"045o","Points":11558,"X":445,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599801Z"},{"ID":9514,"Name":"087 MEHEHE","Points":10019,"X":488,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599802Z"},{"ID":9515,"Name":"025 co ja tu robie","Points":10679,"X":599,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599926Z"},{"ID":9516,"Name":"KIELBA 017","Points":10297,"X":441,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599929Z"},{"ID":9517,"Name":"Ɓakomy majk","Points":9860,"X":472,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59993Z"},{"ID":9518,"Name":"Wioska barbarzyƄska","Points":6187,"X":572,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599932Z"},{"ID":9519,"Name":"Jaaa","Points":10479,"X":575,"Y":562,"Continent":"K55","Bonus":9,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599934Z"},{"ID":9520,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":397,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599935Z"},{"ID":9521,"Name":".achim.","Points":10311,"X":529,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599937Z"},{"ID":9522,"Name":"Wioska 006","Points":10081,"X":403,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599938Z"},{"ID":9523,"Name":"Majin Buu 003","Points":9761,"X":438,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599945Z"},{"ID":9524,"Name":"Nowa Nadzieja 2","Points":9301,"X":490,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599946Z"},{"ID":9525,"Name":"#043","Points":10005,"X":537,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599948Z"},{"ID":9526,"Name":"Pf Konfederacja p","Points":9938,"X":488,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59995Z"},{"ID":9527,"Name":"Stage group D 2","Points":9960,"X":477,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599951Z"},{"ID":9528,"Name":"[A]_[025] Dejv.oldplyr","Points":10273,"X":406,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599953Z"},{"ID":9529,"Name":"0000014!","Points":10130,"X":446,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599954Z"},{"ID":9531,"Name":"B01","Points":9761,"X":500,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599958Z"},{"ID":9532,"Name":"Szlachcic","Points":10237,"X":453,"Y":413,"Continent":"K44","Bonus":3,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59996Z"},{"ID":9533,"Name":"010 Powolutku","Points":9925,"X":506,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599962Z"},{"ID":9534,"Name":"Wioska barbarzyƄska","Points":2843,"X":427,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599963Z"},{"ID":9535,"Name":"#0090","Points":10495,"X":510,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599965Z"},{"ID":9536,"Name":"009","Points":9873,"X":411,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599967Z"},{"ID":9537,"Name":".achim.","Points":10311,"X":518,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599969Z"},{"ID":9538,"Name":"010","Points":10495,"X":438,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.59997Z"},{"ID":9539,"Name":"AbacadA 003","Points":10273,"X":566,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599974Z"},{"ID":9540,"Name":"~~LatającyHolender~~","Points":9835,"X":596,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599976Z"},{"ID":9541,"Name":".achim.","Points":10311,"X":523,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599978Z"},{"ID":9542,"Name":"066","Points":10129,"X":404,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599979Z"},{"ID":9543,"Name":".achim.","Points":10311,"X":527,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599981Z"},{"ID":9544,"Name":"Wioska","Points":10362,"X":589,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599982Z"},{"ID":9545,"Name":"KIELBA 022","Points":10262,"X":445,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599984Z"},{"ID":9546,"Name":"- 322 -","Points":10000,"X":516,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.599996Z"},{"ID":9547,"Name":".achim.","Points":10311,"X":528,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6Z"},{"ID":9548,"Name":"B20","Points":9801,"X":497,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600001Z"},{"ID":9549,"Name":"010. Punkty Topce","Points":7789,"X":482,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600003Z"},{"ID":9550,"Name":"Popas5","Points":9752,"X":404,"Y":500,"Continent":"K54","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600004Z"},{"ID":9551,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":571,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600006Z"},{"ID":9552,"Name":"Wrzosowa","Points":10362,"X":488,"Y":401,"Continent":"K44","Bonus":8,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600008Z"},{"ID":9553,"Name":"Sinope","Points":8903,"X":423,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600009Z"},{"ID":9554,"Name":"Wioska 0014","Points":10059,"X":404,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600013Z"},{"ID":9555,"Name":"SsSs","Points":8812,"X":402,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600015Z"},{"ID":9556,"Name":"Wioska","Points":10228,"X":504,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600017Z"},{"ID":9557,"Name":"Winter is coming","Points":9234,"X":464,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600019Z"},{"ID":9558,"Name":"Gravity","Points":9505,"X":413,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60002Z"},{"ID":9559,"Name":"Daleko 018","Points":7370,"X":481,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600022Z"},{"ID":9560,"Name":"018 MASZ KOLEJNY TAKT","Points":9873,"X":411,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600023Z"},{"ID":9561,"Name":".achim.","Points":10634,"X":543,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600025Z"},{"ID":9562,"Name":"Gravity","Points":9494,"X":411,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600029Z"},{"ID":9563,"Name":"- 268 -","Points":10000,"X":533,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60003Z"},{"ID":9564,"Name":"Sparta_13","Points":9638,"X":498,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600032Z"},{"ID":9565,"Name":"A024","Points":10216,"X":446,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600033Z"},{"ID":9566,"Name":".achim.","Points":10311,"X":521,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600035Z"},{"ID":9567,"Name":"Monetki","Points":9623,"X":474,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600036Z"},{"ID":9568,"Name":"022","Points":10495,"X":550,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600038Z"},{"ID":9569,"Name":"JaawmG P","Points":10019,"X":583,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600042Z"},{"ID":9570,"Name":"Leda","Points":8688,"X":422,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600044Z"},{"ID":9571,"Name":"009. Wioska Alstrem","Points":10252,"X":593,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600045Z"},{"ID":9572,"Name":"Kentin ufam Tobie","Points":10000,"X":401,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600047Z"},{"ID":9573,"Name":"092","Points":10129,"X":404,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600048Z"},{"ID":9574,"Name":"Domek 4","Points":9549,"X":556,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60005Z"},{"ID":9575,"Name":"Wioska 0032","Points":10154,"X":405,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600052Z"},{"ID":9576,"Name":"- 304 -","Points":10000,"X":536,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600053Z"},{"ID":9577,"Name":"#057","Points":10393,"X":480,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600057Z"},{"ID":9578,"Name":"0014","Points":10301,"X":597,"Y":494,"Continent":"K45","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600059Z"},{"ID":9579,"Name":"012. Wioska ruch135","Points":10252,"X":594,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600061Z"},{"ID":9580,"Name":"Teby_38","Points":9638,"X":484,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600072Z"},{"ID":9581,"Name":"Jaaa","Points":10484,"X":580,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600074Z"},{"ID":9582,"Name":"Gravity","Points":9579,"X":419,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600076Z"},{"ID":9583,"Name":"Wioska3","Points":10220,"X":507,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600077Z"},{"ID":9584,"Name":"|032|","Points":9835,"X":570,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600082Z"},{"ID":9585,"Name":"Pelplin","Points":9835,"X":430,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600084Z"},{"ID":9586,"Name":"[211]","Points":1887,"X":570,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600085Z"},{"ID":9587,"Name":"006. Rygjafylke","Points":10492,"X":426,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600087Z"},{"ID":9588,"Name":"Wioska barbarzyƄska","Points":3333,"X":426,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600088Z"},{"ID":9590,"Name":"- 114 -","Points":10000,"X":548,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60009Z"},{"ID":9591,"Name":"Z10","Points":10012,"X":555,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600092Z"},{"ID":9592,"Name":"Winter is coming","Points":9569,"X":478,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600094Z"},{"ID":9593,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":578,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600097Z"},{"ID":9594,"Name":"[A]_[007] Dejv.oldplyr","Points":10495,"X":394,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600099Z"},{"ID":9595,"Name":"Majin Buu 006","Points":9761,"X":434,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6001Z"},{"ID":9597,"Name":"Szlachcic","Points":10237,"X":467,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600102Z"},{"ID":9598,"Name":"Wioska1,","Points":9676,"X":504,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600103Z"},{"ID":9599,"Name":"AbacadA 011","Points":10273,"X":564,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600104Z"},{"ID":9600,"Name":"#062","Points":9809,"X":520,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600106Z"},{"ID":9601,"Name":"Winter is coming","Points":9835,"X":463,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60011Z"},{"ID":9602,"Name":"031","Points":10042,"X":401,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600112Z"},{"ID":9603,"Name":"HoƂopole","Points":9835,"X":485,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600113Z"},{"ID":9604,"Name":"BBB","Points":9751,"X":556,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600115Z"},{"ID":9605,"Name":".:032:. Chillout","Points":7635,"X":520,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600116Z"},{"ID":9606,"Name":"008","Points":10019,"X":587,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600117Z"},{"ID":9607,"Name":"- 105 -","Points":10000,"X":544,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600119Z"},{"ID":9608,"Name":"NOT","Points":10042,"X":421,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60012Z"},{"ID":9609,"Name":"Wioska barbarzyƄska","Points":9310,"X":577,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600125Z"},{"ID":9610,"Name":"KIELBA 121","Points":10252,"X":442,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600126Z"},{"ID":9612,"Name":"019","Points":10495,"X":553,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600127Z"},{"ID":9613,"Name":"AbacadA 005","Points":9742,"X":564,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600129Z"},{"ID":9614,"Name":"(030)","Points":9309,"X":407,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60013Z"},{"ID":9615,"Name":"KIELBA 116","Points":10237,"X":464,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600132Z"},{"ID":9616,"Name":"Tank 003","Points":9469,"X":401,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600133Z"},{"ID":9617,"Name":"Monetki","Points":10290,"X":480,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600137Z"},{"ID":9618,"Name":"#053","Points":10728,"X":488,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600138Z"},{"ID":9619,"Name":".achim.","Points":10311,"X":522,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600139Z"},{"ID":9620,"Name":"069","Points":10495,"X":597,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60015Z"},{"ID":9622,"Name":"Teby_36","Points":9638,"X":485,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600151Z"},{"ID":9623,"Name":"Winter is coming","Points":10311,"X":475,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600153Z"},{"ID":9624,"Name":"B12","Points":9596,"X":506,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600154Z"},{"ID":9625,"Name":"KIELBA 087","Points":10495,"X":456,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600155Z"},{"ID":9626,"Name":"0214","Points":10019,"X":522,"Y":597,"Continent":"K55","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600159Z"},{"ID":9627,"Name":".:099:. Niangmen","Points":10544,"X":503,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60016Z"},{"ID":9628,"Name":"(035)","Points":10143,"X":405,"Y":528,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600161Z"},{"ID":9629,"Name":"Suppi","Points":10487,"X":413,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600162Z"},{"ID":9630,"Name":"Monetki","Points":10311,"X":482,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600164Z"},{"ID":9631,"Name":"017","Points":10495,"X":551,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600165Z"},{"ID":9632,"Name":"Newbie","Points":10144,"X":558,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600166Z"},{"ID":9633,"Name":"~~LatającyHolender~~","Points":9786,"X":600,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600169Z"},{"ID":9634,"Name":"Joms 032","Points":10401,"X":533,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60017Z"},{"ID":9635,"Name":".achim.","Points":10311,"X":515,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600172Z"},{"ID":9636,"Name":"070 |","Points":10336,"X":543,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600173Z"},{"ID":9637,"Name":"Osada koczownikĂłw","Points":10311,"X":478,"Y":596,"Continent":"K54","Bonus":3,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600174Z"},{"ID":9638,"Name":"015 * Lady Porto *","Points":12154,"X":595,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600176Z"},{"ID":9639,"Name":"Wioska sznur","Points":8389,"X":403,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600177Z"},{"ID":9640,"Name":"Wioska M.04","Points":9215,"X":405,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600178Z"},{"ID":9641,"Name":"Czaruƛ","Points":10495,"X":573,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600181Z"},{"ID":9642,"Name":"HoƂopole","Points":10311,"X":488,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600183Z"},{"ID":9643,"Name":".achim.","Points":10311,"X":537,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600184Z"},{"ID":9644,"Name":"BBB","Points":5987,"X":583,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600185Z"},{"ID":9645,"Name":"[A]_[047] Dejv.oldplyr","Points":10495,"X":404,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600186Z"},{"ID":9646,"Name":"020","Points":10241,"X":589,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600187Z"},{"ID":9647,"Name":"O:Aabadon d","Points":12154,"X":593,"Y":478,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600188Z"},{"ID":9648,"Name":".achim.","Points":10311,"X":513,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60019Z"},{"ID":9649,"Name":"Wioska 0033","Points":8759,"X":404,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600191Z"},{"ID":9650,"Name":"Jehu_Kingdom_01_","Points":9993,"X":598,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600192Z"},{"ID":9651,"Name":"Wioska barbarzyƄska","Points":8210,"X":429,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600193Z"},{"ID":9652,"Name":"Executive Suite","Points":10495,"X":522,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600194Z"},{"ID":9653,"Name":"Winter is coming","Points":10268,"X":478,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600195Z"},{"ID":9654,"Name":"+44 62 Oye Plage","Points":9987,"X":427,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600196Z"},{"ID":9655,"Name":"Eukalade","Points":9357,"X":424,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600197Z"},{"ID":9656,"Name":"056. Isenstar","Points":10083,"X":589,"Y":540,"Continent":"K55","Bonus":8,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600199Z"},{"ID":9657,"Name":"Witam w wietnamie","Points":10083,"X":418,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6002Z"},{"ID":9658,"Name":"011 Myszy z dyszy","Points":10495,"X":589,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600201Z"},{"ID":9659,"Name":"Z11","Points":9966,"X":546,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600202Z"},{"ID":9660,"Name":"[036]","Points":10068,"X":593,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600203Z"},{"ID":9661,"Name":"(026)","Points":10144,"X":407,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600203Z"},{"ID":9662,"Name":"Jaaa","Points":10478,"X":584,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600204Z"},{"ID":9663,"Name":"Monetki","Points":10158,"X":477,"Y":405,"Continent":"K44","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600207Z"},{"ID":9664,"Name":"mehehe","Points":9744,"X":523,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600208Z"},{"ID":9665,"Name":"W.181/06","Points":10242,"X":613,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600209Z"},{"ID":9666,"Name":"Wioska barbarzyƄska","Points":10490,"X":409,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60021Z"},{"ID":9667,"Name":"#0096","Points":10495,"X":514,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60021Z"},{"ID":9668,"Name":"#054","Points":9735,"X":520,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600211Z"},{"ID":9669,"Name":"Dobranoc","Points":9118,"X":414,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600212Z"},{"ID":9670,"Name":"Dobranoc","Points":10252,"X":416,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600213Z"},{"ID":9671,"Name":"Szlachcic","Points":10237,"X":460,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600216Z"},{"ID":9672,"Name":"Monetki","Points":10291,"X":479,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60022Z"},{"ID":9673,"Name":"Wioska barbarzyƄska","Points":7500,"X":569,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600222Z"},{"ID":9674,"Name":"Sparta_14","Points":9638,"X":494,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600223Z"},{"ID":9675,"Name":"-008- Jestem kotem","Points":7362,"X":461,"Y":408,"Continent":"K44","Bonus":4,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600224Z"},{"ID":9676,"Name":"Wioska M...","Points":8483,"X":404,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600225Z"},{"ID":9677,"Name":"0000013#","Points":9793,"X":430,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600226Z"},{"ID":9678,"Name":"[A]_[035] Dejv.oldplyr","Points":10444,"X":405,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600228Z"},{"ID":9679,"Name":"#024","Points":10393,"X":486,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600231Z"},{"ID":9680,"Name":"Z12","Points":10343,"X":550,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600233Z"},{"ID":9681,"Name":"Gravity","Points":9496,"X":416,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600234Z"},{"ID":9682,"Name":"Wioska barbarzyƄska","Points":9223,"X":420,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600235Z"},{"ID":9683,"Name":"HoƂopole","Points":9835,"X":489,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600236Z"},{"ID":9684,"Name":"Jehu_Kingdom_23_","Points":9993,"X":597,"Y":509,"Continent":"K55","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600238Z"},{"ID":9687,"Name":"052","Points":10495,"X":595,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600239Z"},{"ID":9688,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":406,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600241Z"},{"ID":9689,"Name":"[028] Nuzudyti tave","Points":10057,"X":598,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600242Z"},{"ID":9690,"Name":"KIELBA 097","Points":10276,"X":463,"Y":592,"Continent":"K54","Bonus":1,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600243Z"},{"ID":9691,"Name":"Prosecco","Points":9878,"X":407,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600244Z"},{"ID":9692,"Name":"Ciasny wiesiek 222","Points":10495,"X":504,"Y":600,"Continent":"K65","Bonus":8,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600245Z"},{"ID":9693,"Name":"002","Points":5370,"X":467,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600246Z"},{"ID":9694,"Name":"A025","Points":10237,"X":451,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600247Z"},{"ID":9695,"Name":"012. Bastion","Points":10008,"X":417,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600248Z"},{"ID":9696,"Name":"Wioska barbarzyƄska","Points":10024,"X":481,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600251Z"},{"ID":9698,"Name":"koczownicza 03","Points":9572,"X":402,"Y":515,"Continent":"K54","Bonus":3,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600252Z"},{"ID":9699,"Name":"Wioska (016)","Points":9361,"X":598,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600253Z"},{"ID":9700,"Name":"Quasi","Points":5950,"X":418,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600255Z"},{"ID":9701,"Name":"Wioska barbarzyƄska","Points":9491,"X":568,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600255Z"},{"ID":9702,"Name":"z 028","Points":10317,"X":564,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600257Z"},{"ID":9703,"Name":"Gravity","Points":9489,"X":409,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600257Z"},{"ID":9704,"Name":"0215","Points":10019,"X":525,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60026Z"},{"ID":9705,"Name":"CALL 982","Points":10495,"X":560,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600261Z"},{"ID":9706,"Name":"AbacadA 007","Points":10273,"X":572,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600262Z"},{"ID":9707,"Name":"005- BrĂłdka moĆŒe hmmm","Points":6507,"X":455,"Y":410,"Continent":"K44","Bonus":4,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600263Z"},{"ID":9708,"Name":"024 Ciemna strona mocy","Points":6332,"X":590,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600264Z"},{"ID":9709,"Name":"Mzm04","Points":10252,"X":600,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600265Z"},{"ID":9710,"Name":"Gravity","Points":9502,"X":413,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600266Z"},{"ID":9712,"Name":"Wioska 0028","Points":9886,"X":402,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600267Z"},{"ID":9714,"Name":"#010","Points":9740,"X":538,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60027Z"},{"ID":9715,"Name":"Qumin","Points":9761,"X":419,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600271Z"},{"ID":9716,"Name":"CALL 1029","Points":10654,"X":577,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600272Z"},{"ID":9717,"Name":"CALL 1032","Points":10311,"X":572,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600273Z"},{"ID":9718,"Name":"Kulik 004","Points":7294,"X":402,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600274Z"},{"ID":9719,"Name":"Wioska myszka","Points":10047,"X":493,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600275Z"},{"ID":9720,"Name":"Wioska 0002","Points":9092,"X":406,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600276Z"},{"ID":9721,"Name":"xx 006. Bubu","Points":8960,"X":400,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600278Z"},{"ID":9722,"Name":"Winter is coming","Points":10365,"X":507,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600279Z"},{"ID":9723,"Name":"Szlachcic","Points":10237,"X":463,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60028Z"},{"ID":9724,"Name":"~~LatającyHolender~~","Points":9812,"X":601,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600281Z"},{"ID":9725,"Name":".achim.","Points":10109,"X":535,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600282Z"},{"ID":9726,"Name":"0000020#","Points":10140,"X":428,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600283Z"},{"ID":9727,"Name":"Joms 037","Points":5288,"X":533,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600284Z"},{"ID":9728,"Name":"004","Points":10495,"X":490,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600285Z"},{"ID":9729,"Name":"Cyk","Points":7022,"X":571,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600287Z"},{"ID":9730,"Name":"NOT","Points":10042,"X":420,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600288Z"},{"ID":9731,"Name":"Wioska 004","Points":9336,"X":414,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600289Z"},{"ID":9732,"Name":"Wioska","Points":10083,"X":586,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60029Z"},{"ID":9733,"Name":"Gravity","Points":9503,"X":415,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600291Z"},{"ID":9734,"Name":"[018] Tua Koj MONETY","Points":10221,"X":595,"Y":525,"Continent":"K55","Bonus":3,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600292Z"},{"ID":9735,"Name":"xx 008. Za kilka dolarĂłw więcej","Points":9372,"X":401,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600293Z"},{"ID":9736,"Name":"Z13","Points":10184,"X":551,"Y":582,"Continent":"K55","Bonus":7,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600296Z"},{"ID":9737,"Name":"014 - lista***","Points":10495,"X":443,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600296Z"},{"ID":9738,"Name":"#046","Points":9809,"X":523,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600297Z"},{"ID":9739,"Name":"Wioska barbarzyƄska","Points":8807,"X":421,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600298Z"},{"ID":9740,"Name":"Wioska 0016","Points":10157,"X":404,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600299Z"},{"ID":9741,"Name":"Napewno to nie jest off","Points":6833,"X":498,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6003Z"},{"ID":9742,"Name":"A#027#","Points":11951,"X":407,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600301Z"},{"ID":9743,"Name":"Gravity","Points":9491,"X":418,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600303Z"},{"ID":9744,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":571,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600307Z"},{"ID":9745,"Name":"VN Alexander the Great","Points":9771,"X":465,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600308Z"},{"ID":9747,"Name":"Szlachcic","Points":10237,"X":461,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600309Z"},{"ID":9748,"Name":"Kentin ufam Tobie","Points":10000,"X":402,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600311Z"},{"ID":9749,"Name":"106","Points":10311,"X":550,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600312Z"},{"ID":9750,"Name":"AAA","Points":9902,"X":494,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600313Z"},{"ID":9751,"Name":"Monetki","Points":10290,"X":471,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600315Z"},{"ID":9752,"Name":"0051 LZ","Points":10484,"X":437,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600317Z"},{"ID":9753,"Name":"Qled","Points":6325,"X":416,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600318Z"},{"ID":9754,"Name":"015 Gonzzollo","Points":9873,"X":407,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600319Z"},{"ID":9755,"Name":"Teatr","Points":10294,"X":433,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60032Z"},{"ID":9756,"Name":".achim.","Points":10311,"X":516,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600321Z"},{"ID":9757,"Name":"(009)","Points":10160,"X":405,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600323Z"},{"ID":9758,"Name":"094","Points":10495,"X":593,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600324Z"},{"ID":9759,"Name":"001.","Points":10104,"X":429,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600325Z"},{"ID":9760,"Name":"-007- Siemanko","Points":10479,"X":462,"Y":407,"Continent":"K44","Bonus":9,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600327Z"},{"ID":9761,"Name":"A 009.","Points":9631,"X":441,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600328Z"},{"ID":9762,"Name":"wioska","Points":9129,"X":451,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60033Z"},{"ID":9763,"Name":"013","Points":10479,"X":586,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600331Z"},{"ID":9764,"Name":"001","Points":4157,"X":425,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600332Z"},{"ID":9765,"Name":"Wish You Were Here","Points":7501,"X":587,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600333Z"},{"ID":9767,"Name":"KIELBA 020","Points":10273,"X":441,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600334Z"},{"ID":9768,"Name":"won zajente","Points":6720,"X":480,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":1782523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600337Z"},{"ID":9769,"Name":"Kentin ufam Tobie","Points":10000,"X":402,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600338Z"},{"ID":9770,"Name":"KIELBA 100","Points":10223,"X":463,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600339Z"},{"ID":9771,"Name":"CALL 1030","Points":10311,"X":573,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60034Z"},{"ID":9772,"Name":"x barbarzyƄska 009","Points":8649,"X":400,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600341Z"},{"ID":9773,"Name":"Teatr","Points":9984,"X":432,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600342Z"},{"ID":9774,"Name":"Wioska barbarzyƄska","Points":6700,"X":574,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600343Z"},{"ID":9775,"Name":"HoƂopole","Points":9899,"X":492,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600344Z"},{"ID":9776,"Name":"0022","Points":10058,"X":597,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600346Z"},{"ID":9777,"Name":"Szlachcic","Points":10237,"X":459,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600347Z"},{"ID":9778,"Name":"AAA","Points":9596,"X":510,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600349Z"},{"ID":9779,"Name":"Wioska (018)","Points":9342,"X":592,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60035Z"},{"ID":9780,"Name":"A026","Points":10221,"X":447,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600351Z"},{"ID":9781,"Name":"AbacadA 001","Points":10273,"X":563,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600352Z"},{"ID":9782,"Name":"Winter is coming","Points":8947,"X":470,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600353Z"},{"ID":9784,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":575,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600355Z"},{"ID":9785,"Name":"~~LatającyHolender~~","Points":9070,"X":600,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600356Z"},{"ID":9786,"Name":"040 Louisville","Points":10371,"X":427,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600357Z"},{"ID":9787,"Name":"NOT?","Points":10042,"X":429,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600359Z"},{"ID":9788,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":561,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60036Z"},{"ID":9789,"Name":"(008)","Points":10152,"X":407,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60036Z"},{"ID":9790,"Name":"- 112 -","Points":9709,"X":548,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600361Z"},{"ID":9792,"Name":"...","Points":9288,"X":575,"Y":433,"Continent":"K45","Bonus":8,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600362Z"},{"ID":9793,"Name":"00506","Points":4931,"X":435,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600365Z"},{"ID":9794,"Name":"Bagdad","Points":10654,"X":477,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600366Z"},{"ID":9795,"Name":"Feed me more 010","Points":10365,"X":490,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600367Z"},{"ID":9796,"Name":"PRO8L3M","Points":10311,"X":465,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600368Z"},{"ID":9797,"Name":"014","Points":9555,"X":589,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600368Z"},{"ID":9798,"Name":"CSA","Points":9623,"X":403,"Y":518,"Continent":"K54","Bonus":3,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600369Z"},{"ID":9799,"Name":".achim.","Points":10311,"X":523,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60037Z"},{"ID":9800,"Name":"007","Points":10028,"X":503,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600373Z"},{"ID":9801,"Name":"Truskawkowy Bili","Points":9537,"X":471,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600374Z"},{"ID":9802,"Name":".achim.","Points":10311,"X":517,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600375Z"},{"ID":9803,"Name":"031","Points":9552,"X":589,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600376Z"},{"ID":9804,"Name":"Joms 044","Points":6902,"X":555,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600377Z"},{"ID":9805,"Name":"044","Points":10495,"X":561,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600378Z"},{"ID":9806,"Name":"Wioska barbarzyƄska","Points":9835,"X":556,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600379Z"},{"ID":9807,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":393,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60038Z"},{"ID":9808,"Name":"Szlachcic","Points":9771,"X":588,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600383Z"},{"ID":9809,"Name":"~020.","Points":10495,"X":497,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600384Z"},{"ID":9810,"Name":"Village","Points":12154,"X":505,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600386Z"},{"ID":9811,"Name":"NOT","Points":10042,"X":422,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600387Z"},{"ID":9812,"Name":".achim.","Points":10311,"X":513,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600388Z"},{"ID":9813,"Name":".:140:. Niangmen","Points":9596,"X":511,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60039Z"},{"ID":9814,"Name":"001","Points":3820,"X":399,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600391Z"},{"ID":9815,"Name":"00504","Points":8561,"X":433,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600392Z"},{"ID":9816,"Name":"Osada koczownikĂłw2","Points":4021,"X":426,"Y":563,"Continent":"K54","Bonus":1,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600395Z"},{"ID":9817,"Name":".achim.","Points":10311,"X":515,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600396Z"},{"ID":9818,"Name":"- 106 -","Points":10000,"X":545,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600397Z"},{"ID":9819,"Name":".achim.","Points":8897,"X":530,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600398Z"},{"ID":9820,"Name":"A041","Points":6175,"X":468,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600399Z"},{"ID":9821,"Name":"Gryfios 020","Points":12154,"X":608,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6004Z"},{"ID":9822,"Name":"Metis","Points":9321,"X":421,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600401Z"},{"ID":9823,"Name":"BBB","Points":6166,"X":583,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600403Z"},{"ID":9824,"Name":".:112:. Niangmen","Points":9899,"X":505,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600404Z"},{"ID":9825,"Name":"011","Points":9965,"X":509,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600405Z"},{"ID":9826,"Name":"Szlachcic","Points":8906,"X":465,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600406Z"},{"ID":9827,"Name":"CALL 1031","Points":10787,"X":572,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600407Z"},{"ID":9828,"Name":"Teatr","Points":10495,"X":432,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600408Z"},{"ID":9829,"Name":"A027","Points":10226,"X":452,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600409Z"},{"ID":9831,"Name":"Winter is coming","Points":9438,"X":450,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60041Z"},{"ID":9832,"Name":"PiekƂo to inni","Points":10160,"X":486,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600413Z"},{"ID":9833,"Name":"049 BuƂeczka v4","Points":9699,"X":533,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600414Z"},{"ID":9834,"Name":"Wioska barbarzyƄska","Points":10348,"X":409,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600415Z"},{"ID":9835,"Name":"048","Points":10495,"X":560,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600416Z"},{"ID":9836,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":585,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600418Z"},{"ID":9837,"Name":"Witam w wietnamie","Points":10008,"X":418,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600419Z"},{"ID":9838,"Name":"Nope","Points":10083,"X":405,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60042Z"},{"ID":9839,"Name":"050","Points":10038,"X":565,"Y":423,"Continent":"K45","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600422Z"},{"ID":9840,"Name":"031","Points":9801,"X":551,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600423Z"},{"ID":9841,"Name":"AbacadA 013","Points":10273,"X":562,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600424Z"},{"ID":9842,"Name":"039","Points":10495,"X":537,"Y":407,"Continent":"K45","Bonus":6,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600425Z"},{"ID":9843,"Name":"ƁAPANKA!!!!","Points":9781,"X":395,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600426Z"},{"ID":9844,"Name":".achim.","Points":10311,"X":523,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600427Z"},{"ID":9846,"Name":"E.01","Points":7923,"X":573,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600428Z"},{"ID":9847,"Name":"Wioska (001)","Points":9316,"X":619,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600429Z"},{"ID":9848,"Name":"Majin Buu 017","Points":9761,"X":437,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600432Z"},{"ID":9849,"Name":"Kulik 005","Points":4888,"X":400,"Y":511,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600433Z"},{"ID":9850,"Name":"Lord Arsey KING","Points":10285,"X":535,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600434Z"},{"ID":9851,"Name":"[043]","Points":10392,"X":594,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600435Z"},{"ID":9852,"Name":"025 Austin","Points":9792,"X":428,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600436Z"},{"ID":9853,"Name":"093 MEHEHE","Points":10019,"X":491,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600437Z"},{"ID":9854,"Name":"#055","Points":10393,"X":476,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600438Z"},{"ID":9855,"Name":"Wioska barbarzyƄska","Points":7898,"X":572,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60044Z"},{"ID":9856,"Name":"006 - Malaga","Points":10019,"X":597,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600441Z"},{"ID":9857,"Name":"009 Hokus pokus","Points":6546,"X":589,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600442Z"},{"ID":9858,"Name":"A028","Points":10217,"X":451,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600443Z"},{"ID":9859,"Name":"01 Monety 3 p500","Points":9994,"X":573,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600444Z"},{"ID":9860,"Name":"DOM 4 *","Points":9382,"X":564,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600445Z"},{"ID":9861,"Name":"~033.","Points":10495,"X":475,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600446Z"},{"ID":9862,"Name":"~003.","Points":10495,"X":506,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600447Z"},{"ID":9863,"Name":".achim.","Points":10311,"X":529,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600449Z"},{"ID":9864,"Name":"Wioska wosiur12","Points":3265,"X":469,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60045Z"},{"ID":9865,"Name":"Winter is coming","Points":10068,"X":462,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600451Z"},{"ID":9866,"Name":"W=01","Points":10636,"X":611,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600452Z"},{"ID":9867,"Name":"Napewno to nie jest off","Points":7436,"X":495,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600453Z"},{"ID":9868,"Name":"Medellin","Points":10011,"X":404,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600454Z"},{"ID":9869,"Name":"BBB","Points":6512,"X":582,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600455Z"},{"ID":9870,"Name":"EKG M13","Points":9831,"X":487,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600458Z"},{"ID":9871,"Name":"AAAA-006- Kotek, kotek, kotek","Points":10479,"X":454,"Y":414,"Continent":"K44","Bonus":9,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600459Z"},{"ID":9872,"Name":"x Wioska barbarzyƄska","Points":9034,"X":399,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600461Z"},{"ID":9873,"Name":"Popas8","Points":10022,"X":402,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600462Z"},{"ID":9874,"Name":"0216","Points":10019,"X":521,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600464Z"},{"ID":9875,"Name":"- 108 -","Points":10000,"X":545,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600465Z"},{"ID":9876,"Name":"Farma","Points":12154,"X":404,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600467Z"},{"ID":9877,"Name":".achim.","Points":10311,"X":519,"Y":402,"Continent":"K45","Bonus":8,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600468Z"},{"ID":9878,"Name":"Napewno to nie jest off","Points":4916,"X":484,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60047Z"},{"ID":9879,"Name":"BBB","Points":7467,"X":580,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600471Z"},{"ID":9880,"Name":"SsSs","Points":9777,"X":400,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600472Z"},{"ID":9881,"Name":"030 Coƛ tam","Points":7888,"X":592,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600473Z"},{"ID":9882,"Name":"044","Points":10083,"X":413,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600475Z"},{"ID":9883,"Name":"[A]_[048] Dejv.oldplyr","Points":10495,"X":406,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600476Z"},{"ID":9884,"Name":"yogi","Points":8992,"X":490,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600476Z"},{"ID":9885,"Name":".achim.","Points":10311,"X":531,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600479Z"},{"ID":9886,"Name":"Wioska barbarzyƄska","Points":9835,"X":563,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60048Z"},{"ID":9888,"Name":".achim.","Points":10311,"X":529,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600481Z"},{"ID":9889,"Name":"Wioska barbarzyƄska","Points":9835,"X":558,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600482Z"},{"ID":9890,"Name":".achim.","Points":10311,"X":514,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600483Z"},{"ID":9891,"Name":"Wioska barbarzyƄska","Points":9918,"X":424,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600484Z"},{"ID":9892,"Name":"SsSs","Points":9344,"X":402,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600486Z"},{"ID":9893,"Name":"021 Las Vegas","Points":10387,"X":429,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600487Z"},{"ID":9894,"Name":"Wioska barbarzyƄska","Points":10285,"X":426,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600489Z"},{"ID":9895,"Name":"Coruscant 7","Points":9566,"X":506,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60049Z"},{"ID":9896,"Name":"Quest","Points":5271,"X":415,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600491Z"},{"ID":9897,"Name":"makelovenotwar3","Points":9717,"X":384,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600492Z"},{"ID":9898,"Name":"z 050","Points":10220,"X":550,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600493Z"},{"ID":9899,"Name":".achim.","Points":10311,"X":515,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600494Z"},{"ID":9900,"Name":".achim.","Points":10311,"X":535,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600495Z"},{"ID":9901,"Name":"#056","Points":10393,"X":477,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600498Z"},{"ID":9902,"Name":"Centrum 01","Points":9745,"X":605,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600499Z"},{"ID":9903,"Name":"Wioska barbarzyƄska","Points":5864,"X":400,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6005Z"},{"ID":9904,"Name":"075 Wojownik","Points":10001,"X":542,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600501Z"},{"ID":9905,"Name":"Szlachcic","Points":9976,"X":587,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600502Z"},{"ID":9906,"Name":"Monetki","Points":10290,"X":476,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600503Z"},{"ID":9907,"Name":"033 Galfni","Points":10160,"X":600,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600504Z"},{"ID":9908,"Name":"CALL 1075","Points":10495,"X":551,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600506Z"},{"ID":9909,"Name":"Szlachcic","Points":10237,"X":463,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600508Z"},{"ID":9910,"Name":"Gravity","Points":9505,"X":411,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600509Z"},{"ID":9911,"Name":"Wioska1","Points":10203,"X":503,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600551Z"},{"ID":9912,"Name":"Wioska","Points":9889,"X":588,"Y":545,"Continent":"K55","Bonus":7,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600553Z"},{"ID":9913,"Name":".achim.","Points":10311,"X":521,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600554Z"},{"ID":9914,"Name":"Wioska 0026","Points":8755,"X":402,"Y":527,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600556Z"},{"ID":9915,"Name":".achim.","Points":10311,"X":519,"Y":404,"Continent":"K45","Bonus":2,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600558Z"},{"ID":9916,"Name":"B13","Points":9566,"X":505,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600559Z"},{"ID":9917,"Name":"A035","Points":10221,"X":465,"Y":405,"Continent":"K44","Bonus":6,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600561Z"},{"ID":9918,"Name":"Quantum","Points":10160,"X":419,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600562Z"},{"ID":9919,"Name":"013 OCB","Points":10495,"X":590,"Y":456,"Continent":"K45","Bonus":3,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600566Z"},{"ID":9920,"Name":"Napewno to nie jest off","Points":7176,"X":486,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600567Z"},{"ID":9921,"Name":".achim.","Points":10311,"X":532,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600568Z"},{"ID":9922,"Name":"Radek","Points":10495,"X":401,"Y":480,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60057Z"},{"ID":9923,"Name":"x 012. Rio Bravo","Points":9450,"X":399,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600571Z"},{"ID":9924,"Name":"Gravity","Points":9486,"X":419,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600572Z"},{"ID":9925,"Name":"008","Points":10495,"X":584,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600573Z"},{"ID":9926,"Name":"~031.","Points":10495,"X":479,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600576Z"},{"ID":9927,"Name":"Sparta_02","Points":9638,"X":502,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600577Z"},{"ID":9928,"Name":"Wioska","Points":6034,"X":596,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600578Z"},{"ID":9929,"Name":"[A]_[026] Dejv.oldplyr","Points":10401,"X":400,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600579Z"},{"ID":9930,"Name":"Szlachcic","Points":10237,"X":466,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60058Z"},{"ID":9931,"Name":"223 |","Points":818,"X":563,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600581Z"},{"ID":9932,"Name":"001 - Barcelona","Points":10019,"X":598,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600582Z"},{"ID":9933,"Name":"mehehe 2","Points":10047,"X":452,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600583Z"},{"ID":9934,"Name":"KIELBA 061","Points":10273,"X":452,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600586Z"},{"ID":9935,"Name":".:135:. Niangmen","Points":9847,"X":507,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600587Z"},{"ID":9936,"Name":"NOT","Points":10042,"X":421,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600588Z"},{"ID":9937,"Name":"B06","Points":9761,"X":507,"Y":402,"Continent":"K45","Bonus":7,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600589Z"},{"ID":9938,"Name":".achim.","Points":9827,"X":530,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60059Z"},{"ID":9939,"Name":"Part X","Points":10495,"X":536,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600591Z"},{"ID":9940,"Name":"BBB","Points":5591,"X":584,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600592Z"},{"ID":9941,"Name":"(036)","Points":10160,"X":408,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600594Z"},{"ID":9942,"Name":"B.004","Points":9986,"X":427,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600596Z"},{"ID":9943,"Name":"*009*","Points":8527,"X":611,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600596Z"},{"ID":9944,"Name":"025.","Points":9995,"X":598,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600598Z"},{"ID":9946,"Name":"Popas 11","Points":9752,"X":403,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600599Z"},{"ID":9947,"Name":"South K35","Points":10042,"X":558,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6006Z"},{"ID":9948,"Name":"- 073 -","Points":10000,"X":538,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600601Z"},{"ID":9949,"Name":"Kiedyƛ Wielki Wojownik","Points":9779,"X":394,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600602Z"},{"ID":9950,"Name":"A 004.","Points":9761,"X":439,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600604Z"},{"ID":9951,"Name":"0085","Points":9729,"X":440,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600605Z"},{"ID":9952,"Name":"035","Points":10336,"X":596,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600606Z"},{"ID":9953,"Name":"Wioska barbarzyƄska","Points":9980,"X":443,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600607Z"},{"ID":9954,"Name":"Lord Arsey KING","Points":10285,"X":593,"Y":529,"Continent":"K55","Bonus":7,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600608Z"},{"ID":9955,"Name":"062","Points":10495,"X":545,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600609Z"},{"ID":9956,"Name":"0000022#","Points":8517,"X":431,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600611Z"},{"ID":9958,"Name":"Majin Buu 004","Points":9761,"X":435,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600614Z"},{"ID":9959,"Name":".:030:. Chillout","Points":10636,"X":521,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600615Z"},{"ID":9960,"Name":"(027)","Points":10155,"X":404,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600616Z"},{"ID":9961,"Name":"Welcome To The Machine","Points":7379,"X":585,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600616Z"},{"ID":9962,"Name":"(028)","Points":7702,"X":404,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600617Z"},{"ID":9963,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":565,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600618Z"},{"ID":9964,"Name":"Sparta_01","Points":9638,"X":501,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600619Z"},{"ID":9965,"Name":"Gravity","Points":9488,"X":411,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60062Z"},{"ID":9966,"Name":"Wioska 0027","Points":7684,"X":400,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600623Z"},{"ID":9967,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":402,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600624Z"},{"ID":9968,"Name":"004 Pomalutku","Points":10008,"X":591,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600625Z"},{"ID":9969,"Name":"Szlachcic","Points":10237,"X":458,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600626Z"},{"ID":9970,"Name":"021","Points":10244,"X":587,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600627Z"},{"ID":9971,"Name":"FRONT","Points":9638,"X":461,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600628Z"},{"ID":9972,"Name":"Farma","Points":12154,"X":402,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600629Z"},{"ID":9973,"Name":"Gravity","Points":9505,"X":417,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60063Z"},{"ID":9974,"Name":"NOT?","Points":9579,"X":469,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600632Z"},{"ID":9975,"Name":"Wioska barbarzyƄska","Points":9835,"X":564,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600634Z"},{"ID":9976,"Name":".achim.","Points":10311,"X":522,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600635Z"},{"ID":9977,"Name":"Popas2","Points":10228,"X":398,"Y":504,"Continent":"K53","Bonus":6,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600636Z"},{"ID":9978,"Name":"[A]_[051] Dejv.oldplyr","Points":10495,"X":409,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600637Z"},{"ID":9979,"Name":"084","Points":9636,"X":599,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600638Z"},{"ID":9980,"Name":"Wioska barbarzyƄska","Points":9355,"X":441,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600639Z"},{"ID":9981,"Name":"A042","Points":10247,"X":476,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600641Z"},{"ID":9982,"Name":"ADEN","Points":10023,"X":580,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600642Z"},{"ID":9983,"Name":"A 001.","Points":9847,"X":437,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600643Z"},{"ID":9984,"Name":"Jaaa","Points":10495,"X":580,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600644Z"},{"ID":9986,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":402,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600645Z"},{"ID":9987,"Name":"Zatoka MarzeƄ","Points":11824,"X":597,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600646Z"},{"ID":9988,"Name":"Wioska barbarzyƄska","Points":4346,"X":402,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600647Z"},{"ID":9989,"Name":"Wioska","Points":10178,"X":384,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600648Z"},{"ID":9990,"Name":"071","Points":7669,"X":546,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600651Z"},{"ID":9991,"Name":"Wioska","Points":9180,"X":513,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849044961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600652Z"},{"ID":9992,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":401,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600653Z"},{"ID":9993,"Name":"057. Jezioro Leona","Points":10083,"X":590,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600654Z"},{"ID":9994,"Name":"A006","Points":10237,"X":467,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600655Z"},{"ID":9995,"Name":"Szlachcic","Points":10237,"X":474,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600656Z"},{"ID":9996,"Name":"081","Points":10042,"X":404,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600657Z"},{"ID":9997,"Name":"#021","Points":9745,"X":527,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600659Z"},{"ID":9999,"Name":"Wioska4,,","Points":10209,"X":487,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600661Z"},{"ID":10000,"Name":"Napewno to nie jest off","Points":3420,"X":487,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600662Z"},{"ID":10001,"Name":"#063","Points":8530,"X":480,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600663Z"},{"ID":10002,"Name":".achim.","Points":8514,"X":529,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600664Z"},{"ID":10003,"Name":"094","Points":9548,"X":408,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600665Z"},{"ID":10004,"Name":"Teby_41","Points":9638,"X":484,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600665Z"},{"ID":10005,"Name":"HoƂopole","Points":10178,"X":488,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600666Z"},{"ID":10006,"Name":"[046]","Points":10495,"X":597,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600669Z"},{"ID":10007,"Name":"#0097","Points":10495,"X":514,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60067Z"},{"ID":10008,"Name":"Suppi","Points":9337,"X":428,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600671Z"},{"ID":10009,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":593,"Y":536,"Continent":"K55","Bonus":6,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600671Z"},{"ID":10010,"Name":"071 - Kremin","Points":9372,"X":422,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600673Z"},{"ID":10011,"Name":"A 003.","Points":9761,"X":439,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600673Z"},{"ID":10012,"Name":"Szlachcic","Points":10084,"X":476,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600674Z"},{"ID":10015,"Name":"[029] Boma YoU","Points":10237,"X":596,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600677Z"},{"ID":10016,"Name":"[A]_[037] Dejv.oldplyr","Points":10444,"X":405,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600678Z"},{"ID":10017,"Name":"A 002.","Points":9825,"X":439,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600679Z"},{"ID":10018,"Name":"006 Minas Thirit","Points":8992,"X":597,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60068Z"},{"ID":10019,"Name":"011","Points":10129,"X":409,"Y":515,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600681Z"},{"ID":10021,"Name":"- 310 -","Points":10008,"X":529,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600682Z"},{"ID":10022,"Name":"Joms 045","Points":9823,"X":555,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600683Z"},{"ID":10023,"Name":"Wioska","Points":10178,"X":385,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600684Z"},{"ID":10024,"Name":"007 - Murcia","Points":10019,"X":598,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600686Z"},{"ID":10025,"Name":"Wioska 0001","Points":9978,"X":402,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600687Z"},{"ID":10026,"Name":"014","Points":6684,"X":580,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600688Z"},{"ID":10027,"Name":"059 Honolulu","Points":9761,"X":459,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600689Z"},{"ID":10028,"Name":"0095","Points":9082,"X":467,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60069Z"},{"ID":10030,"Name":"- 288 -","Points":10000,"X":520,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600691Z"},{"ID":10031,"Name":"Wioska 0006","Points":10199,"X":405,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600692Z"},{"ID":10032,"Name":"Psychiatryk","Points":9966,"X":504,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600695Z"},{"ID":10033,"Name":"Wioska barbarzyƄska","Points":8207,"X":426,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600696Z"},{"ID":10034,"Name":"Wioska2,","Points":9901,"X":506,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600697Z"},{"ID":10035,"Name":"Winter is coming","Points":5733,"X":468,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600698Z"},{"ID":10037,"Name":"Wioska2","Points":10202,"X":506,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600699Z"},{"ID":10038,"Name":"0065","Points":10252,"X":598,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6007Z"},{"ID":10039,"Name":"028","Points":7135,"X":591,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600701Z"},{"ID":10040,"Name":"022","Points":10495,"X":551,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600702Z"},{"ID":10041,"Name":".:119:. Niangmen","Points":9899,"X":509,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600704Z"},{"ID":10042,"Name":"057","Points":10129,"X":402,"Y":500,"Continent":"K54","Bonus":8,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600705Z"},{"ID":10043,"Name":"012","Points":10503,"X":576,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600706Z"},{"ID":10044,"Name":"[A]_[021] Dejv.oldplyr","Points":10495,"X":398,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600707Z"},{"ID":10045,"Name":"Wioska barbarzyƄska","Points":9835,"X":562,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600708Z"},{"ID":10046,"Name":".achim.","Points":10311,"X":518,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600709Z"},{"ID":10048,"Name":"Winter is coming","Points":10001,"X":460,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60071Z"},{"ID":10049,"Name":"028 Daret","Points":10160,"X":599,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600713Z"},{"ID":10050,"Name":"A 008.","Points":9761,"X":439,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600714Z"},{"ID":10051,"Name":"AbacadA 018","Points":9860,"X":567,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600715Z"},{"ID":10052,"Name":"###","Points":9950,"X":516,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600716Z"},{"ID":10053,"Name":"|049B|","Points":9835,"X":558,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600717Z"},{"ID":10054,"Name":"koczownicza 01","Points":10179,"X":401,"Y":526,"Continent":"K54","Bonus":5,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600718Z"},{"ID":10055,"Name":"This Is Sparta !!!","Points":1448,"X":477,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600719Z"},{"ID":10056,"Name":"0015 MzM","Points":9258,"X":593,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60072Z"},{"ID":10057,"Name":"0182","Points":10252,"X":544,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600722Z"},{"ID":10058,"Name":"FAKE OR OFF","Points":9883,"X":458,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600723Z"},{"ID":10059,"Name":"00381 Wioska","Points":9444,"X":437,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600724Z"},{"ID":10060,"Name":"AbacadA 015","Points":9853,"X":564,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600725Z"},{"ID":10061,"Name":"Szlachcic","Points":10237,"X":461,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600726Z"},{"ID":10062,"Name":"Wioska.","Points":8229,"X":512,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849044961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600727Z"},{"ID":10063,"Name":"- 324 -","Points":9540,"X":530,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600728Z"},{"ID":10064,"Name":"Wioska 0004","Points":10242,"X":399,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600731Z"},{"ID":10065,"Name":"x Wioska barbarzyƄska","Points":9374,"X":400,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600732Z"},{"ID":10066,"Name":"0.Minneapolis","Points":9986,"X":521,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600733Z"},{"ID":10067,"Name":"- 283 -","Points":10000,"X":518,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600734Z"},{"ID":10069,"Name":"Wioska barbarzyƄska","Points":10484,"X":405,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600735Z"},{"ID":10070,"Name":"Essa 006","Points":9578,"X":569,"Y":574,"Continent":"K55","Bonus":6,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600736Z"},{"ID":10071,"Name":"033","Points":9144,"X":549,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600737Z"},{"ID":10072,"Name":"Wioska barbarzyƄska","Points":8247,"X":589,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":848925840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600738Z"},{"ID":10073,"Name":"028","Points":10495,"X":556,"Y":415,"Continent":"K45","Bonus":4,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60074Z"},{"ID":10074,"Name":"050 BuƂeczka v5","Points":10001,"X":539,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600741Z"},{"ID":10075,"Name":"#0093","Points":10495,"X":512,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600742Z"},{"ID":10076,"Name":"K44 x003","Points":10164,"X":436,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600743Z"},{"ID":10077,"Name":"007","Points":9047,"X":483,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600744Z"},{"ID":10078,"Name":".achim.","Points":10311,"X":515,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600745Z"},{"ID":10079,"Name":"027","Points":9750,"X":595,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600747Z"},{"ID":10080,"Name":"099","Points":10273,"X":567,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600749Z"},{"ID":10081,"Name":"022 San Jose","Points":10478,"X":428,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60075Z"},{"ID":10082,"Name":"~037.","Points":10495,"X":470,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600751Z"},{"ID":10083,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8819,"X":539,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600752Z"},{"ID":10084,"Name":"mam","Points":9835,"X":558,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600753Z"},{"ID":10085,"Name":"048 - A03***","Points":10495,"X":433,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600754Z"},{"ID":10086,"Name":"[A]_[042] Dejv.oldplyr","Points":10311,"X":401,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600755Z"},{"ID":10087,"Name":"0339","Points":10495,"X":499,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600756Z"},{"ID":10088,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":403,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600759Z"},{"ID":10089,"Name":"HoƂopole","Points":10311,"X":480,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60076Z"},{"ID":10090,"Name":"Wioska6,,,,","Points":9883,"X":518,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600761Z"},{"ID":10091,"Name":"021","Points":9721,"X":570,"Y":427,"Continent":"K45","Bonus":7,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600762Z"},{"ID":10092,"Name":"Wioska 0002","Points":10164,"X":405,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600763Z"},{"ID":10093,"Name":"Jaaa","Points":10438,"X":581,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600764Z"},{"ID":10094,"Name":"Monetki","Points":10297,"X":479,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600765Z"},{"ID":10095,"Name":"Wioska Lord Wasir","Points":10495,"X":445,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600767Z"},{"ID":10096,"Name":"AbacadA 017","Points":9612,"X":566,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600768Z"},{"ID":10097,"Name":"[A]_[046] Dejv.oldplyr","Points":10495,"X":406,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600769Z"},{"ID":10098,"Name":"Wioska barbarzyƄska","Points":10495,"X":404,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60077Z"},{"ID":10099,"Name":"095 MEHEHE m","Points":10019,"X":493,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600771Z"},{"ID":10100,"Name":"Gravity","Points":9505,"X":414,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600772Z"},{"ID":10101,"Name":"Gravity","Points":9496,"X":412,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600773Z"},{"ID":10103,"Name":"007 Mordor","Points":9846,"X":598,"Y":529,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600774Z"},{"ID":10104,"Name":".:007:. Idea","Points":9767,"X":505,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600777Z"},{"ID":10105,"Name":"Centrum 02","Points":9761,"X":605,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600778Z"},{"ID":10106,"Name":"Wioska morisanti","Points":9966,"X":507,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600779Z"},{"ID":10107,"Name":"PYZA 002 Nuke","Points":9536,"X":579,"Y":566,"Continent":"K55","Bonus":1,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60078Z"},{"ID":10108,"Name":"002","Points":10362,"X":587,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600781Z"},{"ID":10109,"Name":"ADEN","Points":9192,"X":561,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600782Z"},{"ID":10110,"Name":"Tesa 14","Points":9302,"X":597,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600783Z"},{"ID":10111,"Name":"Gravity","Points":9497,"X":410,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600784Z"},{"ID":10112,"Name":"001","Points":10019,"X":604,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600786Z"},{"ID":10113,"Name":"011","Points":10211,"X":582,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600787Z"},{"ID":10114,"Name":"#040","Points":10971,"X":458,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600788Z"},{"ID":10115,"Name":"NOT?","Points":10042,"X":409,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600789Z"},{"ID":10116,"Name":"NOT","Points":10042,"X":418,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60079Z"},{"ID":10117,"Name":"Wioska6,,,","Points":10023,"X":519,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600791Z"},{"ID":10118,"Name":"019","Points":9873,"X":405,"Y":537,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600792Z"},{"ID":10119,"Name":"NOT","Points":10042,"X":421,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600795Z"},{"ID":10120,"Name":"0000019$","Points":9663,"X":434,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600796Z"},{"ID":10122,"Name":"Gravity","Points":9486,"X":411,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600797Z"},{"ID":10123,"Name":"Twierdza 016","Points":4060,"X":427,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600798Z"},{"ID":10124,"Name":"0010","Points":9269,"X":472,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600799Z"},{"ID":10125,"Name":"0099","Points":9682,"X":443,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6008Z"},{"ID":10126,"Name":".achim.","Points":10311,"X":514,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600801Z"},{"ID":10127,"Name":"Kulik 001","Points":9093,"X":398,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600802Z"},{"ID":10128,"Name":"Wioska barbarzyƄska","Points":6532,"X":508,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849044961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600805Z"},{"ID":10129,"Name":".achim.","Points":10311,"X":515,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600806Z"},{"ID":10131,"Name":"Sparta_16","Points":9638,"X":497,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600806Z"},{"ID":10132,"Name":"#053","Points":9735,"X":525,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600807Z"},{"ID":10133,"Name":"Wioska barbarzyƄska","Points":8716,"X":576,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600809Z"},{"ID":10134,"Name":"- 119 -","Points":10000,"X":548,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60081Z"},{"ID":10135,"Name":"(029)","Points":10160,"X":405,"Y":532,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600811Z"},{"ID":10136,"Name":"Gravity","Points":9485,"X":412,"Y":450,"Continent":"K44","Bonus":5,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600813Z"},{"ID":10137,"Name":"032 Stay Alive","Points":9486,"X":592,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600814Z"},{"ID":10138,"Name":"KIELBA 040","Points":10495,"X":456,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600815Z"},{"ID":10139,"Name":"004.","Points":10004,"X":488,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600816Z"},{"ID":10140,"Name":"[045]","Points":10646,"X":596,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600817Z"},{"ID":10142,"Name":"0003","Points":10058,"X":599,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600818Z"},{"ID":10143,"Name":"045","Points":10495,"X":548,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600819Z"},{"ID":10144,"Name":"Jaaa","Points":10481,"X":587,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60082Z"},{"ID":10145,"Name":".achim.","Points":10311,"X":520,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600823Z"},{"ID":10146,"Name":"028","Points":9994,"X":572,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600825Z"},{"ID":10147,"Name":"CALL 983","Points":10495,"X":559,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600826Z"},{"ID":10148,"Name":"Napewno to nie jest off","Points":10495,"X":497,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600827Z"},{"ID":10149,"Name":"Wioska barbarzyƄska","Points":10144,"X":406,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600828Z"},{"ID":10150,"Name":"Wioska barbarzyƄska","Points":9819,"X":438,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600829Z"},{"ID":10151,"Name":"Witam w wietnamie","Points":10008,"X":415,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60083Z"},{"ID":10152,"Name":"051","Points":9744,"X":400,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600832Z"},{"ID":10153,"Name":"Winter is coming","Points":9426,"X":449,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600833Z"},{"ID":10154,"Name":"jaaa","Points":10475,"X":575,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600834Z"},{"ID":10155,"Name":"1.Sacramento","Points":9951,"X":532,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600835Z"},{"ID":10156,"Name":"Szulernia","Points":9981,"X":418,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600836Z"},{"ID":10157,"Name":"Jaaa","Points":10476,"X":590,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600837Z"},{"ID":10158,"Name":"0217","Points":10019,"X":533,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600838Z"},{"ID":10159,"Name":"046 BuƂeczka v1","Points":10001,"X":536,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600839Z"},{"ID":10160,"Name":".:143:. Niangmen","Points":9761,"X":501,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600841Z"},{"ID":10161,"Name":"K44 x007","Points":8415,"X":445,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600842Z"},{"ID":10162,"Name":"#006","Points":9545,"X":537,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600843Z"},{"ID":10163,"Name":"0026 Wioska","Points":10481,"X":428,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600844Z"},{"ID":10164,"Name":"044","Points":9795,"X":483,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600845Z"},{"ID":10165,"Name":"A09","Points":10019,"X":598,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600846Z"},{"ID":10166,"Name":"Wioska - xd","Points":9703,"X":601,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600847Z"},{"ID":10167,"Name":"Winter is coming","Points":9976,"X":470,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60085Z"},{"ID":10168,"Name":"Wioska barbarzyƄska","Points":10306,"X":525,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600851Z"},{"ID":10170,"Name":"Wioska barbarzyƄska","Points":9835,"X":561,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600852Z"},{"ID":10171,"Name":"Wioska barbarzyƄska","Points":10481,"X":406,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600853Z"},{"ID":10172,"Name":"Wioska barbarzyƄska","Points":8758,"X":414,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600854Z"},{"ID":10173,"Name":"Tesa 12","Points":10019,"X":599,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600855Z"},{"ID":10174,"Name":"Z03","Points":10362,"X":515,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600856Z"},{"ID":10175,"Name":"Szlachcic","Points":10237,"X":472,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600857Z"},{"ID":10176,"Name":"014 New Haven","Points":10141,"X":430,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600859Z"},{"ID":10177,"Name":"#020","Points":9549,"X":525,"Y":599,"Continent":"K55","Bonus":6,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60086Z"},{"ID":10178,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":582,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600861Z"},{"ID":10179,"Name":"009","Points":10503,"X":566,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600862Z"},{"ID":10180,"Name":"019 Philadelphia","Points":9488,"X":431,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600864Z"},{"ID":10181,"Name":"Qbek","Points":6506,"X":417,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600864Z"},{"ID":10182,"Name":"B18","Points":9761,"X":498,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600865Z"},{"ID":10183,"Name":"1.60tp !!!","Points":9746,"X":500,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600866Z"},{"ID":10184,"Name":"Domek 8","Points":9827,"X":561,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600867Z"},{"ID":10185,"Name":"029","Points":10495,"X":594,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600867Z"},{"ID":10186,"Name":"#0094","Points":10495,"X":510,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600868Z"},{"ID":10187,"Name":"Bunkier 001","Points":10495,"X":587,"Y":449,"Continent":"K45","Bonus":6,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600868Z"},{"ID":10188,"Name":"A0046","Points":10362,"X":380,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600869Z"},{"ID":10189,"Name":"019.","Points":6862,"X":595,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60087Z"},{"ID":10190,"Name":"Wioska 450","Points":10728,"X":590,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60087Z"},{"ID":10191,"Name":"Wioska barbarzyƄska","Points":6718,"X":420,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600871Z"},{"ID":10192,"Name":"BBB","Points":9155,"X":583,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600872Z"},{"ID":10193,"Name":"Winter is coming","Points":10055,"X":451,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600872Z"},{"ID":10194,"Name":"Pod","Points":9644,"X":590,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600873Z"},{"ID":10195,"Name":"EKG .::. freaky97/2","Points":10495,"X":488,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600874Z"},{"ID":10196,"Name":"033","Points":10189,"X":597,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600874Z"},{"ID":10197,"Name":"Napewno to nie jest off","Points":10495,"X":493,"Y":397,"Continent":"K34","Bonus":3,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600875Z"},{"ID":10198,"Name":"038","Points":10495,"X":538,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600876Z"},{"ID":10199,"Name":"[A]_[011] Dejv.oldplyr","Points":10495,"X":398,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600877Z"},{"ID":10200,"Name":"004. Wioska Gatt","Points":10495,"X":598,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600878Z"},{"ID":10201,"Name":"#0098","Points":10495,"X":513,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600878Z"},{"ID":10202,"Name":"z 032","Points":10237,"X":553,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600879Z"},{"ID":10203,"Name":"020 Phoenix","Points":9792,"X":430,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60088Z"},{"ID":10204,"Name":"014 Jedno albo drugie","Points":10487,"X":600,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600881Z"},{"ID":10205,"Name":"0103","Points":9587,"X":443,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600881Z"},{"ID":10206,"Name":"A18","Points":9656,"X":594,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600883Z"},{"ID":10207,"Name":"018","Points":10495,"X":601,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600884Z"},{"ID":10208,"Name":"Jaaa","Points":10476,"X":584,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600885Z"},{"ID":10210,"Name":"Wioska barbarzyƄska","Points":9689,"X":596,"Y":526,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600885Z"},{"ID":10211,"Name":".achim.","Points":10311,"X":528,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600886Z"},{"ID":10212,"Name":"Szlachcic","Points":8317,"X":478,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600886Z"},{"ID":10213,"Name":"x barbarzyƄska 008","Points":9131,"X":397,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600887Z"},{"ID":10214,"Name":"005","Points":10315,"X":491,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600888Z"},{"ID":10216,"Name":"Szlachcic","Points":10237,"X":464,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600889Z"},{"ID":10217,"Name":"013 Delaware","Points":10495,"X":601,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60089Z"},{"ID":10218,"Name":"[047]","Points":10057,"X":598,"Y":523,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60089Z"},{"ID":10219,"Name":"034","Points":6574,"X":552,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600891Z"},{"ID":10220,"Name":"043","Points":8084,"X":481,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600892Z"},{"ID":10221,"Name":"Szlachcic","Points":10104,"X":467,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600892Z"},{"ID":10222,"Name":"Joms 012","Points":10238,"X":527,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600893Z"},{"ID":10223,"Name":"czekoladowy john","Points":10311,"X":471,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600894Z"},{"ID":10224,"Name":"~022.","Points":10495,"X":474,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600895Z"},{"ID":10225,"Name":"Brat447","Points":10476,"X":386,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600896Z"},{"ID":10226,"Name":"Wioska barbarzyƄska","Points":7897,"X":399,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600897Z"},{"ID":10227,"Name":"#018","Points":9741,"X":544,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600897Z"},{"ID":10228,"Name":"SSJ 015","Points":9761,"X":520,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600898Z"},{"ID":10229,"Name":"018 Houston","Points":10495,"X":431,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600899Z"},{"ID":10230,"Name":"006","Points":10162,"X":486,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6009Z"},{"ID":10231,"Name":"sony911","Points":10222,"X":565,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600901Z"},{"ID":10232,"Name":"[402] Zatrzymam to sobie","Points":8530,"X":576,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600901Z"},{"ID":10233,"Name":"0000006#","Points":10484,"X":427,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600902Z"},{"ID":10234,"Name":"k45 016","Points":10393,"X":577,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600903Z"},{"ID":10235,"Name":"[A]_[008] Dejv.oldplyr","Points":10444,"X":399,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600903Z"},{"ID":10236,"Name":"~076.","Points":10495,"X":490,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600904Z"},{"ID":10237,"Name":"071","Points":10311,"X":544,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600904Z"},{"ID":10238,"Name":".achim.","Points":10311,"X":517,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600906Z"},{"ID":10239,"Name":"099 MEHEHE 1","Points":10019,"X":492,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600906Z"},{"ID":10240,"Name":"A 005.","Points":10229,"X":436,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600907Z"},{"ID":10241,"Name":"Wioska barbarzyƄska","Points":9889,"X":442,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600908Z"},{"ID":10242,"Name":"NOT?","Points":10042,"X":410,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600908Z"},{"ID":10243,"Name":"Rotrigo 3","Points":10495,"X":405,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600909Z"},{"ID":10244,"Name":"0075","Points":10019,"X":599,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600909Z"},{"ID":10245,"Name":"006 Czysta gra","Points":9260,"X":591,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60091Z"},{"ID":10246,"Name":"Wioska barbarzyƄska","Points":9725,"X":578,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600912Z"},{"ID":10247,"Name":"NOT?","Points":10042,"X":409,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600912Z"},{"ID":10248,"Name":"101 ***1*** Arbuz","Points":10001,"X":543,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600913Z"},{"ID":10249,"Name":"SsSs","Points":8779,"X":402,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600913Z"},{"ID":10250,"Name":".achim.","Points":10311,"X":516,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600914Z"},{"ID":10251,"Name":"010. Wioska V1p3r646","Points":10495,"X":593,"Y":515,"Continent":"K55","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600914Z"},{"ID":10252,"Name":"D001","Points":9925,"X":510,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600915Z"},{"ID":10253,"Name":"[A]_[024] Dejv.oldplyr","Points":10495,"X":400,"Y":483,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600916Z"},{"ID":10254,"Name":"009","Points":9835,"X":557,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600917Z"},{"ID":10255,"Name":"Twierdza 015","Points":5821,"X":424,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600917Z"},{"ID":10256,"Name":"Winter is coming","Points":10495,"X":507,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600918Z"},{"ID":10257,"Name":"Village","Points":11618,"X":468,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600919Z"},{"ID":10258,"Name":"002","Points":9873,"X":406,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600919Z"},{"ID":10259,"Name":"1.Houston","Points":9951,"X":542,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60092Z"},{"ID":10260,"Name":"010 - Bilbao","Points":10019,"X":602,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60092Z"},{"ID":10261,"Name":"Wioska barbarzyƄska","Points":9835,"X":562,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600922Z"},{"ID":10262,"Name":"018 Problemy internetowe dorka","Points":10008,"X":591,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600922Z"},{"ID":10263,"Name":"mehehe 3","Points":10311,"X":462,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600923Z"},{"ID":10264,"Name":"Napewno to nie jest off","Points":7143,"X":493,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600924Z"},{"ID":10265,"Name":".achim.","Points":10311,"X":520,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600924Z"},{"ID":10266,"Name":"B07","Points":9761,"X":504,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600925Z"},{"ID":10267,"Name":"Stage group D 1","Points":9930,"X":452,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600925Z"},{"ID":10268,"Name":"Twierdza 011","Points":8789,"X":424,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600927Z"},{"ID":10269,"Name":"004 Arkansas","Points":10495,"X":603,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600928Z"},{"ID":10270,"Name":"~034.","Points":10495,"X":472,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600928Z"},{"ID":10271,"Name":"Fairy Tail","Points":10311,"X":485,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600929Z"},{"ID":10272,"Name":"Wioska6,,,,,","Points":9759,"X":517,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600929Z"},{"ID":10273,"Name":"Szlachcic","Points":9720,"X":469,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60093Z"},{"ID":10274,"Name":"Napewno to nie jest off","Points":9318,"X":492,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600931Z"},{"ID":10275,"Name":"0000008#","Points":10238,"X":429,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600931Z"},{"ID":10276,"Name":"EKG .::. KOM 004 Napychając","Points":10495,"X":477,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600933Z"},{"ID":10277,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":566,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600933Z"},{"ID":10278,"Name":"Napewno to nie jest off","Points":8977,"X":497,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600934Z"},{"ID":10279,"Name":"- 123 -","Points":10000,"X":543,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600935Z"},{"ID":10280,"Name":"[042]","Points":10049,"X":591,"Y":539,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600935Z"},{"ID":10281,"Name":"- 315 -","Points":10000,"X":533,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600936Z"},{"ID":10282,"Name":"A044","Points":5306,"X":479,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600937Z"},{"ID":10283,"Name":"B 004.","Points":9825,"X":445,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600938Z"},{"ID":10284,"Name":"- 115 -","Points":10000,"X":552,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600939Z"},{"ID":10285,"Name":"Wioska 451","Points":10495,"X":591,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600939Z"},{"ID":10286,"Name":"Wioska barbarzyƄska","Points":10285,"X":413,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60094Z"},{"ID":10287,"Name":"023 Farma czy nie","Points":6816,"X":591,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600941Z"},{"ID":10288,"Name":".achim.","Points":10311,"X":518,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600942Z"},{"ID":10289,"Name":"KIELBA 077","Points":10365,"X":458,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600942Z"},{"ID":10290,"Name":".achim.","Points":10311,"X":520,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600943Z"},{"ID":10291,"Name":"0218","Points":10019,"X":520,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600945Z"},{"ID":10292,"Name":"007","Points":9873,"X":409,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600945Z"},{"ID":10293,"Name":"011","Points":10311,"X":576,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600946Z"},{"ID":10294,"Name":"015","Points":10211,"X":580,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600946Z"},{"ID":10295,"Name":"087","Points":10129,"X":400,"Y":524,"Continent":"K54","Bonus":5,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600947Z"},{"ID":10296,"Name":"0000012#","Points":10224,"X":431,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600948Z"},{"ID":10297,"Name":"0000024#","Points":9147,"X":429,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600948Z"},{"ID":10298,"Name":"KONFA TO MARKA, NARKA","Points":11953,"X":409,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60095Z"},{"ID":10299,"Name":"ƚcięty grzyb..","Points":10160,"X":582,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60095Z"},{"ID":10300,"Name":"A 006.","Points":9753,"X":438,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600951Z"},{"ID":10301,"Name":"KIELBA 080","Points":10495,"X":457,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600952Z"},{"ID":10302,"Name":"Wioska barbarzyƄska","Points":9563,"X":441,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600952Z"},{"ID":10303,"Name":"[048]","Points":10054,"X":597,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600953Z"},{"ID":10304,"Name":"NOT!!","Points":10042,"X":467,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600953Z"},{"ID":10305,"Name":"Wioska dare","Points":9835,"X":562,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600954Z"},{"ID":10306,"Name":"045","Points":10495,"X":601,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600956Z"},{"ID":10307,"Name":"019","Points":10129,"X":413,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600956Z"},{"ID":10308,"Name":"C 003.","Points":10237,"X":449,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600957Z"},{"ID":10309,"Name":"AbacadA 004","Points":10424,"X":567,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600958Z"},{"ID":10310,"Name":"SsSs","Points":10152,"X":397,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600959Z"},{"ID":10311,"Name":"Jehu_Kingdom_24_","Points":9993,"X":600,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600959Z"},{"ID":10312,"Name":"013 Norwalk","Points":10484,"X":430,"Y":426,"Continent":"K44","Bonus":7,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.60096Z"},{"ID":10313,"Name":"NOT?","Points":10042,"X":411,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600961Z"},{"ID":10314,"Name":"ƁódĆș","Points":8813,"X":593,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600962Z"},{"ID":10315,"Name":"~~LatającyHolender~~","Points":10052,"X":599,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600963Z"},{"ID":10316,"Name":"0004","Points":9966,"X":442,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600963Z"},{"ID":10317,"Name":"Tesa 5","Points":10005,"X":599,"Y":521,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600964Z"},{"ID":10318,"Name":"N01","Points":10400,"X":585,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600965Z"},{"ID":10319,"Name":".:114:. Niangmen","Points":9899,"X":504,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600965Z"},{"ID":10321,"Name":".:136:. Niangmen","Points":9825,"X":507,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600966Z"},{"ID":10322,"Name":"x010. PewnegoRazuNaDzikimZach..","Points":7828,"X":394,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600967Z"},{"ID":10323,"Name":"keepo","Points":10495,"X":486,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600968Z"},{"ID":10324,"Name":"0009","Points":10301,"X":602,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.600968Z"},{"ID":10325,"Name":"Wioska barbarzyƄska","Points":9835,"X":563,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636475Z"},{"ID":10326,"Name":"Witam w wietnamie","Points":10075,"X":413,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636476Z"},{"ID":10327,"Name":"1.Madison","Points":8966,"X":541,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636477Z"},{"ID":10328,"Name":"0000015!","Points":8775,"X":446,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636477Z"},{"ID":10329,"Name":".achim.","Points":10311,"X":527,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636478Z"},{"ID":10330,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":575,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636479Z"},{"ID":10332,"Name":"z 025","Points":10221,"X":551,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636479Z"},{"ID":10333,"Name":"Kentin ufam Tobie","Points":10000,"X":401,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63648Z"},{"ID":10334,"Name":"013","Points":10036,"X":584,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63648Z"},{"ID":10335,"Name":"0038 Wioska","Points":10078,"X":436,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636481Z"},{"ID":10336,"Name":"NOT","Points":10042,"X":416,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636482Z"},{"ID":10337,"Name":"Wioska barbarzyƄska","Points":10290,"X":511,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636482Z"},{"ID":10338,"Name":"- 072 -","Points":10000,"X":536,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636483Z"},{"ID":10339,"Name":"Gravity","Points":9486,"X":410,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636483Z"},{"ID":10340,"Name":"Suppi","Points":9811,"X":422,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636484Z"},{"ID":10341,"Name":"007","Points":8633,"X":424,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636484Z"},{"ID":10343,"Name":"0035 MzM","Points":10495,"X":588,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636485Z"},{"ID":10344,"Name":"Magnolia","Points":10311,"X":486,"Y":398,"Continent":"K34","Bonus":5,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636486Z"},{"ID":10346,"Name":"Wioska 0029","Points":10145,"X":402,"Y":520,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636486Z"},{"ID":10347,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":580,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636487Z"},{"ID":10348,"Name":"Wioska barbarzyƄska","Points":7397,"X":396,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636487Z"},{"ID":10349,"Name":"032","Points":10139,"X":588,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636488Z"},{"ID":10350,"Name":"- 070 -","Points":10000,"X":534,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636488Z"},{"ID":10351,"Name":"Wioska barbarzyƄska","Points":2932,"X":450,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636489Z"},{"ID":10353,"Name":"Wioska barbarzyƄska","Points":8006,"X":579,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63649Z"},{"ID":10354,"Name":"NOT?","Points":6052,"X":434,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63649Z"},{"ID":10355,"Name":"Gravity","Points":9505,"X":407,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636491Z"},{"ID":10356,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":582,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636491Z"},{"ID":10357,"Name":"015","Points":10495,"X":551,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636492Z"},{"ID":10358,"Name":"00501 Essa","Points":10259,"X":433,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636492Z"},{"ID":10359,"Name":"Sparta_19","Points":9544,"X":494,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636493Z"},{"ID":10360,"Name":"051","Points":10311,"X":587,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636493Z"},{"ID":10361,"Name":"HoƂopole","Points":10178,"X":487,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636494Z"},{"ID":10362,"Name":"EKG .::. KOM 005 Orkowi Ɓ + R","Points":10495,"X":482,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636495Z"},{"ID":10363,"Name":"008 Isengard","Points":10003,"X":598,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636495Z"},{"ID":10364,"Name":"004. Ivar Bez Koƛci","Points":10030,"X":588,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636496Z"},{"ID":10365,"Name":"0219","Points":10019,"X":520,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636496Z"},{"ID":10366,"Name":"*029*","Points":5564,"X":601,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636497Z"},{"ID":10367,"Name":"008. Cent","Points":10350,"X":431,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636497Z"},{"ID":10368,"Name":"Suppi","Points":9580,"X":431,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636498Z"},{"ID":10369,"Name":"0014","Points":10068,"X":472,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636499Z"},{"ID":10370,"Name":"027","Points":10426,"X":591,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6365Z"},{"ID":10371,"Name":"009 Osgiliath","Points":10011,"X":598,"Y":534,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6365Z"},{"ID":10372,"Name":"022 Indiana","Points":10495,"X":603,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636501Z"},{"ID":10373,"Name":"Szlachcic","Points":9976,"X":589,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636502Z"},{"ID":10375,"Name":"- 090 -","Points":10000,"X":538,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636503Z"},{"ID":10376,"Name":"0027","Points":10168,"X":603,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636504Z"},{"ID":10377,"Name":"z 033","Points":10220,"X":553,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636504Z"},{"ID":10378,"Name":"Wioska Rafraf","Points":8601,"X":402,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636505Z"},{"ID":10379,"Name":"Essa 007","Points":9805,"X":569,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636506Z"},{"ID":10380,"Name":"#023","Points":5369,"X":539,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636506Z"},{"ID":10381,"Name":"NOT?","Points":10042,"X":408,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636507Z"},{"ID":10383,"Name":"042","Points":7837,"X":571,"Y":424,"Continent":"K45","Bonus":7,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636508Z"},{"ID":10384,"Name":"015. Erlendur","Points":10030,"X":585,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636508Z"},{"ID":10385,"Name":"South Blue","Points":10521,"X":485,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636509Z"},{"ID":10387,"Name":"022","Points":9787,"X":572,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63651Z"},{"ID":10388,"Name":"052","Points":10311,"X":552,"Y":412,"Continent":"K45","Bonus":9,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63651Z"},{"ID":10389,"Name":"Jaaa","Points":10474,"X":586,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636511Z"},{"ID":10390,"Name":"Quska","Points":6519,"X":418,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636511Z"},{"ID":10391,"Name":"- 121 -","Points":10000,"X":546,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636512Z"},{"ID":10392,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":566,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636512Z"},{"ID":10393,"Name":"PƂezent?","Points":9835,"X":491,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636513Z"},{"ID":10394,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":572,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636513Z"},{"ID":10395,"Name":"030","Points":10019,"X":592,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636514Z"},{"ID":10396,"Name":"029 Dauth","Points":10362,"X":600,"Y":507,"Continent":"K56","Bonus":3,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636514Z"},{"ID":10397,"Name":"xx 017. Mƛciciel","Points":9416,"X":397,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636515Z"},{"ID":10398,"Name":"004.","Points":9811,"X":493,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636516Z"},{"ID":10399,"Name":"Piomat","Points":9761,"X":416,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636516Z"},{"ID":10400,"Name":"005 Barka","Points":10189,"X":592,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636517Z"},{"ID":10402,"Name":"Wioska insidecomer","Points":9835,"X":559,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636517Z"},{"ID":10403,"Name":"Wioska 0025","Points":10099,"X":402,"Y":523,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636518Z"},{"ID":10404,"Name":"!kuba","Points":9886,"X":518,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636519Z"},{"ID":10405,"Name":"017","Points":10316,"X":590,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636519Z"},{"ID":10406,"Name":"KIELBA 038","Points":10237,"X":441,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63652Z"},{"ID":10407,"Name":"HoƂopole","Points":9976,"X":481,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63652Z"},{"ID":10408,"Name":"085","Points":10349,"X":611,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636521Z"},{"ID":10409,"Name":"Wioska 0017","Points":10362,"X":402,"Y":522,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636521Z"},{"ID":10410,"Name":"SoƂtys Wsi charlie4","Points":9592,"X":439,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636522Z"},{"ID":10411,"Name":"008","Points":10060,"X":505,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636522Z"},{"ID":10412,"Name":"012","Points":10311,"X":469,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636523Z"},{"ID":10413,"Name":"A#022#","Points":11956,"X":403,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636524Z"},{"ID":10414,"Name":"041","Points":10495,"X":553,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636524Z"},{"ID":10415,"Name":"A#028#","Points":11950,"X":403,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636525Z"},{"ID":10416,"Name":"008 - Las Palmas","Points":10019,"X":599,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636525Z"},{"ID":10417,"Name":"Village","Points":8869,"X":474,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636526Z"},{"ID":10418,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":573,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636526Z"},{"ID":10420,"Name":"barba","Points":10237,"X":468,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636527Z"},{"ID":10421,"Name":"014 TaƄczący z myszami","Points":10019,"X":596,"Y":463,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636527Z"},{"ID":10422,"Name":"Sparta_21","Points":9544,"X":498,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636528Z"},{"ID":10423,"Name":"Wioska barbarzyƄska","Points":9424,"X":434,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636529Z"},{"ID":10424,"Name":"Wioska karrrol923","Points":9840,"X":600,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636529Z"},{"ID":10425,"Name":"013.","Points":6742,"X":601,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63653Z"},{"ID":10426,"Name":"Wioska barbarzyƄska","Points":9376,"X":594,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63653Z"},{"ID":10427,"Name":"0642","Points":9811,"X":443,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636531Z"},{"ID":10428,"Name":".achim.","Points":10311,"X":522,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636531Z"},{"ID":10429,"Name":"0000016#","Points":10487,"X":424,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636532Z"},{"ID":10430,"Name":"Tylko grzeczni chƂopcy","Points":12154,"X":515,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636533Z"},{"ID":10431,"Name":"FAKE OR OFF","Points":9868,"X":453,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636533Z"},{"ID":10432,"Name":"105","Points":10311,"X":544,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636534Z"},{"ID":10433,"Name":"D0003","Points":9900,"X":438,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636535Z"},{"ID":10434,"Name":"x 013. Rio Lobo","Points":10209,"X":398,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636535Z"},{"ID":10435,"Name":"0037 grosik","Points":10495,"X":437,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636536Z"},{"ID":10436,"Name":"021.","Points":8919,"X":601,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636536Z"},{"ID":10437,"Name":"Wioska dysio923","Points":9978,"X":595,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636537Z"},{"ID":10438,"Name":"Monetki","Points":9620,"X":474,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636537Z"},{"ID":10439,"Name":"0079","Points":10160,"X":550,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636538Z"},{"ID":10440,"Name":"Wioska barbarzyƄska","Points":7429,"X":578,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636538Z"},{"ID":10441,"Name":"[0492]","Points":9125,"X":593,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636539Z"},{"ID":10442,"Name":"- 078 -","Points":10000,"X":537,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63654Z"},{"ID":10443,"Name":"Gravity","Points":9505,"X":413,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63654Z"},{"ID":10444,"Name":"z 039","Points":10478,"X":556,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636541Z"},{"ID":10445,"Name":"022","Points":10362,"X":588,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636541Z"},{"ID":10446,"Name":"EKG .::. KOM 003 Jajca","Points":10365,"X":482,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636542Z"},{"ID":10447,"Name":"#069","Points":10728,"X":487,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636542Z"},{"ID":10448,"Name":"041","Points":10279,"X":570,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636543Z"},{"ID":10449,"Name":".1.Waszyngton","Points":9980,"X":546,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636543Z"},{"ID":10450,"Name":"A10","Points":10019,"X":599,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636544Z"},{"ID":10451,"Name":"035 Lithgow","Points":10654,"X":605,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636545Z"},{"ID":10452,"Name":"EKG .::. KOM 001 LiĆŒÄ… Ɓ","Points":10495,"X":482,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636545Z"},{"ID":10453,"Name":"Szlachcic","Points":10083,"X":401,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636546Z"},{"ID":10454,"Name":"0003","Points":10160,"X":546,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636546Z"},{"ID":10455,"Name":"- 075 -","Points":10000,"X":539,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636547Z"},{"ID":10456,"Name":".achim.","Points":10311,"X":541,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636547Z"},{"ID":10457,"Name":"Wioska6,,","Points":9886,"X":517,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636548Z"},{"ID":10458,"Name":"Gravity","Points":9763,"X":417,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636548Z"},{"ID":10460,"Name":"047","Points":10495,"X":548,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636549Z"},{"ID":10461,"Name":"Teby_39","Points":9638,"X":483,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63655Z"},{"ID":10462,"Name":"KONFA TO MARKA, NARKA","Points":11949,"X":402,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63655Z"},{"ID":10463,"Name":"Wioska barbarzyƄska","Points":8750,"X":424,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636551Z"},{"ID":10464,"Name":"Tesa","Points":10019,"X":600,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636551Z"},{"ID":10465,"Name":"025","Points":9785,"X":568,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636552Z"},{"ID":10466,"Name":"Szlachcic","Points":10237,"X":472,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636552Z"},{"ID":10467,"Name":"Wioska barbarzyƄska","Points":8336,"X":576,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636553Z"},{"ID":10468,"Name":"PYZA 001 Bubel","Points":6745,"X":576,"Y":571,"Continent":"K55","Bonus":5,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636553Z"},{"ID":10469,"Name":"049o","Points":10725,"X":442,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636554Z"},{"ID":10470,"Name":"Sector 3","Points":10041,"X":515,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636555Z"},{"ID":10471,"Name":"Suppi","Points":10237,"X":425,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636555Z"},{"ID":10472,"Name":"x 014. 15:10 do Yumy","Points":9158,"X":398,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636556Z"},{"ID":10473,"Name":"[A]_[030] Dejv.oldplyr","Points":10495,"X":402,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636556Z"},{"ID":10474,"Name":"#0102","Points":10495,"X":513,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636557Z"},{"ID":10476,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":407,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636558Z"},{"ID":10477,"Name":"BBB","Points":7039,"X":583,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636558Z"},{"ID":10479,"Name":"021","Points":10019,"X":595,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636559Z"},{"ID":10480,"Name":"Jaaa","Points":9677,"X":567,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636559Z"},{"ID":10481,"Name":"Skyview Hall","Points":10559,"X":527,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63656Z"},{"ID":10482,"Name":"#0103","Points":10495,"X":512,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63656Z"},{"ID":10483,"Name":"129","Points":10311,"X":550,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636561Z"},{"ID":10484,"Name":"Wioska barbarzyƄska","Points":11119,"X":406,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636562Z"},{"ID":10485,"Name":"Wioska barbarzyƄska","Points":7117,"X":402,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636562Z"},{"ID":10486,"Name":"Wioska barbarzyƄska","Points":9744,"X":442,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636563Z"},{"ID":10487,"Name":"- 062 -","Points":10000,"X":538,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636563Z"},{"ID":10488,"Name":"-[001]- Mount Everest","Points":9934,"X":554,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636564Z"},{"ID":10489,"Name":"010. Yang","Points":9825,"X":408,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636564Z"},{"ID":10490,"Name":"Szlachcic","Points":10237,"X":475,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636565Z"},{"ID":10491,"Name":"054","Points":9902,"X":488,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636566Z"},{"ID":10492,"Name":"ADEN","Points":9148,"X":573,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636566Z"},{"ID":10493,"Name":"A.006","Points":9460,"X":408,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636567Z"},{"ID":10494,"Name":"Sparta_17","Points":9638,"X":494,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636567Z"},{"ID":10495,"Name":"Okradzionow","Points":10008,"X":432,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636568Z"},{"ID":10496,"Name":"#051","Points":10136,"X":523,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636568Z"},{"ID":10497,"Name":"#0101","Points":10495,"X":512,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636569Z"},{"ID":10499,"Name":"NOT?","Points":10042,"X":408,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63657Z"},{"ID":10500,"Name":"-033-","Points":10479,"X":452,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63657Z"},{"ID":10501,"Name":"0035","Points":10325,"X":616,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636571Z"},{"ID":10502,"Name":"070","Points":10559,"X":600,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636571Z"},{"ID":10503,"Name":"~001.","Points":10495,"X":498,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636572Z"},{"ID":10504,"Name":"Szlachcic","Points":8781,"X":465,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636572Z"},{"ID":10505,"Name":"028 Raz dwa trzy","Points":8165,"X":594,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636573Z"},{"ID":10506,"Name":"Suppi","Points":9886,"X":428,"Y":425,"Continent":"K44","Bonus":5,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636574Z"},{"ID":10507,"Name":"z 030","Points":10708,"X":554,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636574Z"},{"ID":10508,"Name":"FAKE OR OFF","Points":9822,"X":458,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636575Z"},{"ID":10509,"Name":"030. AƂa","Points":9572,"X":408,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636576Z"},{"ID":10510,"Name":"023.","Points":9824,"X":602,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636577Z"},{"ID":10511,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":598,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636577Z"},{"ID":10512,"Name":"022 a to peszek","Points":10203,"X":596,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636578Z"},{"ID":10513,"Name":"004","Points":9761,"X":498,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636579Z"},{"ID":10514,"Name":"Gravity","Points":9618,"X":407,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636579Z"},{"ID":10515,"Name":"Jaaa","Points":10559,"X":587,"Y":557,"Continent":"K55","Bonus":8,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63658Z"},{"ID":10516,"Name":"086 MEHEHE","Points":10019,"X":495,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636581Z"},{"ID":10517,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":401,"Y":482,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636582Z"},{"ID":10518,"Name":"Wioska ferrekin","Points":3153,"X":447,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":3969110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636582Z"},{"ID":10519,"Name":"005","Points":10296,"X":596,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636583Z"},{"ID":10520,"Name":"B 002.","Points":10237,"X":458,"Y":594,"Continent":"K54","Bonus":3,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636583Z"},{"ID":10521,"Name":"z 037","Points":10495,"X":557,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636584Z"},{"ID":10522,"Name":"Sparta_22","Points":9638,"X":499,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636584Z"},{"ID":10523,"Name":"Szlachcic","Points":10237,"X":452,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636585Z"},{"ID":10524,"Name":"Szlachcic","Points":10237,"X":469,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636586Z"},{"ID":10525,"Name":"NOT","Points":10042,"X":417,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636586Z"},{"ID":10526,"Name":"Wioska barbarzyƄska","Points":9992,"X":481,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636587Z"},{"ID":10527,"Name":"002","Points":9730,"X":570,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636587Z"},{"ID":10528,"Name":"017","Points":10495,"X":551,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636588Z"},{"ID":10529,"Name":"020","Points":10495,"X":548,"Y":411,"Continent":"K45","Bonus":1,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636588Z"},{"ID":10530,"Name":"1.Cleveland","Points":9951,"X":541,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636589Z"},{"ID":10531,"Name":"017","Points":9873,"X":403,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636589Z"},{"ID":10532,"Name":"KONFA TO MARKA, NARKA","Points":11954,"X":406,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63659Z"},{"ID":10533,"Name":"West 01","Points":10162,"X":597,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63659Z"},{"ID":10534,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":568,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636591Z"},{"ID":10535,"Name":"0.Lincoln","Points":9954,"X":528,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636591Z"},{"ID":10536,"Name":"Wioska barbarzyƄska","Points":9979,"X":385,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636592Z"},{"ID":10537,"Name":"034","Points":9269,"X":564,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636592Z"},{"ID":10538,"Name":"Gattacka","Points":9430,"X":596,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636593Z"},{"ID":10539,"Name":"[A]_[015] Dejv.oldplyr","Points":10290,"X":396,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636594Z"},{"ID":10540,"Name":"017.","Points":5220,"X":597,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636594Z"},{"ID":10541,"Name":"009","Points":10178,"X":507,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636595Z"},{"ID":10542,"Name":"KIELBA 053","Points":10365,"X":457,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636595Z"},{"ID":10543,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":401,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636596Z"},{"ID":10544,"Name":"0048","Points":10160,"X":596,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636596Z"},{"ID":10545,"Name":"007 997 ten numer to kƂopoty","Points":9535,"X":590,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636597Z"},{"ID":10546,"Name":".achim.","Points":10311,"X":525,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636597Z"},{"ID":10547,"Name":"Lord Arsey KING","Points":10285,"X":601,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636598Z"},{"ID":10548,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":574,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636598Z"},{"ID":10549,"Name":"014","Points":9873,"X":407,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636599Z"},{"ID":10550,"Name":"NOT?","Points":9888,"X":406,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6366Z"},{"ID":10551,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":400,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6366Z"},{"ID":10552,"Name":"007 Zadupie","Points":10495,"X":601,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636601Z"},{"ID":10553,"Name":"kulik 002","Points":8435,"X":399,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636601Z"},{"ID":10554,"Name":"Wioska 0022","Points":10089,"X":398,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636602Z"},{"ID":10555,"Name":"060","Points":10495,"X":546,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636602Z"},{"ID":10556,"Name":"Jaaa","Points":9534,"X":605,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636603Z"},{"ID":10557,"Name":"A036","Points":9589,"X":466,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636604Z"},{"ID":10559,"Name":"NOT","Points":10042,"X":419,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636604Z"},{"ID":10560,"Name":".:093:. Chillout","Points":8149,"X":506,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636605Z"},{"ID":10561,"Name":"NOT","Points":10042,"X":417,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636605Z"},{"ID":10562,"Name":"Peverlo","Points":10104,"X":415,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636606Z"},{"ID":10563,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":563,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636606Z"},{"ID":10564,"Name":"00091","Points":11130,"X":523,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636607Z"},{"ID":10565,"Name":"018","Points":9873,"X":404,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636607Z"},{"ID":10566,"Name":"Jaaa","Points":10222,"X":564,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636608Z"},{"ID":10567,"Name":"036","Points":10671,"X":596,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636609Z"},{"ID":10568,"Name":"Gravity","Points":9488,"X":406,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636609Z"},{"ID":10569,"Name":".achim.","Points":10311,"X":528,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63661Z"},{"ID":10570,"Name":"026","Points":10495,"X":601,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63661Z"},{"ID":10571,"Name":"Wioska","Points":10178,"X":384,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636611Z"},{"ID":10572,"Name":"001. Marzyciel Shrek","Points":5764,"X":481,"Y":503,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636612Z"},{"ID":10573,"Name":"Winter is coming","Points":9976,"X":463,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636612Z"},{"ID":10574,"Name":"Mako Reactor 1 - Connecting Pass","Points":10559,"X":520,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636613Z"},{"ID":10575,"Name":"051 BuƂeczka v6","Points":9868,"X":537,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636613Z"},{"ID":10576,"Name":"143 Wioska barbarzyƄska","Points":5011,"X":392,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636614Z"},{"ID":10577,"Name":"007 Salt Like City","Points":10495,"X":425,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636614Z"},{"ID":10578,"Name":"Suppi","Points":9809,"X":426,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636615Z"},{"ID":10579,"Name":"Jehu_Kingdom_31_","Points":9993,"X":600,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636616Z"},{"ID":10580,"Name":"Wioska barbarzyƄska","Points":5175,"X":398,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636616Z"},{"ID":10581,"Name":"HoƂopole","Points":9976,"X":485,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636617Z"},{"ID":10582,"Name":"NOT","Points":10042,"X":420,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636617Z"},{"ID":10583,"Name":"047o","Points":11558,"X":446,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636618Z"},{"ID":10584,"Name":"(015)","Points":10143,"X":404,"Y":532,"Continent":"K54","Bonus":2,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636619Z"},{"ID":10585,"Name":"mammm","Points":9835,"X":562,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63662Z"},{"ID":10586,"Name":"Wioska M.02","Points":8777,"X":400,"Y":516,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63662Z"},{"ID":10587,"Name":"023 Barba","Points":10495,"X":603,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636621Z"},{"ID":10588,"Name":"Gravity","Points":9485,"X":407,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636621Z"},{"ID":10589,"Name":"Jaaa","Points":10495,"X":585,"Y":554,"Continent":"K55","Bonus":8,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636622Z"},{"ID":10590,"Name":"A037","Points":10221,"X":478,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636622Z"},{"ID":10591,"Name":"South K45","Points":5774,"X":571,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636623Z"},{"ID":10592,"Name":"024","Points":9750,"X":594,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636624Z"},{"ID":10593,"Name":".achim.","Points":10311,"X":517,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636624Z"},{"ID":10594,"Name":".achim.","Points":10311,"X":520,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636625Z"},{"ID":10595,"Name":"#035","Points":10141,"X":532,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636625Z"},{"ID":10596,"Name":"Gravity","Points":9504,"X":408,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636626Z"},{"ID":10597,"Name":"~041.","Points":10495,"X":504,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636626Z"},{"ID":10598,"Name":"1.Springfield","Points":8883,"X":540,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636627Z"},{"ID":10599,"Name":"-034-","Points":10479,"X":452,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636628Z"},{"ID":10600,"Name":"s181eo03","Points":9886,"X":398,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636628Z"},{"ID":10601,"Name":"018.","Points":9835,"X":600,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636629Z"},{"ID":10602,"Name":"Z02","Points":10252,"X":513,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636629Z"},{"ID":10603,"Name":"Teatr","Points":10223,"X":427,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63663Z"},{"ID":10604,"Name":"011","Points":8926,"X":569,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63663Z"},{"ID":10605,"Name":"Kentin ufam Tobie","Points":10000,"X":398,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636631Z"},{"ID":10606,"Name":"007","Points":10362,"X":599,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636632Z"},{"ID":10607,"Name":"HoƂopole","Points":9835,"X":491,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636632Z"},{"ID":10608,"Name":"#011","Points":9737,"X":525,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636633Z"},{"ID":10609,"Name":"002 Tutaj Szlachta Pracuje !!!","Points":10211,"X":577,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636633Z"},{"ID":10610,"Name":".achim.","Points":10311,"X":519,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636634Z"},{"ID":10611,"Name":"Jehu_Kingdom_03_","Points":9993,"X":600,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636634Z"},{"ID":10612,"Name":"1.Little Rock","Points":9953,"X":531,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636635Z"},{"ID":10613,"Name":"028. Oj Nie Ɓadnie","Points":9611,"X":406,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636636Z"},{"ID":10614,"Name":"Majin Buu 007","Points":9761,"X":433,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636636Z"},{"ID":10615,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":10019,"X":518,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636637Z"},{"ID":10616,"Name":"NOT","Points":10063,"X":420,"Y":439,"Continent":"K44","Bonus":9,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636637Z"},{"ID":10617,"Name":"1.Manhattan","Points":9994,"X":554,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636638Z"},{"ID":10618,"Name":"Jaaa","Points":10239,"X":566,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636638Z"},{"ID":10619,"Name":"0000007#","Points":10342,"X":430,"Y":573,"Continent":"K54","Bonus":4,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636639Z"},{"ID":10620,"Name":"Szlachcic","Points":10237,"X":475,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63664Z"},{"ID":10621,"Name":"Lord Arsey KING","Points":10285,"X":600,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63664Z"},{"ID":10622,"Name":"KRÓL PAPI WIELKI","Points":9899,"X":576,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636641Z"},{"ID":10623,"Name":"NOT?","Points":10042,"X":409,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636641Z"},{"ID":10624,"Name":"1.San Jose","Points":9891,"X":548,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636642Z"},{"ID":10625,"Name":"Tesa 3","Points":10008,"X":603,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636642Z"},{"ID":10626,"Name":"Winter is coming","Points":8055,"X":452,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636643Z"},{"ID":10627,"Name":"NOT","Points":10042,"X":416,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636643Z"},{"ID":10628,"Name":"~006.","Points":10495,"X":502,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636644Z"},{"ID":10629,"Name":"016","Points":10495,"X":557,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636645Z"},{"ID":10630,"Name":"001 Hyjal","Points":10019,"X":599,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636645Z"},{"ID":10631,"Name":"[030] Te bikujin","Points":9977,"X":602,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636646Z"},{"ID":10632,"Name":"Twierdza 003","Points":9178,"X":423,"Y":568,"Continent":"K54","Bonus":1,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636646Z"},{"ID":10634,"Name":"0040 Wioska","Points":10348,"X":436,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636647Z"},{"ID":10635,"Name":"0205","Points":5607,"X":400,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636648Z"},{"ID":10636,"Name":"barba","Points":10311,"X":468,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636648Z"},{"ID":10637,"Name":"046","Points":10495,"X":548,"Y":408,"Continent":"K45","Bonus":8,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636649Z"},{"ID":10638,"Name":"[139] North","Points":10311,"X":577,"Y":471,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63665Z"},{"ID":10639,"Name":"x Wioska barbarzyƄska","Points":8390,"X":397,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63665Z"},{"ID":10640,"Name":"1.Charlotte","Points":9983,"X":549,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636651Z"},{"ID":10641,"Name":"150","Points":10311,"X":550,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636652Z"},{"ID":10642,"Name":"026 Rurki z kremem","Points":9533,"X":593,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636653Z"},{"ID":10643,"Name":"046 - B03","Points":10812,"X":435,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636653Z"},{"ID":10644,"Name":"023","Points":10235,"X":590,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636654Z"},{"ID":10645,"Name":"KIELBA 043","Points":10495,"X":463,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636655Z"},{"ID":10646,"Name":"Kentin ufam Tobie","Points":10000,"X":387,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636655Z"},{"ID":10647,"Name":"Szlachcic","Points":10237,"X":470,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636656Z"},{"ID":10648,"Name":"00350 koleĆŒka","Points":10083,"X":429,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636657Z"},{"ID":10649,"Name":"Gravity","Points":9544,"X":407,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636658Z"},{"ID":10650,"Name":"NOT?","Points":10042,"X":407,"Y":547,"Continent":"K54","Bonus":2,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636658Z"},{"ID":10651,"Name":"Jaaa","Points":10479,"X":588,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636659Z"},{"ID":10652,"Name":"Wioska barbarzyƄska","Points":10168,"X":398,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636659Z"},{"ID":10653,"Name":"KIELBA 107","Points":7781,"X":451,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63666Z"},{"ID":10654,"Name":"Jaaa","Points":10478,"X":586,"Y":560,"Continent":"K55","Bonus":5,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636661Z"},{"ID":10656,"Name":"Gravity","Points":9486,"X":410,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636661Z"},{"ID":10658,"Name":"Farma","Points":12154,"X":402,"Y":476,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636662Z"},{"ID":10659,"Name":"Jehu_Kingdom_02_","Points":9993,"X":603,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636662Z"},{"ID":10660,"Name":"Wioska 0009","Points":10187,"X":397,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636663Z"},{"ID":10661,"Name":"Jaaa","Points":10478,"X":589,"Y":552,"Continent":"K55","Bonus":4,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636663Z"},{"ID":10662,"Name":"038 OZDR","Points":10083,"X":466,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636664Z"},{"ID":10663,"Name":"Wioska Susu","Points":9868,"X":423,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636664Z"},{"ID":10664,"Name":".achim.","Points":10365,"X":524,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636665Z"},{"ID":10665,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":388,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636666Z"},{"ID":10666,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":402,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636666Z"},{"ID":10667,"Name":"008","Points":10495,"X":407,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636667Z"},{"ID":10668,"Name":"mehehe 1","Points":8965,"X":452,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636667Z"},{"ID":10669,"Name":"1.Austin","Points":9953,"X":541,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636668Z"},{"ID":10670,"Name":"South K35","Points":9873,"X":553,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636669Z"},{"ID":10671,"Name":"B 003.","Points":9891,"X":439,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636669Z"},{"ID":10672,"Name":".achim.","Points":11137,"X":539,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63667Z"},{"ID":10673,"Name":"Essa 005","Points":9879,"X":569,"Y":575,"Continent":"K55","Bonus":3,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63667Z"},{"ID":10674,"Name":"036","Points":9928,"X":565,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636671Z"},{"ID":10675,"Name":"ƚmieci WywĂłz 5","Points":10083,"X":464,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636671Z"},{"ID":10676,"Name":"003 Wioska Best Wiedzmin","Points":4624,"X":603,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":6409472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636672Z"},{"ID":10677,"Name":"Jaaa","Points":10213,"X":569,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636672Z"},{"ID":10678,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":399,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636673Z"},{"ID":10679,"Name":"012","Points":5397,"X":583,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636674Z"},{"ID":10680,"Name":"010","Points":10444,"X":477,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636674Z"},{"ID":10681,"Name":"004","Points":10478,"X":586,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636675Z"},{"ID":10682,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":403,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636675Z"},{"ID":10683,"Name":"005 Bonuuus","Points":10490,"X":605,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636676Z"},{"ID":10684,"Name":"NOT","Points":10004,"X":419,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636677Z"},{"ID":10685,"Name":"Gravity","Points":9494,"X":412,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636677Z"},{"ID":10686,"Name":"0039 MzM","Points":10019,"X":579,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636678Z"},{"ID":10687,"Name":"1.Boston","Points":9978,"X":547,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636678Z"},{"ID":10688,"Name":"BBB","Points":8185,"X":574,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636679Z"},{"ID":10689,"Name":".:105:. Niangmen","Points":9899,"X":502,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636679Z"},{"ID":10690,"Name":"ZasiedmiogĂłrogrĂłd","Points":9835,"X":536,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63668Z"},{"ID":10691,"Name":".achim.","Points":10311,"X":519,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63668Z"},{"ID":10692,"Name":"Napewno to nie jest off","Points":10495,"X":492,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636681Z"},{"ID":10693,"Name":"KIELBA 113","Points":8756,"X":448,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636681Z"},{"ID":10694,"Name":"Wioska M02","Points":9299,"X":399,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636682Z"},{"ID":10695,"Name":"KIELBA 081","Points":10365,"X":456,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636682Z"},{"ID":10696,"Name":"0220","Points":10019,"X":517,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636683Z"},{"ID":10697,"Name":"Piajok","Points":9761,"X":415,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636684Z"},{"ID":10698,"Name":"0626","Points":10019,"X":445,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636684Z"},{"ID":10699,"Name":".achim.","Points":10311,"X":521,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636685Z"},{"ID":10700,"Name":"*019*","Points":8501,"X":605,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636685Z"},{"ID":10701,"Name":"Yesterday","Points":9741,"X":589,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636686Z"},{"ID":10702,"Name":"KIELBA 079","Points":10273,"X":457,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636686Z"},{"ID":10703,"Name":".achim.","Points":10311,"X":525,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636687Z"},{"ID":10704,"Name":"Gattacka","Points":9821,"X":539,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636687Z"},{"ID":10705,"Name":".achim.","Points":10311,"X":514,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636688Z"},{"ID":10706,"Name":"023 Buragh","Points":10083,"X":599,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636688Z"},{"ID":10707,"Name":"N07","Points":9951,"X":587,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636689Z"},{"ID":10708,"Name":"NOT?","Points":10042,"X":407,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63669Z"},{"ID":10709,"Name":"007 - T_002***","Points":10495,"X":439,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63669Z"},{"ID":10710,"Name":"Gravity","Points":9712,"X":406,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636691Z"},{"ID":10711,"Name":"[372] Chorągiewka na wietrze","Points":10357,"X":585,"Y":437,"Continent":"K45","Bonus":3,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636691Z"},{"ID":10712,"Name":"SsSs","Points":9369,"X":395,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636692Z"},{"ID":10713,"Name":"Sabaody","Points":10311,"X":486,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636692Z"},{"ID":10715,"Name":"Teby_37","Points":9638,"X":484,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636693Z"},{"ID":10716,"Name":"Wioska","Points":10178,"X":395,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636693Z"},{"ID":10717,"Name":"Wioska barbarzyƄska","Points":10055,"X":399,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636694Z"},{"ID":10718,"Name":"z 041","Points":10495,"X":556,"Y":587,"Continent":"K55","Bonus":1,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636694Z"},{"ID":10719,"Name":"xx 002. WHL","Points":10273,"X":395,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636695Z"},{"ID":10720,"Name":"061","Points":10495,"X":547,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636696Z"},{"ID":10721,"Name":"040 Massachusetts","Points":10495,"X":604,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636696Z"},{"ID":10722,"Name":"Radek","Points":10495,"X":400,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636697Z"},{"ID":10723,"Name":"Czarna woda","Points":9533,"X":419,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636698Z"},{"ID":10724,"Name":"011","Points":10479,"X":586,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636698Z"},{"ID":10725,"Name":"0050 Wioska","Points":10078,"X":434,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636699Z"},{"ID":10726,"Name":"0631","Points":10019,"X":447,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636699Z"},{"ID":10727,"Name":"Wioska barbarzyƄska","Points":10008,"X":410,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6367Z"},{"ID":10728,"Name":".achim.","Points":10452,"X":522,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6367Z"},{"ID":10729,"Name":"Essa 008","Points":9885,"X":572,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636701Z"},{"ID":10730,"Name":"EKG M21","Points":10248,"X":482,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636701Z"},{"ID":10731,"Name":"0221","Points":10019,"X":520,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636702Z"},{"ID":10732,"Name":"005","Points":10346,"X":589,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636702Z"},{"ID":10733,"Name":"007","Points":10346,"X":588,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636703Z"},{"ID":10734,"Name":"Taran","Points":9379,"X":545,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636704Z"},{"ID":10735,"Name":"Wioska 0011","Points":10205,"X":401,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636704Z"},{"ID":10736,"Name":"Osada M.","Points":10210,"X":400,"Y":522,"Continent":"K54","Bonus":6,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636705Z"},{"ID":10737,"Name":". Chivas","Points":8726,"X":424,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636706Z"},{"ID":10738,"Name":"0013","Points":9976,"X":503,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636706Z"},{"ID":10739,"Name":"052 BuƂeczka v7","Points":10001,"X":532,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636707Z"},{"ID":10740,"Name":"~087.","Points":10495,"X":491,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636707Z"},{"ID":10741,"Name":"#025","Points":10503,"X":471,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636708Z"},{"ID":10742,"Name":"SsSs","Points":6156,"X":394,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636708Z"},{"ID":10743,"Name":"Szlachcic","Points":10237,"X":469,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636709Z"},{"ID":10744,"Name":"Wioska barbarzyƄska","Points":6515,"X":574,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63671Z"},{"ID":10745,"Name":"D006","Points":9925,"X":508,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63671Z"},{"ID":10746,"Name":"- 026 -","Points":10000,"X":547,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636711Z"},{"ID":10747,"Name":"Gravity","Points":9579,"X":405,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636711Z"},{"ID":10748,"Name":"008","Points":7544,"X":582,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636712Z"},{"ID":10749,"Name":"051 Michigan","Points":7569,"X":602,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636712Z"},{"ID":10750,"Name":"NOT","Points":10042,"X":417,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636713Z"},{"ID":10751,"Name":"Postit","Points":9847,"X":417,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636714Z"},{"ID":10752,"Name":"007. Hordafylke","Points":10008,"X":423,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636714Z"},{"ID":10753,"Name":"026","Points":9824,"X":595,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636715Z"},{"ID":10754,"Name":"K44 x019","Points":6773,"X":442,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636715Z"},{"ID":10755,"Name":"Osobliwie","Points":3543,"X":426,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636716Z"},{"ID":10756,"Name":"AAA","Points":9761,"X":510,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636716Z"},{"ID":10758,"Name":"Jaaa","Points":10495,"X":568,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636717Z"},{"ID":10759,"Name":"Twierdza 004","Points":7992,"X":422,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636717Z"},{"ID":10760,"Name":"Wioska 0012","Points":9871,"X":400,"Y":517,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636718Z"},{"ID":10761,"Name":"031","Points":9851,"X":575,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636718Z"},{"ID":10762,"Name":"Wioska 0024","Points":10237,"X":397,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636719Z"},{"ID":10763,"Name":"016","Points":6924,"X":580,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636719Z"},{"ID":10764,"Name":"Twierdza 009","Points":6756,"X":423,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63672Z"},{"ID":10765,"Name":"Tesa 1","Points":10019,"X":604,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636721Z"},{"ID":10766,"Name":"019.","Points":9761,"X":598,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636721Z"},{"ID":10767,"Name":"a moĆŒe off ? :)","Points":9978,"X":579,"Y":570,"Continent":"K55","Bonus":9,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636722Z"},{"ID":10768,"Name":"A012","Points":10237,"X":461,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636722Z"},{"ID":10769,"Name":"***-035-","Points":10083,"X":453,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636723Z"},{"ID":10770,"Name":"005","Points":10273,"X":565,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636723Z"},{"ID":10771,"Name":"018","Points":10252,"X":590,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636724Z"},{"ID":10772,"Name":"081 PRZECIWKO KRÓLESTWU PAKT","Points":10478,"X":411,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636724Z"},{"ID":10773,"Name":"033","Points":4570,"X":584,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636725Z"},{"ID":10774,"Name":"Wioska barbarzyƄska","Points":8281,"X":423,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636726Z"},{"ID":10775,"Name":"Knowhere","Points":9689,"X":395,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636727Z"},{"ID":10776,"Name":"Szlachcic","Points":9701,"X":505,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636727Z"},{"ID":10777,"Name":".achim.","Points":10311,"X":529,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636728Z"},{"ID":10778,"Name":"z 038","Points":10221,"X":558,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636729Z"},{"ID":10780,"Name":"071","Points":10495,"X":601,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63673Z"},{"ID":10781,"Name":"006 Attitude Adjustment","Points":9861,"X":581,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63673Z"},{"ID":10782,"Name":"028","Points":9885,"X":577,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636731Z"},{"ID":10783,"Name":"x barbarzyƄska 007","Points":8485,"X":397,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636732Z"},{"ID":10784,"Name":"sentyment","Points":10140,"X":400,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636732Z"},{"ID":10785,"Name":".:135:. Niangmen","Points":9835,"X":508,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636733Z"},{"ID":10786,"Name":"1.Dallas","Points":9953,"X":551,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636734Z"},{"ID":10787,"Name":"#036","Points":8436,"X":530,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636735Z"},{"ID":10788,"Name":"KIELBA 055","Points":10495,"X":446,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636735Z"},{"ID":10789,"Name":"004.","Points":10025,"X":491,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636736Z"},{"ID":10790,"Name":"018 Hawaii","Points":10495,"X":602,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636736Z"},{"ID":10791,"Name":"033 Greene","Points":9558,"X":602,"Y":526,"Continent":"K56","Bonus":6,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636737Z"},{"ID":10792,"Name":"NOT?","Points":10042,"X":410,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636737Z"},{"ID":10793,"Name":"Brat447","Points":9203,"X":395,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636738Z"},{"ID":10794,"Name":"016 Georgia","Points":10495,"X":604,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636738Z"},{"ID":10795,"Name":"053 BuƂeczka v8","Points":10001,"X":538,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636739Z"},{"ID":10796,"Name":"#024","Points":9761,"X":485,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636739Z"},{"ID":10798,"Name":"Teby_40","Points":9638,"X":481,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63674Z"},{"ID":10799,"Name":"P.029","Points":10268,"X":543,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636741Z"},{"ID":10800,"Name":"#####","Points":10495,"X":562,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636741Z"},{"ID":10801,"Name":"005","Points":10495,"X":553,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636742Z"},{"ID":10802,"Name":"Wioska barbarzyƄska","Points":6203,"X":395,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636742Z"},{"ID":10803,"Name":".:111:. Niangmen","Points":5156,"X":504,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636743Z"},{"ID":10804,"Name":"Kentin ufam Tobie","Points":10000,"X":401,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636743Z"},{"ID":10806,"Name":"065","Points":10495,"X":546,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636744Z"},{"ID":10807,"Name":"- 014 -","Points":10000,"X":538,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636745Z"},{"ID":10808,"Name":"001","Points":10495,"X":605,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636745Z"},{"ID":10809,"Name":"Sparta_18","Points":9638,"X":496,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636746Z"},{"ID":10810,"Name":"Szlachcic","Points":10237,"X":462,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636746Z"},{"ID":10811,"Name":".achim.","Points":10311,"X":519,"Y":398,"Continent":"K35","Bonus":1,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636747Z"},{"ID":10813,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":575,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636747Z"},{"ID":10814,"Name":"020","Points":10019,"X":596,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636748Z"},{"ID":10815,"Name":"z 040","Points":10257,"X":557,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636748Z"},{"ID":10816,"Name":"020","Points":10636,"X":556,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636749Z"},{"ID":10817,"Name":"#0092","Points":10495,"X":512,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63675Z"},{"ID":10818,"Name":"[A]_[018] Dejv.oldplyr","Points":10495,"X":395,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63675Z"},{"ID":10819,"Name":"NOT?","Points":9899,"X":408,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636751Z"},{"ID":10820,"Name":"xxx","Points":10495,"X":514,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636751Z"},{"ID":10821,"Name":"017","Points":6922,"X":580,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636752Z"},{"ID":10822,"Name":"Dąbrowa GĂłrnicza","Points":9883,"X":431,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636752Z"},{"ID":10823,"Name":"A029","Points":10221,"X":450,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636753Z"},{"ID":10824,"Name":"wojtas0114","Points":9835,"X":477,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636753Z"},{"ID":10825,"Name":".achim.","Points":10311,"X":523,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636754Z"},{"ID":10826,"Name":"Jaaa","Points":10219,"X":567,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636754Z"},{"ID":10827,"Name":"Wioska barbarzyƄska","Points":10481,"X":403,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636755Z"},{"ID":10828,"Name":"013 Gundabad","Points":9371,"X":597,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636755Z"},{"ID":10829,"Name":"KIELBA 110","Points":5676,"X":448,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636756Z"},{"ID":10830,"Name":"023","Points":8607,"X":571,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636756Z"},{"ID":10831,"Name":"007 Dakota","Points":10252,"X":598,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636757Z"},{"ID":10832,"Name":"ADEN","Points":9895,"X":581,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636757Z"},{"ID":10834,"Name":"019","Points":6852,"X":578,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636758Z"},{"ID":10836,"Name":"034","Points":10146,"X":596,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636758Z"},{"ID":10837,"Name":"DOM 13 *","Points":9398,"X":560,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636759Z"},{"ID":10838,"Name":"018","Points":10211,"X":581,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636759Z"},{"ID":10839,"Name":"Szlachcic","Points":10160,"X":398,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63676Z"},{"ID":10840,"Name":"0024","Points":10023,"X":603,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63676Z"},{"ID":10841,"Name":"FAKE OR OFF","Points":9853,"X":456,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636761Z"},{"ID":10842,"Name":"A 014.","Points":9994,"X":436,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636762Z"},{"ID":10843,"Name":"029","Points":10495,"X":593,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636762Z"},{"ID":10844,"Name":"Sparta_15","Points":9638,"X":496,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636763Z"},{"ID":10845,"Name":"039","Points":10495,"X":606,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636763Z"},{"ID":10846,"Name":"Gonzzollo 1","Points":12154,"X":403,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636764Z"},{"ID":10847,"Name":"C.001","Points":10237,"X":439,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636764Z"},{"ID":10848,"Name":"0019","Points":10301,"X":606,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636765Z"},{"ID":10849,"Name":"E005","Points":9925,"X":515,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636765Z"},{"ID":10850,"Name":"5. Northumbria","Points":10173,"X":425,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636766Z"},{"ID":10851,"Name":".:103:. Niangmen","Points":9899,"X":503,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636767Z"},{"ID":10852,"Name":"029 Pierwsze wybory Konfederacji","Points":2372,"X":594,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636767Z"},{"ID":10853,"Name":"018. Baba Jaga","Points":9367,"X":510,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636768Z"},{"ID":10854,"Name":"KIELBA 082","Points":10256,"X":457,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636768Z"},{"ID":10855,"Name":"~032.","Points":10495,"X":476,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636769Z"},{"ID":10856,"Name":"054 BuƂeczka v9","Points":10001,"X":537,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63677Z"},{"ID":10857,"Name":"045 BuƂeczka","Points":10001,"X":535,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63677Z"},{"ID":10858,"Name":"002","Points":11550,"X":605,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636771Z"},{"ID":10859,"Name":"Lord Arsey KING","Points":10285,"X":599,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636771Z"},{"ID":10860,"Name":"Wioska barbarzyƄska","Points":10285,"X":411,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636772Z"},{"ID":10861,"Name":"Kentin ufam Tobie","Points":10000,"X":399,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636772Z"},{"ID":10862,"Name":".:043:. Chillout","Points":9953,"X":523,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636773Z"},{"ID":10863,"Name":"- 064 -","Points":10000,"X":536,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636773Z"},{"ID":10864,"Name":"1.Filadelfia","Points":10018,"X":555,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636774Z"},{"ID":10865,"Name":"025","Points":10019,"X":596,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636774Z"},{"ID":10866,"Name":"- 303 -","Points":10000,"X":533,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636775Z"},{"ID":10867,"Name":"- 117 -","Points":10000,"X":549,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636775Z"},{"ID":10868,"Name":"046","Points":10595,"X":566,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636776Z"},{"ID":10869,"Name":"CALL 991","Points":10311,"X":553,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636776Z"},{"ID":10870,"Name":"Wioska barbarzyƄska","Points":10628,"X":403,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636777Z"},{"ID":10871,"Name":"NOT?","Points":10042,"X":407,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636777Z"},{"ID":10872,"Name":"Pjana","Points":9761,"X":415,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636778Z"},{"ID":10873,"Name":"016. Ogar","Points":10008,"X":412,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636779Z"},{"ID":10874,"Name":"1.Los Angeles","Points":9956,"X":544,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636779Z"},{"ID":10875,"Name":"CALL 911","Points":10311,"X":554,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63678Z"},{"ID":10876,"Name":"NOT?","Points":10042,"X":406,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63678Z"},{"ID":10877,"Name":"~077.","Points":10495,"X":494,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636781Z"},{"ID":10878,"Name":"022 Bullridge","Points":10495,"X":601,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636781Z"},{"ID":10879,"Name":"001","Points":10273,"X":570,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636782Z"},{"ID":10880,"Name":"[A]_[004] Dejv.oldplyr","Points":10495,"X":399,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636782Z"},{"ID":10881,"Name":"021 Illinois","Points":10495,"X":605,"Y":489,"Continent":"K46","Bonus":3,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636783Z"},{"ID":10882,"Name":"Horyzont zdarzeƄ","Points":9835,"X":541,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636783Z"},{"ID":10883,"Name":"034 Hedarth","Points":10654,"X":606,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636784Z"},{"ID":10884,"Name":"006","Points":10211,"X":582,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636784Z"},{"ID":10885,"Name":"Jaaa","Points":10495,"X":589,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636785Z"},{"ID":10886,"Name":"0031 Wioska","Points":10146,"X":433,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636786Z"},{"ID":10887,"Name":"Sparta_65","Points":9638,"X":482,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636786Z"},{"ID":10888,"Name":"Wioska barbarzyƄska","Points":9981,"X":513,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636787Z"},{"ID":10889,"Name":"Napewno to nie jest off","Points":10495,"X":496,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636787Z"},{"ID":10890,"Name":"Knowhere","Points":10452,"X":396,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636788Z"},{"ID":10891,"Name":"Wioska 0018","Points":9660,"X":398,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636788Z"},{"ID":10893,"Name":"A.181.02","Points":10242,"X":599,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636789Z"},{"ID":10894,"Name":"Wioska barbarzyƄska","Points":8396,"X":580,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636789Z"},{"ID":10895,"Name":"Osada","Points":9835,"X":496,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63679Z"},{"ID":10896,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":586,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636791Z"},{"ID":10897,"Name":"Witam w wietnamie","Points":10008,"X":415,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636791Z"},{"ID":10898,"Name":"NOT","Points":10042,"X":416,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636792Z"},{"ID":10899,"Name":"00431 pawel84","Points":8829,"X":430,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636792Z"},{"ID":10900,"Name":"048 Viljandi","Points":10146,"X":606,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636793Z"},{"ID":10901,"Name":"Kentin ufam Tobie","Points":10000,"X":397,"Y":488,"Continent":"K43","Bonus":5,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636794Z"},{"ID":10902,"Name":"#032","Points":9756,"X":523,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636794Z"},{"ID":10903,"Name":"020 Aroughs","Points":10030,"X":602,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636795Z"},{"ID":10904,"Name":"033","Points":10971,"X":557,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636795Z"},{"ID":10905,"Name":"040","Points":9339,"X":571,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636796Z"},{"ID":10906,"Name":"054","Points":10495,"X":554,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636796Z"},{"ID":10907,"Name":"Kentin ufam Tobie","Points":10000,"X":397,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636797Z"},{"ID":10908,"Name":"Wioska barbarzyƄska","Points":7167,"X":460,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636797Z"},{"ID":10909,"Name":"A015","Points":10217,"X":463,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636798Z"},{"ID":10910,"Name":".achim.","Points":10311,"X":526,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636799Z"},{"ID":10911,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":404,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636799Z"},{"ID":10912,"Name":"Jaaa","Points":10559,"X":588,"Y":558,"Continent":"K55","Bonus":8,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6368Z"},{"ID":10913,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":575,"Y":511,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6368Z"},{"ID":10914,"Name":"0222","Points":10019,"X":523,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636801Z"},{"ID":10916,"Name":"A030","Points":10096,"X":451,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636801Z"},{"ID":10917,"Name":".achim.","Points":10311,"X":542,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636802Z"},{"ID":10918,"Name":"Teatr","Points":10295,"X":424,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636803Z"},{"ID":10919,"Name":"0042 Wioska","Points":9981,"X":431,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636803Z"},{"ID":10920,"Name":"makelovenotwar4","Points":10068,"X":384,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636804Z"},{"ID":10921,"Name":"046o","Points":11742,"X":445,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636805Z"},{"ID":10922,"Name":"moneciarnia","Points":10285,"X":414,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636806Z"},{"ID":10923,"Name":"Wioska barbarzyƄska","Points":9835,"X":565,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636807Z"},{"ID":10924,"Name":"NOT?","Points":10063,"X":410,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636807Z"},{"ID":10925,"Name":"~028.","Points":10495,"X":476,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636808Z"},{"ID":10926,"Name":"003","Points":10232,"X":487,"Y":602,"Continent":"K64","Bonus":5,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636809Z"},{"ID":10927,"Name":"NOT","Points":10042,"X":419,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63681Z"},{"ID":10928,"Name":"0043 Wioska","Points":10091,"X":431,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63681Z"},{"ID":10929,"Name":"EKG .::. Siwyy8848/5","Points":10495,"X":498,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636811Z"},{"ID":10930,"Name":"Plum","Points":9825,"X":416,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636812Z"},{"ID":10931,"Name":"149","Points":10311,"X":550,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636812Z"},{"ID":10932,"Name":"KIELBA 111","Points":10229,"X":452,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636813Z"},{"ID":10933,"Name":"002 To nie byƂ najlepszy pomysƂ","Points":10000,"X":572,"Y":422,"Continent":"K45","Bonus":6,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636813Z"},{"ID":10934,"Name":"z 036","Points":10230,"X":555,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636814Z"},{"ID":10935,"Name":"Winter is coming","Points":10178,"X":505,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636814Z"},{"ID":10936,"Name":"Witam w wietnamie","Points":10008,"X":417,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636815Z"},{"ID":10937,"Name":".achim.","Points":10290,"X":527,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636815Z"},{"ID":10938,"Name":"FAKE OR OFF","Points":9820,"X":460,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636816Z"},{"ID":10939,"Name":"- 074 -","Points":10000,"X":553,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636817Z"},{"ID":10940,"Name":"Horyzont zdarzeƄ","Points":9898,"X":531,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636817Z"},{"ID":10941,"Name":"009","Points":10211,"X":582,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636818Z"},{"ID":10942,"Name":".:115:. Niangmen","Points":9835,"X":504,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636818Z"},{"ID":10943,"Name":"002. Gloria Victis","Points":10636,"X":440,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636819Z"},{"ID":10944,"Name":"Wioska barbarzyƄska","Points":9224,"X":578,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636819Z"},{"ID":10945,"Name":"027","Points":9701,"X":569,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63682Z"},{"ID":10946,"Name":"K44 x030","Points":9150,"X":464,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63682Z"},{"ID":10947,"Name":"Wioska Meok","Points":10471,"X":543,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636821Z"},{"ID":10948,"Name":"2. Wessex","Points":10100,"X":425,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636821Z"},{"ID":10949,"Name":"Knowhere","Points":10064,"X":394,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636822Z"},{"ID":10950,"Name":"EXA","Points":10252,"X":599,"Y":531,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636822Z"},{"ID":10951,"Name":"Dobranoc","Points":9055,"X":419,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636823Z"},{"ID":10952,"Name":"Wioska 0021","Points":9623,"X":401,"Y":525,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636823Z"},{"ID":10953,"Name":"Knowhere","Points":10282,"X":397,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636824Z"},{"ID":10954,"Name":"008","Points":9835,"X":474,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636824Z"},{"ID":10955,"Name":"144","Points":10311,"X":566,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636825Z"},{"ID":10956,"Name":"Mzm44","Points":10362,"X":604,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636825Z"},{"ID":10957,"Name":"NOT","Points":10042,"X":420,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636826Z"},{"ID":10958,"Name":"~027.","Points":10495,"X":475,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636827Z"},{"ID":10959,"Name":"0057","Points":9860,"X":602,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636827Z"},{"ID":10960,"Name":"EKG .::. freaky97/1","Points":10495,"X":487,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636828Z"},{"ID":10961,"Name":"Omen 1","Points":10104,"X":399,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636828Z"},{"ID":10962,"Name":"Wioska barbarzyƄska","Points":10957,"X":398,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636829Z"},{"ID":10963,"Name":"[012] Vous tuer","Points":10292,"X":601,"Y":524,"Continent":"K56","Bonus":8,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636829Z"},{"ID":10965,"Name":"Jehu_Kingdom_07_","Points":9993,"X":596,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63683Z"},{"ID":10967,"Name":"003","Points":9263,"X":428,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63683Z"},{"ID":10968,"Name":"B 005.","Points":10221,"X":440,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636831Z"},{"ID":10969,"Name":"0025","Points":9916,"X":607,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636831Z"},{"ID":10970,"Name":"A019","Points":10237,"X":463,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636832Z"},{"ID":10971,"Name":"Garnizon_01","Points":9638,"X":512,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636832Z"},{"ID":10972,"Name":"s011","Points":10008,"X":409,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636833Z"},{"ID":10973,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":402,"Y":468,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636833Z"},{"ID":10975,"Name":"019 Kurczaki i Ziemniaki","Points":10003,"X":593,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636834Z"},{"ID":10976,"Name":"Gattacka","Points":9835,"X":597,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636835Z"},{"ID":10977,"Name":"Wioska 454","Points":10495,"X":593,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636835Z"},{"ID":10978,"Name":"KIELBA 120","Points":9718,"X":435,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636836Z"},{"ID":10979,"Name":"106 Suchy Karaluch","Points":10476,"X":409,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636836Z"},{"ID":10980,"Name":"0044 Wioska","Points":10401,"X":438,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636837Z"},{"ID":10981,"Name":"Suppi","Points":9878,"X":411,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636837Z"},{"ID":10982,"Name":"0041 Wioska","Points":10130,"X":432,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636838Z"},{"ID":10983,"Name":"Wioska","Points":8618,"X":604,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636839Z"},{"ID":10984,"Name":"~084.","Points":10495,"X":475,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636839Z"},{"ID":10985,"Name":"A031","Points":10218,"X":450,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63684Z"},{"ID":10986,"Name":"Jaaa","Points":10476,"X":572,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63684Z"},{"ID":10987,"Name":"024.","Points":10072,"X":600,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636841Z"},{"ID":10989,"Name":"x Wioska barbarzyƄska","Points":7494,"X":398,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636841Z"},{"ID":10990,"Name":"B 001.","Points":10495,"X":439,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636842Z"},{"ID":10991,"Name":"A04","Points":10019,"X":600,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636843Z"},{"ID":10992,"Name":"Jaaa","Points":10484,"X":576,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636843Z"},{"ID":10993,"Name":"s010","Points":10008,"X":411,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636844Z"},{"ID":10994,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":404,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636844Z"},{"ID":10995,"Name":"NOT","Points":10042,"X":418,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636845Z"},{"ID":10996,"Name":"EXA","Points":10252,"X":603,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636845Z"},{"ID":10997,"Name":"Suppi","Points":9977,"X":425,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636846Z"},{"ID":10998,"Name":"Gravity","Points":9486,"X":406,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636846Z"},{"ID":10999,"Name":"Szlachcic","Points":10083,"X":396,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636847Z"},{"ID":11000,"Name":"094","Points":10311,"X":569,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636847Z"},{"ID":11001,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":584,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636848Z"},{"ID":11002,"Name":"NOT?","Points":10054,"X":410,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636848Z"},{"ID":11003,"Name":"D004","Points":9925,"X":511,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636849Z"},{"ID":11004,"Name":"Wioska *wyrwszat","Points":9496,"X":461,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63685Z"},{"ID":11005,"Name":".achim.","Points":10311,"X":517,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63685Z"},{"ID":11006,"Name":"K44 x018","Points":7262,"X":442,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636851Z"},{"ID":11007,"Name":"SSJ 006","Points":9761,"X":488,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636851Z"},{"ID":11008,"Name":".:046:.Chillout","Points":10495,"X":502,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636852Z"},{"ID":11009,"Name":"EKG M12","Points":10231,"X":486,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636853Z"},{"ID":11010,"Name":"BBB","Points":10861,"X":560,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636853Z"},{"ID":11011,"Name":"Wioska","Points":9330,"X":606,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636854Z"},{"ID":11012,"Name":"019. Mithril Mountain","Points":9860,"X":435,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636854Z"},{"ID":11013,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":573,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636855Z"},{"ID":11014,"Name":"A002","Points":11073,"X":467,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636856Z"},{"ID":11015,"Name":"BBB","Points":6920,"X":564,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636856Z"},{"ID":11016,"Name":"Wioska barbarzyƄska","Points":10311,"X":516,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636857Z"},{"ID":11017,"Name":"NOT?","Points":10042,"X":408,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636857Z"},{"ID":11018,"Name":"Wioska barbarzyƄska","Points":8504,"X":607,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636858Z"},{"ID":11019,"Name":"NOT!!","Points":10495,"X":470,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636858Z"},{"ID":11020,"Name":"Motywacja *","Points":7510,"X":396,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636859Z"},{"ID":11021,"Name":"NOT!!","Points":10042,"X":467,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636859Z"},{"ID":11022,"Name":"gdzie napisane ĆŒe moĆŒna farmić?","Points":9835,"X":464,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63686Z"},{"ID":11023,"Name":"0025","Points":9966,"X":603,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63686Z"},{"ID":11024,"Name":"*038*","Points":3196,"X":604,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636861Z"},{"ID":11025,"Name":"Pataszon","Points":9761,"X":414,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636861Z"},{"ID":11027,"Name":".achim.","Points":10311,"X":517,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636862Z"},{"ID":11028,"Name":"Gravity","Points":9488,"X":405,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636862Z"},{"ID":11029,"Name":"Wioska barbarzyƄska","Points":10971,"X":400,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636863Z"},{"ID":11030,"Name":"0051","Points":8847,"X":461,"Y":475,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636863Z"},{"ID":11031,"Name":"NOT?","Points":5535,"X":405,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636864Z"},{"ID":11032,"Name":"022","Points":8903,"X":405,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636864Z"},{"ID":11033,"Name":"Tesa 2","Points":10019,"X":601,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636865Z"},{"ID":11034,"Name":"011","Points":9821,"X":596,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636865Z"},{"ID":11035,"Name":"ƚmieszki","Points":9057,"X":531,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636866Z"},{"ID":11036,"Name":"019. Kalf","Points":10030,"X":585,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636866Z"},{"ID":11037,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":572,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636867Z"},{"ID":11038,"Name":"Twierdza 006","Points":9046,"X":421,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636868Z"},{"ID":11039,"Name":"0223","Points":10495,"X":522,"Y":602,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636868Z"},{"ID":11040,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":398,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636869Z"},{"ID":11041,"Name":"020","Points":10495,"X":556,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636869Z"},{"ID":11042,"Name":"037","Points":9761,"X":500,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63687Z"},{"ID":11043,"Name":".achim.","Points":10311,"X":529,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63687Z"},{"ID":11044,"Name":"- 107 -","Points":10000,"X":534,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636871Z"},{"ID":11045,"Name":"105 RUSZYMY NA ZNAK (BACH)","Points":10241,"X":409,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636872Z"},{"ID":11047,"Name":"A11 Maroni","Points":10019,"X":599,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636872Z"},{"ID":11048,"Name":"0543","Points":12154,"X":474,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636873Z"},{"ID":11049,"Name":"001. Kathare","Points":10444,"X":564,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636873Z"},{"ID":11050,"Name":"Suppi","Points":9978,"X":426,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636874Z"},{"ID":11051,"Name":"HoƂopole","Points":10311,"X":490,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636874Z"},{"ID":11053,"Name":"057 Wioska barbarzyƄska","Points":10001,"X":539,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636875Z"},{"ID":11054,"Name":"Jaaa","Points":10495,"X":590,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636875Z"},{"ID":11055,"Name":"024","Points":9701,"X":402,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636876Z"},{"ID":11056,"Name":"013","Points":10223,"X":599,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636877Z"},{"ID":11057,"Name":"051","Points":9778,"X":566,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636877Z"},{"ID":11058,"Name":"D003","Points":9925,"X":512,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636878Z"},{"ID":11059,"Name":"002","Points":10380,"X":490,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636878Z"},{"ID":11060,"Name":"Wioska barbarzyƄska","Points":9725,"X":580,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636879Z"},{"ID":11061,"Name":"007","Points":8602,"X":425,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63688Z"},{"ID":11062,"Name":"Napewno to nie jest off","Points":6832,"X":499,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636881Z"},{"ID":11063,"Name":"FAKE OR OFF","Points":9826,"X":457,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636881Z"},{"ID":11064,"Name":"027 Dalgon","Points":10362,"X":607,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636882Z"},{"ID":11065,"Name":"029","Points":10284,"X":397,"Y":495,"Continent":"K43","Bonus":1,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636883Z"},{"ID":11066,"Name":"Szlachcic !!!","Points":9637,"X":504,"Y":470,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636883Z"},{"ID":11067,"Name":"Rotrigo","Points":10503,"X":402,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636884Z"},{"ID":11068,"Name":"Tank 004. *NW*","Points":9959,"X":398,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636885Z"},{"ID":11069,"Name":"PiekƂo to inni","Points":10019,"X":486,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636886Z"},{"ID":11070,"Name":"Wioska barbarzyƄska","Points":9994,"X":515,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636887Z"},{"ID":11071,"Name":"[A]_[014] Dejv.oldplyr","Points":10444,"X":395,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636887Z"},{"ID":11072,"Name":"Wioska barbarzyƄska","Points":9393,"X":402,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636888Z"},{"ID":11073,"Name":"004","Points":10285,"X":410,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636889Z"},{"ID":11074,"Name":"Sector 4","Points":10559,"X":513,"Y":605,"Continent":"K65","Bonus":2,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636889Z"},{"ID":11075,"Name":"One","Points":9267,"X":585,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63689Z"},{"ID":11076,"Name":"[377] Chorągiewka na wietrze","Points":10397,"X":583,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63689Z"},{"ID":11077,"Name":"072","Points":10495,"X":607,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636891Z"},{"ID":11078,"Name":"0015","Points":10301,"X":603,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636891Z"},{"ID":11079,"Name":".achim.","Points":10311,"X":531,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636892Z"},{"ID":11080,"Name":"040 Charpo","Points":10559,"X":627,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636893Z"},{"ID":11081,"Name":"[373] Chorągiewka na wietrze","Points":10411,"X":586,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636893Z"},{"ID":11082,"Name":"Vasperland_009","Points":10478,"X":624,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636894Z"},{"ID":11083,"Name":"Bucks x Kamiiiru","Points":10635,"X":457,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636894Z"},{"ID":11085,"Name":"0224","Points":10019,"X":519,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636895Z"},{"ID":11086,"Name":"Formouth Garrison","Points":10224,"X":527,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636895Z"},{"ID":11087,"Name":"Gattacka","Points":10160,"X":605,"Y":503,"Continent":"K56","Bonus":8,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636896Z"},{"ID":11088,"Name":"Ethan Hunt 03","Points":9860,"X":601,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636896Z"},{"ID":11089,"Name":".achim.","Points":10311,"X":518,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636897Z"},{"ID":11090,"Name":"007 Ogr","Points":10143,"X":401,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636897Z"},{"ID":11091,"Name":".achim.","Points":10259,"X":530,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636898Z"},{"ID":11092,"Name":"sƂodziuteƄka 07","Points":3752,"X":599,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636898Z"},{"ID":11093,"Name":"070","Points":10042,"X":413,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636899Z"},{"ID":11094,"Name":"+44 74 Saint Bonnet de Mure","Points":9669,"X":447,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636899Z"},{"ID":11095,"Name":"048o","Points":10178,"X":443,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6369Z"},{"ID":11096,"Name":"Wioska 453","Points":10495,"X":595,"Y":549,"Continent":"K55","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6369Z"},{"ID":11097,"Name":"0038","Points":7557,"X":450,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636901Z"},{"ID":11098,"Name":".achim.","Points":10311,"X":529,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636902Z"},{"ID":11099,"Name":"Gravity","Points":9550,"X":403,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636902Z"},{"ID":11100,"Name":"Knowhere","Points":3418,"X":397,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636903Z"},{"ID":11101,"Name":"A15","Points":10019,"X":600,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636903Z"},{"ID":11102,"Name":"Szlachcic","Points":10237,"X":454,"Y":403,"Continent":"K44","Bonus":8,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636904Z"},{"ID":11103,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":403,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636904Z"},{"ID":11104,"Name":"[037]","Points":10170,"X":594,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636905Z"},{"ID":11105,"Name":".achim.","Points":10311,"X":519,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636905Z"},{"ID":11106,"Name":"032 Doru Araeba","Points":11074,"X":605,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636906Z"},{"ID":11107,"Name":"Gomora","Points":12154,"X":509,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636906Z"},{"ID":11108,"Name":"HoƂopole","Points":10311,"X":490,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636907Z"},{"ID":11109,"Name":"#001","Points":9740,"X":545,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636907Z"},{"ID":11110,"Name":"Wioska barbarzyƄska","Points":10160,"X":402,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636908Z"},{"ID":11111,"Name":"004","Points":10273,"X":573,"Y":579,"Continent":"K55","Bonus":1,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636908Z"},{"ID":11112,"Name":"0039 Wioska","Points":10222,"X":437,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636909Z"},{"ID":11113,"Name":"002","Points":10285,"X":409,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636909Z"},{"ID":11114,"Name":"mamm","Points":9835,"X":569,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63691Z"},{"ID":11115,"Name":"1.San Diego","Points":9965,"X":550,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63691Z"},{"ID":11116,"Name":"[A]_[010] Dejv.oldplyr","Points":10495,"X":397,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636911Z"},{"ID":11117,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":398,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636911Z"},{"ID":11118,"Name":"Szlachcic","Points":10237,"X":458,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636912Z"},{"ID":11119,"Name":"Knowhere","Points":10064,"X":394,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636913Z"},{"ID":11120,"Name":"Wioska Gilbert","Points":9835,"X":564,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636913Z"},{"ID":11121,"Name":".achim.","Points":10311,"X":516,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636914Z"},{"ID":11122,"Name":"005","Points":9873,"X":404,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636914Z"},{"ID":11123,"Name":"D002","Points":9925,"X":511,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636915Z"},{"ID":11124,"Name":"NOT?","Points":10042,"X":407,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636915Z"},{"ID":11125,"Name":"PiekƂo to inni","Points":10083,"X":484,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636916Z"},{"ID":11126,"Name":"004 Gusto","Points":10143,"X":401,"Y":539,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636916Z"},{"ID":11127,"Name":"Wioska barbarzyƄska","Points":10285,"X":411,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636917Z"},{"ID":11129,"Name":"026","Points":10495,"X":564,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636917Z"},{"ID":11130,"Name":"012","Points":9873,"X":405,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636918Z"},{"ID":11132,"Name":"006","Points":10345,"X":585,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636918Z"},{"ID":11133,"Name":"~002.","Points":10495,"X":495,"Y":606,"Continent":"K64","Bonus":8,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636919Z"},{"ID":11134,"Name":"0077","Points":9976,"X":446,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636919Z"},{"ID":11135,"Name":".achim.","Points":10311,"X":525,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63692Z"},{"ID":11136,"Name":"A032","Points":10229,"X":449,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63692Z"},{"ID":11137,"Name":"PYZA 003 Gajder","Points":10046,"X":580,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636921Z"},{"ID":11138,"Name":"007","Points":5778,"X":582,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636921Z"},{"ID":11139,"Name":"PiekƂo to inni","Points":10019,"X":484,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636922Z"},{"ID":11140,"Name":"0225","Points":10083,"X":520,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636922Z"},{"ID":11141,"Name":"00331 Wioska","Points":9096,"X":431,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636923Z"},{"ID":11142,"Name":"Bagdad","Points":9835,"X":475,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636924Z"},{"ID":11143,"Name":"010","Points":10495,"X":553,"Y":412,"Continent":"K45","Bonus":3,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636924Z"},{"ID":11144,"Name":"-002- Psst psst psst","Points":10495,"X":456,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636925Z"},{"ID":11145,"Name":"Szlachcic","Points":10237,"X":478,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636925Z"},{"ID":11146,"Name":"139 s004","Points":10838,"X":406,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636926Z"},{"ID":11147,"Name":"140 s009","Points":10728,"X":407,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636926Z"},{"ID":11149,"Name":"Horyzont zdarzeƄ","Points":10019,"X":539,"Y":596,"Continent":"K55","Bonus":6,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636927Z"},{"ID":11150,"Name":"- 125 -","Points":9623,"X":550,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636927Z"},{"ID":11151,"Name":"VN Dante Zogriatis","Points":9626,"X":475,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636928Z"},{"ID":11152,"Name":"0062","Points":10346,"X":606,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636928Z"},{"ID":11153,"Name":"B19","Points":9761,"X":499,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636929Z"},{"ID":11154,"Name":"Jaaa","Points":10194,"X":569,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636929Z"},{"ID":11155,"Name":"PiekƂo to inni","Points":10019,"X":486,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63693Z"},{"ID":11156,"Name":"Tesa 6","Points":10019,"X":603,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636931Z"},{"ID":11157,"Name":"#037","Points":10393,"X":482,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636931Z"},{"ID":11158,"Name":".:133:. Niangmen","Points":9899,"X":507,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636932Z"},{"ID":11159,"Name":"[A]_[001] Dejv.oldplyr","Points":10495,"X":394,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636932Z"},{"ID":11160,"Name":"015","Points":10149,"X":592,"Y":447,"Continent":"K45","Bonus":2,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636933Z"},{"ID":11161,"Name":"FAKE OR OFF","Points":9825,"X":459,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636933Z"},{"ID":11162,"Name":"002","Points":3437,"X":584,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":698169715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636934Z"},{"ID":11163,"Name":"058 Wioska Ɓasiak17","Points":10001,"X":540,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636935Z"},{"ID":11164,"Name":"0628","Points":10019,"X":444,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636935Z"},{"ID":11165,"Name":"037","Points":10495,"X":561,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636936Z"},{"ID":11166,"Name":"023. Frontier","Points":7337,"X":436,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636936Z"},{"ID":11167,"Name":"003. Sussex","Points":9924,"X":424,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636937Z"},{"ID":11168,"Name":"- 024 -","Points":10000,"X":542,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636937Z"},{"ID":11169,"Name":"040","Points":10183,"X":542,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636938Z"},{"ID":11170,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":387,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636938Z"},{"ID":11171,"Name":"Elevator Hall","Points":8700,"X":532,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636939Z"},{"ID":11172,"Name":"0201","Points":10495,"X":451,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636939Z"},{"ID":11173,"Name":"BBB","Points":8101,"X":584,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63694Z"},{"ID":11175,"Name":"009. Sztucznie","Points":9790,"X":475,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636941Z"},{"ID":11176,"Name":"Szlachcic","Points":10237,"X":459,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636941Z"},{"ID":11177,"Name":"Kentin ufam Tobie","Points":10000,"X":396,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636942Z"},{"ID":11179,"Name":"A07","Points":10019,"X":599,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636942Z"},{"ID":11180,"Name":"- 067 -","Points":10000,"X":549,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636943Z"},{"ID":11181,"Name":"012","Points":9963,"X":505,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636943Z"},{"ID":11182,"Name":"055 BuƂeczka vv10","Points":9580,"X":537,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636944Z"},{"ID":11183,"Name":"~042.","Points":10495,"X":481,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636944Z"},{"ID":11184,"Name":"K34 x023","Points":10495,"X":467,"Y":397,"Continent":"K34","Bonus":2,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636945Z"},{"ID":11185,"Name":"[401]Chwila prawdy","Points":7204,"X":578,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636945Z"},{"ID":11186,"Name":"KONFA TO MARKA, NARKA","Points":10375,"X":404,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636946Z"},{"ID":11187,"Name":"011","Points":10495,"X":606,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636946Z"},{"ID":11188,"Name":"017","Points":10495,"X":606,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636947Z"},{"ID":11189,"Name":"Wioska barbarzyƄska","Points":9965,"X":510,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636947Z"},{"ID":11190,"Name":"D005","Points":9925,"X":509,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636948Z"},{"ID":11191,"Name":"0000002$","Points":10475,"X":434,"Y":579,"Continent":"K54","Bonus":8,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636948Z"},{"ID":11192,"Name":"North Blue","Points":10311,"X":485,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636949Z"},{"ID":11193,"Name":"Knowhere","Points":10452,"X":396,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63695Z"},{"ID":11195,"Name":"xhav","Points":10057,"X":396,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63695Z"},{"ID":11196,"Name":"0640","Points":10019,"X":444,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636951Z"},{"ID":11197,"Name":"Szlachcic","Points":10237,"X":474,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636951Z"},{"ID":11198,"Name":"EKG .::. freaky97/4","Points":10495,"X":485,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636952Z"},{"ID":11199,"Name":".:102:. Niangmen","Points":9899,"X":504,"Y":393,"Continent":"K35","Bonus":7,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636952Z"},{"ID":11200,"Name":"yogi","Points":10019,"X":529,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636953Z"},{"ID":11201,"Name":"A05","Points":9761,"X":506,"Y":393,"Continent":"K35","Bonus":3,"PlayerID":849093422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636954Z"},{"ID":11202,"Name":"kathare xx","Points":10545,"X":519,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636954Z"},{"ID":11203,"Name":"K44 x011","Points":9194,"X":451,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636955Z"},{"ID":11204,"Name":"D023","Points":9861,"X":509,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636956Z"},{"ID":11205,"Name":"019","Points":9742,"X":394,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636956Z"},{"ID":11206,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":401,"Y":464,"Continent":"K44","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636957Z"},{"ID":11208,"Name":"NOT?","Points":10042,"X":403,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636958Z"},{"ID":11209,"Name":"104 POCZUJE KAĆ»DY WACK","Points":10542,"X":410,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636959Z"},{"ID":11210,"Name":"A03","Points":10019,"X":600,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636959Z"},{"ID":11212,"Name":"barba","Points":10008,"X":464,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63696Z"},{"ID":11213,"Name":"Knowhere","Points":10452,"X":392,"Y":503,"Continent":"K53","Bonus":1,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636961Z"},{"ID":11214,"Name":"0015","Points":9372,"X":472,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636962Z"},{"ID":11215,"Name":"Gravity","Points":9488,"X":407,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636962Z"},{"ID":11216,"Name":"ADEN","Points":10898,"X":563,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636963Z"},{"ID":11217,"Name":"003","Points":10362,"X":587,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636964Z"},{"ID":11218,"Name":"NOT?","Points":10042,"X":405,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636965Z"},{"ID":11219,"Name":"HoƂopole","Points":9835,"X":498,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636965Z"},{"ID":11220,"Name":"[374] Chorągiewka na wietrze","Points":10411,"X":587,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636966Z"},{"ID":11221,"Name":"A08","Points":10019,"X":599,"Y":461,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636966Z"},{"ID":11222,"Name":"024","Points":10495,"X":608,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636967Z"},{"ID":11224,"Name":"PiekƂo to inni","Points":10019,"X":485,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636967Z"},{"ID":11225,"Name":"006 Otwieraj ryyyyjjjj","Points":10476,"X":604,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636968Z"},{"ID":11226,"Name":"030","Points":10495,"X":565,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636968Z"},{"ID":11227,"Name":"016 Denver","Points":10476,"X":430,"Y":420,"Continent":"K44","Bonus":2,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636969Z"},{"ID":11228,"Name":"0082","Points":9585,"X":441,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636969Z"},{"ID":11229,"Name":"#009","Points":9740,"X":537,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63697Z"},{"ID":11230,"Name":"024","Points":10048,"X":593,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636971Z"},{"ID":11231,"Name":"B.006","Points":10495,"X":415,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636971Z"},{"ID":11232,"Name":"Horyzont zdarzeƄ","Points":9835,"X":535,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636972Z"},{"ID":11233,"Name":"016","Points":10495,"X":557,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636972Z"},{"ID":11234,"Name":"013","Points":10019,"X":596,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636973Z"},{"ID":11235,"Name":"Knowhere","Points":10282,"X":395,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636973Z"},{"ID":11236,"Name":"039 Naantali","Points":9811,"X":600,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636974Z"},{"ID":11237,"Name":"#037","Points":5481,"X":532,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636974Z"},{"ID":11238,"Name":"Wioska krulu zloty","Points":10475,"X":399,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636975Z"},{"ID":11239,"Name":"PYRLANDIA 027","Points":10063,"X":564,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636975Z"},{"ID":11240,"Name":"Wioska","Points":10178,"X":394,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636976Z"},{"ID":11241,"Name":"0627","Points":10019,"X":443,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636977Z"},{"ID":11242,"Name":"Wioska barbarzyƄska","Points":5974,"X":395,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636977Z"},{"ID":11243,"Name":"008 Bonus wyyymiękƂ","Points":10476,"X":603,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636978Z"},{"ID":11244,"Name":"Z01","Points":10252,"X":514,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636979Z"},{"ID":11245,"Name":"003. Bjorn","Points":10252,"X":585,"Y":567,"Continent":"K55","Bonus":2,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636979Z"},{"ID":11246,"Name":"004","Points":10495,"X":552,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63698Z"},{"ID":11247,"Name":"Suppi","Points":9811,"X":425,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63698Z"},{"ID":11248,"Name":"016","Points":9976,"X":591,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636981Z"},{"ID":11249,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":402,"Y":464,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636982Z"},{"ID":11250,"Name":"Wioska barbarzyƄska","Points":5709,"X":469,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636982Z"},{"ID":11251,"Name":"FAKE OR OFF","Points":9834,"X":460,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636983Z"},{"ID":11252,"Name":"013","Points":10495,"X":552,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636983Z"},{"ID":11253,"Name":"Szlachcic","Points":10237,"X":471,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636984Z"},{"ID":11254,"Name":"[A]_[020] Dejv.oldplyr","Points":10495,"X":395,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636985Z"},{"ID":11255,"Name":"NOT?","Points":10042,"X":408,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636985Z"},{"ID":11256,"Name":"=002= ByƂa akcja","Points":10145,"X":606,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636986Z"},{"ID":11257,"Name":".achim.","Points":10311,"X":530,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636986Z"},{"ID":11258,"Name":"Coruscant 3","Points":9797,"X":500,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636987Z"},{"ID":11259,"Name":"008","Points":10495,"X":608,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636987Z"},{"ID":11260,"Name":"!Wioska 520","Points":10495,"X":560,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636988Z"},{"ID":11261,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":573,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636988Z"},{"ID":11262,"Name":".:008:. Chillout","Points":10268,"X":499,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636989Z"},{"ID":11263,"Name":"Bucks x Kamiiiru","Points":10971,"X":456,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636989Z"},{"ID":11264,"Name":"~029.","Points":10495,"X":476,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63699Z"},{"ID":11266,"Name":"014","Points":10342,"X":589,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636991Z"},{"ID":11267,"Name":"0086","Points":9525,"X":441,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636991Z"},{"ID":11268,"Name":"073","Points":6251,"X":607,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636992Z"},{"ID":11269,"Name":"0270","Points":10019,"X":527,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636992Z"},{"ID":11270,"Name":"[039]","Points":10161,"X":594,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636993Z"},{"ID":11271,"Name":"Szlachcic","Points":10237,"X":477,"Y":399,"Continent":"K34","Bonus":9,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636993Z"},{"ID":11272,"Name":"Hojo s Laboratory Sublevel","Points":10160,"X":521,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636994Z"},{"ID":11273,"Name":"151","Points":10311,"X":573,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636994Z"},{"ID":11274,"Name":"Z14","Points":10120,"X":548,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636995Z"},{"ID":11275,"Name":"- 055 -","Points":10000,"X":539,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636996Z"},{"ID":11276,"Name":"*021*","Points":8448,"X":606,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636996Z"},{"ID":11277,"Name":"005 Wioska barbarzyƄska","Points":4232,"X":608,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":6409472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636997Z"},{"ID":11278,"Name":"004","Points":7978,"X":515,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636997Z"},{"ID":11279,"Name":"0045 Wioska","Points":9867,"X":436,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636998Z"},{"ID":11280,"Name":"ccc","Points":10484,"X":607,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636998Z"},{"ID":11281,"Name":"Wioska barbarzyƄska","Points":7242,"X":579,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636999Z"},{"ID":11282,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":398,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.636999Z"},{"ID":11283,"Name":"00191 Wioska","Points":10072,"X":437,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637Z"},{"ID":11284,"Name":"Tank xx Niesamowity jeĆșdziec","Points":10016,"X":396,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637Z"},{"ID":11285,"Name":"- 110 -","Points":9154,"X":540,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637001Z"},{"ID":11286,"Name":"Wioska barbarzyƄska","Points":10285,"X":408,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637001Z"},{"ID":11287,"Name":"Sector 4 Slums Area","Points":10141,"X":528,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637002Z"},{"ID":11288,"Name":"027","Points":10495,"X":604,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637002Z"},{"ID":11289,"Name":"~007.","Points":10495,"X":503,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637003Z"},{"ID":11290,"Name":"K44 x032","Points":9006,"X":463,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637003Z"},{"ID":11291,"Name":"0635","Points":10019,"X":446,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637004Z"},{"ID":11292,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":397,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637004Z"},{"ID":11293,"Name":"Osada","Points":10300,"X":500,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637005Z"},{"ID":11294,"Name":"Drum Island","Points":10068,"X":486,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637005Z"},{"ID":11295,"Name":"004","Points":10311,"X":564,"Y":413,"Continent":"K45","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637006Z"},{"ID":11296,"Name":"Wioska dabkof","Points":10019,"X":604,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637006Z"},{"ID":11297,"Name":"Jaaa","Points":10481,"X":588,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637007Z"},{"ID":11298,"Name":"moze teraz","Points":9622,"X":559,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637008Z"},{"ID":11299,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":393,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637008Z"},{"ID":11300,"Name":"016","Points":10019,"X":595,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637009Z"},{"ID":11301,"Name":"Gryfios 001","Points":10495,"X":616,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637009Z"},{"ID":11302,"Name":"Tesa 4","Points":10019,"X":603,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63701Z"},{"ID":11303,"Name":"181","Points":9452,"X":592,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63701Z"},{"ID":11304,"Name":"010","Points":10211,"X":583,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637011Z"},{"ID":11305,"Name":"PiekƂo to inni","Points":10160,"X":480,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637011Z"},{"ID":11306,"Name":"0028 Wioska","Points":10072,"X":434,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637012Z"},{"ID":11307,"Name":"019 - Edzna***","Points":10495,"X":437,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637012Z"},{"ID":11309,"Name":"Wioska barbarzyƄska","Points":10551,"X":396,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637013Z"},{"ID":11310,"Name":"[A]_[005] Dejv.oldplyr","Points":10495,"X":396,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637013Z"},{"ID":11311,"Name":"NOT","Points":10042,"X":416,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637014Z"},{"ID":11312,"Name":"004","Points":9761,"X":397,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637015Z"},{"ID":11313,"Name":"NOT","Points":10042,"X":416,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637015Z"},{"ID":11314,"Name":"PYRLANDIA 025 pod ce","Points":10311,"X":560,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637016Z"},{"ID":11315,"Name":"barba","Points":10008,"X":464,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637017Z"},{"ID":11316,"Name":"Jaaa","Points":10476,"X":571,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637017Z"},{"ID":11317,"Name":"003 mucharadza","Points":10488,"X":604,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637018Z"},{"ID":11318,"Name":".:113:. Niangmen","Points":9835,"X":508,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637018Z"},{"ID":11319,"Name":"019. Gloria Victis","Points":10461,"X":440,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637019Z"},{"ID":11320,"Name":".:130:. Niangmen","Points":9899,"X":509,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637019Z"},{"ID":11321,"Name":".:104:. Niangmen","Points":9899,"X":501,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63702Z"},{"ID":11322,"Name":"008","Points":10495,"X":438,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63702Z"},{"ID":11323,"Name":"*006*","Points":8468,"X":606,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637021Z"},{"ID":11324,"Name":"006","Points":10569,"X":599,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637021Z"},{"ID":11325,"Name":"Knowhere","Points":10452,"X":378,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637022Z"},{"ID":11326,"Name":"x R017","Points":9400,"X":393,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637022Z"},{"ID":11327,"Name":"Okonek","Points":9365,"X":399,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637023Z"},{"ID":11328,"Name":"Wioska 0023","Points":9923,"X":394,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637023Z"},{"ID":11329,"Name":"Jaaa","Points":10479,"X":573,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637024Z"},{"ID":11330,"Name":"Wioska 2","Points":3554,"X":547,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637025Z"},{"ID":11331,"Name":"Wioska barbarzyƄska","Points":9835,"X":564,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637025Z"},{"ID":11332,"Name":"Knowhere","Points":10064,"X":394,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637026Z"},{"ID":11333,"Name":"Twierdza","Points":9234,"X":421,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637026Z"},{"ID":11334,"Name":"003","Points":9761,"X":395,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637027Z"},{"ID":11335,"Name":"Brat447","Points":10952,"X":392,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637027Z"},{"ID":11336,"Name":"FAKE OR OFF","Points":9830,"X":456,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637028Z"},{"ID":11337,"Name":"0032 Wioska S","Points":9905,"X":433,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637028Z"},{"ID":11338,"Name":"*Tam02*","Points":10311,"X":525,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637029Z"},{"ID":11339,"Name":"015 Florida","Points":10495,"X":606,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63703Z"},{"ID":11340,"Name":"0638","Points":10019,"X":447,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63703Z"},{"ID":11341,"Name":"EKG .::. freaky97/5","Points":10495,"X":486,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637031Z"},{"ID":11342,"Name":"Kentin ufam Tobie","Points":10000,"X":440,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637032Z"},{"ID":11343,"Name":"[A]_[040] Dejv.oldplyr","Points":10495,"X":410,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637033Z"},{"ID":11344,"Name":"~010.","Points":10495,"X":495,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637034Z"},{"ID":11345,"Name":"~016.","Points":10495,"X":503,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637035Z"},{"ID":11346,"Name":"A033","Points":10226,"X":448,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637035Z"},{"ID":11347,"Name":"bandzior","Points":10294,"X":529,"Y":603,"Continent":"K65","Bonus":6,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637036Z"},{"ID":11348,"Name":"038","Points":5437,"X":549,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637037Z"},{"ID":11349,"Name":"[376] Chorągiewka na wietrze++","Points":10411,"X":583,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637037Z"},{"ID":11350,"Name":"BBB","Points":6841,"X":554,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637038Z"},{"ID":11352,"Name":"~063.","Points":10027,"X":474,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637039Z"},{"ID":11353,"Name":"003","Points":10285,"X":412,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63704Z"},{"ID":11354,"Name":"0041 MzM","Points":9821,"X":594,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.63704Z"},{"ID":11355,"Name":"A009","Points":10237,"X":459,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637041Z"},{"ID":11356,"Name":".:101:. Niangmen","Points":9899,"X":507,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637041Z"},{"ID":11357,"Name":"Kentin ufam Tobie","Points":10000,"X":394,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637042Z"},{"ID":11358,"Name":".:045:. Chillout","Points":10495,"X":503,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637042Z"},{"ID":11359,"Name":"NOT?","Points":10042,"X":407,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637043Z"},{"ID":11360,"Name":"004 Melon944","Points":10495,"X":606,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637043Z"},{"ID":11361,"Name":"Wioska","Points":10178,"X":392,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637044Z"},{"ID":11362,"Name":"0226","Points":10019,"X":521,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637044Z"},{"ID":11363,"Name":"NOT!!","Points":10042,"X":467,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637045Z"},{"ID":11364,"Name":"K34 - [001] Before Land","Points":10259,"X":458,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637045Z"},{"ID":11365,"Name":"Jaaa","Points":10479,"X":590,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637046Z"},{"ID":11366,"Name":"Bocianikson014","Points":9950,"X":606,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637046Z"},{"ID":11367,"Name":"0059","Points":10133,"X":605,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637047Z"},{"ID":11368,"Name":"003 Kartagina","Points":9771,"X":604,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637047Z"},{"ID":11369,"Name":"Sparta_20","Points":9638,"X":494,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637048Z"},{"ID":11370,"Name":"Wioska barbarzyƄska","Points":10285,"X":408,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637048Z"},{"ID":11371,"Name":".achim.","Points":10311,"X":534,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.637049Z"},{"ID":11372,"Name":"- 079 -","Points":10000,"X":553,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669008Z"},{"ID":11373,"Name":"[352] Chorągiewka na wietrze","Points":10287,"X":591,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669009Z"},{"ID":11374,"Name":".:047:. Chillout","Points":10495,"X":505,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669009Z"},{"ID":11375,"Name":"A045","Points":7833,"X":462,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66901Z"},{"ID":11376,"Name":"Wioska barbarzyƄska","Points":5222,"X":394,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669011Z"},{"ID":11377,"Name":"KIELBA 095","Points":7079,"X":449,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669012Z"},{"ID":11378,"Name":"0005 niespodzianka","Points":10336,"X":579,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669012Z"},{"ID":11379,"Name":"035","Points":10495,"X":545,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669013Z"},{"ID":11380,"Name":"014","Points":10019,"X":597,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669014Z"},{"ID":11381,"Name":"Wioska barbarzyƄska","Points":9835,"X":569,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669014Z"},{"ID":11382,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":397,"Y":470,"Continent":"K43","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669015Z"},{"ID":11383,"Name":"031","Points":10007,"X":566,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669016Z"},{"ID":11384,"Name":"009. Lunden","Points":10090,"X":424,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669017Z"},{"ID":11385,"Name":"006 barbarzyƄska","Points":10281,"X":603,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669017Z"},{"ID":11386,"Name":"~004.","Points":10495,"X":494,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669018Z"},{"ID":11387,"Name":"*Tytan zerknij w notkę","Points":10052,"X":586,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669019Z"},{"ID":11388,"Name":"189","Points":10311,"X":575,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66902Z"},{"ID":11389,"Name":"NOT?","Points":9138,"X":402,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66902Z"},{"ID":11390,"Name":".:106:. Niangmen","Points":9899,"X":503,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669021Z"},{"ID":11391,"Name":"Brat447","Points":4937,"X":394,"Y":512,"Continent":"K53","Bonus":4,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669022Z"},{"ID":11392,"Name":"009","Points":3656,"X":479,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669023Z"},{"ID":11393,"Name":"PiekƂo to inni","Points":10160,"X":484,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669023Z"},{"ID":11394,"Name":"EKG .::. KOM 002 Sobie","Points":10273,"X":478,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669024Z"},{"ID":11396,"Name":"- 059 -","Points":10000,"X":548,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669025Z"},{"ID":11397,"Name":"003a o","Points":6716,"X":430,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669026Z"},{"ID":11398,"Name":"HOTEL 3","Points":9761,"X":566,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669026Z"},{"ID":11399,"Name":"KIELBA 078","Points":10365,"X":458,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669027Z"},{"ID":11400,"Name":"053","Points":10495,"X":605,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669028Z"},{"ID":11401,"Name":"Myk i do kieszonki","Points":9799,"X":379,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669028Z"},{"ID":11402,"Name":"SsSs","Points":10019,"X":393,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669029Z"},{"ID":11403,"Name":"NOT","Points":10042,"X":413,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66903Z"},{"ID":11404,"Name":"025","Points":10219,"X":594,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669031Z"},{"ID":11405,"Name":"ZrolowanaStĂłwa","Points":10434,"X":554,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669031Z"},{"ID":11406,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":397,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669032Z"},{"ID":11407,"Name":"Wioska barbarzyƄska","Points":10952,"X":399,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669033Z"},{"ID":11408,"Name":"sƂodziuteƄka 05","Points":6133,"X":604,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669034Z"},{"ID":11409,"Name":"SkƂad","Points":10295,"X":524,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669034Z"},{"ID":11411,"Name":"Wioska barbarzyƄska","Points":10495,"X":399,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669035Z"},{"ID":11412,"Name":"Wioska Nya.","Points":8561,"X":572,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669036Z"},{"ID":11413,"Name":"Marienburg 0","Points":9782,"X":527,"Y":477,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669037Z"},{"ID":11414,"Name":"0060","Points":10003,"X":604,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669037Z"},{"ID":11415,"Name":"!SkƂad","Points":10303,"X":510,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669038Z"},{"ID":11416,"Name":"Velen","Points":9745,"X":479,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669039Z"},{"ID":11417,"Name":"KRÓL PAPI WIELKI","Points":9899,"X":577,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669039Z"},{"ID":11418,"Name":"Lord Arsey KING","Points":10285,"X":577,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66904Z"},{"ID":11419,"Name":"Bocianikson017","Points":9820,"X":597,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669041Z"},{"ID":11420,"Name":"006 - T_001***","Points":10495,"X":440,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669042Z"},{"ID":11421,"Name":"BBB","Points":9855,"X":565,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669042Z"},{"ID":11422,"Name":"Wioska barbarzyƄska","Points":10452,"X":531,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669043Z"},{"ID":11423,"Name":".achim.","Points":10311,"X":524,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669044Z"},{"ID":11424,"Name":"KONFA TO MARKA, NARKA","Points":11954,"X":398,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669045Z"},{"ID":11425,"Name":"EKG M08 green3","Points":10055,"X":483,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669045Z"},{"ID":11426,"Name":"Napewno to nie jest off","Points":9636,"X":494,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669046Z"},{"ID":11427,"Name":"Szlachcic","Points":10160,"X":397,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669047Z"},{"ID":11428,"Name":"028","Points":10495,"X":594,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669048Z"},{"ID":11429,"Name":"Brat447","Points":10479,"X":392,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669048Z"},{"ID":11431,"Name":"Wioska","Points":10178,"X":392,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669049Z"},{"ID":11432,"Name":"002","Points":9974,"X":382,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66905Z"},{"ID":11433,"Name":"x Wioska barbarzyƄska","Points":8907,"X":395,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66905Z"},{"ID":11434,"Name":"Ethan Hunt 02","Points":9766,"X":604,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669051Z"},{"ID":11435,"Name":"Knowhere","Points":10452,"X":397,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669052Z"},{"ID":11436,"Name":"Szlachcic","Points":10237,"X":458,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669053Z"},{"ID":11437,"Name":"021","Points":8607,"X":579,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669053Z"},{"ID":11438,"Name":"[049]","Points":7168,"X":601,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669054Z"},{"ID":11439,"Name":"- 040 -","Points":10000,"X":550,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669055Z"},{"ID":11440,"Name":".achim.","Points":10311,"X":530,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669055Z"},{"ID":11441,"Name":"0641","Points":10019,"X":446,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669056Z"},{"ID":11442,"Name":"PiekƂo to inni","Points":10160,"X":481,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669057Z"},{"ID":11443,"Name":"[A]_[013] Dejv.oldplyr","Points":10444,"X":394,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669058Z"},{"ID":11444,"Name":"Lord Arsey KING","Points":10285,"X":579,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669058Z"},{"ID":11445,"Name":"082 TO NIE ƁADNIE","Points":9985,"X":412,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669059Z"},{"ID":11446,"Name":"025","Points":9873,"X":402,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66906Z"},{"ID":11447,"Name":"Szlachcic","Points":8464,"X":468,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669061Z"},{"ID":11448,"Name":"BoOmBaa..","Points":9452,"X":443,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669062Z"},{"ID":11449,"Name":"~014.","Points":10495,"X":501,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669062Z"},{"ID":11450,"Name":"Oxenfurt","Points":10311,"X":493,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669063Z"},{"ID":11451,"Name":"wola 4","Points":7331,"X":480,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":849093155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669064Z"},{"ID":11452,"Name":"[0491]","Points":9372,"X":593,"Y":548,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669064Z"},{"ID":11453,"Name":"K44 x002","Points":10495,"X":444,"Y":408,"Continent":"K44","Bonus":5,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669065Z"},{"ID":11454,"Name":".achim.","Points":10311,"X":537,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669066Z"},{"ID":11456,"Name":"002","Points":9197,"X":510,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669067Z"},{"ID":11457,"Name":"SsSs","Points":9299,"X":394,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669067Z"},{"ID":11458,"Name":"053","Points":10595,"X":569,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669068Z"},{"ID":11459,"Name":"Poison","Points":9463,"X":592,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669069Z"},{"ID":11460,"Name":"047","Points":3024,"X":557,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66907Z"},{"ID":11461,"Name":"Ponello","Points":9761,"X":411,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66907Z"},{"ID":11462,"Name":".achim.","Points":10311,"X":521,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669071Z"},{"ID":11463,"Name":"Village","Points":12154,"X":515,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669072Z"},{"ID":11464,"Name":"A19","Points":10019,"X":603,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669072Z"},{"ID":11465,"Name":"NOT!!","Points":10042,"X":472,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669073Z"},{"ID":11466,"Name":"Bucks x Kamiiiru","Points":10971,"X":456,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669074Z"},{"ID":11467,"Name":"GARNIZON","Points":9638,"X":513,"Y":606,"Continent":"K65","Bonus":9,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669075Z"},{"ID":11468,"Name":"ADEN","Points":9809,"X":588,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669075Z"},{"ID":11469,"Name":"Enklawa","Points":10248,"X":395,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669076Z"},{"ID":11470,"Name":"Jaaa","Points":9982,"X":568,"Y":582,"Continent":"K55","Bonus":6,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669077Z"},{"ID":11471,"Name":"Brat447","Points":10711,"X":391,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669077Z"},{"ID":11472,"Name":"sƂodziuteƄka 12","Points":6205,"X":599,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669078Z"},{"ID":11473,"Name":"KRÓL PAPI WIELKI","Points":9949,"X":571,"Y":583,"Continent":"K55","Bonus":1,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669079Z"},{"ID":11474,"Name":"041.","Points":10068,"X":587,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66908Z"},{"ID":11475,"Name":"017","Points":8904,"X":597,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66908Z"},{"ID":11476,"Name":"003. Strzyga","Points":10295,"X":509,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669081Z"},{"ID":11477,"Name":"Gravity","Points":9505,"X":404,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669082Z"},{"ID":11478,"Name":"BBB","Points":10791,"X":563,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669083Z"},{"ID":11479,"Name":"~026.","Points":10495,"X":488,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669083Z"},{"ID":11480,"Name":"0000018","Points":10063,"X":438,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669084Z"},{"ID":11482,"Name":"#040","Points":9835,"X":485,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669085Z"},{"ID":11483,"Name":"0005","Points":10323,"X":607,"Y":495,"Continent":"K46","Bonus":3,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669085Z"},{"ID":11484,"Name":"KONFA TO MARKA, NARKA","Points":10375,"X":400,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669086Z"},{"ID":11485,"Name":"motywacja 00000001","Points":10164,"X":395,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669087Z"},{"ID":11486,"Name":"- 065 -","Points":10000,"X":553,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669088Z"},{"ID":11487,"Name":"K34 x010","Points":8850,"X":466,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669088Z"},{"ID":11488,"Name":"020 Idaho","Points":10495,"X":608,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669089Z"},{"ID":11489,"Name":"A014","Points":10220,"X":449,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66909Z"},{"ID":11490,"Name":"A0003","Points":10362,"X":387,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669091Z"},{"ID":11491,"Name":".achim.","Points":10311,"X":518,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669091Z"},{"ID":11492,"Name":"NOT","Points":10042,"X":415,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669092Z"},{"ID":11493,"Name":"NOT?","Points":10042,"X":407,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669093Z"},{"ID":11494,"Name":"Galdin Quay","Points":10083,"X":528,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669093Z"},{"ID":11496,"Name":"0083","Points":9835,"X":442,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669094Z"},{"ID":11497,"Name":"Gattacka","Points":10501,"X":573,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669095Z"},{"ID":11498,"Name":"120","Points":10311,"X":546,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669096Z"},{"ID":11500,"Name":"HoƂopole","Points":10311,"X":494,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669096Z"},{"ID":11501,"Name":"Brat447","Points":10495,"X":389,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669097Z"},{"ID":11502,"Name":"021","Points":10495,"X":552,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669098Z"},{"ID":11503,"Name":"Napewno to nie jest off","Points":10495,"X":494,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669099Z"},{"ID":11504,"Name":"4. Strathclyde","Points":10986,"X":423,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669099Z"},{"ID":11505,"Name":"Wioska Podusia :)","Points":7272,"X":396,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6691Z"},{"ID":11506,"Name":"A12","Points":10019,"X":598,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669101Z"},{"ID":11507,"Name":"028","Points":9995,"X":538,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669102Z"},{"ID":11508,"Name":"0078","Points":9835,"X":442,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669102Z"},{"ID":11509,"Name":"Z barba 007","Points":10106,"X":429,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669103Z"},{"ID":11510,"Name":"PiekƂo to inni","Points":10083,"X":482,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669104Z"},{"ID":11511,"Name":"020","Points":9664,"X":400,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669104Z"},{"ID":11512,"Name":".achim.","Points":10178,"X":517,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669105Z"},{"ID":11513,"Name":"Wioska Dawidssssss","Points":10237,"X":510,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669106Z"},{"ID":11514,"Name":"0011","Points":10301,"X":605,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669107Z"},{"ID":11515,"Name":"S012","Points":10008,"X":409,"Y":554,"Continent":"K54","Bonus":7,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669108Z"},{"ID":11516,"Name":"0036 skarbnica","Points":10004,"X":435,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669108Z"},{"ID":11517,"Name":"Suppi","Points":9806,"X":424,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669109Z"},{"ID":11518,"Name":"HoƂopole","Points":10311,"X":491,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66911Z"},{"ID":11519,"Name":"A13","Points":10019,"X":597,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669111Z"},{"ID":11520,"Name":"Moje Fantazje","Points":10770,"X":397,"Y":518,"Continent":"K53","Bonus":9,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669111Z"},{"ID":11521,"Name":"Horyzont zdarzeƄ","Points":10019,"X":539,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669112Z"},{"ID":11522,"Name":"015","Points":10019,"X":599,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669113Z"},{"ID":11523,"Name":"Wioska barbarzyƄska","Points":10292,"X":531,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669113Z"},{"ID":11524,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":396,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669114Z"},{"ID":11525,"Name":"Nope","Points":10362,"X":396,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669115Z"},{"ID":11526,"Name":"Pobozowisko","Points":10960,"X":419,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669116Z"},{"ID":11527,"Name":"K44 x025","Points":7109,"X":442,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669116Z"},{"ID":11529,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":400,"Y":464,"Continent":"K44","Bonus":6,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669117Z"},{"ID":11530,"Name":"0145","Points":10083,"X":460,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669118Z"},{"ID":11531,"Name":"Kentin ufam Tobie","Points":10000,"X":397,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669118Z"},{"ID":11532,"Name":"PRO8L3M","Points":10365,"X":395,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669119Z"},{"ID":11533,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":400,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66912Z"},{"ID":11534,"Name":"001","Points":10390,"X":490,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669121Z"},{"ID":11535,"Name":"Kiedyƛ Wielki Wojownik","Points":9747,"X":401,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669121Z"},{"ID":11536,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":397,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669122Z"},{"ID":11537,"Name":"Wioska","Points":10178,"X":391,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669123Z"},{"ID":11538,"Name":"008","Points":10495,"X":554,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669123Z"},{"ID":11539,"Name":"Niespodzianka","Points":10168,"X":608,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":849095240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669124Z"},{"ID":11540,"Name":"0000011","Points":9425,"X":429,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669125Z"},{"ID":11541,"Name":"Lord Arsey KING","Points":10285,"X":500,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669126Z"},{"ID":11542,"Name":"Kiedyƛ Wielki Wojownik","Points":9733,"X":400,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669126Z"},{"ID":11543,"Name":"#016","Points":8255,"X":486,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669127Z"},{"ID":11544,"Name":"Szlachcic","Points":10160,"X":393,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669128Z"},{"ID":11545,"Name":"094 MEHEHE","Points":9922,"X":499,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669144Z"},{"ID":11546,"Name":"Pf Konfederacja","Points":9539,"X":490,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669145Z"},{"ID":11547,"Name":"-KrĂłlestwo Szefa-","Points":9835,"X":552,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669146Z"},{"ID":11548,"Name":"023.xxx","Points":10063,"X":479,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669146Z"},{"ID":11549,"Name":"Gravity","Points":9484,"X":402,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669147Z"},{"ID":11550,"Name":"Szlachcic","Points":10252,"X":397,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669148Z"},{"ID":11551,"Name":"Ptokas","Points":9761,"X":412,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669149Z"},{"ID":11552,"Name":"Kentin ufam Tobie","Points":10000,"X":392,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669149Z"},{"ID":11553,"Name":"030","Points":10068,"X":587,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66915Z"},{"ID":11554,"Name":"PiekƂo to inni","Points":10160,"X":485,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669151Z"},{"ID":11555,"Name":"Wioska barbarzyƄska","Points":9441,"X":395,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669151Z"},{"ID":11556,"Name":"Another Brick In The Wall","Points":7298,"X":591,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669152Z"},{"ID":11557,"Name":"013. Hvitserk","Points":10030,"X":587,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669153Z"},{"ID":11558,"Name":"PiekƂo to inni","Points":2285,"X":483,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669154Z"},{"ID":11559,"Name":"*313*","Points":10292,"X":518,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669154Z"},{"ID":11560,"Name":"027 California","Points":10495,"X":607,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669155Z"},{"ID":11561,"Name":"Coruscant 6","Points":9139,"X":498,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669156Z"},{"ID":11562,"Name":"#041","Points":9875,"X":487,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669156Z"},{"ID":11563,"Name":"Wioska barbarzyƄska","Points":9118,"X":436,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669157Z"},{"ID":11564,"Name":"Winter is coming","Points":9835,"X":458,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669158Z"},{"ID":11565,"Name":"Bagdad","Points":10654,"X":476,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669159Z"},{"ID":11566,"Name":"a moĆŒe off ? :)","Points":9568,"X":580,"Y":575,"Continent":"K55","Bonus":9,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669159Z"},{"ID":11567,"Name":"019 Yazuac","Points":10362,"X":604,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66916Z"},{"ID":11568,"Name":"Napewno to nie jest off","Points":9784,"X":492,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669161Z"},{"ID":11569,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":600,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669161Z"},{"ID":11570,"Name":"EKG M09 green4","Points":10083,"X":483,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669162Z"},{"ID":11571,"Name":"A.181.01","Points":10242,"X":601,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669163Z"},{"ID":11572,"Name":"SkƂad","Points":10294,"X":525,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669164Z"},{"ID":11573,"Name":"[239]Tasuj Tasuj przeĆ‚ĂłĆŒ Tasuj","Points":10049,"X":598,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669164Z"},{"ID":11574,"Name":"Wioska barbarzyƄska","Points":7233,"X":578,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669165Z"},{"ID":11575,"Name":"xhav","Points":10068,"X":395,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669166Z"},{"ID":11576,"Name":"057 - Hexiu","Points":10495,"X":418,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669166Z"},{"ID":11577,"Name":"E001","Points":5789,"X":518,"Y":395,"Continent":"K35","Bonus":4,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669167Z"},{"ID":11578,"Name":"002 - Zaczynamy","Points":10495,"X":425,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669168Z"},{"ID":11579,"Name":"062 OZDR","Points":10336,"X":476,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669169Z"},{"ID":11580,"Name":"111","Points":10311,"X":547,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669169Z"},{"ID":11581,"Name":"047 ƚwieĆŒa BuƂeczka","Points":4739,"X":533,"Y":399,"Continent":"K35","Bonus":4,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66917Z"},{"ID":11582,"Name":"A02","Points":10019,"X":599,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669171Z"},{"ID":11583,"Name":"014. Halfdan","Points":10030,"X":586,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669172Z"},{"ID":11584,"Name":"Village","Points":12154,"X":517,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669172Z"},{"ID":11585,"Name":"027. Corduba","Points":9026,"X":604,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669173Z"},{"ID":11586,"Name":"Wioska barbarzyƄska","Points":9835,"X":562,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669174Z"},{"ID":11587,"Name":"087 JESTEƚ Z ULICY","Points":10481,"X":409,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669174Z"},{"ID":11589,"Name":"[371] Chorągiewka na wietrze","Points":10411,"X":585,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669175Z"},{"ID":11590,"Name":"Wioska barbarzyƄska","Points":10955,"X":395,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669176Z"},{"ID":11591,"Name":"080 - Twierdza 003","Points":9453,"X":422,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669177Z"},{"ID":11592,"Name":"dla Ethan Hunt","Points":10296,"X":604,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669178Z"},{"ID":11593,"Name":".achim.","Points":10311,"X":523,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669178Z"},{"ID":11594,"Name":"0106","Points":9500,"X":465,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669179Z"},{"ID":11595,"Name":"001","Points":9967,"X":509,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66918Z"},{"ID":11596,"Name":"025","Points":10495,"X":609,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66918Z"},{"ID":11598,"Name":"008. Sigi","Points":10030,"X":589,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669181Z"},{"ID":11599,"Name":"Wioska 0019","Points":10164,"X":400,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669182Z"},{"ID":11600,"Name":"Szlachcic !!!","Points":9778,"X":492,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669183Z"},{"ID":11601,"Name":"- 068 -","Points":10000,"X":535,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669183Z"},{"ID":11602,"Name":".achim.","Points":5024,"X":523,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669184Z"},{"ID":11603,"Name":"NOT","Points":10042,"X":419,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669185Z"},{"ID":11604,"Name":"NOT","Points":10042,"X":419,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669185Z"},{"ID":11605,"Name":"08. Reorganizacja. (Maczeta.)","Points":9756,"X":417,"Y":567,"Continent":"K54","Bonus":5,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669186Z"},{"ID":11606,"Name":"Wioska barbarzyƄska","Points":9521,"X":397,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669187Z"},{"ID":11607,"Name":".achim.","Points":10311,"X":521,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669188Z"},{"ID":11608,"Name":"Knowhere","Points":10374,"X":390,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669188Z"},{"ID":11609,"Name":"PiekƂo to inni","Points":10160,"X":488,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669189Z"},{"ID":11610,"Name":"Suppi","Points":10084,"X":426,"Y":423,"Continent":"K44","Bonus":2,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66919Z"},{"ID":11611,"Name":"#030","Points":7592,"X":467,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66919Z"},{"ID":11612,"Name":"#030 A","Points":9835,"X":444,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669191Z"},{"ID":11613,"Name":"D010","Points":9925,"X":508,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669192Z"},{"ID":11614,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":570,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669193Z"},{"ID":11615,"Name":"039","Points":9745,"X":531,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669193Z"},{"ID":11616,"Name":"FAKE OR OFF","Points":9840,"X":441,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669194Z"},{"ID":11617,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":399,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669195Z"},{"ID":11618,"Name":"020","Points":10271,"X":610,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669195Z"},{"ID":11619,"Name":"A038","Points":10358,"X":479,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669196Z"},{"ID":11620,"Name":"Knowhere","Points":10000,"X":393,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669197Z"},{"ID":11621,"Name":"135 Wioska barbarzyƄska","Points":10478,"X":404,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669198Z"},{"ID":11622,"Name":"009. Helga","Points":10030,"X":587,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669198Z"},{"ID":11623,"Name":"0009","Points":10495,"X":609,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669199Z"},{"ID":11624,"Name":"Knowhere","Points":10631,"X":391,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6692Z"},{"ID":11625,"Name":".achim.","Points":10311,"X":516,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6692Z"},{"ID":11626,"Name":"Pjon","Points":9761,"X":415,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669201Z"},{"ID":11627,"Name":"001","Points":10495,"X":588,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669202Z"},{"ID":11628,"Name":"Bagdad","Points":10068,"X":475,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669203Z"},{"ID":11629,"Name":"077","Points":9974,"X":607,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669203Z"},{"ID":11630,"Name":"019","Points":10252,"X":590,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669204Z"},{"ID":11631,"Name":"Gravity","Points":9486,"X":406,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669205Z"},{"ID":11632,"Name":"[230] WEST","Points":10048,"X":600,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669205Z"},{"ID":11633,"Name":"Bunkier 002","Points":10495,"X":591,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669206Z"},{"ID":11634,"Name":"Wioska4,,,","Points":6813,"X":482,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669207Z"},{"ID":11635,"Name":"0003 K55 and987 OZDR.","Points":9844,"X":505,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669208Z"},{"ID":11636,"Name":"x R001","Points":9630,"X":396,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669208Z"},{"ID":11637,"Name":"Brat447","Points":10957,"X":392,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669209Z"},{"ID":11638,"Name":"Crown City","Points":10083,"X":529,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66921Z"},{"ID":11639,"Name":"Wioska","Points":10178,"X":394,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669211Z"},{"ID":11640,"Name":"008 Drewno","Points":10495,"X":606,"Y":517,"Continent":"K56","Bonus":1,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669211Z"},{"ID":11641,"Name":"0007. A - Nadindel","Points":10285,"X":606,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669212Z"},{"ID":11642,"Name":"024","Points":10311,"X":551,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669213Z"},{"ID":11644,"Name":"Knowhere","Points":10452,"X":395,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669214Z"},{"ID":11645,"Name":"Lord Arsey KING","Points":10285,"X":570,"Y":584,"Continent":"K55","Bonus":8,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669214Z"},{"ID":11646,"Name":"002 Alaska","Points":10252,"X":608,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669215Z"},{"ID":11647,"Name":"#005","Points":9741,"X":539,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669216Z"},{"ID":11648,"Name":"#026","Points":6684,"X":535,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669217Z"},{"ID":11649,"Name":"0001","Points":10495,"X":555,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669217Z"},{"ID":11650,"Name":"191","Points":2516,"X":431,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":9179700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669218Z"},{"ID":11651,"Name":"054","Points":10311,"X":607,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669219Z"},{"ID":11652,"Name":"Winter is coming","Points":9888,"X":462,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66922Z"},{"ID":11653,"Name":"028","Points":10495,"X":607,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66922Z"},{"ID":11654,"Name":"West 05","Points":9830,"X":604,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669221Z"},{"ID":11655,"Name":"0077","Points":10495,"X":603,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669222Z"},{"ID":11656,"Name":"Lord Arsey KING","Points":10285,"X":575,"Y":579,"Continent":"K55","Bonus":4,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669222Z"},{"ID":11657,"Name":"195","Points":5426,"X":575,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669223Z"},{"ID":11658,"Name":".achim.","Points":10311,"X":517,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669224Z"},{"ID":11659,"Name":"055","Points":10158,"X":610,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669225Z"},{"ID":11660,"Name":"Wioska barbarzyƄska","Points":9491,"X":396,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669226Z"},{"ID":11661,"Name":"00361 Wioska","Points":6333,"X":435,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669226Z"},{"ID":11662,"Name":"020. Kwenthrith","Points":10030,"X":587,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669227Z"},{"ID":11663,"Name":"Napewno to nie jest off","Points":10068,"X":489,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669228Z"},{"ID":11664,"Name":"NOT","Points":10042,"X":417,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669228Z"},{"ID":11665,"Name":"Jehu_Kingdom_32_","Points":9993,"X":602,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669229Z"},{"ID":11666,"Name":"*016*","Points":8501,"X":605,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66923Z"},{"ID":11667,"Name":"029","Points":10495,"X":609,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669231Z"},{"ID":11668,"Name":"04 Flary","Points":9142,"X":620,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669232Z"},{"ID":11669,"Name":"0016","Points":10426,"X":598,"Y":507,"Continent":"K55","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669232Z"},{"ID":11670,"Name":"ADEN","Points":10072,"X":576,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669233Z"},{"ID":11671,"Name":"A021","Points":10247,"X":465,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669234Z"},{"ID":11672,"Name":"- 023 -","Points":10000,"X":541,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669235Z"},{"ID":11673,"Name":"k45 015","Points":10093,"X":574,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669235Z"},{"ID":11674,"Name":"A007","Points":10237,"X":459,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669236Z"},{"ID":11675,"Name":"Shimotsuki Village","Points":10311,"X":494,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669237Z"},{"ID":11676,"Name":"Z barba 005","Points":10495,"X":428,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669238Z"},{"ID":11677,"Name":"064","Points":10311,"X":585,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669238Z"},{"ID":11678,"Name":"Wioska barbarzyƄska","Points":9724,"X":593,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66924Z"},{"ID":11679,"Name":"A035","Points":10042,"X":495,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66924Z"},{"ID":11680,"Name":"0634","Points":10160,"X":447,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669241Z"},{"ID":11681,"Name":"18120","Points":6817,"X":436,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669242Z"},{"ID":11682,"Name":"SsSs","Points":8288,"X":394,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669242Z"},{"ID":11683,"Name":"010 To dawaj lufe","Points":10475,"X":603,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669243Z"},{"ID":11685,"Name":"005 Od teraz bilet do Bydgoszczy","Points":9861,"X":503,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669244Z"},{"ID":11686,"Name":"K44 - [001] Before Land","Points":10259,"X":466,"Y":400,"Continent":"K44","Bonus":4,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669245Z"},{"ID":11687,"Name":"037 Petro180 - 1.","Points":10495,"X":608,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669246Z"},{"ID":11688,"Name":"Knowhere","Points":10452,"X":391,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669246Z"},{"ID":11689,"Name":"053","Points":10311,"X":579,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669247Z"},{"ID":11690,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":396,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669248Z"},{"ID":11691,"Name":"x Osada koczownikĂłw","Points":9293,"X":390,"Y":508,"Continent":"K53","Bonus":6,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669248Z"},{"ID":11692,"Name":"1.Denver","Points":9994,"X":554,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669249Z"},{"ID":11693,"Name":"Gravity","Points":9508,"X":408,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66925Z"},{"ID":11694,"Name":"0624","Points":10019,"X":442,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669251Z"},{"ID":11695,"Name":".achim.","Points":10311,"X":520,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669251Z"},{"ID":11696,"Name":"Gravity","Points":9486,"X":405,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669252Z"},{"ID":11697,"Name":"[008] ...","Points":10951,"X":393,"Y":521,"Continent":"K53","Bonus":9,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669253Z"},{"ID":11698,"Name":"00311 Wioska","Points":9283,"X":434,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669253Z"},{"ID":11699,"Name":"086","Points":10300,"X":610,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669254Z"},{"ID":11701,"Name":"Osada koczownikĂłw","Points":10285,"X":412,"Y":442,"Continent":"K44","Bonus":1,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669255Z"},{"ID":11702,"Name":"A004","Points":10237,"X":446,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669256Z"},{"ID":11703,"Name":".Huntsville","Points":10495,"X":470,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669257Z"},{"ID":11704,"Name":"- 022 -","Points":10000,"X":540,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669257Z"},{"ID":11705,"Name":"Teby_02","Points":9638,"X":504,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669258Z"},{"ID":11706,"Name":"[A]_[012] Dejv.oldplyr","Points":10444,"X":394,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669259Z"},{"ID":11707,"Name":"010","Points":10636,"X":574,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669259Z"},{"ID":11708,"Name":"056","Points":10401,"X":610,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66926Z"},{"ID":11709,"Name":"[322] Chorągiewka na wietrze","Points":10394,"X":590,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669261Z"},{"ID":11710,"Name":"Bagdad","Points":9835,"X":471,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669262Z"},{"ID":11711,"Name":"078","Points":10495,"X":610,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669263Z"},{"ID":11712,"Name":"044 White Horse","Points":9761,"X":466,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669263Z"},{"ID":11713,"Name":".achim.","Points":10311,"X":514,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669264Z"},{"ID":11714,"Name":"E002","Points":6119,"X":515,"Y":392,"Continent":"K35","Bonus":4,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669265Z"},{"ID":11715,"Name":"Gravity","Points":9497,"X":404,"Y":454,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669266Z"},{"ID":11716,"Name":"[371] Chorągiewka na wietrze D","Points":10411,"X":588,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669266Z"},{"ID":11717,"Name":"PYRLANDIA 033 $","Points":10273,"X":556,"Y":595,"Continent":"K55","Bonus":2,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669267Z"},{"ID":11718,"Name":"PYRLANDIA 023 s","Points":10311,"X":562,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669268Z"},{"ID":11719,"Name":"*308*","Points":10297,"X":512,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669269Z"},{"ID":11720,"Name":".achim.","Points":10311,"X":515,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669269Z"},{"ID":11721,"Name":"~013.","Points":10495,"X":499,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66927Z"},{"ID":11722,"Name":"0629","Points":10019,"X":440,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669271Z"},{"ID":11723,"Name":"NOT","Points":10042,"X":416,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669271Z"},{"ID":11724,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":581,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669272Z"},{"ID":11725,"Name":"Naboo 4","Points":9038,"X":486,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669273Z"},{"ID":11726,"Name":"*027*","Points":5861,"X":610,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669274Z"},{"ID":11727,"Name":"119","Points":10311,"X":564,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669274Z"},{"ID":11728,"Name":"Riders On The Storm","Points":9581,"X":589,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669275Z"},{"ID":11729,"Name":"ADEN","Points":8663,"X":575,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669276Z"},{"ID":11730,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":397,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669277Z"},{"ID":11731,"Name":"037 Konfideracja","Points":8655,"X":597,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669277Z"},{"ID":11733,"Name":"010","Points":10019,"X":597,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669278Z"},{"ID":11734,"Name":"Crestholm Channels","Points":10019,"X":530,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669279Z"},{"ID":11735,"Name":"007","Points":10367,"X":596,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669279Z"},{"ID":11736,"Name":"017","Points":9963,"X":607,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66928Z"},{"ID":11737,"Name":"TEBY","Points":7060,"X":504,"Y":607,"Continent":"K65","Bonus":4,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669281Z"},{"ID":11738,"Name":"007","Points":10254,"X":477,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669282Z"},{"ID":11739,"Name":"BBB","Points":9976,"X":567,"Y":416,"Continent":"K45","Bonus":7,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669282Z"},{"ID":11740,"Name":"aaa","Points":10008,"X":477,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669283Z"},{"ID":11741,"Name":"0010","Points":10301,"X":605,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669284Z"},{"ID":11742,"Name":"Wioska barbarzyƄska","Points":10479,"X":395,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669285Z"},{"ID":11743,"Name":"A14","Points":9656,"X":599,"Y":459,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669285Z"},{"ID":11744,"Name":"029","Points":10019,"X":594,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669286Z"},{"ID":11745,"Name":"Gravity","Points":9489,"X":403,"Y":453,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669287Z"},{"ID":11746,"Name":"Szlachcic","Points":10362,"X":393,"Y":484,"Continent":"K43","Bonus":3,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669288Z"},{"ID":11747,"Name":"*5502*a DzieƄ jak codzieƄ","Points":10287,"X":596,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669288Z"},{"ID":11748,"Name":"Wioska barbarzyƄska","Points":10822,"X":397,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669289Z"},{"ID":11749,"Name":"Winter is coming","Points":9737,"X":460,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66929Z"},{"ID":11750,"Name":"Konfederacja","Points":9682,"X":470,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66929Z"},{"ID":11751,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":402,"Y":460,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669291Z"},{"ID":11752,"Name":"[320] Chorągiewka na wietrze","Points":10397,"X":589,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669292Z"},{"ID":11753,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":396,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669293Z"},{"ID":11754,"Name":"Suppi","Points":9975,"X":427,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669293Z"},{"ID":11755,"Name":"011 Pola Pelennoru","Points":9043,"X":604,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669294Z"},{"ID":11756,"Name":"[023] Tappaa sinut","Points":10242,"X":602,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669295Z"},{"ID":11757,"Name":"~012.","Points":10495,"X":501,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669296Z"},{"ID":11758,"Name":"PYZA 006 brif123456789","Points":10125,"X":581,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669296Z"},{"ID":11759,"Name":"*Tam03*","Points":10290,"X":523,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669297Z"},{"ID":11760,"Name":".:090:.JuanPabloII","Points":10485,"X":542,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669298Z"},{"ID":11761,"Name":"121","Points":10311,"X":548,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669298Z"},{"ID":11762,"Name":"050 Ɓąkoszyn","Points":9059,"X":390,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669299Z"},{"ID":11763,"Name":"023","Points":8793,"X":596,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6693Z"},{"ID":11764,"Name":"sƂodziuteƄka 03","Points":6789,"X":603,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669301Z"},{"ID":11765,"Name":"044 Ferragus","Points":9124,"X":622,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669301Z"},{"ID":11766,"Name":"025","Points":10311,"X":548,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669302Z"},{"ID":11767,"Name":"0010","Points":10495,"X":509,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669303Z"},{"ID":11768,"Name":"z 051","Points":10476,"X":558,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669304Z"},{"ID":11769,"Name":"085 koniec","Points":2741,"X":407,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669304Z"},{"ID":11770,"Name":"PiekƂo to inni","Points":10160,"X":480,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669305Z"},{"ID":11771,"Name":"005","Points":10311,"X":542,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669306Z"},{"ID":11772,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":398,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669307Z"},{"ID":11773,"Name":"032","Points":10160,"X":543,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669307Z"},{"ID":11774,"Name":"024","Points":10495,"X":558,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669308Z"},{"ID":11775,"Name":"#007","Points":9753,"X":543,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669309Z"},{"ID":11776,"Name":"Wioska 123Misiek","Points":5771,"X":568,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":849078086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66931Z"},{"ID":11777,"Name":"00062","Points":7876,"X":535,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66931Z"},{"ID":11778,"Name":"Mako Reactor","Points":10559,"X":523,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669311Z"},{"ID":11779,"Name":"Wioska smieli","Points":9592,"X":403,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669312Z"},{"ID":11780,"Name":"NOT","Points":9950,"X":413,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669313Z"},{"ID":11781,"Name":"Tatry","Points":10311,"X":507,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669313Z"},{"ID":11782,"Name":"A 011.","Points":9805,"X":434,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669314Z"},{"ID":11783,"Name":"KIELBA 112","Points":10237,"X":454,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669315Z"},{"ID":11784,"Name":"0004","Points":10301,"X":606,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669316Z"},{"ID":11785,"Name":"0095","Points":9727,"X":456,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669316Z"},{"ID":11786,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":400,"Y":459,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669317Z"},{"ID":11787,"Name":"D008","Points":9925,"X":511,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669318Z"},{"ID":11788,"Name":"Wioska barbarzyƄska","Points":10479,"X":397,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669319Z"},{"ID":11789,"Name":"Coruscant 1","Points":9797,"X":499,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669319Z"},{"ID":11790,"Name":"sƂodziuteƄka 11","Points":9538,"X":602,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66932Z"},{"ID":11791,"Name":"K44 x026m","Points":6778,"X":434,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669321Z"},{"ID":11792,"Name":"Avanti!","Points":9956,"X":379,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669321Z"},{"ID":11793,"Name":"Wioska barbarzyƄska","Points":10495,"X":388,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669322Z"},{"ID":11794,"Name":"0036","Points":9790,"X":610,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669323Z"},{"ID":11795,"Name":"~093.","Points":10495,"X":491,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669324Z"},{"ID":11796,"Name":"PiekƂo to inni","Points":10019,"X":483,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669324Z"},{"ID":11797,"Name":"028","Points":10495,"X":591,"Y":460,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669325Z"},{"ID":11798,"Name":"Ggggg","Points":10495,"X":420,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669326Z"},{"ID":11799,"Name":"#034","Points":9761,"X":522,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669326Z"},{"ID":11800,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":572,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669327Z"},{"ID":11801,"Name":"0033","Points":10037,"X":463,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669328Z"},{"ID":11802,"Name":"zajad","Points":6994,"X":424,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669329Z"},{"ID":11803,"Name":"004 Luxx","Points":9835,"X":603,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669329Z"},{"ID":11804,"Name":"0027 Wioska","Points":10305,"X":434,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66933Z"},{"ID":11805,"Name":"0049","Points":10362,"X":608,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669331Z"},{"ID":11806,"Name":"Wioska barbarzyƄska","Points":10285,"X":413,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669332Z"},{"ID":11807,"Name":"K44 x034","Points":7278,"X":439,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669332Z"},{"ID":11808,"Name":"020","Points":8037,"X":583,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669333Z"},{"ID":11809,"Name":"~~LatającyHolender~~","Points":10149,"X":576,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669334Z"},{"ID":11810,"Name":"057","Points":9525,"X":606,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669335Z"},{"ID":11811,"Name":"023","Points":10495,"X":543,"Y":399,"Continent":"K35","Bonus":3,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669335Z"},{"ID":11812,"Name":"-=001=-","Points":9835,"X":567,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669336Z"},{"ID":11813,"Name":"~025.","Points":10495,"X":489,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669337Z"},{"ID":11814,"Name":"TYLKO PP","Points":3539,"X":394,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669337Z"},{"ID":11816,"Name":"Wioska barbarzyƄska","Points":10285,"X":413,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669338Z"},{"ID":11817,"Name":"A20","Points":10019,"X":604,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669339Z"},{"ID":11818,"Name":"- 051 -","Points":10000,"X":539,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66934Z"},{"ID":11819,"Name":"Suppi","Points":10237,"X":452,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66934Z"},{"ID":11820,"Name":"Jaaa","Points":10495,"X":609,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669341Z"},{"ID":11821,"Name":"Wioska","Points":10178,"X":393,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669342Z"},{"ID":11822,"Name":"0003","Points":8939,"X":466,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669343Z"},{"ID":11823,"Name":"0006","Points":10301,"X":606,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669343Z"},{"ID":11824,"Name":"0014. A -","Points":10160,"X":610,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669344Z"},{"ID":11825,"Name":"Kentin ufam Tobie","Points":10000,"X":434,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669345Z"},{"ID":11826,"Name":"#017","Points":9735,"X":486,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669345Z"},{"ID":11827,"Name":"Wioska (011)","Points":9344,"X":603,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669346Z"},{"ID":11828,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":601,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669347Z"},{"ID":11829,"Name":"FAKE OR OFF","Points":9814,"X":453,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669348Z"},{"ID":11830,"Name":"NOT","Points":10042,"X":413,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669348Z"},{"ID":11831,"Name":"032 Louisiana","Points":10495,"X":607,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669349Z"},{"ID":11832,"Name":"NOT","Points":10042,"X":415,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66935Z"},{"ID":11833,"Name":"Wioska barbarzyƄska","Points":7820,"X":604,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66935Z"},{"ID":11834,"Name":"~018.","Points":10495,"X":501,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669351Z"},{"ID":11835,"Name":"Gravity","Points":9489,"X":403,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669352Z"},{"ID":11836,"Name":"NOT","Points":10042,"X":418,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669353Z"},{"ID":11837,"Name":"*Tam01*","Points":10294,"X":525,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669353Z"},{"ID":11838,"Name":"Winter is coming","Points":8962,"X":460,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669354Z"},{"ID":11839,"Name":"Guardian","Points":10094,"X":499,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669355Z"},{"ID":11840,"Name":"0035 Wioska Sjt","Points":10155,"X":430,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669355Z"},{"ID":11841,"Name":"020.","Points":5757,"X":600,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669356Z"},{"ID":11842,"Name":"Suppi","Points":9891,"X":423,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669357Z"},{"ID":11843,"Name":"[356] Chorągiewka na wietrze","Points":10072,"X":594,"Y":442,"Continent":"K45","Bonus":5,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669358Z"},{"ID":11844,"Name":"#033","Points":9737,"X":522,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669358Z"},{"ID":11845,"Name":"003","Points":7310,"X":428,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669359Z"},{"ID":11846,"Name":"001 Wioska Best Wiedzmin","Points":8114,"X":606,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":6409472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66936Z"},{"ID":11847,"Name":"Gravity","Points":9494,"X":403,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66936Z"},{"ID":11848,"Name":"@@@@@@@@","Points":10122,"X":411,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669361Z"},{"ID":11849,"Name":"Bagdad","Points":10178,"X":474,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669362Z"},{"ID":11850,"Name":"xhav","Points":9174,"X":394,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669363Z"},{"ID":11851,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":579,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669363Z"},{"ID":11852,"Name":"Bucks x Kamiiiru","Points":10971,"X":455,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669364Z"},{"ID":11853,"Name":"Beginners Hall","Points":9853,"X":467,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669365Z"},{"ID":11854,"Name":"Wioska barbarzyƄska","Points":10285,"X":413,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669365Z"},{"ID":11855,"Name":"007","Points":10495,"X":554,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669366Z"},{"ID":11856,"Name":"020.xxx","Points":9989,"X":477,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669367Z"},{"ID":11857,"Name":"013","Points":9744,"X":544,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669368Z"},{"ID":11858,"Name":"0004","Points":9313,"X":467,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669368Z"},{"ID":11859,"Name":"B11","Points":10008,"X":408,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669369Z"},{"ID":11860,"Name":"0644","Points":10019,"X":441,"Y":592,"Continent":"K54","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66937Z"},{"ID":11861,"Name":"006","Points":10495,"X":552,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66937Z"},{"ID":11862,"Name":"W 006","Points":6295,"X":433,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669371Z"},{"ID":11863,"Name":"PYZA 005 Zoonk","Points":9027,"X":582,"Y":570,"Continent":"K55","Bonus":1,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669372Z"},{"ID":11864,"Name":"Yaima","Points":9580,"X":591,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669373Z"},{"ID":11865,"Name":"005","Points":9352,"X":421,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669373Z"},{"ID":11866,"Name":"Tank 002","Points":10348,"X":393,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669374Z"},{"ID":11867,"Name":"EKG Chia + R","Points":10336,"X":470,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669375Z"},{"ID":11868,"Name":"ZasiedmiogĂłrogrĂłd","Points":10311,"X":529,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669375Z"},{"ID":11869,"Name":"0005","Points":10495,"X":602,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669376Z"},{"ID":11870,"Name":"177","Points":10311,"X":578,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669377Z"},{"ID":11871,"Name":"0092","Points":9772,"X":463,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669377Z"},{"ID":11872,"Name":"#02.","Points":10595,"X":527,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669378Z"},{"ID":11873,"Name":"- 016 -","Points":10000,"X":550,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669379Z"},{"ID":11874,"Name":"[A]_[017] Dejv.oldplyr","Points":10495,"X":393,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66938Z"},{"ID":11875,"Name":"Jaaa","Points":10495,"X":568,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669381Z"},{"ID":11876,"Name":"019","Points":10495,"X":610,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669381Z"},{"ID":11877,"Name":"011","Points":10203,"X":608,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669382Z"},{"ID":11878,"Name":"008","Points":10560,"X":601,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669383Z"},{"ID":11879,"Name":"FAKE OR OFF","Points":9831,"X":439,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669383Z"},{"ID":11880,"Name":"Wioska barbarzyƄska","Points":10952,"X":392,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669384Z"},{"ID":11881,"Name":"0005","Points":10019,"X":504,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669385Z"},{"ID":11882,"Name":"Peska","Points":9761,"X":413,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669386Z"},{"ID":11883,"Name":"W 003","Points":9251,"X":434,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669386Z"},{"ID":11884,"Name":"Erem","Points":10161,"X":395,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669387Z"},{"ID":11886,"Name":"010","Points":10495,"X":610,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669388Z"},{"ID":11887,"Name":"Wioska barbarzyƄska","Points":10495,"X":399,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669388Z"},{"ID":11888,"Name":"026","Points":10495,"X":562,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669389Z"},{"ID":11889,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":400,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66939Z"},{"ID":11890,"Name":"A06","Points":10019,"X":601,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669391Z"},{"ID":11891,"Name":"SoƂtys Twojej Wsi","Points":9619,"X":439,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669391Z"},{"ID":11892,"Name":"A046","Points":10232,"X":459,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669392Z"},{"ID":11893,"Name":"Kentin ufam Tobie","Points":10000,"X":394,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669393Z"},{"ID":11894,"Name":"0643","Points":10019,"X":440,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669393Z"},{"ID":11895,"Name":"Nope","Points":10160,"X":393,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669394Z"},{"ID":11896,"Name":"Wioska barbarzyƄska","Points":10484,"X":398,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669395Z"},{"ID":11897,"Name":"50-4 CYTADELA","Points":6747,"X":584,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669396Z"},{"ID":11898,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":401,"Y":455,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669396Z"},{"ID":11899,"Name":"080","Points":10311,"X":553,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669397Z"},{"ID":11900,"Name":"Szlachcic","Points":10160,"X":396,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669398Z"},{"ID":11901,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":585,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669399Z"},{"ID":11902,"Name":"Knowhere","Points":10452,"X":392,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669399Z"},{"ID":11903,"Name":"Wioska barbarzyƄska","Points":10365,"X":610,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6694Z"},{"ID":11904,"Name":"015.","Points":5003,"X":599,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669401Z"},{"ID":11905,"Name":"D0002","Points":9633,"X":438,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669401Z"},{"ID":11906,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":581,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669402Z"},{"ID":11907,"Name":"Osada koczownikĂłw","Points":10954,"X":396,"Y":533,"Continent":"K53","Bonus":9,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669403Z"},{"ID":11908,"Name":"Gattacka","Points":9761,"X":533,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669403Z"},{"ID":11909,"Name":"K44 x008","Points":7516,"X":438,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669404Z"},{"ID":11910,"Name":"0006","Points":10495,"X":598,"Y":546,"Continent":"K55","Bonus":1,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669405Z"},{"ID":11911,"Name":"Napewno to nie jest off","Points":10495,"X":497,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669406Z"},{"ID":11912,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":400,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669407Z"},{"ID":11913,"Name":"BBB","Points":10116,"X":563,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669407Z"},{"ID":11914,"Name":"01. Pollin","Points":6413,"X":395,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669408Z"},{"ID":11915,"Name":"Wioska 004","Points":9761,"X":598,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669409Z"},{"ID":11916,"Name":"021","Points":9761,"X":490,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669409Z"},{"ID":11917,"Name":"009","Points":10311,"X":605,"Y":522,"Continent":"K56","Bonus":3,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66941Z"},{"ID":11918,"Name":".achim.","Points":10311,"X":536,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669411Z"},{"ID":11919,"Name":"FAKE OR OFF","Points":9823,"X":454,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669412Z"},{"ID":11920,"Name":"001","Points":10362,"X":603,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669413Z"},{"ID":11921,"Name":"NOT","Points":10042,"X":415,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669414Z"},{"ID":11922,"Name":"Szlachcic","Points":10237,"X":455,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669415Z"},{"ID":11923,"Name":"Collapsed Expressway - Old Bypas","Points":10559,"X":527,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669416Z"},{"ID":11924,"Name":"Gravity","Points":9506,"X":404,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669417Z"},{"ID":11925,"Name":"Wioska barbarzyƄska","Points":9835,"X":568,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669417Z"},{"ID":11926,"Name":"KIELBA 030","Points":10247,"X":454,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669418Z"},{"ID":11927,"Name":"160","Points":10311,"X":572,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669419Z"},{"ID":11928,"Name":"A003","Points":10223,"X":445,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66942Z"},{"ID":11929,"Name":".achim.","Points":4151,"X":526,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669421Z"},{"ID":11930,"Name":"ƚmieszki","Points":9026,"X":529,"Y":607,"Continent":"K65","Bonus":1,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669422Z"},{"ID":11931,"Name":"0003. A - Uru baen","Points":9761,"X":607,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669423Z"},{"ID":11932,"Name":"moneciarnia2","Points":10285,"X":413,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669424Z"},{"ID":11933,"Name":"NOT?","Points":7271,"X":403,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669425Z"},{"ID":11934,"Name":"Suppi","Points":9882,"X":426,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669426Z"},{"ID":11935,"Name":"[0069]","Points":10495,"X":455,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669427Z"},{"ID":11936,"Name":"Knowhere","Points":10484,"X":390,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669428Z"},{"ID":11937,"Name":"005. Floki","Points":9887,"X":588,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669429Z"},{"ID":11938,"Name":"Wioska KanzerSuze","Points":9902,"X":409,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669429Z"},{"ID":11939,"Name":"009 New Orleans","Points":10475,"X":426,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66943Z"},{"ID":11940,"Name":"002 Saliva Grey - Gimme a Sec.","Points":9388,"X":407,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669431Z"},{"ID":11941,"Name":"- 028 -","Points":10000,"X":542,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669432Z"},{"ID":11942,"Name":"FAKE OR OFF","Points":9833,"X":453,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669432Z"},{"ID":11943,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":392,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669433Z"},{"ID":11944,"Name":".:108:. Niangmen","Points":9976,"X":499,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669434Z"},{"ID":11945,"Name":"[370] Chorągiewka na wietrze","Points":10068,"X":586,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669435Z"},{"ID":11947,"Name":"0348","Points":10019,"X":449,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669435Z"},{"ID":11948,"Name":"0000003#","Points":10160,"X":430,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669436Z"},{"ID":11949,"Name":"026","Points":10486,"X":595,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669437Z"},{"ID":11950,"Name":"007","Points":10495,"X":470,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669437Z"},{"ID":11951,"Name":"040","Points":10495,"X":605,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669438Z"},{"ID":11952,"Name":"Napewno to nie jest off","Points":10495,"X":496,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669439Z"},{"ID":11953,"Name":"KRÓL PAPI WIELKI","Points":9949,"X":578,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66944Z"},{"ID":11954,"Name":"Yogi","Points":6568,"X":537,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66944Z"},{"ID":11955,"Name":"113","Points":10311,"X":566,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669441Z"},{"ID":11956,"Name":"DOM 12 *","Points":9398,"X":561,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669442Z"},{"ID":11957,"Name":"Tank 004","Points":10343,"X":393,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669443Z"},{"ID":11959,"Name":"Altissia","Points":10490,"X":528,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669443Z"},{"ID":11960,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":571,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669444Z"},{"ID":11961,"Name":"Brat447","Points":10476,"X":391,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669445Z"},{"ID":11962,"Name":".achim.","Points":10311,"X":539,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669445Z"},{"ID":11963,"Name":"0006 Wioskaaa","Points":10019,"X":503,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669446Z"},{"ID":11964,"Name":"046","Points":10495,"X":606,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669447Z"},{"ID":11965,"Name":"013 Fiu fiu","Points":10284,"X":607,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669448Z"},{"ID":11966,"Name":"FAKE OR OFF","Points":9830,"X":452,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669448Z"},{"ID":11967,"Name":"K44 x009","Points":8135,"X":437,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669449Z"},{"ID":11968,"Name":"Mniejsze zƂo 0006","Points":9844,"X":374,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66945Z"},{"ID":11969,"Name":"#008","Points":9546,"X":547,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669451Z"},{"ID":11970,"Name":"#004","Points":9365,"X":542,"Y":600,"Continent":"K65","Bonus":7,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669451Z"},{"ID":11971,"Name":"Zeta Reticuli S","Points":10997,"X":417,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669452Z"},{"ID":11972,"Name":"W.181/03","Points":10242,"X":606,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669453Z"},{"ID":11973,"Name":"Sparta_75","Points":7338,"X":486,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669454Z"},{"ID":11974,"Name":"Mori","Points":9517,"X":596,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669455Z"},{"ID":11975,"Name":"002","Points":10336,"X":453,"Y":598,"Continent":"K54","Bonus":8,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669455Z"},{"ID":11976,"Name":"0018","Points":10301,"X":607,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669456Z"},{"ID":11977,"Name":"NOT","Points":10042,"X":419,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669457Z"},{"ID":11978,"Name":"Szlachcic","Points":10083,"X":391,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669458Z"},{"ID":11979,"Name":"Wioska","Points":10178,"X":391,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669458Z"},{"ID":11981,"Name":"Coruscant 4","Points":9797,"X":496,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669459Z"},{"ID":11982,"Name":"barba","Points":10311,"X":463,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66946Z"},{"ID":11983,"Name":"005 Connecticut","Points":10495,"X":605,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669461Z"},{"ID":11984,"Name":"027.xxx","Points":10075,"X":479,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669461Z"},{"ID":11985,"Name":"W samym ƛrodku roju","Points":10311,"X":571,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669462Z"},{"ID":11986,"Name":"z 023","Points":10478,"X":554,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669463Z"},{"ID":11987,"Name":"PiekƂo to inni","Points":10160,"X":481,"Y":391,"Continent":"K34","Bonus":9,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669463Z"},{"ID":11988,"Name":"00071 Wioska","Points":10216,"X":426,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669464Z"},{"ID":11989,"Name":"Wioska barbarzyƄska","Points":8139,"X":595,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669465Z"},{"ID":11990,"Name":"PiekƂo to inni","Points":10019,"X":483,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669466Z"},{"ID":11991,"Name":"PiekƂo to inni","Points":10019,"X":491,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669466Z"},{"ID":11992,"Name":"#034","Points":10393,"X":459,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669467Z"},{"ID":11993,"Name":"~023.","Points":10495,"X":492,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669468Z"},{"ID":11994,"Name":"009","Points":4081,"X":601,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669468Z"},{"ID":11995,"Name":"Wioska barbarzyƄska 1","Points":8684,"X":506,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669469Z"},{"ID":11996,"Name":"227 Christchurch","Points":9761,"X":535,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66947Z"},{"ID":11997,"Name":"KONFA TO MARKA, NARKA","Points":12154,"X":399,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669471Z"},{"ID":11998,"Name":"0019 K","Points":10152,"X":436,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669471Z"},{"ID":11999,"Name":"D013","Points":9925,"X":508,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669472Z"},{"ID":12000,"Name":"*010*","Points":8640,"X":610,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669473Z"},{"ID":12001,"Name":"Corneo Colosseum","Points":10559,"X":531,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669474Z"},{"ID":12002,"Name":"0019 Japan","Points":10278,"X":435,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669474Z"},{"ID":12003,"Name":"Wioska barbarzyƄska","Points":9710,"X":425,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669475Z"},{"ID":12004,"Name":"096 MEHEHE m","Points":10019,"X":501,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669476Z"},{"ID":12005,"Name":"141 izka1611","Points":9150,"X":387,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669476Z"},{"ID":12006,"Name":"Osada koczownikĂłw","Points":10068,"X":410,"Y":434,"Continent":"K44","Bonus":5,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669477Z"},{"ID":12007,"Name":"127","Points":10311,"X":546,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669478Z"},{"ID":12008,"Name":"Szlachcic","Points":10237,"X":461,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669479Z"},{"ID":12009,"Name":"[010] do MARV !!","Points":10216,"X":608,"Y":522,"Continent":"K56","Bonus":5,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66948Z"},{"ID":12010,"Name":"Jaaa","Points":10474,"X":569,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66948Z"},{"ID":12011,"Name":"Wioska barbarzyƄska","Points":10963,"X":398,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669481Z"},{"ID":12012,"Name":"Gravity","Points":9489,"X":401,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669482Z"},{"ID":12013,"Name":"026. OgrĂłd Warzywny","Points":9925,"X":528,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669482Z"},{"ID":12014,"Name":"0058","Points":10128,"X":605,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669483Z"},{"ID":12015,"Name":"CALL 1010","Points":10311,"X":523,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669484Z"},{"ID":12016,"Name":"yogi","Points":10019,"X":530,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669485Z"},{"ID":12017,"Name":"50-3 SAMOSIERRA AT","Points":8348,"X":584,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669485Z"},{"ID":12018,"Name":"Lord Arsey KING","Points":10285,"X":570,"Y":585,"Continent":"K55","Bonus":3,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669486Z"},{"ID":12019,"Name":"s181eo11","Points":9902,"X":397,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669487Z"},{"ID":12020,"Name":"008","Points":9825,"X":551,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669488Z"},{"ID":12021,"Name":"A16","Points":10019,"X":601,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669488Z"},{"ID":12022,"Name":"E003","Points":9925,"X":514,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669489Z"},{"ID":12023,"Name":"012 SINGED NA ROBOCIE","Points":10005,"X":596,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66949Z"},{"ID":12024,"Name":"- 017 -","Points":10000,"X":550,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669491Z"},{"ID":12025,"Name":"[A]_[009] Dejv.oldplyr","Points":10495,"X":393,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669492Z"},{"ID":12026,"Name":"028.","Points":9547,"X":594,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669492Z"},{"ID":12027,"Name":"019","Points":10699,"X":598,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669493Z"},{"ID":12028,"Name":"005 Wioska Lecha","Points":10083,"X":609,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669494Z"},{"ID":12029,"Name":"[236] WEST","Points":10057,"X":597,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669494Z"},{"ID":12030,"Name":"Wioska barbarzyƄska","Points":10135,"X":581,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669495Z"},{"ID":12031,"Name":"023","Points":9156,"X":400,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669496Z"},{"ID":12032,"Name":"CALL 974","Points":10311,"X":555,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669497Z"},{"ID":12033,"Name":"Szlachcic","Points":9637,"X":505,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669498Z"},{"ID":12034,"Name":"DOM 11","Points":9340,"X":565,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669498Z"},{"ID":12035,"Name":"MassXxl","Points":10495,"X":611,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669499Z"},{"ID":12036,"Name":"barba","Points":10311,"X":462,"Y":601,"Continent":"K64","Bonus":5,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6695Z"},{"ID":12037,"Name":"Myk i do kieszonki","Points":9746,"X":373,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6695Z"},{"ID":12038,"Name":"041","Points":10495,"X":612,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669501Z"},{"ID":12039,"Name":"PRO8L3M","Points":10311,"X":389,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669502Z"},{"ID":12040,"Name":"- 025 -","Points":10000,"X":542,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669503Z"},{"ID":12041,"Name":"Jaaa","Points":10218,"X":569,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669504Z"},{"ID":12042,"Name":"Suppi","Points":9883,"X":423,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669504Z"},{"ID":12043,"Name":"~072.","Points":10495,"X":489,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669505Z"},{"ID":12044,"Name":"Yogi","Points":10019,"X":538,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669506Z"},{"ID":12045,"Name":"- 056 -","Points":10000,"X":553,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669507Z"},{"ID":12046,"Name":"010","Points":9860,"X":603,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669507Z"},{"ID":12047,"Name":"D007","Points":9925,"X":509,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669508Z"},{"ID":12048,"Name":"Gravity","Points":9491,"X":407,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669509Z"},{"ID":12049,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":575,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669509Z"},{"ID":12050,"Name":"018","Points":9497,"X":506,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66951Z"},{"ID":12051,"Name":"092","Points":10311,"X":548,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669511Z"},{"ID":12053,"Name":"024","Points":9761,"X":489,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669512Z"},{"ID":12054,"Name":"Bagdad","Points":10068,"X":473,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669512Z"},{"ID":12055,"Name":"058","Points":10495,"X":606,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669513Z"},{"ID":12056,"Name":"Conference Rooms","Points":10495,"X":529,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669514Z"},{"ID":12057,"Name":"191","Points":10311,"X":572,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669514Z"},{"ID":12058,"Name":"ADEN","Points":10254,"X":590,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669515Z"},{"ID":12059,"Name":"a moĆŒe off ? :)","Points":9024,"X":578,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669516Z"},{"ID":12060,"Name":"NOT?","Points":10042,"X":404,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669517Z"},{"ID":12061,"Name":"0101","Points":9746,"X":460,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669517Z"},{"ID":12062,"Name":"Najlepszy sąsiad 013","Points":10273,"X":596,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669518Z"},{"ID":12063,"Name":"- 019 -","Points":10000,"X":541,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669519Z"},{"ID":12064,"Name":"021 Mountain Dew","Points":10019,"X":597,"Y":450,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66952Z"},{"ID":12065,"Name":"015","Points":10495,"X":559,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669521Z"},{"ID":12066,"Name":"039","Points":10311,"X":543,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669521Z"},{"ID":12067,"Name":"a moĆŒe off ? :)","Points":9559,"X":582,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669522Z"},{"ID":12068,"Name":"Osada koczownikĂłw","Points":9629,"X":500,"Y":612,"Continent":"K65","Bonus":6,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669523Z"},{"ID":12069,"Name":"[358] Chorągiewka na wietrze","Points":10201,"X":594,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669523Z"},{"ID":12070,"Name":"Twierdza 010","Points":7878,"X":419,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669524Z"},{"ID":12071,"Name":"0002. A - Tronjheim","Points":9761,"X":607,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669525Z"},{"ID":12072,"Name":"Wioska barbarzyƄska","Points":10478,"X":398,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669526Z"},{"ID":12073,"Name":"0012","Points":10095,"X":463,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669527Z"},{"ID":12074,"Name":"PiekƂo to inni","Points":10083,"X":483,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669527Z"},{"ID":12075,"Name":"amator","Points":12154,"X":526,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669528Z"},{"ID":12076,"Name":"0010. A - Ceunon","Points":10469,"X":605,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669529Z"},{"ID":12077,"Name":"*003*","Points":8501,"X":614,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669529Z"},{"ID":12078,"Name":"Bucks x Kamiiiru","Points":10222,"X":454,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66953Z"},{"ID":12080,"Name":"~008.","Points":10495,"X":502,"Y":609,"Continent":"K65","Bonus":2,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669531Z"},{"ID":12081,"Name":"PYRLANDIA 021 s","Points":10265,"X":568,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669531Z"},{"ID":12082,"Name":"015","Points":10495,"X":609,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669532Z"},{"ID":12083,"Name":"Bagdad","Points":10654,"X":472,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669533Z"},{"ID":12084,"Name":"008","Points":9744,"X":544,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669534Z"},{"ID":12085,"Name":"z 019","Points":10476,"X":555,"Y":598,"Continent":"K55","Bonus":2,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669535Z"},{"ID":12086,"Name":"004","Points":5145,"X":427,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669535Z"},{"ID":12087,"Name":"FAKE OR OFF","Points":9835,"X":455,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669536Z"},{"ID":12088,"Name":"040 - pięknie","Points":10495,"X":419,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669537Z"},{"ID":12089,"Name":"011 Minneapolis","Points":10479,"X":427,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669537Z"},{"ID":12090,"Name":"012. Porunn","Points":9983,"X":587,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669538Z"},{"ID":12091,"Name":"Gravity","Points":9499,"X":405,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669539Z"},{"ID":12092,"Name":"012","Points":9974,"X":409,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66954Z"},{"ID":12093,"Name":"032","Points":10636,"X":577,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66954Z"},{"ID":12094,"Name":"E004","Points":9925,"X":516,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669541Z"},{"ID":12095,"Name":"TAG","Points":10393,"X":621,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669542Z"},{"ID":12096,"Name":"0011","Points":9977,"X":465,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669543Z"},{"ID":12097,"Name":"009","Points":10362,"X":602,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669543Z"},{"ID":12098,"Name":"0013","Points":9227,"X":470,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669544Z"},{"ID":12099,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":582,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669545Z"},{"ID":12100,"Name":"022 Znamy się?","Points":10635,"X":597,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669546Z"},{"ID":12102,"Name":"Teby_04","Points":9638,"X":503,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669546Z"},{"ID":12104,"Name":"Dusk Till Dawn","Points":9523,"X":592,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669547Z"},{"ID":12105,"Name":"Jaaa","Points":10495,"X":590,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669548Z"},{"ID":12106,"Name":"D021","Points":6140,"X":574,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669549Z"},{"ID":12107,"Name":".achim.","Points":10311,"X":519,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669549Z"},{"ID":12108,"Name":"z 018","Points":10478,"X":558,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66955Z"},{"ID":12109,"Name":"Wioska barbarzyƄska","Points":10951,"X":393,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669551Z"},{"ID":12110,"Name":"Napewno to nie jest off","Points":10495,"X":496,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669552Z"},{"ID":12111,"Name":"016","Points":10495,"X":608,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669552Z"},{"ID":12112,"Name":"!*303*","Points":10311,"X":507,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669553Z"},{"ID":12113,"Name":"South K45","Points":10042,"X":573,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669554Z"},{"ID":12114,"Name":"Wioska Michal CR7","Points":2842,"X":523,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699855647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669555Z"},{"ID":12115,"Name":"004 619","Points":9720,"X":583,"Y":570,"Continent":"K55","Bonus":5,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669555Z"},{"ID":12117,"Name":"Balouve Mines","Points":10495,"X":528,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669556Z"},{"ID":12118,"Name":"014 dƂugo jeszcze?","Points":10301,"X":608,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669557Z"},{"ID":12119,"Name":"Jaaa","Points":10479,"X":576,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669557Z"},{"ID":12120,"Name":"Kentin ufam Tobie","Points":10000,"X":390,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669558Z"},{"ID":12121,"Name":"Wioska barbarzyƄska","Points":10285,"X":427,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669559Z"},{"ID":12122,"Name":"NWO","Points":11550,"X":392,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66956Z"},{"ID":12123,"Name":"[380] Chorągiewka na wietrze","Points":10201,"X":586,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66956Z"},{"ID":12124,"Name":"Bagdad","Points":10654,"X":467,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669561Z"},{"ID":12125,"Name":"[317] Chorągiewka na wietrze","Points":10403,"X":591,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669562Z"},{"ID":12126,"Name":"NOT?","Points":5472,"X":404,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669563Z"},{"ID":12127,"Name":"Honeybee Inn","Points":10147,"X":526,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669563Z"},{"ID":12128,"Name":"010 - Wioska","Points":10197,"X":415,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669564Z"},{"ID":12129,"Name":"Wioska barbarzyƄska","Points":9835,"X":565,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669565Z"},{"ID":12130,"Name":"[241] WEST","Points":10400,"X":600,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669566Z"},{"ID":12132,"Name":"NWO","Points":10728,"X":395,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669567Z"},{"ID":12133,"Name":"EKG M20","Points":10033,"X":482,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669567Z"},{"ID":12134,"Name":"Bagdad","Points":10654,"X":476,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669568Z"},{"ID":12135,"Name":"Wioska barbarzyƄska","Points":5058,"X":606,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669569Z"},{"ID":12136,"Name":"PYZA 004 King 1","Points":10429,"X":582,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66957Z"},{"ID":12137,"Name":"D009","Points":9861,"X":508,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66957Z"},{"ID":12138,"Name":"Wioska X2","Points":9910,"X":392,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669571Z"},{"ID":12139,"Name":"0063","Points":9807,"X":609,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669572Z"},{"ID":12140,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":585,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669572Z"},{"ID":12141,"Name":".achim.","Points":10311,"X":537,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669573Z"},{"ID":12143,"Name":"00351 W 3 DNI","Points":10075,"X":428,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669574Z"},{"ID":12145,"Name":"monetki A","Points":9556,"X":580,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669575Z"},{"ID":12146,"Name":"Czyli moĆŒna Ciebie zaskoczyc","Points":7678,"X":581,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669576Z"},{"ID":12147,"Name":"023 Baraki","Points":10077,"X":604,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669576Z"},{"ID":12148,"Name":"A05","Points":10019,"X":603,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669577Z"},{"ID":12149,"Name":"Part IV","Points":10495,"X":533,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669578Z"},{"ID":12150,"Name":"018","Points":9559,"X":398,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669579Z"},{"ID":12151,"Name":"45. Wioska 45","Points":8817,"X":427,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669579Z"},{"ID":12152,"Name":"19 im BƂochina","Points":9809,"X":578,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66958Z"},{"ID":12154,"Name":"026","Points":9761,"X":492,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669581Z"},{"ID":12155,"Name":"Jaaa","Points":10495,"X":577,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669581Z"},{"ID":12156,"Name":"001 Naura","Points":10054,"X":405,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669582Z"},{"ID":12157,"Name":"Wioska barbarzyƄska","Points":9693,"X":396,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669583Z"},{"ID":12158,"Name":"Suppi","Points":10239,"X":454,"Y":597,"Continent":"K54","Bonus":5,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669584Z"},{"ID":12159,"Name":"164 Ale mnie gƂówka boli","Points":10636,"X":386,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669585Z"},{"ID":12160,"Name":"Wola 3","Points":7910,"X":478,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":849093155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669585Z"},{"ID":12161,"Name":"A0036","Points":10362,"X":391,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669586Z"},{"ID":12162,"Name":"Knowhere","Points":10484,"X":388,"Y":500,"Continent":"K53","Bonus":9,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669587Z"},{"ID":12163,"Name":"090 OCEƃ SAM KTO DAJE LAK","Points":6503,"X":397,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669588Z"},{"ID":12165,"Name":"Knowhere","Points":10064,"X":392,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669588Z"},{"ID":12166,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":438,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669589Z"},{"ID":12167,"Name":"[321] Chorągiewka na wietrze PAA","Points":10411,"X":591,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66959Z"},{"ID":12168,"Name":"NOT!!","Points":7686,"X":471,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669591Z"},{"ID":12169,"Name":"[231] WEST","Points":10403,"X":602,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669591Z"},{"ID":12170,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":576,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669592Z"},{"ID":12171,"Name":"079 - Twierdza 002","Points":10495,"X":418,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669593Z"},{"ID":12172,"Name":"001 Alabama","Points":10495,"X":609,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669593Z"},{"ID":12173,"Name":"A013","Points":10216,"X":448,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669594Z"},{"ID":12174,"Name":"[359] Chorągiewka na wietrze","Points":10093,"X":594,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669595Z"},{"ID":12175,"Name":"003","Points":10019,"X":603,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669596Z"},{"ID":12176,"Name":"Puaaa","Points":9761,"X":409,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669596Z"},{"ID":12177,"Name":"038","Points":9745,"X":537,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669597Z"},{"ID":12179,"Name":"Zeta Reticuli S","Points":11188,"X":415,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669598Z"},{"ID":12180,"Name":"Wioska barbarzyƄska","Points":10285,"X":412,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669598Z"},{"ID":12181,"Name":"010","Points":10311,"X":539,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669599Z"},{"ID":12182,"Name":"NOT","Points":10068,"X":417,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6696Z"},{"ID":12184,"Name":"C 016 Zederman","Points":8642,"X":418,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669601Z"},{"ID":12185,"Name":"006","Points":10495,"X":557,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669601Z"},{"ID":12186,"Name":"Wioska C.a.","Points":3454,"X":552,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":848954236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669602Z"},{"ID":12187,"Name":"047","Points":10495,"X":610,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669603Z"},{"ID":12188,"Name":".achim.","Points":10311,"X":538,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669604Z"},{"ID":12189,"Name":"Barba 3","Points":9887,"X":432,"Y":411,"Continent":"K44","Bonus":5,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669604Z"},{"ID":12190,"Name":"Wioska NTSL","Points":3152,"X":395,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669605Z"},{"ID":12191,"Name":"0018 Wioska","Points":10481,"X":434,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669606Z"},{"ID":12192,"Name":"Immigrant Song","Points":9485,"X":588,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669607Z"},{"ID":12193,"Name":"PiekƂo to inni","Points":10160,"X":486,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669607Z"},{"ID":12194,"Name":"Run","Points":9318,"X":591,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669608Z"},{"ID":12195,"Name":"Wioska barbarzyƄska","Points":9586,"X":595,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669609Z"},{"ID":12196,"Name":"035","Points":8352,"X":559,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66961Z"},{"ID":12197,"Name":"Gravity","Points":9505,"X":405,"Y":448,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66961Z"},{"ID":12198,"Name":"122 s005","Points":10838,"X":400,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669611Z"},{"ID":12199,"Name":"009","Points":9860,"X":608,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669612Z"},{"ID":12200,"Name":"PRO8L3M","Points":8856,"X":450,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669613Z"},{"ID":12201,"Name":"Suppi","Points":9974,"X":424,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669613Z"},{"ID":12202,"Name":"034","Points":10495,"X":543,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669614Z"},{"ID":12203,"Name":"003","Points":10019,"X":409,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669615Z"},{"ID":12204,"Name":"PiekƂo to inni","Points":10160,"X":480,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669616Z"},{"ID":12205,"Name":"*015*","Points":8484,"X":609,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669616Z"},{"ID":12206,"Name":"Osada koczownikĂłw","Points":10714,"X":397,"Y":536,"Continent":"K53","Bonus":2,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669617Z"},{"ID":12207,"Name":"Szlachcic","Points":10083,"X":389,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669618Z"},{"ID":12208,"Name":"Wioska barbarzyƄska","Points":10475,"X":388,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669619Z"},{"ID":12209,"Name":"010","Points":9985,"X":604,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669619Z"},{"ID":12210,"Name":"[330] Chorągiewka na wietrze","Points":10301,"X":584,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66962Z"},{"ID":12211,"Name":"koczownicza 02","Points":10109,"X":396,"Y":531,"Continent":"K53","Bonus":6,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669621Z"},{"ID":12212,"Name":"0108","Points":9729,"X":443,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669622Z"},{"ID":12213,"Name":"Land of Fire","Points":9496,"X":399,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669622Z"},{"ID":12214,"Name":"Bagdad","Points":10654,"X":470,"Y":392,"Continent":"K34","Bonus":9,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669623Z"},{"ID":12215,"Name":"Radek","Points":10495,"X":395,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669624Z"},{"ID":12216,"Name":"z 017","Points":10475,"X":559,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669625Z"},{"ID":12217,"Name":"A011","Points":10217,"X":447,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669625Z"},{"ID":12218,"Name":"Czersk","Points":9835,"X":416,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669626Z"},{"ID":12219,"Name":"013.xxx","Points":9909,"X":483,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669627Z"},{"ID":12220,"Name":"Szlachcic","Points":10160,"X":389,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669628Z"},{"ID":12221,"Name":"Kiedyƛ Wielki Wojownik","Points":9024,"X":396,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669628Z"},{"ID":12222,"Name":"059","Points":10495,"X":611,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669629Z"},{"ID":12223,"Name":"- 018 -","Points":10000,"X":549,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66963Z"},{"ID":12224,"Name":"Wioska barbarzyƄska","Points":9664,"X":582,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669631Z"},{"ID":12225,"Name":"Wioska (019)","Points":9434,"X":598,"Y":512,"Continent":"K55","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669632Z"},{"ID":12226,"Name":"031 Colorado","Points":10495,"X":606,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669632Z"},{"ID":12227,"Name":"020 - Yaxchilan***","Points":10495,"X":435,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669633Z"},{"ID":12228,"Name":"Wioska barbarzyƄska","Points":10700,"X":397,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669634Z"},{"ID":12229,"Name":"[301] West","Points":10273,"X":599,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669634Z"},{"ID":12230,"Name":"ADEN","Points":10223,"X":588,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669635Z"},{"ID":12231,"Name":"Bagdad","Points":10787,"X":472,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669636Z"},{"ID":12232,"Name":"#003","Points":9717,"X":544,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669637Z"},{"ID":12234,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":570,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669637Z"},{"ID":12235,"Name":"Wioska20","Points":9503,"X":620,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669638Z"},{"ID":12236,"Name":"032","Points":10495,"X":543,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669639Z"},{"ID":12237,"Name":"002 New York City","Points":10495,"X":425,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669639Z"},{"ID":12238,"Name":"Wioska barbarzyƄska","Points":8427,"X":473,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66964Z"},{"ID":12239,"Name":"sƂodziuteƄka 10","Points":10059,"X":605,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669641Z"},{"ID":12240,"Name":"002","Points":10224,"X":427,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669642Z"},{"ID":12241,"Name":"Brat447","Points":10476,"X":392,"Y":514,"Continent":"K53","Bonus":3,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669642Z"},{"ID":12243,"Name":"0023 Wioska","Points":9913,"X":430,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669643Z"},{"ID":12244,"Name":"024. OgrĂłd Warzywny","Points":9925,"X":527,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669644Z"},{"ID":12245,"Name":"0104","Points":9824,"X":459,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669645Z"},{"ID":12246,"Name":"004","Points":9724,"X":600,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669646Z"},{"ID":12248,"Name":"089 MEHEHE 3","Points":10019,"X":491,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669646Z"},{"ID":12249,"Name":"[332] Chorągiewka na wietrze","Points":10391,"X":585,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669647Z"},{"ID":12250,"Name":"- 011 -","Points":10000,"X":551,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669648Z"},{"ID":12251,"Name":"006. Isengard","Points":10231,"X":485,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669649Z"},{"ID":12252,"Name":"#032 A","Points":10019,"X":451,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669649Z"},{"ID":12253,"Name":"Kaktus","Points":10019,"X":375,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66965Z"},{"ID":12254,"Name":"Coruscant 5","Points":9835,"X":495,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669651Z"},{"ID":12255,"Name":"1.Milwaukee","Points":9973,"X":550,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669651Z"},{"ID":12256,"Name":"Bocianikson015","Points":9069,"X":600,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669652Z"},{"ID":12258,"Name":"013. GĂłry Mgliste","Points":10484,"X":485,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669653Z"},{"ID":12259,"Name":"sƂodziuteƄka 02","Points":6189,"X":602,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669654Z"},{"ID":12260,"Name":"NOT","Points":10042,"X":418,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669654Z"},{"ID":12261,"Name":"042","Points":10094,"X":609,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669655Z"},{"ID":12262,"Name":"x10","Points":10285,"X":410,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669656Z"},{"ID":12263,"Name":"[364] Chorągiewka na wietrze","Points":10192,"X":594,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669657Z"},{"ID":12264,"Name":"016. Torstein","Points":10030,"X":589,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669657Z"},{"ID":12265,"Name":".achim.","Points":8825,"X":524,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669658Z"},{"ID":12266,"Name":"0646","Points":10495,"X":437,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669659Z"},{"ID":12267,"Name":"085 MEHEHE 5","Points":10019,"X":488,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66966Z"},{"ID":12268,"Name":"Teby_05","Points":9638,"X":502,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66966Z"},{"ID":12269,"Name":"barba","Points":10311,"X":463,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669661Z"},{"ID":12270,"Name":"016 - Legenda***","Points":10495,"X":441,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669662Z"},{"ID":12271,"Name":"[232] WEST","Points":10403,"X":601,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669663Z"},{"ID":12273,"Name":"Desperato*","Points":9873,"X":393,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669663Z"},{"ID":12274,"Name":"016","Points":9761,"X":495,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669664Z"},{"ID":12275,"Name":"BoOmBaa..","Points":8617,"X":445,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669665Z"},{"ID":12276,"Name":"C.002","Points":10208,"X":444,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669666Z"},{"ID":12277,"Name":"Ccccc","Points":10495,"X":419,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669666Z"},{"ID":12278,"Name":"002","Points":9742,"X":547,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669667Z"},{"ID":12279,"Name":"[011] MarV Hondlorz","Points":10292,"X":608,"Y":523,"Continent":"K56","Bonus":9,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669668Z"},{"ID":12280,"Name":"Bagdad","Points":10654,"X":475,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669669Z"},{"ID":12281,"Name":"00023Dalaran","Points":8993,"X":423,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669669Z"},{"ID":12282,"Name":"194","Points":8937,"X":568,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66967Z"},{"ID":12283,"Name":".achim.","Points":10311,"X":528,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669671Z"},{"ID":12284,"Name":"20029","Points":10321,"X":516,"Y":533,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669671Z"},{"ID":12285,"Name":"0007","Points":9977,"X":465,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669672Z"},{"ID":12286,"Name":"Najlepszy sąsiad 006","Points":10336,"X":592,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669673Z"},{"ID":12287,"Name":"031 Santorini","Points":9530,"X":611,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669674Z"},{"ID":12288,"Name":"Wioska6","Points":10291,"X":514,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669674Z"},{"ID":12289,"Name":"Knowhere","Points":10282,"X":387,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669675Z"},{"ID":12290,"Name":"0625","Points":10019,"X":439,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669676Z"},{"ID":12291,"Name":"Gravity","Points":9495,"X":404,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669677Z"},{"ID":12292,"Name":"001","Points":10311,"X":561,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669677Z"},{"ID":12293,"Name":"008","Points":9860,"X":606,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669678Z"},{"ID":12294,"Name":"[379] Chorągiewka na wietrze","Points":10411,"X":587,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669679Z"},{"ID":12295,"Name":"020","Points":9907,"X":605,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66968Z"},{"ID":12296,"Name":"- 089 -","Points":10000,"X":549,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66968Z"},{"ID":12297,"Name":"Lord Arsey KING","Points":10285,"X":578,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669681Z"},{"ID":12298,"Name":"z 013","Points":10475,"X":560,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669682Z"},{"ID":12299,"Name":"Jaaa","Points":10478,"X":579,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669682Z"},{"ID":12301,"Name":"Najlepszy sąsiad 003","Points":9750,"X":597,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669683Z"},{"ID":12302,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":470,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669684Z"},{"ID":12303,"Name":"Urojone Elizjum","Points":10237,"X":455,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669685Z"},{"ID":12304,"Name":"010. Aslaug","Points":10030,"X":588,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669686Z"},{"ID":12305,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":399,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669686Z"},{"ID":12306,"Name":"[013 ]Pa O","Points":10284,"X":607,"Y":539,"Continent":"K56","Bonus":3,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669687Z"},{"ID":12307,"Name":".achim.","Points":10311,"X":518,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669688Z"},{"ID":12308,"Name":"006","Points":10462,"X":425,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669688Z"},{"ID":12309,"Name":"026 Cithri","Points":10160,"X":610,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669689Z"},{"ID":12310,"Name":"003 Los Angeles","Points":10475,"X":426,"Y":418,"Continent":"K44","Bonus":1,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66969Z"},{"ID":12311,"Name":"NWO","Points":10957,"X":392,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669691Z"},{"ID":12312,"Name":"025 wjeĆŒdĆŒamZczoƂgami","Points":10495,"X":608,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669692Z"},{"ID":12313,"Name":"Bagdad","Points":9835,"X":472,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669693Z"},{"ID":12314,"Name":"Jaaa","Points":10487,"X":583,"Y":553,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669694Z"},{"ID":12315,"Name":"#028 M","Points":10311,"X":445,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669694Z"},{"ID":12316,"Name":"009","Points":10564,"X":602,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669695Z"},{"ID":12317,"Name":"Mrocza","Points":8662,"X":422,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669696Z"},{"ID":12318,"Name":"NOT","Points":10042,"X":414,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669697Z"},{"ID":12319,"Name":"007 Te pandy takie nie za mocne","Points":9861,"X":504,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669697Z"},{"ID":12320,"Name":"005","Points":9860,"X":610,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669698Z"},{"ID":12321,"Name":"Wioska barbarzyƄska","Points":9925,"X":422,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669699Z"},{"ID":12322,"Name":"0003 MzM","Points":9630,"X":603,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6697Z"},{"ID":12323,"Name":"[310] Chorągiewka na wietrze","Points":10394,"X":590,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.6697Z"},{"ID":12324,"Name":"EKG .::. Siwyy8848/1","Points":10495,"X":496,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669701Z"},{"ID":12325,"Name":"0084","Points":9835,"X":442,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669702Z"},{"ID":12327,"Name":"[323] Chorągiewka na wietrze","Points":10400,"X":590,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669703Z"},{"ID":12328,"Name":"002","Points":12154,"X":472,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669703Z"},{"ID":12329,"Name":"Wioska barbarzyƄska","Points":9913,"X":424,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669704Z"},{"ID":12330,"Name":"A16","Points":10470,"X":556,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669705Z"},{"ID":12331,"Name":"Wioska barbarzyƄska","Points":9363,"X":595,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669706Z"},{"ID":12332,"Name":"Hhhhh","Points":10495,"X":420,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669706Z"},{"ID":12333,"Name":"ok.","Points":10487,"X":389,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669707Z"},{"ID":12334,"Name":"015","Points":10186,"X":605,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669708Z"},{"ID":12335,"Name":"025","Points":10495,"X":558,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669709Z"},{"ID":12336,"Name":"Mniejsze zƂo 0012","Points":9744,"X":391,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669709Z"},{"ID":12337,"Name":"KIELBA 086","Points":10444,"X":461,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66971Z"},{"ID":12338,"Name":"C 012 Niepolomice","Points":6912,"X":417,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669711Z"},{"ID":12339,"Name":"KONFA TO MARKA, NARKA","Points":10336,"X":403,"Y":457,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669711Z"},{"ID":12340,"Name":"018","Points":9902,"X":490,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669712Z"},{"ID":12341,"Name":".achim.","Points":10311,"X":529,"Y":392,"Continent":"K35","Bonus":9,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669713Z"},{"ID":12342,"Name":"South K45","Points":10042,"X":572,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669714Z"},{"ID":12343,"Name":"Bier sie stad ino a wartko","Points":10019,"X":389,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669714Z"},{"ID":12344,"Name":"1818","Points":9565,"X":434,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669715Z"},{"ID":12346,"Name":"Pemberley","Points":11094,"X":407,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669716Z"},{"ID":12347,"Name":"017. Astrid","Points":10030,"X":587,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669717Z"},{"ID":12348,"Name":"0206","Points":10252,"X":447,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669717Z"},{"ID":12349,"Name":"PYRLANDIA 028 ni pod ci","Points":10351,"X":566,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669718Z"},{"ID":12350,"Name":"0024 W","Points":10075,"X":431,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669719Z"},{"ID":12351,"Name":"131 B04","Points":10559,"X":402,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66972Z"},{"ID":12352,"Name":"Jaaa","Points":10478,"X":589,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66972Z"},{"ID":12353,"Name":"007 Lufa na leĆŒÄ…co","Points":10495,"X":608,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669721Z"},{"ID":12354,"Name":"096","Points":10311,"X":549,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669722Z"},{"ID":12355,"Name":"Wioska barbarzyƄska","Points":3494,"X":397,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669723Z"},{"ID":12356,"Name":"079","Points":10490,"X":609,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669723Z"},{"ID":12357,"Name":"013","Points":9899,"X":549,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669724Z"},{"ID":12358,"Name":"PiekƂo to inni","Points":10160,"X":485,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669725Z"},{"ID":12359,"Name":"010","Points":10495,"X":553,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669726Z"},{"ID":12360,"Name":"023","Points":9562,"X":398,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669726Z"},{"ID":12362,"Name":"092 MEHEHE","Points":9966,"X":493,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669727Z"},{"ID":12363,"Name":"0020 Wioska","Points":10160,"X":433,"Y":409,"Continent":"K44","Bonus":7,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669728Z"},{"ID":12365,"Name":"138 B05","Points":10161,"X":404,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669728Z"},{"ID":12366,"Name":"0029 Wioska","Points":10078,"X":433,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669729Z"},{"ID":12367,"Name":"010 Nie potwierdzam","Points":4940,"X":598,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66973Z"},{"ID":12368,"Name":"NOT?","Points":10042,"X":404,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669731Z"},{"ID":12369,"Name":"ADEN","Points":10311,"X":587,"Y":431,"Continent":"K45","Bonus":3,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669732Z"},{"ID":12370,"Name":"Wioska JemekJankowski","Points":10478,"X":391,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669732Z"},{"ID":12371,"Name":"[244] West","Points":5582,"X":600,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669733Z"},{"ID":12372,"Name":"asasas","Points":9871,"X":398,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669734Z"},{"ID":12373,"Name":"Wielki mur 2","Points":8734,"X":478,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":849093155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669735Z"},{"ID":12374,"Name":"Zeta Reticuli S","Points":11417,"X":415,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669735Z"},{"ID":12375,"Name":"Kentin ufam Tobie","Points":10000,"X":436,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669736Z"},{"ID":12377,"Name":"009","Points":10019,"X":602,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669737Z"},{"ID":12378,"Name":"037","Points":10160,"X":501,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669738Z"},{"ID":12379,"Name":"A0035","Points":10362,"X":390,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669738Z"},{"ID":12381,"Name":"K44 x013","Points":9610,"X":432,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669739Z"},{"ID":12382,"Name":"Wioska barbarzyƄska","Points":9679,"X":394,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66974Z"},{"ID":12383,"Name":"bucks x kamiiiru","Points":10971,"X":421,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66974Z"},{"ID":12384,"Name":"011","Points":10362,"X":462,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669741Z"},{"ID":12385,"Name":"0645","Points":10019,"X":439,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669742Z"},{"ID":12386,"Name":"# Szymi 6","Points":9873,"X":394,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669743Z"},{"ID":12388,"Name":"C001","Points":9925,"X":520,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669743Z"},{"ID":12389,"Name":"FAKE OR OFF","Points":9821,"X":443,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669744Z"},{"ID":12390,"Name":"006. Rollo","Points":10030,"X":588,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669745Z"},{"ID":12391,"Name":"020 Notfair to kox","Points":10019,"X":599,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669746Z"},{"ID":12392,"Name":"Wioska barbarzyƄska","Points":9721,"X":598,"Y":547,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669746Z"},{"ID":12393,"Name":"137 B14","Points":7936,"X":403,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669747Z"},{"ID":12394,"Name":"Najlepszy sąsiad 004","Points":10273,"X":597,"Y":444,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669748Z"},{"ID":12395,"Name":"043","Points":10478,"X":608,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669748Z"},{"ID":12396,"Name":"Kentin ufam Tobie","Points":10000,"X":436,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669749Z"},{"ID":12397,"Name":"175","Points":8741,"X":543,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66975Z"},{"ID":12398,"Name":"NOT?","Points":10042,"X":401,"Y":547,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669751Z"},{"ID":12399,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":396,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669752Z"},{"ID":12400,"Name":"002","Points":9804,"X":551,"Y":400,"Continent":"K45","Bonus":3,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669752Z"},{"ID":12401,"Name":"Brat447","Points":10495,"X":391,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669753Z"},{"ID":12402,"Name":"PiekƂo to inni","Points":10160,"X":487,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669754Z"},{"ID":12403,"Name":"089","Points":10311,"X":574,"Y":414,"Continent":"K45","Bonus":1,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669754Z"},{"ID":12404,"Name":"078 - Twierdza 001","Points":9489,"X":418,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669755Z"},{"ID":12405,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":580,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669756Z"},{"ID":12406,"Name":"Lord Arsey KING","Points":10285,"X":579,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669757Z"},{"ID":12407,"Name":"Knowhere","Points":10452,"X":391,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669758Z"},{"ID":12408,"Name":"Knowhere","Points":10374,"X":390,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669758Z"},{"ID":12409,"Name":"Wioska Bleeklos","Points":10242,"X":608,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669759Z"},{"ID":12410,"Name":"002 (LukaszWspanialy)","Points":9835,"X":413,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.66976Z"},{"ID":12411,"Name":"Wioska barbarzyƄska","Points":10047,"X":398,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669761Z"},{"ID":12413,"Name":"Gattacka","Points":8913,"X":539,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669761Z"},{"ID":12414,"Name":"Wioska marekkkzzz665","Points":10495,"X":388,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669762Z"},{"ID":12415,"Name":"~011.","Points":10495,"X":499,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669763Z"},{"ID":12416,"Name":"x02","Points":10285,"X":408,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.669764Z"},{"ID":12417,"Name":"078","Points":10129,"X":414,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702225Z"},{"ID":12418,"Name":"024.xxx","Points":10002,"X":481,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702226Z"},{"ID":12419,"Name":"002buuuuu","Points":9594,"X":408,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702226Z"},{"ID":12420,"Name":"A006","Points":9925,"X":514,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702227Z"},{"ID":12421,"Name":"Wioska","Points":10178,"X":388,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702227Z"},{"ID":12422,"Name":".achim.","Points":10311,"X":524,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702228Z"},{"ID":12423,"Name":"136 S013","Points":7787,"X":405,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702229Z"},{"ID":12424,"Name":"[233] WEST","Points":10063,"X":600,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702229Z"},{"ID":12425,"Name":"005 Helmowy Jar","Points":9935,"X":609,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70223Z"},{"ID":12426,"Name":"KIELBA 085","Points":10495,"X":454,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70223Z"},{"ID":12427,"Name":"017","Points":9740,"X":540,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702231Z"},{"ID":12428,"Name":"0006","Points":11130,"X":535,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702231Z"},{"ID":12429,"Name":"032 Kreta","Points":9669,"X":613,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702232Z"},{"ID":12430,"Name":"0026 utache","Points":9909,"X":427,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702232Z"},{"ID":12431,"Name":"Brat447","Points":10478,"X":387,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702233Z"},{"ID":12432,"Name":"003","Points":8569,"X":509,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702233Z"},{"ID":12434,"Name":"Majin Buu 009","Points":8156,"X":441,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702234Z"},{"ID":12435,"Name":"Wioska barbarzyƄska","Points":9835,"X":566,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702234Z"},{"ID":12436,"Name":"[0088]","Points":10495,"X":449,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702235Z"},{"ID":12437,"Name":"003a barba","Points":9277,"X":428,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702236Z"},{"ID":12438,"Name":"[306] Chorągiewka na wietrze","Points":10167,"X":590,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702236Z"},{"ID":12439,"Name":"Z barba 003","Points":10495,"X":423,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702237Z"},{"ID":12440,"Name":"NOT","Points":9950,"X":415,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702237Z"},{"ID":12441,"Name":"026","Points":10311,"X":545,"Y":396,"Continent":"K35","Bonus":1,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702238Z"},{"ID":12442,"Name":"Mniejsze zƂo 0009","Points":9847,"X":392,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702238Z"},{"ID":12443,"Name":"*018*","Points":8447,"X":609,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702239Z"},{"ID":12444,"Name":"ZABAWA -2- Waldemar Wielki","Points":10285,"X":407,"Y":440,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702239Z"},{"ID":12445,"Name":"yogi","Points":10019,"X":537,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70224Z"},{"ID":12446,"Name":"060","Points":10495,"X":610,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70224Z"},{"ID":12447,"Name":"0007 N","Points":10083,"X":425,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702241Z"},{"ID":12448,"Name":"[237] WEST","Points":10054,"X":599,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702242Z"},{"ID":12449,"Name":"Wioska barbarzyƄska","Points":10285,"X":413,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702242Z"},{"ID":12450,"Name":"CALL 1006","Points":10178,"X":521,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702243Z"},{"ID":12451,"Name":"0011 F","Points":10160,"X":430,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702243Z"},{"ID":12452,"Name":"009","Points":9677,"X":613,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702244Z"},{"ID":12453,"Name":"D01","Points":10019,"X":621,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702245Z"},{"ID":12454,"Name":"0016","Points":10317,"X":612,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702245Z"},{"ID":12455,"Name":"005 San Francisco","Points":10479,"X":427,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702246Z"},{"ID":12456,"Name":"0003","Points":10495,"X":601,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702246Z"},{"ID":12457,"Name":"Wioska","Points":10178,"X":388,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702247Z"},{"ID":12458,"Name":"KRÓL PAPI WIELKI","Points":9899,"X":582,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702247Z"},{"ID":12459,"Name":"032 - GKS","Points":10495,"X":425,"Y":583,"Continent":"K54","Bonus":8,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702248Z"},{"ID":12460,"Name":"007a","Points":9038,"X":422,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702248Z"},{"ID":12461,"Name":".achim.","Points":10311,"X":525,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702249Z"},{"ID":12462,"Name":"[A]_[016] Dejv.oldplyr","Points":10495,"X":392,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702249Z"},{"ID":12463,"Name":"D017","Points":9925,"X":505,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70225Z"},{"ID":12464,"Name":"A.002","Points":10000,"X":602,"Y":551,"Continent":"K56","Bonus":8,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702251Z"},{"ID":12465,"Name":"Wioska pchelka75","Points":3440,"X":594,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":583500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702251Z"},{"ID":12466,"Name":".achim.","Points":3828,"X":526,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702252Z"},{"ID":12467,"Name":"0232","Points":7325,"X":451,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702252Z"},{"ID":12468,"Name":"Mzm14","Points":10252,"X":610,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702253Z"},{"ID":12469,"Name":"#002","Points":9761,"X":543,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702253Z"},{"ID":12470,"Name":"A008","Points":10221,"X":448,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702254Z"},{"ID":12471,"Name":"Teby_03","Points":9638,"X":503,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702254Z"},{"ID":12472,"Name":"Naboo 6","Points":8889,"X":487,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702255Z"},{"ID":12473,"Name":"Wioska barbarzyƄska","Points":9037,"X":390,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702255Z"},{"ID":12474,"Name":"Gravity","Points":9525,"X":404,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702256Z"},{"ID":12475,"Name":"Kentin ufam Tobie","Points":10064,"X":392,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702256Z"},{"ID":12476,"Name":"066 - Cenny***","Points":5991,"X":436,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702257Z"},{"ID":12477,"Name":"006","Points":10192,"X":609,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702258Z"},{"ID":12478,"Name":"Wioska barbarzyƄska","Points":7764,"X":390,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702258Z"},{"ID":12479,"Name":"Fresio","Points":10128,"X":424,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702259Z"},{"ID":12480,"Name":"16. Barret Wallace","Points":10495,"X":521,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702259Z"},{"ID":12481,"Name":"012","Points":9976,"X":544,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70226Z"},{"ID":12482,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":463,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702261Z"},{"ID":12483,"Name":"006 LordTrol","Points":10495,"X":611,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702261Z"},{"ID":12484,"Name":"107","Points":10311,"X":569,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702262Z"},{"ID":12485,"Name":"Yogi","Points":10019,"X":540,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702262Z"},{"ID":12486,"Name":"Heart Of Steel","Points":9526,"X":593,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702263Z"},{"ID":12487,"Name":"Popas1","Points":9752,"X":387,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702263Z"},{"ID":12488,"Name":"Wioska barbarzyƄska","Points":10285,"X":409,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702264Z"},{"ID":12489,"Name":"004","Points":9860,"X":610,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702264Z"},{"ID":12490,"Name":"~089.","Points":10495,"X":492,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702265Z"},{"ID":12491,"Name":"055","Points":10311,"X":549,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702266Z"},{"ID":12492,"Name":"027","Points":10495,"X":562,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702266Z"},{"ID":12493,"Name":"002","Points":10019,"X":604,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702267Z"},{"ID":12494,"Name":"Wioska barbarzyƄska","Points":10285,"X":412,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702267Z"},{"ID":12495,"Name":"[360] Chorągiewka na wietrze","Points":10068,"X":592,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702268Z"},{"ID":12496,"Name":"- 128 -","Points":8471,"X":551,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702268Z"},{"ID":12497,"Name":"~075.","Points":10495,"X":490,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702269Z"},{"ID":12498,"Name":"Ręcznik do zmiany","Points":10495,"X":389,"Y":479,"Continent":"K43","Bonus":1,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702269Z"},{"ID":12499,"Name":"025 To byƂy czasy","Points":10066,"X":596,"Y":449,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70227Z"},{"ID":12500,"Name":"0025 Wioska","Points":10083,"X":429,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70227Z"},{"ID":12501,"Name":"032","Points":8031,"X":603,"Y":462,"Continent":"K46","Bonus":6,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702271Z"},{"ID":12502,"Name":"025 Ellesmera","Points":12154,"X":601,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702271Z"},{"ID":12503,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":393,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702272Z"},{"ID":12504,"Name":"India","Points":8663,"X":596,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702273Z"},{"ID":12505,"Name":"Ceiling - Air-Conditioning Duct","Points":10495,"X":530,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702273Z"},{"ID":12506,"Name":"038","Points":10030,"X":589,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702274Z"},{"ID":12507,"Name":"x06","Points":10285,"X":410,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702274Z"},{"ID":12508,"Name":".achim.","Points":10311,"X":526,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702275Z"},{"ID":12509,"Name":"013","Points":10495,"X":612,"Y":483,"Continent":"K46","Bonus":9,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702275Z"},{"ID":12510,"Name":"007","Points":10285,"X":407,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702276Z"},{"ID":12511,"Name":"00354 MaƂego Franka","Points":8790,"X":427,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702276Z"},{"ID":12512,"Name":"007 barbarzyƄska","Points":10318,"X":608,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702277Z"},{"ID":12513,"Name":"007","Points":10019,"X":604,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702277Z"},{"ID":12514,"Name":"011. Torvi","Points":10030,"X":589,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702278Z"},{"ID":12515,"Name":"EKG M .::. Paola65","Points":10495,"X":480,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702278Z"},{"ID":12516,"Name":"[218] WEST","Points":10052,"X":606,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702279Z"},{"ID":12517,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":582,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702279Z"},{"ID":12518,"Name":".achim.","Points":10311,"X":526,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70228Z"},{"ID":12519,"Name":"025 Albania","Points":10495,"X":593,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702281Z"},{"ID":12520,"Name":"075 Minnesota","Points":10495,"X":611,"Y":486,"Continent":"K46","Bonus":1,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702281Z"},{"ID":12521,"Name":"005 Moss","Points":10319,"X":602,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702282Z"},{"ID":12522,"Name":"B.002","Points":9221,"X":410,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702283Z"},{"ID":12523,"Name":"PiekƂo to inni","Points":10083,"X":479,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702283Z"},{"ID":12524,"Name":"A.020","Points":10000,"X":596,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702284Z"},{"ID":12525,"Name":"DOM 14","Points":9824,"X":567,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702284Z"},{"ID":12526,"Name":"SkƂad","Points":10121,"X":507,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702285Z"},{"ID":12527,"Name":"South K45","Points":5427,"X":574,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702285Z"},{"ID":12528,"Name":"Baza1","Points":10285,"X":408,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702286Z"},{"ID":12529,"Name":".achim.","Points":10311,"X":529,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702286Z"},{"ID":12530,"Name":"Wioska","Points":10178,"X":389,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702287Z"},{"ID":12531,"Name":"083 Missouri","Points":10495,"X":611,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702288Z"},{"ID":12532,"Name":"Wioska barbarzyƄska","Points":5439,"X":405,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702288Z"},{"ID":12533,"Name":"014","Points":10311,"X":611,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702289Z"},{"ID":12534,"Name":"s181eo04","Points":9902,"X":399,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702289Z"},{"ID":12535,"Name":"bucks x kamiiiru","Points":10971,"X":421,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70229Z"},{"ID":12536,"Name":"Wioska","Points":10178,"X":388,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702291Z"},{"ID":12538,"Name":"074","Points":7952,"X":608,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702291Z"},{"ID":12539,"Name":"006","Points":7979,"X":596,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702292Z"},{"ID":12540,"Name":"0005. C - Aberon","Points":9825,"X":623,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702292Z"},{"ID":12541,"Name":"014","Points":10192,"X":607,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702293Z"},{"ID":12542,"Name":"Jaaa","Points":10475,"X":584,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702293Z"},{"ID":12543,"Name":"Wioska","Points":10178,"X":387,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702294Z"},{"ID":12544,"Name":"021. Patavium","Points":9740,"X":614,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702295Z"},{"ID":12545,"Name":"041 Dallas","Points":10481,"X":424,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702295Z"},{"ID":12546,"Name":"*1Nocne Harce","Points":10052,"X":584,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702296Z"},{"ID":12547,"Name":"0009","Points":11824,"X":532,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702296Z"},{"ID":12548,"Name":"terra vista","Points":10252,"X":398,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702297Z"},{"ID":12549,"Name":"RUSZEK NIE DLA CIEBIE","Points":9669,"X":588,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702297Z"},{"ID":12550,"Name":"East Blue","Points":10375,"X":494,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702298Z"},{"ID":12551,"Name":"!*305*","Points":10311,"X":508,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702299Z"},{"ID":12552,"Name":"Wioska","Points":10178,"X":380,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702299Z"},{"ID":12553,"Name":"Insomnia","Points":10495,"X":527,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7023Z"},{"ID":12555,"Name":"[0036]","Points":10495,"X":455,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702301Z"},{"ID":12556,"Name":"Land of Fire","Points":9497,"X":399,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702301Z"},{"ID":12557,"Name":"Galia 3","Points":5558,"X":595,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":848989855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702302Z"},{"ID":12558,"Name":"05 MakijaĆŒ","Points":9097,"X":614,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702302Z"},{"ID":12559,"Name":"031","Points":10068,"X":591,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702303Z"},{"ID":12560,"Name":"*007*","Points":8805,"X":618,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702303Z"},{"ID":12561,"Name":"024 - B08.***","Points":10495,"X":439,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702304Z"},{"ID":12563,"Name":"Z barba 004","Points":8301,"X":424,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702304Z"},{"ID":12564,"Name":"0133","Points":10160,"X":461,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702305Z"},{"ID":12565,"Name":"Memorial Museum","Points":10559,"X":516,"Y":613,"Continent":"K65","Bonus":6,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702305Z"},{"ID":12566,"Name":"Soldier Of Fortune","Points":9456,"X":595,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702306Z"},{"ID":12567,"Name":"0000025@","Points":10160,"X":435,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702307Z"},{"ID":12568,"Name":"Mourinho","Points":9868,"X":626,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702307Z"},{"ID":12569,"Name":"C004","Points":9925,"X":523,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702308Z"},{"ID":12570,"Name":"Grand Line","Points":10495,"X":490,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702308Z"},{"ID":12571,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":573,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702309Z"},{"ID":12572,"Name":"005","Points":10098,"X":613,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702309Z"},{"ID":12573,"Name":"011","Points":10495,"X":558,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70231Z"},{"ID":12574,"Name":"#010","Points":10393,"X":473,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702311Z"},{"ID":12575,"Name":"0037","Points":9791,"X":614,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702311Z"},{"ID":12576,"Name":".achim.","Points":10311,"X":536,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702312Z"},{"ID":12577,"Name":"013","Points":9902,"X":492,"Y":387,"Continent":"K34","Bonus":1,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702312Z"},{"ID":12579,"Name":"PiekƂo to inni","Points":10019,"X":484,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702313Z"},{"ID":12580,"Name":"030","Points":10495,"X":610,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702314Z"},{"ID":12581,"Name":".achim.","Points":10311,"X":536,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702314Z"},{"ID":12582,"Name":"NIERAJ006","Points":10126,"X":469,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702315Z"},{"ID":12583,"Name":"0047 MzM","Points":9258,"X":601,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702315Z"},{"ID":12584,"Name":"Kentin ufam Tobie","Points":10000,"X":438,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702316Z"},{"ID":12586,"Name":"- 050 -","Points":10000,"X":540,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702316Z"},{"ID":12587,"Name":"Vegus to wygraƂ","Points":10122,"X":398,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702317Z"},{"ID":12588,"Name":"A0032","Points":10362,"X":389,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702317Z"},{"ID":12589,"Name":"018","Points":10001,"X":609,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702318Z"},{"ID":12591,"Name":"Knowhere","Points":10374,"X":388,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702318Z"},{"ID":12592,"Name":".:007:.Chillout","Points":10495,"X":501,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702319Z"},{"ID":12593,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":529,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70232Z"},{"ID":12594,"Name":"Wioska (015)","Points":9850,"X":604,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70232Z"},{"ID":12595,"Name":"~017.","Points":10495,"X":500,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702321Z"},{"ID":12596,"Name":"D019","Points":9925,"X":504,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702321Z"},{"ID":12597,"Name":"Gravity","Points":9515,"X":401,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702322Z"},{"ID":12598,"Name":"#019","Points":10393,"X":474,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702322Z"},{"ID":12599,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":463,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702323Z"},{"ID":12600,"Name":"Wioska barbarzyƄska","Points":9966,"X":604,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702323Z"},{"ID":12601,"Name":"010 Detroit","Points":10484,"X":425,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702324Z"},{"ID":12602,"Name":"#031","Points":9970,"X":521,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702324Z"},{"ID":12603,"Name":"[0005]","Points":10495,"X":454,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702325Z"},{"ID":12604,"Name":".achim.","Points":10311,"X":522,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702325Z"},{"ID":12605,"Name":"Jeremy","Points":8560,"X":599,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702326Z"},{"ID":12606,"Name":"0022 przemas1994","Points":10132,"X":428,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702326Z"},{"ID":12607,"Name":"Gravity","Points":9509,"X":406,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702327Z"},{"ID":12608,"Name":"044 - A02***","Points":10495,"X":433,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702328Z"},{"ID":12609,"Name":"0022","Points":10069,"X":429,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702328Z"},{"ID":12610,"Name":"[235] WEST","Points":10209,"X":599,"Y":449,"Continent":"K45","Bonus":9,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702329Z"},{"ID":12611,"Name":"NOT","Points":10042,"X":419,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70233Z"},{"ID":12612,"Name":"004","Points":9783,"X":545,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70233Z"},{"ID":12613,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702331Z"},{"ID":12614,"Name":"A005","Points":9925,"X":516,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702331Z"},{"ID":12616,"Name":"Kentin ufam Tobie","Points":10000,"X":438,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702332Z"},{"ID":12617,"Name":"L 1","Points":10032,"X":612,"Y":476,"Continent":"K46","Bonus":5,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702332Z"},{"ID":12618,"Name":"011","Points":9742,"X":546,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702333Z"},{"ID":12619,"Name":"Kiedyƛ Wielki Wojownik","Points":9172,"X":395,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702333Z"},{"ID":12621,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":458,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702334Z"},{"ID":12622,"Name":"017 Okinawa","Points":10495,"X":614,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702335Z"},{"ID":12623,"Name":"Szlachcic","Points":10160,"X":391,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702335Z"},{"ID":12624,"Name":"036","Points":10495,"X":545,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702336Z"},{"ID":12625,"Name":"Ww 005","Points":10190,"X":443,"Y":599,"Continent":"K54","Bonus":8,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702336Z"},{"ID":12626,"Name":"0323","Points":10019,"X":446,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702337Z"},{"ID":12627,"Name":"Gravity","Points":9485,"X":405,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702338Z"},{"ID":12628,"Name":"003 | Lord Axen - Rumbling,","Points":10235,"X":562,"Y":552,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702338Z"},{"ID":12629,"Name":"Kiedyƛ Wielki Wojownik","Points":9819,"X":395,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702339Z"},{"ID":12630,"Name":"[A]_[003] Dejv.oldplyr","Points":10444,"X":392,"Y":478,"Continent":"K43","Bonus":8,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702339Z"},{"ID":12631,"Name":"Wioska barbarzyƄska","Points":7723,"X":439,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70234Z"},{"ID":12632,"Name":"Knowhere","Points":10452,"X":389,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70234Z"},{"ID":12633,"Name":".achim.","Points":10311,"X":519,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702341Z"},{"ID":12634,"Name":"Wioska barbarzyƄska","Points":10285,"X":410,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702341Z"},{"ID":12635,"Name":"WaƂ się","Points":4996,"X":612,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":6837266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702342Z"},{"ID":12636,"Name":"Lord Arsey KING","Points":10285,"X":572,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702342Z"},{"ID":12637,"Name":"015 Bez strachu","Points":10002,"X":598,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702343Z"},{"ID":12638,"Name":"Bagdad","Points":10654,"X":467,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702343Z"},{"ID":12639,"Name":"Knowhere","Points":10452,"X":388,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702344Z"},{"ID":12640,"Name":"B.005","Points":9370,"X":413,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702344Z"},{"ID":12641,"Name":"Wioska DETONATOR2010","Points":5027,"X":506,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":3024357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702345Z"},{"ID":12642,"Name":"SZYMI PALACE 14","Points":5835,"X":392,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702346Z"},{"ID":12643,"Name":"*004*","Points":8600,"X":609,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702346Z"},{"ID":12644,"Name":"093 JESTEƚ SOBĄ LUB KOGOƚ GRASZ","Points":10475,"X":399,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702347Z"},{"ID":12645,"Name":"Gravity","Points":9486,"X":402,"Y":447,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702347Z"},{"ID":12646,"Name":"Lord Arsey KING","Points":10285,"X":578,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702348Z"},{"ID":12647,"Name":"0032","Points":9970,"X":462,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702348Z"},{"ID":12648,"Name":"0347","Points":10362,"X":446,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702349Z"},{"ID":12649,"Name":"061","Points":10373,"X":613,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702349Z"},{"ID":12650,"Name":"ADEN","Points":9730,"X":578,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70235Z"},{"ID":12651,"Name":"A007","Points":9925,"X":513,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70235Z"},{"ID":12652,"Name":"Najlepszy sąsiad 014","Points":8511,"X":596,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702351Z"},{"ID":12653,"Name":"018","Points":9741,"X":540,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702351Z"},{"ID":12654,"Name":"NWO","Points":12133,"X":392,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702352Z"},{"ID":12655,"Name":"PodziękowaƂ 2","Points":10303,"X":455,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702352Z"},{"ID":12656,"Name":"s181eo18","Points":9902,"X":399,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702353Z"},{"ID":12657,"Name":"[305] Chorągiewka na wietrze","Points":10600,"X":592,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702354Z"},{"ID":12658,"Name":".achim.","Points":10311,"X":518,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702354Z"},{"ID":12659,"Name":"SZYMI PALACE 15","Points":6725,"X":393,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702355Z"},{"ID":12660,"Name":"0008","Points":8983,"X":464,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702355Z"},{"ID":12661,"Name":"005","Points":8003,"X":426,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702356Z"},{"ID":12662,"Name":"Z barba 017","Points":7436,"X":410,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702356Z"},{"ID":12663,"Name":"Zeta Reticuli S","Points":11417,"X":417,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702357Z"},{"ID":12664,"Name":"004","Points":10316,"X":610,"Y":469,"Continent":"K46","Bonus":8,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702357Z"},{"ID":12665,"Name":"Wioska lordtados","Points":6647,"X":416,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":698526036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702358Z"},{"ID":12666,"Name":"016","Points":10311,"X":574,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702358Z"},{"ID":12667,"Name":"129 B01","Points":6865,"X":402,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702359Z"},{"ID":12668,"Name":"002","Points":11130,"X":435,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702359Z"},{"ID":12669,"Name":"0030 wolawce","Points":10069,"X":430,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70236Z"},{"ID":12670,"Name":"004","Points":11130,"X":432,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70236Z"},{"ID":12671,"Name":"[238] WEST","Points":10057,"X":601,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702361Z"},{"ID":12672,"Name":"Gravity","Points":9485,"X":401,"Y":444,"Continent":"K44","Bonus":4,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702362Z"},{"ID":12673,"Name":".003.","Points":10595,"X":495,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702362Z"},{"ID":12674,"Name":"W.181/04","Points":10242,"X":607,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702363Z"},{"ID":12675,"Name":"013","Points":9910,"X":609,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702363Z"},{"ID":12676,"Name":"PYRLANDIA 031 RYCERZ MAƁY","Points":10153,"X":562,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702364Z"},{"ID":12677,"Name":"A008","Points":9925,"X":512,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702364Z"},{"ID":12678,"Name":"009 ludki","Points":10149,"X":610,"Y":517,"Continent":"K56","Bonus":4,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702365Z"},{"ID":12679,"Name":"South K45","Points":10042,"X":573,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702365Z"},{"ID":12680,"Name":"0009","Points":9967,"X":430,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702366Z"},{"ID":12681,"Name":"K44 x023","Points":7641,"X":437,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702367Z"},{"ID":12682,"Name":"001","Points":9458,"X":414,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702367Z"},{"ID":12683,"Name":"*INTERTWINED**","Points":9711,"X":509,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702368Z"},{"ID":12685,"Name":"Brat447","Points":10476,"X":389,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702368Z"},{"ID":12686,"Name":"Wioska Bartiii95","Points":10311,"X":506,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702369Z"},{"ID":12687,"Name":".013.","Points":10316,"X":496,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702369Z"},{"ID":12688,"Name":"027","Points":10311,"X":546,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70237Z"},{"ID":12689,"Name":"A.004","Points":10000,"X":600,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70237Z"},{"ID":12690,"Name":"K44 x006","Points":8561,"X":440,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702371Z"},{"ID":12691,"Name":"Najlepszy sąsiad 001","Points":10273,"X":596,"Y":442,"Continent":"K45","Bonus":3,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702372Z"},{"ID":12692,"Name":"056","Points":10311,"X":545,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702372Z"},{"ID":12693,"Name":"035 Witam ponownie","Points":10019,"X":605,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702373Z"},{"ID":12694,"Name":"Osada koczownikĂłw","Points":11116,"X":396,"Y":535,"Continent":"K53","Bonus":1,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702373Z"},{"ID":12695,"Name":"Valhalla Calling","Points":9462,"X":598,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702374Z"},{"ID":12696,"Name":"Wioska barbarzyƄska","Points":10068,"X":411,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702374Z"},{"ID":12697,"Name":"#050","Points":10393,"X":448,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702375Z"},{"ID":12698,"Name":"[349] Chorągiewka na wietrze","Points":10068,"X":583,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702375Z"},{"ID":12699,"Name":"*INTERTWINED*","Points":5880,"X":467,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702376Z"},{"ID":12700,"Name":"Ddddd","Points":10495,"X":419,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702376Z"},{"ID":12701,"Name":"012","Points":9519,"X":609,"Y":465,"Continent":"K46","Bonus":4,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702377Z"},{"ID":12702,"Name":"01 im Trockiego","Points":9809,"X":593,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702377Z"},{"ID":12703,"Name":"z 014","Points":10476,"X":558,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702378Z"},{"ID":12705,"Name":"Sir Hood 7","Points":6846,"X":389,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702378Z"},{"ID":12706,"Name":"ADEN","Points":7810,"X":571,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702379Z"},{"ID":12707,"Name":"*5501* Everton","Points":10287,"X":590,"Y":563,"Continent":"K55","Bonus":9,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702379Z"},{"ID":12708,"Name":"Wioska","Points":9570,"X":391,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70238Z"},{"ID":12709,"Name":"036 Kabel VGA","Points":10019,"X":597,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70238Z"},{"ID":12711,"Name":"181-004","Points":3445,"X":585,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":8876551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702381Z"},{"ID":12712,"Name":"Szlachcic","Points":10019,"X":388,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702381Z"},{"ID":12713,"Name":"[304] Chorągiewka na wietrze nr2","Points":10054,"X":592,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702382Z"},{"ID":12714,"Name":"Coruscant 8","Points":9528,"X":495,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702383Z"},{"ID":12715,"Name":"Brat447","Points":10484,"X":386,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702383Z"},{"ID":12716,"Name":"005","Points":10559,"X":563,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702384Z"},{"ID":12717,"Name":"[313] Chorągiewka na wietrze -","Points":10403,"X":597,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702384Z"},{"ID":12718,"Name":"0079","Points":10495,"X":600,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702385Z"},{"ID":12719,"Name":"012. Gloria Victis","Points":10449,"X":423,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702385Z"},{"ID":12720,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":465,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702386Z"},{"ID":12721,"Name":"NOT?","Points":4900,"X":403,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702387Z"},{"ID":12722,"Name":"Kentin ufam Tobie","Points":10000,"X":435,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702387Z"},{"ID":12723,"Name":"Sir Hood 4","Points":10213,"X":388,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702388Z"},{"ID":12724,"Name":"Lord Arsey KING","Points":10285,"X":575,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702388Z"},{"ID":12725,"Name":"!Land of Fire","Points":9488,"X":399,"Y":445,"Continent":"K43","Bonus":9,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702389Z"},{"ID":12727,"Name":"Wioska barbarzyƄska","Points":9835,"X":567,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702389Z"},{"ID":12728,"Name":"CALL 924","Points":10311,"X":554,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70239Z"},{"ID":12729,"Name":"PYRLANDIA 005 s + 8K","Points":10495,"X":568,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70239Z"},{"ID":12730,"Name":"026 Wioska","Points":9958,"X":611,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702391Z"},{"ID":12731,"Name":"152","Points":10311,"X":581,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702391Z"},{"ID":12732,"Name":"Suppi","Points":10362,"X":418,"Y":541,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702392Z"},{"ID":12733,"Name":"[225] WEST","Points":10132,"X":603,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702392Z"},{"ID":12734,"Name":".achim.","Points":10311,"X":528,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702393Z"},{"ID":12735,"Name":"021","Points":9741,"X":538,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702393Z"},{"ID":12736,"Name":"Wioska","Points":10178,"X":385,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702394Z"},{"ID":12737,"Name":"Lord Arsey KING","Points":10285,"X":575,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702394Z"},{"ID":12738,"Name":"Najlepszy sąsiad 011","Points":9797,"X":600,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702395Z"},{"ID":12739,"Name":"Wioska Nevada (Nevada)","Points":9989,"X":415,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702395Z"},{"ID":12740,"Name":"z 027","Points":10237,"X":561,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702396Z"},{"ID":12741,"Name":".achim.","Points":10311,"X":525,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702397Z"},{"ID":12742,"Name":"DOM 8","Points":9741,"X":565,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702397Z"},{"ID":12743,"Name":"Mięguszowiecki Szczyt Czarny","Points":7741,"X":386,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702398Z"},{"ID":12744,"Name":"Wioska","Points":9441,"X":390,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702398Z"},{"ID":12745,"Name":"019 MoonsteRR","Points":10495,"X":611,"Y":511,"Continent":"K56","Bonus":1,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702399Z"},{"ID":12746,"Name":"007","Points":9742,"X":544,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702399Z"},{"ID":12747,"Name":"B.003","Points":9323,"X":410,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7024Z"},{"ID":12748,"Name":"CALL 1008","Points":10311,"X":526,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7024Z"},{"ID":12749,"Name":"Ground Level","Points":10559,"X":479,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702401Z"},{"ID":12750,"Name":"EKG .::. Limak x Orlok","Points":10495,"X":492,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702401Z"},{"ID":12751,"Name":"Maintenance Hall","Points":10495,"X":526,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702402Z"},{"ID":12752,"Name":"Zeta Reticuli S","Points":10997,"X":414,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702403Z"},{"ID":12753,"Name":"0002","Points":10030,"X":467,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702403Z"},{"ID":12754,"Name":"Gravity","Points":9486,"X":400,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702404Z"},{"ID":12755,"Name":"PYRLANDIA 010 S + 8K","Points":10495,"X":571,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702404Z"},{"ID":12756,"Name":"125 B13","Points":9288,"X":400,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702405Z"},{"ID":12757,"Name":"0096","Points":9742,"X":457,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702405Z"},{"ID":12758,"Name":"lo1","Points":9967,"X":478,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":849093155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702406Z"},{"ID":12759,"Name":"020","Points":10495,"X":611,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702406Z"},{"ID":12760,"Name":"0017 I","Points":10160,"X":435,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702407Z"},{"ID":12761,"Name":"048","Points":7266,"X":485,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702408Z"},{"ID":12762,"Name":"Sir Hood 2","Points":10332,"X":392,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702408Z"},{"ID":12763,"Name":"057","Points":10311,"X":555,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702409Z"},{"ID":12764,"Name":"NOT","Points":10042,"X":415,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702409Z"},{"ID":12765,"Name":"Prairie Outpost","Points":9892,"X":469,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70241Z"},{"ID":12766,"Name":"008","Points":10311,"X":607,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70241Z"},{"ID":12767,"Name":"Sir Hood 6","Points":10178,"X":392,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702411Z"},{"ID":12768,"Name":"Kiedyƛ Wielki Wojownik","Points":9791,"X":397,"Y":454,"Continent":"K43","Bonus":9,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702411Z"},{"ID":12769,"Name":"Holistic Town","Points":9988,"X":504,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702412Z"},{"ID":12770,"Name":"Sust4noL","Points":10495,"X":613,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702412Z"},{"ID":12771,"Name":"Civil War","Points":9608,"X":589,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702413Z"},{"ID":12772,"Name":"042 - A04","Points":10495,"X":430,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702413Z"},{"ID":12773,"Name":"051.","Points":4659,"X":593,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702414Z"},{"ID":12774,"Name":"FAKE OR OFF","Points":9821,"X":440,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702415Z"},{"ID":12775,"Name":"Ok.","Points":10143,"X":387,"Y":524,"Continent":"K53","Bonus":5,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702415Z"},{"ID":12776,"Name":"** 1 Czujesz ten dreszczyk ?","Points":10469,"X":590,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702416Z"},{"ID":12777,"Name":"007","Points":9860,"X":605,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702416Z"},{"ID":12778,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":583,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702417Z"},{"ID":12779,"Name":"sƂodziuteƄka 04","Points":4340,"X":605,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702418Z"},{"ID":12780,"Name":"NOT","Points":10042,"X":420,"Y":422,"Continent":"K44","Bonus":5,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702418Z"},{"ID":12781,"Name":"0087","Points":9824,"X":459,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702419Z"},{"ID":12782,"Name":"San Jose","Points":9637,"X":398,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702419Z"},{"ID":12783,"Name":"Jezu co za szpetny ryj mosz","Points":9695,"X":399,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70242Z"},{"ID":12784,"Name":".achim.","Points":10311,"X":526,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70242Z"},{"ID":12785,"Name":"PYRLANDIA 011 S + C","Points":10559,"X":573,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702421Z"},{"ID":12786,"Name":"018","Points":10019,"X":606,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702421Z"},{"ID":12787,"Name":"C.006","Points":10226,"X":428,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702422Z"},{"ID":12788,"Name":"[242] WEST","Points":10394,"X":602,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702422Z"},{"ID":12789,"Name":"103","Points":10311,"X":579,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702423Z"},{"ID":12790,"Name":"017","Points":10311,"X":569,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702423Z"},{"ID":12791,"Name":"W.181/05","Points":10242,"X":607,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702424Z"},{"ID":12792,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":536,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702424Z"},{"ID":12793,"Name":"049. ALFI","Points":1303,"X":473,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702425Z"},{"ID":12794,"Name":"032.","Points":9953,"X":610,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702425Z"},{"ID":12795,"Name":"NOT","Points":10042,"X":416,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702426Z"},{"ID":12796,"Name":"Urojone Elizjum","Points":10223,"X":456,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702426Z"},{"ID":12797,"Name":"FAKE OR OFF","Points":9820,"X":438,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702427Z"},{"ID":12798,"Name":"Ręcznik do zmiany","Points":10495,"X":388,"Y":483,"Continent":"K43","Bonus":5,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702428Z"},{"ID":12800,"Name":"Teby_10","Points":9638,"X":502,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702428Z"},{"ID":12801,"Name":"Ręcznik do zmiany","Points":10495,"X":385,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702429Z"},{"ID":12802,"Name":"013 Albo pijesz lufe","Points":10474,"X":620,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702429Z"},{"ID":12803,"Name":"Bagdad","Points":10654,"X":468,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70243Z"},{"ID":12804,"Name":"Lord Arsey KING","Points":10285,"X":575,"Y":586,"Continent":"K55","Bonus":1,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70243Z"},{"ID":12805,"Name":".045.","Points":10301,"X":472,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702431Z"},{"ID":12806,"Name":"[302] Chorągiewka na wietrze","Points":10054,"X":592,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702431Z"},{"ID":12807,"Name":"Brat447","Points":10476,"X":385,"Y":504,"Continent":"K53","Bonus":3,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702432Z"},{"ID":12808,"Name":"133 S015","Points":7558,"X":402,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702432Z"},{"ID":12809,"Name":"[365] Chorągiewka na wietrze +2","Points":10293,"X":594,"Y":438,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702433Z"},{"ID":12810,"Name":"Myk i do kieszonki","Points":9799,"X":379,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702433Z"},{"ID":12811,"Name":"Bbbbb","Points":9810,"X":419,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702434Z"},{"ID":12812,"Name":"Guardian","Points":9925,"X":499,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702434Z"},{"ID":12813,"Name":"006","Points":10019,"X":606,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702435Z"},{"ID":12814,"Name":"NOT","Points":10042,"X":411,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702435Z"},{"ID":12815,"Name":"Sir Hood 8","Points":10285,"X":389,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702436Z"},{"ID":12816,"Name":"EKG","Points":10495,"X":497,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702436Z"},{"ID":12817,"Name":"058","Points":10311,"X":548,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702437Z"},{"ID":12818,"Name":"Najlepszy sąsiad 008","Points":9861,"X":600,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702438Z"},{"ID":12819,"Name":"038 - Barba","Points":10495,"X":423,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702438Z"},{"ID":12820,"Name":"006 Denne FO 181","Points":9782,"X":505,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702439Z"},{"ID":12821,"Name":"Bagdad","Points":10654,"X":472,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702439Z"},{"ID":12822,"Name":"181-002","Points":3143,"X":587,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":8876551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70244Z"},{"ID":12823,"Name":"009 - Mira","Points":10251,"X":421,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70244Z"},{"ID":12824,"Name":"s181eo12","Points":9894,"X":399,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702441Z"},{"ID":12825,"Name":".achim.","Points":10354,"X":536,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702442Z"},{"ID":12826,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":581,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702442Z"},{"ID":12827,"Name":"012","Points":9742,"X":543,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702443Z"},{"ID":12828,"Name":"Wioska barbarzyƄska","Points":10830,"X":389,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702443Z"},{"ID":12829,"Name":"***008 Sacramento","Points":9507,"X":426,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702444Z"},{"ID":12830,"Name":"NWO","Points":10971,"X":388,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702444Z"},{"ID":12831,"Name":"ok.","Points":10160,"X":389,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702445Z"},{"ID":12832,"Name":"Knowhere","Points":10452,"X":373,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702445Z"},{"ID":12833,"Name":"[0037]","Points":10495,"X":452,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702446Z"},{"ID":12835,"Name":"PiekƂo to inni","Points":10160,"X":483,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702447Z"},{"ID":12836,"Name":"Teby_06","Points":9638,"X":504,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702447Z"},{"ID":12837,"Name":"035 Oƛka","Points":8670,"X":613,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702448Z"},{"ID":12838,"Name":"NWO","Points":9850,"X":388,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702448Z"},{"ID":12839,"Name":"C 003 Orzesze","Points":7784,"X":419,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702449Z"},{"ID":12840,"Name":"a moĆŒe off ? :)","Points":9560,"X":582,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702449Z"},{"ID":12841,"Name":"Jehu_Kingdom_16_","Points":9993,"X":625,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70245Z"},{"ID":12842,"Name":"*017*","Points":8383,"X":614,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70245Z"},{"ID":12843,"Name":"010","Points":10561,"X":614,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702451Z"},{"ID":12844,"Name":"121 B09","Points":8163,"X":402,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702451Z"},{"ID":12845,"Name":"~024.","Points":10495,"X":491,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702452Z"},{"ID":12846,"Name":"00231 Wioska","Points":10242,"X":430,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702453Z"},{"ID":12847,"Name":"EXA","Points":10252,"X":612,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702453Z"},{"ID":12848,"Name":"03 Grzybek Muchomorek","Points":10062,"X":605,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702454Z"},{"ID":12849,"Name":"# Szymi 7","Points":9873,"X":393,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702454Z"},{"ID":12850,"Name":"002buaa","Points":9222,"X":408,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702455Z"},{"ID":12851,"Name":"076 - Kopalnia tytanu","Points":8451,"X":422,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702455Z"},{"ID":12852,"Name":".achim.","Points":10506,"X":535,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702456Z"},{"ID":12853,"Name":"00051","Points":9621,"X":533,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702456Z"},{"ID":12854,"Name":"PiekƂo to inni","Points":10160,"X":490,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702457Z"},{"ID":12855,"Name":"A0033","Points":10362,"X":390,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702457Z"},{"ID":12856,"Name":"Wioska","Points":10178,"X":389,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702458Z"},{"ID":12857,"Name":"006. Ravenna","Points":9179,"X":608,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702458Z"},{"ID":12858,"Name":"Jaaa","Points":9641,"X":586,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702459Z"},{"ID":12859,"Name":"Bagdad","Points":10654,"X":467,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70246Z"},{"ID":12860,"Name":"Ww 006","Points":10426,"X":442,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70246Z"},{"ID":12861,"Name":"0324","Points":10019,"X":447,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702461Z"},{"ID":12862,"Name":"FAKE OR OFF","Points":9816,"X":443,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702461Z"},{"ID":12863,"Name":"018","Points":10054,"X":614,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702462Z"},{"ID":12864,"Name":"07 Ground Zero","Points":9061,"X":616,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702462Z"},{"ID":12865,"Name":"scoti","Points":10237,"X":486,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702463Z"},{"ID":12866,"Name":"008 - Majne","Points":10495,"X":421,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702463Z"},{"ID":12867,"Name":"NOT?","Points":10042,"X":401,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702464Z"},{"ID":12868,"Name":"130 s001","Points":10636,"X":402,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702464Z"},{"ID":12869,"Name":"023","Points":10495,"X":612,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702465Z"},{"ID":12870,"Name":"z 016","Points":10474,"X":559,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702466Z"},{"ID":12871,"Name":"0021","Points":9942,"X":446,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702466Z"},{"ID":12872,"Name":"Knowhere","Points":10000,"X":389,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702467Z"},{"ID":12873,"Name":"020.","Points":9870,"X":565,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702467Z"},{"ID":12874,"Name":"Napewno to nie jest off","Points":10495,"X":491,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702468Z"},{"ID":12875,"Name":"PiekƂo to inni","Points":10160,"X":485,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702468Z"},{"ID":12876,"Name":"Wioska barbarzyƄska","Points":9922,"X":605,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702469Z"},{"ID":12877,"Name":"Jigsaw","Points":10495,"X":567,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702469Z"},{"ID":12878,"Name":"A 001","Points":9846,"X":611,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70247Z"},{"ID":12879,"Name":"[0043]","Points":10495,"X":457,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70247Z"},{"ID":12880,"Name":"042 Vasperland","Points":10495,"X":615,"Y":509,"Continent":"K56","Bonus":6,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702471Z"},{"ID":12881,"Name":"Darma","Points":9835,"X":425,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702471Z"},{"ID":12882,"Name":"Wioska","Points":10178,"X":391,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702472Z"},{"ID":12884,"Name":"Bagdad","Points":10654,"X":474,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702473Z"},{"ID":12885,"Name":"Wioska barbarzyƄska","Points":10479,"X":393,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702473Z"},{"ID":12886,"Name":"011","Points":9976,"X":546,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702474Z"},{"ID":12887,"Name":"Atrium","Points":10487,"X":520,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702474Z"},{"ID":12888,"Name":"Wioska","Points":10178,"X":388,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702475Z"},{"ID":12889,"Name":"scoti","Points":10223,"X":489,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702475Z"},{"ID":12890,"Name":"065 - Uxmal***","Points":6934,"X":434,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702476Z"},{"ID":12891,"Name":"[361] Chorągiewka na wietrze","Points":10475,"X":593,"Y":438,"Continent":"K45","Bonus":8,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702476Z"},{"ID":12892,"Name":"*026*","Points":6446,"X":611,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702477Z"},{"ID":12893,"Name":"00244 Wioska","Points":10298,"X":432,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702477Z"},{"ID":12894,"Name":"011. Moria","Points":10226,"X":486,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702478Z"},{"ID":12895,"Name":"24. Wioska 24","Points":10232,"X":425,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702479Z"},{"ID":12896,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":532,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702479Z"},{"ID":12897,"Name":"Sir Hood 5","Points":9955,"X":388,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70248Z"},{"ID":12898,"Name":"[309] Chorągiewka na wietrze","Points":10525,"X":589,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70248Z"},{"ID":12899,"Name":"ZABAWA -1- Waldemar Wielki","Points":10122,"X":407,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702481Z"},{"ID":12900,"Name":"019","Points":10019,"X":607,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702481Z"},{"ID":12901,"Name":"A039","Points":10237,"X":444,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702482Z"},{"ID":12902,"Name":"#015.483|497","Points":9735,"X":602,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702482Z"},{"ID":12903,"Name":"30 im Ɓudriego","Points":9809,"X":588,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702483Z"},{"ID":12904,"Name":"Wioska X3","Points":7731,"X":391,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702483Z"},{"ID":12905,"Name":"004","Points":10019,"X":607,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702484Z"},{"ID":12906,"Name":"Bagdad","Points":10654,"X":466,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702484Z"},{"ID":12907,"Name":"[400] Myszka pod miotƂą","Points":10068,"X":587,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702485Z"},{"ID":12908,"Name":"szczęƛliwego nowego fejkomatu","Points":7269,"X":395,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702485Z"},{"ID":12909,"Name":"05 Przypadek","Points":9199,"X":407,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702486Z"},{"ID":12910,"Name":"KIELBA 093","Points":9973,"X":443,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702486Z"},{"ID":12911,"Name":"Combat Simulator Lounge","Points":10495,"X":525,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702487Z"},{"ID":12912,"Name":"a moĆŒe off ? :)","Points":9955,"X":573,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702487Z"},{"ID":12913,"Name":"019","Points":9744,"X":541,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702488Z"},{"ID":12914,"Name":"A0007","Points":10362,"X":389,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702488Z"},{"ID":12915,"Name":"0632","Points":10019,"X":446,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702489Z"},{"ID":12916,"Name":"007. Arpinum","Points":10235,"X":609,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702489Z"},{"ID":12917,"Name":"Wioska sbbb","Points":7799,"X":406,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70249Z"},{"ID":12918,"Name":"#010 A","Points":8997,"X":464,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70249Z"},{"ID":12919,"Name":"Jaaa","Points":10495,"X":608,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702491Z"},{"ID":12920,"Name":"157","Points":10311,"X":581,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702492Z"},{"ID":12921,"Name":"Myk i do kieszonki","Points":9799,"X":378,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702492Z"},{"ID":12922,"Name":"wielki m","Points":770,"X":474,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":849093155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702493Z"},{"ID":12923,"Name":"014","Points":10495,"X":559,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702493Z"},{"ID":12924,"Name":"A010","Points":10002,"X":512,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702494Z"},{"ID":12925,"Name":".achim.","Points":10311,"X":532,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702494Z"},{"ID":12926,"Name":"Self Made","Points":10065,"X":577,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702495Z"},{"ID":12927,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":388,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702495Z"},{"ID":12928,"Name":"128 B02","Points":9747,"X":400,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702496Z"},{"ID":12929,"Name":"Szlachcic","Points":10083,"X":389,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702496Z"},{"ID":12930,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":464,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702497Z"},{"ID":12931,"Name":"CALL 1007","Points":10375,"X":527,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702497Z"},{"ID":12932,"Name":"153","Points":10311,"X":579,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702498Z"},{"ID":12933,"Name":"Bagdad","Points":10654,"X":473,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702498Z"},{"ID":12934,"Name":"021","Points":10495,"X":555,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702499Z"},{"ID":12935,"Name":"Kentin ufam Tobie","Points":10000,"X":439,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702499Z"},{"ID":12936,"Name":"South K45","Points":6702,"X":569,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7025Z"},{"ID":12937,"Name":"z 021","Points":10495,"X":555,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702501Z"},{"ID":12938,"Name":"Wioska barbarzyƄska","Points":10285,"X":402,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702501Z"},{"ID":12939,"Name":"033","Points":10186,"X":614,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702502Z"},{"ID":12941,"Name":"Kentin ufam Tobie","Points":10000,"X":439,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702502Z"},{"ID":12942,"Name":"K34 x003","Points":10495,"X":465,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702503Z"},{"ID":12943,"Name":"NIERAJ005","Points":10555,"X":471,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702503Z"},{"ID":12944,"Name":"Najlepszy sąsiad 005","Points":10495,"X":598,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702504Z"},{"ID":12945,"Name":"Zeta Reticuli S","Points":10887,"X":418,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702504Z"},{"ID":12946,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":391,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702505Z"},{"ID":12947,"Name":"Kiedyƛ Wielki Wojownik","Points":9086,"X":394,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702505Z"},{"ID":12948,"Name":"nie badz smieszny :)","Points":10362,"X":406,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702506Z"},{"ID":12949,"Name":"- 006 -","Points":10000,"X":552,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702506Z"},{"ID":12950,"Name":"119 Wioska barbarzyƄska","Points":10479,"X":399,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702507Z"},{"ID":12951,"Name":"EXA","Points":10252,"X":609,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702507Z"},{"ID":12952,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":389,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702508Z"},{"ID":12953,"Name":"158","Points":10311,"X":577,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702508Z"},{"ID":12954,"Name":"bucks x kamiiiru","Points":10971,"X":415,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702509Z"},{"ID":12955,"Name":"ƚmieszki","Points":9117,"X":535,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702509Z"},{"ID":12956,"Name":"CALL 913","Points":10178,"X":557,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70251Z"},{"ID":12957,"Name":".achim.","Points":10311,"X":531,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70251Z"},{"ID":12958,"Name":"Jaaa","Points":10476,"X":607,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702511Z"},{"ID":12959,"Name":"x04","Points":10285,"X":408,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702512Z"},{"ID":12960,"Name":"*312*","Points":10297,"X":515,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702512Z"},{"ID":12961,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":529,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702513Z"},{"ID":12962,"Name":"002 Hattusa","Points":9861,"X":601,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702513Z"},{"ID":12963,"Name":"Taran 002","Points":10311,"X":617,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702514Z"},{"ID":12964,"Name":"EKG M15","Points":8463,"X":482,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702514Z"},{"ID":12965,"Name":"Elbląg","Points":10311,"X":513,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702515Z"},{"ID":12966,"Name":"118","Points":10311,"X":560,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702515Z"},{"ID":12967,"Name":"0005","Points":9809,"X":468,"Y":607,"Continent":"K64","Bonus":6,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702516Z"},{"ID":12968,"Name":"0061","Points":9843,"X":611,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702516Z"},{"ID":12969,"Name":"004 U-Boot","Points":9861,"X":503,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702517Z"},{"ID":12970,"Name":"Ƃuno plus","Points":10234,"X":398,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702517Z"},{"ID":12971,"Name":"PiekƂo to inni","Points":10160,"X":476,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702518Z"},{"ID":12972,"Name":"17. Wioska 17","Points":10019,"X":413,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702518Z"},{"ID":12973,"Name":"South K45","Points":10042,"X":589,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702519Z"},{"ID":12974,"Name":"ADEN","Points":7950,"X":572,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702519Z"},{"ID":12975,"Name":"HOTEL 1 *","Points":9384,"X":576,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70252Z"},{"ID":12976,"Name":"*INTERTWINED*","Points":8390,"X":514,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70252Z"},{"ID":12977,"Name":"bede bronil :)","Points":4743,"X":397,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702521Z"},{"ID":12978,"Name":"A.016","Points":10232,"X":415,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702522Z"},{"ID":12979,"Name":"C 009 Tychy","Points":8915,"X":417,"Y":580,"Continent":"K54","Bonus":4,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702522Z"},{"ID":12980,"Name":"FAKE OR OFF","Points":9821,"X":443,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702523Z"},{"ID":12981,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":395,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702523Z"},{"ID":12983,"Name":"ok.","Points":10160,"X":389,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702524Z"},{"ID":12984,"Name":"W=02.","Points":10636,"X":611,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702524Z"},{"ID":12985,"Name":"C 017 Jaworzno","Points":8191,"X":416,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702525Z"},{"ID":12986,"Name":"00061","Points":10291,"X":535,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702525Z"},{"ID":12987,"Name":"C.005","Points":9465,"X":429,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702526Z"},{"ID":12988,"Name":"18. Wioska 18","Points":10066,"X":426,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702526Z"},{"ID":12989,"Name":".achim.","Points":10375,"X":532,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702527Z"},{"ID":12990,"Name":"bucks x kamiiiru","Points":10971,"X":421,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702527Z"},{"ID":12991,"Name":"A004","Points":9925,"X":515,"Y":387,"Continent":"K35","Bonus":5,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702528Z"},{"ID":12992,"Name":"#049","Points":10393,"X":448,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702528Z"},{"ID":12993,"Name":"007. Gloria Victis","Points":10503,"X":424,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702529Z"},{"ID":12994,"Name":"A04 Kross","Points":10452,"X":612,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702529Z"},{"ID":12995,"Name":"014","Points":9741,"X":542,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70253Z"},{"ID":12996,"Name":"NOT","Points":9876,"X":412,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70253Z"},{"ID":12997,"Name":"Mniejsze zƂo 0074","Points":11036,"X":391,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702531Z"},{"ID":12998,"Name":"Wioska barbarzyƄska","Points":10122,"X":411,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702532Z"},{"ID":12999,"Name":"Mzm11","Points":10495,"X":608,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702532Z"},{"ID":13000,"Name":"Gravity","Points":9505,"X":400,"Y":450,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702533Z"},{"ID":13001,"Name":"Soldier Side","Points":9458,"X":597,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702533Z"},{"ID":13002,"Name":"A0027","Points":10362,"X":388,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702534Z"},{"ID":13003,"Name":"General Affairs","Points":10495,"X":519,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702534Z"},{"ID":13004,"Name":"FAKE OR OFF","Points":9817,"X":442,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702535Z"},{"ID":13006,"Name":"z 009","Points":10475,"X":560,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702535Z"},{"ID":13007,"Name":"C007","Points":10971,"X":520,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702536Z"},{"ID":13008,"Name":"PRO8L3M","Points":10311,"X":388,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702536Z"},{"ID":13009,"Name":"PYRLANDIA 030 Ramzez s","Points":10273,"X":560,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702537Z"},{"ID":13010,"Name":"Zeta Reticuli S","Points":10997,"X":414,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702537Z"},{"ID":13011,"Name":"PYRLANDIA 026 + R","Points":10365,"X":564,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702538Z"},{"ID":13012,"Name":"EKG 003 + R","Points":10017,"X":495,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702538Z"},{"ID":13013,"Name":"#012","Points":10393,"X":474,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702539Z"},{"ID":13014,"Name":".achim.","Points":10311,"X":512,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702539Z"},{"ID":13015,"Name":"128","Points":10311,"X":545,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70254Z"},{"ID":13016,"Name":"[331] Chorągiewka na wietrze","Points":10397,"X":586,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70254Z"},{"ID":13017,"Name":"a moĆŒe off ? :)","Points":9771,"X":579,"Y":579,"Continent":"K55","Bonus":1,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702541Z"},{"ID":13018,"Name":"PYRLANDIA 020 S","Points":10495,"X":566,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702542Z"},{"ID":13019,"Name":"PiekƂo to inni","Points":10160,"X":476,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702542Z"},{"ID":13020,"Name":"MORDOR f","Points":9589,"X":538,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702543Z"},{"ID":13021,"Name":"059","Points":10311,"X":555,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702543Z"},{"ID":13022,"Name":"029 Carolina","Points":10495,"X":608,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702544Z"},{"ID":13023,"Name":".achim.","Points":10311,"X":528,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702544Z"},{"ID":13024,"Name":"019","Points":9761,"X":488,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702545Z"},{"ID":13025,"Name":"A0161","Points":10362,"X":378,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702545Z"},{"ID":13026,"Name":"004 Night Watch","Points":10483,"X":390,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702546Z"},{"ID":13027,"Name":"z 005","Points":10476,"X":562,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702546Z"},{"ID":13028,"Name":"018. Gisela","Points":10030,"X":591,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702547Z"},{"ID":13029,"Name":"044 Wioska HUSARIUS","Points":9830,"X":404,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702547Z"},{"ID":13030,"Name":"[0034]","Points":10495,"X":450,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702548Z"},{"ID":13031,"Name":"PYRLANDIA 024 s","Points":10052,"X":568,"Y":588,"Continent":"K55","Bonus":9,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702549Z"},{"ID":13032,"Name":"Lord Arsey KING","Points":10285,"X":574,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702549Z"},{"ID":13033,"Name":"- 217 -","Points":10000,"X":551,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70255Z"},{"ID":13034,"Name":"D012","Points":9861,"X":511,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70255Z"},{"ID":13036,"Name":"037","Points":10068,"X":599,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702551Z"},{"ID":13037,"Name":"[335] Chorągiewka na wietrze","Points":10397,"X":588,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702551Z"},{"ID":13038,"Name":"EKG M03 + KAC TƁ","Points":10365,"X":477,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702552Z"},{"ID":13039,"Name":"Z barba 002","Points":10495,"X":423,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702552Z"},{"ID":13040,"Name":"PiekƂo to inni","Points":10160,"X":477,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702553Z"},{"ID":13041,"Name":"kto ananasowy pod wodą ma dom","Points":9861,"X":586,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702553Z"},{"ID":13042,"Name":"016","Points":10183,"X":608,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702554Z"},{"ID":13043,"Name":"iWioska barbarzyƄska","Points":10237,"X":497,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702555Z"},{"ID":13044,"Name":"0623","Points":10019,"X":438,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702555Z"},{"ID":13045,"Name":"bucks x kamiiiru","Points":10971,"X":421,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702556Z"},{"ID":13046,"Name":"Teby_11","Points":9440,"X":501,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702556Z"},{"ID":13047,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":393,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702557Z"},{"ID":13048,"Name":"Szlachcic","Points":10237,"X":458,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702557Z"},{"ID":13049,"Name":"025.xxx","Points":10078,"X":483,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702558Z"},{"ID":13050,"Name":"ADEN","Points":10120,"X":567,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702558Z"},{"ID":13051,"Name":"Czekam na VS","Points":10495,"X":534,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702559Z"},{"ID":13052,"Name":"Land of Fire","Points":9502,"X":397,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702559Z"},{"ID":13053,"Name":"[347] Chorągiewka na wietrze","Points":10394,"X":586,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70256Z"},{"ID":13054,"Name":"156","Points":9890,"X":571,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70256Z"},{"ID":13055,"Name":"Back ln Black","Points":9493,"X":595,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702561Z"},{"ID":13056,"Name":"Wioska","Points":10178,"X":381,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702561Z"},{"ID":13057,"Name":"Brat447","Points":10083,"X":385,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702562Z"},{"ID":13058,"Name":"Lord Arsey KING","Points":10285,"X":580,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702562Z"},{"ID":13059,"Name":"z 052","Points":5029,"X":560,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702563Z"},{"ID":13061,"Name":"[0042]","Points":10495,"X":454,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702564Z"},{"ID":13062,"Name":"Ręcznik do zmiany","Points":10495,"X":385,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702564Z"},{"ID":13063,"Name":"krzysiek1293-vequ1","Points":10122,"X":411,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702565Z"},{"ID":13064,"Name":"Szlachcic","Points":9802,"X":615,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702565Z"},{"ID":13065,"Name":"132 B15","Points":10354,"X":402,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702566Z"},{"ID":13066,"Name":"016. Athenae","Points":9179,"X":608,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702566Z"},{"ID":13067,"Name":"002","Points":9370,"X":416,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702567Z"},{"ID":13068,"Name":"NOT","Points":10042,"X":413,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702568Z"},{"ID":13069,"Name":"A0203","Points":10362,"X":387,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702568Z"},{"ID":13070,"Name":"011","Points":10694,"X":605,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702569Z"},{"ID":13071,"Name":"Bagdad","Points":10654,"X":471,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702569Z"},{"ID":13072,"Name":"Ww 004","Points":10744,"X":442,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70257Z"},{"ID":13073,"Name":"Bagdad","Points":10178,"X":468,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70257Z"},{"ID":13074,"Name":"047 - A07***","Points":10495,"X":434,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702571Z"},{"ID":13075,"Name":"Sector 7 Undercity Station","Points":10559,"X":512,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702571Z"},{"ID":13076,"Name":"Wioska barbarzyƄska1(goodboy666)","Points":9976,"X":425,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702572Z"},{"ID":13077,"Name":"Myk i do kieszonki","Points":9799,"X":389,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702572Z"},{"ID":13078,"Name":"x14","Points":10285,"X":408,"Y":430,"Continent":"K44","Bonus":8,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702573Z"},{"ID":13080,"Name":"C.003","Points":10228,"X":440,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702573Z"},{"ID":13081,"Name":"Najlepszy sąsiad 009","Points":10268,"X":601,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702574Z"},{"ID":13082,"Name":"A0253","Points":10362,"X":377,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702574Z"},{"ID":13083,"Name":"Love Bites","Points":9541,"X":594,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702575Z"},{"ID":13084,"Name":"059","Points":9994,"X":483,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702576Z"},{"ID":13085,"Name":"074 - ZnajdĆșka","Points":10444,"X":424,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702576Z"},{"ID":13086,"Name":"0005","Points":11321,"X":534,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702577Z"},{"ID":13087,"Name":"00111 Wioska","Points":8440,"X":429,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702577Z"},{"ID":13088,"Name":"Wioska","Points":10178,"X":382,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702578Z"},{"ID":13089,"Name":"To moja","Points":9816,"X":383,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702578Z"},{"ID":13090,"Name":"Wioska barbarzyƄska","Points":10476,"X":388,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702579Z"},{"ID":13091,"Name":"z 011","Points":10476,"X":562,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702579Z"},{"ID":13092,"Name":"W.181/02","Points":10242,"X":608,"Y":538,"Continent":"K56","Bonus":7,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70258Z"},{"ID":13093,"Name":"Sparta_52","Points":9638,"X":482,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702581Z"},{"ID":13094,"Name":"[362] Chorągiewka na wietrze","Points":10495,"X":595,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702581Z"},{"ID":13095,"Name":"Bagdad","Points":10178,"X":469,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702582Z"},{"ID":13096,"Name":"K34 x006","Points":10362,"X":467,"Y":393,"Continent":"K34","Bonus":1,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702582Z"},{"ID":13097,"Name":"075","Points":9742,"X":613,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702583Z"},{"ID":13098,"Name":"003 Spodziewana niespodzianka","Points":9861,"X":503,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702583Z"},{"ID":13099,"Name":"#0036","Points":10495,"X":539,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702584Z"},{"ID":13100,"Name":"Tu powstaje coƛ większego","Points":9664,"X":428,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702584Z"},{"ID":13101,"Name":"- 265 -","Points":10000,"X":550,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702585Z"},{"ID":13102,"Name":"032 Columbus","Points":10479,"X":423,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702585Z"},{"ID":13103,"Name":"Lord Arsey KING","Points":10285,"X":580,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702586Z"},{"ID":13104,"Name":"SZYMI PALACE 3","Points":7249,"X":392,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702586Z"},{"ID":13105,"Name":"EKG .::. Siwyy8848/2","Points":10495,"X":499,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702587Z"},{"ID":13106,"Name":"Naboo 5","Points":9835,"X":493,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702587Z"},{"ID":13107,"Name":"004. Syracusae","Points":9436,"X":612,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702588Z"},{"ID":13108,"Name":"NIERAJ004","Points":10251,"X":468,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702588Z"},{"ID":13109,"Name":"Gravity","Points":9489,"X":403,"Y":444,"Continent":"K44","Bonus":6,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702589Z"},{"ID":13110,"Name":"062","Points":10495,"X":614,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702589Z"},{"ID":13111,"Name":"003","Points":10495,"X":556,"Y":399,"Continent":"K35","Bonus":4,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70259Z"},{"ID":13112,"Name":"084 MEHEHE","Points":10019,"X":493,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702591Z"},{"ID":13113,"Name":"Gattacka","Points":9691,"X":539,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702591Z"},{"ID":13114,"Name":"Wioska barbarzyƄska","Points":10068,"X":394,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702592Z"},{"ID":13115,"Name":"SkƂad","Points":10290,"X":510,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702592Z"},{"ID":13116,"Name":"0006 R","Points":10160,"X":427,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702593Z"},{"ID":13117,"Name":"Bagdad","Points":10654,"X":469,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702593Z"},{"ID":13118,"Name":"Wioska barbarzyƄska","Points":10068,"X":412,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702594Z"},{"ID":13119,"Name":".achim.","Points":10311,"X":531,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702594Z"},{"ID":13120,"Name":"A.007","Points":10000,"X":604,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702595Z"},{"ID":13121,"Name":"Wioska barbarzyƄska","Points":10285,"X":412,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702595Z"},{"ID":13122,"Name":"Brat447","Points":4937,"X":388,"Y":517,"Continent":"K53","Bonus":4,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702596Z"},{"ID":13123,"Name":"[367] Chorągiewka na wietrze","Points":5335,"X":589,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702596Z"},{"ID":13124,"Name":".achim.","Points":10311,"X":529,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702597Z"},{"ID":13125,"Name":"007. Angband","Points":10478,"X":484,"Y":613,"Continent":"K64","Bonus":1,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702597Z"},{"ID":13126,"Name":"A.011","Points":10000,"X":602,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702598Z"},{"ID":13127,"Name":"ok.","Points":10484,"X":390,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702598Z"},{"ID":13128,"Name":"bucks x kamiiiru","Points":10147,"X":414,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702599Z"},{"ID":13129,"Name":"El Escorial","Points":5474,"X":397,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702599Z"},{"ID":13130,"Name":"001 Bunia","Points":10160,"X":401,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7026Z"},{"ID":13131,"Name":"EKG M01 Mavreli","Points":10495,"X":477,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7026Z"},{"ID":13132,"Name":"036","Points":10475,"X":493,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702601Z"},{"ID":13133,"Name":"Urojone Elizjum","Points":10237,"X":456,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702602Z"},{"ID":13134,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":390,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702602Z"},{"ID":13135,"Name":"027","Points":9835,"X":543,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702603Z"},{"ID":13136,"Name":"Lhotse","Points":9222,"X":384,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702603Z"},{"ID":13137,"Name":"Teby_09","Points":9638,"X":506,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702604Z"},{"ID":13138,"Name":"0006","Points":9983,"X":464,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702604Z"},{"ID":13139,"Name":"Teby_12","Points":9638,"X":504,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702605Z"},{"ID":13140,"Name":"Wioska","Points":10178,"X":386,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702605Z"},{"ID":13141,"Name":"Ręcznik do zmiany","Points":10252,"X":385,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702606Z"},{"ID":13142,"Name":"0004","Points":10495,"X":604,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702606Z"},{"ID":13143,"Name":"Szlachcic","Points":10301,"X":615,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702607Z"},{"ID":13144,"Name":"asd","Points":6446,"X":393,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849095014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702607Z"},{"ID":13145,"Name":"#060","Points":10393,"X":478,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702608Z"},{"ID":13146,"Name":"* IDE po WAS !","Points":10112,"X":594,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702608Z"},{"ID":13148,"Name":"082 Missisipi","Points":10495,"X":611,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702609Z"},{"ID":13150,"Name":"0017","Points":10322,"X":611,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702609Z"},{"ID":13151,"Name":"0624","Points":10019,"X":437,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70261Z"},{"ID":13152,"Name":"A008 Sylwester z jedynka","Points":10487,"X":603,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70261Z"},{"ID":13154,"Name":"Farmie PP","Points":9271,"X":568,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702611Z"},{"ID":13155,"Name":"006","Points":9761,"X":497,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702612Z"},{"ID":13156,"Name":"13 im GadĆŒyjewa","Points":9809,"X":589,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702612Z"},{"ID":13158,"Name":"[348] Chorągiewka na wietrze","Points":10051,"X":582,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702613Z"},{"ID":13159,"Name":"Cet4boN","Points":10160,"X":615,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702613Z"},{"ID":13160,"Name":"Bagdad","Points":10178,"X":469,"Y":392,"Continent":"K34","Bonus":9,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702614Z"},{"ID":13161,"Name":"Horyzont zdarzeƄ","Points":10019,"X":540,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702614Z"},{"ID":13162,"Name":"PiekƂo to inni","Points":10160,"X":486,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702615Z"},{"ID":13164,"Name":"055 - Ɓatwizna","Points":10495,"X":410,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702615Z"},{"ID":13165,"Name":"Last Train for Bound Sector 7","Points":10495,"X":525,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702616Z"},{"ID":13166,"Name":"Brusy","Points":8758,"X":412,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702616Z"},{"ID":13167,"Name":"- 003 -","Points":10000,"X":552,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702617Z"},{"ID":13168,"Name":"FAKE OR OFF","Points":9822,"X":438,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702617Z"},{"ID":13169,"Name":"DOM 9","Points":9750,"X":564,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702618Z"},{"ID":13170,"Name":"Ohara","Points":10311,"X":493,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702618Z"},{"ID":13171,"Name":"081 Montana","Points":10362,"X":612,"Y":489,"Continent":"K46","Bonus":7,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702619Z"},{"ID":13172,"Name":"Wioska stary56","Points":10495,"X":564,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702619Z"},{"ID":13173,"Name":"Wioska","Points":10178,"X":383,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70262Z"},{"ID":13174,"Name":"K34 - [037] Before Land","Points":10259,"X":466,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70262Z"},{"ID":13175,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":390,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702621Z"},{"ID":13176,"Name":"0000026%","Points":9989,"X":428,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702621Z"},{"ID":13177,"Name":"BucksbarzyƄsKamiiiru","Points":9846,"X":385,"Y":515,"Continent":"K53","Bonus":3,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702622Z"},{"ID":13178,"Name":"PYRLANDIA 012$","Points":10495,"X":574,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702623Z"},{"ID":13179,"Name":"Jaaa","Points":10416,"X":587,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702623Z"},{"ID":13180,"Name":"z 053","Points":10220,"X":562,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702624Z"},{"ID":13181,"Name":"aaaa","Points":9833,"X":448,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702624Z"},{"ID":13182,"Name":"0639","Points":10019,"X":436,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702625Z"},{"ID":13183,"Name":"Lord Arsey KING","Points":10285,"X":579,"Y":586,"Continent":"K55","Bonus":6,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702625Z"},{"ID":13184,"Name":"Szlachcic","Points":10237,"X":463,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702626Z"},{"ID":13185,"Name":"A003","Points":9925,"X":514,"Y":386,"Continent":"K35","Bonus":2,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702626Z"},{"ID":13186,"Name":"Knowhere","Points":10000,"X":388,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702627Z"},{"ID":13187,"Name":"003 stal","Points":9615,"X":589,"Y":571,"Continent":"K55","Bonus":3,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702627Z"},{"ID":13188,"Name":"Z 002","Points":10474,"X":562,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702628Z"},{"ID":13189,"Name":"[351] Chorągiewka na wietrze","Points":9114,"X":600,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702628Z"},{"ID":13190,"Name":"0010 S","Points":10357,"X":433,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702629Z"},{"ID":13191,"Name":"bucks x kamiiiru","Points":10971,"X":414,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702629Z"},{"ID":13192,"Name":"ADEN","Points":10898,"X":567,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70263Z"},{"ID":13193,"Name":"*Anihilacja","Points":10063,"X":592,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70263Z"},{"ID":13194,"Name":"- 008 -","Points":10000,"X":550,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702631Z"},{"ID":13195,"Name":"Mniejsze zƂo 0073","Points":11079,"X":389,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702632Z"},{"ID":13196,"Name":"[0039]","Points":10495,"X":454,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702632Z"},{"ID":13198,"Name":"Gravity","Points":9489,"X":401,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702633Z"},{"ID":13199,"Name":"0349","Points":10019,"X":443,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702633Z"},{"ID":13200,"Name":"09 Monza","Points":9548,"X":616,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702634Z"},{"ID":13201,"Name":"Wioska barbarzyƄska","Points":9606,"X":420,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702634Z"},{"ID":13202,"Name":"Mniejsze zƂo 0030","Points":9146,"X":391,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702635Z"},{"ID":13203,"Name":"0011","Points":10021,"X":429,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702635Z"},{"ID":13204,"Name":"#042","Points":10728,"X":451,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702636Z"},{"ID":13205,"Name":"015","Points":10396,"X":605,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702636Z"},{"ID":13206,"Name":"Wioska PaweƂ I Wspanialy","Points":9725,"X":417,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702637Z"},{"ID":13207,"Name":"C 005 Krakow","Points":9233,"X":416,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702637Z"},{"ID":13208,"Name":"0329","Points":10495,"X":449,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702638Z"},{"ID":13209,"Name":"NOT","Points":10042,"X":413,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702638Z"},{"ID":13210,"Name":"[318] Chorągiewka na wietrze","Points":10394,"X":592,"Y":436,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702639Z"},{"ID":13211,"Name":".achim.","Points":10311,"X":541,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702639Z"},{"ID":13212,"Name":"FAKE OR OFF","Points":9822,"X":446,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70264Z"},{"ID":13213,"Name":"0008","Points":10495,"X":605,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70264Z"},{"ID":13215,"Name":".achim.","Points":10311,"X":534,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702641Z"},{"ID":13216,"Name":"W.181/07","Points":10242,"X":611,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702641Z"},{"ID":13217,"Name":"Lord Arsey KING","Points":10285,"X":579,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702642Z"},{"ID":13218,"Name":"Myk i do kieszonki","Points":9799,"X":386,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702643Z"},{"ID":13220,"Name":"# Szymi 3","Points":9685,"X":395,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702643Z"},{"ID":13221,"Name":"031","Points":10495,"X":613,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702644Z"},{"ID":13222,"Name":"09 im Watutina","Points":9809,"X":591,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702644Z"},{"ID":13223,"Name":"EKG 004 + R","Points":10322,"X":495,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702645Z"},{"ID":13224,"Name":"*011*","Points":8692,"X":613,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702645Z"},{"ID":13225,"Name":"006","Points":10311,"X":568,"Y":411,"Continent":"K45","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702646Z"},{"ID":13226,"Name":"002","Points":9825,"X":525,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702646Z"},{"ID":13227,"Name":"# Szymi 1","Points":8197,"X":394,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702647Z"},{"ID":13228,"Name":"0132","Points":10495,"X":456,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702647Z"},{"ID":13229,"Name":"SoƂtys Twojej Wsi","Points":9384,"X":439,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702648Z"},{"ID":13230,"Name":"Teby_07","Points":9638,"X":504,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702648Z"},{"ID":13231,"Name":"001","Points":9819,"X":616,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702649Z"},{"ID":13232,"Name":"022","Points":9825,"X":492,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702649Z"},{"ID":13233,"Name":"Wioska","Points":10068,"X":389,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70265Z"},{"ID":13234,"Name":"A.008","Points":10000,"X":603,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70265Z"},{"ID":13235,"Name":"Ethan Hunt 09","Points":8536,"X":617,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702651Z"},{"ID":13236,"Name":"NWO","Points":10951,"X":387,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702652Z"},{"ID":13237,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":578,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702652Z"},{"ID":13238,"Name":"013","Points":10294,"X":614,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702653Z"},{"ID":13239,"Name":"#059","Points":10636,"X":481,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702653Z"},{"ID":13240,"Name":"0038","Points":9864,"X":616,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702654Z"},{"ID":13241,"Name":"**Nocne Ƃakocie","Points":10233,"X":584,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702654Z"},{"ID":13242,"Name":"004","Points":10042,"X":408,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702655Z"},{"ID":13243,"Name":"Wioska","Points":10178,"X":390,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702655Z"},{"ID":13244,"Name":"Kentin ufam Tobie","Points":10000,"X":435,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702656Z"},{"ID":13245,"Name":"009","Points":9745,"X":545,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702656Z"},{"ID":13246,"Name":"Winter is coming","Points":9833,"X":504,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702657Z"},{"ID":13247,"Name":"FAKE OR OFF","Points":9814,"X":444,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702658Z"},{"ID":13248,"Name":"*INTERTWINED*","Points":9711,"X":514,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702658Z"},{"ID":13249,"Name":"[0108]","Points":10495,"X":453,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702659Z"},{"ID":13250,"Name":"[219] WEST","Points":10049,"X":607,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702659Z"},{"ID":13251,"Name":"006 Prawie noc...","Points":10957,"X":389,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70266Z"},{"ID":13252,"Name":"- 009 -","Points":10000,"X":550,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70266Z"},{"ID":13253,"Name":"Szlachcic","Points":9835,"X":582,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702661Z"},{"ID":13254,"Name":"Naboo 3","Points":8380,"X":489,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702661Z"},{"ID":13255,"Name":"Wioska","Points":10178,"X":384,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702662Z"},{"ID":13256,"Name":"Naterki 003","Points":2141,"X":575,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699812571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702662Z"},{"ID":13257,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":584,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702663Z"},{"ID":13258,"Name":"004","Points":10913,"X":607,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702663Z"},{"ID":13259,"Name":"Gattacka","Points":9372,"X":591,"Y":493,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702664Z"},{"ID":13260,"Name":"118 B07","Points":7915,"X":400,"Y":558,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702664Z"},{"ID":13261,"Name":"[226] WEST Punch","Points":10068,"X":602,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702665Z"},{"ID":13262,"Name":"K34 - [071] Before Land","Points":9924,"X":454,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702665Z"},{"ID":13263,"Name":"Glatteis","Points":10311,"X":562,"Y":558,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702666Z"},{"ID":13264,"Name":"C.004","Points":10401,"X":433,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702666Z"},{"ID":13265,"Name":"0009 MzM","Points":9258,"X":586,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702667Z"},{"ID":13266,"Name":"0093","Points":9247,"X":455,"Y":439,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702667Z"},{"ID":13267,"Name":"051","Points":8141,"X":512,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702668Z"},{"ID":13268,"Name":"009 - Palma de Mallorca","Points":10019,"X":599,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702669Z"},{"ID":13269,"Name":"Szlachcic","Points":9907,"X":593,"Y":508,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702669Z"},{"ID":13270,"Name":"BucksbarzyƄsKamiiiru","Points":5502,"X":384,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70267Z"},{"ID":13271,"Name":"ccc","Points":10495,"X":606,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70267Z"},{"ID":13272,"Name":"DOM 3","Points":9744,"X":564,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702671Z"},{"ID":13273,"Name":"ADEN","Points":10216,"X":592,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702671Z"},{"ID":13274,"Name":"011","Points":9681,"X":615,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702672Z"},{"ID":13275,"Name":"s181eo05","Points":9902,"X":394,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702672Z"},{"ID":13276,"Name":"Mniejsze zƂo 0022","Points":9375,"X":387,"Y":488,"Continent":"K43","Bonus":8,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702673Z"},{"ID":13277,"Name":"Zeta Reticuli S","Points":11321,"X":416,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702673Z"},{"ID":13278,"Name":"- 013 -","Points":10000,"X":548,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702674Z"},{"ID":13279,"Name":".achim.","Points":10311,"X":520,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702674Z"},{"ID":13280,"Name":"A011","Points":9925,"X":513,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702675Z"},{"ID":13282,"Name":"0206","Points":5277,"X":398,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702675Z"},{"ID":13283,"Name":"P Konfederacja","Points":10325,"X":457,"Y":442,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702676Z"},{"ID":13284,"Name":"[228] WEST","Points":10051,"X":606,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702676Z"},{"ID":13285,"Name":"NIE DZIƚ HEJKA","Points":941,"X":399,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702677Z"},{"ID":13286,"Name":"- 010 -","Points":10000,"X":549,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702678Z"},{"ID":13287,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":585,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702678Z"},{"ID":13288,"Name":"A.003","Points":10000,"X":600,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702679Z"},{"ID":13289,"Name":"Oslo (Mieszko 1995)","Points":8814,"X":416,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702679Z"},{"ID":13291,"Name":"A0005","Points":10362,"X":387,"Y":475,"Continent":"K43","Bonus":5,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70268Z"},{"ID":13292,"Name":"Wioska","Points":10178,"X":379,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70268Z"},{"ID":13293,"Name":"Wioska barbarzyƄska","Points":6033,"X":406,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702681Z"},{"ID":13294,"Name":"Z barba 006","Points":10495,"X":426,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702681Z"},{"ID":13295,"Name":"SZYMI PALACE 13","Points":6015,"X":392,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702682Z"},{"ID":13296,"Name":"007","Points":9825,"X":550,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702682Z"},{"ID":13297,"Name":"[369] Chorągiewka na wietrze","Points":7218,"X":590,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702683Z"},{"ID":13298,"Name":"Brat447","Points":10066,"X":385,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702683Z"},{"ID":13299,"Name":"0038","Points":8712,"X":429,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702684Z"},{"ID":13300,"Name":"South K35","Points":10042,"X":552,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702685Z"},{"ID":13301,"Name":"C.008","Points":9866,"X":429,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702685Z"},{"ID":13302,"Name":"Bocianikson002","Points":9952,"X":610,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702686Z"},{"ID":13303,"Name":"035 - lowe","Points":10283,"X":421,"Y":586,"Continent":"K54","Bonus":1,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702686Z"},{"ID":13304,"Name":"A0009","Points":10362,"X":382,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702687Z"},{"ID":13305,"Name":"Wioska sbb","Points":7790,"X":406,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702687Z"},{"ID":13306,"Name":"Gattacka","Points":9389,"X":538,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702688Z"},{"ID":13307,"Name":"nie masz wiecej heh dawaj ofy","Points":5486,"X":393,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849095014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702688Z"},{"ID":13308,"Name":"Teby_08","Points":9638,"X":506,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702689Z"},{"ID":13309,"Name":"[366] Chorągiewka na wietrze","Points":10475,"X":596,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702689Z"},{"ID":13310,"Name":"034 - B09.***","Points":10495,"X":439,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70269Z"},{"ID":13311,"Name":"012 Rivendell","Points":9814,"X":610,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70269Z"},{"ID":13312,"Name":"C 013 BeƂk","Points":10431,"X":420,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702691Z"},{"ID":13313,"Name":"PiekƂo to inni","Points":10160,"X":483,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702691Z"},{"ID":13314,"Name":"D021","Points":9925,"X":505,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702692Z"},{"ID":13315,"Name":"Wioska","Points":10178,"X":385,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702692Z"},{"ID":13316,"Name":"A.012","Points":10000,"X":602,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702693Z"},{"ID":13317,"Name":"010","Points":9741,"X":543,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702693Z"},{"ID":13318,"Name":"008 legancko","Points":10559,"X":604,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702694Z"},{"ID":13319,"Name":"Szlachcic","Points":9835,"X":585,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702694Z"},{"ID":13320,"Name":"Z barba 018","Points":9920,"X":419,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702695Z"},{"ID":13321,"Name":"ADEN","Points":9737,"X":520,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702695Z"},{"ID":13322,"Name":"scoti","Points":10217,"X":487,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702696Z"},{"ID":13323,"Name":"BoOmBaa..","Points":10495,"X":445,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702697Z"},{"ID":13324,"Name":"CALL 920","Points":10311,"X":553,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702697Z"},{"ID":13325,"Name":"Kentin ufam Tobie","Points":10000,"X":435,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702698Z"},{"ID":13326,"Name":"007","Points":9761,"X":495,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702698Z"},{"ID":13327,"Name":"BoOmBaa..","Points":9472,"X":440,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702699Z"},{"ID":13328,"Name":"ZABAWA -3- Waldemar Wielki","Points":10285,"X":405,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702699Z"},{"ID":13329,"Name":"A0034","Points":10362,"X":386,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7027Z"},{"ID":13330,"Name":"Galia 2","Points":7715,"X":599,"Y":440,"Continent":"K45","Bonus":0,"PlayerID":848989855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7027Z"},{"ID":13331,"Name":"Land of Fire","Points":9486,"X":398,"Y":445,"Continent":"K43","Bonus":6,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702701Z"},{"ID":13332,"Name":"036 PotÄ™ĆŒny Dzban","Points":10476,"X":389,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702701Z"},{"ID":13333,"Name":"FAKE OR OFF","Points":9822,"X":437,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702702Z"},{"ID":13334,"Name":"002 Troja","Points":9781,"X":609,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702702Z"},{"ID":13335,"Name":"*302*","Points":10291,"X":508,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702703Z"},{"ID":13336,"Name":"Wioska","Points":10178,"X":386,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702703Z"},{"ID":13337,"Name":"PYRLANDIA 003 S","Points":10495,"X":569,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702704Z"},{"ID":13338,"Name":"[229] WEST","Points":10009,"X":606,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702704Z"},{"ID":13339,"Name":"EKG 002 + R","Points":10311,"X":498,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702705Z"},{"ID":13340,"Name":"Wioska barbarzyƄska","Points":10285,"X":409,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702705Z"},{"ID":13341,"Name":"Knowhere","Points":10374,"X":385,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702706Z"},{"ID":13342,"Name":"z 015","Points":10476,"X":559,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702707Z"},{"ID":13343,"Name":"Legion pierwszy upadƂy","Points":10495,"X":567,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702707Z"},{"ID":13344,"Name":"Mniejsze zƂo 0018","Points":8244,"X":390,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702708Z"},{"ID":13345,"Name":"12 im Chmyrowa","Points":9809,"X":589,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702708Z"},{"ID":13346,"Name":"South K45","Points":6332,"X":573,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702709Z"},{"ID":13347,"Name":"Wioska barbarzyƄska","Points":9835,"X":592,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702709Z"},{"ID":13348,"Name":"20. Wioska 20","Points":10030,"X":426,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70271Z"},{"ID":13349,"Name":"Jaaa","Points":10375,"X":603,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70271Z"},{"ID":13350,"Name":"EKG .::. Siwyy8848/3","Points":10495,"X":498,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702711Z"},{"ID":13351,"Name":"10. Ravus Nox Fleuret","Points":10495,"X":520,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702711Z"},{"ID":13352,"Name":"Wioska barbarzyƄska","Points":10484,"X":391,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702712Z"},{"ID":13353,"Name":"014","Points":10693,"X":603,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702713Z"},{"ID":13354,"Name":"EKG zderek","Points":10137,"X":497,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702713Z"},{"ID":13355,"Name":"Fappoleon","Points":10311,"X":494,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702714Z"},{"ID":13356,"Name":"Wioska barbarzyƄska","Points":10285,"X":406,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702714Z"},{"ID":13357,"Name":"EKG 006","Points":10143,"X":496,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702715Z"},{"ID":13358,"Name":"007","Points":9703,"X":561,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702715Z"},{"ID":13359,"Name":"Piwna 09","Points":9294,"X":607,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702716Z"},{"ID":13360,"Name":"021. Gloria Victis","Points":9924,"X":425,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702716Z"},{"ID":13361,"Name":"A0001","Points":10362,"X":384,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702717Z"},{"ID":13362,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":528,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702717Z"},{"ID":13363,"Name":"030","Points":10580,"X":602,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702718Z"},{"ID":13364,"Name":"021","Points":10495,"X":612,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702718Z"},{"ID":13365,"Name":".achim.","Points":11366,"X":538,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702719Z"},{"ID":13366,"Name":"0029","Points":10795,"X":389,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702719Z"},{"ID":13367,"Name":"Wioska barbarzyƄska","Points":10971,"X":386,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70272Z"},{"ID":13368,"Name":"#013","Points":10393,"X":473,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702721Z"},{"ID":13369,"Name":"B.007","Points":10559,"X":410,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702721Z"},{"ID":13370,"Name":"x01","Points":10285,"X":405,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702722Z"},{"ID":13371,"Name":"K34 x013","Points":7011,"X":466,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702722Z"},{"ID":13372,"Name":"0020","Points":10495,"X":602,"Y":548,"Continent":"K56","Bonus":3,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702723Z"},{"ID":13373,"Name":"74k$ Grvvyq","Points":10495,"X":548,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702723Z"},{"ID":13374,"Name":"[0029]","Points":10495,"X":449,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702724Z"},{"ID":13375,"Name":"Najlepszy sąsiad 002","Points":9925,"X":597,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702724Z"},{"ID":13376,"Name":"13. Tifa Lockhart","Points":10559,"X":520,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702725Z"},{"ID":13377,"Name":"~057.","Points":10495,"X":501,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702725Z"},{"ID":13378,"Name":"Najlepszy sąsiad 007","Points":9859,"X":600,"Y":442,"Continent":"K46","Bonus":7,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702726Z"},{"ID":13379,"Name":"0002 MzM","Points":9630,"X":603,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702726Z"},{"ID":13380,"Name":"Land of Fire","Points":9494,"X":397,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702727Z"},{"ID":13381,"Name":"A0012","Points":10362,"X":384,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702727Z"},{"ID":13383,"Name":"A0020","Points":10362,"X":384,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702728Z"},{"ID":13384,"Name":"W.181/17","Points":10242,"X":613,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702728Z"},{"ID":13385,"Name":"Gattacka","Points":9768,"X":539,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702729Z"},{"ID":13386,"Name":"067 - LG***","Points":8466,"X":435,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702729Z"},{"ID":13387,"Name":"NOT","Points":10042,"X":418,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70273Z"},{"ID":13388,"Name":"A.006","Points":10000,"X":601,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70273Z"},{"ID":13389,"Name":"028","Points":10311,"X":584,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702731Z"},{"ID":13390,"Name":"023 - B05.***","Points":10495,"X":441,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702732Z"},{"ID":13391,"Name":"089 KOƃCZY SIĘ TWÓJ CZAS","Points":10478,"X":395,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702732Z"},{"ID":13392,"Name":"Land of Fire","Points":9486,"X":398,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702733Z"},{"ID":13393,"Name":"055. Singidunum","Points":8822,"X":603,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702733Z"},{"ID":13394,"Name":"091 POZOSTAJESZ BEZ SZANS","Points":10539,"X":399,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702734Z"},{"ID":13395,"Name":"016 YouAreNext","Points":9804,"X":390,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702734Z"},{"ID":13396,"Name":"Ręcznik do zmiany","Points":10495,"X":384,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702735Z"},{"ID":13397,"Name":"009","Points":10495,"X":554,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702735Z"},{"ID":13398,"Name":"Wioska","Points":10178,"X":386,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702736Z"},{"ID":13399,"Name":"South K45","Points":10042,"X":588,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702736Z"},{"ID":13400,"Name":"003. Byzantium","Points":9071,"X":610,"Y":462,"Continent":"K46","Bonus":1,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702737Z"},{"ID":13401,"Name":"007","Points":10311,"X":493,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702737Z"},{"ID":13403,"Name":"D05","Points":10160,"X":617,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702738Z"},{"ID":13404,"Name":"004. Oxenfurt","Points":10495,"X":562,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702738Z"},{"ID":13406,"Name":"Bocianikson003","Points":9950,"X":611,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702739Z"},{"ID":13408,"Name":"063","Points":9761,"X":476,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702739Z"},{"ID":13410,"Name":"03. Pusty w ƛrodku","Points":8862,"X":402,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70274Z"},{"ID":13411,"Name":"107 ZERO ZERO SIEDEM","Points":10495,"X":398,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702741Z"},{"ID":13412,"Name":"Myk i do kieszonki","Points":9799,"X":385,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702741Z"},{"ID":13414,"Name":"Ethan Hunt 10","Points":9843,"X":616,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702742Z"},{"ID":13415,"Name":"#030","Points":10728,"X":460,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702742Z"},{"ID":13416,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":391,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702743Z"},{"ID":13417,"Name":"043.","Points":10068,"X":598,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702743Z"},{"ID":13418,"Name":"Optymistycznie","Points":2946,"X":613,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":699501322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702744Z"},{"ID":13419,"Name":"Unieszewo 004","Points":1560,"X":575,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699812571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702744Z"},{"ID":13420,"Name":"Gravity","Points":9494,"X":402,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702745Z"},{"ID":13421,"Name":".achim.","Points":10311,"X":526,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702745Z"},{"ID":13422,"Name":"Ręcznik do zmiany","Points":10495,"X":383,"Y":481,"Continent":"K43","Bonus":4,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702746Z"},{"ID":13423,"Name":"057","Points":8137,"X":485,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702746Z"},{"ID":13424,"Name":"16 im Jekiela","Points":9809,"X":591,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702747Z"},{"ID":13425,"Name":"[314] Chorągiewka na wietrze","Points":10394,"X":598,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702747Z"},{"ID":13426,"Name":"126 B06","Points":8047,"X":399,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702748Z"},{"ID":13427,"Name":"- 002 -","Points":10000,"X":548,"Y":603,"Continent":"K65","Bonus":4,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702748Z"},{"ID":13428,"Name":"SkƂad","Points":10291,"X":509,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702749Z"},{"ID":13429,"Name":"A019","Points":9925,"X":510,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702749Z"},{"ID":13430,"Name":"Lord Arsey KING","Points":10285,"X":583,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70275Z"},{"ID":13431,"Name":"A0254","Points":10362,"X":382,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70275Z"},{"ID":13432,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":388,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702751Z"},{"ID":13433,"Name":"[0031]","Points":10495,"X":451,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702751Z"},{"ID":13435,"Name":"Myk i do kieszonki","Points":7237,"X":383,"Y":515,"Continent":"K53","Bonus":4,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702752Z"},{"ID":13436,"Name":"Stage group B3","Points":9781,"X":421,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702752Z"},{"ID":13437,"Name":"D015","Points":9861,"X":509,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702753Z"},{"ID":13439,"Name":"South K45","Points":10042,"X":596,"Y":431,"Continent":"K45","Bonus":3,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702753Z"},{"ID":13440,"Name":"*INTERTWINED*","Points":9711,"X":508,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702754Z"},{"ID":13441,"Name":"002","Points":10019,"X":404,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702755Z"},{"ID":13442,"Name":"EKG .::. Mat26/2","Points":10237,"X":493,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702755Z"},{"ID":13443,"Name":"#051","Points":10393,"X":449,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702756Z"},{"ID":13444,"Name":"Mniejsze zƂo 0076","Points":11079,"X":390,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702756Z"},{"ID":13445,"Name":"#003.484|497","Points":9735,"X":603,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702757Z"},{"ID":13446,"Name":"087","Points":10103,"X":615,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702757Z"},{"ID":13447,"Name":"Z barba 001","Points":8732,"X":422,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702758Z"},{"ID":13448,"Name":"D016","Points":9861,"X":507,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702758Z"},{"ID":13449,"Name":"A0228","Points":10362,"X":377,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702759Z"},{"ID":13450,"Name":"[368] Chorągiewka na wietrze","Points":10391,"X":590,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702759Z"},{"ID":13451,"Name":"W.181/08","Points":10375,"X":614,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70276Z"},{"ID":13452,"Name":"EKG M04 + KAC 2 WZ","Points":10194,"X":476,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.70276Z"},{"ID":13454,"Name":"011","Points":9860,"X":603,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702761Z"},{"ID":13455,"Name":"00355 Refugia","Points":9886,"X":428,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702761Z"},{"ID":13456,"Name":"Konfederacja","Points":9917,"X":467,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702762Z"},{"ID":13457,"Name":"[008] Dreabe dig","Points":10294,"X":602,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.702762Z"},{"ID":13458,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":387,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735362Z"},{"ID":13459,"Name":"Zeta Reticuli S","Points":11188,"X":417,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735362Z"},{"ID":13460,"Name":"0200","Points":10495,"X":453,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735363Z"},{"ID":13461,"Name":"BoOmBaa..","Points":10495,"X":444,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735363Z"},{"ID":13462,"Name":".achim.","Points":10311,"X":521,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735364Z"},{"ID":13463,"Name":"A 005","Points":10043,"X":614,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7915966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735365Z"},{"ID":13464,"Name":"[088]","Points":9902,"X":566,"Y":557,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735365Z"},{"ID":13465,"Name":"*INTERTWINED*","Points":9276,"X":516,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735366Z"},{"ID":13466,"Name":"Myk i do kieszonki","Points":9799,"X":373,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735367Z"},{"ID":13467,"Name":"Naboo 2","Points":9528,"X":492,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735367Z"},{"ID":13468,"Name":"028","Points":9761,"X":489,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735368Z"},{"ID":13469,"Name":"Aaaaa","Points":10495,"X":420,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735368Z"},{"ID":13470,"Name":".achim.","Points":9107,"X":542,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735369Z"},{"ID":13471,"Name":"*307*","Points":10292,"X":511,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735369Z"},{"ID":13472,"Name":"024","Points":6130,"X":617,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73537Z"},{"ID":13473,"Name":"C 004 Wyry","Points":7794,"X":418,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735371Z"},{"ID":13474,"Name":"Jaaa","Points":10495,"X":598,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735371Z"},{"ID":13475,"Name":"# Szymi 2","Points":6689,"X":395,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735372Z"},{"ID":13476,"Name":"W.181/16","Points":10242,"X":610,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735372Z"},{"ID":13477,"Name":"x07","Points":10285,"X":406,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735373Z"},{"ID":13478,"Name":"Land of Fire","Points":9505,"X":398,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735374Z"},{"ID":13479,"Name":"- 047 -","Points":10000,"X":542,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735374Z"},{"ID":13480,"Name":"[240] WEST","Points":10057,"X":602,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735375Z"},{"ID":13481,"Name":"OSP","Points":8872,"X":419,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735375Z"},{"ID":13482,"Name":"EKG M16","Points":9355,"X":484,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735376Z"},{"ID":13483,"Name":"[324] Chorągiewka na wietrze","Points":10397,"X":596,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735376Z"},{"ID":13484,"Name":"* Zagrasz w kotka i myszkę?","Points":10183,"X":585,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735377Z"},{"ID":13485,"Name":"Wioska barbarzyƄska","Points":10009,"X":419,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735377Z"},{"ID":13486,"Name":"Wioska","Points":10178,"X":384,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735378Z"},{"ID":13487,"Name":"scoti","Points":10237,"X":489,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735379Z"},{"ID":13488,"Name":"a moĆŒe off ? :)","Points":9256,"X":575,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735379Z"},{"ID":13489,"Name":"[0033]","Points":10495,"X":449,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73538Z"},{"ID":13490,"Name":"South K45","Points":10042,"X":595,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73538Z"},{"ID":13491,"Name":"060. Tergeste","Points":8841,"X":604,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735381Z"},{"ID":13492,"Name":"045 Ithilien","Points":10475,"X":405,"Y":562,"Continent":"K54","Bonus":1,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735381Z"},{"ID":13494,"Name":"szczęƛliwego nowego fejkomatu","Points":6219,"X":396,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735382Z"},{"ID":13495,"Name":"BucksbarzyƄsKamiiiru","Points":10971,"X":436,"Y":529,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735383Z"},{"ID":13496,"Name":"0015 Szlachcic","Points":10083,"X":433,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735383Z"},{"ID":13497,"Name":"0002","Points":10495,"X":424,"Y":411,"Continent":"K44","Bonus":3,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735384Z"},{"ID":13498,"Name":"0031","Points":10544,"X":451,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735384Z"},{"ID":13499,"Name":"Ok.","Points":10543,"X":387,"Y":527,"Continent":"K53","Bonus":3,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735385Z"},{"ID":13500,"Name":"Wioska barbarzyƄska","Points":10285,"X":402,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735385Z"},{"ID":13501,"Name":"Wioska","Points":10178,"X":387,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735386Z"},{"ID":13503,"Name":"PowerPunch","Points":10252,"X":615,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735386Z"},{"ID":13504,"Name":"033","Points":9761,"X":486,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735387Z"},{"ID":13505,"Name":"Eeeee","Points":8453,"X":420,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735388Z"},{"ID":13506,"Name":"Naboo 1","Points":8794,"X":490,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735388Z"},{"ID":13507,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":392,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735389Z"},{"ID":13508,"Name":"012","Points":10495,"X":551,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735389Z"},{"ID":13509,"Name":"Zadupie","Points":2269,"X":412,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":869195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73539Z"},{"ID":13510,"Name":"014","Points":10495,"X":613,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73539Z"},{"ID":13511,"Name":"Wioska barbarzyƄska","Points":9708,"X":420,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735391Z"},{"ID":13512,"Name":"--003--","Points":10342,"X":432,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735392Z"},{"ID":13513,"Name":"ƚmieszki","Points":9055,"X":532,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735392Z"},{"ID":13514,"Name":"[0006]","Points":10495,"X":449,"Y":396,"Continent":"K34","Bonus":9,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735393Z"},{"ID":13516,"Name":"EKG .::. Siwyy8848/7","Points":10495,"X":500,"Y":617,"Continent":"K65","Bonus":2,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735393Z"},{"ID":13517,"Name":"End of the Road","Points":10559,"X":519,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735394Z"},{"ID":13518,"Name":"Ethan Hunt 08","Points":9816,"X":617,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735394Z"},{"ID":13519,"Name":"Galia","Points":9996,"X":598,"Y":441,"Continent":"K45","Bonus":0,"PlayerID":848989855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735395Z"},{"ID":13521,"Name":"[308] Chorągiewka na wietrze","Points":10373,"X":596,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735396Z"},{"ID":13522,"Name":"159","Points":10311,"X":578,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735396Z"},{"ID":13523,"Name":"[363] Chorągiewka na wietrze","Points":10474,"X":596,"Y":438,"Continent":"K45","Bonus":5,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735397Z"},{"ID":13524,"Name":"Jaaa","Points":10269,"X":609,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735398Z"},{"ID":13525,"Name":"szczęƛliwego nowego fejkomatu","Points":5790,"X":395,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735398Z"},{"ID":13526,"Name":"Kentin ufam Tobie","Points":10000,"X":389,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735399Z"},{"ID":13527,"Name":"Jaaa","Points":9982,"X":571,"Y":593,"Continent":"K55","Bonus":8,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735399Z"},{"ID":13528,"Name":"C 010","Points":10362,"X":567,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7354Z"},{"ID":13529,"Name":"Mniejsze zƂo 0077","Points":10930,"X":388,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7354Z"},{"ID":13530,"Name":"Lord Arsey KING","Points":10285,"X":577,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735401Z"},{"ID":13531,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":459,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735401Z"},{"ID":13532,"Name":".001.","Points":10316,"X":495,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735402Z"},{"ID":13533,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":387,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735403Z"},{"ID":13534,"Name":"Ethan Hunt 05","Points":9750,"X":617,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735403Z"},{"ID":13535,"Name":"012 (Popeye14)","Points":9835,"X":415,"Y":582,"Continent":"K54","Bonus":1,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735404Z"},{"ID":13536,"Name":"Brat447","Points":10069,"X":384,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735404Z"},{"ID":13537,"Name":"006. Gloria Victis","Points":10595,"X":444,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735405Z"},{"ID":13538,"Name":"Wioska barbarzyƄska","Points":9093,"X":591,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735405Z"},{"ID":13539,"Name":"C001 Las Noches","Points":9742,"X":608,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735406Z"},{"ID":13540,"Name":"Ethan Hunt 07","Points":9664,"X":618,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735407Z"},{"ID":13541,"Name":"scofield darmiarz mehehe","Points":10247,"X":487,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735407Z"},{"ID":13542,"Name":"Wioska","Points":10178,"X":383,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735408Z"},{"ID":13543,"Name":"0000021@","Points":9707,"X":433,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735408Z"},{"ID":13544,"Name":"#039","Points":10393,"X":483,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735409Z"},{"ID":13545,"Name":"FKG 01-23","Points":9835,"X":424,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735409Z"},{"ID":13546,"Name":"[0007]","Points":10495,"X":420,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73541Z"},{"ID":13547,"Name":"008","Points":9879,"X":618,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73541Z"},{"ID":13548,"Name":"123. ZƂote WzgĂłrza","Points":10083,"X":618,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735411Z"},{"ID":13549,"Name":"Brat447 XXX","Points":10481,"X":382,"Y":499,"Continent":"K43","Bonus":2,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735412Z"},{"ID":13550,"Name":"# Szymi 5","Points":5713,"X":391,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735412Z"},{"ID":13551,"Name":"Gravity","Points":9484,"X":401,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735413Z"},{"ID":13552,"Name":"11 im Ɓukszyna","Points":9809,"X":591,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735413Z"},{"ID":13553,"Name":"[0028]","Points":10495,"X":449,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735414Z"},{"ID":13554,"Name":"[350] Chorągiewka na wietrze","Points":10068,"X":588,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735415Z"},{"ID":13555,"Name":"~073.","Points":10495,"X":486,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735415Z"},{"ID":13556,"Name":"08 Suuuuu","Points":7665,"X":405,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735416Z"},{"ID":13557,"Name":"Lord Arsey KING","Points":10285,"X":582,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735416Z"},{"ID":13558,"Name":"027 Wioska","Points":10478,"X":612,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735417Z"},{"ID":13559,"Name":"0008","Points":9886,"X":426,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735417Z"},{"ID":13560,"Name":"[224] WEST","Points":10159,"X":608,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735418Z"},{"ID":13561,"Name":"072 - Antwerpia","Points":8878,"X":421,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735418Z"},{"ID":13562,"Name":"ww 003","Points":9745,"X":443,"Y":598,"Continent":"K54","Bonus":3,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735419Z"},{"ID":13563,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":386,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73542Z"},{"ID":13564,"Name":"HOTEL 2","Points":9742,"X":576,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73542Z"},{"ID":13565,"Name":"[357] Chorągiewka na wietrze","Points":10479,"X":591,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735421Z"},{"ID":13566,"Name":"033","Points":10068,"X":591,"Y":576,"Continent":"K55","Bonus":5,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735421Z"},{"ID":13568,"Name":"FAKE OR OFF","Points":9823,"X":437,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735422Z"},{"ID":13569,"Name":"043 InnyNizWszyscy","Points":10001,"X":541,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735422Z"},{"ID":13570,"Name":"124 Wioska barbarzyƄska","Points":10029,"X":399,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735423Z"},{"ID":13571,"Name":"127 s002","Points":7344,"X":400,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735423Z"},{"ID":13572,"Name":"#051.","Points":9735,"X":616,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735424Z"},{"ID":13574,"Name":"[315] Chorągiewka na wietrze","Points":10403,"X":598,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735424Z"},{"ID":13575,"Name":"Wioska sb","Points":9206,"X":405,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735425Z"},{"ID":13577,"Name":"*309*","Points":10295,"X":511,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735425Z"},{"ID":13578,"Name":"Horyzont zdarzeƄ","Points":10019,"X":536,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735426Z"},{"ID":13579,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":526,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735426Z"},{"ID":13580,"Name":"003.xxx","Points":9914,"X":466,"Y":611,"Continent":"K64","Bonus":4,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735427Z"},{"ID":13581,"Name":"BucksbarzyƄsKamiiiru","Points":9011,"X":380,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735428Z"},{"ID":13582,"Name":"A0014","Points":10362,"X":384,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735428Z"},{"ID":13583,"Name":"NIERAJ007","Points":10006,"X":467,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735429Z"},{"ID":13584,"Name":"[206] WEST","Points":9975,"X":606,"Y":448,"Continent":"K46","Bonus":6,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735429Z"},{"ID":13585,"Name":"010 Anatol","Points":10495,"X":617,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73543Z"},{"ID":13586,"Name":"016 Jestem na tak","Points":10479,"X":600,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73543Z"},{"ID":13587,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":389,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735431Z"},{"ID":13588,"Name":"Więcbork","Points":10019,"X":416,"Y":581,"Continent":"K54","Bonus":5,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735431Z"},{"ID":13589,"Name":"003","Points":9761,"X":497,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735432Z"},{"ID":13590,"Name":"Tuchola","Points":9835,"X":412,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735432Z"},{"ID":13591,"Name":"008. Brundisium","Points":9182,"X":611,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735433Z"},{"ID":13593,"Name":"K34 - [068] Before Land","Points":10016,"X":457,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735434Z"},{"ID":13595,"Name":"015. Gloria Victis","Points":10559,"X":424,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735434Z"},{"ID":13596,"Name":"- 020 -","Points":10000,"X":546,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735435Z"},{"ID":13597,"Name":"Wioska Woki606","Points":10474,"X":383,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735435Z"},{"ID":13598,"Name":"A0028","Points":10362,"X":388,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735436Z"},{"ID":13599,"Name":"09 Tytanowy kręgosƂup(Maczeta.)","Points":9835,"X":417,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735436Z"},{"ID":13600,"Name":"FAKE OR OFF","Points":9816,"X":442,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735437Z"},{"ID":13601,"Name":"BucksbarzyƄsKamiiiru","Points":7778,"X":386,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735437Z"},{"ID":13602,"Name":"[0008] Raf","Points":10495,"X":424,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735438Z"},{"ID":13603,"Name":"Ethan Hunt 06","Points":9653,"X":614,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735439Z"},{"ID":13604,"Name":"scoti","Points":10217,"X":491,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735439Z"},{"ID":13605,"Name":"South K35","Points":9809,"X":553,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73544Z"},{"ID":13606,"Name":"K44 x029","Points":6602,"X":433,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73544Z"},{"ID":13607,"Name":"036","Points":9761,"X":485,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735441Z"},{"ID":13609,"Name":"NIERAJ002","Points":10215,"X":469,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735441Z"},{"ID":13610,"Name":"060","Points":10311,"X":576,"Y":411,"Continent":"K45","Bonus":3,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735442Z"},{"ID":13611,"Name":"Szlachcic","Points":10237,"X":455,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735442Z"},{"ID":13612,"Name":"010. Gloria Victis","Points":10441,"X":425,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735443Z"},{"ID":13613,"Name":"095 BĘDĘ ICH POZDRAWIAĆ","Points":11381,"X":411,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735443Z"},{"ID":13614,"Name":"0108","Points":8507,"X":461,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735444Z"},{"ID":13615,"Name":"szczęƛliwego nowego fejkomatu","Points":5732,"X":395,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735445Z"},{"ID":13616,"Name":"011 Anatol","Points":10495,"X":616,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735445Z"},{"ID":13617,"Name":"037","Points":9871,"X":614,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735446Z"},{"ID":13618,"Name":"FAKE OR OFF","Points":9819,"X":446,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735446Z"},{"ID":13619,"Name":"Wioska wymiany surowcĂłw","Points":10242,"X":609,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735447Z"},{"ID":13620,"Name":"[316] Chorągiewka na wietrze","Points":10406,"X":597,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735447Z"},{"ID":13621,"Name":"#005.485|496","Points":9735,"X":604,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735448Z"},{"ID":13622,"Name":"012. Messana","Points":9182,"X":612,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735449Z"},{"ID":13623,"Name":"Kentin ufam Tobie","Points":10000,"X":433,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735449Z"},{"ID":13624,"Name":"Naboo","Points":8380,"X":491,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73545Z"},{"ID":13625,"Name":"~091.","Points":10495,"X":495,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73545Z"},{"ID":13626,"Name":"0004","Points":10393,"X":423,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735451Z"},{"ID":13627,"Name":"Land of Fire","Points":9489,"X":398,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735451Z"},{"ID":13628,"Name":"Gryfios 011","Points":10495,"X":615,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735452Z"},{"ID":13629,"Name":"sony911","Points":10205,"X":562,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735452Z"},{"ID":13630,"Name":"z 012","Points":10479,"X":559,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735453Z"},{"ID":13631,"Name":"A 004","Points":10478,"X":596,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735453Z"},{"ID":13632,"Name":"A0015","Points":10362,"X":376,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735454Z"},{"ID":13633,"Name":"Wioska barbarzyƄska","Points":9768,"X":586,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735455Z"},{"ID":13634,"Name":"poldi czytaj PW","Points":9167,"X":596,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735455Z"},{"ID":13635,"Name":"Lord Arsey KING","Points":10285,"X":583,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735456Z"},{"ID":13636,"Name":"HOTEL 7","Points":9761,"X":571,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735456Z"},{"ID":13637,"Name":"SkƂad","Points":10295,"X":510,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735457Z"},{"ID":13638,"Name":"Wall Market","Points":10362,"X":466,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735457Z"},{"ID":13639,"Name":"ƚmieszki","Points":9009,"X":532,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735458Z"},{"ID":13640,"Name":"005","Points":9761,"X":392,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735458Z"},{"ID":13641,"Name":"058. Durocorotum","Points":8563,"X":602,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735459Z"},{"ID":13643,"Name":"Land of Fire","Points":9495,"X":397,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73546Z"},{"ID":13644,"Name":"010 (Popeye14)","Points":9637,"X":416,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73546Z"},{"ID":13645,"Name":"[311] Chorągiewka na wietrze","Points":10400,"X":597,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735461Z"},{"ID":13647,"Name":"Mako Reactor 1 - B7F","Points":10426,"X":517,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735461Z"},{"ID":13649,"Name":"Dhaulagiri","Points":9692,"X":382,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735462Z"},{"ID":13650,"Name":"080","Points":10481,"X":618,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735462Z"},{"ID":13651,"Name":"0014 Oz","Points":10495,"X":432,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735463Z"},{"ID":13652,"Name":"EKG .::. Siwyy8848/4","Points":10495,"X":494,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735463Z"},{"ID":13654,"Name":"FAKE OR OFF","Points":9822,"X":444,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735464Z"},{"ID":13655,"Name":"*306*","Points":10295,"X":511,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735464Z"},{"ID":13656,"Name":"[0009]","Points":10495,"X":449,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735465Z"},{"ID":13657,"Name":"ƚmieszki","Points":9111,"X":533,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735466Z"},{"ID":13658,"Name":"005.xxx","Points":10160,"X":465,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735466Z"},{"ID":13659,"Name":"NOT?","Points":10042,"X":409,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735467Z"},{"ID":13660,"Name":"A0024","Points":10362,"X":385,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735467Z"},{"ID":13661,"Name":"001.","Points":10019,"X":609,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735468Z"},{"ID":13663,"Name":"#009","Points":10393,"X":473,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735468Z"},{"ID":13664,"Name":"022 R3MIX97","Points":10481,"X":621,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735469Z"},{"ID":13665,"Name":"00061 Wioska","Points":10012,"X":428,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735469Z"},{"ID":13666,"Name":"Osada koczownikĂłw","Points":10057,"X":391,"Y":464,"Continent":"K43","Bonus":9,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73547Z"},{"ID":13667,"Name":"Wioska loos","Points":9427,"X":411,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735471Z"},{"ID":13668,"Name":"PYRLANDIA 007 POD c","Points":10072,"X":569,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735471Z"},{"ID":13669,"Name":"B001","Points":9925,"X":509,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735472Z"},{"ID":13670,"Name":"a moĆŒe off ? :)","Points":9969,"X":582,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735472Z"},{"ID":13671,"Name":"116","Points":10311,"X":583,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735473Z"},{"ID":13672,"Name":"EKG 022","Points":10397,"X":494,"Y":619,"Continent":"K64","Bonus":6,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735473Z"},{"ID":13673,"Name":"134 S016","Points":7228,"X":402,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735474Z"},{"ID":13674,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":535,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735474Z"},{"ID":13675,"Name":"0325","Points":10083,"X":445,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735475Z"},{"ID":13676,"Name":"Szlachcic","Points":9969,"X":613,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":7915966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735476Z"},{"ID":13677,"Name":"Knowhere","Points":10374,"X":386,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735476Z"},{"ID":13678,"Name":"Wioska 021","Points":9761,"X":587,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735477Z"},{"ID":13680,"Name":"06. Aranea Highwind","Points":10495,"X":518,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735477Z"},{"ID":13681,"Name":"DOM 6","Points":10048,"X":565,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735478Z"},{"ID":13682,"Name":"061","Points":10311,"X":548,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735478Z"},{"ID":13683,"Name":"*0013 Baraki","Points":10195,"X":600,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735479Z"},{"ID":13684,"Name":"#005","Points":10393,"X":470,"Y":614,"Continent":"K64","Bonus":3,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735479Z"},{"ID":13685,"Name":"067","Points":10311,"X":584,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73548Z"},{"ID":13686,"Name":"015.","Points":9913,"X":566,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73548Z"},{"ID":13687,"Name":"Sztum","Points":10303,"X":511,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735481Z"},{"ID":13688,"Name":"[341] Chorągiewka na wietrze","Points":9696,"X":592,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735481Z"},{"ID":13689,"Name":"#005 S","Points":12154,"X":471,"Y":614,"Continent":"K64","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735482Z"},{"ID":13690,"Name":"MƁODE ORƁY 002","Points":10083,"X":576,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735483Z"},{"ID":13691,"Name":"Cypis","Points":10285,"X":400,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735483Z"},{"ID":13692,"Name":"a moĆŒe off ? :)","Points":9557,"X":576,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735484Z"},{"ID":13693,"Name":"020","Points":9761,"X":488,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735484Z"},{"ID":13694,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":462,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735485Z"},{"ID":13695,"Name":"Mniejsze zƂo 0013","Points":9556,"X":388,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735485Z"},{"ID":13696,"Name":"00353 Nibylandia","Points":10239,"X":428,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735486Z"},{"ID":13697,"Name":"006","Points":9783,"X":548,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735486Z"},{"ID":13698,"Name":"029","Points":9761,"X":488,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735487Z"},{"ID":13699,"Name":"K34 - [066] Before Land","Points":10126,"X":464,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735487Z"},{"ID":13700,"Name":"004.","Points":10254,"X":563,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735488Z"},{"ID":13701,"Name":"00173 Wieƛ","Points":4856,"X":434,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735489Z"},{"ID":13702,"Name":".achim.","Points":10311,"X":519,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735489Z"},{"ID":13703,"Name":"Nanga Parbat","Points":9697,"X":381,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73549Z"},{"ID":13704,"Name":"028 NOF CHERCH","Points":10495,"X":625,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73549Z"},{"ID":13705,"Name":"D06","Points":10083,"X":617,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735491Z"},{"ID":13706,"Name":"00171 dziki ogon","Points":4799,"X":438,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735491Z"},{"ID":13707,"Name":"szczęƛliwego nowego fejkomatu","Points":6284,"X":393,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735492Z"},{"ID":13708,"Name":"01 Molly","Points":9170,"X":616,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735492Z"},{"ID":13709,"Name":"0424","Points":10019,"X":547,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735493Z"},{"ID":13711,"Name":"Bagdad","Points":10654,"X":471,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735493Z"},{"ID":13712,"Name":"037","Points":10061,"X":557,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735494Z"},{"ID":13713,"Name":"A.023","Points":10301,"X":412,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735494Z"},{"ID":13714,"Name":"WW8","Points":10083,"X":617,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735495Z"},{"ID":13715,"Name":"023","Points":10495,"X":562,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735496Z"},{"ID":13716,"Name":"x03","Points":10285,"X":406,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735496Z"},{"ID":13717,"Name":"010. GĂłry Szare","Points":9828,"X":490,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735497Z"},{"ID":13718,"Name":"Teby_26","Points":9638,"X":502,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735497Z"},{"ID":13719,"Name":"077 - Stronghold","Points":10495,"X":421,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735498Z"},{"ID":13720,"Name":"022","Points":9612,"X":545,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735498Z"},{"ID":13721,"Name":"Twierdza","Points":10301,"X":505,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735499Z"},{"ID":13722,"Name":"Wioska","Points":10178,"X":384,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7355Z"},{"ID":13723,"Name":"Lord Arsey KING","Points":10285,"X":582,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7355Z"},{"ID":13724,"Name":".027.","Points":10301,"X":483,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735501Z"},{"ID":13725,"Name":"SiƂa, Masa, RzeĆșba 13","Points":8142,"X":616,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735501Z"},{"ID":13726,"Name":"011","Points":9761,"X":503,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735502Z"},{"ID":13727,"Name":"SSJ 008","Points":9761,"X":500,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735502Z"},{"ID":13728,"Name":".017.","Points":10316,"X":483,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735503Z"},{"ID":13729,"Name":"Horyzont zdarzeƄ","Points":10019,"X":536,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735503Z"},{"ID":13730,"Name":"Gattacka","Points":10556,"X":578,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735504Z"},{"ID":13731,"Name":"Z 003","Points":10478,"X":563,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735505Z"},{"ID":13732,"Name":"A012","Points":9925,"X":513,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735505Z"},{"ID":13733,"Name":"K34 - [009] Before Land","Points":10375,"X":458,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735506Z"},{"ID":13734,"Name":"#015","Points":9745,"X":486,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735506Z"},{"ID":13736,"Name":"[336] Chorągiewka na wietrze","Points":10527,"X":587,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735507Z"},{"ID":13737,"Name":"28. Wioska 28","Points":10003,"X":409,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735507Z"},{"ID":13738,"Name":"075 - Schowek na bity","Points":8446,"X":423,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735508Z"},{"ID":13739,"Name":"Abadonia ZZZ","Points":11111,"X":618,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735508Z"},{"ID":13740,"Name":"ADEN","Points":9737,"X":526,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735509Z"},{"ID":13741,"Name":"039","Points":10068,"X":591,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73551Z"},{"ID":13742,"Name":"NWO","Points":9762,"X":386,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73551Z"},{"ID":13743,"Name":"064 - Nuda","Points":10495,"X":427,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735511Z"},{"ID":13744,"Name":"006","Points":9840,"X":565,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735511Z"},{"ID":13745,"Name":"Bucks x Kamiiiru","Points":10019,"X":450,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735512Z"},{"ID":13747,"Name":"Jaaa","Points":10280,"X":609,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735512Z"},{"ID":13748,"Name":"0039","Points":9197,"X":615,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735513Z"},{"ID":13749,"Name":"A018","Points":10094,"X":518,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735514Z"},{"ID":13751,"Name":"043","Points":9886,"X":568,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735514Z"},{"ID":13752,"Name":"A.013","Points":10000,"X":596,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735515Z"},{"ID":13753,"Name":"066","Points":8274,"X":474,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735515Z"},{"ID":13754,"Name":"K44 x005","Points":9466,"X":437,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735516Z"},{"ID":13755,"Name":"Kiedyƛ Wielki Wojownik","Points":9612,"X":392,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735516Z"},{"ID":13756,"Name":"W 001 bombastik","Points":9473,"X":431,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735517Z"},{"ID":13757,"Name":"W.181/15","Points":10242,"X":611,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735517Z"},{"ID":13758,"Name":"013","Points":10311,"X":612,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735518Z"},{"ID":13759,"Name":".achim.","Points":10311,"X":526,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735519Z"},{"ID":13760,"Name":"Wioska MaximusGreat","Points":10068,"X":529,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735519Z"},{"ID":13761,"Name":"019","Points":10495,"X":573,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73552Z"},{"ID":13762,"Name":"029","Points":9924,"X":557,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73552Z"},{"ID":13763,"Name":"Knowhere","Points":10282,"X":385,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735521Z"},{"ID":13764,"Name":"OldTrafford","Points":9951,"X":620,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735521Z"},{"ID":13765,"Name":"z 004","Points":10495,"X":561,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735522Z"},{"ID":13766,"Name":".achim.","Points":10311,"X":522,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735523Z"},{"ID":13767,"Name":"Szlachcic","Points":10292,"X":486,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735523Z"},{"ID":13768,"Name":"SępĂłlno KrajeƄskie","Points":9835,"X":412,"Y":577,"Continent":"K54","Bonus":1,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735524Z"},{"ID":13769,"Name":"102 Myknięty jak 102","Points":10495,"X":393,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735524Z"},{"ID":13770,"Name":"Kentin ufam Tobie","Points":10000,"X":402,"Y":484,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735525Z"},{"ID":13771,"Name":"*003 Grenlandia","Points":9873,"X":389,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735525Z"},{"ID":13772,"Name":"K34 - [069] Before Land","Points":10259,"X":454,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735526Z"},{"ID":13774,"Name":"FAKE OR OFF","Points":9830,"X":438,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735526Z"},{"ID":13775,"Name":"A001","Points":10356,"X":520,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735527Z"},{"ID":13776,"Name":"030 Zakyntos","Points":10144,"X":614,"Y":516,"Continent":"K56","Bonus":7,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735527Z"},{"ID":13777,"Name":"Wioska barbarzyƄska","Points":10285,"X":403,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735528Z"},{"ID":13778,"Name":"Mniejsze zƂo 0075","Points":11079,"X":388,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735528Z"},{"ID":13779,"Name":"078","Points":9940,"X":575,"Y":411,"Continent":"K45","Bonus":5,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735529Z"},{"ID":13780,"Name":"Lord Arsey KING","Points":10285,"X":581,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73553Z"},{"ID":13781,"Name":"11 VHS","Points":9624,"X":619,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73553Z"},{"ID":13782,"Name":"PYRLANDIA 006","Points":9839,"X":569,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735531Z"},{"ID":13783,"Name":"Barba 2","Points":9928,"X":432,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735532Z"},{"ID":13784,"Name":"A.009","Points":10000,"X":602,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735532Z"},{"ID":13785,"Name":"069","Points":10311,"X":585,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735533Z"},{"ID":13786,"Name":"0017. A -","Points":6613,"X":616,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735533Z"},{"ID":13787,"Name":"Wioska5,","Points":8452,"X":509,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735534Z"},{"ID":13788,"Name":"C Zach 006 Pyskowice","Points":7409,"X":411,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735534Z"},{"ID":13789,"Name":"014","Points":10533,"X":617,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735535Z"},{"ID":13790,"Name":"0037","Points":10160,"X":462,"Y":610,"Continent":"K64","Bonus":5,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735535Z"},{"ID":13791,"Name":"x12","Points":10285,"X":404,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735536Z"},{"ID":13792,"Name":"[0010]","Points":10495,"X":423,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735536Z"},{"ID":13793,"Name":"* 1 Teraz bedzie Akcja -2","Points":10052,"X":595,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735537Z"},{"ID":13794,"Name":"Zeta Reticuli S","Points":11188,"X":414,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735538Z"},{"ID":13795,"Name":"szczęƛliwego nowego fejkomatu","Points":8397,"X":395,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735538Z"},{"ID":13796,"Name":"Zeta Reticuli S","Points":10838,"X":409,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735539Z"},{"ID":13797,"Name":"K44 x016","Points":8135,"X":433,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735539Z"},{"ID":13798,"Name":"CALL 1009","Points":10311,"X":525,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73554Z"},{"ID":13800,"Name":"088","Points":10095,"X":615,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73554Z"},{"ID":13801,"Name":"z 008","Points":10475,"X":560,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735541Z"},{"ID":13802,"Name":"[0027]","Points":10495,"X":448,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735541Z"},{"ID":13804,"Name":"042","Points":6804,"X":498,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735542Z"},{"ID":13805,"Name":"Wioska","Points":10178,"X":387,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735542Z"},{"ID":13806,"Name":"Wioska","Points":10178,"X":383,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735543Z"},{"ID":13807,"Name":"012","Points":10566,"X":605,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735544Z"},{"ID":13808,"Name":"Belvedere 003","Points":9797,"X":578,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735544Z"},{"ID":13809,"Name":"FAKE OR OFF","Points":9828,"X":435,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735545Z"},{"ID":13810,"Name":"Runing Up That Hill","Points":9469,"X":596,"Y":566,"Continent":"K55","Bonus":7,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735545Z"},{"ID":13812,"Name":"szczęƛliwego nowego fejkomatu","Points":6385,"X":391,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735546Z"},{"ID":13813,"Name":"Negr","Points":9746,"X":381,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735546Z"},{"ID":13814,"Name":"Emklan Biedanu","Points":10495,"X":516,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735547Z"},{"ID":13815,"Name":"ADEN","Points":9737,"X":520,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735547Z"},{"ID":13816,"Name":"Lord Arsey KING","Points":10285,"X":540,"Y":532,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735548Z"},{"ID":13817,"Name":"Chojnice","Points":9835,"X":409,"Y":571,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735548Z"},{"ID":13819,"Name":"002","Points":10495,"X":567,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735549Z"},{"ID":13820,"Name":"0328","Points":10019,"X":449,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735549Z"},{"ID":13822,"Name":"0334","Points":10019,"X":447,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73555Z"},{"ID":13823,"Name":"Wioska","Points":10178,"X":383,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73555Z"},{"ID":13824,"Name":"=003= W czarnym lesie","Points":10357,"X":609,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735551Z"},{"ID":13825,"Name":"0203","Points":10019,"X":452,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735552Z"},{"ID":13826,"Name":"bucks x kamiiiru","Points":10838,"X":413,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735552Z"},{"ID":13827,"Name":"Madryt (Mieszko 1995)","Points":9835,"X":413,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735553Z"},{"ID":13828,"Name":"Wioska bary20006","Points":9753,"X":589,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735553Z"},{"ID":13829,"Name":"017","Points":9761,"X":492,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735554Z"},{"ID":13830,"Name":"050.","Points":10237,"X":486,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735554Z"},{"ID":13831,"Name":"Ręcznik do zmiany","Points":10160,"X":400,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735555Z"},{"ID":13832,"Name":".018.","Points":10595,"X":482,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735555Z"},{"ID":13833,"Name":"Myk i do kieszonki","Points":8414,"X":383,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735556Z"},{"ID":13834,"Name":"B01. obstawiona (Motonari)","Points":10375,"X":441,"Y":599,"Continent":"K54","Bonus":3,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735556Z"},{"ID":13835,"Name":"szczęƛliwego nowego fejkomatu","Points":9277,"X":396,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735557Z"},{"ID":13836,"Name":"A0030","Points":10362,"X":387,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735557Z"},{"ID":13837,"Name":"003","Points":10563,"X":606,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735558Z"},{"ID":13838,"Name":"PiekƂo to inni","Points":10160,"X":477,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735559Z"},{"ID":13839,"Name":"Oaza","Points":9752,"X":380,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735559Z"},{"ID":13840,"Name":"071","Points":7065,"X":481,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73556Z"},{"ID":13841,"Name":"Myk i do kieszonki","Points":9791,"X":383,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73556Z"},{"ID":13842,"Name":"0012","Points":10192,"X":613,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735561Z"},{"ID":13843,"Name":"amator","Points":8916,"X":527,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735561Z"},{"ID":13844,"Name":"EKG M07","Points":10273,"X":476,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735562Z"},{"ID":13845,"Name":"K55","Points":10019,"X":544,"Y":538,"Continent":"K55","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735563Z"},{"ID":13846,"Name":"055","Points":10495,"X":546,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735563Z"},{"ID":13847,"Name":"016. Gloria Victis","Points":10728,"X":424,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735564Z"},{"ID":13848,"Name":"SkƂad","Points":8672,"X":508,"Y":617,"Continent":"K65","Bonus":2,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735564Z"},{"ID":13849,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":456,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735565Z"},{"ID":13850,"Name":"23 XXX","Points":456,"X":619,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735565Z"},{"ID":13851,"Name":"023","Points":9761,"X":499,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735566Z"},{"ID":13853,"Name":"Gattacka","Points":9744,"X":587,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735566Z"},{"ID":13854,"Name":"NIERAJ003","Points":10215,"X":469,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735567Z"},{"ID":13855,"Name":"Wioska xHavajek","Points":10068,"X":395,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735567Z"},{"ID":13856,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":459,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735568Z"},{"ID":13857,"Name":"ADEN","Points":10287,"X":521,"Y":383,"Continent":"K35","Bonus":3,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735568Z"},{"ID":13858,"Name":"Kentin ufam Tobie","Points":10000,"X":437,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735569Z"},{"ID":13859,"Name":"bucks x kamiiiru","Points":10429,"X":411,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73557Z"},{"ID":13860,"Name":"006.","Points":10291,"X":563,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73557Z"},{"ID":13861,"Name":"033 Lesbos","Points":10152,"X":613,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735571Z"},{"ID":13862,"Name":"002","Points":10311,"X":581,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735571Z"},{"ID":13863,"Name":"Wioska henry113","Points":10237,"X":512,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735572Z"},{"ID":13864,"Name":"003","Points":9825,"X":615,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735572Z"},{"ID":13865,"Name":"Zulus","Points":9804,"X":384,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735573Z"},{"ID":13866,"Name":"Wioska","Points":10178,"X":385,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735573Z"},{"ID":13867,"Name":"Czako","Points":9825,"X":383,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735574Z"},{"ID":13868,"Name":"L 3","Points":10019,"X":615,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735574Z"},{"ID":13870,"Name":"Jaaa","Points":10475,"X":572,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735575Z"},{"ID":13871,"Name":"PYRLANDIA 004 + 2R","Points":10495,"X":567,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735575Z"},{"ID":13872,"Name":"#0020","Points":9761,"X":523,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735576Z"},{"ID":13873,"Name":"0022","Points":10325,"X":615,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735576Z"},{"ID":13874,"Name":"041- friday","Points":10495,"X":409,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735577Z"},{"ID":13875,"Name":"Myk i do kieszonki","Points":9799,"X":382,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735578Z"},{"ID":13876,"Name":"Myk i do kieszonki","Points":9799,"X":382,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735578Z"},{"ID":13877,"Name":"Myk i do kieszonki","Points":9799,"X":382,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735579Z"},{"ID":13878,"Name":"Wioska (007)","Points":9170,"X":620,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735579Z"},{"ID":13880,"Name":"031","Points":9761,"X":489,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73558Z"},{"ID":13881,"Name":"40 im Mieklina","Points":6568,"X":590,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73558Z"},{"ID":13882,"Name":"K34 - [084] Before Land","Points":10259,"X":452,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735581Z"},{"ID":13883,"Name":"A020","Points":10233,"X":602,"Y":444,"Continent":"K46","Bonus":5,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735581Z"},{"ID":13884,"Name":"A-003","Points":10068,"X":533,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735582Z"},{"ID":13885,"Name":"- 042 -","Points":10000,"X":544,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735583Z"},{"ID":13886,"Name":"D020","Points":9925,"X":506,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735583Z"},{"ID":13887,"Name":"Myk i do kieszonki","Points":9799,"X":381,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735584Z"},{"ID":13888,"Name":"Wioska barbarzyƄska","Points":9644,"X":586,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735584Z"},{"ID":13889,"Name":"0008","Points":10703,"X":387,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735585Z"},{"ID":13890,"Name":"Wioska barbarzyƄska","Points":9835,"X":416,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735585Z"},{"ID":13891,"Name":"Cho Oyu","Points":9750,"X":383,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735586Z"},{"ID":13892,"Name":"Twierdza #2","Points":10042,"X":505,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735586Z"},{"ID":13893,"Name":"Konfederacja 8","Points":9761,"X":467,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735587Z"},{"ID":13895,"Name":"- 012 -","Points":10000,"X":548,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735588Z"},{"ID":13896,"Name":"0000004%","Points":10160,"X":425,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735588Z"},{"ID":13897,"Name":"K34 - [109] Before Land","Points":10259,"X":452,"Y":390,"Continent":"K34","Bonus":5,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735589Z"},{"ID":13898,"Name":"0010","Points":10447,"X":386,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735589Z"},{"ID":13899,"Name":".achim.","Points":10311,"X":527,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73559Z"},{"ID":13900,"Name":"#061","Points":10393,"X":481,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73559Z"},{"ID":13901,"Name":"017","Points":9827,"X":615,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735591Z"},{"ID":13902,"Name":"Wioska 019","Points":9761,"X":591,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735591Z"},{"ID":13903,"Name":"K34 - [072] Before Land","Points":10126,"X":450,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735592Z"},{"ID":13904,"Name":"0330","Points":10019,"X":447,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735592Z"},{"ID":13905,"Name":"096 Mienia zawĂłd Roman ChędoĆŒy","Points":10484,"X":395,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735593Z"},{"ID":13906,"Name":"092 PYTAƃ BRAK","Points":10495,"X":393,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735594Z"},{"ID":13907,"Name":"- 086 -","Points":10000,"X":549,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735594Z"},{"ID":13908,"Name":"W.181/10","Points":10242,"X":616,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735595Z"},{"ID":13909,"Name":"FKG 01-06","Points":9835,"X":421,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735595Z"},{"ID":13910,"Name":"[0074]","Points":10495,"X":451,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735596Z"},{"ID":13911,"Name":".:117:. Niangmen","Points":10224,"X":507,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735596Z"},{"ID":13912,"Name":"*304*","Points":10300,"X":509,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735597Z"},{"ID":13913,"Name":"026","Points":10146,"X":502,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735597Z"},{"ID":13914,"Name":"A016","Points":10484,"X":608,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735598Z"},{"ID":13915,"Name":"Suppi","Points":9745,"X":426,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735599Z"},{"ID":13916,"Name":"Wioska","Points":10178,"X":381,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735599Z"},{"ID":13917,"Name":"D010","Points":9467,"X":598,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7356Z"},{"ID":13918,"Name":"ƚmieszki","Points":9017,"X":533,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7356Z"},{"ID":13920,"Name":"Wioska","Points":10178,"X":388,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735601Z"},{"ID":13921,"Name":"bucks x kamiiiru","Points":10564,"X":411,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735602Z"},{"ID":13922,"Name":"Wioska","Points":10178,"X":382,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735602Z"},{"ID":13924,"Name":"[212] WEST","Points":10048,"X":609,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735603Z"},{"ID":13925,"Name":"Wioska","Points":10178,"X":381,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735603Z"},{"ID":13926,"Name":"ƚmieszki","Points":9155,"X":529,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735604Z"},{"ID":13927,"Name":"Kentin ufam Tobie","Points":10000,"X":436,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735604Z"},{"ID":13928,"Name":"Wioska","Points":10178,"X":384,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735605Z"},{"ID":13929,"Name":"K34 - [088] Before Land","Points":10259,"X":451,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735605Z"},{"ID":13930,"Name":"JaawmG P","Points":9888,"X":617,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735606Z"},{"ID":13931,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":531,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735607Z"},{"ID":13932,"Name":"#028","Points":10728,"X":457,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735607Z"},{"ID":13933,"Name":"Kiedyƛ Wielki Wojownik","Points":9620,"X":390,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735608Z"},{"ID":13934,"Name":"Wioska","Points":10178,"X":381,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735608Z"},{"ID":13935,"Name":"Wioska barbarzyƄska","Points":9975,"X":383,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735609Z"},{"ID":13936,"Name":"Wioska 015","Points":9761,"X":593,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735609Z"},{"ID":13937,"Name":"Kentin ufam Tobie","Points":10000,"X":434,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73561Z"},{"ID":13938,"Name":"079 FAT FAT","Points":10001,"X":581,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73561Z"},{"ID":13939,"Name":"030","Points":9761,"X":501,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735611Z"},{"ID":13940,"Name":"Wioska","Points":10178,"X":382,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735611Z"},{"ID":13941,"Name":"ADEN","Points":10154,"X":524,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735612Z"},{"ID":13942,"Name":"Lord Arsey KING","Points":10285,"X":580,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735613Z"},{"ID":13943,"Name":"rakieta 005","Points":9843,"X":612,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735613Z"},{"ID":13945,"Name":"007","Points":9709,"X":620,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735614Z"},{"ID":13946,"Name":"[0110]","Points":10180,"X":421,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735614Z"},{"ID":13947,"Name":"00172","Points":4296,"X":439,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735615Z"},{"ID":13948,"Name":"Myk i do kieszonki","Points":8067,"X":380,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735615Z"},{"ID":13949,"Name":"Mzm49","Points":8690,"X":544,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735616Z"},{"ID":13950,"Name":"FAKE OR OFF","Points":9813,"X":434,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735616Z"},{"ID":13951,"Name":"Sir Hood 3","Points":9335,"X":385,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735617Z"},{"ID":13952,"Name":"z 024","Points":10495,"X":560,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735617Z"},{"ID":13953,"Name":"FAKE OR OFF","Points":9817,"X":439,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735618Z"},{"ID":13954,"Name":"~~LatającyHolender~~","Points":10144,"X":598,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735618Z"},{"ID":13955,"Name":"Wioska","Points":10178,"X":385,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735619Z"},{"ID":13956,"Name":"WB3","Points":9400,"X":387,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73562Z"},{"ID":13957,"Name":"A0026","Points":10362,"X":384,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735621Z"},{"ID":13958,"Name":"Szlachcic","Points":9453,"X":587,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735621Z"},{"ID":13959,"Name":"Wioska barbarzyƄska 007|","Points":9740,"X":575,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735622Z"},{"ID":13960,"Name":"[0011]","Points":10495,"X":420,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735623Z"},{"ID":13961,"Name":"D022","Points":9861,"X":508,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735623Z"},{"ID":13962,"Name":".achim.","Points":10311,"X":523,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735624Z"},{"ID":13963,"Name":"z 026","Points":10217,"X":561,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735625Z"},{"ID":13964,"Name":"szlachcic","Points":10311,"X":385,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735626Z"},{"ID":13965,"Name":"011. Gloria Victis","Points":10449,"X":424,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735626Z"},{"ID":13966,"Name":".achim.","Points":10311,"X":536,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735627Z"},{"ID":13967,"Name":"~~LatającyHolender~~","Points":10139,"X":607,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735628Z"},{"ID":13968,"Name":"035","Points":10393,"X":557,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735629Z"},{"ID":13969,"Name":"Wioska barbarzyƄska","Points":8917,"X":600,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735629Z"},{"ID":13970,"Name":"006.","Points":9835,"X":612,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73563Z"},{"ID":13971,"Name":"Wioska barbarzyƄska","Points":10475,"X":387,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73563Z"},{"ID":13972,"Name":"[209] WEST","Points":10052,"X":609,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735631Z"},{"ID":13973,"Name":"[081]","Points":10373,"X":532,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735633Z"},{"ID":13974,"Name":"HOTEL 6","Points":9750,"X":570,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735633Z"},{"ID":13975,"Name":"017","Points":10147,"X":557,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735634Z"},{"ID":13976,"Name":"016","Points":9676,"X":617,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735635Z"},{"ID":13977,"Name":"Wioska","Points":10178,"X":383,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735635Z"},{"ID":13978,"Name":"008","Points":9797,"X":556,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735636Z"},{"ID":13979,"Name":"Land of Fire","Points":9515,"X":395,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735637Z"},{"ID":13980,"Name":"Bagdad","Points":10654,"X":476,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735637Z"},{"ID":13981,"Name":"003 (Popeye14)","Points":9899,"X":410,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735638Z"},{"ID":13982,"Name":"W 004","Points":8353,"X":431,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735639Z"},{"ID":13983,"Name":"Myk i do kieszonki","Points":9799,"X":380,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735639Z"},{"ID":13984,"Name":"In The End","Points":9270,"X":595,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73564Z"},{"ID":13986,"Name":"Gasherbrum I","Points":9820,"X":379,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735641Z"},{"ID":13987,"Name":"012. GĂłra Gundabad","Points":10476,"X":488,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735642Z"},{"ID":13988,"Name":"Bagdad","Points":10654,"X":473,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735642Z"},{"ID":13990,"Name":"08 Crash Test","Points":9124,"X":618,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735643Z"},{"ID":13991,"Name":"[0012]","Points":10495,"X":453,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735643Z"},{"ID":13992,"Name":"Gryfios 001a","Points":10487,"X":613,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735644Z"},{"ID":13994,"Name":"022 - Lamanai","Points":10118,"X":429,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735645Z"},{"ID":13995,"Name":"Wioska (042)","Points":9989,"X":618,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735645Z"},{"ID":13996,"Name":"083","Points":10093,"X":607,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735646Z"},{"ID":13997,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":534,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735647Z"},{"ID":13998,"Name":"002","Points":10822,"X":608,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735647Z"},{"ID":13999,"Name":"A.005","Points":10000,"X":604,"Y":551,"Continent":"K56","Bonus":9,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735648Z"},{"ID":14000,"Name":"005 Wioska barbarzyƄska","Points":10068,"X":529,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735648Z"},{"ID":14001,"Name":"Sony 911","Points":10205,"X":562,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735649Z"},{"ID":14002,"Name":"Foteviken","Points":10068,"X":536,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73565Z"},{"ID":14003,"Name":"a moĆŒe off ? :)","Points":9774,"X":584,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73565Z"},{"ID":14004,"Name":"006 TiZi iZi","Points":10495,"X":384,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735651Z"},{"ID":14005,"Name":"a moĆŒe off ? :)","Points":9780,"X":574,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735652Z"},{"ID":14006,"Name":"076","Points":10093,"X":609,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735652Z"},{"ID":14007,"Name":"002. Orkowe WzgĂłrze","Points":10292,"X":488,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735653Z"},{"ID":14008,"Name":"bucks x kamiiiru","Points":10971,"X":413,"Y":423,"Continent":"K44","Bonus":9,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735653Z"},{"ID":14010,"Name":"#029","Points":10728,"X":458,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735654Z"},{"ID":14011,"Name":"5. Szopienice","Points":10394,"X":478,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735654Z"},{"ID":14012,"Name":"Barba 4","Points":10169,"X":431,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735655Z"},{"ID":14013,"Name":"005","Points":9761,"X":498,"Y":383,"Continent":"K34","Bonus":9,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735656Z"},{"ID":14014,"Name":"155","Points":10311,"X":549,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735656Z"},{"ID":14015,"Name":"0354","Points":10160,"X":445,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735657Z"},{"ID":14016,"Name":"South K35","Points":9809,"X":555,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735658Z"},{"ID":14017,"Name":"#006","Points":10393,"X":474,"Y":616,"Continent":"K64","Bonus":1,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735658Z"},{"ID":14018,"Name":"Czekam na VS","Points":10495,"X":538,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735659Z"},{"ID":14019,"Name":"#0022","Points":10495,"X":543,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73566Z"},{"ID":14020,"Name":"D004","Points":10311,"X":585,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73566Z"},{"ID":14021,"Name":"Mniejsze zƂo 0015","Points":8735,"X":388,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735661Z"},{"ID":14022,"Name":"Taran","Points":10104,"X":543,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735661Z"},{"ID":14023,"Name":"scoti","Points":10217,"X":492,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735662Z"},{"ID":14024,"Name":"C003","Points":9925,"X":521,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735663Z"},{"ID":14025,"Name":"D02","Points":10160,"X":614,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735663Z"},{"ID":14026,"Name":"A.024","Points":9419,"X":411,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735664Z"},{"ID":14027,"Name":"[0013]","Points":10495,"X":419,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735665Z"},{"ID":14028,"Name":"066","Points":10311,"X":585,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735665Z"},{"ID":14029,"Name":"PYRLANDIA 013 $","Points":10220,"X":573,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735666Z"},{"ID":14030,"Name":"Wioska barbarzyƄska","Points":9758,"X":405,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735667Z"},{"ID":14031,"Name":"- 001 -","Points":10000,"X":551,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735667Z"},{"ID":14032,"Name":"Wioska","Points":10178,"X":388,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735668Z"},{"ID":14033,"Name":"056 Trelleborg","Points":10001,"X":533,"Y":385,"Continent":"K35","Bonus":1,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735669Z"},{"ID":14034,"Name":"015 Seba","Points":10495,"X":618,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735669Z"},{"ID":14035,"Name":"Bocianikson006","Points":9955,"X":611,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73567Z"},{"ID":14036,"Name":"Avanti!","Points":9956,"X":381,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735671Z"},{"ID":14037,"Name":"0002","Points":11824,"X":529,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735671Z"},{"ID":14038,"Name":"A0022","Points":10362,"X":383,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735672Z"},{"ID":14039,"Name":"A0049","Points":10362,"X":382,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735673Z"},{"ID":14040,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":391,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735673Z"},{"ID":14041,"Name":"003","Points":9761,"X":544,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735674Z"},{"ID":14042,"Name":"szczęƛliwego nowego fejkomatu","Points":7079,"X":394,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735674Z"},{"ID":14044,"Name":"Wioska barbarzyƄska","Points":4022,"X":572,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":930720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735675Z"},{"ID":14045,"Name":"[216] WEST","Points":10057,"X":613,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735676Z"},{"ID":14046,"Name":"Myk i do kieszonki","Points":9799,"X":381,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735676Z"},{"ID":14047,"Name":"A002","Points":10094,"X":515,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735677Z"},{"ID":14048,"Name":"Feed me more 012","Points":10465,"X":488,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735678Z"},{"ID":14049,"Name":"s181eo13","Points":9886,"X":391,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735679Z"},{"ID":14050,"Name":"CALL 1013","Points":10311,"X":524,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735679Z"},{"ID":14051,"Name":"0014 A Wioska","Points":10136,"X":432,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73568Z"},{"ID":14052,"Name":"[0014]","Points":10495,"X":421,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73568Z"},{"ID":14053,"Name":"ADEN","Points":10338,"X":517,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735681Z"},{"ID":14054,"Name":"009","Points":10495,"X":562,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735682Z"},{"ID":14055,"Name":"Twierdza 2","Points":10016,"X":613,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735683Z"},{"ID":14056,"Name":"Ręcznik do zmiany","Points":10495,"X":385,"Y":483,"Continent":"K43","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735683Z"},{"ID":14057,"Name":"025. Venetia","Points":9179,"X":613,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735684Z"},{"ID":14058,"Name":"014.","Points":9839,"X":566,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735685Z"},{"ID":14059,"Name":"*023*","Points":8462,"X":619,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735685Z"},{"ID":14060,"Name":"A.010","Points":10000,"X":605,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735686Z"},{"ID":14062,"Name":"#035","Points":10393,"X":444,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735686Z"},{"ID":14063,"Name":"022.","Points":9869,"X":564,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735687Z"},{"ID":14064,"Name":"HOTEL 10","Points":9778,"X":567,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735687Z"},{"ID":14065,"Name":"RHUDAUR f","Points":11078,"X":534,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735688Z"},{"ID":14066,"Name":"Wioska barbarzyƄska","Points":10068,"X":407,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735688Z"},{"ID":14067,"Name":"CALL 917","Points":10311,"X":554,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735689Z"},{"ID":14068,"Name":"#016 A","Points":10160,"X":464,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73569Z"},{"ID":14069,"Name":"004. Gloria Victis","Points":10838,"X":441,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73569Z"},{"ID":14070,"Name":"CALL 921","Points":10311,"X":556,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735691Z"},{"ID":14071,"Name":"[0030]","Points":10495,"X":450,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735691Z"},{"ID":14072,"Name":"s181eo08","Points":9886,"X":391,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735692Z"},{"ID":14073,"Name":"- 088 -","Points":10000,"X":549,"Y":606,"Continent":"K65","Bonus":2,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735692Z"},{"ID":14074,"Name":"Knowhere","Points":10452,"X":383,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735693Z"},{"ID":14075,"Name":"W 005","Points":8002,"X":431,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735693Z"},{"ID":14077,"Name":"FAKE OR OFF","Points":9819,"X":437,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735694Z"},{"ID":14078,"Name":".achim.","Points":8249,"X":524,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735695Z"},{"ID":14079,"Name":"K34 - [062] Before Land","Points":10259,"X":457,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735695Z"},{"ID":14081,"Name":"011","Points":9821,"X":504,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735696Z"},{"ID":14083,"Name":"ADEN","Points":9737,"X":520,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735696Z"},{"ID":14084,"Name":"s181eo07","Points":9902,"X":400,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735697Z"},{"ID":14085,"Name":"CALL 1011","Points":10495,"X":524,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735698Z"},{"ID":14086,"Name":"096 Wioska barbarzyƄska","Points":9786,"X":579,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735698Z"},{"ID":14087,"Name":"01. Dzikie Pandy","Points":8851,"X":403,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735699Z"},{"ID":14088,"Name":"Wioska","Points":10178,"X":380,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735699Z"},{"ID":14089,"Name":"Abadonia XXX","Points":11808,"X":618,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7357Z"},{"ID":14090,"Name":"0552","Points":9968,"X":499,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7357Z"},{"ID":14091,"Name":"szczęƛliwego nowego fejkomatu","Points":4037,"X":402,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735701Z"},{"ID":14092,"Name":"123 S014","Points":9534,"X":397,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735702Z"},{"ID":14093,"Name":"015","Points":9980,"X":484,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735702Z"},{"ID":14094,"Name":"#002","Points":10393,"X":468,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735703Z"},{"ID":14095,"Name":"PYRLANDIA 001 S","Points":10222,"X":570,"Y":593,"Continent":"K55","Bonus":2,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735703Z"},{"ID":14096,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735704Z"},{"ID":14097,"Name":"#009 A","Points":10311,"X":465,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735705Z"},{"ID":14098,"Name":"180 Montevideo","Points":9771,"X":482,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735705Z"},{"ID":14099,"Name":"089","Points":10495,"X":618,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735706Z"},{"ID":14100,"Name":"176 Mar Del Plata","Points":9761,"X":481,"Y":481,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735706Z"},{"ID":14101,"Name":"Ręcznik do zmiany","Points":10319,"X":398,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735707Z"},{"ID":14102,"Name":"PiekƂo to inni","Points":10160,"X":481,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735707Z"},{"ID":14103,"Name":"FAKE OR OFF","Points":9819,"X":441,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735708Z"},{"ID":14104,"Name":"0003","Points":10083,"X":425,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735709Z"},{"ID":14105,"Name":"-007- (WiotrPitczak)","Points":9055,"X":416,"Y":582,"Continent":"K54","Bonus":6,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735709Z"},{"ID":14106,"Name":"EKG M05","Points":10247,"X":478,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73571Z"},{"ID":14107,"Name":"043","Points":9747,"X":542,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73571Z"},{"ID":14108,"Name":"038","Points":9761,"X":493,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735711Z"},{"ID":14109,"Name":"#041","Points":10393,"X":452,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735711Z"},{"ID":14110,"Name":"Westcoast.005","Points":10178,"X":400,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735712Z"},{"ID":14111,"Name":"018. Gloria Victis","Points":10436,"X":432,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735712Z"},{"ID":14112,"Name":"PataTaj","Points":9887,"X":431,"Y":403,"Continent":"K44","Bonus":6,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735713Z"},{"ID":14113,"Name":"001. Gloria Victis","Points":6558,"X":436,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735713Z"},{"ID":14114,"Name":"004","Points":9963,"X":386,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735714Z"},{"ID":14115,"Name":"Szlachcic","Points":10237,"X":453,"Y":389,"Continent":"K34","Bonus":3,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735714Z"},{"ID":14116,"Name":"dawaj ziomek","Points":5829,"X":392,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849095014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735715Z"},{"ID":14117,"Name":"003 arepa","Points":10495,"X":608,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735716Z"},{"ID":14118,"Name":"0436","Points":10019,"X":542,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735716Z"},{"ID":14119,"Name":"Kiedyƛ Wielki Wojownik","Points":10611,"X":388,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735717Z"},{"ID":14120,"Name":"0048","Points":10845,"X":436,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735717Z"},{"ID":14121,"Name":"141","Points":10311,"X":545,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735718Z"},{"ID":14122,"Name":"Gravity","Points":9505,"X":400,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735719Z"},{"ID":14123,"Name":"s181eo09","Points":9885,"X":392,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735719Z"},{"ID":14124,"Name":"[325] Chorągiewka na wietrze RRR","Points":10403,"X":599,"Y":433,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73572Z"},{"ID":14125,"Name":"017","Points":10460,"X":544,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73572Z"},{"ID":14126,"Name":"0021 Ja tu tylko po gieƂde","Points":10152,"X":433,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735721Z"},{"ID":14127,"Name":"A009","Points":10362,"X":608,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735721Z"},{"ID":14128,"Name":"Wioska Wielkie Oczy","Points":10319,"X":398,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735722Z"},{"ID":14129,"Name":"#017","Points":10393,"X":473,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735723Z"},{"ID":14130,"Name":"ESSA (Kamaaam)","Points":9835,"X":419,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735723Z"},{"ID":14131,"Name":"Teby_27","Points":9638,"X":501,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735724Z"},{"ID":14132,"Name":"7.62 mm","Points":9510,"X":479,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735724Z"},{"ID":14134,"Name":"Land of Fire","Points":9488,"X":394,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735725Z"},{"ID":14135,"Name":"Wioska barbarzyƄska","Points":8980,"X":595,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735725Z"},{"ID":14136,"Name":"Mniejsze zƂo 0020","Points":9712,"X":389,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735726Z"},{"ID":14137,"Name":"019","Points":10224,"X":556,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735727Z"},{"ID":14138,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":460,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735727Z"},{"ID":14139,"Name":"001","Points":10311,"X":581,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735728Z"},{"ID":14140,"Name":"Wioska","Points":10178,"X":382,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735728Z"},{"ID":14141,"Name":"Szlachcic","Points":9379,"X":590,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735729Z"},{"ID":14142,"Name":"0041","Points":10019,"X":461,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735729Z"},{"ID":14143,"Name":"Najlepszy sąsiad 010","Points":10273,"X":602,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73573Z"},{"ID":14144,"Name":"Tylko Tesco JL","Points":10019,"X":602,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73573Z"},{"ID":14145,"Name":"A020","Points":9925,"X":510,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735731Z"},{"ID":14146,"Name":"Ciiichutko","Points":10030,"X":590,"Y":421,"Continent":"K45","Bonus":2,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735732Z"},{"ID":14147,"Name":"0032","Points":9993,"X":425,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735732Z"},{"ID":14148,"Name":"035","Points":10068,"X":599,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735733Z"},{"ID":14149,"Name":"Buszmen","Points":9761,"X":380,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735734Z"},{"ID":14150,"Name":"[343] Chorągiewka na wietrze","Points":9791,"X":593,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735734Z"},{"ID":14151,"Name":"[344] Chorągiewka na wietrze ?","Points":10400,"X":597,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735735Z"},{"ID":14152,"Name":"X04","Points":10490,"X":389,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735735Z"},{"ID":14153,"Name":"Kiedyƛ Wielki Wojownik","Points":9438,"X":390,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735736Z"},{"ID":14154,"Name":".64","Points":10971,"X":452,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735737Z"},{"ID":14155,"Name":"K34 - [098] Before Land","Points":10259,"X":463,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735737Z"},{"ID":14156,"Name":"017. Gloria Victis","Points":10636,"X":434,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735738Z"},{"ID":14157,"Name":"026","Points":9244,"X":438,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735738Z"},{"ID":14158,"Name":"EKG M06","Points":10336,"X":477,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735739Z"},{"ID":14159,"Name":"004","Points":11078,"X":435,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735739Z"},{"ID":14160,"Name":"*5502*b Meta:)","Points":10287,"X":597,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73574Z"},{"ID":14161,"Name":"Wioska","Points":9477,"X":384,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735741Z"},{"ID":14163,"Name":"014. Gloria Victis","Points":10470,"X":442,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735741Z"},{"ID":14164,"Name":"ADEN","Points":10338,"X":522,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735742Z"},{"ID":14165,"Name":"CALL 918","Points":10311,"X":553,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735742Z"},{"ID":14166,"Name":"028 Kansas","Points":10495,"X":606,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735743Z"},{"ID":14167,"Name":"rakieta 007","Points":6783,"X":617,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735744Z"},{"ID":14168,"Name":"#066","Points":10728,"X":486,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735744Z"},{"ID":14169,"Name":"bucks x kamiiiru","Points":10971,"X":412,"Y":421,"Continent":"K44","Bonus":7,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735745Z"},{"ID":14170,"Name":"bucks x kamiiiru","Points":10971,"X":412,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735745Z"},{"ID":14171,"Name":"Feed me more 006","Points":10001,"X":498,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735746Z"},{"ID":14172,"Name":"x08","Points":10285,"X":407,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735746Z"},{"ID":14173,"Name":"Pobozowisko","Points":10954,"X":418,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735747Z"},{"ID":14174,"Name":"Wioska","Points":10178,"X":382,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735748Z"},{"ID":14175,"Name":"Ok.","Points":9134,"X":386,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735748Z"},{"ID":14176,"Name":"[0015]","Points":10495,"X":418,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735749Z"},{"ID":14177,"Name":"0040","Points":9378,"X":619,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735749Z"},{"ID":14178,"Name":"024 Kattegat","Points":9924,"X":609,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73575Z"},{"ID":14179,"Name":"015","Points":11347,"X":619,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735751Z"},{"ID":14180,"Name":"Lord Arsey KING","Points":9237,"X":589,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735751Z"},{"ID":14181,"Name":"Bucks x Kamiiiru","Points":10495,"X":450,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735752Z"},{"ID":14182,"Name":"181-003","Points":2610,"X":587,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":8876551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735752Z"},{"ID":14183,"Name":"0136","Points":10083,"X":456,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735753Z"},{"ID":14184,"Name":"#014","Points":10393,"X":475,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735753Z"},{"ID":14185,"Name":"Teby_16","Points":9638,"X":507,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735754Z"},{"ID":14186,"Name":"042","Points":9745,"X":541,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735754Z"},{"ID":14187,"Name":"ƚmieszki","Points":9012,"X":536,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735755Z"},{"ID":14189,"Name":"Bocianikson004","Points":9966,"X":608,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735756Z"},{"ID":14190,"Name":"osada Marian","Points":10495,"X":567,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735756Z"},{"ID":14192,"Name":"Wioska barbarzyƄska","Points":8970,"X":598,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735757Z"},{"ID":14193,"Name":"Teby_14","Points":9638,"X":505,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735757Z"},{"ID":14194,"Name":"CALL 916","Points":10311,"X":554,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735758Z"},{"ID":14195,"Name":"CALL 989","Points":10311,"X":516,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735759Z"},{"ID":14196,"Name":"Brat447","Points":10016,"X":384,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735759Z"},{"ID":14197,"Name":"Suppi","Points":10247,"X":430,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73576Z"},{"ID":14198,"Name":"Teby_13","Points":9638,"X":505,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73576Z"},{"ID":14199,"Name":"0325","Points":10083,"X":446,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735761Z"},{"ID":14200,"Name":"0041","Points":9793,"X":621,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735761Z"},{"ID":14201,"Name":"B 006","Points":10362,"X":584,"Y":415,"Continent":"K45","Bonus":2,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735762Z"},{"ID":14202,"Name":"0005","Points":9993,"X":426,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735762Z"},{"ID":14203,"Name":"A014","Points":9925,"X":513,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735763Z"},{"ID":14204,"Name":"07. Iris Amicitia","Points":10495,"X":522,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735764Z"},{"ID":14205,"Name":"South K35","Points":10042,"X":552,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735764Z"},{"ID":14206,"Name":"014 Tampa","Points":9761,"X":434,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735765Z"},{"ID":14207,"Name":"A0023","Points":10362,"X":386,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735765Z"},{"ID":14208,"Name":"Horyzont zdarzeƄ","Points":9835,"X":538,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735766Z"},{"ID":14209,"Name":"- 027 -","Points":10000,"X":548,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735766Z"},{"ID":14210,"Name":"Wioska SmerfĂłw","Points":9606,"X":595,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735767Z"},{"ID":14212,"Name":"Wioska Karol-boss","Points":7059,"X":457,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735767Z"},{"ID":14213,"Name":"XXXX","Points":10132,"X":492,"Y":384,"Continent":"K34","Bonus":6,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735768Z"},{"ID":14214,"Name":"bucks x kamiiiru","Points":10971,"X":410,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735769Z"},{"ID":14215,"Name":"Highway to Hell","Points":9500,"X":598,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735769Z"},{"ID":14216,"Name":"{004} Shuno","Points":10495,"X":534,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73577Z"},{"ID":14217,"Name":"CALL 912","Points":10311,"X":558,"Y":601,"Continent":"K65","Bonus":4,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73577Z"},{"ID":14218,"Name":"34 im Duszkina","Points":9809,"X":577,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735771Z"},{"ID":14219,"Name":"Pobozowisko","Points":10412,"X":419,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735772Z"},{"ID":14220,"Name":"0425","Points":10019,"X":551,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735772Z"},{"ID":14221,"Name":"K34 - [060] Before Land","Points":10126,"X":454,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735773Z"},{"ID":14222,"Name":"Westcoast.009","Points":10178,"X":400,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735773Z"},{"ID":14223,"Name":"048 .Maczeta","Points":7200,"X":403,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735774Z"},{"ID":14224,"Name":"0002","Points":10495,"X":604,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735774Z"},{"ID":14225,"Name":"9mm","Points":10495,"X":568,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735775Z"},{"ID":14226,"Name":"Do Azot i nazot puliku jeden","Points":9669,"X":392,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735775Z"},{"ID":14227,"Name":"006","Points":10311,"X":621,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735776Z"},{"ID":14228,"Name":"HOTEL 8","Points":9636,"X":574,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735777Z"},{"ID":14229,"Name":"[329] Chorągiewka na wietrze ++","Points":10411,"X":600,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735777Z"},{"ID":14230,"Name":"Wioska barbarzyƄska","Points":9101,"X":596,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735778Z"},{"ID":14231,"Name":"bucks x kamiiiru","Points":10744,"X":409,"Y":421,"Continent":"K44","Bonus":3,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735778Z"},{"ID":14232,"Name":"Street","Points":10049,"X":584,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735779Z"},{"ID":14233,"Name":"AL 002","Points":10503,"X":615,"Y":480,"Continent":"K46","Bonus":6,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735779Z"},{"ID":14234,"Name":"Wola 5","Points":8341,"X":478,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849093155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73578Z"},{"ID":14235,"Name":"012","Points":10495,"X":560,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73578Z"},{"ID":14237,"Name":"022. Barcino","Points":9193,"X":616,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735781Z"},{"ID":14238,"Name":"[205] WEST","Points":10049,"X":612,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735782Z"},{"ID":14239,"Name":"Ręcznik do zmiany","Points":10495,"X":402,"Y":434,"Continent":"K44","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735782Z"},{"ID":14240,"Name":"Wioska (044)","Points":7950,"X":617,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735783Z"},{"ID":14241,"Name":"ƚmieszki","Points":9058,"X":534,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735783Z"},{"ID":14243,"Name":"#021","Points":10393,"X":472,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735784Z"},{"ID":14244,"Name":"038","Points":10311,"X":570,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735784Z"},{"ID":14245,"Name":"Wioska (006)","Points":8622,"X":619,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735785Z"},{"ID":14246,"Name":"Wyzima","Points":9742,"X":483,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735785Z"},{"ID":14247,"Name":"A002","Points":10160,"X":610,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735786Z"},{"ID":14248,"Name":"Mzm12","Points":10362,"X":612,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735787Z"},{"ID":14249,"Name":"0014","Points":10703,"X":387,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735787Z"},{"ID":14250,"Name":"193","Points":9920,"X":571,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735788Z"},{"ID":14251,"Name":"Lord Arsey KING","Points":10285,"X":579,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735788Z"},{"ID":14252,"Name":"ƚmieszki","Points":9267,"X":535,"Y":616,"Continent":"K65","Bonus":2,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735789Z"},{"ID":14253,"Name":"062","Points":8059,"X":492,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735789Z"},{"ID":14254,"Name":"#011","Points":10393,"X":471,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73579Z"},{"ID":14255,"Name":"Sector 2 Slums Area","Points":10559,"X":504,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73579Z"},{"ID":14256,"Name":"bohprawdziwy","Points":5188,"X":396,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735791Z"},{"ID":14257,"Name":"FAKE OR OFF","Points":9817,"X":439,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735791Z"},{"ID":14258,"Name":"Wioska barbarzyƄska","Points":10068,"X":407,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735792Z"},{"ID":14259,"Name":"ADEN","Points":10287,"X":526,"Y":382,"Continent":"K35","Bonus":2,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735793Z"},{"ID":14261,"Name":"sony911","Points":10273,"X":565,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735793Z"},{"ID":14262,"Name":"Wioska silnypakiao","Points":10068,"X":407,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735794Z"},{"ID":14263,"Name":"Wioska 016","Points":9761,"X":590,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735794Z"},{"ID":14264,"Name":"001","Points":10495,"X":532,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735795Z"},{"ID":14265,"Name":"Avanti!","Points":9956,"X":380,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735795Z"},{"ID":14266,"Name":"Belvedere 004","Points":7647,"X":580,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735796Z"},{"ID":14267,"Name":"[339] Chorągiewka na wietrze","Points":10406,"X":587,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735797Z"},{"ID":14268,"Name":"Omn4dreN","Points":10495,"X":619,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735797Z"},{"ID":14269,"Name":"Wioska","Points":10178,"X":381,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735798Z"},{"ID":14270,"Name":"0038","Points":10083,"X":461,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735798Z"},{"ID":14272,"Name":"Wioska barbarzyƄska 010|","Points":9121,"X":573,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735799Z"},{"ID":14273,"Name":"CALL 919","Points":10311,"X":553,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735799Z"},{"ID":14275,"Name":"- 080 -","Points":10000,"X":536,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7358Z"},{"ID":14276,"Name":"030","Points":9908,"X":616,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7358Z"},{"ID":14277,"Name":"038","Points":8308,"X":618,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735801Z"},{"ID":14278,"Name":"008. Gloria Victis","Points":10433,"X":423,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735801Z"},{"ID":14279,"Name":"K34 - [119] Before Land","Points":8146,"X":468,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735802Z"},{"ID":14280,"Name":"009","Points":9761,"X":502,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735803Z"},{"ID":14281,"Name":"019 Kayce","Points":10083,"X":604,"Y":563,"Continent":"K56","Bonus":7,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735803Z"},{"ID":14282,"Name":"Yogi","Points":10019,"X":521,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735804Z"},{"ID":14283,"Name":"K34 - [054] Before Land","Points":10259,"X":463,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735804Z"},{"ID":14284,"Name":"Wioska9","Points":6310,"X":502,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735805Z"},{"ID":14285,"Name":"K34 - [042] Before Land","Points":10126,"X":461,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735805Z"},{"ID":14286,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":615,"Continent":"K65","Bonus":4,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735806Z"},{"ID":14287,"Name":"#002 MG","Points":10971,"X":465,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735806Z"},{"ID":14288,"Name":"Wioska barbarzyƄska","Points":8972,"X":592,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735807Z"},{"ID":14289,"Name":"Sector 2","Points":10316,"X":506,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735808Z"},{"ID":14290,"Name":"Wioska","Points":10178,"X":381,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735808Z"},{"ID":14292,"Name":"A010","Points":10362,"X":607,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735809Z"},{"ID":14293,"Name":"0355","Points":10083,"X":444,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735809Z"},{"ID":14294,"Name":"[0016]","Points":10495,"X":442,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73581Z"},{"ID":14295,"Name":"Bucks x Kamiiiru","Points":10268,"X":455,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73581Z"},{"ID":14296,"Name":"038 France","Points":5790,"X":620,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735811Z"},{"ID":14297,"Name":"Lord Arsey KING","Points":7198,"X":587,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735811Z"},{"ID":14298,"Name":"Wioska","Points":10178,"X":385,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735812Z"},{"ID":14299,"Name":"Pobozowisko","Points":10773,"X":415,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735812Z"},{"ID":14300,"Name":"Bagdad","Points":10654,"X":471,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735813Z"},{"ID":14301,"Name":"051 - A03.***","Points":10495,"X":438,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735813Z"},{"ID":14302,"Name":"005 - ZioƂowo","Points":8316,"X":419,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735814Z"},{"ID":14303,"Name":"013. Gloria Victis","Points":9761,"X":422,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735814Z"},{"ID":14304,"Name":"041","Points":9809,"X":374,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735815Z"},{"ID":14305,"Name":"K34 - [038] Before Land","Points":9924,"X":462,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735816Z"},{"ID":14306,"Name":"*311*","Points":10291,"X":509,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735816Z"},{"ID":14307,"Name":"Lord Arsey KING","Points":10285,"X":581,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735817Z"},{"ID":14308,"Name":"Dum Spiro Spero","Points":9976,"X":496,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735817Z"},{"ID":14309,"Name":"076 Kami","Points":10495,"X":620,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735818Z"},{"ID":14310,"Name":"Wioska","Points":10178,"X":385,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735818Z"},{"ID":14311,"Name":"#014.488|495","Points":9735,"X":607,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735819Z"},{"ID":14312,"Name":"0000023@","Points":10160,"X":431,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735819Z"},{"ID":14313,"Name":"02. Lunafreya Nox Fleuret","Points":10495,"X":524,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73582Z"},{"ID":14314,"Name":"0026","Points":10001,"X":617,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735821Z"},{"ID":14315,"Name":"Abadonia QQQ","Points":12154,"X":619,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735821Z"},{"ID":14316,"Name":"A-006","Points":10068,"X":531,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735822Z"},{"ID":14317,"Name":"#006 M","Points":10311,"X":464,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735822Z"},{"ID":14318,"Name":"B001","Points":10487,"X":593,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735823Z"},{"ID":14319,"Name":"[353] Chorągiewka na wietrze","Points":9123,"X":600,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735823Z"},{"ID":14320,"Name":"Mniejsze zƂo 0078","Points":10451,"X":389,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735824Z"},{"ID":14321,"Name":".005.","Points":10595,"X":499,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735824Z"},{"ID":14322,"Name":"Kentin ufam Tobie","Points":10000,"X":433,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735825Z"},{"ID":14323,"Name":"** Mysia Trutka","Points":10068,"X":598,"Y":435,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735826Z"},{"ID":14324,"Name":"FKG 01-13","Points":9835,"X":422,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735826Z"},{"ID":14325,"Name":"017 Valyria","Points":10142,"X":606,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735827Z"},{"ID":14326,"Name":"094 TO NASZ ƚWIAT","Points":9839,"X":395,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735828Z"},{"ID":14327,"Name":"smiel","Points":9178,"X":401,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735828Z"},{"ID":14328,"Name":"073 InnyNizWszyscy","Points":8799,"X":539,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735829Z"},{"ID":14329,"Name":"Prabuty","Points":10306,"X":508,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735829Z"},{"ID":14330,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":584,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73583Z"},{"ID":14331,"Name":"041.","Points":10237,"X":489,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73583Z"},{"ID":14332,"Name":"K34 - [031] Before Land","Points":10259,"X":465,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735831Z"},{"ID":14333,"Name":"Wioska","Points":10178,"X":388,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735831Z"},{"ID":14334,"Name":"Zeta Reticuli S","Points":10838,"X":414,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735832Z"},{"ID":14335,"Name":"Mzm09","Points":10495,"X":614,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735832Z"},{"ID":14336,"Name":"0134","Points":10019,"X":454,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735833Z"},{"ID":14337,"Name":"Mniejsze zƂo 0014","Points":9343,"X":389,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735834Z"},{"ID":14338,"Name":"01. Noctis Lucis Caelum","Points":10495,"X":521,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735834Z"},{"ID":14339,"Name":"Evergreen Park","Points":10495,"X":526,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735835Z"},{"ID":14340,"Name":"Kentin ufam Tobie","Points":10003,"X":429,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735835Z"},{"ID":14341,"Name":"Moongoose","Points":9994,"X":467,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735836Z"},{"ID":14342,"Name":"[0017]","Points":10495,"X":423,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735836Z"},{"ID":14343,"Name":"[312] Chorągiewka na wietrze","Points":10411,"X":598,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735837Z"},{"ID":14344,"Name":"L 2","Points":10102,"X":619,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735837Z"},{"ID":14345,"Name":"009. Gloria Victis","Points":10296,"X":422,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735838Z"},{"ID":14346,"Name":"0138","Points":10019,"X":453,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735839Z"},{"ID":14347,"Name":"004.","Points":10267,"X":443,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735839Z"},{"ID":14348,"Name":"13 Furioza","Points":4858,"X":620,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73584Z"},{"ID":14349,"Name":"0008. A - Gilead","Points":9761,"X":607,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73584Z"},{"ID":14350,"Name":"Wioska","Points":10178,"X":384,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735841Z"},{"ID":14351,"Name":"ADEN","Points":9737,"X":525,"Y":384,"Continent":"K35","Bonus":3,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735842Z"},{"ID":14352,"Name":"Bocianikson005","Points":9949,"X":611,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735842Z"},{"ID":14353,"Name":"097 JesieƄ ƛredniowiecza","Points":10490,"X":398,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735843Z"},{"ID":14354,"Name":"062","Points":10311,"X":563,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735843Z"},{"ID":14355,"Name":"HOTEL 9","Points":9710,"X":577,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735844Z"},{"ID":14356,"Name":"ccc","Points":10475,"X":609,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735844Z"},{"ID":14357,"Name":"K34 - [112] Before Land","Points":10259,"X":455,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735845Z"},{"ID":14360,"Name":"008 Carvahall","Points":10083,"X":614,"Y":470,"Continent":"K46","Bonus":9,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735845Z"},{"ID":14361,"Name":"FKG 01-07","Points":9835,"X":417,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735846Z"},{"ID":14362,"Name":"HoƂopole","Points":10311,"X":493,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735846Z"},{"ID":14363,"Name":"K34 - [039] Before Land","Points":10259,"X":458,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735847Z"},{"ID":14364,"Name":"B013","Points":10059,"X":482,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735848Z"},{"ID":14365,"Name":"048","Points":9742,"X":536,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735848Z"},{"ID":14366,"Name":"Szlachcic","Points":9453,"X":587,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735849Z"},{"ID":14367,"Name":"juz po ptakach","Points":10019,"X":579,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735849Z"},{"ID":14368,"Name":"Knowhere","Points":7316,"X":373,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73585Z"},{"ID":14370,"Name":"Wioska","Points":10178,"X":381,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735851Z"},{"ID":14371,"Name":"A.004","Points":10401,"X":416,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735851Z"},{"ID":14372,"Name":"0198","Points":10040,"X":451,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735852Z"},{"ID":14373,"Name":"BoOmBaa..","Points":8754,"X":445,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735852Z"},{"ID":14374,"Name":"[208] WEST","Points":9977,"X":609,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735853Z"},{"ID":14375,"Name":"011 - Yhym","Points":9386,"X":421,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735853Z"},{"ID":14376,"Name":"#016","Points":10393,"X":466,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735854Z"},{"ID":14377,"Name":"Ręcznik do zmiany","Points":10160,"X":398,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735854Z"},{"ID":14378,"Name":"0009. C - Sithrim","Points":10285,"X":622,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735855Z"},{"ID":14379,"Name":"0042","Points":9649,"X":615,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735855Z"},{"ID":14380,"Name":"004.xxx","Points":10146,"X":461,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735856Z"},{"ID":14381,"Name":"013. Antioch","Points":9284,"X":612,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735857Z"},{"ID":14383,"Name":"bucks x kamiiiru","Points":10971,"X":407,"Y":422,"Continent":"K44","Bonus":1,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735857Z"},{"ID":14384,"Name":"Gainer","Points":10495,"X":620,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735858Z"},{"ID":14385,"Name":"A0019","Points":10362,"X":382,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735858Z"},{"ID":14386,"Name":"0001","Points":11321,"X":529,"Y":615,"Continent":"K65","Bonus":1,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735859Z"},{"ID":14387,"Name":"ADEN","Points":9737,"X":525,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735859Z"},{"ID":14388,"Name":"Pobozowisko","Points":10546,"X":416,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73586Z"},{"ID":14389,"Name":"002","Points":10068,"X":532,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73586Z"},{"ID":14390,"Name":"Horyzont zdarzeƄ","Points":10019,"X":537,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735861Z"},{"ID":14391,"Name":"001","Points":9963,"X":547,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735861Z"},{"ID":14392,"Name":"03. Ignis Scienta","Points":10495,"X":525,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735862Z"},{"ID":14393,"Name":"Wioska elli38","Points":9575,"X":558,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735862Z"},{"ID":14394,"Name":"Wioska barbarzyƄska","Points":10122,"X":405,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735863Z"},{"ID":14395,"Name":"WW3","Points":9721,"X":621,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735863Z"},{"ID":14396,"Name":"Wioska","Points":10178,"X":383,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735864Z"},{"ID":14397,"Name":"Szulernia","Points":9991,"X":411,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735864Z"},{"ID":14398,"Name":"Wioska","Points":10178,"X":382,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735865Z"},{"ID":14400,"Name":"Darma","Points":9835,"X":428,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735866Z"},{"ID":14401,"Name":"#004 A","Points":10362,"X":459,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735866Z"},{"ID":14402,"Name":"C Zach 007","Points":6210,"X":403,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735867Z"},{"ID":14403,"Name":".RUCH CHORZÓW","Points":9828,"X":595,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735867Z"},{"ID":14404,"Name":"[0018]","Points":10495,"X":441,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735868Z"},{"ID":14405,"Name":"A0078","Points":10362,"X":383,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735868Z"},{"ID":14406,"Name":"Ponad Ląd","Points":10160,"X":580,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735869Z"},{"ID":14408,"Name":"*004 Reykjavik","Points":9757,"X":387,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735869Z"},{"ID":14409,"Name":"029","Points":9993,"X":382,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73587Z"},{"ID":14410,"Name":"018","Points":10495,"X":570,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73587Z"},{"ID":14411,"Name":"074 OZDR","Points":9899,"X":493,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735871Z"},{"ID":14412,"Name":"Taran","Points":9761,"X":545,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735872Z"},{"ID":14413,"Name":"095","Points":10311,"X":584,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735872Z"},{"ID":14414,"Name":"A021","Points":10476,"X":615,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735873Z"},{"ID":14415,"Name":"Wioska","Points":10178,"X":381,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735873Z"},{"ID":14416,"Name":"D04","Points":10019,"X":620,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735874Z"},{"ID":14417,"Name":"KoƂobrzeg","Points":9549,"X":551,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735874Z"},{"ID":14419,"Name":"- 044 -","Points":10000,"X":544,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735875Z"},{"ID":14421,"Name":"Avanti!","Points":9950,"X":379,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735875Z"},{"ID":14422,"Name":"074 InnyNizWszyscy","Points":10001,"X":540,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735876Z"},{"ID":14423,"Name":"Pod","Points":9623,"X":587,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735877Z"},{"ID":14424,"Name":"# Szymi 8","Points":9873,"X":389,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735877Z"},{"ID":14425,"Name":"Wioska barbarzyƄska","Points":9037,"X":596,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735878Z"},{"ID":14426,"Name":"Piwna 05","Points":9181,"X":617,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735878Z"},{"ID":14427,"Name":"bucks x kamiiiru","Points":10209,"X":411,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735879Z"},{"ID":14428,"Name":"099 Ja nie panimajet","Points":6658,"X":393,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735879Z"},{"ID":14429,"Name":"Wioska 020","Points":9761,"X":588,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73588Z"},{"ID":14430,"Name":"- 220 -","Points":10000,"X":547,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73588Z"},{"ID":14431,"Name":"A0016","Points":10362,"X":385,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735881Z"},{"ID":14432,"Name":"South K45","Points":10042,"X":598,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735882Z"},{"ID":14433,"Name":"Wioska 024","Points":9761,"X":594,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735882Z"},{"ID":14434,"Name":"A016","Points":9925,"X":515,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735883Z"},{"ID":14435,"Name":"K34 - [002] Before Land","Points":10259,"X":455,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735883Z"},{"ID":14436,"Name":"*INTERTWINED*","Points":9711,"X":516,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735884Z"},{"ID":14437,"Name":"Mzm07","Points":10362,"X":618,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735884Z"},{"ID":14438,"Name":"ADEN","Points":10154,"X":520,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735885Z"},{"ID":14439,"Name":"005 ZƂap-Mnie","Points":10495,"X":602,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735885Z"},{"ID":14440,"Name":"3. DębieƄsko","Points":10452,"X":511,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735886Z"},{"ID":14441,"Name":"047","Points":9745,"X":537,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735886Z"},{"ID":14442,"Name":"0003","Points":11550,"X":530,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735887Z"},{"ID":14443,"Name":"scofield darmiarz mehehe","Points":10240,"X":489,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735887Z"},{"ID":14444,"Name":"ƚmieszki","Points":9008,"X":527,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735888Z"},{"ID":14445,"Name":"Berlin (Mieszko 1995)","Points":9976,"X":411,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735889Z"},{"ID":14446,"Name":"Wioska barbarzyƄska","Points":10008,"X":408,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735889Z"},{"ID":14447,"Name":"W.181/12","Points":10242,"X":615,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73589Z"},{"ID":14448,"Name":"Gryfios 004","Points":8921,"X":617,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735891Z"},{"ID":14449,"Name":"A0021","Points":10362,"X":383,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735891Z"},{"ID":14450,"Name":"Osada koczownikĂłw","Points":10160,"X":405,"Y":426,"Continent":"K44","Bonus":4,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735892Z"},{"ID":14451,"Name":"~019.","Points":10495,"X":520,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735892Z"},{"ID":14452,"Name":"012 Albo jesteƛ pizz@","Points":10478,"X":623,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735893Z"},{"ID":14453,"Name":"Wioska barbarzyƄska 009|","Points":9499,"X":574,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735893Z"},{"ID":14454,"Name":"023","Points":10019,"X":437,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735894Z"},{"ID":14455,"Name":"Gryfios 010","Points":10559,"X":616,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735894Z"},{"ID":14456,"Name":"017 Sebix","Points":10495,"X":619,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735895Z"},{"ID":14457,"Name":"Kentin ufam Tobie","Points":10000,"X":399,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735896Z"},{"ID":14458,"Name":"038 - Mroczna Osada","Points":12154,"X":613,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735896Z"},{"ID":14459,"Name":"[342] Chorągiewka na wietrze PAA","Points":9264,"X":592,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735897Z"},{"ID":14460,"Name":"Land of Fire","Points":9489,"X":398,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735898Z"},{"ID":14461,"Name":"041","Points":9741,"X":541,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735898Z"},{"ID":14462,"Name":"Knowhere","Points":10000,"X":383,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735899Z"},{"ID":14463,"Name":"Zeta Reticuli S","Points":10887,"X":414,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735899Z"},{"ID":14464,"Name":"Jaaa","Points":10495,"X":607,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7359Z"},{"ID":14465,"Name":"Z barba 013","Points":10495,"X":405,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7359Z"},{"ID":14466,"Name":"K34 - [061] Before Land","Points":10126,"X":460,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735901Z"},{"ID":14467,"Name":"EKG .::. Siwyy8848/6","Points":10495,"X":496,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735901Z"},{"ID":14468,"Name":"077","Points":9806,"X":618,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735902Z"},{"ID":14469,"Name":"005","Points":10203,"X":385,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735902Z"},{"ID":14470,"Name":"EKG .::. freaky97/3","Points":10495,"X":486,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735903Z"},{"ID":14471,"Name":"00011","Points":11550,"X":528,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735903Z"},{"ID":14472,"Name":"Jaaa","Points":10479,"X":601,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735904Z"},{"ID":14473,"Name":"Zeta Reticuli S","Points":10997,"X":416,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735905Z"},{"ID":14474,"Name":"Myk i do kieszonki","Points":9799,"X":378,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735905Z"},{"ID":14475,"Name":"100 StĂłkwa","Points":10487,"X":400,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735906Z"},{"ID":14476,"Name":"=004= O poranku","Points":10145,"X":608,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735906Z"},{"ID":14477,"Name":"019","Points":10311,"X":620,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735907Z"},{"ID":14478,"Name":"Land of Fire","Points":9494,"X":397,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735907Z"},{"ID":14479,"Name":"Wioska","Points":10178,"X":384,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735908Z"},{"ID":14480,"Name":"009.xxx","Points":10149,"X":465,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735908Z"},{"ID":14481,"Name":"A0013","Points":10362,"X":381,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735909Z"},{"ID":14482,"Name":"Czekam na VS","Points":10495,"X":532,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73591Z"},{"ID":14483,"Name":"0352","Points":10019,"X":442,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73591Z"},{"ID":14484,"Name":"A0004","Points":10362,"X":381,"Y":471,"Continent":"K43","Bonus":5,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735911Z"},{"ID":14485,"Name":"Bobolice","Points":9835,"X":397,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735912Z"},{"ID":14486,"Name":"Myk i do kieszonki","Points":9338,"X":383,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735912Z"},{"ID":14487,"Name":"033","Points":10149,"X":500,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735913Z"},{"ID":14488,"Name":"004","Points":9936,"X":611,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735913Z"},{"ID":14489,"Name":"OB#001","Points":10237,"X":507,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735914Z"},{"ID":14490,"Name":"=005= PrzyjechaƂo czarne","Points":10133,"X":611,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735914Z"},{"ID":14491,"Name":"#015","Points":10393,"X":469,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735915Z"},{"ID":14492,"Name":"Wioska","Points":10178,"X":382,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735916Z"},{"ID":14493,"Name":"SoƂtys Twojej Wsi","Points":9768,"X":438,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735916Z"},{"ID":14494,"Name":"Szlachcic","Points":9453,"X":590,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735917Z"},{"ID":14495,"Name":"K34 - [004] Before Land","Points":10259,"X":455,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735917Z"},{"ID":14496,"Name":"FKG 01-09","Points":9835,"X":420,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735918Z"},{"ID":14497,"Name":"#058","Points":10728,"X":478,"Y":620,"Continent":"K64","Bonus":1,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735918Z"},{"ID":14498,"Name":"Wioska barbarzyƄska","Points":10122,"X":404,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735919Z"},{"ID":14499,"Name":"Jaaa","Points":10827,"X":585,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735919Z"},{"ID":14500,"Name":"138","Points":10311,"X":588,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73592Z"},{"ID":14501,"Name":"Barba 1","Points":9895,"X":431,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735921Z"},{"ID":14502,"Name":"Pobozowisko","Points":8561,"X":418,"Y":589,"Continent":"K54","Bonus":5,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735921Z"},{"ID":14503,"Name":"ADEN","Points":9614,"X":525,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735922Z"},{"ID":14504,"Name":"Wioska barbarzyƄska","Points":10285,"X":403,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735922Z"},{"ID":14505,"Name":"Feed me more 014","Points":9938,"X":486,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735923Z"},{"ID":14506,"Name":"Wioska","Points":10178,"X":380,"Y":525,"Continent":"K53","Bonus":5,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735924Z"},{"ID":14507,"Name":"FKG 01-02","Points":9835,"X":419,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735924Z"},{"ID":14508,"Name":"Kentin ufam Tobie","Points":10000,"X":402,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735925Z"},{"ID":14509,"Name":"A0017","Points":10362,"X":382,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735925Z"},{"ID":14510,"Name":"15 im Galicyna","Points":9809,"X":595,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735926Z"},{"ID":14511,"Name":"Wioska barbarzyƄska","Points":9633,"X":597,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735926Z"},{"ID":14512,"Name":"020. Gloria Victis","Points":10357,"X":441,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735927Z"},{"ID":14513,"Name":"s181eo14","Points":9883,"X":392,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735927Z"},{"ID":14514,"Name":"SantiagoBernabeu","Points":10654,"X":621,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735928Z"},{"ID":14515,"Name":"052","Points":10495,"X":559,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735928Z"},{"ID":14516,"Name":"Wioska","Points":10178,"X":382,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.735929Z"},{"ID":14517,"Name":"010","Points":9810,"X":550,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73593Z"},{"ID":14518,"Name":"ZachĂłd - 007","Points":9923,"X":398,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.73593Z"},{"ID":14519,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":459,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768508Z"},{"ID":14520,"Name":"Pobozowisko","Points":10950,"X":419,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76851Z"},{"ID":14521,"Name":"#018.487|495","Points":9735,"X":606,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76851Z"},{"ID":14522,"Name":"Wioska barbarzyƄska","Points":10068,"X":405,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768511Z"},{"ID":14523,"Name":"012. wraca","Points":10229,"X":484,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768512Z"},{"ID":14524,"Name":"058","Points":9549,"X":478,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768512Z"},{"ID":14525,"Name":"03 Prequel","Points":9160,"X":621,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768513Z"},{"ID":14526,"Name":"W.181/22","Points":10242,"X":618,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768513Z"},{"ID":14527,"Name":"0205","Points":10039,"X":450,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768514Z"},{"ID":14528,"Name":"0014","Points":10211,"X":577,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768515Z"},{"ID":14529,"Name":"Ok.","Points":9100,"X":388,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768515Z"},{"ID":14530,"Name":"[217] WEST","Points":10019,"X":607,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768516Z"},{"ID":14531,"Name":"024 Raikiri","Points":10495,"X":613,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768516Z"},{"ID":14532,"Name":"A011","Points":10252,"X":607,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768517Z"},{"ID":14533,"Name":"018 Starfall","Points":10595,"X":609,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768518Z"},{"ID":14534,"Name":"Land of Fire","Points":9505,"X":399,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768518Z"},{"ID":14535,"Name":"Wioska Matz32 181.1","Points":10560,"X":591,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768519Z"},{"ID":14536,"Name":"023","Points":9819,"X":622,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768519Z"},{"ID":14537,"Name":"Konfederacja","Points":9824,"X":469,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76852Z"},{"ID":14538,"Name":"005","Points":9455,"X":602,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768521Z"},{"ID":14539,"Name":"#032","Points":10393,"X":479,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768521Z"},{"ID":14540,"Name":"Wioska barbarzyƄska","Points":10971,"X":380,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768522Z"},{"ID":14541,"Name":"Gryfios 012","Points":10954,"X":614,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768522Z"},{"ID":14543,"Name":".014.","Points":10316,"X":503,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768523Z"},{"ID":14545,"Name":"Bagdad","Points":10654,"X":473,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768523Z"},{"ID":14546,"Name":"SiƂa, Masa, RzeĆșba 06","Points":9656,"X":622,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768524Z"},{"ID":14547,"Name":"003. Gloria Victis","Points":9956,"X":440,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768524Z"},{"ID":14549,"Name":"[345] Chorągiewka na wietrze","Points":10403,"X":597,"Y":432,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768525Z"},{"ID":14551,"Name":"Wioska barbarzyƄska","Points":11550,"X":380,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768526Z"},{"ID":14552,"Name":"Myk i do kieszonki","Points":7513,"X":380,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768526Z"},{"ID":14553,"Name":"#016.491|494","Points":9735,"X":610,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768527Z"},{"ID":14554,"Name":"008 NABOSAKASUKA","Points":8726,"X":541,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768527Z"},{"ID":14555,"Name":"145","Points":10311,"X":581,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768528Z"},{"ID":14556,"Name":"Castle Rock","Points":10259,"X":483,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768528Z"},{"ID":14557,"Name":"=017= Nowe pokolenie","Points":10580,"X":609,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768529Z"},{"ID":14558,"Name":"#013.490|495","Points":9735,"X":609,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76853Z"},{"ID":14559,"Name":"SINGED X SZEF","Points":9994,"X":491,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76853Z"},{"ID":14560,"Name":"MOTEL 4","Points":9960,"X":566,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768531Z"},{"ID":14561,"Name":"0088","Points":10160,"X":548,"Y":611,"Continent":"K65","Bonus":4,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768532Z"},{"ID":14563,"Name":"A 002","Points":9590,"X":606,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768532Z"},{"ID":14564,"Name":"CzƂuchĂłw","Points":9835,"X":404,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768533Z"},{"ID":14565,"Name":"004. Dol Guldur","Points":10273,"X":488,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768534Z"},{"ID":14566,"Name":"Wioska barbarzyƄska24","Points":10237,"X":504,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768535Z"},{"ID":14567,"Name":"[213] WEST","Points":10013,"X":608,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768535Z"},{"ID":14568,"Name":"=006= Auto, od szwagra","Points":10580,"X":611,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768536Z"},{"ID":14569,"Name":"[337] Chorągiewka na wietrze","Points":10406,"X":589,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768537Z"},{"ID":14570,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":523,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768538Z"},{"ID":14571,"Name":"0021","Points":10162,"X":615,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768538Z"},{"ID":14572,"Name":"064","Points":3597,"X":572,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768539Z"},{"ID":14573,"Name":"HMB","Points":10252,"X":623,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76854Z"},{"ID":14574,"Name":"002","Points":10285,"X":402,"Y":431,"Continent":"K44","Bonus":8,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76854Z"},{"ID":14575,"Name":"Mako Reactor 1 - B6F","Points":10083,"X":522,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768541Z"},{"ID":14576,"Name":"Zeta Reticuli S","Points":10997,"X":412,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768542Z"},{"ID":14578,"Name":"084","Points":9470,"X":584,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768542Z"},{"ID":14579,"Name":"020. Cyrene","Points":9177,"X":615,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768543Z"},{"ID":14580,"Name":"Konfederacja +","Points":9699,"X":469,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768543Z"},{"ID":14581,"Name":"Jehu_Kingdom_08_","Points":9993,"X":610,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768544Z"},{"ID":14582,"Name":"24 im Proszyna","Points":9809,"X":564,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768545Z"},{"ID":14583,"Name":"Jaaa","Points":10478,"X":575,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768545Z"},{"ID":14584,"Name":"0029","Points":9993,"X":427,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768546Z"},{"ID":14585,"Name":"159 Ale mnie gƂówka boli","Points":10646,"X":387,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768546Z"},{"ID":14586,"Name":"Z barba 011","Points":9488,"X":408,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768547Z"},{"ID":14587,"Name":"012 Miyazaki","Points":10495,"X":621,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768547Z"},{"ID":14588,"Name":"K34 - [046] Before Land","Points":10016,"X":457,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768548Z"},{"ID":14589,"Name":"*INTERTWINED*","Points":9711,"X":507,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768549Z"},{"ID":14590,"Name":"Darma","Points":9835,"X":427,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768549Z"},{"ID":14591,"Name":"Land of Fire","Points":9489,"X":394,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76855Z"},{"ID":14592,"Name":"B 004","Points":10362,"X":585,"Y":419,"Continent":"K45","Bonus":3,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76855Z"},{"ID":14593,"Name":"077","Points":10083,"X":475,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768551Z"},{"ID":14594,"Name":"Szlachcic","Points":10280,"X":578,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":930720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768551Z"},{"ID":14595,"Name":"C 014 Ornontowice","Points":7343,"X":419,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768552Z"},{"ID":14596,"Name":"*013*","Points":8726,"X":622,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768553Z"},{"ID":14597,"Name":"Bagdad","Points":10654,"X":473,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768553Z"},{"ID":14598,"Name":"015. Carthago","Points":9295,"X":615,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768554Z"},{"ID":14599,"Name":"Essos","Points":6821,"X":480,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768554Z"},{"ID":14600,"Name":"Makalu","Points":9656,"X":380,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768555Z"},{"ID":14601,"Name":"K34 - [093] Before Land","Points":10259,"X":462,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768556Z"},{"ID":14602,"Name":"102 ***5a*** Wiƛnia","Points":10001,"X":540,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768556Z"},{"ID":14603,"Name":"Avanti!","Points":9950,"X":380,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768557Z"},{"ID":14604,"Name":"29 im BelaPorto","Points":9809,"X":594,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768557Z"},{"ID":14605,"Name":"Teby_15","Points":9638,"X":506,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768558Z"},{"ID":14606,"Name":"0011","Points":10322,"X":614,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768558Z"},{"ID":14607,"Name":"037 PotÄ™ĆŒny Dzban","Points":10478,"X":391,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768559Z"},{"ID":14608,"Name":"166 Ale mnie gƂówka boli","Points":9817,"X":388,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76856Z"},{"ID":14609,"Name":"Ręcznik do zmiany","Points":10495,"X":398,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76856Z"},{"ID":14610,"Name":"Ręcznik do zmiany","Points":10319,"X":401,"Y":434,"Continent":"K44","Bonus":1,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768561Z"},{"ID":14611,"Name":"033","Points":10019,"X":620,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768561Z"},{"ID":14612,"Name":"Belvedere 005","Points":10030,"X":579,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768562Z"},{"ID":14613,"Name":"063 - Wara***","Points":5940,"X":438,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768562Z"},{"ID":14614,"Name":"054","Points":10109,"X":568,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768563Z"},{"ID":14615,"Name":"CALL 992","Points":10311,"X":554,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768564Z"},{"ID":14616,"Name":"s181eo29","Points":10611,"X":386,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768564Z"},{"ID":14617,"Name":"South K35","Points":9809,"X":558,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768565Z"},{"ID":14618,"Name":"Knowhere","Points":10631,"X":377,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768565Z"},{"ID":14619,"Name":"Wioska barbarzyƄska","Points":10008,"X":406,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768566Z"},{"ID":14621,"Name":"101 SposobĂłw na","Points":10490,"X":399,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768566Z"},{"ID":14623,"Name":".achim.","Points":9726,"X":538,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768567Z"},{"ID":14624,"Name":"010","Points":10160,"X":623,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768568Z"},{"ID":14625,"Name":"011.xxx","Points":10146,"X":472,"Y":618,"Continent":"K64","Bonus":9,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768568Z"},{"ID":14626,"Name":"BoOmBaa..","Points":10247,"X":444,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768569Z"},{"ID":14627,"Name":"Jaaa","Points":10239,"X":608,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768569Z"},{"ID":14628,"Name":"Brat447","Points":9124,"X":379,"Y":512,"Continent":"K53","Bonus":4,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76857Z"},{"ID":14629,"Name":"Bagdad","Points":10654,"X":474,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768571Z"},{"ID":14630,"Name":"FAKE OR OFF","Points":9819,"X":437,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768571Z"},{"ID":14631,"Name":"0004","Points":11321,"X":532,"Y":615,"Continent":"K65","Bonus":7,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768572Z"},{"ID":14634,"Name":"0015","Points":10322,"X":616,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768572Z"},{"ID":14635,"Name":"K34 - [065] Before Land","Points":9847,"X":467,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768573Z"},{"ID":14636,"Name":"Bocianikson007","Points":9952,"X":609,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768574Z"},{"ID":14637,"Name":"021 PotÄ™ĆŒny Dzban","Points":6174,"X":394,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768574Z"},{"ID":14638,"Name":"006","Points":10495,"X":441,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768575Z"},{"ID":14639,"Name":"Wioska waldziu93","Points":10122,"X":404,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768575Z"},{"ID":14640,"Name":"K34 - [047] Before Land","Points":10259,"X":456,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768576Z"},{"ID":14641,"Name":"Lord Arsey KING","Points":6624,"X":586,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768576Z"},{"ID":14642,"Name":"SiƂa, Masa, RzeĆșba 02","Points":10495,"X":622,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768577Z"},{"ID":14643,"Name":"#018","Points":10393,"X":477,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768578Z"},{"ID":14644,"Name":"#007 taki agent","Points":10393,"X":467,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768578Z"},{"ID":14645,"Name":"CALL 923","Points":10311,"X":556,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768579Z"},{"ID":14646,"Name":"007 Roskilde","Points":9994,"X":603,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768579Z"},{"ID":14647,"Name":"Belvedere 006","Points":10273,"X":580,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76858Z"},{"ID":14648,"Name":"--004--","Points":10495,"X":432,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768581Z"},{"ID":14649,"Name":"Wioska naja1920ruch","Points":8963,"X":396,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768581Z"},{"ID":14650,"Name":"South K35","Points":10042,"X":558,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768582Z"},{"ID":14651,"Name":"[328] Chorągiewka na wietrze","Points":10411,"X":601,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768582Z"},{"ID":14652,"Name":"ZachĂłd - 008","Points":9796,"X":399,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768583Z"},{"ID":14653,"Name":"005.Botew","Points":10495,"X":599,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768583Z"},{"ID":14654,"Name":"Ręcznik do zmiany","Points":10289,"X":397,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768584Z"},{"ID":14655,"Name":"013","Points":10019,"X":506,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768584Z"},{"ID":14656,"Name":"Szulernia","Points":9981,"X":412,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768585Z"},{"ID":14657,"Name":"Konfederacja","Points":9782,"X":470,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768586Z"},{"ID":14658,"Name":"006","Points":8739,"X":401,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768586Z"},{"ID":14659,"Name":"Gattacka","Points":10384,"X":599,"Y":429,"Continent":"K45","Bonus":5,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768587Z"},{"ID":14660,"Name":"*INTERTWINED*","Points":9614,"X":514,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768587Z"},{"ID":14661,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768588Z"},{"ID":14662,"Name":"VN Ishida Mitsunari","Points":10119,"X":478,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768589Z"},{"ID":14663,"Name":"#026","Points":10393,"X":498,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768589Z"},{"ID":14664,"Name":"Wioska","Points":10222,"X":600,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76859Z"},{"ID":14665,"Name":"028","Points":9816,"X":480,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76859Z"},{"ID":14666,"Name":"Ręcznik do zmiany","Points":10160,"X":397,"Y":440,"Continent":"K43","Bonus":7,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768591Z"},{"ID":14667,"Name":"012","Points":10294,"X":620,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768591Z"},{"ID":14668,"Name":"Wioska","Points":10178,"X":384,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768592Z"},{"ID":14669,"Name":"albo jutro","Points":10052,"X":560,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768593Z"},{"ID":14670,"Name":"Wioska","Points":10222,"X":599,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768593Z"},{"ID":14671,"Name":"Wioska barbarzyƄska","Points":10068,"X":408,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768594Z"},{"ID":14672,"Name":"CALL 932","Points":10311,"X":554,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768594Z"},{"ID":14673,"Name":"# Szymi 9","Points":9873,"X":388,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768595Z"},{"ID":14674,"Name":"Wioska","Points":10178,"X":382,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768596Z"},{"ID":14675,"Name":"009. GĂłra Gram","Points":10237,"X":488,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768596Z"},{"ID":14676,"Name":"[340] Chorągiewka na wietrze","Points":10392,"X":588,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768597Z"},{"ID":14677,"Name":"WW1","Points":10019,"X":620,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768597Z"},{"ID":14678,"Name":"scoti","Points":10221,"X":486,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768598Z"},{"ID":14679,"Name":"00978","Points":9885,"X":462,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768598Z"},{"ID":14680,"Name":"-Miasto tonie","Points":9477,"X":517,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768599Z"},{"ID":14681,"Name":"ADEN","Points":10287,"X":526,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7686Z"},{"ID":14682,"Name":"003.","Points":10263,"X":563,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7686Z"},{"ID":14683,"Name":"15 Prawdy nie mĂłwi nikt","Points":3645,"X":620,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768601Z"},{"ID":14684,"Name":"Jaaa","Points":9851,"X":603,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768601Z"},{"ID":14685,"Name":"K34 - [086] Before Land","Points":10259,"X":451,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768602Z"},{"ID":14686,"Name":"A005","Points":10146,"X":614,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768603Z"},{"ID":14687,"Name":"Wioska barbarzyƄska","Points":10008,"X":408,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768603Z"},{"ID":14688,"Name":"#0030","Points":10495,"X":547,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768604Z"},{"ID":14689,"Name":"0022. C -","Points":10160,"X":621,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768604Z"},{"ID":14690,"Name":"Jaaa","Points":10495,"X":607,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768605Z"},{"ID":14691,"Name":"[0019]","Points":10495,"X":447,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768606Z"},{"ID":14692,"Name":".036.","Points":10503,"X":483,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768606Z"},{"ID":14693,"Name":"Land of Fire","Points":9486,"X":397,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768607Z"},{"ID":14695,"Name":"K34 - [079] Before Land","Points":10259,"X":464,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768608Z"},{"ID":14696,"Name":"W.181/09","Points":10242,"X":614,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768608Z"},{"ID":14697,"Name":"083","Points":9216,"X":471,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768609Z"},{"ID":14698,"Name":"027 Nilfgaard","Points":10263,"X":620,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76861Z"},{"ID":14699,"Name":"Marktoberdorf","Points":9835,"X":594,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768611Z"},{"ID":14700,"Name":"Wioska barbarzyƄska 008|","Points":9643,"X":575,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768612Z"},{"ID":14701,"Name":"A 003","Points":9725,"X":607,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768612Z"},{"ID":14702,"Name":"Wioska","Points":10178,"X":384,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768613Z"},{"ID":14703,"Name":"Wioska barbarzyƄska","Points":9659,"X":479,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768614Z"},{"ID":14704,"Name":"s181eo10","Points":9886,"X":391,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768615Z"},{"ID":14705,"Name":"Z barba 014","Points":3431,"X":401,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768615Z"},{"ID":14706,"Name":"0007","Points":9957,"X":441,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768616Z"},{"ID":14707,"Name":"008.xxx","Points":10146,"X":469,"Y":619,"Continent":"K64","Bonus":9,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768617Z"},{"ID":14708,"Name":"Wioska","Points":10178,"X":380,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768617Z"},{"ID":14709,"Name":"017.xxx","Points":9925,"X":469,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768618Z"},{"ID":14710,"Name":"117","Points":10311,"X":581,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768618Z"},{"ID":14711,"Name":"0023 Wioska barbarzyƄska","Points":4918,"X":424,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768619Z"},{"ID":14712,"Name":"600|428 Wioska barbarzyƄska19","Points":9790,"X":600,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768619Z"},{"ID":14713,"Name":"020","Points":10019,"X":487,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76862Z"},{"ID":14714,"Name":"Barba 5","Points":9814,"X":430,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768621Z"},{"ID":14715,"Name":"bucks x kamiiiru","Points":10971,"X":408,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768621Z"},{"ID":14716,"Name":"0021. C -","Points":10140,"X":620,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768622Z"},{"ID":14717,"Name":"Wioska barbarzyƄska 012|","Points":9582,"X":575,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768622Z"},{"ID":14718,"Name":"A.014","Points":10000,"X":600,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768623Z"},{"ID":14719,"Name":"0001","Points":10341,"X":598,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768623Z"},{"ID":14720,"Name":"006","Points":10019,"X":507,"Y":378,"Continent":"K35","Bonus":1,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768624Z"},{"ID":14721,"Name":"064","Points":9664,"X":475,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768624Z"},{"ID":14722,"Name":"*005 Vestmannaeyjar","Points":9873,"X":388,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768625Z"},{"ID":14723,"Name":"?+44 85 Miribel","Points":9849,"X":456,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768626Z"},{"ID":14724,"Name":"016.","Points":9870,"X":562,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768626Z"},{"ID":14725,"Name":"Jaaa","Points":10495,"X":601,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768627Z"},{"ID":14726,"Name":"0016 Bigi","Points":8327,"X":428,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768627Z"},{"ID":14727,"Name":"001","Points":10055,"X":618,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768628Z"},{"ID":14728,"Name":"0043","Points":9638,"X":622,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768628Z"},{"ID":14729,"Name":"#027.490|494","Points":9735,"X":609,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768629Z"},{"ID":14730,"Name":"156 Ale mnie gƂówka boli","Points":4934,"X":390,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76863Z"},{"ID":14731,"Name":"076. Utgard","Points":11678,"X":626,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76863Z"},{"ID":14732,"Name":"003","Points":10495,"X":564,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768631Z"},{"ID":14733,"Name":"0012","Points":10686,"X":387,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768631Z"},{"ID":14734,"Name":"Gryfios 019","Points":11888,"X":619,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768632Z"},{"ID":14735,"Name":"Wioska 012","Points":9761,"X":594,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768632Z"},{"ID":14736,"Name":"*INTERTWINED**","Points":9711,"X":517,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768633Z"},{"ID":14737,"Name":"0351","Points":10019,"X":444,"Y":604,"Continent":"K64","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768633Z"},{"ID":14738,"Name":"Hojo s Laboratory","Points":10083,"X":519,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768634Z"},{"ID":14739,"Name":"149 MIKOX 025","Points":9363,"X":592,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768634Z"},{"ID":14740,"Name":"Taran 007","Points":10311,"X":618,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768635Z"},{"ID":14741,"Name":"[022] Patayin ka","Points":10068,"X":599,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768636Z"},{"ID":14742,"Name":"Kentin ufam Tobie","Points":10000,"X":430,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768636Z"},{"ID":14743,"Name":"Belvedere 024","Points":9976,"X":582,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768637Z"},{"ID":14744,"Name":"Avanti!","Points":9950,"X":379,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768637Z"},{"ID":14745,"Name":"*Armagedon","Points":10068,"X":591,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768638Z"},{"ID":14746,"Name":"0006","Points":9967,"X":444,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768638Z"},{"ID":14747,"Name":"A001","Points":9818,"X":624,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768639Z"},{"ID":14748,"Name":"0005","Points":10703,"X":388,"Y":461,"Continent":"K43","Bonus":8,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768639Z"},{"ID":14749,"Name":"#019 M","Points":10971,"X":458,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76864Z"},{"ID":14750,"Name":"Darma","Points":9835,"X":423,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768641Z"},{"ID":14751,"Name":"0026","Points":10211,"X":559,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768641Z"},{"ID":14752,"Name":"0008 JacekDD","Points":10365,"X":427,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768642Z"},{"ID":14753,"Name":"050 - A02.***","Points":10495,"X":439,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768642Z"},{"ID":14754,"Name":"Ręcznik do zmiany","Points":10495,"X":401,"Y":432,"Continent":"K44","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768643Z"},{"ID":14755,"Name":"160 Ale mnie gƂówka boli","Points":10628,"X":387,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768644Z"},{"ID":14756,"Name":"599|426 012","Points":10012,"X":599,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768644Z"},{"ID":14757,"Name":"04. Gladiolus Amicitia","Points":10495,"X":524,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768645Z"},{"ID":14758,"Name":"0637","Points":10019,"X":437,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768645Z"},{"ID":14759,"Name":"Gryfios 007","Points":10559,"X":617,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768646Z"},{"ID":14760,"Name":"W.181/23","Points":10242,"X":617,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768647Z"},{"ID":14761,"Name":"s181eo30","Points":10595,"X":390,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768647Z"},{"ID":14762,"Name":"Midgard","Points":10068,"X":533,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768648Z"},{"ID":14764,"Name":"ƚmieszki","Points":9046,"X":533,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768648Z"},{"ID":14765,"Name":"Zeta Reticuli S","Points":11188,"X":413,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768649Z"},{"ID":14766,"Name":"FKG 01-11","Points":9835,"X":422,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768649Z"},{"ID":14767,"Name":"Wioska barbarzyƄska","Points":10068,"X":404,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76865Z"},{"ID":14768,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768651Z"},{"ID":14769,"Name":"Ręcznik do zmiany","Points":10160,"X":400,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768651Z"},{"ID":14771,"Name":"A0247","Points":10362,"X":379,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768652Z"},{"ID":14772,"Name":"#0022","Points":6513,"X":523,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768652Z"},{"ID":14773,"Name":"Wioska","Points":6927,"X":383,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768653Z"},{"ID":14774,"Name":"085","Points":9661,"X":599,"Y":567,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768653Z"},{"ID":14775,"Name":"Zeta Reticuli S","Points":11321,"X":412,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768654Z"},{"ID":14776,"Name":"PƂocicz","Points":7560,"X":412,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768655Z"},{"ID":14777,"Name":"Aerith House","Points":10495,"X":520,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768655Z"},{"ID":14778,"Name":"xxx","Points":7058,"X":514,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768656Z"},{"ID":14779,"Name":"0099","Points":10019,"X":454,"Y":612,"Continent":"K64","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768656Z"},{"ID":14780,"Name":"029","Points":10311,"X":539,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768657Z"},{"ID":14781,"Name":"ADEN","Points":10232,"X":523,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768658Z"},{"ID":14782,"Name":"SiƂa, Masa, RzeĆșba 07","Points":9509,"X":621,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768658Z"},{"ID":14783,"Name":"Horyzont zdarzeƄ","Points":10083,"X":536,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768659Z"},{"ID":14784,"Name":"001","Points":9835,"X":422,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768659Z"},{"ID":14785,"Name":"Bagdad","Points":10654,"X":478,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76866Z"},{"ID":14786,"Name":"Ręcznik do zmiany","Points":10160,"X":399,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76866Z"},{"ID":14787,"Name":"K34 - [120] Before Land","Points":10259,"X":449,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768661Z"},{"ID":14788,"Name":"Myk i do kieszonki","Points":9799,"X":383,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768662Z"},{"ID":14789,"Name":"Myk i do kieszonki","Points":9799,"X":379,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768662Z"},{"ID":14790,"Name":"[223] WEST KA","Points":10052,"X":611,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768663Z"},{"ID":14791,"Name":"034.","Points":10226,"X":481,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768663Z"},{"ID":14792,"Name":"A0223","Points":10362,"X":376,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768664Z"},{"ID":14794,"Name":"14 im Klimowa","Points":9809,"X":595,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768664Z"},{"ID":14795,"Name":"ADEN","Points":10228,"X":521,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768665Z"},{"ID":14796,"Name":"034 PotÄ™ĆŒny Dzban","Points":10484,"X":391,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768666Z"},{"ID":14797,"Name":"Konfederacja +","Points":10336,"X":463,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768666Z"},{"ID":14798,"Name":"Darma","Points":9835,"X":428,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768667Z"},{"ID":14799,"Name":"[210] WEST","Points":10232,"X":611,"Y":450,"Continent":"K46","Bonus":7,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768667Z"},{"ID":14800,"Name":"020","Points":9976,"X":431,"Y":490,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768668Z"},{"ID":14801,"Name":"004","Points":9819,"X":620,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768668Z"},{"ID":14802,"Name":"A0047","Points":10362,"X":381,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768669Z"},{"ID":14803,"Name":"Darma","Points":9835,"X":427,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76867Z"},{"ID":14804,"Name":"K34 - [089] Before Land","Points":10259,"X":457,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76867Z"},{"ID":14805,"Name":"rakieta 009","Points":5632,"X":619,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768671Z"},{"ID":14806,"Name":"003","Points":9937,"X":614,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768671Z"},{"ID":14807,"Name":"31 im Lorda Mikiego","Points":9809,"X":561,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768672Z"},{"ID":14808,"Name":"Yogi","Points":10019,"X":546,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768673Z"},{"ID":14809,"Name":"Wioska barbarzyƄska","Points":8171,"X":390,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768673Z"},{"ID":14810,"Name":"Kiedyƛ Wielki Wojownik","Points":10611,"X":389,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768674Z"},{"ID":14811,"Name":"12 Vanitas","Points":9687,"X":618,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768674Z"},{"ID":14812,"Name":"#023","Points":10393,"X":477,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768675Z"},{"ID":14813,"Name":"#0005 Kumogakure","Points":9761,"X":529,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768675Z"},{"ID":14814,"Name":"0006","Points":9993,"X":425,"Y":407,"Continent":"K44","Bonus":1,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768676Z"},{"ID":14815,"Name":"*INTERTWINED*","Points":9711,"X":513,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768677Z"},{"ID":14816,"Name":"#001 A","Points":10495,"X":460,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768677Z"},{"ID":14817,"Name":"008","Points":9986,"X":621,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768678Z"},{"ID":14818,"Name":"A.014","Points":10495,"X":416,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768678Z"},{"ID":14819,"Name":"A.008","Points":9353,"X":411,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768679Z"},{"ID":14820,"Name":"#004","Points":10393,"X":470,"Y":616,"Continent":"K64","Bonus":2,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768679Z"},{"ID":14821,"Name":"Szlachcic","Points":9835,"X":589,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76868Z"},{"ID":14822,"Name":"0135","Points":10083,"X":453,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768681Z"},{"ID":14823,"Name":"Kentin ufam Tobie","Points":10000,"X":432,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768681Z"},{"ID":14824,"Name":"#007 A","Points":10495,"X":464,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768682Z"},{"ID":14825,"Name":"008 Hokkaido","Points":10495,"X":623,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768682Z"},{"ID":14826,"Name":"[327] Chorągiewka na wietrze","Points":10400,"X":602,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768683Z"},{"ID":14827,"Name":"151 MIKOX 027","Points":9235,"X":591,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768684Z"},{"ID":14828,"Name":"020 PotÄ™ĆŒny Dzban","Points":10479,"X":393,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768685Z"},{"ID":14830,"Name":"05. Prompto Argentum","Points":10495,"X":526,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768685Z"},{"ID":14831,"Name":"Bagdad","Points":10654,"X":480,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768686Z"},{"ID":14832,"Name":"*INTERTWINED*","Points":9711,"X":507,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768687Z"},{"ID":14833,"Name":"Feed me more 008","Points":10348,"X":488,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768688Z"},{"ID":14834,"Name":"Czekam na VS","Points":10495,"X":535,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768688Z"},{"ID":14835,"Name":"088 Wioska barbarzyƄska","Points":9380,"X":594,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768689Z"},{"ID":14836,"Name":"010","Points":9650,"X":622,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76869Z"},{"ID":14837,"Name":"K34 - [073] Before Land","Points":10259,"X":458,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768691Z"},{"ID":14838,"Name":"Jaaa","Points":10548,"X":583,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768692Z"},{"ID":14839,"Name":"Nope","Points":10083,"X":392,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768692Z"},{"ID":14840,"Name":"Wioska barbarzyƄska","Points":10068,"X":404,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768693Z"},{"ID":14841,"Name":"South K45","Points":10042,"X":592,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768693Z"},{"ID":14842,"Name":"Bagdad","Points":10654,"X":472,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768694Z"},{"ID":14843,"Name":"0082","Points":10160,"X":458,"Y":616,"Continent":"K64","Bonus":5,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768695Z"},{"ID":14844,"Name":"[134] North","Points":10068,"X":582,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768695Z"},{"ID":14845,"Name":"Dextrose","Points":10495,"X":624,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768696Z"},{"ID":14846,"Name":"Wioska barbarzyƄska","Points":10078,"X":383,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768696Z"},{"ID":14847,"Name":"SoƂtys Twojej Wsi","Points":9627,"X":438,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768697Z"},{"ID":14849,"Name":"A.025","Points":9415,"X":406,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768697Z"},{"ID":14850,"Name":"077","Points":10311,"X":586,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768698Z"},{"ID":14851,"Name":"Ręcznik do zmiany","Points":10050,"X":395,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768698Z"},{"ID":14852,"Name":"Wioska mateuszek1123","Points":9013,"X":553,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768699Z"},{"ID":14853,"Name":"078","Points":6869,"X":621,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7687Z"},{"ID":14854,"Name":"0020","Points":10336,"X":621,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7687Z"},{"ID":14855,"Name":"0044","Points":9905,"X":619,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768701Z"},{"ID":14856,"Name":"Wioska","Points":10178,"X":385,"Y":545,"Continent":"K53","Bonus":6,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768701Z"},{"ID":14857,"Name":"007","Points":10160,"X":621,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768702Z"},{"ID":14858,"Name":"z 010","Points":10474,"X":561,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768702Z"},{"ID":14859,"Name":"*INTERTWINED*","Points":9711,"X":513,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768703Z"},{"ID":14860,"Name":"Nowa 03","Points":9824,"X":605,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768704Z"},{"ID":14861,"Name":"Wioska 026","Points":9761,"X":597,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768704Z"},{"ID":14862,"Name":"072","Points":9897,"X":618,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768705Z"},{"ID":14863,"Name":"ADEN","Points":9737,"X":522,"Y":382,"Continent":"K35","Bonus":5,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768705Z"},{"ID":14864,"Name":"CiÄ™ĆŒka powieka","Points":10311,"X":565,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768706Z"},{"ID":14865,"Name":"EKG 024","Points":9992,"X":486,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768707Z"},{"ID":14866,"Name":"Myk i do kieszonki","Points":9799,"X":380,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768707Z"},{"ID":14867,"Name":"W.181/11","Points":10242,"X":617,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768708Z"},{"ID":14868,"Name":"Taran","Points":9492,"X":555,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768708Z"},{"ID":14869,"Name":"Myk i do kieszonki","Points":9799,"X":381,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768709Z"},{"ID":14870,"Name":"*INTERTWINED**","Points":8963,"X":509,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768709Z"},{"ID":14871,"Name":"makelovenotwar","Points":10068,"X":387,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76871Z"},{"ID":14872,"Name":"0027. C -","Points":8601,"X":624,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768711Z"},{"ID":14874,"Name":"103 Cvrvvus","Points":10104,"X":396,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768711Z"},{"ID":14875,"Name":"SoƂtys Wsi Twin1992","Points":9293,"X":438,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768712Z"},{"ID":14876,"Name":"0028","Points":10211,"X":561,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768712Z"},{"ID":14877,"Name":"Jaaa","Points":10474,"X":572,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768713Z"},{"ID":14878,"Name":"028 - Manchester","Points":10495,"X":407,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768714Z"},{"ID":14879,"Name":"020","Points":6736,"X":605,"Y":435,"Continent":"K46","Bonus":3,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768714Z"},{"ID":14880,"Name":"K34 - [007] Before Land","Points":10259,"X":447,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768715Z"},{"ID":14881,"Name":"ADEN","Points":10338,"X":522,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768715Z"},{"ID":14882,"Name":"0004","Points":10203,"X":593,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768716Z"},{"ID":14883,"Name":"010","Points":9761,"X":501,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768716Z"},{"ID":14884,"Name":"Sawanna","Points":9752,"X":380,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768717Z"},{"ID":14885,"Name":"0011. C - Belatona","Points":10285,"X":624,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768717Z"},{"ID":14886,"Name":"Taran 001","Points":10311,"X":620,"Y":531,"Continent":"K56","Bonus":5,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768718Z"},{"ID":14887,"Name":"Gryfios 014","Points":12002,"X":617,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768719Z"},{"ID":14888,"Name":"Bagdad","Points":10654,"X":474,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768719Z"},{"ID":14889,"Name":"#0002","Points":9811,"X":517,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76872Z"},{"ID":14890,"Name":"=007= Bez koƂa zapasowego","Points":10365,"X":612,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76872Z"},{"ID":14891,"Name":"001","Points":8969,"X":569,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":849070464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768721Z"},{"ID":14892,"Name":"Gasherbrum II","Points":9835,"X":378,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768721Z"},{"ID":14893,"Name":"bucks x kamiiiru","Points":10384,"X":409,"Y":422,"Continent":"K44","Bonus":3,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768722Z"},{"ID":14894,"Name":"004","Points":10311,"X":580,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768722Z"},{"ID":14895,"Name":"Gattacka","Points":9367,"X":600,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768723Z"},{"ID":14896,"Name":"- 015 -","Points":10000,"X":546,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768724Z"},{"ID":14897,"Name":"Myk i do kieszonki","Points":9799,"X":376,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768724Z"},{"ID":14898,"Name":"s181eo06","Points":9886,"X":391,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768725Z"},{"ID":14899,"Name":"Ulu-mulu","Points":9708,"X":437,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768725Z"},{"ID":14900,"Name":"Wioska barbarzyƄska","Points":9628,"X":587,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768726Z"},{"ID":14901,"Name":"Wioska (008)","Points":8531,"X":619,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768726Z"},{"ID":14902,"Name":"*INTERTWINED*","Points":9711,"X":511,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768727Z"},{"ID":14903,"Name":"043.","Points":10237,"X":480,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768728Z"},{"ID":14904,"Name":"068","Points":10311,"X":586,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768728Z"},{"ID":14906,"Name":"0045","Points":9572,"X":620,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768729Z"},{"ID":14907,"Name":"Ręcznik do zmiany","Points":10160,"X":397,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768729Z"},{"ID":14909,"Name":"072","Points":10311,"X":586,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76873Z"},{"ID":14910,"Name":"Wioska","Points":10178,"X":382,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76873Z"},{"ID":14911,"Name":"Wioska barbarzyƄska","Points":9835,"X":416,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768731Z"},{"ID":14912,"Name":"Wioska vequs","Points":10252,"X":405,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768732Z"},{"ID":14913,"Name":"SINGED X SZEF","Points":9994,"X":494,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768732Z"},{"ID":14915,"Name":"049 Zimny LehosƂaw","Points":8621,"X":389,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768733Z"},{"ID":14916,"Name":"K34 - [027] Before Land","Points":10259,"X":465,"Y":383,"Continent":"K34","Bonus":9,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768733Z"},{"ID":14917,"Name":"FAKE OR OFF","Points":10025,"X":443,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768734Z"},{"ID":14918,"Name":"Sam goroli ciulaja","Points":9701,"X":386,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768734Z"},{"ID":14919,"Name":"Ulu-mulu","Points":9134,"X":432,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768735Z"},{"ID":14920,"Name":"Tanjirou","Points":10495,"X":574,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768736Z"},{"ID":14921,"Name":"Brat447","Points":10495,"X":375,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768736Z"},{"ID":14922,"Name":"Land of Fire","Points":9491,"X":394,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768737Z"},{"ID":14923,"Name":"Zeta Reticuli S","Points":10997,"X":414,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768737Z"},{"ID":14925,"Name":"Avanti!","Points":9950,"X":378,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768738Z"},{"ID":14926,"Name":"Malinki 1","Points":6924,"X":621,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768738Z"},{"ID":14927,"Name":"FKG 01-19","Points":9835,"X":415,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768739Z"},{"ID":14928,"Name":"Wioska","Points":5902,"X":388,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76874Z"},{"ID":14929,"Name":"K34 - [043] Before Land","Points":10126,"X":462,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76874Z"},{"ID":14930,"Name":"006","Points":9922,"X":620,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768741Z"},{"ID":14931,"Name":"K34 - [057] Before Land","Points":10126,"X":456,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768741Z"},{"ID":14932,"Name":"Bagdad","Points":10654,"X":472,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768742Z"},{"ID":14933,"Name":"SkƂad","Points":10249,"X":512,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768743Z"},{"ID":14934,"Name":"A022","Points":10354,"X":620,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768743Z"},{"ID":14935,"Name":"Wioska 036","Points":9761,"X":591,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768744Z"},{"ID":14936,"Name":"Land of Fire","Points":9491,"X":395,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768744Z"},{"ID":14937,"Name":"Horyzont zdarzeƄ","Points":10019,"X":540,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768745Z"},{"ID":14938,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":512,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768745Z"},{"ID":14939,"Name":".035.","Points":10252,"X":486,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768746Z"},{"ID":14941,"Name":"***9ebaabc9d*** Granat","Points":10068,"X":550,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768747Z"},{"ID":14942,"Name":"Land of Fire","Points":9485,"X":399,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768747Z"},{"ID":14944,"Name":"Wioska 017","Points":9761,"X":592,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768748Z"},{"ID":14945,"Name":"A0008","Points":10362,"X":378,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768748Z"},{"ID":14946,"Name":"004 Wioska barbarzyƄska","Points":10068,"X":528,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768749Z"},{"ID":14947,"Name":"165","Points":10311,"X":557,"Y":390,"Continent":"K35","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76875Z"},{"ID":14949,"Name":"Jaaa","Points":10476,"X":610,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76875Z"},{"ID":14950,"Name":"0356","Points":10083,"X":446,"Y":607,"Continent":"K64","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768751Z"},{"ID":14951,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768751Z"},{"ID":14952,"Name":"060 - Ukulele","Points":4878,"X":424,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768752Z"},{"ID":14953,"Name":"0469","Points":10083,"X":449,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768752Z"},{"ID":14954,"Name":"0139","Points":10297,"X":454,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768753Z"},{"ID":14955,"Name":"Wioska barbarzyƄska","Points":10073,"X":387,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768754Z"},{"ID":14956,"Name":"VN Aehelfaed","Points":9651,"X":466,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768754Z"},{"ID":14957,"Name":"Wioska barbarzyƄska","Points":9842,"X":381,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768755Z"},{"ID":14958,"Name":"Wioska barbarzyƄska","Points":9647,"X":482,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768755Z"},{"ID":14959,"Name":"097 Wioska barbarzyƄska","Points":8841,"X":595,"Y":422,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768756Z"},{"ID":14960,"Name":"030","Points":10140,"X":503,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768756Z"},{"ID":14961,"Name":"CALL 925","Points":10311,"X":508,"Y":623,"Continent":"K65","Bonus":1,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768757Z"},{"ID":14962,"Name":"BoOmBaa..","Points":7417,"X":443,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768757Z"},{"ID":14963,"Name":"7.62 mm","Points":6645,"X":484,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768758Z"},{"ID":14964,"Name":"#0008 Kiedyƛ","Points":10005,"X":490,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768759Z"},{"ID":14965,"Name":"*014*","Points":8480,"X":609,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76876Z"},{"ID":14966,"Name":"Feed me more 015","Points":9818,"X":484,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768761Z"},{"ID":14967,"Name":"Z barba 008","Points":10495,"X":405,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768761Z"},{"ID":14968,"Name":"Taran","Points":9443,"X":548,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768762Z"},{"ID":14969,"Name":"010.","Points":9923,"X":564,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768763Z"},{"ID":14970,"Name":"012.xxx","Points":10146,"X":465,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768764Z"},{"ID":14971,"Name":"Wioska","Points":10222,"X":601,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768764Z"},{"ID":14972,"Name":"008","Points":9835,"X":601,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768765Z"},{"ID":14973,"Name":"Nic dwa razy","Points":9976,"X":573,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768766Z"},{"ID":14974,"Name":"Gravity","Points":9489,"X":404,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768767Z"},{"ID":14975,"Name":"008.","Points":10150,"X":565,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768767Z"},{"ID":14976,"Name":"Pobozowisko","Points":10971,"X":408,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768768Z"},{"ID":14977,"Name":"ADEN","Points":10287,"X":527,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768769Z"},{"ID":14978,"Name":"0426","Points":10019,"X":548,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768769Z"},{"ID":14979,"Name":"Jaaa","Points":10478,"X":617,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76877Z"},{"ID":14980,"Name":"Warzywniak 019","Points":2662,"X":449,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76877Z"},{"ID":14981,"Name":"Szulernia","Points":9981,"X":414,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768771Z"},{"ID":14982,"Name":"016.xxx","Points":10152,"X":469,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768771Z"},{"ID":14983,"Name":"005","Points":9744,"X":401,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768772Z"},{"ID":14984,"Name":"0357","Points":10083,"X":444,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768773Z"},{"ID":14985,"Name":"Westcoast.016","Points":10178,"X":391,"Y":439,"Continent":"K43","Bonus":6,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768773Z"},{"ID":14986,"Name":"000","Points":9883,"X":613,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768774Z"},{"ID":14988,"Name":"065","Points":10030,"X":567,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768774Z"},{"ID":14989,"Name":"Myk i do kieszonki","Points":9799,"X":377,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768775Z"},{"ID":14990,"Name":"Wioska","Points":8640,"X":383,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768775Z"},{"ID":14991,"Name":"Avanti!","Points":9950,"X":376,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768776Z"},{"ID":14992,"Name":"Brat447","Points":10495,"X":376,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768776Z"},{"ID":14993,"Name":"Jaaa","Points":10478,"X":574,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768777Z"},{"ID":14994,"Name":"#022 A","Points":10495,"X":458,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768777Z"},{"ID":14995,"Name":"037 - two","Points":10495,"X":416,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768778Z"},{"ID":14996,"Name":"ADEN","Points":9183,"X":528,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768779Z"},{"ID":14997,"Name":"Jehu_Kingdom_33_","Points":9993,"X":616,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768779Z"},{"ID":14999,"Name":"Wioska (043)","Points":10026,"X":619,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76878Z"},{"ID":15000,"Name":"Czekam na VS","Points":10495,"X":538,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76878Z"},{"ID":15001,"Name":"A.019","Points":9535,"X":409,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768781Z"},{"ID":15002,"Name":"018.xxx","Points":10146,"X":467,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768781Z"},{"ID":15003,"Name":"006.xxx","Points":9925,"X":472,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768782Z"},{"ID":15004,"Name":"161 Ale mnie gƂówka boli","Points":10495,"X":386,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768783Z"},{"ID":15006,"Name":".achim.","Points":9723,"X":529,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768783Z"},{"ID":15007,"Name":"011","Points":9854,"X":623,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768784Z"},{"ID":15008,"Name":"08. Cindy Aurum","Points":10495,"X":520,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768784Z"},{"ID":15009,"Name":"A012","Points":10357,"X":613,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768785Z"},{"ID":15010,"Name":"South K45","Points":9257,"X":591,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768786Z"},{"ID":15011,"Name":"P!nk","Points":10224,"X":580,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768786Z"},{"ID":15012,"Name":"Wioska barbarzyƄska","Points":8966,"X":598,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768787Z"},{"ID":15013,"Name":"Wioska barbarzyƄska","Points":10487,"X":610,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768787Z"},{"ID":15014,"Name":"005. Dor Daedeloth","Points":10233,"X":489,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768788Z"},{"ID":15015,"Name":"068 Jokohama","Points":10495,"X":620,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768788Z"},{"ID":15016,"Name":"K34 - [052] Before Land","Points":10126,"X":454,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768789Z"},{"ID":15017,"Name":"Bagdad","Points":10654,"X":473,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76879Z"},{"ID":15018,"Name":"0004","Points":9993,"X":425,"Y":408,"Continent":"K44","Bonus":7,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76879Z"},{"ID":15019,"Name":"/05 (Mati72611)","Points":9835,"X":408,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768791Z"},{"ID":15020,"Name":"008","Points":9761,"X":500,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768791Z"},{"ID":15021,"Name":"Z barba 016","Points":6878,"X":401,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768792Z"},{"ID":15022,"Name":"Gryfios 006","Points":10495,"X":617,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768792Z"},{"ID":15023,"Name":"ADEN","Points":9737,"X":525,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768793Z"},{"ID":15024,"Name":"054 - GoldFaber","Points":9678,"X":420,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768793Z"},{"ID":15025,"Name":"Kentin ufam Tobie","Points":10000,"X":389,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768794Z"},{"ID":15026,"Name":"Planeta Vegeta","Points":10008,"X":410,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768795Z"},{"ID":15027,"Name":"Wioska barbarzyƄska","Points":10478,"X":609,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768795Z"},{"ID":15028,"Name":"Taran","Points":9452,"X":551,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768796Z"},{"ID":15029,"Name":"Wioska Altivo","Points":9994,"X":572,"Y":442,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768796Z"},{"ID":15030,"Name":"087","Points":9087,"X":599,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768797Z"},{"ID":15031,"Name":"Wioska-003-","Points":9379,"X":541,"Y":385,"Continent":"K35","Bonus":3,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768797Z"},{"ID":15032,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":527,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768798Z"},{"ID":15033,"Name":"#022","Points":10393,"X":467,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768798Z"},{"ID":15034,"Name":"Carnagos","Points":9761,"X":604,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768799Z"},{"ID":15035,"Name":"Lord Arsey KING","Points":8259,"X":582,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768799Z"},{"ID":15036,"Name":"K2.","Points":9557,"X":376,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7688Z"},{"ID":15037,"Name":"019","Points":10077,"X":613,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768801Z"},{"ID":15038,"Name":"Teby_21","Points":9638,"X":503,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768801Z"},{"ID":15039,"Name":"Pf Konfederacja","Points":9938,"X":496,"Y":489,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768802Z"},{"ID":15040,"Name":"SINGED X SZEF","Points":9994,"X":488,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768802Z"},{"ID":15041,"Name":"KONFA TO MARKA, NARKA","Points":10495,"X":401,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768803Z"},{"ID":15042,"Name":"039- Mroczna Osada","Points":12154,"X":612,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768803Z"},{"ID":15043,"Name":"Avanti!","Points":9950,"X":378,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768804Z"},{"ID":15044,"Name":"003 Sir DĆŒony","Points":10478,"X":390,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768805Z"},{"ID":15045,"Name":"Bagdad","Points":10375,"X":472,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768805Z"},{"ID":15046,"Name":"Wioska","Points":10178,"X":385,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768806Z"},{"ID":15047,"Name":"Wioska barbarzyƄska","Points":10484,"X":402,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768806Z"},{"ID":15048,"Name":"Kentin ufam Tobie","Points":10078,"X":431,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768807Z"},{"ID":15049,"Name":"Knowhere","Points":10452,"X":390,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768808Z"},{"ID":15050,"Name":"001","Points":9031,"X":557,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768808Z"},{"ID":15051,"Name":"Darma","Points":9835,"X":428,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768809Z"},{"ID":15052,"Name":"People Are Strange","Points":9501,"X":597,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768809Z"},{"ID":15053,"Name":"150 MIKOX 026","Points":8971,"X":593,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76881Z"},{"ID":15054,"Name":"*INTERTWINED*","Points":9711,"X":516,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76881Z"},{"ID":15055,"Name":"Jaaa","Points":10061,"X":580,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768811Z"},{"ID":15056,"Name":"A0037","Points":10362,"X":381,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768812Z"},{"ID":15057,"Name":"007","Points":10019,"X":505,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768812Z"},{"ID":15058,"Name":"South K35","Points":9809,"X":558,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768813Z"},{"ID":15059,"Name":"A021","Points":9925,"X":510,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768813Z"},{"ID":15060,"Name":"0048 K55 and987 OZDR","Points":9899,"X":501,"Y":554,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768814Z"},{"ID":15061,"Name":"Teby_20","Points":9638,"X":505,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768814Z"},{"ID":15062,"Name":"A0048","Points":10362,"X":378,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768815Z"},{"ID":15063,"Name":"=015= Wioska barbarzyƄska","Points":10365,"X":612,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768815Z"},{"ID":15064,"Name":"Bagdad","Points":10654,"X":478,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768816Z"},{"ID":15065,"Name":"ZƂote tarasy","Points":9899,"X":576,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768816Z"},{"ID":15066,"Name":"kathare","Points":9872,"X":548,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768817Z"},{"ID":15067,"Name":"WW2","Points":9146,"X":621,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768817Z"},{"ID":15068,"Name":"Horyzont zdarzeƄ","Points":9995,"X":513,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768818Z"},{"ID":15069,"Name":"SINGED X SZEF","Points":9994,"X":491,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768818Z"},{"ID":15070,"Name":"Wioska","Points":10178,"X":383,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768819Z"},{"ID":15072,"Name":"Ręcznik do zmiany","Points":10160,"X":396,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76882Z"},{"ID":15073,"Name":"CALL 943","Points":10311,"X":553,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76882Z"},{"ID":15074,"Name":"009","Points":9828,"X":623,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768821Z"},{"ID":15075,"Name":"Land of Fire","Points":9617,"X":388,"Y":451,"Continent":"K43","Bonus":2,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768821Z"},{"ID":15076,"Name":"100","Points":8380,"X":449,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768822Z"},{"ID":15077,"Name":"K34 - [041] Before Land","Points":10259,"X":463,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768822Z"},{"ID":15078,"Name":"0007","Points":10252,"X":555,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768823Z"},{"ID":15079,"Name":"SiƂa, Masa, RzeĆșba 03","Points":10362,"X":623,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768823Z"},{"ID":15080,"Name":"Feed me more 001","Points":10146,"X":495,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768824Z"},{"ID":15081,"Name":"K34 - [055] Before Land","Points":9924,"X":461,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768824Z"},{"ID":15082,"Name":"*002*","Points":8883,"X":613,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768825Z"},{"ID":15083,"Name":"R-3","Points":9013,"X":555,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768826Z"},{"ID":15084,"Name":"038","Points":10654,"X":433,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768826Z"},{"ID":15085,"Name":"0005 MzM","Points":9630,"X":602,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768827Z"},{"ID":15086,"Name":"Ręcznik do zmiany","Points":10252,"X":399,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768827Z"},{"ID":15087,"Name":"Jaaa","Points":10261,"X":617,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768828Z"},{"ID":15088,"Name":"Wioska barbarzyƄska","Points":10208,"X":382,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768828Z"},{"ID":15089,"Name":"Jastrowie","Points":7651,"X":398,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768829Z"},{"ID":15090,"Name":"C002","Points":10479,"X":573,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76883Z"},{"ID":15091,"Name":"143 MIKOX 011","Points":10001,"X":594,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76883Z"},{"ID":15092,"Name":"Teby_19","Points":9638,"X":504,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768831Z"},{"ID":15093,"Name":"Lord Arsey KING","Points":10285,"X":584,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768831Z"},{"ID":15094,"Name":"018 Nie mam pomysƂu","Points":6757,"X":393,"Y":564,"Continent":"K53","Bonus":3,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768832Z"},{"ID":15095,"Name":"A0031","Points":10362,"X":383,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768833Z"},{"ID":15096,"Name":"--005--","Points":10495,"X":426,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768834Z"},{"ID":15097,"Name":"030 Atlanta","Points":10495,"X":436,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768834Z"},{"ID":15098,"Name":"A0018","Points":10362,"X":382,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768835Z"},{"ID":15099,"Name":"Bagdad","Points":10654,"X":477,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768836Z"},{"ID":15100,"Name":"Wioska barbarzyƄska","Points":9445,"X":484,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768837Z"},{"ID":15101,"Name":"Kentin ufam Tobie","Points":10000,"X":431,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768838Z"},{"ID":15102,"Name":"Lord Arsey KING","Points":9536,"X":588,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768839Z"},{"ID":15103,"Name":"K34 - [029] Before Land","Points":10259,"X":462,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768839Z"},{"ID":15104,"Name":"#003 A","Points":10019,"X":462,"Y":618,"Continent":"K64","Bonus":4,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76884Z"},{"ID":15105,"Name":"001","Points":9761,"X":397,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768841Z"},{"ID":15106,"Name":"***5b*** Czereƛnia","Points":10068,"X":541,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768842Z"},{"ID":15107,"Name":"HoƂopole","Points":9976,"X":500,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768842Z"},{"ID":15108,"Name":"Alfa","Points":8958,"X":607,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768843Z"},{"ID":15109,"Name":"PiekƂo to inni","Points":10160,"X":486,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768844Z"},{"ID":15110,"Name":"Lędyczek","Points":9811,"X":401,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768844Z"},{"ID":15111,"Name":"Wyzima","Points":10495,"X":497,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768845Z"},{"ID":15112,"Name":"Pod","Points":9570,"X":589,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768846Z"},{"ID":15113,"Name":"A.016","Points":10000,"X":603,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768846Z"},{"ID":15114,"Name":"053 - Mleko","Points":8638,"X":423,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768847Z"},{"ID":15115,"Name":"Napewno to nie jest off","Points":10495,"X":496,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768847Z"},{"ID":15116,"Name":"0046","Points":9712,"X":619,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768848Z"},{"ID":15117,"Name":"Delta","Points":8665,"X":608,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768848Z"},{"ID":15118,"Name":"0026 XXARDASS","Points":6628,"X":433,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768849Z"},{"ID":15121,"Name":"014. Lilybaeum","Points":9179,"X":619,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768849Z"},{"ID":15123,"Name":"C Zach 004 Ɓabędy","Points":7664,"X":404,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76885Z"},{"ID":15124,"Name":"A0152","Points":10362,"X":379,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76885Z"},{"ID":15125,"Name":"SsSs","Points":10139,"X":392,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768851Z"},{"ID":15126,"Name":"+44 60 Lyon Montchat","Points":9763,"X":408,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768852Z"},{"ID":15127,"Name":"038 PotÄ™ĆŒny Dzban","Points":5411,"X":391,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768852Z"},{"ID":15128,"Name":"162 Ale mnie gƂówka boli","Points":10636,"X":386,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768853Z"},{"ID":15129,"Name":"s181eo19","Points":9886,"X":383,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768853Z"},{"ID":15130,"Name":"(005)","Points":9912,"X":412,"Y":533,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768854Z"},{"ID":15131,"Name":"Ręcznik do zmiany","Points":10319,"X":393,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768854Z"},{"ID":15133,"Name":"wioska 4","Points":7871,"X":624,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768855Z"},{"ID":15134,"Name":"Wioska barbarzyƄska","Points":10484,"X":381,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768856Z"},{"ID":15135,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":514,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768856Z"},{"ID":15136,"Name":"A.015","Points":10093,"X":405,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768857Z"},{"ID":15137,"Name":"0122","Points":10019,"X":448,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768857Z"},{"ID":15138,"Name":"Ulu-mulu","Points":11678,"X":436,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768858Z"},{"ID":15140,"Name":"A.021","Points":8828,"X":414,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768858Z"},{"ID":15141,"Name":"Brat447","Points":10479,"X":386,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768859Z"},{"ID":15142,"Name":"Pobozowisko","Points":10955,"X":415,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768859Z"},{"ID":15143,"Name":"[113]","Points":9904,"X":557,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76886Z"},{"ID":15144,"Name":"FKG 01-21","Points":9835,"X":419,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768861Z"},{"ID":15145,"Name":"007","Points":10019,"X":400,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768861Z"},{"ID":15146,"Name":"190","Points":10311,"X":569,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768862Z"},{"ID":15147,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768862Z"},{"ID":15148,"Name":"#0005","Points":10495,"X":544,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768863Z"},{"ID":15149,"Name":"A017","Points":9925,"X":516,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768863Z"},{"ID":15150,"Name":"Pobozowisko","Points":10542,"X":417,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768864Z"},{"ID":15151,"Name":"CSA","Points":9494,"X":416,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":3340647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768864Z"},{"ID":15152,"Name":"#0003 Konohagakure","Points":9761,"X":528,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768865Z"},{"ID":15153,"Name":"EKG 020","Points":10336,"X":494,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768865Z"},{"ID":15154,"Name":"Bar Seventh Heaven","Points":10495,"X":526,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768866Z"},{"ID":15155,"Name":"0027","Points":9982,"X":621,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768866Z"},{"ID":15156,"Name":"Wioska julka2003","Points":10122,"X":402,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768867Z"},{"ID":15157,"Name":"Szlachcic","Points":9328,"X":617,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768868Z"},{"ID":15158,"Name":"Jedna czerwona kropka","Points":11678,"X":500,"Y":487,"Continent":"K45","Bonus":0,"PlayerID":848921793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768868Z"},{"ID":15159,"Name":"EKG 025 + R DODAT","Points":10290,"X":484,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768869Z"},{"ID":15160,"Name":"ADEN","Points":10154,"X":526,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768869Z"},{"ID":15161,"Name":"Bagdad","Points":10654,"X":475,"Y":382,"Continent":"K34","Bonus":2,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76887Z"},{"ID":15162,"Name":"Wioska barbarzyƄska","Points":10068,"X":404,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76887Z"},{"ID":15163,"Name":"Szlachcic","Points":9453,"X":583,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768871Z"},{"ID":15164,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":392,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768871Z"},{"ID":15165,"Name":"098 Wioska barbarzyƄska","Points":8728,"X":596,"Y":420,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768872Z"},{"ID":15166,"Name":"002","Points":9013,"X":548,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768872Z"},{"ID":15167,"Name":"A01","Points":10083,"X":600,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768873Z"},{"ID":15168,"Name":"spoceni xD","Points":7286,"X":437,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768873Z"},{"ID":15169,"Name":"Black Castel","Points":10495,"X":481,"Y":619,"Continent":"K64","Bonus":6,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768874Z"},{"ID":15170,"Name":"Wioska Nevomex1","Points":10068,"X":405,"Y":429,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768875Z"},{"ID":15171,"Name":"bucks x kamiiiru","Points":10971,"X":409,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768875Z"},{"ID":15172,"Name":"035","Points":10160,"X":495,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768876Z"},{"ID":15173,"Name":"#062","Points":10636,"X":481,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768876Z"},{"ID":15174,"Name":"Gravity","Points":9488,"X":405,"Y":446,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768877Z"},{"ID":15175,"Name":"032","Points":9761,"X":489,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768878Z"},{"ID":15176,"Name":"0437","Points":10019,"X":547,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768878Z"},{"ID":15177,"Name":"021.xxx","Points":9835,"X":461,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768879Z"},{"ID":15178,"Name":"PiekƂo to inni","Points":10160,"X":479,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768879Z"},{"ID":15179,"Name":"A013","Points":10155,"X":612,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76888Z"},{"ID":15180,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":523,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76888Z"},{"ID":15181,"Name":"Land of Fire","Points":9485,"X":393,"Y":446,"Continent":"K43","Bonus":2,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768881Z"},{"ID":15182,"Name":"z 031","Points":10495,"X":547,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768882Z"},{"ID":15183,"Name":"Yogi","Points":10052,"X":561,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768882Z"},{"ID":15184,"Name":"MojeSzczytToTwĂłjDno","Points":10287,"X":507,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768883Z"},{"ID":15185,"Name":"099 Wioska barbarzyƄska","Points":10001,"X":594,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768883Z"},{"ID":15186,"Name":"Wioska 010","Points":9761,"X":597,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768884Z"},{"ID":15187,"Name":"Halinanium","Points":9756,"X":603,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768885Z"},{"ID":15188,"Name":"K34 - [063] Before Land","Points":10126,"X":449,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768885Z"},{"ID":15189,"Name":"Mako Reactor 1 - B8F","Points":10083,"X":518,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768886Z"},{"ID":15190,"Name":"*INTERTWINED**","Points":9711,"X":515,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768886Z"},{"ID":15191,"Name":"Myk i do kieszonki","Points":8457,"X":378,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768887Z"},{"ID":15192,"Name":"Wioska","Points":10178,"X":385,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768888Z"},{"ID":15193,"Name":"*025*","Points":5660,"X":623,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768888Z"},{"ID":15194,"Name":"039 PotÄ™ĆŒny Dzban","Points":10479,"X":390,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768889Z"},{"ID":15196,"Name":"028.","Points":10220,"X":486,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768889Z"},{"ID":15197,"Name":"Wioska (022)","Points":8424,"X":623,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76889Z"},{"ID":15198,"Name":"Wioska barbarzyƄska","Points":10478,"X":611,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76889Z"},{"ID":15199,"Name":"uprawy","Points":10495,"X":610,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768891Z"},{"ID":15200,"Name":"033 PotÄ™ĆŒny Dzban","Points":10478,"X":389,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768892Z"},{"ID":15201,"Name":"0032","Points":10252,"X":549,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768892Z"},{"ID":15202,"Name":"VN Hannibal Barca","Points":9626,"X":466,"Y":380,"Continent":"K34","Bonus":7,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768893Z"},{"ID":15203,"Name":"CALL 1005","Points":10311,"X":514,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768893Z"},{"ID":15204,"Name":"059 - Sayil","Points":4422,"X":427,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768894Z"},{"ID":15205,"Name":"ZachĂłd - 009","Points":5532,"X":396,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768894Z"},{"ID":15206,"Name":"Jaaa","Points":10342,"X":609,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768895Z"},{"ID":15207,"Name":"PiekƂo to inni","Points":10160,"X":482,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768896Z"},{"ID":15208,"Name":".006.","Points":10595,"X":496,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768896Z"},{"ID":15209,"Name":"008","Points":9979,"X":384,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768897Z"},{"ID":15210,"Name":"[207] WEST","Points":10221,"X":612,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768897Z"},{"ID":15211,"Name":"001 Parostatkiem piękny rejs","Points":10495,"X":502,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768898Z"},{"ID":15212,"Name":"--001--","Points":9498,"X":425,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768899Z"},{"ID":15213,"Name":"167 Ale mnie gƂówka boli","Points":10636,"X":387,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768899Z"},{"ID":15214,"Name":"jest moc","Points":9699,"X":557,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7689Z"},{"ID":15215,"Name":"Teby_28","Points":9638,"X":501,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.7689Z"},{"ID":15216,"Name":"010. Antium","Points":9073,"X":618,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768901Z"},{"ID":15217,"Name":"015 Tarnag","Points":10083,"X":624,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768901Z"},{"ID":15218,"Name":"Wioska .580","Points":7875,"X":383,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768902Z"},{"ID":15219,"Name":"K34 - [035] Before Land","Points":10259,"X":454,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768902Z"},{"ID":15221,"Name":"A0040","Points":10362,"X":381,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768903Z"},{"ID":15222,"Name":"[004] Siluca Meletes","Points":10495,"X":478,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768903Z"},{"ID":15223,"Name":"Gryfios 005","Points":10495,"X":619,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768904Z"},{"ID":15224,"Name":"Bagdad","Points":10654,"X":480,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768904Z"},{"ID":15225,"Name":"0008 Bigi02","Points":10544,"X":430,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768905Z"},{"ID":15226,"Name":"Taran","Points":9771,"X":544,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768906Z"},{"ID":15227,"Name":"Czekam na VS","Points":10495,"X":542,"Y":384,"Continent":"K35","Bonus":3,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768906Z"},{"ID":15228,"Name":"K34 - [034] Before Land","Points":10259,"X":460,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768907Z"},{"ID":15229,"Name":"s181eo26","Points":9885,"X":382,"Y":457,"Continent":"K43","Bonus":4,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768907Z"},{"ID":15231,"Name":"#033","Points":10393,"X":474,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768908Z"},{"ID":15232,"Name":"025.","Points":10218,"X":486,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768909Z"},{"ID":15233,"Name":"FKG 01-10","Points":9835,"X":421,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76891Z"},{"ID":15234,"Name":"013. Salon kosmetyczny Lalusia","Points":10495,"X":566,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76891Z"},{"ID":15236,"Name":"D018","Points":10495,"X":580,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768911Z"},{"ID":15237,"Name":"#0002","Points":10495,"X":544,"Y":612,"Continent":"K65","Bonus":8,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768912Z"},{"ID":15238,"Name":"0019","Points":10336,"X":624,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768912Z"},{"ID":15239,"Name":"Part IX","Points":10495,"X":534,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768913Z"},{"ID":15240,"Name":".44","Points":10971,"X":410,"Y":420,"Continent":"K44","Bonus":1,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768914Z"},{"ID":15241,"Name":"wioska smielii","Points":7095,"X":399,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768915Z"},{"ID":15242,"Name":"Part XIX","Points":10196,"X":535,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768915Z"},{"ID":15243,"Name":"K34 - [022] Before Land","Points":10259,"X":459,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768916Z"},{"ID":15244,"Name":"#036","Points":10393,"X":471,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768917Z"},{"ID":15245,"Name":"SINGED X SZEF","Points":9643,"X":482,"Y":380,"Continent":"K34","Bonus":6,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768917Z"},{"ID":15246,"Name":"006","Points":10495,"X":604,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768918Z"},{"ID":15247,"Name":"015 Jestem pizz@","Points":10481,"X":619,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768919Z"},{"ID":15248,"Name":"Jebalnik1","Points":10237,"X":507,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768919Z"},{"ID":15249,"Name":"029","Points":10014,"X":481,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76892Z"},{"ID":15250,"Name":"Wioska","Points":10068,"X":383,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768921Z"},{"ID":15251,"Name":"Wioska Mwito","Points":10495,"X":569,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768921Z"},{"ID":15253,"Name":"DzieƄ Dobry :)","Points":10495,"X":534,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768922Z"},{"ID":15254,"Name":"A002","Points":10400,"X":518,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768922Z"},{"ID":15255,"Name":"013 Będzie klinowane","Points":10476,"X":391,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768923Z"},{"ID":15257,"Name":"015.xxx","Points":10069,"X":469,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768923Z"},{"ID":15258,"Name":"Wioska","Points":10178,"X":380,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768924Z"},{"ID":15259,"Name":"A023","Points":10354,"X":616,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768924Z"},{"ID":15260,"Name":"Mniejsze zƂo 0004","Points":9781,"X":376,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768925Z"},{"ID":15261,"Name":"Mniejsze zƂo 0002","Points":10249,"X":380,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768926Z"},{"ID":15263,"Name":"=014= PĂłĆșniej szedƂ taki Zbyszek","Points":10580,"X":613,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768926Z"},{"ID":15264,"Name":"0342","Points":10495,"X":502,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768927Z"},{"ID":15265,"Name":"Darma","Points":9835,"X":428,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768927Z"},{"ID":15266,"Name":"Wioska spiderandsobol","Points":7998,"X":397,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768928Z"},{"ID":15267,"Name":"052 - Boom","Points":9645,"X":424,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768928Z"},{"ID":15268,"Name":"Jaaa","Points":10223,"X":609,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768929Z"},{"ID":15269,"Name":"K34 - [064] Before Land","Points":9924,"X":448,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76893Z"},{"ID":15270,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76893Z"},{"ID":15271,"Name":"Collapsed Expressway","Points":10495,"X":525,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768931Z"},{"ID":15272,"Name":"R-5","Points":9013,"X":551,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768931Z"},{"ID":15273,"Name":"Mniejsze zƂo 0007","Points":8498,"X":375,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768932Z"},{"ID":15274,"Name":"033 - A09.***","Points":10495,"X":439,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768932Z"},{"ID":15275,"Name":"Wioska","Points":10178,"X":379,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768933Z"},{"ID":15276,"Name":"Cypel","Points":9835,"X":613,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768934Z"},{"ID":15277,"Name":"Sahara","Points":10019,"X":376,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768934Z"},{"ID":15278,"Name":"Yogi","Points":10495,"X":534,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768935Z"},{"ID":15279,"Name":"+44 61 Neufchatel Hardelot","Points":10019,"X":413,"Y":469,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768935Z"},{"ID":15280,"Name":"K34 - [077] Before Land","Points":9924,"X":456,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768936Z"},{"ID":15282,"Name":"NIERAJ05","Points":8270,"X":450,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768937Z"},{"ID":15283,"Name":"K34 - [033] Before Land","Points":10259,"X":462,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768937Z"},{"ID":15284,"Name":"066","Points":10030,"X":570,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768938Z"},{"ID":15285,"Name":"040","Points":9761,"X":542,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768938Z"},{"ID":15286,"Name":"0027 XXARDASS","Points":7923,"X":432,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768939Z"},{"ID":15288,"Name":"Bagdad","Points":10654,"X":473,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768939Z"},{"ID":15289,"Name":"Tank x 007. Dobry, zƂy i brzydki","Points":9281,"X":404,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76894Z"},{"ID":15291,"Name":"Wioska 5","Points":8104,"X":621,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76894Z"},{"ID":15292,"Name":"002 Wioska oleska2002","Points":10178,"X":530,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768941Z"},{"ID":15293,"Name":"108","Points":10311,"X":583,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768942Z"},{"ID":15294,"Name":"K44 x033","Points":8073,"X":430,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768942Z"},{"ID":15295,"Name":".010.","Points":10485,"X":495,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768943Z"},{"ID":15296,"Name":"Wioska WojoKox626","Points":2719,"X":435,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768943Z"},{"ID":15297,"Name":"*006 Thorshavn","Points":9873,"X":386,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768944Z"},{"ID":15298,"Name":"207","Points":9806,"X":569,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768944Z"},{"ID":15299,"Name":"030","Points":9744,"X":565,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768945Z"},{"ID":15300,"Name":"01. Wioska mrPosel","Points":10495,"X":469,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768945Z"},{"ID":15301,"Name":"K34 - [085] Before Land","Points":9783,"X":456,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768946Z"},{"ID":15303,"Name":"Wioska barbarzyƄska 013|","Points":9180,"X":580,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768946Z"},{"ID":15304,"Name":"Osada koczownikĂłw","Points":10008,"X":404,"Y":419,"Continent":"K44","Bonus":7,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768947Z"},{"ID":15305,"Name":"=008= Lampa z przodu","Points":10365,"X":607,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768948Z"},{"ID":15306,"Name":"Wioska 027","Points":10019,"X":599,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768948Z"},{"ID":15307,"Name":"Darma","Points":9835,"X":424,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768949Z"},{"ID":15308,"Name":"=009= ByƂa w niezƂym stanie","Points":10130,"X":610,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768949Z"},{"ID":15309,"Name":"003. Orkowa Kopalnia","Points":10495,"X":490,"Y":625,"Continent":"K64","Bonus":8,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76895Z"},{"ID":15310,"Name":"Teby_23","Points":9638,"X":504,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76895Z"},{"ID":15311,"Name":"013.","Points":9342,"X":623,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768951Z"},{"ID":15312,"Name":"021 Driftmark","Points":10375,"X":606,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768951Z"},{"ID":15313,"Name":"21 XXX","Points":7764,"X":619,"Y":481,"Continent":"K46","Bonus":1,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768952Z"},{"ID":15314,"Name":"002","Points":9633,"X":560,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768952Z"},{"ID":15315,"Name":"Jaaa","Points":10220,"X":576,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768953Z"},{"ID":15316,"Name":"I Po Co?","Points":10426,"X":621,"Y":483,"Continent":"K46","Bonus":5,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768953Z"},{"ID":15317,"Name":"SPARTA","Points":9181,"X":499,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768954Z"},{"ID":15319,"Name":"Jaaa","Points":10478,"X":609,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768954Z"},{"ID":15320,"Name":"030 Lenka","Points":9500,"X":633,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768955Z"},{"ID":15321,"Name":"035 Izumi","Points":10495,"X":625,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768955Z"},{"ID":15322,"Name":"Kentin ufam Tobie","Points":10000,"X":386,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768956Z"},{"ID":15323,"Name":"Wioska","Points":10178,"X":393,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768957Z"},{"ID":15324,"Name":"TRR 003","Points":10008,"X":407,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768957Z"},{"ID":15326,"Name":"SINGED X SZEF","Points":9994,"X":487,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768958Z"},{"ID":15327,"Name":"Jaaa","Points":10281,"X":590,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768958Z"},{"ID":15328,"Name":"Czekam na VS","Points":10495,"X":533,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768959Z"},{"ID":15329,"Name":"20002","Points":10636,"X":516,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768959Z"},{"ID":15330,"Name":"Wioska","Points":10030,"X":402,"Y":421,"Continent":"K44","Bonus":7,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76896Z"},{"ID":15331,"Name":"026","Points":10474,"X":456,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76896Z"},{"ID":15332,"Name":"C Zach 005 kleszczow","Points":6414,"X":405,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768961Z"},{"ID":15333,"Name":"ave why!","Points":10192,"X":449,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768961Z"},{"ID":15334,"Name":"004","Points":9744,"X":544,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768962Z"},{"ID":15335,"Name":"006. Gloria Victis","Points":9520,"X":437,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768962Z"},{"ID":15336,"Name":"K34 - [040] Before Land","Points":10259,"X":458,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768963Z"},{"ID":15337,"Name":"018. Pompeii","Points":9087,"X":614,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768963Z"},{"ID":15338,"Name":"A.017","Points":9341,"X":409,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768964Z"},{"ID":15339,"Name":"089","Points":9741,"X":598,"Y":572,"Continent":"K55","Bonus":9,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768965Z"},{"ID":15340,"Name":"yogi","Points":10019,"X":513,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768965Z"},{"ID":15341,"Name":"0008","Points":10336,"X":622,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768966Z"},{"ID":15342,"Name":"*033*","Points":8596,"X":623,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768966Z"},{"ID":15343,"Name":"Pod","Points":9606,"X":591,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768967Z"},{"ID":15344,"Name":"Ręcznik do zmiany","Points":10362,"X":397,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768967Z"},{"ID":15345,"Name":"Vittese","Points":9701,"X":402,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768968Z"},{"ID":15346,"Name":"Taran","Points":9825,"X":547,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768968Z"},{"ID":15347,"Name":"Myk i do kieszonki","Points":9799,"X":374,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768969Z"},{"ID":15348,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":531,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768969Z"},{"ID":15349,"Name":"VN Rhya","Points":9570,"X":475,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76897Z"},{"ID":15350,"Name":"003","Points":10487,"X":513,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76897Z"},{"ID":15351,"Name":"Myk i do kieszonki","Points":9799,"X":378,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768971Z"},{"ID":15352,"Name":"Wioska l2adziu","Points":10478,"X":390,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768972Z"},{"ID":15353,"Name":"Wioska","Points":10178,"X":379,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768972Z"},{"ID":15354,"Name":"Gattacka","Points":9643,"X":600,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768973Z"},{"ID":15355,"Name":"046","Points":9742,"X":539,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768973Z"},{"ID":15356,"Name":"South K35","Points":10042,"X":552,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768974Z"},{"ID":15357,"Name":"C 017","Points":10362,"X":562,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768974Z"},{"ID":15358,"Name":"030.","Points":10481,"X":493,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768975Z"},{"ID":15359,"Name":"27 im Sazykina","Points":9809,"X":594,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768976Z"},{"ID":15360,"Name":"NOT FOR YOU","Points":5616,"X":458,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768976Z"},{"ID":15361,"Name":"Czekam na VS","Points":10495,"X":540,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768977Z"},{"ID":15362,"Name":"148","Points":10311,"X":582,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768977Z"},{"ID":15363,"Name":"0019 MzM","Points":9258,"X":603,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768978Z"},{"ID":15364,"Name":"085","Points":10311,"X":574,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768979Z"},{"ID":15365,"Name":"*032*","Points":8235,"X":622,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768979Z"},{"ID":15366,"Name":"Horyzont zdarzeƄ","Points":10019,"X":538,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76898Z"},{"ID":15367,"Name":"020","Points":10311,"X":576,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76898Z"},{"ID":15368,"Name":"015","Points":9825,"X":476,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768981Z"},{"ID":15369,"Name":"Mlask","Points":9761,"X":468,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768982Z"},{"ID":15370,"Name":"192","Points":10311,"X":570,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768982Z"},{"ID":15371,"Name":"014","Points":10636,"X":581,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768983Z"},{"ID":15372,"Name":"Gattacka","Points":9296,"X":605,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768983Z"},{"ID":15373,"Name":"Master Carry","Points":10237,"X":507,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768984Z"},{"ID":15374,"Name":"Part XXIII","Points":10495,"X":531,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768984Z"},{"ID":15375,"Name":"035 PotÄ™ĆŒny Dzban","Points":10495,"X":390,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768985Z"},{"ID":15376,"Name":"Jaaa","Points":10481,"X":604,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768985Z"},{"ID":15377,"Name":"074","Points":10311,"X":586,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768986Z"},{"ID":15378,"Name":"Ulu-mulu","Points":10584,"X":428,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768987Z"},{"ID":15379,"Name":"Myk i do kieszonki","Points":6540,"X":380,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768987Z"},{"ID":15381,"Name":"Wioska","Points":10178,"X":383,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768988Z"},{"ID":15382,"Name":"0031 Wioska barbarzyƄska","Points":5350,"X":431,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768989Z"},{"ID":15383,"Name":"110","Points":10311,"X":570,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76899Z"},{"ID":15384,"Name":"005. Neapolis","Points":9179,"X":614,"Y":456,"Continent":"K46","Bonus":4,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76899Z"},{"ID":15385,"Name":"ADEN","Points":9737,"X":527,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768991Z"},{"ID":15386,"Name":"Knowhere","Points":10484,"X":390,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768992Z"},{"ID":15387,"Name":"A0248","Points":10362,"X":378,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768993Z"},{"ID":15388,"Name":"058 - Brise","Points":7524,"X":423,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768993Z"},{"ID":15389,"Name":"030","Points":10311,"X":584,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768994Z"},{"ID":15390,"Name":"Wioska","Points":10178,"X":377,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768995Z"},{"ID":15391,"Name":"010.xxx","Points":10146,"X":463,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768996Z"},{"ID":15392,"Name":"Kentin ufam Tobie","Points":10000,"X":388,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768996Z"},{"ID":15393,"Name":"Wioska barbarzyƄska","Points":10479,"X":612,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768997Z"},{"ID":15394,"Name":"Kentin ufam Tobie","Points":10000,"X":386,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768997Z"},{"ID":15395,"Name":"Pobozowisko","Points":10955,"X":416,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768998Z"},{"ID":15396,"Name":"HOTEL 5","Points":9747,"X":568,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768998Z"},{"ID":15397,"Name":"Wioska barbarzyƄska","Points":10008,"X":406,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768999Z"},{"ID":15398,"Name":"NWO","Points":10954,"X":391,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.768999Z"},{"ID":15399,"Name":"Szlachcic 007","Points":10311,"X":622,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769Z"},{"ID":15400,"Name":"ave why!","Points":10213,"X":449,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769001Z"},{"ID":15401,"Name":"wioska smieliiii","Points":8381,"X":401,"Y":571,"Continent":"K54","Bonus":5,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769001Z"},{"ID":15402,"Name":"Wioska barbarzyƄska","Points":10495,"X":446,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769002Z"},{"ID":15403,"Name":"Wioska barbarzyƄska","Points":10068,"X":405,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769002Z"},{"ID":15404,"Name":"Ręcznik do zmiany","Points":10160,"X":397,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769003Z"},{"ID":15405,"Name":"Brat447","Points":10490,"X":374,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769003Z"},{"ID":15406,"Name":"Pobozowisko","Points":9614,"X":417,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769004Z"},{"ID":15407,"Name":"0028 XXARDASS","Points":9563,"X":433,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769004Z"},{"ID":15408,"Name":"Myk i do kieszonki","Points":9799,"X":380,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769005Z"},{"ID":15409,"Name":"061 - Bonanza","Points":3955,"X":423,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769006Z"},{"ID":15410,"Name":"K34 - [008] Before Land","Points":10259,"X":452,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769006Z"},{"ID":15411,"Name":"D011","Points":9861,"X":509,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769007Z"},{"ID":15412,"Name":"Wioska barbarzyƄska","Points":9873,"X":447,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769007Z"},{"ID":15413,"Name":"Westcoast.003","Points":10178,"X":391,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769008Z"},{"ID":15414,"Name":"Bagdad","Points":9835,"X":477,"Y":379,"Continent":"K34","Bonus":7,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769008Z"},{"ID":15415,"Name":"0027","Points":10019,"X":555,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769009Z"},{"ID":15416,"Name":"ShocK","Points":10019,"X":624,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769009Z"},{"ID":15417,"Name":"Avanti!","Points":9950,"X":380,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76901Z"},{"ID":15418,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":520,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76901Z"},{"ID":15419,"Name":"Vengerberg","Points":10311,"X":492,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769011Z"},{"ID":15420,"Name":"0008","Points":9969,"X":444,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769011Z"},{"ID":15421,"Name":"#008","Points":10393,"X":469,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769012Z"},{"ID":15422,"Name":"Taran","Points":9379,"X":545,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769012Z"},{"ID":15423,"Name":"Jaaa","Points":10228,"X":581,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769013Z"},{"ID":15424,"Name":"Wioska barbarzyƄska","Points":10008,"X":408,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769014Z"},{"ID":15426,"Name":"K34 - [021] Before Land","Points":10259,"X":466,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769014Z"},{"ID":15427,"Name":"Jaaa","Points":9753,"X":613,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769015Z"},{"ID":15428,"Name":"0015. C -","Points":10149,"X":621,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769015Z"},{"ID":15429,"Name":"Jaaa","Points":10062,"X":607,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769016Z"},{"ID":15430,"Name":"Defensywa III","Points":8186,"X":575,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769016Z"},{"ID":15431,"Name":"0024 XXARDASS","Points":9563,"X":426,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769017Z"},{"ID":15432,"Name":"Wioska barbarzyƄska","Points":10075,"X":380,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769017Z"},{"ID":15433,"Name":"011 ...","Points":10475,"X":622,"Y":470,"Continent":"K46","Bonus":3,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769018Z"},{"ID":15434,"Name":"#048.504|527","Points":9735,"X":623,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769018Z"},{"ID":15435,"Name":"Wioska","Points":10178,"X":378,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769019Z"},{"ID":15436,"Name":"K34 - [048] Before Land","Points":10259,"X":457,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769019Z"},{"ID":15437,"Name":"[A]_[019] Dejv.oldplyr","Points":10336,"X":398,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76902Z"},{"ID":15438,"Name":"wioska sbbbb","Points":6794,"X":403,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76902Z"},{"ID":15439,"Name":"[222] WESTsssss","Points":10236,"X":613,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769021Z"},{"ID":15440,"Name":"0012 Wioska barbarzyƄska","Points":9360,"X":425,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769022Z"},{"ID":15441,"Name":"002.","Points":9617,"X":564,"Y":605,"Continent":"K65","Bonus":5,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769022Z"},{"ID":15442,"Name":"020.","Points":10220,"X":487,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769023Z"},{"ID":15443,"Name":"Ulu-mulu","Points":11077,"X":435,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769023Z"},{"ID":15444,"Name":"PRO8L3M","Points":9835,"X":466,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769024Z"},{"ID":15445,"Name":"Ręcznik do zmiany","Points":10160,"X":394,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769024Z"},{"ID":15446,"Name":"=010= GrzybĂłw Janusz","Points":10580,"X":612,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769025Z"},{"ID":15447,"Name":"Avanti!","Points":10042,"X":380,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769026Z"},{"ID":15448,"Name":"Wioska","Points":10178,"X":377,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769026Z"},{"ID":15449,"Name":"Nibelheim","Points":9194,"X":507,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769027Z"},{"ID":15450,"Name":"Wioska barbarzyƄska","Points":5748,"X":400,"Y":570,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769027Z"},{"ID":15451,"Name":"HOTEL 4","Points":9747,"X":567,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769028Z"},{"ID":15452,"Name":"Wioska","Points":10178,"X":380,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769028Z"},{"ID":15453,"Name":"z 054","Points":10481,"X":585,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769029Z"},{"ID":15454,"Name":"031","Points":9913,"X":622,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76903Z"},{"ID":15455,"Name":"0088","Points":9835,"X":459,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76903Z"},{"ID":15456,"Name":"Bagdad","Points":10654,"X":475,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769031Z"},{"ID":15457,"Name":"003","Points":10285,"X":400,"Y":430,"Continent":"K44","Bonus":8,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769032Z"},{"ID":15458,"Name":"Wioska barbarzyƄska 011|","Points":9606,"X":577,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769033Z"},{"ID":15459,"Name":"Pobozowisko","Points":10952,"X":416,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769033Z"},{"ID":15460,"Name":"Wioska","Points":10178,"X":377,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769034Z"},{"ID":15461,"Name":"*INTERTWINED**","Points":9711,"X":507,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769035Z"},{"ID":15462,"Name":"My Immortal","Points":10224,"X":580,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769035Z"},{"ID":15463,"Name":"Wioska barbarzyƄska","Points":10008,"X":406,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769036Z"},{"ID":15464,"Name":"AWioska barbarzyƄska","Points":10495,"X":614,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769036Z"},{"ID":15465,"Name":"Myk i do kieszonki","Points":9799,"X":377,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769037Z"},{"ID":15466,"Name":"031.","Points":11130,"X":610,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769037Z"},{"ID":15467,"Name":"0047","Points":9255,"X":621,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769038Z"},{"ID":15468,"Name":".021.","Points":10595,"X":493,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769038Z"},{"ID":15469,"Name":"031","Points":9744,"X":569,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769039Z"},{"ID":15470,"Name":"BoOmBaa..","Points":9003,"X":441,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76904Z"},{"ID":15471,"Name":"043 PotÄ™ĆŒny Dzban","Points":10481,"X":389,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76904Z"},{"ID":15472,"Name":"604|541 013 legatus","Points":10239,"X":604,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769041Z"},{"ID":15473,"Name":".achim.","Points":10311,"X":534,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769041Z"},{"ID":15474,"Name":"Myk i do kieszonki","Points":9799,"X":375,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769042Z"},{"ID":15475,"Name":"Ręcznik do zmiany","Points":10495,"X":384,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769042Z"},{"ID":15476,"Name":"Pobozowisko","Points":10626,"X":411,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769043Z"},{"ID":15477,"Name":"Centrum dowodzenia","Points":9819,"X":631,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769043Z"},{"ID":15478,"Name":"002 To tylko farma","Points":10475,"X":389,"Y":559,"Continent":"K53","Bonus":8,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769044Z"},{"ID":15479,"Name":"052.","Points":10218,"X":485,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769045Z"},{"ID":15480,"Name":"=011= Tego dnia sporo zebraƂ","Points":10447,"X":607,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769045Z"},{"ID":15481,"Name":"0358","Points":10019,"X":445,"Y":608,"Continent":"K64","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769046Z"},{"ID":15483,"Name":"111 AK Suisited","Points":10495,"X":388,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769046Z"},{"ID":15484,"Name":"Jaaa","Points":10373,"X":607,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769047Z"},{"ID":15485,"Name":"0006","Points":10319,"X":619,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769047Z"},{"ID":15486,"Name":"0063 b13","Points":6801,"X":457,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769048Z"},{"ID":15487,"Name":"Wioska 013","Points":9761,"X":597,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769048Z"},{"ID":15488,"Name":"008","Points":10019,"X":505,"Y":375,"Continent":"K35","Bonus":7,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769049Z"},{"ID":15489,"Name":"s181eo20","Points":9883,"X":381,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769049Z"},{"ID":15490,"Name":"090","Points":10311,"X":583,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76905Z"},{"ID":15491,"Name":"23 im Sawickej","Points":9809,"X":585,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76905Z"},{"ID":15492,"Name":"Ręcznik do zmiany","Points":10362,"X":397,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769051Z"},{"ID":15493,"Name":"C.007","Points":10254,"X":421,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769051Z"},{"ID":15494,"Name":"034 Toyama","Points":10495,"X":626,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769052Z"},{"ID":15495,"Name":"021","Points":10311,"X":568,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769052Z"},{"ID":15497,"Name":"005","Points":9939,"X":616,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769053Z"},{"ID":15498,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":388,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769054Z"},{"ID":15499,"Name":"Hej hoo","Points":10132,"X":443,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769054Z"},{"ID":15500,"Name":"makelovenotwar2","Points":10178,"X":385,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769055Z"},{"ID":15501,"Name":"32. Wioska 32","Points":10005,"X":393,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769055Z"},{"ID":15502,"Name":"Wioska barbarzyƄska","Points":10481,"X":379,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769056Z"},{"ID":15503,"Name":"011","Points":9937,"X":621,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769056Z"},{"ID":15504,"Name":"Osada koczownikĂłw","Points":10971,"X":379,"Y":534,"Continent":"K53","Bonus":5,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769057Z"},{"ID":15505,"Name":"A 001","Points":9888,"X":606,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769057Z"},{"ID":15506,"Name":"021","Points":10203,"X":618,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769058Z"},{"ID":15507,"Name":"003","Points":9959,"X":560,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769059Z"},{"ID":15508,"Name":"005. Gloria Victis","Points":10280,"X":441,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769059Z"},{"ID":15509,"Name":"*INTERTWINED*","Points":9711,"X":514,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76906Z"},{"ID":15510,"Name":"025","Points":9761,"X":502,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76906Z"},{"ID":15511,"Name":"Reco","Points":9711,"X":489,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769061Z"},{"ID":15512,"Name":"024 PotÄ™ĆŒny Dzban","Points":10476,"X":389,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769061Z"},{"ID":15513,"Name":"Czekam na VS","Points":10495,"X":531,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769062Z"},{"ID":15514,"Name":"BoOmBaa..","Points":7803,"X":443,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769062Z"},{"ID":15515,"Name":"SSJ 017","Points":9761,"X":513,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769063Z"},{"ID":15516,"Name":"XXXVIII","Points":10345,"X":533,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769064Z"},{"ID":15517,"Name":"SiƂa, Masa, RzeĆșba 01","Points":10254,"X":623,"Y":498,"Continent":"K46","Bonus":6,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769064Z"},{"ID":15518,"Name":".053.","Points":7154,"X":484,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769065Z"},{"ID":15519,"Name":"Defensywa II","Points":10495,"X":574,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769066Z"},{"ID":15520,"Name":"Pobozowisko","Points":9947,"X":396,"Y":571,"Continent":"K53","Bonus":2,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769067Z"},{"ID":15521,"Name":"20 im Rusaka","Points":9809,"X":583,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769067Z"},{"ID":15522,"Name":"008 Wioska","Points":6600,"X":619,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769068Z"},{"ID":15523,"Name":"002.xxx","Points":10160,"X":466,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769069Z"},{"ID":15524,"Name":"031","Points":10146,"X":584,"Y":404,"Continent":"K45","Bonus":1,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76907Z"},{"ID":15525,"Name":"0087","Points":10160,"X":554,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76907Z"},{"ID":15526,"Name":"Gattacka","Points":9744,"X":597,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769071Z"},{"ID":15527,"Name":"054","Points":10237,"X":602,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769072Z"},{"ID":15528,"Name":"011. San Marino","Points":10300,"X":619,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769073Z"},{"ID":15529,"Name":"018.","Points":10217,"X":489,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769073Z"},{"ID":15530,"Name":"BoOmBaa..","Points":10495,"X":444,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769074Z"},{"ID":15531,"Name":"Kilo","Points":8665,"X":610,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769074Z"},{"ID":15532,"Name":"Ulu-mulu","Points":10278,"X":437,"Y":607,"Continent":"K64","Bonus":8,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769075Z"},{"ID":15535,"Name":"0014 Wioska barbarzyƄska","Points":10375,"X":422,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769076Z"},{"ID":15536,"Name":"SiƂa, Masa, RzeĆșba 11","Points":8921,"X":626,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769076Z"},{"ID":15537,"Name":"Jaaa","Points":10034,"X":603,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769077Z"},{"ID":15538,"Name":"C004","Points":10490,"X":571,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769077Z"},{"ID":15539,"Name":"D017","Points":10495,"X":580,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769078Z"},{"ID":15540,"Name":"Wioska przemomam","Points":6284,"X":440,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769078Z"},{"ID":15541,"Name":"010","Points":9390,"X":505,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769079Z"},{"ID":15542,"Name":"Szlachcic 003","Points":10311,"X":617,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76908Z"},{"ID":15543,"Name":"K34 - [101] Before Land","Points":10259,"X":455,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76908Z"},{"ID":15544,"Name":"005 Sewilla","Points":9759,"X":624,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769081Z"},{"ID":15545,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":444,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769082Z"},{"ID":15546,"Name":"Wioska JuanDe","Points":10495,"X":536,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769082Z"},{"ID":15547,"Name":"Wioska","Points":6928,"X":383,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769083Z"},{"ID":15548,"Name":"Darma","Points":9835,"X":426,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769083Z"},{"ID":15549,"Name":".achim.","Points":7768,"X":535,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769084Z"},{"ID":15550,"Name":"A.020","Points":9977,"X":411,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769084Z"},{"ID":15551,"Name":"012","Points":9761,"X":496,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769085Z"},{"ID":15552,"Name":"0032 Wioska barbarzyƄska","Points":5939,"X":434,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769085Z"},{"ID":15553,"Name":"A0162","Points":10362,"X":373,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769086Z"},{"ID":15554,"Name":"-x5","Points":10495,"X":501,"Y":496,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769086Z"},{"ID":15555,"Name":"114 MikeJazz","Points":9297,"X":388,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769087Z"},{"ID":15556,"Name":"*INTERTWINED*","Points":9117,"X":520,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769088Z"},{"ID":15557,"Name":"...Just like that","Points":10452,"X":461,"Y":488,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769088Z"},{"ID":15558,"Name":"Myk i do kieszonki","Points":9799,"X":377,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769089Z"},{"ID":15559,"Name":"009.","Points":5706,"X":614,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769089Z"},{"ID":15560,"Name":"SoƂtys Twojej Wsi","Points":9886,"X":440,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76909Z"},{"ID":15561,"Name":"ZachĂłd - 016","Points":10026,"X":395,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.76909Z"},{"ID":15562,"Name":"Wioska (005)","Points":9902,"X":621,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769091Z"},{"ID":15563,"Name":"Excelsior","Points":10495,"X":572,"Y":598,"Continent":"K55","Bonus":9,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769091Z"},{"ID":15564,"Name":"004. Zmora","Points":9761,"X":508,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769092Z"},{"ID":15565,"Name":"0018","Points":10358,"X":471,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769093Z"},{"ID":15566,"Name":"~088.","Points":10495,"X":497,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769093Z"},{"ID":15567,"Name":"Gryfios 008","Points":10273,"X":619,"Y":539,"Continent":"K56","Bonus":7,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769094Z"},{"ID":15568,"Name":"0013. C - Tarnag","Points":9690,"X":626,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769094Z"},{"ID":15569,"Name":"0046","Points":10083,"X":460,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769095Z"},{"ID":15570,"Name":"0018","Points":10317,"X":619,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.769095Z"},{"ID":15571,"Name":"EKG M10 Ɓ","Points":10559,"X":479,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803288Z"},{"ID":15572,"Name":"0008","Points":10211,"X":557,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803289Z"},{"ID":15573,"Name":"Pobozowisko","Points":10955,"X":410,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803289Z"},{"ID":15574,"Name":"Gattacka","Points":9372,"X":604,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80329Z"},{"ID":15575,"Name":"039.","Points":10226,"X":484,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80329Z"},{"ID":15576,"Name":"0000 oko","Points":9344,"X":413,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803291Z"},{"ID":15577,"Name":"Jedyneczka","Points":10470,"X":504,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803291Z"},{"ID":15578,"Name":"Wioska barbarzyƄska","Points":9835,"X":418,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803291Z"},{"ID":15579,"Name":"PiekƂo to inni","Points":10019,"X":482,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803292Z"},{"ID":15580,"Name":"Jaaa","Points":10368,"X":587,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803292Z"},{"ID":15581,"Name":"31. Wioska 31","Points":8227,"X":393,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803293Z"},{"ID":15582,"Name":"[211] WEST","Points":10236,"X":614,"Y":451,"Continent":"K46","Bonus":7,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803293Z"},{"ID":15583,"Name":"Wioska14","Points":10252,"X":619,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803293Z"},{"ID":15584,"Name":"006 Wioska barbarzyƄska","Points":10178,"X":530,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803294Z"},{"ID":15585,"Name":"kathare","Points":9912,"X":547,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803294Z"},{"ID":15586,"Name":"Bagdad","Points":10654,"X":478,"Y":378,"Continent":"K34","Bonus":5,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803294Z"},{"ID":15587,"Name":"Wioska barbarzyƄska","Points":10237,"X":512,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803295Z"},{"ID":15588,"Name":"K34 - [126] Before Land","Points":10259,"X":451,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803295Z"},{"ID":15589,"Name":"011","Points":10152,"X":502,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803296Z"},{"ID":15590,"Name":"087","Points":10311,"X":583,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803296Z"},{"ID":15592,"Name":"A.009","Points":9351,"X":405,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803297Z"},{"ID":15593,"Name":"Ręcznik do zmiany","Points":10160,"X":401,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803297Z"},{"ID":15594,"Name":"VN Guan Yu","Points":9641,"X":469,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803297Z"},{"ID":15595,"Name":"Wioska barbarzyƄska","Points":10484,"X":380,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803298Z"},{"ID":15596,"Name":"Wioska13","Points":9554,"X":620,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803298Z"},{"ID":15597,"Name":"158 Ale mnie gƂówka boli","Points":10487,"X":387,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803299Z"},{"ID":15598,"Name":"Avanti!","Points":9950,"X":374,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803299Z"},{"ID":15599,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":511,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803299Z"},{"ID":15600,"Name":"Belvedere 007","Points":10311,"X":585,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8033Z"},{"ID":15601,"Name":"053.","Points":9983,"X":484,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8033Z"},{"ID":15602,"Name":"Westcoast.065","Points":10178,"X":395,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803301Z"},{"ID":15603,"Name":"Taran","Points":9835,"X":546,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803301Z"},{"ID":15604,"Name":"Myk i do kieszonki","Points":9799,"X":374,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803302Z"},{"ID":15605,"Name":"XXXII","Points":10495,"X":538,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803302Z"},{"ID":15606,"Name":"Vasperland_024","Points":10484,"X":623,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803302Z"},{"ID":15607,"Name":"VN Belisarius","Points":9653,"X":469,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803303Z"},{"ID":15608,"Name":"045.","Points":10220,"X":493,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803303Z"},{"ID":15609,"Name":"012","Points":10309,"X":622,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803304Z"},{"ID":15610,"Name":"Ręcznik do zmiany","Points":10495,"X":386,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803304Z"},{"ID":15611,"Name":"SianĂłw","Points":8017,"X":387,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803305Z"},{"ID":15612,"Name":"bucks x kamiiiru","Points":10971,"X":421,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803305Z"},{"ID":15613,"Name":"[009]","Points":9809,"X":621,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803305Z"},{"ID":15614,"Name":"0003","Points":10203,"X":597,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803306Z"},{"ID":15615,"Name":"TRR 004","Points":10008,"X":407,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803306Z"},{"ID":15616,"Name":"02 im Kirowa","Points":9809,"X":588,"Y":415,"Continent":"K45","Bonus":4,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803307Z"},{"ID":15617,"Name":"Ufam Tobie","Points":9782,"X":383,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803307Z"},{"ID":15618,"Name":"Wioska","Points":10951,"X":380,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803307Z"},{"ID":15619,"Name":"Oeste dos","Points":5667,"X":385,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803308Z"},{"ID":15620,"Name":"070","Points":10311,"X":588,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803308Z"},{"ID":15621,"Name":"016","Points":9364,"X":483,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803309Z"},{"ID":15622,"Name":"[A]_[002] Dejv.oldplyr","Points":10444,"X":393,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803309Z"},{"ID":15623,"Name":"145 MIKOX 016","Points":8543,"X":589,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803309Z"},{"ID":15624,"Name":"A0041","Points":10362,"X":378,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80331Z"},{"ID":15625,"Name":"GOGOLICE","Points":10237,"X":514,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80331Z"},{"ID":15626,"Name":"Teby_22","Points":9638,"X":506,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803311Z"},{"ID":15627,"Name":"037.","Points":10223,"X":482,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803311Z"},{"ID":15628,"Name":"174","Points":10311,"X":549,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803312Z"},{"ID":15629,"Name":"Mniejsze zƂo 0019","Points":9746,"X":375,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803312Z"},{"ID":15630,"Name":"Ulu-mulu","Points":4789,"X":432,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803312Z"},{"ID":15631,"Name":"Myk i do kieszonki","Points":9799,"X":376,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803313Z"},{"ID":15632,"Name":"EKG 026 Dawid","Points":10120,"X":482,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803313Z"},{"ID":15633,"Name":".53","Points":10971,"X":382,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803313Z"},{"ID":15634,"Name":"Twierdza 3","Points":7565,"X":624,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803314Z"},{"ID":15635,"Name":"CALL 914","Points":10311,"X":509,"Y":626,"Continent":"K65","Bonus":5,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803314Z"},{"ID":15636,"Name":"Szlachcic 008","Points":10311,"X":619,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803315Z"},{"ID":15637,"Name":"089 Wioska barbarzyƄska","Points":9369,"X":595,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803315Z"},{"ID":15638,"Name":"Wioska","Points":10178,"X":379,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803315Z"},{"ID":15639,"Name":"znow zawijam lolka z grama","Points":5109,"X":392,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803316Z"},{"ID":15640,"Name":"0013","Points":10315,"X":620,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803316Z"},{"ID":15641,"Name":"Ręcznik do zmiany","Points":10160,"X":397,"Y":430,"Continent":"K43","Bonus":3,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803317Z"},{"ID":15642,"Name":"Avanti!","Points":9950,"X":375,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803317Z"},{"ID":15643,"Name":"026","Points":11130,"X":427,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803317Z"},{"ID":15644,"Name":"rakieta 010","Points":6155,"X":620,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803318Z"},{"ID":15645,"Name":"Czekam na VS","Points":10444,"X":543,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803318Z"},{"ID":15646,"Name":"Mniejsze zƂo 0001","Points":10147,"X":379,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803319Z"},{"ID":15647,"Name":"Wioska barbarzyƄska","Points":10495,"X":442,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803319Z"},{"ID":15648,"Name":"079","Points":7818,"X":624,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803319Z"},{"ID":15649,"Name":"031","Points":10295,"X":447,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80332Z"},{"ID":15650,"Name":"Taran","Points":10019,"X":545,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80332Z"},{"ID":15651,"Name":"099","Points":10593,"X":448,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803321Z"},{"ID":15653,"Name":"A024","Points":10233,"X":617,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803321Z"},{"ID":15654,"Name":"K34 - [030] Before Land","Points":10259,"X":454,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803321Z"},{"ID":15655,"Name":"Pustynia","Points":9816,"X":377,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803322Z"},{"ID":15657,"Name":"Wioska barbarzyƄska","Points":9574,"X":382,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803322Z"},{"ID":15658,"Name":"Taran","Points":9492,"X":549,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803323Z"},{"ID":15659,"Name":"Wioska 022","Points":9761,"X":595,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803323Z"},{"ID":15660,"Name":"075","Points":9899,"X":480,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803323Z"},{"ID":15661,"Name":"Mniejsze zƂo 0033","Points":10011,"X":374,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803324Z"},{"ID":15662,"Name":"HORUS","Points":9893,"X":517,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803324Z"},{"ID":15663,"Name":"055","Points":7878,"X":483,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803325Z"},{"ID":15664,"Name":"B008","Points":9819,"X":624,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803325Z"},{"ID":15665,"Name":"Pigmej","Points":9752,"X":376,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803325Z"},{"ID":15666,"Name":"22 im Ɓorenta","Points":9809,"X":583,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803326Z"},{"ID":15667,"Name":"Winter is coming","Points":9753,"X":500,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803326Z"},{"ID":15668,"Name":"Darma","Points":9835,"X":426,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803327Z"},{"ID":15669,"Name":"WW4","Points":10019,"X":618,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803327Z"},{"ID":15670,"Name":"Wioska barbarzyƄska","Points":10481,"X":614,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803327Z"},{"ID":15671,"Name":"Knowhere","Points":7775,"X":373,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803328Z"},{"ID":15672,"Name":"Wioska","Points":10178,"X":380,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803328Z"},{"ID":15673,"Name":"012 Wioska Crawley","Points":8071,"X":622,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803329Z"},{"ID":15674,"Name":"Wioska","Points":10178,"X":379,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803329Z"},{"ID":15675,"Name":"025 - AAAAA","Points":10254,"X":423,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803329Z"},{"ID":15676,"Name":"Ulu-mulu","Points":9472,"X":438,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80333Z"},{"ID":15677,"Name":"Gwiazda ƚmierci","Points":10495,"X":541,"Y":381,"Continent":"K35","Bonus":5,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80333Z"},{"ID":15678,"Name":"--002--","Points":10495,"X":425,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80333Z"},{"ID":15679,"Name":"Jaaa","Points":10479,"X":575,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803331Z"},{"ID":15680,"Name":"Gorzelnia","Points":10252,"X":622,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803331Z"},{"ID":15681,"Name":"*INTERTWINED**","Points":9711,"X":516,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803332Z"},{"ID":15682,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":521,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803332Z"},{"ID":15683,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":517,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803332Z"},{"ID":15684,"Name":"0048","Points":9649,"X":623,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803333Z"},{"ID":15685,"Name":"Wioska barbarzyƄska","Points":9835,"X":416,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803333Z"},{"ID":15686,"Name":"Bocianikson013","Points":7322,"X":612,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803333Z"},{"ID":15687,"Name":"Gryfios 001b","Points":11879,"X":621,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803334Z"},{"ID":15688,"Name":"FKG 01-12","Points":9835,"X":420,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803334Z"},{"ID":15689,"Name":"006. Blaviken","Points":10495,"X":566,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803335Z"},{"ID":15690,"Name":"Westcoast.014","Points":10178,"X":392,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803335Z"},{"ID":15691,"Name":"Wioska","Points":10178,"X":375,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803336Z"},{"ID":15692,"Name":"0150","Points":10252,"X":549,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803336Z"},{"ID":15693,"Name":"Wioska","Points":7303,"X":386,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803336Z"},{"ID":15694,"Name":"14 K-PAX","Points":6259,"X":622,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803337Z"},{"ID":15695,"Name":"038.","Points":10221,"X":483,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803337Z"},{"ID":15696,"Name":".037.","Points":10595,"X":489,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803338Z"},{"ID":15697,"Name":"Kentin ufam Tobie","Points":10000,"X":384,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803338Z"},{"ID":15699,"Name":"103","Points":10078,"X":446,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803338Z"},{"ID":15700,"Name":"*0006 Baraki","Points":10362,"X":607,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803339Z"},{"ID":15701,"Name":"Bocianikson008","Points":9958,"X":613,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803339Z"},{"ID":15702,"Name":"Wioska barbarzyƄska","Points":9650,"X":477,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80334Z"},{"ID":15703,"Name":"0340","Points":10495,"X":498,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80334Z"},{"ID":15704,"Name":"FKG 01-18","Points":9835,"X":419,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80334Z"},{"ID":15705,"Name":"003 Osada gazela","Points":9045,"X":622,"Y":467,"Continent":"K46","Bonus":2,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803341Z"},{"ID":15706,"Name":"PiekƂo to inni","Points":10019,"X":489,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803341Z"},{"ID":15707,"Name":"0157","Points":8500,"X":452,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803341Z"},{"ID":15708,"Name":"069 Fukuoka","Points":10495,"X":619,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803342Z"},{"ID":15709,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":528,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803343Z"},{"ID":15710,"Name":"Jaaa","Points":10495,"X":606,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803343Z"},{"ID":15711,"Name":"Wioska 014","Points":9761,"X":595,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803343Z"},{"ID":15712,"Name":"Wioska barbarzyƄska","Points":10008,"X":404,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803344Z"},{"ID":15713,"Name":"C 018","Points":10362,"X":564,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803344Z"},{"ID":15714,"Name":"[220] WEST","Points":10290,"X":616,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803344Z"},{"ID":15715,"Name":"ZachĂłd - 001","Points":10495,"X":398,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803345Z"},{"ID":15716,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":523,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803345Z"},{"ID":15717,"Name":"0000027%","Points":10160,"X":420,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803345Z"},{"ID":15718,"Name":"078. Vakar","Points":11678,"X":626,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803346Z"},{"ID":15719,"Name":"#064","Points":10636,"X":476,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803346Z"},{"ID":15720,"Name":"R-6","Points":9013,"X":550,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803347Z"},{"ID":15721,"Name":"W.181/13","Points":10242,"X":620,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803347Z"},{"ID":15722,"Name":"0028","Points":9993,"X":420,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803347Z"},{"ID":15723,"Name":"A032","Points":10481,"X":614,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803348Z"},{"ID":15724,"Name":"wioska12","Points":10362,"X":625,"Y":473,"Continent":"K46","Bonus":8,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803348Z"},{"ID":15725,"Name":"Czarny","Points":9835,"X":380,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803348Z"},{"ID":15726,"Name":"VN Tomyris","Points":9643,"X":466,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803349Z"},{"ID":15727,"Name":"Lord Arsey KING","Points":10285,"X":589,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803349Z"},{"ID":15728,"Name":"Kentin ufam Tobie","Points":10000,"X":388,"Y":443,"Continent":"K43","Bonus":4,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80335Z"},{"ID":15729,"Name":"A0124","Points":10362,"X":375,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80335Z"},{"ID":15730,"Name":"027 - Birmingham","Points":10495,"X":405,"Y":580,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80335Z"},{"ID":15731,"Name":"CALL 922","Points":10311,"X":556,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803351Z"},{"ID":15732,"Name":"Belvedere 020","Points":10311,"X":588,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803351Z"},{"ID":15733,"Name":"Ulu-mulu","Points":10886,"X":436,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803351Z"},{"ID":15734,"Name":"Gryfios 013","Points":11805,"X":616,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803352Z"},{"ID":15735,"Name":"Wioska ValiossQ","Points":10047,"X":558,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803352Z"},{"ID":15736,"Name":"A014","Points":10351,"X":612,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803353Z"},{"ID":15737,"Name":"*042*","Points":3351,"X":625,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803353Z"},{"ID":15738,"Name":"Kentin ufam Tobie","Points":10000,"X":387,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803353Z"},{"ID":15739,"Name":"Wioska barbarzyƄska 014|","Points":9372,"X":581,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803354Z"},{"ID":15740,"Name":"0029","Points":10495,"X":537,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803354Z"},{"ID":15741,"Name":"Knowhere","Points":10452,"X":373,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803355Z"},{"ID":15742,"Name":"069 - Wojenka","Points":10495,"X":420,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803355Z"},{"ID":15743,"Name":".028.","Points":10595,"X":486,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803355Z"},{"ID":15744,"Name":"Kentin ufam Tobie","Points":10000,"X":384,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803356Z"},{"ID":15745,"Name":"Teby_29","Points":9638,"X":505,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803356Z"},{"ID":15746,"Name":"Jaaa","Points":10476,"X":577,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803356Z"},{"ID":15747,"Name":"Wioska barbarzyƄska","Points":10484,"X":379,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803357Z"},{"ID":15748,"Name":"Jaaa","Points":10479,"X":608,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803357Z"},{"ID":15749,"Name":"Part XXXI","Points":10311,"X":533,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803358Z"},{"ID":15750,"Name":"*024*","Points":8108,"X":625,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803358Z"},{"ID":15751,"Name":"Avanti!","Points":9962,"X":375,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803358Z"},{"ID":15752,"Name":"Wioska barbarzyƄska","Points":10484,"X":399,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803359Z"},{"ID":15753,"Name":"Nowa 04","Points":9824,"X":612,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803359Z"},{"ID":15754,"Name":"Ciapkowo","Points":6905,"X":623,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803359Z"},{"ID":15755,"Name":"014.","Points":9573,"X":624,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80336Z"},{"ID":15756,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":521,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80336Z"},{"ID":15757,"Name":"Mut4ntMass","Points":10495,"X":623,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80336Z"},{"ID":15758,"Name":"009","Points":7846,"X":401,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803361Z"},{"ID":15759,"Name":"A0245","Points":10362,"X":377,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803361Z"},{"ID":15760,"Name":"MasterWolf12","Points":9013,"X":556,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803361Z"},{"ID":15761,"Name":"MojeSzczytToTwĂłjDno","Points":10487,"X":520,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803362Z"},{"ID":15762,"Name":"TRR 005","Points":10008,"X":411,"Y":414,"Continent":"K44","Bonus":4,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803362Z"},{"ID":15763,"Name":"Wioska","Points":10178,"X":383,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803362Z"},{"ID":15764,"Name":"004 Wolni farmerzy","Points":10478,"X":387,"Y":560,"Continent":"K53","Bonus":8,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803363Z"},{"ID":15765,"Name":"Wioska 008","Points":9761,"X":595,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803363Z"},{"ID":15766,"Name":"#018 A","Points":10019,"X":461,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803363Z"},{"ID":15767,"Name":"Jaaa","Points":10478,"X":611,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803364Z"},{"ID":15768,"Name":"SiƂa, Masa, RzeĆșba 04","Points":10578,"X":625,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803364Z"},{"ID":15769,"Name":"034","Points":9761,"X":502,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803364Z"},{"ID":15771,"Name":"Mniejsze zƂo 0041","Points":9911,"X":377,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803364Z"},{"ID":15772,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":522,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803365Z"},{"ID":15773,"Name":"Ulu-mulu","Points":10060,"X":429,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803365Z"},{"ID":15774,"Name":"FKG 01-17","Points":9835,"X":418,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803366Z"},{"ID":15775,"Name":"ADEN","Points":10311,"X":522,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803366Z"},{"ID":15776,"Name":"081 - PATO-orki","Points":10495,"X":436,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803366Z"},{"ID":15777,"Name":"A030","Points":10476,"X":618,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803367Z"},{"ID":15778,"Name":"010","Points":7406,"X":400,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803367Z"},{"ID":15779,"Name":"006","Points":8513,"X":478,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803368Z"},{"ID":15780,"Name":"Wioska","Points":10178,"X":381,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803368Z"},{"ID":15781,"Name":"0009","Points":9993,"X":421,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803368Z"},{"ID":15782,"Name":"Piękny ƛwiat*.*","Points":10160,"X":566,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803368Z"},{"ID":15783,"Name":"Diablooo","Points":9070,"X":561,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803369Z"},{"ID":15784,"Name":"008.Baltoro Sangri","Points":10495,"X":603,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803369Z"},{"ID":15785,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80337Z"},{"ID":15786,"Name":"Konfederacja 8","Points":9812,"X":460,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80337Z"},{"ID":15787,"Name":"Wioska barbarzyƄska 015|","Points":9582,"X":576,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80337Z"},{"ID":15788,"Name":"Wioska barbarzyƄska","Points":10481,"X":611,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803371Z"},{"ID":15789,"Name":"Bagdad","Points":10654,"X":478,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803371Z"},{"ID":15790,"Name":"#014","Points":10006,"X":485,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":849001572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803371Z"},{"ID":15791,"Name":"scoti","Points":10223,"X":494,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803372Z"},{"ID":15792,"Name":"+44 84 Grezieu la Varenne","Points":9454,"X":449,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803372Z"},{"ID":15793,"Name":"Wioska","Points":10222,"X":599,"Y":575,"Continent":"K55","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803372Z"},{"ID":15794,"Name":"008","Points":10160,"X":559,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803373Z"},{"ID":15795,"Name":"Wioska barbarzyƄska","Points":10008,"X":405,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803373Z"},{"ID":15796,"Name":"030.","Points":10316,"X":616,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803374Z"},{"ID":15797,"Name":"028. Rewir II","Points":7905,"X":398,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803374Z"},{"ID":15798,"Name":"034 | PALESTINA","Points":9544,"X":623,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803374Z"},{"ID":15799,"Name":"Szulernia","Points":10237,"X":408,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803375Z"},{"ID":15800,"Name":".007.","Points":10252,"X":496,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803375Z"},{"ID":15801,"Name":"Taran","Points":7189,"X":547,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803375Z"},{"ID":15802,"Name":"Avanti!","Points":9852,"X":377,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803376Z"},{"ID":15803,"Name":"Knowhere","Points":10452,"X":394,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803376Z"},{"ID":15804,"Name":"#0006 Iwagakure","Points":9761,"X":530,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803376Z"},{"ID":15806,"Name":"#0002 Kirigakure","Points":9761,"X":527,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803377Z"},{"ID":15807,"Name":"Osada koczownikĂłw","Points":10216,"X":603,"Y":571,"Continent":"K56","Bonus":4,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803377Z"},{"ID":15808,"Name":"-036-","Points":10479,"X":460,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803377Z"},{"ID":15809,"Name":"FKG 01-27","Points":9835,"X":413,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803377Z"},{"ID":15810,"Name":"Horyzont zdarzeƄ","Points":9835,"X":540,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803378Z"},{"ID":15811,"Name":"Tank 001. Szykullo","Points":10343,"X":398,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803378Z"},{"ID":15812,"Name":"Wioska barbarzyƄska","Points":9648,"X":439,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803378Z"},{"ID":15813,"Name":"Amnesia","Points":8940,"X":397,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803379Z"},{"ID":15814,"Name":"Wioska","Points":10178,"X":378,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803379Z"},{"ID":15815,"Name":"*INTERTWINED*","Points":9711,"X":516,"Y":626,"Continent":"K65","Bonus":7,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803379Z"},{"ID":15816,"Name":"VN Centurion","Points":10495,"X":453,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80338Z"},{"ID":15817,"Name":"Wioska","Points":10068,"X":403,"Y":423,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80338Z"},{"ID":15818,"Name":"Kentin ufam Tobie","Points":10000,"X":384,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80338Z"},{"ID":15819,"Name":"Ręcznik do zmiany","Points":10050,"X":394,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803381Z"},{"ID":15820,"Name":"Gattacka","Points":9358,"X":599,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803381Z"},{"ID":15821,"Name":"Wioska","Points":10178,"X":382,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803381Z"},{"ID":15822,"Name":"=012= Lecz GraĆŒyna zobaczyƂa","Points":10580,"X":612,"Y":553,"Continent":"K56","Bonus":3,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803382Z"},{"ID":15823,"Name":"MojeSzczytToTwĂłjDno","Points":10481,"X":524,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803383Z"},{"ID":15824,"Name":"A0011","Points":10362,"X":379,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803383Z"},{"ID":15825,"Name":"[002]","Points":9809,"X":619,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803383Z"},{"ID":15826,"Name":"Darma","Points":9835,"X":425,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803383Z"},{"ID":15827,"Name":"Avanti!","Points":9950,"X":377,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803384Z"},{"ID":15828,"Name":"A015","Points":10155,"X":613,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803384Z"},{"ID":15830,"Name":"Teby_24","Points":9638,"X":503,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803384Z"},{"ID":15831,"Name":"A0029","Points":10362,"X":379,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803385Z"},{"ID":15832,"Name":"023","Points":9911,"X":483,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803385Z"},{"ID":15833,"Name":"SsSs","Points":10160,"X":399,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803386Z"},{"ID":15834,"Name":"South K35","Points":10042,"X":556,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803386Z"},{"ID":15835,"Name":"Buk","Points":8458,"X":372,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803386Z"},{"ID":15836,"Name":"0025 XXARDASS","Points":9365,"X":427,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803386Z"},{"ID":15837,"Name":"SoƂtys Twojej Wsi","Points":9294,"X":438,"Y":391,"Continent":"K34","Bonus":5,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803387Z"},{"ID":15838,"Name":"Konfederacjan (LXIX) GieƂdanu","Points":10495,"X":522,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803387Z"},{"ID":15839,"Name":"Wioska barbarzyƄska","Points":10481,"X":613,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803387Z"},{"ID":15840,"Name":"186","Points":10311,"X":576,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803388Z"},{"ID":15841,"Name":"Defensywa IV","Points":10495,"X":575,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803388Z"},{"ID":15842,"Name":"Winter is coming","Points":9935,"X":503,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803388Z"},{"ID":15843,"Name":"krzysiek1293","Points":10122,"X":412,"Y":427,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803389Z"},{"ID":15844,"Name":"023. Lugdunum","Points":9185,"X":616,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803389Z"},{"ID":15845,"Name":"026","Points":9993,"X":379,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80339Z"},{"ID":15846,"Name":"003","Points":10495,"X":452,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699859013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80339Z"},{"ID":15847,"Name":"003.Annapurna","Points":10495,"X":605,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80339Z"},{"ID":15848,"Name":"Mniejsze zƂo 0005","Points":9783,"X":375,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803391Z"},{"ID":15849,"Name":"SINGED X SZEF","Points":9994,"X":492,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803391Z"},{"ID":15850,"Name":"Skarbonka (cado)","Points":9835,"X":416,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803391Z"},{"ID":15851,"Name":"Avanti!","Points":9959,"X":375,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803392Z"},{"ID":15852,"Name":"*0014 Baraki","Points":10187,"X":604,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803392Z"},{"ID":15853,"Name":"FAKE OR OFF","Points":9816,"X":436,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803392Z"},{"ID":15854,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":499,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803393Z"},{"ID":15855,"Name":"002.Avicenny","Points":10495,"X":604,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803393Z"},{"ID":15856,"Name":"026.xxx","Points":10045,"X":449,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803394Z"},{"ID":15857,"Name":"002b d","Points":8938,"X":394,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803394Z"},{"ID":15858,"Name":"Darma","Points":9835,"X":429,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803394Z"},{"ID":15859,"Name":"Kraal","Points":9761,"X":377,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803395Z"},{"ID":15860,"Name":"050 | PALESTINA","Points":9544,"X":622,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803395Z"},{"ID":15861,"Name":"#0022","Points":7250,"X":519,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803395Z"},{"ID":15862,"Name":"Wioska 003","Points":9761,"X":594,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803396Z"},{"ID":15863,"Name":"0013 BBBB","Points":10539,"X":425,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803396Z"},{"ID":15864,"Name":"SiƂa, Masa, RzeĆșba 08","Points":9522,"X":622,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803397Z"},{"ID":15865,"Name":"FKG 01-24","Points":9835,"X":420,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803397Z"},{"ID":15866,"Name":"010 Wioska","Points":6381,"X":625,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803398Z"},{"ID":15867,"Name":"#023 A","Points":9835,"X":457,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803398Z"},{"ID":15868,"Name":"147 MIKOX 021","Points":7694,"X":591,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803398Z"},{"ID":15869,"Name":"001 Wioska DonSzwagreone","Points":10068,"X":528,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803399Z"},{"ID":15870,"Name":"0016","Points":10252,"X":556,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803399Z"},{"ID":15871,"Name":"Wioska","Points":10178,"X":377,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8034Z"},{"ID":15872,"Name":"012 Ile typa many","Points":10478,"X":390,"Y":563,"Continent":"K53","Bonus":4,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8034Z"},{"ID":15873,"Name":"030","Points":9993,"X":381,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8034Z"},{"ID":15874,"Name":"Deka","Points":10495,"X":627,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803401Z"},{"ID":15875,"Name":"To co masz Ty","Points":10083,"X":572,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803401Z"},{"ID":15876,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":519,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803402Z"},{"ID":15877,"Name":"Jaaa","Points":10481,"X":606,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803402Z"},{"ID":15878,"Name":"ADEN","Points":9737,"X":519,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803403Z"},{"ID":15879,"Name":"Part XXIV","Points":10495,"X":537,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803403Z"},{"ID":15880,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":527,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803403Z"},{"ID":15881,"Name":"Wioska barbarzyƄska","Points":9835,"X":422,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803404Z"},{"ID":15882,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":527,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803404Z"},{"ID":15883,"Name":"VN Wu Zetian","Points":9655,"X":468,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803404Z"},{"ID":15884,"Name":"013 - melina","Points":9110,"X":416,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803405Z"},{"ID":15885,"Name":"HORUS...","Points":9939,"X":516,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803405Z"},{"ID":15886,"Name":"009","Points":9936,"X":619,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803406Z"},{"ID":15887,"Name":"Defensywa I","Points":10132,"X":576,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803406Z"},{"ID":15889,"Name":"043 OZDR","Points":9902,"X":463,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803406Z"},{"ID":15890,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":533,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803407Z"},{"ID":15891,"Name":"Kentin ufam Tobie","Points":10000,"X":390,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803407Z"},{"ID":15892,"Name":"005","Points":10019,"X":615,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803408Z"},{"ID":15893,"Name":"Wioska barbarzyƄska","Points":10072,"X":381,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803408Z"},{"ID":15894,"Name":"0432","Points":10019,"X":543,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803408Z"},{"ID":15895,"Name":"Pobozowisko","Points":10971,"X":409,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803409Z"},{"ID":15896,"Name":"Westcoast.011","Points":10178,"X":392,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803409Z"},{"ID":15897,"Name":"#0008 Kusagakure","Points":9761,"X":530,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80341Z"},{"ID":15898,"Name":"W.181/18","Points":10242,"X":622,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80341Z"},{"ID":15899,"Name":"xDD","Points":6674,"X":439,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80341Z"},{"ID":15900,"Name":"Berlin","Points":9029,"X":397,"Y":574,"Continent":"K53","Bonus":5,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803411Z"},{"ID":15901,"Name":"032","Points":10311,"X":585,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803411Z"},{"ID":15902,"Name":"MojeSzczytToTwĂłjDno","Points":10287,"X":531,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803411Z"},{"ID":15903,"Name":"E 007","Points":9997,"X":590,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803412Z"},{"ID":15904,"Name":"100 Wioska barbarzyƄska","Points":9319,"X":597,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803412Z"},{"ID":15905,"Name":"XXXVI","Points":10495,"X":538,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803413Z"},{"ID":15906,"Name":"Bagdad","Points":10654,"X":473,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803413Z"},{"ID":15907,"Name":"Wioska barbarzyƄska","Points":10365,"X":529,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803414Z"},{"ID":15908,"Name":"C003","Points":10495,"X":574,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803414Z"},{"ID":15909,"Name":"015. Winter is coming","Points":10266,"X":481,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803414Z"},{"ID":15910,"Name":"002 Hello Moto","Points":10001,"X":596,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803415Z"},{"ID":15911,"Name":"Taran","Points":9379,"X":548,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803415Z"},{"ID":15912,"Name":"027.","Points":10218,"X":491,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803416Z"},{"ID":15913,"Name":"SƂawno","Points":6573,"X":388,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803416Z"},{"ID":15914,"Name":"003","Points":10019,"X":508,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803416Z"},{"ID":15916,"Name":"0003","Points":10495,"X":413,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803417Z"},{"ID":15917,"Name":"Myk i do kieszonki","Points":8208,"X":376,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803417Z"},{"ID":15918,"Name":"=013= Sporego grzyba...","Points":10580,"X":613,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803418Z"},{"ID":15919,"Name":"0009","Points":10211,"X":566,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803418Z"},{"ID":15921,"Name":"C Pld 002 Kijow","Points":6785,"X":409,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803418Z"},{"ID":15922,"Name":"Wioska barbarzyƄska","Points":9983,"X":484,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803419Z"},{"ID":15923,"Name":"Wioska","Points":10178,"X":377,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803419Z"},{"ID":15924,"Name":"Sparta_09","Points":9638,"X":497,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80342Z"},{"ID":15925,"Name":"Zeta Reticuli S","Points":11188,"X":405,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80342Z"},{"ID":15926,"Name":"#019.496|503","Points":9735,"X":615,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803421Z"},{"ID":15927,"Name":"045","Points":9747,"X":543,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803421Z"},{"ID":15928,"Name":"#002.490|496","Points":9735,"X":609,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803421Z"},{"ID":15929,"Name":"014","Points":9825,"X":476,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803422Z"},{"ID":15930,"Name":"017.","Points":10479,"X":487,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803422Z"},{"ID":15931,"Name":"Jehu_Kingdom_34_","Points":9993,"X":618,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803423Z"},{"ID":15932,"Name":"Jaaa","Points":10484,"X":614,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803423Z"},{"ID":15933,"Name":"Pobozowisko","Points":10301,"X":413,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803424Z"},{"ID":15934,"Name":"003","Points":9958,"X":381,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803424Z"},{"ID":15935,"Name":"Hojo s Laboratory Main Level","Points":10426,"X":521,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803424Z"},{"ID":15936,"Name":"Bocianikson011","Points":9409,"X":621,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803425Z"},{"ID":15937,"Name":"005.","Points":9761,"X":614,"Y":547,"Continent":"K56","Bonus":5,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803425Z"},{"ID":15939,"Name":"025","Points":10718,"X":429,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803426Z"},{"ID":15940,"Name":"034","Points":6666,"X":627,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803426Z"},{"ID":15941,"Name":"Momito","Points":9761,"X":468,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803426Z"},{"ID":15942,"Name":"0055 w","Points":10147,"X":443,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803427Z"},{"ID":15943,"Name":"K34 - [020] Before Land","Points":10259,"X":448,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803427Z"},{"ID":15944,"Name":"Stadio Olimpico","Points":10252,"X":625,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803427Z"},{"ID":15945,"Name":"Wioska","Points":10259,"X":606,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803428Z"},{"ID":15946,"Name":"#031","Points":10393,"X":468,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803429Z"},{"ID":15947,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":530,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803429Z"},{"ID":15948,"Name":"06 im Jegorowa","Points":9809,"X":584,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803429Z"},{"ID":15949,"Name":"Wioska barbarzyƄska","Points":9656,"X":593,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80343Z"},{"ID":15950,"Name":"karas","Points":8900,"X":376,"Y":492,"Continent":"K43","Bonus":3,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80343Z"},{"ID":15951,"Name":"Wioska (024)","Points":9368,"X":622,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803431Z"},{"ID":15952,"Name":"144 MIKOX 015","Points":9209,"X":589,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803431Z"},{"ID":15953,"Name":"x001","Points":7165,"X":398,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803432Z"},{"ID":15954,"Name":"Liana","Points":9761,"X":372,"Y":495,"Continent":"K43","Bonus":5,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803432Z"},{"ID":15955,"Name":"A0125","Points":10362,"X":372,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803433Z"},{"ID":15956,"Name":"0062","Points":10083,"X":457,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803433Z"},{"ID":15957,"Name":"Wioska barbarzyƄska","Points":9971,"X":376,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803434Z"},{"ID":15958,"Name":"Wioska 005","Points":9761,"X":595,"Y":579,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803434Z"},{"ID":15959,"Name":"SoƂtys Twojej wsi","Points":9481,"X":435,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803434Z"},{"ID":15960,"Name":"A-005","Points":10580,"X":417,"Y":408,"Continent":"K44","Bonus":9,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803435Z"},{"ID":15961,"Name":"Pobozowisko","Points":10955,"X":412,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803435Z"},{"ID":15962,"Name":"VN Seondeok","Points":9636,"X":470,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803436Z"},{"ID":15963,"Name":"DOOSAN PUMA 2100LMS","Points":9825,"X":530,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803436Z"},{"ID":15964,"Name":"Yyy","Points":10132,"X":497,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803436Z"},{"ID":15965,"Name":"A READY","Points":10019,"X":593,"Y":414,"Continent":"K45","Bonus":6,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803437Z"},{"ID":15966,"Name":"040 PotÄ™ĆŒny Dzban","Points":9370,"X":388,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803437Z"},{"ID":15967,"Name":"014. Wraca","Points":10229,"X":487,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803438Z"},{"ID":15968,"Name":"Wioska barbarzyƄska","Points":9959,"X":380,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803438Z"},{"ID":15969,"Name":"Jaaa","Points":10543,"X":608,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803439Z"},{"ID":15970,"Name":"Piwna 01","Points":9318,"X":613,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803439Z"},{"ID":15971,"Name":"035","Points":9761,"X":503,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803439Z"},{"ID":15972,"Name":"Mniejsze zƂo 0080","Points":7207,"X":377,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80344Z"},{"ID":15973,"Name":"007 GrĂłjec","Points":9549,"X":549,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80344Z"},{"ID":15975,"Name":"EKG 022 WZ","Points":10292,"X":496,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803441Z"},{"ID":15976,"Name":"Vileda","Points":10190,"X":402,"Y":524,"Continent":"K54","Bonus":0,"PlayerID":1804724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803441Z"},{"ID":15977,"Name":"A.003","Points":9362,"X":408,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803441Z"},{"ID":15978,"Name":"A003","Points":10362,"X":614,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803442Z"},{"ID":15979,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":507,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803442Z"},{"ID":15980,"Name":"Jaaa","Points":10479,"X":621,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803442Z"},{"ID":15981,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803443Z"},{"ID":15982,"Name":"Teby_25","Points":9638,"X":505,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803443Z"},{"ID":15984,"Name":"Wioska barbarzyƄska","Points":9965,"X":379,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803444Z"},{"ID":15985,"Name":"Jaaa","Points":10476,"X":620,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803444Z"},{"ID":15986,"Name":"021","Points":9899,"X":625,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803444Z"},{"ID":15987,"Name":"D03","Points":9928,"X":622,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803445Z"},{"ID":15988,"Name":"*047*","Points":9713,"X":629,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803445Z"},{"ID":15989,"Name":"006","Points":9936,"X":618,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803446Z"},{"ID":15990,"Name":"008. Angmar","Points":10271,"X":492,"Y":627,"Continent":"K64","Bonus":3,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803446Z"},{"ID":15991,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":521,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803446Z"},{"ID":15992,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":530,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803447Z"},{"ID":15993,"Name":"Westcoast.069","Points":10178,"X":394,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803447Z"},{"ID":15994,"Name":"008","Points":7729,"X":401,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803448Z"},{"ID":15995,"Name":"Ulu-mulu","Points":11911,"X":435,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803448Z"},{"ID":15996,"Name":"030 - Londyn","Points":10495,"X":406,"Y":581,"Continent":"K54","Bonus":8,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803448Z"},{"ID":15997,"Name":"Wioska barbarzyƄska","Points":10008,"X":404,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803449Z"},{"ID":15998,"Name":"Ulu-mulu","Points":11678,"X":428,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803449Z"},{"ID":15999,"Name":"012","Points":10019,"X":504,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80345Z"},{"ID":16000,"Name":"Taran","Points":9374,"X":546,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80345Z"},{"ID":16001,"Name":"Wioska barbarzyƄska","Points":10047,"X":405,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80345Z"},{"ID":16002,"Name":"Westcoast.017","Points":10178,"X":389,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803451Z"},{"ID":16003,"Name":"***9f***","Points":9013,"X":553,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803451Z"},{"ID":16004,"Name":"FKG 01-34","Points":9835,"X":412,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803452Z"},{"ID":16005,"Name":"Wioska MoonWalk","Points":10475,"X":379,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803452Z"},{"ID":16006,"Name":"Wioska barbarzyƄska","Points":10008,"X":403,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803452Z"},{"ID":16007,"Name":"A025","Points":10476,"X":617,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803453Z"},{"ID":16008,"Name":"#0007 Otogakure","Points":9761,"X":531,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803453Z"},{"ID":16009,"Name":"ADEN","Points":9737,"X":524,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803454Z"},{"ID":16010,"Name":"Westcoast.068","Points":10178,"X":389,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803454Z"},{"ID":16011,"Name":"Wioska 028","Points":9761,"X":600,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803454Z"},{"ID":16012,"Name":"113 Wioska barbarzyƄska","Points":10495,"X":387,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803455Z"},{"ID":16013,"Name":"ADEN","Points":9737,"X":524,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803455Z"},{"ID":16014,"Name":"042 OZDR","Points":9902,"X":465,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803456Z"},{"ID":16015,"Name":"Pobozowisko","Points":10172,"X":406,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803456Z"},{"ID":16016,"Name":"Wioska 006","Points":9761,"X":592,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803456Z"},{"ID":16017,"Name":"Pobozowisko","Points":10945,"X":417,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803457Z"},{"ID":16018,"Name":"009.Baintha Brakk","Points":10495,"X":605,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803457Z"},{"ID":16019,"Name":"Czekam na VS","Points":10495,"X":539,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803457Z"},{"ID":16020,"Name":"Wioska barbarzyƄska","Points":6557,"X":390,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803458Z"},{"ID":16021,"Name":"Jaaa","Points":10495,"X":605,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803458Z"},{"ID":16022,"Name":"001","Points":4484,"X":628,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699139964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803459Z"},{"ID":16023,"Name":"Wioska barbarzyƄska","Points":9392,"X":479,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803459Z"},{"ID":16024,"Name":"A019","Points":10475,"X":616,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80346Z"},{"ID":16025,"Name":"Wioska barbarzyƄska","Points":9761,"X":531,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699869682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80346Z"},{"ID":16026,"Name":"Westcoast.028","Points":10178,"X":397,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80346Z"},{"ID":16027,"Name":"A.022","Points":10221,"X":404,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803461Z"},{"ID":16028,"Name":"009.","Points":10167,"X":563,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803461Z"},{"ID":16029,"Name":"Wioska barbarzyƄska","Points":9962,"X":379,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803461Z"},{"ID":16030,"Name":"BiaƂa Cerkiew","Points":9761,"X":377,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803462Z"},{"ID":16031,"Name":"Lagović","Points":3973,"X":436,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803462Z"},{"ID":16032,"Name":"Osada koczownikĂłw","Points":10068,"X":400,"Y":424,"Continent":"K44","Bonus":1,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803463Z"},{"ID":16034,"Name":"Myk i do kieszonki","Points":9799,"X":377,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803463Z"},{"ID":16036,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":445,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803463Z"},{"ID":16037,"Name":"K34 - [058] Before Land","Points":10259,"X":457,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803464Z"},{"ID":16038,"Name":"CALL 929","Points":10311,"X":509,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803464Z"},{"ID":16039,"Name":"051","Points":10316,"X":568,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803465Z"},{"ID":16040,"Name":"Kentin ufam Tobie","Points":10000,"X":386,"Y":449,"Continent":"K43","Bonus":4,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803465Z"},{"ID":16041,"Name":"E 001","Points":10479,"X":592,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803465Z"},{"ID":16042,"Name":"0053","Points":9274,"X":625,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803466Z"},{"ID":16043,"Name":"*044*","Points":4828,"X":625,"Y":490,"Continent":"K46","Bonus":7,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803466Z"},{"ID":16044,"Name":"Pobozowisko","Points":10950,"X":410,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803467Z"},{"ID":16045,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":533,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803467Z"},{"ID":16046,"Name":"sony911","Points":10222,"X":565,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803468Z"},{"ID":16047,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":438,"Y":611,"Continent":"K64","Bonus":6,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803468Z"},{"ID":16048,"Name":"098 Aneta 420","Points":7190,"X":390,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803469Z"},{"ID":16049,"Name":"188","Points":10311,"X":569,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803469Z"},{"ID":16051,"Name":"Karhold","Points":10495,"X":481,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803469Z"},{"ID":16052,"Name":"0010","Points":9993,"X":422,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80347Z"},{"ID":16053,"Name":"U-03","Points":9549,"X":561,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80347Z"},{"ID":16054,"Name":"0047","Points":10019,"X":455,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803471Z"},{"ID":16055,"Name":"#0003","Points":9814,"X":516,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803471Z"},{"ID":16056,"Name":"Wioska barbarzyƄska","Points":10008,"X":406,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803471Z"},{"ID":16057,"Name":"A0305","Points":10362,"X":374,"Y":508,"Continent":"K53","Bonus":6,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803472Z"},{"ID":16058,"Name":"Jaaa","Points":10474,"X":593,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803472Z"},{"ID":16059,"Name":"Pobozowisko","Points":9266,"X":400,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803473Z"},{"ID":16060,"Name":"Wioska","Points":10178,"X":381,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803473Z"},{"ID":16061,"Name":"K34 x012","Points":8348,"X":449,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803473Z"},{"ID":16062,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":530,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803474Z"},{"ID":16063,"Name":"A0079","Points":10362,"X":374,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803474Z"},{"ID":16064,"Name":".008.","Points":10224,"X":495,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803474Z"},{"ID":16065,"Name":"148 MIKOX 024","Points":9888,"X":592,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803475Z"},{"ID":16066,"Name":"[005]","Points":9809,"X":620,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803475Z"},{"ID":16067,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":522,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803475Z"},{"ID":16068,"Name":"FKG 01-14","Points":9835,"X":421,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803476Z"},{"ID":16069,"Name":"PYRLANDIA 022 Menager s + 8k","Points":10495,"X":565,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803476Z"},{"ID":16070,"Name":"21 im Sierowa","Points":9809,"X":583,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803477Z"},{"ID":16071,"Name":"Wioska 011","Points":9761,"X":596,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803477Z"},{"ID":16072,"Name":"004","Points":9988,"X":559,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803478Z"},{"ID":16073,"Name":"*INTERTWINED*","Points":9711,"X":510,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803478Z"},{"ID":16074,"Name":"Darma","Points":9835,"X":430,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803479Z"},{"ID":16075,"Name":"Wioska barbarzyƄska","Points":9835,"X":424,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803479Z"},{"ID":16076,"Name":"Darma","Points":9835,"X":426,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80348Z"},{"ID":16077,"Name":"Wioska barbarzyƄska","Points":10484,"X":614,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80348Z"},{"ID":16078,"Name":"Wioska barbarzyƄska","Points":7347,"X":438,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80348Z"},{"ID":16079,"Name":"007 Wioska barbarzyƄska","Points":10178,"X":532,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803481Z"},{"ID":16080,"Name":"Pobozowisko","Points":9564,"X":408,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803481Z"},{"ID":16081,"Name":"Sfinks","Points":10019,"X":375,"Y":499,"Continent":"K43","Bonus":9,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803482Z"},{"ID":16082,"Name":"EKG 021 Broonx","Points":10090,"X":490,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803482Z"},{"ID":16083,"Name":"C 008","Points":10362,"X":580,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803483Z"},{"ID":16084,"Name":"Belvedere 008","Points":10311,"X":583,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803483Z"},{"ID":16085,"Name":"104 ***9d*** Porzeczka","Points":10001,"X":553,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803483Z"},{"ID":16086,"Name":"016.","Points":10478,"X":488,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803484Z"},{"ID":16087,"Name":"Myk i do kieszonki","Points":9799,"X":375,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803484Z"},{"ID":16088,"Name":"005","Points":10019,"X":510,"Y":373,"Continent":"K35","Bonus":3,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803484Z"},{"ID":16089,"Name":"sie jara od nocy do rana","Points":6094,"X":399,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803485Z"},{"ID":16090,"Name":"*0008 Baraki","Points":10189,"X":609,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803485Z"},{"ID":16091,"Name":"#0004 Sunagakure","Points":9761,"X":529,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803486Z"},{"ID":16092,"Name":"Bocianikson009","Points":9958,"X":615,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803486Z"},{"ID":16093,"Name":"Jaaa","Points":10495,"X":615,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803486Z"},{"ID":16094,"Name":"Ręcznik do zmiany","Points":10362,"X":395,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803487Z"},{"ID":16096,"Name":"Horyzont zdarzeƄ","Points":9835,"X":536,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803487Z"},{"ID":16097,"Name":"019 OTWÓRZ RYJ TEEEJ","Points":10481,"X":624,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803487Z"},{"ID":16098,"Name":"Vasperland_022","Points":10376,"X":625,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803488Z"},{"ID":16099,"Name":"Wioska (002)","Points":8531,"X":620,"Y":469,"Continent":"K46","Bonus":4,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803488Z"},{"ID":16100,"Name":"020","Points":10143,"X":500,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803489Z"},{"ID":16101,"Name":"CALL 926","Points":10311,"X":556,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803489Z"},{"ID":16102,"Name":"A001","Points":10094,"X":515,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80349Z"},{"ID":16103,"Name":"Wioska","Points":6916,"X":383,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80349Z"},{"ID":16104,"Name":"029","Points":9744,"X":565,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803491Z"},{"ID":16105,"Name":"Wioska Aizen-T","Points":9835,"X":411,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803491Z"},{"ID":16106,"Name":"0002","Points":10495,"X":414,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803491Z"},{"ID":16107,"Name":"Wioska (014)","Points":9713,"X":624,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803492Z"},{"ID":16108,"Name":"09. Gentiana","Points":10495,"X":523,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803492Z"},{"ID":16109,"Name":"002 Plantacja Marchewy","Points":9234,"X":394,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803493Z"},{"ID":16110,"Name":"Jaaa","Points":10396,"X":596,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803493Z"},{"ID":16111,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":573,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803493Z"},{"ID":16112,"Name":"Jaaa","Points":10487,"X":576,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803494Z"},{"ID":16113,"Name":"Lord Arsey KING","Points":7301,"X":593,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803494Z"},{"ID":16115,"Name":"Jaaa","Points":9876,"X":580,"Y":596,"Continent":"K55","Bonus":3,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803494Z"},{"ID":16116,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":576,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803495Z"},{"ID":16117,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":515,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803495Z"},{"ID":16119,"Name":"Pobozowisko","Points":10971,"X":403,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803496Z"},{"ID":16120,"Name":"037","Points":10495,"X":577,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803496Z"},{"ID":16122,"Name":"Shallow","Points":10160,"X":575,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803496Z"},{"ID":16123,"Name":"Jaaa","Points":10487,"X":622,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803497Z"},{"ID":16124,"Name":"Wioska barbarzyƄska","Points":11130,"X":444,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803497Z"},{"ID":16125,"Name":"BoOmBaa..","Points":9856,"X":445,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803497Z"},{"ID":16126,"Name":"Merin","Points":7865,"X":482,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803498Z"},{"ID":16127,"Name":"30. Wioska 30","Points":9424,"X":392,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803499Z"},{"ID":16128,"Name":"Gattacka","Points":9550,"X":601,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803499Z"},{"ID":16129,"Name":"#001.500|500","Points":9735,"X":619,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803499Z"},{"ID":16130,"Name":"Wioska barbarzyƄska","Points":5559,"X":590,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8035Z"},{"ID":16131,"Name":"- 087 -","Points":10000,"X":552,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8035Z"},{"ID":16132,"Name":"K34 - [059] Before Land","Points":10259,"X":455,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8035Z"},{"ID":16133,"Name":"Szlachcic PóƂnoc 004","Points":10311,"X":629,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803501Z"},{"ID":16134,"Name":"Wioska barbarzyƄska","Points":10475,"X":614,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803501Z"},{"ID":16135,"Name":"Oaza","Points":9211,"X":568,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803502Z"},{"ID":16136,"Name":"Konfederacja","Points":9737,"X":461,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803502Z"},{"ID":16137,"Name":"031 PotÄ™ĆŒny Dzban","Points":10479,"X":385,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803502Z"},{"ID":16138,"Name":"A0043","Points":10362,"X":378,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803503Z"},{"ID":16139,"Name":"E 010","Points":9783,"X":587,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803503Z"},{"ID":16140,"Name":"Teby_30","Points":9638,"X":504,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803504Z"},{"ID":16141,"Name":"A0154","Points":10362,"X":373,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803504Z"},{"ID":16142,"Name":"Wioska barbarzyƄska","Points":10551,"X":381,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803504Z"},{"ID":16143,"Name":"037 OZDR","Points":9899,"X":467,"Y":625,"Continent":"K64","Bonus":5,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803505Z"},{"ID":16144,"Name":"[080]","Points":9962,"X":560,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803505Z"},{"ID":16145,"Name":"Jaaa","Points":9902,"X":613,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803506Z"},{"ID":16146,"Name":"Jaaa","Points":10474,"X":578,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803506Z"},{"ID":16147,"Name":"0028","Points":10074,"X":625,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803507Z"},{"ID":16148,"Name":"03 im Berii","Points":9809,"X":595,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803507Z"},{"ID":16149,"Name":"Kentin ufam Tobie","Points":10000,"X":386,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803508Z"},{"ID":16150,"Name":"kkkk","Points":10478,"X":425,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803508Z"},{"ID":16151,"Name":"zakƂad pogrzebowy to juĆŒ czas","Points":10495,"X":566,"Y":605,"Continent":"K65","Bonus":4,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803508Z"},{"ID":16152,"Name":"017","Points":10019,"X":503,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803509Z"},{"ID":16153,"Name":"A-006","Points":10580,"X":414,"Y":406,"Continent":"K44","Bonus":9,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803509Z"},{"ID":16154,"Name":"Wioska barbarzyƄska","Points":9835,"X":417,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803509Z"},{"ID":16155,"Name":"045 OZDR","Points":9825,"X":464,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80351Z"},{"ID":16156,"Name":"014 Wioska","Points":7868,"X":621,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80351Z"},{"ID":16157,"Name":"016","Points":9825,"X":476,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80351Z"},{"ID":16158,"Name":"Kentin ufam Tobie","Points":10000,"X":387,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803511Z"},{"ID":16159,"Name":"0150","Points":6715,"X":626,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803511Z"},{"ID":16160,"Name":".012.","Points":10316,"X":497,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803512Z"},{"ID":16161,"Name":"Kentin ufam Tobie","Points":10000,"X":386,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803512Z"},{"ID":16162,"Name":"Pobozowisko","Points":10971,"X":410,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803512Z"},{"ID":16163,"Name":"Kentin ufam Tobie","Points":10000,"X":388,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803513Z"},{"ID":16164,"Name":"Bravo","Points":8159,"X":609,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803513Z"},{"ID":16165,"Name":"012.","Points":9966,"X":564,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803514Z"},{"ID":16166,"Name":"Jaaa","Points":10484,"X":592,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803514Z"},{"ID":16167,"Name":"0001","Points":10495,"X":415,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803514Z"},{"ID":16169,"Name":"Westcoast.051","Points":10178,"X":399,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803515Z"},{"ID":16170,"Name":"006","Points":10311,"X":581,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803515Z"},{"ID":16171,"Name":"0029","Points":10189,"X":621,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803516Z"},{"ID":16172,"Name":"VN Tomoe Gozen","Points":10311,"X":451,"Y":380,"Continent":"K34","Bonus":9,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803516Z"},{"ID":16173,"Name":"SoƂtys Wsi Filters","Points":9718,"X":437,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803516Z"},{"ID":16174,"Name":"VN Hisoka","Points":9667,"X":478,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803517Z"},{"ID":16175,"Name":"Westcoast.002","Points":10178,"X":390,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803517Z"},{"ID":16176,"Name":"Pobozowisko","Points":9635,"X":409,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803518Z"},{"ID":16177,"Name":"Knowhere","Points":10452,"X":373,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803518Z"},{"ID":16178,"Name":"023 PotÄ™ĆŒny Dzban","Points":9135,"X":391,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803519Z"},{"ID":16179,"Name":"Wioska GoƂabek","Points":10216,"X":592,"Y":584,"Continent":"K55","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803519Z"},{"ID":16180,"Name":"0004","Points":10495,"X":415,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80352Z"},{"ID":16181,"Name":"Szulernia","Points":9738,"X":409,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80352Z"},{"ID":16182,"Name":"A026","Points":10348,"X":617,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803521Z"},{"ID":16183,"Name":"A015","Points":9925,"X":514,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803521Z"},{"ID":16184,"Name":"SoƂtys Twojej Wsi","Points":9378,"X":435,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803522Z"},{"ID":16185,"Name":"029. Aquitania","Points":9419,"X":623,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803522Z"},{"ID":16186,"Name":"Taran","Points":9364,"X":549,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803522Z"},{"ID":16187,"Name":"Kentin ufam Tobie","Points":10000,"X":387,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803523Z"},{"ID":16188,"Name":"Kokoyashi","Points":10544,"X":491,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803523Z"},{"ID":16189,"Name":"Westcoast.018","Points":10178,"X":392,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803524Z"},{"ID":16190,"Name":"Myk i do kieszonki","Points":8939,"X":374,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803524Z"},{"ID":16191,"Name":"051 OZDR","Points":10559,"X":480,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803524Z"},{"ID":16192,"Name":"Jaaa","Points":10479,"X":581,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803525Z"},{"ID":16193,"Name":"Wioska fikumiku111","Points":9031,"X":565,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803525Z"},{"ID":16194,"Name":"Pobozowisko","Points":10873,"X":411,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803525Z"},{"ID":16195,"Name":"Sony 911","Points":9947,"X":567,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803526Z"},{"ID":16196,"Name":"024","Points":11130,"X":430,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803526Z"},{"ID":16197,"Name":"Yyyy","Points":10132,"X":499,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803526Z"},{"ID":16198,"Name":"17 im Kanukowa","Points":9809,"X":587,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803527Z"},{"ID":16199,"Name":"010","Points":10311,"X":576,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803527Z"},{"ID":16200,"Name":"Ulu-mulu","Points":6311,"X":421,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803528Z"},{"ID":16201,"Name":"Kentin ufam Tobie","Points":10019,"X":433,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803528Z"},{"ID":16202,"Name":"Belvedere 009","Points":7095,"X":580,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803528Z"},{"ID":16203,"Name":"01 Hiszpania","Points":10426,"X":586,"Y":489,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803529Z"},{"ID":16204,"Name":"Westcoast.058","Points":10178,"X":390,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803529Z"},{"ID":16205,"Name":"K34 - [012] Before Land","Points":10259,"X":457,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80353Z"},{"ID":16206,"Name":"Wioska","Points":10178,"X":380,"Y":549,"Continent":"K53","Bonus":5,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80353Z"},{"ID":16207,"Name":"044","Points":9825,"X":541,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803531Z"},{"ID":16208,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803531Z"},{"ID":16209,"Name":"007","Points":10311,"X":589,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803531Z"},{"ID":16210,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":531,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803532Z"},{"ID":16211,"Name":"Wioska (012)","Points":9694,"X":625,"Y":470,"Continent":"K46","Bonus":1,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803532Z"},{"ID":16212,"Name":"mklo","Points":9737,"X":537,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803533Z"},{"ID":16213,"Name":"A0306","Points":10362,"X":372,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803533Z"},{"ID":16214,"Name":"D013","Points":10495,"X":586,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803533Z"},{"ID":16215,"Name":"FKG 01-22","Points":9835,"X":414,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803534Z"},{"ID":16216,"Name":"Brat447","Points":10476,"X":387,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803534Z"},{"ID":16217,"Name":"Wioska barbarzyƄska","Points":9782,"X":380,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803534Z"},{"ID":16218,"Name":"K34 - [036] Before Land","Points":10259,"X":461,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803535Z"},{"ID":16219,"Name":".011.","Points":10316,"X":497,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803535Z"},{"ID":16220,"Name":".026.","Points":10301,"X":484,"Y":374,"Continent":"K34","Bonus":7,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803536Z"},{"ID":16221,"Name":"Wioska","Points":10178,"X":383,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803536Z"},{"ID":16222,"Name":"A0081","Points":10362,"X":371,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803537Z"},{"ID":16223,"Name":"Ob1","Points":9710,"X":599,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":8192845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803537Z"},{"ID":16224,"Name":"Wioska barbarzyƄska","Points":9121,"X":482,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803538Z"},{"ID":16225,"Name":"072","Points":10311,"X":586,"Y":403,"Continent":"K45","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803538Z"},{"ID":16226,"Name":"023","Points":10311,"X":570,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803538Z"},{"ID":16227,"Name":"Wioska","Points":10178,"X":380,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803539Z"},{"ID":16228,"Name":"Wioska","Points":9835,"X":381,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803539Z"},{"ID":16229,"Name":"001","Points":1374,"X":482,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":1454871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80354Z"},{"ID":16230,"Name":"038 Inazawa","Points":10495,"X":625,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80354Z"},{"ID":16231,"Name":"Brat447","Points":10479,"X":371,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80354Z"},{"ID":16232,"Name":"Part XV","Points":10475,"X":535,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803541Z"},{"ID":16234,"Name":"18 im Dygaja","Points":9809,"X":586,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803541Z"},{"ID":16235,"Name":"028 Seattle","Points":10559,"X":433,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803542Z"},{"ID":16236,"Name":"Wioska barbarzyƄska","Points":5107,"X":593,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803542Z"},{"ID":16237,"Name":"-010- K55","Points":9740,"X":591,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803542Z"},{"ID":16238,"Name":"019 020","Points":10001,"X":547,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803543Z"},{"ID":16239,"Name":"179","Points":10311,"X":548,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803543Z"},{"ID":16240,"Name":"007 Wioska Sir Krzysztof","Points":7041,"X":624,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803543Z"},{"ID":16242,"Name":"012 - ZOBACZYMY","Points":10495,"X":414,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803544Z"},{"ID":16243,"Name":"0072","Points":10083,"X":453,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803544Z"},{"ID":16244,"Name":"Dzungla","Points":9825,"X":373,"Y":495,"Continent":"K43","Bonus":8,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803545Z"},{"ID":16245,"Name":"Monia","Points":10052,"X":402,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803545Z"},{"ID":16246,"Name":"Wioska barbarzyƄska","Points":6074,"X":398,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803546Z"},{"ID":16247,"Name":"045","Points":10879,"X":432,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803546Z"},{"ID":16248,"Name":"032.","Points":10237,"X":482,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803546Z"},{"ID":16249,"Name":"Gryfios 015","Points":11534,"X":618,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803547Z"},{"ID":16250,"Name":"006","Points":10206,"X":380,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803547Z"},{"ID":16251,"Name":"035","Points":9825,"X":479,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803548Z"},{"ID":16252,"Name":"Suppi","Points":10290,"X":432,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803548Z"},{"ID":16253,"Name":"Sony 911","Points":10274,"X":566,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803548Z"},{"ID":16254,"Name":"014.xxx","Points":9860,"X":461,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803549Z"},{"ID":16255,"Name":"Wioska","Points":10178,"X":377,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803549Z"},{"ID":16257,"Name":"South K35","Points":9809,"X":559,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80355Z"},{"ID":16258,"Name":"A008","Points":10039,"X":518,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80355Z"},{"ID":16259,"Name":"Part XXVII","Points":10495,"X":531,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80355Z"},{"ID":16260,"Name":"FKG 01-25","Points":9835,"X":414,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803551Z"},{"ID":16261,"Name":"susza","Points":8038,"X":375,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803551Z"},{"ID":16262,"Name":"Part XII","Points":10495,"X":541,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803551Z"},{"ID":16263,"Name":"Charlie","Points":7779,"X":611,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803552Z"},{"ID":16264,"Name":"B016","Points":9835,"X":629,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803552Z"},{"ID":16265,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803552Z"},{"ID":16266,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":511,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803553Z"},{"ID":16267,"Name":"SLA-03","Points":9809,"X":432,"Y":437,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803553Z"},{"ID":16268,"Name":"059","Points":10129,"X":402,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803554Z"},{"ID":16269,"Name":"Belvedere 010","Points":9608,"X":581,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803554Z"},{"ID":16270,"Name":"007","Points":10495,"X":401,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803555Z"},{"ID":16271,"Name":"A0249","Points":10362,"X":376,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803555Z"},{"ID":16272,"Name":"[011]","Points":9809,"X":618,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803555Z"},{"ID":16273,"Name":"Yogi","Points":8148,"X":520,"Y":537,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803556Z"},{"ID":16274,"Name":"Z barba 009","Points":10495,"X":403,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803556Z"},{"ID":16275,"Name":"Westcoast.052","Points":10178,"X":397,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803557Z"},{"ID":16276,"Name":"A0039","Points":10362,"X":377,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803557Z"},{"ID":16277,"Name":"RTS 16","Points":10143,"X":571,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803557Z"},{"ID":16278,"Name":"0065","Points":10083,"X":456,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803558Z"},{"ID":16279,"Name":"A0042","Points":10362,"X":378,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803558Z"},{"ID":16280,"Name":"091","Points":3769,"X":438,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803559Z"},{"ID":16281,"Name":"PRO8L3M","Points":10559,"X":407,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803559Z"},{"ID":16282,"Name":"K34 - [087] Before Land","Points":10259,"X":453,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803559Z"},{"ID":16283,"Name":"040 OZDR","Points":9825,"X":465,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80356Z"},{"ID":16284,"Name":"VN Eulji Mundeok","Points":10273,"X":477,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80356Z"},{"ID":16286,"Name":"005 Wioska barbarzyƄska","Points":2012,"X":437,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803561Z"},{"ID":16287,"Name":"MojeSzczytToTwĂłjDno","Points":10068,"X":530,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803561Z"},{"ID":16288,"Name":"018","Points":10149,"X":565,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803562Z"},{"ID":16289,"Name":"Napewno to nie jest off","Points":8744,"X":495,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803562Z"},{"ID":16290,"Name":"0023","Points":9845,"X":623,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803562Z"},{"ID":16291,"Name":"014","Points":9574,"X":505,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803563Z"},{"ID":16292,"Name":"0007","Points":11321,"X":542,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803563Z"},{"ID":16293,"Name":"Jaaa","Points":10478,"X":622,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803564Z"},{"ID":16294,"Name":"CALL 1065","Points":10495,"X":556,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803564Z"},{"ID":16295,"Name":"Westcoast.049","Points":10178,"X":393,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803564Z"},{"ID":16297,"Name":"032 jest dobrze w chu1111","Points":10476,"X":623,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803565Z"},{"ID":16298,"Name":"Hotel","Points":9764,"X":608,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803565Z"},{"ID":16299,"Name":"Westcoast.045","Points":10178,"X":390,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803566Z"},{"ID":16300,"Name":"048. F64D","Points":10217,"X":483,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803566Z"},{"ID":16301,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":512,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803566Z"},{"ID":16302,"Name":"004","Points":11130,"X":399,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803567Z"},{"ID":16303,"Name":"Malinki 2","Points":6605,"X":626,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803567Z"},{"ID":16304,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":9960,"X":434,"Y":612,"Continent":"K64","Bonus":3,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803568Z"},{"ID":16305,"Name":"Wioska barbarzyƄska","Points":10484,"X":379,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803568Z"},{"ID":16306,"Name":"Darma","Points":9835,"X":427,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803569Z"},{"ID":16307,"Name":"*007 Akureyri","Points":8298,"X":382,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803569Z"},{"ID":16308,"Name":"031.","Points":10217,"X":493,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80357Z"},{"ID":16309,"Name":"*043*","Points":9737,"X":627,"Y":498,"Continent":"K46","Bonus":4,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80357Z"},{"ID":16310,"Name":"016.","Points":7737,"X":626,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80357Z"},{"ID":16311,"Name":"098","Points":10059,"X":454,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803571Z"},{"ID":16312,"Name":"011","Points":7980,"X":400,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803571Z"},{"ID":16313,"Name":"#024.513|522","Points":9735,"X":632,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803571Z"},{"ID":16314,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":518,"Y":373,"Continent":"K35","Bonus":3,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803572Z"},{"ID":16315,"Name":"Jaaa","Points":10239,"X":611,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803572Z"},{"ID":16316,"Name":"012","Points":9937,"X":620,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803573Z"},{"ID":16317,"Name":"K34 - [114] Before Land","Points":10259,"X":453,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803573Z"},{"ID":16318,"Name":"VN Frederick I","Points":9876,"X":477,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803573Z"},{"ID":16319,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803574Z"},{"ID":16320,"Name":"042.","Points":10223,"X":493,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803574Z"},{"ID":16321,"Name":"Westcoast.001","Points":10178,"X":390,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803574Z"},{"ID":16322,"Name":"*046*","Points":6815,"X":630,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803575Z"},{"ID":16323,"Name":"Part VIII","Points":10495,"X":534,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803575Z"},{"ID":16324,"Name":"Knowhere","Points":10452,"X":372,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803576Z"},{"ID":16325,"Name":"Storm","Points":10495,"X":627,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803576Z"},{"ID":16326,"Name":"K34 - [078] Before Land","Points":10259,"X":449,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803577Z"},{"ID":16327,"Name":"Szlachcic 015","Points":10311,"X":626,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803577Z"},{"ID":16328,"Name":"Mniejsze zƂo 0021","Points":9396,"X":372,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803577Z"},{"ID":16329,"Name":"VN Ramesses","Points":9641,"X":468,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803578Z"},{"ID":16330,"Name":"Wioska barbarzyƄska","Points":10008,"X":402,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803578Z"},{"ID":16331,"Name":"Knowhere","Points":10452,"X":375,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803578Z"},{"ID":16332,"Name":"015","Points":9605,"X":504,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803579Z"},{"ID":16334,"Name":"Myk i do kieszonki","Points":9799,"X":376,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803579Z"},{"ID":16335,"Name":"056 - Wiocha","Points":7903,"X":412,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80358Z"},{"ID":16336,"Name":"012","Points":10149,"X":498,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80358Z"},{"ID":16337,"Name":"CampNou","Points":10252,"X":624,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803581Z"},{"ID":16338,"Name":"28 im GaƂkina","Points":9809,"X":593,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803581Z"},{"ID":16339,"Name":"[0095]","Points":10495,"X":414,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803581Z"},{"ID":16340,"Name":"Avanti!","Points":9959,"X":375,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803582Z"},{"ID":16341,"Name":"Kentin ufam Tobie","Points":10000,"X":387,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803582Z"},{"ID":16342,"Name":"Pobozowisko","Points":10955,"X":405,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803583Z"},{"ID":16343,"Name":"0007","Points":10461,"X":624,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803583Z"},{"ID":16344,"Name":"VN Sun Tzu","Points":10239,"X":477,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803583Z"},{"ID":16345,"Name":"003","Points":10311,"X":580,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803584Z"},{"ID":16346,"Name":"0049","Points":9551,"X":628,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803584Z"},{"ID":16348,"Name":"*INTERTWINED*","Points":8721,"X":518,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803585Z"},{"ID":16349,"Name":"Wioska barbarzyƄska","Points":10147,"X":563,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803585Z"},{"ID":16350,"Name":"A0131","Points":10362,"X":372,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803585Z"},{"ID":16351,"Name":"ave why!","Points":10197,"X":442,"Y":615,"Continent":"K64","Bonus":9,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803586Z"},{"ID":16352,"Name":"Mniejsze zƂo 0016","Points":9180,"X":372,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803586Z"},{"ID":16353,"Name":"FKG 01-15","Points":9835,"X":419,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803586Z"},{"ID":16354,"Name":"yyyy","Points":9942,"X":498,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803587Z"},{"ID":16355,"Name":"Pobozowisko","Points":8265,"X":408,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803587Z"},{"ID":16356,"Name":"Teby_41","Points":3391,"X":502,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803588Z"},{"ID":16357,"Name":"Wioska (013)","Points":9749,"X":622,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803588Z"},{"ID":16359,"Name":"#0037","Points":10495,"X":540,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803588Z"},{"ID":16360,"Name":"Piwna 11","Points":9379,"X":607,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803589Z"},{"ID":16362,"Name":"0056","Points":10019,"X":457,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803589Z"},{"ID":16363,"Name":"A-007","Points":10580,"X":413,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80359Z"},{"ID":16364,"Name":"Myk i do kieszonki","Points":8801,"X":371,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80359Z"},{"ID":16365,"Name":"Montek","Points":9761,"X":468,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80359Z"},{"ID":16366,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":443,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803591Z"},{"ID":16367,"Name":"Jaaa","Points":10158,"X":610,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803591Z"},{"ID":16368,"Name":"048","Points":9835,"X":443,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803592Z"},{"ID":16369,"Name":"MIKOR 001","Points":10009,"X":559,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803592Z"},{"ID":16370,"Name":"007","Points":9934,"X":620,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803593Z"},{"ID":16371,"Name":"006","Points":11130,"X":434,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803593Z"},{"ID":16372,"Name":"K34 - [024] Before Land","Points":10259,"X":462,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803593Z"},{"ID":16373,"Name":"029 PotÄ™ĆŒny Dzban","Points":10479,"X":384,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803594Z"},{"ID":16374,"Name":"Wioska barbarzyƄska","Points":1563,"X":435,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803594Z"},{"ID":16375,"Name":"Jehu_Kingdom_09_","Points":9993,"X":620,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803595Z"},{"ID":16376,"Name":"Kentin ufam Tobie","Points":10000,"X":370,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803595Z"},{"ID":16377,"Name":"A0219","Points":10362,"X":372,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803596Z"},{"ID":16378,"Name":"Land of Fire","Points":9579,"X":385,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803596Z"},{"ID":16379,"Name":"*INTERTWINED*","Points":9711,"X":508,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803596Z"},{"ID":16380,"Name":"#049#","Points":9761,"X":629,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803597Z"},{"ID":16381,"Name":"Taran","Points":9364,"X":551,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803597Z"},{"ID":16382,"Name":"Jaaa","Points":10478,"X":618,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803598Z"},{"ID":16383,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":509,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803598Z"},{"ID":16384,"Name":"003","Points":10160,"X":503,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803599Z"},{"ID":16386,"Name":"0054","Points":9640,"X":624,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803599Z"},{"ID":16387,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":523,"Y":374,"Continent":"K35","Bonus":8,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803599Z"},{"ID":16388,"Name":"*041*","Points":8756,"X":625,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8036Z"},{"ID":16389,"Name":"Myk i do kieszonki","Points":6591,"X":374,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8036Z"},{"ID":16391,"Name":"Westcoast.041","Points":10178,"X":398,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803601Z"},{"ID":16392,"Name":"NIERAJ01","Points":9537,"X":453,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803601Z"},{"ID":16393,"Name":"B002","Points":9821,"X":628,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803602Z"},{"ID":16394,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":510,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803602Z"},{"ID":16395,"Name":"South K35","Points":9950,"X":578,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803602Z"},{"ID":16396,"Name":"Wioska barbarzyƄska","Points":10068,"X":599,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803603Z"},{"ID":16397,"Name":"003","Points":11130,"X":428,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803603Z"},{"ID":16398,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":535,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803603Z"},{"ID":16399,"Name":"D012","Points":9452,"X":595,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803604Z"},{"ID":16400,"Name":"Wioska barbarzyƄska","Points":9959,"X":378,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803604Z"},{"ID":16401,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803605Z"},{"ID":16402,"Name":"Pobozowisko","Points":10952,"X":410,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803605Z"},{"ID":16403,"Name":"024.","Points":10216,"X":489,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803606Z"},{"ID":16404,"Name":"Ręcznik do zmiany","Points":10160,"X":394,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803606Z"},{"ID":16405,"Name":"078","Points":10083,"X":475,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803606Z"},{"ID":16406,"Name":"South K35","Points":9809,"X":558,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803607Z"},{"ID":16407,"Name":"610|431 Wioska barbarzyƄska21","Points":8039,"X":610,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803607Z"},{"ID":16408,"Name":"[181]","Points":10060,"X":544,"Y":518,"Continent":"K55","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803608Z"},{"ID":16409,"Name":"Kentin ufam Tobie","Points":10000,"X":389,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803608Z"},{"ID":16410,"Name":"Konfederacja +","Points":10001,"X":458,"Y":377,"Continent":"K34","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803609Z"},{"ID":16411,"Name":"Jaaa","Points":10479,"X":582,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803609Z"},{"ID":16412,"Name":"#0035","Points":10495,"X":539,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803609Z"},{"ID":16413,"Name":"Bagdad","Points":10654,"X":469,"Y":376,"Continent":"K34","Bonus":6,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80361Z"},{"ID":16414,"Name":"Belvedere 011","Points":10008,"X":588,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80361Z"},{"ID":16415,"Name":"Wioska","Points":10178,"X":377,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803611Z"},{"ID":16416,"Name":"Malinki 3","Points":9017,"X":624,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803611Z"},{"ID":16417,"Name":"018.","Points":5623,"X":624,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803611Z"},{"ID":16418,"Name":"VN Moctezuma","Points":10055,"X":473,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803612Z"},{"ID":16419,"Name":"BARA","Points":9818,"X":630,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803612Z"},{"ID":16420,"Name":"0050","Points":10083,"X":459,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803613Z"},{"ID":16421,"Name":"Yogi","Points":10083,"X":558,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803613Z"},{"ID":16422,"Name":"Westcoast.012","Points":10178,"X":389,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803613Z"},{"ID":16423,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":381,"Y":462,"Continent":"K43","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803614Z"},{"ID":16424,"Name":"017 - Hospitalet de Llobregat","Points":10019,"X":632,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803614Z"},{"ID":16425,"Name":"Avanti!","Points":9956,"X":376,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803615Z"},{"ID":16426,"Name":"Piasek","Points":10019,"X":375,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803615Z"},{"ID":16427,"Name":"Tu Deornoth odpoczywa","Points":3989,"X":626,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803615Z"},{"ID":16428,"Name":"078 k45 001","Points":10001,"X":589,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803616Z"},{"ID":16429,"Name":"Wioska 009","Points":9761,"X":596,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803616Z"},{"ID":16430,"Name":"Wioska barbarzyƄska","Points":10474,"X":614,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803617Z"},{"ID":16431,"Name":"South K35","Points":9809,"X":552,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803617Z"},{"ID":16432,"Name":"Wioska","Points":10178,"X":376,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803617Z"},{"ID":16433,"Name":"Wioska barbarzyƄska","Points":9575,"X":577,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803618Z"},{"ID":16434,"Name":"Kentin ufam Tobie","Points":10000,"X":389,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803618Z"},{"ID":16435,"Name":"Wioska barbarzyƄska 019|","Points":9606,"X":542,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803619Z"},{"ID":16436,"Name":"A0050","Points":10362,"X":377,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803619Z"},{"ID":16437,"Name":"C 009","Points":9367,"X":578,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803619Z"},{"ID":16438,"Name":"Yyyy","Points":10068,"X":504,"Y":371,"Continent":"K35","Bonus":7,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803619Z"},{"ID":16439,"Name":"A0307","Points":10362,"X":377,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80362Z"},{"ID":16440,"Name":"Wioska barbarzyƄska","Points":9372,"X":438,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80362Z"},{"ID":16441,"Name":"0089","Points":9835,"X":448,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803621Z"},{"ID":16442,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":529,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803621Z"},{"ID":16443,"Name":"Pastorlandia 2","Points":10401,"X":374,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803621Z"},{"ID":16444,"Name":"Sony 911","Points":10238,"X":569,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803622Z"},{"ID":16445,"Name":"Nowa 09","Points":9818,"X":613,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803622Z"},{"ID":16446,"Name":"058 Miyoshi","Points":9468,"X":626,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803623Z"},{"ID":16447,"Name":"009","Points":10019,"X":507,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803624Z"},{"ID":16449,"Name":"*0009 Baraki","Points":10251,"X":610,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803624Z"},{"ID":16450,"Name":"Taran","Points":9379,"X":549,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803624Z"},{"ID":16451,"Name":"0057","Points":10083,"X":459,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803625Z"},{"ID":16452,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":527,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803625Z"},{"ID":16453,"Name":"110 Murcia tres","Points":9911,"X":391,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803625Z"},{"ID":16454,"Name":"092","Points":10569,"X":451,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803626Z"},{"ID":16455,"Name":"Mniejsze zƂo 0040","Points":10385,"X":376,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803626Z"},{"ID":16456,"Name":"VN Mulan","Points":9643,"X":467,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803627Z"},{"ID":16457,"Name":"VN El Cid","Points":9641,"X":466,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803627Z"},{"ID":16458,"Name":"OgĂłrkowy baron","Points":9835,"X":407,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803627Z"},{"ID":16459,"Name":"026","Points":7471,"X":481,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803628Z"},{"ID":16460,"Name":"VN Charles Martel","Points":9961,"X":461,"Y":378,"Continent":"K34","Bonus":2,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803628Z"},{"ID":16461,"Name":".Wioska barbarzyƄska","Points":9601,"X":600,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803629Z"},{"ID":16462,"Name":"004","Points":10481,"X":453,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803629Z"},{"ID":16463,"Name":"*031*","Points":7492,"X":624,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803629Z"},{"ID":16464,"Name":"Vasperland_018","Points":10293,"X":629,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80363Z"},{"ID":16465,"Name":"Belvedere 012","Points":10290,"X":586,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80363Z"},{"ID":16466,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":514,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803631Z"},{"ID":16467,"Name":"023","Points":5643,"X":378,"Y":542,"Continent":"K53","Bonus":5,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803631Z"},{"ID":16468,"Name":"scoti","Points":10211,"X":487,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803631Z"},{"ID":16469,"Name":"SoƂtys Twojej Wsi","Points":9744,"X":434,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803632Z"},{"ID":16470,"Name":"rybak","Points":9825,"X":379,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803632Z"},{"ID":16471,"Name":"612|424 003 Stolica Kapitana","Points":9888,"X":612,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803633Z"},{"ID":16472,"Name":"MƁODE ORƁY 001","Points":10495,"X":575,"Y":602,"Continent":"K65","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803633Z"},{"ID":16473,"Name":"0053","Points":10083,"X":459,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803633Z"},{"ID":16474,"Name":"#008 A","Points":10947,"X":458,"Y":621,"Continent":"K64","Bonus":4,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803634Z"},{"ID":16475,"Name":"Jaaa","Points":10100,"X":609,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803634Z"},{"ID":16476,"Name":"SINGED X SZEF","Points":9994,"X":491,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803635Z"},{"ID":16477,"Name":"A0044","Points":10362,"X":375,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803635Z"},{"ID":16478,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":519,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803635Z"},{"ID":16479,"Name":"WE ARE READY!","Points":9623,"X":587,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803636Z"},{"ID":16480,"Name":"Ręcznik do zmiany","Points":10160,"X":393,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803636Z"},{"ID":16481,"Name":"#0038","Points":10495,"X":540,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803637Z"},{"ID":16482,"Name":"K34 x022","Points":6527,"X":446,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803637Z"},{"ID":16483,"Name":"105 Doƛć","Points":10001,"X":595,"Y":418,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803637Z"},{"ID":16484,"Name":"Szlachcic 013","Points":10311,"X":624,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803638Z"},{"ID":16485,"Name":"016","Points":10311,"X":599,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803638Z"},{"ID":16486,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":445,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803639Z"},{"ID":16487,"Name":"031 ZbaraĆŒ","Points":10611,"X":607,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803639Z"},{"ID":16488,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":522,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80364Z"},{"ID":16489,"Name":"A018","Points":10345,"X":617,"Y":454,"Continent":"K46","Bonus":7,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80364Z"},{"ID":16490,"Name":".047.","Points":10492,"X":488,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80364Z"},{"ID":16491,"Name":"sony911","Points":10205,"X":575,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803641Z"},{"ID":16492,"Name":"#0009","Points":9761,"X":531,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803641Z"},{"ID":16493,"Name":"Sony 911","Points":10211,"X":564,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803642Z"},{"ID":16494,"Name":"[005]","Points":10087,"X":460,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803642Z"},{"ID":16495,"Name":"Gattacka","Points":9902,"X":610,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803642Z"},{"ID":16496,"Name":"Szulernia","Points":9998,"X":412,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803643Z"},{"ID":16497,"Name":"Knowhere","Points":10452,"X":372,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803643Z"},{"ID":16498,"Name":"011. Czo Oju","Points":10495,"X":606,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803644Z"},{"ID":16499,"Name":"0052","Points":9249,"X":627,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803644Z"},{"ID":16500,"Name":"Konfederacja","Points":9696,"X":459,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803645Z"},{"ID":16502,"Name":"004 B","Points":9711,"X":621,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803645Z"},{"ID":16503,"Name":"Kentin ufam Tobie","Points":10000,"X":384,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803645Z"},{"ID":16504,"Name":"030","Points":9825,"X":473,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803646Z"},{"ID":16505,"Name":"A READY","Points":10019,"X":589,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803646Z"},{"ID":16506,"Name":"032 PotÄ™ĆŒny Dzban","Points":6560,"X":388,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803647Z"},{"ID":16507,"Name":"0006","Points":10495,"X":413,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803647Z"},{"ID":16508,"Name":"Brat447","Points":10490,"X":386,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803648Z"},{"ID":16509,"Name":"020","Points":10495,"X":374,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803648Z"},{"ID":16510,"Name":"Emirates Stadium","Points":10019,"X":629,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803649Z"},{"ID":16511,"Name":"CALL 928","Points":10311,"X":508,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803649Z"},{"ID":16512,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":505,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80365Z"},{"ID":16513,"Name":"Jaaa","Points":10322,"X":617,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80365Z"},{"ID":16514,"Name":"Westcoast.025","Points":10178,"X":398,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80365Z"},{"ID":16515,"Name":"Piwna 07","Points":9112,"X":613,"Y":437,"Continent":"K46","Bonus":9,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803651Z"},{"ID":16516,"Name":"ZachĂłd - 005","Points":10495,"X":395,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803651Z"},{"ID":16517,"Name":"Wioska (009)","Points":8602,"X":622,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803652Z"},{"ID":16518,"Name":"PART XXV","Points":10495,"X":537,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803652Z"},{"ID":16519,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":513,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803652Z"},{"ID":16520,"Name":"Westcoast.057","Points":10178,"X":396,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803653Z"},{"ID":16521,"Name":"Jaaa","Points":10495,"X":610,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803653Z"},{"ID":16522,"Name":"VN Dorothy Unsworth","Points":9637,"X":464,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803654Z"},{"ID":16523,"Name":"*045*","Points":8130,"X":628,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803654Z"},{"ID":16525,"Name":"FKG 01-30","Points":9835,"X":417,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803655Z"},{"ID":16526,"Name":"064","Points":5404,"X":427,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803655Z"},{"ID":16527,"Name":"Wioska 007","Points":9761,"X":596,"Y":581,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803656Z"},{"ID":16528,"Name":"kathare","Points":10436,"X":546,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803656Z"},{"ID":16529,"Name":"007 Hello Moto","Points":10001,"X":598,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803656Z"},{"ID":16530,"Name":"!009.498|496","Points":9735,"X":617,"Y":447,"Continent":"K46","Bonus":3,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803657Z"},{"ID":16531,"Name":"ADEN","Points":10311,"X":527,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803657Z"},{"ID":16532,"Name":"031. Wioska barbarzyƄska","Points":10495,"X":576,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803658Z"},{"ID":16533,"Name":"069 OZDR","Points":10495,"X":469,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803658Z"},{"ID":16534,"Name":"003. York","Points":10141,"X":449,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803658Z"},{"ID":16535,"Name":"Darma","Points":9835,"X":429,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803659Z"},{"ID":16536,"Name":"0011","Points":10000,"X":444,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803659Z"},{"ID":16537,"Name":"VN Yuno","Points":9530,"X":475,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80366Z"},{"ID":16538,"Name":"K34 - [014] Before Land","Points":10259,"X":447,"Y":381,"Continent":"K34","Bonus":8,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80366Z"},{"ID":16540,"Name":"Wioska barbarzyƄska","Points":6655,"X":399,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803661Z"},{"ID":16541,"Name":"VN Genghis Khan","Points":9646,"X":467,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803661Z"},{"ID":16542,"Name":"Westcoast.026","Points":10178,"X":398,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803661Z"},{"ID":16543,"Name":"Mount Everest","Points":9550,"X":375,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803662Z"},{"ID":16544,"Name":"robie katasy !!!","Points":10495,"X":571,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803662Z"},{"ID":16545,"Name":"Partia Razem Szpingischan","Points":10495,"X":571,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803663Z"},{"ID":16546,"Name":"CALL 927","Points":10311,"X":555,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803663Z"},{"ID":16547,"Name":"001","Points":10285,"X":404,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803664Z"},{"ID":16548,"Name":"006.Broad Peak","Points":10495,"X":606,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803664Z"},{"ID":16549,"Name":"D016","Points":10495,"X":584,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803665Z"},{"ID":16550,"Name":"010 Lyon","Points":3013,"X":629,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803665Z"},{"ID":16551,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803665Z"},{"ID":16552,"Name":"Z barba 015","Points":10495,"X":401,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803666Z"},{"ID":16553,"Name":"Konfederacja","Points":10001,"X":465,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803666Z"},{"ID":16554,"Name":"Wioska barbarzyƄskakkkk","Points":9558,"X":439,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803667Z"},{"ID":16555,"Name":"A017","Points":10152,"X":618,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803667Z"},{"ID":16556,"Name":"Wioska barbarzyƄska","Points":8932,"X":379,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803667Z"},{"ID":16557,"Name":"HORUS+","Points":9886,"X":523,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803668Z"},{"ID":16558,"Name":"FKG 01-05","Points":9835,"X":417,"Y":401,"Continent":"K44","Bonus":2,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803668Z"},{"ID":16560,"Name":"018","Points":10311,"X":584,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803669Z"},{"ID":16561,"Name":"041 PotÄ™ĆŒny Dzban","Points":10479,"X":387,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803669Z"},{"ID":16562,"Name":"Wioska","Points":7621,"X":381,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80367Z"},{"ID":16563,"Name":"MojeSzczytToTwĂłjDno","Points":9737,"X":531,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80367Z"},{"ID":16564,"Name":"019.xxx","Points":9458,"X":462,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803671Z"},{"ID":16565,"Name":"[003]","Points":9809,"X":619,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803671Z"},{"ID":16566,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":533,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803672Z"},{"ID":16567,"Name":"Bocianikson016","Points":4505,"X":622,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803672Z"},{"ID":16568,"Name":"A027","Points":10484,"X":619,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803672Z"},{"ID":16569,"Name":"017.","Points":10292,"X":566,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803673Z"},{"ID":16570,"Name":"Zeta Reticuli S","Points":11417,"X":411,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803673Z"},{"ID":16571,"Name":"015","Points":10636,"X":582,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803673Z"},{"ID":16572,"Name":"ZachĂłd - 002","Points":10495,"X":397,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803674Z"},{"ID":16573,"Name":"100","Points":2243,"X":628,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":849090187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803674Z"},{"ID":16574,"Name":"Mniejsze zƂo 0010","Points":9589,"X":375,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803675Z"},{"ID":16576,"Name":"Teby_31","Points":9638,"X":505,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803675Z"},{"ID":16577,"Name":"Sony 911","Points":6807,"X":568,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803676Z"},{"ID":16578,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803676Z"},{"ID":16579,"Name":"031 - Cardiff","Points":10495,"X":403,"Y":585,"Continent":"K54","Bonus":1,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803676Z"},{"ID":16580,"Name":"034","Points":10068,"X":597,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803677Z"},{"ID":16581,"Name":"Gattacka","Points":9753,"X":584,"Y":501,"Continent":"K55","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803677Z"},{"ID":16582,"Name":"Gattacka","Points":9761,"X":603,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803678Z"},{"ID":16583,"Name":"010","Points":9711,"X":517,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803678Z"},{"ID":16585,"Name":"020.","Points":10495,"X":572,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803679Z"},{"ID":16586,"Name":"Brat447","Points":10495,"X":371,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803679Z"},{"ID":16587,"Name":"Taran 006","Points":10311,"X":626,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80368Z"},{"ID":16588,"Name":"Wioska barbarzyƄska","Points":9888,"X":524,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80368Z"},{"ID":16589,"Name":"Wioska barbarzyƄska","Points":10068,"X":543,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.80368Z"},{"ID":16590,"Name":"004","Points":10393,"X":406,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803681Z"},{"ID":16591,"Name":"019 PotÄ™ĆŒny Dzban","Points":10478,"X":393,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803681Z"},{"ID":16592,"Name":"yyyy","Points":10052,"X":498,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803682Z"},{"ID":16593,"Name":"Jaaa","Points":10478,"X":615,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803682Z"},{"ID":16594,"Name":"002. Skellige","Points":10495,"X":567,"Y":389,"Continent":"K35","Bonus":3,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803682Z"},{"ID":16595,"Name":"018","Points":10311,"X":598,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803683Z"},{"ID":16596,"Name":"SINGED X SZEF","Points":9994,"X":493,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803683Z"},{"ID":16597,"Name":"VN Scipio Africanus","Points":10204,"X":474,"Y":375,"Continent":"K34","Bonus":6,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803684Z"},{"ID":16598,"Name":"019","Points":9761,"X":625,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803684Z"},{"ID":16599,"Name":"Jaaa","Points":10666,"X":587,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803685Z"},{"ID":16600,"Name":"A0109","Points":10362,"X":372,"Y":480,"Continent":"K43","Bonus":7,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803685Z"},{"ID":16601,"Name":"ADEN","Points":10154,"X":527,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803685Z"},{"ID":16602,"Name":"Yyyy","Points":10068,"X":499,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803686Z"},{"ID":16603,"Name":"063","Points":10311,"X":586,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803686Z"},{"ID":16604,"Name":"K34 x005","Points":8953,"X":447,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803687Z"},{"ID":16605,"Name":"0098","Points":10083,"X":453,"Y":616,"Continent":"K64","Bonus":4,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803687Z"},{"ID":16606,"Name":"0104","Points":10019,"X":458,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803688Z"},{"ID":16607,"Name":"Myk i do kieszonki","Points":8030,"X":372,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803688Z"},{"ID":16608,"Name":"Pobozowisko","Points":7339,"X":400,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803688Z"},{"ID":16609,"Name":"#0021","Points":9761,"X":523,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.803689Z"},{"ID":16610,"Name":"Bocianikson012","Points":9966,"X":610,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872371Z"},{"ID":16611,"Name":"Myk i do kieszonki","Points":9148,"X":373,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872373Z"},{"ID":16612,"Name":"007.xxx","Points":10146,"X":473,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872373Z"},{"ID":16613,"Name":"A028","Points":10252,"X":615,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872374Z"},{"ID":16614,"Name":"Oeste tres","Points":4889,"X":383,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872375Z"},{"ID":16615,"Name":"023.","Points":10217,"X":490,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872375Z"},{"ID":16616,"Name":"Wioska krzysiuaa","Points":9994,"X":509,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872376Z"},{"ID":16617,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872376Z"},{"ID":16618,"Name":"Wioska Expezo","Points":10008,"X":403,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872377Z"},{"ID":16619,"Name":"Wioska barbarzyƄska","Points":10008,"X":405,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872377Z"},{"ID":16620,"Name":"Myk i do kieszonki","Points":8119,"X":372,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872378Z"},{"ID":16621,"Name":"044 OZDR","Points":9902,"X":463,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872378Z"},{"ID":16622,"Name":"B 003","Points":10362,"X":593,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872379Z"},{"ID":16623,"Name":"Wioska barbarzyƄska","Points":10008,"X":405,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87238Z"},{"ID":16624,"Name":"Wioska barbarzyƄska","Points":10490,"X":618,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87238Z"},{"ID":16625,"Name":"Brzoza","Points":9835,"X":370,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872381Z"},{"ID":16626,"Name":"056","Points":6074,"X":493,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872381Z"},{"ID":16627,"Name":"RTS 6","Points":10495,"X":574,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872382Z"},{"ID":16628,"Name":"Ulu-mulu","Points":9408,"X":431,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872382Z"},{"ID":16629,"Name":"z 046","Points":10256,"X":579,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872383Z"},{"ID":16630,"Name":"Wioska audi80lpa","Points":10048,"X":377,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872384Z"},{"ID":16631,"Name":"Kentin ufam Tobie","Points":10000,"X":390,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872384Z"},{"ID":16632,"Name":"027","Points":9761,"X":502,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872385Z"},{"ID":16633,"Name":"053 OZDR","Points":9825,"X":475,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872385Z"},{"ID":16634,"Name":"009 barbarzyƄska","Points":10367,"X":610,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872386Z"},{"ID":16635,"Name":"Malinki 4","Points":6566,"X":623,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872386Z"},{"ID":16636,"Name":"Wioska barbarzyƄska","Points":9747,"X":440,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872387Z"},{"ID":16638,"Name":"Jaaa","Points":10475,"X":596,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872388Z"},{"ID":16639,"Name":"Belvedere 013","Points":10140,"X":587,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872388Z"},{"ID":16640,"Name":"Taran 003","Points":10311,"X":623,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872389Z"},{"ID":16641,"Name":"Wioska tomektonkiel","Points":4525,"X":607,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699351046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872389Z"},{"ID":16642,"Name":"0033","Points":10347,"X":562,"Y":390,"Continent":"K35","Bonus":3,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87239Z"},{"ID":16643,"Name":"0063 8 Piast","Points":10252,"X":446,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87239Z"},{"ID":16644,"Name":"004.Abi Gamin","Points":10495,"X":603,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872391Z"},{"ID":16645,"Name":"Avanti!","Points":9959,"X":373,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872391Z"},{"ID":16646,"Name":"Myk i do kieszonki","Points":8663,"X":371,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872392Z"},{"ID":16647,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":448,"Continent":"K43","Bonus":8,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872392Z"},{"ID":16648,"Name":"Darma","Points":9835,"X":418,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872393Z"},{"ID":16649,"Name":"022","Points":11130,"X":432,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872394Z"},{"ID":16650,"Name":"0151","Points":9444,"X":625,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872394Z"},{"ID":16651,"Name":"Szlachcic 006","Points":10311,"X":623,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872395Z"},{"ID":16652,"Name":"026","Points":8128,"X":368,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872395Z"},{"ID":16653,"Name":"Westcoast.029","Points":10178,"X":396,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872396Z"},{"ID":16654,"Name":"Taran","Points":9746,"X":551,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872396Z"},{"ID":16655,"Name":"021.","Points":10218,"X":490,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872397Z"},{"ID":16656,"Name":"Piwna 15","Points":9047,"X":608,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872397Z"},{"ID":16657,"Name":"SiƂa, Masa, RzeĆșba 05","Points":10317,"X":627,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872398Z"},{"ID":16658,"Name":"Zakrecona 3","Points":9256,"X":573,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872398Z"},{"ID":16659,"Name":"Tesa 7","Points":10019,"X":627,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872399Z"},{"ID":16660,"Name":"001Podbitka","Points":9687,"X":455,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872399Z"},{"ID":16661,"Name":"s181eo16","Points":9883,"X":382,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8724Z"},{"ID":16662,"Name":"VN Leonidas","Points":9647,"X":469,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872401Z"},{"ID":16663,"Name":"Szlachcic 005","Points":10311,"X":620,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872401Z"},{"ID":16664,"Name":"Jaaa","Points":10478,"X":616,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872402Z"},{"ID":16665,"Name":"!011.507|495","Points":9735,"X":626,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872402Z"},{"ID":16666,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":532,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872403Z"},{"ID":16668,"Name":"Konradzik","Points":9835,"X":428,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872403Z"},{"ID":16669,"Name":"ADEN","Points":10311,"X":525,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872404Z"},{"ID":16670,"Name":"Konfederacja","Points":9694,"X":456,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872404Z"},{"ID":16671,"Name":"SINGED X SZEF","Points":9994,"X":490,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872405Z"},{"ID":16672,"Name":"027","Points":9924,"X":476,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872405Z"},{"ID":16673,"Name":"0009","Points":10194,"X":444,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872406Z"},{"ID":16674,"Name":"073","Points":5904,"X":373,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872406Z"},{"ID":16675,"Name":"Zzz","Points":9891,"X":488,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872407Z"},{"ID":16676,"Name":"029","Points":9955,"X":474,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872408Z"},{"ID":16677,"Name":"022","Points":9821,"X":631,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872408Z"},{"ID":16678,"Name":"0063","Points":10019,"X":456,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872409Z"},{"ID":16679,"Name":"0034","Points":10503,"X":564,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872409Z"},{"ID":16680,"Name":"[006]","Points":9809,"X":622,"Y":544,"Continent":"K56","Bonus":5,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87241Z"},{"ID":16681,"Name":"ADEN","Points":9737,"X":528,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87241Z"},{"ID":16682,"Name":"0055","Points":9714,"X":627,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872411Z"},{"ID":16683,"Name":"Wioska barbarzyƄska","Points":9829,"X":433,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872411Z"},{"ID":16684,"Name":"035.","Points":9756,"X":571,"Y":392,"Continent":"K35","Bonus":2,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872412Z"},{"ID":16685,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":6276,"X":440,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872413Z"},{"ID":16686,"Name":"U-02","Points":9549,"X":557,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872413Z"},{"ID":16688,"Name":"Ulu-mulu","Points":11678,"X":425,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872414Z"},{"ID":16689,"Name":"006","Points":9860,"X":631,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872414Z"},{"ID":16690,"Name":"CALL 1076","Points":10495,"X":554,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872415Z"},{"ID":16691,"Name":"080","Points":6016,"X":619,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872415Z"},{"ID":16692,"Name":"Wioska barbarzyƄska","Points":10484,"X":617,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872416Z"},{"ID":16693,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":444,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872416Z"},{"ID":16694,"Name":"Wioska barbarzyƄska","Points":10476,"X":618,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872417Z"},{"ID":16697,"Name":"kathare","Points":10495,"X":547,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872417Z"},{"ID":16698,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":532,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872418Z"},{"ID":16699,"Name":"FKG 01-33","Points":9835,"X":412,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872418Z"},{"ID":16700,"Name":"Twierdza","Points":9647,"X":566,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872419Z"},{"ID":16701,"Name":"082. Aler","Points":11678,"X":629,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872419Z"},{"ID":16702,"Name":"039","Points":10495,"X":557,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87242Z"},{"ID":16703,"Name":"082","Points":7223,"X":437,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872421Z"},{"ID":16704,"Name":"008","Points":8502,"X":434,"Y":613,"Continent":"K64","Bonus":7,"PlayerID":699859013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872421Z"},{"ID":16705,"Name":"Brat447","Points":10476,"X":370,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872422Z"},{"ID":16706,"Name":"031. Aurelia","Points":9422,"X":624,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872422Z"},{"ID":16707,"Name":"Valhalla","Points":10444,"X":539,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872423Z"},{"ID":16708,"Name":"010","Points":10211,"X":448,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872423Z"},{"ID":16709,"Name":"37. Wioska 37","Points":10241,"X":394,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872424Z"},{"ID":16710,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872424Z"},{"ID":16711,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":498,"Y":626,"Continent":"K64","Bonus":9,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872425Z"},{"ID":16712,"Name":"[002] Konata Izumi","Points":10140,"X":479,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872425Z"},{"ID":16713,"Name":"FKG 01-31","Points":9835,"X":417,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872426Z"},{"ID":16714,"Name":"097","Points":10177,"X":447,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872427Z"},{"ID":16715,"Name":"A029","Points":10484,"X":619,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872427Z"},{"ID":16716,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":533,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872428Z"},{"ID":16717,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":9883,"X":433,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872428Z"},{"ID":16718,"Name":"Szlachcic","Points":10237,"X":466,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872429Z"},{"ID":16719,"Name":"ZachĂłd - 003","Points":9920,"X":397,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872429Z"},{"ID":16720,"Name":"Taran","Points":10147,"X":541,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87243Z"},{"ID":16721,"Name":"Westcoast.073","Points":10178,"X":391,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87243Z"},{"ID":16722,"Name":"Konradzik","Points":9835,"X":428,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872431Z"},{"ID":16723,"Name":"CALL 1064","Points":10495,"X":555,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872432Z"},{"ID":16724,"Name":"036 dudek2222","Points":10495,"X":626,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872432Z"},{"ID":16725,"Name":"ADEN","Points":10311,"X":523,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872433Z"},{"ID":16726,"Name":"Wioska barbarzyƄska","Points":10481,"X":616,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872433Z"},{"ID":16727,"Name":"609|426 Wioska barbarzyƄska12","Points":9487,"X":609,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872434Z"},{"ID":16728,"Name":"Ulu-mulu","Points":11678,"X":424,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872434Z"},{"ID":16729,"Name":"010 Kioto","Points":10297,"X":626,"Y":476,"Continent":"K46","Bonus":4,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872435Z"},{"ID":16730,"Name":"Wioska","Points":10222,"X":603,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872435Z"},{"ID":16731,"Name":"009 Jokkmokk","Points":10397,"X":609,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872436Z"},{"ID":16732,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":508,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872437Z"},{"ID":16733,"Name":"Wioska 050","Points":9783,"X":634,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872437Z"},{"ID":16734,"Name":"33. Wioska 33","Points":9024,"X":389,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872438Z"},{"ID":16736,"Name":"MojeSzczytToTwĂłjDno","Points":10047,"X":526,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872438Z"},{"ID":16737,"Name":"kathare","Points":10183,"X":547,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872439Z"},{"ID":16738,"Name":"Knowhere","Points":3691,"X":363,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872439Z"},{"ID":16740,"Name":"020 019","Points":10001,"X":547,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87244Z"},{"ID":16741,"Name":"Wioska barbarzyƄska","Points":10291,"X":507,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87244Z"},{"ID":16742,"Name":"szlachcic","Points":10311,"X":386,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872441Z"},{"ID":16743,"Name":"Wioska barbarzyƄska","Points":9835,"X":421,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872442Z"},{"ID":16744,"Name":"-002- K55","Points":9982,"X":591,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872442Z"},{"ID":16745,"Name":"Wioska barbarzyƄska","Points":10495,"X":376,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872443Z"},{"ID":16746,"Name":"K44 x022","Points":7621,"X":463,"Y":420,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872443Z"},{"ID":16747,"Name":"084","Points":8604,"X":422,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872444Z"},{"ID":16748,"Name":"FKG 01-20","Points":9835,"X":418,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872444Z"},{"ID":16749,"Name":"VN Siren Tium","Points":9608,"X":469,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872445Z"},{"ID":16750,"Name":"016","Points":10019,"X":503,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872445Z"},{"ID":16751,"Name":"Kentin ufam Tobie","Points":10000,"X":380,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872446Z"},{"ID":16752,"Name":"A23 Wioska barbarzyƄska","Points":10220,"X":463,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872447Z"},{"ID":16753,"Name":"Horyzont zdarzeƄ","Points":10019,"X":537,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872447Z"},{"ID":16754,"Name":"031","Points":9993,"X":378,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872448Z"},{"ID":16755,"Name":"Wioska barbarzyƄska","Points":9994,"X":401,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872448Z"},{"ID":16756,"Name":"Wioska barbarzyƄska","Points":10478,"X":618,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872449Z"},{"ID":16757,"Name":"A READY","Points":10252,"X":584,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87245Z"},{"ID":16758,"Name":"SINGED X SZEF","Points":10104,"X":490,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87245Z"},{"ID":16759,"Name":"Wioska","Points":5622,"X":375,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872451Z"},{"ID":16760,"Name":"South K35","Points":10042,"X":557,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872451Z"},{"ID":16761,"Name":"Wioska","Points":10178,"X":377,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872452Z"},{"ID":16762,"Name":"010","Points":9973,"X":620,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872452Z"},{"ID":16763,"Name":"0Wioska barbarzyƄska","Points":4928,"X":470,"Y":514,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872453Z"},{"ID":16764,"Name":"Julia","Points":9259,"X":610,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872454Z"},{"ID":16765,"Name":"0438","Points":10019,"X":545,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872454Z"},{"ID":16766,"Name":"020","Points":9825,"X":471,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872455Z"},{"ID":16767,"Name":"Wioska","Points":10178,"X":377,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872455Z"},{"ID":16768,"Name":"0063 b55","Points":6853,"X":452,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872456Z"},{"ID":16769,"Name":"029. Wioska barbarzyƄska","Points":10495,"X":577,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872456Z"},{"ID":16770,"Name":"030","Points":10237,"X":446,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872457Z"},{"ID":16771,"Name":"Wioska","Points":9365,"X":381,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872458Z"},{"ID":16772,"Name":"s181eo21","Points":9883,"X":381,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872458Z"},{"ID":16773,"Name":"Lord Arsey KING","Points":10285,"X":588,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872459Z"},{"ID":16774,"Name":"025","Points":10146,"X":496,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87246Z"},{"ID":16775,"Name":"110","Points":9626,"X":460,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87246Z"},{"ID":16776,"Name":"Wioska barbarzyƄska1","Points":9994,"X":509,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872461Z"},{"ID":16777,"Name":"Westcoast.019","Points":10178,"X":392,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872461Z"},{"ID":16778,"Name":"608|428 Wioska barbarzyƄska18","Points":9839,"X":608,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872462Z"},{"ID":16779,"Name":"Gattacka","Points":9740,"X":605,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872463Z"},{"ID":16780,"Name":"Wioska barbarzyƄska","Points":10478,"X":619,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872463Z"},{"ID":16781,"Name":"Westcoast.030","Points":10178,"X":388,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872464Z"},{"ID":16782,"Name":"Wioska barbarzyƄska","Points":9355,"X":436,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872464Z"},{"ID":16783,"Name":"003","Points":10178,"X":421,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872465Z"},{"ID":16784,"Name":"Westcoast.072","Points":10178,"X":390,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872466Z"},{"ID":16785,"Name":"Ręcznik do zmiany","Points":10495,"X":389,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872466Z"},{"ID":16786,"Name":"A0126","Points":10362,"X":373,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872467Z"},{"ID":16787,"Name":"610|429 Wioska barbarzyƄska20","Points":9809,"X":610,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872468Z"},{"ID":16788,"Name":"Wioska","Points":10178,"X":381,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872468Z"},{"ID":16789,"Name":"022","Points":8582,"X":481,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872469Z"},{"ID":16791,"Name":"Wioska barbarzyƄska","Points":10068,"X":544,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872469Z"},{"ID":16792,"Name":"0005","Points":10495,"X":414,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87247Z"},{"ID":16793,"Name":"Wioska barbarzyƄska","Points":10484,"X":622,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872471Z"},{"ID":16794,"Name":"Lord Arsey KING","Points":10285,"X":593,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872471Z"},{"ID":16795,"Name":"008","Points":9825,"X":492,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872472Z"},{"ID":16796,"Name":"024 Agenci","Points":10495,"X":626,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872473Z"},{"ID":16797,"Name":"*INTERTWINED**","Points":9711,"X":516,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872473Z"},{"ID":16799,"Name":"WE ARE READY!","Points":9824,"X":591,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872474Z"},{"ID":16800,"Name":"Mniejsze zƂo 0025","Points":8875,"X":372,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872474Z"},{"ID":16802,"Name":"Gattacka","Points":9965,"X":602,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872475Z"},{"ID":16803,"Name":"Mniejsze zƂo 0035","Points":9949,"X":372,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872476Z"},{"ID":16804,"Name":"021 022","Points":10001,"X":545,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872477Z"},{"ID":16805,"Name":"Gra pozorĂłw?","Points":9899,"X":579,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872477Z"},{"ID":16806,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":515,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872478Z"},{"ID":16807,"Name":"028","Points":10139,"X":509,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872479Z"},{"ID":16808,"Name":"Westcoast.046","Points":10178,"X":395,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872479Z"},{"ID":16809,"Name":"*048*","Points":2557,"X":631,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87248Z"},{"ID":16810,"Name":"Konfederacja +","Points":9868,"X":452,"Y":379,"Continent":"K34","Bonus":7,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872481Z"},{"ID":16811,"Name":"*INTERTWINED**","Points":9711,"X":511,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872481Z"},{"ID":16812,"Name":"A0082","Points":10362,"X":373,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872482Z"},{"ID":16813,"Name":"Szlachcic 017","Points":10311,"X":625,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872482Z"},{"ID":16814,"Name":"005","Points":9620,"X":563,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872483Z"},{"ID":16815,"Name":"Wioska","Points":10222,"X":604,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872484Z"},{"ID":16816,"Name":"#004.505|509","Points":9735,"X":624,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872484Z"},{"ID":16817,"Name":"South K35","Points":9809,"X":556,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872485Z"},{"ID":16818,"Name":"Wioska barbarzyƄska","Points":9963,"X":379,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872486Z"},{"ID":16819,"Name":"Piwna 08","Points":8817,"X":612,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872487Z"},{"ID":16820,"Name":"Pobozowisko","Points":11130,"X":393,"Y":572,"Continent":"K53","Bonus":2,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872488Z"},{"ID":16821,"Name":"*INTERTWINED**","Points":9711,"X":512,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872488Z"},{"ID":16822,"Name":"NIERAJ03","Points":10206,"X":450,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872489Z"},{"ID":16824,"Name":"Jaaa","Points":10476,"X":585,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87249Z"},{"ID":16825,"Name":"Jaaa","Points":10481,"X":597,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872491Z"},{"ID":16826,"Name":"Darmowe przeprowadzki","Points":9809,"X":435,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872491Z"},{"ID":16827,"Name":"Vasperland_019","Points":10487,"X":629,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872492Z"},{"ID":16828,"Name":"0004","Points":10211,"X":584,"Y":400,"Continent":"K45","Bonus":8,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872493Z"},{"ID":16829,"Name":"Zielona cebulka","Points":9835,"X":416,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872493Z"},{"ID":16830,"Name":"A0290","Points":10362,"X":370,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872494Z"},{"ID":16831,"Name":"001","Points":10104,"X":391,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872494Z"},{"ID":16832,"Name":"VN Saladin","Points":9534,"X":468,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872495Z"},{"ID":16833,"Name":"012. Vengerberg","Points":10495,"X":576,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872496Z"},{"ID":16834,"Name":"Piwna 16","Points":6208,"X":613,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872496Z"},{"ID":16835,"Name":"013","Points":10141,"X":502,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872497Z"},{"ID":16836,"Name":"Village","Points":12154,"X":506,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872498Z"},{"ID":16837,"Name":"019","Points":9383,"X":378,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872498Z"},{"ID":16838,"Name":"Pobozowisko","Points":10963,"X":394,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872499Z"},{"ID":16839,"Name":"Pobozowisko","Points":10954,"X":411,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872499Z"},{"ID":16840,"Name":"031","Points":10160,"X":501,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8725Z"},{"ID":16841,"Name":"VN Nobunaga Hazama","Points":9652,"X":475,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872501Z"},{"ID":16842,"Name":"Murcia cuatro","Points":3396,"X":391,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872501Z"},{"ID":16843,"Name":"Jaaa","Points":10478,"X":608,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872502Z"},{"ID":16844,"Name":"Kasztan","Points":9825,"X":372,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872503Z"},{"ID":16845,"Name":"B017","Points":10051,"X":630,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872503Z"},{"ID":16846,"Name":"Boxes of Shinra Property","Points":10495,"X":527,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872504Z"},{"ID":16848,"Name":"Akacja","Points":9761,"X":371,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872505Z"},{"ID":16849,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":518,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872505Z"},{"ID":16850,"Name":"010","Points":10484,"X":371,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872506Z"},{"ID":16851,"Name":"005","Points":10311,"X":580,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872506Z"},{"ID":16852,"Name":"*INTERTWINED*","Points":9711,"X":510,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872507Z"},{"ID":16853,"Name":"Wioska barbarzyƄska","Points":10484,"X":621,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872508Z"},{"ID":16854,"Name":"Pobozowisko","Points":8504,"X":413,"Y":598,"Continent":"K54","Bonus":9,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872508Z"},{"ID":16855,"Name":"049","Points":10495,"X":561,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872509Z"},{"ID":16856,"Name":"Wioska barbarzyƄska","Points":3667,"X":600,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":8192845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87251Z"},{"ID":16857,"Name":"Knowhere","Points":10452,"X":373,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87251Z"},{"ID":16858,"Name":"A0118","Points":10362,"X":368,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872511Z"},{"ID":16859,"Name":"085. GardƂo","Points":11678,"X":627,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872512Z"},{"ID":16860,"Name":"007 | PALESTINA","Points":9544,"X":625,"Y":457,"Continent":"K46","Bonus":4,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872512Z"},{"ID":16861,"Name":"[004]","Points":9809,"X":624,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872513Z"},{"ID":16862,"Name":"Wioska barbarzyƄska","Points":10160,"X":374,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872513Z"},{"ID":16863,"Name":"014","Points":10495,"X":555,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872514Z"},{"ID":16864,"Name":"Wioska barbarzyƄska","Points":10481,"X":620,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872515Z"},{"ID":16865,"Name":"114","Points":10311,"X":588,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872515Z"},{"ID":16866,"Name":"022","Points":9950,"X":378,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872516Z"},{"ID":16867,"Name":"025 PotÄ™ĆŒny Dzban","Points":10476,"X":387,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872516Z"},{"ID":16868,"Name":"Pobozowisko","Points":9136,"X":415,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872517Z"},{"ID":16869,"Name":"Konradzik","Points":9835,"X":427,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872517Z"},{"ID":16870,"Name":"ZachĂłd - 004","Points":10495,"X":396,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872518Z"},{"ID":16871,"Name":"B001","Points":9778,"X":628,"Y":494,"Continent":"K46","Bonus":5,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872518Z"},{"ID":16872,"Name":"C Pld 001 Kraina kebaba","Points":9200,"X":408,"Y":588,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872519Z"},{"ID":16873,"Name":"Avanti!","Points":9950,"X":374,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87252Z"},{"ID":16874,"Name":"054 OZDR","Points":9994,"X":467,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87252Z"},{"ID":16875,"Name":"Brat447 XXX","Points":10487,"X":369,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872521Z"},{"ID":16876,"Name":"Pobozowisko","Points":10957,"X":411,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872521Z"},{"ID":16877,"Name":"K34 - [081] Before Land","Points":10259,"X":451,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872522Z"},{"ID":16878,"Name":"086","Points":10146,"X":582,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872522Z"},{"ID":16879,"Name":"072 KUZYNI mehehehe","Points":9902,"X":480,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872523Z"},{"ID":16880,"Name":"Ruins of the Sector 7","Points":10495,"X":529,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872524Z"},{"ID":16881,"Name":"[010]","Points":9809,"X":621,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872524Z"},{"ID":16882,"Name":"046. F64D","Points":10478,"X":485,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872525Z"},{"ID":16883,"Name":"040.","Points":10218,"X":485,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872525Z"},{"ID":16884,"Name":"Papa","Points":9950,"X":613,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872526Z"},{"ID":16885,"Name":"Myk i do kieszonki","Points":8877,"X":373,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872526Z"},{"ID":16886,"Name":"Wioska barbarzyƄska","Points":10008,"X":402,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872527Z"},{"ID":16887,"Name":"Zeta Reticuli S","Points":10997,"X":408,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872527Z"},{"ID":16888,"Name":"Pobozowisko","Points":10620,"X":408,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872528Z"},{"ID":16889,"Name":"Westcoast.070","Points":10178,"X":393,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872528Z"},{"ID":16890,"Name":"K34 x011","Points":6293,"X":444,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872529Z"},{"ID":16891,"Name":"VN Yi Seong-Gye","Points":9638,"X":466,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87253Z"},{"ID":16892,"Name":"Myk i do kieszonki","Points":9799,"X":373,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87253Z"},{"ID":16893,"Name":"013","Points":9860,"X":630,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872531Z"},{"ID":16894,"Name":"613|432 010 Podarta Strona","Points":9620,"X":613,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872531Z"},{"ID":16895,"Name":"Konfederacja +","Points":9720,"X":455,"Y":380,"Continent":"K34","Bonus":3,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872532Z"},{"ID":16897,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":433,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872532Z"},{"ID":16898,"Name":"#010.500|497","Points":9735,"X":619,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872533Z"},{"ID":16899,"Name":"Pobozowisko","Points":10957,"X":397,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872533Z"},{"ID":16900,"Name":"Brat447","Points":7278,"X":368,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872534Z"},{"ID":16901,"Name":"[204] WEST","Points":10306,"X":619,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872534Z"},{"ID":16902,"Name":"South K35","Points":8895,"X":576,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872535Z"},{"ID":16903,"Name":"U-5","Points":9442,"X":548,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872535Z"},{"ID":16904,"Name":"A003","Points":9827,"X":626,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872536Z"},{"ID":16905,"Name":"Ressier","Points":9994,"X":510,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872536Z"},{"ID":16906,"Name":"023","Points":10144,"X":497,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872537Z"},{"ID":16907,"Name":"017 Fasol podziękowaƂ","Points":10484,"X":389,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872537Z"},{"ID":16908,"Name":"Taran 005","Points":10311,"X":625,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872538Z"},{"ID":16909,"Name":"Pobozowisko","Points":10302,"X":411,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872538Z"},{"ID":16910,"Name":"A0175","Points":10362,"X":371,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872539Z"},{"ID":16911,"Name":"0028","Points":10447,"X":375,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87254Z"},{"ID":16912,"Name":"0146","Points":10019,"X":553,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87254Z"},{"ID":16913,"Name":"030","Points":7007,"X":491,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872541Z"},{"ID":16914,"Name":"SSJ 012","Points":9761,"X":515,"Y":630,"Continent":"K65","Bonus":6,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872541Z"},{"ID":16916,"Name":"FKG 01-29","Points":9835,"X":415,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872542Z"},{"ID":16917,"Name":"Knowhere","Points":10452,"X":372,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872542Z"},{"ID":16918,"Name":"Westcoast.078","Points":10178,"X":386,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872543Z"},{"ID":16919,"Name":"Osada koczownikĂłw","Points":10008,"X":403,"Y":415,"Continent":"K44","Bonus":6,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872543Z"},{"ID":16920,"Name":"[007]","Points":9809,"X":620,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872544Z"},{"ID":16921,"Name":"mklo","Points":6541,"X":539,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872544Z"},{"ID":16923,"Name":"33 im OrƂowa","Points":9809,"X":577,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872545Z"},{"ID":16924,"Name":"Westcoast.053","Points":10178,"X":397,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872545Z"},{"ID":16925,"Name":"Pobozowisko","Points":9464,"X":401,"Y":581,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872546Z"},{"ID":16926,"Name":"40002","Points":10838,"X":488,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872547Z"},{"ID":16927,"Name":"C 006","Points":9154,"X":579,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872547Z"},{"ID":16928,"Name":"A0176","Points":10362,"X":376,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872548Z"},{"ID":16929,"Name":"Brat447","Points":7069,"X":368,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872548Z"},{"ID":16930,"Name":"C Zach 003 Rudziniec","Points":9608,"X":403,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872549Z"},{"ID":16931,"Name":"Pobozowisko","Points":8493,"X":395,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872549Z"},{"ID":16932,"Name":"060 OZDR","Points":9825,"X":465,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87255Z"},{"ID":16933,"Name":"s2 Wioska barbarzyƄska","Points":10301,"X":399,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87255Z"},{"ID":16934,"Name":"041","Points":10638,"X":432,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872551Z"},{"ID":16935,"Name":"Wioska barbarzyƄska","Points":10226,"X":479,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872551Z"},{"ID":16936,"Name":"Polska","Points":10068,"X":541,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872552Z"},{"ID":16937,"Name":"089.","Points":10016,"X":501,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872553Z"},{"ID":16938,"Name":"Xyz","Points":10285,"X":436,"Y":444,"Continent":"K44","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872553Z"},{"ID":16939,"Name":"001 Wioska gazela","Points":10343,"X":622,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872554Z"},{"ID":16940,"Name":"073","Points":10311,"X":569,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872554Z"},{"ID":16941,"Name":"Osada koczownikĂłw","Points":10008,"X":377,"Y":459,"Continent":"K43","Bonus":7,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872555Z"},{"ID":16942,"Name":"C002 Yarikawa","Points":9687,"X":615,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872555Z"},{"ID":16943,"Name":"0011 Wioska barbarzyƄska","Points":10092,"X":423,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872556Z"},{"ID":16944,"Name":"0064","Points":10083,"X":457,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872556Z"},{"ID":16945,"Name":"A0083","Points":10362,"X":371,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872557Z"},{"ID":16946,"Name":"Knowhere","Points":10452,"X":374,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872558Z"},{"ID":16947,"Name":"050 OZDR","Points":9902,"X":469,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872559Z"},{"ID":16948,"Name":"012","Points":10478,"X":376,"Y":546,"Continent":"K53","Bonus":4,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872559Z"},{"ID":16950,"Name":"009","Points":9825,"X":568,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87256Z"},{"ID":16951,"Name":"VN Atylla","Points":9558,"X":467,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872561Z"},{"ID":16952,"Name":"Konfederacja","Points":9741,"X":459,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872561Z"},{"ID":16953,"Name":"Ruch135","Points":9183,"X":593,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872562Z"},{"ID":16954,"Name":"017","Points":10311,"X":597,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872563Z"},{"ID":16955,"Name":"Konfederacja 8","Points":9976,"X":453,"Y":377,"Continent":"K34","Bonus":6,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872563Z"},{"ID":16956,"Name":"047","Points":10247,"X":484,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872564Z"},{"ID":16957,"Name":"032","Points":9825,"X":470,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872564Z"},{"ID":16958,"Name":"Wioska barbarzyƄska","Points":10068,"X":543,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872565Z"},{"ID":16959,"Name":"Jaaa","Points":10106,"X":613,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872565Z"},{"ID":16960,"Name":"40004","Points":10971,"X":483,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872566Z"},{"ID":16961,"Name":"A0127","Points":10362,"X":369,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872566Z"},{"ID":16962,"Name":"Westcoast.093","Points":10178,"X":386,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872567Z"},{"ID":16963,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":432,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872568Z"},{"ID":16964,"Name":"027","Points":5465,"X":371,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872568Z"},{"ID":16965,"Name":"005 VC Palarnia","Points":10008,"X":400,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872569Z"},{"ID":16966,"Name":"014 Okayama","Points":10495,"X":626,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872569Z"},{"ID":16967,"Name":"Feed me more 016","Points":10066,"X":485,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87257Z"},{"ID":16968,"Name":"Kentin ufam Tobie","Points":10000,"X":383,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87257Z"},{"ID":16969,"Name":"Sector 1 Slums Area","Points":10224,"X":505,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872571Z"},{"ID":16970,"Name":"011 Meereen","Points":10249,"X":614,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872572Z"},{"ID":16971,"Name":"Jan Krosse","Points":6408,"X":629,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872572Z"},{"ID":16972,"Name":"MojeSzczytToTwĂłjDno","Points":10387,"X":526,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872573Z"},{"ID":16973,"Name":"Wioska","Points":7705,"X":381,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872573Z"},{"ID":16974,"Name":"Jaaa","Points":10484,"X":621,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872574Z"},{"ID":16976,"Name":"Ulu-mulu","Points":11678,"X":424,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872575Z"},{"ID":16977,"Name":"Sony 911","Points":10046,"X":566,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872575Z"},{"ID":16978,"Name":"55. Wioska 55","Points":10003,"X":377,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872576Z"},{"ID":16979,"Name":"$$$","Points":10452,"X":421,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872576Z"},{"ID":16980,"Name":"Myk i do kieszonki","Points":9799,"X":375,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872577Z"},{"ID":16981,"Name":"ave why!","Points":10300,"X":459,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872577Z"},{"ID":16982,"Name":"002 osada koniki","Points":9835,"X":600,"Y":579,"Continent":"K56","Bonus":6,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872578Z"},{"ID":16983,"Name":"013 KTW","Points":10495,"X":621,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872578Z"},{"ID":16984,"Name":"036","Points":9860,"X":629,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872579Z"},{"ID":16985,"Name":"Bocianikson010","Points":9955,"X":618,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872579Z"},{"ID":16986,"Name":"017","Points":6141,"X":372,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87258Z"},{"ID":16987,"Name":"A031","Points":10495,"X":615,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87258Z"},{"ID":16988,"Name":"0553","Points":10019,"X":554,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872581Z"},{"ID":16989,"Name":"[008]","Points":9809,"X":626,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872581Z"},{"ID":16990,"Name":"CALL 1066","Points":10495,"X":555,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872582Z"},{"ID":16991,"Name":"PocaƂuj mnie prosto w d**e","Points":2767,"X":630,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849094111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872582Z"},{"ID":16992,"Name":"Wioska barbarzyƄska","Points":9835,"X":422,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872583Z"},{"ID":16993,"Name":"CALL 930","Points":10311,"X":507,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872584Z"},{"ID":16994,"Name":"011","Points":9825,"X":495,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872584Z"},{"ID":16995,"Name":"Jaaa","Points":10487,"X":577,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872585Z"},{"ID":16996,"Name":"021. Hyperporea","Points":10495,"X":571,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872585Z"},{"ID":16997,"Name":"Pobozowisko","Points":10914,"X":399,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872586Z"},{"ID":16998,"Name":"K34 - [070] Before Land","Points":10126,"X":462,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872586Z"},{"ID":16999,"Name":"Horyzont zdarzeƄ","Points":9835,"X":535,"Y":621,"Continent":"K65","Bonus":1,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872587Z"},{"ID":17000,"Name":"c 000 Wioska","Points":10083,"X":419,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872587Z"},{"ID":17001,"Name":"Pobozowisko","Points":10971,"X":393,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872588Z"},{"ID":17002,"Name":"004 Wioska Witcher","Points":9255,"X":623,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872588Z"},{"ID":17003,"Name":"Ulu-mulu","Points":6794,"X":432,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872589Z"},{"ID":17004,"Name":"Avanti!","Points":9950,"X":374,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872589Z"},{"ID":17005,"Name":"024. Primis","Points":10252,"X":619,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87259Z"},{"ID":17006,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8820,"X":539,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87259Z"},{"ID":17007,"Name":"005","Points":10495,"X":406,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872591Z"},{"ID":17008,"Name":"Kentin ufam Tobie","Points":10019,"X":384,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872591Z"},{"ID":17009,"Name":"FKG 01-32","Points":9835,"X":415,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872592Z"},{"ID":17010,"Name":"Westcoast.060","Points":10178,"X":387,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872592Z"},{"ID":17011,"Name":"015 Cailin","Points":10030,"X":612,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872593Z"},{"ID":17013,"Name":"yyy","Points":10209,"X":494,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872593Z"},{"ID":17014,"Name":"-048-","Points":10236,"X":467,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872594Z"},{"ID":17015,"Name":".043.","Points":10503,"X":494,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872594Z"},{"ID":17016,"Name":"Part XXIX","Points":10495,"X":534,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872595Z"},{"ID":17017,"Name":"007.Batura Sar","Points":10495,"X":605,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872595Z"},{"ID":17018,"Name":"073 - Ruten","Points":9519,"X":422,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872596Z"},{"ID":17019,"Name":"XXX Daleko","Points":7106,"X":372,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872597Z"},{"ID":17020,"Name":"Ulu-mulu","Points":10241,"X":422,"Y":603,"Continent":"K64","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872597Z"},{"ID":17021,"Name":"0035","Points":10083,"X":555,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872598Z"},{"ID":17022,"Name":"Wioska barbarzyƄska2","Points":9994,"X":508,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872598Z"},{"ID":17023,"Name":"011 Teufel666","Points":10495,"X":389,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872599Z"},{"ID":17024,"Name":"108","Points":10237,"X":443,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872599Z"},{"ID":17025,"Name":"Wioska","Points":10222,"X":601,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8726Z"},{"ID":17026,"Name":"Jaaa","Points":10476,"X":582,"Y":597,"Continent":"K55","Bonus":7,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872601Z"},{"ID":17027,"Name":"Westcoast.023","Points":10178,"X":390,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872601Z"},{"ID":17029,"Name":"181","Points":10311,"X":573,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872602Z"},{"ID":17030,"Name":"Wioska","Points":10222,"X":604,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872602Z"},{"ID":17031,"Name":"048","Points":9825,"X":479,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872603Z"},{"ID":17032,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":533,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872603Z"},{"ID":17033,"Name":"065","Points":10311,"X":584,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872604Z"},{"ID":17034,"Name":"Jaaa","Points":10475,"X":619,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872605Z"},{"ID":17035,"Name":"Pobozowisko","Points":10960,"X":398,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872605Z"},{"ID":17036,"Name":"0067","Points":10083,"X":456,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872606Z"},{"ID":17037,"Name":"Wioska barbarzyƄska","Points":8483,"X":367,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872606Z"},{"ID":17038,"Name":"Ulu-mulu","Points":10051,"X":422,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872607Z"},{"ID":17039,"Name":"Ulu-mulu","Points":9059,"X":418,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872607Z"},{"ID":17040,"Name":"Piwna 04","Points":8528,"X":616,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872608Z"},{"ID":17041,"Name":"0550","Points":9049,"X":429,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872609Z"},{"ID":17042,"Name":"Gattacka","Points":9886,"X":602,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872609Z"},{"ID":17043,"Name":"XXXX","Points":10068,"X":504,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87261Z"},{"ID":17044,"Name":"006 Ystad","Points":10551,"X":607,"Y":570,"Continent":"K56","Bonus":4,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87261Z"},{"ID":17045,"Name":"030 PotÄ™ĆŒny Dzban","Points":10478,"X":386,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872611Z"},{"ID":17046,"Name":"009 legarda","Points":10475,"X":387,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872611Z"},{"ID":17047,"Name":"36 im Diemina","Points":9809,"X":584,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872612Z"},{"ID":17049,"Name":"023","Points":9825,"X":562,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872612Z"},{"ID":17050,"Name":"0314","Points":9717,"X":428,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872613Z"},{"ID":17051,"Name":"Tys je pofirtany mamlosie","Points":9661,"X":377,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872614Z"},{"ID":17052,"Name":"A0084","Points":10362,"X":373,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872614Z"},{"ID":17053,"Name":".044.","Points":10485,"X":497,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872615Z"},{"ID":17054,"Name":"BACÓWKA |016|","Points":12154,"X":633,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872615Z"},{"ID":17055,"Name":"SINGED X SZEF","Points":9994,"X":493,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872616Z"},{"ID":17056,"Name":"048","Points":10237,"X":482,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872616Z"},{"ID":17057,"Name":"MojeSzczytToTwĂłjDno","Points":9737,"X":534,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872617Z"},{"ID":17058,"Name":"0131","Points":10083,"X":448,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872618Z"},{"ID":17059,"Name":"SSJ 029","Points":9505,"X":506,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872618Z"},{"ID":17060,"Name":"-043-","Points":7215,"X":386,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872619Z"},{"ID":17061,"Name":"A0137","Points":10362,"X":371,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872619Z"},{"ID":17062,"Name":"Wioska (003)","Points":8529,"X":624,"Y":467,"Continent":"K46","Bonus":4,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87262Z"},{"ID":17063,"Name":"Wioska barbarzyƄska","Points":10484,"X":377,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87262Z"},{"ID":17064,"Name":"Westcoast.013","Points":10178,"X":389,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872621Z"},{"ID":17065,"Name":"K34 x004","Points":9934,"X":445,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872621Z"},{"ID":17066,"Name":"Wioska","Points":10178,"X":375,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872622Z"},{"ID":17067,"Name":"Horyzont zdarzeƄ","Points":10019,"X":539,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872623Z"},{"ID":17068,"Name":"023 | PALESTINA","Points":9544,"X":621,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872623Z"},{"ID":17069,"Name":"Zeta Reticuli S2","Points":11550,"X":399,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872624Z"},{"ID":17070,"Name":"019","Points":9449,"X":553,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872624Z"},{"ID":17071,"Name":"Horyzont zdarzeƄ","Points":10019,"X":535,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872625Z"},{"ID":17072,"Name":"SINGED X SZEF","Points":8896,"X":482,"Y":374,"Continent":"K34","Bonus":6,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872626Z"},{"ID":17073,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872626Z"},{"ID":17074,"Name":"Po PP","Points":6399,"X":608,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9262877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872627Z"},{"ID":17075,"Name":"Wioska barbarzyƄska","Points":10068,"X":546,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872627Z"},{"ID":17076,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":534,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872628Z"},{"ID":17077,"Name":"0305","Points":10019,"X":425,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872628Z"},{"ID":17078,"Name":"205","Points":8493,"X":573,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872629Z"},{"ID":17079,"Name":"*INTERTWINED**","Points":9711,"X":510,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872629Z"},{"ID":17080,"Name":"Bocianikson018","Points":7392,"X":622,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87263Z"},{"ID":17081,"Name":"A0085","Points":10362,"X":372,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872631Z"},{"ID":17082,"Name":"18 W domach z betonu","Points":4621,"X":630,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872632Z"},{"ID":17083,"Name":"Westcoast.031","Points":10178,"X":390,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872633Z"},{"ID":17085,"Name":"010 Qarth","Points":9808,"X":612,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872633Z"},{"ID":17086,"Name":"#0004","Points":9817,"X":519,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872634Z"},{"ID":17087,"Name":"008","Points":9975,"X":619,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872634Z"},{"ID":17088,"Name":"0003 Wioska barbarzyƄska","Points":10544,"X":424,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872635Z"},{"ID":17089,"Name":"26 im Gribowa","Points":9809,"X":581,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872635Z"},{"ID":17090,"Name":"Hornvale","Points":10495,"X":484,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872636Z"},{"ID":17091,"Name":"Vasperland_021","Points":10484,"X":627,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872636Z"},{"ID":17092,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872637Z"},{"ID":17093,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872637Z"},{"ID":17094,"Name":"219 |","Points":2751,"X":621,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872638Z"},{"ID":17095,"Name":"Twierdzą 5","Points":7332,"X":625,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872638Z"},{"ID":17096,"Name":"Wioska barbarzyƄska","Points":10008,"X":403,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872639Z"},{"ID":17097,"Name":"B010","Points":9835,"X":628,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87264Z"},{"ID":17098,"Name":"K34 x021","Points":8199,"X":468,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87264Z"},{"ID":17099,"Name":"Pobozowisko","Points":7736,"X":400,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872641Z"},{"ID":17100,"Name":"007","Points":9753,"X":395,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872641Z"},{"ID":17101,"Name":"Hel 02","Points":9819,"X":613,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872642Z"},{"ID":17102,"Name":"40003","Points":10838,"X":488,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872642Z"},{"ID":17103,"Name":"Jaaa","Points":10484,"X":613,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872643Z"},{"ID":17104,"Name":"VN Illumi Zoldyck","Points":9632,"X":461,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872643Z"},{"ID":17105,"Name":"Konradzik","Points":9835,"X":427,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872644Z"},{"ID":17107,"Name":"0031","Points":9968,"X":582,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872644Z"},{"ID":17108,"Name":"0010 Wioska barbarzyƄska","Points":9434,"X":423,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872645Z"},{"ID":17109,"Name":"Wioska barbarzyƄska","Points":10479,"X":373,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872645Z"},{"ID":17111,"Name":"Westcoast.067","Points":10178,"X":387,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872646Z"},{"ID":17112,"Name":"South K35","Points":10042,"X":551,"Y":384,"Continent":"K35","Bonus":6,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872646Z"},{"ID":17113,"Name":"015","Points":10311,"X":600,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872647Z"},{"ID":17114,"Name":"022.","Points":10220,"X":489,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872647Z"},{"ID":17115,"Name":"012 Asshai","Points":10400,"X":611,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872648Z"},{"ID":17116,"Name":"Szulernia","Points":9995,"X":411,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872648Z"},{"ID":17117,"Name":"Wioska","Points":10178,"X":381,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872649Z"},{"ID":17118,"Name":"Konradzik","Points":9835,"X":428,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872649Z"},{"ID":17119,"Name":"Pastorlandia","Points":10495,"X":374,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87265Z"},{"ID":17120,"Name":"033","Points":10311,"X":580,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87265Z"},{"ID":17121,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":525,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872651Z"},{"ID":17122,"Name":"Darma","Points":9835,"X":426,"Y":392,"Continent":"K34","Bonus":1,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872652Z"},{"ID":17123,"Name":"001","Points":9825,"X":524,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872652Z"},{"ID":17124,"Name":"-006- K55","Points":9750,"X":595,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872653Z"},{"ID":17125,"Name":"Ulu-mulu","Points":11678,"X":424,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872653Z"},{"ID":17126,"Name":"014","Points":10141,"X":497,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872654Z"},{"ID":17127,"Name":"Westcoast.054","Points":10178,"X":394,"Y":422,"Continent":"K43","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872654Z"},{"ID":17128,"Name":"SoƂtys Twojej Wsi","Points":9638,"X":434,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872655Z"},{"ID":17129,"Name":"Westcoast.047","Points":10178,"X":396,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872655Z"},{"ID":17130,"Name":"Essa 004","Points":10087,"X":571,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872656Z"},{"ID":17131,"Name":"049","Points":10237,"X":475,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872656Z"},{"ID":17132,"Name":"Mniejsze zƂo 0011","Points":9508,"X":375,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872657Z"},{"ID":17133,"Name":"VN Pelagius","Points":10119,"X":476,"Y":371,"Continent":"K34","Bonus":2,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872657Z"},{"ID":17134,"Name":"047. F64D","Points":10220,"X":484,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872658Z"},{"ID":17135,"Name":"Taran","Points":9415,"X":548,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872658Z"},{"ID":17136,"Name":"0152","Points":10019,"X":552,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872659Z"},{"ID":17137,"Name":"Gattacka","Points":9818,"X":604,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872659Z"},{"ID":17138,"Name":"WKS ZAWISZA BDG","Points":5885,"X":391,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87266Z"},{"ID":17139,"Name":"Ulu-mulu","Points":10101,"X":431,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87266Z"},{"ID":17140,"Name":"0009 Wioska Gernot","Points":10544,"X":424,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872661Z"},{"ID":17141,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10378,"X":439,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872661Z"},{"ID":17142,"Name":"SSJ 047","Points":9330,"X":505,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872662Z"},{"ID":17143,"Name":"Westcoast.034","Points":10178,"X":395,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872662Z"},{"ID":17144,"Name":"#020.499|489","Points":9735,"X":618,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872663Z"},{"ID":17145,"Name":"028 PotÄ™ĆŒny Dzban","Points":10479,"X":385,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872663Z"},{"ID":17146,"Name":"Taran","Points":9173,"X":549,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872664Z"},{"ID":17147,"Name":"090. ZƂy Kraj","Points":11678,"X":625,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872664Z"},{"ID":17148,"Name":"ave why!","Points":10213,"X":455,"Y":622,"Continent":"K64","Bonus":1,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872665Z"},{"ID":17149,"Name":"PRO8L3M","Points":9835,"X":470,"Y":485,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872665Z"},{"ID":17150,"Name":"R-4","Points":9013,"X":556,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872666Z"},{"ID":17152,"Name":"Pobozowisko","Points":10951,"X":410,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872667Z"},{"ID":17153,"Name":"026.","Points":10217,"X":491,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872667Z"},{"ID":17154,"Name":"008","Points":10143,"X":498,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872668Z"},{"ID":17155,"Name":"R012","Points":5300,"X":391,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872668Z"},{"ID":17156,"Name":"HORUS","Points":9885,"X":524,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872669Z"},{"ID":17157,"Name":"Belvedere 014","Points":9841,"X":580,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872669Z"},{"ID":17158,"Name":"Pobozowisko","Points":10966,"X":395,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87267Z"},{"ID":17159,"Name":"Wioska 030","Points":9761,"X":603,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87267Z"},{"ID":17160,"Name":"Pobozowisko","Points":10767,"X":400,"Y":587,"Continent":"K54","Bonus":1,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872671Z"},{"ID":17162,"Name":"Kentin ufam Tobie","Points":10000,"X":435,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872671Z"},{"ID":17163,"Name":"#0001 - CSA","Points":10019,"X":520,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872672Z"},{"ID":17164,"Name":"Szulernia","Points":9981,"X":410,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872672Z"},{"ID":17165,"Name":"Wioska barbarzyƄska","Points":5061,"X":417,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872673Z"},{"ID":17166,"Name":"Jan 029 Ć»yczę powodzenia Nord K","Points":9688,"X":637,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872673Z"},{"ID":17168,"Name":"Knowhere","Points":10282,"X":397,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872674Z"},{"ID":17169,"Name":"Murcia dos","Points":4082,"X":390,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872674Z"},{"ID":17170,"Name":"0147","Points":10160,"X":550,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872675Z"},{"ID":17171,"Name":"Westcoast.055","Points":10178,"X":397,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872675Z"},{"ID":17172,"Name":"Osada koczownikĂłw","Points":10242,"X":572,"Y":607,"Continent":"K65","Bonus":3,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872676Z"},{"ID":17173,"Name":"Powolutku","Points":10252,"X":582,"Y":419,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872676Z"},{"ID":17174,"Name":"Avanti!","Points":9950,"X":373,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872677Z"},{"ID":17175,"Name":"0123","Points":10019,"X":448,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872678Z"},{"ID":17176,"Name":"Belvedere 015","Points":9245,"X":588,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872678Z"},{"ID":17177,"Name":"005 Hello Moto","Points":10001,"X":604,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872679Z"},{"ID":17178,"Name":"VN Takeda","Points":9527,"X":466,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872679Z"},{"ID":17179,"Name":"z 044","Points":10226,"X":578,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87268Z"},{"ID":17180,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87268Z"},{"ID":17181,"Name":"B011","Points":7435,"X":598,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872681Z"},{"ID":17183,"Name":"Ulu-mulu","Points":11678,"X":425,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872681Z"},{"ID":17185,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":526,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872682Z"},{"ID":17186,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":437,"Y":611,"Continent":"K64","Bonus":3,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872682Z"},{"ID":17187,"Name":"Wioska barbarzyƄska","Points":8331,"X":487,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872683Z"},{"ID":17188,"Name":"014 KTW","Points":10495,"X":623,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872683Z"},{"ID":17189,"Name":"HORUS","Points":9905,"X":517,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872684Z"},{"ID":17190,"Name":"Pobozowisko","Points":10952,"X":408,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872684Z"},{"ID":17191,"Name":"Wioska barbarzyƄska","Points":10476,"X":446,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872685Z"},{"ID":17192,"Name":"Kentin ufam Tobie","Points":10000,"X":384,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872685Z"},{"ID":17193,"Name":"Zeta Reticuli S3","Points":10795,"X":426,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872686Z"},{"ID":17194,"Name":"Wioska","Points":8999,"X":378,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872686Z"},{"ID":17195,"Name":"Oeste","Points":5301,"X":385,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872687Z"},{"ID":17196,"Name":"K34 - [074] Before Land","Points":10259,"X":450,"Y":382,"Continent":"K34","Bonus":4,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872688Z"},{"ID":17197,"Name":"Westcoast.074","Points":10178,"X":399,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872688Z"},{"ID":17198,"Name":"025","Points":10252,"X":564,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872689Z"},{"ID":17199,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872689Z"},{"ID":17200,"Name":"Wioska barbarzyƄska","Points":10068,"X":545,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87269Z"},{"ID":17201,"Name":"034 |","Points":10105,"X":622,"Y":543,"Continent":"K56","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87269Z"},{"ID":17202,"Name":"Wioska barbarzyƄska","Points":9835,"X":421,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872691Z"},{"ID":17203,"Name":"0154","Points":10083,"X":547,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872691Z"},{"ID":17204,"Name":"FKG 01-03","Points":9835,"X":414,"Y":403,"Continent":"K44","Bonus":4,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872692Z"},{"ID":17205,"Name":"A0128","Points":10362,"X":369,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872692Z"},{"ID":17206,"Name":"s5 Wioska barbarzyƄska","Points":10068,"X":401,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872693Z"},{"ID":17207,"Name":"A0304","Points":10362,"X":373,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872693Z"},{"ID":17208,"Name":"0030","Points":10319,"X":625,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872694Z"},{"ID":17209,"Name":"012","Points":9835,"X":611,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872694Z"},{"ID":17210,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872695Z"},{"ID":17211,"Name":"Belvedere 016","Points":10273,"X":585,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872695Z"},{"ID":17212,"Name":"029","Points":10139,"X":509,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872696Z"},{"ID":17213,"Name":"023","Points":9825,"X":470,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872696Z"},{"ID":17214,"Name":"Pobozowisko","Points":8803,"X":415,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872697Z"},{"ID":17215,"Name":"Wioska","Points":9697,"X":374,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872697Z"},{"ID":17216,"Name":"0018. C -","Points":6975,"X":627,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872698Z"},{"ID":17217,"Name":"Wioska Strange123","Points":3784,"X":455,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872699Z"},{"ID":17218,"Name":"Gattacka","Points":9861,"X":604,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872699Z"},{"ID":17219,"Name":"005","Points":9825,"X":523,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8727Z"},{"ID":17220,"Name":"[0058]","Points":10495,"X":417,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8727Z"},{"ID":17221,"Name":"K34 - [067] Before Land","Points":10259,"X":461,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872701Z"},{"ID":17222,"Name":"146 MIKOX 019","Points":9765,"X":593,"Y":413,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872702Z"},{"ID":17223,"Name":"W.181/14","Points":10242,"X":616,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872702Z"},{"ID":17224,"Name":"012","Points":10311,"X":578,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872703Z"},{"ID":17225,"Name":"BossMan (=)","Points":10495,"X":561,"Y":462,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872703Z"},{"ID":17226,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8819,"X":538,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872704Z"},{"ID":17227,"Name":"20 Art Brud","Points":2435,"X":626,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872704Z"},{"ID":17228,"Name":"055 OZDR","Points":10365,"X":467,"Y":629,"Continent":"K64","Bonus":8,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872705Z"},{"ID":17229,"Name":"068","Points":10495,"X":630,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872705Z"},{"ID":17230,"Name":"019","Points":10311,"X":600,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872706Z"},{"ID":17231,"Name":"A READY","Points":10252,"X":587,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872707Z"},{"ID":17232,"Name":"026 PotÄ™ĆŒny Dzban","Points":10475,"X":387,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872707Z"},{"ID":17233,"Name":"010.","Points":9835,"X":628,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872708Z"},{"ID":17234,"Name":"Pobozowisko","Points":10957,"X":393,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872708Z"},{"ID":17235,"Name":"Wioska 023","Points":9761,"X":594,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872709Z"},{"ID":17236,"Name":"012.","Points":9835,"X":628,"Y":530,"Continent":"K56","Bonus":8,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872709Z"},{"ID":17237,"Name":"C 004","Points":10283,"X":580,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87271Z"},{"ID":17238,"Name":"Wioska barbarzyƄska","Points":9458,"X":378,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87271Z"},{"ID":17239,"Name":"Belvedere 019","Points":9957,"X":587,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872711Z"},{"ID":17240,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":527,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872712Z"},{"ID":17241,"Name":"RTS 1","Points":10495,"X":570,"Y":614,"Continent":"K65","Bonus":5,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872712Z"},{"ID":17242,"Name":"Darma","Points":9159,"X":419,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872713Z"},{"ID":17243,"Name":"A0119","Points":10362,"X":372,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872713Z"},{"ID":17244,"Name":"32 im Naumowa","Points":9809,"X":580,"Y":400,"Continent":"K45","Bonus":7,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872714Z"},{"ID":17246,"Name":"004 Hello Moto","Points":10001,"X":602,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872714Z"},{"ID":17247,"Name":"K34 x014","Points":7778,"X":444,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872715Z"},{"ID":17248,"Name":"Pobozowisko","Points":10971,"X":396,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872715Z"},{"ID":17249,"Name":"Ulu-mulu","Points":11678,"X":426,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872716Z"},{"ID":17250,"Name":"Belvedere 017","Points":9809,"X":584,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872717Z"},{"ID":17251,"Name":"025. Thangorodrim","Points":10495,"X":565,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872717Z"},{"ID":17252,"Name":"CALL 931","Points":10311,"X":508,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872718Z"},{"ID":17253,"Name":"032 |","Points":9919,"X":623,"Y":545,"Continent":"K56","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872718Z"},{"ID":17254,"Name":"Kentin ufam Tobie","Points":10000,"X":382,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872719Z"},{"ID":17255,"Name":"*0007 Baraki","Points":10252,"X":609,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872719Z"},{"ID":17256,"Name":"November","Points":9983,"X":613,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87272Z"},{"ID":17257,"Name":"Sasowy RĂłg","Points":9411,"X":373,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872721Z"},{"ID":17258,"Name":"Zakręcona 2","Points":9159,"X":575,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872721Z"},{"ID":17259,"Name":"R-2","Points":9013,"X":561,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872722Z"},{"ID":17260,"Name":"B 001","Points":10362,"X":586,"Y":411,"Continent":"K45","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872722Z"},{"ID":17261,"Name":"A0310","Points":10362,"X":369,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872723Z"},{"ID":17262,"Name":"Darma","Points":9835,"X":425,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872723Z"},{"ID":17263,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872724Z"},{"ID":17264,"Name":"[215] WEST","Points":10048,"X":608,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872725Z"},{"ID":17265,"Name":"063","Points":10311,"X":563,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872725Z"},{"ID":17266,"Name":"002","Points":10495,"X":404,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872726Z"},{"ID":17267,"Name":"029.","Points":10218,"X":491,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872727Z"},{"ID":17268,"Name":"Wioska","Points":10178,"X":378,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872727Z"},{"ID":17269,"Name":"Tank 015. Bez przebaczenia","Points":9812,"X":396,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872728Z"},{"ID":17270,"Name":"Wioska barbarzyƄska3","Points":9994,"X":506,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872729Z"},{"ID":17271,"Name":"B011","Points":9827,"X":630,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872729Z"},{"ID":17272,"Name":"001","Points":10141,"X":502,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87273Z"},{"ID":17273,"Name":"Wioska barbarzyƄska","Points":9962,"X":378,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87273Z"},{"ID":17274,"Name":"Kentin ufam Tobie","Points":10000,"X":382,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872731Z"},{"ID":17275,"Name":"K34 - [075] Before Land","Points":10259,"X":464,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872732Z"},{"ID":17276,"Name":"Taran","Points":9379,"X":550,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872732Z"},{"ID":17277,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":444,"Continent":"K43","Bonus":1,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872733Z"},{"ID":17279,"Name":"Wioska barbarzyƄska","Points":10479,"X":372,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872733Z"},{"ID":17281,"Name":"Jaaa","Points":10479,"X":614,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872734Z"},{"ID":17283,"Name":"maney","Points":9835,"X":420,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872734Z"},{"ID":17284,"Name":"Wioska Kurji","Points":9216,"X":368,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872735Z"},{"ID":17285,"Name":"Wioska","Points":10222,"X":611,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872735Z"},{"ID":17286,"Name":"Wioska","Points":10178,"X":376,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872736Z"},{"ID":17287,"Name":"Wioska barbarzyƄska","Points":10478,"X":615,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872737Z"},{"ID":17288,"Name":"Westcoast.048","Points":10178,"X":395,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872737Z"},{"ID":17289,"Name":"Jaaa","Points":10484,"X":617,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872738Z"},{"ID":17290,"Name":"016","Points":9860,"X":630,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872738Z"},{"ID":17291,"Name":"006 Hello Moto","Points":10001,"X":603,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872739Z"},{"ID":17292,"Name":"007. Nilfgaard","Points":10495,"X":567,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87274Z"},{"ID":17293,"Name":"Belvedere 021","Points":10273,"X":590,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87274Z"},{"ID":17294,"Name":"030","Points":9860,"X":634,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872741Z"},{"ID":17295,"Name":"031 lecimy kurv@ tutaj","Points":10481,"X":624,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872741Z"},{"ID":17296,"Name":".020.","Points":10252,"X":494,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872742Z"},{"ID":17297,"Name":"Wioska","Points":10178,"X":375,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872742Z"},{"ID":17299,"Name":"*INTERTWINED*","Points":9711,"X":517,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872743Z"},{"ID":17300,"Name":"South K35","Points":9809,"X":558,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872744Z"},{"ID":17301,"Name":"ZachĂłd - 013","Points":7761,"X":389,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872744Z"},{"ID":17302,"Name":"Westcoast.015","Points":10178,"X":389,"Y":436,"Continent":"K43","Bonus":1,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872745Z"},{"ID":17303,"Name":"West 06","Points":9747,"X":629,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872745Z"},{"ID":17304,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":516,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872746Z"},{"ID":17305,"Name":"094","Points":9199,"X":449,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872746Z"},{"ID":17306,"Name":"Taran","Points":9379,"X":550,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872747Z"},{"ID":17307,"Name":"D020","Points":10401,"X":594,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872747Z"},{"ID":17308,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":529,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872748Z"},{"ID":17309,"Name":"MojeSzczytToTwĂłjDno","Points":10060,"X":529,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872749Z"},{"ID":17310,"Name":"Belvedere 022","Points":9899,"X":588,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872749Z"},{"ID":17311,"Name":"#026 A","Points":9204,"X":456,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87275Z"},{"ID":17312,"Name":"001 Samotnia","Points":9924,"X":497,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87275Z"},{"ID":17313,"Name":"058 PotÄ™ĆŒny Dzban","Points":10479,"X":384,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872751Z"},{"ID":17314,"Name":"A034","Points":10220,"X":450,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872751Z"},{"ID":17315,"Name":"A0086","Points":10362,"X":369,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872752Z"},{"ID":17316,"Name":"0000","Points":11321,"X":531,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872753Z"},{"ID":17317,"Name":"Pobozowisko","Points":7775,"X":415,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872753Z"},{"ID":17318,"Name":"Byczyna","Points":10336,"X":376,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872754Z"},{"ID":17319,"Name":"Ulu-mulu","Points":5579,"X":419,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872754Z"},{"ID":17320,"Name":"028","Points":6098,"X":368,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872755Z"},{"ID":17321,"Name":"Pobozowisko","Points":9215,"X":402,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872755Z"},{"ID":17322,"Name":"029","Points":5790,"X":369,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872756Z"},{"ID":17323,"Name":"067","Points":9821,"X":441,"Y":613,"Continent":"K64","Bonus":5,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872756Z"},{"ID":17324,"Name":"059 PotÄ™ĆŒny Dzban","Points":10490,"X":382,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872757Z"},{"ID":17326,"Name":"Jaaa","Points":10622,"X":623,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872758Z"},{"ID":17327,"Name":"Myk i do kieszonki","Points":9845,"X":373,"Y":512,"Continent":"K53","Bonus":7,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872758Z"},{"ID":17329,"Name":"[307] Chorągiewka na wietrze","Points":10068,"X":589,"Y":423,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872759Z"},{"ID":17330,"Name":"Szlachcic 012","Points":10311,"X":623,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872759Z"},{"ID":17331,"Name":"FKG 01-26","Points":9835,"X":414,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87276Z"},{"ID":17332,"Name":"#027 A","Points":9930,"X":454,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87276Z"},{"ID":17333,"Name":"Ulu-mulu","Points":6944,"X":428,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872761Z"},{"ID":17334,"Name":"Ulu-mulu","Points":8021,"X":436,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872761Z"},{"ID":17335,"Name":"Kentin ufam Tobie","Points":10000,"X":382,"Y":449,"Continent":"K43","Bonus":4,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872762Z"},{"ID":17336,"Name":"008 O rety rety, lecą karety!","Points":10478,"X":389,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872762Z"},{"ID":17337,"Name":"Wioska barbarzyƄska","Points":10008,"X":404,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872763Z"},{"ID":17338,"Name":"Wioska barbarzyƄska","Points":9994,"X":396,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872764Z"},{"ID":17339,"Name":"016","Points":9735,"X":556,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872764Z"},{"ID":17340,"Name":"001 Monety 1 p600","Points":9994,"X":511,"Y":367,"Continent":"K35","Bonus":9,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872765Z"},{"ID":17341,"Name":"Wioska barbarzyƄska","Points":10479,"X":371,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872765Z"},{"ID":17342,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10104,"X":438,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872766Z"},{"ID":17343,"Name":"A0132","Points":10362,"X":373,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872766Z"},{"ID":17344,"Name":"04 im Owsjenki","Points":9809,"X":591,"Y":414,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872767Z"},{"ID":17345,"Name":"Wioska barbarzyƄska","Points":10008,"X":405,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872768Z"},{"ID":17346,"Name":"OgĂłrkowy baron","Points":9835,"X":404,"Y":408,"Continent":"K44","Bonus":9,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872768Z"},{"ID":17347,"Name":"Wioska 034","Points":9761,"X":604,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872769Z"},{"ID":17348,"Name":"Wioska barbarzyƄska","Points":10068,"X":546,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872769Z"},{"ID":17349,"Name":"yyyy","Points":10209,"X":497,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87277Z"},{"ID":17350,"Name":"- 127 -","Points":10000,"X":542,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87277Z"},{"ID":17351,"Name":"A-001","Points":10654,"X":415,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872771Z"},{"ID":17352,"Name":"A READY","Points":10019,"X":589,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872771Z"},{"ID":17353,"Name":"Wioska 031","Points":9761,"X":602,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872772Z"},{"ID":17354,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":514,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872773Z"},{"ID":17355,"Name":"049. F64D","Points":10221,"X":482,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872773Z"},{"ID":17356,"Name":"Wioska barbarzyƄska","Points":9866,"X":374,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872774Z"},{"ID":17358,"Name":"[0090]","Points":10495,"X":411,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872774Z"},{"ID":17359,"Name":"Wioska barbarzyƄska","Points":6469,"X":367,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872775Z"},{"ID":17360,"Name":"Gattacka","Points":9761,"X":603,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872775Z"},{"ID":17361,"Name":"023.","Points":10167,"X":565,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872776Z"},{"ID":17362,"Name":"s181eo22","Points":9883,"X":378,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872776Z"},{"ID":17363,"Name":"BACÓWKA |018|","Points":10228,"X":630,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872777Z"},{"ID":17364,"Name":"022 021","Points":10001,"X":546,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872777Z"},{"ID":17365,"Name":"#062.","Points":9222,"X":622,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872778Z"},{"ID":17366,"Name":"Wilczek87","Points":9765,"X":569,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872778Z"},{"ID":17367,"Name":"Wioska","Points":10178,"X":379,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872779Z"},{"ID":17368,"Name":"WB 02","Points":9159,"X":576,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872779Z"},{"ID":17369,"Name":"0010","Points":9983,"X":442,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87278Z"},{"ID":17370,"Name":"0446","Points":8432,"X":563,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87278Z"},{"ID":17371,"Name":"D019","Points":10444,"X":582,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872781Z"},{"ID":17372,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":527,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872782Z"},{"ID":17373,"Name":"South K35","Points":9853,"X":552,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872783Z"},{"ID":17374,"Name":"Pobozowisko","Points":10966,"X":395,"Y":573,"Continent":"K53","Bonus":1,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872783Z"},{"ID":17375,"Name":"015","Points":10160,"X":501,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872784Z"},{"ID":17376,"Name":"[0080]","Points":10365,"X":416,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872784Z"},{"ID":17377,"Name":"Piwna 12","Points":9633,"X":614,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872785Z"},{"ID":17378,"Name":"Westcoast.091","Points":10178,"X":388,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872785Z"},{"ID":17379,"Name":"Wioska barbarzyƄska","Points":9994,"X":507,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872786Z"},{"ID":17380,"Name":"016","Points":6121,"X":371,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872787Z"},{"ID":17381,"Name":"031","Points":9825,"X":470,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872787Z"},{"ID":17382,"Name":"027 PotÄ™ĆŒny Dzban","Points":10479,"X":386,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872788Z"},{"ID":17383,"Name":"018 Wioska","Points":6381,"X":630,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872788Z"},{"ID":17384,"Name":"Nowa 01","Points":9835,"X":606,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872789Z"},{"ID":17385,"Name":"022. Wioska barbarzyƄska","Points":10495,"X":574,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872789Z"},{"ID":17386,"Name":"Mniejsze zƂo 0031","Points":8439,"X":371,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87279Z"},{"ID":17387,"Name":"Wioska .Dwukropek.","Points":9417,"X":400,"Y":451,"Continent":"K44","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87279Z"},{"ID":17388,"Name":"WE ARE READY!","Points":9807,"X":593,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872791Z"},{"ID":17389,"Name":"PiekƂo to inni","Points":10083,"X":486,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872791Z"},{"ID":17390,"Name":"zZZ","Points":9882,"X":488,"Y":369,"Continent":"K34","Bonus":4,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872792Z"},{"ID":17391,"Name":"0012","Points":10211,"X":578,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872792Z"},{"ID":17392,"Name":"040","Points":10311,"X":569,"Y":387,"Continent":"K35","Bonus":6,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872793Z"},{"ID":17393,"Name":"016","Points":10146,"X":504,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872793Z"},{"ID":17394,"Name":"#0045","Points":10495,"X":548,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872794Z"},{"ID":17395,"Name":"Westcoast.075","Points":10178,"X":389,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872794Z"},{"ID":17396,"Name":"Szlachcic 014","Points":10311,"X":625,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872795Z"},{"ID":17397,"Name":"Sony 911","Points":10208,"X":578,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872795Z"},{"ID":17398,"Name":"#0018","Points":10495,"X":546,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872796Z"},{"ID":17399,"Name":"A0213","Points":10362,"X":370,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872797Z"},{"ID":17400,"Name":"Cedynia","Points":9464,"X":372,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872797Z"},{"ID":17401,"Name":"Wioska yogi 1","Points":10019,"X":548,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872798Z"},{"ID":17402,"Name":"042 PotÄ™ĆŒny Dzban","Points":10484,"X":383,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872798Z"},{"ID":17403,"Name":"BARB","Points":9816,"X":632,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872799Z"},{"ID":17404,"Name":"Wioska barbarzyƄska","Points":9835,"X":419,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872799Z"},{"ID":17405,"Name":"Wioska Beniek Pogromca","Points":10346,"X":375,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8728Z"},{"ID":17406,"Name":"Lord Lord Franek .#015","Points":10152,"X":549,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872801Z"},{"ID":17407,"Name":"VN Noelle Silva","Points":8985,"X":466,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872801Z"},{"ID":17408,"Name":"C 007","Points":8650,"X":580,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872802Z"},{"ID":17409,"Name":"Wioska","Points":10178,"X":377,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872802Z"},{"ID":17410,"Name":"003","Points":9889,"X":404,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872803Z"},{"ID":17411,"Name":"064","Points":10311,"X":564,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872803Z"},{"ID":17412,"Name":"009","Points":9902,"X":493,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872804Z"},{"ID":17413,"Name":"Kentin ufam Tobie","Points":10000,"X":428,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872805Z"},{"ID":17414,"Name":"0017 Bezimienna","Points":9542,"X":420,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872805Z"},{"ID":17415,"Name":".025.","Points":10316,"X":496,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872806Z"},{"ID":17416,"Name":"35 im Malkowa","Points":9809,"X":583,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872806Z"},{"ID":17417,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":530,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872807Z"},{"ID":17418,"Name":"BoOmBaa..","Points":3377,"X":439,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872807Z"},{"ID":17419,"Name":"Pobozowisko","Points":10963,"X":408,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872808Z"},{"ID":17420,"Name":"039 OZDR","Points":9825,"X":466,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872808Z"},{"ID":17421,"Name":"068 - FiniteSpace","Points":10495,"X":419,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872809Z"},{"ID":17422,"Name":"011","Points":9835,"X":609,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872809Z"},{"ID":17423,"Name":"A11 Wioska barbarzyƄska","Points":10479,"X":462,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87281Z"},{"ID":17424,"Name":"Bagdad","Points":10654,"X":472,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87281Z"},{"ID":17425,"Name":"Brat447","Points":10487,"X":374,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872811Z"},{"ID":17426,"Name":"112","Points":10311,"X":586,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872812Z"},{"ID":17428,"Name":"Wioska barbarzyƄska","Points":9962,"X":375,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872812Z"},{"ID":17429,"Name":"017","Points":9955,"X":471,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872813Z"},{"ID":17430,"Name":"Jarzebina","Points":9825,"X":370,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872813Z"},{"ID":17431,"Name":"154 MIKOX 056","Points":10001,"X":592,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872814Z"},{"ID":17432,"Name":"Kentin ufam Tobie","Points":10000,"X":382,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872814Z"},{"ID":17433,"Name":"Wiocha","Points":9904,"X":471,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872815Z"},{"ID":17434,"Name":"-1-","Points":8777,"X":460,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872816Z"},{"ID":17435,"Name":"Wioska barbarzyƄska","Points":9570,"X":484,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872816Z"},{"ID":17436,"Name":"155 MIKOX 061","Points":10001,"X":593,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872817Z"},{"ID":17437,"Name":"Wioska barbarzyƄska","Points":6078,"X":416,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872817Z"},{"ID":17438,"Name":"Pobozowisko","Points":9415,"X":412,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872818Z"},{"ID":17439,"Name":"VN Lemiel Silvamillion","Points":9643,"X":462,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872818Z"},{"ID":17441,"Name":"Wioska 035","Points":9761,"X":605,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872819Z"},{"ID":17442,"Name":"088.","Points":9869,"X":635,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872819Z"},{"ID":17443,"Name":"#049.501|533","Points":9301,"X":620,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87282Z"},{"ID":17444,"Name":"Taran","Points":9364,"X":552,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872821Z"},{"ID":17445,"Name":"Ulu-mulu","Points":7959,"X":432,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872821Z"},{"ID":17446,"Name":"W.181/25","Points":10242,"X":630,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872822Z"},{"ID":17447,"Name":"003 Osada koczownikĂłw","Points":10178,"X":530,"Y":372,"Continent":"K35","Bonus":2,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872822Z"},{"ID":17448,"Name":"SSJ 005","Points":9761,"X":508,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872823Z"},{"ID":17449,"Name":"015","Points":3736,"X":629,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872823Z"},{"ID":17450,"Name":"Gattacka","Points":9681,"X":602,"Y":422,"Continent":"K46","Bonus":8,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872824Z"},{"ID":17451,"Name":"Deveste ufam Tobie","Points":9622,"X":433,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872825Z"},{"ID":17452,"Name":"Sony 911","Points":10211,"X":577,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872825Z"},{"ID":17453,"Name":"ƚmieszki","Points":9976,"X":529,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872826Z"},{"ID":17454,"Name":"SSJ 010","Points":9737,"X":506,"Y":628,"Continent":"K65","Bonus":3,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872826Z"},{"ID":17455,"Name":"High Heart","Points":10495,"X":483,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872827Z"},{"ID":17456,"Name":"Westcoast.033","Points":10178,"X":382,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872827Z"},{"ID":17457,"Name":"Selonari","Points":7353,"X":461,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872828Z"},{"ID":17458,"Name":"A0087","Points":10362,"X":369,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872829Z"},{"ID":17459,"Name":"Jan B Nord K","Points":9215,"X":631,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872829Z"},{"ID":17460,"Name":"Jaaa","Points":10478,"X":596,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87283Z"},{"ID":17461,"Name":"Kentin ufam Tobie","Points":10000,"X":431,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872831Z"},{"ID":17462,"Name":"108 Summer Slam","Points":10456,"X":392,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872831Z"},{"ID":17463,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":527,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872832Z"},{"ID":17464,"Name":"013 Lewa Waza","Points":7667,"X":619,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872833Z"},{"ID":17465,"Name":"066","Points":10495,"X":367,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872833Z"},{"ID":17466,"Name":"611|425 Wioska barbarzyƄska","Points":6642,"X":611,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872834Z"},{"ID":17467,"Name":"051.","Points":10090,"X":481,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872835Z"},{"ID":17468,"Name":"010.","Points":9481,"X":639,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872836Z"},{"ID":17469,"Name":"A0308","Points":10362,"X":371,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872836Z"},{"ID":17470,"Name":"K34 - [003] Before Land","Points":10259,"X":458,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872837Z"},{"ID":17471,"Name":"018","Points":11130,"X":431,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872838Z"},{"ID":17472,"Name":"Nowa 06","Points":9835,"X":615,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872839Z"},{"ID":17473,"Name":"021 KuryƂƂƂyyhhhhaaa","Points":10484,"X":626,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872839Z"},{"ID":17474,"Name":"Wioska SkanWhite09","Points":7654,"X":431,"Y":435,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87284Z"},{"ID":17475,"Name":"024","Points":10160,"X":475,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87284Z"},{"ID":17476,"Name":"Pobozowisko","Points":10955,"X":411,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872841Z"},{"ID":17477,"Name":"Pobozowisko","Points":10621,"X":409,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872841Z"},{"ID":17478,"Name":"0029","Points":10160,"X":555,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872842Z"},{"ID":17479,"Name":"Knowhere","Points":10452,"X":374,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872843Z"},{"ID":17480,"Name":"Wioska Dominatorxd","Points":9744,"X":508,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872844Z"},{"ID":17481,"Name":"082","Points":10311,"X":595,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872844Z"},{"ID":17482,"Name":"Mniejsze zƂo 0042","Points":8528,"X":377,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872845Z"},{"ID":17483,"Name":"Knowhere","Points":10452,"X":368,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872845Z"},{"ID":17484,"Name":"Ulu-mulu","Points":10446,"X":433,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872846Z"},{"ID":17486,"Name":"A0088","Points":10362,"X":370,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872847Z"},{"ID":17487,"Name":"K34 - [056] Before Land","Points":10259,"X":458,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872848Z"},{"ID":17488,"Name":"A0120","Points":10362,"X":372,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872848Z"},{"ID":17489,"Name":"0031","Points":10160,"X":545,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872849Z"},{"ID":17490,"Name":"Ulu-mulu","Points":3706,"X":432,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872849Z"},{"ID":17491,"Name":"208","Points":10266,"X":570,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87285Z"},{"ID":17492,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":511,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872851Z"},{"ID":17493,"Name":"*0011 Baraki","Points":10325,"X":611,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872852Z"},{"ID":17494,"Name":"Wioska barbarzyƄska","Points":10068,"X":397,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872853Z"},{"ID":17495,"Name":"005.","Points":9699,"X":565,"Y":612,"Continent":"K65","Bonus":5,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872853Z"},{"ID":17496,"Name":"608|421 Wioska barbarzyƄska13","Points":9592,"X":608,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872854Z"},{"ID":17497,"Name":"Szlachcic 016","Points":10311,"X":630,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872854Z"},{"ID":17498,"Name":"Szlachcic PóƂnoc 005","Points":10311,"X":637,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872855Z"},{"ID":17499,"Name":"Mike","Points":7741,"X":613,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872856Z"},{"ID":17500,"Name":"019","Points":10311,"X":585,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872856Z"},{"ID":17501,"Name":"0306","Points":10019,"X":426,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872857Z"},{"ID":17502,"Name":".029.","Points":10393,"X":483,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872858Z"},{"ID":17503,"Name":"Mniejsze zƂo 0037","Points":8986,"X":376,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872858Z"},{"ID":17504,"Name":"017","Points":10139,"X":502,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872859Z"},{"ID":17505,"Name":"060 PotÄ™ĆŒny Dzban","Points":10495,"X":380,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87286Z"},{"ID":17506,"Name":"C003 Brokilon","Points":9825,"X":613,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87286Z"},{"ID":17507,"Name":"XXX Daleko","Points":7487,"X":370,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872861Z"},{"ID":17508,"Name":"Piwna 06","Points":7405,"X":616,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872862Z"},{"ID":17509,"Name":"004","Points":9825,"X":494,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872862Z"},{"ID":17511,"Name":"01 Monety 2 p500","Points":10365,"X":493,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872863Z"},{"ID":17512,"Name":"Lord Arsey KING","Points":9773,"X":596,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872863Z"},{"ID":17513,"Name":"VN Sylph","Points":9559,"X":473,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872864Z"},{"ID":17514,"Name":"609|428 Wioska barbarzyƄska09","Points":9304,"X":609,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872865Z"},{"ID":17515,"Name":"yogi","Points":10019,"X":541,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872866Z"},{"ID":17516,"Name":"003","Points":2460,"X":629,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699139964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872866Z"},{"ID":17518,"Name":"A0177","Points":10362,"X":372,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872867Z"},{"ID":17519,"Name":"Zeta Reticuli S","Points":11691,"X":407,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872868Z"},{"ID":17520,"Name":"Darma","Points":9835,"X":426,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872868Z"},{"ID":17521,"Name":"=035= Wioska barbarzyƄska","Points":8871,"X":622,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872869Z"},{"ID":17523,"Name":"Wioska barbarzyƄska","Points":10954,"X":375,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87287Z"},{"ID":17524,"Name":"Pobozowisko","Points":10797,"X":395,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87287Z"},{"ID":17525,"Name":"Westcoast.032","Points":10178,"X":388,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872871Z"},{"ID":17526,"Name":"016Niespodziewanka","Points":9206,"X":457,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872872Z"},{"ID":17527,"Name":"Wioska barbarzyƄska","Points":7272,"X":632,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872872Z"},{"ID":17528,"Name":"007","Points":10311,"X":585,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872873Z"},{"ID":17529,"Name":"Westcoast.038","Points":10178,"X":395,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872874Z"},{"ID":17530,"Name":"B019","Points":9821,"X":631,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872874Z"},{"ID":17531,"Name":"611|427 Wioska barbarzyƄska06","Points":9913,"X":611,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872875Z"},{"ID":17532,"Name":".TO NIE DLA SOSU","Points":9933,"X":414,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872876Z"},{"ID":17533,"Name":"Sony 911","Points":10206,"X":577,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872876Z"},{"ID":17534,"Name":"A004","Points":10292,"X":522,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872877Z"},{"ID":17535,"Name":"yyyy","Points":10028,"X":500,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872877Z"},{"ID":17536,"Name":"0139","Points":10019,"X":449,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872878Z"},{"ID":17537,"Name":"Piwna 10","Points":9492,"X":612,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872879Z"},{"ID":17538,"Name":"FB001","Points":9835,"X":634,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872879Z"},{"ID":17539,"Name":"Zeta Reticuli S","Points":11550,"X":401,"Y":411,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87288Z"},{"ID":17540,"Name":"106 Wioska barbarzyƄska","Points":9051,"X":599,"Y":417,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872881Z"},{"ID":17542,"Name":"015 Wioska","Points":8723,"X":631,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872881Z"},{"ID":17543,"Name":"A29 MARUDER stolica","Points":11321,"X":462,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872882Z"},{"ID":17544,"Name":"Kentin ufam Tobie","Points":10000,"X":381,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872883Z"},{"ID":17545,"Name":"Kentin ufam Tobie","Points":10000,"X":370,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872883Z"},{"ID":17546,"Name":"Jaaa","Points":10381,"X":616,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872884Z"},{"ID":17547,"Name":"ADEN","Points":10228,"X":521,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872885Z"},{"ID":17548,"Name":"z 045","Points":10262,"X":581,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872885Z"},{"ID":17549,"Name":".048.","Points":10393,"X":496,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872886Z"},{"ID":17550,"Name":"Wioska barbarzyƄska","Points":9994,"X":509,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872887Z"},{"ID":17551,"Name":"063","Points":10289,"X":367,"Y":512,"Continent":"K53","Bonus":6,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872887Z"},{"ID":17552,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":528,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872888Z"},{"ID":17553,"Name":"Part XXX","Points":10495,"X":540,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872889Z"},{"ID":17554,"Name":"092. Favianis","Points":8587,"X":615,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872889Z"},{"ID":17555,"Name":"G001","Points":9337,"X":573,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87289Z"},{"ID":17556,"Name":"034","Points":10311,"X":592,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87289Z"},{"ID":17557,"Name":".046.","Points":10503,"X":487,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872891Z"},{"ID":17558,"Name":"B 010","Points":10362,"X":594,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872892Z"},{"ID":17559,"Name":"609|423 011 FRANKIA","Points":9953,"X":609,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872892Z"},{"ID":17560,"Name":"VN Beyond Netero","Points":9640,"X":458,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872893Z"},{"ID":17561,"Name":"C 005","Points":8959,"X":579,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872894Z"},{"ID":17562,"Name":"VN Meruem","Points":10375,"X":495,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872894Z"},{"ID":17563,"Name":"027","Points":8509,"X":482,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872895Z"},{"ID":17564,"Name":".000.","Points":10301,"X":496,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872895Z"},{"ID":17565,"Name":"yyy","Points":10068,"X":495,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872896Z"},{"ID":17567,"Name":"036","Points":9269,"X":585,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872897Z"},{"ID":17568,"Name":"A004","Points":10362,"X":615,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872897Z"},{"ID":17569,"Name":"Wioska barbarzyƄska","Points":10487,"X":616,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872898Z"},{"ID":17570,"Name":"Wioska barbarzyƄska","Points":2661,"X":624,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":8970390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872899Z"},{"ID":17571,"Name":"Westcoast.087","Points":10178,"X":387,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872899Z"},{"ID":17572,"Name":"-042-","Points":8572,"X":385,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.8729Z"},{"ID":17573,"Name":"Nowa 02","Points":9818,"X":615,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872901Z"},{"ID":17574,"Name":"SSJ 031","Points":9761,"X":507,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872901Z"},{"ID":17575,"Name":"Golf","Points":9808,"X":611,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872902Z"},{"ID":17576,"Name":"084","Points":10237,"X":480,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872903Z"},{"ID":17577,"Name":"017 KTW","Points":10495,"X":625,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872903Z"},{"ID":17578,"Name":"0141","Points":6656,"X":432,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872904Z"},{"ID":17579,"Name":"040- Mroczna Osada","Points":12154,"X":616,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872905Z"},{"ID":17580,"Name":"A016","Points":9899,"X":474,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872905Z"},{"ID":17581,"Name":"014 Harrenhal","Points":10403,"X":608,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872906Z"},{"ID":17582,"Name":"093","Points":10437,"X":451,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872907Z"},{"ID":17583,"Name":"014","Points":5793,"X":374,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872908Z"},{"ID":17584,"Name":"mklo","Points":10338,"X":501,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872908Z"},{"ID":17585,"Name":"Sony 911","Points":10212,"X":577,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872909Z"},{"ID":17586,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87291Z"},{"ID":17587,"Name":"A31 MARUDER XD","Points":9805,"X":463,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87291Z"},{"ID":17588,"Name":"001. Wioska Orka","Points":10495,"X":489,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872911Z"},{"ID":17589,"Name":"Zeta Reticuli S3","Points":10887,"X":426,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872911Z"},{"ID":17590,"Name":"A002","Points":9835,"X":628,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872912Z"},{"ID":17591,"Name":"0007 MzM","Points":9258,"X":620,"Y":551,"Continent":"K56","Bonus":1,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872913Z"},{"ID":17592,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":531,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872913Z"},{"ID":17593,"Name":"A0291","Points":10362,"X":368,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872914Z"},{"ID":17594,"Name":"C 021","Points":8916,"X":581,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872915Z"},{"ID":17595,"Name":"004","Points":10160,"X":497,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872916Z"},{"ID":17596,"Name":"Szlachcic","Points":10160,"X":387,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872916Z"},{"ID":17597,"Name":"Wioska","Points":10178,"X":379,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872917Z"},{"ID":17598,"Name":"Westcoast.027","Points":10178,"X":389,"Y":428,"Continent":"K43","Bonus":4,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872917Z"},{"ID":17599,"Name":"Wioska barbarzyƄska","Points":10094,"X":563,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872918Z"},{"ID":17600,"Name":"Wioska barbarzyƄska","Points":9867,"X":376,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872919Z"},{"ID":17601,"Name":"Szlachcic 009","Points":10311,"X":624,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872919Z"},{"ID":17602,"Name":"025","Points":6643,"X":480,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87292Z"},{"ID":17603,"Name":"007","Points":10141,"X":499,"Y":630,"Continent":"K64","Bonus":1,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872921Z"},{"ID":17604,"Name":"MojeSzczytToTwĂłjDno","Points":10338,"X":502,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872921Z"},{"ID":17605,"Name":"Jaaa","Points":10247,"X":616,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872922Z"},{"ID":17606,"Name":"Dewej na hebel Maryla","Points":4789,"X":376,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872922Z"},{"ID":17607,"Name":"Wioska barbarzyƄska","Points":10068,"X":546,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872923Z"},{"ID":17608,"Name":"Horyzont zdarzeƄ","Points":10019,"X":537,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872924Z"},{"ID":17609,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8825,"X":542,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872924Z"},{"ID":17610,"Name":"aaaa","Points":10068,"X":480,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872925Z"},{"ID":17611,"Name":"612|427 Wioska barbarzyƄska01","Points":9882,"X":612,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872925Z"},{"ID":17612,"Name":"amonka","Points":10476,"X":525,"Y":370,"Continent":"K35","Bonus":9,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872926Z"},{"ID":17613,"Name":"012 barbarzyƄska","Points":9853,"X":611,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872927Z"},{"ID":17614,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872927Z"},{"ID":17615,"Name":"Pobozowisko","Points":10957,"X":399,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872928Z"},{"ID":17616,"Name":"PIERWSZY KUZYN W KOSMOSIE","Points":8264,"X":521,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872929Z"},{"ID":17617,"Name":"Wioska barbarzyƄska","Points":9204,"X":440,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87293Z"},{"ID":17618,"Name":"003","Points":10211,"X":446,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87293Z"},{"ID":17619,"Name":"015 KTW","Points":10495,"X":622,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872931Z"},{"ID":17620,"Name":"0005","Points":10336,"X":623,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872932Z"},{"ID":17621,"Name":"020 Co się staƂo z p. Witczakiem","Points":10484,"X":628,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872933Z"},{"ID":17622,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":445,"Continent":"K43","Bonus":3,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872933Z"},{"ID":17623,"Name":"Pobozowisko","Points":10945,"X":399,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872934Z"},{"ID":17624,"Name":"Wioska barbarzyƄska","Points":9971,"X":373,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872935Z"},{"ID":17625,"Name":"Westcoast.089","Points":10178,"X":385,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872935Z"},{"ID":17626,"Name":"[046]","Points":3351,"X":630,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872936Z"},{"ID":17628,"Name":"Wioska barbarzyƄska","Points":8364,"X":573,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872937Z"},{"ID":17629,"Name":"[0073]......","Points":10495,"X":413,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872937Z"},{"ID":17630,"Name":"VN Yami Sukehiro","Points":9568,"X":470,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872938Z"},{"ID":17631,"Name":"015","Points":9953,"X":555,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872939Z"},{"ID":17632,"Name":".achim.","Points":7199,"X":527,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87294Z"},{"ID":17633,"Name":"WE ARE READY","Points":10019,"X":593,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87294Z"},{"ID":17634,"Name":".achim.","Points":10290,"X":515,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872941Z"},{"ID":17635,"Name":"Jan 018-12 PƂn K","Points":9496,"X":632,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872942Z"},{"ID":17636,"Name":"Knowhere","Points":10452,"X":370,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872942Z"},{"ID":17637,"Name":"A0121","Points":10362,"X":370,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872943Z"},{"ID":17638,"Name":"C019 Port Hope","Points":9750,"X":619,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872944Z"},{"ID":17639,"Name":"001","Points":10019,"X":505,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872945Z"},{"ID":17640,"Name":"Jednak wolę gofry","Points":8274,"X":486,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872945Z"},{"ID":17641,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":498,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872946Z"},{"ID":17642,"Name":"048","Points":7195,"X":371,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872947Z"},{"ID":17643,"Name":"B021","Points":9894,"X":632,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872947Z"},{"ID":17644,"Name":"050","Points":10237,"X":475,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872948Z"},{"ID":17645,"Name":"Lord Arsey KING","Points":10285,"X":595,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872949Z"},{"ID":17646,"Name":"014 Palma de Mallorca","Points":8598,"X":630,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872949Z"},{"ID":17647,"Name":"Kentin ufam Tobie","Points":10000,"X":383,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87295Z"},{"ID":17648,"Name":"Kentin ufam Tobie","Points":10000,"X":374,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.87295Z"},{"ID":17649,"Name":"096","Points":9793,"X":444,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872951Z"},{"ID":17650,"Name":"024","Points":9797,"X":556,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872952Z"},{"ID":17651,"Name":"046","Points":9902,"X":479,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872952Z"},{"ID":17652,"Name":"39 im Akimowa","Points":9809,"X":596,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872953Z"},{"ID":17653,"Name":"028","Points":9825,"X":476,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872954Z"},{"ID":17654,"Name":"Piwna 02","Points":8888,"X":613,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.872954Z"},{"ID":17655,"Name":"Jaaa","Points":10479,"X":601,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901383Z"},{"ID":17656,"Name":"FA001","Points":9816,"X":632,"Y":491,"Continent":"K46","Bonus":9,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901384Z"},{"ID":17657,"Name":"Pobozowisko","Points":8277,"X":407,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901384Z"},{"ID":17658,"Name":"Wioska (023)","Points":9411,"X":634,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901384Z"},{"ID":17659,"Name":"s6 Wioska barbarzyƄska","Points":10068,"X":398,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901385Z"},{"ID":17660,"Name":"Hel 01","Points":9821,"X":613,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901385Z"},{"ID":17661,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":527,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901385Z"},{"ID":17662,"Name":"_PUSTA","Points":10093,"X":633,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901386Z"},{"ID":17663,"Name":"Ulu-mulu","Points":6203,"X":421,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901386Z"},{"ID":17664,"Name":".022.","Points":10728,"X":486,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901386Z"},{"ID":17665,"Name":"z 042","Points":10479,"X":579,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901386Z"},{"ID":17666,"Name":"VN Charlotte Roselei","Points":9629,"X":469,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901387Z"},{"ID":17667,"Name":"MojeSzczytToTwĂłjDno","Points":10481,"X":525,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901387Z"},{"ID":17668,"Name":"Brat447","Points":10481,"X":387,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901387Z"},{"ID":17669,"Name":"z 048","Points":10385,"X":581,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901388Z"},{"ID":17670,"Name":"A READY","Points":10495,"X":589,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901388Z"},{"ID":17671,"Name":"HORUS!","Points":9955,"X":519,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901388Z"},{"ID":17672,"Name":"B 005","Points":10362,"X":594,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901389Z"},{"ID":17673,"Name":"Wioska barbarzyƄska","Points":7228,"X":486,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901389Z"},{"ID":17674,"Name":"Piwna 14","Points":8056,"X":615,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901389Z"},{"ID":17675,"Name":"Kaer Morhen","Points":9744,"X":478,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901389Z"},{"ID":17676,"Name":"Twierdza 1","Points":10273,"X":637,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90139Z"},{"ID":17677,"Name":"131","Points":10311,"X":592,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90139Z"},{"ID":17678,"Name":"Wioska Krz40","Points":2932,"X":417,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699657242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90139Z"},{"ID":17679,"Name":"Szlachcic PóƂnoc 001","Points":10311,"X":632,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901391Z"},{"ID":17680,"Name":"033.","Points":10083,"X":615,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901391Z"},{"ID":17681,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":521,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901391Z"},{"ID":17682,"Name":"009","Points":9835,"X":609,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901392Z"},{"ID":17683,"Name":"012. Chomo Lonzo","Points":10495,"X":603,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901392Z"},{"ID":17684,"Name":"Jaaa","Points":10495,"X":607,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901393Z"},{"ID":17685,"Name":"Konfederacja","Points":9682,"X":455,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901393Z"},{"ID":17686,"Name":"019","Points":5489,"X":372,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901393Z"},{"ID":17687,"Name":"007","Points":10559,"X":375,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901393Z"},{"ID":17688,"Name":"012 KTW","Points":10495,"X":624,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901394Z"},{"ID":17689,"Name":"mklo","Points":9737,"X":536,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901394Z"},{"ID":17690,"Name":"Wioska barbarzyƄska","Points":10475,"X":619,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901394Z"},{"ID":17691,"Name":"Ulu-mulu","Points":8637,"X":418,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901395Z"},{"ID":17692,"Name":"007. A-RE-SE-EY","Points":10252,"X":575,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901395Z"},{"ID":17693,"Name":"007","Points":7166,"X":616,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901395Z"},{"ID":17694,"Name":"052 OZDR","Points":10259,"X":477,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901396Z"},{"ID":17695,"Name":"019","Points":9825,"X":472,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901396Z"},{"ID":17696,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":515,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901396Z"},{"ID":17697,"Name":"018.","Points":9827,"X":633,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901397Z"},{"ID":17698,"Name":"Westcoast.035","Points":10178,"X":388,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901397Z"},{"ID":17699,"Name":"- 325 - RR","Points":9712,"X":587,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901397Z"},{"ID":17700,"Name":"Ulu-mulu","Points":5085,"X":421,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901398Z"},{"ID":17701,"Name":"A0201","Points":10362,"X":370,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901398Z"},{"ID":17702,"Name":"11. Sarah","Points":10495,"X":524,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901398Z"},{"ID":17703,"Name":"007.","Points":10203,"X":565,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901398Z"},{"ID":17704,"Name":"WE ARE READY!","Points":9771,"X":590,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901399Z"},{"ID":17705,"Name":"Westcoast.006","Points":10178,"X":384,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901399Z"},{"ID":17706,"Name":"030","Points":5843,"X":373,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901399Z"},{"ID":17707,"Name":"Gattacka","Points":9355,"X":605,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9014Z"},{"ID":17708,"Name":"Dum Spiro Spero","Points":12130,"X":494,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9014Z"},{"ID":17709,"Name":"- 333 - RR","Points":9635,"X":587,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9014Z"},{"ID":17710,"Name":"023. Wioska barbarzyƄska","Points":10495,"X":569,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901401Z"},{"ID":17711,"Name":"=019= Wioska barbarzyƄska","Points":10580,"X":623,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901401Z"},{"ID":17712,"Name":"Sony 911","Points":10209,"X":576,"Y":611,"Continent":"K65","Bonus":2,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901401Z"},{"ID":17714,"Name":"Pobozowisko","Points":10801,"X":388,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901402Z"},{"ID":17715,"Name":"Wioska barbarzyƄska","Points":9835,"X":420,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901402Z"},{"ID":17716,"Name":"009","Points":10139,"X":498,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901402Z"},{"ID":17717,"Name":"Ulu-mulu","Points":11678,"X":425,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901403Z"},{"ID":17718,"Name":"::: B :::","Points":6144,"X":364,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901403Z"},{"ID":17719,"Name":"020","Points":11130,"X":431,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901403Z"},{"ID":17720,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":529,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901404Z"},{"ID":17721,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901404Z"},{"ID":17722,"Name":"B013","Points":10495,"X":596,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901404Z"},{"ID":17723,"Name":"38 im Kadyrowa","Points":7848,"X":595,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901405Z"},{"ID":17724,"Name":"149 Ale mnie gƂówka boli","Points":10115,"X":383,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901405Z"},{"ID":17725,"Name":"A0138","Points":10362,"X":368,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901405Z"},{"ID":17726,"Name":"Westcoast.064","Points":10178,"X":387,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901406Z"},{"ID":17727,"Name":"Wioska barbarzyƄska","Points":10223,"X":561,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901406Z"},{"ID":17729,"Name":"B009","Points":9819,"X":629,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901406Z"},{"ID":17730,"Name":"Bagdad","Points":10654,"X":476,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901407Z"},{"ID":17731,"Name":"A0309","Points":10362,"X":370,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901407Z"},{"ID":17732,"Name":"s181eo27","Points":10336,"X":379,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901407Z"},{"ID":17734,"Name":"A003","Points":10047,"X":517,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901408Z"},{"ID":17735,"Name":"046","Points":10495,"X":369,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901408Z"},{"ID":17736,"Name":"021.","Points":9913,"X":568,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901408Z"},{"ID":17737,"Name":"005","Points":10019,"X":555,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901409Z"},{"ID":17738,"Name":"MojeSzczytToTwĂłjDno","Points":10338,"X":506,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901409Z"},{"ID":17739,"Name":"a moĆŒe off ? :)","Points":10211,"X":595,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901409Z"},{"ID":17740,"Name":"018.","Points":9866,"X":569,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90141Z"},{"ID":17741,"Name":"610|424 001Legatus","Points":9882,"X":610,"Y":424,"Continent":"K46","Bonus":4,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90141Z"},{"ID":17742,"Name":"Westcoast.088","Points":10178,"X":385,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90141Z"},{"ID":17743,"Name":"[025]","Points":9809,"X":635,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901411Z"},{"ID":17744,"Name":"Wioska barbarzyƄska","Points":9616,"X":483,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901411Z"},{"ID":17745,"Name":"065 OZDR","Points":9825,"X":461,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901411Z"},{"ID":17746,"Name":"005","Points":9809,"X":362,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901412Z"},{"ID":17747,"Name":"Wioska","Points":10178,"X":380,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901412Z"},{"ID":17748,"Name":"A READY","Points":10160,"X":596,"Y":413,"Continent":"K45","Bonus":6,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901412Z"},{"ID":17749,"Name":"Feed me more 009","Points":10444,"X":494,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901413Z"},{"ID":17750,"Name":"Wioska barbarzyƄska","Points":10178,"X":423,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901413Z"},{"ID":17751,"Name":"A0204","Points":10362,"X":366,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901413Z"},{"ID":17752,"Name":"16 PrzebĂłj nocy","Points":6026,"X":628,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901414Z"},{"ID":17753,"Name":"- 326 - RR","Points":10045,"X":584,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901414Z"},{"ID":17754,"Name":"Taran","Points":9364,"X":552,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901414Z"},{"ID":17755,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":531,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901415Z"},{"ID":17756,"Name":"Nowa 11","Points":9821,"X":613,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901415Z"},{"ID":17757,"Name":"CALL 1067","Points":10495,"X":557,"Y":618,"Continent":"K65","Bonus":8,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901415Z"},{"ID":17758,"Name":"A0159","Points":10362,"X":367,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901415Z"},{"ID":17759,"Name":"Brat447","Points":10481,"X":368,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901416Z"},{"ID":17760,"Name":"018.","Points":10495,"X":573,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901416Z"},{"ID":17761,"Name":"Zakrecona 4","Points":8819,"X":574,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901417Z"},{"ID":17762,"Name":"mklo","Points":8319,"X":540,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699869682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901417Z"},{"ID":17763,"Name":"065","Points":9989,"X":436,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901417Z"},{"ID":17764,"Name":"Brat447","Points":9733,"X":369,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901418Z"},{"ID":17765,"Name":"035","Points":10311,"X":570,"Y":390,"Continent":"K35","Bonus":9,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901418Z"},{"ID":17766,"Name":"008","Points":10495,"X":375,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901418Z"},{"ID":17767,"Name":"A READY","Points":10252,"X":590,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901419Z"},{"ID":17768,"Name":"Kentin ufam Tobie","Points":10000,"X":380,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901419Z"},{"ID":17769,"Name":"044 Warszawa","Points":10495,"X":633,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901419Z"},{"ID":17770,"Name":"A0002","Points":10362,"X":387,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90142Z"},{"ID":17771,"Name":"kathare","Points":9915,"X":545,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90142Z"},{"ID":17772,"Name":"Wioska barbarzyƄska","Points":10479,"X":618,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90142Z"},{"ID":17773,"Name":"071 OZDR","Points":10495,"X":469,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901421Z"},{"ID":17774,"Name":"Port","Points":9174,"X":578,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901421Z"},{"ID":17776,"Name":"008.","Points":9835,"X":626,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901421Z"},{"ID":17777,"Name":"SSJ 024","Points":9761,"X":511,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901422Z"},{"ID":17778,"Name":"027","Points":10311,"X":599,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901422Z"},{"ID":17779,"Name":"Wioska barbarzyƄska","Points":9980,"X":400,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901422Z"},{"ID":17780,"Name":"D029 Iwa","Points":9745,"X":598,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901423Z"},{"ID":17782,"Name":"Wioska barbarzyƄska","Points":9579,"X":423,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901423Z"},{"ID":17783,"Name":"Vasperland_008","Points":10954,"X":628,"Y":516,"Continent":"K56","Bonus":5,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901424Z"},{"ID":17784,"Name":"Nowa 05","Points":9815,"X":615,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901424Z"},{"ID":17785,"Name":"South K35","Points":10042,"X":559,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901424Z"},{"ID":17786,"Name":"Brat447","Points":10495,"X":374,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901425Z"},{"ID":17787,"Name":"007.","Points":9761,"X":627,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901425Z"},{"ID":17789,"Name":"017","Points":9859,"X":627,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901426Z"},{"ID":17790,"Name":"060","Points":9753,"X":366,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901426Z"},{"ID":17792,"Name":"MojeSzczytToTwĂłjDno","Points":10475,"X":527,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901426Z"},{"ID":17793,"Name":"Foxtrot","Points":8782,"X":612,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901427Z"},{"ID":17794,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":522,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901427Z"},{"ID":17795,"Name":"K34 x009","Points":8365,"X":443,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901427Z"},{"ID":17796,"Name":"Wioska barbarzyƄska","Points":10068,"X":545,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901428Z"},{"ID":17798,"Name":"011.","Points":10280,"X":566,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901428Z"},{"ID":17799,"Name":"SoƂtys Twojej Wsi","Points":9297,"X":434,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901428Z"},{"ID":17800,"Name":"Wioska barbarzyƄska","Points":6920,"X":372,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901429Z"},{"ID":17801,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901429Z"},{"ID":17802,"Name":"19 Na audiencji","Points":4035,"X":630,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901429Z"},{"ID":17803,"Name":"Westcoast.061","Points":10178,"X":387,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90143Z"},{"ID":17804,"Name":"Part XXVIII","Points":10237,"X":539,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90143Z"},{"ID":17805,"Name":"A0157","Points":10362,"X":360,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90143Z"},{"ID":17806,"Name":"013 Tyria","Points":10391,"X":612,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901431Z"},{"ID":17807,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":532,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901431Z"},{"ID":17808,"Name":"ZachĂłd - 006","Points":10495,"X":395,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901431Z"},{"ID":17809,"Name":"07 im Jakira","Points":9809,"X":597,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901432Z"},{"ID":17810,"Name":"047","Points":5845,"X":368,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901432Z"},{"ID":17811,"Name":"0423","Points":8502,"X":562,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901432Z"},{"ID":17812,"Name":"Wioska barbarzyƄska","Points":9647,"X":481,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901433Z"},{"ID":17813,"Name":"Westcoast.085","Points":10178,"X":386,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901433Z"},{"ID":17814,"Name":"Wioska (017)","Points":9834,"X":619,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901433Z"},{"ID":17815,"Name":"067 OZDR","Points":9627,"X":458,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901434Z"},{"ID":17816,"Name":"RTS","Points":10495,"X":572,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901434Z"},{"ID":17817,"Name":"Dawanie w szyje","Points":10209,"X":415,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901434Z"},{"ID":17818,"Name":"014. BarbarzyƄska Osada","Points":10495,"X":568,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901435Z"},{"ID":17819,"Name":"010","Points":10100,"X":479,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901435Z"},{"ID":17820,"Name":"036","Points":6344,"X":366,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901436Z"},{"ID":17821,"Name":"Wioska syisy","Points":9740,"X":483,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901436Z"},{"ID":17822,"Name":"Gattacka","Points":9745,"X":606,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901436Z"},{"ID":17823,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901437Z"},{"ID":17824,"Name":"Nowa 10","Points":9821,"X":614,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901437Z"},{"ID":17825,"Name":"Knowhere","Points":10452,"X":389,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901437Z"},{"ID":17826,"Name":"A0089","Points":10362,"X":366,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901438Z"},{"ID":17827,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":529,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901438Z"},{"ID":17828,"Name":"Jednak wolę gofry","Points":10036,"X":487,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901438Z"},{"ID":17830,"Name":"Mzm10","Points":10495,"X":628,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901439Z"},{"ID":17831,"Name":"[0084]","Points":10495,"X":413,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901439Z"},{"ID":17832,"Name":"086","Points":9739,"X":599,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90144Z"},{"ID":17833,"Name":"[045]","Points":4383,"X":632,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90144Z"},{"ID":17834,"Name":"*4609*a Patagonia","Points":10287,"X":634,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90144Z"},{"ID":17835,"Name":"608|424 Wioska barbarzyƄska15","Points":9793,"X":608,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901441Z"},{"ID":17836,"Name":"008 Wioska barbarzyƄska","Points":10178,"X":532,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901441Z"},{"ID":17837,"Name":"Wioska barbarzyƄska","Points":9870,"X":372,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901441Z"},{"ID":17838,"Name":"Westcoast.021","Points":10178,"X":382,"Y":438,"Continent":"K43","Bonus":3,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901442Z"},{"ID":17839,"Name":"C008 Yalahar","Points":9902,"X":622,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901442Z"},{"ID":17840,"Name":"SSJ 035","Points":9761,"X":515,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901442Z"},{"ID":17841,"Name":"Gravity","Points":9758,"X":409,"Y":452,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901443Z"},{"ID":17842,"Name":"Wioska barbarzyƄska","Points":9835,"X":423,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901443Z"},{"ID":17843,"Name":"046 Kurka wĂłdka","Points":9925,"X":411,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901443Z"},{"ID":17844,"Name":"Wioska barbarzyƄska","Points":9835,"X":420,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901444Z"},{"ID":17845,"Name":"022","Points":9750,"X":623,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901444Z"},{"ID":17846,"Name":"A0075","Points":10362,"X":366,"Y":498,"Continent":"K43","Bonus":9,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901444Z"},{"ID":17847,"Name":"OgĂłrkowy baron","Points":9835,"X":403,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901444Z"},{"ID":17848,"Name":"SSJ 013","Points":9737,"X":511,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901445Z"},{"ID":17850,"Name":"Szlachcic 010","Points":10311,"X":625,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901445Z"},{"ID":17851,"Name":"Jaaa","Points":10476,"X":598,"Y":593,"Continent":"K55","Bonus":4,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901445Z"},{"ID":17852,"Name":"0002 Wiocha","Points":10544,"X":424,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901445Z"},{"ID":17853,"Name":"0018 Bezimienna","Points":7901,"X":421,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901446Z"},{"ID":17854,"Name":"ZachĂłd - 011","Points":7831,"X":391,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901446Z"},{"ID":17855,"Name":"017 Wioska","Points":8089,"X":632,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901446Z"},{"ID":17856,"Name":"Wioska barbarzyƄska","Points":10068,"X":546,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901446Z"},{"ID":17857,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10001,"X":493,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901447Z"},{"ID":17859,"Name":"RTS 17","Points":10342,"X":570,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901447Z"},{"ID":17860,"Name":"Witam w wietnamie","Points":10008,"X":415,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901447Z"},{"ID":17861,"Name":"Westcoast.007","Points":10178,"X":381,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901448Z"},{"ID":17862,"Name":"KIELBA 092","Points":10221,"X":459,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901448Z"},{"ID":17863,"Name":"026","Points":9860,"X":630,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901448Z"},{"ID":17864,"Name":"026 | PALESTINA","Points":9544,"X":633,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901448Z"},{"ID":17865,"Name":"005","Points":9902,"X":549,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901449Z"},{"ID":17866,"Name":"Jaaa","Points":10479,"X":616,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901449Z"},{"ID":17867,"Name":"052","Points":5270,"X":433,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901449Z"},{"ID":17868,"Name":"WE ARE READY!","Points":9889,"X":592,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901449Z"},{"ID":17869,"Name":"Konfederacja +","Points":9801,"X":456,"Y":373,"Continent":"K34","Bonus":7,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90145Z"},{"ID":17870,"Name":"0051","Points":9683,"X":629,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90145Z"},{"ID":17871,"Name":"D011","Points":9324,"X":596,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90145Z"},{"ID":17872,"Name":"Hel 03","Points":9744,"X":614,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90145Z"},{"ID":17873,"Name":"Sony 911","Points":10214,"X":579,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90145Z"},{"ID":17874,"Name":"MasteroN 08","Points":10495,"X":567,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901451Z"},{"ID":17875,"Name":"0148","Points":10160,"X":551,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901451Z"},{"ID":17876,"Name":"006","Points":9804,"X":564,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901451Z"},{"ID":17878,"Name":"012","Points":9825,"X":494,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901451Z"},{"ID":17880,"Name":"#025 A","Points":9727,"X":457,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901452Z"},{"ID":17881,"Name":"A0178","Points":10362,"X":367,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901452Z"},{"ID":17882,"Name":"Deor, kaj się pchosz?","Points":3388,"X":629,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901452Z"},{"ID":17883,"Name":"083","Points":8113,"X":438,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901452Z"},{"ID":17884,"Name":"Lord Lord Franek .#016","Points":9957,"X":550,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901453Z"},{"ID":17885,"Name":"MojeSzczytToTwĂłjDno","Points":10338,"X":505,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901453Z"},{"ID":17886,"Name":"Pobozowisko","Points":10955,"X":396,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901453Z"},{"ID":17887,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9936,"X":494,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901453Z"},{"ID":17888,"Name":"0058","Points":10083,"X":560,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901454Z"},{"ID":17889,"Name":"Wioska","Points":10178,"X":381,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901454Z"},{"ID":17890,"Name":"sony911","Points":10218,"X":568,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901454Z"},{"ID":17891,"Name":"Deor czuje dym ;-)","Points":5645,"X":628,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901455Z"},{"ID":17892,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901455Z"},{"ID":17894,"Name":"020","Points":9887,"X":555,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901455Z"},{"ID":17895,"Name":"Westcoast.094","Points":10178,"X":392,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901456Z"},{"ID":17896,"Name":"00000A","Points":10690,"X":376,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901456Z"},{"ID":17897,"Name":"Westcoast.037","Points":10178,"X":397,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901456Z"},{"ID":17898,"Name":"NWO","Points":10971,"X":376,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901457Z"},{"ID":17899,"Name":"Wioska barbarzyƄska","Points":10068,"X":543,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901457Z"},{"ID":17900,"Name":"A0108","Points":10362,"X":363,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901457Z"},{"ID":17901,"Name":"002 B","Points":9735,"X":622,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901457Z"},{"ID":17902,"Name":"Wioska barbarzyƄska","Points":9962,"X":373,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901458Z"},{"ID":17903,"Name":"Pobozowisko","Points":10971,"X":393,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901458Z"},{"ID":17904,"Name":"Zeta Reticuli S","Points":11321,"X":399,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901458Z"},{"ID":17905,"Name":"0046","Points":10311,"X":447,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901459Z"},{"ID":17906,"Name":"Gattacka","Points":9589,"X":606,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901459Z"},{"ID":17907,"Name":"031","Points":9860,"X":633,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901459Z"},{"ID":17908,"Name":"Brat447","Points":10134,"X":369,"Y":516,"Continent":"K53","Bonus":5,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90146Z"},{"ID":17909,"Name":".031.","Points":10393,"X":489,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90146Z"},{"ID":17910,"Name":"R-01","Points":9013,"X":560,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90146Z"},{"ID":17911,"Name":"049","Points":5638,"X":371,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90146Z"},{"ID":17912,"Name":"009 Wioska barbarzyƄska","Points":10068,"X":535,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901461Z"},{"ID":17913,"Name":"# Szymi 4","Points":9873,"X":390,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901461Z"},{"ID":17914,"Name":"022.xxx","Points":10045,"X":454,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901461Z"},{"ID":17915,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":521,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901462Z"},{"ID":17916,"Name":"C 015","Points":9426,"X":579,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901462Z"},{"ID":17917,"Name":"Wioska PogĂłrze 1","Points":10311,"X":628,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901462Z"},{"ID":17918,"Name":"WaƂcz","Points":9702,"X":394,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901463Z"},{"ID":17919,"Name":"Bagdad","Points":10040,"X":492,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901463Z"},{"ID":17920,"Name":"#0018","Points":7888,"X":520,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901463Z"},{"ID":17921,"Name":"Horyzont zdarzeƄ","Points":10019,"X":520,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901464Z"},{"ID":17922,"Name":"Zeta Reticuli S","Points":10728,"X":406,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901464Z"},{"ID":17923,"Name":".024.","Points":10316,"X":485,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901464Z"},{"ID":17924,"Name":"0031","Points":9982,"X":625,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901465Z"},{"ID":17925,"Name":"A0090","Points":10362,"X":368,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901465Z"},{"ID":17926,"Name":"Zeta Reticuli S","Points":11188,"X":401,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901465Z"},{"ID":17927,"Name":"013 - Vigo","Points":10019,"X":634,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901465Z"},{"ID":17928,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":512,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901466Z"},{"ID":17929,"Name":"Szlachcic PóƂnoc 003","Points":10311,"X":630,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901466Z"},{"ID":17931,"Name":"097. Kirlan","Points":11678,"X":626,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901466Z"},{"ID":17932,"Name":"126 im Gribowa","Points":9379,"X":602,"Y":411,"Continent":"K46","Bonus":6,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901467Z"},{"ID":17933,"Name":"Wioska","Points":8444,"X":379,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901467Z"},{"ID":17934,"Name":"A READY","Points":10252,"X":589,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901467Z"},{"ID":17935,"Name":"Pobozowisko","Points":9537,"X":407,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901467Z"},{"ID":17936,"Name":"Belvedere 018","Points":9998,"X":585,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901468Z"},{"ID":17937,"Name":"Darmowe przeprowadzki","Points":8844,"X":435,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901468Z"},{"ID":17938,"Name":"Gattacka","Points":9042,"X":607,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901468Z"},{"ID":17939,"Name":"#0011","Points":10495,"X":549,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901469Z"},{"ID":17940,"Name":"BoOmBaa..","Points":6900,"X":441,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901469Z"},{"ID":17941,"Name":"FB006","Points":9827,"X":629,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901469Z"},{"ID":17942,"Name":"A0091","Points":10362,"X":364,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901469Z"},{"ID":17943,"Name":"Wioska 032","Points":9761,"X":604,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90147Z"},{"ID":17944,"Name":"Wioska","Points":10178,"X":382,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90147Z"},{"ID":17945,"Name":"014 Wioska barbarzyƄska","Points":10178,"X":540,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90147Z"},{"ID":17946,"Name":"089.","Points":9229,"X":634,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901471Z"},{"ID":17947,"Name":"004","Points":9873,"X":404,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901471Z"},{"ID":17948,"Name":"016 WymiękƂem w hu11","Points":10711,"X":626,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901471Z"},{"ID":17949,"Name":"088 LUDZI CAƁA MASA","Points":10074,"X":407,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901472Z"},{"ID":17950,"Name":"Wioska (021)","Points":9786,"X":620,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901472Z"},{"ID":17951,"Name":"036|","Points":10143,"X":622,"Y":552,"Continent":"K56","Bonus":4,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901472Z"},{"ID":17952,"Name":"032","Points":9809,"X":369,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901473Z"},{"ID":17953,"Name":"007","Points":10495,"X":554,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901473Z"},{"ID":17954,"Name":"Wioska barbarzyƄska","Points":10068,"X":601,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901473Z"},{"ID":17955,"Name":"A-002","Points":10654,"X":412,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901474Z"},{"ID":17956,"Name":"033","Points":9902,"X":472,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901474Z"},{"ID":17957,"Name":"B032","Points":9824,"X":634,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901474Z"},{"ID":17958,"Name":"Wioska","Points":10178,"X":380,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901474Z"},{"ID":17959,"Name":"018","Points":10143,"X":496,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901475Z"},{"ID":17960,"Name":"024","Points":10311,"X":591,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901475Z"},{"ID":17961,"Name":"Pobozowisko","Points":10765,"X":412,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901475Z"},{"ID":17962,"Name":"A READY","Points":10237,"X":586,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901476Z"},{"ID":17963,"Name":"Zeta Reticuli S","Points":10997,"X":408,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901476Z"},{"ID":17964,"Name":"615|429 Wioska barbarzyƄska02","Points":9569,"X":615,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901476Z"},{"ID":17965,"Name":"022","Points":9825,"X":474,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901476Z"},{"ID":17966,"Name":"Gattacka","Points":9537,"X":590,"Y":492,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901477Z"},{"ID":17967,"Name":"616|429 Wioska barbarzyƄska07","Points":9609,"X":616,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901477Z"},{"ID":17968,"Name":"Zeta Reticuli S","Points":10838,"X":410,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901477Z"},{"ID":17969,"Name":"Nowa 07","Points":9835,"X":615,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901478Z"},{"ID":17970,"Name":"051","Points":10259,"X":471,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901478Z"},{"ID":17971,"Name":"Deor, dej na luz","Points":4059,"X":627,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901478Z"},{"ID":17973,"Name":"Westcoast.039","Points":10178,"X":399,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901479Z"},{"ID":17976,"Name":"Kentin ufam Tobie","Points":10000,"X":375,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901479Z"},{"ID":17977,"Name":"070 OZDR","Points":9825,"X":473,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901479Z"},{"ID":17978,"Name":"123","Points":10261,"X":493,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901479Z"},{"ID":17979,"Name":"Westcoast.022","Points":10178,"X":389,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90148Z"},{"ID":17980,"Name":"estadio","Points":10008,"X":400,"Y":414,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90148Z"},{"ID":17981,"Name":"Darma","Points":9273,"X":417,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90148Z"},{"ID":17982,"Name":"Wioska barbarzyƄska","Points":10008,"X":404,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901481Z"},{"ID":17983,"Name":"Wioska Czerwonacki Magnat","Points":10311,"X":423,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901481Z"},{"ID":17984,"Name":"A0179","Points":10362,"X":368,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901481Z"},{"ID":17985,"Name":"021","Points":10030,"X":628,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901481Z"},{"ID":17986,"Name":"Konfederacja +","Points":9761,"X":457,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901482Z"},{"ID":17987,"Name":"Pobozowisko","Points":10821,"X":408,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901482Z"},{"ID":17988,"Name":"Wioska barbarzyƄska","Points":10205,"X":372,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901482Z"},{"ID":17989,"Name":"WE ARE READY!","Points":10019,"X":594,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901483Z"},{"ID":17990,"Name":"Ulu-mulu","Points":9077,"X":417,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901483Z"},{"ID":17991,"Name":"s181eo28","Points":10611,"X":382,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901483Z"},{"ID":17992,"Name":"Jaaa","Points":10478,"X":595,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901483Z"},{"ID":17993,"Name":"Asgard","Points":10068,"X":539,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901484Z"},{"ID":17994,"Name":"Wioska barbarzyƄska","Points":9888,"X":523,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901484Z"},{"ID":17995,"Name":"083. GĂłry Dzielące","Points":11911,"X":626,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901484Z"},{"ID":17996,"Name":"Ulu-mulu","Points":10869,"X":431,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901485Z"},{"ID":17997,"Name":"Jaaa","Points":10063,"X":617,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901485Z"},{"ID":17998,"Name":"#0017","Points":10495,"X":546,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901485Z"},{"ID":17999,"Name":"B10","Points":10008,"X":411,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901485Z"},{"ID":18000,"Name":"Wioska","Points":9383,"X":372,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901486Z"},{"ID":18001,"Name":"Jesion","Points":9825,"X":370,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901486Z"},{"ID":18002,"Name":"D008","Points":10495,"X":602,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901487Z"},{"ID":18003,"Name":"024 aaaa pozdro 600","Points":9312,"X":630,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901487Z"},{"ID":18004,"Name":"VN Fanzell Kruger","Points":9599,"X":463,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901487Z"},{"ID":18005,"Name":"BoOmBaa..","Points":3723,"X":442,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901488Z"},{"ID":18006,"Name":"Piwna 03","Points":9437,"X":612,"Y":434,"Continent":"K46","Bonus":3,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901488Z"},{"ID":18007,"Name":"023.","Points":9824,"X":632,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901488Z"},{"ID":18008,"Name":"[024]","Points":9809,"X":632,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901488Z"},{"ID":18009,"Name":"69. Wioska 69","Points":3699,"X":386,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901489Z"},{"ID":18010,"Name":"Nowa 19","Points":9750,"X":618,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901489Z"},{"ID":18011,"Name":"E 003","Points":10093,"X":595,"Y":593,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901489Z"},{"ID":18012,"Name":"yyyy","Points":10375,"X":495,"Y":364,"Continent":"K34","Bonus":1,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90149Z"},{"ID":18013,"Name":"068","Points":9847,"X":439,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90149Z"},{"ID":18014,"Name":"614|426 002Legatus","Points":9841,"X":614,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90149Z"},{"ID":18015,"Name":"Kozio","Points":10495,"X":564,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90149Z"},{"ID":18016,"Name":"RzeĆșnia","Points":8615,"X":383,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901491Z"},{"ID":18018,"Name":"Wioska barbarzyƄska","Points":6415,"X":391,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":698526036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901491Z"},{"ID":18019,"Name":"Novigrad","Points":9756,"X":478,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901491Z"},{"ID":18020,"Name":"R008","Points":10083,"X":390,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901492Z"},{"ID":18021,"Name":"Wioska barbarzyƄska","Points":10476,"X":372,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901492Z"},{"ID":18022,"Name":"Wioska barbarzyƄska","Points":6678,"X":578,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901492Z"},{"ID":18023,"Name":"010 Opowiem Wam bajeczkę","Points":10475,"X":377,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901492Z"},{"ID":18024,"Name":"Wioska","Points":10178,"X":373,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901493Z"},{"ID":18025,"Name":"Pobozowisko","Points":10966,"X":397,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901493Z"},{"ID":18026,"Name":"Westcoast.036","Points":10178,"X":394,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901493Z"},{"ID":18027,"Name":"Kentin ufam Tobie","Points":10000,"X":376,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901494Z"},{"ID":18028,"Name":"[0076]","Points":10495,"X":417,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901494Z"},{"ID":18029,"Name":"SSJ 048","Points":9653,"X":505,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901494Z"},{"ID":18030,"Name":"Yyyy","Points":10132,"X":499,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901495Z"},{"ID":18031,"Name":"061 PotÄ™ĆŒny Dzban","Points":10476,"X":381,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901495Z"},{"ID":18032,"Name":"E 008","Points":9939,"X":592,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901495Z"},{"ID":18033,"Name":"Lipa","Points":9752,"X":368,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901495Z"},{"ID":18035,"Name":"40001","Points":11130,"X":487,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901496Z"},{"ID":18036,"Name":"005","Points":10143,"X":501,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901496Z"},{"ID":18037,"Name":"026","Points":10311,"X":595,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901496Z"},{"ID":18038,"Name":"C013","Points":6724,"X":578,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901497Z"},{"ID":18039,"Name":"616|424 006 PƂyta RedƂowska","Points":9882,"X":616,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901497Z"},{"ID":18040,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901497Z"},{"ID":18041,"Name":"K34 - [082] Before Land","Points":6316,"X":458,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901498Z"},{"ID":18042,"Name":"056","Points":10226,"X":608,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901498Z"},{"ID":18043,"Name":"ZachĂłd - 010","Points":7287,"X":390,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901498Z"},{"ID":18044,"Name":"015","Points":9724,"X":442,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901498Z"},{"ID":18045,"Name":"K44 x036","Points":9150,"X":404,"Y":404,"Continent":"K44","Bonus":1,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901499Z"},{"ID":18047,"Name":"WE ARE READY!","Points":10362,"X":587,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901499Z"},{"ID":18048,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9687,"X":459,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901499Z"},{"ID":18049,"Name":"R001","Points":10495,"X":386,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9015Z"},{"ID":18050,"Name":"Pobozowisko","Points":9995,"X":398,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9015Z"},{"ID":18051,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9510,"X":482,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9015Z"},{"ID":18052,"Name":"018","Points":9607,"X":557,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901501Z"},{"ID":18053,"Name":"Wioska SoƂtys caƂej wsi","Points":9899,"X":439,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901501Z"},{"ID":18054,"Name":"Wioska PogĂłrze 2","Points":10311,"X":627,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901501Z"},{"ID":18055,"Name":"Westcoast.042","Points":10178,"X":383,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901501Z"},{"ID":18056,"Name":"042 Takaoka","Points":10495,"X":629,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901502Z"},{"ID":18057,"Name":"R009","Points":10019,"X":389,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901502Z"},{"ID":18058,"Name":"Bagdad","Points":9976,"X":500,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901502Z"},{"ID":18059,"Name":"0062","Points":9972,"X":459,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901503Z"},{"ID":18060,"Name":"012","Points":10273,"X":600,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901503Z"},{"ID":18062,"Name":"Wioska 033","Points":9761,"X":604,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901503Z"},{"ID":18063,"Name":"009. Velen","Points":10415,"X":565,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901503Z"},{"ID":18064,"Name":"Wioska barbarzyƄska","Points":5263,"X":392,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901504Z"},{"ID":18065,"Name":"#0007","Points":10495,"X":548,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901504Z"},{"ID":18066,"Name":"Kentin ufam Tobie","Points":10000,"X":382,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901504Z"},{"ID":18067,"Name":"Wioska barbarzyƄska","Points":9885,"X":520,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901505Z"},{"ID":18068,"Name":"019. Massilia","Points":9428,"X":625,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901505Z"},{"ID":18069,"Name":"[019]","Points":9809,"X":625,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901505Z"},{"ID":18071,"Name":"[013] Akeno Misaki","Points":10140,"X":481,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901505Z"},{"ID":18072,"Name":"Westcoast.071","Points":10178,"X":392,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901506Z"},{"ID":18074,"Name":"SSJ 003","Points":9737,"X":513,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901506Z"},{"ID":18075,"Name":"007 KTW","Points":10495,"X":626,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901506Z"},{"ID":18076,"Name":"BoOmBaa..xd","Points":7738,"X":439,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901506Z"},{"ID":18077,"Name":"Kentin ufam Tobie","Points":10000,"X":376,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901507Z"},{"ID":18078,"Name":"014 B","Points":9172,"X":624,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901507Z"},{"ID":18079,"Name":"090","Points":4152,"X":440,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901507Z"},{"ID":18080,"Name":"082","Points":10237,"X":479,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901507Z"},{"ID":18081,"Name":"Wioska","Points":10178,"X":376,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901508Z"},{"ID":18082,"Name":"Lolita","Points":7453,"X":368,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901508Z"},{"ID":18083,"Name":"A READY","Points":10237,"X":588,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901508Z"},{"ID":18084,"Name":"0090","Points":9835,"X":444,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901508Z"},{"ID":18085,"Name":"Wioska 7","Points":6827,"X":634,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901509Z"},{"ID":18087,"Name":"Pobozowisko","Points":10971,"X":382,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901509Z"},{"ID":18088,"Name":"022.","Points":9814,"X":633,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901509Z"},{"ID":18090,"Name":"012 B","Points":8643,"X":621,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901509Z"},{"ID":18092,"Name":"Bagdad","Points":9976,"X":495,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90151Z"},{"ID":18093,"Name":"002. Nottingham","Points":9898,"X":448,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90151Z"},{"ID":18094,"Name":"050","Points":5523,"X":369,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90151Z"},{"ID":18095,"Name":"A08 Wioska barbarzyƄska","Points":10220,"X":467,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90151Z"},{"ID":18096,"Name":"046 KrakĂłw","Points":10495,"X":634,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901511Z"},{"ID":18097,"Name":"Kentin ufam Tobie","Points":10000,"X":383,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901511Z"},{"ID":18098,"Name":"yyyy","Points":10108,"X":497,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901511Z"},{"ID":18099,"Name":"A0129","Points":10362,"X":371,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901512Z"},{"ID":18100,"Name":"Wioska barbarzyƄska","Points":9554,"X":435,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901512Z"},{"ID":18101,"Name":"Wioska barbarzyƄska","Points":10068,"X":601,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901512Z"},{"ID":18102,"Name":"0039 Andrzej speaking","Points":8266,"X":414,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901512Z"},{"ID":18103,"Name":"031","Points":5607,"X":368,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901513Z"},{"ID":18104,"Name":"Wioska FANBOY Krolik14","Points":10019,"X":597,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901513Z"},{"ID":18105,"Name":"FB005","Points":9816,"X":631,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901513Z"},{"ID":18106,"Name":"Westcoast.063","Points":10178,"X":387,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901513Z"},{"ID":18107,"Name":"Konfederacja +","Points":9737,"X":456,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901514Z"},{"ID":18108,"Name":"A0092","Points":10362,"X":367,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901514Z"},{"ID":18109,"Name":"NIERAJ02","Points":5305,"X":453,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901514Z"},{"ID":18110,"Name":"059","Points":6213,"X":434,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901515Z"},{"ID":18111,"Name":"Wioska barbarzyƄska","Points":10484,"X":372,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901515Z"},{"ID":18112,"Name":".achim.","Points":11970,"X":537,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901515Z"},{"ID":18113,"Name":"Pobozowisko","Points":10954,"X":404,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901515Z"},{"ID":18114,"Name":"A0093","Points":10362,"X":367,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901516Z"},{"ID":18115,"Name":"VN Minamoto","Points":9643,"X":468,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901516Z"},{"ID":18116,"Name":"#0017","Points":9761,"X":515,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901516Z"},{"ID":18117,"Name":"-008- K55 Storm","Points":9747,"X":590,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901517Z"},{"ID":18118,"Name":"+44 72 Lyon Sans Souci","Points":9749,"X":424,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901517Z"},{"ID":18119,"Name":"010","Points":9825,"X":492,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901517Z"},{"ID":18120,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":427,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901518Z"},{"ID":18121,"Name":"E 009","Points":9643,"X":592,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901518Z"},{"ID":18122,"Name":"Pobozowisko","Points":10955,"X":402,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901518Z"},{"ID":18123,"Name":"055","Points":4621,"X":370,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901519Z"},{"ID":18124,"Name":"0006 -1-","Points":10544,"X":426,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901519Z"},{"ID":18125,"Name":"SoƂtys Wsi craig1","Points":9689,"X":439,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901519Z"},{"ID":18126,"Name":"Taran","Points":9566,"X":551,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901519Z"},{"ID":18127,"Name":"0012","Points":10117,"X":440,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90152Z"},{"ID":18128,"Name":"Taran","Points":9440,"X":549,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90152Z"},{"ID":18129,"Name":"Wioska permo2x","Points":9741,"X":476,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90152Z"},{"ID":18130,"Name":"Piwna 13","Points":8697,"X":614,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901521Z"},{"ID":18131,"Name":"007 New Episode v1","Points":10068,"X":399,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901521Z"},{"ID":18132,"Name":"RTS 73","Points":10495,"X":569,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901521Z"},{"ID":18133,"Name":"Wioska barbarzyƄska","Points":9835,"X":420,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901522Z"},{"ID":18134,"Name":"AMojeSzczytToTwĂłjDno","Points":10484,"X":515,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901522Z"},{"ID":18135,"Name":"Wioska 2","Points":9013,"X":558,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901522Z"},{"ID":18136,"Name":"[0060]","Points":10495,"X":418,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901522Z"},{"ID":18137,"Name":"020 | PALESTINA | Msqt [*]","Points":9346,"X":622,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901523Z"},{"ID":18138,"Name":"A READY","Points":10160,"X":591,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901523Z"},{"ID":18139,"Name":"Plate Partition - Interior","Points":10654,"X":525,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901523Z"},{"ID":18140,"Name":"608|420 Wioska barbarzyƄska11","Points":9457,"X":608,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901523Z"},{"ID":18141,"Name":"RTS 4","Points":10495,"X":572,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901524Z"},{"ID":18142,"Name":"Ulu-mulu","Points":9108,"X":421,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901524Z"},{"ID":18143,"Name":"022","Points":9835,"X":614,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901524Z"},{"ID":18144,"Name":"ZachĂłd - 012","Points":8176,"X":390,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901524Z"},{"ID":18145,"Name":"Taran","Points":9452,"X":548,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901525Z"},{"ID":18146,"Name":"034","Points":10019,"X":622,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901525Z"},{"ID":18148,"Name":"013.","Points":10008,"X":563,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901525Z"},{"ID":18149,"Name":"K34 x007","Points":8607,"X":445,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901525Z"},{"ID":18151,"Name":"A09 Wioska barbarzyƄska","Points":10226,"X":467,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901526Z"},{"ID":18152,"Name":"Wioska barbarzyƄska","Points":10476,"X":620,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901526Z"},{"ID":18153,"Name":"#0015","Points":9761,"X":517,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901526Z"},{"ID":18154,"Name":"041 Murayama","Points":10495,"X":633,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901526Z"},{"ID":18155,"Name":"Kiwi Kiwi","Points":9151,"X":576,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901527Z"},{"ID":18157,"Name":"A0139","Points":10362,"X":368,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901527Z"},{"ID":18158,"Name":"064","Points":10495,"X":366,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901527Z"},{"ID":18159,"Name":"BACÓWKA |017|","Points":12046,"X":631,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901527Z"},{"ID":18160,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":528,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901528Z"},{"ID":18161,"Name":"069","Points":10495,"X":367,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901528Z"},{"ID":18162,"Name":"Sony 911","Points":10230,"X":568,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901528Z"},{"ID":18163,"Name":"Grab","Points":9825,"X":364,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901528Z"},{"ID":18164,"Name":"Jehu_Kingdom_66","Points":9604,"X":626,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901528Z"},{"ID":18165,"Name":"055 Kuzyn skonfiskowaƂ Stawik","Points":10484,"X":380,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901529Z"},{"ID":18166,"Name":"WE ARE READY","Points":8205,"X":594,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901529Z"},{"ID":18167,"Name":"Klon","Points":9771,"X":367,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901529Z"},{"ID":18168,"Name":"049","Points":9064,"X":375,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901529Z"},{"ID":18169,"Name":"SSJ 034","Points":9761,"X":511,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90153Z"},{"ID":18170,"Name":"0055","Points":10252,"X":561,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90153Z"},{"ID":18171,"Name":"037","Points":5699,"X":365,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90153Z"},{"ID":18172,"Name":"#048 Upsss","Points":10508,"X":446,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90153Z"},{"ID":18173,"Name":"SSJ 062","Points":9495,"X":520,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901531Z"},{"ID":18174,"Name":"034...strazakkk","Points":10495,"X":462,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901531Z"},{"ID":18175,"Name":"Pobozowisko","Points":8154,"X":395,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901531Z"},{"ID":18176,"Name":"0427","Points":9745,"X":562,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901531Z"},{"ID":18177,"Name":"VN Fuegoleon Vermillion","Points":9634,"X":460,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901532Z"},{"ID":18178,"Name":"045 GdaƄsk","Points":10495,"X":633,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901532Z"},{"ID":18179,"Name":"061","Points":6800,"X":479,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901532Z"},{"ID":18180,"Name":"W.10","Points":10362,"X":584,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901532Z"},{"ID":18181,"Name":"South K45","Points":10042,"X":593,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901532Z"},{"ID":18182,"Name":"021","Points":10160,"X":565,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901533Z"},{"ID":18183,"Name":"Wioska barbarzyƄska","Points":10218,"X":562,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901533Z"},{"ID":18184,"Name":"009 Wioska","Points":6975,"X":633,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901533Z"},{"ID":18185,"Name":"Brat447","Points":7470,"X":368,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901534Z"},{"ID":18186,"Name":"Pobozowisko","Points":8834,"X":387,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901534Z"},{"ID":18187,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":526,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901534Z"},{"ID":18188,"Name":"E 005","Points":9767,"X":590,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901534Z"},{"ID":18189,"Name":"Nowa 18","Points":9827,"X":614,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901535Z"},{"ID":18190,"Name":"038","Points":6017,"X":365,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901535Z"},{"ID":18191,"Name":"201","Points":10019,"X":636,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901535Z"},{"ID":18192,"Name":"[0085]","Points":10495,"X":414,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901535Z"},{"ID":18193,"Name":"27. Wioska 27","Points":10144,"X":375,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901536Z"},{"ID":18194,"Name":"Wioska barbarzyƄska","Points":10478,"X":370,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901536Z"},{"ID":18195,"Name":"0005","Points":10211,"X":583,"Y":398,"Continent":"K35","Bonus":1,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901536Z"},{"ID":18196,"Name":"#0046","Points":10495,"X":549,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901536Z"},{"ID":18197,"Name":"40005","Points":10132,"X":488,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901537Z"},{"ID":18198,"Name":"009","Points":9709,"X":561,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901537Z"},{"ID":18199,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901537Z"},{"ID":18200,"Name":"*4609* Tutaj","Points":10287,"X":636,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901538Z"},{"ID":18201,"Name":"PoNocyPoluj a gryfin zasta nie m","Points":9899,"X":479,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901538Z"},{"ID":18202,"Name":"1. Baraki","Points":8959,"X":619,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901538Z"},{"ID":18203,"Name":"MojeSzczytToTwĂłjDno","Points":10287,"X":534,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901538Z"},{"ID":18204,"Name":"0050","Points":9395,"X":631,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901539Z"},{"ID":18205,"Name":"Westcoast.040","Points":10178,"X":382,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901539Z"},{"ID":18206,"Name":"Westcoast.043","Points":10178,"X":381,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901539Z"},{"ID":18207,"Name":"056 OZDR","Points":9825,"X":465,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90154Z"},{"ID":18208,"Name":"[0089]","Points":10495,"X":413,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90154Z"},{"ID":18209,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":508,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90154Z"},{"ID":18210,"Name":"E 006","Points":9724,"X":594,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901541Z"},{"ID":18211,"Name":"A READY","Points":10237,"X":587,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901541Z"},{"ID":18212,"Name":"063 OZDR","Points":7972,"X":457,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901541Z"},{"ID":18213,"Name":"018 KUZYNI","Points":10122,"X":471,"Y":630,"Continent":"K64","Bonus":8,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901541Z"},{"ID":18214,"Name":"066 OZDR","Points":9462,"X":460,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901542Z"},{"ID":18215,"Name":"0037 Węgiel","Points":10654,"X":416,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901542Z"},{"ID":18216,"Name":"024","Points":10155,"X":503,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901542Z"},{"ID":18217,"Name":"#0047","Points":10495,"X":547,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901543Z"},{"ID":18218,"Name":"Pobozowisko","Points":10960,"X":399,"Y":584,"Continent":"K53","Bonus":7,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901543Z"},{"ID":18219,"Name":"Mako Reactor 1 - B4F","Points":9270,"X":522,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901543Z"},{"ID":18220,"Name":"Pobozowisko","Points":9840,"X":410,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901543Z"},{"ID":18221,"Name":"FKG 01-28","Points":9835,"X":415,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901544Z"},{"ID":18222,"Name":"Pobozowisko","Points":10954,"X":394,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901544Z"},{"ID":18223,"Name":"061 OZDR","Points":9825,"X":458,"Y":627,"Continent":"K64","Bonus":6,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901544Z"},{"ID":18224,"Name":"z 022","Points":10478,"X":555,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901545Z"},{"ID":18225,"Name":"[B]_[203] Dejv.oldplyr","Points":9027,"X":430,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901545Z"},{"ID":18226,"Name":"Whiskey In The Jar","Points":8813,"X":609,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901545Z"},{"ID":18227,"Name":"062 PotÄ™ĆŒny Dzban","Points":10484,"X":381,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901545Z"},{"ID":18228,"Name":"0004","Points":10593,"X":482,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901546Z"},{"ID":18229,"Name":"Pobozowisko","Points":10971,"X":387,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901546Z"},{"ID":18230,"Name":"Wioska Szyderczy promil","Points":9122,"X":572,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901546Z"},{"ID":18231,"Name":"017.","Points":5197,"X":629,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901547Z"},{"ID":18232,"Name":"Mzm19","Points":10362,"X":609,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901547Z"},{"ID":18233,"Name":"019.","Points":10495,"X":571,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901547Z"},{"ID":18234,"Name":"100","Points":10311,"X":553,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901547Z"},{"ID":18235,"Name":"03. Matelanka","Points":10068,"X":605,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901548Z"},{"ID":18236,"Name":"608|419 010 FRANKIA","Points":9989,"X":608,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901548Z"},{"ID":18237,"Name":"A READY","Points":10019,"X":589,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901548Z"},{"ID":18238,"Name":"Zeta Reticuli S","Points":10997,"X":407,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901549Z"},{"ID":18239,"Name":"015","Points":9910,"X":627,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901549Z"},{"ID":18240,"Name":"MojeSzczytToTwĂłjDno","Points":10475,"X":526,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901549Z"},{"ID":18241,"Name":"014","Points":9894,"X":623,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90155Z"},{"ID":18242,"Name":"VN Ragnar Lodbrok","Points":9660,"X":466,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90155Z"},{"ID":18243,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8820,"X":536,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90155Z"},{"ID":18245,"Name":"012","Points":9860,"X":631,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901551Z"},{"ID":18246,"Name":"Wioska barbarzyƄska","Points":9901,"X":394,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901551Z"},{"ID":18247,"Name":"0114","Points":7561,"X":437,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901551Z"},{"ID":18248,"Name":"128","Points":10495,"X":489,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901551Z"},{"ID":18249,"Name":"FAKE OR OFF","Points":9915,"X":439,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901552Z"},{"ID":18250,"Name":"A04 Wioska barbarzyƄska","Points":10475,"X":466,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901552Z"},{"ID":18251,"Name":"025 KTW","Points":7048,"X":627,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901552Z"},{"ID":18252,"Name":"001","Points":11130,"X":428,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901553Z"},{"ID":18253,"Name":"WE ARE READY!","Points":9435,"X":592,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901553Z"},{"ID":18254,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":496,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901553Z"},{"ID":18255,"Name":"Part XXVI","Points":10495,"X":537,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901553Z"},{"ID":18256,"Name":"008","Points":10311,"X":549,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901554Z"},{"ID":18257,"Name":"018","Points":5767,"X":371,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901554Z"},{"ID":18258,"Name":"002","Points":10495,"X":559,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901554Z"},{"ID":18259,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8819,"X":543,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901555Z"},{"ID":18260,"Name":"yogi","Points":10019,"X":539,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901555Z"},{"ID":18261,"Name":"Jan 012 Pln K","Points":9630,"X":631,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901555Z"},{"ID":18262,"Name":"A0296","Points":10362,"X":364,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901555Z"},{"ID":18263,"Name":"SSJ 025","Points":9761,"X":506,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901556Z"},{"ID":18264,"Name":"SSJ 020","Points":9761,"X":511,"Y":633,"Continent":"K65","Bonus":5,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901556Z"},{"ID":18265,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":9557,"X":434,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901556Z"},{"ID":18266,"Name":"052","Points":10237,"X":477,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901557Z"},{"ID":18267,"Name":"061","Points":9506,"X":365,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901557Z"},{"ID":18268,"Name":"[0111]","Points":10495,"X":417,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901557Z"},{"ID":18269,"Name":"Kentin ufam Tobie","Points":10000,"X":384,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901558Z"},{"ID":18270,"Name":"008 KTW","Points":10495,"X":627,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901558Z"},{"ID":18271,"Name":"008 Hello Moto","Points":10001,"X":604,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901558Z"},{"ID":18272,"Name":"039","Points":6817,"X":376,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901558Z"},{"ID":18273,"Name":"020","Points":10311,"X":599,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901559Z"},{"ID":18274,"Name":"Wioska barbarzyƄska","Points":10478,"X":621,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901559Z"},{"ID":18276,"Name":"Brat447","Points":10235,"X":365,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901559Z"},{"ID":18277,"Name":"614|432 007 1 Strona","Points":9969,"X":614,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901559Z"},{"ID":18278,"Name":"Zulu","Points":7987,"X":613,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90156Z"},{"ID":18279,"Name":"#017.506|495","Points":9735,"X":625,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90156Z"},{"ID":18280,"Name":"006","Points":10143,"X":501,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90156Z"},{"ID":18281,"Name":"Westcoast.062","Points":10178,"X":387,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90156Z"},{"ID":18282,"Name":"Wioska barbarzyƄska","Points":10481,"X":630,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901561Z"},{"ID":18283,"Name":"MojeSzczytToTwĂłjDno","Points":10484,"X":518,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901561Z"},{"ID":18284,"Name":"NOT?","Points":10068,"X":416,"Y":534,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901561Z"},{"ID":18285,"Name":"Corneo s Mansion","Points":10495,"X":526,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901562Z"},{"ID":18286,"Name":"Wioska barbarzyƄska","Points":10548,"X":633,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901562Z"},{"ID":18287,"Name":"Pobozowisko","Points":10957,"X":412,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901562Z"},{"ID":18288,"Name":"Pobozowisko","Points":10952,"X":400,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901563Z"},{"ID":18289,"Name":"0017 MzM","Points":9258,"X":622,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901563Z"},{"ID":18290,"Name":"0063 k","Points":10083,"X":452,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901563Z"},{"ID":18291,"Name":"062","Points":10495,"X":364,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901563Z"},{"ID":18292,"Name":"026 Daevon","Points":10393,"X":611,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901564Z"},{"ID":18293,"Name":"Westcoast.004","Points":10178,"X":388,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901564Z"},{"ID":18294,"Name":"009.","Points":9761,"X":628,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901564Z"},{"ID":18295,"Name":"A0122","Points":10362,"X":366,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901565Z"},{"ID":18296,"Name":"Gattacka","Points":9883,"X":610,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901565Z"},{"ID":18297,"Name":"040. Wioska","Points":6615,"X":479,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901565Z"},{"ID":18298,"Name":"Zeta Reticuli S","Points":11321,"X":405,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901565Z"},{"ID":18299,"Name":"019 - Grenada","Points":10019,"X":637,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901566Z"},{"ID":18301,"Name":"Wioska 029","Points":9761,"X":603,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901566Z"},{"ID":18302,"Name":"Westcoast.077","Points":10178,"X":386,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901566Z"},{"ID":18303,"Name":"Kentin ufam Tobie","Points":10000,"X":375,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901567Z"},{"ID":18304,"Name":"Gattacka","Points":9745,"X":610,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901567Z"},{"ID":18305,"Name":"Jaaa","Points":10495,"X":581,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901567Z"},{"ID":18306,"Name":"067","Points":7253,"X":366,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901567Z"},{"ID":18307,"Name":"010","Points":9835,"X":610,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901568Z"},{"ID":18308,"Name":"A READY","Points":10160,"X":596,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901568Z"},{"ID":18309,"Name":"Pobozowisko","Points":10374,"X":402,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901568Z"},{"ID":18310,"Name":"013 B","Points":6622,"X":625,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901569Z"},{"ID":18311,"Name":"Zeta Reticuli S","Points":11417,"X":402,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901569Z"},{"ID":18312,"Name":"Westcoast.092","Points":10178,"X":389,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901569Z"},{"ID":18313,"Name":"053","Points":10237,"X":476,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90157Z"},{"ID":18314,"Name":"126","Points":10495,"X":491,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90157Z"},{"ID":18315,"Name":"054","Points":10237,"X":480,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90157Z"},{"ID":18316,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9874,"X":496,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90157Z"},{"ID":18317,"Name":"sony911","Points":10214,"X":579,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901571Z"},{"ID":18318,"Name":"#067.","Points":8948,"X":626,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901571Z"},{"ID":18319,"Name":"Jaaa","Points":10479,"X":586,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901571Z"},{"ID":18320,"Name":"010","Points":11130,"X":429,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901571Z"},{"ID":18321,"Name":"024","Points":5444,"X":370,"Y":521,"Continent":"K53","Bonus":1,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901572Z"},{"ID":18322,"Name":"KIELBA 011","Points":10273,"X":447,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901572Z"},{"ID":18323,"Name":"Wioska barbarzyƄska","Points":10479,"X":371,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901572Z"},{"ID":18324,"Name":"Wioska barbarzyƄska","Points":10008,"X":405,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901572Z"},{"ID":18325,"Name":"Westcoast.008","Points":10178,"X":387,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901573Z"},{"ID":18326,"Name":"063 PotÄ™ĆŒny Dzban","Points":10478,"X":378,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901573Z"},{"ID":18327,"Name":"006. Requiem","Points":9788,"X":627,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901573Z"},{"ID":18328,"Name":"Wioska barbarzyƄska","Points":9835,"X":421,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901573Z"},{"ID":18329,"Name":"Pobozowisko","Points":10487,"X":407,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901574Z"},{"ID":18330,"Name":"A0133","Points":10362,"X":371,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901574Z"},{"ID":18331,"Name":"Ulu-mulu","Points":9646,"X":424,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901574Z"},{"ID":18332,"Name":".049.","Points":10503,"X":494,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901575Z"},{"ID":18333,"Name":"043","Points":10237,"X":475,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901575Z"},{"ID":18334,"Name":"614|430 Wioska barbarzyƄska14","Points":9299,"X":614,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901575Z"},{"ID":18335,"Name":"mklo","Points":10471,"X":536,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901575Z"},{"ID":18336,"Name":"Horyzont zdarzeƄ","Points":9835,"X":558,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901576Z"},{"ID":18337,"Name":"VN Xerx Lugner","Points":9380,"X":468,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901576Z"},{"ID":18338,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901576Z"},{"ID":18339,"Name":"023","Points":9861,"X":436,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901577Z"},{"ID":18340,"Name":"A0212","Points":10362,"X":366,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901577Z"},{"ID":18341,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":443,"Continent":"K43","Bonus":9,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901577Z"},{"ID":18342,"Name":"Knowhere","Points":10452,"X":364,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901577Z"},{"ID":18343,"Name":"C013 Venore","Points":9740,"X":622,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901578Z"},{"ID":18344,"Name":"siedze na tronie","Points":10495,"X":572,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901578Z"},{"ID":18345,"Name":"Ulu-mulu","Points":8778,"X":428,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901578Z"},{"ID":18346,"Name":"Lima","Points":8783,"X":612,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901579Z"},{"ID":18347,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901579Z"},{"ID":18348,"Name":"C007 Jotunheim","Points":7803,"X":619,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901579Z"},{"ID":18349,"Name":"013","Points":9011,"X":600,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901579Z"},{"ID":18350,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90158Z"},{"ID":18351,"Name":"z 049","Points":10481,"X":582,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90158Z"},{"ID":18352,"Name":"*0033 Baraki","Points":9048,"X":618,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90158Z"},{"ID":18353,"Name":"VN Secre Swallowtail","Points":9615,"X":469,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901581Z"},{"ID":18354,"Name":"B 008","Points":10362,"X":596,"Y":410,"Continent":"K45","Bonus":5,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901581Z"},{"ID":18355,"Name":"Pobozowisko","Points":10971,"X":391,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901581Z"},{"ID":18356,"Name":"Wioska barbarzyƄska","Points":9835,"X":422,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901582Z"},{"ID":18358,"Name":"25 im Minakowa","Points":9809,"X":598,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901582Z"},{"ID":18359,"Name":"12. KrĂłl Regis Lucis Caelum CXII","Points":10495,"X":530,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901582Z"},{"ID":18360,"Name":"Westcoast.076","Points":10178,"X":391,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901582Z"},{"ID":18361,"Name":"Wioska barbarzyƄska","Points":10484,"X":629,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901583Z"},{"ID":18362,"Name":"#058.","Points":9735,"X":622,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901583Z"},{"ID":18363,"Name":"010 Wioska barbarzyƄska","Points":10178,"X":533,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901583Z"},{"ID":18364,"Name":"Pobozowisko","Points":10957,"X":392,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901583Z"},{"ID":18365,"Name":"A0094","Points":10362,"X":365,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901583Z"},{"ID":18366,"Name":"A READY","Points":10083,"X":601,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901584Z"},{"ID":18367,"Name":"Piwna 23","Points":9379,"X":621,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901584Z"},{"ID":18368,"Name":"Zeta Reticuli S3","Points":10079,"X":425,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901584Z"},{"ID":18369,"Name":"54. Wioska 54","Points":10003,"X":376,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901584Z"},{"ID":18371,"Name":"Westcoast.024","Points":10178,"X":396,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901585Z"},{"ID":18372,"Name":"006","Points":10285,"X":447,"Y":626,"Continent":"K64","Bonus":8,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901585Z"},{"ID":18373,"Name":"#0006","Points":10495,"X":545,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901585Z"},{"ID":18374,"Name":"010. Lyria","Points":10495,"X":566,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901585Z"},{"ID":18375,"Name":"Wioska barbarzyƄska","Points":10487,"X":618,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901586Z"},{"ID":18376,"Name":"Wioska","Points":10178,"X":374,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901586Z"},{"ID":18377,"Name":"0005 Kiko210","Points":10544,"X":426,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901586Z"},{"ID":18378,"Name":"MojeSzczytToTwĂłjDno","Points":9737,"X":531,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901586Z"},{"ID":18379,"Name":"Sony 911","Points":10211,"X":578,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901586Z"},{"ID":18380,"Name":"10. Wioska 10","Points":9584,"X":375,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901587Z"},{"ID":18381,"Name":"=016= Lewy nie trafia Karnego","Points":10238,"X":622,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901587Z"},{"ID":18382,"Name":"Pobozowisko","Points":10951,"X":406,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901587Z"},{"ID":18383,"Name":"Wioska barbarzyƄska","Points":9164,"X":564,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901587Z"},{"ID":18385,"Name":"Wioska barbarzyƄska","Points":9887,"X":375,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901588Z"},{"ID":18386,"Name":"003","Points":10252,"X":487,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901588Z"},{"ID":18387,"Name":"WE ARE READY!","Points":10019,"X":593,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901588Z"},{"ID":18389,"Name":"SSJ 036","Points":9761,"X":512,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901588Z"},{"ID":18390,"Name":"064 PotÄ™ĆŒny Dzban","Points":10479,"X":382,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901589Z"},{"ID":18391,"Name":"Konfederacja +","Points":9734,"X":456,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901589Z"},{"ID":18392,"Name":"13. Wioska 13","Points":9873,"X":373,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901589Z"},{"ID":18393,"Name":"035","Points":9860,"X":630,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901589Z"},{"ID":18394,"Name":"A0095","Points":10362,"X":365,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90159Z"},{"ID":18395,"Name":"#0039 Bagna","Points":10019,"X":494,"Y":549,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90159Z"},{"ID":18396,"Name":"006","Points":10211,"X":602,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90159Z"},{"ID":18398,"Name":"Konfederacja 8","Points":9692,"X":454,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90159Z"},{"ID":18399,"Name":"Ja sie nie bije .","Points":10495,"X":567,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90159Z"},{"ID":18401,"Name":"BoOmBaa..","Points":7980,"X":437,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901591Z"},{"ID":18402,"Name":"003Ɓatki","Points":9687,"X":456,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901591Z"},{"ID":18403,"Name":"005 B","Points":9711,"X":624,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901591Z"},{"ID":18404,"Name":"0001","Points":9993,"X":424,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901591Z"},{"ID":18405,"Name":"Zeta Reticuli S3","Points":10795,"X":423,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901592Z"},{"ID":18406,"Name":"s181eo32","Points":9883,"X":389,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901592Z"},{"ID":18407,"Name":"R010","Points":9676,"X":390,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901592Z"},{"ID":18408,"Name":"Wioska 3","Points":8168,"X":631,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901592Z"},{"ID":18409,"Name":"Gattacka","Points":9960,"X":609,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901593Z"},{"ID":18410,"Name":"K34 - [092] Before Land","Points":10016,"X":451,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901593Z"},{"ID":18411,"Name":"#0020","Points":10495,"X":545,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901593Z"},{"ID":18412,"Name":"0008 MzM","Points":9258,"X":624,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901593Z"},{"ID":18413,"Name":"[017]","Points":9809,"X":626,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901594Z"},{"ID":18414,"Name":"Taran","Points":9835,"X":551,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901594Z"},{"ID":18415,"Name":"024. Wioska barbarzyƄska","Points":10495,"X":572,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901594Z"},{"ID":18416,"Name":"South K35","Points":9809,"X":559,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901594Z"},{"ID":18417,"Name":"aaaa","Points":9899,"X":476,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901594Z"},{"ID":18418,"Name":"Ulu-mulu","Points":11678,"X":430,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901595Z"},{"ID":18419,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901595Z"},{"ID":18420,"Name":"F 001","Points":10290,"X":638,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901595Z"},{"ID":18422,"Name":"R002","Points":10019,"X":385,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901595Z"},{"ID":18423,"Name":"202","Points":6039,"X":637,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901596Z"},{"ID":18424,"Name":"011","Points":11106,"X":429,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901596Z"},{"ID":18425,"Name":"026. Alexandria","Points":9799,"X":624,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901596Z"},{"ID":18426,"Name":"#0014","Points":9761,"X":518,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901596Z"},{"ID":18427,"Name":"012","Points":10285,"X":443,"Y":624,"Continent":"K64","Bonus":7,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901597Z"},{"ID":18428,"Name":"Wioska Herosek751","Points":10495,"X":565,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901597Z"},{"ID":18429,"Name":"C014","Points":7279,"X":578,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901597Z"},{"ID":18430,"Name":"Nowa 15","Points":9824,"X":616,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901597Z"},{"ID":18431,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901597Z"},{"ID":18433,"Name":"SSJ 019","Points":9761,"X":507,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901598Z"},{"ID":18434,"Name":"033","Points":10836,"X":425,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901598Z"},{"ID":18435,"Name":"[015]","Points":9809,"X":629,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901598Z"},{"ID":18436,"Name":"0126","Points":9750,"X":436,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901598Z"},{"ID":18437,"Name":"BWioska barbarzyƄska","Points":10487,"X":622,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901599Z"},{"ID":18438,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":532,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901599Z"},{"ID":18439,"Name":"019 Osaka","Points":10495,"X":636,"Y":477,"Continent":"K46","Bonus":4,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901599Z"},{"ID":18440,"Name":"609|422 009 FRANKIA","Points":10083,"X":609,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901599Z"},{"ID":18441,"Name":"084. Wielkie GardƂo","Points":10845,"X":631,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9016Z"},{"ID":18442,"Name":"008 B","Points":9721,"X":625,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9016Z"},{"ID":18443,"Name":"029 Seonon","Points":10457,"X":620,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9016Z"},{"ID":18444,"Name":"Jednak wolę gofry","Points":10067,"X":487,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9016Z"},{"ID":18446,"Name":"052","Points":10247,"X":608,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901601Z"},{"ID":18447,"Name":"018","Points":2587,"X":632,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901601Z"},{"ID":18448,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901601Z"},{"ID":18449,"Name":"A12 Wioska barbarzyƄska","Points":10226,"X":466,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901601Z"},{"ID":18451,"Name":"Wioska barbarzyƄska","Points":10490,"X":624,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901602Z"},{"ID":18452,"Name":"027","Points":9860,"X":637,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901602Z"},{"ID":18453,"Name":"VN Nozel Silva","Points":9626,"X":467,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901602Z"},{"ID":18454,"Name":"Wioska barbarzyƄska","Points":10223,"X":560,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901602Z"},{"ID":18455,"Name":"Bagdad","Points":9976,"X":500,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901603Z"},{"ID":18456,"Name":"Wyngiel we wsi","Points":5223,"X":566,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901603Z"},{"ID":18458,"Name":"010","Points":10140,"X":497,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901603Z"},{"ID":18459,"Name":"057 OZDR","Points":10104,"X":460,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901603Z"},{"ID":18460,"Name":"A0294","Points":10362,"X":365,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901604Z"},{"ID":18461,"Name":"069","Points":6963,"X":434,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901604Z"},{"ID":18462,"Name":"VN Julius Novachrono","Points":9667,"X":468,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901604Z"},{"ID":18463,"Name":"004","Points":10285,"X":447,"Y":624,"Continent":"K64","Bonus":1,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901604Z"},{"ID":18464,"Name":"0023","Points":8311,"X":504,"Y":502,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901605Z"},{"ID":18465,"Name":"085.","Points":4560,"X":635,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901605Z"},{"ID":18466,"Name":"Wioska","Points":10178,"X":378,"Y":550,"Continent":"K53","Bonus":9,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901605Z"},{"ID":18467,"Name":"035","Points":6153,"X":632,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901606Z"},{"ID":18468,"Name":"046","Points":4601,"X":369,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901606Z"},{"ID":18469,"Name":"034","Points":5711,"X":364,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901606Z"},{"ID":18470,"Name":"05 im Jepiszewa","Points":7221,"X":593,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901607Z"},{"ID":18471,"Name":"007","Points":10243,"X":445,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901607Z"},{"ID":18472,"Name":"Wioska barbarzyƄska","Points":10478,"X":371,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901607Z"},{"ID":18473,"Name":"D001","Points":10495,"X":602,"Y":409,"Continent":"K46","Bonus":9,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901607Z"},{"ID":18475,"Name":"-055-","Points":3764,"X":384,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901608Z"},{"ID":18476,"Name":"W.01","Points":10178,"X":585,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901608Z"},{"ID":18477,"Name":"Kentin ufam Tobie","Points":10000,"X":374,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901608Z"},{"ID":18478,"Name":"A0239","Points":10362,"X":368,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901608Z"},{"ID":18479,"Name":"Sony 911","Points":10043,"X":572,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901609Z"},{"ID":18480,"Name":"A0110","Points":10362,"X":365,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901609Z"},{"ID":18481,"Name":"059 OZDR","Points":9902,"X":468,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901609Z"},{"ID":18482,"Name":"009 | PALESTINA","Points":9544,"X":632,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90161Z"},{"ID":18483,"Name":"0004 Wioska barbarzyƄska","Points":10544,"X":424,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90161Z"},{"ID":18484,"Name":"A READY","Points":10160,"X":592,"Y":400,"Continent":"K45","Bonus":7,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90161Z"},{"ID":18485,"Name":"082.","Points":4072,"X":633,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90161Z"},{"ID":18486,"Name":"Kentin ufam Tobie","Points":10000,"X":371,"Y":454,"Continent":"K43","Bonus":5,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901611Z"},{"ID":18487,"Name":"VN Constantine","Points":10043,"X":476,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901611Z"},{"ID":18488,"Name":"F 002","Points":10031,"X":635,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901612Z"},{"ID":18489,"Name":"011","Points":10160,"X":476,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901612Z"},{"ID":18490,"Name":"Jan 020 (8) K","Points":9488,"X":633,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901612Z"},{"ID":18491,"Name":"s181eo24","Points":9886,"X":397,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901613Z"},{"ID":18492,"Name":"018 Jak ja nie pije","Points":10495,"X":626,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901613Z"},{"ID":18493,"Name":"005","Points":10495,"X":555,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901613Z"},{"ID":18494,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":405,"Y":462,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901613Z"},{"ID":18495,"Name":"070 PotÄ™ĆŒny Dzban","Points":10487,"X":378,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901614Z"},{"ID":18496,"Name":"001 TuniosƂaw","Points":10481,"X":390,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901614Z"},{"ID":18497,"Name":"019","Points":9860,"X":628,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901614Z"},{"ID":18498,"Name":"0020 MzM","Points":9258,"X":624,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901614Z"},{"ID":18499,"Name":"K34 - [091] Before Land","Points":9924,"X":451,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901615Z"},{"ID":18500,"Name":"Ręcznik do zmiany","Points":10495,"X":384,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901615Z"},{"ID":18501,"Name":"Jednak wolę gofry","Points":10311,"X":497,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901615Z"},{"ID":18502,"Name":"063","Points":8090,"X":439,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901615Z"},{"ID":18503,"Name":"#0010","Points":10495,"X":549,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901616Z"},{"ID":18505,"Name":"002","Points":9761,"X":385,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901616Z"},{"ID":18507,"Name":"Wioska barbarzyƄska","Points":10481,"X":632,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901616Z"},{"ID":18508,"Name":"Pobozowisko","Points":10971,"X":406,"Y":593,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901616Z"},{"ID":18509,"Name":"047g","Points":9809,"X":371,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901616Z"},{"ID":18510,"Name":"ƚmieszkiii","Points":10495,"X":477,"Y":585,"Continent":"K54","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901617Z"},{"ID":18511,"Name":"048","Points":9809,"X":371,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901617Z"},{"ID":18512,"Name":"B004","Points":10495,"X":603,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901617Z"},{"ID":18513,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9989,"X":490,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901617Z"},{"ID":18514,"Name":"XXXV","Points":10495,"X":542,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901618Z"},{"ID":18515,"Name":"#0021","Points":10495,"X":545,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901618Z"},{"ID":18516,"Name":"Zeta Reticuli S2","Points":10887,"X":397,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901618Z"},{"ID":18517,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901618Z"},{"ID":18518,"Name":"027 Last Templar","Points":10301,"X":635,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901619Z"},{"ID":18519,"Name":"B002","Points":10495,"X":605,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901619Z"},{"ID":18520,"Name":"D007","Points":10495,"X":603,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901619Z"},{"ID":18521,"Name":"R013","Points":6377,"X":384,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901619Z"},{"ID":18522,"Name":"Szlachcic 011","Points":10311,"X":626,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90162Z"},{"ID":18523,"Name":"091.","Points":3346,"X":636,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90162Z"},{"ID":18524,"Name":"Kentin ufam Tobie","Points":10000,"X":380,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90162Z"},{"ID":18525,"Name":"-050-","Points":5757,"X":380,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90162Z"},{"ID":18526,"Name":"Kiedyƛ Wielki Wojownik","Points":9756,"X":392,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90162Z"},{"ID":18527,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":522,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901621Z"},{"ID":18528,"Name":"Deveste ufam Tobie","Points":10362,"X":433,"Y":618,"Continent":"K64","Bonus":7,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901621Z"},{"ID":18529,"Name":"Taran","Points":9379,"X":549,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901621Z"},{"ID":18530,"Name":"Jaaa","Points":10475,"X":589,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901621Z"},{"ID":18531,"Name":"R011","Points":7073,"X":388,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901622Z"},{"ID":18532,"Name":"Westcoast.080","Points":10178,"X":398,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901622Z"},{"ID":18533,"Name":"091. Morze Puste","Points":11678,"X":627,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901622Z"},{"ID":18534,"Name":"K44 x037","Points":5889,"X":402,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901622Z"},{"ID":18535,"Name":"LutĂłwko","Points":6001,"X":412,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901623Z"},{"ID":18537,"Name":"z 043","Points":10481,"X":580,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901623Z"},{"ID":18539,"Name":"#0024","Points":4273,"X":517,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901623Z"},{"ID":18540,"Name":"Taran","Points":5491,"X":546,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901623Z"},{"ID":18542,"Name":"075","Points":10311,"X":591,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901624Z"},{"ID":18543,"Name":"001","Points":10285,"X":446,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901624Z"},{"ID":18544,"Name":"Wioska 8","Points":5937,"X":635,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901624Z"},{"ID":18545,"Name":"009","Points":9979,"X":373,"Y":539,"Continent":"K53","Bonus":9,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901625Z"},{"ID":18547,"Name":"065 PotÄ™ĆŒny Dzban","Points":10481,"X":384,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901625Z"},{"ID":18548,"Name":"009","Points":3469,"X":387,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901625Z"},{"ID":18549,"Name":"016.","Points":9823,"X":564,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901625Z"},{"ID":18550,"Name":"Ave Why!","Points":9606,"X":443,"Y":620,"Continent":"K64","Bonus":1,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901626Z"},{"ID":18553,"Name":"A0217","Points":10362,"X":364,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901626Z"},{"ID":18554,"Name":"Kentin ufam Tobie","Points":10000,"X":387,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901626Z"},{"ID":18555,"Name":"Zeta Reticuli S2","Points":11417,"X":408,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901626Z"},{"ID":18556,"Name":"Pobozowisko","Points":9555,"X":407,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901627Z"},{"ID":18559,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8820,"X":542,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901627Z"},{"ID":18561,"Name":"017.","Points":10495,"X":574,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901627Z"},{"ID":18562,"Name":"047","Points":9795,"X":502,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901628Z"},{"ID":18563,"Name":"A24 Wioska barbarzyƄska","Points":10220,"X":457,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901628Z"},{"ID":18564,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9160,"X":488,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901628Z"},{"ID":18565,"Name":"Ave Why!","Points":9808,"X":450,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901628Z"},{"ID":18566,"Name":"Wioska 2","Points":7733,"X":635,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901629Z"},{"ID":18567,"Name":"056","Points":10495,"X":364,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901629Z"},{"ID":18568,"Name":"041","Points":10223,"X":608,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901629Z"},{"ID":18569,"Name":"Wioska barbarzyƄska","Points":10136,"X":372,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90163Z"},{"ID":18570,"Name":"011","Points":9189,"X":600,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90163Z"},{"ID":18572,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":530,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90163Z"},{"ID":18573,"Name":"yyyy","Points":10068,"X":497,"Y":364,"Continent":"K34","Bonus":2,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90163Z"},{"ID":18574,"Name":"Wioska lee-1","Points":11742,"X":434,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901631Z"},{"ID":18575,"Name":"085 KUZYNI mehehehe","Points":9899,"X":478,"Y":632,"Continent":"K64","Bonus":7,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901631Z"},{"ID":18576,"Name":"Konfederacja","Points":8835,"X":454,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901631Z"},{"ID":18577,"Name":"A13 Wioska barbarzyƄska","Points":10416,"X":462,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901632Z"},{"ID":18579,"Name":"032","Points":5700,"X":367,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901632Z"},{"ID":18580,"Name":"Taran","Points":9430,"X":554,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901632Z"},{"ID":18581,"Name":"032","Points":9860,"X":636,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901632Z"},{"ID":18582,"Name":"Ulu-mulu","Points":11086,"X":423,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901633Z"},{"ID":18583,"Name":"017 Ze mną wymiękƂeƛ?","Points":10481,"X":627,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901633Z"},{"ID":18584,"Name":"xx GW00","Points":9336,"X":394,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901633Z"},{"ID":18585,"Name":"Barba","Points":9209,"X":578,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901634Z"},{"ID":18586,"Name":"006","Points":9825,"X":521,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901634Z"},{"ID":18587,"Name":"Pobozowisko","Points":10955,"X":402,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901634Z"},{"ID":18588,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10001,"X":495,"Y":637,"Continent":"K64","Bonus":5,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901635Z"},{"ID":18589,"Name":"Kentin ufam Tobie","Points":10000,"X":373,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901635Z"},{"ID":18590,"Name":"aaaa","Points":9899,"X":478,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901635Z"},{"ID":18591,"Name":"A26 Wioska barbarzyƄska","Points":10226,"X":470,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901636Z"},{"ID":18592,"Name":"033 | PALESTINA","Points":9523,"X":631,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901636Z"},{"ID":18593,"Name":"Dab","Points":9761,"X":366,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901636Z"},{"ID":18594,"Name":"Wioska barbarzyƄska","Points":10345,"X":372,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901636Z"},{"ID":18595,"Name":"HORUS!","Points":9885,"X":525,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901637Z"},{"ID":18596,"Name":"172","Points":10311,"X":587,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901637Z"},{"ID":18597,"Name":"Wioska barbarzyƄska","Points":10478,"X":617,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901637Z"},{"ID":18598,"Name":"003 KTW","Points":10495,"X":624,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901637Z"},{"ID":18599,"Name":"0140","Points":10362,"X":430,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901638Z"},{"ID":18600,"Name":"aaaa","Points":10311,"X":481,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901638Z"},{"ID":18601,"Name":"002","Points":10144,"X":501,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901638Z"},{"ID":18602,"Name":"009","Points":10295,"X":447,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901638Z"},{"ID":18603,"Name":"614|423 005Legatusxi","Points":9899,"X":614,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901639Z"},{"ID":18604,"Name":"VN Mereoleona Vermillion","Points":9610,"X":466,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901639Z"},{"ID":18605,"Name":"Sparta_24","Points":9638,"X":494,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901639Z"},{"ID":18606,"Name":"124","Points":10268,"X":493,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901639Z"},{"ID":18607,"Name":"017","Points":3262,"X":633,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901639Z"},{"ID":18608,"Name":"Bronowice","Points":9976,"X":378,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90164Z"},{"ID":18609,"Name":"Wioska Paradoxus","Points":9549,"X":561,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90164Z"},{"ID":18610,"Name":"033","Points":10068,"X":443,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90164Z"},{"ID":18611,"Name":"Jaaa","Points":10479,"X":595,"Y":598,"Continent":"K55","Bonus":8,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90164Z"},{"ID":18612,"Name":"000","Points":10019,"X":450,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901641Z"},{"ID":18613,"Name":"020","Points":10019,"X":633,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901641Z"},{"ID":18614,"Name":"A005","Points":10354,"X":523,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901641Z"},{"ID":18615,"Name":"Jan Nie mĂłwili PƂn K","Points":9944,"X":634,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901641Z"},{"ID":18616,"Name":"SSJ 028","Points":9761,"X":516,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901642Z"},{"ID":18617,"Name":"0111","Points":9746,"X":434,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901642Z"},{"ID":18619,"Name":"079. Bezmiar PóƂnocy","Points":11678,"X":630,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901642Z"},{"ID":18620,"Name":"[0020]","Points":10495,"X":441,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901642Z"},{"ID":18622,"Name":"055","Points":9740,"X":629,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901643Z"},{"ID":18623,"Name":"VN Lohar","Points":10268,"X":454,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901643Z"},{"ID":18624,"Name":"044","Points":7984,"X":368,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901643Z"},{"ID":18625,"Name":"049","Points":9835,"X":444,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901643Z"},{"ID":18626,"Name":"005","Points":9757,"X":625,"Y":557,"Continent":"K56","Bonus":8,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901644Z"},{"ID":18627,"Name":"055","Points":10237,"X":474,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901644Z"},{"ID":18628,"Name":"Nowa 17","Points":9775,"X":618,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901644Z"},{"ID":18629,"Name":"025 na Ƃazarskim rejonie","Points":7789,"X":630,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901644Z"},{"ID":18630,"Name":"039 Brasil","Points":10495,"X":633,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901644Z"},{"ID":18631,"Name":"064","Points":10019,"X":440,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901645Z"},{"ID":18632,"Name":"047","Points":6896,"X":371,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901645Z"},{"ID":18633,"Name":"Nowa 20","Points":9824,"X":618,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901645Z"},{"ID":18634,"Name":"Bagdad","Points":11130,"X":427,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901645Z"},{"ID":18635,"Name":"PodziękowaƂ 1","Points":10290,"X":457,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901646Z"},{"ID":18636,"Name":"Wioska barbarzyƄska","Points":6551,"X":389,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901646Z"},{"ID":18637,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8998,"X":484,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901646Z"},{"ID":18638,"Name":"127","Points":10508,"X":491,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901646Z"},{"ID":18639,"Name":"Odrodzenie","Points":8632,"X":380,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901647Z"},{"ID":18640,"Name":"Wioska barbarzyƄska","Points":10479,"X":623,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901647Z"},{"ID":18641,"Name":"015","Points":5967,"X":374,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901647Z"},{"ID":18642,"Name":"014. Ja tu tylko zbieram PP","Points":9994,"X":511,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901648Z"},{"ID":18643,"Name":"*0015 Baraki","Points":10192,"X":618,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901648Z"},{"ID":18644,"Name":"#0019","Points":9761,"X":517,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901648Z"},{"ID":18645,"Name":"060","Points":9899,"X":445,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901648Z"},{"ID":18646,"Name":"Wioska barbarzyƄska","Points":10481,"X":623,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901649Z"},{"ID":18647,"Name":"*0021 Baraki","Points":10074,"X":621,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901649Z"},{"ID":18648,"Name":"z 047","Points":10495,"X":587,"Y":603,"Continent":"K65","Bonus":1,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901649Z"},{"ID":18649,"Name":"003 | PALESTINA","Points":9544,"X":631,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901649Z"},{"ID":18650,"Name":"0061","Points":10160,"X":561,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90165Z"},{"ID":18651,"Name":"A20 Wioska barbarzyƄska","Points":10218,"X":458,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90165Z"},{"ID":18652,"Name":"#0028","Points":10495,"X":553,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901651Z"},{"ID":18653,"Name":"004 VC danield83 @","Points":10068,"X":397,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901651Z"},{"ID":18654,"Name":"016 KTW","Points":10495,"X":623,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901651Z"},{"ID":18655,"Name":"A0150","Points":10362,"X":362,"Y":505,"Continent":"K53","Bonus":9,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901651Z"},{"ID":18656,"Name":"008","Points":9761,"X":626,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901652Z"},{"ID":18657,"Name":"056","Points":10237,"X":469,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901652Z"},{"ID":18658,"Name":".:036:. ƁOBUZIK","Points":10495,"X":559,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901652Z"},{"ID":18659,"Name":"K34 - [097] Before Land","Points":9924,"X":450,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901652Z"},{"ID":18660,"Name":"Ulu-mulu","Points":9417,"X":430,"Y":613,"Continent":"K64","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901653Z"},{"ID":18661,"Name":"004 | PALESTINA","Points":9346,"X":628,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901653Z"},{"ID":18662,"Name":"003","Points":9585,"X":387,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901653Z"},{"ID":18664,"Name":"~~008~~","Points":9819,"X":599,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901654Z"},{"ID":18665,"Name":"Jehu_Kingdom_37_","Points":9993,"X":625,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901654Z"},{"ID":18666,"Name":"Gattacka","Points":9607,"X":606,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901654Z"},{"ID":18667,"Name":"007","Points":5336,"X":390,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901655Z"},{"ID":18668,"Name":"007","Points":11130,"X":434,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901655Z"},{"ID":18669,"Name":"Pobozowisko","Points":8887,"X":412,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901655Z"},{"ID":18670,"Name":"RTS 2 .","Points":10495,"X":577,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901656Z"},{"ID":18671,"Name":"#008.507|496","Points":9735,"X":626,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901656Z"},{"ID":18672,"Name":"002 VC NIC TU NIE MA","Points":9204,"X":394,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901656Z"},{"ID":18673,"Name":"A0111","Points":10362,"X":368,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901656Z"},{"ID":18674,"Name":"G002","Points":9145,"X":576,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901657Z"},{"ID":18675,"Name":"#0023","Points":10495,"X":547,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901657Z"},{"ID":18676,"Name":"MojeSzczytToTwĂłjDno","Points":9899,"X":530,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901657Z"},{"ID":18677,"Name":"B003","Points":7949,"X":605,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901658Z"},{"ID":18678,"Name":"067","Points":6229,"X":493,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901658Z"},{"ID":18679,"Name":"[0053]","Points":10495,"X":413,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901658Z"},{"ID":18680,"Name":"Pobozowisko","Points":10952,"X":410,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901659Z"},{"ID":18681,"Name":"c ƛtyliwnia","Points":8466,"X":417,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901659Z"},{"ID":18682,"Name":"Pobozowisko","Points":10955,"X":390,"Y":582,"Continent":"K53","Bonus":6,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901659Z"},{"ID":18683,"Name":"Wioska barbarzyƄska","Points":10252,"X":488,"Y":507,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901659Z"},{"ID":18684,"Name":"D002","Points":10495,"X":604,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90166Z"},{"ID":18685,"Name":"A READY","Points":10259,"X":585,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90166Z"},{"ID":18686,"Name":"057 PotÄ™ĆŒny Dzban","Points":10479,"X":376,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90166Z"},{"ID":18687,"Name":"058 OZDR","Points":9462,"X":461,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.90166Z"},{"ID":18688,"Name":"Westcoast.066","Points":10178,"X":386,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901661Z"},{"ID":18689,"Name":"021 KTW","Points":10495,"X":629,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901661Z"},{"ID":18690,"Name":"[013]","Points":9809,"X":636,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901661Z"},{"ID":18691,"Name":"B.034","Points":9798,"X":639,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901661Z"},{"ID":18692,"Name":"10 Ebe ebe","Points":9751,"X":601,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901662Z"},{"ID":18693,"Name":"Ave Why!","Points":9842,"X":452,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901662Z"},{"ID":18694,"Name":"kathare","Points":10362,"X":553,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901662Z"},{"ID":18695,"Name":"0013","Points":10211,"X":591,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901662Z"},{"ID":18696,"Name":"Zeta Reticuli S","Points":10728,"X":408,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901662Z"},{"ID":18697,"Name":"DOM 1","Points":9835,"X":560,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901663Z"},{"ID":18698,"Name":"A010","Points":9808,"X":472,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901663Z"},{"ID":18699,"Name":"Westcoast.086","Points":10178,"X":385,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901663Z"},{"ID":18700,"Name":"115","Points":10311,"X":578,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901663Z"},{"ID":18701,"Name":"B031","Points":9835,"X":634,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901664Z"},{"ID":18702,"Name":"FB002","Points":9824,"X":633,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901664Z"},{"ID":18703,"Name":"B 009","Points":10362,"X":597,"Y":403,"Continent":"K45","Bonus":3,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901664Z"},{"ID":18704,"Name":"Deveste ufam Tobie","Points":9484,"X":432,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901664Z"},{"ID":18705,"Name":"A0299","Points":10362,"X":363,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901665Z"},{"ID":18706,"Name":"021 Roma Victrix","Points":4879,"X":640,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901665Z"},{"ID":18708,"Name":"054 Kuzyn skonfiskowaƂ Meszno","Points":10495,"X":381,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901665Z"},{"ID":18709,"Name":"065","Points":10311,"X":592,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901665Z"},{"ID":18710,"Name":"066","Points":10311,"X":570,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901666Z"},{"ID":18711,"Name":"R-7","Points":9013,"X":556,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901666Z"},{"ID":18712,"Name":"#0092 ZalutyƄ","Points":8754,"X":475,"Y":552,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901666Z"},{"ID":18713,"Name":"Pobozowisko","Points":9055,"X":400,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901666Z"},{"ID":18714,"Name":"Westcoast.056","Points":10178,"X":392,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901666Z"},{"ID":18715,"Name":"005,","Points":6161,"X":488,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901667Z"},{"ID":18716,"Name":"Wioska PogĂłrze 3","Points":10311,"X":631,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.901667Z"},{"ID":18717,"Name":"A-010","Points":10168,"X":409,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932335Z"},{"ID":18718,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":521,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932336Z"},{"ID":18719,"Name":"30000","Points":11242,"X":494,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932337Z"},{"ID":18720,"Name":"Jednak wolę gofry","Points":8595,"X":488,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932337Z"},{"ID":18722,"Name":"z 055","Points":10217,"X":586,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932338Z"},{"ID":18723,"Name":"007","Points":10211,"X":601,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932339Z"},{"ID":18724,"Name":"019.","Points":9913,"X":567,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93234Z"},{"ID":18725,"Name":"0013","Points":9987,"X":435,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932341Z"},{"ID":18726,"Name":"002","Points":10285,"X":446,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932341Z"},{"ID":18727,"Name":"mklo","Points":10362,"X":498,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":8654156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932342Z"},{"ID":18728,"Name":"aaaa","Points":9899,"X":475,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932343Z"},{"ID":18729,"Name":"031","Points":10229,"X":632,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932344Z"},{"ID":18730,"Name":"A14 Wioska barbarzyƄska","Points":10237,"X":461,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932344Z"},{"ID":18731,"Name":"37 im OrƂowa","Points":8071,"X":597,"Y":406,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932345Z"},{"ID":18732,"Name":"!0010","Points":12154,"X":623,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932346Z"},{"ID":18733,"Name":"019","Points":9835,"X":609,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932347Z"},{"ID":18734,"Name":"Pobozowisko","Points":10951,"X":405,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932347Z"},{"ID":18735,"Name":"029 Lenka","Points":9809,"X":633,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932348Z"},{"ID":18736,"Name":"psycha sitting","Points":10146,"X":417,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932349Z"},{"ID":18737,"Name":"Wioska barbarzyƄska","Points":10476,"X":371,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93235Z"},{"ID":18738,"Name":"Wioska barbarzyƄska","Points":4166,"X":526,"Y":480,"Continent":"K45","Bonus":0,"PlayerID":699355601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932351Z"},{"ID":18739,"Name":"#031.515|502","Points":9735,"X":634,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932351Z"},{"ID":18740,"Name":"613|423 Wioska barbarzyƄska03","Points":9644,"X":613,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932352Z"},{"ID":18741,"Name":"610|426 Wioska barbarzyƄska16","Points":9392,"X":610,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932353Z"},{"ID":18742,"Name":"W.09","Points":10232,"X":584,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932354Z"},{"ID":18743,"Name":"Bulle","Points":9110,"X":578,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932354Z"},{"ID":18744,"Name":"Kentin ufam Tobie","Points":10000,"X":373,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932355Z"},{"ID":18745,"Name":"0000005%","Points":10160,"X":425,"Y":594,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932356Z"},{"ID":18746,"Name":"016 Winterfell","Points":10329,"X":617,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932357Z"},{"ID":18747,"Name":"Ave Why!","Points":9814,"X":450,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932357Z"},{"ID":18748,"Name":".Krakers. 002","Points":3919,"X":365,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932358Z"},{"ID":18749,"Name":"005","Points":10311,"X":420,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932359Z"},{"ID":18750,"Name":"A15 Wioska barbarzyƄska","Points":10226,"X":461,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93236Z"},{"ID":18751,"Name":"Kentin ufam Tobie","Points":10019,"X":372,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93236Z"},{"ID":18752,"Name":"Szlachcic","Points":9681,"X":492,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932361Z"},{"ID":18753,"Name":"029","Points":9860,"X":636,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932362Z"},{"ID":18754,"Name":"005","Points":9372,"X":486,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":8369778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932363Z"},{"ID":18755,"Name":"67. Wioska 67","Points":6960,"X":379,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932363Z"},{"ID":18756,"Name":"Westcoast.044","Points":10178,"X":380,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932364Z"},{"ID":18757,"Name":"0011","Points":10211,"X":571,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932365Z"},{"ID":18758,"Name":"614|424 004 Wioska Kapitana :)","Points":9878,"X":614,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932366Z"},{"ID":18759,"Name":"Wioska barbarzyƄska","Points":10220,"X":562,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932366Z"},{"ID":18760,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932367Z"},{"ID":18761,"Name":"A READY","Points":10259,"X":589,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932368Z"},{"ID":18762,"Name":"Pobozowisko","Points":9589,"X":399,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932369Z"},{"ID":18763,"Name":"*0017 Baraki","Points":9913,"X":612,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932369Z"},{"ID":18764,"Name":"c Komarno 001","Points":7501,"X":411,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93237Z"},{"ID":18765,"Name":"E 004","Points":9880,"X":595,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932371Z"},{"ID":18767,"Name":"[0046]","Points":10495,"X":412,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932372Z"},{"ID":18768,"Name":"FKG 01-04","Points":9835,"X":418,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932372Z"},{"ID":18769,"Name":"021","Points":9796,"X":628,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932373Z"},{"ID":18770,"Name":"Twierdza","Points":6414,"X":371,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932374Z"},{"ID":18771,"Name":"#0014","Points":10495,"X":547,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932374Z"},{"ID":18772,"Name":"VN William Vangeance","Points":9563,"X":467,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932375Z"},{"ID":18773,"Name":"001","Points":10311,"X":455,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932376Z"},{"ID":18774,"Name":".006.Jababing","Points":10223,"X":560,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932377Z"},{"ID":18775,"Name":"006 KTW","Points":10495,"X":621,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932377Z"},{"ID":18776,"Name":"001 KTW","Points":10495,"X":625,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932378Z"},{"ID":18777,"Name":"Monetio","Points":10495,"X":453,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932379Z"},{"ID":18779,"Name":"A0216","Points":10362,"X":366,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93238Z"},{"ID":18780,"Name":"Village","Points":12154,"X":500,"Y":598,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932381Z"},{"ID":18781,"Name":"Pobozowisko","Points":10971,"X":396,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932381Z"},{"ID":18782,"Name":"118","Points":10495,"X":490,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932382Z"},{"ID":18783,"Name":"080","Points":9060,"X":436,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932383Z"},{"ID":18784,"Name":"Deveste ufam Tobie","Points":9092,"X":435,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932384Z"},{"ID":18785,"Name":"A32","Points":11550,"X":467,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932384Z"},{"ID":18786,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":528,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932385Z"},{"ID":18787,"Name":"025","Points":9825,"X":474,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932386Z"},{"ID":18788,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9395,"X":483,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932387Z"},{"ID":18789,"Name":"003","Points":9761,"X":387,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932388Z"},{"ID":18790,"Name":"002 KTW","Points":10495,"X":627,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932389Z"},{"ID":18791,"Name":"Ulu-mulu","Points":11678,"X":422,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932389Z"},{"ID":18792,"Name":"nie zesraj się","Points":2517,"X":635,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":8812550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93239Z"},{"ID":18793,"Name":"Wioska barbarzyƄska","Points":9918,"X":529,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932391Z"},{"ID":18794,"Name":"[0077].....","Points":10495,"X":415,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932392Z"},{"ID":18795,"Name":"036","Points":10311,"X":573,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932392Z"},{"ID":18796,"Name":"013","Points":10297,"X":447,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932393Z"},{"ID":18798,"Name":"Wioska 6","Points":3086,"X":383,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":699343887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932394Z"},{"ID":18800,"Name":"BoOmBaa..","Points":5717,"X":443,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932395Z"},{"ID":18801,"Name":"043 PoznaƄ","Points":10495,"X":627,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932396Z"},{"ID":18802,"Name":"Osada karczownikĂłw .","Points":10495,"X":570,"Y":615,"Continent":"K65","Bonus":1,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932397Z"},{"ID":18803,"Name":"#006.505|491","Points":9735,"X":624,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932397Z"},{"ID":18806,"Name":"071","Points":7920,"X":365,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932398Z"},{"ID":18807,"Name":"034","Points":10560,"X":425,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932399Z"},{"ID":18808,"Name":"027.","Points":9819,"X":639,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9324Z"},{"ID":18809,"Name":"A0172","Points":10362,"X":369,"Y":470,"Continent":"K43","Bonus":4,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932401Z"},{"ID":18810,"Name":"- 004 -","Points":10000,"X":551,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932402Z"},{"ID":18811,"Name":"0132","Points":10083,"X":447,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932402Z"},{"ID":18812,"Name":"024","Points":7504,"X":480,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932403Z"},{"ID":18813,"Name":"016","Points":9965,"X":441,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932404Z"},{"ID":18814,"Name":"SSJ 069","Points":9339,"X":506,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932405Z"},{"ID":18815,"Name":"057","Points":10237,"X":470,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932405Z"},{"ID":18816,"Name":"011 - Mroczna Osada","Points":10616,"X":625,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932406Z"},{"ID":18817,"Name":"[0001]","Points":9904,"X":558,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932407Z"},{"ID":18818,"Name":"Zeta Reticuli S2","Points":10997,"X":396,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932408Z"},{"ID":18819,"Name":"001 B","Points":9741,"X":622,"Y":445,"Continent":"K46","Bonus":2,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932408Z"},{"ID":18820,"Name":"Wioska barbarzyƄska","Points":10728,"X":367,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932409Z"},{"ID":18821,"Name":"Zagroda 30 Resztę Burzymy","Points":8780,"X":453,"Y":371,"Continent":"K34","Bonus":1,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93241Z"},{"ID":18822,"Name":"Deveste ufam Tobie","Points":7608,"X":430,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932411Z"},{"ID":18823,"Name":"033","Points":6214,"X":366,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932411Z"},{"ID":18824,"Name":"095","Points":9170,"X":444,"Y":622,"Continent":"K64","Bonus":7,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932412Z"},{"ID":18825,"Name":"Za rzeka","Points":10252,"X":363,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932413Z"},{"ID":18826,"Name":"kathare","Points":10123,"X":557,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932414Z"},{"ID":18828,"Name":"121","Points":9470,"X":493,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932415Z"},{"ID":18829,"Name":"014 | PALESTINA","Points":9544,"X":632,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932415Z"},{"ID":18830,"Name":"Pobozowisko","Points":7700,"X":401,"Y":592,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932416Z"},{"ID":18831,"Name":"Jan 021-12 PƂn K","Points":9534,"X":635,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932417Z"},{"ID":18832,"Name":"002 | PALESTINA","Points":9529,"X":629,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932418Z"},{"ID":18833,"Name":"K34 - [044] Before Land","Points":9783,"X":459,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932418Z"},{"ID":18834,"Name":"048","Points":9694,"X":607,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932419Z"},{"ID":18835,"Name":"A06 Wioska barbarzyƄska","Points":10228,"X":465,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93242Z"},{"ID":18836,"Name":"066 PotÄ™ĆŒny Dzban","Points":10487,"X":383,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932421Z"},{"ID":18837,"Name":"Jan 08_#3 K","Points":9494,"X":634,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932422Z"},{"ID":18838,"Name":"Taran","Points":4771,"X":544,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932422Z"},{"ID":18839,"Name":"0036 Wioska Jastrząb z NBP","Points":10654,"X":417,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932423Z"},{"ID":18840,"Name":"SSJ 026","Points":9761,"X":502,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932424Z"},{"ID":18841,"Name":"07. Wioska 7","Points":10019,"X":373,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932425Z"},{"ID":18842,"Name":"Wioska barbarzyƄska","Points":9994,"X":507,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932426Z"},{"ID":18843,"Name":"0015","Points":10168,"X":566,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932426Z"},{"ID":18844,"Name":"609|420 008 FRANKIA","Points":9989,"X":609,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932427Z"},{"ID":18845,"Name":"Wioska barbarzyƄska","Points":9994,"X":510,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932428Z"},{"ID":18846,"Name":"Boss 04","Points":10474,"X":370,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932429Z"},{"ID":18847,"Name":"082","Points":5309,"X":366,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93243Z"},{"ID":18848,"Name":"003.","Points":9345,"X":635,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93243Z"},{"ID":18849,"Name":"14. Wioska 14","Points":9950,"X":373,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932431Z"},{"ID":18850,"Name":"024.","Points":9818,"X":634,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932432Z"},{"ID":18851,"Name":"R005","Points":5736,"X":386,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932433Z"},{"ID":18852,"Name":"002.","Points":10011,"X":638,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932433Z"},{"ID":18853,"Name":"011","Points":10211,"X":448,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932434Z"},{"ID":18854,"Name":"Pobozowisko","Points":10952,"X":400,"Y":594,"Continent":"K54","Bonus":5,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932435Z"},{"ID":18855,"Name":"0142","Points":6572,"X":429,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932436Z"},{"ID":18856,"Name":"049","Points":10090,"X":608,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932437Z"},{"ID":18857,"Name":"#0039","Points":10495,"X":554,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932437Z"},{"ID":18858,"Name":"*020*","Points":9165,"X":635,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932438Z"},{"ID":18859,"Name":"Ulu-mulu","Points":7982,"X":427,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932439Z"},{"ID":18860,"Name":"Jednak wolę gofry","Points":10311,"X":496,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93244Z"},{"ID":18861,"Name":"A0073","Points":10362,"X":365,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932441Z"},{"ID":18862,"Name":"A0289","Points":10362,"X":366,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932441Z"},{"ID":18863,"Name":"mklo","Points":10338,"X":497,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932442Z"},{"ID":18864,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":521,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932443Z"},{"ID":18865,"Name":"Sony 911","Points":10206,"X":575,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932444Z"},{"ID":18866,"Name":"- 334 - RR","Points":9552,"X":587,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932445Z"},{"ID":18867,"Name":"Wioska barbarzyƄska 1","Points":10487,"X":371,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932445Z"},{"ID":18868,"Name":"VN Rill Boismortier","Points":9637,"X":467,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932446Z"},{"ID":18869,"Name":"052","Points":9993,"X":369,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932447Z"},{"ID":18870,"Name":"Ulu-mulu","Points":8045,"X":428,"Y":615,"Continent":"K64","Bonus":7,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932448Z"},{"ID":18871,"Name":"Pobozowisko","Points":10971,"X":396,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932448Z"},{"ID":18872,"Name":"Wioska barbarzyƄska","Points":10620,"X":632,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932449Z"},{"ID":18873,"Name":"VN Gaius Marius","Points":10055,"X":440,"Y":381,"Continent":"K34","Bonus":9,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93245Z"},{"ID":18874,"Name":"127.","Points":10728,"X":509,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932451Z"},{"ID":18875,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9415,"X":489,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932452Z"},{"ID":18877,"Name":"Taran","Points":9379,"X":553,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932453Z"},{"ID":18878,"Name":"034","Points":10160,"X":631,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932453Z"},{"ID":18879,"Name":"Wioska barbarzyƄska","Points":10221,"X":561,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932455Z"},{"ID":18880,"Name":"020 KTW","Points":10495,"X":630,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932455Z"},{"ID":18881,"Name":"Westcoast.050","Points":10178,"X":380,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932456Z"},{"ID":18882,"Name":"0341","Points":10387,"X":497,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932457Z"},{"ID":18883,"Name":"0045","Points":10019,"X":561,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932458Z"},{"ID":18884,"Name":"Wioska barbarzyƄska","Points":10217,"X":561,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932459Z"},{"ID":18885,"Name":"073 KUZYNI mehehehe","Points":10247,"X":480,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932459Z"},{"ID":18886,"Name":"0065","Points":10311,"X":443,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93246Z"},{"ID":18887,"Name":"014","Points":9335,"X":613,"Y":580,"Continent":"K56","Bonus":3,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932461Z"},{"ID":18888,"Name":"-023-","Points":9189,"X":396,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932462Z"},{"ID":18889,"Name":"034","Points":9860,"X":632,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932463Z"},{"ID":18890,"Name":"B009","Points":10495,"X":600,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932464Z"},{"ID":18891,"Name":"A0180","Points":10362,"X":367,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932465Z"},{"ID":18892,"Name":"[018]","Points":9809,"X":626,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932466Z"},{"ID":18893,"Name":"Wioska barbarzyƄska","Points":10218,"X":562,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932466Z"},{"ID":18894,"Name":"BoOmBaa..tu","Points":9177,"X":437,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932468Z"},{"ID":18895,"Name":"008","Points":10211,"X":600,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932468Z"},{"ID":18896,"Name":"Gattacka","Points":9742,"X":609,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932469Z"},{"ID":18898,"Name":"A0112","Points":10362,"X":368,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93247Z"},{"ID":18899,"Name":"Wioska 5","Points":3086,"X":383,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":699343887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932471Z"},{"ID":18900,"Name":"VN Langris Vaude","Points":9667,"X":461,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932472Z"},{"ID":18901,"Name":"089. Rhenus","Points":8284,"X":618,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932472Z"},{"ID":18902,"Name":"[0021]","Points":10495,"X":451,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932473Z"},{"ID":18903,"Name":"Jehu_Kingdom_44","Points":8114,"X":631,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932474Z"},{"ID":18904,"Name":"021","Points":10139,"X":504,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932475Z"},{"ID":18905,"Name":"039 | PALESTINA","Points":5976,"X":635,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932475Z"},{"ID":18906,"Name":"054","Points":10495,"X":362,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932476Z"},{"ID":18907,"Name":"Pobozowisko","Points":10971,"X":391,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932477Z"},{"ID":18908,"Name":"067 PotÄ™ĆŒny Dzban","Points":10484,"X":380,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932478Z"},{"ID":18909,"Name":"0168","Points":10083,"X":551,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932479Z"},{"ID":18910,"Name":"-011-","Points":9802,"X":392,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93248Z"},{"ID":18911,"Name":"Jaaa","Points":10027,"X":587,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93248Z"},{"ID":18913,"Name":"W.05","Points":10362,"X":583,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932481Z"},{"ID":18914,"Name":"Pobozowisko","Points":8583,"X":383,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932482Z"},{"ID":18915,"Name":"66. Wioska 66","Points":5224,"X":385,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932483Z"},{"ID":18916,"Name":"Jan 02_v K","Points":9730,"X":639,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932483Z"},{"ID":18917,"Name":"Twierdza 6","Points":10617,"X":634,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932484Z"},{"ID":18918,"Name":"Taran","Points":9379,"X":553,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932485Z"},{"ID":18919,"Name":"Pomoc","Points":5139,"X":384,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932486Z"},{"ID":18920,"Name":"na blisko .","Points":10362,"X":568,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932487Z"},{"ID":18921,"Name":"Taran","Points":9566,"X":551,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932487Z"},{"ID":18922,"Name":"Darma","Points":9835,"X":418,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932488Z"},{"ID":18923,"Name":"058","Points":10237,"X":471,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932489Z"},{"ID":18924,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93249Z"},{"ID":18925,"Name":"c imperium","Points":9824,"X":417,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93249Z"},{"ID":18926,"Name":"Wioska 2","Points":3251,"X":383,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":699343887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932491Z"},{"ID":18927,"Name":"Nowa 08","Points":9827,"X":621,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932492Z"},{"ID":18928,"Name":"A16 Wioska barbarzyƄska","Points":10226,"X":460,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932493Z"},{"ID":18929,"Name":"=042= Wioska barbarzyƄska","Points":7910,"X":622,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932494Z"},{"ID":18930,"Name":"Wioska barbarzyƄska","Points":10620,"X":619,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932495Z"},{"ID":18931,"Name":"002","Points":10311,"X":485,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932496Z"},{"ID":18932,"Name":"Pobozowisko","Points":10786,"X":393,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932496Z"},{"ID":18933,"Name":"Gattacka","Points":9744,"X":608,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932497Z"},{"ID":18934,"Name":"016","Points":10636,"X":583,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932498Z"},{"ID":18935,"Name":"P032 Adachi","Points":9744,"X":636,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932499Z"},{"ID":18936,"Name":"051","Points":8579,"X":370,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9325Z"},{"ID":18937,"Name":"Taran","Points":4443,"X":545,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932501Z"},{"ID":18938,"Name":"004","Points":10311,"X":416,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932502Z"},{"ID":18939,"Name":"Kentin ufam Tobie","Points":10000,"X":375,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932502Z"},{"ID":18940,"Name":"Konfederacja +","Points":10001,"X":454,"Y":375,"Continent":"K34","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932503Z"},{"ID":18941,"Name":"147 Oj Mareczku coƛ za duĆŒo cyfr","Points":8551,"X":380,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932504Z"},{"ID":18942,"Name":"152 MIKOX 042","Points":9662,"X":590,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932505Z"},{"ID":18943,"Name":"029 Wwwwwweeeeekkkkkkkk","Points":10281,"X":636,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932505Z"},{"ID":18944,"Name":"San Piero a Sieve","Points":9153,"X":369,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932506Z"},{"ID":18945,"Name":"123","Points":10311,"X":574,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932507Z"},{"ID":18946,"Name":"059","Points":10237,"X":474,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932508Z"},{"ID":18947,"Name":"=018= Polska 0:0 Meksyk","Points":8212,"X":620,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932509Z"},{"ID":18948,"Name":"BoOmBaa..","Points":10495,"X":441,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932509Z"},{"ID":18949,"Name":"074","Points":5050,"X":367,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93251Z"},{"ID":18950,"Name":"Wioska","Points":10178,"X":370,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932511Z"},{"ID":18951,"Name":"52. Wioska 52","Points":10000,"X":376,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932512Z"},{"ID":18952,"Name":"Pobozowisko","Points":8953,"X":412,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932512Z"},{"ID":18953,"Name":"0007 Wioska barbarzyƄska","Points":10544,"X":425,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932513Z"},{"ID":18955,"Name":"Brat447","Points":10478,"X":367,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932514Z"},{"ID":18956,"Name":"A0074","Points":10362,"X":367,"Y":484,"Continent":"K43","Bonus":9,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932515Z"},{"ID":18957,"Name":"021","Points":9874,"X":630,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932516Z"},{"ID":18958,"Name":"Wioska barbarzyƄska","Points":2374,"X":610,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7915966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932516Z"},{"ID":18959,"Name":"030","Points":10636,"X":555,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932517Z"},{"ID":18960,"Name":"151 Ale mnie gƂówka boli","Points":8923,"X":377,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932518Z"},{"ID":18961,"Name":"Pobozowisko","Points":7328,"X":411,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932519Z"},{"ID":18962,"Name":"Taran","Points":9379,"X":558,"Y":377,"Continent":"K35","Bonus":2,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932519Z"},{"ID":18963,"Name":"152 Ale mnie gƂówka boli","Points":10303,"X":379,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93252Z"},{"ID":18964,"Name":"c rzeĆșnia","Points":10431,"X":416,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932521Z"},{"ID":18965,"Name":"Ave Why!","Points":9861,"X":451,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932522Z"},{"ID":18966,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8822,"X":540,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932523Z"},{"ID":18967,"Name":"ave why!","Points":10311,"X":454,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932523Z"},{"ID":18968,"Name":"Nowa 14","Points":9824,"X":616,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932524Z"},{"ID":18969,"Name":"006 Wioska kolekjarek","Points":6632,"X":566,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932525Z"},{"ID":18970,"Name":"Zeta Reticuli S","Points":11188,"X":407,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932526Z"},{"ID":18971,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":520,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932526Z"},{"ID":18972,"Name":"0016. C -","Points":4321,"X":623,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932527Z"},{"ID":18973,"Name":"028","Points":10019,"X":635,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932528Z"},{"ID":18974,"Name":"Pobozowisko","Points":10954,"X":406,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932529Z"},{"ID":18975,"Name":"045","Points":10237,"X":605,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93253Z"},{"ID":18976,"Name":"Konfederacja 8","Points":9690,"X":453,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932531Z"},{"ID":18977,"Name":"Master Carry1","Points":9466,"X":509,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932531Z"},{"ID":18978,"Name":"Taran","Points":9761,"X":556,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932532Z"},{"ID":18979,"Name":"Kentin ufam Tobie","Points":10000,"X":385,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932533Z"},{"ID":18980,"Name":"115","Points":10495,"X":488,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932534Z"},{"ID":18981,"Name":"A25 Wioska barbarzyƄska","Points":10220,"X":459,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932534Z"},{"ID":18982,"Name":"nic","Points":9707,"X":573,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932535Z"},{"ID":18983,"Name":"#0016","Points":10495,"X":546,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932536Z"},{"ID":18984,"Name":"HORUS+","Points":9981,"X":525,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932537Z"},{"ID":18985,"Name":"614|427 000 LegatusXI","Points":10014,"X":614,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932538Z"},{"ID":18986,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10001,"X":494,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932538Z"},{"ID":18987,"Name":"072","Points":9809,"X":369,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932539Z"},{"ID":18988,"Name":"075 Lisie gĂłry","Points":10481,"X":381,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93254Z"},{"ID":18989,"Name":"~~035~~","Points":9742,"X":594,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932541Z"},{"ID":18990,"Name":"Taran","Points":9492,"X":554,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932541Z"},{"ID":18991,"Name":"#0013","Points":10495,"X":548,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932542Z"},{"ID":18992,"Name":".Krakers. 007","Points":1672,"X":365,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932543Z"},{"ID":18993,"Name":"055","Points":10221,"X":606,"Y":584,"Continent":"K56","Bonus":1,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932544Z"},{"ID":18994,"Name":"041- Mroczna Osada","Points":12154,"X":622,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932545Z"},{"ID":18995,"Name":"Deveste ufam Tobie","Points":10083,"X":430,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932545Z"},{"ID":18996,"Name":"002","Points":8049,"X":387,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932546Z"},{"ID":18997,"Name":"004","Points":9761,"X":617,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932547Z"},{"ID":18998,"Name":"052 Kuzyn skonfiskowaƂ Bull Run","Points":10495,"X":382,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932548Z"},{"ID":19000,"Name":"SSJ 011","Points":9761,"X":510,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932548Z"},{"ID":19001,"Name":"005 TASUKA MARAKA","Points":9811,"X":538,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932549Z"},{"ID":19002,"Name":"016","Points":9814,"X":629,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93255Z"},{"ID":19003,"Name":"KIELBA 048","Points":10495,"X":461,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932551Z"},{"ID":19004,"Name":"Konfederacja","Points":8635,"X":448,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932551Z"},{"ID":19005,"Name":"Belzebub","Points":8569,"X":384,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932552Z"},{"ID":19006,"Name":"Gattacka","Points":9719,"X":611,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932553Z"},{"ID":19007,"Name":"-052-","Points":5737,"X":383,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932554Z"},{"ID":19008,"Name":"Wioska","Points":10178,"X":373,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932555Z"},{"ID":19009,"Name":"~~043~~","Points":9488,"X":591,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932555Z"},{"ID":19010,"Name":"FA002","Points":9835,"X":640,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932556Z"},{"ID":19011,"Name":"018 - A Coruna","Points":10019,"X":636,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932557Z"},{"ID":19012,"Name":"004 KTW","Points":10495,"X":629,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932558Z"},{"ID":19013,"Name":"119","Points":10495,"X":483,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932558Z"},{"ID":19014,"Name":"sony911","Points":10223,"X":580,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932559Z"},{"ID":19015,"Name":"OgĂłrkowy baron","Points":9835,"X":402,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93256Z"},{"ID":19016,"Name":"0038 Zero zaskoczenia","Points":10787,"X":418,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932561Z"},{"ID":19017,"Name":"MojeSzczytToTwĂłjDno","Points":10481,"X":523,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932562Z"},{"ID":19018,"Name":"Wioska Vexijio","Points":7704,"X":381,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932562Z"},{"ID":19019,"Name":"#064.","Points":4340,"X":628,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932563Z"},{"ID":19020,"Name":"060","Points":10237,"X":470,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932564Z"},{"ID":19021,"Name":"A READY","Points":10247,"X":590,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932565Z"},{"ID":19022,"Name":"026 nie jest kolorowo","Points":9738,"X":637,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932565Z"},{"ID":19023,"Name":"Ć»uraw","Points":9889,"X":624,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":849095778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932566Z"},{"ID":19024,"Name":"0002","Points":10432,"X":481,"Y":637,"Continent":"K64","Bonus":4,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932567Z"},{"ID":19025,"Name":"034 Phoenix","Points":9761,"X":448,"Y":461,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932568Z"},{"ID":19026,"Name":"Za miedza","Points":9797,"X":362,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932569Z"},{"ID":19027,"Name":"069","Points":10495,"X":596,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932569Z"},{"ID":19028,"Name":"c 00445 !!!","Points":9899,"X":414,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93257Z"},{"ID":19029,"Name":"Wioska barbarzyƄska","Points":10075,"X":368,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932571Z"},{"ID":19030,"Name":"021","Points":9835,"X":611,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932572Z"},{"ID":19031,"Name":"K34 - [090] Before Land","Points":9162,"X":450,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932572Z"},{"ID":19032,"Name":"023 Ƃaaaa naebaem się w hu11111","Points":10295,"X":634,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932573Z"},{"ID":19033,"Name":"A006","Points":10038,"X":521,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932574Z"},{"ID":19034,"Name":"040","Points":5711,"X":367,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932575Z"},{"ID":19036,"Name":"Wioska17","Points":5249,"X":633,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932575Z"},{"ID":19037,"Name":"#065.","Points":7213,"X":628,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932576Z"},{"ID":19038,"Name":"#0009","Points":10495,"X":549,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932577Z"},{"ID":19039,"Name":"PYRLANDIA 002 S","Points":10160,"X":570,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932578Z"},{"ID":19040,"Name":"036. Ader","Points":9600,"X":629,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932578Z"},{"ID":19041,"Name":"A0077","Points":10362,"X":366,"Y":469,"Continent":"K43","Bonus":3,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932579Z"},{"ID":19042,"Name":"Jaaa","Points":10487,"X":586,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93258Z"},{"ID":19043,"Name":"0068","Points":8020,"X":636,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932581Z"},{"ID":19044,"Name":"037","Points":9948,"X":638,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932581Z"},{"ID":19046,"Name":"0048","Points":10160,"X":557,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932582Z"},{"ID":19047,"Name":"xx 003. ONI","Points":10233,"X":400,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932583Z"},{"ID":19048,"Name":"A READY","Points":10160,"X":590,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932584Z"},{"ID":19049,"Name":"Westcoast.090","Points":10178,"X":387,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932584Z"},{"ID":19050,"Name":"Wioska barbarzyƄska","Points":9994,"X":515,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932585Z"},{"ID":19051,"Name":"Jednak wolę gofry","Points":10311,"X":493,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932586Z"},{"ID":19052,"Name":"SINGED X SZEF","Points":9994,"X":495,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932587Z"},{"ID":19053,"Name":"A0181","Points":10362,"X":361,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932587Z"},{"ID":19054,"Name":"C009 South Lake","Points":9664,"X":620,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932588Z"},{"ID":19055,"Name":"Wioska barbarzyƄska","Points":10484,"X":366,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932589Z"},{"ID":19056,"Name":"058","Points":7409,"X":433,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93259Z"},{"ID":19057,"Name":"007 Bez nazwy","Points":10495,"X":382,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93259Z"},{"ID":19058,"Name":"Wioska barbarzyƄska","Points":10068,"X":529,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932591Z"},{"ID":19059,"Name":"Pobozowisko","Points":10414,"X":409,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932592Z"},{"ID":19060,"Name":"Westcoast.020","Points":10178,"X":385,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932593Z"},{"ID":19061,"Name":"Pobozowisko","Points":10954,"X":410,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932594Z"},{"ID":19062,"Name":"Kentin ufam Tobie","Points":10000,"X":374,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932594Z"},{"ID":19063,"Name":"057","Points":10281,"X":364,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932595Z"},{"ID":19064,"Name":"Pobozowisko","Points":5979,"X":399,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932596Z"},{"ID":19065,"Name":"Wioska barbarzyƄska","Points":10487,"X":631,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932597Z"},{"ID":19066,"Name":"Konfederacja +","Points":9728,"X":449,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932598Z"},{"ID":19067,"Name":"#0013","Points":9761,"X":516,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932598Z"},{"ID":19068,"Name":"107 Stop","Points":8970,"X":605,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932599Z"},{"ID":19069,"Name":"006","Points":10479,"X":366,"Y":539,"Continent":"K53","Bonus":8,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9326Z"},{"ID":19070,"Name":"VN Shizuku Murasaki","Points":9448,"X":470,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932601Z"},{"ID":19071,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":514,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932601Z"},{"ID":19072,"Name":"s3 Osada koczownikĂłw","Points":10068,"X":396,"Y":414,"Continent":"K43","Bonus":1,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932602Z"},{"ID":19074,"Name":"072 Największy Dzban","Points":10484,"X":377,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932603Z"},{"ID":19075,"Name":"008","Points":9809,"X":361,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932604Z"},{"ID":19076,"Name":"022 hyhyhy kuhw@","Points":9936,"X":631,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932604Z"},{"ID":19077,"Name":"*INTERTWINED**","Points":9711,"X":507,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932605Z"},{"ID":19078,"Name":"A018","Points":9802,"X":472,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932606Z"},{"ID":19079,"Name":"R-09","Points":9013,"X":547,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932607Z"},{"ID":19080,"Name":"D003","Points":10495,"X":603,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932607Z"},{"ID":19081,"Name":"c ub","Points":5990,"X":418,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932608Z"},{"ID":19082,"Name":"Wioska barbarzyƄska","Points":10595,"X":577,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932609Z"},{"ID":19083,"Name":"VN Alex Louis Armstrong","Points":9626,"X":464,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93261Z"},{"ID":19084,"Name":"009 KTW","Points":10495,"X":631,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93261Z"},{"ID":19086,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9965,"X":494,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932611Z"},{"ID":19087,"Name":"Kentin ufam Tobie","Points":10000,"X":370,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932612Z"},{"ID":19088,"Name":"Zeta Reticuli S3","Points":10997,"X":424,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932613Z"},{"ID":19089,"Name":"A0215","Points":10362,"X":363,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932614Z"},{"ID":19090,"Name":"A0224","Points":10362,"X":364,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932614Z"},{"ID":19091,"Name":"Wioska barbarzyƄska","Points":10487,"X":632,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932615Z"},{"ID":19092,"Name":"Bagdad","Points":10311,"X":430,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932616Z"},{"ID":19093,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":533,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932617Z"},{"ID":19094,"Name":"Brat447","Points":6005,"X":367,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932617Z"},{"ID":19095,"Name":"Ave Why!","Points":9065,"X":449,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932618Z"},{"ID":19096,"Name":"VN Rose","Points":9969,"X":463,"Y":369,"Continent":"K34","Bonus":1,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932619Z"},{"ID":19097,"Name":"0109","Points":9761,"X":435,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93262Z"},{"ID":19098,"Name":"Zeta Reticuli S","Points":10887,"X":400,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932621Z"},{"ID":19099,"Name":"013 Wioska barbarzyƄska","Points":9976,"X":538,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932621Z"},{"ID":19100,"Name":"22 XXX","Points":971,"X":632,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699377151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932622Z"},{"ID":19101,"Name":"A0293","Points":10362,"X":362,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932623Z"},{"ID":19102,"Name":"055. F64D","Points":10218,"X":484,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932624Z"},{"ID":19103,"Name":"Sprzedam Drewno","Points":6974,"X":452,"Y":370,"Continent":"K34","Bonus":1,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932625Z"},{"ID":19104,"Name":"[012]","Points":9809,"X":635,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932625Z"},{"ID":19105,"Name":"A05 Wioska barbarzyƄska","Points":10217,"X":464,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932626Z"},{"ID":19106,"Name":"A0209","Points":10362,"X":366,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932627Z"},{"ID":19107,"Name":"Brat447","Points":10134,"X":366,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932628Z"},{"ID":19108,"Name":"0023","Points":10168,"X":600,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932628Z"},{"ID":19109,"Name":"Wioska barbarzyƄska","Points":10821,"X":631,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932629Z"},{"ID":19110,"Name":"[021]","Points":9809,"X":636,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93263Z"},{"ID":19111,"Name":"Manypolis","Points":11606,"X":384,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932631Z"},{"ID":19112,"Name":"113","Points":10495,"X":489,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932631Z"},{"ID":19114,"Name":"A17 Wioska barbarzyƄska","Points":10247,"X":462,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932632Z"},{"ID":19116,"Name":"Wioska barbarzyƄska","Points":6278,"X":387,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932633Z"},{"ID":19117,"Name":"060","Points":9167,"X":589,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932634Z"},{"ID":19118,"Name":"c Robcio 80002","Points":7817,"X":410,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932634Z"},{"ID":19119,"Name":"020 - Vitoria","Points":10019,"X":638,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932635Z"},{"ID":19120,"Name":"Bagdad","Points":10040,"X":499,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932636Z"},{"ID":19121,"Name":"Pobozowisko","Points":8545,"X":411,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932637Z"},{"ID":19122,"Name":"BETI 002","Points":1700,"X":457,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932637Z"},{"ID":19123,"Name":"RTS 7","Points":10362,"X":574,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932638Z"},{"ID":19125,"Name":"Lord Lord Franek .#206","Points":10362,"X":512,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932639Z"},{"ID":19126,"Name":"K34 - [076] Before Land","Points":10126,"X":450,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93264Z"},{"ID":19127,"Name":"028 lenka","Points":10412,"X":637,"Y":500,"Continent":"K56","Bonus":4,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932641Z"},{"ID":19129,"Name":"Zeta Reticuli S","Points":10887,"X":407,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932642Z"},{"ID":19130,"Name":"Westcoast.084","Points":10178,"X":389,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932642Z"},{"ID":19131,"Name":"Ow Konfederacja","Points":9938,"X":599,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932643Z"},{"ID":19132,"Name":"018","Points":9924,"X":633,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932644Z"},{"ID":19133,"Name":"A0246","Points":10362,"X":370,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932645Z"},{"ID":19134,"Name":"A0096","Points":10362,"X":360,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932645Z"},{"ID":19135,"Name":"aaaa","Points":9899,"X":477,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932646Z"},{"ID":19136,"Name":"012 - Cordoba","Points":10019,"X":633,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932647Z"},{"ID":19137,"Name":"Wioska barbarzyƄska","Points":7021,"X":394,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932648Z"},{"ID":19138,"Name":"004","Points":10211,"X":600,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932649Z"},{"ID":19139,"Name":"Wioska niszczyciel1123456","Points":10068,"X":528,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932649Z"},{"ID":19140,"Name":"A0097","Points":10362,"X":366,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93265Z"},{"ID":19141,"Name":"030.","Points":10103,"X":638,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932651Z"},{"ID":19142,"Name":"0015 Wioska barbarzyƄska","Points":6726,"X":424,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932652Z"},{"ID":19143,"Name":".Wioska barbarzyƄska","Points":6181,"X":623,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932653Z"},{"ID":19144,"Name":"0015","Points":9966,"X":430,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932653Z"},{"ID":19145,"Name":"Gattacka","Points":9741,"X":611,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932654Z"},{"ID":19146,"Name":"Pobozowisko","Points":8836,"X":396,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932655Z"},{"ID":19147,"Name":"Pobozowisko","Points":10955,"X":393,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932656Z"},{"ID":19148,"Name":".Krakers. 005","Points":3498,"X":364,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932656Z"},{"ID":19149,"Name":"xkikutx","Points":10068,"X":519,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932657Z"},{"ID":19150,"Name":"0407","Points":8886,"X":542,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932658Z"},{"ID":19151,"Name":"0066","Points":10083,"X":560,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932659Z"},{"ID":19152,"Name":"012 Wioska barbarzyƄska","Points":10068,"X":538,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932659Z"},{"ID":19153,"Name":"#007.503|476","Points":9735,"X":622,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93266Z"},{"ID":19154,"Name":"010","Points":10211,"X":600,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932661Z"},{"ID":19155,"Name":"Wioska h","Points":10237,"X":563,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932662Z"},{"ID":19156,"Name":"0040","Points":9825,"X":615,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932663Z"},{"ID":19157,"Name":"0368","Points":9516,"X":561,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932664Z"},{"ID":19158,"Name":"Wioska barbarzyƄska","Points":9723,"X":362,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932664Z"},{"ID":19159,"Name":"SSJ 027","Points":9761,"X":513,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932665Z"},{"ID":19160,"Name":"057","Points":9978,"X":608,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932666Z"},{"ID":19162,"Name":"SSJ 022","Points":9761,"X":505,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932667Z"},{"ID":19163,"Name":"Jednak wolę gofry","Points":10178,"X":492,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932667Z"},{"ID":19164,"Name":"Pobozowisko","Points":9683,"X":397,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932668Z"},{"ID":19165,"Name":"#061.","Points":9735,"X":620,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932669Z"},{"ID":19166,"Name":"013","Points":11130,"X":429,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93267Z"},{"ID":19167,"Name":"[0092]","Points":10495,"X":417,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93267Z"},{"ID":19168,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932671Z"},{"ID":19169,"Name":"A0098","Points":10362,"X":366,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932672Z"},{"ID":19171,"Name":"[003]","Points":10530,"X":461,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932673Z"},{"ID":19172,"Name":"023 KTW","Points":10495,"X":631,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932673Z"},{"ID":19173,"Name":"019","Points":10139,"X":500,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932674Z"},{"ID":19174,"Name":"Ulu-mulu","Points":9609,"X":423,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932675Z"},{"ID":19175,"Name":"067","Points":10311,"X":552,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932676Z"},{"ID":19176,"Name":"SSJ 030","Points":9761,"X":506,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932676Z"},{"ID":19177,"Name":"0374","Points":10495,"X":564,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932677Z"},{"ID":19178,"Name":"006","Points":9566,"X":388,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932678Z"},{"ID":19179,"Name":"A019","Points":9825,"X":471,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932679Z"},{"ID":19180,"Name":"Jednak wolę gofry","Points":10108,"X":498,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93268Z"},{"ID":19181,"Name":"Pobozowisko","Points":10952,"X":388,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93268Z"},{"ID":19182,"Name":"SSJ 042","Points":9761,"X":508,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932681Z"},{"ID":19183,"Name":"c masarniaqqqqqqqqqqqqqqqqqqqqqq","Points":8248,"X":418,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932682Z"},{"ID":19184,"Name":"Myk i do kieszonki","Points":9609,"X":367,"Y":542,"Continent":"K53","Bonus":1,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932683Z"},{"ID":19185,"Name":"Pobozowisko","Points":8250,"X":406,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932683Z"},{"ID":19186,"Name":"0063","Points":9978,"X":460,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932684Z"},{"ID":19187,"Name":"c 00449","Points":10078,"X":412,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932685Z"},{"ID":19188,"Name":"007 Legio I Noricorum","Points":5934,"X":638,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932686Z"},{"ID":19189,"Name":"A0205","Points":10362,"X":365,"Y":480,"Continent":"K43","Bonus":2,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932687Z"},{"ID":19190,"Name":"Kentin ufam Tobie","Points":9860,"X":373,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932687Z"},{"ID":19191,"Name":"0044","Points":10083,"X":536,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932688Z"},{"ID":19192,"Name":"B 002","Points":10362,"X":596,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932689Z"},{"ID":19193,"Name":"c mordownia","Points":7936,"X":416,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93269Z"},{"ID":19194,"Name":"028","Points":10311,"X":593,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93269Z"},{"ID":19195,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":537,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932691Z"},{"ID":19196,"Name":"Kentin ufam Tobie","Points":10000,"X":372,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932692Z"},{"ID":19197,"Name":"Wioska Apfel","Points":1776,"X":601,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849080260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932693Z"},{"ID":19198,"Name":"070","Points":7782,"X":367,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932693Z"},{"ID":19199,"Name":"Wioska barbarzyƄska","Points":10487,"X":630,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932694Z"},{"ID":19200,"Name":"071 PotÄ™ĆŒny Dzban","Points":10479,"X":378,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932695Z"},{"ID":19201,"Name":"A0113","Points":10362,"X":366,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932696Z"},{"ID":19202,"Name":"kathare","Points":9867,"X":554,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932697Z"},{"ID":19203,"Name":"A0182","Points":10362,"X":359,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932697Z"},{"ID":19204,"Name":"001.","Points":9950,"X":639,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932698Z"},{"ID":19205,"Name":"016.","Points":10495,"X":571,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932699Z"},{"ID":19206,"Name":"Wioska barbarzyƄska","Points":9978,"X":394,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932699Z"},{"ID":19207,"Name":"041","Points":5692,"X":364,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9327Z"},{"ID":19208,"Name":"0005","Points":10252,"X":565,"Y":620,"Continent":"K65","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932701Z"},{"ID":19209,"Name":"Wioska barbarzyƄska","Points":10476,"X":638,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932702Z"},{"ID":19210,"Name":"Nowa 12","Points":9821,"X":621,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932702Z"},{"ID":19211,"Name":"052","Points":9761,"X":411,"Y":486,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932703Z"},{"ID":19212,"Name":"FB004","Points":9818,"X":640,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932704Z"},{"ID":19214,"Name":"040","Points":9809,"X":364,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932705Z"},{"ID":19215,"Name":"013","Points":3154,"X":389,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932705Z"},{"ID":19216,"Name":"Taran","Points":10019,"X":555,"Y":377,"Continent":"K35","Bonus":4,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932706Z"},{"ID":19217,"Name":"009","Points":10495,"X":603,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932707Z"},{"ID":19218,"Name":"B.035","Points":10000,"X":640,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932708Z"},{"ID":19219,"Name":"Pobozowisko","Points":10665,"X":396,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932708Z"},{"ID":19220,"Name":"A READY","Points":10495,"X":589,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932709Z"},{"ID":19221,"Name":"B005","Points":8045,"X":603,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93271Z"},{"ID":19222,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":521,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932711Z"},{"ID":19223,"Name":"037","Points":10311,"X":590,"Y":401,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932711Z"},{"ID":19224,"Name":"Nowa 13","Points":9821,"X":618,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932712Z"},{"ID":19226,"Name":"Wioska barbarzyƄska","Points":9223,"X":503,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932713Z"},{"ID":19227,"Name":"0244","Points":10019,"X":535,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932714Z"},{"ID":19228,"Name":"054","Points":5626,"X":366,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932714Z"},{"ID":19229,"Name":"039","Points":9809,"X":364,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932715Z"},{"ID":19230,"Name":"Jehu_Kingdom_43","Points":9208,"X":634,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932716Z"},{"ID":19231,"Name":"064 OZDR","Points":8137,"X":458,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932717Z"},{"ID":19232,"Name":"56. Wioska 56","Points":10019,"X":376,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932717Z"},{"ID":19233,"Name":"Ave Why!","Points":7836,"X":440,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932718Z"},{"ID":19234,"Name":"~~033~~","Points":9494,"X":595,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932719Z"},{"ID":19235,"Name":"Aqueduct 1","Points":10140,"X":528,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93272Z"},{"ID":19236,"Name":"0023 MzM","Points":9258,"X":630,"Y":553,"Continent":"K56","Bonus":7,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932721Z"},{"ID":19237,"Name":"Wioska barbarzyƄska","Points":9994,"X":507,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932721Z"},{"ID":19238,"Name":"011 B","Points":9811,"X":627,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932722Z"},{"ID":19239,"Name":"Darmowe przeprowadzki","Points":9058,"X":436,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932723Z"},{"ID":19240,"Name":"Wioska barbarzyƄska","Points":10475,"X":369,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932724Z"},{"ID":19241,"Name":"Westcoast.095","Points":10178,"X":392,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932724Z"},{"ID":19242,"Name":"010 | PALESTINA","Points":9544,"X":631,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932725Z"},{"ID":19244,"Name":"061","Points":10237,"X":481,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932726Z"},{"ID":19245,"Name":"A0099","Points":10362,"X":362,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932727Z"},{"ID":19246,"Name":"038. Salmantica","Points":9661,"X":632,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932727Z"},{"ID":19247,"Name":"Myk i do kieszonki","Points":9799,"X":361,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932728Z"},{"ID":19248,"Name":"0373","Points":10485,"X":563,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932729Z"},{"ID":19249,"Name":"*0030 Baraki","Points":10195,"X":620,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93273Z"},{"ID":19250,"Name":"K34 - [108] Before Land","Points":10259,"X":451,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93273Z"},{"ID":19252,"Name":"068","Points":9809,"X":361,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932731Z"},{"ID":19253,"Name":"014","Points":4034,"X":389,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932732Z"},{"ID":19254,"Name":"021 - Badalona","Points":10019,"X":639,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932733Z"},{"ID":19255,"Name":"HORUS+","Points":9883,"X":524,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932734Z"},{"ID":19256,"Name":"Wioska barbarzyƄska","Points":9994,"X":510,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932734Z"},{"ID":19257,"Name":"0001 Wioska Koloalu","Points":10544,"X":425,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932735Z"},{"ID":19258,"Name":"Wioska","Points":10178,"X":373,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932736Z"},{"ID":19259,"Name":"015 | PALESTINA","Points":8764,"X":633,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932737Z"},{"ID":19260,"Name":"::: C :::","Points":4302,"X":365,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932737Z"},{"ID":19262,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":420,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932738Z"},{"ID":19263,"Name":"088. Messambria","Points":8480,"X":619,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932739Z"},{"ID":19264,"Name":"Kentin ufam Tobie","Points":10000,"X":374,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932739Z"},{"ID":19265,"Name":"029 Wioska barbarzyƄska","Points":10068,"X":540,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93274Z"},{"ID":19266,"Name":"Jan 09 Wuking K","Points":9436,"X":634,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932741Z"},{"ID":19267,"Name":"PRO8L3M","Points":10311,"X":412,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932742Z"},{"ID":19268,"Name":"Wioska barbarzyƄska","Points":9835,"X":420,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932742Z"},{"ID":19269,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9860,"X":494,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932743Z"},{"ID":19271,"Name":"Wioska Szyderczy Promil 2","Points":9343,"X":572,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932744Z"},{"ID":19272,"Name":"Wioska","Points":3081,"X":369,"Y":552,"Continent":"K53","Bonus":1,"PlayerID":2443031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932745Z"},{"ID":19273,"Name":"015","Points":9809,"X":369,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932745Z"},{"ID":19274,"Name":"079","Points":10580,"X":482,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932746Z"},{"ID":19275,"Name":"Gattacka","Points":10158,"X":609,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932747Z"},{"ID":19276,"Name":"019 KTW","Points":10495,"X":632,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932748Z"},{"ID":19277,"Name":"Wioska barbarzyƄska","Points":9387,"X":365,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932748Z"},{"ID":19278,"Name":"R007","Points":6943,"X":388,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932749Z"},{"ID":19279,"Name":"061","Points":6931,"X":438,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93275Z"},{"ID":19280,"Name":"7.62 mm","Points":1275,"X":377,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932751Z"},{"ID":19281,"Name":"009 Legio I Italica","Points":4372,"X":639,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932752Z"},{"ID":19282,"Name":"Wioska barbarzyƄska","Points":10217,"X":563,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932752Z"},{"ID":19283,"Name":"Jednak wolę gofry","Points":9835,"X":495,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932753Z"},{"ID":19284,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":520,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932754Z"},{"ID":19285,"Name":"Kentin ufam Tobie","Points":10000,"X":372,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932755Z"},{"ID":19286,"Name":"A0100","Points":10362,"X":361,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932755Z"},{"ID":19287,"Name":"A07 Wioska barbarzyƄska","Points":10221,"X":464,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932756Z"},{"ID":19288,"Name":"074. Helgrind","Points":10160,"X":624,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932757Z"},{"ID":19289,"Name":"032","Points":9237,"X":367,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932758Z"},{"ID":19290,"Name":"BARBA","Points":2602,"X":639,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":698613394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932758Z"},{"ID":19291,"Name":"051 Vallenar","Points":10569,"X":610,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932759Z"},{"ID":19292,"Name":"040","Points":10221,"X":609,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93276Z"},{"ID":19293,"Name":"Konfederacja","Points":9684,"X":455,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932761Z"},{"ID":19294,"Name":"Bagdad","Points":11130,"X":426,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932761Z"},{"ID":19295,"Name":"Wioska barbarzyƄska","Points":10478,"X":636,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932762Z"},{"ID":19297,"Name":"036 OZDR","Points":9825,"X":473,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932763Z"},{"ID":19298,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":531,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932764Z"},{"ID":19299,"Name":"Deveste ufam Tobie","Points":8899,"X":429,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932764Z"},{"ID":19300,"Name":"OgĂłrkowy baron","Points":9835,"X":406,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932765Z"},{"ID":19301,"Name":"Wioska Kuba Takine","Points":10559,"X":423,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932766Z"},{"ID":19302,"Name":"Dziupla .","Points":10362,"X":571,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932767Z"},{"ID":19303,"Name":"Pobozowisko","Points":8304,"X":396,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932768Z"},{"ID":19304,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":528,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932768Z"},{"ID":19305,"Name":"026","Points":9825,"X":472,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932769Z"},{"ID":19306,"Name":"Deveste ufam Tobie","Points":6948,"X":433,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93277Z"},{"ID":19308,"Name":"sony911","Points":10211,"X":580,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93277Z"},{"ID":19309,"Name":"Ave Why!","Points":8041,"X":448,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932771Z"},{"ID":19310,"Name":"Molinia coerulea","Points":9933,"X":495,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932772Z"},{"ID":19312,"Name":"036.","Points":7994,"X":639,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932773Z"},{"ID":19313,"Name":"Nowa 24","Points":9891,"X":614,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932774Z"},{"ID":19314,"Name":"*0034 Baraki","Points":9908,"X":619,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932774Z"},{"ID":19315,"Name":"028.","Points":9821,"X":639,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932775Z"},{"ID":19316,"Name":"A01 Plebania","Points":10475,"X":464,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932776Z"},{"ID":19317,"Name":"Wioska barbarzyƄska","Points":10495,"X":634,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932777Z"},{"ID":19318,"Name":"SSJ 070","Points":8431,"X":504,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932777Z"},{"ID":19319,"Name":"0059","Points":9955,"X":454,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932778Z"},{"ID":19320,"Name":"!Inferno","Points":10365,"X":508,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932779Z"},{"ID":19322,"Name":"Horyzont zdarzeƄ","Points":10019,"X":527,"Y":542,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93278Z"},{"ID":19323,"Name":"Taran","Points":10130,"X":555,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93278Z"},{"ID":19324,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10001,"X":493,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932781Z"},{"ID":19326,"Name":"D009","Points":10495,"X":598,"Y":408,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932782Z"},{"ID":19327,"Name":"yyyy","Points":10028,"X":496,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932783Z"},{"ID":19328,"Name":"Pobozowisko","Points":10355,"X":383,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932784Z"},{"ID":19329,"Name":"Brat447","Points":10134,"X":369,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932784Z"},{"ID":19330,"Name":"015 - Santa Cruz de Tenerife","Points":10019,"X":636,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932785Z"},{"ID":19331,"Name":"Kentin ufam Tobie","Points":10000,"X":372,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932786Z"},{"ID":19332,"Name":"Jednak wolę gofry","Points":10311,"X":498,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932787Z"},{"ID":19333,"Name":"025","Points":9809,"X":364,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932788Z"},{"ID":19334,"Name":".007.Alvaro","Points":10226,"X":559,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932789Z"},{"ID":19337,"Name":"President s Office","Points":11074,"X":524,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932789Z"},{"ID":19338,"Name":"011 KTW","Points":10495,"X":633,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93279Z"},{"ID":19339,"Name":"034. Mamucium","Points":9609,"X":628,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932791Z"},{"ID":19340,"Name":"VN Ging Freecss","Points":9933,"X":497,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932792Z"},{"ID":19341,"Name":"C 023","Points":6685,"X":582,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932792Z"},{"ID":19342,"Name":"Brat447","Points":3024,"X":366,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932793Z"},{"ID":19343,"Name":"WE ARE READY!","Points":9240,"X":596,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932794Z"},{"ID":19344,"Name":"Monetki","Points":10292,"X":477,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932795Z"},{"ID":19345,"Name":"068 PotÄ™ĆŒny Dzban","Points":10481,"X":378,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932795Z"},{"ID":19346,"Name":"002. Wioska barbarzyƄska","Points":8775,"X":391,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932796Z"},{"ID":19347,"Name":"Pobozowisko","Points":10957,"X":401,"Y":599,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932797Z"},{"ID":19348,"Name":"Ulu-mulu","Points":9531,"X":415,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932798Z"},{"ID":19349,"Name":"067","Points":9809,"X":360,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932798Z"},{"ID":19350,"Name":"016","Points":9809,"X":363,"Y":530,"Continent":"K53","Bonus":7,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932799Z"},{"ID":19351,"Name":"MoĆŒe coƛ pogram?","Points":9809,"X":506,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9328Z"},{"ID":19352,"Name":"061","Points":9384,"X":586,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932801Z"},{"ID":19353,"Name":"036","Points":10638,"X":425,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932801Z"},{"ID":19354,"Name":"Monetki","Points":10294,"X":473,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932802Z"},{"ID":19355,"Name":"Ow Konfederacja","Points":9976,"X":600,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932803Z"},{"ID":19356,"Name":"[0103]","Points":10495,"X":410,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932804Z"},{"ID":19357,"Name":"a moĆŒe off ? :)","Points":10104,"X":605,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932804Z"},{"ID":19358,"Name":"A02","Points":10226,"X":466,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932805Z"},{"ID":19359,"Name":"Konfederacja","Points":10874,"X":448,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932806Z"},{"ID":19360,"Name":"008","Points":8387,"X":624,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932807Z"},{"ID":19361,"Name":"Kentin ufam Tobie","Points":10000,"X":374,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932808Z"},{"ID":19362,"Name":"090.","Points":4837,"X":634,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932808Z"},{"ID":19363,"Name":"K34 - [018] Before Land","Points":10259,"X":452,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932809Z"},{"ID":19364,"Name":"B007","Points":6196,"X":601,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93281Z"},{"ID":19365,"Name":"0054","Points":10067,"X":444,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932811Z"},{"ID":19366,"Name":"#0011","Points":9761,"X":515,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932811Z"},{"ID":19367,"Name":"29. Wioska 29","Points":9472,"X":372,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932812Z"},{"ID":19368,"Name":"Kentin ufam Tobie","Points":10000,"X":374,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932813Z"},{"ID":19369,"Name":"020","Points":9860,"X":636,"Y":533,"Continent":"K56","Bonus":3,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932814Z"},{"ID":19370,"Name":"Ulu-mulu","Points":3576,"X":420,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932814Z"},{"ID":19371,"Name":"#0041","Points":10495,"X":545,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932815Z"},{"ID":19372,"Name":"0199","Points":10495,"X":453,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932816Z"},{"ID":19373,"Name":"MojeSzczytToTwĂłjDno","Points":10490,"X":531,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932817Z"},{"ID":19374,"Name":"A30 MARUDER","Points":10197,"X":464,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932817Z"},{"ID":19375,"Name":"R004","Points":8193,"X":384,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932818Z"},{"ID":19377,"Name":"0127","Points":8559,"X":436,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932819Z"},{"ID":19378,"Name":"018","Points":10221,"X":600,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932819Z"},{"ID":19379,"Name":"Wioska barbarzyƄska","Points":9994,"X":511,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93282Z"},{"ID":19380,"Name":"-003-","Points":10158,"X":393,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932821Z"},{"ID":19381,"Name":"Dzisiaj trening .","Points":10495,"X":570,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932822Z"},{"ID":19382,"Name":"Kentin ufam Tobie","Points":10000,"X":379,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932823Z"},{"ID":19383,"Name":"0370","Points":10495,"X":562,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932824Z"},{"ID":19384,"Name":"Horyzont zdarzeƄ","Points":10019,"X":532,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932824Z"},{"ID":19385,"Name":"sas","Points":10019,"X":559,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932825Z"},{"ID":19386,"Name":"No to hetman","Points":10795,"X":368,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932826Z"},{"ID":19387,"Name":"071","Points":6280,"X":437,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932827Z"},{"ID":19388,"Name":"037 Nadindel","Points":10083,"X":625,"Y":451,"Continent":"K46","Bonus":3,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932828Z"},{"ID":19389,"Name":"028. Tentyra","Points":10295,"X":626,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932828Z"},{"ID":19390,"Name":"Wioska barbarzyƄska","Points":9835,"X":419,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932829Z"},{"ID":19391,"Name":"=031= Wioska barbarzyƄska","Points":8190,"X":624,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93283Z"},{"ID":19392,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":8075,"X":421,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932831Z"},{"ID":19393,"Name":"15. Wioska 15","Points":10064,"X":371,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932831Z"},{"ID":19394,"Name":"A0101","Points":10362,"X":364,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932832Z"},{"ID":19395,"Name":"A0229","Points":10362,"X":367,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932833Z"},{"ID":19396,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":513,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932834Z"},{"ID":19397,"Name":"055","Points":4981,"X":366,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932835Z"},{"ID":19398,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932835Z"},{"ID":19399,"Name":"[B]_[204] Dejv.oldplyr","Points":5915,"X":432,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932836Z"},{"ID":19400,"Name":"c piekarnia","Points":9213,"X":418,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932837Z"},{"ID":19401,"Name":"Wioska (036)","Points":4975,"X":635,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932838Z"},{"ID":19402,"Name":"Kentin ufam Tobie","Points":7085,"X":370,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932839Z"},{"ID":19403,"Name":"034","Points":9809,"X":367,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932839Z"},{"ID":19404,"Name":"015","Points":3516,"X":389,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93284Z"},{"ID":19405,"Name":"062","Points":10237,"X":469,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932841Z"},{"ID":19406,"Name":"090. Toletum","Points":9182,"X":617,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932842Z"},{"ID":19407,"Name":"VN Cao Cao","Points":10096,"X":462,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932843Z"},{"ID":19408,"Name":"030 181","Points":7589,"X":360,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932843Z"},{"ID":19409,"Name":"Szlachcic PóƂnoc 002","Points":10311,"X":637,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932844Z"},{"ID":19411,"Name":"Ave Why!","Points":8134,"X":464,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932845Z"},{"ID":19412,"Name":"kathare","Points":10192,"X":556,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932846Z"},{"ID":19413,"Name":"A22 Wioska barbarzyƄska","Points":10220,"X":456,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932846Z"},{"ID":19414,"Name":".Wioska barbarzyƄska","Points":5241,"X":623,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932847Z"},{"ID":19415,"Name":"Wioska barbarzyƄska","Points":10495,"X":636,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932848Z"},{"ID":19416,"Name":"K34 - [006] Before Land","Points":10126,"X":444,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932849Z"},{"ID":19417,"Name":"209","Points":5139,"X":577,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932849Z"},{"ID":19418,"Name":"#0012","Points":9761,"X":516,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93285Z"},{"ID":19420,"Name":"022","Points":9809,"X":362,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932851Z"},{"ID":19421,"Name":"Village","Points":9579,"X":529,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932852Z"},{"ID":19422,"Name":"Konfederacja","Points":9720,"X":457,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932852Z"},{"ID":19423,"Name":"086. Faesulae","Points":9084,"X":621,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932853Z"},{"ID":19424,"Name":"018","Points":9993,"X":368,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932854Z"},{"ID":19425,"Name":"MojeSzczytToTwĂłjDno","Points":10475,"X":526,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932855Z"},{"ID":19426,"Name":"120","Points":9722,"X":494,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932855Z"},{"ID":19427,"Name":"MojeSzczytToTwĂłjDno","Points":9737,"X":533,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932856Z"},{"ID":19428,"Name":"#0016","Points":9761,"X":518,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932857Z"},{"ID":19429,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":525,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932858Z"},{"ID":19430,"Name":"Bagdad","Points":9285,"X":499,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932859Z"},{"ID":19431,"Name":"Sebo1303","Points":6461,"X":617,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932859Z"},{"ID":19432,"Name":"0016","Points":10211,"X":568,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93286Z"},{"ID":19433,"Name":"0212","Points":9561,"X":421,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932861Z"},{"ID":19434,"Name":"056","Points":4400,"X":367,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932862Z"},{"ID":19435,"Name":"Gattacka","Points":9792,"X":608,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932862Z"},{"ID":19436,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932863Z"},{"ID":19437,"Name":"Wioska","Points":10178,"X":373,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932864Z"},{"ID":19438,"Name":"#0015","Points":10495,"X":546,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932865Z"},{"ID":19439,"Name":"021 Belatona","Points":10495,"X":625,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932866Z"},{"ID":19440,"Name":"sony911","Points":10229,"X":576,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932866Z"},{"ID":19441,"Name":"ZachĂłd - 014","Points":9778,"X":388,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932867Z"},{"ID":19442,"Name":"154","Points":10311,"X":593,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932868Z"},{"ID":19443,"Name":"Westcoast.116","Points":10178,"X":376,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932869Z"},{"ID":19444,"Name":"09. Wioska 9","Points":10002,"X":374,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932869Z"},{"ID":19445,"Name":"030. Chersonesus","Points":10495,"X":630,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93287Z"},{"ID":19446,"Name":"0129","Points":8973,"X":436,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932871Z"},{"ID":19448,"Name":"018","Points":9978,"X":628,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932872Z"},{"ID":19449,"Name":"CSA","Points":2936,"X":502,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932872Z"},{"ID":19450,"Name":"K34 - [150] Before Land","Points":11130,"X":433,"Y":383,"Continent":"K34","Bonus":6,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932873Z"},{"ID":19451,"Name":"065","Points":9797,"X":366,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932874Z"},{"ID":19452,"Name":"K34 x016","Points":6565,"X":445,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932875Z"},{"ID":19453,"Name":"033 Y13J","Points":9300,"X":639,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932875Z"},{"ID":19454,"Name":"616|427 Wioska barbarzyƄska04","Points":9560,"X":616,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932876Z"},{"ID":19455,"Name":"014","Points":10294,"X":442,"Y":625,"Continent":"K64","Bonus":2,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932877Z"},{"ID":19456,"Name":"A0220","Points":10362,"X":369,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932878Z"},{"ID":19457,"Name":"WB 01","Points":9411,"X":576,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932879Z"},{"ID":19458,"Name":"0034 Executive Director","Points":10544,"X":416,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932879Z"},{"ID":19459,"Name":"A0114","Points":10362,"X":365,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932881Z"},{"ID":19460,"Name":"013","Points":9620,"X":614,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932881Z"},{"ID":19461,"Name":"0053","Points":10067,"X":454,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932882Z"},{"ID":19462,"Name":"c 00446","Points":8206,"X":414,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932883Z"},{"ID":19463,"Name":"Wioska (025)","Points":9529,"X":638,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932884Z"},{"ID":19464,"Name":"035","Points":10478,"X":426,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932884Z"},{"ID":19465,"Name":"[0087]","Points":10495,"X":415,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932885Z"},{"ID":19466,"Name":"005","Points":9769,"X":444,"Y":625,"Continent":"K64","Bonus":6,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932886Z"},{"ID":19467,"Name":"029","Points":10311,"X":589,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932887Z"},{"ID":19468,"Name":"BoOmBaa..","Points":9139,"X":441,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932887Z"},{"ID":19469,"Name":"Jaaa","Points":10476,"X":612,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932888Z"},{"ID":19470,"Name":"Pobozowisko","Points":10955,"X":410,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932889Z"},{"ID":19471,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":516,"Y":364,"Continent":"K35","Bonus":5,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932891Z"},{"ID":19472,"Name":"Ave Why!","Points":9877,"X":451,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932891Z"},{"ID":19473,"Name":"XXXIV","Points":9627,"X":540,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932892Z"},{"ID":19474,"Name":"|A22| naleƛniki z granatem","Points":9447,"X":500,"Y":639,"Continent":"K65","Bonus":6,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932893Z"},{"ID":19476,"Name":"Wioska barbarzyƄska","Points":10068,"X":544,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932894Z"},{"ID":19478,"Name":"005.","Points":10004,"X":559,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932895Z"},{"ID":19479,"Name":"Pobozowisko","Points":10955,"X":403,"Y":597,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932896Z"},{"ID":19480,"Name":"Wioska barbarzyƄska","Points":9994,"X":507,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932897Z"},{"ID":19481,"Name":"013","Points":10474,"X":370,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932898Z"},{"ID":19482,"Name":"Jednak wolę gofry","Points":9811,"X":487,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932899Z"},{"ID":19483,"Name":"003 VC Gangsta116 @","Points":9366,"X":396,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9329Z"},{"ID":19484,"Name":"Armagedon","Points":8527,"X":390,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932901Z"},{"ID":19485,"Name":"*0037 Baraki","Points":10178,"X":620,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932902Z"},{"ID":19486,"Name":"Zeta Reticuli S","Points":11188,"X":406,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932903Z"},{"ID":19487,"Name":"s4 Osada koczownikĂłw","Points":10132,"X":395,"Y":413,"Continent":"K43","Bonus":3,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932904Z"},{"ID":19488,"Name":"[002]","Points":10185,"X":458,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932905Z"},{"ID":19489,"Name":"Kentin ufam Tobie","Points":10000,"X":372,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932906Z"},{"ID":19490,"Name":"*0032 Baraki","Points":9349,"X":623,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932907Z"},{"ID":19491,"Name":"Pobozowisko","Points":10952,"X":404,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932908Z"},{"ID":19492,"Name":"011. Temeria","Points":10495,"X":565,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932909Z"},{"ID":19493,"Name":"Wioska barbarzyƄska","Points":4941,"X":387,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932909Z"},{"ID":19494,"Name":"BoOmBaa..","Points":8169,"X":441,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93291Z"},{"ID":19495,"Name":"Wioska barbarzyƄska","Points":10221,"X":562,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932911Z"},{"ID":19496,"Name":"0131","Points":10019,"X":533,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932912Z"},{"ID":19497,"Name":"A0183","Points":10362,"X":359,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932913Z"},{"ID":19498,"Name":"076","Points":5464,"X":432,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932913Z"},{"ID":19499,"Name":"045","Points":6898,"X":371,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932914Z"},{"ID":19500,"Name":"Jehu_Kingdom_18_","Points":9993,"X":636,"Y":475,"Continent":"K46","Bonus":6,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932915Z"},{"ID":19501,"Name":"Pobozowisko","Points":8557,"X":408,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932915Z"},{"ID":19502,"Name":"Pobozowisko","Points":10957,"X":391,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932916Z"},{"ID":19503,"Name":"Westcoast.097","Points":10135,"X":393,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932917Z"},{"ID":19504,"Name":"116","Points":10232,"X":487,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932918Z"},{"ID":19505,"Name":"C 001","Points":10229,"X":586,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932919Z"},{"ID":19506,"Name":"South K35","Points":10042,"X":550,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932919Z"},{"ID":19507,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":522,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93292Z"},{"ID":19508,"Name":"0122","Points":10019,"X":534,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932921Z"},{"ID":19509,"Name":"Wioska barbarzyƄska","Points":9994,"X":514,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932922Z"},{"ID":19510,"Name":"Pobozowisko","Points":10923,"X":399,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932922Z"},{"ID":19511,"Name":"011 - Valladolid","Points":10019,"X":635,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932923Z"},{"ID":19512,"Name":"Dania","Points":7488,"X":386,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932924Z"},{"ID":19513,"Name":"080","Points":10237,"X":482,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932925Z"},{"ID":19514,"Name":"*Ateny_36","Points":2320,"X":466,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932925Z"},{"ID":19515,"Name":"Pobozowisko","Points":10951,"X":403,"Y":602,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932926Z"},{"ID":19516,"Name":"022","Points":10152,"X":497,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932927Z"},{"ID":19517,"Name":"#0025","Points":10495,"X":545,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932928Z"},{"ID":19518,"Name":"0372","Points":10495,"X":563,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932929Z"},{"ID":19519,"Name":"aaaa","Points":9899,"X":478,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932929Z"},{"ID":19520,"Name":"0119","Points":9163,"X":434,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93293Z"},{"ID":19521,"Name":"B 007","Points":10362,"X":596,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932931Z"},{"ID":19522,"Name":"014. WiƂa","Points":9902,"X":510,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932932Z"},{"ID":19523,"Name":"D005","Points":10495,"X":605,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932932Z"},{"ID":19525,"Name":"0017","Points":10211,"X":569,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932933Z"},{"ID":19526,"Name":"061","Points":9809,"X":359,"Y":510,"Continent":"K53","Bonus":7,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932934Z"},{"ID":19527,"Name":"RTS 5","Points":10495,"X":573,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932935Z"},{"ID":19528,"Name":"R-8","Points":9013,"X":562,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932935Z"},{"ID":19529,"Name":"087. Iaurinum","Points":8562,"X":627,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932936Z"},{"ID":19530,"Name":"005","Points":10211,"X":601,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932937Z"},{"ID":19531,"Name":"Ateny_70","Points":3669,"X":470,"Y":519,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932938Z"},{"ID":19532,"Name":"Za lasem","Points":9752,"X":359,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932938Z"},{"ID":19533,"Name":"001","Points":8799,"X":471,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932939Z"},{"ID":19534,"Name":"OgĂłrkowy baron","Points":9835,"X":403,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93294Z"},{"ID":19535,"Name":"VN Edward Elric","Points":9933,"X":496,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932941Z"},{"ID":19536,"Name":"Jan . izi pizi Nord K","Points":9635,"X":639,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932942Z"},{"ID":19537,"Name":"Kentin ufam Tobie","Points":10000,"X":378,"Y":440,"Continent":"K43","Bonus":7,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932942Z"},{"ID":19538,"Name":"048","Points":10495,"X":362,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932943Z"},{"ID":19539,"Name":"A0184","Points":10362,"X":361,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932944Z"},{"ID":19540,"Name":"068 OZDR","Points":9825,"X":469,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932945Z"},{"ID":19541,"Name":"077 Zgierzątka","Points":10495,"X":381,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932945Z"},{"ID":19542,"Name":"Yeremiah","Points":10068,"X":389,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932946Z"},{"ID":19543,"Name":"083","Points":10104,"X":479,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932947Z"},{"ID":19544,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":524,"Y":639,"Continent":"K65","Bonus":1,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932948Z"},{"ID":19545,"Name":"Wioska","Points":10178,"X":373,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932948Z"},{"ID":19546,"Name":"070","Points":10068,"X":437,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932949Z"},{"ID":19547,"Name":"117","Points":10628,"X":401,"Y":553,"Continent":"K54","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93295Z"},{"ID":19548,"Name":"Kentin ufam Tobie","Points":10000,"X":368,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932951Z"},{"ID":19549,"Name":"Zeta Reticuli S2","Points":11188,"X":403,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932952Z"},{"ID":19550,"Name":"A18 Wioska barbarzyƄska","Points":10223,"X":460,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932952Z"},{"ID":19551,"Name":"Horyzont zdarzeƄ","Points":10019,"X":544,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932953Z"},{"ID":19552,"Name":"Nowa 16","Points":9756,"X":622,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932954Z"},{"ID":19553,"Name":"ObrzeĆŒa 01","Points":11130,"X":543,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932955Z"},{"ID":19554,"Name":"A0171","Points":10362,"X":367,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932955Z"},{"ID":19555,"Name":"A004","Points":9824,"X":474,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932956Z"},{"ID":19556,"Name":"015 Wioska barbarzyƄska","Points":10178,"X":537,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932957Z"},{"ID":19557,"Name":"038","Points":10495,"X":575,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932958Z"},{"ID":19558,"Name":"kathare","Points":9921,"X":555,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932959Z"},{"ID":19559,"Name":"Pobozowisko","Points":8805,"X":411,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93296Z"},{"ID":19560,"Name":"078 Wehjerowo","Points":10495,"X":379,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93296Z"},{"ID":19561,"Name":"002","Points":9809,"X":366,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932961Z"},{"ID":19562,"Name":"018 Wioska barbarzyƄska","Points":10068,"X":539,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932962Z"},{"ID":19563,"Name":"[016]","Points":9809,"X":637,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932963Z"},{"ID":19564,"Name":"Westcoast.059","Points":10178,"X":379,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932963Z"},{"ID":19565,"Name":"Pobozowisko","Points":10951,"X":409,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932964Z"},{"ID":19566,"Name":"016 Legio XXII Deiotariana","Points":5463,"X":638,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932965Z"},{"ID":19567,"Name":"Wioska barbarzyƄska","Points":9091,"X":390,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932966Z"},{"ID":19568,"Name":"066","Points":10401,"X":438,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932967Z"},{"ID":19569,"Name":"Deveste ufam Tobie","Points":7764,"X":431,"Y":620,"Continent":"K64","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932967Z"},{"ID":19570,"Name":"043","Points":10262,"X":606,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932968Z"},{"ID":19571,"Name":"039","Points":9575,"X":610,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932969Z"},{"ID":19572,"Name":"*INTERTWINED*","Points":9711,"X":510,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93297Z"},{"ID":19573,"Name":"Ave Why!","Points":9198,"X":453,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93297Z"},{"ID":19574,"Name":"Ulu-mulu","Points":8742,"X":422,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932971Z"},{"ID":19575,"Name":"D015","Points":5364,"X":597,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932972Z"},{"ID":19576,"Name":"005 181","Points":10495,"X":359,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932973Z"},{"ID":19577,"Name":"Kentin ufam Tobie","Points":10000,"X":371,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932973Z"},{"ID":19578,"Name":"Wioska barbarzyƄska","Points":10481,"X":628,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932974Z"},{"ID":19579,"Name":"Jehu_Kingdom_11","Points":7779,"X":625,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932975Z"},{"ID":19580,"Name":"Majami","Points":10068,"X":543,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932976Z"},{"ID":19581,"Name":"OgĂłrkowy baron","Points":9835,"X":400,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932977Z"},{"ID":19582,"Name":"Wioska zygmunciarz","Points":5724,"X":382,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932977Z"},{"ID":19583,"Name":".Krakers. 003","Points":3630,"X":362,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932978Z"},{"ID":19584,"Name":"015","Points":9741,"X":565,"Y":621,"Continent":"K65","Bonus":4,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932979Z"},{"ID":19586,"Name":"Szlachcic","Points":9629,"X":636,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93298Z"},{"ID":19587,"Name":"Konfederacja +","Points":9692,"X":451,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93298Z"},{"ID":19588,"Name":"Westcoast.104","Points":10178,"X":379,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932981Z"},{"ID":19589,"Name":"R014","Points":5600,"X":384,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932982Z"},{"ID":19590,"Name":"Wioska barbarzyƄska","Points":9761,"X":476,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932983Z"},{"ID":19591,"Name":"027","Points":10160,"X":507,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932983Z"},{"ID":19592,"Name":"157 Ale mnie gƂówka boli","Points":8635,"X":375,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932984Z"},{"ID":19593,"Name":"Pobozowisko","Points":7456,"X":406,"Y":604,"Continent":"K64","Bonus":8,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932985Z"},{"ID":19594,"Name":"014","Points":9809,"X":360,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932986Z"},{"ID":19595,"Name":"063","Points":10237,"X":476,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932986Z"},{"ID":19596,"Name":"053","Points":9809,"X":361,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932987Z"},{"ID":19597,"Name":"040 | PALESTINA","Points":6231,"X":634,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932988Z"},{"ID":19599,"Name":"068","Points":5967,"X":365,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932989Z"},{"ID":19600,"Name":"004.","Points":9889,"X":633,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93299Z"},{"ID":19601,"Name":"Jan 0xxx (08) K","Points":9450,"X":636,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93299Z"},{"ID":19602,"Name":"SSJ 014","Points":9761,"X":512,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932991Z"},{"ID":19603,"Name":"003","Points":9746,"X":627,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932992Z"},{"ID":19604,"Name":"#0010","Points":9761,"X":517,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932993Z"},{"ID":19605,"Name":"057","Points":5195,"X":365,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932994Z"},{"ID":19606,"Name":"148 Oj Mareczku coƛ za duĆŒo cyfr","Points":10490,"X":375,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932994Z"},{"ID":19607,"Name":"#0004","Points":10495,"X":548,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932995Z"},{"ID":19608,"Name":"0018","Points":10211,"X":547,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932996Z"},{"ID":19609,"Name":".:024:. ƁOBUZIK","Points":9889,"X":554,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932997Z"},{"ID":19610,"Name":"[B]_[201] Dejv.oldplyr","Points":9218,"X":432,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932997Z"},{"ID":19612,"Name":"c Robcio 80003qqqqqqqqqqqqqqqqqq","Points":10005,"X":415,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932998Z"},{"ID":19613,"Name":"HMS Perseus","Points":9301,"X":387,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.932999Z"},{"ID":19614,"Name":"C012","Points":4976,"X":584,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933Z"},{"ID":19615,"Name":"028","Points":10019,"X":555,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699176234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933Z"},{"ID":19616,"Name":"0207","Points":5155,"X":418,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933001Z"},{"ID":19617,"Name":"055","Points":9809,"X":360,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933002Z"},{"ID":19618,"Name":"018","Points":9809,"X":362,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933003Z"},{"ID":19619,"Name":"kathare","Points":10495,"X":552,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933003Z"},{"ID":19620,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":518,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933004Z"},{"ID":19621,"Name":"#0003","Points":10495,"X":546,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933005Z"},{"ID":19622,"Name":"029","Points":9740,"X":630,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933006Z"},{"ID":19623,"Name":"[0070]","Points":10495,"X":411,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933006Z"},{"ID":19624,"Name":".Krakers. 004","Points":3626,"X":364,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933007Z"},{"ID":19625,"Name":"F 004","Points":10137,"X":639,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933008Z"},{"ID":19626,"Name":"P031 Sakai","Points":9549,"X":637,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933009Z"},{"ID":19627,"Name":"SSJ 004","Points":9761,"X":510,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933009Z"},{"ID":19628,"Name":"Kentin ufam Tobie","Points":10000,"X":375,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93301Z"},{"ID":19629,"Name":"Sony 911","Points":10230,"X":576,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933011Z"},{"ID":19630,"Name":"Gattacka","Points":9747,"X":608,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933012Z"},{"ID":19631,"Name":"0254","Points":10019,"X":537,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933012Z"},{"ID":19632,"Name":"064","Points":10237,"X":473,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933013Z"},{"ID":19633,"Name":"0227","Points":10147,"X":516,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933014Z"},{"ID":19634,"Name":"~~012~~","Points":9760,"X":596,"Y":600,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933015Z"},{"ID":19635,"Name":"Ave Why!","Points":10104,"X":492,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933016Z"},{"ID":19636,"Name":"[0083]","Points":10495,"X":414,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933017Z"},{"ID":19637,"Name":"A0300","Points":10362,"X":362,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933017Z"},{"ID":19638,"Name":"Jednak wolę gofry","Points":10311,"X":496,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933018Z"},{"ID":19639,"Name":"A READY","Points":10019,"X":602,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933019Z"},{"ID":19640,"Name":"MojeSzczytToTwĂłjDno","Points":10479,"X":524,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93302Z"},{"ID":19641,"Name":"Wioska barbarzyƄska","Points":9950,"X":525,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93302Z"},{"ID":19642,"Name":"135","Points":10311,"X":574,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933021Z"},{"ID":19643,"Name":"VN Vanica Zogriatis","Points":9638,"X":465,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933022Z"},{"ID":19644,"Name":"58. Wioska 58","Points":9111,"X":372,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933023Z"},{"ID":19645,"Name":"Pobozowisko","Points":10954,"X":399,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933023Z"},{"ID":19646,"Name":"Pobozowisko","Points":10951,"X":403,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933024Z"},{"ID":19647,"Name":"Taran","Points":9654,"X":551,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933025Z"},{"ID":19648,"Name":"009.","Points":9835,"X":637,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933026Z"},{"ID":19649,"Name":"023 024","Points":10001,"X":530,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933026Z"},{"ID":19650,"Name":"[023]","Points":9809,"X":634,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933027Z"},{"ID":19651,"Name":"Wioska barbarzyƄska","Points":5573,"X":524,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933028Z"},{"ID":19652,"Name":"069 PotÄ™ĆŒny Dzban","Points":10484,"X":381,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933029Z"},{"ID":19653,"Name":"Wioska orton150","Points":5127,"X":371,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93303Z"},{"ID":19654,"Name":"WiedĆșma - Celebryci","Points":7700,"X":385,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93303Z"},{"ID":19655,"Name":"BoOmBaa..","Points":7095,"X":439,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933031Z"},{"ID":19656,"Name":".052.","Points":10503,"X":485,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933032Z"},{"ID":19657,"Name":"Wioska barbarzyƄska","Points":9556,"X":480,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933033Z"},{"ID":19658,"Name":"004","Points":9761,"X":385,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933034Z"},{"ID":19659,"Name":"Mniejsze zƂo 0026","Points":7284,"X":363,"Y":465,"Continent":"K43","Bonus":7,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933034Z"},{"ID":19660,"Name":"Pobozowisko","Points":10301,"X":384,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933035Z"},{"ID":19661,"Name":"*5604* LuncherS","Points":10287,"X":620,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933036Z"},{"ID":19662,"Name":"Wioska barbarzyƄska","Points":10487,"X":631,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933037Z"},{"ID":19663,"Name":"001","Points":10211,"X":604,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933038Z"},{"ID":19664,"Name":"A0140","Points":10362,"X":362,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933038Z"},{"ID":19665,"Name":"026","Points":9701,"X":364,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933039Z"},{"ID":19666,"Name":"Jednak wolę gofry","Points":10311,"X":499,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93304Z"},{"ID":19667,"Name":"060","Points":5531,"X":494,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933041Z"},{"ID":19668,"Name":"036 Pelargir","Points":10218,"X":615,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933042Z"},{"ID":19669,"Name":"16. Wioska 16","Points":10068,"X":369,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933043Z"},{"ID":19670,"Name":"BoOmBaa..","Points":10495,"X":441,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933043Z"},{"ID":19671,"Name":"VN Chrollo Lucilfer","Points":9657,"X":466,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933044Z"},{"ID":19672,"Name":"Wioska barbarzyƄska","Points":10622,"X":639,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933045Z"},{"ID":19673,"Name":"Wioska barbarzyƄska","Points":10075,"X":368,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933046Z"},{"ID":19675,"Name":"006 VC Wioska barbarzyƄska","Points":8449,"X":392,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933046Z"},{"ID":19676,"Name":"psycha sitting","Points":10311,"X":416,"Y":614,"Continent":"K64","Bonus":9,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933047Z"},{"ID":19677,"Name":"029 na Ƃazarskim rejonie","Points":8969,"X":637,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933048Z"},{"ID":19678,"Name":"Gattacka","Points":9816,"X":610,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933049Z"},{"ID":19679,"Name":"Ryszard ty draniu ,oddaj rower!!","Points":10495,"X":574,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93305Z"},{"ID":19680,"Name":"070. Lindum","Points":10495,"X":631,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93305Z"},{"ID":19681,"Name":"::: A ::: I","Points":5021,"X":363,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933051Z"},{"ID":19682,"Name":"Ave Why!","Points":10068,"X":468,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933052Z"},{"ID":19683,"Name":"051 | PALESTINA","Points":9544,"X":626,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933053Z"},{"ID":19684,"Name":"039","Points":9993,"X":371,"Y":553,"Continent":"K53","Bonus":8,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933053Z"},{"ID":19685,"Name":"042","Points":10495,"X":545,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933054Z"},{"ID":19686,"Name":"079 Radom","Points":10495,"X":381,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933055Z"},{"ID":19687,"Name":"Pobozowisko","Points":10393,"X":397,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933056Z"},{"ID":19688,"Name":"Pobozowisko","Points":10892,"X":387,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933057Z"},{"ID":19689,"Name":"Wioska barbarzyƄska","Points":9994,"X":510,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933057Z"},{"ID":19690,"Name":"D006","Points":10495,"X":603,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933058Z"},{"ID":19692,"Name":".KSU","Points":8353,"X":638,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933059Z"},{"ID":19693,"Name":"Pobozowisko","Points":10950,"X":404,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93306Z"},{"ID":19694,"Name":"KsiądĆș do spania dzieciaku","Points":9557,"X":462,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933061Z"},{"ID":19695,"Name":".achim.","Points":7487,"X":533,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933061Z"},{"ID":19696,"Name":"A0102","Points":10362,"X":361,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933062Z"},{"ID":19697,"Name":"Konfederacja +","Points":9833,"X":448,"Y":375,"Continent":"K34","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933063Z"},{"ID":19698,"Name":"a moĆŒe off ? :)","Points":9347,"X":619,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933064Z"},{"ID":19699,"Name":"Myk i do kieszonki","Points":9799,"X":361,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933065Z"},{"ID":19700,"Name":"054 | PALESTINA","Points":4018,"X":628,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933065Z"},{"ID":19701,"Name":"Ave Why!","Points":9861,"X":450,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933066Z"},{"ID":19702,"Name":"Ulu-mulu","Points":3842,"X":415,"Y":614,"Continent":"K64","Bonus":3,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933067Z"},{"ID":19704,"Name":"Pobozowisko","Points":10963,"X":392,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933068Z"},{"ID":19705,"Name":"Taran","Points":9389,"X":547,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933068Z"},{"ID":19706,"Name":"WE ARE READY!","Points":9408,"X":597,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933069Z"},{"ID":19707,"Name":"ave why!","Points":9761,"X":450,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93307Z"},{"ID":19708,"Name":"173","Points":10085,"X":587,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933071Z"},{"ID":19709,"Name":"a moĆŒe off ? :)","Points":9967,"X":634,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933071Z"},{"ID":19710,"Name":"W.03","Points":10232,"X":583,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933072Z"},{"ID":19711,"Name":"A27 Wioska barbarzyƄska","Points":10220,"X":469,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933073Z"},{"ID":19712,"Name":"V 002","Points":9141,"X":585,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933074Z"},{"ID":19713,"Name":"-021-","Points":9172,"X":393,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933075Z"},{"ID":19714,"Name":"59. Wioska 59","Points":8554,"X":371,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933075Z"},{"ID":19715,"Name":"Jehu_Kingdom_17_","Points":9993,"X":632,"Y":467,"Continent":"K46","Bonus":9,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933076Z"},{"ID":19716,"Name":"032.","Points":10838,"X":471,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933077Z"},{"ID":19717,"Name":"35. Wioska 35","Points":9848,"X":381,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933078Z"},{"ID":19718,"Name":"204","Points":5450,"X":585,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933079Z"},{"ID":19719,"Name":"210","Points":9659,"X":580,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933079Z"},{"ID":19720,"Name":"Wioska barbarzyƄska","Points":6970,"X":637,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93308Z"},{"ID":19721,"Name":"0138","Points":9619,"X":429,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933081Z"},{"ID":19722,"Name":"033","Points":8535,"X":367,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933082Z"},{"ID":19723,"Name":"0030","Points":10887,"X":367,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933082Z"},{"ID":19724,"Name":"Hepatica nobilis","Points":9933,"X":493,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933083Z"},{"ID":19725,"Name":"Pobozowisko","Points":3488,"X":389,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933084Z"},{"ID":19726,"Name":"038","Points":9809,"X":365,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933085Z"},{"ID":19727,"Name":"C 011","Points":8377,"X":584,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933086Z"},{"ID":19728,"Name":"Wioska barbarzyƄska","Points":10216,"X":561,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933086Z"},{"ID":19729,"Name":"007.","Points":9813,"X":640,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933087Z"},{"ID":19730,"Name":"0554","Points":10019,"X":564,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933088Z"},{"ID":19731,"Name":"015 016","Points":10001,"X":540,"Y":367,"Continent":"K35","Bonus":7,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933089Z"},{"ID":19732,"Name":"Wioska barbarzyƄska","Points":10218,"X":564,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93309Z"},{"ID":19733,"Name":"Bagdad","Points":9976,"X":502,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933091Z"},{"ID":19734,"Name":"0121","Points":8357,"X":438,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933091Z"},{"ID":19735,"Name":"A007","Points":10064,"X":521,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933092Z"},{"ID":19736,"Name":"SoƂtys Wsi Misinho","Points":9835,"X":437,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933093Z"},{"ID":19737,"Name":"01.","Points":10237,"X":509,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933094Z"},{"ID":19738,"Name":"617|429 Wioska barbarzyƄska08","Points":9987,"X":617,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933095Z"},{"ID":19739,"Name":"047","Points":7922,"X":443,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933095Z"},{"ID":19740,"Name":"Pobozowisko","Points":8710,"X":410,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933096Z"},{"ID":19741,"Name":"OgĂłrkowy baron","Points":9835,"X":404,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933097Z"},{"ID":19742,"Name":"Wioska barbarzyƄska","Points":8671,"X":388,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933098Z"},{"ID":19743,"Name":"053","Points":9835,"X":441,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933098Z"},{"ID":19744,"Name":"014. Minas Morgul","Points":10237,"X":488,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933099Z"},{"ID":19745,"Name":"125","Points":10495,"X":491,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9331Z"},{"ID":19746,"Name":"004 Ɓysy Las","Points":9899,"X":620,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933101Z"},{"ID":19747,"Name":"z 056","Points":10484,"X":587,"Y":604,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933102Z"},{"ID":19748,"Name":"015.","Points":10495,"X":572,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933103Z"},{"ID":19750,"Name":"*0010 Baraki","Points":10198,"X":621,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933103Z"},{"ID":19751,"Name":"K43 x001","Points":5865,"X":399,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933104Z"},{"ID":19752,"Name":"017","Points":9835,"X":615,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933105Z"},{"ID":19753,"Name":"Residential Area","Points":10426,"X":526,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933106Z"},{"ID":19754,"Name":"019 Legio I Brittannica","Points":5161,"X":642,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933107Z"},{"ID":19755,"Name":"Szlachcic","Points":9626,"X":636,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933107Z"},{"ID":19756,"Name":"A21 Wioska barbarzyƄska","Points":10223,"X":458,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933108Z"},{"ID":19757,"Name":"B001","Points":9445,"X":605,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933109Z"},{"ID":19758,"Name":"019","Points":10232,"X":608,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.93311Z"},{"ID":19759,"Name":"060","Points":9809,"X":358,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933111Z"},{"ID":19760,"Name":"167","Points":10311,"X":583,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933112Z"},{"ID":19761,"Name":"0052","Points":9649,"X":452,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933112Z"},{"ID":19762,"Name":"A0236","Points":10362,"X":363,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933113Z"},{"ID":19763,"Name":"140","Points":10311,"X":574,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933114Z"},{"ID":19764,"Name":"142 MIKOX 010","Points":10001,"X":596,"Y":416,"Continent":"K45","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933115Z"},{"ID":19765,"Name":"0005","Points":10431,"X":481,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933116Z"},{"ID":19767,"Name":"ƚlachcic","Points":10019,"X":639,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.933116Z"},{"ID":19768,"Name":"181","Points":2332,"X":387,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":8305343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96605Z"},{"ID":19769,"Name":"Wioska barbarzyƄska","Points":8888,"X":363,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96605Z"},{"ID":19770,"Name":"108 Wioska barbarzyƄska","Points":9122,"X":605,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966051Z"},{"ID":19771,"Name":"Osada koczownikĂłw","Points":8364,"X":385,"Y":576,"Continent":"K53","Bonus":2,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966051Z"},{"ID":19772,"Name":"Wioska barbarzyƄska","Points":10068,"X":534,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966051Z"},{"ID":19773,"Name":"=036= Wioska barbarzyƄska","Points":9100,"X":631,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966051Z"},{"ID":19774,"Name":"002","Points":9761,"X":626,"Y":557,"Continent":"K56","Bonus":3,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966052Z"},{"ID":19775,"Name":"Jehu_Kingdom_10_","Points":9993,"X":629,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966052Z"},{"ID":19776,"Name":"a moĆŒe off ? :)","Points":10074,"X":636,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966052Z"},{"ID":19777,"Name":"Druga Dla MOSE","Points":5638,"X":580,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699560327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966053Z"},{"ID":19778,"Name":"SSJ 021","Points":9761,"X":508,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966053Z"},{"ID":19779,"Name":"Wioska barbarzyƄska","Points":9825,"X":621,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966053Z"},{"ID":19780,"Name":"0144","Points":5677,"X":431,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966054Z"},{"ID":19781,"Name":"050","Points":6906,"X":374,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966054Z"},{"ID":19782,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":526,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966054Z"},{"ID":19783,"Name":"Zeta Reticuli S2","Points":9929,"X":399,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966054Z"},{"ID":19784,"Name":"HMS Warspite","Points":12154,"X":384,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966055Z"},{"ID":19785,"Name":"B016","Points":7978,"X":599,"Y":405,"Continent":"K45","Bonus":7,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966055Z"},{"ID":19786,"Name":"006.","Points":9250,"X":631,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966055Z"},{"ID":19787,"Name":"034","Points":10218,"X":610,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966055Z"},{"ID":19789,"Name":"059 Wioska barbarzyƄska","Points":10001,"X":535,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966056Z"},{"ID":19790,"Name":"0001","Points":10252,"X":538,"Y":633,"Continent":"K65","Bonus":8,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966056Z"},{"ID":19791,"Name":"Wioska barbarzyƄska","Points":9835,"X":421,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966057Z"},{"ID":19792,"Name":"A0222","Points":10362,"X":365,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966057Z"},{"ID":19793,"Name":"0019 Bezimienna","Points":11727,"X":416,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966057Z"},{"ID":19794,"Name":"010Rolety","Points":9740,"X":448,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966057Z"},{"ID":19795,"Name":"WschĂłd Droga 004","Points":8883,"X":632,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966058Z"},{"ID":19796,"Name":"A READY","Points":10019,"X":592,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966058Z"},{"ID":19797,"Name":"Kentin ufam Tobie","Points":10000,"X":377,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966058Z"},{"ID":19798,"Name":".:134:. Niangmen","Points":9676,"X":506,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966059Z"},{"ID":19799,"Name":"Wioska (027)","Points":9188,"X":637,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966059Z"},{"ID":19801,"Name":"0039","Points":10083,"X":538,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966059Z"},{"ID":19802,"Name":"Osada","Points":1141,"X":380,"Y":430,"Continent":"K43","Bonus":6,"PlayerID":699644054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966059Z"},{"ID":19804,"Name":"-053-","Points":6278,"X":377,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96606Z"},{"ID":19805,"Name":"Ave Why!","Points":9917,"X":465,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96606Z"},{"ID":19806,"Name":"WiedĆșma - Barbakan","Points":6368,"X":384,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96606Z"},{"ID":19807,"Name":"SSJ 038","Points":9761,"X":515,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96606Z"},{"ID":19808,"Name":"Jednak wolę gofry","Points":10311,"X":494,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966061Z"},{"ID":19809,"Name":"#0033","Points":10495,"X":545,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966061Z"},{"ID":19810,"Name":"0044","Points":9957,"X":451,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966061Z"},{"ID":19811,"Name":"A003","Points":9796,"X":474,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966062Z"},{"ID":19812,"Name":"Wioska barbarzyƄska","Points":10481,"X":636,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966062Z"},{"ID":19813,"Name":"Bagdad","Points":10040,"X":500,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966062Z"},{"ID":19814,"Name":"615|426 Wioska barbarzyƄska05","Points":9534,"X":615,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966062Z"},{"ID":19816,"Name":"Belvedere 023","Points":7592,"X":586,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966063Z"},{"ID":19817,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":520,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966063Z"},{"ID":19818,"Name":"WiedĆșma - Ateny","Points":10552,"X":386,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966063Z"},{"ID":19819,"Name":"Pobozowisko","Points":10951,"X":406,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966063Z"},{"ID":19820,"Name":"Lord Lord Franek .#207","Points":10362,"X":512,"Y":361,"Continent":"K35","Bonus":9,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966064Z"},{"ID":19821,"Name":"PiekƂo to inni","Points":10160,"X":516,"Y":453,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966064Z"},{"ID":19822,"Name":"Taran","Points":5332,"X":542,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966064Z"},{"ID":19823,"Name":"W.02","Points":10362,"X":586,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966064Z"},{"ID":19824,"Name":"c 055d","Points":5977,"X":423,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966065Z"},{"ID":19826,"Name":"*INTERTWINED**","Points":9711,"X":509,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966065Z"},{"ID":19828,"Name":"[027]","Points":9566,"X":637,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966065Z"},{"ID":19829,"Name":"Wioska PogĂłrze 4","Points":10311,"X":635,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966065Z"},{"ID":19831,"Name":"0208","Points":10072,"X":419,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966066Z"},{"ID":19832,"Name":"Wioska","Points":7591,"X":370,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966066Z"},{"ID":19833,"Name":"#0043","Points":10495,"X":546,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966066Z"},{"ID":19834,"Name":"Nowa 21","Points":9830,"X":622,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966066Z"},{"ID":19835,"Name":"0239","Points":9211,"X":537,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966067Z"},{"ID":19836,"Name":"#012.510|489","Points":9735,"X":629,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966067Z"},{"ID":19837,"Name":"SSJ 039","Points":9761,"X":511,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966067Z"},{"ID":19838,"Name":"Pobozowisko","Points":10971,"X":381,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966068Z"},{"ID":19839,"Name":"A016","Points":10117,"X":585,"Y":386,"Continent":"K35","Bonus":1,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966068Z"},{"ID":19840,"Name":"013","Points":9809,"X":360,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966068Z"},{"ID":19841,"Name":"mys","Points":10311,"X":570,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966068Z"},{"ID":19842,"Name":"XXXIII","Points":10495,"X":541,"Y":371,"Continent":"K35","Bonus":3,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966069Z"},{"ID":19843,"Name":"056","Points":9809,"X":360,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966069Z"},{"ID":19844,"Name":"063","Points":9809,"X":358,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966069Z"},{"ID":19845,"Name":"Village","Points":12154,"X":527,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966069Z"},{"ID":19846,"Name":"Ave Why!","Points":10495,"X":460,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96607Z"},{"ID":19847,"Name":"Darma","Points":9835,"X":417,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96607Z"},{"ID":19848,"Name":"Ow Konfederacja","Points":10259,"X":598,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96607Z"},{"ID":19849,"Name":"084 KUZYNI mehehehe","Points":9816,"X":472,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96607Z"},{"ID":19850,"Name":"Wioska barbarzyƄska","Points":9835,"X":416,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966071Z"},{"ID":19851,"Name":"Deveste ufam Tobie","Points":6486,"X":433,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966071Z"},{"ID":19852,"Name":"Za rogiem","Points":9752,"X":357,"Y":496,"Continent":"K43","Bonus":2,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966071Z"},{"ID":19853,"Name":"Wioska","Points":10178,"X":371,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966071Z"},{"ID":19854,"Name":"010","Points":4849,"X":387,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966072Z"},{"ID":19856,"Name":"Wioska barbarzyƄska","Points":7946,"X":636,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966072Z"},{"ID":19857,"Name":"Pobozowisko","Points":10971,"X":405,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966072Z"},{"ID":19858,"Name":"Taran","Points":9364,"X":548,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966072Z"},{"ID":19859,"Name":"A READY","Points":9581,"X":592,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966073Z"},{"ID":19860,"Name":"039","Points":9377,"X":491,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966073Z"},{"ID":19861,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":513,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966073Z"},{"ID":19862,"Name":"Lord Lord Franek .#208","Points":10160,"X":517,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966073Z"},{"ID":19864,"Name":"Pobozowisko","Points":5962,"X":413,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966074Z"},{"ID":19865,"Name":"006. darthmoth298","Points":10160,"X":560,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966074Z"},{"ID":19866,"Name":"Wioska barbarzyƄska","Points":10824,"X":629,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966074Z"},{"ID":19867,"Name":"A0185","Points":10362,"X":360,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966074Z"},{"ID":19868,"Name":"w kupie siƂa .","Points":10362,"X":572,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966075Z"},{"ID":19869,"Name":"Zeta Reticuli S2","Points":11188,"X":394,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966075Z"},{"ID":19870,"Name":"A0230","Points":10362,"X":364,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966075Z"},{"ID":19871,"Name":"027 czasem zapija się smutki","Points":8945,"X":638,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966076Z"},{"ID":19872,"Name":"K34 - [147] Before Land","Points":11130,"X":446,"Y":370,"Continent":"K34","Bonus":4,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966076Z"},{"ID":19873,"Name":"Pobozowisko","Points":8727,"X":390,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966076Z"},{"ID":19874,"Name":".Elana ToruƄ.","Points":9568,"X":623,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966076Z"},{"ID":19875,"Name":"c 00448","Points":8783,"X":413,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966077Z"},{"ID":19877,"Name":"Pobozowisko","Points":10957,"X":391,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966077Z"},{"ID":19878,"Name":"Bizy 2","Points":10201,"X":499,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966077Z"},{"ID":19879,"Name":"003","Points":9809,"X":365,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966078Z"},{"ID":19880,"Name":"[0102]","Points":10559,"X":406,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966078Z"},{"ID":19881,"Name":"017","Points":10237,"X":442,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966078Z"},{"ID":19882,"Name":"c 0044 Wioska","Points":10072,"X":413,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966079Z"},{"ID":19883,"Name":"B.028","Points":10000,"X":642,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966079Z"},{"ID":19884,"Name":"Wioska barbarzyƄska","Points":6057,"X":616,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":699800992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966079Z"},{"ID":19885,"Name":"0064","Points":9740,"X":462,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96608Z"},{"ID":19886,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":520,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96608Z"},{"ID":19887,"Name":"c Tva","Points":10142,"X":405,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96608Z"},{"ID":19888,"Name":"- 332 - RR","Points":9452,"X":591,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966081Z"},{"ID":19889,"Name":"Zeta Reticuli S2","Points":11550,"X":395,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966081Z"},{"ID":19890,"Name":"Gattacka","Points":9761,"X":614,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966081Z"},{"ID":19891,"Name":"Taran","Points":9389,"X":556,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966082Z"},{"ID":19892,"Name":"032","Points":6905,"X":483,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966082Z"},{"ID":19893,"Name":"Westcoast.010","Points":10178,"X":383,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966082Z"},{"ID":19894,"Name":"Deveste ufam Tobie","Points":6164,"X":432,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966082Z"},{"ID":19895,"Name":"001) Filipets","Points":8999,"X":533,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966083Z"},{"ID":19896,"Name":"011","Points":9505,"X":589,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966083Z"},{"ID":19897,"Name":"012","Points":9809,"X":366,"Y":534,"Continent":"K53","Bonus":3,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966083Z"},{"ID":19898,"Name":"211","Points":10521,"X":579,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966084Z"},{"ID":19899,"Name":"A03","Points":9937,"X":463,"Y":633,"Continent":"K64","Bonus":9,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966084Z"},{"ID":19900,"Name":"Zeta Reticuli S2","Points":10728,"X":394,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966084Z"},{"ID":19901,"Name":"-015-","Points":9163,"X":394,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966085Z"},{"ID":19902,"Name":"#0032","Points":10495,"X":553,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966085Z"},{"ID":19903,"Name":"008 Legio I Flavia Martis","Points":6538,"X":639,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966085Z"},{"ID":19904,"Name":"Mniejsze zƂo 0023","Points":9835,"X":361,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966085Z"},{"ID":19905,"Name":"Pobozowisko","Points":10630,"X":412,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966086Z"},{"ID":19907,"Name":"014 - Alicante","Points":10019,"X":636,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966086Z"},{"ID":19909,"Name":"A0115","Points":10362,"X":363,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966086Z"},{"ID":19910,"Name":"049 | PALESTINA","Points":4990,"X":637,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966087Z"},{"ID":19911,"Name":"SSJ 033","Points":9653,"X":513,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966087Z"},{"ID":19912,"Name":"001 Wioska dechami zabita","Points":7005,"X":568,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966087Z"},{"ID":19913,"Name":"!0011","Points":10971,"X":624,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966088Z"},{"ID":19914,"Name":"C 020","Points":9968,"X":587,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966088Z"},{"ID":19915,"Name":"062","Points":7432,"X":441,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966088Z"},{"ID":19916,"Name":"R-10","Points":8291,"X":575,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966089Z"},{"ID":19917,"Name":"Zeta Reticuli S2","Points":10838,"X":394,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966089Z"},{"ID":19918,"Name":"028","Points":9914,"X":367,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966089Z"},{"ID":19919,"Name":"wƂadca pieczeni","Points":10362,"X":571,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96609Z"},{"ID":19920,"Name":"C010","Points":8566,"X":586,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96609Z"},{"ID":19921,"Name":"009. Hierosolyma","Points":9469,"X":614,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96609Z"},{"ID":19922,"Name":"015. Minas Tirith","Points":10365,"X":485,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966091Z"},{"ID":19924,"Name":"114","Points":10495,"X":488,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966091Z"},{"ID":19925,"Name":"Ow Konfederacja","Points":9976,"X":600,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966091Z"},{"ID":19926,"Name":"Wioska barbarzyƄska","Points":9994,"X":510,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966091Z"},{"ID":19927,"Name":"0376","Points":8407,"X":579,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966092Z"},{"ID":19928,"Name":"Pobozowisko","Points":10950,"X":401,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966092Z"},{"ID":19929,"Name":"054 Konosu","Points":10083,"X":639,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966092Z"},{"ID":19930,"Name":"#0048","Points":10495,"X":550,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966093Z"},{"ID":19931,"Name":"c 077d","Points":5426,"X":419,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966093Z"},{"ID":19932,"Name":"W.04","Points":10362,"X":585,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966093Z"},{"ID":19933,"Name":"Wioska barbarzyƄska","Points":10481,"X":627,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966094Z"},{"ID":19934,"Name":"014 ByƂem Tam Kolego","Points":10001,"X":531,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966094Z"},{"ID":19935,"Name":"178","Points":10311,"X":563,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966094Z"},{"ID":19936,"Name":"010","Points":9642,"X":466,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966094Z"},{"ID":19937,"Name":"014","Points":9860,"X":635,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966095Z"},{"ID":19938,"Name":"A02 Rosario","Points":10263,"X":642,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966095Z"},{"ID":19939,"Name":"*0036 Baraki","Points":10158,"X":620,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966096Z"},{"ID":19940,"Name":"R-14","Points":9013,"X":577,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966096Z"},{"ID":19941,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":530,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966096Z"},{"ID":19942,"Name":"#0024","Points":10495,"X":546,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966096Z"},{"ID":19943,"Name":"073","Points":6506,"X":434,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966097Z"},{"ID":19944,"Name":"#059.","Points":6992,"X":627,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966097Z"},{"ID":19945,"Name":"020 Wioska barbarzyƄska","Points":10068,"X":542,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966097Z"},{"ID":19946,"Name":"045","Points":6655,"X":364,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966097Z"},{"ID":19947,"Name":"Wioska barbarzyƄska","Points":10218,"X":564,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966098Z"},{"ID":19948,"Name":"045","Points":10237,"X":471,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966098Z"},{"ID":19949,"Name":"Bagdad","Points":9835,"X":500,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966098Z"},{"ID":19950,"Name":"A009","Points":10094,"X":513,"Y":389,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966098Z"},{"ID":19951,"Name":"A0211","Points":10362,"X":361,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966099Z"},{"ID":19952,"Name":"Lord Lord Franek .#181","Points":9976,"X":513,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966099Z"},{"ID":19953,"Name":"011 Legio I Flavia Pacis (D)","Points":4885,"X":637,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966099Z"},{"ID":19954,"Name":"Pobozowisko","Points":10971,"X":378,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966099Z"},{"ID":19955,"Name":"A0123","Points":10362,"X":353,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966099Z"},{"ID":19956,"Name":"162","Points":10311,"X":588,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9661Z"},{"ID":19957,"Name":"arkach","Points":8790,"X":437,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":8588789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9661Z"},{"ID":19958,"Name":"Wioska barbarzyƄska","Points":10475,"X":633,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9661Z"},{"ID":19959,"Name":"015","Points":10362,"X":551,"Y":633,"Continent":"K65","Bonus":6,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9661Z"},{"ID":19960,"Name":"Sony 911","Points":10259,"X":581,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966101Z"},{"ID":19961,"Name":"017","Points":3795,"X":389,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966101Z"},{"ID":19963,"Name":"SSJ 001","Points":9761,"X":509,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966101Z"},{"ID":19964,"Name":"Wioska barbarzyƄska","Points":9825,"X":619,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966101Z"},{"ID":19966,"Name":"E 002","Points":10476,"X":596,"Y":597,"Continent":"K55","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966102Z"},{"ID":19967,"Name":"0036","Points":10083,"X":538,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966102Z"},{"ID":19968,"Name":"K34 - [149] Before Land","Points":5298,"X":443,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966102Z"},{"ID":19969,"Name":"bucks x kamiiiru","Points":7049,"X":410,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966103Z"},{"ID":19970,"Name":"nic","Points":10311,"X":572,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966103Z"},{"ID":19971,"Name":"107","Points":10495,"X":484,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966103Z"},{"ID":19972,"Name":"Jojo","Points":9709,"X":392,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966104Z"},{"ID":19973,"Name":"~~041~~","Points":9741,"X":599,"Y":599,"Continent":"K55","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966104Z"},{"ID":19974,"Name":"A0207","Points":10362,"X":365,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966104Z"},{"ID":19975,"Name":"Gniazdko","Points":9505,"X":579,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966105Z"},{"ID":19976,"Name":"MojeDnoToWaszSzczyt","Points":7761,"X":562,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966105Z"},{"ID":19977,"Name":"Ave Why!","Points":9842,"X":492,"Y":641,"Continent":"K64","Bonus":7,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966105Z"},{"ID":19978,"Name":"Ave Why!","Points":10203,"X":492,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966106Z"},{"ID":19979,"Name":"Kentin ufam Tobie","Points":10000,"X":368,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966106Z"},{"ID":19980,"Name":"c Kolwicz 003","Points":10064,"X":409,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966106Z"},{"ID":19981,"Name":"gram w kuchni .","Points":10495,"X":574,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966106Z"},{"ID":19982,"Name":"R016","Points":3865,"X":383,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966107Z"},{"ID":19983,"Name":"Horyzont zdarzeƄ","Points":10019,"X":558,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966107Z"},{"ID":19984,"Name":"020","Points":9861,"X":631,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966107Z"},{"ID":19985,"Name":"Jan III Nord K","Points":9686,"X":633,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966108Z"},{"ID":19986,"Name":"001","Points":9031,"X":589,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966108Z"},{"ID":19987,"Name":"c 006 Osada","Points":10303,"X":413,"Y":394,"Continent":"K34","Bonus":6,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966108Z"},{"ID":19988,"Name":"a moĆŒe off ? :)","Points":9722,"X":636,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966108Z"},{"ID":19989,"Name":"nic","Points":10117,"X":570,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966109Z"},{"ID":19990,"Name":"c Kolwicz 001","Points":8832,"X":407,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966109Z"},{"ID":19991,"Name":"020","Points":9735,"X":630,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966109Z"},{"ID":19992,"Name":"Kentin ufam Tobie","Points":10000,"X":371,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966109Z"},{"ID":19993,"Name":"Wioska s","Points":4368,"X":507,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849044961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966109Z"},{"ID":19994,"Name":"054","Points":8598,"X":444,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96611Z"},{"ID":19995,"Name":"077","Points":9809,"X":359,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96611Z"},{"ID":19996,"Name":"0125","Points":9730,"X":435,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96611Z"},{"ID":19997,"Name":".achim.","Points":10311,"X":532,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96611Z"},{"ID":19998,"Name":"0143","Points":7051,"X":432,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966111Z"},{"ID":19999,"Name":"Ow Konfederacja","Points":10273,"X":606,"Y":407,"Continent":"K46","Bonus":8,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966111Z"},{"ID":20001,"Name":"025 Rivia","Points":10373,"X":612,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966111Z"},{"ID":20002,"Name":"006 Legio I Flavia Gallicana","Points":8107,"X":640,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966111Z"},{"ID":20003,"Name":"0375","Points":10252,"X":565,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966112Z"},{"ID":20004,"Name":"033","Points":6542,"X":481,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966112Z"},{"ID":20005,"Name":"U-7","Points":7607,"X":578,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966112Z"},{"ID":20006,"Name":"0033 Wioska barbarzyƄska","Points":5807,"X":410,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966112Z"},{"ID":20007,"Name":"038 Orthiad","Points":10030,"X":626,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966112Z"},{"ID":20009,"Name":"Deveste ufam Tobie","Points":8502,"X":433,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966113Z"},{"ID":20010,"Name":"Konfederacja","Points":9370,"X":455,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966113Z"},{"ID":20011,"Name":"nic","Points":10311,"X":573,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966113Z"},{"ID":20013,"Name":"Ave Why!","Points":9809,"X":468,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966113Z"},{"ID":20014,"Name":"Pobozowisko","Points":10256,"X":409,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966114Z"},{"ID":20015,"Name":"Sony 911","Points":10221,"X":582,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966114Z"},{"ID":20016,"Name":"155 Ale mnie gƂówka boli","Points":7241,"X":376,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966114Z"},{"ID":20017,"Name":"018 KTW","Points":10495,"X":632,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966114Z"},{"ID":20018,"Name":"Paulina ObroƄca Kuwety","Points":9835,"X":538,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966115Z"},{"ID":20019,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966115Z"},{"ID":20020,"Name":"153 Ale mnie gƂówka boli","Points":10444,"X":376,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966115Z"},{"ID":20021,"Name":"008","Points":9672,"X":456,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966115Z"},{"ID":20022,"Name":"017 Legio XV Apollinaris","Points":4194,"X":640,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966116Z"},{"ID":20023,"Name":"Jehu_Kingdom_58","Points":5726,"X":637,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966116Z"},{"ID":20025,"Name":"Ave Why!","Points":9029,"X":459,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966116Z"},{"ID":20026,"Name":"084","Points":6199,"X":642,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966116Z"},{"ID":20027,"Name":"kathare","Points":9860,"X":547,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966116Z"},{"ID":20028,"Name":"Kentin ufam Tobie","Points":10000,"X":370,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966117Z"},{"ID":20029,"Name":"0023","Points":10083,"X":538,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966117Z"},{"ID":20030,"Name":"Wioska barbarzyƄska","Points":10475,"X":638,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966117Z"},{"ID":20031,"Name":"pepe","Points":6715,"X":361,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966117Z"},{"ID":20032,"Name":"002","Points":8746,"X":384,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966118Z"},{"ID":20033,"Name":"#029.516|501","Points":9735,"X":635,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966118Z"},{"ID":20034,"Name":"K34 - [146] Before Land","Points":11130,"X":445,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966118Z"},{"ID":20035,"Name":"042","Points":6425,"X":367,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966119Z"},{"ID":20036,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9936,"X":491,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966119Z"},{"ID":20037,"Name":"080","Points":8140,"X":637,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966119Z"},{"ID":20038,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":522,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966119Z"},{"ID":20039,"Name":"027","Points":9883,"X":361,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96612Z"},{"ID":20040,"Name":"007","Points":4344,"X":363,"Y":519,"Continent":"K53","Bonus":4,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96612Z"},{"ID":20041,"Name":"0043","Points":9825,"X":620,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96612Z"},{"ID":20042,"Name":"612|422 Wioska barbarzyƄska10","Points":9827,"X":612,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966121Z"},{"ID":20043,"Name":"Ow Konfederacja +","Points":10311,"X":600,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966121Z"},{"ID":20044,"Name":"A0202","Points":10362,"X":365,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966121Z"},{"ID":20045,"Name":"#0027","Points":10495,"X":547,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966121Z"},{"ID":20046,"Name":"Kentin ufam Tobie","Points":10014,"X":366,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966122Z"},{"ID":20047,"Name":"003","Points":9993,"X":365,"Y":542,"Continent":"K53","Bonus":4,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966122Z"},{"ID":20048,"Name":"009","Points":9761,"X":631,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966122Z"},{"ID":20049,"Name":"053","Points":6381,"X":364,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966122Z"},{"ID":20050,"Name":"kathare","Points":10495,"X":547,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966123Z"},{"ID":20051,"Name":"Wioska barbarzyƄska","Points":8937,"X":625,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966123Z"},{"ID":20052,"Name":"021","Points":9809,"X":361,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966123Z"},{"ID":20053,"Name":"Jednak wolę gofry","Points":10311,"X":496,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966123Z"},{"ID":20054,"Name":"A0221","Points":10362,"X":366,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966124Z"},{"ID":20055,"Name":"Westcoast.108","Points":10178,"X":379,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966124Z"},{"ID":20056,"Name":"XXXX","Points":10132,"X":504,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966124Z"},{"ID":20057,"Name":"nic","Points":10301,"X":574,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966124Z"},{"ID":20058,"Name":"CSA","Points":5971,"X":525,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966125Z"},{"ID":20059,"Name":"A33","Points":10495,"X":463,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966125Z"},{"ID":20060,"Name":"Pobozowisko","Points":10971,"X":393,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966125Z"},{"ID":20061,"Name":"Mniejsze zƂo 0027","Points":9229,"X":363,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966125Z"},{"ID":20062,"Name":"056 Kuzyn skonfiskowaƂ Drewnik","Points":10487,"X":378,"Y":569,"Continent":"K53","Bonus":2,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966126Z"},{"ID":20063,"Name":"No Way","Points":8897,"X":402,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966126Z"},{"ID":20064,"Name":"*5622*a WesoƂa","Points":10287,"X":638,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966126Z"},{"ID":20065,"Name":"0057","Points":9981,"X":444,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966126Z"},{"ID":20067,"Name":"019","Points":10178,"X":445,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966126Z"},{"ID":20068,"Name":"Westcoast.083","Points":10178,"X":396,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966127Z"},{"ID":20069,"Name":"Westcoast.109","Points":10178,"X":378,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966127Z"},{"ID":20070,"Name":"056","Points":7725,"X":433,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966127Z"},{"ID":20072,"Name":"011 Wioska barbarzyƄska","Points":10178,"X":535,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966127Z"},{"ID":20073,"Name":"[168]","Points":6625,"X":633,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966128Z"},{"ID":20074,"Name":"026.","Points":9816,"X":643,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966128Z"},{"ID":20075,"Name":"212","Points":10838,"X":577,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966128Z"},{"ID":20076,"Name":"0056","Points":9998,"X":449,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966128Z"},{"ID":20078,"Name":"pepe","Points":6048,"X":361,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966129Z"},{"ID":20079,"Name":"#0032 gram w ligę","Points":10178,"X":462,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966129Z"},{"ID":20080,"Name":"051 Wioska barbarzyƄska","Points":10301,"X":543,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966129Z"},{"ID":20081,"Name":"*INTERTWINED**","Points":9711,"X":504,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966129Z"},{"ID":20082,"Name":"Ć»elazna","Points":6502,"X":506,"Y":488,"Continent":"K45","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96613Z"},{"ID":20083,"Name":"A READY","Points":10160,"X":591,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96613Z"},{"ID":20084,"Name":"kathare","Points":9983,"X":556,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96613Z"},{"ID":20085,"Name":"OgĂłrkowy baron","Points":9835,"X":401,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96613Z"},{"ID":20086,"Name":"Wioska barbarzyƄska","Points":10470,"X":548,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966131Z"},{"ID":20087,"Name":"C012 Ankhsunamon","Points":9747,"X":623,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966131Z"},{"ID":20088,"Name":"Jednak wolę gofry","Points":10311,"X":498,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966131Z"},{"ID":20089,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8825,"X":536,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966131Z"},{"ID":20090,"Name":"sony911","Points":8998,"X":575,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966131Z"},{"ID":20091,"Name":"WiedĆșma - Dragoni","Points":8549,"X":386,"Y":423,"Continent":"K43","Bonus":1,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966132Z"},{"ID":20092,"Name":"Kentin ufam Tobie","Points":10000,"X":367,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966132Z"},{"ID":20093,"Name":"Zeta Reticuli S2","Points":10997,"X":394,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966132Z"},{"ID":20094,"Name":"*0018 Baraki","Points":9645,"X":623,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966132Z"},{"ID":20095,"Name":"A0148","Points":10362,"X":356,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966133Z"},{"ID":20096,"Name":"Sony 911","Points":10268,"X":576,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966133Z"},{"ID":20097,"Name":"003 Hello Moto","Points":10001,"X":600,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966133Z"},{"ID":20098,"Name":"0074","Points":10083,"X":559,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966133Z"},{"ID":20100,"Name":"044","Points":10887,"X":433,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966134Z"},{"ID":20101,"Name":"#021.510|488","Points":9735,"X":629,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966134Z"},{"ID":20102,"Name":"Wioska (029)","Points":8907,"X":639,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966134Z"},{"ID":20103,"Name":"Jednak wolę gofry","Points":10311,"X":493,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966135Z"},{"ID":20104,"Name":"PiekƂo to inni","Points":10160,"X":481,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966135Z"},{"ID":20105,"Name":"Fresio","Points":10106,"X":435,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966135Z"},{"ID":20106,"Name":"B.037","Points":10000,"X":642,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966136Z"},{"ID":20107,"Name":"Gattacka","Points":8844,"X":609,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966136Z"},{"ID":20108,"Name":"Jednak wolę gofry","Points":10311,"X":485,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966136Z"},{"ID":20109,"Name":"Kentin ufam Tobie","Points":10000,"X":365,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966136Z"},{"ID":20110,"Name":"Pobozowisko","Points":8331,"X":407,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966137Z"},{"ID":20111,"Name":"Yogi","Points":10019,"X":552,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966137Z"},{"ID":20112,"Name":"012 Legio I Illyricorum","Points":7816,"X":642,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966137Z"},{"ID":20113,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":531,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966137Z"},{"ID":20115,"Name":"0019","Points":10211,"X":548,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966138Z"},{"ID":20116,"Name":"028. Hakerrrrr","Points":6657,"X":576,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966138Z"},{"ID":20117,"Name":"0369","Points":10316,"X":561,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966138Z"},{"ID":20119,"Name":"065","Points":10237,"X":465,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966139Z"},{"ID":20120,"Name":"0031","Points":9490,"X":508,"Y":497,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966139Z"},{"ID":20121,"Name":"021 | PALESTINA | Msqt [*]","Points":7939,"X":630,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966139Z"},{"ID":20122,"Name":"Wioska barbarzyƄska","Points":9994,"X":508,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966139Z"},{"ID":20123,"Name":"Wioska barbarzyƄska","Points":8986,"X":622,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96614Z"},{"ID":20124,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9640,"X":501,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96614Z"},{"ID":20125,"Name":"#063.","Points":9735,"X":622,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96614Z"},{"ID":20126,"Name":"Wioska 3","Points":3086,"X":382,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":699343887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966141Z"},{"ID":20127,"Name":"a moĆŒe off ? :)","Points":10377,"X":634,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966141Z"},{"ID":20128,"Name":"Pobozowisko","Points":8729,"X":408,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966141Z"},{"ID":20130,"Name":"0066","Points":10056,"X":456,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966142Z"},{"ID":20132,"Name":"084","Points":6877,"X":365,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966142Z"},{"ID":20133,"Name":"Ave Why!","Points":9689,"X":491,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966142Z"},{"ID":20134,"Name":"011","Points":9809,"X":358,"Y":517,"Continent":"K53","Bonus":3,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966142Z"},{"ID":20135,"Name":"[014]","Points":9809,"X":636,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966143Z"},{"ID":20136,"Name":"*0031 Baraki","Points":10330,"X":625,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966143Z"},{"ID":20137,"Name":"018 Tronjheim","Points":10160,"X":626,"Y":435,"Continent":"K46","Bonus":5,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966143Z"},{"ID":20138,"Name":"015","Points":10220,"X":605,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966143Z"},{"ID":20139,"Name":"25. Wioska 25","Points":9843,"X":373,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966144Z"},{"ID":20140,"Name":"011","Points":3962,"X":387,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966144Z"},{"ID":20141,"Name":"Wioska barbarzyƄska","Points":9994,"X":506,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966144Z"},{"ID":20142,"Name":"Wioska barbarzyƄska","Points":9994,"X":514,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966145Z"},{"ID":20143,"Name":"020","Points":9899,"X":444,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966145Z"},{"ID":20144,"Name":"Wioska barbarzyƄska","Points":9038,"X":387,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966145Z"},{"ID":20145,"Name":"059","Points":9345,"X":363,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966146Z"},{"ID":20146,"Name":"025","Points":10311,"X":590,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966146Z"},{"ID":20147,"Name":"066","Points":10237,"X":468,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966146Z"},{"ID":20148,"Name":"0046","Points":9782,"X":621,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966146Z"},{"ID":20149,"Name":"0021","Points":10160,"X":537,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966146Z"},{"ID":20150,"Name":"Ulu-mulu","Points":3219,"X":415,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966147Z"},{"ID":20151,"Name":"a moĆŒe off ? :)","Points":9329,"X":633,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966147Z"},{"ID":20152,"Name":"0112","Points":9002,"X":436,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966147Z"},{"ID":20153,"Name":"093","Points":10311,"X":584,"Y":385,"Continent":"K35","Bonus":7,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966147Z"},{"ID":20154,"Name":"A0186","Points":10362,"X":360,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966148Z"},{"ID":20155,"Name":"025 Wioska barbarzyƄska","Points":10068,"X":538,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966148Z"},{"ID":20156,"Name":"012 Pole Mokotowskie","Points":4400,"X":538,"Y":468,"Continent":"K45","Bonus":0,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966148Z"},{"ID":20157,"Name":"Jednak wolę gofry","Points":10311,"X":495,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966148Z"},{"ID":20158,"Name":"122","Points":10495,"X":490,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966149Z"},{"ID":20159,"Name":"012","Points":9735,"X":635,"Y":549,"Continent":"K56","Bonus":3,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966149Z"},{"ID":20160,"Name":"067","Points":9994,"X":471,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966149Z"},{"ID":20161,"Name":"A0143","Points":10362,"X":360,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966149Z"},{"ID":20162,"Name":"|X| Roguebell","Points":9191,"X":467,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96615Z"},{"ID":20163,"Name":"Wioska","Points":10178,"X":370,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96615Z"},{"ID":20164,"Name":"Ulu-mulu","Points":9173,"X":420,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96615Z"},{"ID":20165,"Name":"ƚpij sƂodko naleƛniczku","Points":9670,"X":483,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96615Z"},{"ID":20166,"Name":"Osada koczownikĂłw","Points":1244,"X":376,"Y":429,"Continent":"K43","Bonus":5,"PlayerID":699644054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96615Z"},{"ID":20167,"Name":"Westcoast.098","Points":10178,"X":378,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966151Z"},{"ID":20169,"Name":"Ave Why!","Points":9809,"X":470,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966151Z"},{"ID":20170,"Name":"57. Wioska 57","Points":6757,"X":366,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966151Z"},{"ID":20171,"Name":"Pobozowisko","Points":9653,"X":386,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966151Z"},{"ID":20172,"Name":"#0040","Points":10495,"X":542,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966152Z"},{"ID":20173,"Name":"Jednak wolę gofry","Points":9266,"X":484,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966152Z"},{"ID":20174,"Name":"Konfederacja +","Points":10001,"X":456,"Y":368,"Continent":"K34","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966152Z"},{"ID":20175,"Name":"0408","Points":9384,"X":540,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966152Z"},{"ID":20176,"Name":"034","Points":7945,"X":483,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966153Z"},{"ID":20177,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966153Z"},{"ID":20178,"Name":"[B]_[202] Dejv.oldplyr","Points":9545,"X":431,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966153Z"},{"ID":20179,"Name":"BoOmBaa..","Points":9450,"X":441,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966153Z"},{"ID":20180,"Name":"0041","Points":10311,"X":453,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966153Z"},{"ID":20181,"Name":"05. Wioska 5","Points":10011,"X":372,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966154Z"},{"ID":20182,"Name":"039....STRAZAK","Points":10273,"X":459,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966154Z"},{"ID":20183,"Name":"079","Points":5806,"X":433,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966154Z"},{"ID":20184,"Name":"Kentin ufam Tobie","Points":10000,"X":367,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966154Z"},{"ID":20185,"Name":"016","Points":9835,"X":611,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966155Z"},{"ID":20186,"Name":"024 023","Points":10001,"X":533,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966155Z"},{"ID":20187,"Name":"BoOmBaa..A","Points":6466,"X":443,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966155Z"},{"ID":20188,"Name":"Wioska 1","Points":6029,"X":382,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699343887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966156Z"},{"ID":20189,"Name":"F 003","Points":10050,"X":637,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966156Z"},{"ID":20190,"Name":"~~020~~","Points":9818,"X":598,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966156Z"},{"ID":20191,"Name":"037","Points":9809,"X":366,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966156Z"},{"ID":20192,"Name":"0016 MzM","Points":9258,"X":621,"Y":565,"Continent":"K56","Bonus":7,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966157Z"},{"ID":20193,"Name":"BoOmBaa..","Points":3096,"X":442,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966157Z"},{"ID":20194,"Name":"025 026","Points":10001,"X":536,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966157Z"},{"ID":20195,"Name":"012 Wioska barbarzyƄska","Points":6340,"X":567,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966157Z"},{"ID":20196,"Name":"Jednak wolę gofry","Points":10311,"X":497,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966158Z"},{"ID":20197,"Name":"129","Points":5265,"X":475,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966158Z"},{"ID":20198,"Name":"a moĆŒe off ? :)","Points":9367,"X":618,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966158Z"},{"ID":20199,"Name":"033...strazak","Points":10559,"X":461,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966159Z"},{"ID":20200,"Name":"kathare","Points":10362,"X":552,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966159Z"},{"ID":20201,"Name":"Fresio","Points":9924,"X":434,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966159Z"},{"ID":20202,"Name":"*3 Myszki Harcują","Points":10047,"X":588,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966159Z"},{"ID":20203,"Name":"Wioska barbarzyƄska","Points":7626,"X":505,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96616Z"},{"ID":20204,"Name":"007","Points":9761,"X":631,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96616Z"},{"ID":20206,"Name":"Wioska barbarzyƄska","Points":8043,"X":372,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699326171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96616Z"},{"ID":20207,"Name":"~~038~~","Points":9750,"X":596,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966161Z"},{"ID":20208,"Name":"*0012 Baraki","Points":10251,"X":620,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966161Z"},{"ID":20209,"Name":"008Gąsiory","Points":9606,"X":450,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966161Z"},{"ID":20210,"Name":"WiedĆșma - Honolulu","Points":9150,"X":381,"Y":420,"Continent":"K43","Bonus":9,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966161Z"},{"ID":20212,"Name":"024","Points":9721,"X":627,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966162Z"},{"ID":20213,"Name":"Wioska barbarzyƄska","Points":10481,"X":633,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966162Z"},{"ID":20214,"Name":"037","Points":10918,"X":424,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966162Z"},{"ID":20215,"Name":"068","Points":10237,"X":476,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966163Z"},{"ID":20216,"Name":"|X| Caveham","Points":10495,"X":468,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966163Z"},{"ID":20217,"Name":"Kentin ufam Tobie","Points":10000,"X":371,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966163Z"},{"ID":20218,"Name":"W.08","Points":10232,"X":582,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966163Z"},{"ID":20219,"Name":"-056-","Points":5638,"X":377,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966164Z"},{"ID":20220,"Name":"014 181","Points":10049,"X":358,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966164Z"},{"ID":20221,"Name":"Kentin ufam Tobie","Points":10000,"X":366,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966164Z"},{"ID":20222,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":558,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966164Z"},{"ID":20223,"Name":"A014","Points":9858,"X":477,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966165Z"},{"ID":20224,"Name":"015","Points":9646,"X":588,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966165Z"},{"ID":20225,"Name":"062","Points":4675,"X":427,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966165Z"},{"ID":20226,"Name":"Pobozowisko","Points":9319,"X":398,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966166Z"},{"ID":20227,"Name":"031 181","Points":9160,"X":360,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966166Z"},{"ID":20228,"Name":"a moĆŒe off ? :)","Points":9489,"X":618,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966166Z"},{"ID":20229,"Name":"063 #Ć»WMP","Points":9400,"X":370,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966166Z"},{"ID":20231,"Name":"Westcoast.101","Points":10178,"X":376,"Y":430,"Continent":"K43","Bonus":7,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966166Z"},{"ID":20233,"Name":"A0187","Points":10362,"X":360,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966167Z"},{"ID":20234,"Name":"0014 MzM","Points":9258,"X":613,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966167Z"},{"ID":20235,"Name":"W.181/19","Points":10242,"X":639,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966167Z"},{"ID":20236,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":525,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966167Z"},{"ID":20237,"Name":"081","Points":10378,"X":482,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966168Z"},{"ID":20238,"Name":"028","Points":9809,"X":360,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966168Z"},{"ID":20239,"Name":"0118","Points":9735,"X":434,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966168Z"},{"ID":20240,"Name":"Gattacka","Points":9751,"X":608,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966169Z"},{"ID":20241,"Name":"38. Wioska 38","Points":9672,"X":376,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966169Z"},{"ID":20242,"Name":"0055","Points":10311,"X":460,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966169Z"},{"ID":20243,"Name":"Gattacka","Points":9747,"X":610,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966169Z"},{"ID":20244,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":511,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96617Z"},{"ID":20245,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":524,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96617Z"},{"ID":20246,"Name":"06. Wioska 6","Points":8184,"X":371,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96617Z"},{"ID":20247,"Name":"046","Points":10216,"X":604,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966171Z"},{"ID":20248,"Name":"023","Points":9883,"X":363,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966171Z"},{"ID":20249,"Name":"VN Killua Zoldyck","Points":9643,"X":467,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966171Z"},{"ID":20250,"Name":"058","Points":3779,"X":364,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966171Z"},{"ID":20251,"Name":"~~037~~","Points":9745,"X":593,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966172Z"},{"ID":20252,"Name":"Mniejsze zƂo 0028","Points":7834,"X":364,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966172Z"},{"ID":20253,"Name":"030 Wioska barbarzyƄska","Points":9976,"X":540,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966172Z"},{"ID":20254,"Name":"Wioska barbarzyƄska","Points":10484,"X":635,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966172Z"},{"ID":20255,"Name":"-040-","Points":9428,"X":387,"Y":579,"Continent":"K53","Bonus":2,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966173Z"},{"ID":20256,"Name":"002","Points":10211,"X":604,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966173Z"},{"ID":20257,"Name":"Jehu_Kingdom_35_","Points":9993,"X":627,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966173Z"},{"ID":20258,"Name":"014","Points":9519,"X":588,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966173Z"},{"ID":20259,"Name":".Wioska barbarzyƄska","Points":6509,"X":626,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966174Z"},{"ID":20260,"Name":"072","Points":7065,"X":430,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966174Z"},{"ID":20261,"Name":"A0144","Points":10362,"X":358,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966174Z"},{"ID":20262,"Name":"Wioska barbarzyƄska","Points":10487,"X":629,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966174Z"},{"ID":20263,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9049,"X":488,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966175Z"},{"ID":20264,"Name":"Ow Konfederacja","Points":10273,"X":606,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966175Z"},{"ID":20265,"Name":"0053","Points":9825,"X":614,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966175Z"},{"ID":20266,"Name":"Pobozowisko","Points":9650,"X":405,"Y":606,"Continent":"K64","Bonus":5,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966175Z"},{"ID":20267,"Name":"Wioska 4","Points":3086,"X":382,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":699343887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966176Z"},{"ID":20268,"Name":"Wioska barbarzyƄska","Points":9994,"X":513,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966176Z"},{"ID":20269,"Name":"Astapor","Points":10362,"X":466,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966176Z"},{"ID":20270,"Name":"Kentin ufam Tobie","Points":10000,"X":367,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966176Z"},{"ID":20271,"Name":"A0188","Points":10362,"X":364,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966176Z"},{"ID":20272,"Name":"Jednak wolę gofry","Points":9968,"X":490,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966177Z"},{"ID":20273,"Name":"OgĂłrkowy baron","Points":9835,"X":401,"Y":396,"Continent":"K34","Bonus":2,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966177Z"},{"ID":20274,"Name":"Knowhere","Points":4994,"X":357,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966177Z"},{"ID":20275,"Name":"tutaj","Points":9251,"X":387,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966177Z"},{"ID":20276,"Name":"005","Points":10484,"X":370,"Y":546,"Continent":"K53","Bonus":5,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966178Z"},{"ID":20277,"Name":"001. Las Sherwood","Points":10362,"X":449,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966178Z"},{"ID":20278,"Name":"WE ARE READY!","Points":9624,"X":593,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966178Z"},{"ID":20279,"Name":"049.","Points":10066,"X":469,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966178Z"},{"ID":20280,"Name":"Pobozowisko","Points":10951,"X":399,"Y":596,"Continent":"K53","Bonus":4,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966179Z"},{"ID":20281,"Name":".:091:. ƁOBUZIK","Points":5786,"X":553,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966179Z"},{"ID":20282,"Name":".Krakers. 006","Points":2064,"X":361,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966179Z"},{"ID":20283,"Name":"043","Points":5707,"X":364,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966179Z"},{"ID":20284,"Name":"C 022","Points":4910,"X":589,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96618Z"},{"ID":20285,"Name":"::: B ::: I","Points":4155,"X":365,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96618Z"},{"ID":20286,"Name":"0238","Points":9847,"X":532,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96618Z"},{"ID":20287,"Name":".Krakers. 001","Points":5136,"X":364,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96618Z"},{"ID":20288,"Name":"015","Points":10252,"X":610,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96618Z"},{"ID":20289,"Name":"Kentin ufam Tobie","Points":10000,"X":365,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966181Z"},{"ID":20290,"Name":"018","Points":9362,"X":444,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966181Z"},{"ID":20291,"Name":"aaaa","Points":9899,"X":474,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966181Z"},{"ID":20292,"Name":"Knowhere","Points":10484,"X":382,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966181Z"},{"ID":20293,"Name":"~~026~~","Points":9794,"X":595,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966182Z"},{"ID":20294,"Name":"Ave Why!","Points":7473,"X":455,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966182Z"},{"ID":20295,"Name":"009. Manchester","Points":9835,"X":634,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966182Z"},{"ID":20296,"Name":"004 Legio I Flavia Constantia R","Points":5794,"X":640,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966182Z"},{"ID":20297,"Name":"110","Points":10495,"X":478,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966183Z"},{"ID":20298,"Name":"c 0013","Points":10237,"X":411,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966183Z"},{"ID":20299,"Name":"*2*","Points":10061,"X":580,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966183Z"},{"ID":20300,"Name":"026 025","Points":10001,"X":542,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966183Z"},{"ID":20301,"Name":"027 028","Points":10001,"X":538,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966184Z"},{"ID":20302,"Name":"Westcoast.081","Points":10178,"X":397,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966184Z"},{"ID":20303,"Name":"Bagdad","Points":8775,"X":424,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966184Z"},{"ID":20304,"Name":"A0288","Points":10362,"X":358,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966184Z"},{"ID":20305,"Name":"0006","Points":10359,"X":480,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966184Z"},{"ID":20306,"Name":"213","Points":8972,"X":579,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966185Z"},{"ID":20307,"Name":"009 Wioska barbarzyƄska","Points":4773,"X":566,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966185Z"},{"ID":20308,"Name":"021.","Points":9830,"X":634,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966185Z"},{"ID":20309,"Name":"016","Points":10216,"X":607,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966185Z"},{"ID":20310,"Name":"=025= Wioska barbarzyƄska","Points":7741,"X":628,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966186Z"},{"ID":20311,"Name":"055","Points":7979,"X":439,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966186Z"},{"ID":20312,"Name":"056","Points":9835,"X":440,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966186Z"},{"ID":20313,"Name":"019","Points":5468,"X":430,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966186Z"},{"ID":20314,"Name":"A015","Points":9474,"X":471,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966187Z"},{"ID":20315,"Name":"01. Wioska 1","Points":9358,"X":373,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966187Z"},{"ID":20316,"Name":"Pobozowisko","Points":9126,"X":402,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966187Z"},{"ID":20317,"Name":".:022:. ƁOBUZIK","Points":10252,"X":554,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966187Z"},{"ID":20318,"Name":"005","Points":9395,"X":384,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966187Z"},{"ID":20319,"Name":"Lord Lord Franek .#203","Points":10362,"X":515,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966188Z"},{"ID":20320,"Name":"Jaaa","Points":9677,"X":615,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966188Z"},{"ID":20321,"Name":"Pobozowisko","Points":10971,"X":391,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966188Z"},{"ID":20322,"Name":"042","Points":10221,"X":609,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966188Z"},{"ID":20323,"Name":"*INTERTWINED*","Points":9711,"X":510,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966189Z"},{"ID":20324,"Name":"016. Smoke","Points":8911,"X":636,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966189Z"},{"ID":20325,"Name":"keepo","Points":4051,"X":477,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966189Z"},{"ID":20327,"Name":"Salamony","Points":6302,"X":626,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":849095778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966189Z"},{"ID":20328,"Name":"#044","Points":10393,"X":492,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96619Z"},{"ID":20329,"Name":"::: A ::: II","Points":4987,"X":363,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96619Z"},{"ID":20330,"Name":"013 Laleczka Chucky","Points":10001,"X":539,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96619Z"},{"ID":20331,"Name":"Gattacka","Points":9745,"X":612,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96619Z"},{"ID":20332,"Name":"Pobozowisko","Points":10951,"X":399,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96619Z"},{"ID":20333,"Name":"a moĆŒe off ? :)","Points":9353,"X":632,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966191Z"},{"ID":20334,"Name":"0010 MzM","Points":9258,"X":618,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966191Z"},{"ID":20335,"Name":"South K35","Points":10042,"X":551,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966191Z"},{"ID":20337,"Name":".Wioska barbarzyƄska","Points":5788,"X":627,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966191Z"},{"ID":20338,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9545,"X":491,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966192Z"},{"ID":20339,"Name":"Lord Lord Franek .#198","Points":10362,"X":514,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966192Z"},{"ID":20340,"Name":"kathare","Points":10495,"X":548,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966192Z"},{"ID":20341,"Name":"Syringa vulgaris","Points":9856,"X":494,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966192Z"},{"ID":20342,"Name":"Jan 019 K","Points":9425,"X":640,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966193Z"},{"ID":20343,"Name":"020","Points":9835,"X":610,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966193Z"},{"ID":20344,"Name":"c Wioska","Points":7166,"X":416,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966193Z"},{"ID":20345,"Name":"170","Points":10311,"X":573,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966193Z"},{"ID":20346,"Name":"0381","Points":10019,"X":583,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966193Z"},{"ID":20347,"Name":"062","Points":9809,"X":359,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966194Z"},{"ID":20348,"Name":"004","Points":9993,"X":360,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966194Z"},{"ID":20349,"Name":"015 Legio I Flavia Virtutis (G)","Points":10034,"X":644,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966194Z"},{"ID":20350,"Name":"Mniejsze zƂo 0060","Points":6218,"X":363,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966194Z"},{"ID":20351,"Name":"- 330 - RR","Points":9878,"X":599,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966195Z"},{"ID":20352,"Name":"Kentin ufam Tobie","Points":10000,"X":375,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966195Z"},{"ID":20353,"Name":"010 Wioska barbarzyƄska","Points":5348,"X":569,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966195Z"},{"ID":20355,"Name":"030","Points":10311,"X":585,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966195Z"},{"ID":20356,"Name":"Taran","Points":9364,"X":545,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966196Z"},{"ID":20358,"Name":"#0012","Points":10495,"X":550,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966196Z"},{"ID":20359,"Name":"023 Legio I Martia","Points":3934,"X":641,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966196Z"},{"ID":20360,"Name":"BoOmBaa..","Points":3553,"X":440,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966196Z"},{"ID":20361,"Name":"Lord Lord Franek .#205","Points":10362,"X":519,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966197Z"},{"ID":20362,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":520,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966197Z"},{"ID":20363,"Name":"Pobozowisko","Points":10863,"X":388,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966197Z"},{"ID":20364,"Name":"0380","Points":10019,"X":582,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966197Z"},{"ID":20365,"Name":"lady anima","Points":10451,"X":512,"Y":573,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966197Z"},{"ID":20366,"Name":"0039","Points":9746,"X":614,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966198Z"},{"ID":20367,"Name":"Gattacka","Points":9367,"X":610,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966198Z"},{"ID":20368,"Name":"Ave Why!","Points":9320,"X":467,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966198Z"},{"ID":20369,"Name":"Ulu-mulu","Points":2262,"X":418,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966198Z"},{"ID":20370,"Name":"- 331 - RR","Points":9817,"X":594,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966199Z"},{"ID":20371,"Name":"a moĆŒe off ? :)","Points":8751,"X":636,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966199Z"},{"ID":20372,"Name":"074","Points":9761,"X":642,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966199Z"},{"ID":20373,"Name":"[022]","Points":9809,"X":635,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966199Z"},{"ID":20374,"Name":"0250","Points":10019,"X":535,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9662Z"},{"ID":20375,"Name":"040","Points":8784,"X":440,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9662Z"},{"ID":20376,"Name":"069","Points":10237,"X":477,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9662Z"},{"ID":20377,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":518,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9662Z"},{"ID":20378,"Name":"Wioska barbarzyƄska","Points":9302,"X":625,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9662Z"},{"ID":20379,"Name":"Wioska barbarzyƄska","Points":10068,"X":525,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966201Z"},{"ID":20380,"Name":"Pobozowisko","Points":8783,"X":390,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966201Z"},{"ID":20381,"Name":"aaaa","Points":10178,"X":467,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966201Z"},{"ID":20382,"Name":"kathare","Points":10362,"X":557,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966202Z"},{"ID":20383,"Name":"49. Wioska 49","Points":6180,"X":364,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966202Z"},{"ID":20384,"Name":"073 Tu się nie ƛpi harry88","Points":10475,"X":382,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966202Z"},{"ID":20385,"Name":"WB003","Points":9345,"X":581,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966202Z"},{"ID":20386,"Name":"Pobozowisko","Points":10966,"X":398,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966203Z"},{"ID":20387,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":531,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966203Z"},{"ID":20388,"Name":"094. Zama Regia","Points":8365,"X":634,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966203Z"},{"ID":20389,"Name":"0120","Points":7887,"X":436,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966203Z"},{"ID":20390,"Name":"Oxalis acetosella","Points":9513,"X":492,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966204Z"},{"ID":20391,"Name":"MojeSzczytToTwĂłjDno","Points":10475,"X":521,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966204Z"},{"ID":20392,"Name":"Kentin ufam Tobie","Points":10000,"X":371,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966204Z"},{"ID":20393,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":524,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966204Z"},{"ID":20395,"Name":"c Robcio 80004","Points":9311,"X":414,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966205Z"},{"ID":20396,"Name":"A0163","Points":10362,"X":361,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966205Z"},{"ID":20397,"Name":"South K35","Points":10042,"X":550,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966205Z"},{"ID":20398,"Name":"~~LatającyHolender~~","Points":10143,"X":600,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966205Z"},{"ID":20399,"Name":"0386","Points":10019,"X":586,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966206Z"},{"ID":20400,"Name":"001 | PALESTINA","Points":9544,"X":633,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966206Z"},{"ID":20401,"Name":"050","Points":9753,"X":612,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966206Z"},{"ID":20402,"Name":"Za sciana","Points":9752,"X":359,"Y":496,"Continent":"K43","Bonus":7,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966206Z"},{"ID":20403,"Name":"Wioska barbarzyƄska","Points":5777,"X":378,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966207Z"},{"ID":20404,"Name":"Wioska barbarzyƄska","Points":9994,"X":508,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966207Z"},{"ID":20405,"Name":"Jednak wolę gofry","Points":10290,"X":499,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966207Z"},{"ID":20406,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9211,"X":532,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966207Z"},{"ID":20407,"Name":"002KątĂłwka aku","Points":9708,"X":446,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966208Z"},{"ID":20408,"Name":"B006","Points":10495,"X":603,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966208Z"},{"ID":20409,"Name":"Gattacka","Points":9357,"X":608,"Y":414,"Continent":"K46","Bonus":5,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966208Z"},{"ID":20410,"Name":"--3. Zadupie","Points":10290,"X":390,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966208Z"},{"ID":20411,"Name":"A0208","Points":10362,"X":366,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966208Z"},{"ID":20412,"Name":"017 - Mroczna Osada","Points":10329,"X":626,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966209Z"},{"ID":20413,"Name":"0025 MzM","Points":9258,"X":638,"Y":460,"Continent":"K46","Bonus":2,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966209Z"},{"ID":20414,"Name":"109 Wioska barbarzyƄska","Points":10001,"X":536,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966209Z"},{"ID":20415,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":523,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966209Z"},{"ID":20417,"Name":"081","Points":6255,"X":641,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96621Z"},{"ID":20419,"Name":"A005","Points":9808,"X":477,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96621Z"},{"ID":20420,"Name":"42. Wioska 42","Points":7800,"X":374,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96621Z"},{"ID":20421,"Name":"B017","Points":10495,"X":607,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96621Z"},{"ID":20422,"Name":"B.061","Points":10000,"X":642,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966211Z"},{"ID":20423,"Name":"Jehu_Kingdom_36_","Points":9993,"X":628,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966211Z"},{"ID":20424,"Name":"03. Wioska 3","Points":9643,"X":372,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966211Z"},{"ID":20425,"Name":".050.","Points":10160,"X":483,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966211Z"},{"ID":20426,"Name":"000002","Points":10362,"X":584,"Y":614,"Continent":"K65","Bonus":4,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966212Z"},{"ID":20428,"Name":"Pobozowisko","Points":10971,"X":398,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966212Z"},{"ID":20429,"Name":"A0149","Points":10362,"X":356,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966212Z"},{"ID":20430,"Name":"028 Wioska barbarzyƄska","Points":10068,"X":539,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966212Z"},{"ID":20431,"Name":"23. Wioska 23","Points":8316,"X":365,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966213Z"},{"ID":20432,"Name":"a moĆŒe off ? :)","Points":9969,"X":620,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966213Z"},{"ID":20433,"Name":"A0189","Points":10362,"X":357,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966213Z"},{"ID":20435,"Name":"102","Points":10495,"X":485,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966213Z"},{"ID":20436,"Name":"017 | PALESTINA | Msqt [*]","Points":9544,"X":627,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966214Z"},{"ID":20437,"Name":"032...strazak","Points":10444,"X":460,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966214Z"},{"ID":20438,"Name":"yyyy","Points":10178,"X":492,"Y":362,"Continent":"K34","Bonus":2,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966214Z"},{"ID":20440,"Name":"060","Points":7542,"X":420,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966214Z"},{"ID":20441,"Name":"~~014~~","Points":9816,"X":599,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966215Z"},{"ID":20442,"Name":"A0164","Points":10362,"X":360,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966215Z"},{"ID":20443,"Name":"017","Points":10217,"X":608,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966215Z"},{"ID":20444,"Name":"Wioska barbarzyƄska","Points":6337,"X":542,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":7158871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966215Z"},{"ID":20445,"Name":"::: A :::","Points":6635,"X":364,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966216Z"},{"ID":20446,"Name":"SSJ 023","Points":9761,"X":512,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966216Z"},{"ID":20447,"Name":"Zeta Reticuli S2","Points":10795,"X":395,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966216Z"},{"ID":20448,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9647,"X":480,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966216Z"},{"ID":20449,"Name":"~~001~~","Points":9694,"X":599,"Y":605,"Continent":"K65","Bonus":8,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966217Z"},{"ID":20450,"Name":"Pobozowisko","Points":8613,"X":410,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966217Z"},{"ID":20451,"Name":"ZachĂłd - 015","Points":6646,"X":388,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966217Z"},{"ID":20452,"Name":"Ave Why!","Points":10362,"X":462,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966217Z"},{"ID":20453,"Name":"OgĂłrkowy baron","Points":9835,"X":401,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966218Z"},{"ID":20454,"Name":"0010","Points":10168,"X":579,"Y":386,"Continent":"K35","Bonus":1,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966218Z"},{"ID":20455,"Name":"0379","Points":10019,"X":582,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966218Z"},{"ID":20456,"Name":"A0141","Points":10362,"X":356,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966218Z"},{"ID":20457,"Name":"Kentin ufam Tobie","Points":10014,"X":372,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966219Z"},{"ID":20458,"Name":"Wioska barbarzyƄska","Points":10636,"X":630,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966219Z"},{"ID":20459,"Name":"070","Points":8639,"X":359,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966219Z"},{"ID":20460,"Name":"c 002 Wioska","Points":10300,"X":410,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966219Z"},{"ID":20461,"Name":"Zeta Reticuli S2","Points":10997,"X":393,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966219Z"},{"ID":20462,"Name":"045. Olisipo","Points":9241,"X":636,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96622Z"},{"ID":20463,"Name":"068","Points":8426,"X":505,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96622Z"},{"ID":20464,"Name":"Pigi 1","Points":12154,"X":620,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96622Z"},{"ID":20465,"Name":"Wioska barbarzyƄska","Points":9191,"X":623,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966221Z"},{"ID":20466,"Name":"Kentin ufam Tobie","Points":10000,"X":370,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966221Z"},{"ID":20468,"Name":"006","Points":9993,"X":367,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966221Z"},{"ID":20469,"Name":"Deveste ufam Tobie","Points":8366,"X":437,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966221Z"},{"ID":20470,"Name":"006","Points":4339,"X":386,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966222Z"},{"ID":20471,"Name":"616|426 Wioska barbarzyƄska17","Points":9721,"X":616,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966222Z"},{"ID":20472,"Name":"011","Points":7617,"X":362,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966222Z"},{"ID":20473,"Name":"Wioska barbarzyƄska","Points":6934,"X":357,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966222Z"},{"ID":20474,"Name":"002 PƂaska Kotlina","Points":9847,"X":623,"Y":425,"Continent":"K46","Bonus":2,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966222Z"},{"ID":20475,"Name":"024 181","Points":9807,"X":357,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966223Z"},{"ID":20476,"Name":"Pobozowisko","Points":10957,"X":385,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966223Z"},{"ID":20478,"Name":"M181_058","Points":9886,"X":371,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966223Z"},{"ID":20480,"Name":"030 roni21","Points":10282,"X":640,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966223Z"},{"ID":20481,"Name":"0003","Points":5297,"X":479,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699117178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966224Z"},{"ID":20482,"Name":"[C]_[004] Dejv.oldplyr","Points":10495,"X":358,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966224Z"},{"ID":20483,"Name":"041","Points":7298,"X":501,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966224Z"},{"ID":20484,"Name":"Wioska barbarzyƄska","Points":10487,"X":630,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966224Z"},{"ID":20485,"Name":"011 Miyagi","Points":10160,"X":640,"Y":480,"Continent":"K46","Bonus":3,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966225Z"},{"ID":20486,"Name":"Westcoast.107","Points":10178,"X":372,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966225Z"},{"ID":20487,"Name":"Pobozowisko","Points":10957,"X":403,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966225Z"},{"ID":20488,"Name":"A017","Points":7071,"X":584,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966225Z"},{"ID":20489,"Name":"Ulu-mulu","Points":3277,"X":414,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966225Z"},{"ID":20490,"Name":"057","Points":10146,"X":441,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966226Z"},{"ID":20491,"Name":"032 181","Points":8326,"X":357,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966226Z"},{"ID":20492,"Name":"A36","Points":9860,"X":474,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966226Z"},{"ID":20493,"Name":"010 KTW","Points":10495,"X":625,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966226Z"},{"ID":20494,"Name":"0028","Points":10019,"X":537,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966227Z"},{"ID":20495,"Name":"0039","Points":10015,"X":449,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966227Z"},{"ID":20496,"Name":"kathare","Points":10285,"X":551,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966227Z"},{"ID":20497,"Name":"~~034~~","Points":9491,"X":593,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966227Z"},{"ID":20498,"Name":"0124","Points":10083,"X":533,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966228Z"},{"ID":20499,"Name":"089. Zatoka Szara","Points":10362,"X":636,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966228Z"},{"ID":20500,"Name":"036","Points":9809,"X":365,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966228Z"},{"ID":20501,"Name":"005.","Points":9656,"X":638,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966228Z"},{"ID":20502,"Name":"0064","Points":9150,"X":639,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966229Z"},{"ID":20503,"Name":"Wioska barbarzyƄska","Points":2287,"X":363,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966229Z"},{"ID":20504,"Name":"033 181","Points":8099,"X":360,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966229Z"},{"ID":20505,"Name":"Wioska barbarzyƄska","Points":9924,"X":525,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966229Z"},{"ID":20506,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":557,"Y":368,"Continent":"K35","Bonus":6,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96623Z"},{"ID":20507,"Name":"Majin Buu 012","Points":9357,"X":438,"Y":563,"Continent":"K54","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96623Z"},{"ID":20508,"Name":"072","Points":7389,"X":363,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96623Z"},{"ID":20509,"Name":"Kentin ufam Tobie","Points":10000,"X":373,"Y":445,"Continent":"K43","Bonus":5,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96623Z"},{"ID":20511,"Name":"Wioska barbarzyƄska","Points":2574,"X":394,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":6171569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966231Z"},{"ID":20512,"Name":"SSJ 032","Points":9761,"X":510,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966231Z"},{"ID":20513,"Name":"Pobozowisko","Points":10393,"X":392,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966231Z"},{"ID":20514,"Name":"Ow Konfederacja","Points":10061,"X":600,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966231Z"},{"ID":20515,"Name":"005 Wioska barbarzyƄska","Points":4883,"X":568,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966232Z"},{"ID":20516,"Name":"Skellige","Points":10068,"X":529,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966232Z"},{"ID":20517,"Name":"0038","Points":8615,"X":615,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966232Z"},{"ID":20518,"Name":"004 181","Points":9806,"X":355,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966232Z"},{"ID":20519,"Name":"075","Points":6221,"X":366,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966233Z"},{"ID":20520,"Name":"107","Points":7772,"X":443,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966233Z"},{"ID":20521,"Name":"#028.517|500","Points":9735,"X":636,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966233Z"},{"ID":20522,"Name":"A0076","Points":10362,"X":366,"Y":468,"Continent":"K43","Bonus":3,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966233Z"},{"ID":20523,"Name":"Kentin ufam Tobie","Points":10000,"X":367,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966234Z"},{"ID":20524,"Name":"A0190","Points":10362,"X":361,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966234Z"},{"ID":20525,"Name":"Wioska barbarzyƄska","Points":6992,"X":521,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966234Z"},{"ID":20526,"Name":"012 181","Points":10057,"X":359,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966234Z"},{"ID":20527,"Name":"005","Points":4168,"X":429,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966235Z"},{"ID":20528,"Name":"ADEN","Points":9730,"X":581,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966235Z"},{"ID":20529,"Name":"ETAT Z POƚREDNIAKA","Points":7973,"X":423,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966235Z"},{"ID":20530,"Name":"Wioska (035)","Points":6060,"X":637,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966235Z"},{"ID":20531,"Name":"c 001 Wioskaqqqqqqqqqqqqqqqqqqqq","Points":10083,"X":410,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966236Z"},{"ID":20532,"Name":"ETAT Z POƚREDNIAKA","Points":7419,"X":426,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966236Z"},{"ID":20533,"Name":"013 181","Points":9296,"X":359,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966236Z"},{"ID":20534,"Name":"Wioska barbarzyƄska","Points":8998,"X":622,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966236Z"},{"ID":20535,"Name":"Fresio","Points":9907,"X":435,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966236Z"},{"ID":20536,"Name":"086","Points":5962,"X":366,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966237Z"},{"ID":20537,"Name":"kathare","Points":10362,"X":547,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966237Z"},{"ID":20538,"Name":"007 181","Points":10049,"X":356,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966237Z"},{"ID":20539,"Name":"a moĆŒe off ? :)","Points":9348,"X":637,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966237Z"},{"ID":20540,"Name":"SSJ 058","Points":9281,"X":515,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966238Z"},{"ID":20541,"Name":"A005","Points":7502,"X":598,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966238Z"},{"ID":20542,"Name":"B008","Points":10164,"X":601,"Y":405,"Continent":"K46","Bonus":7,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966238Z"},{"ID":20543,"Name":"030","Points":5687,"X":642,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966238Z"},{"ID":20544,"Name":"074 Największy dzban","Points":10490,"X":377,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966239Z"},{"ID":20545,"Name":"K34 - [083] Before Land","Points":10259,"X":447,"Y":367,"Continent":"K34","Bonus":9,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966239Z"},{"ID":20548,"Name":"0103","Points":7091,"X":420,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966239Z"},{"ID":20549,"Name":"001 VC Vandip","Points":7866,"X":392,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966239Z"},{"ID":20550,"Name":"024","Points":10229,"X":448,"Y":633,"Continent":"K64","Bonus":3,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966239Z"},{"ID":20551,"Name":"off 100 %","Points":8886,"X":367,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96624Z"},{"ID":20552,"Name":"011 181","Points":10051,"X":359,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96624Z"},{"ID":20553,"Name":"009WrĂłblĂłwki","Points":9358,"X":451,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96624Z"},{"ID":20554,"Name":"Wioska barbarzyƄska","Points":9971,"X":442,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96624Z"},{"ID":20555,"Name":"Kentin ufam Tobie","Points":10247,"X":369,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966241Z"},{"ID":20557,"Name":"Wioska barbarzyƄska","Points":8930,"X":624,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966241Z"},{"ID":20558,"Name":"018 - Mroczna Osada","Points":12146,"X":626,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966241Z"},{"ID":20559,"Name":"021 KUZYNI","Points":9996,"X":486,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966241Z"},{"ID":20560,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8816,"X":533,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966242Z"},{"ID":20561,"Name":".:025:. ƁOBUZIK","Points":9210,"X":556,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966242Z"},{"ID":20562,"Name":"166","Points":10311,"X":580,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966242Z"},{"ID":20563,"Name":"0021","Points":6676,"X":414,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966242Z"},{"ID":20564,"Name":"Wioska barbarzyƄska","Points":10487,"X":630,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966242Z"},{"ID":20565,"Name":"WelcomeToTheJungle","Points":10362,"X":621,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966243Z"},{"ID":20566,"Name":"*0020 Baraki","Points":10082,"X":620,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966243Z"},{"ID":20567,"Name":"023","Points":10218,"X":448,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966243Z"},{"ID":20568,"Name":"06. Nevada","Points":10941,"X":407,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966243Z"},{"ID":20569,"Name":"Pobozowisko","Points":7468,"X":389,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966244Z"},{"ID":20570,"Name":"a moĆŒe off ? :)","Points":9329,"X":638,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966244Z"},{"ID":20571,"Name":"VN Neferpitou","Points":10178,"X":493,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966244Z"},{"ID":20572,"Name":"=001-006-A=+@#-4-","Points":10193,"X":569,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":699287032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966244Z"},{"ID":20573,"Name":"001 myself","Points":10068,"X":567,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966245Z"},{"ID":20575,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":522,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966245Z"},{"ID":20576,"Name":"a moĆŒe off ? :)","Points":9544,"X":625,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966245Z"},{"ID":20577,"Name":"Kentin ufam Tobie","Points":10000,"X":372,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966245Z"},{"ID":20578,"Name":"Taran","Points":9707,"X":544,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966246Z"},{"ID":20579,"Name":"Maszlug kolonia XIII","Points":5050,"X":370,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966246Z"},{"ID":20580,"Name":"Nowa 23","Points":9827,"X":614,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966246Z"},{"ID":20581,"Name":"0652","Points":9839,"X":567,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966246Z"},{"ID":20582,"Name":"036 Nirasaki","Points":10495,"X":638,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966247Z"},{"ID":20583,"Name":"006","Points":10495,"X":399,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966247Z"},{"ID":20584,"Name":"004 UmyƂem Ząbki","Points":10001,"X":534,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966247Z"},{"ID":20585,"Name":"0066","Points":8458,"X":638,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966247Z"},{"ID":20586,"Name":"Wioska barbarzyƄska","Points":9976,"X":529,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966247Z"},{"ID":20587,"Name":"024 KTW","Points":10495,"X":637,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966248Z"},{"ID":20588,"Name":"028 i bywa czilaƂtowo","Points":9594,"X":639,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966248Z"},{"ID":20589,"Name":"B.039","Points":10003,"X":644,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966248Z"},{"ID":20590,"Name":"020 This land is ours!","Points":9909,"X":643,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966248Z"},{"ID":20591,"Name":"011. Barbarian Village","Points":9335,"X":555,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966249Z"},{"ID":20592,"Name":"Lord Lord Franek .#211","Points":10362,"X":518,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966249Z"},{"ID":20593,"Name":"Deveste ufam Tobie","Points":10083,"X":435,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966249Z"},{"ID":20594,"Name":"Westcoast.117","Points":10178,"X":373,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966249Z"},{"ID":20595,"Name":"*INTERTWINED*","Points":9711,"X":512,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96625Z"},{"ID":20596,"Name":"012","Points":4189,"X":388,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96625Z"},{"ID":20597,"Name":"A0155","Points":10362,"X":359,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96625Z"},{"ID":20598,"Name":"0409","Points":8217,"X":543,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96625Z"},{"ID":20599,"Name":"019 | PALESTINA | Msqt [*]","Points":9544,"X":629,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96625Z"},{"ID":20600,"Name":"0041","Points":9825,"X":616,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966251Z"},{"ID":20601,"Name":"A19 Wioska barbarzyƄska","Points":10223,"X":463,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966251Z"},{"ID":20602,"Name":"0555","Points":10495,"X":567,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966251Z"},{"ID":20603,"Name":"K43 x002","Points":4817,"X":393,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966251Z"},{"ID":20604,"Name":"Wioska barbarzyƄska","Points":1638,"X":639,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":698613394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966252Z"},{"ID":20605,"Name":"022 VC HMS Cheshire","Points":8648,"X":383,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966252Z"},{"ID":20606,"Name":"Taki Pan","Points":10362,"X":520,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966252Z"},{"ID":20607,"Name":"035","Points":10031,"X":365,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966252Z"},{"ID":20608,"Name":"049","Points":9809,"X":357,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966253Z"},{"ID":20609,"Name":"075. Marna","Points":10083,"X":627,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966253Z"},{"ID":20610,"Name":"022|| Leo Minor","Points":10019,"X":487,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966253Z"},{"ID":20611,"Name":"017","Points":10005,"X":361,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966253Z"},{"ID":20612,"Name":"c Kolwicz 002","Points":9414,"X":408,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966254Z"},{"ID":20613,"Name":"Pobozowisko","Points":7884,"X":404,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966254Z"},{"ID":20614,"Name":"Mako Reactor 1 - B5F","Points":3173,"X":553,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966254Z"},{"ID":20615,"Name":"-048-","Points":6882,"X":381,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966254Z"},{"ID":20616,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":530,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966254Z"},{"ID":20617,"Name":"c Wioska","Points":8301,"X":416,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966255Z"},{"ID":20618,"Name":"062","Points":4837,"X":588,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966255Z"},{"ID":20619,"Name":"kathare","Points":10268,"X":555,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966255Z"},{"ID":20620,"Name":"11. Wioska 11","Points":9909,"X":374,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966255Z"},{"ID":20621,"Name":"Ow Konfederacja +","Points":10311,"X":599,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966256Z"},{"ID":20623,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966256Z"},{"ID":20624,"Name":"A024","Points":10168,"X":585,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966256Z"},{"ID":20626,"Name":"0059","Points":10160,"X":535,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966256Z"},{"ID":20627,"Name":".:060:. ƁOBUZIK","Points":10311,"X":508,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966257Z"},{"ID":20628,"Name":"kathare","Points":10203,"X":555,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966257Z"},{"ID":20629,"Name":"017","Points":9454,"X":610,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966257Z"},{"ID":20630,"Name":"Pobozowisko","Points":10950,"X":399,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966257Z"},{"ID":20631,"Name":"009","Points":10211,"X":603,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966257Z"},{"ID":20632,"Name":"029","Points":9809,"X":360,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966258Z"},{"ID":20633,"Name":"K34 - [148] Before Land","Points":11130,"X":445,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966258Z"},{"ID":20634,"Name":"Wioska barbarzyƄska","Points":10481,"X":629,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966258Z"},{"ID":20635,"Name":"Deveste ufam Tobie","Points":8646,"X":438,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966258Z"},{"ID":20636,"Name":"025","Points":9860,"X":643,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966259Z"},{"ID":20637,"Name":"Jednak wolę gofry","Points":9788,"X":492,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966259Z"},{"ID":20638,"Name":"Wioska barbarzyƄska","Points":9994,"X":511,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966259Z"},{"ID":20639,"Name":"[007]","Points":8785,"X":455,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966259Z"},{"ID":20640,"Name":"Pobozowisko","Points":5134,"X":411,"Y":608,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96626Z"},{"ID":20641,"Name":"Kentin ufam Tobie","Points":10000,"X":368,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96626Z"},{"ID":20642,"Name":"033 ChƂopaki nie bijcie","Points":4767,"X":631,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96626Z"},{"ID":20643,"Name":"kathare","Points":9851,"X":549,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96626Z"},{"ID":20644,"Name":"0556","Points":10362,"X":563,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966261Z"},{"ID":20645,"Name":"Wioska barbarzyƄska","Points":9110,"X":629,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966261Z"},{"ID":20647,"Name":"Wioska barbarzyƄska","Points":10484,"X":634,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966261Z"},{"ID":20649,"Name":"0006","Points":10252,"X":578,"Y":621,"Continent":"K65","Bonus":8,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966261Z"},{"ID":20650,"Name":"053","Points":6591,"X":614,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966261Z"},{"ID":20651,"Name":"011Deszcz","Points":9761,"X":450,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966262Z"},{"ID":20652,"Name":"071","Points":9809,"X":356,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966262Z"},{"ID":20653,"Name":"Ulu-mulu","Points":2738,"X":419,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966262Z"},{"ID":20654,"Name":"214","Points":7636,"X":576,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966262Z"},{"ID":20655,"Name":"0008","Points":10252,"X":572,"Y":623,"Continent":"K65","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966263Z"},{"ID":20656,"Name":"Bagdad","Points":10096,"X":499,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966263Z"},{"ID":20657,"Name":"#0025","Points":9761,"X":542,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966263Z"},{"ID":20658,"Name":"0115","Points":10019,"X":434,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966263Z"},{"ID":20659,"Name":"aaaa","Points":10068,"X":484,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966264Z"},{"ID":20660,"Name":"BƂaszki","Points":10718,"X":625,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":849095778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966264Z"},{"ID":20661,"Name":"B.036","Points":10000,"X":640,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966264Z"},{"ID":20662,"Name":"0557","Points":10019,"X":568,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966264Z"},{"ID":20663,"Name":"003","Points":10481,"X":373,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966265Z"},{"ID":20664,"Name":"036 | PALESTINA","Points":7414,"X":636,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966265Z"},{"ID":20666,"Name":"Kentin ufam Tobie","Points":10000,"X":373,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966265Z"},{"ID":20667,"Name":"Karka-han (LazyShiro)","Points":9835,"X":413,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966265Z"},{"ID":20668,"Name":"022","Points":10285,"X":447,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966266Z"},{"ID":20669,"Name":"Wioska barbarzyƄska","Points":10068,"X":530,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966266Z"},{"ID":20670,"Name":"SSJ 046","Points":9761,"X":515,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966266Z"},{"ID":20671,"Name":"C 012","Points":5382,"X":590,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966266Z"},{"ID":20672,"Name":"070","Points":9761,"X":470,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966266Z"},{"ID":20673,"Name":"B.042","Points":10000,"X":642,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966267Z"},{"ID":20674,"Name":"SSJ 071","Points":8184,"X":504,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966267Z"},{"ID":20675,"Name":"113","Points":10444,"X":476,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966267Z"},{"ID":20677,"Name":"A0191","Points":10362,"X":360,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966267Z"},{"ID":20679,"Name":"Jednak wolę gofry","Points":8760,"X":488,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966268Z"},{"ID":20680,"Name":"010 181","Points":10048,"X":355,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966268Z"},{"ID":20681,"Name":"Westcoast.096","Points":10178,"X":392,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966268Z"},{"ID":20682,"Name":"jaaa","Points":10495,"X":630,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966268Z"},{"ID":20683,"Name":"Ave Why!","Points":10471,"X":462,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966269Z"},{"ID":20684,"Name":"MELISKA","Points":8894,"X":358,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966269Z"},{"ID":20686,"Name":"Z001","Points":10089,"X":523,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966269Z"},{"ID":20687,"Name":"0558","Points":9756,"X":565,"Y":626,"Continent":"K65","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966269Z"},{"ID":20688,"Name":"~~015~~","Points":9819,"X":609,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966269Z"},{"ID":20689,"Name":"A0134","Points":10362,"X":356,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96627Z"},{"ID":20690,"Name":"A READY","Points":10444,"X":594,"Y":396,"Continent":"K35","Bonus":6,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96627Z"},{"ID":20691,"Name":"061","Points":5762,"X":615,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96627Z"},{"ID":20692,"Name":"Wioska 1","Points":10478,"X":384,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96627Z"},{"ID":20693,"Name":"004","Points":9593,"X":385,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966271Z"},{"ID":20694,"Name":"Wioska barbarzyƄska","Points":9994,"X":511,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966271Z"},{"ID":20695,"Name":"A013","Points":9785,"X":473,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966271Z"},{"ID":20696,"Name":"Wioska barbarzyƄska","Points":7197,"X":628,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966271Z"},{"ID":20697,"Name":"Pobozowisko","Points":8615,"X":406,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966272Z"},{"ID":20698,"Name":"B005","Points":9821,"X":645,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966272Z"},{"ID":20699,"Name":"Gattacka","Points":9897,"X":611,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966272Z"},{"ID":20700,"Name":"Jaaa","Points":10495,"X":570,"Y":559,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966272Z"},{"ID":20701,"Name":"The Game Has Only Just Begun","Points":9976,"X":359,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966272Z"},{"ID":20702,"Name":"Pobozowisko","Points":10971,"X":387,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966273Z"},{"ID":20703,"Name":"150 Ale mnie gƂówka boli","Points":5120,"X":376,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966273Z"},{"ID":20704,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":523,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966273Z"},{"ID":20705,"Name":"#0023","Points":5859,"X":517,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966273Z"},{"ID":20706,"Name":"Taran","Points":9379,"X":557,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966274Z"},{"ID":20707,"Name":"Knowhere","Points":10452,"X":380,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966274Z"},{"ID":20708,"Name":"kathare","Points":10495,"X":556,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966274Z"},{"ID":20709,"Name":"#023.511|491","Points":9735,"X":630,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966274Z"},{"ID":20710,"Name":"Niegodziwoƛci","Points":10636,"X":547,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966275Z"},{"ID":20711,"Name":"A0192","Points":10362,"X":355,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966275Z"},{"ID":20712,"Name":"[001]","Points":12154,"X":459,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966275Z"},{"ID":20713,"Name":"c 080d","Points":5654,"X":416,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966275Z"},{"ID":20714,"Name":"066","Points":9809,"X":361,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966276Z"},{"ID":20715,"Name":"038","Points":9993,"X":371,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966276Z"},{"ID":20716,"Name":"B020","Points":9818,"X":645,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966276Z"},{"ID":20717,"Name":"Wioska barbarzyƄska","Points":9962,"X":367,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966276Z"},{"ID":20718,"Name":"021","Points":10285,"X":449,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966276Z"},{"ID":20719,"Name":"Nowa 22","Points":9835,"X":619,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966277Z"},{"ID":20720,"Name":"031","Points":9582,"X":362,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966277Z"},{"ID":20721,"Name":"0387","Points":10019,"X":586,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966277Z"},{"ID":20722,"Name":"005","Points":9653,"X":458,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966277Z"},{"ID":20723,"Name":"Bagdad","Points":9976,"X":500,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966278Z"},{"ID":20724,"Name":"001 Legio I Adiutrix (G)","Points":9785,"X":641,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966278Z"},{"ID":20725,"Name":".Wioska .","Points":5553,"X":639,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966278Z"},{"ID":20726,"Name":"0559","Points":10252,"X":567,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966278Z"},{"ID":20727,"Name":"026 181","Points":10495,"X":356,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966279Z"},{"ID":20728,"Name":"A0214","Points":10362,"X":364,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966279Z"},{"ID":20729,"Name":"035 Y13J","Points":9553,"X":644,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966279Z"},{"ID":20730,"Name":"051 Kuzyn skonfiskowaƂ Eneidę","Points":10474,"X":379,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966279Z"},{"ID":20731,"Name":"Pobozowisko","Points":9397,"X":395,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96628Z"},{"ID":20732,"Name":".:085:. ƁOBUZIK","Points":9968,"X":555,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96628Z"},{"ID":20733,"Name":"007. Acapulco","Points":9835,"X":636,"Y":454,"Continent":"K46","Bonus":6,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96628Z"},{"ID":20734,"Name":"a moĆŒe off ? :)","Points":9555,"X":625,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96628Z"},{"ID":20735,"Name":"-034-","Points":4063,"X":383,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966281Z"},{"ID":20736,"Name":"017","Points":9665,"X":544,"Y":524,"Continent":"K55","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966281Z"},{"ID":20737,"Name":"**A bo co...","Points":9761,"X":576,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966281Z"},{"ID":20738,"Name":"Szlachcic 059","Points":5155,"X":546,"Y":522,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966281Z"},{"ID":20739,"Name":"136","Points":10311,"X":578,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966282Z"},{"ID":20740,"Name":"069","Points":9592,"X":356,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966282Z"},{"ID":20741,"Name":"Wioska barbarzyƄska","Points":5786,"X":435,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966282Z"},{"ID":20742,"Name":"kathare","Points":10362,"X":557,"Y":627,"Continent":"K65","Bonus":6,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966282Z"},{"ID":20743,"Name":"017","Points":9860,"X":635,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966282Z"},{"ID":20744,"Name":"Deveste ufam Tobie","Points":6519,"X":434,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966283Z"},{"ID":20745,"Name":"005. Maroko","Points":9835,"X":638,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966283Z"},{"ID":20746,"Name":"The Game Has Only Just Begun","Points":9976,"X":357,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966283Z"},{"ID":20747,"Name":"kathare","Points":10268,"X":557,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966283Z"},{"ID":20748,"Name":"180","Points":9285,"X":581,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966284Z"},{"ID":20749,"Name":"Ave Why!","Points":4833,"X":469,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966284Z"},{"ID":20750,"Name":"Pobozowisko","Points":8419,"X":389,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966284Z"},{"ID":20751,"Name":"073","Points":9809,"X":356,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966284Z"},{"ID":20752,"Name":"a moĆŒe off ? :)","Points":9534,"X":619,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966285Z"},{"ID":20753,"Name":"WE ARE READY!","Points":8653,"X":594,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966285Z"},{"ID":20754,"Name":"Lord Lord Franek .#219","Points":10362,"X":518,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966285Z"},{"ID":20755,"Name":"a moĆŒe off ? :)","Points":9411,"X":637,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966285Z"},{"ID":20756,"Name":"[0008]","Points":10253,"X":559,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966286Z"},{"ID":20757,"Name":"R-12","Points":8319,"X":582,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966286Z"},{"ID":20758,"Name":"xxx","Points":10495,"X":504,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966286Z"},{"ID":20759,"Name":"*0005 Baraki","Points":10679,"X":618,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966286Z"},{"ID":20760,"Name":"024","Points":9860,"X":639,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966286Z"},{"ID":20761,"Name":"0097","Points":10083,"X":539,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966287Z"},{"ID":20762,"Name":"002 Legio XXI Rapax","Points":7529,"X":643,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966287Z"},{"ID":20763,"Name":"~~017~~","Points":9814,"X":614,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966287Z"},{"ID":20764,"Name":"018 Legio I Pontica","Points":4068,"X":641,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966287Z"},{"ID":20765,"Name":"The Game Has Only Just Begun","Points":5019,"X":359,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966288Z"},{"ID":20766,"Name":"020.","Points":10083,"X":640,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966288Z"},{"ID":20767,"Name":"0137","Points":8093,"X":439,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966288Z"},{"ID":20768,"Name":"Pobozowisko","Points":10372,"X":401,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966288Z"},{"ID":20769,"Name":"Wioska zielonelody","Points":12154,"X":429,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":2105150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966289Z"},{"ID":20770,"Name":"0026 MzM","Points":9258,"X":639,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966289Z"},{"ID":20771,"Name":"016","Points":4022,"X":428,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966289Z"},{"ID":20772,"Name":"0020","Points":6726,"X":414,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966289Z"},{"ID":20773,"Name":"071","Points":10237,"X":470,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966289Z"},{"ID":20774,"Name":"0128","Points":7887,"X":438,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96629Z"},{"ID":20775,"Name":"Wioska barbarzyƄska","Points":10481,"X":436,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96629Z"},{"ID":20776,"Name":"0024","Points":10160,"X":539,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96629Z"},{"ID":20777,"Name":"-001- Celia","Points":10220,"X":558,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.96629Z"},{"ID":20778,"Name":"jaaa","Points":10728,"X":634,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966291Z"},{"ID":20779,"Name":"015","Points":9548,"X":361,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966291Z"},{"ID":20780,"Name":"[0011]","Points":9016,"X":559,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966291Z"},{"ID":20781,"Name":"*5603* KKS Kalisz","Points":10287,"X":620,"Y":574,"Continent":"K56","Bonus":2,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966291Z"},{"ID":20782,"Name":"WschĂłd Droga 003","Points":10311,"X":637,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966292Z"},{"ID":20783,"Name":"0128","Points":10019,"X":536,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966292Z"},{"ID":20784,"Name":"060","Points":5721,"X":427,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966292Z"},{"ID":20785,"Name":"076","Points":6671,"X":364,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966292Z"},{"ID":20786,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":559,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966292Z"},{"ID":20787,"Name":"off 100 %","Points":10254,"X":382,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966293Z"},{"ID":20788,"Name":"011. Koczkodan","Points":9860,"X":637,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966293Z"},{"ID":20789,"Name":"035","Points":7036,"X":487,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966293Z"},{"ID":20790,"Name":"Jednak wolę gofry","Points":9811,"X":486,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966293Z"},{"ID":20791,"Name":"Westcoast.105","Points":10178,"X":375,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966294Z"},{"ID":20792,"Name":"016 181","Points":9243,"X":354,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966294Z"},{"ID":20793,"Name":"Bagdad","Points":10654,"X":473,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966294Z"},{"ID":20794,"Name":"64. Wioska 64","Points":7330,"X":369,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966294Z"},{"ID":20795,"Name":"0111","Points":1708,"X":419,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966295Z"},{"ID":20796,"Name":"Gattacka","Points":9720,"X":609,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966295Z"},{"ID":20797,"Name":"Lord Lord Franek .#212","Points":10362,"X":511,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966295Z"},{"ID":20798,"Name":".004.KƂalaLumpur","Points":10229,"X":567,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966295Z"},{"ID":20799,"Name":"003 Niska GĂłra","Points":9899,"X":617,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966295Z"},{"ID":20800,"Name":".:118:. Niangmen","Points":9835,"X":506,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966296Z"},{"ID":20802,"Name":"A0218","Points":10362,"X":363,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966296Z"},{"ID":20803,"Name":".002.Alabastia","Points":10232,"X":563,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966296Z"},{"ID":20804,"Name":"019","Points":9809,"X":359,"Y":524,"Continent":"K53","Bonus":8,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966296Z"},{"ID":20805,"Name":"Pobozowisko","Points":8762,"X":395,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966297Z"},{"ID":20806,"Name":"~~028~~","Points":9795,"X":592,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966297Z"},{"ID":20807,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":562,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966297Z"},{"ID":20808,"Name":"Lord Lord Franek .#199","Points":10362,"X":513,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966297Z"},{"ID":20809,"Name":"025 Wioska","Points":9071,"X":645,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966298Z"},{"ID":20810,"Name":"A0173","Points":10362,"X":357,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966298Z"},{"ID":20811,"Name":"Pobozowisko","Points":8480,"X":391,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966298Z"},{"ID":20812,"Name":"020","Points":3746,"X":642,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966298Z"},{"ID":20813,"Name":"A0080","Points":10362,"X":355,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966299Z"},{"ID":20814,"Name":"039 Maryland","Points":10495,"X":607,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966299Z"},{"ID":20815,"Name":".001.Xenomorf","Points":10237,"X":564,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966299Z"},{"ID":20816,"Name":"Tylko nie pƂacz","Points":9702,"X":457,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966299Z"},{"ID":20817,"Name":"Kentin ufam Tobie","Points":10000,"X":363,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966299Z"},{"ID":20818,"Name":"Drewno","Points":8819,"X":533,"Y":642,"Continent":"K65","Bonus":1,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9663Z"},{"ID":20819,"Name":"Mniejsze zƂo 0045","Points":6599,"X":364,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9663Z"},{"ID":20820,"Name":"Pobozowisko","Points":8956,"X":405,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9663Z"},{"ID":20821,"Name":"-017-","Points":8736,"X":391,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9663Z"},{"ID":20822,"Name":"017 FOXX","Points":10409,"X":641,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966301Z"},{"ID":20823,"Name":"C007","Points":7701,"X":587,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966301Z"},{"ID":20824,"Name":"077","Points":10713,"X":481,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966301Z"},{"ID":20825,"Name":"053","Points":9993,"X":369,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966301Z"},{"ID":20826,"Name":"007Przeciąg","Points":9708,"X":447,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.966302Z"},{"ID":20827,"Name":"ETAT Z POƚREDNIAKA","Points":6882,"X":422,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99621Z"},{"ID":20828,"Name":"015","Points":9860,"X":638,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99621Z"},{"ID":20829,"Name":"Pobozowisko","Points":10954,"X":407,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996211Z"},{"ID":20830,"Name":"0061","Points":10075,"X":456,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996211Z"},{"ID":20831,"Name":"171","Points":10311,"X":583,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996212Z"},{"ID":20832,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8996,"X":534,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996212Z"},{"ID":20833,"Name":"0051","Points":9730,"X":450,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996213Z"},{"ID":20834,"Name":"Ave Why!","Points":10471,"X":454,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996213Z"},{"ID":20836,"Name":"Pobozowisko","Points":9260,"X":391,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996214Z"},{"ID":20837,"Name":"!Myk i do kieszonki","Points":10495,"X":381,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996214Z"},{"ID":20838,"Name":"Szlachcic","Points":10237,"X":421,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996215Z"},{"ID":20839,"Name":"Ave Why!","Points":7718,"X":453,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996216Z"},{"ID":20840,"Name":"0135","Points":9745,"X":430,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996216Z"},{"ID":20841,"Name":"Ave Why!","Points":9811,"X":448,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996217Z"},{"ID":20842,"Name":"Wioska barbarzyƄska","Points":10622,"X":632,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996217Z"},{"ID":20843,"Name":"Avanti!","Points":9950,"X":355,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996218Z"},{"ID":20844,"Name":"Osada koczownikĂłw","Points":10311,"X":411,"Y":385,"Continent":"K34","Bonus":9,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996218Z"},{"ID":20845,"Name":"0052","Points":10160,"X":540,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996219Z"},{"ID":20846,"Name":"Deveste ufam Tobie","Points":3762,"X":429,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99622Z"},{"ID":20848,"Name":"*0023 Baraki","Points":10344,"X":629,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99622Z"},{"ID":20849,"Name":"~~006~~","Points":9815,"X":597,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996221Z"},{"ID":20850,"Name":"Zeta Reticuli S2","Points":10477,"X":390,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996221Z"},{"ID":20851,"Name":"~~010~~","Points":9816,"X":604,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996222Z"},{"ID":20852,"Name":"025","Points":9732,"X":628,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996222Z"},{"ID":20853,"Name":"003","Points":9646,"X":588,"Y":611,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996223Z"},{"ID":20854,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9960,"X":522,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996224Z"},{"ID":20855,"Name":"BoOmBaa..","Points":6867,"X":438,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996224Z"},{"ID":20857,"Name":"033 034","Points":10001,"X":531,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996225Z"},{"ID":20859,"Name":"143","Points":10311,"X":587,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996225Z"},{"ID":20860,"Name":"kathare","Points":10362,"X":546,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996226Z"},{"ID":20861,"Name":"60. KaruTown","Points":9735,"X":625,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996226Z"},{"ID":20862,"Name":"Wioska","Points":9587,"X":383,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996227Z"},{"ID":20863,"Name":"B.026","Points":10000,"X":643,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996228Z"},{"ID":20864,"Name":"HMS Drake","Points":9285,"X":386,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996228Z"},{"ID":20865,"Name":"Pobozowisko","Points":5169,"X":403,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996229Z"},{"ID":20866,"Name":"*5622* Happy happy","Points":10287,"X":641,"Y":527,"Continent":"K56","Bonus":3,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996229Z"},{"ID":20867,"Name":"kiki","Points":4376,"X":375,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99623Z"},{"ID":20868,"Name":"033 Wioska barbarzyƄska","Points":9976,"X":544,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99623Z"},{"ID":20869,"Name":"Wioska Kaimek","Points":2997,"X":367,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699797252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996231Z"},{"ID":20870,"Name":"Pobozowisko","Points":7085,"X":407,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996232Z"},{"ID":20871,"Name":"VN Menthuthuyoup","Points":10409,"X":492,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996232Z"},{"ID":20872,"Name":"Taran","Points":9364,"X":546,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996233Z"},{"ID":20873,"Name":"010 Legio I Parthica","Points":4101,"X":641,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996233Z"},{"ID":20874,"Name":"003","Points":10211,"X":600,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996234Z"},{"ID":20875,"Name":"Chatachama","Points":9682,"X":384,"Y":416,"Continent":"K43","Bonus":8,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996234Z"},{"ID":20877,"Name":"Pobozowisko","Points":10971,"X":382,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996235Z"},{"ID":20878,"Name":"003 Wioska IdzieJesien","Points":7824,"X":569,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996236Z"},{"ID":20879,"Name":"Ave Why!","Points":10235,"X":494,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996236Z"},{"ID":20880,"Name":"Yogi","Points":10019,"X":545,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996237Z"},{"ID":20881,"Name":"Wioska barbarzyƄska","Points":10487,"X":639,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996237Z"},{"ID":20882,"Name":"Ave Why!","Points":8990,"X":466,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996238Z"},{"ID":20883,"Name":"ObrzeĆŒa 06","Points":10971,"X":544,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996238Z"},{"ID":20884,"Name":"083","Points":10311,"X":585,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996239Z"},{"ID":20885,"Name":"001","Points":9875,"X":403,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":699788305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99624Z"},{"ID":20886,"Name":"0384","Points":10083,"X":584,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99624Z"},{"ID":20887,"Name":"xkikutx","Points":10068,"X":520,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996241Z"},{"ID":20888,"Name":"042- Mroczna Osada","Points":10459,"X":636,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996241Z"},{"ID":20889,"Name":"Darmowe przeprowadzki","Points":10019,"X":479,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996242Z"},{"ID":20890,"Name":"W.07","Points":10362,"X":582,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996242Z"},{"ID":20891,"Name":"A017","Points":3870,"X":583,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996243Z"},{"ID":20892,"Name":"111 Wioska barbarzyƄska","Points":10001,"X":534,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996244Z"},{"ID":20893,"Name":"Yogi","Points":8458,"X":553,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996244Z"},{"ID":20894,"Name":"0113","Points":8616,"X":435,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996245Z"},{"ID":20895,"Name":"Ow Konfederacja","Points":8251,"X":605,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996245Z"},{"ID":20896,"Name":"$9.000 Grvvyq","Points":10495,"X":635,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996246Z"},{"ID":20897,"Name":"Wioska barbarzyƄsk33","Points":10285,"X":387,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996246Z"},{"ID":20898,"Name":"*0019 Baraki","Points":10189,"X":621,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996247Z"},{"ID":20899,"Name":"--006--","Points":10285,"X":382,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996247Z"},{"ID":20900,"Name":"~~005~~","Points":9814,"X":600,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996248Z"},{"ID":20901,"Name":"~~022~~","Points":9816,"X":598,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996249Z"},{"ID":20902,"Name":"36. Wioska 36","Points":8120,"X":373,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996249Z"},{"ID":20903,"Name":"039","Points":6771,"X":502,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99625Z"},{"ID":20904,"Name":"04. Wioska 4","Points":10019,"X":374,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99625Z"},{"ID":20905,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":525,"Y":639,"Continent":"K65","Bonus":7,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996251Z"},{"ID":20906,"Name":"003.","Points":10495,"X":484,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996252Z"},{"ID":20907,"Name":"Ulu-mulu","Points":3251,"X":411,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996252Z"},{"ID":20909,"Name":"a moĆŒe off ? :)","Points":9424,"X":617,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996253Z"},{"ID":20911,"Name":"0022","Points":10160,"X":537,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996253Z"},{"ID":20913,"Name":"#035.519|501","Points":9735,"X":638,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996254Z"},{"ID":20914,"Name":"A0232","Points":10362,"X":365,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996254Z"},{"ID":20915,"Name":"*INTERTWINED*","Points":9711,"X":507,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996255Z"},{"ID":20916,"Name":"030","Points":9965,"X":362,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996255Z"},{"ID":20917,"Name":"46. Wioska 46","Points":7963,"X":366,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996256Z"},{"ID":20918,"Name":"115","Points":9697,"X":622,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996257Z"},{"ID":20919,"Name":"0009","Points":9814,"X":483,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996257Z"},{"ID":20920,"Name":"Wioska barbarzyƄska","Points":8114,"X":629,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996258Z"},{"ID":20921,"Name":"Bagdad","Points":9976,"X":502,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996258Z"},{"ID":20922,"Name":"108","Points":10495,"X":485,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996259Z"},{"ID":20923,"Name":"026","Points":9899,"X":451,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996259Z"},{"ID":20924,"Name":"Ulu-mulu","Points":2030,"X":420,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99626Z"},{"ID":20925,"Name":"#060.","Points":9614,"X":629,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99626Z"},{"ID":20926,"Name":"057 Yatomi","Points":10495,"X":642,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996261Z"},{"ID":20927,"Name":"A35","Points":10241,"X":472,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996262Z"},{"ID":20928,"Name":"#030.516|502","Points":9735,"X":635,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996262Z"},{"ID":20931,"Name":"059","Points":8362,"X":358,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996263Z"},{"ID":20932,"Name":"215","Points":4951,"X":579,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996263Z"},{"ID":20933,"Name":"Aldrajch to nie Slonsk gorolu","Points":5590,"X":375,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996264Z"},{"ID":20934,"Name":"OgĂłrkowy baron","Points":9835,"X":400,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996264Z"},{"ID":20935,"Name":"#022.518|500","Points":9735,"X":637,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996265Z"},{"ID":20936,"Name":"004","Points":9809,"X":362,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996265Z"},{"ID":20937,"Name":"35k$ Grvvyq","Points":10295,"X":634,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996266Z"},{"ID":20938,"Name":"Jan na kraƄcu ƛwiata","Points":8422,"X":645,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996267Z"},{"ID":20939,"Name":"53. Wioska 53","Points":8390,"X":364,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996267Z"},{"ID":20940,"Name":"*0027 Baraki","Points":10057,"X":626,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996268Z"},{"ID":20941,"Name":"0023","Points":10211,"X":593,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996268Z"},{"ID":20942,"Name":"RTS 12","Points":10362,"X":577,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996269Z"},{"ID":20943,"Name":"Wioska barbarzyƄska","Points":5308,"X":623,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996269Z"},{"ID":20944,"Name":"082","Points":6821,"X":641,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99627Z"},{"ID":20945,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9826,"X":526,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996271Z"},{"ID":20946,"Name":"Pobozowisko","Points":8962,"X":409,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996271Z"},{"ID":20947,"Name":"Jan 013 k","Points":9427,"X":642,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996272Z"},{"ID":20948,"Name":"0371","Points":10252,"X":562,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996272Z"},{"ID":20949,"Name":"005","Points":9610,"X":393,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996273Z"},{"ID":20950,"Name":"072","Points":9902,"X":469,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996274Z"},{"ID":20951,"Name":"Wioska Polanski19ooo7","Points":2802,"X":453,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":699698253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996274Z"},{"ID":20952,"Name":"0030","Points":10083,"X":535,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996275Z"},{"ID":20953,"Name":"02. Wioska 2","Points":9783,"X":372,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996275Z"},{"ID":20954,"Name":"122","Points":10311,"X":576,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996276Z"},{"ID":20955,"Name":"033","Points":10001,"X":638,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996276Z"},{"ID":20956,"Name":"60. Wioska 60","Points":10003,"X":370,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996277Z"},{"ID":20957,"Name":"A0295","Points":10362,"X":361,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996277Z"},{"ID":20958,"Name":"0004","Points":10218,"X":479,"Y":643,"Continent":"K64","Bonus":5,"PlayerID":699117178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996278Z"},{"ID":20959,"Name":"127","Points":6369,"X":475,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996278Z"},{"ID":20960,"Name":"035","Points":10237,"X":611,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996279Z"},{"ID":20961,"Name":"Jednak wolę gofry","Points":5056,"X":491,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99628Z"},{"ID":20962,"Name":"*0022 Baraki","Points":10060,"X":622,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99628Z"},{"ID":20963,"Name":"yogi","Points":10019,"X":546,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996281Z"},{"ID":20964,"Name":"034","Points":9835,"X":449,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996281Z"},{"ID":20965,"Name":"Ulu-mulu","Points":2805,"X":417,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996282Z"},{"ID":20966,"Name":"Zeta Reticuli S2","Points":10838,"X":391,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996282Z"},{"ID":20967,"Name":"0042","Points":9825,"X":617,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996283Z"},{"ID":20968,"Name":"Gattacka","Points":9619,"X":609,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996284Z"},{"ID":20969,"Name":"Gattacka","Points":9819,"X":607,"Y":405,"Continent":"K46","Bonus":8,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996284Z"},{"ID":20971,"Name":"Konfederacja","Points":9976,"X":449,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996285Z"},{"ID":20972,"Name":"0145","Points":6016,"X":430,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996285Z"},{"ID":20973,"Name":"B.040","Points":10000,"X":644,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996286Z"},{"ID":20974,"Name":"WE ARE READY!","Points":6442,"X":597,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996287Z"},{"ID":20975,"Name":".:128:. Niangmen","Points":9825,"X":506,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996287Z"},{"ID":20976,"Name":"Wioska barbarzyƄska","Points":9717,"X":621,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996288Z"},{"ID":20977,"Name":"034 Armeria","Points":10068,"X":618,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996288Z"},{"ID":20978,"Name":"044","Points":10237,"X":472,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996289Z"},{"ID":20979,"Name":"006.Critical 2.0","Points":10083,"X":632,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996289Z"},{"ID":20980,"Name":"A012","Points":9794,"X":474,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99629Z"},{"ID":20981,"Name":"0025","Points":10019,"X":539,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99629Z"},{"ID":20982,"Name":"ADEN","Points":9737,"X":526,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996291Z"},{"ID":20983,"Name":"Zeta Reticuli S2","Points":10081,"X":394,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996292Z"},{"ID":20984,"Name":"off 100 %","Points":10163,"X":382,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996292Z"},{"ID":20985,"Name":"V 001","Points":8894,"X":589,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996293Z"},{"ID":20986,"Name":"Jan 028 (1)","Points":8836,"X":641,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996293Z"},{"ID":20987,"Name":"Gattacka","Points":9745,"X":611,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996294Z"},{"ID":20988,"Name":"111","Points":10273,"X":483,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996294Z"},{"ID":20989,"Name":"a moĆŒe off ? :)","Points":9555,"X":622,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996295Z"},{"ID":20990,"Name":"0058","Points":9999,"X":448,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996295Z"},{"ID":20991,"Name":"012 Dobry Film","Points":10001,"X":537,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996296Z"},{"ID":20992,"Name":"Wioska barbarzyƄska","Points":10484,"X":638,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996297Z"},{"ID":20993,"Name":"[012]","Points":9835,"X":609,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996297Z"},{"ID":20994,"Name":"024","Points":9809,"X":362,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996298Z"},{"ID":20995,"Name":"025","Points":5562,"X":362,"Y":536,"Continent":"K53","Bonus":7,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996298Z"},{"ID":20996,"Name":"A009","Points":10035,"X":518,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996299Z"},{"ID":20997,"Name":"WiedĆșma","Points":4335,"X":382,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996299Z"},{"ID":20999,"Name":"Ave Why!","Points":7944,"X":490,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9963Z"},{"ID":21000,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":527,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9963Z"},{"ID":21001,"Name":"W.06","Points":10362,"X":585,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996301Z"},{"ID":21002,"Name":"051","Points":8870,"X":614,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996302Z"},{"ID":21004,"Name":"103","Points":10495,"X":486,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996302Z"},{"ID":21005,"Name":"Wioska barbarzyƄska","Points":7043,"X":641,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996303Z"},{"ID":21006,"Name":"Janxxv 01 K","Points":9694,"X":642,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996303Z"},{"ID":21007,"Name":"Wioska","Points":8308,"X":366,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996304Z"},{"ID":21008,"Name":"053 Kuzyn skonfiskowaƂ Atlantydę","Points":10495,"X":378,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996304Z"},{"ID":21009,"Name":"[026]","Points":9809,"X":639,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996305Z"},{"ID":21010,"Name":"0035","Points":10135,"X":449,"Y":365,"Continent":"K34","Bonus":6,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996305Z"},{"ID":21011,"Name":"BoOmBaa..","Points":10495,"X":440,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996306Z"},{"ID":21013,"Name":"Jehu_Kingdom_47","Points":7472,"X":642,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996306Z"},{"ID":21014,"Name":"A0193","Points":10362,"X":360,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996307Z"},{"ID":21015,"Name":".3.","Points":8175,"X":366,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996308Z"},{"ID":21016,"Name":"Spasny","Points":6528,"X":641,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":8784866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996308Z"},{"ID":21017,"Name":"119","Points":10495,"X":471,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996309Z"},{"ID":21018,"Name":"aaaa","Points":9835,"X":479,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996309Z"},{"ID":21019,"Name":"Westcoast.099","Points":10178,"X":374,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99631Z"},{"ID":21020,"Name":"016 015","Points":10001,"X":537,"Y":361,"Continent":"K35","Bonus":1,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99631Z"},{"ID":21021,"Name":"012","Points":10211,"X":605,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996311Z"},{"ID":21022,"Name":"091. Byblus","Points":9289,"X":626,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996311Z"},{"ID":21023,"Name":"Lesne dzbany","Points":10495,"X":579,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996312Z"},{"ID":21024,"Name":"Ave Why!","Points":10495,"X":463,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996312Z"},{"ID":21025,"Name":"Wioska_1","Points":3577,"X":489,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":848942968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996313Z"},{"ID":21026,"Name":"Hey You","Points":7401,"X":625,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996313Z"},{"ID":21027,"Name":"#0029 gram w ligę","Points":10178,"X":461,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996314Z"},{"ID":21028,"Name":"ave why!","Points":10311,"X":449,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996315Z"},{"ID":21029,"Name":"Kentin ufam Tobie","Points":10495,"X":369,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996315Z"},{"ID":21030,"Name":"22. Wioska 22","Points":10158,"X":366,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996316Z"},{"ID":21031,"Name":"054","Points":5585,"X":426,"Y":621,"Continent":"K64","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996316Z"},{"ID":21032,"Name":"A022","Points":10035,"X":587,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996317Z"},{"ID":21033,"Name":"Jaaa","Points":10481,"X":614,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996317Z"},{"ID":21034,"Name":"RTS 10","Points":10346,"X":580,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996318Z"},{"ID":21035,"Name":"Kentin ufam Tobie","Points":10000,"X":366,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996318Z"},{"ID":21036,"Name":"003. PiszczaƂka","Points":10216,"X":504,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996319Z"},{"ID":21037,"Name":"Szlachcic","Points":8196,"X":426,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996319Z"},{"ID":21038,"Name":"Osada koczownikĂłw","Points":8884,"X":526,"Y":638,"Continent":"K65","Bonus":2,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99632Z"},{"ID":21039,"Name":"monetki D","Points":9334,"X":637,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99632Z"},{"ID":21040,"Name":"0560","Points":10019,"X":568,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996321Z"},{"ID":21041,"Name":"Lord Lord Franek .#180","Points":10144,"X":515,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996321Z"},{"ID":21042,"Name":"006","Points":9809,"X":360,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996322Z"},{"ID":21043,"Name":"Wioska barbarzyƄska","Points":10479,"X":624,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996322Z"},{"ID":21044,"Name":"0093","Points":9835,"X":459,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996323Z"},{"ID":21045,"Name":"Wioska barbarzyƄska","Points":8909,"X":386,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996323Z"},{"ID":21046,"Name":"004","Points":4213,"X":429,"Y":623,"Continent":"K64","Bonus":2,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996324Z"},{"ID":21047,"Name":"B007","Points":10890,"X":645,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996324Z"},{"ID":21048,"Name":".005.MulęRĂłĆŒ","Points":10232,"X":561,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996325Z"},{"ID":21049,"Name":"036","Points":9291,"X":612,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996325Z"},{"ID":21050,"Name":"MELISKA","Points":10369,"X":358,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996326Z"},{"ID":21051,"Name":"psycha sitting","Points":10311,"X":454,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996326Z"},{"ID":21052,"Name":"The Game Has Only Just Begun","Points":9976,"X":358,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996327Z"},{"ID":21053,"Name":"052","Points":10160,"X":642,"Y":532,"Continent":"K56","Bonus":7,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996328Z"},{"ID":21054,"Name":"A-026","Points":10168,"X":400,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996328Z"},{"ID":21055,"Name":"OgĂłrkowy baron","Points":9835,"X":404,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996329Z"},{"ID":21056,"Name":"008.","Points":9925,"X":645,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996329Z"},{"ID":21057,"Name":"A007","Points":10011,"X":598,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99633Z"},{"ID":21059,"Name":"014","Points":10211,"X":607,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99633Z"},{"ID":21060,"Name":"A011","Points":9819,"X":472,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996331Z"},{"ID":21062,"Name":"#.43 Wioska barbarzyƄska","Points":4622,"X":638,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996331Z"},{"ID":21063,"Name":"[0006] Franek 154","Points":9011,"X":560,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996332Z"},{"ID":21064,"Name":"Gattacka","Points":9809,"X":612,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996332Z"},{"ID":21065,"Name":"VN Franklin Bordeau","Points":8458,"X":455,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996333Z"},{"ID":21066,"Name":"Zeta Reticuli S2","Points":10095,"X":392,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996333Z"},{"ID":21067,"Name":"Jan 6 mdomek 02 K","Points":9857,"X":639,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996334Z"},{"ID":21068,"Name":"Westcoast.110","Points":10178,"X":376,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996334Z"},{"ID":21069,"Name":"Ow Konfederacja +","Points":10140,"X":597,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996335Z"},{"ID":21070,"Name":"0046","Points":10019,"X":560,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996335Z"},{"ID":21071,"Name":"~~002~~","Points":9815,"X":601,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996336Z"},{"ID":21072,"Name":"Idris","Points":10019,"X":382,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996337Z"},{"ID":21073,"Name":"K65","Points":8816,"X":534,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996337Z"},{"ID":21074,"Name":"Pobozowisko","Points":10971,"X":399,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996338Z"},{"ID":21075,"Name":"067","Points":7497,"X":427,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996338Z"},{"ID":21076,"Name":"OgĂłrkowy baron","Points":9835,"X":405,"Y":407,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996339Z"},{"ID":21077,"Name":"Szlachcic","Points":6481,"X":425,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996339Z"},{"ID":21078,"Name":"A009","Points":10211,"X":580,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99634Z"},{"ID":21079,"Name":"065 Biedronkowo PP","Points":9899,"X":537,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99634Z"},{"ID":21080,"Name":"014. Troja","Points":9835,"X":637,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996341Z"},{"ID":21081,"Name":"Bogdaniec","Points":4900,"X":505,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":699755859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996341Z"},{"ID":21082,"Name":"Myk i do kieszonki","Points":9334,"X":359,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996342Z"},{"ID":21083,"Name":"Szlachcic","Points":7651,"X":426,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996343Z"},{"ID":21084,"Name":"Wioska barbarzyƄska","Points":10068,"X":526,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996343Z"},{"ID":21085,"Name":"Afro","Points":9761,"X":379,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996344Z"},{"ID":21086,"Name":"016 Wioska","Points":5412,"X":634,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996344Z"},{"ID":21087,"Name":"Wioska barbarzyƄska","Points":9598,"X":399,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996345Z"},{"ID":21088,"Name":"OgĂłrkowy baron","Points":9835,"X":397,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996345Z"},{"ID":21089,"Name":"Pobozowisko","Points":9818,"X":411,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996346Z"},{"ID":21090,"Name":"c 061d","Points":6850,"X":417,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996347Z"},{"ID":21091,"Name":"K34 - [023] Before Land","Points":10259,"X":441,"Y":373,"Continent":"K34","Bonus":3,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996347Z"},{"ID":21092,"Name":"A0145","Points":10362,"X":360,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996348Z"},{"ID":21093,"Name":"SSJ 044","Points":9761,"X":512,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996348Z"},{"ID":21094,"Name":"022 | PALESTINA | Msqt [*]","Points":9346,"X":624,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996349Z"},{"ID":21095,"Name":"0002","Points":5268,"X":476,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699117178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996349Z"},{"ID":21096,"Name":"017","Points":4823,"X":429,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99635Z"},{"ID":21097,"Name":"Oww Konfederacja","Points":9361,"X":606,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99635Z"},{"ID":21098,"Name":"Pobozowisko","Points":5001,"X":395,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996351Z"},{"ID":21099,"Name":"Pobozowisko","Points":10635,"X":400,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996351Z"},{"ID":21101,"Name":"*INTERTWINED*","Points":9711,"X":508,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996352Z"},{"ID":21103,"Name":"a moĆŒe off ? :)","Points":9362,"X":638,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996352Z"},{"ID":21105,"Name":"073","Points":9994,"X":465,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996353Z"},{"ID":21106,"Name":"043","Points":9993,"X":370,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996354Z"},{"ID":21107,"Name":"Ow Konfederacja","Points":10259,"X":602,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996354Z"},{"ID":21108,"Name":"K34 - [115] Before Land","Points":10259,"X":450,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996355Z"},{"ID":21109,"Name":"0410","Points":8635,"X":541,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996355Z"},{"ID":21110,"Name":"070","Points":7776,"X":429,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996356Z"},{"ID":21111,"Name":"Pobozowisko","Points":8204,"X":410,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996356Z"},{"ID":21112,"Name":"c 00447","Points":9829,"X":413,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996357Z"},{"ID":21113,"Name":"Lord Lord Franek .#209","Points":10362,"X":518,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996357Z"},{"ID":21114,"Name":"Bagdad","Points":9976,"X":497,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996358Z"},{"ID":21115,"Name":"Wioska barbarzyƄska","Points":5198,"X":433,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996359Z"},{"ID":21116,"Name":"a moĆŒe off ? :)","Points":9534,"X":621,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996359Z"},{"ID":21117,"Name":"JUHUUUUUUU :P","Points":4818,"X":381,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99636Z"},{"ID":21118,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":527,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99636Z"},{"ID":21119,"Name":".:058:. ƁOBUZIK","Points":3053,"X":552,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996361Z"},{"ID":21120,"Name":"154 Ale mnie gƂówka boli","Points":7988,"X":375,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996361Z"},{"ID":21121,"Name":"#003","Points":10393,"X":472,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996362Z"},{"ID":21122,"Name":"Szlachcic","Points":9605,"X":423,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996362Z"},{"ID":21123,"Name":"Gattacka","Points":9345,"X":613,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996363Z"},{"ID":21124,"Name":"C002","Points":10495,"X":594,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996363Z"},{"ID":21125,"Name":"Wioska barbarzyƄska","Points":3761,"X":491,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":848942968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996364Z"},{"ID":21126,"Name":"c Fyra 3","Points":9520,"X":402,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996365Z"},{"ID":21127,"Name":"The Game Has Only Just Begun","Points":9976,"X":360,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996365Z"},{"ID":21128,"Name":"0rkowi Zawodnicy Dominują Rybki","Points":10068,"X":419,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996366Z"},{"ID":21129,"Name":"ETAT Z POƚREDNIAKA","Points":6593,"X":425,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996367Z"},{"ID":21130,"Name":"0405","Points":10019,"X":553,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996367Z"},{"ID":21131,"Name":"The Game Has Only Just Begun","Points":8923,"X":357,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996368Z"},{"ID":21133,"Name":"R-11","Points":8319,"X":588,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996369Z"},{"ID":21134,"Name":"Kentin ufam Tobie","Points":10000,"X":369,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996369Z"},{"ID":21135,"Name":"C011","Points":6376,"X":584,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99637Z"},{"ID":21137,"Name":"016","Points":3142,"X":387,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99637Z"},{"ID":21138,"Name":"a moĆŒe off ? :)","Points":9337,"X":638,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996371Z"},{"ID":21139,"Name":"Gattacka","Points":9559,"X":609,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996372Z"},{"ID":21140,"Name":"013","Points":9993,"X":360,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996372Z"},{"ID":21141,"Name":"024","Points":7613,"X":363,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996373Z"},{"ID":21142,"Name":"Pobozowisko","Points":9565,"X":395,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996373Z"},{"ID":21143,"Name":"Kentin ufam Tobie","Points":10005,"X":372,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996374Z"},{"ID":21144,"Name":"Jednak wolę gofry","Points":10311,"X":497,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996375Z"},{"ID":21145,"Name":"ZDERZENIE Z BETONEM","Points":8444,"X":578,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996375Z"},{"ID":21146,"Name":"Wioska (037)","Points":7932,"X":644,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996376Z"},{"ID":21147,"Name":"c 057d","Points":6656,"X":422,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996376Z"},{"ID":21148,"Name":"058","Points":8554,"X":619,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996377Z"},{"ID":21149,"Name":"001 RTS CZW","Points":9701,"X":579,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996378Z"},{"ID":21150,"Name":"101","Points":9051,"X":454,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996378Z"},{"ID":21151,"Name":"SSJ 009","Points":9761,"X":507,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996379Z"},{"ID":21152,"Name":"A037","Points":9254,"X":571,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996379Z"},{"ID":21155,"Name":"lubie ogieƄ .","Points":10362,"X":580,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99638Z"},{"ID":21156,"Name":"Konfederacja","Points":9976,"X":466,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996381Z"},{"ID":21157,"Name":"|A| Elderbourne","Points":10495,"X":480,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996381Z"},{"ID":21158,"Name":"104","Points":9957,"X":477,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996382Z"},{"ID":21159,"Name":"Pobozowisko","Points":10954,"X":400,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996382Z"},{"ID":21160,"Name":"024","Points":7570,"X":610,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996383Z"},{"ID":21162,"Name":"104","Points":10495,"X":483,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996384Z"},{"ID":21163,"Name":"A0168","Points":10362,"X":354,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996384Z"},{"ID":21164,"Name":"B.014","Points":10000,"X":646,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996385Z"},{"ID":21165,"Name":".Wioska barbarzyƄska","Points":7882,"X":631,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996385Z"},{"ID":21166,"Name":"Prawa","Points":8884,"X":544,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996386Z"},{"ID":21167,"Name":"a moĆŒe off ? :)","Points":9370,"X":635,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996387Z"},{"ID":21168,"Name":"106","Points":10311,"X":474,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996387Z"},{"ID":21169,"Name":"Jaaa","Points":10479,"X":613,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996388Z"},{"ID":21171,"Name":"Wioska Dam2314","Points":4776,"X":496,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699630110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996388Z"},{"ID":21172,"Name":"pepe","Points":8940,"X":360,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996389Z"},{"ID":21174,"Name":"Westcoast.111","Points":10135,"X":378,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99639Z"},{"ID":21175,"Name":"003 Legio I Iulia Alpina (R)","Points":6956,"X":642,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99639Z"},{"ID":21176,"Name":"Wioska barbarzyƄska","Points":2827,"X":388,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996391Z"},{"ID":21177,"Name":"c Kolwicz 006","Points":10229,"X":408,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996391Z"},{"ID":21178,"Name":"007","Points":9569,"X":464,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996392Z"},{"ID":21179,"Name":"019","Points":9745,"X":630,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996393Z"},{"ID":21180,"Name":"000","Points":8753,"X":450,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996394Z"},{"ID":21181,"Name":"Nowa 25","Points":9827,"X":628,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996394Z"},{"ID":21182,"Name":"**Asap","Points":9761,"X":576,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996395Z"},{"ID":21183,"Name":"033","Points":9809,"X":361,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996395Z"},{"ID":21184,"Name":"Darmowe przeprowadzki","Points":9809,"X":480,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996396Z"},{"ID":21185,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":529,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996397Z"},{"ID":21186,"Name":"Zbieram PP","Points":9091,"X":382,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":849034917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996397Z"},{"ID":21187,"Name":"016. Kacundzk","Points":9994,"X":641,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996398Z"},{"ID":21188,"Name":"04 Twierdza ZachĂłd","Points":7242,"X":544,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996398Z"},{"ID":21189,"Name":"MELISKA","Points":9380,"X":359,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996399Z"},{"ID":21190,"Name":"-008-","Points":9177,"X":390,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9964Z"},{"ID":21191,"Name":"Ow Konfederacja","Points":10273,"X":601,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9964Z"},{"ID":21192,"Name":"A READY","Points":10160,"X":594,"Y":390,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996401Z"},{"ID":21193,"Name":"OgĂłrkowy baron","Points":9835,"X":392,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996401Z"},{"ID":21194,"Name":"~~019~~","Points":9818,"X":596,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996402Z"},{"ID":21195,"Name":"Kovir","Points":10068,"X":528,"Y":362,"Continent":"K35","Bonus":8,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996403Z"},{"ID":21196,"Name":"Pobozowisko","Points":9821,"X":408,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996403Z"},{"ID":21197,"Name":"Wioska barbarzyƄska","Points":3417,"X":432,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996404Z"},{"ID":21198,"Name":"MojeDnoToWaszSzczyt","Points":9813,"X":563,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996405Z"},{"ID":21199,"Name":"026 KTW","Points":8683,"X":635,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996405Z"},{"ID":21200,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":563,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996406Z"},{"ID":21201,"Name":"0034","Points":9825,"X":614,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996406Z"},{"ID":21202,"Name":"Pobozowisko","Points":10971,"X":387,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996407Z"},{"ID":21203,"Name":".003.PędziBolec","Points":10226,"X":564,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996408Z"},{"ID":21204,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10001,"X":499,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996408Z"},{"ID":21205,"Name":"065","Points":9809,"X":360,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996409Z"},{"ID":21206,"Name":"001.","Points":9588,"X":426,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996409Z"},{"ID":21207,"Name":"A0146","Points":10362,"X":357,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99641Z"},{"ID":21208,"Name":"Wioska barbarzyƄska","Points":6925,"X":436,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996411Z"},{"ID":21209,"Name":"078","Points":5449,"X":432,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996411Z"},{"ID":21210,"Name":"Lord Lord Franek .#220","Points":9991,"X":509,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996412Z"},{"ID":21211,"Name":"002. Lubię rude","Points":10237,"X":503,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996412Z"},{"ID":21212,"Name":"014","Points":7186,"X":364,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996413Z"},{"ID":21214,"Name":"Lord Lord Franek .#200","Points":10362,"X":514,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996414Z"},{"ID":21215,"Name":"Za progiem","Points":9847,"X":355,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996414Z"},{"ID":21216,"Name":"Mniejsze zƂo 0046","Points":8612,"X":360,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996415Z"},{"ID":21217,"Name":"025","Points":10294,"X":452,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996416Z"},{"ID":21218,"Name":"OgĂłrkowy baron","Points":9835,"X":397,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996416Z"},{"ID":21219,"Name":"030 Wioska","Points":8433,"X":647,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996417Z"},{"ID":21220,"Name":"34.Sparta","Points":9623,"X":353,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996418Z"},{"ID":21221,"Name":"016","Points":9899,"X":617,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996418Z"},{"ID":21222,"Name":"0120","Points":1644,"X":425,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996419Z"},{"ID":21223,"Name":"0105","Points":2758,"X":422,"Y":623,"Continent":"K64","Bonus":6,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99642Z"},{"ID":21224,"Name":"-019-","Points":9167,"X":387,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99642Z"},{"ID":21225,"Name":"Myk i do kieszonki","Points":9818,"X":358,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996421Z"},{"ID":21226,"Name":"a moĆŒe off ? :)","Points":9533,"X":622,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996422Z"},{"ID":21227,"Name":"a moĆŒe off ? :)","Points":9351,"X":640,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996422Z"},{"ID":21228,"Name":"Szlachcic","Points":8413,"X":427,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996423Z"},{"ID":21229,"Name":"006. Blaviken","Points":10019,"X":637,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996424Z"},{"ID":21230,"Name":"006","Points":9742,"X":391,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996424Z"},{"ID":21231,"Name":"0044","Points":9825,"X":621,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996425Z"},{"ID":21232,"Name":"02 KALINA","Points":12154,"X":637,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996425Z"},{"ID":21233,"Name":"RTS 3","Points":10495,"X":580,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996426Z"},{"ID":21234,"Name":"B.066","Points":10000,"X":644,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996427Z"},{"ID":21235,"Name":"*INTERTWINED*","Points":9711,"X":508,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996427Z"},{"ID":21236,"Name":"[C]_[010] Dejv.oldplyr","Points":10233,"X":360,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996428Z"},{"ID":21237,"Name":"002","Points":8871,"X":549,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996429Z"},{"ID":21238,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9880,"X":371,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996429Z"},{"ID":21239,"Name":"066. Gandava","Points":10302,"X":631,"Y":442,"Continent":"K46","Bonus":1,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99643Z"},{"ID":21240,"Name":"011 Grane Blindy 125/250","Points":10001,"X":541,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996431Z"},{"ID":21241,"Name":"Wioska barbarzyƄska","Points":10068,"X":530,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996431Z"},{"ID":21242,"Name":"PodziękowaƂ 4","Points":9818,"X":421,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996432Z"},{"ID":21243,"Name":"44. KaruTown","Points":9257,"X":614,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996432Z"},{"ID":21244,"Name":"002. Night City","Points":9835,"X":634,"Y":445,"Continent":"K46","Bonus":1,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996433Z"},{"ID":21246,"Name":"Wioska barbarzyƄska","Points":1350,"X":424,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996434Z"},{"ID":21247,"Name":"005 Legio VI Victrix","Points":8515,"X":641,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996435Z"},{"ID":21249,"Name":"Jehu_Kingdom_45","Points":7555,"X":641,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996435Z"},{"ID":21250,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10025,"X":510,"Y":646,"Continent":"K65","Bonus":1,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996436Z"},{"ID":21252,"Name":"0036","Points":9655,"X":619,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996436Z"},{"ID":21253,"Name":"Wioska barbarzyƄska","Points":10285,"X":383,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996437Z"},{"ID":21254,"Name":"023 Wioska barbarzyƄska","Points":10068,"X":544,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996438Z"},{"ID":21255,"Name":"c 0011 leƛniowice","Points":10078,"X":410,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996438Z"},{"ID":21257,"Name":"Pobozowisko","Points":10971,"X":406,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996439Z"},{"ID":21258,"Name":"Wioska barbarzyƄska","Points":10479,"X":642,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996439Z"},{"ID":21259,"Name":"0137","Points":10083,"X":642,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99644Z"},{"ID":21260,"Name":"Za domem","Points":9825,"X":357,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996441Z"},{"ID":21261,"Name":"Ave Why!","Points":10495,"X":459,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996441Z"},{"ID":21262,"Name":"Barbachama","Points":5731,"X":377,"Y":423,"Continent":"K43","Bonus":2,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996442Z"},{"ID":21264,"Name":"Avanti!","Points":9950,"X":354,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996443Z"},{"ID":21266,"Name":"mys","Points":9976,"X":565,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996443Z"},{"ID":21267,"Name":"*0035 Baraki","Points":9201,"X":622,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996444Z"},{"ID":21268,"Name":"Jednak wolę gofry","Points":9835,"X":475,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996445Z"},{"ID":21269,"Name":"a moĆŒe off ? :)","Points":9337,"X":633,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996445Z"},{"ID":21270,"Name":"Jednak wolę gofry","Points":10204,"X":497,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996446Z"},{"ID":21271,"Name":"079","Points":9894,"X":643,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996446Z"},{"ID":21272,"Name":"072. Pisae","Points":10252,"X":633,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996447Z"},{"ID":21273,"Name":"A0256","Points":10362,"X":354,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996448Z"},{"ID":21274,"Name":"Lord Lord Franek .#213","Points":10161,"X":511,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996448Z"},{"ID":21275,"Name":"107","Points":10285,"X":476,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996449Z"},{"ID":21276,"Name":"Flinii","Points":10019,"X":626,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996449Z"},{"ID":21277,"Name":"~~029~~","Points":9803,"X":594,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99645Z"},{"ID":21278,"Name":"064","Points":9809,"X":360,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996451Z"},{"ID":21279,"Name":"c Ett","Points":10222,"X":405,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996451Z"},{"ID":21280,"Name":"Ohne Dich","Points":4842,"X":621,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996452Z"},{"ID":21281,"Name":"-022-","Points":8131,"X":389,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996453Z"},{"ID":21282,"Name":"[166]","Points":8433,"X":631,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996453Z"},{"ID":21283,"Name":"060 Wioska barbarzyƄska","Points":10001,"X":536,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996454Z"},{"ID":21284,"Name":"amzi x1","Points":8468,"X":469,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996454Z"},{"ID":21285,"Name":"117","Points":10495,"X":487,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996455Z"},{"ID":21286,"Name":"Brat447","Points":10144,"X":355,"Y":509,"Continent":"K53","Bonus":2,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996456Z"},{"ID":21287,"Name":"131 DaSilva2402","Points":10001,"X":522,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996456Z"},{"ID":21288,"Name":"34. Wioska 34","Points":9267,"X":373,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996457Z"},{"ID":21289,"Name":"The Game Has Only Just Begun","Points":9976,"X":357,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996458Z"},{"ID":21290,"Name":"kathare","Points":10428,"X":553,"Y":630,"Continent":"K65","Bonus":1,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996458Z"},{"ID":21291,"Name":"68. Wioska 68","Points":9197,"X":370,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996459Z"},{"ID":21292,"Name":"Wioska barbarzyƄska","Points":9994,"X":509,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99646Z"},{"ID":21293,"Name":"Barbachama II","Points":3914,"X":378,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99646Z"},{"ID":21294,"Name":"Wioska barbarzyƄska","Points":10490,"X":642,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996461Z"},{"ID":21295,"Name":"BoOmBaa..","Points":6415,"X":440,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996462Z"},{"ID":21296,"Name":"The Game Has Only Just Begun","Points":9976,"X":359,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996462Z"},{"ID":21297,"Name":"VN Alphonse Elric","Points":9653,"X":464,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996463Z"},{"ID":21298,"Name":"118","Points":9616,"X":620,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996463Z"},{"ID":21299,"Name":"Avanti!","Points":9950,"X":355,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996464Z"},{"ID":21300,"Name":"101","Points":10495,"X":487,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996465Z"},{"ID":21301,"Name":"*0ST","Points":9123,"X":580,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996466Z"},{"ID":21302,"Name":"Mniejsze zƂo 0036","Points":9878,"X":361,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996466Z"},{"ID":21303,"Name":"032","Points":10311,"X":592,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996467Z"},{"ID":21305,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":559,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996468Z"},{"ID":21306,"Name":"~~053~~","Points":9612,"X":596,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996468Z"},{"ID":21307,"Name":"Yeremiah 2","Points":10021,"X":386,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996469Z"},{"ID":21308,"Name":"001","Points":9835,"X":627,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99647Z"},{"ID":21309,"Name":"0042","Points":9959,"X":447,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99647Z"},{"ID":21310,"Name":"--010--","Points":8177,"X":385,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996471Z"},{"ID":21311,"Name":"047","Points":7518,"X":607,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996472Z"},{"ID":21312,"Name":"019.","Points":9960,"X":645,"Y":476,"Continent":"K46","Bonus":6,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996472Z"},{"ID":21313,"Name":"B037","Points":10495,"X":497,"Y":458,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996473Z"},{"ID":21314,"Name":"Pobozowisko","Points":7421,"X":407,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996474Z"},{"ID":21315,"Name":"Wioska (026)","Points":9305,"X":641,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996474Z"},{"ID":21316,"Name":"The Game Has Only Just Begun","Points":9316,"X":358,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996475Z"},{"ID":21317,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996476Z"},{"ID":21318,"Name":"Maszlug kolonia IX","Points":9099,"X":370,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996476Z"},{"ID":21319,"Name":"*0024 Baraki","Points":9947,"X":628,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996477Z"},{"ID":21320,"Name":"od biedy do potęgi 6","Points":2316,"X":370,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996477Z"},{"ID":21321,"Name":"jaaa","Points":10476,"X":635,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996478Z"},{"ID":21322,"Name":"047...POƁUDNIE","Points":10311,"X":463,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996479Z"},{"ID":21323,"Name":"BoOmBaa..","Points":8502,"X":439,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996479Z"},{"ID":21324,"Name":"Kentin ufam Tobie","Points":10000,"X":362,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99648Z"},{"ID":21325,"Name":"przed potoom","Points":9048,"X":465,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996481Z"},{"ID":21326,"Name":"017","Points":9809,"X":361,"Y":533,"Continent":"K53","Bonus":1,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996481Z"},{"ID":21327,"Name":"off 100 %","Points":10311,"X":360,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996482Z"},{"ID":21328,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996483Z"},{"ID":21329,"Name":".:086:. ƁOBUZIK","Points":10495,"X":558,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996483Z"},{"ID":21330,"Name":"nic","Points":10209,"X":573,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996484Z"},{"ID":21331,"Name":"a moĆŒe off ? :)","Points":9353,"X":635,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996485Z"},{"ID":21332,"Name":"North Barba 033","Points":10087,"X":428,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996485Z"},{"ID":21334,"Name":"SSJ 037","Points":9761,"X":514,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996486Z"},{"ID":21335,"Name":"Pobozowisko","Points":8973,"X":391,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996487Z"},{"ID":21336,"Name":"010","Points":9761,"X":630,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996487Z"},{"ID":21337,"Name":"A0142","Points":10362,"X":359,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996488Z"},{"ID":21338,"Name":"0453","Points":9051,"X":549,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996488Z"},{"ID":21339,"Name":"Konfederacja +","Points":9720,"X":455,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996489Z"},{"ID":21340,"Name":"Westcoast.112","Points":10178,"X":372,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99649Z"},{"ID":21341,"Name":"Stalker2","Points":4065,"X":491,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":848942968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99649Z"},{"ID":21344,"Name":"Szlachcic","Points":10237,"X":425,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996491Z"},{"ID":21345,"Name":"#0093 barbarzyƄska","Points":9209,"X":467,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996491Z"},{"ID":21346,"Name":"65. Wioska 65","Points":9412,"X":374,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996492Z"},{"ID":21347,"Name":"Zeta Reticuli S2","Points":10728,"X":393,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996493Z"},{"ID":21348,"Name":"43. Wioska 43","Points":7368,"X":365,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996493Z"},{"ID":21349,"Name":"Osada koczownikĂłw","Points":9063,"X":512,"Y":359,"Continent":"K35","Bonus":9,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996494Z"},{"ID":21351,"Name":"020","Points":9977,"X":612,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996495Z"},{"ID":21352,"Name":"~~021~~","Points":9824,"X":603,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996495Z"},{"ID":21353,"Name":"B.068","Points":10002,"X":644,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996496Z"},{"ID":21355,"Name":"Deveste ufam Tobie","Points":5602,"X":418,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996496Z"},{"ID":21357,"Name":"061 Wioska barbarzyƄska","Points":10001,"X":536,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996497Z"},{"ID":21358,"Name":"Kentin ufam Tobie","Points":10000,"X":365,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996498Z"},{"ID":21359,"Name":"049|| Microscopium","Points":9818,"X":469,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996499Z"},{"ID":21361,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9829,"X":522,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996499Z"},{"ID":21362,"Name":"Wioska barbarzyƄska","Points":10078,"X":364,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9965Z"},{"ID":21363,"Name":"0059","Points":9825,"X":620,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9965Z"},{"ID":21365,"Name":"074...barbarka centr","Points":10226,"X":460,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996501Z"},{"ID":21366,"Name":"XXXX","Points":10485,"X":475,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996502Z"},{"ID":21367,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":522,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996502Z"},{"ID":21368,"Name":"128","Points":5882,"X":475,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996503Z"},{"ID":21369,"Name":"Deveste ufam Tobie","Points":9986,"X":435,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996504Z"},{"ID":21370,"Name":"- 335 - RR","Points":9529,"X":591,"Y":609,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996504Z"},{"ID":21371,"Name":"MELISKA","Points":10351,"X":357,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996505Z"},{"ID":21372,"Name":"Wioska barbarzyƄska","Points":10220,"X":555,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996506Z"},{"ID":21373,"Name":"077","Points":5821,"X":364,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996506Z"},{"ID":21374,"Name":"Prawa","Points":8820,"X":542,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996507Z"},{"ID":21375,"Name":"Pobozowisko","Points":7212,"X":404,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996508Z"},{"ID":21376,"Name":"Avanti!","Points":9950,"X":355,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996508Z"},{"ID":21377,"Name":"0012 MzM","Points":9258,"X":612,"Y":592,"Continent":"K56","Bonus":6,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996509Z"},{"ID":21378,"Name":"027 181 181","Points":10311,"X":358,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996509Z"},{"ID":21379,"Name":"Deveste ufam Tobie","Points":6587,"X":436,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99651Z"},{"ID":21380,"Name":"*5604*b Ten mecz","Points":10287,"X":622,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996511Z"},{"ID":21381,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":564,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996511Z"},{"ID":21382,"Name":"018","Points":9835,"X":613,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996512Z"},{"ID":21383,"Name":"#0038 barbarzyƄska","Points":10178,"X":465,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996512Z"},{"ID":21384,"Name":"KONFA TO MARKA, NARKA","Points":11349,"X":398,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996513Z"},{"ID":21385,"Name":"VN Phinks Magcub","Points":9651,"X":457,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996514Z"},{"ID":21386,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9371,"X":498,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996514Z"},{"ID":21387,"Name":"c 001a","Points":8646,"X":409,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996515Z"},{"ID":21388,"Name":"Wioska","Points":10178,"X":368,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996515Z"},{"ID":21389,"Name":"Mniejsze zƂo 00100","Points":10342,"X":356,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996516Z"},{"ID":21390,"Name":"**Adango","Points":9761,"X":574,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996517Z"},{"ID":21391,"Name":"Spać","Points":9549,"X":551,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996517Z"},{"ID":21393,"Name":"Ambrela 015","Points":10495,"X":571,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":698823542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996518Z"},{"ID":21394,"Name":"0117","Points":1772,"X":424,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996519Z"},{"ID":21395,"Name":"Pobozowisko","Points":11111,"X":405,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996519Z"},{"ID":21396,"Name":"Ave Why!","Points":7678,"X":493,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99652Z"},{"ID":21397,"Name":"003 PƂaciƂem Za KsiÄ…ĆŒki","Points":10001,"X":540,"Y":359,"Continent":"K35","Bonus":5,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99652Z"},{"ID":21398,"Name":".:014:. Chillout","Points":10495,"X":508,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996521Z"},{"ID":21399,"Name":"--9. Parzymiechy GĂłrne","Points":7609,"X":386,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996521Z"},{"ID":21400,"Name":"#036.518|497","Points":9735,"X":637,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996522Z"},{"ID":21402,"Name":"--005--","Points":9097,"X":382,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996523Z"},{"ID":21403,"Name":"125","Points":9632,"X":545,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996523Z"},{"ID":21405,"Name":"50. Wioska 50","Points":7239,"X":365,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996524Z"},{"ID":21406,"Name":"[009]","Points":9659,"X":610,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996524Z"},{"ID":21407,"Name":"Lord Lord Franek .#221","Points":10362,"X":523,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996525Z"},{"ID":21408,"Name":"A011","Points":10211,"X":579,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996525Z"},{"ID":21409,"Name":"Ow Konfederacja +","Points":9874,"X":607,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996526Z"},{"ID":21411,"Name":"**SIxMileLake","Points":9761,"X":575,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996527Z"},{"ID":21412,"Name":"008","Points":9993,"X":363,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996527Z"},{"ID":21413,"Name":"0206","Points":3020,"X":417,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996528Z"},{"ID":21414,"Name":"016","Points":9421,"X":492,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996528Z"},{"ID":21415,"Name":"B014","Points":9814,"X":648,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996529Z"},{"ID":21416,"Name":"[C]_[007] Dejv.oldplyr","Points":10495,"X":359,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99653Z"},{"ID":21417,"Name":"-005-","Points":9885,"X":387,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99653Z"},{"ID":21418,"Name":"Wioska barbarzyƄska","Points":10164,"X":439,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996531Z"},{"ID":21419,"Name":"Pobozowisko","Points":10971,"X":403,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996531Z"},{"ID":21420,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":565,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996532Z"},{"ID":21421,"Name":"003","Points":9638,"X":463,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996532Z"},{"ID":21422,"Name":"Szlachcic","Points":10237,"X":420,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996533Z"},{"ID":21424,"Name":"017. Watykan","Points":8990,"X":631,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996534Z"},{"ID":21425,"Name":"011","Points":9761,"X":629,"Y":562,"Continent":"K56","Bonus":3,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996534Z"},{"ID":21426,"Name":"030 Eoam","Points":10026,"X":629,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996535Z"},{"ID":21427,"Name":"deff 100 %","Points":10251,"X":383,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996535Z"},{"ID":21428,"Name":"Ow Konfederacja","Points":10273,"X":602,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996536Z"},{"ID":21429,"Name":"Taran","Points":10495,"X":557,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996536Z"},{"ID":21430,"Name":"0003","Points":10495,"X":489,"Y":644,"Continent":"K64","Bonus":6,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996537Z"},{"ID":21432,"Name":"004","Points":5293,"X":379,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996538Z"},{"ID":21433,"Name":"Ow Konfederacja","Points":9890,"X":608,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996538Z"},{"ID":21434,"Name":"*5603*a RKS CHUWDU","Points":10287,"X":624,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996539Z"},{"ID":21435,"Name":"#0040 barbarzyƄska","Points":10178,"X":462,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996539Z"},{"ID":21436,"Name":"Westcoast.082","Points":10178,"X":397,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99654Z"},{"ID":21437,"Name":"Szlachcic","Points":7178,"X":418,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99654Z"},{"ID":21438,"Name":"Wioska barbarzyƄska","Points":9825,"X":622,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996541Z"},{"ID":21439,"Name":"Wioska andrzej84","Points":5659,"X":391,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":6171569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996542Z"},{"ID":21440,"Name":"020 Wioska","Points":6152,"X":639,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996542Z"},{"ID":21441,"Name":"0045","Points":9692,"X":619,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996543Z"},{"ID":21442,"Name":"a moĆŒe off ? :)","Points":9337,"X":635,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996543Z"},{"ID":21443,"Name":"RTS 8","Points":10487,"X":580,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996544Z"},{"ID":21444,"Name":"Pobozowisko","Points":10541,"X":412,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996544Z"},{"ID":21445,"Name":"006 181","Points":10051,"X":354,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996545Z"},{"ID":21446,"Name":".:059:. ƁOBUZIK","Points":4595,"X":553,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996546Z"},{"ID":21447,"Name":"066","Points":6881,"X":426,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996546Z"},{"ID":21448,"Name":"031","Points":10311,"X":586,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996547Z"},{"ID":21449,"Name":"009","Points":9663,"X":461,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996547Z"},{"ID":21450,"Name":"041. Moguntiacum","Points":10495,"X":632,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996548Z"},{"ID":21451,"Name":"The Game Has Only Just Begun","Points":9976,"X":357,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996548Z"},{"ID":21453,"Name":"WiedĆșma - Imperium","Points":12154,"X":384,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996549Z"},{"ID":21454,"Name":"013 Wioska barbarzyƄska","Points":4698,"X":568,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99655Z"},{"ID":21455,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99655Z"},{"ID":21456,"Name":"031|| Centaurus","Points":10083,"X":488,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996551Z"},{"ID":21457,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":530,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996551Z"},{"ID":21458,"Name":".4.","Points":8745,"X":366,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996552Z"},{"ID":21459,"Name":"Wioska barbarzyƄska","Points":6036,"X":364,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996553Z"},{"ID":21460,"Name":"059","Points":3704,"X":366,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996553Z"},{"ID":21461,"Name":"A-004","Points":10580,"X":397,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996554Z"},{"ID":21462,"Name":"Bagdad","Points":9976,"X":497,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996554Z"},{"ID":21463,"Name":"034 181","Points":6552,"X":355,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996555Z"},{"ID":21464,"Name":"SSJ 053","Points":9517,"X":502,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996555Z"},{"ID":21465,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9817,"X":524,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996556Z"},{"ID":21466,"Name":"Wioska barbarzyƄska","Points":2562,"X":381,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996557Z"},{"ID":21467,"Name":"071. Ptolemais","Points":10068,"X":632,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996557Z"},{"ID":21468,"Name":"044 | PALESTINA","Points":4759,"X":640,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996558Z"},{"ID":21470,"Name":"kathare","Points":10362,"X":554,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996558Z"},{"ID":21471,"Name":"078","Points":6384,"X":366,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996559Z"},{"ID":21472,"Name":"B006","Points":9835,"X":647,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996559Z"},{"ID":21473,"Name":"022 Wioska barbarzyƄska","Points":10544,"X":541,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99656Z"},{"ID":21474,"Name":"015 Mario","Points":8978,"X":560,"Y":469,"Continent":"K45","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996561Z"},{"ID":21475,"Name":"Bagdad","Points":9976,"X":499,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996561Z"},{"ID":21476,"Name":"Pobozowisko","Points":10622,"X":395,"Y":602,"Continent":"K63","Bonus":1,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996562Z"},{"ID":21477,"Name":"Napewno to nie jest off","Points":5277,"X":486,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996563Z"},{"ID":21478,"Name":"A0244","Points":10362,"X":352,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996563Z"},{"ID":21479,"Name":"Valhalla A8","Points":4902,"X":375,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996564Z"},{"ID":21480,"Name":"020","Points":7414,"X":361,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996564Z"},{"ID":21481,"Name":"a moĆŒe off ? :)","Points":9351,"X":641,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996565Z"},{"ID":21482,"Name":"005","Points":4963,"X":379,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996565Z"},{"ID":21483,"Name":"142","Points":10311,"X":584,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996566Z"},{"ID":21484,"Name":"Westcoast.106","Points":10178,"X":372,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996566Z"},{"ID":21485,"Name":"014. AƂa","Points":10237,"X":503,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996567Z"},{"ID":21486,"Name":"SSJ 041","Points":9761,"X":512,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996568Z"},{"ID":21487,"Name":"#0015 barbarzyƄska","Points":10178,"X":464,"Y":356,"Continent":"K34","Bonus":4,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996569Z"},{"ID":21488,"Name":"yogi","Points":10495,"X":488,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996569Z"},{"ID":21490,"Name":"Zeta Reticuli S2","Points":10265,"X":395,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99657Z"},{"ID":21491,"Name":"a moĆŒe off ? :)","Points":10103,"X":575,"Y":587,"Continent":"K55","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99657Z"},{"ID":21492,"Name":"WB02","Points":9835,"X":398,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996571Z"},{"ID":21493,"Name":"Mniejsze zƂo 0043","Points":9160,"X":361,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996571Z"},{"ID":21494,"Name":"Wioska barbarzyƄska","Points":10220,"X":550,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996572Z"},{"ID":21495,"Name":"183","Points":9203,"X":578,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996573Z"},{"ID":21496,"Name":"062 Wioska barbarzyƄska","Points":10001,"X":542,"Y":359,"Continent":"K35","Bonus":8,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996573Z"},{"ID":21497,"Name":"Arnswalde","Points":7262,"X":379,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996574Z"},{"ID":21499,"Name":"-027-","Points":7068,"X":389,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699665152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996574Z"},{"ID":21500,"Name":"SSJ 018","Points":9761,"X":511,"Y":641,"Continent":"K65","Bonus":2,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996575Z"},{"ID":21501,"Name":"Mobil","Points":8825,"X":532,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996576Z"},{"ID":21502,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8820,"X":534,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996576Z"},{"ID":21503,"Name":"077...barbarka","Points":10116,"X":458,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996577Z"},{"ID":21504,"Name":"Lord Lord Franek .#222","Points":9137,"X":510,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996578Z"},{"ID":21505,"Name":"C 013","Points":5419,"X":590,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996578Z"},{"ID":21506,"Name":"Wioska barbarzyƄska","Points":5875,"X":435,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996579Z"},{"ID":21507,"Name":"B.038","Points":10000,"X":643,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996579Z"},{"ID":21509,"Name":"018","Points":9731,"X":635,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99658Z"},{"ID":21510,"Name":"Sweet Child O Mine","Points":7939,"X":629,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996581Z"},{"ID":21511,"Name":"Wioska barbarzyƄska","Points":4592,"X":363,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996581Z"},{"ID":21512,"Name":"OgĂłrkowy baron","Points":9835,"X":398,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996582Z"},{"ID":21513,"Name":"080","Points":9866,"X":356,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996583Z"},{"ID":21516,"Name":"Lord Lord Franek .#195","Points":10362,"X":516,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996583Z"},{"ID":21518,"Name":"a moĆŒe off ? :)","Points":9554,"X":621,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996584Z"},{"ID":21519,"Name":"od biedy do potęgi 4","Points":4767,"X":366,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996584Z"},{"ID":21521,"Name":"Bagdad","Points":9976,"X":498,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996585Z"},{"ID":21522,"Name":"Ow Konfederacja","Points":3907,"X":603,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996586Z"},{"ID":21523,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":558,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996586Z"},{"ID":21524,"Name":"! Siwa Wrona","Points":10685,"X":492,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996587Z"},{"ID":21525,"Name":"A038","Points":9174,"X":570,"Y":373,"Continent":"K35","Bonus":7,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996587Z"},{"ID":21526,"Name":"AA08 Norwegia","Points":11911,"X":379,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996588Z"},{"ID":21527,"Name":"Pobozowisko","Points":10957,"X":404,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996589Z"},{"ID":21528,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":561,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996589Z"},{"ID":21529,"Name":"Szlachcic","Points":10237,"X":422,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99659Z"},{"ID":21530,"Name":"B.041","Points":10000,"X":641,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99659Z"},{"ID":21531,"Name":"Wioska (031)","Points":8491,"X":644,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996591Z"},{"ID":21532,"Name":"-009-","Points":8316,"X":392,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996592Z"},{"ID":21533,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":526,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996592Z"},{"ID":21534,"Name":"005","Points":11130,"X":430,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996593Z"},{"ID":21535,"Name":"Ave Why!","Points":10495,"X":463,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996594Z"},{"ID":21536,"Name":"-064-","Points":4710,"X":376,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996594Z"},{"ID":21537,"Name":"Avanti!","Points":9950,"X":355,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996595Z"},{"ID":21538,"Name":"0065","Points":9328,"X":642,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996595Z"},{"ID":21539,"Name":"036","Points":8160,"X":372,"Y":569,"Continent":"K53","Bonus":4,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996596Z"},{"ID":21540,"Name":"c 0012","Points":9040,"X":411,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996597Z"},{"ID":21541,"Name":"K05..","Points":10495,"X":370,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996597Z"},{"ID":21542,"Name":"Jednak wolę gofry","Points":10311,"X":500,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996598Z"},{"ID":21543,"Name":"xkikutx","Points":9885,"X":521,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996599Z"},{"ID":21544,"Name":"A0243","Points":10362,"X":362,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996599Z"},{"ID":21545,"Name":"B030","Points":9879,"X":643,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9966Z"},{"ID":21546,"Name":"016","Points":7413,"X":361,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9966Z"},{"ID":21547,"Name":"164","Points":9210,"X":571,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996601Z"},{"ID":21548,"Name":"Odmienny Stan ƚwiadomoƛci","Points":8406,"X":366,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996602Z"},{"ID":21549,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":521,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996602Z"},{"ID":21550,"Name":".:023:. ƁOBUZIK","Points":7368,"X":556,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996603Z"},{"ID":21551,"Name":"**Unexpected","Points":9761,"X":573,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996603Z"},{"ID":21552,"Name":"0067","Points":7940,"X":640,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996604Z"},{"ID":21553,"Name":"Dzikie wsparcie","Points":9809,"X":481,"Y":646,"Continent":"K64","Bonus":7,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996604Z"},{"ID":21554,"Name":"**Agon","Points":9761,"X":575,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996605Z"},{"ID":21555,"Name":"0385","Points":10019,"X":585,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996605Z"},{"ID":21556,"Name":"a moĆŒe off ? :)","Points":9377,"X":640,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996606Z"},{"ID":21557,"Name":"Wioska barbarzyƄska","Points":10068,"X":527,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996607Z"},{"ID":21558,"Name":"038.","Points":8861,"X":645,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996607Z"},{"ID":21559,"Name":"kathare","Points":10257,"X":548,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996608Z"},{"ID":21560,"Name":"a moĆŒe off ? :)","Points":9495,"X":637,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996608Z"},{"ID":21561,"Name":"OgĂłrkowy baron","Points":9835,"X":396,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996609Z"},{"ID":21562,"Name":"0043","Points":9959,"X":446,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996609Z"},{"ID":21563,"Name":"182","Points":9134,"X":580,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99661Z"},{"ID":21564,"Name":"Pobozowisko","Points":8594,"X":402,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99661Z"},{"ID":21565,"Name":"Avanti!","Points":9950,"X":353,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996611Z"},{"ID":21566,"Name":"B.015","Points":10000,"X":646,"Y":518,"Continent":"K56","Bonus":2,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996611Z"},{"ID":21567,"Name":"Kentin ufam Tobie","Points":10000,"X":357,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996612Z"},{"ID":21568,"Name":"028 027","Points":10001,"X":543,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996613Z"},{"ID":21569,"Name":"A035","Points":10168,"X":575,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996613Z"},{"ID":21570,"Name":"0130","Points":5419,"X":434,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996614Z"},{"ID":21571,"Name":"Pobozowisko","Points":9863,"X":404,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996614Z"},{"ID":21572,"Name":"Wioska barbarzyƄska","Points":3946,"X":384,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996615Z"},{"ID":21573,"Name":"Wioska barbarzyƄska","Points":10124,"X":441,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996615Z"},{"ID":21575,"Name":"0388","Points":10019,"X":587,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996616Z"},{"ID":21576,"Name":"Gattacka","Points":9643,"X":610,"Y":411,"Continent":"K46","Bonus":5,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996616Z"},{"ID":21577,"Name":"09. Amon Din","Points":9735,"X":634,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996617Z"},{"ID":21578,"Name":"Pobozowisko","Points":9718,"X":406,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996617Z"},{"ID":21579,"Name":"Wioska barbarzyƄska","Points":2178,"X":381,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996618Z"},{"ID":21580,"Name":"Kentin ufam Tobie","Points":10000,"X":363,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996618Z"},{"ID":21581,"Name":"004","Points":10481,"X":359,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996619Z"},{"ID":21582,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":524,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996619Z"},{"ID":21583,"Name":"FB003","Points":9821,"X":642,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99662Z"},{"ID":21584,"Name":"0259","Points":10160,"X":537,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99662Z"},{"ID":21585,"Name":"A34","Points":10362,"X":463,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996621Z"},{"ID":21586,"Name":"021|| Pyxis","Points":10019,"X":490,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996621Z"},{"ID":21587,"Name":"Pobozowisko","Points":10950,"X":401,"Y":605,"Continent":"K64","Bonus":7,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996622Z"},{"ID":21588,"Name":"0382","Points":9390,"X":583,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996622Z"},{"ID":21589,"Name":"AA10 Anglia","Points":4856,"X":377,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996623Z"},{"ID":21590,"Name":"0133","Points":8078,"X":642,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996623Z"},{"ID":21591,"Name":"Wioska barbarzyƄska","Points":10337,"X":388,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996624Z"},{"ID":21592,"Name":"023","Points":6861,"X":362,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996625Z"},{"ID":21594,"Name":"Wioska barbarzyƄska","Points":10490,"X":640,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996625Z"},{"ID":21595,"Name":"Ave Why!","Points":10471,"X":464,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996626Z"},{"ID":21596,"Name":"081","Points":5524,"X":433,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996626Z"},{"ID":21597,"Name":"001","Points":10019,"X":464,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996627Z"},{"ID":21598,"Name":"Wioska barbarzyƄska","Points":6505,"X":438,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996627Z"},{"ID":21599,"Name":"c 065d","Points":4217,"X":422,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996628Z"},{"ID":21600,"Name":"Belek","Points":9580,"X":471,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996628Z"},{"ID":21601,"Name":"[0007]","Points":9569,"X":561,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996629Z"},{"ID":21602,"Name":"002","Points":10474,"X":357,"Y":537,"Continent":"K53","Bonus":7,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996629Z"},{"ID":21603,"Name":"Wioska barbarzyƄska","Points":10487,"X":633,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99663Z"},{"ID":21604,"Name":"c 062d","Points":7602,"X":415,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99663Z"},{"ID":21605,"Name":"Gattacka","Points":10160,"X":606,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996631Z"},{"ID":21606,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9960,"X":519,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996631Z"},{"ID":21607,"Name":"AA01 Polska","Points":12154,"X":379,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996632Z"},{"ID":21608,"Name":"019 Wioska","Points":7954,"X":636,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996632Z"},{"ID":21609,"Name":"B01","Points":10311,"X":461,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996633Z"},{"ID":21610,"Name":"Szlachcic","Points":10237,"X":418,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996633Z"},{"ID":21611,"Name":"Pamiętasz tamte czasy?","Points":5047,"X":491,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":848942968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996634Z"},{"ID":21612,"Name":"Ow Konfederacja","Points":10273,"X":600,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996634Z"},{"ID":21613,"Name":"jaaa","Points":10478,"X":642,"Y":544,"Continent":"K56","Bonus":3,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996635Z"},{"ID":21614,"Name":"001","Points":10019,"X":382,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996636Z"},{"ID":21615,"Name":"kathare","Points":10292,"X":549,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996636Z"},{"ID":21616,"Name":"037","Points":9313,"X":615,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996637Z"},{"ID":21617,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":564,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996637Z"},{"ID":21618,"Name":"[C]_[008] Dejv.oldplyr","Points":10205,"X":361,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996638Z"},{"ID":21619,"Name":"c 001b","Points":6976,"X":410,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996638Z"},{"ID":21620,"Name":"0035","Points":9247,"X":615,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996639Z"},{"ID":21621,"Name":"Pobozowisko","Points":10356,"X":387,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996639Z"},{"ID":21622,"Name":"058","Points":9835,"X":440,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99664Z"},{"ID":21623,"Name":"029 Wioska","Points":8049,"X":644,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99664Z"},{"ID":21624,"Name":"Pobozowisko","Points":7262,"X":391,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996641Z"},{"ID":21625,"Name":"005|| Leo","Points":10019,"X":491,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996641Z"},{"ID":21626,"Name":"c Fyra 2","Points":9380,"X":401,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996642Z"},{"ID":21627,"Name":"006 Ogromny PagĂłrek","Points":9899,"X":620,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996642Z"},{"ID":21628,"Name":"B.030","Points":10000,"X":645,"Y":511,"Continent":"K56","Bonus":9,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996643Z"},{"ID":21629,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10025,"X":519,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996643Z"},{"ID":21630,"Name":"Darmowe przeprowadzki","Points":10338,"X":467,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996644Z"},{"ID":21631,"Name":"a moĆŒe off ? :)","Points":10225,"X":619,"Y":582,"Continent":"K56","Bonus":8,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996644Z"},{"ID":21632,"Name":"031","Points":10237,"X":481,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996645Z"},{"ID":21633,"Name":"Wioska barbarzyƄska","Points":9988,"X":540,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996645Z"},{"ID":21634,"Name":"Piwna 18","Points":7062,"X":627,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996646Z"},{"ID":21635,"Name":"Mniejsze zƂo 0052","Points":7676,"X":360,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996646Z"},{"ID":21636,"Name":"Dąbrowa 0008","Points":3333,"X":384,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996647Z"},{"ID":21637,"Name":"A0156","Points":10362,"X":354,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996647Z"},{"ID":21638,"Name":"070","Points":8993,"X":601,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996648Z"},{"ID":21639,"Name":"Kentin ufam Tobie","Points":10000,"X":360,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996649Z"},{"ID":21640,"Name":"North Barba 004","Points":10247,"X":430,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996649Z"},{"ID":21642,"Name":"169","Points":10311,"X":582,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99665Z"},{"ID":21643,"Name":"0014","Points":9715,"X":428,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99665Z"},{"ID":21644,"Name":"Los Santos","Points":10116,"X":603,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996651Z"},{"ID":21645,"Name":"027","Points":5384,"X":613,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996651Z"},{"ID":21646,"Name":"!034.519|498","Points":9735,"X":638,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996652Z"},{"ID":21647,"Name":"[ Szukam Guza ]","Points":10495,"X":579,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996653Z"},{"ID":21648,"Name":"035.","Points":9821,"X":645,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996653Z"},{"ID":21649,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9915,"X":493,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996654Z"},{"ID":21650,"Name":"011.","Points":10495,"X":486,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996654Z"},{"ID":21651,"Name":"Ave Why!","Points":10160,"X":478,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996655Z"},{"ID":21652,"Name":"A010","Points":10495,"X":590,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996655Z"},{"ID":21653,"Name":"002","Points":4407,"X":428,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996656Z"},{"ID":21654,"Name":"117","Points":10484,"X":472,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996657Z"},{"ID":21655,"Name":"Gravity","Points":9484,"X":404,"Y":449,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996657Z"},{"ID":21656,"Name":"053...barbarka","Points":10438,"X":455,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996658Z"},{"ID":21657,"Name":"Avanti!","Points":9950,"X":354,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996659Z"},{"ID":21658,"Name":"Baa","Points":9825,"X":380,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996659Z"},{"ID":21659,"Name":"deff 100 %","Points":10243,"X":377,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99666Z"},{"ID":21660,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99666Z"},{"ID":21661,"Name":"Szlachcic","Points":10067,"X":420,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996661Z"},{"ID":21662,"Name":"Busz","Points":9761,"X":379,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996662Z"},{"ID":21663,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":566,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996662Z"},{"ID":21664,"Name":"a moĆŒe off ? :)","Points":9395,"X":640,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996663Z"},{"ID":21665,"Name":"038","Points":9902,"X":445,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996663Z"},{"ID":21666,"Name":"035","Points":10311,"X":644,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996664Z"},{"ID":21667,"Name":"Pobozowisko","Points":10105,"X":386,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996665Z"},{"ID":21668,"Name":"147...ksiÄ…ĆŒÄ™ plemienia","Points":8136,"X":452,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996665Z"},{"ID":21669,"Name":"025","Points":6190,"X":364,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996666Z"},{"ID":21670,"Name":"a moĆŒe off ? :)","Points":9361,"X":639,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996666Z"},{"ID":21671,"Name":"001-MiƂoƛć","Points":3930,"X":433,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996667Z"},{"ID":21672,"Name":"M181_057","Points":9894,"X":367,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996667Z"},{"ID":21673,"Name":"kathare","Points":9969,"X":551,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996668Z"},{"ID":21674,"Name":"011","Points":10211,"X":606,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996669Z"},{"ID":21675,"Name":"Ave Why!","Points":8016,"X":460,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996669Z"},{"ID":21676,"Name":"Cardiff","Points":10094,"X":377,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99667Z"},{"ID":21677,"Name":"B.064","Points":10000,"X":645,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996671Z"},{"ID":21678,"Name":"012","Points":7826,"X":362,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996671Z"},{"ID":21679,"Name":"Pobozowisko","Points":11819,"X":406,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996672Z"},{"ID":21680,"Name":"Kentin ufam Tobie","Points":10487,"X":369,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996672Z"},{"ID":21682,"Name":"0057","Points":9746,"X":619,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996673Z"},{"ID":21683,"Name":"Wioska barbarzyƄska","Points":10068,"X":528,"Y":357,"Continent":"K35","Bonus":7,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996673Z"},{"ID":21685,"Name":"087...barbarka","Points":10287,"X":455,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996674Z"},{"ID":21686,"Name":"Jan osada 03 K","Points":9400,"X":639,"Y":469,"Continent":"K46","Bonus":2,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996674Z"},{"ID":21687,"Name":"zzzGranica Bledu 03","Points":10503,"X":606,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996675Z"},{"ID":21688,"Name":"067. Gesoriacum","Points":10052,"X":631,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996675Z"},{"ID":21689,"Name":"Wioska barbarzyƄska","Points":8386,"X":440,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996676Z"},{"ID":21690,"Name":"0029","Points":9889,"X":620,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996676Z"},{"ID":21691,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996677Z"},{"ID":21693,"Name":"M181_056","Points":9575,"X":368,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996677Z"},{"ID":21694,"Name":"s181eo23","Points":9912,"X":393,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996678Z"},{"ID":21695,"Name":"kathare","Points":9978,"X":551,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996679Z"},{"ID":21696,"Name":"Ulu-mulu","Points":2654,"X":420,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996679Z"},{"ID":21697,"Name":"kathare","Points":10213,"X":548,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99668Z"},{"ID":21698,"Name":"zima","Points":9455,"X":625,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99668Z"},{"ID":21699,"Name":"Kentin ufam Tobie","Points":10000,"X":363,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996681Z"},{"ID":21700,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8822,"X":542,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996681Z"},{"ID":21701,"Name":"121","Points":10054,"X":615,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996682Z"},{"ID":21702,"Name":"Wioska Totenhaim","Points":9761,"X":602,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996682Z"},{"ID":21703,"Name":"002 Wioska hspr1","Points":5030,"X":569,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996683Z"},{"ID":21704,"Name":"Ow Konfederacja +","Points":10311,"X":601,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996683Z"},{"ID":21705,"Name":"0113","Points":6725,"X":417,"Y":617,"Continent":"K64","Bonus":7,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996684Z"},{"ID":21706,"Name":"020|| Monoceros","Points":9277,"X":459,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996684Z"},{"ID":21707,"Name":"kathare","Points":10247,"X":558,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996685Z"},{"ID":21708,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9838,"X":496,"Y":647,"Continent":"K64","Bonus":2,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996685Z"},{"ID":21709,"Name":"015","Points":5282,"X":475,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996686Z"},{"ID":21710,"Name":"Wioska barbarzyƄska","Points":10545,"X":640,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996686Z"},{"ID":21711,"Name":"086","Points":9570,"X":453,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996687Z"},{"ID":21712,"Name":"A023","Points":10211,"X":586,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996687Z"},{"ID":21713,"Name":"Ave Why!","Points":7773,"X":465,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996688Z"},{"ID":21714,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":558,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996689Z"},{"ID":21715,"Name":"Pobozowisko","Points":9550,"X":410,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996689Z"},{"ID":21716,"Name":"SSJ 040","Points":9761,"X":517,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99669Z"},{"ID":21717,"Name":"hbmacko","Points":9955,"X":600,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99669Z"},{"ID":21718,"Name":"MELISKA","Points":10036,"X":357,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996691Z"},{"ID":21719,"Name":"Wioska barbarzyƄska","Points":9376,"X":609,"Y":406,"Continent":"K46","Bonus":5,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996691Z"},{"ID":21721,"Name":"Wioska_2","Points":3816,"X":489,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":848942968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996692Z"},{"ID":21722,"Name":"The Game Has Only Just Begun","Points":9976,"X":358,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996692Z"},{"ID":21723,"Name":"#0035 barbarzyƄska","Points":10178,"X":466,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996693Z"},{"ID":21724,"Name":"Kentin ufam Tobie","Points":10019,"X":357,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996693Z"},{"ID":21725,"Name":"34k$ Grvvyq","Points":9736,"X":637,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996694Z"},{"ID":21726,"Name":"Pobozowisko","Points":7533,"X":405,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996694Z"},{"ID":21727,"Name":"*1*","Points":9308,"X":581,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996695Z"},{"ID":21728,"Name":"BoOmBaa..","Points":10838,"X":437,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996695Z"},{"ID":21729,"Name":"A0292","Points":10362,"X":355,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996696Z"},{"ID":21731,"Name":"142 Nowy początek","Points":7375,"X":373,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996697Z"},{"ID":21732,"Name":"*INTERTWINED**","Points":9711,"X":518,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996697Z"},{"ID":21733,"Name":"Ow Konfederacja","Points":10273,"X":603,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996698Z"},{"ID":21734,"Name":"Nowa Nadzieja 5","Points":9528,"X":494,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996698Z"},{"ID":21735,"Name":"*5621* Happy","Points":10287,"X":640,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996699Z"},{"ID":21736,"Name":"032","Points":5173,"X":643,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996699Z"},{"ID":21737,"Name":"off 100 %","Points":10256,"X":362,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.9967Z"},{"ID":21738,"Name":"Kentin ufam Tobie","Points":10000,"X":364,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996701Z"},{"ID":21739,"Name":"Pobozowisko","Points":10954,"X":398,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996701Z"},{"ID":21740,"Name":"**Algonquin","Points":9761,"X":574,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996702Z"},{"ID":21741,"Name":"0390","Points":10019,"X":587,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996702Z"},{"ID":21742,"Name":"0007","Points":10637,"X":475,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996703Z"},{"ID":21743,"Name":"001. Wioska Mr Bizy","Points":10273,"X":502,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996704Z"},{"ID":21744,"Name":"069. Nicaea","Points":10236,"X":632,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996704Z"},{"ID":21745,"Name":"Wioska barbarzyƄska","Points":6388,"X":434,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996705Z"},{"ID":21746,"Name":"013","Points":10211,"X":607,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996706Z"},{"ID":21747,"Name":"___","Points":10479,"X":378,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996706Z"},{"ID":21748,"Name":"063 Wioska barbarzyƄska","Points":10001,"X":546,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996707Z"},{"ID":21749,"Name":"BEZDZIETNY KAWALER","Points":5995,"X":425,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996707Z"},{"ID":21750,"Name":"South K35","Points":10042,"X":552,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996708Z"},{"ID":21751,"Name":"Pobozowisko","Points":10950,"X":391,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996709Z"},{"ID":21752,"Name":"Brat447","Points":10476,"X":354,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996709Z"},{"ID":21754,"Name":"Pobozowisko","Points":10950,"X":400,"Y":600,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99671Z"},{"ID":21755,"Name":"Bunkier 002","Points":12154,"X":618,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99671Z"},{"ID":21756,"Name":"nic","Points":10311,"X":575,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996711Z"},{"ID":21757,"Name":"011","Points":9899,"X":621,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996711Z"},{"ID":21758,"Name":"A012","Points":10495,"X":599,"Y":392,"Continent":"K35","Bonus":2,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996712Z"},{"ID":21759,"Name":"Szlachcic","Points":10237,"X":422,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996713Z"},{"ID":21760,"Name":"08. Wioska 8","Points":9648,"X":370,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996713Z"},{"ID":21761,"Name":"SoƂtys Twojej Wsi","Points":9747,"X":403,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996714Z"},{"ID":21762,"Name":"069","Points":6277,"X":430,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996714Z"},{"ID":21763,"Name":"Reginopolis","Points":4496,"X":380,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":699644054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996715Z"},{"ID":21764,"Name":"Ulu-mulu","Points":3693,"X":410,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996715Z"},{"ID":21765,"Name":"033.","Points":9827,"X":643,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996716Z"},{"ID":21767,"Name":"015. Kacundzk","Points":9819,"X":642,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996717Z"},{"ID":21768,"Name":"Ƃaweczka","Points":10300,"X":629,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996717Z"},{"ID":21769,"Name":"c Konarskiego 2","Points":6842,"X":407,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996718Z"},{"ID":21770,"Name":"**After","Points":9761,"X":574,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996718Z"},{"ID":21771,"Name":"pepe","Points":7852,"X":358,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996719Z"},{"ID":21772,"Name":"ARE YOU READY?","Points":6489,"X":592,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99672Z"},{"ID":21773,"Name":"BoOmBaa..","Points":2624,"X":444,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99672Z"},{"ID":21774,"Name":"~~023~~","Points":9819,"X":601,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996721Z"},{"ID":21775,"Name":"014. Kacundzk","Points":9761,"X":648,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996721Z"},{"ID":21776,"Name":"008 Wioska barbarzyƄska","Points":7190,"X":569,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996722Z"},{"ID":21777,"Name":"kathare","Points":9830,"X":547,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996722Z"},{"ID":21778,"Name":"058","Points":4736,"X":427,"Y":622,"Continent":"K64","Bonus":7,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996723Z"},{"ID":21779,"Name":"Pigi 1 Blisko","Points":12154,"X":619,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996723Z"},{"ID":21780,"Name":"A0169","Points":10362,"X":353,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996724Z"},{"ID":21781,"Name":"zXanadu","Points":10064,"X":391,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996724Z"},{"ID":21782,"Name":"028","Points":9719,"X":632,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996725Z"},{"ID":21783,"Name":"011.","Points":9999,"X":648,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996725Z"},{"ID":21784,"Name":"xkikutx","Points":10068,"X":520,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996726Z"},{"ID":21785,"Name":"#032.517|499","Points":9735,"X":636,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996726Z"},{"ID":21786,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9829,"X":520,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996727Z"},{"ID":21788,"Name":"A0194","Points":10362,"X":356,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996727Z"},{"ID":21789,"Name":"002","Points":9993,"X":359,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996728Z"},{"ID":21790,"Name":"xWioska","Points":10068,"X":525,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996729Z"},{"ID":21791,"Name":"058","Points":9809,"X":357,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996729Z"},{"ID":21792,"Name":"[C]_[001] Dejv.oldplyr","Points":10495,"X":358,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99673Z"},{"ID":21793,"Name":"Darmowe przeprowadzki","Points":10471,"X":466,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99673Z"},{"ID":21794,"Name":"074","Points":9761,"X":470,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996731Z"},{"ID":21795,"Name":"Ave Why!","Points":9809,"X":465,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996731Z"},{"ID":21796,"Name":"034","Points":10237,"X":484,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996732Z"},{"ID":21797,"Name":"WB004","Points":9452,"X":585,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996732Z"},{"ID":21798,"Name":"Konfederacja +","Points":9707,"X":456,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996733Z"},{"ID":21800,"Name":"019","Points":3811,"X":643,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996733Z"},{"ID":21801,"Name":"Szlachcic","Points":8283,"X":425,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996734Z"},{"ID":21802,"Name":"A 023","Points":7845,"X":600,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996735Z"},{"ID":21803,"Name":"WE ARE READY!","Points":8510,"X":594,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996735Z"},{"ID":21804,"Name":"102","Points":10495,"X":476,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996736Z"},{"ID":21805,"Name":"ETAT Z POƚREDNIAKA","Points":5005,"X":422,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996736Z"},{"ID":21806,"Name":"Wioska 2","Points":9071,"X":382,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996737Z"},{"ID":21807,"Name":"026","Points":3690,"X":613,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996737Z"},{"ID":21808,"Name":"psycha sitting","Points":10311,"X":461,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996738Z"},{"ID":21809,"Name":"Ow Konfederacja","Points":10273,"X":603,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996738Z"},{"ID":21810,"Name":"112 Wioska barbarzyƄska","Points":10001,"X":537,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996739Z"},{"ID":21811,"Name":"026 Wioska","Points":6284,"X":643,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996739Z"},{"ID":21812,"Name":"0031","Points":9627,"X":624,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99674Z"},{"ID":21814,"Name":"--4. Pole kalafiorĂłw","Points":10336,"X":386,"Y":407,"Continent":"K43","Bonus":5,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99674Z"},{"ID":21816,"Name":"Wioska barbarzyƄska","Points":9968,"X":528,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996741Z"},{"ID":21817,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":563,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996741Z"},{"ID":21818,"Name":"#001","Points":10495,"X":605,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996742Z"},{"ID":21819,"Name":"Kentin ufam Tobie","Points":10014,"X":361,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996742Z"},{"ID":21820,"Name":"A-003","Points":10580,"X":388,"Y":402,"Continent":"K43","Bonus":9,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996743Z"},{"ID":21821,"Name":"079","Points":4882,"X":360,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996743Z"},{"ID":21822,"Name":"0024 - teraz się obudziƂ","Points":10118,"X":488,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996744Z"},{"ID":21823,"Name":"c Fyra 1","Points":9137,"X":400,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996745Z"},{"ID":21824,"Name":"025 - Mostoles","Points":10019,"X":643,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996745Z"},{"ID":21825,"Name":"Wioska barbarzyƄska","Points":8737,"X":546,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996746Z"},{"ID":21826,"Name":"B018","Points":10068,"X":641,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996746Z"},{"ID":21827,"Name":"040","Points":6138,"X":644,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996747Z"},{"ID":21828,"Name":"00193","Points":5429,"X":440,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996747Z"},{"ID":21829,"Name":"Kurczak PoĆŒogi","Points":4609,"X":358,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":3713020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996748Z"},{"ID":21830,"Name":"006|| Virgo","Points":10019,"X":487,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996749Z"},{"ID":21831,"Name":"Lord Lord Franek .#196","Points":9010,"X":504,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996749Z"},{"ID":21832,"Name":"Ave Why!","Points":10251,"X":456,"Y":639,"Continent":"K64","Bonus":5,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99675Z"},{"ID":21833,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9203,"X":366,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99675Z"},{"ID":21834,"Name":"ave why!","Points":10237,"X":435,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996751Z"},{"ID":21835,"Name":"Horyzont zdarzeƄ","Points":9835,"X":539,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996751Z"},{"ID":21836,"Name":"087","Points":3030,"X":445,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996752Z"},{"ID":21837,"Name":"132 DaSilva2402","Points":10001,"X":517,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996753Z"},{"ID":21838,"Name":"021","Points":7013,"X":609,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996753Z"},{"ID":21839,"Name":"**Easy","Points":9771,"X":570,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996754Z"},{"ID":21840,"Name":"B.043","Points":10019,"X":649,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996754Z"},{"ID":21841,"Name":"0288","Points":9582,"X":535,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996755Z"},{"ID":21842,"Name":"027","Points":6898,"X":361,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996755Z"},{"ID":21843,"Name":"031...strazacki","Points":10495,"X":460,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996756Z"},{"ID":21844,"Name":"44. Wioska 44","Points":9719,"X":370,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996757Z"},{"ID":21845,"Name":"Wioska barbarzyƄska","Points":5825,"X":374,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996757Z"},{"ID":21846,"Name":"B.044","Points":10003,"X":647,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996758Z"},{"ID":21847,"Name":"deff 100 %","Points":9390,"X":364,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996758Z"},{"ID":21848,"Name":"Ambrela 001","Points":10495,"X":575,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":698823542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996759Z"},{"ID":21849,"Name":"#.44 Wioska barbarzyƄska","Points":4060,"X":641,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996759Z"},{"ID":21850,"Name":"Wioska barbarzyƄska","Points":3366,"X":381,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99676Z"},{"ID":21851,"Name":"Pobozowisko","Points":7351,"X":389,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996761Z"},{"ID":21852,"Name":"a moĆŒe off ? :)","Points":9334,"X":639,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996761Z"},{"ID":21854,"Name":"003|| Gemini","Points":10019,"X":485,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996762Z"},{"ID":21855,"Name":"029 030","Points":10001,"X":539,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996762Z"},{"ID":21856,"Name":"BEZDZIETNY KAWALER","Points":5543,"X":418,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996763Z"},{"ID":21857,"Name":"A0195","Points":10362,"X":356,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996764Z"},{"ID":21858,"Name":"BZioska barbarzyƄska","Points":10479,"X":638,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996764Z"},{"ID":21859,"Name":"-024-","Points":9359,"X":389,"Y":592,"Continent":"K53","Bonus":2,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996765Z"},{"ID":21860,"Name":"0107","Points":5676,"X":418,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996765Z"},{"ID":21861,"Name":"Westcoast.113","Points":10178,"X":377,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996766Z"},{"ID":21862,"Name":"jaaa","Points":10636,"X":641,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996766Z"},{"ID":21863,"Name":"jaaa","Points":10495,"X":635,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996767Z"},{"ID":21864,"Name":"jaaa","Points":10481,"X":631,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996768Z"},{"ID":21865,"Name":"078","Points":10713,"X":483,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996768Z"},{"ID":21866,"Name":"114","Points":10348,"X":478,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996769Z"},{"ID":21867,"Name":"Wioska barbarzyƄska","Points":9514,"X":642,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996769Z"},{"ID":21868,"Name":"Wioska barbarzyƄska","Points":4039,"X":372,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99677Z"},{"ID":21869,"Name":"0085","Points":10160,"X":531,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99677Z"},{"ID":21870,"Name":"K34 - [026] Before Land","Points":10259,"X":443,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996771Z"},{"ID":21871,"Name":"Ow Konfederacja","Points":10654,"X":608,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996771Z"},{"ID":21872,"Name":"Kentin ufam Tobie","Points":10000,"X":357,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996772Z"},{"ID":21873,"Name":"Ulu-mulu","Points":4610,"X":414,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996772Z"},{"ID":21874,"Name":"Jehu_Kingdom_46","Points":10167,"X":645,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996773Z"},{"ID":21876,"Name":"c 003 jĂłzefin","Points":10072,"X":412,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996773Z"},{"ID":21877,"Name":"106","Points":9872,"X":485,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996774Z"},{"ID":21878,"Name":"yyyy","Points":10057,"X":500,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996774Z"},{"ID":21879,"Name":"B.063","Points":10000,"X":645,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996775Z"},{"ID":21880,"Name":"046","Points":10237,"X":469,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996775Z"},{"ID":21881,"Name":"- 328 - RR","Points":9465,"X":592,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996776Z"},{"ID":21882,"Name":"0001","Points":10238,"X":478,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699117178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996776Z"},{"ID":21883,"Name":"Kentin ufam Tobie","Points":10019,"X":360,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996777Z"},{"ID":21884,"Name":"wioska strachu","Points":10247,"X":547,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996777Z"},{"ID":21885,"Name":"005","Points":9993,"X":361,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996778Z"},{"ID":21886,"Name":"Mniejsze zƂo 0061","Points":6936,"X":363,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996778Z"},{"ID":21887,"Name":"0110","Points":9746,"X":436,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996779Z"},{"ID":21888,"Name":"--8. Parzymiechy Dolne","Points":7753,"X":384,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996779Z"},{"ID":21889,"Name":"0036","Points":10069,"X":443,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.99678Z"},{"ID":21890,"Name":"Westcoast.102","Points":10178,"X":369,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996781Z"},{"ID":21891,"Name":"068","Points":10311,"X":583,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996781Z"},{"ID":21892,"Name":"A0103","Points":10362,"X":355,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996782Z"},{"ID":21894,"Name":"Ave Why!","Points":9019,"X":442,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996782Z"},{"ID":21895,"Name":"Wioska barbarzyƄska","Points":10232,"X":552,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996783Z"},{"ID":21896,"Name":"08. Wiocha","Points":10019,"X":435,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996783Z"},{"ID":21897,"Name":"a moĆŒe off ? :)","Points":9340,"X":633,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996784Z"},{"ID":21898,"Name":"mys","Points":10068,"X":563,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996784Z"},{"ID":21899,"Name":"012.","Points":10019,"X":643,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996785Z"},{"ID":21900,"Name":"a moĆŒe off ? :)","Points":9737,"X":642,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:53.996785Z"},{"ID":21901,"Name":"aaaa","Points":9899,"X":476,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028957Z"},{"ID":21902,"Name":"Jestem Poza Kontrolą","Points":9148,"X":364,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028958Z"},{"ID":21903,"Name":"#033.518|499","Points":9735,"X":637,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028958Z"},{"ID":21904,"Name":"0049","Points":9923,"X":443,"Y":365,"Continent":"K34","Bonus":5,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028958Z"},{"ID":21905,"Name":"071","Points":10301,"X":643,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028959Z"},{"ID":21906,"Name":"029","Points":9626,"X":451,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028959Z"},{"ID":21907,"Name":"Kentin ufam Tobie","Points":10000,"X":365,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028959Z"},{"ID":21908,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02896Z"},{"ID":21909,"Name":"Ave Why!","Points":9239,"X":456,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02896Z"},{"ID":21910,"Name":"Valhalla A7","Points":4768,"X":374,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02896Z"},{"ID":21911,"Name":"Ow Konfederacja","Points":10273,"X":603,"Y":400,"Continent":"K46","Bonus":2,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028961Z"},{"ID":21912,"Name":"ETAT Z POƚREDNIAKA","Points":5734,"X":425,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028961Z"},{"ID":21913,"Name":"Wioska barbarzyƄska","Points":9665,"X":533,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028962Z"},{"ID":21914,"Name":"Wioska barbarzyƄska","Points":10068,"X":528,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028962Z"},{"ID":21915,"Name":"023 - Sabadell","Points":10019,"X":643,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028962Z"},{"ID":21916,"Name":"ETAT Z POƚREDNIAKA","Points":10291,"X":424,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028963Z"},{"ID":21917,"Name":"014","Points":9761,"X":637,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028963Z"},{"ID":21918,"Name":"VN Shaiapouf","Points":10375,"X":496,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028963Z"},{"ID":21919,"Name":"SSJ 043","Points":9761,"X":514,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028964Z"},{"ID":21920,"Name":"145","Points":7028,"X":450,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028964Z"},{"ID":21921,"Name":"Wioska raj","Points":2445,"X":392,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":6171569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028964Z"},{"ID":21922,"Name":"Avanti!","Points":9950,"X":352,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028965Z"},{"ID":21923,"Name":"~~030~~","Points":9744,"X":595,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028965Z"},{"ID":21924,"Name":"Deveste ufam Tobie","Points":10362,"X":437,"Y":630,"Continent":"K64","Bonus":8,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028965Z"},{"ID":21925,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":533,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028965Z"},{"ID":21926,"Name":"aAa Szlaban 4","Points":11321,"X":601,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028966Z"},{"ID":21927,"Name":"OgĂłrkowy baron","Points":9835,"X":391,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028966Z"},{"ID":21928,"Name":"Bagdad","Points":9976,"X":498,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028966Z"},{"ID":21929,"Name":"Osada koczownikĂłw","Points":8486,"X":366,"Y":443,"Continent":"K43","Bonus":2,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028967Z"},{"ID":21930,"Name":"A021","Points":10168,"X":587,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028967Z"},{"ID":21931,"Name":"003","Points":4241,"X":427,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028967Z"},{"ID":21932,"Name":"000000000","Points":10390,"X":553,"Y":633,"Continent":"K65","Bonus":9,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028968Z"},{"ID":21933,"Name":"--7. Zimna Dziura","Points":8578,"X":386,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028968Z"},{"ID":21934,"Name":"0045","Points":9967,"X":445,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028968Z"},{"ID":21935,"Name":"Wioska (010)","Points":8555,"X":627,"Y":434,"Continent":"K46","Bonus":6,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028969Z"},{"ID":21936,"Name":"#008","Points":9300,"X":604,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028969Z"},{"ID":21937,"Name":"078","Points":9478,"X":647,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028969Z"},{"ID":21938,"Name":"Wioska 002","Points":3194,"X":389,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":6171569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02897Z"},{"ID":21939,"Name":"0561","Points":10019,"X":568,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02897Z"},{"ID":21940,"Name":"0136","Points":8754,"X":437,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02897Z"},{"ID":21941,"Name":"AB14 Kosowo","Points":4499,"X":382,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028971Z"},{"ID":21942,"Name":"*INTERTWINED*","Points":9711,"X":507,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028971Z"},{"ID":21943,"Name":"VN Machi Komacine","Points":10063,"X":457,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028971Z"},{"ID":21945,"Name":"A0147","Points":10362,"X":353,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028972Z"},{"ID":21946,"Name":"Wioska barbarzyƄska","Points":10714,"X":641,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028972Z"},{"ID":21948,"Name":"c 086d","Points":5611,"X":413,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028972Z"},{"ID":21949,"Name":"C004","Points":6904,"X":596,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028973Z"},{"ID":21950,"Name":"a moĆŒe off ? :)","Points":9366,"X":641,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028973Z"},{"ID":21951,"Name":"033","Points":10311,"X":585,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028973Z"},{"ID":21952,"Name":"015 Wioska barbarzyƄska","Points":5219,"X":568,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028973Z"},{"ID":21953,"Name":"013 | PALESTINA","Points":9544,"X":639,"Y":446,"Continent":"K46","Bonus":6,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028974Z"},{"ID":21954,"Name":"BoOmBaa..","Points":9160,"X":444,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028974Z"},{"ID":21955,"Name":"Fto mi moplik dupnoƂ gorole","Points":5553,"X":360,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028974Z"},{"ID":21956,"Name":"Gattacka","Points":9382,"X":610,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028975Z"},{"ID":21957,"Name":"002. RakĂłw","Points":10187,"X":495,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028975Z"},{"ID":21958,"Name":"Ulu-mulu","Points":1476,"X":416,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028975Z"},{"ID":21959,"Name":"Wioska barbarzyƄska","Points":10242,"X":385,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028976Z"},{"ID":21960,"Name":"168","Points":10311,"X":573,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028976Z"},{"ID":21961,"Name":"c 010 Oaza 8","Points":9294,"X":414,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028976Z"},{"ID":21962,"Name":"037","Points":8358,"X":371,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028977Z"},{"ID":21963,"Name":"a moĆŒe off ? :)","Points":10005,"X":623,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028977Z"},{"ID":21965,"Name":"~~025~~","Points":9488,"X":596,"Y":607,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028977Z"},{"ID":21966,"Name":"cichy oszust","Points":9835,"X":588,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028978Z"},{"ID":21967,"Name":"#0037 barbarzyƄska","Points":10178,"X":466,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028978Z"},{"ID":21968,"Name":"#0001 messi1996","Points":10178,"X":468,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028978Z"},{"ID":21969,"Name":"A0104","Points":10362,"X":353,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028979Z"},{"ID":21970,"Name":"jaaa","Points":10476,"X":627,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028979Z"},{"ID":21971,"Name":"PiekƂo to inni","Points":10495,"X":572,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028979Z"},{"ID":21972,"Name":"050","Points":4503,"X":427,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02898Z"},{"ID":21973,"Name":"BiaƂoƂęka","Points":9446,"X":402,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02898Z"},{"ID":21974,"Name":"BEZDZIETNY KAWALER","Points":6249,"X":420,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02898Z"},{"ID":21975,"Name":"030 031","Points":10001,"X":543,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028981Z"},{"ID":21977,"Name":"OgĂłrkowy baron","Points":9835,"X":398,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028981Z"},{"ID":21978,"Name":"111","Points":10251,"X":628,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028981Z"},{"ID":21979,"Name":"012 | PALESTINA","Points":9239,"X":633,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028982Z"},{"ID":21980,"Name":"SSJ 061","Points":9505,"X":521,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028982Z"},{"ID":21982,"Name":"Jednak wolę gofry","Points":9888,"X":496,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028982Z"},{"ID":21983,"Name":"Jednak wolę gofry","Points":10178,"X":429,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028983Z"},{"ID":21984,"Name":"c 001c","Points":8813,"X":409,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028983Z"},{"ID":21985,"Name":"Mniejsze zƂo 0038","Points":7389,"X":361,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028983Z"},{"ID":21986,"Name":"Iluminacja","Points":4478,"X":377,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028984Z"},{"ID":21987,"Name":"B.008","Points":10000,"X":649,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028984Z"},{"ID":21988,"Name":"[0017]","Points":9031,"X":555,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028984Z"},{"ID":21989,"Name":"029","Points":8464,"X":470,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028984Z"},{"ID":21990,"Name":"#037.520|496","Points":9735,"X":639,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028985Z"},{"ID":21991,"Name":"Szlachcic","Points":8165,"X":433,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028985Z"},{"ID":21992,"Name":"Ulu-mulu","Points":8198,"X":427,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028986Z"},{"ID":21993,"Name":"014 Legio I Herculia (G)","Points":9165,"X":650,"Y":500,"Continent":"K56","Bonus":5,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028986Z"},{"ID":21994,"Name":"105","Points":10495,"X":488,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028986Z"},{"ID":21995,"Name":"Wioska barbarzyƄska","Points":10019,"X":405,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028987Z"},{"ID":21996,"Name":"- 337 - RR","Points":9818,"X":595,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028987Z"},{"ID":21997,"Name":"OgĂłrkowy baron","Points":9835,"X":400,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028987Z"},{"ID":21998,"Name":"010-Patryk","Points":3367,"X":431,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028987Z"},{"ID":21999,"Name":"125","Points":6709,"X":505,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028988Z"},{"ID":22000,"Name":"--6. Ruska Rafineria","Points":10285,"X":388,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028988Z"},{"ID":22001,"Name":"Szlachcic","Points":9899,"X":424,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028988Z"},{"ID":22002,"Name":"Wioska barbarzyƄska","Points":5311,"X":371,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028989Z"},{"ID":22003,"Name":"A008","Points":10211,"X":580,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028989Z"},{"ID":22004,"Name":"The Game Has Only Just Begun","Points":9976,"X":357,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028989Z"},{"ID":22005,"Name":"Avanti!","Points":9950,"X":352,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02899Z"},{"ID":22006,"Name":"a moĆŒe off ? :)","Points":9334,"X":632,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02899Z"},{"ID":22007,"Name":"Pobozowisko","Points":9848,"X":375,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02899Z"},{"ID":22008,"Name":"013 Legio I Isaura Sagitaria","Points":3891,"X":646,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028991Z"},{"ID":22009,"Name":"#0020 kamilsan993","Points":10178,"X":469,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028991Z"},{"ID":22010,"Name":"030 Sibir","Points":9935,"X":616,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028991Z"},{"ID":22011,"Name":"Wioska barbarzyƄska","Points":10172,"X":390,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028992Z"},{"ID":22012,"Name":"South K35","Points":9809,"X":555,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028992Z"},{"ID":22013,"Name":"A0165","Points":10362,"X":352,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028992Z"},{"ID":22014,"Name":"046...CENTRO","Points":10237,"X":455,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028993Z"},{"ID":22015,"Name":"Zeta Reticuli S2","Points":10265,"X":391,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028993Z"},{"ID":22016,"Name":"Piwna 19","Points":6165,"X":631,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028993Z"},{"ID":22017,"Name":"PiekƂo to inni","Points":10495,"X":571,"Y":371,"Continent":"K35","Bonus":4,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028994Z"},{"ID":22018,"Name":"Pobozowisko","Points":10971,"X":396,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028994Z"},{"ID":22019,"Name":"062","Points":5194,"X":618,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028994Z"},{"ID":22021,"Name":"0026","Points":10083,"X":538,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028995Z"},{"ID":22022,"Name":"Kentin ufam Tobie","Points":10000,"X":362,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028995Z"},{"ID":22023,"Name":"Jan Nord K","Points":9535,"X":642,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028995Z"},{"ID":22024,"Name":"Ulu-mulu","Points":2475,"X":413,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028996Z"},{"ID":22025,"Name":"Daje w szyje .","Points":10495,"X":578,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028996Z"},{"ID":22026,"Name":"OgĂłrkowy baron","Points":9835,"X":403,"Y":395,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028996Z"},{"ID":22027,"Name":"BoOmBaa..","Points":8334,"X":435,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028997Z"},{"ID":22028,"Name":"059","Points":8416,"X":438,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028997Z"},{"ID":22029,"Name":"North Barba 015","Points":9761,"X":431,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028997Z"},{"ID":22030,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":563,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028997Z"},{"ID":22031,"Name":"**Killarney","Points":9761,"X":575,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028998Z"},{"ID":22032,"Name":"Pobozowisko","Points":10945,"X":393,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028998Z"},{"ID":22033,"Name":"081","Points":8372,"X":450,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028998Z"},{"ID":22034,"Name":"-003-","Points":9798,"X":358,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":9253494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028999Z"},{"ID":22035,"Name":"019. Winner","Points":9796,"X":503,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028999Z"},{"ID":22036,"Name":"Wioska barbarzyƄska,","Points":10233,"X":582,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.028999Z"},{"ID":22037,"Name":"Ow Konfederacja","Points":10273,"X":607,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029Z"},{"ID":22038,"Name":"monetki B","Points":9557,"X":621,"Y":577,"Continent":"K56","Bonus":9,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029Z"},{"ID":22039,"Name":"Eilonia","Points":8759,"X":516,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029001Z"},{"ID":22040,"Name":"BoOmBaa..","Points":3522,"X":438,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029001Z"},{"ID":22041,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029001Z"},{"ID":22043,"Name":"Ow Konfederacja","Points":10273,"X":602,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029002Z"},{"ID":22044,"Name":"Coruscant","Points":9797,"X":501,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029002Z"},{"ID":22046,"Name":"c Agnesiara","Points":7268,"X":399,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029002Z"},{"ID":22047,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":557,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029002Z"},{"ID":22048,"Name":"Wioska barbarzyƄska","Points":4001,"X":362,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029003Z"},{"ID":22049,"Name":"Myk i do kieszonki","Points":9799,"X":358,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029003Z"},{"ID":22050,"Name":"c 004 Wioska","Points":10083,"X":413,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029003Z"},{"ID":22051,"Name":"Mniejsze zƂo 0062","Points":5641,"X":362,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029004Z"},{"ID":22052,"Name":"126","Points":6788,"X":508,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029004Z"},{"ID":22053,"Name":"#004 Zenit WƂadca ƚwiata","Points":2052,"X":365,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029004Z"},{"ID":22054,"Name":"Jan 04 K","Points":9299,"X":639,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029005Z"},{"ID":22055,"Name":"B.045","Points":10000,"X":644,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029005Z"},{"ID":22056,"Name":"~~039~~","Points":9742,"X":596,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029005Z"},{"ID":22057,"Name":"A012","Points":10211,"X":578,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029005Z"},{"ID":22058,"Name":"Amsterdam","Points":3700,"X":492,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029006Z"},{"ID":22059,"Name":"008 181","Points":9939,"X":356,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029006Z"},{"ID":22060,"Name":"Ulu-mulu","Points":3255,"X":415,"Y":621,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029006Z"},{"ID":22061,"Name":"Nowa Nadzieja 4","Points":7307,"X":497,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029007Z"},{"ID":22062,"Name":"Odmienny Stan ƚwiadomoƛci","Points":7821,"X":368,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029007Z"},{"ID":22063,"Name":"B006","Points":9592,"X":399,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029007Z"},{"ID":22064,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9133,"X":369,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029007Z"},{"ID":22065,"Name":"Maszlug kolonia","Points":9473,"X":367,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029008Z"},{"ID":22066,"Name":"Jestem Poza Kontrolą","Points":7764,"X":359,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029008Z"},{"ID":22067,"Name":"027","Points":10495,"X":579,"Y":380,"Continent":"K35","Bonus":9,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029009Z"},{"ID":22068,"Name":"Pobozowisko","Points":10952,"X":387,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029009Z"},{"ID":22069,"Name":"Mobil","Points":8825,"X":539,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029009Z"},{"ID":22070,"Name":"006 Robię Papiery","Points":10001,"X":545,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02901Z"},{"ID":22071,"Name":"Rohan","Points":7211,"X":612,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02901Z"},{"ID":22073,"Name":"MELISKA","Points":9330,"X":357,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02901Z"},{"ID":22074,"Name":"008 Sprzątana Ɓazienka","Points":10001,"X":539,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029011Z"},{"ID":22075,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9389,"X":367,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029011Z"},{"ID":22077,"Name":"OgĂłrkowy baron","Points":9835,"X":396,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029011Z"},{"ID":22078,"Name":"!!off 100 %","Points":10265,"X":364,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029011Z"},{"ID":22079,"Name":"Ulu-mulu","Points":4257,"X":414,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029012Z"},{"ID":22080,"Name":"Wioska barbarzyƄska","Points":10237,"X":553,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029012Z"},{"ID":22081,"Name":"|A| Nightcross","Points":10495,"X":480,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029012Z"},{"ID":22082,"Name":"009.","Points":10838,"X":485,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029013Z"},{"ID":22083,"Name":"Aleksandria","Points":4167,"X":493,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029013Z"},{"ID":22085,"Name":"023 Alta","Points":10172,"X":617,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029013Z"},{"ID":22086,"Name":"North PataTaj","Points":9923,"X":431,"Y":369,"Continent":"K34","Bonus":6,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029014Z"},{"ID":22087,"Name":"037.","Points":7291,"X":640,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029014Z"},{"ID":22088,"Name":"-x4","Points":10252,"X":499,"Y":499,"Continent":"K44","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029014Z"},{"ID":22089,"Name":"Pobozowisko","Points":10971,"X":374,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029014Z"},{"ID":22090,"Name":"od biedy do potęgi 3","Points":3341,"X":366,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":849094603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029015Z"},{"ID":22091,"Name":"0048","Points":10053,"X":451,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029015Z"},{"ID":22092,"Name":"SSJ 045","Points":9761,"X":514,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029015Z"},{"ID":22093,"Name":"Szlachcic","Points":10237,"X":423,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029016Z"},{"ID":22094,"Name":"120","Points":9967,"X":475,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029016Z"},{"ID":22095,"Name":"Mniejsze zƂo 0047","Points":9396,"X":361,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029016Z"},{"ID":22096,"Name":"Ulu-mulu","Points":2510,"X":412,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029017Z"},{"ID":22097,"Name":"Wioska barbarzyƄska","Points":4564,"X":373,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029017Z"},{"ID":22098,"Name":"022","Points":10220,"X":615,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029017Z"},{"ID":22099,"Name":"Konfederacja +","Points":9976,"X":449,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029018Z"},{"ID":22100,"Name":"064 Wioska barbarzyƄska","Points":10001,"X":537,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029018Z"},{"ID":22102,"Name":"Opactwo","Points":9654,"X":378,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029018Z"},{"ID":22104,"Name":"BEZDZIETNY KAWALER","Points":6360,"X":425,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029018Z"},{"ID":22105,"Name":"065 Wioska barbarzyƄska","Points":10001,"X":544,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029019Z"},{"ID":22106,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":564,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029019Z"},{"ID":22107,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":560,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029019Z"},{"ID":22108,"Name":"A008","Points":9793,"X":475,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02902Z"},{"ID":22109,"Name":"B022","Points":9835,"X":646,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02902Z"},{"ID":22110,"Name":"The Game Has Only Just Begun","Points":9976,"X":358,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02902Z"},{"ID":22111,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9899,"X":523,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029021Z"},{"ID":22112,"Name":"47. Wioska 47","Points":7071,"X":363,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029021Z"},{"ID":22113,"Name":"~~047~~","Points":9742,"X":600,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029021Z"},{"ID":22114,"Name":"Herrmein","Points":10019,"X":371,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029022Z"},{"ID":22115,"Name":"Pobozowisko","Points":7777,"X":392,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029022Z"},{"ID":22116,"Name":"0562","Points":10019,"X":567,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029022Z"},{"ID":22117,"Name":"B.010","Points":10000,"X":648,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029022Z"},{"ID":22118,"Name":"Wioska barbarzyƄska","Points":7882,"X":364,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029023Z"},{"ID":22119,"Name":"080","Points":5375,"X":358,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029023Z"},{"ID":22120,"Name":"Gattacka","Points":11422,"X":620,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029024Z"},{"ID":22121,"Name":"Pobozowisko","Points":10884,"X":395,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029024Z"},{"ID":22123,"Name":"Kentin ufam Tobie","Points":10000,"X":363,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029025Z"},{"ID":22124,"Name":"006","Points":9716,"X":462,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029025Z"},{"ID":22125,"Name":"B012","Points":10042,"X":643,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029025Z"},{"ID":22126,"Name":"=002-00=Szlachcic=@#-4-","Points":6344,"X":564,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699287032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029026Z"},{"ID":22127,"Name":"074","Points":9994,"X":438,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029026Z"},{"ID":22128,"Name":"087","Points":3888,"X":356,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029026Z"},{"ID":22129,"Name":"North Barba 036","Points":9761,"X":433,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029027Z"},{"ID":22130,"Name":"023","Points":10084,"X":611,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029027Z"},{"ID":22131,"Name":"Hieracium pilosella","Points":9902,"X":496,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029027Z"},{"ID":22132,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":557,"Y":363,"Continent":"K35","Bonus":8,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029027Z"},{"ID":22133,"Name":"Kentin ufam Tobie","Points":10000,"X":362,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029028Z"},{"ID":22134,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":525,"Continent":"K53","Bonus":2,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029028Z"},{"ID":22135,"Name":"113","Points":11215,"X":624,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029028Z"},{"ID":22136,"Name":"Jednak wolę gofry","Points":7910,"X":501,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029029Z"},{"ID":22137,"Name":"B004","Points":9818,"X":647,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029029Z"},{"ID":22138,"Name":"jaaa","Points":10495,"X":631,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029029Z"},{"ID":22139,"Name":"SSJ 057","Points":9761,"X":514,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02903Z"},{"ID":22140,"Name":"- 336 - RR","Points":9824,"X":596,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02903Z"},{"ID":22141,"Name":"**Unlikely","Points":9761,"X":573,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02903Z"},{"ID":22142,"Name":"005","Points":9819,"X":637,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02903Z"},{"ID":22143,"Name":"North Barba 005","Points":10290,"X":430,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029031Z"},{"ID":22144,"Name":"*INTERTWINED**","Points":9353,"X":511,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029031Z"},{"ID":22145,"Name":"004. Nightmare","Points":10019,"X":632,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029031Z"},{"ID":22146,"Name":"PiekƂo to inni","Points":9481,"X":569,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029032Z"},{"ID":22147,"Name":"027","Points":10237,"X":478,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029032Z"},{"ID":22148,"Name":"Brat447","Points":10779,"X":461,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029032Z"},{"ID":22149,"Name":"Ave Why!","Points":9809,"X":476,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029033Z"},{"ID":22150,"Name":"c 088d","Points":5606,"X":412,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029033Z"},{"ID":22151,"Name":"dawidek","Points":9889,"X":401,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029033Z"},{"ID":22153,"Name":"Westcoast.103","Points":10178,"X":368,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029034Z"},{"ID":22155,"Name":"Wioska barbarzyƄska","Points":10168,"X":396,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029034Z"},{"ID":22156,"Name":"133 DaSilva2402","Points":10001,"X":518,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029034Z"},{"ID":22157,"Name":"Mexico3","Points":10178,"X":458,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029035Z"},{"ID":22159,"Name":"012. Ebe ebe","Points":10019,"X":634,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029035Z"},{"ID":22161,"Name":"|A| Heartcall..","Points":10495,"X":490,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029035Z"},{"ID":22162,"Name":"**Joy","Points":9902,"X":571,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029035Z"},{"ID":22163,"Name":"K34 - [118] Before Land","Points":10259,"X":446,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029036Z"},{"ID":22164,"Name":"Lord Lord Franek .#201","Points":8966,"X":500,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029036Z"},{"ID":22165,"Name":"A0166","Points":10362,"X":354,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029036Z"},{"ID":22166,"Name":"jaaa","Points":10478,"X":634,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029037Z"},{"ID":22167,"Name":"psycha sitting","Points":10311,"X":452,"Y":642,"Continent":"K64","Bonus":4,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029037Z"},{"ID":22169,"Name":"A011","Points":10290,"X":587,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029037Z"},{"ID":22170,"Name":"0055","Points":9474,"X":617,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029038Z"},{"ID":22171,"Name":"c Tre1","Points":7210,"X":400,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029038Z"},{"ID":22173,"Name":"BoOmBaa..","Points":4497,"X":442,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029038Z"},{"ID":22174,"Name":"Wioska barbarzyƄska","Points":8171,"X":630,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029039Z"},{"ID":22175,"Name":"Pobozowisko","Points":9920,"X":399,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029039Z"},{"ID":22178,"Name":"Mniejsze zƂo 0048","Points":6450,"X":357,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029039Z"},{"ID":22180,"Name":"126. Agary","Points":7140,"X":630,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02904Z"},{"ID":22181,"Name":"A0206","Points":10362,"X":357,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02904Z"},{"ID":22182,"Name":"059 Koganei","Points":10495,"X":640,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02904Z"},{"ID":22183,"Name":"B015","Points":9998,"X":647,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029041Z"},{"ID":22184,"Name":"034.","Points":2468,"X":577,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029041Z"},{"ID":22186,"Name":"ETAT Z POƚREDNIAKA","Points":6019,"X":424,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029041Z"},{"ID":22187,"Name":"Oww Konfederacja","Points":9938,"X":609,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029041Z"},{"ID":22188,"Name":"Konfederacja ?","Points":7521,"X":613,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":849094147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029042Z"},{"ID":22189,"Name":"015 Szare Ć»ycie","Points":9899,"X":617,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029042Z"},{"ID":22190,"Name":"nic","Points":10311,"X":573,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029042Z"},{"ID":22191,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":556,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029043Z"},{"ID":22192,"Name":"xOsada koczownikĂłw","Points":10068,"X":530,"Y":355,"Continent":"K35","Bonus":8,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029043Z"},{"ID":22193,"Name":"019.","Points":10495,"X":486,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029044Z"},{"ID":22194,"Name":"Pobozowisko","Points":11550,"X":403,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029044Z"},{"ID":22195,"Name":"Lord Lord Franek .#223","Points":9614,"X":524,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029044Z"},{"ID":22196,"Name":"Pobozowisko","Points":10830,"X":405,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029045Z"},{"ID":22197,"Name":"050","Points":10160,"X":646,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029045Z"},{"ID":22198,"Name":"017","Points":9761,"X":639,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029045Z"},{"ID":22199,"Name":"c 005 Wioska","Points":10357,"X":403,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029045Z"},{"ID":22200,"Name":"A0058","Points":10362,"X":350,"Y":492,"Continent":"K43","Bonus":8,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029046Z"},{"ID":22202,"Name":"kathare","Points":9785,"X":552,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029046Z"},{"ID":22203,"Name":"016","Points":9761,"X":639,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029046Z"},{"ID":22204,"Name":"Ulu-mulu","Points":5404,"X":411,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029047Z"},{"ID":22206,"Name":"Ave Why!","Points":6992,"X":455,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029047Z"},{"ID":22207,"Name":"Pobozowisko","Points":3719,"X":394,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029047Z"},{"ID":22208,"Name":"x=ALFA=","Points":10068,"X":527,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029048Z"},{"ID":22209,"Name":"A-022","Points":10168,"X":392,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029048Z"},{"ID":22210,"Name":"0563","Points":10019,"X":567,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029048Z"},{"ID":22211,"Name":"a moĆŒe off ? :)","Points":10211,"X":624,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029048Z"},{"ID":22212,"Name":"B.046","Points":10000,"X":649,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029049Z"},{"ID":22213,"Name":"120","Points":9873,"X":644,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029049Z"},{"ID":22214,"Name":"AA05 Portugalia","Points":12154,"X":380,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029049Z"},{"ID":22215,"Name":"Maszlug kolonia II","Points":9137,"X":368,"Y":435,"Continent":"K43","Bonus":2,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029049Z"},{"ID":22216,"Name":"#.02 Baza Gliwice","Points":10019,"X":652,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02905Z"},{"ID":22217,"Name":"-026-","Points":7590,"X":388,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699665152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02905Z"},{"ID":22219,"Name":"067","Points":10141,"X":647,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02905Z"},{"ID":22220,"Name":"Brat447","Points":10709,"X":354,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029051Z"},{"ID":22221,"Name":"Wioska barbarzyƄska","Points":7994,"X":366,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029051Z"},{"ID":22223,"Name":"yyyy","Points":10052,"X":501,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029051Z"},{"ID":22224,"Name":"- 236 - RR","Points":10000,"X":590,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029051Z"},{"ID":22225,"Name":"--2. Generalne Gubernatorstwo","Points":10495,"X":385,"Y":409,"Continent":"K43","Bonus":6,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029052Z"},{"ID":22226,"Name":"Ave Why!","Points":8610,"X":440,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029052Z"},{"ID":22227,"Name":"Pobozowisko","Points":10952,"X":397,"Y":608,"Continent":"K63","Bonus":6,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029052Z"},{"ID":22228,"Name":"BoOmBaa..","Points":1628,"X":441,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029052Z"},{"ID":22229,"Name":"B.067","Points":10000,"X":643,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029053Z"},{"ID":22230,"Name":"Barbara 002","Points":9409,"X":419,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029053Z"},{"ID":22231,"Name":"035 | PALESTINA","Points":5019,"X":635,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029053Z"},{"ID":22232,"Name":".1.","Points":9404,"X":365,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029053Z"},{"ID":22233,"Name":"Maszlug kolonia XIV","Points":5405,"X":373,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029054Z"},{"ID":22234,"Name":"037 Nakagawa","Points":10495,"X":643,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029054Z"},{"ID":22235,"Name":"Pobozowisko","Points":10928,"X":382,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029054Z"},{"ID":22236,"Name":"028","Points":10237,"X":484,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029055Z"},{"ID":22237,"Name":"024","Points":6635,"X":611,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029055Z"},{"ID":22238,"Name":"066","Points":10252,"X":354,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029055Z"},{"ID":22239,"Name":"Maszlug kolonia III","Points":9541,"X":366,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029056Z"},{"ID":22240,"Name":"Kentin ufam Tobie","Points":10000,"X":357,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029056Z"},{"ID":22241,"Name":"c 063d","Points":6896,"X":415,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029056Z"},{"ID":22243,"Name":"B03 radzik354","Points":9741,"X":466,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029057Z"},{"ID":22244,"Name":"Avanti!","Points":9950,"X":354,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029057Z"},{"ID":22245,"Name":"216","Points":10426,"X":573,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029057Z"},{"ID":22246,"Name":"073","Points":9750,"X":643,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029057Z"},{"ID":22247,"Name":"a moĆŒe off ? :)","Points":9344,"X":639,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029058Z"},{"ID":22248,"Name":"Szlachcic","Points":9835,"X":406,"Y":387,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029058Z"},{"ID":22249,"Name":"kathare","Points":9910,"X":554,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029058Z"},{"ID":22251,"Name":"xkikutx","Points":9976,"X":507,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029059Z"},{"ID":22252,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10001,"X":493,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029059Z"},{"ID":22253,"Name":"zMakadi Bay","Points":10077,"X":391,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029059Z"},{"ID":22254,"Name":"034","Points":8136,"X":359,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029059Z"},{"ID":22255,"Name":"ETAT Z POƚREDNIAKA","Points":4968,"X":421,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02906Z"},{"ID":22256,"Name":"A0160","Points":10362,"X":356,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02906Z"},{"ID":22257,"Name":"Ahmadabad","Points":4676,"X":492,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02906Z"},{"ID":22258,"Name":"045","Points":9835,"X":441,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02906Z"},{"ID":22259,"Name":"Jednak wolę gofry","Points":10311,"X":468,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029061Z"},{"ID":22260,"Name":"0040","Points":10047,"X":451,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029061Z"},{"ID":22261,"Name":"0030","Points":9825,"X":624,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029061Z"},{"ID":22262,"Name":"Maszlug kolonia V","Points":9103,"X":368,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029062Z"},{"ID":22263,"Name":"0037","Points":10311,"X":450,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029062Z"},{"ID":22264,"Name":"mys","Points":9976,"X":562,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029062Z"},{"ID":22265,"Name":"Wioska barbarzyƄska","Points":2429,"X":370,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029062Z"},{"ID":22266,"Name":"0047","Points":9825,"X":616,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029063Z"},{"ID":22267,"Name":"#003 Kocham Zenita","Points":3889,"X":365,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029063Z"},{"ID":22268,"Name":"Tomall78","Points":7011,"X":633,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029063Z"},{"ID":22269,"Name":"|X| Xenxa","Points":10140,"X":469,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029063Z"},{"ID":22270,"Name":"Gattacka","Points":10059,"X":604,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029064Z"},{"ID":22271,"Name":"Odmienny Stan ƚwiadomoƛci","Points":8084,"X":366,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029064Z"},{"ID":22272,"Name":"020","Points":9809,"X":359,"Y":526,"Continent":"K53","Bonus":8,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029064Z"},{"ID":22274,"Name":"Beka z why","Points":9803,"X":488,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029065Z"},{"ID":22275,"Name":"0378","Points":7520,"X":581,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029065Z"},{"ID":22276,"Name":"Pobozowisko","Points":10955,"X":399,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029065Z"},{"ID":22277,"Name":"108","Points":9676,"X":354,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029066Z"},{"ID":22278,"Name":"Pf Konfederacja +","Points":10838,"X":494,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029066Z"},{"ID":22279,"Name":"015 181","Points":9690,"X":354,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029066Z"},{"ID":22280,"Name":"Magiczne koszary","Points":9809,"X":482,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029066Z"},{"ID":22281,"Name":"026. Oranje","Points":10362,"X":502,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029067Z"},{"ID":22282,"Name":"++002++","Points":9491,"X":382,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029067Z"},{"ID":22283,"Name":"0391","Points":10019,"X":588,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029067Z"},{"ID":22284,"Name":"Sony 911","Points":10209,"X":575,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029068Z"},{"ID":22285,"Name":"BEZDZIETNY KAWALER","Points":5339,"X":416,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029068Z"},{"ID":22286,"Name":"A0135","Points":10362,"X":353,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029068Z"},{"ID":22287,"Name":"Za oknem","Points":9752,"X":355,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029068Z"},{"ID":22288,"Name":"Wioska 2","Points":9797,"X":468,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029069Z"},{"ID":22289,"Name":"0139","Points":6878,"X":644,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029069Z"},{"ID":22290,"Name":"029|| Canis Major","Points":9835,"X":490,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029069Z"},{"ID":22291,"Name":"South K35","Points":10042,"X":555,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029069Z"},{"ID":22292,"Name":"a moĆŒe off ? :)","Points":9340,"X":641,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02907Z"},{"ID":22293,"Name":"~~013~~","Points":9815,"X":603,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02907Z"},{"ID":22294,"Name":"MELISKA","Points":10252,"X":358,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02907Z"},{"ID":22295,"Name":"0112","Points":1930,"X":423,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029071Z"},{"ID":22296,"Name":"A044","Points":4834,"X":583,"Y":380,"Continent":"K35","Bonus":7,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029071Z"},{"ID":22298,"Name":"014 Wioska barbarzyƄska","Points":5303,"X":569,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029071Z"},{"ID":22299,"Name":"Centauria","Points":10019,"X":375,"Y":578,"Continent":"K53","Bonus":3,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029071Z"},{"ID":22300,"Name":"0022","Points":10211,"X":592,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029072Z"},{"ID":22301,"Name":"015. Ale kac","Points":10019,"X":634,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029072Z"},{"ID":22302,"Name":"- 101 - RR","Points":10000,"X":588,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029072Z"},{"ID":22303,"Name":"Jednak wolę gofry","Points":9835,"X":476,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029073Z"},{"ID":22304,"Name":"24. Altanka u banana","Points":8732,"X":379,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029073Z"},{"ID":22305,"Name":"Wioska barbarzyƄska.","Points":2036,"X":374,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029073Z"},{"ID":22306,"Name":"Jan 014 K","Points":9310,"X":642,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029073Z"},{"ID":22307,"Name":"c 0031","Points":10005,"X":412,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029074Z"},{"ID":22308,"Name":"AB15 Ukraina","Points":3992,"X":375,"Y":417,"Continent":"K43","Bonus":1,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029074Z"},{"ID":22309,"Name":"Ulu-mulu","Points":3281,"X":430,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029074Z"},{"ID":22310,"Name":"Ave Why!","Points":9412,"X":457,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029075Z"},{"ID":22311,"Name":"Alicization 6","Points":8864,"X":462,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029075Z"},{"ID":22312,"Name":"Pobozowisko","Points":10971,"X":404,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029075Z"},{"ID":22313,"Name":"psycha sitting","Points":10178,"X":452,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029075Z"},{"ID":22314,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029076Z"},{"ID":22315,"Name":"010. Benten","Points":10019,"X":634,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029076Z"},{"ID":22316,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029076Z"},{"ID":22317,"Name":"$5.000 Grvvyq","Points":10495,"X":635,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029076Z"},{"ID":22318,"Name":"--004--","Points":10285,"X":381,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029077Z"},{"ID":22319,"Name":"Wioska barbarzyƄska","Points":10237,"X":548,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029077Z"},{"ID":22320,"Name":"#038.520|498","Points":9735,"X":639,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029077Z"},{"ID":22321,"Name":"Wioska barbarzyƄska","Points":10285,"X":382,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029077Z"},{"ID":22322,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":530,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029078Z"},{"ID":22324,"Name":"Pobozowisko","Points":7213,"X":404,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029078Z"},{"ID":22325,"Name":"Pobozowisko","Points":10951,"X":397,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029078Z"},{"ID":22326,"Name":"10. Hell","Points":9184,"X":408,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029078Z"},{"ID":22327,"Name":"AA07 Grecja","Points":12154,"X":378,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029079Z"},{"ID":22328,"Name":"Westcoast.114","Points":10178,"X":378,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029079Z"},{"ID":22329,"Name":"021. Szczupaka","Points":9402,"X":507,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029079Z"},{"ID":22330,"Name":"|A| Mistrun..","Points":10495,"X":484,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02908Z"},{"ID":22331,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":572,"Y":570,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02908Z"},{"ID":22332,"Name":"24k$ Grvvyq","Points":10495,"X":638,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02908Z"},{"ID":22333,"Name":"26. Okuninka","Points":7293,"X":379,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029081Z"},{"ID":22334,"Name":"SoƂtys Twojej Wsi","Points":9515,"X":403,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029081Z"},{"ID":22335,"Name":"|A| Roguehollow","Points":10495,"X":480,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029081Z"},{"ID":22336,"Name":"075","Points":9902,"X":467,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029082Z"},{"ID":22337,"Name":"Cisza 2","Points":4806,"X":356,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029082Z"},{"ID":22338,"Name":"017 018","Points":10001,"X":537,"Y":360,"Continent":"K35","Bonus":2,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029082Z"},{"ID":22339,"Name":"Ulu-mulu","Points":7357,"X":431,"Y":607,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029082Z"},{"ID":22340,"Name":"A0298","Points":10362,"X":354,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029083Z"},{"ID":22341,"Name":"Pobozowisko","Points":10971,"X":397,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029083Z"},{"ID":22342,"Name":"jaaa","Points":10481,"X":632,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029083Z"},{"ID":22343,"Name":"064","Points":10160,"X":647,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029083Z"},{"ID":22344,"Name":"kathare","Points":9909,"X":551,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029084Z"},{"ID":22345,"Name":"Ulu-mulu","Points":3605,"X":417,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029084Z"},{"ID":22346,"Name":"CSA","Points":9811,"X":521,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029084Z"},{"ID":22347,"Name":"65. KaruTown","Points":9735,"X":642,"Y":450,"Continent":"K46","Bonus":3,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029085Z"},{"ID":22348,"Name":"Jehu_Kingdom_52","Points":3950,"X":638,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029085Z"},{"ID":22349,"Name":"Wioska barbarzyƄska","Points":10495,"X":639,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029085Z"},{"ID":22350,"Name":"Wioska barbarzyƄska","Points":10221,"X":552,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029085Z"},{"ID":22351,"Name":"WW26","Points":6847,"X":646,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029086Z"},{"ID":22352,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":533,"Continent":"K53","Bonus":2,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029086Z"},{"ID":22354,"Name":"Kentin ufam Tobie","Points":10000,"X":352,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029086Z"},{"ID":22355,"Name":"[C]_[002] Dejv.oldplyr","Points":10495,"X":359,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029086Z"},{"ID":22356,"Name":"K34 - [117] Before Land","Points":9783,"X":449,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029087Z"},{"ID":22357,"Name":"032","Points":10155,"X":647,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029087Z"},{"ID":22358,"Name":"PiekƂo to inni","Points":8508,"X":569,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029087Z"},{"ID":22359,"Name":"deff 100 %","Points":10251,"X":364,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029088Z"},{"ID":22360,"Name":"Wioska barbarzyƄska","Points":9968,"X":528,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029088Z"},{"ID":22361,"Name":"0029 Wioska barbarzyƄska","Points":8003,"X":408,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029088Z"},{"ID":22362,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9811,"X":522,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029088Z"},{"ID":22363,"Name":"c Kolwicz 005","Points":10224,"X":402,"Y":391,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029088Z"},{"ID":22364,"Name":"0050","Points":10311,"X":447,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029089Z"},{"ID":22365,"Name":"025","Points":7315,"X":613,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029089Z"},{"ID":22366,"Name":"Godynice","Points":7024,"X":625,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":849095778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029089Z"},{"ID":22367,"Name":"Jestem Poza Kontrolą","Points":6823,"X":354,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02909Z"},{"ID":22368,"Name":"Wioska barbarzyƄska","Points":10551,"X":643,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02909Z"},{"ID":22370,"Name":"Wioska barbarzyƄska","Points":10237,"X":550,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02909Z"},{"ID":22371,"Name":"~~052~~","Points":9636,"X":606,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029091Z"},{"ID":22372,"Name":"076","Points":10237,"X":467,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029091Z"},{"ID":22373,"Name":"Zeta Reticuli S2","Points":10887,"X":391,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029091Z"},{"ID":22374,"Name":"021","Points":7366,"X":361,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029091Z"},{"ID":22375,"Name":"#.11 Wioska barbarzyƄska","Points":10019,"X":649,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029091Z"},{"ID":22376,"Name":"0043","Points":10083,"X":541,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029092Z"},{"ID":22377,"Name":"a moĆŒe off ? :)","Points":9536,"X":624,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029092Z"},{"ID":22379,"Name":"Wioska barbarzyƄska","Points":7826,"X":509,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029092Z"},{"ID":22380,"Name":"111","Points":10068,"X":532,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029093Z"},{"ID":22381,"Name":"Owp Konfederacja","Points":7790,"X":593,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029093Z"},{"ID":22382,"Name":"149 San Cristobal","Points":9761,"X":467,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029093Z"},{"ID":22384,"Name":"003","Points":1965,"X":388,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":6171569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029093Z"},{"ID":22385,"Name":"006","Points":9128,"X":430,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029094Z"},{"ID":22386,"Name":"Kentin ufam Tobie","Points":10000,"X":363,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029094Z"},{"ID":22387,"Name":"036","Points":10237,"X":485,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029094Z"},{"ID":22388,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":528,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029095Z"},{"ID":22389,"Name":"kathare","Points":10495,"X":548,"Y":640,"Continent":"K65","Bonus":2,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029095Z"},{"ID":22391,"Name":"041","Points":9761,"X":645,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029095Z"},{"ID":22392,"Name":"Wioska (034)","Points":7033,"X":645,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029096Z"},{"ID":22393,"Name":"046","Points":10542,"X":441,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029096Z"},{"ID":22394,"Name":"Kentin ufam Tobie","Points":10000,"X":364,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029096Z"},{"ID":22395,"Name":"202","Points":5303,"X":573,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029096Z"},{"ID":22396,"Name":"-004- K56","Points":9742,"X":649,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029096Z"},{"ID":22398,"Name":"A043","Points":4199,"X":584,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029097Z"},{"ID":22399,"Name":"C 014","Points":6904,"X":591,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029097Z"},{"ID":22401,"Name":"R-15","Points":6868,"X":601,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029097Z"},{"ID":22404,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029098Z"},{"ID":22405,"Name":"035 181","Points":7690,"X":355,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029098Z"},{"ID":22406,"Name":"145 Wioska 01","Points":7319,"X":373,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029098Z"},{"ID":22407,"Name":"105","Points":10495,"X":479,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029098Z"},{"ID":22408,"Name":"-010-","Points":8254,"X":385,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029099Z"},{"ID":22409,"Name":"yogi","Points":10019,"X":558,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029099Z"},{"ID":22410,"Name":".achim.","Points":9578,"X":536,"Y":391,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029099Z"},{"ID":22411,"Name":"Wojo","Points":10237,"X":498,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029099Z"},{"ID":22412,"Name":"Ow Konfederacja +","Points":9938,"X":601,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0291Z"},{"ID":22413,"Name":"Bagdad","Points":9976,"X":499,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0291Z"},{"ID":22414,"Name":"0389","Points":10019,"X":587,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0291Z"},{"ID":22415,"Name":"--007--","Points":8086,"X":384,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0291Z"},{"ID":22416,"Name":"- 030 - RR","Points":10000,"X":584,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029101Z"},{"ID":22417,"Name":"AA09 WƂochy","Points":7495,"X":376,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029101Z"},{"ID":22418,"Name":"zzzGranica Bledu 04","Points":10887,"X":611,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029101Z"},{"ID":22419,"Name":"Gravity","Points":9579,"X":417,"Y":456,"Continent":"K44","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029101Z"},{"ID":22420,"Name":"142","Points":7345,"X":454,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029102Z"},{"ID":22421,"Name":"0101","Points":4894,"X":419,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029102Z"},{"ID":22422,"Name":"Pobozowisko","Points":7352,"X":385,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029102Z"},{"ID":22423,"Name":"Avanti!","Points":9950,"X":351,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029102Z"},{"ID":22424,"Name":"off 100 %","Points":10559,"X":361,"Y":559,"Continent":"K53","Bonus":5,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029103Z"},{"ID":22425,"Name":"Szlachcic","Points":7585,"X":426,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029103Z"},{"ID":22426,"Name":"Wioska (020)","Points":9822,"X":637,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029103Z"},{"ID":22427,"Name":"A0059","Points":10362,"X":350,"Y":490,"Continent":"K43","Bonus":8,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029104Z"},{"ID":22429,"Name":"**Konkol","Points":9761,"X":576,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029104Z"},{"ID":22430,"Name":"008 Hobro","Points":10548,"X":620,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029104Z"},{"ID":22431,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029104Z"},{"ID":22432,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029105Z"},{"ID":22433,"Name":"122","Points":9959,"X":616,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029105Z"},{"ID":22435,"Name":"a moĆŒe off ? :)","Points":9995,"X":638,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029105Z"},{"ID":22436,"Name":"0084","Points":10160,"X":530,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029105Z"},{"ID":22437,"Name":"Kentin ufam Tobie","Points":10075,"X":357,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029106Z"},{"ID":22439,"Name":".2.","Points":8527,"X":365,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029106Z"},{"ID":22440,"Name":"0032","Points":8615,"X":617,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029106Z"},{"ID":22441,"Name":"K34 - [099] Before Land","Points":9744,"X":449,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029106Z"},{"ID":22442,"Name":"Wioska barbarzyƄska","Points":10218,"X":546,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029107Z"},{"ID":22443,"Name":"c Fyra 4","Points":9877,"X":403,"Y":394,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029107Z"},{"ID":22444,"Name":"M181_059","Points":9888,"X":365,"Y":437,"Continent":"K43","Bonus":7,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029107Z"},{"ID":22445,"Name":"#.36 Wioska barbarzyƄska","Points":3198,"X":649,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029107Z"},{"ID":22446,"Name":"PI3","Points":10559,"X":354,"Y":460,"Continent":"K43","Bonus":2,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029108Z"},{"ID":22447,"Name":"A020","Points":10168,"X":587,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029108Z"},{"ID":22448,"Name":"013. Rumpel","Points":10237,"X":508,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029108Z"},{"ID":22449,"Name":"Wioska barbarzyƄska","Points":2729,"X":364,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029108Z"},{"ID":22451,"Name":"Lord Lord Franek .#214","Points":10362,"X":511,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029109Z"},{"ID":22452,"Name":"Wioska barbarzyƄska","Points":9825,"X":623,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029109Z"},{"ID":22453,"Name":"Ulu-mulu","Points":5703,"X":412,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029109Z"},{"ID":22454,"Name":"Deveste ufam Tobie","Points":8701,"X":433,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02911Z"},{"ID":22455,"Name":"K34 - [010] Before Land","Points":10259,"X":443,"Y":361,"Continent":"K34","Bonus":5,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02911Z"},{"ID":22456,"Name":"037","Points":9724,"X":642,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02911Z"},{"ID":22457,"Name":"- 029 - RR","Points":10000,"X":588,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029111Z"},{"ID":22460,"Name":"Wioska barbarzyƄska","Points":3560,"X":363,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029111Z"},{"ID":22461,"Name":"105","Points":2875,"X":439,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029111Z"},{"ID":22462,"Name":"Avanti!","Points":9950,"X":355,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029111Z"},{"ID":22463,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029112Z"},{"ID":22464,"Name":"[C]_[003] Dejv.oldplyr","Points":10495,"X":359,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029112Z"},{"ID":22465,"Name":"112","Points":9830,"X":484,"Y":356,"Continent":"K34","Bonus":6,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029112Z"},{"ID":22466,"Name":"Ave Why!","Points":9809,"X":471,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029112Z"},{"ID":22468,"Name":"025","Points":9597,"X":434,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029112Z"},{"ID":22469,"Name":"217","Points":10319,"X":575,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029113Z"},{"ID":22470,"Name":"031 Barba","Points":9553,"X":651,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029113Z"},{"ID":22471,"Name":"035","Points":9729,"X":641,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029113Z"},{"ID":22472,"Name":"Myk i do kieszonki","Points":9799,"X":356,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029113Z"},{"ID":22473,"Name":"*INTERTWINED*","Points":9711,"X":517,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029114Z"},{"ID":22474,"Name":"146","Points":7686,"X":453,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029114Z"},{"ID":22475,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029114Z"},{"ID":22476,"Name":"Pobozowisko","Points":10746,"X":402,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029114Z"},{"ID":22477,"Name":"Wioska Hajkon","Points":9998,"X":474,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029115Z"},{"ID":22478,"Name":"007","Points":3413,"X":375,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029115Z"},{"ID":22480,"Name":"016 MONETKI","Points":8783,"X":646,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029115Z"},{"ID":22481,"Name":"a moĆŒe off ? :)","Points":9351,"X":636,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029115Z"},{"ID":22482,"Name":"Avanti!","Points":9950,"X":352,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029115Z"},{"ID":22483,"Name":"002. Oto ja!","Points":10203,"X":439,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029116Z"},{"ID":22484,"Name":"43. GĂłry Sine","Points":10019,"X":606,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029116Z"},{"ID":22485,"Name":"A045","Points":5336,"X":583,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029116Z"},{"ID":22486,"Name":"Za luba","Points":9252,"X":354,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029116Z"},{"ID":22488,"Name":"Wioska barbarzyƄska","Points":10229,"X":550,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029117Z"},{"ID":22489,"Name":"A-018","Points":10168,"X":391,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029117Z"},{"ID":22490,"Name":"001","Points":10474,"X":358,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029117Z"},{"ID":22491,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9395,"X":365,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029117Z"},{"ID":22492,"Name":"001. PoƂudnica","Points":9889,"X":507,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029118Z"},{"ID":22493,"Name":"VN Kalluto Zoldyck","Points":9865,"X":459,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029118Z"},{"ID":22495,"Name":"Szlachcic","Points":10237,"X":421,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029118Z"},{"ID":22496,"Name":"27. KaruTown","Points":9442,"X":615,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029118Z"},{"ID":22497,"Name":"Jednak wolę gofry","Points":10311,"X":499,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029119Z"},{"ID":22498,"Name":"Wioska RADZA121","Points":10208,"X":383,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029119Z"},{"ID":22499,"Name":"Pobozowisko","Points":10449,"X":405,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029119Z"},{"ID":22500,"Name":"|A| Windbarrow..","Points":10495,"X":481,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029119Z"},{"ID":22501,"Name":"A0066","Points":10362,"X":350,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02912Z"},{"ID":22502,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02912Z"},{"ID":22503,"Name":"CSA","Points":9817,"X":524,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02912Z"},{"ID":22504,"Name":"A0130","Points":10362,"X":351,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02912Z"},{"ID":22506,"Name":"- 327 - RR","Points":9626,"X":591,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029121Z"},{"ID":22507,"Name":"C003","Points":9737,"X":591,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029121Z"},{"ID":22508,"Name":"Jednak wolę gofry","Points":10362,"X":469,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029121Z"},{"ID":22509,"Name":"A 013","Points":10362,"X":600,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029121Z"},{"ID":22510,"Name":"mys","Points":9976,"X":563,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029122Z"},{"ID":22511,"Name":"kathare","Points":9882,"X":554,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029122Z"},{"ID":22512,"Name":"074","Points":6395,"X":428,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029122Z"},{"ID":22513,"Name":"012","Points":4617,"X":427,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029123Z"},{"ID":22514,"Name":"Jan Ii K","Points":9570,"X":644,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029123Z"},{"ID":22515,"Name":"070","Points":8142,"X":481,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029123Z"},{"ID":22516,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":563,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029123Z"},{"ID":22518,"Name":"020 Summerhall","Points":9924,"X":621,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029124Z"},{"ID":22519,"Name":"Pobozowisko","Points":10971,"X":398,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029124Z"},{"ID":22520,"Name":"[C]_[006] Dejv.oldplyr","Points":10495,"X":356,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029124Z"},{"ID":22521,"Name":"#057.","Points":9735,"X":642,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029124Z"},{"ID":22522,"Name":"ave why!","Points":10254,"X":434,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029125Z"},{"ID":22523,"Name":"Wioska barbarzyƄska","Points":10495,"X":438,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029125Z"},{"ID":22524,"Name":"024","Points":9899,"X":434,"Y":487,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029125Z"},{"ID":22525,"Name":"091","Points":10019,"X":355,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029126Z"},{"ID":22526,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":562,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029126Z"},{"ID":22527,"Name":"*INTERTWINED**","Points":9658,"X":509,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029126Z"},{"ID":22529,"Name":"078","Points":10495,"X":442,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029127Z"},{"ID":22530,"Name":"054. Snoob","Points":10436,"X":515,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029127Z"},{"ID":22531,"Name":"A10 Wioska barbarzyƄska","Points":10270,"X":466,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029127Z"},{"ID":22532,"Name":"Rudy rydz sie pisze a nie ryc","Points":9417,"X":570,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029127Z"},{"ID":22533,"Name":"112","Points":6825,"X":478,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029128Z"},{"ID":22534,"Name":"058","Points":10224,"X":648,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029128Z"},{"ID":22535,"Name":"c Fyra","Points":9989,"X":402,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029128Z"},{"ID":22536,"Name":"144","Points":9766,"X":451,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029128Z"},{"ID":22537,"Name":"A015","Points":4167,"X":593,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029129Z"},{"ID":22539,"Name":"The Game Has Only Just Begun","Points":9976,"X":351,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029129Z"},{"ID":22540,"Name":"015 MONETKI","Points":8840,"X":648,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029129Z"},{"ID":22541,"Name":"024|| Antlia","Points":10019,"X":485,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029129Z"},{"ID":22542,"Name":"Mobil","Points":8831,"X":538,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02913Z"},{"ID":22543,"Name":"080 Osada koczownikĂłw","Points":9902,"X":375,"Y":574,"Continent":"K53","Bonus":9,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02913Z"},{"ID":22544,"Name":"Maszlug kolonia VI","Points":9109,"X":367,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02913Z"},{"ID":22545,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02913Z"},{"ID":22546,"Name":"Jednak wolę gofry","Points":5619,"X":501,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029131Z"},{"ID":22547,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029131Z"},{"ID":22548,"Name":"North Barba 016","Points":9742,"X":429,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029131Z"},{"ID":22549,"Name":"Wioska barbarzyƄska","Points":10487,"X":646,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029132Z"},{"ID":22550,"Name":"108","Points":9770,"X":476,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029132Z"},{"ID":22551,"Name":"086","Points":7720,"X":632,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029132Z"},{"ID":22553,"Name":"101","Points":10495,"X":474,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029132Z"},{"ID":22555,"Name":"Kentin ufam Tobie","Points":10000,"X":354,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029133Z"},{"ID":22556,"Name":"Kentin ufam Tobie","Points":10000,"X":355,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029133Z"},{"ID":22557,"Name":"yyyy","Points":10319,"X":500,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029133Z"},{"ID":22558,"Name":"0025","Points":10211,"X":595,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029133Z"},{"ID":22559,"Name":"PodziękowaƂ 3","Points":10495,"X":424,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029133Z"},{"ID":22560,"Name":"Pobozowisko","Points":10957,"X":391,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029134Z"},{"ID":22561,"Name":"#.42 Wioska barbarzyƄska","Points":4273,"X":651,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029134Z"},{"ID":22562,"Name":"036 Wioska barbarzyƄska","Points":9976,"X":538,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029134Z"},{"ID":22563,"Name":"022 Revyl","Points":10093,"X":620,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029134Z"},{"ID":22564,"Name":"007 Wioska barbarzyƄska","Points":5036,"X":566,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029135Z"},{"ID":22565,"Name":"B.004","Points":10000,"X":650,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029135Z"},{"ID":22566,"Name":"Wioska barbarzyƄska","Points":10487,"X":632,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029135Z"},{"ID":22567,"Name":"051|| Pegasus","Points":9723,"X":494,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029135Z"},{"ID":22568,"Name":"AA06 Islandia","Points":12154,"X":381,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029136Z"},{"ID":22569,"Name":"Wioska barbarzyƄska","Points":10476,"X":644,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029136Z"},{"ID":22570,"Name":"018 | PALESTINA | Msqt [*]","Points":9523,"X":630,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029136Z"},{"ID":22571,"Name":"Szlachcic","Points":8259,"X":426,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029136Z"},{"ID":22573,"Name":"Wioska barbarzyƄska","Points":8676,"X":473,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029137Z"},{"ID":22574,"Name":"Wioska barbarzyƄska","Points":9516,"X":639,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029137Z"},{"ID":22575,"Name":"0037","Points":9412,"X":618,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029137Z"},{"ID":22576,"Name":"WE ARE READY!","Points":10209,"X":594,"Y":383,"Continent":"K35","Bonus":5,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029137Z"},{"ID":22577,"Name":"044","Points":9976,"X":446,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029138Z"},{"ID":22579,"Name":"0052","Points":9746,"X":618,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029138Z"},{"ID":22580,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":570,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029138Z"},{"ID":22581,"Name":"Kentin ufam Tobie","Points":10000,"X":355,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029138Z"},{"ID":22583,"Name":"0002","Points":10160,"X":538,"Y":640,"Continent":"K65","Bonus":8,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029138Z"},{"ID":22584,"Name":"005 | PALESTINA","Points":9544,"X":639,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029139Z"},{"ID":22585,"Name":"B003","Points":9818,"X":648,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029139Z"},{"ID":22586,"Name":"069","Points":10160,"X":643,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029139Z"},{"ID":22587,"Name":"a moĆŒe off ? :)","Points":9334,"X":637,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029139Z"},{"ID":22588,"Name":"Wioska barbarzyƄska","Points":5841,"X":373,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02914Z"},{"ID":22589,"Name":"Ave Why!","Points":7739,"X":455,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02914Z"},{"ID":22590,"Name":"Lord Lord Franek .#224","Points":8694,"X":525,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02914Z"},{"ID":22591,"Name":"GaƂki","Points":9404,"X":627,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":849095778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02914Z"},{"ID":22592,"Name":"#039.519|496","Points":9735,"X":638,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029141Z"},{"ID":22593,"Name":"Jan 017 K","Points":9905,"X":643,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029141Z"},{"ID":22594,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":565,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029141Z"},{"ID":22595,"Name":"A007","Points":9809,"X":473,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029141Z"},{"ID":22596,"Name":"Brąszewice","Points":9404,"X":626,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":849095778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029142Z"},{"ID":22597,"Name":"M181_060","Points":10592,"X":365,"Y":433,"Continent":"K43","Bonus":9,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029142Z"},{"ID":22598,"Name":"020. DePRESJA","Points":9063,"X":635,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029142Z"},{"ID":22599,"Name":"#025.520|499","Points":9735,"X":639,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029142Z"},{"ID":22600,"Name":"Jednak wolę gofry","Points":10178,"X":481,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029143Z"},{"ID":22601,"Name":"S181","Points":1347,"X":629,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":131972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029143Z"},{"ID":22602,"Name":"zzzGranica Bledu 01","Points":11130,"X":607,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029143Z"},{"ID":22603,"Name":"Jestem Poza Kontrolą","Points":9880,"X":361,"Y":550,"Continent":"K53","Bonus":7,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029143Z"},{"ID":22605,"Name":"Szlachcic","Points":10237,"X":419,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029144Z"},{"ID":22606,"Name":"~~018~~","Points":9821,"X":606,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029144Z"},{"ID":22607,"Name":"019 181","Points":10060,"X":352,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029144Z"},{"ID":22608,"Name":"002 Oglądam PowtĂłrkę CZE - POR","Points":10001,"X":540,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029144Z"},{"ID":22609,"Name":"014","Points":5726,"X":427,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029145Z"},{"ID":22610,"Name":"038|| Norma","Points":10019,"X":480,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029145Z"},{"ID":22611,"Name":"037","Points":10311,"X":644,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029145Z"},{"ID":22612,"Name":"Wioska barbarzyƄska","Points":10223,"X":551,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029146Z"},{"ID":22613,"Name":"AA04 Hiszpania","Points":12154,"X":378,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029146Z"},{"ID":22614,"Name":"Ulu-mulu","Points":6751,"X":408,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029146Z"},{"ID":22615,"Name":"*INTERTWINED*","Points":9711,"X":509,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029146Z"},{"ID":22616,"Name":"B.013","Points":10000,"X":647,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029147Z"},{"ID":22618,"Name":"~~007~~","Points":9870,"X":603,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029147Z"},{"ID":22619,"Name":"038","Points":6018,"X":613,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029147Z"},{"ID":22620,"Name":"Pobozowisko","Points":10218,"X":396,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029148Z"},{"ID":22621,"Name":"kathare","Points":9954,"X":557,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029148Z"},{"ID":22622,"Name":"109","Points":9899,"X":622,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029148Z"},{"ID":22624,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029148Z"},{"ID":22626,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":524,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029149Z"},{"ID":22627,"Name":"a moĆŒe off ? :)","Points":9348,"X":638,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029149Z"},{"ID":22628,"Name":"007. Bond James Bond","Points":10237,"X":506,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029149Z"},{"ID":22629,"Name":"B013","Points":9818,"X":648,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02915Z"},{"ID":22630,"Name":"Ave Why!","Points":9377,"X":477,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02915Z"},{"ID":22631,"Name":"jaaa","Points":10495,"X":633,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02915Z"},{"ID":22632,"Name":"K34 - [113] Before Land","Points":8900,"X":447,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02915Z"},{"ID":22633,"Name":"wioska","Points":10032,"X":604,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029151Z"},{"ID":22634,"Name":"WW27","Points":5417,"X":645,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029151Z"},{"ID":22635,"Name":"Yogi","Points":10019,"X":554,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029151Z"},{"ID":22636,"Name":"kathare","Points":9884,"X":546,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029151Z"},{"ID":22637,"Name":"024","Points":8246,"X":433,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029152Z"},{"ID":22638,"Name":"Wioska Barba I","Points":4073,"X":383,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029152Z"},{"ID":22639,"Name":"K08","Points":2210,"X":369,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029152Z"},{"ID":22640,"Name":"020","Points":10237,"X":489,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029153Z"},{"ID":22641,"Name":"B02 wrĂłciƂaƛ do mnie :)","Points":11109,"X":458,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029153Z"},{"ID":22642,"Name":"BoOmBaa..","Points":3492,"X":438,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029153Z"},{"ID":22643,"Name":"OgĂłrkowy baron","Points":9835,"X":398,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029153Z"},{"ID":22644,"Name":"A010","Points":10211,"X":579,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029154Z"},{"ID":22645,"Name":"004.","Points":10838,"X":487,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029154Z"},{"ID":22646,"Name":"0058","Points":9966,"X":623,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029154Z"},{"ID":22647,"Name":"LadyAnimavillis","Points":7472,"X":596,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029154Z"},{"ID":22648,"Name":"No. 1","Points":9225,"X":477,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029155Z"},{"ID":22649,"Name":"031 | PALESTINA","Points":9067,"X":631,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029155Z"},{"ID":22650,"Name":"627|423 Wioska barbarzyƄska22","Points":8971,"X":627,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029155Z"},{"ID":22651,"Name":"0047","Points":10058,"X":444,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029155Z"},{"ID":22652,"Name":"Jestem Poza Kontrolą","Points":9880,"X":350,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029156Z"},{"ID":22653,"Name":"yyyyy","Points":10052,"X":504,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029156Z"},{"ID":22654,"Name":"035","Points":9979,"X":360,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029156Z"},{"ID":22655,"Name":"008","Points":5380,"X":428,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029156Z"},{"ID":22656,"Name":"c Kolwicz 004","Points":10477,"X":403,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029157Z"},{"ID":22657,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":560,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029157Z"},{"ID":22658,"Name":"kathare","Points":9913,"X":548,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029157Z"},{"ID":22659,"Name":"P027 Royal Kush","Points":9761,"X":650,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029157Z"},{"ID":22660,"Name":"Ręcznik do zmiany","Points":6989,"X":372,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029158Z"},{"ID":22661,"Name":"Lord Arsey KING","Points":10285,"X":526,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029158Z"},{"ID":22662,"Name":"K34 - [049] Before Land","Points":7297,"X":445,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029158Z"},{"ID":22663,"Name":"Brat447","Points":10476,"X":355,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029158Z"},{"ID":22664,"Name":"Jotunheim","Points":8196,"X":376,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029159Z"},{"ID":22665,"Name":"076....barbakra","Points":10221,"X":456,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029159Z"},{"ID":22666,"Name":"CSA","Points":9811,"X":516,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029159Z"},{"ID":22667,"Name":"018. Rzym","Points":9541,"X":632,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029159Z"},{"ID":22668,"Name":"CSA","Points":7560,"X":519,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029159Z"},{"ID":22669,"Name":"AB11 Turcja","Points":6629,"X":375,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02916Z"},{"ID":22670,"Name":"A0065","Points":10362,"X":350,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02916Z"},{"ID":22671,"Name":"Westcoast.115","Points":10178,"X":373,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02916Z"},{"ID":22672,"Name":"Jan 07 K","Points":9450,"X":642,"Y":464,"Continent":"K46","Bonus":2,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02916Z"},{"ID":22673,"Name":"Wioska barbarzyƄska","Points":10475,"X":632,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029161Z"},{"ID":22674,"Name":"Lord Lord Franek .#225","Points":10224,"X":510,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029161Z"},{"ID":22675,"Name":"032 VW xyz","Points":11188,"X":379,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029161Z"},{"ID":22676,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029161Z"},{"ID":22678,"Name":"094 duko 3","Points":10001,"X":547,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029161Z"},{"ID":22680,"Name":"Monetio","Points":10495,"X":444,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029162Z"},{"ID":22681,"Name":"OgĂłrkowy baron","Points":9835,"X":400,"Y":403,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029162Z"},{"ID":22682,"Name":"B002","Points":9793,"X":396,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029162Z"},{"ID":22683,"Name":"Kentin ufam Tobie","Points":7117,"X":359,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029162Z"},{"ID":22684,"Name":"M002","Points":9730,"X":650,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029163Z"},{"ID":22685,"Name":"OgĂłrkowy baron","Points":9835,"X":400,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029163Z"},{"ID":22686,"Name":"Pobozowisko","Points":9175,"X":385,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029163Z"},{"ID":22687,"Name":"032 | PALESTINA","Points":7758,"X":638,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029163Z"},{"ID":22688,"Name":"012","Points":6725,"X":469,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029164Z"},{"ID":22689,"Name":"0060","Points":10121,"X":443,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029164Z"},{"ID":22690,"Name":"a moĆŒe off ? :)","Points":9534,"X":625,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029164Z"},{"ID":22691,"Name":"48. Wioska 48","Points":7032,"X":362,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029165Z"},{"ID":22692,"Name":"Wioska barbarzyƄska","Points":9933,"X":534,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029165Z"},{"ID":22693,"Name":"Wioska barbarzyƄska","Points":6456,"X":433,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029165Z"},{"ID":22694,"Name":"002...CENTR_Jazda_D","Points":10495,"X":463,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029165Z"},{"ID":22695,"Name":"Wioska barbarzyƄska","Points":3170,"X":371,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029166Z"},{"ID":22696,"Name":"076 Atlanda","Points":10001,"X":543,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029166Z"},{"ID":22697,"Name":"018","Points":10068,"X":520,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029166Z"},{"ID":22698,"Name":"012","Points":9818,"X":613,"Y":400,"Continent":"K46","Bonus":8,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029167Z"},{"ID":22699,"Name":"008","Points":3596,"X":373,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029167Z"},{"ID":22700,"Name":"The Game Has Only Just Begun","Points":9976,"X":350,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029167Z"},{"ID":22701,"Name":"Kentin ufam Tobie","Points":10000,"X":358,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029167Z"},{"ID":22702,"Name":"Szlachcic","Points":10160,"X":352,"Y":466,"Continent":"K43","Bonus":8,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029168Z"},{"ID":22704,"Name":"09. Shine it","Points":9812,"X":498,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029168Z"},{"ID":22705,"Name":"off 100 %","Points":10265,"X":362,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029168Z"},{"ID":22706,"Name":"Pobozowisko","Points":10950,"X":388,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029168Z"},{"ID":22707,"Name":"jaaa","Points":10495,"X":628,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029169Z"},{"ID":22708,"Name":"A0136","Points":10362,"X":348,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029169Z"},{"ID":22709,"Name":"A006","Points":9852,"X":474,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029169Z"},{"ID":22710,"Name":"040","Points":8153,"X":371,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029169Z"},{"ID":22711,"Name":"The Game Has Only Just Begun","Points":9976,"X":351,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02917Z"},{"ID":22712,"Name":"Jednak wolę gofry","Points":8792,"X":430,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02917Z"},{"ID":22713,"Name":"Wioska 03","Points":3422,"X":384,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02917Z"},{"ID":22714,"Name":"043","Points":9031,"X":444,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02917Z"},{"ID":22715,"Name":"kropka.","Points":11321,"X":601,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029171Z"},{"ID":22717,"Name":"#0002 Farmer155","Points":10178,"X":466,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029171Z"},{"ID":22718,"Name":"[C]_[005] Dejv.oldplyr","Points":10495,"X":352,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029171Z"},{"ID":22719,"Name":"CALL 987","Points":10311,"X":555,"Y":550,"Continent":"K55","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029171Z"},{"ID":22720,"Name":"Lord Lord Franek .#215","Points":8999,"X":500,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029172Z"},{"ID":22721,"Name":"023","Points":9809,"X":636,"Y":555,"Continent":"K56","Bonus":4,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029172Z"},{"ID":22722,"Name":"A004.Wioska barbarzyƄska","Points":9899,"X":392,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699665152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029172Z"},{"ID":22723,"Name":"c 087d","Points":5185,"X":411,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029173Z"},{"ID":22724,"Name":"Klinton","Points":10019,"X":374,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029173Z"},{"ID":22725,"Name":"--009--","Points":7569,"X":381,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029173Z"},{"ID":22726,"Name":"jaaa","Points":10495,"X":632,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029173Z"},{"ID":22727,"Name":"057","Points":9721,"X":636,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029174Z"},{"ID":22728,"Name":"Jednak wolę gofry","Points":9835,"X":470,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029174Z"},{"ID":22729,"Name":"089","Points":10019,"X":355,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029174Z"},{"ID":22730,"Name":"035 #Aquel","Points":9993,"X":371,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029175Z"},{"ID":22731,"Name":"~~048~~","Points":9761,"X":603,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029175Z"},{"ID":22732,"Name":"C009","Points":5930,"X":600,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029175Z"},{"ID":22733,"Name":"061","Points":4568,"X":364,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029175Z"},{"ID":22734,"Name":"021 Barba","Points":9010,"X":650,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029176Z"},{"ID":22735,"Name":"Wioska barbarzyƄska","Points":3685,"X":380,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699621601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029176Z"},{"ID":22736,"Name":"110","Points":8285,"X":483,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029176Z"},{"ID":22737,"Name":"AB12 Węgry","Points":4443,"X":376,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029176Z"},{"ID":22738,"Name":"[004]","Points":10191,"X":456,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029177Z"},{"ID":22739,"Name":"A018","Points":10211,"X":590,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029177Z"},{"ID":22741,"Name":"[147]","Points":9611,"X":636,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029177Z"},{"ID":22742,"Name":"BEZDZIETNY KAWALER","Points":9676,"X":417,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029177Z"},{"ID":22743,"Name":"c kinderki","Points":8314,"X":398,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029177Z"},{"ID":22744,"Name":"001. Gotham","Points":10019,"X":633,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029178Z"},{"ID":22745,"Name":"Gattacka","Points":9835,"X":605,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029178Z"},{"ID":22746,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":529,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029178Z"},{"ID":22747,"Name":"042.","Points":9835,"X":398,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029178Z"},{"ID":22748,"Name":"Lord Lord Franek .#191","Points":5114,"X":505,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029179Z"},{"ID":22749,"Name":"Piwna 20","Points":5737,"X":638,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029179Z"},{"ID":22750,"Name":"kathare","Points":9910,"X":552,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029179Z"},{"ID":22751,"Name":"Ręcznik do zmiany","Points":10160,"X":376,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029179Z"},{"ID":22752,"Name":"The Game Has Only Just Begun","Points":9976,"X":357,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02918Z"},{"ID":22753,"Name":"0121","Points":1448,"X":424,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02918Z"},{"ID":22754,"Name":"K34 - [100] Before Land","Points":11824,"X":448,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02918Z"},{"ID":22755,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9935,"X":525,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02918Z"},{"ID":22756,"Name":"002 Minas Tirith","Points":5569,"X":385,"Y":401,"Continent":"K43","Bonus":3,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029181Z"},{"ID":22757,"Name":"C 002","Points":10362,"X":592,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029181Z"},{"ID":22758,"Name":"Hydrawydra","Points":7686,"X":426,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":849095601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029181Z"},{"ID":22759,"Name":"149...ksiÄ…ĆŒÄ™ plemienia","Points":8261,"X":453,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029181Z"},{"ID":22760,"Name":"c 011 PrzystaƄ 4","Points":10328,"X":413,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029181Z"},{"ID":22761,"Name":"PiekƂo to inni","Points":9744,"X":570,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029182Z"},{"ID":22762,"Name":"032","Points":10237,"X":479,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029182Z"},{"ID":22763,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":570,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029182Z"},{"ID":22764,"Name":"The Game Has Only Just Begun","Points":8925,"X":357,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029182Z"},{"ID":22765,"Name":"Lord Lord Franek .#226","Points":10362,"X":523,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029183Z"},{"ID":22766,"Name":"A034","Points":10211,"X":577,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029183Z"},{"ID":22767,"Name":"~~024~~","Points":9800,"X":604,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029183Z"},{"ID":22768,"Name":"Lord Arsey I","Points":2819,"X":371,"Y":424,"Continent":"K43","Bonus":5,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029183Z"},{"ID":22770,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8816,"X":541,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029184Z"},{"ID":22771,"Name":"Kikut","Points":10068,"X":515,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029184Z"},{"ID":22772,"Name":"Knowhere","Points":10374,"X":376,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029184Z"},{"ID":22773,"Name":"Pobozowisko","Points":10952,"X":385,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029184Z"},{"ID":22774,"Name":"SSJ 049","Points":9761,"X":515,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029184Z"},{"ID":22775,"Name":"29. KaruTown","Points":9653,"X":616,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029185Z"},{"ID":22776,"Name":"Ashemark","Points":9425,"X":452,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029185Z"},{"ID":22777,"Name":"Avanti!","Points":9950,"X":355,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029185Z"},{"ID":22778,"Name":"027","Points":10033,"X":451,"Y":638,"Continent":"K64","Bonus":9,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029185Z"},{"ID":22779,"Name":"Hiszpan1","Points":10474,"X":646,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029186Z"},{"ID":22780,"Name":"Pobozowisko","Points":10971,"X":403,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029186Z"},{"ID":22782,"Name":"Wioska 9","Points":7498,"X":648,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029186Z"},{"ID":22783,"Name":"A-014","Points":10168,"X":391,"Y":394,"Continent":"K33","Bonus":4,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029186Z"},{"ID":22784,"Name":"0007","Points":9899,"X":403,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029187Z"},{"ID":22785,"Name":"od biedy do potęgi 5","Points":3592,"X":362,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":849094603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029187Z"},{"ID":22786,"Name":"Wioska Bochun10","Points":9385,"X":346,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029187Z"},{"ID":22787,"Name":"- 224 - RR","Points":8487,"X":586,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029188Z"},{"ID":22788,"Name":"Wioska barbarzyƄska","Points":6103,"X":369,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029188Z"},{"ID":22790,"Name":"a moĆŒe off ? :)","Points":9499,"X":640,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029188Z"},{"ID":22791,"Name":"Pobozowisko","Points":9320,"X":407,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029188Z"},{"ID":22792,"Name":"~~036~~","Points":9747,"X":596,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029188Z"},{"ID":22793,"Name":"038","Points":10237,"X":481,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029189Z"},{"ID":22794,"Name":"021","Points":10237,"X":488,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029189Z"},{"ID":22795,"Name":"118","Points":10230,"X":474,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029189Z"},{"ID":22796,"Name":"066 Wioska barbarzyƄska","Points":10001,"X":537,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02919Z"},{"ID":22797,"Name":"02 Forteca","Points":8900,"X":548,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02919Z"},{"ID":22798,"Name":"- 239 - RR","Points":10000,"X":592,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02919Z"},{"ID":22799,"Name":"kathare","Points":10285,"X":559,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02919Z"},{"ID":22800,"Name":"040","Points":9553,"X":652,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029191Z"},{"ID":22801,"Name":"Posterunek 002","Points":10178,"X":400,"Y":613,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029191Z"},{"ID":22802,"Name":"025 181","Points":10019,"X":354,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029191Z"},{"ID":22803,"Name":"a moĆŒe off ? :)","Points":9534,"X":622,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029191Z"},{"ID":22804,"Name":"kathare","Points":9872,"X":551,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029192Z"},{"ID":22805,"Name":"021","Points":5749,"X":359,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029192Z"},{"ID":22806,"Name":"--008--","Points":9587,"X":382,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029192Z"},{"ID":22807,"Name":"0060","Points":9825,"X":623,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029192Z"},{"ID":22808,"Name":"026","Points":9694,"X":614,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029192Z"},{"ID":22809,"Name":"0203","Points":6151,"X":405,"Y":513,"Continent":"K54","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029193Z"},{"ID":22811,"Name":"BEZDZIETNY KAWALER","Points":3780,"X":414,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029193Z"},{"ID":22812,"Name":"021. Pacanowo","Points":9413,"X":637,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029193Z"},{"ID":22813,"Name":"027 Wioska","Points":9082,"X":646,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029194Z"},{"ID":22814,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029194Z"},{"ID":22815,"Name":"Wioska 7","Points":8131,"X":374,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029194Z"},{"ID":22816,"Name":"Jednak wolę gofry","Points":10178,"X":498,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029194Z"},{"ID":22817,"Name":"031 VW GD --011--","Points":3060,"X":380,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029195Z"},{"ID":22818,"Name":"0049","Points":9825,"X":617,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029195Z"},{"ID":22819,"Name":"004 Wioska konri2008","Points":5457,"X":568,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699509239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029195Z"},{"ID":22820,"Name":"**Skill","Points":9761,"X":571,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029195Z"},{"ID":22821,"Name":"007","Points":9993,"X":377,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029196Z"},{"ID":22822,"Name":"*Lebioda","Points":9994,"X":573,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029196Z"},{"ID":22823,"Name":"Mexico","Points":10311,"X":455,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029196Z"},{"ID":22824,"Name":"0035 Wioska barbarzyƄska","Points":6353,"X":405,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029196Z"},{"ID":22825,"Name":"Wioska shokode","Points":6430,"X":486,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":849037699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029197Z"},{"ID":22826,"Name":"Lord Lord Franek .#136","Points":10636,"X":506,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029197Z"},{"ID":22827,"Name":"Myk i do kieszonki","Points":9799,"X":361,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029197Z"},{"ID":22828,"Name":"B023","Points":9816,"X":649,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029197Z"},{"ID":22829,"Name":"jaaa","Points":10478,"X":630,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029198Z"},{"ID":22830,"Name":"PiekƂo to inni","Points":10495,"X":569,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029198Z"},{"ID":22831,"Name":"MELISKA","Points":8802,"X":357,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029198Z"},{"ID":22832,"Name":"Jaaa","Points":10389,"X":622,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029198Z"},{"ID":22833,"Name":"67. KaruTown","Points":9735,"X":641,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029198Z"},{"ID":22834,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":569,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029199Z"},{"ID":22835,"Name":"#0039 barbarzyƄska","Points":10178,"X":465,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029199Z"},{"ID":22836,"Name":"#.29 Wioska barbarzyƄska","Points":4554,"X":647,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029199Z"},{"ID":22837,"Name":"Wioska barbarzyƄska","Points":9983,"X":646,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029199Z"},{"ID":22838,"Name":"0038","Points":10311,"X":450,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0292Z"},{"ID":22839,"Name":"Szlachcic","Points":8344,"X":426,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0292Z"},{"ID":22840,"Name":"Pobozowisko","Points":9007,"X":392,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0292Z"},{"ID":22841,"Name":"Jestem Poza Kontrolą","Points":9197,"X":356,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0292Z"},{"ID":22842,"Name":"C 003","Points":10362,"X":595,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029201Z"},{"ID":22843,"Name":"WIOSKA","Points":10224,"X":631,"Y":438,"Continent":"K46","Bonus":2,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029201Z"},{"ID":22844,"Name":"A0167","Points":10362,"X":353,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029201Z"},{"ID":22845,"Name":"059","Points":9497,"X":618,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029201Z"},{"ID":22846,"Name":"Wioska cacciatore","Points":10495,"X":534,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029201Z"},{"ID":22847,"Name":"0377","Points":8922,"X":581,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029202Z"},{"ID":22848,"Name":"054","Points":10139,"X":646,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029202Z"},{"ID":22849,"Name":"-007-","Points":9881,"X":389,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029202Z"},{"ID":22850,"Name":"#.13 Wioska barbarzyƄska","Points":10019,"X":648,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029202Z"},{"ID":22851,"Name":"A-008","Points":10337,"X":400,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029203Z"},{"ID":22852,"Name":"Wioska 1","Points":4035,"X":390,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":6171569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029203Z"},{"ID":22854,"Name":".:057:.ƁOBUZIK","Points":5509,"X":553,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029203Z"},{"ID":22855,"Name":"Ręcznik do zmiany","Points":10160,"X":376,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029203Z"},{"ID":22856,"Name":"019. Florencja","Points":9066,"X":631,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029204Z"},{"ID":22857,"Name":"05 Nowa Szpica","Points":9854,"X":544,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029204Z"},{"ID":22858,"Name":"|A| Lightgulch","Points":10495,"X":479,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029204Z"},{"ID":22859,"Name":"Pobozowisko","Points":10223,"X":386,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029204Z"},{"ID":22860,"Name":"Ave Why!","Points":10160,"X":479,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029204Z"},{"ID":22861,"Name":"#040.521|499","Points":9735,"X":640,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029205Z"},{"ID":22862,"Name":"Kentin ufam Tobie","Points":10000,"X":351,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029205Z"},{"ID":22863,"Name":"Horyzont zdarzeƄ","Points":10019,"X":537,"Y":647,"Continent":"K65","Bonus":4,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029205Z"},{"ID":22864,"Name":"MojeSzczytToTwĂłjDno","Points":12138,"X":510,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029205Z"},{"ID":22865,"Name":"116","Points":9019,"X":629,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029206Z"},{"ID":22866,"Name":"SSJ 051","Points":9682,"X":503,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029206Z"},{"ID":22867,"Name":"D 010","Points":9542,"X":650,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029206Z"},{"ID":22868,"Name":"Ave Why!","Points":7930,"X":438,"Y":634,"Continent":"K64","Bonus":1,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029206Z"},{"ID":22869,"Name":"084","Points":10286,"X":441,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029207Z"},{"ID":22870,"Name":"031 030","Points":10001,"X":543,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029207Z"},{"ID":22871,"Name":"Osada 003","Points":10178,"X":400,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029207Z"},{"ID":22872,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8822,"X":535,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029207Z"},{"ID":22874,"Name":"SoƂtys Wsi Enaor1990","Points":8656,"X":408,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029208Z"},{"ID":22875,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029208Z"},{"ID":22876,"Name":"015","Points":4590,"X":429,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029208Z"},{"ID":22877,"Name":"Szlachcic","Points":10237,"X":424,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029208Z"},{"ID":22878,"Name":"115","Points":6895,"X":478,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029209Z"},{"ID":22879,"Name":"042","Points":9553,"X":651,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029209Z"},{"ID":22881,"Name":"Avanti!","Points":9950,"X":349,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029209Z"},{"ID":22882,"Name":"jaaa","Points":10495,"X":632,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029209Z"},{"ID":22883,"Name":"42. KaruTown","Points":9827,"X":615,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02921Z"},{"ID":22884,"Name":"Wioska Barba II","Points":7255,"X":382,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02921Z"},{"ID":22885,"Name":"A002","Points":10495,"X":597,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02921Z"},{"ID":22886,"Name":"immortale bo morale","Points":5426,"X":511,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":9140898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02921Z"},{"ID":22887,"Name":"030","Points":10252,"X":353,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029211Z"},{"ID":22888,"Name":"Pobozowisko","Points":10971,"X":392,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029211Z"},{"ID":22889,"Name":"Tylos","Points":10237,"X":549,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029211Z"},{"ID":22890,"Name":"011","Points":5107,"X":424,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029211Z"},{"ID":22891,"Name":"- 329 - RR","Points":8851,"X":593,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029212Z"},{"ID":22892,"Name":"30. KaruTown","Points":9744,"X":615,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029212Z"},{"ID":22893,"Name":"mys","Points":9976,"X":565,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029212Z"},{"ID":22894,"Name":"Szlachcic","Points":6507,"X":415,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029212Z"},{"ID":22895,"Name":"psycha sitting","Points":10178,"X":450,"Y":644,"Continent":"K64","Bonus":6,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029213Z"},{"ID":22896,"Name":"ETAT Z POƚREDNIAKA","Points":9491,"X":423,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029213Z"},{"ID":22897,"Name":"054. Gades","Points":9174,"X":645,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029213Z"},{"ID":22898,"Name":"*Lajs","Points":9761,"X":577,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029213Z"},{"ID":22899,"Name":"100","Points":7495,"X":356,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029214Z"},{"ID":22900,"Name":"BEZDZIETNY KAWALER","Points":9922,"X":412,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029214Z"},{"ID":22901,"Name":"*0025 Baraki","Points":9924,"X":626,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029214Z"},{"ID":22902,"Name":"Lord Lord Franek .#197","Points":9574,"X":505,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029214Z"},{"ID":22903,"Name":"A014","Points":10168,"X":580,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029215Z"},{"ID":22905,"Name":"028 VW GD --017--","Points":3775,"X":370,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029215Z"},{"ID":22906,"Name":"A007","Points":10168,"X":581,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029215Z"},{"ID":22907,"Name":"c Sztum","Points":8288,"X":400,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029215Z"},{"ID":22908,"Name":"Lord Lord Franek .#044","Points":9962,"X":533,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029216Z"},{"ID":22909,"Name":"Wioska DamianDK","Points":3330,"X":416,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":849095642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029216Z"},{"ID":22910,"Name":"jaaa","Points":10495,"X":631,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029216Z"},{"ID":22911,"Name":"x012","Points":10495,"X":359,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029217Z"},{"ID":22912,"Name":"006. :D","Points":10444,"X":506,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029217Z"},{"ID":22913,"Name":"103","Points":9854,"X":476,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029217Z"},{"ID":22914,"Name":"BACÓWKA |009|","Points":11989,"X":620,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029217Z"},{"ID":22915,"Name":"120","Points":10068,"X":624,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029217Z"},{"ID":22916,"Name":"Wioska Trer Ceiri","Points":10495,"X":539,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029218Z"},{"ID":22917,"Name":"Lord Lord Franek .#202","Points":10389,"X":504,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029218Z"},{"ID":22918,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":526,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029218Z"},{"ID":22919,"Name":"024 Legio I Claudia","Points":5272,"X":650,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029218Z"},{"ID":22920,"Name":"Monetki","Points":9637,"X":468,"Y":408,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029219Z"},{"ID":22921,"Name":"Magiczne koszary","Points":9809,"X":483,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029219Z"},{"ID":22922,"Name":"BEZDZIETNY KAWALER","Points":10311,"X":417,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029219Z"},{"ID":22924,"Name":"Szczęƛliwego Nowego Roku ;)","Points":8352,"X":610,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029219Z"},{"ID":22925,"Name":"Kentin ufam Tobie","Points":10000,"X":362,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02922Z"},{"ID":22926,"Name":"ave why!","Points":9269,"X":434,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02922Z"},{"ID":22927,"Name":"0118","Points":3774,"X":423,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02922Z"},{"ID":22928,"Name":"CSA","Points":8592,"X":518,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02922Z"},{"ID":22929,"Name":"Skazany Na Instynkt","Points":8319,"X":368,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029221Z"},{"ID":22930,"Name":"Szlachcic/Taran","Points":10237,"X":619,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029221Z"},{"ID":22931,"Name":"Pobozowisko","Points":10907,"X":393,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029221Z"},{"ID":22932,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029221Z"},{"ID":22933,"Name":"0033","Points":9825,"X":623,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029222Z"},{"ID":22934,"Name":"0162","Points":10019,"X":537,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029222Z"},{"ID":22935,"Name":"North Barba 031","Points":9557,"X":431,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029222Z"},{"ID":22936,"Name":"Wioska Smarze","Points":10221,"X":386,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029222Z"},{"ID":22937,"Name":"M181_055","Points":9891,"X":365,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029222Z"},{"ID":22938,"Name":"-005","Points":6301,"X":358,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":9253494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029223Z"},{"ID":22939,"Name":"0470","Points":10019,"X":536,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029223Z"},{"ID":22940,"Name":"0089","Points":10160,"X":532,"Y":648,"Continent":"K65","Bonus":5,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029223Z"},{"ID":22941,"Name":"Jednak wolę gofry","Points":9835,"X":437,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029223Z"},{"ID":22942,"Name":"Odmienny Stan ƚwiadomoƛci","Points":7283,"X":370,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029224Z"},{"ID":22943,"Name":"034.","Points":9821,"X":645,"Y":481,"Continent":"K46","Bonus":4,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029224Z"},{"ID":22944,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":562,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029224Z"},{"ID":22945,"Name":"Prawa","Points":8820,"X":545,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029224Z"},{"ID":22946,"Name":"[030]","Points":9638,"X":641,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029224Z"},{"ID":22947,"Name":"Wioska barbarzyƄska","Points":6539,"X":372,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029225Z"},{"ID":22948,"Name":"Wioska barbarzyƄska","Points":6404,"X":482,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029225Z"},{"ID":22949,"Name":"BEZDZIETNY KAWALER","Points":6465,"X":420,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029225Z"},{"ID":22950,"Name":"B.006","Points":10000,"X":647,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029225Z"},{"ID":22952,"Name":"019","Points":10237,"X":489,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029226Z"},{"ID":22953,"Name":"A019","Points":10211,"X":588,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029226Z"},{"ID":22954,"Name":"Wyngiel we wsi","Points":10484,"X":556,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029226Z"},{"ID":22955,"Name":"~~016~~","Points":9883,"X":610,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029226Z"},{"ID":22956,"Name":"mys","Points":10068,"X":565,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029227Z"},{"ID":22957,"Name":"030","Points":10104,"X":480,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029227Z"},{"ID":22958,"Name":"BEZDZIETNY KAWALER","Points":10160,"X":420,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029227Z"},{"ID":22959,"Name":"034","Points":10311,"X":644,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029227Z"},{"ID":22960,"Name":"134 DaSilva2402","Points":10001,"X":518,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029228Z"},{"ID":22961,"Name":"A0158","Points":10362,"X":352,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029228Z"},{"ID":22962,"Name":"~~009~~","Points":9835,"X":600,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029228Z"},{"ID":22963,"Name":"B003","Points":9796,"X":400,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029228Z"},{"ID":22964,"Name":"KUZYN KUZYNOWI KUZYNEM","Points":6109,"X":429,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029229Z"},{"ID":22965,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9820,"X":526,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029229Z"},{"ID":22966,"Name":"015...PƁD WSCH","Points":10495,"X":465,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029229Z"},{"ID":22967,"Name":"K07","Points":2521,"X":368,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029229Z"},{"ID":22968,"Name":"Ambrela 014","Points":10228,"X":580,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":698823542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02923Z"},{"ID":22969,"Name":"036","Points":10237,"X":447,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02923Z"},{"ID":22970,"Name":"!!!off 100 %","Points":11321,"X":357,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02923Z"},{"ID":22971,"Name":"SoƂtys Wsi Enaor1990","Points":9761,"X":406,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02923Z"},{"ID":22972,"Name":"600","Points":10152,"X":645,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.02923Z"},{"ID":22973,"Name":"117","Points":9619,"X":623,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029231Z"},{"ID":22974,"Name":"042...CENTRUM_POƁUDNIE","Points":10315,"X":457,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029231Z"},{"ID":22975,"Name":"027","Points":8283,"X":612,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029231Z"},{"ID":22976,"Name":"B.032","Points":7520,"X":650,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029231Z"},{"ID":22977,"Name":"Wioska barbarzyƄska ....","Points":10495,"X":578,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029232Z"},{"ID":22978,"Name":"D01..","Points":10362,"X":364,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029232Z"},{"ID":22979,"Name":"007","Points":9825,"X":518,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029232Z"},{"ID":22980,"Name":"PrzystaƄ 5","Points":9835,"X":405,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.029232Z"},{"ID":22981,"Name":"044","Points":5951,"X":360,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059321Z"},{"ID":22982,"Name":"Pobozowisko","Points":10955,"X":408,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059322Z"},{"ID":22984,"Name":"031","Points":9421,"X":646,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059322Z"},{"ID":22985,"Name":"Jestem Poza Kontrolą","Points":9880,"X":353,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059322Z"},{"ID":22986,"Name":"Kentin ufam Tobie","Points":10000,"X":351,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059322Z"},{"ID":22987,"Name":"Kentin ufam Tobie","Points":9877,"X":357,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059323Z"},{"ID":22988,"Name":"SSJ 054","Points":9761,"X":505,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059323Z"},{"ID":22989,"Name":"Makima2","Points":10311,"X":460,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059323Z"},{"ID":22990,"Name":"051","Points":9993,"X":516,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059324Z"},{"ID":22991,"Name":"039. Bootes","Points":10139,"X":597,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059324Z"},{"ID":22992,"Name":"#.23 Wioska barbarzyƄska","Points":7317,"X":649,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059325Z"},{"ID":22993,"Name":"#.30 Wioska barbarzyƄska","Points":4625,"X":647,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059325Z"},{"ID":22994,"Name":"A032","Points":10168,"X":579,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059325Z"},{"ID":22995,"Name":"0001","Points":10728,"X":487,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059325Z"},{"ID":22996,"Name":"0403","Points":10019,"X":549,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059326Z"},{"ID":22997,"Name":"001","Points":9957,"X":487,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059326Z"},{"ID":22998,"Name":"B.024","Points":10000,"X":646,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059326Z"},{"ID":22999,"Name":"Forteca","Points":10495,"X":398,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059327Z"},{"ID":23000,"Name":"0021","Points":10211,"X":591,"Y":385,"Continent":"K35","Bonus":2,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059327Z"},{"ID":23001,"Name":"019|| Hydra","Points":9153,"X":475,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059327Z"},{"ID":23002,"Name":"Alicization 5","Points":8292,"X":461,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059328Z"},{"ID":23003,"Name":"B.027","Points":10000,"X":650,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059328Z"},{"ID":23004,"Name":"0467","Points":9753,"X":383,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059328Z"},{"ID":23005,"Name":"- 232 - RR","Points":10000,"X":594,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059328Z"},{"ID":23006,"Name":"zzzGranica Bledu 02","Points":9664,"X":606,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059329Z"},{"ID":23007,"Name":"Kentin ufam Tobie","Points":10000,"X":362,"Y":446,"Continent":"K43","Bonus":8,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059329Z"},{"ID":23008,"Name":"**Zabajone","Points":9761,"X":574,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059329Z"},{"ID":23009,"Name":"Makima","Points":9739,"X":463,"Y":645,"Continent":"K64","Bonus":7,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05933Z"},{"ID":23010,"Name":"Wioska barbarzyƄska","Points":8084,"X":634,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05933Z"},{"ID":23011,"Name":"A 007","Points":10362,"X":602,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05933Z"},{"ID":23012,"Name":"017","Points":9976,"X":564,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059331Z"},{"ID":23013,"Name":"028","Points":7498,"X":611,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059331Z"},{"ID":23014,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059331Z"},{"ID":23015,"Name":"Charfa","Points":10495,"X":522,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059331Z"},{"ID":23016,"Name":"019.","Points":10559,"X":491,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059332Z"},{"ID":23017,"Name":"077","Points":10495,"X":444,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059332Z"},{"ID":23018,"Name":"Odmienny Stan ƚwiadomoƛci","Points":8298,"X":364,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059333Z"},{"ID":23019,"Name":"SoƂtys Wsi Enaor1990","Points":9906,"X":407,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059333Z"},{"ID":23020,"Name":"116","Points":10495,"X":472,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059333Z"},{"ID":23021,"Name":"029 VW GD --018--","Points":3595,"X":371,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059333Z"},{"ID":23022,"Name":"0004","Points":10252,"X":544,"Y":646,"Continent":"K65","Bonus":8,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059334Z"},{"ID":23023,"Name":"0383","Points":9165,"X":584,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059334Z"},{"ID":23024,"Name":"Ave Why!","Points":9809,"X":474,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059334Z"},{"ID":23025,"Name":"BoOmBaa..","Points":4730,"X":436,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059335Z"},{"ID":23026,"Name":"0318","Points":8008,"X":541,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059335Z"},{"ID":23027,"Name":"041","Points":9553,"X":649,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059335Z"},{"ID":23029,"Name":"deff 100 %","Points":10358,"X":378,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059336Z"},{"ID":23031,"Name":"Kentin ufam Tobie","Points":10000,"X":352,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059336Z"},{"ID":23032,"Name":"Szlachcic","Points":10237,"X":421,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059336Z"},{"ID":23033,"Name":"Sony 911","Points":10214,"X":584,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059336Z"},{"ID":23034,"Name":"#.12 Wioska barbarzyƄska","Points":10019,"X":650,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059337Z"},{"ID":23035,"Name":"WW28","Points":5850,"X":648,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059337Z"},{"ID":23036,"Name":"03 Forteca ZachĂłd","Points":7544,"X":546,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059337Z"},{"ID":23037,"Name":"Caravaggio","Points":10247,"X":375,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059338Z"},{"ID":23038,"Name":"Jednak wolę gofry","Points":10068,"X":430,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059338Z"},{"ID":23039,"Name":"AA03 Niemcy","Points":12154,"X":380,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059338Z"},{"ID":23041,"Name":"141","Points":8776,"X":452,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059338Z"},{"ID":23042,"Name":"SoƂtys Wsi Enaor1990","Points":9394,"X":408,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059339Z"},{"ID":23043,"Name":"WE ARE READY!","Points":8814,"X":595,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059339Z"},{"ID":23044,"Name":"031","Points":9721,"X":642,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05934Z"},{"ID":23045,"Name":"OgĂłrkowy baron","Points":9835,"X":396,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05934Z"},{"ID":23046,"Name":"143","Points":8956,"X":452,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05934Z"},{"ID":23047,"Name":"Kentin ufam Tobie","Points":10235,"X":363,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05934Z"},{"ID":23048,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059341Z"},{"ID":23049,"Name":"WspĂłlna 15","Points":6578,"X":404,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059341Z"},{"ID":23050,"Name":"***001***","Points":8103,"X":506,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":8843774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059341Z"},{"ID":23051,"Name":"100","Points":10960,"X":646,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059342Z"},{"ID":23052,"Name":"A0196","Points":10362,"X":354,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059342Z"},{"ID":23053,"Name":"063","Points":10433,"X":518,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059342Z"},{"ID":23054,"Name":"CSA","Points":7780,"X":513,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059342Z"},{"ID":23055,"Name":"c Moje kochanie","Points":8567,"X":406,"Y":386,"Continent":"K34","Bonus":7,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059343Z"},{"ID":23056,"Name":"kathare","Points":9866,"X":551,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059343Z"},{"ID":23057,"Name":"kathare","Points":9896,"X":553,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059343Z"},{"ID":23058,"Name":"PodziękowaƂ 5","Points":10295,"X":418,"Y":376,"Continent":"K34","Bonus":1,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059344Z"},{"ID":23060,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":560,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059344Z"},{"ID":23061,"Name":"029","Points":5573,"X":610,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059344Z"},{"ID":23062,"Name":"047|| Lyra","Points":10083,"X":469,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059345Z"},{"ID":23063,"Name":"No sory","Points":10311,"X":559,"Y":562,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059345Z"},{"ID":23064,"Name":"M007","Points":5131,"X":653,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059345Z"},{"ID":23066,"Name":"B.062","Points":10000,"X":646,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059345Z"},{"ID":23067,"Name":"Osada koczownikĂłw","Points":10452,"X":548,"Y":361,"Continent":"K35","Bonus":1,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059346Z"},{"ID":23068,"Name":"123","Points":10661,"X":625,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059346Z"},{"ID":23069,"Name":"A-019","Points":10168,"X":388,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059346Z"},{"ID":23070,"Name":"Dajanka 01","Points":11130,"X":352,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059347Z"},{"ID":23071,"Name":"Kentin ufam Tobie","Points":7905,"X":358,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059347Z"},{"ID":23072,"Name":"Pobozowisko","Points":10350,"X":411,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059347Z"},{"ID":23073,"Name":"Wioska barbarzyƄska","Points":10218,"X":552,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059348Z"},{"ID":23075,"Name":"Czarodziejka z Marsa","Points":7839,"X":430,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059348Z"},{"ID":23076,"Name":"- 234 - RR","Points":6702,"X":589,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059348Z"},{"ID":23077,"Name":"M181_054","Points":9902,"X":363,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059349Z"},{"ID":23078,"Name":"A0197","Points":10362,"X":352,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059349Z"},{"ID":23079,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9752,"X":365,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059349Z"},{"ID":23080,"Name":"B.012","Points":10000,"X":649,"Y":514,"Continent":"K56","Bonus":1,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059349Z"},{"ID":23081,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05935Z"},{"ID":23082,"Name":"A0054","Points":10362,"X":348,"Y":494,"Continent":"K43","Bonus":5,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05935Z"},{"ID":23083,"Name":"024 | PALESTINA","Points":9544,"X":631,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05935Z"},{"ID":23084,"Name":"a moĆŒe off ? :)","Points":9403,"X":638,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059351Z"},{"ID":23085,"Name":"Metallica","Points":10237,"X":555,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059351Z"},{"ID":23086,"Name":"Avanti!","Points":9950,"X":354,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059351Z"},{"ID":23087,"Name":"034. Aquarius","Points":9761,"X":599,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059351Z"},{"ID":23088,"Name":"Medyna","Points":9783,"X":472,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059352Z"},{"ID":23089,"Name":"051","Points":10152,"X":646,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059352Z"},{"ID":23090,"Name":"historia","Points":12154,"X":617,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059352Z"},{"ID":23091,"Name":"Jestem Poza Kontrolą","Points":9816,"X":358,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059352Z"},{"ID":23092,"Name":"Wioska barbarzyƄska","Points":6038,"X":651,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059353Z"},{"ID":23093,"Name":"Oww Konfederacja","Points":9635,"X":606,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059353Z"},{"ID":23094,"Name":"020","Points":9430,"X":650,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059353Z"},{"ID":23095,"Name":"BoOmBaa..","Points":6438,"X":440,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059354Z"},{"ID":23096,"Name":"~~011~~","Points":10161,"X":600,"Y":607,"Continent":"K66","Bonus":1,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059354Z"},{"ID":23097,"Name":"Maszlug kolonia XII","Points":6900,"X":369,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059354Z"},{"ID":23098,"Name":"Minas Tirith","Points":7291,"X":613,"Y":396,"Continent":"K36","Bonus":3,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059355Z"},{"ID":23099,"Name":".:056:.ƁOBUZIK","Points":7927,"X":556,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059355Z"},{"ID":23100,"Name":"062","Points":4561,"X":354,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059355Z"},{"ID":23101,"Name":"Ave Why!","Points":10160,"X":458,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059356Z"},{"ID":23102,"Name":"#0013 barbarzyƄska","Points":10178,"X":468,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059356Z"},{"ID":23103,"Name":"ave why!","Points":9957,"X":434,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059356Z"},{"ID":23104,"Name":"North Barba 034","Points":9845,"X":427,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059356Z"},{"ID":23105,"Name":"Wioska 5","Points":9929,"X":376,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059357Z"},{"ID":23106,"Name":"010","Points":10160,"X":558,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059357Z"},{"ID":23107,"Name":"Wioska barbarzyƄska","Points":2425,"X":369,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059357Z"},{"ID":23108,"Name":"Wioska -STRONGHOLD-","Points":10068,"X":526,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059358Z"},{"ID":23109,"Name":"13. GargamelĂłwa","Points":9735,"X":617,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059358Z"},{"ID":23110,"Name":"BACÓWKA |010|","Points":11321,"X":621,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059358Z"},{"ID":23111,"Name":"PiekƂo to inni","Points":10495,"X":574,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059358Z"},{"ID":23112,"Name":"0058","Points":9993,"X":419,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059359Z"},{"ID":23113,"Name":"043","Points":9553,"X":652,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059359Z"},{"ID":23114,"Name":"Wioska barbarzyƄska","Points":10433,"X":438,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059359Z"},{"ID":23115,"Name":"067...barbarka","Points":10320,"X":460,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05936Z"},{"ID":23116,"Name":"#041.520|502","Points":9735,"X":639,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05936Z"},{"ID":23117,"Name":"a moĆŒe off ? :)","Points":9542,"X":625,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05936Z"},{"ID":23118,"Name":"015","Points":9761,"X":641,"Y":550,"Continent":"K56","Bonus":8,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05936Z"},{"ID":23119,"Name":"Wioska barbarzyƄska","Points":10124,"X":650,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059361Z"},{"ID":23120,"Name":"Aleppo","Points":3404,"X":492,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059361Z"},{"ID":23121,"Name":"stop","Points":9735,"X":620,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059361Z"},{"ID":23122,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":562,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059362Z"},{"ID":23123,"Name":"059","Points":9721,"X":635,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059362Z"},{"ID":23124,"Name":"zzzGranica Bledu 05","Points":9241,"X":601,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059362Z"},{"ID":23125,"Name":"Pobozowisko","Points":10971,"X":390,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059363Z"},{"ID":23126,"Name":"jaaa","Points":10481,"X":632,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059363Z"},{"ID":23127,"Name":"- 005 -","Points":10000,"X":553,"Y":610,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059363Z"},{"ID":23128,"Name":"jaaa","Points":10495,"X":636,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059363Z"},{"ID":23129,"Name":"*0028 Baraki","Points":10384,"X":630,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059364Z"},{"ID":23130,"Name":"Tomall78","Points":9382,"X":633,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059364Z"},{"ID":23131,"Name":"- 238 - RR","Points":10000,"X":592,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059364Z"},{"ID":23132,"Name":"Pobozowisko","Points":10955,"X":404,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059364Z"},{"ID":23133,"Name":"038","Points":9818,"X":620,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059365Z"},{"ID":23134,"Name":"#.35 Wioska barbarzyƄska","Points":3748,"X":650,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059365Z"},{"ID":23135,"Name":"Serenity","Points":10348,"X":430,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059365Z"},{"ID":23136,"Name":"ave why!","Points":10237,"X":456,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059366Z"},{"ID":23137,"Name":"Wioska barbarzyƄska","Points":9891,"X":436,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059366Z"},{"ID":23138,"Name":"#0067 barbarzyƄska","Points":10044,"X":471,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059366Z"},{"ID":23139,"Name":"Lord Lord Franek .#017","Points":10143,"X":536,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059366Z"},{"ID":23140,"Name":"A013","Points":10495,"X":594,"Y":380,"Continent":"K35","Bonus":5,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059367Z"},{"ID":23141,"Name":"Ave Why!","Points":9376,"X":459,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059367Z"},{"ID":23143,"Name":"B05","Points":10019,"X":643,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059367Z"},{"ID":23144,"Name":"001","Points":9993,"X":360,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059368Z"},{"ID":23145,"Name":"Wioska barbarzyƄska","Points":7249,"X":356,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059368Z"},{"ID":23146,"Name":"B.002","Points":10000,"X":653,"Y":508,"Continent":"K56","Bonus":1,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059368Z"},{"ID":23147,"Name":"0048","Points":9746,"X":621,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059368Z"},{"ID":23148,"Name":"North Barba 038","Points":9756,"X":423,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059369Z"},{"ID":23149,"Name":"MEH 001","Points":12154,"X":615,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059369Z"},{"ID":23150,"Name":"d 001","Points":7144,"X":393,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059369Z"},{"ID":23151,"Name":"016 - Gijon","Points":10019,"X":641,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05937Z"},{"ID":23152,"Name":"022...POƁUDNIE","Points":10223,"X":456,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05937Z"},{"ID":23153,"Name":"A-027","Points":10168,"X":388,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05937Z"},{"ID":23154,"Name":"c 085d","Points":6084,"X":414,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05937Z"},{"ID":23155,"Name":"Ulu-mulu","Points":3190,"X":413,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059371Z"},{"ID":23156,"Name":"056... barbarka","Points":10325,"X":454,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059371Z"},{"ID":23157,"Name":"psycha sitting","Points":10311,"X":454,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059371Z"},{"ID":23158,"Name":"0471","Points":10362,"X":534,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059372Z"},{"ID":23159,"Name":"#.01 Wioska Pompka15","Points":10019,"X":650,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059372Z"},{"ID":23160,"Name":"B001","Points":9819,"X":397,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059372Z"},{"ID":23161,"Name":"Lord Arsey KING","Points":10285,"X":516,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059372Z"},{"ID":23162,"Name":"The Game Has Only Just Begun","Points":9976,"X":350,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059373Z"},{"ID":23163,"Name":"PDWB","Points":9835,"X":642,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059373Z"},{"ID":23164,"Name":"0051","Points":9782,"X":617,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059373Z"},{"ID":23165,"Name":"kathare","Points":9831,"X":559,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059373Z"},{"ID":23166,"Name":"A0057","Points":10362,"X":348,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059374Z"},{"ID":23167,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059374Z"},{"ID":23168,"Name":"yyyy","Points":10121,"X":502,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059374Z"},{"ID":23169,"Name":"Jednak wolę gofry","Points":7087,"X":432,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059375Z"},{"ID":23170,"Name":"S_007","Points":11191,"X":512,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":849049155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059375Z"},{"ID":23171,"Name":"019","Points":10068,"X":521,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059375Z"},{"ID":23172,"Name":"BoOmBaa..","Points":8880,"X":437,"Y":361,"Continent":"K34","Bonus":5,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059375Z"},{"ID":23173,"Name":"Piwna 21","Points":4949,"X":638,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059376Z"},{"ID":23174,"Name":"122. Seyen","Points":4290,"X":631,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059376Z"},{"ID":23175,"Name":"038 Hella","Points":10209,"X":624,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059376Z"},{"ID":23176,"Name":"0007","Points":10168,"X":582,"Y":376,"Continent":"K35","Bonus":5,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059376Z"},{"ID":23177,"Name":"028","Points":10237,"X":446,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059377Z"},{"ID":23178,"Name":"0043","Points":8388,"X":412,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059377Z"},{"ID":23180,"Name":"kathare","Points":10203,"X":550,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059377Z"},{"ID":23181,"Name":"0564","Points":9821,"X":546,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059378Z"},{"ID":23182,"Name":"The Game Has Only Just Begun","Points":9976,"X":349,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059378Z"},{"ID":23183,"Name":"007 Suche Jezioro","Points":9825,"X":625,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059378Z"},{"ID":23185,"Name":"PiekƂo to inni","Points":10362,"X":573,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059378Z"},{"ID":23186,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":521,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059379Z"},{"ID":23187,"Name":"Pobozowisko","Points":9003,"X":402,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059379Z"},{"ID":23188,"Name":"C001","Points":10248,"X":521,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059379Z"},{"ID":23189,"Name":"Szlachcic","Points":10160,"X":354,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059379Z"},{"ID":23190,"Name":"Charfa","Points":10221,"X":556,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05938Z"},{"ID":23191,"Name":"Wioska Bochun10","Points":10311,"X":347,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05938Z"},{"ID":23192,"Name":"PiekƂo to inni","Points":10160,"X":578,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05938Z"},{"ID":23193,"Name":"003","Points":5730,"X":377,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05938Z"},{"ID":23194,"Name":"A0053","Points":10362,"X":349,"Y":494,"Continent":"K43","Bonus":4,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059381Z"},{"ID":23195,"Name":"The Game Has Only Just Begun","Points":9169,"X":356,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059381Z"},{"ID":23196,"Name":"deff 100 %","Points":8592,"X":362,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059381Z"},{"ID":23197,"Name":"a moĆŒe off ? :)","Points":9329,"X":641,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059381Z"},{"ID":23198,"Name":"Ręcznik do zmiany","Points":10160,"X":375,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059382Z"},{"ID":23199,"Name":"Wioska barbarzyƄska","Points":9718,"X":644,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059382Z"},{"ID":23200,"Name":"Wioska barbarzyƄska","Points":9089,"X":470,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059382Z"},{"ID":23201,"Name":"Wioska Jaro","Points":9915,"X":373,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059382Z"},{"ID":23202,"Name":"Wioska barbarzyƄska","Points":10221,"X":383,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059383Z"},{"ID":23203,"Name":"058","Points":9729,"X":635,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059383Z"},{"ID":23204,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":529,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059383Z"},{"ID":23205,"Name":"Avanti!","Points":9950,"X":349,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059384Z"},{"ID":23206,"Name":"110. PóƂwysep MaƂy Dartan","Points":5234,"X":630,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059384Z"},{"ID":23207,"Name":"Oww Konfederacja","Points":8566,"X":609,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059384Z"},{"ID":23208,"Name":"PiekƂo to inni","Points":10160,"X":568,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059384Z"},{"ID":23209,"Name":"Wioska barbarzyƄska","Points":2658,"X":367,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059385Z"},{"ID":23210,"Name":"006...CENTR_ogarek2","Points":10495,"X":460,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059385Z"},{"ID":23211,"Name":"Kentin ufam Tobie","Points":10005,"X":358,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059385Z"},{"ID":23212,"Name":"041 | PALESTINA","Points":4993,"X":635,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059385Z"},{"ID":23213,"Name":"zzzGranica Bledu 14","Points":11550,"X":611,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059386Z"},{"ID":23214,"Name":"048...CENTR","Points":10237,"X":458,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059386Z"},{"ID":23215,"Name":"Ręcznik do zmiany","Points":7390,"X":371,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059386Z"},{"ID":23216,"Name":"178 Punta del Este","Points":9825,"X":477,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059387Z"},{"ID":23217,"Name":"a moĆŒe off ? :)","Points":9422,"X":626,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059387Z"},{"ID":23218,"Name":"BoOmBaa..","Points":10490,"X":437,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059387Z"},{"ID":23219,"Name":"Alicization 1","Points":10167,"X":458,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059387Z"},{"ID":23220,"Name":"Wioska barbarzyƄska","Points":10479,"X":645,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059388Z"},{"ID":23221,"Name":"SoƂtys wsi Agnes96","Points":11021,"X":399,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059388Z"},{"ID":23222,"Name":"0135","Points":8258,"X":643,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059388Z"},{"ID":23223,"Name":"Wioska barbarzyƄska","Points":10217,"X":556,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059388Z"},{"ID":23224,"Name":"7 barba","Points":9952,"X":578,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059389Z"},{"ID":23225,"Name":"044","Points":10220,"X":612,"Y":599,"Continent":"K56","Bonus":6,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059389Z"},{"ID":23226,"Name":"MRF 002","Points":9085,"X":630,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":118121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059389Z"},{"ID":23227,"Name":"A 014","Points":9976,"X":600,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059389Z"},{"ID":23229,"Name":"0241","Points":10083,"X":543,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05939Z"},{"ID":23230,"Name":"0245","Points":10052,"X":541,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05939Z"},{"ID":23231,"Name":"P024 Kair","Points":9976,"X":652,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05939Z"},{"ID":23232,"Name":"A042","Points":6554,"X":586,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05939Z"},{"ID":23233,"Name":"101","Points":10311,"X":584,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059391Z"},{"ID":23234,"Name":"DajankA 18","Points":10083,"X":356,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059391Z"},{"ID":23235,"Name":"Wioska (038)","Points":7277,"X":646,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059391Z"},{"ID":23236,"Name":"Ave Why!","Points":9809,"X":471,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059392Z"},{"ID":23237,"Name":"Ave Why!","Points":9569,"X":457,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059392Z"},{"ID":23238,"Name":"025. Pędzę","Points":8424,"X":505,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059392Z"},{"ID":23239,"Name":"028 Wioska","Points":9018,"X":647,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059392Z"},{"ID":23240,"Name":"***003***","Points":4052,"X":504,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":8843774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059393Z"},{"ID":23241,"Name":"Gattacka","Points":9761,"X":623,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059393Z"},{"ID":23242,"Name":"Kentin ufam Tobie","Points":9982,"X":356,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059393Z"},{"ID":23243,"Name":"013 Deportacja z Polski","Points":9959,"X":613,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059393Z"},{"ID":23244,"Name":"A009","Points":10495,"X":593,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059394Z"},{"ID":23245,"Name":"AsyĆŒ","Points":2665,"X":492,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059394Z"},{"ID":23246,"Name":"A 015","Points":9413,"X":601,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059394Z"},{"ID":23247,"Name":"Wioska barbarzyƄska","Points":9825,"X":636,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059394Z"},{"ID":23248,"Name":"-002-","Points":8137,"X":357,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":9253494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059395Z"},{"ID":23249,"Name":"016","Points":9976,"X":565,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059395Z"},{"ID":23251,"Name":"Szlachcic","Points":7096,"X":415,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059395Z"},{"ID":23252,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9811,"X":525,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059395Z"},{"ID":23253,"Name":"I#034","Points":5069,"X":603,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059396Z"},{"ID":23254,"Name":"021","Points":4299,"X":424,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059396Z"},{"ID":23255,"Name":"zzzGranica Bledu 07","Points":8651,"X":608,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059396Z"},{"ID":23257,"Name":"013","Points":9735,"X":636,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059396Z"},{"ID":23258,"Name":"Ręcznik do zmiany","Points":10160,"X":375,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059397Z"},{"ID":23259,"Name":"053","Points":10160,"X":646,"Y":540,"Continent":"K56","Bonus":6,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059397Z"},{"ID":23260,"Name":"B.009","Points":10000,"X":651,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059397Z"},{"ID":23261,"Name":"*INTERTWINED*","Points":9711,"X":511,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059397Z"},{"ID":23262,"Name":"Wioska barbarzyƄska","Points":10470,"X":546,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059398Z"},{"ID":23263,"Name":"Westcoast.100","Points":10178,"X":369,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059398Z"},{"ID":23264,"Name":"WW30","Points":3682,"X":650,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059398Z"},{"ID":23265,"Name":"kathare","Points":9866,"X":555,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059398Z"},{"ID":23267,"Name":"jaaa","Points":10495,"X":629,"Y":579,"Continent":"K56","Bonus":7,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059399Z"},{"ID":23268,"Name":"jestem Boomerem !!!!","Points":10362,"X":588,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059399Z"},{"ID":23269,"Name":"Pobozowisko","Points":10950,"X":396,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059399Z"},{"ID":23270,"Name":"psycha sitting","Points":10311,"X":455,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059399Z"},{"ID":23271,"Name":"#0065 barbarzyƄska","Points":10178,"X":471,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0594Z"},{"ID":23272,"Name":"Wioska barbarzyƄska","Points":9902,"X":364,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0594Z"},{"ID":23273,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":529,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0594Z"},{"ID":23274,"Name":"093 duko 2","Points":10001,"X":546,"Y":355,"Continent":"K35","Bonus":6,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0594Z"},{"ID":23275,"Name":"034 Y13J","Points":9500,"X":653,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059401Z"},{"ID":23276,"Name":"Cladonia arbuscula","Points":9517,"X":495,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059401Z"},{"ID":23277,"Name":"135 DaSilva2402","Points":10001,"X":517,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059401Z"},{"ID":23278,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059401Z"},{"ID":23279,"Name":"165...Kalichore","Points":6835,"X":453,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059401Z"},{"ID":23280,"Name":"Sony 911","Points":10052,"X":580,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059402Z"},{"ID":23281,"Name":"BoOmBaa..oai","Points":10971,"X":441,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059402Z"},{"ID":23282,"Name":"Kentin ufam Tobie","Points":10000,"X":359,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059402Z"},{"ID":23283,"Name":"WB005","Points":9415,"X":589,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059402Z"},{"ID":23285,"Name":"006.","Points":10838,"X":482,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059403Z"},{"ID":23286,"Name":"Wioska Syriusz1","Points":9390,"X":571,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059403Z"},{"ID":23287,"Name":"14 Helmowy Jar","Points":10311,"X":457,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059403Z"},{"ID":23288,"Name":"030","Points":6486,"X":614,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059403Z"},{"ID":23289,"Name":"- 233 - RR","Points":10000,"X":593,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059404Z"},{"ID":23290,"Name":"c 001c","Points":9269,"X":410,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059404Z"},{"ID":23292,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059404Z"},{"ID":23293,"Name":"024 Ceunon","Points":9986,"X":602,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059404Z"},{"ID":23294,"Name":"--5. Ɓysa Polana","Points":10559,"X":387,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059405Z"},{"ID":23296,"Name":"Kikut","Points":10068,"X":516,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059405Z"},{"ID":23297,"Name":"Valhalla A5","Points":5962,"X":373,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059405Z"},{"ID":23299,"Name":"032","Points":9714,"X":643,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059405Z"},{"ID":23300,"Name":"Jestem Poza Kontrolą","Points":9880,"X":349,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059406Z"},{"ID":23301,"Name":"kathare","Points":9779,"X":558,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059406Z"},{"ID":23302,"Name":"SoƂtys wsi Agnes96","Points":10309,"X":399,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059406Z"},{"ID":23303,"Name":"kathare","Points":9957,"X":546,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059406Z"},{"ID":23304,"Name":"[075]","Points":10252,"X":639,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059407Z"},{"ID":23305,"Name":"The Game Has Only Just Begun","Points":9976,"X":351,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059407Z"},{"ID":23306,"Name":"A017","Points":10211,"X":590,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059407Z"},{"ID":23307,"Name":"0284","Points":9861,"X":545,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059408Z"},{"ID":23308,"Name":"Jestem Poza Kontrolą","Points":8589,"X":351,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059408Z"},{"ID":23309,"Name":"|A| Hazelvalley","Points":10495,"X":479,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059408Z"},{"ID":23310,"Name":"The Game Has Only Just Begun","Points":9976,"X":348,"Y":520,"Continent":"K53","Bonus":1,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059408Z"},{"ID":23311,"Name":"Shinra Building - Perimeter","Points":10083,"X":508,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059409Z"},{"ID":23312,"Name":"ILO","Points":10479,"X":599,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059409Z"},{"ID":23313,"Name":"243...SOUTH","Points":8380,"X":478,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059409Z"},{"ID":23314,"Name":"~~027~~","Points":9511,"X":603,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059409Z"},{"ID":23316,"Name":"Oww Konfederacja","Points":9938,"X":608,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05941Z"},{"ID":23317,"Name":"A0297","Points":10362,"X":353,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05941Z"},{"ID":23318,"Name":"Siara","Points":3601,"X":537,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":849101144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05941Z"},{"ID":23319,"Name":"Kentin ufam Tobie","Points":10147,"X":357,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05941Z"},{"ID":23320,"Name":"c 0055 Wioska","Points":10083,"X":403,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059411Z"},{"ID":23321,"Name":"c 010 Oaza 9","Points":10083,"X":414,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059411Z"},{"ID":23322,"Name":"B.019","Points":10000,"X":648,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059411Z"},{"ID":23323,"Name":"Jan 011 Watergate K","Points":9435,"X":648,"Y":462,"Continent":"K46","Bonus":1,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059411Z"},{"ID":23324,"Name":"Avanti!","Points":9950,"X":349,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059412Z"},{"ID":23325,"Name":".Wioska barbarzyƄska","Points":6021,"X":637,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059412Z"},{"ID":23326,"Name":"a moĆŒe off ? :)","Points":9534,"X":627,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059412Z"},{"ID":23327,"Name":"A0062","Points":10362,"X":351,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059412Z"},{"ID":23328,"Name":"069","Points":10311,"X":560,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059413Z"},{"ID":23329,"Name":"EMERYTOWANY KUZYN","Points":8174,"X":422,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059413Z"},{"ID":23330,"Name":"033","Points":10237,"X":482,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059413Z"},{"ID":23331,"Name":"PiekƂo to inni","Points":10160,"X":573,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059413Z"},{"ID":23332,"Name":"BUNKIER 004","Points":7643,"X":636,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059414Z"},{"ID":23333,"Name":"029.","Points":10346,"X":644,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059414Z"},{"ID":23334,"Name":"A0105","Points":10362,"X":350,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059414Z"},{"ID":23335,"Name":"kathare","Points":9994,"X":559,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059414Z"},{"ID":23336,"Name":"010","Points":9809,"X":366,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059415Z"},{"ID":23337,"Name":"BACÓWKA |021|","Points":7387,"X":628,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059415Z"},{"ID":23338,"Name":"33.OrƂy","Points":10465,"X":379,"Y":595,"Continent":"K53","Bonus":6,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059415Z"},{"ID":23339,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059415Z"},{"ID":23340,"Name":"006Okna","Points":9687,"X":447,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059416Z"},{"ID":23341,"Name":"JaawmG","Points":10019,"X":645,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059416Z"},{"ID":23342,"Name":"023","Points":10237,"X":480,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059416Z"},{"ID":23343,"Name":"yogi","Points":7283,"X":572,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059416Z"},{"ID":23344,"Name":"#055.","Points":9735,"X":643,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059417Z"},{"ID":23345,"Name":"++001++","Points":10285,"X":381,"Y":413,"Continent":"K43","Bonus":5,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059417Z"},{"ID":23346,"Name":"009 nie ma spania na wyjazdach","Points":9485,"X":446,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059417Z"},{"ID":23347,"Name":"Ave Why!","Points":9847,"X":483,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059417Z"},{"ID":23348,"Name":"A-020","Points":10168,"X":390,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059418Z"},{"ID":23349,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":516,"Continent":"K53","Bonus":8,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059418Z"},{"ID":23350,"Name":"050","Points":10336,"X":443,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059418Z"},{"ID":23351,"Name":"EMERYTOWANY KUZYN","Points":6315,"X":426,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059418Z"},{"ID":23352,"Name":"Jestem Poza Kontrolą","Points":8215,"X":355,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059419Z"},{"ID":23353,"Name":"065","Points":10144,"X":646,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059419Z"},{"ID":23354,"Name":"A-023","Points":10168,"X":386,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059419Z"},{"ID":23355,"Name":"Village","Points":12154,"X":520,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059419Z"},{"ID":23356,"Name":"Wioska barbarzyƄska","Points":4607,"X":361,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05942Z"},{"ID":23357,"Name":"063","Points":9638,"X":649,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05942Z"},{"ID":23358,"Name":"Pobozowisko","Points":7122,"X":402,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05942Z"},{"ID":23359,"Name":"jaaa","Points":10487,"X":630,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05942Z"},{"ID":23360,"Name":"Myk i do kieszonki","Points":9799,"X":364,"Y":566,"Continent":"K53","Bonus":1,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059421Z"},{"ID":23361,"Name":"Jednak wolę gofry","Points":9830,"X":473,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059421Z"},{"ID":23362,"Name":"100","Points":10495,"X":475,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059421Z"},{"ID":23363,"Name":"Osada koczownikĂłw","Points":10226,"X":544,"Y":355,"Continent":"K35","Bonus":1,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059421Z"},{"ID":23364,"Name":"Punta Cana","Points":7680,"X":457,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059422Z"},{"ID":23365,"Name":"Kentin ufam Tobie","Points":10000,"X":352,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059422Z"},{"ID":23366,"Name":"Jehu_Kingdom_19_","Points":9993,"X":645,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059422Z"},{"ID":23367,"Name":"kathare","Points":9829,"X":556,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059422Z"},{"ID":23368,"Name":"Wioska barbarzyƄska M","Points":3402,"X":372,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059423Z"},{"ID":23369,"Name":"Jan o8 II","Points":8755,"X":641,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059423Z"},{"ID":23370,"Name":"123","Points":10214,"X":507,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059423Z"},{"ID":23371,"Name":"06 Jar Kapitolu","Points":2164,"X":546,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059423Z"},{"ID":23372,"Name":"Jestem Poza Kontrolą","Points":8589,"X":357,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059423Z"},{"ID":23373,"Name":"Deveste ufam Tobie","Points":10083,"X":437,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059424Z"},{"ID":23374,"Name":"Jaaa","Points":10484,"X":624,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059424Z"},{"ID":23375,"Name":"A041","Points":10201,"X":587,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059424Z"},{"ID":23376,"Name":"017","Points":10237,"X":480,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059424Z"},{"ID":23378,"Name":"Oww Konfederacja","Points":4401,"X":606,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059425Z"},{"ID":23379,"Name":"026 serniczek na urodziny","Points":9767,"X":493,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059425Z"},{"ID":23380,"Name":"029 181","Points":8675,"X":348,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059425Z"},{"ID":23381,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":523,"Continent":"K53","Bonus":3,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059425Z"},{"ID":23383,"Name":"Ulu-mulu","Points":5246,"X":410,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059426Z"},{"ID":23384,"Name":"Myk i do kieszonki","Points":9102,"X":362,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059426Z"},{"ID":23385,"Name":"Wioska barbarzyƄska .","Points":10362,"X":581,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059426Z"},{"ID":23386,"Name":"Wioska Przeklętych","Points":10237,"X":553,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059426Z"},{"ID":23387,"Name":"BEZDZIETNY KAWALER","Points":4629,"X":417,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059427Z"},{"ID":23388,"Name":"022","Points":6895,"X":626,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059427Z"},{"ID":23389,"Name":"A-028","Points":10168,"X":391,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059427Z"},{"ID":23390,"Name":"121","Points":9899,"X":626,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059427Z"},{"ID":23391,"Name":"Jestem Poza Kontrolą","Points":8048,"X":360,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059428Z"},{"ID":23392,"Name":"kathare","Points":10495,"X":548,"Y":643,"Continent":"K65","Bonus":8,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059428Z"},{"ID":23393,"Name":"002 - Mroczna Osada","Points":11085,"X":634,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059428Z"},{"ID":23394,"Name":"B.017","Points":10000,"X":657,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059428Z"},{"ID":23395,"Name":"013","Points":10068,"X":521,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059429Z"},{"ID":23396,"Name":"114 Tonami","Points":7793,"X":645,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059429Z"},{"ID":23397,"Name":"SoƂtys Wsi Enaor1990","Points":9761,"X":408,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059429Z"},{"ID":23398,"Name":"Kentin ufam Tobie","Points":10000,"X":355,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059429Z"},{"ID":23399,"Name":"Ave Why!","Points":10019,"X":472,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05943Z"},{"ID":23400,"Name":"1.1","Points":10177,"X":390,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05943Z"},{"ID":23401,"Name":"Ulu-mulu","Points":3562,"X":418,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05943Z"},{"ID":23402,"Name":"M181_053","Points":9943,"X":364,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05943Z"},{"ID":23403,"Name":"Hipnagogia","Points":8618,"X":372,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05943Z"},{"ID":23404,"Name":"a moĆŒe off ? :)","Points":10005,"X":625,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059431Z"},{"ID":23405,"Name":"zz To nie byƂ przypadek Magiorek","Points":11824,"X":618,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059431Z"},{"ID":23406,"Name":"052. Tripolis","Points":9548,"X":646,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059431Z"},{"ID":23407,"Name":"012. Ć»eby kĂłzka.....","Points":10054,"X":508,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059432Z"},{"ID":23408,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":571,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059432Z"},{"ID":23409,"Name":"Wioska barbarzyƄska","Points":9804,"X":622,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059432Z"},{"ID":23410,"Name":"A 012","Points":4676,"X":607,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059432Z"},{"ID":23411,"Name":"a moĆŒe off ? :)","Points":9550,"X":624,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059432Z"},{"ID":23412,"Name":"psycha sitting","Points":10311,"X":452,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059433Z"},{"ID":23413,"Name":"029","Points":8939,"X":438,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059433Z"},{"ID":23414,"Name":"001","Points":8240,"X":376,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059433Z"},{"ID":23415,"Name":"PiekƂo to inni","Points":10971,"X":565,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059434Z"},{"ID":23416,"Name":"Pobozowisko","Points":10951,"X":384,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059434Z"},{"ID":23417,"Name":"#.28 Wioska barbarzyƄska","Points":5912,"X":648,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059434Z"},{"ID":23418,"Name":"25. Speluna","Points":7444,"X":378,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059434Z"},{"ID":23419,"Name":"008. Hawaje","Points":9835,"X":639,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059435Z"},{"ID":23420,"Name":"Pobozowisko","Points":7107,"X":385,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059435Z"},{"ID":23421,"Name":"Wioska barbarzyƄska","Points":9285,"X":449,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059435Z"},{"ID":23422,"Name":"041","Points":9389,"X":623,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059435Z"},{"ID":23423,"Name":"c Boniu30","Points":10426,"X":406,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059436Z"},{"ID":23424,"Name":"buuu","Points":9827,"X":395,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059436Z"},{"ID":23425,"Name":"001 GĂłrzysta Dolina","Points":9899,"X":623,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059436Z"},{"ID":23426,"Name":"Wioska barbarzyƄska","Points":10068,"X":529,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059436Z"},{"ID":23427,"Name":"009|| Sagittarius","Points":10019,"X":483,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059437Z"},{"ID":23428,"Name":"Wioska","Points":9343,"X":592,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059437Z"},{"ID":23429,"Name":"93k$ Grvvyq","Points":4551,"X":645,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059437Z"},{"ID":23430,"Name":"MojeSzczytToTwĂłjDno","Points":9727,"X":505,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059437Z"},{"ID":23431,"Name":"Szlachcic !!!","Points":9178,"X":498,"Y":474,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059438Z"},{"ID":23432,"Name":"Pobozowisko","Points":10817,"X":385,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059438Z"},{"ID":23433,"Name":"093","Points":8917,"X":357,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059438Z"},{"ID":23434,"Name":"jaaa","Points":10495,"X":631,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059438Z"},{"ID":23435,"Name":"EMERYTOWANY KUZYN","Points":9013,"X":422,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059439Z"},{"ID":23436,"Name":"Pobozowisko","Points":6836,"X":389,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059439Z"},{"ID":23437,"Name":"jaaa","Points":10495,"X":628,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059439Z"},{"ID":23438,"Name":"Pobozowisko","Points":10952,"X":391,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059439Z"},{"ID":23439,"Name":"006 Danowiec City","Points":10333,"X":433,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05944Z"},{"ID":23440,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05944Z"},{"ID":23441,"Name":"D 009","Points":9776,"X":650,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05944Z"},{"ID":23442,"Name":"Lord Lord Franek .#041","Points":10795,"X":528,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05944Z"},{"ID":23443,"Name":"106","Points":9860,"X":352,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05944Z"},{"ID":23444,"Name":"Jehu_Kingdom_21_","Points":9993,"X":644,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059441Z"},{"ID":23445,"Name":"mys","Points":9976,"X":569,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059441Z"},{"ID":23446,"Name":"PiekƂo to inni","Points":10495,"X":572,"Y":369,"Continent":"K35","Bonus":6,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059441Z"},{"ID":23447,"Name":"042","Points":9782,"X":443,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059441Z"},{"ID":23448,"Name":"048","Points":10311,"X":649,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059442Z"},{"ID":23449,"Name":"M181_017","Points":9891,"X":361,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059442Z"},{"ID":23450,"Name":"jaaa","Points":10495,"X":634,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059442Z"},{"ID":23451,"Name":"085","Points":10019,"X":355,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059442Z"},{"ID":23452,"Name":"#.15 Wioska barbarzyƄska","Points":10019,"X":649,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059443Z"},{"ID":23453,"Name":"Oww Konfederacja","Points":9976,"X":611,"Y":400,"Continent":"K46","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059443Z"},{"ID":23454,"Name":"[C]_[009] Dejv.oldplyr","Points":9598,"X":358,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059443Z"},{"ID":23455,"Name":"Pobozowisko","Points":7004,"X":383,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059443Z"},{"ID":23456,"Name":"PaczaƂkowo","Points":10197,"X":427,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059443Z"},{"ID":23457,"Name":"0050","Points":9825,"X":618,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059444Z"},{"ID":23458,"Name":"A28 Braunschweig","Points":10484,"X":469,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059444Z"},{"ID":23459,"Name":"Wioska barbarzyƄska","Points":10218,"X":553,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059444Z"},{"ID":23460,"Name":"Wioska barbarzyƄska","Points":3988,"X":385,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059444Z"},{"ID":23461,"Name":"PiekƂo to inni","Points":10495,"X":573,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059445Z"},{"ID":23462,"Name":"#0008","Points":10495,"X":550,"Y":646,"Continent":"K65","Bonus":7,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059445Z"},{"ID":23463,"Name":"Myk i do kieszonki","Points":9799,"X":357,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059445Z"},{"ID":23464,"Name":"#.09 Wioska barbarzyƄska","Points":10019,"X":651,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059445Z"},{"ID":23465,"Name":"Ave Why!","Points":9012,"X":457,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059446Z"},{"ID":23466,"Name":"004.","Points":10019,"X":614,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059446Z"},{"ID":23467,"Name":"025","Points":10237,"X":479,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059446Z"},{"ID":23468,"Name":"Pobozowisko","Points":9138,"X":393,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059446Z"},{"ID":23469,"Name":"0119","Points":4590,"X":424,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059446Z"},{"ID":23470,"Name":"EMERYTOWANY KUZYN","Points":5127,"X":425,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059447Z"},{"ID":23471,"Name":"- 228 - RR","Points":9346,"X":595,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059447Z"},{"ID":23472,"Name":"0015","Points":9993,"X":418,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059447Z"},{"ID":23473,"Name":"Sparta_76","Points":2146,"X":479,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059447Z"},{"ID":23474,"Name":"022","Points":9726,"X":638,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059448Z"},{"ID":23475,"Name":"Wioska 4","Points":1428,"X":537,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":849097220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059448Z"},{"ID":23476,"Name":"North Barba 025","Points":9761,"X":424,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059448Z"},{"ID":23477,"Name":"003","Points":10237,"X":489,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059448Z"},{"ID":23478,"Name":"045","Points":9203,"X":571,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059449Z"},{"ID":23479,"Name":"038 | PALESTINA","Points":5743,"X":639,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059449Z"},{"ID":23480,"Name":"A0259","Points":10362,"X":351,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059449Z"},{"ID":23481,"Name":"RTS 71","Points":10495,"X":579,"Y":626,"Continent":"K65","Bonus":6,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059449Z"},{"ID":23482,"Name":"The Game Has Only Just Begun","Points":9976,"X":349,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05945Z"},{"ID":23483,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05945Z"},{"ID":23484,"Name":"080.","Points":10495,"X":489,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05945Z"},{"ID":23485,"Name":"Wiocha 003","Points":10178,"X":393,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05945Z"},{"ID":23486,"Name":"032","Points":10285,"X":428,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059451Z"},{"ID":23487,"Name":"Chekku - meito","Points":10178,"X":343,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059451Z"},{"ID":23488,"Name":"LadyAnimavillis","Points":9761,"X":600,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059451Z"},{"ID":23489,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9816,"X":366,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059451Z"},{"ID":23490,"Name":"Oww Konfederacja","Points":4411,"X":606,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059451Z"},{"ID":23492,"Name":"The Game Has Only Just Begun","Points":9976,"X":346,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059452Z"},{"ID":23493,"Name":"C002","Points":10032,"X":520,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059452Z"},{"ID":23494,"Name":"31k$ Grvvyq","Points":10495,"X":639,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059452Z"},{"ID":23495,"Name":"048","Points":10207,"X":646,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059452Z"},{"ID":23496,"Name":"Mniejsze zƂo 0068","Points":6188,"X":353,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059453Z"},{"ID":23497,"Name":"Lord Lord Franek .#018","Points":9956,"X":533,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059453Z"},{"ID":23498,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059453Z"},{"ID":23499,"Name":"Avanti!","Points":9950,"X":348,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059453Z"},{"ID":23500,"Name":"#001 Mentor Zenit","Points":3249,"X":358,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059454Z"},{"ID":23501,"Name":"B.047","Points":10005,"X":653,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059454Z"},{"ID":23502,"Name":"Pobozowisko","Points":10952,"X":386,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059454Z"},{"ID":23504,"Name":"Ave Why!","Points":10019,"X":455,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059454Z"},{"ID":23505,"Name":"KREV 005","Points":9735,"X":638,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059455Z"},{"ID":23506,"Name":"Darkheim","Points":10019,"X":377,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059455Z"},{"ID":23507,"Name":"Wioska xkikutx","Points":10068,"X":526,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059455Z"},{"ID":23508,"Name":"A-021","Points":10168,"X":393,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059455Z"},{"ID":23509,"Name":"Flinii","Points":4460,"X":632,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059456Z"},{"ID":23511,"Name":"K04.","Points":10495,"X":369,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059456Z"},{"ID":23512,"Name":"SoƂtys Twojej Wsi","Points":10220,"X":402,"Y":384,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059456Z"},{"ID":23513,"Name":"SoƂtys Twojej Wsi","Points":9559,"X":403,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059456Z"},{"ID":23514,"Name":"001 Grudziądz","Points":9756,"X":649,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059456Z"},{"ID":23515,"Name":"The Unforgiven","Points":8464,"X":626,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059457Z"},{"ID":23516,"Name":"A033","Points":10168,"X":578,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059457Z"},{"ID":23517,"Name":"Oww Konfederacja","Points":5056,"X":600,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059457Z"},{"ID":23518,"Name":"W 01","Points":9744,"X":647,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059457Z"},{"ID":23519,"Name":"001","Points":8628,"X":429,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059458Z"},{"ID":23520,"Name":"BUNKIER 002","Points":11215,"X":636,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059458Z"},{"ID":23521,"Name":"A020","Points":10479,"X":470,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059458Z"},{"ID":23522,"Name":"B.031","Points":10000,"X":648,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059458Z"},{"ID":23523,"Name":"B005","Points":9810,"X":397,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059459Z"},{"ID":23524,"Name":"0081","Points":10160,"X":532,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059459Z"},{"ID":23525,"Name":"Jestem Poza Kontrolą","Points":8962,"X":358,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059459Z"},{"ID":23526,"Name":"psycha sitting","Points":9540,"X":445,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059459Z"},{"ID":23527,"Name":"NOT","Points":10042,"X":417,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059459Z"},{"ID":23528,"Name":"038","Points":5900,"X":653,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05946Z"},{"ID":23530,"Name":"PiekƂo to inni","Points":10495,"X":578,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05946Z"},{"ID":23531,"Name":"- 225 - RR","Points":7134,"X":589,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05946Z"},{"ID":23532,"Name":"060","Points":9723,"X":635,"Y":571,"Continent":"K56","Bonus":9,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05946Z"},{"ID":23533,"Name":"Wioska barbarzyƄska","Points":9549,"X":644,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059461Z"},{"ID":23534,"Name":"c 011 PrzystaƄ 2","Points":10297,"X":412,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059461Z"},{"ID":23535,"Name":"Lord Lord Franek .#227","Points":10056,"X":524,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059461Z"},{"ID":23536,"Name":"075...barbarka centr -----------","Points":10218,"X":462,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059461Z"},{"ID":23537,"Name":"006) Sulistrowiczki","Points":4203,"X":540,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059462Z"},{"ID":23538,"Name":"Wioska barbarzyƄska","Points":10226,"X":553,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059462Z"},{"ID":23539,"Name":"Avanti!","Points":9950,"X":353,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059462Z"},{"ID":23540,"Name":"A0025","Points":10362,"X":385,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059462Z"},{"ID":23541,"Name":"Alicization8","Points":8366,"X":461,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059462Z"},{"ID":23542,"Name":"kathare","Points":9869,"X":561,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059463Z"},{"ID":23543,"Name":"NOT?","Points":9574,"X":428,"Y":543,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059463Z"},{"ID":23544,"Name":"#0014 barbarzyƄska","Points":10178,"X":464,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059463Z"},{"ID":23545,"Name":"0024","Points":10211,"X":594,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059463Z"},{"ID":23546,"Name":"Jestem Poza Kontrolą","Points":9880,"X":352,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059464Z"},{"ID":23547,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059464Z"},{"ID":23548,"Name":"Jestem Poza Kontrolą","Points":9523,"X":358,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059464Z"},{"ID":23549,"Name":"025","Points":7009,"X":653,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059464Z"},{"ID":23550,"Name":"off 100 %","Points":10294,"X":359,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059465Z"},{"ID":23551,"Name":"a moĆŒe off ? :)","Points":9566,"X":627,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059465Z"},{"ID":23552,"Name":"Ręcznik do zmiany","Points":10160,"X":372,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059465Z"},{"ID":23553,"Name":"BoOmBaa..","Points":10495,"X":432,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059465Z"},{"ID":23554,"Name":"028 - Cartagena","Points":10019,"X":640,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059466Z"},{"ID":23555,"Name":"046|| Telescopium","Points":9634,"X":473,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059466Z"},{"ID":23556,"Name":"*0026 Baraki","Points":10088,"X":630,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059466Z"},{"ID":23557,"Name":"Wioska barbarzyƄska","Points":6010,"X":363,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059466Z"},{"ID":23558,"Name":"010","Points":10237,"X":481,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059466Z"},{"ID":23559,"Name":"off 100 %","Points":7186,"X":370,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059467Z"},{"ID":23560,"Name":"020. Morning","Points":10104,"X":506,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059467Z"},{"ID":23561,"Name":"mys","Points":9976,"X":569,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059467Z"},{"ID":23562,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":526,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059467Z"},{"ID":23563,"Name":"Pobozowisko","Points":7566,"X":396,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059468Z"},{"ID":23564,"Name":"010 Towar Wydany","Points":10001,"X":540,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059468Z"},{"ID":23565,"Name":"Jehu_Kingdom_12_","Points":9993,"X":632,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059468Z"},{"ID":23566,"Name":"28. koƂo bila","Points":10263,"X":376,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059468Z"},{"ID":23567,"Name":"005 LeciaƂem Na Hulajce","Points":10001,"X":543,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059469Z"},{"ID":23568,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9671,"X":497,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059469Z"},{"ID":23569,"Name":"aAa Szlaban 5","Points":12154,"X":606,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059469Z"},{"ID":23570,"Name":"039","Points":9500,"X":652,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059469Z"},{"ID":23571,"Name":"*Lan","Points":9761,"X":575,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059469Z"},{"ID":23572,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":563,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05947Z"},{"ID":23573,"Name":"Pobozowisko","Points":10954,"X":407,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05947Z"},{"ID":23574,"Name":"013 MONETKI","Points":8869,"X":652,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05947Z"},{"ID":23575,"Name":"yyyyy","Points":10063,"X":503,"Y":352,"Continent":"K35","Bonus":1,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059471Z"},{"ID":23576,"Name":"003 181","Points":10162,"X":352,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059471Z"},{"ID":23577,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":564,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059471Z"},{"ID":23578,"Name":"Szlachcic","Points":10237,"X":422,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059471Z"},{"ID":23579,"Name":"AA02 Francja","Points":12154,"X":378,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059471Z"},{"ID":23580,"Name":"Oww Konfederacja","Points":6901,"X":607,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059472Z"},{"ID":23582,"Name":"Lord Lord Franek .#137","Points":10233,"X":515,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059472Z"},{"ID":23583,"Name":"Wioska barbarzyƄska","Points":5743,"X":371,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059472Z"},{"ID":23584,"Name":"0472","Points":10252,"X":533,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059472Z"},{"ID":23585,"Name":"042 wioska barbarka","Points":9438,"X":391,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059473Z"},{"ID":23586,"Name":"Wioska barbarzyƄska","Points":1952,"X":386,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059473Z"},{"ID":23587,"Name":"057","Points":5291,"X":426,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059473Z"},{"ID":23588,"Name":"Wioska Zielony2607","Points":9816,"X":472,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059473Z"},{"ID":23589,"Name":"SSJ 064","Points":9761,"X":515,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059474Z"},{"ID":23590,"Name":"-004-","Points":9746,"X":358,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":9253494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059474Z"},{"ID":23591,"Name":"006 C3tiv","Points":9080,"X":653,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059474Z"},{"ID":23592,"Name":"018 Barba","Points":9500,"X":654,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059474Z"},{"ID":23593,"Name":"Deveste ufam Tobie","Points":6545,"X":431,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059475Z"},{"ID":23594,"Name":"Jednak wolę gofry","Points":10044,"X":440,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059475Z"},{"ID":23595,"Name":"200","Points":10476,"X":645,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059475Z"},{"ID":23596,"Name":"BoOmBaa..","Points":2726,"X":441,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059475Z"},{"ID":23597,"Name":"Ave Why!","Points":10311,"X":496,"Y":654,"Continent":"K64","Bonus":2,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059476Z"},{"ID":23598,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059476Z"},{"ID":23599,"Name":"**Quetico","Points":9761,"X":575,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059476Z"},{"ID":23600,"Name":"0473","Points":10495,"X":537,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059476Z"},{"ID":23601,"Name":"Wioska 3","Points":3049,"X":538,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":849097220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059477Z"},{"ID":23602,"Name":"Ave Why!","Points":6176,"X":464,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059477Z"},{"ID":23603,"Name":"BEZDZIETNY KAWALER","Points":7525,"X":423,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059477Z"},{"ID":23604,"Name":"81k$ Grvvyq","Points":10495,"X":643,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059477Z"},{"ID":23605,"Name":"*Loch","Points":9761,"X":574,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059477Z"},{"ID":23606,"Name":"Charizard","Points":10332,"X":498,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059478Z"},{"ID":23607,"Name":"~~004~~","Points":9839,"X":605,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059478Z"},{"ID":23608,"Name":"B.048","Points":10002,"X":654,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059478Z"},{"ID":23609,"Name":"0040 Wioska barbarzyƄska","Points":6453,"X":406,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059478Z"},{"ID":23610,"Name":"7.62 mm","Points":2177,"X":379,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059479Z"},{"ID":23611,"Name":"020 Barba","Points":9500,"X":653,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059479Z"},{"ID":23612,"Name":"A0055","Points":10362,"X":347,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059479Z"},{"ID":23614,"Name":"074 Rozpusta4","Points":10132,"X":638,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059479Z"},{"ID":23615,"Name":"The Game Has Only Just Begun","Points":8898,"X":351,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05948Z"},{"ID":23616,"Name":"-018-","Points":9203,"X":377,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05948Z"},{"ID":23617,"Name":"041","Points":9993,"X":370,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05948Z"},{"ID":23618,"Name":"Dajanka 13","Points":6385,"X":356,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05948Z"},{"ID":23619,"Name":"150...ksiÄ…ĆŒÄ™ plemienia","Points":7135,"X":453,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05948Z"},{"ID":23620,"Name":"022","Points":10252,"X":652,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059481Z"},{"ID":23621,"Name":"007 - Mroczna Osada","Points":11550,"X":628,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059481Z"},{"ID":23622,"Name":"0142","Points":10019,"X":536,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059481Z"},{"ID":23623,"Name":"023|| Canis Minor","Points":9830,"X":491,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059481Z"},{"ID":23624,"Name":"Kentin ufam Tobie","Points":10000,"X":351,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059482Z"},{"ID":23625,"Name":"A0060","Points":10362,"X":349,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059482Z"},{"ID":23626,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":561,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059482Z"},{"ID":23627,"Name":"Kentin ufam Tobie","Points":10000,"X":350,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059482Z"},{"ID":23628,"Name":"Wioska barbarzyƄska","Points":10068,"X":395,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059483Z"},{"ID":23629,"Name":"jaaa","Points":10484,"X":636,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059483Z"},{"ID":23630,"Name":"BEZDZIETNY KAWALER","Points":8204,"X":423,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059483Z"},{"ID":23631,"Name":"SSJ 050","Points":9761,"X":511,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059483Z"},{"ID":23632,"Name":"-012-","Points":9266,"X":378,"Y":588,"Continent":"K53","Bonus":4,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059484Z"},{"ID":23633,"Name":"109","Points":10495,"X":485,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059484Z"},{"ID":23634,"Name":"North Barba 029","Points":9747,"X":430,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059484Z"},{"ID":23635,"Name":"008...PƁD_Ogar","Points":10495,"X":456,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059485Z"},{"ID":23636,"Name":"#0023 barbarzyƄska","Points":10178,"X":468,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059485Z"},{"ID":23637,"Name":"0012","Points":9993,"X":420,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059485Z"},{"ID":23638,"Name":"zzzGranica Bledu 10","Points":9026,"X":607,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059485Z"},{"ID":23639,"Name":"W 02","Points":9666,"X":643,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059485Z"},{"ID":23640,"Name":"067","Points":10083,"X":355,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059486Z"},{"ID":23641,"Name":"0474","Points":10019,"X":532,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059486Z"},{"ID":23642,"Name":"A0225","Points":10362,"X":347,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059486Z"},{"ID":23643,"Name":"86k$ Grvvyq","Points":10436,"X":646,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059486Z"},{"ID":23644,"Name":"B004","Points":9808,"X":401,"Y":610,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059487Z"},{"ID":23645,"Name":"036","Points":9752,"X":636,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059487Z"},{"ID":23646,"Name":"Jan 05 K","Points":9476,"X":645,"Y":464,"Continent":"K46","Bonus":3,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059487Z"},{"ID":23647,"Name":"B.033","Points":10000,"X":654,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059488Z"},{"ID":23648,"Name":"115 Sagae","Points":5712,"X":651,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059488Z"},{"ID":23649,"Name":"Nowe 4","Points":8820,"X":537,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059488Z"},{"ID":23650,"Name":"- 242 - RR","Points":10000,"X":596,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059488Z"},{"ID":23651,"Name":"mioduch001","Points":2663,"X":585,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":698385619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059489Z"},{"ID":23652,"Name":"A001","Points":9600,"X":599,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059489Z"},{"ID":23654,"Name":"psycha sitting","Points":8229,"X":454,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059489Z"},{"ID":23655,"Name":"Sque zostaje","Points":10160,"X":524,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":7181335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059489Z"},{"ID":23656,"Name":"K34 - [110] Before Land","Points":10259,"X":444,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05949Z"},{"ID":23657,"Name":"A0106","Points":10362,"X":352,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05949Z"},{"ID":23658,"Name":"A004","Points":7586,"X":405,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05949Z"},{"ID":23660,"Name":"Wiocha 001","Points":10178,"X":394,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05949Z"},{"ID":23661,"Name":"0146","Points":10903,"X":425,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059491Z"},{"ID":23662,"Name":"Isengard","Points":5949,"X":611,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059491Z"},{"ID":23663,"Name":"Pobozowisko","Points":10797,"X":395,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059491Z"},{"ID":23664,"Name":"0057","Points":9825,"X":620,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059491Z"},{"ID":23665,"Name":"A0170","Points":10362,"X":355,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059492Z"},{"ID":23666,"Name":"kathare","Points":10187,"X":558,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059492Z"},{"ID":23667,"Name":"Ave Why!","Points":9922,"X":452,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059492Z"},{"ID":23668,"Name":"A0210","Points":10362,"X":368,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059492Z"},{"ID":23669,"Name":"A025","Points":10211,"X":585,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059493Z"},{"ID":23670,"Name":"15 Gondolin","Points":8041,"X":458,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059493Z"},{"ID":23671,"Name":"jaaa","Points":10484,"X":629,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059493Z"},{"ID":23672,"Name":"0475","Points":9693,"X":536,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059493Z"},{"ID":23673,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":572,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059494Z"},{"ID":23674,"Name":"067 Wioska barbarzyƄska","Points":10001,"X":549,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059494Z"},{"ID":23675,"Name":"004","Points":12134,"X":649,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059494Z"},{"ID":23676,"Name":"Ave Why!","Points":9346,"X":482,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059495Z"},{"ID":23677,"Name":"BoOmBaa..","Points":10481,"X":435,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059495Z"},{"ID":23678,"Name":"yyyy","Points":10068,"X":490,"Y":345,"Continent":"K34","Bonus":3,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059495Z"},{"ID":23679,"Name":"013. Daro Lew","Points":9835,"X":639,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059495Z"},{"ID":23680,"Name":"Charfa","Points":10226,"X":517,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059495Z"},{"ID":23681,"Name":"Kentin ufam Tobie","Points":10000,"X":388,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059496Z"},{"ID":23682,"Name":"Monetio","Points":10495,"X":443,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059496Z"},{"ID":23683,"Name":"Vataha","Points":10311,"X":554,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059496Z"},{"ID":23684,"Name":"A-029","Points":10168,"X":383,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059496Z"},{"ID":23685,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":574,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059497Z"},{"ID":23687,"Name":"#.06 KWASIOR","Points":10019,"X":651,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059497Z"},{"ID":23688,"Name":"Jednak wolę gofry","Points":7338,"X":439,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059497Z"},{"ID":23689,"Name":"Pobozowisko","Points":10960,"X":395,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059497Z"},{"ID":23690,"Name":"BoOmBaa..","Points":6982,"X":432,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059498Z"},{"ID":23691,"Name":"MRF 001","Points":11911,"X":629,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":118121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059498Z"},{"ID":23692,"Name":"Wioska barbarzyƄska","Points":9782,"X":637,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059498Z"},{"ID":23693,"Name":"042","Points":10237,"X":484,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059498Z"},{"ID":23694,"Name":"#.21 Wioska barbarzyƄska","Points":8063,"X":648,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059498Z"},{"ID":23695,"Name":"Owp Konfederacja","Points":9278,"X":595,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059499Z"},{"ID":23696,"Name":"017 181","Points":10474,"X":352,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059499Z"},{"ID":23697,"Name":"Bagdad","Points":9976,"X":499,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059499Z"},{"ID":23698,"Name":"A0311","Points":10083,"X":346,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059499Z"},{"ID":23699,"Name":"A0151","Points":10362,"X":348,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0595Z"},{"ID":23700,"Name":"Ręcznik do zmiany","Points":10160,"X":372,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0595Z"},{"ID":23701,"Name":"131...centr","Points":10237,"X":459,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0595Z"},{"ID":23702,"Name":"off 100 %","Points":10251,"X":361,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0595Z"},{"ID":23703,"Name":"A READY","Points":10160,"X":595,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059501Z"},{"ID":23704,"Name":"AB13 Szkocja","Points":4176,"X":377,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":483145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059501Z"},{"ID":23705,"Name":"Ave Why!","Points":10495,"X":460,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059501Z"},{"ID":23706,"Name":"XXXX","Points":10108,"X":496,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059501Z"},{"ID":23707,"Name":"Flinii","Points":6303,"X":632,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059501Z"},{"ID":23709,"Name":"075","Points":9388,"X":437,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059502Z"},{"ID":23710,"Name":"MojeDnoToWaszSzczyt","Points":10083,"X":561,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059502Z"},{"ID":23711,"Name":"003","Points":7880,"X":376,"Y":415,"Continent":"K43","Bonus":9,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059502Z"},{"ID":23712,"Name":"Dzikie wsparcie","Points":9694,"X":468,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059502Z"},{"ID":23713,"Name":"DajankA 08","Points":10362,"X":355,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059503Z"},{"ID":23715,"Name":"A0107","Points":10362,"X":352,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059503Z"},{"ID":23716,"Name":"018 017","Points":10001,"X":539,"Y":355,"Continent":"K35","Bonus":7,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059503Z"},{"ID":23717,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":565,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059503Z"},{"ID":23718,"Name":"Ave Why!","Points":10019,"X":472,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059504Z"},{"ID":23719,"Name":"009 181","Points":10049,"X":352,"Y":506,"Continent":"K53","Bonus":6,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059504Z"},{"ID":23720,"Name":"058","Points":9272,"X":651,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059504Z"},{"ID":23721,"Name":"027 VW GD --016--","Points":4495,"X":370,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059504Z"},{"ID":23722,"Name":"007...PƁD_Ogarniamy","Points":10559,"X":456,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059505Z"},{"ID":23723,"Name":"Stany","Points":4985,"X":372,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059505Z"},{"ID":23724,"Name":"BEZDZIETNY KAWALER","Points":5957,"X":414,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059505Z"},{"ID":23725,"Name":"Lord Lord Franek .#138","Points":10143,"X":518,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059505Z"},{"ID":23726,"Name":"002 MONETKI","Points":10019,"X":648,"Y":485,"Continent":"K46","Bonus":2,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059506Z"},{"ID":23727,"Name":".achim.","Points":10311,"X":527,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059506Z"},{"ID":23728,"Name":"Wioska barbarzyƄska","Points":4230,"X":497,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059506Z"},{"ID":23729,"Name":"Ave Why!","Points":8554,"X":497,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059506Z"},{"ID":23730,"Name":"Szlachcic","Points":10083,"X":349,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059506Z"},{"ID":23731,"Name":"Kentin ufam Tobie","Points":10000,"X":350,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059507Z"},{"ID":23732,"Name":"009","Points":10237,"X":483,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059507Z"},{"ID":23733,"Name":"Maszlug Stolica","Points":12154,"X":366,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059507Z"},{"ID":23734,"Name":"Mandarynki1","Points":10311,"X":457,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059508Z"},{"ID":23735,"Name":"Osada koczownikĂłw","Points":10218,"X":557,"Y":356,"Continent":"K35","Bonus":1,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059508Z"},{"ID":23736,"Name":"#.03 AVEWiking","Points":10019,"X":652,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059508Z"},{"ID":23737,"Name":"Ręcznik do zmiany","Points":10160,"X":374,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059508Z"},{"ID":23738,"Name":"Lord Lord Franek .#045","Points":9976,"X":516,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059509Z"},{"ID":23739,"Name":"Joker pozdrawia ;)","Points":7213,"X":426,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059509Z"},{"ID":23740,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8817,"X":538,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059509Z"},{"ID":23741,"Name":"K02..","Points":9522,"X":367,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059509Z"},{"ID":23742,"Name":"Ulmus glabra","Points":8669,"X":503,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05951Z"},{"ID":23743,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05951Z"},{"ID":23744,"Name":"B.049","Points":10000,"X":650,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05951Z"},{"ID":23745,"Name":"A013","Points":10168,"X":581,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05951Z"},{"ID":23746,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059511Z"},{"ID":23748,"Name":"Mandarynki 3","Points":8440,"X":459,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059511Z"},{"ID":23749,"Name":"Wioska Don Kargul","Points":9060,"X":349,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":3529695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059511Z"},{"ID":23750,"Name":"0252","Points":10160,"X":541,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059511Z"},{"ID":23751,"Name":"KUZYN REMONCIARZ","Points":4553,"X":427,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059512Z"},{"ID":23753,"Name":"Avanti!","Points":9950,"X":347,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059512Z"},{"ID":23754,"Name":"Pobozowisko","Points":10951,"X":388,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059512Z"},{"ID":23755,"Name":"060","Points":4696,"X":355,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059513Z"},{"ID":23756,"Name":"Alicization 3","Points":9673,"X":459,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059513Z"},{"ID":23757,"Name":"045|| Vulpecula","Points":10160,"X":501,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059513Z"},{"ID":23758,"Name":"B.001","Points":10000,"X":651,"Y":514,"Continent":"K56","Bonus":8,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059513Z"},{"ID":23759,"Name":"Szlachcic","Points":10237,"X":582,"Y":485,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059513Z"},{"ID":23760,"Name":"Kentin ufam Tobie","Points":9440,"X":358,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059514Z"},{"ID":23761,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":526,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059514Z"},{"ID":23762,"Name":"off 100 %","Points":8690,"X":359,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059514Z"},{"ID":23763,"Name":"psycha sitting","Points":10311,"X":453,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059514Z"},{"ID":23764,"Name":"- 227 - RR","Points":10000,"X":596,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059515Z"},{"ID":23765,"Name":"North Barba 027","Points":9899,"X":428,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059515Z"},{"ID":23766,"Name":"Wioska barbarzyƄska 024","Points":7244,"X":498,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059515Z"},{"ID":23767,"Name":"0476","Points":9398,"X":517,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059515Z"},{"ID":23768,"Name":"009","Points":9993,"X":357,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059516Z"},{"ID":23769,"Name":"Mniejsze zƂo 0079","Points":10887,"X":389,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059516Z"},{"ID":23770,"Name":"900","Points":10233,"X":645,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059516Z"},{"ID":23771,"Name":"134","Points":5522,"X":482,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059516Z"},{"ID":23772,"Name":"No. 2","Points":9201,"X":477,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059517Z"},{"ID":23773,"Name":"Ave Why!","Points":9809,"X":475,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059517Z"},{"ID":23774,"Name":"A0226","Points":10362,"X":346,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059517Z"},{"ID":23775,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":560,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059517Z"},{"ID":23776,"Name":"010...CENTR_FOX","Points":10218,"X":462,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059518Z"},{"ID":23777,"Name":"Brat447","Points":10134,"X":348,"Y":506,"Continent":"K53","Bonus":8,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059518Z"},{"ID":23778,"Name":"A002","Points":9861,"X":474,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059518Z"},{"ID":23779,"Name":"SoƂtys Twojej Wsi","Points":9744,"X":401,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059518Z"},{"ID":23780,"Name":"ave why!","Points":9967,"X":447,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059518Z"},{"ID":23781,"Name":"Jehu_Kingdom_22","Points":7900,"X":649,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059519Z"},{"ID":23782,"Name":"#.31 Wioska grunwald45","Points":10019,"X":653,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059519Z"},{"ID":23783,"Name":"Jestem Poza Kontrolą","Points":9778,"X":358,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059519Z"},{"ID":23784,"Name":"Maszlug kolonia VII","Points":9109,"X":366,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059519Z"},{"ID":23785,"Name":"23. Altanka u pompa","Points":9179,"X":375,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05952Z"},{"ID":23786,"Name":"003","Points":10668,"X":642,"Y":557,"Continent":"K56","Bonus":1,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05952Z"},{"ID":23787,"Name":"Jednak wolę gofry","Points":8733,"X":442,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05952Z"},{"ID":23788,"Name":"Szlachcic","Points":10083,"X":353,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05952Z"},{"ID":23789,"Name":"040","Points":10237,"X":485,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059521Z"},{"ID":23790,"Name":"Ręcznik do zmiany","Points":10160,"X":375,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059521Z"},{"ID":23791,"Name":"Odmienny Stan ƚwiadomoƛci","Points":9682,"X":365,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059521Z"},{"ID":23792,"Name":"S_010","Points":10101,"X":503,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059521Z"},{"ID":23793,"Name":"PZ033","Points":9745,"X":654,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059522Z"},{"ID":23794,"Name":"0054","Points":9717,"X":621,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059522Z"},{"ID":23795,"Name":"[148]","Points":9607,"X":633,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059522Z"},{"ID":23796,"Name":"D 008","Points":9428,"X":655,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059522Z"},{"ID":23797,"Name":"0039","Points":8718,"X":418,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059522Z"},{"ID":23799,"Name":"Pobozowisko","Points":10950,"X":393,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059523Z"},{"ID":23800,"Name":"LadyAnimavillis","Points":9861,"X":602,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059523Z"},{"ID":23801,"Name":"Edirne","Points":8246,"X":418,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059523Z"},{"ID":23802,"Name":"Wioska Bochun10","Points":10495,"X":347,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059523Z"},{"ID":23803,"Name":"Szlachcic","Points":4355,"X":436,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059524Z"},{"ID":23804,"Name":"The Game Has Only Just Begun","Points":9976,"X":349,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059524Z"},{"ID":23805,"Name":"08 KsiÄ™ĆŒyc, uĆŒywając motyki","Points":9462,"X":465,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059524Z"},{"ID":23806,"Name":"A046","Points":8111,"X":586,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059524Z"},{"ID":23807,"Name":"Pobozowisko","Points":10971,"X":403,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059525Z"},{"ID":23808,"Name":"Szlachcic","Points":9880,"X":355,"Y":449,"Continent":"K43","Bonus":4,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059525Z"},{"ID":23809,"Name":"Pobozowisko","Points":10971,"X":398,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059525Z"},{"ID":23810,"Name":"085","Points":9706,"X":439,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059525Z"},{"ID":23811,"Name":"Ręcznik do zmiany","Points":9673,"X":375,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059526Z"},{"ID":23812,"Name":"S_012","Points":7326,"X":507,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059526Z"},{"ID":23814,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":571,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059526Z"},{"ID":23815,"Name":"0280","Points":9561,"X":546,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059526Z"},{"ID":23816,"Name":"069","Points":9714,"X":637,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059527Z"},{"ID":23817,"Name":"Kentin ufam Tobie","Points":10495,"X":355,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059527Z"},{"ID":23818,"Name":"A006","Points":9918,"X":601,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059527Z"},{"ID":23819,"Name":"Pobozowisko","Points":10951,"X":397,"Y":612,"Continent":"K63","Bonus":4,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059527Z"},{"ID":23820,"Name":"031","Points":7745,"X":616,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059528Z"},{"ID":23821,"Name":"020","Points":9976,"X":564,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059528Z"},{"ID":23822,"Name":"101","Points":3626,"X":429,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059528Z"},{"ID":23823,"Name":"078 cevelel","Points":10284,"X":638,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059529Z"},{"ID":23824,"Name":"Kentin ufam Tobie","Points":10000,"X":368,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059529Z"},{"ID":23825,"Name":"Szlachcic","Points":8055,"X":424,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059529Z"},{"ID":23826,"Name":"089","Points":7094,"X":438,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059529Z"},{"ID":23827,"Name":"010","Points":8227,"X":425,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05953Z"},{"ID":23828,"Name":"109","Points":7452,"X":475,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05953Z"},{"ID":23829,"Name":"039","Points":9188,"X":546,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05953Z"},{"ID":23830,"Name":"Wioska barbarzyƄska","Points":9080,"X":359,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05953Z"},{"ID":23831,"Name":"A0116","Points":10362,"X":349,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059531Z"},{"ID":23832,"Name":"0001.","Points":10290,"X":475,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059531Z"},{"ID":23833,"Name":"*Loslosos","Points":9761,"X":576,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059531Z"},{"ID":23836,"Name":"Posterunek 001","Points":10178,"X":400,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059531Z"},{"ID":23837,"Name":"007","Points":6653,"X":421,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059531Z"},{"ID":23838,"Name":"- 226 - RR","Points":8300,"X":591,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059532Z"},{"ID":23839,"Name":"c Wronki","Points":7092,"X":396,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059532Z"},{"ID":23840,"Name":"Wioska 2","Points":4718,"X":538,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":849097220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059532Z"},{"ID":23842,"Name":"032","Points":6083,"X":613,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059532Z"},{"ID":23843,"Name":"Oaza 8","Points":9925,"X":405,"Y":380,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059533Z"},{"ID":23845,"Name":"BoOmBaa..hmmm","Points":6575,"X":430,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059533Z"},{"ID":23846,"Name":"A0051","Points":10362,"X":348,"Y":488,"Continent":"K43","Bonus":9,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059533Z"},{"ID":23847,"Name":"Wioska barbarzyƄska","Points":10237,"X":551,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059533Z"},{"ID":23848,"Name":"102","Points":10019,"X":351,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059533Z"},{"ID":23849,"Name":"A003","Points":7269,"X":597,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059534Z"},{"ID":23850,"Name":"110 Wioska barbarzyƄska","Points":10030,"X":539,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059534Z"},{"ID":23851,"Name":"Wioska barbarzyƄska","Points":10364,"X":551,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059534Z"},{"ID":23852,"Name":".achim.","Points":11321,"X":528,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059534Z"},{"ID":23853,"Name":"#005 nazwa","Points":10019,"X":374,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059535Z"},{"ID":23854,"Name":"Jestem Poza Kontrolą","Points":9880,"X":357,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059535Z"},{"ID":23855,"Name":"VN Maes Hughes","Points":9657,"X":465,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059535Z"},{"ID":23856,"Name":"007.","Points":10838,"X":482,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059535Z"},{"ID":23857,"Name":"Grahamek","Points":10068,"X":533,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059536Z"},{"ID":23858,"Name":"sony911","Points":10228,"X":581,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059536Z"},{"ID":23859,"Name":"052 Bethesda","Points":9388,"X":625,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059536Z"},{"ID":23860,"Name":"#.32 Wioska grunwald45.2","Points":4067,"X":653,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059537Z"},{"ID":23861,"Name":"Pobozowisko","Points":3998,"X":386,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059537Z"},{"ID":23862,"Name":"32k$ Grvvyq","Points":10495,"X":639,"Y":556,"Continent":"K56","Bonus":7,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059537Z"},{"ID":23863,"Name":"Wioska","Points":10237,"X":557,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059537Z"},{"ID":23864,"Name":"#042.520|494","Points":9735,"X":639,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059537Z"},{"ID":23865,"Name":"037...CENTRUM_POƁUDNIE","Points":10247,"X":458,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059538Z"},{"ID":23866,"Name":"Kentin ufam Tobie","Points":10316,"X":355,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059538Z"},{"ID":23867,"Name":"31.KaruTown","Points":9267,"X":616,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059538Z"},{"ID":23868,"Name":"71k$ Grvvyq","Points":9349,"X":639,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059538Z"},{"ID":23870,"Name":"032 033","Points":10001,"X":542,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059539Z"},{"ID":23871,"Name":"Szlachcic","Points":8502,"X":415,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059539Z"},{"ID":23872,"Name":"024","Points":10237,"X":487,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059539Z"},{"ID":23874,"Name":"WschĂłd Droga 008","Points":10311,"X":631,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059539Z"},{"ID":23875,"Name":"030 | PALESTINA","Points":9544,"X":637,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05954Z"},{"ID":23876,"Name":"B13","Points":8755,"X":647,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05954Z"},{"ID":23877,"Name":"124","Points":3056,"X":474,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05954Z"},{"ID":23878,"Name":"I#002","Points":9797,"X":598,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05954Z"},{"ID":23879,"Name":"[106]","Points":10143,"X":634,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059541Z"},{"ID":23880,"Name":"009...CENTR_FOX","Points":10495,"X":460,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059541Z"},{"ID":23881,"Name":"Jaaa","Points":10280,"X":618,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059541Z"},{"ID":23883,"Name":"zzzGranica Bledu 08","Points":8872,"X":612,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059541Z"},{"ID":23884,"Name":"The Game Has Only Just Begun","Points":9976,"X":350,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059541Z"},{"ID":23885,"Name":"Dajanka 05","Points":10285,"X":356,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059542Z"},{"ID":23886,"Name":"A021 Goƛć095879 gƂówna","Points":10224,"X":653,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059542Z"},{"ID":23887,"Name":"North Barba 032","Points":9817,"X":423,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059542Z"},{"ID":23888,"Name":"The Game Has Only Just Begun","Points":10040,"X":352,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059542Z"},{"ID":23889,"Name":"kropka..","Points":10096,"X":602,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059543Z"},{"ID":23890,"Name":"A0238","Points":10362,"X":351,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059543Z"},{"ID":23891,"Name":"001","Points":10237,"X":483,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059543Z"},{"ID":23892,"Name":"0027","Points":4804,"X":416,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059543Z"},{"ID":23893,"Name":"Wioska barbarzyƄska","Points":6015,"X":384,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059544Z"},{"ID":23894,"Name":"Avanti!","Points":9950,"X":347,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059544Z"},{"ID":23895,"Name":"-028-","Points":10019,"X":382,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059544Z"},{"ID":23896,"Name":"0058","Points":9825,"X":620,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059544Z"},{"ID":23897,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":384,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059544Z"},{"ID":23898,"Name":"007","Points":10237,"X":491,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059545Z"},{"ID":23899,"Name":"025","Points":9914,"X":468,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059545Z"},{"ID":23900,"Name":"xkikutx","Points":10157,"X":507,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059545Z"},{"ID":23901,"Name":"D04.","Points":6947,"X":367,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059545Z"},{"ID":23902,"Name":"Lord Lord Franek .#001","Points":10235,"X":526,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059546Z"},{"ID":23903,"Name":"WschĂłd Droga 001","Points":10311,"X":644,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059546Z"},{"ID":23904,"Name":"A-015","Points":10168,"X":390,"Y":397,"Continent":"K33","Bonus":1,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059546Z"},{"ID":23905,"Name":"S1Joker","Points":11321,"X":476,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059546Z"},{"ID":23906,"Name":"0477","Points":9752,"X":538,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059547Z"},{"ID":23907,"Name":"A-009","Points":10245,"X":394,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059547Z"},{"ID":23908,"Name":"#066.","Points":9735,"X":621,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059547Z"},{"ID":23910,"Name":"Pobozowisko","Points":10971,"X":402,"Y":618,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059547Z"},{"ID":23911,"Name":"081","Points":6121,"X":356,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059548Z"},{"ID":23912,"Name":"kathare","Points":10030,"X":557,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059548Z"},{"ID":23913,"Name":"Bąk z wanny .","Points":10495,"X":586,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059548Z"},{"ID":23915,"Name":"010","Points":8928,"X":651,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059548Z"},{"ID":23916,"Name":"K34 - [107] Before Land","Points":10259,"X":443,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059549Z"},{"ID":23917,"Name":"Wioska barbarzyƄska","Points":3773,"X":586,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059549Z"},{"ID":23918,"Name":"SoƂtys Twojej Wsi","Points":8977,"X":400,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059549Z"},{"ID":23919,"Name":"Szlachcic","Points":8945,"X":351,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059549Z"},{"ID":23920,"Name":"Dziadostwo Atakuje","Points":2799,"X":453,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698264828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05955Z"},{"ID":23921,"Name":"019","Points":8246,"X":612,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05955Z"},{"ID":23922,"Name":"M181_052","Points":9026,"X":364,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05955Z"},{"ID":23923,"Name":"70k$ Grvvyq","Points":10495,"X":638,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05955Z"},{"ID":23924,"Name":"Pobozowisko","Points":9701,"X":386,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059551Z"},{"ID":23925,"Name":"The Game Has Only Just Begun","Points":9976,"X":351,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059551Z"},{"ID":23926,"Name":"Wioska barbarzyƄska","Points":10221,"X":554,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059551Z"},{"ID":23927,"Name":"a moĆŒe off ? :)","Points":9333,"X":626,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059551Z"},{"ID":23928,"Name":"U-08","Points":5026,"X":586,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059552Z"},{"ID":23929,"Name":"011 nica","Points":9976,"X":567,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059552Z"},{"ID":23930,"Name":"#.16 Wioska barbarzyƄska","Points":10019,"X":651,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059552Z"},{"ID":23931,"Name":"marcovia","Points":8750,"X":372,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059552Z"},{"ID":23932,"Name":"Pobozowisko","Points":4938,"X":382,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059553Z"},{"ID":23933,"Name":"K03..","Points":6894,"X":368,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059553Z"},{"ID":23934,"Name":"Posterunek 003","Points":10178,"X":397,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059553Z"},{"ID":23935,"Name":"M001","Points":7208,"X":650,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059553Z"},{"ID":23936,"Name":"Kentin ufam Tobie","Points":10000,"X":380,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059554Z"},{"ID":23937,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":565,"Y":364,"Continent":"K35","Bonus":5,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059554Z"},{"ID":23938,"Name":"001","Points":9809,"X":359,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059554Z"},{"ID":23939,"Name":"*0029 Baraki","Points":9971,"X":631,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059554Z"},{"ID":23941,"Name":"Lord Lord Franek .#046","Points":9959,"X":535,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059555Z"},{"ID":23942,"Name":"MojeSzczytToTwĂłjDno","Points":10475,"X":510,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059555Z"},{"ID":23943,"Name":"PiekƂo to inni","Points":10495,"X":580,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059555Z"},{"ID":23944,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10083,"X":524,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059555Z"},{"ID":23945,"Name":"Dajanka 03","Points":11321,"X":355,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059556Z"},{"ID":23946,"Name":"Avanti!","Points":9950,"X":347,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059556Z"},{"ID":23947,"Name":"BEZDZIETNY KAWALER","Points":9263,"X":417,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059556Z"},{"ID":23948,"Name":"0478","Points":10252,"X":534,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059556Z"},{"ID":23949,"Name":"030","Points":9678,"X":441,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059557Z"},{"ID":23950,"Name":"122","Points":4909,"X":472,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059557Z"},{"ID":23951,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":567,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059557Z"},{"ID":23952,"Name":"Lord Lord Franek .#019","Points":9960,"X":532,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059557Z"},{"ID":23953,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9829,"X":498,"Y":653,"Continent":"K64","Bonus":3,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059558Z"},{"ID":23954,"Name":"A 016","Points":10362,"X":604,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059558Z"},{"ID":23955,"Name":"BACÓWKA |020|","Points":8472,"X":629,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059558Z"},{"ID":23956,"Name":"A0312","Points":10362,"X":345,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059558Z"},{"ID":23957,"Name":"kathare","Points":10268,"X":553,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059558Z"},{"ID":23958,"Name":"Mexico4","Points":10311,"X":458,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059559Z"},{"ID":23959,"Name":"Magik69","Points":12154,"X":610,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059559Z"},{"ID":23960,"Name":"A 003","Points":10362,"X":605,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059559Z"},{"ID":23961,"Name":"005. Radomiak","Points":9534,"X":501,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059559Z"},{"ID":23962,"Name":"Mandarynki 2","Points":9821,"X":457,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05956Z"},{"ID":23963,"Name":"A003","Points":10311,"X":406,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05956Z"},{"ID":23964,"Name":"017. Londinium","Points":10311,"X":653,"Y":471,"Continent":"K46","Bonus":9,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05956Z"},{"ID":23965,"Name":"Wioska barbarzyƄska","Points":6362,"X":384,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05956Z"},{"ID":23966,"Name":"014","Points":9976,"X":560,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05956Z"},{"ID":23967,"Name":"X-01","Points":7754,"X":595,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059561Z"},{"ID":23968,"Name":"EMERYTOWANY KUZYN","Points":6730,"X":425,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059561Z"},{"ID":23969,"Name":"Wioska barbarzyƄska 022|","Points":9989,"X":497,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059561Z"},{"ID":23970,"Name":"Lord Lord Franek .#020","Points":9959,"X":534,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059561Z"},{"ID":23971,"Name":"LadyAnimavillis","Points":9127,"X":601,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059562Z"},{"ID":23973,"Name":"700","Points":10149,"X":648,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059562Z"},{"ID":23974,"Name":"psycha sitting","Points":10268,"X":446,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059562Z"},{"ID":23975,"Name":"#.22 Wioska barbarzyƄska","Points":8369,"X":649,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059562Z"},{"ID":23976,"Name":"Oww Konfederacja","Points":4700,"X":609,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059563Z"},{"ID":23977,"Name":"113 Wioska barbarzyƄska","Points":10060,"X":543,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059563Z"},{"ID":23979,"Name":"Jednak wolę gofry","Points":9835,"X":436,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059563Z"},{"ID":23980,"Name":"BEZDZIETNY KAWALER :)","Points":6057,"X":411,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059563Z"},{"ID":23981,"Name":"020 181","Points":10634,"X":351,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059563Z"},{"ID":23983,"Name":"Bizy 8","Points":10213,"X":503,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059564Z"},{"ID":23985,"Name":"050 Laval","Points":10108,"X":620,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059564Z"},{"ID":23986,"Name":"Wioska barbarzyƄska","Points":10218,"X":555,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059564Z"},{"ID":23987,"Name":"018 181","Points":10068,"X":356,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059564Z"},{"ID":23988,"Name":"jaaa","Points":10490,"X":636,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059565Z"},{"ID":23989,"Name":"M181_051","Points":9891,"X":363,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059565Z"},{"ID":23990,"Name":"psycha sitting","Points":10009,"X":451,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059565Z"},{"ID":23991,"Name":"kathare","Points":10295,"X":554,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059565Z"},{"ID":23992,"Name":"BEZDZIETNY KAWALER","Points":6355,"X":412,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059566Z"},{"ID":23993,"Name":"Wioska barbarzyƄska","Points":10019,"X":350,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059566Z"},{"ID":23994,"Name":"7.62 mm","Points":2965,"X":379,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059566Z"},{"ID":23995,"Name":"Wioska barbarzyƄska","Points":3056,"X":381,"Y":401,"Continent":"K43","Bonus":3,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059567Z"},{"ID":23996,"Name":"Dajanka 11","Points":7967,"X":360,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059567Z"},{"ID":23997,"Name":"07. Boi","Points":9463,"X":378,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059567Z"},{"ID":23998,"Name":"Owp Konfederacja","Points":5880,"X":596,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059567Z"},{"ID":23999,"Name":"B04","Points":10495,"X":641,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059568Z"},{"ID":24000,"Name":"- 248 - RR","Points":5269,"X":593,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059568Z"},{"ID":24001,"Name":"031","Points":10252,"X":354,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059568Z"},{"ID":24002,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":560,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059568Z"},{"ID":24003,"Name":"*INTERTWINED*","Points":9711,"X":509,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059569Z"},{"ID":24004,"Name":"043...CENTRUM POƁ","Points":10322,"X":458,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059569Z"},{"ID":24005,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":573,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059569Z"},{"ID":24006,"Name":"No. 3","Points":9201,"X":478,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059569Z"},{"ID":24007,"Name":"Kentin ufam Tobie","Points":10495,"X":358,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05957Z"},{"ID":24008,"Name":"001 Montuje Plisy","Points":10001,"X":541,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05957Z"},{"ID":24009,"Name":"psycha sitting","Points":10178,"X":456,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.05957Z"},{"ID":24010,"Name":"A-016","Points":10168,"X":392,"Y":393,"Continent":"K33","Bonus":5,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059571Z"},{"ID":24011,"Name":"Kentin ufam Tobie","Points":10495,"X":351,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059571Z"},{"ID":24012,"Name":"MRF 003","Points":9109,"X":629,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":118121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059571Z"},{"ID":24013,"Name":"Kentin ufam Tobie","Points":10000,"X":355,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059571Z"},{"ID":24014,"Name":"Kentin ufam Tobie","Points":10360,"X":357,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059571Z"},{"ID":24015,"Name":"Yogi","Points":10019,"X":545,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059572Z"},{"ID":24016,"Name":"148...ksiÄ…ĆŒÄ™ plemienia","Points":8104,"X":452,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059572Z"},{"ID":24017,"Name":"Wioska barbarzyƄska","Points":8786,"X":566,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059572Z"},{"ID":24018,"Name":"A-011","Points":10168,"X":392,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059572Z"},{"ID":24020,"Name":"#0028 barbarzyƄska","Points":10178,"X":471,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059573Z"},{"ID":24021,"Name":"SSJ 068","Points":9427,"X":518,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059573Z"},{"ID":24022,"Name":"EMERYTOWANY KUZYN","Points":7986,"X":425,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059573Z"},{"ID":24023,"Name":"#0022 barbarzyƄska","Points":10178,"X":470,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059573Z"},{"ID":24024,"Name":"0479","Points":10083,"X":519,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059574Z"},{"ID":24025,"Name":"310","Points":9704,"X":648,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059574Z"},{"ID":24026,"Name":"Maszlug kolonia IV","Points":9920,"X":366,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059574Z"},{"ID":24028,"Name":"The Game Has Only Just Begun","Points":9976,"X":346,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059574Z"},{"ID":24029,"Name":"017. Pepe","Points":10237,"X":501,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059574Z"},{"ID":24030,"Name":"Kentin ufam Tobie","Points":10000,"X":351,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059575Z"},{"ID":24031,"Name":"010. Fishing","Points":10237,"X":502,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059575Z"},{"ID":24032,"Name":"0460","Points":10252,"X":379,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.059575Z"},{"ID":24033,"Name":"053","Points":9860,"X":649,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090284Z"},{"ID":24034,"Name":"085","Points":9797,"X":642,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090285Z"},{"ID":24035,"Name":"Lord Lord Franek .#216","Points":9250,"X":509,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090285Z"},{"ID":24036,"Name":"055","Points":10160,"X":647,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090286Z"},{"ID":24037,"Name":"D02..","Points":9160,"X":364,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090286Z"},{"ID":24039,"Name":"JawmaG P","Points":10019,"X":620,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090286Z"},{"ID":24040,"Name":"jaaa","Points":10495,"X":633,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090287Z"},{"ID":24041,"Name":"zzz Magiorkowy kleks","Points":11824,"X":618,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090287Z"},{"ID":24042,"Name":"Valhalla A6","Points":5266,"X":373,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090288Z"},{"ID":24043,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":526,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090288Z"},{"ID":24045,"Name":"Ręcznik do zmiany","Points":9948,"X":374,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090289Z"},{"ID":24046,"Name":"North Barba 030","Points":10454,"X":425,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090289Z"},{"ID":24047,"Name":"RTS 15","Points":9833,"X":587,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09029Z"},{"ID":24048,"Name":"Oww Konfederacja","Points":6800,"X":608,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09029Z"},{"ID":24049,"Name":"B19","Points":10019,"X":647,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09029Z"},{"ID":24050,"Name":"Pobozowisko","Points":7753,"X":382,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090291Z"},{"ID":24051,"Name":"003 cho1sen","Points":9976,"X":570,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090291Z"},{"ID":24052,"Name":"045...Centrum zach","Points":10262,"X":457,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090293Z"},{"ID":24053,"Name":"BEZDZIETNY KAWALER","Points":4006,"X":419,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090294Z"},{"ID":24054,"Name":"- 053 - RR","Points":10000,"X":590,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090294Z"},{"ID":24055,"Name":"makelovenotwar6","Points":9127,"X":384,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090295Z"},{"ID":24056,"Name":"A0069","Points":10362,"X":346,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090295Z"},{"ID":24057,"Name":"Wioska barbarzyƄska","Points":10561,"X":552,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090295Z"},{"ID":24058,"Name":"jaaa","Points":10495,"X":635,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090296Z"},{"ID":24059,"Name":"038...CENTRUM","Points":10336,"X":458,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090296Z"},{"ID":24060,"Name":"PiekƂo to inni","Points":10495,"X":582,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090297Z"},{"ID":24061,"Name":"Oww Konfederacja","Points":6543,"X":607,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090297Z"},{"ID":24062,"Name":"Posterunek 004","Points":10178,"X":399,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090297Z"},{"ID":24063,"Name":"Wioska barbarzyƄska","Points":10226,"X":552,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090298Z"},{"ID":24064,"Name":"psycha sitting","Points":10311,"X":449,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090298Z"},{"ID":24065,"Name":"040","Points":9740,"X":643,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090298Z"},{"ID":24066,"Name":"MELISKA","Points":1992,"X":358,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090298Z"},{"ID":24067,"Name":".achim.","Points":10080,"X":519,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090299Z"},{"ID":24068,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9875,"X":527,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090299Z"},{"ID":24069,"Name":"Pobozowisko","Points":9051,"X":392,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090299Z"},{"ID":24070,"Name":"011","Points":10237,"X":481,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0903Z"},{"ID":24071,"Name":"0006","Points":10211,"X":588,"Y":372,"Continent":"K35","Bonus":8,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0903Z"},{"ID":24072,"Name":"Ręcznik do zmiany","Points":8899,"X":373,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0903Z"},{"ID":24073,"Name":"Denger 19","Points":9643,"X":368,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090301Z"},{"ID":24074,"Name":"Sangeda","Points":7277,"X":539,"Y":429,"Continent":"K45","Bonus":0,"PlayerID":848986287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090301Z"},{"ID":24075,"Name":"A002","Points":10168,"X":588,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090301Z"},{"ID":24076,"Name":"Wioska barbarzyƄska","Points":8970,"X":646,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090302Z"},{"ID":24077,"Name":"2.6","Points":9899,"X":403,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090302Z"},{"ID":24079,"Name":"M181_050","Points":10229,"X":367,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090302Z"},{"ID":24080,"Name":"Skazany Na Instynkt","Points":9880,"X":370,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090303Z"},{"ID":24081,"Name":"I#037","Points":10019,"X":596,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090304Z"},{"ID":24082,"Name":"007-Dzieci","Points":4376,"X":432,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090304Z"},{"ID":24083,"Name":"#0010 barbarzyƄska","Points":10178,"X":464,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090305Z"},{"ID":24084,"Name":"Oww Konfederacja","Points":10140,"X":608,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090305Z"},{"ID":24085,"Name":"0063 9 RakĂłwqqqqqqqqqqqqqqqqqqqq","Points":10418,"X":445,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090306Z"},{"ID":24086,"Name":"0480","Points":10019,"X":516,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090306Z"},{"ID":24087,"Name":"- 250 - RR","Points":10000,"X":594,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090306Z"},{"ID":24088,"Name":"061 |","Points":9747,"X":647,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090306Z"},{"ID":24089,"Name":"Odmienny Stan ƚwiadomoƛci","Points":8215,"X":367,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090307Z"},{"ID":24090,"Name":"A002","Points":9933,"X":405,"Y":620,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090307Z"},{"ID":24091,"Name":"Lord Lord Franek .#228","Points":8214,"X":515,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090307Z"},{"ID":24092,"Name":"044|| Lacerta","Points":10495,"X":502,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090308Z"},{"ID":24093,"Name":"054","Points":4000,"X":606,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090308Z"},{"ID":24094,"Name":"014...PƁD","Points":10221,"X":455,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090308Z"},{"ID":24095,"Name":"- 007 - RR","Points":10000,"X":587,"Y":622,"Continent":"K65","Bonus":8,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090309Z"},{"ID":24097,"Name":"#0026 barbarzyƄska","Points":10178,"X":471,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090309Z"},{"ID":24098,"Name":"Jestem Poza Kontrolą","Points":8038,"X":352,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090309Z"},{"ID":24099,"Name":"*Lulu","Points":9761,"X":574,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09031Z"},{"ID":24101,"Name":"Lord Lord Franek .#111","Points":9962,"X":505,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09031Z"},{"ID":24102,"Name":"EMERYTOWANY KUZYN","Points":7094,"X":434,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09031Z"},{"ID":24103,"Name":"Dunharrow","Points":7950,"X":500,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090311Z"},{"ID":24104,"Name":"Wioska barbarzyƄska","Points":10221,"X":549,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090311Z"},{"ID":24105,"Name":"058","Points":10129,"X":403,"Y":506,"Continent":"K54","Bonus":0,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090312Z"},{"ID":24106,"Name":"Wioska 004","Points":10168,"X":390,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090312Z"},{"ID":24108,"Name":"Brat447","Points":10057,"X":347,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090312Z"},{"ID":24109,"Name":"027","Points":10149,"X":652,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090313Z"},{"ID":24110,"Name":"The Game Has Only Just Begun","Points":9053,"X":347,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090313Z"},{"ID":24111,"Name":"Pobozowisko","Points":7743,"X":388,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090314Z"},{"ID":24112,"Name":"011 | PALESTINA","Points":9544,"X":635,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090314Z"},{"ID":24113,"Name":"Wioska barbarzyƄska","Points":10362,"X":363,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090314Z"},{"ID":24114,"Name":"028","Points":8963,"X":437,"Y":639,"Continent":"K64","Bonus":9,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090316Z"},{"ID":24115,"Name":"0481","Points":10495,"X":540,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090316Z"},{"ID":24116,"Name":"K34 - [032] Before Land","Points":10259,"X":445,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090317Z"},{"ID":24117,"Name":"I#036","Points":9797,"X":605,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090317Z"},{"ID":24118,"Name":"SoƂtys Wsi Enaor1990","Points":9372,"X":407,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090317Z"},{"ID":24119,"Name":"Wioska Jaro2","Points":8401,"X":370,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090317Z"},{"ID":24120,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8825,"X":548,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090318Z"},{"ID":24121,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":520,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090318Z"},{"ID":24122,"Name":"psycha sitting","Points":10178,"X":459,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090318Z"},{"ID":24123,"Name":"Wioska barbarzyƄska","Points":9724,"X":648,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090319Z"},{"ID":24124,"Name":"off 100 %","Points":7714,"X":362,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090319Z"},{"ID":24125,"Name":"Lord Lord Franek .#002","Points":10068,"X":528,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09032Z"},{"ID":24126,"Name":"Qzuri","Points":10311,"X":493,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09032Z"},{"ID":24127,"Name":"Kentin ufam Tobie","Points":10559,"X":357,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09032Z"},{"ID":24128,"Name":"Winter is coming","Points":10311,"X":505,"Y":585,"Continent":"K55","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090321Z"},{"ID":24129,"Name":"Avanti!","Points":9950,"X":344,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090321Z"},{"ID":24130,"Name":"0011","Points":10252,"X":581,"Y":634,"Continent":"K65","Bonus":4,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090322Z"},{"ID":24131,"Name":"#.37 Wioska barbarzyƄska","Points":2930,"X":651,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090322Z"},{"ID":24132,"Name":"Kentin ufam Tobie","Points":10559,"X":356,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090322Z"},{"ID":24133,"Name":"jan Dzik I","Points":8727,"X":643,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090323Z"},{"ID":24134,"Name":"deff 100 %","Points":6686,"X":357,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090323Z"},{"ID":24135,"Name":"D 007","Points":10236,"X":651,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090323Z"},{"ID":24136,"Name":"0020","Points":10211,"X":591,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090324Z"},{"ID":24137,"Name":"Odmienny Stan ƚwiadomoƛci","Points":8589,"X":366,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090324Z"},{"ID":24139,"Name":"0063 b14 WisƂa","Points":10083,"X":455,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090325Z"},{"ID":24140,"Name":"-002-","Points":9241,"X":380,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090325Z"},{"ID":24141,"Name":"009","Points":10818,"X":650,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090325Z"},{"ID":24142,"Name":"W 04","Points":9721,"X":644,"Y":451,"Continent":"K46","Bonus":5,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090327Z"},{"ID":24143,"Name":"Ave Why!","Points":9809,"X":475,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090328Z"},{"ID":24144,"Name":"cc spoko pobawimy się do jutra","Points":9045,"X":408,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090328Z"},{"ID":24145,"Name":"PodziękowaƂ 7","Points":9622,"X":417,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090328Z"},{"ID":24146,"Name":"053. Caprae","Points":9355,"X":647,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090329Z"},{"ID":24147,"Name":"Wioska Bochun10","Points":10311,"X":345,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090329Z"},{"ID":24148,"Name":"040","Points":9351,"X":624,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090329Z"},{"ID":24150,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":527,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09033Z"},{"ID":24151,"Name":"Wioska barbarzyƄska","Points":4863,"X":354,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09033Z"},{"ID":24152,"Name":"005","Points":6583,"X":374,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09033Z"},{"ID":24153,"Name":"078","Points":10495,"X":620,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090331Z"},{"ID":24154,"Name":"0011","Points":8815,"X":611,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090331Z"},{"ID":24155,"Name":"hed","Points":4816,"X":610,"Y":611,"Continent":"K66","Bonus":4,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090331Z"},{"ID":24156,"Name":"c 011 Oaza 7","Points":10160,"X":411,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090332Z"},{"ID":24157,"Name":"Myk i do kieszonki","Points":9799,"X":361,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090332Z"},{"ID":24158,"Name":"047","Points":9137,"X":654,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090332Z"},{"ID":24159,"Name":"Ręcznik do zmiany","Points":10160,"X":376,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090333Z"},{"ID":24160,"Name":"ObrzeĆŒa 04","Points":11550,"X":544,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090333Z"},{"ID":24161,"Name":"Ręcznik do zmiany","Points":9858,"X":372,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090333Z"},{"ID":24162,"Name":"4AA","Points":9017,"X":357,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090333Z"},{"ID":24163,"Name":"12 Kuba 3 zero zero 7","Points":9350,"X":464,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090334Z"},{"ID":24164,"Name":"North Barba 023","Points":9761,"X":422,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090334Z"},{"ID":24165,"Name":"Jestem Poza Kontrolą","Points":7476,"X":353,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090335Z"},{"ID":24166,"Name":"Maszlug kolonia X","Points":8666,"X":368,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090335Z"},{"ID":24167,"Name":"ladyanima","Points":9083,"X":511,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090335Z"},{"ID":24168,"Name":"002","Points":10523,"X":643,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090336Z"},{"ID":24169,"Name":"A0063","Points":10362,"X":346,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090336Z"},{"ID":24170,"Name":"Vasteroy135","Points":5564,"X":362,"Y":431,"Continent":"K43","Bonus":8,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090338Z"},{"ID":24171,"Name":"#043.521|495","Points":9735,"X":640,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090339Z"},{"ID":24172,"Name":"A015","Points":10211,"X":581,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090339Z"},{"ID":24173,"Name":"x010","Points":10495,"X":358,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090339Z"},{"ID":24174,"Name":"M005","Points":6638,"X":650,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09034Z"},{"ID":24175,"Name":"A005","Points":10168,"X":585,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09034Z"},{"ID":24176,"Name":"sony911","Points":10220,"X":579,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09034Z"},{"ID":24177,"Name":"2.8","Points":10503,"X":393,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090341Z"},{"ID":24178,"Name":"PiekƂo to inni","Points":10495,"X":575,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090341Z"},{"ID":24179,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9899,"X":527,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090341Z"},{"ID":24180,"Name":"024","Points":9990,"X":465,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090342Z"},{"ID":24181,"Name":"011","Points":10141,"X":652,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090342Z"},{"ID":24182,"Name":"109","Points":10311,"X":584,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090342Z"},{"ID":24183,"Name":"116 Murayama","Points":4800,"X":648,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090343Z"},{"ID":24184,"Name":"024 Piwo moje paliwo","Points":5593,"X":396,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090343Z"},{"ID":24185,"Name":"300","Points":9643,"X":646,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090343Z"},{"ID":24186,"Name":"Swarzędz","Points":11548,"X":644,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090344Z"},{"ID":24187,"Name":"PiekƂo to inni","Points":9309,"X":578,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090344Z"},{"ID":24188,"Name":"***002***","Points":6895,"X":503,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":8843774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090345Z"},{"ID":24189,"Name":"119","Points":7807,"X":626,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090345Z"},{"ID":24190,"Name":"Szlachcic","Points":10237,"X":422,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090346Z"},{"ID":24191,"Name":"K34 - [144] Before Land","Points":9783,"X":451,"Y":355,"Continent":"K34","Bonus":1,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090346Z"},{"ID":24192,"Name":"027","Points":9761,"X":640,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090346Z"},{"ID":24193,"Name":"Ręcznik do zmiany","Points":10160,"X":372,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090347Z"},{"ID":24194,"Name":"P025 Maple Kush","Points":9761,"X":655,"Y":519,"Continent":"K56","Bonus":7,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090347Z"},{"ID":24195,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":567,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090347Z"},{"ID":24196,"Name":"013","Points":8061,"X":428,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090348Z"},{"ID":24197,"Name":"Punta Cana 3","Points":10311,"X":456,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090349Z"},{"ID":24198,"Name":"Pobozowisko","Points":7275,"X":387,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09035Z"},{"ID":24199,"Name":"Darmowe przeprowadzki","Points":9553,"X":467,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09035Z"},{"ID":24200,"Name":"006","Points":3352,"X":376,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09035Z"},{"ID":24201,"Name":"0079 wojsƂawice","Points":10054,"X":446,"Y":441,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090351Z"},{"ID":24202,"Name":"a moĆŒe off ? :)","Points":9356,"X":642,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090351Z"},{"ID":24203,"Name":"002 cesarok","Points":9976,"X":569,"Y":634,"Continent":"K65","Bonus":4,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090352Z"},{"ID":24204,"Name":"[021]","Points":1969,"X":449,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090352Z"},{"ID":24205,"Name":"- 243 - RR","Points":10000,"X":595,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090352Z"},{"ID":24206,"Name":"Jaaa","Points":10478,"X":606,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090352Z"},{"ID":24207,"Name":"BEZDZIETNY KAWALER","Points":5042,"X":415,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090353Z"},{"ID":24208,"Name":"|A| Dimstair","Points":10495,"X":481,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090353Z"},{"ID":24209,"Name":"A-032","Points":10168,"X":394,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090353Z"},{"ID":24210,"Name":"Wioska barbarzyƄska","Points":2349,"X":511,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":9140898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090354Z"},{"ID":24211,"Name":"2.1","Points":10168,"X":386,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090354Z"},{"ID":24212,"Name":"Wioska barbarzyƄska","Points":6267,"X":364,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090354Z"},{"ID":24213,"Name":"DajankA 10","Points":10160,"X":357,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090355Z"},{"ID":24214,"Name":"074. Mursa","Points":10252,"X":624,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090355Z"},{"ID":24215,"Name":"0024 MzM","Points":9258,"X":624,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090355Z"},{"ID":24216,"Name":"jaaa","Points":10289,"X":640,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090356Z"},{"ID":24217,"Name":"0482","Points":9761,"X":518,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090356Z"},{"ID":24218,"Name":"kathare","Points":9914,"X":557,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090356Z"},{"ID":24219,"Name":"S_003","Points":11965,"X":509,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090357Z"},{"ID":24220,"Name":"035 Vattweir","Points":10058,"X":623,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090357Z"},{"ID":24221,"Name":"A-017","Points":10168,"X":390,"Y":398,"Continent":"K33","Bonus":7,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090357Z"},{"ID":24223,"Name":"PiekƂo to inni","Points":10495,"X":568,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090358Z"},{"ID":24224,"Name":"|A| Darkdale","Points":10495,"X":479,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090358Z"},{"ID":24225,"Name":"kathare","Points":10218,"X":550,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090358Z"},{"ID":24226,"Name":"VN Artemisia","Points":9639,"X":464,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09036Z"},{"ID":24227,"Name":"Ręcznik do zmiany","Points":10160,"X":372,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090361Z"},{"ID":24228,"Name":"Zorg","Points":6826,"X":371,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090361Z"},{"ID":24229,"Name":"B.050","Points":10000,"X":654,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090361Z"},{"ID":24230,"Name":"0001. HMS Prince Royal (1663)","Points":9809,"X":460,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090362Z"},{"ID":24231,"Name":"Sony 911","Points":10205,"X":584,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090362Z"},{"ID":24232,"Name":"028","Points":10365,"X":655,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090362Z"},{"ID":24233,"Name":"A0038","Points":10362,"X":384,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090363Z"},{"ID":24234,"Name":"Skazany Na Instynkt","Points":9816,"X":367,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090363Z"},{"ID":24235,"Name":"041","Points":10401,"X":445,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090363Z"},{"ID":24236,"Name":"jaaa","Points":10351,"X":637,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090364Z"},{"ID":24237,"Name":"A 006","Points":6191,"X":609,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090364Z"},{"ID":24238,"Name":"025","Points":8719,"X":615,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090365Z"},{"ID":24239,"Name":"Jednak wolę gofry","Points":10559,"X":471,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090365Z"},{"ID":24240,"Name":"Wioska Bochun10","Points":10311,"X":347,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090365Z"},{"ID":24241,"Name":"33k$ Grvvyq","Points":10387,"X":639,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090365Z"},{"ID":24242,"Name":"Jednak wolę gofry","Points":7919,"X":438,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090366Z"},{"ID":24243,"Name":"Pobozowisko","Points":10092,"X":391,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090366Z"},{"ID":24244,"Name":"008.","Points":10559,"X":486,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090367Z"},{"ID":24245,"Name":"The Game Has Only Just Begun","Points":10240,"X":351,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090367Z"},{"ID":24246,"Name":"sony911","Points":10228,"X":580,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090368Z"},{"ID":24247,"Name":"Kentin ufam Tobie","Points":10000,"X":349,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090368Z"},{"ID":24248,"Name":"K34 - [050] Before Land","Points":9506,"X":442,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090368Z"},{"ID":24249,"Name":"jaaa","Points":10495,"X":630,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090369Z"},{"ID":24250,"Name":"SSJ 059","Points":9555,"X":511,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090369Z"},{"ID":24251,"Name":"Darmowe przeprowadzki","Points":9656,"X":467,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090369Z"},{"ID":24252,"Name":"Lord Arsey KING","Points":10285,"X":583,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09037Z"},{"ID":24253,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":529,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09037Z"},{"ID":24254,"Name":"#0021 barbarzyƄska","Points":10178,"X":470,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090372Z"},{"ID":24255,"Name":"Dajanka 14","Points":6658,"X":358,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090372Z"},{"ID":24256,"Name":"B.003","Points":10000,"X":650,"Y":507,"Continent":"K56","Bonus":2,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090372Z"},{"ID":24257,"Name":"Pobozowisko","Points":10960,"X":384,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090373Z"},{"ID":24258,"Name":"*4626* Dzielnica cesarska","Points":10287,"X":640,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090373Z"},{"ID":24259,"Name":"Kentin ufam Tobie","Points":7352,"X":356,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090373Z"},{"ID":24260,"Name":"Jednak wolę gofry","Points":10130,"X":444,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090374Z"},{"ID":24261,"Name":"Wioska barbarzyƄska","Points":10218,"X":555,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090374Z"},{"ID":24262,"Name":"022 181","Points":9015,"X":349,"Y":510,"Continent":"K53","Bonus":6,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090374Z"},{"ID":24263,"Name":"Piwna 17","Points":7701,"X":626,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090375Z"},{"ID":24264,"Name":"Nahrawan","Points":9719,"X":435,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090375Z"},{"ID":24265,"Name":"Jednak wolę gofry","Points":9835,"X":431,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090375Z"},{"ID":24266,"Name":"Pobozowisko","Points":5824,"X":384,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090376Z"},{"ID":24267,"Name":"042","Points":10311,"X":649,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090376Z"},{"ID":24268,"Name":"Owp Konfederacja","Points":5782,"X":600,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090376Z"},{"ID":24269,"Name":"OgĂłrkowy baron","Points":9835,"X":405,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090377Z"},{"ID":24270,"Name":"kathare","Points":10224,"X":552,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090377Z"},{"ID":24271,"Name":"046.","Points":7900,"X":407,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090378Z"},{"ID":24272,"Name":"West","Points":6183,"X":624,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090378Z"},{"ID":24274,"Name":"CSA","Points":8736,"X":511,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090378Z"},{"ID":24275,"Name":"*Leser","Points":9761,"X":574,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090379Z"},{"ID":24276,"Name":"0026","Points":7731,"X":417,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090379Z"},{"ID":24277,"Name":"011|| Aquarius","Points":10019,"X":481,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090379Z"},{"ID":24278,"Name":"037 | PALESTINA","Points":5222,"X":643,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09038Z"},{"ID":24279,"Name":"Alicization 2","Points":9908,"X":455,"Y":649,"Continent":"K64","Bonus":8,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09038Z"},{"ID":24280,"Name":"Jestem Poza Kontrolą","Points":9325,"X":349,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09038Z"},{"ID":24281,"Name":"#0003 barbarzyƄska","Points":10178,"X":467,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09038Z"},{"ID":24282,"Name":"Jaaa","Points":10269,"X":622,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090382Z"},{"ID":24283,"Name":"025 Legio I Claudia Pia Fidelis","Points":4829,"X":651,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090382Z"},{"ID":24284,"Name":"kathare","Points":10336,"X":556,"Y":640,"Continent":"K65","Bonus":8,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090383Z"},{"ID":24286,"Name":"*4621* Pierwszy gol","Points":10287,"X":643,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090383Z"},{"ID":24287,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":568,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090383Z"},{"ID":24288,"Name":"PiekƂo to inni","Points":9764,"X":576,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090383Z"},{"ID":24289,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":533,"Continent":"K53","Bonus":6,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090384Z"},{"ID":24290,"Name":"Z barba 010","Points":10495,"X":406,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090384Z"},{"ID":24291,"Name":"Lord Lord Franek .#013","Points":9960,"X":520,"Y":345,"Continent":"K35","Bonus":7,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090384Z"},{"ID":24292,"Name":"0483","Points":10362,"X":538,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090385Z"},{"ID":24293,"Name":"Happy New Year 2k23","Points":8798,"X":595,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090385Z"},{"ID":24294,"Name":"Mniejsze zƂo 0029","Points":7955,"X":345,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090385Z"},{"ID":24295,"Name":"Wioska","Points":7737,"X":351,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090386Z"},{"ID":24296,"Name":"001 181","Points":10495,"X":356,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090386Z"},{"ID":24297,"Name":"18. A kit go wie","Points":11656,"X":508,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090386Z"},{"ID":24298,"Name":"Pobozowisko","Points":10952,"X":393,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090387Z"},{"ID":24299,"Name":"Wioska barbarzyƄska","Points":8794,"X":629,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090387Z"},{"ID":24300,"Name":"Jestem Poza Kontrolą","Points":8962,"X":350,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090387Z"},{"ID":24301,"Name":"K34 - [053] Before Land","Points":7299,"X":441,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090388Z"},{"ID":24302,"Name":"Tomall78","Points":9654,"X":635,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090388Z"},{"ID":24303,"Name":"Lord Lord Franek .#010","Points":10244,"X":535,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090388Z"},{"ID":24304,"Name":"BACÓWKA |022|","Points":7938,"X":631,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090389Z"},{"ID":24305,"Name":"061","Points":10160,"X":648,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090389Z"},{"ID":24306,"Name":"029","Points":10237,"X":478,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090389Z"},{"ID":24307,"Name":"0061","Points":9993,"X":418,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09039Z"},{"ID":24308,"Name":"A 002","Points":10362,"X":610,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09039Z"},{"ID":24309,"Name":"026","Points":12154,"X":652,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090391Z"},{"ID":24310,"Name":"Myk i do kieszonki","Points":9799,"X":355,"Y":561,"Continent":"K53","Bonus":3,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090391Z"},{"ID":24311,"Name":"002 181","Points":10476,"X":355,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090391Z"},{"ID":24312,"Name":"Wioska barbarzyƄska","Points":10118,"X":364,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090392Z"},{"ID":24313,"Name":"049. Ardwen","Points":10595,"X":637,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090393Z"},{"ID":24314,"Name":"Avanti!","Points":9950,"X":345,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090393Z"},{"ID":24315,"Name":"The Game Has Only Just Begun","Points":9976,"X":349,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090394Z"},{"ID":24316,"Name":"0077","Points":10083,"X":532,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090394Z"},{"ID":24317,"Name":"Lord Lord Franek .#021","Points":9957,"X":523,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090394Z"},{"ID":24318,"Name":"035","Points":6589,"X":648,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090394Z"},{"ID":24319,"Name":"008","Points":10495,"X":518,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090395Z"},{"ID":24320,"Name":"jaaa","Points":10484,"X":637,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090395Z"},{"ID":24321,"Name":"Monetio","Points":10495,"X":445,"Y":354,"Continent":"K34","Bonus":9,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090395Z"},{"ID":24322,"Name":"Ave Why!","Points":9414,"X":464,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090396Z"},{"ID":24323,"Name":"K34 - [130] Before Land","Points":10259,"X":440,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090396Z"},{"ID":24324,"Name":"033","Points":10362,"X":353,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090396Z"},{"ID":24325,"Name":"Oww Konfederacja","Points":4502,"X":611,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090397Z"},{"ID":24326,"Name":"Belweder","Points":11550,"X":374,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090397Z"},{"ID":24327,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8822,"X":541,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090397Z"},{"ID":24328,"Name":"psycha sitting","Points":10311,"X":459,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090397Z"},{"ID":24329,"Name":"7.62 mm","Points":2604,"X":380,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090398Z"},{"ID":24330,"Name":"093","Points":5936,"X":415,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090398Z"},{"ID":24331,"Name":"Pobozowisko","Points":4988,"X":386,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090399Z"},{"ID":24332,"Name":"*INTERTWINED*","Points":9711,"X":506,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090399Z"},{"ID":24333,"Name":"#044.522|497","Points":9331,"X":641,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090399Z"},{"ID":24334,"Name":"M003","Points":10000,"X":651,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0904Z"},{"ID":24335,"Name":"M181_049","Points":9955,"X":363,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0904Z"},{"ID":24336,"Name":"KUZYN NA MALEDIWACH","Points":9173,"X":419,"Y":630,"Continent":"K64","Bonus":9,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090401Z"},{"ID":24337,"Name":"Sony911","Points":10292,"X":585,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090401Z"},{"ID":24338,"Name":"Avanti!","Points":9950,"X":350,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090403Z"},{"ID":24339,"Name":"009 toples145","Points":9976,"X":560,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090403Z"},{"ID":24341,"Name":"070","Points":6342,"X":652,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090403Z"},{"ID":24342,"Name":"Wioska Kaffik VI","Points":7481,"X":635,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090404Z"},{"ID":24343,"Name":"019","Points":10160,"X":647,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090404Z"},{"ID":24344,"Name":"Pobozowisko","Points":6141,"X":389,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090404Z"},{"ID":24345,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":564,"Y":364,"Continent":"K35","Bonus":4,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090405Z"},{"ID":24347,"Name":"Lord Lord Franek .#022","Points":9957,"X":529,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090405Z"},{"ID":24348,"Name":"A016","Points":10211,"X":580,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090406Z"},{"ID":24349,"Name":"0033","Points":4783,"X":416,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090406Z"},{"ID":24350,"Name":"~~050~~","Points":9597,"X":607,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090406Z"},{"ID":24351,"Name":"Nowa 27","Points":9753,"X":638,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090407Z"},{"ID":24352,"Name":"North glinianka","Points":9887,"X":422,"Y":364,"Continent":"K34","Bonus":2,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090407Z"},{"ID":24354,"Name":"Bizy 5","Points":9960,"X":505,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090407Z"},{"ID":24355,"Name":"PiekƂo to inni","Points":10160,"X":566,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090408Z"},{"ID":24356,"Name":"Wioska Pabols 1","Points":5707,"X":382,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090408Z"},{"ID":24357,"Name":"Taki Pan","Points":9084,"X":504,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090408Z"},{"ID":24358,"Name":"137","Points":3051,"X":473,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090409Z"},{"ID":24359,"Name":"2.2","Points":2737,"X":388,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090409Z"},{"ID":24360,"Name":"M181_018","Points":9902,"X":364,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090409Z"},{"ID":24361,"Name":"Denger 22","Points":9145,"X":374,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09041Z"},{"ID":24362,"Name":"S_008","Points":11475,"X":506,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09041Z"},{"ID":24363,"Name":"Wioska barbarzyƄska","Points":10104,"X":645,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09041Z"},{"ID":24365,"Name":"Wioska Kaffik IV","Points":7432,"X":633,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090412Z"},{"ID":24366,"Name":"Ręcznik do zmiany","Points":7413,"X":371,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090412Z"},{"ID":24367,"Name":"off 100 %","Points":10254,"X":355,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090413Z"},{"ID":24368,"Name":"Kentin ufam Tobie","Points":10000,"X":356,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090413Z"},{"ID":24369,"Name":"Kentin ufam Tobie","Points":10495,"X":353,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090413Z"},{"ID":24370,"Name":"011. Erwin Domel","Points":10237,"X":507,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090414Z"},{"ID":24371,"Name":"019","Points":10019,"X":474,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090414Z"},{"ID":24372,"Name":"PiekƂo to inni","Points":10495,"X":576,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090414Z"},{"ID":24373,"Name":"Sony 911","Points":10319,"X":583,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090415Z"},{"ID":24374,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8836,"X":542,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090415Z"},{"ID":24375,"Name":"BoOmBaa..","Points":7503,"X":428,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090416Z"},{"ID":24376,"Name":"021","Points":9445,"X":467,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090416Z"},{"ID":24377,"Name":"Szlachcic","Points":10019,"X":348,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090416Z"},{"ID":24378,"Name":"Lord Lord Franek .#179","Points":10152,"X":516,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090417Z"},{"ID":24379,"Name":"x006","Points":10495,"X":359,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090417Z"},{"ID":24380,"Name":"Wioska barbarzyƄska","Points":2874,"X":370,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090417Z"},{"ID":24381,"Name":"historia blisko 4","Points":11824,"X":614,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090417Z"},{"ID":24383,"Name":"013","Points":9556,"X":653,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090418Z"},{"ID":24384,"Name":"The Game Has Only Just Begun","Points":9976,"X":346,"Y":508,"Continent":"K53","Bonus":1,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090418Z"},{"ID":24385,"Name":"|B| Avlefirr","Points":10495,"X":486,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090418Z"},{"ID":24386,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":521,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090419Z"},{"ID":24387,"Name":"[319] Chorągiewka na wietrze","Points":10395,"X":591,"Y":437,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090419Z"},{"ID":24388,"Name":"043","Points":9976,"X":570,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090419Z"},{"ID":24389,"Name":"zzzGranica Bledu 06","Points":9335,"X":607,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09042Z"},{"ID":24391,"Name":"B.007","Points":10000,"X":652,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09042Z"},{"ID":24392,"Name":"008","Points":7390,"X":645,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090421Z"},{"ID":24393,"Name":"Szlachcic:Taran","Points":5095,"X":617,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090421Z"},{"ID":24394,"Name":"Wioska barbarzyƄska","Points":9288,"X":380,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090423Z"},{"ID":24395,"Name":"B03","Points":10160,"X":645,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090423Z"},{"ID":24397,"Name":"Epitaph","Points":9562,"X":639,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090423Z"},{"ID":24398,"Name":"SSJ 055","Points":9761,"X":508,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090424Z"},{"ID":24399,"Name":"039","Points":10178,"X":446,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090424Z"},{"ID":24400,"Name":"ave why!","Points":8947,"X":445,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090424Z"},{"ID":24401,"Name":"Pobozowisko","Points":11321,"X":383,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090425Z"},{"ID":24402,"Name":"002|| Taurus","Points":10019,"X":487,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090425Z"},{"ID":24403,"Name":"BBB","Points":8713,"X":561,"Y":415,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090426Z"},{"ID":24404,"Name":"019","Points":9976,"X":563,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090426Z"},{"ID":24405,"Name":"Jestem Poza Kontrolą","Points":6953,"X":354,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090426Z"},{"ID":24406,"Name":"Wioska 2","Points":9274,"X":589,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090426Z"},{"ID":24407,"Name":"006 - Mroczna Osada","Points":10114,"X":630,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090427Z"},{"ID":24408,"Name":"Ręcznik do zmiany","Points":10019,"X":373,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090427Z"},{"ID":24409,"Name":"I#024","Points":6302,"X":598,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090427Z"},{"ID":24410,"Name":"BEZDZIETNY KAWALER","Points":4340,"X":416,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090428Z"},{"ID":24411,"Name":"Ręcznik do zmiany","Points":10019,"X":374,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090428Z"},{"ID":24412,"Name":"Jednak wolę gofry","Points":9547,"X":440,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090428Z"},{"ID":24413,"Name":"005","Points":10252,"X":520,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090429Z"},{"ID":24414,"Name":"EMERYTOWANY KUZYN","Points":10787,"X":429,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090429Z"},{"ID":24415,"Name":"The Game Has Only Just Begun","Points":9976,"X":349,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09043Z"},{"ID":24416,"Name":"Pobozowisko","Points":8062,"X":407,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09043Z"},{"ID":24417,"Name":"Avanti!","Points":9950,"X":350,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09043Z"},{"ID":24418,"Name":"020","Points":8680,"X":427,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090431Z"},{"ID":24419,"Name":"SSJ 052","Points":9517,"X":511,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090431Z"},{"ID":24421,"Name":"The Game Has Only Just Begun","Points":9976,"X":351,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090433Z"},{"ID":24422,"Name":"ladyanima","Points":9151,"X":518,"Y":571,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090433Z"},{"ID":24423,"Name":"The sweetest ass in the world","Points":10495,"X":375,"Y":591,"Continent":"K53","Bonus":2,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090433Z"},{"ID":24424,"Name":"psycha sitting","Points":10311,"X":452,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090434Z"},{"ID":24425,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090434Z"},{"ID":24426,"Name":"BACÓWKA |003|","Points":10795,"X":631,"Y":416,"Continent":"K46","Bonus":3,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090435Z"},{"ID":24427,"Name":"Wioska barbarzyƄska","Points":4053,"X":368,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090435Z"},{"ID":24428,"Name":"Wioska Kaffik I","Points":6964,"X":633,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090436Z"},{"ID":24429,"Name":"B.029","Points":10000,"X":650,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090436Z"},{"ID":24430,"Name":"The Game Has Only Just Begun","Points":10178,"X":350,"Y":513,"Continent":"K53","Bonus":3,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090436Z"},{"ID":24431,"Name":"244...SOUTH","Points":6631,"X":474,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090437Z"},{"ID":24432,"Name":"North Barba 003","Points":9889,"X":421,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090437Z"},{"ID":24433,"Name":"Ave Why!","Points":9212,"X":459,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090437Z"},{"ID":24434,"Name":"B02","Points":10252,"X":647,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090438Z"},{"ID":24435,"Name":"002","Points":10237,"X":485,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090438Z"},{"ID":24436,"Name":"Pobozowisko","Points":4504,"X":387,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090439Z"},{"ID":24437,"Name":"071","Points":9747,"X":648,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090439Z"},{"ID":24438,"Name":"jaaa","Points":10495,"X":633,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090439Z"},{"ID":24439,"Name":"Koszalin","Points":9835,"X":384,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09044Z"},{"ID":24440,"Name":"040...CENTRUM","Points":10247,"X":459,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09044Z"},{"ID":24441,"Name":"018|| Camelopardalis","Points":10019,"X":474,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09044Z"},{"ID":24442,"Name":"Jehu_Kingdom_13","Points":8745,"X":641,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090441Z"},{"ID":24443,"Name":"Lord Lord Franek .#204","Points":9583,"X":501,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090442Z"},{"ID":24444,"Name":"037.1 mys","Points":9249,"X":553,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090443Z"},{"ID":24445,"Name":"073...barbarka","Points":10223,"X":459,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090443Z"},{"ID":24446,"Name":"Wioska barbarzyƄska","Points":7627,"X":492,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090444Z"},{"ID":24447,"Name":"017...CENTR","Points":10495,"X":456,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090444Z"},{"ID":24448,"Name":"Kentin ufam Tobie","Points":10000,"X":351,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090444Z"},{"ID":24449,"Name":"M181_048","Points":9805,"X":362,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090445Z"},{"ID":24450,"Name":"Terrestre","Points":10083,"X":347,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090445Z"},{"ID":24451,"Name":"Wioska barbarzyƄska","Points":9337,"X":645,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090445Z"},{"ID":24452,"Name":"000000VN Zenon Zogriatis","Points":9626,"X":466,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090446Z"},{"ID":24453,"Name":"Taka006","Points":8537,"X":474,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090446Z"},{"ID":24454,"Name":"M008","Points":4839,"X":653,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090446Z"},{"ID":24455,"Name":"~005.","Points":10495,"X":502,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090447Z"},{"ID":24456,"Name":"011","Points":5300,"X":382,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090447Z"},{"ID":24457,"Name":"Raz na wozie,raz w nawozie","Points":10495,"X":578,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090448Z"},{"ID":24458,"Name":"034","Points":9976,"X":570,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090448Z"},{"ID":24459,"Name":"Kentin ufam Tobie","Points":7380,"X":356,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090449Z"},{"ID":24460,"Name":"A030","Points":10168,"X":589,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090449Z"},{"ID":24461,"Name":"kathare","Points":9831,"X":554,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09045Z"},{"ID":24462,"Name":"037","Points":10216,"X":450,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09045Z"},{"ID":24463,"Name":"013...CENTR","Points":10481,"X":460,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09045Z"},{"ID":24465,"Name":"-033-","Points":7132,"X":378,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090451Z"},{"ID":24466,"Name":"Mniejsze zƂo 0044","Points":6483,"X":344,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090452Z"},{"ID":24467,"Name":"PiekƂo to inni","Points":8996,"X":580,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090453Z"},{"ID":24469,"Name":"0008","Points":10637,"X":476,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090453Z"},{"ID":24470,"Name":"Quzynafide","Points":5929,"X":408,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090453Z"},{"ID":24471,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":506,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090454Z"},{"ID":24472,"Name":"Kentin ufam Tobie","Points":10000,"X":350,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090454Z"},{"ID":24473,"Name":"Jestem Poza Kontrolą","Points":8376,"X":349,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090455Z"},{"ID":24474,"Name":"Flinii","Points":8992,"X":635,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090455Z"},{"ID":24475,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9817,"X":529,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090455Z"},{"ID":24476,"Name":"Wioska barbarzyƄska","Points":9191,"X":347,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090455Z"},{"ID":24477,"Name":"013|| Cepheus","Points":10019,"X":490,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090456Z"},{"ID":24478,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":463,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090456Z"},{"ID":24479,"Name":"Mockingbird","Points":10495,"X":374,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090456Z"},{"ID":24480,"Name":"026","Points":9147,"X":655,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090457Z"},{"ID":24482,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":575,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090457Z"},{"ID":24483,"Name":"Carsultyal.","Points":9711,"X":485,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090457Z"},{"ID":24484,"Name":"jaaa","Points":10636,"X":641,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090457Z"},{"ID":24485,"Name":"B.051","Points":5788,"X":657,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090458Z"},{"ID":24486,"Name":"Kentin ufam Tobie","Points":10064,"X":350,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090458Z"},{"ID":24487,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":527,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090458Z"},{"ID":24488,"Name":"Ambroambro","Points":12154,"X":614,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090459Z"},{"ID":24489,"Name":"Ulu-mulu","Points":4445,"X":412,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09046Z"},{"ID":24490,"Name":"017.","Points":9835,"X":401,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09046Z"},{"ID":24491,"Name":"North Barba 001","Points":9887,"X":421,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090461Z"},{"ID":24492,"Name":"088...bar","Points":10459,"X":453,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090462Z"},{"ID":24493,"Name":"Wioska barbarzyƄska","Points":2929,"X":491,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090463Z"},{"ID":24494,"Name":"Avanti!","Points":9809,"X":349,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090463Z"},{"ID":24495,"Name":"Taki Pan","Points":7282,"X":507,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090463Z"},{"ID":24496,"Name":"a moĆŒe off ? :)","Points":9563,"X":627,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090464Z"},{"ID":24497,"Name":"ave why!","Points":7096,"X":436,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090464Z"},{"ID":24498,"Name":"Lord Lord Franek .#023","Points":9962,"X":526,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090465Z"},{"ID":24499,"Name":"~~055~~","Points":9505,"X":605,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090465Z"},{"ID":24500,"Name":"0057","Points":9993,"X":420,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090465Z"},{"ID":24501,"Name":"Myk i do kieszonki","Points":9799,"X":357,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090466Z"},{"ID":24502,"Name":"BUNKIER 001","Points":11215,"X":635,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090466Z"},{"ID":24503,"Name":"Wioska barbarzyƄska","Points":3706,"X":614,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090466Z"},{"ID":24504,"Name":"A004","Points":10168,"X":586,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090467Z"},{"ID":24505,"Name":"EMERYTOWANY KUZYN","Points":5133,"X":424,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090467Z"},{"ID":24506,"Name":"Magik69 2","Points":10373,"X":609,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090467Z"},{"ID":24507,"Name":"kathare","Points":9664,"X":549,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090468Z"},{"ID":24508,"Name":"079 barbarzyƄska","Points":8029,"X":640,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090468Z"},{"ID":24509,"Name":"Wioska Bochun10","Points":10495,"X":348,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090468Z"},{"ID":24510,"Name":"psycha sitting","Points":10311,"X":448,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090469Z"},{"ID":24511,"Name":"Ć»UBRAWKA A002","Points":10272,"X":603,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090469Z"},{"ID":24512,"Name":"- 230 - RR","Points":10000,"X":591,"Y":621,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09047Z"},{"ID":24513,"Name":"Owp Konfederacja","Points":6936,"X":601,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09047Z"},{"ID":24514,"Name":"8AA","Points":10178,"X":358,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090471Z"},{"ID":24515,"Name":"B.052","Points":10000,"X":654,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090471Z"},{"ID":24516,"Name":"Ręcznik do zmiany","Points":9743,"X":370,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090471Z"},{"ID":24517,"Name":"12. Wioska 12","Points":6898,"X":362,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090472Z"},{"ID":24518,"Name":"kathare","Points":9913,"X":554,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090473Z"},{"ID":24519,"Name":"Mehehehe","Points":10487,"X":518,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090474Z"},{"ID":24520,"Name":"CSA","Points":9237,"X":512,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090474Z"},{"ID":24521,"Name":"003","Points":10495,"X":524,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090474Z"},{"ID":24522,"Name":"Avanti!","Points":9950,"X":346,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090475Z"},{"ID":24524,"Name":"*INTERTWINED*","Points":9711,"X":515,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090475Z"},{"ID":24525,"Name":"x002","Points":10495,"X":362,"Y":572,"Continent":"K53","Bonus":9,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090476Z"},{"ID":24526,"Name":"a moĆŒe off ? :)","Points":9720,"X":641,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090476Z"},{"ID":24527,"Name":"022","Points":10237,"X":490,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090477Z"},{"ID":24528,"Name":"Macarnia","Points":9654,"X":432,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090477Z"},{"ID":24529,"Name":"Wiocha 5","Points":10595,"X":427,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090477Z"},{"ID":24530,"Name":"STOP ZWIAD - GET OFF","Points":6100,"X":496,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090478Z"},{"ID":24531,"Name":"Avanti!","Points":9950,"X":345,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090478Z"},{"ID":24532,"Name":"Yogi","Points":9967,"X":491,"Y":530,"Continent":"K54","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090479Z"},{"ID":24533,"Name":"Wioska barbarzyƄska","Points":8594,"X":352,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090479Z"},{"ID":24534,"Name":"The Game Has Only Just Begun","Points":9976,"X":348,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090479Z"},{"ID":24535,"Name":"047.","Points":10495,"X":481,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09048Z"},{"ID":24536,"Name":"0143","Points":10019,"X":530,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09048Z"},{"ID":24537,"Name":"070...barbarka centr","Points":10226,"X":457,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09048Z"},{"ID":24538,"Name":"Lord Lord Franek .#047","Points":9976,"X":534,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090481Z"},{"ID":24539,"Name":"Pobozowisko","Points":7296,"X":384,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090481Z"},{"ID":24540,"Name":"053 Sligo","Points":8612,"X":625,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090481Z"},{"ID":24541,"Name":"013.","Points":10067,"X":647,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090483Z"},{"ID":24542,"Name":"Wioska barbarzyƄska","Points":9726,"X":648,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090483Z"},{"ID":24543,"Name":"002. Dla flag","Points":9888,"X":354,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090484Z"},{"ID":24544,"Name":"Dąbrowa 0016","Points":7942,"X":377,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090484Z"},{"ID":24545,"Name":"PZ038","Points":9744,"X":656,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090485Z"},{"ID":24546,"Name":"Wioska barbarzyƄska 023","Points":9594,"X":499,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090485Z"},{"ID":24547,"Name":"020Ferdek","Points":9716,"X":390,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090485Z"},{"ID":24548,"Name":"Jaaa","Points":10261,"X":628,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090486Z"},{"ID":24549,"Name":"Wioska barbarzyƄska","Points":2715,"X":497,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090486Z"},{"ID":24550,"Name":"072","Points":10160,"X":646,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090487Z"},{"ID":24551,"Name":"The Game Has Only Just Begun","Points":10117,"X":348,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090487Z"},{"ID":24552,"Name":"Oww Konfederacja","Points":9938,"X":607,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090487Z"},{"ID":24553,"Name":"014.","Points":10636,"X":488,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090487Z"},{"ID":24554,"Name":"Wioska barbarzyƄska","Points":9474,"X":354,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090488Z"},{"ID":24555,"Name":"PiekƂo to inni","Points":10160,"X":569,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090489Z"},{"ID":24556,"Name":"002","Points":9894,"X":615,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090489Z"},{"ID":24557,"Name":"005. Tak tak","Points":10495,"X":502,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090489Z"},{"ID":24558,"Name":"Wioska barbarzyƄska","Points":9130,"X":434,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09049Z"},{"ID":24559,"Name":"majonespzn","Points":10478,"X":606,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09049Z"},{"ID":24560,"Name":"Wioska Bochun10","Points":10311,"X":346,"Y":479,"Continent":"K43","Bonus":4,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09049Z"},{"ID":24561,"Name":"#.10 Wioska barbarzyƄska","Points":10019,"X":650,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090491Z"},{"ID":24562,"Name":"Kanada","Points":2674,"X":372,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090491Z"},{"ID":24563,"Name":"062 xyz","Points":10375,"X":638,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090491Z"},{"ID":24564,"Name":"017","Points":2280,"X":379,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090493Z"},{"ID":24565,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":521,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090493Z"},{"ID":24566,"Name":"kathare","Points":10216,"X":553,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090494Z"},{"ID":24567,"Name":"BoOmBaa..tam","Points":10495,"X":434,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090494Z"},{"ID":24568,"Name":"C002..","Points":10147,"X":368,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090494Z"},{"ID":24569,"Name":"K06","Points":2375,"X":369,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090494Z"},{"ID":24570,"Name":"ave why!","Points":10237,"X":448,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090495Z"},{"ID":24571,"Name":"LadyAnimavillis","Points":9761,"X":599,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090495Z"},{"ID":24572,"Name":"033","Points":9735,"X":641,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090495Z"},{"ID":24573,"Name":"010 Wiatr","Points":9500,"X":656,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090496Z"},{"ID":24574,"Name":"Jednak wolę gofry","Points":6874,"X":441,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090496Z"},{"ID":24575,"Name":"BEZDZIETNY KAWALER","Points":5119,"X":420,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090496Z"},{"ID":24576,"Name":"Dajanka 17","Points":4746,"X":357,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090497Z"},{"ID":24577,"Name":"#.14 Wioska barbarzyƄska","Points":10019,"X":656,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090497Z"},{"ID":24578,"Name":"Wioska Kaffiks XIII","Points":5833,"X":631,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090497Z"},{"ID":24579,"Name":"Wioska barbarzyƄska","Points":4516,"X":475,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090498Z"},{"ID":24580,"Name":"C003","Points":9970,"X":520,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090498Z"},{"ID":24581,"Name":"003 Krotu","Points":9553,"X":656,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090498Z"},{"ID":24582,"Name":"15. Ɓo Cię Krynca","Points":10019,"X":512,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090499Z"},{"ID":24583,"Name":"043","Points":10311,"X":648,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090499Z"},{"ID":24584,"Name":"016","Points":10273,"X":486,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090499Z"},{"ID":24585,"Name":"A006","Points":10495,"X":613,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0905Z"},{"ID":24586,"Name":"014 M","Points":10971,"X":654,"Y":526,"Continent":"K56","Bonus":9,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0905Z"},{"ID":24587,"Name":"Jednak wolę gofry","Points":9323,"X":438,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0905Z"},{"ID":24588,"Name":"K34 x001","Points":10495,"X":446,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090501Z"},{"ID":24589,"Name":"Chekku - meito","Points":10319,"X":345,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090503Z"},{"ID":24590,"Name":"North 1","Points":10306,"X":420,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090503Z"},{"ID":24591,"Name":"0274","Points":10083,"X":544,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090503Z"},{"ID":24592,"Name":"027","Points":6322,"X":652,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090503Z"},{"ID":24593,"Name":"Nowa 28","Points":9398,"X":639,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090504Z"},{"ID":24595,"Name":"001. Dla Flag","Points":10027,"X":354,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090504Z"},{"ID":24596,"Name":"c Strzelce Opolskie","Points":8165,"X":395,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090504Z"},{"ID":24597,"Name":"aaaaaaaaa","Points":10495,"X":451,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090505Z"},{"ID":24598,"Name":"048- Mroczna Osada","Points":3586,"X":628,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090505Z"},{"ID":24599,"Name":"Kentin ufam Tobie","Points":10495,"X":354,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090505Z"},{"ID":24600,"Name":"A0198","Points":10362,"X":342,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090506Z"},{"ID":24601,"Name":"Sony 911","Points":10268,"X":586,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090506Z"},{"ID":24602,"Name":"[05] Huelva","Points":9263,"X":354,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090506Z"},{"ID":24603,"Name":"jaaa","Points":10484,"X":634,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090507Z"},{"ID":24604,"Name":"[0022] Rafalek","Points":10495,"X":426,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090507Z"},{"ID":24605,"Name":"Jednak wolę gofry","Points":10068,"X":436,"Y":639,"Continent":"K64","Bonus":3,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090508Z"},{"ID":24606,"Name":"Dajanka 15","Points":5499,"X":351,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090508Z"},{"ID":24607,"Name":"A0072","Points":10362,"X":347,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090508Z"},{"ID":24608,"Name":"Wioska barbarzyƄska","Points":10068,"X":532,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090509Z"},{"ID":24609,"Name":"03. Reina R","Points":10336,"X":482,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090509Z"},{"ID":24610,"Name":"kathare","Points":10164,"X":547,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090509Z"},{"ID":24611,"Name":"c Patole","Points":8301,"X":397,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09051Z"},{"ID":24612,"Name":"I#009","Points":9797,"X":599,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09051Z"},{"ID":24613,"Name":"068","Points":9147,"X":655,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09051Z"},{"ID":24614,"Name":"810","Points":9117,"X":651,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090511Z"},{"ID":24615,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090512Z"},{"ID":24616,"Name":"Wioska barbarzyƄska","Points":2424,"X":598,"Y":616,"Continent":"K65","Bonus":0,"PlayerID":699796630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090513Z"},{"ID":24617,"Name":"psycha sitting","Points":10311,"X":459,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090513Z"},{"ID":24618,"Name":"W 08","Points":9752,"X":647,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090513Z"},{"ID":24619,"Name":"024 - Terrassa","Points":10019,"X":644,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090514Z"},{"ID":24620,"Name":"Twierdza 8","Points":5106,"X":653,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090514Z"},{"ID":24621,"Name":"Darma dla zawodnika","Points":10481,"X":511,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090514Z"},{"ID":24622,"Name":"A005","Points":9835,"X":404,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090515Z"},{"ID":24623,"Name":"EMERYTOWANY KUZYN","Points":8393,"X":429,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090515Z"},{"ID":24624,"Name":"Lord Lord Franek .#217","Points":8834,"X":508,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090516Z"},{"ID":24625,"Name":"017.","Points":10728,"X":486,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090516Z"},{"ID":24626,"Name":"W 03","Points":9608,"X":646,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090517Z"},{"ID":24627,"Name":"Parking","Points":10019,"X":372,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090517Z"},{"ID":24628,"Name":"0061","Points":9825,"X":626,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090517Z"},{"ID":24629,"Name":"B.018","Points":10000,"X":657,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090518Z"},{"ID":24630,"Name":"005","Points":11321,"X":651,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090518Z"},{"ID":24631,"Name":"Lord Lord Franek .#024","Points":9960,"X":524,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090518Z"},{"ID":24632,"Name":"054 Gwalijar","Points":9080,"X":623,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090518Z"},{"ID":24633,"Name":"historia blisko 2","Points":11824,"X":616,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090519Z"},{"ID":24635,"Name":"Pobozowisko","Points":9218,"X":384,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090519Z"},{"ID":24636,"Name":"Jaaa","Points":10559,"X":625,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090519Z"},{"ID":24637,"Name":"A001","Points":10211,"X":588,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09052Z"},{"ID":24638,"Name":"2.3","Points":10168,"X":391,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09052Z"},{"ID":24639,"Name":"cc 089d","Points":4118,"X":411,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09052Z"},{"ID":24640,"Name":"Pobozowisko","Points":5136,"X":384,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090522Z"},{"ID":24641,"Name":"C006","Points":9642,"X":599,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090522Z"},{"ID":24642,"Name":"004 MONETKI","Points":8968,"X":657,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090523Z"},{"ID":24643,"Name":"Kentin ufam Tobie","Points":10002,"X":348,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090523Z"},{"ID":24644,"Name":".:107:. Niangmen","Points":9899,"X":505,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090523Z"},{"ID":24646,"Name":"aaaaaaaaa","Points":10495,"X":450,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090524Z"},{"ID":24647,"Name":"Bagienko.Anker..","Points":8620,"X":380,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090524Z"},{"ID":24648,"Name":"Jan dzik V K","Points":9631,"X":636,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090524Z"},{"ID":24649,"Name":"000","Points":10971,"X":390,"Y":610,"Continent":"K63","Bonus":9,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090525Z"},{"ID":24650,"Name":"#0049","Points":8650,"X":551,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090525Z"},{"ID":24651,"Name":"0544","Points":10019,"X":517,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090526Z"},{"ID":24652,"Name":"Oksywie","Points":8860,"X":390,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090526Z"},{"ID":24653,"Name":"008","Points":9659,"X":654,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090527Z"},{"ID":24654,"Name":"015","Points":9976,"X":565,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090527Z"},{"ID":24655,"Name":"007.Oko","Points":9797,"X":344,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090527Z"},{"ID":24656,"Name":"068 Wioska barbarzyƄska","Points":10001,"X":541,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090528Z"},{"ID":24657,"Name":"0003","Points":9993,"X":418,"Y":365,"Continent":"K34","Bonus":3,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090528Z"},{"ID":24658,"Name":"K33 x001","Points":4423,"X":396,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090529Z"},{"ID":24659,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10178,"X":525,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090529Z"},{"ID":24660,"Name":"S_009","Points":11314,"X":509,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090529Z"},{"ID":24661,"Name":"Taki Pan","Points":8061,"X":511,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09053Z"},{"ID":24662,"Name":"Nowa 26","Points":9753,"X":641,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09053Z"},{"ID":24663,"Name":"093. PóƂnocna Granica","Points":7721,"X":636,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090531Z"},{"ID":24664,"Name":"039|| Ophiuchus","Points":10019,"X":480,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090532Z"},{"ID":24665,"Name":"Wioska Atillaa","Points":4007,"X":350,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":2819255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090533Z"},{"ID":24666,"Name":"off 100 %","Points":5420,"X":361,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090533Z"},{"ID":24667,"Name":"PiekƂo to inni","Points":10160,"X":568,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090533Z"},{"ID":24668,"Name":"077 cybil","Points":10355,"X":641,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090533Z"},{"ID":24669,"Name":"I#033","Points":7177,"X":596,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090534Z"},{"ID":24671,"Name":"022 - Oviedo","Points":10019,"X":641,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090534Z"},{"ID":24672,"Name":"K34 - [131] Before Land","Points":9924,"X":433,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090534Z"},{"ID":24673,"Name":"Jednak wolę gofry","Points":9899,"X":425,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090535Z"},{"ID":24674,"Name":"jaaa","Points":10495,"X":632,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090535Z"},{"ID":24675,"Name":"002","Points":6978,"X":379,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090535Z"},{"ID":24676,"Name":"0141","Points":10083,"X":579,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090536Z"},{"ID":24677,"Name":"005 Szczęƛciarz","Points":10436,"X":432,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090536Z"},{"ID":24678,"Name":"002.","Points":9835,"X":400,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090537Z"},{"ID":24679,"Name":"Kentin ufam Tobie","Points":10000,"X":355,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090537Z"},{"ID":24680,"Name":"012","Points":9100,"X":653,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090537Z"},{"ID":24681,"Name":"BACÓWKA |004|","Points":12154,"X":629,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090538Z"},{"ID":24682,"Name":"Jehu_Kingdom_50","Points":6135,"X":642,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090538Z"},{"ID":24683,"Name":"Kentin ufam Tobie","Points":10000,"X":347,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090538Z"},{"ID":24684,"Name":"Wioska barbarzyƄska Lo","Points":3515,"X":381,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090538Z"},{"ID":24685,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090539Z"},{"ID":24686,"Name":"Jestem Poza Kontrolą","Points":9026,"X":349,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090539Z"},{"ID":24687,"Name":"Jestem Poza Kontrolą","Points":9880,"X":360,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090541Z"},{"ID":24688,"Name":"005.","Points":10838,"X":483,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090541Z"},{"ID":24689,"Name":"021 - Mroczna Osada","Points":11550,"X":633,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090541Z"},{"ID":24691,"Name":"136 DaSilva2402","Points":10001,"X":520,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090542Z"},{"ID":24692,"Name":".///...//././././././././","Points":8147,"X":383,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090542Z"},{"ID":24693,"Name":"M004","Points":6080,"X":654,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090543Z"},{"ID":24694,"Name":"North Barba 021","Points":9977,"X":424,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090543Z"},{"ID":24695,"Name":"PiekƂo to inni","Points":8991,"X":513,"Y":472,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090543Z"},{"ID":24696,"Name":"Alicization 4","Points":9717,"X":460,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090544Z"},{"ID":24697,"Name":"s181eo15","Points":9883,"X":389,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090544Z"},{"ID":24698,"Name":"DW7","Points":10311,"X":348,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090544Z"},{"ID":24699,"Name":"*4622* Stalowy potwĂłr","Points":10287,"X":644,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090545Z"},{"ID":24700,"Name":"Wioska barbarzyƄska","Points":9704,"X":629,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090545Z"},{"ID":24701,"Name":"wMirajane","Points":4755,"X":446,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090546Z"},{"ID":24702,"Name":"aAa Szlaban 1","Points":12154,"X":608,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090547Z"},{"ID":24703,"Name":"Wioska barbarzyƄska","Points":9505,"X":485,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090548Z"},{"ID":24704,"Name":"KUZYN FARMACEUTA","Points":7652,"X":426,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090548Z"},{"ID":24705,"Name":"015","Points":9965,"X":462,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090548Z"},{"ID":24706,"Name":"034 033","Points":10001,"X":548,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090549Z"},{"ID":24707,"Name":"0007","Points":9993,"X":418,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090549Z"},{"ID":24709,"Name":"BACÓWKA |015|","Points":8237,"X":623,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090549Z"},{"ID":24710,"Name":"P017 Gigas","Points":9393,"X":655,"Y":506,"Continent":"K56","Bonus":6,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09055Z"},{"ID":24711,"Name":"P016 Heisneberg","Points":9747,"X":657,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09055Z"},{"ID":24712,"Name":"Wiocha 6","Points":10595,"X":424,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09055Z"},{"ID":24714,"Name":"Trelis","Points":5192,"X":480,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090551Z"},{"ID":24715,"Name":"PiekƂo to inni","Points":9809,"X":577,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090551Z"},{"ID":24716,"Name":"[142]","Points":9886,"X":636,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090551Z"},{"ID":24717,"Name":"BUNKIER 003","Points":6499,"X":640,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090552Z"},{"ID":24718,"Name":"A0199","Points":10362,"X":343,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090552Z"},{"ID":24719,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9643,"X":498,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090554Z"},{"ID":24720,"Name":"aaaaaaa","Points":10495,"X":439,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090554Z"},{"ID":24721,"Name":"0021","Points":9993,"X":414,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090554Z"},{"ID":24722,"Name":"SSJ 066","Points":9761,"X":514,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090554Z"},{"ID":24723,"Name":"Westcoast.079","Points":10178,"X":386,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090555Z"},{"ID":24724,"Name":"BEZDZIETNY KAWALER","Points":5452,"X":410,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090555Z"},{"ID":24725,"Name":"#0025 barbarzyƄska","Points":10178,"X":467,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090556Z"},{"ID":24726,"Name":"psycha sitting","Points":9605,"X":452,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090556Z"},{"ID":24727,"Name":"|A| Ironminster","Points":10495,"X":480,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090557Z"},{"ID":24728,"Name":"Taki Pan","Points":7206,"X":507,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090557Z"},{"ID":24729,"Name":"#001 Altdorf","Points":9922,"X":375,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090557Z"},{"ID":24730,"Name":"Nowa 30","Points":9835,"X":636,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090558Z"},{"ID":24731,"Name":"Pobozowisko","Points":10963,"X":391,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090558Z"},{"ID":24732,"Name":"065","Points":7569,"X":623,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090559Z"},{"ID":24733,"Name":"MELISKA","Points":9398,"X":352,"Y":462,"Continent":"K43","Bonus":1,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090559Z"},{"ID":24734,"Name":"PodziękowaƂ 6","Points":10495,"X":417,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09056Z"},{"ID":24735,"Name":"Pobozowisko","Points":10951,"X":387,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09056Z"},{"ID":24736,"Name":"Avanti!","Points":9950,"X":346,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09056Z"},{"ID":24737,"Name":"052","Points":9687,"X":639,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090562Z"},{"ID":24738,"Name":"035 036","Points":10001,"X":547,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090562Z"},{"ID":24739,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":559,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090563Z"},{"ID":24740,"Name":"061","Points":9118,"X":629,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090563Z"},{"ID":24741,"Name":"Wioska barbarzyƄska","Points":3439,"X":607,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699351046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090564Z"},{"ID":24742,"Name":"008","Points":7818,"X":398,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090564Z"},{"ID":24743,"Name":"P010 Banuta","Points":9747,"X":657,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090565Z"},{"ID":24744,"Name":"Lord Lord Franek .#139","Points":10160,"X":514,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090565Z"},{"ID":24745,"Name":"PiekƂo to inni","Points":10495,"X":579,"Y":368,"Continent":"K35","Bonus":8,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090565Z"},{"ID":24746,"Name":"A0233","Points":10362,"X":344,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090566Z"},{"ID":24747,"Name":"Wioska barbarzyƄska","Points":10068,"X":530,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090566Z"},{"ID":24748,"Name":"PiekƂo to inni","Points":9806,"X":576,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090567Z"},{"ID":24749,"Name":"026 VW GajdaDawid","Points":8639,"X":369,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090567Z"},{"ID":24750,"Name":"#.33 Wioska barbarzyƄska","Points":4559,"X":657,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090568Z"},{"ID":24751,"Name":"056","Points":9724,"X":638,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090568Z"},{"ID":24753,"Name":"M181_021","Points":9655,"X":360,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090569Z"},{"ID":24754,"Name":"Wioska barbarzyƄska","Points":9935,"X":542,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090569Z"},{"ID":24755,"Name":"015","Points":10237,"X":483,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09057Z"},{"ID":24756,"Name":"017 nie ma spania na wyjazdach","Points":9835,"X":447,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09057Z"},{"ID":24757,"Name":"Kentin ufam Tobie","Points":10000,"X":346,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090571Z"},{"ID":24758,"Name":"Kentin ufam Tobie","Points":10000,"X":348,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090573Z"},{"ID":24759,"Name":"Jaaa","Points":10266,"X":626,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090574Z"},{"ID":24760,"Name":"Avanti!","Points":9950,"X":343,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090574Z"},{"ID":24761,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":558,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090574Z"},{"ID":24762,"Name":"Gattacka","Points":10470,"X":611,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090575Z"},{"ID":24763,"Name":"A0061","Points":10362,"X":344,"Y":492,"Continent":"K43","Bonus":1,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090575Z"},{"ID":24764,"Name":"RTS 14","Points":9592,"X":586,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090576Z"},{"ID":24765,"Name":"*Lipa","Points":9761,"X":575,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090577Z"},{"ID":24766,"Name":"14k$ Grvvyq","Points":10495,"X":637,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090577Z"},{"ID":24767,"Name":"0056","Points":9825,"X":621,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090577Z"},{"ID":24768,"Name":"*Lastmoon","Points":9761,"X":574,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090578Z"},{"ID":24769,"Name":"050. Geneva","Points":9366,"X":650,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090579Z"},{"ID":24770,"Name":"068","Points":9745,"X":646,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090579Z"},{"ID":24771,"Name":"Taki Pan","Points":5777,"X":500,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090579Z"},{"ID":24772,"Name":"Lord Lord Franek .#025","Points":9955,"X":522,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09058Z"},{"ID":24773,"Name":"Lord Lord Franek .#048","Points":9960,"X":517,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09058Z"},{"ID":24774,"Name":"0005","Points":9899,"X":404,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090581Z"},{"ID":24775,"Name":"kathare","Points":9830,"X":555,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090582Z"},{"ID":24776,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":570,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090582Z"},{"ID":24777,"Name":"Groovyq P","Points":10019,"X":606,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090583Z"},{"ID":24778,"Name":"BEZDZIETNY KAWALER","Points":3436,"X":412,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090583Z"},{"ID":24779,"Name":"039","Points":10104,"X":482,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090584Z"},{"ID":24780,"Name":"psycha sitting","Points":10311,"X":460,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090584Z"},{"ID":24781,"Name":"I#022","Points":9797,"X":598,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090585Z"},{"ID":24782,"Name":"SSJ 065","Points":9761,"X":517,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090585Z"},{"ID":24784,"Name":"jaaa","Points":10495,"X":641,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090586Z"},{"ID":24785,"Name":"BEZDZIETNY KAWALER","Points":4727,"X":415,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090586Z"},{"ID":24786,"Name":"Wioska Bochun10","Points":10544,"X":344,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090587Z"},{"ID":24787,"Name":"#0011 barbarzyƄska","Points":10178,"X":465,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090587Z"},{"ID":24788,"Name":"PiekƂo to inni","Points":10019,"X":568,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090588Z"},{"ID":24789,"Name":"Ulu-mulu","Points":7525,"X":423,"Y":603,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090591Z"},{"ID":24790,"Name":"016","Points":9835,"X":427,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090592Z"},{"ID":24791,"Name":"off 100 %","Points":10291,"X":359,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090592Z"},{"ID":24792,"Name":"0484","Points":10160,"X":538,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090593Z"},{"ID":24793,"Name":"022 Legio I Maximiana","Points":5405,"X":652,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090593Z"},{"ID":24794,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9486,"X":497,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090594Z"},{"ID":24795,"Name":"Ave Why!","Points":10019,"X":465,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090594Z"},{"ID":24796,"Name":"Kozaki 4","Points":11550,"X":615,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090595Z"},{"ID":24797,"Name":"#.26 Wioska barbarzyƄska","Points":5028,"X":653,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090595Z"},{"ID":24798,"Name":"009 Karta Nie Idzie","Points":10001,"X":550,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090596Z"},{"ID":24799,"Name":"BEZDZIETNY KAWALER","Points":4993,"X":416,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090597Z"},{"ID":24800,"Name":"K34 - [095] Before Land","Points":9847,"X":442,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090597Z"},{"ID":24801,"Name":"Pobozowisko","Points":4469,"X":389,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090598Z"},{"ID":24802,"Name":"xyz #010 TerrorMachine","Points":9378,"X":580,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090598Z"},{"ID":24803,"Name":"002 Wioska gazela","Points":8010,"X":630,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090599Z"},{"ID":24804,"Name":"K34 - [051] Before Land","Points":10016,"X":444,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090599Z"},{"ID":24805,"Name":"Lord Lord Franek .#003","Points":10226,"X":534,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090601Z"},{"ID":24806,"Name":"018 MONETKI","Points":9296,"X":652,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090602Z"},{"ID":24807,"Name":"- 246 - RR","Points":10000,"X":596,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090602Z"},{"ID":24808,"Name":"RON","Points":8105,"X":652,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090602Z"},{"ID":24809,"Name":"Wioska barbarzyƄska","Points":10354,"X":404,"Y":463,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090603Z"},{"ID":24810,"Name":"037","Points":10237,"X":479,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090603Z"},{"ID":24811,"Name":"ave why!","Points":10202,"X":451,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090603Z"},{"ID":24812,"Name":"Wiocha 3","Points":10426,"X":426,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090604Z"},{"ID":24813,"Name":"**Ahtala","Points":9761,"X":575,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090604Z"},{"ID":24814,"Name":"005.Dla flag","Points":8765,"X":355,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090605Z"},{"ID":24815,"Name":"Szlachcic","Points":10559,"X":405,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090605Z"},{"ID":24816,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":568,"Continent":"K53","Bonus":5,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090606Z"},{"ID":24817,"Name":"jaaa","Points":10220,"X":642,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090606Z"},{"ID":24818,"Name":"SoƂtys Twojej Wsi","Points":9789,"X":400,"Y":383,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090606Z"},{"ID":24819,"Name":"036 035","Points":10001,"X":541,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090607Z"},{"ID":24820,"Name":"036 Galust2","Points":9500,"X":654,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090607Z"},{"ID":24821,"Name":"BEZDZIETNY KAWALER","Points":8640,"X":414,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090608Z"},{"ID":24822,"Name":"A0067","Points":10362,"X":344,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090608Z"},{"ID":24823,"Name":"060","Points":9831,"X":630,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090609Z"},{"ID":24824,"Name":"jaaa","Points":10484,"X":634,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090609Z"},{"ID":24825,"Name":"Lord Lord Franek .#009","Points":10232,"X":525,"Y":346,"Continent":"K35","Bonus":3,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090611Z"},{"ID":24826,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9486,"X":498,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090612Z"},{"ID":24827,"Name":"Brat447","Points":10134,"X":367,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090612Z"},{"ID":24828,"Name":"018","Points":10237,"X":486,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090612Z"},{"ID":24829,"Name":"800","Points":10495,"X":650,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090613Z"},{"ID":24830,"Name":"llllllll","Points":9889,"X":624,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090613Z"},{"ID":24831,"Name":"M006","Points":5662,"X":655,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090614Z"},{"ID":24832,"Name":"014","Points":3898,"X":383,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090614Z"},{"ID":24833,"Name":"Lord Lord Franek .#004","Points":10426,"X":535,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090615Z"},{"ID":24834,"Name":"BoOmBaa..","Points":10495,"X":435,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090615Z"},{"ID":24835,"Name":"033","Points":3784,"X":612,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090615Z"},{"ID":24836,"Name":"Szatana","Points":8198,"X":392,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":606706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090616Z"},{"ID":24837,"Name":"0466","Points":4180,"X":379,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090616Z"},{"ID":24838,"Name":"Wiocha 2","Points":10887,"X":427,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090617Z"},{"ID":24839,"Name":"015.","Points":10495,"X":486,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090617Z"},{"ID":24840,"Name":"off 100 %","Points":10253,"X":355,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090617Z"},{"ID":24841,"Name":"Jamapet","Points":9747,"X":633,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699735020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090618Z"},{"ID":24842,"Name":"Wioska barbarzyƄska","Points":9182,"X":352,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090618Z"},{"ID":24843,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":522,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090619Z"},{"ID":24844,"Name":"PDWB","Points":9891,"X":651,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090621Z"},{"ID":24845,"Name":"102","Points":8893,"X":442,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090622Z"},{"ID":24846,"Name":"I#038","Points":10160,"X":594,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090622Z"},{"ID":24847,"Name":"Jestem Poza Kontrolą","Points":8533,"X":347,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090623Z"},{"ID":24848,"Name":"#0012 barbarzyƄska","Points":10178,"X":465,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090623Z"},{"ID":24849,"Name":"Z 005","Points":9835,"X":487,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090623Z"},{"ID":24850,"Name":"I#001","Points":9797,"X":599,"Y":380,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090624Z"},{"ID":24851,"Name":"I#005","Points":9797,"X":600,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090624Z"},{"ID":24852,"Name":"Lord Lord Franek .#049","Points":9960,"X":531,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090625Z"},{"ID":24853,"Name":"Taki Pan","Points":5941,"X":499,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090625Z"},{"ID":24854,"Name":"006.","Points":9835,"X":401,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090626Z"},{"ID":24855,"Name":"c Wioska pp","Points":6280,"X":399,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090626Z"},{"ID":24856,"Name":"Wioska Bochun10","Points":10311,"X":345,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090627Z"},{"ID":24857,"Name":"xxOsada koczownikĂłw","Points":10068,"X":530,"Y":351,"Continent":"K35","Bonus":8,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090627Z"},{"ID":24858,"Name":"- 223 - RR","Points":8085,"X":592,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090628Z"},{"ID":24859,"Name":"41. KaruTown","Points":7658,"X":616,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090628Z"},{"ID":24860,"Name":"Wioska barbarzyƄska","Points":3172,"X":382,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09063Z"},{"ID":24861,"Name":"Hama","Points":8002,"X":432,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09063Z"},{"ID":24862,"Name":"Wioska barbarzyƄska","Points":10237,"X":551,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090631Z"},{"ID":24863,"Name":"Osada koczownikĂłw","Points":5586,"X":384,"Y":402,"Continent":"K43","Bonus":2,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090631Z"},{"ID":24864,"Name":"PZ034","Points":9750,"X":658,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090632Z"},{"ID":24865,"Name":"Quzynafide","Points":2775,"X":406,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090632Z"},{"ID":24867,"Name":"Ręcznik do zmiany","Points":9489,"X":373,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090633Z"},{"ID":24868,"Name":"001...CENTR_Czeczen","Points":10495,"X":461,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090633Z"},{"ID":24869,"Name":"Ave Why!","Points":9493,"X":480,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090634Z"},{"ID":24870,"Name":"Dyy","Points":5643,"X":574,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090635Z"},{"ID":24871,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":527,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090636Z"},{"ID":24872,"Name":"D 006","Points":10034,"X":651,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090636Z"},{"ID":24873,"Name":"022","Points":9860,"X":641,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090637Z"},{"ID":24874,"Name":"103","Points":10019,"X":350,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090637Z"},{"ID":24875,"Name":"A-030","Points":10168,"X":385,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090637Z"},{"ID":24876,"Name":"[162]","Points":7736,"X":637,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090638Z"},{"ID":24877,"Name":"Wioska (028)","Points":9778,"X":634,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090638Z"},{"ID":24878,"Name":"A0227","Points":10362,"X":345,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090639Z"},{"ID":24879,"Name":"042. Trapezus","Points":10054,"X":637,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090639Z"},{"ID":24880,"Name":"Wioska barbarzyƄska","Points":9036,"X":651,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09064Z"},{"ID":24881,"Name":"Sony 911","Points":10220,"X":586,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09064Z"},{"ID":24882,"Name":"Wioska barbarzyƄska","Points":7704,"X":349,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090641Z"},{"ID":24883,"Name":"012","Points":9976,"X":568,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090641Z"},{"ID":24884,"Name":"Ręcznik do zmiany","Points":10160,"X":374,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090642Z"},{"ID":24885,"Name":"sony911","Points":10287,"X":587,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090643Z"},{"ID":24886,"Name":"005KraƄcĂłwki","Points":9825,"X":391,"Y":612,"Continent":"K63","Bonus":1,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090643Z"},{"ID":24887,"Name":"Z moralami nie wygrasz","Points":1562,"X":504,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":849096594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090644Z"},{"ID":24888,"Name":"MotoMyszy ?","Points":7556,"X":613,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":849094147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090644Z"},{"ID":24889,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":562,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090646Z"},{"ID":24890,"Name":"#0050","Points":9097,"X":551,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090646Z"},{"ID":24891,"Name":"002.AJaTamNieWiem","Points":9818,"X":343,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090647Z"},{"ID":24892,"Name":"Happy New Year 2k23","Points":7925,"X":595,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090647Z"},{"ID":24893,"Name":"004. Crystal Palace","Points":9632,"X":498,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090648Z"},{"ID":24894,"Name":"056","Points":5619,"X":604,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090648Z"},{"ID":24895,"Name":"A0056","Points":10362,"X":347,"Y":496,"Continent":"K43","Bonus":4,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090649Z"},{"ID":24896,"Name":"050KZ","Points":7295,"X":484,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090649Z"},{"ID":24897,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":456,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09065Z"},{"ID":24898,"Name":"BoOmBaa..","Points":10495,"X":431,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09065Z"},{"ID":24899,"Name":"063 tete","Points":9870,"X":635,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09065Z"},{"ID":24900,"Name":"Wioska barbarzyƄska","Points":9226,"X":648,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090651Z"},{"ID":24901,"Name":"Oww Konfederacja","Points":9924,"X":610,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090651Z"},{"ID":24902,"Name":"Szlachcic","Points":10303,"X":502,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090652Z"},{"ID":24903,"Name":"Ręcznik do zmiany","Points":9568,"X":371,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090652Z"},{"ID":24904,"Name":"Wioska barbarzyƄska","Points":9825,"X":628,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090653Z"},{"ID":24905,"Name":"A001","Points":9835,"X":405,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090653Z"},{"ID":24906,"Name":"020","Points":9072,"X":637,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090654Z"},{"ID":24907,"Name":"Ave why !","Points":9305,"X":391,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090656Z"},{"ID":24908,"Name":"Zakręt 6","Points":9835,"X":410,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090656Z"},{"ID":24909,"Name":"Bizy 7","Points":8818,"X":500,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090656Z"},{"ID":24911,"Name":"B.005","Points":10000,"X":652,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090657Z"},{"ID":24912,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":528,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090657Z"},{"ID":24913,"Name":"K34 - [106] Before Land","Points":10259,"X":450,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090658Z"},{"ID":24914,"Name":"Ave Why!","Points":9630,"X":485,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090659Z"},{"ID":24915,"Name":"0485","Points":10252,"X":541,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090659Z"},{"ID":24916,"Name":"9AA","Points":8665,"X":357,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09066Z"},{"ID":24917,"Name":"027 - Pamplona","Points":9709,"X":641,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09066Z"},{"ID":24918,"Name":"051","Points":8865,"X":444,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090661Z"},{"ID":24919,"Name":"Szlachcic/Taran","Points":10237,"X":620,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090661Z"},{"ID":24920,"Name":"30k$ Grvvyq","Points":10495,"X":647,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090662Z"},{"ID":24921,"Name":"K01..","Points":10495,"X":366,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090662Z"},{"ID":24922,"Name":"0059","Points":9993,"X":419,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090662Z"},{"ID":24923,"Name":"004.Ciabas","Points":9797,"X":342,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090663Z"},{"ID":24924,"Name":"Wioska barbarzyƄska","Points":5347,"X":454,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090663Z"},{"ID":24925,"Name":"Ulu-mulu","Points":7858,"X":409,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090665Z"},{"ID":24926,"Name":"014 MONETKI","Points":8634,"X":653,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090666Z"},{"ID":24927,"Name":"106","Points":4459,"X":442,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090666Z"},{"ID":24928,"Name":"I#023","Points":8544,"X":596,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090666Z"},{"ID":24929,"Name":"B01","Points":10019,"X":648,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090667Z"},{"ID":24930,"Name":"STOLYCA","Points":11109,"X":649,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090667Z"},{"ID":24931,"Name":"610","Points":8606,"X":647,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090667Z"},{"ID":24932,"Name":"Wioska barbarzyƄska","Points":8580,"X":494,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090668Z"},{"ID":24933,"Name":"Sony 911","Points":10284,"X":591,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090668Z"},{"ID":24934,"Name":"0243","Points":10083,"X":538,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090669Z"},{"ID":24935,"Name":"Sparta_57","Points":9638,"X":488,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090669Z"},{"ID":24936,"Name":"K33 x003","Points":2875,"X":390,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09067Z"},{"ID":24937,"Name":"36. KaruTown","Points":6960,"X":635,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09067Z"},{"ID":24938,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":523,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090671Z"},{"ID":24939,"Name":"The Game Has Only Just Begun","Points":9976,"X":357,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090671Z"},{"ID":24940,"Name":"zzzGranica Bledu 09","Points":9310,"X":607,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090672Z"},{"ID":24941,"Name":"- 048 - RR","Points":10000,"X":594,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090672Z"},{"ID":24942,"Name":"017)","Points":4799,"X":541,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090674Z"},{"ID":24943,"Name":"Zeta Reticuli S2","Points":10997,"X":392,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090674Z"},{"ID":24944,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":567,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090675Z"},{"ID":24945,"Name":"A 001","Points":10362,"X":603,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090675Z"},{"ID":24946,"Name":"BEZDZIETNY KAWALER","Points":9807,"X":416,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090676Z"},{"ID":24947,"Name":"Wioska barbarzyƄska","Points":10083,"X":344,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090676Z"},{"ID":24948,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":466,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090677Z"},{"ID":24949,"Name":"Wioska Bochun10","Points":7616,"X":344,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090677Z"},{"ID":24950,"Name":"068...felus","Points":10220,"X":456,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090678Z"},{"ID":24951,"Name":"2.7","Points":2906,"X":397,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090678Z"},{"ID":24952,"Name":"XXXX","Points":10197,"X":503,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090678Z"},{"ID":24953,"Name":"Ręcznik do zmiany","Points":8776,"X":372,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090679Z"},{"ID":24954,"Name":"BoOmBaa..","Points":6807,"X":432,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090679Z"},{"ID":24955,"Name":"Pobozowisko","Points":10957,"X":384,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09068Z"},{"ID":24956,"Name":"022","Points":10236,"X":424,"Y":637,"Continent":"K64","Bonus":2,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09068Z"},{"ID":24957,"Name":"Szlachcic","Points":8547,"X":347,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09068Z"},{"ID":24958,"Name":"0486","Points":10019,"X":519,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090681Z"},{"ID":24959,"Name":"Kumpel","Points":8492,"X":348,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090681Z"},{"ID":24960,"Name":"A0242","Points":10362,"X":343,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090682Z"},{"ID":24961,"Name":"BACÓWKA |014|","Points":10795,"X":627,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090682Z"},{"ID":24962,"Name":"043","Points":10015,"X":548,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090683Z"},{"ID":24963,"Name":"Nowa 35","Points":9824,"X":637,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090683Z"},{"ID":24964,"Name":"Osada 001","Points":10178,"X":399,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090683Z"},{"ID":24965,"Name":"BoOmBaa..","Points":10237,"X":436,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090684Z"},{"ID":24966,"Name":"cc 092d","Points":8154,"X":410,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090684Z"},{"ID":24967,"Name":"cc pol008","Points":5528,"X":400,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090685Z"},{"ID":24968,"Name":"A0052","Points":10362,"X":347,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090686Z"},{"ID":24969,"Name":".///...//././././././././","Points":9775,"X":382,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090686Z"},{"ID":24970,"Name":"Wioska barbarzyƄska","Points":10226,"X":551,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090687Z"},{"ID":24971,"Name":"Lord Lord Franek .#218","Points":8669,"X":501,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090689Z"},{"ID":24972,"Name":"0240","Points":10083,"X":545,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090689Z"},{"ID":24973,"Name":"- 231 - RR","Points":9535,"X":596,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09069Z"},{"ID":24975,"Name":"7AA","Points":10060,"X":358,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09069Z"},{"ID":24976,"Name":"055","Points":9419,"X":651,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090691Z"},{"ID":24977,"Name":"A0117","Points":10362,"X":348,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090691Z"},{"ID":24979,"Name":"Kentin ufam Tobie","Points":10000,"X":349,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090691Z"},{"ID":24980,"Name":"ave why!","Points":10311,"X":448,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090692Z"},{"ID":24981,"Name":"Sony 911","Points":10206,"X":582,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090692Z"},{"ID":24982,"Name":"Potworna","Points":8053,"X":540,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090693Z"},{"ID":24983,"Name":"Szlachcic","Points":10019,"X":349,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090693Z"},{"ID":24984,"Name":"037","Points":4501,"X":654,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090694Z"},{"ID":24985,"Name":"Jan 010 The White Rabbit K","Points":9404,"X":654,"Y":468,"Continent":"K46","Bonus":1,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090694Z"},{"ID":24986,"Name":"050. Anora","Points":10559,"X":638,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090695Z"},{"ID":24987,"Name":"Szlachcic","Points":10479,"X":407,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090695Z"},{"ID":24988,"Name":"#0034","Points":10495,"X":551,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090696Z"},{"ID":24989,"Name":"Cannabinol","Points":8776,"X":364,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":848980237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090697Z"},{"ID":24990,"Name":"030","Points":4055,"X":653,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090699Z"},{"ID":24991,"Name":"004","Points":10495,"X":523,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090699Z"},{"ID":24992,"Name":"Granica","Points":10019,"X":370,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0907Z"},{"ID":24993,"Name":"?003 buRoczki LC :)","Points":9976,"X":539,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0907Z"},{"ID":24994,"Name":"Jehu_Kingdom_39_","Points":9993,"X":644,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.0907Z"},{"ID":24995,"Name":"off 100 %","Points":10297,"X":357,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090701Z"},{"ID":24996,"Name":"SoƂtys Wsi danio007xd","Points":10001,"X":428,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090701Z"},{"ID":24997,"Name":"Taki Pan","Points":7673,"X":503,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090702Z"},{"ID":24999,"Name":"Maszlug kolonia XI","Points":7560,"X":367,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090702Z"},{"ID":25000,"Name":"Jestem Poza Kontrolą","Points":9880,"X":353,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090703Z"},{"ID":25001,"Name":"049","Points":9159,"X":646,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090703Z"},{"ID":25002,"Name":"041 OZDR","Points":9966,"X":465,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090704Z"},{"ID":25003,"Name":"North Barba 002","Points":9885,"X":420,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090704Z"},{"ID":25004,"Name":"#.25 Wioska barbarzyƄska","Points":6667,"X":654,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090705Z"},{"ID":25005,"Name":"Wioska barbarzyƄska","Points":9654,"X":439,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090705Z"},{"ID":25006,"Name":"Tomall78","Points":10159,"X":634,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090705Z"},{"ID":25007,"Name":"005.KambodĆŒa","Points":9824,"X":344,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090706Z"},{"ID":25008,"Name":"A0234","Points":10362,"X":341,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090706Z"},{"ID":25009,"Name":"- 060 - RR","Points":10000,"X":591,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090708Z"},{"ID":25010,"Name":"Ave Why!","Points":10083,"X":473,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090709Z"},{"ID":25011,"Name":"19 Angmar","Points":4726,"X":453,"Y":652,"Continent":"K64","Bonus":2,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09071Z"},{"ID":25012,"Name":"Skazany Na Instynkt","Points":9196,"X":365,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09071Z"},{"ID":25013,"Name":"000002","Points":10495,"X":557,"Y":647,"Continent":"K65","Bonus":4,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090711Z"},{"ID":25014,"Name":"Jehu_Kingdom_56","Points":4146,"X":635,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090711Z"},{"ID":25015,"Name":"Lord Lord Franek .#026","Points":9962,"X":532,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090712Z"},{"ID":25016,"Name":"Klaudek9","Points":6361,"X":593,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090712Z"},{"ID":25017,"Name":"19. ###","Points":12021,"X":504,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090713Z"},{"ID":25018,"Name":"A040","Points":8537,"X":591,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090713Z"},{"ID":25019,"Name":"Ręcznik do zmiany","Points":10019,"X":372,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090714Z"},{"ID":25020,"Name":"A006","Points":10168,"X":584,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090714Z"},{"ID":25021,"Name":"018.","Points":10838,"X":487,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090714Z"},{"ID":25022,"Name":"BACÓWKA |019|","Points":8246,"X":633,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090715Z"},{"ID":25023,"Name":"Dzikie wsparcie","Points":9809,"X":465,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090715Z"},{"ID":25024,"Name":"cc 090d","Points":6188,"X":411,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090716Z"},{"ID":25025,"Name":"kathare","Points":8085,"X":553,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090718Z"},{"ID":25026,"Name":"Szlachcic/Taran","Points":10237,"X":619,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090718Z"},{"ID":25027,"Name":"040 Knykieć Dyl","Points":9976,"X":569,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090718Z"},{"ID":25028,"Name":"075 hallo","Points":10359,"X":639,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090719Z"},{"ID":25029,"Name":"Osada","Points":9637,"X":505,"Y":448,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090719Z"},{"ID":25030,"Name":"I#006","Points":9797,"X":602,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09072Z"},{"ID":25031,"Name":"Mniejsze zƂo 0003","Points":10050,"X":379,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.09072Z"},{"ID":25032,"Name":"Avanti!","Points":9950,"X":341,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090721Z"},{"ID":25033,"Name":"Wioska Bochun10","Points":10311,"X":346,"Y":481,"Continent":"K43","Bonus":1,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090721Z"},{"ID":25034,"Name":"Myk i do kieszonki","Points":9799,"X":363,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090721Z"},{"ID":25035,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":558,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090722Z"},{"ID":25036,"Name":"007 Galust1","Points":9756,"X":654,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090722Z"},{"ID":25037,"Name":"Wioska barbarzyƄska","Points":10217,"X":555,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090723Z"},{"ID":25038,"Name":"Kentin ufam Tobie","Points":10000,"X":347,"Y":475,"Continent":"K43","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090723Z"},{"ID":25039,"Name":"I#035","Points":9797,"X":605,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090723Z"},{"ID":25040,"Name":"WWWioska Daniels88","Points":12154,"X":619,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090724Z"},{"ID":25041,"Name":"C008","Points":9914,"X":600,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090724Z"},{"ID":25042,"Name":"Wioska 005","Points":6801,"X":392,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090725Z"},{"ID":25043,"Name":"A03 Mendoza","Points":10242,"X":643,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090725Z"},{"ID":25044,"Name":"Chekku - meito","Points":9976,"X":342,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090726Z"},{"ID":25045,"Name":"PrzystaƄ 9","Points":9835,"X":405,"Y":381,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090726Z"},{"ID":25046,"Name":"Ave Why!","Points":9645,"X":474,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090726Z"},{"ID":25047,"Name":"0285","Points":10081,"X":545,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090727Z"},{"ID":25048,"Name":"Szlachcic","Points":10237,"X":421,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090727Z"},{"ID":25049,"Name":"052|| Piscis Austrinus","Points":9504,"X":476,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090727Z"},{"ID":25050,"Name":"BoOmBaa..","Points":9851,"X":437,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090728Z"},{"ID":25052,"Name":"B07","Points":9971,"X":491,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090728Z"},{"ID":25053,"Name":".///...//././././././././","Points":8051,"X":384,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090729Z"},{"ID":25054,"Name":"D 017","Points":9889,"X":658,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090729Z"},{"ID":25055,"Name":"014|| Cassiopeia","Points":9040,"X":494,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090731Z"},{"ID":25056,"Name":"JaamwG P","Points":10019,"X":645,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090731Z"},{"ID":25057,"Name":"Wioska Bochun10","Points":10495,"X":348,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090732Z"},{"ID":25058,"Name":"420","Points":7414,"X":649,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090732Z"},{"ID":25059,"Name":"041","Points":9742,"X":490,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090733Z"},{"ID":25061,"Name":"042","Points":9741,"X":621,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090733Z"},{"ID":25062,"Name":"Twierdza 7","Points":9570,"X":653,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090734Z"},{"ID":25063,"Name":"Bizy 4","Points":6838,"X":501,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090734Z"},{"ID":25064,"Name":"Wioska barbarzyƄska","Points":8126,"X":502,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090735Z"},{"ID":25065,"Name":"z 034","Points":10220,"X":573,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090736Z"},{"ID":25066,"Name":"B.065","Points":10000,"X":656,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090736Z"},{"ID":25067,"Name":"C003..","Points":10495,"X":366,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090737Z"},{"ID":25069,"Name":"Pobozowisko","Points":10963,"X":401,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090737Z"},{"ID":25070,"Name":"K34 - [105] Before Land","Points":10259,"X":441,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090738Z"},{"ID":25071,"Name":"Ręcznik do zmiany","Points":10160,"X":372,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090738Z"},{"ID":25072,"Name":"019...CENTR PÓƁ_A","Points":10495,"X":464,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.090739Z"},{"ID":25073,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":525,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120984Z"},{"ID":25074,"Name":"A027","Points":9537,"X":587,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120985Z"},{"ID":25075,"Name":"I#031","Points":9797,"X":597,"Y":376,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120986Z"},{"ID":25076,"Name":"0003","Points":6819,"X":613,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120987Z"},{"ID":25077,"Name":"002 Missisipi","Points":9889,"X":477,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120987Z"},{"ID":25078,"Name":"AA14","Points":9792,"X":357,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120988Z"},{"ID":25079,"Name":"070 Nakano","Points":9637,"X":656,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120989Z"},{"ID":25080,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9899,"X":527,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12099Z"},{"ID":25081,"Name":"Dolina Krzemu","Points":9966,"X":625,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12099Z"},{"ID":25082,"Name":"yyyy","Points":10350,"X":492,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120991Z"},{"ID":25083,"Name":"008 miliony monet","Points":9976,"X":567,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120992Z"},{"ID":25085,"Name":"002)Pieszyce","Points":8209,"X":544,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120993Z"},{"ID":25086,"Name":"I#014","Points":9797,"X":600,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120994Z"},{"ID":25087,"Name":"Sony 911","Points":10223,"X":589,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120994Z"},{"ID":25088,"Name":"003. Dla flag","Points":8422,"X":354,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120995Z"},{"ID":25089,"Name":"Wioska Bochun10","Points":10099,"X":343,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120996Z"},{"ID":25091,"Name":"A-036","Points":10242,"X":386,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120997Z"},{"ID":25092,"Name":"006 | PALESTINA","Points":9544,"X":645,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120998Z"},{"ID":25093,"Name":"The Game Has Only Just Begun","Points":8999,"X":346,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.120999Z"},{"ID":25095,"Name":"OKO ZA OKO ZAB ZA ZAB","Points":10495,"X":448,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121Z"},{"ID":25096,"Name":"I#018","Points":6833,"X":597,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121Z"},{"ID":25097,"Name":"Ambrela 032","Points":5441,"X":578,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":698823542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121001Z"},{"ID":25098,"Name":"BoOmBaa..","Points":10481,"X":433,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121002Z"},{"ID":25099,"Name":"Wioska barbarzyƄska","Points":6799,"X":363,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121002Z"},{"ID":25100,"Name":"Jednak wolę gofry","Points":5394,"X":436,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121003Z"},{"ID":25101,"Name":"ave why!","Points":10223,"X":443,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":698143931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121004Z"},{"ID":25102,"Name":"041","Points":9778,"X":642,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121005Z"},{"ID":25103,"Name":"Wioska barbarzyƄska","Points":10023,"X":555,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121005Z"},{"ID":25104,"Name":"Lord Lord Franek .#027","Points":9987,"X":527,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121006Z"},{"ID":25105,"Name":"110","Points":4075,"X":350,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121007Z"},{"ID":25106,"Name":"BACÓWKA |024|","Points":5425,"X":632,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121008Z"},{"ID":25107,"Name":"Wioska barbarzyƄska","Points":5988,"X":384,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121009Z"},{"ID":25108,"Name":"044","Points":9553,"X":654,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121009Z"},{"ID":25109,"Name":"ZbĂłjnik.","Points":5444,"X":391,"Y":384,"Continent":"K33","Bonus":9,"PlayerID":606706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12101Z"},{"ID":25110,"Name":"039","Points":7072,"X":648,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121011Z"},{"ID":25111,"Name":"Klaudek2","Points":7985,"X":590,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121012Z"},{"ID":25112,"Name":"xxx","Points":10495,"X":507,"Y":443,"Continent":"K45","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121013Z"},{"ID":25113,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":572,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121014Z"},{"ID":25114,"Name":"Wioska barbarzyƄska","Points":8825,"X":537,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121014Z"},{"ID":25115,"Name":"015) Niuniuƛ","Points":4208,"X":536,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121015Z"},{"ID":25116,"Name":"047.","Points":9701,"X":407,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699665152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121016Z"},{"ID":25117,"Name":"006","Points":9488,"X":646,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121017Z"},{"ID":25118,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9915,"X":497,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121017Z"},{"ID":25119,"Name":"Kentin ufam Tobie","Points":10160,"X":356,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121018Z"},{"ID":25120,"Name":"The Game Has Only Just Begun","Points":9976,"X":350,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121019Z"},{"ID":25121,"Name":"Szlachcic","Points":10254,"X":404,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121019Z"},{"ID":25122,"Name":"Valhalla 7","Points":10887,"X":373,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12102Z"},{"ID":25123,"Name":"A0068","Points":10362,"X":347,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121021Z"},{"ID":25124,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9994,"X":521,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121022Z"},{"ID":25125,"Name":"The Game Has Only Just Begun","Points":7526,"X":350,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121022Z"},{"ID":25126,"Name":"I#003","Points":9797,"X":599,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121023Z"},{"ID":25128,"Name":"Wioska Bochun10","Points":10495,"X":345,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121024Z"},{"ID":25129,"Name":"Monetki","Points":9878,"X":475,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121025Z"},{"ID":25130,"Name":"Cisza 2","Points":4276,"X":348,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121025Z"},{"ID":25131,"Name":"X001-Czarna Strefa","Points":10495,"X":360,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121026Z"},{"ID":25132,"Name":"Norynberg","Points":9860,"X":369,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121027Z"},{"ID":25133,"Name":"X003","Points":10495,"X":360,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121028Z"},{"ID":25134,"Name":"PiekƂo to inni","Points":10160,"X":565,"Y":357,"Continent":"K35","Bonus":8,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121028Z"},{"ID":25135,"Name":"004Knaki","Points":9782,"X":391,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121029Z"},{"ID":25136,"Name":"LadyAnimavillis","Points":9902,"X":600,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12103Z"},{"ID":25137,"Name":"0468","Points":9325,"X":380,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12103Z"},{"ID":25138,"Name":"Wioska barbarzyƄska","Points":9814,"X":554,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121031Z"},{"ID":25139,"Name":"019 serniczek z galaretką","Points":10252,"X":503,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121032Z"},{"ID":25140,"Name":"Denger 21","Points":9654,"X":370,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121033Z"},{"ID":25141,"Name":"Ręcznik do zmiany","Points":10160,"X":373,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121033Z"},{"ID":25142,"Name":"0565","Points":8765,"X":548,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121034Z"},{"ID":25143,"Name":"KONFA TO MARKA, NARKA","Points":10638,"X":409,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121035Z"},{"ID":25144,"Name":"016...CENTR","Points":10220,"X":460,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121035Z"},{"ID":25145,"Name":"Yyyyy","Points":10044,"X":497,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121036Z"},{"ID":25146,"Name":"B09","Points":10019,"X":647,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121037Z"},{"ID":25147,"Name":"Wiocha 004","Points":10178,"X":393,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121038Z"},{"ID":25148,"Name":"025","Points":10226,"X":514,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121039Z"},{"ID":25149,"Name":"K34 - [028] Before Land","Points":10259,"X":444,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121039Z"},{"ID":25150,"Name":"096","Points":10495,"X":619,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12104Z"},{"ID":25151,"Name":"#045.520|497","Points":9735,"X":639,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121041Z"},{"ID":25152,"Name":"PiekƂo to inni","Points":10083,"X":578,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121042Z"},{"ID":25153,"Name":"Wioska barbarzyƄska","Points":3758,"X":598,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":699796630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121042Z"},{"ID":25154,"Name":"32. KaruTown","Points":9735,"X":635,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121043Z"},{"ID":25155,"Name":"Sony 911","Points":10226,"X":584,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121044Z"},{"ID":25156,"Name":"B024","Points":10051,"X":655,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121044Z"},{"ID":25157,"Name":"I#019","Points":6513,"X":597,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121045Z"},{"ID":25158,"Name":"-006-","Points":9189,"X":385,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121046Z"},{"ID":25159,"Name":"Taki Pan","Points":7564,"X":504,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121047Z"},{"ID":25160,"Name":"Wioska barbarzyƄska","Points":4937,"X":478,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121047Z"},{"ID":25161,"Name":"042 kryzys","Points":9976,"X":570,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121048Z"},{"ID":25162,"Name":"Monetkownia","Points":10237,"X":611,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121049Z"},{"ID":25163,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":525,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121049Z"},{"ID":25164,"Name":"3AA","Points":9450,"X":356,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12105Z"},{"ID":25165,"Name":"001","Points":10890,"X":645,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121051Z"},{"ID":25166,"Name":"Szlachcic","Points":10237,"X":583,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121052Z"},{"ID":25167,"Name":"064","Points":7905,"X":618,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121052Z"},{"ID":25168,"Name":"MojeDnoToWaszSzczyt","Points":10252,"X":561,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121053Z"},{"ID":25169,"Name":"PrzystaƄ 8","Points":9835,"X":408,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121054Z"},{"ID":25170,"Name":"028","Points":10160,"X":652,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121054Z"},{"ID":25171,"Name":"jaaa","Points":10487,"X":637,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121055Z"},{"ID":25172,"Name":"Lord Lord Franek .#028","Points":9984,"X":524,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121056Z"},{"ID":25173,"Name":"Wioska barbarzyƄska","Points":10444,"X":558,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121057Z"},{"ID":25174,"Name":"023","Points":10475,"X":519,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121057Z"},{"ID":25175,"Name":"#.08 Osada koczownikĂłw","Points":10019,"X":651,"Y":479,"Continent":"K46","Bonus":3,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121058Z"},{"ID":25176,"Name":"szping","Points":10495,"X":596,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121059Z"},{"ID":25177,"Name":"Jaaa","Points":10490,"X":624,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12106Z"},{"ID":25178,"Name":"W 05","Points":9721,"X":647,"Y":455,"Continent":"K46","Bonus":9,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12106Z"},{"ID":25179,"Name":"51. Wioska 51","Points":7195,"X":355,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121061Z"},{"ID":25180,"Name":"jaaa","Points":10495,"X":633,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121062Z"},{"ID":25181,"Name":"021 MONETKI","Points":9887,"X":659,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121063Z"},{"ID":25182,"Name":"M181_016","Points":9886,"X":361,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121063Z"},{"ID":25183,"Name":"BACÓWKA |013|","Points":9578,"X":626,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121064Z"},{"ID":25184,"Name":"aAa Szlaban 3","Points":12154,"X":609,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121065Z"},{"ID":25185,"Name":"Samana3","Points":5433,"X":460,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121065Z"},{"ID":25186,"Name":"037. Pons Aelius","Points":9419,"X":651,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121066Z"},{"ID":25187,"Name":"Jaaa","Points":10272,"X":630,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121067Z"},{"ID":25188,"Name":"Ave Why!","Points":9809,"X":467,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121068Z"},{"ID":25189,"Name":"EMERYTOWANY KUZYN","Points":9321,"X":423,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121069Z"},{"ID":25190,"Name":"wez otworz .","Points":10411,"X":577,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121069Z"},{"ID":25191,"Name":"Jednak wolę gofry","Points":4990,"X":440,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12107Z"},{"ID":25192,"Name":"?007","Points":9976,"X":541,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121071Z"},{"ID":25193,"Name":"Wioska Krycek","Points":9097,"X":348,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":849060099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121072Z"},{"ID":25194,"Name":"Denger 23","Points":10687,"X":375,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121072Z"},{"ID":25195,"Name":"#0044","Points":10971,"X":539,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121073Z"},{"ID":25196,"Name":".004.","Points":10316,"X":493,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121074Z"},{"ID":25197,"Name":"Wioska barbarzyƄska","Points":10237,"X":551,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121075Z"},{"ID":25198,"Name":"06. LutkowszczaƄscy tubylcy","Points":10287,"X":376,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121075Z"},{"ID":25199,"Name":"Jednak wolę gofry","Points":9134,"X":444,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121076Z"},{"ID":25200,"Name":"Wioska barbarzyƄska","Points":9288,"X":648,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121077Z"},{"ID":25201,"Name":"RozƂam","Points":8367,"X":626,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121078Z"},{"ID":25202,"Name":"Wioska Bochun10","Points":10544,"X":342,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121078Z"},{"ID":25203,"Name":"Wioska barbarzyƄska","Points":9758,"X":489,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121079Z"},{"ID":25204,"Name":"040","Points":9761,"X":485,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12108Z"},{"ID":25205,"Name":"SINGED X SZEF","Points":10178,"X":495,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121081Z"},{"ID":25206,"Name":"0488","Points":10252,"X":532,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121081Z"},{"ID":25208,"Name":"0060","Points":9993,"X":420,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121082Z"},{"ID":25209,"Name":"OrzeƂ WylądowaƂ","Points":9458,"X":455,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121083Z"},{"ID":25210,"Name":"077 Duko 1","Points":10001,"X":547,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121083Z"},{"ID":25211,"Name":"BACÓWKA |006|","Points":12154,"X":627,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121084Z"},{"ID":25212,"Name":"044","Points":10019,"X":546,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121085Z"},{"ID":25213,"Name":"P006 Roshammul","Points":9882,"X":658,"Y":511,"Continent":"K56","Bonus":6,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121086Z"},{"ID":25215,"Name":"jaaa","Points":10495,"X":632,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121087Z"},{"ID":25216,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":530,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121088Z"},{"ID":25218,"Name":"007 big girls do not cry","Points":9976,"X":565,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121088Z"},{"ID":25220,"Name":"018...MONETKI","Points":10495,"X":453,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121089Z"},{"ID":25221,"Name":"037 Galust3","Points":9500,"X":655,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12109Z"},{"ID":25223,"Name":"Ręcznik do zmiany","Points":10160,"X":373,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121091Z"},{"ID":25224,"Name":"066","Points":10382,"X":654,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121091Z"},{"ID":25225,"Name":"Konfederacja","Points":9333,"X":461,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121092Z"},{"ID":25226,"Name":"Wioska barbarzyƄska","Points":9761,"X":525,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121093Z"},{"ID":25227,"Name":"---011","Points":9448,"X":369,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121094Z"},{"ID":25228,"Name":"009","Points":8594,"X":431,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121094Z"},{"ID":25229,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":526,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121095Z"},{"ID":25230,"Name":"Lord Lord Franek .#008","Points":10235,"X":519,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121096Z"},{"ID":25231,"Name":"SX001","Points":9151,"X":572,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121097Z"},{"ID":25232,"Name":"014","Points":10237,"X":484,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121097Z"},{"ID":25233,"Name":"[116]","Points":10243,"X":636,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121098Z"},{"ID":25234,"Name":"Wioska 5","Points":5114,"X":425,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121099Z"},{"ID":25235,"Name":"-004-","Points":9755,"X":376,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1211Z"},{"ID":25236,"Name":"131","Points":4510,"X":476,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1211Z"},{"ID":25237,"Name":"Wioska Hubs1","Points":3290,"X":620,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699853308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121101Z"},{"ID":25238,"Name":"049. Heliopolis","Points":9377,"X":653,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121102Z"},{"ID":25239,"Name":"Bergen op Zon","Points":5674,"X":604,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121103Z"},{"ID":25240,"Name":"Quzynafide","Points":3662,"X":407,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121103Z"},{"ID":25241,"Name":"017 MONETKI","Points":9490,"X":656,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121104Z"},{"ID":25242,"Name":"030","Points":6698,"X":614,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121105Z"},{"ID":25243,"Name":"Wioska barbarzyƄska","Points":7979,"X":645,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121105Z"},{"ID":25245,"Name":"Wioska barbarzyƄska","Points":10220,"X":556,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121106Z"},{"ID":25246,"Name":"04. Monster Machine","Points":10019,"X":494,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121107Z"},{"ID":25247,"Name":"Jestem Poza Kontrolą","Points":9791,"X":355,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121108Z"},{"ID":25248,"Name":"057","Points":8722,"X":656,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121108Z"},{"ID":25249,"Name":"213...barba","Points":4947,"X":465,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121109Z"},{"ID":25250,"Name":"The Game Has Only Just Begun","Points":9976,"X":342,"Y":516,"Continent":"K53","Bonus":7,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12111Z"},{"ID":25251,"Name":"0007","Points":9963,"X":402,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12111Z"},{"ID":25252,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":525,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121111Z"},{"ID":25253,"Name":"Wioska pit","Points":10495,"X":375,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121112Z"},{"ID":25254,"Name":"Pobozowisko","Points":9744,"X":406,"Y":622,"Continent":"K64","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121113Z"},{"ID":25255,"Name":"?012 Tawern","Points":9976,"X":536,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121113Z"},{"ID":25256,"Name":"Wioska barbarzyƄska","Points":9902,"X":538,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121114Z"},{"ID":25257,"Name":"Szlachcic","Points":9986,"X":407,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121115Z"},{"ID":25258,"Name":"Kentin ufam Tobie","Points":7478,"X":351,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121115Z"},{"ID":25259,"Name":"033","Points":10217,"X":616,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121116Z"},{"ID":25260,"Name":"K34 - [025] Before Land","Points":10039,"X":444,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121117Z"},{"ID":25261,"Name":"jaaa","Points":10275,"X":636,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121118Z"},{"ID":25262,"Name":"Wioska barbarzyƄska","Points":4687,"X":363,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121118Z"},{"ID":25263,"Name":"Monetki","Points":10290,"X":476,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121119Z"},{"ID":25264,"Name":"007","Points":6837,"X":384,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12112Z"},{"ID":25265,"Name":"Kentin ufam Tobie","Points":10000,"X":351,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121121Z"},{"ID":25266,"Name":"011 MONETKI","Points":8438,"X":657,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121121Z"},{"ID":25267,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121122Z"},{"ID":25268,"Name":"002","Points":11300,"X":652,"Y":533,"Continent":"K56","Bonus":8,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121123Z"},{"ID":25269,"Name":"0034","Points":5197,"X":420,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121124Z"},{"ID":25270,"Name":"A016 Goƛć ĆŒelazo","Points":10160,"X":653,"Y":456,"Continent":"K46","Bonus":3,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121124Z"},{"ID":25271,"Name":"Wioska barbarzyƄska","Points":3610,"X":378,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121125Z"},{"ID":25272,"Name":"MojeDnoToWaszSzczyt","Points":10019,"X":577,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121126Z"},{"ID":25273,"Name":"Dąbrowa 0015","Points":9763,"X":363,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121127Z"},{"ID":25274,"Name":"#0017 barbarzyƄska","Points":10178,"X":467,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121127Z"},{"ID":25275,"Name":"Monetio","Points":10495,"X":441,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121128Z"},{"ID":25276,"Name":"004","Points":10237,"X":482,"Y":348,"Continent":"K34","Bonus":4,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121129Z"},{"ID":25277,"Name":"I#025","Points":8970,"X":596,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12113Z"},{"ID":25278,"Name":"The Game Has Only Just Begun","Points":9158,"X":346,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12113Z"},{"ID":25279,"Name":"K34 - [111] Before Land","Points":10259,"X":441,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121131Z"},{"ID":25280,"Name":"Wioska barbarzyƄska","Points":7693,"X":362,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121132Z"},{"ID":25281,"Name":"032","Points":4101,"X":616,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121132Z"},{"ID":25282,"Name":"Kentin ufam Tobie","Points":10495,"X":354,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121133Z"},{"ID":25283,"Name":"Village","Points":9828,"X":518,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121134Z"},{"ID":25284,"Name":"A008","Points":10495,"X":603,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121135Z"},{"ID":25285,"Name":"1.3","Points":1819,"X":393,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":849095959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121135Z"},{"ID":25286,"Name":"Wioska Bochun10","Points":10311,"X":346,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121136Z"},{"ID":25287,"Name":"Prawdziwa Osada koczownikĂłw","Points":12154,"X":614,"Y":606,"Continent":"K66","Bonus":8,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121137Z"},{"ID":25288,"Name":"Myk i do kieszonki","Points":10240,"X":361,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121138Z"},{"ID":25289,"Name":"Wiocha 002","Points":10178,"X":393,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121138Z"},{"ID":25290,"Name":"Maszlug kolonia XVIII","Points":4038,"X":363,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121139Z"},{"ID":25291,"Name":"B025","Points":9824,"X":655,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12114Z"},{"ID":25292,"Name":"A 020","Points":9889,"X":602,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12114Z"},{"ID":25294,"Name":"#0016 barbarzyƄska","Points":10178,"X":467,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121141Z"},{"ID":25296,"Name":"Gattacka","Points":10470,"X":613,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121142Z"},{"ID":25297,"Name":"Szlachcic","Points":10237,"X":465,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121142Z"},{"ID":25298,"Name":"off 100 %","Points":10242,"X":358,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121143Z"},{"ID":25300,"Name":"PZ035","Points":9761,"X":656,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121144Z"},{"ID":25301,"Name":"Ręcznik do zmiany","Points":10019,"X":372,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121145Z"},{"ID":25302,"Name":"KREV 004","Points":7336,"X":642,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121145Z"},{"ID":25303,"Name":"Jestem Poza Kontrolą","Points":9880,"X":354,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121146Z"},{"ID":25304,"Name":"wolna.","Points":10001,"X":561,"Y":647,"Continent":"K65","Bonus":7,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121147Z"},{"ID":25305,"Name":"033|| Corvus","Points":10019,"X":452,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121147Z"},{"ID":25306,"Name":"deff 100 %","Points":7455,"X":357,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121148Z"},{"ID":25307,"Name":"Kozaki 1","Points":12154,"X":614,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121149Z"},{"ID":25308,"Name":"0462","Points":3459,"X":380,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12115Z"},{"ID":25309,"Name":"0010 BiaƂystok","Points":8191,"X":393,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12115Z"},{"ID":25310,"Name":"SSJ 063","Points":9737,"X":514,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121151Z"},{"ID":25311,"Name":"052.","Points":9835,"X":416,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121152Z"},{"ID":25312,"Name":"PiekƂo to inni","Points":10160,"X":566,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121152Z"},{"ID":25313,"Name":"Lord Lord Franek .#029","Points":9984,"X":525,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121153Z"},{"ID":25314,"Name":"A-024","Points":10168,"X":387,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121154Z"},{"ID":25315,"Name":"xxx #002#TerrorMachine x Miniqo","Points":10146,"X":584,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121155Z"},{"ID":25316,"Name":"Myk i do kieszonki","Points":7053,"X":364,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121155Z"},{"ID":25317,"Name":"410","Points":8611,"X":649,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121156Z"},{"ID":25318,"Name":"LadyAnimavillis","Points":9138,"X":603,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121157Z"},{"ID":25319,"Name":"Tomall78","Points":10635,"X":636,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121157Z"},{"ID":25320,"Name":"Kentin ufam Tobie","Points":10527,"X":351,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121158Z"},{"ID":25321,"Name":"007","Points":10237,"X":626,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121159Z"},{"ID":25322,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9817,"X":527,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121159Z"},{"ID":25323,"Name":"004 Krotu2","Points":9553,"X":655,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12116Z"},{"ID":25324,"Name":"Lord Lord Franek .#050","Points":10112,"X":519,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121161Z"},{"ID":25325,"Name":"Banan#4","Points":10211,"X":584,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121162Z"},{"ID":25326,"Name":"PiekƂo to inni","Points":10160,"X":569,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121162Z"},{"ID":25328,"Name":"SSJ 067","Points":9737,"X":517,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121163Z"},{"ID":25330,"Name":"A003","Points":10211,"X":587,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121164Z"},{"ID":25331,"Name":"Dajanka 06","Points":8147,"X":354,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121165Z"},{"ID":25332,"Name":"Avanti!","Points":9950,"X":346,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121165Z"},{"ID":25333,"Name":"K34 - [136] Before Land","Points":9783,"X":433,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121166Z"},{"ID":25334,"Name":"ObrzeĆŒa 02","Points":11550,"X":538,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121167Z"},{"ID":25335,"Name":"35. KaruTown","Points":8012,"X":636,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121167Z"},{"ID":25336,"Name":"D03.","Points":10362,"X":366,"Y":574,"Continent":"K53","Bonus":5,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121168Z"},{"ID":25337,"Name":"Ć»UBRAWKA A001 rufus997","Points":10481,"X":602,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121169Z"},{"ID":25338,"Name":"psycha sitting","Points":10178,"X":455,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12117Z"},{"ID":25339,"Name":"037 038","Points":10001,"X":550,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12117Z"},{"ID":25340,"Name":"musze sie napić .","Points":10362,"X":593,"Y":626,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121171Z"},{"ID":25341,"Name":"Darma Tomi77","Points":10237,"X":514,"Y":383,"Continent":"K35","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121172Z"},{"ID":25342,"Name":"006 king rysio","Points":9976,"X":566,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121173Z"},{"ID":25343,"Name":"Village","Points":7572,"X":579,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121173Z"},{"ID":25344,"Name":"0461","Points":3695,"X":380,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121174Z"},{"ID":25345,"Name":"Banan#2","Points":10211,"X":589,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121175Z"},{"ID":25346,"Name":"HORUS...","Points":9968,"X":544,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121176Z"},{"ID":25347,"Name":"004","Points":9811,"X":341,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121176Z"},{"ID":25348,"Name":"011","Points":9358,"X":398,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121177Z"},{"ID":25349,"Name":"AA10","Points":8958,"X":358,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121178Z"},{"ID":25350,"Name":"A-025","Points":10168,"X":386,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121179Z"},{"ID":25351,"Name":"Klaudek.1","Points":8369,"X":592,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12118Z"},{"ID":25352,"Name":"RON L","Points":6844,"X":656,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12118Z"},{"ID":25353,"Name":"K34 - [011] Before Land","Points":10259,"X":445,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121181Z"},{"ID":25354,"Name":"038 037","Points":10001,"X":549,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121182Z"},{"ID":25355,"Name":"Wioska barbarzyƄska","Points":9397,"X":647,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121182Z"},{"ID":25356,"Name":"Wioska barbarzyƄska","Points":8737,"X":433,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121183Z"},{"ID":25357,"Name":"003","Points":9938,"X":506,"Y":654,"Continent":"K65","Bonus":4,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121184Z"},{"ID":25358,"Name":"Samana","Points":7107,"X":452,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121185Z"},{"ID":25359,"Name":"Kentin ufam Tobie","Points":10000,"X":343,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121185Z"},{"ID":25360,"Name":"jaaa","Points":10222,"X":639,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121186Z"},{"ID":25361,"Name":"013","Points":10054,"X":484,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121187Z"},{"ID":25362,"Name":"off 100 %","Points":10031,"X":361,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121187Z"},{"ID":25363,"Name":"Kentin ufam Tobie","Points":10019,"X":343,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121188Z"},{"ID":25364,"Name":"Szlachcic","Points":10019,"X":345,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121189Z"},{"ID":25365,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8825,"X":549,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12119Z"},{"ID":25366,"Name":"Horyzont zdarzeƄ","Points":9835,"X":541,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12119Z"},{"ID":25367,"Name":"=063= Wioska barbarzyƄska","Points":10148,"X":652,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121191Z"},{"ID":25368,"Name":"Monetki","Points":10291,"X":471,"Y":424,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121192Z"},{"ID":25369,"Name":"105","Points":9566,"X":351,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121193Z"},{"ID":25370,"Name":"aaaaaaaaaaa","Points":10495,"X":442,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121193Z"},{"ID":25371,"Name":"A-037","Points":10242,"X":384,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121194Z"},{"ID":25372,"Name":"051. Tridentum","Points":9366,"X":655,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121195Z"},{"ID":25373,"Name":"Maszlug kolonia XVII","Points":4464,"X":365,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121195Z"},{"ID":25374,"Name":"North Barba 022","Points":9805,"X":423,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121196Z"},{"ID":25375,"Name":"008.Wioska BenyZSZ","Points":9816,"X":346,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121197Z"},{"ID":25376,"Name":"Lord Lord Franek .#042","Points":10160,"X":531,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121198Z"},{"ID":25377,"Name":"013 so sick","Points":9976,"X":560,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121198Z"},{"ID":25378,"Name":"Dzikie wsparcie","Points":9809,"X":471,"Y":657,"Continent":"K64","Bonus":1,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121199Z"},{"ID":25379,"Name":"Monetki","Points":10291,"X":483,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1212Z"},{"ID":25380,"Name":"0663","Points":10495,"X":379,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1212Z"},{"ID":25381,"Name":"037.","Points":9835,"X":397,"Y":622,"Continent":"K63","Bonus":4,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121201Z"},{"ID":25382,"Name":"1AA","Points":7981,"X":356,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121202Z"},{"ID":25383,"Name":"GrĂłd 4","Points":2799,"X":475,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699204478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121203Z"},{"ID":25384,"Name":"Monetki","Points":10291,"X":474,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121203Z"},{"ID":25385,"Name":"B.025","Points":10000,"X":645,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121204Z"},{"ID":25386,"Name":"I#004","Points":9797,"X":598,"Y":382,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121205Z"},{"ID":25388,"Name":"JaawmG P","Points":10019,"X":649,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121205Z"},{"ID":25389,"Name":"Wioska barbarzyƄska","Points":3060,"X":380,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121206Z"},{"ID":25390,"Name":"PiekƂo to inni","Points":10019,"X":570,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121207Z"},{"ID":25391,"Name":"Wioska MokryRick","Points":12154,"X":624,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121208Z"},{"ID":25392,"Name":"027 - Mroczna Osada","Points":12143,"X":640,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121208Z"},{"ID":25393,"Name":"Lord Lord Franek .#005","Points":10311,"X":529,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121209Z"},{"ID":25394,"Name":"033. Dubris","Points":10481,"X":653,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12121Z"},{"ID":25395,"Name":"023 181","Points":9008,"X":344,"Y":501,"Continent":"K53","Bonus":3,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12121Z"},{"ID":25396,"Name":"Darma dla zawodnika","Points":10319,"X":514,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121211Z"},{"ID":25397,"Name":"Wioska barbarzyƄska","Points":10255,"X":578,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121212Z"},{"ID":25398,"Name":"Wioska Flip i Flap ;]","Points":7721,"X":465,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121213Z"},{"ID":25399,"Name":"#008 Zenit Postrach Plemion","Points":2268,"X":359,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121213Z"},{"ID":25400,"Name":"#007 Zenituƛ","Points":1595,"X":360,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121214Z"},{"ID":25402,"Name":"North Barba 013","Points":9892,"X":422,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121215Z"},{"ID":25403,"Name":"B.011","Points":10000,"X":646,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121216Z"},{"ID":25404,"Name":"Szulernia","Points":9993,"X":417,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121216Z"},{"ID":25405,"Name":"Wioska barbarzyƄska","Points":8583,"X":630,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121217Z"},{"ID":25406,"Name":"0151","Points":10019,"X":546,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121218Z"},{"ID":25407,"Name":"079","Points":10495,"X":619,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121218Z"},{"ID":25408,"Name":"7.62 mm","Points":6208,"X":373,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121219Z"},{"ID":25409,"Name":"Lekka Jazda.","Points":12154,"X":608,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12122Z"},{"ID":25410,"Name":"No. 4","Points":9201,"X":478,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121221Z"},{"ID":25411,"Name":"B07","Points":10019,"X":644,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121221Z"},{"ID":25412,"Name":"009.","Points":9835,"X":402,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121222Z"},{"ID":25413,"Name":"Zakręt 1","Points":9835,"X":408,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121223Z"},{"ID":25414,"Name":"?001","Points":9976,"X":539,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121224Z"},{"ID":25415,"Name":"08. Pelc","Points":9916,"X":377,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121224Z"},{"ID":25416,"Name":"066","Points":10223,"X":625,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121225Z"},{"ID":25417,"Name":"004 Lowland","Points":8143,"X":552,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121226Z"},{"ID":25418,"Name":".:026:. ƁOBUZIK","Points":10495,"X":555,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121227Z"},{"ID":25420,"Name":"Szlachcic","Points":10479,"X":403,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121228Z"},{"ID":25421,"Name":"North Barba 006","Points":9886,"X":422,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121228Z"},{"ID":25422,"Name":"002 Winterfell","Points":9553,"X":653,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121229Z"},{"ID":25423,"Name":"KREV 001","Points":9711,"X":642,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12123Z"},{"ID":25424,"Name":"Lord Lord Franek .#014","Points":9956,"X":520,"Y":343,"Continent":"K35","Bonus":1,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121231Z"},{"ID":25425,"Name":"073 zxc","Points":10216,"X":638,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121231Z"},{"ID":25426,"Name":"CHARFA","Points":10218,"X":512,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121232Z"},{"ID":25427,"Name":"#.07 *Osada 1*","Points":10019,"X":659,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121233Z"},{"ID":25428,"Name":"066 | PALESTINA","Points":5903,"X":638,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121234Z"},{"ID":25430,"Name":"Darma dla zawodnika","Points":10484,"X":518,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121234Z"},{"ID":25431,"Name":"Szlachcic/Taran","Points":10237,"X":621,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121235Z"},{"ID":25432,"Name":"051. Az Ragni","Points":10118,"X":638,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121236Z"},{"ID":25433,"Name":"023","Points":9860,"X":641,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121236Z"},{"ID":25434,"Name":"007","Points":6564,"X":397,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121237Z"},{"ID":25435,"Name":"004 memyselfandi","Points":9976,"X":566,"Y":644,"Continent":"K65","Bonus":8,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121238Z"},{"ID":25437,"Name":"112","Points":9976,"X":629,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121239Z"},{"ID":25438,"Name":"0487","Points":10252,"X":532,"Y":653,"Continent":"K65","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121239Z"},{"ID":25439,"Name":"Ave Why!","Points":11321,"X":499,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12124Z"},{"ID":25440,"Name":"Lord Lord Franek .#030","Points":9956,"X":520,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121241Z"},{"ID":25441,"Name":".happy2","Points":9511,"X":643,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121242Z"},{"ID":25442,"Name":"=045= Wioska barbarzyƄska","Points":9824,"X":651,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121242Z"},{"ID":25443,"Name":"Chekku - meito","Points":7863,"X":345,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121243Z"},{"ID":25444,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":567,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121244Z"},{"ID":25445,"Name":"Lord Lord Franek .#031","Points":9982,"X":527,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121245Z"},{"ID":25446,"Name":"082...barb","Points":10237,"X":457,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121245Z"},{"ID":25447,"Name":"A-038","Points":10168,"X":385,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121246Z"},{"ID":25448,"Name":"022 - Mroczna Osada","Points":11550,"X":631,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121247Z"},{"ID":25449,"Name":"Ręcznik do zmiany","Points":10160,"X":370,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121247Z"},{"ID":25450,"Name":"BEZDZIETNY KAWALER","Points":5830,"X":413,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121248Z"},{"ID":25451,"Name":"Zadupiee","Points":7464,"X":366,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121249Z"},{"ID":25452,"Name":"008","Points":10311,"X":494,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12125Z"},{"ID":25453,"Name":"004","Points":9766,"X":642,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12125Z"},{"ID":25454,"Name":"Pobozowisko","Points":10971,"X":390,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121251Z"},{"ID":25455,"Name":"0040","Points":9993,"X":412,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121252Z"},{"ID":25456,"Name":"Giser","Points":9860,"X":435,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121252Z"},{"ID":25457,"Name":"071...barbarka centr","Points":10231,"X":458,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121253Z"},{"ID":25458,"Name":"Jaaa","Points":10280,"X":626,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121254Z"},{"ID":25459,"Name":"0036","Points":10083,"X":470,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121255Z"},{"ID":25460,"Name":"036","Points":9744,"X":649,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121256Z"},{"ID":25461,"Name":"LadyAnimavillis","Points":8131,"X":606,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121256Z"},{"ID":25462,"Name":"okok","Points":9965,"X":627,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121257Z"},{"ID":25463,"Name":"004) Ɓagiewniki","Points":6151,"X":542,"Y":348,"Continent":"K35","Bonus":1,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121258Z"},{"ID":25464,"Name":"-014-","Points":10259,"X":373,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121258Z"},{"ID":25465,"Name":"P021 Gotham","Points":9741,"X":658,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121259Z"},{"ID":25466,"Name":"Monetki","Points":10291,"X":475,"Y":412,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12126Z"},{"ID":25467,"Name":"BoOmBaa..","Points":6973,"X":427,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121261Z"},{"ID":25468,"Name":"Kentin ufam Tobie","Points":10000,"X":343,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121261Z"},{"ID":25469,"Name":"008","Points":10221,"X":446,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121262Z"},{"ID":25470,"Name":"B14","Points":7986,"X":652,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121263Z"},{"ID":25472,"Name":"030","Points":9976,"X":568,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121263Z"},{"ID":25473,"Name":"0002. HMS Prince (1670)","Points":9809,"X":468,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121264Z"},{"ID":25474,"Name":"A-034","Points":10168,"X":390,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121265Z"},{"ID":25475,"Name":"K53 040 Castamere","Points":9978,"X":345,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121266Z"},{"ID":25477,"Name":"009","Points":7831,"X":398,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121266Z"},{"ID":25478,"Name":"BACÓWKA |039|","Points":11550,"X":622,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121267Z"},{"ID":25479,"Name":".023.","Points":10728,"X":485,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121268Z"},{"ID":25480,"Name":"D 014","Points":9751,"X":662,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121268Z"},{"ID":25482,"Name":"RON","Points":9019,"X":656,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121269Z"},{"ID":25483,"Name":"007","Points":9835,"X":401,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12127Z"},{"ID":25484,"Name":"C001","Points":6738,"X":607,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121271Z"},{"ID":25485,"Name":"016","Points":9814,"X":653,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121271Z"},{"ID":25488,"Name":"A031","Points":8615,"X":590,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121272Z"},{"ID":25489,"Name":"OrzeƂ WylądowaƂ","Points":9444,"X":454,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121273Z"},{"ID":25490,"Name":"Krosno 10","Points":3486,"X":532,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121274Z"},{"ID":25492,"Name":"Ave Why!","Points":9976,"X":490,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121275Z"},{"ID":25493,"Name":"*055","Points":9198,"X":602,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121275Z"},{"ID":25494,"Name":"A006","Points":4247,"X":404,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121276Z"},{"ID":25495,"Name":"M181_040","Points":9682,"X":356,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121277Z"},{"ID":25496,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":566,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121278Z"},{"ID":25497,"Name":"Wioska barbarzyƄska","Points":10042,"X":557,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121278Z"},{"ID":25498,"Name":"sony911","Points":10217,"X":586,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121279Z"},{"ID":25499,"Name":"Wioska barbarzyƄska","Points":7256,"X":617,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12128Z"},{"ID":25500,"Name":"028","Points":7817,"X":657,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121281Z"},{"ID":25501,"Name":"Kentin ufam Tobie","Points":10005,"X":343,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121281Z"},{"ID":25502,"Name":"035","Points":9735,"X":659,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121282Z"},{"ID":25503,"Name":"004. Dla flag","Points":8521,"X":353,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121283Z"},{"ID":25504,"Name":"Kentin ufam Tobie","Points":7616,"X":354,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121283Z"},{"ID":25505,"Name":"RE3","Points":9764,"X":348,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121284Z"},{"ID":25506,"Name":"Antyszczepany","Points":10495,"X":599,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121285Z"},{"ID":25507,"Name":"017","Points":10141,"X":655,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121286Z"},{"ID":25509,"Name":"Wioska 006","Points":10242,"X":388,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121286Z"},{"ID":25510,"Name":"0029 MzM","Points":9258,"X":624,"Y":595,"Continent":"K56","Bonus":2,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121287Z"},{"ID":25511,"Name":"C004","Points":9761,"X":610,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121288Z"},{"ID":25512,"Name":"Jan 015 Nord K","Points":9633,"X":650,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121289Z"},{"ID":25513,"Name":"Wioska Kaffiks X","Points":6231,"X":639,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121289Z"},{"ID":25514,"Name":"94k$ Grvvyq","Points":10495,"X":608,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12129Z"},{"ID":25515,"Name":"Lord Lord Franek .#112","Points":10431,"X":529,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121291Z"},{"ID":25516,"Name":"A0064","Points":10362,"X":346,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121292Z"},{"ID":25517,"Name":"Jednak wolę gofry","Points":10471,"X":438,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121292Z"},{"ID":25518,"Name":"A028","Points":10011,"X":586,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121293Z"},{"ID":25519,"Name":"[019]","Points":3130,"X":450,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121294Z"},{"ID":25520,"Name":"Bizy 9","Points":8868,"X":504,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121295Z"},{"ID":25521,"Name":"Jestem Poza Kontrolą","Points":9880,"X":350,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121295Z"},{"ID":25522,"Name":"Wioska barbarzyƄska","Points":5001,"X":652,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":849095879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121296Z"},{"ID":25523,"Name":"Wioska Lolitkaa","Points":6536,"X":389,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699007059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121297Z"},{"ID":25524,"Name":"Starszyzna","Points":10019,"X":370,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121298Z"},{"ID":25525,"Name":"Avanti!","Points":9950,"X":346,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121298Z"},{"ID":25526,"Name":"Darma dla zawodnika","Points":10320,"X":514,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121299Z"},{"ID":25527,"Name":"Wioska barbarzyƄska","Points":5692,"X":655,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1213Z"},{"ID":25528,"Name":"#010 Zenitek Love","Points":2764,"X":359,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121301Z"},{"ID":25529,"Name":"#009 Zenit Pan K43","Points":2368,"X":360,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121301Z"},{"ID":25530,"Name":"026.Barbara10","Points":4790,"X":340,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121302Z"},{"ID":25531,"Name":"Pobozowisko","Points":9723,"X":392,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121303Z"},{"ID":25532,"Name":"044","Points":9933,"X":570,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121303Z"},{"ID":25533,"Name":"#0005 ScorpioSTW","Points":10178,"X":472,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121304Z"},{"ID":25534,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9994,"X":521,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121305Z"},{"ID":25535,"Name":"Yyyy","Points":10068,"X":491,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121306Z"},{"ID":25536,"Name":"022","Points":8898,"X":655,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121306Z"},{"ID":25537,"Name":"C001","Points":6727,"X":365,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121307Z"},{"ID":25538,"Name":"jaaa","Points":10559,"X":638,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121308Z"},{"ID":25539,"Name":"Bagienko.Anker...","Points":9028,"X":376,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121309Z"},{"ID":25540,"Name":"Wioska barbarzyƄska","Points":9748,"X":494,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121309Z"},{"ID":25541,"Name":"0013","Points":9993,"X":419,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12131Z"},{"ID":25542,"Name":"Wioska barbarzyƄska","Points":10237,"X":491,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121311Z"},{"ID":25543,"Name":"Kentin ufam Tobie","Points":10495,"X":351,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121312Z"},{"ID":25544,"Name":"Wioska 003","Points":9899,"X":382,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121312Z"},{"ID":25545,"Name":"North Sochaczew","Points":10311,"X":423,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121313Z"},{"ID":25546,"Name":"10. Grzybek","Points":9381,"X":376,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121314Z"},{"ID":25547,"Name":"#056.","Points":9735,"X":645,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121315Z"},{"ID":25548,"Name":".///...//././././././././","Points":9802,"X":379,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121315Z"},{"ID":25549,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":507,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121316Z"},{"ID":25550,"Name":"Lord Lord Franek .#032","Points":9987,"X":525,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121317Z"},{"ID":25551,"Name":"B 019","Points":9227,"X":657,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121318Z"},{"ID":25552,"Name":"Wioska Kaffik VII","Points":6984,"X":635,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121318Z"},{"ID":25553,"Name":"cc Wielka M3","Points":6625,"X":403,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121319Z"},{"ID":25554,"Name":"Wioska","Points":6016,"X":350,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":848946608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12132Z"},{"ID":25555,"Name":"0042","Points":8478,"X":411,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121321Z"},{"ID":25556,"Name":"BACÓWKA |026|","Points":5450,"X":632,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121321Z"},{"ID":25557,"Name":"P028 Afgan Skun","Points":10068,"X":658,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121322Z"},{"ID":25558,"Name":"029","Points":9363,"X":647,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121323Z"},{"ID":25559,"Name":"North Barba 018","Points":9836,"X":421,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121324Z"},{"ID":25560,"Name":"K34 - [016] Before Land","Points":10259,"X":445,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121324Z"},{"ID":25561,"Name":"x013","Points":9909,"X":358,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121325Z"},{"ID":25562,"Name":"A-046-Heffitto","Points":10168,"X":389,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121326Z"},{"ID":25563,"Name":"0016","Points":9993,"X":416,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121326Z"},{"ID":25564,"Name":"046- Mroczna Osada","Points":6135,"X":629,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121327Z"},{"ID":25565,"Name":"Ave Why!","Points":10217,"X":491,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121328Z"},{"ID":25566,"Name":"B.016","Points":10000,"X":666,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121328Z"},{"ID":25567,"Name":"001","Points":1420,"X":645,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":699301458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121329Z"},{"ID":25568,"Name":"Szlachcic","Points":10425,"X":408,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12133Z"},{"ID":25569,"Name":"Wyngiel we wsi","Points":10108,"X":554,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121331Z"},{"ID":25570,"Name":"021","Points":8689,"X":654,"Y":523,"Continent":"K56","Bonus":5,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121331Z"},{"ID":25572,"Name":"016.","Points":10203,"X":488,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121332Z"},{"ID":25573,"Name":"03. Maj preszysz","Points":10008,"X":369,"Y":593,"Continent":"K53","Bonus":3,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121333Z"},{"ID":25574,"Name":"500","Points":9560,"X":649,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121333Z"},{"ID":25575,"Name":"0014","Points":9993,"X":419,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121334Z"},{"ID":25577,"Name":"-013-","Points":9177,"X":372,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121335Z"},{"ID":25580,"Name":"LadyAnimavillis","Points":8660,"X":607,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121336Z"},{"ID":25582,"Name":"Ć»UBRAWKA 003","Points":10247,"X":604,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121336Z"},{"ID":25583,"Name":"Myk i do kieszonki","Points":10283,"X":365,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121337Z"},{"ID":25584,"Name":"024 MONETKI","Points":9555,"X":654,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121338Z"},{"ID":25585,"Name":"62k$ Grvvyq","Points":10495,"X":648,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121338Z"},{"ID":25586,"Name":"=038= Wioska barbarzyƄska","Points":10187,"X":651,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121339Z"},{"ID":25587,"Name":"W 06","Points":9726,"X":654,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12134Z"},{"ID":25588,"Name":"Chekku - meito","Points":9976,"X":342,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121341Z"},{"ID":25589,"Name":"0004","Points":10232,"X":613,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121341Z"},{"ID":25590,"Name":"017.","Points":9283,"X":559,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121342Z"},{"ID":25591,"Name":"Jednak wolę gofry","Points":8380,"X":499,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121343Z"},{"ID":25592,"Name":"B06","Points":10019,"X":645,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121343Z"},{"ID":25593,"Name":"Osada koczownikĂłw","Points":10378,"X":550,"Y":348,"Continent":"K35","Bonus":7,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121344Z"},{"ID":25594,"Name":"Wioska Kaffiks XII","Points":4111,"X":632,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121345Z"},{"ID":25595,"Name":"KrĂłlestwo Pledos ASPKTO","Points":9835,"X":488,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121346Z"},{"ID":25598,"Name":"off 100 %","Points":10243,"X":355,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121346Z"},{"ID":25599,"Name":"BACÓWKA |031|","Points":5746,"X":625,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121347Z"},{"ID":25600,"Name":"014.","Points":9758,"X":341,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121348Z"},{"ID":25601,"Name":"PZ036","Points":9619,"X":656,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121348Z"},{"ID":25602,"Name":"026 - Elx","Points":10019,"X":644,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121349Z"},{"ID":25603,"Name":"*LoƂmont","Points":9761,"X":575,"Y":636,"Continent":"K65","Bonus":6,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12135Z"},{"ID":25604,"Name":"104","Points":4639,"X":442,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121351Z"},{"ID":25605,"Name":"Ave Why!","Points":9995,"X":451,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121351Z"},{"ID":25606,"Name":"PiekƂo to inni","Points":10160,"X":567,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121352Z"},{"ID":25607,"Name":"kathare","Points":9869,"X":557,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121353Z"},{"ID":25608,"Name":"Lord Lord Franek .#210","Points":9574,"X":508,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121353Z"},{"ID":25609,"Name":"*252*","Points":9126,"X":355,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121354Z"},{"ID":25610,"Name":"020","Points":10495,"X":514,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121355Z"},{"ID":25611,"Name":"Pobozowisko","Points":10952,"X":386,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121356Z"},{"ID":25613,"Name":"off 100 %","Points":8672,"X":358,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121356Z"},{"ID":25614,"Name":"A0237","Points":10362,"X":343,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121357Z"},{"ID":25615,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":7626,"X":551,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121358Z"},{"ID":25616,"Name":"Wioska barbarzyƄska 030","Points":7437,"X":501,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121358Z"},{"ID":25617,"Name":"Lord Lord Franek .#051","Points":9960,"X":536,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121359Z"},{"ID":25618,"Name":"Wioska Fellipe23","Points":10362,"X":587,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12136Z"},{"ID":25619,"Name":"A0071","Points":10362,"X":346,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121361Z"},{"ID":25620,"Name":"SSJ 060","Points":9333,"X":506,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121361Z"},{"ID":25621,"Name":"Chekku - meito","Points":9425,"X":342,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121362Z"},{"ID":25622,"Name":"North Barba Zeus","Points":10456,"X":424,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121363Z"},{"ID":25624,"Name":"off 100 %","Points":10242,"X":352,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121363Z"},{"ID":25625,"Name":"Ręcznik do zmiany","Points":10160,"X":369,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121364Z"},{"ID":25626,"Name":"072...barbarka centr","Points":10273,"X":457,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121365Z"},{"ID":25627,"Name":"B18","Points":7783,"X":647,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121366Z"},{"ID":25628,"Name":"MojeSzczytToTwĂłjDno","Points":9792,"X":510,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121366Z"},{"ID":25629,"Name":"Wioska barbarzyƄska III","Points":2415,"X":377,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121367Z"},{"ID":25631,"Name":"Kentin ufam Tobie","Points":10479,"X":351,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121368Z"},{"ID":25632,"Name":"033","Points":9976,"X":571,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121368Z"},{"ID":25633,"Name":"Taran","Points":10728,"X":664,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121369Z"},{"ID":25634,"Name":"Mamm60n","Points":10222,"X":375,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12137Z"},{"ID":25635,"Name":"Karolina3116 (Karolina3116)","Points":9835,"X":414,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121371Z"},{"ID":25636,"Name":"038","Points":9553,"X":653,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121371Z"},{"ID":25637,"Name":"0464","Points":10178,"X":382,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121372Z"},{"ID":25638,"Name":"Kentin ufam Tobie","Points":10495,"X":352,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121373Z"},{"ID":25639,"Name":"PiekƂo to inni","Points":10252,"X":560,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121373Z"},{"ID":25640,"Name":"off 100 %","Points":8940,"X":356,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121374Z"},{"ID":25641,"Name":"PiekƂo to inni","Points":9745,"X":579,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121375Z"},{"ID":25642,"Name":"12 Esgaroth","Points":9825,"X":451,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121376Z"},{"ID":25643,"Name":"a moĆŒe off ? :)","Points":9790,"X":626,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121376Z"},{"ID":25644,"Name":"x011","Points":10495,"X":353,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121377Z"},{"ID":25645,"Name":"Wioska Bochun10","Points":10311,"X":344,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121378Z"},{"ID":25646,"Name":"Jednak wolę gofry","Points":10319,"X":434,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121378Z"},{"ID":25647,"Name":"Wioska 011","Points":8701,"X":381,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121379Z"},{"ID":25648,"Name":"wƂodek :)","Points":9976,"X":563,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12138Z"},{"ID":25649,"Name":"B06","Points":9879,"X":491,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12138Z"},{"ID":25650,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121381Z"},{"ID":25651,"Name":"078...barbarka ------------","Points":10237,"X":458,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121382Z"},{"ID":25652,"Name":"S1Joker","Points":11213,"X":476,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121383Z"},{"ID":25653,"Name":"off 100 %","Points":10311,"X":358,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121383Z"},{"ID":25654,"Name":"Edessa","Points":7984,"X":431,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121384Z"},{"ID":25655,"Name":"Oww Konfederacja","Points":5927,"X":609,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121385Z"},{"ID":25656,"Name":"012","Points":10495,"X":484,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121385Z"},{"ID":25657,"Name":"Jestem Poza Kontrolą","Points":9880,"X":351,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121386Z"},{"ID":25658,"Name":"Wioska Kaffiks XIV","Points":6375,"X":631,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121387Z"},{"ID":25659,"Name":"off 100 %","Points":10273,"X":356,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121388Z"},{"ID":25661,"Name":"?005","Points":9976,"X":537,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121388Z"},{"ID":25662,"Name":"A 021","Points":10362,"X":603,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121389Z"},{"ID":25663,"Name":"Ronin P","Points":9995,"X":612,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12139Z"},{"ID":25664,"Name":"Wioska Bochun10","Points":10311,"X":346,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12139Z"},{"ID":25665,"Name":"Avanti!","Points":9950,"X":345,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121391Z"},{"ID":25666,"Name":"jaaa","Points":10545,"X":641,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121392Z"},{"ID":25667,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":508,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121392Z"},{"ID":25668,"Name":"023.Barbara 7","Points":4261,"X":340,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121393Z"},{"ID":25669,"Name":"The Game Has Only Just Begun","Points":10117,"X":347,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121394Z"},{"ID":25670,"Name":"BoOmBaa..","Points":3489,"X":433,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121395Z"},{"ID":25671,"Name":"220","Points":8300,"X":653,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121395Z"},{"ID":25672,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121396Z"},{"ID":25673,"Name":"050","Points":9732,"X":661,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121397Z"},{"ID":25674,"Name":"0005 Warszawa","Points":10544,"X":394,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121397Z"},{"ID":25675,"Name":"7.62 mm","Points":5458,"X":368,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121398Z"},{"ID":25677,"Name":"Szlachcic","Points":6227,"X":633,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":930720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121399Z"},{"ID":25678,"Name":"047. Florentia","Points":9361,"X":651,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1214Z"},{"ID":25679,"Name":"045 Providence","Points":5672,"X":634,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1214Z"},{"ID":25680,"Name":"094","Points":3904,"X":408,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121401Z"},{"ID":25681,"Name":"069 Wioska barbarzyƄska","Points":10001,"X":546,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121402Z"},{"ID":25682,"Name":"089...bar","Points":10223,"X":459,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121402Z"},{"ID":25683,"Name":"076","Points":9766,"X":657,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121403Z"},{"ID":25684,"Name":"Jestem Poza Kontrolą","Points":9764,"X":350,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121404Z"},{"ID":25686,"Name":"aaaaaaaaaa","Points":10487,"X":438,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121404Z"},{"ID":25688,"Name":"Jan dzik II","Points":7202,"X":647,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121405Z"},{"ID":25689,"Name":"027","Points":9976,"X":561,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121406Z"},{"ID":25690,"Name":"B16","Points":9058,"X":650,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121407Z"},{"ID":25691,"Name":"Ave Why!","Points":9686,"X":477,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121407Z"},{"ID":25692,"Name":"0489","Points":10495,"X":533,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121408Z"},{"ID":25693,"Name":"zzzGranica Bledu 11","Points":8510,"X":609,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121409Z"},{"ID":25694,"Name":"Dublin","Points":9599,"X":431,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121409Z"},{"ID":25695,"Name":"0545","Points":10083,"X":531,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12141Z"},{"ID":25696,"Name":"079","Points":9730,"X":645,"Y":556,"Continent":"K56","Bonus":6,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121411Z"},{"ID":25697,"Name":"032","Points":9821,"X":658,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121412Z"},{"ID":25698,"Name":"Bardzo czyƛciutko tutaj","Points":4059,"X":346,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121413Z"},{"ID":25699,"Name":"*Lusita","Points":9761,"X":574,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121413Z"},{"ID":25700,"Name":"PiekƂo to inni","Points":10019,"X":563,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121414Z"},{"ID":25701,"Name":"A 004","Points":10362,"X":605,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121415Z"},{"ID":25702,"Name":"124 xx2","Points":9955,"X":548,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121416Z"},{"ID":25704,"Name":"EMERYTOWANY KUZYN","Points":5232,"X":421,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121416Z"},{"ID":25705,"Name":"005 serniczek na zimno","Points":10252,"X":503,"Y":661,"Continent":"K65","Bonus":7,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121417Z"},{"ID":25707,"Name":"Flotsam2","Points":3020,"X":484,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121418Z"},{"ID":25708,"Name":"W odwiedzinach u kuzyna","Points":11369,"X":431,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121418Z"},{"ID":25709,"Name":"jaaa","Points":10089,"X":638,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121419Z"},{"ID":25710,"Name":"Denger 20","Points":9006,"X":368,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12142Z"},{"ID":25711,"Name":"EMERYTOWANY KUZYN","Points":7352,"X":434,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121421Z"},{"ID":25712,"Name":"Wioska barbarzyƄska","Points":8225,"X":487,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121421Z"},{"ID":25713,"Name":"Valhalla B0","Points":10007,"X":379,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121422Z"},{"ID":25714,"Name":"North Barba 009","Points":10294,"X":424,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121423Z"},{"ID":25715,"Name":"Wioska barbarzyƄska","Points":4096,"X":377,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121424Z"},{"ID":25717,"Name":"107","Points":10019,"X":351,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121424Z"},{"ID":25718,"Name":"Ręcznik do zmiany","Points":10160,"X":373,"Y":409,"Continent":"K43","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121425Z"},{"ID":25719,"Name":"lllllllllllllllll","Points":10040,"X":624,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121426Z"},{"ID":25720,"Name":"RON","Points":6552,"X":655,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121427Z"},{"ID":25721,"Name":"004...CENTR_na przĂłd","Points":10495,"X":461,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121427Z"},{"ID":25722,"Name":"063","Points":5057,"X":619,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121428Z"},{"ID":25723,"Name":"psycha sitting","Points":9590,"X":451,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121429Z"},{"ID":25724,"Name":"Belle Fourche","Points":9976,"X":619,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121429Z"},{"ID":25725,"Name":"023","Points":9587,"X":630,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12143Z"},{"ID":25726,"Name":"0009 ah ten stan","Points":10019,"X":504,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121431Z"},{"ID":25727,"Name":"psycha sitting","Points":10311,"X":454,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121432Z"},{"ID":25728,"Name":"K34 - [096] Before Land","Points":10259,"X":444,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121432Z"},{"ID":25729,"Name":"The Game Has Only Just Begun","Points":9994,"X":348,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121433Z"},{"ID":25730,"Name":"0587","Points":8061,"X":542,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121434Z"},{"ID":25731,"Name":"Wioska Bochun10","Points":10495,"X":345,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121434Z"},{"ID":25732,"Name":"KrakĂłw","Points":5650,"X":375,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121435Z"},{"ID":25733,"Name":"Wioska barbarzyƄska","Points":1888,"X":340,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121436Z"},{"ID":25734,"Name":"032.","Points":9821,"X":642,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121437Z"},{"ID":25735,"Name":"A 018","Points":8578,"X":605,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121437Z"},{"ID":25736,"Name":"1.2","Points":3480,"X":392,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121438Z"},{"ID":25737,"Name":"off 100 %","Points":10495,"X":357,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121439Z"},{"ID":25738,"Name":"Wioska barbarzyƄska","Points":10104,"X":489,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12144Z"},{"ID":25739,"Name":"Wioska zbiku1990","Points":9379,"X":646,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121441Z"},{"ID":25740,"Name":"I#007","Points":9423,"X":599,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121441Z"},{"ID":25741,"Name":"PiekƂo to inni","Points":10160,"X":565,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121442Z"},{"ID":25742,"Name":"tego nie","Points":10475,"X":513,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121443Z"},{"ID":25743,"Name":"Kentin ufam Tobie","Points":10000,"X":343,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121444Z"},{"ID":25744,"Name":"010 lord cesarok","Points":9976,"X":562,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121444Z"},{"ID":25745,"Name":"Dajanka 02","Points":10559,"X":350,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121445Z"},{"ID":25746,"Name":"19. Holenderscy likwidatorzy","Points":8712,"X":369,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121446Z"},{"ID":25747,"Name":"021 serniczek krĂłlewski","Points":10144,"X":511,"Y":660,"Continent":"K65","Bonus":3,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121447Z"},{"ID":25748,"Name":"Wioska barbarzyƄska","Points":10223,"X":544,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121447Z"},{"ID":25749,"Name":"026","Points":10237,"X":483,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121448Z"},{"ID":25750,"Name":"Klaudek3","Points":7388,"X":592,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121449Z"},{"ID":25751,"Name":"*051","Points":9704,"X":590,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12145Z"},{"ID":25752,"Name":"081...CENTR","Points":10237,"X":454,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12145Z"},{"ID":25753,"Name":"kathare","Points":9786,"X":558,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121451Z"},{"ID":25755,"Name":"002 Halland","Points":8313,"X":552,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121452Z"},{"ID":25756,"Name":"A0235","Points":10362,"X":342,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121453Z"},{"ID":25757,"Name":"053","Points":10311,"X":658,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121453Z"},{"ID":25759,"Name":"D 005","Points":9858,"X":659,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121454Z"},{"ID":25760,"Name":"Maniek PZGXR","Points":9835,"X":491,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121455Z"},{"ID":25761,"Name":"Wiocha 4","Points":10887,"X":427,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121455Z"},{"ID":25762,"Name":"B026","Points":9827,"X":654,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121456Z"},{"ID":25763,"Name":"No way","Points":11348,"X":346,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121457Z"},{"ID":25764,"Name":"A 005","Points":8933,"X":608,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121458Z"},{"ID":25765,"Name":"007","Points":9042,"X":644,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121458Z"},{"ID":25766,"Name":"Ręcznik do zmiany","Points":10160,"X":372,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121459Z"},{"ID":25768,"Name":"B08","Points":10160,"X":649,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12146Z"},{"ID":25769,"Name":"004 serniczek z truskawkami","Points":10252,"X":502,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121461Z"},{"ID":25770,"Name":"WesoƂych ƚwiąt","Points":3970,"X":582,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121461Z"},{"ID":25772,"Name":"Kentin ufam Tobie","Points":10000,"X":342,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121462Z"},{"ID":25773,"Name":"sony911","Points":9842,"X":585,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121463Z"},{"ID":25775,"Name":"Wioska barbarzyƄska","Points":9756,"X":650,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121464Z"},{"ID":25776,"Name":"Avanti!","Points":9950,"X":342,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121464Z"},{"ID":25777,"Name":"Ręcznik do zmiany","Points":10160,"X":370,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121465Z"},{"ID":25778,"Name":"Wioska Wstydu i Rozpaczy","Points":7760,"X":621,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121466Z"},{"ID":25779,"Name":"Jednak wolę gofry","Points":10508,"X":470,"Y":657,"Continent":"K64","Bonus":3,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121467Z"},{"ID":25780,"Name":"0633","Points":10559,"X":377,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121467Z"},{"ID":25781,"Name":"18.Wszystko si","Points":9735,"X":635,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121468Z"},{"ID":25782,"Name":"020...PÓƁNOCKA","Points":10495,"X":463,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121469Z"},{"ID":25783,"Name":"Taki Pan","Points":6099,"X":499,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121469Z"},{"ID":25784,"Name":"tego nie","Points":10495,"X":515,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12147Z"},{"ID":25785,"Name":"Jestem Poza Kontrolą","Points":8038,"X":352,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121471Z"},{"ID":25786,"Name":"75.","Points":9735,"X":622,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121472Z"},{"ID":25787,"Name":"067","Points":9457,"X":627,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121473Z"},{"ID":25788,"Name":"Wioska barbarzyƄska","Points":8961,"X":633,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121473Z"},{"ID":25789,"Name":"RE5","Points":8518,"X":350,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121474Z"},{"ID":25790,"Name":"021...PóƂnoc","Points":10495,"X":463,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121475Z"},{"ID":25791,"Name":"Z 004","Points":7471,"X":493,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121476Z"},{"ID":25792,"Name":"Silva","Points":8270,"X":523,"Y":348,"Continent":"K35","Bonus":4,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121476Z"},{"ID":25793,"Name":"BoOmBaa..","Points":5268,"X":428,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121477Z"},{"ID":25794,"Name":"023...PÓƁNOC","Points":10495,"X":461,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121478Z"},{"ID":25795,"Name":"0457","Points":4414,"X":379,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121478Z"},{"ID":25796,"Name":"0465","Points":3281,"X":376,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121479Z"},{"ID":25797,"Name":"114 Wioska barbarzyƄska","Points":9550,"X":545,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12148Z"},{"ID":25798,"Name":"Lord Lord Franek .#033","Points":9957,"X":526,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121481Z"},{"ID":25799,"Name":"Pobozowisko","Points":9638,"X":388,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121482Z"},{"ID":25800,"Name":"Lord Lord Franek .#052","Points":10023,"X":533,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121482Z"},{"ID":25801,"Name":"Wioska barbarzyƄska","Points":9536,"X":569,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121483Z"},{"ID":25802,"Name":"#0263 deleted","Points":2590,"X":474,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121484Z"},{"ID":25803,"Name":"#0019 kamilsan993","Points":10178,"X":465,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121484Z"},{"ID":25804,"Name":"Wioska barbarzyƄska","Points":7169,"X":493,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121485Z"},{"ID":25806,"Name":"MInas Morgul","Points":4411,"X":627,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":849096285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121486Z"},{"ID":25807,"Name":"049.","Points":9835,"X":410,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121487Z"},{"ID":25808,"Name":"097","Points":10495,"X":622,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121487Z"},{"ID":25809,"Name":"Szlachcic","Points":10484,"X":404,"Y":371,"Continent":"K34","Bonus":9,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121488Z"},{"ID":25810,"Name":"CSA","Points":3916,"X":500,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121489Z"},{"ID":25811,"Name":"cc 008","Points":8495,"X":401,"Y":378,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121489Z"},{"ID":25812,"Name":"0086","Points":10160,"X":585,"Y":630,"Continent":"K65","Bonus":6,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12149Z"},{"ID":25813,"Name":"Avanti!","Points":9950,"X":346,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121491Z"},{"ID":25814,"Name":"Klaudek6","Points":7172,"X":592,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121491Z"},{"ID":25815,"Name":"245...SOUTH","Points":4166,"X":476,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121492Z"},{"ID":25816,"Name":"M181_024","Points":9888,"X":357,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121493Z"},{"ID":25817,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":561,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121494Z"},{"ID":25818,"Name":"012|| Pisces","Points":10019,"X":470,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121494Z"},{"ID":25819,"Name":"Wioska Bochun10","Points":10495,"X":346,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121495Z"},{"ID":25820,"Name":"2AA","Points":8449,"X":355,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121496Z"},{"ID":25821,"Name":"Monetki","Points":10294,"X":476,"Y":417,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121497Z"},{"ID":25822,"Name":"010 nie ma spania na wyjazdach","Points":4500,"X":445,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121497Z"},{"ID":25823,"Name":"043 Kirkwall","Points":7982,"X":629,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121498Z"},{"ID":25824,"Name":"Jednak wolę gofry","Points":10362,"X":473,"Y":658,"Continent":"K64","Bonus":6,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121499Z"},{"ID":25825,"Name":"36.","Points":5030,"X":352,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121499Z"},{"ID":25826,"Name":"PiekƂo to inni","Points":10160,"X":564,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1215Z"},{"ID":25827,"Name":"Banan#3","Points":7908,"X":588,"Y":370,"Continent":"K35","Bonus":3,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121501Z"},{"ID":25828,"Name":"#001","Points":7018,"X":379,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121502Z"},{"ID":25829,"Name":"psycha sitting","Points":10311,"X":451,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121502Z"},{"ID":25830,"Name":"EMERYTOWANY KUZYN","Points":4216,"X":432,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121503Z"},{"ID":25831,"Name":"Lord Lord Franek .#034","Points":9955,"X":523,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121504Z"},{"ID":25832,"Name":"Ręcznik do zmiany","Points":10160,"X":374,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121504Z"},{"ID":25833,"Name":"P023 Soul Society","Points":9949,"X":653,"Y":519,"Continent":"K56","Bonus":8,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121505Z"},{"ID":25834,"Name":"wioska Papatryk94","Points":12154,"X":623,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121506Z"},{"ID":25835,"Name":"BoOmBaa..","Points":3750,"X":431,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121506Z"},{"ID":25836,"Name":"Ręcznik do zmiany","Points":9568,"X":370,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121507Z"},{"ID":25837,"Name":"0033 MzM","Points":9128,"X":625,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121508Z"},{"ID":25838,"Name":"Wioska (039)","Points":5022,"X":644,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121509Z"},{"ID":25839,"Name":"025 MONETKI","Points":9777,"X":657,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121509Z"},{"ID":25840,"Name":"Taki Pan","Points":4677,"X":512,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12151Z"},{"ID":25841,"Name":"039 kryzys","Points":9976,"X":570,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121511Z"},{"ID":25842,"Name":"Sony 911","Points":10464,"X":587,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121511Z"},{"ID":25843,"Name":"K34 - [125] Before Land","Points":10259,"X":439,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121512Z"},{"ID":25844,"Name":"sony911","Points":10220,"X":583,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121513Z"},{"ID":25845,"Name":"Gattacka","Points":10142,"X":618,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121514Z"},{"ID":25846,"Name":"KREV 002","Points":9585,"X":644,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121514Z"},{"ID":25848,"Name":"Macp 3","Points":5416,"X":340,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":61791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121515Z"},{"ID":25849,"Name":"Szlachcic/Taran","Points":10237,"X":621,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121516Z"},{"ID":25850,"Name":"Valhalla 5","Points":8306,"X":381,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121516Z"},{"ID":25851,"Name":"Wioska barbarzyƄska","Points":9833,"X":400,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121517Z"},{"ID":25853,"Name":"Myk i do kieszonki","Points":9799,"X":355,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121518Z"},{"ID":25854,"Name":"Wioska barbarzyƄska","Points":4204,"X":432,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121519Z"},{"ID":25855,"Name":"005) Strzelin","Points":5004,"X":545,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121519Z"},{"ID":25857,"Name":"A0240","Points":10362,"X":342,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12152Z"},{"ID":25858,"Name":"Wioska barbarzyƄska","Points":10317,"X":533,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":529552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121521Z"},{"ID":25859,"Name":"085.","Points":9341,"X":485,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121522Z"},{"ID":25860,"Name":"Jestem Poza Kontrolą","Points":9880,"X":343,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121522Z"},{"ID":25861,"Name":"Wioska Bochun10","Points":10311,"X":345,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121523Z"},{"ID":25862,"Name":"Wioska 014","Points":10097,"X":392,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121524Z"},{"ID":25863,"Name":"*Nalfabet ulic","Points":5326,"X":575,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121524Z"},{"ID":25864,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":562,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121525Z"},{"ID":25865,"Name":"K33 x002","Points":3886,"X":394,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121526Z"},{"ID":25866,"Name":"MInas Ithil","Points":4596,"X":626,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":849096285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121526Z"},{"ID":25867,"Name":"K34 - [104] Before Land","Points":9783,"X":442,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121527Z"},{"ID":25868,"Name":"025 | PALESTINA","Points":9544,"X":646,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121528Z"},{"ID":25869,"Name":"010.","Points":9761,"X":399,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121529Z"},{"ID":25870,"Name":"093","Points":10019,"X":656,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121529Z"},{"ID":25871,"Name":"A035 Wioska barbarzyƄska","Points":10149,"X":650,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12153Z"},{"ID":25872,"Name":"080","Points":10495,"X":624,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121531Z"},{"ID":25873,"Name":"#.27 Wioska barbarzyƄska","Points":6113,"X":659,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121531Z"},{"ID":25874,"Name":"B10","Points":10019,"X":647,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121532Z"},{"ID":25875,"Name":"Szlachcic","Points":10478,"X":409,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121533Z"},{"ID":25876,"Name":"mpiechu","Points":10139,"X":652,"Y":456,"Continent":"K46","Bonus":5,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121534Z"},{"ID":25877,"Name":"Mordor","Points":9594,"X":438,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121534Z"},{"ID":25878,"Name":"025","Points":9976,"X":564,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121535Z"},{"ID":25879,"Name":"Ć»UBRAWKA 004","Points":10069,"X":600,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121536Z"},{"ID":25880,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":520,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121537Z"},{"ID":25881,"Name":"Twierdza","Points":8035,"X":618,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121537Z"},{"ID":25882,"Name":"011.","Points":9835,"X":400,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121538Z"},{"ID":25883,"Name":"059.","Points":9835,"X":391,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121539Z"},{"ID":25884,"Name":"Wioska barbarzyƄska .","Points":10495,"X":582,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121539Z"},{"ID":25886,"Name":"035","Points":10104,"X":481,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12154Z"},{"ID":25888,"Name":"DW3","Points":10146,"X":346,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121541Z"},{"ID":25889,"Name":"Skazany Na Instynkt","Points":8986,"X":366,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121542Z"},{"ID":25890,"Name":"20 Osgiliath","Points":3473,"X":452,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121542Z"},{"ID":25892,"Name":"K34 - [138] Before Land","Points":9783,"X":433,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121543Z"},{"ID":25893,"Name":"cofnąć","Points":9889,"X":627,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121544Z"},{"ID":25894,"Name":"LadyAnimavillis","Points":9994,"X":601,"Y":620,"Continent":"K66","Bonus":2,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121544Z"},{"ID":25895,"Name":"039.","Points":9835,"X":398,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121545Z"},{"ID":25896,"Name":"Taki Pan","Points":7923,"X":508,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121546Z"},{"ID":25897,"Name":"KlikKlak","Points":8883,"X":341,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121547Z"},{"ID":25898,"Name":"081","Points":10444,"X":625,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121547Z"},{"ID":25900,"Name":"051 csodo","Points":10147,"X":658,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121548Z"},{"ID":25902,"Name":"BoOmBaa..","Points":6307,"X":431,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121549Z"},{"ID":25903,"Name":"0490","Points":10362,"X":531,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12155Z"},{"ID":25905,"Name":"04. Przystanek pod palcem","Points":10008,"X":370,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12155Z"},{"ID":25906,"Name":"Ręcznik do zmiany","Points":10160,"X":368,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121551Z"},{"ID":25907,"Name":"Chekku - meito","Points":9650,"X":343,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121552Z"},{"ID":25908,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":531,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121552Z"},{"ID":25909,"Name":"Avanti!","Points":9950,"X":346,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121553Z"},{"ID":25910,"Name":"040","Points":7495,"X":652,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121554Z"},{"ID":25911,"Name":"016 jogurtowy serniczek","Points":10160,"X":499,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121555Z"},{"ID":25912,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":561,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121555Z"},{"ID":25913,"Name":"Tars","Points":12154,"X":420,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121556Z"},{"ID":25914,"Name":"*Nesco","Points":8830,"X":572,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121557Z"},{"ID":25915,"Name":"026 MONETKI","Points":9634,"X":659,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121558Z"},{"ID":25916,"Name":"043","Points":5815,"X":651,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121558Z"},{"ID":25917,"Name":"Początek","Points":6154,"X":354,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121559Z"},{"ID":25918,"Name":"Wioska Kaffiks IX","Points":4987,"X":636,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12156Z"},{"ID":25919,"Name":"Osada cadownikĂłw","Points":9859,"X":376,"Y":604,"Continent":"K63","Bonus":9,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12156Z"},{"ID":25920,"Name":"cc 02 Wioska barbarzyƄska","Points":8091,"X":406,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121561Z"},{"ID":25921,"Name":"North Barba 008","Points":9644,"X":420,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121562Z"},{"ID":25922,"Name":"#.34 Wioska barbarzyƄska","Points":5221,"X":658,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121563Z"},{"ID":25923,"Name":"PiekƂo to inni","Points":10160,"X":571,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121563Z"},{"ID":25924,"Name":"Oww Konfederacja","Points":6841,"X":601,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121564Z"},{"ID":25925,"Name":"North Barba 014","Points":10220,"X":426,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121565Z"},{"ID":25926,"Name":"BoOmBaa..","Points":5129,"X":432,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121565Z"},{"ID":25927,"Name":"~~051~~","Points":9491,"X":607,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121566Z"},{"ID":25929,"Name":"15. Kamper","Points":9176,"X":378,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121567Z"},{"ID":25930,"Name":"083.","Points":10495,"X":483,"Y":657,"Continent":"K64","Bonus":9,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121568Z"},{"ID":25931,"Name":"Wioska koliber2","Points":2163,"X":541,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":529552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121568Z"},{"ID":25932,"Name":"004.","Points":9835,"X":398,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121569Z"},{"ID":25934,"Name":"038 kryzys","Points":9976,"X":569,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12157Z"},{"ID":25935,"Name":"Wioska barbarzyƄska","Points":9912,"X":364,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12157Z"},{"ID":25936,"Name":"Wioska barbarzyƄska","Points":9753,"X":648,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121571Z"},{"ID":25937,"Name":"115 Wioska barbarzyƄska","Points":9632,"X":548,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121572Z"},{"ID":25938,"Name":"D18","Points":4902,"X":656,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121573Z"},{"ID":25940,"Name":"Wioska Kaffik VIII","Points":6340,"X":635,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121573Z"},{"ID":25941,"Name":"EMERYTOWANY KUZYN","Points":10311,"X":424,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121574Z"},{"ID":25942,"Name":"BACÓWKA |001|","Points":12154,"X":632,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121575Z"},{"ID":25943,"Name":"Jestem Poza Kontrolą","Points":9880,"X":346,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121575Z"},{"ID":25944,"Name":"The Game Has Only Just Begun","Points":9976,"X":346,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121576Z"},{"ID":25945,"Name":"#0259 deleted","Points":2159,"X":479,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121577Z"},{"ID":25946,"Name":"Dąbrowa 0005","Points":10019,"X":366,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121578Z"},{"ID":25947,"Name":"Wioska barbarzyƄska","Points":6221,"X":442,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121578Z"},{"ID":25948,"Name":"MojeDnoToWaszSzczyt","Points":9976,"X":567,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121579Z"},{"ID":25949,"Name":"Owp Konfederacja","Points":6455,"X":603,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12158Z"},{"ID":25950,"Name":"K34 - [121] Before Land","Points":10259,"X":438,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12158Z"},{"ID":25951,"Name":"The Game Has Only Just Begun","Points":9976,"X":345,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121581Z"},{"ID":25952,"Name":"MRF 004","Points":8617,"X":630,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":118121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121582Z"},{"ID":25953,"Name":"Ręcznik do zmiany","Points":10117,"X":370,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121583Z"},{"ID":25954,"Name":"DajankA 07","Points":10160,"X":353,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121583Z"},{"ID":25955,"Name":"Wioska 001","Points":10178,"X":390,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121584Z"},{"ID":25956,"Name":"kathare","Points":10401,"X":559,"Y":645,"Continent":"K65","Bonus":3,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121585Z"},{"ID":25957,"Name":"Chekku - meito","Points":9976,"X":344,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121585Z"},{"ID":25958,"Name":"xyz #014 TerrorMachine","Points":6321,"X":580,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121586Z"},{"ID":25959,"Name":"031","Points":5482,"X":659,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121587Z"},{"ID":25960,"Name":"B 049","Points":7664,"X":660,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121588Z"},{"ID":25961,"Name":"A027 Greg Wioska 6","Points":10160,"X":651,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121588Z"},{"ID":25962,"Name":"cc Wioska 675","Points":5935,"X":401,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121589Z"},{"ID":25963,"Name":"Wioska Barba III","Points":3451,"X":382,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12159Z"},{"ID":25964,"Name":"Krosno 9","Points":4799,"X":530,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12159Z"},{"ID":25965,"Name":"Ć»UBRAWKA 002","Points":10259,"X":603,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121591Z"},{"ID":25966,"Name":"062","Points":9416,"X":655,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121592Z"},{"ID":25967,"Name":"007 Jurassik World","Points":10001,"X":543,"Y":348,"Continent":"K35","Bonus":9,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121593Z"},{"ID":25968,"Name":"Szlachcic","Points":10160,"X":349,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121593Z"},{"ID":25969,"Name":"*014 Nemeczek*","Points":8931,"X":363,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121594Z"},{"ID":25970,"Name":"Wioska Bochun10","Points":10311,"X":344,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121595Z"},{"ID":25971,"Name":"Chekku - meito","Points":8400,"X":345,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121595Z"},{"ID":25972,"Name":"0458","Points":4750,"X":381,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121596Z"},{"ID":25973,"Name":"Ręcznik do zmiany","Points":10160,"X":371,"Y":406,"Continent":"K43","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121597Z"},{"ID":25974,"Name":"Jestem Poza Kontrolą","Points":9880,"X":352,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121598Z"},{"ID":25975,"Name":"BoOmBaa..","Points":6116,"X":428,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121599Z"},{"ID":25976,"Name":"2.03","Points":4649,"X":344,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121599Z"},{"ID":25977,"Name":"Aulas","Points":9016,"X":420,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1216Z"},{"ID":25978,"Name":"Chekku - meito","Points":8914,"X":342,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121601Z"},{"ID":25979,"Name":"PZ037","Points":9687,"X":657,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121601Z"},{"ID":25980,"Name":"B027","Points":9819,"X":655,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121602Z"},{"ID":25981,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":344,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121603Z"},{"ID":25982,"Name":"028 MONETKI","Points":9711,"X":661,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121604Z"},{"ID":25983,"Name":"7.62 mm","Points":5405,"X":367,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121604Z"},{"ID":25984,"Name":"#004 Grunburg","Points":10019,"X":374,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121605Z"},{"ID":25985,"Name":"20. Czuwaj","Points":9735,"X":627,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121606Z"},{"ID":25986,"Name":"05. Wiadukt na dopko","Points":10377,"X":376,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121606Z"},{"ID":25987,"Name":"005...ZACH_A","Points":10495,"X":454,"Y":347,"Continent":"K34","Bonus":3,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121607Z"},{"ID":25988,"Name":"A0231","Points":10362,"X":343,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121608Z"},{"ID":25989,"Name":"Ave Why!","Points":10019,"X":438,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121609Z"},{"ID":25990,"Name":"[0009]","Points":9981,"X":560,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121609Z"},{"ID":25991,"Name":"Ręcznik do zmiany","Points":9717,"X":371,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12161Z"},{"ID":25993,"Name":"*4624* Piko","Points":10287,"X":648,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121611Z"},{"ID":25994,"Name":"(+)(+)","Points":10228,"X":587,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121611Z"},{"ID":25995,"Name":"035","Points":10209,"X":570,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121612Z"},{"ID":25996,"Name":"Wioska barbarzyƄska","Points":6044,"X":632,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121613Z"},{"ID":25997,"Name":"068","Points":7808,"X":620,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121614Z"},{"ID":25998,"Name":"Wioska Bochun10","Points":5985,"X":341,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121614Z"},{"ID":25999,"Name":"Jestem Poza Kontrolą","Points":9880,"X":348,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121615Z"},{"ID":26000,"Name":"0078","Points":10252,"X":628,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121616Z"},{"ID":26001,"Name":"stop","Points":9735,"X":618,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121616Z"},{"ID":26002,"Name":"046. Oea","Points":10004,"X":658,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121617Z"},{"ID":26003,"Name":"D 019","Points":3865,"X":658,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121618Z"},{"ID":26004,"Name":"BoOmBaa..","Points":6581,"X":431,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121619Z"},{"ID":26005,"Name":"0121","Points":10019,"X":581,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121619Z"},{"ID":26006,"Name":"Wioska Bochun10","Points":10311,"X":339,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12162Z"},{"ID":26007,"Name":"16. Wiejskie potupanki","Points":9166,"X":368,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121621Z"},{"ID":26008,"Name":"023 - Mroczna Osada","Points":11130,"X":636,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121621Z"},{"ID":26009,"Name":"#002 Zenit to KRÓL","Points":8577,"X":353,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121622Z"},{"ID":26010,"Name":"CSA","Points":3036,"X":502,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121623Z"},{"ID":26012,"Name":"|024| Faliraki","Points":9881,"X":498,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121623Z"},{"ID":26013,"Name":"Kentin ufam Tobie","Points":10000,"X":340,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121624Z"},{"ID":26014,"Name":"A-035","Points":10332,"X":387,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121625Z"},{"ID":26015,"Name":"05. Yellowbird","Points":9447,"X":495,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121626Z"},{"ID":26016,"Name":"M181_044","Points":10611,"X":360,"Y":432,"Continent":"K43","Bonus":4,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121626Z"},{"ID":26017,"Name":"005 Mekka","Points":8969,"X":379,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121627Z"},{"ID":26018,"Name":"0152","Points":5185,"X":630,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121628Z"},{"ID":26019,"Name":"Wioska barbarzyƄska","Points":893,"X":344,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121628Z"},{"ID":26020,"Name":"Jehu_Kingdom_20","Points":8333,"X":650,"Y":461,"Continent":"K46","Bonus":6,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121629Z"},{"ID":26021,"Name":"011 Deiren","Points":10375,"X":642,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12163Z"},{"ID":26022,"Name":"Dajanka 16","Points":5080,"X":352,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121631Z"},{"ID":26023,"Name":"041 VANITAS","Points":10160,"X":388,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121631Z"},{"ID":26024,"Name":"Szlachcic","Points":10083,"X":346,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121632Z"},{"ID":26025,"Name":"A 008","Points":10362,"X":606,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121633Z"},{"ID":26026,"Name":"Dajanka 12","Points":7421,"X":350,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121633Z"},{"ID":26027,"Name":"17. GĂłrna Wilda","Points":11526,"X":506,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121634Z"},{"ID":26028,"Name":"CHARFA","Points":10220,"X":516,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121635Z"},{"ID":26029,"Name":"Wioska Bochun10","Points":10311,"X":339,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121635Z"},{"ID":26030,"Name":"Wioska barbarzyƄska","Points":9825,"X":631,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121636Z"},{"ID":26031,"Name":"070 Wioska barbarzyƄska","Points":10001,"X":542,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121637Z"},{"ID":26032,"Name":"039","Points":9761,"X":651,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121638Z"},{"ID":26033,"Name":"029 | PALESTINA","Points":7803,"X":643,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121638Z"},{"ID":26034,"Name":"BoOmBaa..","Points":6188,"X":431,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121639Z"},{"ID":26035,"Name":"018 nie ma spania na wyjazdach","Points":5443,"X":444,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12164Z"},{"ID":26036,"Name":"0491","Points":10019,"X":536,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121641Z"},{"ID":26037,"Name":"The Game Has Only Just Begun","Points":9976,"X":346,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121641Z"},{"ID":26038,"Name":"089","Points":3131,"X":658,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121642Z"},{"ID":26039,"Name":"036","Points":9726,"X":658,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121643Z"},{"ID":26040,"Name":"off 100 %","Points":10257,"X":352,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121644Z"},{"ID":26041,"Name":"a moĆŒe off ? :)","Points":9870,"X":627,"Y":594,"Continent":"K56","Bonus":4,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121644Z"},{"ID":26042,"Name":"[028]","Points":8122,"X":642,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121645Z"},{"ID":26043,"Name":"North Barba 012","Points":9886,"X":421,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121646Z"},{"ID":26044,"Name":"Dodowo","Points":9323,"X":345,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121647Z"},{"ID":26045,"Name":"Denger 16","Points":9136,"X":364,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121647Z"},{"ID":26046,"Name":"Kentin ufam Tobie","Points":10011,"X":342,"Y":465,"Continent":"K43","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121648Z"},{"ID":26047,"Name":"#.38 Wioska barbarzyƄska","Points":3160,"X":658,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121649Z"},{"ID":26048,"Name":"#0027 barbarzyƄska","Points":10178,"X":467,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12165Z"},{"ID":26049,"Name":"003 MONETKI","Points":9710,"X":656,"Y":464,"Continent":"K46","Bonus":1,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12165Z"},{"ID":26050,"Name":"004","Points":8494,"X":491,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121651Z"},{"ID":26051,"Name":"037","Points":9744,"X":650,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121652Z"},{"ID":26053,"Name":"Skowronek","Points":9860,"X":338,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121652Z"},{"ID":26056,"Name":"A0241","Points":10362,"X":340,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121653Z"},{"ID":26057,"Name":"Jednak wolę gofry","Points":10178,"X":435,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121654Z"},{"ID":26059,"Name":"Chekku - meito","Points":9976,"X":340,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121655Z"},{"ID":26060,"Name":"048.","Points":8077,"X":406,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121655Z"},{"ID":26061,"Name":"003","Points":11803,"X":655,"Y":534,"Continent":"K56","Bonus":8,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121656Z"},{"ID":26062,"Name":"106","Points":10019,"X":650,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121657Z"},{"ID":26063,"Name":"013) JordanĂłw ƚląski","Points":5673,"X":540,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121657Z"},{"ID":26064,"Name":"070 | PALESTINA","Points":9544,"X":635,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121658Z"},{"ID":26065,"Name":"BACÓWKA |007|","Points":12154,"X":627,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121659Z"},{"ID":26066,"Name":"historia blisko 3","Points":11550,"X":619,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12166Z"},{"ID":26067,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10068,"X":520,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12166Z"},{"ID":26068,"Name":"Jestem Poza Kontrolą","Points":9797,"X":351,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121661Z"},{"ID":26069,"Name":"072 rest","Points":10216,"X":641,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121662Z"},{"ID":26070,"Name":"Zbira","Points":5815,"X":394,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":606706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121662Z"},{"ID":26071,"Name":"deff 100%","Points":5577,"X":358,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121663Z"},{"ID":26072,"Name":"036 barbarzyƄska","Points":6705,"X":641,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121664Z"},{"ID":26073,"Name":"Czarodziejka z Wenus","Points":5621,"X":425,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121665Z"},{"ID":26074,"Name":"?002","Points":9976,"X":539,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121665Z"},{"ID":26075,"Name":"#0008 barbarzyƄska","Points":10178,"X":464,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121666Z"},{"ID":26076,"Name":"Monetio","Points":10495,"X":445,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121667Z"},{"ID":26077,"Name":"Jan dzik IV","Points":7536,"X":643,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121667Z"},{"ID":26078,"Name":"Bagienko.Anker...","Points":8443,"X":380,"Y":397,"Continent":"K33","Bonus":2,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121668Z"},{"ID":26079,"Name":"012 Eldorado","Points":9500,"X":657,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121669Z"},{"ID":26080,"Name":"?008","Points":9976,"X":541,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12167Z"},{"ID":26081,"Name":"012. Dla flag","Points":2309,"X":352,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12167Z"},{"ID":26082,"Name":"llllllllll","Points":9825,"X":624,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121671Z"},{"ID":26083,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":562,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121672Z"},{"ID":26084,"Name":"027","Points":9740,"X":662,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121673Z"},{"ID":26085,"Name":"Chekku - meito","Points":10216,"X":341,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121673Z"},{"ID":26086,"Name":"PiekƂo to inni","Points":10160,"X":564,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121674Z"},{"ID":26087,"Name":"Darma dla zawodnika","Points":10261,"X":510,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121675Z"},{"ID":26088,"Name":"044","Points":10311,"X":651,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121675Z"},{"ID":26089,"Name":"079","Points":12154,"X":440,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121676Z"},{"ID":26090,"Name":"BoOmBaa..","Points":6086,"X":437,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121677Z"},{"ID":26091,"Name":"020 Ellander","Points":7452,"X":458,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121678Z"},{"ID":26092,"Name":"Szlachcic","Points":7457,"X":344,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121678Z"},{"ID":26094,"Name":"M181_041","Points":8885,"X":358,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121679Z"},{"ID":26095,"Name":"Wioska barbarzyƄska","Points":9825,"X":626,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12168Z"},{"ID":26096,"Name":"North Barba 017","Points":9750,"X":423,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12168Z"},{"ID":26098,"Name":"Bagdad","Points":10068,"X":501,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121681Z"},{"ID":26099,"Name":"B028","Points":10052,"X":657,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121682Z"},{"ID":26100,"Name":"kathare","Points":10256,"X":556,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121682Z"},{"ID":26101,"Name":"Wioska barbarzyƄska","Points":10220,"X":557,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121683Z"},{"ID":26102,"Name":"~~LatającyHolender~~","Points":10160,"X":576,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121684Z"},{"ID":26103,"Name":"Jednak wolę gofry","Points":9331,"X":436,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121685Z"},{"ID":26104,"Name":"C005","Points":10211,"X":610,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121685Z"},{"ID":26105,"Name":"Taran 016","Points":9761,"X":600,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121686Z"},{"ID":26106,"Name":"Osada koczownikĂłw","Points":10220,"X":552,"Y":346,"Continent":"K35","Bonus":4,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121687Z"},{"ID":26108,"Name":"Ręcznik do zmiany","Points":10160,"X":371,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121687Z"},{"ID":26109,"Name":"DW1","Points":10311,"X":347,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121688Z"},{"ID":26110,"Name":"Jestem Poza Kontrolą","Points":9880,"X":351,"Y":552,"Continent":"K53","Bonus":4,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121689Z"},{"ID":26111,"Name":"078","Points":6390,"X":629,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121689Z"},{"ID":26112,"Name":"Pobozowisko","Points":8881,"X":385,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12169Z"},{"ID":26113,"Name":"Myk i do kieszonki","Points":9799,"X":357,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121691Z"},{"ID":26114,"Name":"Jednak wolę gofry","Points":5579,"X":435,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121692Z"},{"ID":26115,"Name":"A019 goƛć KamilToJa","Points":10224,"X":651,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121692Z"},{"ID":26116,"Name":"Jestem Poza Kontrolą","Points":9880,"X":350,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121693Z"},{"ID":26117,"Name":"012.zbyszek","Points":9794,"X":341,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121694Z"},{"ID":26118,"Name":"Ręcznik do zmiany","Points":10160,"X":369,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121694Z"},{"ID":26120,"Name":"Krosno 2","Points":6562,"X":534,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121695Z"},{"ID":26121,"Name":"Ręcznik do zmiany","Points":10160,"X":369,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121696Z"},{"ID":26123,"Name":"062","Points":8669,"X":630,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121697Z"},{"ID":26124,"Name":"off 100 %","Points":10273,"X":356,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121697Z"},{"ID":26125,"Name":"1v9 machine","Points":10019,"X":390,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121698Z"},{"ID":26126,"Name":"Darma dla zawodnika","Points":10476,"X":516,"Y":662,"Continent":"K65","Bonus":1,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121699Z"},{"ID":26127,"Name":"ADEN","Points":10144,"X":516,"Y":374,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121699Z"},{"ID":26128,"Name":"ObrzeĆŒa 093","Points":5251,"X":555,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1217Z"},{"ID":26129,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":561,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121701Z"},{"ID":26130,"Name":"Ręcznik do zmiany","Points":10019,"X":373,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121701Z"},{"ID":26131,"Name":"Pobozowisko","Points":5704,"X":385,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121702Z"},{"ID":26132,"Name":"004|| Cancer","Points":10019,"X":479,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121703Z"},{"ID":26133,"Name":"Szlachcic","Points":8968,"X":348,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121704Z"},{"ID":26134,"Name":"036","Points":8107,"X":653,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121704Z"},{"ID":26135,"Name":"Wioska barbarzyƄska","Points":9904,"X":537,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121705Z"},{"ID":26136,"Name":"North Barba 011","Points":9889,"X":419,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121706Z"},{"ID":26137,"Name":"The Game Has Only Just Begun","Points":9976,"X":343,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121707Z"},{"ID":26138,"Name":"jaaa","Points":10495,"X":639,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121707Z"},{"ID":26139,"Name":"#.24 Wioska barbarzyƄska","Points":6183,"X":655,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121708Z"},{"ID":26140,"Name":"#0045 barbarzyƄska","Points":10178,"X":469,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121709Z"},{"ID":26141,"Name":"0134","Points":10019,"X":429,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121709Z"},{"ID":26142,"Name":"011 VW Wioska barbarzyƄska","Points":5936,"X":366,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.12171Z"},{"ID":26143,"Name":"I#013","Points":9797,"X":601,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121711Z"},{"ID":26144,"Name":"DW10","Points":10375,"X":345,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121711Z"},{"ID":26145,"Name":"Szlachcic","Points":10478,"X":404,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.121712Z"},{"ID":26146,"Name":"Czarodziejka z Merkurego","Points":9089,"X":426,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155732Z"},{"ID":26147,"Name":"Polanie","Points":5322,"X":480,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155733Z"},{"ID":26148,"Name":"Wioska barbarzyƄska","Points":1702,"X":479,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155734Z"},{"ID":26149,"Name":"K34 - [103] Before Land","Points":10259,"X":450,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155735Z"},{"ID":26151,"Name":"Wioska Kaffik V","Points":7025,"X":634,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155735Z"},{"ID":26152,"Name":"A-012","Points":10245,"X":393,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155736Z"},{"ID":26153,"Name":"A-031","Points":10168,"X":392,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155737Z"},{"ID":26154,"Name":"021","Points":9914,"X":510,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155738Z"},{"ID":26155,"Name":"14. Altanka u pleƛni","Points":8393,"X":377,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155738Z"},{"ID":26156,"Name":"A023 Ateny","Points":10160,"X":653,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155739Z"},{"ID":26157,"Name":"Pobozowisko","Points":6608,"X":388,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15574Z"},{"ID":26158,"Name":"C004..","Points":10495,"X":366,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155741Z"},{"ID":26159,"Name":"Malinki 5","Points":6125,"X":657,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155741Z"},{"ID":26160,"Name":"Monia i Ruch","Points":9344,"X":594,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155742Z"},{"ID":26161,"Name":"Dajanka 04","Points":11550,"X":355,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155743Z"},{"ID":26162,"Name":"0011","Points":10204,"X":387,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155744Z"},{"ID":26163,"Name":"044. Valentia","Points":9641,"X":653,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155744Z"},{"ID":26165,"Name":"04 Wioska","Points":9740,"X":443,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698993706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155745Z"},{"ID":26166,"Name":"Wioska Bochun10","Points":8682,"X":342,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155746Z"},{"ID":26167,"Name":"Taki Pan","Points":6286,"X":506,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155747Z"},{"ID":26168,"Name":"kathare","Points":10183,"X":557,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155747Z"},{"ID":26169,"Name":"psycha sitting","Points":10178,"X":457,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155748Z"},{"ID":26170,"Name":"Krab","Points":9202,"X":434,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155749Z"},{"ID":26171,"Name":"Gattacka","Points":10470,"X":614,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15575Z"},{"ID":26172,"Name":"Jednak wolę gofry","Points":10178,"X":473,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15575Z"},{"ID":26174,"Name":"Jednak wolę gofry","Points":9191,"X":436,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155751Z"},{"ID":26175,"Name":"NI4","Points":10495,"X":345,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155752Z"},{"ID":26176,"Name":"Dajanka 35","Points":2092,"X":356,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155753Z"},{"ID":26177,"Name":".najazd zrobiony","Points":9827,"X":550,"Y":652,"Continent":"K65","Bonus":6,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155753Z"},{"ID":26178,"Name":"Zero Stresu","Points":9887,"X":445,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155754Z"},{"ID":26179,"Name":"Jestem Poza Kontrolą","Points":8659,"X":353,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155755Z"},{"ID":26183,"Name":"002 Elizjum","Points":8505,"X":378,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155755Z"},{"ID":26184,"Name":"Igneum Castrum","Points":9083,"X":631,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155756Z"},{"ID":26185,"Name":"013.","Points":9835,"X":395,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155757Z"},{"ID":26186,"Name":"095 duko 4","Points":10001,"X":549,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155758Z"},{"ID":26187,"Name":"Bunkier 001","Points":10002,"X":614,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155758Z"},{"ID":26188,"Name":"Ave Why!","Points":10116,"X":477,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155759Z"},{"ID":26189,"Name":"Wioska barbarzyƄska","Points":8401,"X":488,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15576Z"},{"ID":26190,"Name":"BEZDZIETNY KAWALER","Points":5121,"X":416,"Y":631,"Continent":"K64","Bonus":8,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155761Z"},{"ID":26191,"Name":"02.02.02","Points":10195,"X":371,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155761Z"},{"ID":26192,"Name":".///...//././././././././","Points":9772,"X":392,"Y":620,"Continent":"K63","Bonus":4,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155762Z"},{"ID":26194,"Name":"008. Dla flag","Points":6669,"X":356,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155763Z"},{"ID":26195,"Name":"Szulernia","Points":9981,"X":410,"Y":365,"Continent":"K34","Bonus":1,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155764Z"},{"ID":26196,"Name":"Sexxy","Points":10019,"X":606,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155764Z"},{"ID":26197,"Name":"0492","Points":9750,"X":530,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155765Z"},{"ID":26198,"Name":"007","Points":11550,"X":659,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155766Z"},{"ID":26199,"Name":"017|| Ursa Major","Points":10019,"X":500,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155767Z"},{"ID":26200,"Name":"Jednak wolę gofry","Points":6622,"X":436,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155768Z"},{"ID":26201,"Name":"044,xxx","Points":10328,"X":512,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155768Z"},{"ID":26202,"Name":"015 barbarzyƄska","Points":10281,"X":642,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155769Z"},{"ID":26203,"Name":"Lord Lord Franek .#053","Points":9962,"X":528,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15577Z"},{"ID":26204,"Name":"KRÓL PAPI WIELKI","Points":7168,"X":600,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155771Z"},{"ID":26205,"Name":"041","Points":9596,"X":659,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155771Z"},{"ID":26206,"Name":"PiekƂo to inni","Points":10160,"X":563,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155772Z"},{"ID":26207,"Name":"#0094 barbarzyƄska","Points":8511,"X":460,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155773Z"},{"ID":26208,"Name":"Wioska barbarzyƄska","Points":4660,"X":535,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155774Z"},{"ID":26209,"Name":"Chekku - meito","Points":8932,"X":343,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155774Z"},{"ID":26210,"Name":"035 barbarzyƄska","Points":6153,"X":643,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155775Z"},{"ID":26211,"Name":"015","Points":9022,"X":425,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155776Z"},{"ID":26212,"Name":"D 011","Points":9668,"X":661,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155776Z"},{"ID":26213,"Name":"Architekci PlacĂłw Boju","Points":8986,"X":343,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155777Z"},{"ID":26214,"Name":"019.","Points":9835,"X":400,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155778Z"},{"ID":26216,"Name":"BACÓWKA |044|","Points":10109,"X":627,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155779Z"},{"ID":26217,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":528,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155779Z"},{"ID":26218,"Name":"0008","Points":9993,"X":417,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15578Z"},{"ID":26219,"Name":"061. Ariminium","Points":8586,"X":645,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155781Z"},{"ID":26220,"Name":"211...barba","Points":4562,"X":465,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155782Z"},{"ID":26221,"Name":"North Barba 026","Points":9747,"X":422,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155782Z"},{"ID":26222,"Name":"BEZDZIETNY KAWALER","Points":8538,"X":415,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155783Z"},{"ID":26223,"Name":"Wioska pdw78","Points":9164,"X":472,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155784Z"},{"ID":26224,"Name":"K34 - [102] Before Land","Points":10259,"X":443,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155785Z"},{"ID":26225,"Name":"#.41 Wioska barbarzyƄska","Points":2773,"X":648,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155786Z"},{"ID":26226,"Name":"Wioska barbarzyƄska","Points":9554,"X":653,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155786Z"},{"ID":26227,"Name":"K34 - [013] Before Land","Points":10259,"X":447,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155787Z"},{"ID":26228,"Name":"Myk i do kieszonki","Points":10104,"X":359,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155788Z"},{"ID":26229,"Name":"013. Dla flag","Points":8082,"X":349,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155789Z"},{"ID":26230,"Name":"Dąbrowa 0014","Points":10718,"X":364,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155789Z"},{"ID":26231,"Name":"#0004 BigKnaga","Points":10178,"X":467,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15579Z"},{"ID":26232,"Name":"A007","Points":4253,"X":405,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155791Z"},{"ID":26234,"Name":"Bagienko.Anker...","Points":8711,"X":377,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155791Z"},{"ID":26235,"Name":"015 VW Wioska barbarzyƄska","Points":5305,"X":363,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155792Z"},{"ID":26236,"Name":"BACÓWKA |008|","Points":12154,"X":632,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155793Z"},{"ID":26237,"Name":"PiekƂo to inni","Points":10160,"X":577,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155794Z"},{"ID":26240,"Name":".///...//././././././././","Points":9854,"X":377,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155794Z"},{"ID":26241,"Name":"|A| Capitol","Points":10495,"X":480,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155795Z"},{"ID":26243,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":568,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155796Z"},{"ID":26244,"Name":"0009","Points":7168,"X":612,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155797Z"},{"ID":26245,"Name":"North Barba 020","Points":9971,"X":425,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155797Z"},{"ID":26247,"Name":"qqq","Points":9966,"X":628,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155798Z"},{"ID":26248,"Name":"007 MONETKI","Points":8401,"X":654,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155799Z"},{"ID":26249,"Name":"Jestem Poza Kontrolą","Points":9880,"X":348,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1558Z"},{"ID":26251,"Name":"20. ƁowczaƄskie wygibasy","Points":8487,"X":370,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1558Z"},{"ID":26252,"Name":"Aboard na","Points":9835,"X":489,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155801Z"},{"ID":26253,"Name":"Avanti!","Points":9950,"X":345,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155802Z"},{"ID":26254,"Name":"Jehu_Kingdom_59","Points":4470,"X":644,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155803Z"},{"ID":26255,"Name":"098","Points":10495,"X":618,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155803Z"},{"ID":26257,"Name":"The Game Has Only Just Begun","Points":9933,"X":344,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155804Z"},{"ID":26259,"Name":"*036*","Points":8289,"X":631,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155805Z"},{"ID":26260,"Name":"099","Points":10495,"X":620,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155806Z"},{"ID":26261,"Name":"Valhalla A2","Points":7758,"X":376,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155807Z"},{"ID":26262,"Name":"A029 La Mata","Points":10160,"X":655,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155807Z"},{"ID":26263,"Name":"*Lister","Points":9994,"X":576,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155808Z"},{"ID":26264,"Name":"The Game Has Only Just Begun","Points":9976,"X":348,"Y":536,"Continent":"K53","Bonus":6,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155809Z"},{"ID":26265,"Name":"skev","Points":10287,"X":636,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15581Z"},{"ID":26266,"Name":"Hibana","Points":8636,"X":372,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155811Z"},{"ID":26267,"Name":"Krzychu , kadetem tera .","Points":10362,"X":588,"Y":630,"Continent":"K65","Bonus":7,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155811Z"},{"ID":26268,"Name":"*Nomad","Points":9761,"X":578,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155812Z"},{"ID":26269,"Name":"Szlachcic","Points":10019,"X":346,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155813Z"},{"ID":26270,"Name":"032","Points":9976,"X":569,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155814Z"},{"ID":26271,"Name":"Wioska Tomek z Tyyrra X Adam547","Points":398,"X":371,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":610196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155815Z"},{"ID":26272,"Name":"Wioska Bochun10","Points":8202,"X":337,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155815Z"},{"ID":26274,"Name":"0588","Points":9821,"X":544,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155816Z"},{"ID":26275,"Name":"off 100 %","Points":10248,"X":361,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155817Z"},{"ID":26276,"Name":"Taras","Points":10211,"X":590,"Y":365,"Continent":"K35","Bonus":5,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155818Z"},{"ID":26278,"Name":"024","Points":9840,"X":656,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155818Z"},{"ID":26279,"Name":"*Nonsens","Points":9761,"X":577,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155819Z"},{"ID":26280,"Name":"Wioska barbarzyƄska","Points":6347,"X":347,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15582Z"},{"ID":26281,"Name":"Chekku - meito","Points":10066,"X":339,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155821Z"},{"ID":26282,"Name":"MojeSzczytToTwĂłjDno","Points":10720,"X":510,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155822Z"},{"ID":26284,"Name":"079...barbarka","Points":10226,"X":460,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155822Z"},{"ID":26285,"Name":"034","Points":9439,"X":659,"Y":490,"Continent":"K46","Bonus":9,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155823Z"},{"ID":26287,"Name":"PiekƂo to inni","Points":10160,"X":570,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155824Z"},{"ID":26288,"Name":"Wioska majonespzn","Points":10495,"X":614,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155825Z"},{"ID":26289,"Name":"98k$ Grvvyq","Points":10495,"X":652,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155825Z"},{"ID":26290,"Name":"c Wioska 015","Points":8671,"X":395,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155826Z"},{"ID":26291,"Name":"Nowa 31","Points":9824,"X":646,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155827Z"},{"ID":26292,"Name":"No Way","Points":10495,"X":345,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155828Z"},{"ID":26293,"Name":"109","Points":10019,"X":348,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155828Z"},{"ID":26294,"Name":"The Game Has Only Just Begun","Points":9976,"X":345,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155829Z"},{"ID":26295,"Name":"Battery","Points":4783,"X":630,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15583Z"},{"ID":26296,"Name":"Maszlug kolonia XVI","Points":5129,"X":364,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155831Z"},{"ID":26297,"Name":"079","Points":3441,"X":628,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155831Z"},{"ID":26298,"Name":"083","Points":9761,"X":653,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155832Z"},{"ID":26299,"Name":"064...barbarka","Points":10237,"X":456,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155833Z"},{"ID":26300,"Name":"Wioska 002","Points":10178,"X":388,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155834Z"},{"ID":26301,"Name":"024.barbara 8","Points":4328,"X":339,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155835Z"},{"ID":26302,"Name":"0630","Points":10559,"X":379,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155835Z"},{"ID":26303,"Name":"JawwmG P","Points":9574,"X":651,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155836Z"},{"ID":26304,"Name":"A047","Points":7656,"X":587,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155837Z"},{"ID":26305,"Name":"16. Trumienka","Points":9711,"X":637,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155838Z"},{"ID":26306,"Name":"Wioska Bochun10","Points":8754,"X":339,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155838Z"},{"ID":26307,"Name":"041","Points":10311,"X":649,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155839Z"},{"ID":26308,"Name":"Ave Why!","Points":9818,"X":497,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15584Z"},{"ID":26309,"Name":"Jaaa","Points":10479,"X":623,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155841Z"},{"ID":26310,"Name":"EMERYTOWANY KUZYN","Points":4267,"X":428,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155841Z"},{"ID":26311,"Name":"O22 Inari","Points":10016,"X":660,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155842Z"},{"ID":26313,"Name":"045","Points":10311,"X":655,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155843Z"},{"ID":26314,"Name":"Wioska barbarzyƄska","Points":5470,"X":612,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155844Z"},{"ID":26315,"Name":"0023","Points":8032,"X":413,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155845Z"},{"ID":26316,"Name":".030.","Points":10393,"X":486,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155846Z"},{"ID":26317,"Name":"0293","Points":10019,"X":533,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155846Z"},{"ID":26318,"Name":"Lord Lord Franek .#054","Points":9968,"X":532,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155847Z"},{"ID":26319,"Name":"Jestem Poza Kontrolą","Points":8653,"X":349,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155848Z"},{"ID":26320,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":522,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155849Z"},{"ID":26321,"Name":"kulik 000","Points":9877,"X":400,"Y":508,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155849Z"},{"ID":26322,"Name":"Wioska barbarzyƄska","Points":1963,"X":649,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15585Z"},{"ID":26324,"Name":"A0250","Points":10362,"X":338,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155851Z"},{"ID":26325,"Name":"KUZYN","Points":10160,"X":413,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155852Z"},{"ID":26326,"Name":"082","Points":10495,"X":617,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155852Z"},{"ID":26327,"Name":"Macp 4","Points":4009,"X":339,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":61791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155853Z"},{"ID":26329,"Name":"ona","Points":10168,"X":389,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155854Z"},{"ID":26330,"Name":"K34 - [019] Before Land","Points":10259,"X":450,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155855Z"},{"ID":26331,"Name":"K34 - [127] Before Land","Points":10016,"X":444,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155855Z"},{"ID":26334,"Name":"Darmowe przeprowadzki","Points":11321,"X":474,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155856Z"},{"ID":26335,"Name":"037 mys","Points":9976,"X":556,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155857Z"},{"ID":26336,"Name":"M181_043","Points":9043,"X":358,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155858Z"},{"ID":26337,"Name":"Wioska 003","Points":10178,"X":388,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155858Z"},{"ID":26338,"Name":"090...bar","Points":10301,"X":457,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155859Z"},{"ID":26339,"Name":"Wioska barbarzyƄska","Points":9645,"X":483,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15586Z"},{"ID":26340,"Name":"0456","Points":3893,"X":378,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155861Z"},{"ID":26341,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":527,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155861Z"},{"ID":26342,"Name":"23. KaruTown","Points":9735,"X":638,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155862Z"},{"ID":26343,"Name":"#.18 XXX","Points":10019,"X":661,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155863Z"},{"ID":26345,"Name":"Szulernia","Points":9989,"X":410,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155864Z"},{"ID":26346,"Name":"010. Fulham","Points":11130,"X":484,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155864Z"},{"ID":26347,"Name":"Wiocha","Points":10728,"X":426,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155865Z"},{"ID":26348,"Name":"KREV 003","Points":9188,"X":644,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155866Z"},{"ID":26349,"Name":"0193","Points":10019,"X":556,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155867Z"},{"ID":26350,"Name":"Ć»UBRAWKA 009","Points":10005,"X":600,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155867Z"},{"ID":26351,"Name":"MojeSzczytToTwĂłjDno","Points":10474,"X":511,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155868Z"},{"ID":26352,"Name":"*040","Points":9387,"X":590,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155869Z"},{"ID":26353,"Name":"Lord Lord Franek .#035","Points":10047,"X":521,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15587Z"},{"ID":26354,"Name":"psycha sitting","Points":10311,"X":448,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155871Z"},{"ID":26355,"Name":"Wioska Bochun10","Points":10495,"X":338,"Y":497,"Continent":"K43","Bonus":3,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155871Z"},{"ID":26356,"Name":"038","Points":9797,"X":654,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155872Z"},{"ID":26357,"Name":"#0060 barbarzyƄska","Points":10178,"X":468,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155873Z"},{"ID":26358,"Name":"NI2","Points":10495,"X":347,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155874Z"},{"ID":26359,"Name":"0024","Points":8702,"X":415,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155874Z"},{"ID":26360,"Name":"Szlachcic","Points":10393,"X":347,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155875Z"},{"ID":26361,"Name":"Lord Lord Franek .#055","Points":9960,"X":534,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155876Z"},{"ID":26362,"Name":"Dzielnica handlowa","Points":4918,"X":481,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155876Z"},{"ID":26363,"Name":"off 100 %","Points":10256,"X":355,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155877Z"},{"ID":26364,"Name":"016) PustkĂłw Wilczkowski","Points":2807,"X":538,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155878Z"},{"ID":26365,"Name":"Krosno 11","Points":4281,"X":532,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155879Z"},{"ID":26366,"Name":"041...ZACHÓD","Points":10220,"X":453,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155879Z"},{"ID":26367,"Name":"I#021","Points":8150,"X":598,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15588Z"},{"ID":26368,"Name":"0024","Points":9958,"X":418,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155881Z"},{"ID":26369,"Name":"Lord Lord Franek .#056","Points":10029,"X":537,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155882Z"},{"ID":26370,"Name":"SoƂtys Wsi Legionistars","Points":7586,"X":396,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155882Z"},{"ID":26371,"Name":"yogi czysta","Points":6469,"X":546,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155883Z"},{"ID":26372,"Name":"022 PotÄ™ĆŒny Dzban","Points":10474,"X":392,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155884Z"},{"ID":26373,"Name":"049","Points":10160,"X":638,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155884Z"},{"ID":26374,"Name":"011. Millwall","Points":9197,"X":484,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155885Z"},{"ID":26376,"Name":"Wioska barbarzyƄska II","Points":2861,"X":377,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155886Z"},{"ID":26377,"Name":"Jestem Poza Kontrolą","Points":9764,"X":345,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155887Z"},{"ID":26378,"Name":"Sony 911","Points":7857,"X":639,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155887Z"},{"ID":26379,"Name":"BoOmBaa..","Points":10247,"X":436,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155888Z"},{"ID":26380,"Name":"D 004","Points":9244,"X":659,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155889Z"},{"ID":26382,"Name":"014","Points":7148,"X":458,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15589Z"},{"ID":26383,"Name":"M181_020","Points":9547,"X":359,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155891Z"},{"ID":26384,"Name":"troja4","Points":9955,"X":560,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155891Z"},{"ID":26385,"Name":"K34 x033","Points":10705,"X":409,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155892Z"},{"ID":26386,"Name":"Wioska barbarzyƄska","Points":6980,"X":618,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155893Z"},{"ID":26387,"Name":"cc Sqnowqqqqqqqqqqqqqqqqqqq","Points":10160,"X":409,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155894Z"},{"ID":26388,"Name":"Szlachcic","Points":10019,"X":345,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155894Z"},{"ID":26389,"Name":"005 Mikrus V","Points":9835,"X":392,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155895Z"},{"ID":26390,"Name":"PiekƂo to inni","Points":10160,"X":574,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155896Z"},{"ID":26391,"Name":"110","Points":9899,"X":630,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155897Z"},{"ID":26392,"Name":"12. Danucha","Points":10273,"X":372,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155897Z"},{"ID":26393,"Name":"x005","Points":10495,"X":357,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155898Z"},{"ID":26394,"Name":"ZƂa","Points":4595,"X":540,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155899Z"},{"ID":26395,"Name":"cc pol006qqqqqqqqqqqqqqqqqqqqq","Points":5194,"X":398,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1559Z"},{"ID":26396,"Name":"MojeSzczytToTwĂłjDno","Points":10476,"X":511,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1559Z"},{"ID":26397,"Name":"008) SƂupiec","Points":2574,"X":545,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155901Z"},{"ID":26398,"Name":"WesoƂych ƚwiąt","Points":10066,"X":572,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155902Z"},{"ID":26399,"Name":"cc Wielka Mqqqqqqqqqqqqqqq","Points":10155,"X":407,"Y":376,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155903Z"},{"ID":26400,"Name":"Darma dla zawodnika","Points":10475,"X":514,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155903Z"},{"ID":26401,"Name":"=037= Wioska barbarzyƄska","Points":8759,"X":655,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155904Z"},{"ID":26402,"Name":"Janusz biznesu","Points":10495,"X":590,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155905Z"},{"ID":26403,"Name":"017 bounce xD","Points":10019,"X":589,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155906Z"},{"ID":26404,"Name":"026","Points":9976,"X":564,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155906Z"},{"ID":26405,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":559,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155907Z"},{"ID":26406,"Name":"BEZDZIETNY KAWALER","Points":8848,"X":418,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155908Z"},{"ID":26408,"Name":"Wioska barbarzyƄska","Points":8646,"X":659,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155909Z"},{"ID":26409,"Name":"Dzikie wsparcie","Points":9809,"X":470,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15591Z"},{"ID":26410,"Name":"Myk i do kieszonki","Points":9799,"X":359,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15591Z"},{"ID":26411,"Name":"018 koczownikĂłw","Points":10282,"X":641,"Y":424,"Continent":"K46","Bonus":9,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155911Z"},{"ID":26412,"Name":"ObrzeĆŒa 092","Points":7597,"X":551,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155912Z"},{"ID":26413,"Name":"Jaaa","Points":10322,"X":660,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155912Z"},{"ID":26414,"Name":"JEDNORĘKI BANDYTA","Points":9648,"X":411,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155913Z"},{"ID":26415,"Name":"Wioska 037","Points":9761,"X":632,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155914Z"},{"ID":26416,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":508,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155915Z"},{"ID":26417,"Name":"044...PÓƁNOC","Points":10265,"X":461,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155915Z"},{"ID":26418,"Name":"0041","Points":9993,"X":417,"Y":367,"Continent":"K34","Bonus":8,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155916Z"},{"ID":26419,"Name":"017","Points":3605,"X":424,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155917Z"},{"ID":26420,"Name":"Wioska NePtuNn998","Points":9952,"X":465,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155918Z"},{"ID":26421,"Name":"DW9","Points":10223,"X":346,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155919Z"},{"ID":26422,"Name":"0197","Points":10083,"X":557,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155919Z"},{"ID":26423,"Name":"A017 goƛć D0dG3r3k","Points":10301,"X":657,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15592Z"},{"ID":26424,"Name":"Wioska barbarzyƄska","Points":3387,"X":379,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155921Z"},{"ID":26425,"Name":"Wioska barbarzyƄska","Points":7469,"X":346,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155922Z"},{"ID":26426,"Name":"cc Wioska M6","Points":8201,"X":403,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155922Z"},{"ID":26427,"Name":"sony911","Points":10226,"X":586,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155923Z"},{"ID":26428,"Name":"Chekku - meito","Points":8993,"X":344,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155924Z"},{"ID":26429,"Name":"BEZDZIETNY KAWALER","Points":6682,"X":414,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155925Z"},{"ID":26430,"Name":"067 | PALESTINA","Points":3469,"X":642,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155925Z"},{"ID":26431,"Name":"North PƂoƄsk","Points":9898,"X":426,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155926Z"},{"ID":26432,"Name":"Szlachcic","Points":10487,"X":405,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155927Z"},{"ID":26433,"Name":"Chekku - meito","Points":9072,"X":343,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155928Z"},{"ID":26434,"Name":"0002","Points":9993,"X":412,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155928Z"},{"ID":26435,"Name":"049","Points":9425,"X":645,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155929Z"},{"ID":26436,"Name":"Wioska barbarzyƄska","Points":7367,"X":399,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15593Z"},{"ID":26437,"Name":"*034*","Points":7205,"X":633,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15593Z"},{"ID":26438,"Name":"Pobozowisko","Points":10957,"X":384,"Y":613,"Continent":"K63","Bonus":2,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155931Z"},{"ID":26439,"Name":"019 VW Wioska barbarzyƄska","Points":6142,"X":368,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155932Z"},{"ID":26440,"Name":"08. Maximum Acceleration","Points":9811,"X":495,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155933Z"},{"ID":26441,"Name":"psycha sitting","Points":5018,"X":457,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155933Z"},{"ID":26442,"Name":"033 NePtuNn998","Points":9976,"X":468,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155934Z"},{"ID":26443,"Name":"029","Points":7619,"X":660,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":849006412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155935Z"},{"ID":26444,"Name":"028 | PALESTINA","Points":9544,"X":638,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155936Z"},{"ID":26445,"Name":"z 035","Points":10220,"X":587,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155936Z"},{"ID":26446,"Name":"PiekƂo to inni","Points":10160,"X":568,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155937Z"},{"ID":26447,"Name":"Wioska barbarzyƄska","Points":1491,"X":394,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155938Z"},{"ID":26448,"Name":"Wioska barbarzyƄska","Points":3210,"X":342,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155939Z"},{"ID":26451,"Name":"A0302","Points":10362,"X":340,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155939Z"},{"ID":26452,"Name":"0011","Points":9993,"X":418,"Y":363,"Continent":"K34","Bonus":7,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15594Z"},{"ID":26453,"Name":"O27 Valga","Points":10066,"X":660,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155941Z"},{"ID":26454,"Name":"Wioska 007","Points":10168,"X":387,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155942Z"},{"ID":26455,"Name":"Bagdad","Points":10068,"X":499,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155942Z"},{"ID":26456,"Name":"100","Points":10495,"X":624,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155943Z"},{"ID":26458,"Name":"Wioska 000","Points":6870,"X":659,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155944Z"},{"ID":26460,"Name":"Skazany Na Instynkt","Points":9621,"X":367,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155945Z"},{"ID":26461,"Name":"Kentin ufam Tobie","Points":10000,"X":340,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155945Z"},{"ID":26462,"Name":"0015 centrum","Points":10168,"X":389,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155946Z"},{"ID":26463,"Name":"FKG 01-08","Points":9835,"X":415,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155947Z"},{"ID":26464,"Name":".14. Limoges a","Points":10026,"X":370,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":9021920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155948Z"},{"ID":26465,"Name":"Wioska 4","Points":8790,"X":423,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155948Z"},{"ID":26466,"Name":"0459","Points":3815,"X":379,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155949Z"},{"ID":26467,"Name":"A0251","Points":10362,"X":340,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15595Z"},{"ID":26468,"Name":"021 Wioska","Points":6079,"X":656,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155951Z"},{"ID":26469,"Name":"wCana","Points":4959,"X":444,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155951Z"},{"ID":26470,"Name":"Jaaa","Points":10263,"X":629,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155952Z"},{"ID":26471,"Name":"Wioska barbarzyƄska","Points":5154,"X":415,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155953Z"},{"ID":26472,"Name":"A020 darek jackr1","Points":10301,"X":659,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155954Z"},{"ID":26473,"Name":"Monetkownia","Points":10237,"X":608,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155954Z"},{"ID":26474,"Name":"Lord Lord Franek .#012","Points":10252,"X":535,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155955Z"},{"ID":26475,"Name":"B 012","Points":9801,"X":658,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155956Z"},{"ID":26476,"Name":"045","Points":8235,"X":647,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155957Z"},{"ID":26477,"Name":"005.","Points":9835,"X":402,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155957Z"},{"ID":26478,"Name":"076","Points":8416,"X":622,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155958Z"},{"ID":26479,"Name":"0017","Points":9993,"X":415,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155959Z"},{"ID":26480,"Name":"B 044","Points":9579,"X":654,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15596Z"},{"ID":26481,"Name":"Lord Lord Franek .#057","Points":9959,"X":521,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15596Z"},{"ID":26482,"Name":"Wioska barbarzyƄska","Points":5683,"X":338,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155961Z"},{"ID":26483,"Name":"004 Eden","Points":10205,"X":380,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155962Z"},{"ID":26484,"Name":"0493","Points":10252,"X":541,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155963Z"},{"ID":26485,"Name":"Kentin ufam Tobie","Points":10000,"X":340,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155963Z"},{"ID":26487,"Name":"Szlachcic","Points":10495,"X":348,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155964Z"},{"ID":26488,"Name":"Darmowe przeprowadzki","Points":9809,"X":471,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155965Z"},{"ID":26489,"Name":"022.","Points":9835,"X":401,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155966Z"},{"ID":26490,"Name":"Lord Lord Franek .#036","Points":9984,"X":530,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155967Z"},{"ID":26491,"Name":"016","Points":2427,"X":381,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155968Z"},{"ID":26492,"Name":"011...ZACH_O","Points":10495,"X":454,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155969Z"},{"ID":26493,"Name":"A0070","Points":10362,"X":343,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15597Z"},{"ID":26495,"Name":"0025","Points":6296,"X":413,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155972Z"},{"ID":26496,"Name":"039 040","Points":10001,"X":550,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155973Z"},{"ID":26497,"Name":"XXXX","Points":10036,"X":496,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155974Z"},{"ID":26498,"Name":"039","Points":9229,"X":663,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155975Z"},{"ID":26499,"Name":"=046= Wioska barbarzyƄska","Points":10580,"X":655,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155976Z"},{"ID":26500,"Name":"A026","Points":10211,"X":587,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155977Z"},{"ID":26501,"Name":".///...//././././././././","Points":8278,"X":389,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155977Z"},{"ID":26502,"Name":"cc Osada 11","Points":5636,"X":400,"Y":374,"Continent":"K34","Bonus":7,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155978Z"},{"ID":26503,"Name":"jaaa","Points":10495,"X":634,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155979Z"},{"ID":26504,"Name":"No. 8","Points":9276,"X":479,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155979Z"},{"ID":26505,"Name":"022","Points":10487,"X":358,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15598Z"},{"ID":26506,"Name":"PiekƂo to inni","Points":10019,"X":576,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155981Z"},{"ID":26507,"Name":"025","Points":8425,"X":419,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155981Z"},{"ID":26508,"Name":"2.10","Points":9188,"X":345,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155982Z"},{"ID":26509,"Name":"BEZDZIETNY KAWALER","Points":10160,"X":413,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155983Z"},{"ID":26510,"Name":"Wioska barbarzyƄska","Points":10226,"X":549,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155983Z"},{"ID":26511,"Name":"Pobozowisko","Points":10806,"X":385,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155984Z"},{"ID":26512,"Name":"#0047 barbarzyƄska","Points":10178,"X":473,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155984Z"},{"ID":26513,"Name":"sony911","Points":10226,"X":588,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155985Z"},{"ID":26514,"Name":"042","Points":9740,"X":651,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155986Z"},{"ID":26515,"Name":"20. Morasko","Points":11946,"X":508,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155986Z"},{"ID":26516,"Name":"B11","Points":10083,"X":647,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155987Z"},{"ID":26517,"Name":"B 045","Points":9256,"X":661,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155987Z"},{"ID":26518,"Name":"Lord Lord Franek .#151","Points":9959,"X":503,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155988Z"},{"ID":26519,"Name":"044","Points":6006,"X":649,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155988Z"},{"ID":26520,"Name":"2.06","Points":7770,"X":342,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155989Z"},{"ID":26521,"Name":"BEZDZIETNY KAWALER","Points":6237,"X":415,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155989Z"},{"ID":26522,"Name":"A 010","Points":10362,"X":603,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15599Z"},{"ID":26524,"Name":"Jestem Poza Kontrolą","Points":9742,"X":349,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155991Z"},{"ID":26525,"Name":"Alicization7","Points":10311,"X":461,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155991Z"},{"ID":26526,"Name":"*Noname","Points":8802,"X":576,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155992Z"},{"ID":26527,"Name":"005 Oxenfurt","Points":7765,"X":467,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155992Z"},{"ID":26528,"Name":"Krakowskie Przedmieƛcie CXSPĆ»","Points":9782,"X":489,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155993Z"},{"ID":26529,"Name":"01. Jamajka","Points":9735,"X":637,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155994Z"},{"ID":26530,"Name":"Szlachcic","Points":10083,"X":345,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155994Z"},{"ID":26531,"Name":"0012","Points":9837,"X":386,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155995Z"},{"ID":26533,"Name":"Wioska Conana","Points":3956,"X":383,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155995Z"},{"ID":26534,"Name":"Marshmike","Points":5414,"X":493,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":849096592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155996Z"},{"ID":26535,"Name":"Myk i do kieszonki","Points":9799,"X":354,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155996Z"},{"ID":26536,"Name":"Kentin ufam Tobie","Points":10064,"X":345,"Y":475,"Continent":"K43","Bonus":1,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155997Z"},{"ID":26538,"Name":"Darmowe przeprowadzki","Points":11041,"X":473,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155997Z"},{"ID":26539,"Name":"0094","Points":6984,"X":622,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155998Z"},{"ID":26540,"Name":"Postarajcie się bardziej ;*","Points":10122,"X":600,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155999Z"},{"ID":26541,"Name":"Bagdad","Points":10068,"X":503,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.155999Z"},{"ID":26542,"Name":"PiekƂo to inni","Points":10160,"X":581,"Y":361,"Continent":"K35","Bonus":3,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156Z"},{"ID":26543,"Name":"#0006 deleted","Points":10178,"X":474,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156Z"},{"ID":26544,"Name":"032 Barba","Points":9553,"X":657,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156001Z"},{"ID":26545,"Name":"Chekku - meito","Points":9976,"X":345,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156001Z"},{"ID":26546,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":607,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156002Z"},{"ID":26547,"Name":"Bagienko.Anker...","Points":7175,"X":376,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156002Z"},{"ID":26548,"Name":"043","Points":9761,"X":660,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156003Z"},{"ID":26549,"Name":"009) WiązĂłw","Points":2910,"X":545,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156003Z"},{"ID":26550,"Name":"056. Metis","Points":9193,"X":658,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156004Z"},{"ID":26551,"Name":"0495","Points":10083,"X":517,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156005Z"},{"ID":26552,"Name":"009 Niuniuniuniu","Points":10426,"X":539,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":849108623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156005Z"},{"ID":26553,"Name":"lllllllll","Points":10224,"X":623,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156006Z"},{"ID":26554,"Name":"Wioska","Points":10178,"X":374,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156006Z"},{"ID":26555,"Name":"023 MONETKI","Points":9544,"X":661,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156007Z"},{"ID":26556,"Name":"Wyngiel we wsi","Points":8402,"X":552,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156007Z"},{"ID":26557,"Name":"O17 Caripito","Points":10006,"X":661,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156008Z"},{"ID":26558,"Name":"kathare","Points":9801,"X":555,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156008Z"},{"ID":26559,"Name":"030 MONETKI","Points":9544,"X":661,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156009Z"},{"ID":26560,"Name":"kathare","Points":9225,"X":560,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15601Z"},{"ID":26561,"Name":"001. A-RE-SE-EY","Points":10252,"X":590,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15601Z"},{"ID":26562,"Name":"Wioska barbarzyƄska","Points":8843,"X":485,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156011Z"},{"ID":26563,"Name":"Nowa wioska","Points":10535,"X":448,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156011Z"},{"ID":26565,"Name":"Mordor","Points":8246,"X":623,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156012Z"},{"ID":26567,"Name":"008","Points":10160,"X":492,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156012Z"},{"ID":26568,"Name":"022 Harry Potter","Points":7086,"X":394,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156013Z"},{"ID":26569,"Name":"*4623* KoƄ mechaniczny","Points":10287,"X":649,"Y":437,"Continent":"K46","Bonus":9,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156013Z"},{"ID":26570,"Name":"I#020","Points":9797,"X":597,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156014Z"},{"ID":26571,"Name":"010","Points":6404,"X":593,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156014Z"},{"ID":26572,"Name":"aAa Szlaban 2","Points":12154,"X":607,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156015Z"},{"ID":26573,"Name":"PiekƂo to inni","Points":10160,"X":573,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156016Z"},{"ID":26575,"Name":"Wioska 106","Points":10016,"X":640,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156016Z"},{"ID":26576,"Name":"W 07","Points":9771,"X":646,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156017Z"},{"ID":26577,"Name":"Aleje Jerozolimskie BO","Points":9835,"X":494,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156017Z"},{"ID":26578,"Name":"0496","Points":10019,"X":534,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156018Z"},{"ID":26579,"Name":"023","Points":9976,"X":564,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156018Z"},{"ID":26580,"Name":"z 006","Points":10476,"X":574,"Y":640,"Continent":"K65","Bonus":8,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156019Z"},{"ID":26581,"Name":"0662","Points":10559,"X":380,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15602Z"},{"ID":26582,"Name":"BEZDZIETNY KAWALER","Points":9449,"X":417,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15602Z"},{"ID":26583,"Name":"PUSTA","Points":7044,"X":634,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156021Z"},{"ID":26584,"Name":"Szulernia","Points":9993,"X":411,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156021Z"},{"ID":26585,"Name":"0497","Points":10160,"X":526,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156022Z"},{"ID":26586,"Name":"041","Points":9976,"X":570,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156022Z"},{"ID":26587,"Name":"Valevag 140","Points":2741,"X":357,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156023Z"},{"ID":26588,"Name":"Gattacka","Points":10890,"X":613,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156023Z"},{"ID":26589,"Name":"Wioska","Points":9043,"X":340,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156024Z"},{"ID":26590,"Name":"053.","Points":9835,"X":408,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156025Z"},{"ID":26592,"Name":"Oman","Points":4566,"X":482,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156025Z"},{"ID":26593,"Name":"006","Points":10019,"X":456,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156026Z"},{"ID":26594,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":559,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156026Z"},{"ID":26595,"Name":"101","Points":10495,"X":623,"Y":604,"Continent":"K66","Bonus":8,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156027Z"},{"ID":26596,"Name":"Wioska","Points":7389,"X":597,"Y":520,"Continent":"K55","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156027Z"},{"ID":26597,"Name":"No. 5","Points":8969,"X":476,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156028Z"},{"ID":26598,"Name":"Wioska barbarzyƄska","Points":9761,"X":489,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156028Z"},{"ID":26599,"Name":"040.","Points":9835,"X":397,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156029Z"},{"ID":26600,"Name":"Gattacka","Points":10470,"X":617,"Y":387,"Continent":"K36","Bonus":4,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15603Z"},{"ID":26601,"Name":"002.","Points":10838,"X":484,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15603Z"},{"ID":26602,"Name":"Darma dla zawodnika","Points":10566,"X":514,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156031Z"},{"ID":26603,"Name":"Szczytno","Points":2696,"X":542,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156031Z"},{"ID":26604,"Name":"Wioska barbarzyƄska","Points":8052,"X":657,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156032Z"},{"ID":26605,"Name":"Lord Lord Franek .#058","Points":9976,"X":521,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156032Z"},{"ID":26606,"Name":"*085*","Points":10211,"X":359,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156033Z"},{"ID":26607,"Name":"116...centr","Points":10229,"X":457,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156034Z"},{"ID":26608,"Name":"046","Points":10039,"X":612,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156034Z"},{"ID":26609,"Name":"Jednak wolę gofry","Points":2670,"X":423,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156035Z"},{"ID":26610,"Name":"Wioska Bochun10","Points":8192,"X":338,"Y":515,"Continent":"K53","Bonus":6,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156035Z"},{"ID":26612,"Name":"Kentin ufam Tobie","Points":9611,"X":352,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156036Z"},{"ID":26613,"Name":"Maradona","Points":10019,"X":611,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156036Z"},{"ID":26614,"Name":"Mniejsze zƂo 0034","Points":7722,"X":342,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156037Z"},{"ID":26615,"Name":"Gorgoneion","Points":9448,"X":382,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156038Z"},{"ID":26616,"Name":"off 100 %","Points":10257,"X":353,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156038Z"},{"ID":26617,"Name":"Wioska barbarzyƄska 029","Points":4634,"X":500,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156039Z"},{"ID":26618,"Name":"021 Straszne jaskinie","Points":7230,"X":394,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156039Z"},{"ID":26619,"Name":"harley","Points":10311,"X":620,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15604Z"},{"ID":26620,"Name":"Wioska barbarzyƄska","Points":2340,"X":615,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15604Z"},{"ID":26621,"Name":"PIERWSZA","Points":10971,"X":363,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156041Z"},{"ID":26622,"Name":"070","Points":9462,"X":629,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156041Z"},{"ID":26623,"Name":"#0090 barbarzyƄska","Points":9739,"X":478,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156042Z"},{"ID":26624,"Name":"PiekƂo to inni","Points":10160,"X":585,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156042Z"},{"ID":26625,"Name":"Wioska 013","Points":8236,"X":381,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156043Z"},{"ID":26626,"Name":"Myk i do kieszonki","Points":9799,"X":356,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156044Z"},{"ID":26627,"Name":"Lessie","Points":9691,"X":663,"Y":510,"Continent":"K56","Bonus":4,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156044Z"},{"ID":26628,"Name":"116 Wioska barbarzyƄska","Points":9877,"X":544,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156045Z"},{"ID":26629,"Name":"045","Points":7463,"X":661,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156045Z"},{"ID":26630,"Name":"Charfa","Points":10495,"X":518,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156046Z"},{"ID":26631,"Name":"#011 WƂadca PiekieƂ ZENIT","Points":1982,"X":350,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156046Z"},{"ID":26632,"Name":"BEZDZIETNY KAWALER","Points":10160,"X":416,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156047Z"},{"ID":26633,"Name":"Bagienko.Anker...","Points":5945,"X":377,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156047Z"},{"ID":26634,"Name":"Myk i do kieszonki","Points":9799,"X":357,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156048Z"},{"ID":26635,"Name":"0246","Points":10160,"X":558,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156048Z"},{"ID":26636,"Name":"Wioska Bochun10","Points":10311,"X":337,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156049Z"},{"ID":26637,"Name":"Maradona","Points":10019,"X":610,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156049Z"},{"ID":26638,"Name":"A004","Points":10401,"X":612,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15605Z"},{"ID":26639,"Name":"25. KaruTown","Points":8474,"X":634,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15605Z"},{"ID":26640,"Name":"001.","Points":10728,"X":491,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156051Z"},{"ID":26641,"Name":"Dzikie wsparcie","Points":9809,"X":473,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156051Z"},{"ID":26642,"Name":"051","Points":9828,"X":661,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156052Z"},{"ID":26643,"Name":"Chekku - Meito","Points":10268,"X":343,"Y":509,"Continent":"K53","Bonus":2,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156053Z"},{"ID":26644,"Name":"003...CENTR","Points":10495,"X":457,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156053Z"},{"ID":26645,"Name":"BETON 004","Points":10495,"X":621,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156054Z"},{"ID":26646,"Name":"Jaaa","Points":10169,"X":662,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156054Z"},{"ID":26647,"Name":"029","Points":9976,"X":567,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156055Z"},{"ID":26648,"Name":"004 Wioska barbarzyƄska","Points":4063,"X":336,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":915113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156055Z"},{"ID":26649,"Name":"Free Stevie!","Points":9835,"X":500,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156056Z"},{"ID":26650,"Name":"_2_","Points":2651,"X":490,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":9113064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156057Z"},{"ID":26652,"Name":"016 barbarzyƄska","Points":10285,"X":643,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156057Z"},{"ID":26653,"Name":"PiekƂo to inni","Points":10019,"X":573,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156058Z"},{"ID":26654,"Name":"Jehu_Kingdom_15_","Points":9993,"X":651,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156058Z"},{"ID":26655,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":509,"Y":340,"Continent":"K35","Bonus":1,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156059Z"},{"ID":26656,"Name":"Okropna","Points":3655,"X":542,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156059Z"},{"ID":26657,"Name":"Wioska barbarzyƄska","Points":10478,"X":588,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15606Z"},{"ID":26658,"Name":"004 Azyl","Points":10097,"X":641,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15606Z"},{"ID":26659,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":536,"Continent":"K53","Bonus":5,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156061Z"},{"ID":26660,"Name":"tego nie","Points":10474,"X":516,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156062Z"},{"ID":26661,"Name":"KUZYN","Points":4552,"X":413,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156062Z"},{"ID":26662,"Name":"*Newbee","Points":9761,"X":577,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156063Z"},{"ID":26663,"Name":"WesoƂych ƚwiąt","Points":5564,"X":555,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156063Z"},{"ID":26664,"Name":"038.","Points":9835,"X":399,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156064Z"},{"ID":26665,"Name":"Szulernia","Points":9964,"X":406,"Y":366,"Continent":"K34","Bonus":1,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156064Z"},{"ID":26666,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9994,"X":525,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156065Z"},{"ID":26667,"Name":"Jestem Poza Kontrolą","Points":9127,"X":352,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156065Z"},{"ID":26668,"Name":"046","Points":10311,"X":658,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156066Z"},{"ID":26669,"Name":"K34 - [122] Before Land","Points":10400,"X":434,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156066Z"},{"ID":26670,"Name":"Mobil","Points":8819,"X":537,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156067Z"},{"ID":26671,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9994,"X":529,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156068Z"},{"ID":26672,"Name":"68k$ Grvvyq","Points":7353,"X":641,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156068Z"},{"ID":26673,"Name":"0404","Points":10160,"X":548,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156069Z"},{"ID":26674,"Name":"Wioska barbarzyƄska Krrr","Points":3065,"X":370,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156069Z"},{"ID":26675,"Name":"040 039","Points":10001,"X":549,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15607Z"},{"ID":26676,"Name":"Myk i do kieszonki","Points":9799,"X":354,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15607Z"},{"ID":26677,"Name":"K34 - [015] Before Land","Points":10259,"X":444,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156071Z"},{"ID":26678,"Name":"O23 Kiruna","Points":10520,"X":662,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156071Z"},{"ID":26679,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":528,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156072Z"},{"ID":26680,"Name":"Village","Points":8479,"X":520,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156072Z"},{"ID":26681,"Name":"B 013","Points":9692,"X":660,"Y":536,"Continent":"K56","Bonus":9,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156073Z"},{"ID":26682,"Name":"*011 Nemeczek*","Points":9097,"X":362,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156073Z"},{"ID":26683,"Name":"amator","Points":9694,"X":554,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156074Z"},{"ID":26684,"Name":"=040= Wioska barbarzyƄska","Points":8293,"X":653,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156074Z"},{"ID":26685,"Name":"Bizy 1","Points":10186,"X":499,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156075Z"},{"ID":26686,"Name":"M181_047","Points":6838,"X":358,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156075Z"},{"ID":26687,"Name":"[154]","Points":9561,"X":638,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156076Z"},{"ID":26688,"Name":"06 Wioska","Points":9525,"X":441,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698993706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156076Z"},{"ID":26689,"Name":"=043= Wioska barbarzyƄska","Points":10580,"X":651,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156077Z"},{"ID":26690,"Name":"Kentin ufam Tobie","Points":10000,"X":340,"Y":475,"Continent":"K43","Bonus":5,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156077Z"},{"ID":26691,"Name":"cc pol005qqqqqqqqqqqqqqqqqqqqqqq","Points":6008,"X":395,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156078Z"},{"ID":26692,"Name":"013 Wioska zwiadowcza","Points":4674,"X":551,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156078Z"},{"ID":26693,"Name":"Darmowe przeprowadzki","Points":9706,"X":468,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156079Z"},{"ID":26694,"Name":"Wioska barbarzyƄska","Points":10728,"X":663,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156079Z"},{"ID":26695,"Name":"083","Points":10495,"X":619,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15608Z"},{"ID":26696,"Name":"Jestem Poza Kontrolą","Points":9880,"X":347,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156081Z"},{"ID":26697,"Name":"jaaa","Points":9656,"X":637,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156081Z"},{"ID":26698,"Name":"Darma dla zawodnika","Points":10226,"X":524,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156082Z"},{"ID":26699,"Name":"#0007 SnniKeer","Points":10178,"X":473,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156082Z"},{"ID":26700,"Name":"Psycha Siada","Points":10209,"X":459,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156083Z"},{"ID":26701,"Name":"007","Points":10099,"X":589,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156083Z"},{"ID":26702,"Name":"ObrzeĆŒa 094","Points":6484,"X":556,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156084Z"},{"ID":26703,"Name":"Seljukia","Points":7015,"X":422,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156084Z"},{"ID":26704,"Name":"Wioska barbarzyƄska ,","Points":10351,"X":603,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156085Z"},{"ID":26705,"Name":"NI5","Points":10495,"X":346,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156085Z"},{"ID":26706,"Name":"Ręcznik do zmiany","Points":10160,"X":374,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156086Z"},{"ID":26707,"Name":"51. KaruTown","Points":9711,"X":642,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156086Z"},{"ID":26708,"Name":"Jeruzalem","Points":6824,"X":419,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156087Z"},{"ID":26710,"Name":"050","Points":10311,"X":662,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156087Z"},{"ID":26711,"Name":"I#015","Points":8773,"X":603,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156088Z"},{"ID":26712,"Name":"Jan dzik III","Points":8671,"X":644,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156088Z"},{"ID":26713,"Name":"111","Points":8755,"X":653,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156089Z"},{"ID":26714,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":528,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15609Z"},{"ID":26715,"Name":"Szlachcic","Points":10476,"X":409,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15609Z"},{"ID":26716,"Name":"M181_026","Points":9883,"X":360,"Y":421,"Continent":"K43","Bonus":9,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156091Z"},{"ID":26717,"Name":".019.","Points":10316,"X":492,"Y":374,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156091Z"},{"ID":26718,"Name":"Myk i do kieszonki","Points":10654,"X":366,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156092Z"},{"ID":26719,"Name":"O06 Alicante","Points":10234,"X":661,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156092Z"},{"ID":26720,"Name":"043. Malaca","Points":9226,"X":645,"Y":438,"Continent":"K46","Bonus":7,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156093Z"},{"ID":26721,"Name":"WesoƂych ƚwiąt","Points":10019,"X":585,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156094Z"},{"ID":26722,"Name":"K44 x010","Points":10495,"X":431,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156094Z"},{"ID":26723,"Name":"xyz #006 TerrorMachine","Points":10152,"X":581,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156095Z"},{"ID":26724,"Name":"018.","Points":9835,"X":402,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156095Z"},{"ID":26725,"Name":"004 RVW Wioska barbarzyƄska","Points":6119,"X":364,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156096Z"},{"ID":26726,"Name":"028 serniczkowe lody","Points":9729,"X":511,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156096Z"},{"ID":26727,"Name":"Myk i do kieszonki","Points":9035,"X":350,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156097Z"},{"ID":26728,"Name":"Frombork","Points":4101,"X":541,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156098Z"},{"ID":26730,"Name":"#0009 BudzikRide","Points":10178,"X":469,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156098Z"},{"ID":26731,"Name":"=058= Wioska barbarzyƄska","Points":8533,"X":654,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156099Z"},{"ID":26732,"Name":"130","Points":4303,"X":473,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156099Z"},{"ID":26733,"Name":"A 022","Points":8601,"X":607,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1561Z"},{"ID":26734,"Name":"A030 Sierpc","Points":10160,"X":656,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1561Z"},{"ID":26735,"Name":"amator","Points":10130,"X":555,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156101Z"},{"ID":26736,"Name":"014) ƻórawina","Points":4001,"X":540,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156101Z"},{"ID":26737,"Name":"2.02","Points":7638,"X":344,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156102Z"},{"ID":26738,"Name":"Wioska barbarzyƄska","Points":4938,"X":337,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156103Z"},{"ID":26740,"Name":"EMERYTOWANY KUZYN","Points":10178,"X":430,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156103Z"},{"ID":26741,"Name":"Tunis","Points":8844,"X":414,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156104Z"},{"ID":26743,"Name":"Taki Pan","Points":6176,"X":497,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156104Z"},{"ID":26744,"Name":"035. Luguvalium","Points":9597,"X":655,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156105Z"},{"ID":26745,"Name":"Dek","Points":9735,"X":575,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156105Z"},{"ID":26746,"Name":"Wioska barbarzyƄska","Points":6125,"X":349,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156106Z"},{"ID":26747,"Name":"Wioska barbarzyƄska","Points":7448,"X":350,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156107Z"},{"ID":26748,"Name":"013 Blocksberg","Points":9500,"X":661,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156107Z"},{"ID":26749,"Name":"wLevy","Points":3894,"X":445,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156108Z"},{"ID":26750,"Name":"025 pawelk95","Points":9044,"X":664,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156108Z"},{"ID":26751,"Name":"Klaudek8","Points":7754,"X":594,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156109Z"},{"ID":26752,"Name":"--Polan222","Points":10114,"X":619,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156109Z"},{"ID":26753,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":568,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15611Z"},{"ID":26754,"Name":"Kentin ufam Tobie","Points":10233,"X":341,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156111Z"},{"ID":26755,"Name":"Hej hoo","Points":10495,"X":438,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156111Z"},{"ID":26756,"Name":"A0252","Points":10362,"X":340,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156112Z"},{"ID":26757,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":526,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156112Z"},{"ID":26758,"Name":"PiekƂo to inni","Points":10019,"X":572,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156113Z"},{"ID":26759,"Name":"Szlachcic/Taran","Points":10237,"X":629,"Y":409,"Continent":"K46","Bonus":2,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156113Z"},{"ID":26760,"Name":"Terrolowelove","Points":10211,"X":590,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156114Z"},{"ID":26761,"Name":"034","Points":3663,"X":616,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156115Z"},{"ID":26762,"Name":"cc Radom","Points":9633,"X":396,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156115Z"},{"ID":26763,"Name":"Wioska barbarzyƄska","Points":10301,"X":345,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156116Z"},{"ID":26764,"Name":"PiekƂo to inni","Points":9555,"X":557,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156116Z"},{"ID":26765,"Name":"Wioska Bochun10","Points":10311,"X":339,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156117Z"},{"ID":26766,"Name":"013 Brugge","Points":10104,"X":466,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156117Z"},{"ID":26767,"Name":"52k$ Grvvyq","Points":7184,"X":647,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156118Z"},{"ID":26768,"Name":"Ć»UBRAWKA 008","Points":9970,"X":600,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156118Z"},{"ID":26769,"Name":"K34 - [116] Before Land","Points":9797,"X":451,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156119Z"},{"ID":26770,"Name":"019","Points":9740,"X":664,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156119Z"},{"ID":26771,"Name":"083...TOM","Points":9304,"X":483,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15612Z"},{"ID":26772,"Name":"BrzozĂłwka","Points":10362,"X":343,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15612Z"},{"ID":26773,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":453,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156121Z"},{"ID":26774,"Name":"Wioska 3","Points":9976,"X":420,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156121Z"},{"ID":26775,"Name":"Wioska barbarzyƄska","Points":10728,"X":664,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156122Z"},{"ID":26776,"Name":"Village","Points":12154,"X":517,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156123Z"},{"ID":26777,"Name":"0392","Points":9727,"X":559,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156123Z"},{"ID":26778,"Name":"Wioska barbarzyƄska","Points":7769,"X":399,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156124Z"},{"ID":26780,"Name":"wBisca","Points":8251,"X":449,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156124Z"},{"ID":26781,"Name":"#0058 barbarzyƄska","Points":10178,"X":471,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156125Z"},{"ID":26782,"Name":"pol003","Points":6600,"X":395,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156125Z"},{"ID":26783,"Name":"*117*","Points":10211,"X":360,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156126Z"},{"ID":26784,"Name":"005 always remember LC","Points":9976,"X":565,"Y":644,"Continent":"K65","Bonus":8,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156126Z"},{"ID":26785,"Name":"_4_","Points":2536,"X":493,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":9113064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156127Z"},{"ID":26786,"Name":"B 020","Points":9634,"X":659,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156127Z"},{"ID":26788,"Name":"S_011","Points":7740,"X":512,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":849049155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156128Z"},{"ID":26789,"Name":"Szulernia","Points":9991,"X":413,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156128Z"},{"ID":26790,"Name":"Tere fere hihihi","Points":9354,"X":372,"Y":404,"Continent":"K43","Bonus":4,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156129Z"},{"ID":26791,"Name":"SoƂtys Wsi Legionistars","Points":9783,"X":397,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15613Z"},{"ID":26792,"Name":"A036 Wioska barbarzyƄska","Points":10160,"X":655,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15613Z"},{"ID":26793,"Name":"J02.","Points":8137,"X":364,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156131Z"},{"ID":26794,"Name":"Lord Lord Franek .#059","Points":10141,"X":534,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156131Z"},{"ID":26795,"Name":"00503Ciapek","Points":9916,"X":435,"Y":430,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156132Z"},{"ID":26796,"Name":"psycha sitting","Points":9072,"X":446,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156132Z"},{"ID":26797,"Name":"039","Points":7911,"X":665,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156133Z"},{"ID":26798,"Name":"A 019","Points":10362,"X":604,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156133Z"},{"ID":26799,"Name":"OrzeƂ WylądowaƂ","Points":4725,"X":455,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156134Z"},{"ID":26800,"Name":"083","Points":8325,"X":605,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156135Z"},{"ID":26801,"Name":"Charfa","Points":10232,"X":513,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156135Z"},{"ID":26802,"Name":"EMERYTOWANY KUZYN","Points":6144,"X":428,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156136Z"},{"ID":26803,"Name":"Grvvyq 115k$","Points":4682,"X":633,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156136Z"},{"ID":26804,"Name":"0498","Points":10019,"X":532,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156137Z"},{"ID":26805,"Name":"121","Points":9824,"X":625,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156137Z"},{"ID":26806,"Name":"=067= Wioska barbarzyƄska","Points":9572,"X":653,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156138Z"},{"ID":26807,"Name":"024","Points":9976,"X":565,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156139Z"},{"ID":26808,"Name":"Wioska Ysiek","Points":2750,"X":656,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":699739523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156139Z"},{"ID":26809,"Name":"2.01","Points":5681,"X":343,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15614Z"},{"ID":26810,"Name":"049 Mallaig","Points":8838,"X":629,"Y":594,"Continent":"K56","Bonus":6,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15614Z"},{"ID":26811,"Name":"016|| Draco","Points":10019,"X":497,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156141Z"},{"ID":26812,"Name":"MojeDnoToWaszSzczyt","Points":10160,"X":561,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156141Z"},{"ID":26813,"Name":"0157","Points":9003,"X":391,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156142Z"},{"ID":26814,"Name":"041 040","Points":10001,"X":551,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156142Z"},{"ID":26816,"Name":"off 100 %","Points":10265,"X":350,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156143Z"},{"ID":26817,"Name":"#.40 Wioska barbarzyƄska","Points":3672,"X":661,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156143Z"},{"ID":26818,"Name":"074 Kofu","Points":10297,"X":655,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156144Z"},{"ID":26819,"Name":"B 017","Points":9771,"X":658,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156144Z"},{"ID":26820,"Name":"O05 Ourense","Points":10030,"X":660,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156145Z"},{"ID":26821,"Name":"ObrzeĆŒa 095","Points":4201,"X":556,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156145Z"},{"ID":26822,"Name":"SoƂtys Wsi Enaor1990","Points":9725,"X":398,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156146Z"},{"ID":26823,"Name":"Wioska barbarzyƄska","Points":9252,"X":651,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156146Z"},{"ID":26824,"Name":"Klaudek11","Points":7168,"X":595,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156147Z"},{"ID":26825,"Name":"Monetkownia","Points":10237,"X":617,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156148Z"},{"ID":26826,"Name":"016 nie ma spania na wyjazdach","Points":4333,"X":443,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156148Z"},{"ID":26828,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":526,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156149Z"},{"ID":26829,"Name":"PiekƂo to inni","Points":10160,"X":560,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156149Z"},{"ID":26830,"Name":"cc GorzkĂłwqqqqqqqqqqqqq","Points":7834,"X":397,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15615Z"},{"ID":26831,"Name":"A0255","Points":10362,"X":340,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15615Z"},{"ID":26832,"Name":"034 Buongiorno","Points":10083,"X":606,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156151Z"},{"ID":26833,"Name":"Ave Why!","Points":9175,"X":476,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156152Z"},{"ID":26834,"Name":"O13 Stokkseyri","Points":10030,"X":661,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156152Z"},{"ID":26835,"Name":"Myk i do kieszonki","Points":5767,"X":365,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156153Z"},{"ID":26836,"Name":"040|| Lupus","Points":9761,"X":482,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156153Z"},{"ID":26837,"Name":"15. Budujemy mosty","Points":9735,"X":636,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156154Z"},{"ID":26838,"Name":"Chekku - meito","Points":9976,"X":341,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156154Z"},{"ID":26839,"Name":"115...center","Points":9143,"X":451,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156155Z"},{"ID":26840,"Name":"Szulernia","Points":9967,"X":410,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156156Z"},{"ID":26841,"Name":"O02 Pyke","Points":10122,"X":660,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156156Z"},{"ID":26843,"Name":"0196","Points":10019,"X":556,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156157Z"},{"ID":26844,"Name":"P022 Karakura","Points":9761,"X":655,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156157Z"},{"ID":26845,"Name":"North Barba 040","Points":9455,"X":420,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156158Z"},{"ID":26846,"Name":"015 M","Points":10207,"X":651,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156158Z"},{"ID":26847,"Name":"psycha sitting","Points":4911,"X":429,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156159Z"},{"ID":26848,"Name":"Wioska barbarzyƄska","Points":9169,"X":651,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15616Z"},{"ID":26849,"Name":"D 015","Points":8961,"X":661,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15616Z"},{"ID":26850,"Name":"Wioska barbarzyƄska","Points":10281,"X":347,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156161Z"},{"ID":26852,"Name":"D 013","Points":9655,"X":664,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156161Z"},{"ID":26853,"Name":"WesoƂych ƚwiąt","Points":10636,"X":561,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156162Z"},{"ID":26854,"Name":"Wioska barbarzyƄska 021|","Points":9619,"X":546,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156162Z"},{"ID":26855,"Name":"004 Czarna pantera","Points":9835,"X":392,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156163Z"},{"ID":26856,"Name":"0499","Points":8979,"X":531,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156163Z"},{"ID":26857,"Name":"Wioska Ukryta w Liƛciach","Points":9368,"X":373,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156164Z"},{"ID":26858,"Name":"026 Legio I Traiana Fortis","Points":10971,"X":643,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156165Z"},{"ID":26859,"Name":"051.","Points":8719,"X":407,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156165Z"},{"ID":26860,"Name":"067","Points":9745,"X":656,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156166Z"},{"ID":26861,"Name":"?004","Points":9976,"X":538,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156166Z"},{"ID":26862,"Name":"A039","Points":10211,"X":594,"Y":374,"Continent":"K35","Bonus":5,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156167Z"},{"ID":26863,"Name":"|B| Claywood","Points":10495,"X":485,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156167Z"},{"ID":26864,"Name":"BACÓWKA |027|","Points":4817,"X":633,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156168Z"},{"ID":26865,"Name":"Jednak wolę gofry","Points":6315,"X":425,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156169Z"},{"ID":26866,"Name":"Wioska","Points":10122,"X":403,"Y":422,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156169Z"},{"ID":26867,"Name":"Sony 911","Points":10278,"X":582,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15617Z"},{"ID":26869,"Name":"Szlachcic/Taran","Points":9086,"X":622,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15617Z"},{"ID":26870,"Name":"Gattacka","Points":10470,"X":618,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156171Z"},{"ID":26871,"Name":"--Rapid City","Points":9376,"X":623,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156171Z"},{"ID":26872,"Name":"Jestem Poza Kontrolą","Points":9880,"X":346,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156172Z"},{"ID":26873,"Name":"Wioska barbarzyƄska","Points":7465,"X":400,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156172Z"},{"ID":26874,"Name":"Wioska Bochun10","Points":10311,"X":337,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156173Z"},{"ID":26875,"Name":"kathare","Points":10232,"X":561,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156173Z"},{"ID":26876,"Name":"609|373","Points":9570,"X":606,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156174Z"},{"ID":26877,"Name":"16. Cytadela","Points":10299,"X":506,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156174Z"},{"ID":26878,"Name":"0500","Points":8399,"X":535,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156175Z"},{"ID":26879,"Name":"PiekƂo to inni","Points":10160,"X":588,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156176Z"},{"ID":26880,"Name":"*Lubicz","Points":9761,"X":575,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156176Z"},{"ID":26881,"Name":"Mniejsze zƂo 0070","Points":6624,"X":340,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156177Z"},{"ID":26882,"Name":"wolna","Points":9976,"X":563,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156177Z"},{"ID":26883,"Name":"026","Points":10221,"X":515,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156178Z"},{"ID":26884,"Name":"057. Liburnum","Points":9207,"X":654,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156178Z"},{"ID":26885,"Name":"cc Wioska","Points":7837,"X":402,"Y":377,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156179Z"},{"ID":26886,"Name":"007","Points":10104,"X":390,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15618Z"},{"ID":26887,"Name":"Kentin ufam Tobie","Points":10008,"X":338,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15618Z"},{"ID":26888,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":394,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156181Z"},{"ID":26889,"Name":"0002","Points":10019,"X":615,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156181Z"},{"ID":26890,"Name":"*4626*a Czas przyspiesza","Points":10075,"X":646,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156182Z"},{"ID":26891,"Name":"Wioska barbarzyƄska","Points":6243,"X":350,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156182Z"},{"ID":26892,"Name":"North Barba 039","Points":9668,"X":421,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156183Z"},{"ID":26893,"Name":"027 | PALESTINA","Points":9544,"X":639,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156183Z"},{"ID":26894,"Name":"North Barba 010","Points":9887,"X":421,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156184Z"},{"ID":26895,"Name":"071 Shimada","Points":8883,"X":659,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156184Z"},{"ID":26896,"Name":"Nowa Aleksandria","Points":6683,"X":415,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156185Z"},{"ID":26897,"Name":".:137:. Niangmen","Points":6029,"X":500,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156185Z"},{"ID":26898,"Name":"Gattacka","Points":9824,"X":613,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156186Z"},{"ID":26899,"Name":"*266*","Points":2397,"X":353,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156187Z"},{"ID":26900,"Name":"Darmowe przeprowadzki","Points":11218,"X":471,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156187Z"},{"ID":26901,"Name":"031","Points":9976,"X":571,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156188Z"},{"ID":26902,"Name":"*Lupita","Points":9761,"X":573,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156188Z"},{"ID":26903,"Name":"$2.000 Grvvyq","Points":10495,"X":648,"Y":571,"Continent":"K56","Bonus":5,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156189Z"},{"ID":26904,"Name":"amator czysta","Points":7468,"X":544,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156189Z"},{"ID":26906,"Name":"039. Durnovaria","Points":10128,"X":657,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15619Z"},{"ID":26907,"Name":"C003","Points":10211,"X":609,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156191Z"},{"ID":26908,"Name":"Yyyy","Points":10178,"X":502,"Y":371,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156191Z"},{"ID":26909,"Name":".///...//././././././././","Points":9575,"X":378,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156192Z"},{"ID":26910,"Name":"Kentin ufam Tobie","Points":10000,"X":341,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156192Z"},{"ID":26911,"Name":"Polanie2","Points":2481,"X":482,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156193Z"},{"ID":26912,"Name":"Prędzej martwy niĆŒ za kratkami","Points":9689,"X":663,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156193Z"},{"ID":26913,"Name":"Szlachcic","Points":10160,"X":344,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156194Z"},{"ID":26914,"Name":"035","Points":9744,"X":650,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156194Z"},{"ID":26915,"Name":"J03","Points":6418,"X":365,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156195Z"},{"ID":26916,"Name":"Szlachcic","Points":10475,"X":409,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156195Z"},{"ID":26917,"Name":"#0018 kamilsan993","Points":10178,"X":464,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156196Z"},{"ID":26918,"Name":"--custer","Points":10311,"X":624,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156197Z"},{"ID":26919,"Name":"007 YNO ROW","Points":9835,"X":388,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156197Z"},{"ID":26920,"Name":"61. KaruTown","Points":6209,"X":629,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156198Z"},{"ID":26922,"Name":"Wioska Bochun10","Points":10311,"X":335,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156198Z"},{"ID":26923,"Name":"#0135 barbarzyƄska","Points":6566,"X":467,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156199Z"},{"ID":26924,"Name":"B.053","Points":9682,"X":659,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156199Z"},{"ID":26925,"Name":"Wioska barbarzyƄska","Points":8522,"X":350,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1562Z"},{"ID":26926,"Name":"121. Seneletta","Points":10147,"X":644,"Y":422,"Continent":"K46","Bonus":1,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1562Z"},{"ID":26927,"Name":"#.17 Wioska SmackHQ","Points":10019,"X":660,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156201Z"},{"ID":26928,"Name":"037","Points":2651,"X":615,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156202Z"},{"ID":26929,"Name":"0153","Points":11074,"X":548,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156202Z"},{"ID":26930,"Name":"sony911","Points":10223,"X":588,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156203Z"},{"ID":26931,"Name":"Myk i do kieszonki","Points":9799,"X":361,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156203Z"},{"ID":26932,"Name":"101","Points":10019,"X":654,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156204Z"},{"ID":26933,"Name":"Wetlina","Points":8953,"X":338,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156204Z"},{"ID":26934,"Name":"021.Barbara 5","Points":4923,"X":337,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156205Z"},{"ID":26935,"Name":"Tesa 9","Points":10019,"X":661,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156205Z"},{"ID":26936,"Name":"Ć»UBRAWKA 012","Points":9713,"X":604,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156206Z"},{"ID":26937,"Name":"034.","Points":9835,"X":406,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156206Z"},{"ID":26938,"Name":"O25 Tijuana","Points":9977,"X":660,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156207Z"},{"ID":26939,"Name":"D 003","Points":10042,"X":663,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156208Z"},{"ID":26940,"Name":"011","Points":9106,"X":459,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156208Z"},{"ID":26941,"Name":"033","Points":9724,"X":662,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156209Z"},{"ID":26942,"Name":"Szlachcic","Points":10495,"X":407,"Y":369,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156209Z"},{"ID":26943,"Name":"084","Points":10495,"X":623,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15621Z"},{"ID":26944,"Name":"deff 100 %","Points":10245,"X":351,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15621Z"},{"ID":26945,"Name":".:138:. Niangmen","Points":5864,"X":498,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156211Z"},{"ID":26946,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":341,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156211Z"},{"ID":26947,"Name":"Szulernia","Points":9988,"X":415,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156212Z"},{"ID":26948,"Name":"Kentin ufam Tobie","Points":10000,"X":340,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156212Z"},{"ID":26949,"Name":"*Lust","Points":9628,"X":574,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156213Z"},{"ID":26950,"Name":"09. chrubieszĂłw","Points":9069,"X":374,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156213Z"},{"ID":26951,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":523,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156214Z"},{"ID":26952,"Name":"c ZagnaƄska 155","Points":8432,"X":406,"Y":389,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156215Z"},{"ID":26953,"Name":"#.20 ZZZ","Points":9285,"X":659,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156215Z"},{"ID":26954,"Name":"30. Ɓopuszka wielka","Points":8594,"X":376,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156216Z"},{"ID":26955,"Name":"Elsche x Astaroth Smacznego x3","Points":7867,"X":455,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156216Z"},{"ID":26956,"Name":"0194","Points":10019,"X":548,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156217Z"},{"ID":26957,"Name":"PiekƂo to inni","Points":10147,"X":575,"Y":358,"Continent":"K35","Bonus":2,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156217Z"},{"ID":26958,"Name":"MojeDnoToWaszSzczyt","Points":9976,"X":564,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156218Z"},{"ID":26959,"Name":"bbb","Points":8969,"X":486,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156218Z"},{"ID":26960,"Name":"088","Points":8054,"X":436,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156219Z"},{"ID":26961,"Name":"102","Points":10495,"X":623,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156219Z"},{"ID":26963,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9804,"X":527,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15622Z"},{"ID":26964,"Name":"Wioska barbarzyƄska","Points":9409,"X":348,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15622Z"},{"ID":26965,"Name":"Mniejsze zƂo 0072","Points":6568,"X":340,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156221Z"},{"ID":26966,"Name":"*No ĆŒesz...","Points":9761,"X":579,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156222Z"},{"ID":26967,"Name":"P011 Hawkins","Points":9348,"X":657,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156222Z"},{"ID":26968,"Name":"cofnąć","Points":9825,"X":624,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156223Z"},{"ID":26969,"Name":"012. Charlton","Points":8691,"X":486,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156223Z"},{"ID":26970,"Name":"Nowy ƛwiat A","Points":5623,"X":347,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156224Z"},{"ID":26971,"Name":"003 Kirkjubour","Points":6605,"X":552,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156224Z"},{"ID":26972,"Name":"0001","Points":10149,"X":614,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156225Z"},{"ID":26973,"Name":"J0091.","Points":9807,"X":373,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156225Z"},{"ID":26974,"Name":"PaƄstfa PuƂnocy","Points":6517,"X":583,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156226Z"},{"ID":26975,"Name":"Wioska barbarzyƄska","Points":6732,"X":361,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156227Z"},{"ID":26976,"Name":"BACÓWKA |005|","Points":12154,"X":631,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156227Z"},{"ID":26977,"Name":"026 - Mroczna Osada","Points":12154,"X":637,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156228Z"},{"ID":26978,"Name":"041 Lazarevac","Points":7185,"X":628,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156228Z"},{"ID":26979,"Name":"052- Mroczna Osada","Points":10609,"X":629,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156229Z"},{"ID":26980,"Name":"Wioska barbarzyƄska 030 a","Points":4677,"X":504,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156229Z"},{"ID":26981,"Name":"015","Points":2793,"X":378,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15623Z"},{"ID":26982,"Name":"025.","Points":9835,"X":612,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15623Z"},{"ID":26983,"Name":"Wioska barbarzyƄska","Points":380,"X":373,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":610196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156231Z"},{"ID":26984,"Name":"Jednak wolę gofry","Points":9835,"X":495,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156231Z"},{"ID":26985,"Name":"kopię prądem .","Points":10495,"X":584,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156232Z"},{"ID":26986,"Name":"041","Points":7574,"X":650,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156233Z"},{"ID":26987,"Name":"*082*","Points":10211,"X":360,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156233Z"},{"ID":26988,"Name":"020.Avalon","Points":8087,"X":369,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156234Z"},{"ID":26989,"Name":"K44 x024","Points":10396,"X":433,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156234Z"},{"ID":26990,"Name":"MojeSzczytToTwĂłjDno","Points":10481,"X":506,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156235Z"},{"ID":26991,"Name":"017 VW.Low Key","Points":6459,"X":362,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156235Z"},{"ID":26992,"Name":"OrzeƂ WylądowaƂ","Points":8516,"X":456,"Y":655,"Continent":"K64","Bonus":5,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156236Z"},{"ID":26993,"Name":"Wioska Kaffiks XV","Points":5677,"X":635,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156236Z"},{"ID":26994,"Name":"PiekƂo to inni","Points":10160,"X":569,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156237Z"},{"ID":26996,"Name":"013.Wioska barbarzyƄska","Points":7224,"X":341,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156238Z"},{"ID":26997,"Name":"=075= Darmę dostaƂem xD","Points":10787,"X":654,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156238Z"},{"ID":26998,"Name":"Pobozowisko","Points":9900,"X":381,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156239Z"},{"ID":26999,"Name":"Jednak wolę gofry","Points":9835,"X":445,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156239Z"},{"ID":27000,"Name":"011 Amaterasu","Points":9553,"X":661,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15624Z"},{"ID":27001,"Name":"Chekku - meito","Points":9976,"X":342,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15624Z"},{"ID":27002,"Name":"085","Points":10495,"X":622,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156241Z"},{"ID":27003,"Name":"67k$ Grvvyq","Points":10495,"X":642,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156241Z"},{"ID":27004,"Name":"001","Points":4660,"X":348,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156242Z"},{"ID":27005,"Name":"*035*","Points":9368,"X":633,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156242Z"},{"ID":27006,"Name":"004","Points":1358,"X":641,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699301458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156243Z"},{"ID":27007,"Name":"Jaaa","Points":9946,"X":665,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156243Z"},{"ID":27008,"Name":"#.05 Wioska jelonqqq","Points":10019,"X":657,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156244Z"},{"ID":27009,"Name":"[020]","Points":2913,"X":449,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156245Z"},{"ID":27010,"Name":"Gumi","Points":10237,"X":558,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156245Z"},{"ID":27011,"Name":"6AA","Points":9277,"X":352,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156246Z"},{"ID":27012,"Name":"0362","Points":10224,"X":545,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156246Z"},{"ID":27013,"Name":"Wioska barbarzyƄska","Points":5303,"X":595,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156247Z"},{"ID":27014,"Name":"#0073 barbarzyƄska","Points":9548,"X":468,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156247Z"},{"ID":27015,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":342,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156248Z"},{"ID":27016,"Name":"Samana 2","Points":6314,"X":454,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156248Z"},{"ID":27017,"Name":"012.","Points":9835,"X":397,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156249Z"},{"ID":27018,"Name":"Wioska barbarzyƄska","Points":8195,"X":361,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156249Z"},{"ID":27019,"Name":"009 Wioska na gwarancji","Points":9771,"X":481,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15625Z"},{"ID":27020,"Name":"049 BOBI 3","Points":9553,"X":663,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15625Z"},{"ID":27022,"Name":"?006","Points":9976,"X":538,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156251Z"},{"ID":27023,"Name":"mys","Points":9976,"X":573,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156251Z"},{"ID":27024,"Name":"Kentin ufam Tobie","Points":10000,"X":337,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156252Z"},{"ID":27025,"Name":"086","Points":10495,"X":621,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156253Z"},{"ID":27026,"Name":"038","Points":9245,"X":658,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156253Z"},{"ID":27027,"Name":"Wioska barbarzyƄska","Points":9425,"X":570,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156254Z"},{"ID":27028,"Name":"006.Dla flag","Points":7603,"X":352,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156254Z"},{"ID":27029,"Name":"=049= Wioska barbarzyƄska","Points":9606,"X":644,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156255Z"},{"ID":27030,"Name":"Patatajnia","Points":3905,"X":345,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156255Z"},{"ID":27031,"Name":"CHARFA","Points":10218,"X":511,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156256Z"},{"ID":27032,"Name":"|015| Gazi","Points":9835,"X":498,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156256Z"},{"ID":27033,"Name":"UwaĆŒaj Jurkowski","Points":6539,"X":349,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156257Z"},{"ID":27034,"Name":"BACÓWKA |002|","Points":11130,"X":635,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156257Z"},{"ID":27035,"Name":"Pobozowisko","Points":7242,"X":384,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156258Z"},{"ID":27036,"Name":"M181_039","Points":8428,"X":354,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156258Z"},{"ID":27037,"Name":"Wioska barbarzyƄska","Points":6537,"X":657,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156259Z"},{"ID":27038,"Name":"Wioska Bochun10","Points":10311,"X":340,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156259Z"},{"ID":27039,"Name":"Myk i do kieszonki","Points":9886,"X":360,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15626Z"},{"ID":27040,"Name":"001","Points":7285,"X":545,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":849087786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15626Z"},{"ID":27041,"Name":"Lord Lord Franek .#037","Points":9955,"X":524,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156261Z"},{"ID":27042,"Name":"018)","Points":3214,"X":538,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156261Z"},{"ID":27043,"Name":"Wioska Bochun10","Points":10311,"X":340,"Y":498,"Continent":"K43","Bonus":9,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156262Z"},{"ID":27044,"Name":"049","Points":8214,"X":660,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156263Z"},{"ID":27045,"Name":"001|| Aries","Points":10019,"X":487,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156263Z"},{"ID":27046,"Name":"Wioska barbarzyƄska","Points":3727,"X":379,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156264Z"},{"ID":27047,"Name":"Pobozowisko","Points":10971,"X":387,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156264Z"},{"ID":27048,"Name":"I#011","Points":9797,"X":603,"Y":380,"Continent":"K36","Bonus":2,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156265Z"},{"ID":27049,"Name":"P026 Alfheim","Points":9761,"X":658,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156265Z"},{"ID":27050,"Name":"Kentin ufam Tobie","Points":10000,"X":342,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156266Z"},{"ID":27052,"Name":"Wioska Kaffiks XI","Points":5998,"X":643,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156267Z"},{"ID":27053,"Name":"072","Points":10019,"X":603,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156267Z"},{"ID":27054,"Name":"BoOmBaa..","Points":3695,"X":433,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156268Z"},{"ID":27055,"Name":"Szlachcic","Points":9879,"X":495,"Y":466,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156268Z"},{"ID":27056,"Name":"gĂłra","Points":9247,"X":434,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156269Z"},{"ID":27057,"Name":"O29 Struer","Points":10195,"X":661,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156269Z"},{"ID":27058,"Name":"36k$ Grvvyq","Points":10495,"X":648,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15627Z"},{"ID":27059,"Name":"011","Points":10474,"X":376,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15627Z"},{"ID":27060,"Name":"Kentin ufam Tobie","Points":10000,"X":339,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156271Z"},{"ID":27061,"Name":"Myk i do kieszonki","Points":9902,"X":353,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156272Z"},{"ID":27062,"Name":"Darmowe przeprowadzki","Points":9676,"X":471,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156272Z"},{"ID":27064,"Name":"071","Points":9423,"X":629,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156273Z"},{"ID":27065,"Name":"14. tego nie","Points":10002,"X":509,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156273Z"},{"ID":27066,"Name":"Darma dla zawodnika","Points":10221,"X":517,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156274Z"},{"ID":27067,"Name":"044 Qarinus","Points":10028,"X":633,"Y":587,"Continent":"K56","Bonus":6,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156274Z"},{"ID":27068,"Name":"001 Syjon","Points":9234,"X":480,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156275Z"},{"ID":27069,"Name":"PiekƂo to inni","Points":10019,"X":579,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156275Z"},{"ID":27070,"Name":"mys","Points":9976,"X":564,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156276Z"},{"ID":27071,"Name":"Sony 911","Points":10248,"X":585,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156276Z"},{"ID":27072,"Name":"ObrzeĆŒa 07","Points":8263,"X":554,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156277Z"},{"ID":27073,"Name":"B15","Points":8012,"X":649,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156277Z"},{"ID":27074,"Name":"*4624*a Bawaria","Points":10287,"X":649,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156278Z"},{"ID":27075,"Name":"North Barba 041","Points":9699,"X":423,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156278Z"},{"ID":27077,"Name":"Saturn","Points":4179,"X":547,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156279Z"},{"ID":27078,"Name":"1v9 machine","Points":10083,"X":387,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156279Z"},{"ID":27079,"Name":"Myk i do kieszonki","Points":9430,"X":358,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15628Z"},{"ID":27080,"Name":"Gattacka","Points":10470,"X":615,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15628Z"},{"ID":27081,"Name":"Myk i do kieszonki","Points":9799,"X":357,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156281Z"},{"ID":27083,"Name":"x Wioska grzegorz1806","Points":10233,"X":398,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156282Z"},{"ID":27084,"Name":"058.","Points":9835,"X":392,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156282Z"},{"ID":27085,"Name":"Sony 911","Points":5890,"X":586,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156283Z"},{"ID":27086,"Name":"B 021","Points":9499,"X":660,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156283Z"},{"ID":27087,"Name":"Szlachcic Siedmiomilowy","Points":7718,"X":617,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156284Z"},{"ID":27088,"Name":"11. Remiza","Points":9312,"X":373,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156284Z"},{"ID":27089,"Name":"Szulernia","Points":9993,"X":416,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156285Z"},{"ID":27090,"Name":"Liƛciaste Rozstaje","Points":3542,"X":345,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156285Z"},{"ID":27091,"Name":"022. Barbara 6","Points":6621,"X":338,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156286Z"},{"ID":27092,"Name":"Wioska barbarzyƄska","Points":2536,"X":649,"Y":571,"Continent":"K56","Bonus":3,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156286Z"},{"ID":27093,"Name":"Ave Why!","Points":9809,"X":473,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156287Z"},{"ID":27094,"Name":"Wioska barbarzyƄska","Points":6702,"X":662,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156287Z"},{"ID":27096,"Name":"0006","Points":9206,"X":611,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156288Z"},{"ID":27097,"Name":"WesoƂych ƚwiąt","Points":10160,"X":580,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156288Z"},{"ID":27098,"Name":"Chamabuda","Points":4270,"X":366,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156289Z"},{"ID":27099,"Name":"008 | PALESTINA","Points":9544,"X":648,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156289Z"},{"ID":27100,"Name":"Lord Lord Franek .#152","Points":10149,"X":505,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15629Z"},{"ID":27101,"Name":"cc Wioska jqqqqqqqqqqqqqqqqqqq","Points":5959,"X":397,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15629Z"},{"ID":27102,"Name":"Sony 911","Points":10206,"X":589,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156291Z"},{"ID":27103,"Name":"B12","Points":10019,"X":649,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156291Z"},{"ID":27105,"Name":"K34 - [128] Before Land","Points":9783,"X":438,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156292Z"},{"ID":27106,"Name":"Sony 911","Points":10203,"X":583,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156292Z"},{"ID":27108,"Name":"039","Points":10311,"X":655,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156293Z"},{"ID":27109,"Name":"012.","Points":10728,"X":483,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156294Z"},{"ID":27110,"Name":"Jednak wolę gofry","Points":9899,"X":443,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156294Z"},{"ID":27111,"Name":"016 | PALESTINA","Points":9544,"X":649,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156295Z"},{"ID":27112,"Name":"*Nie ma to jak...","Points":9761,"X":577,"Y":644,"Continent":"K65","Bonus":4,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156295Z"},{"ID":27113,"Name":"#0046 barbarzyƄska","Points":10178,"X":466,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156296Z"},{"ID":27114,"Name":"Szlachcic","Points":10476,"X":408,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156296Z"},{"ID":27115,"Name":"0501","Points":10083,"X":535,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156297Z"},{"ID":27116,"Name":"DajankA 09","Points":9511,"X":352,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156298Z"},{"ID":27117,"Name":"*041","Points":9717,"X":593,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156298Z"},{"ID":27118,"Name":"01.Czekam Na","Points":4546,"X":457,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":361125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156299Z"},{"ID":27119,"Name":"077","Points":10229,"X":630,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156299Z"},{"ID":27120,"Name":"5..","Points":7724,"X":432,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1563Z"},{"ID":27121,"Name":"Wioska Bochun10","Points":10311,"X":338,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1563Z"},{"ID":27122,"Name":"63k$ Grvvyq","Points":10495,"X":649,"Y":563,"Continent":"K56","Bonus":2,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156301Z"},{"ID":27124,"Name":"091...bar","Points":10237,"X":455,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156301Z"},{"ID":27125,"Name":"MojeDnoToWaszSzczyt","Points":9976,"X":566,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156302Z"},{"ID":27126,"Name":"A028 Hurghada","Points":10160,"X":654,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156302Z"},{"ID":27127,"Name":"Nowa wioska","Points":10471,"X":449,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156303Z"},{"ID":27128,"Name":"Myk i do kieszonki","Points":9924,"X":362,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156303Z"},{"ID":27129,"Name":"Denger 14","Points":9648,"X":362,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156304Z"},{"ID":27130,"Name":"007. Dla flag","Points":6822,"X":353,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156304Z"},{"ID":27131,"Name":"0502","Points":10252,"X":533,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156305Z"},{"ID":27132,"Name":"=047= Wioska barbarzyƄska","Points":8057,"X":653,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156305Z"},{"ID":27133,"Name":"=061= Wioska barbarzyƄska","Points":10580,"X":652,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156306Z"},{"ID":27134,"Name":"042","Points":9255,"X":656,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156307Z"},{"ID":27135,"Name":"Wioska barbarzyƄska","Points":1651,"X":648,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156307Z"},{"ID":27136,"Name":"ladyanima","Points":6418,"X":605,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156308Z"},{"ID":27137,"Name":"#0055 barbarzyƄska","Points":10178,"X":470,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156308Z"},{"ID":27138,"Name":"Abdoulxx","Points":11321,"X":473,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156309Z"},{"ID":27139,"Name":"Lord Lord Franek .#153","Points":9960,"X":510,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156309Z"},{"ID":27140,"Name":"Ć»UBRAWKA 005","Points":10495,"X":604,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15631Z"},{"ID":27141,"Name":"OrzeƂ WylądowaƂ","Points":6132,"X":456,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15631Z"},{"ID":27142,"Name":"105","Points":10019,"X":654,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156311Z"},{"ID":27143,"Name":"036...Zachodzik","Points":10294,"X":452,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156311Z"},{"ID":27144,"Name":"Mroczne Rozlewisko","Points":5013,"X":366,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156312Z"},{"ID":27145,"Name":"Wioska barbarzyƄska","Points":6562,"X":356,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156312Z"},{"ID":27146,"Name":"Lord Lord Franek .#113","Points":10009,"X":514,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156313Z"},{"ID":27147,"Name":"Niger1","Points":9883,"X":362,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156313Z"},{"ID":27148,"Name":"M181_023","Points":9897,"X":360,"Y":425,"Continent":"K43","Bonus":2,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156314Z"},{"ID":27150,"Name":"Wiocha 7","Points":9819,"X":426,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156314Z"},{"ID":27151,"Name":"Jehu_Kingdom_49","Points":4763,"X":651,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156315Z"},{"ID":27152,"Name":"Wioska 006","Points":9899,"X":386,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156315Z"},{"ID":27153,"Name":"068 front","Points":9408,"X":600,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156316Z"},{"ID":27154,"Name":"llllllllll","Points":9825,"X":627,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156316Z"},{"ID":27155,"Name":"0008","Points":10242,"X":390,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156317Z"},{"ID":27157,"Name":"Dajanka 20","Points":1721,"X":342,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156317Z"},{"ID":27158,"Name":"Wioska barbarzyƄska","Points":6225,"X":400,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156318Z"},{"ID":27159,"Name":"#0084 barbarzyƄska","Points":8076,"X":471,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156318Z"},{"ID":27160,"Name":"Mobil","Points":8817,"X":537,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156319Z"},{"ID":27161,"Name":"Wioska barbarzyƄska","Points":2859,"X":348,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156319Z"},{"ID":27162,"Name":"Szulernia","Points":6169,"X":394,"Y":375,"Continent":"K33","Bonus":4,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15632Z"},{"ID":27163,"Name":"...","Points":8111,"X":486,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15632Z"},{"ID":27164,"Name":"036","Points":9976,"X":568,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156321Z"},{"ID":27165,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":573,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156322Z"},{"ID":27166,"Name":"PiekƂo to inni","Points":10160,"X":565,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156322Z"},{"ID":27167,"Name":"Kentin ufam Tobie","Points":10011,"X":344,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156323Z"},{"ID":27168,"Name":"North Barba 049","Points":9427,"X":423,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156323Z"},{"ID":27169,"Name":"0454","Points":4530,"X":377,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156324Z"},{"ID":27170,"Name":"Wioska barbarzyƄska","Points":4803,"X":349,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156324Z"},{"ID":27171,"Name":"M181_045","Points":8377,"X":349,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156325Z"},{"ID":27172,"Name":"010) Borek StrzeliƄski","Points":2166,"X":543,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156325Z"},{"ID":27173,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156326Z"},{"ID":27174,"Name":"gƂową bigos mieszam .","Points":10362,"X":580,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156326Z"},{"ID":27175,"Name":"Kentin ufam Tobie","Points":10005,"X":344,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156327Z"},{"ID":27176,"Name":"kathare","Points":9937,"X":560,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156327Z"},{"ID":27177,"Name":"012) Oleƛnica MaƂa","Points":1829,"X":545,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156328Z"},{"ID":27178,"Name":"SƂoneczna 63","Points":10290,"X":374,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156328Z"},{"ID":27179,"Name":"WschĂłd Droga 002","Points":10311,"X":647,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156329Z"},{"ID":27180,"Name":"019","Points":9662,"X":451,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156329Z"},{"ID":27182,"Name":"910","Points":9999,"X":653,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15633Z"},{"ID":27183,"Name":"Wioska barbarzyƄska","Points":6550,"X":353,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15633Z"},{"ID":27184,"Name":"Sony 911","Points":10259,"X":641,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156331Z"},{"ID":27185,"Name":"M181_042","Points":8673,"X":358,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156331Z"},{"ID":27186,"Name":"1. Kattegat","Points":10204,"X":426,"Y":428,"Continent":"K44","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156332Z"},{"ID":27187,"Name":"0661","Points":9080,"X":546,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156332Z"},{"ID":27188,"Name":"003 - Mroczna Osada","Points":11550,"X":640,"Y":425,"Continent":"K46","Bonus":5,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156333Z"},{"ID":27189,"Name":"Wioska barbarzyƄska","Points":2656,"X":382,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156333Z"},{"ID":27190,"Name":"#012 AUUUUUUUUU","Points":2061,"X":350,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156334Z"},{"ID":27191,"Name":"Wioska barbarzyƄska","Points":10351,"X":599,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156334Z"},{"ID":27192,"Name":"North Barba 019","Points":10262,"X":421,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156335Z"},{"ID":27193,"Name":"Ć»UBRAWKA 021 tiriolenin","Points":10495,"X":596,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156336Z"},{"ID":27194,"Name":"Macp 2","Points":8364,"X":339,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":61791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156336Z"},{"ID":27196,"Name":"003) Bielawa","Points":7166,"X":545,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156337Z"},{"ID":27197,"Name":"Village","Points":9007,"X":568,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156337Z"},{"ID":27198,"Name":"BACÓWKA |028|","Points":6849,"X":632,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156338Z"},{"ID":27199,"Name":"[B]_[021] Dejv.oldplyr","Points":10495,"X":430,"Y":353,"Continent":"K34","Bonus":9,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156338Z"},{"ID":27200,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":567,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156339Z"},{"ID":27201,"Name":"Chekku - meito","Points":9976,"X":343,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15634Z"},{"ID":27202,"Name":"Wioska barbarzyƄska","Points":10285,"X":551,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.15634Z"},{"ID":27203,"Name":"Ć»UBRAWKA 023","Points":10201,"X":594,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156341Z"},{"ID":27204,"Name":"SX002","Points":9204,"X":575,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156341Z"},{"ID":27205,"Name":"Orlando, Floryda","Points":10068,"X":602,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156342Z"},{"ID":27206,"Name":"0503","Points":10019,"X":534,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156342Z"},{"ID":27207,"Name":"092...bar","Points":9740,"X":459,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156343Z"},{"ID":27208,"Name":"Ć»UBRAWKA 007","Points":9943,"X":602,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156343Z"},{"ID":27209,"Name":"06. GT-R","Points":9812,"X":494,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156344Z"},{"ID":27210,"Name":"Wioska barbarzyƄska","Points":9348,"X":661,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156344Z"},{"ID":27211,"Name":"OhhhnOoo","Points":8255,"X":625,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156345Z"},{"ID":27212,"Name":"010","Points":5072,"X":645,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156345Z"},{"ID":27213,"Name":"006","Points":9349,"X":464,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156346Z"},{"ID":27214,"Name":"North Barba 028","Points":10047,"X":427,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156346Z"},{"ID":27215,"Name":"026","Points":9761,"X":647,"Y":562,"Continent":"K56","Bonus":4,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156347Z"},{"ID":27216,"Name":"#110#","Points":9761,"X":636,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156348Z"},{"ID":27217,"Name":"Wioska Bochun10","Points":5710,"X":339,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.156348Z"},{"ID":27218,"Name":"170...monlib","Points":6462,"X":451,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189337Z"},{"ID":27219,"Name":"Jehu_Kingdom_53","Points":6106,"X":649,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189338Z"},{"ID":27220,"Name":"K34 - [145] Before Land","Points":9783,"X":437,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189339Z"},{"ID":27221,"Name":"O04 Toledo","Points":9994,"X":661,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18934Z"},{"ID":27222,"Name":"Maszlug kolonia XX","Points":3607,"X":367,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18934Z"},{"ID":27223,"Name":"133","Points":8561,"X":475,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189341Z"},{"ID":27224,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":456,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189341Z"},{"ID":27225,"Name":"-11-","Points":6034,"X":334,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189342Z"},{"ID":27226,"Name":"A-033","Points":10168,"X":383,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189342Z"},{"ID":27227,"Name":"Klaudek.4","Points":8573,"X":591,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189343Z"},{"ID":27228,"Name":"Wioska Bochun10","Points":10311,"X":343,"Y":473,"Continent":"K43","Bonus":3,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189343Z"},{"ID":27229,"Name":"Jestem Poza Kontrolą","Points":9880,"X":349,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189344Z"},{"ID":27230,"Name":"The Game Has Only Just Begun","Points":9976,"X":346,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189345Z"},{"ID":27232,"Name":"007) Nowa Ruda","Points":3191,"X":546,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189345Z"},{"ID":27233,"Name":"C005","Points":10495,"X":611,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189346Z"},{"ID":27234,"Name":"MojeDnoToWaszSzczyt","Points":9976,"X":565,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189346Z"},{"ID":27235,"Name":"Grvvyq 110k$","Points":3895,"X":652,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189347Z"},{"ID":27236,"Name":"The Game Has Only Just Begun","Points":8915,"X":345,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189347Z"},{"ID":27237,"Name":"Valhalla A4","Points":7298,"X":377,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189348Z"},{"ID":27238,"Name":"Wioska barbarzyƄska","Points":5284,"X":502,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189349Z"},{"ID":27239,"Name":"608|375","Points":8340,"X":606,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189349Z"},{"ID":27240,"Name":"Ave Why!","Points":9525,"X":485,"Y":659,"Continent":"K64","Bonus":8,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18935Z"},{"ID":27242,"Name":"#0031 GL01N","Points":10178,"X":469,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18935Z"},{"ID":27243,"Name":"Gattacka","Points":9372,"X":617,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189351Z"},{"ID":27245,"Name":"I#016","Points":9797,"X":605,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189351Z"},{"ID":27246,"Name":"Tight OB","Points":9782,"X":495,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189352Z"},{"ID":27247,"Name":"Wioska Bochun10","Points":10311,"X":336,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189352Z"},{"ID":27248,"Name":"Pobozowisko","Points":8300,"X":382,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189353Z"},{"ID":27249,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":574,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189353Z"},{"ID":27250,"Name":"*037*","Points":8308,"X":633,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189354Z"},{"ID":27251,"Name":"Sir develes","Points":10471,"X":618,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189355Z"},{"ID":27252,"Name":"A020 Darek sxdf","Points":10160,"X":656,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189355Z"},{"ID":27253,"Name":"Wioska ƚmiechu","Points":3277,"X":380,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189356Z"},{"ID":27254,"Name":"Wioska barbarzyƄska","Points":3334,"X":448,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189356Z"},{"ID":27255,"Name":"Jestem Poza Kontrolą","Points":9880,"X":348,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189357Z"},{"ID":27256,"Name":"011 serniczek z niespodzianką","Points":9733,"X":501,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189357Z"},{"ID":27257,"Name":"Darmowe przeprowadzki","Points":11278,"X":476,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189358Z"},{"ID":27258,"Name":"Sir develes","Points":9327,"X":625,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189358Z"},{"ID":27259,"Name":"Wioska barbarzyƄska","Points":8510,"X":660,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189359Z"},{"ID":27260,"Name":"~~076~~","Points":7082,"X":614,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18936Z"},{"ID":27261,"Name":"013 WesoƂy Cyrk","Points":9835,"X":392,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18936Z"},{"ID":27262,"Name":"Myk i do kieszonki","Points":9799,"X":354,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189361Z"},{"ID":27263,"Name":"003 Vengerberg","Points":10168,"X":469,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189361Z"},{"ID":27264,"Name":"Wioska Bochun10","Points":10311,"X":335,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189362Z"},{"ID":27266,"Name":"K34 x032","Points":6066,"X":410,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189363Z"},{"ID":27267,"Name":"B 022","Points":9631,"X":662,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189363Z"},{"ID":27268,"Name":"22. PrzybudĂłwka u sebcia","Points":8668,"X":369,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189364Z"},{"ID":27269,"Name":"006. Lider","Points":6341,"X":499,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189364Z"},{"ID":27270,"Name":"020 serniczek na biszkopcie","Points":10252,"X":509,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189365Z"},{"ID":27271,"Name":"KUZYN","Points":10160,"X":411,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189365Z"},{"ID":27272,"Name":"057 xxx","Points":10545,"X":640,"Y":426,"Continent":"K46","Bonus":6,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189366Z"},{"ID":27273,"Name":"053","Points":10052,"X":529,"Y":577,"Continent":"K55","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189367Z"},{"ID":27274,"Name":"North Barba 043","Points":9894,"X":427,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189367Z"},{"ID":27275,"Name":"Wioska barbarzyƄska","Points":2242,"X":347,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189368Z"},{"ID":27276,"Name":"Wioska Bochun10","Points":6083,"X":339,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189368Z"},{"ID":27277,"Name":"080","Points":9825,"X":656,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189369Z"},{"ID":27278,"Name":"0546","Points":10019,"X":531,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189369Z"},{"ID":27279,"Name":"WesoƂych ƚwiąt","Points":6806,"X":576,"Y":356,"Continent":"K35","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18937Z"},{"ID":27280,"Name":"Wioska Bochun10","Points":10311,"X":337,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18937Z"},{"ID":27281,"Name":"054.","Points":9835,"X":390,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189371Z"},{"ID":27282,"Name":"cc 44","Points":4038,"X":400,"Y":375,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189372Z"},{"ID":27283,"Name":"Lord Lord Franek .#154","Points":10141,"X":504,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189372Z"},{"ID":27284,"Name":"Architekci PlacĂłw Boju","Points":8828,"X":339,"Y":532,"Continent":"K53","Bonus":5,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189373Z"},{"ID":27285,"Name":"Ave Why!","Points":9809,"X":471,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189373Z"},{"ID":27286,"Name":"Psycha Siada i sie nie podnosi","Points":10252,"X":466,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189374Z"},{"ID":27287,"Name":"072","Points":10311,"X":444,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189374Z"},{"ID":27288,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":462,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189375Z"},{"ID":27289,"Name":"016 Neapol","Points":10221,"X":380,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189376Z"},{"ID":27290,"Name":"#0079 barbarzyƄska","Points":10178,"X":475,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189376Z"},{"ID":27291,"Name":"Bagienko.Anker...","Points":8505,"X":375,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189377Z"},{"ID":27292,"Name":"aaaa","Points":9899,"X":476,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189377Z"},{"ID":27293,"Name":"BACÓWKA |029|","Points":7939,"X":631,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189378Z"},{"ID":27294,"Name":"Jehu_Kingdom_38","Points":6945,"X":644,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189378Z"},{"ID":27295,"Name":"Lord Lord Franek .#114","Points":10119,"X":517,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189379Z"},{"ID":27296,"Name":"021.","Points":9835,"X":400,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18938Z"},{"ID":27297,"Name":"MojeDnoToWaszSzczyt","Points":9976,"X":568,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18938Z"},{"ID":27298,"Name":"xxx - 04","Points":10318,"X":605,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189381Z"},{"ID":27299,"Name":"Wyngiel we wsi","Points":10064,"X":556,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189381Z"},{"ID":27300,"Name":"Kentin ufam Tobie","Points":8975,"X":339,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189382Z"},{"ID":27301,"Name":"094","Points":10365,"X":619,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189382Z"},{"ID":27302,"Name":"001 MONETKI","Points":9108,"X":659,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189383Z"},{"ID":27303,"Name":"Klaudek12","Points":4566,"X":592,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189384Z"},{"ID":27304,"Name":"A 011","Points":8674,"X":604,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189384Z"},{"ID":27305,"Name":"Elevation WY","Points":9835,"X":490,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189385Z"},{"ID":27306,"Name":"028 - Mroczna Osada","Points":8245,"X":639,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189385Z"},{"ID":27307,"Name":"Nowy ƛwiat A","Points":2853,"X":344,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189386Z"},{"ID":27308,"Name":"006 MONETKI","Points":9828,"X":660,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189386Z"},{"ID":27309,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189387Z"},{"ID":27310,"Name":"017. Barbara1","Points":2753,"X":335,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189388Z"},{"ID":27311,"Name":"011) RadkĂłw","Points":2137,"X":548,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189388Z"},{"ID":27312,"Name":"005","Points":9236,"X":646,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189389Z"},{"ID":27313,"Name":"020 Psycha SiadƂa :D","Points":4177,"X":460,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189389Z"},{"ID":27314,"Name":"deff 100 %","Points":9104,"X":351,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18939Z"},{"ID":27315,"Name":"041.","Points":9835,"X":394,"Y":622,"Continent":"K63","Bonus":5,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18939Z"},{"ID":27316,"Name":"Wioska barbarzyƄska","Points":2228,"X":631,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":848993505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189391Z"},{"ID":27317,"Name":"Wioska Bochun10","Points":10311,"X":341,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189391Z"},{"ID":27318,"Name":"Gra o Tron","Points":10019,"X":614,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189392Z"},{"ID":27320,"Name":"Wioska barbarzyƄska","Points":5236,"X":662,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189392Z"},{"ID":27321,"Name":"023","Points":10067,"X":660,"Y":524,"Continent":"K56","Bonus":2,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189393Z"},{"ID":27322,"Name":"Szulernia","Points":10638,"X":407,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189394Z"},{"ID":27323,"Name":"Lord Lord Franek .#115","Points":9729,"X":515,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189394Z"},{"ID":27325,"Name":"Wieƛmak","Points":8426,"X":334,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189395Z"},{"ID":27326,"Name":"amator czysto","Points":7733,"X":544,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189395Z"},{"ID":27327,"Name":"Wioska barbarzyƄska","Points":10252,"X":600,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189396Z"},{"ID":27328,"Name":"Dąbrowa 0006","Points":9966,"X":367,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189396Z"},{"ID":27329,"Name":"#0097 barbarzyƄska","Points":8869,"X":460,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189397Z"},{"ID":27330,"Name":"Kirkus","Points":11911,"X":422,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189398Z"},{"ID":27331,"Name":"Kentin ufam Tobie","Points":10000,"X":339,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189398Z"},{"ID":27332,"Name":"132","Points":7901,"X":473,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189399Z"},{"ID":27333,"Name":"Lord Lord Franek .#038","Points":10141,"X":524,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189399Z"},{"ID":27334,"Name":"009 MONETKI","Points":8903,"X":662,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1894Z"},{"ID":27335,"Name":"Maszlug kolonia XV","Points":5831,"X":367,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1894Z"},{"ID":27336,"Name":"B 046","Points":9057,"X":657,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189401Z"},{"ID":27337,"Name":"001 - Mroczna Osada","Points":9306,"X":639,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189402Z"},{"ID":27338,"Name":"Wioska 002","Points":10168,"X":383,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189402Z"},{"ID":27339,"Name":"Soltys Waszych Wsi","Points":8095,"X":398,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189403Z"},{"ID":27340,"Name":"Wioska barbarzyƄska","Points":6139,"X":658,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189403Z"},{"ID":27341,"Name":"Bagienko.Anker...","Points":6824,"X":376,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189404Z"},{"ID":27342,"Name":"Wioska barbarzyƄska","Points":7373,"X":416,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189404Z"},{"ID":27343,"Name":"003 Arkadia","Points":8478,"X":378,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189405Z"},{"ID":27344,"Name":"PiekƂo to inni","Points":10160,"X":582,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189406Z"},{"ID":27345,"Name":"025.","Points":9835,"X":404,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189406Z"},{"ID":27346,"Name":"112","Points":4802,"X":347,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189407Z"},{"ID":27347,"Name":"BACÓWKA |033|","Points":8925,"X":625,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189407Z"},{"ID":27348,"Name":"Jestem Poza Kontrolą","Points":9880,"X":347,"Y":543,"Continent":"K53","Bonus":8,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189408Z"},{"ID":27349,"Name":"0141","Points":10173,"X":625,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189408Z"},{"ID":27350,"Name":"Mniejsze zƂo 0071","Points":4879,"X":338,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189409Z"},{"ID":27351,"Name":"095","Points":10495,"X":622,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189409Z"},{"ID":27352,"Name":"WesoƂych ƚwiąt","Points":10109,"X":574,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18941Z"},{"ID":27353,"Name":"PiekƂo to inni","Points":10160,"X":565,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189411Z"},{"ID":27354,"Name":"Kentin ufam Tobie","Points":10000,"X":338,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189411Z"},{"ID":27355,"Name":"010","Points":5407,"X":377,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189412Z"},{"ID":27356,"Name":"Chekku - meito","Points":9976,"X":338,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189412Z"},{"ID":27357,"Name":"29k$ Grvvyq","Points":10495,"X":647,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189413Z"},{"ID":27358,"Name":"Szulernia","Points":10259,"X":412,"Y":362,"Continent":"K34","Bonus":8,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189413Z"},{"ID":27359,"Name":"Jednak wolę gofry","Points":10890,"X":436,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189414Z"},{"ID":27360,"Name":"Wioska barbarzyƄska","Points":5863,"X":663,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189415Z"},{"ID":27361,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":341,"Y":549,"Continent":"K53","Bonus":1,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189415Z"},{"ID":27363,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":507,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189416Z"},{"ID":27365,"Name":"034 barbarzyƄska","Points":7993,"X":642,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189416Z"},{"ID":27366,"Name":"076 terror","Points":9557,"X":640,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189417Z"},{"ID":27367,"Name":"North WyszkĂłw","Points":10297,"X":427,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189417Z"},{"ID":27368,"Name":"Lord Lord Franek .#060","Points":9976,"X":521,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189418Z"},{"ID":27370,"Name":"A 003","Points":10287,"X":643,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849027653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189419Z"},{"ID":27371,"Name":"Charfa","Points":10223,"X":514,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189419Z"},{"ID":27373,"Name":"0504","Points":10160,"X":534,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18942Z"},{"ID":27374,"Name":"Lord Lord Franek .#099","Points":10089,"X":513,"Y":335,"Continent":"K35","Bonus":2,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18942Z"},{"ID":27375,"Name":"002","Points":1612,"X":643,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699301458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189421Z"},{"ID":27376,"Name":"668|371","Points":5494,"X":608,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189421Z"},{"ID":27377,"Name":"0019","Points":10046,"X":412,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189422Z"},{"ID":27378,"Name":"Wioska 004","Points":10068,"X":387,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189423Z"},{"ID":27380,"Name":"LortMort__1__","Points":6774,"X":381,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189423Z"},{"ID":27381,"Name":"*No i po...","Points":8277,"X":574,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189424Z"},{"ID":27382,"Name":"001 Roma","Points":7270,"X":378,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189424Z"},{"ID":27383,"Name":"MaƂomice","Points":10365,"X":372,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189425Z"},{"ID":27384,"Name":"014. Dla flag","Points":3745,"X":350,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189425Z"},{"ID":27385,"Name":"Pobozowisko","Points":8322,"X":385,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189426Z"},{"ID":27386,"Name":"WiedĆșma - Gwiazda","Points":5929,"X":385,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":698884287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189426Z"},{"ID":27387,"Name":"Darmowe przeprowadzki","Points":9704,"X":464,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189427Z"},{"ID":27388,"Name":"0191","Points":10019,"X":546,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189427Z"},{"ID":27389,"Name":"006","Points":9783,"X":629,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189428Z"},{"ID":27390,"Name":"4.02","Points":9976,"X":346,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189429Z"},{"ID":27391,"Name":"I#008","Points":9692,"X":599,"Y":375,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189429Z"},{"ID":27392,"Name":"Macp 1","Points":9152,"X":339,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":61791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18943Z"},{"ID":27393,"Name":"Kentin ufam Tobie","Points":10000,"X":342,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18943Z"},{"ID":27394,"Name":"08 Wioska","Points":9768,"X":441,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":698993706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189431Z"},{"ID":27395,"Name":"myself","Points":9976,"X":562,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189431Z"},{"ID":27396,"Name":"Nowa 32","Points":10178,"X":650,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189432Z"},{"ID":27397,"Name":"Osada koczownikĂłw","Points":6857,"X":542,"Y":340,"Continent":"K35","Bonus":3,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189433Z"},{"ID":27398,"Name":"046","Points":8868,"X":570,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189433Z"},{"ID":27399,"Name":"0025","Points":9961,"X":419,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189434Z"},{"ID":27400,"Name":"Wioska Bochun10","Points":10311,"X":336,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189434Z"},{"ID":27401,"Name":"B.054","Points":10008,"X":665,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189435Z"},{"ID":27402,"Name":"cc Zoƛka","Points":10067,"X":399,"Y":370,"Continent":"K33","Bonus":1,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189435Z"},{"ID":27403,"Name":"PiekƂo to inni","Points":9938,"X":561,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189436Z"},{"ID":27404,"Name":"Wioska barbarzyƄska","Points":5473,"X":631,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189436Z"},{"ID":27405,"Name":"Wioska semunus","Points":1269,"X":626,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699758688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189437Z"},{"ID":27406,"Name":"Wioska Bochun10","Points":10311,"X":339,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189438Z"},{"ID":27407,"Name":"012 serniczek na ciepƂo","Points":9964,"X":500,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189438Z"},{"ID":27408,"Name":"Kentin ufam Tobie","Points":10000,"X":342,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189439Z"},{"ID":27409,"Name":"Wioska barbarzyƄska Krr","Points":3184,"X":368,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189439Z"},{"ID":27410,"Name":"Szulernia","Points":9983,"X":415,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18944Z"},{"ID":27411,"Name":"Kozaki 2","Points":12154,"X":629,"Y":604,"Continent":"K66","Bonus":2,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18944Z"},{"ID":27413,"Name":"0044","Points":9356,"X":409,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189441Z"},{"ID":27414,"Name":"Denger 18","Points":9654,"X":366,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189441Z"},{"ID":27415,"Name":"066","Points":8742,"X":665,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189442Z"},{"ID":27416,"Name":"0002","Points":10480,"X":394,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189442Z"},{"ID":27417,"Name":"Sparta_26","Points":9638,"X":488,"Y":591,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189443Z"},{"ID":27418,"Name":"17.solidna tama","Points":9133,"X":367,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189443Z"},{"ID":27419,"Name":"Lece bokiem","Points":10252,"X":463,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189444Z"},{"ID":27420,"Name":"MojeSzczytToTwĂłjDno","Points":10559,"X":508,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189445Z"},{"ID":27421,"Name":"--1. Chatka Wielkiego WƂadka","Points":10495,"X":388,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189445Z"},{"ID":27422,"Name":"Bagienko.Anker...","Points":9058,"X":376,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189446Z"},{"ID":27423,"Name":"#0063 barbarzyƄska","Points":10178,"X":468,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189446Z"},{"ID":27424,"Name":"Jehu_Kingdom_60","Points":4665,"X":649,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189447Z"},{"ID":27425,"Name":"102","Points":10019,"X":653,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189447Z"},{"ID":27427,"Name":"Szczebel","Points":8107,"X":631,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189448Z"},{"ID":27428,"Name":"lupi","Points":1289,"X":374,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699842853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189448Z"},{"ID":27429,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":569,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189449Z"},{"ID":27430,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10016,"X":524,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189449Z"},{"ID":27431,"Name":"013 serniczek zagƂady","Points":9745,"X":504,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18945Z"},{"ID":27432,"Name":"001 DĆŒinek","Points":9835,"X":391,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18945Z"},{"ID":27433,"Name":"KUZYN","Points":2961,"X":412,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189451Z"},{"ID":27434,"Name":"Krosno 1","Points":4815,"X":533,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189452Z"},{"ID":27435,"Name":"WesoƂych ƚwiąt","Points":5209,"X":592,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189452Z"},{"ID":27436,"Name":"Gattacka","Points":9488,"X":613,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189453Z"},{"ID":27437,"Name":"Jestem Poza Kontrolą","Points":9880,"X":346,"Y":551,"Continent":"K53","Bonus":9,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189453Z"},{"ID":27438,"Name":"J006","Points":10160,"X":366,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189454Z"},{"ID":27439,"Name":"Wioska barbarzyƄska","Points":8822,"X":662,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189454Z"},{"ID":27440,"Name":"A-013","Points":10319,"X":385,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189455Z"},{"ID":27441,"Name":"005 VW AreKing","Points":8266,"X":364,"Y":410,"Continent":"K43","Bonus":4,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189455Z"},{"ID":27442,"Name":"Gattacka","Points":9367,"X":619,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189456Z"},{"ID":27443,"Name":"Dajanka 34","Points":1450,"X":352,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189456Z"},{"ID":27444,"Name":"053","Points":3089,"X":609,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189457Z"},{"ID":27445,"Name":"Gattacka","Points":9382,"X":615,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189458Z"},{"ID":27446,"Name":"Wioska barbarzyƄska","Points":6962,"X":342,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189458Z"},{"ID":27447,"Name":"?010 barbarzyƄska","Points":9976,"X":539,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189459Z"},{"ID":27448,"Name":"SSJ 007","Points":9761,"X":510,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189459Z"},{"ID":27449,"Name":"0005","Points":9442,"X":612,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18946Z"},{"ID":27450,"Name":"A33","Points":9835,"X":472,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18946Z"},{"ID":27451,"Name":"607|369","Points":6292,"X":605,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189461Z"},{"ID":27452,"Name":"107","Points":9620,"X":655,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189461Z"},{"ID":27453,"Name":"042","Points":8748,"X":660,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189462Z"},{"ID":27454,"Name":"Valhalla B1","Points":11130,"X":378,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189462Z"},{"ID":27455,"Name":"Z 001","Points":7295,"X":487,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189463Z"},{"ID":27456,"Name":"PiekƂo to inni","Points":10160,"X":578,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189464Z"},{"ID":27457,"Name":"Wioska barbarzyƄska","Points":10237,"X":556,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189464Z"},{"ID":27459,"Name":"Wioska barbarzyƄska","Points":5726,"X":403,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189465Z"},{"ID":27460,"Name":"X009","Points":9462,"X":352,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189465Z"},{"ID":27461,"Name":"012Wybuch gazu","Points":9127,"X":389,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189466Z"},{"ID":27462,"Name":"WesoƂych ƚwiąt","Points":10160,"X":577,"Y":352,"Continent":"K35","Bonus":6,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189467Z"},{"ID":27463,"Name":"Wioska barbarzyƄska","Points":8857,"X":428,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189467Z"},{"ID":27464,"Name":"|001| Chania","Points":10063,"X":496,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189468Z"},{"ID":27465,"Name":"012 MONETKI","Points":8514,"X":661,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189468Z"},{"ID":27466,"Name":"086...barba centr","Points":10229,"X":457,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189469Z"},{"ID":27467,"Name":"*Nontendo","Points":9761,"X":575,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189469Z"},{"ID":27468,"Name":"ADEN","Points":10053,"X":572,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18947Z"},{"ID":27470,"Name":"666|375","Points":9570,"X":609,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18947Z"},{"ID":27471,"Name":"Gattacka","Points":9358,"X":618,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189471Z"},{"ID":27472,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":393,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189471Z"},{"ID":27473,"Name":"001 Gex1992","Points":9258,"X":336,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":915113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189472Z"},{"ID":27474,"Name":"I#010","Points":9797,"X":602,"Y":378,"Continent":"K36","Bonus":9,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189472Z"},{"ID":27475,"Name":"029 - Mroczna Osada","Points":6441,"X":642,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189473Z"},{"ID":27476,"Name":"O09 Almada","Points":10132,"X":665,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189474Z"},{"ID":27477,"Name":"|B| Silentshear","Points":9954,"X":487,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189474Z"},{"ID":27478,"Name":"65k$ Grvvyq","Points":9046,"X":650,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189475Z"},{"ID":27479,"Name":"059. Puteoli","Points":9177,"X":657,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189475Z"},{"ID":27480,"Name":"Wioska barbarzyƄska","Points":5734,"X":380,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189476Z"},{"ID":27481,"Name":".:072:. Chillout","Points":3937,"X":506,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189476Z"},{"ID":27482,"Name":"Pobozowisko","Points":6650,"X":384,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189477Z"},{"ID":27483,"Name":"0013","Points":10252,"X":536,"Y":662,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189477Z"},{"ID":27484,"Name":"#105#","Points":9761,"X":633,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189478Z"},{"ID":27485,"Name":"Ludzikowo","Points":8643,"X":338,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189479Z"},{"ID":27487,"Name":".055.","Points":7150,"X":467,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189479Z"},{"ID":27488,"Name":"Wioska barbarzyƄska","Points":7033,"X":401,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18948Z"},{"ID":27489,"Name":"Pobozowisko","Points":5653,"X":389,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18948Z"},{"ID":27490,"Name":"Zygmunciarz 2","Points":4108,"X":380,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189481Z"},{"ID":27491,"Name":"off 100 %","Points":10495,"X":361,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189481Z"},{"ID":27493,"Name":"Wioska barbarzyƄska","Points":8270,"X":664,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189482Z"},{"ID":27495,"Name":"Lord Lord Franek .#155","Points":9839,"X":505,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189482Z"},{"ID":27496,"Name":"31. SkoƂoszĂłw skrzyĆŒowanie","Points":10971,"X":373,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189483Z"},{"ID":27497,"Name":"Taki Pan","Points":5970,"X":513,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189483Z"},{"ID":27498,"Name":"006 serniczek z kawą","Points":10160,"X":504,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189484Z"},{"ID":27499,"Name":"017","Points":9825,"X":460,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189484Z"},{"ID":27500,"Name":"Grvvyq 117k$","Points":10160,"X":613,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189485Z"},{"ID":27501,"Name":"D 001","Points":9976,"X":663,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189485Z"},{"ID":27502,"Name":"-04-","Points":10062,"X":333,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189486Z"},{"ID":27503,"Name":"#0044 barbarzyƄska","Points":10178,"X":470,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189486Z"},{"ID":27504,"Name":"Wioska barbarzyƄska","Points":8281,"X":344,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189487Z"},{"ID":27505,"Name":"01Wioska","Points":9291,"X":368,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189487Z"},{"ID":27506,"Name":"029 weekend z serniczkiem","Points":9730,"X":506,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189488Z"},{"ID":27507,"Name":"=064= Wioska barbarzyƄska","Points":10139,"X":657,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189488Z"},{"ID":27508,"Name":"Maszlug kolonia XXI","Points":3697,"X":362,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189489Z"},{"ID":27509,"Name":"mys","Points":9594,"X":573,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18949Z"},{"ID":27510,"Name":"=050= Wioska barbarzyƄska","Points":10580,"X":644,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18949Z"},{"ID":27511,"Name":"022","Points":3878,"X":450,"Y":651,"Continent":"K64","Bonus":2,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189491Z"},{"ID":27512,"Name":"B 038","Points":8674,"X":662,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189491Z"},{"ID":27513,"Name":"#0081 barbarzyƄska","Points":10178,"X":471,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189492Z"},{"ID":27514,"Name":"0010","Points":10252,"X":534,"Y":662,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189492Z"},{"ID":27515,"Name":"Jestem Poza Kontrolą","Points":9880,"X":345,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189493Z"},{"ID":27516,"Name":"087","Points":10495,"X":621,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189493Z"},{"ID":27517,"Name":"Wioska barbarzyƄska","Points":3454,"X":346,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189494Z"},{"ID":27518,"Name":"Architekci PlacĂłw Boju","Points":7647,"X":339,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189494Z"},{"ID":27519,"Name":"Ɓajka","Points":9730,"X":663,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189495Z"},{"ID":27521,"Name":"-08-","Points":6188,"X":334,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189496Z"},{"ID":27522,"Name":"Lord Lord Franek .#039","Points":10141,"X":522,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189496Z"},{"ID":27523,"Name":"B 023","Points":9505,"X":663,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189497Z"},{"ID":27524,"Name":"Tylko pp /","Points":5667,"X":620,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":7559093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189497Z"},{"ID":27525,"Name":"050","Points":9721,"X":662,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189498Z"},{"ID":27526,"Name":"Kentin ufam Tobie","Points":10000,"X":393,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189498Z"},{"ID":27527,"Name":"[160]","Points":9024,"X":566,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189499Z"},{"ID":27528,"Name":"Urged nal","Points":9835,"X":510,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189499Z"},{"ID":27529,"Name":"#0077 barbarzyƄska","Points":9764,"X":473,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1895Z"},{"ID":27530,"Name":"xyz #004 TerrorMachine","Points":9740,"X":580,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1895Z"},{"ID":27531,"Name":"008.","Points":9835,"X":400,"Y":630,"Continent":"K64","Bonus":3,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189501Z"},{"ID":27532,"Name":"Wioska barbarzyƄska","Points":936,"X":339,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189501Z"},{"ID":27533,"Name":"Pobozowisko","Points":10645,"X":378,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189502Z"},{"ID":27535,"Name":"MojeSzczytToTwĂłjDno","Points":10338,"X":503,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189503Z"},{"ID":27536,"Name":"5AA","Points":8594,"X":355,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":7765098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189503Z"},{"ID":27537,"Name":"Szlachcic !!!","Points":9681,"X":506,"Y":475,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189504Z"},{"ID":27538,"Name":"B 047","Points":8992,"X":657,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189504Z"},{"ID":27539,"Name":"North Barba 044","Points":9289,"X":424,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189505Z"},{"ID":27541,"Name":"048","Points":9968,"X":664,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189505Z"},{"ID":27542,"Name":"KUZYN","Points":3230,"X":417,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189506Z"},{"ID":27543,"Name":"Wioska barbarzyƄska","Points":2152,"X":344,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189506Z"},{"ID":27544,"Name":"05 Wioska","Points":7455,"X":442,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698993706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189507Z"},{"ID":27545,"Name":"WesoƂych ƚwiąt","Points":6359,"X":591,"Y":362,"Continent":"K35","Bonus":7,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189507Z"},{"ID":27546,"Name":"Bagdad","Points":10303,"X":495,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189508Z"},{"ID":27547,"Name":"Szulernia","Points":10169,"X":409,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189508Z"},{"ID":27548,"Name":"Darmowe przeprowadzki","Points":11254,"X":476,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189509Z"},{"ID":27549,"Name":"sas","Points":9835,"X":557,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189509Z"},{"ID":27550,"Name":"Szulernia","Points":9989,"X":411,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18951Z"},{"ID":27551,"Name":"Myk i do kieszonki","Points":9799,"X":357,"Y":583,"Continent":"K53","Bonus":4,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189511Z"},{"ID":27552,"Name":"003.","Points":9761,"X":397,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189511Z"},{"ID":27553,"Name":"0463","Points":9883,"X":380,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189512Z"},{"ID":27554,"Name":"038","Points":9744,"X":649,"Y":561,"Continent":"K56","Bonus":7,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189512Z"},{"ID":27555,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":507,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189513Z"},{"ID":27556,"Name":"Szlachcic","Points":10253,"X":406,"Y":368,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189513Z"},{"ID":27557,"Name":"Gattacka","Points":10470,"X":617,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189514Z"},{"ID":27558,"Name":"068 xyz013","Points":10132,"X":644,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189514Z"},{"ID":27559,"Name":"13 - Osada","Points":10495,"X":376,"Y":610,"Continent":"K63","Bonus":4,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189515Z"},{"ID":27561,"Name":"Osada koczownikĂłw","Points":10220,"X":557,"Y":343,"Continent":"K35","Bonus":2,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189515Z"},{"ID":27562,"Name":"Gattacka","Points":10470,"X":615,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189516Z"},{"ID":27563,"Name":"[170]","Points":7175,"X":641,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189516Z"},{"ID":27564,"Name":"Ronin P","Points":10019,"X":611,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189517Z"},{"ID":27565,"Name":"083","Points":5460,"X":661,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189517Z"},{"ID":27566,"Name":"Myk i do kieszonki","Points":9799,"X":379,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189518Z"},{"ID":27567,"Name":"North Kutno","Points":10292,"X":420,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189519Z"},{"ID":27568,"Name":"024.","Points":9835,"X":401,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189519Z"},{"ID":27569,"Name":"Erebor 1","Points":10471,"X":501,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18952Z"},{"ID":27570,"Name":"012...PƁD_O","Points":10495,"X":455,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18952Z"},{"ID":27571,"Name":"Wioska barbarzyƄska","Points":3397,"X":379,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189521Z"},{"ID":27572,"Name":"026","Points":9937,"X":664,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189521Z"},{"ID":27573,"Name":"004Wioska","Points":10051,"X":463,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189522Z"},{"ID":27574,"Name":"#0072 barbarzyƄska","Points":9203,"X":469,"Y":337,"Continent":"K34","Bonus":7,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189522Z"},{"ID":27575,"Name":"M181_025","Points":9902,"X":359,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189523Z"},{"ID":27576,"Name":"045.xxx","Points":10103,"X":512,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189524Z"},{"ID":27577,"Name":"024 Boston","Points":10319,"X":430,"Y":434,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189524Z"},{"ID":27578,"Name":"Lord Lord Franek .#116","Points":9880,"X":519,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189525Z"},{"ID":27579,"Name":"0008 GdaƄsk","Points":6525,"X":377,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189525Z"},{"ID":27580,"Name":"0505","Points":10019,"X":533,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189526Z"},{"ID":27582,"Name":"0000","Points":2772,"X":618,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189526Z"},{"ID":27583,"Name":"Grvvyq 102k$","Points":10495,"X":653,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189527Z"},{"ID":27584,"Name":"Bagdad","Points":10068,"X":502,"Y":338,"Continent":"K35","Bonus":5,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189527Z"},{"ID":27585,"Name":"Pobozowisko","Points":10952,"X":409,"Y":589,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189528Z"},{"ID":27586,"Name":"xyz #012 TerrorMachine","Points":6806,"X":583,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189528Z"},{"ID":27587,"Name":"PiekƂo to inni","Points":10160,"X":581,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189529Z"},{"ID":27588,"Name":"#0034 barbarzyƄska","Points":10178,"X":464,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189529Z"},{"ID":27589,"Name":"Jestem Poza Kontrolą","Points":9880,"X":346,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18953Z"},{"ID":27590,"Name":"wErza","Points":5482,"X":449,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18953Z"},{"ID":27591,"Name":"026... ZachĂłd","Points":10559,"X":434,"Y":349,"Continent":"K34","Bonus":6,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189531Z"},{"ID":27592,"Name":"|A| Timberfrost","Points":10495,"X":478,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189531Z"},{"ID":27593,"Name":"012 VW Wioska barbarzyƄska","Points":4174,"X":365,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189532Z"},{"ID":27594,"Name":"cc 01 Wioska barbarzyƄska","Points":10503,"X":402,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189532Z"},{"ID":27595,"Name":"0088","Points":10495,"X":606,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189533Z"},{"ID":27596,"Name":"*056","Points":9615,"X":602,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189533Z"},{"ID":27597,"Name":"O08 Sintra","Points":10157,"X":665,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189534Z"},{"ID":27598,"Name":"0506","Points":9747,"X":532,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189535Z"},{"ID":27599,"Name":"010 barbarzyƄska","Points":10290,"X":642,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189535Z"},{"ID":27600,"Name":"Wioska barbarzyƄska","Points":10178,"X":348,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189536Z"},{"ID":27601,"Name":"Szlachcic","Points":10495,"X":403,"Y":371,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189536Z"},{"ID":27602,"Name":"#0074 barbarzyƄska","Points":10178,"X":472,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189537Z"},{"ID":27604,"Name":"Akra","Points":9067,"X":418,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189537Z"},{"ID":27605,"Name":"002","Points":10019,"X":599,"Y":366,"Continent":"K35","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189538Z"},{"ID":27606,"Name":"BETON 024","Points":10495,"X":623,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189538Z"},{"ID":27607,"Name":"PiekƂo to inni","Points":10160,"X":564,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189539Z"},{"ID":27608,"Name":"Wioska barbarzyƄska","Points":1848,"X":385,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189539Z"},{"ID":27609,"Name":"030","Points":9893,"X":663,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18954Z"},{"ID":27610,"Name":"Krosno 3","Points":5807,"X":537,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189541Z"},{"ID":27611,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":522,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189541Z"},{"ID":27612,"Name":"Wioska barbarzyƄska","Points":10370,"X":558,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189542Z"},{"ID":27613,"Name":"ObrzeĆŒa 09","Points":5983,"X":552,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189542Z"},{"ID":27614,"Name":"Wioska Bochun10","Points":7780,"X":335,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189543Z"},{"ID":27615,"Name":"A0301","Points":10362,"X":340,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189543Z"},{"ID":27616,"Name":"0536","Points":10426,"X":562,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189544Z"},{"ID":27617,"Name":"Bagdad","Points":10311,"X":496,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189544Z"},{"ID":27618,"Name":"32. Na WaƂbrzych","Points":10728,"X":373,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189545Z"},{"ID":27619,"Name":"D 002","Points":10479,"X":660,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189545Z"},{"ID":27620,"Name":"Jaaa","Points":10555,"X":665,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189546Z"},{"ID":27621,"Name":"Rabsztyn","Points":8906,"X":378,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189547Z"},{"ID":27622,"Name":"O15 Alftanes","Points":10006,"X":664,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189547Z"},{"ID":27623,"Name":"A007","Points":10362,"X":617,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189548Z"},{"ID":27624,"Name":"Lord Lord Franek .#061","Points":10023,"X":535,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189548Z"},{"ID":27625,"Name":"BEZDZIETNY KAWALER","Points":10160,"X":412,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189549Z"},{"ID":27626,"Name":"Ręcznik do zmiany","Points":10160,"X":369,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189549Z"},{"ID":27627,"Name":"Szulernia","Points":10237,"X":409,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18955Z"},{"ID":27628,"Name":"O26 Songdo","Points":9852,"X":664,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18955Z"},{"ID":27629,"Name":"*052","Points":9728,"X":593,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189551Z"},{"ID":27630,"Name":"0507","Points":10160,"X":519,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189551Z"},{"ID":27631,"Name":"010 MONETKI","Points":8757,"X":656,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189552Z"},{"ID":27633,"Name":"Pobozowisko","Points":6687,"X":383,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189552Z"},{"ID":27634,"Name":"off 100 %","Points":10245,"X":352,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189553Z"},{"ID":27635,"Name":"102...tomecz","Points":9529,"X":483,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189554Z"},{"ID":27636,"Name":"wJuvia","Points":4849,"X":447,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189554Z"},{"ID":27637,"Name":"Myk i do kieszonki","Points":9799,"X":348,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189555Z"},{"ID":27638,"Name":"Gattacka","Points":10470,"X":617,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189555Z"},{"ID":27639,"Name":"K34 - [132] Before Land","Points":9783,"X":437,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189556Z"},{"ID":27640,"Name":"North Barba 047","Points":8981,"X":425,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189556Z"},{"ID":27641,"Name":"111","Points":10495,"X":473,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189557Z"},{"ID":27642,"Name":"Selawi","Points":8697,"X":344,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189557Z"},{"ID":27643,"Name":"B 030","Points":9509,"X":660,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189558Z"},{"ID":27644,"Name":"0023","Points":10069,"X":417,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189559Z"},{"ID":27645,"Name":"utopia","Points":8506,"X":365,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189559Z"},{"ID":27646,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18956Z"},{"ID":27647,"Name":"059","Points":8404,"X":665,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18956Z"},{"ID":27648,"Name":"025 - Mroczna Osada","Points":10728,"X":636,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189561Z"},{"ID":27649,"Name":"Sexxy","Points":10019,"X":609,"Y":617,"Continent":"K66","Bonus":5,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189561Z"},{"ID":27650,"Name":"Nowa 34","Points":9819,"X":646,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189562Z"},{"ID":27651,"Name":"Myk i do kieszonki","Points":9980,"X":358,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189562Z"},{"ID":27652,"Name":"BEZDZIETNY KAWALER","Points":10066,"X":412,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189563Z"},{"ID":27653,"Name":"OrzeƂ WylądowaƂ","Points":6892,"X":459,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189563Z"},{"ID":27654,"Name":"=041= Wioska barbarzyƄska","Points":10110,"X":650,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189564Z"},{"ID":27655,"Name":"North Brzeƛć Kujawski","Points":9887,"X":418,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189564Z"},{"ID":27656,"Name":"24. KaruTown","Points":9735,"X":634,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189565Z"},{"ID":27657,"Name":"J004.","Points":10083,"X":367,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189565Z"},{"ID":27658,"Name":"0012","Points":7756,"X":612,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189566Z"},{"ID":27659,"Name":"Zapora","Points":2492,"X":391,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":606706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189567Z"},{"ID":27660,"Name":"cc pol004","Points":5999,"X":400,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189567Z"},{"ID":27661,"Name":"Wioska barbarzyƄska","Points":9835,"X":570,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189568Z"},{"ID":27662,"Name":"0001 KrakĂłw","Points":10634,"X":391,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189568Z"},{"ID":27663,"Name":"CC Choroszcz","Points":9888,"X":395,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189569Z"},{"ID":27664,"Name":"J06","Points":3047,"X":365,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189569Z"},{"ID":27665,"Name":"*244*","Points":10430,"X":351,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18957Z"},{"ID":27666,"Name":"Wioska Tomek85","Points":9761,"X":388,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18957Z"},{"ID":27667,"Name":"Sir develes","Points":10471,"X":622,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189571Z"},{"ID":27668,"Name":"POMIDOR","Points":10728,"X":662,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189571Z"},{"ID":27669,"Name":"Wioska barbarzyƄska","Points":8312,"X":338,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189572Z"},{"ID":27670,"Name":"psycha sitting","Points":10311,"X":425,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189572Z"},{"ID":27671,"Name":"#0089 barbarzyƄska","Points":9557,"X":471,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189573Z"},{"ID":27672,"Name":"001 Teneesse","Points":9835,"X":476,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189574Z"},{"ID":27673,"Name":"Jestem Poza Kontrolą","Points":8803,"X":349,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189574Z"},{"ID":27674,"Name":"048. Hispalis","Points":10252,"X":630,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189575Z"},{"ID":27675,"Name":"Szlachcic","Points":10475,"X":403,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189575Z"},{"ID":27676,"Name":"027. Propaganda","Points":9904,"X":512,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189576Z"},{"ID":27677,"Name":"Minneapolis, Minnesota","Points":10068,"X":602,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189576Z"},{"ID":27678,"Name":"Wioska barbarzyƄska","Points":7439,"X":402,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189577Z"},{"ID":27679,"Name":"Osada koczownikĂłw","Points":10481,"X":586,"Y":638,"Continent":"K65","Bonus":6,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189577Z"},{"ID":27680,"Name":"Monetkownia","Points":10237,"X":616,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189578Z"},{"ID":27681,"Name":"Nowa 29","Points":9960,"X":644,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189578Z"},{"ID":27682,"Name":"Wioska barbarzyƄska","Points":5330,"X":540,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189579Z"},{"ID":27683,"Name":"Szulernia","Points":9981,"X":409,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189579Z"},{"ID":27684,"Name":"J007.","Points":10019,"X":369,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18958Z"},{"ID":27685,"Name":"psycha sitting","Points":10311,"X":442,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18958Z"},{"ID":27686,"Name":"0547","Points":9860,"X":528,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189581Z"},{"ID":27687,"Name":"Szlachcic","Points":10025,"X":456,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189581Z"},{"ID":27688,"Name":"BACÓWKA |023|","Points":7047,"X":640,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189582Z"},{"ID":27689,"Name":"02 tonieostatnieslowo","Points":9554,"X":606,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189582Z"},{"ID":27690,"Name":"BACÓWKA |037|","Points":5667,"X":633,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189583Z"},{"ID":27692,"Name":"020","Points":9783,"X":661,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189584Z"},{"ID":27693,"Name":"015.","Points":9835,"X":396,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189584Z"},{"ID":27695,"Name":"Wioska Bochun10","Points":10336,"X":336,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189585Z"},{"ID":27696,"Name":"609|372","Points":5311,"X":607,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189585Z"},{"ID":27697,"Name":"Architekci PlacĂłw Boju","Points":3400,"X":340,"Y":543,"Continent":"K53","Bonus":7,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189586Z"},{"ID":27698,"Name":"Ave Why!","Points":9924,"X":456,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189586Z"},{"ID":27699,"Name":"008","Points":8264,"X":595,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189587Z"},{"ID":27700,"Name":"0015","Points":10252,"X":556,"Y":656,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189587Z"},{"ID":27701,"Name":"008","Points":4490,"X":380,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189588Z"},{"ID":27702,"Name":"Stawiamy pƂotek","Points":2013,"X":347,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189588Z"},{"ID":27703,"Name":"Jestem Poza Kontrolą","Points":9880,"X":348,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189589Z"},{"ID":27704,"Name":"Wioska Bochun10","Points":10569,"X":337,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189589Z"},{"ID":27705,"Name":"0089","Points":10495,"X":614,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18959Z"},{"ID":27706,"Name":"cc Tworki","Points":10027,"X":396,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18959Z"},{"ID":27707,"Name":"117 Wioska barbarzyƄska","Points":9756,"X":548,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189591Z"},{"ID":27708,"Name":"Pobozowisko","Points":7998,"X":377,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189591Z"},{"ID":27709,"Name":"012","Points":9740,"X":662,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189592Z"},{"ID":27710,"Name":"*Neptek","Points":9761,"X":580,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189592Z"},{"ID":27711,"Name":"*095*","Points":10211,"X":359,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189593Z"},{"ID":27712,"Name":"084","Points":9806,"X":654,"Y":556,"Continent":"K56","Bonus":9,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189594Z"},{"ID":27713,"Name":"Banan#1","Points":10211,"X":593,"Y":367,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189594Z"},{"ID":27714,"Name":"Myk i do kieszonki","Points":9799,"X":359,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189595Z"},{"ID":27715,"Name":"049","Points":9708,"X":657,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189595Z"},{"ID":27716,"Name":"Wioska 001","Points":9610,"X":384,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189596Z"},{"ID":27717,"Name":"014.","Points":9835,"X":403,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189596Z"},{"ID":27718,"Name":"023 pawelk95","Points":9500,"X":661,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189597Z"},{"ID":27719,"Name":"26. KaruTown","Points":9735,"X":635,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189597Z"},{"ID":27720,"Name":"A001","Points":9805,"X":472,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189598Z"},{"ID":27721,"Name":"Kuku na Muniu","Points":8652,"X":344,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189598Z"},{"ID":27722,"Name":"Chekku - meito","Points":10068,"X":336,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189599Z"},{"ID":27723,"Name":"18 Belegost","Points":6788,"X":458,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189599Z"},{"ID":27724,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":524,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1896Z"},{"ID":27725,"Name":"-007-","Points":10136,"X":344,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1896Z"},{"ID":27726,"Name":"MojeDnoToWaszSzczyt","Points":9924,"X":566,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189601Z"},{"ID":27727,"Name":"076 komornicy","Points":2501,"X":341,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189601Z"},{"ID":27729,"Name":"Jednak wolę gofry","Points":7828,"X":424,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189602Z"},{"ID":27730,"Name":"Kozaki 3","Points":12154,"X":616,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189603Z"},{"ID":27731,"Name":"006 Speyside","Points":6081,"X":554,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189603Z"},{"ID":27732,"Name":"=051= Wioska barbarzyƄska","Points":8878,"X":642,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189604Z"},{"ID":27733,"Name":"--keystone","Points":10311,"X":623,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189604Z"},{"ID":27734,"Name":"040","Points":10311,"X":655,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189605Z"},{"ID":27735,"Name":"135","Points":6593,"X":475,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189605Z"},{"ID":27737,"Name":"BACÓWKA |030|","Points":5878,"X":631,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189606Z"},{"ID":27738,"Name":"I009","Points":10140,"X":664,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189606Z"},{"ID":27739,"Name":"0086","Points":10495,"X":609,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189607Z"},{"ID":27740,"Name":"088","Points":10401,"X":622,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189607Z"},{"ID":27741,"Name":"07 Wioska","Points":6548,"X":440,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":698993706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189608Z"},{"ID":27742,"Name":"Darmowe przeprowadzki","Points":9809,"X":467,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189608Z"},{"ID":27743,"Name":"Wioska barbarzyƄska","Points":6874,"X":664,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189609Z"},{"ID":27746,"Name":"Dodowo mniejsze","Points":8998,"X":339,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189609Z"},{"ID":27747,"Name":"0030","Points":10495,"X":612,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18961Z"},{"ID":27748,"Name":"003","Points":1563,"X":650,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699301458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18961Z"},{"ID":27749,"Name":"005 Jeszcze ĆŒyje","Points":5551,"X":337,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":915113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189611Z"},{"ID":27750,"Name":"007 serniczek z czekoladą","Points":10160,"X":504,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189611Z"},{"ID":27751,"Name":"072","Points":8892,"X":627,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189612Z"},{"ID":27752,"Name":"OrzeƂ WylądowaƂ","Points":10093,"X":457,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189613Z"},{"ID":27753,"Name":"0195","Points":10019,"X":546,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189613Z"},{"ID":27754,"Name":"=048= Wioska barbarzyƄska","Points":10526,"X":657,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189614Z"},{"ID":27755,"Name":"## Nieznana ##","Points":10094,"X":630,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189614Z"},{"ID":27756,"Name":"Krosno 6","Points":5263,"X":538,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189615Z"},{"ID":27757,"Name":"MojeSzczytToTwĂłjDno","Points":10490,"X":508,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189615Z"},{"ID":27758,"Name":"006.Lille","Points":9792,"X":336,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189616Z"},{"ID":27759,"Name":"Pobozowisko","Points":9364,"X":381,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189616Z"},{"ID":27760,"Name":"011.","Points":10019,"X":624,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189617Z"},{"ID":27761,"Name":"023 MƂodzieƄcza radoƛć","Points":8603,"X":391,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189617Z"},{"ID":27762,"Name":"B.08","Points":9566,"X":667,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189618Z"},{"ID":27763,"Name":"Lord Lord Franek .#062","Points":9965,"X":527,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189618Z"},{"ID":27764,"Name":"Ć»UBRAWKA 001","Points":10452,"X":603,"Y":622,"Continent":"K66","Bonus":6,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189619Z"},{"ID":27765,"Name":"004","Points":9835,"X":423,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18962Z"},{"ID":27766,"Name":"Myk i do kieszonki","Points":9799,"X":348,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18962Z"},{"ID":27767,"Name":"Ave Why!","Points":9194,"X":477,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189621Z"},{"ID":27768,"Name":"Samarkanda","Points":9452,"X":426,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189621Z"},{"ID":27770,"Name":"Grvvyq 100k$","Points":10495,"X":653,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189622Z"},{"ID":27772,"Name":"0283","Points":9354,"X":554,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189622Z"},{"ID":27773,"Name":"NI1","Points":10495,"X":346,"Y":457,"Continent":"K43","Bonus":5,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189623Z"},{"ID":27774,"Name":"Wioska Bochun10","Points":10336,"X":333,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189623Z"},{"ID":27775,"Name":"PiekƂo to inni","Points":10019,"X":564,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189624Z"},{"ID":27776,"Name":"ObrzeĆŒa 03","Points":10838,"X":554,"Y":655,"Continent":"K65","Bonus":4,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189624Z"},{"ID":27777,"Name":"FifonĆŒ","Points":9459,"X":339,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189625Z"},{"ID":27778,"Name":"012","Points":9797,"X":602,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189625Z"},{"ID":27779,"Name":"*Nic nowego...","Points":9761,"X":578,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189626Z"},{"ID":27780,"Name":"Architekci PlacĂłw Boju","Points":4589,"X":338,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189626Z"},{"ID":27781,"Name":"Jamachama","Points":6965,"X":367,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189627Z"},{"ID":27782,"Name":"12k$ Grvvyq","Points":10495,"X":657,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189627Z"},{"ID":27783,"Name":"-01-","Points":10728,"X":332,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189628Z"},{"ID":27784,"Name":"Jednak wolę gofry","Points":5060,"X":422,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189628Z"},{"ID":27786,"Name":"=052= Wioska barbarzyƄska","Points":10580,"X":644,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189629Z"},{"ID":27787,"Name":"Chekku - meito","Points":8141,"X":334,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189629Z"},{"ID":27788,"Name":"003 Wioska barbarzyƄska","Points":8623,"X":335,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":915113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18963Z"},{"ID":27789,"Name":"Gattacka","Points":9372,"X":612,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189631Z"},{"ID":27790,"Name":"Monetkownia","Points":10237,"X":617,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189631Z"},{"ID":27791,"Name":"Osięciny-morra12311","Points":10534,"X":650,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189632Z"},{"ID":27792,"Name":"z 057","Points":10495,"X":583,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189632Z"},{"ID":27793,"Name":"A033 Wioska 7","Points":9497,"X":657,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189633Z"},{"ID":27794,"Name":"001","Points":9995,"X":422,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189633Z"},{"ID":27795,"Name":"Ć»UBRAWKA B002","Points":9149,"X":618,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189634Z"},{"ID":27797,"Name":"[172]","Points":6972,"X":637,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189634Z"},{"ID":27798,"Name":"ObrzeĆŒa 05","Points":11550,"X":554,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189635Z"},{"ID":27799,"Name":"DW5","Points":10495,"X":347,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189635Z"},{"ID":27801,"Name":"026 barbarzyƄska","Points":9879,"X":643,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189636Z"},{"ID":27802,"Name":"Darmowe przeprowadzki","Points":11143,"X":466,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189636Z"},{"ID":27803,"Name":"Wioska Bochun10","Points":4469,"X":336,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189637Z"},{"ID":27804,"Name":"0028","Points":9546,"X":416,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189637Z"},{"ID":27805,"Name":"Valhalla 8.","Points":9078,"X":375,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189638Z"},{"ID":27806,"Name":"056.","Points":9835,"X":392,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189638Z"},{"ID":27807,"Name":"North Barba 045","Points":9714,"X":426,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189639Z"},{"ID":27808,"Name":"SPOCENI KUZYNI","Points":9248,"X":416,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189639Z"},{"ID":27809,"Name":"Gattacka","Points":10470,"X":618,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18964Z"},{"ID":27810,"Name":"0508","Points":10019,"X":541,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189641Z"},{"ID":27811,"Name":"North Barba 037","Points":9983,"X":421,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189641Z"},{"ID":27812,"Name":"Lord Lord Franek .#156","Points":9976,"X":503,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189642Z"},{"ID":27813,"Name":"B 058","Points":5759,"X":664,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189642Z"},{"ID":27814,"Name":"073","Points":8761,"X":629,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189643Z"},{"ID":27816,"Name":"ObrzeĆŒa 091","Points":5641,"X":553,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189643Z"},{"ID":27817,"Name":"Taran","Points":9379,"X":544,"Y":385,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189644Z"},{"ID":27818,"Name":"A034 Wioska 8","Points":10140,"X":654,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189644Z"},{"ID":27819,"Name":"*142*","Points":8743,"X":358,"Y":416,"Continent":"K43","Bonus":7,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189645Z"},{"ID":27820,"Name":"Valhalla 9","Points":9970,"X":374,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189645Z"},{"ID":27821,"Name":"Taki Pan","Points":6213,"X":501,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189646Z"},{"ID":27822,"Name":"79k$ Grvvyq","Points":10495,"X":655,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189646Z"},{"ID":27823,"Name":"2.05","Points":6910,"X":343,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189647Z"},{"ID":27825,"Name":"Krosno 5","Points":4926,"X":538,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189647Z"},{"ID":27826,"Name":"0006","Points":3763,"X":424,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189648Z"},{"ID":27827,"Name":"Darma dla zawodnika","Points":10229,"X":518,"Y":667,"Continent":"K65","Bonus":7,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189648Z"},{"ID":27828,"Name":"Zachodnie skrzydlo","Points":4174,"X":614,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189649Z"},{"ID":27829,"Name":"Wioska barbarzyƄska","Points":9825,"X":633,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189649Z"},{"ID":27830,"Name":"Lord Lord Franek .#157","Points":9971,"X":501,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18965Z"},{"ID":27831,"Name":"Ave Why!","Points":9387,"X":480,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18965Z"},{"ID":27832,"Name":"Lord Lord Franek .#007","Points":10294,"X":525,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189651Z"},{"ID":27833,"Name":"023","Points":10019,"X":452,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189652Z"},{"ID":27834,"Name":"Avanti!","Points":9950,"X":381,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189652Z"},{"ID":27835,"Name":"O12 Barbosa","Points":10006,"X":662,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189653Z"},{"ID":27836,"Name":"10 im Mironowa","Points":9809,"X":591,"Y":430,"Continent":"K45","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189653Z"},{"ID":27837,"Name":"Bagdad","Points":10132,"X":498,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189654Z"},{"ID":27838,"Name":"=068= Wioska barbarzyƄska","Points":10380,"X":659,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189654Z"},{"ID":27839,"Name":"Wioska barbarzyƄska","Points":9835,"X":573,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189655Z"},{"ID":27840,"Name":"113. Morze Garyjskie","Points":7968,"X":634,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189655Z"},{"ID":27841,"Name":"024 pawelk95","Points":9000,"X":663,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189656Z"},{"ID":27842,"Name":"030 - Mroczna Osada","Points":6848,"X":642,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189656Z"},{"ID":27843,"Name":"Dajanka 30","Points":365,"X":353,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189657Z"},{"ID":27844,"Name":"|016| Kato Zakros","Points":10252,"X":493,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189657Z"},{"ID":27845,"Name":"130...centr","Points":9740,"X":447,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189658Z"},{"ID":27846,"Name":"PiekƂo to inni","Points":10160,"X":583,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189659Z"},{"ID":27847,"Name":"Taki Pan","Points":5208,"X":513,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189659Z"},{"ID":27848,"Name":"wStyx","Points":5960,"X":447,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18966Z"},{"ID":27849,"Name":"|019| Gialos","Points":10160,"X":499,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18966Z"},{"ID":27850,"Name":"OrzeƂ WylądowaƂ","Points":8806,"X":462,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189661Z"},{"ID":27851,"Name":"000000","Points":10495,"X":415,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189661Z"},{"ID":27852,"Name":"D 016","Points":9820,"X":662,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189662Z"},{"ID":27853,"Name":"Maszlug kolonia XIX","Points":4416,"X":361,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189662Z"},{"ID":27854,"Name":"0087","Points":10495,"X":610,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189663Z"},{"ID":27855,"Name":"027.","Points":9835,"X":406,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189663Z"},{"ID":27856,"Name":"Lord Lord Franek .#063","Points":10144,"X":535,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189664Z"},{"ID":27857,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":382,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189664Z"},{"ID":27858,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9817,"X":522,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189665Z"},{"ID":27859,"Name":"K34 - [129] Before Land","Points":9783,"X":441,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189665Z"},{"ID":27860,"Name":"#113#","Points":8180,"X":638,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189666Z"},{"ID":27861,"Name":"A22","Points":10842,"X":476,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189666Z"},{"ID":27862,"Name":"ObrzeĆŒa 08","Points":6706,"X":553,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189667Z"},{"ID":27863,"Name":"A029","Points":9170,"X":595,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189668Z"},{"ID":27864,"Name":"Wioska Bochun10","Points":10444,"X":337,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189668Z"},{"ID":27865,"Name":"llllllllllllllll","Points":10224,"X":626,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189669Z"},{"ID":27866,"Name":"104","Points":10019,"X":654,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189669Z"},{"ID":27867,"Name":"Wioska Bochun10","Points":10311,"X":340,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18967Z"},{"ID":27868,"Name":"13. Stara ujeĆŒdĆŒalnia","Points":8984,"X":371,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18967Z"},{"ID":27870,"Name":"SPOCENI KUZYNI","Points":10109,"X":421,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189671Z"},{"ID":27871,"Name":"[B]_[027] Dejv.oldplyr","Points":9441,"X":434,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189671Z"},{"ID":27872,"Name":"Architekci PlacĂłw Boju","Points":7700,"X":342,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189672Z"},{"ID":27874,"Name":"002","Points":9340,"X":423,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189672Z"},{"ID":27875,"Name":"005 MONETKI","Points":8911,"X":657,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189673Z"},{"ID":27877,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":565,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189673Z"},{"ID":27878,"Name":"0022","Points":9993,"X":414,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189674Z"},{"ID":27879,"Name":"Ave Why!","Points":11297,"X":476,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189674Z"},{"ID":27880,"Name":"Piwna 26","Points":7418,"X":648,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189675Z"},{"ID":27882,"Name":"Bagdad","Points":9766,"X":499,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189675Z"},{"ID":27883,"Name":"Lord Lord Franek .#178","Points":10160,"X":531,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189676Z"},{"ID":27884,"Name":"Chekku - meito","Points":8555,"X":343,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189676Z"},{"ID":27885,"Name":"--Lead","Points":10104,"X":623,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189677Z"},{"ID":27887,"Name":"Szlachcic/Taran","Points":10237,"X":613,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189678Z"},{"ID":27888,"Name":"Lord Lord Franek .#064","Points":9957,"X":525,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189678Z"},{"ID":27889,"Name":"009","Points":5705,"X":646,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189679Z"},{"ID":27890,"Name":"Psycha Siada","Points":9126,"X":457,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189679Z"},{"ID":27891,"Name":"Lech PoznaƄ NWR","Points":9835,"X":491,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18968Z"},{"ID":27892,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":464,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18968Z"},{"ID":27893,"Name":"Kentin ufam Tobie","Points":10000,"X":338,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189681Z"},{"ID":27894,"Name":"029 MONETKI","Points":9581,"X":662,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189681Z"},{"ID":27895,"Name":"052","Points":9377,"X":663,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189682Z"},{"ID":27896,"Name":"Wioska Bochun10","Points":8457,"X":338,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189682Z"},{"ID":27897,"Name":"Nowy ƚwiat RCxD","Points":9835,"X":487,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189683Z"},{"ID":27899,"Name":"xyz #016 TerrorMachine","Points":5753,"X":583,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189683Z"},{"ID":27900,"Name":"639|410 Wioska barbarzyƄska","Points":7018,"X":639,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189684Z"},{"ID":27901,"Name":"Ave Why!","Points":9385,"X":477,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189685Z"},{"ID":27902,"Name":"Kentin ufam Tobie","Points":10000,"X":337,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189685Z"},{"ID":27903,"Name":"I#030","Points":8022,"X":598,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189686Z"},{"ID":27904,"Name":"Dajanka 29","Points":2153,"X":353,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189686Z"},{"ID":27905,"Name":"North PƂock","Points":9906,"X":426,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189687Z"},{"ID":27906,"Name":"039 Attre","Points":9976,"X":468,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189687Z"},{"ID":27907,"Name":"Architekci PlacĂłw Boju","Points":9795,"X":341,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189688Z"},{"ID":27908,"Name":"WKS","Points":9405,"X":332,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189688Z"},{"ID":27909,"Name":"Jednak wolę gofry","Points":10083,"X":473,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189689Z"},{"ID":27910,"Name":"*Ness","Points":9761,"X":576,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189689Z"},{"ID":27912,"Name":"50k$ Grvvyq","Points":7856,"X":650,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18969Z"},{"ID":27913,"Name":"Wioska 065","Points":9761,"X":640,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18969Z"},{"ID":27914,"Name":"*245*","Points":9104,"X":353,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189691Z"},{"ID":27915,"Name":"002 serniczek z rodzynkami","Points":10160,"X":500,"Y":668,"Continent":"K65","Bonus":1,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189692Z"},{"ID":27917,"Name":"yogi","Points":10393,"X":531,"Y":543,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189692Z"},{"ID":27918,"Name":"KUZYN","Points":2813,"X":415,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189693Z"},{"ID":27919,"Name":"Wioska barbarzyƄska","Points":9835,"X":577,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189693Z"},{"ID":27920,"Name":"18. Podlascy inwigilatorzy","Points":9166,"X":373,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189694Z"},{"ID":27921,"Name":"127 Village Name 2","Points":10001,"X":598,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189694Z"},{"ID":27922,"Name":"032 barbarzyƄska","Points":8151,"X":644,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189695Z"},{"ID":27923,"Name":"Taki Pan","Points":5937,"X":499,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189695Z"},{"ID":27924,"Name":"Wioska barbarzyƄska","Points":7141,"X":379,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189696Z"},{"ID":27925,"Name":"=059= Wioska barbarzyƄska","Points":10473,"X":645,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189696Z"},{"ID":27926,"Name":"Wioska barbarzyƄska","Points":10217,"X":556,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189697Z"},{"ID":27927,"Name":"Mexico2","Points":9428,"X":455,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189697Z"},{"ID":27928,"Name":"0566","Points":10019,"X":567,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189698Z"},{"ID":27930,"Name":"ADEN","Points":10311,"X":576,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189698Z"},{"ID":27931,"Name":"020","Points":9525,"X":627,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189699Z"},{"ID":27932,"Name":"B 016","Points":10458,"X":662,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189699Z"},{"ID":27933,"Name":"wWendy","Points":7087,"X":448,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1897Z"},{"ID":27934,"Name":"mys","Points":9976,"X":565,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1897Z"},{"ID":27935,"Name":"Lord Lord Franek .#065","Points":10152,"X":532,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189701Z"},{"ID":27936,"Name":"Pobozowisko","Points":8337,"X":385,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189701Z"},{"ID":27937,"Name":"0161","Points":10160,"X":535,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189702Z"},{"ID":27938,"Name":"I#029","Points":5768,"X":597,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189702Z"},{"ID":27939,"Name":"Taran","Points":10728,"X":667,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189703Z"},{"ID":27940,"Name":"Ziemia","Points":3374,"X":549,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189703Z"},{"ID":27941,"Name":"GrabĂłwek","Points":10168,"X":387,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189704Z"},{"ID":27942,"Name":"Wioska Bochun10","Points":10495,"X":334,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189705Z"},{"ID":27943,"Name":"Sony 911","Points":10208,"X":582,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189705Z"},{"ID":27944,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":393,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189706Z"},{"ID":27945,"Name":"D 012","Points":9746,"X":666,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189706Z"},{"ID":27946,"Name":"[157]","Points":8038,"X":642,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189707Z"},{"ID":27947,"Name":"#0091 barbarzyƄska","Points":9203,"X":479,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189707Z"},{"ID":27948,"Name":"K34 - [134] Before Land","Points":10126,"X":432,"Y":353,"Continent":"K34","Bonus":3,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189708Z"},{"ID":27950,"Name":"B.055","Points":10000,"X":665,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189708Z"},{"ID":27951,"Name":"Ave Why!","Points":9465,"X":476,"Y":665,"Continent":"K64","Bonus":9,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189709Z"},{"ID":27952,"Name":"WesoƂych ƚwiąt","Points":5397,"X":588,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189709Z"},{"ID":27953,"Name":"OrzeƂ WylądowaƂ","Points":10158,"X":465,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18971Z"},{"ID":27954,"Name":"0509","Points":10495,"X":521,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18971Z"},{"ID":27956,"Name":"030...Ob","Points":10220,"X":453,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189711Z"},{"ID":27957,"Name":"Jestem Poza Kontrolą","Points":8369,"X":349,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189711Z"},{"ID":27958,"Name":"Lord Lord Franek .#040","Points":9960,"X":525,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189712Z"},{"ID":27959,"Name":"021 Anor Londo","Points":10787,"X":487,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189712Z"},{"ID":27960,"Name":"029...OPELEK","Points":10233,"X":441,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189713Z"},{"ID":27961,"Name":"PiekƂo to inni","Points":4293,"X":580,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189714Z"},{"ID":27962,"Name":"Rework","Points":9156,"X":366,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189715Z"},{"ID":27963,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":565,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189715Z"},{"ID":27964,"Name":"Lord Lord Franek .#066","Points":9962,"X":534,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189716Z"},{"ID":27966,"Name":"Lord Lord Franek .#117","Points":9960,"X":509,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189716Z"},{"ID":27967,"Name":"Wioska klez 017","Points":6865,"X":335,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189717Z"},{"ID":27968,"Name":"Gattacka","Points":9809,"X":613,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189717Z"},{"ID":27969,"Name":"036 Thurn","Points":3426,"X":442,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189718Z"},{"ID":27970,"Name":"Wioska barbarzyƄska","Points":10220,"X":554,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189718Z"},{"ID":27971,"Name":"-0003-","Points":9761,"X":543,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189719Z"},{"ID":27972,"Name":"Valhalla 3","Points":9218,"X":369,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189719Z"},{"ID":27973,"Name":"011","Points":9811,"X":433,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18972Z"},{"ID":27974,"Name":"121...centr","Points":7474,"X":457,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18972Z"},{"ID":27976,"Name":"Wioska barbarzyƄska","Points":10378,"X":553,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189721Z"},{"ID":27977,"Name":"134...barba","Points":8959,"X":458,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189721Z"},{"ID":27978,"Name":"--wall drug","Points":9761,"X":624,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189722Z"},{"ID":27980,"Name":"Wioska Bochun10","Points":4471,"X":337,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189723Z"},{"ID":27981,"Name":"Ave Why!","Points":11297,"X":479,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189723Z"},{"ID":27982,"Name":"MojeSzczytToTwĂłjDno","Points":10478,"X":510,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189724Z"},{"ID":27983,"Name":"004 nazwa","Points":10019,"X":363,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189724Z"},{"ID":27984,"Name":"Wioska barbarzyƄska","Points":6185,"X":379,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189725Z"},{"ID":27985,"Name":"026|| Puppis","Points":10019,"X":490,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189725Z"},{"ID":27986,"Name":"Ć»UBRAWKA 024","Points":9849,"X":592,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189726Z"},{"ID":27987,"Name":"Darmowe przeprowadzki","Points":11321,"X":461,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189726Z"},{"ID":27988,"Name":"02Wioska","Points":7313,"X":367,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189727Z"},{"ID":27989,"Name":"Ć»ubr .::. Metanol Lecter/1","Points":6812,"X":597,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189727Z"},{"ID":27990,"Name":"118 Wioska barbarzyƄska","Points":9997,"X":548,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189728Z"},{"ID":27991,"Name":"Dajanka 21","Points":1878,"X":341,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189728Z"},{"ID":27992,"Name":"0019","Points":6173,"X":625,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189729Z"},{"ID":27993,"Name":"Dąbrowa 0001","Points":10083,"X":359,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189729Z"},{"ID":27994,"Name":"Jowisz","Points":4202,"X":550,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18973Z"},{"ID":27995,"Name":"CHARFA","Points":10218,"X":512,"Y":339,"Continent":"K35","Bonus":5,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189731Z"},{"ID":27996,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9817,"X":524,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189731Z"},{"ID":27997,"Name":"#.19 YYY","Points":10019,"X":659,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189732Z"},{"ID":27998,"Name":"[0023]","Points":10495,"X":419,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189732Z"},{"ID":27999,"Name":"Szlachcic !!!","Points":8983,"X":496,"Y":471,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189733Z"},{"ID":28000,"Name":"Ć»UBRAWKA 014","Points":9606,"X":602,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189733Z"},{"ID":28001,"Name":"009","Points":7767,"X":593,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189734Z"},{"ID":28002,"Name":"PiekƂo to inni","Points":10160,"X":580,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189734Z"},{"ID":28003,"Name":"023 VW Wioska barbarzyƄska","Points":3363,"X":362,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189735Z"},{"ID":28005,"Name":"Szlachcic/Taran","Points":8914,"X":622,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189735Z"},{"ID":28006,"Name":"OrzeƂ WylądowaƂ","Points":9491,"X":462,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189736Z"},{"ID":28007,"Name":"047","Points":10173,"X":661,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189736Z"},{"ID":28008,"Name":"34. Lutkow litra na Ƃep","Points":7284,"X":378,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189737Z"},{"ID":28009,"Name":"Wioska","Points":9559,"X":386,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189738Z"},{"ID":28011,"Name":"Krosno","Points":7335,"X":533,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189738Z"},{"ID":28012,"Name":"[0024]","Points":10495,"X":416,"Y":413,"Continent":"K44","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189739Z"},{"ID":28013,"Name":"Monetkownia","Points":10237,"X":619,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18974Z"},{"ID":28015,"Name":"Jaaa","Points":9398,"X":666,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18974Z"},{"ID":28016,"Name":"*007","Points":10144,"X":591,"Y":639,"Continent":"K65","Bonus":4,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189741Z"},{"ID":28017,"Name":"Wioska barbarzyƄska","Points":6310,"X":351,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189741Z"},{"ID":28018,"Name":"77.","Points":6539,"X":634,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189742Z"},{"ID":28019,"Name":"Itself SA","Points":9835,"X":511,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189742Z"},{"ID":28020,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":523,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189743Z"},{"ID":28021,"Name":"PiekƂo to inni","Points":10160,"X":561,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189743Z"},{"ID":28022,"Name":"=053= Wioska barbarzyƄska","Points":9609,"X":645,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189744Z"},{"ID":28024,"Name":"Taki Pan","Points":6167,"X":513,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189744Z"},{"ID":28025,"Name":"Monetkownia","Points":10237,"X":617,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189745Z"},{"ID":28026,"Name":"001.","Points":9835,"X":398,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189745Z"},{"ID":28027,"Name":"Mniejsze zƂo 0085","Points":5031,"X":339,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189746Z"},{"ID":28028,"Name":"060","Points":10160,"X":656,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189746Z"},{"ID":28029,"Name":"deff 100 %","Points":8982,"X":347,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189747Z"},{"ID":28030,"Name":"001.Wioska zbyszek2609","Points":9814,"X":333,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189747Z"},{"ID":28031,"Name":"016","Points":10019,"X":454,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189748Z"},{"ID":28032,"Name":"009. Dla flag","Points":7188,"X":348,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189748Z"},{"ID":28033,"Name":"015","Points":9746,"X":667,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189749Z"},{"ID":28034,"Name":"Jestem Poza Kontrolą","Points":9587,"X":348,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189749Z"},{"ID":28035,"Name":"03 Wioska","Points":9485,"X":442,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698993706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18975Z"},{"ID":28036,"Name":"Wioska 009","Points":10061,"X":386,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18975Z"},{"ID":28037,"Name":"nosze klapki marki Kubota","Points":10346,"X":581,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189751Z"},{"ID":28038,"Name":"E#001","Points":5829,"X":634,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189752Z"},{"ID":28039,"Name":"Darma dla zawodnika","Points":10424,"X":515,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189752Z"},{"ID":28040,"Name":"Ć»UBRAWKA 015","Points":8000,"X":596,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189753Z"},{"ID":28041,"Name":"Jaaa","Points":10495,"X":668,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189753Z"},{"ID":28042,"Name":"zzzRezygnacja 01","Points":11550,"X":631,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189754Z"},{"ID":28043,"Name":"112","Points":7144,"X":652,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189754Z"},{"ID":28044,"Name":"cc Kobierzynqqqqqqqqqqqqqqqqq","Points":10144,"X":394,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189755Z"},{"ID":28045,"Name":"Ave Why!","Points":9632,"X":481,"Y":665,"Continent":"K64","Bonus":4,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189755Z"},{"ID":28046,"Name":"#0098 barbarzyƄska","Points":7776,"X":460,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189756Z"},{"ID":28047,"Name":"Lord Lord Franek .#067","Points":10032,"X":523,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189756Z"},{"ID":28049,"Name":"A032 Wioska 3","Points":10143,"X":658,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189757Z"},{"ID":28050,"Name":"Hej hoo","Points":10495,"X":436,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189757Z"},{"ID":28051,"Name":"Jestem Poza Kontrolą","Points":9880,"X":349,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189758Z"},{"ID":28052,"Name":".achim.","Points":9980,"X":490,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189758Z"},{"ID":28053,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":395,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189759Z"},{"ID":28054,"Name":"-016-","Points":9899,"X":371,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189759Z"},{"ID":28055,"Name":"[A]013","Points":3335,"X":430,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849097175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18976Z"},{"ID":28056,"Name":"A01","Points":10019,"X":472,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189761Z"},{"ID":28057,"Name":"050.","Points":9583,"X":406,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189761Z"},{"ID":28058,"Name":"031","Points":10158,"X":667,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189762Z"},{"ID":28059,"Name":"Nowy ƛwiat 3","Points":6812,"X":344,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189762Z"},{"ID":28060,"Name":"8047","Points":8480,"X":375,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189763Z"},{"ID":28061,"Name":"Aila","Points":7441,"X":419,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189763Z"},{"ID":28062,"Name":"Chekku - meito","Points":9976,"X":335,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189764Z"},{"ID":28063,"Name":"Lord Lord Franek .#158","Points":10299,"X":509,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189764Z"},{"ID":28064,"Name":"089","Points":10401,"X":623,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189765Z"},{"ID":28065,"Name":"Valhalla A3","Points":7206,"X":374,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189765Z"},{"ID":28066,"Name":"Wioska barbarzyƄska","Points":3884,"X":661,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189766Z"},{"ID":28067,"Name":"A036","Points":10211,"X":574,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189766Z"},{"ID":28068,"Name":"SPOCENI KUZYNI","Points":3731,"X":413,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189767Z"},{"ID":28069,"Name":"66. KaruTown","Points":10080,"X":631,"Y":402,"Continent":"K46","Bonus":9,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189767Z"},{"ID":28070,"Name":"042 | PALESTINA","Points":9544,"X":645,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189768Z"},{"ID":28071,"Name":"Darmowe przeprowadzki","Points":10753,"X":468,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189769Z"},{"ID":28072,"Name":"xxx - 06","Points":10654,"X":609,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189769Z"},{"ID":28073,"Name":"009","Points":8203,"X":598,"Y":632,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18977Z"},{"ID":28074,"Name":"008 serniczek z karmelem","Points":9984,"X":502,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18977Z"},{"ID":28075,"Name":"psycha sitting","Points":7314,"X":428,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189771Z"},{"ID":28076,"Name":"M181_022","Points":9902,"X":356,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189771Z"},{"ID":28077,"Name":"023.","Points":9835,"X":401,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189772Z"},{"ID":28078,"Name":"Denger 13","Points":9239,"X":360,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189772Z"},{"ID":28079,"Name":"0510","Points":10083,"X":533,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189773Z"},{"ID":28080,"Name":"040","Points":9735,"X":662,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189773Z"},{"ID":28081,"Name":"*No i co z tego...","Points":9761,"X":575,"Y":645,"Continent":"K65","Bonus":1,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189774Z"},{"ID":28082,"Name":"Wioska Bochun10","Points":10311,"X":333,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189774Z"},{"ID":28083,"Name":"003","Points":3356,"X":545,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849087786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189775Z"},{"ID":28084,"Name":"016.","Points":9835,"X":403,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189776Z"},{"ID":28085,"Name":"025","Points":11321,"X":653,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189776Z"},{"ID":28086,"Name":"Lord Lord Franek .#118","Points":8096,"X":518,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189777Z"},{"ID":28087,"Name":"008 Gors Velen","Points":10104,"X":466,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189777Z"},{"ID":28088,"Name":"052KZ","Points":7350,"X":486,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189778Z"},{"ID":28089,"Name":"Wioska barbarzyƄska","Points":5053,"X":540,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189778Z"},{"ID":28090,"Name":"070","Points":10019,"X":602,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189779Z"},{"ID":28091,"Name":"022","Points":10019,"X":603,"Y":367,"Continent":"K36","Bonus":9,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189779Z"},{"ID":28092,"Name":"0297","Points":10083,"X":568,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18978Z"},{"ID":28093,"Name":"002","Points":5150,"X":547,"Y":341,"Continent":"K35","Bonus":2,"PlayerID":849087786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18978Z"},{"ID":28094,"Name":"093...bar","Points":9287,"X":453,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189781Z"},{"ID":28095,"Name":"Darma dla zawodnika","Points":9804,"X":527,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189781Z"},{"ID":28096,"Name":"#.39 Wioska barbarzyƄska","Points":4058,"X":662,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189782Z"},{"ID":28097,"Name":"019 - Mroczna Osada","Points":10320,"X":635,"Y":410,"Continent":"K46","Bonus":2,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189782Z"},{"ID":28098,"Name":"025... PóƂ zach","Points":10495,"X":450,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189783Z"},{"ID":28099,"Name":"B.09","Points":7274,"X":663,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189783Z"},{"ID":28100,"Name":"---010","Points":9432,"X":375,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189784Z"},{"ID":28101,"Name":"026.","Points":9835,"X":401,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189784Z"},{"ID":28102,"Name":"Myk i do kieszonki","Points":9799,"X":358,"Y":578,"Continent":"K53","Bonus":5,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189785Z"},{"ID":28103,"Name":"42k$ Grvvyq","Points":10333,"X":649,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189785Z"},{"ID":28104,"Name":"|B| Crystalshell.","Points":10495,"X":488,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189786Z"},{"ID":28106,"Name":"072","Points":7755,"X":659,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189787Z"},{"ID":28107,"Name":"*4625*a Remont","Points":9658,"X":646,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189787Z"},{"ID":28108,"Name":"Wioska barbarzyƄska","Points":9727,"X":576,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189788Z"},{"ID":28109,"Name":"27. W buszu","Points":8007,"X":360,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189788Z"},{"ID":28110,"Name":"J009","Points":6391,"X":365,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189789Z"},{"ID":28111,"Name":"009 serniczek z makrelą","Points":10062,"X":502,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189789Z"},{"ID":28112,"Name":"B.056","Points":10000,"X":668,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18979Z"},{"ID":28113,"Name":"Valhalla 1","Points":12154,"X":369,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18979Z"},{"ID":28114,"Name":"zzzRezygnacja 04","Points":10495,"X":627,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189791Z"},{"ID":28115,"Name":"045KZ","Points":8307,"X":483,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189791Z"},{"ID":28116,"Name":"*025","Points":9712,"X":600,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189792Z"},{"ID":28117,"Name":"WesoƂych ƚwiąt","Points":5429,"X":591,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189793Z"},{"ID":28118,"Name":"027 MONETKI","Points":9544,"X":663,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189793Z"},{"ID":28119,"Name":"Wioska Kaffik II","Points":6733,"X":634,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189794Z"},{"ID":28120,"Name":"Wioska barbarzyƄska","Points":6945,"X":384,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189794Z"},{"ID":28122,"Name":"090","Points":10495,"X":622,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189795Z"},{"ID":28123,"Name":"0233","Points":10083,"X":540,"Y":661,"Continent":"K65","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189795Z"},{"ID":28124,"Name":"113...centr","Points":8474,"X":453,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189796Z"},{"ID":28125,"Name":"0235","Points":10083,"X":558,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189796Z"},{"ID":28126,"Name":"*01 Nemeczek*","Points":10177,"X":362,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189797Z"},{"ID":28127,"Name":"Klan Wilka","Points":8035,"X":346,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189797Z"},{"ID":28128,"Name":"Kasyno","Points":9491,"X":449,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189798Z"},{"ID":28129,"Name":"Lord Lord Franek .#106","Points":9957,"X":516,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189798Z"},{"ID":28130,"Name":"X008","Points":10008,"X":351,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189799Z"},{"ID":28131,"Name":"Gattacka","Points":9372,"X":615,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189799Z"},{"ID":28132,"Name":"Wioska barbarzyƄska","Points":4142,"X":543,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1898Z"},{"ID":28133,"Name":"--Lyon","Points":10703,"X":619,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.1898Z"},{"ID":28134,"Name":"Dzielnica klasztorna","Points":5120,"X":481,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189801Z"},{"ID":28135,"Name":"Twierdzą 4","Points":7670,"X":660,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189801Z"},{"ID":28136,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":394,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189802Z"},{"ID":28137,"Name":"Valhalla A1","Points":7449,"X":374,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189802Z"},{"ID":28138,"Name":"0067","Points":9473,"X":424,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189803Z"},{"ID":28140,"Name":"048 BOBI 4","Points":9309,"X":662,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189804Z"},{"ID":28141,"Name":"cc Z0000000000000","Points":5922,"X":393,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189804Z"},{"ID":28142,"Name":"022","Points":7667,"X":470,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189805Z"},{"ID":28143,"Name":"046 Essex","Points":7800,"X":632,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189805Z"},{"ID":28144,"Name":"Wuwuzela","Points":8703,"X":340,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189806Z"},{"ID":28145,"Name":"B 018","Points":9789,"X":661,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189806Z"},{"ID":28146,"Name":"Lord Lord Franek .#159","Points":9925,"X":503,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189807Z"},{"ID":28147,"Name":"76.","Points":5498,"X":634,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189807Z"},{"ID":28148,"Name":"O33 Florida","Points":10006,"X":667,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189808Z"},{"ID":28149,"Name":"Myk i do kieszonki","Points":9799,"X":353,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189808Z"},{"ID":28150,"Name":"Wioska barbarzyƄska","Points":3768,"X":371,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189809Z"},{"ID":28151,"Name":"Wioska barbarzyƄska","Points":3940,"X":384,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189809Z"},{"ID":28152,"Name":"1v9 machine","Points":10019,"X":391,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18981Z"},{"ID":28153,"Name":"054","Points":9809,"X":356,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189811Z"},{"ID":28154,"Name":"014 serniczek z posypką","Points":9806,"X":504,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189811Z"},{"ID":28155,"Name":"012 Beauclair","Points":10311,"X":460,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189812Z"},{"ID":28156,"Name":"53. KaruTown","Points":4854,"X":636,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189812Z"},{"ID":28157,"Name":"Bagdad","Points":10311,"X":498,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189813Z"},{"ID":28158,"Name":"Wioska Bochun10","Points":10452,"X":337,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189813Z"},{"ID":28159,"Name":"chata z basenem","Points":10362,"X":594,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189814Z"},{"ID":28160,"Name":"deff 100 %","Points":9790,"X":349,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189814Z"},{"ID":28161,"Name":"Lord Lord Franek .#068","Points":9962,"X":526,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189815Z"},{"ID":28162,"Name":"[B]_[003] Dejv.oldplyr","Points":10495,"X":429,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189815Z"},{"ID":28163,"Name":"016.Barbara","Points":4655,"X":335,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189816Z"},{"ID":28164,"Name":"OrzeƂ WylądowaƂ","Points":10160,"X":466,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189816Z"},{"ID":28165,"Name":"North Barba 048","Points":9674,"X":423,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189817Z"},{"ID":28166,"Name":"kto ananasowy pod wodą ma dom","Points":9938,"X":661,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189818Z"},{"ID":28167,"Name":"008 MONETKI","Points":9828,"X":663,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189818Z"},{"ID":28168,"Name":"013W-Będzin","Points":10495,"X":558,"Y":510,"Continent":"K55","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189819Z"},{"ID":28169,"Name":"Lord Lord Franek .#069","Points":9976,"X":517,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189819Z"},{"ID":28170,"Name":"nie budzić !!!","Points":10268,"X":582,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18982Z"},{"ID":28172,"Name":"K34 - [139] Before Land","Points":9783,"X":442,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18982Z"},{"ID":28173,"Name":"0030 MzM","Points":8788,"X":634,"Y":592,"Continent":"K56","Bonus":3,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189821Z"},{"ID":28174,"Name":"010 - Mroczna Osada","Points":10602,"X":640,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189821Z"},{"ID":28175,"Name":"Wioska barbarzyƄska","Points":3390,"X":632,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189822Z"},{"ID":28176,"Name":"Lord Lord Franek .#070","Points":9955,"X":526,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189822Z"},{"ID":28177,"Name":"Myk i do kieszonki","Points":9799,"X":347,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189823Z"},{"ID":28178,"Name":"Szulernia","Points":10898,"X":383,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189823Z"},{"ID":28179,"Name":"Budal","Points":10259,"X":620,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189824Z"},{"ID":28180,"Name":"Wioska barbarzyƄska","Points":6833,"X":350,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189824Z"},{"ID":28181,"Name":"Sony 911","Points":10257,"X":588,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189825Z"},{"ID":28182,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":566,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189826Z"},{"ID":28183,"Name":"Lord Lord Franek .#119","Points":9933,"X":511,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189826Z"},{"ID":28184,"Name":"X007","Points":10495,"X":352,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189827Z"},{"ID":28185,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":392,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189827Z"},{"ID":28186,"Name":"Architekci PlacĂłw Boju","Points":4042,"X":341,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189828Z"},{"ID":28187,"Name":"Architekci PlacĂłw Boju","Points":9778,"X":338,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189828Z"},{"ID":28188,"Name":"136","Points":7275,"X":476,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189829Z"},{"ID":28189,"Name":"#0042 barbarzyƄska","Points":10178,"X":470,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189829Z"},{"ID":28190,"Name":"amator","Points":8811,"X":554,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18983Z"},{"ID":28191,"Name":"Klaudek","Points":9994,"X":591,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18983Z"},{"ID":28192,"Name":"Wioska Bochun10","Points":8238,"X":336,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189831Z"},{"ID":28193,"Name":"043","Points":9790,"X":660,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189831Z"},{"ID":28195,"Name":"Grvvyq 116k$","Points":10252,"X":612,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189832Z"},{"ID":28196,"Name":"*080*","Points":10211,"X":358,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189832Z"},{"ID":28197,"Name":"Z 002","Points":6546,"X":488,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189833Z"},{"ID":28198,"Name":"004 - Mroczna Osada","Points":11321,"X":642,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189834Z"},{"ID":28199,"Name":"089","Points":9753,"X":658,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189834Z"},{"ID":28200,"Name":"Lord Lord Franek .#160","Points":10029,"X":505,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189835Z"},{"ID":28201,"Name":"02. StraĆŒ miejska na Zawadach","Points":9986,"X":505,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189835Z"},{"ID":28202,"Name":"020 MONETKI","Points":9380,"X":662,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189836Z"},{"ID":28203,"Name":"Valhalla A0","Points":9629,"X":372,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189836Z"},{"ID":28204,"Name":"Cezaria","Points":8598,"X":408,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":849096944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189837Z"},{"ID":28205,"Name":"::::35:::","Points":8179,"X":447,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189837Z"},{"ID":28207,"Name":"033 serniczek rosa","Points":10970,"X":515,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189838Z"},{"ID":28208,"Name":"*013 Nemeczek*","Points":9274,"X":363,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189838Z"},{"ID":28209,"Name":"*064*","Points":10211,"X":356,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189839Z"},{"ID":28210,"Name":"0653","Points":9747,"X":539,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189839Z"},{"ID":28211,"Name":"Klaudek7","Points":7160,"X":594,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18984Z"},{"ID":28212,"Name":"[A]001","Points":7561,"X":425,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18984Z"},{"ID":28213,"Name":"A022 Alicante","Points":10160,"X":658,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189841Z"},{"ID":28214,"Name":"BACÓWKA |036|","Points":12154,"X":631,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189841Z"},{"ID":28215,"Name":"Z 003","Points":9023,"X":488,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189842Z"},{"ID":28216,"Name":"OrzeƂ WylądowaƂ","Points":8739,"X":451,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189842Z"},{"ID":28217,"Name":"Lord Lord Franek .#161","Points":9881,"X":501,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189843Z"},{"ID":28218,"Name":"[B]_[007] Dejv.oldplyr","Points":10728,"X":424,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189843Z"},{"ID":28219,"Name":"Wioska barbarzyƄska","Points":5674,"X":349,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189844Z"},{"ID":28220,"Name":"Wioska Bochun10","Points":10311,"X":338,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189844Z"},{"ID":28221,"Name":"Lord Lord Franek .#120","Points":8155,"X":516,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189845Z"},{"ID":28222,"Name":"Wioska barbarzyƄska","Points":7109,"X":422,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189845Z"},{"ID":28223,"Name":"A 009","Points":10362,"X":608,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189846Z"},{"ID":28224,"Name":".///...//././././././././","Points":9190,"X":390,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189846Z"},{"ID":28225,"Name":"005.Coma","Points":8158,"X":366,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189847Z"},{"ID":28226,"Name":"[B]_[013] Dejv.oldplyr","Points":10636,"X":428,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189848Z"},{"ID":28227,"Name":"C005","Points":10160,"X":361,"Y":588,"Continent":"K53","Bonus":9,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189848Z"},{"ID":28228,"Name":"005 fristajloo","Points":10019,"X":595,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189849Z"},{"ID":28229,"Name":"A026 Gradac","Points":10160,"X":660,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189849Z"},{"ID":28230,"Name":"0026","Points":9813,"X":413,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18985Z"},{"ID":28231,"Name":".achim.","Points":10311,"X":532,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18985Z"},{"ID":28232,"Name":"Architekci PlacĂłw Boju","Points":7700,"X":339,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189851Z"},{"ID":28233,"Name":"% 2 % spocone dziadki","Points":10426,"X":582,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189851Z"},{"ID":28234,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":397,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189852Z"},{"ID":28235,"Name":"Jehu_Kingdom_14","Points":7368,"X":650,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189852Z"},{"ID":28236,"Name":"005","Points":1629,"X":546,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":849087786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189853Z"},{"ID":28237,"Name":".achim.","Points":8636,"X":526,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189853Z"},{"ID":28238,"Name":"WesoƂych ƚwiąt","Points":7147,"X":597,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189854Z"},{"ID":28239,"Name":"North Barba 050","Points":9278,"X":426,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189854Z"},{"ID":28240,"Name":"Szlachcic/Taran","Points":10237,"X":625,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189855Z"},{"ID":28241,"Name":"0171","Points":10019,"X":546,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189855Z"},{"ID":28242,"Name":"|023| Rodos","Points":9976,"X":498,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189856Z"},{"ID":28243,"Name":"Krosno 7","Points":2964,"X":535,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189857Z"},{"ID":28245,"Name":"Wioska barbarzyƄska C","Points":2819,"X":365,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189857Z"},{"ID":28246,"Name":"Wioska Foxter","Points":9347,"X":473,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189858Z"},{"ID":28247,"Name":"Wioska Bochun10","Points":10311,"X":334,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189858Z"},{"ID":28248,"Name":"-0004-","Points":9761,"X":540,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189859Z"},{"ID":28249,"Name":"48k$ Grvvyq","Points":9760,"X":652,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189859Z"},{"ID":28250,"Name":"028.","Points":9835,"X":404,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18986Z"},{"ID":28251,"Name":"WesoƂych ƚwiąt","Points":8089,"X":589,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18986Z"},{"ID":28252,"Name":"012","Points":9226,"X":435,"Y":652,"Continent":"K64","Bonus":4,"PlayerID":699246032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189861Z"},{"ID":28253,"Name":"Sexxy","Points":10019,"X":614,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189861Z"},{"ID":28254,"Name":"*131*","Points":10211,"X":354,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189862Z"},{"ID":28255,"Name":"kto ananasowy pod wodą ma dom","Points":9571,"X":664,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189862Z"},{"ID":28256,"Name":"#0101 barbarzyƄska","Points":9551,"X":478,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189863Z"},{"ID":28257,"Name":"=033= Wioska barbarzyƄska","Points":8043,"X":655,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189863Z"},{"ID":28258,"Name":"Wioska Bochun10","Points":3928,"X":334,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189864Z"},{"ID":28259,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":462,"Y":663,"Continent":"K64","Bonus":1,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189864Z"},{"ID":28260,"Name":"030 serniczek z budyniem","Points":9735,"X":510,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189865Z"},{"ID":28261,"Name":"Częstochowa","Points":8488,"X":669,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189866Z"},{"ID":28262,"Name":"Wioska barbarzyƄska","Points":4263,"X":441,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189866Z"},{"ID":28263,"Name":"0511","Points":10083,"X":536,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189867Z"},{"ID":28264,"Name":"Chekku - meito","Points":9976,"X":336,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189867Z"},{"ID":28265,"Name":"CRESOVIA","Points":9086,"X":336,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189868Z"},{"ID":28266,"Name":"cc Bimbrownia","Points":8982,"X":397,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189868Z"},{"ID":28268,"Name":"*Nokturn","Points":9761,"X":577,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189869Z"},{"ID":28269,"Name":"Izbica Kujawska-morra12311","Points":10654,"X":650,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189869Z"},{"ID":28270,"Name":"081","Points":9835,"X":659,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18987Z"},{"ID":28271,"Name":"*157*","Points":7657,"X":357,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.18987Z"},{"ID":28273,"Name":"OrzeƂ WylądowaƂ","Points":9483,"X":463,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189871Z"},{"ID":28274,"Name":"Wioska barbarzyƄska","Points":9051,"X":445,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189871Z"},{"ID":28275,"Name":"066...barbarka","Points":10229,"X":441,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189872Z"},{"ID":28276,"Name":"005","Points":8872,"X":596,"Y":636,"Continent":"K65","Bonus":3,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189872Z"},{"ID":28277,"Name":"O03 Isengard","Points":10436,"X":661,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189873Z"},{"ID":28278,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":570,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189873Z"},{"ID":28279,"Name":"A READY","Points":10019,"X":595,"Y":399,"Continent":"K35","Bonus":0,"PlayerID":1553947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189874Z"},{"ID":28280,"Name":"*012 Nemeczek*","Points":8806,"X":361,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189874Z"},{"ID":28281,"Name":"PiekƂo to inni","Points":10019,"X":579,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189875Z"},{"ID":28282,"Name":"Jestem Poza Kontrolą","Points":9880,"X":348,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189876Z"},{"ID":28283,"Name":"Bagdad","Points":10278,"X":497,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.189876Z"},{"ID":28284,"Name":"Wioska barbarzyƄska","Points":7836,"X":384,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222912Z"},{"ID":28285,"Name":"042","Points":9744,"X":653,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222914Z"},{"ID":28286,"Name":"Ave Why!","Points":10863,"X":475,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222916Z"},{"ID":28287,"Name":"031 serniczek z owocami","Points":9729,"X":507,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222917Z"},{"ID":28288,"Name":"Denger 17","Points":9651,"X":364,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222919Z"},{"ID":28289,"Name":"I002 uuuu","Points":10387,"X":663,"Y":457,"Continent":"K46","Bonus":9,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22292Z"},{"ID":28290,"Name":"Ć»UBRAWKA 022 wioska 123","Points":10052,"X":595,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222921Z"},{"ID":28292,"Name":"Wioska barbarzyƄska","Points":10229,"X":551,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222922Z"},{"ID":28293,"Name":"001 serniczek","Points":10160,"X":501,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222933Z"},{"ID":28294,"Name":"Chekku - meito","Points":9976,"X":334,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222934Z"},{"ID":28296,"Name":"OrzeƂ WylądowaƂ","Points":6815,"X":452,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222936Z"},{"ID":28297,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9811,"X":523,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222937Z"},{"ID":28298,"Name":"Chamachata","Points":4562,"X":378,"Y":390,"Continent":"K33","Bonus":5,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222938Z"},{"ID":28299,"Name":"PaƄstfa PuƂnocy","Points":10444,"X":581,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222939Z"},{"ID":28300,"Name":"Ć»UBR .::.B.E.T.O.N /1","Points":10140,"X":621,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222941Z"},{"ID":28301,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":342,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222944Z"},{"ID":28302,"Name":"005","Points":10237,"X":477,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222946Z"},{"ID":28303,"Name":"047","Points":10143,"X":664,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222947Z"},{"ID":28304,"Name":"K34 - [123] Before Land","Points":9924,"X":444,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222948Z"},{"ID":28305,"Name":"Myk i do kieszonki","Points":4283,"X":357,"Y":579,"Continent":"K53","Bonus":4,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22295Z"},{"ID":28306,"Name":"No. 7","Points":9182,"X":481,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222951Z"},{"ID":28307,"Name":"Lord Lord Franek .#071","Points":9965,"X":526,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222952Z"},{"ID":28308,"Name":"Szulernia","Points":9981,"X":417,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222953Z"},{"ID":28309,"Name":"048","Points":8034,"X":649,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222957Z"},{"ID":28310,"Name":"OrzeƂ WylądowaƂ","Points":5375,"X":450,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222958Z"},{"ID":28311,"Name":"DW4","Points":10311,"X":341,"Y":448,"Continent":"K43","Bonus":8,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222959Z"},{"ID":28312,"Name":"Wioska Kaffik III","Points":8060,"X":642,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":6136757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222961Z"},{"ID":28313,"Name":"Modesto, Kalifornia","Points":10122,"X":603,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222962Z"},{"ID":28314,"Name":"O11 Logrono","Points":9989,"X":660,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222963Z"},{"ID":28315,"Name":"Wioska barbarzyƄska","Points":8708,"X":664,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222965Z"},{"ID":28316,"Name":"Ć»UBRAWKA 016","Points":9845,"X":604,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222966Z"},{"ID":28317,"Name":"Wioska barbarzyƄska","Points":9370,"X":554,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222969Z"},{"ID":28318,"Name":"020 - Mroczna Osada","Points":10830,"X":636,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22297Z"},{"ID":28319,"Name":"Myk i do kieszonki","Points":9050,"X":349,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222972Z"},{"ID":28320,"Name":"A20","Points":11078,"X":474,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222973Z"},{"ID":28321,"Name":"0081","Points":8549,"X":628,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222974Z"},{"ID":28323,"Name":"Xray","Points":8745,"X":671,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222976Z"},{"ID":28324,"Name":"0172","Points":10083,"X":545,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222977Z"},{"ID":28325,"Name":"Faring","Points":4073,"X":347,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22298Z"},{"ID":28326,"Name":"Nordson","Points":6636,"X":352,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222981Z"},{"ID":28327,"Name":"ADEN","Points":10311,"X":571,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222982Z"},{"ID":28328,"Name":"Szulernia","Points":2547,"X":392,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222984Z"},{"ID":28329,"Name":"1.08","Points":4284,"X":339,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222985Z"},{"ID":28330,"Name":"055 Shinsoo","Points":6948,"X":627,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222986Z"},{"ID":28331,"Name":"Myk i do kieszonki","Points":9799,"X":358,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222987Z"},{"ID":28332,"Name":"Wioska VEGE 2","Points":6033,"X":657,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":87575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222988Z"},{"ID":28333,"Name":"B.057","Points":10000,"X":667,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222992Z"},{"ID":28334,"Name":"Jestem Przestępcą","Points":10141,"X":663,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222993Z"},{"ID":28335,"Name":"Denger 10","Points":10386,"X":360,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222994Z"},{"ID":28337,"Name":"B 048","Points":9281,"X":662,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222995Z"},{"ID":28338,"Name":"cc Cedron","Points":10152,"X":391,"Y":373,"Continent":"K33","Bonus":1,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222996Z"},{"ID":28339,"Name":"Wioska Bochun10","Points":5334,"X":335,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222998Z"},{"ID":28340,"Name":"030.","Points":9835,"X":401,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.222999Z"},{"ID":28342,"Name":"nowa parcela","Points":10362,"X":580,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223002Z"},{"ID":28343,"Name":"008","Points":10273,"X":595,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223003Z"},{"ID":28345,"Name":"Ć»UBRAWKA 005 kuba","Points":10037,"X":600,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223004Z"},{"ID":28346,"Name":"Lord Lord Franek .#072","Points":9976,"X":532,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223006Z"},{"ID":28347,"Name":"Wioska Bochun10","Points":6290,"X":332,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223007Z"},{"ID":28348,"Name":"Klaudek5","Points":3599,"X":591,"Y":365,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223008Z"},{"ID":28349,"Name":"#0080 barbarzyƄska","Points":8307,"X":474,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22301Z"},{"ID":28350,"Name":"TORPEDA","Points":9212,"X":331,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223011Z"},{"ID":28351,"Name":"37k$ Grvvyq","Points":9980,"X":649,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223014Z"},{"ID":28352,"Name":"M181_035","Points":9551,"X":348,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223015Z"},{"ID":28354,"Name":"031.","Points":9835,"X":403,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223016Z"},{"ID":28355,"Name":"021","Points":10495,"X":625,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223018Z"},{"ID":28356,"Name":"049","Points":6706,"X":649,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223019Z"},{"ID":28357,"Name":"002.","Points":10019,"X":609,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22302Z"},{"ID":28358,"Name":"=044= Osada koczownikĂłw","Points":10580,"X":656,"Y":549,"Continent":"K56","Bonus":9,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223021Z"},{"ID":28359,"Name":"001 Arcadia Bay","Points":10160,"X":468,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223024Z"},{"ID":28360,"Name":"B 024","Points":9580,"X":661,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223026Z"},{"ID":28361,"Name":"049KZ","Points":5720,"X":487,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223027Z"},{"ID":28362,"Name":"aaaaaaaaa","Points":10559,"X":435,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223028Z"},{"ID":28363,"Name":"WesoƂych ƚwiąt","Points":8615,"X":586,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223029Z"},{"ID":28364,"Name":"055.","Points":9835,"X":389,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22303Z"},{"ID":28365,"Name":"Szlachcic/Taran","Points":10104,"X":627,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223032Z"},{"ID":28366,"Name":"Wioska barbarzyƄska","Points":5228,"X":594,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223033Z"},{"ID":28367,"Name":"$3.000 Grvvyq","Points":10495,"X":644,"Y":574,"Continent":"K56","Bonus":8,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223036Z"},{"ID":28368,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":392,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223037Z"},{"ID":28369,"Name":"|004| Retimno","Points":10063,"X":496,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223039Z"},{"ID":28370,"Name":"PiekƂo to inni","Points":9635,"X":586,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22304Z"},{"ID":28371,"Name":"=054= Wioska barbarzyƄska","Points":10580,"X":644,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223042Z"},{"ID":28372,"Name":"-09-","Points":5542,"X":333,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223043Z"},{"ID":28373,"Name":"SPOCENI KUZYNI","Points":2083,"X":420,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223044Z"},{"ID":28374,"Name":"001 nazwa","Points":10252,"X":362,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223047Z"},{"ID":28375,"Name":"Wioska barbarzyƄska","Points":7205,"X":397,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223049Z"},{"ID":28377,"Name":"I010 Stado PingwinĂłw","Points":10144,"X":661,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22305Z"},{"ID":28379,"Name":"Ć»UBRAWKA 018","Points":4877,"X":609,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223051Z"},{"ID":28380,"Name":"Jednak wolę gofry","Points":9584,"X":428,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223052Z"},{"ID":28381,"Name":"MojeDnoToWaszSzczyt","Points":9976,"X":567,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223053Z"},{"ID":28382,"Name":"Jehu_Kingdom_40","Points":7456,"X":649,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223055Z"},{"ID":28383,"Name":"Kentin ufam Tobie","Points":10000,"X":357,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223056Z"},{"ID":28384,"Name":"P014 Balacha","Points":9741,"X":667,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223059Z"},{"ID":28385,"Name":"Didus P","Points":10160,"X":655,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22306Z"},{"ID":28387,"Name":"Gattacka","Points":9408,"X":614,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223061Z"},{"ID":28388,"Name":"Moria","Points":6055,"X":372,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223063Z"},{"ID":28389,"Name":".2.","Points":10485,"X":600,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223064Z"},{"ID":28390,"Name":"Dzikie wsparcie","Points":9809,"X":469,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223065Z"},{"ID":28391,"Name":"Ć»UBRAWKA 010","Points":9941,"X":601,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223066Z"},{"ID":28393,"Name":"114...centr","Points":6700,"X":451,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223069Z"},{"ID":28394,"Name":"060. ALFI","Points":864,"X":464,"Y":562,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223071Z"},{"ID":28395,"Name":"Taka001","Points":9594,"X":479,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223072Z"},{"ID":28396,"Name":"17. Ɓysy ekipa","Points":9747,"X":636,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223073Z"},{"ID":28397,"Name":"nowa parcelaa","Points":10426,"X":582,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223075Z"},{"ID":28399,"Name":"WesoƂych ƚwiąt","Points":9902,"X":588,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223076Z"},{"ID":28400,"Name":"Ć»UBRAWKA 006 Kantero","Points":10203,"X":602,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223077Z"},{"ID":28401,"Name":"Wioska barbarzyƄska","Points":9902,"X":556,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223078Z"},{"ID":28402,"Name":".achim.","Points":10311,"X":525,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223081Z"},{"ID":28403,"Name":"Wioska barbarzyƄska 032","Points":6590,"X":490,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223083Z"},{"ID":28404,"Name":"044.","Points":9835,"X":389,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223084Z"},{"ID":28405,"Name":"14. Palce w Natalce","Points":9750,"X":637,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223085Z"},{"ID":28407,"Name":"DzieƄ sądu nadszedƂ","Points":10059,"X":511,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223086Z"},{"ID":28408,"Name":"Jednak wolę gofry","Points":8093,"X":424,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223088Z"},{"ID":28409,"Name":"Wioska Bochun10","Points":10311,"X":336,"Y":482,"Continent":"K43","Bonus":6,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223089Z"},{"ID":28410,"Name":"Wioska Bochun10","Points":10336,"X":336,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223092Z"},{"ID":28411,"Name":"BACÓWKA |045|","Points":7313,"X":631,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223093Z"},{"ID":28412,"Name":"016","Points":8042,"X":427,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223095Z"},{"ID":28413,"Name":"Wioska Bochun10","Points":10311,"X":338,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223096Z"},{"ID":28414,"Name":"jedziemy dalej","Points":2676,"X":347,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":849098784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223098Z"},{"ID":28415,"Name":"Szulernia","Points":9981,"X":408,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223099Z"},{"ID":28417,"Name":"Wioska b21","Points":8263,"X":495,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223105Z"},{"ID":28418,"Name":"133...centr barb","Points":8300,"X":449,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223106Z"},{"ID":28419,"Name":"Szulernia","Points":10010,"X":410,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223109Z"},{"ID":28421,"Name":"SPOCENI KUZYNI","Points":2722,"X":417,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22311Z"},{"ID":28422,"Name":"JEDNORĘKI BANDYTA","Points":10160,"X":411,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223112Z"},{"ID":28423,"Name":"#0088 barbarzyƄska","Points":9542,"X":477,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223113Z"},{"ID":28424,"Name":"*141*","Points":10130,"X":358,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223114Z"},{"ID":28426,"Name":"[B]_[012] Dejv.oldplyr","Points":10495,"X":425,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223116Z"},{"ID":28427,"Name":"021","Points":10019,"X":457,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223117Z"},{"ID":28428,"Name":"DMN 003","Points":5316,"X":650,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":698998882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223123Z"},{"ID":28429,"Name":"[B][04] Bottom Lounge","Points":9973,"X":433,"Y":344,"Continent":"K34","Bonus":7,"PlayerID":699380621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223124Z"},{"ID":28430,"Name":"Wioska Kora","Points":10476,"X":395,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223125Z"},{"ID":28432,"Name":"|C18| Naleƛniki z ramen","Points":10160,"X":450,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223127Z"},{"ID":28434,"Name":"Szlachcic/Taran","Points":10237,"X":612,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223128Z"},{"ID":28435,"Name":"008","Points":10247,"X":482,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223129Z"},{"ID":28436,"Name":"58k$ Grvvyq","Points":7442,"X":646,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223131Z"},{"ID":28438,"Name":"010 VW Wioska barbarzyƄska","Points":6440,"X":363,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223132Z"},{"ID":28439,"Name":".///...//././././././././","Points":8971,"X":381,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223137Z"},{"ID":28440,"Name":"0512","Points":9827,"X":520,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223139Z"},{"ID":28441,"Name":"0017","Points":9946,"X":415,"Y":356,"Continent":"K34","Bonus":1,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22314Z"},{"ID":28442,"Name":"Ow Konfederacja +","Points":10079,"X":595,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223141Z"},{"ID":28443,"Name":"Wioska barbarzyƄska","Points":2818,"X":345,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223142Z"},{"ID":28445,"Name":"PiekƂo to inni","Points":10160,"X":577,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223144Z"},{"ID":28446,"Name":"018","Points":7627,"X":597,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223145Z"},{"ID":28447,"Name":"Jaaa","Points":10618,"X":664,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223148Z"},{"ID":28448,"Name":"Szulernia","Points":9981,"X":408,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223149Z"},{"ID":28449,"Name":"Bagdad","Points":10068,"X":496,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223274Z"},{"ID":28450,"Name":"Darmowe przeprowadzki","Points":11065,"X":474,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223281Z"},{"ID":28451,"Name":"001.Phantom Menace","Points":8876,"X":361,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223282Z"},{"ID":28453,"Name":"043.","Points":9835,"X":388,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223284Z"},{"ID":28454,"Name":"Pobozowisko","Points":10971,"X":380,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223285Z"},{"ID":28455,"Name":"034 plemienny serniczek","Points":10664,"X":517,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223286Z"},{"ID":28456,"Name":"cc Zarabie","Points":10052,"X":394,"Y":372,"Continent":"K33","Bonus":3,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223288Z"},{"ID":28457,"Name":"009.Wioska jedyny1taki","Points":9824,"X":333,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223289Z"},{"ID":28458,"Name":"158...wSCHODDD","Points":8565,"X":493,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223298Z"},{"ID":28459,"Name":"Lord Lord Franek .#006","Points":10178,"X":525,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2233Z"},{"ID":28460,"Name":"Zamek Drakenhof","Points":10311,"X":428,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223302Z"},{"ID":28461,"Name":"PiekƂo to inni","Points":10160,"X":583,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223303Z"},{"ID":28462,"Name":"WesoƂych ƚwiąt","Points":5505,"X":590,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223307Z"},{"ID":28463,"Name":"MELISKA","Points":8756,"X":340,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223309Z"},{"ID":28465,"Name":"J001.","Points":10361,"X":364,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22331Z"},{"ID":28466,"Name":"Ob Konfederacja","Points":6484,"X":437,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223314Z"},{"ID":28467,"Name":"1v9 machine","Points":10040,"X":387,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223316Z"},{"ID":28468,"Name":"B.058","Points":7830,"X":668,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223317Z"},{"ID":28469,"Name":"0513","Points":9289,"X":530,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223319Z"},{"ID":28471,"Name":"Wioska barbarzyƄska","Points":7888,"X":400,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223323Z"},{"ID":28472,"Name":"0567","Points":9745,"X":564,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223324Z"},{"ID":28473,"Name":"Jehu_Kingdom_41","Points":7489,"X":647,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223326Z"},{"ID":28474,"Name":"Wioska barbarzyƄska","Points":450,"X":596,"Y":630,"Continent":"K65","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223327Z"},{"ID":28475,"Name":"Taran","Points":10728,"X":665,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223331Z"},{"ID":28477,"Name":"074","Points":10226,"X":630,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223333Z"},{"ID":28478,"Name":"001) DzierĆŒoniĂłw","Points":9291,"X":544,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":849097103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223337Z"},{"ID":28479,"Name":"Pobozowisko","Points":10951,"X":381,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223338Z"},{"ID":28480,"Name":"062 | PALESTINA","Points":2804,"X":648,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22334Z"},{"ID":28481,"Name":"deff 100 %","Points":9353,"X":350,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223341Z"},{"ID":28482,"Name":"Lord Lord Franek .#121","Points":7746,"X":527,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223343Z"},{"ID":28483,"Name":"B 025","Points":9460,"X":661,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223344Z"},{"ID":28485,"Name":"Myk i do kieszonki","Points":9799,"X":359,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223348Z"},{"ID":28486,"Name":"Taka007","Points":9594,"X":477,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22335Z"},{"ID":28487,"Name":"Denger 11","Points":9648,"X":360,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223354Z"},{"ID":28488,"Name":"Abdoulxx","Points":11321,"X":474,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223355Z"},{"ID":28489,"Name":"Jaaa","Points":9214,"X":665,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223357Z"},{"ID":28491,"Name":"028","Points":10365,"X":627,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223358Z"},{"ID":28492,"Name":"0010","Points":10322,"X":621,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22336Z"},{"ID":28493,"Name":"020.","Points":9835,"X":402,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223363Z"},{"ID":28494,"Name":"A-039","Points":10795,"X":403,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223365Z"},{"ID":28495,"Name":"Lord Lord Franek .#162","Points":9960,"X":508,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22337Z"},{"ID":28496,"Name":"O18 Temuco","Points":10001,"X":663,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223372Z"},{"ID":28498,"Name":"PiekƂo to inni","Points":10160,"X":562,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223373Z"},{"ID":28499,"Name":"Nowy ƛwiat A","Points":5325,"X":345,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223375Z"},{"ID":28500,"Name":"I004","Points":10140,"X":663,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223376Z"},{"ID":28501,"Name":"sony911","Points":9949,"X":584,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223378Z"},{"ID":28502,"Name":"Monetkownia","Points":10237,"X":620,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223384Z"},{"ID":28503,"Name":"46k$ Grvvyq","Points":9430,"X":650,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223385Z"},{"ID":28504,"Name":"Nowy ƛwiat A","Points":5094,"X":340,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223386Z"},{"ID":28507,"Name":"O21 Valdivia","Points":10373,"X":664,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223388Z"},{"ID":28508,"Name":"Wioska barbarzyƄska","Points":8198,"X":492,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223389Z"},{"ID":28510,"Name":"Darma dla zawodnika","Points":10047,"X":517,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223391Z"},{"ID":28511,"Name":"009 Cidaris","Points":10104,"X":469,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223392Z"},{"ID":28512,"Name":"--one eye jack","Points":9495,"X":622,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223398Z"},{"ID":28513,"Name":"*268*","Points":2172,"X":353,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2234Z"},{"ID":28514,"Name":"Dajanka 19","Points":1279,"X":343,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223401Z"},{"ID":28515,"Name":"078","Points":9767,"X":654,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223403Z"},{"ID":28516,"Name":"0256","Points":10160,"X":561,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223404Z"},{"ID":28517,"Name":"2.04","Points":3648,"X":343,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223406Z"},{"ID":28518,"Name":"SPOCENI KUZYNI","Points":4915,"X":416,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223408Z"},{"ID":28519,"Name":"004","Points":6039,"X":550,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849087786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22341Z"},{"ID":28520,"Name":"*002","Points":8862,"X":596,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223416Z"},{"ID":28521,"Name":"Pobozowisko","Points":7956,"X":380,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223417Z"},{"ID":28522,"Name":"I070","Points":9971,"X":662,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223419Z"},{"ID":28523,"Name":"drewutnia","Points":9408,"X":385,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22342Z"},{"ID":28524,"Name":"046","Points":4821,"X":662,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223422Z"},{"ID":28526,"Name":"180","Points":10311,"X":579,"Y":421,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223423Z"},{"ID":28527,"Name":"M181_036","Points":9535,"X":347,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223425Z"},{"ID":28528,"Name":"0514","Points":10019,"X":537,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223431Z"},{"ID":28529,"Name":"026","Points":9851,"X":628,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223432Z"},{"ID":28530,"Name":"0541","Points":5670,"X":563,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223434Z"},{"ID":28531,"Name":"057","Points":6386,"X":667,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223435Z"},{"ID":28532,"Name":"#0075 barbarzyƄska","Points":8307,"X":473,"Y":336,"Continent":"K34","Bonus":6,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223437Z"},{"ID":28533,"Name":"Lord Lord Franek .#163","Points":9976,"X":499,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223438Z"},{"ID":28534,"Name":"#0179 MiBM","Points":7184,"X":490,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22344Z"},{"ID":28535,"Name":"Wioska 10","Points":3657,"X":378,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223441Z"},{"ID":28536,"Name":",,,","Points":2137,"X":348,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":849098784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223448Z"},{"ID":28537,"Name":"M181_003","Points":9912,"X":345,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223449Z"},{"ID":28538,"Name":"039 Boru1996 #3","Points":9808,"X":386,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223451Z"},{"ID":28539,"Name":"Myk i do kieszonki","Points":8321,"X":350,"Y":576,"Continent":"K53","Bonus":7,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223452Z"},{"ID":28540,"Name":"0088","Points":8911,"X":612,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223454Z"},{"ID":28541,"Name":"046","Points":9867,"X":658,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223455Z"},{"ID":28542,"Name":"A018 goƛć fabianello","Points":10301,"X":660,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223457Z"},{"ID":28543,"Name":"I028 3 W Nocy","Points":10108,"X":659,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22346Z"},{"ID":28545,"Name":"A34","Points":9835,"X":472,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223465Z"},{"ID":28546,"Name":"North Barba 024","Points":10087,"X":426,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223466Z"},{"ID":28548,"Name":".:004:.","Points":12154,"X":374,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223468Z"},{"ID":28549,"Name":"KUZYN","Points":7993,"X":416,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223469Z"},{"ID":28550,"Name":"018.Barbara2","Points":3641,"X":334,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22347Z"},{"ID":28551,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223472Z"},{"ID":28552,"Name":"*138*","Points":10104,"X":357,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223474Z"},{"ID":28553,"Name":".:027:. ƁOBUZIK","Points":8971,"X":553,"Y":370,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223478Z"},{"ID":28554,"Name":"119 Wioska barbarzyƄska","Points":10001,"X":555,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223479Z"},{"ID":28555,"Name":"024... FELEK_PóƂnoc","Points":10495,"X":461,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223481Z"},{"ID":28556,"Name":"=055= Wioska barbarzyƄska","Points":8561,"X":645,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223483Z"},{"ID":28557,"Name":"zzzRezygnacja 02","Points":10131,"X":630,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223484Z"},{"ID":28558,"Name":"0234","Points":10083,"X":535,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223486Z"},{"ID":28559,"Name":"Wioska TakaTo","Points":9783,"X":476,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223487Z"},{"ID":28560,"Name":"046","Points":9171,"X":668,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223493Z"},{"ID":28561,"Name":"Kiedyƛ Wielki Wojownik","Points":9312,"X":394,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223495Z"},{"ID":28562,"Name":"Khorinis","Points":9887,"X":343,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223497Z"},{"ID":28563,"Name":"Valhalla 4.","Points":9774,"X":371,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223498Z"},{"ID":28565,"Name":"0568","Points":9797,"X":568,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2235Z"},{"ID":28566,"Name":"Pustostan","Points":6601,"X":635,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223501Z"},{"ID":28567,"Name":"Psycha Siada","Points":8260,"X":457,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223502Z"},{"ID":28568,"Name":"sony911","Points":9995,"X":583,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223503Z"},{"ID":28569,"Name":"Bagdad","Points":10068,"X":499,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223509Z"},{"ID":28570,"Name":"PiekƂo to inni","Points":10160,"X":562,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223511Z"},{"ID":28571,"Name":"K34 - [137] Before Land","Points":10259,"X":441,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223512Z"},{"ID":28572,"Name":"43. KaruTown","Points":9365,"X":641,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223513Z"},{"ID":28573,"Name":"A09","Points":10019,"X":469,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223515Z"},{"ID":28574,"Name":"010.","Points":10495,"X":485,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223516Z"},{"ID":28577,"Name":"B 026","Points":10114,"X":659,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223518Z"},{"ID":28578,"Name":"0016","Points":10162,"X":414,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223526Z"},{"ID":28579,"Name":"#0100 barbarzyƄska","Points":9725,"X":463,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223528Z"},{"ID":28580,"Name":"|008| Elunda !!!!!!!!!!!!!!!!","Points":9782,"X":490,"Y":668,"Continent":"K64","Bonus":9,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22353Z"},{"ID":28581,"Name":"004 Cintra","Points":9997,"X":471,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223531Z"},{"ID":28583,"Name":"031 MONETKI","Points":9311,"X":665,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223532Z"},{"ID":28584,"Name":"DW6","Points":10311,"X":346,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223533Z"},{"ID":28585,"Name":"Chekku - meito","Points":9976,"X":334,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223535Z"},{"ID":28587,"Name":"Wioska barbarzyƄska","Points":4565,"X":428,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223536Z"},{"ID":28588,"Name":"Nowy ƛwiat A","Points":6353,"X":341,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22354Z"},{"ID":28589,"Name":"Klaudek23","Points":4100,"X":595,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223541Z"},{"ID":28590,"Name":"Ręcznik do zmiany","Points":10019,"X":361,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223542Z"},{"ID":28591,"Name":"Wioska barbarzyƄska","Points":9357,"X":665,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223556Z"},{"ID":28592,"Name":"Szlachcic/Taran","Points":10237,"X":627,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22356Z"},{"ID":28593,"Name":"Stanowisko lepienia pierogĂłw","Points":7144,"X":427,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223562Z"},{"ID":28594,"Name":"Popas12","Points":9191,"X":406,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223563Z"},{"ID":28595,"Name":"[B]_[017] Dejv.oldplyr","Points":10495,"X":430,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223567Z"},{"ID":28597,"Name":"WesoƂych ƚwiąt","Points":3023,"X":590,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223568Z"},{"ID":28598,"Name":"054","Points":10311,"X":661,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223569Z"},{"ID":28599,"Name":"*Nantek","Points":9761,"X":572,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223571Z"},{"ID":28600,"Name":"A30","Points":3398,"X":478,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223572Z"},{"ID":28601,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":399,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223576Z"},{"ID":28602,"Name":"kon trojanski","Points":9744,"X":561,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223577Z"},{"ID":28603,"Name":"J008.","Points":10160,"X":367,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223579Z"},{"ID":28604,"Name":"0022","Points":10005,"X":417,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223583Z"},{"ID":28605,"Name":"1.10","Points":4603,"X":340,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223584Z"},{"ID":28606,"Name":"Wioska Krnik","Points":5557,"X":604,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":101074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223586Z"},{"ID":28607,"Name":"Architekci PlacĂłw Boju","Points":8800,"X":336,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223587Z"},{"ID":28608,"Name":"Monetkownia","Points":10237,"X":618,"Y":616,"Continent":"K66","Bonus":5,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223589Z"},{"ID":28609,"Name":"027...JEDZIEMY","Points":10479,"X":452,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223593Z"},{"ID":28610,"Name":"22k$ Grvvyq","Points":10495,"X":651,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223594Z"},{"ID":28611,"Name":"Wioska barbarzyƄska","Points":10237,"X":557,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223598Z"},{"ID":28612,"Name":"=020= Wioska barbarzyƄska","Points":10580,"X":646,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223599Z"},{"ID":28613,"Name":"*Nadeptane zębem czasu...","Points":9761,"X":579,"Y":645,"Continent":"K65","Bonus":8,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223601Z"},{"ID":28614,"Name":"Valhalla 6.","Points":8189,"X":369,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223602Z"},{"ID":28615,"Name":"103","Points":10019,"X":654,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223603Z"},{"ID":28616,"Name":"Dajanka 36","Points":729,"X":355,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223608Z"},{"ID":28617,"Name":"001 Ruda.","Points":10019,"X":593,"Y":565,"Continent":"K55","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223609Z"},{"ID":28618,"Name":"033.","Points":9530,"X":407,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22361Z"},{"ID":28619,"Name":"_3_","Points":2723,"X":495,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":9113064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223614Z"},{"ID":28620,"Name":"07tonieostatnieslowo","Points":7506,"X":605,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223615Z"},{"ID":28621,"Name":"I012","Points":10144,"X":664,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223617Z"},{"ID":28623,"Name":"C01","Points":3570,"X":439,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223618Z"},{"ID":28624,"Name":"WesoƂych ƚwiąt","Points":8711,"X":585,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22362Z"},{"ID":28626,"Name":"WesoƂych ƚwiąt","Points":9924,"X":580,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223624Z"},{"ID":28627,"Name":"Lord Lord Franek .#073","Points":10144,"X":537,"Y":336,"Continent":"K35","Bonus":5,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223626Z"},{"ID":28628,"Name":"$1.000 Wioska Groovyq","Points":10495,"X":650,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22363Z"},{"ID":28629,"Name":"Wioska barbarzyƄska","Points":10728,"X":665,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223632Z"},{"ID":28630,"Name":"Guardian Star","Points":11348,"X":427,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223634Z"},{"ID":28631,"Name":"075","Points":9198,"X":629,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223635Z"},{"ID":28632,"Name":"026.","Points":10611,"X":630,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22364Z"},{"ID":28633,"Name":"Veni vidi kici kici","Points":5829,"X":340,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223642Z"},{"ID":28634,"Name":"045","Points":10160,"X":663,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223644Z"},{"ID":28635,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":520,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223646Z"},{"ID":28637,"Name":"#108#","Points":9761,"X":639,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223648Z"},{"ID":28639,"Name":"Ave Why!","Points":3478,"X":492,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223649Z"},{"ID":28640,"Name":"0021","Points":9979,"X":413,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223651Z"},{"ID":28641,"Name":"055KZ","Points":4593,"X":489,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223652Z"},{"ID":28642,"Name":"012","Points":4614,"X":367,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223653Z"},{"ID":28643,"Name":"Wioska KKK","Points":10203,"X":371,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223654Z"},{"ID":28644,"Name":"Wioska Bochun10","Points":10311,"X":337,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223655Z"},{"ID":28646,"Name":"075","Points":6651,"X":660,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223659Z"},{"ID":28647,"Name":"KUZYNEIRO","Points":8577,"X":407,"Y":641,"Continent":"K64","Bonus":9,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22366Z"},{"ID":28648,"Name":"MojeSzczytToTwĂłjDno","Points":10146,"X":509,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223661Z"},{"ID":28649,"Name":"0540","Points":6110,"X":564,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223662Z"},{"ID":28650,"Name":"013","Points":8137,"X":483,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223663Z"},{"ID":28651,"Name":"1.09","Points":7762,"X":340,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223664Z"},{"ID":28652,"Name":"Taran","Points":10728,"X":667,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223664Z"},{"ID":28653,"Name":"Dąbrowa 0017","Points":7033,"X":359,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223668Z"},{"ID":28654,"Name":"Lululu955","Points":4637,"X":374,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223668Z"},{"ID":28655,"Name":"001 Eldorado","Points":10037,"X":379,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223669Z"},{"ID":28656,"Name":"035 Rivia","Points":9835,"X":469,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22367Z"},{"ID":28657,"Name":"Wioska Bochun10","Points":10452,"X":334,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223671Z"},{"ID":28658,"Name":"A16","Points":10134,"X":455,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223672Z"},{"ID":28659,"Name":".///...//././././././././","Points":9791,"X":384,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223673Z"},{"ID":28660,"Name":"Malbork","Points":5354,"X":539,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223674Z"},{"ID":28661,"Name":"Szulernia","Points":9981,"X":408,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223677Z"},{"ID":28662,"Name":"B 004","Points":9809,"X":665,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223678Z"},{"ID":28663,"Name":"Wioska barbarzyƄska","Points":9598,"X":349,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22368Z"},{"ID":28665,"Name":"Wioska Bochun10","Points":7899,"X":335,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223681Z"},{"ID":28666,"Name":"Yellow","Points":9835,"X":489,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223681Z"},{"ID":28667,"Name":"0264","Points":10147,"X":548,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223682Z"},{"ID":28668,"Name":"Lord Lord Franek .#074","Points":9965,"X":521,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223683Z"},{"ID":28669,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":342,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223685Z"},{"ID":28670,"Name":"Wioska barbarzyƄska D","Points":2885,"X":364,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223686Z"},{"ID":28671,"Name":"deff 100 %","Points":8637,"X":348,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223687Z"},{"ID":28672,"Name":"KAMIOKA","Points":4899,"X":349,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":7318949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223688Z"},{"ID":28673,"Name":"Grand Hill","Points":5527,"X":649,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223689Z"},{"ID":28674,"Name":"Wioska yen3","Points":3897,"X":456,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":950985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22369Z"},{"ID":28675,"Name":"O10 Goiania","Points":10848,"X":666,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223691Z"},{"ID":28676,"Name":"ADEN","Points":10052,"X":573,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223691Z"},{"ID":28677,"Name":"Psycha Siada","Points":10093,"X":457,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223694Z"},{"ID":28678,"Name":"017 najlepszy serniczek","Points":11130,"X":507,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223695Z"},{"ID":28679,"Name":"Myk i do kieszonki","Points":9756,"X":358,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223696Z"},{"ID":28680,"Name":"005 Czerwona Twierdza","Points":7130,"X":332,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223696Z"},{"ID":28681,"Name":"13k$ Grvvyq","Points":10495,"X":657,"Y":565,"Continent":"K56","Bonus":6,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223698Z"},{"ID":28682,"Name":"Architekci PlacĂłw Boju","Points":8445,"X":341,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223699Z"},{"ID":28683,"Name":"108...centr","Points":10111,"X":454,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2237Z"},{"ID":28684,"Name":"E004","Points":8856,"X":657,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223702Z"},{"ID":28685,"Name":"Wioska barbarzyƄska","Points":4811,"X":606,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223703Z"},{"ID":28686,"Name":"Valhalla 2.","Points":9607,"X":371,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223704Z"},{"ID":28688,"Name":"WesoƂych ƚwiąt","Points":10160,"X":573,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223705Z"},{"ID":28689,"Name":"Wioska 066","Points":9761,"X":638,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223706Z"},{"ID":28690,"Name":"#0146 Thorus5","Points":6170,"X":473,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223707Z"},{"ID":28691,"Name":"Gromkowie 5","Points":8986,"X":370,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223707Z"},{"ID":28692,"Name":"sony911","Points":9999,"X":586,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22371Z"},{"ID":28693,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":337,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223712Z"},{"ID":28694,"Name":"Lord Lord Franek .#164","Points":9960,"X":502,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223713Z"},{"ID":28695,"Name":"PiekƂo to inni","Points":10160,"X":581,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223713Z"},{"ID":28697,"Name":"Architekci PlacĂłw Boju","Points":8163,"X":341,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223714Z"},{"ID":28698,"Name":"Darma dla zawodnika","Points":9888,"X":518,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223715Z"},{"ID":28699,"Name":"Wioska Bochun10","Points":9496,"X":330,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223716Z"},{"ID":28700,"Name":"39. KaruTown","Points":6937,"X":637,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223717Z"},{"ID":28701,"Name":"Pudelko","Points":5555,"X":633,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223717Z"},{"ID":28702,"Name":"ADEN","Points":10139,"X":573,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223719Z"},{"ID":28703,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":569,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223721Z"},{"ID":28704,"Name":"Szulernia","Points":10380,"X":387,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223722Z"},{"ID":28705,"Name":"Zeta Reticuli W","Points":3995,"X":371,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223723Z"},{"ID":28706,"Name":"North Grudziądz","Points":9961,"X":422,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223724Z"},{"ID":28707,"Name":"029.","Points":9835,"X":402,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223725Z"},{"ID":28708,"Name":"Witam","Points":10048,"X":452,"Y":656,"Continent":"K64","Bonus":2,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223725Z"},{"ID":28710,"Name":"012 Glen Moray","Points":12154,"X":550,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223727Z"},{"ID":28711,"Name":"Psycha Siada","Points":8586,"X":455,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223728Z"},{"ID":28712,"Name":"Taka004","Points":9530,"X":475,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223728Z"},{"ID":28713,"Name":"KUZYN","Points":5148,"X":415,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223729Z"},{"ID":28714,"Name":"Wioska barbarzyƄska","Points":8424,"X":438,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22373Z"},{"ID":28715,"Name":"003. Wiocha","Points":10019,"X":630,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223731Z"},{"ID":28716,"Name":"Gra o Tron","Points":10019,"X":614,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223731Z"},{"ID":28718,"Name":"Myk i do kieszonki","Points":9799,"X":347,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223732Z"},{"ID":28719,"Name":"K34 - [140] Before Land","Points":9783,"X":441,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223735Z"},{"ID":28720,"Name":"Wioska barbarzyƄska","Points":7234,"X":658,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223736Z"},{"ID":28721,"Name":"I#026","Points":8343,"X":597,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223737Z"},{"ID":28723,"Name":"aaaaaaaaaaa","Points":10636,"X":440,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223738Z"},{"ID":28724,"Name":"109...centr","Points":10090,"X":460,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223739Z"},{"ID":28725,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":344,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223739Z"},{"ID":28726,"Name":"091","Points":10495,"X":623,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22374Z"},{"ID":28727,"Name":"07. Wangan Midnight","Points":9811,"X":494,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223742Z"},{"ID":28728,"Name":"x Wioska Lord CrazY","Points":9959,"X":404,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223743Z"},{"ID":28729,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":568,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223744Z"},{"ID":28730,"Name":"a moĆŒe off? :)","Points":9494,"X":646,"Y":578,"Continent":"K56","Bonus":4,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223744Z"},{"ID":28731,"Name":"007.","Points":9835,"X":394,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223745Z"},{"ID":28732,"Name":"*151*","Points":10271,"X":357,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223746Z"},{"ID":28733,"Name":"0115","Points":12154,"X":627,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223747Z"},{"ID":28734,"Name":"I011","Points":10051,"X":662,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223747Z"},{"ID":28735,"Name":"Wioska Bochun10","Points":9314,"X":330,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22375Z"},{"ID":28736,"Name":"=056= Wioska barbarzyƄska","Points":9767,"X":646,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223751Z"},{"ID":28737,"Name":"Dajanka 27","Points":1537,"X":354,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223752Z"},{"ID":28738,"Name":"028.","Points":6965,"X":628,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223753Z"},{"ID":28739,"Name":"012","Points":10019,"X":455,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223754Z"},{"ID":28740,"Name":"OrzeƂ WylądowaƂ","Points":9267,"X":464,"Y":664,"Continent":"K64","Bonus":7,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223754Z"},{"ID":28741,"Name":"WesoƂych ƚwiąt","Points":7395,"X":583,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223755Z"},{"ID":28743,"Name":"0014","Points":10168,"X":390,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223756Z"},{"ID":28744,"Name":"Jehu_Kingdom_42","Points":6267,"X":654,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223757Z"},{"ID":28745,"Name":"Jaaa","Points":8902,"X":670,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223758Z"},{"ID":28746,"Name":"061","Points":8745,"X":662,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223759Z"},{"ID":28747,"Name":"0008","Points":4304,"X":436,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849097175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22376Z"},{"ID":28748,"Name":"wLucy","Points":5604,"X":449,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223761Z"},{"ID":28749,"Name":"028","Points":9976,"X":563,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223761Z"},{"ID":28750,"Name":"57. KaruTown","Points":9711,"X":655,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223762Z"},{"ID":28751,"Name":"Marvila","Points":9497,"X":354,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223765Z"},{"ID":28752,"Name":"OrzeƂ WylądowaƂ","Points":8180,"X":447,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223766Z"},{"ID":28753,"Name":"OrzeƂ WylądowaƂ","Points":8376,"X":448,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223767Z"},{"ID":28754,"Name":"#0106 tomek791103","Points":10178,"X":480,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223768Z"},{"ID":28755,"Name":"I014 Jamnik","Points":10241,"X":662,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223768Z"},{"ID":28757,"Name":"A025 Flap 1","Points":6536,"X":661,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223769Z"},{"ID":28758,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":337,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22377Z"},{"ID":28759,"Name":"Wioska barbarzyƄska","Points":5262,"X":595,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223771Z"},{"ID":28760,"Name":"013 - Mroczna Osada","Points":10817,"X":650,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223772Z"},{"ID":28761,"Name":"V003","Points":7395,"X":350,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223773Z"},{"ID":28762,"Name":"029","Points":9993,"X":528,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223774Z"},{"ID":28763,"Name":"Wioska barbarzyƄska","Points":9699,"X":666,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223774Z"},{"ID":28764,"Name":"M181_005","Points":9885,"X":346,"Y":428,"Continent":"K43","Bonus":4,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223775Z"},{"ID":28765,"Name":"007","Points":10019,"X":463,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223776Z"},{"ID":28766,"Name":"4.01","Points":7663,"X":347,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223778Z"},{"ID":28767,"Name":"Myk i do kieszonki","Points":8594,"X":348,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223779Z"},{"ID":28768,"Name":"051","Points":8460,"X":658,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22378Z"},{"ID":28769,"Name":"042 Isparta","Points":10276,"X":631,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22378Z"},{"ID":28770,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":336,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223781Z"},{"ID":28771,"Name":"0589","Points":9745,"X":545,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223782Z"},{"ID":28772,"Name":"Szulernia","Points":9989,"X":410,"Y":361,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223783Z"},{"ID":28773,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":610,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223783Z"},{"ID":28774,"Name":"0535","Points":5829,"X":561,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223785Z"},{"ID":28775,"Name":"115","Points":8284,"X":655,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223786Z"},{"ID":28776,"Name":"*096*","Points":10211,"X":353,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223787Z"},{"ID":28777,"Name":"116","Points":7207,"X":652,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223787Z"},{"ID":28778,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":520,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223788Z"},{"ID":28779,"Name":"Wioska Bochun10","Points":8406,"X":337,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223789Z"},{"ID":28780,"Name":"007","Points":8314,"X":599,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22379Z"},{"ID":28781,"Name":"TAJFUN","Points":9959,"X":333,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223791Z"},{"ID":28782,"Name":"#0061 Disco1Panda","Points":10178,"X":476,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223793Z"},{"ID":28783,"Name":"Gattacka","Points":10160,"X":616,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223794Z"},{"ID":28784,"Name":"Sk010","Points":8148,"X":443,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223794Z"},{"ID":28785,"Name":"Tu tak trochę sƂabo grzane byƂo","Points":9835,"X":445,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223795Z"},{"ID":28786,"Name":"Wioska barbarzyƄska","Points":7366,"X":393,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223796Z"},{"ID":28788,"Name":"Wi005","Points":9013,"X":497,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223797Z"},{"ID":28789,"Name":"cc Lipinki obokqqqqqqqqqqqqqqqqq","Points":8134,"X":392,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223798Z"},{"ID":28790,"Name":"Myk i do kieszonki","Points":9975,"X":354,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223799Z"},{"ID":28791,"Name":"Wioska barbarzyƄska","Points":9418,"X":552,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2238Z"},{"ID":28792,"Name":"0515","Points":10160,"X":536,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223801Z"},{"ID":28793,"Name":"17k$ Grvvyq","Points":10495,"X":653,"Y":574,"Continent":"K56","Bonus":6,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223802Z"},{"ID":28794,"Name":"001 Ronaldinho","Points":10019,"X":456,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223802Z"},{"ID":28795,"Name":"$7.000 Grvvyq","Points":10495,"X":651,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223803Z"},{"ID":28796,"Name":"KUZYN","Points":10160,"X":412,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223804Z"},{"ID":28797,"Name":"Chekku - meito","Points":9976,"X":332,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223805Z"},{"ID":28798,"Name":"Wioska Bochun10","Points":10311,"X":334,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223807Z"},{"ID":28799,"Name":"057.","Points":9835,"X":391,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223808Z"},{"ID":28800,"Name":"125...centr","Points":10229,"X":460,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223809Z"},{"ID":28801,"Name":"Psycha Siada","Points":10209,"X":458,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223811Z"},{"ID":28802,"Name":"Grvvyq 120k$","Points":10019,"X":609,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223813Z"},{"ID":28803,"Name":"Wioska Bochun10","Points":9954,"X":333,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223814Z"},{"ID":28804,"Name":"Wioska barbarzyƄska","Points":9171,"X":588,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223815Z"},{"ID":28805,"Name":"Wioska barbarzyƄska","Points":10122,"X":556,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223817Z"},{"ID":28806,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":343,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223818Z"},{"ID":28807,"Name":"KUZYNEIRO","Points":6620,"X":405,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223819Z"},{"ID":28808,"Name":"069...jaka","Points":11063,"X":448,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22382Z"},{"ID":28809,"Name":"0289","Points":10083,"X":539,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223821Z"},{"ID":28810,"Name":"OrzeƂ WylądowaƂ","Points":7631,"X":461,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223822Z"},{"ID":28811,"Name":"=060= Wioska barbarzyƄska","Points":10454,"X":646,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223823Z"},{"ID":28813,"Name":"*079*","Points":10211,"X":355,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223824Z"},{"ID":28814,"Name":"181","Points":8694,"X":402,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":698383417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223826Z"},{"ID":28815,"Name":"Wioska barbarzyƄska","Points":10237,"X":552,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223827Z"},{"ID":28816,"Name":"Myk i do kieszonki","Points":9799,"X":362,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22383Z"},{"ID":28818,"Name":"#118#","Points":8547,"X":618,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223831Z"},{"ID":28819,"Name":"Pobozowisko","Points":5109,"X":380,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223832Z"},{"ID":28820,"Name":"Wioska barbarzyƄska","Points":10217,"X":552,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223833Z"},{"ID":28821,"Name":"Rodzinne historie","Points":5853,"X":336,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223834Z"},{"ID":28822,"Name":"--spearfish","Points":10068,"X":622,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223836Z"},{"ID":28823,"Name":"Konfederacja","Points":9737,"X":459,"Y":370,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223837Z"},{"ID":28824,"Name":"021","Points":8268,"X":605,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223838Z"},{"ID":28825,"Name":"Myk i do kieszonki","Points":10087,"X":353,"Y":576,"Continent":"K53","Bonus":2,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223839Z"},{"ID":28826,"Name":"Sony 911","Points":10476,"X":639,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22384Z"},{"ID":28827,"Name":"#0136 Thorus5","Points":8318,"X":474,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223841Z"},{"ID":28828,"Name":"Wioska 067","Points":9761,"X":639,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223842Z"},{"ID":28830,"Name":"0516","Points":10160,"X":534,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223843Z"},{"ID":28831,"Name":"111...centr","Points":9143,"X":452,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223845Z"},{"ID":28832,"Name":"Wioska barbarzyƄska","Points":5449,"X":530,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223848Z"},{"ID":28834,"Name":"B.04","Points":7327,"X":669,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223849Z"},{"ID":28835,"Name":"006 Tretogor","Points":10231,"X":476,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22385Z"},{"ID":28836,"Name":"Psycha Siada","Points":10252,"X":456,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223851Z"},{"ID":28837,"Name":"Lord Lord Franek .#075","Points":10224,"X":527,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223852Z"},{"ID":28838,"Name":"PUSTA","Points":4858,"X":631,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223853Z"},{"ID":28839,"Name":"Jehu_Kingdom_51","Points":5574,"X":653,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223854Z"},{"ID":28840,"Name":"Myk i do kieszonki","Points":9799,"X":350,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223856Z"},{"ID":28841,"Name":"Wioska barbarzyƄska","Points":7718,"X":436,"Y":436,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223857Z"},{"ID":28842,"Name":"*140*","Points":10211,"X":355,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223858Z"},{"ID":28843,"Name":"080...barbarka----------","Points":9550,"X":475,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223858Z"},{"ID":28844,"Name":"015","Points":8088,"X":602,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223859Z"},{"ID":28845,"Name":"Taki Pan","Points":4525,"X":505,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22386Z"},{"ID":28846,"Name":"Wrath 011","Points":10273,"X":567,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223861Z"},{"ID":28847,"Name":"003","Points":8104,"X":475,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223862Z"},{"ID":28848,"Name":"Trelis","Points":6265,"X":343,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223863Z"},{"ID":28849,"Name":"--DOBRA MAC","Points":10104,"X":622,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223864Z"},{"ID":28850,"Name":"wieƛ 2","Points":9886,"X":347,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223865Z"},{"ID":28852,"Name":"Nowy ƛwiatA","Points":4226,"X":342,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223865Z"},{"ID":28854,"Name":"Chekku - meito","Points":9976,"X":335,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223866Z"},{"ID":28855,"Name":"008 - Mroczna Osada","Points":11824,"X":647,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223867Z"},{"ID":28856,"Name":"Wioska sobie 016","Points":9969,"X":403,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223868Z"},{"ID":28857,"Name":"Taran","Points":10728,"X":662,"Y":472,"Continent":"K46","Bonus":8,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223869Z"},{"ID":28858,"Name":"031 - Mroczna Osada","Points":7450,"X":641,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22387Z"},{"ID":28859,"Name":"greeece","Points":9476,"X":635,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223871Z"},{"ID":28860,"Name":"4 barb","Points":10016,"X":584,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223872Z"},{"ID":28862,"Name":"=065= Wioska barbarzyƄska","Points":10580,"X":656,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223872Z"},{"ID":28863,"Name":"*213*","Points":9701,"X":364,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223873Z"},{"ID":28864,"Name":"Grvvyq 109k$","Points":3460,"X":656,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223874Z"},{"ID":28865,"Name":"-0001-","Points":12154,"X":542,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223875Z"},{"ID":28866,"Name":"035 - Mroczna Osada","Points":6733,"X":645,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223876Z"},{"ID":28867,"Name":"troja2","Points":8933,"X":563,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223877Z"},{"ID":28868,"Name":"asd","Points":10626,"X":669,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223878Z"},{"ID":28869,"Name":"Wioska barbarzyƄska","Points":9835,"X":576,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223879Z"},{"ID":28870,"Name":"KARTAGINA ..6","Points":8698,"X":455,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223879Z"},{"ID":28871,"Name":"Wioska barbarzyƄska","Points":7775,"X":546,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22388Z"},{"ID":28872,"Name":"*144*","Points":8297,"X":355,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223881Z"},{"ID":28873,"Name":"berkuza 3","Points":10887,"X":591,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223882Z"},{"ID":28874,"Name":"#007#","Points":9761,"X":619,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223883Z"},{"ID":28875,"Name":"0105","Points":4602,"X":409,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223884Z"},{"ID":28876,"Name":"000","Points":9711,"X":344,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223885Z"},{"ID":28877,"Name":"Wioska barbarzyƄska","Points":3699,"X":493,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223886Z"},{"ID":28878,"Name":"0517","Points":9747,"X":531,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223886Z"},{"ID":28879,"Name":"psycha sitting","Points":5143,"X":429,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223887Z"},{"ID":28881,"Name":"MojeDnoToWaszSzczyt","Points":9412,"X":565,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22389Z"},{"ID":28882,"Name":"KUZYN","Points":5499,"X":417,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223891Z"},{"ID":28883,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":566,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223892Z"},{"ID":28884,"Name":"110","Points":7870,"X":652,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223893Z"},{"ID":28885,"Name":"Wioska barbarzyƄska","Points":9092,"X":663,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223894Z"},{"ID":28886,"Name":"016","Points":9740,"X":667,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223895Z"},{"ID":28887,"Name":"SPOCENI KUZYNI","Points":9869,"X":414,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223895Z"},{"ID":28888,"Name":"Zulu","Points":1273,"X":375,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699842853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223896Z"},{"ID":28889,"Name":"DW8","Points":10311,"X":343,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223898Z"},{"ID":28890,"Name":"J05","Points":3201,"X":365,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223899Z"},{"ID":28891,"Name":"Wioska barbarzyƄska","Points":5041,"X":632,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223899Z"},{"ID":28892,"Name":"Wrath 001","Points":10362,"X":570,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223901Z"},{"ID":28893,"Name":"#0124 tomek791103","Points":9719,"X":484,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223902Z"},{"ID":28894,"Name":"Wioska Bochun10","Points":10311,"X":335,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223903Z"},{"ID":28895,"Name":"ZachĂłd","Points":8224,"X":431,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223904Z"},{"ID":28896,"Name":"049...CLIO","Points":10495,"X":444,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223905Z"},{"ID":28897,"Name":"ObrzeĆŒa 098","Points":6437,"X":553,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223906Z"},{"ID":28898,"Name":"Vasco da Gama","Points":9415,"X":356,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223907Z"},{"ID":28899,"Name":"mys","Points":9498,"X":567,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223907Z"},{"ID":28900,"Name":"1.01","Points":9361,"X":339,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223908Z"},{"ID":28901,"Name":"0569","Points":10019,"X":566,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223909Z"},{"ID":28902,"Name":"Fajna 036","Points":8839,"X":456,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223909Z"},{"ID":28903,"Name":"Szulernia","Points":10484,"X":383,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22391Z"},{"ID":28904,"Name":"025","Points":7793,"X":604,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223912Z"},{"ID":28906,"Name":"Gattacka","Points":9367,"X":614,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223912Z"},{"ID":28907,"Name":"021","Points":9732,"X":665,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223914Z"},{"ID":28908,"Name":"57k$ Grvvyq","Points":7123,"X":655,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223914Z"},{"ID":28909,"Name":"Wioska Bochun10","Points":4983,"X":337,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223915Z"},{"ID":28910,"Name":"1.05","Points":6666,"X":338,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223916Z"},{"ID":28911,"Name":"D 018","Points":9233,"X":664,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223917Z"},{"ID":28912,"Name":"085 ƚwięta BoĆŒego Narodzenia","Points":10001,"X":599,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223918Z"},{"ID":28913,"Name":"Wioska barbarzyƄska","Points":10216,"X":559,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223919Z"},{"ID":28914,"Name":"Wioska barbarzyƄska","Points":4638,"X":663,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22392Z"},{"ID":28915,"Name":"DO6orzeƂ z poƂamanymi skrzydƂami","Points":10319,"X":459,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223921Z"},{"ID":28916,"Name":"Dąbrowa 0002","Points":10083,"X":357,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223921Z"},{"ID":28917,"Name":"Wioska barbarzyƄska","Points":7236,"X":400,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223922Z"},{"ID":28919,"Name":"Wioska 1","Points":8911,"X":539,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":849097220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223923Z"},{"ID":28920,"Name":"#0096 barbarzyƄska","Points":8067,"X":461,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223924Z"},{"ID":28921,"Name":"0068","Points":9519,"X":417,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223925Z"},{"ID":28922,"Name":"#0099 barbarzyƄska","Points":10178,"X":463,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223926Z"},{"ID":28923,"Name":"0290","Points":9013,"X":557,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223927Z"},{"ID":28924,"Name":"Ave Why!","Points":9569,"X":499,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223927Z"},{"ID":28925,"Name":"Szlachcic","Points":7194,"X":392,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223928Z"},{"ID":28926,"Name":"Wioska barbarzyƄska","Points":4266,"X":631,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223929Z"},{"ID":28927,"Name":"Taka002","Points":9594,"X":480,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22393Z"},{"ID":28928,"Name":"Lord Lord Franek .#076","Points":10144,"X":535,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223931Z"},{"ID":28929,"Name":"O40 Fethiye","Points":10154,"X":662,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223932Z"},{"ID":28930,"Name":"030 PAKOL TI VI","Points":9238,"X":658,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223932Z"},{"ID":28931,"Name":"ƚmieszki","Points":9100,"X":534,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223933Z"},{"ID":28932,"Name":"009","Points":7488,"X":379,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223935Z"},{"ID":28933,"Name":"Wioska 02","Points":2852,"X":596,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223936Z"},{"ID":28934,"Name":"Dajanka 25","Points":2168,"X":354,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223937Z"},{"ID":28935,"Name":"Myk i do kieszonki","Points":9799,"X":354,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223937Z"},{"ID":28936,"Name":"Zeta Reticuli W","Points":5363,"X":360,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223938Z"},{"ID":28938,"Name":"Psycha Siada","Points":10252,"X":454,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223939Z"},{"ID":28939,"Name":"-02-","Points":10654,"X":333,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22394Z"},{"ID":28940,"Name":"PiekƂo to inni","Points":10160,"X":585,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223941Z"},{"ID":28941,"Name":"050 BOBI 2","Points":10135,"X":664,"Y":484,"Continent":"K46","Bonus":9,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223942Z"},{"ID":28942,"Name":"035.","Points":9835,"X":408,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223942Z"},{"ID":28943,"Name":"Szlachcic/Taran","Points":10237,"X":626,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223943Z"},{"ID":28944,"Name":"psycha sitting","Points":9405,"X":430,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223945Z"},{"ID":28945,"Name":"SPOCENI KUZYNI","Points":10122,"X":418,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223946Z"},{"ID":28946,"Name":"=069= Wioska barbarzyƄska","Points":8695,"X":657,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223947Z"},{"ID":28947,"Name":"068 | PALESTINA","Points":5473,"X":646,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223948Z"},{"ID":28948,"Name":"007","Points":9803,"X":433,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223948Z"},{"ID":28949,"Name":"034 Rakverelin","Points":8316,"X":469,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223949Z"},{"ID":28950,"Name":"033 lecimy tutaj","Points":8884,"X":659,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22395Z"},{"ID":28951,"Name":"Wioska barbarzyƄska","Points":3082,"X":382,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223951Z"},{"ID":28953,"Name":"GrĂłd 3","Points":4288,"X":474,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699204478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223952Z"},{"ID":28954,"Name":"|B| Arrowgrove","Points":10495,"X":489,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223953Z"},{"ID":28955,"Name":"1.04","Points":6121,"X":338,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223955Z"},{"ID":28956,"Name":"003","Points":3501,"X":347,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223955Z"},{"ID":28957,"Name":"058","Points":10495,"X":546,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223956Z"},{"ID":28958,"Name":"A014","Points":4455,"X":612,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223957Z"},{"ID":28959,"Name":"MAKS","Points":10378,"X":555,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223957Z"},{"ID":28960,"Name":"#0235 Segadorr dar","Points":10178,"X":466,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223959Z"},{"ID":28962,"Name":"Wrath 002","Points":10273,"X":572,"Y":345,"Continent":"K35","Bonus":3,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223959Z"},{"ID":28963,"Name":"008","Points":3149,"X":388,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848921536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22396Z"},{"ID":28964,"Name":"Wioska Bochun10","Points":10311,"X":340,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223961Z"},{"ID":28965,"Name":"Jaaa","Points":9900,"X":669,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223961Z"},{"ID":28966,"Name":"SPOCENI KUZYNI","Points":4900,"X":416,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223962Z"},{"ID":28967,"Name":"O16 Talca","Points":10044,"X":663,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223963Z"},{"ID":28968,"Name":"0248","Points":10160,"X":559,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223964Z"},{"ID":28969,"Name":"AAA","Points":9641,"X":533,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223965Z"},{"ID":28970,"Name":"Bagdad","Points":10838,"X":489,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223966Z"},{"ID":28971,"Name":"Krosno 4","Points":6700,"X":537,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223967Z"},{"ID":28972,"Name":"WKRA","Points":9646,"X":334,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223967Z"},{"ID":28973,"Name":"006","Points":10237,"X":483,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223968Z"},{"ID":28974,"Name":"xxx - 08","Points":10110,"X":614,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223969Z"},{"ID":28975,"Name":"022 serniczek z oreo","Points":10252,"X":505,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22397Z"},{"ID":28976,"Name":"036.","Points":9835,"X":408,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223971Z"},{"ID":28978,"Name":"Jaaa","Points":9435,"X":663,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223972Z"},{"ID":28979,"Name":"44k$ Grvvyq","Points":7114,"X":649,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223973Z"},{"ID":28980,"Name":"Wioska barbarzyƄska","Points":9835,"X":575,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223973Z"},{"ID":28982,"Name":"*Ateny_11","Points":9766,"X":475,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223974Z"},{"ID":28983,"Name":"N003","Points":5593,"X":343,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223975Z"},{"ID":28984,"Name":"Ave Why!","Points":8976,"X":497,"Y":669,"Continent":"K64","Bonus":5,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223976Z"},{"ID":28985,"Name":"SPOCENI KUZYNI","Points":9934,"X":415,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223977Z"},{"ID":28986,"Name":"108","Points":8916,"X":655,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223991Z"},{"ID":28987,"Name":"O49 Lendava","Points":12154,"X":660,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223994Z"},{"ID":28988,"Name":"082","Points":9601,"X":440,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223996Z"},{"ID":28989,"Name":"Wrath 012","Points":10273,"X":571,"Y":345,"Continent":"K35","Bonus":2,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223997Z"},{"ID":28990,"Name":"M181_014","Points":9165,"X":344,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.223999Z"},{"ID":28992,"Name":"A010 Jospe D","Points":10160,"X":664,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224Z"},{"ID":28993,"Name":"On average ƚR","Points":9835,"X":493,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224002Z"},{"ID":28995,"Name":"15. Rezerwacja w Pachy","Points":8559,"X":520,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224004Z"},{"ID":28996,"Name":"BACÓWKA |035|","Points":5630,"X":632,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224012Z"},{"ID":28997,"Name":"1v9 machine","Points":10019,"X":385,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224014Z"},{"ID":28998,"Name":"|C| Swampforest","Points":10495,"X":505,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224015Z"},{"ID":28999,"Name":"ADEN","Points":10056,"X":572,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224017Z"},{"ID":29001,"Name":".///...//././././././././","Points":9754,"X":376,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224018Z"},{"ID":29002,"Name":"Akaria","Points":9761,"X":418,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22402Z"},{"ID":29003,"Name":"045","Points":8366,"X":670,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224022Z"},{"ID":29004,"Name":"3..","Points":10011,"X":421,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224029Z"},{"ID":29005,"Name":"8068","Points":10019,"X":376,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22403Z"},{"ID":29006,"Name":"#0026","Points":10495,"X":546,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224032Z"},{"ID":29007,"Name":"K34 x030","Points":6170,"X":409,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224034Z"},{"ID":29009,"Name":"V009","Points":4370,"X":352,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224039Z"},{"ID":29011,"Name":"Alice Rose","Points":3414,"X":546,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":849106383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22404Z"},{"ID":29012,"Name":"0031","Points":10495,"X":616,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224042Z"},{"ID":29013,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":341,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224044Z"},{"ID":29014,"Name":"10k$ Grvvyq","Points":10495,"X":649,"Y":575,"Continent":"K56","Bonus":9,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22405Z"},{"ID":29015,"Name":"181 Zulu Gula !","Points":3879,"X":521,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":2571407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224051Z"},{"ID":29016,"Name":"~~075~~","Points":7386,"X":616,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224053Z"},{"ID":29017,"Name":"Wioska Bochun10","Points":5671,"X":334,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224054Z"},{"ID":29018,"Name":"B 027","Points":9170,"X":668,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224055Z"},{"ID":29019,"Name":"OrzeƂ WylądowaƂ","Points":5221,"X":457,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224057Z"},{"ID":29020,"Name":"A21","Points":10887,"X":473,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224061Z"},{"ID":29021,"Name":"021 VW Wioska barbarzyƄska","Points":3700,"X":365,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224064Z"},{"ID":29022,"Name":"A003 Thais 2","Points":7462,"X":660,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224065Z"},{"ID":29024,"Name":"017 Szachy - Skoczek","Points":7245,"X":366,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224067Z"},{"ID":29025,"Name":"#0068 tomek791103","Points":10178,"X":477,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224068Z"},{"ID":29026,"Name":"*011","Points":9031,"X":594,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224073Z"},{"ID":29027,"Name":"Myk i do kieszonki","Points":9799,"X":353,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224074Z"},{"ID":29028,"Name":"Wioska barbarzyƄska","Points":2951,"X":651,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224075Z"},{"ID":29029,"Name":"Uran","Points":2636,"X":549,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224077Z"},{"ID":29031,"Name":"Wrath 014","Points":9803,"X":569,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22408Z"},{"ID":29032,"Name":"PiekƂo to inni","Points":9159,"X":591,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224084Z"},{"ID":29033,"Name":"Lord Lord Franek .#165","Points":10205,"X":511,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224085Z"},{"ID":29035,"Name":"03 tonieostatnieslowo","Points":9780,"X":607,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224087Z"},{"ID":29036,"Name":"Szulernia","Points":10483,"X":398,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224088Z"},{"ID":29037,"Name":"[A]008","Points":6937,"X":423,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22409Z"},{"ID":29038,"Name":"I005","Points":10149,"X":663,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224091Z"},{"ID":29039,"Name":"028...OPELEK","Points":10279,"X":446,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224097Z"},{"ID":29040,"Name":"Myk i do kieszonki","Points":9799,"X":355,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224099Z"},{"ID":29041,"Name":"SIR DEVELES","Points":10471,"X":620,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2241Z"},{"ID":29042,"Name":"K34 - [142] Before Land","Points":9783,"X":437,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224102Z"},{"ID":29043,"Name":"052...qashqai","Points":10559,"X":442,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224104Z"},{"ID":29044,"Name":"Zeta Reticuli S2","Points":8353,"X":364,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224105Z"},{"ID":29045,"Name":"0103","Points":3422,"X":634,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224109Z"},{"ID":29046,"Name":"*134*","Points":10211,"X":355,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22411Z"},{"ID":29047,"Name":"#103#","Points":9761,"X":631,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224113Z"},{"ID":29048,"Name":"Ave Why!","Points":9202,"X":498,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224115Z"},{"ID":29049,"Name":"|B| Newmouth","Points":6077,"X":484,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224116Z"},{"ID":29050,"Name":"WÄ…ĆŒ z gƂową ƛlimaka","Points":2072,"X":365,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":849096182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224121Z"},{"ID":29051,"Name":"#0180 MiBM","Points":8527,"X":487,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224122Z"},{"ID":29052,"Name":"E010","Points":7368,"X":660,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224124Z"},{"ID":29053,"Name":"059","Points":10149,"X":658,"Y":544,"Continent":"K56","Bonus":5,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224125Z"},{"ID":29054,"Name":"|005| Kissamos","Points":10063,"X":493,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224127Z"},{"ID":29055,"Name":"0018","Points":9949,"X":412,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22413Z"},{"ID":29056,"Name":"Wioska 099","Points":9761,"X":647,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224134Z"},{"ID":29057,"Name":"#0086 barbarzyƄska","Points":10178,"X":472,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224135Z"},{"ID":29058,"Name":"#.04 Wioska Natalka69","Points":10019,"X":649,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224137Z"},{"ID":29059,"Name":"Wioska barbarzyƄska","Points":9252,"X":442,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224138Z"},{"ID":29060,"Name":"Szlachcic/Taran","Points":10237,"X":613,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224139Z"},{"ID":29061,"Name":"Wioska klez 014","Points":7170,"X":333,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224141Z"},{"ID":29062,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":340,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224144Z"},{"ID":29063,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":394,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224145Z"},{"ID":29064,"Name":"032 serniczek na ƛniadanie","Points":9729,"X":511,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224147Z"},{"ID":29065,"Name":"Wioska Bochun10","Points":9511,"X":336,"Y":516,"Continent":"K53","Bonus":5,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224149Z"},{"ID":29067,"Name":"Wioska barbarzyƄska","Points":8544,"X":579,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22415Z"},{"ID":29068,"Name":"032 MONETKI","Points":9761,"X":666,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224151Z"},{"ID":29069,"Name":"Szlachcic/Taran","Points":10237,"X":612,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224153Z"},{"ID":29070,"Name":"Westfold.010","Points":10178,"X":347,"Y":424,"Continent":"K43","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224154Z"},{"ID":29071,"Name":"?013","Points":8412,"X":540,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224157Z"},{"ID":29072,"Name":"06. Ofir","Points":1372,"X":337,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224159Z"},{"ID":29073,"Name":"008 Campbeltown","Points":9971,"X":555,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22416Z"},{"ID":29074,"Name":"Architekci PlacĂłw Boju","Points":4843,"X":342,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224162Z"},{"ID":29075,"Name":"OmoĆŒe","Points":9183,"X":432,"Y":560,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224163Z"},{"ID":29076,"Name":"080...sƂąbiak","Points":10479,"X":433,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224165Z"},{"ID":29077,"Name":"*042","Points":9712,"X":597,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224166Z"},{"ID":29078,"Name":"CC Wioska z","Points":4951,"X":389,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224169Z"},{"ID":29079,"Name":"Jestem Poza Kontrolą","Points":9160,"X":345,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224171Z"},{"ID":29081,"Name":"Myk i do kieszonki","Points":10495,"X":382,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224172Z"},{"ID":29082,"Name":"112...center","Points":8731,"X":450,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224174Z"},{"ID":29083,"Name":"0003 Zakopane","Points":8955,"X":388,"Y":379,"Continent":"K33","Bonus":1,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224175Z"},{"ID":29084,"Name":"Kentin ufam Tobie","Points":10000,"X":338,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224176Z"},{"ID":29085,"Name":"A013 darekdd","Points":10160,"X":658,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224178Z"},{"ID":29086,"Name":"Lord Lord Franek .#122","Points":7471,"X":519,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224179Z"},{"ID":29087,"Name":"OrzeƂ WylądowaƂ","Points":9360,"X":457,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224182Z"},{"ID":29088,"Name":"Ć»UBR .::.B.E.T.O.N /10","Points":10192,"X":625,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224184Z"},{"ID":29089,"Name":"North Barba 051","Points":9725,"X":425,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224185Z"},{"ID":29090,"Name":"asd","Points":10728,"X":670,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224187Z"},{"ID":29091,"Name":"M181_004","Points":9883,"X":345,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224189Z"},{"ID":29092,"Name":"Lord Lord Franek .#123","Points":7746,"X":527,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22419Z"},{"ID":29093,"Name":"054","Points":9123,"X":665,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224192Z"},{"ID":29094,"Name":"*Naturalna kolej rzeczy...","Points":9761,"X":576,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224194Z"},{"ID":29095,"Name":"Darmowe przeprowadzki","Points":9809,"X":453,"Y":665,"Continent":"K64","Bonus":4,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224196Z"},{"ID":29096,"Name":"#0083 barbarzyƄska","Points":9209,"X":475,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224197Z"},{"ID":29097,"Name":"Ave Why!","Points":9809,"X":481,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224199Z"},{"ID":29098,"Name":"Myk i do kieszonki","Points":9799,"X":346,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2242Z"},{"ID":29099,"Name":"|003| Agia Pelagia","Points":9738,"X":492,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224202Z"},{"ID":29100,"Name":"A03","Points":10160,"X":469,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224203Z"},{"ID":29101,"Name":"Wioska klez 008","Points":8710,"X":332,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224205Z"},{"ID":29102,"Name":"Wioska 104","Points":9783,"X":647,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224208Z"},{"ID":29103,"Name":"0393","Points":10019,"X":551,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224209Z"},{"ID":29104,"Name":"Valhalla 5","Points":10053,"X":371,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22421Z"},{"ID":29105,"Name":"041 OrzeƂ WylądowaƂ","Points":10160,"X":460,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224212Z"},{"ID":29106,"Name":"Myk i do kieszonki","Points":11824,"X":369,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224213Z"},{"ID":29107,"Name":"Jestem Poza Kontrolą","Points":9880,"X":343,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224215Z"},{"ID":29108,"Name":"Osada koczownikĂłw","Points":10217,"X":551,"Y":342,"Continent":"K35","Bonus":9,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224216Z"},{"ID":29109,"Name":"*5610* Brudki Stare","Points":10287,"X":650,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224219Z"},{"ID":29110,"Name":"002","Points":5537,"X":341,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224221Z"},{"ID":29112,"Name":"PiekƂo to inni","Points":10160,"X":560,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224222Z"},{"ID":29113,"Name":"Wioska barbarzyƄska","Points":9070,"X":451,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224224Z"},{"ID":29114,"Name":"PiekƂo to inni","Points":10160,"X":577,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224225Z"},{"ID":29115,"Name":"aaaaaaaaa","Points":10495,"X":439,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224227Z"},{"ID":29116,"Name":"Szlachcic/Taran","Points":6670,"X":625,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224228Z"},{"ID":29117,"Name":"A002 La La Laggerx","Points":10146,"X":663,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224229Z"},{"ID":29118,"Name":"Wioska 063","Points":9761,"X":639,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224233Z"},{"ID":29119,"Name":"#0109 tomek791103","Points":10178,"X":482,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224234Z"},{"ID":29120,"Name":"WB 05","Points":8307,"X":634,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224236Z"},{"ID":29121,"Name":"053 | PALESTINA","Points":4220,"X":648,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224237Z"},{"ID":29122,"Name":"[12]","Points":3305,"X":431,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699698079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224238Z"},{"ID":29123,"Name":"A12","Points":9835,"X":469,"Y":668,"Continent":"K64","Bonus":7,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22424Z"},{"ID":29124,"Name":"Warownia 3","Points":9639,"X":431,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224241Z"},{"ID":29125,"Name":"Twferdza Nie do zfobycia","Points":3781,"X":518,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":9314153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224244Z"},{"ID":29126,"Name":"Chekku - meito","Points":9976,"X":335,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224246Z"},{"ID":29127,"Name":"|009| Malia","Points":10063,"X":499,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224248Z"},{"ID":29128,"Name":"Wioska barbarzyƄska","Points":10221,"X":558,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224249Z"},{"ID":29129,"Name":"0267","Points":10160,"X":552,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224251Z"},{"ID":29130,"Name":"029.","Points":6834,"X":632,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224252Z"},{"ID":29131,"Name":"092","Points":10495,"X":620,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224254Z"},{"ID":29132,"Name":"Pomost","Points":7827,"X":335,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224255Z"},{"ID":29133,"Name":"PUSTA","Points":5407,"X":630,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224258Z"},{"ID":29134,"Name":"A29","Points":9453,"X":478,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22426Z"},{"ID":29135,"Name":"Tyr","Points":9828,"X":419,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224261Z"},{"ID":29136,"Name":"Myk i do kieszonki","Points":9799,"X":347,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224263Z"},{"ID":29137,"Name":"Architekci PlacĂłw Boju","Points":6635,"X":340,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224264Z"},{"ID":29138,"Name":"B 006","Points":10072,"X":663,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224266Z"},{"ID":29139,"Name":"scofield","Points":10237,"X":525,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224267Z"},{"ID":29140,"Name":"0009 Szczecin","Points":4460,"X":372,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224271Z"},{"ID":29141,"Name":"Taran","Points":10728,"X":667,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224272Z"},{"ID":29142,"Name":"SPOCENI KUZYNI","Points":8091,"X":415,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224273Z"},{"ID":29143,"Name":"Kentin ufam Tobie","Points":10000,"X":434,"Y":399,"Continent":"K34","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224275Z"},{"ID":29144,"Name":"005 Highlands","Points":9021,"X":554,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224276Z"},{"ID":29145,"Name":"Wioska Bochun10","Points":10311,"X":329,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224278Z"},{"ID":29146,"Name":"011. Dla flag","Points":8317,"X":351,"Y":432,"Continent":"K43","Bonus":1,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224279Z"},{"ID":29147,"Name":"*090*","Points":10211,"X":359,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22428Z"},{"ID":29148,"Name":"047","Points":9993,"X":516,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224284Z"},{"ID":29149,"Name":"046","Points":9532,"X":654,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224285Z"},{"ID":29150,"Name":"Myk i do kieszonki","Points":9711,"X":345,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224286Z"},{"ID":29151,"Name":"Grvvyq 119k$","Points":10083,"X":615,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224288Z"},{"ID":29152,"Name":"WISƁA","Points":10201,"X":332,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224289Z"},{"ID":29153,"Name":"Delaware","Points":9761,"X":668,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224291Z"},{"ID":29154,"Name":"Szlachcic/Taran","Points":10237,"X":618,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224292Z"},{"ID":29155,"Name":"Warownia","Points":4800,"X":431,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":849006145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224295Z"},{"ID":29156,"Name":"004","Points":9765,"X":604,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224297Z"},{"ID":29157,"Name":"O14 Warzazat","Points":10209,"X":666,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224298Z"},{"ID":29158,"Name":"Sony 911","Points":7276,"X":640,"Y":589,"Continent":"K56","Bonus":1,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2243Z"},{"ID":29159,"Name":"K34 - [154] Before Land","Points":10365,"X":439,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224301Z"},{"ID":29160,"Name":"Jaaa","Points":10134,"X":666,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224302Z"},{"ID":29161,"Name":"Lord Lord Franek .#166","Points":10026,"X":508,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224304Z"},{"ID":29162,"Name":"28. KaruTown","Points":6988,"X":638,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224305Z"},{"ID":29163,"Name":"Sk_019","Points":3917,"X":438,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224309Z"},{"ID":29164,"Name":"0014","Points":9938,"X":627,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22431Z"},{"ID":29165,"Name":"BUNKIER 005","Points":10019,"X":643,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224311Z"},{"ID":29166,"Name":"Monetkownia","Points":10237,"X":621,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224313Z"},{"ID":29167,"Name":"jaskinia","Points":9716,"X":388,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224314Z"},{"ID":29168,"Name":"021 Radom","Points":9283,"X":402,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224316Z"},{"ID":29169,"Name":"O30 Konoha","Points":10411,"X":662,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224317Z"},{"ID":29170,"Name":"Wioska Bochun10","Points":9124,"X":336,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22432Z"},{"ID":29171,"Name":"042","Points":10283,"X":666,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224322Z"},{"ID":29172,"Name":"I036","Points":10490,"X":656,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224323Z"},{"ID":29173,"Name":"Nowy ƛwiat 6","Points":4906,"X":342,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224325Z"},{"ID":29174,"Name":"Jaaa","Points":9538,"X":667,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224326Z"},{"ID":29175,"Name":"Szulernia","Points":9979,"X":410,"Y":362,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224328Z"},{"ID":29176,"Name":"OrzeƂ WylądowaƂ","Points":8141,"X":459,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224329Z"},{"ID":29177,"Name":"Wioska barbarzyƄska","Points":9239,"X":556,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22433Z"},{"ID":29178,"Name":"Flotsam","Points":3307,"X":481,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224333Z"},{"ID":29179,"Name":".///...//././././././././","Points":9409,"X":376,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224335Z"},{"ID":29180,"Name":"Dal","Points":10019,"X":612,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":849091897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224336Z"},{"ID":29181,"Name":"#0087 barbarzyƄska","Points":10017,"X":474,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224338Z"},{"ID":29182,"Name":"J003.","Points":10019,"X":366,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224339Z"},{"ID":29183,"Name":"E002","Points":6300,"X":659,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224341Z"},{"ID":29184,"Name":"B.059","Points":10000,"X":668,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224342Z"},{"ID":29185,"Name":"063...Agent Pumba","Points":10220,"X":443,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224344Z"},{"ID":29186,"Name":"Dąbrowa 0018","Points":4621,"X":353,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224347Z"},{"ID":29187,"Name":"Nowy ƛwiat 5","Points":4971,"X":342,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224348Z"},{"ID":29188,"Name":"[161]","Points":6175,"X":642,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22435Z"},{"ID":29190,"Name":"Wioska barbarzyƄska","Points":3709,"X":371,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224351Z"},{"ID":29191,"Name":"Wioska Bochun10","Points":10311,"X":339,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224353Z"},{"ID":29192,"Name":"0001","Points":9938,"X":626,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224354Z"},{"ID":29193,"Name":"Wioska Bochun10","Points":9978,"X":329,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224356Z"},{"ID":29195,"Name":"pierwsza gwiazdka","Points":9640,"X":442,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224359Z"},{"ID":29196,"Name":"084...TOM-----------","Points":10282,"X":475,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22436Z"},{"ID":29197,"Name":"Wioska Ewelina1809","Points":9835,"X":593,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224362Z"},{"ID":29198,"Name":"Monetkownia","Points":10237,"X":618,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224363Z"},{"ID":29199,"Name":"#0029","Points":10495,"X":564,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224365Z"},{"ID":29200,"Name":"Myk i do kieszonki","Points":10088,"X":355,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224366Z"},{"ID":29201,"Name":"#0141 barbarzyƄska","Points":6072,"X":469,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224367Z"},{"ID":29202,"Name":"Wioska (040)","Points":7153,"X":667,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224369Z"},{"ID":29203,"Name":"PaƄstfa PuƂnocy","Points":9689,"X":582,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224372Z"},{"ID":29204,"Name":"WesoƂych ƚwiąt","Points":5570,"X":592,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224373Z"},{"ID":29205,"Name":"Hiszpania","Points":4713,"X":340,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224375Z"},{"ID":29206,"Name":"018 VW.King Tulip","Points":7010,"X":364,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224376Z"},{"ID":29207,"Name":"032.","Points":9835,"X":404,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224378Z"},{"ID":29208,"Name":"Sony 911","Points":10206,"X":583,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224379Z"},{"ID":29209,"Name":"Jaaa","Points":10487,"X":670,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22438Z"},{"ID":29210,"Name":"-06-","Points":7057,"X":330,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224383Z"},{"ID":29211,"Name":"PaƄstfa PuƂnocy","Points":9638,"X":583,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224385Z"},{"ID":29213,"Name":"45k$ Grvvyq","Points":9366,"X":649,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224386Z"},{"ID":29214,"Name":"003 serniczek z brzoskwiniami","Points":10160,"X":505,"Y":672,"Continent":"K65","Bonus":5,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224388Z"},{"ID":29216,"Name":"*003","Points":9033,"X":598,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224389Z"},{"ID":29217,"Name":"Jestem Poza Kontrolą","Points":9880,"X":347,"Y":559,"Continent":"K53","Bonus":8,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224391Z"},{"ID":29218,"Name":"047","Points":9366,"X":660,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224392Z"},{"ID":29220,"Name":"*264*","Points":2546,"X":351,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224394Z"},{"ID":29221,"Name":"#0085 barbarzyƄska","Points":9209,"X":470,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224397Z"},{"ID":29222,"Name":"wieƛ2","Points":9296,"X":590,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224398Z"},{"ID":29223,"Name":"Wioska Bochun10","Points":10311,"X":340,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2244Z"},{"ID":29224,"Name":"[B]_[014] Dejv.oldplyr","Points":10636,"X":429,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224401Z"},{"ID":29225,"Name":"#0052 geryk","Points":10178,"X":468,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224403Z"},{"ID":29226,"Name":"#112#","Points":9761,"X":635,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224404Z"},{"ID":29227,"Name":"SPOCENI KUZYNI","Points":7388,"X":412,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224405Z"},{"ID":29228,"Name":"*063*","Points":10211,"X":355,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224408Z"},{"ID":29229,"Name":"pusta","Points":10168,"X":386,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22441Z"},{"ID":29230,"Name":"Pobozowisko","Points":9450,"X":376,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224411Z"},{"ID":29231,"Name":"04. Maroko","Points":9570,"X":640,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224413Z"},{"ID":29232,"Name":"Wioska Bochun10","Points":9739,"X":334,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224414Z"},{"ID":29233,"Name":"05. Kolumbia","Points":9735,"X":640,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224415Z"},{"ID":29234,"Name":"0548","Points":9756,"X":531,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224417Z"},{"ID":29235,"Name":"Dajanka 23","Points":2065,"X":351,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224418Z"},{"ID":29236,"Name":"Ć»ubr .::. Metanol Lecter/2","Points":10364,"X":608,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224421Z"},{"ID":29237,"Name":"OrzeƂ WylądowaƂ","Points":8266,"X":460,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224423Z"},{"ID":29238,"Name":"--badlands","Points":8503,"X":622,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224424Z"},{"ID":29239,"Name":"071 Wioska barbarzyƄska","Points":10001,"X":546,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224426Z"},{"ID":29240,"Name":"WesoƂych ƚwiąt","Points":5682,"X":588,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224427Z"},{"ID":29241,"Name":"1v9 machine","Points":10083,"X":388,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224429Z"},{"ID":29242,"Name":"Pobozowisko","Points":7252,"X":384,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224431Z"},{"ID":29243,"Name":"|030| Lindos","Points":9528,"X":501,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224433Z"},{"ID":29244,"Name":"4.02","Points":5017,"X":344,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224435Z"},{"ID":29245,"Name":"Wioska 11","Points":10068,"X":499,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224436Z"},{"ID":29246,"Name":"#0104 tomek791103","Points":10178,"X":480,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224438Z"},{"ID":29247,"Name":"Puszcza","Points":5764,"X":638,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224439Z"},{"ID":29248,"Name":"024 - Mroczna Osada","Points":11130,"X":642,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224441Z"},{"ID":29249,"Name":"Ave Why!","Points":4741,"X":501,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224442Z"},{"ID":29251,"Name":"Myk i do kieszonki","Points":9799,"X":350,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224444Z"},{"ID":29252,"Name":"Pobozowisko","Points":10705,"X":377,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224447Z"},{"ID":29253,"Name":"=074= Wioska 0","Points":8774,"X":655,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224448Z"},{"ID":29254,"Name":"zaraz bede .","Points":10157,"X":583,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224449Z"},{"ID":29255,"Name":"043","Points":10495,"X":559,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224451Z"},{"ID":29256,"Name":"023","Points":10311,"X":629,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224452Z"},{"ID":29257,"Name":"A04","Points":10019,"X":473,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224454Z"},{"ID":29258,"Name":"Wioska barbarzyƄska","Points":2351,"X":348,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":3990066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224455Z"},{"ID":29259,"Name":"*132*","Points":10211,"X":354,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224458Z"},{"ID":29260,"Name":"Sony 911","Points":10035,"X":587,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22446Z"},{"ID":29261,"Name":"Dąbrowa 0009","Points":10083,"X":362,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224461Z"},{"ID":29262,"Name":"pomiędzy","Points":12154,"X":628,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699832463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224462Z"},{"ID":29263,"Name":"S_013","Points":6945,"X":514,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":849049155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224464Z"},{"ID":29264,"Name":"6 barba","Points":9804,"X":584,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224465Z"},{"ID":29265,"Name":"V006","Points":4099,"X":350,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224467Z"},{"ID":29266,"Name":"=070= Wioska barbarzyƄska","Points":10580,"X":658,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224468Z"},{"ID":29267,"Name":"007 Aldersberg","Points":10178,"X":466,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224471Z"},{"ID":29269,"Name":"Sony 911","Points":10206,"X":587,"Y":643,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224473Z"},{"ID":29270,"Name":"050...JUKE","Points":10495,"X":451,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224474Z"},{"ID":29271,"Name":"Wioska Bochun10","Points":10311,"X":336,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224475Z"},{"ID":29272,"Name":"Wioska Bochun10","Points":10311,"X":328,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224477Z"},{"ID":29273,"Name":"xxx","Points":10237,"X":641,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224479Z"},{"ID":29274,"Name":"Forza 12","Points":4875,"X":438,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849100323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22448Z"},{"ID":29276,"Name":"Wioska barbarzyƄska","Points":9999,"X":668,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224483Z"},{"ID":29277,"Name":"wLisanna","Points":2793,"X":446,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224484Z"},{"ID":29278,"Name":"I037","Points":9973,"X":661,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224486Z"},{"ID":29279,"Name":"075","Points":9068,"X":650,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224487Z"},{"ID":29280,"Name":"Szlachcic/Taran","Points":10237,"X":635,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224489Z"},{"ID":29281,"Name":"psycha sitting","Points":9899,"X":425,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22449Z"},{"ID":29282,"Name":"BETON 026","Points":10495,"X":622,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224491Z"},{"ID":29283,"Name":"Chekku - meito","Points":10296,"X":340,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224493Z"},{"ID":29284,"Name":"Wioska barbarzyƄska","Points":4678,"X":511,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224496Z"},{"ID":29285,"Name":"Lord Lord Franek .#077","Points":9957,"X":520,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224497Z"},{"ID":29286,"Name":"Po ƛwiętach","Points":9924,"X":604,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224499Z"},{"ID":29287,"Name":"Wioska 12","Points":9515,"X":496,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224501Z"},{"ID":29288,"Name":"--hill city","Points":7955,"X":622,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224502Z"},{"ID":29289,"Name":"Szlachcic/Taran","Points":10237,"X":612,"Y":374,"Continent":"K36","Bonus":6,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224503Z"},{"ID":29290,"Name":"Szlachcic","Points":9637,"X":505,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224505Z"},{"ID":29291,"Name":"017","Points":9740,"X":668,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224508Z"},{"ID":29292,"Name":".:001:.","Points":12154,"X":373,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224509Z"},{"ID":29293,"Name":"Lord Lord Franek .#078","Points":10299,"X":517,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224511Z"},{"ID":29294,"Name":"Wioska barbarzyƄska","Points":9835,"X":572,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224512Z"},{"ID":29295,"Name":"*078*","Points":10211,"X":357,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224513Z"},{"ID":29296,"Name":"Wigor","Points":3559,"X":577,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":849097386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224515Z"},{"ID":29297,"Name":"Myk i do kieszonki","Points":9799,"X":348,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224516Z"},{"ID":29298,"Name":"#0160 deleted","Points":8564,"X":470,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224518Z"},{"ID":29299,"Name":"049- Mroczna Osada","Points":11824,"X":630,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224521Z"},{"ID":29300,"Name":"025. barbara9","Points":3537,"X":333,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224522Z"},{"ID":29301,"Name":"055...barbarka","Points":10237,"X":449,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224523Z"},{"ID":29302,"Name":"Ć»UBRAWKA 039","Points":10495,"X":609,"Y":633,"Continent":"K66","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224525Z"},{"ID":29303,"Name":"018","Points":2999,"X":424,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224526Z"},{"ID":29304,"Name":"0533","Points":5587,"X":559,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224528Z"},{"ID":29305,"Name":"PiekƂo to inni","Points":8930,"X":590,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224529Z"},{"ID":29306,"Name":"014","Points":10019,"X":454,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224532Z"},{"ID":29307,"Name":"Wioska Bochun10","Points":4005,"X":333,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224534Z"},{"ID":29308,"Name":"*010","Points":9073,"X":594,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224535Z"},{"ID":29309,"Name":"*043","Points":9720,"X":600,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224537Z"},{"ID":29310,"Name":"M181_007","Points":10373,"X":345,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224538Z"},{"ID":29311,"Name":"Kentin ufam Tobie","Points":10000,"X":335,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22454Z"},{"ID":29312,"Name":"Szlachcic/Taran","Points":10237,"X":612,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224541Z"},{"ID":29313,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":329,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224543Z"},{"ID":29314,"Name":"I013 Solnik","Points":10285,"X":664,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224545Z"},{"ID":29315,"Name":"Zeta Reticuli W","Points":9506,"X":364,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224547Z"},{"ID":29316,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":338,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224548Z"},{"ID":29317,"Name":"PiekƂo to inni","Points":10160,"X":586,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22455Z"},{"ID":29318,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9966,"X":518,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224551Z"},{"ID":29319,"Name":"Szlachcic/Taran","Points":10237,"X":613,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224553Z"},{"ID":29321,"Name":"014 - Mroczna Osada","Points":10318,"X":643,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224554Z"},{"ID":29322,"Name":"K34 x034","Points":4129,"X":406,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224556Z"},{"ID":29323,"Name":"Jehu_Kingdom_57","Points":5282,"X":656,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224559Z"},{"ID":29324,"Name":"North Barba 007","Points":9887,"X":419,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22456Z"},{"ID":29325,"Name":"Wioska sobie 015","Points":10393,"X":402,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224562Z"},{"ID":29326,"Name":"Ć»UBRAWKA 017","Points":9794,"X":605,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224563Z"},{"ID":29327,"Name":"SOKzGUMIjagĂłd","Points":4394,"X":595,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224565Z"},{"ID":29328,"Name":"#0111 tomek791103","Points":10178,"X":483,"Y":331,"Continent":"K34","Bonus":2,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224566Z"},{"ID":29329,"Name":"Jaaa","Points":10476,"X":670,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224568Z"},{"ID":29330,"Name":"cc 110 7","Points":7535,"X":375,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224571Z"},{"ID":29331,"Name":"[B]_[044] Dejv.oldplyr","Points":10495,"X":419,"Y":350,"Continent":"K34","Bonus":5,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224572Z"},{"ID":29332,"Name":"119...centr","Points":8089,"X":459,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224574Z"},{"ID":29333,"Name":"B 037","Points":8660,"X":663,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224575Z"},{"ID":29334,"Name":"*135*","Points":10211,"X":353,"Y":413,"Continent":"K43","Bonus":2,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224577Z"},{"ID":29335,"Name":"1.14","Points":3251,"X":335,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224578Z"},{"ID":29336,"Name":"Szlachcic/Taran","Points":10237,"X":636,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22458Z"},{"ID":29337,"Name":"A-041","Points":10375,"X":402,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224581Z"},{"ID":29338,"Name":"Chekku - meito","Points":10311,"X":331,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224584Z"},{"ID":29339,"Name":"--buffalo chip","Points":9114,"X":624,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224585Z"},{"ID":29340,"Name":"022. Madzikostwo Wielkie","Points":10116,"X":510,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224587Z"},{"ID":29341,"Name":"0271","Points":10160,"X":543,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224588Z"},{"ID":29342,"Name":"xxx #013#TerrorMachine x Miniqo","Points":11130,"X":586,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22459Z"},{"ID":29343,"Name":"014","Points":9761,"X":600,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224591Z"},{"ID":29344,"Name":"[B]_[011] Dejv.oldplyr","Points":10636,"X":428,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224592Z"},{"ID":29345,"Name":"002 Maribour","Points":10521,"X":459,"Y":660,"Continent":"K64","Bonus":8,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224595Z"},{"ID":29346,"Name":"3.02","Points":6957,"X":344,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224597Z"},{"ID":29347,"Name":"19k$ Grvvyq","Points":10495,"X":654,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224598Z"},{"ID":29348,"Name":"wNatsu","Points":7233,"X":450,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224599Z"},{"ID":29349,"Name":"Wioska 119","Points":9761,"X":671,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224601Z"},{"ID":29350,"Name":"Wioska Bochun10","Points":9626,"X":331,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224602Z"},{"ID":29351,"Name":"Denger 12","Points":10311,"X":360,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224604Z"},{"ID":29352,"Name":"Parque das Nacoes","Points":7266,"X":356,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224605Z"},{"ID":29354,"Name":"Skrzypas en","Points":5033,"X":360,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224608Z"},{"ID":29355,"Name":"greeece2","Points":10164,"X":636,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224609Z"},{"ID":29356,"Name":"OrzeƂ WylądowaƂ","Points":10019,"X":463,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224611Z"},{"ID":29357,"Name":"Szulernia","Points":10173,"X":393,"Y":376,"Continent":"K33","Bonus":3,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224612Z"},{"ID":29358,"Name":"010 kocham serniczek","Points":9954,"X":502,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224614Z"},{"ID":29359,"Name":"M181_038","Points":9854,"X":345,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224615Z"},{"ID":29360,"Name":"*044","Points":9397,"X":599,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224617Z"},{"ID":29361,"Name":"Avalon","Points":8075,"X":573,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22462Z"},{"ID":29363,"Name":"Mięguszowiecki Szczyt Poƛredni","Points":5962,"X":332,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224621Z"},{"ID":29364,"Name":"Wioska barbarzyƄska","Points":6417,"X":342,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224623Z"},{"ID":29365,"Name":"Wioska barbarzyƄska","Points":10218,"X":556,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224624Z"},{"ID":29366,"Name":"E009","Points":8530,"X":661,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224625Z"},{"ID":29367,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":570,"Y":350,"Continent":"K35","Bonus":9,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224627Z"},{"ID":29368,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":523,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224628Z"},{"ID":29370,"Name":"Darma dla zawodnika","Points":10495,"X":520,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.22463Z"},{"ID":29371,"Name":"-008-","Points":2987,"X":538,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224633Z"},{"ID":29372,"Name":"Jestem Poza Kontrolą","Points":8638,"X":345,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224634Z"},{"ID":29373,"Name":"O20 Quillota","Points":10006,"X":666,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224635Z"},{"ID":29374,"Name":"Chekku - meito","Points":9756,"X":344,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.224637Z"},{"ID":29375,"Name":"Architekci PlacĂłw Boju","Points":6086,"X":340,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25655Z"},{"ID":29377,"Name":"M181_034","Points":9802,"X":348,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256551Z"},{"ID":29378,"Name":"002","Points":9721,"X":667,"Y":489,"Continent":"K46","Bonus":4,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256552Z"},{"ID":29381,"Name":"025 Rzym","Points":7396,"X":383,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256552Z"},{"ID":29383,"Name":"Wioska barbarzyƄska","Points":6044,"X":381,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256553Z"},{"ID":29385,"Name":"Chekku - meito","Points":9976,"X":332,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256554Z"},{"ID":29386,"Name":"mys","Points":9792,"X":571,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256555Z"},{"ID":29387,"Name":"Chekku - meito","Points":9976,"X":333,"Y":538,"Continent":"K53","Bonus":9,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256556Z"},{"ID":29389,"Name":"-0010-","Points":7990,"X":540,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256556Z"},{"ID":29390,"Name":"Lord Lord Franek .#124","Points":9747,"X":512,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256557Z"},{"ID":29391,"Name":"G01","Points":5433,"X":347,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256558Z"},{"ID":29392,"Name":"[B]_[042] Dejv.oldplyr","Points":10495,"X":423,"Y":350,"Continent":"K34","Bonus":6,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256559Z"},{"ID":29393,"Name":"Wioska 008","Points":8840,"X":381,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25656Z"},{"ID":29394,"Name":"011 nazwa","Points":10019,"X":364,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25656Z"},{"ID":29395,"Name":"I038 Kaszanka na zimno","Points":10202,"X":658,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256561Z"},{"ID":29396,"Name":"C0138","Points":10362,"X":330,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256562Z"},{"ID":29398,"Name":"=062= Wioska barbarzyƄska","Points":8326,"X":645,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256563Z"},{"ID":29399,"Name":"0360","Points":7512,"X":551,"Y":663,"Continent":"K65","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256563Z"},{"ID":29400,"Name":"001","Points":9747,"X":336,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256564Z"},{"ID":29401,"Name":"053","Points":9602,"X":665,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256565Z"},{"ID":29402,"Name":"A06","Points":9968,"X":476,"Y":666,"Continent":"K64","Bonus":6,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256566Z"},{"ID":29403,"Name":"Wioska Pigula1983","Points":5589,"X":445,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699828338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256567Z"},{"ID":29404,"Name":"KAMIONKA 1","Points":3091,"X":349,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":7318949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256567Z"},{"ID":29405,"Name":"Bagienko.Anker...","Points":2764,"X":373,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256568Z"},{"ID":29408,"Name":"006","Points":2069,"X":547,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849087786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256569Z"},{"ID":29410,"Name":"Ceres","Points":3321,"X":548,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25657Z"},{"ID":29412,"Name":"## Nieznana ##","Points":7957,"X":627,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25657Z"},{"ID":29413,"Name":"Chekku - meito","Points":9976,"X":339,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256571Z"},{"ID":29414,"Name":"Rodziny się nie wybiera","Points":6556,"X":337,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256572Z"},{"ID":29415,"Name":"Forza 06","Points":9438,"X":433,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256573Z"},{"ID":29416,"Name":"Chekku - meito","Points":9976,"X":332,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256573Z"},{"ID":29417,"Name":"Szarak ?","Points":9213,"X":336,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256574Z"},{"ID":29418,"Name":"054- Mroczna Osada","Points":12154,"X":629,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256575Z"},{"ID":29419,"Name":"10 - Wioska","Points":10495,"X":373,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256576Z"},{"ID":29420,"Name":"Wioska barbarzyƄska","Points":10221,"X":554,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256577Z"},{"ID":29421,"Name":"007","Points":9172,"X":482,"Y":667,"Continent":"K64","Bonus":6,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256577Z"},{"ID":29422,"Name":"0298","Points":9663,"X":569,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256578Z"},{"ID":29423,"Name":"23k$ Grvvyq","Points":10495,"X":650,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256579Z"},{"ID":29424,"Name":"-0002-","Points":9761,"X":542,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25658Z"},{"ID":29425,"Name":"Wioska klez 006","Points":7425,"X":330,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25658Z"},{"ID":29426,"Name":"04 tonieostatnieslowo","Points":10160,"X":605,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256581Z"},{"ID":29427,"Name":"Wioska barbarzyƄska","Points":10218,"X":553,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256582Z"},{"ID":29428,"Name":"006","Points":10273,"X":592,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256583Z"},{"ID":29429,"Name":"*136*","Points":9968,"X":357,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256584Z"},{"ID":29430,"Name":"B 014","Points":10083,"X":667,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256584Z"},{"ID":29431,"Name":"Lord Lord Franek .#125","Points":9992,"X":508,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256585Z"},{"ID":29432,"Name":"Jaaa","Points":10476,"X":669,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256586Z"},{"ID":29433,"Name":"Architekci PlacĂłw Boju","Points":5373,"X":339,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256587Z"},{"ID":29434,"Name":"Baixa","Points":9899,"X":349,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256587Z"},{"ID":29435,"Name":"032 - Mroczna Osada","Points":9126,"X":644,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256588Z"},{"ID":29436,"Name":"O48 Bovec","Points":9718,"X":663,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256589Z"},{"ID":29437,"Name":"I015","Points":10144,"X":665,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25659Z"},{"ID":29438,"Name":"Szlachcic/Taran","Points":9566,"X":625,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256591Z"},{"ID":29439,"Name":"109","Points":7914,"X":656,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256591Z"},{"ID":29440,"Name":"A015 Barba 2","Points":9037,"X":666,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256592Z"},{"ID":29441,"Name":"cc Wioska pqqqqqqqqqqqqqqq","Points":5983,"X":390,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256593Z"},{"ID":29442,"Name":"093","Points":10495,"X":620,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256594Z"},{"ID":29443,"Name":"WesoƂych ƚwiąt","Points":8891,"X":579,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256595Z"},{"ID":29444,"Name":"Piorunek1996","Points":9160,"X":572,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256595Z"},{"ID":29445,"Name":"Pobozowisko","Points":4870,"X":368,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256596Z"},{"ID":29446,"Name":"cc Walercia","Points":8046,"X":391,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256597Z"},{"ID":29447,"Name":"Wioska Bochun10","Points":10311,"X":334,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256598Z"},{"ID":29448,"Name":"Zeta Reticuli W","Points":8933,"X":363,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256599Z"},{"ID":29449,"Name":"006","Points":9076,"X":605,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256599Z"},{"ID":29450,"Name":"Ave Why!","Points":5747,"X":497,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2566Z"},{"ID":29451,"Name":"Wyspa 012","Points":10273,"X":619,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256601Z"},{"ID":29452,"Name":"0003","Points":12154,"X":626,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256602Z"},{"ID":29453,"Name":"Taka005","Points":9542,"X":477,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256602Z"},{"ID":29454,"Name":"045","Points":10495,"X":628,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256603Z"},{"ID":29455,"Name":"I016 Gwiezdny Patrol","Points":10149,"X":662,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256604Z"},{"ID":29458,"Name":"51k$ Grvvyq","Points":9728,"X":654,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256605Z"},{"ID":29459,"Name":".:017:. kr","Points":9653,"X":629,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256606Z"},{"ID":29460,"Name":"wHappy","Points":5649,"X":446,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256607Z"},{"ID":29461,"Name":"--Silver Haze","Points":10273,"X":625,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256607Z"},{"ID":29462,"Name":"Wioska barbarzyƄska","Points":9604,"X":387,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256608Z"},{"ID":29463,"Name":"Nowy ƛwiat 4","Points":6292,"X":349,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256609Z"},{"ID":29464,"Name":"I029","Points":10190,"X":658,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25661Z"},{"ID":29465,"Name":"Wioska barbarzyƄska","Points":6707,"X":646,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25661Z"},{"ID":29466,"Name":"kto ananasowy pod wodą ma dom","Points":10140,"X":662,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256611Z"},{"ID":29467,"Name":"Wioska tomiwet","Points":7672,"X":544,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256612Z"},{"ID":29468,"Name":"*Null nic nie znaczy...","Points":9761,"X":580,"Y":647,"Continent":"K65","Bonus":3,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256612Z"},{"ID":29469,"Name":"046","Points":10453,"X":669,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256613Z"},{"ID":29470,"Name":"020 barbarzyƄska","Points":10301,"X":645,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256614Z"},{"ID":29472,"Name":"WesoƂych ƚwiąt","Points":7395,"X":582,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256615Z"},{"ID":29473,"Name":"Wioska barbarzyƄska","Points":10221,"X":553,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256616Z"},{"ID":29474,"Name":"#0041 GL01N","Points":10178,"X":469,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256616Z"},{"ID":29475,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":465,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256617Z"},{"ID":29476,"Name":"Zeta Reticuli W","Points":6604,"X":367,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256618Z"},{"ID":29477,"Name":"016 Szachy - WieĆŒa","Points":8986,"X":367,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256619Z"},{"ID":29479,"Name":"Wioska barbarzyƄska","Points":7293,"X":664,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256619Z"},{"ID":29480,"Name":"DW2","Points":10178,"X":342,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25662Z"},{"ID":29481,"Name":"ADEN","Points":10064,"X":574,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256621Z"},{"ID":29482,"Name":"101...tomecz","Points":10221,"X":482,"Y":335,"Continent":"K34","Bonus":7,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256622Z"},{"ID":29483,"Name":"Taurogi","Points":9835,"X":574,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256623Z"},{"ID":29484,"Name":"026","Points":7627,"X":603,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256623Z"},{"ID":29485,"Name":"0094","Points":4101,"X":418,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256624Z"},{"ID":29486,"Name":"0417","Points":10019,"X":552,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256625Z"},{"ID":29487,"Name":"Wioska barbarzyƄska","Points":8166,"X":402,"Y":359,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256626Z"},{"ID":29489,"Name":"WesoƂych ƚwiąt","Points":7448,"X":583,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256626Z"},{"ID":29491,"Name":"0016 centurm","Points":9397,"X":390,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256627Z"},{"ID":29492,"Name":"035...PÓƁNOC VIS","Points":10495,"X":462,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256628Z"},{"ID":29493,"Name":"047","Points":8863,"X":563,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256629Z"},{"ID":29494,"Name":"017 Kto mnie ten zƂom zapƂaci?","Points":10141,"X":385,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25663Z"},{"ID":29495,"Name":"Wioska barbarzyƄska","Points":6396,"X":624,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25663Z"},{"ID":29496,"Name":"0034","Points":9489,"X":415,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256631Z"},{"ID":29497,"Name":"Zeta Reticuli W","Points":8275,"X":364,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256632Z"},{"ID":29498,"Name":"|006| Gramvousa","Points":10061,"X":493,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256633Z"},{"ID":29499,"Name":"Chekku - meito","Points":9976,"X":332,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256633Z"},{"ID":29500,"Name":"Lord Lord Franek .#110","Points":10538,"X":511,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256634Z"},{"ID":29501,"Name":"#Sk_016","Points":3462,"X":436,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256635Z"},{"ID":29502,"Name":"Dajanka 31","Points":608,"X":349,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256636Z"},{"ID":29503,"Name":"014 Anchor","Points":7565,"X":464,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256636Z"},{"ID":29504,"Name":"Co to byƂo","Points":6221,"X":598,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256637Z"},{"ID":29505,"Name":"104. Wyspy PrzybrzeĆŒne","Points":8788,"X":634,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256638Z"},{"ID":29506,"Name":"Jestem Poza Kontrolą","Points":9515,"X":345,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256639Z"},{"ID":29507,"Name":"Szlachcic/Taran","Points":10237,"X":615,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256639Z"},{"ID":29508,"Name":"Sony 911","Points":10208,"X":588,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25664Z"},{"ID":29509,"Name":"Darmowe przeprowadzki","Points":8491,"X":439,"Y":659,"Continent":"K64","Bonus":3,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256641Z"},{"ID":29510,"Name":"0518","Points":10160,"X":521,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256642Z"},{"ID":29511,"Name":"027 serniczek z bezą","Points":9802,"X":507,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256643Z"},{"ID":29512,"Name":"Wioska Bochun10","Points":10311,"X":335,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256643Z"},{"ID":29513,"Name":"O19 Iquique","Points":10544,"X":666,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256644Z"},{"ID":29514,"Name":"045.","Points":9835,"X":389,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256645Z"},{"ID":29515,"Name":"0519","Points":8270,"X":533,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256646Z"},{"ID":29516,"Name":"Wioska ba3","Points":7703,"X":498,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256646Z"},{"ID":29517,"Name":"SPOCENI KUZYNI","Points":5712,"X":416,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256647Z"},{"ID":29518,"Name":"082","Points":9761,"X":659,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256648Z"},{"ID":29519,"Name":"ADEN","Points":9979,"X":575,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256649Z"},{"ID":29520,"Name":"217...barba","Points":8180,"X":461,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256649Z"},{"ID":29521,"Name":"Wioska Bochun10","Points":6894,"X":330,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25665Z"},{"ID":29522,"Name":"Ave Why!","Points":9235,"X":498,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256651Z"},{"ID":29523,"Name":"B.05","Points":7282,"X":667,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256652Z"},{"ID":29524,"Name":"Wioska barbarzyƄska","Points":8151,"X":349,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256652Z"},{"ID":29525,"Name":"103. Szczyty KsiÄ…ĆŒÄ™ce","Points":7647,"X":644,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256653Z"},{"ID":29526,"Name":"SPOCENI KUZYNI","Points":3168,"X":421,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256654Z"},{"ID":29527,"Name":"025","Points":9993,"X":524,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256655Z"},{"ID":29528,"Name":"015","Points":10019,"X":456,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256656Z"},{"ID":29529,"Name":"Lord Lord Franek .#167","Points":10160,"X":510,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256656Z"},{"ID":29530,"Name":"Yankee","Points":10001,"X":670,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256657Z"},{"ID":29532,"Name":"Wioska barbarzyƄska","Points":1747,"X":416,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256658Z"},{"ID":29533,"Name":"121","Points":10220,"X":472,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256659Z"},{"ID":29534,"Name":"Rzym","Points":10160,"X":585,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256659Z"},{"ID":29535,"Name":"kto ananasowy pod wodą ma dom","Points":8226,"X":669,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25666Z"},{"ID":29536,"Name":"Wioska barbarzyƄska","Points":2960,"X":384,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256661Z"},{"ID":29537,"Name":"A02","Points":10019,"X":471,"Y":667,"Continent":"K64","Bonus":2,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256662Z"},{"ID":29538,"Name":"PiekƂo to inni","Points":10160,"X":577,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256663Z"},{"ID":29539,"Name":"D02 A jednak udaƂo się .","Points":10160,"X":459,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256664Z"},{"ID":29541,"Name":"Wioska barbarzyƄska","Points":10728,"X":671,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256665Z"},{"ID":29542,"Name":"**20**","Points":10154,"X":630,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256666Z"},{"ID":29543,"Name":"Lord Lord Franek .#126","Points":10143,"X":517,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256667Z"},{"ID":29544,"Name":"048 front","Points":10019,"X":601,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256667Z"},{"ID":29545,"Name":"Wioska barbarzyƄska","Points":2617,"X":652,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256668Z"},{"ID":29546,"Name":"WesoƂych ƚwiąt","Points":10066,"X":572,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256669Z"},{"ID":29547,"Name":"Wioska Mayweather 7","Points":10301,"X":597,"Y":640,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25667Z"},{"ID":29548,"Name":"008","Points":10019,"X":602,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25667Z"},{"ID":29549,"Name":"Chekku - meito","Points":9976,"X":331,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256671Z"},{"ID":29550,"Name":"Ave Why!","Points":6175,"X":496,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256672Z"},{"ID":29551,"Name":"Pobozowisko","Points":11130,"X":380,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256673Z"},{"ID":29552,"Name":"**30**","Points":9350,"X":661,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256673Z"},{"ID":29553,"Name":"troja","Points":7240,"X":562,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256674Z"},{"ID":29554,"Name":"Valhalla A9","Points":2664,"X":369,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":849097002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256675Z"},{"ID":29555,"Name":"Wioska barbarzyƄska","Points":6350,"X":516,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256676Z"},{"ID":29556,"Name":"Orle","Points":7846,"X":655,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256677Z"},{"ID":29557,"Name":"I041","Points":10049,"X":659,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256677Z"},{"ID":29558,"Name":"OrzeƂ WylądowaƂ","Points":8406,"X":461,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256678Z"},{"ID":29559,"Name":"Wioska barbarzyƄska","Points":10028,"X":667,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256679Z"},{"ID":29560,"Name":"berkuza 2","Points":8869,"X":588,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25668Z"},{"ID":29561,"Name":"A26","Points":1786,"X":470,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25668Z"},{"ID":29562,"Name":"The Game Has Only Just Begun","Points":9976,"X":354,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256681Z"},{"ID":29565,"Name":"Wioska barbarzyƄska","Points":5661,"X":539,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256682Z"},{"ID":29566,"Name":"Plutosea 026","Points":10143,"X":330,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256683Z"},{"ID":29567,"Name":"0279","Points":10160,"X":547,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256684Z"},{"ID":29568,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":335,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256684Z"},{"ID":29569,"Name":"157 Nocny Jastrząb 002","Points":8443,"X":643,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256685Z"},{"ID":29570,"Name":"Wioska Bochun10","Points":10311,"X":332,"Y":475,"Continent":"K43","Bonus":6,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256686Z"},{"ID":29571,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10019,"X":380,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256687Z"},{"ID":29572,"Name":"79.","Points":7066,"X":632,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256687Z"},{"ID":29573,"Name":".achim.","Points":9691,"X":490,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256688Z"},{"ID":29574,"Name":"Lord Lord Franek .#079","Points":10144,"X":530,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256689Z"},{"ID":29576,"Name":"#101 C","Points":10311,"X":531,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25669Z"},{"ID":29577,"Name":"tylna","Points":10140,"X":627,"Y":614,"Continent":"K66","Bonus":8,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25669Z"},{"ID":29578,"Name":"$8.000 Grvvyq","Points":10495,"X":658,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256691Z"},{"ID":29579,"Name":"1.011","Points":9018,"X":338,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256692Z"},{"ID":29580,"Name":"Chekku - meito","Points":9976,"X":329,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256693Z"},{"ID":29581,"Name":".:003:.","Points":10971,"X":373,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256693Z"},{"ID":29583,"Name":"B 031","Points":8406,"X":667,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256694Z"},{"ID":29584,"Name":"VADER","Points":7157,"X":655,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":699845400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256695Z"},{"ID":29585,"Name":"057...barbarka","Points":9616,"X":451,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256696Z"},{"ID":29586,"Name":"WesoƂych ƚwiąt","Points":6344,"X":596,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256696Z"},{"ID":29587,"Name":"Chekku - meito","Points":9976,"X":333,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256697Z"},{"ID":29588,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":340,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256698Z"},{"ID":29589,"Name":"Wioska barbarzyƄska","Points":6369,"X":497,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256699Z"},{"ID":29590,"Name":"Wioska Bochun10","Points":5627,"X":331,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256699Z"},{"ID":29591,"Name":"003.Bordeaux","Points":9718,"X":332,"Y":501,"Continent":"K53","Bonus":2,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2567Z"},{"ID":29592,"Name":"Bagdad","Points":10068,"X":493,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256701Z"},{"ID":29593,"Name":"D 020","Points":10495,"X":671,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256702Z"},{"ID":29594,"Name":"I042","Points":9905,"X":657,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256703Z"},{"ID":29595,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":328,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256703Z"},{"ID":29596,"Name":"07. DMN","Points":9711,"X":651,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256704Z"},{"ID":29597,"Name":"*143*","Points":10211,"X":357,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256705Z"},{"ID":29598,"Name":"[B][03] Avondale","Points":8792,"X":429,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699380621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256706Z"},{"ID":29599,"Name":"sony911","Points":10050,"X":589,"Y":639,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256706Z"},{"ID":29600,"Name":"Deveste ufam Tobie","Points":10000,"X":399,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256707Z"},{"ID":29602,"Name":"--Deadwood","Points":10178,"X":622,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256708Z"},{"ID":29603,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":568,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256708Z"},{"ID":29604,"Name":"WesoƂych ƚwiąt","Points":9938,"X":581,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256709Z"},{"ID":29605,"Name":"Wioska barbarzyƄska","Points":8986,"X":441,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25671Z"},{"ID":29607,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":658,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256711Z"},{"ID":29608,"Name":"0537","Points":6020,"X":562,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256711Z"},{"ID":29609,"Name":"PiekƂo to inni","Points":10083,"X":581,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256712Z"},{"ID":29610,"Name":"Francuzik","Points":2019,"X":337,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256713Z"},{"ID":29611,"Name":"Psycha Siada","Points":10252,"X":457,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256714Z"},{"ID":29612,"Name":"Gattacka","Points":9451,"X":620,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256714Z"},{"ID":29613,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":392,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256715Z"},{"ID":29614,"Name":"010","Points":5982,"X":336,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256716Z"},{"ID":29615,"Name":"015 Szachy - KrĂłl","Points":9835,"X":364,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256717Z"},{"ID":29616,"Name":"Sony 911","Points":10214,"X":583,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256717Z"},{"ID":29618,"Name":"BETON 053","Points":7105,"X":623,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256718Z"},{"ID":29619,"Name":"Lord Lord Franek .#080","Points":9956,"X":532,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256719Z"},{"ID":29620,"Name":"Szlachcic;taran!","Points":10178,"X":635,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25672Z"},{"ID":29621,"Name":"psycha sitting","Points":7010,"X":441,"Y":657,"Continent":"K64","Bonus":5,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25672Z"},{"ID":29623,"Name":"Szarlatan","Points":4909,"X":389,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":606706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256721Z"},{"ID":29624,"Name":"0570","Points":10019,"X":565,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256722Z"},{"ID":29625,"Name":"Cyk","Points":5836,"X":341,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256723Z"},{"ID":29626,"Name":"V002","Points":7281,"X":350,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256723Z"},{"ID":29627,"Name":"110...tomcz","Points":10223,"X":482,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256724Z"},{"ID":29628,"Name":"026.","Points":9835,"X":612,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256725Z"},{"ID":29629,"Name":"Jaaa","Points":10484,"X":670,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256726Z"},{"ID":29630,"Name":"0140","Points":10083,"X":536,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256726Z"},{"ID":29631,"Name":"025 VW Wioska barbarzyƄska","Points":3832,"X":362,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256727Z"},{"ID":29632,"Name":"Deff robi brrr","Points":9735,"X":348,"Y":573,"Continent":"K53","Bonus":4,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256728Z"},{"ID":29633,"Name":"Wioska Yator11","Points":12154,"X":616,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256729Z"},{"ID":29634,"Name":"Jednak wolę gofry","Points":4089,"X":434,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256729Z"},{"ID":29635,"Name":"0520","Points":9747,"X":531,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25673Z"},{"ID":29636,"Name":"106. Wyspy KoƄca","Points":8139,"X":644,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256731Z"},{"ID":29637,"Name":"psycha sitting","Points":9976,"X":423,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256732Z"},{"ID":29638,"Name":"Architekci PlacĂłw Boju","Points":3963,"X":340,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256732Z"},{"ID":29639,"Name":"Dąbrowa 0022","Points":3250,"X":355,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256733Z"},{"ID":29640,"Name":"Nowy ƛwiat 5","Points":5258,"X":343,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256734Z"},{"ID":29641,"Name":"Nowy ƛwiat","Points":10178,"X":345,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256735Z"},{"ID":29642,"Name":"Szlachcic","Points":10322,"X":391,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256735Z"},{"ID":29643,"Name":"WB 08","Points":8316,"X":635,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256736Z"},{"ID":29644,"Name":"Jehu_Kingdom_62","Points":5577,"X":651,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256737Z"},{"ID":29645,"Name":"Master Od Puppets","Points":4484,"X":633,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256738Z"},{"ID":29646,"Name":"Oeste cuatro","Points":4797,"X":383,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":698916948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256738Z"},{"ID":29647,"Name":"-006-","Points":4688,"X":537,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256739Z"},{"ID":29648,"Name":"Wioska barbarzyƄska","Points":10728,"X":670,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25674Z"},{"ID":29649,"Name":"M181_002","Points":9902,"X":344,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256741Z"},{"ID":29650,"Name":"Myk i do kieszonki","Points":9799,"X":347,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256741Z"},{"ID":29651,"Name":"Piwna 24","Points":4549,"X":653,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256742Z"},{"ID":29652,"Name":"033 - Mroczna Osada","Points":8815,"X":645,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256743Z"},{"ID":29653,"Name":"I#012","Points":9797,"X":613,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256744Z"},{"ID":29654,"Name":"Chekku - meito","Points":9976,"X":337,"Y":525,"Continent":"K53","Bonus":1,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256744Z"},{"ID":29655,"Name":"Rowerowo","Points":9966,"X":361,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256745Z"},{"ID":29656,"Name":"Jaaa","Points":8830,"X":666,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256746Z"},{"ID":29657,"Name":"Wioska barbarzyƄska Kr","Points":3915,"X":368,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256747Z"},{"ID":29658,"Name":"Wioska klez 002","Points":9637,"X":330,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256747Z"},{"ID":29659,"Name":"deff 100 %","Points":9240,"X":345,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256748Z"},{"ID":29660,"Name":"K44 x038","Points":6446,"X":465,"Y":400,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256749Z"},{"ID":29661,"Name":"Wyspa 018","Points":6926,"X":620,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256749Z"},{"ID":29662,"Name":"0149","Points":10160,"X":541,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25675Z"},{"ID":29663,"Name":".:010:.","Points":10005,"X":374,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256751Z"},{"ID":29664,"Name":"0363","Points":9382,"X":552,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256752Z"},{"ID":29665,"Name":"030","Points":10160,"X":625,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256752Z"},{"ID":29666,"Name":"Ave Why!","Points":9809,"X":482,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256753Z"},{"ID":29667,"Name":"Wioska Bochun10","Points":7513,"X":334,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256754Z"},{"ID":29668,"Name":"0286","Points":9203,"X":552,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256755Z"},{"ID":29669,"Name":"085","Points":5818,"X":667,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256755Z"},{"ID":29670,"Name":"deff 100 %","Points":10254,"X":344,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256756Z"},{"ID":29671,"Name":"Pobozowisko","Points":12154,"X":378,"Y":614,"Continent":"K63","Bonus":2,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256757Z"},{"ID":29672,"Name":"Grvvyq 112k$","Points":9711,"X":633,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256758Z"},{"ID":29673,"Name":"Wioska Bochun10","Points":10311,"X":332,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256758Z"},{"ID":29674,"Name":"Esfarajen","Points":5212,"X":431,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256759Z"},{"ID":29675,"Name":"Szulernia","Points":3425,"X":385,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25676Z"},{"ID":29676,"Name":"SOKzGUMIjagĂłd","Points":8312,"X":652,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25676Z"},{"ID":29677,"Name":"Wioska Bochun10","Points":6965,"X":330,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256761Z"},{"ID":29678,"Name":"001","Points":8000,"X":663,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256762Z"},{"ID":29679,"Name":"Myk i do kieszonki","Points":9799,"X":351,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256763Z"},{"ID":29680,"Name":"*006","Points":9031,"X":594,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256763Z"},{"ID":29681,"Name":"014RozwĂłd","Points":9761,"X":433,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256764Z"},{"ID":29682,"Name":"B 008","Points":10019,"X":666,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256765Z"},{"ID":29683,"Name":"Wioska barbarzyƄska","Points":9883,"X":558,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256766Z"},{"ID":29684,"Name":"019","Points":2927,"X":434,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699246032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256766Z"},{"ID":29685,"Name":"Wioska Bochun10","Points":6994,"X":335,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256767Z"},{"ID":29686,"Name":"~005~","Points":7422,"X":356,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256768Z"},{"ID":29687,"Name":"OrzeƂ WylądowaƂ","Points":7107,"X":459,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256769Z"},{"ID":29688,"Name":"0007","Points":5285,"X":624,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256769Z"},{"ID":29689,"Name":"Wioska Bochun10","Points":10300,"X":333,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25677Z"},{"ID":29692,"Name":"Taran","Points":10728,"X":672,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256771Z"},{"ID":29693,"Name":"AAA","Points":9398,"X":531,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256772Z"},{"ID":29694,"Name":"|C| Lagoonwatch","Points":10636,"X":510,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256772Z"},{"ID":29696,"Name":"Jehu_Kingdom_54","Points":5539,"X":659,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256773Z"},{"ID":29697,"Name":"Taran 005","Points":10947,"X":615,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256774Z"},{"ID":29698,"Name":"KrĂłlestwo","Points":7598,"X":645,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256775Z"},{"ID":29699,"Name":"#106#","Points":9761,"X":636,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256775Z"},{"ID":29700,"Name":"048","Points":9735,"X":666,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256776Z"},{"ID":29701,"Name":"002 Rasiak","Points":10019,"X":453,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256777Z"},{"ID":29702,"Name":"081 komornicy","Points":2720,"X":340,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256777Z"},{"ID":29703,"Name":"034.","Points":10522,"X":638,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256778Z"},{"ID":29704,"Name":"011 Kabelki to jest ĆŒycie...","Points":9868,"X":384,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256779Z"},{"ID":29705,"Name":"Wioska barbarzyƄska","Points":2533,"X":611,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":310729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25678Z"},{"ID":29706,"Name":"---009","Points":10199,"X":374,"Y":611,"Continent":"K63","Bonus":9,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25678Z"},{"ID":29707,"Name":"S AKUKU","Points":9759,"X":596,"Y":361,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256781Z"},{"ID":29708,"Name":"Wioska barbarzyƄska","Points":10728,"X":664,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256782Z"},{"ID":29709,"Name":"011 Aedd Gynvael","Points":6174,"X":465,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256783Z"},{"ID":29710,"Name":"ADEN","Points":6516,"X":595,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256783Z"},{"ID":29711,"Name":"A27","Points":9504,"X":477,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256784Z"},{"ID":29712,"Name":"xqq","Points":5421,"X":656,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699845400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256785Z"},{"ID":29713,"Name":"016 - Mroczna Osada","Points":11807,"X":643,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256786Z"},{"ID":29714,"Name":"PiekƂo to inni","Points":10160,"X":563,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256786Z"},{"ID":29715,"Name":"Psycha Siada","Points":10252,"X":451,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256787Z"},{"ID":29716,"Name":"013","Points":9746,"X":667,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256788Z"},{"ID":29717,"Name":"006 Polibuda","Points":9835,"X":390,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256788Z"},{"ID":29718,"Name":"RADOM","Points":6757,"X":339,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256789Z"},{"ID":29719,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":390,"Y":630,"Continent":"K63","Bonus":1,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25679Z"},{"ID":29720,"Name":"016 Tyranus2","Points":9553,"X":671,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256791Z"},{"ID":29721,"Name":"45. KaruTown","Points":5057,"X":641,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256791Z"},{"ID":29722,"Name":"Taran","Points":10728,"X":665,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256792Z"},{"ID":29723,"Name":"03Wioska barbarzyƄska","Points":8679,"X":387,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256793Z"},{"ID":29724,"Name":"0521","Points":10495,"X":537,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256794Z"},{"ID":29725,"Name":"Sony 911","Points":10220,"X":643,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256794Z"},{"ID":29727,"Name":"Szulernia","Points":6739,"X":382,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256795Z"},{"ID":29728,"Name":"AZBUD","Points":9254,"X":331,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256796Z"},{"ID":29729,"Name":"[B]_[016] Dejv.oldplyr","Points":10326,"X":429,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256796Z"},{"ID":29730,"Name":"wiosna","Points":653,"X":660,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":849097445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256797Z"},{"ID":29731,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":338,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256798Z"},{"ID":29732,"Name":"0522","Points":10160,"X":525,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256799Z"},{"ID":29733,"Name":"E006","Points":5999,"X":659,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2568Z"},{"ID":29734,"Name":"WesoƂych ƚwiąt","Points":10160,"X":581,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256801Z"},{"ID":29735,"Name":"095...TOMECZEK","Points":10226,"X":477,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256801Z"},{"ID":29736,"Name":"I017","Points":10001,"X":658,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256802Z"},{"ID":29737,"Name":"0011","Points":9955,"X":626,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256803Z"},{"ID":29738,"Name":"pa tera","Points":10252,"X":463,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256804Z"},{"ID":29739,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":393,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256805Z"},{"ID":29740,"Name":"Ave Why!","Points":4847,"X":496,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256805Z"},{"ID":29741,"Name":"#0076 barbarzyƄska","Points":9625,"X":474,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256806Z"},{"ID":29742,"Name":"!!35 59 xxx","Points":10267,"X":596,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256807Z"},{"ID":29743,"Name":"227...barba","Points":5851,"X":460,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256807Z"},{"ID":29745,"Name":"Szlachcic/Taran","Points":10237,"X":611,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256808Z"},{"ID":29746,"Name":"Ć»UBR .::.B.E.T.O.N /7","Points":9903,"X":627,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256809Z"},{"ID":29747,"Name":"--sturgis","Points":9563,"X":621,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25681Z"},{"ID":29748,"Name":"Wioska barbarzyƄska","Points":6626,"X":428,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25681Z"},{"ID":29749,"Name":"2 barba *","Points":10109,"X":581,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256811Z"},{"ID":29750,"Name":"Chop Suey","Points":5730,"X":641,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256812Z"},{"ID":29751,"Name":"tego nie","Points":10229,"X":519,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256813Z"},{"ID":29752,"Name":"Sony 911","Points":10270,"X":586,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256813Z"},{"ID":29753,"Name":"wkonfitura groo xdd","Points":6615,"X":654,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699845400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256814Z"},{"ID":29754,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":338,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256815Z"},{"ID":29755,"Name":"039","Points":8104,"X":534,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256815Z"},{"ID":29756,"Name":"B.07","Points":9366,"X":667,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256816Z"},{"ID":29757,"Name":"Wioska barbarzyƄska","Points":7363,"X":396,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256817Z"},{"ID":29758,"Name":"deff 100 %","Points":9711,"X":346,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256818Z"},{"ID":29759,"Name":"Wioska odyn123","Points":8420,"X":633,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848993505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256819Z"},{"ID":29760,"Name":"Gromkowie 4","Points":5663,"X":370,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256819Z"},{"ID":29761,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":396,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25682Z"},{"ID":29762,"Name":"1barba","Points":10252,"X":585,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256821Z"},{"ID":29763,"Name":"Mniejsze zƂo 0081","Points":5590,"X":333,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256822Z"},{"ID":29764,"Name":"BETON 038","Points":8296,"X":628,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256822Z"},{"ID":29765,"Name":"-004-","Points":9768,"X":335,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256823Z"},{"ID":29766,"Name":"005","Points":7844,"X":636,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256824Z"},{"ID":29767,"Name":"0265","Points":10083,"X":545,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256825Z"},{"ID":29768,"Name":"WesoƂych ƚwiąt","Points":10030,"X":590,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256825Z"},{"ID":29769,"Name":"K34 x028","Points":6596,"X":408,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256826Z"},{"ID":29770,"Name":"*INTERTWINED*","Points":9711,"X":510,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256827Z"},{"ID":29771,"Name":"Wioska barbarzyƄska","Points":10495,"X":504,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256828Z"},{"ID":29772,"Name":"Chekku - meito","Points":9976,"X":337,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256828Z"},{"ID":29773,"Name":"A011 Jospe 2","Points":10140,"X":663,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256829Z"},{"ID":29774,"Name":"Pobozowisko","Points":9284,"X":378,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25683Z"},{"ID":29775,"Name":"Westfold.014","Points":9276,"X":348,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256831Z"},{"ID":29776,"Name":"Myk i do kieszonki","Points":10311,"X":348,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256831Z"},{"ID":29777,"Name":"FanBednar","Points":3137,"X":588,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":849034666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256832Z"},{"ID":29778,"Name":"38k$ Grvvyq","Points":9736,"X":648,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256833Z"},{"ID":29779,"Name":"kto ananasowy pod wodą ma dom","Points":8370,"X":668,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256834Z"},{"ID":29780,"Name":"Lord Lord Franek .#168","Points":9868,"X":505,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256834Z"},{"ID":29781,"Name":"0534","Points":8930,"X":561,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256835Z"},{"ID":29782,"Name":"Szulernia","Points":10288,"X":381,"Y":379,"Continent":"K33","Bonus":3,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256836Z"},{"ID":29783,"Name":"0523","Points":9750,"X":540,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256836Z"},{"ID":29784,"Name":"111. Morze Zwarte","Points":8467,"X":632,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256837Z"},{"ID":29786,"Name":"Wioska barbarzyƄska Ph","Points":3259,"X":361,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256838Z"},{"ID":29787,"Name":"Wyspa 011","Points":9587,"X":622,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256839Z"},{"ID":29788,"Name":"#009#","Points":9761,"X":626,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256839Z"},{"ID":29789,"Name":"**Sorrow","Points":9994,"X":572,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25684Z"},{"ID":29791,"Name":"034 - Mroczna Osada","Points":6929,"X":642,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256841Z"},{"ID":29792,"Name":"Wioska barbarzyƄska","Points":1880,"X":379,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256842Z"},{"ID":29793,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":392,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256842Z"},{"ID":29794,"Name":"WesoƂych ƚwiąt","Points":5891,"X":590,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256843Z"},{"ID":29795,"Name":"Wioska Bochun10","Points":10946,"X":329,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256844Z"},{"ID":29796,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":338,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256844Z"},{"ID":29797,"Name":"PiekƂo to inni","Points":10160,"X":586,"Y":357,"Continent":"K35","Bonus":5,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256845Z"},{"ID":29798,"Name":"000 Plutosea","Points":9976,"X":333,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256846Z"},{"ID":29799,"Name":"emoriar","Points":5438,"X":663,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256847Z"},{"ID":29800,"Name":"032.","Points":10795,"X":636,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256848Z"},{"ID":29801,"Name":"Wioska barbarzyƄska","Points":5177,"X":549,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256848Z"},{"ID":29802,"Name":"Wioska zomo","Points":6897,"X":498,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256849Z"},{"ID":29804,"Name":"Bagienko.Anker...","Points":4865,"X":374,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25685Z"},{"ID":29805,"Name":"Taran","Points":10728,"X":669,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256851Z"},{"ID":29806,"Name":"031","Points":10365,"X":628,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256851Z"},{"ID":29807,"Name":"0014","Points":10160,"X":542,"Y":661,"Continent":"K65","Bonus":3,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256852Z"},{"ID":29808,"Name":"#Mareleona","Points":9456,"X":437,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256853Z"},{"ID":29809,"Name":"Wioska klez 005","Points":9632,"X":328,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256854Z"},{"ID":29810,"Name":"Lord Lord Franek .#104","Points":10160,"X":523,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256854Z"},{"ID":29811,"Name":"Wioska barbarzyƄska","Points":2272,"X":381,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256855Z"},{"ID":29812,"Name":"010.Wioska wachul9","Points":9815,"X":337,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256856Z"},{"ID":29813,"Name":"022","Points":10311,"X":626,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256857Z"},{"ID":29814,"Name":"Wioska barbarzyƄska","Points":7242,"X":396,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256857Z"},{"ID":29816,"Name":"WesoƂych ƚwiąt","Points":7054,"X":587,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256858Z"},{"ID":29817,"Name":"A0280","Points":10362,"X":328,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256859Z"},{"ID":29818,"Name":"Szlachcic/Taran","Points":10237,"X":614,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256859Z"},{"ID":29820,"Name":"0237","Points":9637,"X":543,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25686Z"},{"ID":29821,"Name":"#0043 GL01N","Points":10178,"X":466,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256861Z"},{"ID":29822,"Name":"Wioska barbarzyƄska","Points":10223,"X":553,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256862Z"},{"ID":29823,"Name":"Myk i do kieszonki","Points":9799,"X":348,"Y":577,"Continent":"K53","Bonus":2,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256862Z"},{"ID":29825,"Name":"Wioska Bochun10","Points":9625,"X":330,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256863Z"},{"ID":29826,"Name":"Taki Pan","Points":5322,"X":508,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256864Z"},{"ID":29827,"Name":"0102","Points":10083,"X":543,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256865Z"},{"ID":29828,"Name":"027","Points":9877,"X":627,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256865Z"},{"ID":29829,"Name":"#Leopold","Points":7637,"X":437,"Y":662,"Continent":"K64","Bonus":5,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256866Z"},{"ID":29830,"Name":"Wioska Bochun10","Points":10365,"X":337,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256867Z"},{"ID":29831,"Name":"#0078 barbarzyƄska","Points":9982,"X":469,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256867Z"},{"ID":29832,"Name":"D05","Points":11824,"X":665,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256868Z"},{"ID":29833,"Name":"[167]","Points":6153,"X":650,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256869Z"},{"ID":29834,"Name":"North FiFa 3","Points":9744,"X":435,"Y":342,"Continent":"K34","Bonus":6,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25687Z"},{"ID":29835,"Name":"017","Points":10019,"X":465,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25687Z"},{"ID":29836,"Name":"#0102 barbarzyƄska","Points":10178,"X":461,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256871Z"},{"ID":29837,"Name":"Ć»UBRAWKA 040","Points":10257,"X":607,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256872Z"},{"ID":29838,"Name":"127...centr","Points":8583,"X":449,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256872Z"},{"ID":29839,"Name":"Wyspa 019","Points":7191,"X":624,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256873Z"},{"ID":29840,"Name":"Lord Lord Franek .#088","Points":9976,"X":517,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256874Z"},{"ID":29841,"Name":"0029","Points":9999,"X":412,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256875Z"},{"ID":29842,"Name":"Dąbrowa 0024","Points":2907,"X":354,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256875Z"},{"ID":29843,"Name":"A0287","Points":10289,"X":328,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256876Z"},{"ID":29844,"Name":"0144","Points":7298,"X":633,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256877Z"},{"ID":29845,"Name":"015 - Mroczna Osada","Points":12134,"X":644,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256877Z"},{"ID":29846,"Name":"Wioska 08","Points":5582,"X":501,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256878Z"},{"ID":29847,"Name":"[A]012","Points":4247,"X":429,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":849097175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256879Z"},{"ID":29848,"Name":"017","Points":7923,"X":599,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25688Z"},{"ID":29849,"Name":"The Game Has Only Just Begun","Points":9976,"X":347,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25688Z"},{"ID":29850,"Name":"Gra o Tron","Points":10019,"X":617,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256881Z"},{"ID":29851,"Name":"Kentin ufam Tobie","Points":11348,"X":334,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256882Z"},{"ID":29852,"Name":"Psycha Siada","Points":6542,"X":449,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256883Z"},{"ID":29853,"Name":"R 011 ~Szaikan~","Points":9911,"X":485,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256883Z"},{"ID":29854,"Name":"001","Points":9885,"X":602,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256884Z"},{"ID":29855,"Name":"WesoƂych ƚwiąt","Points":9924,"X":578,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256885Z"},{"ID":29856,"Name":"Bunkier 003","Points":7846,"X":619,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256886Z"},{"ID":29857,"Name":"Monetkownia","Points":10237,"X":618,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256886Z"},{"ID":29858,"Name":"*4623*c Cymbalowo","Points":10287,"X":653,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256887Z"},{"ID":29859,"Name":"Chekku - meito","Points":9976,"X":332,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256888Z"},{"ID":29860,"Name":"Blackhaven","Points":10019,"X":670,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256888Z"},{"ID":29861,"Name":"Taran","Points":9960,"X":343,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256889Z"},{"ID":29862,"Name":"Wioska 110","Points":8759,"X":642,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25689Z"},{"ID":29863,"Name":"B.060","Points":10005,"X":668,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256891Z"},{"ID":29864,"Name":"#Vangeance","Points":7369,"X":436,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256891Z"},{"ID":29865,"Name":"Wioska barbarzyƄska 028","Points":6292,"X":512,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256892Z"},{"ID":29866,"Name":"*152*","Points":7981,"X":353,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256893Z"},{"ID":29867,"Name":".///...//././././././././","Points":9465,"X":391,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256894Z"},{"ID":29868,"Name":"North Fifa 2","Points":9745,"X":437,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256894Z"},{"ID":29869,"Name":"Sony 911","Points":10476,"X":644,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256895Z"},{"ID":29870,"Name":"wieƛ","Points":9902,"X":346,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256896Z"},{"ID":29871,"Name":"come on","Points":10224,"X":332,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256897Z"},{"ID":29872,"Name":"043 | PALESTINA","Points":7716,"X":654,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256897Z"},{"ID":29873,"Name":"deff 100 %","Points":8913,"X":348,"Y":569,"Continent":"K53","Bonus":7,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256898Z"},{"ID":29874,"Name":"02. California","Points":9735,"X":637,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256899Z"},{"ID":29875,"Name":"SPOCENI KUZYNI","Points":2658,"X":414,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2569Z"},{"ID":29876,"Name":"#0119 tomek791103","Points":8298,"X":478,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2569Z"},{"ID":29877,"Name":"amator czysto","Points":6181,"X":558,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256901Z"},{"ID":29878,"Name":"033","Points":9843,"X":666,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256902Z"},{"ID":29879,"Name":"Wioska barbarzyƄska","Points":2614,"X":357,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256902Z"},{"ID":29880,"Name":"027 pawelk95","Points":9372,"X":666,"Y":477,"Continent":"K46","Bonus":8,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256903Z"},{"ID":29881,"Name":"A05","Points":10019,"X":472,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256904Z"},{"ID":29882,"Name":"Wioska ba11","Points":6789,"X":499,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256905Z"},{"ID":29884,"Name":"A0281","Points":10362,"X":327,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256905Z"},{"ID":29885,"Name":"0016","Points":9561,"X":625,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256906Z"},{"ID":29886,"Name":"OrzeƂ WylądowaƂ","Points":9208,"X":450,"Y":659,"Continent":"K64","Bonus":9,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256907Z"},{"ID":29887,"Name":"Knowhere","Points":10452,"X":382,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256908Z"},{"ID":29888,"Name":"AAA","Points":9417,"X":534,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256908Z"},{"ID":29889,"Name":"asd","Points":10728,"X":664,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256909Z"},{"ID":29890,"Name":"0019","Points":10252,"X":568,"Y":658,"Continent":"K65","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25691Z"},{"ID":29891,"Name":"cc BiaƂystok","Points":7875,"X":392,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256911Z"},{"ID":29892,"Name":"Wioska barbarzyƄska","Points":3523,"X":370,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256912Z"},{"ID":29893,"Name":"Dajanka 22","Points":1105,"X":354,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256912Z"},{"ID":29894,"Name":"1.5","Points":4149,"X":367,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":849095959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256913Z"},{"ID":29895,"Name":"231...CENTR","Points":5979,"X":458,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256914Z"},{"ID":29896,"Name":"J01","Points":3805,"X":363,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256915Z"},{"ID":29897,"Name":"Wioska apysia","Points":6560,"X":658,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699845400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256915Z"},{"ID":29898,"Name":"ADEN","Points":10154,"X":575,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256916Z"},{"ID":29899,"Name":"CHARFA","Points":10441,"X":514,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256917Z"},{"ID":29900,"Name":"Lord Lord Franek .#081","Points":9957,"X":528,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256917Z"},{"ID":29901,"Name":"0186","Points":10019,"X":545,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256918Z"},{"ID":29902,"Name":"216...barba","Points":5042,"X":463,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256919Z"},{"ID":29903,"Name":"Wioska barbarzyƄska","Points":2841,"X":545,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25692Z"},{"ID":29904,"Name":"K34 - [124] Before Land","Points":9783,"X":438,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25692Z"},{"ID":29905,"Name":"*130*","Points":10025,"X":369,"Y":393,"Continent":"K33","Bonus":1,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256921Z"},{"ID":29906,"Name":"! Stark Tower","Points":5303,"X":629,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256922Z"},{"ID":29907,"Name":"050- Mroczna Osada","Points":9277,"X":629,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256923Z"},{"ID":29908,"Name":"Wioska barbarzyƄska","Points":1653,"X":530,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256923Z"},{"ID":29909,"Name":".:018:.","Points":6712,"X":372,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256924Z"},{"ID":29911,"Name":"1.4","Points":5055,"X":376,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":849095959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256925Z"},{"ID":29912,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":464,"Y":665,"Continent":"K64","Bonus":4,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256926Z"},{"ID":29913,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":461,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256926Z"},{"ID":29915,"Name":"_6_","Points":2900,"X":493,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":9113064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256927Z"},{"ID":29916,"Name":"045","Points":9993,"X":521,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256928Z"},{"ID":29917,"Name":"038","Points":5683,"X":422,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256928Z"},{"ID":29918,"Name":"North Barba 042","Points":9433,"X":432,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256929Z"},{"ID":29919,"Name":"Dana Point","Points":10971,"X":615,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25693Z"},{"ID":29920,"Name":"BEZDZIETNY KAWALER","Points":6179,"X":418,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256931Z"},{"ID":29921,"Name":"V007","Points":5826,"X":352,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256931Z"},{"ID":29922,"Name":"Pobozowisko","Points":8334,"X":372,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256932Z"},{"ID":29923,"Name":"#029 A","Points":10311,"X":444,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256933Z"},{"ID":29924,"Name":"---012","Points":7503,"X":361,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256933Z"},{"ID":29926,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":636,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256934Z"},{"ID":29927,"Name":"TROJA.12","Points":7467,"X":455,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256935Z"},{"ID":29928,"Name":"Wioska barbarzyƄska","Points":2336,"X":620,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256936Z"},{"ID":29929,"Name":"mys","Points":9976,"X":570,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256936Z"},{"ID":29930,"Name":"Wioska barbarzyƄska","Points":7496,"X":451,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256937Z"},{"ID":29931,"Name":"031. Night Raid-","Points":11041,"X":476,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256938Z"},{"ID":29932,"Name":"0524","Points":10495,"X":543,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256938Z"},{"ID":29933,"Name":"Zeta Reticuli W","Points":7648,"X":362,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256939Z"},{"ID":29934,"Name":"[B]_[046] Dejv.oldplyr","Points":10495,"X":417,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25694Z"},{"ID":29935,"Name":"|C| Northreach","Points":10495,"X":506,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256941Z"},{"ID":29936,"Name":"0004 PoznaƄ","Points":9971,"X":377,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256941Z"},{"ID":29937,"Name":"054...barbarka","Points":10479,"X":449,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256942Z"},{"ID":29938,"Name":"103. Brigetio","Points":5338,"X":648,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256943Z"},{"ID":29939,"Name":"Zeta Reticuli W","Points":3956,"X":356,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256944Z"},{"ID":29940,"Name":"O41 Sharjila","Points":10797,"X":663,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256944Z"},{"ID":29941,"Name":"I018","Points":10342,"X":669,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256945Z"},{"ID":29942,"Name":"Wioska Bochun10","Points":4456,"X":334,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256946Z"},{"ID":29943,"Name":"PUSTO","Points":10237,"X":642,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256946Z"},{"ID":29944,"Name":"PiekƂo to inni","Points":2839,"X":587,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256947Z"},{"ID":29945,"Name":"Pobozowisko","Points":10838,"X":368,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256948Z"},{"ID":29946,"Name":"A024 FlapFactor","Points":10160,"X":660,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256949Z"},{"ID":29947,"Name":"I043","Points":10236,"X":665,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256949Z"},{"ID":29949,"Name":"3 barba","Points":10018,"X":584,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25695Z"},{"ID":29950,"Name":"Wioska 108","Points":7387,"X":642,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256951Z"},{"ID":29951,"Name":"Sony 911","Points":10217,"X":586,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256951Z"},{"ID":29952,"Name":"113","Points":6700,"X":655,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256952Z"},{"ID":29953,"Name":"Wioska 064","Points":9771,"X":638,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256953Z"},{"ID":29954,"Name":"Ob Konfederacja +","Points":8159,"X":436,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256954Z"},{"ID":29955,"Name":"Zeta Reticuli W","Points":5954,"X":368,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256954Z"},{"ID":29956,"Name":"Zeta Reticuli W","Points":6169,"X":367,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256955Z"},{"ID":29958,"Name":"K34 - [141] Before Land","Points":9158,"X":436,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256956Z"},{"ID":29959,"Name":"|032| Prasonisi","Points":10107,"X":496,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256956Z"},{"ID":29960,"Name":"OrzeƂ WylądowaƂ","Points":9656,"X":465,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256957Z"},{"ID":29961,"Name":"#Sk_014","Points":2668,"X":438,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256958Z"},{"ID":29962,"Name":"0571","Points":9756,"X":568,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256959Z"},{"ID":29963,"Name":"#0030 GL01N","Points":10178,"X":465,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256959Z"},{"ID":29964,"Name":"Wioska barbarzyƄska","Points":10220,"X":560,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25696Z"},{"ID":29965,"Name":"North Olsztyn","Points":9930,"X":425,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256961Z"},{"ID":29966,"Name":"E007","Points":8233,"X":660,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256961Z"},{"ID":29967,"Name":"Wioska barbarzyƄska","Points":9837,"X":503,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256962Z"},{"ID":29968,"Name":"ADEN","Points":10107,"X":576,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256963Z"},{"ID":29969,"Name":"Wioska Bochun10","Points":6434,"X":331,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256964Z"},{"ID":29970,"Name":"1v9 machine","Points":10019,"X":388,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256964Z"},{"ID":29971,"Name":"Gattacka","Points":9372,"X":621,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256965Z"},{"ID":29972,"Name":"024 imprezowy serniczek","Points":9899,"X":511,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256966Z"},{"ID":29973,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":395,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256966Z"},{"ID":29974,"Name":"0257","Points":10019,"X":555,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256967Z"},{"ID":29975,"Name":"ƚmierdzi potem x","Points":4405,"X":352,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":7318415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256968Z"},{"ID":29976,"Name":"MojeDnoToWaszSzczyt","Points":9938,"X":567,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256969Z"},{"ID":29977,"Name":"Witoszyn-morra12311","Points":8998,"X":654,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256969Z"},{"ID":29978,"Name":"137...barb","Points":6403,"X":446,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25697Z"},{"ID":29979,"Name":"Wiocha 8","Points":7458,"X":377,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256971Z"},{"ID":29980,"Name":"Szulernia","Points":4304,"X":385,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256972Z"},{"ID":29981,"Name":"07. Piękny rynek","Points":9688,"X":509,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256972Z"},{"ID":29982,"Name":"Monetkownia","Points":10237,"X":621,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256973Z"},{"ID":29983,"Name":"08 im Riutina","Points":9809,"X":607,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256974Z"},{"ID":29984,"Name":"KUZYNEIRO","Points":6813,"X":405,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256975Z"},{"ID":29986,"Name":"Ręcznik do zmiany","Points":10019,"X":358,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256975Z"},{"ID":29987,"Name":"0073","Points":6050,"X":413,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256976Z"},{"ID":29988,"Name":"000 Plutosea","Points":10068,"X":334,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256977Z"},{"ID":29989,"Name":"014","Points":9599,"X":364,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256978Z"},{"ID":29991,"Name":"Wioska barbarzyƄska","Points":10216,"X":561,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256978Z"},{"ID":29992,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9593,"X":379,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256979Z"},{"ID":29993,"Name":"PaƄstfa PuƂnocy","Points":10268,"X":583,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25698Z"},{"ID":29994,"Name":"Mora Sul","Points":6653,"X":344,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25698Z"},{"ID":29995,"Name":"Ave Why!","Points":9206,"X":480,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256981Z"},{"ID":29996,"Name":"5 barba","Points":10018,"X":585,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256982Z"},{"ID":29997,"Name":"126...TOMCZ","Points":10322,"X":479,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256983Z"},{"ID":29998,"Name":"Lord Arsey KING","Points":10285,"X":572,"Y":595,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256983Z"},{"ID":29999,"Name":"**13**","Points":9937,"X":632,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256984Z"},{"ID":30000,"Name":"Lord Lord Franek .#011","Points":10252,"X":519,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256985Z"},{"ID":30001,"Name":"015 Tyranus1","Points":9231,"X":669,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256986Z"},{"ID":30002,"Name":"Zeta Reticuli W","Points":8437,"X":365,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256986Z"},{"ID":30003,"Name":"Gromkowie 3","Points":9351,"X":370,"Y":613,"Continent":"K63","Bonus":9,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256987Z"},{"ID":30004,"Name":"North WƂocƂawek","Points":10294,"X":420,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256988Z"},{"ID":30005,"Name":"D03 Brown gubisz się","Points":10838,"X":458,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256989Z"},{"ID":30006,"Name":"NAREW","Points":8483,"X":332,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25699Z"},{"ID":30007,"Name":"Wioska barbarzyƄska","Points":9882,"X":555,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25699Z"},{"ID":30008,"Name":"|B| Madmoor","Points":9455,"X":490,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256991Z"},{"ID":30009,"Name":"SPOCENI KUZYNI","Points":9536,"X":414,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256992Z"},{"ID":30010,"Name":"0167","Points":10019,"X":549,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256992Z"},{"ID":30011,"Name":"troja3","Points":8708,"X":562,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256993Z"},{"ID":30012,"Name":"Chekku - meito","Points":7960,"X":328,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256994Z"},{"ID":30013,"Name":"23. WHY!","Points":4711,"X":513,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256995Z"},{"ID":30014,"Name":"Wioska barbarzyƄska","Points":10728,"X":670,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256995Z"},{"ID":30015,"Name":":::2:::Koniki","Points":9960,"X":456,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256996Z"},{"ID":30016,"Name":"Dąbrowa 0011","Points":8452,"X":356,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256997Z"},{"ID":30017,"Name":"#0051 geryk","Points":10178,"X":467,"Y":330,"Continent":"K34","Bonus":1,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256998Z"},{"ID":30018,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":631,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256998Z"},{"ID":30019,"Name":"53k$ Grvvyq","Points":7686,"X":655,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.256999Z"},{"ID":30020,"Name":"PiekƂo to inni","Points":10160,"X":331,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257Z"},{"ID":30021,"Name":"024. Mazgajkiewo MaƂe","Points":10160,"X":513,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257Z"},{"ID":30022,"Name":"Wioska barbarzyƄska","Points":5929,"X":401,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257001Z"},{"ID":30023,"Name":"Chekku - meito","Points":9976,"X":331,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257002Z"},{"ID":30025,"Name":"03. Meksyk","Points":9735,"X":637,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257003Z"},{"ID":30026,"Name":"*202*","Points":7523,"X":356,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257003Z"},{"ID":30027,"Name":"607|374","Points":3884,"X":609,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257004Z"},{"ID":30028,"Name":"Szlachcic/Taran","Points":10028,"X":636,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257005Z"},{"ID":30029,"Name":"*012","Points":10140,"X":598,"Y":641,"Continent":"K65","Bonus":3,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257005Z"},{"ID":30030,"Name":"1.15","Points":3348,"X":341,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257006Z"},{"ID":30031,"Name":"scofield","Points":9805,"X":525,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257007Z"},{"ID":30032,"Name":"|B| Darkcoast","Points":10495,"X":488,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257008Z"},{"ID":30033,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":395,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257008Z"},{"ID":30034,"Name":"A 049","Points":8290,"X":371,"Y":617,"Continent":"K63","Bonus":6,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257009Z"},{"ID":30035,"Name":"Lord Lord Franek .#127","Points":7642,"X":513,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25701Z"},{"ID":30036,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":339,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25701Z"},{"ID":30037,"Name":"xxx - 11","Points":10362,"X":615,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257011Z"},{"ID":30038,"Name":"077","Points":9780,"X":664,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257012Z"},{"ID":30039,"Name":"0143","Points":7974,"X":629,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257013Z"},{"ID":30040,"Name":"Szlachcic/Taran","Points":7094,"X":610,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257013Z"},{"ID":30041,"Name":"GÓRNIK","Points":9835,"X":331,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257014Z"},{"ID":30042,"Name":"Lord Lord Franek .#090","Points":9976,"X":517,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257015Z"},{"ID":30043,"Name":"*026","Points":9720,"X":593,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257016Z"},{"ID":30044,"Name":"[022] Wioska barbarzyƄska","Points":9312,"X":661,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257016Z"},{"ID":30045,"Name":"**1234**","Points":11422,"X":634,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257017Z"},{"ID":30046,"Name":"BACÓWKA |032|","Points":5149,"X":641,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257018Z"},{"ID":30047,"Name":"Chekku - meito","Points":9976,"X":334,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257018Z"},{"ID":30048,"Name":"PiekƂo to inni","Points":9761,"X":589,"Y":352,"Continent":"K35","Bonus":1,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257019Z"},{"ID":30049,"Name":"026 pawelk95","Points":9500,"X":667,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25702Z"},{"ID":30050,"Name":"*226*","Points":8936,"X":378,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257021Z"},{"ID":30052,"Name":"|B| Oakenview","Points":10362,"X":487,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257021Z"},{"ID":30053,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":340,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257022Z"},{"ID":30054,"Name":".///...//././././././././","Points":9584,"X":376,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257023Z"},{"ID":30055,"Name":"010 Unternehmen Barbarossa","Points":4581,"X":604,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257024Z"},{"ID":30056,"Name":"Jaaa","Points":8702,"X":667,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257025Z"},{"ID":30057,"Name":"Wioska barbarzyƄska","Points":10217,"X":561,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257025Z"},{"ID":30058,"Name":"Ob Konfederacja","Points":9168,"X":433,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257026Z"},{"ID":30059,"Name":"sony911","Points":10053,"X":589,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257027Z"},{"ID":30060,"Name":"051","Points":10495,"X":565,"Y":410,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257028Z"},{"ID":30061,"Name":"Lord Lord Franek .#128","Points":7831,"X":523,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257028Z"},{"ID":30062,"Name":"Cary k Tampa","Points":10104,"X":597,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257029Z"},{"ID":30063,"Name":"Chekku - meito","Points":8272,"X":337,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25703Z"},{"ID":30064,"Name":"181..","Points":6199,"X":351,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25703Z"},{"ID":30065,"Name":"Westfold.003","Points":10178,"X":347,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257031Z"},{"ID":30066,"Name":"Wioska II","Points":6964,"X":581,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257032Z"},{"ID":30067,"Name":"#0105 tomek791103","Points":10178,"X":478,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257033Z"},{"ID":30068,"Name":"-015-","Points":7323,"X":339,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257033Z"},{"ID":30069,"Name":"030. Night Raid-","Points":10909,"X":476,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257034Z"},{"ID":30070,"Name":"KUZYNEIRO","Points":8001,"X":407,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257035Z"},{"ID":30071,"Name":"A0286","Points":10362,"X":329,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257036Z"},{"ID":30072,"Name":"#0070 tomek791103","Points":10178,"X":478,"Y":329,"Continent":"K34","Bonus":6,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257036Z"},{"ID":30073,"Name":"Wioska barbarzyƄska","Points":6306,"X":668,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257037Z"},{"ID":30074,"Name":"I019","Points":9662,"X":661,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257038Z"},{"ID":30075,"Name":"Lord Lord Franek .#082","Points":10436,"X":526,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257038Z"},{"ID":30076,"Name":"Gromkowie 2","Points":12001,"X":369,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257039Z"},{"ID":30077,"Name":"Bagdad","Points":10068,"X":493,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25704Z"},{"ID":30078,"Name":"057","Points":9993,"X":536,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257041Z"},{"ID":30079,"Name":"1.12","Points":3856,"X":340,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257041Z"},{"ID":30080,"Name":"B 032","Points":10061,"X":670,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257042Z"},{"ID":30081,"Name":"Wioska barbarzyƄska","Points":9174,"X":496,"Y":386,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257043Z"},{"ID":30082,"Name":"Wrath 007","Points":10273,"X":574,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257044Z"},{"ID":30083,"Name":"Monetkownia","Points":10237,"X":619,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257044Z"},{"ID":30084,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":342,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257045Z"},{"ID":30085,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":395,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257046Z"},{"ID":30086,"Name":"Wioska Bochun10","Points":10300,"X":327,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257046Z"},{"ID":30087,"Name":"011","Points":9993,"X":516,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257047Z"},{"ID":30088,"Name":"Szulernia","Points":9981,"X":383,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257048Z"},{"ID":30089,"Name":"*169*","Points":10211,"X":349,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257049Z"},{"ID":30090,"Name":"[B]_[048] Dejv.oldplyr","Points":10287,"X":427,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257049Z"},{"ID":30091,"Name":"104. Egara","Points":9604,"X":647,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25705Z"},{"ID":30092,"Name":"North Barba 055","Points":6826,"X":407,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257051Z"},{"ID":30093,"Name":"Moczy kij","Points":9761,"X":331,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257051Z"},{"ID":30094,"Name":"Szulernia","Points":10045,"X":408,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257052Z"},{"ID":30095,"Name":"Chekku - meito","Points":9976,"X":333,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257053Z"},{"ID":30096,"Name":"KUZYNEIRO","Points":10160,"X":407,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257054Z"},{"ID":30097,"Name":"#0182 MiBM","Points":6561,"X":489,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257054Z"},{"ID":30098,"Name":"Radek","Points":10474,"X":398,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257055Z"},{"ID":30099,"Name":".achim.","Points":10946,"X":491,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257056Z"},{"ID":30100,"Name":"03Wioska barbarzyƄska","Points":8682,"X":390,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257056Z"},{"ID":30101,"Name":"MojeDnoToWaszSzczyt","Points":9924,"X":565,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257057Z"},{"ID":30102,"Name":"[A]009","Points":6110,"X":424,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257058Z"},{"ID":30103,"Name":"Deveste ufam Tobie","Points":10000,"X":406,"Y":647,"Continent":"K64","Bonus":8,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257059Z"},{"ID":30104,"Name":"A0263","Points":10362,"X":330,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257059Z"},{"ID":30105,"Name":"Wioska barbarzyƄska","Points":10218,"X":561,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25706Z"},{"ID":30106,"Name":"Zeta Reticuli W","Points":7595,"X":362,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257061Z"},{"ID":30107,"Name":"Dąbrowa 0012","Points":9584,"X":354,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257061Z"},{"ID":30108,"Name":"Szulernia","Points":10017,"X":407,"Y":362,"Continent":"K34","Bonus":6,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257062Z"},{"ID":30109,"Name":"Jednak wolę gofry","Points":9811,"X":410,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257063Z"},{"ID":30111,"Name":"Oddej te koƂo bo ci ciulna","Points":3107,"X":329,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257063Z"},{"ID":30112,"Name":"Bagdad","Points":9608,"X":497,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257064Z"},{"ID":30113,"Name":"!off 100 %","Points":10495,"X":348,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257065Z"},{"ID":30114,"Name":"WB6","Points":2917,"X":651,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257066Z"},{"ID":30115,"Name":"005 Wioska FredS","Points":7672,"X":626,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257066Z"},{"ID":30116,"Name":"Ave Why!","Points":4550,"X":496,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257067Z"},{"ID":30117,"Name":"K34 - [143] Before Land","Points":9924,"X":439,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257068Z"},{"ID":30118,"Name":"Muaq","Points":9551,"X":675,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257069Z"},{"ID":30119,"Name":"660|387","Points":7497,"X":609,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25707Z"},{"ID":30120,"Name":"Wioska Bochun10","Points":9783,"X":335,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25707Z"},{"ID":30121,"Name":"047 | PALESTINA","Points":6495,"X":655,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257071Z"},{"ID":30122,"Name":"Gattacka","Points":9041,"X":603,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257072Z"},{"ID":30123,"Name":"*014","Points":8862,"X":595,"Y":641,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257072Z"},{"ID":30124,"Name":"06. Dubaj","Points":9735,"X":647,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257073Z"},{"ID":30125,"Name":"Wioska barbarzyƄska","Points":10008,"X":406,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257074Z"},{"ID":30126,"Name":"022 Raya Lucaria","Points":10104,"X":486,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257075Z"},{"ID":30127,"Name":"KRÓL PAPI WIELKI","Points":9402,"X":637,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257075Z"},{"ID":30128,"Name":"[326] Chorągiewka na wietrze","Points":10397,"X":595,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257076Z"},{"ID":30129,"Name":"Nowy ƛwiat 2","Points":10178,"X":345,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257077Z"},{"ID":30130,"Name":"003","Points":10019,"X":456,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257077Z"},{"ID":30131,"Name":"120...tomcz","Points":9725,"X":485,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257078Z"},{"ID":30132,"Name":"Pobozowisko","Points":10714,"X":386,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257079Z"},{"ID":30133,"Name":"Wioska barbarzyƄska","Points":10218,"X":556,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25708Z"},{"ID":30134,"Name":"0010","Points":8055,"X":614,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25708Z"},{"ID":30135,"Name":"Monetkownia","Points":10237,"X":620,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257081Z"},{"ID":30136,"Name":"Dąbrowa 0003","Points":10083,"X":360,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257082Z"},{"ID":30137,"Name":"Wioska barbarzyƄska","Points":10229,"X":557,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257083Z"},{"ID":30138,"Name":"2.5","Points":5171,"X":373,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":849095959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257083Z"},{"ID":30139,"Name":"[A]002","Points":7992,"X":424,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257084Z"},{"ID":30140,"Name":"Lord Lord Franek .#101","Points":10160,"X":524,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257085Z"},{"ID":30141,"Name":"040","Points":9996,"X":672,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257085Z"},{"ID":30142,"Name":"Wioska Bochun10","Points":4833,"X":334,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257086Z"},{"ID":30143,"Name":"Jaaa","Points":10402,"X":671,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257087Z"},{"ID":30144,"Name":"Wioska barbarzyƄska","Points":3393,"X":597,"Y":362,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257088Z"},{"ID":30145,"Name":"Myk i do kieszonki","Points":7406,"X":346,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257088Z"},{"ID":30146,"Name":"Sony 911","Points":10208,"X":590,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257089Z"},{"ID":30147,"Name":"[B][02] Aragon Ballroom","Points":9948,"X":434,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699380621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25709Z"},{"ID":30148,"Name":"Westfold.020","Points":8789,"X":346,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257091Z"},{"ID":30149,"Name":"Adasko22","Points":4570,"X":631,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257091Z"},{"ID":30150,"Name":"Oscar","Points":8026,"X":673,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257092Z"},{"ID":30151,"Name":"Jehu_Kingdom_55","Points":6796,"X":648,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257093Z"},{"ID":30152,"Name":"-0009-","Points":6536,"X":540,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257093Z"},{"ID":30153,"Name":"cz 10 4","Points":9926,"X":367,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257094Z"},{"ID":30154,"Name":"Architekci PlacĂłw Boju","Points":6577,"X":335,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257095Z"},{"ID":30155,"Name":"Wioska barbarzyƄska","Points":7236,"X":401,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257095Z"},{"ID":30156,"Name":"Wioska barbarzyƄska","Points":9813,"X":555,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257096Z"},{"ID":30157,"Name":"Wyspa 006","Points":10273,"X":625,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257097Z"},{"ID":30158,"Name":"A003 Thais","Points":10160,"X":661,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257098Z"},{"ID":30159,"Name":"cz Wioska 15","Points":4212,"X":367,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257098Z"},{"ID":30160,"Name":"Grvvyq 118k$","Points":9691,"X":614,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257099Z"},{"ID":30161,"Name":"Nowy ƛwiat A","Points":2057,"X":341,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2571Z"},{"ID":30162,"Name":"SƂoƄce","Points":3881,"X":546,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257101Z"},{"ID":30163,"Name":"Nawet przytulnie tutaj","Points":9860,"X":444,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257102Z"},{"ID":30164,"Name":"128...centr","Points":8591,"X":445,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257102Z"},{"ID":30165,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":566,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257103Z"},{"ID":30166,"Name":"012","Points":3504,"X":343,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":8839171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257104Z"},{"ID":30167,"Name":"Szlachcic/Taran","Points":7998,"X":639,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257104Z"},{"ID":30168,"Name":"=057= Wioska barbarzyƄska","Points":10371,"X":647,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257105Z"},{"ID":30169,"Name":"Zeta Reticuli W","Points":10542,"X":364,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257106Z"},{"ID":30170,"Name":"81 .ƚroda.","Points":2611,"X":521,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":2571407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257106Z"},{"ID":30171,"Name":"81 Wtorek","Points":3955,"X":522,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":2571407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257107Z"},{"ID":30172,"Name":"645|411 Wioska barbarzyƄska","Points":5075,"X":645,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257108Z"},{"ID":30173,"Name":"Wioska barbarzyƄska","Points":10293,"X":553,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257109Z"},{"ID":30174,"Name":"**41**","Points":9441,"X":664,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257109Z"},{"ID":30175,"Name":"032. Night Raid-","Points":10686,"X":477,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25711Z"},{"ID":30176,"Name":"0266","Points":10224,"X":538,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257111Z"},{"ID":30177,"Name":"**24**","Points":10878,"X":633,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257111Z"},{"ID":30178,"Name":"Vccc-2","Points":6884,"X":414,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257112Z"},{"ID":30180,"Name":"A0264","Points":10495,"X":329,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257113Z"},{"ID":30181,"Name":"Salt Lake City","Points":9755,"X":599,"Y":360,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257114Z"},{"ID":30182,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":638,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257114Z"},{"ID":30183,"Name":"Jestem Poza Kontrolą","Points":9880,"X":342,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257115Z"},{"ID":30184,"Name":"Wioska barbarzyƄska","Points":10232,"X":552,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257116Z"},{"ID":30185,"Name":"*007","Points":9031,"X":600,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257116Z"},{"ID":30186,"Name":"B 029","Points":9296,"X":663,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257117Z"},{"ID":30187,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":339,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257118Z"},{"ID":30188,"Name":"#0059 barbarzyƄska","Points":10178,"X":471,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257119Z"},{"ID":30189,"Name":"Gattacka","Points":10470,"X":619,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257119Z"},{"ID":30190,"Name":"*263*","Points":9892,"X":336,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25712Z"},{"ID":30191,"Name":"B 007","Points":10189,"X":673,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257121Z"},{"ID":30192,"Name":"Deveste ufam Tobie","Points":10000,"X":409,"Y":642,"Continent":"K64","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257121Z"},{"ID":30193,"Name":"Grvvyq 111k$","Points":5394,"X":655,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257122Z"},{"ID":30194,"Name":"Wioska barbarzyƄska","Points":9835,"X":580,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257123Z"},{"ID":30195,"Name":"*077*","Points":10211,"X":356,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257124Z"},{"ID":30196,"Name":"Ave Why!","Points":4547,"X":498,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257124Z"},{"ID":30197,"Name":"[021] Audi A szczy","Points":9312,"X":662,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257125Z"},{"ID":30198,"Name":"Samotna wioska 8","Points":9994,"X":355,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257126Z"},{"ID":30199,"Name":"KUZYN","Points":4031,"X":410,"Y":640,"Continent":"K64","Bonus":9,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257126Z"},{"ID":30200,"Name":"-007-","Points":3529,"X":539,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257127Z"},{"ID":30201,"Name":"Zeta Reticuli W","Points":9951,"X":363,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257128Z"},{"ID":30202,"Name":"Wyspa 004","Points":10273,"X":623,"Y":381,"Continent":"K36","Bonus":6,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257129Z"},{"ID":30203,"Name":"Ɓoƛ z gƂową ƛlimaka","Points":6523,"X":373,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257129Z"},{"ID":30204,"Name":"0159","Points":10019,"X":556,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25713Z"},{"ID":30205,"Name":"Wioska barbarzyƄska","Points":2174,"X":350,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257131Z"},{"ID":30206,"Name":"008","Points":10019,"X":455,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257131Z"},{"ID":30207,"Name":"#0178 MiBM","Points":8133,"X":488,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257132Z"},{"ID":30208,"Name":"047.","Points":6067,"X":389,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257133Z"},{"ID":30209,"Name":"Wiocha 9","Points":6487,"X":378,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257134Z"},{"ID":30210,"Name":"Village","Points":7742,"X":649,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257134Z"},{"ID":30211,"Name":"O32 Alaska","Points":10452,"X":669,"Y":523,"Continent":"K56","Bonus":3,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257135Z"},{"ID":30212,"Name":"015|| Ursa Minor","Points":10019,"X":496,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257136Z"},{"ID":30213,"Name":"010","Points":9583,"X":483,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257137Z"},{"ID":30214,"Name":"Szlachcic","Points":9861,"X":393,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257137Z"},{"ID":30215,"Name":"...","Points":10303,"X":564,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257138Z"},{"ID":30217,"Name":"wokalista zespoƂu,,, Leszcze","Points":9836,"X":594,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257139Z"},{"ID":30218,"Name":"cc Lanckorona","Points":9888,"X":391,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25714Z"},{"ID":30219,"Name":"Chekku - meito","Points":9976,"X":329,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25714Z"},{"ID":30220,"Name":"010 Aberlou","Points":5157,"X":557,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257141Z"},{"ID":30221,"Name":"**22**","Points":5549,"X":633,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257142Z"},{"ID":30222,"Name":"Architekci PlacĂłw Boju","Points":7244,"X":337,"Y":557,"Continent":"K53","Bonus":6,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257142Z"},{"ID":30223,"Name":"Kentin ufam Tobie","Points":10000,"X":434,"Y":404,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257143Z"},{"ID":30224,"Name":"03Wioska barbarzyƄska","Points":8497,"X":389,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257144Z"},{"ID":30225,"Name":"1.02","Points":8672,"X":337,"Y":446,"Continent":"K43","Bonus":4,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257145Z"},{"ID":30227,"Name":"AAA","Points":9673,"X":528,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257145Z"},{"ID":30228,"Name":"021.","Points":9835,"X":651,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257146Z"},{"ID":30229,"Name":"Szulernia","Points":9710,"X":390,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257147Z"},{"ID":30230,"Name":"[B]_[036] Dejv.oldplyr","Points":10495,"X":421,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257148Z"},{"ID":30231,"Name":"Wioska Bochun10","Points":7822,"X":336,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257148Z"},{"ID":30232,"Name":"Wioska TakiKris","Points":9105,"X":386,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257149Z"},{"ID":30233,"Name":"28k$ Grvvyq","Points":10495,"X":656,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25715Z"},{"ID":30234,"Name":"A0045","Points":10362,"X":377,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257151Z"},{"ID":30235,"Name":"Ć»UBRAWKA 041","Points":6745,"X":609,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257151Z"},{"ID":30236,"Name":"Kentin ufam Tobie","Points":10000,"X":353,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257152Z"},{"ID":30237,"Name":"|037| Chalki","Points":10160,"X":493,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257153Z"},{"ID":30239,"Name":"I#017","Points":9797,"X":618,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257153Z"},{"ID":30240,"Name":"Wioska barbarzyƄska 026","Points":8733,"X":512,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257154Z"},{"ID":30241,"Name":"053","Points":9993,"X":532,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257155Z"},{"ID":30242,"Name":"0160","Points":10019,"X":548,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257156Z"},{"ID":30243,"Name":"psycha sitting","Points":10013,"X":417,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257157Z"},{"ID":30244,"Name":"KRÓL PAPI WIELKI","Points":8899,"X":636,"Y":600,"Continent":"K66","Bonus":5,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257158Z"},{"ID":30245,"Name":"Wioska barbarzyƄska","Points":7852,"X":342,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257159Z"},{"ID":30246,"Name":"Ave Why!","Points":9809,"X":479,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257159Z"},{"ID":30247,"Name":"A0265","Points":10362,"X":333,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25716Z"},{"ID":30248,"Name":"V005","Points":6237,"X":346,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257161Z"},{"ID":30249,"Name":"0049","Points":10083,"X":553,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257162Z"},{"ID":30250,"Name":"Wonderwall","Points":9515,"X":333,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257163Z"},{"ID":30251,"Name":"Jestem Poza Kontrolą","Points":9316,"X":343,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257163Z"},{"ID":30252,"Name":"E008","Points":6860,"X":661,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257164Z"},{"ID":30255,"Name":"0654","Points":9825,"X":566,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257165Z"},{"ID":30256,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257165Z"},{"ID":30257,"Name":"*005","Points":9031,"X":594,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257166Z"},{"ID":30258,"Name":"Taran","Points":10728,"X":665,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257167Z"},{"ID":30259,"Name":"Taran","Points":10728,"X":672,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257168Z"},{"ID":30260,"Name":"Szulernia","Points":9630,"X":386,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257168Z"},{"ID":30261,"Name":"Szlachcic/Taran","Points":10237,"X":610,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257169Z"},{"ID":30262,"Name":"Zeta Reticuli W","Points":7048,"X":364,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25717Z"},{"ID":30263,"Name":"117...tomcz","Points":10311,"X":482,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25717Z"},{"ID":30264,"Name":"ZiOm2311Gacek","Points":10256,"X":442,"Y":577,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257171Z"},{"ID":30265,"Name":"Gotha","Points":3912,"X":345,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257172Z"},{"ID":30266,"Name":"0247","Points":10160,"X":540,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257173Z"},{"ID":30267,"Name":"Wioska barbarzyƄska","Points":1987,"X":439,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257173Z"},{"ID":30268,"Name":"103...tomcz","Points":10495,"X":479,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257174Z"},{"ID":30269,"Name":"Ave Why!","Points":9730,"X":474,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257175Z"},{"ID":30270,"Name":"008 Stromy PƂaskowyĆŒ","Points":9899,"X":626,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257176Z"},{"ID":30271,"Name":"[042]","Points":7046,"X":644,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257177Z"},{"ID":30272,"Name":"Skocz po Deff do OZDR","Points":9711,"X":348,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257177Z"},{"ID":30273,"Name":"Kaj jo je, sam ino gorole sa","Points":4736,"X":330,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257178Z"},{"ID":30274,"Name":"#0064 Saturennr","Points":10178,"X":472,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257179Z"},{"ID":30275,"Name":"psycha sitting","Points":10311,"X":428,"Y":655,"Continent":"K64","Bonus":9,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257179Z"},{"ID":30276,"Name":"Wyspa 008","Points":9363,"X":623,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25718Z"},{"ID":30277,"Name":"Jehu_Kingdom_63","Points":6347,"X":659,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257181Z"},{"ID":30280,"Name":"Ć»UBR .::.B.E.T.O.N /4","Points":10053,"X":625,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257182Z"},{"ID":30281,"Name":"029","Points":9092,"X":631,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257182Z"},{"ID":30282,"Name":"Wioska Bochun10","Points":10495,"X":327,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257183Z"},{"ID":30283,"Name":"V004","Points":6134,"X":350,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257184Z"},{"ID":30284,"Name":"0069","Points":7158,"X":417,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257184Z"},{"ID":30285,"Name":"|C| Northgarde","Points":11321,"X":510,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257185Z"},{"ID":30286,"Name":"Wioska barbarzyƄska","Points":9989,"X":672,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257186Z"},{"ID":30287,"Name":"#045","Points":10393,"X":493,"Y":612,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257187Z"},{"ID":30288,"Name":"Wioska ba13","Points":6898,"X":499,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257187Z"},{"ID":30289,"Name":"Szlachcic","Points":8630,"X":390,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257188Z"},{"ID":30291,"Name":"Mosul","Points":5345,"X":430,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257189Z"},{"ID":30292,"Name":"*223*","Points":6276,"X":380,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257189Z"},{"ID":30293,"Name":"O39 Katmandu","Points":10546,"X":664,"Y":545,"Continent":"K56","Bonus":5,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25719Z"},{"ID":30294,"Name":"Wioska barbarzyƄska","Points":2601,"X":438,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257191Z"},{"ID":30295,"Name":"_5_","Points":3311,"X":494,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":9113064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257192Z"},{"ID":30296,"Name":"Bagdad","Points":10068,"X":485,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257192Z"},{"ID":30297,"Name":"N005","Points":3574,"X":342,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257193Z"},{"ID":30298,"Name":"cc Wioska prince","Points":3825,"X":396,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257194Z"},{"ID":30299,"Name":"Ręcznik do zmiany","Points":10019,"X":361,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257195Z"},{"ID":30300,"Name":"#111#","Points":9761,"X":638,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257195Z"},{"ID":30301,"Name":"0142","Points":9235,"X":631,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257196Z"},{"ID":30302,"Name":"[B]_[005] Dejv.oldplyr","Points":10495,"X":429,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257197Z"},{"ID":30303,"Name":"010","Points":10019,"X":603,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257197Z"},{"ID":30304,"Name":"81 .:5:.","Points":4017,"X":522,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":2571407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257198Z"},{"ID":30305,"Name":"030","Points":9810,"X":478,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257199Z"},{"ID":30306,"Name":"OrzeƂ WylądowaƂ","Points":7653,"X":462,"Y":669,"Continent":"K64","Bonus":4,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2572Z"},{"ID":30307,"Name":"Szulernia","Points":9454,"X":378,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2572Z"},{"ID":30308,"Name":"Szulernia","Points":7691,"X":379,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257201Z"},{"ID":30309,"Name":"Grvvyq 107k$","Points":3678,"X":655,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257202Z"},{"ID":30310,"Name":"Chekku - meito","Points":9485,"X":334,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257202Z"},{"ID":30311,"Name":"Wioska 005","Points":10301,"X":383,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257203Z"},{"ID":30312,"Name":"Chekku - meito","Points":9976,"X":334,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257204Z"},{"ID":30314,"Name":"Wioska barbarzyƄska","Points":9835,"X":575,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257205Z"},{"ID":30315,"Name":"#0048 geryk","Points":10178,"X":469,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257205Z"},{"ID":30316,"Name":"Szlachcic","Points":8047,"X":667,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257206Z"},{"ID":30317,"Name":"Lord Lord Franek .#169","Points":10160,"X":509,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257207Z"},{"ID":30318,"Name":"Wioska 059","Points":9761,"X":647,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257208Z"},{"ID":30319,"Name":"#0145 Thorus5","Points":6256,"X":474,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257208Z"},{"ID":30320,"Name":"102. PóƂwysep Akara","Points":10160,"X":642,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257209Z"},{"ID":30321,"Name":"A-040","Points":10332,"X":401,"Y":365,"Continent":"K34","Bonus":2,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25721Z"},{"ID":30322,"Name":"KoƄsko","Points":9064,"X":354,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257211Z"},{"ID":30323,"Name":"SPOCENI KUZYNI","Points":7845,"X":413,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257211Z"},{"ID":30325,"Name":"Wioska klez 004","Points":8172,"X":330,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257212Z"},{"ID":30326,"Name":"Wyspa 017","Points":7578,"X":625,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257213Z"},{"ID":30327,"Name":"046","Points":10014,"X":457,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257214Z"},{"ID":30328,"Name":"KRÓL PAPI WIELKI","Points":6912,"X":639,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257214Z"},{"ID":30329,"Name":"Ć»ubr .::. Metanol Lecter/3","Points":10231,"X":607,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257215Z"},{"ID":30330,"Name":"Wioska Bochun10","Points":7048,"X":327,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257216Z"},{"ID":30331,"Name":"Chekku - meito","Points":9976,"X":332,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257216Z"},{"ID":30332,"Name":"*Nobo","Points":9761,"X":578,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257217Z"},{"ID":30333,"Name":"Chekku - meito","Points":8206,"X":331,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257218Z"},{"ID":30334,"Name":"Dąbrowa 0004","Points":10083,"X":359,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257219Z"},{"ID":30335,"Name":"0262","Points":10160,"X":555,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257219Z"},{"ID":30336,"Name":"|027| Archangelos","Points":9859,"X":506,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25722Z"},{"ID":30337,"Name":"A0279","Points":10362,"X":326,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257221Z"},{"ID":30338,"Name":"ObrzeĆŒa 099","Points":5660,"X":553,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257222Z"},{"ID":30339,"Name":"KRÓL PAPI WIELKI","Points":6575,"X":637,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257222Z"},{"ID":30340,"Name":"KUZYNEIRO","Points":9364,"X":407,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257223Z"},{"ID":30341,"Name":"Deff robi brrr","Points":9735,"X":346,"Y":573,"Continent":"K53","Bonus":4,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257224Z"},{"ID":30342,"Name":"002","Points":11824,"X":592,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257225Z"},{"ID":30343,"Name":"226...barba","Points":4885,"X":462,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257226Z"},{"ID":30344,"Name":"Szulernia","Points":9270,"X":388,"Y":370,"Continent":"K33","Bonus":5,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257226Z"},{"ID":30345,"Name":"1v9 machine","Points":10019,"X":386,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257227Z"},{"ID":30346,"Name":"233...CENTR","Points":4296,"X":461,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257228Z"},{"ID":30348,"Name":"Lord Lord Franek .#129","Points":8036,"X":517,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257228Z"},{"ID":30349,"Name":"Ave Why!","Points":9978,"X":491,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257229Z"},{"ID":30350,"Name":".:012:.","Points":9902,"X":371,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25723Z"},{"ID":30351,"Name":"Szulernia","Points":10055,"X":389,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25723Z"},{"ID":30352,"Name":"Ć»ubr .::. Metanol Lecter/4","Points":7968,"X":609,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257231Z"},{"ID":30353,"Name":"Darmowe przeprowadzki","Points":9597,"X":452,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257232Z"},{"ID":30354,"Name":"Szulernia","Points":9353,"X":383,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257233Z"},{"ID":30355,"Name":"Architekci PlacĂłw Boju","Points":8832,"X":341,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257233Z"},{"ID":30356,"Name":"Wioska barbarzyƄska","Points":3629,"X":347,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257234Z"},{"ID":30357,"Name":"O37 Bator","Points":10963,"X":664,"Y":539,"Continent":"K56","Bonus":2,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257235Z"},{"ID":30358,"Name":"M181_006","Points":9894,"X":344,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257235Z"},{"ID":30359,"Name":"I030","Points":10148,"X":660,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257236Z"},{"ID":30360,"Name":"016","Points":7003,"X":605,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257237Z"},{"ID":30361,"Name":"S1Joker","Points":10962,"X":479,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257238Z"},{"ID":30362,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":334,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257238Z"},{"ID":30363,"Name":"Normandiz en","Points":3803,"X":359,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257239Z"},{"ID":30364,"Name":"Kentin ufam Tobie","Points":10000,"X":335,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25724Z"},{"ID":30365,"Name":"045","Points":10444,"X":668,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257241Z"},{"ID":30366,"Name":"Taran","Points":10728,"X":666,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257241Z"},{"ID":30367,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":339,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257242Z"},{"ID":30368,"Name":"-012-","Points":3774,"X":540,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257243Z"},{"ID":30369,"Name":"|012| Zaros","Points":9835,"X":498,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257243Z"},{"ID":30370,"Name":"przeprawa","Points":9200,"X":601,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257244Z"},{"ID":30371,"Name":"#0062 barbarzyƄska","Points":10178,"X":467,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257245Z"},{"ID":30372,"Name":"027.","Points":10654,"X":629,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257245Z"},{"ID":30373,"Name":"Westfold.022","Points":10070,"X":345,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257246Z"},{"ID":30374,"Name":"Jaaa","Points":10435,"X":673,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257247Z"},{"ID":30375,"Name":"Ave Why!","Points":9094,"X":482,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257248Z"},{"ID":30376,"Name":"Wioska barbarzyƄska","Points":9230,"X":451,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257248Z"},{"ID":30377,"Name":"Ręcznik do zmiany","Points":10019,"X":355,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257249Z"},{"ID":30378,"Name":"Miasys 1","Points":5461,"X":350,"Y":574,"Continent":"K53","Bonus":7,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25725Z"},{"ID":30379,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":340,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25725Z"},{"ID":30380,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":394,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257251Z"},{"ID":30381,"Name":"#0033 GL01N","Points":10178,"X":469,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257252Z"},{"ID":30382,"Name":"Lord Lord Franek .#043","Points":10498,"X":517,"Y":331,"Continent":"K35","Bonus":7,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257253Z"},{"ID":30383,"Name":"Cape Dun","Points":11322,"X":342,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257253Z"},{"ID":30384,"Name":"Muchomor *020*","Points":10215,"X":515,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257254Z"},{"ID":30385,"Name":"**19**","Points":9592,"X":630,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257255Z"},{"ID":30386,"Name":"Myk i do kieszonki","Points":10290,"X":367,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257256Z"},{"ID":30387,"Name":"Villaggio","Points":7319,"X":362,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257256Z"},{"ID":30388,"Name":"Grupka 7 wiosek 7","Points":10425,"X":358,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257257Z"},{"ID":30389,"Name":"cycedoziemi","Points":8500,"X":629,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":698281649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257258Z"},{"ID":30390,"Name":"[A]010","Points":7672,"X":422,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257258Z"},{"ID":30391,"Name":"Miasys 2","Points":4017,"X":348,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257259Z"},{"ID":30392,"Name":"Wioska barbarzyƄska","Points":1746,"X":439,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25726Z"},{"ID":30393,"Name":"Wioska barbarzyƄska","Points":5945,"X":346,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257261Z"},{"ID":30394,"Name":"Bagienko.Anker...","Points":6392,"X":371,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257261Z"},{"ID":30395,"Name":"nowa","Points":6605,"X":600,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257262Z"},{"ID":30396,"Name":"DejMon3","Points":8989,"X":371,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257263Z"},{"ID":30397,"Name":"Gra o Tron","Points":10019,"X":620,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257263Z"},{"ID":30398,"Name":"54. KaruTown","Points":9692,"X":656,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257264Z"},{"ID":30400,"Name":"Wioska Bochun10","Points":8462,"X":334,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257265Z"},{"ID":30401,"Name":"Wioska Bochun10","Points":7174,"X":334,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257266Z"},{"ID":30404,"Name":"North FiFa 1","Points":10311,"X":436,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257266Z"},{"ID":30405,"Name":"Wioska ba22","Points":8136,"X":500,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257267Z"},{"ID":30406,"Name":"Deveste ufam Tobie","Points":10000,"X":398,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257268Z"},{"ID":30407,"Name":"Gamma","Points":3951,"X":624,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257269Z"},{"ID":30408,"Name":"|013| Jerapetra","Points":10063,"X":492,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257269Z"},{"ID":30409,"Name":"KRÓL PAPI WIELKI","Points":8590,"X":632,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25727Z"},{"ID":30410,"Name":"011","Points":10019,"X":457,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257271Z"},{"ID":30411,"Name":"-003-","Points":8349,"X":540,"Y":332,"Continent":"K35","Bonus":7,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257272Z"},{"ID":30412,"Name":"Wioska barbarzyƄska","Points":3114,"X":505,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257272Z"},{"ID":30413,"Name":"O24 Puebla","Points":10006,"X":669,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257273Z"},{"ID":30414,"Name":"Szlachcic/Taran","Points":10237,"X":615,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257274Z"},{"ID":30415,"Name":"094...bar","Points":10352,"X":442,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257275Z"},{"ID":30416,"Name":"[B]_[009] Dejv.oldplyr","Points":10444,"X":428,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257275Z"},{"ID":30417,"Name":"005 Kocz","Points":9553,"X":670,"Y":469,"Continent":"K46","Bonus":8,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257276Z"},{"ID":30418,"Name":"Chiado","Points":6680,"X":350,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257277Z"},{"ID":30419,"Name":"*237*","Points":9608,"X":335,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257277Z"},{"ID":30420,"Name":"Szlachcic","Points":9816,"X":393,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257278Z"},{"ID":30421,"Name":"Lord Lord Franek .#130","Points":7686,"X":518,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257279Z"},{"ID":30422,"Name":"022 To nie są tanie rzeczy","Points":10140,"X":386,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25728Z"},{"ID":30423,"Name":"|C| Scorchhallow","Points":10495,"X":502,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25728Z"},{"ID":30424,"Name":"RUCH","Points":10079,"X":333,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257281Z"},{"ID":30425,"Name":"Wioska Bochun10","Points":9327,"X":327,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257282Z"},{"ID":30426,"Name":"Bagienko.Anker...","Points":7260,"X":378,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257283Z"},{"ID":30427,"Name":"Bagienko.Anker...","Points":2988,"X":375,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257283Z"},{"ID":30428,"Name":"Daruj sobie","Points":3589,"X":647,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257284Z"},{"ID":30429,"Name":"#0173 Asmo17","Points":8142,"X":485,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257285Z"},{"ID":30430,"Name":"008 Thriller","Points":9835,"X":387,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257285Z"},{"ID":30431,"Name":"056","Points":9898,"X":668,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257286Z"},{"ID":30433,"Name":"Wioska 2","Points":7574,"X":504,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257287Z"},{"ID":30434,"Name":"Wioska barbarzyƄska","Points":5707,"X":390,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257288Z"},{"ID":30435,"Name":"wieƛ 3","Points":9885,"X":345,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257288Z"},{"ID":30436,"Name":"Wioska ba16","Points":7971,"X":495,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257289Z"},{"ID":30437,"Name":"Lord Lord Franek .#170","Points":10141,"X":512,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.25729Z"},{"ID":30438,"Name":"A 004","Points":10452,"X":370,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257291Z"},{"ID":30439,"Name":"Ob Konfederacja","Points":9682,"X":432,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.257291Z"},{"ID":30440,"Name":"Wioska Bochun10","Points":3547,"X":332,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291837Z"},{"ID":30441,"Name":"North SuwaƂki","Points":9980,"X":433,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291838Z"},{"ID":30443,"Name":"*004","Points":9031,"X":594,"Y":644,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291839Z"},{"ID":30444,"Name":"*021","Points":9704,"X":597,"Y":637,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291839Z"},{"ID":30445,"Name":"#0171 Asmo17","Points":9441,"X":486,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29184Z"},{"ID":30446,"Name":"The Game Has Only Just Begun","Points":9976,"X":355,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29184Z"},{"ID":30447,"Name":"#106 C","Points":7896,"X":529,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291841Z"},{"ID":30448,"Name":"kto ananasowy pod wodą ma dom","Points":9600,"X":669,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291842Z"},{"ID":30449,"Name":"Gattacka","Points":10146,"X":619,"Y":376,"Continent":"K36","Bonus":4,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291842Z"},{"ID":30450,"Name":"PiekƂo to inni","Points":9761,"X":588,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291843Z"},{"ID":30451,"Name":"SPOCENI KUZYNI","Points":8806,"X":415,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291843Z"},{"ID":30452,"Name":"Wioska Bochun10","Points":10311,"X":334,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291844Z"},{"ID":30453,"Name":"Wioska barbarzyƄska","Points":2392,"X":346,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291844Z"},{"ID":30455,"Name":"Lord Lord Franek .#095","Points":9956,"X":510,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291845Z"},{"ID":30456,"Name":"Taki Pan","Points":6428,"X":514,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291846Z"},{"ID":30457,"Name":"O55 Orzammar","Points":10132,"X":673,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291846Z"},{"ID":30458,"Name":"Mashhad","Points":9825,"X":431,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291847Z"},{"ID":30459,"Name":"Wioska barbarzyƄska","Points":6584,"X":343,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291847Z"},{"ID":30460,"Name":"Szulernia","Points":9919,"X":390,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291848Z"},{"ID":30461,"Name":"024","Points":9849,"X":629,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291848Z"},{"ID":30462,"Name":"Pf Konfederacja","Points":9938,"X":489,"Y":505,"Continent":"K54","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291849Z"},{"ID":30463,"Name":"off 100 %","Points":9581,"X":343,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291849Z"},{"ID":30464,"Name":"M181_046","Points":9902,"X":339,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29185Z"},{"ID":30465,"Name":"052","Points":10311,"X":448,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291851Z"},{"ID":30466,"Name":"001 Wioska MiaƂa Być Pusta","Points":9953,"X":381,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291851Z"},{"ID":30467,"Name":"0590","Points":8667,"X":550,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291852Z"},{"ID":30468,"Name":"A0285","Points":10362,"X":328,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291852Z"},{"ID":30469,"Name":"[B][05] Ashbarys","Points":10311,"X":428,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699380621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291853Z"},{"ID":30470,"Name":"~~092~~","Points":9989,"X":632,"Y":616,"Continent":"K66","Bonus":9,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291853Z"},{"ID":30471,"Name":"Wrath 003","Points":10273,"X":572,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291854Z"},{"ID":30472,"Name":"*009","Points":8869,"X":600,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291855Z"},{"ID":30473,"Name":"Zeta Reticuli W","Points":7284,"X":361,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291855Z"},{"ID":30474,"Name":"Monetkownia","Points":10087,"X":619,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291856Z"},{"ID":30475,"Name":"Monetkownia","Points":10237,"X":622,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291856Z"},{"ID":30476,"Name":"Grupka 7 wiosek 7+","Points":9876,"X":359,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291857Z"},{"ID":30477,"Name":"013 Akoooord!","Points":10143,"X":377,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291857Z"},{"ID":30478,"Name":"berkuza","Points":11130,"X":587,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291858Z"},{"ID":30479,"Name":"Taran","Points":9956,"X":342,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291858Z"},{"ID":30480,"Name":"XXXX","Points":10068,"X":494,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291859Z"},{"ID":30481,"Name":"A23","Points":11321,"X":475,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29186Z"},{"ID":30482,"Name":"Horyzont zdarzeƄ","Points":9835,"X":524,"Y":672,"Continent":"K65","Bonus":3,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29186Z"},{"ID":30483,"Name":"tego nie","Points":10481,"X":528,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291861Z"},{"ID":30484,"Name":"Dajanka 32","Points":1123,"X":350,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291861Z"},{"ID":30485,"Name":"Gattacka","Points":10001,"X":619,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291862Z"},{"ID":30486,"Name":"Kreskowo_5","Points":8174,"X":591,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291862Z"},{"ID":30487,"Name":"#011#","Points":9761,"X":629,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291863Z"},{"ID":30488,"Name":"**16**","Points":9915,"X":635,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291863Z"},{"ID":30489,"Name":"043","Points":8640,"X":670,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291864Z"},{"ID":30490,"Name":"Wioska Bochun10","Points":9668,"X":335,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291865Z"},{"ID":30491,"Name":"B 028","Points":9545,"X":670,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291865Z"},{"ID":30492,"Name":"Chekku - meito","Points":10495,"X":332,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291866Z"},{"ID":30493,"Name":"Graca","Points":9049,"X":349,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291866Z"},{"ID":30495,"Name":"tarka","Points":7364,"X":497,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291867Z"},{"ID":30496,"Name":"0525","Points":9645,"X":534,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291867Z"},{"ID":30497,"Name":"O42 Georgia","Points":8583,"X":668,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291868Z"},{"ID":30498,"Name":"Jestem Poza Kontrolą","Points":8988,"X":342,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291869Z"},{"ID":30499,"Name":"Wioska barbarzyƄska","Points":4548,"X":550,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291869Z"},{"ID":30500,"Name":"Jednak wolę gofry","Points":8482,"X":425,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29187Z"},{"ID":30501,"Name":"Dąbrowa 0007","Points":10019,"X":359,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29187Z"},{"ID":30502,"Name":"A18","Points":11188,"X":467,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291871Z"},{"ID":30503,"Name":"Chekku - meito","Points":9976,"X":328,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291871Z"},{"ID":30504,"Name":"Pobozowisko","Points":7550,"X":381,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291872Z"},{"ID":30505,"Name":"030","Points":7282,"X":601,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291872Z"},{"ID":30506,"Name":"Szulernia","Points":10158,"X":383,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291873Z"},{"ID":30507,"Name":"64k$ Grvvyq","Points":8523,"X":659,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291873Z"},{"ID":30508,"Name":"Kholinar","Points":10336,"X":667,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291874Z"},{"ID":30510,"Name":"*247*","Points":9765,"X":333,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291875Z"},{"ID":30511,"Name":"*241*","Points":9939,"X":336,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291875Z"},{"ID":30512,"Name":"Szlachcic","Points":9504,"X":396,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291876Z"},{"ID":30513,"Name":"0299","Points":10019,"X":539,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291876Z"},{"ID":30514,"Name":"0433","Points":10019,"X":558,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291877Z"},{"ID":30515,"Name":"Warzywniak 012","Points":1254,"X":447,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291878Z"},{"ID":30516,"Name":"Dewej ta frela bo ci ciulna","Points":3920,"X":328,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291878Z"},{"ID":30517,"Name":"024","Points":8081,"X":610,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291879Z"},{"ID":30518,"Name":"N004","Points":3770,"X":341,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291879Z"},{"ID":30520,"Name":"006","Points":9022,"X":365,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29188Z"},{"ID":30522,"Name":"Szlachcic/Taran","Points":10237,"X":611,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29188Z"},{"ID":30523,"Name":"Westfold.011","Points":10178,"X":345,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291881Z"},{"ID":30524,"Name":"xvc","Points":5585,"X":653,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699845400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291881Z"},{"ID":30525,"Name":"Zeta Reticuli W","Points":4387,"X":369,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291882Z"},{"ID":30526,"Name":"0166","Points":10362,"X":553,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291882Z"},{"ID":30527,"Name":"A25 Night Raid-","Points":10019,"X":475,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291883Z"},{"ID":30528,"Name":"01. Na ƚrĂłdce znow wypadek","Points":9710,"X":507,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291883Z"},{"ID":30529,"Name":"Szlachcic","Points":10365,"X":392,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291884Z"},{"ID":30530,"Name":"psycha sitting","Points":10311,"X":424,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291885Z"},{"ID":30531,"Name":"deff 100%","Points":5172,"X":348,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291885Z"},{"ID":30532,"Name":"D.008","Points":8742,"X":404,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291886Z"},{"ID":30533,"Name":"Jaaa","Points":9457,"X":668,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291886Z"},{"ID":30534,"Name":"Westfold.018","Points":9603,"X":347,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291887Z"},{"ID":30535,"Name":".///...//././././././././","Points":9361,"X":377,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291887Z"},{"ID":30536,"Name":"Roger","Points":9531,"X":674,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291888Z"},{"ID":30537,"Name":"M181_037","Points":9691,"X":346,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291889Z"},{"ID":30538,"Name":"Ręcznik do zmiany","Points":10019,"X":353,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291889Z"},{"ID":30539,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":326,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29189Z"},{"ID":30540,"Name":"Dąbrowa 0013","Points":8258,"X":359,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29189Z"},{"ID":30541,"Name":"Szulernia","Points":8977,"X":387,"Y":370,"Continent":"K33","Bonus":7,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291891Z"},{"ID":30542,"Name":"BACÓWKA |011|","Points":12154,"X":615,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291892Z"},{"ID":30543,"Name":"041","Points":11583,"X":674,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291892Z"},{"ID":30544,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9792,"X":382,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291893Z"},{"ID":30545,"Name":"Wioska barbarzyƄska","Points":8287,"X":447,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291893Z"},{"ID":30546,"Name":"Szlachcic/Taran","Points":10237,"X":633,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291894Z"},{"ID":30547,"Name":"Laguna Niguel","Points":10838,"X":616,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291894Z"},{"ID":30548,"Name":"1.012","Points":9182,"X":337,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291895Z"},{"ID":30550,"Name":"012","Points":9993,"X":522,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291895Z"},{"ID":30551,"Name":"042","Points":10495,"X":579,"Y":400,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291896Z"},{"ID":30552,"Name":"Gattacka","Points":9466,"X":618,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291896Z"},{"ID":30553,"Name":"80. KaruTown","Points":9735,"X":661,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291897Z"},{"ID":30554,"Name":"#199 C","Points":10495,"X":530,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291897Z"},{"ID":30555,"Name":"Wioska krĂłlowej 2","Points":3787,"X":512,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":849096977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291898Z"},{"ID":30557,"Name":"047","Points":7677,"X":671,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291899Z"},{"ID":30558,"Name":"0peƂnalodĂłwka","Points":4477,"X":470,"Y":512,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291899Z"},{"ID":30559,"Name":"S1Joker","Points":11297,"X":480,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2919Z"},{"ID":30560,"Name":"OrzeƂ WylądowaƂ","Points":9465,"X":465,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2919Z"},{"ID":30561,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":338,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291901Z"},{"ID":30563,"Name":"Sk_009","Points":6506,"X":442,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291901Z"},{"ID":30564,"Name":"Kot z gƂową ƛlimaka","Points":2949,"X":366,"Y":387,"Continent":"K33","Bonus":3,"PlayerID":849096182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291902Z"},{"ID":30565,"Name":".:013:.","Points":12154,"X":363,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291902Z"},{"ID":30566,"Name":"019","Points":7362,"X":603,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291903Z"},{"ID":30567,"Name":"1v9 machine","Points":10019,"X":387,"Y":632,"Continent":"K63","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291903Z"},{"ID":30568,"Name":"OrzeƂ WylądowaƂ","Points":5373,"X":457,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291904Z"},{"ID":30569,"Name":"-001- Hę?","Points":9114,"X":541,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291904Z"},{"ID":30570,"Name":"Wioska barbarzyƄska","Points":5530,"X":421,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291905Z"},{"ID":30571,"Name":"Wioska 118","Points":9761,"X":674,"Y":523,"Continent":"K56","Bonus":3,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291906Z"},{"ID":30572,"Name":"0572","Points":10083,"X":567,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291906Z"},{"ID":30573,"Name":"DĆŒokej77","Points":7731,"X":444,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291907Z"},{"ID":30574,"Name":"O50 Apatin","Points":8875,"X":663,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291907Z"},{"ID":30575,"Name":"1.07","Points":4583,"X":337,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291908Z"},{"ID":30576,"Name":"Chekku - meito","Points":9976,"X":331,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291908Z"},{"ID":30577,"Name":"Wioska klez 011","Points":6626,"X":326,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291909Z"},{"ID":30578,"Name":"#0184 MiBM","Points":6518,"X":489,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291909Z"},{"ID":30579,"Name":"0027","Points":9957,"X":415,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29191Z"},{"ID":30580,"Name":"poludnie1","Points":9701,"X":598,"Y":644,"Continent":"K65","Bonus":8,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29191Z"},{"ID":30581,"Name":"[B]_[006] Dejv.oldplyr","Points":10495,"X":413,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291911Z"},{"ID":30582,"Name":"NoeyPL 3","Points":1773,"X":334,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849000135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291911Z"},{"ID":30583,"Name":"0539","Points":7120,"X":565,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291912Z"},{"ID":30584,"Name":"Mniejsze zƂo 0086","Points":4212,"X":335,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291913Z"},{"ID":30585,"Name":"Tokio","Points":3511,"X":655,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291913Z"},{"ID":30586,"Name":"056 komornicy","Points":7068,"X":332,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291914Z"},{"ID":30587,"Name":"A005 Legionas Racuchy","Points":10160,"X":667,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291914Z"},{"ID":30588,"Name":"*058","Points":10001,"X":604,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291915Z"},{"ID":30589,"Name":"SOKzGUMIjagĂłd","Points":9861,"X":594,"Y":352,"Continent":"K35","Bonus":4,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291916Z"},{"ID":30590,"Name":"C0135","Points":10362,"X":331,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291916Z"},{"ID":30591,"Name":"Szczęƛliwego Nowego Roku","Points":6111,"X":626,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291917Z"},{"ID":30592,"Name":"045","Points":9207,"X":665,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291917Z"},{"ID":30593,"Name":"% 6 % SOPLICA","Points":9628,"X":586,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291918Z"},{"ID":30594,"Name":"ADEN","Points":10053,"X":572,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291918Z"},{"ID":30595,"Name":"0291","Points":9498,"X":565,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291919Z"},{"ID":30596,"Name":"scofield","Points":9886,"X":524,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29192Z"},{"ID":30598,"Name":"greeece3","Points":10247,"X":636,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29192Z"},{"ID":30599,"Name":"Ręcznik do zmiany","Points":10019,"X":356,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291921Z"},{"ID":30601,"Name":"Myk i do kieszonki","Points":8615,"X":364,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291921Z"},{"ID":30602,"Name":"107","Points":7328,"X":620,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291922Z"},{"ID":30603,"Name":"#102 C","Points":10190,"X":530,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291922Z"},{"ID":30604,"Name":"OrzeƂ WylądowaƂ","Points":4855,"X":456,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291923Z"},{"ID":30605,"Name":"Shinso","Points":2362,"X":342,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699800377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291924Z"},{"ID":30606,"Name":"Taran","Points":10728,"X":672,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291924Z"},{"ID":30607,"Name":"Lord Lord Franek .#098","Points":9960,"X":509,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291925Z"},{"ID":30608,"Name":"D.018","Points":4673,"X":404,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291925Z"},{"ID":30609,"Name":"Taran 017","Points":9961,"X":608,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291926Z"},{"ID":30610,"Name":"Monetkownia","Points":10104,"X":620,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291926Z"},{"ID":30611,"Name":"*236*","Points":10194,"X":336,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291927Z"},{"ID":30612,"Name":"061","Points":8948,"X":525,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291927Z"},{"ID":30613,"Name":"Zrąb #6","Points":3837,"X":349,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291928Z"},{"ID":30614,"Name":"|018| Aija Rumeli","Points":9879,"X":496,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291928Z"},{"ID":30615,"Name":"021 echo","Points":10446,"X":655,"Y":430,"Continent":"K46","Bonus":5,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291929Z"},{"ID":30616,"Name":"psycha sitting","Points":5736,"X":427,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291929Z"},{"ID":30617,"Name":"off 100 %","Points":7933,"X":343,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29193Z"},{"ID":30618,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":385,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29193Z"},{"ID":30619,"Name":"fff","Points":10495,"X":485,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291931Z"},{"ID":30620,"Name":"018 Waldemar Etykietyyyy!","Points":9589,"X":376,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291932Z"},{"ID":30621,"Name":"|C| Grassfrost.","Points":10495,"X":504,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291932Z"},{"ID":30622,"Name":"|C| Oldfort","Points":5207,"X":501,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291933Z"},{"ID":30623,"Name":"E001","Points":9957,"X":659,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291933Z"},{"ID":30624,"Name":"036 ... i zamiƂowanie","Points":5591,"X":661,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291934Z"},{"ID":30625,"Name":"011","Points":9516,"X":363,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291934Z"},{"ID":30626,"Name":"Ciapek 97","Points":5909,"X":344,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291935Z"},{"ID":30627,"Name":"#0181 MiBM","Points":6698,"X":490,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291935Z"},{"ID":30628,"Name":"Szlachcic/Taran","Points":10237,"X":610,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291936Z"},{"ID":30629,"Name":"03Wioska barbarzyƄska","Points":9225,"X":390,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291937Z"},{"ID":30630,"Name":"0014","Points":1924,"X":435,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":849097175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291937Z"},{"ID":30631,"Name":"Architekci PlacĂłw Boju","Points":9342,"X":337,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291938Z"},{"ID":30633,"Name":"Amsterdam","Points":8774,"X":667,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291938Z"},{"ID":30634,"Name":"88k$ Grvvyq","Points":7300,"X":655,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291939Z"},{"ID":30635,"Name":"Dąbrowa 0010","Points":9489,"X":358,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291939Z"},{"ID":30636,"Name":"OrzeƂ WylądowaƂ","Points":6343,"X":460,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29194Z"},{"ID":30637,"Name":"Wioska 107","Points":9761,"X":639,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291941Z"},{"ID":30638,"Name":"Wioska RATRYK","Points":10063,"X":595,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291941Z"},{"ID":30639,"Name":"D07","Points":8390,"X":667,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291942Z"},{"ID":30640,"Name":"Chekku - meito","Points":9976,"X":329,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291942Z"},{"ID":30641,"Name":"Szulernia","Points":10080,"X":400,"Y":358,"Continent":"K34","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291943Z"},{"ID":30642,"Name":"0253","Points":10040,"X":553,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291943Z"},{"ID":30643,"Name":"I001","Points":10495,"X":666,"Y":449,"Continent":"K46","Bonus":9,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291944Z"},{"ID":30644,"Name":"034","Points":10232,"X":494,"Y":617,"Continent":"K64","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291944Z"},{"ID":30645,"Name":"Wioska 057","Points":9761,"X":648,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291945Z"},{"ID":30646,"Name":"052 | PALESTINA","Points":9544,"X":617,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291945Z"},{"ID":30647,"Name":"Plotka","Points":8545,"X":330,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291946Z"},{"ID":30648,"Name":"Lord Lord Franek .#131","Points":7464,"X":512,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291946Z"},{"ID":30649,"Name":"Sk_010","Points":4194,"X":440,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291947Z"},{"ID":30650,"Name":"Ob Konfederacja","Points":5499,"X":442,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291947Z"},{"ID":30651,"Name":"008","Points":9993,"X":535,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291948Z"},{"ID":30652,"Name":"B 005","Points":10083,"X":670,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291948Z"},{"ID":30653,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":326,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291949Z"},{"ID":30654,"Name":"*201*","Points":10363,"X":353,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29195Z"},{"ID":30655,"Name":"0020","Points":9947,"X":412,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29195Z"},{"ID":30656,"Name":"WARSZAWA","Points":4773,"X":348,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":849097681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291951Z"},{"ID":30657,"Name":"Robi wraĆŒenie...","Points":10236,"X":584,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291951Z"},{"ID":30658,"Name":"North Barba 056","Points":2726,"X":395,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291952Z"},{"ID":30659,"Name":"Deveste ufam Tobie","Points":9841,"X":393,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291952Z"},{"ID":30660,"Name":"K34 x015","Points":9423,"X":407,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291953Z"},{"ID":30661,"Name":"033. Night Raid-","Points":10909,"X":476,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291954Z"},{"ID":30662,"Name":"060 Wioska 006","Points":10311,"X":659,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291954Z"},{"ID":30663,"Name":"0077","Points":9821,"X":639,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291955Z"},{"ID":30664,"Name":"Bagdad","Points":10068,"X":490,"Y":325,"Continent":"K34","Bonus":3,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291955Z"},{"ID":30665,"Name":"K34 x029","Points":4625,"X":401,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291956Z"},{"ID":30666,"Name":"Gattacka","Points":9422,"X":621,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291957Z"},{"ID":30667,"Name":"Wioska barbarzyƄska","Points":6188,"X":450,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291957Z"},{"ID":30668,"Name":"O36 Irkuck","Points":10971,"X":672,"Y":531,"Continent":"K56","Bonus":1,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291958Z"},{"ID":30669,"Name":"Szlachcic/Taran","Points":10237,"X":631,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291958Z"},{"ID":30670,"Name":"Architekci PlacĂłw Boju","Points":9523,"X":337,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291959Z"},{"ID":30671,"Name":"T.M","Points":7230,"X":651,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291959Z"},{"ID":30672,"Name":".:007:.","Points":11824,"X":373,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29196Z"},{"ID":30673,"Name":"*127*","Points":10104,"X":363,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29196Z"},{"ID":30674,"Name":"Wioska","Points":6267,"X":329,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":848946608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291961Z"},{"ID":30675,"Name":"Wioska barbarzyƄska","Points":10728,"X":668,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291962Z"},{"ID":30676,"Name":"*218*","Points":6441,"X":379,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291962Z"},{"ID":30677,"Name":"Wioska","Points":8723,"X":500,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291963Z"},{"ID":30678,"Name":"Wioska barbarzyƄska","Points":6083,"X":345,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":849046232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291963Z"},{"ID":30679,"Name":"Monrera","Points":5616,"X":342,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291964Z"},{"ID":30681,"Name":"Wioska barbarzyƄska","Points":2056,"X":343,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291964Z"},{"ID":30683,"Name":"Ć»UBRAWKA A003 NeXi","Points":9613,"X":607,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291965Z"},{"ID":30684,"Name":"Wioska barbarzyƄska","Points":8029,"X":672,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291965Z"},{"ID":30685,"Name":"Mars","Points":3775,"X":552,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291966Z"},{"ID":30686,"Name":"018 Schwere Panzer-Abteilung 501","Points":7371,"X":601,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291966Z"},{"ID":30687,"Name":"deff 100 %","Points":5226,"X":347,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291967Z"},{"ID":30688,"Name":"Wioska barbarzyƄska","Points":10057,"X":556,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291967Z"},{"ID":30689,"Name":"0032 MzM","Points":9258,"X":630,"Y":610,"Continent":"K66","Bonus":6,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291968Z"},{"ID":30690,"Name":"Architekci PlacĂłw Boju","Points":8533,"X":335,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291968Z"},{"ID":30691,"Name":"Zeta Reticuli W","Points":6069,"X":359,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291969Z"},{"ID":30692,"Name":"[019] Skoda KaƂszkaj","Points":9312,"X":664,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291969Z"},{"ID":30693,"Name":"#0196 Segadorr dar","Points":10178,"X":460,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29197Z"},{"ID":30694,"Name":"OrzeƂ WylądowaƂ","Points":7652,"X":462,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29197Z"},{"ID":30695,"Name":"Wioska barbarzyƄska","Points":10218,"X":558,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291971Z"},{"ID":30696,"Name":"SPOCENI KUZYNI","Points":10311,"X":415,"Y":650,"Continent":"K64","Bonus":4,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291971Z"},{"ID":30697,"Name":"Deveste ufam Tobie","Points":10143,"X":396,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291972Z"},{"ID":30698,"Name":"I040","Points":9976,"X":665,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291972Z"},{"ID":30699,"Name":"Wioska Szwonik","Points":1716,"X":586,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291973Z"},{"ID":30700,"Name":"Architekci PlacĂłw Boju","Points":9132,"X":333,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291974Z"},{"ID":30701,"Name":"061...SKRZYP POƁUDNIE","Points":10495,"X":439,"Y":343,"Continent":"K34","Bonus":2,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291974Z"},{"ID":30702,"Name":"#0019","Points":10495,"X":545,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291975Z"},{"ID":30703,"Name":"0249","Points":8250,"X":551,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291975Z"},{"ID":30704,"Name":"Stanly","Points":9959,"X":606,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291976Z"},{"ID":30705,"Name":"Cais do Sodre","Points":9223,"X":351,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291976Z"},{"ID":30706,"Name":"[08]","Points":6093,"X":428,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699698079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291977Z"},{"ID":30707,"Name":"0032","Points":10495,"X":604,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291977Z"},{"ID":30708,"Name":"045 | PALESTINA","Points":9544,"X":656,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291978Z"},{"ID":30710,"Name":"012 Jaaaadu Jaduuuu","Points":10144,"X":377,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291979Z"},{"ID":30711,"Name":"% 8 %","Points":9032,"X":590,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291979Z"},{"ID":30712,"Name":"43k$ Grvvyq","Points":9736,"X":650,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29198Z"},{"ID":30713,"Name":"POMIDOR","Points":10728,"X":663,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29198Z"},{"ID":30714,"Name":"Szulernia","Points":5123,"X":381,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291981Z"},{"ID":30715,"Name":"Piwna 22","Points":5403,"X":649,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291981Z"},{"ID":30716,"Name":"wieƛ3","Points":8417,"X":591,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291982Z"},{"ID":30717,"Name":"Muchomor *015*","Points":10306,"X":515,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291982Z"},{"ID":30718,"Name":"Wioska r 12","Points":6909,"X":553,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291983Z"},{"ID":30719,"Name":"Pobozowisko","Points":10136,"X":377,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291983Z"},{"ID":30721,"Name":"022","Points":7901,"X":605,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291984Z"},{"ID":30722,"Name":"34. KaruTown","Points":6989,"X":642,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291984Z"},{"ID":30723,"Name":"% 7 %","Points":9105,"X":579,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291985Z"},{"ID":30724,"Name":"005. Barry","Points":9530,"X":480,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291985Z"},{"ID":30725,"Name":"|C| Knightwater","Points":10495,"X":502,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291986Z"},{"ID":30726,"Name":"J005.","Points":10252,"X":365,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291987Z"},{"ID":30727,"Name":"Szulernia","Points":9280,"X":387,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291987Z"},{"ID":30728,"Name":"051 Wioska","Points":10042,"X":660,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291988Z"},{"ID":30729,"Name":"028 * Lady Porto *","Points":5830,"X":643,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291988Z"},{"ID":30730,"Name":"Wioska barbarzyƄska","Points":9937,"X":505,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291989Z"},{"ID":30731,"Name":"D01","Points":9871,"X":666,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29199Z"},{"ID":30732,"Name":"Z|012| Mordor","Points":10160,"X":469,"Y":671,"Continent":"K64","Bonus":4,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29199Z"},{"ID":30733,"Name":"Szlachcic/Taran","Points":10237,"X":615,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291991Z"},{"ID":30734,"Name":"1.06","Points":6588,"X":337,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291992Z"},{"ID":30735,"Name":"16k$ Grvvyq","Points":10495,"X":654,"Y":579,"Continent":"K56","Bonus":5,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291992Z"},{"ID":30737,"Name":"Qmple","Points":10311,"X":566,"Y":566,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291993Z"},{"ID":30738,"Name":"Bagdad","Points":10068,"X":488,"Y":333,"Continent":"K34","Bonus":2,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291994Z"},{"ID":30739,"Name":"*053","Points":9770,"X":571,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291994Z"},{"ID":30740,"Name":"Architekci PlacĂłw Boju","Points":5728,"X":335,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291995Z"},{"ID":30741,"Name":"Pretoria 2","Points":10228,"X":555,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291995Z"},{"ID":30742,"Name":"04. Stadion Miejski","Points":7785,"X":495,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291996Z"},{"ID":30744,"Name":"Sekou","Points":10224,"X":672,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291997Z"},{"ID":30745,"Name":"028 Ć»elazko","Points":9553,"X":674,"Y":499,"Continent":"K46","Bonus":3,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291998Z"},{"ID":30746,"Name":"Szulernia","Points":9054,"X":391,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291998Z"},{"ID":30747,"Name":"Chekku - meito","Points":9976,"X":330,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.291999Z"},{"ID":30748,"Name":"006 nazwa","Points":10019,"X":362,"Y":602,"Continent":"K63","Bonus":2,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292Z"},{"ID":30749,"Name":"203","Points":10362,"X":583,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292001Z"},{"ID":30750,"Name":"Wioska VEGE 3","Points":4680,"X":659,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":87575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292001Z"},{"ID":30752,"Name":"2:0","Points":5246,"X":420,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292002Z"},{"ID":30754,"Name":"cz Wioska 77","Points":5392,"X":369,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292003Z"},{"ID":30755,"Name":"#0057 barbarzyƄska","Points":10178,"X":468,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292003Z"},{"ID":30756,"Name":"0655","Points":10160,"X":531,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292004Z"},{"ID":30757,"Name":"M181_008","Points":9908,"X":338,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292004Z"},{"ID":30758,"Name":"_PUSTA","Points":7732,"X":649,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292005Z"},{"ID":30760,"Name":"Wioska 05","Points":5340,"X":499,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292005Z"},{"ID":30761,"Name":"*030","Points":9711,"X":604,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292006Z"},{"ID":30762,"Name":"003","Points":6889,"X":673,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292007Z"},{"ID":30763,"Name":"012 - Mroczna Osada","Points":10705,"X":653,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292007Z"},{"ID":30764,"Name":"Psycha Siada","Points":10019,"X":453,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292008Z"},{"ID":30765,"Name":"Chekku - meito","Points":9976,"X":333,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292008Z"},{"ID":30766,"Name":"Architekci PlacĂłw Boju","Points":9139,"X":336,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292009Z"},{"ID":30767,"Name":"Wioska barbarzyƄska","Points":3565,"X":376,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292009Z"},{"ID":30768,"Name":"M181_009","Points":9912,"X":338,"Y":436,"Continent":"K43","Bonus":9,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29201Z"},{"ID":30769,"Name":".:016:. kr","Points":10535,"X":632,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292011Z"},{"ID":30770,"Name":"zzzGranica Bledu 12","Points":7772,"X":635,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292011Z"},{"ID":30771,"Name":"*125*","Points":10211,"X":361,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292012Z"},{"ID":30772,"Name":"OrzeƂ WylądowaƂ","Points":7018,"X":457,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292012Z"},{"ID":30773,"Name":"Bagienko.Anker...","Points":5991,"X":375,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292013Z"},{"ID":30774,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":637,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292013Z"},{"ID":30775,"Name":"Pobozowisko","Points":12154,"X":373,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292014Z"},{"ID":30776,"Name":"005 - Mroczna Osada","Points":11550,"X":644,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292015Z"},{"ID":30778,"Name":"Szulernia","Points":11137,"X":388,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292015Z"},{"ID":30779,"Name":"043","Points":9993,"X":527,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292016Z"},{"ID":30781,"Name":"Gattacka","Points":10470,"X":622,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292016Z"},{"ID":30782,"Name":"Zeta Reticuli W","Points":4157,"X":357,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292017Z"},{"ID":30784,"Name":"SPOCENI KUZYNI","Points":6643,"X":415,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292017Z"},{"ID":30785,"Name":"003","Points":9993,"X":532,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292018Z"},{"ID":30786,"Name":"Lord Lord Franek .#085","Points":12154,"X":518,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292019Z"},{"ID":30787,"Name":"-0005-","Points":8638,"X":542,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292019Z"},{"ID":30788,"Name":"Wioska barbarzyƄska","Points":9947,"X":504,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29202Z"},{"ID":30789,"Name":"47k$ Grvvyq","Points":9966,"X":656,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29202Z"},{"ID":30790,"Name":"Vengard","Points":10958,"X":344,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292021Z"},{"ID":30791,"Name":"Kentin ufam Tobie","Points":10000,"X":329,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292022Z"},{"ID":30792,"Name":"I044","Points":10297,"X":667,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292022Z"},{"ID":30793,"Name":"OrzeƂ WylądowaƂ","Points":7763,"X":456,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292023Z"},{"ID":30794,"Name":"C0277","Points":9900,"X":327,"Y":506,"Continent":"K53","Bonus":9,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292023Z"},{"ID":30795,"Name":"018","Points":9976,"X":564,"Y":638,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292024Z"},{"ID":30796,"Name":"Ob Konfederacja","Points":8630,"X":439,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292024Z"},{"ID":30797,"Name":"Wioska barbarzyƄska","Points":7459,"X":348,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292025Z"},{"ID":30798,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":336,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292025Z"},{"ID":30799,"Name":"Wioska barbarzyƄska","Points":10315,"X":502,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292026Z"},{"ID":30801,"Name":"Leszcz","Points":10495,"X":333,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292026Z"},{"ID":30802,"Name":"0004. HMS Charles (1668)","Points":9676,"X":483,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292027Z"},{"ID":30803,"Name":"Barcelona","Points":7897,"X":672,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292028Z"},{"ID":30804,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":457,"Y":665,"Continent":"K64","Bonus":1,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292028Z"},{"ID":30805,"Name":"Ave Why!","Points":7043,"X":483,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292029Z"},{"ID":30806,"Name":"Wioska barbarzyƄska","Points":10728,"X":671,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292029Z"},{"ID":30807,"Name":"007 Wioska barbarzyƄska","Points":10063,"X":383,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29203Z"},{"ID":30808,"Name":"Wioska barbarzyƄska","Points":9264,"X":451,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29203Z"},{"ID":30809,"Name":"R 017 ~BiaƂa GraƄ~","Points":10019,"X":483,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292031Z"},{"ID":30810,"Name":"Wioska barbarzyƄska","Points":3906,"X":329,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292031Z"},{"ID":30811,"Name":"006","Points":9721,"X":669,"Y":493,"Continent":"K46","Bonus":3,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292032Z"},{"ID":30812,"Name":"M181_001","Points":9902,"X":342,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292032Z"},{"ID":30813,"Name":"**21**","Points":10437,"X":633,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292033Z"},{"ID":30814,"Name":"107...tomcz","Points":10239,"X":476,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292034Z"},{"ID":30815,"Name":"085...TOM D----------","Points":10590,"X":476,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292034Z"},{"ID":30816,"Name":"Ć»UBR .::.B.E.T.O.N /2","Points":10251,"X":623,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292035Z"},{"ID":30817,"Name":"B 001","Points":9942,"X":668,"Y":533,"Continent":"K56","Bonus":4,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292035Z"},{"ID":30818,"Name":"#053.","Points":7242,"X":663,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292036Z"},{"ID":30819,"Name":"Dejmon7","Points":5224,"X":372,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292036Z"},{"ID":30820,"Name":".///...//././././././././","Points":9885,"X":372,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292037Z"},{"ID":30821,"Name":"002 Wioska barbarzyƄska","Points":9806,"X":382,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292037Z"},{"ID":30822,"Name":"0100","Points":4588,"X":413,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292038Z"},{"ID":30823,"Name":"Myk i do kieszonki","Points":10499,"X":369,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292038Z"},{"ID":30824,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":635,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292039Z"},{"ID":30825,"Name":"|011| Agios Nikolaos","Points":9975,"X":499,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292039Z"},{"ID":30826,"Name":"[B]_[037] Dejv.oldplyr","Points":6392,"X":420,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29204Z"},{"ID":30827,"Name":"Wioska barbarzyƄska","Points":8590,"X":399,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292041Z"},{"ID":30828,"Name":"009 Barbara","Points":9500,"X":673,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292041Z"},{"ID":30829,"Name":"Wioska barbarzyƄska","Points":9918,"X":555,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292042Z"},{"ID":30830,"Name":"105. Wyspy OkrągƂe","Points":7040,"X":642,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292042Z"},{"ID":30831,"Name":"kto ananasowy pod wodą ma dom","Points":9861,"X":671,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292043Z"},{"ID":30832,"Name":"Jaaa","Points":10495,"X":569,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292043Z"},{"ID":30833,"Name":"Wioska III","Points":5556,"X":584,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292044Z"},{"ID":30834,"Name":"005","Points":1678,"X":667,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292045Z"},{"ID":30835,"Name":"PiekƂo to inni","Points":10235,"X":599,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292045Z"},{"ID":30836,"Name":"Wioska barbarzyƄska 025","Points":8674,"X":504,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292046Z"},{"ID":30837,"Name":"wioska","Points":1488,"X":607,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292046Z"},{"ID":30838,"Name":"Darma dla zawodnika","Points":10311,"X":527,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292047Z"},{"ID":30839,"Name":"29. Pod chatą","Points":7921,"X":356,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292047Z"},{"ID":30840,"Name":"|043| Saranda","Points":9738,"X":494,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292048Z"},{"ID":30841,"Name":"Wioska barbarzyƄska","Points":9561,"X":507,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292049Z"},{"ID":30842,"Name":"D 021","Points":10083,"X":671,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292049Z"},{"ID":30843,"Name":"Ave Why!","Points":6036,"X":494,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29205Z"},{"ID":30844,"Name":"Muchomor *021*","Points":10291,"X":523,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29205Z"},{"ID":30845,"Name":"|031| Kiotari","Points":10107,"X":497,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292051Z"},{"ID":30846,"Name":"WB 06","Points":8455,"X":638,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292051Z"},{"ID":30847,"Name":"DMN 004","Points":5762,"X":649,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":698998882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292052Z"},{"ID":30848,"Name":"V001","Points":10218,"X":350,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292052Z"},{"ID":30849,"Name":"Jehu_Kingdom_48","Points":6256,"X":655,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292053Z"},{"ID":30850,"Name":"013","Points":7824,"X":602,"Y":637,"Continent":"K66","Bonus":5,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292054Z"},{"ID":30851,"Name":"Springfield, Massachusetts","Points":10214,"X":600,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292054Z"},{"ID":30853,"Name":"Mniejsze zƂo 0069","Points":7178,"X":331,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292055Z"},{"ID":30854,"Name":"123...tomcz","Points":10495,"X":477,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292055Z"},{"ID":30855,"Name":"J002.","Points":8991,"X":364,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292056Z"},{"ID":30856,"Name":"#0170 Kamil0ss1","Points":10178,"X":489,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292056Z"},{"ID":30857,"Name":"A0266","Points":10362,"X":327,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292057Z"},{"ID":30858,"Name":"WesoƂych ƚwiąt","Points":6644,"X":592,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292058Z"},{"ID":30859,"Name":"Taran","Points":10728,"X":673,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292058Z"},{"ID":30860,"Name":"Sierra","Points":9469,"X":675,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292059Z"},{"ID":30861,"Name":"Wioska Bochun10","Points":4279,"X":335,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292059Z"},{"ID":30862,"Name":"kto ananasowy pod wodą ma dom","Points":9627,"X":670,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29206Z"},{"ID":30863,"Name":"SOKzGUMIjagĂłd","Points":4989,"X":596,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29206Z"},{"ID":30864,"Name":"Bagdad","Points":10068,"X":484,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292061Z"},{"ID":30865,"Name":"Zeta Reticuli W","Points":8639,"X":362,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292061Z"},{"ID":30866,"Name":"0439","Points":10362,"X":539,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292062Z"},{"ID":30867,"Name":"A031 Wioska 2","Points":10141,"X":659,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292062Z"},{"ID":30868,"Name":".051.","Points":10316,"X":501,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292063Z"},{"ID":30869,"Name":"|038| Alimia","Points":9738,"X":492,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292064Z"},{"ID":30870,"Name":"Chekku - meito","Points":9976,"X":326,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292064Z"},{"ID":30871,"Name":"010 Welen.V2","Points":9426,"X":464,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292065Z"},{"ID":30872,"Name":"034","Points":9761,"X":632,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292065Z"},{"ID":30873,"Name":"#0183 MiBM","Points":6492,"X":488,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292066Z"},{"ID":30874,"Name":"056 Goku","Points":9490,"X":641,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292066Z"},{"ID":30875,"Name":"-0012-","Points":3971,"X":545,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292067Z"},{"ID":30876,"Name":"$6.000 Grvvyq","Points":10495,"X":656,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292067Z"},{"ID":30877,"Name":"Po ƛwiętach","Points":10400,"X":606,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292068Z"},{"ID":30878,"Name":"025. Night Raid-","Points":9911,"X":472,"Y":672,"Continent":"K64","Bonus":6,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292069Z"},{"ID":30879,"Name":"Westfold.002","Points":10178,"X":346,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292069Z"},{"ID":30880,"Name":"Szulernia","Points":9691,"X":386,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29207Z"},{"ID":30881,"Name":"Echo","Points":9614,"X":676,"Y":505,"Continent":"K56","Bonus":2,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29207Z"},{"ID":30882,"Name":"Wioska barbarzyƄska","Points":5017,"X":513,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292071Z"},{"ID":30883,"Name":"Szlachcic","Points":9863,"X":389,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292071Z"},{"ID":30884,"Name":"023 To Ty nic nie umiesz?","Points":10143,"X":383,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292072Z"},{"ID":30885,"Name":"Wioska 070","Points":9761,"X":646,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292072Z"},{"ID":30886,"Name":"deff 100 %","Points":10243,"X":343,"Y":577,"Continent":"K53","Bonus":1,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292073Z"},{"ID":30887,"Name":"Chekku - meito","Points":9976,"X":343,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292074Z"},{"ID":30888,"Name":"Wioska barbarzyƄska","Points":8106,"X":519,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292074Z"},{"ID":30889,"Name":"011","Points":8286,"X":606,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292075Z"},{"ID":30890,"Name":"041","Points":10019,"X":448,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292075Z"},{"ID":30891,"Name":"027","Points":7419,"X":609,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292076Z"},{"ID":30892,"Name":"E003","Points":9753,"X":658,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292076Z"},{"ID":30893,"Name":"Wioska Bochun10","Points":10311,"X":326,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292077Z"},{"ID":30894,"Name":"Bukowy Las","Points":7123,"X":652,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292077Z"},{"ID":30895,"Name":"010","Points":8213,"X":608,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292078Z"},{"ID":30896,"Name":"Wioska barbarzyƄska","Points":4701,"X":451,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292078Z"},{"ID":30897,"Name":"Wioska barbarzyƄska","Points":3567,"X":508,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292079Z"},{"ID":30898,"Name":"Bagienko.Anker...","Points":8550,"X":372,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29208Z"},{"ID":30899,"Name":"Klan MƂota","Points":7140,"X":343,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29208Z"},{"ID":30900,"Name":"118...tomcz","Points":10478,"X":479,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292081Z"},{"ID":30901,"Name":"D16","Points":4345,"X":666,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292081Z"},{"ID":30903,"Name":"Wioska","Points":2586,"X":333,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":848946608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292082Z"},{"ID":30904,"Name":"006 Schwere Panzer-Abteilung 507","Points":9440,"X":605,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292082Z"},{"ID":30905,"Name":"Ave Why!","Points":9809,"X":484,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292083Z"},{"ID":30906,"Name":"Myk i do kieszonki","Points":9711,"X":342,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292083Z"},{"ID":30907,"Name":"Wioska barbarzyƄska","Points":1729,"X":427,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292084Z"},{"ID":30908,"Name":"[B]_[010] Dejv.oldplyr","Points":10495,"X":421,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292085Z"},{"ID":30909,"Name":"1v9 machine","Points":10019,"X":389,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292085Z"},{"ID":30910,"Name":"Ulu-mulu","Points":9217,"X":433,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292086Z"},{"ID":30911,"Name":"Wioska barbarzyƄska","Points":10728,"X":674,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292086Z"},{"ID":30912,"Name":"BEZDZIETNY KAWALER","Points":5922,"X":418,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292087Z"},{"ID":30913,"Name":"03Wioska barbarzyƄska","Points":8653,"X":390,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292087Z"},{"ID":30914,"Name":"0183","Points":10252,"X":549,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292088Z"},{"ID":30915,"Name":"O58 Halland","Points":8776,"X":668,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292089Z"},{"ID":30916,"Name":"Ręcznik do zmiany","Points":10019,"X":356,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292089Z"},{"ID":30917,"Name":"104...tommcz","Points":10336,"X":476,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29209Z"},{"ID":30918,"Name":"#0103 tomek791103","Points":10178,"X":479,"Y":328,"Continent":"K34","Bonus":2,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29209Z"},{"ID":30919,"Name":"FLAGI","Points":6192,"X":324,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":699780873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292091Z"},{"ID":30920,"Name":"0100","Points":10160,"X":548,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292091Z"},{"ID":30921,"Name":"Coimbra","Points":6872,"X":354,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292092Z"},{"ID":30922,"Name":"J#025","Points":10223,"X":576,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292092Z"},{"ID":30923,"Name":"[039]","Points":9111,"X":650,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292093Z"},{"ID":30925,"Name":"Centrum 6","Points":3876,"X":649,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292093Z"},{"ID":30926,"Name":"Deveste ufam Tobie","Points":10000,"X":404,"Y":643,"Continent":"K64","Bonus":4,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292094Z"},{"ID":30927,"Name":"*054","Points":9369,"X":583,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292095Z"},{"ID":30928,"Name":"Wioska 001","Points":9432,"X":674,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292095Z"},{"ID":30929,"Name":"69k$ Grvvyq","Points":10495,"X":640,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292096Z"},{"ID":30930,"Name":"A0267","Points":10362,"X":330,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292096Z"},{"ID":30931,"Name":"Taran","Points":10728,"X":678,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292097Z"},{"ID":30932,"Name":"Braga","Points":6942,"X":342,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":849097716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292097Z"},{"ID":30933,"Name":"002.","Points":9045,"X":578,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":1270916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292098Z"},{"ID":30934,"Name":"darkmike01","Points":5772,"X":516,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292098Z"},{"ID":30935,"Name":"027.Barbara11","Points":4459,"X":331,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292099Z"},{"ID":30936,"Name":"*5614* Nowy Targ","Points":10287,"X":660,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2921Z"},{"ID":30937,"Name":"Y | Forest Cyaaaanku","Points":6255,"X":325,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2921Z"},{"ID":30938,"Name":"emoriar","Points":6745,"X":666,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292101Z"},{"ID":30939,"Name":"08 Rivendell","Points":8484,"X":434,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292101Z"},{"ID":30940,"Name":"[B]_[015] Dejv.oldplyr","Points":10495,"X":428,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292102Z"},{"ID":30941,"Name":"Wioska Bochun10","Points":10311,"X":327,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292102Z"},{"ID":30942,"Name":"Jednak wolę gofry","Points":9485,"X":420,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292103Z"},{"ID":30943,"Name":"Wioska barbarzyƄska","Points":6655,"X":448,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292103Z"},{"ID":30944,"Name":"#067#","Points":9761,"X":624,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292104Z"},{"ID":30945,"Name":"SPOCENI KUZYNI","Points":5021,"X":410,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292105Z"},{"ID":30946,"Name":"Wioska barbarzyƄska","Points":9835,"X":575,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292105Z"},{"ID":30947,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":377,"Y":620,"Continent":"K63","Bonus":2,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292106Z"},{"ID":30948,"Name":"Architekci PlacĂłw Boju","Points":4710,"X":337,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292106Z"},{"ID":30949,"Name":"AAA","Points":7071,"X":535,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292107Z"},{"ID":30950,"Name":"Wioska barbarzyƄska","Points":2914,"X":662,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292107Z"},{"ID":30951,"Name":"|062| Osiedle Zielone","Points":9112,"X":513,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292108Z"},{"ID":30952,"Name":"661|559 Wioska barbarzyƄska","Points":7545,"X":661,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292108Z"},{"ID":30953,"Name":"095. Kanaza","Points":12154,"X":618,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292109Z"},{"ID":30954,"Name":"129...OPELU","Points":9693,"X":442,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292109Z"},{"ID":30955,"Name":"Gattacka","Points":9372,"X":620,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29211Z"},{"ID":30956,"Name":"A 011","Points":5765,"X":369,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292111Z"},{"ID":30957,"Name":"Grupka 7 wiosek 3","Points":8048,"X":355,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292111Z"},{"ID":30958,"Name":"Szlachcic/Taran","Points":9935,"X":640,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292112Z"},{"ID":30959,"Name":"Wioska barbarzyƄska","Points":9070,"X":449,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292112Z"},{"ID":30960,"Name":"009 - Mroczna Osada","Points":11130,"X":646,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292113Z"},{"ID":30961,"Name":"Wioska Westor","Points":6049,"X":358,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699530673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292113Z"},{"ID":30962,"Name":"Wioska barbarzyƄska","Points":4571,"X":514,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292114Z"},{"ID":30963,"Name":"Szlachcic","Points":9934,"X":593,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292114Z"},{"ID":30964,"Name":"Architekci PlacĂłw Boju","Points":5103,"X":336,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292115Z"},{"ID":30965,"Name":"039","Points":10442,"X":671,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292115Z"},{"ID":30966,"Name":"I049","Points":9998,"X":657,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292116Z"},{"ID":30967,"Name":"B03","Points":9835,"X":490,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292116Z"},{"ID":30968,"Name":"O01 Dunharrow","Points":10671,"X":667,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292117Z"},{"ID":30969,"Name":"Wioska barbarzyƄska","Points":9927,"X":506,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292118Z"},{"ID":30971,"Name":"Wioska klez 001","Points":9701,"X":329,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292118Z"},{"ID":30973,"Name":"027|| Lynx","Points":10019,"X":498,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292119Z"},{"ID":30974,"Name":"Minas","Points":8715,"X":675,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292119Z"},{"ID":30975,"Name":"074","Points":8272,"X":662,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29212Z"},{"ID":30977,"Name":"I007","Points":10040,"X":665,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29212Z"},{"ID":30978,"Name":"Wioska Bochun10","Points":7359,"X":331,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292121Z"},{"ID":30979,"Name":"0295","Points":8956,"X":569,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292121Z"},{"ID":30980,"Name":"038","Points":9860,"X":669,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292122Z"},{"ID":30981,"Name":"|007| Balos","Points":10063,"X":482,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292123Z"},{"ID":30982,"Name":"D04 orzeƂ nie wyląduje tu.","Points":7878,"X":459,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292123Z"},{"ID":30983,"Name":"25k$ Grvvyq","Points":10495,"X":663,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292124Z"},{"ID":30984,"Name":"A10","Points":5275,"X":468,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292124Z"},{"ID":30985,"Name":"049","Points":9948,"X":676,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292125Z"},{"ID":30986,"Name":"Wioska 051","Points":9761,"X":644,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292125Z"},{"ID":30987,"Name":"Ć»UBR .::.B.E.T.O.N /3","Points":10311,"X":625,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292126Z"},{"ID":30988,"Name":"Myk i do kieszonki","Points":9799,"X":343,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292126Z"},{"ID":30989,"Name":"Deveste ufam Tobie","Points":7287,"X":395,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292127Z"},{"ID":30990,"Name":"Deveste ufam Tobie","Points":10000,"X":399,"Y":644,"Continent":"K63","Bonus":9,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292128Z"},{"ID":30991,"Name":"!!35 59 xyx","Points":10093,"X":598,"Y":354,"Continent":"K35","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292128Z"},{"ID":30992,"Name":"#Yamiiiii","Points":4339,"X":434,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292129Z"},{"ID":30993,"Name":"Wioska barbarzyƄska","Points":9845,"X":503,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292129Z"},{"ID":30994,"Name":"Centrum 5","Points":5321,"X":649,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29213Z"},{"ID":30995,"Name":"060...Skrzyp Centr","Points":10728,"X":445,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29213Z"},{"ID":30996,"Name":"08. Vengerberg","Points":955,"X":330,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292131Z"},{"ID":30997,"Name":"*251*","Points":5752,"X":336,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292131Z"},{"ID":30998,"Name":"[023] Wioska barbarzyƄska","Points":9312,"X":660,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292132Z"},{"ID":30999,"Name":"Napewno to nie jest off","Points":10495,"X":485,"Y":397,"Continent":"K34","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292133Z"},{"ID":31000,"Name":"Pobozowisko","Points":11278,"X":373,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292133Z"},{"ID":31002,"Name":"Muchomor *016*","Points":10292,"X":517,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292134Z"},{"ID":31003,"Name":"Szulernia","Points":10048,"X":381,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292134Z"},{"ID":31004,"Name":"Surprise, Arizona","Points":9581,"X":600,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292135Z"},{"ID":31005,"Name":"I034","Points":10241,"X":665,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292135Z"},{"ID":31006,"Name":"003 ChaƂupa na wzgĂłrzu","Points":9835,"X":372,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292136Z"},{"ID":31007,"Name":"0179","Points":10019,"X":548,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292136Z"},{"ID":31008,"Name":"Wioska barbarzyƄska","Points":10728,"X":676,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292137Z"},{"ID":31009,"Name":"D 022","Points":10083,"X":669,"Y":513,"Continent":"K56","Bonus":8,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292138Z"},{"ID":31010,"Name":"1.03","Points":7199,"X":336,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292138Z"},{"ID":31011,"Name":"Kentin ufam Tobie","Points":10067,"X":328,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292139Z"},{"ID":31012,"Name":"Wrath 004","Points":10273,"X":573,"Y":343,"Continent":"K35","Bonus":2,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292139Z"},{"ID":31013,"Name":"A32","Points":7148,"X":479,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29214Z"},{"ID":31014,"Name":"Nowy ƛwiat","Points":10178,"X":333,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292141Z"},{"ID":31015,"Name":"Wioska barbarzyƄska","Points":9072,"X":449,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292142Z"},{"ID":31016,"Name":"333","Points":5621,"X":634,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292143Z"},{"ID":31017,"Name":"Plutosea BarbarzyƄska","Points":9835,"X":330,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292144Z"},{"ID":31018,"Name":"Deveste ufam Tobie","Points":10000,"X":392,"Y":638,"Continent":"K63","Bonus":5,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292145Z"},{"ID":31019,"Name":"Wioska K A J T E K","Points":12154,"X":625,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292146Z"},{"ID":31020,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":329,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292148Z"},{"ID":31021,"Name":"Wioska 094","Points":9761,"X":642,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292149Z"},{"ID":31022,"Name":"C.04","Points":8738,"X":675,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292149Z"},{"ID":31023,"Name":"Ręcznik do zmiany","Points":10019,"X":352,"Y":406,"Continent":"K43","Bonus":2,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29215Z"},{"ID":31024,"Name":"444","Points":5023,"X":634,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292151Z"},{"ID":31025,"Name":"Wonderwall","Points":9500,"X":331,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292152Z"},{"ID":31026,"Name":"Szulernia","Points":3024,"X":379,"Y":382,"Continent":"K33","Bonus":7,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292152Z"},{"ID":31027,"Name":"0263","Points":10160,"X":544,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292153Z"},{"ID":31028,"Name":"[040]","Points":7622,"X":648,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292154Z"},{"ID":31029,"Name":"Tu teĆŒ przytulnie","Points":10160,"X":443,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292155Z"},{"ID":31030,"Name":"Wioska barbarzyƄska 027","Points":8510,"X":514,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292155Z"},{"ID":31031,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":521,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292156Z"},{"ID":31032,"Name":"Bagdad","Points":10068,"X":486,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292157Z"},{"ID":31033,"Name":"|026| Kolymbia","Points":8807,"X":504,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292158Z"},{"ID":31034,"Name":"Zeta Reticuli W","Points":5627,"X":359,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292158Z"},{"ID":31035,"Name":"20k$ Grvvyq","Points":10495,"X":657,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292159Z"},{"ID":31036,"Name":"[B]_[041] Dejv.oldplyr","Points":10495,"X":425,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29216Z"},{"ID":31037,"Name":"Chekku - meito","Points":9976,"X":330,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292161Z"},{"ID":31038,"Name":"|014| Knossos","Points":10612,"X":493,"Y":674,"Continent":"K64","Bonus":1,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292161Z"},{"ID":31039,"Name":"Wioska P1ter 1","Points":9937,"X":598,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292162Z"},{"ID":31040,"Name":"Wioska klez 013","Points":6717,"X":326,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292163Z"},{"ID":31041,"Name":"K34 x027","Points":5550,"X":403,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292163Z"},{"ID":31042,"Name":"Wioska ba","Points":7250,"X":498,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292164Z"},{"ID":31043,"Name":"Awaryjne ƛwiatƂa!","Points":9638,"X":498,"Y":504,"Continent":"K54","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292165Z"},{"ID":31044,"Name":"0573","Points":8644,"X":564,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292166Z"},{"ID":31045,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":8781,"X":383,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292166Z"},{"ID":31047,"Name":"## Nieznana ##","Points":9106,"X":635,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292167Z"},{"ID":31048,"Name":"020.","Points":10838,"X":486,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292168Z"},{"ID":31049,"Name":"OrzeƂ WylądowaƂ","Points":8956,"X":461,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292169Z"},{"ID":31050,"Name":"Za darmo","Points":2193,"X":361,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29217Z"},{"ID":31051,"Name":"|041| Tirana","Points":9738,"X":496,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29217Z"},{"ID":31052,"Name":"Szlachcic/Taran","Points":8947,"X":612,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292171Z"},{"ID":31053,"Name":"|002| Heraklion","Points":10160,"X":495,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292172Z"},{"ID":31054,"Name":".:007:. gr","Points":6806,"X":635,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292173Z"},{"ID":31055,"Name":"022 Wioska","Points":5222,"X":659,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292174Z"},{"ID":31056,"Name":"__28__ Setarrif","Points":4120,"X":376,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292175Z"},{"ID":31057,"Name":"B 033","Points":9197,"X":667,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292176Z"},{"ID":31058,"Name":"Wyspa 007","Points":9783,"X":624,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292177Z"},{"ID":31059,"Name":"OrzeƂ WylądowaƂ","Points":7614,"X":460,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292177Z"},{"ID":31060,"Name":"Wioska 03","Points":8186,"X":503,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292178Z"},{"ID":31061,"Name":"PiekƂo to inni","Points":10160,"X":601,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292179Z"},{"ID":31062,"Name":"Mallutka","Points":4087,"X":634,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29218Z"},{"ID":31063,"Name":"046","Points":7814,"X":518,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292181Z"},{"ID":31064,"Name":"- DragonD","Points":8492,"X":548,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292181Z"},{"ID":31065,"Name":"Zeta Reticuli W","Points":3840,"X":356,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292182Z"},{"ID":31066,"Name":"Szlachcic/Taran","Points":10237,"X":642,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292183Z"},{"ID":31067,"Name":"Grvvyq 114k$","Points":7688,"X":630,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292184Z"},{"ID":31068,"Name":"Zeta Reticuli W","Points":5182,"X":366,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292185Z"},{"ID":31069,"Name":"Wiocha 11","Points":4584,"X":378,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":849096544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292185Z"},{"ID":31070,"Name":"~~086~~","Points":9756,"X":634,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292186Z"},{"ID":31071,"Name":"AAA","Points":9787,"X":674,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292187Z"},{"ID":31072,"Name":"Wioska barbarzyƄska","Points":3665,"X":326,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":61791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292188Z"},{"ID":31073,"Name":"0440","Points":10083,"X":537,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292189Z"},{"ID":31074,"Name":"Nowy ƛwiat 7","Points":5218,"X":342,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29219Z"},{"ID":31075,"Name":"020 Jo ni ma Fasola","Points":10143,"X":381,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29219Z"},{"ID":31076,"Name":"Gattacka","Points":9711,"X":619,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292191Z"},{"ID":31077,"Name":"0304","Points":9531,"X":574,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292192Z"},{"ID":31078,"Name":"Wioska IV","Points":7749,"X":577,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292193Z"},{"ID":31079,"Name":"crackhouse","Points":3255,"X":582,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292194Z"},{"ID":31080,"Name":"#0110 tomek791103","Points":10178,"X":482,"Y":331,"Continent":"K34","Bonus":3,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292194Z"},{"ID":31081,"Name":"01. kololand","Points":11271,"X":374,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292195Z"},{"ID":31082,"Name":"D12","Points":2991,"X":665,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292196Z"},{"ID":31083,"Name":"Szlachcic/Taran","Points":10237,"X":616,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292197Z"},{"ID":31084,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9761,"X":524,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292197Z"},{"ID":31085,"Name":"070","Points":9755,"X":663,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292198Z"},{"ID":31086,"Name":"03Wioska barbarzyƄska","Points":9742,"X":388,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292199Z"},{"ID":31088,"Name":"0073","Points":10083,"X":554,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292199Z"},{"ID":31090,"Name":"-010-","Points":7303,"X":334,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2922Z"},{"ID":31091,"Name":"PiekƂo to inni","Points":4950,"X":584,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292201Z"},{"ID":31093,"Name":"Wioska Bochun10","Points":7832,"X":332,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292202Z"},{"ID":31094,"Name":"ADEN","Points":10268,"X":575,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292202Z"},{"ID":31095,"Name":"A001 Mpiechu 2","Points":9804,"X":670,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292203Z"},{"ID":31096,"Name":"Wioska barbarzyƄska","Points":7432,"X":381,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292204Z"},{"ID":31097,"Name":"Jednak wolę gofry","Points":7127,"X":420,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292205Z"},{"ID":31098,"Name":"Wioska barbarzyƄska","Points":10728,"X":674,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292205Z"},{"ID":31099,"Name":"yyyy","Points":10132,"X":500,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292206Z"},{"ID":31100,"Name":"052","Points":10490,"X":339,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292207Z"},{"ID":31101,"Name":"Asaret","Points":12021,"X":650,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":699611673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292208Z"},{"ID":31102,"Name":"Cleveland","Points":10068,"X":601,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292208Z"},{"ID":31103,"Name":"E012","Points":4111,"X":661,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292209Z"},{"ID":31104,"Name":"002","Points":4276,"X":662,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29221Z"},{"ID":31105,"Name":"184..","Points":6298,"X":350,"Y":592,"Continent":"K53","Bonus":6,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292211Z"},{"ID":31106,"Name":"Lord Lord Franek .#096","Points":10252,"X":511,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292211Z"},{"ID":31107,"Name":"ASD","Points":10728,"X":680,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292212Z"},{"ID":31108,"Name":"Wioska barbarzyƄska","Points":8159,"X":342,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292213Z"},{"ID":31109,"Name":"Didi","Points":10971,"X":654,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292214Z"},{"ID":31110,"Name":"Wioska barbarzyƄska","Points":10728,"X":672,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292214Z"},{"ID":31111,"Name":"168...LordRDW","Points":6611,"X":443,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292215Z"},{"ID":31113,"Name":"0292","Points":9625,"X":570,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292216Z"},{"ID":31114,"Name":"Wioska barbarzyƄska","Points":5488,"X":453,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292216Z"},{"ID":31115,"Name":"Wioska barbarzyƄska","Points":9232,"X":522,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292217Z"},{"ID":31116,"Name":"Szlachcic","Points":10495,"X":394,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292218Z"},{"ID":31117,"Name":"Amur","Points":7261,"X":329,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292219Z"},{"ID":31118,"Name":"Chekku - meito","Points":9976,"X":327,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29222Z"},{"ID":31120,"Name":"58. KaruTown","Points":9711,"X":662,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29222Z"},{"ID":31121,"Name":"*5612*e Nasza szansa","Points":10287,"X":657,"Y":580,"Continent":"K56","Bonus":3,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292221Z"},{"ID":31122,"Name":"-013-","Points":9814,"X":339,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292222Z"},{"ID":31123,"Name":"**15**","Points":9013,"X":634,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292222Z"},{"ID":31124,"Name":"Wioska Bochun10","Points":10311,"X":329,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292223Z"},{"ID":31125,"Name":"014 ZƂoty dziewięćdziesiąt pięć","Points":10144,"X":386,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292224Z"},{"ID":31126,"Name":"Pobozowisko","Points":10971,"X":375,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292225Z"},{"ID":31127,"Name":"Wioska 102","Points":8231,"X":649,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292226Z"},{"ID":31128,"Name":"Erebor 5","Points":8874,"X":498,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292226Z"},{"ID":31129,"Name":"Po ƛwiętach","Points":10066,"X":607,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292227Z"},{"ID":31130,"Name":"Wioska barbarzyƄska","Points":9379,"X":507,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292228Z"},{"ID":31131,"Name":"Jaaa","Points":9460,"X":670,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292228Z"},{"ID":31132,"Name":"52. KaruTown","Points":5987,"X":642,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292229Z"},{"ID":31133,"Name":"Krosno 8","Points":2819,"X":534,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":7485877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29223Z"},{"ID":31134,"Name":"- DragonA","Points":9145,"X":547,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292231Z"},{"ID":31135,"Name":"WesoƂych ƚwiąt","Points":4947,"X":563,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292231Z"},{"ID":31136,"Name":"#Bakasta","Points":8494,"X":436,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292232Z"},{"ID":31137,"Name":"027 Pont Vanis","Points":6433,"X":467,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292233Z"},{"ID":31139,"Name":"02 Zamek","Points":8454,"X":539,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292233Z"},{"ID":31140,"Name":"136...barb","Points":6565,"X":444,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292234Z"},{"ID":31141,"Name":"SPOCENI KUZYNI","Points":9302,"X":417,"Y":647,"Continent":"K64","Bonus":5,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292235Z"},{"ID":31142,"Name":"Wioska barbarzyƄska","Points":8275,"X":452,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292236Z"},{"ID":31143,"Name":"Myk i do kieszonki","Points":5949,"X":347,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292236Z"},{"ID":31144,"Name":"0165","Points":10019,"X":544,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292237Z"},{"ID":31145,"Name":"Bocianikson019","Points":5022,"X":660,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292238Z"},{"ID":31146,"Name":"Sony 911","Points":9886,"X":616,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292239Z"},{"ID":31147,"Name":"! Stark Tower","Points":10452,"X":627,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292239Z"},{"ID":31148,"Name":"WB 04","Points":8307,"X":637,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29224Z"},{"ID":31149,"Name":"M181_030","Points":9649,"X":340,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292241Z"},{"ID":31150,"Name":"009","Points":9284,"X":362,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292242Z"},{"ID":31151,"Name":"Wyspa 014","Points":9489,"X":624,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292242Z"},{"ID":31152,"Name":"#Sk_015","Points":3140,"X":437,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292243Z"},{"ID":31153,"Name":".achim.","Points":10311,"X":485,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292244Z"},{"ID":31154,"Name":"*4601* Ostra gra","Points":10287,"X":675,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292245Z"},{"ID":31155,"Name":"OrzeƂ WylądowaƂ","Points":6766,"X":458,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292245Z"},{"ID":31156,"Name":"Wioska barbarzyƄska","Points":10223,"X":556,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292246Z"},{"ID":31157,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":639,"Y":604,"Continent":"K66","Bonus":5,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292247Z"},{"ID":31158,"Name":"Wioska 047","Points":9761,"X":646,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292247Z"},{"ID":31159,"Name":"C0273","Points":9250,"X":325,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292248Z"},{"ID":31160,"Name":"Wioska barbarzyƄska","Points":7523,"X":544,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292249Z"},{"ID":31161,"Name":"41k$ Grvvyq","Points":9422,"X":652,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29225Z"},{"ID":31162,"Name":"- DragonF","Points":7321,"X":548,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29225Z"},{"ID":31163,"Name":"Deveste ufam Tobie","Points":10000,"X":393,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292251Z"},{"ID":31164,"Name":"Merkury","Points":4241,"X":547,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292252Z"},{"ID":31165,"Name":"017 Bremervoord","Points":8524,"X":468,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292253Z"},{"ID":31166,"Name":"Jednak wolę gofry","Points":10030,"X":418,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292253Z"},{"ID":31167,"Name":"Wioska barbarzyƄska","Points":9835,"X":582,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292254Z"},{"ID":31168,"Name":"Gattacka","Points":9860,"X":617,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292255Z"},{"ID":31169,"Name":"Architekci PlacĂłw Boju","Points":9370,"X":336,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292256Z"},{"ID":31170,"Name":"49k$ Grvvyq","Points":7238,"X":655,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292256Z"},{"ID":31171,"Name":"Wioska 121","Points":9039,"X":672,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292257Z"},{"ID":31172,"Name":"|C| Southgulf","Points":10636,"X":508,"Y":669,"Continent":"K65","Bonus":5,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292258Z"},{"ID":31173,"Name":"Wioska Bochun10","Points":4317,"X":332,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292259Z"},{"ID":31174,"Name":"deff 100 %","Points":8747,"X":346,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292259Z"},{"ID":31175,"Name":"Wioska barbarzyƄska","Points":8429,"X":448,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29226Z"},{"ID":31176,"Name":"Wioska Bochun10","Points":10311,"X":330,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292261Z"},{"ID":31177,"Name":"*174*","Points":10211,"X":347,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292262Z"},{"ID":31178,"Name":"Ć»UBR .::.B.E.T.O.N /6","Points":10065,"X":626,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292262Z"},{"ID":31179,"Name":"Wrath 008","Points":9771,"X":574,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292263Z"},{"ID":31180,"Name":"028","Points":9842,"X":477,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292264Z"},{"ID":31181,"Name":"Westfold.015","Points":7192,"X":346,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292265Z"},{"ID":31182,"Name":"Wallie","Points":4020,"X":647,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292265Z"},{"ID":31183,"Name":"Ć»UBR .::.Adaczu/01","Points":7039,"X":608,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292266Z"},{"ID":31184,"Name":"Taran","Points":10728,"X":675,"Y":499,"Continent":"K46","Bonus":9,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292267Z"},{"ID":31185,"Name":"Szlachcic/Taran","Points":7094,"X":610,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292267Z"},{"ID":31186,"Name":"*128*","Points":10211,"X":365,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292268Z"},{"ID":31187,"Name":"O35 Akita","Points":8044,"X":671,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292269Z"},{"ID":31188,"Name":"Gra o Tron","Points":10019,"X":612,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29227Z"},{"ID":31189,"Name":"_PUSTA+","Points":10160,"X":669,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29227Z"},{"ID":31190,"Name":"Ow Konfederacja","Points":9787,"X":601,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292271Z"},{"ID":31191,"Name":"Ręcznik do zmiany","Points":10019,"X":354,"Y":406,"Continent":"K43","Bonus":8,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292272Z"},{"ID":31192,"Name":"A001 mpiechu","Points":10208,"X":669,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292273Z"},{"ID":31193,"Name":"A0268","Points":10362,"X":328,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292273Z"},{"ID":31194,"Name":"Wioska barbarzyƄska","Points":8723,"X":400,"Y":357,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292274Z"},{"ID":31195,"Name":"Chekku - meito","Points":9976,"X":325,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292275Z"},{"ID":31196,"Name":"Bagdad","Points":10068,"X":487,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292276Z"},{"ID":31197,"Name":"*022","Points":9700,"X":602,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292276Z"},{"ID":31200,"Name":"zzzRezygnacja 03","Points":9141,"X":630,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292277Z"},{"ID":31201,"Name":"139...barba","Points":5984,"X":443,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292278Z"},{"ID":31202,"Name":"*056*","Points":10211,"X":360,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292279Z"},{"ID":31203,"Name":"#0092 barbarzyƄska","Points":9557,"X":467,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292279Z"},{"ID":31204,"Name":"Kiedyƛ Wielki Wojownik","Points":6477,"X":590,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29228Z"},{"ID":31205,"Name":"#114#","Points":8354,"X":639,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292281Z"},{"ID":31207,"Name":"[B]_[019] Dejv.oldplyr","Points":10636,"X":422,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292281Z"},{"ID":31208,"Name":"Taran","Points":9957,"X":340,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292282Z"},{"ID":31209,"Name":"#0053 geryk","Points":10178,"X":469,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292283Z"},{"ID":31210,"Name":"Jaaa","Points":10484,"X":676,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292284Z"},{"ID":31211,"Name":"0148","Points":6074,"X":635,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292284Z"},{"ID":31213,"Name":"sony911","Points":9967,"X":619,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292285Z"},{"ID":31214,"Name":"#0069 tomek791103","Points":10178,"X":479,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292286Z"},{"ID":31215,"Name":"A014 Barba","Points":10379,"X":663,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292287Z"},{"ID":31216,"Name":"Kentin ufam Tobie","Points":11074,"X":334,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292287Z"},{"ID":31217,"Name":"Psycha Siada","Points":7470,"X":449,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292288Z"},{"ID":31218,"Name":"Wioska barbarzyƄska","Points":2330,"X":351,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292289Z"},{"ID":31219,"Name":"Chekku - meito","Points":9976,"X":330,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29229Z"},{"ID":31220,"Name":"J#018","Points":9797,"X":574,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29229Z"},{"ID":31221,"Name":"- DragonE","Points":7760,"X":548,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292291Z"},{"ID":31222,"Name":"C0068","Points":10362,"X":324,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292292Z"},{"ID":31223,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":564,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292293Z"},{"ID":31224,"Name":"*249*","Points":10209,"X":337,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292293Z"},{"ID":31225,"Name":"Taran","Points":10728,"X":672,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292294Z"},{"ID":31226,"Name":"Happy station","Points":3636,"X":643,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292295Z"},{"ID":31227,"Name":"deff 100 %","Points":8864,"X":344,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292296Z"},{"ID":31228,"Name":"~046.","Points":10495,"X":473,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292296Z"},{"ID":31229,"Name":"Sony 911","Points":9754,"X":619,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292297Z"},{"ID":31230,"Name":"Szlachcic","Points":10160,"X":395,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292298Z"},{"ID":31231,"Name":"#0107 tomek791103","Points":10178,"X":481,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292299Z"},{"ID":31232,"Name":"J#022","Points":9692,"X":573,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292299Z"},{"ID":31233,"Name":"**11**","Points":9925,"X":633,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2923Z"},{"ID":31234,"Name":"Szlachcic","Points":10241,"X":397,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292301Z"},{"ID":31235,"Name":"Inny plan","Points":10160,"X":629,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292302Z"},{"ID":31236,"Name":"Wioska barbarzyƄska","Points":10474,"X":608,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292302Z"},{"ID":31237,"Name":"ABC","Points":8989,"X":652,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292303Z"},{"ID":31238,"Name":"Taran","Points":10728,"X":677,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292304Z"},{"ID":31239,"Name":"SOKzGUMIjagĂłd","Points":4927,"X":595,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292304Z"},{"ID":31240,"Name":"*016","Points":9016,"X":595,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292305Z"},{"ID":31241,"Name":"Ob Konfederacja","Points":5669,"X":435,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292306Z"},{"ID":31242,"Name":"078. Ambracia","Points":9539,"X":653,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292307Z"},{"ID":31243,"Name":"*001","Points":9016,"X":598,"Y":643,"Continent":"K65","Bonus":2,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292307Z"},{"ID":31244,"Name":"0230","Points":10083,"X":555,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292308Z"},{"ID":31245,"Name":"[192]","Points":9761,"X":539,"Y":513,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292309Z"},{"ID":31246,"Name":"156 Nocny Jastrząb 001","Points":9070,"X":645,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29231Z"},{"ID":31247,"Name":"D05 Macko więcej deffa.","Points":7084,"X":459,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29231Z"},{"ID":31248,"Name":"Klen","Points":9398,"X":330,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292311Z"},{"ID":31250,"Name":"PUSTO","Points":4404,"X":637,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292312Z"},{"ID":31251,"Name":"Qadros","Points":10151,"X":675,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292313Z"},{"ID":31252,"Name":"008 Wioska barbarzyƄska","Points":8859,"X":383,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292313Z"},{"ID":31253,"Name":"North Barba 046","Points":9396,"X":423,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292314Z"},{"ID":31254,"Name":"**43**","Points":8956,"X":665,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292315Z"},{"ID":31255,"Name":"1v9 machine","Points":10019,"X":389,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292316Z"},{"ID":31256,"Name":"C0164","Points":10362,"X":328,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292316Z"},{"ID":31257,"Name":"Bagienko.Anker...","Points":4010,"X":372,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292317Z"},{"ID":31258,"Name":"Bagdad","Points":10068,"X":483,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292318Z"},{"ID":31259,"Name":"sony911","Points":10203,"X":589,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292319Z"},{"ID":31260,"Name":"I050","Points":9738,"X":668,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292319Z"},{"ID":31261,"Name":"Be patient","Points":9835,"X":509,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29232Z"},{"ID":31262,"Name":"0072","Points":6569,"X":409,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292321Z"},{"ID":31263,"Name":"B.021","Points":10000,"X":677,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292322Z"},{"ID":31264,"Name":"Osada koczownikĂłw","Points":10495,"X":549,"Y":662,"Continent":"K65","Bonus":8,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292322Z"},{"ID":31265,"Name":"*214*","Points":5207,"X":350,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292323Z"},{"ID":31266,"Name":"Kentin ufam Tobie","Points":10000,"X":328,"Y":459,"Continent":"K43","Bonus":3,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292324Z"},{"ID":31267,"Name":"073","Points":9860,"X":661,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292324Z"},{"ID":31268,"Name":"Taran","Points":10728,"X":673,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292325Z"},{"ID":31269,"Name":"56k$ Grvvyq","Points":8513,"X":653,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292326Z"},{"ID":31270,"Name":"Wioska barbarzyƄska","Points":7171,"X":544,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292327Z"},{"ID":31271,"Name":"WesoƂych ƚwiąt","Points":9924,"X":578,"Y":350,"Continent":"K35","Bonus":3,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292327Z"},{"ID":31272,"Name":"[171]","Points":8117,"X":649,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292328Z"},{"ID":31273,"Name":"*126*","Points":10211,"X":363,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292329Z"},{"ID":31274,"Name":"003 Ɓuk Kurski","Points":11281,"X":608,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29233Z"},{"ID":31275,"Name":"Lord Lord Franek .#171","Points":10144,"X":507,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29233Z"},{"ID":31276,"Name":"064","Points":6767,"X":677,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292331Z"},{"ID":31277,"Name":"Szlachcic","Points":7595,"X":396,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292332Z"},{"ID":31278,"Name":"Dark hill","Points":3648,"X":647,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292333Z"},{"ID":31279,"Name":"Wioska bada","Points":6085,"X":494,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292333Z"},{"ID":31280,"Name":"Pobozowisko","Points":9543,"X":364,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292334Z"},{"ID":31281,"Name":"*248*","Points":6465,"X":335,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292335Z"},{"ID":31282,"Name":"Ręcznik do zmiany","Points":10019,"X":355,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292336Z"},{"ID":31283,"Name":"Wioska barbarzyƄska","Points":9706,"X":596,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292336Z"},{"ID":31284,"Name":"Wioska barbarzyƄska","Points":9835,"X":578,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292337Z"},{"ID":31285,"Name":"044","Points":9363,"X":665,"Y":545,"Continent":"K56","Bonus":7,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292338Z"},{"ID":31286,"Name":"Bairro Alto","Points":7772,"X":348,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292339Z"},{"ID":31287,"Name":"Wioska barbarzyƄska","Points":9862,"X":510,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292339Z"},{"ID":31288,"Name":"002","Points":8414,"X":601,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29234Z"},{"ID":31289,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":384,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292341Z"},{"ID":31291,"Name":"0276","Points":9818,"X":555,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292342Z"},{"ID":31292,"Name":"Lord Lord Franek .#182","Points":12154,"X":543,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292342Z"},{"ID":31293,"Name":"0428","Points":10019,"X":551,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292343Z"},{"ID":31294,"Name":"Wioska barbarzyƄska","Points":10216,"X":561,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292344Z"},{"ID":31295,"Name":"Ć»ubr .::. Metanol Lecter/5","Points":9719,"X":607,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292344Z"},{"ID":31296,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":640,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292345Z"},{"ID":31297,"Name":"81 Ta ostatnia Niedziela :)998(:","Points":5650,"X":523,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":2571407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292346Z"},{"ID":31298,"Name":"00571 Wioska","Points":9248,"X":446,"Y":425,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292347Z"},{"ID":31299,"Name":"Wioska barbarzyƄska","Points":10218,"X":558,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292347Z"},{"ID":31300,"Name":"E013","Points":7598,"X":660,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292348Z"},{"ID":31301,"Name":"Psycha Siada","Points":7455,"X":447,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292349Z"},{"ID":31302,"Name":"Village","Points":11466,"X":506,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29235Z"},{"ID":31303,"Name":"Taran 033","Points":9835,"X":620,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29235Z"},{"ID":31304,"Name":"EKG .::. Mat26/1","Points":10495,"X":496,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292351Z"},{"ID":31305,"Name":"Wioska barbarzyƄska","Points":9835,"X":579,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292352Z"},{"ID":31306,"Name":"Ave Why!","Points":4309,"X":500,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292353Z"},{"ID":31307,"Name":"Wioska barbarzyƄska","Points":8343,"X":677,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292353Z"},{"ID":31308,"Name":"Deveste ufam Tobie","Points":10000,"X":398,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292354Z"},{"ID":31309,"Name":"Zeta Reticuli W","Points":6575,"X":360,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292355Z"},{"ID":31310,"Name":"Sk_006","Points":9835,"X":438,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292356Z"},{"ID":31311,"Name":"Wioska barbarzyƄska","Points":6754,"X":352,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292356Z"},{"ID":31313,"Name":"*051*","Points":10211,"X":356,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292357Z"},{"ID":31314,"Name":"#0051","Points":10495,"X":541,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292358Z"},{"ID":31315,"Name":"Wioska barbarzyƄska","Points":4270,"X":602,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292359Z"},{"ID":31317,"Name":"Wioska barbarzyƄska","Points":8450,"X":672,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292359Z"},{"ID":31318,"Name":"0615","Points":9780,"X":478,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29236Z"},{"ID":31319,"Name":"Szulernia","Points":9983,"X":387,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292361Z"},{"ID":31320,"Name":"C0276","Points":7801,"X":326,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292362Z"},{"ID":31321,"Name":"Jednak wolę gofry","Points":8027,"X":419,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292362Z"},{"ID":31322,"Name":"[B]_[020] Dejv.oldplyr","Points":10233,"X":422,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292363Z"},{"ID":31323,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":562,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292364Z"},{"ID":31324,"Name":"Forza 11","Points":9507,"X":440,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292364Z"},{"ID":31325,"Name":"120","Points":4298,"X":652,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292365Z"},{"ID":31326,"Name":"0074","Points":6482,"X":416,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292366Z"},{"ID":31328,"Name":"C004","Points":10160,"X":361,"Y":598,"Continent":"K53","Bonus":9,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292367Z"},{"ID":31330,"Name":"001.","Points":2347,"X":557,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292368Z"},{"ID":31331,"Name":"Wioska barbarzyƄska","Points":10158,"X":673,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292368Z"},{"ID":31332,"Name":"014 Szachy - Hetman","Points":9835,"X":364,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292369Z"},{"ID":31333,"Name":"Plls2","Points":3914,"X":654,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29237Z"},{"ID":31334,"Name":"Wioska Westor 5","Points":4629,"X":358,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699530673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292371Z"},{"ID":31335,"Name":"krytl11","Points":10068,"X":514,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292371Z"},{"ID":31336,"Name":"0442","Points":7836,"X":534,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292372Z"},{"ID":31337,"Name":"Bezimienni Bytom","Points":9528,"X":585,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292373Z"},{"ID":31338,"Name":"A 002","Points":10259,"X":367,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292374Z"},{"ID":31339,"Name":"Wioska 103","Points":6964,"X":648,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292374Z"},{"ID":31340,"Name":"AAA","Points":9656,"X":529,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292375Z"},{"ID":31341,"Name":"59k$ Grvvyq","Points":7615,"X":654,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292376Z"},{"ID":31342,"Name":"108","Points":5700,"X":616,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292376Z"},{"ID":31344,"Name":"Kentin ufam Tobie","Points":10000,"X":330,"Y":454,"Continent":"K43","Bonus":2,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292377Z"},{"ID":31345,"Name":"0574","Points":10019,"X":565,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292378Z"},{"ID":31346,"Name":"029","Points":7512,"X":602,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292379Z"},{"ID":31347,"Name":"011 TrĂłjmiasto 2/3","Points":9835,"X":388,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292379Z"},{"ID":31348,"Name":"0075","Points":10083,"X":545,"Y":668,"Continent":"K65","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29238Z"},{"ID":31349,"Name":"Horyzont zdarzeƄ","Points":10019,"X":526,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292381Z"},{"ID":31350,"Name":"Jaaa","Points":10476,"X":672,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292382Z"},{"ID":31351,"Name":"City","Points":4865,"X":655,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292382Z"},{"ID":31352,"Name":"Wioska barbarzyƄska","Points":9835,"X":575,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292383Z"},{"ID":31353,"Name":"I045 Czy ten Pan i Pani","Points":10160,"X":670,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292384Z"},{"ID":31354,"Name":"I020","Points":10346,"X":665,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292385Z"},{"ID":31355,"Name":"Bagdad","Points":10068,"X":487,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292385Z"},{"ID":31356,"Name":"|C| Oflashoot","Points":6297,"X":500,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292386Z"},{"ID":31357,"Name":"Dąbrowa 0019","Points":4346,"X":359,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292387Z"},{"ID":31358,"Name":"strych","Points":3289,"X":379,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":848905770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292388Z"},{"ID":31359,"Name":"PiekƂo to inni","Points":10160,"X":603,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292388Z"},{"ID":31360,"Name":"C0283","Points":5578,"X":324,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292389Z"},{"ID":31361,"Name":"Berlin","Points":10216,"X":548,"Y":355,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29239Z"},{"ID":31362,"Name":"Wioska 097","Points":8389,"X":644,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292391Z"},{"ID":31363,"Name":".9.","Points":8117,"X":610,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292391Z"},{"ID":31364,"Name":"002","Points":8450,"X":651,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292392Z"},{"ID":31365,"Name":"|039| Symi","Points":9858,"X":490,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292393Z"},{"ID":31367,"Name":"Zero Stresu","Points":10008,"X":447,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292394Z"},{"ID":31368,"Name":"A0269","Points":10362,"X":329,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292394Z"},{"ID":31369,"Name":"Lord Arsey KING","Points":10285,"X":582,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292395Z"},{"ID":31370,"Name":"Wioska barbarzyƄska","Points":8759,"X":670,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292396Z"},{"ID":31371,"Name":"PiekƂo to inni","Points":10083,"X":514,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292397Z"},{"ID":31372,"Name":"AAA","Points":9667,"X":532,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292397Z"},{"ID":31373,"Name":"Monetkownia","Points":10237,"X":628,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292398Z"},{"ID":31374,"Name":"234...cENTR","Points":3983,"X":463,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292399Z"},{"ID":31375,"Name":"Lord Lord Franek .#132","Points":7619,"X":519,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2924Z"},{"ID":31376,"Name":"AAA","Points":9478,"X":538,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.2924Z"},{"ID":31377,"Name":"024 idea","Points":10151,"X":660,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292401Z"},{"ID":31378,"Name":"M181_027","Points":9673,"X":338,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292402Z"},{"ID":31379,"Name":"Kentin ufam Tobie","Points":10000,"X":330,"Y":461,"Continent":"K43","Bonus":2,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292403Z"},{"ID":31380,"Name":"|021| Samaria","Points":8983,"X":501,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292403Z"},{"ID":31381,"Name":"*061*","Points":10211,"X":354,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292404Z"},{"ID":31383,"Name":"OrzeƂ WylądowaƂ","Points":10087,"X":461,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292405Z"},{"ID":31384,"Name":"B004","Points":10898,"X":470,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292405Z"},{"ID":31385,"Name":"*189*","Points":9484,"X":374,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292406Z"},{"ID":31386,"Name":"*024","Points":9711,"X":602,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292407Z"},{"ID":31387,"Name":"SOKzGUMIjagĂłd","Points":9896,"X":600,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292408Z"},{"ID":31388,"Name":"006 Avalon","Points":6682,"X":374,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292408Z"},{"ID":31389,"Name":"Wioska barbarzyƄska","Points":6137,"X":546,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699066118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292409Z"},{"ID":31390,"Name":"Szulernia","Points":2784,"X":380,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29241Z"},{"ID":31391,"Name":"Westfold.005","Points":10178,"X":348,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292411Z"},{"ID":31392,"Name":"Wioska Westor 3","Points":4735,"X":358,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699530673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292411Z"},{"ID":31393,"Name":"016 .10. Infanterie-Division","Points":2239,"X":597,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292412Z"},{"ID":31394,"Name":"0062","Points":6434,"X":671,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292413Z"},{"ID":31395,"Name":"1.11","Points":5111,"X":339,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292414Z"},{"ID":31396,"Name":"A 010","Points":5894,"X":371,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292415Z"},{"ID":31397,"Name":".:001:. gr","Points":10241,"X":635,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292415Z"},{"ID":31398,"Name":"C0262","Points":8900,"X":323,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292416Z"},{"ID":31399,"Name":"fff","Points":8580,"X":491,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292417Z"},{"ID":31400,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":564,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292418Z"},{"ID":31402,"Name":"**18**","Points":9057,"X":630,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292418Z"},{"ID":31403,"Name":"Dajanka 33","Points":1031,"X":347,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292419Z"},{"ID":31404,"Name":"Wioska barbarzyƄska","Points":6316,"X":669,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29242Z"},{"ID":31405,"Name":"*007*","Points":10211,"X":355,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292421Z"},{"ID":31406,"Name":"*150*","Points":10211,"X":351,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292421Z"},{"ID":31407,"Name":"Deveste ufam Tobie","Points":10000,"X":399,"Y":639,"Continent":"K63","Bonus":3,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292422Z"},{"ID":31408,"Name":"Wioska r 1","Points":4657,"X":555,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292423Z"},{"ID":31409,"Name":"Osada koczownikĂłw","Points":8758,"X":655,"Y":586,"Continent":"K56","Bonus":7,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292424Z"},{"ID":31410,"Name":"Wioska 06","Points":7747,"X":499,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292424Z"},{"ID":31411,"Name":"A24","Points":11321,"X":473,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292425Z"},{"ID":31412,"Name":"Gilonia","Points":7688,"X":513,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292426Z"},{"ID":31413,"Name":"017","Points":9993,"X":518,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292427Z"},{"ID":31414,"Name":"012 TrĂłjmiasto 3/3","Points":9835,"X":385,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292427Z"},{"ID":31415,"Name":"*129*","Points":10211,"X":365,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292428Z"},{"ID":31416,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292429Z"},{"ID":31417,"Name":"Kreskowo_4","Points":9799,"X":594,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292429Z"},{"ID":31418,"Name":"Wioska Bochun10","Points":10452,"X":326,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29243Z"},{"ID":31419,"Name":"Z|001| Mediolan","Points":9250,"X":471,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292431Z"},{"ID":31420,"Name":"OSADA II","Points":7803,"X":677,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292432Z"},{"ID":31421,"Name":"Szulernia","Points":7759,"X":382,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292432Z"},{"ID":31422,"Name":"21k$ Grvvyq","Points":10495,"X":657,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292433Z"},{"ID":31423,"Name":"Dąbrowa 0021","Points":4928,"X":356,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292434Z"},{"ID":31424,"Name":"002","Points":2764,"X":335,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699800377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292435Z"},{"ID":31425,"Name":"[020] VW Klupo","Points":9312,"X":663,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292435Z"},{"ID":31426,"Name":"ADEN","Points":9769,"X":602,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292436Z"},{"ID":31427,"Name":"Szulernia","Points":9209,"X":387,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292437Z"},{"ID":31428,"Name":"Monetkownia","Points":10237,"X":625,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292438Z"},{"ID":31429,"Name":"I051","Points":9603,"X":670,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292438Z"},{"ID":31430,"Name":"Wioska barbarzyƄska","Points":8505,"X":569,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292439Z"},{"ID":31431,"Name":"Bunkier 004","Points":7631,"X":621,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29244Z"},{"ID":31432,"Name":"Wioska barbarzyƄska","Points":10728,"X":677,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292441Z"},{"ID":31433,"Name":"Architekci PlacĂłw Boju","Points":7393,"X":335,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292441Z"},{"ID":31434,"Name":"Warkoczynka 2","Points":12154,"X":611,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292442Z"},{"ID":31435,"Name":"Lord Lord Franek .#086","Points":9976,"X":517,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292443Z"},{"ID":31436,"Name":"040 Rabka ZdrĂłj Akademia","Points":2946,"X":371,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292444Z"},{"ID":31437,"Name":"026 * Lady Porto *","Points":10503,"X":644,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292444Z"},{"ID":31438,"Name":".:004:. gr","Points":9324,"X":636,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292445Z"},{"ID":31439,"Name":"BETON","Points":7944,"X":634,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292446Z"},{"ID":31440,"Name":"B 034","Points":9305,"X":667,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292447Z"},{"ID":31441,"Name":"001. Wioska Krugal 02","Points":8833,"X":577,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":1270916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292448Z"},{"ID":31442,"Name":"030. Upss","Points":7110,"X":514,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292448Z"},{"ID":31443,"Name":"09. Cintra","Points":612,"X":331,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292449Z"},{"ID":31444,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":378,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29245Z"},{"ID":31445,"Name":"cc Ć»or","Points":9350,"X":391,"Y":369,"Continent":"K33","Bonus":9,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292451Z"},{"ID":31447,"Name":"BoOmBaa..","Points":3648,"X":441,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292451Z"},{"ID":31448,"Name":"Wioska barbarzyƄska","Points":10034,"X":553,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292452Z"},{"ID":31451,"Name":"009","Points":10019,"X":604,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292453Z"},{"ID":31452,"Name":"Ƃódka","Points":9761,"X":329,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292453Z"},{"ID":31453,"Name":"Wioska barbarzyƄska","Points":5618,"X":611,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":310729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292454Z"},{"ID":31454,"Name":"055","Points":10336,"X":676,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292455Z"},{"ID":31455,"Name":"Adidas 2","Points":5055,"X":417,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":9191031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292456Z"},{"ID":31456,"Name":"029 - Jerez de la Frontera","Points":10019,"X":676,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292456Z"},{"ID":31457,"Name":"001","Points":10795,"X":611,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292457Z"},{"ID":31458,"Name":"027","Points":9584,"X":477,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292458Z"},{"ID":31460,"Name":"Szlachcic/Taran","Points":10237,"X":613,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292459Z"},{"ID":31461,"Name":"-005-","Points":5363,"X":544,"Y":331,"Continent":"K35","Bonus":3,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292459Z"},{"ID":31462,"Name":"cz Wioska 16","Points":4256,"X":365,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29246Z"},{"ID":31463,"Name":"M181_033","Points":10231,"X":339,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292461Z"},{"ID":31464,"Name":"-004- Amazonia","Points":10290,"X":578,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":699111651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292461Z"},{"ID":31465,"Name":"Centrum 2","Points":4256,"X":652,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292462Z"},{"ID":31466,"Name":"Wioska 01","Points":7822,"X":502,"Y":324,"Continent":"K35","Bonus":4,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292463Z"},{"ID":31467,"Name":"O tutaj","Points":9291,"X":601,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292464Z"},{"ID":31468,"Name":"*139*","Points":10211,"X":356,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292464Z"},{"ID":31469,"Name":"229 |","Points":7207,"X":644,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292465Z"},{"ID":31470,"Name":"Jaaa","Points":10351,"X":671,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292466Z"},{"ID":31471,"Name":"OFF","Points":8809,"X":670,"Y":524,"Continent":"K56","Bonus":9,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292467Z"},{"ID":31472,"Name":"Wioska Bochun10","Points":7701,"X":325,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292467Z"},{"ID":31473,"Name":"Nowy ƛwiat A","Points":4755,"X":340,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292468Z"},{"ID":31474,"Name":"0287","Points":9888,"X":545,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292469Z"},{"ID":31475,"Name":"WB2","Points":6295,"X":654,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29247Z"},{"ID":31476,"Name":"070 - woli","Points":10495,"X":426,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29247Z"},{"ID":31477,"Name":"Whiskey","Points":8902,"X":674,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292471Z"},{"ID":31478,"Name":"007","Points":9462,"X":359,"Y":606,"Continent":"K63","Bonus":9,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292472Z"},{"ID":31479,"Name":"Wioska 9","Points":7677,"X":531,"Y":517,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292472Z"},{"ID":31480,"Name":"002","Points":7303,"X":675,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292473Z"},{"ID":31481,"Name":"Jaaa","Points":9024,"X":671,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292474Z"},{"ID":31482,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292475Z"},{"ID":31483,"Name":"Szulernia","Points":4062,"X":378,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292476Z"},{"ID":31484,"Name":"Wioska barbarzyƄska","Points":4282,"X":669,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292476Z"},{"ID":31485,"Name":"Kentin ufam Tobie","Points":10000,"X":327,"Y":462,"Continent":"K43","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292477Z"},{"ID":31486,"Name":"deff 100 %","Points":10319,"X":342,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292478Z"},{"ID":31487,"Name":"golisz nogi ?","Points":10595,"X":592,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292478Z"},{"ID":31488,"Name":"Paranoje","Points":9486,"X":344,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":7318415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292479Z"},{"ID":31489,"Name":"054","Points":9284,"X":669,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.29248Z"},{"ID":31490,"Name":"Szlachcic/Taran","Points":9604,"X":619,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292481Z"},{"ID":31491,"Name":"1.13","Points":4326,"X":335,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292482Z"},{"ID":31492,"Name":"O43 Trabzon","Points":9003,"X":671,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292482Z"},{"ID":31493,"Name":"071","Points":10019,"X":601,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292483Z"},{"ID":31494,"Name":"Wioska barbarzyƄska","Points":2095,"X":331,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292484Z"},{"ID":31495,"Name":"010","Points":10019,"X":456,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292485Z"},{"ID":31496,"Name":"Stamford, Connecticut","Points":10047,"X":598,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.292485Z"},{"ID":31497,"Name":"psycha sitting","Points":2772,"X":426,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325711Z"},{"ID":31498,"Name":"AAA","Points":6700,"X":535,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325712Z"},{"ID":31499,"Name":"B 060","Points":6893,"X":671,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325713Z"},{"ID":31500,"Name":"-012-","Points":5544,"X":336,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325714Z"},{"ID":31501,"Name":"Bunkier 005","Points":6559,"X":623,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325715Z"},{"ID":31502,"Name":"0526","Points":10495,"X":534,"Y":672,"Continent":"K65","Bonus":5,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325715Z"},{"ID":31503,"Name":"Taran 001","Points":10971,"X":606,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325716Z"},{"ID":31504,"Name":"#0128 Thorus5","Points":9996,"X":474,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325717Z"},{"ID":31506,"Name":"222","Points":5493,"X":373,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325718Z"},{"ID":31507,"Name":".///...//././././././././","Points":7547,"X":371,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325718Z"},{"ID":31508,"Name":"Wioska barbarzyƄska","Points":10728,"X":677,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325719Z"},{"ID":31509,"Name":"0268","Points":9121,"X":542,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32572Z"},{"ID":31510,"Name":"Grupka 7 wiosek 5","Points":9662,"X":356,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325721Z"},{"ID":31511,"Name":"Wioska barbarzyƄska","Points":9242,"X":551,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325722Z"},{"ID":31512,"Name":"060 | PALESTINA","Points":5980,"X":655,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325722Z"},{"ID":31513,"Name":"Nie fulaj dewej na halba mamyjo","Points":3371,"X":328,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325723Z"},{"ID":31514,"Name":"Castle","Points":9240,"X":652,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325724Z"},{"ID":31515,"Name":"Chekku - meito","Points":10040,"X":326,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325724Z"},{"ID":31516,"Name":"OrzeƂ WylądowaƂ","Points":6965,"X":467,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325725Z"},{"ID":31517,"Name":"kto ananasowy pod wodą ma dom","Points":9555,"X":669,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325726Z"},{"ID":31518,"Name":"Wioska sobie 028","Points":8777,"X":401,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325727Z"},{"ID":31519,"Name":"C0142","Points":9466,"X":329,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325727Z"},{"ID":31520,"Name":"Winna","Points":5344,"X":574,"Y":659,"Continent":"K65","Bonus":2,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325728Z"},{"ID":31521,"Name":"*010*","Points":10495,"X":324,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325729Z"},{"ID":31522,"Name":"055","Points":10083,"X":459,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32573Z"},{"ID":31523,"Name":"0275","Points":8184,"X":540,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32573Z"},{"ID":31524,"Name":"Wioska barbarzyƄska","Points":8424,"X":451,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325731Z"},{"ID":31525,"Name":"371|619 Wioska barbarzyƄska","Points":6499,"X":619,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325732Z"},{"ID":31526,"Name":"BETON 065","Points":5216,"X":634,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325733Z"},{"ID":31527,"Name":"001Marcinmesi","Points":9177,"X":379,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325733Z"},{"ID":31528,"Name":"Myk i do kieszonki","Points":9799,"X":347,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325734Z"},{"ID":31529,"Name":"AAA","Points":9132,"X":536,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325735Z"},{"ID":31530,"Name":"Ave Why!","Points":9429,"X":475,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325735Z"},{"ID":31531,"Name":"019","Points":9993,"X":527,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325736Z"},{"ID":31532,"Name":"OrzeƂ WylądowaƂ","Points":7869,"X":456,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325737Z"},{"ID":31533,"Name":"Osada koczownikĂłw","Points":2572,"X":550,"Y":329,"Continent":"K35","Bonus":7,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325738Z"},{"ID":31534,"Name":"Lubieszyn","Points":8467,"X":656,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325738Z"},{"ID":31535,"Name":"Wioska barbarzyƄska","Points":5498,"X":385,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325739Z"},{"ID":31536,"Name":"?009","Points":9781,"X":542,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32574Z"},{"ID":31537,"Name":"Adidas 3","Points":3857,"X":415,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":9191031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325741Z"},{"ID":31538,"Name":"Szlachcic","Points":10300,"X":380,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325741Z"},{"ID":31539,"Name":"_PUSTA !","Points":6777,"X":674,"Y":525,"Continent":"K56","Bonus":6,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325742Z"},{"ID":31540,"Name":"Wonderwall","Points":9761,"X":332,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325743Z"},{"ID":31541,"Name":"Wioska 044","Points":9761,"X":646,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325744Z"},{"ID":31542,"Name":"Jehu_Kingdom_64","Points":5536,"X":661,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325744Z"},{"ID":31543,"Name":"|071| BlackBird 6","Points":10909,"X":473,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325745Z"},{"ID":31545,"Name":"Wioska barbarzyƄska","Points":10054,"X":672,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325746Z"},{"ID":31546,"Name":"*057","Points":8920,"X":604,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325747Z"},{"ID":31547,"Name":"Wioska barbarzyƄska","Points":9835,"X":578,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325747Z"},{"ID":31548,"Name":"Jednak wolę gofry","Points":7467,"X":426,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325748Z"},{"ID":31549,"Name":".:013:.","Points":4657,"X":631,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325749Z"},{"ID":31550,"Name":"Wioska barbarzyƄska","Points":9005,"X":672,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32575Z"},{"ID":31551,"Name":"060 komornicy","Points":6168,"X":335,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32575Z"},{"ID":31552,"Name":"[B]_[040] Dejv.oldplyr","Points":10495,"X":430,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325751Z"},{"ID":31553,"Name":"bandzior","Points":10303,"X":520,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325752Z"},{"ID":31555,"Name":"040 Szkoda mi Pe Pe na mur ;c","Points":9478,"X":387,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325752Z"},{"ID":31556,"Name":"Wioska barbarzyƄska","Points":1812,"X":440,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325753Z"},{"ID":31557,"Name":"Szlachcic/Taran","Points":10061,"X":641,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325754Z"},{"ID":31558,"Name":"Wioska r 8","Points":5623,"X":555,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325755Z"},{"ID":31559,"Name":".:002:.","Points":10233,"X":632,"Y":384,"Continent":"K36","Bonus":7,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325755Z"},{"ID":31560,"Name":"R 019 ~Wichrowy Tron~","Points":9213,"X":485,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325756Z"},{"ID":31561,"Name":"Wioska barbarzyƄska","Points":7103,"X":454,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325757Z"},{"ID":31562,"Name":"Witam Sąsiedzie :))","Points":1245,"X":339,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699800377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325758Z"},{"ID":31563,"Name":"004.","Points":7315,"X":579,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":1270916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325758Z"},{"ID":31564,"Name":"I#027","Points":9797,"X":616,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325759Z"},{"ID":31565,"Name":"Jadę na mopie !!","Points":10362,"X":587,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32576Z"},{"ID":31566,"Name":"[B]_[031] Dejv.oldplyr","Points":10046,"X":418,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325761Z"},{"ID":31567,"Name":"Silver dream","Points":3356,"X":648,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325761Z"},{"ID":31568,"Name":"011 Unternehmen Seelowe","Points":4810,"X":605,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325762Z"},{"ID":31569,"Name":"625|336","Points":9835,"X":607,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325763Z"},{"ID":31570,"Name":"psycha sitting","Points":3408,"X":436,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325764Z"},{"ID":31571,"Name":"002 Stalingrad","Points":11678,"X":605,"Y":360,"Continent":"K36","Bonus":7,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325764Z"},{"ID":31573,"Name":"ADEN","Points":9452,"X":578,"Y":347,"Continent":"K35","Bonus":5,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325765Z"},{"ID":31574,"Name":"Wioska klez 015","Points":6127,"X":324,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325766Z"},{"ID":31575,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325767Z"},{"ID":31576,"Name":"087","Points":9727,"X":664,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325767Z"},{"ID":31577,"Name":"001","Points":10019,"X":603,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325768Z"},{"ID":31578,"Name":"Deveste ufam Tobie","Points":10000,"X":399,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325769Z"},{"ID":31579,"Name":"*076*","Points":10211,"X":362,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32577Z"},{"ID":31580,"Name":"Wioska barbarzyƄska","Points":2800,"X":338,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32577Z"},{"ID":31581,"Name":"06 tonieostatnieslowo","Points":9976,"X":610,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325771Z"},{"ID":31582,"Name":"Wioska barbarzyƄska","Points":9835,"X":570,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325772Z"},{"ID":31583,"Name":"023","Points":8801,"X":469,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325773Z"},{"ID":31584,"Name":"#0056 barbarzyƄska","Points":10178,"X":469,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325773Z"},{"ID":31585,"Name":"Wioska plls","Points":8218,"X":652,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325774Z"},{"ID":31586,"Name":".///...//././././././././","Points":9752,"X":375,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325775Z"},{"ID":31587,"Name":"*183*","Points":10211,"X":378,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325775Z"},{"ID":31588,"Name":"Bagdad","Points":10178,"X":491,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325776Z"},{"ID":31589,"Name":"Wioska barbarzyƄska","Points":9835,"X":571,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325777Z"},{"ID":31590,"Name":"Jednak wolę gofry","Points":4051,"X":421,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325778Z"},{"ID":31591,"Name":"Nowa 49","Points":7589,"X":662,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325778Z"},{"ID":31592,"Name":"[B]_[028] Dejv.oldplyr","Points":10273,"X":434,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325779Z"},{"ID":31593,"Name":"013","Points":3672,"X":373,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849059457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32578Z"},{"ID":31594,"Name":"Lord Lord Franek .#089","Points":10301,"X":520,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325781Z"},{"ID":31595,"Name":"Ręcznik do zmiany","Points":10019,"X":353,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325781Z"},{"ID":31596,"Name":"Wioska barbarzyƄska","Points":10220,"X":555,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325782Z"},{"ID":31597,"Name":"B 056","Points":9515,"X":675,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325783Z"},{"ID":31598,"Name":"Centrum","Points":5903,"X":653,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325784Z"},{"ID":31599,"Name":"deff 100 %","Points":6806,"X":338,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325784Z"},{"ID":31600,"Name":"Wioska klez 016","Points":6659,"X":330,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325785Z"},{"ID":31601,"Name":"Monetkownia","Points":10237,"X":620,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325786Z"},{"ID":31602,"Name":"114","Points":6633,"X":658,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325787Z"},{"ID":31603,"Name":"Wioska V","Points":7588,"X":581,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325787Z"},{"ID":31604,"Name":"Wioska r 15","Points":3516,"X":559,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325788Z"},{"ID":31605,"Name":"07. Rivia","Points":1173,"X":333,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325789Z"},{"ID":31606,"Name":"B 009","Points":10064,"X":668,"Y":531,"Continent":"K56","Bonus":9,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32579Z"},{"ID":31607,"Name":"Deveste ufam Tobie","Points":10019,"X":395,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325791Z"},{"ID":31608,"Name":"B.06","Points":9356,"X":670,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325791Z"},{"ID":31610,"Name":".:008:.","Points":5586,"X":635,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325792Z"},{"ID":31611,"Name":"018 Szachy - Goniec","Points":5245,"X":361,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325793Z"},{"ID":31612,"Name":"Wioska barbarzyƄska","Points":5927,"X":367,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325794Z"},{"ID":31613,"Name":"A28","Points":8453,"X":475,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325795Z"},{"ID":31614,"Name":"B 002","Points":10273,"X":667,"Y":535,"Continent":"K56","Bonus":1,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325795Z"},{"ID":31616,"Name":"Wioska barbarzyƄska","Points":10018,"X":673,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325796Z"},{"ID":31617,"Name":"Wioska Bochun10","Points":9689,"X":328,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325797Z"},{"ID":31618,"Name":"210","Points":8471,"X":668,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325798Z"},{"ID":31619,"Name":"A 001","Points":10946,"X":369,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325798Z"},{"ID":31620,"Name":"Chekku - meito","Points":9976,"X":328,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325799Z"},{"ID":31621,"Name":"Wypizdow dolny","Points":10237,"X":673,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3258Z"},{"ID":31622,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":567,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325801Z"},{"ID":31623,"Name":"A 007","Points":10237,"X":368,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325802Z"},{"ID":31624,"Name":"PiekƂo to inni","Points":6480,"X":588,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325802Z"},{"ID":31625,"Name":"Ob Konfederacja","Points":8620,"X":443,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325803Z"},{"ID":31626,"Name":"I031","Points":10064,"X":665,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325804Z"},{"ID":31627,"Name":"025","Points":9812,"X":631,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325805Z"},{"ID":31628,"Name":"*137*","Points":10211,"X":352,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325805Z"},{"ID":31629,"Name":"13. Metinna","Points":295,"X":333,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325806Z"},{"ID":31630,"Name":"053 Arkansas","Points":9500,"X":675,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325807Z"},{"ID":31631,"Name":"Ob Konfederacja","Points":9039,"X":437,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325808Z"},{"ID":31632,"Name":"#003#","Points":9761,"X":625,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325808Z"},{"ID":31633,"Name":"Bagienko.Anker...","Points":3135,"X":374,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325809Z"},{"ID":31634,"Name":"*133*","Points":10211,"X":353,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32581Z"},{"ID":31635,"Name":"GrĂłd 2","Points":7387,"X":471,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":699204478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325811Z"},{"ID":31636,"Name":"055 | PALESTINA","Points":4098,"X":652,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325811Z"},{"ID":31637,"Name":"AAA","Points":9573,"X":531,"Y":329,"Continent":"K35","Bonus":9,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325812Z"},{"ID":31638,"Name":"03.Mordo :)","Points":3182,"X":448,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":361125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325813Z"},{"ID":31639,"Name":"065","Points":9976,"X":452,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325814Z"},{"ID":31640,"Name":"Wioska barbarzyƄska","Points":349,"X":631,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325815Z"},{"ID":31641,"Name":"Sekou","Points":9688,"X":676,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325815Z"},{"ID":31642,"Name":"=|29|=","Points":10495,"X":641,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325816Z"},{"ID":31643,"Name":"Ruska onuca","Points":10495,"X":588,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325817Z"},{"ID":31644,"Name":"WB3","Points":6551,"X":650,"Y":413,"Continent":"K46","Bonus":9,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325818Z"},{"ID":31645,"Name":"Jaaa","Points":10478,"X":672,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325818Z"},{"ID":31646,"Name":"010","Points":9647,"X":363,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325819Z"},{"ID":31647,"Name":"Wioska barbarzyƄska","Points":2342,"X":338,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32582Z"},{"ID":31648,"Name":"K34 x026","Points":7084,"X":402,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325821Z"},{"ID":31649,"Name":"025 przepis na serniczek","Points":10160,"X":506,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325821Z"},{"ID":31650,"Name":"11k$ Grvvyq","Points":10495,"X":663,"Y":568,"Continent":"K56","Bonus":8,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325822Z"},{"ID":31651,"Name":"2.Santander","Points":6668,"X":562,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325823Z"},{"ID":31652,"Name":"Darmowe przeprowadzki","Points":9809,"X":461,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325824Z"},{"ID":31653,"Name":"#054#","Points":9761,"X":627,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325825Z"},{"ID":31654,"Name":"Lord Lord Franek .#107","Points":10316,"X":507,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325825Z"},{"ID":31655,"Name":"A0270","Points":10362,"X":328,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325826Z"},{"ID":31656,"Name":"057 komornicy","Points":9835,"X":331,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325827Z"},{"ID":31657,"Name":"fff","Points":10268,"X":488,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325828Z"},{"ID":31658,"Name":"Wioska 117","Points":9878,"X":670,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325828Z"},{"ID":31659,"Name":"Wioska barbarzyƄska","Points":9419,"X":673,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325829Z"},{"ID":31660,"Name":"I021","Points":10476,"X":668,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32583Z"},{"ID":31661,"Name":"0617","Points":10019,"X":475,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325831Z"},{"ID":31662,"Name":"Wioska Bochun10","Points":3551,"X":323,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325831Z"},{"ID":31663,"Name":"*192*","Points":10211,"X":378,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325832Z"},{"ID":31664,"Name":"Architekci PlacĂłw Boju","Points":8329,"X":337,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325833Z"},{"ID":31665,"Name":"Wioska barbarzyƄska","Points":9835,"X":571,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325834Z"},{"ID":31666,"Name":"C0272","Points":8956,"X":325,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325834Z"},{"ID":31667,"Name":"069","Points":10019,"X":451,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325835Z"},{"ID":31668,"Name":"Deveste ufam Tobie","Points":10000,"X":396,"Y":640,"Continent":"K63","Bonus":9,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325836Z"},{"ID":31669,"Name":"018","Points":9993,"X":533,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325837Z"},{"ID":31670,"Name":"023","Points":6987,"X":664,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325837Z"},{"ID":31671,"Name":"psycha sitting","Points":10311,"X":426,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325838Z"},{"ID":31672,"Name":"C0281","Points":10362,"X":325,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325839Z"},{"ID":31673,"Name":"03Wioska barbarzyƄska","Points":8581,"X":388,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325839Z"},{"ID":31674,"Name":"[020]","Points":9445,"X":582,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32584Z"},{"ID":31675,"Name":"080. Napoca","Points":9542,"X":655,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325841Z"},{"ID":31676,"Name":"A 028","Points":6066,"X":368,"Y":615,"Continent":"K63","Bonus":7,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325842Z"},{"ID":31677,"Name":"#.45 Wioska barbarzyƄska","Points":4338,"X":670,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325842Z"},{"ID":31678,"Name":"Ob Konfederacja","Points":9682,"X":440,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325843Z"},{"ID":31679,"Name":"psycha sitting","Points":9948,"X":452,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325844Z"},{"ID":31680,"Name":"059 komornicy","Points":9747,"X":331,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325845Z"},{"ID":31681,"Name":"Wioska Bochun10","Points":12154,"X":338,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325845Z"},{"ID":31682,"Name":"cz Wioska 78","Points":4409,"X":367,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325846Z"},{"ID":31683,"Name":"Deveste ufam Tobie","Points":8311,"X":391,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325847Z"},{"ID":31684,"Name":"KampajĂłwka","Points":6782,"X":324,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325848Z"},{"ID":31685,"Name":"I022 Ty masz ten idealny stan","Points":9978,"X":667,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325848Z"},{"ID":31686,"Name":"Szlachcic","Points":10495,"X":390,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325849Z"},{"ID":31687,"Name":"1v9 machine","Points":10019,"X":390,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32585Z"},{"ID":31688,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":637,"Y":611,"Continent":"K66","Bonus":6,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325851Z"},{"ID":31689,"Name":"001 Kuba","Points":8448,"X":675,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325851Z"},{"ID":31690,"Name":"Wioska 105","Points":9761,"X":642,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325852Z"},{"ID":31691,"Name":"Wioska barbarzyƄska","Points":6557,"X":662,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325853Z"},{"ID":31692,"Name":"off 100 %","Points":9762,"X":340,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325854Z"},{"ID":31693,"Name":"*068*","Points":10211,"X":361,"Y":388,"Continent":"K33","Bonus":4,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325854Z"},{"ID":31694,"Name":"A005","Points":9948,"X":491,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325855Z"},{"ID":31695,"Name":"KNATIGOR","Points":10728,"X":678,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325856Z"},{"ID":31696,"Name":"020","Points":7627,"X":605,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325857Z"},{"ID":31697,"Name":"Arka Noego","Points":9344,"X":383,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325858Z"},{"ID":31698,"Name":"005","Points":8955,"X":363,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325858Z"},{"ID":31699,"Name":"069","Points":7652,"X":620,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325859Z"},{"ID":31700,"Name":"Myk i do kieszonki","Points":9799,"X":347,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32586Z"},{"ID":31701,"Name":"Komornik 004","Points":5222,"X":329,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325861Z"},{"ID":31702,"Name":"Kentin ufam Tobie","Points":10000,"X":332,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325861Z"},{"ID":31703,"Name":"Monetkownia","Points":10040,"X":616,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325862Z"},{"ID":31704,"Name":"AAA","Points":8760,"X":519,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325863Z"},{"ID":31705,"Name":"Wioska 010","Points":10168,"X":384,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325864Z"},{"ID":31706,"Name":"K34 x018","Points":9732,"X":410,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325864Z"},{"ID":31707,"Name":"0012 Podole","Points":6443,"X":386,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325865Z"},{"ID":31708,"Name":"C0052","Points":10362,"X":326,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325866Z"},{"ID":31709,"Name":"020 KrakĂłw","Points":9448,"X":405,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325866Z"},{"ID":31710,"Name":"*055*","Points":10211,"X":356,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325867Z"},{"ID":31711,"Name":"Wioska barbarzyƄska","Points":2571,"X":373,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325868Z"},{"ID":31712,"Name":"*167*","Points":9959,"X":348,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325869Z"},{"ID":31713,"Name":"0007","Points":9579,"X":616,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325869Z"},{"ID":31714,"Name":"A-042-Heffito","Points":10178,"X":404,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32587Z"},{"ID":31715,"Name":"Wioska barbarzyƄska","Points":10495,"X":503,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325871Z"},{"ID":31716,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":381,"Y":633,"Continent":"K63","Bonus":2,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325871Z"},{"ID":31717,"Name":"~~090~~","Points":7956,"X":635,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325872Z"},{"ID":31718,"Name":"Zeta Reticuli W","Points":8400,"X":362,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325873Z"},{"ID":31719,"Name":".:002:.","Points":12154,"X":372,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325874Z"},{"ID":31720,"Name":"0538","Points":5575,"X":563,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325874Z"},{"ID":31721,"Name":"Jaaa","Points":9632,"X":672,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325875Z"},{"ID":31722,"Name":"Muchomor *014*","Points":10433,"X":517,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325876Z"},{"ID":31723,"Name":"Wyspa 002","Points":10140,"X":623,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325877Z"},{"ID":31724,"Name":"Wioska barbarzyƄska","Points":10495,"X":503,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325877Z"},{"ID":31725,"Name":"OrzeƂ WylądowaƂ","Points":9541,"X":455,"Y":670,"Continent":"K64","Bonus":3,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325878Z"},{"ID":31726,"Name":"Lord Lord Franek .#149","Points":7829,"X":507,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325879Z"},{"ID":31727,"Name":"Ow Konfederacja","Points":10290,"X":612,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325879Z"},{"ID":31729,"Name":"**14**","Points":9573,"X":633,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32588Z"},{"ID":31730,"Name":"Dąbrowa 0020","Points":5283,"X":357,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325881Z"},{"ID":31731,"Name":"-014-","Points":9880,"X":337,"Y":561,"Continent":"K53","Bonus":1,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325882Z"},{"ID":31732,"Name":"007","Points":3118,"X":332,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699879556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325882Z"},{"ID":31733,"Name":"Jaaa","Points":10487,"X":675,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325883Z"},{"ID":31734,"Name":"Wioska barbarzyƄska","Points":5753,"X":462,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325884Z"},{"ID":31735,"Name":"wioska","Points":6942,"X":409,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325885Z"},{"ID":31736,"Name":"364|616Osada koczownikĂłw1","Points":10078,"X":616,"Y":364,"Continent":"K36","Bonus":7,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325885Z"},{"ID":31737,"Name":"660|426 Wioska barbarzyƄska","Points":4345,"X":660,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325886Z"},{"ID":31738,"Name":"Sekou","Points":9899,"X":674,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325887Z"},{"ID":31739,"Name":"#Fuegoleon","Points":10247,"X":436,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325888Z"},{"ID":31740,"Name":"012# Angelina","Points":9179,"X":472,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325888Z"},{"ID":31741,"Name":"Wioska Bochun10","Points":10311,"X":324,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325889Z"},{"ID":31742,"Name":"Szlachcic","Points":10495,"X":395,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32589Z"},{"ID":31743,"Name":"0394","Points":10252,"X":556,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32589Z"},{"ID":31744,"Name":"Lord Lord Franek .#102","Points":10160,"X":524,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325891Z"},{"ID":31745,"Name":"SOKzGUMIjagĂłd","Points":6277,"X":596,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325892Z"},{"ID":31746,"Name":"Monetkownia","Points":10237,"X":626,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325893Z"},{"ID":31747,"Name":".///...//././././././././","Points":9752,"X":376,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325893Z"},{"ID":31748,"Name":"*216*","Points":6056,"X":371,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325894Z"},{"ID":31749,"Name":"Szlachcic","Points":10478,"X":384,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325895Z"},{"ID":31750,"Name":"-013-","Points":5232,"X":339,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325896Z"},{"ID":31751,"Name":"#0108 tomek791103","Points":10178,"X":477,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325896Z"},{"ID":31752,"Name":"0272","Points":9394,"X":541,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325897Z"},{"ID":31753,"Name":"Ć»UBR .::.B.E.T.O.N /9","Points":9868,"X":629,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325898Z"},{"ID":31754,"Name":"**35**","Points":10220,"X":668,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325899Z"},{"ID":31755,"Name":"Wioska 02","Points":7144,"X":500,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325899Z"},{"ID":31756,"Name":"*190*","Points":10104,"X":372,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3259Z"},{"ID":31757,"Name":"Wioska Bochun10","Points":10232,"X":323,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325901Z"},{"ID":31758,"Name":"22. Las Venturas","Points":7431,"X":497,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325902Z"},{"ID":31759,"Name":"Lord Lord Franek .#185","Points":10319,"X":544,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325902Z"},{"ID":31760,"Name":"*196*","Points":6146,"X":364,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325903Z"},{"ID":31761,"Name":"B.020","Points":10000,"X":677,"Y":500,"Continent":"K56","Bonus":1,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325904Z"},{"ID":31762,"Name":"OrzeƂ WylądowaƂ","Points":7634,"X":447,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325905Z"},{"ID":31763,"Name":"0614","Points":9834,"X":478,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325905Z"},{"ID":31764,"Name":"Wioska Bochun10","Points":10495,"X":329,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325906Z"},{"ID":31765,"Name":"Myk i do kieszonki","Points":10245,"X":346,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325907Z"},{"ID":31766,"Name":"0050","Points":10401,"X":567,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325908Z"},{"ID":31767,"Name":".///...//././././././././","Points":9512,"X":381,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325908Z"},{"ID":31768,"Name":"0083","Points":10495,"X":543,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325909Z"},{"ID":31769,"Name":"|042| Berat","Points":9714,"X":495,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32591Z"},{"ID":31770,"Name":"1.013","Points":9031,"X":335,"Y":451,"Continent":"K43","Bonus":6,"PlayerID":3502565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325911Z"},{"ID":31772,"Name":"080 tulpa","Points":10275,"X":650,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325911Z"},{"ID":31773,"Name":"Wieƛ 11","Points":9085,"X":353,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325912Z"},{"ID":31774,"Name":"Wioska maƂa","Points":7682,"X":503,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325913Z"},{"ID":31775,"Name":"R 012 ~Gwiazda Zaranna~","Points":9507,"X":487,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325913Z"},{"ID":31776,"Name":"Sekou","Points":9701,"X":672,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325914Z"},{"ID":31777,"Name":"009 Panzergruppe Afrika","Points":5420,"X":606,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325915Z"},{"ID":31778,"Name":"M181_029","Points":9651,"X":337,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325916Z"},{"ID":31779,"Name":"0091","Points":3567,"X":412,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325916Z"},{"ID":31780,"Name":"Moja","Points":8823,"X":541,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325917Z"},{"ID":31781,"Name":"Po sasiedzku","Points":7496,"X":615,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325918Z"},{"ID":31782,"Name":"M181_028","Points":9667,"X":338,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325918Z"},{"ID":31783,"Name":"#038#","Points":9761,"X":625,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325919Z"},{"ID":31784,"Name":"$4.000 Grvvyq","Points":10495,"X":658,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32592Z"},{"ID":31785,"Name":"Wioska XV","Points":9000,"X":576,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325921Z"},{"ID":31786,"Name":"AAA","Points":9032,"X":534,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325921Z"},{"ID":31787,"Name":"Osada koczownikĂłw","Points":9473,"X":676,"Y":467,"Continent":"K46","Bonus":1,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325922Z"},{"ID":31788,"Name":"Wioska barbarzyƄska","Points":10088,"X":511,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325923Z"},{"ID":31789,"Name":"Deveste ufam Tobie","Points":10000,"X":397,"Y":637,"Continent":"K63","Bonus":6,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325923Z"},{"ID":31790,"Name":"Mosty","Points":10019,"X":352,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325924Z"},{"ID":31791,"Name":"008","Points":9835,"X":409,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699246032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325925Z"},{"ID":31792,"Name":"Wioska barbarzyƄska","Points":9382,"X":673,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325926Z"},{"ID":31793,"Name":"South K35","Points":9950,"X":556,"Y":395,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325926Z"},{"ID":31794,"Name":"SOKzGUMIjagĂłd","Points":4222,"X":595,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325927Z"},{"ID":31795,"Name":"Szulernia","Points":9832,"X":387,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325928Z"},{"ID":31796,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":561,"Y":363,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325928Z"},{"ID":31797,"Name":"0610","Points":10019,"X":480,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325929Z"},{"ID":31798,"Name":"|010| Agia Meriadia","Points":10053,"X":495,"Y":679,"Continent":"K64","Bonus":4,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32593Z"},{"ID":31799,"Name":"Lord Arsey KING","Points":10285,"X":580,"Y":580,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325931Z"},{"ID":31801,"Name":"Wioska klez 010","Points":6709,"X":329,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325931Z"},{"ID":31802,"Name":"003 Osada koczownikĂłw","Points":8904,"X":378,"Y":624,"Continent":"K63","Bonus":4,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325932Z"},{"ID":31803,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":578,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325933Z"},{"ID":31804,"Name":"Wioska barbarzyƄska","Points":10218,"X":558,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325934Z"},{"ID":31805,"Name":"004 Kabul","Points":9989,"X":585,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325934Z"},{"ID":31806,"Name":"*207*","Points":6800,"X":346,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325935Z"},{"ID":31807,"Name":"Wioska Bochun10","Points":7779,"X":329,"Y":491,"Continent":"K43","Bonus":3,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325936Z"},{"ID":31808,"Name":"1v9 machine","Points":10019,"X":388,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325936Z"},{"ID":31809,"Name":"Jaaa","Points":10487,"X":675,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325937Z"},{"ID":31810,"Name":"Wioska barbarzyƄska","Points":8127,"X":338,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325938Z"},{"ID":31811,"Name":"Szlachcic","Points":10484,"X":395,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325939Z"},{"ID":31812,"Name":"Dajanka 28","Points":1090,"X":349,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325939Z"},{"ID":31813,"Name":"O53 Bildudalur","Points":9475,"X":675,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32594Z"},{"ID":31814,"Name":"Y | Forest Cyaaaanku","Points":9462,"X":321,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325941Z"},{"ID":31815,"Name":"D 023","Points":9908,"X":671,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325942Z"},{"ID":31816,"Name":"054","Points":9129,"X":523,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325942Z"},{"ID":31817,"Name":"*215*","Points":6326,"X":349,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325943Z"},{"ID":31818,"Name":"Wioska barbarzyƄska","Points":1883,"X":608,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325944Z"},{"ID":31820,"Name":"Wioska Bochun10","Points":8771,"X":327,"Y":469,"Continent":"K43","Bonus":7,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325945Z"},{"ID":31821,"Name":"AAA","Points":10233,"X":532,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325945Z"},{"ID":31822,"Name":"Wioska Bochun10","Points":6484,"X":328,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325946Z"},{"ID":31823,"Name":"[B]_[033] Dejv.oldplyr","Points":6463,"X":416,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325947Z"},{"ID":31824,"Name":"61k$ Grvvyq","Points":6958,"X":655,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325948Z"},{"ID":31825,"Name":"DejMon2","Points":9587,"X":370,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325948Z"},{"ID":31826,"Name":"Monetki","Points":9637,"X":475,"Y":419,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325949Z"},{"ID":31827,"Name":"Dijon","Points":8610,"X":677,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32595Z"},{"ID":31828,"Name":"Wioska 04","Points":6051,"X":498,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325951Z"},{"ID":31829,"Name":"Deveste ufam Tobie","Points":9809,"X":392,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325952Z"},{"ID":31830,"Name":".:003:. kr","Points":9474,"X":630,"Y":385,"Continent":"K36","Bonus":7,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325952Z"},{"ID":31831,"Name":"Wioska barbarzyƄska","Points":9835,"X":575,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325953Z"},{"ID":31832,"Name":"063 | PALESTINA","Points":6614,"X":655,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325954Z"},{"ID":31834,"Name":"Lord Lord Franek .#105","Points":10160,"X":526,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325955Z"},{"ID":31835,"Name":"037 troll7","Points":10388,"X":664,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325956Z"},{"ID":31836,"Name":"#SecreSwallowtail","Points":4274,"X":434,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325956Z"},{"ID":31837,"Name":"026","Points":9449,"X":479,"Y":674,"Continent":"K64","Bonus":4,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325957Z"},{"ID":31838,"Name":"M181_032","Points":9157,"X":340,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325958Z"},{"ID":31839,"Name":"Architekci PlacĂłw Boju","Points":8049,"X":336,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325959Z"},{"ID":31840,"Name":"034 yhyyy","Points":8157,"X":669,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325959Z"},{"ID":31841,"Name":"008 Mord","Points":9756,"X":678,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32596Z"},{"ID":31842,"Name":"kto ananasowy pod wodą ma dom","Points":9129,"X":674,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325961Z"},{"ID":31843,"Name":"A 003","Points":10237,"X":366,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325962Z"},{"ID":31844,"Name":"AAA","Points":9484,"X":530,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325962Z"},{"ID":31845,"Name":"=|28|=","Points":10495,"X":640,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325963Z"},{"ID":31846,"Name":"001.","Points":10654,"X":622,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325964Z"},{"ID":31847,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":563,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325965Z"},{"ID":31848,"Name":"[07]","Points":8326,"X":428,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325965Z"},{"ID":31849,"Name":"Westfold.004","Points":10178,"X":344,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325966Z"},{"ID":31850,"Name":"Komornik 003","Points":8361,"X":330,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325967Z"},{"ID":31851,"Name":"Wyspa 016","Points":10399,"X":619,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325968Z"},{"ID":31852,"Name":"B003","Points":9952,"X":468,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325969Z"},{"ID":31853,"Name":"Westfold.012","Points":10178,"X":338,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325969Z"},{"ID":31854,"Name":"N001","Points":9814,"X":340,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32597Z"},{"ID":31855,"Name":"15k$ Grvvyq","Points":10495,"X":662,"Y":573,"Continent":"K56","Bonus":1,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325971Z"},{"ID":31856,"Name":"B001","Points":9569,"X":469,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325972Z"},{"ID":31857,"Name":"368|617 Wioska barbarzyƄska","Points":10016,"X":617,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325972Z"},{"ID":31858,"Name":"Wioska barbarzyƄska","Points":2692,"X":431,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325973Z"},{"ID":31859,"Name":"Wioska barbarzyƄska","Points":2221,"X":337,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325974Z"},{"ID":31860,"Name":"A07","Points":10019,"X":468,"Y":671,"Continent":"K64","Bonus":7,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325975Z"},{"ID":31861,"Name":"Szlachcic/Taran","Points":10237,"X":633,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325975Z"},{"ID":31862,"Name":"022 pawelk95","Points":9500,"X":661,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325976Z"},{"ID":31863,"Name":"Wioska barbarzyƄska","Points":8415,"X":430,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325977Z"},{"ID":31864,"Name":"Wioska barbarzyƄska","Points":8758,"X":675,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325977Z"},{"ID":31865,"Name":"017 .11. Infanterie-Division","Points":3416,"X":597,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325978Z"},{"ID":31866,"Name":"historia blisko 1","Points":12154,"X":617,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325979Z"},{"ID":31867,"Name":"Sony 911","Points":10223,"X":621,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32598Z"},{"ID":31868,"Name":"Lord Lord Franek .#097","Points":10051,"X":511,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32598Z"},{"ID":31869,"Name":"K34 - [153] Before Land","Points":7363,"X":428,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325981Z"},{"ID":31870,"Name":"0411","Points":10019,"X":544,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325982Z"},{"ID":31871,"Name":"#[10]","Points":4647,"X":431,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325982Z"},{"ID":31872,"Name":"Premium","Points":10178,"X":410,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325983Z"},{"ID":31873,"Name":"Ob Konfederacja","Points":6991,"X":441,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325984Z"},{"ID":31874,"Name":"I046 Sa w sobie zakochani","Points":10044,"X":667,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325985Z"},{"ID":31875,"Name":"ABB","Points":5295,"X":657,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325986Z"},{"ID":31876,"Name":"K34 x024","Points":7485,"X":405,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325986Z"},{"ID":31877,"Name":"Psycha Siada","Points":5109,"X":443,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325987Z"},{"ID":31878,"Name":"xdd","Points":10728,"X":679,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325988Z"},{"ID":31879,"Name":"NAPLETON","Points":10294,"X":351,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325988Z"},{"ID":31880,"Name":"Jednak wolę gofry","Points":6362,"X":427,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325989Z"},{"ID":31882,"Name":"psycha sitting","Points":4611,"X":433,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32599Z"},{"ID":31883,"Name":"1000","Points":10146,"X":620,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32599Z"},{"ID":31884,"Name":"Wioska barbarzyƄska","Points":3731,"X":376,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325991Z"},{"ID":31885,"Name":"Wioska barbarzyƄska","Points":2902,"X":409,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325992Z"},{"ID":31886,"Name":"Wioska 5","Points":5401,"X":504,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325993Z"},{"ID":31887,"Name":"*023","Points":9031,"X":604,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325993Z"},{"ID":31889,"Name":"Odprysk KsiÄ™ĆŒyca01","Points":9592,"X":675,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325994Z"},{"ID":31890,"Name":"Psycha Siada","Points":10411,"X":442,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325995Z"},{"ID":31891,"Name":"Szulernia","Points":7621,"X":380,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325995Z"},{"ID":31892,"Name":"Lord Lord Franek .#093","Points":9976,"X":517,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325996Z"},{"ID":31893,"Name":"Pomidorowy dzem","Points":10728,"X":674,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325997Z"},{"ID":31894,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":567,"Y":342,"Continent":"K35","Bonus":2,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325998Z"},{"ID":31895,"Name":"216","Points":6833,"X":433,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325998Z"},{"ID":31896,"Name":"Ob Konfederacja","Points":8298,"X":434,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.325999Z"},{"ID":31897,"Name":"Wioska barbarzyƄska","Points":2580,"X":346,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":8503255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326Z"},{"ID":31898,"Name":"Taran","Points":9721,"X":340,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326Z"},{"ID":31899,"Name":"A0260","Points":10362,"X":329,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326001Z"},{"ID":31900,"Name":"Wrath 013","Points":10273,"X":570,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326002Z"},{"ID":31901,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":6835,"X":383,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326003Z"},{"ID":31902,"Name":"Ć»UBR .::.B.E.T.O.N /5","Points":10073,"X":626,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326004Z"},{"ID":31903,"Name":"Wioska barbarzyƄska","Points":9835,"X":575,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326004Z"},{"ID":31904,"Name":"ADEN","Points":7108,"X":598,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326005Z"},{"ID":31905,"Name":"cz 10 9","Points":8185,"X":371,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326006Z"},{"ID":31906,"Name":"**34**","Points":9691,"X":664,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326007Z"},{"ID":31907,"Name":"Wyspa 001","Points":10273,"X":624,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326007Z"},{"ID":31908,"Name":"019","Points":5512,"X":361,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326008Z"},{"ID":31909,"Name":"032. Alesia","Points":10479,"X":652,"Y":421,"Continent":"K46","Bonus":7,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326009Z"},{"ID":31910,"Name":"032","Points":6840,"X":607,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32601Z"},{"ID":31911,"Name":"DOM 10","Points":9815,"X":564,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32601Z"},{"ID":31912,"Name":"#0189 Segadorr dar","Points":10178,"X":463,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326011Z"},{"ID":31913,"Name":"Wioska barbarzyƄska","Points":8494,"X":677,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326012Z"},{"ID":31914,"Name":"Chekku - meito","Points":9976,"X":327,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326013Z"},{"ID":31915,"Name":"Chekku - meito","Points":9976,"X":326,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326013Z"},{"ID":31916,"Name":"Wioska Bochun10","Points":9274,"X":324,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326014Z"},{"ID":31917,"Name":"017 Wioska Kolegi","Points":10203,"X":613,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326015Z"},{"ID":31918,"Name":"369|621 Wioska barbarzyƄska","Points":6705,"X":621,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326016Z"},{"ID":31919,"Name":"Lord Lord Franek .#133","Points":9798,"X":523,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326017Z"},{"ID":31920,"Name":"Makemake","Points":3591,"X":551,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326017Z"},{"ID":31921,"Name":"WB 07","Points":8283,"X":636,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326018Z"},{"ID":31922,"Name":"=|31|=","Points":10087,"X":647,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326019Z"},{"ID":31923,"Name":"*219*","Points":6159,"X":379,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32602Z"},{"ID":31924,"Name":"oriental","Points":9030,"X":454,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32602Z"},{"ID":31925,"Name":"Wioska barbarzyƄska","Points":10220,"X":555,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326021Z"},{"ID":31926,"Name":"cz Wioska 76","Points":4391,"X":370,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326022Z"},{"ID":31927,"Name":"Wioska barbarzyƄska","Points":10216,"X":559,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326023Z"},{"ID":31928,"Name":"024 Walduƛ dziaƂej!","Points":10149,"X":375,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326023Z"},{"ID":31930,"Name":"Wioska barbarzyƄska","Points":7445,"X":342,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326024Z"},{"ID":31932,"Name":"Wioska barbarzyƄska","Points":9702,"X":566,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326025Z"},{"ID":31933,"Name":"- Arbos","Points":6717,"X":551,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326026Z"},{"ID":31934,"Name":"- DragonC","Points":8966,"X":547,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326026Z"},{"ID":31935,"Name":"Wonderwall","Points":9036,"X":334,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326027Z"},{"ID":31936,"Name":"Kentin ufam Tobie","Points":10000,"X":328,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326028Z"},{"ID":31937,"Name":"A.08 spóƂdzielnia gryzoni","Points":9095,"X":561,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326028Z"},{"ID":31938,"Name":".:005:.","Points":9034,"X":634,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326029Z"},{"ID":31939,"Name":"Wioska barbarzyƄska","Points":10012,"X":672,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32603Z"},{"ID":31940,"Name":"Grupka 7 wiosek 1","Points":9654,"X":354,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326031Z"},{"ID":31941,"Name":"-004-","Points":7601,"X":539,"Y":326,"Continent":"K35","Bonus":6,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326032Z"},{"ID":31942,"Name":"Taran","Points":10728,"X":674,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326032Z"},{"ID":31943,"Name":"025 Mom to gdzieƛ ida do dom","Points":8730,"X":374,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326033Z"},{"ID":31944,"Name":"Wioska barbarzyƄska","Points":10220,"X":555,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326034Z"},{"ID":31945,"Name":"fff","Points":10229,"X":489,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326035Z"},{"ID":31946,"Name":"AAA","Points":9666,"X":528,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326035Z"},{"ID":31947,"Name":"NoeyPL","Points":4781,"X":331,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849000135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326036Z"},{"ID":31948,"Name":"0612","Points":10019,"X":482,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326037Z"},{"ID":31949,"Name":"Wrath 005","Points":10273,"X":573,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326038Z"},{"ID":31950,"Name":"Drakonia","Points":5234,"X":551,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326039Z"},{"ID":31951,"Name":"051","Points":9771,"X":341,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326039Z"},{"ID":31952,"Name":"03Wioska barbarzyƄska","Points":8398,"X":389,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32604Z"},{"ID":31953,"Name":"D 024","Points":10495,"X":673,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326041Z"},{"ID":31954,"Name":"Wioska Bochun10","Points":10303,"X":327,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326042Z"},{"ID":31955,"Name":"M181_031","Points":9461,"X":340,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326042Z"},{"ID":31956,"Name":"BETON 055","Points":6441,"X":624,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326043Z"},{"ID":31957,"Name":"Ajuda","Points":9658,"X":347,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326044Z"},{"ID":31958,"Name":"Wioska Bochun10","Points":10495,"X":324,"Y":490,"Continent":"K43","Bonus":2,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326045Z"},{"ID":31959,"Name":"SPOCENI KUZYNI","Points":3876,"X":411,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326045Z"},{"ID":31960,"Name":"N002","Points":10208,"X":341,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326046Z"},{"ID":31961,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":330,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326047Z"},{"ID":31962,"Name":"Sony 911","Points":9774,"X":581,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326048Z"},{"ID":31963,"Name":"Wioska 039","Points":9761,"X":648,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326048Z"},{"ID":31964,"Name":"020 toni","Points":11321,"X":678,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326049Z"},{"ID":31965,"Name":"Wioska barbarzyƄska","Points":8556,"X":450,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32605Z"},{"ID":31966,"Name":"Sony 911","Points":9841,"X":618,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326051Z"},{"ID":31967,"Name":"023 serniczek z napojem","Points":9783,"X":506,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326051Z"},{"ID":31968,"Name":"Wioska 054","Points":9761,"X":642,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326052Z"},{"ID":31969,"Name":"Sam fridhof uƂomow i pofirtnacow","Points":4051,"X":328,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699711723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326053Z"},{"ID":31970,"Name":"off 100 %","Points":8318,"X":339,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326054Z"},{"ID":31971,"Name":"Gattacka","Points":9449,"X":623,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326055Z"},{"ID":31972,"Name":"B 035","Points":9566,"X":671,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326055Z"},{"ID":31973,"Name":"Wioska 042","Points":9761,"X":649,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326056Z"},{"ID":31974,"Name":"014.","Points":9785,"X":636,"Y":393,"Continent":"K36","Bonus":6,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326057Z"},{"ID":31976,"Name":"[017] KrĂłlowie klozetĂłw","Points":9312,"X":665,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326057Z"},{"ID":31977,"Name":"#0143 Thorus5","Points":6616,"X":470,"Y":324,"Continent":"K34","Bonus":7,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326058Z"},{"ID":31978,"Name":"Wioska barbarzyƄska","Points":10022,"X":670,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326059Z"},{"ID":31979,"Name":"PiekƂo to inni","Points":8712,"X":588,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32606Z"},{"ID":31981,"Name":"045 Toporowa cyrhla II","Points":2781,"X":378,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32606Z"},{"ID":31982,"Name":"XDX","Points":10822,"X":624,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326061Z"},{"ID":31983,"Name":"Deveste ufam Tobie","Points":9844,"X":394,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326062Z"},{"ID":31984,"Name":"C0167","Points":10362,"X":327,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326062Z"},{"ID":31985,"Name":"Wioska VI","Points":6391,"X":584,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326063Z"},{"ID":31987,"Name":"01 Kapitol","Points":11321,"X":539,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326064Z"},{"ID":31988,"Name":"#019. Wstyd za Artura","Points":8649,"X":453,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326065Z"},{"ID":31989,"Name":"emoriar","Points":6088,"X":664,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326065Z"},{"ID":31990,"Name":"Monetkownia","Points":10237,"X":627,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326066Z"},{"ID":31991,"Name":"Architekci PlacĂłw Boju","Points":9483,"X":335,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326067Z"},{"ID":31992,"Name":"#001#","Points":9761,"X":627,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326067Z"},{"ID":31993,"Name":"rotes idz spac misiu","Points":9623,"X":456,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326068Z"},{"ID":31994,"Name":"21. KaruTown","Points":9711,"X":650,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326069Z"},{"ID":31995,"Name":"E011","Points":6902,"X":664,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32607Z"},{"ID":31996,"Name":"Wioska Bochun10","Points":10311,"X":323,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32607Z"},{"ID":31997,"Name":"01 tonieostatnieslowo","Points":9593,"X":609,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":699861004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326071Z"},{"ID":31998,"Name":"055 komornicy","Points":9221,"X":333,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326072Z"},{"ID":31999,"Name":"V012","Points":3379,"X":341,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326072Z"},{"ID":32000,"Name":"Wioska r 9","Points":5887,"X":556,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326073Z"},{"ID":32001,"Name":"[165]","Points":8248,"X":649,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326074Z"},{"ID":32002,"Name":"O62 Makeb","Points":10402,"X":675,"Y":511,"Continent":"K56","Bonus":8,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326075Z"},{"ID":32003,"Name":"Architekci PlacĂłw Boju","Points":8180,"X":333,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326075Z"},{"ID":32004,"Name":"Wioska barbarzyƄska","Points":9277,"X":675,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326076Z"},{"ID":32005,"Name":"Wioska r 18","Points":3160,"X":559,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326077Z"},{"ID":32006,"Name":"[B]_[004] Dejv.oldplyr","Points":10495,"X":428,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326077Z"},{"ID":32007,"Name":"Deveste ufam Tobie","Points":10000,"X":398,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326078Z"},{"ID":32008,"Name":"I023 Dzisiaj spisz w szafie","Points":10155,"X":666,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326079Z"},{"ID":32009,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":460,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32608Z"},{"ID":32010,"Name":"[B]_[008] Dejv.oldplyr","Points":10495,"X":426,"Y":344,"Continent":"K34","Bonus":3,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32608Z"},{"ID":32011,"Name":"B 055","Points":9738,"X":673,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326081Z"},{"ID":32012,"Name":"Sony 911","Points":10183,"X":618,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326082Z"},{"ID":32013,"Name":"03Wioska barbarzyƄska","Points":8153,"X":389,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326083Z"},{"ID":32014,"Name":"Bunkier 006","Points":7628,"X":624,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326083Z"},{"ID":32015,"Name":"090","Points":1696,"X":662,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326084Z"},{"ID":32016,"Name":"R 003 ~Alisia~","Points":10019,"X":488,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326085Z"},{"ID":32017,"Name":"sony911","Points":10228,"X":617,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326085Z"},{"ID":32018,"Name":"Monetkownia","Points":10237,"X":623,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326086Z"},{"ID":32019,"Name":"Krytl13","Points":9352,"X":509,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326087Z"},{"ID":32020,"Name":"0043","Points":8227,"X":675,"Y":465,"Continent":"K46","Bonus":6,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326087Z"},{"ID":32021,"Name":"$AtlantaHawks","Points":7086,"X":677,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326088Z"},{"ID":32022,"Name":"Centrum 3","Points":5926,"X":651,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326089Z"},{"ID":32023,"Name":"370|618 Wioska barbarzyƄska","Points":7805,"X":618,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32609Z"},{"ID":32025,"Name":"Szlachcic","Points":10484,"X":394,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32609Z"},{"ID":32026,"Name":"Hello hello","Points":4124,"X":437,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326091Z"},{"ID":32027,"Name":"|035| Mandriko","Points":10252,"X":495,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326092Z"},{"ID":32028,"Name":"Wioska Ida Madame","Points":5521,"X":578,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326092Z"},{"ID":32029,"Name":"*234*","Points":9668,"X":331,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326093Z"},{"ID":32030,"Name":"Szlachcic","Points":10481,"X":378,"Y":369,"Continent":"K33","Bonus":1,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326094Z"},{"ID":32031,"Name":"Kreskowo _1","Points":9774,"X":592,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326095Z"},{"ID":32032,"Name":"Wioska barbarzyƄska","Points":5654,"X":495,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326095Z"},{"ID":32033,"Name":"1v9 machine","Points":10019,"X":388,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326096Z"},{"ID":32034,"Name":"*233*","Points":9879,"X":332,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326097Z"},{"ID":32035,"Name":"Szlachcic/Taran","Points":10237,"X":638,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326097Z"},{"ID":32036,"Name":"Osada koczownikĂłw","Points":9243,"X":594,"Y":647,"Continent":"K65","Bonus":2,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326098Z"},{"ID":32037,"Name":"Wioska barbarzyƄska","Points":9513,"X":485,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326099Z"},{"ID":32038,"Name":"*041*","Points":10211,"X":356,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3261Z"},{"ID":32039,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3261Z"},{"ID":32040,"Name":"C0048","Points":10362,"X":322,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326101Z"},{"ID":32041,"Name":"Wioska DANIEL48","Points":1192,"X":340,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":849073314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326102Z"},{"ID":32042,"Name":"Wioska barbarzyƄska","Points":10452,"X":504,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326102Z"},{"ID":32043,"Name":"A007 Dumel","Points":10141,"X":671,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326103Z"},{"ID":32044,"Name":"Wioska barbarzyƄska","Points":7076,"X":467,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326104Z"},{"ID":32045,"Name":"SOKzGUMIjagĂłd","Points":10728,"X":594,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326105Z"},{"ID":32046,"Name":"Ani przed, ani po","Points":5346,"X":609,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326105Z"},{"ID":32047,"Name":"Wioska malaula","Points":9535,"X":374,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326106Z"},{"ID":32048,"Name":"Wioska Bochun10","Points":10311,"X":329,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326107Z"},{"ID":32049,"Name":"*240*","Points":9628,"X":331,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326107Z"},{"ID":32050,"Name":"Szlachcic","Points":10476,"X":379,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326108Z"},{"ID":32051,"Name":"044","Points":9911,"X":456,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326109Z"},{"ID":32052,"Name":"Wąski","Points":4632,"X":541,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":849101144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326109Z"},{"ID":32053,"Name":"Wioska Bochun10","Points":10311,"X":331,"Y":473,"Continent":"K43","Bonus":4,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32611Z"},{"ID":32054,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":328,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326111Z"},{"ID":32055,"Name":"006","Points":9993,"X":535,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326112Z"},{"ID":32057,"Name":"Deveste ufam Tobie","Points":10000,"X":400,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326112Z"},{"ID":32058,"Name":"Szale $$$","Points":6922,"X":444,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326113Z"},{"ID":32059,"Name":"016 Przerwa na szpuli!","Points":10143,"X":379,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326114Z"},{"ID":32060,"Name":"Grupka 7 wiosek Koszary","Points":9808,"X":357,"Y":598,"Continent":"K53","Bonus":5,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326114Z"},{"ID":32061,"Name":"XXXX","Points":10161,"X":491,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326115Z"},{"ID":32062,"Name":"050 Wioska","Points":9568,"X":658,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326116Z"},{"ID":32063,"Name":"- 290 - SS","Points":10000,"X":542,"Y":672,"Continent":"K65","Bonus":7,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326117Z"},{"ID":32064,"Name":"Wioska barbarzyƄska","Points":1427,"X":661,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326117Z"},{"ID":32065,"Name":"014","Points":8175,"X":606,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326118Z"},{"ID":32066,"Name":"*229*","Points":10211,"X":333,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326119Z"},{"ID":32067,"Name":"A041","Points":7901,"X":607,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326119Z"},{"ID":32068,"Name":"Pomidorowy dzem","Points":9075,"X":676,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32612Z"},{"ID":32069,"Name":"Westfold.007","Points":10178,"X":345,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326121Z"},{"ID":32070,"Name":"03Wioska barbarzyƄska","Points":8407,"X":386,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326122Z"},{"ID":32071,"Name":"106","Points":8011,"X":617,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326122Z"},{"ID":32072,"Name":"*203*","Points":7911,"X":344,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326123Z"},{"ID":32073,"Name":"Ave Why!","Points":9809,"X":470,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326124Z"},{"ID":32074,"Name":"059 | PALESTINA","Points":6701,"X":657,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326124Z"},{"ID":32075,"Name":"Y | Forest Cyaaaanku","Points":5605,"X":326,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326125Z"},{"ID":32076,"Name":"AAA","Points":9205,"X":536,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326126Z"},{"ID":32077,"Name":"0575","Points":9390,"X":552,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326127Z"},{"ID":32078,"Name":"Wioska conradox","Points":9758,"X":473,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326127Z"},{"ID":32079,"Name":"Bagienko.Anker...","Points":3963,"X":371,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699713515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326128Z"},{"ID":32080,"Name":"[B]_[002] Dejv.oldplyr","Points":10495,"X":420,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326129Z"},{"ID":32081,"Name":"Psycha Siada","Points":10019,"X":441,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326129Z"},{"ID":32082,"Name":"Wioska Bochun10","Points":7136,"X":328,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32613Z"},{"ID":32083,"Name":"026","Points":9993,"X":538,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326131Z"},{"ID":32084,"Name":"Lord Arsey III","Points":2768,"X":339,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326132Z"},{"ID":32085,"Name":"81 Czwartek","Points":3362,"X":522,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":2571407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326132Z"},{"ID":32086,"Name":"Bagdad","Points":10068,"X":483,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326133Z"},{"ID":32087,"Name":"Wioska 2","Points":4723,"X":571,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326134Z"},{"ID":32088,"Name":"Klan Ognia","Points":6501,"X":341,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326134Z"},{"ID":32089,"Name":"PiekƂo to inni","Points":5784,"X":586,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326135Z"},{"ID":32090,"Name":"SOKzGUMIjagĂłd","Points":10838,"X":595,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326136Z"},{"ID":32091,"Name":"Chekku - meito","Points":10040,"X":325,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326136Z"},{"ID":32092,"Name":"024","Points":10019,"X":449,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326137Z"},{"ID":32094,"Name":"218...barba","Points":4051,"X":460,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326138Z"},{"ID":32095,"Name":"|029| Charaki","Points":10001,"X":496,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326139Z"},{"ID":32096,"Name":"Wioska barbarzyƄska","Points":9235,"X":522,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326139Z"},{"ID":32097,"Name":"Monetkownia","Points":10237,"X":621,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32614Z"},{"ID":32098,"Name":"niespodzianka :)","Points":11874,"X":364,"Y":614,"Continent":"K63","Bonus":9,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326141Z"},{"ID":32099,"Name":"Wioska 002","Points":7859,"X":676,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326141Z"},{"ID":32100,"Name":"Wioska 095","Points":9761,"X":641,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326142Z"},{"ID":32101,"Name":"Wioska barbarzyƄska","Points":10728,"X":680,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326143Z"},{"ID":32102,"Name":"Wioska klez 018","Points":4389,"X":321,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326144Z"},{"ID":32103,"Name":"026 Jo Cie dupia.exe","Points":10146,"X":374,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326145Z"},{"ID":32104,"Name":"Szlachcic/Taran","Points":7242,"X":614,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326145Z"},{"ID":32105,"Name":"Ob Konfederacja","Points":9836,"X":434,"Y":339,"Continent":"K34","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326146Z"},{"ID":32106,"Name":"027 minus pięćset","Points":9497,"X":374,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326147Z"},{"ID":32107,"Name":"BOTLEY","Points":1704,"X":402,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326148Z"},{"ID":32108,"Name":"A012 Dla mpiechu Killeros","Points":10160,"X":671,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326148Z"},{"ID":32109,"Name":".:020:. kr","Points":8782,"X":632,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326149Z"},{"ID":32110,"Name":"ZUBRAWKA 050","Points":9982,"X":615,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32615Z"},{"ID":32111,"Name":"Chekku - meito","Points":9976,"X":332,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326151Z"},{"ID":32112,"Name":"Wioska 043","Points":9761,"X":647,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326151Z"},{"ID":32113,"Name":"Osada koczownikĂłw","Points":9927,"X":511,"Y":678,"Continent":"K65","Bonus":8,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326152Z"},{"ID":32115,"Name":"NoeyPL 2","Points":5237,"X":329,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849000135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326153Z"},{"ID":32116,"Name":"D.024","Points":3755,"X":395,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326154Z"},{"ID":32117,"Name":"*031","Points":9709,"X":596,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326154Z"},{"ID":32118,"Name":"thats not gonna be easy","Points":10141,"X":330,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326155Z"},{"ID":32119,"Name":"Wioska barbarzyƄska","Points":9835,"X":568,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326156Z"},{"ID":32120,"Name":"C0285","Points":5838,"X":322,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326157Z"},{"ID":32121,"Name":"A0261","Points":10362,"X":324,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326158Z"},{"ID":32122,"Name":"Nowa 33","Points":10054,"X":660,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326158Z"},{"ID":32123,"Name":"kto ananasowy pod wodą ma dom","Points":10030,"X":672,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326159Z"},{"ID":32124,"Name":"AAA","Points":9454,"X":539,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32616Z"},{"ID":32125,"Name":"Wioska klez 007","Points":7879,"X":328,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326161Z"},{"ID":32126,"Name":"Jednak wolę gofry","Points":6001,"X":417,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326161Z"},{"ID":32127,"Name":"090 Tomek","Points":6998,"X":679,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326162Z"},{"ID":32128,"Name":"Komornik 002","Points":6451,"X":330,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326163Z"},{"ID":32129,"Name":"Centrum 4","Points":5708,"X":649,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326164Z"},{"ID":32130,"Name":"27k$ Grvvyq","Points":10495,"X":657,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326164Z"},{"ID":32131,"Name":"Wioska Bochun10","Points":10311,"X":327,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326165Z"},{"ID":32132,"Name":"The Game Has Only Just Begun","Points":9976,"X":350,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326166Z"},{"ID":32133,"Name":"Wioska barbarzyƄska","Points":7281,"X":370,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326167Z"},{"ID":32134,"Name":"0071","Points":6067,"X":418,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326167Z"},{"ID":32135,"Name":"Deveste ufam Tobie","Points":10000,"X":397,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326168Z"},{"ID":32136,"Name":"Sin City","Points":5624,"X":563,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":8908544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326169Z"},{"ID":32137,"Name":"PóƂnocny Bagdad","Points":9835,"X":627,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32617Z"},{"ID":32138,"Name":"O44 Derinkuyu","Points":6501,"X":669,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32617Z"},{"ID":32139,"Name":"Szlachcic","Points":7425,"X":322,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326171Z"},{"ID":32140,"Name":"000 Plutosea","Points":9976,"X":328,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326172Z"},{"ID":32141,"Name":"0075","Points":6052,"X":420,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326173Z"},{"ID":32142,"Name":"Wioska Bochun10","Points":7056,"X":323,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326174Z"},{"ID":32143,"Name":"183.","Points":7438,"X":352,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326174Z"},{"ID":32144,"Name":"Lord Lord Franek .#172","Points":12154,"X":516,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326175Z"},{"ID":32145,"Name":"Bagdad","Points":10068,"X":492,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326176Z"},{"ID":32146,"Name":"007","Points":9993,"X":536,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326177Z"},{"ID":32147,"Name":"Bagdad","Points":10068,"X":482,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326177Z"},{"ID":32148,"Name":"I032","Points":9775,"X":667,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326178Z"},{"ID":32150,"Name":"[043]","Points":3831,"X":650,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326179Z"},{"ID":32151,"Name":"Ob Konfederacja","Points":7363,"X":446,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32618Z"},{"ID":32152,"Name":"wioska dla myszy nie tykać","Points":9746,"X":591,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32618Z"},{"ID":32153,"Name":"witojcie pamponie ,","Points":10426,"X":592,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326181Z"},{"ID":32154,"Name":".:010:. ma","Points":3466,"X":636,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326182Z"},{"ID":32155,"Name":"A009 Ć»elazo","Points":10141,"X":670,"Y":441,"Continent":"K46","Bonus":3,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326183Z"},{"ID":32156,"Name":"psycha sitting","Points":5664,"X":422,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326183Z"},{"ID":32157,"Name":"Wioska barbarzyƄska","Points":6069,"X":404,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326184Z"},{"ID":32158,"Name":"Architekci PlacĂłw Boju","Points":9646,"X":330,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326185Z"},{"ID":32159,"Name":"k36","Points":10654,"X":602,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326186Z"},{"ID":32160,"Name":"*032","Points":9717,"X":598,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326186Z"},{"ID":32161,"Name":"Psycha Siada","Points":6994,"X":454,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326187Z"},{"ID":32162,"Name":"Szulernia","Points":2130,"X":386,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326188Z"},{"ID":32163,"Name":"070 Wioska 010","Points":9239,"X":659,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326189Z"},{"ID":32164,"Name":"szkolna 17","Points":2600,"X":353,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326189Z"},{"ID":32165,"Name":"Wioska barbarzyƄska","Points":5498,"X":571,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32619Z"},{"ID":32166,"Name":"052 Wioska 005","Points":10323,"X":658,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326191Z"},{"ID":32167,"Name":"08 Klasztor","Points":8300,"X":539,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326192Z"},{"ID":32168,"Name":"=|26|=","Points":6019,"X":639,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326193Z"},{"ID":32169,"Name":"*208*","Points":10211,"X":343,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326193Z"},{"ID":32170,"Name":"Wyspa 005","Points":9120,"X":626,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326194Z"},{"ID":32171,"Name":"AAA","Points":9891,"X":528,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326195Z"},{"ID":32172,"Name":"Wyspa 023","Points":3377,"X":628,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326196Z"},{"ID":32173,"Name":"067 komornicy","Points":7587,"X":335,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326196Z"},{"ID":32174,"Name":"#[09]","Points":4907,"X":430,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326197Z"},{"ID":32175,"Name":"deff 100 %","Points":7919,"X":341,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326198Z"},{"ID":32176,"Name":"A0271","Points":9466,"X":327,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326199Z"},{"ID":32177,"Name":"Wioska barbarzyƄska","Points":2596,"X":552,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326199Z"},{"ID":32178,"Name":"Wioska Bochun10","Points":6975,"X":323,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3262Z"},{"ID":32179,"Name":"#0193 Segadorr dar","Points":10178,"X":464,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326201Z"},{"ID":32181,"Name":"nie wolno","Points":2453,"X":438,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326202Z"},{"ID":32182,"Name":"0576","Points":10019,"X":551,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326202Z"},{"ID":32183,"Name":"Wioska klez 003","Points":9419,"X":328,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326203Z"},{"ID":32184,"Name":"Wioska Bochun10","Points":10311,"X":327,"Y":491,"Continent":"K43","Bonus":4,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326204Z"},{"ID":32185,"Name":"kathare","Points":10362,"X":551,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326205Z"},{"ID":32186,"Name":"Wonderwall","Points":9763,"X":333,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326205Z"},{"ID":32187,"Name":"**39**","Points":10195,"X":670,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326206Z"},{"ID":32188,"Name":"*250*","Points":7470,"X":334,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326207Z"},{"ID":32189,"Name":"Myk i do kieszonki","Points":10104,"X":362,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326208Z"},{"ID":32190,"Name":"Stolica","Points":3706,"X":652,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326208Z"},{"ID":32192,"Name":"Myk i do kieszonki","Points":7193,"X":365,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326209Z"},{"ID":32193,"Name":"#054.","Points":7142,"X":666,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32621Z"},{"ID":32194,"Name":"Taran 010","Points":10971,"X":622,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":2600387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326211Z"},{"ID":32195,"Name":"Kentin ufam Tobie","Points":10069,"X":330,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326211Z"},{"ID":32196,"Name":"R 001 ~Micz~","Points":10019,"X":488,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326212Z"},{"ID":32197,"Name":"OrzeƂ WylądowaƂ","Points":8481,"X":461,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326213Z"},{"ID":32198,"Name":"~~088~~","Points":8614,"X":630,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326214Z"},{"ID":32199,"Name":"Gattacka","Points":9769,"X":618,"Y":372,"Continent":"K36","Bonus":1,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326214Z"},{"ID":32200,"Name":"-0007-","Points":8720,"X":544,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326215Z"},{"ID":32201,"Name":"Sony 911","Points":7559,"X":581,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326216Z"},{"ID":32202,"Name":"**06**","Points":11954,"X":667,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326216Z"},{"ID":32203,"Name":"B.01","Points":10050,"X":675,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326217Z"},{"ID":32204,"Name":"R 024","Points":9390,"X":486,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326218Z"},{"ID":32205,"Name":"marchewka","Points":11781,"X":364,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326219Z"},{"ID":32206,"Name":"*060*","Points":10211,"X":349,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326219Z"},{"ID":32207,"Name":"*232*","Points":10211,"X":332,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32622Z"},{"ID":32209,"Name":"Wioska barbarzyƄska","Points":8256,"X":429,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326221Z"},{"ID":32210,"Name":"Wioska Ukryta w Liƛciach","Points":7465,"X":360,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326222Z"},{"ID":32211,"Name":"Wioska barbarzyƄska","Points":6478,"X":341,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326223Z"},{"ID":32213,"Name":"Tango","Points":9282,"X":679,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326223Z"},{"ID":32215,"Name":"V015","Points":8793,"X":340,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326224Z"},{"ID":32216,"Name":"Lord Lord Franek .#145","Points":9882,"X":515,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326225Z"},{"ID":32217,"Name":"Adidsa 4","Points":3874,"X":412,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":9191031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326225Z"},{"ID":32218,"Name":"BETON 076","Points":4662,"X":630,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326226Z"},{"ID":32219,"Name":"O45 Fatsa","Points":8588,"X":671,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326227Z"},{"ID":32220,"Name":"AAA","Points":9008,"X":519,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326228Z"},{"ID":32221,"Name":"002","Points":10476,"X":347,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326229Z"},{"ID":32222,"Name":"054 California","Points":9500,"X":674,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326229Z"},{"ID":32223,"Name":"R 027","Points":9677,"X":489,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32623Z"},{"ID":32224,"Name":"UltraInstynkt-/=","Points":9902,"X":577,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326231Z"},{"ID":32225,"Name":"Wioska barbarzyƄska","Points":8836,"X":538,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326232Z"},{"ID":32226,"Name":"Miasys 5","Points":9953,"X":344,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326232Z"},{"ID":32227,"Name":"002","Points":8104,"X":675,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326233Z"},{"ID":32228,"Name":"*059","Points":9167,"X":585,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326234Z"},{"ID":32229,"Name":"Garczyn","Points":4144,"X":654,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326235Z"},{"ID":32230,"Name":"031","Points":7534,"X":611,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326237Z"},{"ID":32231,"Name":"WB 01","Points":8160,"X":638,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326238Z"},{"ID":32232,"Name":"Y | Forest Cyaaaanku","Points":5282,"X":325,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326239Z"},{"ID":32233,"Name":"__29__ Thorniara","Points":3273,"X":377,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32624Z"},{"ID":32234,"Name":"002","Points":9993,"X":528,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326241Z"},{"ID":32235,"Name":"A 008","Points":6091,"X":368,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326242Z"},{"ID":32236,"Name":"K34 x017","Points":9496,"X":403,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326243Z"},{"ID":32237,"Name":"Chekku - meito","Points":9976,"X":327,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326244Z"},{"ID":32238,"Name":"B 003","Points":9924,"X":670,"Y":533,"Continent":"K56","Bonus":6,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326245Z"},{"ID":32239,"Name":"005 Wioska Plemienna","Points":9787,"X":377,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326246Z"},{"ID":32240,"Name":"123","Points":10373,"X":477,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326247Z"},{"ID":32241,"Name":"Wioska barbarzyƄska","Points":6404,"X":612,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326247Z"},{"ID":32242,"Name":"Wrath 006","Points":10401,"X":572,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326248Z"},{"ID":32243,"Name":"Quattro","Points":9727,"X":407,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326248Z"},{"ID":32244,"Name":"Architekci PlacĂłw Boju","Points":9744,"X":336,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326249Z"},{"ID":32245,"Name":"008 Alianz Arena","Points":9834,"X":673,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326249Z"},{"ID":32246,"Name":"Wioska barbarzyƄska","Points":10221,"X":557,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32625Z"},{"ID":32247,"Name":"Wioska Bochun10","Points":4802,"X":326,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326251Z"},{"ID":32248,"Name":"Wioska1","Points":7632,"X":581,"Y":655,"Continent":"K65","Bonus":6,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326251Z"},{"ID":32249,"Name":"Wioska barbarzyƄska","Points":751,"X":391,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326252Z"},{"ID":32250,"Name":"PiekƂo to inni","Points":4990,"X":593,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326252Z"},{"ID":32251,"Name":"K34 x031","Points":5612,"X":404,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326253Z"},{"ID":32252,"Name":"008.","Points":9954,"X":624,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326254Z"},{"ID":32253,"Name":"Kiedyƛ Wielki Wojownik","Points":9725,"X":595,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326254Z"},{"ID":32254,"Name":"Bagdad","Points":9853,"X":490,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326255Z"},{"ID":32255,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":568,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326255Z"},{"ID":32256,"Name":"Wioska barbarzyƄska","Points":8027,"X":521,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326256Z"},{"ID":32257,"Name":"Wioska barbarzyƄska","Points":10728,"X":678,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326256Z"},{"ID":32258,"Name":"169...lord rdw","Points":6835,"X":450,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326257Z"},{"ID":32259,"Name":"Neptun","Points":3991,"X":552,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326257Z"},{"ID":32260,"Name":"Wonderwall","Points":9486,"X":333,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326258Z"},{"ID":32261,"Name":"Piczki","Points":3617,"X":648,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326258Z"},{"ID":32262,"Name":"Nowa 41","Points":9761,"X":664,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326259Z"},{"ID":32263,"Name":"#0116 tomek791103","Points":10178,"X":478,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326259Z"},{"ID":32264,"Name":"kto ananasowy pod wodą ma dom","Points":8561,"X":667,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32626Z"},{"ID":32265,"Name":"Wioska 038","Points":9994,"X":650,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32626Z"},{"ID":32266,"Name":"M181_013","Points":9885,"X":339,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326261Z"},{"ID":32267,"Name":"Psycha Siada","Points":8547,"X":453,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326261Z"},{"ID":32268,"Name":"*4602* DuĆŒe kƂopoty","Points":10287,"X":676,"Y":485,"Continent":"K46","Bonus":2,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326262Z"},{"ID":32269,"Name":"I087","Points":10227,"X":671,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326262Z"},{"ID":32270,"Name":"Wioska barbarzyƄska","Points":7977,"X":341,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326263Z"},{"ID":32271,"Name":"*032","Points":9706,"X":595,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326263Z"},{"ID":32272,"Name":"Wioska barbarzyƄska","Points":10232,"X":554,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326264Z"},{"ID":32273,"Name":"rotes idz spac misiu","Points":8516,"X":466,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326265Z"},{"ID":32274,"Name":"AAA","Points":6679,"X":531,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326265Z"},{"ID":32275,"Name":"Wioska Bochun10","Points":6596,"X":331,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326266Z"},{"ID":32276,"Name":"#052.","Points":7459,"X":665,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326266Z"},{"ID":32277,"Name":"Bromberg","Points":8874,"X":352,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326267Z"},{"ID":32279,"Name":"B005","Points":10966,"X":472,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326267Z"},{"ID":32280,"Name":"#Sewa#005","Points":9926,"X":671,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326268Z"},{"ID":32281,"Name":"039 Brzezinki akademia","Points":3901,"X":377,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326268Z"},{"ID":32282,"Name":"*164*","Points":10211,"X":348,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326269Z"},{"ID":32283,"Name":"|022| Goudouras","Points":9740,"X":494,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326269Z"},{"ID":32284,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":466,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32627Z"},{"ID":32285,"Name":"I024","Points":9896,"X":665,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32627Z"},{"ID":32286,"Name":"Myk i do kieszonki","Points":10838,"X":362,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326271Z"},{"ID":32287,"Name":"028 PaƂa na hali!","Points":9798,"X":385,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326271Z"},{"ID":32288,"Name":"Szlachcic/Taran","Points":10237,"X":616,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326272Z"},{"ID":32289,"Name":"Connecticut","Points":6173,"X":676,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699851345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326273Z"},{"ID":32290,"Name":"Wioska barbarzyƄska","Points":7117,"X":618,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326273Z"},{"ID":32291,"Name":".:011:.","Points":3448,"X":635,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326274Z"},{"ID":32292,"Name":"#107 C","Points":8356,"X":527,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326274Z"},{"ID":32293,"Name":"Wioska 055","Points":9761,"X":642,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326275Z"},{"ID":32294,"Name":"Dejmon6","Points":6037,"X":370,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326275Z"},{"ID":32295,"Name":"Wioska barbarzyƄska","Points":9639,"X":675,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326276Z"},{"ID":32296,"Name":"PiekƂo to inni","Points":10019,"X":564,"Y":357,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326276Z"},{"ID":32297,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":6481,"X":381,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326277Z"},{"ID":32298,"Name":"Didek","Points":10487,"X":666,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326277Z"},{"ID":32299,"Name":"Wioska barbarzyƄska","Points":2397,"X":410,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326278Z"},{"ID":32300,"Name":"105...tomcz","Points":10425,"X":484,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326279Z"},{"ID":32301,"Name":"R 006 ~KsiÄ…ĆŒÄ™~","Points":9854,"X":487,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326279Z"},{"ID":32302,"Name":"0097","Points":2145,"X":411,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32628Z"},{"ID":32303,"Name":"Wioska barbarzyƄska","Points":4125,"X":327,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32628Z"},{"ID":32304,"Name":"Szlachcic","Points":7795,"X":385,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326281Z"},{"ID":32306,"Name":"031","Points":10019,"X":478,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326281Z"},{"ID":32307,"Name":"Homs","Points":7673,"X":417,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326282Z"},{"ID":32308,"Name":"D11","Points":3481,"X":667,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326283Z"},{"ID":32309,"Name":"003","Points":4408,"X":655,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":699251542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326283Z"},{"ID":32310,"Name":".:110:. Niangmen","Points":4195,"X":509,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326284Z"},{"ID":32311,"Name":"013","Points":8180,"X":359,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326284Z"},{"ID":32312,"Name":"PiekƂo to inni","Points":9183,"X":588,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326285Z"},{"ID":32313,"Name":"038 Assengard","Points":11024,"X":475,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326285Z"},{"ID":32314,"Name":"Wioska barbarzyƄska","Points":2032,"X":418,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326286Z"},{"ID":32315,"Name":"63. KaruTown","Points":9741,"X":661,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326286Z"},{"ID":32316,"Name":"A.09 spóƂdzielnia gryzoni","Points":5647,"X":564,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326287Z"},{"ID":32317,"Name":"015 Ard Carraigh","Points":9566,"X":467,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326287Z"},{"ID":32318,"Name":"Bagdad","Points":9897,"X":484,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326288Z"},{"ID":32319,"Name":"Suppi","Points":9623,"X":470,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326288Z"},{"ID":32320,"Name":"665|552 Wioska barbarzyƄska","Points":6168,"X":665,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326289Z"},{"ID":32321,"Name":"Istanbul","Points":9628,"X":419,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32629Z"},{"ID":32322,"Name":"Monetkownia","Points":10237,"X":632,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32629Z"},{"ID":32323,"Name":"WesoƂych ƚwiąt","Points":5611,"X":564,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326291Z"},{"ID":32324,"Name":"|020| Livadia","Points":10063,"X":496,"Y":673,"Continent":"K64","Bonus":4,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326291Z"},{"ID":32325,"Name":"off 100 %","Points":10110,"X":337,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326292Z"},{"ID":32327,"Name":"0611","Points":9858,"X":484,"Y":674,"Continent":"K64","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326292Z"},{"ID":32328,"Name":"Wioska P1ter","Points":9431,"X":597,"Y":647,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326293Z"},{"ID":32329,"Name":"Wioska 056","Points":9761,"X":643,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326293Z"},{"ID":32330,"Name":"Wioska barbarzyƄska","Points":7900,"X":322,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326294Z"},{"ID":32331,"Name":"Ob Konfederacja","Points":7924,"X":430,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326295Z"},{"ID":32332,"Name":"*191*","Points":10211,"X":378,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326295Z"},{"ID":32333,"Name":"C0163","Points":10362,"X":328,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326296Z"},{"ID":32334,"Name":"[008] ZasƂaƂem Ć‚ĂłĆŒko","Points":10237,"X":669,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326296Z"},{"ID":32335,"Name":"138...barba","Points":6400,"X":444,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326297Z"},{"ID":32336,"Name":"*168*","Points":9890,"X":342,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326297Z"},{"ID":32337,"Name":"B12","Points":5802,"X":476,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326298Z"},{"ID":32339,"Name":"M181_015","Points":9239,"X":344,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326298Z"},{"ID":32340,"Name":"Szulernia","Points":10000,"X":398,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326299Z"},{"ID":32341,"Name":"AAA","Points":9384,"X":530,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326299Z"},{"ID":32342,"Name":"Wioska Czesieekk","Points":8956,"X":674,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3263Z"},{"ID":32343,"Name":"Szlachcic","Points":10393,"X":394,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3263Z"},{"ID":32344,"Name":"Jednak wolę gofry","Points":8168,"X":418,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326301Z"},{"ID":32345,"Name":"D.017","Points":5837,"X":402,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326302Z"},{"ID":32346,"Name":"42 GĂłry Smocze","Points":6496,"X":620,"Y":368,"Continent":"K36","Bonus":2,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326302Z"},{"ID":32347,"Name":"North Savek","Points":424,"X":420,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326303Z"},{"ID":32348,"Name":"KRÓL PAPI WIELKI","Points":7397,"X":614,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326303Z"},{"ID":32349,"Name":"#081#","Points":9761,"X":622,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326304Z"},{"ID":32350,"Name":"024","Points":8069,"X":361,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326304Z"},{"ID":32351,"Name":"Po ƛwiętach","Points":10503,"X":604,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326305Z"},{"ID":32352,"Name":"Gattacka","Points":9482,"X":619,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326305Z"},{"ID":32353,"Name":"amator","Points":5132,"X":560,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326306Z"},{"ID":32354,"Name":"GuRu18.1","Points":4812,"X":337,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326306Z"},{"ID":32355,"Name":"A-043-Hefitto","Points":10168,"X":404,"Y":350,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326307Z"},{"ID":32356,"Name":"C0056","Points":10362,"X":321,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326308Z"},{"ID":32357,"Name":"Sekou","Points":10059,"X":675,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326308Z"},{"ID":32358,"Name":"Brat bierz","Points":5358,"X":327,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326309Z"},{"ID":32359,"Name":"Jednak wolę gofry","Points":6886,"X":425,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326309Z"},{"ID":32360,"Name":"Jednak wolę gofry","Points":9650,"X":415,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32631Z"},{"ID":32361,"Name":"Wioska barbarzyƄska","Points":3549,"X":338,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32631Z"},{"ID":32362,"Name":"A.01 spóƂdzielnia gryzoni","Points":10365,"X":565,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326311Z"},{"ID":32363,"Name":"- 259 - SS","Points":7441,"X":536,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326311Z"},{"ID":32364,"Name":"fff","Points":9325,"X":492,"Y":322,"Continent":"K34","Bonus":7,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326312Z"},{"ID":32365,"Name":"132...opelu","Points":10470,"X":442,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326312Z"},{"ID":32366,"Name":"Wioska barbarzyƄska","Points":9927,"X":502,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326313Z"},{"ID":32367,"Name":"Sk_001","Points":10728,"X":441,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326314Z"},{"ID":32368,"Name":"ADEN","Points":10203,"X":576,"Y":425,"Continent":"K45","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326314Z"},{"ID":32369,"Name":"064 Wioska 009","Points":9598,"X":660,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326315Z"},{"ID":32370,"Name":"Darma dla zawodnika","Points":9340,"X":526,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326315Z"},{"ID":32371,"Name":"*238*","Points":9425,"X":334,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326316Z"},{"ID":32372,"Name":"Darma dla zawodnika","Points":10495,"X":523,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326316Z"},{"ID":32373,"Name":"Wioska Bochun10","Points":7640,"X":330,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326317Z"},{"ID":32374,"Name":"Magdalenakwa82","Points":4129,"X":359,"Y":392,"Continent":"K33","Bonus":2,"PlayerID":849084920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326317Z"},{"ID":32375,"Name":"A007","Points":10237,"X":601,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326318Z"},{"ID":32376,"Name":"223","Points":7933,"X":424,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326319Z"},{"ID":32379,"Name":"216","Points":7693,"X":449,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326319Z"},{"ID":32381,"Name":"Wioska barbarzyƄska","Points":9835,"X":573,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32632Z"},{"ID":32382,"Name":"B 011","Points":9924,"X":660,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32632Z"},{"ID":32383,"Name":"Wioska barbarzyƄska","Points":5753,"X":333,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326321Z"},{"ID":32384,"Name":"081. Pentele","Points":9614,"X":654,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326321Z"},{"ID":32385,"Name":"B.023","Points":10000,"X":678,"Y":501,"Continent":"K56","Bonus":5,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326322Z"},{"ID":32386,"Name":"Wioska Bochun10","Points":4928,"X":324,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326322Z"},{"ID":32387,"Name":"11. Tretogor","Points":395,"X":334,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326323Z"},{"ID":32388,"Name":"Wioska r 19","Points":11130,"X":554,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326323Z"},{"ID":32389,"Name":"004","Points":9650,"X":486,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326324Z"},{"ID":32390,"Name":"A001","Points":10237,"X":600,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326324Z"},{"ID":32391,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":640,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326325Z"},{"ID":32392,"Name":"[036]","Points":8308,"X":667,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326325Z"},{"ID":32393,"Name":"072. Nia","Points":10083,"X":644,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326326Z"},{"ID":32394,"Name":"2.Getafe","Points":7548,"X":563,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326326Z"},{"ID":32395,"Name":"Svaneke","Points":11678,"X":337,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326327Z"},{"ID":32396,"Name":"003. Arsenal","Points":10002,"X":496,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326328Z"},{"ID":32397,"Name":"218","Points":7239,"X":448,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326328Z"},{"ID":32398,"Name":"Deveste ufam Tobie","Points":10000,"X":397,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326329Z"},{"ID":32399,"Name":"B 050","Points":6858,"X":677,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326329Z"},{"ID":32401,"Name":"C0042","Points":10362,"X":323,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32633Z"},{"ID":32402,"Name":"032|| Hercules","Points":10019,"X":486,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32633Z"},{"ID":32403,"Name":"Szlachcic","Points":10479,"X":397,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326331Z"},{"ID":32405,"Name":"0070","Points":8418,"X":412,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326331Z"},{"ID":32406,"Name":"PrzewidziaƂeƛ ĆŒe ja oddasz?","Points":10068,"X":481,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326332Z"},{"ID":32407,"Name":"Wioska barbarzyƄska","Points":8187,"X":519,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326332Z"},{"ID":32408,"Name":"Jednak wolę gofry","Points":10311,"X":499,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326333Z"},{"ID":32409,"Name":"A.14 spóƂdzielnia gryzoni","Points":8080,"X":561,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326333Z"},{"ID":32410,"Name":"015","Points":8807,"X":610,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326334Z"},{"ID":32411,"Name":"#0197 Segadorr dar","Points":10178,"X":463,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326334Z"},{"ID":32412,"Name":"Dąbrowa 0023","Points":3774,"X":349,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326335Z"},{"ID":32413,"Name":"Wioska VII","Points":4679,"X":585,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326336Z"},{"ID":32414,"Name":"Niszapur","Points":3978,"X":430,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326336Z"},{"ID":32415,"Name":"158 Nocny Jastrząb 003","Points":10492,"X":644,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326337Z"},{"ID":32416,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":335,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326337Z"},{"ID":32417,"Name":"Ć»UBR .::.B.E.T.O.N /8","Points":10118,"X":630,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326338Z"},{"ID":32418,"Name":"Sandacz","Points":9888,"X":328,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326338Z"},{"ID":32419,"Name":"025","Points":7721,"X":360,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326339Z"},{"ID":32420,"Name":"049","Points":9902,"X":478,"Y":631,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326339Z"},{"ID":32421,"Name":"Wioska barbarzyƄska","Points":9771,"X":511,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32634Z"},{"ID":32422,"Name":"I#028","Points":9797,"X":620,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32634Z"},{"ID":32423,"Name":"Wioska 07","Points":6875,"X":501,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326341Z"},{"ID":32424,"Name":"070. Parlim","Points":10147,"X":645,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326341Z"},{"ID":32425,"Name":"Wioska barbarzyƄska","Points":10221,"X":559,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326342Z"},{"ID":32426,"Name":"002 CegƂowa wioska","Points":9835,"X":367,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326342Z"},{"ID":32428,"Name":"AAA","Points":9561,"X":535,"Y":323,"Continent":"K35","Bonus":3,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326343Z"},{"ID":32429,"Name":"003","Points":9088,"X":608,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326343Z"},{"ID":32430,"Name":"Grupka 7 wiosek 2","Points":9646,"X":354,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326344Z"},{"ID":32431,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":563,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326344Z"},{"ID":32432,"Name":"K34 - [155] Before Land","Points":9063,"X":432,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326345Z"},{"ID":32433,"Name":"C120","Points":11984,"X":365,"Y":620,"Continent":"K63","Bonus":2,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326346Z"},{"ID":32434,"Name":"Szlachcic","Points":10475,"X":396,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326346Z"},{"ID":32435,"Name":"Taran","Points":9965,"X":341,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326347Z"},{"ID":32436,"Name":"K34 x019","Points":8715,"X":403,"Y":356,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326347Z"},{"ID":32437,"Name":"Pstrag","Points":7727,"X":326,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326348Z"},{"ID":32438,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":331,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326348Z"},{"ID":32439,"Name":"K34 - [156] Before Land","Points":7636,"X":431,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326349Z"},{"ID":32440,"Name":"Chekku - meito","Points":9976,"X":322,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326349Z"},{"ID":32441,"Name":"R 004 ~Kaprys~","Points":10019,"X":490,"Y":679,"Continent":"K64","Bonus":4,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32635Z"},{"ID":32442,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":322,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326351Z"},{"ID":32443,"Name":"K34 x020","Points":8467,"X":404,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326351Z"},{"ID":32444,"Name":"[B]_[045] Dejv.oldplyr","Points":10495,"X":431,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326352Z"},{"ID":32445,"Name":"Ave Why!","Points":9809,"X":481,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326352Z"},{"ID":32446,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9445,"X":490,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326353Z"},{"ID":32447,"Name":"Wioska barbarzyƄska","Points":10728,"X":677,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326353Z"},{"ID":32449,"Name":"1v9 machine","Points":10019,"X":392,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326354Z"},{"ID":32450,"Name":"I052","Points":9956,"X":672,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326354Z"},{"ID":32451,"Name":"Wioska Bochun10","Points":7961,"X":323,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326355Z"},{"ID":32452,"Name":"**12**","Points":9956,"X":632,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326355Z"},{"ID":32453,"Name":"**08**","Points":12154,"X":670,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326356Z"},{"ID":32454,"Name":"Kentin ufam Tobie","Points":10000,"X":328,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326357Z"},{"ID":32455,"Name":"109.Stradi","Points":8518,"X":447,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326357Z"},{"ID":32456,"Name":"Wioska barbarzyƄska","Points":2391,"X":337,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326358Z"},{"ID":32457,"Name":"101. Camulodunum","Points":9969,"X":656,"Y":412,"Continent":"K46","Bonus":4,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326358Z"},{"ID":32460,"Name":"Jednak wolę gofry","Points":6397,"X":419,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326359Z"},{"ID":32461,"Name":"007|| Libra","Points":10019,"X":488,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326359Z"},{"ID":32462,"Name":"Wioska Bochun10","Points":4189,"X":323,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32636Z"},{"ID":32463,"Name":"OrzeƂ WylądowaƂ","Points":9918,"X":461,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32636Z"},{"ID":32464,"Name":"Wioska","Points":3614,"X":328,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":848946608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326361Z"},{"ID":32465,"Name":"C 013","Points":10495,"X":677,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326361Z"},{"ID":32466,"Name":"aaaa","Points":9976,"X":483,"Y":641,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326362Z"},{"ID":32467,"Name":"cz Wioska 79","Points":4669,"X":366,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326363Z"},{"ID":32469,"Name":"AJJ","Points":2670,"X":345,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":7318415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326363Z"},{"ID":32470,"Name":"*255*","Points":9672,"X":337,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326364Z"},{"ID":32471,"Name":"Szulernia","Points":3356,"X":379,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326364Z"},{"ID":32472,"Name":"Taran","Points":10728,"X":678,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326365Z"},{"ID":32473,"Name":"A0272","Points":10362,"X":323,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326365Z"},{"ID":32476,"Name":"Szlachcic","Points":10475,"X":392,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326366Z"},{"ID":32477,"Name":"xdd","Points":9936,"X":491,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326366Z"},{"ID":32478,"Name":"Wioska 048","Points":9761,"X":645,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326367Z"},{"ID":32479,"Name":"057 | PALESTINA","Points":5110,"X":662,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326367Z"},{"ID":32480,"Name":"Wyspa 003","Points":9925,"X":627,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326368Z"},{"ID":32482,"Name":"#0130 Thorus5","Points":10178,"X":477,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326368Z"},{"ID":32483,"Name":"Gattacka","Points":10224,"X":621,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326369Z"},{"ID":32484,"Name":"*044*","Points":10211,"X":352,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326369Z"},{"ID":32485,"Name":"004","Points":9729,"X":677,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32637Z"},{"ID":32486,"Name":"New World","Points":10295,"X":436,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32637Z"},{"ID":32488,"Name":"Komornicy 023","Points":6807,"X":353,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326371Z"},{"ID":32489,"Name":"|A| Farmeadow","Points":10495,"X":482,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326371Z"},{"ID":32490,"Name":"#0125 korniczeks","Points":10178,"X":476,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326372Z"},{"ID":32491,"Name":"A 012","Points":6062,"X":368,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326372Z"},{"ID":32493,"Name":"Barba2","Points":4487,"X":651,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326373Z"},{"ID":32494,"Name":"Jednak wolę gofry","Points":9830,"X":489,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326374Z"},{"ID":32495,"Name":"Jednak wolę gofry","Points":9835,"X":486,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326374Z"},{"ID":32496,"Name":"A0273","Points":10362,"X":323,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326375Z"},{"ID":32497,"Name":"0130","Points":10019,"X":543,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326375Z"},{"ID":32498,"Name":"X | Forest Cyaaaanku","Points":9792,"X":323,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326376Z"},{"ID":32499,"Name":"R 010 ~The end~","Points":10019,"X":486,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326376Z"},{"ID":32500,"Name":"Lord Lord Franek .#103","Points":10160,"X":523,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326377Z"},{"ID":32501,"Name":"019 Lux robota!","Points":10141,"X":379,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326377Z"},{"ID":32502,"Name":"O56 Fano","Points":10234,"X":675,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326378Z"},{"ID":32503,"Name":"Osada koczownikĂłw","Points":10487,"X":625,"Y":630,"Continent":"K66","Bonus":3,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326378Z"},{"ID":32504,"Name":"0412","Points":8108,"X":533,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326379Z"},{"ID":32505,"Name":"Wioska barbarzyƄska","Points":3941,"X":338,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326379Z"},{"ID":32506,"Name":"005","Points":2063,"X":322,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":848895676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32638Z"},{"ID":32507,"Name":"Wioska barbarzyƄska","Points":5487,"X":466,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32638Z"},{"ID":32508,"Name":"Ć»UBR PSYCHIATRYK 001","Points":8278,"X":611,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326381Z"},{"ID":32509,"Name":"Wioska barbarzyƄska","Points":2427,"X":347,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326381Z"},{"ID":32510,"Name":"bromberg","Points":7700,"X":352,"Y":605,"Continent":"K63","Bonus":6,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326382Z"},{"ID":32511,"Name":"12 Ɓotwa","Points":10341,"X":593,"Y":491,"Continent":"K45","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326383Z"},{"ID":32512,"Name":"Ave Why!","Points":8053,"X":454,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326383Z"},{"ID":32513,"Name":"Wioska bprog","Points":8018,"X":642,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326384Z"},{"ID":32514,"Name":"Szulernia","Points":8424,"X":382,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326384Z"},{"ID":32516,"Name":"[B]_[030] Dejv.oldplyr","Points":9595,"X":424,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326385Z"},{"ID":32517,"Name":"A 015","Points":10237,"X":362,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326385Z"},{"ID":32518,"Name":"Wioska 100","Points":10418,"X":646,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326386Z"},{"ID":32520,"Name":"B 051","Points":6586,"X":674,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326386Z"},{"ID":32521,"Name":"Szulernia","Points":8562,"X":388,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326387Z"},{"ID":32522,"Name":"008 .10.Panzergrenadier Division","Points":6162,"X":605,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326387Z"},{"ID":32523,"Name":"Wioska barbarzyƄska","Points":9937,"X":509,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326388Z"},{"ID":32524,"Name":"Deveste ufam Tobie","Points":10000,"X":395,"Y":643,"Continent":"K63","Bonus":5,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326388Z"},{"ID":32525,"Name":"Taran 004","Points":10971,"X":622,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326389Z"},{"ID":32526,"Name":"Ave Why!","Points":9623,"X":446,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326389Z"},{"ID":32527,"Name":"Wioska r 2","Points":5218,"X":555,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32639Z"},{"ID":32528,"Name":"OrzeƂ WylądowaƂ","Points":6919,"X":465,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.32639Z"},{"ID":32529,"Name":"0361","Points":10160,"X":559,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326391Z"},{"ID":32530,"Name":"sony911","Points":10188,"X":615,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326391Z"},{"ID":32532,"Name":"029 Firma na Pana liczy!","Points":9713,"X":374,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326392Z"},{"ID":32533,"Name":"C0192","Points":7192,"X":322,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326392Z"},{"ID":32534,"Name":"Wioska barbarzyƄska","Points":10238,"X":588,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326393Z"},{"ID":32536,"Name":"0105","Points":10160,"X":543,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326393Z"},{"ID":32537,"Name":"66k$ Grvvyq","Points":7241,"X":658,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326394Z"},{"ID":32538,"Name":"_PUSTA","Points":10495,"X":672,"Y":552,"Continent":"K56","Bonus":7,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326394Z"},{"ID":32539,"Name":"amator czysta","Points":5621,"X":557,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326395Z"},{"ID":32540,"Name":"*242*","Points":10559,"X":332,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326396Z"},{"ID":32541,"Name":"Wioska barbarzyƄska","Points":6207,"X":350,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326396Z"},{"ID":32542,"Name":"Wioska barbarzyƄska","Points":10029,"X":673,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326397Z"},{"ID":32543,"Name":"*057*","Points":10211,"X":354,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326397Z"},{"ID":32544,"Name":"fff","Points":9709,"X":493,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326398Z"},{"ID":32545,"Name":"krytl09","Points":10068,"X":515,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326398Z"},{"ID":32546,"Name":".009. Love Hate","Points":10316,"X":501,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326399Z"},{"ID":32547,"Name":"#11","Points":3830,"X":432,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.326399Z"},{"ID":32548,"Name":"Sekou 1","Points":10083,"X":676,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358843Z"},{"ID":32549,"Name":"Miasys 4","Points":5967,"X":344,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358844Z"},{"ID":32550,"Name":"AAA","Points":6791,"X":531,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358845Z"},{"ID":32551,"Name":"#0121 tomek791103","Points":8301,"X":479,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358846Z"},{"ID":32552,"Name":"|057| Barba","Points":8621,"X":498,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358846Z"},{"ID":32553,"Name":"#0115 tomek791103","Points":9765,"X":478,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358847Z"},{"ID":32554,"Name":"K34 - [157] Before Land","Points":8578,"X":431,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358848Z"},{"ID":32555,"Name":"V013","Points":2264,"X":338,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358849Z"},{"ID":32556,"Name":"Wioska barbarzyƄska","Points":2024,"X":670,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358849Z"},{"ID":32557,"Name":"012","Points":7829,"X":357,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35885Z"},{"ID":32558,"Name":"067","Points":9725,"X":675,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358851Z"},{"ID":32559,"Name":"(006)Rall Elorim","Points":10311,"X":334,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358851Z"},{"ID":32560,"Name":"Wioska Natka1968_05","Points":1633,"X":526,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358852Z"},{"ID":32561,"Name":"Myk i do kieszonki","Points":9799,"X":360,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358853Z"},{"ID":32563,"Name":"Chekku - meito","Points":9976,"X":326,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358854Z"},{"ID":32564,"Name":"Wioska barbarzyƄska","Points":9821,"X":506,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358854Z"},{"ID":32565,"Name":":::2:::Koniki","Points":10004,"X":450,"Y":666,"Continent":"K64","Bonus":6,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358855Z"},{"ID":32566,"Name":"Grupka 7 wiosek 4","Points":10025,"X":355,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358856Z"},{"ID":32567,"Name":"*054*","Points":10211,"X":353,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358857Z"},{"ID":32568,"Name":"B 036","Points":8703,"X":674,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358857Z"},{"ID":32569,"Name":"052 Arizona","Points":9553,"X":674,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358858Z"},{"ID":32570,"Name":"=|25|=","Points":10311,"X":637,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358859Z"},{"ID":32571,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":386,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358859Z"},{"ID":32572,"Name":"#Sk_011","Points":3308,"X":438,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35886Z"},{"ID":32573,"Name":"#103 C","Points":8193,"X":530,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358861Z"},{"ID":32574,"Name":"wąchaj wora !!!","Points":10362,"X":589,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358862Z"},{"ID":32575,"Name":"Wzdręga","Points":9825,"X":329,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358863Z"},{"ID":32576,"Name":"amator czysta","Points":5424,"X":552,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358863Z"},{"ID":32577,"Name":"TWIERDZA #2","Points":4365,"X":587,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358864Z"},{"ID":32578,"Name":"030","Points":10019,"X":600,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358865Z"},{"ID":32579,"Name":"O34 Sendai","Points":9458,"X":676,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358866Z"},{"ID":32580,"Name":"Taran","Points":9957,"X":344,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358866Z"},{"ID":32581,"Name":"C0043","Points":10362,"X":323,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358867Z"},{"ID":32583,"Name":"Kentin ufam Tobie","Points":10019,"X":330,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358868Z"},{"ID":32584,"Name":"1v9 machine","Points":10019,"X":389,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358869Z"},{"ID":32585,"Name":"Wioska barbarzyƄska","Points":8278,"X":461,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358869Z"},{"ID":32586,"Name":"J04","Points":6379,"X":365,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35887Z"},{"ID":32587,"Name":"Parole","Points":5850,"X":350,"Y":403,"Continent":"K43","Bonus":2,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358871Z"},{"ID":32588,"Name":"018","Points":4715,"X":361,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358872Z"},{"ID":32589,"Name":"Wioska Bochun10","Points":10311,"X":328,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358872Z"},{"ID":32590,"Name":"117","Points":6756,"X":659,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358873Z"},{"ID":32591,"Name":"Wioska barbarzyƄska","Points":10183,"X":552,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358874Z"},{"ID":32592,"Name":"WesoƂych ƚwiąt","Points":5062,"X":562,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358875Z"},{"ID":32593,"Name":"008","Points":9740,"X":356,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358875Z"},{"ID":32594,"Name":"005 Schwere Panzer-Abteilung 502","Points":9797,"X":604,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358876Z"},{"ID":32596,"Name":"PiekƂo to inni","Points":10160,"X":599,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358877Z"},{"ID":32597,"Name":"polska","Points":2292,"X":351,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358878Z"},{"ID":32598,"Name":"witam somsiadow","Points":10170,"X":587,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358878Z"},{"ID":32599,"Name":"A13","Points":9889,"X":463,"Y":675,"Continent":"K64","Bonus":3,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358879Z"},{"ID":32600,"Name":"XXXX","Points":10162,"X":489,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35888Z"},{"ID":32601,"Name":"Taran","Points":9959,"X":338,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358881Z"},{"ID":32602,"Name":"I088","Points":8220,"X":672,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358881Z"},{"ID":32603,"Name":"Komornicy 021","Points":12154,"X":353,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358882Z"},{"ID":32604,"Name":"D.028","Points":3181,"X":395,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358883Z"},{"ID":32605,"Name":"C.01","Points":10143,"X":681,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358884Z"},{"ID":32606,"Name":"Szlachcic/Taran","Points":10237,"X":635,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358884Z"},{"ID":32607,"Name":"0542","Points":6334,"X":562,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358885Z"},{"ID":32608,"Name":"PiekƂo to inni","Points":10160,"X":327,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358886Z"},{"ID":32609,"Name":"Wrath 010","Points":9814,"X":575,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358887Z"},{"ID":32610,"Name":"A-051-Heffitto","Points":10168,"X":401,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358887Z"},{"ID":32611,"Name":"021 * Lady Porto *","Points":12154,"X":645,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358888Z"},{"ID":32612,"Name":"182.","Points":7537,"X":352,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358889Z"},{"ID":32613,"Name":"~~094~~","Points":10361,"X":630,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358889Z"},{"ID":32614,"Name":"AAA","Points":4647,"X":528,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35889Z"},{"ID":32615,"Name":"Psycha Siada","Points":8430,"X":448,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358891Z"},{"ID":32616,"Name":"1v9 machine","Points":10019,"X":386,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358892Z"},{"ID":32617,"Name":"030|| Vela","Points":10019,"X":468,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358892Z"},{"ID":32618,"Name":"*239*","Points":10211,"X":333,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358893Z"},{"ID":32619,"Name":"Komornik 001","Points":8249,"X":329,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358894Z"},{"ID":32620,"Name":"Alfama","Points":6873,"X":350,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358894Z"},{"ID":32621,"Name":"001","Points":9924,"X":362,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358895Z"},{"ID":32622,"Name":"A0277","Points":9253,"X":321,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358896Z"},{"ID":32623,"Name":"UltraInstynkt++","Points":10068,"X":585,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358897Z"},{"ID":32624,"Name":"Out of Touch","Points":3826,"X":331,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358898Z"},{"ID":32625,"Name":"Szale","Points":10019,"X":463,"Y":676,"Continent":"K64","Bonus":1,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358898Z"},{"ID":32626,"Name":"C0035","Points":10362,"X":321,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358899Z"},{"ID":32627,"Name":"M181_012","Points":9173,"X":338,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3589Z"},{"ID":32628,"Name":"O64 Miryang","Points":10351,"X":674,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3589Z"},{"ID":32629,"Name":"Wioska barbarzyƄska","Points":10229,"X":557,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358901Z"},{"ID":32630,"Name":"Wioska barbarzyƄska","Points":8157,"X":677,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358902Z"},{"ID":32631,"Name":"A003","Points":10083,"X":487,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358903Z"},{"ID":32632,"Name":"Osada koczownikĂłw","Points":10320,"X":623,"Y":628,"Continent":"K66","Bonus":7,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358903Z"},{"ID":32633,"Name":"Taran","Points":10728,"X":681,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358904Z"},{"ID":32634,"Name":"#079#","Points":9761,"X":618,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358905Z"},{"ID":32635,"Name":"146 Oj Mareczku coƛ za duĆŒo cyfr","Points":6043,"X":372,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358905Z"},{"ID":32636,"Name":"Sony 911","Points":7024,"X":580,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358906Z"},{"ID":32637,"Name":"Wieƛ Arhibitsusa","Points":12154,"X":549,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358907Z"},{"ID":32639,"Name":"Lord Lord Franek .#148","Points":8212,"X":508,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358908Z"},{"ID":32640,"Name":"=|10|=","Points":10495,"X":638,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358908Z"},{"ID":32641,"Name":"Wioska barbarzyƄska","Points":2028,"X":370,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358909Z"},{"ID":32642,"Name":"Ave Why!","Points":6001,"X":452,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35891Z"},{"ID":32643,"Name":"025.","Points":10654,"X":618,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":9048764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358911Z"},{"ID":32644,"Name":"#0126 korniczeks","Points":10242,"X":474,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358911Z"},{"ID":32645,"Name":"- DragonB","Points":6591,"X":547,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358912Z"},{"ID":32646,"Name":"Ave Why!","Points":9809,"X":478,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358913Z"},{"ID":32647,"Name":"Normalnie nie","Points":10311,"X":575,"Y":569,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358914Z"},{"ID":32648,"Name":"A 005","Points":10237,"X":369,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358914Z"},{"ID":32649,"Name":"Ob Konfederacja","Points":9763,"X":440,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358915Z"},{"ID":32650,"Name":"002","Points":7773,"X":668,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358916Z"},{"ID":32651,"Name":"012","Points":4242,"X":319,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358917Z"},{"ID":32652,"Name":"Taran 009","Points":10971,"X":623,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358918Z"},{"ID":32653,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":333,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358918Z"},{"ID":32654,"Name":"064","Points":10019,"X":452,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358919Z"},{"ID":32655,"Name":"Pobozowisko","Points":4791,"X":367,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35892Z"},{"ID":32656,"Name":"WschĂłd Droga 007","Points":5120,"X":665,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358921Z"},{"ID":32657,"Name":"#013. Nobody Like Me","Points":8590,"X":457,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358921Z"},{"ID":32658,"Name":"016","Points":8901,"X":614,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358922Z"},{"ID":32659,"Name":"Wioska Westor 2","Points":4380,"X":358,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":699530673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358923Z"},{"ID":32660,"Name":"Wioska barbarzyƄska","Points":6469,"X":348,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358924Z"},{"ID":32661,"Name":"Psycha Siada","Points":4932,"X":448,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358925Z"},{"ID":32662,"Name":"Wioska Cray123","Points":1117,"X":373,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358925Z"},{"ID":32663,"Name":"I025","Points":9983,"X":667,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358926Z"},{"ID":32665,"Name":".:015:.","Points":4626,"X":634,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358927Z"},{"ID":32666,"Name":"-0006-","Points":9750,"X":543,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358927Z"},{"ID":32667,"Name":"AAA","Points":9685,"X":532,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358928Z"},{"ID":32668,"Name":"C0241","Points":10362,"X":327,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358929Z"},{"ID":32669,"Name":"Wioska XIV","Points":7784,"X":577,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35893Z"},{"ID":32670,"Name":"Ob Konfederacja","Points":9791,"X":428,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35893Z"},{"ID":32671,"Name":"*032","Points":9004,"X":595,"Y":650,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358931Z"},{"ID":32672,"Name":"Taran","Points":9897,"X":342,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358932Z"},{"ID":32673,"Name":"Psycha Siada","Points":730,"X":462,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358933Z"},{"ID":32674,"Name":"044","Points":9763,"X":673,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358933Z"},{"ID":32676,"Name":"[025] Wioska barbarzyƄska","Points":9312,"X":667,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358934Z"},{"ID":32678,"Name":"*230*","Points":10211,"X":332,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358935Z"},{"ID":32679,"Name":"Ob Konfederacja","Points":9816,"X":437,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358936Z"},{"ID":32680,"Name":"*008","Points":9129,"X":598,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358936Z"},{"ID":32681,"Name":"Wioska barbarzyƄska","Points":7368,"X":384,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358937Z"},{"ID":32682,"Name":"|025| RIO","Points":8692,"X":499,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358938Z"},{"ID":32683,"Name":"Szlachcic/Taran","Points":10104,"X":634,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358939Z"},{"ID":32684,"Name":"097...tomecz","Points":10217,"X":480,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358939Z"},{"ID":32685,"Name":"- Apokalipto181","Points":9349,"X":547,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35894Z"},{"ID":32686,"Name":"Lord Lord Franek .#092","Points":9976,"X":515,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358941Z"},{"ID":32687,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":634,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358942Z"},{"ID":32688,"Name":"SOKzGUMIjagĂłd","Points":9089,"X":594,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358942Z"},{"ID":32689,"Name":"Kentin ufam Tobie","Points":10005,"X":335,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358943Z"},{"ID":32690,"Name":"Wioska barbarzyƄska","Points":6397,"X":343,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358944Z"},{"ID":32691,"Name":"014 zs 1","Points":9586,"X":675,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358945Z"},{"ID":32692,"Name":"Wioska 090","Points":9761,"X":659,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358946Z"},{"ID":32693,"Name":"053 komornicy","Points":9761,"X":332,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358946Z"},{"ID":32694,"Name":"Szlachcic","Points":10476,"X":393,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358947Z"},{"ID":32695,"Name":"Monetkownia","Points":10009,"X":621,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358948Z"},{"ID":32696,"Name":"106.Stradi","Points":10244,"X":454,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358949Z"},{"ID":32697,"Name":"Certa","Points":10297,"X":333,"Y":552,"Continent":"K53","Bonus":4,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358949Z"},{"ID":32698,"Name":"217","Points":10287,"X":433,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35895Z"},{"ID":32699,"Name":"A 018","Points":10749,"X":363,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358951Z"},{"ID":32700,"Name":"UltraInstynkt=","Points":10068,"X":579,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358951Z"},{"ID":32701,"Name":"Wioska barbarzyƄska","Points":9405,"X":672,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358952Z"},{"ID":32703,"Name":"#0199 Segadorr dar","Points":10178,"X":458,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358953Z"},{"ID":32704,"Name":"A.03 spóƂdzielnia gryzoni","Points":9640,"X":560,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358954Z"},{"ID":32705,"Name":"Wioska barbarzyƄska","Points":5926,"X":465,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358954Z"},{"ID":32706,"Name":"-24-","Points":2471,"X":629,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358955Z"},{"ID":32707,"Name":"J#011","Points":8637,"X":569,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358956Z"},{"ID":32708,"Name":"Wioska barbarzyƄska","Points":10119,"X":554,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358957Z"},{"ID":32709,"Name":"2.4","Points":1941,"X":371,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":849095959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358957Z"},{"ID":32710,"Name":"Wioska barbarzyƄska","Points":2365,"X":355,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358958Z"},{"ID":32711,"Name":"Muchomor *017*","Points":10300,"X":520,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358959Z"},{"ID":32712,"Name":"013","Points":10019,"X":457,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358959Z"},{"ID":32713,"Name":"Bania u Cygana","Points":3396,"X":342,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35896Z"},{"ID":32714,"Name":"Szlachcic/Taran","Points":10237,"X":641,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358961Z"},{"ID":32715,"Name":"Wioska barbarzyƄska","Points":5998,"X":630,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358962Z"},{"ID":32716,"Name":"A004","Points":8547,"X":493,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358963Z"},{"ID":32717,"Name":"Wioska Sir Zordon 002","Points":6251,"X":666,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358963Z"},{"ID":32718,"Name":"$MinnesotaTimberwolves","Points":6661,"X":680,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358964Z"},{"ID":32719,"Name":"Niby 01","Points":5918,"X":357,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358965Z"},{"ID":32720,"Name":"0441","Points":8507,"X":537,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358965Z"},{"ID":32721,"Name":"Sekou","Points":10059,"X":674,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358966Z"},{"ID":32722,"Name":"077. Acyra","Points":10057,"X":653,"Y":409,"Continent":"K46","Bonus":7,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358967Z"},{"ID":32723,"Name":"S-F. Elektryczna Mysz","Points":6617,"X":662,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358968Z"},{"ID":32724,"Name":"Chekku - meito","Points":9976,"X":326,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358968Z"},{"ID":32725,"Name":"#0071 tomek791103","Points":10178,"X":478,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358969Z"},{"ID":32726,"Name":"Deveste ufam Tobie","Points":10000,"X":400,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35897Z"},{"ID":32727,"Name":"hell","Points":7930,"X":649,"Y":406,"Continent":"K46","Bonus":8,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358971Z"},{"ID":32728,"Name":"018","Points":10019,"X":460,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358971Z"},{"ID":32729,"Name":"080 ƚwiąteczna Bombka","Points":10001,"X":649,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358972Z"},{"ID":32730,"Name":"0294","Points":10160,"X":547,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358973Z"},{"ID":32731,"Name":"V011","Points":4114,"X":338,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358973Z"},{"ID":32732,"Name":"Wioska XIII","Points":7794,"X":582,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358974Z"},{"ID":32733,"Name":"Pretoria 1","Points":10252,"X":558,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358975Z"},{"ID":32734,"Name":"A0282","Points":10362,"X":325,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358976Z"},{"ID":32735,"Name":"Nie","Points":2235,"X":441,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358976Z"},{"ID":32736,"Name":"Szlachcic","Points":7487,"X":381,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358977Z"},{"ID":32737,"Name":"083 Ludzie tu nikogo nie ma","Points":10495,"X":332,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358978Z"},{"ID":32738,"Name":"AAA","Points":9766,"X":531,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358979Z"},{"ID":32739,"Name":"*002*","Points":10211,"X":357,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358979Z"},{"ID":32740,"Name":"#0114 tomek791103","Points":10178,"X":479,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35898Z"},{"ID":32741,"Name":"Brown","Points":9835,"X":492,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358981Z"},{"ID":32742,"Name":"SOKzGUMIjagĂłd","Points":4312,"X":594,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358982Z"},{"ID":32743,"Name":"Horyzont zdarzeƄ","Points":10019,"X":514,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358982Z"},{"ID":32744,"Name":"[026] Wioska barbarzyƄska","Points":9312,"X":667,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358983Z"},{"ID":32745,"Name":"Wioska Samuraj","Points":8791,"X":500,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358984Z"},{"ID":32746,"Name":"Wioska barbarzyƄska","Points":9799,"X":436,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358985Z"},{"ID":32747,"Name":"002 PoĆŒarski na wynos","Points":8803,"X":479,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358985Z"},{"ID":32748,"Name":"Taran","Points":9959,"X":337,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358986Z"},{"ID":32750,"Name":"PiekƂo to inni","Points":8694,"X":591,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358987Z"},{"ID":32751,"Name":"Ć»UBRAWKA 057 .::.nic tu nie ma","Points":10247,"X":613,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358987Z"},{"ID":32752,"Name":"Gudhjem","Points":8341,"X":335,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358988Z"},{"ID":32753,"Name":"#005#","Points":9761,"X":619,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358989Z"},{"ID":32754,"Name":"059","Points":9993,"X":534,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35899Z"},{"ID":32755,"Name":"Myk i do kieszonki","Points":7538,"X":363,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35899Z"},{"ID":32756,"Name":"AAA","Points":9295,"X":528,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358991Z"},{"ID":32758,"Name":"Redemption Song","Points":8367,"X":645,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358992Z"},{"ID":32759,"Name":"Setubal","Points":9560,"X":349,"Y":590,"Continent":"K53","Bonus":2,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358992Z"},{"ID":32760,"Name":"V010","Points":4415,"X":340,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358993Z"},{"ID":32761,"Name":"037","Points":9993,"X":530,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358994Z"},{"ID":32762,"Name":"Wyspa 010","Points":10273,"X":628,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358995Z"},{"ID":32763,"Name":"#065#","Points":9761,"X":624,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358995Z"},{"ID":32764,"Name":"B05","Points":9835,"X":476,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358996Z"},{"ID":32765,"Name":"052","Points":6749,"X":675,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358997Z"},{"ID":32766,"Name":"#004#","Points":9761,"X":629,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358998Z"},{"ID":32767,"Name":"Ręcznik do zmiany","Points":10019,"X":355,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358998Z"},{"ID":32768,"Name":"Miami, Floryda","Points":10444,"X":603,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.358999Z"},{"ID":32769,"Name":"B.02","Points":8748,"X":675,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359Z"},{"ID":32770,"Name":"1v9 machine","Points":10019,"X":391,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359001Z"},{"ID":32771,"Name":"lolo","Points":2334,"X":625,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":849092639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359001Z"},{"ID":32772,"Name":"Ręcznik do zmiany","Points":10019,"X":354,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359002Z"},{"ID":32773,"Name":"025 Nowy rok","Points":4641,"X":356,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359003Z"},{"ID":32774,"Name":"084","Points":6871,"X":627,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359004Z"},{"ID":32775,"Name":"**36**","Points":10643,"X":668,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359004Z"},{"ID":32776,"Name":"SJ3","Points":10495,"X":327,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359005Z"},{"ID":32777,"Name":"Wioska barbarzyƄska","Points":7379,"X":382,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359006Z"},{"ID":32778,"Name":"Barbababarba","Points":2703,"X":345,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359007Z"},{"ID":32779,"Name":"Kentin ufam Tobie","Points":10000,"X":323,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359007Z"},{"ID":32782,"Name":"AAA","Points":4344,"X":540,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359008Z"},{"ID":32783,"Name":"Jehu_Kingdom_69","Points":645,"X":664,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359009Z"},{"ID":32784,"Name":"Wioska barbarzyƄska","Points":10728,"X":680,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359009Z"},{"ID":32785,"Name":"125. Bezmiar Wschodni Daleki","Points":6841,"X":644,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35901Z"},{"ID":32786,"Name":"Westfold.016","Points":8068,"X":338,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359011Z"},{"ID":32787,"Name":"[B]_[029] Dejv.oldplyr","Points":10233,"X":424,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359012Z"},{"ID":32788,"Name":"Taran 022","Points":10728,"X":639,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359012Z"},{"ID":32789,"Name":"WB 02","Points":8295,"X":639,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359013Z"},{"ID":32790,"Name":"A004 PASTOR","Points":10160,"X":663,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359014Z"},{"ID":32791,"Name":"46. KaruTown","Points":6789,"X":641,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359014Z"},{"ID":32792,"Name":"Szlachcic","Points":10476,"X":387,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359015Z"},{"ID":32793,"Name":"042","Points":9993,"X":522,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359016Z"},{"ID":32794,"Name":"0017","Points":4835,"X":628,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359017Z"},{"ID":32795,"Name":"122...tomcz","Points":10273,"X":477,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359017Z"},{"ID":32796,"Name":"[02]","Points":7955,"X":428,"Y":662,"Continent":"K64","Bonus":3,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359018Z"},{"ID":32797,"Name":"Wioska barbarzyƄska","Points":8013,"X":663,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":849045915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359019Z"},{"ID":32798,"Name":"0656","Points":9505,"X":551,"Y":670,"Continent":"K65","Bonus":7,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35902Z"},{"ID":32799,"Name":"009","Points":8525,"X":525,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35902Z"},{"ID":32800,"Name":"Taran","Points":9968,"X":342,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359021Z"},{"ID":32801,"Name":"|061| Idą ƚwięta","Points":9811,"X":509,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359022Z"},{"ID":32802,"Name":"=|37|=","Points":10495,"X":640,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359023Z"},{"ID":32803,"Name":"AJY","Points":3663,"X":343,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":7318415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359024Z"},{"ID":32804,"Name":"Lord Lord Franek .#147","Points":9968,"X":508,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359024Z"},{"ID":32805,"Name":"Szulernia","Points":3102,"X":374,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359025Z"},{"ID":32806,"Name":"0124","Points":5082,"X":411,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359026Z"},{"ID":32807,"Name":"A0262","Points":10362,"X":328,"Y":476,"Continent":"K43","Bonus":2,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359027Z"},{"ID":32809,"Name":"C0148","Points":9355,"X":324,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359027Z"},{"ID":32810,"Name":"26. 335i","Points":10697,"X":552,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359028Z"},{"ID":32812,"Name":"Wioska barbarzyƄska","Points":9027,"X":630,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359029Z"},{"ID":32814,"Name":"Wioska barbarzyƄska","Points":9950,"X":675,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35903Z"},{"ID":32815,"Name":"Lord Lord Franek .#134","Points":7143,"X":519,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35903Z"},{"ID":32817,"Name":"012","Points":9783,"X":591,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359031Z"},{"ID":32818,"Name":"0444","Points":8578,"X":559,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359032Z"},{"ID":32819,"Name":"(011)Panatham","Points":8946,"X":332,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359032Z"},{"ID":32820,"Name":"_PUSTA","Points":10237,"X":650,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359033Z"},{"ID":32821,"Name":"002 Rabarbarum","Points":7290,"X":592,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699576407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359034Z"},{"ID":32822,"Name":"Brat447","Points":10971,"X":391,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359035Z"},{"ID":32823,"Name":"006","Points":7530,"X":322,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359035Z"},{"ID":32824,"Name":"025 gĂłra","Points":10508,"X":661,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359036Z"},{"ID":32825,"Name":"#0122 tomek791103","Points":9206,"X":480,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359037Z"},{"ID":32826,"Name":"ZachĂłd 002","Points":3516,"X":369,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359037Z"},{"ID":32827,"Name":"#0113 tomek791103","Points":10178,"X":477,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359038Z"},{"ID":32828,"Name":"Wioska Sir Zordon","Points":8909,"X":665,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359039Z"},{"ID":32829,"Name":"krytl01","Points":9821,"X":510,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35904Z"},{"ID":32830,"Name":"OrzeƂ WylądowaƂ","Points":9854,"X":464,"Y":673,"Continent":"K64","Bonus":6,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35904Z"},{"ID":32831,"Name":"Wioska JasJ","Points":11083,"X":573,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359041Z"},{"ID":32832,"Name":"kto ananasowy pod wodą ma dom","Points":8150,"X":675,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359042Z"},{"ID":32833,"Name":"*059*","Points":10211,"X":350,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359043Z"},{"ID":32834,"Name":"Wioska r 10","Points":4257,"X":557,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359043Z"},{"ID":32835,"Name":"- 295 - SS","Points":8330,"X":544,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359044Z"},{"ID":32836,"Name":"Wioska barbarzyƄska","Points":2326,"X":353,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359045Z"},{"ID":32837,"Name":"- 291- SS","Points":9417,"X":544,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359045Z"},{"ID":32838,"Name":"Wioska Sir Zordon 003","Points":7266,"X":664,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359046Z"},{"ID":32839,"Name":"Szlachcic/Taran","Points":10237,"X":640,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359047Z"},{"ID":32840,"Name":"AAA","Points":7040,"X":530,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359048Z"},{"ID":32841,"Name":"32. Sophisticated","Points":10220,"X":557,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359048Z"},{"ID":32842,"Name":"A 052","Points":9279,"X":369,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359049Z"},{"ID":32843,"Name":"Wioska barbarzyƄska","Points":10221,"X":554,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35905Z"},{"ID":32844,"Name":"054. Eldor","Points":10083,"X":657,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359051Z"},{"ID":32845,"Name":"X | Forest Cyaaaanku","Points":8526,"X":322,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359051Z"},{"ID":32846,"Name":"Freytaga II","Points":8124,"X":641,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359052Z"},{"ID":32847,"Name":"2.Leganes","Points":4867,"X":563,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359053Z"},{"ID":32848,"Name":"Szlachcic/Taran","Points":10104,"X":640,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359054Z"},{"ID":32849,"Name":"Wioska barbarzyƄska","Points":3403,"X":629,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359054Z"},{"ID":32850,"Name":"Wioska barbarzyƄska","Points":7109,"X":350,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359055Z"},{"ID":32851,"Name":"MMMMMM","Points":10340,"X":490,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359056Z"},{"ID":32852,"Name":"Grvvyq 108k$","Points":10096,"X":680,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359057Z"},{"ID":32853,"Name":"D.005","Points":8305,"X":403,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359057Z"},{"ID":32854,"Name":"046 | PALESTINA","Points":9544,"X":657,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359058Z"},{"ID":32855,"Name":"Taran","Points":9223,"X":344,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359059Z"},{"ID":32857,"Name":"Westfold.019","Points":8371,"X":336,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359059Z"},{"ID":32858,"Name":"R 018 ~Morthal~","Points":9717,"X":487,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35906Z"},{"ID":32859,"Name":"102","Points":8357,"X":593,"Y":649,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359061Z"},{"ID":32860,"Name":"Pikachu","Points":5708,"X":550,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359062Z"},{"ID":32862,"Name":"Wioska barbarzyƄska","Points":9934,"X":675,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359062Z"},{"ID":32863,"Name":"A001","Points":10495,"X":492,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359063Z"},{"ID":32864,"Name":"#0095 barbarzyƄska","Points":9356,"X":472,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359064Z"},{"ID":32865,"Name":"Tykocin","Points":9835,"X":576,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359064Z"},{"ID":32866,"Name":"Jednak wolę gofry","Points":7473,"X":419,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359065Z"},{"ID":32867,"Name":"Wioska Brzydal 3-5","Points":3250,"X":669,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":9151549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359066Z"},{"ID":32868,"Name":"DejMon4","Points":9715,"X":366,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359067Z"},{"ID":32869,"Name":"Szlachcic","Points":9853,"X":383,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359067Z"},{"ID":32870,"Name":"DejMon","Points":9182,"X":371,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359068Z"},{"ID":32871,"Name":"Wioska","Points":2846,"X":327,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":848946608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359069Z"},{"ID":32872,"Name":"Kentin ufam Tobie","Points":10000,"X":329,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35907Z"},{"ID":32873,"Name":"Ave Why!","Points":9085,"X":445,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35907Z"},{"ID":32874,"Name":"*INTERTWINED*","Points":7042,"X":517,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359071Z"},{"ID":32875,"Name":"Szlachcic","Points":10348,"X":398,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359072Z"},{"ID":32876,"Name":"Wioska b1","Points":7616,"X":503,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359073Z"},{"ID":32877,"Name":"004 Wioska barbarzyƄska","Points":4488,"X":606,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":6409472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359073Z"},{"ID":32878,"Name":"02.Twoje Offy","Points":3706,"X":448,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":361125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359074Z"},{"ID":32879,"Name":"TAKE It","Points":9994,"X":578,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359075Z"},{"ID":32880,"Name":"A 006","Points":8530,"X":366,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359076Z"},{"ID":32881,"Name":"SPOCENI KUZYNI","Points":5902,"X":408,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359077Z"},{"ID":32882,"Name":"Niby 02","Points":10019,"X":355,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359077Z"},{"ID":32883,"Name":"- 255 - SS","Points":7802,"X":537,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359078Z"},{"ID":32884,"Name":"Szlachcic","Points":10513,"X":382,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359079Z"},{"ID":32885,"Name":"038 Boru1996 #2","Points":10143,"X":375,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35908Z"},{"ID":32886,"Name":"Wioska barbarzyƄska","Points":5026,"X":460,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359081Z"},{"ID":32887,"Name":"AAA","Points":9246,"X":536,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359082Z"},{"ID":32888,"Name":"BB1","Points":4535,"X":650,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359083Z"},{"ID":32889,"Name":":::2:::Koniki","Points":7863,"X":450,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359083Z"},{"ID":32890,"Name":"#104 C","Points":8348,"X":529,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359084Z"},{"ID":32891,"Name":"053","Points":9677,"X":458,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359085Z"},{"ID":32892,"Name":"224","Points":7179,"X":420,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359086Z"},{"ID":32893,"Name":"Wioska 3","Points":6088,"X":574,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359087Z"},{"ID":32894,"Name":"004 LordDaymon","Points":9330,"X":378,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359088Z"},{"ID":32895,"Name":"-009-","Points":3305,"X":541,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359089Z"},{"ID":32896,"Name":"Darma dla zawodnika","Points":9005,"X":521,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35909Z"},{"ID":32897,"Name":"Wioska #1","Points":3759,"X":589,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359091Z"},{"ID":32899,"Name":"Zeta Reticuli W","Points":6051,"X":359,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359092Z"},{"ID":32900,"Name":"*062*","Points":10211,"X":349,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359093Z"},{"ID":32901,"Name":"030.","Points":3855,"X":633,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359094Z"},{"ID":32902,"Name":"#0049 geryk","Points":10178,"X":470,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359095Z"},{"ID":32903,"Name":"Brickstone","Points":2592,"X":647,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359095Z"},{"ID":32904,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359096Z"},{"ID":32905,"Name":"Wioska barbarzyƄska","Points":7558,"X":351,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359097Z"},{"ID":32906,"Name":"Wioska barbarzyƄska","Points":10654,"X":639,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359098Z"},{"ID":32907,"Name":"AdamĂłw","Points":8066,"X":568,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359099Z"},{"ID":32908,"Name":"Maradonna","Points":12154,"X":623,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3591Z"},{"ID":32909,"Name":"I006","Points":9841,"X":666,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3591Z"},{"ID":32910,"Name":"Psycha Siada","Points":5414,"X":445,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359101Z"},{"ID":32911,"Name":"Wioska ba15","Points":6906,"X":496,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359102Z"},{"ID":32912,"Name":"Guru18","Points":6610,"X":332,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":849098192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359103Z"},{"ID":32913,"Name":"Wioska barbarzyƄska","Points":3728,"X":376,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359103Z"},{"ID":32914,"Name":"Wioska Bochun10","Points":6696,"X":322,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359104Z"},{"ID":32916,"Name":"02. Novigrad","Points":10539,"X":331,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359105Z"},{"ID":32917,"Name":"Barba","Points":3574,"X":414,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359106Z"},{"ID":32918,"Name":"Ręcznik do zmiany","Points":10019,"X":351,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359106Z"},{"ID":32919,"Name":"021","Points":8696,"X":483,"Y":372,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359107Z"},{"ID":32920,"Name":"030 Maaooooo!","Points":10144,"X":383,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359108Z"},{"ID":32921,"Name":"Szlachcic","Points":10476,"X":392,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359109Z"},{"ID":32922,"Name":"A14","Points":9906,"X":466,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359109Z"},{"ID":32923,"Name":"Osada koczownikĂłw","Points":9722,"X":675,"Y":479,"Continent":"K46","Bonus":2,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35911Z"},{"ID":32924,"Name":"Pretoria 3","Points":10229,"X":558,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359111Z"},{"ID":32925,"Name":"043","Points":868,"X":449,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359112Z"},{"ID":32926,"Name":"C0027","Points":10362,"X":320,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359112Z"},{"ID":32927,"Name":"046 Numer","Points":10157,"X":658,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359113Z"},{"ID":32928,"Name":"Lord Arsey KING","Points":10285,"X":518,"Y":490,"Continent":"K45","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359114Z"},{"ID":32930,"Name":"Wioska barbarzyƄska","Points":6465,"X":342,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359114Z"},{"ID":32932,"Name":"056 Wioska 001","Points":10400,"X":659,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359115Z"},{"ID":32933,"Name":"Wioska barbarzyƄska","Points":10217,"X":557,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359116Z"},{"ID":32934,"Name":"060","Points":9514,"X":530,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359117Z"},{"ID":32935,"Name":"C0071","Points":10362,"X":322,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359117Z"},{"ID":32936,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":320,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359118Z"},{"ID":32937,"Name":"Komornik 005","Points":6168,"X":326,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359119Z"},{"ID":32939,"Name":"Szlachcic","Points":10476,"X":383,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35912Z"},{"ID":32941,"Name":"Lord Lord Franek .#135","Points":7882,"X":527,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35912Z"},{"ID":32942,"Name":"0011 MzM","Points":9258,"X":614,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359121Z"},{"ID":32943,"Name":"New World","Points":10290,"X":438,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359122Z"},{"ID":32945,"Name":"Lin","Points":7538,"X":330,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359123Z"},{"ID":32946,"Name":"Osada koczownikĂłw","Points":6184,"X":403,"Y":654,"Continent":"K64","Bonus":7,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359123Z"},{"ID":32947,"Name":"Did","Points":10971,"X":669,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359124Z"},{"ID":32948,"Name":"0307","Points":9015,"X":552,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359125Z"},{"ID":32949,"Name":"ZUBRAWKA 052 pinkolinka","Points":10222,"X":615,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359125Z"},{"ID":32950,"Name":"New Land 23","Points":2394,"X":344,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359126Z"},{"ID":32951,"Name":"PiekƂo to inni","Points":9761,"X":589,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359127Z"},{"ID":32952,"Name":"Wioska barbarzyƄska","Points":10484,"X":639,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359128Z"},{"ID":32953,"Name":"Ć»ubr .::. Metanol Lecter/6","Points":8131,"X":610,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359128Z"},{"ID":32954,"Name":"#0185 KacperII","Points":5641,"X":466,"Y":322,"Continent":"K34","Bonus":3,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359129Z"},{"ID":32955,"Name":"*220*","Points":5497,"X":370,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35913Z"},{"ID":32956,"Name":"188...Segador M","Points":9337,"X":445,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35913Z"},{"ID":32957,"Name":"029.xxx","Points":7783,"X":494,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359131Z"},{"ID":32958,"Name":"[020]","Points":9809,"X":635,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359132Z"},{"ID":32959,"Name":"X | Forest Cyaaaanku","Points":4963,"X":325,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359133Z"},{"ID":32960,"Name":"Wioska barbarzyƄska","Points":6662,"X":620,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359133Z"},{"ID":32961,"Name":"Wioska barbarzyƄska","Points":7376,"X":344,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359134Z"},{"ID":32962,"Name":"Wioska barbarzyƄska","Points":10495,"X":503,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359135Z"},{"ID":32963,"Name":"005","Points":9726,"X":676,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359135Z"},{"ID":32964,"Name":"Wioska 060","Points":9761,"X":652,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359136Z"},{"ID":32965,"Name":"Centrum 7","Points":2925,"X":648,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359137Z"},{"ID":32966,"Name":"Wioska barbarzyƄska","Points":10617,"X":641,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359138Z"},{"ID":32968,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":318,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359139Z"},{"ID":32969,"Name":"TWIERDZA #4","Points":3931,"X":584,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359139Z"},{"ID":32970,"Name":"100...tomecz","Points":10474,"X":481,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35914Z"},{"ID":32971,"Name":"DejMon8","Points":4298,"X":366,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359141Z"},{"ID":32972,"Name":"Szlachcic/Taran","Points":9914,"X":633,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359142Z"},{"ID":32973,"Name":"Psycha Siada","Points":10122,"X":440,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359142Z"},{"ID":32974,"Name":"J#021","Points":9797,"X":582,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359143Z"},{"ID":32975,"Name":"*049*","Points":10211,"X":350,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359144Z"},{"ID":32976,"Name":"*050*","Points":10211,"X":360,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359145Z"},{"ID":32977,"Name":"104.Stradi","Points":9729,"X":455,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359145Z"},{"ID":32978,"Name":"A042","Points":8593,"X":609,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359146Z"},{"ID":32979,"Name":"*042*","Points":10211,"X":359,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359147Z"},{"ID":32980,"Name":"Wioska barbarzyƄska","Points":4157,"X":495,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359148Z"},{"ID":32981,"Name":"Wioska barbarzyƄska x","Points":9547,"X":650,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359148Z"},{"ID":32982,"Name":"Out of Touch","Points":9505,"X":329,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359149Z"},{"ID":32984,"Name":"Lord Lord Franek .#194","Points":9761,"X":611,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35915Z"},{"ID":32985,"Name":"Mekka","Points":11078,"X":475,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359151Z"},{"ID":32986,"Name":"*217*","Points":6235,"X":370,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359151Z"},{"ID":32987,"Name":"Didek","Points":10160,"X":667,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359152Z"},{"ID":32988,"Name":"AAA","Points":7430,"X":536,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359153Z"},{"ID":32989,"Name":"Wioska barbarzyƄska","Points":6672,"X":351,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359154Z"},{"ID":32990,"Name":"Wioska r 6","Points":5474,"X":560,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359154Z"},{"ID":32991,"Name":"New World","Points":10294,"X":431,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359155Z"},{"ID":32992,"Name":"AAA","Points":6512,"X":537,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359156Z"},{"ID":32993,"Name":"023","Points":7478,"X":609,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359157Z"},{"ID":32994,"Name":"020","Points":6365,"X":411,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359157Z"},{"ID":32995,"Name":"[018] Hans Klop s","Points":9312,"X":665,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359158Z"},{"ID":32996,"Name":"Jednak wolę gofry","Points":7697,"X":419,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359159Z"},{"ID":32997,"Name":"Vanaheim","Points":10310,"X":626,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35916Z"},{"ID":32998,"Name":"*163*","Points":10211,"X":345,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35916Z"},{"ID":32999,"Name":"Wioska barbarzyƄska","Points":7405,"X":523,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359161Z"},{"ID":33000,"Name":"Mroczny Zamek 019","Points":10239,"X":384,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359162Z"},{"ID":33001,"Name":"cz 110 3","Points":8093,"X":369,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359162Z"},{"ID":33002,"Name":"zachod 002","Points":10393,"X":369,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":8967440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359163Z"},{"ID":33003,"Name":"Monetkownia","Points":10237,"X":622,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359164Z"},{"ID":33004,"Name":"0006","Points":9391,"X":673,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359165Z"},{"ID":33005,"Name":"59. KaruTown","Points":9735,"X":662,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359165Z"},{"ID":33006,"Name":"Jaaa","Points":10479,"X":676,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359166Z"},{"ID":33008,"Name":"Bunkier 007","Points":6253,"X":621,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359167Z"},{"ID":33009,"Name":"Liniewo","Points":12154,"X":656,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359167Z"},{"ID":33010,"Name":"Gold dream","Points":4052,"X":647,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359168Z"},{"ID":33012,"Name":"Wioska barbarzyƄska","Points":7794,"X":518,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359169Z"},{"ID":33013,"Name":"=|27|=","Points":10495,"X":641,"Y":389,"Continent":"K36","Bonus":9,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35917Z"},{"ID":33014,"Name":"056","Points":8723,"X":676,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35917Z"},{"ID":33015,"Name":"041","Points":9993,"X":535,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359171Z"},{"ID":33016,"Name":"WschĂłd Droga 009","Points":4393,"X":673,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359172Z"},{"ID":33017,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":465,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359173Z"},{"ID":33018,"Name":"Wioska barbarzyƄska","Points":9927,"X":505,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359173Z"},{"ID":33019,"Name":"Lord Lord Franek .#186","Points":11489,"X":545,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359174Z"},{"ID":33020,"Name":"I039","Points":9811,"X":669,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359175Z"},{"ID":33021,"Name":"[B]_[018] Dejv.oldplyr","Points":10495,"X":421,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359175Z"},{"ID":33022,"Name":"220","Points":6336,"X":427,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359176Z"},{"ID":33024,"Name":"Wioska barbarzyƄska","Points":9079,"X":430,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359177Z"},{"ID":33027,"Name":"J#023","Points":10030,"X":573,"Y":338,"Continent":"K35","Bonus":5,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359178Z"},{"ID":33029,"Name":"Osada koczownikĂłw","Points":10495,"X":503,"Y":676,"Continent":"K65","Bonus":3,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359178Z"},{"ID":33030,"Name":"#046.521|496","Points":9735,"X":640,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359179Z"},{"ID":33031,"Name":"#0190 Segadorr dar","Points":10178,"X":460,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35918Z"},{"ID":33032,"Name":"05 BorĂłwka","Points":1818,"X":646,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359181Z"},{"ID":33034,"Name":"A-049-Heffitto","Points":10168,"X":403,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359181Z"},{"ID":33035,"Name":"Wioska VIII","Points":6874,"X":582,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359182Z"},{"ID":33036,"Name":"Ć»UBRAWKA 054","Points":9791,"X":612,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359183Z"},{"ID":33037,"Name":"BACÓWKA |038|","Points":11307,"X":634,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359183Z"},{"ID":33038,"Name":"Wioska0","Points":9584,"X":578,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359184Z"},{"ID":33039,"Name":"A 013","Points":6395,"X":369,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359185Z"},{"ID":33041,"Name":"Wonderwall","Points":9486,"X":325,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359186Z"},{"ID":33042,"Name":"Szlachcic","Points":10478,"X":396,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359187Z"},{"ID":33043,"Name":"Szlachcic/Taran","Points":10237,"X":639,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359187Z"},{"ID":33044,"Name":"071 komornicy","Points":6698,"X":326,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359188Z"},{"ID":33045,"Name":"X | Forest Cyaaaanku","Points":9941,"X":323,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359189Z"},{"ID":33046,"Name":"Wioska barbarzyƄska","Points":9737,"X":679,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35919Z"},{"ID":33048,"Name":"Ob Konfederacja","Points":8298,"X":436,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35919Z"},{"ID":33049,"Name":"A002","Points":9861,"X":491,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359191Z"},{"ID":33050,"Name":"Psycha Siada","Points":8089,"X":449,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359192Z"},{"ID":33051,"Name":"Pluszaki","Points":5828,"X":325,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359193Z"},{"ID":33052,"Name":"Ave Why!","Points":4975,"X":449,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359193Z"},{"ID":33053,"Name":"48. KaruTown","Points":7971,"X":642,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359194Z"},{"ID":33054,"Name":"020 * Lady Porto *","Points":12154,"X":646,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359195Z"},{"ID":33055,"Name":"*071*","Points":10211,"X":360,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359196Z"},{"ID":33056,"Name":"Deveste ufam Tobie","Points":10000,"X":396,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359196Z"},{"ID":33057,"Name":"**42**","Points":8347,"X":672,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359197Z"},{"ID":33058,"Name":"098. Heraclea","Points":5099,"X":657,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359198Z"},{"ID":33059,"Name":"*058*","Points":10211,"X":357,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359199Z"},{"ID":33060,"Name":"Taran","Points":9206,"X":342,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359199Z"},{"ID":33061,"Name":"Szlachcic","Points":10475,"X":391,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3592Z"},{"ID":33062,"Name":"OrzeƂ WylądowaƂ","Points":5164,"X":463,"Y":672,"Continent":"K64","Bonus":9,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359201Z"},{"ID":33063,"Name":"Wioska Bochun10","Points":6283,"X":323,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359201Z"},{"ID":33064,"Name":"X | Forest Cyaaaanku","Points":10000,"X":320,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359202Z"},{"ID":33065,"Name":"Wioska barbarzyƄska","Points":10495,"X":513,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359203Z"},{"ID":33066,"Name":"030.xxx","Points":10136,"X":493,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359203Z"},{"ID":33067,"Name":"#053#","Points":9761,"X":626,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359204Z"},{"ID":33068,"Name":"AAA","Points":6720,"X":535,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359205Z"},{"ID":33069,"Name":"--19--","Points":7382,"X":348,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359206Z"},{"ID":33070,"Name":"014 .2. Infanterie-Division","Points":3878,"X":606,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359206Z"},{"ID":33071,"Name":"D03","Points":9993,"X":667,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359207Z"},{"ID":33072,"Name":"Wioska barbarzyƄska","Points":8896,"X":679,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359208Z"},{"ID":33073,"Name":"dalej nie idę !!!","Points":10492,"X":590,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359208Z"},{"ID":33074,"Name":"Jednak wolę gofry","Points":5908,"X":419,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359209Z"},{"ID":33075,"Name":"031 Czemu mnie maszyna stoi?","Points":10160,"X":383,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35921Z"},{"ID":33076,"Name":"Lord Lord Franek .#108","Points":10559,"X":512,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359211Z"},{"ID":33077,"Name":"0607","Points":10019,"X":481,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359211Z"},{"ID":33078,"Name":"ABD","Points":4181,"X":660,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359212Z"},{"ID":33079,"Name":"037 Boru1996","Points":10141,"X":374,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359213Z"},{"ID":33081,"Name":"R 016 ~Samotnia~","Points":10019,"X":483,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359213Z"},{"ID":33082,"Name":"[334] Mroczna Myszka ZBUD","Points":10530,"X":584,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359214Z"},{"ID":33083,"Name":"029. Night Raid-","Points":10845,"X":471,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359215Z"},{"ID":33084,"Name":"[B]_[001] Dejv.oldplyr","Points":10495,"X":422,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359216Z"},{"ID":33085,"Name":"011","Points":8855,"X":592,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359216Z"},{"ID":33086,"Name":"tego nie","Points":9744,"X":528,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359217Z"},{"ID":33087,"Name":"096. Naissus","Points":5409,"X":656,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359218Z"},{"ID":33088,"Name":"044 rychuzdk002","Points":10470,"X":659,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359218Z"},{"ID":33089,"Name":"*260*","Points":4150,"X":333,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359219Z"},{"ID":33090,"Name":"0609","Points":10019,"X":480,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35922Z"},{"ID":33091,"Name":"TWIERDZA .:052:.","Points":10787,"X":668,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359221Z"},{"ID":33092,"Name":"~~089~~","Points":8672,"X":634,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359221Z"},{"ID":33093,"Name":"Theoden King","Points":9999,"X":460,"Y":676,"Continent":"K64","Bonus":2,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359222Z"},{"ID":33094,"Name":"Taran","Points":10728,"X":681,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359223Z"},{"ID":33095,"Name":"BETON 070","Points":4366,"X":630,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359223Z"},{"ID":33096,"Name":"|033| Macheria","Points":10107,"X":497,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359224Z"},{"ID":33097,"Name":"C0274","Points":7509,"X":325,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359225Z"},{"ID":33098,"Name":"Naggaroth","Points":8506,"X":413,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359225Z"},{"ID":33099,"Name":"022","Points":9861,"X":430,"Y":491,"Continent":"K44","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359226Z"},{"ID":33100,"Name":"Wioska barbarzyƄska","Points":4775,"X":402,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359227Z"},{"ID":33101,"Name":"Mietus","Points":9761,"X":324,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359227Z"},{"ID":33102,"Name":"22. Szeksox 1","Points":10237,"X":678,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359228Z"},{"ID":33103,"Name":"Lord Lord Franek .#187","Points":9727,"X":542,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359229Z"},{"ID":33104,"Name":"pęczek drutu","Points":9593,"X":612,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35923Z"},{"ID":33105,"Name":"A011","Points":10311,"X":607,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35923Z"},{"ID":33107,"Name":"*158*","Points":10211,"X":340,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359231Z"},{"ID":33108,"Name":"K36 - [004] Before Land","Points":9925,"X":625,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359232Z"},{"ID":33110,"Name":"O31 Kumogakure","Points":9270,"X":673,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359233Z"},{"ID":33111,"Name":"[041]","Points":8110,"X":654,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359234Z"},{"ID":33112,"Name":"099. Drobeta","Points":8074,"X":656,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359234Z"},{"ID":33113,"Name":"Kentin ufam Tobie","Points":10064,"X":328,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359235Z"},{"ID":33114,"Name":"367|617 Wioska barbarzyƄska","Points":9805,"X":617,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359236Z"},{"ID":33115,"Name":"xxx","Points":9687,"X":626,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359237Z"},{"ID":33116,"Name":"Wioska barbarzyƄska","Points":6394,"X":461,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359237Z"},{"ID":33117,"Name":"XDX","Points":10544,"X":610,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359238Z"},{"ID":33118,"Name":"Wioska barbarzyƄska","Points":6696,"X":335,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359239Z"},{"ID":33119,"Name":"Wioska Misiaczki","Points":7688,"X":612,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35924Z"},{"ID":33120,"Name":"OrzeƂ WylądowaƂ","Points":9717,"X":465,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35924Z"},{"ID":33121,"Name":"998 Stoch","Points":9459,"X":665,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359241Z"},{"ID":33122,"Name":"O54 Aasiaat","Points":9694,"X":674,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359242Z"},{"ID":33123,"Name":"P.P.","Points":4650,"X":593,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359242Z"},{"ID":33124,"Name":"psycha sitting","Points":6191,"X":425,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359243Z"},{"ID":33125,"Name":"051...OPEL","Points":10495,"X":441,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359244Z"},{"ID":33126,"Name":"C 004","Points":6662,"X":681,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359245Z"},{"ID":33127,"Name":"!XXX","Points":10259,"X":337,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359245Z"},{"ID":33128,"Name":"--20--","Points":7004,"X":349,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359246Z"},{"ID":33129,"Name":"Wioska barbarzyƄska","Points":6945,"X":515,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359247Z"},{"ID":33130,"Name":"Szulernia","Points":10090,"X":376,"Y":376,"Continent":"K33","Bonus":9,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359248Z"},{"ID":33131,"Name":"Wioska Bochun10","Points":9089,"X":327,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359248Z"},{"ID":33132,"Name":"Wioska barbarzyƄska","Points":8306,"X":603,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359249Z"},{"ID":33133,"Name":"X | Forest Cyaaaanku","Points":9976,"X":320,"Y":471,"Continent":"K43","Bonus":1,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35925Z"},{"ID":33134,"Name":"038","Points":10311,"X":643,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359251Z"},{"ID":33135,"Name":"New World","Points":10063,"X":434,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359252Z"},{"ID":33136,"Name":"Taran","Points":10728,"X":674,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359252Z"},{"ID":33137,"Name":"J#026","Points":10025,"X":577,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359253Z"},{"ID":33138,"Name":"Wioska barbarzyƄska","Points":9391,"X":679,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359254Z"},{"ID":33140,"Name":"096...tomeczek","Points":10247,"X":476,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359255Z"},{"ID":33142,"Name":"007 .3.Panzergrenadier Division","Points":6682,"X":604,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359255Z"},{"ID":33143,"Name":"R 002 ~Waleriana~","Points":10019,"X":485,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359256Z"},{"ID":33144,"Name":"R 007 ~Ć»ona~","Points":10019,"X":487,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359257Z"},{"ID":33145,"Name":"059 Wioska 011","Points":9508,"X":660,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359258Z"},{"ID":33146,"Name":"Wioska 001","Points":8650,"X":573,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699703295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359258Z"},{"ID":33147,"Name":"077.Stradi","Points":10299,"X":446,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359259Z"},{"ID":33148,"Name":"!XXX","Points":6801,"X":607,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35926Z"},{"ID":33149,"Name":"Lord Lord Franek .#087","Points":10160,"X":517,"Y":321,"Continent":"K35","Bonus":2,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359261Z"},{"ID":33151,"Name":"Wioska barbarzyƄska","Points":9024,"X":680,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359261Z"},{"ID":33152,"Name":"ADEN","Points":9855,"X":599,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359262Z"},{"ID":33153,"Name":"I026","Points":9586,"X":674,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359263Z"},{"ID":33154,"Name":"Wioska barbarzyƄska","Points":5510,"X":495,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359264Z"},{"ID":33155,"Name":"Wioska barbarzyƄska","Points":10221,"X":562,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359264Z"},{"ID":33156,"Name":"North Barba 052","Points":8078,"X":406,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359265Z"},{"ID":33157,"Name":"Wioska barbarzyƄska","Points":2194,"X":370,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359266Z"},{"ID":33158,"Name":"010 Solary = Dolary","Points":10141,"X":378,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359267Z"},{"ID":33159,"Name":"O47 Tuzla","Points":7787,"X":678,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359268Z"},{"ID":33160,"Name":"Andrzej","Points":7777,"X":609,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359268Z"},{"ID":33161,"Name":"Lord Lord Franek .#100","Points":10160,"X":525,"Y":328,"Continent":"K35","Bonus":8,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359269Z"},{"ID":33162,"Name":"UltraInstynkt-","Points":10068,"X":579,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35927Z"},{"ID":33163,"Name":"DejMon9","Points":4092,"X":367,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35927Z"},{"ID":33164,"Name":"Wioska KrĂłl Jaƛ","Points":9750,"X":649,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359271Z"},{"ID":33165,"Name":"084. Perusia","Points":9090,"X":649,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359272Z"},{"ID":33166,"Name":"Ogonek","Points":9650,"X":613,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359273Z"},{"ID":33167,"Name":"Muchomor *023*","Points":8204,"X":517,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359273Z"},{"ID":33168,"Name":"Wioska r 4","Points":5956,"X":558,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359274Z"},{"ID":33169,"Name":"Ruda Dolnoƛląska","Points":2444,"X":551,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":849110711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359275Z"},{"ID":33170,"Name":"*002* CSA-Zaiwaniać","Points":10311,"X":625,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359275Z"},{"ID":33171,"Name":"#Keep Calm","Points":6357,"X":459,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359276Z"},{"ID":33172,"Name":"GrĂłd","Points":11360,"X":474,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":699204478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359277Z"},{"ID":33173,"Name":"TRAILER PARK BOYS","Points":9682,"X":551,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359278Z"},{"ID":33174,"Name":"Jestem Poza Kontrolą","Points":9880,"X":341,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359279Z"},{"ID":33175,"Name":"devils tower","Points":10887,"X":639,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359279Z"},{"ID":33176,"Name":"C0165","Points":10362,"X":329,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35928Z"},{"ID":33177,"Name":"021 Tu ciągle nie ma miejsca...","Points":7431,"X":379,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359281Z"},{"ID":33178,"Name":"Wioska P1ter 2","Points":9325,"X":598,"Y":648,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359281Z"},{"ID":33179,"Name":"UltraInstynkt-","Points":10068,"X":589,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359282Z"},{"ID":33180,"Name":"krytl05","Points":10311,"X":513,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359283Z"},{"ID":33181,"Name":"135...opelu","Points":7893,"X":443,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359283Z"},{"ID":33182,"Name":"ASre","Points":3641,"X":649,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":699611673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359284Z"},{"ID":33183,"Name":"Savi2","Points":10019,"X":676,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359285Z"},{"ID":33184,"Name":"*001* CSA się byƂo uczyć!","Points":10230,"X":604,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359286Z"},{"ID":33185,"Name":"Jaaa","Points":10481,"X":675,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359286Z"},{"ID":33186,"Name":"#016#","Points":9761,"X":628,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359287Z"},{"ID":33187,"Name":"[03]","Points":7172,"X":428,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359288Z"},{"ID":33188,"Name":".///...//././././././././","Points":10019,"X":375,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359289Z"},{"ID":33189,"Name":"Wioska barbarzyƄska","Points":9927,"X":504,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35929Z"},{"ID":33190,"Name":"|017| Fajstos","Points":10063,"X":490,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35929Z"},{"ID":33191,"Name":"Sony 911","Points":10206,"X":620,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359291Z"},{"ID":33193,"Name":"1002","Points":9899,"X":621,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359292Z"},{"ID":33194,"Name":"Ob Konfederacja","Points":5697,"X":436,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359293Z"},{"ID":33195,"Name":"Taran","Points":9212,"X":337,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359293Z"},{"ID":33196,"Name":"Wioska barbarzyƄska","Points":10226,"X":560,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359294Z"},{"ID":33197,"Name":"Komornicy 019","Points":8586,"X":352,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359295Z"},{"ID":33198,"Name":"Brrzana","Points":9963,"X":329,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359296Z"},{"ID":33199,"Name":"Wyspa 022","Points":10365,"X":625,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359296Z"},{"ID":33200,"Name":"GerHIs","Points":3837,"X":650,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":699611673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359297Z"},{"ID":33201,"Name":"001","Points":9993,"X":531,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359298Z"},{"ID":33203,"Name":"Nowa 40","Points":9745,"X":662,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359299Z"},{"ID":33205,"Name":"Szlachcic/Taran","Points":10237,"X":613,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3593Z"},{"ID":33206,"Name":"R 009 ~Nami~","Points":10019,"X":486,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359301Z"},{"ID":33207,"Name":"J#015","Points":9797,"X":578,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359303Z"},{"ID":33208,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":325,"Y":503,"Continent":"K53","Bonus":8,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359304Z"},{"ID":33209,"Name":"#014#","Points":9761,"X":631,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359305Z"},{"ID":33210,"Name":"reco","Points":9382,"X":508,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359306Z"},{"ID":33211,"Name":"Wioska barbarzyƄska","Points":10014,"X":508,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359307Z"},{"ID":33212,"Name":"053. Flam","Points":9751,"X":658,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359308Z"},{"ID":33213,"Name":"Taran","Points":10728,"X":682,"Y":486,"Continent":"K46","Bonus":4,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359309Z"},{"ID":33214,"Name":"(031)Iri","Points":2974,"X":335,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35931Z"},{"ID":33215,"Name":"123","Points":10373,"X":477,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359311Z"},{"ID":33216,"Name":"1006","Points":9910,"X":614,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359312Z"},{"ID":33217,"Name":"001","Points":10346,"X":343,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359312Z"},{"ID":33218,"Name":"Wioska 046","Points":9761,"X":646,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359313Z"},{"ID":33219,"Name":"657|422 Wioska barbarzyƄska","Points":2466,"X":657,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359313Z"},{"ID":33220,"Name":"B 064","Points":8476,"X":678,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359314Z"},{"ID":33221,"Name":"026#Sewa#002","Points":10094,"X":671,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359315Z"},{"ID":33222,"Name":"Psycha Siada","Points":5630,"X":444,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359315Z"},{"ID":33223,"Name":"Z|010| Rzym","Points":10063,"X":461,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359316Z"},{"ID":33224,"Name":"C0154","Points":10109,"X":321,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359317Z"},{"ID":33225,"Name":"C0271","Points":10362,"X":323,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359317Z"},{"ID":33226,"Name":"Wioska barbarzyƄska 031","Points":6470,"X":460,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359318Z"},{"ID":33227,"Name":"Szlachcic","Points":10481,"X":398,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359318Z"},{"ID":33228,"Name":"010","Points":7109,"X":526,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359319Z"},{"ID":33229,"Name":"Chekku - meito","Points":9976,"X":325,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35932Z"},{"ID":33230,"Name":"Ronne","Points":9978,"X":329,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35932Z"},{"ID":33231,"Name":"rotes idz spac misiu","Points":6671,"X":454,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359321Z"},{"ID":33232,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":638,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359321Z"},{"ID":33233,"Name":"Wioska r 14","Points":4069,"X":553,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359322Z"},{"ID":33234,"Name":"-013-","Points":3312,"X":541,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359323Z"},{"ID":33235,"Name":"Brakuje drewna mĂłj panie","Points":10203,"X":441,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359323Z"},{"ID":33236,"Name":"Wioska kamilatak","Points":6104,"X":641,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":848942587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359324Z"},{"ID":33237,"Name":"Psycha Siada","Points":5964,"X":441,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359324Z"},{"ID":33238,"Name":"$Curry","Points":5615,"X":679,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359325Z"},{"ID":33239,"Name":"Wioska 3","Points":7386,"X":500,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359325Z"},{"ID":33240,"Name":"Muchomor *012*","Points":10527,"X":518,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359326Z"},{"ID":33241,"Name":"Wioska barbarzyƄska","Points":9596,"X":404,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699516268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359327Z"},{"ID":33242,"Name":"New World","Points":10297,"X":445,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359327Z"},{"ID":33244,"Name":"0429","Points":10019,"X":551,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359328Z"},{"ID":33245,"Name":"050","Points":5888,"X":677,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359329Z"},{"ID":33246,"Name":"Myk i do kieszonki","Points":10401,"X":364,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359329Z"},{"ID":33247,"Name":"=|36|=","Points":4496,"X":644,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35933Z"},{"ID":33248,"Name":"137.Stradi","Points":3011,"X":451,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35933Z"},{"ID":33249,"Name":"Wioska barbarzyƄska","Points":7310,"X":674,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359331Z"},{"ID":33250,"Name":"028 Zakopane akademia","Points":3616,"X":379,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":848978297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359332Z"},{"ID":33251,"Name":"032 Toffifeeeeee!","Points":10141,"X":372,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359332Z"},{"ID":33252,"Name":"Monetkownia","Points":10237,"X":622,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359333Z"},{"ID":33254,"Name":"SOKzGUMIjagĂłd","Points":5321,"X":601,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359333Z"},{"ID":33255,"Name":"AAA","Points":7024,"X":533,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359334Z"},{"ID":33256,"Name":"033","Points":7448,"X":670,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359334Z"},{"ID":33257,"Name":"Wioska barbarzyƄska","Points":7159,"X":407,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699516268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359335Z"},{"ID":33258,"Name":"SOKzGUMIjagĂłd","Points":6908,"X":596,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359336Z"},{"ID":33259,"Name":"C.03","Points":8378,"X":680,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359336Z"},{"ID":33260,"Name":"Psycha Siada","Points":9623,"X":444,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359337Z"},{"ID":33261,"Name":"A004","Points":10237,"X":603,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359337Z"},{"ID":33262,"Name":"B 052","Points":6347,"X":673,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359338Z"},{"ID":33263,"Name":"New World","Points":10311,"X":443,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359339Z"},{"ID":33264,"Name":"008","Points":5808,"X":319,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359339Z"},{"ID":33265,"Name":"015 530i","Points":11130,"X":615,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35934Z"},{"ID":33267,"Name":"Wioska barbarzyƄska","Points":10728,"X":677,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35934Z"},{"ID":33268,"Name":"Gabsaw","Points":8046,"X":641,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359341Z"},{"ID":33269,"Name":"Wioska 4","Points":6935,"X":503,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359341Z"},{"ID":33270,"Name":"#022. Ster, Ć»eglarz i Okręt","Points":9047,"X":441,"Y":671,"Continent":"K64","Bonus":6,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359342Z"},{"ID":33272,"Name":"Wioska galĂłw","Points":3264,"X":351,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359343Z"},{"ID":33273,"Name":"Wioska barbarzyƄska","Points":7577,"X":476,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359343Z"},{"ID":33274,"Name":"[044]","Points":4271,"X":661,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359344Z"},{"ID":33275,"Name":"R 013 ~Falkret~","Points":10019,"X":485,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359344Z"},{"ID":33276,"Name":"krytl15","Points":9226,"X":508,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359345Z"},{"ID":33277,"Name":"60k$ Grvvyq","Points":7856,"X":659,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359345Z"},{"ID":33278,"Name":"B.022","Points":10000,"X":675,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359346Z"},{"ID":33279,"Name":"Miasys 3","Points":10160,"X":343,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849090130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359347Z"},{"ID":33280,"Name":"Bagdad","Points":9835,"X":426,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359347Z"},{"ID":33281,"Name":"Szlachcic","Points":10474,"X":393,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359348Z"},{"ID":33282,"Name":"Westfold.001","Points":10178,"X":342,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359348Z"},{"ID":33283,"Name":"AAA","Points":8040,"X":547,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359349Z"},{"ID":33284,"Name":"_PUSTA","Points":10199,"X":654,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35935Z"},{"ID":33285,"Name":"076","Points":10083,"X":476,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35935Z"},{"ID":33286,"Name":"217","Points":6875,"X":447,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359351Z"},{"ID":33287,"Name":"019 * Lady Porto *","Points":5967,"X":644,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359351Z"},{"ID":33288,"Name":"Wioska barbarzyƄska","Points":4321,"X":408,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699516268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359352Z"},{"ID":33289,"Name":"124...OPELU","Points":10569,"X":442,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359352Z"},{"ID":33290,"Name":"I047","Points":9883,"X":669,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359353Z"},{"ID":33292,"Name":"Szulernia","Points":3613,"X":368,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359353Z"},{"ID":33294,"Name":"Wioska barbarzyƄska","Points":5032,"X":342,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359354Z"},{"ID":33295,"Name":"002","Points":5354,"X":650,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":699251542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359354Z"},{"ID":33296,"Name":"D.032","Points":2874,"X":390,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359355Z"},{"ID":33298,"Name":"Wioska Natka1968_02","Points":2830,"X":526,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359356Z"},{"ID":33299,"Name":"Psycha Siada","Points":6491,"X":446,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359356Z"},{"ID":33300,"Name":"Restelo","Points":9132,"X":346,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359357Z"},{"ID":33301,"Name":"Forza 7","Points":3298,"X":435,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359357Z"},{"ID":33302,"Name":"0651","Points":5625,"X":574,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359358Z"},{"ID":33303,"Name":"I027","Points":10093,"X":676,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359359Z"},{"ID":33304,"Name":"Lord Lord Franek .#173","Points":9976,"X":518,"Y":321,"Continent":"K35","Bonus":2,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359359Z"},{"ID":33305,"Name":"Wyspa 009","Points":10362,"X":628,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35936Z"},{"ID":33306,"Name":"szpiegula","Points":8123,"X":505,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35936Z"},{"ID":33308,"Name":"055","Points":7952,"X":527,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359361Z"},{"ID":33309,"Name":"Wioska barbarzyƄska","Points":4432,"X":505,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359361Z"},{"ID":33310,"Name":"SZYNCHIL","Points":5663,"X":400,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359362Z"},{"ID":33311,"Name":"027 * Lady Porto *","Points":12154,"X":645,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359363Z"},{"ID":33312,"Name":"Szulernia","Points":2284,"X":372,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359363Z"},{"ID":33313,"Name":"Wioska 6","Points":6375,"X":520,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359364Z"},{"ID":33314,"Name":"044","Points":7099,"X":676,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359364Z"},{"ID":33315,"Name":"yankes6","Points":7313,"X":588,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359365Z"},{"ID":33316,"Name":"Out of Touch","Points":9061,"X":328,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359365Z"},{"ID":33317,"Name":"Hard2","Points":2170,"X":366,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359366Z"},{"ID":33318,"Name":"051","Points":9567,"X":676,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359367Z"},{"ID":33319,"Name":"Out of Touch","Points":2427,"X":328,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359367Z"},{"ID":33320,"Name":"Wioska barbarzyƄska","Points":3522,"X":321,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359368Z"},{"ID":33321,"Name":"Wioska barbarzyƄska","Points":8277,"X":378,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359368Z"},{"ID":33322,"Name":"Szlachcic","Points":10475,"X":385,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359369Z"},{"ID":33323,"Name":"Wioska barbarzyƄska","Points":6180,"X":348,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359369Z"},{"ID":33324,"Name":"Wioska Bochun10","Points":4385,"X":325,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35937Z"},{"ID":33325,"Name":"Wioska 13","Points":4419,"X":318,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359371Z"},{"ID":33326,"Name":"-21-","Points":5729,"X":631,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359371Z"},{"ID":33328,"Name":"#0176 Kamil0ss1","Points":10178,"X":488,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359372Z"},{"ID":33329,"Name":"C0156","Points":9384,"X":320,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359372Z"},{"ID":33330,"Name":"A15","Points":4573,"X":466,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359373Z"},{"ID":33331,"Name":"a moĆŒe off ? :)","Points":9334,"X":637,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359374Z"},{"ID":33332,"Name":"Wioska barbarzyƄska","Points":2319,"X":339,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":3990066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359374Z"},{"ID":33333,"Name":"Wioska barbarzyƄska","Points":9927,"X":501,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359375Z"},{"ID":33334,"Name":"*176*","Points":10211,"X":345,"Y":412,"Continent":"K43","Bonus":5,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359375Z"},{"ID":33335,"Name":"Wioska barbarzyƄska","Points":5532,"X":372,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359376Z"},{"ID":33336,"Name":"D02","Points":10495,"X":673,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359377Z"},{"ID":33337,"Name":"Wioska barbarzyƄska","Points":9927,"X":502,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359377Z"},{"ID":33338,"Name":"A17","Points":10019,"X":597,"Y":467,"Continent":"K45","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359378Z"},{"ID":33339,"Name":"Wioska XVII","Points":3556,"X":574,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359378Z"},{"ID":33340,"Name":"0413","Points":8499,"X":533,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359379Z"},{"ID":33341,"Name":"Taran","Points":9957,"X":342,"Y":584,"Continent":"K53","Bonus":3,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359379Z"},{"ID":33342,"Name":"0395","Points":10252,"X":564,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35938Z"},{"ID":33343,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8817,"X":543,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359381Z"},{"ID":33345,"Name":"Deveste ufam Tobie","Points":8387,"X":394,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359381Z"},{"ID":33347,"Name":"0449","Points":8705,"X":533,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359382Z"},{"ID":33348,"Name":"Wioska barbarzyƄska","Points":10211,"X":679,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359382Z"},{"ID":33349,"Name":"A002","Points":10237,"X":601,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359383Z"},{"ID":33350,"Name":"Defolij 1","Points":4102,"X":554,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359383Z"},{"ID":33351,"Name":"Radomice-Hubix","Points":5887,"X":663,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359384Z"},{"ID":33352,"Name":"057","Points":10019,"X":453,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359385Z"},{"ID":33353,"Name":"0308","Points":9202,"X":574,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359385Z"},{"ID":33354,"Name":"Wyspa 024","Points":4202,"X":628,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359386Z"},{"ID":33355,"Name":"Jednak wolę gofry","Points":9835,"X":418,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359386Z"},{"ID":33356,"Name":"*162*","Points":10211,"X":345,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359387Z"},{"ID":33357,"Name":"*047*","Points":10211,"X":351,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359387Z"},{"ID":33358,"Name":"Jednak wolę gofry","Points":10068,"X":414,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359388Z"},{"ID":33359,"Name":"ADEN","Points":10177,"X":578,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359389Z"},{"ID":33361,"Name":"Adidas 5","Points":3109,"X":410,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":9191031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359389Z"},{"ID":33362,"Name":"010","Points":9814,"X":408,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699246032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35939Z"},{"ID":33363,"Name":"#0132 Thorus5","Points":9220,"X":472,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35939Z"},{"ID":33364,"Name":"0045","Points":9258,"X":677,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359391Z"},{"ID":33365,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":318,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359391Z"},{"ID":33366,"Name":"009 Twardy Sen","Points":9835,"X":380,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359392Z"},{"ID":33367,"Name":"HiƄczowa Turnia","Points":3719,"X":318,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359393Z"},{"ID":33368,"Name":"Wioska barbarzyƄska","Points":3971,"X":670,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359393Z"},{"ID":33369,"Name":"deff 100 %","Points":7673,"X":337,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359394Z"},{"ID":33370,"Name":"Wioska r 17","Points":4141,"X":552,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359394Z"},{"ID":33371,"Name":"Kingdom","Points":10728,"X":680,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359395Z"},{"ID":33372,"Name":"AAA","Points":9013,"X":537,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359396Z"},{"ID":33373,"Name":"Najpiękniejsza","Points":10144,"X":627,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359396Z"},{"ID":33374,"Name":"Wioska barbarzyƄska","Points":10728,"X":678,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359397Z"},{"ID":33375,"Name":"-009-","Points":9761,"X":334,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":8710047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359397Z"},{"ID":33376,"Name":"Wioska Bochun10","Points":10311,"X":326,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359398Z"},{"ID":33378,"Name":"Freytaga I","Points":8099,"X":640,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359398Z"},{"ID":33379,"Name":"cz 013 CORSA","Points":7154,"X":367,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359399Z"},{"ID":33380,"Name":"#0138 Kamil0ss1","Points":10178,"X":479,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359399Z"},{"ID":33381,"Name":"X | Forest Cyaaaanku","Points":9976,"X":319,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3594Z"},{"ID":33382,"Name":"056","Points":10019,"X":454,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359401Z"},{"ID":33383,"Name":"Wrath 015","Points":8742,"X":574,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359401Z"},{"ID":33384,"Name":"*027","Points":9916,"X":598,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359402Z"},{"ID":33385,"Name":"[B]_[043] Dejv.oldplyr","Points":10495,"X":425,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359402Z"},{"ID":33386,"Name":"B 010","Points":9872,"X":673,"Y":532,"Continent":"K56","Bonus":6,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359403Z"},{"ID":33387,"Name":"56. KaruTown","Points":6470,"X":644,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359403Z"},{"ID":33388,"Name":"Lubieszynek","Points":7526,"X":655,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359404Z"},{"ID":33389,"Name":"Szlachcic","Points":9915,"X":383,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359404Z"},{"ID":33390,"Name":"A008","Points":10237,"X":602,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359405Z"},{"ID":33391,"Name":"Wioska barbarzyƄska","Points":3876,"X":643,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359406Z"},{"ID":33392,"Name":"Y | Forest Cyaaaanku","Points":8494,"X":318,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359406Z"},{"ID":33393,"Name":"Kiedyƛ Wielki Wojownik","Points":8092,"X":599,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359407Z"},{"ID":33394,"Name":"Wioska Bochun10","Points":6241,"X":319,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359407Z"},{"ID":33395,"Name":"Kreskowo_3","Points":9853,"X":594,"Y":652,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359408Z"},{"ID":33396,"Name":"025|| Crater","Points":9925,"X":467,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359409Z"},{"ID":33397,"Name":"Didiek","Points":6437,"X":669,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359409Z"},{"ID":33398,"Name":"M181_011","Points":9103,"X":337,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35941Z"},{"ID":33399,"Name":"!!36 94 Adancata","Points":6310,"X":649,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35941Z"},{"ID":33401,"Name":"[011]","Points":8109,"X":423,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359411Z"},{"ID":33403,"Name":"R 014 ~Markart~","Points":10019,"X":485,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359411Z"},{"ID":33404,"Name":"024","Points":9993,"X":530,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359412Z"},{"ID":33405,"Name":"Pparkerowska","Points":6446,"X":355,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359413Z"},{"ID":33406,"Name":"Wioska barbarzyƄska","Points":8391,"X":346,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359413Z"},{"ID":33407,"Name":"#026.548|482","Points":9735,"X":667,"Y":433,"Continent":"K46","Bonus":4,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359414Z"},{"ID":33408,"Name":"Taran","Points":7033,"X":339,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359414Z"},{"ID":33409,"Name":"~~087~~","Points":9721,"X":631,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359415Z"},{"ID":33410,"Name":"Wioska Bochun10","Points":6986,"X":321,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359415Z"},{"ID":33411,"Name":"Wioska IX","Points":6904,"X":580,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359416Z"},{"ID":33412,"Name":"079","Points":10083,"X":472,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359417Z"},{"ID":33413,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10044,"X":383,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359417Z"},{"ID":33415,"Name":"ADEN","Points":9761,"X":603,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359418Z"},{"ID":33416,"Name":"Ob Konfederacja +","Points":7139,"X":436,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359418Z"},{"ID":33417,"Name":"Barbakasia","Points":2743,"X":344,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359419Z"},{"ID":33418,"Name":"Wioska 109","Points":7219,"X":638,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359419Z"},{"ID":33419,"Name":"Wioska 123","Points":7041,"X":682,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35942Z"},{"ID":33420,"Name":"B002","Points":9564,"X":468,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359421Z"},{"ID":33421,"Name":"059","Points":10019,"X":455,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359421Z"},{"ID":33422,"Name":"Mniejsze zƂo 0093","Points":6100,"X":322,"Y":540,"Continent":"K53","Bonus":7,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359422Z"},{"ID":33423,"Name":"-04-","Points":10495,"X":623,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359422Z"},{"ID":33424,"Name":"Wioska barbarzyƄska","Points":7722,"X":348,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359423Z"},{"ID":33425,"Name":"Osada koczownikĂłw","Points":10257,"X":591,"Y":650,"Continent":"K65","Bonus":7,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359423Z"},{"ID":33426,"Name":"AG16","Points":6073,"X":590,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359424Z"},{"ID":33427,"Name":"#050.","Points":8789,"X":666,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359424Z"},{"ID":33428,"Name":"Out of Touch","Points":2786,"X":329,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359425Z"},{"ID":33429,"Name":"058 | PALESTINA","Points":8050,"X":656,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359425Z"},{"ID":33430,"Name":"Wioska barbarzyƄska","Points":4703,"X":475,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359426Z"},{"ID":33431,"Name":"#052#","Points":9761,"X":625,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359427Z"},{"ID":33432,"Name":"098...tomecz","Points":10231,"X":479,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359427Z"},{"ID":33433,"Name":"004","Points":6239,"X":668,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359428Z"},{"ID":33434,"Name":"AAA","Points":6677,"X":533,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359428Z"},{"ID":33435,"Name":"Wioska 125","Points":8021,"X":680,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359429Z"},{"ID":33436,"Name":"*045","Points":9704,"X":590,"Y":651,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359429Z"},{"ID":33437,"Name":"[B]_[022] Dejv.oldplyr","Points":10559,"X":419,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35943Z"},{"ID":33438,"Name":"A.04 spóƂdzielnia gryzoni","Points":4881,"X":564,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359431Z"},{"ID":33439,"Name":"B 053","Points":5925,"X":671,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359431Z"},{"ID":33440,"Name":"O51 Saloniki","Points":10301,"X":675,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359432Z"},{"ID":33441,"Name":"I#032","Points":7378,"X":621,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359432Z"},{"ID":33442,"Name":"060","Points":10019,"X":451,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359433Z"},{"ID":33443,"Name":"Wioska Bochun10","Points":10311,"X":324,"Y":492,"Continent":"K43","Bonus":2,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359433Z"},{"ID":33444,"Name":"Taran","Points":10728,"X":683,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359434Z"},{"ID":33445,"Name":"Szlachcic","Points":10474,"X":394,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359435Z"},{"ID":33446,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10025,"X":389,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359435Z"},{"ID":33447,"Name":"E.01","Points":9202,"X":679,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359436Z"},{"ID":33448,"Name":"Szlachcic/Taran","Points":8155,"X":642,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359436Z"},{"ID":33449,"Name":"|036| Kalavarda","Points":10056,"X":494,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359437Z"},{"ID":33450,"Name":"?011 Lowruks","Points":10109,"X":541,"Y":659,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359438Z"},{"ID":33451,"Name":"Wioska 1","Points":7654,"X":573,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359438Z"},{"ID":33452,"Name":"*075*","Points":10211,"X":360,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359439Z"},{"ID":33453,"Name":"ADEN","Points":10292,"X":579,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359439Z"},{"ID":33454,"Name":"177...Segadorr-m","Points":10713,"X":443,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35944Z"},{"ID":33455,"Name":"Wioska barbarzyƄska","Points":9700,"X":620,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35944Z"},{"ID":33456,"Name":"D.021","Points":8303,"X":393,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359441Z"},{"ID":33457,"Name":"Wioska barbarzyƄska 2","Points":6614,"X":502,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359442Z"},{"ID":33458,"Name":"wioska","Points":10083,"X":350,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359442Z"},{"ID":33459,"Name":"Jednak wolę gofry","Points":5669,"X":420,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359443Z"},{"ID":33460,"Name":"080.Stradi","Points":9834,"X":446,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359443Z"},{"ID":33461,"Name":"-005-","Points":3487,"X":347,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359444Z"},{"ID":33462,"Name":"#0194 Segadorr dar","Points":10178,"X":462,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359444Z"},{"ID":33463,"Name":".achim.","Points":6957,"X":486,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359445Z"},{"ID":33464,"Name":"Nowa 52","Points":7539,"X":669,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359446Z"},{"ID":33465,"Name":"XXDe","Points":6869,"X":326,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359446Z"},{"ID":33466,"Name":"Out of Touch","Points":9643,"X":327,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359447Z"},{"ID":33467,"Name":"Duolingo","Points":7601,"X":647,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359447Z"},{"ID":33468,"Name":"O60 Roslagen","Points":5286,"X":672,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359448Z"},{"ID":33469,"Name":"Lady Madelaine","Points":7008,"X":644,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359449Z"},{"ID":33470,"Name":"Z|007| Bari","Points":7415,"X":466,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359449Z"},{"ID":33471,"Name":"C0267","Points":6867,"X":317,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35945Z"},{"ID":33472,"Name":"City","Points":5088,"X":645,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35945Z"},{"ID":33473,"Name":"111","Points":5578,"X":637,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359451Z"},{"ID":33474,"Name":"Wioska barbarzyƄska","Points":9937,"X":511,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359451Z"},{"ID":33475,"Name":"A 096","Points":8447,"X":377,"Y":635,"Continent":"K63","Bonus":9,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359452Z"},{"ID":33476,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":564,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359452Z"},{"ID":33477,"Name":"Nexo","Points":5914,"X":329,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359453Z"},{"ID":33478,"Name":"K36 - [006] Before Land","Points":10654,"X":625,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359453Z"},{"ID":33479,"Name":"#Sewa#004","Points":10141,"X":669,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359454Z"},{"ID":33480,"Name":"Kiedyƛ Wielki Wojownik","Points":6978,"X":565,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359455Z"},{"ID":33481,"Name":"033 Dawaj dawaj Pomagaj pomagaj!","Points":10143,"X":380,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359455Z"},{"ID":33482,"Name":"Jednak wolę gofry","Points":9792,"X":414,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359456Z"},{"ID":33483,"Name":"Wioska barbarzyƄska","Points":10220,"X":558,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359456Z"},{"ID":33484,"Name":"AAA","Points":8149,"X":528,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359457Z"},{"ID":33485,"Name":"New World","Points":10303,"X":444,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359457Z"},{"ID":33486,"Name":"Wioska Westor 4","Points":4249,"X":357,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699530673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359458Z"},{"ID":33487,"Name":"#097#","Points":9761,"X":627,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359458Z"},{"ID":33489,"Name":"0129","Points":10083,"X":549,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359459Z"},{"ID":33490,"Name":"Ob Konfederacja","Points":10132,"X":433,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359459Z"},{"ID":33491,"Name":"106","Points":9504,"X":319,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35946Z"},{"ID":33492,"Name":"021 toni","Points":11188,"X":677,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35946Z"},{"ID":33493,"Name":"Wioska barbarzyƄska","Points":4157,"X":678,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359461Z"},{"ID":33494,"Name":"039 Mucharadza","Points":10284,"X":664,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359462Z"},{"ID":33495,"Name":"Oww Konfederacja","Points":10273,"X":611,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359462Z"},{"ID":33496,"Name":"Didi","Points":8991,"X":671,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359463Z"},{"ID":33497,"Name":"|046| Wioska Mikimixx","Points":9727,"X":502,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359463Z"},{"ID":33498,"Name":"Chekku - meito","Points":9976,"X":323,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359464Z"},{"ID":33500,"Name":"02. Mamy To!","Points":3936,"X":589,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699423167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359464Z"},{"ID":33501,"Name":"D.004","Points":9345,"X":401,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359465Z"},{"ID":33502,"Name":"017","Points":5340,"X":355,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359465Z"},{"ID":33503,"Name":"Mniejsze zƂo 0099","Points":8093,"X":323,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359466Z"},{"ID":33504,"Name":"Wedkarz","Points":9761,"X":330,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359466Z"},{"ID":33505,"Name":"X | Forest Cyaaaanku","Points":9976,"X":320,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359467Z"},{"ID":33506,"Name":"Wioska barbarzyƄska","Points":9927,"X":505,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359467Z"},{"ID":33507,"Name":"00631 Wioska xxxxxxxxxxx","Points":7333,"X":446,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359468Z"},{"ID":33508,"Name":"022 :)","Points":10465,"X":658,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359468Z"},{"ID":33509,"Name":"*258*","Points":2595,"X":342,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359469Z"},{"ID":33510,"Name":"Monetkownia","Points":10237,"X":621,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359469Z"},{"ID":33511,"Name":"XDX","Points":10160,"X":610,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35947Z"},{"ID":33512,"Name":"ZUBRAWKA 051","Points":10362,"X":614,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35947Z"},{"ID":33513,"Name":"081 ƚwiąteczna Bombka","Points":9539,"X":653,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359471Z"},{"ID":33514,"Name":"SOKzGUMIjagĂłd","Points":5497,"X":596,"Y":351,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359472Z"},{"ID":33515,"Name":"Szlachcic","Points":9093,"X":384,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359472Z"},{"ID":33516,"Name":"Wioska barbarzyƄska","Points":6707,"X":430,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359473Z"},{"ID":33517,"Name":"*003*","Points":10211,"X":352,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359473Z"},{"ID":33518,"Name":"0251","Points":10160,"X":534,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359474Z"},{"ID":33519,"Name":"Wioska barbarzyƄska","Points":2955,"X":355,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359474Z"},{"ID":33520,"Name":"065 Wioska 014","Points":8992,"X":663,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359475Z"},{"ID":33521,"Name":"SJ1","Points":10495,"X":322,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359475Z"},{"ID":33522,"Name":"048 | PALESTINA","Points":9544,"X":662,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359476Z"},{"ID":33523,"Name":"Wioska barbarzyƄska","Points":9108,"X":677,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359476Z"},{"ID":33524,"Name":"*246*","Points":10099,"X":335,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359477Z"},{"ID":33525,"Name":"Szlachcic","Points":10495,"X":395,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359477Z"},{"ID":33526,"Name":"Opol","Points":4125,"X":357,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359478Z"},{"ID":33527,"Name":"Suppi","Points":9783,"X":595,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359479Z"},{"ID":33528,"Name":"Komornik 006","Points":8171,"X":325,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359479Z"},{"ID":33529,"Name":"Kentin ufam Tobie","Points":10000,"X":329,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35948Z"},{"ID":33531,"Name":"0300","Points":9861,"X":569,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35948Z"},{"ID":33532,"Name":"amator","Points":5548,"X":561,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359481Z"},{"ID":33533,"Name":"#051#","Points":9761,"X":628,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359481Z"},{"ID":33534,"Name":"A 033","Points":5903,"X":370,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359482Z"},{"ID":33535,"Name":"*254*","Points":2914,"X":339,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359482Z"},{"ID":33536,"Name":"B 039","Points":7104,"X":675,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359483Z"},{"ID":33537,"Name":".:006:.","Points":7307,"X":632,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359484Z"},{"ID":33539,"Name":"Wioska barbarzyƄska","Points":9453,"X":673,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359484Z"},{"ID":33540,"Name":"!Wszystkie rybki mają ...?","Points":9670,"X":331,"Y":567,"Continent":"K53","Bonus":6,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359485Z"},{"ID":33541,"Name":"Victor","Points":10005,"X":678,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359485Z"},{"ID":33542,"Name":"D.003","Points":9348,"X":401,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359486Z"},{"ID":33543,"Name":"Taran","Points":9962,"X":336,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359486Z"},{"ID":33544,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":334,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359487Z"},{"ID":33545,"Name":"C0160","Points":9782,"X":324,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359487Z"},{"ID":33546,"Name":"Iskierka","Points":1766,"X":677,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359488Z"},{"ID":33547,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":324,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359488Z"},{"ID":33548,"Name":"Wioska 096","Points":9825,"X":645,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359489Z"},{"ID":33549,"Name":"Sony 911","Points":9898,"X":617,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359489Z"},{"ID":33550,"Name":"WB 03","Points":8295,"X":638,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35949Z"},{"ID":33551,"Name":"Szlachcic","Points":10478,"X":391,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35949Z"},{"ID":33552,"Name":"045","Points":10134,"X":466,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359491Z"},{"ID":33553,"Name":"|034| Kamiros Skala","Points":9976,"X":497,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359491Z"},{"ID":33554,"Name":"DarudĆŒystan181","Points":10481,"X":674,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359492Z"},{"ID":33555,"Name":"Muchomor *011*","Points":10300,"X":518,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359492Z"},{"ID":33556,"Name":"Szlachcic","Points":10290,"X":382,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359493Z"},{"ID":33557,"Name":"0003. HMS St Andrew 96 (1670)","Points":7408,"X":473,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359493Z"},{"ID":33558,"Name":"Jaaa","Points":10117,"X":675,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359494Z"},{"ID":33559,"Name":"055. Gaena","Points":10160,"X":659,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359494Z"},{"ID":33560,"Name":"off 100 %","Points":9304,"X":338,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359495Z"},{"ID":33561,"Name":"Most","Points":6717,"X":327,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359495Z"},{"ID":33562,"Name":"12. Lyria","Points":389,"X":330,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359496Z"},{"ID":33563,"Name":"000 Plutosea","Points":11307,"X":327,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359497Z"},{"ID":33564,"Name":"023 * Lady Porto *","Points":12154,"X":646,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359497Z"},{"ID":33565,"Name":"Architekci PlacĂłw Boju","Points":5569,"X":331,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359498Z"},{"ID":33566,"Name":"03 Twierdza","Points":6119,"X":539,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359498Z"},{"ID":33567,"Name":"Psycha Siada","Points":9989,"X":451,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359499Z"},{"ID":33568,"Name":"*025*","Points":10211,"X":357,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359499Z"},{"ID":33569,"Name":"Out of Touch","Points":7848,"X":327,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3595Z"},{"ID":33570,"Name":"Partyzantka ludowa","Points":10010,"X":674,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.3595Z"},{"ID":33571,"Name":"Szlachcic","Points":9879,"X":493,"Y":479,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359501Z"},{"ID":33572,"Name":"Didi","Points":7475,"X":667,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359501Z"},{"ID":33573,"Name":"04 Bastion","Points":8300,"X":541,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359502Z"},{"ID":33574,"Name":"Chrztowo","Points":6977,"X":656,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359502Z"},{"ID":33575,"Name":"[007] Kupa po pachy","Points":10237,"X":673,"Y":437,"Continent":"K46","Bonus":1,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359503Z"},{"ID":33576,"Name":"(014)Frostlands","Points":6393,"X":334,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359503Z"},{"ID":33577,"Name":"Mroczny Zamek 030","Points":6018,"X":384,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699699601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359504Z"},{"ID":33578,"Name":"-0008-","Points":6339,"X":544,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359504Z"},{"ID":33579,"Name":"AAA","Points":6549,"X":532,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359505Z"},{"ID":33580,"Name":"Out of Touch","Points":3560,"X":328,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359505Z"},{"ID":33581,"Name":"B 040","Points":7621,"X":680,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359506Z"},{"ID":33583,"Name":"*269*","Points":2032,"X":345,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359506Z"},{"ID":33584,"Name":"Wioska barbarzyƄska","Points":4045,"X":672,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359507Z"},{"ID":33585,"Name":"Sparta","Points":8914,"X":503,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359507Z"},{"ID":33586,"Name":"015 Dajesz Pan radę?","Points":9850,"X":376,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359508Z"},{"ID":33588,"Name":"fff","Points":10495,"X":473,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359508Z"},{"ID":33589,"Name":"022","Points":4455,"X":355,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359509Z"},{"ID":33590,"Name":"Szlachcic","Points":10481,"X":395,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35951Z"},{"ID":33591,"Name":"_PUSTA","Points":10080,"X":653,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35951Z"},{"ID":33592,"Name":"POOL","Points":1340,"X":401,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359511Z"},{"ID":33593,"Name":"*231*","Points":10211,"X":361,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359511Z"},{"ID":33594,"Name":"New World","Points":10294,"X":435,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359512Z"},{"ID":33595,"Name":"Lord Lord Franek .#174","Points":12154,"X":519,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359512Z"},{"ID":33596,"Name":"SOKzGUMIjagĂłd","Points":10224,"X":612,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359513Z"},{"ID":33597,"Name":"Wioska barbarzyƄska","Points":4337,"X":338,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359514Z"},{"ID":33598,"Name":"014 Wirginia","Points":5386,"X":491,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359514Z"},{"ID":33600,"Name":"061 | PALESTINA","Points":4159,"X":656,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359515Z"},{"ID":33601,"Name":"079. Hadrianopolis","Points":8640,"X":654,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359515Z"},{"ID":33602,"Name":"X | Forest Cyaaaanku","Points":8289,"X":322,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359516Z"},{"ID":33603,"Name":"013","Points":10178,"X":443,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359516Z"},{"ID":33604,"Name":"005","Points":9993,"X":531,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359517Z"},{"ID":33605,"Name":"Wioska Bochun10","Points":10311,"X":338,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359517Z"},{"ID":33606,"Name":"C0173","Points":9914,"X":317,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359518Z"},{"ID":33607,"Name":"Wioska Luk160","Points":9968,"X":618,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359518Z"},{"ID":33608,"Name":"Wioska Sir Zordon 007","Points":3731,"X":660,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359519Z"},{"ID":33609,"Name":"New World","Points":10311,"X":444,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35952Z"},{"ID":33610,"Name":"D10","Points":3292,"X":667,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.35952Z"},{"ID":33611,"Name":"005","Points":9835,"X":408,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699246032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359521Z"},{"ID":33612,"Name":"Wioska barbarzyƄska","Points":8743,"X":520,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359521Z"},{"ID":33613,"Name":"Nowa 50","Points":6914,"X":657,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359522Z"},{"ID":33614,"Name":"Chekku - meito","Points":9976,"X":324,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359522Z"},{"ID":33615,"Name":"Wioska 10","Points":10242,"X":496,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.359523Z"},{"ID":33616,"Name":"Architekci PlacĂłw Boju","Points":6975,"X":330,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404124Z"},{"ID":33617,"Name":"Miejsce","Points":9835,"X":489,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404125Z"},{"ID":33618,"Name":"12.","Points":5056,"X":631,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699562182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404126Z"},{"ID":33619,"Name":"Bona Mediolan","Points":6203,"X":344,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404128Z"},{"ID":33620,"Name":"097 invidia","Points":9263,"X":523,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404128Z"},{"ID":33621,"Name":"139 Dolina Trzciny","Points":6438,"X":649,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404129Z"},{"ID":33622,"Name":"...Just like that","Points":7602,"X":466,"Y":470,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40413Z"},{"ID":33623,"Name":"Colorado Springs","Points":9339,"X":603,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404131Z"},{"ID":33624,"Name":"C0258","Points":7525,"X":317,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40414Z"},{"ID":33625,"Name":"O59 Uppland","Points":4967,"X":673,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404141Z"},{"ID":33626,"Name":"R 005 ~Samanta~","Points":9854,"X":488,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404141Z"},{"ID":33627,"Name":"*178*","Points":10211,"X":373,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404142Z"},{"ID":33628,"Name":"*104*","Points":10211,"X":363,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404143Z"},{"ID":33629,"Name":"-14-","Points":2989,"X":625,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404144Z"},{"ID":33630,"Name":"Wioska barbarzyƄska","Points":8987,"X":679,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404145Z"},{"ID":33631,"Name":"[B]_[039] Dejv.oldplyr","Points":4168,"X":419,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404147Z"},{"ID":33632,"Name":"Wioska dziwas2","Points":10019,"X":525,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404148Z"},{"ID":33633,"Name":"085. Raphae","Points":8837,"X":656,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404149Z"},{"ID":33634,"Name":"Architekci PlacĂłw Boju","Points":9695,"X":330,"Y":559,"Continent":"K53","Bonus":6,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40415Z"},{"ID":33635,"Name":"Allinge","Points":11417,"X":335,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404151Z"},{"ID":33636,"Name":"225","Points":10401,"X":422,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404152Z"},{"ID":33637,"Name":"UltraInstynkt","Points":10068,"X":578,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404153Z"},{"ID":33638,"Name":"SJ4","Points":10495,"X":324,"Y":453,"Continent":"K43","Bonus":8,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404154Z"},{"ID":33640,"Name":"Wioska Markus2008","Points":10034,"X":334,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404157Z"},{"ID":33641,"Name":"_PUSTA","Points":10065,"X":654,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404158Z"},{"ID":33642,"Name":"102. Aenus","Points":5246,"X":659,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404159Z"},{"ID":33643,"Name":"#0191 Segadorr dar","Points":10178,"X":458,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40416Z"},{"ID":33644,"Name":"Komornicy 007","Points":7405,"X":355,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404161Z"},{"ID":33645,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9790,"X":383,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404162Z"},{"ID":33646,"Name":"- Astana","Points":6318,"X":552,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404163Z"},{"ID":33647,"Name":"Wioska 002","Points":9761,"X":648,"Y":600,"Continent":"K66","Bonus":8,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404164Z"},{"ID":33648,"Name":"005 KTW","Points":10495,"X":635,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404166Z"},{"ID":33649,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":385,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404167Z"},{"ID":33650,"Name":"Wioska Bochun10","Points":6451,"X":316,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404168Z"},{"ID":33651,"Name":"Szulernia","Points":9961,"X":376,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404169Z"},{"ID":33652,"Name":"Rubiez16","Points":3964,"X":321,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40417Z"},{"ID":33653,"Name":"SOKzGUMIjagĂłd","Points":4506,"X":594,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404171Z"},{"ID":33654,"Name":"0527","Points":10019,"X":532,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404172Z"},{"ID":33655,"Name":"Szlachcic","Points":9963,"X":388,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404175Z"},{"ID":33656,"Name":"-002-","Points":7960,"X":542,"Y":324,"Continent":"K35","Bonus":4,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404176Z"},{"ID":33657,"Name":"A 029","Points":7651,"X":368,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404177Z"},{"ID":33658,"Name":"C0083","Points":10362,"X":319,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404177Z"},{"ID":33659,"Name":"025 HoƂopole","Points":9724,"X":465,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404178Z"},{"ID":33660,"Name":"Bukowe Pole","Points":7203,"X":653,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404179Z"},{"ID":33661,"Name":"Szlachcic","Points":10821,"X":397,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40418Z"},{"ID":33662,"Name":"Wioska barbarzyƄska","Points":9943,"X":502,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404181Z"},{"ID":33663,"Name":"C0157","Points":10362,"X":320,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404183Z"},{"ID":33664,"Name":"Szlachcic","Points":7549,"X":322,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404184Z"},{"ID":33665,"Name":"X | Forest Cyaaaanku","Points":10000,"X":320,"Y":468,"Continent":"K43","Bonus":5,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404185Z"},{"ID":33666,"Name":"#Finral","Points":5353,"X":427,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404186Z"},{"ID":33667,"Name":"095. Vitudurum","Points":7078,"X":652,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404187Z"},{"ID":33668,"Name":"Muchomor *022*","Points":9271,"X":524,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404188Z"},{"ID":33669,"Name":"Ć»UBRAWKA 054","Points":9464,"X":616,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404189Z"},{"ID":33670,"Name":"A.11 spóƂdzielnia gryzoni","Points":7991,"X":563,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404191Z"},{"ID":33671,"Name":"BETON 078","Points":4220,"X":635,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404192Z"},{"ID":33672,"Name":"Kair","Points":9722,"X":412,"Y":660,"Continent":"K64","Bonus":8,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404193Z"},{"ID":33673,"Name":"A 009","Points":10237,"X":367,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404194Z"},{"ID":33674,"Name":"Wioska barbarzyƄska","Points":7199,"X":428,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404195Z"},{"ID":33675,"Name":"Wrath 009","Points":10030,"X":571,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404195Z"},{"ID":33676,"Name":"Ć»UBR PSYCHIATRYK 005","Points":7156,"X":612,"Y":641,"Continent":"K66","Bonus":5,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404196Z"},{"ID":33677,"Name":"Ob Konfederacja","Points":10065,"X":428,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404197Z"},{"ID":33678,"Name":"Psycha Siada","Points":8316,"X":445,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404199Z"},{"ID":33679,"Name":"Szlachcic","Points":10487,"X":394,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4042Z"},{"ID":33680,"Name":"Ob Konfederacja","Points":6884,"X":430,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404201Z"},{"ID":33681,"Name":"cz Kielce","Points":5707,"X":366,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404202Z"},{"ID":33682,"Name":"GƂodowo","Points":3757,"X":668,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404203Z"},{"ID":33683,"Name":"Auu 02","Points":9720,"X":578,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404204Z"},{"ID":33684,"Name":"997 Ć»yƂa","Points":9856,"X":666,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404206Z"},{"ID":33685,"Name":"J#002","Points":9797,"X":571,"Y":330,"Continent":"K35","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404208Z"},{"ID":33686,"Name":"PiekƂo to inni","Points":8496,"X":590,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404209Z"},{"ID":33687,"Name":"004 Leningrad","Points":10652,"X":607,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40421Z"},{"ID":33688,"Name":"06 Posterunek","Points":8300,"X":541,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404211Z"},{"ID":33689,"Name":"K36 - [005] Before Land","Points":10654,"X":625,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404212Z"},{"ID":33690,"Name":"Out of Touch","Points":7742,"X":330,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404213Z"},{"ID":33691,"Name":"Architekci PlacĂłw Boju","Points":7674,"X":330,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404214Z"},{"ID":33692,"Name":"-001-","Points":10178,"X":328,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404215Z"},{"ID":33693,"Name":"Szlachcic","Points":10474,"X":395,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404217Z"},{"ID":33694,"Name":"~~093~~","Points":8825,"X":635,"Y":616,"Continent":"K66","Bonus":9,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404218Z"},{"ID":33695,"Name":"0013","Points":9093,"X":680,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40422Z"},{"ID":33696,"Name":"[B]_[047] Dejv.oldplyr","Points":10287,"X":425,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404221Z"},{"ID":33697,"Name":"ƚwiat fistaszkĂłw","Points":6947,"X":555,"Y":327,"Continent":"K35","Bonus":3,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404222Z"},{"ID":33698,"Name":"C0107","Points":10362,"X":318,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404223Z"},{"ID":33699,"Name":"Wioska barbarzyƄska","Points":9811,"X":551,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404224Z"},{"ID":33700,"Name":"Wioska barbarzyƄska","Points":6930,"X":522,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404229Z"},{"ID":33701,"Name":"Modzerowo-Hubix","Points":10019,"X":664,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40423Z"},{"ID":33702,"Name":"RĂłwne","Points":5027,"X":657,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404231Z"},{"ID":33703,"Name":"040 Ban Ard","Points":7155,"X":474,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404233Z"},{"ID":33704,"Name":"Wioska barbarzyƄska","Points":5972,"X":473,"Y":319,"Continent":"K34","Bonus":1,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404234Z"},{"ID":33705,"Name":"Westfold.017","Points":7550,"X":337,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404235Z"},{"ID":33706,"Name":"*103","Points":9704,"X":579,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404236Z"},{"ID":33708,"Name":"Szulernia","Points":9964,"X":378,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404238Z"},{"ID":33709,"Name":"Kingdom 4","Points":10728,"X":682,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404244Z"},{"ID":33710,"Name":"Utah","Points":10144,"X":678,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404246Z"},{"ID":33711,"Name":"Wioska barbarzyƄska","Points":2020,"X":348,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404247Z"},{"ID":33712,"Name":"Wioska barbarzyƄska","Points":4275,"X":620,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404248Z"},{"ID":33713,"Name":"0156","Points":4679,"X":412,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404249Z"},{"ID":33715,"Name":"A056","Points":10223,"X":607,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40425Z"},{"ID":33716,"Name":"Bagdad","Points":10068,"X":485,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404252Z"},{"ID":33717,"Name":"Wioska barbarzyƄska","Points":8048,"X":340,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404255Z"},{"ID":33718,"Name":"Hard","Points":2706,"X":365,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404256Z"},{"ID":33719,"Name":"Jednak wolę gofry","Points":9792,"X":418,"Y":664,"Continent":"K64","Bonus":1,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404257Z"},{"ID":33721,"Name":"-006-","Points":3541,"X":346,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404258Z"},{"ID":33722,"Name":"fff","Points":8556,"X":489,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40426Z"},{"ID":33723,"Name":"*111*","Points":9617,"X":362,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404264Z"},{"ID":33724,"Name":"XDX","Points":10019,"X":610,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404265Z"},{"ID":33725,"Name":"067","Points":8445,"X":542,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404266Z"},{"ID":33726,"Name":"#Forza 01","Points":6842,"X":437,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40427Z"},{"ID":33727,"Name":"015 ksieciunio68","Points":9746,"X":324,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404271Z"},{"ID":33728,"Name":"deff 100 %","Points":8153,"X":347,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404272Z"},{"ID":33729,"Name":"J#001","Points":9797,"X":572,"Y":331,"Continent":"K35","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404273Z"},{"ID":33730,"Name":"Wioska barbarzyƄska","Points":9835,"X":577,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404277Z"},{"ID":33731,"Name":"014","Points":10107,"X":348,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404278Z"},{"ID":33732,"Name":"Kentin ufam Tobie","Points":10000,"X":326,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40428Z"},{"ID":33733,"Name":"Wioska barbarzyƄska","Points":7679,"X":373,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":699711706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404283Z"},{"ID":33734,"Name":"Wesolych ƚwiąt","Points":8691,"X":626,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404284Z"},{"ID":33735,"Name":"*060","Points":7883,"X":584,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404286Z"},{"ID":33736,"Name":"034 Puƛcisz to dzisio?","Points":9252,"X":372,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404287Z"},{"ID":33737,"Name":"Wioska barbarzyƄska","Points":8568,"X":679,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40429Z"},{"ID":33739,"Name":"Wioska barbarzyƄska","Points":3102,"X":341,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":8503255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404292Z"},{"ID":33740,"Name":"003","Points":9886,"X":356,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404293Z"},{"ID":33741,"Name":"Wioska 7","Points":10375,"X":499,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698680806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404294Z"},{"ID":33742,"Name":"Wioska barbarzyƄska","Points":9898,"X":675,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404298Z"},{"ID":33743,"Name":"Wioska barbarzyƄska","Points":7820,"X":402,"Y":352,"Continent":"K34","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4043Z"},{"ID":33744,"Name":"-22-","Points":3769,"X":633,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404301Z"},{"ID":33745,"Name":"Wyspa 021","Points":10140,"X":631,"Y":374,"Continent":"K36","Bonus":6,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404302Z"},{"ID":33746,"Name":"sarnow","Points":10054,"X":610,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":698290319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404409Z"},{"ID":33747,"Name":"K34 - [135] Before Land","Points":9436,"X":431,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404413Z"},{"ID":33748,"Name":"- 271 - SS","Points":7563,"X":539,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40442Z"},{"ID":33749,"Name":"07 Fort","Points":8300,"X":540,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404422Z"},{"ID":33750,"Name":"070 komornicy","Points":10481,"X":329,"Y":552,"Continent":"K53","Bonus":6,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404425Z"},{"ID":33751,"Name":"I090","Points":10495,"X":672,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404426Z"},{"ID":33752,"Name":"Wioska 6","Points":4758,"X":575,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404428Z"},{"ID":33754,"Name":"014 Glina Wykopana","Points":9794,"X":614,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404433Z"},{"ID":33755,"Name":"010 TrĂłjmiasto 1/3","Points":9835,"X":386,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404442Z"},{"ID":33756,"Name":"0157","Points":4979,"X":408,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404444Z"},{"ID":33757,"Name":"???","Points":8290,"X":485,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404446Z"},{"ID":33758,"Name":"#0192 Segadorr dar","Points":10178,"X":458,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404449Z"},{"ID":33760,"Name":"Kentin ufam Tobie","Points":10000,"X":326,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40445Z"},{"ID":33761,"Name":"025Sewa#001","Points":10068,"X":670,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404456Z"},{"ID":33762,"Name":"#019#","Points":9761,"X":627,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404458Z"},{"ID":33763,"Name":"*5612*d Kraina przepowiedni","Points":10287,"X":663,"Y":586,"Continent":"K56","Bonus":2,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404463Z"},{"ID":33764,"Name":"OFF","Points":10159,"X":647,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404465Z"},{"ID":33765,"Name":"Westfold.021","Points":8838,"X":337,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404467Z"},{"ID":33766,"Name":"0415","Points":8449,"X":534,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404472Z"},{"ID":33767,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":382,"Y":632,"Continent":"K63","Bonus":2,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404474Z"},{"ID":33769,"Name":"AAA","Points":9693,"X":539,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404476Z"},{"ID":33770,"Name":"C0049","Points":10362,"X":324,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404478Z"},{"ID":33771,"Name":"[16]","Points":3308,"X":434,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40448Z"},{"ID":33772,"Name":"Szlachcic","Points":9572,"X":380,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404486Z"},{"ID":33773,"Name":"A006 Drewno","Points":10141,"X":673,"Y":446,"Continent":"K46","Bonus":1,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404488Z"},{"ID":33774,"Name":"044","Points":9993,"X":527,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40449Z"},{"ID":33775,"Name":"Wioska barbarzyƄska","Points":2118,"X":350,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404492Z"},{"ID":33776,"Name":"065 komornicy","Points":5263,"X":324,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404494Z"},{"ID":33777,"Name":"Lord Lord Franek .#091","Points":9976,"X":512,"Y":324,"Continent":"K35","Bonus":4,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404496Z"},{"ID":33779,"Name":"A0278","Points":9352,"X":322,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404498Z"},{"ID":33780,"Name":"Szulernia","Points":10470,"X":380,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404503Z"},{"ID":33781,"Name":"Osada koczownikĂłw","Points":9837,"X":511,"Y":676,"Continent":"K65","Bonus":8,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404508Z"},{"ID":33782,"Name":"Szlachcic/Taran","Points":10237,"X":637,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40451Z"},{"ID":33783,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":332,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404512Z"},{"ID":33784,"Name":"032","Points":9993,"X":536,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404514Z"},{"ID":33785,"Name":"Jednak wolę gofry","Points":2620,"X":416,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404516Z"},{"ID":33786,"Name":"C0058","Points":10362,"X":325,"Y":523,"Continent":"K53","Bonus":4,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404521Z"},{"ID":33787,"Name":"#024#","Points":9761,"X":627,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404523Z"},{"ID":33788,"Name":"New World","Points":10297,"X":437,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404528Z"},{"ID":33789,"Name":"006 KrĂłlestwo RickyKeki","Points":8944,"X":378,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40453Z"},{"ID":33791,"Name":"012","Points":7965,"X":614,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404532Z"},{"ID":33793,"Name":"#Finesse","Points":8759,"X":427,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404538Z"},{"ID":33794,"Name":"034 Wioska barbarzyƄska","Points":6718,"X":678,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40454Z"},{"ID":33795,"Name":"A 016","Points":5894,"X":369,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404542Z"},{"ID":33796,"Name":"Wioska barbarzyƄska","Points":9580,"X":623,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404544Z"},{"ID":33797,"Name":"B 062","Points":10273,"X":677,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404546Z"},{"ID":33798,"Name":"1v9 machine","Points":10019,"X":390,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404551Z"},{"ID":33799,"Name":"000","Points":10362,"X":675,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404556Z"},{"ID":33800,"Name":"Ulu-mulu","Points":3013,"X":431,"Y":609,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404558Z"},{"ID":33801,"Name":"C0158","Points":9374,"X":318,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40456Z"},{"ID":33802,"Name":"016","Points":5790,"X":357,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404562Z"},{"ID":33803,"Name":"Wioska barbarzyƄska","Points":5876,"X":624,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404564Z"},{"ID":33804,"Name":"Szulernia","Points":9981,"X":376,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404566Z"},{"ID":33805,"Name":"Wioska barbarzyƄska","Points":8777,"X":431,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404571Z"},{"ID":33806,"Name":"Monetkownia","Points":9737,"X":620,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404572Z"},{"ID":33807,"Name":"WiedĆșma","Points":2771,"X":557,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404574Z"},{"ID":33808,"Name":"North Barba 035","Points":10245,"X":405,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404576Z"},{"ID":33809,"Name":"Szlachcic","Points":9822,"X":389,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404578Z"},{"ID":33810,"Name":"0094","Points":10160,"X":572,"Y":665,"Continent":"K65","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40458Z"},{"ID":33811,"Name":"0315","Points":9884,"X":560,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404582Z"},{"ID":33812,"Name":"Wioska barbarzyƄska","Points":3912,"X":405,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404588Z"},{"ID":33813,"Name":"004","Points":6959,"X":332,"Y":563,"Continent":"K53","Bonus":6,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404593Z"},{"ID":33814,"Name":"B 054","Points":5840,"X":677,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404595Z"},{"ID":33815,"Name":"Wioska barbarzyƄska","Points":9196,"X":676,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404597Z"},{"ID":33816,"Name":"A.03 spóƂdzielnia gryzoni","Points":3189,"X":564,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404599Z"},{"ID":33817,"Name":"Wioska barbarzyƄska","Points":2921,"X":475,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404601Z"},{"ID":33818,"Name":"Wioska Zoodix","Points":9810,"X":652,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":699251542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404603Z"},{"ID":33819,"Name":"fff","Points":8913,"X":490,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404606Z"},{"ID":33820,"Name":"V014","Points":2544,"X":339,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40461Z"},{"ID":33821,"Name":"Wioska barbarzyƄska","Points":1583,"X":647,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":6986891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404613Z"},{"ID":33822,"Name":"173...Segadorr","Points":10616,"X":442,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404615Z"},{"ID":33823,"Name":"*008*","Points":10211,"X":353,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40462Z"},{"ID":33824,"Name":"23. Szeksox 2","Points":9362,"X":678,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404622Z"},{"ID":33825,"Name":"Lord Lord Franek .#188","Points":10285,"X":543,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404624Z"},{"ID":33826,"Name":"I065","Points":10081,"X":680,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404626Z"},{"ID":33827,"Name":"012 .1. Infanterie-Division","Points":6990,"X":604,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404628Z"},{"ID":33829,"Name":"004 Winterfel","Points":8134,"X":321,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404633Z"},{"ID":33830,"Name":"Sekou 2","Points":8071,"X":677,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404638Z"},{"ID":33831,"Name":"0016","Points":8234,"X":681,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40464Z"},{"ID":33832,"Name":"-002-","Points":10178,"X":334,"Y":578,"Continent":"K53","Bonus":8,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404642Z"},{"ID":33833,"Name":"Midgard","Points":10495,"X":628,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404644Z"},{"ID":33834,"Name":"tuaj","Points":7855,"X":459,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404646Z"},{"ID":33835,"Name":"Wioska barbarzyƄska","Points":10208,"X":585,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404648Z"},{"ID":33836,"Name":"Wioska brabarzyƄcĂłw","Points":10971,"X":652,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404656Z"},{"ID":33837,"Name":"R 021","Points":9717,"X":485,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404658Z"},{"ID":33839,"Name":"Belem","Points":9178,"X":345,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":699494480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40466Z"},{"ID":33840,"Name":"05 Baza","Points":8300,"X":542,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":849097981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404662Z"},{"ID":33841,"Name":"Szlachcic","Points":8165,"X":602,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404664Z"},{"ID":33842,"Name":"OFF","Points":7389,"X":680,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404666Z"},{"ID":33843,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8816,"X":541,"Y":631,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404668Z"},{"ID":33844,"Name":"=|30|=","Points":7806,"X":644,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40467Z"},{"ID":33845,"Name":"- 08 - Zadupie","Points":5133,"X":462,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404675Z"},{"ID":33846,"Name":"24. Szeksox 3","Points":9540,"X":680,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404677Z"},{"ID":33847,"Name":"120 Wioska barbarzyƄska","Points":10001,"X":537,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404679Z"},{"ID":33848,"Name":"061","Points":10019,"X":455,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404681Z"},{"ID":33849,"Name":"Westfold.009","Points":10178,"X":335,"Y":431,"Continent":"K43","Bonus":8,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404683Z"},{"ID":33850,"Name":"Taran","Points":9959,"X":338,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404688Z"},{"ID":33852,"Name":"C0176","Points":10362,"X":325,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40469Z"},{"ID":33853,"Name":"AAA","Points":6176,"X":537,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404695Z"},{"ID":33854,"Name":"Kentin ufam Tobie","Points":10014,"X":329,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404697Z"},{"ID":33855,"Name":"Wioska barbarzyƄska","Points":7160,"X":401,"Y":353,"Continent":"K34","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404699Z"},{"ID":33856,"Name":"C0186","Points":8189,"X":320,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404701Z"},{"ID":33858,"Name":"PiekƂo to inni","Points":7430,"X":604,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404703Z"},{"ID":33859,"Name":"Jednak wolę gofry","Points":10311,"X":420,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404705Z"},{"ID":33860,"Name":"Wioska Natka1968","Points":3764,"X":525,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404707Z"},{"ID":33861,"Name":"052. Edda","Points":10252,"X":660,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404709Z"},{"ID":33862,"Name":"ADEN","Points":10292,"X":580,"Y":343,"Continent":"K35","Bonus":1,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404715Z"},{"ID":33863,"Name":"###1","Points":8973,"X":486,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404717Z"},{"ID":33864,"Name":"364|615 MaƂy GrĂłd","Points":9805,"X":615,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404718Z"},{"ID":33865,"Name":"#045#","Points":10019,"X":635,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404724Z"},{"ID":33866,"Name":"0657","Points":9590,"X":549,"Y":669,"Continent":"K65","Bonus":6,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404726Z"},{"ID":33868,"Name":"O46 Drvenik","Points":8930,"X":683,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404728Z"},{"ID":33869,"Name":"off 100 %","Points":9983,"X":336,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40473Z"},{"ID":33870,"Name":"0549","Points":9761,"X":477,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404736Z"},{"ID":33871,"Name":"A 014","Points":10158,"X":368,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404738Z"},{"ID":33872,"Name":"Muchomor *019*","Points":10300,"X":515,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40474Z"},{"ID":33874,"Name":"Lord Lord Franek .#183","Points":7440,"X":611,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404742Z"},{"ID":33875,"Name":"183...segador","Points":7541,"X":437,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404744Z"},{"ID":33876,"Name":"*102","Points":9963,"X":581,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404746Z"},{"ID":33877,"Name":"Ob Konfederacja","Points":8431,"X":441,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404748Z"},{"ID":33878,"Name":"Didi","Points":10160,"X":669,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40475Z"},{"ID":33879,"Name":"Avelorn","Points":9922,"X":405,"Y":654,"Continent":"K64","Bonus":3,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404757Z"},{"ID":33880,"Name":"X | Forest Cyaaaanku","Points":10000,"X":324,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404759Z"},{"ID":33881,"Name":"067 Wioska 012","Points":9488,"X":661,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404761Z"},{"ID":33882,"Name":"Wioska","Points":10698,"X":514,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":3264534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404763Z"},{"ID":33883,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9788,"X":380,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404765Z"},{"ID":33884,"Name":"011.","Points":9925,"X":633,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404767Z"},{"ID":33885,"Name":"[033]","Points":7974,"X":663,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404769Z"},{"ID":33887,"Name":"AAA","Points":6151,"X":545,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404776Z"},{"ID":33888,"Name":"I081 Nie trzeba tęgich gƂow","Points":9663,"X":672,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404777Z"},{"ID":33889,"Name":"A.01 spóƂdzielnia gryzoni","Points":5937,"X":567,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40478Z"},{"ID":33890,"Name":"004","Points":9993,"X":532,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404782Z"},{"ID":33891,"Name":"Ob Konfederacja","Points":6602,"X":435,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404784Z"},{"ID":33892,"Name":"[B]_[032] Dejv.oldplyr","Points":8178,"X":418,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404786Z"},{"ID":33893,"Name":"Na Skraju Raju","Points":9880,"X":324,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404787Z"},{"ID":33894,"Name":"C0185","Points":7619,"X":320,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404789Z"},{"ID":33895,"Name":"*012*","Points":10211,"X":356,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404796Z"},{"ID":33896,"Name":"031.","Points":10654,"X":623,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404798Z"},{"ID":33897,"Name":"Muchomor *010*","Points":10300,"X":516,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4048Z"},{"ID":33898,"Name":"AAA","Points":11898,"X":548,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404802Z"},{"ID":33899,"Name":"wioska","Points":7492,"X":353,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404804Z"},{"ID":33900,"Name":"-007-","Points":2070,"X":348,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404806Z"},{"ID":33901,"Name":"A044","Points":8409,"X":611,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404808Z"},{"ID":33902,"Name":"C0171","Points":8496,"X":318,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404814Z"},{"ID":33903,"Name":"019 MONETKI","Points":9724,"X":678,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404816Z"},{"ID":33904,"Name":"LONDON","Points":1113,"X":403,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404818Z"},{"ID":33905,"Name":"#0169 yasoke19","Points":9162,"X":491,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40482Z"},{"ID":33906,"Name":"k36 2","Points":11130,"X":612,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404822Z"},{"ID":33907,"Name":"A008 Glina","Points":10141,"X":668,"Y":440,"Continent":"K46","Bonus":2,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404824Z"},{"ID":33908,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10069,"X":380,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404826Z"},{"ID":33909,"Name":"Szlachcic","Points":9986,"X":384,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404827Z"},{"ID":33910,"Name":"001. Bordeaux","Points":9149,"X":573,"Y":602,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404834Z"},{"ID":33911,"Name":"0009","Points":5303,"X":430,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404836Z"},{"ID":33913,"Name":"fff","Points":10229,"X":489,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404838Z"},{"ID":33914,"Name":"KRAKPOLIS","Points":9627,"X":403,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":699516268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40484Z"},{"ID":33915,"Name":"019","Points":10019,"X":449,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404842Z"},{"ID":33916,"Name":"Szlachcic","Points":10559,"X":388,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404844Z"},{"ID":33917,"Name":"Szulernia","Points":7248,"X":382,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404845Z"},{"ID":33918,"Name":"108","Points":3725,"X":592,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404847Z"},{"ID":33919,"Name":"Wioska barbarzyƄska01","Points":2585,"X":670,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404853Z"},{"ID":33920,"Name":"Barba","Points":2843,"X":415,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404855Z"},{"ID":33921,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9967,"X":382,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404857Z"},{"ID":33922,"Name":"[243] Arrivederci","Points":10158,"X":607,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404859Z"},{"ID":33923,"Name":"Out of Touch","Points":3971,"X":328,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404861Z"},{"ID":33924,"Name":"[B]_[023] Dejv.oldplyr","Points":10495,"X":416,"Y":338,"Continent":"K34","Bonus":1,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404863Z"},{"ID":33925,"Name":"Wierzbica","Points":6048,"X":572,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404865Z"},{"ID":33926,"Name":"*179*","Points":10211,"X":339,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40487Z"},{"ID":33927,"Name":"FILIPOWO BRODWINO","Points":9391,"X":345,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404892Z"},{"ID":33928,"Name":"A0274","Points":10362,"X":323,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404894Z"},{"ID":33929,"Name":"107","Points":4565,"X":593,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404895Z"},{"ID":33930,"Name":"psycha sitting","Points":4998,"X":435,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404897Z"},{"ID":33931,"Name":"A003","Points":10237,"X":602,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404899Z"},{"ID":33932,"Name":"Szlachcic/Taran","Points":10237,"X":640,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404901Z"},{"ID":33933,"Name":".:018:.","Points":11130,"X":635,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404903Z"},{"ID":33934,"Name":"ADEN","Points":9503,"X":600,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404909Z"},{"ID":33935,"Name":"Architekci PlacĂłw Boju","Points":6794,"X":332,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40491Z"},{"ID":33936,"Name":"(019)Marat","Points":5652,"X":329,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404912Z"},{"ID":33937,"Name":"Szulernia","Points":10311,"X":383,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404914Z"},{"ID":33938,"Name":"Wioska barbarzyƄska","Points":7837,"X":622,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404916Z"},{"ID":33939,"Name":"C0175","Points":10362,"X":316,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404918Z"},{"ID":33940,"Name":"-008-","Points":9481,"X":328,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40492Z"},{"ID":33941,"Name":"Wioska Bochun10","Points":7342,"X":322,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404925Z"},{"ID":33942,"Name":"031.xxx","Points":3945,"X":498,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404927Z"},{"ID":33943,"Name":"002","Points":7012,"X":318,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404929Z"},{"ID":33944,"Name":"Wioska 09","Points":6627,"X":496,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":951823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404931Z"},{"ID":33945,"Name":"035 tutaj pierwsza miƂoƛć","Points":7103,"X":670,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404933Z"},{"ID":33946,"Name":"Wioska barbarzyƄska","Points":7347,"X":461,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404935Z"},{"ID":33947,"Name":"003 Alaska","Points":9889,"X":489,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404937Z"},{"ID":33948,"Name":"Jednak wolę gofry","Points":9357,"X":417,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404939Z"},{"ID":33949,"Name":"A043","Points":8552,"X":610,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404947Z"},{"ID":33950,"Name":"B 041","Points":8135,"X":671,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404949Z"},{"ID":33951,"Name":"AAA","Points":7371,"X":532,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40495Z"},{"ID":33952,"Name":"[B]_[038] Dejv.oldplyr","Points":4466,"X":417,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404952Z"},{"ID":33953,"Name":"A038","Points":10031,"X":607,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404954Z"},{"ID":33954,"Name":"Lord Lord Franek .#184","Points":8993,"X":611,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404955Z"},{"ID":33955,"Name":"A.02 spóƂdzielnia gryzoni","Points":3137,"X":564,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404956Z"},{"ID":33956,"Name":"088","Points":9835,"X":664,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404961Z"},{"ID":33957,"Name":"Jednak wolę gofry","Points":7902,"X":424,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404976Z"},{"ID":33958,"Name":"009 ƚw181**001 kubuƛ","Points":10001,"X":376,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404978Z"},{"ID":33959,"Name":"#0133 DannyQ","Points":10178,"X":474,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40498Z"},{"ID":33960,"Name":"*039*","Points":10211,"X":353,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404982Z"},{"ID":33961,"Name":"New World","Points":10294,"X":449,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404983Z"},{"ID":33962,"Name":"Wioska barbarzyƄska","Points":2260,"X":341,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404985Z"},{"ID":33963,"Name":"1v9 machine","Points":9557,"X":393,"Y":642,"Continent":"K63","Bonus":7,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404987Z"},{"ID":33964,"Name":"-011-","Points":2831,"X":543,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404992Z"},{"ID":33965,"Name":"Karp","Points":8280,"X":326,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404994Z"},{"ID":33966,"Name":"023","Points":9993,"X":527,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404996Z"},{"ID":33967,"Name":"020","Points":5246,"X":354,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.404998Z"},{"ID":33968,"Name":"-= 011 =-","Points":10008,"X":445,"Y":518,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405Z"},{"ID":33969,"Name":"kto ananasowy pod wodą ma dom","Points":6721,"X":676,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405002Z"},{"ID":33970,"Name":"065 | PALESTINA","Points":3228,"X":656,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405004Z"},{"ID":33971,"Name":"Wioska Bochun10","Points":5247,"X":322,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405009Z"},{"ID":33972,"Name":"0018","Points":10252,"X":530,"Y":680,"Continent":"K65","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405011Z"},{"ID":33973,"Name":"131","Points":5367,"X":392,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405013Z"},{"ID":33974,"Name":"Wioska barbarzyƄska","Points":3937,"X":585,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405014Z"},{"ID":33975,"Name":"Jesiotr","Points":6300,"X":326,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405016Z"},{"ID":33976,"Name":"059.Stradi","Points":10373,"X":452,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405019Z"},{"ID":33977,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10025,"X":383,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405021Z"},{"ID":33978,"Name":"0577","Points":7837,"X":568,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405022Z"},{"ID":33979,"Name":"**23**","Points":10248,"X":637,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405028Z"},{"ID":33980,"Name":"WschĂłd Droga 006","Points":10311,"X":670,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40503Z"},{"ID":33981,"Name":"**17**","Points":10252,"X":631,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405031Z"},{"ID":33982,"Name":"Didek","Points":10111,"X":669,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405033Z"},{"ID":33983,"Name":"Pomidorowy dzem","Points":10728,"X":682,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405035Z"},{"ID":33984,"Name":"#0172 yasoke19","Points":6249,"X":490,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405037Z"},{"ID":33985,"Name":"|044| Durres","Points":9150,"X":493,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405039Z"},{"ID":33986,"Name":"(004)Kholinar","Points":8639,"X":331,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405044Z"},{"ID":33987,"Name":"011. Bemowo","Points":9902,"X":685,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405046Z"},{"ID":33988,"Name":"Jednak wolę gofry","Points":6452,"X":421,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405047Z"},{"ID":33989,"Name":"La Burdello III","Points":3321,"X":507,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405049Z"},{"ID":33990,"Name":"Wioska 6","Points":7073,"X":331,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699821755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405051Z"},{"ID":33991,"Name":"01 Banan","Points":10414,"X":641,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405053Z"},{"ID":33992,"Name":"Szlachcic","Points":10474,"X":394,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405055Z"},{"ID":33993,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9978,"X":434,"Y":672,"Continent":"K64","Bonus":1,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405057Z"},{"ID":33994,"Name":"Gwoli ƚcisƂoƛci","Points":6083,"X":342,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405115Z"},{"ID":33995,"Name":"110","Points":7308,"X":674,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405119Z"},{"ID":33996,"Name":"028","Points":7388,"X":612,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405121Z"},{"ID":33997,"Name":"008","Points":10362,"X":345,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405122Z"},{"ID":33998,"Name":"043 Mucharadza","Points":9708,"X":663,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405124Z"},{"ID":33999,"Name":"AAA","Points":9494,"X":530,"Y":319,"Continent":"K35","Bonus":2,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405125Z"},{"ID":34000,"Name":"Wioska 085","Points":9825,"X":646,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405126Z"},{"ID":34001,"Name":"a moĆŒe off ? :)","Points":9349,"X":635,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405128Z"},{"ID":34002,"Name":"Wioska barbarzyƄska","Points":5991,"X":349,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405133Z"},{"ID":34003,"Name":"Szlachcic","Points":10160,"X":391,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405135Z"},{"ID":34004,"Name":"018.","Points":7991,"X":557,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405136Z"},{"ID":34005,"Name":"A039","Points":10226,"X":608,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405138Z"},{"ID":34006,"Name":"A 090","Points":10030,"X":374,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405139Z"},{"ID":34008,"Name":"Wioska barbarzyƄska","Points":5267,"X":324,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405141Z"},{"ID":34009,"Name":"SJ2","Points":10495,"X":322,"Y":455,"Continent":"K43","Bonus":5,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405142Z"},{"ID":34010,"Name":"004 Arizona","Points":9821,"X":490,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405146Z"},{"ID":34011,"Name":"Auu 05","Points":9709,"X":582,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405147Z"},{"ID":34013,"Name":"062...skrzyp póƂnoc","Points":10273,"X":439,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405149Z"},{"ID":34014,"Name":"043","Points":9294,"X":469,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40515Z"},{"ID":34015,"Name":"052.","Points":10362,"X":458,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405151Z"},{"ID":34016,"Name":"_PUSTA","Points":10082,"X":657,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405153Z"},{"ID":34017,"Name":"Taran","Points":9957,"X":336,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405154Z"},{"ID":34018,"Name":"191...segador","Points":10301,"X":456,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405156Z"},{"ID":34019,"Name":"Jaaa","Points":10479,"X":676,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40516Z"},{"ID":34020,"Name":"Damietta","Points":8555,"X":412,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405162Z"},{"ID":34021,"Name":"Jednak wolę gofry","Points":5970,"X":419,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405163Z"},{"ID":34023,"Name":"0296","Points":10160,"X":573,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405165Z"},{"ID":34024,"Name":"10. Netflix and chill","Points":10290,"X":555,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405167Z"},{"ID":34025,"Name":"GĂłra ƛw Anny","Points":10559,"X":675,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405168Z"},{"ID":34026,"Name":"019 Barba","Points":9553,"X":684,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40517Z"},{"ID":34027,"Name":"4 Vienna","Points":4554,"X":621,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405173Z"},{"ID":34028,"Name":"ADEN","Points":6903,"X":599,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405175Z"},{"ID":34029,"Name":"Wioska arek1s","Points":8119,"X":457,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":1578509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405176Z"},{"ID":34030,"Name":"wreszcie moja","Points":8115,"X":651,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405178Z"},{"ID":34031,"Name":"Wyspa_32","Points":9689,"X":505,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405179Z"},{"ID":34032,"Name":"Jednak wolę gofry","Points":9835,"X":403,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405181Z"},{"ID":34033,"Name":"A037","Points":10237,"X":598,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405182Z"},{"ID":34034,"Name":"26. Siedlik12345","Points":8691,"X":678,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405184Z"},{"ID":34035,"Name":"Wioska 004","Points":7771,"X":678,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405188Z"},{"ID":34037,"Name":"006","Points":8950,"X":410,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":699246032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40519Z"},{"ID":34038,"Name":"[01]","Points":10636,"X":430,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405192Z"},{"ID":34039,"Name":"036","Points":7072,"X":529,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405194Z"},{"ID":34040,"Name":"Sony 911","Points":8759,"X":621,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405196Z"},{"ID":34041,"Name":"C 014","Points":10083,"X":678,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405199Z"},{"ID":34042,"Name":"X | Forest Cyaaaanku","Points":8799,"X":325,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4052Z"},{"ID":34043,"Name":"Venlo","Points":4394,"X":607,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405206Z"},{"ID":34044,"Name":"New World","Points":10297,"X":437,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405208Z"},{"ID":34045,"Name":"0153","Points":2665,"X":410,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40521Z"},{"ID":34046,"Name":"|063| Ponton","Points":8670,"X":508,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405212Z"},{"ID":34047,"Name":"0414","Points":10019,"X":544,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405214Z"},{"ID":34048,"Name":".:009:.","Points":5180,"X":633,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405216Z"},{"ID":34049,"Name":"Wioska Sir Zordon 001","Points":8886,"X":663,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405218Z"},{"ID":34050,"Name":"TK2","Points":4101,"X":651,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405219Z"},{"ID":34051,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9875,"X":381,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405223Z"},{"ID":34052,"Name":"C0023","Points":10362,"X":316,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405225Z"},{"ID":34053,"Name":"Wonderwall","Points":9761,"X":328,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405227Z"},{"ID":34054,"Name":"Wioska Bochun10","Points":4966,"X":318,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405229Z"},{"ID":34055,"Name":"% 10 % spocone dziadki","Points":1592,"X":587,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405231Z"},{"ID":34056,"Name":"Szulernia","Points":4202,"X":375,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405233Z"},{"ID":34057,"Name":"Mniejsze zƂo 0097","Points":8284,"X":324,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405234Z"},{"ID":34058,"Name":"1v9 machine","Points":10019,"X":390,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405239Z"},{"ID":34059,"Name":"A-050-Heffitto","Points":10168,"X":403,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40524Z"},{"ID":34060,"Name":"cz 110 8","Points":5796,"X":367,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405242Z"},{"ID":34061,"Name":"082 ƚwiąteczna Bombka","Points":7997,"X":650,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405243Z"},{"ID":34062,"Name":"100. Aquae Sextiae","Points":10042,"X":658,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405245Z"},{"ID":34063,"Name":"C0284","Points":6415,"X":322,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405246Z"},{"ID":34064,"Name":"J#006","Points":9797,"X":571,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405248Z"},{"ID":34065,"Name":"- 292 - SS","Points":10000,"X":548,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405249Z"},{"ID":34066,"Name":"#014. NightWalk","Points":9009,"X":456,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405253Z"},{"ID":34067,"Name":"Auu 03","Points":9623,"X":577,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405254Z"},{"ID":34068,"Name":"Nadolice","Points":5410,"X":355,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405256Z"},{"ID":34069,"Name":"Wioska barbarzyƄska","Points":8963,"X":623,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405257Z"},{"ID":34070,"Name":"Szulernia","Points":10084,"X":380,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405259Z"},{"ID":34071,"Name":"J#016","Points":5795,"X":579,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40526Z"},{"ID":34072,"Name":"Szulernia","Points":10102,"X":375,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405262Z"},{"ID":34073,"Name":"Pomidorowy dzem","Points":10008,"X":681,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405263Z"},{"ID":34074,"Name":"007 Haty","Points":9783,"X":347,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405266Z"},{"ID":34075,"Name":"PoƂudnie.009","Points":10044,"X":555,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405268Z"},{"ID":34076,"Name":"Szlachcic","Points":10479,"X":396,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405269Z"},{"ID":34077,"Name":"Winterhome.037","Points":10178,"X":494,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40527Z"},{"ID":34078,"Name":"Wioska barbarzyƄska","Points":10068,"X":526,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405272Z"},{"ID":34079,"Name":"Jaksięmaszkochaniefilllaarako","Points":8455,"X":343,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405273Z"},{"ID":34080,"Name":"*048*","Points":10211,"X":358,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405275Z"},{"ID":34081,"Name":"Wioska barbarzyƄska","Points":7385,"X":674,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405278Z"},{"ID":34082,"Name":"Wioska barbarzyƄska","Points":9124,"X":641,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40528Z"},{"ID":34083,"Name":"001","Points":9593,"X":318,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405281Z"},{"ID":34084,"Name":"I055","Points":9944,"X":677,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405283Z"},{"ID":34085,"Name":"058","Points":9993,"X":513,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405284Z"},{"ID":34086,"Name":"[036] Wioska barbarzyƄska","Points":9288,"X":674,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405286Z"},{"ID":34087,"Name":"Sony 911","Points":9840,"X":620,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405287Z"},{"ID":34088,"Name":"Wioska V","Points":7846,"X":456,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405289Z"},{"ID":34090,"Name":"Wioska barbarzyƄska","Points":10728,"X":680,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405293Z"},{"ID":34091,"Name":"Szlachcic","Points":10475,"X":386,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405294Z"},{"ID":34092,"Name":"Napewno to nie jest off","Points":3761,"X":584,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405295Z"},{"ID":34093,"Name":"WesoƂych ƚwiąt 2","Points":10636,"X":639,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405297Z"},{"ID":34094,"Name":"A 091","Points":9560,"X":375,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405298Z"},{"ID":34095,"Name":"A 074","Points":2969,"X":368,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4053Z"},{"ID":34096,"Name":"DejMon5","Points":7720,"X":371,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405301Z"},{"ID":34097,"Name":"PoƂudnie.010","Points":10011,"X":556,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405305Z"},{"ID":34098,"Name":"Szlachcic","Points":10484,"X":392,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405306Z"},{"ID":34099,"Name":"IƂownica","Points":3946,"X":667,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405308Z"},{"ID":34100,"Name":"083. Utinum","Points":8306,"X":656,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405309Z"},{"ID":34101,"Name":"Wioska barbarzyƄska","Points":6441,"X":577,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405311Z"},{"ID":34102,"Name":".4.","Points":10068,"X":606,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405312Z"},{"ID":34103,"Name":"Wioska barbarzyƄska","Points":5786,"X":495,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405313Z"},{"ID":34104,"Name":"A.10 spóƂdzielnia gryzoni","Points":7602,"X":563,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405315Z"},{"ID":34105,"Name":"189...barba","Points":5157,"X":439,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405318Z"},{"ID":34106,"Name":"003","Points":10495,"X":347,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40532Z"},{"ID":34107,"Name":"Out of Touch","Points":3389,"X":327,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405322Z"},{"ID":34108,"Name":"C0062","Points":10362,"X":321,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405323Z"},{"ID":34109,"Name":"fff","Points":9116,"X":491,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405325Z"},{"ID":34110,"Name":"A-045-Heffitto","Points":10470,"X":402,"Y":347,"Continent":"K34","Bonus":4,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405326Z"},{"ID":34111,"Name":"0084","Points":9993,"X":609,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405327Z"},{"ID":34112,"Name":"Wioska barbarzyƄska","Points":3673,"X":506,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405331Z"},{"ID":34113,"Name":"060 pfennig","Points":8272,"X":682,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405332Z"},{"ID":34114,"Name":"003","Points":10316,"X":608,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405334Z"},{"ID":34115,"Name":"#015. Tony Hawk","Points":9702,"X":451,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405335Z"},{"ID":34116,"Name":"Darma dla zawodnika","Points":10247,"X":526,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405337Z"},{"ID":34117,"Name":"Wioska barbarzyƄska","Points":10728,"X":679,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405338Z"},{"ID":34118,"Name":"New World","Points":10303,"X":444,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40534Z"},{"ID":34119,"Name":"-001-","Points":4127,"X":375,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405341Z"},{"ID":34120,"Name":"*124*","Points":10211,"X":364,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405345Z"},{"ID":34121,"Name":"B 057","Points":8060,"X":678,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405347Z"},{"ID":34123,"Name":"Szulernia","Points":10362,"X":376,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405348Z"},{"ID":34124,"Name":"073.Stradi","Points":9861,"X":454,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405349Z"},{"ID":34125,"Name":"cz WoƂów","Points":3928,"X":365,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405351Z"},{"ID":34126,"Name":"Wioska lejto27","Points":10123,"X":680,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405352Z"},{"ID":34127,"Name":"(032)Rira","Points":9436,"X":336,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405354Z"},{"ID":34128,"Name":"Szulernia","Points":9646,"X":370,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405357Z"},{"ID":34129,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":320,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405358Z"},{"ID":34130,"Name":"010. Dla flag","Points":8556,"X":354,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40536Z"},{"ID":34131,"Name":"Sobącz","Points":6687,"X":653,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405361Z"},{"ID":34132,"Name":"Wyspa 015","Points":8542,"X":631,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405363Z"},{"ID":34133,"Name":"0260","Points":10019,"X":555,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405364Z"},{"ID":34134,"Name":"Wioska barbarzyƄska","Points":3333,"X":316,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405366Z"},{"ID":34135,"Name":"Szlachcic","Points":10495,"X":391,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405367Z"},{"ID":34136,"Name":"#064#","Points":9761,"X":629,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405371Z"},{"ID":34137,"Name":"008","Points":10495,"X":550,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405372Z"},{"ID":34138,"Name":"[B]_[035] Dejv.oldplyr","Points":8736,"X":417,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405374Z"},{"ID":34139,"Name":"Ob Konfederacja","Points":6455,"X":437,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405375Z"},{"ID":34140,"Name":"0002","Points":9938,"X":625,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405376Z"},{"ID":34142,"Name":"PƂachty","Points":5783,"X":659,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405378Z"},{"ID":34143,"Name":"Wioska barbarzyƄska","Points":3715,"X":320,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40538Z"},{"ID":34144,"Name":"0616","Points":9783,"X":475,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405383Z"},{"ID":34145,"Name":"Ob Konfederacja","Points":6729,"X":429,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405385Z"},{"ID":34146,"Name":"O57 Winnipeg","Points":7363,"X":670,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405386Z"},{"ID":34147,"Name":"*066*","Points":10211,"X":356,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405388Z"},{"ID":34148,"Name":"Ć»UBR PSYCHIATRYK 003","Points":8529,"X":612,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405389Z"},{"ID":34149,"Name":"003","Points":10416,"X":680,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40539Z"},{"ID":34150,"Name":"Wioska Bochun10","Points":10311,"X":315,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405392Z"},{"ID":34151,"Name":"A015","Points":10229,"X":611,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405394Z"},{"ID":34152,"Name":"fff","Points":8653,"X":488,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405397Z"},{"ID":34153,"Name":"J#019","Points":9797,"X":571,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405398Z"},{"ID":34154,"Name":"Wioska barbarzyƄska","Points":10728,"X":684,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4054Z"},{"ID":34155,"Name":"2.Badalona","Points":5391,"X":565,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405402Z"},{"ID":34156,"Name":"035 Brak doƛwiadczenia na maszyn","Points":8225,"X":373,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405403Z"},{"ID":34157,"Name":"Out of Touch","Points":9838,"X":327,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405404Z"},{"ID":34158,"Name":"- 296 - SS","Points":10000,"X":549,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405406Z"},{"ID":34159,"Name":"Wioska barbarzyƄska","Points":6943,"X":622,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40541Z"},{"ID":34160,"Name":"No.19","Points":2378,"X":478,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405411Z"},{"ID":34161,"Name":"002. BrwinĂłw","Points":7339,"X":322,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405413Z"},{"ID":34162,"Name":"055 Wioska 015","Points":8203,"X":660,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405414Z"},{"ID":34163,"Name":"New World","Points":10294,"X":446,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405416Z"},{"ID":34164,"Name":"Zeta Reticuli O","Points":10052,"X":415,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405417Z"},{"ID":34165,"Name":"1v9 machine","Points":10019,"X":382,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405419Z"},{"ID":34166,"Name":"*261*","Points":2781,"X":339,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40542Z"},{"ID":34167,"Name":"Muchomor *007*","Points":10311,"X":511,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405424Z"},{"ID":34168,"Name":"- 06 - Brzeziny","Points":6816,"X":460,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405425Z"},{"ID":34170,"Name":"094. Zatoka KrĂłlewska","Points":10160,"X":665,"Y":583,"Continent":"K56","Bonus":6,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405426Z"},{"ID":34171,"Name":"LordAlamar","Points":6739,"X":636,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":699797508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405428Z"},{"ID":34172,"Name":"(007)Thaylen City","Points":9948,"X":328,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405429Z"},{"ID":34173,"Name":"Wyspa 027","Points":6078,"X":636,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405431Z"},{"ID":34174,"Name":"_PUSTA","Points":10069,"X":660,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405432Z"},{"ID":34175,"Name":"Wyspa 020","Points":10273,"X":629,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405435Z"},{"ID":34176,"Name":"B006","Points":9340,"X":473,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405437Z"},{"ID":34177,"Name":"TWIERDZA .:047:.","Points":10838,"X":667,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405438Z"},{"ID":34178,"Name":"BACÓWKA |040|","Points":7142,"X":661,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405439Z"},{"ID":34179,"Name":"019 CzarnoksiÄ™ĆŒnik","Points":6455,"X":366,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405441Z"},{"ID":34180,"Name":"042","Points":9653,"X":471,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405443Z"},{"ID":34181,"Name":"Wioska barbarzyƄska","Points":4936,"X":630,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405444Z"},{"ID":34182,"Name":".:012:.","Points":4379,"X":637,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405445Z"},{"ID":34184,"Name":"- 293 - SS","Points":10000,"X":544,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405449Z"},{"ID":34185,"Name":"Szulernia","Points":5874,"X":374,"Y":373,"Continent":"K33","Bonus":4,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40545Z"},{"ID":34186,"Name":"C0025","Points":10362,"X":320,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405451Z"},{"ID":34187,"Name":"021","Points":6475,"X":412,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405453Z"},{"ID":34188,"Name":"028# Lajrra","Points":10268,"X":457,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405454Z"},{"ID":34189,"Name":"Wioska barbarzyƄska","Points":7374,"X":343,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405456Z"},{"ID":34190,"Name":"Gattacka","Points":9852,"X":622,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405457Z"},{"ID":34191,"Name":"Lord Lord Franek .#143","Points":10026,"X":514,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405461Z"},{"ID":34192,"Name":"037","Points":9719,"X":677,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405462Z"},{"ID":34193,"Name":"034.xxx","Points":4082,"X":479,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405464Z"},{"ID":34194,"Name":"007 Islay","Points":6541,"X":557,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405465Z"},{"ID":34195,"Name":"75k$ Grvvyq","Points":10495,"X":673,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405467Z"},{"ID":34196,"Name":"Wioska barbarzyƄska","Points":4965,"X":628,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405468Z"},{"ID":34197,"Name":"200 km","Points":3851,"X":408,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40547Z"},{"ID":34198,"Name":"[014] Klocuchowo","Points":9312,"X":673,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405472Z"},{"ID":34199,"Name":"rotes idz spac misiu","Points":8525,"X":462,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405476Z"},{"ID":34200,"Name":"106","Points":5077,"X":595,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405478Z"},{"ID":34201,"Name":"SJ5","Points":10252,"X":330,"Y":448,"Continent":"K43","Bonus":6,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40548Z"},{"ID":34202,"Name":"-003-","Points":3934,"X":346,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405482Z"},{"ID":34203,"Name":"001 Northampton","Points":10252,"X":605,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":849057572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405483Z"},{"ID":34204,"Name":"209","Points":3496,"X":422,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405484Z"},{"ID":34205,"Name":"X | Forest Cyaaaanku","Points":5886,"X":318,"Y":474,"Continent":"K43","Bonus":5,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405485Z"},{"ID":34206,"Name":"0578","Points":8598,"X":566,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405487Z"},{"ID":34207,"Name":"Chekku - meito","Points":9976,"X":324,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405489Z"},{"ID":34208,"Name":"PiekƂo to inni","Points":3857,"X":592,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40549Z"},{"ID":34209,"Name":"0020","Points":10160,"X":546,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405491Z"},{"ID":34210,"Name":"080","Points":10083,"X":474,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405492Z"},{"ID":34211,"Name":"A0283","Points":8970,"X":321,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405493Z"},{"ID":34212,"Name":"New World","Points":10294,"X":442,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405495Z"},{"ID":34213,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9832,"X":380,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405496Z"},{"ID":34214,"Name":"Wioska 4","Points":6853,"X":575,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405498Z"},{"ID":34215,"Name":"A057","Points":10221,"X":606,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4055Z"},{"ID":34216,"Name":"0154","Points":2210,"X":411,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405501Z"},{"ID":34217,"Name":"village 2","Points":9507,"X":650,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405502Z"},{"ID":34219,"Name":"#0134 golek95","Points":8081,"X":477,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405503Z"},{"ID":34220,"Name":"Kiedyƛ Wielki Wojownik","Points":4838,"X":598,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405504Z"},{"ID":34221,"Name":"047- Mroczna Osada","Points":9387,"X":651,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405505Z"},{"ID":34222,"Name":"OSADA III","Points":10411,"X":679,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405506Z"},{"ID":34223,"Name":"Psycha Siada","Points":10068,"X":441,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405509Z"},{"ID":34224,"Name":"Wioska Bochun10","Points":6429,"X":323,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40551Z"},{"ID":34225,"Name":"I056","Points":10235,"X":681,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405511Z"},{"ID":34226,"Name":"Almere","Points":9406,"X":603,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405512Z"},{"ID":34227,"Name":"**38**","Points":9995,"X":672,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405513Z"},{"ID":34228,"Name":"*235*","Points":10827,"X":333,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405514Z"},{"ID":34229,"Name":"C0072","Points":10362,"X":320,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405515Z"},{"ID":34230,"Name":"*243*","Points":9841,"X":336,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405517Z"},{"ID":34231,"Name":"Wioska barbarzyƄska","Points":3668,"X":628,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405519Z"},{"ID":34232,"Name":"A 030","Points":8916,"X":368,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40552Z"},{"ID":34233,"Name":"138 Dolina Konopii","Points":8250,"X":648,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405521Z"},{"ID":34234,"Name":"012 Mordor","Points":9739,"X":456,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405522Z"},{"ID":34235,"Name":"0608","Points":10019,"X":476,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405523Z"},{"ID":34236,"Name":"XXX","Points":8662,"X":461,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405524Z"},{"ID":34237,"Name":"Westfold.008","Points":10178,"X":331,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405525Z"},{"ID":34238,"Name":"C0084","Points":10362,"X":319,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405527Z"},{"ID":34239,"Name":"Wioska barbarzyƄska","Points":6703,"X":460,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405528Z"},{"ID":34240,"Name":"001","Points":10495,"X":324,"Y":557,"Continent":"K53","Bonus":8,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405529Z"},{"ID":34241,"Name":"=|38|=","Points":4236,"X":645,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40553Z"},{"ID":34242,"Name":"Wioska barbarzyƄska","Points":3857,"X":321,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405531Z"},{"ID":34244,"Name":"Pomidorowy dzem","Points":10728,"X":679,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405532Z"},{"ID":34245,"Name":"Farcik","Points":6215,"X":660,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405533Z"},{"ID":34246,"Name":"ToruƄ","Points":3162,"X":555,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405536Z"},{"ID":34247,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9029,"X":384,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405537Z"},{"ID":34248,"Name":"#0165 yasoke19","Points":10178,"X":490,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405538Z"},{"ID":34249,"Name":"Krytl07","Points":10311,"X":512,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405539Z"},{"ID":34250,"Name":"C004 Liskota","Points":9994,"X":591,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40554Z"},{"ID":34251,"Name":"0052","Points":9993,"X":602,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405541Z"},{"ID":34252,"Name":"Mirzec","Points":5805,"X":572,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405542Z"},{"ID":34253,"Name":"S1Joker pozdrawia ;)","Points":6757,"X":333,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405543Z"},{"ID":34254,"Name":"Wioska barbarzyƄska","Points":8730,"X":318,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405545Z"},{"ID":34255,"Name":"Ob Konfederacja","Points":3680,"X":427,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405546Z"},{"ID":34256,"Name":"No.17","Points":1713,"X":473,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405548Z"},{"ID":34257,"Name":"New World","Points":10297,"X":435,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405549Z"},{"ID":34258,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":319,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40555Z"},{"ID":34259,"Name":"*030*","Points":10211,"X":349,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405551Z"},{"ID":34260,"Name":"J#017","Points":9797,"X":576,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405552Z"},{"ID":34261,"Name":"*009*","Points":10211,"X":354,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405554Z"},{"ID":34262,"Name":"#086#","Points":9125,"X":633,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405555Z"},{"ID":34263,"Name":"155...hubertw25","Points":10237,"X":441,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405556Z"},{"ID":34264,"Name":"-10-","Points":6835,"X":624,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405558Z"},{"ID":34265,"Name":"Szlachcic","Points":10476,"X":379,"Y":359,"Continent":"K33","Bonus":4,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405559Z"},{"ID":34266,"Name":"Wioska barbarzyƄska","Points":8334,"X":332,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40556Z"},{"ID":34267,"Name":"140 Dolina WilkĂłw","Points":5283,"X":649,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405561Z"},{"ID":34268,"Name":"Twierdza (GETTO)","Points":6873,"X":477,"Y":636,"Continent":"K64","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405562Z"},{"ID":34269,"Name":"016 Claremont","Points":9925,"X":476,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405564Z"},{"ID":34270,"Name":"003 Desant","Points":9424,"X":480,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405565Z"},{"ID":34271,"Name":"Wioska Rublow","Points":9745,"X":650,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405566Z"},{"ID":34272,"Name":"Pomidorowy dzem","Points":7637,"X":685,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405567Z"},{"ID":34274,"Name":"cz zachod 005","Points":3285,"X":364,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405568Z"},{"ID":34275,"Name":"0003","Points":10008,"X":677,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405569Z"},{"ID":34276,"Name":"C0057","Points":10362,"X":319,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40557Z"},{"ID":34277,"Name":"Wioska 045","Points":9761,"X":647,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405573Z"},{"ID":34278,"Name":"#Forza 03","Points":6677,"X":434,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405574Z"},{"ID":34279,"Name":"Dlaczego..?","Points":9124,"X":413,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699684693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405575Z"},{"ID":34280,"Name":"Wioska barbarzyƄska","Points":10728,"X":679,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405576Z"},{"ID":34281,"Name":"KRÓL PAPI WIELKI","Points":9439,"X":642,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405577Z"},{"ID":34282,"Name":"Wioska KrĂłlowo ZƂota 3","Points":4071,"X":328,"Y":433,"Continent":"K43","Bonus":2,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405578Z"},{"ID":34283,"Name":"_PUSTA","Points":10338,"X":658,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405579Z"},{"ID":34284,"Name":"Ten tego","Points":9134,"X":565,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40558Z"},{"ID":34285,"Name":"PoƂudnie.006","Points":10297,"X":555,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405582Z"},{"ID":34286,"Name":"021","Points":4223,"X":358,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405583Z"},{"ID":34287,"Name":"006 Liberty Stadium","Points":10065,"X":675,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405584Z"},{"ID":34288,"Name":"Wioska barbarzyƄska","Points":8300,"X":344,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405585Z"},{"ID":34290,"Name":"Out of Touch","Points":8677,"X":327,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405586Z"},{"ID":34291,"Name":"J#007","Points":9797,"X":572,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405587Z"},{"ID":34292,"Name":"007 Nebraska","Points":4285,"X":487,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405588Z"},{"ID":34293,"Name":"080. Morze Eniwetty","Points":7600,"X":666,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40559Z"},{"ID":34294,"Name":"Out of Touch","Points":2586,"X":330,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405591Z"},{"ID":34295,"Name":"A37","Points":9804,"X":471,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405593Z"},{"ID":34296,"Name":"076","Points":9319,"X":663,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405594Z"},{"ID":34298,"Name":"Wioska Bochun10","Points":10311,"X":325,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405595Z"},{"ID":34299,"Name":"0397","Points":10252,"X":564,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405596Z"},{"ID":34300,"Name":"New Land 24","Points":2220,"X":337,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405597Z"},{"ID":34301,"Name":"097. Italica","Points":9352,"X":658,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405598Z"},{"ID":34302,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":459,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405601Z"},{"ID":34304,"Name":"016art","Points":10116,"X":605,"Y":348,"Continent":"K36","Bonus":8,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405602Z"},{"ID":34305,"Name":"Kamyk","Points":3972,"X":320,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":849098400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405603Z"},{"ID":34306,"Name":"002 FF","Points":6569,"X":314,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405604Z"},{"ID":34307,"Name":"019 Schwere Panzer-Abteilung 504","Points":3884,"X":605,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405605Z"},{"ID":34308,"Name":"0236","Points":9885,"X":533,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405606Z"},{"ID":34309,"Name":"1001","Points":10160,"X":622,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405607Z"},{"ID":34310,"Name":"Wioska","Points":3824,"X":324,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":848946608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405609Z"},{"ID":34311,"Name":"Wioska barbarzyƄska","Points":10011,"X":685,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40561Z"},{"ID":34312,"Name":"*INTERTWINED*","Points":3789,"X":511,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405611Z"},{"ID":34314,"Name":"Lord Lord Franek .#146","Points":9943,"X":509,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405612Z"},{"ID":34315,"Name":"092 Tomek","Points":6417,"X":685,"Y":510,"Continent":"K56","Bonus":1,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405613Z"},{"ID":34316,"Name":"015 arena","Points":9835,"X":678,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405614Z"},{"ID":34317,"Name":"Wioska barbarzyƄska","Points":10216,"X":343,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405615Z"},{"ID":34318,"Name":"_PUSTA","Points":10061,"X":656,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405616Z"},{"ID":34319,"Name":"Taran","Points":10728,"X":682,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405619Z"},{"ID":34321,"Name":"07 Cytadela PóƂnocna","Points":10362,"X":564,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40562Z"},{"ID":34322,"Name":"C0149","Points":10362,"X":320,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405621Z"},{"ID":34323,"Name":"089 Tomek","Points":7862,"X":680,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405622Z"},{"ID":34325,"Name":"New World","Points":10292,"X":432,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405623Z"},{"ID":34326,"Name":"Wioska barbarzyƄska","Points":3922,"X":344,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405624Z"},{"ID":34327,"Name":"No.15","Points":1237,"X":477,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405625Z"},{"ID":34328,"Name":"OFF","Points":10159,"X":654,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405628Z"},{"ID":34329,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":318,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405629Z"},{"ID":34330,"Name":"ORLE","Points":12154,"X":356,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40563Z"},{"ID":34331,"Name":"081.Stradi","Points":10171,"X":447,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405631Z"},{"ID":34332,"Name":"R 026","Points":8813,"X":486,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405632Z"},{"ID":34333,"Name":"KRÓL PAPI WIELKI","Points":10215,"X":636,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405632Z"},{"ID":34334,"Name":"Wioska J","Points":3655,"X":572,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405633Z"},{"ID":34335,"Name":"510","Points":8314,"X":676,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405635Z"},{"ID":34336,"Name":"Wieniec-Hubix","Points":10019,"X":660,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405637Z"},{"ID":34337,"Name":"059 pfennig","Points":7917,"X":684,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405638Z"},{"ID":34338,"Name":".achim.","Points":7868,"X":484,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405639Z"},{"ID":34339,"Name":"*045*","Points":10211,"X":344,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40564Z"},{"ID":34340,"Name":"OFF","Points":9585,"X":654,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405641Z"},{"ID":34341,"Name":"Nowa 39","Points":9455,"X":662,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405642Z"},{"ID":34342,"Name":"C0177","Points":10362,"X":325,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405644Z"},{"ID":34343,"Name":"Auu 07","Points":7096,"X":578,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405645Z"},{"ID":34344,"Name":"Wioska Sir Zordon 004","Points":5899,"X":664,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405647Z"},{"ID":34345,"Name":"Wioska Bochun10","Points":7569,"X":320,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405648Z"},{"ID":34346,"Name":"195...Segadro","Points":10650,"X":456,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405649Z"},{"ID":34347,"Name":"Mayans","Points":9122,"X":649,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40565Z"},{"ID":34348,"Name":"R 015 ~Pęknina~","Points":10019,"X":484,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405651Z"},{"ID":34349,"Name":"Didek","Points":10066,"X":671,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405652Z"},{"ID":34350,"Name":"214","Points":9801,"X":433,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405653Z"},{"ID":34351,"Name":"Sekou 3","Points":10059,"X":679,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405655Z"},{"ID":34352,"Name":"C0044","Points":10362,"X":323,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405656Z"},{"ID":34353,"Name":"Out of Touch","Points":9384,"X":324,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405657Z"},{"ID":34354,"Name":"Wioska X","Points":7234,"X":580,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405658Z"},{"ID":34355,"Name":"C0169","Points":10362,"X":319,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405659Z"},{"ID":34356,"Name":"*228*","Points":8000,"X":331,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40566Z"},{"ID":34357,"Name":"0044","Points":10019,"X":678,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405661Z"},{"ID":34358,"Name":"Wioska r 3","Points":5286,"X":558,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405662Z"},{"ID":34359,"Name":"Taran 008","Points":10971,"X":607,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405665Z"},{"ID":34360,"Name":"22. Dayz","Points":9258,"X":555,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405666Z"},{"ID":34361,"Name":"016 Wioska barbarzyƄska","Points":8388,"X":679,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405667Z"},{"ID":34362,"Name":"Ć»UBR PSYCHIATRYK 004","Points":8218,"X":616,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405668Z"},{"ID":34363,"Name":"B 015","Points":9770,"X":675,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405669Z"},{"ID":34364,"Name":"C0031","Points":10362,"X":316,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40567Z"},{"ID":34365,"Name":"016 * Lady Porto *","Points":12154,"X":646,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405671Z"},{"ID":34366,"Name":"New Land 17","Points":3697,"X":342,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405673Z"},{"ID":34367,"Name":"Szlachcic/Taran","Points":10237,"X":634,"Y":375,"Continent":"K36","Bonus":7,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405674Z"},{"ID":34369,"Name":"Chekku - meito","Points":9976,"X":321,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405675Z"},{"ID":34370,"Name":"B 059","Points":6956,"X":677,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405676Z"},{"ID":34371,"Name":"109 And another one","Points":10476,"X":334,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405677Z"},{"ID":34372,"Name":"[B]_[026] Dejv.oldplyr","Points":10495,"X":416,"Y":336,"Continent":"K34","Bonus":9,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405678Z"},{"ID":34373,"Name":"-05-","Points":8127,"X":322,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405679Z"},{"ID":34374,"Name":"Winterhome.069","Points":10045,"X":504,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40568Z"},{"ID":34375,"Name":"#0198 Segadorr dar","Points":7578,"X":460,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405683Z"},{"ID":34376,"Name":"019 Mucharadza","Points":10559,"X":663,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405684Z"},{"ID":34378,"Name":"999 Kubacki","Points":5830,"X":669,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405685Z"},{"ID":34379,"Name":"Prosto do nieba czwĂłrkami szli..","Points":3029,"X":449,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":699590236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405686Z"},{"ID":34380,"Name":"058 Wioska 004","Points":9963,"X":663,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405687Z"},{"ID":34381,"Name":"Jednak wolę gofry","Points":2648,"X":416,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405688Z"},{"ID":34382,"Name":"172...Segadorr","Points":10330,"X":438,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405689Z"},{"ID":34383,"Name":"009","Points":9735,"X":678,"Y":495,"Continent":"K46","Bonus":4,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405691Z"},{"ID":34384,"Name":"Nowa 47","Points":7416,"X":664,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405692Z"},{"ID":34385,"Name":"Winterhome.042","Points":10178,"X":493,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405693Z"},{"ID":34386,"Name":"Hiszpan2","Points":10389,"X":672,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405694Z"},{"ID":34387,"Name":"WschĂłd X1","Points":7687,"X":684,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405695Z"},{"ID":34389,"Name":"Taran","Points":9957,"X":341,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405696Z"},{"ID":34390,"Name":"022 toni","Points":9963,"X":683,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405697Z"},{"ID":34391,"Name":"A064","Points":8392,"X":603,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405698Z"},{"ID":34393,"Name":"007","Points":6486,"X":315,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4057Z"},{"ID":34394,"Name":"Wioska barbarzyƄska","Points":6100,"X":467,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405701Z"},{"ID":34395,"Name":"208","Points":3739,"X":421,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405702Z"},{"ID":34396,"Name":"184...skrzyp","Points":7504,"X":444,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405703Z"},{"ID":34397,"Name":".015.","Points":10595,"X":503,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405704Z"},{"ID":34398,"Name":"Wioska barbarzyƄska","Points":9927,"X":506,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405705Z"},{"ID":34399,"Name":"START 06","Points":3294,"X":574,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405706Z"},{"ID":34400,"Name":"C 005","Points":7468,"X":682,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405708Z"},{"ID":34401,"Name":"Metalchem","Points":10971,"X":682,"Y":539,"Continent":"K56","Bonus":8,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405709Z"},{"ID":34403,"Name":"Wioska r 11","Points":3949,"X":556,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40571Z"},{"ID":34404,"Name":"#0292 nt","Points":7620,"X":466,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405711Z"},{"ID":34405,"Name":"Jaz","Points":6167,"X":322,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405712Z"},{"ID":34406,"Name":"*001*","Points":10211,"X":353,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405713Z"},{"ID":34407,"Name":"sony911","Points":10560,"X":621,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405714Z"},{"ID":34408,"Name":"*094*","Points":10211,"X":360,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405715Z"},{"ID":34409,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":334,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405718Z"},{"ID":34410,"Name":"*100*","Points":10211,"X":360,"Y":381,"Continent":"K33","Bonus":9,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405719Z"},{"ID":34411,"Name":"Wioska barbarzyƄska","Points":9412,"X":553,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40572Z"},{"ID":34412,"Name":"WesoƂych ƚwiąt","Points":3541,"X":638,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405721Z"},{"ID":34413,"Name":"Z|006| Foggia","Points":8720,"X":474,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405722Z"},{"ID":34414,"Name":"Helms Deep","Points":9835,"X":459,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405723Z"},{"ID":34416,"Name":"|065| Ostry","Points":10252,"X":488,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405724Z"},{"ID":34417,"Name":"#023#","Points":9761,"X":620,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405726Z"},{"ID":34418,"Name":"0601","Points":10083,"X":488,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405727Z"},{"ID":34419,"Name":"sundance","Points":10887,"X":640,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405728Z"},{"ID":34420,"Name":"Wioska barbarzyƄska","Points":5717,"X":345,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40573Z"},{"ID":34421,"Name":"niemanieba","Points":9976,"X":502,"Y":519,"Continent":"K55","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405731Z"},{"ID":34422,"Name":"Wioska BarbarzyƄska","Points":5035,"X":339,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":3990066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405731Z"},{"ID":34423,"Name":"Adidas","Points":8029,"X":418,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":9191031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405732Z"},{"ID":34424,"Name":"#0118 tomek791103","Points":8244,"X":473,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405733Z"},{"ID":34425,"Name":"182...segador M","Points":8336,"X":443,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405736Z"},{"ID":34426,"Name":"Proposal WN","Points":9835,"X":496,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405737Z"},{"ID":34427,"Name":"Wyspa_33","Points":9638,"X":506,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405738Z"},{"ID":34428,"Name":"Kuzyn BƂaĆŒej","Points":10322,"X":545,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405739Z"},{"ID":34429,"Name":"0322","Points":10252,"X":446,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40574Z"},{"ID":34430,"Name":"#017#","Points":9761,"X":630,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405741Z"},{"ID":34431,"Name":"C113","Points":9500,"X":368,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405742Z"},{"ID":34432,"Name":"Szulernia","Points":3180,"X":368,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405744Z"},{"ID":34433,"Name":"014","Points":4782,"X":320,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405745Z"},{"ID":34434,"Name":"020","Points":9993,"X":535,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405746Z"},{"ID":34435,"Name":"011 Montana","Points":7473,"X":495,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405747Z"},{"ID":34436,"Name":"A0276","Points":10495,"X":322,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405748Z"},{"ID":34438,"Name":"005 Emirates Stadium","Points":9879,"X":677,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405749Z"},{"ID":34439,"Name":"1v9 machine","Points":10019,"X":389,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40575Z"},{"ID":34440,"Name":"-004-","Points":3812,"X":347,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405751Z"},{"ID":34441,"Name":"A034","Points":10237,"X":599,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405754Z"},{"ID":34442,"Name":"#1 Imperium","Points":12154,"X":659,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405754Z"},{"ID":34443,"Name":"Wioska barbarzyƄska","Points":6310,"X":683,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405755Z"},{"ID":34444,"Name":"008 I myk pierwsza darma","Points":9861,"X":499,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405756Z"},{"ID":34445,"Name":"Dolina RzeĆșnikĂłw","Points":6906,"X":646,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405757Z"},{"ID":34446,"Name":"Taran","Points":6948,"X":338,"Y":583,"Continent":"K53","Bonus":7,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405758Z"},{"ID":34447,"Name":"Barbabasia","Points":2410,"X":343,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405759Z"},{"ID":34448,"Name":"Y | Forest Cyaaaanku","Points":10101,"X":319,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405762Z"},{"ID":34449,"Name":"#006#","Points":9761,"X":631,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405763Z"},{"ID":34450,"Name":"KRÓL PAPI WIELKI","Points":10232,"X":642,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405764Z"},{"ID":34451,"Name":"Kiedyƛ Wielki Wojownik","Points":7964,"X":592,"Y":348,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405765Z"},{"ID":34452,"Name":"B 061","Points":9831,"X":677,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405766Z"},{"ID":34453,"Name":"017 * Lady Porto *","Points":6022,"X":646,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405767Z"},{"ID":34454,"Name":"083 ƚwiąteczna Bombka","Points":9266,"X":653,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405768Z"},{"ID":34455,"Name":"Ronin","Points":10019,"X":641,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405769Z"},{"ID":34456,"Name":"Wioska barbarzyƄska","Points":4070,"X":672,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405771Z"},{"ID":34457,"Name":"=|48|=","Points":9843,"X":650,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405772Z"},{"ID":34458,"Name":"Jednak wolę gofry","Points":8380,"X":424,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405773Z"},{"ID":34459,"Name":"PoƂudnie.018","Points":9964,"X":552,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405774Z"},{"ID":34460,"Name":"-010-","Points":2352,"X":543,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698588812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405775Z"},{"ID":34462,"Name":"#4 Centrum","Points":9556,"X":661,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405777Z"},{"ID":34463,"Name":"016 Teirm","Points":10083,"X":658,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405778Z"},{"ID":34464,"Name":"Szlachcic/Taran","Points":10237,"X":642,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40578Z"},{"ID":34466,"Name":"Nowa wioska","Points":8254,"X":429,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405781Z"},{"ID":34467,"Name":"210","Points":5383,"X":423,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405782Z"},{"ID":34468,"Name":"003","Points":8189,"X":314,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405783Z"},{"ID":34469,"Name":"*116*","Points":10211,"X":361,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405784Z"},{"ID":34470,"Name":"**33**","Points":10913,"X":666,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405785Z"},{"ID":34471,"Name":"#094#","Points":9761,"X":622,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405786Z"},{"ID":34472,"Name":"[B]_[025] Dejv.oldplyr","Points":9499,"X":428,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405787Z"},{"ID":34473,"Name":"#012#","Points":9761,"X":623,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405789Z"},{"ID":34474,"Name":"psycha sitting","Points":6206,"X":409,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40579Z"},{"ID":34475,"Name":"X | Forest Cyaaaanku","Points":10000,"X":318,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405791Z"},{"ID":34476,"Name":"0008","Points":9789,"X":615,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405793Z"},{"ID":34477,"Name":"009","Points":10015,"X":345,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405793Z"},{"ID":34478,"Name":"002","Points":10222,"X":361,"Y":610,"Continent":"K63","Bonus":2,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405795Z"},{"ID":34479,"Name":"MaƂyszyn","Points":6824,"X":573,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405795Z"},{"ID":34480,"Name":"Wioska barbarzyƄska","Points":10452,"X":498,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405796Z"},{"ID":34481,"Name":"_PUSTA","Points":10063,"X":656,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405799Z"},{"ID":34482,"Name":"Romeo","Points":10152,"X":684,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4058Z"},{"ID":34483,"Name":"Nowa 45","Points":9283,"X":665,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405801Z"},{"ID":34484,"Name":"038 Mucharadza","Points":10559,"X":664,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405802Z"},{"ID":34485,"Name":"0302","Points":9950,"X":571,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405803Z"},{"ID":34486,"Name":"0579","Points":9745,"X":550,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405804Z"},{"ID":34487,"Name":"(015)Herdaz","Points":7327,"X":329,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405805Z"},{"ID":34488,"Name":"710","Points":8245,"X":675,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405808Z"},{"ID":34490,"Name":"**44**","Points":7745,"X":676,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405808Z"},{"ID":34491,"Name":"MojeSzczytToTwĂłjDno","Points":11321,"X":516,"Y":372,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405809Z"},{"ID":34492,"Name":"Grvvyq 101k$","Points":8923,"X":679,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40581Z"},{"ID":34493,"Name":"xxx","Points":9902,"X":643,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405811Z"},{"ID":34494,"Name":"*INTERTWINED*","Points":8722,"X":510,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405812Z"},{"ID":34495,"Name":"B 042","Points":6924,"X":684,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405813Z"},{"ID":34497,"Name":"Wioska barbarzyƄska","Points":6657,"X":462,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405814Z"},{"ID":34498,"Name":"0416","Points":8063,"X":546,"Y":634,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405817Z"},{"ID":34499,"Name":"Taran","Points":7600,"X":598,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405818Z"},{"ID":34500,"Name":"--Tinka","Points":10104,"X":620,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405819Z"},{"ID":34501,"Name":"sony911","Points":9991,"X":624,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40582Z"},{"ID":34502,"Name":"A031","Points":10237,"X":602,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405821Z"},{"ID":34503,"Name":"Wioska 002","Points":4227,"X":572,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699703295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405822Z"},{"ID":34504,"Name":"004","Points":7196,"X":314,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405823Z"},{"ID":34505,"Name":"FILIPOWO Aga2201199 ZƁO","Points":9976,"X":345,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405825Z"},{"ID":34506,"Name":"Sullivanum [3]","Points":11875,"X":336,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":1606425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405826Z"},{"ID":34507,"Name":"022 GypsyLand","Points":6549,"X":615,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849057572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405827Z"},{"ID":34508,"Name":"*046*","Points":10211,"X":348,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405829Z"},{"ID":34509,"Name":"Darma dla zawodnika","Points":8764,"X":524,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405829Z"},{"ID":34510,"Name":"0604","Points":10160,"X":488,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405831Z"},{"ID":34511,"Name":"Wioska barbarzyƄska","Points":6469,"X":521,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405832Z"},{"ID":34512,"Name":"- 245 - SS","Points":10000,"X":537,"Y":682,"Continent":"K65","Bonus":5,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405833Z"},{"ID":34513,"Name":"A040","Points":10217,"X":444,"Y":402,"Continent":"K44","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405835Z"},{"ID":34514,"Name":"Liniewko","Points":12154,"X":656,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405836Z"},{"ID":34515,"Name":"123","Points":10373,"X":469,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405837Z"},{"ID":34516,"Name":"KRÓL PAPI WIELKI","Points":10257,"X":647,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405838Z"},{"ID":34517,"Name":"Wioska (004)","Points":3143,"X":673,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405839Z"},{"ID":34518,"Name":"**51**","Points":7979,"X":670,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40584Z"},{"ID":34519,"Name":"Wioska barbarzyƄska","Points":10000,"X":678,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405841Z"},{"ID":34520,"Name":"Wioska barbarzyƄska","Points":8428,"X":517,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405844Z"},{"ID":34521,"Name":"Taran","Points":9965,"X":337,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405845Z"},{"ID":34522,"Name":".:019:.","Points":6292,"X":635,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405846Z"},{"ID":34523,"Name":"#0117 tomek791103","Points":10178,"X":479,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405847Z"},{"ID":34524,"Name":"048","Points":9807,"X":672,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405848Z"},{"ID":34525,"Name":"320","Points":8827,"X":674,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405849Z"},{"ID":34526,"Name":"082. Vicentia","Points":7341,"X":654,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40585Z"},{"ID":34527,"Name":"4.Lipovka","Points":7055,"X":412,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405851Z"},{"ID":34528,"Name":"Szlachcic","Points":10380,"X":383,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405853Z"},{"ID":34529,"Name":"B.15 duchy serca puszczy","Points":3256,"X":551,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405854Z"},{"ID":34531,"Name":"A 050","Points":3131,"X":368,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405855Z"},{"ID":34532,"Name":"218","Points":7375,"X":427,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405856Z"},{"ID":34533,"Name":"C0033","Points":10362,"X":321,"Y":517,"Continent":"K53","Bonus":7,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405857Z"},{"ID":34534,"Name":"psycha sitting","Points":10146,"X":422,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405858Z"},{"ID":34535,"Name":"AAA","Points":6877,"X":529,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405859Z"},{"ID":34536,"Name":"016","Points":8937,"X":670,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405861Z"},{"ID":34537,"Name":"C0266","Points":5251,"X":314,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405862Z"},{"ID":34538,"Name":"Wioska barbarzyƄska","Points":10728,"X":680,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405863Z"},{"ID":34539,"Name":"OFF","Points":8150,"X":683,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405864Z"},{"ID":34540,"Name":"Osada koczownikĂłw","Points":9963,"X":500,"Y":681,"Continent":"K65","Bonus":3,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405865Z"},{"ID":34541,"Name":"Szale","Points":9792,"X":460,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405866Z"},{"ID":34542,"Name":"C 006","Points":8602,"X":681,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405867Z"},{"ID":34543,"Name":"058 pfennig","Points":7684,"X":680,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405868Z"},{"ID":34544,"Name":"Kariko Village","Points":1906,"X":478,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405871Z"},{"ID":34545,"Name":"xddd","Points":4914,"X":468,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405872Z"},{"ID":34547,"Name":"(016)Tu Bayla","Points":9491,"X":331,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405873Z"},{"ID":34548,"Name":"New World","Points":10290,"X":433,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405874Z"},{"ID":34549,"Name":"1v9 machine","Points":10019,"X":390,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405875Z"},{"ID":34550,"Name":".///...//././././././././","Points":10061,"X":370,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405876Z"},{"ID":34551,"Name":"*INTERTWINED*","Points":7143,"X":514,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405877Z"},{"ID":34553,"Name":"PiekƂo to inni","Points":3651,"X":596,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405879Z"},{"ID":34554,"Name":"A 019","Points":6799,"X":365,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40588Z"},{"ID":34557,"Name":"Wioska 003","Points":7730,"X":680,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405881Z"},{"ID":34558,"Name":"007. QPR","Points":4352,"X":491,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405882Z"},{"ID":34559,"Name":"Ajjj","Points":6018,"X":343,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":7318415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405883Z"},{"ID":34560,"Name":"048","Points":9993,"X":540,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405884Z"},{"ID":34561,"Name":"Wioska barbarzyƄska","Points":8249,"X":373,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405886Z"},{"ID":34562,"Name":"**32**","Points":10436,"X":675,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405886Z"},{"ID":34563,"Name":"Wioska barbarzyƄska","Points":5146,"X":646,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405889Z"},{"ID":34564,"Name":"V008","Points":8357,"X":337,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":849097737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40589Z"},{"ID":34565,"Name":"New World","Points":10300,"X":437,"Y":676,"Continent":"K64","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405891Z"},{"ID":34566,"Name":"ups pomyƂka","Points":7247,"X":333,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405892Z"},{"ID":34567,"Name":"Thuzal 5","Points":12021,"X":358,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699699601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405893Z"},{"ID":34568,"Name":"ZULA","Points":4492,"X":400,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405894Z"},{"ID":34569,"Name":"Czarny 8","Points":10068,"X":603,"Y":351,"Continent":"K36","Bonus":5,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405895Z"},{"ID":34570,"Name":"New Land 29","Points":2512,"X":345,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405897Z"},{"ID":34571,"Name":"Staw","Points":6124,"X":320,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405899Z"},{"ID":34572,"Name":"KRÓL PAPI WIELKI","Points":10013,"X":640,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4059Z"},{"ID":34573,"Name":"066","Points":8652,"X":452,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405901Z"},{"ID":34574,"Name":"Szlachcic","Points":6821,"X":631,"Y":372,"Continent":"K36","Bonus":2,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405902Z"},{"ID":34575,"Name":"Wioska Goƛć098607","Points":2021,"X":326,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849098607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405903Z"},{"ID":34576,"Name":"Wioska barbarzyƄska","Points":7852,"X":568,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405904Z"},{"ID":34577,"Name":"017 arena","Points":9847,"X":678,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405905Z"},{"ID":34578,"Name":"KRÓL PAPI WIELKI","Points":10085,"X":638,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405907Z"},{"ID":34579,"Name":"AAA","Points":6722,"X":540,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405908Z"},{"ID":34580,"Name":"Wioska barbarzyƄska","Points":6107,"X":624,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405909Z"},{"ID":34581,"Name":"Ć»UBR PSYCHIATRYK 002","Points":7814,"X":611,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40591Z"},{"ID":34582,"Name":"[B][01] House of Blues","Points":10644,"X":426,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699380621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405911Z"},{"ID":34583,"Name":"Psycha Siada","Points":6828,"X":440,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405913Z"},{"ID":34584,"Name":"*257*","Points":2044,"X":355,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405914Z"},{"ID":34585,"Name":"A 022","Points":5642,"X":365,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405916Z"},{"ID":34586,"Name":"- 269 - SS","Points":7268,"X":539,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405917Z"},{"ID":34587,"Name":"Tolpyga","Points":5996,"X":324,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405918Z"},{"ID":34588,"Name":"Osada koczownikĂłw","Points":10139,"X":340,"Y":596,"Continent":"K53","Bonus":7,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405919Z"},{"ID":34589,"Name":"Komornicy 011","Points":5458,"X":350,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40592Z"},{"ID":34590,"Name":"fff","Points":10337,"X":488,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405921Z"},{"ID":34591,"Name":"Wioska barbarzyƄska,","Points":10146,"X":590,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405922Z"},{"ID":34592,"Name":"Wioska barbarzyƄska","Points":2247,"X":544,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405923Z"},{"ID":34593,"Name":"Nowa 44","Points":9177,"X":662,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405926Z"},{"ID":34594,"Name":"Na Skraju Raju","Points":7995,"X":320,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405927Z"},{"ID":34595,"Name":"*160","Points":10211,"X":342,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405928Z"},{"ID":34596,"Name":"Stanisko","Points":3223,"X":581,"Y":659,"Continent":"K65","Bonus":3,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405929Z"},{"ID":34597,"Name":"Wioska Tomko119","Points":9625,"X":387,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40593Z"},{"ID":34598,"Name":"Ob Konfederacja","Points":7149,"X":441,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405931Z"},{"ID":34599,"Name":"39k$ Grvvyq","Points":10495,"X":674,"Y":563,"Continent":"K56","Bonus":2,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405932Z"},{"ID":34600,"Name":"Ć»UBRAWKA 011","Points":10259,"X":603,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405934Z"},{"ID":34601,"Name":"Zeta Reticuli O","Points":10887,"X":420,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405935Z"},{"ID":34602,"Name":"Ronin P","Points":9995,"X":598,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405936Z"},{"ID":34603,"Name":"C0170","Points":10416,"X":327,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405937Z"},{"ID":34604,"Name":"Wioska barbarzyƄska","Points":3054,"X":336,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405938Z"},{"ID":34605,"Name":"=|18|=","Points":6271,"X":642,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405939Z"},{"ID":34606,"Name":"026 Stormveil Castle","Points":10068,"X":514,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40594Z"},{"ID":34607,"Name":"C0102","Points":10495,"X":319,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405942Z"},{"ID":34608,"Name":"Wioska pawel1980r","Points":9994,"X":387,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405944Z"},{"ID":34609,"Name":"New World","Points":10292,"X":442,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405945Z"},{"ID":34610,"Name":"Z|005| Neapol","Points":9421,"X":470,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405946Z"},{"ID":34611,"Name":"Kentin ufam Tobie","Points":10000,"X":323,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405947Z"},{"ID":34612,"Name":"New World","Points":10303,"X":436,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405948Z"},{"ID":34613,"Name":"[003] Revenge 33333","Points":10178,"X":569,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405949Z"},{"ID":34614,"Name":"036 Wioska barbarzyƄska","Points":7270,"X":672,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40595Z"},{"ID":34615,"Name":"Rakieta","Points":2902,"X":328,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":849098727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405951Z"},{"ID":34616,"Name":"Out of Touch","Points":2356,"X":327,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405954Z"},{"ID":34617,"Name":"Wioska barbarzyƄska","Points":2572,"X":575,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":7563943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405955Z"},{"ID":34618,"Name":"=|32|=","Points":7129,"X":646,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405956Z"},{"ID":34619,"Name":"RADOM","Points":5892,"X":323,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405957Z"},{"ID":34620,"Name":"0309","Points":8128,"X":570,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405958Z"},{"ID":34621,"Name":"16. Denver","Points":9362,"X":685,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405959Z"},{"ID":34622,"Name":"Wioska 7","Points":8399,"X":315,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40596Z"},{"ID":34623,"Name":"cz Agnes","Points":9851,"X":365,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405962Z"},{"ID":34624,"Name":"- 294 - SS","Points":9965,"X":544,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405963Z"},{"ID":34625,"Name":"Wioska barbarzyƄska","Points":10281,"X":559,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405964Z"},{"ID":34626,"Name":"03 BrokuƂ","Points":9113,"X":642,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405966Z"},{"ID":34627,"Name":"C0280","Points":10197,"X":321,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405967Z"},{"ID":34628,"Name":"AG18","Points":8026,"X":585,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405968Z"},{"ID":34630,"Name":"13. Roch","Points":9362,"X":682,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405969Z"},{"ID":34631,"Name":"2.Burgos","Points":4999,"X":562,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40597Z"},{"ID":34632,"Name":"Wioska KrĂłlowo ZƂota 2","Points":5883,"X":334,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405973Z"},{"ID":34633,"Name":"400","Points":10348,"X":675,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405974Z"},{"ID":34634,"Name":"Wioska kimic19","Points":2904,"X":344,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405975Z"},{"ID":34635,"Name":"Ob Konfederacja","Points":10067,"X":435,"Y":332,"Continent":"K34","Bonus":3,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405976Z"},{"ID":34636,"Name":"R 020 ~Zimowa Twierdza~","Points":9519,"X":484,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405977Z"},{"ID":34637,"Name":"B02","Points":8375,"X":476,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405978Z"},{"ID":34638,"Name":"-03-","Points":6055,"X":322,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405979Z"},{"ID":34639,"Name":"Kingdom 2","Points":10728,"X":680,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405981Z"},{"ID":34640,"Name":"C01","Points":10776,"X":678,"Y":542,"Continent":"K56","Bonus":1,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405983Z"},{"ID":34642,"Name":"*017*","Points":10211,"X":358,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405984Z"},{"ID":34643,"Name":"Wioska barbarzyƄska","Points":9943,"X":506,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405985Z"},{"ID":34644,"Name":"066.Stradi","Points":9818,"X":454,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405986Z"},{"ID":34645,"Name":"rotes idz spac misiu","Points":6567,"X":453,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405988Z"},{"ID":34646,"Name":"0605","Points":10019,"X":490,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405989Z"},{"ID":34647,"Name":"Wioska NATSONI I","Points":10014,"X":679,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40599Z"},{"ID":34648,"Name":"Wioska barbarzyƄska","Points":9086,"X":433,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405992Z"},{"ID":34649,"Name":"Szlachcic;taran","Points":10160,"X":618,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405994Z"},{"ID":34650,"Name":"Ob Konfederacja","Points":10075,"X":432,"Y":333,"Continent":"K34","Bonus":2,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405995Z"},{"ID":34651,"Name":"Wioska 6","Points":7921,"X":315,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405996Z"},{"ID":34652,"Name":"Wioska barbarzyƄska","Points":2467,"X":344,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405997Z"},{"ID":34653,"Name":"psycha sitting","Points":10146,"X":407,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.405999Z"},{"ID":34654,"Name":"Napewno to nie jest off","Points":6662,"X":585,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406Z"},{"ID":34655,"Name":"015","Points":4837,"X":357,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406002Z"},{"ID":34656,"Name":"[006] Pierdziszewo","Points":10237,"X":675,"Y":437,"Continent":"K46","Bonus":8,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406003Z"},{"ID":34657,"Name":"PoƂudnie.019","Points":9975,"X":554,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406004Z"},{"ID":34658,"Name":"- DragonI","Points":6238,"X":543,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406005Z"},{"ID":34659,"Name":"I080","Points":9271,"X":676,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406006Z"},{"ID":34660,"Name":"Muchomor *013*","Points":10094,"X":518,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406007Z"},{"ID":34661,"Name":"0155","Points":2762,"X":411,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406008Z"},{"ID":34662,"Name":"Lord Lord Franek .#142","Points":10146,"X":513,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406009Z"},{"ID":34663,"Name":"GRIGOR-2007","Points":9782,"X":623,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406012Z"},{"ID":34664,"Name":"Sony 911","Points":10849,"X":590,"Y":654,"Continent":"K65","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406014Z"},{"ID":34665,"Name":"Minas Ithil","Points":10019,"X":624,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406015Z"},{"ID":34666,"Name":"092 Nowy Rok","Points":9594,"X":656,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406016Z"},{"ID":34667,"Name":"Kielb","Points":10160,"X":325,"Y":547,"Continent":"K53","Bonus":3,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406017Z"},{"ID":34668,"Name":"K36 - [002] Before Land","Points":4719,"X":626,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406018Z"},{"ID":34669,"Name":"057","Points":10140,"X":645,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.40602Z"},{"ID":34670,"Name":"C0051","Points":10362,"X":323,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.406022Z"},{"ID":34671,"Name":"020.","Points":8017,"X":649,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466294Z"},{"ID":34672,"Name":"#044#","Points":9761,"X":635,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466295Z"},{"ID":34673,"Name":"F01","Points":6759,"X":685,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466295Z"},{"ID":34674,"Name":"Wioska barbarzyƄska","Points":10728,"X":686,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466296Z"},{"ID":34675,"Name":"Deveste ufam Tobie","Points":10009,"X":431,"Y":635,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466296Z"},{"ID":34676,"Name":"035 Wioska barbarzyƄska","Points":7262,"X":673,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466297Z"},{"ID":34677,"Name":"003 Wanda Metropolitano","Points":10728,"X":676,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466297Z"},{"ID":34678,"Name":"*046","Points":9713,"X":598,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466298Z"},{"ID":34679,"Name":"Napewno to nie jest off","Points":8856,"X":587,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466299Z"},{"ID":34680,"Name":"Wioska barbarzyƄska","Points":3258,"X":560,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466299Z"},{"ID":34681,"Name":"Komornicy 004","Points":8264,"X":349,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4663Z"},{"ID":34682,"Name":"159...lord rdw","Points":10290,"X":440,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4663Z"},{"ID":34683,"Name":"#0009 Ɓobuz kocha najbardziej","Points":10019,"X":499,"Y":556,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466301Z"},{"ID":34684,"Name":"222","Points":5836,"X":636,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466301Z"},{"ID":34685,"Name":"Ob Konfederacja +","Points":6932,"X":434,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466302Z"},{"ID":34686,"Name":"#017. Polska Gola","Points":8395,"X":451,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466303Z"},{"ID":34687,"Name":"C0151","Points":8836,"X":319,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466303Z"},{"ID":34688,"Name":"Jednak wolę gofry","Points":8407,"X":417,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466304Z"},{"ID":34689,"Name":"027Wioska barbarzyƄska","Points":8336,"X":679,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466304Z"},{"ID":34690,"Name":"xDD","Points":8601,"X":673,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849045915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466305Z"},{"ID":34691,"Name":"Jezioro","Points":9761,"X":325,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466305Z"},{"ID":34692,"Name":"O61 Cesvaine","Points":11534,"X":674,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466306Z"},{"ID":34693,"Name":"ADEN","Points":9643,"X":603,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466307Z"},{"ID":34694,"Name":"024 toni","Points":8381,"X":676,"Y":457,"Continent":"K46","Bonus":1,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466307Z"},{"ID":34695,"Name":"Wioska 12","Points":5584,"X":319,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466308Z"},{"ID":34696,"Name":"I057","Points":9802,"X":675,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466308Z"},{"ID":34697,"Name":"Lis z gƂową ƛlimaka","Points":2752,"X":361,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":849096182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466309Z"},{"ID":34699,"Name":"Szlachcic","Points":10495,"X":396,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466309Z"},{"ID":34700,"Name":"Gniezno","Points":4938,"X":553,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46631Z"},{"ID":34701,"Name":"Wioska barbarzyƄska","Points":4721,"X":570,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46631Z"},{"ID":34702,"Name":"Jednak wolę gofry","Points":7621,"X":416,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466311Z"},{"ID":34703,"Name":"Taran","Points":10728,"X":680,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466312Z"},{"ID":34704,"Name":"Zeta Reticuli O","Points":10569,"X":417,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466312Z"},{"ID":34705,"Name":"011","Points":10362,"X":348,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466313Z"},{"ID":34706,"Name":"Y | Forest Cyaaaanku","Points":9984,"X":317,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466314Z"},{"ID":34707,"Name":"12. Grzesiu","Points":9362,"X":684,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466315Z"},{"ID":34708,"Name":"003","Points":3006,"X":682,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":699829916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466315Z"},{"ID":34709,"Name":"049 zzz012","Points":10293,"X":664,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466316Z"},{"ID":34710,"Name":"A31","Points":9866,"X":462,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466317Z"},{"ID":34711,"Name":"Lord Arsey II","Points":3233,"X":341,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466318Z"},{"ID":34712,"Name":"[028] Wioska barbarzyƄska","Points":9288,"X":671,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466318Z"},{"ID":34713,"Name":"wounded knee","Points":7172,"X":638,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466319Z"},{"ID":34714,"Name":"a moĆŒe off ? :)","Points":9342,"X":637,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46632Z"},{"ID":34715,"Name":"Wioska barbarzyƄska","Points":3209,"X":581,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46632Z"},{"ID":34716,"Name":"=|50|=","Points":2621,"X":650,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466322Z"},{"ID":34717,"Name":"LAST !!!","Points":10084,"X":646,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466322Z"},{"ID":34718,"Name":"krytl17","Points":7291,"X":508,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466323Z"},{"ID":34719,"Name":"**07**","Points":11752,"X":666,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466323Z"},{"ID":34720,"Name":"006","Points":7790,"X":642,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466324Z"},{"ID":34721,"Name":"cz 10qqqqqqqqqqqqqqqqqqqqqq","Points":11489,"X":368,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466324Z"},{"ID":34722,"Name":"Szulernia","Points":3589,"X":368,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466325Z"},{"ID":34725,"Name":"019 Daevon","Points":7233,"X":477,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466326Z"},{"ID":34726,"Name":"024 Wioska","Points":2631,"X":681,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466326Z"},{"ID":34727,"Name":"???","Points":10083,"X":483,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466327Z"},{"ID":34728,"Name":"Wioska bar k04","Points":3013,"X":381,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849098423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466327Z"},{"ID":34729,"Name":"071","Points":5351,"X":542,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466328Z"},{"ID":34730,"Name":"Peryferie","Points":5432,"X":328,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466328Z"},{"ID":34731,"Name":"C0093","Points":10362,"X":319,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466329Z"},{"ID":34732,"Name":"Kentin ufam Tobie","Points":10000,"X":325,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46633Z"},{"ID":34733,"Name":"(025)Aimia","Points":6238,"X":329,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46633Z"},{"ID":34734,"Name":"0149","Points":8083,"X":408,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466331Z"},{"ID":34735,"Name":"Wioska 041","Points":9761,"X":649,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466331Z"},{"ID":34736,"Name":"Wioska Bochun10","Points":10311,"X":319,"Y":495,"Continent":"K43","Bonus":6,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466332Z"},{"ID":34738,"Name":"AGA3","Points":9673,"X":685,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466332Z"},{"ID":34739,"Name":"Muchomor *018*","Points":10297,"X":518,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466333Z"},{"ID":34740,"Name":"Wioska barbarzyƄska","Points":6508,"X":332,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466333Z"},{"ID":34741,"Name":"Szlachcic/Taran","Points":9765,"X":634,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466334Z"},{"ID":34742,"Name":"*INTERTWINED*","Points":9711,"X":502,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466334Z"},{"ID":34743,"Name":"[011] Bąkolice","Points":10187,"X":668,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466335Z"},{"ID":34744,"Name":"Out of Touch","Points":9757,"X":325,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466336Z"},{"ID":34745,"Name":"062 komornicy","Points":9745,"X":324,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466336Z"},{"ID":34746,"Name":"#Sewa#003","Points":10143,"X":671,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466337Z"},{"ID":34747,"Name":"A.13 spóƂdzielnia gryzoni","Points":8239,"X":564,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466337Z"},{"ID":34748,"Name":"Gattacka","Points":9811,"X":679,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466338Z"},{"ID":34749,"Name":"012 MasRolSplawie","Points":10316,"X":678,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466339Z"},{"ID":34750,"Name":"CzosnkĂłw","Points":7575,"X":358,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466339Z"},{"ID":34751,"Name":"**05**","Points":11877,"X":671,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46634Z"},{"ID":34753,"Name":"*038*","Points":10211,"X":348,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46634Z"},{"ID":34754,"Name":"0150","Points":7923,"X":407,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466341Z"},{"ID":34755,"Name":"Wioska 10","Points":6875,"X":316,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466341Z"},{"ID":34756,"Name":"[005] Tato, tato, kupa!","Points":10237,"X":675,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466342Z"},{"ID":34757,"Name":"New World","Points":10292,"X":432,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466342Z"},{"ID":34758,"Name":"Taran","Points":9976,"X":336,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466343Z"},{"ID":34759,"Name":"Napewno to nie jest off","Points":6679,"X":587,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466343Z"},{"ID":34760,"Name":"Wioska dzikich ĆŒuli","Points":9202,"X":577,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466344Z"},{"ID":34761,"Name":"Klaudek18","Points":5205,"X":631,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466345Z"},{"ID":34762,"Name":"*065*","Points":10211,"X":356,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466345Z"},{"ID":34763,"Name":"Zeta Reticuli O","Points":10477,"X":416,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466346Z"},{"ID":34764,"Name":"IluMinatii","Points":6253,"X":593,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":8963720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466346Z"},{"ID":34765,"Name":"psycha sitting","Points":6140,"X":409,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466347Z"},{"ID":34766,"Name":"_PUSTA","Points":10229,"X":658,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466347Z"},{"ID":34767,"Name":"C0256","Points":7723,"X":315,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466348Z"},{"ID":34768,"Name":"Chances Are","Points":7857,"X":644,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466348Z"},{"ID":34769,"Name":"_PUSTA+","Points":9889,"X":672,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466349Z"},{"ID":34770,"Name":"1v9 machine","Points":10019,"X":388,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46635Z"},{"ID":34771,"Name":"C0265","Points":6740,"X":317,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46635Z"},{"ID":34772,"Name":"SOKzGUMIjagĂłd","Points":8267,"X":635,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466351Z"},{"ID":34773,"Name":"231","Points":3704,"X":413,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466351Z"},{"ID":34774,"Name":"Wioska barbarzyƄska","Points":9978,"X":648,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466352Z"},{"ID":34775,"Name":"No.18","Points":7192,"X":479,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466352Z"},{"ID":34776,"Name":"C 007","Points":8010,"X":688,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466353Z"},{"ID":34777,"Name":"Polesie","Points":4060,"X":685,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849100246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466354Z"},{"ID":34778,"Name":"Wioska barbarzyƄska","Points":7683,"X":623,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466354Z"},{"ID":34779,"Name":"0602","Points":10019,"X":487,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466355Z"},{"ID":34780,"Name":"~~091~~","Points":9382,"X":634,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466355Z"},{"ID":34781,"Name":"AAA","Points":9383,"X":533,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466356Z"},{"ID":34782,"Name":"1.Primorsk","Points":9476,"X":415,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466356Z"},{"ID":34783,"Name":"0580","Points":9747,"X":552,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466357Z"},{"ID":34784,"Name":"Wioska barbarzyƄska","Points":5278,"X":450,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466357Z"},{"ID":34785,"Name":"K36 - [003] Before Land","Points":3817,"X":628,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466358Z"},{"ID":34786,"Name":"Wioska barbarzyƄska","Points":1967,"X":405,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466358Z"},{"ID":34787,"Name":"-17-","Points":5472,"X":629,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466359Z"},{"ID":34788,"Name":"084 One","Points":8324,"X":332,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46636Z"},{"ID":34789,"Name":"179...Segadorr M","Points":6930,"X":439,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46636Z"},{"ID":34790,"Name":"Ob Konfederacja","Points":5831,"X":437,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466361Z"},{"ID":34791,"Name":"Out of Touch","Points":8294,"X":328,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466361Z"},{"ID":34792,"Name":"Ave Why!","Points":9476,"X":450,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466362Z"},{"ID":34793,"Name":"A010","Points":10237,"X":602,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466362Z"},{"ID":34794,"Name":"=|40|=","Points":3638,"X":643,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466363Z"},{"ID":34795,"Name":"*5612* UkƂad przestrzenny","Points":10287,"X":669,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466364Z"},{"ID":34796,"Name":"103","Points":8182,"X":596,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466364Z"},{"ID":34797,"Name":"psycha sitting","Points":5738,"X":401,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466365Z"},{"ID":34798,"Name":"A005","Points":10237,"X":604,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466365Z"},{"ID":34799,"Name":"fff","Points":9690,"X":492,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466366Z"},{"ID":34800,"Name":"cz K10 5","Points":7229,"X":363,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466366Z"},{"ID":34801,"Name":"AAA","Points":6480,"X":548,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466367Z"},{"ID":34802,"Name":"C0145","Points":10362,"X":323,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466367Z"},{"ID":34803,"Name":"C0029","Points":10362,"X":320,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466368Z"},{"ID":34804,"Name":"0120","Points":7983,"X":392,"Y":647,"Continent":"K63","Bonus":7,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466369Z"},{"ID":34805,"Name":"A063","Points":10223,"X":604,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466369Z"},{"ID":34806,"Name":"098. Sar Soa","Points":9419,"X":668,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46637Z"},{"ID":34807,"Name":"**47**","Points":5111,"X":669,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46637Z"},{"ID":34808,"Name":"AG19","Points":5581,"X":584,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466371Z"},{"ID":34809,"Name":"D20","Points":3194,"X":676,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466371Z"},{"ID":34810,"Name":".:005:.","Points":11441,"X":353,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466372Z"},{"ID":34812,"Name":"armata","Points":3205,"X":333,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":849098727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466373Z"},{"ID":34813,"Name":"Wioska barbarzyƄska","Points":6333,"X":331,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466373Z"},{"ID":34814,"Name":"Wioska barbarzyƄska","Points":10728,"X":682,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466374Z"},{"ID":34815,"Name":"Wioska barbarzyƄska","Points":10239,"X":501,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466374Z"},{"ID":34816,"Name":"a moĆŒe off ? :)","Points":9354,"X":632,"Y":625,"Continent":"K66","Bonus":7,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466375Z"},{"ID":34817,"Name":"101","Points":9807,"X":593,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466376Z"},{"ID":34818,"Name":"015.","Points":7430,"X":625,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466376Z"},{"ID":34819,"Name":"=|34|=","Points":5698,"X":645,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466377Z"},{"ID":34820,"Name":"Vanaheim VI","Points":2469,"X":591,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466377Z"},{"ID":34821,"Name":"AG12","Points":9747,"X":590,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466378Z"},{"ID":34822,"Name":"KRÓL PAPI WIELKI","Points":10232,"X":639,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466378Z"},{"ID":34823,"Name":"Wioska barbarzyƄska","Points":4517,"X":324,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466379Z"},{"ID":34824,"Name":"New Land 25","Points":2375,"X":339,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466379Z"},{"ID":34825,"Name":"Lord Lord Franek .#150","Points":7408,"X":509,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46638Z"},{"ID":34826,"Name":"A009","Points":10237,"X":608,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46638Z"},{"ID":34827,"Name":"xxx","Points":10104,"X":643,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466381Z"},{"ID":34828,"Name":"#047#","Points":9761,"X":634,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466381Z"},{"ID":34829,"Name":"005","Points":6835,"X":314,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466382Z"},{"ID":34830,"Name":"215","Points":8767,"X":448,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466383Z"},{"ID":34831,"Name":"0277","Points":8636,"X":559,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466383Z"},{"ID":34832,"Name":"023 toni","Points":8575,"X":678,"Y":461,"Continent":"K46","Bonus":7,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466384Z"},{"ID":34833,"Name":"[037] Wioska barbarzyƄska","Points":9288,"X":676,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466384Z"},{"ID":34834,"Name":".:016:.","Points":8653,"X":352,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466385Z"},{"ID":34835,"Name":"C22","Points":4009,"X":680,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466385Z"},{"ID":34836,"Name":"156...hubertw25","Points":10130,"X":438,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466386Z"},{"ID":34837,"Name":"**04**","Points":12000,"X":674,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466387Z"},{"ID":34838,"Name":"Upa01","Points":5150,"X":328,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466387Z"},{"ID":34839,"Name":"Auu","Points":9712,"X":581,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466388Z"},{"ID":34840,"Name":"Wioska barbarzyƄska","Points":9899,"X":427,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466388Z"},{"ID":34842,"Name":"N. C. Con air","Points":5527,"X":664,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466389Z"},{"ID":34843,"Name":"#0202 Segadorr dar","Points":10178,"X":464,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46639Z"},{"ID":34844,"Name":"Wioska barbarzyƄska","Points":10223,"X":558,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466391Z"},{"ID":34845,"Name":"psycha sitting","Points":8765,"X":422,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466392Z"},{"ID":34847,"Name":"Wioska barbarzyƄska ,","Points":10418,"X":587,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466392Z"},{"ID":34848,"Name":"030 - Santander","Points":9179,"X":683,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466393Z"},{"ID":34849,"Name":"Kazimierz Dolny","Points":9073,"X":322,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466394Z"},{"ID":34850,"Name":"[008]","Points":10036,"X":472,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466395Z"},{"ID":34851,"Name":"Grvvyq 105k$","Points":10401,"X":681,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466395Z"},{"ID":34852,"Name":"Wioska barbarzyƄska","Points":10694,"X":554,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466396Z"},{"ID":34853,"Name":"O52 Grindavik","Points":8236,"X":677,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466397Z"},{"ID":34854,"Name":"~~079~~","Points":8619,"X":614,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466397Z"},{"ID":34855,"Name":"*029*","Points":9880,"X":349,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466398Z"},{"ID":34856,"Name":"Wioska barbarzyƄska","Points":7525,"X":423,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466398Z"},{"ID":34857,"Name":"Wioska barbarzyƄska","Points":6696,"X":332,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466399Z"},{"ID":34858,"Name":"KocpoƂuch 2","Points":6754,"X":334,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":848949597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4664Z"},{"ID":34859,"Name":"Wioska barbarzyƄska","Points":8803,"X":401,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699516268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4664Z"},{"ID":34861,"Name":"084 Nowy Rok","Points":7238,"X":655,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466401Z"},{"ID":34862,"Name":"Out of Touch","Points":9744,"X":328,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466401Z"},{"ID":34863,"Name":"*006*","Points":10211,"X":358,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466402Z"},{"ID":34864,"Name":"Jan WILCZY SZANIEC II K","Points":9494,"X":678,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466403Z"},{"ID":34865,"Name":"Wioska barbarzyƄska","Points":4355,"X":325,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466403Z"},{"ID":34866,"Name":"Zeta Reticuli O","Points":10636,"X":419,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466404Z"},{"ID":34867,"Name":"Wioska barbarzyƄska","Points":4210,"X":653,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466404Z"},{"ID":34868,"Name":"AAA","Points":11231,"X":547,"Y":322,"Continent":"K35","Bonus":6,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466405Z"},{"ID":34869,"Name":"0603","Points":10083,"X":484,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466405Z"},{"ID":34870,"Name":"004 Crypto Arena","Points":11348,"X":672,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466406Z"},{"ID":34871,"Name":"Wioska barbarz","Points":7681,"X":499,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466406Z"},{"ID":34872,"Name":"Wioska barbarzyƄska","Points":4347,"X":354,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466407Z"},{"ID":34873,"Name":"*036*","Points":10211,"X":347,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466407Z"},{"ID":34874,"Name":"005a Wy mnie chcecie wykoƄczyć!","Points":11558,"X":378,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466408Z"},{"ID":34875,"Name":"064 | PALESTINA","Points":3733,"X":658,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466409Z"},{"ID":34876,"Name":"#056#","Points":9761,"X":633,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466409Z"},{"ID":34877,"Name":"Wonderwall","Points":9503,"X":326,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46641Z"},{"ID":34878,"Name":"A 068","Points":9566,"X":369,"Y":627,"Continent":"K63","Bonus":3,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46641Z"},{"ID":34879,"Name":"R 008 ~Zyra~","Points":9854,"X":483,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466411Z"},{"ID":34880,"Name":"GrodkĂłw","Points":10636,"X":676,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466411Z"},{"ID":34881,"Name":"Taran 002","Points":10971,"X":607,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":2600387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466412Z"},{"ID":34882,"Name":"#Charmy","Points":10001,"X":431,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466412Z"},{"ID":34883,"Name":"0261","Points":10019,"X":551,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466413Z"},{"ID":34884,"Name":"psycha sitting","Points":10025,"X":412,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466413Z"},{"ID":34885,"Name":"005","Points":6221,"X":318,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466414Z"},{"ID":34886,"Name":"A012","Points":10237,"X":602,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466415Z"},{"ID":34887,"Name":"*5612*aaa Omaticaya","Points":10287,"X":666,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466415Z"},{"ID":34888,"Name":"IdA","Points":3324,"X":428,"Y":554,"Continent":"K54","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466416Z"},{"ID":34889,"Name":"AAA","Points":9222,"X":535,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466416Z"},{"ID":34890,"Name":"Wioska barbarzyƄska","Points":8868,"X":577,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466417Z"},{"ID":34891,"Name":"Wioska barbarzyƄska","Points":8278,"X":449,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466417Z"},{"ID":34892,"Name":"**03**","Points":11862,"X":673,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466418Z"},{"ID":34893,"Name":"Wioska RyBssoN","Points":9761,"X":656,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466418Z"},{"ID":34894,"Name":"Out of Touch","Points":9505,"X":321,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466419Z"},{"ID":34895,"Name":"Out of Touch","Points":3368,"X":324,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46642Z"},{"ID":34896,"Name":"WJEĆ»DĆ»AM I ROZJEĆ»DĆ»AM","Points":10160,"X":613,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46642Z"},{"ID":34897,"Name":"073 donkretos5","Points":6718,"X":684,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466421Z"},{"ID":34899,"Name":"PoƂudnie.013","Points":9963,"X":552,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466421Z"},{"ID":34900,"Name":"A030","Points":9294,"X":599,"Y":659,"Continent":"K65","Bonus":2,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466422Z"},{"ID":34901,"Name":"9.Prison","Points":3953,"X":413,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466423Z"},{"ID":34902,"Name":"Wioska barbarzyƄska","Points":694,"X":318,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699780873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466423Z"},{"ID":34904,"Name":"Bizy 3","Points":3188,"X":496,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466424Z"},{"ID":34905,"Name":"Y | Forest Cyaaaanku","Points":9000,"X":320,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466424Z"},{"ID":34906,"Name":"monetki C","Points":9652,"X":637,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466425Z"},{"ID":34907,"Name":"Wioska barbarzyƄska","Points":7781,"X":334,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466425Z"},{"ID":34908,"Name":"I079","Points":9654,"X":678,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466426Z"},{"ID":34909,"Name":"#0177 yasoke19","Points":10178,"X":487,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466427Z"},{"ID":34910,"Name":"Wioska r 7","Points":6329,"X":560,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466427Z"},{"ID":34911,"Name":"C0022","Points":10362,"X":314,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466428Z"},{"ID":34912,"Name":"002.","Points":10654,"X":632,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466428Z"},{"ID":34913,"Name":"D.022","Points":8280,"X":392,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466429Z"},{"ID":34914,"Name":"09 Szpica PóƂnocna","Points":9922,"X":564,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46643Z"},{"ID":34915,"Name":"Sandvig","Points":9491,"X":336,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46643Z"},{"ID":34916,"Name":"*115*","Points":10028,"X":360,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466431Z"},{"ID":34917,"Name":"Out of Touch","Points":9744,"X":328,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466432Z"},{"ID":34918,"Name":"**02**","Points":11317,"X":672,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466432Z"},{"ID":34919,"Name":"Wioska barbarzyƄska","Points":9638,"X":428,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466433Z"},{"ID":34921,"Name":"Out of Touch","Points":5909,"X":329,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466433Z"},{"ID":34922,"Name":"X | Forest Cyaaaanku","Points":10049,"X":323,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466434Z"},{"ID":34923,"Name":"BIRMA","Points":4691,"X":402,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466434Z"},{"ID":34924,"Name":"Napewno to nie jest off","Points":6242,"X":586,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466435Z"},{"ID":34925,"Name":"*5612*c Jak to moĆŒliwe","Points":10287,"X":666,"Y":578,"Continent":"K56","Bonus":1,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466436Z"},{"ID":34926,"Name":"Out of Touch","Points":6167,"X":323,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466436Z"},{"ID":34927,"Name":"Szlachcic","Points":10957,"X":390,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466437Z"},{"ID":34928,"Name":"Dream on","Points":9544,"X":311,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466437Z"},{"ID":34929,"Name":"020. Taka teĆŒ nie","Points":9888,"X":686,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466438Z"},{"ID":34930,"Name":"--04--","Points":9741,"X":343,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466439Z"},{"ID":34931,"Name":"0418","Points":10019,"X":561,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466439Z"},{"ID":34932,"Name":"002","Points":4541,"X":323,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46644Z"},{"ID":34933,"Name":"#082#","Points":9520,"X":631,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466441Z"},{"ID":34934,"Name":"=|13|=","Points":6042,"X":642,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466441Z"},{"ID":34935,"Name":"C0168","Points":10362,"X":321,"Y":532,"Continent":"K53","Bonus":3,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466442Z"},{"ID":34936,"Name":"z Wioska barbarzyƄska 11","Points":8037,"X":356,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466442Z"},{"ID":34937,"Name":"014","Points":8764,"X":604,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466443Z"},{"ID":34938,"Name":"ƚcisƂo go i poszedƂ","Points":6217,"X":344,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466443Z"},{"ID":34939,"Name":"A032","Points":10221,"X":600,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466444Z"},{"ID":34940,"Name":"Wioska barbarzyƄska","Points":5042,"X":321,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466445Z"},{"ID":34941,"Name":"Wioska barbarzyƄska","Points":10139,"X":341,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466446Z"},{"ID":34942,"Name":"=|03|=","Points":10495,"X":647,"Y":391,"Continent":"K36","Bonus":9,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466446Z"},{"ID":34943,"Name":"Sullivanum [1]","Points":10362,"X":337,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466447Z"},{"ID":34944,"Name":"Pomidorowy dzem","Points":9193,"X":680,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466448Z"},{"ID":34945,"Name":"#0140 Kamil0ss1","Points":7973,"X":481,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466448Z"},{"ID":34946,"Name":"#062#","Points":9761,"X":623,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466449Z"},{"ID":34947,"Name":"001","Points":10252,"X":340,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46645Z"},{"ID":34948,"Name":"AAA","Points":9614,"X":532,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46645Z"},{"ID":34949,"Name":"C0181","Points":9020,"X":318,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466451Z"},{"ID":34950,"Name":"Kraszew","Points":10231,"X":341,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466451Z"},{"ID":34951,"Name":"005 Zacznij od Nowa !!!","Points":10211,"X":579,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466452Z"},{"ID":34952,"Name":"#059#","Points":9761,"X":631,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466452Z"},{"ID":34953,"Name":"0398","Points":10083,"X":558,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466453Z"},{"ID":34954,"Name":"a moĆŒe off ? :)","Points":9349,"X":639,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466454Z"},{"ID":34955,"Name":"Out of Touch","Points":9763,"X":329,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466454Z"},{"ID":34956,"Name":"Wioska barbarzyƄska","Points":2364,"X":335,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466455Z"},{"ID":34957,"Name":"Wioska Stickman.","Points":9621,"X":597,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466455Z"},{"ID":34958,"Name":"$LeBron","Points":5547,"X":684,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466456Z"},{"ID":34959,"Name":"OFF","Points":9985,"X":677,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466457Z"},{"ID":34960,"Name":"New World","Points":10213,"X":435,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466457Z"},{"ID":34961,"Name":"Vvv","Points":9720,"X":589,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466458Z"},{"ID":34962,"Name":"psycha sitting","Points":9387,"X":422,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466459Z"},{"ID":34963,"Name":"*INTERTWINED*","Points":9711,"X":501,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46646Z"},{"ID":34965,"Name":"Dalsza","Points":5599,"X":463,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46646Z"},{"ID":34966,"Name":"A036","Points":10247,"X":598,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466461Z"},{"ID":34967,"Name":"Didek","Points":12154,"X":659,"Y":584,"Continent":"K56","Bonus":2,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466462Z"},{"ID":34968,"Name":"No.25","Points":1161,"X":470,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466463Z"},{"ID":34969,"Name":"*112*","Points":9293,"X":357,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466464Z"},{"ID":34970,"Name":"Ave Why!","Points":9345,"X":455,"Y":682,"Continent":"K64","Bonus":2,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466465Z"},{"ID":34971,"Name":"C0077","Points":10362,"X":319,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466466Z"},{"ID":34972,"Name":"Wioska barbarzyƄska","Points":10212,"X":339,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466467Z"},{"ID":34973,"Name":"Wioska Raguel888","Points":8151,"X":372,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":699753640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466468Z"},{"ID":34974,"Name":"[015] Bobkowo","Points":9312,"X":673,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466469Z"},{"ID":34976,"Name":"160 Nocny Jastrząb 005","Points":7717,"X":655,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466469Z"},{"ID":34977,"Name":"0047 K55 and987 OZDR","Points":9989,"X":503,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46647Z"},{"ID":34978,"Name":"023 Fen Aspra","Points":8744,"X":479,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466471Z"},{"ID":34979,"Name":"027","Points":9993,"X":534,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466472Z"},{"ID":34980,"Name":"Wawa ;D","Points":4874,"X":324,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466474Z"},{"ID":34981,"Name":"Szlachcic","Points":8875,"X":386,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466474Z"},{"ID":34982,"Name":"Wioska barbarzyƄska","Points":10419,"X":681,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466475Z"},{"ID":34983,"Name":"**26**","Points":10615,"X":674,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466475Z"},{"ID":34984,"Name":"203","Points":8840,"X":424,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466476Z"},{"ID":34985,"Name":"C0073","Points":10362,"X":320,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466476Z"},{"ID":34986,"Name":"Dum Spiro Spero","Points":9981,"X":492,"Y":555,"Continent":"K54","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466477Z"},{"ID":34987,"Name":"Parole","Points":3150,"X":339,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466478Z"},{"ID":34989,"Name":"028Wioska barbarzyƄska","Points":6895,"X":674,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466478Z"},{"ID":34990,"Name":"#038","Points":10393,"X":476,"Y":614,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466479Z"},{"ID":34991,"Name":"Hiszpan5","Points":10047,"X":672,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46648Z"},{"ID":34992,"Name":"wysypisko ƛmieci","Points":5241,"X":324,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46648Z"},{"ID":34994,"Name":"Muchomor *005*","Points":10300,"X":512,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466481Z"},{"ID":34995,"Name":"Zbytkowo-Hubix","Points":10019,"X":663,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466481Z"},{"ID":34996,"Name":"OSADA","Points":9718,"X":575,"Y":666,"Continent":"K65","Bonus":7,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466482Z"},{"ID":34997,"Name":"-20-","Points":3144,"X":632,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466483Z"},{"ID":34998,"Name":"Nowa 42","Points":9806,"X":661,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466483Z"},{"ID":34999,"Name":"0443","Points":7856,"X":554,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466484Z"},{"ID":35000,"Name":"New Land 09","Points":3399,"X":358,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466485Z"},{"ID":35001,"Name":"2.Fuenlabrada","Points":5786,"X":564,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466485Z"},{"ID":35002,"Name":"A0275","Points":10387,"X":321,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466486Z"},{"ID":35003,"Name":"1kornik83","Points":11018,"X":666,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466486Z"},{"ID":35004,"Name":"zakręcona","Points":9203,"X":574,"Y":606,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466487Z"},{"ID":35005,"Name":"Y | Forest Cyaaaanku","Points":8656,"X":321,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466488Z"},{"ID":35006,"Name":"Wioska Gum23","Points":3982,"X":402,"Y":349,"Continent":"K34","Bonus":0,"PlayerID":849067216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466488Z"},{"ID":35007,"Name":"099...tomecz","Points":9995,"X":480,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466489Z"},{"ID":35008,"Name":"#021. Sieeee Rrrrozkręcam","Points":5505,"X":455,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46649Z"},{"ID":35009,"Name":"0161","Points":3316,"X":405,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46649Z"},{"ID":35010,"Name":"Wioska barbarzyƄska","Points":9185,"X":421,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466491Z"},{"ID":35011,"Name":"0014 Cytadela","Points":9675,"X":332,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466492Z"},{"ID":35012,"Name":"Didek","Points":10252,"X":671,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466492Z"},{"ID":35013,"Name":"0019 K55 and987 OZDR.","Points":9861,"X":505,"Y":555,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466493Z"},{"ID":35014,"Name":"0494","Points":8559,"X":573,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466494Z"},{"ID":35015,"Name":"066","Points":9544,"X":537,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466495Z"},{"ID":35016,"Name":"*5616* Odwaga","Points":10287,"X":675,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466496Z"},{"ID":35018,"Name":"C0064","Points":10362,"X":322,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466498Z"},{"ID":35019,"Name":"(001)Urithiru","Points":8314,"X":330,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466498Z"},{"ID":35020,"Name":"Wioska NOWA OBRONNA","Points":4089,"X":590,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466499Z"},{"ID":35021,"Name":"ABE","Points":2775,"X":659,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4665Z"},{"ID":35022,"Name":"#005. Dreadford","Points":9667,"X":452,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4665Z"},{"ID":35023,"Name":"Wioska barbarzyƄska","Points":9426,"X":647,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466501Z"},{"ID":35024,"Name":"020 Tak blisko","Points":5731,"X":365,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466502Z"},{"ID":35025,"Name":"Wioska barbarzyƄska","Points":3949,"X":384,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466503Z"},{"ID":35026,"Name":"#036#","Points":9761,"X":629,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466504Z"},{"ID":35027,"Name":"*171*","Points":10211,"X":340,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466504Z"},{"ID":35028,"Name":"SƂuĆŒewiec2","Points":8087,"X":374,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466505Z"},{"ID":35029,"Name":"cz Polska","Points":4372,"X":365,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466506Z"},{"ID":35030,"Name":"#061#","Points":9493,"X":636,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466507Z"},{"ID":35031,"Name":"000 Plutosea","Points":11911,"X":324,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466508Z"},{"ID":35032,"Name":"Manieczki","Points":4848,"X":354,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466508Z"},{"ID":35033,"Name":"Wioska","Points":8165,"X":330,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466509Z"},{"ID":35034,"Name":"Out of Touch","Points":6005,"X":326,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46651Z"},{"ID":35035,"Name":"[034]","Points":8424,"X":664,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46651Z"},{"ID":35036,"Name":"033 Surowy","Points":5274,"X":681,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466511Z"},{"ID":35037,"Name":"Wioska barbarzyƄska","Points":9054,"X":668,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466512Z"},{"ID":35038,"Name":"PaƄstfa PuƂnocy","Points":9756,"X":582,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466512Z"},{"ID":35039,"Name":"**40**","Points":10066,"X":674,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466513Z"},{"ID":35040,"Name":"Tripoli","Points":9648,"X":424,"Y":664,"Continent":"K64","Bonus":1,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466514Z"},{"ID":35041,"Name":"Taran","Points":10728,"X":683,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466515Z"},{"ID":35042,"Name":"OFF","Points":9704,"X":677,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466515Z"},{"ID":35043,"Name":"Ave Why!","Points":9632,"X":447,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466516Z"},{"ID":35045,"Name":"AAA","Points":6992,"X":538,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466517Z"},{"ID":35046,"Name":"#048#","Points":9761,"X":631,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466518Z"},{"ID":35047,"Name":"C0108","Points":9732,"X":316,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466518Z"},{"ID":35048,"Name":"J#004","Points":9797,"X":574,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466519Z"},{"ID":35049,"Name":"Wioska 14","Points":4321,"X":316,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46652Z"},{"ID":35050,"Name":"Wioska barbarzyƄska","Points":10728,"X":679,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466521Z"},{"ID":35051,"Name":"C0032","Points":10362,"X":321,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466521Z"},{"ID":35052,"Name":"J#013","Points":5421,"X":574,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466522Z"},{"ID":35053,"Name":"009","Points":2623,"X":320,"Y":476,"Continent":"K43","Bonus":2,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466523Z"},{"ID":35054,"Name":"K65","Points":8820,"X":561,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466524Z"},{"ID":35055,"Name":"###2","Points":5447,"X":490,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466524Z"},{"ID":35056,"Name":"psycha sitting","Points":10178,"X":407,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466526Z"},{"ID":35057,"Name":"003","Points":6607,"X":317,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466527Z"},{"ID":35058,"Name":"KIELBA 131","Points":10218,"X":453,"Y":568,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466528Z"},{"ID":35059,"Name":"$Lakers","Points":8258,"X":685,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466528Z"},{"ID":35060,"Name":"C0020","Points":10362,"X":317,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466529Z"},{"ID":35061,"Name":"0159","Points":3820,"X":405,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46653Z"},{"ID":35062,"Name":"K36 - [001] Before Land","Points":5013,"X":626,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46653Z"},{"ID":35063,"Name":"C117","Points":6323,"X":370,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466531Z"},{"ID":35064,"Name":"Wioska barbarzyƄska","Points":4865,"X":354,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466532Z"},{"ID":35065,"Name":"067","Points":9892,"X":450,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466532Z"},{"ID":35066,"Name":"0301","Points":9761,"X":572,"Y":666,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466533Z"},{"ID":35067,"Name":"Wioska barbarzyƄska","Points":6792,"X":521,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466534Z"},{"ID":35068,"Name":"056 | PALESTINA","Points":5640,"X":662,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466535Z"},{"ID":35069,"Name":"061","Points":6812,"X":683,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466535Z"},{"ID":35070,"Name":"Lord Lord Franek .#141","Points":10300,"X":514,"Y":319,"Continent":"K35","Bonus":2,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466536Z"},{"ID":35071,"Name":"A-044-Heffitto","Points":10460,"X":402,"Y":348,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466537Z"},{"ID":35072,"Name":"0163","Points":4195,"X":402,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466537Z"},{"ID":35073,"Name":"001 Arnhem","Points":11742,"X":607,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466538Z"},{"ID":35074,"Name":"*043*","Points":10211,"X":351,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466539Z"},{"ID":35075,"Name":"Ć»UBRAWKA 056","Points":9838,"X":613,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46654Z"},{"ID":35076,"Name":".achim.","Points":9366,"X":483,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46654Z"},{"ID":35077,"Name":"Elfheim X","Points":5385,"X":598,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466541Z"},{"ID":35078,"Name":"Wioska dzikich narkomanĂłw","Points":6578,"X":576,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466542Z"},{"ID":35079,"Name":"*INTERTWINED*","Points":9711,"X":502,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466543Z"},{"ID":35080,"Name":"26k$ Grvvyq","Points":10495,"X":666,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466544Z"},{"ID":35081,"Name":"Pomidorowy dzem","Points":10728,"X":683,"Y":514,"Continent":"K56","Bonus":2,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466545Z"},{"ID":35082,"Name":"BRZEG JORDANU | 001","Points":9346,"X":687,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466545Z"},{"ID":35083,"Name":"I098","Points":7894,"X":682,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466546Z"},{"ID":35085,"Name":"*265*","Points":2666,"X":334,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466547Z"},{"ID":35086,"Name":"C001 Liskowa","Points":6820,"X":596,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466547Z"},{"ID":35087,"Name":"Wioska Natka1968_03","Points":3136,"X":523,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466548Z"},{"ID":35088,"Name":"psycha sitting","Points":10311,"X":421,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466549Z"},{"ID":35089,"Name":"Wioska barbarzyƄska","Points":9699,"X":651,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466549Z"},{"ID":35090,"Name":"UltraInstynkt+","Points":9737,"X":591,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46655Z"},{"ID":35091,"Name":"003 Kalabala","Points":7445,"X":593,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":699576407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466551Z"},{"ID":35092,"Name":"Ave Why!","Points":5958,"X":450,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466552Z"},{"ID":35093,"Name":"Komornicy 010","Points":9462,"X":351,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466552Z"},{"ID":35094,"Name":"AG10","Points":8526,"X":587,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466553Z"},{"ID":35095,"Name":"#022#","Points":9761,"X":621,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466554Z"},{"ID":35096,"Name":"I094","Points":8180,"X":674,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466554Z"},{"ID":35098,"Name":"C0159","Points":8972,"X":317,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466555Z"},{"ID":35099,"Name":"B 043","Points":6983,"X":674,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466556Z"},{"ID":35100,"Name":"Winterhome.041","Points":10178,"X":495,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466557Z"},{"ID":35101,"Name":"Pobozowisko","Points":10955,"X":395,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466558Z"},{"ID":35102,"Name":"N.C. Bez twarzy","Points":7167,"X":665,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466559Z"},{"ID":35103,"Name":"Wioska barbarzyƄska","Points":7308,"X":651,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46656Z"},{"ID":35104,"Name":"Ave Why!","Points":9848,"X":462,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46656Z"},{"ID":35105,"Name":"R 023","Points":8899,"X":485,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466561Z"},{"ID":35106,"Name":"Wioska barbarzyƄska","Points":9499,"X":685,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466562Z"},{"ID":35107,"Name":"0310","Points":9162,"X":559,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466562Z"},{"ID":35108,"Name":"Wioska barbarzyƄska","Points":9664,"X":669,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466563Z"},{"ID":35109,"Name":"Wioska barbarzyƄska","Points":5007,"X":652,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466564Z"},{"ID":35110,"Name":"Nowa Nadzieja 8","Points":6466,"X":493,"Y":598,"Continent":"K54","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466565Z"},{"ID":35111,"Name":"011 Kalal","Points":4813,"X":588,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699576407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466566Z"},{"ID":35112,"Name":"Wasza nowa ulubiona sąsiadka","Points":8224,"X":628,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466566Z"},{"ID":35113,"Name":"(024)Liafor","Points":8566,"X":331,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466567Z"},{"ID":35114,"Name":"#087#","Points":8903,"X":633,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466568Z"},{"ID":35115,"Name":"Wioska Sir Zordon 005","Points":5364,"X":663,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466569Z"},{"ID":35116,"Name":"043","Points":7112,"X":594,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46657Z"},{"ID":35117,"Name":"psycha sitting","Points":9948,"X":421,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46657Z"},{"ID":35118,"Name":"A 083","Points":6814,"X":369,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466571Z"},{"ID":35119,"Name":"Nowa 48","Points":7650,"X":665,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466572Z"},{"ID":35120,"Name":"C0016","Points":10362,"X":314,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466572Z"},{"ID":35121,"Name":"*180*","Points":10211,"X":335,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466573Z"},{"ID":35122,"Name":"Szymon9409","Points":7706,"X":397,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466574Z"},{"ID":35123,"Name":"00401 Ppp","Points":10069,"X":436,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466575Z"},{"ID":35124,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9824,"X":382,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466576Z"},{"ID":35125,"Name":".:014:.","Points":9724,"X":353,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466576Z"},{"ID":35126,"Name":"Wioska barbarzyƄska","Points":9966,"X":686,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466577Z"},{"ID":35127,"Name":"-016-","Points":9192,"X":338,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466578Z"},{"ID":35128,"Name":"[009]","Points":10016,"X":471,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466579Z"},{"ID":35129,"Name":"PaƄstfa PuƂnocy","Points":8831,"X":589,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46658Z"},{"ID":35130,"Name":"#031#","Points":9761,"X":628,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46658Z"},{"ID":35131,"Name":"Wioska barbarzyƄska","Points":4112,"X":362,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466581Z"},{"ID":35132,"Name":"Rzeczka","Points":6296,"X":319,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466582Z"},{"ID":35133,"Name":"070","Points":7635,"X":544,"Y":682,"Continent":"K65","Bonus":4,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466583Z"},{"ID":35135,"Name":"Klemensker","Points":5609,"X":328,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466584Z"},{"ID":35136,"Name":"New Land 06","Points":3732,"X":356,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466585Z"},{"ID":35137,"Name":"1v9 machine","Points":10019,"X":387,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466585Z"},{"ID":35138,"Name":"I033 Co się staƂo?","Points":10636,"X":682,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466586Z"},{"ID":35139,"Name":"KRÓL PAPI WIELKI","Points":10374,"X":645,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466587Z"},{"ID":35140,"Name":"A013","Points":10237,"X":609,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466588Z"},{"ID":35141,"Name":"Danzig","Points":6928,"X":333,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466588Z"},{"ID":35142,"Name":"C 016","Points":10481,"X":690,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466589Z"},{"ID":35143,"Name":"Troć","Points":9481,"X":321,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46659Z"},{"ID":35144,"Name":"=|16|=","Points":6248,"X":646,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46659Z"},{"ID":35146,"Name":"WesoƂych ƚwiąt","Points":5183,"X":568,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466591Z"},{"ID":35149,"Name":"Wioska kamilobr","Points":3993,"X":640,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":848942587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466592Z"},{"ID":35150,"Name":"175...Segadorr","Points":10090,"X":443,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466593Z"},{"ID":35151,"Name":"058.","Points":10224,"X":634,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466594Z"},{"ID":35152,"Name":"Nie bĂłj się odzyskać siebie!","Points":4780,"X":472,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":849099965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466594Z"},{"ID":35153,"Name":"*253*","Points":2799,"X":341,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466595Z"},{"ID":35154,"Name":"*093*","Points":10211,"X":359,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466596Z"},{"ID":35155,"Name":"Granat","Points":4718,"X":331,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":849098727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466597Z"},{"ID":35156,"Name":"Wioska barbarzyƄska","Points":5555,"X":495,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466597Z"},{"ID":35157,"Name":"Wioska barbarzyƄska","Points":8905,"X":647,"Y":611,"Continent":"K66","Bonus":9,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466598Z"},{"ID":35158,"Name":"Ave Why!","Points":3001,"X":450,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466599Z"},{"ID":35159,"Name":"--21--","Points":7202,"X":347,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4666Z"},{"ID":35160,"Name":"004","Points":7224,"X":316,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4666Z"},{"ID":35162,"Name":"Wioska","Points":7869,"X":573,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466601Z"},{"ID":35163,"Name":"=|14|=","Points":6449,"X":643,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466602Z"},{"ID":35164,"Name":"Osada koczownikĂłw","Points":4879,"X":406,"Y":656,"Continent":"K64","Bonus":7,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466603Z"},{"ID":35165,"Name":"NOT?","Points":2208,"X":459,"Y":551,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466604Z"},{"ID":35166,"Name":"011 Mordor","Points":9133,"X":454,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466604Z"},{"ID":35167,"Name":"ZUBRAWKA 053 Victoria ???","Points":10008,"X":617,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466605Z"},{"ID":35168,"Name":"J#020","Points":9797,"X":575,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466606Z"},{"ID":35169,"Name":"Zgol","Points":9850,"X":357,"Y":615,"Continent":"K63","Bonus":9,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466606Z"},{"ID":35170,"Name":"065- Mroczna Osada","Points":11099,"X":595,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466607Z"},{"ID":35171,"Name":"Klaudek13","Points":5897,"X":630,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466608Z"},{"ID":35172,"Name":"007. Grodzisk Mazowiecki","Points":3474,"X":326,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466609Z"},{"ID":35173,"Name":"New World","Points":10294,"X":436,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46661Z"},{"ID":35174,"Name":"Napewno to nie jest off","Points":9621,"X":590,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46661Z"},{"ID":35175,"Name":"Wioska barbarzyƄska","Points":2076,"X":384,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466611Z"},{"ID":35176,"Name":"D01 maribast","Points":9067,"X":450,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466612Z"},{"ID":35177,"Name":"Monetkownia","Points":9666,"X":631,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466613Z"},{"ID":35178,"Name":"Wioska Sir Zordon 006","Points":4386,"X":663,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466614Z"},{"ID":35179,"Name":"081 KaruTown","Points":10275,"X":661,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466615Z"},{"ID":35180,"Name":"Sony 911","Points":7123,"X":619,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466615Z"},{"ID":35181,"Name":"104","Points":7804,"X":594,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466616Z"},{"ID":35182,"Name":"Wioska barbarzyƄska","Points":6214,"X":403,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466617Z"},{"ID":35183,"Name":"Bogat","Points":9014,"X":357,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466618Z"},{"ID":35184,"Name":"EO EO","Points":10495,"X":313,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466618Z"},{"ID":35185,"Name":"Winterhome.051","Points":10178,"X":496,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466619Z"},{"ID":35186,"Name":"9.7 Oby tak dalej","Points":9603,"X":551,"Y":439,"Continent":"K45","Bonus":0,"PlayerID":8444356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46662Z"},{"ID":35187,"Name":"Moya","Points":9173,"X":666,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466621Z"},{"ID":35188,"Name":"AAA","Points":9775,"X":542,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466622Z"},{"ID":35189,"Name":"Wioska 11","Points":8089,"X":313,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466622Z"},{"ID":35190,"Name":"0396","Points":10083,"X":567,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466623Z"},{"ID":35191,"Name":"016.","Points":7236,"X":640,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466625Z"},{"ID":35192,"Name":"Za mostem","Points":9744,"X":353,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466625Z"},{"ID":35193,"Name":"#0112 tomek791103","Points":10178,"X":475,"Y":322,"Continent":"K34","Bonus":8,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466627Z"},{"ID":35195,"Name":"New World","Points":10295,"X":444,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466628Z"},{"ID":35196,"Name":"*INTERTWINED*","Points":9711,"X":508,"Y":685,"Continent":"K65","Bonus":4,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466629Z"},{"ID":35197,"Name":"Vanaheim IV","Points":2821,"X":592,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466629Z"},{"ID":35198,"Name":"X | Forest Cyaaaanku","Points":10000,"X":316,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46663Z"},{"ID":35199,"Name":"Odprysk KsiÄ™ĆŒyca02","Points":9866,"X":668,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466631Z"},{"ID":35200,"Name":"Wioska barbarzyƄska","Points":10495,"X":508,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466631Z"},{"ID":35201,"Name":"Village","Points":6417,"X":491,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466632Z"},{"ID":35202,"Name":"Parole","Points":3292,"X":342,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466633Z"},{"ID":35203,"Name":"XDX","Points":9637,"X":610,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466634Z"},{"ID":35204,"Name":"C0085","Points":10362,"X":317,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466634Z"},{"ID":35205,"Name":"Didek","Points":3954,"X":668,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466635Z"},{"ID":35206,"Name":"*3604*b Yuma","Points":9968,"X":653,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466636Z"},{"ID":35207,"Name":"Gnojno-Hubix","Points":10019,"X":665,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466636Z"},{"ID":35208,"Name":"A058","Points":9885,"X":606,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466637Z"},{"ID":35209,"Name":"*004* WARto pomagać!","Points":10237,"X":601,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466638Z"},{"ID":35210,"Name":"*155*","Points":6582,"X":345,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466638Z"},{"ID":35211,"Name":"psycha sitting","Points":9310,"X":413,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466639Z"},{"ID":35212,"Name":"wysypisko ƛmieci","Points":3294,"X":323,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46664Z"},{"ID":35213,"Name":"0170","Points":8617,"X":377,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46664Z"},{"ID":35214,"Name":"Humnisie","Points":10231,"X":675,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466641Z"},{"ID":35215,"Name":"Wioska XI","Points":3793,"X":581,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466642Z"},{"ID":35216,"Name":"Out of Touch","Points":10000,"X":323,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466642Z"},{"ID":35217,"Name":"1v9 machine","Points":10019,"X":390,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466643Z"},{"ID":35218,"Name":"New World","Points":10295,"X":441,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466643Z"},{"ID":35219,"Name":"C0103","Points":10362,"X":315,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466644Z"},{"ID":35220,"Name":"I082","Points":7659,"X":676,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466645Z"},{"ID":35221,"Name":"Napewno to nie jest off","Points":9088,"X":588,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466645Z"},{"ID":35222,"Name":"KRÓL PAPI WIELKI","Points":10623,"X":637,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466646Z"},{"ID":35223,"Name":"Darmowe przeprowadzki","Points":9674,"X":466,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466647Z"},{"ID":35224,"Name":"Wioska barbarzyƄska","Points":7982,"X":620,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466647Z"},{"ID":35225,"Name":"[012] ZasrajdoƂek","Points":9312,"X":679,"Y":441,"Continent":"K46","Bonus":5,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466648Z"},{"ID":35226,"Name":"Out of Touch","Points":8299,"X":325,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466649Z"},{"ID":35227,"Name":"Szlachcic","Points":10474,"X":381,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46665Z"},{"ID":35228,"Name":"Wroc","Points":9014,"X":357,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46665Z"},{"ID":35229,"Name":"088 Tomek","Points":10083,"X":688,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466651Z"},{"ID":35230,"Name":"Wiocha","Points":8949,"X":649,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849066044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466652Z"},{"ID":35231,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":316,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466652Z"},{"ID":35232,"Name":"Winterhome.039","Points":10178,"X":497,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466653Z"},{"ID":35233,"Name":"[031]","Points":7767,"X":664,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466655Z"},{"ID":35234,"Name":"Kentin ufam Tobie","Points":10000,"X":324,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466655Z"},{"ID":35235,"Name":"AG17","Points":9017,"X":590,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466656Z"},{"ID":35236,"Name":"Taran","Points":10728,"X":682,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466657Z"},{"ID":35237,"Name":"Szale","Points":8537,"X":457,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466658Z"},{"ID":35238,"Name":"tutaj","Points":8028,"X":466,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466659Z"},{"ID":35239,"Name":"New World","Points":10297,"X":430,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466659Z"},{"ID":35240,"Name":"TWIERDZA","Points":4166,"X":591,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46666Z"},{"ID":35241,"Name":"psycha sitting","Points":10311,"X":414,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46666Z"},{"ID":35243,"Name":"Wioska 122","Points":7715,"X":680,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466661Z"},{"ID":35244,"Name":"Canopus","Points":4189,"X":406,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466662Z"},{"ID":35245,"Name":"Jelec","Points":9732,"X":325,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466662Z"},{"ID":35246,"Name":"FTS","Points":10887,"X":640,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466663Z"},{"ID":35247,"Name":"Wioska r 5","Points":4157,"X":557,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466664Z"},{"ID":35248,"Name":"Darma dla zawodnika","Points":6515,"X":528,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466664Z"},{"ID":35249,"Name":"MaƂe Liniewo","Points":9719,"X":656,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466665Z"},{"ID":35250,"Name":"Wioska barbarzyƄska","Points":3303,"X":331,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466666Z"},{"ID":35251,"Name":"070.Stradi","Points":10275,"X":452,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466666Z"},{"ID":35252,"Name":"KocpoƂuch 1","Points":9074,"X":333,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":848949597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466667Z"},{"ID":35253,"Name":"Taran","Points":10728,"X":680,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466668Z"},{"ID":35254,"Name":"196...Segador","Points":8271,"X":458,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466668Z"},{"ID":35255,"Name":"|058| Barba","Points":8631,"X":493,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466669Z"},{"ID":35256,"Name":"A.12 spóƂdzielnia gryzoni","Points":9277,"X":563,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46667Z"},{"ID":35257,"Name":"27. m5 v10","Points":7245,"X":558,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46667Z"},{"ID":35258,"Name":"Szlachcic","Points":10487,"X":394,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466671Z"},{"ID":35259,"Name":"Wyspa 025","Points":10654,"X":632,"Y":377,"Continent":"K36","Bonus":2,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466672Z"},{"ID":35261,"Name":"AG06","Points":9747,"X":588,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466672Z"},{"ID":35262,"Name":"047","Points":8314,"X":466,"Y":684,"Continent":"K64","Bonus":4,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466673Z"},{"ID":35263,"Name":"1011","Points":6961,"X":623,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466674Z"},{"ID":35264,"Name":"|050| Dubrownik","Points":9527,"X":495,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466674Z"},{"ID":35265,"Name":"(028)Alm","Points":3502,"X":328,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466675Z"},{"ID":35267,"Name":"Sony 911","Points":10090,"X":619,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466676Z"},{"ID":35268,"Name":"Szlachcic","Points":10728,"X":401,"Y":346,"Continent":"K34","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466676Z"},{"ID":35269,"Name":"A035","Points":10026,"X":599,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466677Z"},{"ID":35270,"Name":"Didi","Points":10362,"X":666,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466678Z"},{"ID":35271,"Name":"Wioska groove","Points":8207,"X":503,"Y":318,"Continent":"K35","Bonus":1,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466679Z"},{"ID":35272,"Name":"[001] Wioska zaklętych","Points":10495,"X":672,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466679Z"},{"ID":35273,"Name":"Szlachcic","Points":10476,"X":387,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46668Z"},{"ID":35274,"Name":"#0289 nie wiem","Points":9802,"X":467,"Y":318,"Continent":"K34","Bonus":2,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466681Z"},{"ID":35275,"Name":"-016-","Points":7841,"X":324,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466681Z"},{"ID":35276,"Name":"C0015","Points":10362,"X":313,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466682Z"},{"ID":35277,"Name":"PiekƂo to inni","Points":9761,"X":592,"Y":345,"Continent":"K35","Bonus":4,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466683Z"},{"ID":35278,"Name":"X | Forest Cyaaaanku","Points":10000,"X":316,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466684Z"},{"ID":35279,"Name":"[024] Wioska barbarzyƄska","Points":9312,"X":668,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466684Z"},{"ID":35280,"Name":"C118","Points":9051,"X":368,"Y":634,"Continent":"K63","Bonus":2,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466685Z"},{"ID":35281,"Name":"New World","Points":10292,"X":430,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466685Z"},{"ID":35282,"Name":"#0294 Don Noobas","Points":7607,"X":466,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466686Z"},{"ID":35283,"Name":"[378] Chorągiewka na wietrze","Points":9696,"X":598,"Y":431,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466687Z"},{"ID":35284,"Name":"A052","Points":9759,"X":615,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466688Z"},{"ID":35285,"Name":"**46**","Points":7065,"X":665,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466688Z"},{"ID":35286,"Name":"004","Points":9696,"X":359,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466689Z"},{"ID":35287,"Name":"Wioska r 13","Points":4296,"X":561,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46669Z"},{"ID":35289,"Name":"???","Points":5934,"X":486,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466691Z"},{"ID":35290,"Name":"Wioska barbarzyƄska","Points":9835,"X":574,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466691Z"},{"ID":35291,"Name":"Wioska barbarzyƄska","Points":5905,"X":465,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466692Z"},{"ID":35292,"Name":"2.Lleida","Points":6415,"X":566,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466693Z"},{"ID":35293,"Name":"Wioska Bochun10","Points":5175,"X":317,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466694Z"},{"ID":35294,"Name":"B 063","Points":9861,"X":678,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466694Z"},{"ID":35295,"Name":"???","Points":10160,"X":493,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466695Z"},{"ID":35296,"Name":"#0161 Kamil0ss1","Points":10178,"X":467,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466696Z"},{"ID":35297,"Name":"~~066~~","Points":7196,"X":626,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466696Z"},{"ID":35298,"Name":"*INTERTWINED*","Points":9711,"X":503,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466697Z"},{"ID":35299,"Name":"Nie ma rączek, nie ma wiosek","Points":10311,"X":418,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466698Z"},{"ID":35300,"Name":"Wioska Annomymus","Points":10728,"X":680,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466698Z"},{"ID":35301,"Name":"Didek","Points":10362,"X":670,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466699Z"},{"ID":35302,"Name":"=|09|=","Points":9260,"X":642,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4667Z"},{"ID":35303,"Name":"Didek","Points":10415,"X":671,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466701Z"},{"ID":35304,"Name":"222","Points":6808,"X":422,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466702Z"},{"ID":35305,"Name":"PiekƂo to inni","Points":10160,"X":608,"Y":347,"Continent":"K36","Bonus":4,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466702Z"},{"ID":35307,"Name":"AAA","Points":7594,"X":549,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466703Z"},{"ID":35310,"Name":"O66 Jayang","Points":10201,"X":679,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466704Z"},{"ID":35311,"Name":"*119*","Points":10211,"X":363,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466704Z"},{"ID":35312,"Name":"Quebec","Points":8751,"X":682,"Y":494,"Continent":"K46","Bonus":2,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466705Z"},{"ID":35313,"Name":"amator-ada","Points":10475,"X":522,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466706Z"},{"ID":35315,"Name":"Szale","Points":8390,"X":465,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466706Z"},{"ID":35316,"Name":"Racecourse","Points":9771,"X":606,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466707Z"},{"ID":35317,"Name":"Ave Why!","Points":8277,"X":446,"Y":672,"Continent":"K64","Bonus":8,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466708Z"},{"ID":35320,"Name":"xxx","Points":9994,"X":645,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466709Z"},{"ID":35321,"Name":"C0041","Points":10362,"X":319,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466709Z"},{"ID":35322,"Name":"*033","Points":9093,"X":599,"Y":653,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46671Z"},{"ID":35323,"Name":"001 Koniec Burzy","Points":8825,"X":314,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466711Z"},{"ID":35324,"Name":"Wrzoski","Points":10065,"X":681,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466711Z"},{"ID":35325,"Name":"psycha sitting","Points":10232,"X":407,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466712Z"},{"ID":35326,"Name":"Jednak wolę gofry","Points":9792,"X":419,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466713Z"},{"ID":35327,"Name":"024 * Lady Porto *","Points":10117,"X":647,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466714Z"},{"ID":35328,"Name":"FILIPOWO tata","Points":5552,"X":342,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466715Z"},{"ID":35330,"Name":"I063","Points":10320,"X":684,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466715Z"},{"ID":35331,"Name":"A 034","Points":6086,"X":370,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466716Z"},{"ID":35332,"Name":"033","Points":6897,"X":608,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466717Z"},{"ID":35333,"Name":"140.Stradi","Points":803,"X":458,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466717Z"},{"ID":35334,"Name":"Westfold.013","Points":10178,"X":335,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466718Z"},{"ID":35335,"Name":"A014 Gold","Points":10230,"X":610,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466719Z"},{"ID":35336,"Name":"J#008","Points":9797,"X":577,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46672Z"},{"ID":35337,"Name":"Taran 035","Points":10971,"X":640,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46672Z"},{"ID":35338,"Name":"J#024","Points":10068,"X":580,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466721Z"},{"ID":35339,"Name":"036 Co za turbo przygƂup...","Points":7934,"X":375,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466722Z"},{"ID":35340,"Name":"Klaudek21","Points":4352,"X":633,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466723Z"},{"ID":35341,"Name":"Ć»UBR .::.Adaczu/02","Points":6069,"X":618,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466724Z"},{"ID":35342,"Name":"Ć»UBR PSYCHIATRYK 006","Points":6957,"X":613,"Y":646,"Continent":"K66","Bonus":1,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466725Z"},{"ID":35343,"Name":"New World","Points":10294,"X":445,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466725Z"},{"ID":35344,"Name":"063","Points":9976,"X":686,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466726Z"},{"ID":35345,"Name":"|060| Ciapciarapcia","Points":9220,"X":503,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466727Z"},{"ID":35346,"Name":"New World","Points":10292,"X":428,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466727Z"},{"ID":35347,"Name":"-021-","Points":10083,"X":332,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":8710047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466728Z"},{"ID":35348,"Name":"Out of Touch","Points":9084,"X":327,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466729Z"},{"ID":35349,"Name":"023","Points":8437,"X":354,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699083129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46673Z"},{"ID":35350,"Name":"Taran","Points":9815,"X":337,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46673Z"},{"ID":35351,"Name":"080 MigdaƂ","Points":10362,"X":544,"Y":466,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466731Z"},{"ID":35352,"Name":"018 serniczek od babci","Points":10141,"X":509,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466732Z"},{"ID":35353,"Name":"D.001","Points":10217,"X":400,"Y":652,"Continent":"K64","Bonus":8,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466733Z"},{"ID":35354,"Name":"001 Cicha 6","Points":11824,"X":680,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466733Z"},{"ID":35356,"Name":"*224*","Points":6486,"X":372,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466734Z"},{"ID":35357,"Name":"The Game Has Only Just Begun","Points":10311,"X":354,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466735Z"},{"ID":35358,"Name":"067.Stradi","Points":9869,"X":450,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466736Z"},{"ID":35359,"Name":"1003","Points":9821,"X":620,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466737Z"},{"ID":35360,"Name":"WhoWillBeNext","Points":5064,"X":601,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466738Z"},{"ID":35361,"Name":"Szlachcic","Points":9960,"X":394,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466739Z"},{"ID":35362,"Name":"A-047-Heffitto","Points":8860,"X":405,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46674Z"},{"ID":35363,"Name":"Devano2","Points":10345,"X":336,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466741Z"},{"ID":35364,"Name":"OrzeƂ WylądowaƂ","Points":9642,"X":455,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466742Z"},{"ID":35365,"Name":"0017","Points":10160,"X":557,"Y":674,"Continent":"K65","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466742Z"},{"ID":35366,"Name":"#060#","Points":9761,"X":632,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466743Z"},{"ID":35367,"Name":"- 262 - SS","Points":8281,"X":537,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466744Z"},{"ID":35368,"Name":"BEMA","Points":890,"X":404,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466745Z"},{"ID":35369,"Name":"stry","Points":5443,"X":560,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":6121024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466746Z"},{"ID":35370,"Name":"Niemodlin","Points":10023,"X":674,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466747Z"},{"ID":35371,"Name":"WUUDLI","Points":2274,"X":403,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466748Z"},{"ID":35372,"Name":"Z|003| Wenecja","Points":9855,"X":468,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466748Z"},{"ID":35373,"Name":"Szlachcic","Points":10484,"X":395,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466749Z"},{"ID":35374,"Name":"Nowa 38","Points":9819,"X":666,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46675Z"},{"ID":35375,"Name":"Wioska barbarzyƄska DóƂ","Points":9771,"X":627,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466751Z"},{"ID":35377,"Name":"Szlachcic/Taran","Points":10237,"X":640,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466752Z"},{"ID":35378,"Name":"Winterhome.036","Points":10178,"X":491,"Y":313,"Continent":"K34","Bonus":1,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466752Z"},{"ID":35379,"Name":"Jaaa","Points":9403,"X":603,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466753Z"},{"ID":35380,"Name":"Out of Touch","Points":4787,"X":323,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466754Z"},{"ID":35381,"Name":"205","Points":6993,"X":426,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466755Z"},{"ID":35382,"Name":"A 089","Points":3734,"X":367,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466756Z"},{"ID":35383,"Name":"Wioska barbarzyƄska","Points":3024,"X":476,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466757Z"},{"ID":35384,"Name":"Lord Lord Franek .#144","Points":10342,"X":515,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466758Z"},{"ID":35385,"Name":"Aleksandria","Points":9814,"X":405,"Y":658,"Continent":"K64","Bonus":8,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466758Z"},{"ID":35386,"Name":"Szlachcic","Points":10559,"X":382,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466759Z"},{"ID":35387,"Name":"A8.","Points":5653,"X":320,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46676Z"},{"ID":35388,"Name":"Barbababcia","Points":2568,"X":342,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466761Z"},{"ID":35389,"Name":"Kraszew 3","Points":10232,"X":339,"Y":593,"Continent":"K53","Bonus":5,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466762Z"},{"ID":35390,"Name":"ADEN","Points":7266,"X":611,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466763Z"},{"ID":35391,"Name":"Osada koczownikĂłw","Points":10189,"X":583,"Y":669,"Continent":"K65","Bonus":5,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466764Z"},{"ID":35392,"Name":"014","Points":9238,"X":472,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466765Z"},{"ID":35393,"Name":"020","Points":10019,"X":456,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466765Z"},{"ID":35394,"Name":"000 Plutosea","Points":10434,"X":323,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466766Z"},{"ID":35395,"Name":"Szlachcic","Points":9602,"X":379,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466767Z"},{"ID":35396,"Name":"#001. KoƄ TrojaƄski","Points":9959,"X":443,"Y":679,"Continent":"K64","Bonus":5,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466768Z"},{"ID":35397,"Name":"okon","Points":9816,"X":326,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466768Z"},{"ID":35398,"Name":"000 Plutosea","Points":10117,"X":321,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46677Z"},{"ID":35399,"Name":"[029]","Points":9809,"X":664,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46677Z"},{"ID":35400,"Name":"O38 Midyat","Points":10295,"X":678,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466771Z"},{"ID":35401,"Name":"1v9 machine","Points":9104,"X":385,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466772Z"},{"ID":35402,"Name":"058.Stradi","Points":10495,"X":453,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466773Z"},{"ID":35403,"Name":"Chróƛcina Opolska","Points":10242,"X":679,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466774Z"},{"ID":35404,"Name":"*4692*a Ć»ycie","Points":10287,"X":661,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466775Z"},{"ID":35405,"Name":"033.xxx","Points":4051,"X":497,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466775Z"},{"ID":35406,"Name":"Auu 09","Points":2602,"X":569,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":529552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466777Z"},{"ID":35407,"Name":"Kentin ufam Tobie","Points":10000,"X":323,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466777Z"},{"ID":35408,"Name":"10. Maribor","Points":489,"X":331,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":848910122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466778Z"},{"ID":35409,"Name":"New World","Points":10292,"X":438,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466779Z"},{"ID":35410,"Name":"fff","Points":8376,"X":489,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46678Z"},{"ID":35411,"Name":"2.Terrassa","Points":5529,"X":562,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466781Z"},{"ID":35412,"Name":"*121*","Points":10211,"X":365,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466781Z"},{"ID":35413,"Name":"*4691*a Jak jest","Points":9835,"X":662,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466782Z"},{"ID":35414,"Name":"#0225 deleted","Points":10178,"X":491,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466783Z"},{"ID":35415,"Name":"New World","Points":10294,"X":446,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466784Z"},{"ID":35416,"Name":"PYRLANDIA 008","Points":10083,"X":568,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466785Z"},{"ID":35417,"Name":"Out of Touch","Points":9744,"X":327,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466785Z"},{"ID":35418,"Name":"009. Brentford","Points":10019,"X":485,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466786Z"},{"ID":35419,"Name":"Wioska barbarzyƄska","Points":3926,"X":521,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466787Z"},{"ID":35420,"Name":"Szlachcic","Points":8284,"X":318,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466788Z"},{"ID":35421,"Name":"D.037","Points":7809,"X":394,"Y":647,"Continent":"K63","Bonus":2,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466788Z"},{"ID":35422,"Name":"Wioska Sir Zordon 008","Points":3708,"X":665,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466789Z"},{"ID":35423,"Name":"C13","Points":2716,"X":682,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46679Z"},{"ID":35424,"Name":"A017","Points":10221,"X":613,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466791Z"},{"ID":35425,"Name":"039 Osilon","Points":10252,"X":658,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466791Z"},{"ID":35426,"Name":"PoƂudnie.001","Points":10294,"X":555,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466792Z"},{"ID":35427,"Name":"002 Wioska barbarzyƄska","Points":2958,"X":326,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466793Z"},{"ID":35428,"Name":"AG14","Points":6763,"X":590,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466794Z"},{"ID":35429,"Name":"WƂadcy PóƂnocy 03","Points":5550,"X":685,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466795Z"},{"ID":35430,"Name":"Wioska barbarzyƄska","Points":9628,"X":594,"Y":572,"Continent":"K55","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466796Z"},{"ID":35432,"Name":"D.009","Points":8337,"X":394,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466796Z"},{"ID":35433,"Name":"D.002","Points":9119,"X":399,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466797Z"},{"ID":35434,"Name":"001 Firelink","Points":10495,"X":519,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466798Z"},{"ID":35435,"Name":"076.Stradi","Points":10389,"X":446,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466799Z"},{"ID":35437,"Name":"Szlachcic 008","Points":8275,"X":559,"Y":535,"Continent":"K55","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4668Z"},{"ID":35438,"Name":"017 Barba","Points":9803,"X":683,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4668Z"},{"ID":35439,"Name":"013 Yharnam","Points":10068,"X":516,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466801Z"},{"ID":35440,"Name":"*156*","Points":10211,"X":341,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466802Z"},{"ID":35441,"Name":"*165*","Points":6460,"X":337,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466803Z"},{"ID":35443,"Name":"Szlachcic;taran","Points":9821,"X":615,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466804Z"},{"ID":35444,"Name":"Osada koczownikĂłw","Points":6194,"X":464,"Y":323,"Continent":"K34","Bonus":3,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466805Z"},{"ID":35445,"Name":"0450","Points":7544,"X":553,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466805Z"},{"ID":35446,"Name":"FENDI","Points":2581,"X":318,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466806Z"},{"ID":35447,"Name":"ADEN","Points":9078,"X":599,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466807Z"},{"ID":35448,"Name":"teraz to juz...","Points":8604,"X":584,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466808Z"},{"ID":35449,"Name":"Wioska barbarzyƄska","Points":2835,"X":401,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466809Z"},{"ID":35450,"Name":"*145*","Points":6117,"X":344,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46681Z"},{"ID":35451,"Name":"Winterhome.001","Points":10178,"X":502,"Y":312,"Continent":"K35","Bonus":4,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46681Z"},{"ID":35452,"Name":"ƚrodek..","Points":5825,"X":349,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":1746216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466811Z"},{"ID":35453,"Name":"Ave Why!","Points":4320,"X":452,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466812Z"},{"ID":35454,"Name":"A 079","Points":9497,"X":372,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466813Z"},{"ID":35455,"Name":"C0050","Points":10362,"X":315,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466814Z"},{"ID":35456,"Name":"AG13","Points":9747,"X":588,"Y":663,"Continent":"K65","Bonus":2,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466815Z"},{"ID":35457,"Name":"Komornicy 017","Points":9825,"X":351,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466815Z"},{"ID":35458,"Name":"#076#","Points":9761,"X":631,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466816Z"},{"ID":35459,"Name":"*262*","Points":2678,"X":343,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466817Z"},{"ID":35460,"Name":"069","Points":5165,"X":619,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466818Z"},{"ID":35461,"Name":"Westfold.006","Points":10178,"X":336,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466819Z"},{"ID":35462,"Name":"Ave Why!","Points":9809,"X":480,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46682Z"},{"ID":35463,"Name":"078.Stradi","Points":9691,"X":444,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46682Z"},{"ID":35464,"Name":"PaczkĂłw","Points":10634,"X":677,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466821Z"},{"ID":35465,"Name":"wioska murzyna","Points":8743,"X":314,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466822Z"},{"ID":35466,"Name":"Magkw","Points":2404,"X":363,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849084920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466823Z"},{"ID":35467,"Name":"Y | Forest Cyaaaanku","Points":8354,"X":318,"Y":493,"Continent":"K43","Bonus":7,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466824Z"},{"ID":35468,"Name":"*083*","Points":10211,"X":358,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466825Z"},{"ID":35469,"Name":"007 Braveheart-","Points":10083,"X":660,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466826Z"},{"ID":35470,"Name":"Ave Why!","Points":6261,"X":454,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466827Z"},{"ID":35471,"Name":"Wioska Michal1888000","Points":10100,"X":650,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466828Z"},{"ID":35472,"Name":"|054| Trogir","Points":8932,"X":497,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466829Z"},{"ID":35473,"Name":"Rotterdam","Points":10362,"X":608,"Y":354,"Continent":"K36","Bonus":8,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46683Z"},{"ID":35474,"Name":"005","Points":8157,"X":474,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46683Z"},{"ID":35475,"Name":"Wioska barbarzyƄska","Points":4115,"X":650,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466831Z"},{"ID":35476,"Name":"Wioska barbarzyƄska","Points":9190,"X":598,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466832Z"},{"ID":35477,"Name":".Osada koczownikĂłw","Points":10495,"X":507,"Y":681,"Continent":"K65","Bonus":2,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466833Z"},{"ID":35478,"Name":"Strzelba potokowa","Points":3898,"X":321,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466833Z"},{"ID":35479,"Name":"{56} Potęgowo","Points":9418,"X":382,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466834Z"},{"ID":35480,"Name":"Turbo","Points":10135,"X":409,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466835Z"},{"ID":35481,"Name":"a moĆŒe off ? :)","Points":9566,"X":638,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466836Z"},{"ID":35482,"Name":"140 invidia","Points":9675,"X":521,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466837Z"},{"ID":35483,"Name":"Wioska barbarzyƄska","Points":8459,"X":513,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":8400180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466838Z"},{"ID":35484,"Name":"004. Konstantynopol","Points":6666,"X":341,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466839Z"},{"ID":35485,"Name":"#004. Good Night!","Points":9399,"X":445,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466839Z"},{"ID":35486,"Name":"#0120 tomek791103","Points":6935,"X":476,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46684Z"},{"ID":35487,"Name":"C0150","Points":10362,"X":319,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466841Z"},{"ID":35488,"Name":"034","Points":9993,"X":535,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466842Z"},{"ID":35489,"Name":"Monetkownia","Points":9594,"X":632,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466843Z"},{"ID":35490,"Name":"OFF","Points":9976,"X":685,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466843Z"},{"ID":35491,"Name":"C14","Points":11130,"X":684,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466844Z"},{"ID":35492,"Name":"I067","Points":9877,"X":684,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466845Z"},{"ID":35493,"Name":"Szymon9406","Points":10259,"X":390,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466846Z"},{"ID":35494,"Name":"New Land 26","Points":2869,"X":344,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466847Z"},{"ID":35495,"Name":"New World","Points":10295,"X":445,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466848Z"},{"ID":35496,"Name":"Wioska barbarzyƄska","Points":6944,"X":519,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466849Z"},{"ID":35497,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9340,"X":380,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466849Z"},{"ID":35498,"Name":"Mordor3","Points":9804,"X":317,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":848978903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46685Z"},{"ID":35499,"Name":"015 Hohoho","Points":5062,"X":605,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466851Z"},{"ID":35500,"Name":"-012-","Points":10203,"X":334,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466852Z"},{"ID":35501,"Name":"New World","Points":10178,"X":447,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466853Z"},{"ID":35502,"Name":"1v9 machine","Points":10019,"X":386,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466853Z"},{"ID":35503,"Name":"Zalew","Points":3724,"X":323,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466854Z"},{"ID":35504,"Name":"#095#","Points":9761,"X":649,"Y":609,"Continent":"K66","Bonus":5,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466855Z"},{"ID":35505,"Name":"New Land 07","Points":3611,"X":359,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466856Z"},{"ID":35506,"Name":"072.Stradi","Points":9852,"X":450,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466856Z"},{"ID":35507,"Name":"*267*","Points":2218,"X":336,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466857Z"},{"ID":35508,"Name":"Wioska Natka1968_04","Points":1820,"X":526,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466858Z"},{"ID":35509,"Name":"A 087","Points":5815,"X":371,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466859Z"},{"ID":35510,"Name":"New World","Points":10292,"X":435,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46686Z"},{"ID":35511,"Name":"030.","Points":2245,"X":330,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46686Z"},{"ID":35512,"Name":"B01","Points":6258,"X":471,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466861Z"},{"ID":35513,"Name":"Taran 025","Points":9023,"X":637,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466862Z"},{"ID":35514,"Name":"Wioska barbarzyƄska","Points":5767,"X":369,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466863Z"},{"ID":35515,"Name":"000 Plutosea","Points":9976,"X":317,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466864Z"},{"ID":35516,"Name":"Szlachcic","Points":10315,"X":377,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466864Z"},{"ID":35517,"Name":"013art","Points":10408,"X":603,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466865Z"},{"ID":35518,"Name":"212","Points":9628,"X":431,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466866Z"},{"ID":35519,"Name":"Szlachcic","Points":10474,"X":385,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466867Z"},{"ID":35520,"Name":"-0011-","Points":8457,"X":543,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466868Z"},{"ID":35521,"Name":"Out of Touch","Points":4415,"X":327,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466868Z"},{"ID":35522,"Name":"123","Points":10373,"X":469,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466869Z"},{"ID":35523,"Name":"Muchomor *004*","Points":9436,"X":513,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46687Z"},{"ID":35524,"Name":"Wioska 016","Points":7607,"X":661,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466871Z"},{"ID":35525,"Name":"ADEN","Points":7130,"X":606,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466872Z"},{"ID":35526,"Name":"Taran","Points":9883,"X":336,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466872Z"},{"ID":35527,"Name":"019. Kochanka","Points":9367,"X":562,"Y":324,"Continent":"K35","Bonus":3,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466873Z"},{"ID":35528,"Name":"A048","Points":8258,"X":614,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466874Z"},{"ID":35529,"Name":"C0155","Points":9414,"X":318,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466875Z"},{"ID":35530,"Name":"Osada koczownikĂłw","Points":10040,"X":512,"Y":688,"Continent":"K65","Bonus":8,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466876Z"},{"ID":35531,"Name":"Wioska barbarzyƄska","Points":2052,"X":545,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":849087581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466876Z"},{"ID":35532,"Name":"101","Points":9348,"X":319,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466877Z"},{"ID":35533,"Name":"Islanders 05","Points":9034,"X":684,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466878Z"},{"ID":35534,"Name":"Komornicy 008","Points":9825,"X":352,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466879Z"},{"ID":35535,"Name":"#039#","Points":9761,"X":636,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46688Z"},{"ID":35537,"Name":"#2 Europa","Points":12154,"X":660,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46688Z"},{"ID":35538,"Name":"062. Ramr","Points":10160,"X":665,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466886Z"},{"ID":35539,"Name":"Wieƛ Kupolandia","Points":8188,"X":546,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466887Z"},{"ID":35540,"Name":"Out of Touch","Points":2573,"X":325,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466887Z"},{"ID":35541,"Name":"Wiocha","Points":10068,"X":604,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466888Z"},{"ID":35542,"Name":"Dream on","Points":9497,"X":311,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466889Z"},{"ID":35543,"Name":"A006","Points":10237,"X":606,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466889Z"},{"ID":35544,"Name":"093 Tomek","Points":4932,"X":688,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466891Z"},{"ID":35545,"Name":"Kingdom 3","Points":10728,"X":681,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466891Z"},{"ID":35546,"Name":"JGA","Points":8665,"X":360,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466892Z"},{"ID":35547,"Name":"A 085","Points":4487,"X":372,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466893Z"},{"ID":35548,"Name":"2.Vigo","Points":6517,"X":561,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466894Z"},{"ID":35549,"Name":"DąbrĂłwka PodĆ‚Ä™ĆŒna","Points":6587,"X":570,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466894Z"},{"ID":35550,"Name":"010","Points":4918,"X":317,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466895Z"},{"ID":35551,"Name":"Wioska 053","Points":9761,"X":652,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466896Z"},{"ID":35552,"Name":"C0024","Points":10362,"X":316,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466897Z"},{"ID":35553,"Name":"02 BakƂaĆŒan","Points":9898,"X":641,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466898Z"},{"ID":35554,"Name":"Wioska barbarzyƄska","Points":2247,"X":368,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466898Z"},{"ID":35555,"Name":"0160","Points":3342,"X":406,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466899Z"},{"ID":35556,"Name":"068","Points":8291,"X":542,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4669Z"},{"ID":35557,"Name":"Szulernia","Points":3046,"X":377,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466901Z"},{"ID":35558,"Name":"001","Points":10831,"X":605,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466902Z"},{"ID":35559,"Name":"New Land 19","Points":3297,"X":343,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466902Z"},{"ID":35560,"Name":"0311","Points":8190,"X":559,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466903Z"},{"ID":35561,"Name":"Hard4","Points":2262,"X":363,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466904Z"},{"ID":35562,"Name":"Didek","Points":10292,"X":666,"Y":573,"Continent":"K56","Bonus":9,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466904Z"},{"ID":35563,"Name":"cc pol009","Points":6153,"X":391,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466905Z"},{"ID":35564,"Name":"*004*","Points":10211,"X":351,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466906Z"},{"ID":35565,"Name":"*037*","Points":10211,"X":346,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466906Z"},{"ID":35566,"Name":"C0316","Points":3553,"X":320,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466907Z"},{"ID":35567,"Name":"I062","Points":10495,"X":683,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466908Z"},{"ID":35568,"Name":"Suppi","Points":9550,"X":329,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466909Z"},{"ID":35570,"Name":"Smacznej kawusi","Points":9753,"X":590,"Y":342,"Continent":"K35","Bonus":5,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466909Z"},{"ID":35571,"Name":"New World","Points":9640,"X":442,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46691Z"},{"ID":35572,"Name":"Wioska barbarzyƄska","Points":8113,"X":625,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466911Z"},{"ID":35573,"Name":"Wioska barbarzyƄska","Points":3141,"X":574,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466911Z"},{"ID":35574,"Name":"Wioska barbarzyƄska","Points":4679,"X":323,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466912Z"},{"ID":35575,"Name":"Wioska 9","Points":6171,"X":315,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466913Z"},{"ID":35576,"Name":"Wioska barbarzyƄska","Points":2287,"X":412,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466914Z"},{"ID":35577,"Name":"#009. Troja","Points":9860,"X":442,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466915Z"},{"ID":35578,"Name":"006","Points":7371,"X":315,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466915Z"},{"ID":35579,"Name":"Osada","Points":9632,"X":506,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466916Z"},{"ID":35580,"Name":"Jednak wolę gofry","Points":7203,"X":418,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466917Z"},{"ID":35581,"Name":"058. Jezioro Woadark","Points":10301,"X":664,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466918Z"},{"ID":35582,"Name":"Chekku - meito","Points":9976,"X":322,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466918Z"},{"ID":35583,"Name":"091 Nowy Rok","Points":8194,"X":655,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466919Z"},{"ID":35584,"Name":"025 * Lady Porto *","Points":10595,"X":646,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46692Z"},{"ID":35585,"Name":"KRÓL PAPI WIELKI","Points":9973,"X":641,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46692Z"},{"ID":35586,"Name":"A047","Points":8347,"X":609,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466921Z"},{"ID":35587,"Name":"Szlachcic","Points":10003,"X":396,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466921Z"},{"ID":35588,"Name":"Wioska barbarzyƄska","Points":10141,"X":338,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466922Z"},{"ID":35589,"Name":"New World","Points":10292,"X":434,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466923Z"},{"ID":35590,"Name":"_PUSTA+","Points":9797,"X":685,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466924Z"},{"ID":35591,"Name":"0581","Points":9808,"X":567,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466924Z"},{"ID":35592,"Name":"#0212 Segadorr dar","Points":5717,"X":451,"Y":318,"Continent":"K34","Bonus":6,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466925Z"},{"ID":35593,"Name":"AAA","Points":9409,"X":532,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466926Z"},{"ID":35594,"Name":"8.Yasnaya Polyana","Points":5562,"X":419,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466926Z"},{"ID":35595,"Name":"0093","Points":7538,"X":648,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466927Z"},{"ID":35596,"Name":"C.02","Points":9214,"X":682,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466928Z"},{"ID":35597,"Name":"WschĂłd X3","Points":10311,"X":685,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466928Z"},{"ID":35598,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":4378,"X":379,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466929Z"},{"ID":35599,"Name":"002.","Points":4726,"X":565,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46693Z"},{"ID":35600,"Name":"0335","Points":7208,"X":570,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46693Z"},{"ID":35601,"Name":"Z|002| Turyn","Points":9976,"X":472,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466931Z"},{"ID":35602,"Name":"-001-","Points":5053,"X":373,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466932Z"},{"ID":35603,"Name":"021. GĂłrki?","Points":7108,"X":642,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466933Z"},{"ID":35604,"Name":"C0172","Points":10362,"X":317,"Y":513,"Continent":"K53","Bonus":5,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466933Z"},{"ID":35605,"Name":"Wioska barbarzyƄska","Points":5682,"X":680,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466934Z"},{"ID":35606,"Name":"049","Points":6984,"X":541,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466935Z"},{"ID":35607,"Name":"KrzyĆŒĂłwki-hubix","Points":9797,"X":667,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466935Z"},{"ID":35608,"Name":"-sioux falls","Points":7249,"X":649,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466936Z"},{"ID":35609,"Name":"Szlachcic","Points":9757,"X":387,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466937Z"},{"ID":35611,"Name":"--02--","Points":10351,"X":341,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466938Z"},{"ID":35612,"Name":"Wioska barbarzyƄska","Points":9398,"X":512,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466938Z"},{"ID":35613,"Name":"C0268","Points":7082,"X":312,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466939Z"},{"ID":35614,"Name":"-004- ChwaƂa Imperium","Points":9036,"X":621,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46694Z"},{"ID":35615,"Name":"New World","Points":10294,"X":434,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466941Z"},{"ID":35616,"Name":"psycha sitting","Points":6839,"X":398,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466942Z"},{"ID":35617,"Name":"Monetkownia","Points":9431,"X":624,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466942Z"},{"ID":35618,"Name":"Szlachcic","Points":10476,"X":391,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466943Z"},{"ID":35619,"Name":"New World","Points":10295,"X":432,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466944Z"},{"ID":35620,"Name":"Muchomor *006*","Points":10295,"X":511,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466944Z"},{"ID":35621,"Name":"reco","Points":3095,"X":496,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466945Z"},{"ID":35622,"Name":"Winterhome.073","Points":9282,"X":509,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466946Z"},{"ID":35623,"Name":"086 ƚwięta BoĆŒego Narodzenia","Points":9891,"X":595,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466947Z"},{"ID":35624,"Name":"*008*","Points":10169,"X":315,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466947Z"},{"ID":35625,"Name":"AAA","Points":6021,"X":548,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466948Z"},{"ID":35626,"Name":"Wioska barbarzyƄska","Points":6483,"X":623,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466948Z"},{"ID":35627,"Name":"C1.","Points":7645,"X":317,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466949Z"},{"ID":35628,"Name":"213","Points":9245,"X":430,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46695Z"},{"ID":35629,"Name":"- 187 - SS","Points":7326,"X":535,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46695Z"},{"ID":35630,"Name":"123","Points":10373,"X":472,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466951Z"},{"ID":35631,"Name":"006 Texas","Points":9755,"X":490,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466952Z"},{"ID":35632,"Name":"043- Mroczna Osada","Points":12154,"X":649,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466952Z"},{"ID":35634,"Name":"F054","Points":9675,"X":494,"Y":521,"Continent":"K54","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466953Z"},{"ID":35635,"Name":"Cytadela RickĂłw","Points":6430,"X":645,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":849098822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466954Z"},{"ID":35636,"Name":"Na KraƄcu ƚwiata 006","Points":10252,"X":577,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466954Z"},{"ID":35637,"Name":"New World","Points":10300,"X":444,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466955Z"},{"ID":35638,"Name":"Wioska barbarzyƄska","Points":3728,"X":627,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466956Z"},{"ID":35639,"Name":"A 099","Points":5516,"X":370,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466957Z"},{"ID":35640,"Name":"Wow22","Points":2275,"X":373,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466957Z"},{"ID":35641,"Name":"013","Points":10342,"X":349,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466958Z"},{"ID":35642,"Name":"*013*","Points":10211,"X":352,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466959Z"},{"ID":35643,"Name":"Wioska barbarzyƄska","Points":7263,"X":572,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466959Z"},{"ID":35644,"Name":"**01**","Points":12154,"X":672,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46696Z"},{"ID":35645,"Name":"B.A.R.B.A.R.K.A","Points":8258,"X":314,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466961Z"},{"ID":35646,"Name":"Ob Konfederacja","Points":4937,"X":429,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466962Z"},{"ID":35647,"Name":"040 Mucharadza","Points":9127,"X":666,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466963Z"},{"ID":35648,"Name":"AAA","Points":8832,"X":525,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466964Z"},{"ID":35649,"Name":"#057#","Points":9761,"X":638,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466964Z"},{"ID":35650,"Name":"emoriar","Points":6625,"X":681,"Y":448,"Continent":"K46","Bonus":6,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466965Z"},{"ID":35651,"Name":"Sony 911","Points":10212,"X":622,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466966Z"},{"ID":35652,"Name":"Wioska Vll","Points":10398,"X":324,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466967Z"},{"ID":35653,"Name":"Didus P","Points":5728,"X":667,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466967Z"},{"ID":35654,"Name":"Pomidorowy dzem","Points":9900,"X":683,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466968Z"},{"ID":35655,"Name":"Szulernia","Points":9981,"X":370,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466969Z"},{"ID":35656,"Name":"Ć»UBR .::.Adaczu/03","Points":6662,"X":618,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46697Z"},{"ID":35657,"Name":"058","Points":10019,"X":453,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46697Z"},{"ID":35658,"Name":"008. Wola","Points":10223,"X":688,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466971Z"},{"ID":35659,"Name":"033 - Alcala de Henares","Points":4967,"X":688,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466972Z"},{"ID":35660,"Name":"048 Halemba","Points":10301,"X":663,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466972Z"},{"ID":35661,"Name":"126","Points":10311,"X":547,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466973Z"},{"ID":35662,"Name":"Wioska barbarzyƄska","Points":3936,"X":475,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466974Z"},{"ID":35663,"Name":"[031] Wioska barbarzyƄska","Points":9312,"X":672,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466975Z"},{"ID":35664,"Name":"*187*","Points":7251,"X":331,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466976Z"},{"ID":35665,"Name":"*084*","Points":10211,"X":360,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466976Z"},{"ID":35666,"Name":"021 Cardiff","Points":7536,"X":615,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849057572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466977Z"},{"ID":35667,"Name":"- 07 - DąbrĂłwka","Points":4278,"X":461,"Y":322,"Continent":"K34","Bonus":7,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466978Z"},{"ID":35668,"Name":"A 046","Points":5794,"X":366,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466979Z"},{"ID":35669,"Name":"[032]","Points":8149,"X":662,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46698Z"},{"ID":35670,"Name":"- 155 - SS","Points":9803,"X":540,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46698Z"},{"ID":35671,"Name":"A061","Points":10237,"X":605,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466981Z"},{"ID":35672,"Name":"C0105","Points":10046,"X":317,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466982Z"},{"ID":35673,"Name":"Widzew","Points":5467,"X":683,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849100246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466983Z"},{"ID":35674,"Name":"Taran 028","Points":5249,"X":638,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466984Z"},{"ID":35675,"Name":"Wioska barbarzyƄska","Points":4023,"X":323,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466984Z"},{"ID":35676,"Name":"i co z tego","Points":4399,"X":651,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466985Z"},{"ID":35677,"Name":"OFF","Points":9725,"X":645,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466986Z"},{"ID":35678,"Name":"105.Stradi","Points":9318,"X":458,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466987Z"},{"ID":35679,"Name":"Winterhome.045","Points":10178,"X":492,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466987Z"},{"ID":35680,"Name":"014","Points":9993,"X":511,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466988Z"},{"ID":35681,"Name":"A 021","Points":5048,"X":363,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466988Z"},{"ID":35683,"Name":"=|33|=","Points":10495,"X":644,"Y":386,"Continent":"K36","Bonus":5,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466989Z"},{"ID":35684,"Name":"Wioska wilku1000","Points":2775,"X":328,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":1568700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46699Z"},{"ID":35685,"Name":"*021*","Points":10211,"X":352,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46699Z"},{"ID":35686,"Name":"#003 MaƂpi Gaj","Points":9976,"X":440,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466991Z"},{"ID":35687,"Name":"Wioska barbarzyƄska","Points":3871,"X":404,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466992Z"},{"ID":35688,"Name":"023 Wioska","Points":3171,"X":680,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466992Z"},{"ID":35689,"Name":"Psycha Siada","Points":7588,"X":445,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466993Z"},{"ID":35690,"Name":"Wioska barbarzyƄska","Points":3569,"X":655,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466994Z"},{"ID":35691,"Name":"Szlachcic","Points":9694,"X":386,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466994Z"},{"ID":35692,"Name":"0168","Points":10216,"X":376,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466995Z"},{"ID":35693,"Name":"x000","Points":9782,"X":632,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466996Z"},{"ID":35694,"Name":"Wioska 5","Points":5402,"X":574,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466996Z"},{"ID":35695,"Name":"057","Points":10157,"X":334,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466997Z"},{"ID":35696,"Name":"XC1","Points":10365,"X":311,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":849040194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466998Z"},{"ID":35697,"Name":"Komornicy 020","Points":9642,"X":353,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466998Z"},{"ID":35698,"Name":"AGA7","Points":9371,"X":687,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.466999Z"},{"ID":35699,"Name":"XDX","Points":10838,"X":623,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467Z"},{"ID":35700,"Name":"Ziemniak","Points":6389,"X":322,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467001Z"},{"ID":35701,"Name":"Pomidorowy dzem","Points":8507,"X":682,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467001Z"},{"ID":35702,"Name":"Rijen","Points":7630,"X":609,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467002Z"},{"ID":35703,"Name":"019 Wioska barbarzyƄska","Points":7662,"X":682,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467003Z"},{"ID":35704,"Name":"New World","Points":10290,"X":431,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467003Z"},{"ID":35705,"Name":".achim.","Points":9779,"X":485,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467004Z"},{"ID":35706,"Name":"Wioska barbarzyƄska","Points":7263,"X":526,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467005Z"},{"ID":35708,"Name":"*5611* YME3","Points":10287,"X":669,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467005Z"},{"ID":35709,"Name":"0148","Points":9934,"X":409,"Y":340,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467006Z"},{"ID":35710,"Name":"Muchomor *026*","Points":9278,"X":522,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467007Z"},{"ID":35711,"Name":"#043#","Points":9761,"X":629,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467008Z"},{"ID":35712,"Name":"Wioska barbarzyƄska","Points":3241,"X":331,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467009Z"},{"ID":35714,"Name":"248","Points":4988,"X":424,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467009Z"},{"ID":35715,"Name":"EO EO","Points":10495,"X":311,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.46701Z"},{"ID":35716,"Name":"Szlachcic","Points":10476,"X":393,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467011Z"},{"ID":35717,"Name":"070 donkretos2","Points":9455,"X":687,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467011Z"},{"ID":35718,"Name":"*256*","Points":2759,"X":335,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467012Z"},{"ID":35719,"Name":"0591","Points":7413,"X":539,"Y":660,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.467013Z"},{"ID":35720,"Name":"008.Stradi","Points":10495,"X":443,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498906Z"},{"ID":35721,"Name":"129 Bajerka Bajerka I Blok?","Points":8029,"X":660,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498907Z"},{"ID":35722,"Name":"psycha sitting","Points":10178,"X":423,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498908Z"},{"ID":35723,"Name":"OFF","Points":10362,"X":647,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498908Z"},{"ID":35724,"Name":"C0257","Points":7213,"X":318,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498909Z"},{"ID":35726,"Name":"*221","Points":6356,"X":374,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498909Z"},{"ID":35727,"Name":"Taran","Points":9761,"X":550,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49891Z"},{"ID":35728,"Name":"Out of Touch","Points":2796,"X":330,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498911Z"},{"ID":35729,"Name":"Wioska barbarzyƄska","Points":1227,"X":653,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498911Z"},{"ID":35730,"Name":"008. BƂonie","Points":5737,"X":325,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498912Z"},{"ID":35731,"Name":"Wioska barbarzyƄska","Points":9112,"X":597,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498912Z"},{"ID":35732,"Name":"*172*","Points":7799,"X":335,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498913Z"},{"ID":35733,"Name":"Szlachcic","Points":7227,"X":385,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498913Z"},{"ID":35734,"Name":"Wioska barbarzyƄska","Points":9267,"X":597,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498914Z"},{"ID":35735,"Name":"#0302 sliwatojo","Points":7241,"X":465,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498914Z"},{"ID":35736,"Name":"Szulernia","Points":10099,"X":371,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498915Z"},{"ID":35737,"Name":"#035#","Points":9761,"X":628,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498916Z"},{"ID":35738,"Name":"AAA","Points":9883,"X":537,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498916Z"},{"ID":35739,"Name":"Wioska kamilpo4","Points":11388,"X":641,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":848942587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498917Z"},{"ID":35740,"Name":"I095","Points":7463,"X":675,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498917Z"},{"ID":35741,"Name":"07. Soldier","Points":9557,"X":553,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498918Z"},{"ID":35742,"Name":"8 barba","Points":10157,"X":588,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498918Z"},{"ID":35743,"Name":"HITA","Points":4350,"X":403,"Y":344,"Continent":"K34","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498919Z"},{"ID":35744,"Name":"Szulernia","Points":5992,"X":380,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49892Z"},{"ID":35745,"Name":"Szlachcic","Points":10019,"X":389,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49892Z"},{"ID":35746,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":318,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498921Z"},{"ID":35747,"Name":"#002. Welcome In My Night!","Points":9899,"X":444,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498921Z"},{"ID":35748,"Name":"AAA","Points":8444,"X":541,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498922Z"},{"ID":35749,"Name":"C 015","Points":9778,"X":680,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498922Z"},{"ID":35750,"Name":"051.","Points":10559,"X":460,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498923Z"},{"ID":35751,"Name":"Didi","Points":10818,"X":669,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498923Z"},{"ID":35752,"Name":"Loca 1","Points":11824,"X":634,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498924Z"},{"ID":35753,"Name":"1005","Points":9821,"X":622,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498925Z"},{"ID":35755,"Name":"99k$ Grvvyq","Points":10495,"X":684,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498925Z"},{"ID":35756,"Name":"Gattacka","Points":9192,"X":677,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498926Z"},{"ID":35757,"Name":"krytl03","Points":9503,"X":513,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498926Z"},{"ID":35758,"Name":"Kingdom 7","Points":10408,"X":682,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498927Z"},{"ID":35759,"Name":"=|15|=","Points":7798,"X":647,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498927Z"},{"ID":35760,"Name":"007.","Points":8066,"X":569,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498928Z"},{"ID":35761,"Name":"Out of Touch","Points":2439,"X":329,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498929Z"},{"ID":35762,"Name":"Wioska r 16","Points":3913,"X":558,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498929Z"},{"ID":35763,"Name":"Przyczajony","Points":9948,"X":617,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49893Z"},{"ID":35764,"Name":"002. Ć»oliborz-Maciusiowa zagroda","Points":10104,"X":688,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49893Z"},{"ID":35765,"Name":"555","Points":7689,"X":636,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498931Z"},{"ID":35766,"Name":"=|04|=","Points":10495,"X":652,"Y":393,"Continent":"K36","Bonus":1,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498931Z"},{"ID":35767,"Name":"Wioska barbarzyƄska","Points":9983,"X":569,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498932Z"},{"ID":35768,"Name":"Ć»elazny deff","Points":5753,"X":362,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498932Z"},{"ID":35769,"Name":"062","Points":9644,"X":451,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498933Z"},{"ID":35770,"Name":"Wioska barbarzyƄska","Points":8456,"X":516,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498934Z"},{"ID":35771,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":331,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498934Z"},{"ID":35772,"Name":"066 Wioska 018","Points":9447,"X":663,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498935Z"},{"ID":35773,"Name":"002 Smocza SkaƂa","Points":8527,"X":316,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498935Z"},{"ID":35774,"Name":"*086*","Points":10211,"X":360,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498936Z"},{"ID":35775,"Name":"018 * Lady Porto *","Points":12154,"X":648,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498936Z"},{"ID":35776,"Name":"[030] Wioska barbarzyƄska","Points":9312,"X":671,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498937Z"},{"ID":35777,"Name":"036 Melian","Points":10083,"X":658,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498938Z"},{"ID":35778,"Name":"z 181-A003","Points":8848,"X":357,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498938Z"},{"ID":35779,"Name":"005 Desant","Points":9608,"X":483,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498939Z"},{"ID":35780,"Name":"003 Kirtan","Points":10197,"X":661,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498939Z"},{"ID":35781,"Name":"Wioska barbarzyƄska","Points":3200,"X":605,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49894Z"},{"ID":35782,"Name":"*147*","Points":7703,"X":344,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49894Z"},{"ID":35783,"Name":"New World","Points":10311,"X":447,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498941Z"},{"ID":35784,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":318,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498941Z"},{"ID":35785,"Name":"Psycha Siada","Points":9230,"X":442,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498942Z"},{"ID":35786,"Name":"PaƄstfa PuƂnocy","Points":9355,"X":583,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498942Z"},{"ID":35787,"Name":"(023)Yulay","Points":5566,"X":324,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498943Z"},{"ID":35788,"Name":"010|| Capricornus","Points":10019,"X":480,"Y":652,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498943Z"},{"ID":35789,"Name":"A 026","Points":5560,"X":364,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498944Z"},{"ID":35790,"Name":"014 Mieyet wb","Points":9899,"X":678,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498945Z"},{"ID":35791,"Name":"Dolina ƚwiątyƄ","Points":7892,"X":651,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498945Z"},{"ID":35792,"Name":"Taran","Points":10728,"X":682,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498946Z"},{"ID":35794,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10044,"X":381,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498946Z"},{"ID":35795,"Name":"022 * Lady Porto *","Points":12154,"X":647,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498947Z"},{"ID":35796,"Name":"Komornicy 016","Points":3454,"X":351,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498947Z"},{"ID":35797,"Name":"(020)Tukar","Points":4355,"X":325,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498948Z"},{"ID":35798,"Name":"#0195 Segadorr dar","Points":10178,"X":461,"Y":323,"Continent":"K34","Bonus":6,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498949Z"},{"ID":35799,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9853,"X":383,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498949Z"},{"ID":35800,"Name":"A018","Points":10237,"X":609,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49895Z"},{"ID":35803,"Name":"kamilkaze135 #08","Points":8974,"X":658,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49895Z"},{"ID":35804,"Name":"Wioska barbarzyƄska","Points":10159,"X":339,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498951Z"},{"ID":35805,"Name":"Szlachcic","Points":7689,"X":318,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498951Z"},{"ID":35806,"Name":"214","Points":12154,"X":448,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498952Z"},{"ID":35807,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":317,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498952Z"},{"ID":35808,"Name":"Lord Lord Franek .#193","Points":10495,"X":617,"Y":356,"Continent":"K36","Bonus":9,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498953Z"},{"ID":35809,"Name":"Lubraniec-Hubix","Points":10019,"X":666,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498954Z"},{"ID":35810,"Name":"Nowa 43","Points":9751,"X":667,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498954Z"},{"ID":35811,"Name":"UltraInstynkt","Points":9977,"X":604,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498955Z"},{"ID":35812,"Name":"Szlachcic","Points":10476,"X":390,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498955Z"},{"ID":35814,"Name":"Ave Why!","Points":9196,"X":493,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498956Z"},{"ID":35815,"Name":"006","Points":10559,"X":656,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498956Z"},{"ID":35816,"Name":"Wioska barbarzyƄska","Points":1827,"X":403,"Y":341,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498957Z"},{"ID":35817,"Name":"C0060","Points":10362,"X":312,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498957Z"},{"ID":35818,"Name":"Nie, proszę nie...","Points":8717,"X":414,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699684693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498958Z"},{"ID":35819,"Name":"#074#","Points":9761,"X":634,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498959Z"},{"ID":35820,"Name":"B025","Points":9359,"X":517,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498959Z"},{"ID":35821,"Name":"Wstrętna","Points":3586,"X":559,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49896Z"},{"ID":35822,"Name":"0048","Points":4630,"X":569,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49896Z"},{"ID":35823,"Name":"--05--","Points":6233,"X":346,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498961Z"},{"ID":35824,"Name":"02.wiocha","Points":5856,"X":332,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498961Z"},{"ID":35825,"Name":"Ć»UBRAWKA 055","Points":9458,"X":616,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498962Z"},{"ID":35826,"Name":"Winterhome.047","Points":10178,"X":497,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498963Z"},{"ID":35827,"Name":"|049| Makarska","Points":9226,"X":494,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498963Z"},{"ID":35828,"Name":"START 05","Points":9703,"X":579,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498964Z"},{"ID":35829,"Name":"Wioska barbarzyƄska","Points":10728,"X":683,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498964Z"},{"ID":35830,"Name":"Wioska barbarzyƄska","Points":5046,"X":573,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498965Z"},{"ID":35831,"Name":"063","Points":10019,"X":450,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498965Z"},{"ID":35832,"Name":"-002-","Points":5466,"X":350,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498966Z"},{"ID":35833,"Name":"0169","Points":10216,"X":374,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498966Z"},{"ID":35834,"Name":"Wioska barbarzyƄska","Points":3147,"X":476,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498967Z"},{"ID":35835,"Name":"000 Plutosea","Points":10068,"X":316,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498967Z"},{"ID":35836,"Name":"#071#","Points":9761,"X":636,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498968Z"},{"ID":35837,"Name":"97k$ Grvvyq","Points":10495,"X":681,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498968Z"},{"ID":35838,"Name":"*110*","Points":10211,"X":363,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498969Z"},{"ID":35839,"Name":"022","Points":9656,"X":538,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498969Z"},{"ID":35840,"Name":"Wioska 2","Points":8839,"X":311,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49897Z"},{"ID":35841,"Name":"Komornicy 026","Points":2910,"X":348,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49897Z"},{"ID":35843,"Name":"WesoƂych ƚwiąt","Points":10426,"X":641,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498971Z"},{"ID":35844,"Name":"001","Points":12154,"X":591,"Y":353,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498972Z"},{"ID":35845,"Name":"Tu jest przyszƂoƛć","Points":8021,"X":659,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498972Z"},{"ID":35847,"Name":"- 163 - SS","Points":9528,"X":545,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498973Z"},{"ID":35848,"Name":"WesoƂych ƚwiąt","Points":9938,"X":581,"Y":358,"Continent":"K35","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498973Z"},{"ID":35849,"Name":"A065","Points":10237,"X":601,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498974Z"},{"ID":35850,"Name":"Wioska barbarzyƄska","Points":5910,"X":404,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498975Z"},{"ID":35851,"Name":"001","Points":8995,"X":315,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498975Z"},{"ID":35852,"Name":"Szlachcic","Points":10487,"X":387,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498976Z"},{"ID":35853,"Name":"OFF","Points":7761,"X":685,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498976Z"},{"ID":35854,"Name":"Nowa 37","Points":9816,"X":673,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498977Z"},{"ID":35855,"Name":"Wioska margo0229","Points":10495,"X":606,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498977Z"},{"ID":35856,"Name":"Szlachcic;taran","Points":7410,"X":636,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498978Z"},{"ID":35857,"Name":"017 NAWRA","Points":10138,"X":653,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498978Z"},{"ID":35858,"Name":"Szlachcic","Points":10478,"X":390,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498979Z"},{"ID":35859,"Name":"Grvvyq 104k$","Points":10102,"X":679,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498979Z"},{"ID":35860,"Name":"I048","Points":9919,"X":682,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49898Z"},{"ID":35861,"Name":"*177*","Points":8485,"X":333,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49898Z"},{"ID":35862,"Name":"(036)Kadrix","Points":9511,"X":327,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498981Z"},{"ID":35863,"Name":"Wioska barbarzyƄska","Points":4039,"X":578,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498982Z"},{"ID":35864,"Name":"Bongos","Points":7647,"X":582,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498982Z"},{"ID":35865,"Name":"Komornicy 009","Points":9240,"X":353,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498983Z"},{"ID":35866,"Name":"Wioska ta nowa","Points":4263,"X":583,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498983Z"},{"ID":35867,"Name":"Vanaheim III","Points":3313,"X":594,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498984Z"},{"ID":35868,"Name":"045 gubin","Points":10347,"X":664,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498984Z"},{"ID":35869,"Name":"A049","Points":8561,"X":615,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498985Z"},{"ID":35870,"Name":"AAA","Points":7325,"X":547,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498985Z"},{"ID":35871,"Name":"130 Brzustowa-Hofek","Points":9835,"X":659,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498986Z"},{"ID":35872,"Name":"D.013","Points":8249,"X":391,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498987Z"},{"ID":35873,"Name":"A 097","Points":3984,"X":370,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498987Z"},{"ID":35874,"Name":"*047","Points":9706,"X":595,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498988Z"},{"ID":35875,"Name":"Ameryczka","Points":10252,"X":619,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498988Z"},{"ID":35877,"Name":"070KK","Points":9247,"X":586,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498989Z"},{"ID":35878,"Name":"132","Points":5600,"X":392,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498989Z"},{"ID":35879,"Name":"Winterhome.006","Points":10178,"X":498,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49899Z"},{"ID":35880,"Name":"Barka","Points":8552,"X":584,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49899Z"},{"ID":35881,"Name":"(005)Narak","Points":9948,"X":324,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498991Z"},{"ID":35883,"Name":"Wioska barbarzyƄska","Points":9104,"X":335,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":849046232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498991Z"},{"ID":35884,"Name":"- DragonJ","Points":4178,"X":542,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498992Z"},{"ID":35885,"Name":".achim.","Points":7645,"X":486,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498992Z"},{"ID":35886,"Name":"*092*","Points":10211,"X":358,"Y":376,"Continent":"K33","Bonus":1,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498993Z"},{"ID":35887,"Name":"20. Madryt","Points":9362,"X":685,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498993Z"},{"ID":35888,"Name":"123","Points":10373,"X":466,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498994Z"},{"ID":35889,"Name":"#040#","Points":9761,"X":628,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498994Z"},{"ID":35890,"Name":"*109*","Points":10211,"X":359,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498995Z"},{"ID":35891,"Name":"0167","Points":4312,"X":370,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498995Z"},{"ID":35892,"Name":"*040*","Points":2217,"X":667,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498996Z"},{"ID":35893,"Name":"Wioska barbarzyƄska","Points":4710,"X":576,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498996Z"},{"ID":35894,"Name":"Optyk","Points":7323,"X":678,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498997Z"},{"ID":35895,"Name":"024 Hengfors","Points":3364,"X":478,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498998Z"},{"ID":35896,"Name":"Napewno to nie jest off","Points":6214,"X":587,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498998Z"},{"ID":35897,"Name":"Marudernia","Points":9524,"X":371,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498999Z"},{"ID":35898,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":317,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.498999Z"},{"ID":35900,"Name":"031","Points":8456,"X":535,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499Z"},{"ID":35901,"Name":"*091*","Points":10211,"X":361,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499Z"},{"ID":35902,"Name":"ƚmieszki","Points":9024,"X":537,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":3454753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499001Z"},{"ID":35903,"Name":"Out of Touch","Points":10076,"X":328,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499001Z"},{"ID":35904,"Name":"Wioska barbarzyƄska","Points":5999,"X":515,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499002Z"},{"ID":35905,"Name":"Out of Touch","Points":7909,"X":326,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499002Z"},{"ID":35906,"Name":"Wioska barbarzyƄska","Points":9825,"X":688,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499003Z"},{"ID":35907,"Name":"065","Points":5828,"X":674,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499004Z"},{"ID":35908,"Name":"WƛciekƂa Pyra","Points":6845,"X":325,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499004Z"},{"ID":35909,"Name":"Wioska barbarzyƄska","Points":4181,"X":579,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499005Z"},{"ID":35910,"Name":"Pomidorowy dzem","Points":10728,"X":684,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499005Z"},{"ID":35911,"Name":"A 098","Points":5378,"X":371,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499006Z"},{"ID":35912,"Name":"Komornicy 006","Points":9825,"X":351,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499006Z"},{"ID":35913,"Name":"Wioska barbarzyƄska","Points":10075,"X":345,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499007Z"},{"ID":35914,"Name":"**INTERTWINED*","Points":8087,"X":499,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499007Z"},{"ID":35915,"Name":"Podgrodzie","Points":3783,"X":578,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499008Z"},{"ID":35916,"Name":"Wioska 01","Points":3687,"X":349,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":3372959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499008Z"},{"ID":35917,"Name":"*5612*cc NajdƂuĆŒszy zasięg","Points":10048,"X":671,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499009Z"},{"ID":35918,"Name":"*073*","Points":10211,"X":347,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499009Z"},{"ID":35919,"Name":"WƂocƂawek-Hubix","Points":9024,"X":666,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49901Z"},{"ID":35920,"Name":"Pomidorowy dzem","Points":10728,"X":683,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49901Z"},{"ID":35921,"Name":"Wioska barbarzyƄska","Points":3130,"X":668,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":478956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499011Z"},{"ID":35922,"Name":"035","Points":10362,"X":334,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499012Z"},{"ID":35923,"Name":"0312","Points":9354,"X":547,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499012Z"},{"ID":35924,"Name":"Osada koczownikĂłw","Points":9190,"X":512,"Y":684,"Continent":"K65","Bonus":5,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499013Z"},{"ID":35925,"Name":"#0123 tomek791103","Points":7932,"X":478,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499013Z"},{"ID":35926,"Name":"AG04","Points":9747,"X":592,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499014Z"},{"ID":35927,"Name":"Wioska Bochun10","Points":10311,"X":315,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499014Z"},{"ID":35928,"Name":"Wioska barbarzyƄska","Points":7566,"X":517,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499015Z"},{"ID":35929,"Name":"Upa","Points":4632,"X":328,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499015Z"},{"ID":35930,"Name":"ehhh no","Points":6019,"X":396,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499016Z"},{"ID":35931,"Name":"105","Points":8423,"X":592,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499016Z"},{"ID":35932,"Name":"005","Points":4094,"X":672,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499017Z"},{"ID":35933,"Name":"Wioska barbarzyƄska","Points":10728,"X":681,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499017Z"},{"ID":35934,"Name":"#069#","Points":9761,"X":637,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499018Z"},{"ID":35935,"Name":"Ob Konfederacja","Points":9924,"X":432,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499018Z"},{"ID":35936,"Name":"- 185 - SS","Points":6852,"X":550,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499019Z"},{"ID":35937,"Name":"013","Points":7894,"X":608,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499019Z"},{"ID":35938,"Name":"Szlachcic","Points":10481,"X":396,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49902Z"},{"ID":35939,"Name":"Pd 01","Points":6730,"X":361,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499021Z"},{"ID":35940,"Name":"Winterhome.018","Points":10178,"X":501,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499021Z"},{"ID":35941,"Name":"010 Lothric","Points":10495,"X":521,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499022Z"},{"ID":35942,"Name":"Aa to co ?","Points":10066,"X":344,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499022Z"},{"ID":35943,"Name":"*146*","Points":10311,"X":341,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499023Z"},{"ID":35944,"Name":"**10**","Points":10998,"X":669,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499023Z"},{"ID":35945,"Name":"063","Points":6374,"X":682,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499024Z"},{"ID":35946,"Name":"Piskorz","Points":4150,"X":322,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499024Z"},{"ID":35947,"Name":"Dream on","Points":8897,"X":311,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499025Z"},{"ID":35948,"Name":"*148*","Points":6664,"X":345,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499025Z"},{"ID":35949,"Name":"Dream on","Points":9489,"X":310,"Y":497,"Continent":"K43","Bonus":7,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499026Z"},{"ID":35950,"Name":"RĂłd smoka","Points":9053,"X":690,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499026Z"},{"ID":35951,"Name":"Out of Touch","Points":9766,"X":324,"Y":437,"Continent":"K43","Bonus":5,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499027Z"},{"ID":35952,"Name":"Wioska barbarzyƄska","Points":6596,"X":521,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499027Z"},{"ID":35953,"Name":"=|05|=","Points":10495,"X":645,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499028Z"},{"ID":35954,"Name":"C02","Points":4556,"X":687,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499028Z"},{"ID":35955,"Name":"KRÓL PAPI WIELKI","Points":10224,"X":638,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499029Z"},{"ID":35956,"Name":"Wioska 072","Points":9761,"X":662,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499029Z"},{"ID":35957,"Name":"wysypisko ƛmieci","Points":8521,"X":321,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49903Z"},{"ID":35958,"Name":"052.Stradi","Points":10495,"X":453,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499031Z"},{"ID":35959,"Name":"Y | Forest Cyaaaanku","Points":10000,"X":318,"Y":487,"Continent":"K43","Bonus":7,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499031Z"},{"ID":35960,"Name":"Out of Touch","Points":2917,"X":323,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499032Z"},{"ID":35961,"Name":"$BostonCeltics","Points":7754,"X":690,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499032Z"},{"ID":35962,"Name":".achim.","Points":10375,"X":536,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499033Z"},{"ID":35963,"Name":"[013] Bąkopierdy","Points":9312,"X":671,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499033Z"},{"ID":35964,"Name":"Opole!","Points":11321,"X":680,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499034Z"},{"ID":35965,"Name":"KRÓL PAPI WIELKI","Points":9706,"X":648,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499034Z"},{"ID":35966,"Name":"kto ananasowy pod wodą ma dom","Points":8188,"X":677,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499035Z"},{"ID":35967,"Name":"*035*","Points":10211,"X":346,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499035Z"},{"ID":35968,"Name":"C0039","Points":10362,"X":310,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499036Z"},{"ID":35969,"Name":"X | Forest Cyaaaanku","Points":10000,"X":318,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499036Z"},{"ID":35970,"Name":"Szlachcic","Points":8709,"X":506,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499037Z"},{"ID":35971,"Name":"BSK1","Points":9098,"X":650,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":849066044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499037Z"},{"ID":35972,"Name":"0166","Points":10216,"X":376,"Y":640,"Continent":"K63","Bonus":9,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499038Z"},{"ID":35973,"Name":"002 Ceris","Points":10083,"X":661,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499038Z"},{"ID":35974,"Name":"Wioska 068","Points":9761,"X":652,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499039Z"},{"ID":35975,"Name":"Muchomor *001*","Points":8878,"X":516,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499039Z"},{"ID":35976,"Name":"040","Points":9993,"X":538,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49904Z"},{"ID":35977,"Name":"Out of Touch","Points":4634,"X":322,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49904Z"},{"ID":35978,"Name":"Darma dla zawodnika","Points":8430,"X":523,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499041Z"},{"ID":35979,"Name":"--06--","Points":7202,"X":346,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499041Z"},{"ID":35980,"Name":"Winterhome.046","Points":10178,"X":492,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499042Z"},{"ID":35981,"Name":"(029)Desh","Points":3345,"X":322,"Y":560,"Continent":"K53","Bonus":7,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499042Z"},{"ID":35982,"Name":"Wioska Lisseks","Points":10083,"X":663,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499043Z"},{"ID":35983,"Name":"Wioska barbarzyƄska","Points":10068,"X":519,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499044Z"},{"ID":35984,"Name":"Wioska barbarzyƄska","Points":7280,"X":604,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499044Z"},{"ID":35985,"Name":"- 203 - SS","Points":6812,"X":536,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499045Z"},{"ID":35986,"Name":"Rosetta","Points":2869,"X":408,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499045Z"},{"ID":35987,"Name":"Suppi","Points":9912,"X":602,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499046Z"},{"ID":35988,"Name":"Didek","Points":5901,"X":674,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499046Z"},{"ID":35989,"Name":"#0159 Kamil0ss1","Points":10178,"X":482,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499047Z"},{"ID":35990,"Name":"Szymon9410","Points":8082,"X":391,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499047Z"},{"ID":35991,"Name":"*027*","Points":10211,"X":348,"Y":392,"Continent":"K33","Bonus":1,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499048Z"},{"ID":35992,"Name":"[123] North23","Points":10049,"X":575,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499048Z"},{"ID":35993,"Name":"Winterhome.014","Points":10178,"X":510,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499049Z"},{"ID":35994,"Name":"08. Oslo","Points":9362,"X":687,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499049Z"},{"ID":35995,"Name":"X | Forest Cyaaaanku","Points":9976,"X":319,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49905Z"},{"ID":35996,"Name":"!!36 50 xxx","Points":10008,"X":607,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49905Z"},{"ID":35997,"Name":"Jednak wolę gofry","Points":8395,"X":419,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499051Z"},{"ID":35998,"Name":"#0127 korniczeks","Points":10178,"X":470,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499052Z"},{"ID":35999,"Name":"Wioska barbarzyƄska","Points":5174,"X":322,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499052Z"},{"ID":36000,"Name":"228","Points":3350,"X":421,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499053Z"},{"ID":36001,"Name":"AAA","Points":9684,"X":543,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499053Z"},{"ID":36002,"Name":"095 Tomek","Points":4591,"X":683,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499054Z"},{"ID":36003,"Name":"Wioska barbarzyƄska","Points":5009,"X":507,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499054Z"},{"ID":36004,"Name":".achim.","Points":10946,"X":535,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499055Z"},{"ID":36005,"Name":"#020#","Points":9761,"X":626,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499055Z"},{"ID":36006,"Name":"A 024","Points":4007,"X":366,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499056Z"},{"ID":36007,"Name":"006 Aberon","Points":10083,"X":660,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499056Z"},{"ID":36008,"Name":"Rubiez14","Points":7277,"X":313,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499057Z"},{"ID":36009,"Name":"071 Chybik tu byƂ","Points":10195,"X":586,"Y":589,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499057Z"},{"ID":36010,"Name":"215","Points":6760,"X":430,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499058Z"},{"ID":36011,"Name":"KocpoƂuch 4","Points":3882,"X":329,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":848949597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499058Z"},{"ID":36012,"Name":"OFF","Points":10343,"X":655,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499059Z"},{"ID":36013,"Name":"BoOmBaa..","Points":10242,"X":432,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499059Z"},{"ID":36014,"Name":"003","Points":10019,"X":601,"Y":348,"Continent":"K36","Bonus":4,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49906Z"},{"ID":36016,"Name":"(013)Jah Keved","Points":8900,"X":327,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49906Z"},{"ID":36017,"Name":"- 188 - SS","Points":7431,"X":549,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499061Z"},{"ID":36019,"Name":"002","Points":10236,"X":342,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499061Z"},{"ID":36020,"Name":"013","Points":9379,"X":531,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499062Z"},{"ID":36021,"Name":"_PUSTA !","Points":10495,"X":678,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499063Z"},{"ID":36022,"Name":"Z|011| Wioska VIIII","Points":7676,"X":455,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499063Z"},{"ID":36023,"Name":"RTS 13","Points":10146,"X":578,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499064Z"},{"ID":36024,"Name":"PoƂudnie.008","Points":10300,"X":554,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499064Z"},{"ID":36025,"Name":"Szlachcic","Points":10484,"X":395,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499065Z"},{"ID":36026,"Name":"AAA","Points":9455,"X":542,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499065Z"},{"ID":36027,"Name":"Zeta Reticuli O","Points":9560,"X":420,"Y":335,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499066Z"},{"ID":36028,"Name":"069 Wioska 020","Points":8180,"X":661,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499066Z"},{"ID":36029,"Name":"- 194 - SS","Points":6644,"X":530,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499067Z"},{"ID":36030,"Name":"Darma dla zawodnika","Points":6492,"X":524,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499067Z"},{"ID":36031,"Name":"25. F-H-X","Points":8292,"X":682,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499068Z"},{"ID":36032,"Name":"*005*","Points":10211,"X":353,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499068Z"},{"ID":36033,"Name":"Wioska barbarzyƄska","Points":6989,"X":313,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499069Z"},{"ID":36034,"Name":"Wioska barbarzyƄska","Points":5229,"X":603,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499069Z"},{"ID":36035,"Name":"|028| Nowa Zelandia","Points":9782,"X":508,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49907Z"},{"ID":36036,"Name":"060.","Points":10019,"X":651,"Y":393,"Continent":"K36","Bonus":4,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49907Z"},{"ID":36037,"Name":"C0059","Points":10362,"X":315,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499071Z"},{"ID":36038,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":318,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499071Z"},{"ID":36039,"Name":"C 003","Points":10426,"X":682,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499072Z"},{"ID":36040,"Name":"174...Segadorr_M","Points":10602,"X":443,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499073Z"},{"ID":36041,"Name":"Sony 911","Points":10221,"X":623,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499073Z"},{"ID":36042,"Name":"Szlachcic","Points":10478,"X":388,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499074Z"},{"ID":36044,"Name":"Wioska Zorro 011","Points":9710,"X":664,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499074Z"},{"ID":36045,"Name":"P015 Svargrond","Points":9761,"X":660,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499075Z"},{"ID":36046,"Name":"{37} Wieƛ GliƄsk","Points":2713,"X":368,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499075Z"},{"ID":36047,"Name":"#055#","Points":9761,"X":638,"Y":629,"Continent":"K66","Bonus":9,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499076Z"},{"ID":36048,"Name":"-005- ChwaƂa Imperium","Points":6766,"X":618,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499076Z"},{"ID":36049,"Name":"[034] Wioska barbarzyƄska","Points":9288,"X":673,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499077Z"},{"ID":36050,"Name":"C03","Points":6149,"X":687,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499077Z"},{"ID":36051,"Name":"WƂadcy PóƂnocy 04","Points":6889,"X":690,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499078Z"},{"ID":36052,"Name":"2.Ronda","Points":4480,"X":567,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499078Z"},{"ID":36053,"Name":"003","Points":9589,"X":324,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499079Z"},{"ID":36054,"Name":"AAA","Points":10503,"X":526,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499079Z"},{"ID":36055,"Name":"C04","Points":3013,"X":685,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49908Z"},{"ID":36056,"Name":"Wioska barbarzyƄska1a","Points":9554,"X":394,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49908Z"},{"ID":36058,"Name":"TWIERDZA #3","Points":2843,"X":583,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499081Z"},{"ID":36059,"Name":"Wioska barbarzyƄska","Points":2054,"X":410,"Y":658,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499081Z"},{"ID":36060,"Name":"09. Berlin","Points":9362,"X":684,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499082Z"},{"ID":36062,"Name":"Taran 036","Points":7530,"X":641,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499083Z"},{"ID":36063,"Name":"~ MIEDĆčYƃ ~","Points":10103,"X":320,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":698540331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499083Z"},{"ID":36064,"Name":"|059| Barba","Points":6788,"X":496,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499084Z"},{"ID":36065,"Name":"Taran 014","Points":10971,"X":644,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499084Z"},{"ID":36067,"Name":"002 Choroszcz","Points":10083,"X":529,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499085Z"},{"ID":36068,"Name":"0273","Points":10019,"X":559,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499085Z"},{"ID":36069,"Name":"Jednak wolę gofry","Points":9792,"X":417,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499086Z"},{"ID":36070,"Name":"#068#","Points":9761,"X":633,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499086Z"},{"ID":36071,"Name":"Szlachcic","Points":10487,"X":385,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499087Z"},{"ID":36072,"Name":"AG09","Points":9157,"X":588,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499087Z"},{"ID":36073,"Name":"z 181-A004","Points":8470,"X":353,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499088Z"},{"ID":36074,"Name":"Piechy","Points":6244,"X":354,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499089Z"},{"ID":36075,"Name":"#013#","Points":9761,"X":629,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499089Z"},{"ID":36076,"Name":"PaƄstfa PuƂnocy","Points":9803,"X":585,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49909Z"},{"ID":36077,"Name":".achim.","Points":8944,"X":487,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49909Z"},{"ID":36078,"Name":"006. Malce","Points":10068,"X":339,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499091Z"},{"ID":36079,"Name":"001 Du Weldenvarden","Points":9969,"X":662,"Y":595,"Continent":"K56","Bonus":8,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499091Z"},{"ID":36080,"Name":"123","Points":10373,"X":472,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499092Z"},{"ID":36082,"Name":"#! Szlachcic","Points":10478,"X":383,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499092Z"},{"ID":36083,"Name":"BrzeĆșno","Points":7697,"X":666,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499093Z"},{"ID":36084,"Name":"005 Maka Paka","Points":1679,"X":594,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":699576407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499093Z"},{"ID":36085,"Name":"Ć»UBR .::.Adaczu/04","Points":6632,"X":620,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499094Z"},{"ID":36086,"Name":"Wioska barbarzyƄska","Points":8020,"X":326,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499094Z"},{"ID":36087,"Name":"**27**","Points":10480,"X":675,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499095Z"},{"ID":36088,"Name":"Szlachcic","Points":10495,"X":391,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499095Z"},{"ID":36089,"Name":"Out of Touch","Points":2685,"X":323,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499096Z"},{"ID":36090,"Name":"X | Forest Cyaaaanku","Points":10000,"X":319,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499097Z"},{"ID":36091,"Name":"*114*","Points":10026,"X":361,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499097Z"},{"ID":36092,"Name":"- DragonH","Points":6828,"X":546,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499098Z"},{"ID":36093,"Name":"Wioska barbarzyƄska","Points":9054,"X":688,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499098Z"},{"ID":36094,"Name":"*031*","Points":10211,"X":348,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499099Z"},{"ID":36095,"Name":"TWIERDZA .:073:.","Points":8983,"X":676,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499099Z"},{"ID":36096,"Name":"C0182","Points":9130,"X":320,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4991Z"},{"ID":36097,"Name":"AAA","Points":9835,"X":529,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4991Z"},{"ID":36098,"Name":"005. Trop","Points":10311,"X":562,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499101Z"},{"ID":36099,"Name":"Wioska barbarzyƄska","Points":3997,"X":338,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":3990066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499101Z"},{"ID":36100,"Name":"013 FF","Points":1717,"X":318,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499102Z"},{"ID":36101,"Name":"Taran","Points":10115,"X":342,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499102Z"},{"ID":36102,"Name":"Wioska barbarzyƄska","Points":10728,"X":685,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499103Z"},{"ID":36103,"Name":"035","Points":9384,"X":529,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499103Z"},{"ID":36104,"Name":"012.","Points":9431,"X":639,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499104Z"},{"ID":36105,"Name":"049.Stradi","Points":10495,"X":447,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499104Z"},{"ID":36106,"Name":"002","Points":5956,"X":310,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499105Z"},{"ID":36107,"Name":"I092","Points":8392,"X":682,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499105Z"},{"ID":36108,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":314,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499106Z"},{"ID":36109,"Name":"Szlachcic","Points":8021,"X":398,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499106Z"},{"ID":36110,"Name":"1004","Points":9821,"X":617,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499107Z"},{"ID":36111,"Name":"O28 Elva","Points":10812,"X":677,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499108Z"},{"ID":36112,"Name":"*122*","Points":9001,"X":361,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499108Z"},{"ID":36115,"Name":"008. Spurs","Points":4875,"X":485,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499109Z"},{"ID":36116,"Name":"Szlachcic","Points":10365,"X":383,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499109Z"},{"ID":36117,"Name":"New World","Points":10294,"X":428,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49911Z"},{"ID":36118,"Name":"BULWAR","Points":6398,"X":399,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49911Z"},{"ID":36119,"Name":"New Land 22","Points":2493,"X":340,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499111Z"},{"ID":36120,"Name":"C0270","Points":5739,"X":318,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499111Z"},{"ID":36121,"Name":"Ave Why!","Points":3610,"X":481,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499112Z"},{"ID":36122,"Name":"0401","Points":10019,"X":561,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499112Z"},{"ID":36123,"Name":"Lord Lord Franek .#175","Points":10160,"X":519,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499113Z"},{"ID":36124,"Name":"Tesa 13","Points":7100,"X":605,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499113Z"},{"ID":36125,"Name":"???","Points":8353,"X":475,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499114Z"},{"ID":36126,"Name":"_PUSTA","Points":10213,"X":660,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499114Z"},{"ID":36127,"Name":"009 Kingsthorpe","Points":7647,"X":604,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499115Z"},{"ID":36128,"Name":"[042] Wioska barbarzyƄska","Points":8839,"X":674,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499115Z"},{"ID":36129,"Name":"Grvvyq 113k$","Points":7208,"X":682,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499116Z"},{"ID":36130,"Name":"X | Forest Cyaaaanku","Points":10000,"X":314,"Y":469,"Continent":"K43","Bonus":4,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499116Z"},{"ID":36131,"Name":"Sekou","Points":9888,"X":681,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499117Z"},{"ID":36132,"Name":"cos cos","Points":9835,"X":436,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499118Z"},{"ID":36133,"Name":"008 Utah","Points":4058,"X":489,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499118Z"},{"ID":36134,"Name":"Den Bosch","Points":10030,"X":620,"Y":359,"Continent":"K36","Bonus":2,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499119Z"},{"ID":36135,"Name":"psycha sitting","Points":8704,"X":425,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499119Z"},{"ID":36136,"Name":"MaleƄstwo","Points":9865,"X":386,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49912Z"},{"ID":36137,"Name":"14. Aeris Gainsborough","Points":10495,"X":524,"Y":614,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49912Z"},{"ID":36138,"Name":"Chekku - meito","Points":9976,"X":321,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499121Z"},{"ID":36139,"Name":"Wioska barbarzyƄska","Points":10728,"X":686,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499121Z"},{"ID":36140,"Name":"029Wioska barbarzyƄska","Points":7099,"X":682,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499122Z"},{"ID":36141,"Name":"053 Wioska 002","Points":10358,"X":663,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499122Z"},{"ID":36142,"Name":"Wioska barbarzyƄska","Points":6002,"X":348,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499123Z"},{"ID":36143,"Name":"Wyjƛcie Awaryjne","Points":10316,"X":682,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499123Z"},{"ID":36144,"Name":"Ronin P","Points":9995,"X":637,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499124Z"},{"ID":36145,"Name":"AGA2","Points":7770,"X":684,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499124Z"},{"ID":36146,"Name":"AAA","Points":11156,"X":549,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499125Z"},{"ID":36147,"Name":"Winterhome.021","Points":10178,"X":498,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499125Z"},{"ID":36148,"Name":"0192","Points":7376,"X":474,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499126Z"},{"ID":36149,"Name":"31. Nawzajem","Points":6087,"X":557,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499126Z"},{"ID":36150,"Name":"Lord Arsey KING","Points":10285,"X":576,"Y":591,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499127Z"},{"ID":36151,"Name":"J#012","Points":4833,"X":576,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499127Z"},{"ID":36152,"Name":"Wioska Bochun10","Points":10311,"X":319,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499128Z"},{"ID":36153,"Name":"AAA","Points":9778,"X":542,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499128Z"},{"ID":36154,"Name":"04 Batat","Points":6194,"X":642,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499129Z"},{"ID":36155,"Name":"Wegorz","Points":3818,"X":318,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499129Z"},{"ID":36156,"Name":"*INTERTWINED*","Points":9711,"X":504,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49913Z"},{"ID":36157,"Name":"Winterhome.017","Points":10178,"X":500,"Y":314,"Continent":"K35","Bonus":8,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49913Z"},{"ID":36158,"Name":"Winterhome.019","Points":10178,"X":503,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499131Z"},{"ID":36159,"Name":"#042#","Points":9761,"X":629,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499132Z"},{"ID":36160,"Name":"40k$ Grvvyq","Points":10495,"X":673,"Y":564,"Continent":"K56","Bonus":5,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499132Z"},{"ID":36161,"Name":"AAA","Points":7584,"X":525,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499133Z"},{"ID":36162,"Name":"0040","Points":10211,"X":569,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499133Z"},{"ID":36163,"Name":"10 Nowa Cytadela","Points":9630,"X":561,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499134Z"},{"ID":36164,"Name":"#008#","Points":9761,"X":621,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499134Z"},{"ID":36165,"Name":"START 01","Points":9700,"X":579,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499135Z"},{"ID":36166,"Name":"005","Points":4788,"X":325,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499135Z"},{"ID":36167,"Name":"Wioska barbarzyƄska","Points":5072,"X":653,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499136Z"},{"ID":36168,"Name":"AAA","Points":9899,"X":531,"Y":318,"Continent":"K35","Bonus":3,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499136Z"},{"ID":36170,"Name":"I064","Points":9958,"X":687,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499137Z"},{"ID":36171,"Name":"Ob Konfederacja","Points":10079,"X":433,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499137Z"},{"ID":36172,"Name":"*INTERTWINED*","Points":8276,"X":500,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499138Z"},{"ID":36173,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":571,"Y":576,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499138Z"},{"ID":36174,"Name":"_PUSTA+","Points":10495,"X":675,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499139Z"},{"ID":36175,"Name":"*170*","Points":8975,"X":334,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499139Z"},{"ID":36176,"Name":"Minas Tirith","Points":10019,"X":629,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49914Z"},{"ID":36177,"Name":"Parole","Points":3674,"X":337,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49914Z"},{"ID":36178,"Name":"08 Twierdza PóƂnocna","Points":4191,"X":565,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499141Z"},{"ID":36179,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":319,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499141Z"},{"ID":36180,"Name":"Wioska barbarzyƄska","Points":2051,"X":563,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":849106785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499142Z"},{"ID":36181,"Name":"kathare","Points":9804,"X":550,"Y":645,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499143Z"},{"ID":36182,"Name":"Wioska barbarzyƄska","Points":2930,"X":476,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499143Z"},{"ID":36183,"Name":"Ć»elazny deff","Points":10040,"X":361,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499144Z"},{"ID":36184,"Name":"002 Desant","Points":8725,"X":482,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499144Z"},{"ID":36185,"Name":"6.Novorepnoye","Points":6242,"X":422,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499145Z"},{"ID":36186,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":340,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499145Z"},{"ID":36187,"Name":"Darma dla zawodnika","Points":4724,"X":527,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499146Z"},{"ID":36188,"Name":"Didek","Points":7297,"X":676,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499146Z"},{"ID":36189,"Name":"WschĂłd Droga 005","Points":10311,"X":673,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499147Z"},{"ID":36190,"Name":"Szlachcic","Points":9336,"X":395,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499147Z"},{"ID":36191,"Name":"#070#","Points":9761,"X":634,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499148Z"},{"ID":36192,"Name":"Szlachcic","Points":10487,"X":377,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499148Z"},{"ID":36193,"Name":"Muchomor *008*","Points":10292,"X":515,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499149Z"},{"ID":36194,"Name":"Zeta Reticuli O","Points":10728,"X":421,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499149Z"},{"ID":36195,"Name":"No.24","Points":5861,"X":477,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49915Z"},{"ID":36196,"Name":"C 017","Points":7009,"X":689,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49915Z"},{"ID":36197,"Name":"- 159 - SS","Points":10000,"X":544,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499151Z"},{"ID":36198,"Name":"AAA","Points":7071,"X":540,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499151Z"},{"ID":36199,"Name":"A020","Points":10237,"X":607,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499152Z"},{"ID":36200,"Name":"Lord Nc3dyh 1","Points":5687,"X":320,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699509284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499152Z"},{"ID":36201,"Name":"!#Szlachcic","Points":10838,"X":380,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499153Z"},{"ID":36202,"Name":"AAA","Points":8545,"X":549,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499153Z"},{"ID":36203,"Name":"C 008","Points":7014,"X":686,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499154Z"},{"ID":36204,"Name":"Komornicy 012","Points":4600,"X":351,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499155Z"},{"ID":36205,"Name":"Out of Touch","Points":10000,"X":326,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499155Z"},{"ID":36206,"Name":"Wioska Bochun10","Points":7508,"X":315,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499156Z"},{"ID":36207,"Name":"*5615* Winchester","Points":10287,"X":673,"Y":558,"Continent":"K56","Bonus":8,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499156Z"},{"ID":36208,"Name":"#0082 barbarzyƄska","Points":10061,"X":465,"Y":342,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499157Z"},{"ID":36209,"Name":"New Land 20","Points":3235,"X":345,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499157Z"},{"ID":36210,"Name":"B024","Points":5318,"X":517,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499158Z"},{"ID":36211,"Name":".achim.","Points":6706,"X":487,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499158Z"},{"ID":36212,"Name":"O65 Yongan","Points":10548,"X":676,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499159Z"},{"ID":36213,"Name":".achim.","Points":9844,"X":485,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499159Z"},{"ID":36214,"Name":"Ob Konfederacja","Points":9816,"X":431,"Y":324,"Continent":"K34","Bonus":1,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49916Z"},{"ID":36215,"Name":"Dream on","Points":9488,"X":309,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49916Z"},{"ID":36216,"Name":"Zadupie","Points":1923,"X":634,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499161Z"},{"ID":36218,"Name":"Cmentarz WrocƂawska","Points":6284,"X":682,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499161Z"},{"ID":36219,"Name":"|070| BlackBird 5","Points":8128,"X":492,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499162Z"},{"ID":36220,"Name":"Ave Why!","Points":10503,"X":450,"Y":682,"Continent":"K64","Bonus":1,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499162Z"},{"ID":36221,"Name":".:014:. ma","Points":2716,"X":641,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":849078297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499163Z"},{"ID":36222,"Name":"TWIERDZA .:023:.","Points":10299,"X":679,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499163Z"},{"ID":36223,"Name":"Wioska barbarzyƄska","Points":3150,"X":436,"Y":445,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499164Z"},{"ID":36224,"Name":"159 Nocny Jastrząb 004","Points":7936,"X":656,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499164Z"},{"ID":36225,"Name":"Zamek Kurowej","Points":2878,"X":654,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499165Z"},{"ID":36227,"Name":"#0236 deleted","Points":10178,"X":474,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499165Z"},{"ID":36228,"Name":"017 Byrgenwerth","Points":10068,"X":522,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499166Z"},{"ID":36229,"Name":"Szlachcic","Points":10478,"X":395,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499166Z"},{"ID":36231,"Name":"(035)Kharbranth","Points":5272,"X":332,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499167Z"},{"ID":36232,"Name":"Kentin ufam Tobie","Points":10141,"X":321,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499167Z"},{"ID":36233,"Name":"C06","Points":4314,"X":685,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499168Z"},{"ID":36234,"Name":"18. Moskwa","Points":9362,"X":683,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499168Z"},{"ID":36235,"Name":"Wioska dzikich zwierząt","Points":10204,"X":580,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499169Z"},{"ID":36236,"Name":"Wioska 2","Points":8843,"X":331,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499169Z"},{"ID":36237,"Name":"Szlachcic","Points":10401,"X":385,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49917Z"},{"ID":36238,"Name":"*024*","Points":10211,"X":356,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49917Z"},{"ID":36239,"Name":"BACÓWKA |043|","Points":5875,"X":667,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499171Z"},{"ID":36240,"Name":"AGA4","Points":10107,"X":687,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499171Z"},{"ID":36241,"Name":"Koza","Points":4607,"X":322,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499172Z"},{"ID":36242,"Name":"Szlachcic","Points":9939,"X":381,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499172Z"},{"ID":36243,"Name":"Napewno to nie jest off","Points":4707,"X":590,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499173Z"},{"ID":36244,"Name":"PYRLANDIA 029 sobex510","Points":9707,"X":564,"Y":588,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499174Z"},{"ID":36245,"Name":"[029] Wioska barbarzyƄska","Points":9312,"X":673,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499174Z"},{"ID":36246,"Name":"233","Points":3967,"X":422,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499175Z"},{"ID":36247,"Name":"New World","Points":10292,"X":432,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499175Z"},{"ID":36248,"Name":"*026*","Points":10211,"X":348,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499176Z"},{"ID":36249,"Name":"Wioska barbarzyƄska","Points":6556,"X":319,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499176Z"},{"ID":36250,"Name":"z internacionale 33","Points":10160,"X":355,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499177Z"},{"ID":36251,"Name":"RĂłzanka","Points":1997,"X":322,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499177Z"},{"ID":36252,"Name":"Napewno to nie jest off","Points":5237,"X":586,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499178Z"},{"ID":36253,"Name":"LordFrotto2","Points":6355,"X":563,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":849106785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499178Z"},{"ID":36254,"Name":"Twierdza 013","Points":2582,"X":316,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":7563185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499179Z"},{"ID":36255,"Name":"Dream on","Points":9744,"X":310,"Y":492,"Continent":"K43","Bonus":6,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499179Z"},{"ID":36256,"Name":"25. Wioska Raukodel","Points":2906,"X":650,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":9320272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49918Z"},{"ID":36258,"Name":"*5612*a Wycieczka","Points":10287,"X":668,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49918Z"},{"ID":36259,"Name":"Sieja","Points":2488,"X":321,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499181Z"},{"ID":36260,"Name":"Wioska barbarzyƄska","Points":9896,"X":681,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499181Z"},{"ID":36262,"Name":"064","Points":7915,"X":535,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499182Z"},{"ID":36263,"Name":"New World","Points":10294,"X":429,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499182Z"},{"ID":36264,"Name":"*005*. Rivia","Points":9835,"X":314,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499183Z"},{"ID":36265,"Name":"Wioska Vintorez","Points":8621,"X":372,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499183Z"},{"ID":36266,"Name":"z internacionale 08","Points":9746,"X":358,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499184Z"},{"ID":36267,"Name":"C 001","Points":10144,"X":689,"Y":511,"Continent":"K56","Bonus":6,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499185Z"},{"ID":36268,"Name":"WƂadcy PóƂnocy 05","Points":6153,"X":688,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499185Z"},{"ID":36269,"Name":"Upa02","Points":5180,"X":327,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499186Z"},{"ID":36270,"Name":"Wioska BarbarzyƄska","Points":10019,"X":544,"Y":481,"Continent":"K45","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499186Z"},{"ID":36271,"Name":"063. Rona","Points":10083,"X":665,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499187Z"},{"ID":36272,"Name":"Wioska barbarzyƄska","Points":3359,"X":597,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499187Z"},{"ID":36273,"Name":"010 Desant","Points":9164,"X":481,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499188Z"},{"ID":36274,"Name":"I063","Points":10495,"X":685,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499188Z"},{"ID":36275,"Name":"Szlachcic","Points":10476,"X":387,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499189Z"},{"ID":36276,"Name":"WschĂłd X4","Points":10375,"X":688,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499189Z"},{"ID":36278,"Name":"Szlachcic","Points":10478,"X":394,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49919Z"},{"ID":36279,"Name":"200...Segador","Points":10654,"X":457,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49919Z"},{"ID":36280,"Name":"*INTERTWINED*","Points":9711,"X":507,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499191Z"},{"ID":36281,"Name":"Wioska Bochun10","Points":7908,"X":317,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499191Z"},{"ID":36282,"Name":"Wioska 086","Points":7074,"X":656,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499192Z"},{"ID":36283,"Name":"Out of Touch","Points":5481,"X":320,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499192Z"},{"ID":36285,"Name":"Zeta Reticuli O","Points":10997,"X":418,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499193Z"},{"ID":36286,"Name":"**31**","Points":9769,"X":668,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499193Z"},{"ID":36287,"Name":"041. nie zgadniesz jaka wioska","Points":10462,"X":688,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499194Z"},{"ID":36288,"Name":"069","Points":6734,"X":543,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499194Z"},{"ID":36289,"Name":"Wioska Zorro 014","Points":8724,"X":666,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499195Z"},{"ID":36290,"Name":"Winterhome.035","Points":10178,"X":495,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499196Z"},{"ID":36291,"Name":"BIRMINGAM","Points":7160,"X":397,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499196Z"},{"ID":36292,"Name":"- 189 - SS","Points":8514,"X":533,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499197Z"},{"ID":36293,"Name":"B023","Points":7721,"X":518,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499197Z"},{"ID":36294,"Name":"Amon Sul","Points":10132,"X":460,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499198Z"},{"ID":36295,"Name":"*182*","Points":10211,"X":340,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499198Z"},{"ID":36296,"Name":"014","Points":7335,"X":609,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":8649412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499199Z"},{"ID":36297,"Name":"AAA","Points":5164,"X":525,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499199Z"},{"ID":36298,"Name":"a moĆŒe off ? :)","Points":9358,"X":638,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4992Z"},{"ID":36299,"Name":"001. MilanĂłwek","Points":7116,"X":316,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4992Z"},{"ID":36300,"Name":"KRÓL PAPI WIELKI","Points":9955,"X":646,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499201Z"},{"ID":36301,"Name":"_PUSTA !","Points":9727,"X":686,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499201Z"},{"ID":36302,"Name":"Osada koczownikĂłw","Points":10306,"X":622,"Y":643,"Continent":"K66","Bonus":3,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499202Z"},{"ID":36303,"Name":"R 025","Points":9309,"X":485,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499202Z"},{"ID":36304,"Name":"fff","Points":10680,"X":490,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499203Z"},{"ID":36305,"Name":"Wodogrzmoty MaƂe","Points":9771,"X":654,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499203Z"},{"ID":36306,"Name":"090 Nowy Rok","Points":9878,"X":655,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499204Z"},{"ID":36307,"Name":"#0203 Segadorr dar","Points":8760,"X":461,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499204Z"},{"ID":36308,"Name":"*089*","Points":10211,"X":359,"Y":382,"Continent":"K33","Bonus":8,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499205Z"},{"ID":36309,"Name":"Chekku - meito","Points":9976,"X":337,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499205Z"},{"ID":36310,"Name":"Gattacka","Points":9570,"X":680,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499206Z"},{"ID":36311,"Name":"X | Forest Cyaaaanku","Points":10000,"X":319,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499206Z"},{"ID":36312,"Name":"061 Wioska 013","Points":9697,"X":663,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499207Z"},{"ID":36313,"Name":"Szlachcic","Points":10495,"X":392,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499207Z"},{"ID":36314,"Name":"Wioska barbarzyƄska","Points":9202,"X":587,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499208Z"},{"ID":36315,"Name":"181...SEGADOR","Points":8011,"X":442,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499209Z"},{"ID":36316,"Name":"I058","Points":9987,"X":682,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499209Z"},{"ID":36317,"Name":"Szlachcic","Points":10478,"X":386,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49921Z"},{"ID":36318,"Name":"*101","Points":9779,"X":581,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49921Z"},{"ID":36320,"Name":"A 037","Points":3261,"X":366,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499211Z"},{"ID":36321,"Name":"(021)Emul","Points":4275,"X":326,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499211Z"},{"ID":36322,"Name":"007","Points":3206,"X":310,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499212Z"},{"ID":36323,"Name":"zzzGranica Bledu 13","Points":6920,"X":642,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499212Z"},{"ID":36324,"Name":"z 181-A001 skasowano","Points":9842,"X":350,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499213Z"},{"ID":36325,"Name":"Wioska barbarzyƄska","Points":9136,"X":523,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499213Z"},{"ID":36326,"Name":"Auu 08","Points":4984,"X":576,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499214Z"},{"ID":36327,"Name":"025 Haligtree","Points":10119,"X":517,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499214Z"},{"ID":36328,"Name":"0167","Points":6669,"X":378,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499215Z"},{"ID":36329,"Name":"Wioska barbarzyƄska","Points":7756,"X":326,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499215Z"},{"ID":36330,"Name":"Szlachcic","Points":7389,"X":320,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499216Z"},{"ID":36331,"Name":"[002] Kleksowo","Points":10495,"X":675,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499216Z"},{"ID":36332,"Name":"W.O.S","Points":6215,"X":312,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499217Z"},{"ID":36333,"Name":"#0282 olcixx","Points":7472,"X":467,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499217Z"},{"ID":36334,"Name":"Walwaijk","Points":7263,"X":616,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499218Z"},{"ID":36335,"Name":"Out of Touch","Points":3934,"X":330,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499218Z"},{"ID":36336,"Name":"psycha sitting","Points":10178,"X":420,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499219Z"},{"ID":36337,"Name":"Winterhome.049","Points":10178,"X":494,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499219Z"},{"ID":36338,"Name":"psycha sitting","Points":10311,"X":405,"Y":663,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49922Z"},{"ID":36339,"Name":"AG01","Points":9747,"X":591,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499221Z"},{"ID":36340,"Name":"Jednak wolę gofry","Points":9820,"X":415,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499221Z"},{"ID":36341,"Name":"AAA","Points":7067,"X":541,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499222Z"},{"ID":36342,"Name":"Dream on","Points":9485,"X":312,"Y":503,"Continent":"K53","Bonus":9,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499222Z"},{"ID":36343,"Name":"Klaudek19","Points":3626,"X":631,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499223Z"},{"ID":36344,"Name":"Eindhoven","Points":10398,"X":618,"Y":352,"Continent":"K36","Bonus":3,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499223Z"},{"ID":36345,"Name":"Ć»UBR PSYCHIATRYK 010","Points":5464,"X":616,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499224Z"},{"ID":36346,"Name":"110","Points":7420,"X":591,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499224Z"},{"ID":36347,"Name":"03. Helsinki","Points":9362,"X":685,"Y":484,"Continent":"K46","Bonus":5,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499225Z"},{"ID":36348,"Name":"009","Points":6538,"X":313,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499225Z"},{"ID":36349,"Name":"~071.","Points":7202,"X":529,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499226Z"},{"ID":36351,"Name":"[027] Wioska barbarzyƄska","Points":9288,"X":672,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499226Z"},{"ID":36352,"Name":"A006","Points":10144,"X":496,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499227Z"},{"ID":36353,"Name":"B02","Points":11321,"X":688,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499227Z"},{"ID":36354,"Name":"Wioska barbarzyƄska","Points":3075,"X":647,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499228Z"},{"ID":36355,"Name":"Osada koczownikĂłw xxx","Points":9742,"X":658,"Y":606,"Continent":"K66","Bonus":4,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499228Z"},{"ID":36356,"Name":"186...Segador","Points":10787,"X":456,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499229Z"},{"ID":36357,"Name":"Szlachcic","Points":10478,"X":387,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499229Z"},{"ID":36358,"Name":"Ilonka","Points":9505,"X":597,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49923Z"},{"ID":36359,"Name":"Wonderwall","Points":9488,"X":325,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49923Z"},{"ID":36360,"Name":"Wioska Bochun10","Points":10311,"X":336,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499231Z"},{"ID":36361,"Name":"013 Kalifornia","Points":7832,"X":495,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499231Z"},{"ID":36362,"Name":"007Wioska barbarzyƄska","Points":10301,"X":400,"Y":337,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499232Z"},{"ID":36363,"Name":"Wyspa_11","Points":9638,"X":508,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499233Z"},{"ID":36364,"Name":"O0016","Points":9929,"X":499,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499233Z"},{"ID":36365,"Name":"Trochę tego będzie","Points":3285,"X":651,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499234Z"},{"ID":36366,"Name":"Wioska barbarzyƄska GĂłra","Points":9199,"X":627,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499234Z"},{"ID":36367,"Name":"Ob Konfederacja","Points":9871,"X":430,"Y":331,"Continent":"K34","Bonus":1,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499235Z"},{"ID":36368,"Name":"007","Points":10068,"X":525,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499235Z"},{"ID":36369,"Name":"psycha sitting","Points":5388,"X":402,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499236Z"},{"ID":36370,"Name":"171...Segadorr","Points":10971,"X":441,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499236Z"},{"ID":36371,"Name":"Ć»UBRAWKA 055","Points":10451,"X":612,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499237Z"},{"ID":36372,"Name":"C0166","Points":10362,"X":317,"Y":510,"Continent":"K53","Bonus":8,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499237Z"},{"ID":36374,"Name":"New Land 21","Points":3218,"X":337,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499238Z"},{"ID":36375,"Name":"K34 - [151] Before Land","Points":9226,"X":473,"Y":316,"Continent":"K34","Bonus":3,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499238Z"},{"ID":36376,"Name":"Winterhome.013","Points":10178,"X":498,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499239Z"},{"ID":36377,"Name":"Wioska joƂ","Points":8391,"X":627,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499239Z"},{"ID":36378,"Name":"Lord Nc3dyh","Points":9292,"X":319,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":699509284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49924Z"},{"ID":36379,"Name":"Wioska barbarzyƄska","Points":9747,"X":567,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49924Z"},{"ID":36380,"Name":"2.Sabadell","Points":4932,"X":582,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499241Z"},{"ID":36381,"Name":"[052] Malzahar 2","Points":6115,"X":676,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499241Z"},{"ID":36382,"Name":"Nowa 46","Points":7936,"X":665,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499242Z"},{"ID":36383,"Name":"B-01","Points":7417,"X":384,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499242Z"},{"ID":36384,"Name":"#Forza 02","Points":9672,"X":436,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499243Z"},{"ID":36385,"Name":"0269","Points":9368,"X":548,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499243Z"},{"ID":36386,"Name":"Ujek","Points":7829,"X":655,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499244Z"},{"ID":36387,"Name":"Taran","Points":10051,"X":340,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499244Z"},{"ID":36388,"Name":"PrĂłszkĂłw1","Points":12021,"X":371,"Y":364,"Continent":"K33","Bonus":9,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499245Z"},{"ID":36389,"Name":"Out of Touch","Points":5896,"X":324,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499245Z"},{"ID":36390,"Name":"Ave Why!","Points":4473,"X":489,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499246Z"},{"ID":36391,"Name":"#0139 Rose","Points":5199,"X":631,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499246Z"},{"ID":36392,"Name":"Dream on","Points":9485,"X":310,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499247Z"},{"ID":36393,"Name":"A016","Points":10237,"X":612,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499247Z"},{"ID":36394,"Name":"Wioska 5","Points":5556,"X":332,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499248Z"},{"ID":36395,"Name":"015","Points":3890,"X":317,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499248Z"},{"ID":36396,"Name":"Wyspa 013","Points":10728,"X":620,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499249Z"},{"ID":36397,"Name":"Wioska barbarzyƄska","Points":6595,"X":372,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499249Z"},{"ID":36398,"Name":"29. Legacy","Points":7047,"X":558,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49925Z"},{"ID":36399,"Name":"psycha sitting","Points":9876,"X":425,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499251Z"},{"ID":36400,"Name":"Pd 09","Points":8746,"X":362,"Y":630,"Continent":"K63","Bonus":2,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499251Z"},{"ID":36401,"Name":"016.","Points":5286,"X":606,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499252Z"},{"ID":36402,"Name":"052","Points":7182,"X":494,"Y":379,"Continent":"K34","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499252Z"},{"ID":36403,"Name":"#0201 Segadorr dar","Points":10178,"X":458,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499253Z"},{"ID":36404,"Name":"176...Segador-M","Points":9012,"X":442,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499253Z"},{"ID":36405,"Name":"KRÓL PAPI WIELKI","Points":9973,"X":649,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499254Z"},{"ID":36406,"Name":"221","Points":3896,"X":421,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499254Z"},{"ID":36407,"Name":"D09","Points":11191,"X":682,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499255Z"},{"ID":36408,"Name":".achim.","Points":10411,"X":487,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499255Z"},{"ID":36409,"Name":"1.01","Points":9771,"X":428,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499256Z"},{"ID":36410,"Name":"032","Points":10237,"X":676,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499256Z"},{"ID":36411,"Name":"Wioska barbarzyƄska","Points":4421,"X":576,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499257Z"},{"ID":36412,"Name":"xxx","Points":9909,"X":643,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499257Z"},{"ID":36413,"Name":"AAA","Points":8362,"X":545,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499258Z"},{"ID":36414,"Name":"Wioska 080","Points":8914,"X":659,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499258Z"},{"ID":36415,"Name":"Dream on","Points":9519,"X":311,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499259Z"},{"ID":36416,"Name":"Darma dla zawodnika","Points":9352,"X":519,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499259Z"},{"ID":36417,"Name":"Wioska Biboj94","Points":9263,"X":682,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49926Z"},{"ID":36418,"Name":"Wioska b","Points":5551,"X":558,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":6121024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499261Z"},{"ID":36419,"Name":"Koloryzowane","Points":5436,"X":326,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499261Z"},{"ID":36420,"Name":"C0109","Points":10362,"X":314,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499262Z"},{"ID":36421,"Name":"No.20","Points":1448,"X":473,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499262Z"},{"ID":36422,"Name":"069. Illium","Points":9689,"X":661,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499263Z"},{"ID":36423,"Name":"0151","Points":9181,"X":405,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499263Z"},{"ID":36425,"Name":"Taran","Points":10057,"X":344,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499264Z"},{"ID":36427,"Name":"{53} Cewice","Points":2387,"X":383,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499264Z"},{"ID":36428,"Name":"11 Nowa Forteca","Points":9318,"X":561,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499265Z"},{"ID":36429,"Name":"Grvvyq 106k$","Points":7614,"X":681,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499265Z"},{"ID":36430,"Name":"I068","Points":9923,"X":685,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499266Z"},{"ID":36431,"Name":"ZZZ","Points":8975,"X":463,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499266Z"},{"ID":36432,"Name":"*016*","Points":10211,"X":351,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499267Z"},{"ID":36434,"Name":"|055| Szybenik","Points":9482,"X":499,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499267Z"},{"ID":36435,"Name":"Ob Konfederacja","Points":6701,"X":432,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499268Z"},{"ID":36436,"Name":"005","Points":10141,"X":339,"Y":598,"Continent":"K53","Bonus":5,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499268Z"},{"ID":36437,"Name":"OFF","Points":10104,"X":650,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499269Z"},{"ID":36438,"Name":"201","Points":9205,"X":424,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499269Z"},{"ID":36440,"Name":"_PUSTA","Points":10085,"X":654,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49927Z"},{"ID":36441,"Name":"0.24","Points":7099,"X":463,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49927Z"},{"ID":36442,"Name":"Jan AquaForce Ost K","Points":9594,"X":683,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499271Z"},{"ID":36443,"Name":"Barbara 001","Points":6602,"X":420,"Y":623,"Continent":"K64","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499271Z"},{"ID":36444,"Name":"041 Mucharadza","Points":10285,"X":664,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499272Z"},{"ID":36445,"Name":"Zeta Reticuli O","Points":9616,"X":416,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499272Z"},{"ID":36446,"Name":"!!36 95 Grigoresti","Points":6380,"X":650,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499273Z"},{"ID":36447,"Name":"-001-","Points":7552,"X":351,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":1693936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499273Z"},{"ID":36449,"Name":"- 145 - SS","Points":9570,"X":541,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499274Z"},{"ID":36450,"Name":"#080#","Points":9718,"X":635,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499274Z"},{"ID":36451,"Name":"Out of Touch","Points":8741,"X":324,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499275Z"},{"ID":36452,"Name":".04. Lorien e","Points":7781,"X":354,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499275Z"},{"ID":36453,"Name":"Darma dla zawodnika","Points":4172,"X":527,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499276Z"},{"ID":36454,"Name":"Bagdad","Points":10654,"X":465,"Y":390,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499277Z"},{"ID":36455,"Name":"Wioska X","Points":10252,"X":670,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499277Z"},{"ID":36456,"Name":"Wioska barbarzyƄska","Points":10064,"X":338,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499278Z"},{"ID":36457,"Name":"013. bum-ta-rara-rara","Points":9949,"X":689,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499278Z"},{"ID":36458,"Name":"102 - Nowy Początek...","Points":8907,"X":377,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499279Z"},{"ID":36459,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":315,"Y":454,"Continent":"K43","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499279Z"},{"ID":36460,"Name":"I003 Co Ty tutaj robisz","Points":10495,"X":683,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49928Z"},{"ID":36461,"Name":"5.Severny","Points":6830,"X":413,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49928Z"},{"ID":36462,"Name":"118. Dalonory","Points":10083,"X":669,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499281Z"},{"ID":36463,"Name":"*4691* Grand","Points":10075,"X":659,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499281Z"},{"ID":36464,"Name":"WschĂłd X5","Points":10544,"X":690,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499282Z"},{"ID":36465,"Name":"Wano","Points":10311,"X":489,"Y":388,"Continent":"K34","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499282Z"},{"ID":36466,"Name":"Cast Away 003","Points":5917,"X":452,"Y":493,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499283Z"},{"ID":36467,"Name":"Ronin","Points":10252,"X":642,"Y":626,"Continent":"K66","Bonus":8,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499283Z"},{"ID":36468,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":507,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499284Z"},{"ID":36469,"Name":"C0144","Points":10362,"X":319,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499284Z"},{"ID":36470,"Name":"|067| BlackBird 2","Points":10974,"X":493,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499285Z"},{"ID":36471,"Name":"Ulu-mulu","Points":10463,"X":422,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499285Z"},{"ID":36472,"Name":"009. ƻóƂwin","Points":6186,"X":324,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499286Z"},{"ID":36473,"Name":"EO EO","Points":10019,"X":310,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499286Z"},{"ID":36474,"Name":"Didiek","Points":10362,"X":671,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499287Z"},{"ID":36475,"Name":"Szlachcic;taran","Points":9809,"X":657,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499287Z"},{"ID":36476,"Name":"PaƄstfa PuƂnocy","Points":9874,"X":584,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499288Z"},{"ID":36477,"Name":"094.","Points":9999,"X":505,"Y":484,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499288Z"},{"ID":36478,"Name":"Wioska MATTI","Points":5769,"X":419,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499289Z"},{"ID":36479,"Name":"Pyra2","Points":6456,"X":326,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499289Z"},{"ID":36481,"Name":"023","Points":3204,"X":429,"Y":627,"Continent":"K64","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49929Z"},{"ID":36482,"Name":"- 02 - Stare","Points":8009,"X":468,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499291Z"},{"ID":36483,"Name":"???","Points":8564,"X":476,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499291Z"},{"ID":36484,"Name":"X | Forest Cyaaaanku","Points":9976,"X":319,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499292Z"},{"ID":36485,"Name":"C0066","Points":10362,"X":312,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499292Z"},{"ID":36486,"Name":"Didi","Points":3983,"X":672,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499293Z"},{"ID":36487,"Name":"040","Points":10595,"X":327,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499293Z"},{"ID":36488,"Name":"ADEN","Points":10051,"X":524,"Y":377,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499294Z"},{"ID":36489,"Name":"Wioska barbarzyƄska","Points":7510,"X":621,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499294Z"},{"ID":36490,"Name":"011 Duncan","Points":2827,"X":556,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":849108623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499295Z"},{"ID":36491,"Name":"=|19|=","Points":10495,"X":616,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499295Z"},{"ID":36492,"Name":"X | Forest Cyaaaanku","Points":10000,"X":314,"Y":465,"Continent":"K43","Bonus":5,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499296Z"},{"ID":36493,"Name":"D.014","Points":6868,"X":396,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499296Z"},{"ID":36494,"Name":"*102*","Points":10211,"X":362,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499297Z"},{"ID":36495,"Name":"Dream on","Points":9555,"X":311,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499297Z"},{"ID":36496,"Name":"*188*","Points":10168,"X":375,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499298Z"},{"ID":36497,"Name":"WesoƂych ƚwiąt","Points":10887,"X":637,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499298Z"},{"ID":36498,"Name":"Wioska barbarzyƄska","Points":3842,"X":521,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499299Z"},{"ID":36499,"Name":"1008","Points":7084,"X":626,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499299Z"},{"ID":36500,"Name":"Wioska 052","Points":9761,"X":644,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4993Z"},{"ID":36501,"Name":"226","Points":5043,"X":417,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4993Z"},{"ID":36502,"Name":"kamilkaze135 #12","Points":7891,"X":655,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499301Z"},{"ID":36503,"Name":"Taran","Points":9960,"X":336,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499301Z"},{"ID":36504,"Name":"Taran","Points":10728,"X":683,"Y":490,"Continent":"K46","Bonus":1,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499302Z"},{"ID":36505,"Name":"Wioska barbarzyƄska","Points":533,"X":385,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499302Z"},{"ID":36506,"Name":"Szlachcic","Points":10484,"X":386,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499303Z"},{"ID":36507,"Name":"Hiszpan4","Points":10484,"X":673,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499304Z"},{"ID":36508,"Name":"*107*","Points":10211,"X":364,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499304Z"},{"ID":36510,"Name":"psycha sitting","Points":10311,"X":419,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499305Z"},{"ID":36511,"Name":"C0137","Points":10362,"X":313,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499305Z"},{"ID":36512,"Name":"Wioska barbarzyƄska","Points":10728,"X":687,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499306Z"},{"ID":36513,"Name":"I089","Points":8917,"X":687,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499306Z"},{"ID":36514,"Name":"0049","Points":5165,"X":573,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499307Z"},{"ID":36515,"Name":"199","Points":3228,"X":586,"Y":393,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499307Z"},{"ID":36516,"Name":"PiekƂo to inni","Points":8118,"X":597,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499308Z"},{"ID":36517,"Name":"Wioska barbarzyƄska","Points":7936,"X":333,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499308Z"},{"ID":36518,"Name":"Mordor4","Points":5791,"X":315,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":848978903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499309Z"},{"ID":36520,"Name":"psycha sitting","Points":9111,"X":412,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499309Z"},{"ID":36521,"Name":"BRZEG JORDANU | 002","Points":9346,"X":692,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49931Z"},{"ID":36522,"Name":"R 022","Points":9295,"X":485,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49931Z"},{"ID":36523,"Name":"ZZZ","Points":10787,"X":464,"Y":685,"Continent":"K64","Bonus":9,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499311Z"},{"ID":36524,"Name":"Wioska barbarzyƄska","Points":6248,"X":372,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499311Z"},{"ID":36525,"Name":"#108 C","Points":6187,"X":529,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499312Z"},{"ID":36526,"Name":"Kingdom 9","Points":10296,"X":689,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499312Z"},{"ID":36527,"Name":"002","Points":9347,"X":325,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849099463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499313Z"},{"ID":36528,"Name":"Wioska barbarzyƄska","Points":2454,"X":659,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499313Z"},{"ID":36529,"Name":".achim.","Points":8558,"X":482,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499314Z"},{"ID":36530,"Name":".12. Occitane b","Points":9009,"X":368,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499314Z"},{"ID":36531,"Name":"235","Points":5231,"X":426,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499315Z"},{"ID":36532,"Name":"005. Kanie","Points":6386,"X":320,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499315Z"},{"ID":36533,"Name":"064","Points":3703,"X":432,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499316Z"},{"ID":36535,"Name":"Moja Wioska","Points":7885,"X":666,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499316Z"},{"ID":36536,"Name":"Wioska barbarzyƄska","Points":4680,"X":431,"Y":624,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499317Z"},{"ID":36537,"Name":"*022*","Points":10211,"X":348,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499318Z"},{"ID":36538,"Name":"022","Points":5573,"X":425,"Y":630,"Continent":"K64","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499318Z"},{"ID":36539,"Name":"Wioska barbarzyƄska","Points":8714,"X":339,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499319Z"},{"ID":36540,"Name":"~~064~~","Points":7009,"X":632,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499319Z"},{"ID":36541,"Name":"Muchomor *028*","Points":9011,"X":521,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49932Z"},{"ID":36542,"Name":"C005 Kuchnia Mannekenpixa","Points":4149,"X":586,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49932Z"},{"ID":36543,"Name":"050","Points":7750,"X":543,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499321Z"},{"ID":36544,"Name":"Brzeg","Points":10362,"X":680,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499321Z"},{"ID":36545,"Name":"KRÓL PAPI WIELKI","Points":10444,"X":651,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499322Z"},{"ID":36546,"Name":"EMERYTOWANY KUZYN","Points":4951,"X":420,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499322Z"},{"ID":36548,"Name":"Wioska barbarzyƄska","Points":3037,"X":652,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499323Z"},{"ID":36549,"Name":"Wioska krzysiu1969","Points":1750,"X":314,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":2491724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499323Z"},{"ID":36550,"Name":"Taran 031","Points":6303,"X":637,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499324Z"},{"ID":36552,"Name":"036# Cristina","Points":4098,"X":487,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499324Z"},{"ID":36554,"Name":"#002#","Points":9761,"X":634,"Y":626,"Continent":"K66","Bonus":8,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499325Z"},{"ID":36555,"Name":"1007","Points":9885,"X":620,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499325Z"},{"ID":36556,"Name":"Sony 911","Points":7994,"X":621,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499326Z"},{"ID":36558,"Name":"Akwen","Points":2241,"X":319,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499326Z"},{"ID":36559,"Name":"z A01 ToruƄ","Points":9363,"X":348,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499327Z"},{"ID":36560,"Name":"WJEĆ»DĆ»AM I ROZJEĆ»DĆ»AM","Points":7767,"X":614,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499327Z"},{"ID":36562,"Name":"0162","Points":5331,"X":406,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499328Z"},{"ID":36563,"Name":"KRÓL PAPI WIELKI","Points":9499,"X":644,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499328Z"},{"ID":36564,"Name":"--07--","Points":8724,"X":346,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499329Z"},{"ID":36565,"Name":"Wioska Bochun10","Points":10311,"X":317,"Y":484,"Continent":"K43","Bonus":9,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499329Z"},{"ID":36566,"Name":"|052| Zadar","Points":9738,"X":494,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49933Z"},{"ID":36568,"Name":"Wioska AsconX","Points":5920,"X":335,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":3990066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49933Z"},{"ID":36569,"Name":"New World","Points":10295,"X":428,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499331Z"},{"ID":36570,"Name":"XXX","Points":8066,"X":544,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499331Z"},{"ID":36571,"Name":"psycha sitting","Points":8868,"X":405,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499332Z"},{"ID":36572,"Name":"Osada koczownikĂłw","Points":10233,"X":622,"Y":644,"Continent":"K66","Bonus":2,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499333Z"},{"ID":36573,"Name":"[051] Wioska barbarzyƄska","Points":7457,"X":675,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499333Z"},{"ID":36574,"Name":"New World","Points":10452,"X":446,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499334Z"},{"ID":36575,"Name":"Zeta Reticuli O","Points":10728,"X":418,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499334Z"},{"ID":36578,"Name":"A045","Points":8323,"X":609,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499335Z"},{"ID":36580,"Name":"Defolij 2","Points":2803,"X":553,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499335Z"},{"ID":36581,"Name":"Wioska Maxwell 3","Points":2364,"X":643,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":526350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499336Z"},{"ID":36582,"Name":"C0269","Points":5461,"X":317,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499336Z"},{"ID":36583,"Name":"065","Points":7188,"X":533,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499337Z"},{"ID":36584,"Name":"- 180 - SS","Points":7914,"X":551,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499337Z"},{"ID":36585,"Name":"AG08","Points":9549,"X":593,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499338Z"},{"ID":36586,"Name":"Taran","Points":10297,"X":345,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499338Z"},{"ID":36587,"Name":"#073#","Points":9761,"X":633,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499339Z"},{"ID":36588,"Name":"194...Segador","Points":10787,"X":456,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499339Z"},{"ID":36589,"Name":"Wioska barbarzyƄska","Points":7690,"X":326,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49934Z"},{"ID":36590,"Name":"*149*","Points":7903,"X":347,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49934Z"},{"ID":36591,"Name":"05.wiocha","Points":5949,"X":332,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499341Z"},{"ID":36592,"Name":"Wioska barbarzyƄska","Points":3926,"X":410,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499341Z"},{"ID":36593,"Name":"psycha sitting","Points":10311,"X":420,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499342Z"},{"ID":36594,"Name":"**09**","Points":11913,"X":674,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499342Z"},{"ID":36595,"Name":"0056","Points":9993,"X":422,"Y":405,"Continent":"K44","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499343Z"},{"ID":36596,"Name":"F03","Points":3608,"X":686,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499343Z"},{"ID":36597,"Name":"Didus P","Points":8497,"X":672,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499344Z"},{"ID":36598,"Name":"Wioska barbarzyƄska","Points":4350,"X":517,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499344Z"},{"ID":36599,"Name":"C0110","Points":10362,"X":316,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499345Z"},{"ID":36600,"Name":"psycha sitting","Points":10311,"X":399,"Y":659,"Continent":"K63","Bonus":6,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499345Z"},{"ID":36601,"Name":"kamilkaze135 #01.3","Points":8709,"X":658,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499346Z"},{"ID":36602,"Name":"Szlachcic","Points":7576,"X":690,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499346Z"},{"ID":36603,"Name":"Didi","Points":10005,"X":676,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499347Z"},{"ID":36604,"Name":".17. Izmir b","Points":8925,"X":363,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499347Z"},{"ID":36605,"Name":"psycha sitting","Points":4933,"X":406,"Y":660,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499348Z"},{"ID":36606,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":10068,"X":379,"Y":642,"Continent":"K63","Bonus":6,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499348Z"},{"ID":36607,"Name":"Wioska barbarzyƄska","Points":10728,"X":682,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499349Z"},{"ID":36609,"Name":"#050#","Points":9761,"X":637,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49935Z"},{"ID":36610,"Name":"Kazumasa Sakai","Points":9167,"X":691,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49935Z"},{"ID":36611,"Name":"X | Forest Cyaaaanku","Points":9990,"X":311,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499351Z"},{"ID":36612,"Name":"Wyspa 028","Points":8115,"X":632,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499351Z"},{"ID":36613,"Name":"1.1","Points":10148,"X":639,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499352Z"},{"ID":36614,"Name":"Out of Touch","Points":2690,"X":322,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499352Z"},{"ID":36615,"Name":"psycha sitting","Points":9903,"X":406,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499353Z"},{"ID":36616,"Name":"Wioska 120","Points":9835,"X":683,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499353Z"},{"ID":36617,"Name":"~ KiZiA MiZiA ~","Points":2923,"X":315,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":698540331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499354Z"},{"ID":36618,"Name":"Jehu_Kingdom_65","Points":4055,"X":666,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499355Z"},{"ID":36619,"Name":"-006- ChwaƂa Imperium","Points":8901,"X":616,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499355Z"},{"ID":36620,"Name":"BRZEG JORDANU | 004","Points":9544,"X":692,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499356Z"},{"ID":36621,"Name":"I059","Points":9972,"X":677,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499356Z"},{"ID":36622,"Name":"Spoglądam w przyszƂoƛć","Points":10544,"X":660,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":8582487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499357Z"},{"ID":36623,"Name":"Dream on","Points":9499,"X":308,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499357Z"},{"ID":36624,"Name":"Selonari.","Points":9711,"X":460,"Y":557,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499358Z"},{"ID":36625,"Name":"OFF","Points":10311,"X":694,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499358Z"},{"ID":36626,"Name":"[010]","Points":9906,"X":477,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499359Z"},{"ID":36627,"Name":"Wioska barbarzyƄska","Points":4151,"X":580,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499359Z"},{"ID":36628,"Name":"2.Tazones","Points":10068,"X":567,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49936Z"},{"ID":36629,"Name":"X | Forest Cyaaaanku","Points":9976,"X":319,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49936Z"},{"ID":36630,"Name":"046","Points":10495,"X":449,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499361Z"},{"ID":36631,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":9473,"X":380,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499361Z"},{"ID":36632,"Name":"Ob Konfederacja","Points":10178,"X":428,"Y":322,"Continent":"K34","Bonus":4,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499362Z"},{"ID":36634,"Name":"Wioska barbarzyƄska","Points":10252,"X":530,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499362Z"},{"ID":36635,"Name":"tutaj","Points":9081,"X":458,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499363Z"},{"ID":36636,"Name":"Wioska barbarzyƄska","Points":7135,"X":471,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499363Z"},{"ID":36637,"Name":"_PUSTA","Points":10064,"X":659,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499364Z"},{"ID":36638,"Name":"psycha sitting","Points":10311,"X":421,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499364Z"},{"ID":36639,"Name":"Szlachcic","Points":9177,"X":384,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499365Z"},{"ID":36640,"Name":"Kiedyƛ Wielki Wojownik","Points":4884,"X":597,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499365Z"},{"ID":36641,"Name":"18. Los Santos","Points":9816,"X":557,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499366Z"},{"ID":36642,"Name":"North Barba 054","Points":6420,"X":413,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499366Z"},{"ID":36643,"Name":"~038.","Points":10495,"X":497,"Y":616,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499367Z"},{"ID":36644,"Name":"SOKzGUMIjagĂłd","Points":10311,"X":642,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499367Z"},{"ID":36645,"Name":"034 invidia","Points":10237,"X":527,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499368Z"},{"ID":36646,"Name":"A050","Points":7597,"X":617,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499368Z"},{"ID":36647,"Name":"Aakirkeby","Points":7010,"X":328,"Y":575,"Continent":"K53","Bonus":6,"PlayerID":849098387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499369Z"},{"ID":36648,"Name":"Wioska donkretos","Points":9220,"X":690,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49937Z"},{"ID":36649,"Name":"Wioska barbarzyƄska","Points":4974,"X":366,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49937Z"},{"ID":36650,"Name":"Wrzoski 13 Ulica","Points":6767,"X":681,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499371Z"},{"ID":36651,"Name":"- 190 - SS","Points":9157,"X":534,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499371Z"},{"ID":36652,"Name":"the Amityville 001","Points":7001,"X":660,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":758104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499372Z"},{"ID":36653,"Name":"0014","Points":10202,"X":682,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499372Z"},{"ID":36654,"Name":"3.Pochinki","Points":8580,"X":413,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499373Z"},{"ID":36655,"Name":"A059","Points":10220,"X":607,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499373Z"},{"ID":36656,"Name":"Wioska barbarzyƄska","Points":6929,"X":518,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499374Z"},{"ID":36657,"Name":"xxx","Points":9782,"X":313,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499374Z"},{"ID":36658,"Name":"Wioska barbarzyƄska","Points":9927,"X":496,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499375Z"},{"ID":36659,"Name":"X | Forest Cyaaaanku","Points":10000,"X":313,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499375Z"},{"ID":36660,"Name":"062","Points":7737,"X":685,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499376Z"},{"ID":36662,"Name":"Wioska barbarzyƄska","Points":2133,"X":558,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499376Z"},{"ID":36663,"Name":"Wyspa_02","Points":9638,"X":508,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499377Z"},{"ID":36664,"Name":"#020. Resident Slepper","Points":6832,"X":455,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499377Z"},{"ID":36665,"Name":"071 barbarzyƄska","Points":5363,"X":665,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499378Z"},{"ID":36666,"Name":"Muchomor *027*","Points":9180,"X":522,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499378Z"},{"ID":36667,"Name":"Wioska barbarzyƄska","Points":7539,"X":522,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499379Z"},{"ID":36669,"Name":"Wioska barbarzyƄska","Points":2667,"X":557,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":570100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499379Z"},{"ID":36670,"Name":"-Sioux city","Points":6435,"X":649,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49938Z"},{"ID":36671,"Name":"05. Alan","Points":9362,"X":682,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49938Z"},{"ID":36673,"Name":"*153*","Points":8379,"X":342,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499381Z"},{"ID":36674,"Name":"PUSTA","Points":4809,"X":673,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":3739202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499381Z"},{"ID":36675,"Name":"Szlachcic","Points":10317,"X":376,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499382Z"},{"ID":36676,"Name":"#014 - Wioska","Points":9205,"X":495,"Y":526,"Continent":"K54","Bonus":0,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499382Z"},{"ID":36677,"Name":"#063#","Points":9761,"X":639,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499383Z"},{"ID":36678,"Name":"......","Points":7523,"X":518,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499384Z"},{"ID":36679,"Name":"Obora Augiasza","Points":8054,"X":583,"Y":671,"Continent":"K65","Bonus":6,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499384Z"},{"ID":36680,"Name":"Wioska barbarzyƄska","Points":3534,"X":602,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499385Z"},{"ID":36681,"Name":"030Wioska barbarzyƄska","Points":6373,"X":679,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499385Z"},{"ID":36682,"Name":"0419","Points":10019,"X":567,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499386Z"},{"ID":36683,"Name":"PiekƂo to inni","Points":10160,"X":609,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499386Z"},{"ID":36684,"Name":"004","Points":4976,"X":309,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499387Z"},{"ID":36685,"Name":"054.Stradi","Points":10495,"X":447,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499387Z"},{"ID":36686,"Name":"Wioska barbarzyƄska","Points":4054,"X":685,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499388Z"},{"ID":36687,"Name":"065... Wioska RandomHero","Points":10484,"X":438,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499388Z"},{"ID":36688,"Name":"--08--","Points":10221,"X":343,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499389Z"},{"ID":36689,"Name":"0044","Points":4775,"X":572,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499389Z"},{"ID":36690,"Name":"Wenecja","Points":6273,"X":687,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":2392791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49939Z"},{"ID":36692,"Name":"#008. Crew","Points":8818,"X":450,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49939Z"},{"ID":36693,"Name":"!36 74 Zvoristea","Points":10224,"X":644,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499391Z"},{"ID":36694,"Name":"C0017","Points":10362,"X":312,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499391Z"},{"ID":36695,"Name":"164...Kalichore","Points":9932,"X":455,"Y":354,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499392Z"},{"ID":36696,"Name":"0400","Points":8943,"X":562,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499392Z"},{"ID":36697,"Name":"#0129 korniczeks","Points":10178,"X":479,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499393Z"},{"ID":36698,"Name":"Winterhome.071","Points":10178,"X":490,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499394Z"},{"ID":36699,"Name":"A5.","Points":3993,"X":314,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499394Z"},{"ID":36700,"Name":"D04","Points":11417,"X":676,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499395Z"},{"ID":36702,"Name":"K35 - [023] Before Land","Points":9783,"X":580,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499395Z"},{"ID":36703,"Name":"001 szkolna 17","Points":10083,"X":528,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499396Z"},{"ID":36704,"Name":"[016] Cienka brązowa linia","Points":9312,"X":674,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499396Z"},{"ID":36705,"Name":"I084","Points":8352,"X":684,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499397Z"},{"ID":36706,"Name":"Wioska 4","Points":5945,"X":331,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":699821755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499397Z"},{"ID":36707,"Name":"013 Stategiczna wioska","Points":9825,"X":490,"Y":634,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499398Z"},{"ID":36708,"Name":"K35 - [004] Before Land","Points":9847,"X":577,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499398Z"},{"ID":36709,"Name":"Nirvos","Points":9515,"X":682,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499399Z"},{"ID":36710,"Name":"*3604* Bell","Points":10287,"X":663,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499399Z"},{"ID":36711,"Name":"WƂadcy PóƂnocy 06","Points":7231,"X":690,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4994Z"},{"ID":36712,"Name":"SSJ 016","Points":9064,"X":487,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.4994Z"},{"ID":36713,"Name":"219","Points":3022,"X":424,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499401Z"},{"ID":36714,"Name":"Out of Touch","Points":8752,"X":325,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499401Z"},{"ID":36715,"Name":"malo defa","Points":9142,"X":478,"Y":637,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499402Z"},{"ID":36716,"Name":"Krapkowice","Points":8805,"X":681,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499402Z"},{"ID":36717,"Name":"#098#","Points":8681,"X":636,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499403Z"},{"ID":36718,"Name":"Wioska barbarzyƄska","Points":8860,"X":669,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499404Z"},{"ID":36720,"Name":"AG20","Points":3489,"X":593,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499404Z"},{"ID":36721,"Name":"008|| Scorpio","Points":10019,"X":484,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499405Z"},{"ID":36722,"Name":"love","Points":3962,"X":475,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":849099965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499405Z"},{"ID":36723,"Name":"Hard3","Points":2948,"X":364,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499406Z"},{"ID":36724,"Name":"039 invidia","Points":9507,"X":523,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499406Z"},{"ID":36725,"Name":"~~061~~","Points":8448,"X":624,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499407Z"},{"ID":36726,"Name":"2.Barcelona","Points":9978,"X":573,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499407Z"},{"ID":36727,"Name":"Ave Why!","Points":8578,"X":454,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499408Z"},{"ID":36729,"Name":"~068.","Points":7504,"X":528,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499408Z"},{"ID":36730,"Name":"Dream on","Points":9505,"X":310,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499409Z"},{"ID":36731,"Name":"- 149 - SS","Points":8328,"X":540,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499409Z"},{"ID":36732,"Name":"Ć»elazny deff","Points":8008,"X":359,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49941Z"},{"ID":36733,"Name":"Szulernia","Points":8685,"X":369,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49941Z"},{"ID":36735,"Name":"z 001031","Points":8837,"X":363,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499411Z"},{"ID":36736,"Name":"006 Desant","Points":9827,"X":481,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499411Z"},{"ID":36737,"Name":"A019","Points":10237,"X":608,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499412Z"},{"ID":36738,"Name":"0000aaaa","Points":9976,"X":480,"Y":636,"Continent":"K64","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499412Z"},{"ID":36739,"Name":"Ave Why!","Points":9809,"X":481,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499413Z"},{"ID":36740,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":319,"Y":461,"Continent":"K43","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499413Z"},{"ID":36741,"Name":"North Barba 053","Points":6069,"X":411,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499414Z"},{"ID":36742,"Name":"042 Mucharadza","Points":10281,"X":664,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499414Z"},{"ID":36743,"Name":"Taran 034","Points":5896,"X":639,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":2600387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499415Z"},{"ID":36744,"Name":"AG02","Points":9747,"X":591,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499415Z"},{"ID":36745,"Name":"A2.","Points":4726,"X":315,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499416Z"},{"ID":36746,"Name":"C20","Points":3736,"X":685,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499416Z"},{"ID":36747,"Name":"Suppi","Points":9551,"X":329,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499417Z"},{"ID":36748,"Name":"Borubar 1","Points":3332,"X":682,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499417Z"},{"ID":36749,"Name":"KRÓL PAPI WIELKI","Points":10215,"X":639,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499418Z"},{"ID":36750,"Name":"Jednak wolę gofry","Points":9555,"X":483,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499418Z"},{"ID":36751,"Name":"z 001025","Points":9313,"X":357,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499419Z"},{"ID":36752,"Name":"koczo","Points":10654,"X":591,"Y":332,"Continent":"K35","Bonus":9,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49942Z"},{"ID":36754,"Name":"000 Plutosea","Points":7518,"X":319,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49942Z"},{"ID":36755,"Name":"044.","Points":10216,"X":486,"Y":625,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499421Z"},{"ID":36756,"Name":"Marysia","Points":7473,"X":622,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499421Z"},{"ID":36757,"Name":"*INTERTWINED*","Points":7422,"X":509,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499422Z"},{"ID":36758,"Name":"028. Wioska barbarzyƄska","Points":9680,"X":689,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499422Z"},{"ID":36759,"Name":"Jednak wolę gofry","Points":10311,"X":482,"Y":638,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499423Z"},{"ID":36760,"Name":"MojeSzczytToTwĂłjDno","Points":10495,"X":517,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499423Z"},{"ID":36761,"Name":"Winterhome.048","Points":10178,"X":496,"Y":312,"Continent":"K34","Bonus":8,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499424Z"},{"ID":36762,"Name":"*5611*a Brzeg Ameryki","Points":10287,"X":669,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499424Z"},{"ID":36763,"Name":"007 RIP magnats","Points":10221,"X":484,"Y":686,"Continent":"K64","Bonus":1,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499425Z"},{"ID":36764,"Name":"A051","Points":6831,"X":616,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499425Z"},{"ID":36765,"Name":"Berun","Points":6597,"X":417,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":849072873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499426Z"},{"ID":36766,"Name":"*033*","Points":10211,"X":346,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499426Z"},{"ID":36767,"Name":"A009","Points":9806,"X":475,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499427Z"},{"ID":36768,"Name":"A021","Points":10237,"X":607,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499427Z"},{"ID":36769,"Name":"*097*","Points":10211,"X":360,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499428Z"},{"ID":36770,"Name":"Praga1","Points":9689,"X":369,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499428Z"},{"ID":36771,"Name":"Hiszpan3","Points":11530,"X":677,"Y":559,"Continent":"K56","Bonus":2,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499429Z"},{"ID":36772,"Name":"064","Points":6237,"X":679,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499429Z"},{"ID":36773,"Name":"GrochĂłw1","Points":5940,"X":365,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49943Z"},{"ID":36774,"Name":"psycha sitting","Points":10135,"X":406,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.49943Z"},{"ID":36775,"Name":"Out of Touch","Points":5415,"X":322,"Y":432,"Continent":"K43","Bonus":4,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499431Z"},{"ID":36776,"Name":"CSA","Points":2207,"X":527,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499431Z"},{"ID":36777,"Name":"B.14 duchy serca puszczy","Points":3066,"X":552,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499432Z"},{"ID":36779,"Name":"031. Devil on my shoulder","Points":6103,"X":455,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499432Z"},{"ID":36780,"Name":"Wioska barbarzyƄska","Points":3834,"X":321,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849099258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.499433Z"},{"ID":36781,"Name":"074- Mroczna Osada","Points":6544,"X":599,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533375Z"},{"ID":36782,"Name":"START 03 22 19","Points":4311,"X":579,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533376Z"},{"ID":36783,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9353,"X":438,"Y":680,"Continent":"K64","Bonus":9,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533376Z"},{"ID":36784,"Name":"Suppi","Points":9747,"X":324,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533377Z"},{"ID":36785,"Name":"Szlachcic","Points":10476,"X":388,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533377Z"},{"ID":36786,"Name":"Wyspa","Points":2548,"X":384,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533378Z"},{"ID":36787,"Name":"003. Wojenna ƚcieĆŒka","Points":10237,"X":561,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533379Z"},{"ID":36788,"Name":"020# Ariana","Points":10114,"X":486,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533379Z"},{"ID":36789,"Name":"|064| Hejhej","Points":7979,"X":491,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53338Z"},{"ID":36790,"Name":"LD0040 Lucid Dream","Points":9828,"X":638,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53338Z"},{"ID":36791,"Name":"Sliz","Points":5352,"X":321,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533381Z"},{"ID":36792,"Name":"C 018","Points":10495,"X":690,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533381Z"},{"ID":36793,"Name":"Wioska 5","Points":4357,"X":642,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533382Z"},{"ID":36795,"Name":"Topornik 2","Points":11130,"X":647,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533382Z"},{"ID":36796,"Name":"Ć»UBR .::.Adaczu/05","Points":3327,"X":624,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533383Z"},{"ID":36797,"Name":"011","Points":4938,"X":312,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533384Z"},{"ID":36798,"Name":"Koszary","Points":6383,"X":577,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533384Z"},{"ID":36800,"Name":"Osada koczownikĂłw","Points":5402,"X":602,"Y":338,"Continent":"K36","Bonus":1,"PlayerID":699548295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533385Z"},{"ID":36801,"Name":"13 Ciudad Real","Points":1560,"X":382,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":698837993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533385Z"},{"ID":36802,"Name":"Sullivanum [5]","Points":7677,"X":341,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":1606425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533386Z"},{"ID":36803,"Name":"Wioska barbarzyƄska","Points":2406,"X":403,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533386Z"},{"ID":36804,"Name":"Wioska barbarzyƄska","Points":7109,"X":579,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533387Z"},{"ID":36805,"Name":"0059","Points":9483,"X":644,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533387Z"},{"ID":36806,"Name":"cos cos","Points":10362,"X":433,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533388Z"},{"ID":36807,"Name":"002 Ugernum","Points":2940,"X":559,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":849099558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533388Z"},{"ID":36808,"Name":"200","Points":10495,"X":425,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533389Z"},{"ID":36809,"Name":"J#003","Points":9797,"X":573,"Y":331,"Continent":"K35","Bonus":2,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533389Z"},{"ID":36811,"Name":"Winterhome.059","Points":10178,"X":488,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53339Z"},{"ID":36812,"Name":"Wioska barbarzyƄska","Points":6161,"X":369,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533391Z"},{"ID":36813,"Name":"Muchomor *009*","Points":10294,"X":517,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533391Z"},{"ID":36814,"Name":"J#009","Points":9797,"X":571,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533392Z"},{"ID":36815,"Name":"BACÓWKA |012|","Points":12154,"X":661,"Y":406,"Continent":"K46","Bonus":6,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533392Z"},{"ID":36816,"Name":"Suppi","Points":9549,"X":329,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533393Z"},{"ID":36817,"Name":"0002 Cytadela","Points":9668,"X":317,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533393Z"},{"ID":36818,"Name":"028","Points":10068,"X":524,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533394Z"},{"ID":36819,"Name":"Zaczynamy","Points":9614,"X":618,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533394Z"},{"ID":36820,"Name":"Paris","Points":7174,"X":358,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533395Z"},{"ID":36822,"Name":"211","Points":3876,"X":422,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533395Z"},{"ID":36823,"Name":"psycha sitting","Points":9499,"X":425,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533396Z"},{"ID":36824,"Name":"Wieƛ nieopodal","Points":7843,"X":551,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533396Z"},{"ID":36826,"Name":"Wioska barbarzyƄska","Points":4108,"X":563,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533397Z"},{"ID":36827,"Name":"psycha sitting","Points":10311,"X":414,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533397Z"},{"ID":36828,"Name":"Wioska barbarzyƄska","Points":3222,"X":579,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533398Z"},{"ID":36829,"Name":"Ob Konfederacja","Points":6620,"X":433,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533398Z"},{"ID":36830,"Name":"psycha sitting","Points":10067,"X":410,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533399Z"},{"ID":36831,"Name":"Babolewo 3.0","Points":5561,"X":592,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":849098791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533399Z"},{"ID":36832,"Name":"$LAClippers","Points":6318,"X":683,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5334Z"},{"ID":36833,"Name":"Wioska barbarzyƄska","Points":8067,"X":484,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5334Z"},{"ID":36834,"Name":"006 RubinGraffitiKrk","Points":10495,"X":310,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533401Z"},{"ID":36836,"Name":"AGA1","Points":10636,"X":684,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533401Z"},{"ID":36837,"Name":"B1.","Points":3918,"X":313,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533402Z"},{"ID":36838,"Name":".28. Kannas e","Points":6195,"X":353,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533402Z"},{"ID":36839,"Name":"Wioska barbarzyƄska","Points":7285,"X":526,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533403Z"},{"ID":36840,"Name":"A026","Points":10237,"X":602,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533403Z"},{"ID":36841,"Name":"C0111","Points":10495,"X":310,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533404Z"},{"ID":36842,"Name":"Wsiora MCX","Points":10636,"X":537,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533405Z"},{"ID":36843,"Name":"TWIERDZA .:019:.","Points":10225,"X":679,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533405Z"},{"ID":36844,"Name":"|068| BlackBird 3","Points":9962,"X":495,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533406Z"},{"ID":36845,"Name":"SOKzGUMIjagĂłd","Points":10016,"X":648,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533406Z"},{"ID":36846,"Name":"072- Mroczna Osada","Points":7411,"X":598,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533407Z"},{"ID":36847,"Name":"Pastwiska","Points":5616,"X":574,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533407Z"},{"ID":36849,"Name":"040. Wioska barbarzyƄska","Points":10370,"X":686,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533408Z"},{"ID":36850,"Name":"112 And another one","Points":9741,"X":332,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533408Z"},{"ID":36851,"Name":"006","Points":4300,"X":532,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533409Z"},{"ID":36852,"Name":"~~067~~","Points":6094,"X":629,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533409Z"},{"ID":36853,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":313,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53341Z"},{"ID":36854,"Name":"A046","Points":7713,"X":610,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53341Z"},{"ID":36855,"Name":"005","Points":4634,"X":309,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533411Z"},{"ID":36856,"Name":"Jaaa","Points":9749,"X":668,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533411Z"},{"ID":36857,"Name":"Out of Touch","Points":6644,"X":321,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533412Z"},{"ID":36858,"Name":"Wioska Zorro 009","Points":11130,"X":667,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533413Z"},{"ID":36859,"Name":"004 Ilia Feon","Points":10083,"X":664,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533413Z"},{"ID":36860,"Name":"059","Points":9934,"X":333,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533414Z"},{"ID":36862,"Name":"=|35|=","Points":8842,"X":643,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533414Z"},{"ID":36863,"Name":".01.Osgiliath e","Points":8906,"X":352,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533415Z"},{"ID":36864,"Name":"0278","Points":7850,"X":549,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533415Z"},{"ID":36866,"Name":"New World","Points":10291,"X":443,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533416Z"},{"ID":36867,"Name":"Wioska Bochun10","Points":5781,"X":331,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533416Z"},{"ID":36868,"Name":"Wioska barbarzyƄska 2","Points":4572,"X":325,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533417Z"},{"ID":36869,"Name":"044","Points":9688,"X":465,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533417Z"},{"ID":36870,"Name":"[004]","Points":11417,"X":470,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533418Z"},{"ID":36871,"Name":"(002)Azimir","Points":10375,"X":329,"Y":570,"Continent":"K53","Bonus":2,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533418Z"},{"ID":36872,"Name":"Metropolia 20RivaL00","Points":9754,"X":584,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533419Z"},{"ID":36873,"Name":"Kamieniec Podolski","Points":3637,"X":570,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533419Z"},{"ID":36874,"Name":"z Wioska barbarzyƄska 12","Points":7743,"X":356,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53342Z"},{"ID":36875,"Name":"SOKzGUMIjagĂłd","Points":7645,"X":599,"Y":340,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53342Z"},{"ID":36876,"Name":"Muchomor *003*","Points":10294,"X":519,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533421Z"},{"ID":36877,"Name":"OrzeƂ 12","Points":8161,"X":690,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533422Z"},{"ID":36878,"Name":"C08","Points":5561,"X":687,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533422Z"},{"ID":36879,"Name":"UltraInstynkt+","Points":9608,"X":605,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533423Z"},{"ID":36880,"Name":"1010","Points":7506,"X":620,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533423Z"},{"ID":36881,"Name":"New World","Points":10295,"X":440,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533424Z"},{"ID":36882,"Name":"=|01|=","Points":10495,"X":643,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533424Z"},{"ID":36883,"Name":"Szlachcic","Points":10543,"X":397,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533425Z"},{"ID":36884,"Name":"034","Points":5596,"X":686,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533425Z"},{"ID":36885,"Name":"_PUSTA","Points":10452,"X":658,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533426Z"},{"ID":36886,"Name":"030","Points":8939,"X":544,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533426Z"},{"ID":36887,"Name":"112. Wyspy Barierowe","Points":7590,"X":644,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533427Z"},{"ID":36888,"Name":"*006*","Points":10559,"X":317,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533427Z"},{"ID":36889,"Name":"(012)Alethkar","Points":10184,"X":320,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533428Z"},{"ID":36890,"Name":"Wyspa_10","Points":9638,"X":505,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533428Z"},{"ID":36891,"Name":"Taran","Points":10159,"X":341,"Y":604,"Continent":"K63","Bonus":3,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533429Z"},{"ID":36892,"Name":"Tu jest przyszƂoƛć","Points":6746,"X":655,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53343Z"},{"ID":36893,"Name":"I069","Points":9402,"X":687,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53343Z"},{"ID":36894,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":317,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533431Z"},{"ID":36895,"Name":"KRÓL PAPI WIELKI","Points":9970,"X":651,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533431Z"},{"ID":36896,"Name":"Wioska barbarzyƄska","Points":4297,"X":636,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533432Z"},{"ID":36897,"Name":"061. Ninora","Points":10362,"X":664,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533432Z"},{"ID":36898,"Name":"005 chata Gumowego Adasia","Points":4275,"X":531,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533433Z"},{"ID":36899,"Name":"Wioska barbarzyƄska","Points":4707,"X":601,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533433Z"},{"ID":36900,"Name":"*200*","Points":6036,"X":363,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533434Z"},{"ID":36901,"Name":"011 Wioska","Points":6675,"X":626,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533434Z"},{"ID":36902,"Name":"Dream on","Points":9499,"X":309,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533435Z"},{"ID":36904,"Name":".achim.","Points":10659,"X":490,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533436Z"},{"ID":36905,"Name":"C0174","Points":10362,"X":318,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533436Z"},{"ID":36906,"Name":"PoƂudnie.014","Points":10300,"X":551,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533437Z"},{"ID":36907,"Name":"stickman 1111","Points":9895,"X":598,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533437Z"},{"ID":36908,"Name":"*023*","Points":10211,"X":351,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533438Z"},{"ID":36909,"Name":"ByƂeƛ w porządku 002","Points":10145,"X":373,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533438Z"},{"ID":36910,"Name":"Lord Lord Franek .#094","Points":9976,"X":519,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533439Z"},{"ID":36911,"Name":"*020*","Points":10211,"X":347,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533439Z"},{"ID":36912,"Name":"Parole","Points":5392,"X":337,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53344Z"},{"ID":36914,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":318,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533441Z"},{"ID":36915,"Name":"Osada koczownikĂłw x","Points":9744,"X":651,"Y":606,"Continent":"K66","Bonus":7,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533441Z"},{"ID":36916,"Name":"Ob Konfederacja","Points":8174,"X":434,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533442Z"},{"ID":36917,"Name":"Highlander","Points":6106,"X":680,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533442Z"},{"ID":36918,"Name":"BBB","Points":9228,"X":574,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533443Z"},{"ID":36919,"Name":"fff","Points":9285,"X":480,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698239813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533443Z"},{"ID":36921,"Name":"Taran 037","Points":10971,"X":641,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533444Z"},{"ID":36922,"Name":"0005 Krasnodar","Points":9914,"X":474,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533444Z"},{"ID":36923,"Name":"D06","Points":10997,"X":677,"Y":553,"Continent":"K56","Bonus":2,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533445Z"},{"ID":36924,"Name":"*186*","Points":10211,"X":343,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533445Z"},{"ID":36925,"Name":"Kęty","Points":8547,"X":540,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533446Z"},{"ID":36926,"Name":"z 001032","Points":7707,"X":355,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533447Z"},{"ID":36927,"Name":"Wioska barbarzyƄska","Points":2244,"X":445,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533447Z"},{"ID":36929,"Name":"C05","Points":11321,"X":686,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533448Z"},{"ID":36930,"Name":"krytl21","Points":6342,"X":511,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533449Z"},{"ID":36931,"Name":"D001","Points":9902,"X":610,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533449Z"},{"ID":36932,"Name":"Wioska V","Points":2770,"X":675,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849099955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53345Z"},{"ID":36933,"Name":"EO EO","Points":10495,"X":312,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53345Z"},{"ID":36934,"Name":"cz 110 6","Points":6838,"X":371,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533451Z"},{"ID":36935,"Name":"C0045","Points":10362,"X":312,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533451Z"},{"ID":36936,"Name":"-010-","Points":10016,"X":326,"Y":570,"Continent":"K53","Bonus":3,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533452Z"},{"ID":36937,"Name":"Szlachcic","Points":10300,"X":382,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533452Z"},{"ID":36938,"Name":"Out of Touch","Points":4708,"X":322,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533453Z"},{"ID":36939,"Name":"013","Points":9835,"X":687,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533453Z"},{"ID":36940,"Name":"Wioska barbarzyƄska","Points":3624,"X":579,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533454Z"},{"ID":36941,"Name":"001. Wehrmacht","Points":10887,"X":339,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533455Z"},{"ID":36942,"Name":"Wioska barbarzyƄska","Points":7081,"X":329,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533455Z"},{"ID":36943,"Name":"Winterhome.027","Points":10178,"X":502,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533456Z"},{"ID":36944,"Name":"008","Points":5853,"X":309,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533456Z"},{"ID":36945,"Name":"FP003","Points":10393,"X":490,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533457Z"},{"ID":36947,"Name":"Szlachcic","Points":10155,"X":395,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533457Z"},{"ID":36948,"Name":"Wioska barbarzyƄska","Points":3505,"X":334,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533458Z"},{"ID":36949,"Name":"X | Forest Cyaaaanku","Points":10000,"X":319,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533458Z"},{"ID":36950,"Name":"Wonderwall","Points":4915,"X":324,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533459Z"},{"ID":36951,"Name":"Wioska","Points":5523,"X":608,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":699548295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533459Z"},{"ID":36952,"Name":"C003","Points":7619,"X":595,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53346Z"},{"ID":36953,"Name":".06. Lindon b","Points":10378,"X":364,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53346Z"},{"ID":36954,"Name":"Muchomor *002*","Points":9541,"X":517,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533461Z"},{"ID":36955,"Name":"Wioska barbarzyƄska","Points":6653,"X":371,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533461Z"},{"ID":36956,"Name":"D.034","Points":9998,"X":393,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533462Z"},{"ID":36957,"Name":"C0021","Points":10362,"X":309,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533463Z"},{"ID":36958,"Name":"Wioska barbarzyƄska","Points":10084,"X":682,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533463Z"},{"ID":36959,"Name":"Wioska barbarzyƄska","Points":10168,"X":396,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533464Z"},{"ID":36960,"Name":"C0153","Points":10290,"X":317,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533464Z"},{"ID":36961,"Name":"Dworek Drzewiarza","Points":10692,"X":650,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533465Z"},{"ID":36962,"Name":"Wioska barbarzyƄska","Points":6745,"X":669,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533465Z"},{"ID":36964,"Name":"X | Forest Cyaaaanku","Points":10000,"X":314,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533466Z"},{"ID":36965,"Name":"Brat447","Points":10495,"X":312,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533466Z"},{"ID":36966,"Name":"087. Lond","Points":5510,"X":647,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533467Z"},{"ID":36967,"Name":"Winterhome.003","Points":10178,"X":510,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533467Z"},{"ID":36968,"Name":"**INTERTWINED*","Points":9711,"X":510,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533468Z"},{"ID":36969,"Name":"|047| Eldorado","Points":9833,"X":506,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533468Z"},{"ID":36970,"Name":"New World","Points":5936,"X":431,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533469Z"},{"ID":36971,"Name":"Wioska barbarzyƄska","Points":7700,"X":347,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533469Z"},{"ID":36972,"Name":"psycha sitting","Points":9659,"X":410,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53347Z"},{"ID":36973,"Name":"UltraInstynkt","Points":10178,"X":607,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533471Z"},{"ID":36974,"Name":"009. Night Raid*","Points":10160,"X":430,"Y":673,"Continent":"K64","Bonus":8,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533471Z"},{"ID":36976,"Name":"Hofek 28","Points":2972,"X":592,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533472Z"},{"ID":36977,"Name":"C0112","Points":10362,"X":314,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533472Z"},{"ID":36978,"Name":"Wioska barbarzyƄska","Points":9965,"X":562,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533473Z"},{"ID":36979,"Name":"Wioska 003","Points":10365,"X":666,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533473Z"},{"ID":36980,"Name":"Winterhome.050","Points":10178,"X":493,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533474Z"},{"ID":36981,"Name":"KRÓL PAPI WIELKI","Points":10360,"X":647,"Y":613,"Continent":"K66","Bonus":2,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533474Z"},{"ID":36982,"Name":"KRÓL PAPI WIELKI","Points":10085,"X":648,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533475Z"},{"ID":36983,"Name":"Darma dla zawodnika","Points":7251,"X":524,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533475Z"},{"ID":36984,"Name":"Wioska 3","Points":9407,"X":310,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533476Z"},{"ID":36985,"Name":"EO EO","Points":10083,"X":311,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533476Z"},{"ID":36986,"Name":"a moĆŒe off ? :)","Points":9355,"X":639,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533477Z"},{"ID":36987,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9988,"X":523,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533477Z"},{"ID":36988,"Name":"???","Points":9562,"X":480,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533478Z"},{"ID":36989,"Name":"0124","Points":10216,"X":377,"Y":642,"Continent":"K63","Bonus":5,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533479Z"},{"ID":36990,"Name":"TFU WD","Points":7192,"X":681,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":848915032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533479Z"},{"ID":36992,"Name":"008. New place - new friends","Points":8295,"X":601,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53348Z"},{"ID":36994,"Name":"#007. King of the Hill","Points":9458,"X":451,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53348Z"},{"ID":36995,"Name":"[047] Wioska barbarzyƄska","Points":7884,"X":674,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533481Z"},{"ID":36996,"Name":"OFF","Points":8535,"X":687,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533481Z"},{"ID":36997,"Name":"D.010","Points":9139,"X":393,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533482Z"},{"ID":36998,"Name":"Muchomor *025*","Points":8650,"X":522,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533483Z"},{"ID":36999,"Name":"049.","Points":1924,"X":331,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533483Z"},{"ID":37000,"Name":"[033] Wioska barbarzyƄska","Points":9288,"X":673,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533484Z"},{"ID":37001,"Name":"*105*","Points":10211,"X":359,"Y":378,"Continent":"K33","Bonus":4,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533484Z"},{"ID":37002,"Name":"KRÓL PAPI WIELKI","Points":9949,"X":568,"Y":578,"Continent":"K55","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533485Z"},{"ID":37003,"Name":"[010] GunWO","Points":10187,"X":676,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533485Z"},{"ID":37004,"Name":"Wioska 5","Points":8436,"X":314,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533486Z"},{"ID":37005,"Name":"KocpoƂuch 5","Points":2742,"X":327,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":848949597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533486Z"},{"ID":37006,"Name":"Wioska barbarzyƄska","Points":4036,"X":575,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":7560474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533487Z"},{"ID":37007,"Name":"kamilkaze135 #03","Points":8473,"X":656,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533487Z"},{"ID":37008,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":312,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533488Z"},{"ID":37009,"Name":"Wioska barbarzyƄska","Points":5969,"X":578,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533488Z"},{"ID":37010,"Name":"001","Points":10341,"X":347,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533489Z"},{"ID":37011,"Name":"#058#","Points":9761,"X":631,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533489Z"},{"ID":37012,"Name":"- 198 - SS","Points":7879,"X":539,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53349Z"},{"ID":37013,"Name":"BACÓWKA |041|","Points":4244,"X":668,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53349Z"},{"ID":37014,"Name":"I105","Points":7015,"X":680,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533491Z"},{"ID":37016,"Name":"0031 MzM","Points":9258,"X":627,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533491Z"},{"ID":37017,"Name":"!36 74 Plopeni","Points":7220,"X":643,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533492Z"},{"ID":37018,"Name":"z 181-A002qqqqqqqqqqqqqqq","Points":10108,"X":353,"Y":377,"Continent":"K33","Bonus":9,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533492Z"},{"ID":37019,"Name":"Taran","Points":10294,"X":342,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533493Z"},{"ID":37020,"Name":"Zeta Reticuli O","Points":10997,"X":415,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533493Z"},{"ID":37021,"Name":"Wioska barbarzyƄska","Points":4094,"X":501,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533494Z"},{"ID":37022,"Name":"004 Dom Mexicano","Points":10160,"X":527,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533495Z"},{"ID":37023,"Name":"Wioska barbarzyƄska","Points":3939,"X":405,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533495Z"},{"ID":37024,"Name":"0091","Points":9993,"X":615,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533496Z"},{"ID":37025,"Name":"041.Stradi","Points":10495,"X":447,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533496Z"},{"ID":37026,"Name":"Suppi","Points":9549,"X":328,"Y":414,"Continent":"K43","Bonus":1,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533497Z"},{"ID":37027,"Name":"AAA","Points":8593,"X":546,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533497Z"},{"ID":37028,"Name":"0041","Points":6129,"X":570,"Y":322,"Continent":"K35","Bonus":2,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533498Z"},{"ID":37029,"Name":"Postawie","Points":6699,"X":631,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533498Z"},{"ID":37030,"Name":"psycha sitting","Points":10311,"X":419,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533499Z"},{"ID":37031,"Name":"Szlachcic","Points":9925,"X":397,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533499Z"},{"ID":37032,"Name":"Ob Konfederacja","Points":8296,"X":430,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5335Z"},{"ID":37033,"Name":"Pd 03","Points":7828,"X":362,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533501Z"},{"ID":37034,"Name":"Szale","Points":9835,"X":458,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533501Z"},{"ID":37035,"Name":"073 Nagoja","Points":7609,"X":678,"Y":452,"Continent":"K46","Bonus":6,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533502Z"},{"ID":37036,"Name":"psycha sitting","Points":10311,"X":406,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533502Z"},{"ID":37037,"Name":"180...Segador M","Points":8053,"X":439,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533503Z"},{"ID":37038,"Name":"Winterhome.064","Points":10008,"X":511,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533503Z"},{"ID":37039,"Name":"Dolina Czarownic","Points":6832,"X":651,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533504Z"},{"ID":37041,"Name":"*5612*bb Instytucja","Points":10287,"X":667,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533504Z"},{"ID":37042,"Name":"ƚniadowo","Points":9306,"X":687,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":849100082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533505Z"},{"ID":37043,"Name":"086. Rahgar","Points":12154,"X":646,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533506Z"},{"ID":37044,"Name":"EMERYTOWANY KUZYN","Points":9976,"X":430,"Y":642,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533506Z"},{"ID":37045,"Name":"008 Desant","Points":9186,"X":482,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533507Z"},{"ID":37046,"Name":"#9 Dzikowo","Points":4901,"X":630,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533507Z"},{"ID":37047,"Name":"EO EO","Points":10252,"X":313,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533508Z"},{"ID":37048,"Name":"A 093","Points":9092,"X":371,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533508Z"},{"ID":37049,"Name":"Eberland","Points":9282,"X":652,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533509Z"},{"ID":37050,"Name":"Komornicy 022","Points":9825,"X":349,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533509Z"},{"ID":37051,"Name":"psycha sitting","Points":10009,"X":408,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53351Z"},{"ID":37052,"Name":"Wioska barbarzyƄska","Points":8486,"X":431,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53351Z"},{"ID":37053,"Name":"Wioska Vl","Points":11319,"X":321,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533511Z"},{"ID":37054,"Name":"Horyzont zdarzeƄ","Points":10019,"X":515,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533512Z"},{"ID":37055,"Name":"Wioska barbarzyƄska","Points":2978,"X":660,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533512Z"},{"ID":37056,"Name":"B069","Points":10495,"X":470,"Y":473,"Continent":"K44","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533513Z"},{"ID":37057,"Name":"_PUSTA+","Points":10495,"X":682,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533513Z"},{"ID":37058,"Name":"TWIERDZA .:069:.","Points":8984,"X":679,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533514Z"},{"ID":37059,"Name":"003 Casterly Rock","Points":7568,"X":315,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533514Z"},{"ID":37060,"Name":"Wioska barbarzyƄska","Points":8637,"X":654,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533515Z"},{"ID":37061,"Name":"[055] Wioska barbarzyƄska","Points":4273,"X":672,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533515Z"},{"ID":37062,"Name":"Grvvyq 103k$","Points":10495,"X":683,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533516Z"},{"ID":37063,"Name":"004. Owczarnia","Points":6436,"X":318,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533517Z"},{"ID":37064,"Name":"2.Mostoles","Points":11411,"X":579,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533517Z"},{"ID":37065,"Name":"[023] Wioska Kreynoss","Points":2381,"X":461,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533518Z"},{"ID":37066,"Name":"Winterhome.011","Points":10178,"X":509,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533518Z"},{"ID":37067,"Name":"B#018","Points":9797,"X":677,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533519Z"},{"ID":37068,"Name":"New Land 10","Points":3749,"X":343,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533519Z"},{"ID":37069,"Name":"003.","Points":4075,"X":566,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":849101311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53352Z"},{"ID":37070,"Name":"XDX","Points":10971,"X":604,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53352Z"},{"ID":37071,"Name":"Wioska barbarzyƄska","Points":3585,"X":316,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":699823490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533521Z"},{"ID":37072,"Name":"Makowiec","Points":7326,"X":674,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533521Z"},{"ID":37073,"Name":"~~078~~","Points":7844,"X":610,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533522Z"},{"ID":37074,"Name":"02. SOSna","Points":10237,"X":686,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533522Z"},{"ID":37077,"Name":"049. Wioska barbarzyƄska","Points":9717,"X":689,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533523Z"},{"ID":37078,"Name":"075.Stradi","Points":9296,"X":449,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533524Z"},{"ID":37079,"Name":"SOKzGUMIjagĂłd","Points":7489,"X":601,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533524Z"},{"ID":37080,"Name":"nowa 3","Points":5517,"X":463,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":849104546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533525Z"},{"ID":37082,"Name":"Wioska barbarzyƄska","Points":10068,"X":337,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533525Z"},{"ID":37083,"Name":"Lord Arsey KING","Points":10285,"X":572,"Y":592,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533526Z"},{"ID":37084,"Name":"I060","Points":9625,"X":679,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533526Z"},{"ID":37085,"Name":"A 058","Points":8863,"X":359,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533527Z"},{"ID":37086,"Name":"*5612*aa Bez koƄca","Points":10287,"X":669,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533527Z"},{"ID":37087,"Name":"Wioska barbarzyƄska","Points":9247,"X":595,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533528Z"},{"ID":37088,"Name":"Wioska barbarzyƄska","Points":6471,"X":536,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533528Z"},{"ID":37089,"Name":"Wioska barbarzyƄska","Points":9299,"X":335,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849046232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533529Z"},{"ID":37090,"Name":"003","Points":5312,"X":672,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533529Z"},{"ID":37091,"Name":".26. Tithilon d","Points":5285,"X":362,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53353Z"},{"ID":37092,"Name":"Wioska barbarzyƄska","Points":5179,"X":657,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53353Z"},{"ID":37093,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":315,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533531Z"},{"ID":37094,"Name":"Monetki","Points":10291,"X":474,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533531Z"},{"ID":37095,"Name":"0003","Points":4105,"X":425,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533532Z"},{"ID":37096,"Name":"psycha sitting","Points":4785,"X":415,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533532Z"},{"ID":37097,"Name":"Goirle","Points":5561,"X":621,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533533Z"},{"ID":37098,"Name":"015. Do ƛwiąt się wyrobisz ?","Points":4789,"X":355,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533534Z"},{"ID":37099,"Name":"C0018","Points":10362,"X":311,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533534Z"},{"ID":37101,"Name":"PotÄ™ĆŒny Gaj","Points":4363,"X":582,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533535Z"},{"ID":37102,"Name":"Gryfios 022","Points":11880,"X":684,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533535Z"},{"ID":37104,"Name":"- 152 - SS","Points":9377,"X":542,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533536Z"},{"ID":37105,"Name":"New Land 11","Points":3657,"X":342,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533536Z"},{"ID":37106,"Name":"096 Tomek","Points":3722,"X":684,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533537Z"},{"ID":37107,"Name":"0.18 Wioska honoru","Points":9316,"X":463,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533537Z"},{"ID":37108,"Name":"Ob Konfederacja","Points":9354,"X":429,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533538Z"},{"ID":37109,"Name":"Pallad","Points":10495,"X":681,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533538Z"},{"ID":37110,"Name":"016","Points":6912,"X":613,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533539Z"},{"ID":37111,"Name":"Wioska Mergio","Points":1489,"X":400,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":698749311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533539Z"},{"ID":37112,"Name":"Out of Touch","Points":9486,"X":324,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53354Z"},{"ID":37113,"Name":"Winterhome.009","Points":10178,"X":501,"Y":311,"Continent":"K35","Bonus":2,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53354Z"},{"ID":37114,"Name":"069 | PALESTINA","Points":9003,"X":672,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533541Z"},{"ID":37115,"Name":"TWIERDZA .:088:.","Points":7706,"X":680,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533542Z"},{"ID":37116,"Name":"Ob Konfederacja","Points":8630,"X":432,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533542Z"},{"ID":37117,"Name":"Somsiory","Points":7535,"X":662,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533543Z"},{"ID":37118,"Name":"OrzeƂ 3","Points":9976,"X":691,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533543Z"},{"ID":37119,"Name":"AAA","Points":9956,"X":542,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533544Z"},{"ID":37120,"Name":"--09--","Points":10223,"X":340,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533544Z"},{"ID":37121,"Name":"-07-","Points":5469,"X":563,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533545Z"},{"ID":37122,"Name":"043. Canes Venatici","Points":7966,"X":614,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533545Z"},{"ID":37123,"Name":"Co ja robię tutaj","Points":6569,"X":668,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533546Z"},{"ID":37124,"Name":"Wioska barbarzyƄska","Points":8283,"X":313,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533547Z"},{"ID":37125,"Name":"C0113","Points":10362,"X":313,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533547Z"},{"ID":37126,"Name":"014","Points":9835,"X":686,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533548Z"},{"ID":37127,"Name":"A027","Points":10237,"X":602,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533548Z"},{"ID":37128,"Name":"EO EO","Points":10083,"X":313,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533549Z"},{"ID":37129,"Name":"Sony 911","Points":10175,"X":622,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533549Z"},{"ID":37130,"Name":"WB19","Points":5626,"X":332,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53355Z"},{"ID":37131,"Name":"#072#","Points":9761,"X":637,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533551Z"},{"ID":37132,"Name":"=|12|=","Points":9566,"X":648,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533551Z"},{"ID":37133,"Name":"Wioska Boliston","Points":8976,"X":672,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533552Z"},{"ID":37134,"Name":"Wyspa","Points":2581,"X":383,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533552Z"},{"ID":37135,"Name":"Devano1","Points":10728,"X":335,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533553Z"},{"ID":37136,"Name":"Wioska barbarzyƄska","Points":6842,"X":372,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533553Z"},{"ID":37137,"Name":"X | Forest Cyaaaanku","Points":10000,"X":316,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533554Z"},{"ID":37138,"Name":"A 094","Points":9900,"X":371,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533555Z"},{"ID":37139,"Name":".:011:.","Points":8424,"X":359,"Y":628,"Continent":"K63","Bonus":6,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533555Z"},{"ID":37140,"Name":"A023","Points":10908,"X":605,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533556Z"},{"ID":37141,"Name":"Wioska barbarzyƄska","Points":9037,"X":669,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533556Z"},{"ID":37142,"Name":"002. Wehrmacht","Points":10436,"X":340,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533557Z"},{"ID":37143,"Name":"=|11|=","Points":8245,"X":647,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533557Z"},{"ID":37145,"Name":"266...EMERSON","Points":6117,"X":462,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533558Z"},{"ID":37147,"Name":"130","Points":10207,"X":391,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533559Z"},{"ID":37148,"Name":"- 164 - SS","Points":10000,"X":537,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533559Z"},{"ID":37149,"Name":"*011*","Points":10211,"X":353,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53356Z"},{"ID":37150,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":314,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53356Z"},{"ID":37151,"Name":"Dream on","Points":9479,"X":309,"Y":497,"Continent":"K43","Bonus":1,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533561Z"},{"ID":37152,"Name":"Out of Touch","Points":9742,"X":323,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533561Z"},{"ID":37153,"Name":"C0104","Points":10362,"X":320,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533562Z"},{"ID":37154,"Name":"-07-","Points":8506,"X":333,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533563Z"},{"ID":37155,"Name":"*INTERTWINED*","Points":9711,"X":506,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533563Z"},{"ID":37156,"Name":"Out of Touch","Points":8240,"X":322,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533564Z"},{"ID":37157,"Name":"073 komornicy","Points":5194,"X":323,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533564Z"},{"ID":37159,"Name":"230","Points":2197,"X":413,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533565Z"},{"ID":37160,"Name":"O0019","Points":9970,"X":498,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533566Z"},{"ID":37161,"Name":"UltraInstynkt+","Points":10311,"X":586,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533566Z"},{"ID":37162,"Name":"Szale","Points":8066,"X":459,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533567Z"},{"ID":37163,"Name":"WƂadcy PóƂnocy 08","Points":6509,"X":689,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533567Z"},{"ID":37164,"Name":"Wioska barbarzyƄska","Points":7357,"X":687,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533568Z"},{"ID":37166,"Name":"--03--","Points":10217,"X":342,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533568Z"},{"ID":37167,"Name":"- 150 - SS","Points":9638,"X":541,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533569Z"},{"ID":37168,"Name":"Wioska barbarzyƄska","Points":9825,"X":692,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533569Z"},{"ID":37169,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":318,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53357Z"},{"ID":37170,"Name":"- 182 - SS","Points":7764,"X":534,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53357Z"},{"ID":37171,"Name":"(010)Kurth","Points":7219,"X":326,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533571Z"},{"ID":37172,"Name":"Vanaheim V","Points":1825,"X":595,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533571Z"},{"ID":37173,"Name":"$Sochan","Points":9382,"X":686,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533572Z"},{"ID":37174,"Name":"Szlachcic","Points":9292,"X":398,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533572Z"},{"ID":37176,"Name":"B#016","Points":9797,"X":683,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533573Z"},{"ID":37177,"Name":"Ob Konfederacja","Points":9976,"X":432,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533573Z"},{"ID":37178,"Name":"0.16 Jolo","Points":9740,"X":464,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533574Z"},{"ID":37179,"Name":"0004 Cytadela","Points":9902,"X":318,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533574Z"},{"ID":37180,"Name":"Wioska Bochun10","Points":7530,"X":316,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533575Z"},{"ID":37181,"Name":"*INTERTWINED*","Points":9711,"X":503,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533575Z"},{"ID":37182,"Name":"I063","Points":10098,"X":685,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533576Z"},{"ID":37183,"Name":"Kreskowo_2","Points":9904,"X":594,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533576Z"},{"ID":37184,"Name":"Wioska Halny","Points":2345,"X":453,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698757487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533577Z"},{"ID":37185,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":320,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533577Z"},{"ID":37186,"Name":"Wioska barbarzyƄska","Points":3550,"X":410,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533578Z"},{"ID":37188,"Name":"Wioska Jarl Pękniny","Points":6004,"X":661,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":8582487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533579Z"},{"ID":37189,"Name":"Village A","Points":2638,"X":667,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533579Z"},{"ID":37190,"Name":"0089","Points":6107,"X":611,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53358Z"},{"ID":37191,"Name":"0430","Points":10019,"X":564,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53358Z"},{"ID":37192,"Name":"(026)Yezier","Points":10146,"X":328,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533581Z"},{"ID":37193,"Name":".:088:. ƁOBUZIK","Points":5925,"X":553,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533581Z"},{"ID":37194,"Name":"A033","Points":8822,"X":600,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533582Z"},{"ID":37197,"Name":"Wioska barbarzyƄska","Points":7297,"X":521,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533582Z"},{"ID":37198,"Name":"Wioska Abo co","Points":5839,"X":376,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848886056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533583Z"},{"ID":37200,"Name":"064.Stradi","Points":9858,"X":450,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533583Z"},{"ID":37202,"Name":"C0114","Points":10362,"X":314,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533584Z"},{"ID":37203,"Name":"Wioska Rychu0890","Points":10559,"X":574,"Y":582,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533584Z"},{"ID":37204,"Name":"0.12 Night!","Points":9744,"X":467,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533585Z"},{"ID":37205,"Name":"Wioska barbarzyƄska","Points":1920,"X":356,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":9253494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533585Z"},{"ID":37206,"Name":"#0308 deleted","Points":2399,"X":478,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533586Z"},{"ID":37208,"Name":"J#005","Points":9797,"X":572,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533587Z"},{"ID":37209,"Name":"007. Ƃ","Points":3655,"X":326,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533587Z"},{"ID":37210,"Name":"Didi","Points":10476,"X":669,"Y":584,"Continent":"K56","Bonus":4,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533588Z"},{"ID":37211,"Name":"Zatonie","Points":5351,"X":353,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533589Z"},{"ID":37212,"Name":"Wioska barbarzyƄska","Points":5548,"X":687,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533589Z"},{"ID":37213,"Name":"Wioska 2","Points":4028,"X":578,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":7563943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53359Z"},{"ID":37214,"Name":"Gattacka","Points":9785,"X":679,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533591Z"},{"ID":37215,"Name":"Out of Touch","Points":3117,"X":320,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533591Z"},{"ID":37216,"Name":"Wyspa_04","Points":9638,"X":507,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533592Z"},{"ID":37217,"Name":"*175*","Points":10211,"X":336,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533592Z"},{"ID":37218,"Name":"B11 jaki znĂłw honor?","Points":9634,"X":460,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533593Z"},{"ID":37219,"Name":"*069*","Points":10211,"X":350,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533594Z"},{"ID":37220,"Name":"2.Ibiza","Points":6652,"X":573,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533594Z"},{"ID":37221,"Name":"Wioska 076","Points":9761,"X":667,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533595Z"},{"ID":37222,"Name":"AAA","Points":5858,"X":526,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533595Z"},{"ID":37223,"Name":"~053.","Points":10495,"X":516,"Y":618,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533596Z"},{"ID":37224,"Name":"#0216 Segadorr dar","Points":10178,"X":457,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533597Z"},{"ID":37226,"Name":"C0028","Points":10362,"X":310,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533597Z"},{"ID":37228,"Name":"krecik 03 e","Points":2008,"X":347,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533598Z"},{"ID":37229,"Name":"#0210 Segadorr dar","Points":10178,"X":455,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533598Z"},{"ID":37230,"Name":"Jedlanka Nowa","Points":5876,"X":577,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533599Z"},{"ID":37231,"Name":"007.","Points":10439,"X":639,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533599Z"},{"ID":37232,"Name":"Komornicy 018","Points":3098,"X":348,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5336Z"},{"ID":37233,"Name":"*113*","Points":10211,"X":358,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533601Z"},{"ID":37234,"Name":"06 Puerto Lapice","Points":6888,"X":381,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533601Z"},{"ID":37235,"Name":"xxx","Points":6967,"X":648,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533602Z"},{"ID":37236,"Name":"Ć»UBR .::.Adaczu/06","Points":3695,"X":618,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533602Z"},{"ID":37237,"Name":"[001]","Points":11581,"X":472,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533603Z"},{"ID":37238,"Name":"Szymon9408","Points":8114,"X":397,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533604Z"},{"ID":37239,"Name":"McGregor","Points":6470,"X":606,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":699548295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533604Z"},{"ID":37240,"Name":"069 donkretos1","Points":9304,"X":690,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533605Z"},{"ID":37241,"Name":"C115","Points":8055,"X":368,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533606Z"},{"ID":37242,"Name":"036 invidia","Points":10237,"X":526,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533606Z"},{"ID":37243,"Name":"Didek","Points":6657,"X":670,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533607Z"},{"ID":37244,"Name":"Lord Nc3dyh 3","Points":2417,"X":323,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":699509284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533607Z"},{"ID":37245,"Name":"Wyspa 026","Points":6050,"X":637,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533608Z"},{"ID":37246,"Name":"SOKzGUMIjagĂłd","Points":9791,"X":597,"Y":342,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533609Z"},{"ID":37247,"Name":"Wioska barbarzyƄska","Points":6689,"X":528,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533609Z"},{"ID":37248,"Name":"- 237 - RR","Points":10000,"X":588,"Y":617,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53361Z"},{"ID":37249,"Name":"Wioska 1","Points":2605,"X":575,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":7563943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53361Z"},{"ID":37250,"Name":"- 201 - SS","Points":8285,"X":538,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533611Z"},{"ID":37251,"Name":"A 086","Points":8577,"X":373,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533611Z"},{"ID":37252,"Name":"#0206 Segadorr dar","Points":5684,"X":460,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533612Z"},{"ID":37253,"Name":"Wioska barbarzyƄska","Points":7579,"X":325,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533613Z"},{"ID":37254,"Name":"002 PiƂsudskiego 138","Points":10845,"X":682,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533613Z"},{"ID":37255,"Name":"031 RAW","Points":9483,"X":589,"Y":451,"Continent":"K45","Bonus":0,"PlayerID":698829590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533614Z"},{"ID":37256,"Name":"04. Wioska Raukodel","Points":11130,"X":649,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533614Z"},{"ID":37257,"Name":"Szlachcic","Points":9233,"X":693,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533615Z"},{"ID":37258,"Name":"#0208 Segadorr dar","Points":8066,"X":458,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533615Z"},{"ID":37259,"Name":"Wioska 8","Points":7339,"X":645,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533616Z"},{"ID":37260,"Name":"Wioska Bochun10","Points":10311,"X":312,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533616Z"},{"ID":37262,"Name":"Wioska Zdobyta","Points":3287,"X":591,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533617Z"},{"ID":37264,"Name":"Neapol","Points":12154,"X":686,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":2392791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533618Z"},{"ID":37266,"Name":"AAA","Points":3249,"X":546,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533618Z"},{"ID":37267,"Name":"J#010","Points":9797,"X":572,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533619Z"},{"ID":37268,"Name":"Klaudek14","Points":5741,"X":631,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533619Z"},{"ID":37269,"Name":"0353","Points":10160,"X":444,"Y":605,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53362Z"},{"ID":37270,"Name":"Wioska Bochun10","Points":10311,"X":313,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53362Z"},{"ID":37271,"Name":"0606","Points":10019,"X":488,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533621Z"},{"ID":37273,"Name":"*INTERTWINED*","Points":9711,"X":502,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533622Z"},{"ID":37274,"Name":"Twierdza 2","Points":10003,"X":512,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533622Z"},{"ID":37275,"Name":"Wioska barbarzyƄska","Points":8421,"X":621,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533623Z"},{"ID":37276,"Name":"Wioska barbarzyƄska","Points":4982,"X":371,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533623Z"},{"ID":37277,"Name":"Winterhome.024","Points":10178,"X":501,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533624Z"},{"ID":37278,"Name":"060.","Points":3641,"X":323,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533624Z"},{"ID":37279,"Name":"Pd 04","Points":4599,"X":360,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533625Z"},{"ID":37281,"Name":"056 BanaN","Points":9191,"X":688,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533626Z"},{"ID":37282,"Name":"Wioska","Points":8119,"X":644,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":699797508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533626Z"},{"ID":37283,"Name":"2.Huelva","Points":5791,"X":560,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533627Z"},{"ID":37284,"Name":"Wioska 071","Points":9902,"X":662,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533627Z"},{"ID":37285,"Name":"Wioska barbarzyƄska","Points":10052,"X":341,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533628Z"},{"ID":37286,"Name":"Zbrodniczy ReĆŒim","Points":11073,"X":654,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533628Z"},{"ID":37287,"Name":"038","Points":7087,"X":530,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533629Z"},{"ID":37288,"Name":"079","Points":10019,"X":465,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533629Z"},{"ID":37289,"Name":"04 Smoczy DwĂłr","Points":11824,"X":461,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53363Z"},{"ID":37292,"Name":"Klaudek16","Points":5138,"X":633,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53363Z"},{"ID":37293,"Name":"[009] Kupa zabawy!","Points":10237,"X":674,"Y":423,"Continent":"K46","Bonus":2,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533631Z"},{"ID":37294,"Name":"wysypisko ƛmieci","Points":3556,"X":322,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533631Z"},{"ID":37295,"Name":"C09","Points":3924,"X":691,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533632Z"},{"ID":37296,"Name":"D013","Points":7346,"X":613,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533632Z"},{"ID":37297,"Name":"060. NiedĆșwiedzi Ząb","Points":10160,"X":666,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533633Z"},{"ID":37298,"Name":"Ć»UBR .::.Adaczu/07","Points":6440,"X":617,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533633Z"},{"ID":37300,"Name":"nie tym razem MƂody...","Points":6103,"X":330,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533634Z"},{"ID":37301,"Name":"043. Wioska barbarzyƄska","Points":10088,"X":686,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533635Z"},{"ID":37302,"Name":"{52} Ɓugi","Points":1643,"X":383,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533635Z"},{"ID":37303,"Name":"03 Campo","Points":9418,"X":382,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533636Z"},{"ID":37304,"Name":"Wioska barbarzyƄska","Points":8836,"X":673,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533636Z"},{"ID":37305,"Name":"C0115","Points":10495,"X":313,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533637Z"},{"ID":37306,"Name":"[0063]","Points":10495,"X":443,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533637Z"},{"ID":37307,"Name":"Wioska barbarzyƄska","Points":4904,"X":682,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533638Z"},{"ID":37308,"Name":"XDX","Points":8245,"X":618,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533638Z"},{"ID":37309,"Name":"Wioska barbarzyƄska","Points":6529,"X":475,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533639Z"},{"ID":37310,"Name":"Out of Touch","Points":9744,"X":326,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533639Z"},{"ID":37311,"Name":"K34 - [094] Before Land","Points":10259,"X":448,"Y":355,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53364Z"},{"ID":37312,"Name":"Out of Touch","Points":9527,"X":318,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53364Z"},{"ID":37313,"Name":"B.05 duchy serca puszczy","Points":4477,"X":555,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533641Z"},{"ID":37314,"Name":"D.033","Points":4281,"X":379,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533641Z"},{"ID":37315,"Name":"Wioska Flydy","Points":7867,"X":683,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533642Z"},{"ID":37316,"Name":"WSP","Points":6422,"X":682,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533642Z"},{"ID":37317,"Name":"*5611*f Mordor","Points":10287,"X":673,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533643Z"},{"ID":37318,"Name":"a moĆŒe off ? :)","Points":5669,"X":669,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533643Z"},{"ID":37319,"Name":"B06","Points":3485,"X":683,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533644Z"},{"ID":37320,"Name":"075- Mroczna Osada","Points":8245,"X":597,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533644Z"},{"ID":37321,"Name":"[035]","Points":6679,"X":663,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533645Z"},{"ID":37322,"Name":"Osada koczownikĂłw","Points":10040,"X":517,"Y":685,"Continent":"K65","Bonus":4,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533645Z"},{"ID":37323,"Name":"C10","Points":3427,"X":686,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533646Z"},{"ID":37324,"Name":"*101*","Points":10211,"X":365,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533646Z"},{"ID":37325,"Name":"Wioska barbarzyƄska","Points":9143,"X":585,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533647Z"},{"ID":37326,"Name":"R 033","Points":8635,"X":497,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533648Z"},{"ID":37327,"Name":"*099*","Points":10211,"X":365,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533648Z"},{"ID":37328,"Name":"ADEN","Points":10758,"X":609,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533649Z"},{"ID":37329,"Name":"Wyspa_06","Points":9638,"X":501,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533649Z"},{"ID":37330,"Name":"Zanzibar","Points":10144,"X":340,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53365Z"},{"ID":37331,"Name":"**29**","Points":8974,"X":678,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53365Z"},{"ID":37332,"Name":"OFF","Points":9604,"X":644,"Y":619,"Continent":"K66","Bonus":2,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533651Z"},{"ID":37333,"Name":"M181_010","Points":9902,"X":334,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533651Z"},{"ID":37334,"Name":"Ob Konfederacja","Points":9562,"X":426,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533652Z"},{"ID":37335,"Name":"0.25","Points":8858,"X":464,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533652Z"},{"ID":37336,"Name":"Twierdza 014","Points":2387,"X":315,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":7563185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533653Z"},{"ID":37337,"Name":"009","Points":10474,"X":590,"Y":447,"Continent":"K45","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533653Z"},{"ID":37338,"Name":"Szulernia","Points":9646,"X":370,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533654Z"},{"ID":37339,"Name":"START 04","Points":6142,"X":579,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533654Z"},{"ID":37340,"Name":"Mordor5","Points":8347,"X":314,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533655Z"},{"ID":37341,"Name":"$SanAntonioSpurs","Points":10083,"X":686,"Y":511,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533655Z"},{"ID":37342,"Name":"034# Sacannah","Points":4698,"X":483,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533656Z"},{"ID":37343,"Name":"Out of Touch","Points":9669,"X":325,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533656Z"},{"ID":37344,"Name":"Wioska barbarzyƄska","Points":4386,"X":690,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533657Z"},{"ID":37345,"Name":"Kolno","Points":7753,"X":688,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":849100082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533657Z"},{"ID":37346,"Name":"z 181-A005","Points":8581,"X":355,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533658Z"},{"ID":37347,"Name":"Komornicy 002","Points":9761,"X":350,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533658Z"},{"ID":37348,"Name":"123","Points":10373,"X":471,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533659Z"},{"ID":37349,"Name":"=001= Winterfell","Points":10410,"X":609,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533659Z"},{"ID":37350,"Name":"Dream on","Points":9484,"X":310,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53366Z"},{"ID":37351,"Name":"A 023","Points":5503,"X":365,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53366Z"},{"ID":37352,"Name":"z Chocapic","Points":8190,"X":364,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533661Z"},{"ID":37353,"Name":"emoriar","Points":7927,"X":687,"Y":453,"Continent":"K46","Bonus":6,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533661Z"},{"ID":37355,"Name":"Ob Konfederacja","Points":9723,"X":425,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533662Z"},{"ID":37356,"Name":"Memfis","Points":8216,"X":411,"Y":662,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533662Z"},{"ID":37357,"Name":"Cubryna","Points":5199,"X":310,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533663Z"},{"ID":37358,"Name":"*003*","Points":10559,"X":314,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533663Z"},{"ID":37359,"Name":"stickman7777","Points":8629,"X":595,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533664Z"},{"ID":37360,"Name":"X | Forest Cyaaaanku","Points":10000,"X":315,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533664Z"},{"ID":37361,"Name":"Vanaheim I","Points":7190,"X":594,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533665Z"},{"ID":37362,"Name":"074KK","Points":5950,"X":586,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533666Z"},{"ID":37364,"Name":"C0309","Points":4689,"X":319,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533666Z"},{"ID":37365,"Name":"--10--","Points":10220,"X":338,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533667Z"},{"ID":37366,"Name":"000 Plutosea","Points":9976,"X":315,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533667Z"},{"ID":37367,"Name":"K35 - [005] Before Land","Points":9783,"X":575,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533668Z"},{"ID":37368,"Name":"AAA","Points":9893,"X":548,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533668Z"},{"ID":37369,"Name":"Napewno to nie jest off","Points":9835,"X":587,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533669Z"},{"ID":37370,"Name":"Wioska barbarzyƄska","Points":4200,"X":686,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533669Z"},{"ID":37371,"Name":"Wioska 02","Points":3667,"X":350,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":3372959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53367Z"},{"ID":37372,"Name":"Topornik 5","Points":10795,"X":649,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53367Z"},{"ID":37373,"Name":"[0065]","Points":10495,"X":440,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533671Z"},{"ID":37374,"Name":"A 027","Points":5076,"X":365,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533671Z"},{"ID":37375,"Name":"Pomidorowy dzem","Points":9965,"X":687,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533672Z"},{"ID":37376,"Name":"035 - Nowy Początek...","Points":9676,"X":375,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533672Z"},{"ID":37377,"Name":"10. Evil Demon","Points":9741,"X":498,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533673Z"},{"ID":37378,"Name":"**49**","Points":7586,"X":671,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533673Z"},{"ID":37379,"Name":"*161*","Points":10211,"X":340,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533674Z"},{"ID":37380,"Name":"- 184 - SS","Points":8299,"X":533,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533674Z"},{"ID":37381,"Name":"AAA","Points":6412,"X":545,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533675Z"},{"ID":37382,"Name":"013.","Points":9208,"X":639,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533675Z"},{"ID":37383,"Name":"C001","Points":5806,"X":674,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533676Z"},{"ID":37384,"Name":"#010#","Points":9761,"X":627,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533676Z"},{"ID":37385,"Name":"Wioska 058","Points":9761,"X":651,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533677Z"},{"ID":37386,"Name":"Wioska new","Points":2731,"X":591,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533677Z"},{"ID":37387,"Name":"*159*","Points":10211,"X":336,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533678Z"},{"ID":37388,"Name":"A029","Points":9216,"X":600,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533679Z"},{"ID":37389,"Name":"10. Plac Wilsona","Points":7114,"X":486,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533679Z"},{"ID":37390,"Name":"ADEN","Points":6389,"X":610,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53368Z"},{"ID":37391,"Name":"[040] Wioska barbarzyƄska","Points":9288,"X":677,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53368Z"},{"ID":37392,"Name":"06.wiocha","Points":5722,"X":330,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533681Z"},{"ID":37393,"Name":"=|49|=","Points":4572,"X":651,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533681Z"},{"ID":37394,"Name":"Middle K35","Points":8470,"X":598,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533682Z"},{"ID":37395,"Name":"Dream on","Points":9485,"X":310,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533682Z"},{"ID":37396,"Name":"034","Points":10495,"X":335,"Y":589,"Continent":"K53","Bonus":8,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533683Z"},{"ID":37397,"Name":"Wioska barbarzyƄska","Points":4356,"X":575,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533683Z"},{"ID":37398,"Name":"-026-BBB","Points":10019,"X":616,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533684Z"},{"ID":37399,"Name":"C0046","Points":10362,"X":312,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533684Z"},{"ID":37400,"Name":"Wioska 078","Points":9124,"X":665,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533685Z"},{"ID":37401,"Name":"099 invidia","Points":7225,"X":525,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533685Z"},{"ID":37402,"Name":"C0005","Points":10362,"X":307,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533686Z"},{"ID":37403,"Name":"HORUS ...","Points":10088,"X":572,"Y":675,"Continent":"K65","Bonus":7,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533686Z"},{"ID":37404,"Name":"Wioska barbarzyƄska","Points":1703,"X":561,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533687Z"},{"ID":37405,"Name":"a moĆŒe off ? :)","Points":9360,"X":639,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533687Z"},{"ID":37406,"Name":"Wioska barbarzyƄska","Points":9469,"X":388,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533688Z"},{"ID":37407,"Name":"I066","Points":9959,"X":686,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533688Z"},{"ID":37408,"Name":"D.011","Points":5926,"X":393,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533689Z"},{"ID":37409,"Name":"AGA5","Points":8853,"X":687,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533689Z"},{"ID":37410,"Name":"A 067","Points":9676,"X":363,"Y":637,"Continent":"K63","Bonus":3,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53369Z"},{"ID":37411,"Name":"X | Forest Cyaaaanku","Points":9649,"X":314,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533691Z"},{"ID":37412,"Name":"Wioska barbarzyƄska","Points":9704,"X":595,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533691Z"},{"ID":37413,"Name":"SsSs","Points":10141,"X":395,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533692Z"},{"ID":37414,"Name":"178...Segadorr","Points":10713,"X":442,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533692Z"},{"ID":37415,"Name":"Wioska barbarzyƄska","Points":5298,"X":312,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533693Z"},{"ID":37416,"Name":"Wioska Bonaro","Points":4359,"X":647,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":8760124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533693Z"},{"ID":37417,"Name":"Wioska barbarzyƄska","Points":9971,"X":339,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533694Z"},{"ID":37418,"Name":"[0075]","Points":10495,"X":442,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533694Z"},{"ID":37419,"Name":"Didus P","Points":7739,"X":671,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533695Z"},{"ID":37421,"Name":"New World","Points":10294,"X":433,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533696Z"},{"ID":37422,"Name":"-06-","Points":10495,"X":639,"Y":365,"Continent":"K36","Bonus":5,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533696Z"},{"ID":37423,"Name":"Pd 07","Points":3868,"X":361,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533697Z"},{"ID":37424,"Name":"Wioska 5","Points":8677,"X":524,"Y":506,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533697Z"},{"ID":37425,"Name":"Szale","Points":9579,"X":469,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533698Z"},{"ID":37426,"Name":"yyy? Lucky Men","Points":6643,"X":604,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":8963720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533699Z"},{"ID":37427,"Name":"PaƄstfa PuƂnocy","Points":9742,"X":584,"Y":331,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533699Z"},{"ID":37428,"Name":"psycha sitting","Points":4075,"X":422,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5337Z"},{"ID":37429,"Name":"(034)Bavland","Points":9836,"X":323,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5337Z"},{"ID":37430,"Name":"Wioska barbarzyƄska","Points":2663,"X":324,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533701Z"},{"ID":37431,"Name":"SOKzGUMIjagĂłd","Points":10393,"X":598,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533701Z"},{"ID":37432,"Name":"Wioska barbarzyƄska","Points":9781,"X":692,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533702Z"},{"ID":37433,"Name":"000 Plutosea","Points":10117,"X":320,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533703Z"},{"ID":37434,"Name":"Didus P","Points":6835,"X":672,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533703Z"},{"ID":37435,"Name":"Ob Konfederacja","Points":8637,"X":437,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533704Z"},{"ID":37436,"Name":"*005*","Points":10559,"X":315,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533704Z"},{"ID":37437,"Name":"EO EO","Points":10019,"X":307,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533705Z"},{"ID":37438,"Name":"Wioska barbarzyƄska","Points":7262,"X":389,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533705Z"},{"ID":37439,"Name":"007. Wioska ƁYsY52","Points":9711,"X":326,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533706Z"},{"ID":37440,"Name":"Wyspa_07","Points":9638,"X":502,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533706Z"},{"ID":37441,"Name":"Gattacka","Points":9717,"X":681,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533707Z"},{"ID":37442,"Name":"*154*","Points":6614,"X":344,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533708Z"},{"ID":37443,"Name":"Wioska Lebera","Points":10341,"X":333,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533708Z"},{"ID":37444,"Name":"Out of Touch","Points":9741,"X":322,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533709Z"},{"ID":37445,"Name":"#0284 Don Noobas","Points":10148,"X":474,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533709Z"},{"ID":37446,"Name":"AAA","Points":2811,"X":323,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":8184383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53371Z"},{"ID":37447,"Name":"A08","Points":9562,"X":475,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53371Z"},{"ID":37448,"Name":"Szlachcic","Points":7637,"X":318,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533711Z"},{"ID":37449,"Name":"ADEN","Points":9737,"X":519,"Y":384,"Continent":"K35","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533711Z"},{"ID":37450,"Name":"Ć»UBR PSYCHIATRYK 018","Points":8402,"X":621,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533712Z"},{"ID":37451,"Name":"X | Forest Cyaaaanku","Points":10000,"X":311,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533713Z"},{"ID":37453,"Name":"Gattacka","Points":9711,"X":679,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533713Z"},{"ID":37454,"Name":"ula887","Points":7889,"X":619,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533714Z"},{"ID":37455,"Name":"[003]","Points":11417,"X":474,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533715Z"},{"ID":37456,"Name":"2.Murcja","Points":4990,"X":576,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533715Z"},{"ID":37457,"Name":"psycha sitting","Points":9170,"X":401,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533716Z"},{"ID":37458,"Name":"Taran","Points":9965,"X":340,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533716Z"},{"ID":37459,"Name":"Wioska barbarzyƄska","Points":3400,"X":545,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699244334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533717Z"},{"ID":37460,"Name":"2.Merida","Points":11099,"X":581,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533717Z"},{"ID":37461,"Name":"2.Toledo","Points":4472,"X":575,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533718Z"},{"ID":37462,"Name":"X 003","Points":7988,"X":593,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533718Z"},{"ID":37463,"Name":"New World","Points":10292,"X":432,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533719Z"},{"ID":37464,"Name":"035 Barba 12","Points":2879,"X":317,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53372Z"},{"ID":37465,"Name":"2.Bilbao","Points":10060,"X":574,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53372Z"},{"ID":37466,"Name":"040 Petrovya","Points":10845,"X":663,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533721Z"},{"ID":37467,"Name":"C0019","Points":10362,"X":314,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533721Z"},{"ID":37468,"Name":"Wioska barbarzyƄska","Points":11293,"X":684,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533722Z"},{"ID":37469,"Name":"C0140","Points":10362,"X":310,"Y":535,"Continent":"K53","Bonus":3,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533722Z"},{"ID":37470,"Name":"HOOC","Points":1277,"X":399,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533723Z"},{"ID":37471,"Name":"047. Reavstone","Points":10160,"X":661,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533723Z"},{"ID":37472,"Name":"PiekƂo to inni","Points":9753,"X":526,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533724Z"},{"ID":37473,"Name":"[035] Wioska barbarzyƄska","Points":9288,"X":674,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533725Z"},{"ID":37474,"Name":"[0025] XXX","Points":10495,"X":446,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533725Z"},{"ID":37475,"Name":"OrzeƂ WylądowaƂ","Points":10252,"X":455,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533726Z"},{"ID":37476,"Name":"Wioska 2","Points":5648,"X":626,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533726Z"},{"ID":37478,"Name":"xxx","Points":7020,"X":687,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533727Z"},{"ID":37479,"Name":"08. Wioska Raukodel","Points":11130,"X":650,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533727Z"},{"ID":37481,"Name":"- 137 - SS","Points":10000,"X":537,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533728Z"},{"ID":37482,"Name":"Wioska dekunka2","Points":1853,"X":554,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":699167148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533729Z"},{"ID":37483,"Name":"202","Points":8840,"X":423,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533729Z"},{"ID":37484,"Name":"Wioska barbarzyƄska","Points":7618,"X":644,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53373Z"},{"ID":37485,"Name":"004","Points":10373,"X":468,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53373Z"},{"ID":37486,"Name":"AAA","Points":9033,"X":534,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533731Z"},{"ID":37487,"Name":"045- Mroczna Osada","Points":12154,"X":653,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533731Z"},{"ID":37488,"Name":"New World","Points":10295,"X":438,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533732Z"},{"ID":37489,"Name":"TARAN","Points":9835,"X":550,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533733Z"},{"ID":37490,"Name":"0013","Points":2633,"X":364,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533733Z"},{"ID":37491,"Name":"020 jakoƛ to będzie","Points":10237,"X":515,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533734Z"},{"ID":37492,"Name":"TWIERDZA .:032:.","Points":10370,"X":680,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533734Z"},{"ID":37493,"Name":"050","Points":8316,"X":359,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533735Z"},{"ID":37494,"Name":"A022","Points":10217,"X":607,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533735Z"},{"ID":37495,"Name":"Wioska barbarzyƄska","Points":3640,"X":564,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533736Z"},{"ID":37496,"Name":"Wioska barbarzyƄska","Points":7731,"X":527,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533736Z"},{"ID":37497,"Name":"z internacionale 018 ttttttttttt","Points":9674,"X":352,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533737Z"},{"ID":37498,"Name":"052. Wioska barbarzyƄska","Points":9255,"X":691,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533738Z"},{"ID":37500,"Name":"027.","Points":2095,"X":331,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533738Z"},{"ID":37502,"Name":"Winterhome.038","Points":10178,"X":495,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533739Z"},{"ID":37503,"Name":"....","Points":9761,"X":649,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533739Z"},{"ID":37504,"Name":"stickman222222","Points":8590,"X":596,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53374Z"},{"ID":37505,"Name":"B.16 duchy serca puszczy","Points":3235,"X":561,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53374Z"},{"ID":37506,"Name":"- 166 - SS","Points":9644,"X":546,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533741Z"},{"ID":37507,"Name":"Wioska barbarzyƄska","Points":5836,"X":574,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533741Z"},{"ID":37508,"Name":"-Akuku-","Points":9381,"X":343,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533742Z"},{"ID":37509,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":316,"Y":449,"Continent":"K43","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533743Z"},{"ID":37511,"Name":"Komornicy 003","Points":8764,"X":348,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533743Z"},{"ID":37512,"Name":"Szlachcic","Points":10475,"X":379,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533744Z"},{"ID":37513,"Name":"Out of Touch","Points":9745,"X":323,"Y":428,"Continent":"K43","Bonus":5,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533744Z"},{"ID":37514,"Name":"Jednak wolę gofry","Points":9835,"X":495,"Y":640,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533745Z"},{"ID":37515,"Name":"A1.","Points":12154,"X":315,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533745Z"},{"ID":37516,"Name":"*106*","Points":10168,"X":359,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533746Z"},{"ID":37517,"Name":"OFF","Points":9588,"X":662,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533746Z"},{"ID":37518,"Name":"--11--","Points":6620,"X":345,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533747Z"},{"ID":37519,"Name":"Out of Touch","Points":8122,"X":323,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533748Z"},{"ID":37520,"Name":"Wioska barbarzyƄska001","Points":9667,"X":335,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":849046232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533748Z"},{"ID":37521,"Name":"089","Points":10495,"X":450,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533749Z"},{"ID":37522,"Name":"Skunik","Points":2917,"X":411,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533749Z"},{"ID":37523,"Name":"Wioska barbarzyƄska","Points":7909,"X":519,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53375Z"},{"ID":37525,"Name":"Winterhome.005","Points":10178,"X":508,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53375Z"},{"ID":37526,"Name":"-022-","Points":9977,"X":332,"Y":584,"Continent":"K53","Bonus":6,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533751Z"},{"ID":37527,"Name":"034 - Nowy Początek...","Points":9492,"X":374,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533752Z"},{"ID":37528,"Name":"Ć»elazny deff","Points":8017,"X":359,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533752Z"},{"ID":37530,"Name":"z 00101Fajnie","Points":10237,"X":357,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533753Z"},{"ID":37532,"Name":"wysypisko ƛmieci","Points":5566,"X":320,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533753Z"},{"ID":37533,"Name":"2.Valencia","Points":9869,"X":571,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533754Z"},{"ID":37534,"Name":"xxx","Points":9761,"X":647,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533754Z"},{"ID":37535,"Name":"New Land 12","Points":3653,"X":342,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533755Z"},{"ID":37536,"Name":"081. Ziemia Niczyja","Points":8160,"X":648,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533755Z"},{"ID":37537,"Name":"A 101","Points":6395,"X":369,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533756Z"},{"ID":37538,"Name":"004 Anor Londo","Points":10068,"X":518,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533756Z"},{"ID":37539,"Name":"CiepielĂłw","Points":10595,"X":576,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533757Z"},{"ID":37540,"Name":"Kielce","Points":2824,"X":560,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533758Z"},{"ID":37541,"Name":"W07","Points":9539,"X":335,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533758Z"},{"ID":37542,"Name":"Out of Touch","Points":6165,"X":323,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533759Z"},{"ID":37543,"Name":"Wioska 098","Points":9761,"X":643,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533759Z"},{"ID":37544,"Name":"- 154 - SS","Points":9957,"X":535,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53376Z"},{"ID":37545,"Name":"Szlachcic","Points":10495,"X":388,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53376Z"},{"ID":37546,"Name":"New Land 14","Points":3597,"X":342,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533761Z"},{"ID":37547,"Name":"Dark hell","Points":10282,"X":661,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533762Z"},{"ID":37548,"Name":"New World","Points":10294,"X":440,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533762Z"},{"ID":37549,"Name":"- 165 - SS","Points":9070,"X":546,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533763Z"},{"ID":37550,"Name":"012","Points":12154,"X":319,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533763Z"},{"ID":37551,"Name":"$ClevelandCavaliers","Points":6353,"X":692,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533764Z"},{"ID":37552,"Name":"psycha sitting","Points":10311,"X":407,"Y":664,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533764Z"},{"ID":37553,"Name":"C.007","Points":10002,"X":691,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533765Z"},{"ID":37554,"Name":"[003] Pruty","Points":10495,"X":673,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533765Z"},{"ID":37555,"Name":"InowrocƂaw","Points":6349,"X":666,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533766Z"},{"ID":37556,"Name":"047 Stumilowy Las","Points":9098,"X":665,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533766Z"},{"ID":37557,"Name":"Topornik 6","Points":10087,"X":652,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533767Z"},{"ID":37558,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":316,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533767Z"},{"ID":37559,"Name":"psycha sitting","Points":10178,"X":418,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533768Z"},{"ID":37560,"Name":"Rubiez6","Points":9814,"X":306,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533768Z"},{"ID":37561,"Name":"Czysta ;-)","Points":8297,"X":383,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533769Z"},{"ID":37562,"Name":"Taran","Points":10728,"X":679,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53377Z"},{"ID":37563,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":4915,"X":380,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53377Z"},{"ID":37565,"Name":"Wioska barbarzyƄska","Points":10184,"X":337,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533771Z"},{"ID":37566,"Name":"Pd 08","Points":9793,"X":360,"Y":634,"Continent":"K63","Bonus":9,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533771Z"},{"ID":37567,"Name":"New World","Points":10291,"X":433,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533772Z"},{"ID":37568,"Name":"014. za oknami noc","Points":9858,"X":686,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533772Z"},{"ID":37569,"Name":"068. Beirland","Points":8509,"X":662,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533773Z"},{"ID":37570,"Name":"Wioska barbarzyƄska","Points":6491,"X":367,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533774Z"},{"ID":37571,"Name":"A028","Points":10237,"X":601,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533774Z"},{"ID":37572,"Name":"xxxxxxxxxxx","Points":10297,"X":549,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533775Z"},{"ID":37573,"Name":"Out of Touch","Points":9505,"X":323,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533775Z"},{"ID":37574,"Name":"z 181-A006","Points":8636,"X":356,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533776Z"},{"ID":37575,"Name":"[0138]","Points":9337,"X":453,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533776Z"},{"ID":37576,"Name":"Sullivanum [4]","Points":10585,"X":337,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":1606425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533777Z"},{"ID":37577,"Name":"035","Points":10495,"X":556,"Y":402,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533777Z"},{"ID":37578,"Name":"C07","Points":5502,"X":688,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533778Z"},{"ID":37579,"Name":"**45**","Points":7839,"X":674,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533778Z"},{"ID":37580,"Name":"JAN NEW3 Ost","Points":8433,"X":689,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533779Z"},{"ID":37581,"Name":"037","Points":8317,"X":333,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533779Z"},{"ID":37582,"Name":"KRÓL PAPI WIELKI","Points":9975,"X":652,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53378Z"},{"ID":37583,"Name":"C0038","Points":10362,"X":313,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53378Z"},{"ID":37584,"Name":"C0063","Points":10362,"X":314,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533781Z"},{"ID":37585,"Name":"=|47|=","Points":10495,"X":654,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533781Z"},{"ID":37586,"Name":"TWIERDZA .:080:.","Points":7991,"X":675,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533782Z"},{"ID":37587,"Name":"C0055","Points":10362,"X":310,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533782Z"},{"ID":37588,"Name":"C0116","Points":10342,"X":315,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533783Z"},{"ID":37589,"Name":"017.","Points":6059,"X":640,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533783Z"},{"ID":37592,"Name":"X | Forest Cyaaaanku","Points":10000,"X":315,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533784Z"},{"ID":37593,"Name":"Wyspa_14","Points":9638,"X":501,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533784Z"},{"ID":37594,"Name":"Ave Why!","Points":8137,"X":453,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533785Z"},{"ID":37595,"Name":"0043","Points":4804,"X":568,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533786Z"},{"ID":37597,"Name":"036","Points":5290,"X":654,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533786Z"},{"ID":37598,"Name":"Feed me more 017","Points":10084,"X":492,"Y":382,"Continent":"K34","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533787Z"},{"ID":37599,"Name":"123","Points":10373,"X":465,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533787Z"},{"ID":37600,"Name":"0092","Points":10252,"X":570,"Y":675,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533788Z"},{"ID":37601,"Name":"SOKzGUMIjagĂłd","Points":11130,"X":648,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533788Z"},{"ID":37602,"Name":"WschĂłd X2","Points":10311,"X":685,"Y":526,"Continent":"K56","Bonus":8,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533789Z"},{"ID":37603,"Name":"Wioska barbarzyƄska","Points":5195,"X":626,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533789Z"},{"ID":37604,"Name":"z 011 EV6","Points":7866,"X":360,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53379Z"},{"ID":37605,"Name":"#0290 Marass","Points":4551,"X":463,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53379Z"},{"ID":37606,"Name":"Szlachcic","Points":9723,"X":397,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533791Z"},{"ID":37607,"Name":"05. Suzi Rivers","Points":10311,"X":557,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533792Z"},{"ID":37608,"Name":"Out of Touch","Points":3364,"X":319,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533792Z"},{"ID":37609,"Name":"Sielawa","Points":9747,"X":329,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533793Z"},{"ID":37611,"Name":"Wioska barbarzyƄska","Points":3154,"X":619,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533793Z"},{"ID":37613,"Name":"067- Mroczna Osada","Points":7777,"X":597,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533794Z"},{"ID":37614,"Name":"Zeta Reticuli W","Points":9014,"X":363,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533794Z"},{"ID":37615,"Name":"[0066]","Points":10495,"X":437,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533795Z"},{"ID":37616,"Name":"TARAN","Points":9439,"X":548,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533796Z"},{"ID":37617,"Name":"EO EO","Points":10495,"X":312,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533796Z"},{"ID":37618,"Name":"psycha sitting","Points":10311,"X":416,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533797Z"},{"ID":37619,"Name":"Topornik 7","Points":10164,"X":653,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533797Z"},{"ID":37620,"Name":"[007]","Points":10467,"X":473,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533798Z"},{"ID":37621,"Name":"C.008","Points":10000,"X":691,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533798Z"},{"ID":37622,"Name":"PoƂudnie.005","Points":10102,"X":552,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533799Z"},{"ID":37623,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":317,"Y":461,"Continent":"K43","Bonus":6,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533799Z"},{"ID":37624,"Name":"psycha sitting","Points":9644,"X":406,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5338Z"},{"ID":37625,"Name":"Wioska barbarzyƄska","Points":5364,"X":346,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5338Z"},{"ID":37627,"Name":"*185*","Points":10211,"X":329,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533801Z"},{"ID":37628,"Name":"Wioska barbarzyƄska","Points":4007,"X":564,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533802Z"},{"ID":37629,"Name":"z. Lecimy tu 22","Points":4523,"X":354,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533802Z"},{"ID":37630,"Name":"2.Sevilla","Points":7741,"X":570,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533803Z"},{"ID":37631,"Name":"Szlachcic","Points":10475,"X":393,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533803Z"},{"ID":37632,"Name":"Lord Lord Franek .#192","Points":7446,"X":618,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533804Z"},{"ID":37633,"Name":"C 019","Points":10920,"X":690,"Y":523,"Continent":"K56","Bonus":7,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533804Z"},{"ID":37634,"Name":"Wioska 4","Points":2833,"X":643,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533805Z"},{"ID":37635,"Name":"Z 005","Points":5636,"X":332,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533805Z"},{"ID":37636,"Name":"Obok sąsiada 2","Points":9630,"X":384,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533806Z"},{"ID":37637,"Name":"Out of Touch","Points":2454,"X":325,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533807Z"},{"ID":37638,"Name":"*014*","Points":10211,"X":353,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533807Z"},{"ID":37639,"Name":"-003- ChwaƂa Imperium","Points":9448,"X":617,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533808Z"},{"ID":37640,"Name":"C 009","Points":6192,"X":689,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533808Z"},{"ID":37641,"Name":"(008)Shinovar","Points":10311,"X":330,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533809Z"},{"ID":37642,"Name":"056.Stradi","Points":10495,"X":453,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533809Z"},{"ID":37643,"Name":"036","Points":5918,"X":485,"Y":364,"Continent":"K34","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53381Z"},{"ID":37644,"Name":"Napewno to nie jest off","Points":4509,"X":590,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53381Z"},{"ID":37645,"Name":"New Land 16","Points":3741,"X":338,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533811Z"},{"ID":37646,"Name":"C110","Points":8886,"X":368,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533812Z"},{"ID":37647,"Name":"C0187","Points":8425,"X":310,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533812Z"},{"ID":37648,"Name":"D003","Points":10220,"X":611,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533813Z"},{"ID":37649,"Name":"#032#","Points":9761,"X":627,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533813Z"},{"ID":37650,"Name":"C18","Points":3240,"X":684,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533814Z"},{"ID":37651,"Name":"Szlachcic","Points":10011,"X":389,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533814Z"},{"ID":37652,"Name":"~~058~~","Points":8817,"X":631,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533815Z"},{"ID":37654,"Name":"Z002","Points":6900,"X":516,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533816Z"},{"ID":37655,"Name":"033","Points":7159,"X":529,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533816Z"},{"ID":37656,"Name":"Kingdom 8","Points":10481,"X":689,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533817Z"},{"ID":37657,"Name":"Muchomor","Points":10294,"X":515,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533817Z"},{"ID":37658,"Name":"072 donkretos4","Points":6317,"X":689,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533818Z"},{"ID":37659,"Name":"AAA","Points":9996,"X":551,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533818Z"},{"ID":37660,"Name":"Rubiez2","Points":9752,"X":310,"Y":485,"Continent":"K43","Bonus":6,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533819Z"},{"ID":37661,"Name":"New World","Points":10291,"X":426,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533819Z"},{"ID":37662,"Name":"[005]","Points":11216,"X":470,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53382Z"},{"ID":37663,"Name":"003","Points":3539,"X":324,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849012521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533821Z"},{"ID":37664,"Name":"AAA","Points":7524,"X":539,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533821Z"},{"ID":37666,"Name":"- 162 - SS","Points":10000,"X":555,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533822Z"},{"ID":37667,"Name":"KRÓL PAPI WIELKI","Points":10215,"X":648,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533822Z"},{"ID":37668,"Name":"psycha sitting","Points":10311,"X":419,"Y":674,"Continent":"K64","Bonus":6,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533823Z"},{"ID":37669,"Name":"Taran","Points":9956,"X":339,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533823Z"},{"ID":37670,"Name":"009","Points":3180,"X":342,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533824Z"},{"ID":37671,"Name":"018 Osada koczownikĂłw","Points":8400,"X":682,"Y":453,"Continent":"K46","Bonus":7,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533824Z"},{"ID":37672,"Name":"Village","Points":8715,"X":318,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849099258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533825Z"},{"ID":37673,"Name":"Out of Touch","Points":9745,"X":321,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533826Z"},{"ID":37674,"Name":"036. Lady elo320","Points":10311,"X":688,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533826Z"},{"ID":37675,"Name":"Winterhome.053","Points":10178,"X":498,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533827Z"},{"ID":37676,"Name":"NieskoƄczonoƛć","Points":12154,"X":665,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533827Z"},{"ID":37677,"Name":"080","Points":10019,"X":464,"Y":313,"Continent":"K34","Bonus":6,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533828Z"},{"ID":37678,"Name":"Wyspa_24","Points":9638,"X":514,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533828Z"},{"ID":37679,"Name":"Komornicy 013","Points":3685,"X":350,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533829Z"},{"ID":37680,"Name":"*173*","Points":10211,"X":332,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533829Z"},{"ID":37681,"Name":"057g","Points":9809,"X":316,"Y":555,"Continent":"K53","Bonus":8,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53383Z"},{"ID":37682,"Name":"Wilamowice","Points":3071,"X":541,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533831Z"},{"ID":37683,"Name":"Winterhome.033","Points":10178,"X":502,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533831Z"},{"ID":37684,"Name":"0.22 Druga gwiazdka","Points":9792,"X":464,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533832Z"},{"ID":37685,"Name":"z 00101 Czarna magia","Points":10311,"X":357,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533832Z"},{"ID":37686,"Name":"_PUSTA","Points":9356,"X":663,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533833Z"},{"ID":37687,"Name":"Co przyniesie czas","Points":7940,"X":666,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533833Z"},{"ID":37688,"Name":"psycha sitting","Points":9187,"X":422,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533834Z"},{"ID":37689,"Name":"Moldor 10","Points":8833,"X":632,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533835Z"},{"ID":37690,"Name":"Out of Touch","Points":6583,"X":324,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533835Z"},{"ID":37691,"Name":"PoƂudnie.020","Points":10183,"X":558,"Y":682,"Continent":"K65","Bonus":6,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533836Z"},{"ID":37692,"Name":"0047","Points":4440,"X":570,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533836Z"},{"ID":37693,"Name":"- 04 - Miasto","Points":6897,"X":469,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533837Z"},{"ID":37694,"Name":"~~080~~","Points":4456,"X":633,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533837Z"},{"ID":37695,"Name":"BRZEG JORDANU | 005","Points":5948,"X":686,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533838Z"},{"ID":37696,"Name":"*184*","Points":10211,"X":335,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533838Z"},{"ID":37697,"Name":"Wyspa_09","Points":9638,"X":504,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533839Z"},{"ID":37698,"Name":"C0013","Points":10362,"X":307,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53384Z"},{"ID":37699,"Name":"Wyspa_15","Points":9638,"X":501,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53384Z"},{"ID":37701,"Name":"???","Points":9637,"X":487,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533841Z"},{"ID":37702,"Name":"Dream on","Points":9741,"X":306,"Y":487,"Continent":"K43","Bonus":5,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533841Z"},{"ID":37703,"Name":"Out of Touch","Points":9485,"X":321,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533842Z"},{"ID":37704,"Name":"A060","Points":10220,"X":606,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533842Z"},{"ID":37705,"Name":"PoƂudnie.007","Points":10300,"X":556,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533843Z"},{"ID":37707,"Name":"Wioska barbarzyƄska","Points":5543,"X":395,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533843Z"},{"ID":37709,"Name":"007","Points":4278,"X":531,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533844Z"},{"ID":37710,"Name":"TWIERDZA .:025:.","Points":10182,"X":679,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533845Z"},{"ID":37712,"Name":"PoƂudnie.004","Points":10025,"X":556,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533845Z"},{"ID":37713,"Name":"054 Wioska 007","Points":10323,"X":664,"Y":409,"Continent":"K46","Bonus":8,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533846Z"},{"ID":37715,"Name":"Wioska 4","Points":5018,"X":506,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533846Z"},{"ID":37717,"Name":"*5618* Pig","Points":10287,"X":675,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533847Z"},{"ID":37718,"Name":"**48**","Points":6428,"X":677,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533847Z"},{"ID":37719,"Name":"081","Points":10845,"X":467,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533848Z"},{"ID":37720,"Name":"Retkinia","Points":5548,"X":687,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849100246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533848Z"},{"ID":37721,"Name":"Szlachcic","Points":10478,"X":394,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533849Z"},{"ID":37722,"Name":"-001- ChwaƂa Imperium","Points":10019,"X":617,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533849Z"},{"ID":37723,"Name":"Szlachcic","Points":10495,"X":384,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53385Z"},{"ID":37724,"Name":"114","Points":9957,"X":623,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533851Z"},{"ID":37725,"Name":"#0277 olcixx","Points":9265,"X":460,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533851Z"},{"ID":37726,"Name":"Baruchowo","Points":6341,"X":664,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533852Z"},{"ID":37727,"Name":"[002]","Points":11581,"X":471,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533852Z"},{"ID":37728,"Name":"Wioska barbarzyƄska","Points":6909,"X":343,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533853Z"},{"ID":37729,"Name":"-025- BBB","Points":10160,"X":618,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533853Z"},{"ID":37730,"Name":"Suppi","Points":9553,"X":328,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533854Z"},{"ID":37731,"Name":"wysypisko ƛmieci","Points":9866,"X":322,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533854Z"},{"ID":37732,"Name":"AAA","Points":11898,"X":549,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533855Z"},{"ID":37733,"Name":"*009*","Points":10495,"X":324,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533856Z"},{"ID":37735,"Name":"*039*","Points":9744,"X":665,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533856Z"},{"ID":37736,"Name":"- 160 - SS","Points":10000,"X":556,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533857Z"},{"ID":37737,"Name":"007","Points":9774,"X":315,"Y":479,"Continent":"K43","Bonus":2,"PlayerID":7127455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533857Z"},{"ID":37738,"Name":"[0079]","Points":10495,"X":434,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533858Z"},{"ID":37739,"Name":"B.06 duchy serca puszczy","Points":2973,"X":555,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533858Z"},{"ID":37740,"Name":"[037]","Points":5907,"X":663,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533859Z"},{"ID":37741,"Name":"0158","Points":3124,"X":406,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533859Z"},{"ID":37742,"Name":"**INTERTWINED*","Points":9711,"X":498,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53386Z"},{"ID":37743,"Name":"1 Bargly","Points":5278,"X":311,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53386Z"},{"ID":37744,"Name":"kamilkaze135 #10","Points":8067,"X":656,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533861Z"},{"ID":37745,"Name":"KRÓL PAPI WIELKI","Points":9435,"X":654,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533862Z"},{"ID":37746,"Name":"I035 Ndst siadaj!","Points":10495,"X":683,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533862Z"},{"ID":37747,"Name":"Winterhome.040","Points":10178,"X":496,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533863Z"},{"ID":37748,"Name":"Wioska barbarzyƄska","Points":3839,"X":358,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533863Z"},{"ID":37749,"Name":"A 039","Points":7388,"X":364,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533864Z"},{"ID":37751,"Name":"C0199","Points":9729,"X":310,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533864Z"},{"ID":37752,"Name":"Wioska barbarzyƄska","Points":9847,"X":392,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533865Z"},{"ID":37753,"Name":"AG07","Points":8839,"X":593,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533865Z"},{"ID":37754,"Name":"Wioska barbarzyƄska","Points":4093,"X":561,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533866Z"},{"ID":37755,"Name":"046. Wioska barbarzyƄska","Points":9887,"X":689,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533866Z"},{"ID":37756,"Name":"Komornicy 001","Points":9825,"X":352,"Y":621,"Continent":"K63","Bonus":3,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533867Z"},{"ID":37757,"Name":"z 15 .","Points":7584,"X":366,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533868Z"},{"ID":37758,"Name":"kks","Points":9936,"X":620,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533868Z"},{"ID":37759,"Name":"Komornicy 024","Points":9825,"X":349,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533869Z"},{"ID":37760,"Name":"A04 KrakĂłw","Points":4723,"X":347,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533869Z"},{"ID":37761,"Name":"NOT?","Points":6727,"X":409,"Y":538,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53387Z"},{"ID":37762,"Name":"002","Points":4326,"X":310,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":848895676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53387Z"},{"ID":37763,"Name":"103.Stradi","Points":9861,"X":457,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533871Z"},{"ID":37764,"Name":"B.11 duchy serca puszczy","Points":4450,"X":551,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533872Z"},{"ID":37765,"Name":"000 Plutosea","Points":6958,"X":321,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533872Z"},{"ID":37766,"Name":"Komornicy 025","Points":2069,"X":348,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533873Z"},{"ID":37767,"Name":"bucksbarzyƄskamiiiru","Points":6630,"X":332,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533873Z"},{"ID":37768,"Name":"X | Forest Cyaaaanku","Points":6143,"X":315,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533874Z"},{"ID":37769,"Name":"New World","Points":10303,"X":428,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533874Z"},{"ID":37770,"Name":"036","Points":10311,"X":645,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533875Z"},{"ID":37771,"Name":"???","Points":6204,"X":466,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533875Z"},{"ID":37772,"Name":"005 tylko fejk","Points":10237,"X":529,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533876Z"},{"ID":37773,"Name":"New World","Points":10291,"X":437,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533877Z"},{"ID":37774,"Name":"--12--","Points":10221,"X":341,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533877Z"},{"ID":37775,"Name":"-23-","Points":3118,"X":636,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533878Z"},{"ID":37776,"Name":"*067*","Points":10211,"X":349,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533878Z"},{"ID":37777,"Name":"Szlachcic","Points":9949,"X":383,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533879Z"},{"ID":37779,"Name":"21. Porto","Points":9362,"X":686,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533879Z"},{"ID":37780,"Name":"Z 004","Points":7709,"X":329,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53388Z"},{"ID":37782,"Name":"Winterhome.008","Points":10178,"X":509,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53388Z"},{"ID":37784,"Name":"Psycho to Marka, Narka !","Points":9414,"X":320,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533881Z"},{"ID":37785,"Name":"032.xxx","Points":4113,"X":494,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533882Z"},{"ID":37786,"Name":"- 151 - SS","Points":9020,"X":547,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533882Z"},{"ID":37787,"Name":"029 Maecht","Points":4980,"X":476,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533883Z"},{"ID":37788,"Name":"012. PruszkĂłw","Points":5604,"X":316,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533883Z"},{"ID":37789,"Name":"Taran","Points":9965,"X":341,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533884Z"},{"ID":37790,"Name":".02. Moria e","Points":8292,"X":353,"Y":618,"Continent":"K63","Bonus":5,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533884Z"},{"ID":37792,"Name":"Zeta Reticuli O","Points":9614,"X":414,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533885Z"},{"ID":37793,"Name":"New Land 13","Points":3490,"X":351,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533885Z"},{"ID":37794,"Name":".2.Madryt","Points":9975,"X":571,"Y":680,"Continent":"K65","Bonus":1,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533886Z"},{"ID":37795,"Name":"088. ALFI","Points":1242,"X":473,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533886Z"},{"ID":37796,"Name":"-028- BBB","Points":4603,"X":617,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533887Z"},{"ID":37797,"Name":"*032*","Points":10211,"X":344,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533888Z"},{"ID":37798,"Name":"Dream on","Points":9699,"X":307,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533888Z"},{"ID":37799,"Name":"psycha sitting","Points":8597,"X":408,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533889Z"},{"ID":37800,"Name":"Wioska 05","Points":6260,"X":508,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533889Z"},{"ID":37802,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":313,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53389Z"},{"ID":37803,"Name":"Wioska harry213","Points":9923,"X":633,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53389Z"},{"ID":37804,"Name":"Mordor6","Points":6390,"X":312,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":848978903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533891Z"},{"ID":37805,"Name":"Wioska 3","Points":6526,"X":643,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533891Z"},{"ID":37806,"Name":"|069| BlackBird 4","Points":6935,"X":493,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533892Z"},{"ID":37807,"Name":"002 Wioska Best Wiedzmin","Points":4024,"X":607,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":6409472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533892Z"},{"ID":37808,"Name":"Darma dla zawodnika","Points":7661,"X":526,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533893Z"},{"ID":37809,"Name":"psycha sitting","Points":10178,"X":405,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533894Z"},{"ID":37810,"Name":"#002","Points":2246,"X":664,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":849099391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533894Z"},{"ID":37811,"Name":"Wyspa_19","Points":9638,"X":512,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533895Z"},{"ID":37812,"Name":"Wioska barbarzyƄska","Points":3930,"X":563,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533895Z"},{"ID":37813,"Name":".03.Minas Tirith e","Points":8709,"X":351,"Y":624,"Continent":"K63","Bonus":6,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533896Z"},{"ID":37814,"Name":"Bagdad","Points":9835,"X":499,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533896Z"},{"ID":37815,"Name":"Wioska barbarzyƄska","Points":6159,"X":367,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533897Z"},{"ID":37816,"Name":"@18@","Points":2843,"X":405,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533897Z"},{"ID":37817,"Name":"007. Wioska barbarzyƄska","Points":10237,"X":624,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533898Z"},{"ID":37818,"Name":"Wyspa_44","Points":5452,"X":509,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533898Z"},{"ID":37819,"Name":"0012","Points":8402,"X":687,"Y":467,"Continent":"K46","Bonus":6,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533899Z"},{"ID":37820,"Name":"EO EO","Points":10160,"X":311,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5339Z"},{"ID":37821,"Name":"New World","Points":9038,"X":430,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5339Z"},{"ID":37822,"Name":"Wioska zimny 11","Points":10316,"X":601,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699548295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533901Z"},{"ID":37823,"Name":"Wioska barbarzyƄska","Points":10728,"X":687,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533901Z"},{"ID":37824,"Name":"Wow2","Points":11699,"X":372,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533902Z"},{"ID":37825,"Name":"073","Points":9150,"X":689,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533902Z"},{"ID":37826,"Name":"Ć»UBR PSYCHIATRYK 008","Points":6472,"X":618,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533903Z"},{"ID":37827,"Name":"Wioska Ennoble","Points":9141,"X":599,"Y":583,"Continent":"K55","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533903Z"},{"ID":37828,"Name":"Wiejska8","Points":8058,"X":600,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533904Z"},{"ID":37829,"Name":"Hard5","Points":1690,"X":360,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533904Z"},{"ID":37830,"Name":"*074*","Points":10211,"X":354,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533905Z"},{"ID":37831,"Name":"New World","Points":10294,"X":435,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533906Z"},{"ID":37832,"Name":"X 006","Points":7477,"X":595,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533906Z"},{"ID":37833,"Name":"Lord Nc3dyh 4","Points":2613,"X":323,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":699509284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533907Z"},{"ID":37834,"Name":"207","Points":3107,"X":423,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533907Z"},{"ID":37835,"Name":"123","Points":10373,"X":479,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533908Z"},{"ID":37836,"Name":"Ć»UBR PSYCHIATRYK 007","Points":7156,"X":620,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533908Z"},{"ID":37837,"Name":"Jestem Poza Kontrolą","Points":9401,"X":345,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533909Z"},{"ID":37838,"Name":"Wyspa_12","Points":9638,"X":503,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533909Z"},{"ID":37839,"Name":"bucksbarzyƄskamiiiru","Points":2279,"X":337,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53391Z"},{"ID":37840,"Name":"Mandarynian","Points":9799,"X":342,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53391Z"},{"ID":37841,"Name":"stickman 8888","Points":8681,"X":595,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":849032059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533911Z"},{"ID":37842,"Name":"Szlachcic","Points":10479,"X":387,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533911Z"},{"ID":37843,"Name":"O63 Aldeigjuborg","Points":5478,"X":685,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533912Z"},{"ID":37845,"Name":"[060] Wioska barbarzyƄska","Points":5700,"X":680,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533912Z"},{"ID":37846,"Name":"Moldor 3","Points":11078,"X":632,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533913Z"},{"ID":37847,"Name":"[032] Wioska barbarzyƄska","Points":9288,"X":677,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533913Z"},{"ID":37848,"Name":"Osada koczownikĂłw","Points":9360,"X":660,"Y":610,"Continent":"K66","Bonus":6,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533914Z"},{"ID":37849,"Name":"The Game Has Only Just Begun","Points":9976,"X":352,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533914Z"},{"ID":37850,"Name":"018.","Points":5373,"X":639,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533915Z"},{"ID":37851,"Name":"005 La Jonquera","Points":10728,"X":648,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533915Z"},{"ID":37852,"Name":"Chekku - meito","Points":9976,"X":341,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533916Z"},{"ID":37853,"Name":"WƂadcy PóƂnocy 10","Points":6366,"X":688,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533916Z"},{"ID":37854,"Name":"Wioska barbarzyƄska","Points":4282,"X":611,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533917Z"},{"ID":37855,"Name":"Wioska barbarzyƄska","Points":5624,"X":617,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533917Z"},{"ID":37856,"Name":"(033)Babatharnam","Points":8134,"X":323,"Y":567,"Continent":"K53","Bonus":6,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533918Z"},{"ID":37857,"Name":"z 181-A007","Points":6765,"X":354,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533918Z"},{"ID":37858,"Name":"A 064","Points":8702,"X":370,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533919Z"},{"ID":37859,"Name":"*103*","Points":10211,"X":362,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53392Z"},{"ID":37860,"Name":"Wioska barbarzyƄska","Points":9478,"X":388,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.53392Z"},{"ID":37861,"Name":"KRÓL PAPI WIELKI","Points":9880,"X":649,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.533921Z"},{"ID":37862,"Name":"stickman6666","Points":8477,"X":595,"Y":667,"Continent":"K65","Bonus":0,"PlayerID":849032059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565442Z"},{"ID":37863,"Name":"z 00103 To nieĆșle byczkuqqqqqqqq","Points":10083,"X":356,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565443Z"},{"ID":37864,"Name":"Wioska barbarzyƄska","Points":6119,"X":673,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565444Z"},{"ID":37865,"Name":"C0001","Points":10362,"X":308,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565444Z"},{"ID":37867,"Name":"Semen","Points":6490,"X":619,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565445Z"},{"ID":37868,"Name":"Wioska barbarzyƄska","Points":9419,"X":694,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565445Z"},{"ID":37869,"Name":"021Plecy","Points":9716,"X":473,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565446Z"},{"ID":37870,"Name":"[048] Wioska barbarzyƄska","Points":8403,"X":674,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565446Z"},{"ID":37873,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":313,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565447Z"},{"ID":37874,"Name":"*205*","Points":6297,"X":326,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565447Z"},{"ID":37875,"Name":"Taran","Points":9955,"X":339,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565448Z"},{"ID":37876,"Name":"C0040","Points":10362,"X":309,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565448Z"},{"ID":37877,"Name":"014 za 5","Points":10400,"X":510,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565449Z"},{"ID":37878,"Name":"Wioska barbarzyƄska","Points":3181,"X":325,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":848949597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565449Z"},{"ID":37880,"Name":"017. TARZAAANA!!!","Points":9902,"X":694,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56545Z"},{"ID":37881,"Name":"043 invidia","Points":9529,"X":524,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56545Z"},{"ID":37882,"Name":"WB4","Points":6932,"X":662,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565451Z"},{"ID":37883,"Name":"I061 Z archiwum X","Points":9380,"X":685,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565452Z"},{"ID":37884,"Name":"Wioska barbarzyƄska","Points":4192,"X":357,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565452Z"},{"ID":37885,"Name":"KRÓL PAPI WIELKI","Points":9952,"X":639,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565453Z"},{"ID":37887,"Name":"Wioska 087","Points":7069,"X":656,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565453Z"},{"ID":37889,"Name":"023 getto","Points":9882,"X":676,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565454Z"},{"ID":37890,"Name":"Out of Touch","Points":6903,"X":318,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565454Z"},{"ID":37891,"Name":"04. Vertis","Points":9362,"X":693,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565455Z"},{"ID":37892,"Name":".achim.","Points":9251,"X":483,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565455Z"},{"ID":37893,"Name":"Wioska 26","Points":3723,"X":677,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565456Z"},{"ID":37894,"Name":"Twierdza 012","Points":2857,"X":316,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":7563185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565456Z"},{"ID":37895,"Name":"026","Points":10019,"X":466,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565457Z"},{"ID":37896,"Name":"088. Riks","Points":7610,"X":647,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565457Z"},{"ID":37898,"Name":"2.Grenada","Points":4764,"X":569,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565458Z"},{"ID":37899,"Name":"Mordor","Points":9778,"X":316,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":848978903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565458Z"},{"ID":37900,"Name":"Out of Touch","Points":9744,"X":317,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565459Z"},{"ID":37901,"Name":"Szulernia","Points":3656,"X":369,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56546Z"},{"ID":37902,"Name":"Wioska barbarzyƄska","Points":9365,"X":655,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56546Z"},{"ID":37903,"Name":"017","Points":7186,"X":676,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565461Z"},{"ID":37904,"Name":"D.019","Points":5040,"X":388,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565461Z"},{"ID":37905,"Name":"Winterhome.025","Points":10178,"X":503,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565462Z"},{"ID":37906,"Name":"Muchomor *024*","Points":7575,"X":524,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565463Z"},{"ID":37907,"Name":"Dream on","Points":9671,"X":306,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565463Z"},{"ID":37908,"Name":"Wioska Bochun10","Points":10311,"X":315,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565464Z"},{"ID":37909,"Name":"10. Karol","Points":10247,"X":688,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565464Z"},{"ID":37910,"Name":"Szlachcic","Points":7655,"X":668,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565465Z"},{"ID":37911,"Name":"Ob Konfederacja","Points":9617,"X":425,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565466Z"},{"ID":37912,"Name":"C.009","Points":10002,"X":693,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565466Z"},{"ID":37913,"Name":"KoƂobrzeg","Points":3385,"X":545,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565467Z"},{"ID":37914,"Name":"038 Wioska barbarzyƄska","Points":5217,"X":679,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565468Z"},{"ID":37915,"Name":"AG05","Points":9747,"X":594,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565468Z"},{"ID":37916,"Name":"Winterhome.016","Points":10010,"X":512,"Y":309,"Continent":"K35","Bonus":9,"PlayerID":8400180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565469Z"},{"ID":37917,"Name":"z Sir zombiqqqqqqqqqqqqqqqqqqqqq","Points":8148,"X":358,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565469Z"},{"ID":37918,"Name":"036.xxx","Points":4189,"X":473,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56547Z"},{"ID":37919,"Name":"040","Points":10311,"X":651,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56547Z"},{"ID":37920,"Name":"Szlachcic/Taran","Points":10237,"X":641,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565471Z"},{"ID":37921,"Name":"Mefedron 06","Points":5985,"X":394,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565472Z"},{"ID":37922,"Name":"*010*","Points":10211,"X":343,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565472Z"},{"ID":37923,"Name":"076- Mroczna Osada","Points":8564,"X":599,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565473Z"},{"ID":37924,"Name":"Winterhome.012","Points":10178,"X":503,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565473Z"},{"ID":37925,"Name":"064. Wioska barbarzyƄska","Points":8852,"X":692,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565474Z"},{"ID":37926,"Name":"z 0010 to juĆŒ wszystko","Points":10083,"X":356,"Y":370,"Continent":"K33","Bonus":5,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565474Z"},{"ID":37929,"Name":"0024 Wioska barbarzyƄska","Points":10216,"X":450,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565475Z"},{"ID":37930,"Name":"[0072]","Points":10495,"X":437,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565475Z"},{"ID":37931,"Name":"Wioska barbarzyƄska","Points":5216,"X":373,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565476Z"},{"ID":37932,"Name":"057.","Points":2127,"X":323,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565476Z"},{"ID":37933,"Name":"~ SYSUNIA ~","Points":1823,"X":316,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":698540331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565477Z"},{"ID":37934,"Name":"Wioska barbarzyƄska","Points":9704,"X":576,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565477Z"},{"ID":37935,"Name":"z A02 Lublin","Points":10196,"X":349,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565478Z"},{"ID":37936,"Name":"Czarna 002","Points":8309,"X":381,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565478Z"},{"ID":37937,"Name":"Wow","Points":12154,"X":371,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565479Z"},{"ID":37939,"Name":"034 - Leganes","Points":6854,"X":693,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565479Z"},{"ID":37940,"Name":"044g","Points":9809,"X":315,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56548Z"},{"ID":37941,"Name":"PaƄstfa PuƂnocy","Points":9619,"X":583,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565481Z"},{"ID":37942,"Name":"**INTERTWINED*","Points":9240,"X":501,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565481Z"},{"ID":37943,"Name":"psycha sitting","Points":10311,"X":424,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565482Z"},{"ID":37944,"Name":"6.DEWALT","Points":4325,"X":521,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565482Z"},{"ID":37945,"Name":"Taran 018","Points":10971,"X":639,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565483Z"},{"ID":37946,"Name":"128 33. KaruTown","Points":9912,"X":644,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565483Z"},{"ID":37947,"Name":"Winterhome.067","Points":10045,"X":491,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565484Z"},{"ID":37948,"Name":"BSK2","Points":8989,"X":652,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849066044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565485Z"},{"ID":37949,"Name":"_PUSTA !","Points":10495,"X":684,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565486Z"},{"ID":37950,"Name":"Wioska barbarzyƄska","Points":10078,"X":341,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565486Z"},{"ID":37951,"Name":"Cieplice","Points":6568,"X":358,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565487Z"},{"ID":37952,"Name":"#0207 Segadorr dar","Points":10178,"X":458,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565487Z"},{"ID":37954,"Name":"- 140 - SS","Points":10235,"X":545,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565488Z"},{"ID":37955,"Name":"z internacionale 007","Points":12021,"X":351,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565488Z"},{"ID":37956,"Name":"No.22","Points":2560,"X":473,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565489Z"},{"ID":37957,"Name":"Klaudek22","Points":2483,"X":634,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565489Z"},{"ID":37958,"Name":"???","Points":8978,"X":482,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56549Z"},{"ID":37959,"Name":"042. Cancer","Points":9761,"X":613,"Y":655,"Continent":"K66","Bonus":6,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565491Z"},{"ID":37960,"Name":"Winterhome.055","Points":10178,"X":499,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565491Z"},{"ID":37961,"Name":"003 Bar Zodiak","Points":7670,"X":528,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":849099054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565492Z"},{"ID":37963,"Name":"MELISKA","Points":6884,"X":338,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565492Z"},{"ID":37964,"Name":"TWIERDZA .:027:.","Points":10222,"X":685,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565493Z"},{"ID":37965,"Name":"Wioska barbarzyƄska","Points":5758,"X":557,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565493Z"},{"ID":37966,"Name":"C 010","Points":9526,"X":688,"Y":513,"Continent":"K56","Bonus":5,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565494Z"},{"ID":37970,"Name":"#0269 olcixx","Points":6785,"X":459,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565494Z"},{"ID":37971,"Name":"- 247 - SS","Points":10000,"X":535,"Y":690,"Continent":"K65","Bonus":5,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565495Z"},{"ID":37972,"Name":"XDX","Points":6826,"X":601,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565495Z"},{"ID":37973,"Name":"Gattacka","Points":9551,"X":680,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565496Z"},{"ID":37974,"Name":"_PUSTA","Points":9379,"X":660,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565497Z"},{"ID":37975,"Name":"Wyspa_08","Points":9638,"X":503,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565497Z"},{"ID":37976,"Name":"Szale","Points":8458,"X":464,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565498Z"},{"ID":37977,"Name":"006.Osada koczownikĂłw","Points":9623,"X":399,"Y":334,"Continent":"K33","Bonus":2,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565498Z"},{"ID":37978,"Name":"Wioska barbarzyƄska","Points":3589,"X":680,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565499Z"},{"ID":37979,"Name":"Wioska barbarzyƄska","Points":9839,"X":548,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5655Z"},{"ID":37980,"Name":"psycha sitting","Points":6084,"X":408,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5655Z"},{"ID":37981,"Name":"~070.","Points":5847,"X":527,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565501Z"},{"ID":37982,"Name":"006. Otrębusy","Points":5969,"X":317,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565501Z"},{"ID":37983,"Name":"057.","Points":8440,"X":636,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565502Z"},{"ID":37984,"Name":"Wioska Zorro 004","Points":12154,"X":671,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565502Z"},{"ID":37985,"Name":"Didus P","Points":5728,"X":672,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565503Z"},{"ID":37986,"Name":"nr4","Points":7301,"X":584,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565504Z"},{"ID":37987,"Name":"006 Apeldoorn","Points":6933,"X":643,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565504Z"},{"ID":37988,"Name":"B.04 duchy serca puszczy","Points":3786,"X":553,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565505Z"},{"ID":37989,"Name":"TARAN","Points":8167,"X":538,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565505Z"},{"ID":37990,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":314,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565506Z"},{"ID":37991,"Name":"011. ChrzanĂłw MaƂy","Points":5184,"X":319,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565506Z"},{"ID":37992,"Name":"A053","Points":10221,"X":615,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565507Z"},{"ID":37993,"Name":"Winterhome.060","Points":10178,"X":495,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565508Z"},{"ID":37994,"Name":"Diduƛ_PowrĂłciƂ","Points":10475,"X":678,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565508Z"},{"ID":37995,"Name":"0281","Points":8472,"X":469,"Y":550,"Continent":"K54","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565509Z"},{"ID":37996,"Name":"Wioska Wiki 8","Points":8058,"X":520,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565509Z"},{"ID":37997,"Name":"#015#","Points":9761,"X":628,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56551Z"},{"ID":37998,"Name":"Winterhome.044","Points":10178,"X":497,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56551Z"},{"ID":37999,"Name":"Szlachcic","Points":9906,"X":381,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565511Z"},{"ID":38000,"Name":"Wioska barbarzyƄska","Points":10342,"X":330,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565511Z"},{"ID":38001,"Name":"szkoda gadać","Points":11480,"X":598,"Y":347,"Continent":"K35","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565512Z"},{"ID":38002,"Name":"D.006","Points":8878,"X":394,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565513Z"},{"ID":38003,"Name":"New World","Points":10290,"X":439,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565513Z"},{"ID":38004,"Name":"008","Points":5956,"X":314,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":7097727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565514Z"},{"ID":38005,"Name":"113","Points":10044,"X":592,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565515Z"},{"ID":38006,"Name":"psycha sitting","Points":9870,"X":423,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565515Z"},{"ID":38008,"Name":"Gryfios 023","Points":11710,"X":685,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565516Z"},{"ID":38009,"Name":"z 001024 X","Points":8624,"X":359,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565516Z"},{"ID":38010,"Name":"O70 Oaxaca","Points":10082,"X":681,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565517Z"},{"ID":38011,"Name":"I071","Points":9605,"X":684,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565517Z"},{"ID":38012,"Name":"[0062]","Points":10495,"X":436,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565518Z"},{"ID":38014,"Name":"Wioska barbarzyƄska b","Points":3261,"X":357,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565519Z"},{"ID":38015,"Name":"Gattacka","Points":7430,"X":620,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565519Z"},{"ID":38016,"Name":"Ob Konfederacja","Points":9720,"X":439,"Y":321,"Continent":"K34","Bonus":7,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56552Z"},{"ID":38017,"Name":"Michalxj6","Points":9835,"X":501,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565521Z"},{"ID":38018,"Name":"Wioska 3","Points":8181,"X":329,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":699821755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565521Z"},{"ID":38019,"Name":"-wisc dells","Points":6468,"X":653,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565522Z"},{"ID":38020,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":314,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565522Z"},{"ID":38021,"Name":"C0263","Points":8927,"X":311,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565523Z"},{"ID":38022,"Name":"#0271 Don Noobas","Points":8687,"X":475,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565523Z"},{"ID":38023,"Name":"Wioska barbarzyƄska","Points":4245,"X":398,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565524Z"},{"ID":38024,"Name":"B.08 duchy serca puszczy","Points":2487,"X":556,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565524Z"},{"ID":38025,"Name":"P|001|","Points":5270,"X":454,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565525Z"},{"ID":38026,"Name":".23. Oxenfurt b","Points":6170,"X":355,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565525Z"},{"ID":38027,"Name":"#0234 Kamileq69 dar","Points":10178,"X":472,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565526Z"},{"ID":38028,"Name":".09. Sigint e","Points":8934,"X":352,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565526Z"},{"ID":38029,"Name":"Dream on","Points":9505,"X":308,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565527Z"},{"ID":38030,"Name":"Ć»UBR .::.Adaczu/08","Points":3918,"X":618,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565528Z"},{"ID":38031,"Name":"Ronin P","Points":9995,"X":635,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565528Z"},{"ID":38032,"Name":"Taran","Points":7443,"X":343,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565529Z"},{"ID":38033,"Name":"[0098]","Points":10495,"X":435,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565529Z"},{"ID":38034,"Name":"058","Points":10257,"X":333,"Y":588,"Continent":"K53","Bonus":6,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56553Z"},{"ID":38035,"Name":"#018#","Points":9761,"X":637,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565531Z"},{"ID":38036,"Name":"Winterhome.054","Points":10178,"X":497,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565531Z"},{"ID":38037,"Name":"Out of Touch","Points":7797,"X":323,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565532Z"},{"ID":38038,"Name":"016.Stradi","Points":10495,"X":440,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565532Z"},{"ID":38039,"Name":"_PUSTA !","Points":9176,"X":691,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565533Z"},{"ID":38040,"Name":"Wioska barbarzyƄska","Points":2928,"X":524,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565533Z"},{"ID":38041,"Name":"???","Points":8612,"X":476,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565534Z"},{"ID":38042,"Name":"- 161 - SS","Points":7909,"X":544,"Y":683,"Continent":"K65","Bonus":7,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565535Z"},{"ID":38043,"Name":"???","Points":10503,"X":491,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565535Z"},{"ID":38044,"Name":"Wioska barbarzyƄska","Points":7174,"X":327,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565536Z"},{"ID":38046,"Name":"New World","Points":10292,"X":427,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565536Z"},{"ID":38047,"Name":"2.Salamanka","Points":5791,"X":574,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565537Z"},{"ID":38048,"Name":"[011] Uszanowanko nr2","Points":7856,"X":581,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565537Z"},{"ID":38049,"Name":"Psycho to Marka, Narka !","Points":3813,"X":320,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565538Z"},{"ID":38050,"Name":"[0051]","Points":10495,"X":434,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565538Z"},{"ID":38051,"Name":"*072*","Points":10211,"X":344,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565539Z"},{"ID":38052,"Name":"*INTERTWINED*","Points":9711,"X":512,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565539Z"},{"ID":38053,"Name":"C0036","Points":10362,"X":309,"Y":513,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56554Z"},{"ID":38054,"Name":"073. Dolina Palancar","Points":9924,"X":615,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56554Z"},{"ID":38055,"Name":"*053*","Points":9999,"X":345,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565541Z"},{"ID":38056,"Name":"Wioska barbarzyƄska","Points":8943,"X":532,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565541Z"},{"ID":38057,"Name":"WƂadcy PóƂnocy","Points":10252,"X":687,"Y":504,"Continent":"K56","Bonus":8,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565542Z"},{"ID":38058,"Name":"Taran","Points":8979,"X":327,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565543Z"},{"ID":38060,"Name":"Pd 02","Points":3635,"X":359,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565543Z"},{"ID":38061,"Name":"181","Points":5871,"X":323,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699697136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565544Z"},{"ID":38062,"Name":"Wioska barbarzyƄska","Points":10088,"X":331,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565544Z"},{"ID":38063,"Name":"#078#","Points":9761,"X":635,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565545Z"},{"ID":38064,"Name":"I053 Fotobudka","Points":10136,"X":684,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565545Z"},{"ID":38065,"Name":"Ć»UBR .::.Adaczu/09","Points":3849,"X":623,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565546Z"},{"ID":38066,"Name":"022 irirjeueu","Points":10237,"X":523,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565547Z"},{"ID":38067,"Name":"Wioska","Points":5438,"X":549,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565547Z"},{"ID":38068,"Name":"AAA","Points":9131,"X":538,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565548Z"},{"ID":38069,"Name":"@14@","Points":4543,"X":406,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565548Z"},{"ID":38070,"Name":"2.Elx","Points":5141,"X":563,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565549Z"},{"ID":38071,"Name":"C0152","Points":10310,"X":316,"Y":534,"Continent":"K53","Bonus":6,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565549Z"},{"ID":38072,"Name":".:006:.","Points":8953,"X":359,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56555Z"},{"ID":38073,"Name":"067. Rekini Ząb","Points":9418,"X":666,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56555Z"},{"ID":38074,"Name":"koczo 2","Points":9570,"X":591,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565551Z"},{"ID":38075,"Name":"Winterhome.070","Points":8838,"X":492,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565551Z"},{"ID":38076,"Name":"082","Points":11570,"X":461,"Y":309,"Continent":"K34","Bonus":1,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565552Z"},{"ID":38077,"Name":"Didi","Points":10476,"X":673,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565553Z"},{"ID":38078,"Name":"A 041","Points":5051,"X":365,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565553Z"},{"ID":38079,"Name":".:094:. JuanPabloII","Points":10362,"X":541,"Y":445,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565554Z"},{"ID":38080,"Name":"004","Points":6564,"X":310,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565554Z"},{"ID":38081,"Name":"Wioska barbarzyƄska","Points":8105,"X":520,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565555Z"},{"ID":38082,"Name":"C0030","Points":10362,"X":313,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565555Z"},{"ID":38083,"Name":"KINGSAIS","Points":4915,"X":399,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565556Z"},{"ID":38084,"Name":"0528","Points":10495,"X":543,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565556Z"},{"ID":38085,"Name":"Wioska barbarzyƄska","Points":8042,"X":535,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565557Z"},{"ID":38089,"Name":"-002- ChwaƂa Imperium","Points":10019,"X":620,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565557Z"},{"ID":38090,"Name":"102","Points":11678,"X":657,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565558Z"},{"ID":38091,"Name":"0422","Points":10019,"X":564,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565558Z"},{"ID":38092,"Name":"|051| Split","Points":9237,"X":497,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565559Z"},{"ID":38093,"Name":"AG03","Points":9747,"X":592,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56556Z"},{"ID":38094,"Name":"WƂadcy PóƂnocy 11","Points":5328,"X":693,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56556Z"},{"ID":38095,"Name":"WB20","Points":4723,"X":328,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565561Z"},{"ID":38096,"Name":"ADEN","Points":4341,"X":607,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565561Z"},{"ID":38097,"Name":"Wioska 1","Points":9410,"X":312,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565562Z"},{"ID":38098,"Name":"009","Points":3882,"X":309,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565562Z"},{"ID":38099,"Name":"Dream on","Points":9484,"X":308,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565563Z"},{"ID":38100,"Name":"I085","Points":8398,"X":688,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565563Z"},{"ID":38101,"Name":"Wioska barbarzyƄska","Points":9001,"X":671,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565564Z"},{"ID":38102,"Name":"~~056~~","Points":9216,"X":631,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565565Z"},{"ID":38103,"Name":"(037)Arak","Points":9857,"X":322,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565565Z"},{"ID":38104,"Name":"A062","Points":10226,"X":604,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565566Z"},{"ID":38105,"Name":"1.C.","Points":9791,"X":453,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565566Z"},{"ID":38106,"Name":"EO EO","Points":10019,"X":314,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565567Z"},{"ID":38107,"Name":"021 syegdvdj","Points":10237,"X":534,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565568Z"},{"ID":38108,"Name":"Kamionka 1-maja","Points":9739,"X":681,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565568Z"},{"ID":38109,"Name":"20. Wioska Raukodel","Points":8686,"X":652,"Y":379,"Continent":"K36","Bonus":7,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565569Z"},{"ID":38110,"Name":"Wioska wƂadca TwĂłj","Points":5865,"X":623,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699758688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565569Z"},{"ID":38111,"Name":"029","Points":3448,"X":627,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56557Z"},{"ID":38112,"Name":"Ave Why!","Points":11188,"X":452,"Y":685,"Continent":"K64","Bonus":5,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56557Z"},{"ID":38113,"Name":"Wioska 082","Points":8557,"X":667,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565571Z"},{"ID":38114,"Name":"021 Panewa","Points":2322,"X":644,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565571Z"},{"ID":38115,"Name":"sƂodziuteƄka 08","Points":8063,"X":601,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8013349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565572Z"},{"ID":38116,"Name":"K35 - [018] Before Land","Points":9924,"X":574,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565572Z"},{"ID":38117,"Name":"004","Points":5228,"X":642,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565573Z"},{"ID":38118,"Name":"~~062~~","Points":9340,"X":627,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565574Z"},{"ID":38119,"Name":"U-4","Points":9549,"X":553,"Y":379,"Continent":"K35","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565574Z"},{"ID":38120,"Name":"Wioska barbarzyƄska","Points":7489,"X":536,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565575Z"},{"ID":38121,"Name":"Wyspa_31","Points":9638,"X":508,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565575Z"},{"ID":38122,"Name":"KRÓL PAPI WIELKI","Points":9434,"X":642,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565576Z"},{"ID":38123,"Name":"New Land 15","Points":3589,"X":341,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565576Z"},{"ID":38124,"Name":"Wioska barbarzyƄska","Points":6855,"X":670,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565577Z"},{"ID":38125,"Name":"Szlachcic","Points":9495,"X":377,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565577Z"},{"ID":38126,"Name":"204","Points":4098,"X":424,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565578Z"},{"ID":38127,"Name":"Ć»UBR PSYCHIATRYK 015","Points":9883,"X":618,"Y":644,"Continent":"K66","Bonus":7,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565579Z"},{"ID":38128,"Name":"0012","Points":8785,"X":422,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565579Z"},{"ID":38129,"Name":"###051###","Points":10636,"X":594,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56558Z"},{"ID":38130,"Name":"TARAN","Points":9835,"X":539,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56558Z"},{"ID":38131,"Name":"BRICKLEBERRY","Points":5380,"X":559,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565581Z"},{"ID":38132,"Name":"#0164 Kamil0ss1","Points":10178,"X":471,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565581Z"},{"ID":38133,"Name":"boh81/0200","Points":9617,"X":308,"Y":473,"Continent":"K43","Bonus":1,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565582Z"},{"ID":38134,"Name":"236","Points":3780,"X":414,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565582Z"},{"ID":38135,"Name":"Pz39","Points":6029,"X":689,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565583Z"},{"ID":38136,"Name":"Dream on","Points":9835,"X":305,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565583Z"},{"ID":38137,"Name":"wiocha","Points":6421,"X":317,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":849099258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565584Z"},{"ID":38138,"Name":"Out of Touch","Points":9541,"X":320,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565584Z"},{"ID":38139,"Name":"_PUSTA+","Points":9797,"X":688,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565585Z"},{"ID":38140,"Name":"-001- r","Points":9215,"X":380,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565586Z"},{"ID":38141,"Name":"Taran","Points":9957,"X":338,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565586Z"},{"ID":38143,"Name":"psycha sitting","Points":10311,"X":414,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565587Z"},{"ID":38145,"Name":"Czarna","Points":7400,"X":383,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565587Z"},{"ID":38146,"Name":"001","Points":9570,"X":307,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565588Z"},{"ID":38147,"Name":"059.","Points":9771,"X":635,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565588Z"},{"ID":38148,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":312,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565589Z"},{"ID":38149,"Name":"Wioska Zorro 013","Points":8020,"X":669,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565589Z"},{"ID":38150,"Name":"X | Forest Cyaaaanku","Points":10000,"X":316,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56559Z"},{"ID":38151,"Name":"0313","Points":7897,"X":567,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56559Z"},{"ID":38152,"Name":"Szlachcic","Points":9897,"X":376,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565591Z"},{"ID":38153,"Name":"Ob Konfederacja","Points":10025,"X":427,"Y":326,"Continent":"K34","Bonus":3,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565591Z"},{"ID":38154,"Name":"Wioska barbarzyƄska","Points":3825,"X":398,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565592Z"},{"ID":38155,"Name":"048. Silthrim","Points":10083,"X":663,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565592Z"},{"ID":38156,"Name":"*081*","Points":10211,"X":313,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565593Z"},{"ID":38158,"Name":"(018)Triax","Points":6983,"X":326,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565593Z"},{"ID":38159,"Name":"Wioska barbarzyƄska","Points":3732,"X":479,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565594Z"},{"ID":38160,"Name":"#075#","Points":9761,"X":635,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565595Z"},{"ID":38161,"Name":"I054","Points":9850,"X":684,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565595Z"},{"ID":38162,"Name":"Dream on","Points":9486,"X":311,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565596Z"},{"ID":38163,"Name":"- 136 - SS","Points":10000,"X":536,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565596Z"},{"ID":38164,"Name":"_PUSTA+","Points":10393,"X":684,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565597Z"},{"ID":38165,"Name":"Mroczny Zamek 021","Points":4225,"X":354,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565597Z"},{"ID":38166,"Name":"$UtahJazz","Points":8897,"X":690,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565598Z"},{"ID":38167,"Name":"-001-","Points":6058,"X":375,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565598Z"},{"ID":38168,"Name":"OrzeƂ 4","Points":7086,"X":692,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565599Z"},{"ID":38169,"Name":"Dream on","Points":9611,"X":310,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565599Z"},{"ID":38170,"Name":"Wioska barbarzyƄska","Points":3515,"X":398,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5656Z"},{"ID":38171,"Name":"#037#","Points":9761,"X":629,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5656Z"},{"ID":38172,"Name":"019.","Points":8708,"X":525,"Y":546,"Continent":"K55","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565601Z"},{"ID":38173,"Name":"AAA","Points":7105,"X":523,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565602Z"},{"ID":38174,"Name":"R 030","Points":9664,"X":494,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565602Z"},{"ID":38175,"Name":"Wioska barbarzyƄska","Points":10068,"X":521,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565603Z"},{"ID":38177,"Name":"005.DUPGRZMOTY","Points":9568,"X":399,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565603Z"},{"ID":38178,"Name":"#0200 Segadorr dar","Points":10178,"X":460,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565604Z"},{"ID":38179,"Name":"X 004","Points":8131,"X":595,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565604Z"},{"ID":38180,"Name":"Wioska Szezeger","Points":2762,"X":329,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849025558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565605Z"},{"ID":38181,"Name":"O72","Points":10135,"X":681,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565605Z"},{"ID":38182,"Name":"I086","Points":7873,"X":691,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565606Z"},{"ID":38183,"Name":"Wioska barbarzyƄska","Points":9885,"X":569,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565606Z"},{"ID":38184,"Name":"064. Toark","Points":10252,"X":666,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565607Z"},{"ID":38185,"Name":"kamilkaze135 #11","Points":8788,"X":656,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565607Z"},{"ID":38186,"Name":"|053| Zagrzeb","Points":9114,"X":498,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565608Z"},{"ID":38188,"Name":"Wioska barbarzyƄska","Points":2348,"X":311,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565609Z"},{"ID":38189,"Name":"Komornicy 028","Points":3127,"X":348,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565609Z"},{"ID":38190,"Name":"K35 - [026] Before Land","Points":8092,"X":581,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56561Z"},{"ID":38191,"Name":"Wioska barbarzyƄska","Points":9471,"X":386,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56561Z"},{"ID":38192,"Name":"045. Wioska barbarzyƄska","Points":9989,"X":685,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565611Z"},{"ID":38193,"Name":"**50**","Points":8017,"X":675,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565611Z"},{"ID":38194,"Name":"Sernik z Andzynkami","Points":7002,"X":694,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565612Z"},{"ID":38195,"Name":"Punta Cana 2","Points":7817,"X":455,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565612Z"},{"ID":38196,"Name":"TWIERDZA .:087:.","Points":6102,"X":680,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565613Z"},{"ID":38197,"Name":"Wioska barbarzyƄska b","Points":3838,"X":357,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565613Z"},{"ID":38198,"Name":"Wyspa_18","Points":9638,"X":513,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565614Z"},{"ID":38199,"Name":"X | Forest Cyaaaanku","Points":10000,"X":315,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565615Z"},{"ID":38200,"Name":"14 Poblete","Points":2287,"X":390,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":698837993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565615Z"},{"ID":38202,"Name":"**52**","Points":5778,"X":670,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565616Z"},{"ID":38203,"Name":"0029","Points":4661,"X":486,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565616Z"},{"ID":38204,"Name":"040.Stradi","Points":10495,"X":446,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565617Z"},{"ID":38205,"Name":"Sernik z Andzynkami","Points":9744,"X":695,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565617Z"},{"ID":38206,"Name":"AAA","Points":9064,"X":546,"Y":313,"Continent":"K35","Bonus":6,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565618Z"},{"ID":38207,"Name":"2.Kadyks","Points":5793,"X":574,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565618Z"},{"ID":38208,"Name":"???","Points":8793,"X":479,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565619Z"},{"ID":38209,"Name":"Out of Touch","Points":9740,"X":321,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56562Z"},{"ID":38210,"Name":"Wyspa_28","Points":9638,"X":503,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56562Z"},{"ID":38211,"Name":"003. MokotĂłw","Points":10256,"X":690,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565621Z"},{"ID":38212,"Name":"z 001035","Points":8154,"X":361,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565621Z"},{"ID":38213,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":316,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565622Z"},{"ID":38214,"Name":"Odbudowa Roterdam :)","Points":4200,"X":628,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565622Z"},{"ID":38215,"Name":"ManieK","Points":9172,"X":344,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565623Z"},{"ID":38216,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":314,"Y":457,"Continent":"K43","Bonus":2,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565623Z"},{"ID":38218,"Name":"|056| Barba","Points":9738,"X":479,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565624Z"},{"ID":38219,"Name":"Ett","Points":9835,"X":409,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565625Z"},{"ID":38220,"Name":"Out of Touch","Points":6519,"X":319,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565625Z"},{"ID":38222,"Name":".achim.","Points":10654,"X":484,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565626Z"},{"ID":38224,"Name":"- 183 - SS","Points":8690,"X":560,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565626Z"},{"ID":38225,"Name":"065.","Points":2644,"X":328,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565627Z"},{"ID":38226,"Name":"~ SZWEDEROWO ~","Points":2796,"X":317,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698540331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565627Z"},{"ID":38227,"Name":"TWIERDZA .:026:.","Points":10359,"X":676,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565628Z"},{"ID":38228,"Name":"048. Wioska barbarzyƄska","Points":9501,"X":689,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565628Z"},{"ID":38229,"Name":"Kombinat","Points":9936,"X":588,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565629Z"},{"ID":38230,"Name":"(030)Marabethia","Points":8789,"X":323,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56563Z"},{"ID":38231,"Name":"Szlachcic","Points":10478,"X":390,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56563Z"},{"ID":38232,"Name":"Dream on","Points":9741,"X":308,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565631Z"},{"ID":38233,"Name":"Wioska barbarzyƄska","Points":3497,"X":532,"Y":315,"Continent":"K35","Bonus":7,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565631Z"},{"ID":38234,"Name":"BACÓWKA |034|","Points":5871,"X":668,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565632Z"},{"ID":38235,"Name":"Szlachcic","Points":10476,"X":391,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565632Z"},{"ID":38236,"Name":"Zakopane","Points":3214,"X":544,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565633Z"},{"ID":38237,"Name":"Wioska barbarzyƄska","Points":10047,"X":337,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565633Z"},{"ID":38238,"Name":"Winterhome.004","Points":10178,"X":508,"Y":311,"Continent":"K35","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565634Z"},{"ID":38239,"Name":"Out of Touch","Points":9098,"X":322,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565635Z"},{"ID":38240,"Name":"Wiejska2","Points":8465,"X":606,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565635Z"},{"ID":38241,"Name":"006.Stradi","Points":10495,"X":439,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565636Z"},{"ID":38242,"Name":"018","Points":10595,"X":343,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565636Z"},{"ID":38243,"Name":"Wioska barbarzyƄska","Points":3474,"X":401,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565637Z"},{"ID":38244,"Name":"013 co ja robię czasem","Points":10247,"X":531,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565637Z"},{"ID":38245,"Name":"PoƂudnie.002","Points":10105,"X":554,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565638Z"},{"ID":38246,"Name":"Winterhome.058","Points":10178,"X":495,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565639Z"},{"ID":38247,"Name":"bucksbarzyƄskamiiiru","Points":8752,"X":335,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565639Z"},{"ID":38248,"Name":"043g","Points":9809,"X":313,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56564Z"},{"ID":38249,"Name":"006 NAWRA","Points":10365,"X":658,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565641Z"},{"ID":38250,"Name":"X | Forest Cyaaaanku","Points":10000,"X":319,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565641Z"},{"ID":38251,"Name":".05. Kaer Morhen e","Points":9528,"X":346,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565642Z"},{"ID":38252,"Name":"004.","Points":5009,"X":565,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565642Z"},{"ID":38253,"Name":"Szlachcic","Points":6396,"X":691,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565643Z"},{"ID":38254,"Name":"Out of Touch","Points":9486,"X":327,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565643Z"},{"ID":38255,"Name":"- 147 - SS","Points":8630,"X":543,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565644Z"},{"ID":38256,"Name":"KRÓL PAPI WIELKI","Points":9795,"X":637,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565645Z"},{"ID":38257,"Name":"Osada koczownikĂłw","Points":10013,"X":672,"Y":418,"Continent":"K46","Bonus":9,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565645Z"},{"ID":38258,"Name":"Out of Touch","Points":2566,"X":322,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565646Z"},{"ID":38259,"Name":"006 * Lady Porto *","Points":10285,"X":696,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565646Z"},{"ID":38260,"Name":"I100","Points":8096,"X":686,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565647Z"},{"ID":38261,"Name":"Szlachcic","Points":9957,"X":382,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565647Z"},{"ID":38262,"Name":"019 Christmasss","Points":5007,"X":607,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565648Z"},{"ID":38263,"Name":"- 144 - SS","Points":9195,"X":537,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565648Z"},{"ID":38264,"Name":"|045| Mordownia","Points":9471,"X":499,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565649Z"},{"ID":38265,"Name":"New World","Points":10294,"X":426,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56565Z"},{"ID":38266,"Name":"K35 - [019] Before Land","Points":9510,"X":578,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56565Z"},{"ID":38267,"Name":"MaƂpi Gaj","Points":7377,"X":683,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565651Z"},{"ID":38268,"Name":"Wonderwall","Points":9541,"X":331,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565651Z"},{"ID":38269,"Name":"I099","Points":8495,"X":686,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565652Z"},{"ID":38270,"Name":"*007*","Points":10166,"X":313,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565653Z"},{"ID":38271,"Name":"TWIERDZA .:071:.","Points":8375,"X":677,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565653Z"},{"ID":38272,"Name":"Kingdom 6","Points":10728,"X":689,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565654Z"},{"ID":38273,"Name":"Ć»UBR .::.Adaczu/10","Points":4559,"X":621,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565654Z"},{"ID":38274,"Name":"000 Plutosea","Points":9976,"X":314,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565655Z"},{"ID":38275,"Name":"#001","Points":6460,"X":664,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":849099391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565656Z"},{"ID":38276,"Name":"Taran","Points":9956,"X":337,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565656Z"},{"ID":38277,"Name":"nr3","Points":9235,"X":585,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565657Z"},{"ID":38278,"Name":"012 Mhmm","Points":4455,"X":601,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565657Z"},{"ID":38279,"Name":"029# Janette","Points":5492,"X":491,"Y":695,"Continent":"K64","Bonus":7,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565658Z"},{"ID":38280,"Name":"Stawiski","Points":4964,"X":687,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849100082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565658Z"},{"ID":38281,"Name":"- 191 - SS","Points":6920,"X":560,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565659Z"},{"ID":38282,"Name":"104","Points":5515,"X":656,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565659Z"},{"ID":38283,"Name":"054. Wioska barbarzyƄska","Points":9446,"X":689,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56566Z"},{"ID":38284,"Name":"Morty Town","Points":6665,"X":644,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":849098822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565661Z"},{"ID":38285,"Name":"KRÓL PAPI WIELKI","Points":7659,"X":695,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565661Z"},{"ID":38286,"Name":"Wioska barbarzyƄska","Points":3446,"X":567,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565662Z"},{"ID":38287,"Name":"KRÓL PAPI WIELKI","Points":9976,"X":636,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565662Z"},{"ID":38288,"Name":"071. Uden","Points":10160,"X":649,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565663Z"},{"ID":38289,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":310,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565664Z"},{"ID":38290,"Name":"AG11","Points":9747,"X":589,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565665Z"},{"ID":38291,"Name":"Forteca*009*","Points":4337,"X":531,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565665Z"},{"ID":38292,"Name":"~~074~~","Points":5791,"X":629,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565666Z"},{"ID":38293,"Name":"Wioska Zorro 016","Points":10495,"X":679,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565666Z"},{"ID":38294,"Name":"Wioska barbarzyƄska","Points":6360,"X":524,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565667Z"},{"ID":38295,"Name":"005. Praga PoƂudnie","Points":9902,"X":695,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565668Z"},{"ID":38296,"Name":"Wioska barbarzyƄska","Points":4812,"X":685,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565668Z"},{"ID":38297,"Name":"XDX","Points":7930,"X":603,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565669Z"},{"ID":38298,"Name":"-13-","Points":6524,"X":639,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565669Z"},{"ID":38299,"Name":"011.Stradi","Points":10495,"X":448,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56567Z"},{"ID":38300,"Name":"WƂadcy PóƂnocy 12","Points":5606,"X":686,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56567Z"},{"ID":38302,"Name":"Vanaheim II","Points":3076,"X":594,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565671Z"},{"ID":38303,"Name":"kamilkaze135 #01","Points":10081,"X":659,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565671Z"},{"ID":38304,"Name":"blablabla","Points":2937,"X":625,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565672Z"},{"ID":38305,"Name":"bucksbarzyƄskamiiiru","Points":10575,"X":332,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565672Z"},{"ID":38306,"Name":"~~065~~","Points":7522,"X":632,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565673Z"},{"ID":38307,"Name":"2.C.","Points":9700,"X":457,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565674Z"},{"ID":38308,"Name":"Wioska barbarzyƄska","Points":9825,"X":695,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565674Z"},{"ID":38309,"Name":"KRÓL PAPI WIELKI","Points":9973,"X":648,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565675Z"},{"ID":38310,"Name":"$Doncic","Points":5178,"X":688,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565675Z"},{"ID":38311,"Name":"2.Vitoria","Points":5131,"X":572,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565676Z"},{"ID":38312,"Name":"206","Points":4238,"X":426,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565676Z"},{"ID":38313,"Name":"197...segador","Points":8630,"X":455,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565677Z"},{"ID":38314,"Name":"018 NAWRA","Points":3644,"X":661,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565678Z"},{"ID":38315,"Name":"#0158 Kamil0ss1","Points":10178,"X":470,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565678Z"},{"ID":38316,"Name":"KRÓL PAPI WIELKI","Points":10216,"X":639,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565679Z"},{"ID":38317,"Name":"Wyspa_16","Points":9526,"X":504,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565679Z"},{"ID":38318,"Name":"Wioska 8","Points":7909,"X":313,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56568Z"},{"ID":38319,"Name":"C0034","Points":10362,"X":312,"Y":511,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56568Z"},{"ID":38320,"Name":"0026 Wioska barbarzyƄska","Points":9693,"X":451,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565681Z"},{"ID":38321,"Name":"C0161","Points":10362,"X":317,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565681Z"},{"ID":38323,"Name":"Mefedron 04","Points":8405,"X":394,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565682Z"},{"ID":38324,"Name":"KocpoƂuch 3","Points":3829,"X":331,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":848949597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565682Z"},{"ID":38326,"Name":"032# Roe","Points":7692,"X":481,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565683Z"},{"ID":38327,"Name":"[F] 004","Points":6421,"X":385,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565683Z"},{"ID":38328,"Name":"- 143 - SS","Points":9929,"X":543,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565684Z"},{"ID":38329,"Name":"UltraInstynkt","Points":10311,"X":582,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565685Z"},{"ID":38330,"Name":"I072","Points":10348,"X":685,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565685Z"},{"ID":38331,"Name":"Szlachcic","Points":8061,"X":692,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565686Z"},{"ID":38332,"Name":"AAA","Points":6009,"X":545,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565686Z"},{"ID":38333,"Name":"Wioska 101","Points":9761,"X":648,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565687Z"},{"ID":38334,"Name":"New World","Points":10292,"X":426,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565687Z"},{"ID":38335,"Name":".27. Cinoda e","Points":6420,"X":353,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565688Z"},{"ID":38336,"Name":"006342 Miedziany1","Points":10520,"X":440,"Y":433,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565689Z"},{"ID":38337,"Name":"XDX","Points":4228,"X":589,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565689Z"},{"ID":38338,"Name":"Wioska ricki19634","Points":6464,"X":604,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56569Z"},{"ID":38339,"Name":"Wioska barbarzyƄska","Points":9412,"X":695,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56569Z"},{"ID":38340,"Name":"WƂadcy PóƂnocy 07","Points":6152,"X":690,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565691Z"},{"ID":38342,"Name":"#077#","Points":9761,"X":629,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565691Z"},{"ID":38343,"Name":"New World","Points":10311,"X":439,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565692Z"},{"ID":38344,"Name":"0004 Krwawa PrzeƂęcz II","Points":9916,"X":477,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565692Z"},{"ID":38345,"Name":"KRÓL PAPI WIELKI","Points":9275,"X":662,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565693Z"},{"ID":38346,"Name":"#006. Bank Robber","Points":9611,"X":451,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565693Z"},{"ID":38347,"Name":"03.wiocha","Points":4992,"X":331,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565694Z"},{"ID":38348,"Name":"013 Argentina Out","Points":10019,"X":620,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565694Z"},{"ID":38349,"Name":"- 171 - SS","Points":8240,"X":557,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565695Z"},{"ID":38350,"Name":"- 174 - SS","Points":7328,"X":550,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565695Z"},{"ID":38351,"Name":"Dolina Czarnych MagĂłw","Points":8559,"X":650,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565696Z"},{"ID":38352,"Name":"KRÓL PAPI WIELKI","Points":7869,"X":695,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565696Z"},{"ID":38353,"Name":"Wioska 075","Points":8944,"X":662,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565697Z"},{"ID":38354,"Name":"- 181 - SS","Points":8783,"X":534,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565698Z"},{"ID":38355,"Name":"Komornicy 029","Points":5400,"X":347,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565698Z"},{"ID":38356,"Name":"$Zion","Points":4345,"X":687,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565699Z"},{"ID":38357,"Name":"psycha sitting","Points":10311,"X":420,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565699Z"},{"ID":38358,"Name":"*108*","Points":10211,"X":362,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5657Z"},{"ID":38359,"Name":"Winterhome.007","Points":10178,"X":508,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5657Z"},{"ID":38360,"Name":"X | Forest Cyaaaanku","Points":10000,"X":314,"Y":466,"Continent":"K43","Bonus":9,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565701Z"},{"ID":38361,"Name":"013 mordownia","Points":9464,"X":684,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565701Z"},{"ID":38362,"Name":"065.Stradi","Points":10073,"X":450,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565702Z"},{"ID":38363,"Name":"002","Points":4995,"X":620,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9060885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565702Z"},{"ID":38364,"Name":"0.23","Points":9607,"X":466,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565703Z"},{"ID":38365,"Name":"Wioska 4","Points":4411,"X":499,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565703Z"},{"ID":38366,"Name":"7.Mylta","Points":5472,"X":420,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565704Z"},{"ID":38367,"Name":"Wioska barbarzyƄska","Points":2862,"X":353,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565705Z"},{"ID":38369,"Name":"015# Natalie","Points":10056,"X":486,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565705Z"},{"ID":38370,"Name":"023","Points":9814,"X":687,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565706Z"},{"ID":38371,"Name":"Didek","Points":8396,"X":678,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565706Z"},{"ID":38372,"Name":"Wioska barbarzyƄska","Points":4347,"X":397,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565707Z"},{"ID":38373,"Name":"Wioska barbarzyƄska","Points":3456,"X":683,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565707Z"},{"ID":38374,"Name":"KRASZEW 2","Points":10231,"X":337,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565708Z"},{"ID":38375,"Name":"Wioska","Points":9752,"X":344,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565708Z"},{"ID":38376,"Name":"007 Stadio Alberto Picco","Points":10222,"X":684,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565709Z"},{"ID":38377,"Name":"Szlachcic","Points":10495,"X":374,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565709Z"},{"ID":38378,"Name":"Winterhome.057","Points":10178,"X":496,"Y":307,"Continent":"K34","Bonus":2,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56571Z"},{"ID":38379,"Name":"Dream on","Points":9505,"X":306,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56571Z"},{"ID":38380,"Name":"C002","Points":6420,"X":597,"Y":661,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565711Z"},{"ID":38381,"Name":"psycha sitting","Points":10311,"X":404,"Y":670,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565711Z"},{"ID":38382,"Name":"046","Points":9545,"X":461,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565712Z"},{"ID":38383,"Name":"#0285 Gwen1","Points":4084,"X":477,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565712Z"},{"ID":38384,"Name":"Wioska barbarzyƄska","Points":8268,"X":375,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565713Z"},{"ID":38385,"Name":"RTS 9","Points":10495,"X":581,"Y":624,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565714Z"},{"ID":38386,"Name":"Wioska barbarzyƄska","Points":3702,"X":564,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565714Z"},{"ID":38387,"Name":"SOKzGUMIjagĂłd","Points":11130,"X":648,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565715Z"},{"ID":38388,"Name":"!36 74 Hurjuieni","Points":9860,"X":646,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565715Z"},{"ID":38389,"Name":".achim.","Points":8601,"X":481,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565716Z"},{"ID":38390,"Name":"K35 - [034] Before Land","Points":9925,"X":577,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565716Z"},{"ID":38391,"Name":"New World","Points":10297,"X":430,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565717Z"},{"ID":38392,"Name":"KRÓL PAPI WIELKI","Points":9711,"X":641,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565717Z"},{"ID":38393,"Name":"Out of Touch","Points":8140,"X":322,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565718Z"},{"ID":38394,"Name":"Dream on","Points":8894,"X":304,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565718Z"},{"ID":38395,"Name":"001","Points":7347,"X":589,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565719Z"},{"ID":38396,"Name":"Sernik z Andzynkami","Points":9744,"X":696,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565719Z"},{"ID":38398,"Name":"- DragonG","Points":7380,"X":545,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699825236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56572Z"},{"ID":38399,"Name":"*3604*a Dolina BiaƂych MagĂłw","Points":10287,"X":661,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56572Z"},{"ID":38400,"Name":"Beznazwa","Points":10495,"X":618,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565721Z"},{"ID":38401,"Name":"Taran","Points":9962,"X":335,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565721Z"},{"ID":38402,"Name":"X 005","Points":8541,"X":598,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565722Z"},{"ID":38403,"Name":"AGA6","Points":7723,"X":687,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565722Z"},{"ID":38404,"Name":"a moĆŒe off ? :)","Points":5070,"X":670,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565723Z"},{"ID":38405,"Name":"050","Points":2699,"X":649,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565723Z"},{"ID":38406,"Name":"2.Kordoba","Points":4893,"X":574,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565724Z"},{"ID":38407,"Name":"Dream on","Points":8741,"X":307,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565724Z"},{"ID":38408,"Name":"New World","Points":10292,"X":429,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565725Z"},{"ID":38409,"Name":".achim.","Points":9453,"X":485,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565725Z"},{"ID":38410,"Name":"Stolikland","Points":12154,"X":319,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565726Z"},{"ID":38411,"Name":"07 Las Labores","Points":4771,"X":383,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565726Z"},{"ID":38412,"Name":"Ć»oliborz","Points":12154,"X":367,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565727Z"},{"ID":38413,"Name":"MojeDnoToWaszSzczyt","Points":9984,"X":506,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565727Z"},{"ID":38414,"Name":"042","Points":9185,"X":650,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565728Z"},{"ID":38415,"Name":"A024","Points":10221,"X":608,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565728Z"},{"ID":38416,"Name":"psycha sitting","Points":10178,"X":399,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565729Z"},{"ID":38417,"Name":"BACÓWKA |042|","Points":10495,"X":668,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56573Z"},{"ID":38418,"Name":"Wioska barbarzyƄska 3","Points":6666,"X":325,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56573Z"},{"ID":38419,"Name":"031","Points":10019,"X":455,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565731Z"},{"ID":38420,"Name":"Dream on","Points":9494,"X":307,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565731Z"},{"ID":38421,"Name":"WB5","Points":8392,"X":666,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565732Z"},{"ID":38422,"Name":"0026. Y -","Points":3815,"X":692,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565732Z"},{"ID":38423,"Name":"Wioska barbarzyƄska","Points":6601,"X":368,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565733Z"},{"ID":38424,"Name":"Gattacka","Points":10470,"X":613,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565734Z"},{"ID":38425,"Name":"Plantacja GranatnikĂłw","Points":7576,"X":581,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565734Z"},{"ID":38426,"Name":"Out of Touch","Points":7009,"X":318,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565735Z"},{"ID":38427,"Name":"002","Points":9929,"X":647,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565735Z"},{"ID":38429,"Name":"057.Stradi","Points":10495,"X":449,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565736Z"},{"ID":38430,"Name":"048","Points":9358,"X":462,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565736Z"},{"ID":38432,"Name":"PiekƂo to inni","Points":6338,"X":594,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565737Z"},{"ID":38433,"Name":"Odbudowa Hagi:)","Points":3882,"X":627,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565737Z"},{"ID":38434,"Name":"Wioska barbarzyƄska","Points":8675,"X":325,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565738Z"},{"ID":38435,"Name":"RzeĆŒucha Ɓąkowa","Points":6038,"X":582,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565739Z"},{"ID":38437,"Name":"003","Points":10343,"X":335,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565739Z"},{"ID":38438,"Name":".:002:.","Points":3900,"X":668,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849039310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56574Z"},{"ID":38439,"Name":"074","Points":10362,"X":690,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56574Z"},{"ID":38440,"Name":"Wioska marcinnn19922","Points":11314,"X":648,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565741Z"},{"ID":38441,"Name":"**37**","Points":10030,"X":675,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565741Z"},{"ID":38442,"Name":"037 tutaj pierwsza miƂoƛć jest..","Points":6548,"X":680,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565742Z"},{"ID":38443,"Name":"psycha sitting","Points":10135,"X":417,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565742Z"},{"ID":38444,"Name":"KONFA TO MARKA, NARKA","Points":5987,"X":312,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565743Z"},{"ID":38445,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":312,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565744Z"},{"ID":38446,"Name":"B#011","Points":9797,"X":692,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565744Z"},{"ID":38447,"Name":"Wioska barbarzyƄska","Points":9470,"X":390,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565745Z"},{"ID":38448,"Name":"- 195 - SS","Points":8231,"X":530,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565745Z"},{"ID":38449,"Name":"Rubiez4","Points":8749,"X":308,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565746Z"},{"ID":38450,"Name":"cos cos","Points":9968,"X":437,"Y":682,"Continent":"K64","Bonus":3,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565746Z"},{"ID":38451,"Name":"0014","Points":7240,"X":423,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565747Z"},{"ID":38452,"Name":"A 078","Points":3784,"X":364,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565747Z"},{"ID":38453,"Name":"I101","Points":7566,"X":687,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565748Z"},{"ID":38454,"Name":"[0040]","Points":10495,"X":437,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565749Z"},{"ID":38456,"Name":"004.","Points":10654,"X":642,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565749Z"},{"ID":38457,"Name":"psycha sitting","Points":10311,"X":410,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56575Z"},{"ID":38458,"Name":"042.","Points":1742,"X":330,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56575Z"},{"ID":38459,"Name":"020 New Yorkshire","Points":8324,"X":621,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565751Z"},{"ID":38460,"Name":"Wyspa_17","Points":9638,"X":502,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565751Z"},{"ID":38461,"Name":"XDX","Points":7889,"X":604,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565752Z"},{"ID":38462,"Name":"Devano4","Points":10343,"X":335,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565752Z"},{"ID":38463,"Name":"A 044","Points":5341,"X":363,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565753Z"},{"ID":38464,"Name":"New World","Points":10295,"X":427,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565754Z"},{"ID":38465,"Name":"$MiamiHeat","Points":8702,"X":691,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565754Z"},{"ID":38466,"Name":"Monetki","Points":10291,"X":485,"Y":415,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565755Z"},{"ID":38467,"Name":"Piekarnia","Points":7775,"X":678,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565756Z"},{"ID":38469,"Name":"walaszczyki","Points":7877,"X":306,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565756Z"},{"ID":38470,"Name":"Wioska barbarzyƄska","Points":9803,"X":635,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565757Z"},{"ID":38471,"Name":"X | Forest Cyaaaanku","Points":10000,"X":310,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565758Z"},{"ID":38472,"Name":"Wioska Tomcio Rycerz","Points":10019,"X":665,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565758Z"},{"ID":38474,"Name":"psycha sitting","Points":10268,"X":407,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565759Z"},{"ID":38478,"Name":"_PUSTA+","Points":9797,"X":687,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565759Z"},{"ID":38479,"Name":"z A03 RzeszĂłw","Points":9574,"X":349,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56576Z"},{"ID":38480,"Name":"006","Points":4665,"X":318,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":8153179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56576Z"},{"ID":38481,"Name":"*087*","Points":10211,"X":362,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565761Z"},{"ID":38482,"Name":"psycha sitting","Points":10178,"X":408,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565761Z"},{"ID":38483,"Name":"Sullivanum [2]","Points":11875,"X":337,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":1606425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565762Z"},{"ID":38484,"Name":"[0035]","Points":10495,"X":443,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565762Z"},{"ID":38485,"Name":"Wioska barbarzyƄska","Points":4907,"X":328,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565763Z"},{"ID":38487,"Name":"019 NAWRA","Points":5483,"X":663,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565763Z"},{"ID":38488,"Name":"*098*","Points":10211,"X":357,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565764Z"},{"ID":38489,"Name":"psycha sitting","Points":10311,"X":421,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565764Z"},{"ID":38490,"Name":"Hoog","Points":9185,"X":315,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565765Z"},{"ID":38492,"Name":"bucksbarzyƄskamiiiru","Points":10654,"X":331,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565766Z"},{"ID":38493,"Name":"~~059~~","Points":9539,"X":626,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565766Z"},{"ID":38494,"Name":"A055","Points":10220,"X":614,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565767Z"},{"ID":38495,"Name":"Rubiez7","Points":8230,"X":305,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565767Z"},{"ID":38496,"Name":"Winterhome.072","Points":8355,"X":492,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565768Z"},{"ID":38497,"Name":"#0205 Segadorr dar","Points":7645,"X":460,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565768Z"},{"ID":38498,"Name":"XDX","Points":4895,"X":604,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565769Z"},{"ID":38499,"Name":"045.Stradi","Points":10495,"X":446,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565769Z"},{"ID":38500,"Name":"_PUSTA+","Points":7668,"X":687,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56577Z"},{"ID":38501,"Name":"102 invidia","Points":8275,"X":526,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56577Z"},{"ID":38502,"Name":"WYSPA","Points":8758,"X":508,"Y":691,"Continent":"K65","Bonus":4,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565771Z"},{"ID":38503,"Name":"103 ***8*** Agrest","Points":10001,"X":536,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565771Z"},{"ID":38504,"Name":"003","Points":5263,"X":309,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565772Z"},{"ID":38505,"Name":"Osada koczownikĂłw","Points":10019,"X":617,"Y":349,"Continent":"K36","Bonus":5,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565772Z"},{"ID":38506,"Name":"076","Points":9475,"X":690,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565773Z"},{"ID":38507,"Name":"0090","Points":4873,"X":612,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565774Z"},{"ID":38508,"Name":"046.","Points":2682,"X":327,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565774Z"},{"ID":38509,"Name":"~006~ MmM","Points":9334,"X":352,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565775Z"},{"ID":38510,"Name":"Wioska barbarzyƄska","Points":4594,"X":400,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565775Z"},{"ID":38511,"Name":"[062] Wioska barbarzyƄska","Points":2529,"X":669,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565776Z"},{"ID":38512,"Name":"~~060~~","Points":7294,"X":625,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565776Z"},{"ID":38513,"Name":"D.012","Points":7219,"X":392,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565777Z"},{"ID":38514,"Name":"Nie rozpędzacie się? XD","Points":10971,"X":476,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565777Z"},{"ID":38515,"Name":"Kopalnia","Points":8540,"X":305,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565778Z"},{"ID":38516,"Name":"Ć»UBR .::.Adaczu/017","Points":2177,"X":624,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565779Z"},{"ID":38517,"Name":"Wioska 069","Points":9761,"X":657,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565779Z"},{"ID":38519,"Name":"boh81/500","Points":9617,"X":305,"Y":473,"Continent":"K43","Bonus":2,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56578Z"},{"ID":38520,"Name":"1.02","Points":8533,"X":428,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56578Z"},{"ID":38521,"Name":"Out of Touch","Points":9166,"X":319,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565781Z"},{"ID":38522,"Name":"[214]","Points":4958,"X":571,"Y":564,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565781Z"},{"ID":38523,"Name":"#0286 Don Noobas","Points":4851,"X":475,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565782Z"},{"ID":38524,"Name":"@11@","Points":5604,"X":404,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565782Z"},{"ID":38525,"Name":"009g","Points":9702,"X":314,"Y":563,"Continent":"K53","Bonus":6,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565783Z"},{"ID":38526,"Name":"#021#","Points":9761,"X":616,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565783Z"},{"ID":38527,"Name":"143 invidia","Points":5506,"X":539,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565784Z"},{"ID":38530,"Name":"Taran","Points":9957,"X":338,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565785Z"},{"ID":38531,"Name":"[050] Wioska barbarzyƄska","Points":8467,"X":680,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565785Z"},{"ID":38532,"Name":"WƂadcy PóƂnocy 09","Points":6176,"X":694,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565786Z"},{"ID":38533,"Name":"[0038]","Points":10495,"X":439,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565786Z"},{"ID":38534,"Name":"[159]","Points":8682,"X":566,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565787Z"},{"ID":38535,"Name":"039# Ola","Points":3217,"X":487,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565787Z"},{"ID":38536,"Name":"K35 - [006] Before Land","Points":9847,"X":576,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565788Z"},{"ID":38537,"Name":"New World","Points":10294,"X":443,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565788Z"},{"ID":38538,"Name":"026 Lan Exeter","Points":4810,"X":472,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565789Z"},{"ID":38539,"Name":"AAA","Points":8960,"X":524,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565789Z"},{"ID":38540,"Name":"003. Podkowa Leƛna","Points":6357,"X":320,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56579Z"},{"ID":38541,"Name":"New World","Points":10290,"X":434,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56579Z"},{"ID":38542,"Name":"Wioska ziomeka4","Points":2408,"X":645,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":7629036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565791Z"},{"ID":38543,"Name":"Jan NIE PRÓBUJ !!","Points":6073,"X":685,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565791Z"},{"ID":38544,"Name":"Wioska barbarzyƄska","Points":2026,"X":671,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565792Z"},{"ID":38545,"Name":"Wioska barbarzyƄska","Points":8772,"X":522,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565792Z"},{"ID":38546,"Name":"No Surprises","Points":9581,"X":678,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565798Z"},{"ID":38547,"Name":"Wioska barbarzyƄska","Points":10365,"X":350,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565799Z"},{"ID":38548,"Name":"Gattacka","Points":9711,"X":682,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5658Z"},{"ID":38549,"Name":"Wioska barbarzyƄska","Points":7339,"X":334,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5658Z"},{"ID":38550,"Name":"021","Points":9962,"X":696,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565801Z"},{"ID":38551,"Name":"Wioska 079","Points":8925,"X":660,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565802Z"},{"ID":38552,"Name":"Wioska barbarzyƄska","Points":6008,"X":321,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565803Z"},{"ID":38553,"Name":"WB21","Points":3515,"X":334,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565803Z"},{"ID":38554,"Name":"X | Forest Cyaaaanku","Points":10000,"X":314,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565804Z"},{"ID":38555,"Name":"Wioska barbarzyƄska","Points":9178,"X":346,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565805Z"},{"ID":38556,"Name":"kto ananasowy pod wodą ma dom","Points":9797,"X":580,"Y":568,"Continent":"K55","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565806Z"},{"ID":38557,"Name":"38. KaruTown","Points":9735,"X":691,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565807Z"},{"ID":38558,"Name":"Porąbka","Points":5756,"X":543,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565808Z"},{"ID":38559,"Name":"Jestem Poza Kontrolą","Points":9816,"X":353,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565808Z"},{"ID":38560,"Name":"Wioska barbarzyƄska","Points":9825,"X":691,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565809Z"},{"ID":38561,"Name":"SOKzGUMIjagĂłd","Points":5533,"X":600,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565809Z"},{"ID":38562,"Name":"*003* CSA-Yechać!","Points":9716,"X":607,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56581Z"},{"ID":38563,"Name":"0023 Wioska barbarzyƄska","Points":9636,"X":449,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565811Z"},{"ID":38564,"Name":"000 Plutosea","Points":10311,"X":317,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565811Z"},{"ID":38565,"Name":"JokeR","Points":4953,"X":606,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":8963720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565812Z"},{"ID":38566,"Name":"Moldor 8","Points":9002,"X":633,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565812Z"},{"ID":38567,"Name":"z 001028qqqqqqqqqqqqqqqqqqqqqqqq","Points":7573,"X":360,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565813Z"},{"ID":38568,"Name":"Didek","Points":6817,"X":673,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565814Z"},{"ID":38569,"Name":"Wyspa_36","Points":2274,"X":509,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565814Z"},{"ID":38570,"Name":"*028*","Points":10211,"X":347,"Y":390,"Continent":"K33","Bonus":2,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565815Z"},{"ID":38571,"Name":"Wioska barbarzyƄska","Points":2773,"X":328,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565816Z"},{"ID":38572,"Name":"Wyspa_35","Points":9638,"X":509,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565816Z"},{"ID":38573,"Name":"0.11 Szale?","Points":8120,"X":468,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565817Z"},{"ID":38575,"Name":"054.","Points":2657,"X":324,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565818Z"},{"ID":38576,"Name":"Wioska 03","Points":7949,"X":567,"Y":316,"Continent":"K35","Bonus":4,"PlayerID":849067192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565818Z"},{"ID":38577,"Name":"xxx","Points":10495,"X":689,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565819Z"},{"ID":38578,"Name":"bucksbarzyƄskamiiiru","Points":7076,"X":335,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56582Z"},{"ID":38579,"Name":"Mordor 2","Points":8063,"X":314,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56582Z"},{"ID":38580,"Name":"New World","Points":10294,"X":443,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565821Z"},{"ID":38581,"Name":"Wioska barbarzyƄska","Points":3344,"X":330,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565821Z"},{"ID":38582,"Name":"#0280 Don Noobas","Points":6133,"X":475,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565822Z"},{"ID":38583,"Name":"010","Points":3042,"X":343,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565823Z"},{"ID":38584,"Name":"OrzeƂ 1","Points":10636,"X":692,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565823Z"},{"ID":38585,"Name":"Wioska 074","Points":9761,"X":663,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565824Z"},{"ID":38586,"Name":"TWIERDZA .:093:.","Points":8785,"X":680,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565824Z"},{"ID":38587,"Name":"Wyspa_03","Points":9638,"X":507,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565825Z"},{"ID":38588,"Name":"001. ƚrĂłdmieƛcie","Points":11130,"X":691,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565826Z"},{"ID":38589,"Name":"[0086]","Points":10559,"X":442,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565826Z"},{"ID":38590,"Name":"z181_08","Points":9883,"X":311,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565827Z"},{"ID":38592,"Name":"ZWM","Points":8909,"X":685,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565828Z"},{"ID":38593,"Name":"Wioska Lady evee.","Points":4440,"X":588,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":849086074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565828Z"},{"ID":38594,"Name":"~ CZYĆ»KÓWKO ~","Points":9004,"X":321,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":698540331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565829Z"},{"ID":38595,"Name":"@10@","Points":5261,"X":406,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56583Z"},{"ID":38596,"Name":"I073","Points":10083,"X":690,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56583Z"},{"ID":38597,"Name":"Gryfios 0010","Points":10636,"X":686,"Y":556,"Continent":"K56","Bonus":9,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565831Z"},{"ID":38598,"Name":"Sernik z Andzynkami","Points":9744,"X":695,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565832Z"},{"ID":38599,"Name":"[061] Wioska barbarzyƄska","Points":5918,"X":681,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565832Z"},{"ID":38600,"Name":"050.Stradi","Points":10495,"X":446,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565833Z"},{"ID":38601,"Name":"skiba","Points":10242,"X":611,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565834Z"},{"ID":38602,"Name":"Sernik z Andzynkami","Points":9847,"X":696,"Y":499,"Continent":"K46","Bonus":2,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565835Z"},{"ID":38603,"Name":"$MemphisGrizzlies","Points":7106,"X":692,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699795378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565835Z"},{"ID":38604,"Name":"096. Donar","Points":6868,"X":650,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565836Z"},{"ID":38605,"Name":"Dream on","Points":9498,"X":305,"Y":482,"Continent":"K43","Bonus":7,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565837Z"},{"ID":38606,"Name":"Jan koƂo NEW 2 Ost","Points":7463,"X":689,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565837Z"},{"ID":38607,"Name":"092. Wąskie gĂłry","Points":9792,"X":651,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565838Z"},{"ID":38608,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":649,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565839Z"},{"ID":38609,"Name":"C0106","Points":10362,"X":311,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565839Z"},{"ID":38610,"Name":"## Nieznana ##","Points":8815,"X":635,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565841Z"},{"ID":38611,"Name":"B.03 duchy serca puszczy","Points":4688,"X":553,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565841Z"},{"ID":38612,"Name":"134 invidia","Points":5957,"X":531,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565842Z"},{"ID":38613,"Name":"Wioska barbarzyƄska","Points":3296,"X":665,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565843Z"},{"ID":38614,"Name":"053.","Points":1505,"X":325,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565843Z"},{"ID":38615,"Name":"WoƂf","Points":4811,"X":513,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":8400180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565844Z"},{"ID":38616,"Name":"Wioska barbarzyƄska","Points":3151,"X":533,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565845Z"},{"ID":38617,"Name":"Wioska Wiki 3","Points":10697,"X":519,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565845Z"},{"ID":38618,"Name":"Mechnice","Points":7895,"X":692,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565846Z"},{"ID":38619,"Name":"015.Stradi","Points":10495,"X":447,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565846Z"},{"ID":38620,"Name":"Gryfios 026","Points":11877,"X":690,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565847Z"},{"ID":38621,"Name":"okplls","Points":5163,"X":664,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565848Z"},{"ID":38622,"Name":"Wioska 2","Points":8363,"X":644,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565848Z"},{"ID":38623,"Name":"071 donkretos3","Points":7464,"X":688,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565849Z"},{"ID":38624,"Name":"Wioska barbarzyƄska","Points":6766,"X":559,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56585Z"},{"ID":38625,"Name":"2.Majorka","Points":6289,"X":574,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56585Z"},{"ID":38626,"Name":"Taran 039","Points":3440,"X":645,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565851Z"},{"ID":38627,"Name":"psycha sitting","Points":9894,"X":410,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565851Z"},{"ID":38628,"Name":"Shh","Points":10342,"X":315,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565852Z"},{"ID":38629,"Name":"--13--","Points":10218,"X":339,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565853Z"},{"ID":38630,"Name":"*070*","Points":10211,"X":341,"Y":398,"Continent":"K33","Bonus":2,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565853Z"},{"ID":38631,"Name":"Sernik z Andzynkami","Points":9744,"X":696,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565854Z"},{"ID":38632,"Name":"Szlachcic","Points":10478,"X":388,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565855Z"},{"ID":38633,"Name":"EO EO","Points":10019,"X":307,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565855Z"},{"ID":38635,"Name":"Out of Touch","Points":8746,"X":324,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565856Z"},{"ID":38636,"Name":"Deveste ufam Tobie","Points":10005,"X":395,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565856Z"},{"ID":38637,"Name":"KRÓL PAPI WIELKI","Points":9369,"X":658,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565857Z"},{"ID":38638,"Name":"Wielki 2","Points":7680,"X":500,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565858Z"},{"ID":38639,"Name":"Ć»eraƄ","Points":8142,"X":368,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565858Z"},{"ID":38640,"Name":"-001-","Points":5789,"X":372,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565859Z"},{"ID":38641,"Name":"Wioska barbarzyƄska","Points":9469,"X":665,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56586Z"},{"ID":38642,"Name":"Jan xX3 ost K","Points":9577,"X":687,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56586Z"},{"ID":38644,"Name":"[039] Wioska barbarzyƄska","Points":9288,"X":673,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565861Z"},{"ID":38645,"Name":"[0057]","Points":10495,"X":447,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565862Z"},{"ID":38647,"Name":"0030","Points":3812,"X":489,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565862Z"},{"ID":38648,"Name":"002. Rynsztok","Points":10281,"X":561,"Y":321,"Continent":"K35","Bonus":3,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565863Z"},{"ID":38650,"Name":"Gattacka","Points":9556,"X":680,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565863Z"},{"ID":38651,"Name":"KRÓL PAPI WIELKI","Points":9868,"X":637,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565864Z"},{"ID":38652,"Name":"Rubiez5","Points":8691,"X":308,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565865Z"},{"ID":38653,"Name":"A 025","Points":5021,"X":365,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565865Z"},{"ID":38654,"Name":"XDX","Points":5940,"X":613,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565866Z"},{"ID":38655,"Name":".16. Tillmar e","Points":8499,"X":351,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565867Z"},{"ID":38656,"Name":"Wioska barbarzyƄska","Points":7973,"X":655,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565867Z"},{"ID":38657,"Name":"KRÓL PAPI WIELKI","Points":10294,"X":650,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565868Z"},{"ID":38658,"Name":"Wioska barbarzyƄska","Points":5354,"X":374,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565869Z"},{"ID":38659,"Name":"Wioska barbarzyƄska","Points":9622,"X":599,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565869Z"},{"ID":38660,"Name":"007. OchotA","Points":9508,"X":690,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56587Z"},{"ID":38661,"Name":"Moldor 001","Points":11215,"X":632,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565871Z"},{"ID":38662,"Name":"~~057~~","Points":9626,"X":631,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565871Z"},{"ID":38663,"Name":"[0032]","Points":10495,"X":432,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565872Z"},{"ID":38664,"Name":"#083#","Points":9761,"X":632,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565873Z"},{"ID":38665,"Name":"070- Mroczna Osada","Points":8010,"X":596,"Y":337,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565874Z"},{"ID":38667,"Name":"Ob Konfederacja","Points":9545,"X":427,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565874Z"},{"ID":38668,"Name":"nowa 4","Points":4328,"X":468,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":849104546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565875Z"},{"ID":38669,"Name":"123","Points":10373,"X":470,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565876Z"},{"ID":38670,"Name":"- 178 - SS","Points":9956,"X":533,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565876Z"},{"ID":38671,"Name":"Zaleszczyki 001","Points":10226,"X":619,"Y":648,"Continent":"K66","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565877Z"},{"ID":38672,"Name":"-001-","Points":5657,"X":374,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565877Z"},{"ID":38673,"Name":"Forteca*002*","Points":9378,"X":534,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565878Z"},{"ID":38674,"Name":"Ciepielowice","Points":10429,"X":688,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565879Z"},{"ID":38675,"Name":"###052###","Points":10495,"X":586,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565879Z"},{"ID":38676,"Name":"[049] Wioska barbarzyƄska","Points":7600,"X":677,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56588Z"},{"ID":38677,"Name":"Florencja","Points":12154,"X":686,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":2392791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56588Z"},{"ID":38678,"Name":"- 138 - SS","Points":9050,"X":537,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565881Z"},{"ID":38679,"Name":"007. Andziejek","Points":10223,"X":562,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565882Z"},{"ID":38680,"Name":"Wioska barbarzyƄska","Points":2545,"X":307,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":699510045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565883Z"},{"ID":38681,"Name":"Chocznia","Points":6390,"X":541,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565883Z"},{"ID":38682,"Name":"Darma dla zawodnika","Points":2657,"X":318,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565884Z"},{"ID":38683,"Name":"C0146","Points":10362,"X":313,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565885Z"},{"ID":38685,"Name":"Wioska barbarzyƄska","Points":6482,"X":520,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":745946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565885Z"},{"ID":38686,"Name":"Mako Reactor 1 - B2F","Points":5179,"X":546,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565886Z"},{"ID":38687,"Name":"Mefedron 12","Points":3333,"X":395,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565887Z"},{"ID":38688,"Name":"Wioska barbarzyƄska","Points":7741,"X":689,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565888Z"},{"ID":38689,"Name":"Wioska barbarzyƄska","Points":10171,"X":570,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565889Z"},{"ID":38690,"Name":"Mefedron 10","Points":3741,"X":391,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565889Z"},{"ID":38691,"Name":"Darma dla zawodnika","Points":10476,"X":555,"Y":689,"Continent":"K65","Bonus":6,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56589Z"},{"ID":38692,"Name":"!36 63 Parhauti","Points":8309,"X":633,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565891Z"},{"ID":38693,"Name":"wioska","Points":10146,"X":620,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565892Z"},{"ID":38695,"Name":"*118*","Points":9017,"X":363,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565892Z"},{"ID":38696,"Name":"092 Litwa","Points":10495,"X":576,"Y":464,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565893Z"},{"ID":38697,"Name":"KRÓL PAPI WIELKI","Points":9981,"X":641,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565894Z"},{"ID":38698,"Name":"Wioska barbarzyƄska","Points":6251,"X":629,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565894Z"},{"ID":38699,"Name":"Le Coq","Points":5799,"X":560,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565895Z"},{"ID":38700,"Name":"#0232 Kamileq69 dar","Points":10178,"X":475,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565896Z"},{"ID":38702,"Name":"B#010","Points":9797,"X":691,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565896Z"},{"ID":38703,"Name":"--14--","Points":7286,"X":345,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565897Z"},{"ID":38704,"Name":"I106","Points":6596,"X":688,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565898Z"},{"ID":38705,"Name":"*3603*a Tu jest przyszƂoƛć","Points":10180,"X":658,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565898Z"},{"ID":38706,"Name":"-005-","Points":9711,"X":321,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565899Z"},{"ID":38707,"Name":"psycha sitting","Points":10178,"X":409,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5659Z"},{"ID":38708,"Name":"006 3 dni?","Points":10237,"X":524,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5659Z"},{"ID":38709,"Name":"3.Pineapple Express","Points":4148,"X":522,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565901Z"},{"ID":38710,"Name":"A 102","Points":7418,"X":368,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565902Z"},{"ID":38711,"Name":"Bulbulator","Points":9634,"X":587,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565903Z"},{"ID":38712,"Name":"*088*","Points":10211,"X":361,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565903Z"},{"ID":38713,"Name":"Rubiez3","Points":9847,"X":309,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565904Z"},{"ID":38714,"Name":"HULA","Points":1583,"X":399,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":8123790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565905Z"},{"ID":38715,"Name":"Obok sąsiada 3","Points":9549,"X":383,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565906Z"},{"ID":38716,"Name":"045g","Points":9702,"X":314,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565906Z"},{"ID":38718,"Name":"Wow21","Points":2890,"X":369,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565907Z"},{"ID":38719,"Name":"Rubiez10","Points":8060,"X":309,"Y":470,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565908Z"},{"ID":38720,"Name":"#0088","Points":4006,"X":562,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565908Z"},{"ID":38721,"Name":"psycha sitting","Points":10178,"X":401,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565909Z"},{"ID":38722,"Name":"FP008","Points":10393,"X":488,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565909Z"},{"ID":38723,"Name":"15. Rio","Points":9362,"X":688,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56591Z"},{"ID":38724,"Name":"Winterhome.074","Points":6830,"X":491,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565911Z"},{"ID":38725,"Name":"Gattacka","Points":9286,"X":678,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565911Z"},{"ID":38726,"Name":"#096#","Points":8181,"X":626,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565913Z"},{"ID":38727,"Name":"Komornicy 005","Points":4935,"X":348,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565913Z"},{"ID":38728,"Name":"###053###","Points":10495,"X":581,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565914Z"},{"ID":38729,"Name":"nowa 2","Points":6871,"X":465,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":849104546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565915Z"},{"ID":38730,"Name":"C0061","Points":10362,"X":310,"Y":529,"Continent":"K53","Bonus":6,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565915Z"},{"ID":38731,"Name":"###054###","Points":10495,"X":591,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565916Z"},{"ID":38732,"Name":"Ć»UBR PSYCHIATRYK 023","Points":6451,"X":625,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565917Z"},{"ID":38733,"Name":".29. Olanda m","Points":3485,"X":359,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":7417116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565917Z"},{"ID":38734,"Name":"FAKE OR OFF","Points":9817,"X":411,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565918Z"},{"ID":38735,"Name":"010 Hades","Points":9027,"X":693,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565919Z"},{"ID":38736,"Name":"002","Points":3672,"X":588,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565919Z"},{"ID":38737,"Name":"*018*","Points":10211,"X":347,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56592Z"},{"ID":38738,"Name":"141 Fabianki-Hofek","Points":9601,"X":661,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565921Z"},{"ID":38740,"Name":"New World","Points":10294,"X":441,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565922Z"},{"ID":38741,"Name":"Nicolas Cage","Points":7380,"X":670,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565922Z"},{"ID":38742,"Name":"[0067]","Points":10495,"X":444,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565923Z"},{"ID":38743,"Name":"K35 - [007] Before Land","Points":9783,"X":575,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565924Z"},{"ID":38744,"Name":"Wioska barbarzyƄska","Points":8216,"X":391,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565924Z"},{"ID":38745,"Name":"Didek","Points":10481,"X":666,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565925Z"},{"ID":38746,"Name":"New World","Points":10139,"X":447,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565926Z"},{"ID":38747,"Name":"Gattacka","Points":9551,"X":680,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565927Z"},{"ID":38748,"Name":"Wioska barbarzyƄska","Points":4089,"X":332,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565927Z"},{"ID":38749,"Name":"Wioska barbarzyƄska","Points":6482,"X":420,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565928Z"},{"ID":38750,"Name":"008","Points":9885,"X":636,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565929Z"},{"ID":38751,"Name":"psycha sitting","Points":10178,"X":408,"Y":669,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565929Z"},{"ID":38752,"Name":"066. Vroengard","Points":10252,"X":667,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56593Z"},{"ID":38753,"Name":"Wioska barbarzyƄska","Points":4921,"X":311,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565931Z"},{"ID":38754,"Name":"Chata Hermana","Points":10636,"X":685,"Y":555,"Continent":"K56","Bonus":9,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565932Z"},{"ID":38755,"Name":"Winterhome.043","Points":10178,"X":495,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565933Z"},{"ID":38756,"Name":"*040*","Points":10211,"X":345,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565933Z"},{"ID":38757,"Name":"@02@","Points":10160,"X":408,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565934Z"},{"ID":38758,"Name":"Midgard","Points":3925,"X":616,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":699478692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565934Z"},{"ID":38759,"Name":"Wioska barbarzyƄska","Points":6258,"X":334,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565935Z"},{"ID":38760,"Name":"Domi","Points":8980,"X":698,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565936Z"},{"ID":38761,"Name":"Obok sąsiada 4","Points":9408,"X":382,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565936Z"},{"ID":38762,"Name":"#0050 geryk","Points":10178,"X":470,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565937Z"},{"ID":38763,"Name":"2.GijĂłn","Points":4456,"X":573,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565938Z"},{"ID":38764,"Name":"C0054","Points":10362,"X":313,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565939Z"},{"ID":38765,"Name":"C03 PoznaƄ","Points":6400,"X":346,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565939Z"},{"ID":38766,"Name":"011 tak o","Points":10237,"X":510,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56594Z"},{"ID":38767,"Name":"AAA","Points":6246,"X":543,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565941Z"},{"ID":38768,"Name":"#0243 Kamileq69 dar","Points":6995,"X":476,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565941Z"},{"ID":38769,"Name":"021","Points":7237,"X":397,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565942Z"},{"ID":38770,"Name":"Plelinia wracaj","Points":9555,"X":512,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":8400180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565943Z"},{"ID":38771,"Name":"WƂadcy PóƂnocy 13","Points":5951,"X":691,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565943Z"},{"ID":38773,"Name":"Didus P","Points":5652,"X":674,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565944Z"},{"ID":38774,"Name":"Wioska barbarzyƄska","Points":7124,"X":401,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565945Z"},{"ID":38775,"Name":"C 002","Points":7048,"X":688,"Y":518,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565945Z"},{"ID":38776,"Name":"0258","Points":10019,"X":552,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565946Z"},{"ID":38777,"Name":"D012","Points":7649,"X":613,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565947Z"},{"ID":38778,"Name":"Kędzierzyn KoĆșle","Points":10636,"X":685,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565948Z"},{"ID":38779,"Name":"xxx","Points":9997,"X":650,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565948Z"},{"ID":38780,"Name":"MojeDnoToWaszSzczyt","Points":10029,"X":502,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565949Z"},{"ID":38781,"Name":"Psycho to Marka, Narka !","Points":9475,"X":317,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56595Z"},{"ID":38782,"Name":"009 Desant","Points":9353,"X":482,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56595Z"},{"ID":38783,"Name":"-Yy-","Points":10070,"X":346,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565951Z"},{"ID":38784,"Name":"Wioska Zorro 025","Points":5543,"X":672,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565952Z"},{"ID":38785,"Name":"Gryfios 028","Points":11720,"X":688,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565952Z"},{"ID":38786,"Name":"WƂadcy PóƂnocy 14","Points":5119,"X":691,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565953Z"},{"ID":38788,"Name":"065. Tudosten","Points":10362,"X":667,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565954Z"},{"ID":38789,"Name":"0152","Points":8770,"X":405,"Y":338,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565954Z"},{"ID":38790,"Name":"016 NAWRA","Points":8405,"X":659,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565955Z"},{"ID":38791,"Name":"Ɓucznik na koniu","Points":6256,"X":682,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565956Z"},{"ID":38792,"Name":"018Sylwek","Points":9761,"X":471,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565956Z"},{"ID":38793,"Name":"#091#","Points":9761,"X":638,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565957Z"},{"ID":38794,"Name":"Wyspa_13","Points":9638,"X":502,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565957Z"},{"ID":38795,"Name":"Pitus","Points":9422,"X":501,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565958Z"},{"ID":38796,"Name":"001","Points":10373,"X":474,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565959Z"},{"ID":38797,"Name":"031 Metinna","Points":4757,"X":475,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56596Z"},{"ID":38798,"Name":"Dream on","Points":9744,"X":307,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56596Z"},{"ID":38799,"Name":"B012","Points":5206,"X":596,"Y":405,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565961Z"},{"ID":38800,"Name":"Wioska barbarzyƄska","Points":8856,"X":341,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565962Z"},{"ID":38802,"Name":"Taran","Points":10295,"X":338,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565962Z"},{"ID":38803,"Name":"085","Points":9778,"X":641,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565963Z"},{"ID":38805,"Name":"z 001030","Points":6305,"X":359,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565964Z"},{"ID":38806,"Name":"Indowy grĂłd","Points":9820,"X":324,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565964Z"},{"ID":38807,"Name":"C0188","Points":7373,"X":308,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565965Z"},{"ID":38808,"Name":"025","Points":9940,"X":448,"Y":312,"Continent":"K34","Bonus":5,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565966Z"},{"ID":38809,"Name":"Pd 06","Points":5343,"X":360,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565966Z"},{"ID":38810,"Name":"Wioska barbarzyƄska","Points":6228,"X":542,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565967Z"},{"ID":38811,"Name":"Moldor 2","Points":11138,"X":630,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565968Z"},{"ID":38812,"Name":"=|20|=","Points":9443,"X":615,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565968Z"},{"ID":38813,"Name":"Osada koczownikĂłw","Points":9470,"X":389,"Y":662,"Continent":"K63","Bonus":7,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565969Z"},{"ID":38814,"Name":"063.","Points":2895,"X":327,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565969Z"},{"ID":38815,"Name":"psycha sitting","Points":10178,"X":406,"Y":673,"Continent":"K64","Bonus":9,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56597Z"},{"ID":38816,"Name":"061","Points":9827,"X":614,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56597Z"},{"ID":38817,"Name":"1009","Points":5588,"X":622,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565971Z"},{"ID":38818,"Name":"013 Isengard","Points":4566,"X":470,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565972Z"},{"ID":38819,"Name":"X | Forest Cyaaaanku","Points":10000,"X":311,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565972Z"},{"ID":38820,"Name":"#085#","Points":9761,"X":634,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565973Z"},{"ID":38821,"Name":"Swoja4","Points":8530,"X":603,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565973Z"},{"ID":38822,"Name":"[001] Uszanowanko","Points":9147,"X":609,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565974Z"},{"ID":38823,"Name":"Kentin ufam Tobie","Points":10000,"X":329,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565975Z"},{"ID":38824,"Name":"z181_04","Points":9881,"X":314,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565975Z"},{"ID":38825,"Name":"CSA","Points":5747,"X":526,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565976Z"},{"ID":38826,"Name":"- 141 - SS","Points":9246,"X":544,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565977Z"},{"ID":38827,"Name":"088","Points":4043,"X":682,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565977Z"},{"ID":38828,"Name":"|066| BlackBird","Points":10123,"X":492,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565978Z"},{"ID":38829,"Name":"Koszyka","Points":6825,"X":685,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565978Z"},{"ID":38830,"Name":"2.Teneryfa","Points":5002,"X":573,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565979Z"},{"ID":38831,"Name":"038 invidia","Points":10099,"X":520,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56598Z"},{"ID":38832,"Name":"bucksbarzyƄskamiiiru","Points":5919,"X":334,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565981Z"},{"ID":38833,"Name":"004","Points":10495,"X":465,"Y":576,"Continent":"K54","Bonus":0,"PlayerID":848886870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565981Z"},{"ID":38834,"Name":"New World","Points":8735,"X":442,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565982Z"},{"ID":38835,"Name":"003.","Points":10630,"X":639,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565982Z"},{"ID":38836,"Name":"037 - Burgos","Points":4329,"X":690,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565983Z"},{"ID":38837,"Name":"Chojny","Points":2388,"X":693,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":849100246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565984Z"},{"ID":38838,"Name":"C 020","Points":6397,"X":692,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565984Z"},{"ID":38839,"Name":"New World","Points":10311,"X":429,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565985Z"},{"ID":38840,"Name":"Devano3","Points":10343,"X":335,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565986Z"},{"ID":38841,"Name":"TWIERDZA .:067:.","Points":9078,"X":677,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565987Z"},{"ID":38842,"Name":"051","Points":4437,"X":644,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565988Z"},{"ID":38843,"Name":"041","Points":7237,"X":652,"Y":623,"Continent":"K66","Bonus":5,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565988Z"},{"ID":38844,"Name":"Chekku - meito","Points":7240,"X":332,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565989Z"},{"ID":38845,"Name":"Ć»UBR .::.Adaczu/11","Points":4046,"X":627,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56599Z"},{"ID":38846,"Name":"K35 - [008] Before Land","Points":9847,"X":575,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565991Z"},{"ID":38847,"Name":"609|375","Points":9570,"X":660,"Y":387,"Continent":"K36","Bonus":5,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565991Z"},{"ID":38848,"Name":"KRÓL PAPI WIELKI","Points":9363,"X":644,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565992Z"},{"ID":38849,"Name":"C0037","Points":10362,"X":309,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565993Z"},{"ID":38851,"Name":"B#013","Points":9797,"X":690,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565993Z"},{"ID":38852,"Name":"#6#","Points":7141,"X":500,"Y":483,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565994Z"},{"ID":38853,"Name":"051- Mroczna Osada","Points":8540,"X":659,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565995Z"},{"ID":38854,"Name":"O103","Points":9946,"X":347,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565995Z"},{"ID":38855,"Name":"006","Points":3163,"X":311,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565996Z"},{"ID":38856,"Name":"Hofek 27.","Points":3672,"X":667,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565997Z"},{"ID":38857,"Name":"ZƂoty ƚwit","Points":4148,"X":593,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565997Z"},{"ID":38858,"Name":"[012]","Points":7768,"X":455,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565998Z"},{"ID":38859,"Name":"Jan XX2 Ost K","Points":9771,"X":690,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565998Z"},{"ID":38860,"Name":"Wioska barbarzyƄska","Points":7716,"X":325,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565999Z"},{"ID":38861,"Name":"Ć»UBR PSYCHIATRYK 021","Points":6680,"X":625,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.565999Z"},{"ID":38862,"Name":"z 181-A008","Points":6690,"X":354,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566Z"},{"ID":38863,"Name":"001","Points":9616,"X":658,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566Z"},{"ID":38864,"Name":"Architekci PlacĂłw Boju","Points":8752,"X":337,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566001Z"},{"ID":38865,"Name":"018","Points":4976,"X":457,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":698650301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566002Z"},{"ID":38866,"Name":"PrzypaƂownia","Points":3387,"X":578,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566002Z"},{"ID":38867,"Name":"Wioska barbarzyƄska","Points":3388,"X":347,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566003Z"},{"ID":38868,"Name":"038","Points":10636,"X":656,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566004Z"},{"ID":38869,"Name":".achim.","Points":7541,"X":487,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566004Z"},{"ID":38870,"Name":"Jestem Poza Kontrolą","Points":9880,"X":345,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566005Z"},{"ID":38871,"Name":"Out of Touch","Points":8726,"X":318,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566006Z"},{"ID":38872,"Name":"ByƂeƛ w porządku 008","Points":8135,"X":374,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566007Z"},{"ID":38873,"Name":"cebul23","Points":9825,"X":369,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566007Z"},{"ID":38874,"Name":"520","Points":5858,"X":683,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566008Z"},{"ID":38875,"Name":"Wyspa_23","Points":9638,"X":511,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566009Z"},{"ID":38876,"Name":"Szale","Points":6790,"X":461,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566009Z"},{"ID":38877,"Name":"Wow7","Points":11989,"X":369,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56601Z"},{"ID":38878,"Name":"Winterhome.015","Points":10178,"X":510,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566011Z"},{"ID":38880,"Name":"Wioska 081","Points":8833,"X":659,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566011Z"},{"ID":38881,"Name":"Wieƛ 01","Points":9976,"X":338,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566012Z"},{"ID":38882,"Name":"14. Metavers","Points":9418,"X":554,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566013Z"},{"ID":38883,"Name":"051.Stradi","Points":10495,"X":429,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566013Z"},{"ID":38884,"Name":"C0003","Points":10362,"X":310,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566014Z"},{"ID":38885,"Name":"O68 Blackburn","Points":10300,"X":681,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566014Z"},{"ID":38886,"Name":"009 internacionale","Points":9761,"X":348,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566015Z"},{"ID":38887,"Name":"Wioska 01","Points":4659,"X":569,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":849067192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566016Z"},{"ID":38888,"Name":"O042","Points":9976,"X":346,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566017Z"},{"ID":38889,"Name":"Wioska 1","Points":9358,"X":644,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566017Z"},{"ID":38890,"Name":"PoƂudnie.012","Points":9963,"X":555,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566018Z"},{"ID":38891,"Name":"Taran","Points":9956,"X":340,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566019Z"},{"ID":38892,"Name":"nowa","Points":5178,"X":607,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566019Z"},{"ID":38893,"Name":"Rubiez1","Points":9816,"X":307,"Y":483,"Continent":"K43","Bonus":6,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56602Z"},{"ID":38894,"Name":"009.Stradi","Points":10411,"X":435,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566021Z"},{"ID":38895,"Name":"103","Points":11083,"X":657,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566022Z"},{"ID":38896,"Name":"123 Wioska-015-","Points":10001,"X":542,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566022Z"},{"ID":38897,"Name":"007 * Lady Porto *","Points":9493,"X":694,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566023Z"},{"ID":38899,"Name":"A 045","Points":8087,"X":362,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566024Z"},{"ID":38900,"Name":"FAKE OR OFF","Points":9833,"X":423,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566024Z"},{"ID":38901,"Name":"-09-","Points":6832,"X":553,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566025Z"},{"ID":38902,"Name":"Sony 911","Points":8511,"X":619,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566026Z"},{"ID":38903,"Name":"a moĆŒe off ? :)","Points":4580,"X":672,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566026Z"},{"ID":38904,"Name":"_PUSTA+","Points":10362,"X":687,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566027Z"},{"ID":38905,"Name":"059. Jiet","Points":10083,"X":666,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566028Z"},{"ID":38907,"Name":"Jan VALLHALLA","Points":7920,"X":684,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566028Z"},{"ID":38908,"Name":"Fajna 080","Points":4805,"X":459,"Y":565,"Continent":"K54","Bonus":0,"PlayerID":699868002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566029Z"},{"ID":38909,"Name":"Mrkime","Points":4308,"X":639,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":849099541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56603Z"},{"ID":38910,"Name":"Zeta Reticuli O","Points":10997,"X":419,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566031Z"},{"ID":38911,"Name":"B#026","Points":5505,"X":679,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566031Z"},{"ID":38912,"Name":"Przyczajony Tygrys","Points":9803,"X":615,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566032Z"},{"ID":38913,"Name":"X | Forest Cyaaaanku","Points":10000,"X":312,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566033Z"},{"ID":38914,"Name":"Moldor 9","Points":9074,"X":634,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566034Z"},{"ID":38915,"Name":"C12","Points":3699,"X":692,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566034Z"},{"ID":38916,"Name":"Wioska V","Points":10551,"X":325,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566035Z"},{"ID":38917,"Name":"038","Points":5909,"X":691,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566035Z"},{"ID":38918,"Name":"062- Mroczna Osada","Points":10126,"X":596,"Y":336,"Continent":"K35","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566036Z"},{"ID":38919,"Name":"ƚwinka","Points":2358,"X":318,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566037Z"},{"ID":38920,"Name":"001","Points":9664,"X":640,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566038Z"},{"ID":38921,"Name":"Wioska barbarzyƄska","Points":3257,"X":578,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566038Z"},{"ID":38922,"Name":"sad frog","Points":10479,"X":587,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566039Z"},{"ID":38923,"Name":"D014","Points":7024,"X":614,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56604Z"},{"ID":38924,"Name":"077","Points":9973,"X":693,"Y":519,"Continent":"K56","Bonus":1,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.56604Z"},{"ID":38925,"Name":"Nowy Początek! 001","Points":9905,"X":338,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":698926585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566041Z"},{"ID":38926,"Name":"003 * Lady Porto *","Points":12154,"X":694,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566041Z"},{"ID":38927,"Name":"Wioska","Points":6712,"X":321,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849099258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566042Z"},{"ID":38928,"Name":"020 NAWRA","Points":5601,"X":656,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566043Z"},{"ID":38929,"Name":"015 NAWRA","Points":7553,"X":655,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566043Z"},{"ID":38930,"Name":"SkarbiszĂłw","Points":10728,"X":682,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566044Z"},{"ID":38931,"Name":"Wioska barbarzyƄska","Points":10068,"X":521,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566045Z"},{"ID":38932,"Name":"123","Points":10373,"X":470,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.566045Z"},{"ID":38933,"Name":"KHORINIS 02","Points":2579,"X":377,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":849099924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59913Z"},{"ID":38934,"Name":"Wioska barbarzyƄska","Points":9825,"X":689,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599131Z"},{"ID":38935,"Name":"Pobozowisko","Points":5516,"X":414,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599132Z"},{"ID":38936,"Name":"Ob Konfederacja","Points":9690,"X":429,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599132Z"},{"ID":38937,"Name":"Szulernia","Points":6973,"X":383,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599133Z"},{"ID":38938,"Name":"New World","Points":10294,"X":448,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599134Z"},{"ID":38939,"Name":"FP035","Points":5968,"X":474,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599135Z"},{"ID":38940,"Name":"*120*","Points":9196,"X":350,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599135Z"},{"ID":38941,"Name":"Winterhome.022","Points":10178,"X":500,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599136Z"},{"ID":38942,"Name":"#005 Zenitobiusz","Points":4076,"X":366,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599137Z"},{"ID":38943,"Name":"FAKE OR OFF","Points":9830,"X":412,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599138Z"},{"ID":38944,"Name":"#028#","Points":9902,"X":621,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599138Z"},{"ID":38945,"Name":"nr2","Points":9098,"X":584,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599139Z"},{"ID":38946,"Name":"OrzeƂ 10","Points":4905,"X":696,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59914Z"},{"ID":38947,"Name":"OrzeƂ 9","Points":6739,"X":697,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599141Z"},{"ID":38948,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":315,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599141Z"},{"ID":38949,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":8034,"X":453,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599142Z"},{"ID":38950,"Name":"Gold Experience","Points":10564,"X":589,"Y":671,"Continent":"K65","Bonus":9,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599143Z"},{"ID":38951,"Name":"Wonderwall","Points":9579,"X":310,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599144Z"},{"ID":38952,"Name":"*193*","Points":10211,"X":366,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599144Z"},{"ID":38953,"Name":"Swoja6","Points":8631,"X":606,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599145Z"},{"ID":38954,"Name":"Wioska peres5130","Points":6405,"X":536,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599146Z"},{"ID":38955,"Name":"New World","Points":10292,"X":448,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599147Z"},{"ID":38956,"Name":"1.03","Points":9168,"X":432,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599148Z"},{"ID":38957,"Name":"Szale","Points":9404,"X":463,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599148Z"},{"ID":38958,"Name":"*198*","Points":10211,"X":364,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599149Z"},{"ID":38959,"Name":"D.007","Points":8354,"X":392,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59915Z"},{"ID":38960,"Name":"WschĂłd X6","Points":10125,"X":693,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599151Z"},{"ID":38961,"Name":"#0272 Gwen1","Points":5184,"X":474,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599151Z"},{"ID":38962,"Name":"C002","Points":6544,"X":676,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599152Z"},{"ID":38963,"Name":"04.wiocha","Points":6430,"X":332,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599153Z"},{"ID":38964,"Name":"z 181-A009","Points":7521,"X":355,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599154Z"},{"ID":38965,"Name":"0042","Points":4137,"X":569,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599154Z"},{"ID":38966,"Name":"035.xxx","Points":4068,"X":483,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599155Z"},{"ID":38967,"Name":"001","Points":8330,"X":629,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599156Z"},{"ID":38968,"Name":"S005","Points":9225,"X":598,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599157Z"},{"ID":38969,"Name":"046. Warkoczynka","Points":10083,"X":664,"Y":600,"Continent":"K66","Bonus":4,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599157Z"},{"ID":38970,"Name":"*181*","Points":10211,"X":324,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599158Z"},{"ID":38971,"Name":"Ć»UBR PSYCHIATRYK 009","Points":6427,"X":621,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599159Z"},{"ID":38972,"Name":"0421","Points":10019,"X":561,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59916Z"},{"ID":38973,"Name":"Mordor","Points":4840,"X":646,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":849098822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59916Z"},{"ID":38974,"Name":"004 NAWRA","Points":10164,"X":663,"Y":611,"Continent":"K66","Bonus":2,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599161Z"},{"ID":38975,"Name":"0420","Points":10019,"X":555,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599162Z"},{"ID":38976,"Name":"C0065","Points":10362,"X":307,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599163Z"},{"ID":38977,"Name":"000 Plutosea","Points":10452,"X":318,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599163Z"},{"ID":38978,"Name":"009.SIEMANO","Points":10135,"X":680,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599164Z"},{"ID":38979,"Name":"**28**","Points":9431,"X":677,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599165Z"},{"ID":38980,"Name":"0.09 Noli timere","Points":8710,"X":467,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599166Z"},{"ID":38982,"Name":"A 072","Points":4234,"X":360,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599166Z"},{"ID":38984,"Name":"[0068]","Points":10495,"X":438,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599167Z"},{"ID":38985,"Name":"062","Points":4292,"X":515,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599168Z"},{"ID":38986,"Name":"141 invidia","Points":6040,"X":541,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599169Z"},{"ID":38987,"Name":"Iskra","Points":9761,"X":598,"Y":334,"Continent":"K35","Bonus":6,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59917Z"},{"ID":38989,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":8988,"X":380,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59917Z"},{"ID":38990,"Name":"BucksbarzyƄsKamiiiru","Points":6148,"X":429,"Y":509,"Continent":"K54","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599171Z"},{"ID":38991,"Name":"Ozimek","Points":10838,"X":675,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599172Z"},{"ID":38992,"Name":"123","Points":10373,"X":472,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599173Z"},{"ID":38993,"Name":"Nargothrond","Points":9835,"X":634,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599173Z"},{"ID":38994,"Name":"C108","Points":4644,"X":366,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599174Z"},{"ID":38995,"Name":"Wioska barbarzyƄska","Points":5798,"X":308,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599175Z"},{"ID":38996,"Name":"Wioska barbarzyƄska","Points":6929,"X":387,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599176Z"},{"ID":38997,"Name":"Ć»UBR .::.Adaczu/12","Points":2893,"X":625,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599176Z"},{"ID":38998,"Name":"z 001026","Points":9126,"X":353,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599177Z"},{"ID":38999,"Name":"Rubiez15","Points":3877,"X":307,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599178Z"},{"ID":39000,"Name":"psycha sitting","Points":10311,"X":421,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599179Z"},{"ID":39001,"Name":"Szlachcic","Points":10487,"X":388,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599179Z"},{"ID":39002,"Name":"Wioska barbarzyƄska","Points":3508,"X":397,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59918Z"},{"ID":39003,"Name":"New World","Points":10291,"X":436,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599181Z"},{"ID":39004,"Name":"010","Points":9763,"X":602,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599182Z"},{"ID":39005,"Name":"B009","Points":7375,"X":516,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599182Z"},{"ID":39006,"Name":"#025#","Points":9761,"X":620,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599183Z"},{"ID":39007,"Name":"TWIERDZA .:028:.","Points":10356,"X":685,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599184Z"},{"ID":39008,"Name":"SokóƂka","Points":9494,"X":650,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":849066044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599185Z"},{"ID":39009,"Name":"094 Tomek","Points":4769,"X":689,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599186Z"},{"ID":39010,"Name":"[013]","Points":4995,"X":455,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599186Z"},{"ID":39011,"Name":"New World","Points":10311,"X":426,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599187Z"},{"ID":39012,"Name":"015","Points":9993,"X":512,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599188Z"},{"ID":39013,"Name":"*INTERTWINED*","Points":6745,"X":498,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599189Z"},{"ID":39014,"Name":"647|410 Wioska barbarzyƄska","Points":4625,"X":647,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599189Z"},{"ID":39015,"Name":"Wioska barbarzyƄska","Points":3980,"X":559,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59919Z"},{"ID":39016,"Name":"041","Points":6050,"X":324,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599191Z"},{"ID":39018,"Name":"_PUSTA !","Points":9595,"X":686,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599192Z"},{"ID":39019,"Name":"Wioska barbarzyƄska","Points":10047,"X":338,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599192Z"},{"ID":39020,"Name":"000 Plutosea","Points":9976,"X":320,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599193Z"},{"ID":39022,"Name":"Klaudek15","Points":5151,"X":632,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599194Z"},{"ID":39023,"Name":"- 01 - JFK","Points":8992,"X":467,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599195Z"},{"ID":39024,"Name":"I083","Points":8662,"X":681,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599195Z"},{"ID":39025,"Name":"Wioska barbarzyƄska","Points":6120,"X":398,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599196Z"},{"ID":39026,"Name":"Szlachcic","Points":10420,"X":377,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599197Z"},{"ID":39027,"Name":"lala","Points":9768,"X":586,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599197Z"},{"ID":39028,"Name":"Dream on","Points":9497,"X":311,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599198Z"},{"ID":39029,"Name":"Wioska barbarzyƄska","Points":3837,"X":627,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599199Z"},{"ID":39031,"Name":"Z|004| Florencja","Points":9034,"X":474,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5992Z"},{"ID":39032,"Name":"Wyspa_47","Points":6945,"X":502,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5992Z"},{"ID":39033,"Name":"Szlachcic","Points":9356,"X":378,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599201Z"},{"ID":39034,"Name":"::: W :::","Points":2515,"X":302,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599202Z"},{"ID":39035,"Name":"Forteca*003*","Points":9211,"X":533,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599203Z"},{"ID":39036,"Name":".18. Colomier m","Points":6999,"X":360,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599203Z"},{"ID":39037,"Name":"Out of Touch","Points":8739,"X":323,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599204Z"},{"ID":39038,"Name":"Out of Touch","Points":6187,"X":313,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599205Z"},{"ID":39039,"Name":"Wioska barbarzyƄska","Points":9825,"X":691,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599206Z"},{"ID":39040,"Name":"=|02|=","Points":10495,"X":650,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599206Z"},{"ID":39041,"Name":"XDX","Points":7215,"X":610,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599207Z"},{"ID":39042,"Name":"Wioska barbarzyƄska","Points":3555,"X":681,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599208Z"},{"ID":39043,"Name":"Dream on","Points":8074,"X":306,"Y":502,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599209Z"},{"ID":39044,"Name":"psycha sitting","Points":10311,"X":400,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599209Z"},{"ID":39045,"Name":"K35 - [041] Before Land","Points":4276,"X":572,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59921Z"},{"ID":39046,"Name":"01 La Mancha","Points":9324,"X":382,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599211Z"},{"ID":39047,"Name":"029 invidia","Points":9788,"X":529,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599212Z"},{"ID":39048,"Name":"Wioska 1","Points":3212,"X":545,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":698881022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599213Z"},{"ID":39049,"Name":"Osada koczownikĂłwxx","Points":10049,"X":336,"Y":399,"Continent":"K33","Bonus":4,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599213Z"},{"ID":39050,"Name":"**INTERTWINED*","Points":9711,"X":504,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599214Z"},{"ID":39051,"Name":"Out of Touch","Points":9742,"X":322,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599215Z"},{"ID":39052,"Name":"ĆmĂłw","Points":8544,"X":586,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599216Z"},{"ID":39053,"Name":"#092#","Points":9761,"X":626,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599216Z"},{"ID":39054,"Name":"A007","Points":7994,"X":639,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":699520575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599217Z"},{"ID":39055,"Name":"Jan AirForce Ost K","Points":9789,"X":687,"Y":449,"Continent":"K46","Bonus":9,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599218Z"},{"ID":39056,"Name":"Taran","Points":9956,"X":335,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599219Z"},{"ID":39057,"Name":"META","Points":8149,"X":580,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599219Z"},{"ID":39058,"Name":"O048","Points":9876,"X":346,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59922Z"},{"ID":39059,"Name":"Wioska barbarzyƄska","Points":3646,"X":541,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599221Z"},{"ID":39060,"Name":"000 Plutosea","Points":10068,"X":318,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599222Z"},{"ID":39061,"Name":"#Yamakashi#","Points":3324,"X":317,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":849099601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599222Z"},{"ID":39062,"Name":"Mefedron 11","Points":4183,"X":395,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599223Z"},{"ID":39063,"Name":"Sernik z Andzynkami","Points":9744,"X":697,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599224Z"},{"ID":39064,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":312,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599225Z"},{"ID":39065,"Name":"bucksbarzyƄskamiiiru","Points":4824,"X":333,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599225Z"},{"ID":39066,"Name":"BRICKLEBERRY","Points":3897,"X":556,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599226Z"},{"ID":39067,"Name":"006","Points":7300,"X":646,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599227Z"},{"ID":39068,"Name":"Out of Touch","Points":8754,"X":321,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599228Z"},{"ID":39070,"Name":"048.","Points":4304,"X":327,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599228Z"},{"ID":39071,"Name":"D14","Points":11130,"X":683,"Y":556,"Continent":"K56","Bonus":3,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599229Z"},{"ID":39072,"Name":"Gryfios 025","Points":11876,"X":685,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59923Z"},{"ID":39073,"Name":"CSA","Points":3758,"X":525,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599231Z"},{"ID":39074,"Name":"Moldor","Points":7761,"X":629,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599231Z"},{"ID":39075,"Name":"TWIERDZA .:054:.","Points":7937,"X":684,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599232Z"},{"ID":39076,"Name":"Wioska Zorro 027","Points":11922,"X":658,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599233Z"},{"ID":39077,"Name":"012","Points":5618,"X":635,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599234Z"},{"ID":39078,"Name":"Wioska barbarzyƄska","Points":9501,"X":336,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599235Z"},{"ID":39079,"Name":"Bandi się rozbija ;/","Points":9753,"X":307,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599235Z"},{"ID":39080,"Name":"Wioska barbarzyƄska","Points":2316,"X":342,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699541376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599236Z"},{"ID":39081,"Name":"## Nieznana ##","Points":6868,"X":638,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599237Z"},{"ID":39082,"Name":"Wioska barbarzyƄska","Points":10291,"X":503,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599237Z"},{"ID":39083,"Name":"stickman 10","Points":8123,"X":595,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599238Z"},{"ID":39084,"Name":"070.","Points":2152,"X":321,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599239Z"},{"ID":39085,"Name":"C0290","Points":5915,"X":311,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59924Z"},{"ID":39086,"Name":"New World","Points":6100,"X":432,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59924Z"},{"ID":39087,"Name":"- 186 - SS","Points":7434,"X":532,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599241Z"},{"ID":39088,"Name":"Ć»UBR .::.Adaczu/13","Points":2706,"X":621,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599242Z"},{"ID":39089,"Name":"[0081]","Points":10495,"X":444,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599243Z"},{"ID":39090,"Name":"Ave Why!","Points":4101,"X":500,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599243Z"},{"ID":39091,"Name":"14. Wioska Raukodel","Points":10543,"X":646,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599244Z"},{"ID":39092,"Name":"PoƂudnie.017","Points":10251,"X":550,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599245Z"},{"ID":39093,"Name":"027","Points":5675,"X":630,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599246Z"},{"ID":39094,"Name":"PoƂudnie.003","Points":9985,"X":554,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599246Z"},{"ID":39095,"Name":"008 * Lady Porto *","Points":7960,"X":695,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599247Z"},{"ID":39096,"Name":"0023. Y -","Points":4313,"X":690,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599248Z"},{"ID":39097,"Name":"Wioska Wiki 6","Points":7137,"X":520,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599249Z"},{"ID":39098,"Name":"!36 63 Patrauti","Points":9860,"X":632,"Y":363,"Continent":"K36","Bonus":5,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599249Z"},{"ID":39099,"Name":"Psycho to Marka, Narka !","Points":10016,"X":319,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59925Z"},{"ID":39100,"Name":"038.xxx","Points":3221,"X":479,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599251Z"},{"ID":39101,"Name":"039","Points":9976,"X":655,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599252Z"},{"ID":39102,"Name":"Wioska barbarzyƄska","Points":2397,"X":396,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599252Z"},{"ID":39103,"Name":"Wioska 020","Points":5696,"X":675,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599253Z"},{"ID":39104,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":613,"Continent":"K66","Bonus":6,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599254Z"},{"ID":39106,"Name":"Topornik","Points":11130,"X":648,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599255Z"},{"ID":39107,"Name":"Szlachcic","Points":5703,"X":690,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599255Z"},{"ID":39108,"Name":"0036 Wioska barbarzyƄska","Points":9353,"X":449,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599256Z"},{"ID":39109,"Name":"Osada","Points":7273,"X":321,"Y":566,"Continent":"K53","Bonus":7,"PlayerID":849099258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599257Z"},{"ID":39110,"Name":"Szlachcic","Points":10474,"X":389,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599258Z"},{"ID":39111,"Name":"2.Oviedo","Points":4467,"X":575,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599258Z"},{"ID":39112,"Name":"Wioska barbarzyƄska","Points":8264,"X":403,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599259Z"},{"ID":39114,"Name":"Wow5","Points":9436,"X":370,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59926Z"},{"ID":39115,"Name":"Xanz","Points":10316,"X":313,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59926Z"},{"ID":39116,"Name":"Bąkowa","Points":10316,"X":573,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599261Z"},{"ID":39117,"Name":"Out of Touch","Points":5884,"X":320,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599262Z"},{"ID":39118,"Name":"C0117","Points":10229,"X":308,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599263Z"},{"ID":39119,"Name":"Wyspa_46","Points":9638,"X":500,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599263Z"},{"ID":39120,"Name":"Wioska barbarzyƄska","Points":4154,"X":404,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599264Z"},{"ID":39121,"Name":"*001*","Points":10495,"X":313,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599265Z"},{"ID":39122,"Name":"Warkoczynka 3","Points":8952,"X":667,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599265Z"},{"ID":39124,"Name":"KRÓL PAPI WIELKI","Points":10444,"X":649,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599266Z"},{"ID":39125,"Name":"Psycho to Marka, Narka !","Points":9761,"X":319,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599267Z"},{"ID":39126,"Name":"Seba1234567","Points":2451,"X":672,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849099689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599268Z"},{"ID":39127,"Name":"042g","Points":9809,"X":312,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599268Z"},{"ID":39128,"Name":"Wioska barbarzyƄska","Points":3565,"X":531,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":8606809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599269Z"},{"ID":39129,"Name":"Szale","Points":9898,"X":469,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59927Z"},{"ID":39130,"Name":"4.Podziemny Klimat","Points":4091,"X":521,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599271Z"},{"ID":39131,"Name":"Klaudek26","Points":1973,"X":635,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599271Z"},{"ID":39132,"Name":"O087","Points":9819,"X":345,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599272Z"},{"ID":39133,"Name":"#0229 Segadorr dar","Points":7401,"X":456,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599273Z"},{"ID":39134,"Name":"kamilkaze135 #01.1","Points":9805,"X":658,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599273Z"},{"ID":39135,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9783,"X":478,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599274Z"},{"ID":39136,"Name":"xxx","Points":9909,"X":651,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599275Z"},{"ID":39137,"Name":"I093","Points":6725,"X":685,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599276Z"},{"ID":39138,"Name":"C003","Points":6260,"X":674,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599276Z"},{"ID":39139,"Name":"040","Points":5284,"X":691,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599277Z"},{"ID":39140,"Name":"Psycho to Marka, Narka !","Points":5193,"X":317,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599278Z"},{"ID":39141,"Name":"C0147","Points":10362,"X":313,"Y":539,"Continent":"K53","Bonus":1,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599279Z"},{"ID":39142,"Name":"035","Points":12154,"X":656,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599279Z"},{"ID":39143,"Name":"229","Points":3178,"X":421,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59928Z"},{"ID":39144,"Name":"B.13 duchy serca puszczy","Points":2006,"X":559,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599281Z"},{"ID":39145,"Name":"021 NAWRA","Points":5850,"X":658,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599282Z"},{"ID":39146,"Name":"#hakutatu#","Points":4041,"X":317,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849099601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599282Z"},{"ID":39147,"Name":"Dream on","Points":9505,"X":311,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599283Z"},{"ID":39148,"Name":"Dream on","Points":9740,"X":306,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599284Z"},{"ID":39149,"Name":"D.016","Points":5279,"X":395,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599284Z"},{"ID":39150,"Name":"C4.","Points":2245,"X":312,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599285Z"},{"ID":39151,"Name":"psycha sitting","Points":10311,"X":410,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599286Z"},{"ID":39152,"Name":"111","Points":4578,"X":590,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599287Z"},{"ID":39153,"Name":"057 BanaN","Points":9661,"X":691,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599287Z"},{"ID":39154,"Name":"26. Wioska Raukodel","Points":3144,"X":652,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":9320272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599288Z"},{"ID":39155,"Name":"012 Missouri","Points":9815,"X":474,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599289Z"},{"ID":39156,"Name":"AAA","Points":9428,"X":549,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599289Z"},{"ID":39157,"Name":"Jan i co dalej Ost K","Points":9547,"X":683,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59929Z"},{"ID":39158,"Name":"Obok sąsiada 1","Points":9611,"X":384,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599291Z"},{"ID":39159,"Name":"Swoja5","Points":8530,"X":605,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599292Z"},{"ID":39160,"Name":"Wioska barbarzyƄska","Points":9473,"X":386,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599292Z"},{"ID":39162,"Name":"Devano6","Points":10247,"X":333,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599293Z"},{"ID":39163,"Name":"Komornicy 027","Points":9825,"X":348,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599294Z"},{"ID":39164,"Name":"A 047","Points":6188,"X":363,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599295Z"},{"ID":39165,"Name":"/003/FTP/","Points":10237,"X":315,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599295Z"},{"ID":39166,"Name":"- 132 - SS","Points":10000,"X":545,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599296Z"},{"ID":39167,"Name":"Merida.waleczna2","Points":1850,"X":592,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":849083294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599297Z"},{"ID":39168,"Name":"TWIERDZA .:029:.","Points":10222,"X":692,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599297Z"},{"ID":39169,"Name":"Domek JOJO- 2 ++ Tadek","Points":9913,"X":362,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599298Z"},{"ID":39170,"Name":"N.C. ZapowiedĆș","Points":4152,"X":668,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599299Z"},{"ID":39171,"Name":"Out of Touch","Points":9744,"X":322,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5993Z"},{"ID":39172,"Name":"Gattacka","Points":9535,"X":609,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5993Z"},{"ID":39173,"Name":"2.Las Palmas","Points":5003,"X":570,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599301Z"},{"ID":39174,"Name":"A0200","Points":10362,"X":383,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599302Z"},{"ID":39175,"Name":"AAA","Points":5852,"X":546,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599302Z"},{"ID":39176,"Name":"-003- Domek Ć»elazny","Points":9115,"X":658,"Y":620,"Continent":"K66","Bonus":3,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599303Z"},{"ID":39178,"Name":"Mordor7","Points":5564,"X":315,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":848978903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599304Z"},{"ID":39179,"Name":"z 001027","Points":6490,"X":353,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599304Z"},{"ID":39180,"Name":"0303","Points":8104,"X":564,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599305Z"},{"ID":39181,"Name":"z181_01","Points":9882,"X":312,"Y":440,"Continent":"K43","Bonus":9,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599306Z"},{"ID":39182,"Name":"Dream on","Points":9761,"X":308,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599307Z"},{"ID":39183,"Name":"psycha sitting","Points":10178,"X":414,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599307Z"},{"ID":39184,"Name":"115 SansPL","Points":10319,"X":326,"Y":576,"Continent":"K53","Bonus":5,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599308Z"},{"ID":39185,"Name":"014 Wincanton","Points":10252,"X":619,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599309Z"},{"ID":39186,"Name":"Wioska barbarzyƄska","Points":4832,"X":695,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59931Z"},{"ID":39188,"Name":"Wyspa_20","Points":9638,"X":514,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59931Z"},{"ID":39189,"Name":"ZZZ","Points":7810,"X":459,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599311Z"},{"ID":39190,"Name":"056.","Points":2636,"X":323,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599312Z"},{"ID":39191,"Name":"marmag81/02","Points":7948,"X":307,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599313Z"},{"ID":39192,"Name":"Wioska 02","Points":2552,"X":568,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":849067192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599313Z"},{"ID":39194,"Name":"#Samarama#","Points":2567,"X":314,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849099601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599314Z"},{"ID":39195,"Name":"K35 - [040] Before Land","Points":6504,"X":576,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599315Z"},{"ID":39196,"Name":"Szlachcic","Points":10296,"X":385,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599316Z"},{"ID":39197,"Name":"Dream on","Points":9505,"X":305,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599316Z"},{"ID":39198,"Name":"New Land 08","Points":3753,"X":340,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599317Z"},{"ID":39199,"Name":"137 Dolina Gliny","Points":10083,"X":665,"Y":395,"Continent":"K36","Bonus":2,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599318Z"},{"ID":39200,"Name":"047.","Points":1728,"X":327,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599319Z"},{"ID":39201,"Name":"007 NAWRA","Points":10031,"X":663,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599319Z"},{"ID":39202,"Name":"Szlachcic","Points":10476,"X":397,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59932Z"},{"ID":39203,"Name":"-25-","Points":2519,"X":641,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599321Z"},{"ID":39205,"Name":"031 - Nowy Początek...","Points":9497,"X":376,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599321Z"},{"ID":39206,"Name":"_PUSTA","Points":6572,"X":662,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599322Z"},{"ID":39207,"Name":"Wioska barbarzyƄska","Points":3261,"X":396,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599323Z"},{"ID":39208,"Name":"Szlachcic","Points":7279,"X":378,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599324Z"},{"ID":39209,"Name":"009","Points":6355,"X":634,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599324Z"},{"ID":39210,"Name":".achim.","Points":7276,"X":485,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599325Z"},{"ID":39211,"Name":"Sernik z Andzynkami","Points":9797,"X":697,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599326Z"},{"ID":39212,"Name":"Wyspa_22","Points":9638,"X":509,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599326Z"},{"ID":39213,"Name":"O71","Points":10294,"X":683,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599327Z"},{"ID":39214,"Name":"B17","Points":10798,"X":688,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599328Z"},{"ID":39215,"Name":"D005","Points":7159,"X":611,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599329Z"},{"ID":39217,"Name":"a moĆŒe off ? :)","Points":4870,"X":670,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599329Z"},{"ID":39218,"Name":"011 NIE RUSZAJ","Points":9717,"X":688,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59933Z"},{"ID":39219,"Name":"022 wlodas62 :)","Points":10117,"X":562,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599331Z"},{"ID":39220,"Name":"!36 64 Zamostea","Points":8774,"X":646,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599332Z"},{"ID":39221,"Name":"#093#","Points":9761,"X":650,"Y":630,"Continent":"K66","Bonus":5,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599332Z"},{"ID":39222,"Name":"D010","Points":7165,"X":612,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599333Z"},{"ID":39223,"Name":"010 NAWRA","Points":8538,"X":663,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599334Z"},{"ID":39224,"Name":"Wioska milupa3 and IdziPR","Points":6898,"X":416,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":117208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599334Z"},{"ID":39225,"Name":"???","Points":9225,"X":484,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599335Z"},{"ID":39226,"Name":"Wioska barbarzyƄska","Points":6727,"X":691,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599336Z"},{"ID":39227,"Name":"Wioska barbarzyƄska","Points":7000,"X":518,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599337Z"},{"ID":39228,"Name":"Osada koczownikĂłw","Points":3916,"X":364,"Y":356,"Continent":"K33","Bonus":7,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599337Z"},{"ID":39229,"Name":"TWIERDZA .:021:.","Points":10223,"X":683,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599338Z"},{"ID":39230,"Name":"szlachcic;taran 2","Points":10654,"X":590,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599339Z"},{"ID":39231,"Name":"Winterhome.056","Points":10178,"X":499,"Y":308,"Continent":"K34","Bonus":7,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599339Z"},{"ID":39232,"Name":"FAKE OR OFF","Points":9819,"X":413,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59934Z"},{"ID":39233,"Name":"Taran","Points":9956,"X":336,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599341Z"},{"ID":39234,"Name":"Wioska barbarzyƄska","Points":8327,"X":520,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599342Z"},{"ID":39235,"Name":"ZZZ","Points":8087,"X":460,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599342Z"},{"ID":39236,"Name":"Dream on","Points":9491,"X":309,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599343Z"},{"ID":39237,"Name":"|048| Bobrek","Points":9750,"X":497,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599344Z"},{"ID":39238,"Name":"014","Points":5599,"X":633,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599344Z"},{"ID":39239,"Name":"Ob Konfederacja","Points":9291,"X":427,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599345Z"},{"ID":39240,"Name":"Wioska barbarzyƄska","Points":9148,"X":311,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599346Z"},{"ID":39241,"Name":"Szlachcic","Points":9623,"X":383,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599347Z"},{"ID":39242,"Name":"BRZEG JORDANU | 009","Points":4309,"X":694,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599347Z"},{"ID":39243,"Name":"004","Points":8656,"X":648,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599348Z"},{"ID":39244,"Name":"- 146 - SS","Points":9830,"X":545,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599349Z"},{"ID":39245,"Name":"Gryfios 027","Points":11880,"X":685,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59935Z"},{"ID":39246,"Name":"024","Points":3713,"X":606,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849057572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59935Z"},{"ID":39247,"Name":"CALL 1053","Points":10311,"X":653,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599351Z"},{"ID":39248,"Name":"Didek","Points":10495,"X":676,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599352Z"},{"ID":39249,"Name":"Wioska barbarzyƄska","Points":7509,"X":332,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599352Z"},{"ID":39250,"Name":"Wioska barbarzyƄska","Points":1522,"X":640,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599353Z"},{"ID":39251,"Name":"*INTERTWINED*","Points":7263,"X":505,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599354Z"},{"ID":39252,"Name":"!36 64 Bilca","Points":9653,"X":648,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599355Z"},{"ID":39253,"Name":"[0167]","Points":7959,"X":456,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599355Z"},{"ID":39254,"Name":"XDX","Points":5767,"X":610,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599356Z"},{"ID":39255,"Name":"bucks x kamiiiru","Points":10164,"X":418,"Y":431,"Continent":"K44","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599357Z"},{"ID":39256,"Name":"001","Points":9929,"X":646,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599358Z"},{"ID":39257,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":312,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599358Z"},{"ID":39258,"Name":"AAA","Points":5516,"X":527,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599359Z"},{"ID":39259,"Name":"Wioska barbarzyƄska","Points":8450,"X":387,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59936Z"},{"ID":39260,"Name":"KRÓL PAPI WIELKI","Points":10436,"X":635,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59936Z"},{"ID":39261,"Name":"Wioska","Points":5772,"X":626,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599361Z"},{"ID":39263,"Name":"Gattacka","Points":9064,"X":685,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599362Z"},{"ID":39264,"Name":"122","Points":4834,"X":683,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599363Z"},{"ID":39265,"Name":"MM001","Points":7524,"X":698,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":848899726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599363Z"},{"ID":39266,"Name":"OFF","Points":10345,"X":656,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599364Z"},{"ID":39267,"Name":"~~063~~","Points":8223,"X":628,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599365Z"},{"ID":39268,"Name":"#029#","Points":9761,"X":624,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599366Z"},{"ID":39269,"Name":"Psycho to Marka, Narka !","Points":4695,"X":320,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599366Z"},{"ID":39270,"Name":"C0053","Points":10362,"X":306,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599367Z"},{"ID":39271,"Name":"Jan WAFFEN","Points":7054,"X":686,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599368Z"},{"ID":39272,"Name":"psycha sitting","Points":10311,"X":411,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599368Z"},{"ID":39273,"Name":"B4.","Points":3357,"X":312,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599369Z"},{"ID":39274,"Name":"A 042","Points":6457,"X":364,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59937Z"},{"ID":39275,"Name":"274...gulden","Points":10309,"X":460,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599371Z"},{"ID":39276,"Name":"*199*","Points":5812,"X":367,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599372Z"},{"ID":39277,"Name":"TWIERDZA .:083:.","Points":6513,"X":679,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599372Z"},{"ID":39278,"Name":"Ave Why!","Points":6083,"X":493,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599373Z"},{"ID":39279,"Name":"D018","Points":6450,"X":616,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599374Z"},{"ID":39280,"Name":"042. barbarzyƄska, ha, ha -_-","Points":10285,"X":696,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599375Z"},{"ID":39281,"Name":"Dream on","Points":9750,"X":309,"Y":505,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599375Z"},{"ID":39282,"Name":"Szlachcic","Points":10952,"X":390,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599376Z"},{"ID":39283,"Name":"K35 - [009] Before Land","Points":9783,"X":580,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599377Z"},{"ID":39284,"Name":"Wioska barbarzyƄska","Points":4556,"X":400,"Y":333,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599378Z"},{"ID":39285,"Name":"Wioska barbarzyƄska","Points":2145,"X":687,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599378Z"},{"ID":39286,"Name":"C.006","Points":10000,"X":696,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599379Z"},{"ID":39287,"Name":"Wioska barbarzyƄska","Points":9835,"X":588,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59938Z"},{"ID":39288,"Name":"023 Borg","Points":7807,"X":629,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59938Z"},{"ID":39289,"Name":"Ronin P","Points":9995,"X":601,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599381Z"},{"ID":39290,"Name":"nowa 1","Points":6742,"X":464,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":849104546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599382Z"},{"ID":39291,"Name":"OrzeƂ 5","Points":8314,"X":691,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599382Z"},{"ID":39292,"Name":"Winterhome.032","Points":10178,"X":511,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599383Z"},{"ID":39293,"Name":"kamilkaze135 #02","Points":9071,"X":657,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599384Z"},{"ID":39294,"Name":"Taran","Points":6789,"X":611,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599385Z"},{"ID":39295,"Name":"[0056]","Points":10495,"X":447,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599385Z"},{"ID":39296,"Name":"z 00102","Points":10222,"X":358,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599386Z"},{"ID":39298,"Name":"Ob Konfederacja","Points":9021,"X":427,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599387Z"},{"ID":39300,"Name":"007","Points":9020,"X":319,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849099463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599387Z"},{"ID":39301,"Name":"~ BƁONIE ~","Points":3433,"X":316,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599388Z"},{"ID":39302,"Name":"ZwardoƄ","Points":2670,"X":539,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599389Z"},{"ID":39303,"Name":"Wow4","Points":11077,"X":372,"Y":356,"Continent":"K33","Bonus":7,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59939Z"},{"ID":39304,"Name":"A 059","Points":8641,"X":360,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59939Z"},{"ID":39305,"Name":"Wioska barbarzyƄska","Points":2816,"X":534,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599391Z"},{"ID":39306,"Name":"002 NAWRA","Points":10845,"X":661,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599392Z"},{"ID":39307,"Name":"Rubiez13","Points":6859,"X":306,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599392Z"},{"ID":39308,"Name":"0021 Wioska barbarzyƄska","Points":10085,"X":449,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599393Z"},{"ID":39309,"Name":"Wioska barbarzyƄska","Points":5590,"X":684,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599394Z"},{"ID":39310,"Name":"#010. Roast Steak Burger","Points":9999,"X":438,"Y":685,"Continent":"K64","Bonus":3,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599395Z"},{"ID":39311,"Name":"z 001033qqqqqqqqqqqqqqqqqq","Points":10393,"X":355,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599395Z"},{"ID":39312,"Name":".achim.","Points":10276,"X":521,"Y":412,"Continent":"K45","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599396Z"},{"ID":39313,"Name":"XDX","Points":8328,"X":611,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599397Z"},{"ID":39314,"Name":"C 011","Points":7249,"X":689,"Y":512,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599397Z"},{"ID":39315,"Name":"Wioska barbarzyƄska","Points":4782,"X":642,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599398Z"},{"ID":39316,"Name":"123","Points":10373,"X":466,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599399Z"},{"ID":39317,"Name":"- 139 - SS","Points":10000,"X":538,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5994Z"},{"ID":39319,"Name":"Wioska Gusman","Points":4859,"X":655,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5994Z"},{"ID":39320,"Name":"psycha sitting","Points":10178,"X":416,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599401Z"},{"ID":39321,"Name":"044 - Nowy Początek...","Points":7966,"X":374,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599402Z"},{"ID":39322,"Name":"N.C. Historia zemsty","Points":5933,"X":672,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599403Z"},{"ID":39323,"Name":"004 normalny chƂopak","Points":10273,"X":525,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599403Z"},{"ID":39324,"Name":"0004","Points":4897,"X":423,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599404Z"},{"ID":39325,"Name":"???","Points":8360,"X":481,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599405Z"},{"ID":39326,"Name":"Suppi","Points":9550,"X":324,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599405Z"},{"ID":39327,"Name":"Wioska barbarzyƄska","Points":9889,"X":590,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599406Z"},{"ID":39328,"Name":"#099#","Points":8514,"X":631,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599407Z"},{"ID":39329,"Name":"PoƂudnie.011","Points":10020,"X":553,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599408Z"},{"ID":39330,"Name":"006. GwĂłĆșdĆș do trumny","Points":10221,"X":557,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599408Z"},{"ID":39331,"Name":"Winterhome.023","Points":10178,"X":503,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599409Z"},{"ID":39332,"Name":"087 Wioska barbarzyƄska","Points":10001,"X":606,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59941Z"},{"ID":39333,"Name":"N.C. NiewesoƂe miasteczko","Points":5345,"X":671,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849098693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599411Z"},{"ID":39334,"Name":"kamilkaze135 #07","Points":10311,"X":659,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599411Z"},{"ID":39335,"Name":"031 - San Sebastian","Points":8089,"X":693,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599412Z"},{"ID":39336,"Name":"118","Points":7564,"X":684,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599413Z"},{"ID":39337,"Name":"XDX","Points":3982,"X":589,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599413Z"},{"ID":39338,"Name":"- 135 - SS","Points":10000,"X":541,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599414Z"},{"ID":39339,"Name":"C0183","Points":7881,"X":305,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599415Z"},{"ID":39340,"Name":"OƂowiany grĂłd","Points":4860,"X":319,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599415Z"},{"ID":39342,"Name":"2.Kartagena","Points":4253,"X":575,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599416Z"},{"ID":39343,"Name":"- 142 - SS","Points":9815,"X":538,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599417Z"},{"ID":39344,"Name":"0314","Points":8541,"X":559,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599418Z"},{"ID":39346,"Name":"[046] Wioska barbarzyƄska","Points":9470,"X":675,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599419Z"},{"ID":39347,"Name":"FP023","Points":10393,"X":479,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599419Z"},{"ID":39348,"Name":"0005","Points":5493,"X":422,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59942Z"},{"ID":39349,"Name":"KRÓL PAPI WIELKI","Points":9361,"X":640,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599421Z"},{"ID":39350,"Name":"Gryfios 024","Points":11712,"X":686,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599422Z"},{"ID":39352,"Name":"Zeta Reticuli O","Points":11321,"X":418,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599422Z"},{"ID":39353,"Name":"Wioska barbarzyƄska","Points":3050,"X":341,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599423Z"},{"ID":39354,"Name":"[038] Wioska barbarzyƄska","Points":9288,"X":672,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599424Z"},{"ID":39355,"Name":"Dream on","Points":9496,"X":310,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599425Z"},{"ID":39356,"Name":"New World","Points":8745,"X":430,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599425Z"},{"ID":39357,"Name":"Wioska 007","Points":3873,"X":694,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599426Z"},{"ID":39358,"Name":"D.026","Points":2928,"X":389,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599427Z"},{"ID":39359,"Name":"[0148]","Points":8951,"X":451,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599427Z"},{"ID":39360,"Name":"AAA","Points":9168,"X":550,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599428Z"},{"ID":39361,"Name":"~083.","Points":5542,"X":469,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599429Z"},{"ID":39362,"Name":"B#017","Points":9797,"X":678,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59943Z"},{"ID":39363,"Name":"kamilkaze135 #09","Points":9022,"X":656,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59943Z"},{"ID":39364,"Name":"#0231 Kamileq69 dar","Points":9707,"X":472,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599431Z"},{"ID":39365,"Name":"023.","Points":9162,"X":643,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599432Z"},{"ID":39366,"Name":"Wioska 2","Points":9124,"X":500,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599432Z"},{"ID":39367,"Name":"Rubiez12","Points":6250,"X":307,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599433Z"},{"ID":39368,"Name":"C0118","Points":10342,"X":311,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599434Z"},{"ID":39369,"Name":"Ć»UBRAWKA B001 marko91","Points":10087,"X":622,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599435Z"},{"ID":39370,"Name":"Wioska barbarzyƄska","Points":5706,"X":563,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599435Z"},{"ID":39371,"Name":"poludnie 9","Points":8607,"X":587,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599436Z"},{"ID":39372,"Name":"Dream on","Points":9276,"X":302,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599437Z"},{"ID":39373,"Name":"Argon","Points":9668,"X":678,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599437Z"},{"ID":39374,"Name":"MojeDnoToWaszSzczyt","Points":9967,"X":498,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599438Z"},{"ID":39375,"Name":"0116","Points":9194,"X":394,"Y":665,"Continent":"K63","Bonus":5,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599439Z"},{"ID":39376,"Name":"008","Points":9472,"X":671,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59944Z"},{"ID":39377,"Name":"xzc","Points":8630,"X":496,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59944Z"},{"ID":39378,"Name":"001","Points":9969,"X":682,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599441Z"},{"ID":39379,"Name":"Szlachcic","Points":8150,"X":384,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599442Z"},{"ID":39380,"Name":"KRÓL PAPI WIELKI","Points":10212,"X":645,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599442Z"},{"ID":39381,"Name":"016. ja wiem","Points":9417,"X":695,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599443Z"},{"ID":39382,"Name":"KRÓL PAPI WIELKI","Points":7883,"X":693,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599444Z"},{"ID":39383,"Name":"C0047","Points":10362,"X":312,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599445Z"},{"ID":39384,"Name":"03. Wioska Raukodel","Points":11130,"X":653,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599445Z"},{"ID":39385,"Name":"Szale","Points":7585,"X":458,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599446Z"},{"ID":39386,"Name":"FAKE OR OFF","Points":9816,"X":411,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599447Z"},{"ID":39387,"Name":"kamilkaze135 #10.1","Points":6954,"X":655,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599447Z"},{"ID":39388,"Name":"Szlachcic","Points":10478,"X":387,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599448Z"},{"ID":39389,"Name":"ManieK","Points":9172,"X":340,"Y":615,"Continent":"K63","Bonus":4,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599449Z"},{"ID":39390,"Name":"003 NAWRA","Points":10442,"X":664,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59945Z"},{"ID":39391,"Name":"WoƂowa Turnia","Points":7351,"X":311,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59945Z"},{"ID":39392,"Name":"kamilex","Points":3548,"X":681,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599451Z"},{"ID":39393,"Name":"???","Points":10083,"X":479,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599452Z"},{"ID":39394,"Name":"Wioska barbarzyƄska","Points":7786,"X":326,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599452Z"},{"ID":39395,"Name":"Wioska barbarzyƄska","Points":9863,"X":626,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599453Z"},{"ID":39396,"Name":"Wieƛ barbarzyƄcĂłw","Points":8371,"X":582,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599454Z"},{"ID":39397,"Name":"A054","Points":6295,"X":612,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599454Z"},{"ID":39398,"Name":"Szale","Points":7637,"X":459,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599455Z"},{"ID":39399,"Name":"Wyspa_01","Points":7589,"X":515,"Y":694,"Continent":"K65","Bonus":4,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599456Z"},{"ID":39400,"Name":"Out of Touch","Points":9968,"X":326,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599457Z"},{"ID":39401,"Name":"X | Forest Cyaaaanku","Points":10000,"X":311,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599457Z"},{"ID":39402,"Name":"Dream on","Points":9744,"X":309,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599458Z"},{"ID":39403,"Name":"ZaƂom","Points":11122,"X":700,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599459Z"},{"ID":39404,"Name":"- 177 - SS","Points":6920,"X":549,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599459Z"},{"ID":39405,"Name":"*019*","Points":10211,"X":346,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59946Z"},{"ID":39406,"Name":"-002","Points":10144,"X":362,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599461Z"},{"ID":39407,"Name":"K-F 002","Points":4122,"X":551,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599461Z"},{"ID":39408,"Name":"-06-","Points":8557,"X":554,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599462Z"},{"ID":39409,"Name":"BRICKLEBERRY","Points":5836,"X":548,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599463Z"},{"ID":39410,"Name":"C5.","Points":1974,"X":311,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599464Z"},{"ID":39411,"Name":"005.","Points":4900,"X":566,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599464Z"},{"ID":39412,"Name":"Wioska barbarzyƄska","Points":5112,"X":309,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599465Z"},{"ID":39413,"Name":"Wioska barbarzyƄska","Points":8980,"X":342,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599466Z"},{"ID":39414,"Name":"Bulowice","Points":8542,"X":542,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599467Z"},{"ID":39415,"Name":"Wioska barbarzyƄska","Points":4354,"X":694,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599467Z"},{"ID":39416,"Name":"SOKzGUMIjagĂłd","Points":9499,"X":648,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599468Z"},{"ID":39417,"Name":"Wioska barbarzyƄska","Points":10475,"X":581,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599469Z"},{"ID":39418,"Name":"C 012","Points":5342,"X":693,"Y":510,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599469Z"},{"ID":39419,"Name":"Jan NEW1 Ost K","Points":9688,"X":688,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59947Z"},{"ID":39420,"Name":"Wioska barbarzyƄska","Points":6405,"X":331,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599471Z"},{"ID":39421,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":659,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599472Z"},{"ID":39422,"Name":"227","Points":6452,"X":414,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599472Z"},{"ID":39423,"Name":"Szlachcic","Points":9924,"X":696,"Y":476,"Continent":"K46","Bonus":8,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599473Z"},{"ID":39424,"Name":"046 invidia","Points":9472,"X":521,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599474Z"},{"ID":39425,"Name":"003","Points":3086,"X":629,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9060885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599474Z"},{"ID":39426,"Name":"SOKzGUMIjagĂłd","Points":10497,"X":647,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599475Z"},{"ID":39427,"Name":"ByƂeƛ w porządku 007","Points":9848,"X":373,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599476Z"},{"ID":39428,"Name":"Out of Touch","Points":9203,"X":316,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599477Z"},{"ID":39429,"Name":"=01=","Points":2120,"X":582,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":9266092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599477Z"},{"ID":39430,"Name":"041.","Points":1587,"X":322,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599478Z"},{"ID":39431,"Name":"Wioska dragonk6","Points":9515,"X":392,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599479Z"},{"ID":39432,"Name":"Dream on","Points":3302,"X":305,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59948Z"},{"ID":39433,"Name":"Domi 7","Points":7789,"X":697,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59948Z"},{"ID":39434,"Name":"010. Natolin","Points":5564,"X":315,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":849098966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599481Z"},{"ID":39435,"Name":"D004","Points":10229,"X":611,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599482Z"},{"ID":39436,"Name":"AAA","Points":10495,"X":625,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599482Z"},{"ID":39437,"Name":"02. George Flinston","Points":10311,"X":550,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599483Z"},{"ID":39438,"Name":"#0295 mastaw","Points":5533,"X":471,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599484Z"},{"ID":39439,"Name":"gĂłrska forteca","Points":9570,"X":682,"Y":426,"Continent":"K46","Bonus":8,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599485Z"},{"ID":39440,"Name":"I091","Points":8865,"X":683,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599485Z"},{"ID":39441,"Name":"Obok sąsiada 5","Points":9575,"X":382,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599486Z"},{"ID":39442,"Name":"Dream on","Points":9742,"X":305,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599487Z"},{"ID":39443,"Name":"Wioska barbarzyƄska","Points":9167,"X":343,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599487Z"},{"ID":39444,"Name":"Wioska barbarzyƄska","Points":8043,"X":526,"Y":309,"Continent":"K35","Bonus":5,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599488Z"},{"ID":39445,"Name":"KRÓL PAPI WIELKI","Points":9369,"X":640,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599489Z"},{"ID":39446,"Name":"xxxx","Points":10435,"X":428,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599489Z"},{"ID":39447,"Name":"Wioska barbarzyƄska","Points":2167,"X":583,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59949Z"},{"ID":39448,"Name":"C02 Gniezno","Points":6287,"X":347,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599491Z"},{"ID":39449,"Name":"Wioska barbarzyƄska","Points":2442,"X":305,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":699510045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599492Z"},{"ID":39450,"Name":"Osada koczownikĂłw","Points":10495,"X":515,"Y":697,"Continent":"K65","Bonus":1,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599492Z"},{"ID":39452,"Name":"Wioska barbarzyƄska","Points":2445,"X":638,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":848973715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599493Z"},{"ID":39453,"Name":"Wioska barbarzyƄska","Points":6466,"X":329,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599494Z"},{"ID":39454,"Name":"Wioska barbarzyƄska","Points":9003,"X":390,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599495Z"},{"ID":39455,"Name":"[28] barbarzyƄska","Points":4745,"X":679,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599495Z"},{"ID":39456,"Name":"TARAN","Points":9248,"X":542,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599496Z"},{"ID":39457,"Name":"Wyspa_25","Points":9638,"X":512,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599497Z"},{"ID":39458,"Name":"EO EO","Points":10252,"X":305,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599497Z"},{"ID":39459,"Name":"START 01","Points":6537,"X":584,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":848887199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599498Z"},{"ID":39460,"Name":"03.Jerry","Points":8963,"X":335,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599499Z"},{"ID":39461,"Name":"Dream on","Points":9559,"X":303,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5995Z"},{"ID":39462,"Name":"!36 64 Tautesti","Points":8763,"X":647,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5995Z"},{"ID":39463,"Name":"B002","Points":10136,"X":518,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599501Z"},{"ID":39464,"Name":"Pd 10","Points":7021,"X":363,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599502Z"},{"ID":39465,"Name":"Wioska barbarzyƄska","Points":8257,"X":565,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599502Z"},{"ID":39466,"Name":"2.Jaen","Points":10051,"X":568,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599503Z"},{"ID":39467,"Name":"Ave Why!","Points":9030,"X":488,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599504Z"},{"ID":39468,"Name":"Taran","Points":10189,"X":333,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599504Z"},{"ID":39469,"Name":"046g","Points":9809,"X":315,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599505Z"},{"ID":39470,"Name":"???","Points":10224,"X":481,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599506Z"},{"ID":39471,"Name":"0000","Points":2840,"X":696,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":112401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599507Z"},{"ID":39472,"Name":"002.Stradi","Points":10495,"X":439,"Y":314,"Continent":"K34","Bonus":2,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599507Z"},{"ID":39474,"Name":"Daleko","Points":9885,"X":649,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599508Z"},{"ID":39475,"Name":"C0074","Points":10362,"X":305,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599509Z"},{"ID":39476,"Name":"skiba","Points":10242,"X":613,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59951Z"},{"ID":39477,"Name":"z181_20","Points":8378,"X":311,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59951Z"},{"ID":39478,"Name":"Dream on","Points":9486,"X":301,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599511Z"},{"ID":39479,"Name":"[0071]","Points":10495,"X":446,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599512Z"},{"ID":39480,"Name":"Padre","Points":3527,"X":671,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849099955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599512Z"},{"ID":39481,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":306,"Y":455,"Continent":"K43","Bonus":6,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599513Z"},{"ID":39482,"Name":"TARAN","Points":9623,"X":542,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599514Z"},{"ID":39483,"Name":"0.14 Szale","Points":9744,"X":466,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599515Z"},{"ID":39484,"Name":"bucksbarzyƄskamiiiru","Points":2442,"X":339,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599515Z"},{"ID":39485,"Name":"podgrzybek","Points":9744,"X":665,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599516Z"},{"ID":39486,"Name":"Winterhome.077","Points":7357,"X":487,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599517Z"},{"ID":39487,"Name":"Ć»UBR .::.Adaczu/14","Points":3305,"X":619,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599517Z"},{"ID":39489,"Name":"045 - Nowy Początek...","Points":7684,"X":375,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599518Z"},{"ID":39490,"Name":"060.Stradi","Points":10346,"X":453,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599519Z"},{"ID":39491,"Name":"Wioska barbarzyƄska","Points":9135,"X":342,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59952Z"},{"ID":39492,"Name":"Szale","Points":9684,"X":458,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59952Z"},{"ID":39493,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":311,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599521Z"},{"ID":39494,"Name":"011","Points":10418,"X":617,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599522Z"},{"ID":39496,"Name":"FAKE OR OFF","Points":9838,"X":411,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599523Z"},{"ID":39497,"Name":"K35 - [010] Before Land","Points":9429,"X":582,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599523Z"},{"ID":39498,"Name":"062.Stradi","Points":10064,"X":454,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599524Z"},{"ID":39499,"Name":"Taran","Points":9959,"X":334,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599525Z"},{"ID":39500,"Name":"Winterhome.010","Points":10178,"X":515,"Y":305,"Continent":"K35","Bonus":8,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599525Z"},{"ID":39501,"Name":"049","Points":6178,"X":485,"Y":401,"Continent":"K44","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599526Z"},{"ID":39502,"Name":"002","Points":7808,"X":631,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599527Z"},{"ID":39503,"Name":"WschĂłd X9","Points":8893,"X":692,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599528Z"},{"ID":39504,"Name":"PoƂudnie.016","Points":9961,"X":554,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599528Z"},{"ID":39505,"Name":"Wioska barbarzyƄska","Points":4584,"X":524,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599529Z"},{"ID":39506,"Name":"Twierdza 3","Points":10232,"X":513,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59953Z"},{"ID":39507,"Name":"C2.","Points":5679,"X":312,"Y":547,"Continent":"K53","Bonus":6,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59953Z"},{"ID":39509,"Name":"--15--","Points":9747,"X":330,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599531Z"},{"ID":39510,"Name":"ProCzacha","Points":9063,"X":516,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599532Z"},{"ID":39511,"Name":"037","Points":10559,"X":655,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599532Z"},{"ID":39512,"Name":"Wioska barbarzyƄska","Points":8871,"X":698,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599533Z"},{"ID":39513,"Name":"TARAN","Points":9623,"X":548,"Y":691,"Continent":"K65","Bonus":2,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599534Z"},{"ID":39514,"Name":"MARTUƚ","Points":4440,"X":649,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":699639122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599535Z"},{"ID":39515,"Name":"Wioska barbarzyƄska","Points":9538,"X":390,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599535Z"},{"ID":39516,"Name":"Dream on","Points":9488,"X":307,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599536Z"},{"ID":39517,"Name":"O107","Points":9717,"X":348,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599537Z"},{"ID":39518,"Name":"#0204 Segadorr dar","Points":6583,"X":459,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599537Z"},{"ID":39519,"Name":"BRZEG JORDANU | 010","Points":4094,"X":696,"Y":524,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599538Z"},{"ID":39520,"Name":"New World","Points":10291,"X":448,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599539Z"},{"ID":39521,"Name":"stickman5555","Points":8627,"X":597,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59954Z"},{"ID":39522,"Name":"269...gulden","Points":9398,"X":460,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59954Z"},{"ID":39523,"Name":"009","Points":9345,"X":316,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849099463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599541Z"},{"ID":39525,"Name":"=|24|=","Points":8630,"X":663,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599542Z"},{"ID":39527,"Name":"ZA17","Points":9835,"X":321,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599542Z"},{"ID":39528,"Name":"TWIERDZA .:066:.","Points":8493,"X":684,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599543Z"},{"ID":39529,"Name":"AG21","Points":9350,"X":592,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599544Z"},{"ID":39530,"Name":"Out of Touch","Points":5993,"X":318,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599545Z"},{"ID":39531,"Name":"Wioska deEdion","Points":9777,"X":364,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":6243588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599545Z"},{"ID":39532,"Name":"C0002","Points":10362,"X":306,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599546Z"},{"ID":39534,"Name":"005 Racecourse","Points":7173,"X":608,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599547Z"},{"ID":39535,"Name":"Wioska barbarzyƄska","Points":5327,"X":318,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599547Z"},{"ID":39536,"Name":"0042","Points":10083,"X":565,"Y":683,"Continent":"K65","Bonus":2,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599548Z"},{"ID":39537,"Name":"053. Lhotse","Points":6349,"X":688,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599549Z"},{"ID":39538,"Name":"Olsztyn","Points":4251,"X":546,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599549Z"},{"ID":39539,"Name":"Taran","Points":10311,"X":341,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59955Z"},{"ID":39540,"Name":"Narnia","Points":5029,"X":587,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":8963720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599551Z"},{"ID":39541,"Name":"Suppi","Points":9740,"X":328,"Y":417,"Continent":"K43","Bonus":9,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599552Z"},{"ID":39542,"Name":"Kleinfeld","Points":2382,"X":379,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849100352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599552Z"},{"ID":39543,"Name":"A 081","Points":3618,"X":350,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599553Z"},{"ID":39545,"Name":"Zeta Reticuli O","Points":11188,"X":417,"Y":323,"Continent":"K34","Bonus":7,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599554Z"},{"ID":39546,"Name":"[0177]","Points":8486,"X":459,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599554Z"},{"ID":39547,"Name":"I096","Points":7168,"X":687,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599556Z"},{"ID":39549,"Name":"Wow20","Points":3125,"X":365,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599556Z"},{"ID":39550,"Name":"#101#","Points":8427,"X":633,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599557Z"},{"ID":39551,"Name":"KRÓL PAPI WIELKI","Points":9599,"X":638,"Y":643,"Continent":"K66","Bonus":2,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599558Z"},{"ID":39552,"Name":"RavkaƄczycy","Points":10019,"X":673,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599558Z"},{"ID":39553,"Name":"024 LittleVenecia","Points":2049,"X":644,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599559Z"},{"ID":39554,"Name":"Szlachcic","Points":9405,"X":381,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59956Z"},{"ID":39555,"Name":"[011]","Points":7071,"X":472,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":849099160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59956Z"},{"ID":39556,"Name":"0.13 Night?","Points":9742,"X":466,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599561Z"},{"ID":39558,"Name":".15. Guerret e","Points":7692,"X":353,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599562Z"},{"ID":39559,"Name":"#BJK","Points":9861,"X":697,"Y":491,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599563Z"},{"ID":39560,"Name":"067","Points":11611,"X":632,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599563Z"},{"ID":39561,"Name":"Wioska barbarzyƄska","Points":9825,"X":695,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599564Z"},{"ID":39562,"Name":"C0086","Points":10191,"X":305,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599565Z"},{"ID":39563,"Name":"z 001029","Points":9405,"X":360,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599565Z"},{"ID":39564,"Name":"DaSpeDa","Points":8115,"X":701,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599566Z"},{"ID":39565,"Name":"[0045]","Points":10495,"X":433,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599567Z"},{"ID":39566,"Name":"PRO8L3M","Points":6106,"X":466,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599568Z"},{"ID":39567,"Name":"*INTERTWINED*","Points":6363,"X":507,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599568Z"},{"ID":39568,"Name":"Swoja8","Points":8577,"X":606,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599569Z"},{"ID":39569,"Name":"B#003","Points":9797,"X":693,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59957Z"},{"ID":39570,"Name":"???","Points":10503,"X":480,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59957Z"},{"ID":39571,"Name":"009 * Lady Porto *","Points":7876,"X":697,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599571Z"},{"ID":39572,"Name":"???","Points":11494,"X":467,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599572Z"},{"ID":39573,"Name":"031 invidia","Points":9994,"X":528,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599572Z"},{"ID":39574,"Name":"Wioska 4","Points":8438,"X":310,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":849075836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599573Z"},{"ID":39575,"Name":"[045] Wioska barbarzyƄska","Points":9681,"X":676,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599574Z"},{"ID":39576,"Name":"C0264","Points":9310,"X":324,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599575Z"},{"ID":39577,"Name":"Bocianikson020","Points":4406,"X":682,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599575Z"},{"ID":39578,"Name":"[0078]","Points":10495,"X":442,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599576Z"},{"ID":39579,"Name":"Wioska barbarzyƄska","Points":10048,"X":338,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599577Z"},{"ID":39580,"Name":"EO EO","Points":10019,"X":308,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599577Z"},{"ID":39581,"Name":"TWIERDZA .:091:.","Points":9430,"X":680,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599578Z"},{"ID":39582,"Name":"Dream on","Points":9488,"X":299,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599579Z"},{"ID":39583,"Name":"06. Santiago","Points":9362,"X":690,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59958Z"},{"ID":39584,"Name":"109","Points":9084,"X":590,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59958Z"},{"ID":39585,"Name":"Wioska Plls","Points":2845,"X":666,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599581Z"},{"ID":39586,"Name":"001","Points":8464,"X":310,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599582Z"},{"ID":39587,"Name":"AAA","Points":9065,"X":542,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599582Z"},{"ID":39588,"Name":"XDX","Points":6829,"X":608,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599583Z"},{"ID":39590,"Name":"079 invidia","Points":7732,"X":526,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599584Z"},{"ID":39592,"Name":"Out of Touch","Points":9745,"X":321,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599585Z"},{"ID":39594,"Name":"C0069","Points":10362,"X":308,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599585Z"},{"ID":39595,"Name":"Ć»UBR .::.Adaczu/15","Points":2293,"X":624,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599586Z"},{"ID":39596,"Name":".08. Silver Gate b","Points":9700,"X":356,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599587Z"},{"ID":39598,"Name":"A 069","Points":5706,"X":362,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599587Z"},{"ID":39599,"Name":"Dream on","Points":9750,"X":301,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599588Z"},{"ID":39600,"Name":"XDX","Points":6163,"X":613,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599589Z"},{"ID":39601,"Name":"Walhalla","Points":9694,"X":564,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59959Z"},{"ID":39602,"Name":"C0006","Points":10362,"X":309,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59959Z"},{"ID":39603,"Name":"AAA","Points":9126,"X":536,"Y":305,"Continent":"K35","Bonus":7,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599591Z"},{"ID":39604,"Name":"z 181-A010","Points":7943,"X":353,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599592Z"},{"ID":39605,"Name":"TWIERDZA .:072:.","Points":7139,"X":681,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599592Z"},{"ID":39606,"Name":"New World","Points":10297,"X":431,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599593Z"},{"ID":39607,"Name":"WB22","Points":3605,"X":327,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599594Z"},{"ID":39608,"Name":"- 167 - SS","Points":9179,"X":549,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599595Z"},{"ID":39609,"Name":"Szlachcic","Points":10083,"X":388,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599595Z"},{"ID":39610,"Name":"C0070","Points":10362,"X":306,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599596Z"},{"ID":39612,"Name":"C0119","Points":10362,"X":301,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599597Z"},{"ID":39614,"Name":"Wioska barbarzyƄska","Points":9825,"X":691,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599597Z"},{"ID":39615,"Name":"bitwa pod grunwaldem","Points":3662,"X":515,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599598Z"},{"ID":39616,"Name":"s181","Points":2706,"X":555,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":7691817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599599Z"},{"ID":39617,"Name":"Suppi","Points":9551,"X":324,"Y":420,"Continent":"K43","Bonus":4,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599599Z"},{"ID":39618,"Name":"Szlachcic","Points":10495,"X":383,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5996Z"},{"ID":39619,"Name":"000 Plutosea","Points":7125,"X":316,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599601Z"},{"ID":39620,"Name":"Didek","Points":10495,"X":680,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599602Z"},{"ID":39621,"Name":"08. Kolorowy Jacuƛ","Points":6883,"X":485,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599603Z"},{"ID":39623,"Name":"ostoja","Points":3905,"X":514,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599603Z"},{"ID":39624,"Name":"C0067","Points":10362,"X":306,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599604Z"},{"ID":39626,"Name":"001","Points":7061,"X":622,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9060885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599605Z"},{"ID":39627,"Name":"Aleksandria","Points":8499,"X":305,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599605Z"},{"ID":39628,"Name":"Wioska Seba1234567","Points":7629,"X":674,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":849099689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599606Z"},{"ID":39629,"Name":"psycha sitting","Points":10178,"X":408,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599607Z"},{"ID":39630,"Name":"Wioska barbarzyƄska","Points":5272,"X":628,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599608Z"},{"ID":39631,"Name":"D007","Points":3604,"X":610,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599608Z"},{"ID":39632,"Name":"011 Feinster","Points":10083,"X":663,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599609Z"},{"ID":39633,"Name":"Klaudek.17","Points":4843,"X":634,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59961Z"},{"ID":39634,"Name":"Wioska Zorro 018","Points":9656,"X":676,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59961Z"},{"ID":39636,"Name":"006","Points":6467,"X":304,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599611Z"},{"ID":39637,"Name":"PiekƂo to inni","Points":2863,"X":590,"Y":329,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599612Z"},{"ID":39638,"Name":"Taran","Points":9955,"X":334,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599613Z"},{"ID":39639,"Name":"Szlachcic","Points":10487,"X":379,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599613Z"},{"ID":39640,"Name":"Wioska barbarzyƄska","Points":5175,"X":667,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599614Z"},{"ID":39641,"Name":"Ardea","Points":12130,"X":344,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599615Z"},{"ID":39642,"Name":"EO EO","Points":10160,"X":303,"Y":513,"Continent":"K53","Bonus":7,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599615Z"},{"ID":39643,"Name":"Wioska barbarzyƄska","Points":10028,"X":539,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599616Z"},{"ID":39644,"Name":"Wioska barbarzyƄska","Points":10476,"X":581,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599617Z"},{"ID":39645,"Name":"55. KaruTown","Points":8086,"X":694,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599617Z"},{"ID":39646,"Name":"Wioska barbarzyƄska 2","Points":6357,"X":599,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599618Z"},{"ID":39648,"Name":"Wioska barbarzyƄska","Points":6239,"X":378,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599619Z"},{"ID":39649,"Name":"Sernik z Andzynkami","Points":9744,"X":696,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59962Z"},{"ID":39650,"Name":"szlon 2","Points":10111,"X":302,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599621Z"},{"ID":39651,"Name":"Dream on","Points":8461,"X":303,"Y":486,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599621Z"},{"ID":39652,"Name":"B.00 duchy serca puszczy","Points":9976,"X":554,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599622Z"},{"ID":39653,"Name":"0006","Points":9268,"X":424,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599623Z"},{"ID":39654,"Name":"Wioska barbarzyƄska","Points":8813,"X":695,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599623Z"},{"ID":39655,"Name":"Wioska barbarzyƄska","Points":3616,"X":579,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599624Z"},{"ID":39656,"Name":"Wioska barbarzyƄska","Points":6631,"X":464,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599625Z"},{"ID":39657,"Name":"33.Termopile","Points":10201,"X":352,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599625Z"},{"ID":39658,"Name":"Jedna Jedyna :D","Points":10495,"X":635,"Y":354,"Continent":"K36","Bonus":2,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599626Z"},{"ID":39659,"Name":"~080.","Points":3069,"X":468,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599627Z"},{"ID":39660,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":655,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599628Z"},{"ID":39661,"Name":"#100#","Points":8058,"X":630,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599628Z"},{"ID":39662,"Name":"Taran","Points":10311,"X":342,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599629Z"},{"ID":39663,"Name":"023","Points":3483,"X":398,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59963Z"},{"ID":39664,"Name":"- 130 - SS","Points":10000,"X":541,"Y":692,"Continent":"K65","Bonus":3,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59963Z"},{"ID":39665,"Name":"Wioska barbarzyƄska","Points":4560,"X":629,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599631Z"},{"ID":39666,"Name":"New Land 05","Points":3821,"X":337,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599632Z"},{"ID":39667,"Name":"@09@","Points":4924,"X":409,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599633Z"},{"ID":39668,"Name":"056. UrsynĂłw","Points":10252,"X":695,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599633Z"},{"ID":39670,"Name":"- Bracadabra -","Points":7481,"X":661,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599634Z"},{"ID":39671,"Name":"Szulernia","Points":4243,"X":379,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599635Z"},{"ID":39672,"Name":"MojeDnoToWaszSzczyt","Points":9987,"X":496,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599636Z"},{"ID":39673,"Name":"New World","Points":7323,"X":435,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599636Z"},{"ID":39674,"Name":"ByƂeƛ w porządku 004","Points":10310,"X":370,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599637Z"},{"ID":39675,"Name":"psycha sitting","Points":10178,"X":424,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599638Z"},{"ID":39676,"Name":"Bekon","Points":7146,"X":624,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599638Z"},{"ID":39677,"Name":"Dream on","Points":6635,"X":308,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599639Z"},{"ID":39678,"Name":"komandos48","Points":3710,"X":500,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59964Z"},{"ID":39679,"Name":"Wioska PavloGS","Points":4135,"X":648,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":699639122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59964Z"},{"ID":39680,"Name":"D011","Points":9420,"X":613,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599641Z"},{"ID":39681,"Name":"Wioska barbarzyƄska","Points":1859,"X":395,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599642Z"},{"ID":39682,"Name":"a moĆŒe off ? :)","Points":8251,"X":674,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599643Z"},{"ID":39683,"Name":"Jan 002/### Ost","Points":8331,"X":690,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599643Z"},{"ID":39684,"Name":"- 170 - SS","Points":8994,"X":554,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599644Z"},{"ID":39685,"Name":"boh81/111","Points":9601,"X":305,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599645Z"},{"ID":39686,"Name":"Wioska barbarzyƄska","Points":4938,"X":395,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599645Z"},{"ID":39687,"Name":"--16--","Points":10220,"X":337,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599646Z"},{"ID":39688,"Name":"R 032 ~KrĂłlestwo Polskie~","Points":8652,"X":496,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599647Z"},{"ID":39689,"Name":"Out of Touch","Points":8750,"X":324,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599648Z"},{"ID":39690,"Name":"New World","Points":10297,"X":433,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599648Z"},{"ID":39691,"Name":"Ob Konfederacja","Points":9774,"X":424,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599649Z"},{"ID":39692,"Name":"Not 2 Day","Points":9782,"X":477,"Y":307,"Continent":"K34","Bonus":6,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59965Z"},{"ID":39693,"Name":"Szlachcic","Points":10495,"X":380,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599651Z"},{"ID":39694,"Name":"bucksbarzyƄskamiiiru","Points":8697,"X":330,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599651Z"},{"ID":39695,"Name":"003. Wehrmacht","Points":10411,"X":335,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599652Z"},{"ID":39696,"Name":"???","Points":9837,"X":490,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599653Z"},{"ID":39697,"Name":"#0163 Kamil0ss1","Points":9860,"X":469,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599654Z"},{"ID":39698,"Name":"bucksbarzyƄskamiiiru","Points":2169,"X":335,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599654Z"},{"ID":39699,"Name":"z internacionale 01qqqqqqqqqqqqq","Points":9972,"X":354,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599655Z"},{"ID":39700,"Name":"KRÓL PAPI WIELKI","Points":9881,"X":649,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599656Z"},{"ID":39701,"Name":"01. Tokio","Points":11063,"X":690,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599656Z"},{"ID":39703,"Name":"Gattacka","Points":9169,"X":679,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599657Z"},{"ID":39704,"Name":"0046","Points":3865,"X":570,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599658Z"},{"ID":39705,"Name":"002","Points":9188,"X":659,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599659Z"},{"ID":39707,"Name":"~069.","Points":6737,"X":528,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599659Z"},{"ID":39708,"Name":"Wioska Zorro 008","Points":12154,"X":668,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59966Z"},{"ID":39709,"Name":"A7.","Points":4338,"X":310,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599661Z"},{"ID":39710,"Name":"TWIERDZA .:044:.","Points":10359,"X":683,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599661Z"},{"ID":39711,"Name":"A000","Points":11321,"X":472,"Y":697,"Continent":"K64","Bonus":6,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599662Z"},{"ID":39712,"Name":"Wyspa_39","Points":9638,"X":501,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599663Z"},{"ID":39713,"Name":"003","Points":2774,"X":590,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599663Z"},{"ID":39714,"Name":"D.035","Points":3860,"X":393,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599664Z"},{"ID":39715,"Name":"psycha sitting","Points":10311,"X":456,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599665Z"},{"ID":39716,"Name":"psycha sitting","Points":6398,"X":399,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599666Z"},{"ID":39717,"Name":"Wyspa_21","Points":9638,"X":507,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599666Z"},{"ID":39718,"Name":"036 - Nowy Początek...","Points":9604,"X":376,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599667Z"},{"ID":39719,"Name":"Wioska barbarzyƄska","Points":6296,"X":351,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599668Z"},{"ID":39720,"Name":"North zeuswielki65","Points":2624,"X":412,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599669Z"},{"ID":39721,"Name":"Wioska barbarzyƄska","Points":3717,"X":327,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599669Z"},{"ID":39722,"Name":"002","Points":9828,"X":685,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59967Z"},{"ID":39723,"Name":"K35 - [011] Before Land","Points":9783,"X":582,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599671Z"},{"ID":39724,"Name":"~~049~~","Points":9569,"X":606,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599671Z"},{"ID":39725,"Name":"010","Points":9835,"X":690,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599672Z"},{"ID":39726,"Name":"18.NCT","Points":9821,"X":682,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599673Z"},{"ID":39727,"Name":"Forteca*006*","Points":7566,"X":532,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599674Z"},{"ID":39728,"Name":"K35 - [039] Before Land","Points":5784,"X":583,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599674Z"},{"ID":39729,"Name":"0025. Y -","Points":4214,"X":695,"Y":535,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599675Z"},{"ID":39730,"Name":"Wioska barbarzyƄska","Points":5920,"X":592,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599676Z"},{"ID":39731,"Name":"2.MatarĂł","Points":6476,"X":564,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599676Z"},{"ID":39732,"Name":"Taran","Points":10300,"X":339,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599677Z"},{"ID":39733,"Name":"Sernik z Andzynkami","Points":9825,"X":696,"Y":494,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599678Z"},{"ID":39734,"Name":"psycha sitting","Points":10178,"X":405,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599678Z"},{"ID":39735,"Name":"ZZZ","Points":4066,"X":455,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599679Z"},{"ID":39736,"Name":"psycha sitting","Points":10311,"X":406,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59968Z"},{"ID":39737,"Name":"*015*","Points":10211,"X":346,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599681Z"},{"ID":39738,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":314,"Y":455,"Continent":"K43","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599681Z"},{"ID":39739,"Name":"Dream on","Points":9747,"X":303,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599682Z"},{"ID":39740,"Name":"Swoja9","Points":8621,"X":605,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599683Z"},{"ID":39741,"Name":"Niklowy grĂłd","Points":7601,"X":320,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599683Z"},{"ID":39742,"Name":"I102","Points":7861,"X":684,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599684Z"},{"ID":39743,"Name":"@01@","Points":10026,"X":407,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599685Z"},{"ID":39744,"Name":"Wioska barbarzyƄska","Points":3649,"X":311,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":848901396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599686Z"},{"ID":39745,"Name":"Winterhome.061","Points":10099,"X":492,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599686Z"},{"ID":39746,"Name":"--17--","Points":9128,"X":328,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599687Z"},{"ID":39747,"Name":"a moĆŒe off ? :)","Points":7971,"X":673,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599688Z"},{"ID":39748,"Name":"D019","Points":985,"X":622,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599688Z"},{"ID":39749,"Name":"2.Leon","Points":3780,"X":571,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599689Z"},{"ID":39750,"Name":"Osada 002","Points":10178,"X":400,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":848912772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59969Z"},{"ID":39751,"Name":"003","Points":9661,"X":659,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59969Z"},{"ID":39752,"Name":"Ć»UBR .::.Adaczu/16","Points":3442,"X":624,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599691Z"},{"ID":39753,"Name":"*022*","Points":9108,"X":686,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599692Z"},{"ID":39754,"Name":"D008","Points":10056,"X":611,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599693Z"},{"ID":39755,"Name":"Wioska barbarzyƄska","Points":7273,"X":334,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599693Z"},{"ID":39756,"Name":"C0091","Points":10362,"X":302,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599694Z"},{"ID":39757,"Name":"Wioska barbarzyƄska","Points":4871,"X":651,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599695Z"},{"ID":39758,"Name":"Wioska barbarzyƄskam dol","Points":9899,"X":394,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599696Z"},{"ID":39759,"Name":"0006 Sir JuriGagarin","Points":10495,"X":442,"Y":691,"Continent":"K64","Bonus":4,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599696Z"},{"ID":39760,"Name":"004","Points":10297,"X":697,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599697Z"},{"ID":39761,"Name":"[0061]","Points":10495,"X":447,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599698Z"},{"ID":39762,"Name":"#0166 Kamil0ss1","Points":10178,"X":471,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599698Z"},{"ID":39763,"Name":"Kobior","Points":8529,"X":418,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":849072873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599699Z"},{"ID":39764,"Name":"- 03 - Nowe","Points":8154,"X":467,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":848902744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5997Z"},{"ID":39765,"Name":"daleko","Points":8631,"X":664,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599701Z"},{"ID":39766,"Name":"1 CZĘSTOCHOWA","Points":9704,"X":303,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599701Z"},{"ID":39767,"Name":"033","Points":10019,"X":456,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599702Z"},{"ID":39768,"Name":"(027)Steen","Points":3721,"X":322,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599703Z"},{"ID":39769,"Name":"Wioska barbarzyƄska","Points":5565,"X":476,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599703Z"},{"ID":39770,"Name":"New World","Points":10292,"X":425,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599704Z"},{"ID":39771,"Name":"WioSTa barbarzyƄska","Points":7136,"X":691,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599705Z"},{"ID":39772,"Name":"???","Points":10160,"X":484,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599706Z"},{"ID":39773,"Name":"New World","Points":6303,"X":432,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599706Z"},{"ID":39774,"Name":"nr1","Points":11077,"X":584,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599707Z"},{"ID":39775,"Name":"AAA","Points":3152,"X":560,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599708Z"},{"ID":39776,"Name":"MojeDnoToWaszSzczyt","Points":9714,"X":505,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599708Z"},{"ID":39777,"Name":"#0266 Gwen1","Points":6211,"X":474,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599709Z"},{"ID":39778,"Name":"Kokosanka","Points":5479,"X":678,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59971Z"},{"ID":39779,"Name":"C0007","Points":10362,"X":309,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599711Z"},{"ID":39780,"Name":"Rubiez11","Points":6883,"X":310,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599711Z"},{"ID":39781,"Name":"Darma dla zawodnika","Points":9805,"X":515,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599712Z"},{"ID":39782,"Name":"B#004","Points":9797,"X":690,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599713Z"},{"ID":39783,"Name":"40. KaruTown","Points":9735,"X":692,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599714Z"},{"ID":39784,"Name":"Sernik z Andzynkami","Points":9797,"X":696,"Y":500,"Continent":"K56","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599714Z"},{"ID":39785,"Name":"Ramdzis12","Points":7639,"X":683,"Y":420,"Continent":"K46","Bonus":4,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599715Z"},{"ID":39786,"Name":"010","Points":3160,"X":309,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599716Z"},{"ID":39787,"Name":"#016. Christmas Tree","Points":9448,"X":445,"Y":684,"Continent":"K64","Bonus":9,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599716Z"},{"ID":39788,"Name":"A 043","Points":4729,"X":365,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599717Z"},{"ID":39789,"Name":"Didek","Points":5585,"X":677,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599718Z"},{"ID":39790,"Name":"006","Points":10311,"X":696,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599718Z"},{"ID":39791,"Name":"019# Serena","Points":10028,"X":481,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599719Z"},{"ID":39792,"Name":"Bogine","Points":9556,"X":676,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59972Z"},{"ID":39793,"Name":"Z 002 DzierĆŒoniĂłw","Points":9654,"X":328,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599721Z"},{"ID":39795,"Name":"Merida.waleczna","Points":5802,"X":593,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":849083294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599721Z"},{"ID":39796,"Name":"000 Plutosea","Points":10068,"X":318,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599722Z"},{"ID":39797,"Name":"???","Points":10160,"X":486,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599723Z"},{"ID":39798,"Name":"01.wiocha","Points":10203,"X":332,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599723Z"},{"ID":39799,"Name":"022","Points":9655,"X":698,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599724Z"},{"ID":39801,"Name":"6.C","Points":9161,"X":453,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599725Z"},{"ID":39802,"Name":"Wioska l","Points":12154,"X":321,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599725Z"},{"ID":39803,"Name":"C0120","Points":10490,"X":307,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599726Z"},{"ID":39804,"Name":"001","Points":10063,"X":585,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599727Z"},{"ID":39805,"Name":"Wioska barbarzyƄska","Points":4208,"X":634,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599728Z"},{"ID":39806,"Name":"B7.","Points":2712,"X":311,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599728Z"},{"ID":39807,"Name":"C.014","Points":4346,"X":700,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599729Z"},{"ID":39808,"Name":"027 Barba 9","Points":3614,"X":306,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59973Z"},{"ID":39809,"Name":"C0139","Points":10362,"X":312,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59973Z"},{"ID":39810,"Name":"1 IgnacĂłw","Points":8535,"X":302,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599731Z"},{"ID":39811,"Name":"bucksbarzyƄskamiiiru","Points":7362,"X":333,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599732Z"},{"ID":39812,"Name":"Wioska barbarzyƄska","Points":4182,"X":396,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599733Z"},{"ID":39813,"Name":"0171","Points":10216,"X":372,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599733Z"},{"ID":39814,"Name":"Gattacka","Points":9741,"X":689,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599734Z"},{"ID":39815,"Name":"Ziomek Vampirki:)","Points":10495,"X":681,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599735Z"},{"ID":39816,"Name":"FAKE OR OFF","Points":10068,"X":409,"Y":328,"Continent":"K34","Bonus":4,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599735Z"},{"ID":39817,"Name":"D002","Points":10226,"X":610,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599736Z"},{"ID":39818,"Name":"@07@","Points":7068,"X":407,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599737Z"},{"ID":39819,"Name":"C0078","Points":10362,"X":303,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599738Z"},{"ID":39820,"Name":"KRÓL PAPI WIELKI","Points":6294,"X":695,"Y":517,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599739Z"},{"ID":39821,"Name":"Wioska barbarzyƄska","Points":2497,"X":581,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599739Z"},{"ID":39822,"Name":"Komornicy 015","Points":4023,"X":349,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59974Z"},{"ID":39823,"Name":"Wioska barbarzyƄska","Points":5323,"X":457,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599741Z"},{"ID":39824,"Name":"056","Points":8810,"X":514,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599742Z"},{"ID":39825,"Name":"kamilkaze135 #06","Points":9805,"X":661,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599742Z"},{"ID":39826,"Name":"C0141","Points":10362,"X":313,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599743Z"},{"ID":39827,"Name":"123 invidia","Points":7349,"X":514,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599744Z"},{"ID":39828,"Name":"A 035","Points":8422,"X":363,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599744Z"},{"ID":39829,"Name":"Wioska barbarzyƄska","Points":10048,"X":338,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599745Z"},{"ID":39830,"Name":"Poiuytrewas","Points":12154,"X":566,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699733098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599746Z"},{"ID":39831,"Name":"AAA","Points":9721,"X":546,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599747Z"},{"ID":39832,"Name":"C.010","Points":10003,"X":700,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599747Z"},{"ID":39834,"Name":"Wioska barbarzyƄska","Points":6544,"X":327,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599748Z"},{"ID":39835,"Name":"z. Lecimy tu","Points":10165,"X":355,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599749Z"},{"ID":39836,"Name":"022 Fervex","Points":1700,"X":644,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599749Z"},{"ID":39837,"Name":"Oslandia","Points":5592,"X":379,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849099864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59975Z"},{"ID":39838,"Name":"Mroczny Zamek 018","Points":10058,"X":352,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599751Z"},{"ID":39839,"Name":"Moldor 6","Points":11215,"X":633,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599752Z"},{"ID":39840,"Name":"z internacionale 008","Points":12154,"X":351,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599752Z"},{"ID":39841,"Name":"AAA","Points":9112,"X":538,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599753Z"},{"ID":39842,"Name":"Szale","Points":9770,"X":462,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599754Z"},{"ID":39843,"Name":"Wioska barbarzyƄska","Points":9825,"X":698,"Y":479,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599754Z"},{"ID":39844,"Name":"001","Points":6670,"X":383,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599755Z"},{"ID":39845,"Name":"#090#","Points":9386,"X":631,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599756Z"},{"ID":39846,"Name":"Wioska barbarzyƄska","Points":3786,"X":309,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599756Z"},{"ID":39847,"Name":"B.07 duchy serca puszczy","Points":3210,"X":554,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599757Z"},{"ID":39848,"Name":"007","Points":5654,"X":313,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":8153179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599758Z"},{"ID":39849,"Name":"BRZEG JORDANU | 003","Points":6406,"X":694,"Y":525,"Continent":"K56","Bonus":6,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599759Z"},{"ID":39850,"Name":"Twierdza 5","Points":7080,"X":509,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599759Z"},{"ID":39851,"Name":"005","Points":9761,"X":698,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59976Z"},{"ID":39852,"Name":"Zimowe Majtki","Points":2727,"X":310,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":849074508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599761Z"},{"ID":39853,"Name":"[001][Chec IT]","Points":9896,"X":606,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599762Z"},{"ID":39854,"Name":"Wioska barbarzyƄska","Points":745,"X":400,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599762Z"},{"ID":39855,"Name":"021","Points":6648,"X":679,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599763Z"},{"ID":39857,"Name":"[0041] XXX","Points":10495,"X":437,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599764Z"},{"ID":39858,"Name":"Psycho to Marka, Narka !","Points":9711,"X":318,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599764Z"},{"ID":39859,"Name":"z 181-A011","Points":6073,"X":353,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599765Z"},{"ID":39860,"Name":"- Dracabra -","Points":6512,"X":657,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599766Z"},{"ID":39861,"Name":"Wioska barbarzyƄska","Points":2826,"X":655,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599767Z"},{"ID":39863,"Name":"Tu jest przyszƂoƛć","Points":7539,"X":661,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599767Z"},{"ID":39865,"Name":"psycha sitting","Points":8129,"X":397,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599768Z"},{"ID":39867,"Name":"KRÓL PAPI WIELKI","Points":9849,"X":639,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599769Z"},{"ID":39868,"Name":"038. Wioska barbarzyƄska","Points":10237,"X":696,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599769Z"},{"ID":39869,"Name":"036Teatr","Points":6045,"X":476,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59977Z"},{"ID":39870,"Name":"***** ***","Points":3085,"X":564,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":9091557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599771Z"},{"ID":39871,"Name":"komandos48","Points":5079,"X":499,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599771Z"},{"ID":39872,"Name":"8_Franekkimono510_8","Points":3822,"X":364,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599772Z"},{"ID":39873,"Name":"032","Points":9911,"X":453,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599773Z"},{"ID":39874,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":305,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599774Z"},{"ID":39875,"Name":"Dream on","Points":9744,"X":306,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599774Z"},{"ID":39876,"Name":"Wioska barbarzyƄska","Points":6190,"X":671,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599775Z"},{"ID":39877,"Name":"Wyspa_34","Points":9638,"X":506,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599776Z"},{"ID":39878,"Name":"AAA","Points":8941,"X":551,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599776Z"},{"ID":39879,"Name":"*030*","Points":5071,"X":684,"Y":442,"Continent":"K46","Bonus":0,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599777Z"},{"ID":39880,"Name":"B026","Points":7111,"X":514,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599778Z"},{"ID":39881,"Name":"001","Points":10019,"X":700,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599779Z"},{"ID":39882,"Name":"Ananasowy GrĂłd","Points":4412,"X":627,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599779Z"},{"ID":39883,"Name":"Out of Touch","Points":1439,"X":315,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59978Z"},{"ID":39884,"Name":"z 181-A012","Points":7775,"X":353,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599781Z"},{"ID":39885,"Name":"Wioska orkakk","Points":10097,"X":335,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599781Z"},{"ID":39886,"Name":"Barbara","Points":6348,"X":613,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599782Z"},{"ID":39887,"Name":"016","Points":9522,"X":309,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599783Z"},{"ID":39888,"Name":"Zeta Reticuli O","Points":10997,"X":415,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599784Z"},{"ID":39889,"Name":"Zeta Reticuli O","Points":10465,"X":413,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599784Z"},{"ID":39890,"Name":"Wioska barbarzyƄska","Points":9066,"X":587,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599785Z"},{"ID":39891,"Name":"Wioska barbarzyƄska","Points":9102,"X":672,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599786Z"},{"ID":39892,"Name":"014 * Lady Porto *","Points":6178,"X":692,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599787Z"},{"ID":39893,"Name":"Czaniec","Points":4409,"X":541,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599787Z"},{"ID":39894,"Name":"Osada koczownikĂłw","Points":5577,"X":329,"Y":586,"Continent":"K53","Bonus":6,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599788Z"},{"ID":39896,"Name":"bucksbarzyƄskamiiiru","Points":5694,"X":331,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599789Z"},{"ID":39897,"Name":"015 nie wiem czy bylo warto","Points":10237,"X":513,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59979Z"},{"ID":39898,"Name":"A000","Points":9473,"X":470,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59979Z"},{"ID":39899,"Name":"054. F64D","Points":9206,"X":486,"Y":632,"Continent":"K64","Bonus":0,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599791Z"},{"ID":39900,"Name":"Wioska barbarzyƄska","Points":4517,"X":459,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599792Z"},{"ID":39901,"Name":"[056] ????","Points":7027,"X":683,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599792Z"},{"ID":39902,"Name":"Wioska","Points":4960,"X":548,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599793Z"},{"ID":39903,"Name":"P|002|","Points":7421,"X":454,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599794Z"},{"ID":39904,"Name":"z181_02","Points":9882,"X":313,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599795Z"},{"ID":39905,"Name":"0282","Points":9124,"X":567,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599795Z"},{"ID":39906,"Name":"034","Points":9825,"X":478,"Y":629,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599796Z"},{"ID":39907,"Name":"Mroczny Zamek 024","Points":5967,"X":353,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599797Z"},{"ID":39908,"Name":"[0113]","Points":10290,"X":438,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599797Z"},{"ID":39909,"Name":"014 NAWRA","Points":8339,"X":660,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599798Z"},{"ID":39910,"Name":"???","Points":5590,"X":464,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599799Z"},{"ID":39911,"Name":"::: WEST :::","Points":4156,"X":305,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599799Z"},{"ID":39912,"Name":"004 * Lady Porto *","Points":12154,"X":691,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.5998Z"},{"ID":39913,"Name":"psycha sitting","Points":10311,"X":415,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599801Z"},{"ID":39915,"Name":"Dream on","Points":4374,"X":305,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599802Z"},{"ID":39916,"Name":"kamilkaze135 #02.1","Points":6617,"X":657,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599802Z"},{"ID":39917,"Name":"003","Points":10008,"X":700,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599803Z"},{"ID":39918,"Name":"047","Points":9902,"X":477,"Y":626,"Continent":"K64","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599804Z"},{"ID":39919,"Name":"Taran","Points":10291,"X":325,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599804Z"},{"ID":39920,"Name":"###055###","Points":10495,"X":590,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599805Z"},{"ID":39921,"Name":"C109","Points":4250,"X":366,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599806Z"},{"ID":39923,"Name":"011","Points":6650,"X":634,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599807Z"},{"ID":39924,"Name":"#027#","Points":9761,"X":616,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599807Z"},{"ID":39925,"Name":"XDX","Points":7729,"X":609,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599808Z"},{"ID":39926,"Name":"Wioska barbarzyƄska","Points":9355,"X":390,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599809Z"},{"ID":39927,"Name":"B.01 duchy serca puszczy","Points":7772,"X":554,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599809Z"},{"ID":39929,"Name":"SOKzGUMIjagĂłd","Points":9568,"X":647,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59981Z"},{"ID":39930,"Name":"010 * Lady Porto *","Points":7673,"X":695,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599811Z"},{"ID":39931,"Name":"New World","Points":10291,"X":436,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599812Z"},{"ID":39932,"Name":"KRÓL PAPI WIELKI","Points":9853,"X":637,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599812Z"},{"ID":39933,"Name":"033","Points":3729,"X":312,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599813Z"},{"ID":39934,"Name":"Wioska Sir Lewan","Points":9069,"X":663,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":2362058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599814Z"},{"ID":39935,"Name":"005 * Lady Porto *","Points":12135,"X":695,"Y":506,"Continent":"K56","Bonus":3,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599814Z"},{"ID":39936,"Name":"Gattacka","Points":9160,"X":688,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599815Z"},{"ID":39938,"Name":"044 InnyNizWszyscy","Points":10001,"X":536,"Y":387,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599816Z"},{"ID":39939,"Name":"Szlachcic","Points":10481,"X":397,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599817Z"},{"ID":39940,"Name":"Szlachcic !!!","Points":9621,"X":506,"Y":476,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599817Z"},{"ID":39941,"Name":"Wioska barbarzyƄska","Points":3951,"X":631,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599818Z"},{"ID":39942,"Name":"TWIERDZA .:020:.","Points":10355,"X":684,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599819Z"},{"ID":39943,"Name":"!36 63 Nicani","Points":10336,"X":636,"Y":364,"Continent":"K36","Bonus":6,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599819Z"},{"ID":39944,"Name":"033 barbarzyƄska","Points":7821,"X":638,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59982Z"},{"ID":39945,"Name":"Zagroda","Points":8419,"X":603,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599821Z"},{"ID":39946,"Name":"Wioska barbarzyƄska","Points":3195,"X":651,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599822Z"},{"ID":39947,"Name":"okk","Points":9800,"X":654,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599822Z"},{"ID":39948,"Name":"Taran","Points":9956,"X":335,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599823Z"},{"ID":39949,"Name":"OrzeƂ 7","Points":6272,"X":696,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599824Z"},{"ID":39950,"Name":"[004] Shitstorm!","Points":10495,"X":686,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599824Z"},{"ID":39951,"Name":"!36 74 Costisa","Points":9860,"X":648,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599825Z"},{"ID":39952,"Name":"Wioska barbarzyƄska","Points":8895,"X":691,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599826Z"},{"ID":39953,"Name":"Szlachcic","Points":6468,"X":377,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599827Z"},{"ID":39954,"Name":"FENDI","Points":5582,"X":311,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599827Z"},{"ID":39955,"Name":"Zeta Reticuli O","Points":10997,"X":418,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599828Z"},{"ID":39956,"Name":"AndrychĂłw","Points":6861,"X":541,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599829Z"},{"ID":39957,"Name":"FP012","Points":10201,"X":479,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599829Z"},{"ID":39958,"Name":"B003","Points":10019,"X":518,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59983Z"},{"ID":39959,"Name":"B.09 duchy serca puszczy","Points":2276,"X":552,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599831Z"},{"ID":39960,"Name":"Wioska barbarzyƄska","Points":9485,"X":387,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599832Z"},{"ID":39961,"Name":"009. BiaƂoƂęka","Points":10237,"X":693,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599832Z"},{"ID":39963,"Name":"=|21|=","Points":10495,"X":666,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599833Z"},{"ID":39964,"Name":"!!36 85 Dumbravei","Points":8782,"X":658,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599834Z"},{"ID":39965,"Name":"Wioska 073","Points":9761,"X":663,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599834Z"},{"ID":39966,"Name":"0.15 Szale","Points":9462,"X":468,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599835Z"},{"ID":39967,"Name":"Wioska barbarzyƄska","Points":8454,"X":530,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599836Z"},{"ID":39968,"Name":"###056###","Points":10495,"X":595,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599837Z"},{"ID":39969,"Name":"C0193","Points":6565,"X":302,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599837Z"},{"ID":39970,"Name":"KRÓL PAPI WIELKI","Points":10566,"X":654,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599838Z"},{"ID":39971,"Name":"005.Stradi","Points":10495,"X":441,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599839Z"},{"ID":39972,"Name":"089 invidia","Points":8252,"X":516,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599839Z"},{"ID":39973,"Name":"Wioska barbarzyƄska","Points":3463,"X":309,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59984Z"},{"ID":39974,"Name":"psycha sitting","Points":10311,"X":401,"Y":668,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599841Z"},{"ID":39975,"Name":"050. Wioska barbarzyƄska","Points":9850,"X":691,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599842Z"},{"ID":39976,"Name":"Wioska Wiki 7","Points":7042,"X":527,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599842Z"},{"ID":39977,"Name":"Boh81/01s","Points":9198,"X":306,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599843Z"},{"ID":39978,"Name":"Wioska barbarzyƄska","Points":4014,"X":684,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599844Z"},{"ID":39979,"Name":"008","Points":9885,"X":687,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599844Z"},{"ID":39980,"Name":"Forteca*005*","Points":9192,"X":534,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599845Z"},{"ID":39981,"Name":"043. Night Raid","Points":7083,"X":489,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599846Z"},{"ID":39982,"Name":"#088#","Points":9761,"X":619,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599846Z"},{"ID":39983,"Name":"023# Xenia","Points":5237,"X":488,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599847Z"},{"ID":39984,"Name":"011 * Lady Porto *","Points":5653,"X":691,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599848Z"},{"ID":39985,"Name":"042. Night Raid","Points":5058,"X":489,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599849Z"},{"ID":39986,"Name":"R 029 ~Rivendell~","Points":10019,"X":495,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599849Z"},{"ID":39987,"Name":"033# Zoe","Points":4230,"X":483,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.59985Z"},{"ID":39988,"Name":"WB10","Points":6333,"X":323,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599851Z"},{"ID":39989,"Name":"xzc","Points":8484,"X":498,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599851Z"},{"ID":39990,"Name":"Wioska barbarzyƄska","Points":8899,"X":316,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599852Z"},{"ID":39991,"Name":"Wioska Adam19955","Points":8612,"X":444,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849048562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599853Z"},{"ID":39992,"Name":"023","Points":9014,"X":699,"Y":516,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.599854Z"},{"ID":39993,"Name":"Wow3","Points":12154,"X":372,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632915Z"},{"ID":39994,"Name":"052. Kaczendzonga","Points":7724,"X":691,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632916Z"},{"ID":39995,"Name":"Kotlarka","Points":8285,"X":574,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632916Z"},{"ID":39996,"Name":"Wioska barbarzyƄska","Points":1978,"X":409,"Y":331,"Continent":"K34","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632917Z"},{"ID":39997,"Name":"Wioska KATOZAUR","Points":10452,"X":495,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632917Z"},{"ID":39998,"Name":"Wioska barbarzyƄska","Points":8205,"X":689,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632918Z"},{"ID":39999,"Name":"0013","Points":7919,"X":423,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632918Z"},{"ID":40000,"Name":"Dream on","Points":4008,"X":304,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632919Z"},{"ID":40001,"Name":"Darma dla zawodnika","Points":6243,"X":513,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63292Z"},{"ID":40002,"Name":"054. Likawitos","Points":7205,"X":690,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63292Z"},{"ID":40003,"Name":"BRZEG JORDANU | 007","Points":4360,"X":692,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632921Z"},{"ID":40004,"Name":"030 - Nowy Początek...","Points":9947,"X":375,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632921Z"},{"ID":40005,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9835,"X":472,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632922Z"},{"ID":40006,"Name":"004","Points":9214,"X":657,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632922Z"},{"ID":40007,"Name":"R 031","Points":8850,"X":494,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632923Z"},{"ID":40008,"Name":"A 075","Points":4525,"X":362,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632924Z"},{"ID":40009,"Name":"village 2","Points":8819,"X":646,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632924Z"},{"ID":40010,"Name":"::: W ::: II","Points":2871,"X":304,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632925Z"},{"ID":40011,"Name":"#Hiroszima","Points":2313,"X":315,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":849099601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632925Z"},{"ID":40012,"Name":"New World","Points":10295,"X":441,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632926Z"},{"ID":40013,"Name":"Wioska 7","Points":1915,"X":643,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632926Z"},{"ID":40014,"Name":"008 NAWRA","Points":8921,"X":659,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632927Z"},{"ID":40015,"Name":"051. Wioska barbarzyƄska","Points":9777,"X":694,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632928Z"},{"ID":40016,"Name":"Stegny","Points":7206,"X":369,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632928Z"},{"ID":40017,"Name":"MojeDnoToWaszSzczyt","Points":9972,"X":500,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632929Z"},{"ID":40018,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":655,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632929Z"},{"ID":40019,"Name":"MojeDnoToWaszSzczyt","Points":9957,"X":498,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63293Z"},{"ID":40020,"Name":"Dream on","Points":4331,"X":300,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63293Z"},{"ID":40021,"Name":"Wioska barbarzyƄska","Points":3582,"X":673,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632931Z"},{"ID":40022,"Name":"Wioska barbarzyƄska","Points":3194,"X":329,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632931Z"},{"ID":40023,"Name":"061.","Points":10019,"X":660,"Y":395,"Continent":"K36","Bonus":4,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632932Z"},{"ID":40024,"Name":"011","Points":9821,"X":688,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632932Z"},{"ID":40025,"Name":"005","Points":9958,"X":662,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632933Z"},{"ID":40026,"Name":"#026#","Points":9761,"X":620,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632934Z"},{"ID":40027,"Name":"ZA26","Points":9835,"X":321,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632934Z"},{"ID":40028,"Name":"#0112 Zapiecek","Points":8417,"X":478,"Y":540,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632935Z"},{"ID":40029,"Name":"136 invidia","Points":8625,"X":539,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632935Z"},{"ID":40030,"Name":"Wioska barbarzyƄska","Points":9469,"X":390,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632936Z"},{"ID":40031,"Name":"Taran","Points":6797,"X":330,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632937Z"},{"ID":40032,"Name":"30. Lets go","Points":6390,"X":559,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632937Z"},{"ID":40033,"Name":"O036","Points":9955,"X":344,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632938Z"},{"ID":40034,"Name":"A 101","Points":4253,"X":361,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632938Z"},{"ID":40035,"Name":"013.Stradi","Points":10273,"X":429,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632939Z"},{"ID":40036,"Name":"2.Pampeluna","Points":5037,"X":574,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632939Z"},{"ID":40037,"Name":"#0281 Marass","Points":10410,"X":473,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63294Z"},{"ID":40038,"Name":"Swoja","Points":8004,"X":603,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63294Z"},{"ID":40039,"Name":"Pd 05","Points":4306,"X":359,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632941Z"},{"ID":40040,"Name":"Darma dla zawodnika","Points":3382,"X":324,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632942Z"},{"ID":40041,"Name":"[0097]","Points":10495,"X":433,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632942Z"},{"ID":40042,"Name":"0011 mackobl14","Points":9907,"X":440,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632943Z"},{"ID":40043,"Name":"ZZZ","Points":9745,"X":514,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632943Z"},{"ID":40044,"Name":"Wyspa_30","Points":9638,"X":507,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632944Z"},{"ID":40045,"Name":"Wieƛ 05","Points":4196,"X":339,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632945Z"},{"ID":40046,"Name":"bucksbarzyƄskamiiiru","Points":10142,"X":331,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632945Z"},{"ID":40047,"Name":"Dream on","Points":9505,"X":304,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632946Z"},{"ID":40048,"Name":"wioska","Points":10611,"X":622,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":848967422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632946Z"},{"ID":40049,"Name":"Moldor 12","Points":10503,"X":635,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632947Z"},{"ID":40050,"Name":"[0134]","Points":9410,"X":451,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632947Z"},{"ID":40051,"Name":"Wioska holajza","Points":6013,"X":563,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632948Z"},{"ID":40052,"Name":"002.","Points":10580,"X":321,"Y":589,"Continent":"K53","Bonus":4,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632948Z"},{"ID":40053,"Name":"001","Points":9867,"X":389,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":8839403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632949Z"},{"ID":40054,"Name":"bucksbarzyƄskamiiiru","Points":5531,"X":335,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63295Z"},{"ID":40056,"Name":"New World","Points":10294,"X":427,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63295Z"},{"ID":40057,"Name":"009","Points":9889,"X":695,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632951Z"},{"ID":40058,"Name":"ZZZ","Points":4792,"X":455,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632951Z"},{"ID":40059,"Name":"K35 - [028] Before Land","Points":7230,"X":573,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632952Z"},{"ID":40060,"Name":"Winterhome.062","Points":10070,"X":490,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632952Z"},{"ID":40061,"Name":"C05 CheƂmno","Points":3626,"X":348,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632953Z"},{"ID":40062,"Name":"Klaudek20","Points":3280,"X":635,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632954Z"},{"ID":40063,"Name":"bucksbarzyƄskamiiiru","Points":6534,"X":335,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632954Z"},{"ID":40064,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":656,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632955Z"},{"ID":40065,"Name":"019. Taka wioska nie istnieje","Points":10259,"X":694,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632955Z"},{"ID":40066,"Name":"O098","Points":9613,"X":347,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632956Z"},{"ID":40067,"Name":"#011. Ulryk von Junningen","Points":10030,"X":431,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632957Z"},{"ID":40068,"Name":"006","Points":9656,"X":661,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632957Z"},{"ID":40069,"Name":"001","Points":10311,"X":699,"Y":509,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632958Z"},{"ID":40070,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":500,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632958Z"},{"ID":40071,"Name":"Wyspa_43","Points":9638,"X":510,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632959Z"},{"ID":40072,"Name":"Gattacka","Points":9254,"X":678,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632959Z"},{"ID":40073,"Name":"Ć»UBR PSYCHIATRYK 014","Points":5884,"X":625,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63296Z"},{"ID":40074,"Name":"Rubiez9","Points":8468,"X":309,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63296Z"},{"ID":40075,"Name":"Wioska barbarzyƄska","Points":9056,"X":652,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632961Z"},{"ID":40077,"Name":"*194*","Points":10211,"X":367,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632962Z"},{"ID":40078,"Name":"C005","Points":9140,"X":672,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632962Z"},{"ID":40079,"Name":"001 * Lady Porto *","Points":12154,"X":696,"Y":507,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632963Z"},{"ID":40080,"Name":"psycha sitting","Points":10178,"X":400,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632963Z"},{"ID":40081,"Name":"bucksbarzyƄskamiiiru","Points":1721,"X":332,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632964Z"},{"ID":40082,"Name":"2.Saragossa","Points":5962,"X":573,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632964Z"},{"ID":40083,"Name":"FAKE OR OFF","Points":9837,"X":413,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632965Z"},{"ID":40084,"Name":"042 invidia","Points":10237,"X":529,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632966Z"},{"ID":40085,"Name":"Szlachcic","Points":5541,"X":377,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632966Z"},{"ID":40086,"Name":"Wioska barbarzyƄska","Points":9631,"X":669,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632967Z"},{"ID":40087,"Name":"002","Points":9145,"X":639,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632967Z"},{"ID":40088,"Name":"Wioska barbarzyƄska","Points":2399,"X":532,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632968Z"},{"ID":40089,"Name":"Wonderwall","Points":9484,"X":325,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632968Z"},{"ID":40090,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":658,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632969Z"},{"ID":40091,"Name":"Osada","Points":9637,"X":506,"Y":456,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63297Z"},{"ID":40092,"Name":"Jan Stuttgart K","Points":9670,"X":690,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63297Z"},{"ID":40093,"Name":"SokóƂ","Points":2745,"X":703,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632971Z"},{"ID":40094,"Name":"FENDI","Points":4500,"X":307,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632971Z"},{"ID":40095,"Name":"039. Wioska barbarzyƄska","Points":10223,"X":694,"Y":467,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632972Z"},{"ID":40096,"Name":"#qatar","Points":4441,"X":313,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849099601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632972Z"},{"ID":40097,"Name":"Osada koczownikĂłw","Points":8521,"X":533,"Y":308,"Continent":"K35","Bonus":2,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632973Z"},{"ID":40098,"Name":"Twierdza 4","Points":9498,"X":518,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632973Z"},{"ID":40099,"Name":"032 - Nowy Początek...","Points":9950,"X":373,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632974Z"},{"ID":40100,"Name":"Wioska barbarzyƄska","Points":9421,"X":529,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632974Z"},{"ID":40101,"Name":"Bridge","Points":4073,"X":666,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632975Z"},{"ID":40102,"Name":"bucksbarzyƄskamiiiru","Points":5238,"X":326,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632976Z"},{"ID":40103,"Name":"Wioska barbarzyƄska","Points":2358,"X":541,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632976Z"},{"ID":40104,"Name":"???","Points":10160,"X":483,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632977Z"},{"ID":40105,"Name":"K35 - [012] Before Land","Points":9783,"X":576,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632977Z"},{"ID":40106,"Name":"Wioska barbarzyƄska","Points":5840,"X":343,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632978Z"},{"ID":40107,"Name":"xzc","Points":9687,"X":502,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632978Z"},{"ID":40108,"Name":"Na KraƄcu ƚwiata 008","Points":10495,"X":629,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632979Z"},{"ID":40109,"Name":"Napewno to nie jest off","Points":2436,"X":592,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632979Z"},{"ID":40110,"Name":"O139","Points":6439,"X":348,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63298Z"},{"ID":40111,"Name":"z181_17","Points":9547,"X":308,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63298Z"},{"ID":40112,"Name":"Wioska Lord Sir szok","Points":3412,"X":389,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":8868716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632981Z"},{"ID":40113,"Name":"#0211 Segadorr dar","Points":7065,"X":457,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632982Z"},{"ID":40114,"Name":"Z 003","Points":7008,"X":328,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632982Z"},{"ID":40115,"Name":"023 Drwal","Points":1612,"X":648,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632983Z"},{"ID":40116,"Name":"!36 75 Fratauti Vechi","Points":9882,"X":652,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632983Z"},{"ID":40117,"Name":"**INTERTWINED*","Points":9711,"X":503,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632984Z"},{"ID":40118,"Name":"044","Points":10019,"X":631,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632984Z"},{"ID":40119,"Name":"KRÓL PAPI WIELKI","Points":10192,"X":640,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632985Z"},{"ID":40120,"Name":"D016","Points":7837,"X":617,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632985Z"},{"ID":40121,"Name":"Killer Queen","Points":3778,"X":582,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632986Z"},{"ID":40122,"Name":"-002- sz","Points":9998,"X":356,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632986Z"},{"ID":40123,"Name":"023. Night Raid","Points":10011,"X":474,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632987Z"},{"ID":40124,"Name":"Rubiez 8","Points":6894,"X":308,"Y":484,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632988Z"},{"ID":40125,"Name":"K35 - [024] Before Land","Points":11130,"X":582,"Y":323,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632988Z"},{"ID":40126,"Name":"Wioska barbarzyƄska","Points":10049,"X":336,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632989Z"},{"ID":40127,"Name":"Darma dla zawodnika","Points":6379,"X":515,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632989Z"},{"ID":40128,"Name":"A 056","Points":9308,"X":362,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63299Z"},{"ID":40129,"Name":"7.62 mm","Points":10019,"X":490,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63299Z"},{"ID":40130,"Name":"Szale","Points":9344,"X":468,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632991Z"},{"ID":40131,"Name":"Twierdza","Points":9419,"X":604,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632992Z"},{"ID":40132,"Name":"TWIERDZA .:017:.","Points":10406,"X":688,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632992Z"},{"ID":40133,"Name":"Wioska barbarzyƄska","Points":4846,"X":563,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632993Z"},{"ID":40134,"Name":"001 sadeg","Points":10237,"X":518,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632993Z"},{"ID":40135,"Name":"100 Konan","Points":7596,"X":687,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632994Z"},{"ID":40137,"Name":"###001###","Points":10495,"X":593,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632994Z"},{"ID":40138,"Name":"061. WƂochy","Points":9580,"X":694,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632995Z"},{"ID":40139,"Name":"Bydlak777","Points":2690,"X":648,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632995Z"},{"ID":40140,"Name":"XDX","Points":8652,"X":607,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632996Z"},{"ID":40141,"Name":"AAA","Points":8994,"X":551,"Y":306,"Continent":"K35","Bonus":1,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632996Z"},{"ID":40142,"Name":"Wioska 6","Points":3515,"X":642,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632997Z"},{"ID":40143,"Name":"-001-","Points":9864,"X":376,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632998Z"},{"ID":40144,"Name":"Out of Touch","Points":6309,"X":316,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632998Z"},{"ID":40145,"Name":"Wioska barbarzyƄska","Points":6456,"X":658,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632999Z"},{"ID":40146,"Name":"boh81/52","Points":6685,"X":300,"Y":472,"Continent":"K43","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.632999Z"},{"ID":40148,"Name":"Abdoulxx","Points":10795,"X":474,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633Z"},{"ID":40149,"Name":"016","Points":3397,"X":396,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633Z"},{"ID":40150,"Name":"- 241 - SS","Points":8271,"X":562,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633001Z"},{"ID":40151,"Name":"Szlachcic","Points":5170,"X":374,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633001Z"},{"ID":40152,"Name":"Wioska barbarzyƄska","Points":7783,"X":329,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633002Z"},{"ID":40153,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":3769,"X":477,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633002Z"},{"ID":40154,"Name":"kamilkaze135 #05","Points":9022,"X":662,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633003Z"},{"ID":40155,"Name":"Out of Touch","Points":2415,"X":320,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633003Z"},{"ID":40156,"Name":"=|22|=","Points":4089,"X":668,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633004Z"},{"ID":40157,"Name":"psycha sitting","Points":10178,"X":416,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633004Z"},{"ID":40158,"Name":"Didusia ziom","Points":2383,"X":678,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":3652727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633005Z"},{"ID":40159,"Name":"048 invidia","Points":9345,"X":527,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633005Z"},{"ID":40161,"Name":"012 * Lady Porto *","Points":8180,"X":697,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633006Z"},{"ID":40162,"Name":"07. PiekƂo","Points":9362,"X":690,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633007Z"},{"ID":40163,"Name":"Darma dla zawodnika","Points":9818,"X":318,"Y":578,"Continent":"K53","Bonus":8,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633007Z"},{"ID":40164,"Name":"C0011","Points":10362,"X":302,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633008Z"},{"ID":40165,"Name":"048. K2","Points":7464,"X":692,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633008Z"},{"ID":40166,"Name":"047","Points":10495,"X":447,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633009Z"},{"ID":40167,"Name":"Sernik z Andzynkami","Points":9744,"X":697,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633009Z"},{"ID":40168,"Name":"0399","Points":10019,"X":572,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63301Z"},{"ID":40169,"Name":"A025","Points":10042,"X":603,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63301Z"},{"ID":40170,"Name":"psycha sitting","Points":10311,"X":421,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633011Z"},{"ID":40171,"Name":"Szlachcic","Points":7974,"X":377,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633012Z"},{"ID":40172,"Name":"005 NAWRA","Points":10362,"X":665,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633012Z"},{"ID":40173,"Name":"C106","Points":3905,"X":365,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633013Z"},{"ID":40174,"Name":"Wioska barbarzyƄska","Points":2126,"X":652,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633013Z"},{"ID":40175,"Name":"114","Points":7734,"X":593,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633014Z"},{"ID":40176,"Name":"022 Sigurd","Points":10728,"X":629,"Y":650,"Continent":"K66","Bonus":8,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633014Z"},{"ID":40177,"Name":"Winterhome.052","Points":10178,"X":497,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633015Z"},{"ID":40178,"Name":"Out of Touch","Points":9630,"X":322,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633015Z"},{"ID":40179,"Name":"Winterhome.034","Points":10178,"X":495,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633016Z"},{"ID":40180,"Name":"Darma dla zawodnika","Points":5051,"X":315,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633016Z"},{"ID":40181,"Name":"Ob Konfederacja","Points":10072,"X":434,"Y":316,"Continent":"K34","Bonus":2,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633017Z"},{"ID":40182,"Name":"B021","Points":10204,"X":526,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633017Z"},{"ID":40183,"Name":"wioska","Points":9971,"X":623,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633018Z"},{"ID":40184,"Name":"0012","Points":2770,"X":361,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633018Z"},{"ID":40185,"Name":"Winterhome.020","Points":10178,"X":492,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633019Z"},{"ID":40186,"Name":"022 MONETKI","Points":9803,"X":666,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633019Z"},{"ID":40187,"Name":"Wioska barbarzyƄska","Points":9306,"X":383,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63302Z"},{"ID":40188,"Name":"C0121","Points":10362,"X":306,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633021Z"},{"ID":40189,"Name":"004. Wawer{NANI?!}","Points":10237,"X":700,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633021Z"},{"ID":40190,"Name":"Winterhome.066","Points":10178,"X":492,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633022Z"},{"ID":40191,"Name":"[0047]","Points":10495,"X":435,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633022Z"},{"ID":40192,"Name":"Wioska barbarzyƄska","Points":5431,"X":308,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633023Z"},{"ID":40193,"Name":"Szlachcic","Points":8009,"X":383,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633023Z"},{"ID":40194,"Name":"[0048]","Points":10495,"X":443,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633024Z"},{"ID":40195,"Name":"Wyspa_36","Points":6358,"X":508,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633024Z"},{"ID":40196,"Name":"C105","Points":9556,"X":367,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633025Z"},{"ID":40197,"Name":"123","Points":10373,"X":473,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633025Z"},{"ID":40198,"Name":"WP2","Points":2641,"X":327,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633026Z"},{"ID":40199,"Name":"Gracze","Points":10598,"X":689,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633026Z"},{"ID":40200,"Name":"Wieliczka","Points":2041,"X":582,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":849099505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633027Z"},{"ID":40201,"Name":"CALL 1052","Points":10311,"X":651,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633028Z"},{"ID":40202,"Name":"Wioska barbarzyƄska","Points":5511,"X":645,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633028Z"},{"ID":40203,"Name":"Ć»UBR PSYCHIATRYK 022","Points":5694,"X":621,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633029Z"},{"ID":40204,"Name":"10_Franekkimono510_10","Points":3191,"X":367,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633029Z"},{"ID":40205,"Name":"Gattacka","Points":9353,"X":688,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63303Z"},{"ID":40206,"Name":"C004","Points":5345,"X":673,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":8138506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63303Z"},{"ID":40207,"Name":"Hofek 25.","Points":5071,"X":668,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633031Z"},{"ID":40208,"Name":"BRICKLEBERRY","Points":7258,"X":550,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633031Z"},{"ID":40209,"Name":"B10","Points":5385,"X":466,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633032Z"},{"ID":40210,"Name":"FAKE OR OFF","Points":9822,"X":419,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633032Z"},{"ID":40211,"Name":"B06","Points":5956,"X":688,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633033Z"},{"ID":40212,"Name":"Out of Touch","Points":8749,"X":320,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633033Z"},{"ID":40213,"Name":"055 BanaN","Points":10161,"X":692,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633034Z"},{"ID":40214,"Name":"B04","Points":9835,"X":505,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633035Z"},{"ID":40215,"Name":"MojeDnoToWaszSzczyt","Points":9957,"X":506,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633035Z"},{"ID":40216,"Name":"z181_05","Points":9882,"X":314,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633036Z"},{"ID":40217,"Name":"X 002","Points":7143,"X":596,"Y":331,"Continent":"K35","Bonus":7,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633036Z"},{"ID":40218,"Name":"I074","Points":9161,"X":692,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633037Z"},{"ID":40219,"Name":"Zeta Reticuli O","Points":11417,"X":417,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633037Z"},{"ID":40220,"Name":"kamilkaze135 #04","Points":9805,"X":661,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633038Z"},{"ID":40221,"Name":"Wioska barbarzyƄska","Points":3876,"X":627,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633038Z"},{"ID":40222,"Name":"Mefedron 05","Points":7569,"X":393,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633039Z"},{"ID":40223,"Name":"Wioska barbarzyƄska","Points":3978,"X":647,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633039Z"},{"ID":40224,"Name":"A3.","Points":4672,"X":314,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63304Z"},{"ID":40225,"Name":"Wioska 6","Points":4606,"X":507,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63304Z"},{"ID":40226,"Name":"075g","Points":8126,"X":312,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633041Z"},{"ID":40227,"Name":"XXXXXXXXXXXXXX","Points":10068,"X":368,"Y":651,"Continent":"K63","Bonus":9,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633041Z"},{"ID":40228,"Name":"-022- S","Points":3044,"X":618,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633042Z"},{"ID":40229,"Name":"A4. Puk... Puk... Komornik","Points":9711,"X":308,"Y":543,"Continent":"K53","Bonus":3,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633042Z"},{"ID":40230,"Name":"FAKE OR OFF","Points":9814,"X":407,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633043Z"},{"ID":40231,"Name":"B027","Points":8989,"X":514,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633044Z"},{"ID":40232,"Name":"KRÓL PAPI WIELKI","Points":8349,"X":699,"Y":526,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633044Z"},{"ID":40233,"Name":"SOKzGUMIjagĂłd","Points":5935,"X":603,"Y":338,"Continent":"K36","Bonus":9,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633045Z"},{"ID":40234,"Name":"z181_29","Points":7831,"X":310,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633045Z"},{"ID":40235,"Name":"KRÓL PAPI WIELKI","Points":9881,"X":652,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633046Z"},{"ID":40236,"Name":"Wioska barbarzyƄska","Points":2339,"X":533,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":8606809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633046Z"},{"ID":40237,"Name":"EO EO","Points":10019,"X":301,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633047Z"},{"ID":40238,"Name":"#089#","Points":9761,"X":630,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633047Z"},{"ID":40239,"Name":"Katwaijk","Points":4410,"X":624,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633048Z"},{"ID":40240,"Name":"Taran","Points":9962,"X":338,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633048Z"},{"ID":40241,"Name":"Gattacka","Points":9711,"X":688,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633049Z"},{"ID":40242,"Name":"029","Points":7043,"X":305,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633049Z"},{"ID":40243,"Name":"D006","Points":5555,"X":610,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63305Z"},{"ID":40244,"Name":"B007","Points":10161,"X":516,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63305Z"},{"ID":40245,"Name":"bucksbarzyƄskamiiiru","Points":10654,"X":328,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633051Z"},{"ID":40246,"Name":"-28-","Points":2859,"X":642,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633051Z"},{"ID":40247,"Name":"New World","Points":10292,"X":425,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633052Z"},{"ID":40248,"Name":"TWIERDZA .:010:.","Points":10140,"X":688,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633052Z"},{"ID":40249,"Name":"Wioska Totomoose 2","Points":6555,"X":315,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":849100744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633053Z"},{"ID":40250,"Name":"032 - Fuenlabrada","Points":8963,"X":693,"Y":527,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633054Z"},{"ID":40251,"Name":"A 076","Points":4381,"X":364,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633054Z"},{"ID":40252,"Name":"193","Points":3449,"X":455,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633055Z"},{"ID":40253,"Name":"Wioska barbarzyƄska","Points":5627,"X":308,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633055Z"},{"ID":40254,"Name":"psycha sitting","Points":6152,"X":398,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633056Z"},{"ID":40255,"Name":"Wioska barbarzyƄska","Points":8800,"X":336,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633056Z"},{"ID":40256,"Name":"Rubiez","Points":9816,"X":307,"Y":482,"Continent":"K43","Bonus":2,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633057Z"},{"ID":40257,"Name":"bucksbarzyƄskamiiiru","Points":9957,"X":329,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633057Z"},{"ID":40258,"Name":"670|372","Points":4467,"X":658,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633058Z"},{"ID":40259,"Name":"009 NAWRA","Points":10311,"X":666,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633058Z"},{"ID":40260,"Name":"Ć»UBR PSYCHIATRYK 016","Points":7619,"X":622,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633059Z"},{"ID":40261,"Name":"Wioska Vallias","Points":6001,"X":475,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633059Z"},{"ID":40262,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":651,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63306Z"},{"ID":40263,"Name":"FAKE OR OFF","Points":9814,"X":419,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63306Z"},{"ID":40264,"Name":"Out of Touch","Points":9867,"X":322,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633061Z"},{"ID":40265,"Name":"Moldor 002","Points":10654,"X":631,"Y":355,"Continent":"K36","Bonus":1,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633062Z"},{"ID":40266,"Name":"Szlachcic","Points":10559,"X":384,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633062Z"},{"ID":40267,"Name":"055 invidia","Points":7720,"X":520,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633063Z"},{"ID":40268,"Name":"#Tokyo#","Points":3112,"X":317,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849099601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633063Z"},{"ID":40269,"Name":"0sada Cegielnia","Points":8788,"X":567,"Y":310,"Continent":"K35","Bonus":2,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633064Z"},{"ID":40270,"Name":"psycha sitting","Points":10178,"X":402,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633064Z"},{"ID":40271,"Name":"Wioska barbarzyƄska","Points":11130,"X":621,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633065Z"},{"ID":40272,"Name":"006. Praga PóƂnoc","Points":9894,"X":699,"Y":478,"Continent":"K46","Bonus":1,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633065Z"},{"ID":40273,"Name":"007. Ɓ","Points":3589,"X":325,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633066Z"},{"ID":40274,"Name":"Darma dla zawodnika","Points":3013,"X":318,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633066Z"},{"ID":40275,"Name":"#030#","Points":9761,"X":617,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633067Z"},{"ID":40276,"Name":"2.Marbella","Points":9464,"X":579,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633067Z"},{"ID":40278,"Name":"Forteca*007*","Points":5846,"X":533,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633068Z"},{"ID":40279,"Name":"Swoja3","Points":8379,"X":603,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633068Z"},{"ID":40280,"Name":"???","Points":10083,"X":486,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633069Z"},{"ID":40281,"Name":"~ OZESEK ~","Points":2246,"X":315,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":698540331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633069Z"},{"ID":40282,"Name":"036","Points":7442,"X":307,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63307Z"},{"ID":40283,"Name":"035. Aquila","Points":9502,"X":613,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63307Z"},{"ID":40284,"Name":"psycha sitting","Points":10178,"X":412,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633071Z"},{"ID":40285,"Name":"???","Points":8903,"X":485,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633071Z"},{"ID":40286,"Name":"Winterhome.065","Points":8838,"X":491,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633072Z"},{"ID":40287,"Name":"???","Points":4848,"X":479,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633073Z"},{"ID":40288,"Name":"Wioska barbarzyƄska","Points":11370,"X":687,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633073Z"},{"ID":40289,"Name":"Wioska barbarzyƄska","Points":10495,"X":583,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633074Z"},{"ID":40290,"Name":"Osada koczownikĂłw","Points":7139,"X":529,"Y":304,"Continent":"K35","Bonus":1,"PlayerID":8606809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633074Z"},{"ID":40291,"Name":"MaƂy Mędromierz","Points":8398,"X":410,"Y":578,"Continent":"K54","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633075Z"},{"ID":40292,"Name":"Wioska barbarzyƄska","Points":9825,"X":695,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633075Z"},{"ID":40293,"Name":"Szlachcic","Points":9711,"X":389,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633076Z"},{"ID":40294,"Name":"I075 Wakacje w Lesbos","Points":9975,"X":688,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633076Z"},{"ID":40296,"Name":"bucksbarzyƄskamiiiru","Points":5457,"X":335,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633077Z"},{"ID":40297,"Name":"S001","Points":9203,"X":599,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633077Z"},{"ID":40298,"Name":"001","Points":2287,"X":478,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699639005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633078Z"},{"ID":40299,"Name":"Didek","Points":1345,"X":683,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633078Z"},{"ID":40300,"Name":"057","Points":10160,"X":630,"Y":353,"Continent":"K36","Bonus":8,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633079Z"},{"ID":40301,"Name":"01Gato","Points":8507,"X":603,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699548295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633079Z"},{"ID":40302,"Name":"Wioska Zorro 002","Points":12154,"X":674,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63308Z"},{"ID":40303,"Name":"#waj","Points":9501,"X":483,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633081Z"},{"ID":40304,"Name":"Wioska 04","Points":3112,"X":571,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849067192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633081Z"},{"ID":40306,"Name":"Winterhome.068","Points":9223,"X":487,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633082Z"},{"ID":40307,"Name":"Osada koczownikĂłw","Points":10474,"X":651,"Y":625,"Continent":"K66","Bonus":8,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633082Z"},{"ID":40308,"Name":"OFF","Points":10418,"X":661,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633083Z"},{"ID":40309,"Name":"076g","Points":6548,"X":315,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633083Z"},{"ID":40310,"Name":"C 021","Points":6172,"X":691,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":8078914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633084Z"},{"ID":40312,"Name":"Wioska barbarzyƄska","Points":4819,"X":534,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633084Z"},{"ID":40313,"Name":"- 199 - SS","Points":8797,"X":559,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633085Z"},{"ID":40314,"Name":"Out of Touch","Points":8593,"X":314,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633085Z"},{"ID":40315,"Name":"EE01","Points":9231,"X":620,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633086Z"},{"ID":40316,"Name":"C0075","Points":10362,"X":307,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633086Z"},{"ID":40317,"Name":"Wioska 2","Points":3339,"X":342,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699541376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633087Z"},{"ID":40318,"Name":"Twierdza Modlin","Points":10304,"X":302,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633087Z"},{"ID":40319,"Name":"Szale","Points":9579,"X":468,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633088Z"},{"ID":40320,"Name":"psycha sitting","Points":7528,"X":405,"Y":667,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633088Z"},{"ID":40321,"Name":"Wioska 6","Points":4168,"X":503,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633089Z"},{"ID":40322,"Name":"KRÓL PAPI WIELKI","Points":10073,"X":637,"Y":644,"Continent":"K66","Bonus":7,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633089Z"},{"ID":40323,"Name":"WB07","Points":6255,"X":324,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63309Z"},{"ID":40324,"Name":"=|23|=","Points":10495,"X":668,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63309Z"},{"ID":40325,"Name":"Opuszczona Wioska","Points":2516,"X":692,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633091Z"},{"ID":40326,"Name":"Wielgie","Points":8994,"X":573,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633092Z"},{"ID":40327,"Name":"R 028 ~Anarchia~","Points":10019,"X":496,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633092Z"},{"ID":40328,"Name":"Taran","Points":6947,"X":343,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633093Z"},{"ID":40329,"Name":"Radek","Points":9714,"X":677,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633093Z"},{"ID":40330,"Name":"A 088","Points":2701,"X":364,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633094Z"},{"ID":40331,"Name":"035 invidia","Points":10237,"X":529,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633094Z"},{"ID":40332,"Name":"Gattacka","Points":9163,"X":679,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633095Z"},{"ID":40333,"Name":"- 148 - SS","Points":9815,"X":541,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633095Z"},{"ID":40334,"Name":"005# Guba","Points":10114,"X":485,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633096Z"},{"ID":40335,"Name":"Sernik z Andzynkami","Points":9797,"X":699,"Y":501,"Continent":"K56","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633096Z"},{"ID":40336,"Name":"- 173 - SS xDDDDDD","Points":9957,"X":549,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633097Z"},{"ID":40337,"Name":"KRÓL PAPI WIELKI","Points":7872,"X":696,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633098Z"},{"ID":40339,"Name":"Wioska lV","Points":9277,"X":317,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633098Z"},{"ID":40342,"Name":"KRÓL PAPI WIELKI","Points":9351,"X":620,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633099Z"},{"ID":40344,"Name":"Hofek 24.","Points":6310,"X":665,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633099Z"},{"ID":40345,"Name":"_PUSTA+","Points":8744,"X":688,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6331Z"},{"ID":40346,"Name":"D08","Points":10776,"X":666,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6331Z"},{"ID":40347,"Name":"37. KaruTown","Points":9735,"X":692,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849060446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633101Z"},{"ID":40348,"Name":"Wiejska7","Points":8742,"X":601,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633101Z"},{"ID":40349,"Name":"taran 4","Points":8918,"X":592,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633102Z"},{"ID":40350,"Name":"Darma dla zawodnika","Points":8528,"X":319,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633102Z"},{"ID":40351,"Name":"bucksbarzyƄskamiiiru","Points":9855,"X":329,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633103Z"},{"ID":40352,"Name":"KRÓL PAPI WIELKI","Points":10083,"X":653,"Y":621,"Continent":"K66","Bonus":7,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633103Z"},{"ID":40353,"Name":"012","Points":10541,"X":608,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633104Z"},{"ID":40354,"Name":"Wiejska6","Points":8609,"X":602,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633104Z"},{"ID":40355,"Name":"New World","Points":10292,"X":430,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633105Z"},{"ID":40356,"Name":"MojeDnoToWaszSzczyt","Points":6620,"X":510,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633105Z"},{"ID":40357,"Name":"z181_09","Points":9882,"X":310,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633106Z"},{"ID":40358,"Name":"0115","Points":9966,"X":700,"Y":499,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633107Z"},{"ID":40359,"Name":"[0216]","Points":6957,"X":301,"Y":508,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633107Z"},{"ID":40360,"Name":"Wioska 2","Points":7457,"X":341,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633108Z"},{"ID":40361,"Name":"004","Points":10432,"X":613,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633108Z"},{"ID":40363,"Name":"015. czego chcesz dziewczyno","Points":9888,"X":692,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633109Z"},{"ID":40364,"Name":"075","Points":8667,"X":581,"Y":620,"Continent":"K65","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633109Z"},{"ID":40365,"Name":"wiocha","Points":10319,"X":617,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63311Z"},{"ID":40366,"Name":"Wioska barbarzyƄska","Points":9082,"X":371,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63311Z"},{"ID":40367,"Name":"Osada koczownikĂłw","Points":5605,"X":307,"Y":547,"Continent":"K53","Bonus":7,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633111Z"},{"ID":40368,"Name":"New World","Points":10290,"X":428,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633111Z"},{"ID":40369,"Name":"#008","Points":4063,"X":313,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633112Z"},{"ID":40370,"Name":"Klaudek27","Points":3384,"X":637,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633112Z"},{"ID":40371,"Name":"yyy","Points":9425,"X":689,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633113Z"},{"ID":40372,"Name":"ZasiedmiogĂłrogrĂłd","Points":6790,"X":536,"Y":424,"Continent":"K45","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633113Z"},{"ID":40373,"Name":"###057###","Points":10495,"X":587,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633114Z"},{"ID":40374,"Name":"Dream on","Points":9497,"X":303,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633114Z"},{"ID":40375,"Name":"Old Trafford","Points":9125,"X":665,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633115Z"},{"ID":40376,"Name":"C0095","Points":10362,"X":300,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633115Z"},{"ID":40377,"Name":"ByƂeƛ w porządku","Points":10078,"X":366,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633116Z"},{"ID":40378,"Name":"Sernik z Andzynkami","Points":9744,"X":698,"Y":495,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633116Z"},{"ID":40379,"Name":"D_2","Points":8280,"X":529,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":3377827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633117Z"},{"ID":40380,"Name":"stickman4444","Points":8716,"X":598,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633117Z"},{"ID":40381,"Name":"Wioska ShOcK","Points":10021,"X":419,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":591733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633118Z"},{"ID":40382,"Name":"Mefedron 08","Points":5843,"X":392,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633118Z"},{"ID":40383,"Name":"Sernik z Andzynkami","Points":9754,"X":698,"Y":499,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633119Z"},{"ID":40384,"Name":"#066#","Points":9761,"X":619,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63312Z"},{"ID":40385,"Name":"Wioska barbarzyƄska","Points":4866,"X":548,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63312Z"},{"ID":40386,"Name":"001 NAWRA","Points":10395,"X":659,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633121Z"},{"ID":40387,"Name":"024","Points":10030,"X":627,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633121Z"},{"ID":40388,"Name":"- Cradabra -","Points":5185,"X":661,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633122Z"},{"ID":40389,"Name":"X | Forest Cyaaaanku","Points":10000,"X":307,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633122Z"},{"ID":40390,"Name":".achim.","Points":10032,"X":480,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633123Z"},{"ID":40391,"Name":"115","Points":6285,"X":594,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633123Z"},{"ID":40392,"Name":"Darma dla zawodnika","Points":4913,"X":319,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633124Z"},{"ID":40393,"Name":"Wioska barbarzyƄska","Points":7799,"X":564,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633124Z"},{"ID":40394,"Name":"KRÓL PAPI WIELKI","Points":10215,"X":648,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633125Z"},{"ID":40395,"Name":"003","Points":9545,"X":383,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633125Z"},{"ID":40396,"Name":"Taran","Points":10303,"X":341,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633126Z"},{"ID":40397,"Name":"Bolusiowo","Points":6616,"X":307,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633126Z"},{"ID":40400,"Name":"055. Wioska barbarzyƄska","Points":8842,"X":690,"Y":469,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633127Z"},{"ID":40401,"Name":"B#014","Points":9797,"X":695,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633128Z"},{"ID":40402,"Name":"a moĆŒe off ? :)","Points":5562,"X":670,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633128Z"},{"ID":40403,"Name":"*021 GAWRA*","Points":9006,"X":312,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633129Z"},{"ID":40404,"Name":"TWIERDZA .:031:.","Points":10198,"X":684,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633129Z"},{"ID":40406,"Name":"Wioska barbarzyƄska","Points":9820,"X":393,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63313Z"},{"ID":40407,"Name":"Wioska barbarzyƄska","Points":4663,"X":616,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63313Z"},{"ID":40408,"Name":"#02","Points":9488,"X":555,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633131Z"},{"ID":40409,"Name":"Gattacka","Points":9372,"X":617,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633131Z"},{"ID":40410,"Name":"Dream on","Points":9506,"X":301,"Y":490,"Continent":"K43","Bonus":2,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633132Z"},{"ID":40411,"Name":"Wioska Wodzu002","Points":6680,"X":552,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633132Z"},{"ID":40412,"Name":".achim.","Points":10838,"X":483,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633133Z"},{"ID":40413,"Name":"Dreamland","Points":3409,"X":669,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633133Z"},{"ID":40414,"Name":"Darma dla zawodnika","Points":9821,"X":315,"Y":577,"Continent":"K53","Bonus":8,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633134Z"},{"ID":40415,"Name":"142 invidia","Points":5675,"X":541,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633135Z"},{"ID":40416,"Name":"005","Points":6028,"X":306,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633135Z"},{"ID":40417,"Name":"New World","Points":5810,"X":435,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633136Z"},{"ID":40418,"Name":"TWIERDZA .:065:.","Points":9949,"X":682,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633136Z"},{"ID":40419,"Name":"K35 - [001] Before Land","Points":10259,"X":579,"Y":319,"Continent":"K35","Bonus":9,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633137Z"},{"ID":40420,"Name":"[0100] xxx","Points":10838,"X":450,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633137Z"},{"ID":40421,"Name":"B011","Points":6395,"X":519,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633138Z"},{"ID":40422,"Name":"Wioska 2","Points":8736,"X":676,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633138Z"},{"ID":40423,"Name":"008","Points":6060,"X":489,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633139Z"},{"ID":40424,"Name":"---0000","Points":6671,"X":388,"Y":660,"Continent":"K63","Bonus":9,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633139Z"},{"ID":40425,"Name":"XDX","Points":7946,"X":600,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63314Z"},{"ID":40426,"Name":"Wioska barbarzyƄska","Points":8659,"X":385,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63314Z"},{"ID":40428,"Name":"New World","Points":9882,"X":443,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633141Z"},{"ID":40429,"Name":"New World","Points":6420,"X":433,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633141Z"},{"ID":40430,"Name":"Wioska Totomoose 6","Points":293,"X":314,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":849100744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633142Z"},{"ID":40431,"Name":"Wioska barbarzyƄska","Points":3351,"X":607,"Y":330,"Continent":"K36","Bonus":9,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633142Z"},{"ID":40432,"Name":"Zimowa Twierdza","Points":4189,"X":538,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633143Z"},{"ID":40433,"Name":"Sernik z Andzynkami","Points":9797,"X":695,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633143Z"},{"ID":40434,"Name":"C002","Points":9955,"X":538,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633144Z"},{"ID":40435,"Name":"Wioska barbarzyƄska","Points":10218,"X":578,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633144Z"},{"ID":40436,"Name":"058","Points":6443,"X":364,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633145Z"},{"ID":40437,"Name":"5.CAMEL","Points":4744,"X":521,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633146Z"},{"ID":40438,"Name":"Life","Points":6048,"X":625,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633146Z"},{"ID":40439,"Name":"New World","Points":8559,"X":447,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633147Z"},{"ID":40440,"Name":"!36 75 Vicsani","Points":10083,"X":653,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633147Z"},{"ID":40441,"Name":"psycha sitting","Points":10311,"X":402,"Y":661,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633148Z"},{"ID":40442,"Name":"[0099]","Points":10495,"X":436,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633148Z"},{"ID":40443,"Name":"Dream on","Points":9485,"X":307,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633149Z"},{"ID":40444,"Name":"psycha sitting","Points":10311,"X":414,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633149Z"},{"ID":40445,"Name":"- Ecabra -","Points":4469,"X":655,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63315Z"},{"ID":40446,"Name":"FENDI","Points":2743,"X":305,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63315Z"},{"ID":40448,"Name":"Dąbrowa 0025","Points":2799,"X":316,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633151Z"},{"ID":40449,"Name":"- 179 - SS","Points":6982,"X":550,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633151Z"},{"ID":40450,"Name":"KRÓL PAPI WIELKI","Points":9978,"X":635,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633152Z"},{"ID":40451,"Name":"105","Points":7015,"X":660,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633152Z"},{"ID":40452,"Name":"0016","Points":4406,"X":422,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633153Z"},{"ID":40453,"Name":"[015]","Points":5410,"X":454,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633153Z"},{"ID":40454,"Name":"[016]","Points":4999,"X":455,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633154Z"},{"ID":40455,"Name":"Dream on","Points":9755,"X":307,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633154Z"},{"ID":40456,"Name":"kamilex","Points":4200,"X":682,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633155Z"},{"ID":40457,"Name":"a moĆŒe off ? :)","Points":4785,"X":671,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633155Z"},{"ID":40458,"Name":"Wioska barbarzyƄska","Points":8070,"X":565,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633156Z"},{"ID":40459,"Name":"Tarchomin","Points":4568,"X":365,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633156Z"},{"ID":40460,"Name":"Parole","Points":7041,"X":348,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633157Z"},{"ID":40461,"Name":"psycha sitting","Points":10311,"X":416,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633158Z"},{"ID":40462,"Name":"Taran","Points":9956,"X":337,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633158Z"},{"ID":40463,"Name":"???","Points":10503,"X":479,"Y":303,"Continent":"K34","Bonus":8,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633159Z"},{"ID":40464,"Name":"Wioska barbarzyƄska","Points":2187,"X":640,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633159Z"},{"ID":40465,"Name":"bucksbarzyƄskamiiiru","Points":3155,"X":333,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63316Z"},{"ID":40466,"Name":"017","Points":8753,"X":309,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63316Z"},{"ID":40467,"Name":"044. Wioska barbarzyƄska","Points":10287,"X":694,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633161Z"},{"ID":40468,"Name":"New World","Points":10290,"X":437,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633161Z"},{"ID":40469,"Name":"@16@","Points":3616,"X":402,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633162Z"},{"ID":40470,"Name":"Wioska SeroElo","Points":11094,"X":538,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633162Z"},{"ID":40471,"Name":"004","Points":4075,"X":701,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633163Z"},{"ID":40472,"Name":"Mroczny Zamek 022","Points":4812,"X":356,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633163Z"},{"ID":40473,"Name":"Kruczy RĂłg","Points":10337,"X":588,"Y":672,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633164Z"},{"ID":40474,"Name":"Wioska barbarzyƄska","Points":8097,"X":532,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":8606809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633164Z"},{"ID":40475,"Name":"psycha sitting","Points":6689,"X":399,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633165Z"},{"ID":40476,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":310,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633165Z"},{"ID":40477,"Name":"Szlachcic","Points":10213,"X":384,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633166Z"},{"ID":40478,"Name":"003.Stradi","Points":10495,"X":438,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633166Z"},{"ID":40479,"Name":"Wioska barbarzyƄska","Points":9797,"X":524,"Y":536,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633167Z"},{"ID":40480,"Name":"Wioska barbarzyƄska","Points":4394,"X":395,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633167Z"},{"ID":40481,"Name":"120.Stradi","Points":10495,"X":442,"Y":314,"Continent":"K34","Bonus":8,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633168Z"},{"ID":40482,"Name":"Wioska Bbartek97","Points":5348,"X":617,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849097312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633168Z"},{"ID":40483,"Name":"0013","Points":7105,"X":648,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633169Z"},{"ID":40484,"Name":"psycha sitting","Points":6819,"X":421,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633169Z"},{"ID":40485,"Name":"D.020","Points":3623,"X":394,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63317Z"},{"ID":40486,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":308,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63317Z"},{"ID":40487,"Name":"a moĆŒe off ? :)","Points":5110,"X":671,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633171Z"},{"ID":40488,"Name":"003","Points":2276,"X":308,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":848895676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633172Z"},{"ID":40489,"Name":"Wioska barbarzyƄska","Points":4679,"X":617,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633172Z"},{"ID":40490,"Name":"B008","Points":9073,"X":516,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633173Z"},{"ID":40491,"Name":"###058###","Points":10495,"X":581,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633173Z"},{"ID":40492,"Name":"Wioska barbarzyƄska","Points":7967,"X":386,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633174Z"},{"ID":40493,"Name":"Didek","Points":7430,"X":676,"Y":589,"Continent":"K56","Bonus":7,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633174Z"},{"ID":40494,"Name":"Wioska anibella","Points":10679,"X":651,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633175Z"},{"ID":40495,"Name":"###059###","Points":10495,"X":594,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633175Z"},{"ID":40496,"Name":"Jedziemy","Points":10173,"X":363,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633176Z"},{"ID":40497,"Name":"###060###","Points":10495,"X":600,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633176Z"},{"ID":40498,"Name":"Dream on","Points":6722,"X":307,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633177Z"},{"ID":40499,"Name":"FP006","Points":10393,"X":482,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633177Z"},{"ID":40500,"Name":"Wioska barbarzyƄska","Points":7872,"X":323,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633178Z"},{"ID":40501,"Name":"Wioska barbarzyƄska","Points":6929,"X":676,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633178Z"},{"ID":40502,"Name":"z Goscia099859","Points":8488,"X":355,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633179Z"},{"ID":40503,"Name":"TWIERDZA .:012:.","Points":10406,"X":685,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633179Z"},{"ID":40504,"Name":"Wioska barbarzyƄska","Points":5838,"X":342,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63318Z"},{"ID":40505,"Name":"K35 - [013] Before Land","Points":9783,"X":580,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63318Z"},{"ID":40506,"Name":"Didek","Points":4669,"X":681,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633181Z"},{"ID":40507,"Name":"Wioska barbarzyƄska","Points":2717,"X":345,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699541376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633181Z"},{"ID":40508,"Name":"Wioska 03","Points":3745,"X":349,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":3372959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633182Z"},{"ID":40509,"Name":"Wioska mnich-124","Points":9662,"X":336,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633182Z"},{"ID":40510,"Name":"Wioska barbarzyƄska","Points":6036,"X":349,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633183Z"},{"ID":40511,"Name":"MojeDnoToWaszSzczyt","Points":9960,"X":496,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633183Z"},{"ID":40512,"Name":"Lilka =*","Points":3212,"X":554,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633184Z"},{"ID":40513,"Name":"Gogolin","Points":9095,"X":686,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633185Z"},{"ID":40514,"Name":"Szlachcic","Points":10838,"X":379,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633185Z"},{"ID":40515,"Name":"#084#","Points":9546,"X":634,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633186Z"},{"ID":40516,"Name":"000 Plutosea","Points":8042,"X":312,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633186Z"},{"ID":40517,"Name":"Wioska barbarzyƄska","Points":3365,"X":462,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633187Z"},{"ID":40518,"Name":"Wonderwall","Points":10470,"X":310,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633187Z"},{"ID":40519,"Name":"0052 Dzikusy","Points":6449,"X":447,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633188Z"},{"ID":40520,"Name":"25. Bremervoord","Points":6995,"X":694,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633188Z"},{"ID":40521,"Name":"KoƂobrzeg","Points":5365,"X":506,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633189Z"},{"ID":40522,"Name":"031. nie czytaj tego","Points":9902,"X":693,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633189Z"},{"ID":40523,"Name":"- 196 - SS","Points":7003,"X":539,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63319Z"},{"ID":40524,"Name":"#0274 EmersonJr","Points":7833,"X":459,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63319Z"},{"ID":40525,"Name":"Wioska Zorro 026","Points":4159,"X":675,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633191Z"},{"ID":40526,"Name":"Dream on","Points":9494,"X":302,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633191Z"},{"ID":40527,"Name":"Prowincja","Points":7181,"X":314,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633192Z"},{"ID":40528,"Name":"2.A Coruna","Points":3790,"X":576,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633192Z"},{"ID":40529,"Name":"psycha sitting","Points":10178,"X":419,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633193Z"},{"ID":40530,"Name":"022","Points":2959,"X":395,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633193Z"},{"ID":40531,"Name":"[053] ????","Points":9288,"X":684,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633194Z"},{"ID":40532,"Name":"045","Points":4762,"X":302,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633194Z"},{"ID":40533,"Name":"ZZZ","Points":9473,"X":460,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633195Z"},{"ID":40534,"Name":"Bobolo","Points":8722,"X":686,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633196Z"},{"ID":40535,"Name":"TWIERDZA .:050:.","Points":10356,"X":692,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633196Z"},{"ID":40536,"Name":"Hello there","Points":9835,"X":323,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633197Z"},{"ID":40537,"Name":"Didek","Points":8451,"X":677,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633197Z"},{"ID":40538,"Name":"Wioska barbarzyƄska","Points":6040,"X":686,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633198Z"},{"ID":40539,"Name":"KRÓL PAPI WIELKI","Points":9972,"X":651,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633198Z"},{"ID":40540,"Name":"C0008","Points":10362,"X":303,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633199Z"},{"ID":40541,"Name":"Wioska barbarzyƄska","Points":2946,"X":550,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633199Z"},{"ID":40543,"Name":"kamilex","Points":4543,"X":681,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6332Z"},{"ID":40544,"Name":"TARAN","Points":5540,"X":553,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6332Z"},{"ID":40545,"Name":"Darma dla zawodnika","Points":6967,"X":514,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633201Z"},{"ID":40546,"Name":"#whaj2","Points":9812,"X":484,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633201Z"},{"ID":40547,"Name":"090 invidia","Points":6381,"X":518,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633202Z"},{"ID":40548,"Name":"050","Points":9243,"X":452,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633202Z"},{"ID":40549,"Name":"121 Wioska barbarzyƄska","Points":10001,"X":545,"Y":356,"Continent":"K35","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633203Z"},{"ID":40550,"Name":"Sernik z Andzynkami","Points":9808,"X":696,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633203Z"},{"ID":40551,"Name":"#0167 yasoke19","Points":10178,"X":493,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633204Z"},{"ID":40552,"Name":"035# Renei","Points":4705,"X":480,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633204Z"},{"ID":40553,"Name":"O063","Points":9824,"X":342,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633205Z"},{"ID":40554,"Name":"psycha sitting","Points":10178,"X":405,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633205Z"},{"ID":40555,"Name":"???","Points":9877,"X":480,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633206Z"},{"ID":40556,"Name":"Wyspa_45","Points":9638,"X":510,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633207Z"},{"ID":40557,"Name":"A 073","Points":7947,"X":363,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633207Z"},{"ID":40558,"Name":"Wow11","Points":7886,"X":366,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633208Z"},{"ID":40560,"Name":"Wyspa_05","Points":9638,"X":515,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633208Z"},{"ID":40561,"Name":"Dream on","Points":9486,"X":302,"Y":504,"Continent":"K53","Bonus":7,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633209Z"},{"ID":40562,"Name":"A 066","Points":9327,"X":363,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633209Z"},{"ID":40563,"Name":"C0184","Points":7403,"X":305,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63321Z"},{"ID":40564,"Name":"Wioska barbarzyƄska","Points":7270,"X":532,"Y":301,"Continent":"K35","Bonus":1,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63321Z"},{"ID":40565,"Name":"Wioska 061","Points":9761,"X":646,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633211Z"},{"ID":40566,"Name":"Jednak wolę gofry","Points":8804,"X":474,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633211Z"},{"ID":40567,"Name":".achim.","Points":8449,"X":487,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633212Z"},{"ID":40568,"Name":"????","Points":8660,"X":492,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633212Z"},{"ID":40569,"Name":"061.","Points":8163,"X":324,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633213Z"},{"ID":40570,"Name":"Wioska barbarzyƄska","Points":9761,"X":625,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633213Z"},{"ID":40572,"Name":"[0217]","Points":7577,"X":300,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633214Z"},{"ID":40573,"Name":"###061###","Points":10495,"X":594,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633214Z"},{"ID":40574,"Name":"KRÓL PAPI WIELKI","Points":9536,"X":631,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633215Z"},{"ID":40575,"Name":"Wioska barbarzyƄska","Points":8895,"X":693,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633215Z"},{"ID":40576,"Name":"ZƂoty ƚwit","Points":4144,"X":593,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633216Z"},{"ID":40577,"Name":"Didek","Points":893,"X":684,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633216Z"},{"ID":40578,"Name":"- 134 - SS","Points":10000,"X":543,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633217Z"},{"ID":40579,"Name":"B03 SƂupsk","Points":4582,"X":345,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633218Z"},{"ID":40580,"Name":"C0014","Points":10362,"X":306,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633218Z"},{"ID":40581,"Name":"006","Points":10019,"X":699,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633219Z"},{"ID":40582,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":649,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633219Z"},{"ID":40583,"Name":"- Fracadabra -","Points":4684,"X":662,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63322Z"},{"ID":40584,"Name":"Wioska barbarzyƄska","Points":7898,"X":331,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63322Z"},{"ID":40585,"Name":"New World","Points":10294,"X":441,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633221Z"},{"ID":40586,"Name":"Twierdza (bula90)","Points":6873,"X":356,"Y":563,"Continent":"K53","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633221Z"},{"ID":40588,"Name":"Gattacka","Points":8843,"X":687,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633222Z"},{"ID":40590,"Name":"B#008","Points":9797,"X":695,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633223Z"},{"ID":40591,"Name":"Child In Time","Points":4960,"X":639,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633223Z"},{"ID":40592,"Name":"D009","Points":5797,"X":612,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633224Z"},{"ID":40593,"Name":"Hofek 19","Points":7600,"X":667,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633224Z"},{"ID":40595,"Name":"skiba","Points":10319,"X":613,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633225Z"},{"ID":40596,"Name":"074g","Points":7495,"X":310,"Y":557,"Continent":"K53","Bonus":4,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633226Z"},{"ID":40597,"Name":"Wioska barbarzyƄska","Points":10057,"X":334,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633226Z"},{"ID":40598,"Name":"???","Points":10636,"X":494,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633227Z"},{"ID":40601,"Name":"KRÓL PAPI WIELKI","Points":7757,"X":694,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633228Z"},{"ID":40602,"Name":"- 192 - SS","Points":7337,"X":560,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633229Z"},{"ID":40603,"Name":"Wioska barbarzyƄska","Points":5787,"X":653,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849066044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633229Z"},{"ID":40604,"Name":"FP025","Points":10393,"X":476,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63323Z"},{"ID":40605,"Name":"004","Points":5416,"X":305,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63323Z"},{"ID":40606,"Name":"029","Points":7764,"X":698,"Y":533,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633231Z"},{"ID":40607,"Name":"011","Points":2779,"X":308,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633232Z"},{"ID":40608,"Name":"psycha sitting","Points":10311,"X":410,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633232Z"},{"ID":40609,"Name":"psycha sitting","Points":6394,"X":416,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633233Z"},{"ID":40610,"Name":"Wioska barbarzyƄska","Points":8848,"X":672,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633234Z"},{"ID":40611,"Name":"East7","Points":3700,"X":657,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633234Z"},{"ID":40612,"Name":"023 LUCKY SHOT","Points":10019,"X":619,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633235Z"},{"ID":40613,"Name":"Angie","Points":4121,"X":639,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633236Z"},{"ID":40614,"Name":"XDX","Points":6869,"X":604,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633236Z"},{"ID":40615,"Name":"Wioska 3","Points":6931,"X":503,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633237Z"},{"ID":40616,"Name":"-26-","Points":2189,"X":642,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633237Z"},{"ID":40617,"Name":"097","Points":3865,"X":699,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633238Z"},{"ID":40619,"Name":"a moĆŒe off ? :)","Points":4330,"X":672,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633239Z"},{"ID":40620,"Name":"EO EO","Points":10083,"X":299,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633239Z"},{"ID":40621,"Name":"~082.","Points":3311,"X":465,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63324Z"},{"ID":40622,"Name":"psycha sitting","Points":9359,"X":412,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63324Z"},{"ID":40623,"Name":"0.10 Szale!","Points":9741,"X":467,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633241Z"},{"ID":40624,"Name":"- 168 - SS","Points":8740,"X":548,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633242Z"},{"ID":40625,"Name":"027. Kopalnia","Points":9926,"X":690,"Y":461,"Continent":"K46","Bonus":8,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633242Z"},{"ID":40626,"Name":"032. nie ma tu nic ciekawego","Points":9894,"X":692,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633243Z"},{"ID":40627,"Name":"Taran","Points":9959,"X":335,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633243Z"},{"ID":40628,"Name":"psycha sitting","Points":10178,"X":456,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633244Z"},{"ID":40629,"Name":"Wioska barbarzyƄska","Points":4219,"X":683,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633245Z"},{"ID":40631,"Name":"061","Points":5999,"X":631,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633245Z"},{"ID":40632,"Name":"#0148 Kamil0ss1","Points":10178,"X":476,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633246Z"},{"ID":40633,"Name":"Dream on","Points":9515,"X":302,"Y":489,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633247Z"},{"ID":40636,"Name":"Piwna 25","Points":4205,"X":679,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699812007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633247Z"},{"ID":40638,"Name":"Dream on","Points":9497,"X":304,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633248Z"},{"ID":40639,"Name":".24. Ilion e","Points":6253,"X":351,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633248Z"},{"ID":40640,"Name":"Wioska barbarzyƄska","Points":8768,"X":691,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633249Z"},{"ID":40641,"Name":"037 - Mroczna Osada","Points":12154,"X":689,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63325Z"},{"ID":40642,"Name":"z 001034","Points":7331,"X":360,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63325Z"},{"ID":40643,"Name":"FAKE OR OFF","Points":9812,"X":418,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633251Z"},{"ID":40644,"Name":"Didek","Points":4626,"X":680,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633252Z"},{"ID":40645,"Name":"psycha sitting","Points":5434,"X":421,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633252Z"},{"ID":40646,"Name":"B.10 duchy serca puszczy","Points":2369,"X":557,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633253Z"},{"ID":40647,"Name":"MojeDnoToWaszSzczyt","Points":9957,"X":496,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633254Z"},{"ID":40648,"Name":"Wioska Lord Deemer","Points":10343,"X":324,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633254Z"},{"ID":40649,"Name":"Wioska bukai","Points":9723,"X":578,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":7563943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633255Z"},{"ID":40650,"Name":"MojeDnoToWaszSzczyt","Points":9726,"X":504,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633256Z"},{"ID":40651,"Name":"SiƂa, Masa, RzeĆșba 12","Points":8625,"X":624,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633256Z"},{"ID":40652,"Name":"#whaj4","Points":7933,"X":482,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633258Z"},{"ID":40653,"Name":"B13","Points":10702,"X":698,"Y":538,"Continent":"K56","Bonus":8,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633258Z"},{"ID":40655,"Name":"R 034","Points":9717,"X":497,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633259Z"},{"ID":40656,"Name":"[B]_[024] Dejv.oldplyr","Points":10259,"X":419,"Y":339,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633259Z"},{"ID":40657,"Name":"bucksbarzyƄskamiiiru","Points":3677,"X":338,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63326Z"},{"ID":40658,"Name":"#0106 Krokodyl","Points":8725,"X":484,"Y":542,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633261Z"},{"ID":40659,"Name":"Wioska barbarzyƄska","Points":8355,"X":390,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633261Z"},{"ID":40660,"Name":"KONFA TO MARKA, NARKA","Points":6220,"X":309,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633262Z"},{"ID":40661,"Name":"???","Points":9966,"X":479,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633263Z"},{"ID":40662,"Name":"Elo Elo 17","Points":6620,"X":314,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633263Z"},{"ID":40664,"Name":"LD041 Out Of Body Experiance","Points":9761,"X":635,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633264Z"},{"ID":40665,"Name":"Wioska barbarzyƄska","Points":9027,"X":663,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633264Z"},{"ID":40666,"Name":"Sernik z Andzynkami","Points":9766,"X":697,"Y":498,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633265Z"},{"ID":40667,"Name":"TWIERDZA .:089:.","Points":7503,"X":681,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633266Z"},{"ID":40668,"Name":"#0278 Marass","Points":9662,"X":473,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633266Z"},{"ID":40669,"Name":"0008 Sir JuriGagarin","Points":10495,"X":441,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633267Z"},{"ID":40670,"Name":"Szale","Points":9502,"X":464,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633267Z"},{"ID":40671,"Name":"psycha sitting","Points":10311,"X":415,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633268Z"},{"ID":40672,"Name":"EO EO","Points":10019,"X":302,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633269Z"},{"ID":40673,"Name":"0012 mackobl14","Points":9371,"X":442,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633269Z"},{"ID":40674,"Name":"013 Alabama","Points":5876,"X":645,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63327Z"},{"ID":40675,"Name":"Wioska Alx18","Points":10019,"X":669,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633271Z"},{"ID":40676,"Name":"C.003","Points":10000,"X":701,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633271Z"},{"ID":40677,"Name":"22.GFRIEND","Points":6775,"X":685,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633272Z"},{"ID":40678,"Name":"Wioska barbarzyƄska","Points":5990,"X":668,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633272Z"},{"ID":40680,"Name":"B02 GdaƄsk","Points":4684,"X":349,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633273Z"},{"ID":40681,"Name":"051g","Points":9809,"X":311,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633274Z"},{"ID":40682,"Name":"D018","Points":7393,"X":358,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633274Z"},{"ID":40683,"Name":"Wioska barbarzyƄska","Points":5188,"X":352,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633275Z"},{"ID":40684,"Name":".achim.","Points":4198,"X":471,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633276Z"},{"ID":40686,"Name":"Wioska barbarzyƄska","Points":4108,"X":528,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":8606809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633276Z"},{"ID":40687,"Name":"New Land 04","Points":3724,"X":337,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633277Z"},{"ID":40688,"Name":"Klaudek24","Points":3170,"X":640,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633278Z"},{"ID":40689,"Name":"013","Points":10019,"X":700,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633278Z"},{"ID":40690,"Name":"018.Stradi","Points":10495,"X":434,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633279Z"},{"ID":40691,"Name":"ZA28","Points":9835,"X":320,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633279Z"},{"ID":40692,"Name":"D015","Points":10218,"X":615,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63328Z"},{"ID":40693,"Name":"C.004","Points":10000,"X":697,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633281Z"},{"ID":40694,"Name":"Forteca*008*","Points":6442,"X":531,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633281Z"},{"ID":40695,"Name":"Rogatki 5","Points":3774,"X":314,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633282Z"},{"ID":40697,"Name":"RTS 75","Points":10183,"X":573,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633283Z"},{"ID":40698,"Name":"Jan NEW2 Ost K","Points":9883,"X":688,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633283Z"},{"ID":40699,"Name":"wojo","Points":10083,"X":396,"Y":330,"Continent":"K33","Bonus":3,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633284Z"},{"ID":40700,"Name":"Wioska Rychont","Points":1091,"X":378,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":1668965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633285Z"},{"ID":40701,"Name":"Wioska barbarzyƄska","Points":4065,"X":314,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633285Z"},{"ID":40702,"Name":"Wioska barbarzyƄska","Points":4361,"X":355,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633286Z"},{"ID":40703,"Name":"016 VWF Wioska barbarzyƄska","Points":6151,"X":311,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633287Z"},{"ID":40704,"Name":"2.Rozhok","Points":9976,"X":412,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":849098648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633287Z"},{"ID":40705,"Name":"Wioska barbarzyƄska","Points":8016,"X":403,"Y":363,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633288Z"},{"ID":40706,"Name":"007","Points":10019,"X":698,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633288Z"},{"ID":40707,"Name":"PóƂnocny Bagdad","Points":9835,"X":615,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633289Z"},{"ID":40708,"Name":"Wioska barbarzyƄska","Points":5815,"X":308,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63329Z"},{"ID":40709,"Name":"Wioska barbarzyƄska","Points":8003,"X":341,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63329Z"},{"ID":40710,"Name":"203...segador","Points":10654,"X":450,"Y":305,"Continent":"K34","Bonus":6,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633291Z"},{"ID":40711,"Name":"X 007","Points":2550,"X":596,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633292Z"},{"ID":40712,"Name":"FAKE OR OFF","Points":9833,"X":421,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633292Z"},{"ID":40713,"Name":"ZA09","Points":9772,"X":322,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633293Z"},{"ID":40714,"Name":"005","Points":4298,"X":641,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633294Z"},{"ID":40715,"Name":"B#027","Points":4442,"X":680,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633294Z"},{"ID":40716,"Name":"[0049]","Points":10495,"X":432,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633295Z"},{"ID":40717,"Name":"Gattacka","Points":9551,"X":687,"Y":439,"Continent":"K46","Bonus":1,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633296Z"},{"ID":40719,"Name":"###062###","Points":10495,"X":594,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633296Z"},{"ID":40721,"Name":"Wow9","Points":8591,"X":366,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633297Z"},{"ID":40722,"Name":"###063###","Points":10495,"X":580,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633297Z"},{"ID":40724,"Name":"Na KraƄcu ƚwiata 011","Points":6061,"X":630,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633298Z"},{"ID":40725,"Name":"Wioska barbarzyƄska","Points":9113,"X":654,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633299Z"},{"ID":40726,"Name":"psycha sitting","Points":10311,"X":410,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633299Z"},{"ID":40728,"Name":"Jan Ost","Points":8837,"X":690,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6333Z"},{"ID":40729,"Name":"040","Points":10019,"X":449,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6333Z"},{"ID":40730,"Name":"Szlachcic","Points":6974,"X":380,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633301Z"},{"ID":40731,"Name":"Wioska barbarzyƄska","Points":3471,"X":630,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633301Z"},{"ID":40732,"Name":"TWIERDZA .:082:.","Points":8208,"X":687,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633302Z"},{"ID":40733,"Name":"B006","Points":9985,"X":515,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633302Z"},{"ID":40734,"Name":"D.015","Points":6722,"X":394,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633303Z"},{"ID":40736,"Name":"No.26","Points":1575,"X":457,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633303Z"},{"ID":40737,"Name":"Twierdza 1","Points":10971,"X":511,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633304Z"},{"ID":40738,"Name":"~081.","Points":3946,"X":469,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633304Z"},{"ID":40739,"Name":"012. Snotinghamscire","Points":6611,"X":377,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633305Z"},{"ID":40742,"Name":"080 invidia","Points":8783,"X":518,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633305Z"},{"ID":40743,"Name":"Didek","Points":10336,"X":687,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633306Z"},{"ID":40744,"Name":"z181_16","Points":9520,"X":312,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633306Z"},{"ID":40745,"Name":"008","Points":10019,"X":701,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633307Z"},{"ID":40746,"Name":"034 E Tenerife","Points":10143,"X":700,"Y":530,"Continent":"K57","Bonus":1,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633308Z"},{"ID":40747,"Name":"OrzeƂ 11","Points":4354,"X":692,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633308Z"},{"ID":40748,"Name":"025","Points":6689,"X":630,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633309Z"},{"ID":40749,"Name":"003","Points":9653,"X":677,"Y":416,"Continent":"K46","Bonus":3,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633309Z"},{"ID":40750,"Name":"-05-","Points":6526,"X":555,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63331Z"},{"ID":40752,"Name":"003","Points":6537,"X":306,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63331Z"},{"ID":40753,"Name":"B3.","Points":3753,"X":310,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633311Z"},{"ID":40754,"Name":"Taran","Points":7532,"X":323,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633311Z"},{"ID":40755,"Name":"Gattacka","Points":9004,"X":688,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633312Z"},{"ID":40756,"Name":"005","Points":10654,"X":588,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633312Z"},{"ID":40757,"Name":"Winterhome.076","Points":8854,"X":513,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633313Z"},{"ID":40758,"Name":"*197*","Points":10211,"X":361,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633313Z"},{"ID":40759,"Name":"B2.","Points":3666,"X":310,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633314Z"},{"ID":40760,"Name":"Na KraƄcu ƚwiata 010","Points":6722,"X":627,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633314Z"},{"ID":40762,"Name":"Wioska ll","Points":12154,"X":319,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633315Z"},{"ID":40763,"Name":"EO EO","Points":10495,"X":306,"Y":521,"Continent":"K53","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633315Z"},{"ID":40764,"Name":"Wrzoski Bida","Points":8671,"X":687,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633316Z"},{"ID":40765,"Name":"Twierdza 6zzz","Points":5895,"X":510,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633316Z"},{"ID":40766,"Name":"psycha sitting","Points":10178,"X":421,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633317Z"},{"ID":40767,"Name":"Wioska 6","Points":4920,"X":340,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633318Z"},{"ID":40768,"Name":"Osada koczownikĂłw","Points":2809,"X":356,"Y":629,"Continent":"K63","Bonus":7,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633318Z"},{"ID":40769,"Name":"A6.","Points":4534,"X":313,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633319Z"},{"ID":40770,"Name":"Wioska barbarzyƄska1","Points":9276,"X":392,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633319Z"},{"ID":40771,"Name":"Szale","Points":8615,"X":462,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63332Z"},{"ID":40772,"Name":"027 invidia","Points":10104,"X":530,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63332Z"},{"ID":40773,"Name":"Po maƂpce?","Points":9815,"X":700,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633321Z"},{"ID":40774,"Name":"-4-","Points":10401,"X":325,"Y":596,"Continent":"K53","Bonus":2,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633321Z"},{"ID":40775,"Name":"4.C","Points":8615,"X":456,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633322Z"},{"ID":40776,"Name":"Wioska barbarzyƄska","Points":3614,"X":682,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633322Z"},{"ID":40777,"Name":"BRICKLEBERRY","Points":10311,"X":554,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633323Z"},{"ID":40778,"Name":"Wioska barbarzyƄska","Points":4568,"X":354,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633324Z"},{"ID":40779,"Name":"O099","Points":9227,"X":347,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633324Z"},{"ID":40780,"Name":"000 Plutosea","Points":6871,"X":317,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633325Z"},{"ID":40781,"Name":"S007","Points":9204,"X":600,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633325Z"},{"ID":40782,"Name":"F4T4L","Points":9962,"X":702,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633326Z"},{"ID":40783,"Name":"019","Points":9482,"X":475,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633326Z"},{"ID":40784,"Name":"C04 Grudziądz","Points":5252,"X":348,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633327Z"},{"ID":40785,"Name":"Kasia xd","Points":10495,"X":703,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633327Z"},{"ID":40786,"Name":"C0261","Points":10495,"X":303,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633328Z"},{"ID":40787,"Name":"Lord Lord Franek .#140","Points":10523,"X":511,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633328Z"},{"ID":40788,"Name":"Out of Touch","Points":9059,"X":321,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633329Z"},{"ID":40789,"Name":"a moĆŒe off ? :)","Points":5393,"X":678,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633329Z"},{"ID":40790,"Name":"039. Night Raid","Points":9908,"X":486,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63333Z"},{"ID":40791,"Name":"C0122","Points":10452,"X":300,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63333Z"},{"ID":40792,"Name":"TWIERDZA .:081:.","Points":9550,"X":685,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633331Z"},{"ID":40793,"Name":"Taran","Points":8768,"X":328,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633331Z"},{"ID":40794,"Name":"024","Points":8705,"X":701,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633332Z"},{"ID":40795,"Name":"267...gulden","Points":10283,"X":460,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633332Z"},{"ID":40797,"Name":"New World","Points":10294,"X":445,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633333Z"},{"ID":40798,"Name":"Z02","Points":9835,"X":317,"Y":415,"Continent":"K43","Bonus":1,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633334Z"},{"ID":40799,"Name":"Wioska barbarzyƄska","Points":2412,"X":342,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633334Z"},{"ID":40800,"Name":"Wioska barbarzyƄska","Points":3604,"X":681,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633335Z"},{"ID":40801,"Name":"KHORINIS","Points":5506,"X":372,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849099924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633335Z"},{"ID":40802,"Name":"Out of Touch","Points":9486,"X":315,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633336Z"},{"ID":40803,"Name":"002","Points":10373,"X":472,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633336Z"},{"ID":40804,"Name":"Dream on","Points":9697,"X":300,"Y":483,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633337Z"},{"ID":40805,"Name":"C.005","Points":10000,"X":702,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633338Z"},{"ID":40806,"Name":"psycha sitting","Points":10178,"X":410,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633338Z"},{"ID":40807,"Name":"K35 - [025] Before Land","Points":9570,"X":587,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633339Z"},{"ID":40808,"Name":"C.001","Points":10000,"X":699,"Y":490,"Continent":"K46","Bonus":8,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633339Z"},{"ID":40809,"Name":"TWIERDZA .:053:.","Points":9427,"X":681,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63334Z"},{"ID":40810,"Name":"C0096","Points":10362,"X":305,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633341Z"},{"ID":40811,"Name":"- 222 - SS","Points":4231,"X":555,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633341Z"},{"ID":40812,"Name":"RTS 11","Points":10495,"X":576,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633342Z"},{"ID":40813,"Name":"033","Points":7269,"X":700,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633342Z"},{"ID":40814,"Name":"wieƛ5","Points":7161,"X":657,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633343Z"},{"ID":40815,"Name":"Wioska barbarzyƄska","Points":6179,"X":690,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633343Z"},{"ID":40817,"Name":"Visca Barca","Points":9761,"X":666,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633344Z"},{"ID":40818,"Name":"[0050]","Points":10495,"X":442,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633344Z"},{"ID":40819,"Name":"AAA","Points":10922,"X":529,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633345Z"},{"ID":40820,"Name":"Wioska barbarzyƄska","Points":8854,"X":674,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633345Z"},{"ID":40821,"Name":"015. Northwic","Points":6876,"X":381,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":7775311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633346Z"},{"ID":40822,"Name":"17. Awangarda Postępu","Points":9362,"X":688,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633347Z"},{"ID":40823,"Name":"0002","Points":4897,"X":424,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633347Z"},{"ID":40824,"Name":"C0092","Points":10362,"X":301,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633348Z"},{"ID":40825,"Name":"Dream on","Points":9515,"X":303,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633348Z"},{"ID":40826,"Name":"0007 Vibrus","Points":10025,"X":474,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633349Z"},{"ID":40827,"Name":"000 Plutosea","Points":5518,"X":314,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633349Z"},{"ID":40828,"Name":"Wioska 25","Points":5917,"X":679,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63335Z"},{"ID":40830,"Name":"No.23","Points":5084,"X":469,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63335Z"},{"ID":40831,"Name":"Dąbrowa 0026","Points":2177,"X":317,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633351Z"},{"ID":40832,"Name":"Wioska barbarzyƄska2o","Points":7730,"X":394,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633351Z"},{"ID":40833,"Name":"skiba","Points":10319,"X":613,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633352Z"},{"ID":40834,"Name":"C0082","Points":10362,"X":300,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633353Z"},{"ID":40835,"Name":"Wioska barbarzyƄska","Points":7749,"X":666,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633353Z"},{"ID":40836,"Name":"Dream on","Points":9075,"X":305,"Y":501,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633354Z"},{"ID":40837,"Name":"Wioska barbarzyƄska","Points":6441,"X":687,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633354Z"},{"ID":40838,"Name":"14. Karol II","Points":9362,"X":689,"Y":488,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633355Z"},{"ID":40839,"Name":"Wioska barbarzyƄska","Points":8102,"X":384,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633355Z"},{"ID":40840,"Name":"Sernik z Andzynkami","Points":9744,"X":696,"Y":496,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633356Z"},{"ID":40841,"Name":"Wioska barbarzyƄska","Points":9062,"X":674,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633356Z"},{"ID":40842,"Name":"SOKzGUMIjagĂłd","Points":8128,"X":645,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633357Z"},{"ID":40843,"Name":"Dream on","Points":9539,"X":306,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633357Z"},{"ID":40844,"Name":"psycha sitting","Points":10178,"X":419,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633358Z"},{"ID":40845,"Name":"New World","Points":10292,"X":427,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633358Z"},{"ID":40846,"Name":"0024. Y -","Points":4483,"X":694,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633359Z"},{"ID":40847,"Name":"C0123","Points":10362,"X":303,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63336Z"},{"ID":40848,"Name":"#0233 Kamileq69 dar","Points":10178,"X":471,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63336Z"},{"ID":40849,"Name":"Rogatki4","Points":3892,"X":312,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633361Z"},{"ID":40850,"Name":"Topornik 3","Points":11130,"X":649,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633361Z"},{"ID":40851,"Name":"031","Points":6389,"X":305,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633362Z"},{"ID":40852,"Name":"146","Points":10311,"X":550,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633362Z"},{"ID":40853,"Name":"psycha sitting","Points":9936,"X":410,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633363Z"},{"ID":40854,"Name":"Paruwland","Points":3075,"X":584,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":849099505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633363Z"},{"ID":40855,"Name":"*INTERTWINED*","Points":6085,"X":504,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633364Z"},{"ID":40856,"Name":"0045","Points":4557,"X":571,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633364Z"},{"ID":40857,"Name":"046","Points":5764,"X":301,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633365Z"},{"ID":40858,"Name":"a moĆŒe off ? :)","Points":5084,"X":679,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633365Z"},{"ID":40859,"Name":"015 serniczek forever","Points":10139,"X":504,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633366Z"},{"ID":40860,"Name":"019","Points":9135,"X":395,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633366Z"},{"ID":40861,"Name":"035","Points":7488,"X":697,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633367Z"},{"ID":40862,"Name":"030. Alzenau","Points":10284,"X":695,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633367Z"},{"ID":40863,"Name":"Wioska barbarzyƄska","Points":3368,"X":625,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633368Z"},{"ID":40864,"Name":"[038]","Points":5097,"X":651,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":698305474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633368Z"},{"ID":40867,"Name":"Wioska barbarzyƄska","Points":6225,"X":504,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633369Z"},{"ID":40868,"Name":"BSK3","Points":7667,"X":653,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":849066044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63337Z"},{"ID":40869,"Name":"Wioska mikolajjacek","Points":10362,"X":329,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63337Z"},{"ID":40870,"Name":"WB18","Points":6802,"X":329,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633371Z"},{"ID":40871,"Name":"###064###","Points":10495,"X":592,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633371Z"},{"ID":40872,"Name":"TARAN","Points":8711,"X":547,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633372Z"},{"ID":40873,"Name":"Swoja2","Points":8494,"X":602,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633372Z"},{"ID":40875,"Name":"psycha sitting","Points":6858,"X":399,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633373Z"},{"ID":40876,"Name":"021","Points":10495,"X":402,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633373Z"},{"ID":40877,"Name":"Wioska barbarzyƄska","Points":6317,"X":695,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633374Z"},{"ID":40879,"Name":"C0097","Points":10362,"X":306,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633374Z"},{"ID":40880,"Name":"Wioska 040","Points":9761,"X":646,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633375Z"},{"ID":40881,"Name":"Sosnowiec","Points":2330,"X":549,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633375Z"},{"ID":40882,"Name":"New World","Points":10292,"X":424,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633376Z"},{"ID":40883,"Name":"Dream on","Points":9488,"X":302,"Y":509,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633376Z"},{"ID":40884,"Name":"KRÓL PAPI WIELKI","Points":10187,"X":647,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633377Z"},{"ID":40885,"Name":"@06@","Points":7545,"X":407,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633378Z"},{"ID":40886,"Name":"044- Mroczna Osada","Points":12154,"X":657,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633378Z"},{"ID":40887,"Name":"024 NAWRA","Points":5379,"X":665,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633379Z"},{"ID":40888,"Name":"Wioska barbarzyƄska","Points":8863,"X":669,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633379Z"},{"ID":40889,"Name":"-001-","Points":9318,"X":374,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63338Z"},{"ID":40890,"Name":"Wioska barbarzyƄska","Points":4043,"X":326,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":2418002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63338Z"},{"ID":40891,"Name":"marmag81/03a","Points":6165,"X":303,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633381Z"},{"ID":40892,"Name":"AntoniĂłw","Points":7116,"X":571,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633381Z"},{"ID":40893,"Name":"[0054]","Points":10495,"X":445,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633382Z"},{"ID":40894,"Name":"Wioska barbarzyƄska","Points":2918,"X":395,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":698650509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633382Z"},{"ID":40895,"Name":"Wioska Zorro 022","Points":4120,"X":677,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633383Z"},{"ID":40896,"Name":"psycha sitting","Points":10178,"X":406,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633383Z"},{"ID":40897,"Name":"D_1","Points":6763,"X":530,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":3377827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633384Z"},{"ID":40898,"Name":"C002","Points":9735,"X":608,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633384Z"},{"ID":40899,"Name":"[169]","Points":8028,"X":644,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633385Z"},{"ID":40900,"Name":"KRÓL PAPI WIELKI","Points":9408,"X":646,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633386Z"},{"ID":40901,"Name":"065. hehehe3","Points":10247,"X":699,"Y":463,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633386Z"},{"ID":40902,"Name":"Wioska barbarzyƄska","Points":5374,"X":338,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633387Z"},{"ID":40903,"Name":"[0091]","Points":10495,"X":436,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633387Z"},{"ID":40904,"Name":"Psycho to Marka, Narka !","Points":4562,"X":319,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633388Z"},{"ID":40905,"Name":"018 Azkaban","Points":10559,"X":635,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633388Z"},{"ID":40906,"Name":"a moĆŒe off ? :)","Points":7528,"X":678,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633389Z"},{"ID":40907,"Name":"--01--","Points":10474,"X":342,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633389Z"},{"ID":40908,"Name":"Nalesnik ES","Points":9439,"X":493,"Y":701,"Continent":"K74","Bonus":2,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63339Z"},{"ID":40909,"Name":"A06 Praga","Points":6799,"X":342,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63339Z"},{"ID":40910,"Name":"psycha sitting","Points":6832,"X":418,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633391Z"},{"ID":40911,"Name":"003","Points":10311,"X":703,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633391Z"},{"ID":40912,"Name":"16. hossa incoming","Points":9403,"X":555,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633392Z"},{"ID":40913,"Name":"Wioska barbarzyƄska","Points":1825,"X":617,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633392Z"},{"ID":40914,"Name":"zzz","Points":5864,"X":688,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633393Z"},{"ID":40915,"Name":"UltraInstynkt","Points":9745,"X":612,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633393Z"},{"ID":40916,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":305,"Y":452,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633394Z"},{"ID":40917,"Name":"Szlachcic","Points":5298,"X":311,"Y":542,"Continent":"K53","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633394Z"},{"ID":40918,"Name":"BuNKeR EAST","Points":9835,"X":617,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":8963720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633395Z"},{"ID":40919,"Name":"Wioska barbarzyƄska","Points":8675,"X":383,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633395Z"},{"ID":40920,"Name":"Dream on","Points":9745,"X":301,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633396Z"},{"ID":40921,"Name":"a moĆŒe off ? :)","Points":5076,"X":673,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633397Z"},{"ID":40922,"Name":"C0026","Points":10362,"X":308,"Y":524,"Continent":"K53","Bonus":8,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633397Z"},{"ID":40923,"Name":"B020","Points":10356,"X":523,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633398Z"},{"ID":40924,"Name":"Wioska barbarzyƄska","Points":10290,"X":586,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633398Z"},{"ID":40925,"Name":"275...gulden","Points":10028,"X":458,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633399Z"},{"ID":40926,"Name":"KRÓL PAPI WIELKI","Points":9664,"X":631,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633399Z"},{"ID":40927,"Name":"psycha sitting","Points":10311,"X":404,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6334Z"},{"ID":40928,"Name":"Dream on","Points":9489,"X":301,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6334Z"},{"ID":40929,"Name":"025","Points":8846,"X":701,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633401Z"},{"ID":40930,"Name":"Jan My City 2","Points":6629,"X":691,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633401Z"},{"ID":40932,"Name":"Wioska barbarzyƄska","Points":6807,"X":348,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633402Z"},{"ID":40933,"Name":"Wioska Bochun10","Points":9965,"X":335,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633402Z"},{"ID":40934,"Name":"ZƂoty ƚwit","Points":8200,"X":570,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633403Z"},{"ID":40936,"Name":"-002- sz","Points":2952,"X":359,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633403Z"},{"ID":40937,"Name":"001.Stradi","Points":10495,"X":439,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633404Z"},{"ID":40938,"Name":"ZƂoty ƚwit","Points":3533,"X":586,"Y":325,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633404Z"},{"ID":40939,"Name":"040 Vranje","Points":7726,"X":628,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633405Z"},{"ID":40940,"Name":"0025 Wioska barbarzyƄska","Points":9895,"X":450,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633406Z"},{"ID":40941,"Name":"Tyskie","Points":9951,"X":299,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633406Z"},{"ID":40942,"Name":"K35 - [014] Before Land","Points":9783,"X":578,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633407Z"},{"ID":40943,"Name":"Wioska Marcio7","Points":10002,"X":400,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633407Z"},{"ID":40944,"Name":"Wieƛ 02","Points":4180,"X":338,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633408Z"},{"ID":40946,"Name":"B016","Points":6896,"X":518,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633409Z"},{"ID":40947,"Name":"Biskupice","Points":11581,"X":343,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633409Z"},{"ID":40948,"Name":"AAA","Points":7955,"X":540,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63341Z"},{"ID":40949,"Name":"- 131 - SS","Points":9566,"X":542,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63341Z"},{"ID":40950,"Name":"#0275 Gwen1","Points":3641,"X":470,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633411Z"},{"ID":40951,"Name":"Wyspa_46","Points":6930,"X":510,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633411Z"},{"ID":40952,"Name":"Wioska barbarzyƄska 1","Points":5017,"X":598,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633412Z"},{"ID":40953,"Name":"Didi","Points":10495,"X":680,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633413Z"},{"ID":40954,"Name":"062.","Points":2106,"X":317,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633413Z"},{"ID":40955,"Name":"ƚlimak 5","Points":7010,"X":605,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633414Z"},{"ID":40956,"Name":"Hello there","Points":3443,"X":322,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633414Z"},{"ID":40957,"Name":"0076","Points":10252,"X":533,"Y":691,"Continent":"K65","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633415Z"},{"ID":40958,"Name":"Wioska barbarzyƄska I","Points":4521,"X":577,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":848958556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633415Z"},{"ID":40959,"Name":"XDX","Points":8968,"X":610,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633416Z"},{"ID":40960,"Name":"X 001","Points":10362,"X":596,"Y":330,"Continent":"K35","Bonus":8,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633416Z"},{"ID":40961,"Name":"Wioska 018","Points":7950,"X":672,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633417Z"},{"ID":40962,"Name":"Wioska barbarzyƄska","Points":4028,"X":556,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":849099280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633417Z"},{"ID":40963,"Name":"066","Points":2337,"X":633,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633418Z"},{"ID":40964,"Name":"Taran","Points":10064,"X":326,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633419Z"},{"ID":40965,"Name":"bucksbarzyƄskamiiiru","Points":9374,"X":324,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633419Z"},{"ID":40966,"Name":"Wyspa_29","Points":9638,"X":503,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63342Z"},{"ID":40967,"Name":"Dzik","Points":4488,"X":699,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63342Z"},{"ID":40968,"Name":"Szlachcic","Points":9852,"X":389,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633421Z"},{"ID":40969,"Name":"O137","Points":9835,"X":347,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633421Z"},{"ID":40970,"Name":"- 193 - SS","Points":9195,"X":561,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633422Z"},{"ID":40971,"Name":"Didi","Points":10728,"X":677,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633422Z"},{"ID":40972,"Name":"z181_13","Points":9891,"X":308,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633423Z"},{"ID":40973,"Name":"0040 Wioska barbarzyƄska","Points":9582,"X":450,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633423Z"},{"ID":40974,"Name":"037 Elverum","Points":10186,"X":623,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633424Z"},{"ID":40975,"Name":"008","Points":9071,"X":396,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633424Z"},{"ID":40976,"Name":"009","Points":10019,"X":700,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633425Z"},{"ID":40977,"Name":"Wioska barbarzyƄska","Points":5618,"X":645,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633425Z"},{"ID":40978,"Name":"Wioska barbarzyƄska","Points":10481,"X":582,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633426Z"},{"ID":40979,"Name":"a moĆŒe off ? :)","Points":7165,"X":673,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633427Z"},{"ID":40980,"Name":"0051","Points":10160,"X":568,"Y":686,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633427Z"},{"ID":40981,"Name":"Wioska 1","Points":10040,"X":342,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633428Z"},{"ID":40982,"Name":"037 invidia","Points":9620,"X":529,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633428Z"},{"ID":40983,"Name":"Jan STALINGRAD 88 K","Points":9673,"X":684,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633429Z"},{"ID":40984,"Name":"Czarna 001","Points":9031,"X":383,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633429Z"},{"ID":40985,"Name":"Pallad","Points":5255,"X":689,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63343Z"},{"ID":40986,"Name":"Wieƛ 09","Points":3118,"X":336,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633431Z"},{"ID":40987,"Name":"046.","Points":4791,"X":627,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633431Z"},{"ID":40989,"Name":"Na KraƄcu ƚwiata 009","Points":6890,"X":628,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633432Z"},{"ID":40990,"Name":"Out of Touch","Points":9742,"X":322,"Y":424,"Continent":"K43","Bonus":5,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633432Z"},{"ID":40991,"Name":"209...segador","Points":8728,"X":457,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633433Z"},{"ID":40992,"Name":"C.011","Points":10005,"X":695,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633433Z"},{"ID":40993,"Name":"- 204 - SS","Points":8631,"X":560,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633434Z"},{"ID":40994,"Name":"I097","Points":7551,"X":689,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633435Z"},{"ID":40995,"Name":"Taran","Points":9934,"X":327,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633435Z"},{"ID":40996,"Name":"###017###","Points":10495,"X":585,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633436Z"},{"ID":40997,"Name":"Moldor 13","Points":7648,"X":635,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633436Z"},{"ID":40998,"Name":"16. Zerrikania","Points":9616,"X":696,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633437Z"},{"ID":40999,"Name":"Wioska barbarzyƄska","Points":8644,"X":693,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633437Z"},{"ID":41000,"Name":"###065###","Points":10495,"X":593,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633438Z"},{"ID":41001,"Name":"TWIERDZA .:024:.","Points":10355,"X":686,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633438Z"},{"ID":41002,"Name":"Wioska barbarzyƄska","Points":4235,"X":464,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633439Z"},{"ID":41003,"Name":"wieƛ6","Points":8730,"X":655,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633439Z"},{"ID":41004,"Name":"=0006=","Points":10077,"X":402,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63344Z"},{"ID":41005,"Name":"Dream on","Points":8986,"X":306,"Y":497,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63344Z"},{"ID":41006,"Name":"19.IVE","Points":8769,"X":682,"Y":421,"Continent":"K46","Bonus":6,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633441Z"},{"ID":41007,"Name":"Wioska barbarzyƄska","Points":9938,"X":668,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633441Z"},{"ID":41008,"Name":"z181_14","Points":9886,"X":307,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633442Z"},{"ID":41009,"Name":"Out of Touch","Points":9740,"X":321,"Y":423,"Continent":"K43","Bonus":8,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633443Z"},{"ID":41010,"Name":"Wioska barbarzyƄska","Points":2487,"X":400,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633443Z"},{"ID":41011,"Name":"- 240 - SS","Points":6505,"X":546,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633444Z"},{"ID":41012,"Name":"Sernik z Andzynkami","Points":9797,"X":705,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633444Z"},{"ID":41013,"Name":"Wioska barbarzyƄska","Points":9661,"X":348,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633445Z"},{"ID":41014,"Name":"Cogito Ergo Sum","Points":9269,"X":474,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633445Z"},{"ID":41015,"Name":"o02","Points":9742,"X":616,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633446Z"},{"ID":41016,"Name":"Bimbrovnik","Points":10019,"X":690,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633446Z"},{"ID":41017,"Name":"Winterhome.075","Points":8173,"X":513,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633447Z"},{"ID":41018,"Name":"Zeta Reticuli O","Points":11188,"X":416,"Y":322,"Continent":"K34","Bonus":5,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633447Z"},{"ID":41020,"Name":"Konin","Points":7512,"X":663,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633448Z"},{"ID":41021,"Name":"###066###","Points":10495,"X":597,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633448Z"},{"ID":41022,"Name":"BRZEG JORDANU | 008","Points":4755,"X":693,"Y":521,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633449Z"},{"ID":41023,"Name":"StaƂka 1","Points":3730,"X":350,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699864013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633449Z"},{"ID":41024,"Name":"022.","Points":9310,"X":324,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63345Z"},{"ID":41025,"Name":"K66","Points":9032,"X":628,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63345Z"},{"ID":41026,"Name":"AAA","Points":5023,"X":545,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633451Z"},{"ID":41028,"Name":"040.","Points":2188,"X":318,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633451Z"},{"ID":41029,"Name":"????","Points":12154,"X":466,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633452Z"},{"ID":41030,"Name":"*209*","Points":5910,"X":336,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633453Z"},{"ID":41031,"Name":"psycha sitting","Points":10311,"X":422,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633453Z"},{"ID":41032,"Name":"010","Points":9922,"X":637,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633454Z"},{"ID":41033,"Name":"Wioska barbarzyƄska","Points":6082,"X":338,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633454Z"},{"ID":41034,"Name":"Jan WILCZY SZANIEC","Points":7311,"X":683,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633455Z"},{"ID":41035,"Name":"105 invidia","Points":7025,"X":513,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633455Z"},{"ID":41036,"Name":"Wioska barbarzyƄska","Points":7906,"X":673,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633456Z"},{"ID":41037,"Name":"030","Points":8325,"X":697,"Y":532,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633456Z"},{"ID":41038,"Name":"Sernik z Andzynkami","Points":9730,"X":698,"Y":493,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633457Z"},{"ID":41039,"Name":"XDX","Points":7014,"X":613,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633457Z"},{"ID":41040,"Name":"Wioska barbarzyƄska","Points":3090,"X":313,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633458Z"},{"ID":41041,"Name":"Wioska barbarzyƄska","Points":8113,"X":349,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633458Z"},{"ID":41042,"Name":"Wioska 3","Points":7262,"X":344,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633459Z"},{"ID":41043,"Name":"Wioska barbarzyƄska","Points":8675,"X":370,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633459Z"},{"ID":41044,"Name":"D017","Points":7699,"X":618,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.63346Z"},{"ID":41045,"Name":"Szlachcic","Points":9493,"X":385,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633461Z"},{"ID":41046,"Name":"MojeDnoToWaszSzczyt","Points":9959,"X":503,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633461Z"},{"ID":41047,"Name":"A08","Points":10405,"X":692,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633462Z"},{"ID":41048,"Name":"KRÓL PAPI WIELKI","Points":9949,"X":638,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633462Z"},{"ID":41049,"Name":"Wioska barbarzyƄska","Points":2685,"X":667,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633463Z"},{"ID":41050,"Name":"013. Jorvik","Points":6170,"X":377,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633463Z"},{"ID":41051,"Name":"Osada koczownikĂłw","Points":9470,"X":387,"Y":661,"Continent":"K63","Bonus":2,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.633464Z"},{"ID":41052,"Name":"009","Points":9792,"X":640,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66278Z"},{"ID":41053,"Name":"WƂadcy PóƂnocy 15","Points":5712,"X":694,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662781Z"},{"ID":41054,"Name":"MojeDnoToWaszSzczyt","Points":9959,"X":499,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662781Z"},{"ID":41055,"Name":"Dream on","Points":9488,"X":302,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662781Z"},{"ID":41056,"Name":"EO EO","Points":10083,"X":306,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662782Z"},{"ID":41057,"Name":"New World","Points":9558,"X":436,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662782Z"},{"ID":41058,"Name":"D014","Points":7751,"X":596,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662783Z"},{"ID":41059,"Name":"z 181-A013","Points":6799,"X":350,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662783Z"},{"ID":41060,"Name":"Nikolau","Points":9561,"X":419,"Y":328,"Continent":"K34","Bonus":0,"PlayerID":849072873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662783Z"},{"ID":41061,"Name":"Okocim","Points":8185,"X":299,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662783Z"},{"ID":41063,"Name":"057","Points":4600,"X":666,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662784Z"},{"ID":41065,"Name":"Wioska barbarzyƄska II","Points":4334,"X":575,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":848958556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662784Z"},{"ID":41066,"Name":"C.03 a panicz to dokąd?","Points":6960,"X":548,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662784Z"},{"ID":41067,"Name":"bananowa plantacja","Points":7331,"X":686,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662785Z"},{"ID":41069,"Name":"Dream on","Points":9403,"X":302,"Y":485,"Continent":"K43","Bonus":3,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662785Z"},{"ID":41071,"Name":"AAA","Points":6915,"X":545,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662785Z"},{"ID":41072,"Name":"!36 76 Luncusoara","Points":4869,"X":660,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662786Z"},{"ID":41073,"Name":"Cz hwiah","Points":2777,"X":404,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662786Z"},{"ID":41074,"Name":"041 invidia","Points":9626,"X":521,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662786Z"},{"ID":41075,"Name":"004 barbarzyƄska","Points":5263,"X":405,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":698258283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662787Z"},{"ID":41076,"Name":"###067###","Points":10495,"X":583,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662787Z"},{"ID":41077,"Name":"WB 09","Points":4378,"X":636,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":2269943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662787Z"},{"ID":41079,"Name":"###068###","Points":10495,"X":596,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662787Z"},{"ID":41080,"Name":"Wioska barbarzyƄska","Points":7987,"X":697,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662788Z"},{"ID":41081,"Name":"Wioska barbarzyƄska","Points":10150,"X":695,"Y":522,"Continent":"K56","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662788Z"},{"ID":41082,"Name":"0060","Points":10160,"X":568,"Y":688,"Continent":"K65","Bonus":3,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662788Z"},{"ID":41083,"Name":"Hutki","Points":8063,"X":304,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662789Z"},{"ID":41084,"Name":"Z|009| Udine","Points":7788,"X":460,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662789Z"},{"ID":41085,"Name":"#K66 0005","Points":9761,"X":613,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662789Z"},{"ID":41086,"Name":"Odbudowa Tilburga :)","Points":4359,"X":632,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66279Z"},{"ID":41087,"Name":"Wioska barbarzyƄska","Points":7137,"X":700,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66279Z"},{"ID":41088,"Name":"Wadowice","Points":4825,"X":546,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66279Z"},{"ID":41091,"Name":"FP002","Points":10393,"X":480,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662791Z"},{"ID":41092,"Name":"2.Alicante","Points":9951,"X":570,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662791Z"},{"ID":41093,"Name":"CALL 1070","Points":10495,"X":658,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662791Z"},{"ID":41094,"Name":"Ob Konfederacja","Points":9938,"X":429,"Y":332,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662792Z"},{"ID":41095,"Name":"B018","Points":6732,"X":519,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662792Z"},{"ID":41096,"Name":"028.","Points":8773,"X":328,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662792Z"},{"ID":41097,"Name":"007","Points":9761,"X":660,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662792Z"},{"ID":41098,"Name":"Sibeliusa","Points":3231,"X":479,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662793Z"},{"ID":41099,"Name":"0002","Points":8393,"X":356,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662793Z"},{"ID":41101,"Name":"[0218]","Points":7048,"X":300,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662793Z"},{"ID":41102,"Name":"Wioska Zorro 023","Points":9372,"X":675,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662794Z"},{"ID":41103,"Name":"psycha sitting","Points":10311,"X":422,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662794Z"},{"ID":41104,"Name":"*INTERTWINED*","Points":4635,"X":507,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662794Z"},{"ID":41105,"Name":"B04 Koƛcierzyna","Points":4506,"X":347,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662794Z"},{"ID":41106,"Name":"Wioska Wiki 5","Points":8204,"X":525,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662795Z"},{"ID":41107,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9382,"X":492,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662795Z"},{"ID":41108,"Name":"Wioska Wodzu004","Points":8665,"X":551,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":699201278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662795Z"},{"ID":41109,"Name":"004 Nie bij, dzidzia ucieka","Points":3781,"X":680,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699576407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662795Z"},{"ID":41110,"Name":"008","Points":9740,"X":307,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662796Z"},{"ID":41111,"Name":"B5.","Points":2837,"X":311,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662796Z"},{"ID":41112,"Name":"FAKE OR OFF","Points":9813,"X":408,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662796Z"},{"ID":41113,"Name":"KRÓL PAPI WIELKI","Points":9946,"X":646,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662797Z"},{"ID":41114,"Name":"Halford John Mackinder","Points":9229,"X":355,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":849096649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662797Z"},{"ID":41115,"Name":"Out of Touch","Points":8984,"X":314,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662797Z"},{"ID":41117,"Name":"007","Points":7862,"X":629,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662797Z"},{"ID":41119,"Name":"C0079","Points":10362,"X":304,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662798Z"},{"ID":41121,"Name":"Wioska barbarzyƄska","Points":10476,"X":581,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662798Z"},{"ID":41123,"Name":"Wioska barbarzyƄska","Points":9766,"X":394,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662798Z"},{"ID":41127,"Name":"???","Points":10503,"X":485,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662798Z"},{"ID":41128,"Name":"A07 WiedeƄ","Points":4710,"X":341,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662799Z"},{"ID":41129,"Name":"259...Gulden","Points":10306,"X":458,"Y":302,"Continent":"K34","Bonus":7,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662799Z"},{"ID":41131,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":310,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662799Z"},{"ID":41133,"Name":"Wioska barbarzyƄska","Points":9501,"X":356,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662799Z"},{"ID":41135,"Name":"Mroczny Zamek 025","Points":5180,"X":353,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6628Z"},{"ID":41137,"Name":"Wioska barbarzyƄska","Points":9927,"X":699,"Y":523,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6628Z"},{"ID":41139,"Name":"18. Nazair","Points":7476,"X":697,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6628Z"},{"ID":41141,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":311,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6628Z"},{"ID":41143,"Name":"psycha sitting","Points":6908,"X":407,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662801Z"},{"ID":41144,"Name":"Mako Reactor 1 - B3F","Points":4334,"X":552,"Y":627,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662801Z"},{"ID":41145,"Name":"Wioska barbarzyƄska","Points":6679,"X":533,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662801Z"},{"ID":41147,"Name":"###069###","Points":10495,"X":579,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662801Z"},{"ID":41148,"Name":"Wioska 089","Points":7935,"X":667,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662802Z"},{"ID":41149,"Name":"Wioska 27","Points":3439,"X":678,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662802Z"},{"ID":41150,"Name":"008g","Points":9299,"X":309,"Y":553,"Continent":"K53","Bonus":4,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662802Z"},{"ID":41151,"Name":"147","Points":10311,"X":577,"Y":426,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662802Z"},{"ID":41152,"Name":"002","Points":9368,"X":304,"Y":474,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662803Z"},{"ID":41153,"Name":"Wioska barbarzyƄska","Points":4207,"X":515,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662803Z"},{"ID":41154,"Name":"XDX","Points":9629,"X":612,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662803Z"},{"ID":41155,"Name":"022.","Points":8839,"X":323,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662804Z"},{"ID":41156,"Name":"::: W ::: I","Points":2565,"X":303,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":848917570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662804Z"},{"ID":41158,"Name":"psycha sitting","Points":5534,"X":396,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662804Z"},{"ID":41159,"Name":"Boh81/222","Points":9638,"X":305,"Y":471,"Continent":"K43","Bonus":6,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662804Z"},{"ID":41160,"Name":"C0197","Points":6297,"X":302,"Y":527,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662805Z"},{"ID":41161,"Name":"Twierdza 9zz","Points":6424,"X":513,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662805Z"},{"ID":41163,"Name":"K35 - [015] Before Land","Points":9924,"X":577,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662805Z"},{"ID":41165,"Name":"Moldor 7","Points":8919,"X":631,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662806Z"},{"ID":41166,"Name":"A 040","Points":5767,"X":361,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662806Z"},{"ID":41167,"Name":"004","Points":9899,"X":391,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662806Z"},{"ID":41168,"Name":"EO EO","Points":10019,"X":298,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662806Z"},{"ID":41169,"Name":"Dream on","Points":7805,"X":297,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662807Z"},{"ID":41170,"Name":"East 5","Points":4451,"X":657,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662807Z"},{"ID":41172,"Name":"047 - Nowy Początek...","Points":6797,"X":358,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662807Z"},{"ID":41173,"Name":"Mefedron 07","Points":7863,"X":387,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662807Z"},{"ID":41174,"Name":"C103","Points":5287,"X":365,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662808Z"},{"ID":41175,"Name":"!36 76 Poiana Miculi","Points":9755,"X":660,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662808Z"},{"ID":41176,"Name":"33. The Riddle","Points":5356,"X":558,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662808Z"},{"ID":41177,"Name":"psycha sitting","Points":10311,"X":412,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662809Z"},{"ID":41178,"Name":"Wioska barbarzyƄska","Points":11288,"X":689,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662809Z"},{"ID":41179,"Name":"Sernik z Andzynkami","Points":9718,"X":698,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662809Z"},{"ID":41180,"Name":"O104","Points":9233,"X":348,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662809Z"},{"ID":41181,"Name":"005. GĂłrki Niezbyt MaƂe","Points":6331,"X":648,"Y":636,"Continent":"K66","Bonus":4,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66281Z"},{"ID":41182,"Name":"Wioska -GPR-","Points":5501,"X":337,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66281Z"},{"ID":41183,"Name":"FP028","Points":9919,"X":475,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66281Z"},{"ID":41184,"Name":"039","Points":6108,"X":689,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662811Z"},{"ID":41185,"Name":"FAKE OR OFF","Points":10089,"X":422,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662811Z"},{"ID":41186,"Name":"009","Points":10019,"X":451,"Y":307,"Continent":"K34","Bonus":9,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662811Z"},{"ID":41187,"Name":"001","Points":8414,"X":667,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662812Z"},{"ID":41188,"Name":"Wioska barbarzyƄska","Points":5075,"X":697,"Y":538,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662812Z"},{"ID":41190,"Name":"z 001039","Points":7357,"X":353,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662812Z"},{"ID":41191,"Name":"@17@","Points":2634,"X":406,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662813Z"},{"ID":41192,"Name":"psycha sitting","Points":6564,"X":397,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662813Z"},{"ID":41193,"Name":"bucksbarzyƄskamiiiru","Points":10598,"X":331,"Y":392,"Continent":"K33","Bonus":2,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662813Z"},{"ID":41195,"Name":"New World","Points":10311,"X":426,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662814Z"},{"ID":41196,"Name":"[054] ????","Points":9271,"X":684,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662814Z"},{"ID":41197,"Name":"Szlachcic","Points":10072,"X":389,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662814Z"},{"ID":41198,"Name":"007 wysokie szczęƛcie","Points":10237,"X":525,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662815Z"},{"ID":41199,"Name":"032 Surowy1","Points":5577,"X":692,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662815Z"},{"ID":41200,"Name":"Gattacka","Points":9355,"X":687,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662815Z"},{"ID":41201,"Name":"Napewno to nie jest off","Points":2500,"X":593,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662816Z"},{"ID":41202,"Name":"B#022","Points":9797,"X":691,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662816Z"},{"ID":41203,"Name":"0022 Wioska barbarzyƄska","Points":10201,"X":450,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662816Z"},{"ID":41204,"Name":"Wioska barbarzyƄska","Points":3103,"X":625,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662816Z"},{"ID":41205,"Name":"xxx","Points":10495,"X":692,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662817Z"},{"ID":41206,"Name":"Wioska barbarzyƄska","Points":9812,"X":348,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662817Z"},{"ID":41207,"Name":"???","Points":10503,"X":479,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662817Z"},{"ID":41208,"Name":"B04","Points":11130,"X":695,"Y":550,"Continent":"K56","Bonus":5,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662818Z"},{"ID":41209,"Name":"Wioska barbarzyƄska","Points":7885,"X":477,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662818Z"},{"ID":41210,"Name":"Komornicy 014","Points":7615,"X":349,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662818Z"},{"ID":41211,"Name":"Mniejsze zƂo 0017","Points":9487,"X":438,"Y":312,"Continent":"K34","Bonus":8,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662819Z"},{"ID":41212,"Name":"C0076","Points":10362,"X":305,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662819Z"},{"ID":41213,"Name":"WrocƂaw 001","Points":10160,"X":589,"Y":681,"Continent":"K65","Bonus":8,"PlayerID":699176234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662819Z"},{"ID":41214,"Name":"###070###","Points":10495,"X":579,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662819Z"},{"ID":41215,"Name":"Wioska barbarzyƄska","Points":9079,"X":670,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66282Z"},{"ID":41216,"Name":"OrzeƂ 2","Points":10452,"X":693,"Y":486,"Continent":"K46","Bonus":1,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66282Z"},{"ID":41217,"Name":"Wioska barbarzyƄska","Points":5529,"X":692,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66282Z"},{"ID":41218,"Name":"boh81/01g","Points":9617,"X":304,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662821Z"},{"ID":41219,"Name":"B#002","Points":9797,"X":694,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662821Z"},{"ID":41220,"Name":"-02-","Points":10470,"X":566,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662822Z"},{"ID":41221,"Name":"XIRON","Points":1457,"X":670,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662822Z"},{"ID":41222,"Name":"Wioska 062","Points":9761,"X":654,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662822Z"},{"ID":41223,"Name":"Wioska barbarzyƄska","Points":2641,"X":313,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662822Z"},{"ID":41224,"Name":"KONFA TO MARKA, NARKA","Points":4970,"X":309,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662823Z"},{"ID":41225,"Name":"102","Points":4162,"X":309,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699736959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662823Z"},{"ID":41226,"Name":"ManieK","Points":9173,"X":344,"Y":615,"Continent":"K63","Bonus":7,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662823Z"},{"ID":41227,"Name":"0001","Points":10838,"X":425,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662824Z"},{"ID":41228,"Name":"bucksbarzyƄskamiiiru","Points":7450,"X":330,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662824Z"},{"ID":41230,"Name":"AAA","Points":7765,"X":547,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662824Z"},{"ID":41231,"Name":"010","Points":10019,"X":700,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662825Z"},{"ID":41232,"Name":"Gryfios 021","Points":11717,"X":687,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662825Z"},{"ID":41233,"Name":"Atlantyda","Points":5500,"X":371,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662825Z"},{"ID":41234,"Name":"!36 64 Bancesti","Points":10224,"X":646,"Y":369,"Continent":"K36","Bonus":2,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662826Z"},{"ID":41235,"Name":"B.12 duchy serca puszczy","Points":2488,"X":558,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662826Z"},{"ID":41236,"Name":"Kluczbork","Points":10728,"X":683,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662826Z"},{"ID":41237,"Name":"psycha sitting","Points":10178,"X":400,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662826Z"},{"ID":41238,"Name":"K-F 001","Points":4953,"X":551,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662827Z"},{"ID":41239,"Name":"[173]","Points":7912,"X":564,"Y":556,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662827Z"},{"ID":41240,"Name":"005","Points":6181,"X":680,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662827Z"},{"ID":41241,"Name":"*022 GAWRA*","Points":8610,"X":310,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662828Z"},{"ID":41242,"Name":"#whaj3","Points":10121,"X":480,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662828Z"},{"ID":41243,"Name":"Wioska barbarzyƄska","Points":1988,"X":647,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":9029928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662828Z"},{"ID":41245,"Name":"Wioska barbarzyƄska","Points":6802,"X":312,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662828Z"},{"ID":41246,"Name":"MyszkĂłw","Points":7387,"X":305,"Y":481,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662829Z"},{"ID":41247,"Name":"TWIERDZA .:037:.","Points":10226,"X":692,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662829Z"},{"ID":41248,"Name":"003# Kate","Points":10015,"X":484,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662829Z"},{"ID":41249,"Name":"Wyspa_27","Points":9638,"X":507,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662829Z"},{"ID":41250,"Name":"@12@","Points":4924,"X":404,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66283Z"},{"ID":41251,"Name":"12. Just beginning","Points":9901,"X":552,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66283Z"},{"ID":41252,"Name":"Dream on","Points":9484,"X":303,"Y":495,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66283Z"},{"ID":41253,"Name":"???","Points":11405,"X":464,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66283Z"},{"ID":41254,"Name":"Wiejska1","Points":8440,"X":603,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662831Z"},{"ID":41255,"Name":"Gdynia","Points":5302,"X":480,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662831Z"},{"ID":41256,"Name":"SIEDLISKA","Points":8842,"X":494,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":849100406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662831Z"},{"ID":41257,"Name":"003","Points":10373,"X":479,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662831Z"},{"ID":41258,"Name":"Bankowa","Points":5546,"X":468,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662832Z"},{"ID":41259,"Name":"063.","Points":2484,"X":697,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662832Z"},{"ID":41260,"Name":"FAKE OR OFF","Points":9841,"X":409,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662832Z"},{"ID":41261,"Name":"- Abracadabra -","Points":7433,"X":661,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662832Z"},{"ID":41262,"Name":"ByƂeƛ w porządku 006","Points":9598,"X":373,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662833Z"},{"ID":41263,"Name":"047.","Points":3334,"X":623,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662833Z"},{"ID":41264,"Name":"WiedĆșma - Z 014","Points":3232,"X":309,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662833Z"},{"ID":41265,"Name":"Dream on","Points":9497,"X":306,"Y":496,"Continent":"K43","Bonus":6,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662833Z"},{"ID":41266,"Name":"Trękusek","Points":5369,"X":558,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662834Z"},{"ID":41267,"Name":"Dream on","Points":9505,"X":297,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662834Z"},{"ID":41268,"Name":"KƂobuck","Points":6337,"X":302,"Y":473,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662834Z"},{"ID":41270,"Name":"Wioska barbarzyƄska","Points":9690,"X":349,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662835Z"},{"ID":41272,"Name":"008","Points":8201,"X":656,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662835Z"},{"ID":41273,"Name":"Wioska barbarzyƄska","Points":4311,"X":642,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662835Z"},{"ID":41274,"Name":"a moĆŒe off ? :)","Points":6417,"X":680,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662836Z"},{"ID":41275,"Name":"Wioska barbarzyƄska","Points":9172,"X":341,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662836Z"},{"ID":41276,"Name":"B19","Points":10728,"X":687,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662836Z"},{"ID":41277,"Name":"Taran","Points":9965,"X":336,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662837Z"},{"ID":41278,"Name":"Hello there","Points":8964,"X":324,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662837Z"},{"ID":41280,"Name":"bucksbarzyƄskamiiiru","Points":10299,"X":330,"Y":400,"Continent":"K43","Bonus":2,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662837Z"},{"ID":41281,"Name":"OrzeƂ 8","Points":4885,"X":694,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662838Z"},{"ID":41282,"Name":"130 invidia","Points":9300,"X":503,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662838Z"},{"ID":41283,"Name":"Zadupie","Points":4897,"X":671,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662838Z"},{"ID":41284,"Name":"B004","Points":9955,"X":517,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662839Z"},{"ID":41285,"Name":"Czerwona RĂłĆŒa","Points":3499,"X":350,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":849100006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662839Z"},{"ID":41286,"Name":"z 001041","Points":9114,"X":359,"Y":364,"Continent":"K33","Bonus":2,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662839Z"},{"ID":41287,"Name":"*INTERTWINED*","Points":7062,"X":512,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66284Z"},{"ID":41288,"Name":"K35 - [031] Before Land","Points":6377,"X":573,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66284Z"},{"ID":41290,"Name":"K35 - [020] Before Land","Points":9035,"X":583,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66284Z"},{"ID":41292,"Name":"AAA","Points":10311,"X":541,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66284Z"},{"ID":41293,"Name":"Wioska barbarzyƄska","Points":577,"X":615,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662841Z"},{"ID":41294,"Name":"Wioska barbarzyƄska","Points":8813,"X":701,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662841Z"},{"ID":41295,"Name":"Wioska barbarzyƄska","Points":3478,"X":671,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662841Z"},{"ID":41296,"Name":"Wioska barbarzyƄska","Points":9744,"X":536,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662841Z"},{"ID":41297,"Name":"A05 WrocƂaw","Points":4986,"X":345,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662842Z"},{"ID":41299,"Name":"C0009","Points":10362,"X":304,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662842Z"},{"ID":41300,"Name":"Wioska barbarzyƄska","Points":2061,"X":642,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662842Z"},{"ID":41301,"Name":"z181_15","Points":9883,"X":306,"Y":439,"Continent":"K43","Bonus":5,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662842Z"},{"ID":41302,"Name":"Wioska barbarzyƄska","Points":4578,"X":550,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662843Z"},{"ID":41303,"Name":"TWIERDZA .:045:.","Points":10228,"X":687,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662843Z"},{"ID":41304,"Name":"Kiedyƛ Wielki Wojownik","Points":7185,"X":592,"Y":349,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662843Z"},{"ID":41305,"Name":"ZƂoty ƚwit","Points":6115,"X":568,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662844Z"},{"ID":41306,"Name":"0006. A - Carvahall","Points":10285,"X":616,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662845Z"},{"ID":41307,"Name":"FAKE OR OFF","Points":9820,"X":420,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662845Z"},{"ID":41309,"Name":"Jan Stuttgart Ost","Points":7341,"X":694,"Y":460,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662846Z"},{"ID":41310,"Name":"UltraInstynkt-","Points":7565,"X":585,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662846Z"},{"ID":41311,"Name":"008. GĂłrki PƂaskie","Points":6317,"X":650,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662847Z"},{"ID":41312,"Name":"Wioska barbarzyƄska","Points":9383,"X":353,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662848Z"},{"ID":41313,"Name":"STRAĆ»AK 1","Points":4495,"X":605,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662848Z"},{"ID":41314,"Name":"013 GĂłrki MagĂłrki","Points":6120,"X":645,"Y":643,"Continent":"K66","Bonus":3,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662849Z"},{"ID":41315,"Name":"029.Stradi","Points":10495,"X":427,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662849Z"},{"ID":41316,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":649,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66285Z"},{"ID":41317,"Name":"0014","Points":4738,"X":649,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662851Z"},{"ID":41318,"Name":"5.C","Points":9126,"X":453,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662851Z"},{"ID":41320,"Name":"Out of Touch","Points":6021,"X":316,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662852Z"},{"ID":41322,"Name":"Zagroda7","Points":6153,"X":604,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662852Z"},{"ID":41323,"Name":"MSWO-1","Points":12075,"X":465,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662852Z"},{"ID":41324,"Name":"20. Metinna","Points":8051,"X":698,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662853Z"},{"ID":41325,"Name":"New World","Points":8847,"X":434,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662853Z"},{"ID":41326,"Name":"Wyspa_37","Points":9638,"X":501,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662854Z"},{"ID":41328,"Name":"Didek","Points":5635,"X":680,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662854Z"},{"ID":41329,"Name":"053 onek666","Points":10160,"X":614,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662855Z"},{"ID":41330,"Name":"AAA","Points":8573,"X":534,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662855Z"},{"ID":41331,"Name":"037.Stradi","Points":10495,"X":434,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662856Z"},{"ID":41332,"Name":"086 invidia","Points":9716,"X":517,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662856Z"},{"ID":41333,"Name":"#0270 Gwen1","Points":6472,"X":474,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662857Z"},{"ID":41334,"Name":"Taran","Points":9965,"X":334,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662858Z"},{"ID":41335,"Name":"#0213 Segadorr dar","Points":10178,"X":448,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662858Z"},{"ID":41336,"Name":"2.Malaga","Points":5943,"X":572,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662859Z"},{"ID":41338,"Name":"Wow12","Points":7035,"X":362,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66286Z"},{"ID":41339,"Name":"psycha sitting","Points":10268,"X":423,"Y":654,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662861Z"},{"ID":41340,"Name":"O062","Points":9882,"X":346,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662861Z"},{"ID":41341,"Name":"FP032","Points":10122,"X":474,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662862Z"},{"ID":41342,"Name":"Wioska barbarzyƄska","Points":5474,"X":695,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662863Z"},{"ID":41343,"Name":"026.Stradi","Points":10495,"X":429,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662863Z"},{"ID":41344,"Name":"#018. Marco Polo","Points":8410,"X":451,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662864Z"},{"ID":41345,"Name":"- 202 - SS","Points":6906,"X":535,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662865Z"},{"ID":41346,"Name":"008 internacionale","Points":10068,"X":347,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662866Z"},{"ID":41347,"Name":"FAKE OR OFF","Points":9812,"X":410,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662866Z"},{"ID":41348,"Name":"Wioska barbarzyƄska","Points":6612,"X":525,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662867Z"},{"ID":41349,"Name":"Wioska barbarzyƄska","Points":3506,"X":338,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662868Z"},{"ID":41350,"Name":"Kiedyƛ Wielki Wojownik","Points":10838,"X":592,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662869Z"},{"ID":41351,"Name":"###071###","Points":10495,"X":596,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662869Z"},{"ID":41353,"Name":"MirĂłw","Points":7206,"X":571,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66287Z"},{"ID":41354,"Name":"0255","Points":10083,"X":544,"Y":662,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662871Z"},{"ID":41356,"Name":"C0194","Points":10072,"X":302,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662872Z"},{"ID":41357,"Name":"Wioska barbarzyƄska","Points":7684,"X":382,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662872Z"},{"ID":41358,"Name":"08. Kaedwen","Points":9849,"X":695,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662873Z"},{"ID":41359,"Name":"New World","Points":9880,"X":433,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662874Z"},{"ID":41360,"Name":"036.Stradi","Points":10479,"X":427,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662875Z"},{"ID":41361,"Name":"068","Points":3223,"X":628,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662876Z"},{"ID":41363,"Name":"Ave Why!","Points":1684,"X":314,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662877Z"},{"ID":41364,"Name":"Wioska barbarzyƄska","Points":7974,"X":696,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662877Z"},{"ID":41365,"Name":"11.STAYC","Points":8510,"X":687,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662878Z"},{"ID":41368,"Name":"Wioska barbarzyƄska","Points":10002,"X":530,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662879Z"},{"ID":41369,"Name":"Wyspa_26","Points":9638,"X":508,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66288Z"},{"ID":41371,"Name":"Wioska barbarzyƄska","Points":4969,"X":668,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662881Z"},{"ID":41372,"Name":"Wioska barbarzyƄska","Points":3851,"X":309,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662882Z"},{"ID":41373,"Name":"101 invidia","Points":7304,"X":519,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662882Z"},{"ID":41374,"Name":"072","Points":9549,"X":692,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662883Z"},{"ID":41375,"Name":"002","Points":9533,"X":380,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662884Z"},{"ID":41376,"Name":"017 Kettering Road","Points":7708,"X":609,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662884Z"},{"ID":41377,"Name":"Trękus","Points":4801,"X":557,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662885Z"},{"ID":41378,"Name":"KRÓL PAPI WIELKI","Points":10427,"X":650,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662886Z"},{"ID":41379,"Name":"A 020","Points":8101,"X":364,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662887Z"},{"ID":41380,"Name":"###018###","Points":10495,"X":591,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662887Z"},{"ID":41381,"Name":"Wioska barbarzyƄska","Points":2847,"X":696,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662888Z"},{"ID":41382,"Name":"Oslo","Points":2030,"X":516,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662889Z"},{"ID":41383,"Name":"028.Stradi","Points":10495,"X":435,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66289Z"},{"ID":41384,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":301,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662891Z"},{"ID":41385,"Name":"0008","Points":6871,"X":422,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662891Z"},{"ID":41386,"Name":"Wilk","Points":7225,"X":698,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662892Z"},{"ID":41387,"Name":"Wioska barbarzyƄska","Points":9849,"X":377,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662893Z"},{"ID":41388,"Name":"Wioska barbarzyƄska","Points":10495,"X":587,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662894Z"},{"ID":41389,"Name":"OSADA02","Points":4899,"X":603,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662895Z"},{"ID":41390,"Name":"0114","Points":7984,"X":374,"Y":660,"Continent":"K63","Bonus":3,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662896Z"},{"ID":41391,"Name":"Wachowiaka","Points":2858,"X":479,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662896Z"},{"ID":41392,"Name":"Osada koczownikĂłw","Points":10186,"X":326,"Y":604,"Continent":"K63","Bonus":6,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662897Z"},{"ID":41393,"Name":"###009###","Points":10495,"X":592,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662898Z"},{"ID":41394,"Name":"Wioska barbarzyƄska","Points":3032,"X":579,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662898Z"},{"ID":41395,"Name":"Wieƛ 03","Points":8870,"X":333,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662899Z"},{"ID":41396,"Name":"ZA13","Points":9835,"X":319,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6629Z"},{"ID":41397,"Name":"Wioska barbarzyƄska","Points":10337,"X":526,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6629Z"},{"ID":41398,"Name":"025","Points":7636,"X":303,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662901Z"},{"ID":41399,"Name":"New World","Points":10294,"X":446,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662902Z"},{"ID":41400,"Name":"Wioska Zorro 012","Points":5516,"X":678,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662903Z"},{"ID":41401,"Name":"004.Stradi","Points":10495,"X":440,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662903Z"},{"ID":41402,"Name":"Wanda Metropolitano","Points":5653,"X":667,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662904Z"},{"ID":41403,"Name":"@03@","Points":9619,"X":406,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662905Z"},{"ID":41404,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":305,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662906Z"},{"ID":41405,"Name":"Dream on","Points":9488,"X":304,"Y":492,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662906Z"},{"ID":41406,"Name":"FP010","Points":10393,"X":478,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662907Z"},{"ID":41407,"Name":"Wioska barbarzyƄska","Points":8227,"X":402,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662908Z"},{"ID":41408,"Name":"Wioska barbarzyƄska","Points":8439,"X":690,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662908Z"},{"ID":41409,"Name":"08. Nie pyskuj","Points":9105,"X":553,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662909Z"},{"ID":41410,"Name":"D_3","Points":1523,"X":531,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849099797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66291Z"},{"ID":41411,"Name":"Wioska barbarzyƄska","Points":9560,"X":693,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662911Z"},{"ID":41412,"Name":"Kryptonowy grĂłd","Points":3379,"X":314,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662911Z"},{"ID":41414,"Name":"K35 - [021] Before Land","Points":8982,"X":584,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662912Z"},{"ID":41415,"Name":"Szlachcic","Points":4981,"X":372,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662913Z"},{"ID":41416,"Name":"212","Points":9033,"X":431,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662914Z"},{"ID":41417,"Name":"028 Barba 10","Points":2634,"X":309,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662914Z"},{"ID":41419,"Name":"034","Points":8335,"X":700,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662915Z"},{"ID":41420,"Name":"z Wioska 9","Points":5166,"X":362,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662916Z"},{"ID":41421,"Name":"Jan PowerForce K","Points":9630,"X":687,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662916Z"},{"ID":41422,"Name":"Taran","Points":10654,"X":325,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662917Z"},{"ID":41423,"Name":"#0214 Segadorr dar","Points":10178,"X":451,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662918Z"},{"ID":41424,"Name":"Wioska barbarzyƄska","Points":5943,"X":329,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662919Z"},{"ID":41425,"Name":"- 172 - SS","Points":8981,"X":537,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662919Z"},{"ID":41426,"Name":"Szlachcic","Points":10495,"X":381,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66292Z"},{"ID":41427,"Name":"016 Komorniki","Points":6989,"X":674,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662921Z"},{"ID":41428,"Name":"ZZZ","Points":9705,"X":500,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662922Z"},{"ID":41429,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":308,"Y":454,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662923Z"},{"ID":41430,"Name":"DąbrĂłwka NagĂłrna","Points":9482,"X":564,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662923Z"},{"ID":41431,"Name":"ZZZ","Points":6912,"X":512,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662924Z"},{"ID":41432,"Name":"-03-","Points":8461,"X":567,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662925Z"},{"ID":41433,"Name":"[0052]","Points":10495,"X":436,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662925Z"},{"ID":41435,"Name":"C0124","Points":10495,"X":300,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662926Z"},{"ID":41436,"Name":"psycha sitting","Points":9778,"X":424,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662927Z"},{"ID":41437,"Name":"277...gulden","Points":10590,"X":461,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662928Z"},{"ID":41438,"Name":"Wioska barbarzyƄska","Points":2047,"X":469,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":849093576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662928Z"},{"ID":41439,"Name":"0007","Points":7963,"X":424,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662929Z"},{"ID":41441,"Name":"Balbina","Points":4783,"X":524,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66293Z"},{"ID":41442,"Name":"WschĂłd X7","Points":9836,"X":694,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662931Z"},{"ID":41443,"Name":"033 Maine","Points":10268,"X":610,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662931Z"},{"ID":41444,"Name":"Wioska barbarzyƄska","Points":9408,"X":525,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662932Z"},{"ID":41445,"Name":"Wioska BLACK SOLDI LP","Points":8855,"X":305,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":699510045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662933Z"},{"ID":41446,"Name":"023.","Points":3095,"X":322,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662934Z"},{"ID":41447,"Name":"Wioska barbarzyƄska","Points":6397,"X":349,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662934Z"},{"ID":41449,"Name":"Wioska","Points":1966,"X":670,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662935Z"},{"ID":41450,"Name":"*INTERTWINED*","Points":5344,"X":520,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662936Z"},{"ID":41451,"Name":"Wioska barbarzyƄska","Points":7851,"X":693,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662937Z"},{"ID":41452,"Name":"114. Dran","Points":6691,"X":632,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662937Z"},{"ID":41453,"Name":"FAKE OR OFF","Points":9919,"X":422,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662938Z"},{"ID":41454,"Name":"AAA","Points":10068,"X":539,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662939Z"},{"ID":41455,"Name":"Wioska barbarzyƄska","Points":4853,"X":690,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66294Z"},{"ID":41456,"Name":"AAA","Points":9669,"X":542,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66294Z"},{"ID":41457,"Name":"WiedĆșma - Z 016","Points":2309,"X":309,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662941Z"},{"ID":41458,"Name":"bucksbarzyƄskamiiiru","Points":2347,"X":336,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662942Z"},{"ID":41459,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662942Z"},{"ID":41461,"Name":"029. LooK","Points":9966,"X":697,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662943Z"},{"ID":41462,"Name":"z181_27","Points":9756,"X":305,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662944Z"},{"ID":41463,"Name":"Timbuktu","Points":10311,"X":402,"Y":672,"Continent":"K64","Bonus":8,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662944Z"},{"ID":41465,"Name":"MojeDnoToWaszSzczyt","Points":9960,"X":504,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662945Z"},{"ID":41466,"Name":"73.","Points":3668,"X":321,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662946Z"},{"ID":41467,"Name":"psycha sitting","Points":10178,"X":408,"Y":674,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662947Z"},{"ID":41468,"Name":"038.","Points":1521,"X":324,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662947Z"},{"ID":41469,"Name":"szlachcic;taran 3","Points":10362,"X":593,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662948Z"},{"ID":41470,"Name":"z C01 Bydgoszcz","Points":9345,"X":347,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662949Z"},{"ID":41471,"Name":"Wioska barbarzyƄska","Points":10051,"X":340,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662949Z"},{"ID":41472,"Name":"K34 - [158] Before Land","Points":7059,"X":466,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66295Z"},{"ID":41473,"Name":"B019","Points":7099,"X":521,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662951Z"},{"ID":41474,"Name":"ZƂoty ƚwit","Points":7747,"X":568,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662952Z"},{"ID":41475,"Name":"C16","Points":2637,"X":694,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662952Z"},{"ID":41476,"Name":"015","Points":4661,"X":316,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849099463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662953Z"},{"ID":41477,"Name":"!36 75 Fratauti Noi","Points":9458,"X":651,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662954Z"},{"ID":41478,"Name":"007 RVWF Wioska barbarzyƄska","Points":4172,"X":315,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662954Z"},{"ID":41479,"Name":"012 NAWRA","Points":7002,"X":667,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662955Z"},{"ID":41480,"Name":"Mastowis","Points":9885,"X":673,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662956Z"},{"ID":41481,"Name":"AAA","Points":9650,"X":540,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662956Z"},{"ID":41483,"Name":"BRICKLEBERRY","Points":8975,"X":553,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662957Z"},{"ID":41484,"Name":"a moĆŒe off ? :)","Points":4857,"X":675,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662958Z"},{"ID":41485,"Name":"032 invidia","Points":10104,"X":519,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662959Z"},{"ID":41486,"Name":"C0087","Points":10362,"X":299,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662959Z"},{"ID":41487,"Name":"Topornik 4","Points":10654,"X":654,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66296Z"},{"ID":41488,"Name":"035. hehehe","Points":10364,"X":697,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662961Z"},{"ID":41492,"Name":"Wioska barbarzyƄska","Points":10311,"X":348,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662961Z"},{"ID":41493,"Name":"Taran","Points":9962,"X":328,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662962Z"},{"ID":41494,"Name":"A***","Points":2367,"X":694,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662963Z"},{"ID":41495,"Name":"Wioska barbarzyƄska","Points":9740,"X":368,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662963Z"},{"ID":41496,"Name":"psycha sitting","Points":10311,"X":404,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662964Z"},{"ID":41497,"Name":"069- Mroczna Osada","Points":8908,"X":618,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662965Z"},{"ID":41498,"Name":"C0010","Points":10362,"X":304,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662966Z"},{"ID":41499,"Name":"PóƂnocny Bagdad","Points":10311,"X":614,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662966Z"},{"ID":41500,"Name":"KONFA TO MARKA, NARKA","Points":7678,"X":300,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662967Z"},{"ID":41501,"Name":"bƂotna","Points":3794,"X":429,"Y":561,"Continent":"K54","Bonus":0,"PlayerID":699833171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662968Z"},{"ID":41502,"Name":"Wioska kwiatek7777","Points":10362,"X":334,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662969Z"},{"ID":41503,"Name":"040 invidia","Points":9874,"X":521,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66297Z"},{"ID":41504,"Name":"Taran","Points":10433,"X":336,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66297Z"},{"ID":41505,"Name":"A 063","Points":4022,"X":358,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662971Z"},{"ID":41506,"Name":"Nysa","Points":11321,"X":679,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662972Z"},{"ID":41507,"Name":"009","Points":9442,"X":658,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662972Z"},{"ID":41508,"Name":"psycha sitting","Points":10311,"X":420,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662973Z"},{"ID":41509,"Name":"psycha sitting","Points":10178,"X":401,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662974Z"},{"ID":41510,"Name":"Forteca*001*","Points":9521,"X":534,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662975Z"},{"ID":41511,"Name":"Out of Touch","Points":9742,"X":321,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662975Z"},{"ID":41512,"Name":"Lord Lord Franek .#176","Points":12154,"X":516,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662976Z"},{"ID":41513,"Name":"TARAN","Points":8494,"X":537,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662977Z"},{"ID":41514,"Name":"psycha sitting","Points":10178,"X":415,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662978Z"},{"ID":41515,"Name":"023 Osada koczownikĂłw","Points":10160,"X":610,"Y":668,"Continent":"K66","Bonus":3,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662978Z"},{"ID":41516,"Name":"036","Points":7488,"X":696,"Y":515,"Continent":"K56","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662979Z"},{"ID":41517,"Name":"Marmag81","Points":9638,"X":305,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66298Z"},{"ID":41518,"Name":"[0109]","Points":10495,"X":445,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662981Z"},{"ID":41519,"Name":"Domi 9","Points":5315,"X":702,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662981Z"},{"ID":41520,"Name":"C107","Points":3305,"X":363,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662982Z"},{"ID":41521,"Name":"KONFA TO MARKA, NARKA","Points":8672,"X":300,"Y":463,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662983Z"},{"ID":41522,"Name":"WschĂłd X8","Points":10431,"X":699,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662983Z"},{"ID":41523,"Name":"Wioska barbarzyƄska","Points":5240,"X":701,"Y":530,"Continent":"K57","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662984Z"},{"ID":41524,"Name":"Strzelce Opolskie","Points":10393,"X":677,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662985Z"},{"ID":41525,"Name":"004 The Gold Tower","Points":9678,"X":350,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662986Z"},{"ID":41526,"Name":"C0195","Points":8896,"X":300,"Y":528,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662986Z"},{"ID":41527,"Name":"C0203","Points":10145,"X":302,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662987Z"},{"ID":41528,"Name":"FAKE OR OFF","Points":9812,"X":413,"Y":318,"Continent":"K34","Bonus":8,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662988Z"},{"ID":41529,"Name":"ZZZ","Points":9701,"X":461,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662988Z"},{"ID":41530,"Name":"Wioska barbarzyƄska","Points":6380,"X":626,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662989Z"},{"ID":41531,"Name":"!36 64 Sfantu Ilie","Points":8320,"X":646,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66299Z"},{"ID":41532,"Name":"Wioska barbarzyƄska","Points":9925,"X":531,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662991Z"},{"ID":41533,"Name":"007","Points":10280,"X":676,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662991Z"},{"ID":41534,"Name":"Wioska barbarzyƄska","Points":10044,"X":348,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662992Z"},{"ID":41536,"Name":"Wioska Wodzu003","Points":6754,"X":551,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":699201278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662993Z"},{"ID":41537,"Name":"PiekƂo to inni","Points":4246,"X":591,"Y":328,"Continent":"K35","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662993Z"},{"ID":41538,"Name":"A000","Points":3680,"X":461,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662994Z"},{"ID":41539,"Name":"z 001040","Points":7827,"X":352,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662995Z"},{"ID":41540,"Name":"Wioska barbarzyƄska","Points":3792,"X":308,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662996Z"},{"ID":41541,"Name":"Osada koczownikĂłw","Points":2764,"X":618,"Y":339,"Continent":"K36","Bonus":7,"PlayerID":849097312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662996Z"},{"ID":41542,"Name":"Wow6","Points":10039,"X":369,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662997Z"},{"ID":41543,"Name":"001 VLV","Points":4628,"X":560,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":849100656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662998Z"},{"ID":41544,"Name":"Wioska barbarzyƄska","Points":10478,"X":577,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662999Z"},{"ID":41545,"Name":"Wioska barbarzyƄska","Points":9494,"X":624,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.662999Z"},{"ID":41547,"Name":"EO EO","Points":10224,"X":296,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663Z"},{"ID":41548,"Name":"[044] Wioska barbarzyƄska","Points":9211,"X":685,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663001Z"},{"ID":41549,"Name":"005","Points":10469,"X":524,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663001Z"},{"ID":41550,"Name":"093","Points":3018,"X":688,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663002Z"},{"ID":41551,"Name":"002 * Lady Porto *","Points":12154,"X":695,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663003Z"},{"ID":41552,"Name":"[0129]","Points":9413,"X":452,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663004Z"},{"ID":41553,"Name":"BuĆŒka Mleczaku :)","Points":7392,"X":351,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663005Z"},{"ID":41554,"Name":"Zeta Reticuli O","Points":11188,"X":417,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663005Z"},{"ID":41555,"Name":"Waganiec","Points":5036,"X":667,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663006Z"},{"ID":41557,"Name":"stickman 9","Points":8164,"X":596,"Y":669,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663007Z"},{"ID":41558,"Name":"wielki myk","Points":9976,"X":589,"Y":676,"Continent":"K65","Bonus":3,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663007Z"},{"ID":41559,"Name":"Szlachcic","Points":10284,"X":399,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663008Z"},{"ID":41560,"Name":"Wioska barbarzyƄska","Points":2014,"X":304,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663009Z"},{"ID":41561,"Name":"Wioska barbarzyƄska","Points":9955,"X":384,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66301Z"},{"ID":41562,"Name":"Woytkowizna","Points":7258,"X":558,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66301Z"},{"ID":41563,"Name":"Wioska barbarzyƄska","Points":3506,"X":699,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663011Z"},{"ID":41564,"Name":"A000","Points":9924,"X":470,"Y":698,"Continent":"K64","Bonus":5,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663012Z"},{"ID":41565,"Name":"AAA","Points":9029,"X":532,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663012Z"},{"ID":41566,"Name":"023","Points":10019,"X":451,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663013Z"},{"ID":41567,"Name":"Bessa 019","Points":10177,"X":636,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663014Z"},{"ID":41568,"Name":"FAKE OR OFF","Points":9813,"X":411,"Y":319,"Continent":"K34","Bonus":8,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663015Z"},{"ID":41570,"Name":"PƂynie defik pƂynie po polskiej","Points":4499,"X":358,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663015Z"},{"ID":41571,"Name":"Szlachcic","Points":10066,"X":388,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663016Z"},{"ID":41572,"Name":"Wow16","Points":5090,"X":366,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663017Z"},{"ID":41573,"Name":"Z001","Points":10337,"X":526,"Y":300,"Continent":"K35","Bonus":5,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663017Z"},{"ID":41574,"Name":"#0209 Segadorr dar","Points":10178,"X":451,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663018Z"},{"ID":41575,"Name":"Wioska barbarzyƄska","Points":6346,"X":693,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663019Z"},{"ID":41576,"Name":"Wioska Wodzu001","Points":9835,"X":553,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66302Z"},{"ID":41577,"Name":"B01","Points":10362,"X":692,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66302Z"},{"ID":41578,"Name":"Forteca*010*","Points":4415,"X":531,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663021Z"},{"ID":41579,"Name":"TUUU","Points":10311,"X":607,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663022Z"},{"ID":41580,"Name":"014 VWF Wioska barbarzyƄska","Points":5118,"X":310,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663022Z"},{"ID":41581,"Name":"035 Night Raid","Points":8495,"X":493,"Y":702,"Continent":"K74","Bonus":6,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663023Z"},{"ID":41582,"Name":"112 invidia","Points":8988,"X":516,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663024Z"},{"ID":41583,"Name":"Melon7","Points":3515,"X":313,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663025Z"},{"ID":41584,"Name":"I107","Points":5952,"X":694,"Y":444,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663025Z"},{"ID":41585,"Name":"-27-","Points":2620,"X":638,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":699837826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663026Z"},{"ID":41586,"Name":"Dream on","Points":8347,"X":296,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663027Z"},{"ID":41587,"Name":"A04","Points":10702,"X":695,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663027Z"},{"ID":41588,"Name":"EO EO","Points":10252,"X":299,"Y":515,"Continent":"K52","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663028Z"},{"ID":41589,"Name":"Wioska barbarzyƄska","Points":10474,"X":581,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663029Z"},{"ID":41590,"Name":"039Mrozy","Points":6261,"X":477,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663029Z"},{"ID":41591,"Name":"C0125","Points":10495,"X":301,"Y":512,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66303Z"},{"ID":41592,"Name":"055. Likawitos","Points":6432,"X":691,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663031Z"},{"ID":41593,"Name":"Ć»UBR PSYCHIATRYK 012","Points":6210,"X":620,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663032Z"},{"ID":41594,"Name":"Wioska barbarzyƄska","Points":9065,"X":673,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663032Z"},{"ID":41595,"Name":"003","Points":6325,"X":389,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":8839403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663033Z"},{"ID":41596,"Name":"12 Kambr","Points":8979,"X":398,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663034Z"},{"ID":41597,"Name":"ZA03","Points":9835,"X":321,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663034Z"},{"ID":41598,"Name":"Szlachcic","Points":10495,"X":375,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663035Z"},{"ID":41599,"Name":"KRÓL PAPI WIELKI","Points":8886,"X":633,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663036Z"},{"ID":41600,"Name":"Z 01","Points":12154,"X":418,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663036Z"},{"ID":41601,"Name":"Wioska barbarzyƄska","Points":5252,"X":650,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663037Z"},{"ID":41602,"Name":"Mroczny Zamek 026","Points":4805,"X":353,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663038Z"},{"ID":41603,"Name":"Wioska barbarzyƄska","Points":2451,"X":310,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699285160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663039Z"},{"ID":41604,"Name":"0008","Points":3691,"X":354,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663039Z"},{"ID":41605,"Name":"007","Points":10361,"X":702,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66304Z"},{"ID":41606,"Name":"010","Points":6670,"X":666,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663041Z"},{"ID":41607,"Name":"Wioska barbarzyƄska","Points":8822,"X":697,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663041Z"},{"ID":41608,"Name":"psycha sitting","Points":6887,"X":397,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663042Z"},{"ID":41609,"Name":"036","Points":9544,"X":459,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663043Z"},{"ID":41610,"Name":"Bessa 020","Points":10223,"X":636,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663044Z"},{"ID":41611,"Name":"Wyzima","Points":9822,"X":557,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663044Z"},{"ID":41612,"Name":"B014","Points":8069,"X":520,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663045Z"},{"ID":41613,"Name":"Wioska Zorro 019","Points":9160,"X":674,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663046Z"},{"ID":41614,"Name":"Z|008| Genua","Points":6592,"X":458,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663047Z"},{"ID":41615,"Name":"ƁomĆŒa","Points":10627,"X":688,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849100082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663047Z"},{"ID":41616,"Name":"Wioska 004","Points":10061,"X":675,"Y":596,"Continent":"K56","Bonus":7,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663048Z"},{"ID":41617,"Name":"Wygwizdowa 002","Points":10311,"X":636,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663049Z"},{"ID":41618,"Name":"[0124]","Points":9579,"X":447,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663049Z"},{"ID":41619,"Name":"012","Points":10495,"X":423,"Y":685,"Continent":"K64","Bonus":9,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66305Z"},{"ID":41620,"Name":"2.SYNDYKATOR","Points":4269,"X":523,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663051Z"},{"ID":41621,"Name":"08 Villarrubia","Points":6546,"X":378,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663052Z"},{"ID":41624,"Name":"002","Points":6701,"X":390,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":8839403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663052Z"},{"ID":41625,"Name":"XDX","Points":4515,"X":606,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663053Z"},{"ID":41626,"Name":"Manama","Points":9911,"X":512,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663054Z"},{"ID":41627,"Name":"Szlachcic","Points":10005,"X":382,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663054Z"},{"ID":41628,"Name":"201...segador","Points":10787,"X":453,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663055Z"},{"ID":41629,"Name":"Wioska barbarzyƄska","Points":9793,"X":387,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663056Z"},{"ID":41630,"Name":"Dingo","Points":9966,"X":672,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663056Z"},{"ID":41632,"Name":"Szlachcic","Points":9583,"X":677,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663057Z"},{"ID":41633,"Name":"Wioska barbarzyƄska","Points":7699,"X":389,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663058Z"},{"ID":41634,"Name":"New World","Points":7360,"X":430,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663059Z"},{"ID":41635,"Name":"Ave Why!","Points":1117,"X":468,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663059Z"},{"ID":41636,"Name":"z 000 Wioska 12","Points":8538,"X":352,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66306Z"},{"ID":41637,"Name":"B013","Points":6472,"X":521,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663061Z"},{"ID":41638,"Name":"Wioska barbarzyƄska","Points":10237,"X":576,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663061Z"},{"ID":41639,"Name":"B#012","Points":9797,"X":701,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663062Z"},{"ID":41640,"Name":"psycha sitting","Points":10178,"X":424,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663063Z"},{"ID":41641,"Name":"036 - Mroczna Osada","Points":11933,"X":690,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663063Z"},{"ID":41642,"Name":"007 Wioska barbarzyƄska","Points":10160,"X":613,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663064Z"},{"ID":41643,"Name":"Dream on","Points":9485,"X":304,"Y":491,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663065Z"},{"ID":41644,"Name":"[0064]","Points":10495,"X":438,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663066Z"},{"ID":41645,"Name":"BRICKLEBERRY","Points":10311,"X":547,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663066Z"},{"ID":41646,"Name":".33","Points":10971,"X":327,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663067Z"},{"ID":41647,"Name":"MojeDnoToWaszSzczyt","Points":9964,"X":504,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663068Z"},{"ID":41648,"Name":"Oww Konfederacja","Points":5567,"X":607,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663068Z"},{"ID":41649,"Name":"????","Points":8732,"X":487,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663069Z"},{"ID":41650,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":664,"Y":621,"Continent":"K66","Bonus":2,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66307Z"},{"ID":41651,"Name":"B11","Points":8967,"X":695,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663071Z"},{"ID":41652,"Name":"ZZZ","Points":10237,"X":533,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663071Z"},{"ID":41653,"Name":"ZACHOD 008","Points":8114,"X":352,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663072Z"},{"ID":41654,"Name":"- 175 - SS","Points":7305,"X":548,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663073Z"},{"ID":41655,"Name":"CALL 1069","Points":10495,"X":654,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663073Z"},{"ID":41656,"Name":"!36 65 Tibeni","Points":5302,"X":652,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663074Z"},{"ID":41657,"Name":"!36 75 Iaslovat","Points":8513,"X":657,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663075Z"},{"ID":41658,"Name":"B#005","Points":9797,"X":698,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663076Z"},{"ID":41659,"Name":"psycha sitting","Points":10178,"X":409,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663076Z"},{"ID":41660,"Name":"009.","Points":9869,"X":645,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":9048764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663077Z"},{"ID":41661,"Name":"D.025","Points":3589,"X":391,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663078Z"},{"ID":41662,"Name":"Jan My City 1","Points":10198,"X":691,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663078Z"},{"ID":41663,"Name":"Wioska barbarzyƄska","Points":8820,"X":700,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663079Z"},{"ID":41664,"Name":"KRÓL PAPI WIELKI","Points":10625,"X":640,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66308Z"},{"ID":41665,"Name":"psycha sitting","Points":10311,"X":407,"Y":676,"Continent":"K64","Bonus":6,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66308Z"},{"ID":41666,"Name":"Wioska barbarzyƄska","Points":9747,"X":537,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663081Z"},{"ID":41667,"Name":"002","Points":10019,"X":699,"Y":508,"Continent":"K56","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663082Z"},{"ID":41668,"Name":"Nowa 51","Points":9462,"X":683,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663083Z"},{"ID":41669,"Name":"Wioska 8","Points":2892,"X":361,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":3342690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663083Z"},{"ID":41670,"Name":"007","Points":8230,"X":595,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663084Z"},{"ID":41671,"Name":"Wioska barbarzyƄska","Points":3897,"X":685,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663085Z"},{"ID":41672,"Name":"-010- ChwaƂa Imperium XXX","Points":10178,"X":629,"Y":348,"Continent":"K36","Bonus":1,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663085Z"},{"ID":41674,"Name":"psycha sitting","Points":10311,"X":399,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663086Z"},{"ID":41675,"Name":"ZƂoty ƚwit","Points":7450,"X":573,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663087Z"},{"ID":41676,"Name":"-08-","Points":6280,"X":562,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663087Z"},{"ID":41677,"Name":"088 invidia","Points":8171,"X":517,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663088Z"},{"ID":41678,"Name":"Tu jest przyszƂoƛć","Points":6755,"X":662,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663089Z"},{"ID":41679,"Name":"FENDI","Points":2760,"X":306,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66309Z"},{"ID":41680,"Name":"...06 am","Points":10495,"X":670,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66309Z"},{"ID":41681,"Name":"Swoja7","Points":8867,"X":607,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663091Z"},{"ID":41682,"Name":"psycha sitting","Points":10311,"X":414,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663092Z"},{"ID":41683,"Name":"Ny ny","Points":10559,"X":704,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663092Z"},{"ID":41684,"Name":"047","Points":4765,"X":300,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663093Z"},{"ID":41685,"Name":"O088","Points":9867,"X":344,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663094Z"},{"ID":41686,"Name":"TWIERDZA .:086:.","Points":8992,"X":694,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663095Z"},{"ID":41687,"Name":"012. TargĂłwek","Points":10728,"X":699,"Y":472,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663095Z"},{"ID":41688,"Name":"a moĆŒe off ? :)","Points":9227,"X":674,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663096Z"},{"ID":41689,"Name":"009b","Points":5442,"X":312,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663097Z"},{"ID":41690,"Name":"XDX","Points":9050,"X":613,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663097Z"},{"ID":41691,"Name":"202...segador","Points":10787,"X":456,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663098Z"},{"ID":41692,"Name":"z181_07","Points":9885,"X":311,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663099Z"},{"ID":41693,"Name":"New World","Points":10178,"X":470,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6631Z"},{"ID":41694,"Name":"- 133 - SS","Points":10000,"X":544,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6631Z"},{"ID":41695,"Name":"CALL 1050","Points":10365,"X":653,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663101Z"},{"ID":41696,"Name":"C0088","Points":10362,"X":303,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663102Z"},{"ID":41697,"Name":"bucksbarzyƄskamiiiru","Points":2434,"X":339,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663102Z"},{"ID":41698,"Name":"0147","Points":2637,"X":678,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663103Z"},{"ID":41700,"Name":"Wioska barbarzyƄska","Points":3776,"X":308,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663104Z"},{"ID":41701,"Name":"052","Points":9993,"X":534,"Y":674,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663104Z"},{"ID":41702,"Name":"033 invidia","Points":10237,"X":515,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663106Z"},{"ID":41703,"Name":"Marcule","Points":6027,"X":572,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663106Z"},{"ID":41704,"Name":"016 Kuzyn kami","Points":10341,"X":342,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663107Z"},{"ID":41705,"Name":"legit_scam.","Points":6849,"X":552,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663108Z"},{"ID":41706,"Name":"Wioska barbarzyƄska","Points":7791,"X":553,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663108Z"},{"ID":41707,"Name":"!36 74 Sucevita","Points":10181,"X":648,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663109Z"},{"ID":41708,"Name":"S004","Points":9231,"X":599,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66311Z"},{"ID":41710,"Name":"Mefedron 09","Points":5184,"X":393,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663111Z"},{"ID":41711,"Name":"marmag81/03www","Points":9503,"X":297,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663111Z"},{"ID":41712,"Name":"030","Points":10495,"X":419,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663112Z"},{"ID":41713,"Name":"Warkoczynka 1","Points":11188,"X":680,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663113Z"},{"ID":41714,"Name":"Wioska Kugiel102","Points":10019,"X":506,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663113Z"},{"ID":41715,"Name":"Wioska barbarzyƄska","Points":9787,"X":702,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663114Z"},{"ID":41716,"Name":"Wioska barbarzyƄska","Points":10495,"X":575,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663115Z"},{"ID":41717,"Name":"*023 GAWRA*","Points":8893,"X":309,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663116Z"},{"ID":41718,"Name":"!--","Points":2562,"X":647,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663116Z"},{"ID":41719,"Name":"084","Points":4193,"X":698,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663117Z"},{"ID":41720,"Name":"!36 64 Cojocareni","Points":9571,"X":647,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663118Z"},{"ID":41721,"Name":"C0207","Points":10362,"X":300,"Y":537,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663119Z"},{"ID":41722,"Name":"Domi 2","Points":8628,"X":699,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66312Z"},{"ID":41724,"Name":"011","Points":9216,"X":656,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66312Z"},{"ID":41725,"Name":"B.02 duchy serca puszczy","Points":4094,"X":555,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663121Z"},{"ID":41726,"Name":"Ć»UBR PSYCHIATRYK 013","Points":6843,"X":622,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663122Z"},{"ID":41727,"Name":"-04-","Points":7575,"X":557,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663122Z"},{"ID":41729,"Name":"Wioska barbarzyƄska","Points":4720,"X":694,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663123Z"},{"ID":41730,"Name":"Didek","Points":10426,"X":681,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663124Z"},{"ID":41731,"Name":"XDX","Points":7066,"X":603,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663124Z"},{"ID":41732,"Name":"029","Points":9652,"X":456,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663125Z"},{"ID":41733,"Name":"Wioska barbarzyƄska","Points":4718,"X":698,"Y":453,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663126Z"},{"ID":41734,"Name":"001","Points":10495,"X":408,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698258283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663127Z"},{"ID":41735,"Name":"014. Sherwood","Points":6090,"X":377,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663127Z"},{"ID":41736,"Name":"TWIERDZA .:008:.","Points":10275,"X":686,"Y":574,"Continent":"K56","Bonus":1,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663128Z"},{"ID":41737,"Name":"AAA","Points":6588,"X":548,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663129Z"},{"ID":41738,"Name":"aAa Szlaban 6","Points":6709,"X":634,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663129Z"},{"ID":41739,"Name":"Pierwsza Nemora","Points":8328,"X":563,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66313Z"},{"ID":41740,"Name":"015","Points":9997,"X":614,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663131Z"},{"ID":41741,"Name":"###072###","Points":10495,"X":595,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663132Z"},{"ID":41742,"Name":"AlojzĂłw","Points":7227,"X":571,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663132Z"},{"ID":41743,"Name":"Wioska barbarzyƄska","Points":3732,"X":594,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663133Z"},{"ID":41744,"Name":"[041] Wioska barbarzyƄska","Points":9288,"X":687,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663134Z"},{"ID":41745,"Name":"C.04 a panicz to dokąd?","Points":4197,"X":546,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663135Z"},{"ID":41746,"Name":"062. Wioska barbarzyƄska","Points":8700,"X":701,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663135Z"},{"ID":41747,"Name":"FENDI","Points":10591,"X":301,"Y":465,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663136Z"},{"ID":41748,"Name":"K35 - [029] Before Land","Points":10016,"X":575,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663137Z"},{"ID":41749,"Name":"???","Points":7546,"X":489,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663137Z"},{"ID":41750,"Name":"144 invidia","Points":6588,"X":539,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663138Z"},{"ID":41751,"Name":"Gattacka","Points":9718,"X":688,"Y":433,"Continent":"K46","Bonus":4,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663139Z"},{"ID":41752,"Name":"010. Canterbury","Points":10007,"X":387,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66314Z"},{"ID":41753,"Name":"005","Points":10495,"X":702,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66314Z"},{"ID":41754,"Name":"EO EO","Points":10019,"X":301,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663141Z"},{"ID":41755,"Name":"013","Points":9303,"X":644,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663142Z"},{"ID":41756,"Name":"Szlachcic","Points":9282,"X":678,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663143Z"},{"ID":41757,"Name":"z181_03","Points":9888,"X":313,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663143Z"},{"ID":41758,"Name":"BRICKLEBERRY","Points":5264,"X":554,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663144Z"},{"ID":41759,"Name":"Szlachcic","Points":10393,"X":389,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663145Z"},{"ID":41760,"Name":"Zychowicz","Points":6504,"X":358,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":849096649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663145Z"},{"ID":41761,"Name":"Wioska barbarzyƄska","Points":4551,"X":688,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663146Z"},{"ID":41762,"Name":"KRÓL PAPI WIELKI","Points":5931,"X":646,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663147Z"},{"ID":41763,"Name":"komandos48","Points":5070,"X":500,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663147Z"},{"ID":41764,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":301,"Y":456,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663148Z"},{"ID":41765,"Name":"#04","Points":9107,"X":557,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663149Z"},{"ID":41766,"Name":"Winneburg","Points":10220,"X":553,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66315Z"},{"ID":41767,"Name":"K35 - [036] Before Land","Points":12154,"X":576,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66315Z"},{"ID":41769,"Name":"New World","Points":10292,"X":424,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663151Z"},{"ID":41770,"Name":"0003 Wioska barbarzyƄska","Points":10481,"X":443,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663152Z"},{"ID":41771,"Name":"ZZ15","Points":9835,"X":322,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663153Z"},{"ID":41772,"Name":"C0098","Points":10362,"X":302,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663154Z"},{"ID":41773,"Name":"Wioska barbarzyƄska","Points":8839,"X":655,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663154Z"},{"ID":41774,"Name":"Ć»UBR PSYCHIATRYK 020","Points":9993,"X":625,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663155Z"},{"ID":41775,"Name":"017 samobĂłj","Points":10237,"X":542,"Y":700,"Continent":"K75","Bonus":1,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663156Z"},{"ID":41776,"Name":"Wioska barbarzyƄska","Points":9876,"X":379,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663156Z"},{"ID":41777,"Name":"!36 65 Bivolaria","Points":6514,"X":653,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663157Z"},{"ID":41779,"Name":"bucksbarzyƄskamiiiru","Points":2173,"X":338,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663158Z"},{"ID":41780,"Name":"BuƂgarska","Points":3271,"X":667,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663159Z"},{"ID":41781,"Name":"Wioska barbarzyƄska","Points":6432,"X":683,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663159Z"},{"ID":41783,"Name":"psycha sitting","Points":10311,"X":407,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66316Z"},{"ID":41785,"Name":"C0100","Points":10362,"X":301,"Y":517,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663161Z"},{"ID":41786,"Name":"0049 Wioska barbarzyƄska","Points":9537,"X":449,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663161Z"},{"ID":41787,"Name":"Wioska barbarzyƄska","Points":4036,"X":657,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":849041192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663162Z"},{"ID":41788,"Name":"Wioska barbarzyƄska","Points":2451,"X":676,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663163Z"},{"ID":41789,"Name":"Twierdza 02","Points":3662,"X":671,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":8379871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663164Z"},{"ID":41790,"Name":"Osada koczownikĂłwx","Points":9626,"X":338,"Y":391,"Continent":"K33","Bonus":6,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663164Z"},{"ID":41792,"Name":"~079.","Points":5097,"X":467,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663165Z"},{"ID":41793,"Name":"C0126","Points":10362,"X":298,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663166Z"},{"ID":41794,"Name":"WiedĆșma - Z 012","Points":4686,"X":308,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663167Z"},{"ID":41795,"Name":"Wioska barbarzyƄska","Points":4894,"X":315,"Y":569,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663167Z"},{"ID":41796,"Name":"KONFA TO MARKA, NARKA","Points":6801,"X":300,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663168Z"},{"ID":41797,"Name":"Seba1234567","Points":1516,"X":673,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":849099689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663169Z"},{"ID":41798,"Name":"002","Points":10838,"X":302,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663169Z"},{"ID":41799,"Name":"049. KilimandĆŒaro","Points":7747,"X":694,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66317Z"},{"ID":41800,"Name":"043","Points":10495,"X":650,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663171Z"},{"ID":41801,"Name":"Not 2 morrow","Points":10301,"X":472,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663171Z"},{"ID":41802,"Name":"Gattacka","Points":9191,"X":686,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663172Z"},{"ID":41803,"Name":"Wioska barbarzyƄska","Points":9898,"X":364,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663173Z"},{"ID":41804,"Name":"AAA","Points":10311,"X":542,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663174Z"},{"ID":41805,"Name":"a moĆŒe off ? :)","Points":5362,"X":670,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663174Z"},{"ID":41806,"Name":"Wioska barbarzyƄska","Points":10971,"X":394,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663175Z"},{"ID":41807,"Name":"KRÓL PAPI WIELKI","Points":9428,"X":658,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663176Z"},{"ID":41808,"Name":"psycha sitting","Points":10178,"X":402,"Y":671,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663176Z"},{"ID":41809,"Name":"[0120]","Points":9890,"X":447,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663177Z"},{"ID":41810,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":5560,"X":498,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663178Z"},{"ID":41811,"Name":"012","Points":9675,"X":660,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663179Z"},{"ID":41812,"Name":"ZZ01","Points":9702,"X":323,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663179Z"},{"ID":41813,"Name":"*Lonta","Points":9761,"X":574,"Y":636,"Continent":"K65","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66318Z"},{"ID":41814,"Name":"A01","Points":11550,"X":695,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663181Z"},{"ID":41815,"Name":"C002","Points":9592,"X":472,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663181Z"},{"ID":41816,"Name":"020","Points":7025,"X":393,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663182Z"},{"ID":41817,"Name":"spanko","Points":7766,"X":681,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663183Z"},{"ID":41818,"Name":"Wioska barbarzyƄska","Points":7624,"X":697,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663184Z"},{"ID":41819,"Name":"...02 am","Points":10495,"X":671,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663184Z"},{"ID":41820,"Name":"Wioska Paprykk777","Points":1899,"X":428,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":849100134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663185Z"},{"ID":41821,"Name":"Wioska barbarzyƄska","Points":6193,"X":626,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663186Z"},{"ID":41822,"Name":"071","Points":10495,"X":696,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663186Z"},{"ID":41823,"Name":"Wioska 005","Points":5210,"X":701,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663187Z"},{"ID":41824,"Name":"HAPERT","Points":9911,"X":627,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663188Z"},{"ID":41825,"Name":"Wioska barbarzyƄska","Points":10315,"X":590,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663189Z"},{"ID":41826,"Name":"Wieƛ 10","Points":4141,"X":340,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663189Z"},{"ID":41828,"Name":"boh81/33","Points":8165,"X":300,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66319Z"},{"ID":41829,"Name":"Wioska barbarzyƄska","Points":4567,"X":568,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663191Z"},{"ID":41830,"Name":"Szlachcic","Points":9638,"X":677,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663191Z"},{"ID":41832,"Name":"Out of Touch","Points":9570,"X":317,"Y":423,"Continent":"K43","Bonus":9,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663192Z"},{"ID":41833,"Name":"Nowa 36","Points":9134,"X":628,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663193Z"},{"ID":41834,"Name":"Szlachcic","Points":10475,"X":384,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663194Z"},{"ID":41835,"Name":"Dream on","Points":9491,"X":300,"Y":493,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663194Z"},{"ID":41836,"Name":"XDX","Points":8164,"X":616,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663195Z"},{"ID":41837,"Name":"Wioska11","Points":10495,"X":630,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663196Z"},{"ID":41838,"Name":"###073###","Points":10495,"X":592,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663197Z"},{"ID":41840,"Name":"026# Malvine","Points":6083,"X":491,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663197Z"},{"ID":41841,"Name":"*INTERTWINED*","Points":5730,"X":503,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663198Z"},{"ID":41842,"Name":"bucksbarzyƄskamiiiru","Points":7255,"X":327,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663199Z"},{"ID":41843,"Name":"003181","Points":7525,"X":628,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":699872616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663199Z"},{"ID":41844,"Name":"Dream on","Points":9505,"X":299,"Y":494,"Continent":"K42","Bonus":8,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6632Z"},{"ID":41845,"Name":"Wioska Fatality51","Points":5653,"X":324,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699792747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663201Z"},{"ID":41846,"Name":"KRÓL PAPI WIELKI","Points":6761,"X":624,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663202Z"},{"ID":41847,"Name":"Didek","Points":10342,"X":682,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663202Z"},{"ID":41848,"Name":"Wioska barbarzyƄska","Points":9096,"X":689,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663203Z"},{"ID":41849,"Name":"Szlachcic","Points":9490,"X":386,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663204Z"},{"ID":41851,"Name":"032","Points":10160,"X":308,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663204Z"},{"ID":41852,"Name":"Wioska barbarzyƄska","Points":2834,"X":662,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663205Z"},{"ID":41853,"Name":"Wioska barbarzyƄska","Points":6557,"X":388,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663206Z"},{"ID":41854,"Name":"Jan 016 Ost K","Points":9782,"X":694,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663207Z"},{"ID":41855,"Name":"Wioska 05","Points":3155,"X":569,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":849067192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663207Z"},{"ID":41856,"Name":"008. plebi","Points":2475,"X":323,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663208Z"},{"ID":41857,"Name":"-002- sz","Points":5407,"X":356,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663209Z"},{"ID":41858,"Name":"038","Points":9835,"X":310,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66321Z"},{"ID":41859,"Name":"GdaƄsk","Points":8883,"X":511,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66321Z"},{"ID":41860,"Name":"003 trochę czasu minęƂo","Points":10237,"X":525,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663211Z"},{"ID":41861,"Name":"013 * Lady Porto *","Points":7083,"X":698,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":699406750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663212Z"},{"ID":41862,"Name":"Wioska barbarzyƄska","Points":3297,"X":644,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663212Z"},{"ID":41863,"Name":"Brody","Points":5768,"X":565,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663213Z"},{"ID":41864,"Name":"Wioska 077","Points":9032,"X":651,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663214Z"},{"ID":41865,"Name":"129 invidia","Points":10268,"X":504,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663215Z"},{"ID":41866,"Name":"Wioska barbarzyƄska","Points":2588,"X":392,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663215Z"},{"ID":41867,"Name":"066- Mroczna Osada","Points":10496,"X":609,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663216Z"},{"ID":41868,"Name":"045. Night Raid","Points":9811,"X":485,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663217Z"},{"ID":41869,"Name":"asi","Points":4967,"X":649,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":699611673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663217Z"},{"ID":41870,"Name":"B6.","Points":2375,"X":310,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663218Z"},{"ID":41871,"Name":"076","Points":6682,"X":631,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663219Z"},{"ID":41872,"Name":"#K66 0006","Points":4506,"X":610,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66322Z"},{"ID":41873,"Name":"011","Points":3030,"X":672,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":849095963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66322Z"},{"ID":41874,"Name":"-002- sz","Points":4617,"X":357,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663221Z"},{"ID":41875,"Name":"Taran","Points":10200,"X":325,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663222Z"},{"ID":41876,"Name":"Wioska barbarzyƄska","Points":4402,"X":614,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663222Z"},{"ID":41878,"Name":"--18--","Points":9627,"X":328,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663223Z"},{"ID":41879,"Name":"marmag81/03g","Points":6561,"X":302,"Y":467,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663224Z"},{"ID":41880,"Name":"boh81","Points":9617,"X":306,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663225Z"},{"ID":41881,"Name":"bucksbarzyƄskamiiiru","Points":9551,"X":328,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663225Z"},{"ID":41882,"Name":"0016 Wioska barbarzyƄska","Points":9589,"X":439,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663226Z"},{"ID":41883,"Name":"Dream on","Points":8816,"X":304,"Y":507,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663227Z"},{"ID":41884,"Name":"207...segador","Points":10787,"X":446,"Y":308,"Continent":"K34","Bonus":6,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663227Z"},{"ID":41886,"Name":"B8.","Points":2902,"X":310,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663228Z"},{"ID":41887,"Name":"???","Points":10160,"X":485,"Y":305,"Continent":"K34","Bonus":5,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663229Z"},{"ID":41888,"Name":"EE 001","Points":9540,"X":694,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66323Z"},{"ID":41889,"Name":"Wioska barbarzyƄska","Points":9607,"X":524,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66323Z"},{"ID":41890,"Name":"z rondalek","Points":10210,"X":358,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663231Z"},{"ID":41891,"Name":"Wioska barbarzyƄska","Points":6908,"X":680,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663232Z"},{"ID":41892,"Name":"Tuchomie","Points":4088,"X":469,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663232Z"},{"ID":41893,"Name":"XDX","Points":5010,"X":597,"Y":321,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663233Z"},{"ID":41894,"Name":"Saska Kępa1","Points":4364,"X":367,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663234Z"},{"ID":41895,"Name":"Dream on","Points":9587,"X":297,"Y":495,"Continent":"K42","Bonus":3,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663235Z"},{"ID":41896,"Name":"Wioska barbarzyƄska","Points":10475,"X":585,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663235Z"},{"ID":41897,"Name":".achim.","Points":6050,"X":489,"Y":298,"Continent":"K24","Bonus":3,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663236Z"},{"ID":41898,"Name":"002 VLV","Points":9782,"X":559,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849100656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663237Z"},{"ID":41899,"Name":"XDX","Points":4521,"X":594,"Y":327,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663237Z"},{"ID":41900,"Name":"Dream on","Points":8449,"X":299,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663238Z"},{"ID":41901,"Name":"KRÓL PAPI WIELKI","Points":10227,"X":646,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663239Z"},{"ID":41902,"Name":"TWIERDZA .:079:.","Points":9634,"X":686,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663239Z"},{"ID":41903,"Name":"Wioska barbarzyƄska","Points":5997,"X":339,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66324Z"},{"ID":41904,"Name":"Wioska barbarzyƄska","Points":3357,"X":670,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663241Z"},{"ID":41905,"Name":"028","Points":10019,"X":456,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663242Z"},{"ID":41906,"Name":"013 NAWRA","Points":5900,"X":664,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663242Z"},{"ID":41907,"Name":"234","Points":1194,"X":416,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663243Z"},{"ID":41908,"Name":"Cisowa","Points":2170,"X":479,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663244Z"},{"ID":41909,"Name":"C062","Points":8685,"X":376,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663244Z"},{"ID":41910,"Name":"bucksbarzyƄskamiiiru","Points":2222,"X":338,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663245Z"},{"ID":41911,"Name":"O138","Points":7238,"X":355,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663246Z"},{"ID":41912,"Name":"!36 65 Badeuti","Points":6930,"X":654,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663247Z"},{"ID":41913,"Name":"108.Stradi","Points":8619,"X":439,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663247Z"},{"ID":41914,"Name":"Taran","Points":9959,"X":336,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663248Z"},{"ID":41915,"Name":"O100","Points":9167,"X":335,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663249Z"},{"ID":41916,"Name":"Jan Ost nord","Points":9838,"X":696,"Y":461,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66325Z"},{"ID":41917,"Name":"C020","Points":9963,"X":375,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66325Z"},{"ID":41918,"Name":"Wioska barbarzyƄska","Points":6771,"X":563,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663251Z"},{"ID":41919,"Name":"###074###","Points":10495,"X":581,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663252Z"},{"ID":41920,"Name":"Wioska barbarzyƄska","Points":8764,"X":392,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663252Z"},{"ID":41921,"Name":"FENDI","Points":6545,"X":306,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663253Z"},{"ID":41922,"Name":"#109#","Points":9761,"X":637,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663254Z"},{"ID":41923,"Name":"B005 Zos","Points":10033,"X":516,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663255Z"},{"ID":41924,"Name":"KONFA TO MARKA, NARKA","Points":5645,"X":303,"Y":459,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663255Z"},{"ID":41925,"Name":"023 NAWRA","Points":8390,"X":668,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663256Z"},{"ID":41926,"Name":"Out of Touch","Points":5731,"X":316,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663257Z"},{"ID":41927,"Name":"Wioska barbarzyƄska","Points":4084,"X":306,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663257Z"},{"ID":41928,"Name":"East 4","Points":3903,"X":656,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663258Z"},{"ID":41930,"Name":".achim.","Points":4923,"X":471,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663259Z"},{"ID":41931,"Name":"TWIERDZA .:048:.","Points":10112,"X":695,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66326Z"},{"ID":41932,"Name":"C11","Points":3553,"X":693,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66326Z"},{"ID":41933,"Name":"0190","Points":10019,"X":475,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663261Z"},{"ID":41934,"Name":"0046 Utopia1","Points":9572,"X":439,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663262Z"},{"ID":41935,"Name":"Didek","Points":10475,"X":680,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663262Z"},{"ID":41936,"Name":"Wioska barbarzyƄska","Points":3233,"X":343,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663263Z"},{"ID":41937,"Name":"FAKE OR OFF","Points":10073,"X":405,"Y":325,"Continent":"K34","Bonus":4,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663264Z"},{"ID":41938,"Name":"ZA18","Points":9835,"X":320,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663265Z"},{"ID":41939,"Name":"Wow15","Points":4242,"X":362,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663265Z"},{"ID":41940,"Name":"Ania","Points":9917,"X":310,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663266Z"},{"ID":41941,"Name":"Wioska 016","Points":3789,"X":672,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663267Z"},{"ID":41942,"Name":"051","Points":3045,"X":631,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663267Z"},{"ID":41943,"Name":"-10-","Points":5748,"X":567,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663268Z"},{"ID":41944,"Name":"Wioska barbarzyƄska","Points":6675,"X":346,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663269Z"},{"ID":41945,"Name":"###019###","Points":10495,"X":588,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663269Z"},{"ID":41946,"Name":"Wioska barbarzyƄska","Points":7217,"X":690,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66327Z"},{"ID":41947,"Name":"077","Points":5719,"X":636,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698999105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663271Z"},{"ID":41948,"Name":"097 Saitama","Points":6596,"X":690,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663272Z"},{"ID":41949,"Name":"Forteca*004*","Points":9167,"X":532,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663272Z"},{"ID":41950,"Name":"Wioska barbarzyƄska","Points":10971,"X":587,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663273Z"},{"ID":41951,"Name":"CALL 1074","Points":10508,"X":653,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663274Z"},{"ID":41952,"Name":"TWIERDZA .:041:.","Points":10299,"X":691,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663274Z"},{"ID":41953,"Name":"050","Points":2197,"X":638,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663275Z"},{"ID":41954,"Name":"131 invidia","Points":6546,"X":526,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663276Z"},{"ID":41955,"Name":"C003","Points":9522,"X":470,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663277Z"},{"ID":41956,"Name":"TUUU","Points":7826,"X":603,"Y":332,"Continent":"K36","Bonus":5,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663277Z"},{"ID":41957,"Name":"003 - Nowy Początek...","Points":10874,"X":369,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663278Z"},{"ID":41958,"Name":"Wioska barbarzyƄska","Points":3443,"X":661,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663279Z"},{"ID":41959,"Name":"Wioska barbarzyƄska","Points":8890,"X":535,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663279Z"},{"ID":41960,"Name":"Wioska","Points":9556,"X":477,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66328Z"},{"ID":41961,"Name":"Nowa 53","Points":6571,"X":681,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663281Z"},{"ID":41962,"Name":"KRÓL PAPI WIELKI","Points":9711,"X":645,"Y":642,"Continent":"K66","Bonus":5,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663281Z"},{"ID":41963,"Name":"Wioska","Points":9115,"X":548,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663282Z"},{"ID":41964,"Name":"z181_12","Points":9886,"X":308,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663283Z"},{"ID":41965,"Name":"Wioska barbarzyƄska","Points":1898,"X":344,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663284Z"},{"ID":41966,"Name":"09.SNSD","Points":8700,"X":686,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663284Z"},{"ID":41967,"Name":"Chotcza","Points":4975,"X":567,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663285Z"},{"ID":41968,"Name":"011 NAWRA","Points":7154,"X":660,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663286Z"},{"ID":41969,"Name":"#0228 Segadorr dar","Points":10178,"X":443,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663286Z"},{"ID":41970,"Name":"035.Stradi","Points":10495,"X":431,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663287Z"},{"ID":41971,"Name":"Miasto","Points":9835,"X":338,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663288Z"},{"ID":41972,"Name":"Ć»UBR PSYCHIATRYK 011","Points":6976,"X":624,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663289Z"},{"ID":41973,"Name":"B006 ZieNciu","Points":10160,"X":699,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66329Z"},{"ID":41974,"Name":"C0191","Points":8189,"X":302,"Y":534,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66329Z"},{"ID":41975,"Name":"Wioska klez 019","Points":4681,"X":324,"Y":510,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663291Z"},{"ID":41976,"Name":"C.015","Points":7084,"X":702,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663292Z"},{"ID":41977,"Name":"Didek","Points":10160,"X":681,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663292Z"},{"ID":41978,"Name":"027","Points":10019,"X":455,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663293Z"},{"ID":41979,"Name":"Hofek 29.","Points":3144,"X":672,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663294Z"},{"ID":41981,"Name":"Didi","Points":10346,"X":681,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663295Z"},{"ID":41982,"Name":"D.023","Points":3928,"X":394,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663295Z"},{"ID":41983,"Name":"Wioska 04","Points":4637,"X":567,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":849067192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663296Z"},{"ID":41984,"Name":"ZA20","Points":9835,"X":314,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663297Z"},{"ID":41985,"Name":"Nie mam pomysƂu na nazwę wioski","Points":2775,"X":326,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":849100162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663297Z"},{"ID":41986,"Name":"KRÓL PAPI WIELKI","Points":9978,"X":642,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663298Z"},{"ID":41987,"Name":"#0215 Segadorr dar","Points":10194,"X":456,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663299Z"},{"ID":41988,"Name":"Wioska barbarzyƄska","Points":10495,"X":592,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6633Z"},{"ID":41989,"Name":"042","Points":5426,"X":303,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6633Z"},{"ID":41990,"Name":"Wioska barbarzyƄska","Points":8950,"X":696,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663301Z"},{"ID":41991,"Name":"010 D","Points":10495,"X":420,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663302Z"},{"ID":41992,"Name":"a moĆŒe off ? :)","Points":6201,"X":678,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663302Z"},{"ID":41993,"Name":"Didek","Points":5196,"X":688,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663303Z"},{"ID":41994,"Name":"Xenonowy grĂłd","Points":4008,"X":314,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663304Z"},{"ID":41995,"Name":"Wioska barbarzyƄska","Points":2203,"X":672,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663304Z"},{"ID":41996,"Name":"033.Stradi","Points":10495,"X":426,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663305Z"},{"ID":41997,"Name":"045.","Points":2947,"X":325,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663306Z"},{"ID":41999,"Name":"Ave Why!","Points":4700,"X":313,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663306Z"},{"ID":42000,"Name":"Wioska barbarzyƄska","Points":10559,"X":589,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663307Z"},{"ID":42001,"Name":"037","Points":5805,"X":303,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663308Z"},{"ID":42002,"Name":"0001 Osada koczownikĂłw","Points":10475,"X":442,"Y":697,"Continent":"K64","Bonus":8,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663309Z"},{"ID":42003,"Name":"C0127","Points":10362,"X":298,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663309Z"},{"ID":42004,"Name":"BRZEG JORDANU | 006","Points":7845,"X":695,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66331Z"},{"ID":42005,"Name":"Wioska barbarzyƄska","Points":9861,"X":528,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663311Z"},{"ID":42006,"Name":"New World","Points":10294,"X":428,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663311Z"},{"ID":42007,"Name":"Jednak wolę gofry","Points":5886,"X":494,"Y":645,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663312Z"},{"ID":42008,"Name":"Out of Touch","Points":6836,"X":315,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663313Z"},{"ID":42009,"Name":"010","Points":12154,"X":300,"Y":545,"Continent":"K53","Bonus":3,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663314Z"},{"ID":42010,"Name":"#0036 barbarzyƄska","Points":10178,"X":464,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663314Z"},{"ID":42011,"Name":"Wioska barbarzyƄska","Points":10068,"X":345,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663315Z"},{"ID":42012,"Name":"C0094","Points":10362,"X":300,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663316Z"},{"ID":42013,"Name":"Moldor 11","Points":8961,"X":635,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663316Z"},{"ID":42014,"Name":"Winterhome.063","Points":10178,"X":495,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663317Z"},{"ID":42016,"Name":"*W003","Points":9861,"X":663,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663318Z"},{"ID":42017,"Name":"Wioska barbarzyƄska","Points":6352,"X":614,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663319Z"},{"ID":42018,"Name":"bucksbarzyƄskamiiiru","Points":5861,"X":335,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663319Z"},{"ID":42019,"Name":"019 B","Points":10495,"X":402,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66332Z"},{"ID":42020,"Name":"Wioska barbarzyƄska","Points":3096,"X":311,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663321Z"},{"ID":42021,"Name":"009","Points":6052,"X":311,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663321Z"},{"ID":42022,"Name":"FAKE OR OFF","Points":9834,"X":409,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663322Z"},{"ID":42023,"Name":"[0214]","Points":7263,"X":298,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663323Z"},{"ID":42024,"Name":"Dream on","Points":9753,"X":298,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663324Z"},{"ID":42025,"Name":"O07 Evora","Points":10068,"X":660,"Y":514,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663324Z"},{"ID":42026,"Name":"[0159]","Points":8617,"X":450,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663325Z"},{"ID":42027,"Name":"Melon4","Points":4044,"X":310,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663326Z"},{"ID":42028,"Name":"Ranczo2","Points":12154,"X":303,"Y":455,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663326Z"},{"ID":42029,"Name":"Borowy grĂłd","Points":6081,"X":320,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663327Z"},{"ID":42031,"Name":"Domek JOJO- 3","Points":9835,"X":362,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663328Z"},{"ID":42032,"Name":"037","Points":10019,"X":457,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663328Z"},{"ID":42033,"Name":"008","Points":4787,"X":639,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663329Z"},{"ID":42034,"Name":"Wioska barbarzyƄska","Points":5491,"X":701,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66333Z"},{"ID":42035,"Name":"010. Bielany","Points":10080,"X":692,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663331Z"},{"ID":42036,"Name":"!36 65 Voitinel","Points":8007,"X":655,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663331Z"},{"ID":42037,"Name":"Kaplica","Points":5453,"X":298,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663332Z"},{"ID":42038,"Name":"Szlachcic","Points":9914,"X":381,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663333Z"},{"ID":42039,"Name":"017. Lincoln","Points":5333,"X":381,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":7775311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663333Z"},{"ID":42040,"Name":"Ziemianka Ruskich","Points":9791,"X":359,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663334Z"},{"ID":42041,"Name":"O035","Points":9962,"X":345,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663335Z"},{"ID":42042,"Name":"Daleko","Points":10654,"X":651,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663336Z"},{"ID":42043,"Name":"Wioska barbarzyƄska","Points":6940,"X":702,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663337Z"},{"ID":42044,"Name":"[0093]","Points":10495,"X":441,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663337Z"},{"ID":42045,"Name":"Wioska barbarzyƄska","Points":6865,"X":695,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663338Z"},{"ID":42046,"Name":"AAA","Points":6094,"X":550,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663339Z"},{"ID":42047,"Name":"O096","Points":9453,"X":333,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663339Z"},{"ID":42049,"Name":"Darma dla zawodnika","Points":4217,"X":323,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66334Z"},{"ID":42050,"Name":"Dream on","Points":9497,"X":302,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663341Z"},{"ID":42051,"Name":"z181_22","Points":9886,"X":309,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663342Z"},{"ID":42052,"Name":"Zajkdn","Points":9211,"X":546,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663342Z"},{"ID":42053,"Name":"042. Lekcje","Points":3805,"X":453,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663343Z"},{"ID":42054,"Name":"???","Points":10160,"X":484,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663344Z"},{"ID":42055,"Name":"Wonderwall","Points":9494,"X":311,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663344Z"},{"ID":42056,"Name":"004","Points":10008,"X":701,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663345Z"},{"ID":42057,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":664,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663346Z"},{"ID":42058,"Name":"037 Wioska barbarzyƄska","Points":6383,"X":693,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663347Z"},{"ID":42059,"Name":"###075###","Points":10495,"X":600,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663347Z"},{"ID":42060,"Name":"Taran","Points":9959,"X":333,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663348Z"},{"ID":42061,"Name":"Jezioro Turawskie","Points":9798,"X":693,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663349Z"},{"ID":42062,"Name":"EO EO","Points":10160,"X":301,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663349Z"},{"ID":42063,"Name":"bucksbarzyƄskamiiiru","Points":2409,"X":337,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66335Z"},{"ID":42064,"Name":"psycha sitting","Points":10178,"X":413,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663351Z"},{"ID":42065,"Name":"Wiejska4","Points":8621,"X":606,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663352Z"},{"ID":42066,"Name":"[0211]","Points":7651,"X":298,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663352Z"},{"ID":42067,"Name":"Wioska barbarzyƄska","Points":1858,"X":302,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663353Z"},{"ID":42068,"Name":"Wioska barbarzyƄska","Points":10068,"X":344,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663354Z"},{"ID":42069,"Name":"0336","Points":9454,"X":563,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663354Z"},{"ID":42070,"Name":"Wyspa_40","Points":9638,"X":506,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663355Z"},{"ID":42071,"Name":"*INTERTWINED*","Points":5641,"X":505,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663356Z"},{"ID":42072,"Name":"bucksbarzyƄskamiiiru","Points":2292,"X":335,"Y":379,"Continent":"K33","Bonus":6,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663356Z"},{"ID":42073,"Name":"Wioska barbarzyƄska","Points":2979,"X":643,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663357Z"},{"ID":42074,"Name":"???","Points":10503,"X":483,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663358Z"},{"ID":42075,"Name":"009. Xin trea","Points":10580,"X":325,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663359Z"},{"ID":42076,"Name":"Bartosiak prof.","Points":5630,"X":355,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663359Z"},{"ID":42078,"Name":"Wioska barbarzyƄska","Points":10145,"X":379,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66336Z"},{"ID":42079,"Name":"Wioska barbarzyƄska","Points":9677,"X":371,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663361Z"},{"ID":42080,"Name":"055","Points":3552,"X":631,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663361Z"},{"ID":42081,"Name":"FAKE OR OFF","Points":9830,"X":418,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663362Z"},{"ID":42082,"Name":"bucksbarzyƄskamiiiru","Points":4743,"X":328,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663363Z"},{"ID":42083,"Name":"SoƂtys Wsi WojTool","Points":9741,"X":365,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663364Z"},{"ID":42084,"Name":"0015","Points":5127,"X":423,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663364Z"},{"ID":42085,"Name":"000 Plutosea","Points":9976,"X":310,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663365Z"},{"ID":42086,"Name":"C0212","Points":10362,"X":299,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663366Z"},{"ID":42087,"Name":"Podgrodzie","Points":3544,"X":479,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663366Z"},{"ID":42088,"Name":"FAKE OR OFF","Points":9827,"X":416,"Y":316,"Continent":"K34","Bonus":9,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663367Z"},{"ID":42089,"Name":"C0204","Points":9466,"X":299,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663368Z"},{"ID":42090,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":657,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663369Z"},{"ID":42091,"Name":"0064","Points":5236,"X":687,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663369Z"},{"ID":42092,"Name":"Wioska barbarzyƄska","Points":9630,"X":692,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66337Z"},{"ID":42093,"Name":"Wioska eli-sa","Points":9381,"X":331,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663371Z"},{"ID":42094,"Name":"0015 Wioska barbarzyƄska","Points":10348,"X":448,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663371Z"},{"ID":42095,"Name":"SoƂty Wsi WojTool","Points":9460,"X":369,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663372Z"},{"ID":42096,"Name":"Wioska barbarzyƄska","Points":9747,"X":538,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663373Z"},{"ID":42097,"Name":"003","Points":10495,"X":702,"Y":498,"Continent":"K47","Bonus":5,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663373Z"},{"ID":42099,"Name":"KOS","Points":1804,"X":675,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":848890012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663374Z"},{"ID":42100,"Name":"Ranczo5","Points":2747,"X":304,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663375Z"},{"ID":42101,"Name":"Z03","Points":9835,"X":317,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663376Z"},{"ID":42102,"Name":"MojeDnoToWaszSzczyt","Points":9970,"X":498,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663376Z"},{"ID":42103,"Name":"A 017","Points":7868,"X":352,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663377Z"},{"ID":42104,"Name":"XDX","Points":8443,"X":612,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663378Z"},{"ID":42105,"Name":"Wioska Miczenso","Points":4733,"X":556,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":849096123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663378Z"},{"ID":42106,"Name":"038. Night Raid","Points":9215,"X":486,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663379Z"},{"ID":42107,"Name":".Y.","Points":9355,"X":645,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66338Z"},{"ID":42108,"Name":"bucksbarzyƄskamiiiru","Points":6087,"X":328,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663381Z"},{"ID":42109,"Name":"zƂoto InkĂłw","Points":8732,"X":370,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663381Z"},{"ID":42110,"Name":"Bocianikson021","Points":3364,"X":689,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663382Z"},{"ID":42111,"Name":"08-oss","Points":9239,"X":671,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663383Z"},{"ID":42112,"Name":"XDX","Points":9637,"X":604,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663383Z"},{"ID":42113,"Name":"###076###","Points":10495,"X":583,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663384Z"},{"ID":42114,"Name":"013","Points":9185,"X":670,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663385Z"},{"ID":42115,"Name":"KRÓL PAPI WIELKI","Points":10192,"X":648,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663386Z"},{"ID":42116,"Name":"Osada koczownikĂłw","Points":9861,"X":698,"Y":478,"Continent":"K46","Bonus":9,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663386Z"},{"ID":42117,"Name":"Borubar 3","Points":3632,"X":705,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663387Z"},{"ID":42118,"Name":"0014","Points":3290,"X":358,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663388Z"},{"ID":42119,"Name":"016 pechowiec","Points":10311,"X":540,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663388Z"},{"ID":42120,"Name":"FAKE OR OFF","Points":9813,"X":414,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663389Z"},{"ID":42121,"Name":"Wioska barbarzyƄska","Points":3332,"X":310,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.66339Z"},{"ID":42122,"Name":"Kamionka Silesia","Points":10971,"X":695,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663391Z"},{"ID":42123,"Name":"wioska","Points":8128,"X":633,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663391Z"},{"ID":42124,"Name":"HAPERT","Points":10654,"X":624,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663392Z"},{"ID":42125,"Name":"*INTERTWINED*","Points":6432,"X":508,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663393Z"},{"ID":42126,"Name":"HAPERT","Points":10521,"X":627,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663393Z"},{"ID":42127,"Name":"@05@","Points":8227,"X":406,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663394Z"},{"ID":42128,"Name":"Z 001 WrocƂaw","Points":10280,"X":328,"Y":594,"Continent":"K53","Bonus":8,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663395Z"},{"ID":42129,"Name":"Morska","Points":3490,"X":486,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663395Z"},{"ID":42130,"Name":"082 invidia","Points":6085,"X":516,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663396Z"},{"ID":42131,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":658,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663397Z"},{"ID":42132,"Name":"CALL 1068","Points":10495,"X":656,"Y":627,"Continent":"K66","Bonus":3,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663398Z"},{"ID":42134,"Name":"Wioska barbarzyƄska","Points":2353,"X":397,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699406776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663398Z"},{"ID":42135,"Name":"Chata Pustelnika","Points":4255,"X":375,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":848903690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663399Z"},{"ID":42137,"Name":"Z003","Points":10094,"X":528,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6634Z"},{"ID":42138,"Name":"Wioska barbarzyƄska","Points":8535,"X":704,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6634Z"},{"ID":42139,"Name":"A 031","Points":3538,"X":351,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663401Z"},{"ID":42140,"Name":"Dream on","Points":4704,"X":299,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663402Z"},{"ID":42141,"Name":"Bocianikson023","Points":4127,"X":693,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663403Z"},{"ID":42142,"Name":"Dream on","Points":6718,"X":299,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663403Z"},{"ID":42143,"Name":"Wioska barbarzyƄska","Points":6165,"X":387,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.663404Z"},{"ID":42144,"Name":"BRICKLEBERRY","Points":7660,"X":562,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693558Z"},{"ID":42145,"Name":"Wioska 22","Points":5833,"X":679,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693559Z"},{"ID":42146,"Name":"Wioska barbarzyƄska","Points":9113,"X":662,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69356Z"},{"ID":42147,"Name":"Polesie","Points":4265,"X":586,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":849100612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69356Z"},{"ID":42148,"Name":"021. WesoƂa","Points":9902,"X":700,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693561Z"},{"ID":42149,"Name":"Wioska podbita","Points":2826,"X":590,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":849063793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693561Z"},{"ID":42150,"Name":"bucksbarzyƄskamiiiru","Points":10344,"X":336,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693562Z"},{"ID":42151,"Name":"C0189","Points":7240,"X":303,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693563Z"},{"ID":42152,"Name":"Z002","Points":10094,"X":527,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693563Z"},{"ID":42153,"Name":"21. Another love","Points":8616,"X":554,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693564Z"},{"ID":42154,"Name":"Wioska barbarzyƄska","Points":9925,"X":523,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693564Z"},{"ID":42155,"Name":"067 ZieloneOczko1","Points":9500,"X":705,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693565Z"},{"ID":42156,"Name":"003.","Points":10237,"X":322,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693566Z"},{"ID":42157,"Name":"038.Stradi","Points":10495,"X":435,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693566Z"},{"ID":42158,"Name":"Wiejska5","Points":8615,"X":605,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693567Z"},{"ID":42159,"Name":"[0219]","Points":6525,"X":295,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693567Z"},{"ID":42160,"Name":"C0080","Points":10362,"X":301,"Y":519,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693568Z"},{"ID":42161,"Name":"AAA","Points":5200,"X":535,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693569Z"},{"ID":42162,"Name":"Gattacka","Points":9065,"X":690,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693569Z"},{"ID":42163,"Name":"A06","Points":7814,"X":697,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69357Z"},{"ID":42164,"Name":"Elo elo 4","Points":9679,"X":311,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69357Z"},{"ID":42165,"Name":"000 Plutosea","Points":9976,"X":312,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693571Z"},{"ID":42166,"Name":"0321","Points":9190,"X":566,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693572Z"},{"ID":42167,"Name":"Taran","Points":6389,"X":330,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693572Z"},{"ID":42169,"Name":"C102","Points":9799,"X":366,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693573Z"},{"ID":42170,"Name":"Huracane","Points":6421,"X":564,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":849100680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693573Z"},{"ID":42171,"Name":"C0090","Points":10362,"X":306,"Y":530,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693574Z"},{"ID":42172,"Name":"ruiny","Points":2529,"X":632,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693575Z"},{"ID":42173,"Name":"C0004","Points":10362,"X":304,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693575Z"},{"ID":42174,"Name":"Gattacka","Points":9606,"X":599,"Y":428,"Continent":"K45","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693576Z"},{"ID":42175,"Name":"###012###","Points":10495,"X":594,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693576Z"},{"ID":42176,"Name":"003.","Points":7499,"X":579,"Y":658,"Continent":"K65","Bonus":0,"PlayerID":1270916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693577Z"},{"ID":42177,"Name":"z181_21","Points":8876,"X":310,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693578Z"},{"ID":42179,"Name":"Wioska barbarzyƄska","Points":4923,"X":696,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693578Z"},{"ID":42180,"Name":"KRÓL PAPI WIELKI","Points":6265,"X":626,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693579Z"},{"ID":42181,"Name":"014","Points":9410,"X":658,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693579Z"},{"ID":42182,"Name":"050","Points":9133,"X":565,"Y":403,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69358Z"},{"ID":42183,"Name":"027.Stradi","Points":10495,"X":430,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69358Z"},{"ID":42184,"Name":"Wadowice","Points":3400,"X":509,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693581Z"},{"ID":42185,"Name":"MojeDnoToWaszSzczyt","Points":9967,"X":492,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693582Z"},{"ID":42186,"Name":"100","Points":10887,"X":651,"Y":370,"Continent":"K36","Bonus":5,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693582Z"},{"ID":42187,"Name":"Wioska barbarzyƄska","Points":9038,"X":671,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693583Z"},{"ID":42188,"Name":"B08","Points":10702,"X":692,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693583Z"},{"ID":42189,"Name":"Wioska barbarzyƄska","Points":9898,"X":348,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693584Z"},{"ID":42190,"Name":"Borsuk","Points":4205,"X":703,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693585Z"},{"ID":42191,"Name":"C0136","Points":10362,"X":307,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693585Z"},{"ID":42192,"Name":"Zaplecze Barba 030","Points":4628,"X":375,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693586Z"},{"ID":42193,"Name":"15. Blockchain","Points":8688,"X":553,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693586Z"},{"ID":42194,"Name":"#0131 Thorus5","Points":10178,"X":476,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693587Z"},{"ID":42195,"Name":"XXXX","Points":9853,"X":564,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693588Z"},{"ID":42196,"Name":"-023- XXX","Points":3574,"X":628,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693588Z"},{"ID":42197,"Name":"Nierada","Points":5641,"X":296,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693589Z"},{"ID":42199,"Name":"village","Points":10654,"X":641,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693589Z"},{"ID":42200,"Name":"Machnacz","Points":3297,"X":667,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69359Z"},{"ID":42201,"Name":"Szlachcic","Points":9547,"X":384,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693591Z"},{"ID":42202,"Name":"FFF","Points":7571,"X":643,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693591Z"},{"ID":42203,"Name":"Wioska barbarzyƄska","Points":8659,"X":693,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693592Z"},{"ID":42204,"Name":"wioska","Points":10997,"X":633,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693592Z"},{"ID":42205,"Name":"EO EO","Points":7472,"X":298,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693593Z"},{"ID":42206,"Name":"0147","Points":5575,"X":410,"Y":343,"Continent":"K34","Bonus":0,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693594Z"},{"ID":42207,"Name":"Hofek 26.","Points":5840,"X":666,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693594Z"},{"ID":42208,"Name":"Wioska barbarzyƄska","Points":7388,"X":681,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693595Z"},{"ID":42209,"Name":"Didek","Points":10160,"X":689,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693595Z"},{"ID":42210,"Name":"7.C","Points":8497,"X":453,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693596Z"},{"ID":42211,"Name":"krecik 02 e","Points":4116,"X":343,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693597Z"},{"ID":42212,"Name":"ZbijĂłw DuĆŒy","Points":6216,"X":569,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693597Z"},{"ID":42213,"Name":"Dzik 8","Points":7016,"X":305,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693598Z"},{"ID":42214,"Name":"Wioska barbarzyƄska","Points":4386,"X":305,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693598Z"},{"ID":42215,"Name":"Wioska barbarzyƄska","Points":10495,"X":585,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693599Z"},{"ID":42216,"Name":"-002- sz","Points":2514,"X":357,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6936Z"},{"ID":42217,"Name":"032.Stradi","Points":10495,"X":427,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6936Z"},{"ID":42218,"Name":"psycha sitting","Points":9605,"X":403,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693601Z"},{"ID":42219,"Name":"Dream on","Points":9742,"X":295,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693602Z"},{"ID":42220,"Name":"Familia Kuzyni","Points":2900,"X":379,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693602Z"},{"ID":42221,"Name":"Szlachcic","Points":10008,"X":384,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693603Z"},{"ID":42222,"Name":"Osada 8","Points":10083,"X":679,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693603Z"},{"ID":42223,"Name":"#K66 0014","Points":5200,"X":608,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693604Z"},{"ID":42224,"Name":"063. hehehe2","Points":9794,"X":701,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693605Z"},{"ID":42225,"Name":"psycha sitting","Points":10178,"X":400,"Y":675,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693605Z"},{"ID":42226,"Name":"Wioska barbarzyƄska","Points":6563,"X":331,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693606Z"},{"ID":42227,"Name":"Wioska barbarzyƄska","Points":4799,"X":695,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693606Z"},{"ID":42228,"Name":"XDX","Points":6984,"X":598,"Y":327,"Continent":"K35","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693607Z"},{"ID":42229,"Name":"B#009","Points":9797,"X":690,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693608Z"},{"ID":42230,"Name":"040 - Nowy Początek...","Points":10946,"X":364,"Y":645,"Continent":"K63","Bonus":3,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693608Z"},{"ID":42232,"Name":"Ewa","Points":6834,"X":523,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693609Z"},{"ID":42233,"Name":"KRÓL PAPI WIELKI","Points":8479,"X":660,"Y":628,"Continent":"K66","Bonus":9,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693609Z"},{"ID":42235,"Name":"????","Points":7899,"X":486,"Y":299,"Continent":"K24","Bonus":3,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69361Z"},{"ID":42237,"Name":"Ɓo baben!","Points":9797,"X":706,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693611Z"},{"ID":42238,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":655,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693611Z"},{"ID":42239,"Name":"A 070","Points":9236,"X":364,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693612Z"},{"ID":42240,"Name":"030.Stradi","Points":10495,"X":433,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693612Z"},{"ID":42241,"Name":"Didek","Points":1748,"X":684,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693613Z"},{"ID":42243,"Name":"D.031","Points":2884,"X":381,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693614Z"},{"ID":42244,"Name":"Darma dla zawodnika","Points":3220,"X":322,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693614Z"},{"ID":42245,"Name":"!36 65 Frumosu","Points":9860,"X":653,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693615Z"},{"ID":42246,"Name":"tomek016","Points":4904,"X":690,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693615Z"},{"ID":42247,"Name":"Wioska barbarzyƄska","Points":9861,"X":528,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693616Z"},{"ID":42248,"Name":"Wieƛ 06","Points":3357,"X":339,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693617Z"},{"ID":42249,"Name":"Wuuuu","Points":1695,"X":298,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693617Z"},{"ID":42250,"Name":"Wioska barbarzyƄska","Points":10787,"X":589,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693618Z"},{"ID":42252,"Name":"!36 65 Milisauti","Points":8272,"X":656,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693618Z"},{"ID":42253,"Name":"Hello there","Points":3148,"X":322,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693619Z"},{"ID":42254,"Name":"XDX","Points":9976,"X":613,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69362Z"},{"ID":42255,"Name":"#0220 Segadorr dar","Points":10178,"X":457,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69362Z"},{"ID":42256,"Name":"B015","Points":8291,"X":519,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693621Z"},{"ID":42257,"Name":"098 Kobe","Points":6596,"X":688,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693621Z"},{"ID":42258,"Name":"Wioska barbarzyƄska","Points":9931,"X":378,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693622Z"},{"ID":42260,"Name":"Tak2","Points":4271,"X":532,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693623Z"},{"ID":42261,"Name":"Dream on","Points":9752,"X":297,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693623Z"},{"ID":42263,"Name":"17. Mahakam","Points":8199,"X":699,"Y":536,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693624Z"},{"ID":42264,"Name":"Z01","Points":9835,"X":316,"Y":411,"Continent":"K43","Bonus":4,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693624Z"},{"ID":42265,"Name":"056. Lodowy Szczyt","Points":8697,"X":698,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693625Z"},{"ID":42266,"Name":"Komornik F001","Points":4441,"X":313,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693626Z"},{"ID":42267,"Name":"Wow10","Points":7571,"X":364,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693626Z"},{"ID":42268,"Name":"TWIERDZA .:030:.","Points":10226,"X":685,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693627Z"},{"ID":42269,"Name":"040","Points":6017,"X":305,"Y":541,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693627Z"},{"ID":42270,"Name":"New Land 01","Points":10311,"X":330,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693628Z"},{"ID":42271,"Name":"057. Latrun","Points":5922,"X":690,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693629Z"},{"ID":42272,"Name":"014","Points":5868,"X":639,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693629Z"},{"ID":42274,"Name":"024","Points":10495,"X":417,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69363Z"},{"ID":42275,"Name":"Wioska barbarzyƄska","Points":1605,"X":683,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693631Z"},{"ID":42277,"Name":"O092","Points":9962,"X":340,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693631Z"},{"ID":42278,"Name":"BRICKLEBERRY","Points":8697,"X":559,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693632Z"},{"ID":42279,"Name":"10. Wioska Raukodel","Points":10795,"X":653,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693632Z"},{"ID":42280,"Name":"- 208 - SS","Points":7625,"X":549,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693633Z"},{"ID":42281,"Name":"Wioska Zorro 015","Points":10495,"X":677,"Y":595,"Continent":"K56","Bonus":6,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693634Z"},{"ID":42282,"Name":"Camp Nou","Points":12021,"X":665,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693634Z"},{"ID":42283,"Name":"009","Points":6767,"X":388,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693635Z"},{"ID":42284,"Name":"S008","Points":8100,"X":602,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693635Z"},{"ID":42285,"Name":"DALEKO","Points":8670,"X":531,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693636Z"},{"ID":42286,"Name":"psycha sitting","Points":10178,"X":412,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693637Z"},{"ID":42287,"Name":"0019","Points":4270,"X":399,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693637Z"},{"ID":42288,"Name":"[0215]","Points":7212,"X":296,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693638Z"},{"ID":42289,"Name":"marmag81/03d","Points":7376,"X":301,"Y":471,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693638Z"},{"ID":42290,"Name":"A 062","Points":8510,"X":362,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693639Z"},{"ID":42291,"Name":"031","Points":7477,"X":305,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69364Z"},{"ID":42292,"Name":"Koziarowo","Points":11911,"X":503,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":849100228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69364Z"},{"ID":42293,"Name":"xzc","Points":9140,"X":496,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693641Z"},{"ID":42294,"Name":"A10","Points":4898,"X":695,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693642Z"},{"ID":42295,"Name":"HAPERT","Points":10319,"X":625,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693642Z"},{"ID":42297,"Name":"Wioska barbarzyƄska","Points":8447,"X":674,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693643Z"},{"ID":42298,"Name":"Barnab","Points":8732,"X":604,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693643Z"},{"ID":42299,"Name":"0003","Points":7305,"X":357,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693644Z"},{"ID":42300,"Name":"D.027","Points":3884,"X":385,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693645Z"},{"ID":42301,"Name":"KRÓL PAPI WIELKI","Points":9380,"X":636,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693645Z"},{"ID":42302,"Name":"ono11","Points":10009,"X":357,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693646Z"},{"ID":42303,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":664,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693646Z"},{"ID":42304,"Name":"003. GĂłrki ƚrednie","Points":10164,"X":656,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693647Z"},{"ID":42305,"Name":"NamysƂów","Points":10636,"X":697,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693648Z"},{"ID":42306,"Name":"- 253 - SS","Points":6505,"X":552,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693648Z"},{"ID":42307,"Name":"Ob Konfederacja","Points":10096,"X":433,"Y":314,"Continent":"K34","Bonus":2,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693649Z"},{"ID":42308,"Name":"ZA11","Points":9835,"X":319,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693649Z"},{"ID":42309,"Name":".achim.","Points":8042,"X":475,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69365Z"},{"ID":42310,"Name":"Osada koczownikĂłw","Points":6754,"X":386,"Y":663,"Continent":"K63","Bonus":7,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693651Z"},{"ID":42311,"Name":"*INTERTWINED*","Points":4310,"X":476,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693651Z"},{"ID":42312,"Name":"Wioska barbarzyƄska","Points":2925,"X":402,"Y":329,"Continent":"K34","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693652Z"},{"ID":42313,"Name":"0028. Y -","Points":3589,"X":695,"Y":534,"Continent":"K56","Bonus":0,"PlayerID":7125212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693652Z"},{"ID":42314,"Name":"Taran","Points":10432,"X":333,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693653Z"},{"ID":42315,"Name":"075","Points":10495,"X":417,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693653Z"},{"ID":42316,"Name":"059. Wioska barbarzyƄska","Points":8582,"X":696,"Y":464,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693654Z"},{"ID":42317,"Name":"O033","Points":9976,"X":342,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693655Z"},{"ID":42318,"Name":".achim.","Points":3971,"X":472,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693655Z"},{"ID":42319,"Name":"Wioska barbarzyƄska","Points":8808,"X":385,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693656Z"},{"ID":42320,"Name":"Wioska 019","Points":1927,"X":678,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693656Z"},{"ID":42321,"Name":"X 008","Points":2979,"X":595,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693657Z"},{"ID":42322,"Name":"BRICKLEBERRY","Points":7772,"X":554,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693658Z"},{"ID":42323,"Name":"Wioska barbarzyƄska","Points":8388,"X":327,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693658Z"},{"ID":42324,"Name":"035 - Castellon de la Plana","Points":6490,"X":694,"Y":528,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693659Z"},{"ID":42325,"Name":"A000","Points":9521,"X":471,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693659Z"},{"ID":42326,"Name":"Jestem Poza Kontrolą","Points":7837,"X":348,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69366Z"},{"ID":42327,"Name":"057. Wioska barbarzyƄska","Points":8579,"X":700,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693661Z"},{"ID":42328,"Name":"Wioska barbarzyƄska","Points":8269,"X":660,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693661Z"},{"ID":42329,"Name":"Wioska barbarzyƄska","Points":4078,"X":631,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693662Z"},{"ID":42330,"Name":"psycha sitting","Points":10311,"X":406,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693662Z"},{"ID":42331,"Name":"Wioska barbarzyƄska","Points":10068,"X":342,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693663Z"},{"ID":42332,"Name":"KIELBA 122","Points":7788,"X":462,"Y":579,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693664Z"},{"ID":42333,"Name":"037","Points":7559,"X":695,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693664Z"},{"ID":42334,"Name":"013. Wioska barbarzyƄska","Points":9285,"X":348,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693665Z"},{"ID":42335,"Name":"005","Points":6000,"X":308,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693665Z"},{"ID":42336,"Name":"#001","Points":9612,"X":307,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693666Z"},{"ID":42337,"Name":"Wioska barbarzyƄska","Points":8773,"X":354,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693667Z"},{"ID":42338,"Name":"16.BTS","Points":8084,"X":684,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693667Z"},{"ID":42339,"Name":"10,5","Points":4564,"X":296,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693668Z"},{"ID":42340,"Name":"005","Points":9998,"X":648,"Y":362,"Continent":"K36","Bonus":6,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693668Z"},{"ID":42341,"Name":"A12","Points":6281,"X":692,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693669Z"},{"ID":42342,"Name":"Wioska barbarzyƄska","Points":8398,"X":703,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69367Z"},{"ID":42343,"Name":"036 - Almeria","Points":4312,"X":696,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69367Z"},{"ID":42344,"Name":"Wioska barbarzyƄska","Points":9957,"X":386,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693671Z"},{"ID":42345,"Name":"Szlon","Points":9593,"X":303,"Y":479,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693671Z"},{"ID":42346,"Name":"Arczi997 02","Points":4310,"X":297,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693672Z"},{"ID":42347,"Name":"bucksbarzyƄskamiiiru","Points":7012,"X":323,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693673Z"},{"ID":42348,"Name":"Rogatki","Points":9854,"X":311,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693673Z"},{"ID":42349,"Name":"kto ananasowy pod wodą ma dom","Points":7353,"X":677,"Y":544,"Continent":"K56","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693674Z"},{"ID":42350,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693674Z"},{"ID":42351,"Name":"038","Points":6072,"X":304,"Y":543,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693675Z"},{"ID":42352,"Name":"a moĆŒe off ? :)","Points":6812,"X":675,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693675Z"},{"ID":42353,"Name":"005. Night Raid","Points":9309,"X":490,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693676Z"},{"ID":42354,"Name":"FP004","Points":10393,"X":493,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693677Z"},{"ID":42355,"Name":"B010","Points":6494,"X":517,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693677Z"},{"ID":42356,"Name":"-01-","Points":11188,"X":562,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693678Z"},{"ID":42357,"Name":"=0001=","Points":10119,"X":403,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693678Z"},{"ID":42358,"Name":"026 invidia","Points":10237,"X":541,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693679Z"},{"ID":42359,"Name":"C001","Points":9721,"X":468,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69368Z"},{"ID":42360,"Name":"psycha sitting","Points":10311,"X":422,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69368Z"},{"ID":42361,"Name":"Ć»ubr","Points":8634,"X":297,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693681Z"},{"ID":42362,"Name":"z181_18","Points":8364,"X":307,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693681Z"},{"ID":42363,"Name":"034","Points":9552,"X":454,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693682Z"},{"ID":42364,"Name":"BRICKLEBERRY","Points":3498,"X":559,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693683Z"},{"ID":42365,"Name":"O091","Points":9819,"X":338,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693683Z"},{"ID":42366,"Name":"psycha sitting","Points":10178,"X":411,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693684Z"},{"ID":42367,"Name":"Dream on","Points":8870,"X":300,"Y":487,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693684Z"},{"ID":42368,"Name":"AAA","Points":10178,"X":539,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693685Z"},{"ID":42369,"Name":"FAKE OR OFF","Points":10000,"X":405,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693686Z"},{"ID":42370,"Name":"*INTERTWINED*","Points":6263,"X":519,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693686Z"},{"ID":42371,"Name":"A 017","Points":10362,"X":608,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693687Z"},{"ID":42373,"Name":"031","Points":10495,"X":418,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693687Z"},{"ID":42374,"Name":"AAA","Points":7374,"X":562,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693688Z"},{"ID":42375,"Name":"KrakĂłw","Points":9033,"X":507,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693688Z"},{"ID":42376,"Name":"La Cabana","Points":4680,"X":519,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":3298902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693689Z"},{"ID":42377,"Name":"00979","Points":10072,"X":463,"Y":432,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69369Z"},{"ID":42378,"Name":"Taran","Points":10098,"X":330,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69369Z"},{"ID":42379,"Name":"zabolaƂo ?","Points":5476,"X":639,"Y":484,"Continent":"K46","Bonus":0,"PlayerID":698613394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693691Z"},{"ID":42380,"Name":"21.2NE1","Points":7613,"X":684,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693691Z"},{"ID":42381,"Name":"Wioska18","Points":5626,"X":633,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693692Z"},{"ID":42382,"Name":"FP001","Points":10728,"X":480,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693693Z"},{"ID":42383,"Name":"BaƂuty","Points":11824,"X":689,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":849100246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693693Z"},{"ID":42384,"Name":"###020###","Points":10495,"X":597,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693694Z"},{"ID":42385,"Name":"01.BIGBANG","Points":9959,"X":684,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693694Z"},{"ID":42386,"Name":"Wioska barbarzyƄska","Points":8925,"X":667,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693695Z"},{"ID":42387,"Name":"Wygwizdowa 001","Points":10311,"X":641,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693696Z"},{"ID":42388,"Name":"Wioska barbarzyƄska","Points":2052,"X":336,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693696Z"},{"ID":42390,"Name":"bucksbarzyƄskamiiiru","Points":2146,"X":338,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693697Z"},{"ID":42391,"Name":"SrebrnaHata","Points":9384,"X":676,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693697Z"},{"ID":42392,"Name":"!36 65 Balaceana","Points":8496,"X":657,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693698Z"},{"ID":42393,"Name":"K66 2","Points":3870,"X":630,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693699Z"},{"ID":42394,"Name":"????","Points":10503,"X":470,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693699Z"},{"ID":42395,"Name":"TWIERDZA .:015:.","Points":10343,"X":693,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6937Z"},{"ID":42396,"Name":"110 invidia","Points":9994,"X":509,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6937Z"},{"ID":42397,"Name":"003","Points":8559,"X":631,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693701Z"},{"ID":42398,"Name":"016. Klasztor Brimclif","Points":6616,"X":381,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":7775311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693701Z"},{"ID":42399,"Name":"-HRN-","Points":3382,"X":551,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693702Z"},{"ID":42400,"Name":"KRÓL PAPI WIELKI","Points":10490,"X":638,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693703Z"},{"ID":42401,"Name":"Wiejska9","Points":8566,"X":607,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693703Z"},{"ID":42402,"Name":"Wioska barbarzyƄska","Points":3283,"X":685,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693704Z"},{"ID":42403,"Name":"003","Points":6308,"X":300,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":848886200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693704Z"},{"ID":42404,"Name":"Wioska barbarzyƄska","Points":11368,"X":688,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693705Z"},{"ID":42405,"Name":"AAA","Points":8079,"X":535,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693706Z"},{"ID":42406,"Name":"003","Points":9723,"X":687,"Y":562,"Continent":"K56","Bonus":9,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693706Z"},{"ID":42407,"Name":"Didek","Points":4054,"X":680,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693707Z"},{"ID":42408,"Name":"Wioska barbarzyƄska","Points":5138,"X":625,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693707Z"},{"ID":42409,"Name":"*052*","Points":10211,"X":340,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693708Z"},{"ID":42410,"Name":"C0201","Points":8903,"X":300,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693709Z"},{"ID":42411,"Name":"Wioska barbarzyƄska","Points":3333,"X":686,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693709Z"},{"ID":42412,"Name":"0030 Kasko14","Points":10218,"X":449,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69371Z"},{"ID":42414,"Name":"0091","Points":7303,"X":676,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69371Z"},{"ID":42415,"Name":".:109:. Niangmen","Points":8876,"X":501,"Y":392,"Continent":"K35","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693711Z"},{"ID":42416,"Name":"XDX","Points":10160,"X":594,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693711Z"},{"ID":42417,"Name":"I108","Points":6373,"X":696,"Y":447,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693712Z"},{"ID":42418,"Name":"#102#","Points":8333,"X":623,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693713Z"},{"ID":42419,"Name":"047. Wioska barbarzyƄska","Points":9755,"X":696,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693713Z"},{"ID":42420,"Name":"B#007","Points":9797,"X":699,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693714Z"},{"ID":42421,"Name":"BRICKLEBERRY","Points":5693,"X":553,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693714Z"},{"ID":42422,"Name":"Wioska Turystyczna 001","Points":9735,"X":705,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693715Z"},{"ID":42423,"Name":"[0220]","Points":7363,"X":299,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693716Z"},{"ID":42424,"Name":"011. GĂłrki Piaszczyste","Points":9494,"X":648,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693716Z"},{"ID":42425,"Name":"Bessa 021","Points":10223,"X":637,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693717Z"},{"ID":42426,"Name":"Wielki 1","Points":8636,"X":498,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693717Z"},{"ID":42427,"Name":"MojeDnoToWaszSzczyt","Points":9964,"X":493,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693718Z"},{"ID":42428,"Name":"Osada 12","Points":8811,"X":691,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693718Z"},{"ID":42429,"Name":"Wioska krumlow 3","Points":3312,"X":595,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693719Z"},{"ID":42430,"Name":"Domi 6","Points":7984,"X":698,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69372Z"},{"ID":42431,"Name":"O142","Points":7233,"X":348,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69372Z"},{"ID":42432,"Name":"Jan Os koc-16 Ost K","Points":9195,"X":693,"Y":444,"Continent":"K46","Bonus":3,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693721Z"},{"ID":42434,"Name":"Wioska barbarzyƄska","Points":7777,"X":677,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693721Z"},{"ID":42435,"Name":"088","Points":9571,"X":414,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693722Z"},{"ID":42436,"Name":"Wioska barbarzyƄska","Points":8599,"X":385,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693723Z"},{"ID":42437,"Name":"AAA","Points":9686,"X":525,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693723Z"},{"ID":42438,"Name":"Wioska XII","Points":7788,"X":579,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693724Z"},{"ID":42439,"Name":"DąbrĂłwka ZaĆ‚Ä™ĆŒna","Points":5392,"X":563,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693724Z"},{"ID":42440,"Name":"1 Rękrzowice","Points":6968,"X":304,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693725Z"},{"ID":42441,"Name":"Wioska barbarzyƄska","Points":4700,"X":647,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693725Z"},{"ID":42442,"Name":"[0026] XXX","Points":10495,"X":442,"Y":310,"Continent":"K34","Bonus":8,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693726Z"},{"ID":42443,"Name":"???","Points":6804,"X":489,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693727Z"},{"ID":42444,"Name":"003","Points":2396,"X":593,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693727Z"},{"ID":42446,"Name":"Out of Touch","Points":5099,"X":315,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693728Z"},{"ID":42447,"Name":"0005 xXx Grypsujący xXx","Points":10476,"X":441,"Y":695,"Continent":"K64","Bonus":5,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693728Z"},{"ID":42448,"Name":"003","Points":8974,"X":648,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693729Z"},{"ID":42449,"Name":"EO EO","Points":10019,"X":294,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69373Z"},{"ID":42450,"Name":"EO EO","Points":10495,"X":304,"Y":514,"Continent":"K53","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69373Z"},{"ID":42451,"Name":"Wioska barbarzyƄska","Points":8795,"X":620,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693731Z"},{"ID":42452,"Name":"008","Points":7706,"X":601,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693731Z"},{"ID":42453,"Name":"255...Emerson","Points":7283,"X":464,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693732Z"},{"ID":42454,"Name":"Didi","Points":10957,"X":687,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693732Z"},{"ID":42455,"Name":"0000017%","Points":9789,"X":426,"Y":595,"Continent":"K54","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693733Z"},{"ID":42456,"Name":"01. Devil Z","Points":9668,"X":482,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693734Z"},{"ID":42457,"Name":"ZƂoty ƚwit","Points":5773,"X":577,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693734Z"},{"ID":42458,"Name":"Osada koczownikĂłw","Points":10216,"X":702,"Y":474,"Continent":"K47","Bonus":9,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693735Z"},{"ID":42459,"Name":"002. Good Night","Points":9711,"X":489,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693735Z"},{"ID":42460,"Name":"[0221]","Points":6946,"X":300,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693736Z"},{"ID":42461,"Name":"ByƂeƛ w porządku 003","Points":9991,"X":369,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693737Z"},{"ID":42462,"Name":"Pallad","Points":7626,"X":687,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693737Z"},{"ID":42463,"Name":"0039 Osada koczownikĂłw","Points":10478,"X":447,"Y":698,"Continent":"K64","Bonus":7,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693738Z"},{"ID":42465,"Name":"A 071","Points":7782,"X":360,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693738Z"},{"ID":42466,"Name":"CALL 1051","Points":10365,"X":652,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693739Z"},{"ID":42467,"Name":"TWIERDZA .:013:.","Points":10343,"X":694,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69374Z"},{"ID":42468,"Name":"MojeDnoToWaszSzczyt","Points":9621,"X":498,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69374Z"},{"ID":42469,"Name":"New World","Points":10292,"X":430,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693741Z"},{"ID":42470,"Name":"###077###","Points":10495,"X":598,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693741Z"},{"ID":42471,"Name":"Wioska barbarzyƄska","Points":5273,"X":630,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693742Z"},{"ID":42473,"Name":"FAKE OR OFF","Points":9824,"X":413,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693742Z"},{"ID":42474,"Name":"tomek016 IV","Points":1943,"X":693,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693743Z"},{"ID":42475,"Name":"Wioska barbarzyƄska","Points":8883,"X":670,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693744Z"},{"ID":42476,"Name":"z 000 Wioska 13","Points":6345,"X":352,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693744Z"},{"ID":42477,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":657,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693745Z"},{"ID":42478,"Name":"marmag81/03ww","Points":5309,"X":298,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693745Z"},{"ID":42479,"Name":"Out of Touch","Points":6157,"X":317,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693746Z"},{"ID":42480,"Name":"FP033","Points":9185,"X":468,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693747Z"},{"ID":42481,"Name":"05. Betonoza","Points":10019,"X":483,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693747Z"},{"ID":42482,"Name":"Zaplecze Barba 017","Points":7595,"X":372,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693748Z"},{"ID":42483,"Name":"Dream on","Points":4598,"X":301,"Y":499,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693749Z"},{"ID":42484,"Name":"020","Points":9738,"X":303,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693749Z"},{"ID":42485,"Name":"psycha sitting","Points":10178,"X":417,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69375Z"},{"ID":42487,"Name":"264...EMERSON","Points":8062,"X":464,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69375Z"},{"ID":42488,"Name":"Dream on","Points":9742,"X":304,"Y":504,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693751Z"},{"ID":42489,"Name":"TWIERDZA .:018:.","Points":10354,"X":688,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693751Z"},{"ID":42491,"Name":"New World","Points":10297,"X":431,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693752Z"},{"ID":42492,"Name":"Wioska zzzz","Points":3231,"X":514,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693752Z"},{"ID":42493,"Name":"Darma dla zawodnika","Points":6982,"X":316,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693753Z"},{"ID":42494,"Name":"psycha sitting","Points":6730,"X":404,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693754Z"},{"ID":42495,"Name":"Ryƛ","Points":6245,"X":701,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693754Z"},{"ID":42496,"Name":"A000","Points":9274,"X":463,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693755Z"},{"ID":42497,"Name":"z181_10","Points":9885,"X":309,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693755Z"},{"ID":42499,"Name":"KRÓL PAPI WIELKI","Points":7754,"X":659,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693756Z"},{"ID":42500,"Name":"Dream on","Points":8887,"X":298,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693756Z"},{"ID":42501,"Name":"Mordor","Points":11898,"X":414,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693757Z"},{"ID":42502,"Name":"0005","Points":5890,"X":357,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693758Z"},{"ID":42503,"Name":"C3.","Points":7030,"X":307,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":849095482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693758Z"},{"ID":42504,"Name":"New World","Points":10300,"X":430,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693759Z"},{"ID":42506,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":305,"Y":453,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693759Z"},{"ID":42507,"Name":"B001","Points":10354,"X":519,"Y":302,"Continent":"K35","Bonus":4,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69376Z"},{"ID":42508,"Name":"Wyspa_47","Points":8152,"X":509,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69376Z"},{"ID":42509,"Name":"Winterhome.029","Points":10178,"X":493,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693761Z"},{"ID":42511,"Name":"Wioska barbarzyƄska","Points":2800,"X":301,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693762Z"},{"ID":42513,"Name":"C0338","Points":4328,"X":297,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693762Z"},{"ID":42515,"Name":"Z04","Points":9835,"X":316,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693763Z"},{"ID":42517,"Name":"New World","Points":10303,"X":436,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693763Z"},{"ID":42519,"Name":"###078###","Points":10495,"X":584,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693764Z"},{"ID":42521,"Name":"Wioska barbarzyƄska","Points":3471,"X":341,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699541376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693764Z"},{"ID":42522,"Name":"ZA12","Points":9835,"X":319,"Y":414,"Continent":"K43","Bonus":7,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693765Z"},{"ID":42523,"Name":"066","Points":4753,"X":700,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693765Z"},{"ID":42524,"Name":"HAPERT","Points":10319,"X":624,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693766Z"},{"ID":42525,"Name":"052g","Points":9809,"X":311,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693766Z"},{"ID":42526,"Name":"015","Points":10495,"X":669,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693767Z"},{"ID":42527,"Name":"17. Stwho","Points":8585,"X":552,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693768Z"},{"ID":42528,"Name":"bucksbarzyƄskamiiiru","Points":4488,"X":331,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693768Z"},{"ID":42529,"Name":"EO EO","Points":10083,"X":298,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693769Z"},{"ID":42530,"Name":"aaaa","Points":9899,"X":390,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693769Z"},{"ID":42531,"Name":"08.ITZY","Points":8918,"X":687,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69377Z"},{"ID":42533,"Name":"Doha","Points":8183,"X":516,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69377Z"},{"ID":42534,"Name":"Ɓoszyngton","Points":9644,"X":608,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693771Z"},{"ID":42535,"Name":"008","Points":9555,"X":470,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693772Z"},{"ID":42536,"Name":"0098","Points":5681,"X":677,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693772Z"},{"ID":42538,"Name":"bucksbarzyƄskamiiiru","Points":10065,"X":330,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693773Z"},{"ID":42540,"Name":"RacibĂłrz","Points":1974,"X":694,"Y":543,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693773Z"},{"ID":42541,"Name":"Wioska pentoschijska","Points":9580,"X":696,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693774Z"},{"ID":42543,"Name":"041. Night Raid","Points":10019,"X":489,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693774Z"},{"ID":42544,"Name":"[0044] xxx","Points":10495,"X":445,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693775Z"},{"ID":42545,"Name":"O143","Points":9821,"X":347,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693775Z"},{"ID":42547,"Name":"001","Points":5541,"X":308,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":848895676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693776Z"},{"ID":42548,"Name":"07. Temeria","Points":9663,"X":697,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693777Z"},{"ID":42550,"Name":"KRÓL PAPI WIELKI","Points":9370,"X":645,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693777Z"},{"ID":42551,"Name":"018. Night Raid*","Points":9828,"X":433,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693778Z"},{"ID":42552,"Name":"MojeDnoToWaszSzczyt","Points":9949,"X":499,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693778Z"},{"ID":42553,"Name":"Grubasy 7 papa","Points":3158,"X":304,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693779Z"},{"ID":42554,"Name":"031 Kopa","Points":6666,"X":691,"Y":450,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693779Z"},{"ID":42555,"Name":"Z09","Points":9835,"X":317,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69378Z"},{"ID":42556,"Name":"026","Points":5950,"X":629,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69378Z"},{"ID":42557,"Name":"11. Memes","Points":10237,"X":686,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693781Z"},{"ID":42558,"Name":"B09","Points":2631,"X":692,"Y":552,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693782Z"},{"ID":42559,"Name":"bucksbarzyƄskamiiiru","Points":7206,"X":322,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693782Z"},{"ID":42560,"Name":"ZA23","Points":9835,"X":320,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693783Z"},{"ID":42561,"Name":"016","Points":9370,"X":669,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693783Z"},{"ID":42562,"Name":"053","Points":10495,"X":559,"Y":407,"Continent":"K45","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693784Z"},{"ID":42563,"Name":"Posterunek","Points":9158,"X":685,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693784Z"},{"ID":42564,"Name":"*W002","Points":9847,"X":662,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693785Z"},{"ID":42565,"Name":"0114","Points":9717,"X":679,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693785Z"},{"ID":42566,"Name":"O144","Points":9814,"X":346,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693786Z"},{"ID":42567,"Name":"MSWO-4","Points":3630,"X":469,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693787Z"},{"ID":42568,"Name":"O049","Points":9876,"X":344,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693787Z"},{"ID":42570,"Name":"017","Points":6908,"X":649,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693788Z"},{"ID":42571,"Name":"zachod 003","Points":10201,"X":357,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693788Z"},{"ID":42572,"Name":"0004","Points":5615,"X":356,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693789Z"},{"ID":42573,"Name":"Psajdak.","Points":9924,"X":352,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693789Z"},{"ID":42574,"Name":"Zaplecze Barba 9","Points":9745,"X":372,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69379Z"},{"ID":42576,"Name":"Wioska barbarzyƄska","Points":9925,"X":526,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693791Z"},{"ID":42577,"Name":"EO EO","Points":10362,"X":299,"Y":516,"Continent":"K52","Bonus":7,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693791Z"},{"ID":42578,"Name":"OrzeƂ WylądowaƂ","Points":7565,"X":464,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693792Z"},{"ID":42579,"Name":"XXXX","Points":10178,"X":563,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693792Z"},{"ID":42580,"Name":"Winterhome.026","Points":10178,"X":491,"Y":297,"Continent":"K24","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693793Z"},{"ID":42581,"Name":"Ć»UBEREK 020 pit71","Points":10302,"X":607,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693793Z"},{"ID":42582,"Name":"Z Wioska 2","Points":8355,"X":358,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693794Z"},{"ID":42583,"Name":"Wioska barbarzyƄska","Points":2385,"X":304,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693794Z"},{"ID":42584,"Name":"[0130]","Points":9403,"X":440,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693795Z"},{"ID":42585,"Name":"Zakrzewo","Points":5254,"X":665,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693795Z"},{"ID":42586,"Name":"Dream on","Points":9479,"X":296,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693796Z"},{"ID":42587,"Name":"KRÓL PAPI WIELKI","Points":9373,"X":646,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693797Z"},{"ID":42588,"Name":"ZZZ","Points":9974,"X":502,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693797Z"},{"ID":42589,"Name":"XDX","Points":8993,"X":615,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693798Z"},{"ID":42590,"Name":"MojeDnoToWaszSzczyt","Points":9723,"X":506,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693798Z"},{"ID":42591,"Name":"O037","Points":9960,"X":344,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693799Z"},{"ID":42592,"Name":"xzc","Points":10495,"X":498,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693799Z"},{"ID":42593,"Name":"Wioska barbarzyƄska","Points":6423,"X":386,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6938Z"},{"ID":42594,"Name":"Wawelno","Points":10542,"X":686,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6938Z"},{"ID":42595,"Name":"041 Wioska barbarzyƄska","Points":9115,"X":608,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693801Z"},{"ID":42598,"Name":"Ć»UBR PSYCHIATRYK 019","Points":4753,"X":626,"Y":653,"Continent":"K66","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693802Z"},{"ID":42599,"Name":"*212*","Points":10211,"X":332,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693802Z"},{"ID":42600,"Name":"S010","Points":7094,"X":686,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693803Z"},{"ID":42601,"Name":"###007###","Points":10495,"X":582,"Y":683,"Continent":"K65","Bonus":5,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693803Z"},{"ID":42602,"Name":"New World","Points":10294,"X":439,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693804Z"},{"ID":42603,"Name":"C0081","Points":10362,"X":302,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693804Z"},{"ID":42604,"Name":"Wioska barbarzyƄska","Points":10475,"X":588,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693805Z"},{"ID":42605,"Name":"2.Logrono","Points":3520,"X":574,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693806Z"},{"ID":42607,"Name":"14.EXO","Points":8142,"X":687,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693806Z"},{"ID":42608,"Name":"###021###","Points":10495,"X":589,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693807Z"},{"ID":42609,"Name":"M181 ...bil...","Points":1064,"X":628,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":6517003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693807Z"},{"ID":42610,"Name":"036 Night Raid","Points":8490,"X":486,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693808Z"},{"ID":42611,"Name":"D001","Points":10365,"X":363,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693808Z"},{"ID":42612,"Name":"A#037","Points":9797,"X":705,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693809Z"},{"ID":42613,"Name":"[057] Wioska barbarzyƄska","Points":4197,"X":685,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69381Z"},{"ID":42614,"Name":"Zzzz - Kasztelania 002","Points":4198,"X":641,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":699733098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69381Z"},{"ID":42615,"Name":"z 001043","Points":4501,"X":354,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693811Z"},{"ID":42616,"Name":"O093","Points":9549,"X":336,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693811Z"},{"ID":42617,"Name":"003","Points":7302,"X":641,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693812Z"},{"ID":42618,"Name":"C037","Points":9741,"X":375,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693812Z"},{"ID":42619,"Name":"TWIERDZA .:061:.","Points":7652,"X":690,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693813Z"},{"ID":42620,"Name":"Babilon","Points":9763,"X":386,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693813Z"},{"ID":42621,"Name":"KRÓL PAPI WIELKI","Points":9973,"X":649,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693814Z"},{"ID":42622,"Name":"Wioska barbarzyƄska","Points":7717,"X":370,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693815Z"},{"ID":42623,"Name":"Wioska barbarzyƄska","Points":6179,"X":698,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693815Z"},{"ID":42624,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":654,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693816Z"},{"ID":42625,"Name":".achim.","Points":10052,"X":468,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693816Z"},{"ID":42626,"Name":"KRÓL PAPI WIELKI","Points":8186,"X":697,"Y":520,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693817Z"},{"ID":42627,"Name":"Wioska barbarzyƄska","Points":3957,"X":373,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693817Z"},{"ID":42628,"Name":"005. Wioska barbarzyƄska","Points":9806,"X":346,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693818Z"},{"ID":42629,"Name":"Owsiana","Points":2159,"X":482,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693818Z"},{"ID":42630,"Name":"O001","Points":9957,"X":342,"Y":633,"Continent":"K63","Bonus":8,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693819Z"},{"ID":42631,"Name":"Ave Why!","Points":3498,"X":308,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69382Z"},{"ID":42632,"Name":"z181_06","Points":9883,"X":312,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69382Z"},{"ID":42633,"Name":"WiedĆșma - Z 002","Points":5456,"X":307,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693821Z"},{"ID":42634,"Name":"04.MINUTE","Points":7460,"X":684,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693821Z"},{"ID":42635,"Name":"XXXX","Points":10068,"X":567,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693822Z"},{"ID":42636,"Name":"###079###","Points":10495,"X":582,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693823Z"},{"ID":42637,"Name":"Fear Of The Dark","Points":4624,"X":692,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693823Z"},{"ID":42638,"Name":"A 080","Points":2402,"X":364,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693824Z"},{"ID":42639,"Name":"Atlantyda I","Points":3644,"X":370,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693824Z"},{"ID":42640,"Name":"Kuwejt","Points":9911,"X":515,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693825Z"},{"ID":42641,"Name":"018","Points":8596,"X":660,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693825Z"},{"ID":42642,"Name":"12.EVERGLOW","Points":8520,"X":689,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693826Z"},{"ID":42643,"Name":"Domi 5","Points":8978,"X":701,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693826Z"},{"ID":42644,"Name":"B01 Sopot","Points":8684,"X":348,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693827Z"},{"ID":42645,"Name":"119","Points":6213,"X":695,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693828Z"},{"ID":42646,"Name":"BRICKLEBERRY","Points":6946,"X":560,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693828Z"},{"ID":42647,"Name":"030 Malleore","Points":4530,"X":454,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693829Z"},{"ID":42648,"Name":"#006","Points":4279,"X":311,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693829Z"},{"ID":42649,"Name":"Wioska barbarzyƄska","Points":9786,"X":703,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69383Z"},{"ID":42650,"Name":"Wioska barbarzyƄska","Points":7704,"X":518,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69383Z"},{"ID":42651,"Name":"Wioska barbarzyƄska","Points":10475,"X":584,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693831Z"},{"ID":42652,"Name":"008e","Points":9674,"X":308,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693831Z"},{"ID":42653,"Name":"TARAN","Points":9458,"X":547,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693832Z"},{"ID":42655,"Name":"Wioska barbarzyƄska","Points":11293,"X":687,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693832Z"},{"ID":42656,"Name":"O057","Points":9821,"X":343,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693833Z"},{"ID":42657,"Name":"30.Girls Day","Points":3797,"X":690,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693833Z"},{"ID":42658,"Name":"Wioska Hrabia mol","Points":9692,"X":319,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":699697136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693834Z"},{"ID":42659,"Name":"Wioska barbarzyƄska","Points":3451,"X":697,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693835Z"},{"ID":42660,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":650,"Y":640,"Continent":"K66","Bonus":1,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693835Z"},{"ID":42661,"Name":"GoƄ Się Dilduƛ97 ;] huehuehue @","Points":9706,"X":494,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":848918262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693836Z"},{"ID":42662,"Name":"ZA25","Points":9835,"X":316,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693836Z"},{"ID":42663,"Name":"Wioska barbarzyƄska","Points":1704,"X":607,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":699548295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693837Z"},{"ID":42664,"Name":"boh81/500","Points":7064,"X":299,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693837Z"},{"ID":42665,"Name":"Wioska barbarzyƄska","Points":10160,"X":580,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693838Z"},{"ID":42666,"Name":"0146","Points":7054,"X":678,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693838Z"},{"ID":42668,"Name":"Wioska barbarzyƄska","Points":6322,"X":626,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693839Z"},{"ID":42669,"Name":"EO EO","Points":10083,"X":292,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693839Z"},{"ID":42670,"Name":"052","Points":8099,"X":452,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69384Z"},{"ID":42671,"Name":"Osada koczownikĂłw","Points":10068,"X":343,"Y":367,"Continent":"K33","Bonus":2,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69384Z"},{"ID":42672,"Name":"WyƂom","Points":7678,"X":700,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693841Z"},{"ID":42673,"Name":"C068","Points":10070,"X":358,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693841Z"},{"ID":42674,"Name":"Wioska barbarzyƄska","Points":2721,"X":313,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693842Z"},{"ID":42675,"Name":"WiedĆșma - Z 004","Points":5276,"X":307,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693843Z"},{"ID":42676,"Name":"022","Points":10495,"X":401,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693843Z"},{"ID":42677,"Name":"Stamford Bridge","Points":10538,"X":665,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693844Z"},{"ID":42678,"Name":"023. WilanĂłw","Points":10237,"X":705,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693844Z"},{"ID":42679,"Name":"EO EO","Points":10019,"X":298,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693845Z"},{"ID":42680,"Name":"Out of Touch","Points":6573,"X":314,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693845Z"},{"ID":42681,"Name":"Chabry","Points":10971,"X":695,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693846Z"},{"ID":42682,"Name":"KRÓL PAPI WIELKI","Points":9969,"X":649,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693847Z"},{"ID":42684,"Name":"Wioska barbarzyƄska","Points":5053,"X":339,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693847Z"},{"ID":42685,"Name":"MojeDnoToWaszSzczyt","Points":9962,"X":500,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693848Z"},{"ID":42686,"Name":"Gaworzyna","Points":6448,"X":564,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693848Z"},{"ID":42687,"Name":"AAA","Points":7221,"X":543,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693849Z"},{"ID":42689,"Name":"Wioska barbarzyƄska","Points":3190,"X":399,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693849Z"},{"ID":42690,"Name":"Hongkong","Points":1605,"X":513,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69385Z"},{"ID":42691,"Name":"[0082] Potrzeba","Points":10495,"X":436,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69385Z"},{"ID":42692,"Name":"0000.q","Points":3862,"X":471,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":849099342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693851Z"},{"ID":42693,"Name":"MojeDnoToWaszSzczyt","Points":10022,"X":506,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693851Z"},{"ID":42694,"Name":"C001","Points":10495,"X":587,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":699761749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693852Z"},{"ID":42695,"Name":"KRÓL PAPI WIELKI","Points":10075,"X":642,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693852Z"},{"ID":42696,"Name":"003","Points":9929,"X":647,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693853Z"},{"ID":42697,"Name":"bucksbarzyƄskamiiiru","Points":10621,"X":335,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693854Z"},{"ID":42698,"Name":"bucksbarzyƄskamiiiru","Points":4498,"X":327,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693854Z"},{"ID":42699,"Name":"ByƂeƛ w porządku 001","Points":9715,"X":365,"Y":651,"Continent":"K63","Bonus":7,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693855Z"},{"ID":42701,"Name":"Wioska barbarzyƄska","Points":9643,"X":348,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693855Z"},{"ID":42702,"Name":"Wioska barbarzyƄska","Points":6884,"X":394,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693856Z"},{"ID":42703,"Name":"KRÓL PAPI WIELKI","Points":9372,"X":639,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693856Z"},{"ID":42704,"Name":"AAA","Points":8663,"X":544,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693857Z"},{"ID":42705,"Name":"048 - Nowy Początek...","Points":6535,"X":359,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693857Z"},{"ID":42706,"Name":"002. Tak","Points":10122,"X":347,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693858Z"},{"ID":42707,"Name":"Wioska barbarzyƄska","Points":10068,"X":349,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693859Z"},{"ID":42708,"Name":"???","Points":5356,"X":489,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693859Z"},{"ID":42709,"Name":"EO EO","Points":10083,"X":297,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69386Z"},{"ID":42710,"Name":"FAKE OR OFF","Points":9825,"X":407,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69386Z"},{"ID":42711,"Name":"009# Melissa","Points":9891,"X":485,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693861Z"},{"ID":42712,"Name":"048","Points":10495,"X":454,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693861Z"},{"ID":42713,"Name":"Ranczo1","Points":11590,"X":304,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693862Z"},{"ID":42714,"Name":"0018","Points":4619,"X":400,"Y":323,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693862Z"},{"ID":42715,"Name":"!36 65 Radauti","Points":10495,"X":655,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693863Z"},{"ID":42716,"Name":"xxx","Points":9425,"X":693,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693863Z"},{"ID":42717,"Name":"#Charlotte","Points":9892,"X":431,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699849210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693864Z"},{"ID":42718,"Name":"021# Sophia","Points":8008,"X":488,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693865Z"},{"ID":42719,"Name":"Wioska Zorro 005","Points":12154,"X":679,"Y":600,"Continent":"K66","Bonus":2,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693865Z"},{"ID":42720,"Name":"Wioska Wielki Wezyr","Points":2431,"X":321,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":3185732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693866Z"},{"ID":42721,"Name":"MojeDnoToWaszSzczyt","Points":9969,"X":496,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693866Z"},{"ID":42722,"Name":"XDX","Points":9620,"X":606,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693867Z"},{"ID":42724,"Name":"[0222]","Points":7150,"X":293,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693867Z"},{"ID":42725,"Name":"019","Points":9198,"X":668,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693868Z"},{"ID":42726,"Name":"02. Whitebird","Points":10002,"X":481,"Y":653,"Continent":"K64","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693869Z"},{"ID":42727,"Name":"Wioska barbarzyƄska","Points":6372,"X":694,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693869Z"},{"ID":42729,"Name":"003. 0.Ver$","Points":9786,"X":704,"Y":514,"Continent":"K57","Bonus":3,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69387Z"},{"ID":42730,"Name":"[0096]","Points":10495,"X":442,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69387Z"},{"ID":42731,"Name":"KRÓL PAPI WIELKI","Points":9998,"X":644,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693871Z"},{"ID":42733,"Name":"KRÓL PAPI WIELKI","Points":9355,"X":633,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693871Z"},{"ID":42734,"Name":"085 invidia","Points":8608,"X":520,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693872Z"},{"ID":42736,"Name":"606|377","Points":9570,"X":625,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693872Z"},{"ID":42737,"Name":"O140","Points":6799,"X":346,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693873Z"},{"ID":42738,"Name":"Szlachcic","Points":7710,"X":685,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693874Z"},{"ID":42739,"Name":"Wioska barbarzyƄska","Points":10226,"X":561,"Y":330,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693874Z"},{"ID":42740,"Name":"Wioska barbarzyƄska","Points":6740,"X":388,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693875Z"},{"ID":42741,"Name":"045","Points":4762,"X":627,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693875Z"},{"ID":42742,"Name":"1..","Points":2931,"X":645,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693876Z"},{"ID":42743,"Name":"###081###","Points":10495,"X":585,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693876Z"},{"ID":42744,"Name":"Wioska barbarzyƄska","Points":10024,"X":702,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693877Z"},{"ID":42745,"Name":"Dream on","Points":9742,"X":295,"Y":491,"Continent":"K42","Bonus":6,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693877Z"},{"ID":42746,"Name":"Mocarna wioska","Points":7764,"X":684,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693878Z"},{"ID":42747,"Name":"Wioska barbarzyƄska","Points":5439,"X":541,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693879Z"},{"ID":42748,"Name":"Elo Elo 2","Points":9672,"X":310,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693879Z"},{"ID":42749,"Name":"Melon2","Points":5559,"X":310,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69388Z"},{"ID":42750,"Name":"139 invidia","Points":8155,"X":535,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69388Z"},{"ID":42751,"Name":"aaaa","Points":9812,"X":412,"Y":315,"Continent":"K34","Bonus":1,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693881Z"},{"ID":42752,"Name":"bucksbarzyƄskamiiiru","Points":5060,"X":327,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693881Z"},{"ID":42753,"Name":"A14","Points":4179,"X":698,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693882Z"},{"ID":42754,"Name":"HAPERT","Points":10319,"X":623,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693883Z"},{"ID":42755,"Name":"ZƂoty ƚwit","Points":6937,"X":572,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693883Z"},{"ID":42756,"Name":"Wioska barbarzyƄska","Points":4299,"X":343,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693884Z"},{"ID":42757,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":3988,"X":496,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693884Z"},{"ID":42758,"Name":"O058","Points":9819,"X":344,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693885Z"},{"ID":42759,"Name":"New World","Points":10295,"X":438,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693885Z"},{"ID":42760,"Name":".achim.","Points":5588,"X":489,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693886Z"},{"ID":42761,"Name":"FENDI","Points":2194,"X":299,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693886Z"},{"ID":42762,"Name":"MojeDnoToWaszSzczyt","Points":10495,"X":561,"Y":364,"Continent":"K35","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693886Z"},{"ID":42763,"Name":"x001","Points":6736,"X":353,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693887Z"},{"ID":42764,"Name":"NiePyskuj","Points":8669,"X":624,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693887Z"},{"ID":42765,"Name":"Wioska barbarzyƄska","Points":9140,"X":362,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693887Z"},{"ID":42766,"Name":"Modrzejowice","Points":9153,"X":575,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693887Z"},{"ID":42767,"Name":"TWIERDZA .:003:.","Points":10050,"X":694,"Y":572,"Continent":"K56","Bonus":5,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693888Z"},{"ID":42768,"Name":"Wioska barbarzyƄska","Points":4001,"X":666,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693888Z"},{"ID":42769,"Name":"The Game Has Only Just Begun","Points":9976,"X":356,"Y":536,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693888Z"},{"ID":42770,"Name":"Wioska Wiki 4","Points":9113,"X":523,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693888Z"},{"ID":42771,"Name":"#K66 0002","Points":9761,"X":610,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693889Z"},{"ID":42772,"Name":"075","Points":9475,"X":693,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693889Z"},{"ID":42773,"Name":"0100","Points":4868,"X":676,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693889Z"},{"ID":42774,"Name":"Winterhome.028","Points":10178,"X":502,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69389Z"},{"ID":42775,"Name":"WS 03","Points":9626,"X":697,"Y":441,"Continent":"K46","Bonus":5,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69389Z"},{"ID":42776,"Name":"C0196","Points":6735,"X":303,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69389Z"},{"ID":42777,"Name":"New World","Points":10294,"X":423,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69389Z"},{"ID":42778,"Name":"aaaa","Points":9899,"X":386,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693891Z"},{"ID":42779,"Name":"Wioska barbarzyƄska","Points":4349,"X":696,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693891Z"},{"ID":42780,"Name":"z181_24","Points":9842,"X":304,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693891Z"},{"ID":42781,"Name":"Wioska barbarzyƄska","Points":3516,"X":558,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693892Z"},{"ID":42782,"Name":"FAKE OR OFF","Points":9813,"X":418,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693892Z"},{"ID":42783,"Name":"006. Cicha","Points":7753,"X":320,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693892Z"},{"ID":42784,"Name":"Wioska Zorro 024","Points":5026,"X":675,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693892Z"},{"ID":42785,"Name":"Wow8","Points":7870,"X":367,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693893Z"},{"ID":42786,"Name":"0009","Points":2914,"X":359,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693893Z"},{"ID":42788,"Name":"Wioska Totomoose 5","Points":726,"X":313,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":849100744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693893Z"},{"ID":42789,"Name":"EO EO","Points":8749,"X":294,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693893Z"},{"ID":42790,"Name":"[0144]","Points":9129,"X":440,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693894Z"},{"ID":42791,"Name":"Wioska Totomoose 4","Points":2577,"X":314,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":849100744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693894Z"},{"ID":42792,"Name":"Retkinia","Points":3070,"X":585,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":849100612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693894Z"},{"ID":42793,"Name":"Wioska barbarzyƄska","Points":3764,"X":697,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693895Z"},{"ID":42794,"Name":"C053","Points":9425,"X":379,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693895Z"},{"ID":42795,"Name":"Wioska barbarzyƄska","Points":5915,"X":694,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693895Z"},{"ID":42796,"Name":"**25**","Points":5054,"X":643,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849098782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693896Z"},{"ID":42797,"Name":"Didek","Points":7052,"X":688,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693896Z"},{"ID":42798,"Name":"083 invidia","Points":5454,"X":518,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693896Z"},{"ID":42799,"Name":"Wioska barbarzyƄska","Points":9961,"X":384,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693896Z"},{"ID":42801,"Name":"*123*","Points":10211,"X":355,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693897Z"},{"ID":42802,"Name":"-024- S","Points":2020,"X":619,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693897Z"},{"ID":42803,"Name":"030","Points":10224,"X":311,"Y":567,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693897Z"},{"ID":42804,"Name":"MojeDnoToWaszSzczyt","Points":8034,"X":507,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693898Z"},{"ID":42805,"Name":"a moĆŒe off ? :)","Points":6625,"X":674,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693898Z"},{"ID":42806,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":4877,"X":496,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693898Z"},{"ID":42807,"Name":"Wioska barbarzyƄska","Points":6656,"X":389,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693899Z"},{"ID":42809,"Name":"[0223]","Points":6745,"X":294,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693899Z"},{"ID":42810,"Name":"Spontan","Points":7383,"X":339,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693899Z"},{"ID":42811,"Name":"Cezowy grĂłd","Points":3397,"X":319,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693899Z"},{"ID":42812,"Name":"###006###","Points":10495,"X":583,"Y":689,"Continent":"K65","Bonus":2,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6939Z"},{"ID":42813,"Name":"018 GĂłrki RozbiĂłrki","Points":9537,"X":647,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6939Z"},{"ID":42814,"Name":"Wioska barbarzyƄska","Points":7546,"X":388,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.6939Z"},{"ID":42815,"Name":"28. ZBARAĆ»","Points":5427,"X":696,"Y":470,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693901Z"},{"ID":42816,"Name":"Darma dla zawodnika","Points":10311,"X":323,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693901Z"},{"ID":42818,"Name":"New World","Points":10294,"X":428,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693902Z"},{"ID":42819,"Name":"010. GĂłrki Kamienne","Points":9660,"X":647,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693902Z"},{"ID":42820,"Name":"Dream on","Points":9488,"X":302,"Y":496,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693902Z"},{"ID":42821,"Name":"Dream on","Points":5921,"X":296,"Y":479,"Continent":"K42","Bonus":6,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693903Z"},{"ID":42822,"Name":"WB09","Points":4825,"X":325,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693903Z"},{"ID":42823,"Name":"Wioska barbarzyƄska","Points":7280,"X":398,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693904Z"},{"ID":42824,"Name":"0017 Wioska barbarzyƄska","Points":10476,"X":443,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693904Z"},{"ID":42825,"Name":"psycha sitting","Points":10311,"X":422,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693904Z"},{"ID":42826,"Name":"bucksbarzyƄskamiiiru","Points":11550,"X":333,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693905Z"},{"ID":42828,"Name":"***** ***","Points":8477,"X":420,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693905Z"},{"ID":42829,"Name":"???","Points":10728,"X":485,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693905Z"},{"ID":42830,"Name":"055 - Nowy Początek...","Points":6972,"X":353,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693906Z"},{"ID":42831,"Name":"[0224]","Points":7953,"X":299,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693906Z"},{"ID":42832,"Name":"0073","Points":4641,"X":682,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693906Z"},{"ID":42833,"Name":"C.016","Points":5185,"X":699,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693907Z"},{"ID":42834,"Name":"Osada koczownikĂłw","Points":9576,"X":694,"Y":432,"Continent":"K46","Bonus":7,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693907Z"},{"ID":42835,"Name":"Wioska barbarzyƄska","Points":3539,"X":554,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693907Z"},{"ID":42836,"Name":"a moĆŒe off ? :)","Points":6146,"X":674,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693908Z"},{"ID":42837,"Name":"Ć»elazowy grĂłd","Points":10444,"X":317,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693908Z"},{"ID":42838,"Name":"Helowy grĂłd","Points":4410,"X":317,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693908Z"},{"ID":42839,"Name":"bucksbarzyƄskamiiiru","Points":9854,"X":323,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693908Z"},{"ID":42840,"Name":"17.SEVENTEEN","Points":8847,"X":685,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693909Z"},{"ID":42842,"Name":"Wygwizdowa 004","Points":10311,"X":640,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693909Z"},{"ID":42843,"Name":"barbarzyƄska","Points":2949,"X":314,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849099258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693909Z"},{"ID":42844,"Name":"0001","Points":10183,"X":375,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69391Z"},{"ID":42845,"Name":"KONFA TO MARKA, NARKA","Points":7808,"X":300,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69391Z"},{"ID":42846,"Name":"C051","Points":9842,"X":367,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69391Z"},{"ID":42847,"Name":"ƚlimak 11","Points":9277,"X":606,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693911Z"},{"ID":42848,"Name":"O050","Points":9894,"X":346,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693911Z"},{"ID":42849,"Name":"New Land 02","Points":5760,"X":332,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693911Z"},{"ID":42850,"Name":"Wioska barbarzyƄska","Points":1780,"X":634,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693911Z"},{"ID":42851,"Name":"Wioska Wiki","Points":12154,"X":521,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693912Z"},{"ID":42852,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":650,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693912Z"},{"ID":42853,"Name":"K35 - [030] Before Land","Points":9783,"X":575,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693912Z"},{"ID":42855,"Name":"AAA","Points":4596,"X":544,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693912Z"},{"ID":42856,"Name":"#105 C","Points":6892,"X":530,"Y":673,"Continent":"K65","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693913Z"},{"ID":42857,"Name":"011","Points":8182,"X":523,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693913Z"},{"ID":42858,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":655,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693913Z"},{"ID":42859,"Name":"265...Gulden","Points":4575,"X":459,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693914Z"},{"ID":42860,"Name":"psycha sitting","Points":6626,"X":399,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693914Z"},{"ID":42861,"Name":"E.02","Points":9442,"X":677,"Y":505,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693914Z"},{"ID":42862,"Name":"KONOPISKA","Points":9901,"X":303,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693915Z"},{"ID":42863,"Name":"1.Ernesto Hoosta","Points":5459,"X":524,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693915Z"},{"ID":42864,"Name":"Wioska barbarzyƄska","Points":8530,"X":561,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693915Z"},{"ID":42865,"Name":"Wioska barbarzyƄska","Points":6338,"X":309,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693915Z"},{"ID":42866,"Name":"0087","Points":8384,"X":675,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693916Z"},{"ID":42868,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":323,"Y":394,"Continent":"K33","Bonus":2,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693916Z"},{"ID":42869,"Name":"AAA","Points":10544,"X":544,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693916Z"},{"ID":42870,"Name":"Wioska barbarzyƄska","Points":7322,"X":372,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693917Z"},{"ID":42871,"Name":"AAA","Points":9751,"X":541,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693917Z"},{"ID":42872,"Name":"081.","Points":9216,"X":455,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693917Z"},{"ID":42873,"Name":"001","Points":9740,"X":698,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693918Z"},{"ID":42874,"Name":"Wioska barbarzyƄska","Points":4049,"X":630,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693918Z"},{"ID":42875,"Name":"58 ggggggg","Points":3311,"X":295,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693919Z"},{"ID":42876,"Name":"Wow18","Points":3181,"X":364,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693919Z"},{"ID":42878,"Name":"O147","Points":9728,"X":352,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693919Z"},{"ID":42879,"Name":"BRICKLEBERRY","Points":5363,"X":559,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693919Z"},{"ID":42880,"Name":"*INTERTWINED*","Points":5721,"X":517,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69392Z"},{"ID":42881,"Name":"Anfield","Points":9377,"X":668,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69392Z"},{"ID":42882,"Name":"Zagroda8","Points":5879,"X":609,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69392Z"},{"ID":42883,"Name":"Kuna","Points":6877,"X":704,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693921Z"},{"ID":42884,"Name":"Barbi","Points":10068,"X":566,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693921Z"},{"ID":42885,"Name":"Wioska barbarzyƄska","Points":9893,"X":363,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693921Z"},{"ID":42886,"Name":"???","Points":9924,"X":478,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693921Z"},{"ID":42887,"Name":"031","Points":7306,"X":703,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693922Z"},{"ID":42888,"Name":"005","Points":6925,"X":647,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693922Z"},{"ID":42889,"Name":"KRÓL PAPI WIELKI","Points":9370,"X":651,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693922Z"},{"ID":42890,"Name":"TWIERDZA .:043:.","Points":10226,"X":692,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693923Z"},{"ID":42891,"Name":"Wygwizdowa 003","Points":10311,"X":638,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693923Z"},{"ID":42892,"Name":"Rafaleks","Points":10495,"X":636,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693923Z"},{"ID":42893,"Name":"po doĆŒynkach","Points":5680,"X":706,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693924Z"},{"ID":42894,"Name":"XDX","Points":7393,"X":599,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693924Z"},{"ID":42895,"Name":"###002###","Points":10495,"X":592,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693924Z"},{"ID":42896,"Name":"Zagroda3","Points":8600,"X":604,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693924Z"},{"ID":42897,"Name":"- 254 - SS","Points":5973,"X":552,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693925Z"},{"ID":42898,"Name":"????","Points":4539,"X":466,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693925Z"},{"ID":42899,"Name":"O124","Points":9899,"X":334,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693925Z"},{"ID":42900,"Name":"Wioska 5","Points":6850,"X":502,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693925Z"},{"ID":42901,"Name":"Wioska Ania12345","Points":9929,"X":647,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698234770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693926Z"},{"ID":42902,"Name":"0031 Kasko14","Points":9800,"X":450,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693926Z"},{"ID":42904,"Name":"048KP","Points":6288,"X":486,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693926Z"},{"ID":42905,"Name":"virginRiver","Points":9368,"X":571,"Y":623,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693927Z"},{"ID":42906,"Name":"New World","Points":10294,"X":436,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693927Z"},{"ID":42907,"Name":"Wioska krumlow 15","Points":2254,"X":597,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693927Z"},{"ID":42908,"Name":"Wioska barbarzyƄska","Points":5295,"X":698,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693928Z"},{"ID":42909,"Name":"O011","Points":9956,"X":342,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693928Z"},{"ID":42910,"Name":"Darma dla zawodnika","Points":3037,"X":317,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693928Z"},{"ID":42911,"Name":"psycha sitting","Points":10311,"X":409,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693928Z"},{"ID":42912,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":656,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693929Z"},{"ID":42913,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693929Z"},{"ID":42914,"Name":"Wioska barbarzyƄska","Points":2660,"X":638,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":848973715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693929Z"},{"ID":42916,"Name":"044","Points":8599,"X":650,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69393Z"},{"ID":42917,"Name":"Kagusiowo 11","Points":3744,"X":301,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69393Z"},{"ID":42918,"Name":"New World","Points":9942,"X":432,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69393Z"},{"ID":42919,"Name":"East 3","Points":5368,"X":663,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693931Z"},{"ID":42920,"Name":"B.03","Points":9623,"X":670,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693931Z"},{"ID":42921,"Name":"Wioska barbarzyƄska","Points":9831,"X":701,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693931Z"},{"ID":42923,"Name":"2.Caceres","Points":10605,"X":583,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693931Z"},{"ID":42924,"Name":"Wioska barbarzyƄska","Points":7961,"X":669,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693932Z"},{"ID":42925,"Name":"CALL 1049","Points":10495,"X":655,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693932Z"},{"ID":42926,"Name":"Szlachcic","Points":10136,"X":387,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693932Z"},{"ID":42927,"Name":"205...segador","Points":10654,"X":458,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693932Z"},{"ID":42928,"Name":".achim.","Points":6528,"X":471,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693933Z"},{"ID":42929,"Name":"#104#","Points":8482,"X":621,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693933Z"},{"ID":42930,"Name":"Wioska barbarzyƄska","Points":9484,"X":382,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693933Z"},{"ID":42931,"Name":"Rogatki2","Points":6218,"X":309,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693934Z"},{"ID":42932,"Name":"065","Points":11824,"X":409,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693934Z"},{"ID":42933,"Name":"0018 Wioska barbarzyƄska","Points":10479,"X":439,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693934Z"},{"ID":42934,"Name":"Wioska barbarzyƄska","Points":8875,"X":344,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693935Z"},{"ID":42935,"Name":"Dream on","Points":9750,"X":293,"Y":493,"Continent":"K42","Bonus":9,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693935Z"},{"ID":42936,"Name":"TWIERDZA .:078:.","Points":8737,"X":690,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693935Z"},{"ID":42937,"Name":"TWIERDZA .:038:.","Points":10231,"X":691,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693935Z"},{"ID":42938,"Name":"Wioska barbarzyƄska","Points":10474,"X":582,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693936Z"},{"ID":42939,"Name":"008 sƂaby jestem","Points":10237,"X":530,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693936Z"},{"ID":42940,"Name":"C0200","Points":9341,"X":298,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693936Z"},{"ID":42941,"Name":"KONFA TO MARKA, NARKA","Points":9296,"X":302,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693936Z"},{"ID":42942,"Name":"ZƂoty ƚwit","Points":7819,"X":571,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693937Z"},{"ID":42943,"Name":"Wioska lll","Points":9334,"X":316,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693937Z"},{"ID":42944,"Name":"Ziemianka Ruskich 3","Points":8912,"X":360,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693937Z"},{"ID":42945,"Name":"020. Wioska barbarzyƄska","Points":8365,"X":351,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693937Z"},{"ID":42946,"Name":"a moĆŒe off ? :)","Points":6363,"X":674,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693937Z"},{"ID":42947,"Name":"FAKE OR OFF","Points":9822,"X":410,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693938Z"},{"ID":42948,"Name":"ZA10","Points":9835,"X":320,"Y":412,"Continent":"K43","Bonus":3,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693938Z"},{"ID":42949,"Name":"FP019","Points":10393,"X":475,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693938Z"},{"ID":42950,"Name":"- 258 - SS","Points":8107,"X":560,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693939Z"},{"ID":42951,"Name":"Wioska R.R.","Points":6217,"X":547,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693939Z"},{"ID":42952,"Name":"BRICKLEBERRY","Points":8970,"X":548,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693939Z"},{"ID":42953,"Name":"Wioska barbarzyƄska","Points":4183,"X":611,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693939Z"},{"ID":42954,"Name":"[*] zƂyy banan [*]","Points":8930,"X":629,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69394Z"},{"ID":42955,"Name":"Dream on","Points":6437,"X":294,"Y":487,"Continent":"K42","Bonus":2,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69394Z"},{"ID":42956,"Name":"B#025","Points":8963,"X":695,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69394Z"},{"ID":42957,"Name":"096","Points":8359,"X":524,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69394Z"},{"ID":42958,"Name":"Wioska barbarzyƄska","Points":6373,"X":425,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":849100399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693941Z"},{"ID":42959,"Name":"@04@","Points":7604,"X":406,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693941Z"},{"ID":42960,"Name":"006","Points":3269,"X":706,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693941Z"},{"ID":42961,"Name":"Wioska barbarzyƄska","Points":4690,"X":469,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693942Z"},{"ID":42962,"Name":"val2","Points":9664,"X":586,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693942Z"},{"ID":42963,"Name":"Na KraƄcu ƚwiata 014","Points":4052,"X":636,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693942Z"},{"ID":42964,"Name":"008. Night Raid","Points":9564,"X":491,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693943Z"},{"ID":42965,"Name":"B005 Wioska FUZA","Points":10224,"X":703,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693943Z"},{"ID":42966,"Name":"TWIERDZA .:014:.","Points":10539,"X":686,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693943Z"},{"ID":42968,"Name":"005","Points":5532,"X":698,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693943Z"},{"ID":42969,"Name":"Wioska 006","Points":4458,"X":701,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693944Z"},{"ID":42970,"Name":"psycha sitting","Points":10311,"X":415,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693944Z"},{"ID":42973,"Name":"????","Points":6090,"X":489,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693944Z"},{"ID":42974,"Name":"007","Points":9686,"X":297,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693944Z"},{"ID":42975,"Name":"Szlachcic","Points":9917,"X":384,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693945Z"},{"ID":42976,"Name":"Osada koczownikĂłw","Points":6516,"X":305,"Y":447,"Continent":"K43","Bonus":1,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693945Z"},{"ID":42978,"Name":"A16","Points":6079,"X":693,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693945Z"},{"ID":42979,"Name":"KIELBA 088","Points":10253,"X":447,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693945Z"},{"ID":42980,"Name":"018","Points":10495,"X":421,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693946Z"},{"ID":42982,"Name":"Wioska barbarzyƄska","Points":2979,"X":301,"Y":460,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693946Z"},{"ID":42983,"Name":"Wioska Zorro 006","Points":10971,"X":674,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693946Z"},{"ID":42984,"Name":"Wioska barbarzyƄska","Points":6232,"X":685,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693946Z"},{"ID":42985,"Name":"033","Points":6011,"X":304,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693947Z"},{"ID":42986,"Name":"Miedziany grĂłd","Points":10298,"X":320,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693947Z"},{"ID":42987,"Name":"C114","Points":10193,"X":364,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693947Z"},{"ID":42988,"Name":"Wioska barbarzyƄska","Points":3837,"X":646,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693948Z"},{"ID":42990,"Name":"TWIERDZA .:011:.","Points":10159,"X":688,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693948Z"},{"ID":42991,"Name":"B#001","Points":9797,"X":694,"Y":452,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693948Z"},{"ID":42992,"Name":"Wioska barbarzyƄska","Points":5949,"X":693,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693949Z"},{"ID":42993,"Name":"Wioska barbarzyƄska","Points":10083,"X":669,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693949Z"},{"ID":42994,"Name":"Nowy rozdziaƂ?","Points":10252,"X":697,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693949Z"},{"ID":42995,"Name":"026. Uƛmiech :)","Points":10237,"X":701,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693949Z"},{"ID":42996,"Name":"EO EO","Points":10019,"X":295,"Y":517,"Continent":"K52","Bonus":4,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69395Z"},{"ID":42997,"Name":"Out of Touch","Points":9485,"X":316,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69395Z"},{"ID":42998,"Name":"[0156]","Points":8841,"X":450,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69395Z"},{"ID":42999,"Name":"XDX","Points":9701,"X":611,"Y":330,"Continent":"K36","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69395Z"},{"ID":43000,"Name":"Wioska barbarzyƄska","Points":1288,"X":306,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693951Z"},{"ID":43001,"Name":"bucksbarzyƄskamiiiru","Points":9556,"X":324,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693951Z"},{"ID":43002,"Name":"Gazun","Points":3428,"X":644,"Y":645,"Continent":"K66","Bonus":6,"PlayerID":848903260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693951Z"},{"ID":43004,"Name":"020","Points":9692,"X":666,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693951Z"},{"ID":43006,"Name":"!36 85 Putna","Points":7190,"X":658,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693952Z"},{"ID":43007,"Name":".achim.","Points":10311,"X":476,"Y":295,"Continent":"K24","Bonus":2,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693952Z"},{"ID":43008,"Name":"015 GĂłrki Marmurki","Points":11130,"X":652,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693952Z"},{"ID":43009,"Name":"Winterhome.030","Points":10178,"X":501,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693952Z"},{"ID":43010,"Name":"B12","Points":3928,"X":699,"Y":533,"Continent":"K56","Bonus":7,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693953Z"},{"ID":43011,"Name":"S005","Points":7617,"X":682,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693953Z"},{"ID":43012,"Name":"Wioska barbarzyƄska","Points":9180,"X":704,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693953Z"},{"ID":43015,"Name":"- Gracadabra -","Points":2499,"X":669,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":849009623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693954Z"},{"ID":43016,"Name":"Wioska 24","Points":2761,"X":681,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693954Z"},{"ID":43017,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":298,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693954Z"},{"ID":43018,"Name":"????","Points":10582,"X":481,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693954Z"},{"ID":43019,"Name":"Elo Elo 6","Points":7936,"X":313,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693955Z"},{"ID":43021,"Name":"Wioska karteƄska","Points":3433,"X":695,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693955Z"},{"ID":43022,"Name":"037 Night Raid","Points":7389,"X":485,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693955Z"},{"ID":43023,"Name":"0037 Kasko14","Points":10342,"X":448,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693955Z"},{"ID":43024,"Name":"Osada koczownikĂłw","Points":6591,"X":699,"Y":502,"Continent":"K56","Bonus":1,"PlayerID":3364735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693956Z"},{"ID":43025,"Name":"###082###","Points":10495,"X":581,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693956Z"},{"ID":43026,"Name":"0106","Points":9782,"X":706,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693956Z"},{"ID":43027,"Name":"Tarkos","Points":8910,"X":651,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693957Z"},{"ID":43028,"Name":"XXXX","Points":10068,"X":560,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693957Z"},{"ID":43029,"Name":"New World","Points":10295,"X":433,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693957Z"},{"ID":43030,"Name":"KRÓL PAPI WIELKI","Points":10436,"X":656,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693958Z"},{"ID":43031,"Name":"026","Points":7044,"X":304,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693958Z"},{"ID":43032,"Name":"FAKE OR OFF","Points":9816,"X":413,"Y":313,"Continent":"K34","Bonus":6,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693958Z"},{"ID":43033,"Name":"Wioska barbarzyƄska","Points":5862,"X":303,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693958Z"},{"ID":43034,"Name":"Olesno","Points":2174,"X":693,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693959Z"},{"ID":43035,"Name":"Pierdolnik","Points":12154,"X":423,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":849100399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693959Z"},{"ID":43036,"Name":"A000","Points":9379,"X":467,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693959Z"},{"ID":43037,"Name":"###083###","Points":10495,"X":593,"Y":675,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693959Z"},{"ID":43038,"Name":"068 ZieloneOczko4","Points":6527,"X":705,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69396Z"},{"ID":43039,"Name":"Hello there","Points":4332,"X":319,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69396Z"},{"ID":43040,"Name":"KsiÄ™ĆŒyc","Points":3883,"X":551,"Y":334,"Continent":"K35","Bonus":0,"PlayerID":699797805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69396Z"},{"ID":43041,"Name":"Elo Elo 5","Points":9186,"X":312,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69396Z"},{"ID":43042,"Name":"Wioska Turystyczna 010","Points":1678,"X":701,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693961Z"},{"ID":43043,"Name":"012.Stradi","Points":10452,"X":426,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693961Z"},{"ID":43044,"Name":"012. GĂłrki Ć»wirowe","Points":7354,"X":648,"Y":642,"Continent":"K66","Bonus":9,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693961Z"},{"ID":43045,"Name":"058. Ɓomnica","Points":7514,"X":699,"Y":548,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693962Z"},{"ID":43046,"Name":"Wioska barbarzyƄska","Points":9999,"X":342,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693962Z"},{"ID":43047,"Name":"002","Points":8703,"X":696,"Y":561,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693962Z"},{"ID":43048,"Name":"C0128","Points":10362,"X":302,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693962Z"},{"ID":43049,"Name":"034. Night Raid","Points":9017,"X":488,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693963Z"},{"ID":43050,"Name":"Jan ost daleko","Points":7918,"X":698,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693963Z"},{"ID":43051,"Name":"XDX","Points":6544,"X":611,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693963Z"},{"ID":43053,"Name":"039","Points":10019,"X":447,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693963Z"},{"ID":43054,"Name":"BRICKLEBERRY","Points":5790,"X":548,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693963Z"},{"ID":43055,"Name":"Psycho to Marka, Narka !","Points":7465,"X":317,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693964Z"},{"ID":43056,"Name":"New World","Points":9746,"X":436,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693964Z"},{"ID":43058,"Name":"Wioska barbarzyƄska","Points":4051,"X":308,"Y":448,"Continent":"K43","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693964Z"},{"ID":43059,"Name":"05.TREASURE","Points":9956,"X":687,"Y":420,"Continent":"K46","Bonus":8,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693965Z"},{"ID":43060,"Name":"PRZEMYƚL","Points":9858,"X":493,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":849100406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693965Z"},{"ID":43061,"Name":"014.Stradi","Points":10495,"X":433,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693965Z"},{"ID":43062,"Name":"007. GĂłrki PagĂłrki","Points":10362,"X":659,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693965Z"},{"ID":43064,"Name":"Wioska barbarzyƄska","Points":10085,"X":382,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693966Z"},{"ID":43065,"Name":"O051","Points":9818,"X":333,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693966Z"},{"ID":43066,"Name":"- 197 - SS","Points":6936,"X":561,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693966Z"},{"ID":43067,"Name":"KRÓL PAPI WIELKI","Points":9367,"X":632,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693966Z"},{"ID":43068,"Name":"015","Points":5827,"X":637,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693967Z"},{"ID":43069,"Name":"C0099","Points":10362,"X":300,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693967Z"},{"ID":43070,"Name":"*002*","Points":10495,"X":328,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693967Z"},{"ID":43071,"Name":"AAA","Points":8363,"X":549,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693967Z"},{"ID":43072,"Name":"0021","Points":10495,"X":514,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693968Z"},{"ID":43073,"Name":"ZA04","Points":9835,"X":321,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693968Z"},{"ID":43074,"Name":"0108","Points":8796,"X":705,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693968Z"},{"ID":43075,"Name":"Niepokonany Albatros!","Points":9722,"X":567,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693968Z"},{"ID":43076,"Name":"Z16","Points":9835,"X":313,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693969Z"},{"ID":43077,"Name":"###022###","Points":10495,"X":591,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693969Z"},{"ID":43078,"Name":"Wioska barbarzyƄska","Points":9587,"X":362,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693969Z"},{"ID":43079,"Name":"Domek kapcia KURY","Points":8702,"X":359,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69397Z"},{"ID":43080,"Name":"004","Points":10019,"X":456,"Y":300,"Continent":"K34","Bonus":8,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69397Z"},{"ID":43081,"Name":"z Wioska 4","Points":3457,"X":359,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69397Z"},{"ID":43082,"Name":"XDX","Points":10052,"X":606,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69397Z"},{"ID":43083,"Name":"z181_23","Points":8378,"X":305,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693971Z"},{"ID":43084,"Name":"I lost you","Points":9576,"X":702,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693971Z"},{"ID":43085,"Name":"z 0000 Osada","Points":10083,"X":348,"Y":360,"Continent":"K33","Bonus":9,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693971Z"},{"ID":43086,"Name":"007.","Points":9713,"X":350,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693971Z"},{"ID":43087,"Name":"0007 Sir JuriGagarin","Points":10003,"X":442,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693972Z"},{"ID":43089,"Name":"###084###","Points":10495,"X":580,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693972Z"},{"ID":43091,"Name":"064","Points":10495,"X":408,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693972Z"},{"ID":43092,"Name":"029.","Points":3408,"X":323,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693973Z"},{"ID":43093,"Name":"AAA","Points":8987,"X":559,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693973Z"},{"ID":43094,"Name":"z181_11","Points":9881,"X":309,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693973Z"},{"ID":43095,"Name":"046.Stradi","Points":10495,"X":429,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693973Z"},{"ID":43096,"Name":"Wioska barbarzyƄska","Points":6294,"X":675,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693974Z"},{"ID":43098,"Name":"002","Points":8405,"X":395,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693974Z"},{"ID":43099,"Name":"Wioska barbarzyƄska","Points":1926,"X":628,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693974Z"},{"ID":43100,"Name":"133.Stradi","Points":2524,"X":431,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693974Z"},{"ID":43101,"Name":"0013 mackobl14","Points":10476,"X":442,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693975Z"},{"ID":43102,"Name":"011","Points":7466,"X":302,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693975Z"},{"ID":43103,"Name":"005","Points":4052,"X":592,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693975Z"},{"ID":43104,"Name":"marmag81/03","Points":5569,"X":302,"Y":468,"Continent":"K43","Bonus":2,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693975Z"},{"ID":43105,"Name":"Wuhan","Points":9570,"X":629,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693976Z"},{"ID":43106,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":657,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693976Z"},{"ID":43107,"Name":"025 NAWRA","Points":2922,"X":664,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693976Z"},{"ID":43108,"Name":"Wioska barbarzyƄska","Points":9976,"X":355,"Y":647,"Continent":"K63","Bonus":5,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693976Z"},{"ID":43109,"Name":"Didi","Points":9051,"X":688,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693977Z"},{"ID":43110,"Name":"ZZZ","Points":6503,"X":513,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693977Z"},{"ID":43111,"Name":"Piątnica","Points":11678,"X":689,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849100082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693977Z"},{"ID":43112,"Name":"Wioska barbarzyƄska","Points":9753,"X":532,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693978Z"},{"ID":43113,"Name":".achim.","Points":7359,"X":468,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693978Z"},{"ID":43114,"Name":"C.012","Points":10000,"X":699,"Y":487,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693978Z"},{"ID":43115,"Name":"Nowa 56","Points":7579,"X":685,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693978Z"},{"ID":43116,"Name":"AAA","Points":8684,"X":542,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693979Z"},{"ID":43117,"Name":".achim.","Points":6823,"X":467,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693979Z"},{"ID":43118,"Name":"-035-","Points":9899,"X":364,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":699097885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693979Z"},{"ID":43119,"Name":"ZA08","Points":9835,"X":323,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693979Z"},{"ID":43120,"Name":"###023###","Points":10495,"X":597,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69398Z"},{"ID":43121,"Name":"S003","Points":7823,"X":682,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69398Z"},{"ID":43122,"Name":"bucksbarzyƄskamiiiru","Points":11130,"X":330,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693981Z"},{"ID":43123,"Name":"Rogatki1","Points":5062,"X":310,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693981Z"},{"ID":43124,"Name":"BƂaziny Dolne","Points":10301,"X":571,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693981Z"},{"ID":43125,"Name":"O126","Points":5975,"X":332,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693981Z"},{"ID":43126,"Name":"018","Points":10160,"X":307,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693982Z"},{"ID":43127,"Name":"HAPERT","Points":10319,"X":626,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693982Z"},{"ID":43128,"Name":"058- Maroczna Osada","Points":3671,"X":649,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693982Z"},{"ID":43129,"Name":"021","Points":9741,"X":667,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693982Z"},{"ID":43130,"Name":"Wioska barbarzyƄska","Points":3599,"X":703,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693983Z"},{"ID":43131,"Name":"MELISKA","Points":8991,"X":359,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693983Z"},{"ID":43132,"Name":"###008###","Points":10495,"X":590,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693983Z"},{"ID":43133,"Name":"- 267 - SS","Points":7424,"X":549,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693983Z"},{"ID":43134,"Name":"Kagusiowo 12","Points":3307,"X":303,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693983Z"},{"ID":43135,"Name":"###011###","Points":10495,"X":593,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693984Z"},{"ID":43136,"Name":"004","Points":7449,"X":388,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693984Z"},{"ID":43137,"Name":"FAKE OR OFF","Points":9824,"X":415,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693984Z"},{"ID":43138,"Name":"Marmag81/12","Points":9299,"X":305,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693984Z"},{"ID":43139,"Name":"Ć»ywiec","Points":6260,"X":297,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693985Z"},{"ID":43140,"Name":"2.Algeciras","Points":4360,"X":576,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693985Z"},{"ID":43141,"Name":"AAA","Points":6406,"X":562,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693985Z"},{"ID":43142,"Name":"[0151]","Points":9007,"X":453,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693985Z"},{"ID":43143,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":331,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693986Z"},{"ID":43144,"Name":"ZA24","Points":9835,"X":318,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693986Z"},{"ID":43145,"Name":".achim.","Points":3672,"X":474,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693986Z"},{"ID":43146,"Name":"Wioska barbarzyƄska","Points":5150,"X":694,"Y":459,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693986Z"},{"ID":43147,"Name":"Osada koczownikĂłw","Points":10019,"X":384,"Y":334,"Continent":"K33","Bonus":1,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693987Z"},{"ID":43148,"Name":"Zaplecze Barba 028","Points":6016,"X":363,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693987Z"},{"ID":43149,"Name":"Wioska barbarzyƄska","Points":7527,"X":385,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693987Z"},{"ID":43150,"Name":"Wioska barbarzyƄska","Points":10290,"X":579,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693988Z"},{"ID":43151,"Name":"Bessa 022","Points":8522,"X":630,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693988Z"},{"ID":43152,"Name":"0.06 Raz","Points":8338,"X":464,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693988Z"},{"ID":43153,"Name":"Wioska 7","Points":2902,"X":362,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3342690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693988Z"},{"ID":43154,"Name":"C0340","Points":3221,"X":298,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693988Z"},{"ID":43155,"Name":"Wioska klez 020","Points":5638,"X":310,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693989Z"},{"ID":43156,"Name":"KRÓL PAPI WIELKI","Points":10082,"X":657,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693989Z"},{"ID":43158,"Name":"WiedĆșma - Z 006","Points":5124,"X":306,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693989Z"},{"ID":43159,"Name":"Klaudiczek","Points":2722,"X":644,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693989Z"},{"ID":43160,"Name":"054 invidia","Points":10301,"X":520,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69399Z"},{"ID":43161,"Name":"ADEN","Points":9522,"X":612,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69399Z"},{"ID":43162,"Name":"Wioska barbarzyƄska 0","Points":5594,"X":314,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.69399Z"},{"ID":43163,"Name":"26 barbarzyƄska...","Points":10495,"X":301,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693991Z"},{"ID":43164,"Name":"marmag81/03w","Points":6013,"X":300,"Y":469,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693991Z"},{"ID":43166,"Name":"Wioska barbarzyƄska","Points":7209,"X":685,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693991Z"},{"ID":43167,"Name":"ƚpiący Szaman","Points":1543,"X":318,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":849100439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693991Z"},{"ID":43168,"Name":"Psycho to Marka, Narka !","Points":4091,"X":316,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693992Z"},{"ID":43169,"Name":"022","Points":10005,"X":455,"Y":304,"Continent":"K34","Bonus":7,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693992Z"},{"ID":43170,"Name":"abc","Points":3883,"X":492,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":1493696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693992Z"},{"ID":43171,"Name":"XDX","Points":10290,"X":606,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693993Z"},{"ID":43172,"Name":"wioska","Points":4659,"X":631,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":849086693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693993Z"},{"ID":43173,"Name":"0110","Points":8763,"X":704,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693993Z"},{"ID":43174,"Name":"Wielki 3","Points":8099,"X":499,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":849050849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693993Z"},{"ID":43175,"Name":"###024###","Points":10495,"X":592,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693994Z"},{"ID":43176,"Name":"XDX","Points":9616,"X":607,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693994Z"},{"ID":43177,"Name":"[0106]","Points":10495,"X":445,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693994Z"},{"ID":43178,"Name":"C0198","Points":7368,"X":299,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693994Z"},{"ID":43179,"Name":"Wioska barbarzyƄska","Points":7894,"X":371,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693994Z"},{"ID":43180,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9883,"X":493,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693995Z"},{"ID":43181,"Name":"Wioska barbarzyƄska","Points":3087,"X":647,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":6625437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693995Z"},{"ID":43182,"Name":"Taran","Points":9962,"X":327,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693995Z"},{"ID":43183,"Name":"FAKE OR OFF","Points":9953,"X":414,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693996Z"},{"ID":43185,"Name":"Wioska barbarzyƄska","Points":7718,"X":706,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693996Z"},{"ID":43187,"Name":"FAKE OR OFF","Points":9812,"X":408,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693996Z"},{"ID":43188,"Name":"BRICKLEBERRY","Points":10178,"X":554,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693996Z"},{"ID":43189,"Name":"ZA02","Points":9835,"X":320,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693997Z"},{"ID":43190,"Name":"HURKO","Points":9269,"X":480,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":849100406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693997Z"},{"ID":43191,"Name":"0105","Points":9825,"X":704,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693997Z"},{"ID":43192,"Name":"XDX","Points":9219,"X":595,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693998Z"},{"ID":43193,"Name":"###010###","Points":10495,"X":592,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693998Z"},{"ID":43194,"Name":"022","Points":9742,"X":665,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693998Z"},{"ID":43195,"Name":"013","Points":9318,"X":315,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693999Z"},{"ID":43196,"Name":"Wioska astaporska","Points":3021,"X":696,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693999Z"},{"ID":43197,"Name":"Wioska barbarzyƄska","Points":5173,"X":622,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.693999Z"},{"ID":43198,"Name":"605|379","Points":9570,"X":666,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694Z"},{"ID":43199,"Name":"Taran","Points":9955,"X":332,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694Z"},{"ID":43200,"Name":"bucksbarzyƄskamiiiru","Points":3089,"X":337,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694001Z"},{"ID":43201,"Name":"014# Evelyn","Points":9667,"X":486,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694001Z"},{"ID":43202,"Name":"Wioska barbarzyƄska","Points":9861,"X":528,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694001Z"},{"ID":43203,"Name":"0034 Kasko14","Points":10452,"X":449,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694002Z"},{"ID":43204,"Name":"000 Plutosea","Points":6170,"X":315,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694002Z"},{"ID":43205,"Name":"Wioska barbarzyƄska","Points":1657,"X":453,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694002Z"},{"ID":43206,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":304,"Y":457,"Continent":"K43","Bonus":1,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694002Z"},{"ID":43207,"Name":"New World","Points":10297,"X":430,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694003Z"},{"ID":43208,"Name":"04. Rivia","Points":9553,"X":704,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694003Z"},{"ID":43209,"Name":"XDX","Points":8317,"X":610,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694003Z"},{"ID":43210,"Name":"Wioska barbarzyƄska","Points":8967,"X":369,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694003Z"},{"ID":43211,"Name":"Węgorzewo","Points":10213,"X":509,"Y":296,"Continent":"K25","Bonus":9,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694004Z"},{"ID":43213,"Name":"C0245","Points":10362,"X":303,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694004Z"},{"ID":43214,"Name":"zajazd #1","Points":9046,"X":354,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694004Z"},{"ID":43215,"Name":"0114","Points":10301,"X":706,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694004Z"},{"ID":43216,"Name":"Co ona wam biedna zrobiƂa xd","Points":2930,"X":392,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694005Z"},{"ID":43217,"Name":"Wioska barbarzyƄska","Points":7092,"X":620,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694005Z"},{"ID":43218,"Name":"????","Points":7193,"X":487,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694005Z"},{"ID":43219,"Name":"- 297 - SS","Points":7000,"X":557,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694005Z"},{"ID":43220,"Name":"0.03 albo wcale!","Points":9461,"X":460,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694006Z"},{"ID":43221,"Name":"FP017","Points":10069,"X":482,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694006Z"},{"ID":43222,"Name":"ZZZ","Points":7705,"X":463,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694006Z"},{"ID":43223,"Name":"011. Night Raid","Points":9305,"X":493,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694006Z"},{"ID":43224,"Name":"Wioska barbarzyƄska","Points":4877,"X":380,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694007Z"},{"ID":43225,"Name":"KRÓL PAPI WIELKI","Points":9943,"X":652,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694007Z"},{"ID":43226,"Name":"Loca 2","Points":8130,"X":643,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694007Z"},{"ID":43227,"Name":"*210*","Points":10211,"X":331,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.694007Z"},{"ID":43228,"Name":"New World","Points":9359,"X":452,"Y":695,"Continent":"K64","Bonus":4,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72436Z"},{"ID":43229,"Name":"Pontypridd","Points":5056,"X":672,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724361Z"},{"ID":43230,"Name":"Wioska barbarzyƄska","Points":9807,"X":382,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724362Z"},{"ID":43231,"Name":"???","Points":10160,"X":480,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724363Z"},{"ID":43232,"Name":"Osada koczownikĂłw","Points":8320,"X":621,"Y":668,"Continent":"K66","Bonus":7,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724363Z"},{"ID":43234,"Name":"Wioska barbarzyƄska","Points":8124,"X":706,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724364Z"},{"ID":43235,"Name":"!36 65 Cacica","Points":10093,"X":655,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724364Z"},{"ID":43236,"Name":"FAKE OR OFF","Points":9824,"X":407,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724365Z"},{"ID":43237,"Name":"Zagroda5","Points":6719,"X":601,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724372Z"},{"ID":43238,"Name":"FAKE OR OFF","Points":9830,"X":413,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724373Z"},{"ID":43239,"Name":"009a","Points":3683,"X":311,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724373Z"},{"ID":43240,"Name":"Sernik z Andzynkami","Points":9806,"X":704,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724374Z"},{"ID":43241,"Name":"Wioska barbarzyƄska","Points":8673,"X":653,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724374Z"},{"ID":43242,"Name":"ZA16","Points":9835,"X":313,"Y":416,"Continent":"K43","Bonus":7,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724375Z"},{"ID":43243,"Name":"011 plejor","Points":10019,"X":615,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724376Z"},{"ID":43244,"Name":"0100","Points":10301,"X":704,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724377Z"},{"ID":43245,"Name":"Wioska barbarzyƄska","Points":9941,"X":499,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724377Z"},{"ID":43246,"Name":"Kabaty","Points":4664,"X":360,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724378Z"},{"ID":43248,"Name":"Rogatki3","Points":5105,"X":311,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724378Z"},{"ID":43249,"Name":"065","Points":2073,"X":634,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724379Z"},{"ID":43251,"Name":"@13@","Points":5642,"X":403,"Y":327,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72438Z"},{"ID":43253,"Name":"Wioska barbarzyƄska","Points":9045,"X":700,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72438Z"},{"ID":43255,"Name":"O061","Points":9871,"X":335,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724381Z"},{"ID":43256,"Name":"117 invidia","Points":9957,"X":504,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724382Z"},{"ID":43257,"Name":"0041 Qukaqu.","Points":10478,"X":445,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724383Z"},{"ID":43258,"Name":"Puerto Riko","Points":3798,"X":518,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":3298902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724383Z"},{"ID":43259,"Name":"BRZEG JORDANU | 011","Points":3557,"X":698,"Y":519,"Continent":"K56","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724384Z"},{"ID":43260,"Name":"Wioska barbarzyƄska","Points":9782,"X":385,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724384Z"},{"ID":43262,"Name":"A#010","Points":9797,"X":707,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724385Z"},{"ID":43263,"Name":"Dream on","Points":8289,"X":298,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724386Z"},{"ID":43264,"Name":"Wioska barbarzyƄska","Points":10047,"X":591,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724386Z"},{"ID":43265,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":321,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724387Z"},{"ID":43266,"Name":"Jan felek1987 Ost K","Points":9611,"X":696,"Y":458,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724388Z"},{"ID":43267,"Name":"Kasztelan","Points":9801,"X":301,"Y":480,"Continent":"K43","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724389Z"},{"ID":43268,"Name":"Tego typu!","Points":9746,"X":707,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724389Z"},{"ID":43269,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":666,"Y":623,"Continent":"K66","Bonus":2,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72439Z"},{"ID":43272,"Name":"0102","Points":9889,"X":700,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724391Z"},{"ID":43273,"Name":"007","Points":9799,"X":705,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724391Z"},{"ID":43274,"Name":"0048 Utopia2","Points":10478,"X":439,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724393Z"},{"ID":43275,"Name":"Wioska barbarzyƄska","Points":4188,"X":620,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724393Z"},{"ID":43276,"Name":"Wioska barbarzyƄska","Points":2807,"X":707,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724394Z"},{"ID":43277,"Name":"009 BORA7","Points":10019,"X":609,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724394Z"},{"ID":43278,"Name":"WiedĆșma - Z 005","Points":5500,"X":304,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724395Z"},{"ID":43279,"Name":"Taran","Points":9976,"X":329,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724396Z"},{"ID":43280,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":297,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724396Z"},{"ID":43281,"Name":"24. Kerack","Points":8845,"X":698,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724397Z"},{"ID":43282,"Name":"Wioska 017","Points":7523,"X":673,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724398Z"},{"ID":43283,"Name":"042","Points":10019,"X":449,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724399Z"},{"ID":43284,"Name":"z 000 Wioska 11 tttttttt","Points":7713,"X":351,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724399Z"},{"ID":43285,"Name":"psycha sitting","Points":10178,"X":413,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7244Z"},{"ID":43287,"Name":"Wioska barbarzyƄska","Points":5114,"X":352,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724401Z"},{"ID":43289,"Name":"Wioska barbarzyƄska","Points":4003,"X":675,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724402Z"},{"ID":43290,"Name":"Taran","Points":9976,"X":324,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724402Z"},{"ID":43292,"Name":"psycha sitting","Points":10178,"X":413,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724403Z"},{"ID":43293,"Name":"064","Points":10019,"X":634,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724404Z"},{"ID":43294,"Name":"Wioska brabarzyƄcĂłw","Points":6513,"X":674,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724405Z"},{"ID":43296,"Name":"034","Points":4926,"X":304,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724405Z"},{"ID":43297,"Name":"XDX","Points":10290,"X":608,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724406Z"},{"ID":43298,"Name":"!36 75 Brasca","Points":7572,"X":658,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724407Z"},{"ID":43301,"Name":"bucksbarzyƄskamiiiru","Points":5306,"X":334,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724407Z"},{"ID":43306,"Name":"*INTERTWINED*","Points":2998,"X":515,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724408Z"},{"ID":43307,"Name":"Wioska barbarzyƄska","Points":6739,"X":386,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724409Z"},{"ID":43308,"Name":"Lipnica","Points":7189,"X":457,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72441Z"},{"ID":43310,"Name":"Wioska Zorro 001","Points":12154,"X":676,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724411Z"},{"ID":43311,"Name":"Dream on","Points":9530,"X":299,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724411Z"},{"ID":43312,"Name":"z Wioska 3","Points":8429,"X":358,"Y":361,"Continent":"K33","Bonus":3,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724412Z"},{"ID":43314,"Name":"Zagroda2","Points":8325,"X":605,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724413Z"},{"ID":43315,"Name":"Wioska barbarzyƄska","Points":6985,"X":392,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724414Z"},{"ID":43316,"Name":"MojeDnoToWaszSzczyt","Points":9964,"X":501,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724415Z"},{"ID":43318,"Name":"FAKE OR OFF","Points":9812,"X":414,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724416Z"},{"ID":43319,"Name":"O059","Points":9819,"X":339,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724417Z"},{"ID":43320,"Name":"Taran","Points":10433,"X":332,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724417Z"},{"ID":43321,"Name":"068. Wioska barbarzyƄska","Points":8328,"X":697,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724418Z"},{"ID":43322,"Name":"Dream on","Points":3908,"X":300,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724419Z"},{"ID":43323,"Name":"0056","Points":10795,"X":451,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724419Z"},{"ID":43324,"Name":"262...Gulden","Points":5317,"X":457,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72442Z"},{"ID":43325,"Name":"[0209]","Points":7494,"X":299,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724422Z"},{"ID":43326,"Name":"Wioska barbarzyƄska","Points":10475,"X":584,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724423Z"},{"ID":43328,"Name":"S003","Points":9400,"X":600,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724424Z"},{"ID":43329,"Name":"020.Stradi","Points":10444,"X":428,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724425Z"},{"ID":43331,"Name":"Bessa 011","Points":10221,"X":640,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724426Z"},{"ID":43332,"Name":"New World","Points":10294,"X":431,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724426Z"},{"ID":43334,"Name":"Wioska barbarzyƄska","Points":2041,"X":656,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724428Z"},{"ID":43335,"Name":"D023","Points":4875,"X":561,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724429Z"},{"ID":43336,"Name":"003 The Silver Tower","Points":10201,"X":353,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72443Z"},{"ID":43337,"Name":"047 invidia","Points":10237,"X":541,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724431Z"},{"ID":43339,"Name":"C0259","Points":10362,"X":304,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724432Z"},{"ID":43340,"Name":"Nowa 54","Points":7369,"X":684,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724433Z"},{"ID":43341,"Name":"Didek","Points":6545,"X":679,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724434Z"},{"ID":43342,"Name":"Taran","Points":10020,"X":331,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724435Z"},{"ID":43343,"Name":"psycha sitting","Points":6504,"X":398,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724436Z"},{"ID":43344,"Name":"WS 01","Points":9720,"X":698,"Y":439,"Continent":"K46","Bonus":4,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724438Z"},{"ID":43346,"Name":"XDX","Points":10292,"X":607,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724438Z"},{"ID":43348,"Name":"Spec3","Points":4074,"X":545,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699569800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724439Z"},{"ID":43349,"Name":"037.xxx","Points":3304,"X":490,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72444Z"},{"ID":43350,"Name":"Wioska barbarzyƄska","Points":3979,"X":676,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724441Z"},{"ID":43351,"Name":"002","Points":10164,"X":698,"Y":511,"Continent":"K56","Bonus":1,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724441Z"},{"ID":43352,"Name":"21 barbarzyƄska...","Points":9440,"X":299,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724442Z"},{"ID":43353,"Name":"0019 Wioska barbarzyƄska","Points":10072,"X":440,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724444Z"},{"ID":43354,"Name":"Dream on","Points":9505,"X":299,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724445Z"},{"ID":43355,"Name":"#0293 Don Noobas","Points":1976,"X":467,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724446Z"},{"ID":43356,"Name":"A000","Points":9818,"X":467,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724447Z"},{"ID":43357,"Name":"GrabĂłwek","Points":2519,"X":480,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724447Z"},{"ID":43358,"Name":"Dream on","Points":9744,"X":297,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724448Z"},{"ID":43359,"Name":"043 ChoraĆŒy Torpeda","Points":9452,"X":598,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724449Z"},{"ID":43360,"Name":"Arczi997 06","Points":1960,"X":296,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72445Z"},{"ID":43362,"Name":"Dream on","Points":7062,"X":300,"Y":488,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724451Z"},{"ID":43363,"Name":"0011","Points":8753,"X":416,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724452Z"},{"ID":43364,"Name":"002 Hamburg","Points":10495,"X":409,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724453Z"},{"ID":43365,"Name":"Wioska DZ4L","Points":4060,"X":441,"Y":443,"Continent":"K44","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724454Z"},{"ID":43367,"Name":"C0345","Points":2433,"X":298,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724455Z"},{"ID":43369,"Name":"TWIERDZA .:035:.","Points":10225,"X":691,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724456Z"},{"ID":43372,"Name":"AAA","Points":9712,"X":539,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724457Z"},{"ID":43373,"Name":"007","Points":9522,"X":703,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724459Z"},{"ID":43374,"Name":".achim.","Points":5745,"X":477,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724459Z"},{"ID":43375,"Name":"003","Points":10495,"X":413,"Y":689,"Continent":"K64","Bonus":2,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72446Z"},{"ID":43376,"Name":"041. ZachĂłd","Points":2631,"X":463,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724461Z"},{"ID":43377,"Name":"eee","Points":9891,"X":368,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724462Z"},{"ID":43378,"Name":"Didi","Points":9609,"X":687,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724462Z"},{"ID":43379,"Name":"I103","Points":7439,"X":698,"Y":451,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724464Z"},{"ID":43380,"Name":"0010","Points":2527,"X":352,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724465Z"},{"ID":43381,"Name":"- 279 - SS","Points":4466,"X":553,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724467Z"},{"ID":43382,"Name":"FFF","Points":9075,"X":661,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724468Z"},{"ID":43383,"Name":"#K66 0004","Points":6338,"X":611,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724469Z"},{"ID":43384,"Name":"Wiejska3","Points":8796,"X":608,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72447Z"},{"ID":43385,"Name":"Jedlanka Stara","Points":5826,"X":568,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724471Z"},{"ID":43386,"Name":"O127","Points":6567,"X":330,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724472Z"},{"ID":43387,"Name":"Dream on","Points":9747,"X":298,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724473Z"},{"ID":43388,"Name":"002# Gwen","Points":10093,"X":485,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724475Z"},{"ID":43389,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9372,"X":494,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724476Z"},{"ID":43390,"Name":"Psycho to Marka, Narka !","Points":6564,"X":313,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724477Z"},{"ID":43391,"Name":"New World","Points":10132,"X":469,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724478Z"},{"ID":43392,"Name":"C0222","Points":10362,"X":298,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724478Z"},{"ID":43393,"Name":"150","Points":8787,"X":401,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724479Z"},{"ID":43394,"Name":"062","Points":2427,"X":638,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72448Z"},{"ID":43395,"Name":"ZZZ","Points":9761,"X":534,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724481Z"},{"ID":43396,"Name":"bucksbarzyƄskamiiiru","Points":2637,"X":333,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724482Z"},{"ID":43397,"Name":"034","Points":10495,"X":419,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724483Z"},{"ID":43398,"Name":"02.TWICE","Points":7042,"X":686,"Y":409,"Continent":"K46","Bonus":5,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724483Z"},{"ID":43399,"Name":"#K66 0009","Points":6351,"X":613,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724484Z"},{"ID":43400,"Name":"Dream on","Points":9588,"X":297,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724485Z"},{"ID":43402,"Name":"- 205 - SS","Points":6957,"X":545,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724486Z"},{"ID":43403,"Name":"016 Wioska barbarzyƄska","Points":10160,"X":603,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724487Z"},{"ID":43404,"Name":"023","Points":8469,"X":658,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724488Z"},{"ID":43405,"Name":"016. Far far away","Points":10273,"X":500,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724489Z"},{"ID":43406,"Name":"FP034","Points":9320,"X":473,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72449Z"},{"ID":43407,"Name":"merhet","Points":5526,"X":576,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724491Z"},{"ID":43408,"Name":"bucksbarzyƄskamiiiru","Points":2961,"X":328,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724492Z"},{"ID":43409,"Name":"CALL 1071","Points":10495,"X":658,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724494Z"},{"ID":43410,"Name":"24. Wioska Raukodel","Points":6153,"X":648,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":9320272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724494Z"},{"ID":43411,"Name":"KRÓL PAPI WIELKI","Points":6505,"X":713,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724495Z"},{"ID":43412,"Name":"Wioska barbarzyƄska","Points":10478,"X":581,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724497Z"},{"ID":43413,"Name":"????","Points":5071,"X":466,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724498Z"},{"ID":43414,"Name":"003","Points":7374,"X":299,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724499Z"},{"ID":43415,"Name":"BRICKLEBERRY","Points":4168,"X":557,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7245Z"},{"ID":43416,"Name":"Wioska barbarzyƄska","Points":10476,"X":580,"Y":314,"Continent":"K35","Bonus":4,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724501Z"},{"ID":43418,"Name":"Wioska barbarzyƄska","Points":3949,"X":696,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724502Z"},{"ID":43419,"Name":"C072","Points":5708,"X":378,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724503Z"},{"ID":43420,"Name":"ƚrĂłdmieƛcie","Points":2449,"X":587,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":849100612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724503Z"},{"ID":43421,"Name":"036. Howerla","Points":7524,"X":702,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724505Z"},{"ID":43422,"Name":"wiocha","Points":10242,"X":618,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724506Z"},{"ID":43423,"Name":"KHORINIS 03","Points":1625,"X":371,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":849099924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724507Z"},{"ID":43424,"Name":"Didek","Points":1944,"X":681,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724508Z"},{"ID":43425,"Name":"XDX","Points":7044,"X":599,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724508Z"},{"ID":43426,"Name":"Wioska barbarzyƄska","Points":2560,"X":645,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724509Z"},{"ID":43428,"Name":"[0094]","Points":10495,"X":443,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72451Z"},{"ID":43429,"Name":"Wyzima","Points":5780,"X":333,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724511Z"},{"ID":43430,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":328,"Y":392,"Continent":"K33","Bonus":5,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724512Z"},{"ID":43431,"Name":"Wioska 4","Points":7340,"X":337,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724513Z"},{"ID":43432,"Name":"XDX","Points":9618,"X":605,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724513Z"},{"ID":43433,"Name":"[0105]","Points":10495,"X":445,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724514Z"},{"ID":43435,"Name":"Wioska 083","Points":8299,"X":677,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724515Z"},{"ID":43436,"Name":"*02 GAWRA*","Points":8797,"X":311,"Y":429,"Continent":"K43","Bonus":6,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724516Z"},{"ID":43437,"Name":"ZA06","Points":9835,"X":319,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724517Z"},{"ID":43438,"Name":"FP018","Points":10393,"X":475,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724518Z"},{"ID":43439,"Name":"Wioska barbarzyƄska","Points":9667,"X":371,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724519Z"},{"ID":43441,"Name":"C0219","Points":7713,"X":294,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724519Z"},{"ID":43443,"Name":"036","Points":6222,"X":306,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72452Z"},{"ID":43444,"Name":"004. Marzyciel Shrek","Points":8264,"X":465,"Y":494,"Continent":"K44","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724521Z"},{"ID":43445,"Name":"B#019","Points":9797,"X":700,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724521Z"},{"ID":43447,"Name":"!36 76 Marginea","Points":9400,"X":661,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724522Z"},{"ID":43448,"Name":"Ob Konfederacja","Points":3229,"X":423,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724523Z"},{"ID":43449,"Name":"Wioska Wiki 2","Points":12154,"X":524,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849100354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724524Z"},{"ID":43450,"Name":"Taran","Points":9956,"X":332,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724524Z"},{"ID":43451,"Name":"006. Wioska barbarzyƄska","Points":9804,"X":346,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724525Z"},{"ID":43452,"Name":"~078.","Points":5549,"X":497,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724526Z"},{"ID":43453,"Name":"038. Auriga","Points":9471,"X":506,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699703642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724526Z"},{"ID":43455,"Name":"ZZZ","Points":4140,"X":458,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724527Z"},{"ID":43456,"Name":"EO EO","Points":10083,"X":300,"Y":521,"Continent":"K53","Bonus":8,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724528Z"},{"ID":43457,"Name":"028 Lyria","Points":6763,"X":467,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724529Z"},{"ID":43458,"Name":"New World","Points":10294,"X":437,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72453Z"},{"ID":43459,"Name":"Taran","Points":9956,"X":331,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72453Z"},{"ID":43460,"Name":"Wioska Pawlo101","Points":5626,"X":637,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":848973715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724532Z"},{"ID":43461,"Name":"Wioska barbarzyƄska","Points":6134,"X":696,"Y":539,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724532Z"},{"ID":43462,"Name":"bucksbarzyƄskamiiiru","Points":8964,"X":316,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724533Z"},{"ID":43463,"Name":"###025###","Points":10495,"X":589,"Y":680,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724534Z"},{"ID":43465,"Name":"Wioska barbarzyƄska","Points":10069,"X":380,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724535Z"},{"ID":43466,"Name":"Taran","Points":9130,"X":321,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724536Z"},{"ID":43468,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":5025,"X":494,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724536Z"},{"ID":43469,"Name":"Haiti","Points":10067,"X":509,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724537Z"},{"ID":43470,"Name":"Wioska barbarzyƄska","Points":9000,"X":379,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724538Z"},{"ID":43471,"Name":"0316","Points":9525,"X":566,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724539Z"},{"ID":43472,"Name":"0097","Points":8068,"X":674,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724539Z"},{"ID":43473,"Name":"Dream on","Points":9740,"X":299,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72454Z"},{"ID":43474,"Name":"###026###","Points":10495,"X":599,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724541Z"},{"ID":43475,"Name":"Dream on","Points":9489,"X":293,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724542Z"},{"ID":43476,"Name":"Wow17","Points":2995,"X":362,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724543Z"},{"ID":43477,"Name":"Taran","Points":9968,"X":329,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724543Z"},{"ID":43478,"Name":"Wioska barbarzyƄska","Points":9734,"X":517,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724544Z"},{"ID":43479,"Name":"EO EO","Points":11078,"X":293,"Y":501,"Continent":"K52","Bonus":3,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724545Z"},{"ID":43481,"Name":"Wioska krumlow 4","Points":2774,"X":597,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724546Z"},{"ID":43482,"Name":"[0139]","Points":9122,"X":459,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724548Z"},{"ID":43483,"Name":"Wioska barbarzyƄska","Points":1886,"X":662,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724549Z"},{"ID":43484,"Name":"Wioska barbarzyƄska","Points":5936,"X":358,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724549Z"},{"ID":43485,"Name":"A05","Points":11550,"X":700,"Y":558,"Continent":"K57","Bonus":4,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72455Z"},{"ID":43486,"Name":"Gattacka","Points":8651,"X":690,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724551Z"},{"ID":43487,"Name":"Wioska barbarzyƄska","Points":9793,"X":376,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724551Z"},{"ID":43489,"Name":"=0009=","Points":9822,"X":405,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724552Z"},{"ID":43490,"Name":"050. Korab","Points":6723,"X":698,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724553Z"},{"ID":43491,"Name":"Wioska barbarzyƄska","Points":1419,"X":577,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724554Z"},{"ID":43492,"Name":"A000","Points":9283,"X":469,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724555Z"},{"ID":43493,"Name":"a moĆŒe off ? :)","Points":5009,"X":676,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724555Z"},{"ID":43494,"Name":"Wioska barbarzyƄska","Points":3692,"X":692,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724556Z"},{"ID":43495,"Name":"013# Gamora","Points":7660,"X":512,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724559Z"},{"ID":43496,"Name":"15 CaƄada","Points":1232,"X":378,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":698837993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72456Z"},{"ID":43497,"Name":"Wioska barbarzyƄska","Points":7650,"X":352,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724561Z"},{"ID":43498,"Name":"monetki E","Points":10205,"X":674,"Y":402,"Continent":"K46","Bonus":4,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724562Z"},{"ID":43499,"Name":"Wioska Turystyczna 002","Points":9828,"X":705,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724563Z"},{"ID":43500,"Name":"026","Points":8925,"X":704,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724564Z"},{"ID":43501,"Name":"Wioska barbarzyƄska","Points":10479,"X":588,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724564Z"},{"ID":43502,"Name":"Tzarski707","Points":7652,"X":642,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":699783063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724565Z"},{"ID":43503,"Name":"a moĆŒe off ? :)","Points":6538,"X":678,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724566Z"},{"ID":43504,"Name":"010.Stradi","Points":10495,"X":436,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724566Z"},{"ID":43505,"Name":"005. Cintra","Points":10052,"X":665,"Y":375,"Continent":"K36","Bonus":1,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724567Z"},{"ID":43506,"Name":"A 060","Points":10495,"X":363,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724568Z"},{"ID":43507,"Name":"Na KraƄcu ƚwiata 013","Points":6181,"X":636,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72457Z"},{"ID":43508,"Name":"- 274 - SS","Points":7178,"X":554,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72457Z"},{"ID":43509,"Name":"*INTERTWINED*","Points":8337,"X":503,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724571Z"},{"ID":43510,"Name":"Didek","Points":1264,"X":678,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724571Z"},{"ID":43511,"Name":"Little Pony","Points":8278,"X":690,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724572Z"},{"ID":43512,"Name":"a moĆŒe off ? :)","Points":5629,"X":672,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724573Z"},{"ID":43513,"Name":"007","Points":8375,"X":303,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724574Z"},{"ID":43514,"Name":"026","Points":10495,"X":404,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724575Z"},{"ID":43515,"Name":"B#021","Points":9797,"X":699,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724576Z"},{"ID":43516,"Name":"044. Night Raid","Points":7889,"X":488,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724577Z"},{"ID":43517,"Name":".achim.","Points":4625,"X":489,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724578Z"},{"ID":43518,"Name":"027. Brauer92","Points":10237,"X":670,"Y":381,"Continent":"K36","Bonus":8,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724579Z"},{"ID":43520,"Name":"????","Points":9135,"X":478,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724579Z"},{"ID":43521,"Name":"0431","Points":10083,"X":546,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72458Z"},{"ID":43522,"Name":"ZbijĂłw MaƂy","Points":6546,"X":570,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724581Z"},{"ID":43523,"Name":"268...gulden","Points":8366,"X":458,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724582Z"},{"ID":43524,"Name":"wiocha","Points":10319,"X":618,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724583Z"},{"ID":43525,"Name":"270...gulden","Points":7237,"X":463,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724583Z"},{"ID":43526,"Name":"238","Points":2194,"X":398,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724584Z"},{"ID":43527,"Name":"C0180","Points":10362,"X":302,"Y":533,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724585Z"},{"ID":43528,"Name":"Wioska barbarzyƄska","Points":8979,"X":517,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724586Z"},{"ID":43529,"Name":"Kotarwice","Points":5181,"X":570,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724588Z"},{"ID":43530,"Name":"Komandos","Points":7560,"X":630,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724589Z"},{"ID":43531,"Name":"S008","Points":6648,"X":683,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72459Z"},{"ID":43532,"Name":"XXXX","Points":10068,"X":561,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724591Z"},{"ID":43533,"Name":"23 barbarzyƄska..","Points":9420,"X":300,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724592Z"},{"ID":43534,"Name":"aaaa","Points":9899,"X":391,"Y":672,"Continent":"K63","Bonus":2,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724593Z"},{"ID":43535,"Name":"06-oss","Points":9302,"X":677,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724594Z"},{"ID":43536,"Name":"ObrzeĆŒe","Points":8822,"X":575,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724595Z"},{"ID":43538,"Name":"O038","Points":9885,"X":342,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724596Z"},{"ID":43539,"Name":"[0163]","Points":8506,"X":448,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724596Z"},{"ID":43540,"Name":"009","Points":3628,"X":640,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724597Z"},{"ID":43541,"Name":"z181_19","Points":9950,"X":306,"Y":442,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724598Z"},{"ID":43542,"Name":"Bessa 023","Points":9834,"X":635,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724599Z"},{"ID":43543,"Name":"Lipno","Points":5676,"X":665,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724599Z"},{"ID":43544,"Name":"Gattacka","Points":8838,"X":690,"Y":429,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7246Z"},{"ID":43545,"Name":"EO EO","Points":7881,"X":297,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724601Z"},{"ID":43546,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9741,"X":492,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724602Z"},{"ID":43547,"Name":"008","Points":9976,"X":299,"Y":554,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724603Z"},{"ID":43548,"Name":"#0224 Segadorr dar","Points":10178,"X":442,"Y":303,"Continent":"K34","Bonus":6,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724604Z"},{"ID":43549,"Name":"komandos","Points":9235,"X":632,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724604Z"},{"ID":43550,"Name":"O009","Points":9955,"X":341,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724605Z"},{"ID":43551,"Name":"Wioska barbarzyƄska","Points":5065,"X":628,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724605Z"},{"ID":43552,"Name":"ZZZ","Points":9012,"X":428,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724606Z"},{"ID":43553,"Name":"FENDI","Points":4495,"X":304,"Y":461,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724607Z"},{"ID":43554,"Name":"0020 Wioska barbarzyƄska","Points":9540,"X":441,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724608Z"},{"ID":43555,"Name":"03. Na garbarach korek","Points":9548,"X":485,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724609Z"},{"ID":43556,"Name":"Wioska barbarzyƄska","Points":2634,"X":704,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72461Z"},{"ID":43557,"Name":"Wioska barbarzyƄska","Points":4721,"X":535,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724611Z"},{"ID":43558,"Name":"Kamizela","Points":5059,"X":355,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724612Z"},{"ID":43559,"Name":"036","Points":10495,"X":405,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724613Z"},{"ID":43560,"Name":"024","Points":7610,"X":668,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724613Z"},{"ID":43561,"Name":"Wioska barbarzyƄska","Points":9668,"X":367,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724614Z"},{"ID":43562,"Name":"052.","Points":6230,"X":704,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724615Z"},{"ID":43563,"Name":"Wioska barbarzyƄska","Points":1791,"X":620,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724615Z"},{"ID":43564,"Name":"psycha sitting","Points":10311,"X":405,"Y":680,"Continent":"K64","Bonus":7,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724616Z"},{"ID":43565,"Name":"024.Stradi","Points":10495,"X":436,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724617Z"},{"ID":43566,"Name":"Na KraƄcu ƚwiata 012","Points":4431,"X":634,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724617Z"},{"ID":43567,"Name":"[0119]","Points":10043,"X":442,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724619Z"},{"ID":43568,"Name":"Taran","Points":9960,"X":326,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72462Z"},{"ID":43569,"Name":"[0180]","Points":7977,"X":290,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72462Z"},{"ID":43570,"Name":"*222*","Points":10211,"X":334,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724621Z"},{"ID":43571,"Name":"022","Points":5847,"X":305,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724622Z"},{"ID":43572,"Name":"Wyspa_38","Points":9638,"X":512,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724623Z"},{"ID":43573,"Name":"0117","Points":9825,"X":709,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724623Z"},{"ID":43574,"Name":"EO EO","Points":10495,"X":295,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724624Z"},{"ID":43575,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":653,"Y":632,"Continent":"K66","Bonus":9,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724625Z"},{"ID":43576,"Name":"B10","Points":11130,"X":703,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724627Z"},{"ID":43577,"Name":"Wioska barbarzyƄska","Points":6363,"X":700,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724628Z"},{"ID":43578,"Name":"Biorą paƂy co nie spaƂy...","Points":5703,"X":622,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":849050191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724628Z"},{"ID":43579,"Name":"[194]","Points":8845,"X":677,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724629Z"},{"ID":43580,"Name":"a moĆŒe off ? :)","Points":5677,"X":675,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72463Z"},{"ID":43581,"Name":"MojeSzczytToTwĂłjDno","Points":8056,"X":595,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72463Z"},{"ID":43582,"Name":"Wioska Zorro 007","Points":10971,"X":680,"Y":599,"Continent":"K56","Bonus":3,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724631Z"},{"ID":43583,"Name":"Wioska barbarzyƄska","Points":6495,"X":682,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724633Z"},{"ID":43584,"Name":"Osada koczownikĂłw","Points":10019,"X":553,"Y":695,"Continent":"K65","Bonus":5,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724634Z"},{"ID":43585,"Name":"Kentin ufam Tobie","Points":10000,"X":401,"Y":492,"Continent":"K44","Bonus":0,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724635Z"},{"ID":43587,"Name":"010","Points":8955,"X":697,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724636Z"},{"ID":43588,"Name":"!36 65 Humor","Points":9846,"X":659,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724636Z"},{"ID":43589,"Name":"AAA","Points":9976,"X":541,"Y":298,"Continent":"K25","Bonus":7,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724637Z"},{"ID":43590,"Name":"0042 Qukaqu.","Points":10474,"X":449,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724637Z"},{"ID":43591,"Name":"BiaƂka","Points":11130,"X":571,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724638Z"},{"ID":43592,"Name":"0009 Wioska barbarzyƄska","Points":10069,"X":443,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72464Z"},{"ID":43593,"Name":"###004###","Points":10495,"X":588,"Y":690,"Continent":"K65","Bonus":4,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724641Z"},{"ID":43594,"Name":"Wioska barbarzyƄska","Points":8134,"X":702,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724642Z"},{"ID":43595,"Name":"004","Points":6215,"X":305,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724642Z"},{"ID":43597,"Name":"049 invidia","Points":10104,"X":548,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724643Z"},{"ID":43598,"Name":"C004","Points":9665,"X":472,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724643Z"},{"ID":43599,"Name":"Mniejsze zƂo 0082","Points":4656,"X":470,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724644Z"},{"ID":43601,"Name":"Wioska Turystyczna 003","Points":8941,"X":708,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724645Z"},{"ID":43602,"Name":"Psycho to Marka, Narka !","Points":3226,"X":305,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724646Z"},{"ID":43603,"Name":"Osada koczownikĂłw","Points":10474,"X":318,"Y":598,"Continent":"K53","Bonus":8,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724647Z"},{"ID":43604,"Name":"181 izo","Points":11550,"X":299,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724647Z"},{"ID":43605,"Name":"XDX","Points":11164,"X":600,"Y":318,"Continent":"K36","Bonus":3,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724648Z"},{"ID":43606,"Name":"XXXX","Points":10311,"X":567,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724649Z"},{"ID":43607,"Name":"Wioska barbarzyƄska","Points":5044,"X":532,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72465Z"},{"ID":43608,"Name":"Wioska barbarzyƄska","Points":9761,"X":696,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72465Z"},{"ID":43609,"Name":"PIROTECHNIK 003","Points":8072,"X":360,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724653Z"},{"ID":43610,"Name":"087 invidia","Points":8255,"X":517,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724653Z"},{"ID":43611,"Name":"Wioska barbarzyƄska","Points":8250,"X":694,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724654Z"},{"ID":43612,"Name":"z181_25","Points":8884,"X":306,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724655Z"},{"ID":43613,"Name":"TWIERDZA .:005:.","Points":10119,"X":692,"Y":580,"Continent":"K56","Bonus":2,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724655Z"},{"ID":43614,"Name":"KRÓL PAPI WIELKI","Points":7875,"X":628,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724656Z"},{"ID":43616,"Name":"New WorldA","Points":6449,"X":294,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724657Z"},{"ID":43617,"Name":"012","Points":3695,"X":389,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724658Z"},{"ID":43618,"Name":"BRICKLEBERRY","Points":4792,"X":555,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724659Z"},{"ID":43619,"Name":"KRÓL PAPI WIELKI","Points":9933,"X":646,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724659Z"},{"ID":43620,"Name":"Wioska barbarzyƄska 2","Points":9893,"X":309,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72466Z"},{"ID":43621,"Name":"043","Points":8751,"X":709,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724661Z"},{"ID":43622,"Name":"TWIERDZA .:056:.","Points":9514,"X":689,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724661Z"},{"ID":43623,"Name":"0028 Wioska barbarzyƄska","Points":10067,"X":444,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724662Z"},{"ID":43624,"Name":"006","Points":10311,"X":299,"Y":555,"Continent":"K52","Bonus":1,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724663Z"},{"ID":43626,"Name":"C0210","Points":10362,"X":297,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724664Z"},{"ID":43627,"Name":"###027###","Points":10495,"X":589,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724666Z"},{"ID":43629,"Name":"C003","Points":7433,"X":541,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724666Z"},{"ID":43630,"Name":"###085###","Points":10495,"X":579,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724667Z"},{"ID":43631,"Name":"O080","Points":9887,"X":337,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724667Z"},{"ID":43632,"Name":"009 Kaiserslautern","Points":10654,"X":647,"Y":355,"Continent":"K36","Bonus":9,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724668Z"},{"ID":43633,"Name":"???","Points":10356,"X":484,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724669Z"},{"ID":43634,"Name":"06. Skellige","Points":9828,"X":700,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72467Z"},{"ID":43635,"Name":"014","Points":9715,"X":300,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72467Z"},{"ID":43636,"Name":"Wioska barbarzyƄska","Points":5080,"X":338,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724671Z"},{"ID":43637,"Name":"TUUU","Points":9629,"X":602,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724672Z"},{"ID":43638,"Name":"????","Points":10671,"X":473,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724673Z"},{"ID":43639,"Name":"C0190","Points":8016,"X":303,"Y":532,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724674Z"},{"ID":43640,"Name":"029","Points":10160,"X":311,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724794Z"},{"ID":43641,"Name":"Wioska barbarzyƄska","Points":9965,"X":377,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724798Z"},{"ID":43642,"Name":"0070","Points":6166,"X":369,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7248Z"},{"ID":43643,"Name":"013 Wolfsschanze","Points":6048,"X":610,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724806Z"},{"ID":43644,"Name":"C0129","Points":10148,"X":298,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724808Z"},{"ID":43645,"Name":"Wioska barbarzyƄska","Points":8346,"X":617,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72481Z"},{"ID":43646,"Name":"klops3","Points":10319,"X":626,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724812Z"},{"ID":43647,"Name":"- 157 - SS","Points":9307,"X":538,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724814Z"},{"ID":43648,"Name":"Dream on","Points":9494,"X":294,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724825Z"},{"ID":43649,"Name":"MojeDnoToWaszSzczyt","Points":9732,"X":502,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724827Z"},{"ID":43650,"Name":"Wioska barbarzyƄska","Points":8004,"X":703,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724832Z"},{"ID":43651,"Name":"AAA","Points":10154,"X":536,"Y":299,"Continent":"K25","Bonus":2,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724835Z"},{"ID":43652,"Name":"002. GĂłrki MaƂe","Points":10438,"X":655,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724837Z"},{"ID":43653,"Name":"AAA","Points":6243,"X":551,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724838Z"},{"ID":43654,"Name":"J#014","Points":9797,"X":573,"Y":333,"Continent":"K35","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72484Z"},{"ID":43655,"Name":"Z22","Points":9835,"X":316,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724848Z"},{"ID":43656,"Name":"Dream on","Points":4506,"X":293,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72485Z"},{"ID":43657,"Name":"208...segador","Points":10877,"X":458,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724852Z"},{"ID":43658,"Name":"Wioska brabarzyƄcĂłw","Points":4537,"X":673,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724854Z"},{"ID":43659,"Name":"Wioska","Points":9971,"X":359,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724856Z"},{"ID":43660,"Name":"0038 Wioska barbarzyƄska","Points":9603,"X":445,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724861Z"},{"ID":43661,"Name":"XDX","Points":7051,"X":616,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724864Z"},{"ID":43662,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9994,"X":498,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724866Z"},{"ID":43663,"Name":"Wioska barbarzyƄska","Points":8144,"X":375,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724883Z"},{"ID":43664,"Name":"019","Points":7815,"X":707,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724885Z"},{"ID":43665,"Name":"????","Points":6953,"X":472,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724888Z"},{"ID":43666,"Name":"059. Mount Everest","Points":8458,"X":701,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724893Z"},{"ID":43667,"Name":"018S","Points":9360,"X":478,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724894Z"},{"ID":43668,"Name":"###013###","Points":10495,"X":595,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724896Z"},{"ID":43670,"Name":"121 invidia","Points":9885,"X":505,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724899Z"},{"ID":43671,"Name":"Szlachcic","Points":9682,"X":496,"Y":477,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724901Z"},{"ID":43672,"Name":"[156]Szczęƛliwego Nowego Roku ;)","Points":9877,"X":580,"Y":474,"Continent":"K45","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724907Z"},{"ID":43673,"Name":"Wioska barbarzyƄska","Points":6780,"X":702,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72491Z"},{"ID":43675,"Name":"AAA","Points":8132,"X":537,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724914Z"},{"ID":43676,"Name":"025.","Points":9752,"X":703,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724916Z"},{"ID":43677,"Name":"###086###","Points":10495,"X":582,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724918Z"},{"ID":43678,"Name":"Cynowy grĂłd","Points":8445,"X":319,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72492Z"},{"ID":43679,"Name":"New World","Points":10294,"X":427,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724924Z"},{"ID":43680,"Name":"004","Points":7950,"X":593,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724931Z"},{"ID":43681,"Name":"Wioska X08","Points":2375,"X":294,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724933Z"},{"ID":43682,"Name":"026","Points":4050,"X":640,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724936Z"},{"ID":43683,"Name":"bucksbarzyƄskamiiiru","Points":12154,"X":321,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724941Z"},{"ID":43684,"Name":"###087###","Points":10495,"X":593,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724943Z"},{"ID":43685,"Name":"Wioska 116","Points":1115,"X":691,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724945Z"},{"ID":43686,"Name":"Wioska barbarzyƄska","Points":8591,"X":708,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724947Z"},{"ID":43687,"Name":"Taran","Points":8550,"X":323,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724949Z"},{"ID":43688,"Name":"Wioska barbarzyƄska","Points":3466,"X":337,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":9199885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724958Z"},{"ID":43689,"Name":"O135","Points":9821,"X":342,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72496Z"},{"ID":43690,"Name":"TWIERDZA .:046:.","Points":10225,"X":694,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724962Z"},{"ID":43691,"Name":"Wioska X12","Points":6986,"X":295,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724966Z"},{"ID":43693,"Name":"Aniela","Points":9726,"X":528,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724968Z"},{"ID":43694,"Name":"###028###","Points":10495,"X":590,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72497Z"},{"ID":43695,"Name":"TWIERDZA .:042:.","Points":10225,"X":693,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724972Z"},{"ID":43696,"Name":"028","Points":8192,"X":708,"Y":488,"Continent":"K47","Bonus":5,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724981Z"},{"ID":43697,"Name":"bucksbarzyƄskamiiiru","Points":3655,"X":326,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724983Z"},{"ID":43698,"Name":"psycha sitting","Points":10178,"X":408,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724988Z"},{"ID":43699,"Name":"Bessa 015","Points":10183,"X":637,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72499Z"},{"ID":43700,"Name":"Wioska barbarzyƄska","Points":6270,"X":699,"Y":541,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724992Z"},{"ID":43701,"Name":"Gibonowo","Points":11347,"X":293,"Y":489,"Continent":"K42","Bonus":2,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724994Z"},{"ID":43702,"Name":"[0115]","Points":10160,"X":441,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724996Z"},{"ID":43703,"Name":"051. Kamerun","Points":7344,"X":695,"Y":551,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.724998Z"},{"ID":43704,"Name":"116 invidia","Points":9888,"X":505,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725009Z"},{"ID":43705,"Name":"Wioska barbarzyƄska","Points":9126,"X":688,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725011Z"},{"ID":43706,"Name":"Wioska Zorro 021","Points":4005,"X":676,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725013Z"},{"ID":43707,"Name":"Wioska Espel132","Points":7265,"X":305,"Y":457,"Continent":"K43","Bonus":0,"PlayerID":698630140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725015Z"},{"ID":43708,"Name":"XDX","Points":5480,"X":594,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72502Z"},{"ID":43709,"Name":"Szlachcic","Points":8036,"X":380,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725023Z"},{"ID":43710,"Name":"C064","Points":5820,"X":376,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725025Z"},{"ID":43711,"Name":"#K66 0008","Points":5332,"X":612,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725032Z"},{"ID":43712,"Name":"Forteca*011*","Points":3677,"X":532,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":1078121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725034Z"},{"ID":43713,"Name":"ZzZzZ OdlotowoNAimprezie Sylwka","Points":12154,"X":694,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725036Z"},{"ID":43714,"Name":"004. Wioska barbarzyƄska","Points":9804,"X":345,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725038Z"},{"ID":43715,"Name":"#046#","Points":9761,"X":637,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72504Z"},{"ID":43716,"Name":"###088###","Points":10495,"X":598,"Y":677,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725045Z"},{"ID":43717,"Name":"037","Points":10495,"X":421,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725047Z"},{"ID":43718,"Name":"Wioska barbarzyƄska","Points":9741,"X":302,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725049Z"},{"ID":43719,"Name":"062. Manaslu","Points":5134,"X":706,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725054Z"},{"ID":43721,"Name":"004","Points":2565,"X":300,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":848895676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725056Z"},{"ID":43722,"Name":"06.SHINee","Points":7781,"X":688,"Y":418,"Continent":"K46","Bonus":4,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725061Z"},{"ID":43723,"Name":"Z17","Points":9835,"X":312,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725063Z"},{"ID":43724,"Name":"Gdynia","Points":1838,"X":514,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725065Z"},{"ID":43725,"Name":"061. Monte Cassino","Points":5210,"X":704,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725067Z"},{"ID":43726,"Name":"013","Points":6415,"X":641,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725069Z"},{"ID":43727,"Name":"Dream on","Points":9505,"X":302,"Y":498,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725077Z"},{"ID":43728,"Name":"Wygwizdowa 005","Points":10311,"X":636,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725079Z"},{"ID":43729,"Name":"024. Wioska barbarzyƄska","Points":6812,"X":347,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725081Z"},{"ID":43730,"Name":"016","Points":4047,"X":512,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725083Z"},{"ID":43731,"Name":"Osada koczownikĂłw","Points":10021,"X":382,"Y":329,"Continent":"K33","Bonus":2,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725085Z"},{"ID":43732,"Name":"#0219 Segadorr dar","Points":10178,"X":451,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72509Z"},{"ID":43733,"Name":"013Wigilijka","Points":9716,"X":470,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725092Z"},{"ID":43734,"Name":"034","Points":9835,"X":308,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725094Z"},{"ID":43735,"Name":"Wioska barbarzyƄska","Points":1701,"X":626,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":849062920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725099Z"},{"ID":43736,"Name":"Taran","Points":9956,"X":330,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725101Z"},{"ID":43737,"Name":"001","Points":10469,"X":526,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725106Z"},{"ID":43738,"Name":"New World","Points":10294,"X":418,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725109Z"},{"ID":43739,"Name":"bucksbarzyƄskamiiiru","Points":2434,"X":333,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72511Z"},{"ID":43740,"Name":"Kurnik","Points":10231,"X":483,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725112Z"},{"ID":43742,"Name":"025 Wioska barbarzyƄska","Points":9566,"X":603,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725114Z"},{"ID":43743,"Name":"Wioska zbrzeziu44","Points":1651,"X":452,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849098827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725122Z"},{"ID":43744,"Name":"Wioska barbarzyƄska","Points":7988,"X":701,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725124Z"},{"ID":43745,"Name":"Wioska barbarzyƄska","Points":8466,"X":707,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725126Z"},{"ID":43746,"Name":"Dukaj","Points":7814,"X":354,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725128Z"},{"ID":43747,"Name":"Ciawar Jaguar X300","Points":9222,"X":566,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72513Z"},{"ID":43749,"Name":"AAA","Points":7369,"X":534,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725132Z"},{"ID":43750,"Name":"059-Mroczna Osada","Points":3021,"X":651,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725137Z"},{"ID":43751,"Name":"[043] Wioska barbarzyƄska","Points":9657,"X":686,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725139Z"},{"ID":43752,"Name":"[0196]","Points":9618,"X":295,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725144Z"},{"ID":43753,"Name":"A 038","Points":5618,"X":361,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725146Z"},{"ID":43755,"Name":"010","Points":7272,"X":313,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72515Z"},{"ID":43756,"Name":"192","Points":2256,"X":454,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725153Z"},{"ID":43757,"Name":"Neonowy grĂłd","Points":3062,"X":316,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725155Z"},{"ID":43758,"Name":"XXXX","Points":10268,"X":562,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725157Z"},{"ID":43759,"Name":"047. Janikulum","Points":8855,"X":699,"Y":547,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725159Z"},{"ID":43760,"Name":"- 200 - SS","Points":7462,"X":533,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725165Z"},{"ID":43761,"Name":"###029###","Points":10495,"X":588,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725167Z"},{"ID":43762,"Name":"Wioska rosiu56","Points":9821,"X":332,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725169Z"},{"ID":43763,"Name":"bucksbarzyƄskamiiiru","Points":5514,"X":327,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725171Z"},{"ID":43764,"Name":"Didi","Points":10728,"X":684,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725173Z"},{"ID":43765,"Name":"bucksbarzyƄskamiiiru","Points":2168,"X":337,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725178Z"},{"ID":43766,"Name":"032. ALFI","Points":2006,"X":479,"Y":574,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72518Z"},{"ID":43767,"Name":"Veracruz","Points":9541,"X":626,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725182Z"},{"ID":43768,"Name":"B03","Points":9865,"X":699,"Y":551,"Continent":"K56","Bonus":6,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725187Z"},{"ID":43769,"Name":"Ger6","Points":4526,"X":708,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725192Z"},{"ID":43770,"Name":"60 goƛć2","Points":8436,"X":296,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725195Z"},{"ID":43771,"Name":"bucksbarzyƄskamiiiru","Points":10297,"X":320,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725197Z"},{"ID":43772,"Name":"007","Points":5834,"X":395,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725199Z"},{"ID":43773,"Name":"Melon5","Points":3177,"X":307,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725201Z"},{"ID":43774,"Name":"071. Wioska barbarzyƄska","Points":7619,"X":700,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725203Z"},{"ID":43775,"Name":"klops3","Points":10319,"X":625,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72521Z"},{"ID":43776,"Name":"Osada koczownikĂłw","Points":3299,"X":401,"Y":325,"Continent":"K34","Bonus":7,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725212Z"},{"ID":43777,"Name":"Wioska barbarzyƄska","Points":6207,"X":500,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725214Z"},{"ID":43778,"Name":"060","Points":4828,"X":666,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725218Z"},{"ID":43779,"Name":"Wioska barbarzyƄska","Points":7028,"X":360,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72522Z"},{"ID":43780,"Name":"045 sebaseba1991","Points":10160,"X":619,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725222Z"},{"ID":43781,"Name":"Wioska barbarzyƄska","Points":9857,"X":382,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725224Z"},{"ID":43782,"Name":"Domi 3","Points":8682,"X":698,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725229Z"},{"ID":43783,"Name":"Z19","Points":9835,"X":312,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725234Z"},{"ID":43784,"Name":"099 Isehara","Points":6064,"X":696,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725236Z"},{"ID":43785,"Name":"wioska","Points":8957,"X":630,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725238Z"},{"ID":43786,"Name":"ZA21","Points":9742,"X":324,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72524Z"},{"ID":43787,"Name":"C0344","Points":2081,"X":297,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725245Z"},{"ID":43788,"Name":"A 048","Points":4595,"X":357,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725247Z"},{"ID":43789,"Name":"Wioska barbarzyƄska","Points":4887,"X":503,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725249Z"},{"ID":43790,"Name":"- 249 - SS","Points":6182,"X":551,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725254Z"},{"ID":43791,"Name":"005","Points":890,"X":626,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":699872616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725259Z"},{"ID":43792,"Name":"Wioska barbarzyƄska","Points":8136,"X":380,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725261Z"},{"ID":43793,"Name":"Dream on","Points":9744,"X":297,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725263Z"},{"ID":43794,"Name":"KRÓL PAPI WIELKI","Points":9561,"X":650,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725266Z"},{"ID":43795,"Name":"[0116]","Points":10375,"X":449,"Y":303,"Continent":"K34","Bonus":7,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725268Z"},{"ID":43797,"Name":"Z11","Points":9835,"X":314,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725272Z"},{"ID":43798,"Name":"Osada koczownikĂłw","Points":9835,"X":552,"Y":694,"Continent":"K65","Bonus":3,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725274Z"},{"ID":43799,"Name":"Otak","Points":3360,"X":437,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725279Z"},{"ID":43800,"Name":"0011","Points":3261,"X":351,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725284Z"},{"ID":43801,"Name":"0069","Points":10252,"X":563,"Y":697,"Continent":"K65","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725286Z"},{"ID":43802,"Name":"049","Points":3965,"X":634,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725289Z"},{"ID":43804,"Name":"051 invidia","Points":9618,"X":512,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72529Z"},{"ID":43805,"Name":"Wioska adrianh3","Points":4009,"X":709,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725293Z"},{"ID":43806,"Name":"025","Points":9401,"X":671,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725295Z"},{"ID":43807,"Name":"ZZZ","Points":10130,"X":452,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725297Z"},{"ID":43808,"Name":"C041","Points":7919,"X":376,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725348Z"},{"ID":43809,"Name":"C0143","Points":10362,"X":316,"Y":535,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725351Z"},{"ID":43810,"Name":"B012","Points":7592,"X":521,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725356Z"},{"ID":43811,"Name":"Wioska barbarzyƄska","Points":4350,"X":306,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725357Z"},{"ID":43812,"Name":"013 tylko farma","Points":5275,"X":532,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725358Z"},{"ID":43813,"Name":"Wioska barbarzyƄska","Points":2800,"X":627,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72536Z"},{"ID":43814,"Name":"*W004","Points":9861,"X":668,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725361Z"},{"ID":43815,"Name":"AAA","Points":7291,"X":545,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725366Z"},{"ID":43816,"Name":"KRÓL PAPI WIELKI","Points":9366,"X":631,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725383Z"},{"ID":43817,"Name":"Bessa 013","Points":10221,"X":641,"Y":653,"Continent":"K66","Bonus":7,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725386Z"},{"ID":43818,"Name":"wioska","Points":4242,"X":633,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725388Z"},{"ID":43820,"Name":"022","Points":8624,"X":474,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725389Z"},{"ID":43821,"Name":"MojeDnoToWaszSzczyt","Points":9714,"X":490,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725391Z"},{"ID":43822,"Name":"asd","Points":9752,"X":621,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725392Z"},{"ID":43823,"Name":"C0130","Points":9895,"X":296,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725394Z"},{"ID":43824,"Name":"XDX","Points":9962,"X":603,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725398Z"},{"ID":43825,"Name":"=0010=","Points":9834,"X":400,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725403Z"},{"ID":43826,"Name":"!36 65 Stramtura","Points":7650,"X":658,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725404Z"},{"ID":43827,"Name":"????","Points":3753,"X":470,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725406Z"},{"ID":43828,"Name":"San Siro","Points":11489,"X":662,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725407Z"},{"ID":43829,"Name":"074.Stradi","Points":9862,"X":439,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725419Z"},{"ID":43831,"Name":"060. Wioska barbarzyƄska","Points":7616,"X":700,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72542Z"},{"ID":43833,"Name":"!36 65 Iaz","Points":6435,"X":657,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725424Z"},{"ID":43834,"Name":"Wioska barbarzyƄska","Points":8853,"X":374,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725427Z"},{"ID":43835,"Name":"005","Points":6073,"X":354,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72543Z"},{"ID":43836,"Name":"=0005=","Points":9870,"X":402,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725432Z"},{"ID":43838,"Name":"ZA22","Points":9835,"X":312,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725434Z"},{"ID":43839,"Name":"008","Points":8058,"X":701,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725435Z"},{"ID":43840,"Name":"Wioska barbarzyƄska","Points":9131,"X":703,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725438Z"},{"ID":43841,"Name":"B#020","Points":9797,"X":704,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725439Z"},{"ID":43842,"Name":"0113","Points":9825,"X":705,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725441Z"},{"ID":43843,"Name":"KRÓL PAPI WIELKI","Points":9590,"X":643,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725446Z"},{"ID":43844,"Name":"B009 Tajna BroƄ 3xxx","Points":8915,"X":706,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725447Z"},{"ID":43845,"Name":"EO EO","Points":10019,"X":294,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725448Z"},{"ID":43846,"Name":"138 invidia","Points":6058,"X":542,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72545Z"},{"ID":43847,"Name":"Wioska barbarzyƄska","Points":10075,"X":373,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725451Z"},{"ID":43848,"Name":"FP027","Points":9470,"X":474,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725454Z"},{"ID":43849,"Name":"026","Points":9694,"X":669,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725456Z"},{"ID":43850,"Name":"Wioska barbarzyƄska","Points":2915,"X":650,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725459Z"},{"ID":43851,"Name":"081 invidia","Points":7192,"X":521,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72546Z"},{"ID":43852,"Name":"A MOBIL STOP","Points":9797,"X":614,"Y":326,"Continent":"K36","Bonus":3,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725462Z"},{"ID":43853,"Name":"KRÓL PAPI WIELKI","Points":6409,"X":647,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725464Z"},{"ID":43854,"Name":"Wioska barbarzyƄska","Points":6821,"X":694,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725468Z"},{"ID":43855,"Name":"Na KraƄcu ƚwiata 015","Points":3930,"X":640,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72547Z"},{"ID":43856,"Name":"ZA19","Points":9835,"X":320,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725473Z"},{"ID":43857,"Name":"Wioska barbarzyƄska","Points":7383,"X":305,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725475Z"},{"ID":43858,"Name":"WB01","Points":5007,"X":318,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72548Z"},{"ID":43859,"Name":"C104","Points":9709,"X":365,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725483Z"},{"ID":43860,"Name":"Wioska chudyn","Points":9753,"X":531,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725485Z"},{"ID":43861,"Name":"Wioska krumlow 8","Points":2308,"X":598,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725486Z"},{"ID":43862,"Name":"0.08 Brek?","Points":9481,"X":467,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725488Z"},{"ID":43863,"Name":"Wioska barbarzyƄska","Points":3887,"X":651,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72549Z"},{"ID":43865,"Name":"060. Mount Blanc","Points":7729,"X":695,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725491Z"},{"ID":43866,"Name":"EO EO","Points":9258,"X":297,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725495Z"},{"ID":43867,"Name":"017.Stradi","Points":10495,"X":430,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725496Z"},{"ID":43869,"Name":"psycha sitting","Points":6551,"X":398,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725498Z"},{"ID":43870,"Name":"###030###","Points":10495,"X":598,"Y":682,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7255Z"},{"ID":43871,"Name":"017.","Points":9835,"X":702,"Y":463,"Continent":"K47","Bonus":3,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725502Z"},{"ID":43872,"Name":"036","Points":8976,"X":642,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725503Z"},{"ID":43873,"Name":"TWIERDZA .:085:.","Points":8992,"X":685,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725504Z"},{"ID":43874,"Name":"018. F PƁN","Points":9754,"X":612,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725506Z"},{"ID":43875,"Name":"tomek016 V","Points":1009,"X":692,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725509Z"},{"ID":43876,"Name":"Wioska barbarzyƄska","Points":652,"X":393,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72551Z"},{"ID":43877,"Name":"Kolonia 003","Points":7003,"X":388,"Y":666,"Continent":"K63","Bonus":8,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725512Z"},{"ID":43878,"Name":"AAA","Points":5623,"X":561,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725513Z"},{"ID":43879,"Name":"S013","Points":6990,"X":683,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725515Z"},{"ID":43880,"Name":"XXXX","Points":10132,"X":566,"Y":302,"Continent":"K35","Bonus":8,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725516Z"},{"ID":43881,"Name":"Komandos pĂłĆșniej","Points":10322,"X":634,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725518Z"},{"ID":43882,"Name":"[0104]","Points":10495,"X":441,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725521Z"},{"ID":43883,"Name":"027","Points":9370,"X":675,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725522Z"},{"ID":43884,"Name":"wioska","Points":5913,"X":636,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725524Z"},{"ID":43885,"Name":"EO EO","Points":10252,"X":292,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725525Z"},{"ID":43886,"Name":"###031###","Points":10495,"X":592,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725526Z"},{"ID":43887,"Name":"005. Soundscape","Points":9790,"X":708,"Y":511,"Continent":"K57","Bonus":2,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725528Z"},{"ID":43888,"Name":"Wioska barbarzyƄska","Points":1534,"X":621,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725529Z"},{"ID":43889,"Name":"###032###","Points":10495,"X":589,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725531Z"},{"ID":43890,"Name":"*206*","Points":10211,"X":335,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725534Z"},{"ID":43891,"Name":"103","Points":4203,"X":310,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725535Z"},{"ID":43892,"Name":"SZYBKA ZMYƁKA","Points":8521,"X":629,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":699872616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725537Z"},{"ID":43893,"Name":"O043","Points":9870,"X":342,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725538Z"},{"ID":43894,"Name":"014 GĂłrki-O-GĂłrki","Points":8165,"X":661,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725539Z"},{"ID":43895,"Name":"????","Points":6476,"X":474,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725541Z"},{"ID":43897,"Name":"bucksbarzyƄskamiiiru","Points":6190,"X":329,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725542Z"},{"ID":43898,"Name":"014 Wioska barbarzyƄska","Points":10053,"X":604,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725544Z"},{"ID":43899,"Name":"Wyspa","Points":2484,"X":380,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725547Z"},{"ID":43900,"Name":"018","Points":7933,"X":708,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725548Z"},{"ID":43901,"Name":"BaƂuty","Points":7013,"X":586,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":849100612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725549Z"},{"ID":43902,"Name":"[178]","Points":6138,"X":678,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725551Z"},{"ID":43903,"Name":"Wioska barbarzyƄska","Points":2404,"X":591,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725552Z"},{"ID":43904,"Name":"BRICKLEBERRY","Points":3023,"X":556,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725554Z"},{"ID":43905,"Name":"ZOSTAJE","Points":8669,"X":542,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":9016560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725555Z"},{"ID":43906,"Name":"Jan Ost skrajny III","Points":5334,"X":705,"Y":442,"Continent":"K47","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725558Z"},{"ID":43907,"Name":"bucksbarzyƄskamiiiru","Points":5738,"X":326,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72556Z"},{"ID":43908,"Name":"0319","Points":8249,"X":562,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725561Z"},{"ID":43909,"Name":"Wioska barbarzyƄska","Points":2422,"X":332,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725563Z"},{"ID":43910,"Name":"###089###","Points":10495,"X":597,"Y":678,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725564Z"},{"ID":43911,"Name":"Rossberg","Points":4619,"X":372,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":849100352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725565Z"},{"ID":43912,"Name":"Suppi","Points":9549,"X":317,"Y":418,"Continent":"K43","Bonus":5,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725567Z"},{"ID":43913,"Name":"SoƂtys Wsi Maciekp011","Points":9761,"X":353,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725568Z"},{"ID":43914,"Name":"TARAN","Points":9835,"X":547,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725571Z"},{"ID":43915,"Name":"Wioska barbarzyƄska","Points":3646,"X":697,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725573Z"},{"ID":43916,"Name":"Zaplecze Barba 024","Points":5905,"X":366,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725574Z"},{"ID":43917,"Name":"010","Points":3900,"X":649,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725575Z"},{"ID":43918,"Name":"024","Points":10160,"X":302,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725577Z"},{"ID":43919,"Name":"024","Points":7644,"X":303,"Y":562,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725578Z"},{"ID":43920,"Name":"bucksbarzyƄskamiiiru","Points":10130,"X":329,"Y":386,"Continent":"K33","Bonus":1,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725579Z"},{"ID":43921,"Name":"1 LESTAT SKI","Points":5371,"X":346,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":6315553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725582Z"},{"ID":43922,"Name":"S006","Points":6875,"X":681,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725584Z"},{"ID":43923,"Name":"WiedĆșma - Z 003","Points":6210,"X":304,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725585Z"},{"ID":43924,"Name":"Wioska Zorro 010","Points":6329,"X":678,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725587Z"},{"ID":43925,"Name":"Wioska barbarzyƄska","Points":8717,"X":374,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725588Z"},{"ID":43926,"Name":"Wioska barbarzyƄska","Points":5184,"X":538,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725589Z"},{"ID":43927,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725591Z"},{"ID":43928,"Name":"ZzZzZ Sylwek3","Points":6939,"X":695,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725592Z"},{"ID":43929,"Name":"Psycho to Marka, Narka !","Points":4629,"X":302,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725595Z"},{"ID":43930,"Name":"C.028","Points":4885,"X":705,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725596Z"},{"ID":43931,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":656,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725598Z"},{"ID":43932,"Name":"Wioska barbarzyƄska","Points":9140,"X":592,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725599Z"},{"ID":43933,"Name":"Hope","Points":4403,"X":672,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7256Z"},{"ID":43934,"Name":"TWIERDZA .:068:.","Points":8133,"X":687,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725602Z"},{"ID":43935,"Name":"001","Points":10220,"X":586,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725603Z"},{"ID":43936,"Name":"022 NAWRA","Points":4486,"X":668,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725606Z"},{"ID":43937,"Name":"TWIERDZA .:077:.","Points":9962,"X":685,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725608Z"},{"ID":43938,"Name":"WB14","Points":3915,"X":309,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725609Z"},{"ID":43939,"Name":"Komson","Points":9761,"X":364,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725611Z"},{"ID":43940,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":653,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725612Z"},{"ID":43941,"Name":"MojeDnoToWaszSzczyt","Points":9967,"X":508,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725613Z"},{"ID":43942,"Name":"EO EO","Points":8810,"X":298,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725615Z"},{"ID":43943,"Name":"Taran","Points":9955,"X":329,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725616Z"},{"ID":43944,"Name":"???","Points":10503,"X":483,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725619Z"},{"ID":43945,"Name":"028","Points":9622,"X":670,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72562Z"},{"ID":43946,"Name":"077","Points":9629,"X":395,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725622Z"},{"ID":43947,"Name":"#012. Dance With My Hands","Points":9819,"X":435,"Y":690,"Continent":"K64","Bonus":6,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725623Z"},{"ID":43948,"Name":"Kaborno","Points":5636,"X":560,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725625Z"},{"ID":43949,"Name":"008a","Points":4459,"X":306,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725626Z"},{"ID":43951,"Name":"Wioska barbarzyƄska","Points":9577,"X":382,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725628Z"},{"ID":43952,"Name":"C0208","Points":9897,"X":297,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72563Z"},{"ID":43953,"Name":"Wioska barbarzyƄska","Points":5718,"X":356,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725632Z"},{"ID":43954,"Name":"z fryzjer81","Points":8270,"X":348,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725633Z"},{"ID":43956,"Name":"bucksbarzyƄskamiiiru","Points":2282,"X":327,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725635Z"},{"ID":43957,"Name":"Mniejsze zƂo 0053","Points":7576,"X":439,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725636Z"},{"ID":43959,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":663,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725637Z"},{"ID":43960,"Name":"091 invidia","Points":9194,"X":522,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725639Z"},{"ID":43961,"Name":"Jan May City K","Points":10533,"X":692,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72564Z"},{"ID":43962,"Name":"XDX","Points":8904,"X":611,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725643Z"},{"ID":43963,"Name":"101","Points":4238,"X":308,"Y":568,"Continent":"K53","Bonus":0,"PlayerID":699736959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725645Z"},{"ID":43964,"Name":"263...Kaban","Points":4234,"X":463,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725646Z"},{"ID":43965,"Name":"DALEKO","Points":9824,"X":529,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725647Z"},{"ID":43966,"Name":"marmag81/0333","Points":6307,"X":301,"Y":468,"Continent":"K43","Bonus":0,"PlayerID":1096254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725649Z"},{"ID":43967,"Name":"Wioska","Points":6359,"X":550,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72565Z"},{"ID":43968,"Name":"002","Points":5343,"X":294,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":848886200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725651Z"},{"ID":43969,"Name":"11. Sodden","Points":9477,"X":704,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725654Z"},{"ID":43970,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":297,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725656Z"},{"ID":43972,"Name":"0582","Points":8927,"X":575,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725657Z"},{"ID":43974,"Name":"O013","Points":9956,"X":340,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725658Z"},{"ID":43976,"Name":"AAA","Points":8282,"X":551,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72566Z"},{"ID":43977,"Name":"001","Points":8908,"X":438,"Y":301,"Continent":"K34","Bonus":2,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725661Z"},{"ID":43978,"Name":"D014","Points":4669,"X":557,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725662Z"},{"ID":43979,"Name":"011","Points":10019,"X":702,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725664Z"},{"ID":43980,"Name":"A18","Points":2495,"X":695,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725667Z"},{"ID":43981,"Name":"Wioska barbarzyƄska","Points":10495,"X":575,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725668Z"},{"ID":43983,"Name":"Portland","Points":4365,"X":510,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725669Z"},{"ID":43984,"Name":"#0218 Segadorr dar","Points":10178,"X":454,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725671Z"},{"ID":43985,"Name":"aaaa","Points":9899,"X":389,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725672Z"},{"ID":43986,"Name":"Wioska barbarzyƄska 005","Points":8267,"X":561,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725674Z"},{"ID":43987,"Name":"052","Points":4075,"X":637,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725675Z"},{"ID":43988,"Name":"Wioska barbarzyƄska (noomouse)","Points":2863,"X":381,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725678Z"},{"ID":43989,"Name":"Domi 4","Points":8986,"X":700,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725679Z"},{"ID":43991,"Name":"140","Points":10495,"X":396,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725681Z"},{"ID":43992,"Name":"bucksbarzyƄskamiiiru","Points":5623,"X":326,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725682Z"},{"ID":43993,"Name":"Wioska barbarzyƄska","Points":9666,"X":371,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725683Z"},{"ID":43994,"Name":"0044 Qukaku.","Points":10292,"X":457,"Y":698,"Continent":"K64","Bonus":5,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725685Z"},{"ID":43995,"Name":"FP022","Points":10122,"X":481,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725686Z"},{"ID":43996,"Name":"Wioska barbarzyƄska","Points":6158,"X":692,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725688Z"},{"ID":43997,"Name":"0035 Kasko14","Points":10066,"X":448,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725691Z"},{"ID":43998,"Name":"027","Points":4415,"X":700,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725692Z"},{"ID":43999,"Name":"Wioska barbarzyƄska","Points":10474,"X":578,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725693Z"},{"ID":44000,"Name":"Taran","Points":9959,"X":325,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725695Z"},{"ID":44001,"Name":"- 270 - SS","Points":6618,"X":556,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725696Z"},{"ID":44002,"Name":"Szlachcic","Points":9902,"X":616,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725698Z"},{"ID":44003,"Name":"W22","Points":2486,"X":685,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725699Z"},{"ID":44004,"Name":"Wioska barbarzyƄska","Points":6813,"X":681,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725702Z"},{"ID":44005,"Name":"Wioska barbarzyƄska","Points":5257,"X":338,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725703Z"},{"ID":44006,"Name":"018. RembertĂłw","Points":10559,"X":702,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725705Z"},{"ID":44007,"Name":"a moĆŒe off ? :)","Points":5895,"X":677,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725706Z"},{"ID":44008,"Name":"002","Points":8237,"X":645,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725707Z"},{"ID":44009,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":657,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725709Z"},{"ID":44010,"Name":"008","Points":10495,"X":422,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72571Z"},{"ID":44011,"Name":"PóƂnocny Bagdad","Points":10311,"X":617,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725711Z"},{"ID":44012,"Name":"Wioska dudus1992","Points":1577,"X":681,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725715Z"},{"ID":44013,"Name":"Wioska barbarzyƄska","Points":8214,"X":375,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725716Z"},{"ID":44014,"Name":"104 invidia","Points":9745,"X":511,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725717Z"},{"ID":44015,"Name":"XDX","Points":5667,"X":594,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725719Z"},{"ID":44016,"Name":"0006","Points":4864,"X":354,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72572Z"},{"ID":44017,"Name":"203","Points":9749,"X":429,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725721Z"},{"ID":44019,"Name":"Wioska barbarzyƄska","Points":10634,"X":699,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725723Z"},{"ID":44020,"Name":"027","Points":10160,"X":306,"Y":564,"Continent":"K53","Bonus":5,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725726Z"},{"ID":44022,"Name":"Wioska barbarzyƄska","Points":7863,"X":326,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725727Z"},{"ID":44023,"Name":"Wioska barbarzyƄska","Points":11321,"X":582,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725729Z"},{"ID":44024,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":654,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72573Z"},{"ID":44025,"Name":"MojeDnoToWaszSzczyt","Points":9703,"X":491,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725731Z"},{"ID":44026,"Name":"psycha sitting","Points":10311,"X":411,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725732Z"},{"ID":44027,"Name":"ZZZZZ","Points":10000,"X":659,"Y":629,"Continent":"K66","Bonus":8,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725734Z"},{"ID":44028,"Name":"wioska","Points":12154,"X":636,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725735Z"},{"ID":44029,"Name":"O128","Points":8306,"X":328,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725739Z"},{"ID":44030,"Name":"New World","Points":10295,"X":430,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72574Z"},{"ID":44031,"Name":"Wioska barbarzyƄska","Points":9092,"X":375,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725742Z"},{"ID":44032,"Name":"0084","Points":9139,"X":683,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725743Z"},{"ID":44033,"Name":"047.Stradi","Points":10495,"X":427,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725745Z"},{"ID":44034,"Name":"Z 0003 Wioska","Points":10208,"X":348,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725746Z"},{"ID":44035,"Name":"EO EO","Points":10636,"X":289,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725747Z"},{"ID":44036,"Name":"011","Points":3276,"X":696,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725749Z"},{"ID":44037,"Name":"030 Wioska barbarzyƄska","Points":9566,"X":602,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725752Z"},{"ID":44038,"Name":"Z12","Points":9835,"X":315,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725753Z"},{"ID":44039,"Name":"Siedziba Komornika","Points":8889,"X":359,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":849014147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725754Z"},{"ID":44040,"Name":"B017","Points":6313,"X":518,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725756Z"},{"ID":44041,"Name":"Didek","Points":1870,"X":686,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725757Z"},{"ID":44042,"Name":"Bessa 024","Points":10220,"X":637,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725758Z"},{"ID":44043,"Name":"004","Points":8615,"X":421,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72576Z"},{"ID":44044,"Name":"K35 - [037] Before Land","Points":4436,"X":583,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725763Z"},{"ID":44045,"Name":"C042","Points":9544,"X":376,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725764Z"},{"ID":44046,"Name":"aaaa","Points":9899,"X":390,"Y":672,"Continent":"K63","Bonus":6,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725766Z"},{"ID":44047,"Name":"XDX","Points":9019,"X":614,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725767Z"},{"ID":44048,"Name":"Kurwidolek","Points":8557,"X":423,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":849100399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725768Z"},{"ID":44049,"Name":"021 Wioska barbarzyƄska","Points":9224,"X":602,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72577Z"},{"ID":44050,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":667,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725771Z"},{"ID":44051,"Name":"O066","Points":9868,"X":341,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725772Z"},{"ID":44052,"Name":"043.Stradi","Points":10495,"X":437,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725775Z"},{"ID":44053,"Name":"048|| Cygnus","Points":4085,"X":457,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725777Z"},{"ID":44054,"Name":"010","Points":10474,"X":534,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725778Z"},{"ID":44055,"Name":"z Wioska Ankosqqqqqqqqqqqqqqqqqq","Points":10160,"X":354,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725779Z"},{"ID":44056,"Name":"Wioska barbarzyƄska","Points":7554,"X":393,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725781Z"},{"ID":44057,"Name":"073","Points":10311,"X":396,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725782Z"},{"ID":44058,"Name":"021.Stradi","Points":10495,"X":429,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725783Z"},{"ID":44059,"Name":"028","Points":10495,"X":403,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725786Z"},{"ID":44060,"Name":"Wioska barbarzyƄska","Points":9355,"X":705,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725788Z"},{"ID":44061,"Name":"a-9","Points":10636,"X":678,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725789Z"},{"ID":44062,"Name":"###033###","Points":10495,"X":598,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725791Z"},{"ID":44063,"Name":"24 barbarzyƄska..","Points":9697,"X":299,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725792Z"},{"ID":44064,"Name":"psycha sitting","Points":6524,"X":398,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725793Z"},{"ID":44065,"Name":"Wioska barbarzyƄska","Points":3474,"X":646,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725795Z"},{"ID":44066,"Name":"Taran","Points":9956,"X":328,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725796Z"},{"ID":44067,"Name":"TWIERDZA .:016:.","Points":10406,"X":688,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725799Z"},{"ID":44068,"Name":"z Elys1","Points":6952,"X":347,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7258Z"},{"ID":44069,"Name":"Wioska barbarzyƄska","Points":7895,"X":383,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725802Z"},{"ID":44070,"Name":"UrsynĂłw","Points":10035,"X":363,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":849099434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725803Z"},{"ID":44071,"Name":"*INTERTWINED*","Points":6921,"X":515,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725804Z"},{"ID":44072,"Name":"010.","Points":10838,"X":323,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725806Z"},{"ID":44073,"Name":"O145","Points":5788,"X":352,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725807Z"},{"ID":44074,"Name":"!36 65 Patrauti","Points":8371,"X":654,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72581Z"},{"ID":44075,"Name":"Wioska barbarzyƄska","Points":8446,"X":629,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725811Z"},{"ID":44076,"Name":"012. Night Raid","Points":8951,"X":493,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725813Z"},{"ID":44077,"Name":"119","Points":10252,"X":417,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725814Z"},{"ID":44078,"Name":"007","Points":6593,"X":358,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725816Z"},{"ID":44079,"Name":"XDX","Points":8887,"X":599,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725817Z"},{"ID":44080,"Name":"023","Points":10495,"X":404,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725819Z"},{"ID":44081,"Name":"*INTERTWINED**","Points":9711,"X":510,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72582Z"},{"ID":44082,"Name":"039","Points":6015,"X":299,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725823Z"},{"ID":44083,"Name":"S012","Points":6224,"X":687,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725824Z"},{"ID":44084,"Name":"064. Nanga Parbat","Points":6467,"X":703,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725825Z"},{"ID":44086,"Name":"0317","Points":7576,"X":578,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725827Z"},{"ID":44087,"Name":"063","Points":9852,"X":634,"Y":343,"Continent":"K36","Bonus":5,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725828Z"},{"ID":44088,"Name":"Wioska barbarzyƄska","Points":8199,"X":385,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72583Z"},{"ID":44089,"Name":"Wioska barbarzyƄska","Points":7665,"X":701,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725831Z"},{"ID":44092,"Name":".achim.","Points":5449,"X":488,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725834Z"},{"ID":44093,"Name":"FAKE OR OFF","Points":9624,"X":406,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725835Z"},{"ID":44094,"Name":"0007","Points":4093,"X":358,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725837Z"},{"ID":44095,"Name":"004","Points":9972,"X":522,"Y":295,"Continent":"K25","Bonus":5,"PlayerID":849088101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725838Z"},{"ID":44096,"Name":"025. WiesioShowPl","Points":10323,"X":689,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725839Z"},{"ID":44097,"Name":"Wioska barbarzyƄska","Points":5804,"X":500,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725841Z"},{"ID":44098,"Name":"C058","Points":9949,"X":362,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725842Z"},{"ID":44099,"Name":"KRÓL PAPI WIELKI","Points":9606,"X":652,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725843Z"},{"ID":44100,"Name":"C0131","Points":10452,"X":297,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725846Z"},{"ID":44101,"Name":"FP007","Points":10265,"X":482,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725848Z"},{"ID":44102,"Name":"Burito","Points":7121,"X":552,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725849Z"},{"ID":44103,"Name":"008","Points":10160,"X":297,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72585Z"},{"ID":44104,"Name":".achim.","Points":9870,"X":487,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725852Z"},{"ID":44105,"Name":"TWIERDZA .:060:.","Points":9432,"X":692,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725853Z"},{"ID":44106,"Name":"Wioska barbarzyƄska","Points":5490,"X":306,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725855Z"},{"ID":44107,"Name":"Wioska barbarzyƄska","Points":8162,"X":697,"Y":434,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725857Z"},{"ID":44108,"Name":"Wioska barbarzyƄska","Points":9965,"X":374,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725859Z"},{"ID":44109,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72586Z"},{"ID":44110,"Name":"085","Points":9951,"X":409,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725862Z"},{"ID":44111,"Name":"[058] Wioska barbarzyƄska","Points":1600,"X":688,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725863Z"},{"ID":44112,"Name":"027","Points":10495,"X":418,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725864Z"},{"ID":44113,"Name":"Wioska barbarzyƄska","Points":5673,"X":693,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725865Z"},{"ID":44114,"Name":"- 260 - SS","Points":5178,"X":552,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725867Z"},{"ID":44115,"Name":"Wioska barbarzyƄska","Points":9861,"X":531,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72587Z"},{"ID":44116,"Name":"019. Frutti di mare","Points":3775,"X":331,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725871Z"},{"ID":44117,"Name":"006. Night Raid","Points":10003,"X":491,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725873Z"},{"ID":44118,"Name":"[195]","Points":7404,"X":678,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725874Z"},{"ID":44119,"Name":"Osada koczownikĂłw","Points":9195,"X":660,"Y":624,"Continent":"K66","Bonus":4,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725876Z"},{"ID":44120,"Name":"PóƂnocny Bagdad","Points":9835,"X":611,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725877Z"},{"ID":44121,"Name":"2..","Points":2195,"X":645,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725878Z"},{"ID":44122,"Name":"002 Wioska barbarzyƄska","Points":10019,"X":603,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725881Z"},{"ID":44123,"Name":"Taran","Points":9955,"X":330,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725882Z"},{"ID":44124,"Name":"klops3","Points":10319,"X":628,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725884Z"},{"ID":44125,"Name":"z 0020 Wioska","Points":10095,"X":344,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725885Z"},{"ID":44126,"Name":"ZƂoty ƚwit","Points":6697,"X":573,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725886Z"},{"ID":44127,"Name":"13 Ordowik","Points":10040,"X":397,"Y":324,"Continent":"K33","Bonus":1,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725888Z"},{"ID":44128,"Name":"New World","Points":10294,"X":429,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725889Z"},{"ID":44129,"Name":"bucksbarzyƄskamiiiru","Points":2518,"X":332,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725891Z"},{"ID":44130,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":510,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725894Z"},{"ID":44131,"Name":"New World","Points":10303,"X":429,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725895Z"},{"ID":44132,"Name":"C0132","Points":10452,"X":296,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725896Z"},{"ID":44133,"Name":"034. WƂocƂawek","Points":10273,"X":705,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725898Z"},{"ID":44134,"Name":"133 invidia","Points":8593,"X":503,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725899Z"},{"ID":44135,"Name":"Wioska dawszz2","Points":4987,"X":294,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":849094688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725901Z"},{"ID":44136,"Name":"059","Points":7046,"X":665,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725902Z"},{"ID":44138,"Name":"0068 Wioska barbarzyƄska","Points":6980,"X":448,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725905Z"},{"ID":44139,"Name":"D010","Points":6870,"X":559,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725907Z"},{"ID":44140,"Name":"O039","Points":9957,"X":338,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725908Z"},{"ID":44141,"Name":"Wioska X02","Points":3891,"X":296,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725909Z"},{"ID":44142,"Name":"Wioska barbarzyƄska","Points":1928,"X":511,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":8400975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725911Z"},{"ID":44143,"Name":"020","Points":10495,"X":403,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725912Z"},{"ID":44144,"Name":"z181_26","Points":8835,"X":305,"Y":444,"Continent":"K43","Bonus":2,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725913Z"},{"ID":44145,"Name":"TUROWNIA","Points":10319,"X":622,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725915Z"},{"ID":44146,"Name":"029","Points":7975,"X":650,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725918Z"},{"ID":44147,"Name":"Rivendell","Points":11874,"X":414,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725919Z"},{"ID":44148,"Name":"EO EO","Points":7932,"X":296,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72592Z"},{"ID":44149,"Name":"03. Mediolan","Points":10495,"X":705,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725922Z"},{"ID":44150,"Name":"Genowefa","Points":5054,"X":528,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725923Z"},{"ID":44151,"Name":"Osada koczownikĂłw","Points":9351,"X":358,"Y":345,"Continent":"K33","Bonus":4,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725925Z"},{"ID":44152,"Name":"FAKE OR OFF","Points":9828,"X":412,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725926Z"},{"ID":44153,"Name":"069. Wioska barbarzyƄska","Points":8443,"X":700,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725929Z"},{"ID":44154,"Name":"A#029","Points":9797,"X":710,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72593Z"},{"ID":44155,"Name":"Wioska barbarzyƄska","Points":3590,"X":334,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725932Z"},{"ID":44156,"Name":"AAA","Points":8699,"X":551,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725933Z"},{"ID":44157,"Name":"Dream on","Points":9489,"X":295,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725934Z"},{"ID":44158,"Name":"O085","Points":9814,"X":337,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725936Z"},{"ID":44159,"Name":"O007","Points":9955,"X":341,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725937Z"},{"ID":44160,"Name":"psycha sitting","Points":10178,"X":417,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725938Z"},{"ID":44161,"Name":"Wioska barbarzyƄska","Points":6080,"X":508,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725941Z"},{"ID":44162,"Name":"TUROWNIA","Points":10319,"X":621,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725943Z"},{"ID":44163,"Name":"...07 am","Points":9343,"X":669,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725944Z"},{"ID":44164,"Name":"Wioska barbarzyƄska","Points":6150,"X":394,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725946Z"},{"ID":44165,"Name":"037. Wioska barbarzyƄska","Points":9761,"X":704,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725947Z"},{"ID":44166,"Name":"C0206","Points":9267,"X":296,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725948Z"},{"ID":44167,"Name":"006 ZO","Points":10209,"X":528,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72595Z"},{"ID":44168,"Name":"Dream on","Points":9486,"X":296,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725951Z"},{"ID":44169,"Name":"205","Points":8123,"X":429,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725954Z"},{"ID":44170,"Name":"Wioska barbarzyƄska","Points":2985,"X":666,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699491076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725955Z"},{"ID":44171,"Name":"Melon6","Points":3480,"X":310,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725957Z"},{"ID":44172,"Name":"O017","Points":9955,"X":339,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725958Z"},{"ID":44173,"Name":"020.","Points":5697,"X":623,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725959Z"},{"ID":44174,"Name":"Wioska 09","Points":5362,"X":690,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725961Z"},{"ID":44175,"Name":"psycha sitting","Points":9568,"X":426,"Y":655,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725963Z"},{"ID":44176,"Name":"Wioska barbarzyƄska","Points":1865,"X":380,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725966Z"},{"ID":44177,"Name":"Bytow","Points":6595,"X":487,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725967Z"},{"ID":44178,"Name":"Osada koczownikĂłw","Points":9968,"X":387,"Y":329,"Continent":"K33","Bonus":6,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725969Z"},{"ID":44179,"Name":"033. bbbarteqqq","Points":10495,"X":699,"Y":466,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72597Z"},{"ID":44180,"Name":"Wioska barbarzyƄska","Points":2764,"X":636,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":849005829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725971Z"},{"ID":44181,"Name":"Taran","Points":9959,"X":329,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725973Z"},{"ID":44182,"Name":"023","Points":9835,"X":301,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725974Z"},{"ID":44183,"Name":"CALL 1073","Points":10311,"X":656,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725975Z"},{"ID":44184,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":654,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725978Z"},{"ID":44185,"Name":"Wioska barbarzyƄska","Points":10000,"X":344,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72598Z"},{"ID":44186,"Name":"Bessa 025","Points":10226,"X":634,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725981Z"},{"ID":44187,"Name":"=0011=","Points":10146,"X":401,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725982Z"},{"ID":44188,"Name":"Psycho to Marka, Narka !","Points":3233,"X":306,"Y":574,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725984Z"},{"ID":44189,"Name":"GĂłrnik 3 zydzew 0 ;)","Points":9746,"X":603,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725985Z"},{"ID":44190,"Name":"New World","Points":10303,"X":431,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725986Z"},{"ID":44191,"Name":"Wioska barbarzyƄska","Points":9750,"X":697,"Y":440,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725989Z"},{"ID":44192,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":665,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725991Z"},{"ID":44193,"Name":"Wioska barbarzyƄska","Points":8572,"X":629,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725992Z"},{"ID":44194,"Name":"Parking","Points":6617,"X":616,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725993Z"},{"ID":44195,"Name":"222","Points":5306,"X":423,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725995Z"},{"ID":44196,"Name":"WiedĆșma - Z 015","Points":3049,"X":306,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725996Z"},{"ID":44197,"Name":"O090","Points":9814,"X":340,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725997Z"},{"ID":44198,"Name":"004","Points":4271,"X":301,"Y":531,"Continent":"K53","Bonus":0,"PlayerID":848886200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.725999Z"},{"ID":44199,"Name":"185...L","Points":5018,"X":394,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726002Z"},{"ID":44200,"Name":"Dzik 9","Points":8972,"X":303,"Y":439,"Continent":"K43","Bonus":1,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726003Z"},{"ID":44201,"Name":"###090###","Points":10495,"X":599,"Y":679,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726004Z"},{"ID":44202,"Name":"Elo Elo 10","Points":5244,"X":306,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726006Z"},{"ID":44203,"Name":"SoƂtys Twojej Wsi","Points":9644,"X":359,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726007Z"},{"ID":44205,"Name":"Wioska barbarzyƄska","Points":2090,"X":646,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849086491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726008Z"},{"ID":44206,"Name":"O019","Points":9956,"X":340,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72601Z"},{"ID":44207,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":329,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726013Z"},{"ID":44208,"Name":"Wioska barbarzyƄska","Points":6827,"X":684,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726014Z"},{"ID":44209,"Name":"11. Grubo byƂo ale się skoƄczyƂo","Points":9946,"X":557,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726016Z"},{"ID":44210,"Name":"0101","Points":10301,"X":705,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726017Z"},{"ID":44211,"Name":"001 VLV","Points":4414,"X":558,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726018Z"},{"ID":44212,"Name":"O089","Points":9814,"X":339,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72602Z"},{"ID":44213,"Name":"TWIERDZA .:049:.","Points":7851,"X":695,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726021Z"},{"ID":44214,"Name":"bucksbarzyƄskamiiiru","Points":9603,"X":330,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726022Z"},{"ID":44215,"Name":"257...Emerson","Points":11312,"X":464,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726026Z"},{"ID":44216,"Name":"STREFA GAZY | 004","Points":9544,"X":706,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726027Z"},{"ID":44217,"Name":"010","Points":8003,"X":641,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726029Z"},{"ID":44218,"Name":"Osada koczownikĂłw","Points":8202,"X":660,"Y":621,"Continent":"K66","Bonus":9,"PlayerID":1900364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72603Z"},{"ID":44219,"Name":"008 VWF Wioska barbarzyƄska","Points":8998,"X":306,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726031Z"},{"ID":44220,"Name":"035","Points":10019,"X":454,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726033Z"},{"ID":44221,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":321,"Y":399,"Continent":"K33","Bonus":3,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726034Z"},{"ID":44222,"Name":"Dream on","Points":8289,"X":297,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726037Z"},{"ID":44223,"Name":"10-oss","Points":6910,"X":672,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726038Z"},{"ID":44224,"Name":"Wioska barbarzyƄska","Points":2861,"X":643,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726039Z"},{"ID":44225,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726041Z"},{"ID":44227,"Name":"MojeDnoToWaszSzczyt","Points":9964,"X":503,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726042Z"},{"ID":44228,"Name":"R 035 ~Tristram~","Points":9390,"X":496,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726043Z"},{"ID":44230,"Name":"Wioska tyroschijska","Points":9454,"X":699,"Y":438,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726045Z"},{"ID":44231,"Name":"001","Points":10795,"X":300,"Y":551,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726046Z"},{"ID":44232,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":669,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726049Z"},{"ID":44233,"Name":"002","Points":7350,"X":383,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72605Z"},{"ID":44234,"Name":"O022","Points":9907,"X":336,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726052Z"},{"ID":44235,"Name":"K34 x035","Points":6912,"X":446,"Y":365,"Continent":"K34","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726053Z"},{"ID":44236,"Name":"001","Points":12154,"X":304,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726055Z"},{"ID":44237,"Name":"=0002=","Points":9863,"X":401,"Y":316,"Continent":"K34","Bonus":6,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726056Z"},{"ID":44238,"Name":"idziemy dalej","Points":9374,"X":533,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726057Z"},{"ID":44239,"Name":"Wioska barbarzyƄska","Points":6663,"X":682,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72606Z"},{"ID":44240,"Name":"ObrzeĆŒe","Points":8764,"X":577,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726061Z"},{"ID":44241,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":656,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726063Z"},{"ID":44242,"Name":"Elo Elo 16","Points":4980,"X":305,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726064Z"},{"ID":44243,"Name":"PóƂnocny Bagdad","Points":9835,"X":618,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726066Z"},{"ID":44244,"Name":"Wioska barbarzyƄska","Points":6002,"X":355,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726067Z"},{"ID":44245,"Name":"009 VWF Wioska razav","Points":7828,"X":311,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726068Z"},{"ID":44247,"Name":"030","Points":9447,"X":674,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72607Z"},{"ID":44248,"Name":"Darma dla zawodnika","Points":3957,"X":321,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726073Z"},{"ID":44249,"Name":"C0215","Points":10107,"X":296,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726074Z"},{"ID":44250,"Name":"New World","Points":10295,"X":431,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726075Z"},{"ID":44251,"Name":"Wyspa","Points":2706,"X":380,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726077Z"},{"ID":44252,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":664,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726078Z"},{"ID":44253,"Name":"Wioska001","Points":4994,"X":384,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726079Z"},{"ID":44254,"Name":"Wioska barbarzyƄska","Points":8599,"X":459,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726081Z"},{"ID":44255,"Name":"Wioska barbarzyƄska","Points":7536,"X":389,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726084Z"},{"ID":44256,"Name":"B08","Points":9670,"X":468,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726085Z"},{"ID":44257,"Name":"0364","Points":9457,"X":570,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726086Z"},{"ID":44258,"Name":"EO EO","Points":9096,"X":290,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726088Z"},{"ID":44259,"Name":"HAPERT","Points":10319,"X":626,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726089Z"},{"ID":44260,"Name":"019 Wioska barbarzyƄska","Points":10160,"X":601,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72609Z"},{"ID":44261,"Name":"057 invidia","Points":6088,"X":548,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726091Z"},{"ID":44262,"Name":"Darma dla zawodnika","Points":6798,"X":321,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726093Z"},{"ID":44263,"Name":"Osada koczownikĂłw","Points":10160,"X":344,"Y":364,"Continent":"K33","Bonus":4,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726096Z"},{"ID":44264,"Name":"Wygwizdowa 009","Points":5858,"X":638,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726097Z"},{"ID":44265,"Name":"C.06 a panicz to dokąd?","Points":6830,"X":552,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726099Z"},{"ID":44266,"Name":"FAKE OR OFF","Points":9625,"X":404,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7261Z"},{"ID":44267,"Name":"0029 Kasko14","Points":9771,"X":446,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726101Z"},{"ID":44268,"Name":"!36 66 Horodnic de Sus","Points":9347,"X":660,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726103Z"},{"ID":44269,"Name":"Florencja","Points":7042,"X":547,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726104Z"},{"ID":44270,"Name":"Wioska klez 022","Points":3262,"X":309,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726107Z"},{"ID":44271,"Name":"Grazula","Points":9649,"X":681,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726108Z"},{"ID":44272,"Name":"###034###","Points":10495,"X":595,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72611Z"},{"ID":44273,"Name":"009","Points":5895,"X":700,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726111Z"},{"ID":44274,"Name":"psycha sitting","Points":6852,"X":397,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726112Z"},{"ID":44275,"Name":"D012","Points":9818,"X":354,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726114Z"},{"ID":44276,"Name":"Wioska barbarzyƄska","Points":2785,"X":386,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726115Z"},{"ID":44277,"Name":"AAA","Points":3360,"X":544,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726117Z"},{"ID":44278,"Name":"Wioska barbarzyƄska","Points":4312,"X":412,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72612Z"},{"ID":44280,"Name":"Wioska barbarzyƄska","Points":8361,"X":329,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726121Z"},{"ID":44281,"Name":"Kagusiowo 8","Points":3966,"X":300,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726122Z"},{"ID":44282,"Name":"016","Points":6713,"X":530,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726124Z"},{"ID":44283,"Name":"New World","Points":10295,"X":428,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726125Z"},{"ID":44284,"Name":"C.02 a panicz to dokąd?","Points":6554,"X":555,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726126Z"},{"ID":44285,"Name":"AAA","Points":8881,"X":551,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726128Z"},{"ID":44287,"Name":"C0101","Points":10362,"X":300,"Y":518,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726131Z"},{"ID":44288,"Name":"XXXX","Points":10068,"X":563,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726132Z"},{"ID":44289,"Name":"New World","Points":10295,"X":436,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726133Z"},{"ID":44290,"Name":"???","Points":5907,"X":486,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726135Z"},{"ID":44291,"Name":"Wioska barbarzyƄska","Points":4025,"X":705,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726136Z"},{"ID":44292,"Name":"Daleko","Points":9243,"X":565,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":849098136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726137Z"},{"ID":44293,"Name":"????","Points":6300,"X":488,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726139Z"},{"ID":44294,"Name":"- 235 - SS","Points":8631,"X":536,"Y":685,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72614Z"},{"ID":44295,"Name":"033 Wioska barbarzyƄska","Points":10053,"X":602,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726143Z"},{"ID":44296,"Name":"C.017","Points":4680,"X":708,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726144Z"},{"ID":44297,"Name":"025# Samantha","Points":5571,"X":449,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726146Z"},{"ID":44298,"Name":"KRÓL PAPI WIELKI","Points":7062,"X":656,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726147Z"},{"ID":44299,"Name":"0032 Kasko14","Points":10000,"X":450,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726148Z"},{"ID":44300,"Name":"Wioska Koticzak","Points":3627,"X":346,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699841959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72615Z"},{"ID":44301,"Name":"164","Points":9279,"X":416,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726151Z"},{"ID":44302,"Name":"Taran","Points":9955,"X":330,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726152Z"},{"ID":44303,"Name":"tomek016 II","Points":977,"X":690,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726155Z"},{"ID":44304,"Name":"Wioska barbarzyƄska","Points":3061,"X":535,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726157Z"},{"ID":44305,"Name":"!36 66 Gura Humorului","Points":9860,"X":663,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726158Z"},{"ID":44306,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":344,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72616Z"},{"ID":44307,"Name":"006","Points":10068,"X":297,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726161Z"},{"ID":44308,"Name":"bucksbarzyƄskamiiiru","Points":6853,"X":327,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726162Z"},{"ID":44309,"Name":"Szlachcic:Taran","Points":8036,"X":615,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":698241117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726164Z"},{"ID":44310,"Name":"Wioska barbarzyƄska","Points":9444,"X":562,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726166Z"},{"ID":44311,"Name":"001","Points":10495,"X":410,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726168Z"},{"ID":44314,"Name":"wioska","Points":3901,"X":631,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726169Z"},{"ID":44315,"Name":"Wygwizdowa 010","Points":5958,"X":627,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.72617Z"},{"ID":44316,"Name":"071.","Points":2717,"X":314,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726172Z"},{"ID":44317,"Name":"Wioska barbarzyƄska","Points":2672,"X":692,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.726173Z"},{"ID":44319,"Name":"C011","Points":9845,"X":371,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759833Z"},{"ID":44320,"Name":"Wioska barbarzyƄska","Points":3495,"X":704,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":1895081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759834Z"},{"ID":44321,"Name":"O018","Points":9956,"X":337,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759835Z"},{"ID":44322,"Name":"TWIERDZA .:055:.","Points":8633,"X":686,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759835Z"},{"ID":44323,"Name":"Wioska Frejas933","Points":8903,"X":303,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759836Z"},{"ID":44325,"Name":"080","Points":9643,"X":394,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759836Z"},{"ID":44326,"Name":"Psycho to Marka, Narka !","Points":8558,"X":315,"Y":579,"Continent":"K53","Bonus":8,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759837Z"},{"ID":44327,"Name":"bucksbarzyƄskamiiiru","Points":6442,"X":331,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759837Z"},{"ID":44328,"Name":"Argonowy grĂłd","Points":4953,"X":315,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":699377401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759838Z"},{"ID":44329,"Name":"[0225] xxx","Points":6229,"X":290,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759839Z"},{"ID":44330,"Name":"Wyspa_52","Points":5595,"X":497,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759839Z"},{"ID":44331,"Name":"030","Points":2883,"X":643,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75984Z"},{"ID":44333,"Name":"Wioska barbarzyƄska","Points":3088,"X":336,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75984Z"},{"ID":44334,"Name":"005:Wioska Florson1916","Points":10139,"X":377,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759841Z"},{"ID":44336,"Name":"Wioska bravoska","Points":2765,"X":700,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759841Z"},{"ID":44337,"Name":"Wioska barbarzyƄska","Points":10474,"X":580,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759842Z"},{"ID":44338,"Name":"Bessa 026","Points":10284,"X":635,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759843Z"},{"ID":44339,"Name":"[0173]","Points":8996,"X":289,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759843Z"},{"ID":44340,"Name":"Z.08","Points":3975,"X":696,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759844Z"},{"ID":44341,"Name":".achim.","Points":7461,"X":483,"Y":293,"Continent":"K24","Bonus":7,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759844Z"},{"ID":44342,"Name":"bucksbarzyƄskamiiiru","Points":10971,"X":334,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759845Z"},{"ID":44343,"Name":"Wioska barbarzyƄska","Points":6393,"X":709,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759845Z"},{"ID":44344,"Name":"Wioska 23","Points":1912,"X":680,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759846Z"},{"ID":44345,"Name":"016","Points":9486,"X":708,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759847Z"},{"ID":44346,"Name":"Wioska barbarzyƄska","Points":10291,"X":585,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759847Z"},{"ID":44347,"Name":".achim.","Points":7008,"X":478,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759848Z"},{"ID":44348,"Name":"022.Stradi","Points":10495,"X":426,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759848Z"},{"ID":44349,"Name":"bucksbarzyƄskamiiiru","Points":2708,"X":334,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759849Z"},{"ID":44350,"Name":"Wyspa_50","Points":9638,"X":499,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759849Z"},{"ID":44351,"Name":"Winterhome.002","Points":10178,"X":500,"Y":295,"Continent":"K25","Bonus":6,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75985Z"},{"ID":44352,"Name":"060","Points":9120,"X":615,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759851Z"},{"ID":44353,"Name":"!36 66 Voronet","Points":9600,"X":661,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759851Z"},{"ID":44354,"Name":"D.029","Points":3215,"X":382,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759852Z"},{"ID":44355,"Name":"201","Points":9036,"X":369,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759852Z"},{"ID":44356,"Name":"????","Points":9564,"X":489,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759853Z"},{"ID":44357,"Name":"017Moment","Points":3689,"X":457,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759854Z"},{"ID":44358,"Name":"AAA","Points":6517,"X":544,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759854Z"},{"ID":44359,"Name":"AAA","Points":10055,"X":322,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759855Z"},{"ID":44360,"Name":"002","Points":10495,"X":408,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759855Z"},{"ID":44361,"Name":"Wioska barbarzyƄska","Points":5776,"X":331,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759856Z"},{"ID":44362,"Name":"AlaKlaudia3","Points":3787,"X":382,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":848966521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759856Z"},{"ID":44363,"Name":"psycha sitting","Points":9380,"X":400,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759857Z"},{"ID":44364,"Name":"Wioska brabarzyƄcĂłw","Points":7254,"X":673,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":8224678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759858Z"},{"ID":44365,"Name":"0337","Points":9098,"X":561,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759858Z"},{"ID":44366,"Name":"*023","Points":9861,"X":667,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759859Z"},{"ID":44367,"Name":"0148","Points":4519,"X":389,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759859Z"},{"ID":44368,"Name":"066. hehehe4","Points":10247,"X":703,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75986Z"},{"ID":44369,"Name":"O054","Points":9871,"X":336,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75986Z"},{"ID":44370,"Name":"Taran","Points":10167,"X":327,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759861Z"},{"ID":44371,"Name":"027# Jadzia","Points":2596,"X":450,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759861Z"},{"ID":44372,"Name":"004","Points":7930,"X":699,"Y":558,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759862Z"},{"ID":44373,"Name":"TWIERDZA .:074:.","Points":8957,"X":685,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759863Z"},{"ID":44374,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759863Z"},{"ID":44375,"Name":"Wioska barbarzyƄska","Points":10085,"X":345,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759864Z"},{"ID":44376,"Name":"- 278 - SS","Points":7138,"X":552,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759864Z"},{"ID":44377,"Name":"ZZ02","Points":9367,"X":310,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759865Z"},{"ID":44378,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":298,"Y":456,"Continent":"K42","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759866Z"},{"ID":44379,"Name":"O125","Points":9728,"X":333,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759866Z"},{"ID":44380,"Name":"Wioska barbarzyƄska","Points":3484,"X":293,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849101647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759867Z"},{"ID":44381,"Name":"007","Points":10242,"X":529,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759867Z"},{"ID":44382,"Name":"008","Points":9726,"X":711,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759868Z"},{"ID":44383,"Name":"0021","Points":4176,"X":396,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759868Z"},{"ID":44384,"Name":"Wioska barbarzyƄska","Points":2955,"X":474,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759869Z"},{"ID":44385,"Name":"a moĆŒe off ? :)","Points":4856,"X":678,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759869Z"},{"ID":44386,"Name":"Wioska barbarzyƄska","Points":2423,"X":651,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75987Z"},{"ID":44388,"Name":"Taran","Points":5858,"X":314,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75987Z"},{"ID":44389,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":664,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759871Z"},{"ID":44390,"Name":"EO EO","Points":10083,"X":302,"Y":523,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759872Z"},{"ID":44391,"Name":"...01 am","Points":10495,"X":673,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759872Z"},{"ID":44392,"Name":"Dream on","Points":9497,"X":297,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759873Z"},{"ID":44393,"Name":"Zaplecze Barba 018","Points":7465,"X":373,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759874Z"},{"ID":44394,"Name":"[0210]","Points":7448,"X":298,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759874Z"},{"ID":44395,"Name":"Sahara","Points":5286,"X":371,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759875Z"},{"ID":44396,"Name":"O012","Points":9956,"X":341,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759875Z"},{"ID":44397,"Name":"070. Wioska barbarzyƄska","Points":8263,"X":699,"Y":462,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759876Z"},{"ID":44399,"Name":"A 053","Points":10232,"X":361,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759876Z"},{"ID":44401,"Name":"Wioska barbarzyƄska","Points":3515,"X":295,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":7530708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759877Z"},{"ID":44402,"Name":"psycha sitting","Points":4129,"X":408,"Y":679,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759878Z"},{"ID":44403,"Name":"Ranczo3","Points":7071,"X":303,"Y":450,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759878Z"},{"ID":44404,"Name":"011","Points":1426,"X":342,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759879Z"},{"ID":44405,"Name":"S004","Points":7394,"X":683,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759879Z"},{"ID":44406,"Name":"Na SsSskraju","Points":10503,"X":300,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75988Z"},{"ID":44407,"Name":"Peuro Bello","Points":9670,"X":519,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":3298902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75988Z"},{"ID":44408,"Name":"004","Points":8475,"X":644,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759881Z"},{"ID":44410,"Name":"042.Stradi","Points":10495,"X":438,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759881Z"},{"ID":44411,"Name":"MojeDnoToWaszSzczyt","Points":9724,"X":494,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759882Z"},{"ID":44412,"Name":"EO EO","Points":10019,"X":294,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759882Z"},{"ID":44413,"Name":"14. Aedirn","Points":10061,"X":705,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759883Z"},{"ID":44414,"Name":"Beauclair","Points":10068,"X":340,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759884Z"},{"ID":44415,"Name":"Wioska barbarzyƄska","Points":4400,"X":620,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759884Z"},{"ID":44416,"Name":"bucksbarzyƄskamiiiru","Points":6453,"X":328,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759885Z"},{"ID":44417,"Name":"AAA","Points":7320,"X":546,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759885Z"},{"ID":44418,"Name":"- 176 - SS","Points":8076,"X":558,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759886Z"},{"ID":44419,"Name":"EO EO","Points":7629,"X":291,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759886Z"},{"ID":44420,"Name":"024# Agnes","Points":4038,"X":483,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759887Z"},{"ID":44421,"Name":"060","Points":3699,"X":637,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759888Z"},{"ID":44422,"Name":"C030","Points":10065,"X":375,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759888Z"},{"ID":44423,"Name":"MojeDnoToWaszSzczyt","Points":9960,"X":493,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759889Z"},{"ID":44424,"Name":"Dream on","Points":9615,"X":299,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759889Z"},{"ID":44425,"Name":"- 251 - SS","Points":3616,"X":551,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75989Z"},{"ID":44426,"Name":"Wioska barbarzyƄska","Points":8006,"X":702,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75989Z"},{"ID":44428,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":663,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759891Z"},{"ID":44430,"Name":"0365","Points":7778,"X":567,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759891Z"},{"ID":44431,"Name":"New WorldA","Points":6865,"X":290,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759892Z"},{"ID":44432,"Name":"0010 Wioska barbarzyƄska","Points":10069,"X":443,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759893Z"},{"ID":44433,"Name":"bucksbarzyƄskamiiiru","Points":6554,"X":326,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759893Z"},{"ID":44434,"Name":"????","Points":6648,"X":489,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759894Z"},{"ID":44435,"Name":"Aladin","Points":10252,"X":684,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759894Z"},{"ID":44436,"Name":"Wioska barbarzyƄska","Points":6682,"X":705,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759895Z"},{"ID":44437,"Name":"EO EO","Points":9707,"X":295,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759895Z"},{"ID":44438,"Name":"komandos","Points":10311,"X":630,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759896Z"},{"ID":44439,"Name":"Na KraƄcu ƚwiata 016","Points":4144,"X":639,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759896Z"},{"ID":44440,"Name":"124 invidia","Points":8910,"X":501,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759897Z"},{"ID":44441,"Name":"078 invidia","Points":8380,"X":508,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759898Z"},{"ID":44442,"Name":"008. Verdure","Points":8563,"X":326,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759898Z"},{"ID":44443,"Name":"Wioska barbarzyƄska","Points":9994,"X":710,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759899Z"},{"ID":44444,"Name":"C101","Points":7449,"X":357,"Y":652,"Continent":"K63","Bonus":2,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759899Z"},{"ID":44445,"Name":"0116","Points":9889,"X":710,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7599Z"},{"ID":44446,"Name":"Szlachcic","Points":5018,"X":368,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7599Z"},{"ID":44447,"Name":"15.B2ST","Points":8847,"X":686,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759901Z"},{"ID":44449,"Name":"034","Points":5997,"X":304,"Y":563,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759902Z"},{"ID":44450,"Name":"0001","Points":9068,"X":356,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699644448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759902Z"},{"ID":44451,"Name":"Sernik z Andzynkami","Points":8756,"X":711,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759903Z"},{"ID":44452,"Name":"Osada koczownikĂłw","Points":10319,"X":623,"Y":668,"Continent":"K66","Bonus":3,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759903Z"},{"ID":44453,"Name":"SIƁOWNIA","Points":2573,"X":383,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759904Z"},{"ID":44454,"Name":"Wioska barbarzyƄska","Points":8978,"X":304,"Y":552,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759905Z"},{"ID":44455,"Name":"XDX","Points":10290,"X":606,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759905Z"},{"ID":44456,"Name":"Wioska barbarzyƄska","Points":8530,"X":571,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759906Z"},{"ID":44457,"Name":"ZA15","Points":9835,"X":313,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759906Z"},{"ID":44458,"Name":"Wioska barbarzyƄska","Points":9183,"X":537,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759907Z"},{"ID":44459,"Name":"004 VLV","Points":10539,"X":557,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":849100656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759907Z"},{"ID":44460,"Name":"Taran","Points":9167,"X":320,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759908Z"},{"ID":44461,"Name":"Wioska barbarzyƄska","Points":7179,"X":698,"Y":441,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759908Z"},{"ID":44462,"Name":"XXXX","Points":10068,"X":562,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759909Z"},{"ID":44463,"Name":"008d","Points":4129,"X":307,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75991Z"},{"ID":44464,"Name":"PóƂnocny Bagdad","Points":9835,"X":619,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75991Z"},{"ID":44465,"Name":"Taran","Points":9960,"X":327,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759911Z"},{"ID":44466,"Name":"rek16/02.1215","Points":4861,"X":681,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759911Z"},{"ID":44467,"Name":"Wioska dawszz","Points":10290,"X":293,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":849094688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759912Z"},{"ID":44468,"Name":"[0155]","Points":8688,"X":440,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759912Z"},{"ID":44469,"Name":"107 invidia","Points":10495,"X":509,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759913Z"},{"ID":44470,"Name":"089","Points":7467,"X":707,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759914Z"},{"ID":44471,"Name":"0086","Points":4199,"X":679,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759914Z"},{"ID":44472,"Name":"011. Maeldun","Points":9837,"X":389,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759915Z"},{"ID":44473,"Name":"272...gulden","Points":5709,"X":455,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759915Z"},{"ID":44474,"Name":"Shisha Pangma","Points":9752,"X":380,"Y":485,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759916Z"},{"ID":44475,"Name":"256...Kaban1998","Points":8194,"X":460,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759916Z"},{"ID":44476,"Name":"151","Points":4389,"X":401,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759917Z"},{"ID":44477,"Name":"C05","Points":6240,"X":704,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759917Z"},{"ID":44478,"Name":"FARKA","Points":10292,"X":583,"Y":314,"Continent":"K35","Bonus":9,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759918Z"},{"ID":44479,"Name":"034 Wioska barbarzyƄska","Points":9566,"X":614,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759919Z"},{"ID":44480,"Name":"New World","Points":10291,"X":427,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759919Z"},{"ID":44481,"Name":"Wioska barbarzyƄska","Points":2868,"X":454,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75992Z"},{"ID":44482,"Name":"TWIERDZA .:070:.","Points":8768,"X":694,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75992Z"},{"ID":44483,"Name":"014","Points":10495,"X":411,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759921Z"},{"ID":44484,"Name":"C066","Points":10202,"X":358,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759921Z"},{"ID":44486,"Name":"Wioska barbarzyƄska","Points":6900,"X":391,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759922Z"},{"ID":44487,"Name":"Babilons","Points":9828,"X":680,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759922Z"},{"ID":44489,"Name":"09. KozioƂki","Points":6058,"X":473,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759923Z"},{"ID":44491,"Name":"Zaplecze Barba 4","Points":9745,"X":370,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759923Z"},{"ID":44492,"Name":"B013","Points":2910,"X":623,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759924Z"},{"ID":44493,"Name":"Kurnik","Points":9860,"X":484,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759924Z"},{"ID":44494,"Name":"021.","Points":4564,"X":627,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759925Z"},{"ID":44495,"Name":"XDX","Points":9623,"X":602,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759925Z"},{"ID":44496,"Name":"Wioska barbarzyƄska","Points":5584,"X":687,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759926Z"},{"ID":44497,"Name":"a-6","Points":8573,"X":679,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759927Z"},{"ID":44498,"Name":"Dzik 6","Points":8000,"X":300,"Y":438,"Continent":"K43","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759927Z"},{"ID":44499,"Name":"004. Night Raid","Points":9541,"X":491,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759928Z"},{"ID":44500,"Name":"New World","Points":10295,"X":426,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759928Z"},{"ID":44501,"Name":"North 006","Points":10268,"X":502,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759929Z"},{"ID":44502,"Name":"Gehenna","Points":10019,"X":689,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759929Z"},{"ID":44503,"Name":"0002 Wioska barbarzyƄska","Points":10476,"X":442,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75993Z"},{"ID":44504,"Name":"K35 - [027] Before Land","Points":10259,"X":574,"Y":320,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75993Z"},{"ID":44505,"Name":"0071","Points":4907,"X":366,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759931Z"},{"ID":44507,"Name":"Taran","Points":10728,"X":683,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759931Z"},{"ID":44508,"Name":"XDX","Points":9878,"X":607,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759932Z"},{"ID":44509,"Name":"###035###","Points":10495,"X":588,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759933Z"},{"ID":44510,"Name":"017 ZO","Points":5799,"X":530,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759933Z"},{"ID":44511,"Name":"Taran","Points":9835,"X":319,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759934Z"},{"ID":44512,"Name":"FP013","Points":9111,"X":482,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759934Z"},{"ID":44513,"Name":"New World","Points":10297,"X":435,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759935Z"},{"ID":44514,"Name":"193...segador","Points":10654,"X":439,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759935Z"},{"ID":44515,"Name":"Ranczo4","Points":4267,"X":301,"Y":451,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759936Z"},{"ID":44516,"Name":"7.62 mm","Points":10019,"X":485,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759936Z"},{"ID":44518,"Name":"#K66 0012","Points":5186,"X":606,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759937Z"},{"ID":44519,"Name":"=030= Owca Tu byƂa","Points":10580,"X":703,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759937Z"},{"ID":44520,"Name":"Mniejsze zƂo 0089","Points":6075,"X":321,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759938Z"},{"ID":44522,"Name":"*INTERTWINED*","Points":6334,"X":509,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759938Z"},{"ID":44523,"Name":"A#015","Points":9797,"X":711,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759939Z"},{"ID":44524,"Name":"*INTERTWINED*","Points":5746,"X":507,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75994Z"},{"ID":44525,"Name":"C0089","Points":10362,"X":297,"Y":513,"Continent":"K52","Bonus":7,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75994Z"},{"ID":44526,"Name":"O040","Points":10109,"X":332,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759941Z"},{"ID":44527,"Name":"Wioska barbarzyƄska","Points":3990,"X":318,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759941Z"},{"ID":44528,"Name":"WS 05","Points":9835,"X":698,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759942Z"},{"ID":44529,"Name":"Wioska volanteƄska","Points":3933,"X":699,"Y":439,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759942Z"},{"ID":44530,"Name":"Wioska InnosensQ","Points":26,"X":365,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":849020212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759943Z"},{"ID":44531,"Name":"067","Points":10495,"X":406,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759943Z"},{"ID":44532,"Name":"002","Points":10040,"X":300,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759944Z"},{"ID":44533,"Name":"001","Points":10160,"X":299,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759945Z"},{"ID":44534,"Name":"Wioska barbarzyƄska","Points":5145,"X":676,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759945Z"},{"ID":44535,"Name":"z 0001 Wioska","Points":10279,"X":349,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759946Z"},{"ID":44536,"Name":"C0205","Points":7725,"X":299,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759946Z"},{"ID":44537,"Name":"Wioska barbarzyƄska","Points":6648,"X":554,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759947Z"},{"ID":44538,"Name":"FENDI","Points":2060,"X":306,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759947Z"},{"ID":44539,"Name":"0055 Wioska paul","Points":5462,"X":447,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759948Z"},{"ID":44540,"Name":"019 zamroĆŒony","Points":10237,"X":513,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759948Z"},{"ID":44541,"Name":"Tebowizna","Points":3873,"X":463,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759949Z"},{"ID":44542,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":303,"Y":458,"Continent":"K43","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759949Z"},{"ID":44543,"Name":"Wioska barbarzyƄska","Points":7138,"X":704,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75995Z"},{"ID":44544,"Name":"3. Wysypisko Ć»ycia","Points":10479,"X":386,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75995Z"},{"ID":44545,"Name":"=0008=","Points":9828,"X":402,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759951Z"},{"ID":44546,"Name":"C061","Points":10011,"X":362,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759952Z"},{"ID":44547,"Name":"A02","Points":4318,"X":696,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759952Z"},{"ID":44548,"Name":"WS 04","Points":9571,"X":700,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759953Z"},{"ID":44549,"Name":"C0224","Points":4892,"X":298,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759953Z"},{"ID":44550,"Name":"Wioska barbarzyƄska","Points":9760,"X":373,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759954Z"},{"ID":44551,"Name":"*W005","Points":9899,"X":665,"Y":379,"Continent":"K36","Bonus":5,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759954Z"},{"ID":44552,"Name":"*W001","Points":9861,"X":665,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759955Z"},{"ID":44553,"Name":"016","Points":10495,"X":397,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759955Z"},{"ID":44554,"Name":"K34 - [152] Before Land","Points":7592,"X":464,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759956Z"},{"ID":44555,"Name":"WrocƂaw 003","Points":9643,"X":579,"Y":689,"Continent":"K65","Bonus":6,"PlayerID":699176234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759956Z"},{"ID":44556,"Name":"Wioska Najemnik full light","Points":8640,"X":706,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":1895081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759957Z"},{"ID":44557,"Name":"024 koniec ƛwiata","Points":10237,"X":617,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759958Z"},{"ID":44558,"Name":"O123","Points":7605,"X":330,"Y":622,"Continent":"K63","Bonus":6,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759958Z"},{"ID":44559,"Name":"Wioska barbarzyƄska","Points":10401,"X":590,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759959Z"},{"ID":44560,"Name":"0090","Points":7433,"X":679,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759959Z"},{"ID":44561,"Name":"BƂaziny GĂłrne","Points":10393,"X":573,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75996Z"},{"ID":44562,"Name":"Wioska barbarzyƄska","Points":4176,"X":336,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75996Z"},{"ID":44563,"Name":"Taran","Points":9956,"X":326,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759961Z"},{"ID":44564,"Name":"[044]","Points":10394,"X":600,"Y":537,"Continent":"K56","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759961Z"},{"ID":44565,"Name":"Wioska barbarzyƄskan","Points":3766,"X":701,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759962Z"},{"ID":44566,"Name":"032","Points":6214,"X":706,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759962Z"},{"ID":44567,"Name":"KRÓL PAPI WIELKI","Points":8029,"X":709,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759963Z"},{"ID":44568,"Name":"AAA","Points":10311,"X":540,"Y":303,"Continent":"K35","Bonus":1,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759964Z"},{"ID":44570,"Name":"143","Points":9610,"X":398,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759964Z"},{"ID":44571,"Name":"015 Wioska barbarzyƄska","Points":10160,"X":605,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759965Z"},{"ID":44572,"Name":"Arczi997 04","Points":2167,"X":296,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759965Z"},{"ID":44573,"Name":"New World","Points":10294,"X":425,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759966Z"},{"ID":44574,"Name":"FP005","Points":9497,"X":495,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759966Z"},{"ID":44575,"Name":"030 invidia","Points":10237,"X":513,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759967Z"},{"ID":44576,"Name":"Sernik z Andzynkami","Points":9938,"X":701,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759967Z"},{"ID":44577,"Name":"015","Points":6535,"X":396,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759968Z"},{"ID":44578,"Name":"chata Toma","Points":9761,"X":380,"Y":503,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759968Z"},{"ID":44579,"Name":"O044","Points":9873,"X":340,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759969Z"},{"ID":44580,"Name":"0043 Qukaqu","Points":10476,"X":446,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759969Z"},{"ID":44581,"Name":"061-Mroczna Osada","Points":2414,"X":653,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75997Z"},{"ID":44582,"Name":"0086","Points":5597,"X":364,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759971Z"},{"ID":44583,"Name":"TWIERDZA .:063:.","Points":10032,"X":696,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759971Z"},{"ID":44584,"Name":"Wioska andrux","Points":7715,"X":380,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":6186491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759972Z"},{"ID":44585,"Name":"ZapceƄ","Points":6049,"X":462,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759972Z"},{"ID":44587,"Name":"Wioska barbarzyƄska","Points":8497,"X":573,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759973Z"},{"ID":44588,"Name":"019 GĂłrrki Ze-ZbiĂłrki","Points":6960,"X":648,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759973Z"},{"ID":44589,"Name":"033","Points":10495,"X":403,"Y":680,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759974Z"},{"ID":44590,"Name":"048.Stradi","Points":10495,"X":439,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759974Z"},{"ID":44591,"Name":"XXXX","Points":10068,"X":567,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759975Z"},{"ID":44592,"Name":"O136","Points":6196,"X":351,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759975Z"},{"ID":44593,"Name":"*INTERTWINED*","Points":6232,"X":506,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759976Z"},{"ID":44594,"Name":"003","Points":8273,"X":645,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759976Z"},{"ID":44595,"Name":"Wioska X07","Points":2405,"X":296,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759977Z"},{"ID":44596,"Name":"Wioska barbarzyƄska","Points":5139,"X":697,"Y":540,"Continent":"K56","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759977Z"},{"ID":44597,"Name":"A07","Points":11130,"X":702,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759978Z"},{"ID":44598,"Name":"C054","Points":6834,"X":373,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759978Z"},{"ID":44599,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9883,"X":494,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759979Z"},{"ID":44600,"Name":"S007","Points":8089,"X":679,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759979Z"},{"ID":44601,"Name":"248...Gulden","Points":7552,"X":457,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75998Z"},{"ID":44602,"Name":"Wioska barbarzyƄska","Points":6977,"X":708,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759981Z"},{"ID":44604,"Name":"Koziarowo 2","Points":9259,"X":502,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":849100228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759981Z"},{"ID":44605,"Name":"bucksbarzyƄskamiiiru","Points":10928,"X":324,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759982Z"},{"ID":44607,"Name":"KRÓL PAPI WIELKI","Points":10080,"X":650,"Y":641,"Continent":"K66","Bonus":6,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759982Z"},{"ID":44608,"Name":"Wioska barbarzyƄska","Points":6195,"X":686,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759983Z"},{"ID":44609,"Name":"###091###","Points":10495,"X":583,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759983Z"},{"ID":44610,"Name":"=084= Oraibi","Points":7396,"X":700,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759984Z"},{"ID":44611,"Name":"Zagroda4","Points":8783,"X":603,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759984Z"},{"ID":44612,"Name":"A#008","Points":9797,"X":709,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759985Z"},{"ID":44613,"Name":"AAA","Points":8698,"X":552,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759985Z"},{"ID":44616,"Name":"Gattacka","Points":9443,"X":691,"Y":432,"Continent":"K46","Bonus":7,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759986Z"},{"ID":44617,"Name":"079.","Points":9918,"X":458,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759986Z"},{"ID":44618,"Name":"New World","Points":10306,"X":427,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759987Z"},{"ID":44619,"Name":"013","Points":7369,"X":348,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759987Z"},{"ID":44621,"Name":"000 Plutosea","Points":9976,"X":312,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759988Z"},{"ID":44622,"Name":"Sernik z Andzynkami","Points":8410,"X":710,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759989Z"},{"ID":44623,"Name":"12.Kovir","Points":9905,"X":707,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759989Z"},{"ID":44624,"Name":"Wow14","Points":4585,"X":361,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75999Z"},{"ID":44625,"Name":"03. Nilfgaard","Points":9828,"X":701,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.75999Z"},{"ID":44626,"Name":"050.","Points":10814,"X":439,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759991Z"},{"ID":44627,"Name":"K35 - [035] Before Land","Points":6378,"X":583,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759991Z"},{"ID":44628,"Name":"DALEKO","Points":10471,"X":533,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759992Z"},{"ID":44629,"Name":"026","Points":10224,"X":299,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759992Z"},{"ID":44630,"Name":"084 invidia","Points":5005,"X":516,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759993Z"},{"ID":44631,"Name":"Wioska Strojgniew","Points":7139,"X":670,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":1049851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759993Z"},{"ID":44632,"Name":"Kagusiowo 4","Points":4723,"X":298,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759994Z"},{"ID":44633,"Name":"022 GĂłry","Points":4091,"X":653,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759994Z"},{"ID":44634,"Name":"NISIROS","Points":7439,"X":674,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759995Z"},{"ID":44635,"Name":"031.","Points":9244,"X":701,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759996Z"},{"ID":44636,"Name":"XDX","Points":10290,"X":605,"Y":320,"Continent":"K36","Bonus":5,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759996Z"},{"ID":44637,"Name":"Wioska Totomoose","Points":4537,"X":314,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":849100744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759997Z"},{"ID":44638,"Name":"New World","Points":10292,"X":435,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759997Z"},{"ID":44639,"Name":"Wioska barbarzyƄska","Points":3723,"X":691,"Y":570,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759998Z"},{"ID":44640,"Name":"PoƂudniowy WschĂłd 001","Points":3563,"X":684,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759998Z"},{"ID":44641,"Name":"Wioska barbarzyƄska","Points":7274,"X":621,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759999Z"},{"ID":44643,"Name":"XXXX","Points":10017,"X":562,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.759999Z"},{"ID":44644,"Name":"North 009","Points":10311,"X":505,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76Z"},{"ID":44645,"Name":"XDX","Points":8104,"X":610,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76Z"},{"ID":44646,"Name":"Wioska barbarzyƄska","Points":9642,"X":573,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760001Z"},{"ID":44647,"Name":"###005###","Points":10495,"X":587,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760001Z"},{"ID":44648,"Name":"ROZWOD GAME OER","Points":3971,"X":704,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":1895081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760002Z"},{"ID":44649,"Name":"WesoƂych ƚwiąt","Points":7705,"X":585,"Y":434,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760002Z"},{"ID":44650,"Name":"EO EO","Points":7144,"X":295,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760003Z"},{"ID":44651,"Name":"A09","Points":10971,"X":694,"Y":561,"Continent":"K56","Bonus":4,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760004Z"},{"ID":44652,"Name":"K24 - [003] Before Land","Points":7549,"X":467,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760004Z"},{"ID":44653,"Name":"pusta","Points":10044,"X":569,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760005Z"},{"ID":44654,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760005Z"},{"ID":44655,"Name":"AAA","Points":7902,"X":536,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760006Z"},{"ID":44656,"Name":"Gondor","Points":9817,"X":365,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760006Z"},{"ID":44657,"Name":"Wioska barbarzyƄska","Points":10838,"X":574,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760007Z"},{"ID":44658,"Name":"Początek","Points":8607,"X":304,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760007Z"},{"ID":44659,"Name":"aaaaWioska barbarzyƄska","Points":10484,"X":705,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760008Z"},{"ID":44660,"Name":"XDX","Points":9093,"X":628,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760008Z"},{"ID":44661,"Name":"152","Points":10495,"X":397,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760009Z"},{"ID":44662,"Name":"Wioska X09","Points":1970,"X":296,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760009Z"},{"ID":44663,"Name":"Wioska barbarzyƄska","Points":9670,"X":371,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76001Z"},{"ID":44664,"Name":"032 Neunreuth","Points":3967,"X":463,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76001Z"},{"ID":44665,"Name":"14 barbarzyƄska..","Points":9811,"X":296,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760011Z"},{"ID":44666,"Name":"022.","Points":4843,"X":624,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760011Z"},{"ID":44667,"Name":"Adamo 6","Points":6135,"X":585,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760012Z"},{"ID":44668,"Name":"Dzik 12","Points":6192,"X":300,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760012Z"},{"ID":44669,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9753,"X":496,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760013Z"},{"ID":44670,"Name":"221","Points":5292,"X":424,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760014Z"},{"ID":44672,"Name":"046. Jannu","Points":7712,"X":699,"Y":554,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760014Z"},{"ID":44674,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":665,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760015Z"},{"ID":44675,"Name":"#0226 Segadorr dar","Points":10178,"X":447,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760016Z"},{"ID":44676,"Name":"0107","Points":9325,"X":706,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760016Z"},{"ID":44677,"Name":"New Land 27","Points":2056,"X":322,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760017Z"},{"ID":44678,"Name":"Wioska barbarzyƄska","Points":3096,"X":335,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760017Z"},{"ID":44679,"Name":"Taran","Points":10178,"X":329,"Y":622,"Continent":"K63","Bonus":5,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760018Z"},{"ID":44680,"Name":"Wioska barbarzyƄska","Points":2345,"X":710,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760019Z"},{"ID":44681,"Name":"D007","Points":8830,"X":354,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760019Z"},{"ID":44682,"Name":"bucksbarzyƄskamiiiru","Points":1958,"X":334,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76002Z"},{"ID":44683,"Name":"=076= B*030*","Points":7094,"X":701,"Y":564,"Continent":"K57","Bonus":9,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76002Z"},{"ID":44684,"Name":"Wioska barbarzyƄska","Points":1543,"X":618,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760021Z"},{"ID":44685,"Name":"K35 - [002] Before Land","Points":10016,"X":584,"Y":311,"Continent":"K35","Bonus":6,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760021Z"},{"ID":44686,"Name":"007.Stradi","Points":10495,"X":435,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760022Z"},{"ID":44687,"Name":"C.018","Points":7331,"X":703,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760023Z"},{"ID":44688,"Name":"066 ZieloneOczko2","Points":10117,"X":705,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760023Z"},{"ID":44689,"Name":"EE 014","Points":2130,"X":699,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760024Z"},{"ID":44690,"Name":"a moĆŒe off ? :)","Points":5720,"X":682,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760024Z"},{"ID":44691,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":561,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760025Z"},{"ID":44692,"Name":"a10","Points":4620,"X":677,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760025Z"},{"ID":44693,"Name":"010 zadupie","Points":6258,"X":534,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760026Z"},{"ID":44694,"Name":"#K75 0027","Points":5338,"X":516,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760026Z"},{"ID":44695,"Name":"Z 0004","Points":10212,"X":346,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760027Z"},{"ID":44696,"Name":"S015","Points":4943,"X":684,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760027Z"},{"ID":44697,"Name":"Wioska barbarzyƄska","Points":3576,"X":306,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760028Z"},{"ID":44698,"Name":"matey","Points":6632,"X":693,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":848977203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760028Z"},{"ID":44699,"Name":"017","Points":6380,"X":708,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760029Z"},{"ID":44700,"Name":"K35 - [032] Before Land","Points":9783,"X":590,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760029Z"},{"ID":44701,"Name":"Wioska barbarzyƄska","Points":9562,"X":703,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76003Z"},{"ID":44702,"Name":"XDX","Points":8717,"X":606,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76003Z"},{"ID":44703,"Name":"Wioska barbarzyƄska","Points":1357,"X":667,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":849048867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760031Z"},{"ID":44704,"Name":"Wioska barbarzyƄska","Points":10157,"X":587,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760032Z"},{"ID":44705,"Name":"Jednak wolę gofry","Points":5248,"X":418,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760032Z"},{"ID":44706,"Name":"#0054 geryk","Points":10178,"X":464,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760033Z"},{"ID":44707,"Name":"Wioska barbarzyƄska","Points":1959,"X":362,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760033Z"},{"ID":44708,"Name":"055","Points":6277,"X":710,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760034Z"},{"ID":44709,"Name":"New World","Points":9530,"X":446,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760034Z"},{"ID":44710,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":10114,"X":498,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760035Z"},{"ID":44711,"Name":"aaaaaaa","Points":6861,"X":293,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760035Z"},{"ID":44712,"Name":"Taran 008","Points":7660,"X":626,"Y":525,"Continent":"K56","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760036Z"},{"ID":44713,"Name":"29.BLACKPINK","Points":4197,"X":692,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760036Z"},{"ID":44715,"Name":"FENDI","Points":5464,"X":300,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760037Z"},{"ID":44716,"Name":"C0178","Points":10495,"X":301,"Y":529,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760037Z"},{"ID":44717,"Name":"013. Night Raid","Points":8848,"X":492,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760038Z"},{"ID":44718,"Name":"Osada koczownikĂłw","Points":6847,"X":690,"Y":414,"Continent":"K46","Bonus":7,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760039Z"},{"ID":44719,"Name":"kraina mlekiem i miodem pƂynąca","Points":949,"X":367,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":849100760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760039Z"},{"ID":44720,"Name":"Zielony 3","Points":3201,"X":295,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":699876746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76004Z"},{"ID":44721,"Name":"Nestville","Points":4151,"X":625,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":849062920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76004Z"},{"ID":44722,"Name":"eee","Points":9450,"X":367,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760041Z"},{"ID":44723,"Name":"Dream on","Points":8526,"X":298,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760041Z"},{"ID":44724,"Name":"Wow19","Points":2363,"X":363,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760042Z"},{"ID":44725,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":294,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760042Z"},{"ID":44726,"Name":"AAA","Points":10311,"X":540,"Y":300,"Continent":"K35","Bonus":1,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760043Z"},{"ID":44727,"Name":"Na KraƄcu ƚwiata 020","Points":3945,"X":642,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760043Z"},{"ID":44728,"Name":"116. Bagba","Points":6623,"X":634,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760044Z"},{"ID":44729,"Name":"????","Points":6918,"X":469,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760044Z"},{"ID":44730,"Name":"A#028","Points":9797,"X":708,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760045Z"},{"ID":44731,"Name":"Wioska barbarzyƄska","Points":3162,"X":296,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":7530708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760045Z"},{"ID":44732,"Name":"Wioska barbarzyƄska","Points":9842,"X":382,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760046Z"},{"ID":44733,"Name":"0065","Points":6180,"X":370,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760046Z"},{"ID":44734,"Name":"Sernik z Andzynkami","Points":8868,"X":710,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760047Z"},{"ID":44735,"Name":"21. Verden","Points":7918,"X":700,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760047Z"},{"ID":44736,"Name":"Wioska barbarzyƄska","Points":8076,"X":574,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760048Z"},{"ID":44737,"Name":"Marco","Points":7349,"X":382,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760049Z"},{"ID":44738,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":298,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760049Z"},{"ID":44740,"Name":"Kurnik","Points":8131,"X":476,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76005Z"},{"ID":44741,"Name":"Osada 1","Points":9697,"X":693,"Y":425,"Continent":"K46","Bonus":1,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76005Z"},{"ID":44742,"Name":"053 invidia","Points":10126,"X":511,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760051Z"},{"ID":44743,"Name":"????","Points":11678,"X":468,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760051Z"},{"ID":44744,"Name":"###036###","Points":10495,"X":590,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760052Z"},{"ID":44745,"Name":"*211*","Points":10211,"X":332,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760052Z"},{"ID":44746,"Name":"Taran","Points":9959,"X":326,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760053Z"},{"ID":44748,"Name":"KRÓL PAPI WIELKI","Points":9978,"X":648,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760054Z"},{"ID":44749,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":299,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760054Z"},{"ID":44750,"Name":"037. Himalchuli","Points":8705,"X":699,"Y":553,"Continent":"K56","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760055Z"},{"ID":44751,"Name":"063- Mroczna Osada","Points":10703,"X":617,"Y":332,"Continent":"K36","Bonus":6,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760055Z"},{"ID":44752,"Name":"ElMajkelos I","Points":9347,"X":413,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760056Z"},{"ID":44753,"Name":"Wioska barbarzyƄska","Points":396,"X":291,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":2893211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760056Z"},{"ID":44754,"Name":"XXXX","Points":10068,"X":561,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760057Z"},{"ID":44755,"Name":"XDX","Points":9834,"X":598,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760057Z"},{"ID":44756,"Name":"56 ggggg","Points":8333,"X":295,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760058Z"},{"ID":44757,"Name":"PakosƂaw","Points":10019,"X":566,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760058Z"},{"ID":44758,"Name":"004","Points":7614,"X":300,"Y":548,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760059Z"},{"ID":44759,"Name":"0004 Wioska barbarzyƄska","Points":10478,"X":440,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760059Z"},{"ID":44761,"Name":"028 invidia","Points":9994,"X":521,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76006Z"},{"ID":44762,"Name":"PYRLANDIA 039","Points":8674,"X":564,"Y":574,"Continent":"K55","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76006Z"},{"ID":44763,"Name":"EO EO","Points":8284,"X":292,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760061Z"},{"ID":44764,"Name":"Wioska czarna perƂa","Points":1175,"X":289,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":8369657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760061Z"},{"ID":44765,"Name":"Kurnik","Points":6365,"X":469,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760062Z"},{"ID":44766,"Name":"Wioska barbarzyƄska","Points":2987,"X":633,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760062Z"},{"ID":44767,"Name":"Wioska barbarzyƄska","Points":7061,"X":369,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760063Z"},{"ID":44768,"Name":"Wygwizdowa 007","Points":9398,"X":643,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760063Z"},{"ID":44769,"Name":"=0012=","Points":9841,"X":399,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760064Z"},{"ID":44770,"Name":"W23","Points":1754,"X":686,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760064Z"},{"ID":44772,"Name":"!36 65 Dragomirna","Points":6538,"X":657,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760065Z"},{"ID":44773,"Name":"[0128]","Points":9580,"X":456,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760065Z"},{"ID":44774,"Name":"Wioska barbarzyƄska","Points":9861,"X":516,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760066Z"},{"ID":44775,"Name":"sebastianxxx19","Points":10242,"X":624,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760067Z"},{"ID":44776,"Name":"Wioska bruno 60","Points":6935,"X":711,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":3647086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760067Z"},{"ID":44777,"Name":"Arczi997 03","Points":3323,"X":296,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760068Z"},{"ID":44778,"Name":"Wioska barbarzyƄska","Points":9627,"X":586,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760068Z"},{"ID":44779,"Name":"bucksbarzyƄskamiiiru","Points":9924,"X":321,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760069Z"},{"ID":44780,"Name":"XDX","Points":6300,"X":596,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760069Z"},{"ID":44781,"Name":"1.06","Points":9740,"X":436,"Y":699,"Continent":"K64","Bonus":1,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76007Z"},{"ID":44782,"Name":"Aaaaaa","Points":10141,"X":611,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76007Z"},{"ID":44783,"Name":"Taran","Points":9835,"X":320,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760071Z"},{"ID":44784,"Name":"031# Arianna","Points":7456,"X":465,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760071Z"},{"ID":44785,"Name":"067. Wioska barbarzyƄska","Points":7880,"X":703,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760072Z"},{"ID":44786,"Name":"19. Ottawa","Points":9362,"X":686,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760072Z"},{"ID":44787,"Name":"031.Stradi","Points":10495,"X":434,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760073Z"},{"ID":44789,"Name":"Wioska barbarzyƄska","Points":4747,"X":619,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":8842936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760073Z"},{"ID":44790,"Name":"a moĆŒe off ? :)","Points":6470,"X":676,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760074Z"},{"ID":44791,"Name":"bucksbarzyƄskamiiiru","Points":5367,"X":323,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760075Z"},{"ID":44792,"Name":"Wioska barbarzyƄska","Points":7923,"X":375,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760075Z"},{"ID":44793,"Name":"[196]","Points":3934,"X":675,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760076Z"},{"ID":44794,"Name":"0053 Wioska barbarzyƄska","Points":5229,"X":448,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760076Z"},{"ID":44795,"Name":"A000","Points":10595,"X":461,"Y":705,"Continent":"K74","Bonus":8,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760077Z"},{"ID":44796,"Name":"Elo elo 13","Points":5137,"X":305,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760077Z"},{"ID":44797,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":4523,"X":497,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760078Z"},{"ID":44799,"Name":"044 invidia","Points":10039,"X":516,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760078Z"},{"ID":44800,"Name":"10. Cintra","Points":9570,"X":706,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760079Z"},{"ID":44801,"Name":"Zaplecze barba 2","Points":9744,"X":375,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760079Z"},{"ID":44802,"Name":"Zadupie","Points":7686,"X":646,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76008Z"},{"ID":44803,"Name":"247...Kaban1998","Points":4838,"X":459,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76008Z"},{"ID":44804,"Name":"C0209","Points":7406,"X":296,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760081Z"},{"ID":44805,"Name":"Wioska barbarzyƄska","Points":1909,"X":653,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760081Z"},{"ID":44806,"Name":"012","Points":10019,"X":702,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760082Z"},{"ID":44808,"Name":"A11","Points":5174,"X":696,"Y":555,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760082Z"},{"ID":44809,"Name":"027 zadupie","Points":10083,"X":529,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760083Z"},{"ID":44810,"Name":"208","Points":9273,"X":430,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760083Z"},{"ID":44811,"Name":"Zaplecze Barba 010","Points":9223,"X":372,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760084Z"},{"ID":44812,"Name":"=0003=","Points":9850,"X":403,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760084Z"},{"ID":44813,"Name":"182","Points":4544,"X":416,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760085Z"},{"ID":44814,"Name":"087 Twierdza","Points":4542,"X":709,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760085Z"},{"ID":44815,"Name":"XDX","Points":8654,"X":613,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760086Z"},{"ID":44816,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":560,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760087Z"},{"ID":44817,"Name":"--001--","Points":10769,"X":569,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760087Z"},{"ID":44818,"Name":"D.036","Points":2326,"X":380,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760088Z"},{"ID":44819,"Name":"przejecia","Points":9835,"X":614,"Y":673,"Continent":"K66","Bonus":1,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760088Z"},{"ID":44820,"Name":"015 ZO","Points":6286,"X":526,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760089Z"},{"ID":44821,"Name":"FP026","Points":10393,"X":473,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760089Z"},{"ID":44822,"Name":"Wioska barbarzyƄska","Points":5868,"X":390,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76009Z"},{"ID":44823,"Name":"181..","Points":4962,"X":651,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":699039013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76009Z"},{"ID":44824,"Name":".achim.","Points":6466,"X":474,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760091Z"},{"ID":44825,"Name":"C0260","Points":10362,"X":302,"Y":547,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760091Z"},{"ID":44826,"Name":"Wioska Majsmen","Points":9711,"X":348,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":7333216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760092Z"},{"ID":44827,"Name":"O055","Points":9887,"X":333,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760092Z"},{"ID":44828,"Name":"200","Points":9950,"X":429,"Y":304,"Continent":"K34","Bonus":1,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760093Z"},{"ID":44829,"Name":"12 Maszynowa","Points":9661,"X":705,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760093Z"},{"ID":44830,"Name":"B008 Gilead","Points":10152,"X":705,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760094Z"},{"ID":44831,"Name":"S002","Points":9151,"X":603,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760094Z"},{"ID":44832,"Name":"=0013=","Points":9839,"X":401,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760095Z"},{"ID":44833,"Name":"Ciagle pada","Points":5028,"X":684,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760095Z"},{"ID":44834,"Name":"Wioska barbarzyƄska","Points":4919,"X":337,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760096Z"},{"ID":44835,"Name":"S009","Points":6833,"X":686,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760097Z"},{"ID":44836,"Name":"Didek","Points":3616,"X":687,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760097Z"},{"ID":44837,"Name":"Wioska barbarzyƄska","Points":10242,"X":621,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760098Z"},{"ID":44838,"Name":"TUTAJ NA PEWNO PRZETRWAM","Points":7077,"X":378,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760098Z"},{"ID":44839,"Name":"PiekƂo to inni","Points":4444,"X":640,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760099Z"},{"ID":44840,"Name":"Grubasy 2","Points":8243,"X":300,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760099Z"},{"ID":44841,"Name":"004. GĂłrki Niezbyt Wielkie","Points":10728,"X":655,"Y":641,"Continent":"K66","Bonus":2,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7601Z"},{"ID":44842,"Name":"Wioska barbarzyƄska","Points":2497,"X":634,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7601Z"},{"ID":44843,"Name":"I109","Points":6382,"X":698,"Y":449,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760101Z"},{"ID":44844,"Name":"King","Points":4655,"X":634,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849100782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760101Z"},{"ID":44845,"Name":"008","Points":10099,"X":530,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760102Z"},{"ID":44846,"Name":"028","Points":4007,"X":640,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760102Z"},{"ID":44847,"Name":"050 invidia","Points":10237,"X":545,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760103Z"},{"ID":44848,"Name":"North 010","Points":10232,"X":507,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760103Z"},{"ID":44849,"Name":"Wioska barbarzyƄska","Points":1809,"X":454,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760104Z"},{"ID":44850,"Name":"Wioska barbarzyƄska","Points":10475,"X":583,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760104Z"},{"ID":44851,"Name":"Wioska 1","Points":10362,"X":635,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760105Z"},{"ID":44852,"Name":"016","Points":8128,"X":657,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760105Z"},{"ID":44853,"Name":"Wioska barbarzyƄska","Points":6462,"X":708,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760106Z"},{"ID":44854,"Name":"0059","Points":9563,"X":452,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760106Z"},{"ID":44855,"Name":"????","Points":9602,"X":475,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760107Z"},{"ID":44857,"Name":"Wichura","Points":6736,"X":648,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":2371436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760107Z"},{"ID":44858,"Name":"Wioska barbarzyƄska","Points":2671,"X":643,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760108Z"},{"ID":44859,"Name":"Wioska barbarzyƄska","Points":9383,"X":694,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760108Z"},{"ID":44860,"Name":"*024 GAWRA*","Points":5650,"X":309,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760109Z"},{"ID":44861,"Name":"#0089","Points":3857,"X":559,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760109Z"},{"ID":44862,"Name":"029. Wioska barbarzyƄska","Points":6454,"X":347,"Y":641,"Continent":"K63","Bonus":7,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76011Z"},{"ID":44863,"Name":"[197]","Points":4228,"X":677,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76011Z"},{"ID":44864,"Name":"Wioska barbarzyƄska","Points":6461,"X":620,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760111Z"},{"ID":44865,"Name":"Wioska barbarzyƄska","Points":6690,"X":382,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760112Z"},{"ID":44866,"Name":"004 OstrĂłw Tumski","Points":6154,"X":293,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760112Z"},{"ID":44867,"Name":"EO EO","Points":10019,"X":315,"Y":524,"Continent":"K53","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760113Z"},{"ID":44868,"Name":"New World","Points":10097,"X":434,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760113Z"},{"ID":44869,"Name":"FAKE OR OFF","Points":9814,"X":409,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760114Z"},{"ID":44870,"Name":"@15@","Points":4121,"X":405,"Y":320,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760114Z"},{"ID":44871,"Name":"Gondor","Points":11898,"X":410,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760115Z"},{"ID":44872,"Name":"Wioska barbarzyƄska","Points":9570,"X":357,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760115Z"},{"ID":44874,"Name":"Ave Why!","Points":3619,"X":313,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760116Z"},{"ID":44875,"Name":"0109","Points":9007,"X":703,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760116Z"},{"ID":44876,"Name":"C0133","Points":10416,"X":298,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760117Z"},{"ID":44877,"Name":"Wioska barbarzyƄska","Points":1203,"X":304,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760117Z"},{"ID":44878,"Name":"- 276 - SS","Points":7769,"X":555,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760118Z"},{"ID":44879,"Name":"Didi","Points":6848,"X":688,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760118Z"},{"ID":44880,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760119Z"},{"ID":44881,"Name":"C0220","Points":7189,"X":298,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760119Z"},{"ID":44882,"Name":"Wioska barbarzyƄska","Points":1516,"X":330,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76012Z"},{"ID":44883,"Name":"051","Points":9143,"X":452,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76012Z"},{"ID":44884,"Name":"...05 am","Points":10495,"X":673,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760121Z"},{"ID":44885,"Name":"XDX","Points":4331,"X":599,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760121Z"},{"ID":44886,"Name":"261..emerson","Points":7184,"X":467,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760122Z"},{"ID":44887,"Name":"Wioska barbarzyƄska","Points":2988,"X":650,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760122Z"},{"ID":44888,"Name":"ƂódĆș","Points":2443,"X":290,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":699862278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760123Z"},{"ID":44889,"Name":"bucksbarzyƄskamiiiru","Points":5876,"X":317,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760124Z"},{"ID":44890,"Name":"Kagusiowo 3","Points":7556,"X":303,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760124Z"},{"ID":44891,"Name":"Z 02","Points":12154,"X":417,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760125Z"},{"ID":44892,"Name":"Wioska barbarzyƄska","Points":7454,"X":626,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760125Z"},{"ID":44893,"Name":"Centrum","Points":8867,"X":290,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760126Z"},{"ID":44894,"Name":"005","Points":10019,"X":454,"Y":295,"Continent":"K24","Bonus":4,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760126Z"},{"ID":44895,"Name":"FP009","Points":10393,"X":479,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760127Z"},{"ID":44896,"Name":"Wioska barbarzyƄska","Points":323,"X":291,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":2893211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760127Z"},{"ID":44897,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":299,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760128Z"},{"ID":44898,"Name":"Wioska barbarzyƄska","Points":6450,"X":501,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760128Z"},{"ID":44899,"Name":"Pogromca","Points":6002,"X":385,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760129Z"},{"ID":44900,"Name":"081","Points":10495,"X":416,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760129Z"},{"ID":44901,"Name":"Wioska Melon944","Points":7687,"X":309,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76013Z"},{"ID":44903,"Name":"Taran","Points":7221,"X":321,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76013Z"},{"ID":44904,"Name":"Daleki GrĂłd","Points":9998,"X":632,"Y":335,"Continent":"K36","Bonus":9,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760131Z"},{"ID":44905,"Name":"XDX","Points":8962,"X":601,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760131Z"},{"ID":44906,"Name":"###037###","Points":10495,"X":593,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760132Z"},{"ID":44907,"Name":"B032","Points":5319,"X":624,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760132Z"},{"ID":44908,"Name":"Wioska barbarzyƄska","Points":1534,"X":688,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760133Z"},{"ID":44909,"Name":"Wioska barbarzyƄska","Points":223,"X":308,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760133Z"},{"ID":44910,"Name":"Wioska barbarzyƄska","Points":878,"X":311,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760134Z"},{"ID":44911,"Name":"Wioska barbarzyƄska","Points":3112,"X":297,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":7530708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760134Z"},{"ID":44912,"Name":"027 Wioska barbarzyƄska","Points":9630,"X":614,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760135Z"},{"ID":44913,"Name":"PrzeƂom","Points":9106,"X":702,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":849099640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760135Z"},{"ID":44914,"Name":"New World","Points":10294,"X":426,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760136Z"},{"ID":44915,"Name":"031","Points":7738,"X":671,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760136Z"},{"ID":44916,"Name":"New World","Points":10297,"X":419,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760137Z"},{"ID":44917,"Name":"014. Night Raid","Points":8090,"X":491,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760138Z"},{"ID":44918,"Name":"KONFA TO MARKA, NARKA","Points":9777,"X":298,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760138Z"},{"ID":44919,"Name":"Sernik z Andzynkami","Points":7963,"X":711,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760139Z"},{"ID":44920,"Name":"B05","Points":10151,"X":703,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760139Z"},{"ID":44921,"Name":"002","Points":10224,"X":300,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76014Z"},{"ID":44922,"Name":"Wioska barbarzyƄska","Points":10159,"X":586,"Y":313,"Continent":"K35","Bonus":2,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76014Z"},{"ID":44923,"Name":"FAKE OR OFF","Points":10119,"X":406,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760141Z"},{"ID":44924,"Name":"New WorldA","Points":6539,"X":294,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760141Z"},{"ID":44925,"Name":"Sukcesu droga","Points":10362,"X":685,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760142Z"},{"ID":44926,"Name":"009","Points":2914,"X":696,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760142Z"},{"ID":44927,"Name":"Osada koczownikĂłw","Points":9856,"X":381,"Y":331,"Continent":"K33","Bonus":4,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760143Z"},{"ID":44928,"Name":"###038###","Points":10495,"X":594,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760143Z"},{"ID":44929,"Name":"024. Wioska barabarzyƄska","Points":10367,"X":703,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760144Z"},{"ID":44930,"Name":"FP024","Points":9620,"X":482,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760144Z"},{"ID":44931,"Name":"Z 03","Points":12154,"X":420,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760145Z"},{"ID":44932,"Name":"038. Haramosh","Points":8846,"X":707,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760145Z"},{"ID":44933,"Name":"Zalesice","Points":6817,"X":567,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760146Z"},{"ID":44934,"Name":"200","Points":9771,"X":369,"Y":663,"Continent":"K63","Bonus":8,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760146Z"},{"ID":44935,"Name":"Didek","Points":3837,"X":688,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760147Z"},{"ID":44936,"Name":"Taran","Points":7314,"X":323,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760147Z"},{"ID":44937,"Name":"Taran","Points":5990,"X":311,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760148Z"},{"ID":44938,"Name":"MojeDnoToWaszSzczyt","Points":9950,"X":502,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760149Z"},{"ID":44939,"Name":"101 - Nowy Początek...","Points":5551,"X":348,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760149Z"},{"ID":44941,"Name":"Wioska barbarzyƄska","Points":2366,"X":705,"Y":533,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76015Z"},{"ID":44943,"Name":"Wioska barbarzyƄska","Points":9883,"X":365,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76015Z"},{"ID":44944,"Name":"MojeDnoToWaszSzczyt","Points":9774,"X":496,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760151Z"},{"ID":44945,"Name":"Wioska barbarzyƄska","Points":4791,"X":632,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760151Z"},{"ID":44946,"Name":"Wioska barbarzyƄska","Points":6489,"X":368,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760152Z"},{"ID":44947,"Name":"XDX","Points":9618,"X":605,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760152Z"},{"ID":44948,"Name":"K07","Points":8471,"X":356,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760153Z"},{"ID":44949,"Name":"0366","Points":7669,"X":567,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760153Z"},{"ID":44950,"Name":"G004","Points":9422,"X":515,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760154Z"},{"ID":44951,"Name":"001 OstrĂłw Lednicki","Points":7935,"X":289,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760154Z"},{"ID":44952,"Name":"Wioska barbarzyƄska","Points":8098,"X":701,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760155Z"},{"ID":44953,"Name":"Wioska zosiek00","Points":7033,"X":375,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760155Z"},{"ID":44954,"Name":"Szlachcic","Points":6802,"X":360,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760156Z"},{"ID":44955,"Name":"AAAAAAAAAAAAAAAAAAAAAAA","Points":9835,"X":321,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760156Z"},{"ID":44956,"Name":"Starcza","Points":5471,"X":298,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760157Z"},{"ID":44957,"Name":"B001 Osada WschĂłd","Points":10141,"X":709,"Y":463,"Continent":"K47","Bonus":9,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760157Z"},{"ID":44958,"Name":"AlaKlaudia2","Points":5079,"X":384,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760158Z"},{"ID":44959,"Name":"Wioska barbarzyƄska","Points":6235,"X":699,"Y":549,"Continent":"K56","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760158Z"},{"ID":44960,"Name":"FAKE OR OFF","Points":9629,"X":407,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760159Z"},{"ID":44961,"Name":"Wioska barbarzyƄska","Points":10476,"X":579,"Y":308,"Continent":"K35","Bonus":6,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760159Z"},{"ID":44962,"Name":"Wioska barbarzyƄska","Points":3855,"X":336,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76016Z"},{"ID":44963,"Name":"bucksbarzyƄskamiiiru","Points":2310,"X":324,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760161Z"},{"ID":44964,"Name":"Winterfell.005","Points":10178,"X":461,"Y":296,"Continent":"K24","Bonus":5,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760161Z"},{"ID":44965,"Name":"No chyba nie","Points":10006,"X":364,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760162Z"},{"ID":44966,"Name":"ZA01","Points":9835,"X":320,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760162Z"},{"ID":44967,"Name":"Wioska barbarzyƄska","Points":2656,"X":305,"Y":557,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760163Z"},{"ID":44968,"Name":"C.05 a panicz to dokąd?","Points":2251,"X":548,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760163Z"},{"ID":44969,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9761,"X":426,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760164Z"},{"ID":44970,"Name":"Wioska barbarzyƄska","Points":9905,"X":569,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760164Z"},{"ID":44971,"Name":"030","Points":9835,"X":631,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760165Z"},{"ID":44972,"Name":"032","Points":9364,"X":667,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760165Z"},{"ID":44973,"Name":"009","Points":10495,"X":404,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760166Z"},{"ID":44975,"Name":"S006","Points":9049,"X":604,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760166Z"},{"ID":44976,"Name":"K33","Points":2165,"X":322,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760167Z"},{"ID":44977,"Name":"Jarza071","Points":9700,"X":677,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760167Z"},{"ID":44978,"Name":"O006","Points":9955,"X":341,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760168Z"},{"ID":44979,"Name":"0050 Utopia3","Points":10309,"X":447,"Y":696,"Continent":"K64","Bonus":2,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760168Z"},{"ID":44980,"Name":"08. Pompeje","Points":10252,"X":704,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760169Z"},{"ID":44981,"Name":"777","Points":8642,"X":343,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760169Z"},{"ID":44983,"Name":"wioska","Points":7330,"X":632,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76017Z"},{"ID":44984,"Name":"053.","Points":3542,"X":629,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76017Z"},{"ID":44985,"Name":"#K66 0003","Points":7377,"X":610,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760171Z"},{"ID":44986,"Name":"031","Points":1760,"X":642,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760171Z"},{"ID":44987,"Name":"????","Points":9590,"X":475,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760172Z"},{"ID":44988,"Name":"0112","Points":8708,"X":705,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760172Z"},{"ID":44989,"Name":"XDX","Points":10297,"X":607,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760173Z"},{"ID":44990,"Name":"034.Stradi","Points":10495,"X":425,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760173Z"},{"ID":44991,"Name":"###092###","Points":10495,"X":578,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760174Z"},{"ID":44992,"Name":"ZƂoty ƚwit","Points":6793,"X":579,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760174Z"},{"ID":44993,"Name":"EO EO","Points":9976,"X":290,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760175Z"},{"ID":44994,"Name":"002","Points":9684,"X":387,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760175Z"},{"ID":44995,"Name":"041","Points":6130,"X":300,"Y":540,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760176Z"},{"ID":44996,"Name":"Wioska barbarzyƄska","Points":1482,"X":510,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":8400975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760177Z"},{"ID":44997,"Name":"Patryk611","Points":5885,"X":676,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760177Z"},{"ID":44998,"Name":"S002","Points":8898,"X":683,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760178Z"},{"ID":44999,"Name":"bucksbarzyƄskamiiiru","Points":9443,"X":321,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760178Z"},{"ID":45000,"Name":"Psycho to Marka, Narka !","Points":1910,"X":306,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760179Z"},{"ID":45001,"Name":"yks","Points":10237,"X":535,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760179Z"},{"ID":45002,"Name":"eee","Points":9666,"X":370,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76018Z"},{"ID":45003,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":503,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76018Z"},{"ID":45004,"Name":"Wioska barbarzyƄska","Points":6911,"X":711,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760181Z"},{"ID":45005,"Name":"O056","Points":9819,"X":334,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760181Z"},{"ID":45006,"Name":"Adamo 5","Points":4821,"X":585,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760182Z"},{"ID":45007,"Name":"KRÓL PAPI WIELKI","Points":9381,"X":643,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760182Z"},{"ID":45008,"Name":"019. Night Raid*","Points":9807,"X":432,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760183Z"},{"ID":45009,"Name":"Bessa 027","Points":9564,"X":644,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760183Z"},{"ID":45010,"Name":"016","Points":9663,"X":711,"Y":495,"Continent":"K47","Bonus":3,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760184Z"},{"ID":45011,"Name":"EO EO","Points":8863,"X":293,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760184Z"},{"ID":45012,"Name":"Kurnik","Points":4338,"X":471,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760185Z"},{"ID":45013,"Name":"Wioska barbarzyƄska","Points":5662,"X":317,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760185Z"},{"ID":45014,"Name":"ZA07","Points":9835,"X":322,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760186Z"},{"ID":45015,"Name":"2. Pusia 420","Points":9319,"X":473,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760186Z"},{"ID":45016,"Name":"pusta","Points":4440,"X":573,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760187Z"},{"ID":45017,"Name":"ZZ10","Points":9373,"X":308,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760188Z"},{"ID":45018,"Name":"O004","Points":10291,"X":341,"Y":632,"Continent":"K63","Bonus":9,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760188Z"},{"ID":45019,"Name":"102","Points":9449,"X":405,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760189Z"},{"ID":45021,"Name":"025. Fitz Roy","Points":10362,"X":709,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760189Z"},{"ID":45022,"Name":"Wioska barbarzyƄska","Points":10262,"X":589,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76019Z"},{"ID":45024,"Name":"051 sebaseba1991","Points":9965,"X":617,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76019Z"},{"ID":45026,"Name":"XDX","Points":9957,"X":612,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760191Z"},{"ID":45027,"Name":"E005","Points":6019,"X":657,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760191Z"},{"ID":45028,"Name":"202","Points":8808,"X":432,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760192Z"},{"ID":45029,"Name":"EO EO","Points":7655,"X":297,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760192Z"},{"ID":45030,"Name":"009c","Points":4042,"X":311,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760193Z"},{"ID":45031,"Name":"Wioska barbarzyƄska","Points":6143,"X":316,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760193Z"},{"ID":45032,"Name":"023.","Points":4564,"X":628,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760194Z"},{"ID":45033,"Name":"psycha sitting","Points":10311,"X":412,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760194Z"},{"ID":45034,"Name":"003 VLV","Points":8524,"X":560,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":849100656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760195Z"},{"ID":45035,"Name":"Osiny","Points":8591,"X":572,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760195Z"},{"ID":45036,"Name":"Ger3","Points":4899,"X":709,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760196Z"},{"ID":45037,"Name":"Bessa 028","Points":10232,"X":635,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760196Z"},{"ID":45039,"Name":"009. Painful","Points":9501,"X":703,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760197Z"},{"ID":45040,"Name":"Wioska Totomoose 3","Points":2870,"X":313,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":849100744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760197Z"},{"ID":45041,"Name":".achim.","Points":4598,"X":482,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760198Z"},{"ID":45042,"Name":"ZZZ","Points":10237,"X":542,"Y":706,"Continent":"K75","Bonus":8,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760198Z"},{"ID":45043,"Name":"006","Points":6360,"X":390,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760199Z"},{"ID":45044,"Name":"New World","Points":10297,"X":425,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760199Z"},{"ID":45045,"Name":"028 zadupie1","Points":10019,"X":530,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7602Z"},{"ID":45046,"Name":"Z07","Points":9835,"X":317,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7602Z"},{"ID":45047,"Name":"007. Night Raid","Points":9754,"X":491,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760201Z"},{"ID":45048,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9741,"X":497,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760201Z"},{"ID":45049,"Name":"Ranczo","Points":12154,"X":302,"Y":449,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760202Z"},{"ID":45050,"Name":"Wioska barbarzyƄska","Points":3866,"X":639,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760203Z"},{"ID":45051,"Name":"psycha sitting","Points":6689,"X":399,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760203Z"},{"ID":45052,"Name":"001","Points":5978,"X":646,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760204Z"},{"ID":45053,"Name":"Wioska barbarzyƄska","Points":7169,"X":688,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760204Z"},{"ID":45055,"Name":"#0152 barbarzyƄska","Points":7273,"X":484,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760205Z"},{"ID":45056,"Name":"~~LatającyHolender~~","Points":10140,"X":590,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760205Z"},{"ID":45057,"Name":"Wioska barbarzyƄska","Points":6517,"X":385,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760206Z"},{"ID":45058,"Name":"13. Poviss","Points":9684,"X":706,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760206Z"},{"ID":45059,"Name":"004","Points":8180,"X":392,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760207Z"},{"ID":45060,"Name":"North 012","Points":10311,"X":506,"Y":289,"Continent":"K25","Bonus":9,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760207Z"},{"ID":45062,"Name":"Na KraƄcu ƚwiata 019","Points":4092,"X":641,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760208Z"},{"ID":45063,"Name":"008","Points":4918,"X":699,"Y":557,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760208Z"},{"ID":45064,"Name":"Grubasy 4","Points":5438,"X":297,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760209Z"},{"ID":45065,"Name":"AAA","Points":10101,"X":321,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760209Z"},{"ID":45066,"Name":"S025","Points":5049,"X":686,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76021Z"},{"ID":45067,"Name":"Didi","Points":4718,"X":684,"Y":587,"Continent":"K56","Bonus":1,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76021Z"},{"ID":45068,"Name":"A000","Points":9275,"X":466,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760211Z"},{"ID":45069,"Name":"011","Points":3361,"X":351,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760211Z"},{"ID":45070,"Name":"Osada koczownikĂłw","Points":10139,"X":382,"Y":325,"Continent":"K33","Bonus":8,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760212Z"},{"ID":45071,"Name":"Dream on","Points":6623,"X":295,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760212Z"},{"ID":45072,"Name":"Taran","Points":9721,"X":319,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760213Z"},{"ID":45073,"Name":"New World","Points":10559,"X":425,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760213Z"},{"ID":45074,"Name":"z zajazd /2","Points":6755,"X":353,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760214Z"},{"ID":45075,"Name":"W24","Points":1864,"X":693,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760214Z"},{"ID":45076,"Name":"022. Night Raid*","Points":10838,"X":429,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760215Z"},{"ID":45077,"Name":"S018","Points":5050,"X":688,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760215Z"},{"ID":45078,"Name":"###093###","Points":10495,"X":582,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760216Z"},{"ID":45079,"Name":"FAKE OR OFF","Points":9828,"X":407,"Y":320,"Continent":"K34","Bonus":2,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760216Z"},{"ID":45080,"Name":"#0291 Don Noobas","Points":2502,"X":465,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760217Z"},{"ID":45081,"Name":"KONFA TO MARKA, NARKA","Points":7555,"X":294,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760217Z"},{"ID":45082,"Name":"239","Points":2840,"X":398,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760218Z"},{"ID":45083,"Name":"053.","Points":5761,"X":705,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760219Z"},{"ID":45084,"Name":"Didek","Points":7268,"X":684,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760219Z"},{"ID":45085,"Name":"C059","Points":10431,"X":363,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76022Z"},{"ID":45086,"Name":"MojeDnoToWaszSzczyt","Points":9966,"X":495,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76022Z"},{"ID":45087,"Name":"Taran","Points":9835,"X":322,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760221Z"},{"ID":45088,"Name":"Wioska barbarzyƄska","Points":9962,"X":588,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760221Z"},{"ID":45089,"Name":".achim.","Points":7794,"X":482,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760222Z"},{"ID":45090,"Name":"BRICKLEBERRY","Points":9963,"X":518,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760222Z"},{"ID":45091,"Name":"0017","Points":4932,"X":400,"Y":322,"Continent":"K34","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760223Z"},{"ID":45093,"Name":"[0212]","Points":7661,"X":297,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760223Z"},{"ID":45094,"Name":"GULASZ","Points":866,"X":707,"Y":530,"Continent":"K57","Bonus":0,"PlayerID":1895081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760224Z"},{"ID":45095,"Name":"033","Points":9171,"X":667,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760224Z"},{"ID":45097,"Name":"CastAway !032","Points":4632,"X":686,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760225Z"},{"ID":45098,"Name":"Wioska barbarzyƄska","Points":9491,"X":365,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760225Z"},{"ID":45099,"Name":"Wioska barbarzyƄska","Points":5318,"X":587,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760226Z"},{"ID":45100,"Name":"Dream on","Points":4378,"X":292,"Y":486,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760226Z"},{"ID":45101,"Name":"003","Points":9976,"X":296,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760227Z"},{"ID":45103,"Name":"Borubar 5","Points":4637,"X":711,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760227Z"},{"ID":45104,"Name":"D015","Points":6369,"X":353,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760228Z"},{"ID":45105,"Name":"Domi 8","Points":7287,"X":700,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760228Z"},{"ID":45106,"Name":"Wioska barbarzyƄska","Points":8212,"X":383,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760229Z"},{"ID":45108,"Name":"[0147]","Points":8951,"X":442,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76023Z"},{"ID":45109,"Name":"KRÓL PAPI WIELKI","Points":9973,"X":651,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76023Z"},{"ID":45110,"Name":"TWIERDZA .:009:.","Points":10182,"X":698,"Y":567,"Continent":"K56","Bonus":5,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760231Z"},{"ID":45111,"Name":"012 ledwo co","Points":10237,"X":508,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760231Z"},{"ID":45112,"Name":"201","Points":10298,"X":427,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760232Z"},{"ID":45113,"Name":"WB13","Points":3703,"X":308,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760232Z"},{"ID":45114,"Name":"Wioska barbarzyƄska","Points":9905,"X":594,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760233Z"},{"ID":45115,"Name":"010","Points":3245,"X":709,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760233Z"},{"ID":45116,"Name":"Taran","Points":9727,"X":320,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760234Z"},{"ID":45117,"Name":"126 invidia","Points":10495,"X":502,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760234Z"},{"ID":45118,"Name":"###094###","Points":10495,"X":581,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760235Z"},{"ID":45119,"Name":"C011","Points":3287,"X":544,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760235Z"},{"ID":45120,"Name":"Taran","Points":10311,"X":317,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760236Z"},{"ID":45121,"Name":"Mydlana baƄka","Points":9045,"X":687,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760236Z"},{"ID":45122,"Name":"B005 Szaleniczki","Points":10160,"X":706,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760237Z"},{"ID":45123,"Name":"[0136]","Points":9353,"X":456,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760237Z"},{"ID":45124,"Name":"Wioska barbarzyƄska","Points":5133,"X":692,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760238Z"},{"ID":45126,"Name":"Wioska 21","Points":5921,"X":687,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760238Z"},{"ID":45128,"Name":"Wyspa_48","Points":3895,"X":507,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760239Z"},{"ID":45129,"Name":"005","Points":9899,"X":389,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760239Z"},{"ID":45130,"Name":"Wioska barbarzyƄska","Points":9550,"X":358,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76024Z"},{"ID":45131,"Name":"AAA","Points":8593,"X":550,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76024Z"},{"ID":45132,"Name":"043","Points":10019,"X":463,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760241Z"},{"ID":45133,"Name":"B028","Points":5123,"X":623,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760241Z"},{"ID":45134,"Name":"Wioska barbarzyƄska","Points":5715,"X":698,"Y":457,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760242Z"},{"ID":45135,"Name":"Lusia","Points":7923,"X":527,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760242Z"},{"ID":45137,"Name":"Wioska013","Points":4285,"X":686,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760243Z"},{"ID":45138,"Name":"wioska","Points":9772,"X":630,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760243Z"},{"ID":45139,"Name":"31.Creyden","Points":7424,"X":707,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760244Z"},{"ID":45140,"Name":"Wioska 001","Points":10019,"X":689,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760244Z"},{"ID":45141,"Name":"Wioska barbarzyƄska","Points":5073,"X":704,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760245Z"},{"ID":45143,"Name":"0035","Points":2552,"X":329,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760245Z"},{"ID":45144,"Name":"#K66 0007","Points":4635,"X":609,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760246Z"},{"ID":45145,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":667,"Y":628,"Continent":"K66","Bonus":5,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760247Z"},{"ID":45146,"Name":"Sodoma","Points":8568,"X":417,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760247Z"},{"ID":45148,"Name":"New World","Points":10294,"X":438,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760248Z"},{"ID":45149,"Name":"Nad ranem","Points":4176,"X":684,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760248Z"},{"ID":45150,"Name":"34. Kufe 1","Points":8025,"X":705,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760249Z"},{"ID":45151,"Name":"Wioska barbarzyƄska","Points":6468,"X":688,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760249Z"},{"ID":45152,"Name":"001 szukam","Points":5319,"X":533,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76025Z"},{"ID":45153,"Name":"0063","Points":5199,"X":707,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76025Z"},{"ID":45154,"Name":"052 Karolo1","Points":9401,"X":618,"Y":672,"Continent":"K66","Bonus":2,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760251Z"},{"ID":45155,"Name":"W25","Points":4387,"X":694,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760251Z"},{"ID":45156,"Name":"Grubasy 3","Points":6609,"X":299,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760252Z"},{"ID":45157,"Name":"Spec2","Points":5695,"X":544,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699569800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760252Z"},{"ID":45158,"Name":"EO EO","Points":10019,"X":293,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760253Z"},{"ID":45159,"Name":"ZboĆŒowa","Points":2575,"X":483,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760253Z"},{"ID":45160,"Name":"C057","Points":10713,"X":364,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760254Z"},{"ID":45161,"Name":"0067","Points":5556,"X":706,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760254Z"},{"ID":45162,"Name":"Wioska barbarzyƄska","Points":6659,"X":530,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760255Z"},{"ID":45163,"Name":"Mniejsze zƂo 0094","Points":5365,"X":320,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760255Z"},{"ID":45164,"Name":"001","Points":9498,"X":386,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760256Z"},{"ID":45165,"Name":"039. Izera","Points":7615,"X":706,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760256Z"},{"ID":45167,"Name":"Wioska barbarzyƄska","Points":5207,"X":496,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760257Z"},{"ID":45168,"Name":"C005","Points":9726,"X":468,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760257Z"},{"ID":45169,"Name":"ObrzeĆŒe","Points":8883,"X":577,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760258Z"},{"ID":45170,"Name":"--004--","Points":10244,"X":568,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760258Z"},{"ID":45171,"Name":"Wioska barbarzyƄska","Points":5516,"X":319,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":8699429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760259Z"},{"ID":45173,"Name":"025","Points":9726,"X":711,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760259Z"},{"ID":45174,"Name":"Wioska barbarzyƄska","Points":7364,"X":330,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76026Z"},{"ID":45175,"Name":"ObrzeĆŒe","Points":8820,"X":575,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76026Z"},{"ID":45176,"Name":"OrzeƂ 6","Points":7620,"X":688,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760261Z"},{"ID":45177,"Name":"W27","Points":2243,"X":684,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760261Z"},{"ID":45178,"Name":"Didi","Points":9516,"X":686,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760262Z"},{"ID":45179,"Name":"0014 mackobl14","Points":10478,"X":437,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760263Z"},{"ID":45180,"Name":"003 Barba","Points":8145,"X":406,"Y":318,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760263Z"},{"ID":45181,"Name":"[0117]","Points":10048,"X":444,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760264Z"},{"ID":45182,"Name":"bucksbarzyƄskamiiiru","Points":7295,"X":325,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760264Z"},{"ID":45183,"Name":"Wioska barbarzyƄska","Points":7520,"X":424,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760265Z"},{"ID":45184,"Name":"New WorldA","Points":6044,"X":297,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760265Z"},{"ID":45185,"Name":"bucksbarzyƄskamiiiru","Points":5380,"X":321,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760266Z"},{"ID":45186,"Name":"Wioska barbarzyƄska","Points":7686,"X":639,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760266Z"},{"ID":45187,"Name":"[198]","Points":3665,"X":676,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760267Z"},{"ID":45189,"Name":"Wioska barbarzyƄska","Points":3440,"X":388,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760267Z"},{"ID":45191,"Name":"Virginia Beach","Points":10085,"X":626,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760268Z"},{"ID":45192,"Name":"014. Wioska barbarzyƄska","Points":8091,"X":344,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760268Z"},{"ID":45193,"Name":"Wioska 13kris","Points":9854,"X":565,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760269Z"},{"ID":45194,"Name":".achim.","Points":4330,"X":481,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760269Z"},{"ID":45195,"Name":"BACÓWKA |025|","Points":5978,"X":634,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":7394371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76027Z"},{"ID":45196,"Name":"025","Points":10083,"X":301,"Y":566,"Continent":"K53","Bonus":4,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76027Z"},{"ID":45197,"Name":"027","Points":8017,"X":705,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760271Z"},{"ID":45198,"Name":"Bessa 003","Points":10087,"X":639,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760271Z"},{"ID":45199,"Name":"Wioska barbarzyƄska","Points":9925,"X":530,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760272Z"},{"ID":45200,"Name":"Wioska barbarzyƄska","Points":9835,"X":361,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760272Z"},{"ID":45201,"Name":"006","Points":6748,"X":355,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760273Z"},{"ID":45202,"Name":"Wioska barbarzyƄska","Points":3681,"X":341,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760273Z"},{"ID":45203,"Name":"Taran","Points":9301,"X":325,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760274Z"},{"ID":45204,"Name":"AAA","Points":6177,"X":549,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760274Z"},{"ID":45205,"Name":"komandos","Points":8661,"X":633,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760275Z"},{"ID":45206,"Name":"Szlachcic","Points":7561,"X":362,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760276Z"},{"ID":45207,"Name":"035","Points":3035,"X":616,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760276Z"},{"ID":45208,"Name":"Aberdeen 1","Points":891,"X":302,"Y":426,"Continent":"K43","Bonus":0,"PlayerID":699852080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760277Z"},{"ID":45209,"Name":"0054 Wioska Nieƛmiertelny97","Points":5106,"X":447,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760277Z"},{"ID":45210,"Name":"S020","Points":4588,"X":685,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760278Z"},{"ID":45211,"Name":"wioska","Points":4232,"X":633,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760278Z"},{"ID":45212,"Name":"OstroĆŒanka","Points":6894,"X":571,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760279Z"},{"ID":45213,"Name":"EO EO","Points":8157,"X":294,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760279Z"},{"ID":45214,"Name":"Wioska barbarzyƄska","Points":1603,"X":358,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76028Z"},{"ID":45215,"Name":"0128","Points":8587,"X":393,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76028Z"},{"ID":45216,"Name":"XDX","Points":10158,"X":603,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760281Z"},{"ID":45217,"Name":"Wioska barbarzyƄska","Points":10096,"X":631,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760281Z"},{"ID":45218,"Name":"Dream on","Points":9488,"X":293,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760282Z"},{"ID":45219,"Name":"Wioska barbarzyƄska","Points":7100,"X":500,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760282Z"},{"ID":45220,"Name":"East1","Points":7874,"X":681,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760283Z"},{"ID":45221,"Name":"099. Mruva","Points":12154,"X":619,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760284Z"},{"ID":45222,"Name":"Dantyszka","Points":2728,"X":477,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760284Z"},{"ID":45223,"Name":"Wioska barbarzyƄska1","Points":2575,"X":291,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":698879638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760285Z"},{"ID":45224,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":657,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760285Z"},{"ID":45225,"Name":"091 Tomek","Points":6590,"X":680,"Y":513,"Continent":"K56","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760286Z"},{"ID":45226,"Name":"DDDQ","Points":9160,"X":289,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760286Z"},{"ID":45227,"Name":"tomek016 VI","Points":1888,"X":693,"Y":569,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760287Z"},{"ID":45228,"Name":"0159","Points":5147,"X":386,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760287Z"},{"ID":45229,"Name":"FP020","Points":10265,"X":472,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760288Z"},{"ID":45230,"Name":"*INTERTWINED*","Points":5625,"X":506,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760288Z"},{"ID":45231,"Name":"PóƂnocny Bagdad","Points":9835,"X":618,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760289Z"},{"ID":45232,"Name":"Ć»UBEREK 018","Points":6057,"X":607,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760289Z"},{"ID":45233,"Name":"DZIADZIOR","Points":5484,"X":309,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699127156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76029Z"},{"ID":45234,"Name":"#003 Los Angeles","Points":5836,"X":319,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":849101276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76029Z"},{"ID":45235,"Name":"[0131]","Points":9347,"X":443,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760291Z"},{"ID":45237,"Name":"FAKE OR OFF","Points":9817,"X":408,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760291Z"},{"ID":45238,"Name":"I008","Points":10252,"X":672,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760292Z"},{"ID":45239,"Name":"C0211","Points":10362,"X":298,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760292Z"},{"ID":45241,"Name":"Wioska barbarzyƄska","Points":6931,"X":384,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760293Z"},{"ID":45242,"Name":"Dust in the wind.","Points":6457,"X":289,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":849001277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760293Z"},{"ID":45243,"Name":"Wioska Zawodnika 2","Points":6443,"X":580,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698655859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760294Z"},{"ID":45244,"Name":"ChwaƂowice","Points":10301,"X":568,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760294Z"},{"ID":45245,"Name":"~085.","Points":2970,"X":468,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760295Z"},{"ID":45246,"Name":"New Land 18","Points":3476,"X":331,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760296Z"},{"ID":45247,"Name":"Wiadrowo GĂłrne","Points":11819,"X":287,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760296Z"},{"ID":45248,"Name":"Z06","Points":9835,"X":315,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760297Z"},{"ID":45249,"Name":"bucksbarzyƄskamiiiru","Points":5573,"X":315,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760297Z"},{"ID":45250,"Name":"[199]","Points":6756,"X":679,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760298Z"},{"ID":45251,"Name":"bucksbarzyƄskamiiiru","Points":9882,"X":329,"Y":391,"Continent":"K33","Bonus":1,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760298Z"},{"ID":45252,"Name":"FioƂkowe Pole","Points":7814,"X":694,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760299Z"},{"ID":45255,"Name":"0037","Points":8374,"X":462,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760299Z"},{"ID":45256,"Name":".achim.","Points":7570,"X":483,"Y":290,"Continent":"K24","Bonus":3,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7603Z"},{"ID":45257,"Name":"0.07 PseƂfeƂ","Points":9491,"X":467,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7603Z"},{"ID":45258,"Name":"015","Points":10495,"X":409,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760301Z"},{"ID":45259,"Name":"246...Kaban1998","Points":9603,"X":457,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760301Z"},{"ID":45260,"Name":"Wioska barbarzyƄska","Points":9851,"X":637,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760302Z"},{"ID":45261,"Name":"*W006","Points":5631,"X":666,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760302Z"},{"ID":45262,"Name":"Angella x","Points":2209,"X":652,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760303Z"},{"ID":45263,"Name":"ZƂoty ƚwit","Points":9288,"X":576,"Y":303,"Continent":"K35","Bonus":4,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760303Z"},{"ID":45264,"Name":"064.","Points":2289,"X":320,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":3475079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760304Z"},{"ID":45265,"Name":"wioska","Points":7614,"X":635,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760304Z"},{"ID":45266,"Name":"004181","Points":5062,"X":631,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":699872616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760305Z"},{"ID":45267,"Name":"Edda","Points":9172,"X":587,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760305Z"},{"ID":45268,"Name":"046.","Points":10838,"X":443,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760306Z"},{"ID":45269,"Name":"Wioska barbarzyƄska","Points":3429,"X":548,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760306Z"},{"ID":45270,"Name":"[0107]","Points":10495,"X":441,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760307Z"},{"ID":45271,"Name":"Wygwizdowa 006","Points":10311,"X":634,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760307Z"},{"ID":45272,"Name":"009","Points":9976,"X":298,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760308Z"},{"ID":45273,"Name":"S024","Points":2269,"X":685,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760308Z"},{"ID":45274,"Name":"FAKE OR OFF","Points":9819,"X":405,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760309Z"},{"ID":45275,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9543,"X":425,"Y":697,"Continent":"K64","Bonus":5,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760309Z"},{"ID":45277,"Name":"KONFA TO MARKA, NARKA","Points":7824,"X":300,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76031Z"},{"ID":45278,"Name":"[D]_[003] Dejv.oldplyr","Points":10365,"X":287,"Y":504,"Continent":"K52","Bonus":8,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76031Z"},{"ID":45279,"Name":"C0202","Points":7613,"X":298,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760311Z"},{"ID":45280,"Name":"Sernik z Andzynkami","Points":7569,"X":710,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760311Z"},{"ID":45281,"Name":"FAKE OR OFF","Points":9885,"X":408,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760312Z"},{"ID":45282,"Name":"024.","Points":4761,"X":631,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760313Z"},{"ID":45283,"Name":"Ob Konfederacja","Points":6455,"X":428,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760313Z"},{"ID":45284,"Name":"136.Stradi","Points":3093,"X":430,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760314Z"},{"ID":45285,"Name":"0034","Points":2260,"X":324,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760314Z"},{"ID":45286,"Name":"Aaaaxxx","Points":5209,"X":292,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760315Z"},{"ID":45287,"Name":"Dream on","Points":9260,"X":294,"Y":479,"Continent":"K42","Bonus":4,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760315Z"},{"ID":45288,"Name":"Vanaheim","Points":1756,"X":670,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760316Z"},{"ID":45289,"Name":"KRÓL PAPI WIELKI","Points":7292,"X":650,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760316Z"},{"ID":45290,"Name":"Z10","Points":9835,"X":315,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760317Z"},{"ID":45291,"Name":"EE 003","Points":9502,"X":695,"Y":580,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760317Z"},{"ID":45292,"Name":"bucksbarzyƄskamiiiru","Points":6819,"X":327,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760318Z"},{"ID":45293,"Name":"Wioska barbarzyƄska","Points":10068,"X":343,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760318Z"},{"ID":45294,"Name":"C07","Points":5898,"X":705,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760319Z"},{"ID":45295,"Name":"22 Perm","Points":10072,"X":396,"Y":317,"Continent":"K33","Bonus":7,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760319Z"},{"ID":45296,"Name":"014","Points":6206,"X":316,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76032Z"},{"ID":45297,"Name":"komandos","Points":8909,"X":636,"Y":660,"Continent":"K66","Bonus":2,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76032Z"},{"ID":45298,"Name":"ostroƂęka","Points":6983,"X":686,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":849100082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760321Z"},{"ID":45299,"Name":"Wioska haga","Points":3628,"X":291,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":698368493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760322Z"},{"ID":45301,"Name":"Wioska barbarzyƄska","Points":5757,"X":697,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760322Z"},{"ID":45302,"Name":"EO EO","Points":6858,"X":290,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760323Z"},{"ID":45303,"Name":"016 GĂłrki Minimalistyczne","Points":4003,"X":653,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760323Z"},{"ID":45305,"Name":"013 VWF Wioska barbarzyƄska","Points":3509,"X":309,"Y":422,"Continent":"K43","Bonus":4,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760324Z"},{"ID":45306,"Name":"C089","Points":8016,"X":362,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760324Z"},{"ID":45307,"Name":"New World","Points":10297,"X":435,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760325Z"},{"ID":45308,"Name":"Wioska barbarzyƄska","Points":7139,"X":364,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760325Z"},{"ID":45309,"Name":"#0265 olcixx","Points":4714,"X":463,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760326Z"},{"ID":45310,"Name":"C111","Points":5958,"X":354,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760326Z"},{"ID":45311,"Name":".achim.","Points":3632,"X":478,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760327Z"},{"ID":45312,"Name":"????","Points":10160,"X":494,"Y":292,"Continent":"K24","Bonus":5,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760327Z"},{"ID":45313,"Name":"006","Points":3867,"X":297,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":848895676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760328Z"},{"ID":45314,"Name":"258...Karki98","Points":4718,"X":453,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760328Z"},{"ID":45315,"Name":"045","Points":9524,"X":452,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760329Z"},{"ID":45316,"Name":"Wioska Zorro 017","Points":6385,"X":678,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760329Z"},{"ID":45317,"Name":"#0268 olcixx","Points":6589,"X":465,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76033Z"},{"ID":45318,"Name":"yks","Points":10237,"X":536,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76033Z"},{"ID":45319,"Name":"KONFA TO MARKA, NARKA","Points":6824,"X":301,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760331Z"},{"ID":45320,"Name":"001 Zaczynamy","Points":9713,"X":344,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760331Z"},{"ID":45321,"Name":"###095###","Points":10495,"X":592,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760332Z"},{"ID":45322,"Name":"New World","Points":10295,"X":421,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760332Z"},{"ID":45323,"Name":"Wioska barbarzyƄska","Points":9891,"X":368,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760333Z"},{"ID":45324,"Name":"Wioska barbarzyƄska","Points":2111,"X":632,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760333Z"},{"ID":45325,"Name":"026","Points":7884,"X":679,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760334Z"},{"ID":45326,"Name":"IQ155","Points":6067,"X":551,"Y":452,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760334Z"},{"ID":45327,"Name":"Ubijam","Points":4850,"X":690,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760335Z"},{"ID":45329,"Name":"040. Night Raid","Points":5749,"X":485,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760335Z"},{"ID":45330,"Name":"Wioska barbarzyƄska","Points":6839,"X":683,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760336Z"},{"ID":45331,"Name":"Wioska barbarzyƄska","Points":6965,"X":707,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760336Z"},{"ID":45332,"Name":"Wioska barbarzyƄska 4","Points":4529,"X":453,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760337Z"},{"ID":45333,"Name":"001 yuri09","Points":10160,"X":605,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760338Z"},{"ID":45334,"Name":"bucksbarzyƄskamiiiru","Points":10040,"X":328,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760338Z"},{"ID":45337,"Name":"C.020","Points":5007,"X":707,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760339Z"},{"ID":45338,"Name":"007","Points":10393,"X":295,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760339Z"},{"ID":45340,"Name":"KRÓL PAPI WIELKI","Points":7366,"X":649,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76034Z"},{"ID":45341,"Name":"!36 65 Horodnic de Jos","Points":9993,"X":653,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76034Z"},{"ID":45342,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":657,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760341Z"},{"ID":45343,"Name":"034","Points":9390,"X":673,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760341Z"},{"ID":45344,"Name":"068","Points":10495,"X":406,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760342Z"},{"ID":45345,"Name":"Osada koczownikĂłw","Points":9931,"X":383,"Y":332,"Continent":"K33","Bonus":2,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760342Z"},{"ID":45346,"Name":"!36 66 Varfu Deaulului","Points":9841,"X":664,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760343Z"},{"ID":45348,"Name":"Abu zabi","Points":8779,"X":514,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760343Z"},{"ID":45349,"Name":"###003###","Points":10495,"X":592,"Y":691,"Continent":"K65","Bonus":2,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760344Z"},{"ID":45350,"Name":"DĆŒejdĆŒej 1","Points":12154,"X":665,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760344Z"},{"ID":45351,"Name":"Ave Why!","Points":4003,"X":310,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760345Z"},{"ID":45352,"Name":"Hodges Gen.","Points":4902,"X":353,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760345Z"},{"ID":45353,"Name":"005","Points":10297,"X":712,"Y":499,"Continent":"K47","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760346Z"},{"ID":45354,"Name":"I110","Points":6503,"X":697,"Y":448,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760347Z"},{"ID":45355,"Name":"zajazd /3","Points":9351,"X":352,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760347Z"},{"ID":45356,"Name":"Wioska barbarzyƄska","Points":1921,"X":508,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760348Z"},{"ID":45357,"Name":"Wioska barbarzyƄska","Points":2927,"X":650,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760348Z"},{"ID":45358,"Name":"20.2PM","Points":7837,"X":686,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760349Z"},{"ID":45359,"Name":"C0346","Points":1553,"X":297,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760349Z"},{"ID":45360,"Name":"006","Points":4776,"X":308,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76035Z"},{"ID":45361,"Name":"Wioska barbarzyƄska","Points":2947,"X":655,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76035Z"},{"ID":45362,"Name":"Wioska barbarzyƄska","Points":9835,"X":361,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760351Z"},{"ID":45363,"Name":"0039","Points":2874,"X":477,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760351Z"},{"ID":45364,"Name":"018 telimena","Points":10160,"X":615,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760352Z"},{"ID":45365,"Name":"C060","Points":10236,"X":356,"Y":656,"Continent":"K63","Bonus":2,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760352Z"},{"ID":45366,"Name":"039","Points":5639,"X":652,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760353Z"},{"ID":45367,"Name":"091","Points":7633,"X":410,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760353Z"},{"ID":45368,"Name":"Dzik 10","Points":6477,"X":302,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760354Z"},{"ID":45369,"Name":"Wioska barbarzyƄska","Points":9531,"X":625,"Y":333,"Continent":"K36","Bonus":7,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760354Z"},{"ID":45370,"Name":"C0134","Points":9378,"X":298,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760355Z"},{"ID":45371,"Name":"Borcuchy","Points":5415,"X":565,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760355Z"},{"ID":45372,"Name":"9_Franekkimono510_9","Points":4268,"X":361,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760356Z"},{"ID":45373,"Name":"009 Kruszwica","Points":5167,"X":292,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760356Z"},{"ID":45374,"Name":"psycha sitting","Points":4331,"X":396,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760357Z"},{"ID":45375,"Name":"25 Wiocha 5.. ...","Points":9059,"X":303,"Y":437,"Continent":"K43","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760357Z"},{"ID":45376,"Name":"###096###","Points":10495,"X":586,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760358Z"},{"ID":45377,"Name":"C055","Points":10030,"X":365,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760358Z"},{"ID":45378,"Name":"Zielony2","Points":3478,"X":295,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":699876746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760359Z"},{"ID":45380,"Name":"Wioska barbarzyƄska","Points":9352,"X":358,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760359Z"},{"ID":45382,"Name":"Wioska barbarzyƄska","Points":7514,"X":705,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.76036Z"},{"ID":45383,"Name":"New World","Points":10291,"X":421,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760361Z"},{"ID":45384,"Name":"120","Points":9835,"X":417,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760361Z"},{"ID":45385,"Name":"WydziaƂ zamiejscowy 2","Points":5008,"X":301,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760362Z"},{"ID":45386,"Name":"bucksbarzyƄskamiiiru","Points":10171,"X":320,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760362Z"},{"ID":45387,"Name":"XDX","Points":10092,"X":609,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760363Z"},{"ID":45388,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":293,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760363Z"},{"ID":45389,"Name":"A000","Points":9685,"X":466,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760364Z"},{"ID":45390,"Name":"Obok myƛli","Points":10019,"X":691,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760364Z"},{"ID":45391,"Name":"Wiadro11","Points":6646,"X":673,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760365Z"},{"ID":45392,"Name":"Wioska Duszkowsky 005","Points":5712,"X":359,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":849101579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.760365Z"},{"ID":45393,"Name":"KRÓL PAPI WIELKI","Points":9365,"X":666,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793501Z"},{"ID":45394,"Name":"Wioska barbarzyƄska","Points":8588,"X":394,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793502Z"},{"ID":45396,"Name":"Z24","Points":9835,"X":311,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793502Z"},{"ID":45397,"Name":"Tzarski-02","Points":2489,"X":646,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":699783063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793503Z"},{"ID":45398,"Name":"Flowers","Points":2744,"X":696,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793503Z"},{"ID":45399,"Name":"2 RAMMSTEIN","Points":2393,"X":346,"Y":354,"Continent":"K33","Bonus":2,"PlayerID":6315553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793504Z"},{"ID":45400,"Name":"###039###","Points":10495,"X":596,"Y":684,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793505Z"},{"ID":45401,"Name":"03.SUJU","Points":8603,"X":689,"Y":417,"Continent":"K46","Bonus":1,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793505Z"},{"ID":45402,"Name":"EO EO","Points":8929,"X":291,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793506Z"},{"ID":45403,"Name":"###040###","Points":10495,"X":598,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793506Z"},{"ID":45404,"Name":"Wioska barbarzyƄska","Points":10476,"X":582,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793507Z"},{"ID":45405,"Name":"014","Points":9871,"X":716,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793507Z"},{"ID":45406,"Name":"#0303 LAROX","Points":9951,"X":458,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793508Z"},{"ID":45407,"Name":"Wioska barbarzyƄska","Points":4737,"X":337,"Y":370,"Continent":"K33","Bonus":5,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793508Z"},{"ID":45408,"Name":"Wioska X04","Points":2761,"X":298,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793509Z"},{"ID":45409,"Name":"044","Points":5394,"X":293,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79351Z"},{"ID":45410,"Name":"032","Points":5411,"X":300,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79351Z"},{"ID":45411,"Name":"Parking4","Points":5469,"X":619,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793511Z"},{"ID":45412,"Name":"!36 65 Voievodeasa","Points":9771,"X":656,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793511Z"},{"ID":45413,"Name":"Wioska barbarzyƄska","Points":10194,"X":633,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793512Z"},{"ID":45414,"Name":"XXX","Points":8720,"X":290,"Y":476,"Continent":"K42","Bonus":3,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793512Z"},{"ID":45415,"Name":"--048--","Points":1670,"X":564,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793513Z"},{"ID":45416,"Name":"Rakow","Points":5741,"X":298,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":8048374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793513Z"},{"ID":45417,"Name":"A03","Points":7497,"X":701,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793514Z"},{"ID":45418,"Name":"35 Paleocen","Points":4914,"X":396,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793515Z"},{"ID":45419,"Name":"670|374","Points":5018,"X":670,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793515Z"},{"ID":45420,"Name":"bucksbarzyƄskamiiiru","Points":9508,"X":316,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793516Z"},{"ID":45421,"Name":"#047","Points":10122,"X":506,"Y":635,"Continent":"K65","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793516Z"},{"ID":45422,"Name":"Wioska barbarzyƄska","Points":9685,"X":521,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793517Z"},{"ID":45423,"Name":"1.04","Points":9777,"X":436,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793517Z"},{"ID":45424,"Name":"144","Points":10495,"X":400,"Y":682,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793518Z"},{"ID":45425,"Name":"Avanti!","Points":6419,"X":292,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793518Z"},{"ID":45426,"Name":"C.029","Points":4338,"X":708,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793519Z"},{"ID":45427,"Name":"[0226]","Points":5958,"X":296,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79352Z"},{"ID":45428,"Name":"MojeDnoToWaszSzczyt","Points":9954,"X":507,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79352Z"},{"ID":45429,"Name":"S019","Points":3767,"X":689,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793521Z"},{"ID":45430,"Name":"068 - Nowy Początek...","Points":7839,"X":345,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793521Z"},{"ID":45431,"Name":"New World","Points":10290,"X":427,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793522Z"},{"ID":45432,"Name":"Wioska Mogok","Points":1450,"X":580,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793522Z"},{"ID":45433,"Name":"23. Cidaris","Points":7904,"X":702,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793523Z"},{"ID":45434,"Name":"Nic juĆŒ nie muszę","Points":8567,"X":701,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793523Z"},{"ID":45435,"Name":"157...E","Points":6398,"X":398,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793524Z"},{"ID":45436,"Name":"Wioska barbarzyƄska","Points":8097,"X":395,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793525Z"},{"ID":45437,"Name":"komandos","Points":8600,"X":633,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793525Z"},{"ID":45438,"Name":"0101","Points":5224,"X":676,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793526Z"},{"ID":45439,"Name":"Wioska barbarzyƄska","Points":4288,"X":564,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793526Z"},{"ID":45440,"Name":"047","Points":9779,"X":455,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793527Z"},{"ID":45441,"Name":"022. Ursus","Points":10237,"X":704,"Y":475,"Continent":"K47","Bonus":1,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793527Z"},{"ID":45442,"Name":"-009- ChwaƂa Imperium","Points":10019,"X":622,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793528Z"},{"ID":45443,"Name":"053.Stradi","Points":10495,"X":448,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793528Z"},{"ID":45444,"Name":"006","Points":6029,"X":394,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793529Z"},{"ID":45445,"Name":"06 Pali się moja Panno","Points":9965,"X":706,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79353Z"},{"ID":45446,"Name":"048. ALFI","Points":1460,"X":479,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79353Z"},{"ID":45447,"Name":"KONFA TO MARKA, NARKA","Points":7474,"X":298,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793531Z"},{"ID":45448,"Name":"Wioska X03","Points":3974,"X":297,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793531Z"},{"ID":45450,"Name":"Wioska barbarzyƄska","Points":1594,"X":302,"Y":446,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793532Z"},{"ID":45451,"Name":"044","Points":8739,"X":712,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793532Z"},{"ID":45453,"Name":"D016","Points":4226,"X":560,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793533Z"},{"ID":45454,"Name":"[0121]","Points":9678,"X":445,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793533Z"},{"ID":45455,"Name":"025 invidia","Points":10237,"X":520,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793534Z"},{"ID":45456,"Name":"Psycho to Marka, Narka !","Points":3110,"X":305,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793534Z"},{"ID":45457,"Name":"BĆșdziągwa","Points":9761,"X":556,"Y":706,"Continent":"K75","Bonus":4,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793535Z"},{"ID":45458,"Name":"0.04 Kazio i syndrom LEGII","Points":9462,"X":465,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793536Z"},{"ID":45459,"Name":"046. Night Raid","Points":3432,"X":485,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793536Z"},{"ID":45460,"Name":"_1_","Points":4358,"X":493,"Y":334,"Continent":"K34","Bonus":0,"PlayerID":9113064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793537Z"},{"ID":45461,"Name":"PóƂnocny Bagdad","Points":9835,"X":618,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793537Z"},{"ID":45462,"Name":"TWIERDZA .:001:.","Points":10120,"X":692,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793538Z"},{"ID":45463,"Name":"0051 181.01","Points":11130,"X":449,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793538Z"},{"ID":45464,"Name":"Dream on","Points":4319,"X":296,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793539Z"},{"ID":45465,"Name":"Siebie zapytasz","Points":10252,"X":692,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793539Z"},{"ID":45466,"Name":"[0158]","Points":8723,"X":446,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79354Z"},{"ID":45467,"Name":"New World","Points":9204,"X":428,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793541Z"},{"ID":45469,"Name":"psycha sitting","Points":9782,"X":411,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793541Z"},{"ID":45470,"Name":"C03","Points":5931,"X":706,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793542Z"},{"ID":45471,"Name":"003b","Points":4475,"X":304,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793542Z"},{"ID":45472,"Name":"13.TXT","Points":8572,"X":690,"Y":419,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793543Z"},{"ID":45473,"Name":"WB04","Points":5821,"X":309,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793543Z"},{"ID":45474,"Name":"Gattacka","Points":8020,"X":691,"Y":431,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793544Z"},{"ID":45475,"Name":"ZA05","Points":9835,"X":316,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793544Z"},{"ID":45476,"Name":"075.","Points":7368,"X":454,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793545Z"},{"ID":45477,"Name":"004c","Points":8646,"X":305,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793546Z"},{"ID":45478,"Name":"Wioska barbarzyƄska","Points":4908,"X":713,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793546Z"},{"ID":45479,"Name":"Wioska barbarzyƄska","Points":6367,"X":389,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793547Z"},{"ID":45480,"Name":"- 206 - SS","Points":7499,"X":545,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793547Z"},{"ID":45482,"Name":"#K66 0001","Points":9761,"X":610,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793548Z"},{"ID":45483,"Name":"012. 137dominik","Points":9495,"X":343,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793548Z"},{"ID":45484,"Name":"006","Points":4825,"X":699,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793549Z"},{"ID":45485,"Name":"C023","Points":9785,"X":372,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793549Z"},{"ID":45486,"Name":"0064","Points":7939,"X":368,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79355Z"},{"ID":45487,"Name":"Wioska barbarzyƄska","Points":9766,"X":372,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793551Z"},{"ID":45488,"Name":"G006","Points":10400,"X":507,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793551Z"},{"ID":45490,"Name":"Lech","Points":3178,"X":298,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":849095376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793552Z"},{"ID":45491,"Name":"Wioska barbarzyƄska","Points":2693,"X":338,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793552Z"},{"ID":45492,"Name":"0022","Points":8578,"X":321,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793553Z"},{"ID":45493,"Name":"Taran","Points":9843,"X":326,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793553Z"},{"ID":45494,"Name":"Wioska barbarzyƄska","Points":9635,"X":633,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793554Z"},{"ID":45495,"Name":"014 Narda","Points":10083,"X":684,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793554Z"},{"ID":45496,"Name":"024","Points":8745,"X":710,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793555Z"},{"ID":45497,"Name":"XDDD","Points":6868,"X":346,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793556Z"},{"ID":45498,"Name":"Wioska barbarzyƄska","Points":6142,"X":388,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793556Z"},{"ID":45499,"Name":"- 209 - SS","Points":7189,"X":558,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793557Z"},{"ID":45500,"Name":"012 .1. Infanterie-Division","Points":3026,"X":604,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793557Z"},{"ID":45501,"Name":"0083","Points":5280,"X":676,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793558Z"},{"ID":45502,"Name":"Kurnik","Points":8461,"X":478,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793558Z"},{"ID":45503,"Name":"Zaplecze Barba 015","Points":9132,"X":369,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793559Z"},{"ID":45504,"Name":"KONFA TO MARKA, NARKA","Points":2308,"X":294,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793559Z"},{"ID":45505,"Name":"Wioska barbarzyƄska","Points":6143,"X":393,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79356Z"},{"ID":45506,"Name":"058. +[Amarant]+","Points":10237,"X":703,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79356Z"},{"ID":45507,"Name":"Wioska barbarzyƄska","Points":10475,"X":589,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793561Z"},{"ID":45508,"Name":"Wioska barbarzyƄska","Points":4200,"X":316,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793562Z"},{"ID":45509,"Name":"001","Points":8653,"X":530,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793562Z"},{"ID":45510,"Name":"035","Points":10495,"X":672,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793563Z"},{"ID":45511,"Name":"Sernik z Andzynkami","Points":9607,"X":712,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793563Z"},{"ID":45512,"Name":"Wioska barbarzyƄska","Points":7219,"X":368,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793564Z"},{"ID":45513,"Name":"0320","Points":7527,"X":574,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793564Z"},{"ID":45514,"Name":"Kagusiowo 6","Points":5127,"X":304,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793565Z"},{"ID":45515,"Name":"KRÓL PAPI WIELKI","Points":7879,"X":711,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793565Z"},{"ID":45516,"Name":"Wioska dawszz3","Points":5838,"X":294,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":849094688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793566Z"},{"ID":45517,"Name":"015 - Nowy Początek...","Points":6612,"X":354,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793566Z"},{"ID":45518,"Name":"Elo Elo 18","Points":3164,"X":313,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793567Z"},{"ID":45519,"Name":"010 Heerenveen","Points":10654,"X":645,"Y":356,"Continent":"K36","Bonus":1,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793567Z"},{"ID":45520,"Name":"ZƂoty ƚwit","Points":9659,"X":572,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793568Z"},{"ID":45521,"Name":"Sernik z Andzynkami","Points":8082,"X":711,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793569Z"},{"ID":45522,"Name":"004","Points":9976,"X":296,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793569Z"},{"ID":45523,"Name":"Wioska barbarzyƄska","Points":7968,"X":539,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79357Z"},{"ID":45524,"Name":"115 invidia","Points":10401,"X":502,"Y":710,"Continent":"K75","Bonus":1,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79357Z"},{"ID":45525,"Name":"Dream on","Points":4490,"X":299,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793571Z"},{"ID":45526,"Name":"122 invidia","Points":9582,"X":504,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793571Z"},{"ID":45527,"Name":"###041###","Points":10495,"X":584,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793572Z"},{"ID":45528,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":298,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793572Z"},{"ID":45529,"Name":"XXXX","Points":10361,"X":562,"Y":300,"Continent":"K35","Bonus":8,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793573Z"},{"ID":45531,"Name":"Avanti!","Points":6198,"X":288,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793574Z"},{"ID":45532,"Name":"Wioska barbarzyƄska","Points":9066,"X":422,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793574Z"},{"ID":45533,"Name":"C006","Points":6529,"X":539,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793575Z"},{"ID":45534,"Name":"EO EO","Points":8863,"X":292,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793575Z"},{"ID":45535,"Name":"C.030","Points":4471,"X":711,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793576Z"},{"ID":45536,"Name":"036","Points":9611,"X":669,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793576Z"},{"ID":45537,"Name":"198...segador","Points":10787,"X":438,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793577Z"},{"ID":45538,"Name":"- 272 - SS","Points":5438,"X":550,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793578Z"},{"ID":45539,"Name":"aaaa","Points":9432,"X":388,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793578Z"},{"ID":45540,"Name":"New World","Points":9717,"X":436,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793579Z"},{"ID":45542,"Name":"PóƂnocny Bagdad","Points":9835,"X":618,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793579Z"},{"ID":45543,"Name":"O094","Points":9684,"X":334,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79358Z"},{"ID":45544,"Name":"3.C.","Points":8893,"X":452,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79358Z"},{"ID":45545,"Name":"04-oss","Points":10187,"X":674,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793581Z"},{"ID":45546,"Name":"MojeDnoToWaszSzczyt","Points":9961,"X":502,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793581Z"},{"ID":45547,"Name":"- 277 - SS","Points":10000,"X":553,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793582Z"},{"ID":45548,"Name":"BRICKLEBERRY","Points":10375,"X":511,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793582Z"},{"ID":45549,"Name":"FAKE OR OFF","Points":9812,"X":415,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793583Z"},{"ID":45550,"Name":"New World","Points":10297,"X":423,"Y":694,"Continent":"K64","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793584Z"},{"ID":45551,"Name":"boh81/50w","Points":7973,"X":298,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848889556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793584Z"},{"ID":45552,"Name":"D.030","Points":3531,"X":385,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793585Z"},{"ID":45553,"Name":"C009","Points":6421,"X":542,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793585Z"},{"ID":45554,"Name":"*INTERTWINED*","Points":6440,"X":512,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793586Z"},{"ID":45555,"Name":"C021","Points":9804,"X":365,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793586Z"},{"ID":45556,"Name":"#0222 Segadorr dar","Points":10178,"X":451,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793587Z"},{"ID":45557,"Name":"ZƂoty ƚwit","Points":7363,"X":577,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793587Z"},{"ID":45559,"Name":"###097###","Points":10495,"X":584,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793588Z"},{"ID":45560,"Name":"076 Volantis","Points":8059,"X":702,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793588Z"},{"ID":45561,"Name":"Wioska012","Points":5505,"X":686,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793589Z"},{"ID":45562,"Name":"Cisza","Points":2922,"X":300,"Y":539,"Continent":"K53","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79359Z"},{"ID":45563,"Name":"C0231","Points":6855,"X":294,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79359Z"},{"ID":45564,"Name":"37. Kufe 4","Points":2770,"X":706,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793591Z"},{"ID":45565,"Name":"PóƂnocny Bagdad","Points":10068,"X":619,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793591Z"},{"ID":45566,"Name":"#0307 sliwatojo","Points":2122,"X":465,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793592Z"},{"ID":45567,"Name":"o03","Points":9747,"X":609,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793592Z"},{"ID":45568,"Name":"Wioska barbarzyƄska","Points":2185,"X":395,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793593Z"},{"ID":45569,"Name":"C081","Points":9047,"X":360,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793593Z"},{"ID":45570,"Name":"Jaaa","Points":10266,"X":622,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793594Z"},{"ID":45572,"Name":"EO EO","Points":8280,"X":295,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793594Z"},{"ID":45575,"Name":"bucksbarzyƄskamiiiru","Points":9924,"X":322,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793595Z"},{"ID":45576,"Name":"##8","Points":5612,"X":349,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793596Z"},{"ID":45577,"Name":"C029","Points":6307,"X":367,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793596Z"},{"ID":45578,"Name":"asd","Points":10019,"X":621,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793597Z"},{"ID":45579,"Name":"Avanti!","Points":3141,"X":292,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793597Z"},{"ID":45580,"Name":"Wioska barbarzyƄska","Points":7844,"X":712,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793598Z"},{"ID":45581,"Name":"KRÓL PAPI WIELKI","Points":9884,"X":668,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793598Z"},{"ID":45582,"Name":"Na KraƄcu ƚwiata 017","Points":4010,"X":639,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793599Z"},{"ID":45583,"Name":"002","Points":6588,"X":589,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793599Z"},{"ID":45584,"Name":"[200]","Points":3184,"X":680,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7936Z"},{"ID":45585,"Name":"!36 56 Stulpicani","Points":7804,"X":658,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793601Z"},{"ID":45586,"Name":"XDX","Points":9259,"X":597,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793601Z"},{"ID":45587,"Name":"Kurnik","Points":11321,"X":507,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793602Z"},{"ID":45588,"Name":"bucksbarzyƄskamiiiru","Points":4391,"X":324,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793602Z"},{"ID":45589,"Name":"B014","Points":8561,"X":623,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793603Z"},{"ID":45590,"Name":"Wioska barbarzyƄska","Points":8833,"X":692,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793603Z"},{"ID":45591,"Name":"A#035","Points":9797,"X":710,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793604Z"},{"ID":45592,"Name":"Wioska barbarzyƄska","Points":2016,"X":331,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793604Z"},{"ID":45593,"Name":"C0223","Points":5637,"X":290,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793605Z"},{"ID":45594,"Name":"005","Points":7460,"X":393,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793605Z"},{"ID":45595,"Name":"FP031","Points":9325,"X":471,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793606Z"},{"ID":45596,"Name":"Dream on","Points":9534,"X":294,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793606Z"},{"ID":45597,"Name":"Bessa 010","Points":10218,"X":640,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793607Z"},{"ID":45598,"Name":"S02A","Points":4788,"X":604,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793608Z"},{"ID":45599,"Name":"Wioska barbarzyƄska","Points":2647,"X":708,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":8925695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793608Z"},{"ID":45600,"Name":"Tego typu!","Points":8063,"X":708,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793609Z"},{"ID":45601,"Name":"AAA","Points":7999,"X":543,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793609Z"},{"ID":45602,"Name":"31 Jura","Points":9699,"X":396,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79361Z"},{"ID":45603,"Name":"056- Mroczna Osada","Points":3451,"X":651,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79361Z"},{"ID":45604,"Name":"*022","Points":6550,"X":668,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793611Z"},{"ID":45605,"Name":"KRÓL PAPI WIELKI","Points":9369,"X":667,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793611Z"},{"ID":45606,"Name":"0067","Points":6533,"X":366,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793612Z"},{"ID":45607,"Name":"!36 65 Bucsoaia","Points":9695,"X":659,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793612Z"},{"ID":45608,"Name":"Winterfell.018","Points":10178,"X":446,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793613Z"},{"ID":45609,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":298,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793613Z"},{"ID":45610,"Name":"011","Points":10495,"X":407,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793614Z"},{"ID":45611,"Name":"032 Wioska barbarzyƄska","Points":10160,"X":604,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793614Z"},{"ID":45613,"Name":"=0016=","Points":9207,"X":405,"Y":319,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793615Z"},{"ID":45614,"Name":"Lord Arsey KING","Points":8608,"X":658,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793616Z"},{"ID":45615,"Name":"klops33","Points":10242,"X":625,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793616Z"},{"ID":45616,"Name":"XDX","Points":10290,"X":609,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793617Z"},{"ID":45617,"Name":"025.","Points":4215,"X":628,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793617Z"},{"ID":45619,"Name":"Wioska barbarzyƄska","Points":9409,"X":423,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793618Z"},{"ID":45620,"Name":"AAA","Points":9846,"X":550,"Y":294,"Continent":"K25","Bonus":3,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793618Z"},{"ID":45622,"Name":"273...gulden","Points":4693,"X":462,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793619Z"},{"ID":45623,"Name":"komandos","Points":10238,"X":639,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793619Z"},{"ID":45624,"Name":"MojeDnoToWaszSzczyt","Points":9962,"X":496,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79362Z"},{"ID":45625,"Name":"MojeDnoToWaszSzczyt","Points":9845,"X":510,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79362Z"},{"ID":45626,"Name":"S001","Points":9825,"X":683,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793621Z"},{"ID":45627,"Name":"Ryan - Problem","Points":1472,"X":650,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":1106220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793621Z"},{"ID":45628,"Name":"35. Kufe 2","Points":5800,"X":704,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793622Z"},{"ID":45629,"Name":"DĆŒejdĆŒej 2","Points":9577,"X":665,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793622Z"},{"ID":45630,"Name":"069","Points":10495,"X":406,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793623Z"},{"ID":45631,"Name":"022Szyja","Points":9761,"X":469,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793623Z"},{"ID":45632,"Name":"Kurnik","Points":9593,"X":476,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793624Z"},{"ID":45633,"Name":"FP011","Points":10105,"X":475,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793625Z"},{"ID":45634,"Name":"0062 ~22~","Points":8230,"X":439,"Y":438,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793625Z"},{"ID":45635,"Name":"41 HoƂopole","Points":3747,"X":704,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793626Z"},{"ID":45636,"Name":"SoƂtys Wsi WojTool","Points":9751,"X":361,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793626Z"},{"ID":45637,"Name":"0033 Kasko14","Points":10229,"X":449,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793627Z"},{"ID":45638,"Name":"Zzzz - Kasztelania 004","Points":4458,"X":642,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793627Z"},{"ID":45639,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":298,"Y":448,"Continent":"K42","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793628Z"},{"ID":45640,"Name":"Bessa 012","Points":10223,"X":641,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793628Z"},{"ID":45641,"Name":"45. Rowan","Points":3241,"X":709,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793629Z"},{"ID":45642,"Name":"MojeDnoToWaszSzczyt","Points":9764,"X":498,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793629Z"},{"ID":45643,"Name":"EO EO","Points":10362,"X":289,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79363Z"},{"ID":45644,"Name":"204","Points":6791,"X":366,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79363Z"},{"ID":45645,"Name":"Osada 2","Points":10019,"X":694,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793631Z"},{"ID":45646,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9378,"X":495,"Y":707,"Continent":"K74","Bonus":2,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793631Z"},{"ID":45647,"Name":"Wioska barbarzyƄska","Points":7368,"X":568,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793632Z"},{"ID":45648,"Name":"C.031","Points":4686,"X":709,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793633Z"},{"ID":45649,"Name":"CiemnogrĂłd #3","Points":8850,"X":337,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793633Z"},{"ID":45650,"Name":"C0216","Points":7942,"X":297,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793634Z"},{"ID":45651,"Name":"008","Points":9201,"X":385,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793634Z"},{"ID":45652,"Name":"0058 181.11","Points":5130,"X":447,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793635Z"},{"ID":45654,"Name":"004a","Points":5230,"X":303,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793635Z"},{"ID":45655,"Name":"012 Gilead","Points":10495,"X":662,"Y":640,"Continent":"K66","Bonus":8,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793636Z"},{"ID":45656,"Name":"Ave Why!","Points":8264,"X":309,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793636Z"},{"ID":45657,"Name":"komandos .....00","Points":9925,"X":632,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793637Z"},{"ID":45658,"Name":"KRÓL PAPI WIELKI","Points":7003,"X":646,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793637Z"},{"ID":45660,"Name":"045 invidia","Points":9733,"X":521,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793638Z"},{"ID":45661,"Name":"KRÓL PAPI WIELKI","Points":6318,"X":651,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793638Z"},{"ID":45662,"Name":"New WorldA","Points":5772,"X":288,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793639Z"},{"ID":45663,"Name":"005","Points":5988,"X":300,"Y":549,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793639Z"},{"ID":45664,"Name":"New World","Points":9320,"X":418,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79364Z"},{"ID":45665,"Name":"###042###","Points":10495,"X":585,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79364Z"},{"ID":45666,"Name":"Wioska barbarzyƄska","Points":10242,"X":622,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793641Z"},{"ID":45667,"Name":"C.013","Points":10000,"X":698,"Y":492,"Continent":"K46","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793642Z"},{"ID":45668,"Name":"=024= Szlachta","Points":10580,"X":705,"Y":572,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793642Z"},{"ID":45669,"Name":"Angella xxx","Points":2725,"X":654,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793643Z"},{"ID":45670,"Name":"Yogi","Points":5848,"X":514,"Y":545,"Continent":"K55","Bonus":0,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793643Z"},{"ID":45671,"Name":"Wioska 003","Points":2005,"X":644,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793644Z"},{"ID":45673,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":295,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793644Z"},{"ID":45674,"Name":"010","Points":9835,"X":293,"Y":541,"Continent":"K52","Bonus":3,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793645Z"},{"ID":45676,"Name":"S014","Points":6607,"X":686,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793645Z"},{"ID":45677,"Name":"A#018","Points":9797,"X":713,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793646Z"},{"ID":45678,"Name":"Cisza","Points":5948,"X":294,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793646Z"},{"ID":45679,"Name":"023","Points":8985,"X":305,"Y":560,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793647Z"},{"ID":45680,"Name":"PóƂnocny Bagdad","Points":10068,"X":612,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793647Z"},{"ID":45681,"Name":"Początek","Points":4299,"X":302,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793648Z"},{"ID":45682,"Name":"New Land 03","Points":4936,"X":329,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793649Z"},{"ID":45683,"Name":"008 szymaan","Points":10160,"X":604,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793649Z"},{"ID":45684,"Name":"30. Tolkiny","Points":5219,"X":713,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79365Z"},{"ID":45686,"Name":"Szlachcic","Points":6986,"X":363,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79365Z"},{"ID":45687,"Name":"058...barbarka","Points":10495,"X":434,"Y":303,"Continent":"K34","Bonus":3,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793651Z"},{"ID":45689,"Name":"PóƂnocny Bagdad","Points":9976,"X":618,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793651Z"},{"ID":45690,"Name":"C063","Points":10216,"X":359,"Y":651,"Continent":"K63","Bonus":9,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793652Z"},{"ID":45691,"Name":"Wioska barbarzyƄska","Points":5982,"X":711,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793652Z"},{"ID":45692,"Name":"010 Edek6969","Points":10160,"X":609,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793653Z"},{"ID":45693,"Name":"ObrzeĆŒe","Points":8817,"X":583,"Y":693,"Continent":"K65","Bonus":9,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793653Z"},{"ID":45694,"Name":"HAPERT","Points":9434,"X":627,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793654Z"},{"ID":45695,"Name":"Szlachcic","Points":6861,"X":364,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793654Z"},{"ID":45697,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":493,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793655Z"},{"ID":45698,"Name":"New World","Points":10292,"X":430,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793655Z"},{"ID":45699,"Name":"Z08","Points":9835,"X":316,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793656Z"},{"ID":45700,"Name":"Winterfell.007","Points":10178,"X":446,"Y":298,"Continent":"K24","Bonus":2,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793656Z"},{"ID":45701,"Name":"09-oss","Points":8168,"X":671,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793657Z"},{"ID":45703,"Name":"...","Points":5622,"X":338,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793657Z"},{"ID":45704,"Name":"SoƂtys wsi XTOskar","Points":9361,"X":358,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793658Z"},{"ID":45706,"Name":"002:Wioska MFJZZ","Points":10160,"X":375,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793659Z"},{"ID":45707,"Name":"###043###","Points":10495,"X":588,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793659Z"},{"ID":45708,"Name":"Początek","Points":9955,"X":312,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79366Z"},{"ID":45709,"Name":"Wioska barbarzyƄska 004","Points":8636,"X":562,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79366Z"},{"ID":45711,"Name":"066","Points":10495,"X":408,"Y":685,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793661Z"},{"ID":45712,"Name":"New World","Points":10292,"X":427,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793661Z"},{"ID":45713,"Name":"XXXX","Points":10068,"X":566,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793662Z"},{"ID":45715,"Name":"C0217","Points":9571,"X":297,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793662Z"},{"ID":45716,"Name":"AAA","Points":8475,"X":551,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793663Z"},{"ID":45717,"Name":"Taran","Points":9959,"X":325,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793663Z"},{"ID":45718,"Name":"5 QUEEN","Points":2361,"X":345,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":6315553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793664Z"},{"ID":45719,"Name":"Criminal","Points":6477,"X":700,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793664Z"},{"ID":45720,"Name":"XDX","Points":9957,"X":600,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793665Z"},{"ID":45721,"Name":"055.Stradi","Points":10495,"X":435,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793666Z"},{"ID":45722,"Name":"BRICKLEBERRY","Points":10311,"X":552,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793666Z"},{"ID":45723,"Name":"109","Points":9841,"X":413,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793667Z"},{"ID":45724,"Name":"[D]_[004] Dejv.oldplyr","Points":7902,"X":289,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793667Z"},{"ID":45725,"Name":"Wioska 084","Points":8773,"X":675,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793668Z"},{"ID":45726,"Name":"AAA","Points":9347,"X":540,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793668Z"},{"ID":45727,"Name":"029 Wioska barbarzyƄska","Points":9401,"X":601,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793669Z"},{"ID":45728,"Name":"0092","Points":8615,"X":678,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793669Z"},{"ID":45729,"Name":"ZA14","Points":9612,"X":318,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79367Z"},{"ID":45730,"Name":"204...segador","Points":10654,"X":444,"Y":295,"Continent":"K24","Bonus":5,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79367Z"},{"ID":45732,"Name":"Wioska barbarzyƄska","Points":1542,"X":649,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793671Z"},{"ID":45733,"Name":"009. Kusy","Points":9825,"X":348,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793671Z"},{"ID":45734,"Name":"C052","Points":7679,"X":378,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793672Z"},{"ID":45735,"Name":"=073= Na wschodzie Zima","Points":10580,"X":708,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793672Z"},{"ID":45736,"Name":"###044###","Points":10495,"X":597,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793673Z"},{"ID":45737,"Name":"Wioska barbarzyƄska","Points":8465,"X":704,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793673Z"},{"ID":45738,"Name":"Wioska barbarzyƄska","Points":6274,"X":624,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793674Z"},{"ID":45740,"Name":"Wioska barbarzyƄska","Points":4743,"X":695,"Y":559,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793674Z"},{"ID":45741,"Name":"0020","Points":10495,"X":515,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793675Z"},{"ID":45742,"Name":"040. IczyƄska Sopka","Points":7621,"X":702,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793675Z"},{"ID":45743,"Name":"Wioska barbarzyƄska","Points":5247,"X":317,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793676Z"},{"ID":45744,"Name":"Wioska barbarzyƄska","Points":6142,"X":538,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793677Z"},{"ID":45745,"Name":"Taran","Points":9976,"X":326,"Y":623,"Continent":"K63","Bonus":3,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793677Z"},{"ID":45746,"Name":"[0182]","Points":7751,"X":288,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793678Z"},{"ID":45747,"Name":"wioska","Points":12154,"X":631,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793678Z"},{"ID":45748,"Name":"komandos","Points":8556,"X":632,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793679Z"},{"ID":45749,"Name":"017","Points":9033,"X":529,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793679Z"},{"ID":45750,"Name":"bucksbarzyƄskamiiiru","Points":4695,"X":335,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79368Z"},{"ID":45752,"Name":"Wioska barbarzyƄska","Points":9779,"X":671,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79368Z"},{"ID":45753,"Name":"0029","Points":2602,"X":323,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793681Z"},{"ID":45754,"Name":"Wioska barbarzyƄska","Points":8557,"X":559,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793681Z"},{"ID":45755,"Name":"007","Points":7909,"X":648,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793682Z"},{"ID":45756,"Name":"[0114]","Points":10078,"X":440,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793683Z"},{"ID":45757,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":295,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793683Z"},{"ID":45758,"Name":"0017","Points":9778,"X":500,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793684Z"},{"ID":45760,"Name":"????","Points":7227,"X":469,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793684Z"},{"ID":45762,"Name":"*INTERTWINED*","Points":9520,"X":511,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793685Z"},{"ID":45763,"Name":"Wiadro06","Points":8273,"X":670,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793685Z"},{"ID":45764,"Name":"#K75 0001","Points":9761,"X":520,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793686Z"},{"ID":45765,"Name":"005","Points":9679,"X":295,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793686Z"},{"ID":45766,"Name":"Wow13","Points":4421,"X":359,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793687Z"},{"ID":45767,"Name":"0047 village","Points":10490,"X":438,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793687Z"},{"ID":45768,"Name":"017","Points":5650,"X":648,"Y":348,"Continent":"K36","Bonus":7,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793688Z"},{"ID":45769,"Name":"009 - Nowy Początek...","Points":10375,"X":358,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793688Z"},{"ID":45770,"Name":"014 Angers","Points":10534,"X":612,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793689Z"},{"ID":45771,"Name":"Wioska barbarzyƄska","Points":10291,"X":580,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793689Z"},{"ID":45772,"Name":"Gomora","Points":8932,"X":418,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79369Z"},{"ID":45774,"Name":"Wioska barbarzyƄska","Points":6515,"X":631,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79369Z"},{"ID":45775,"Name":"Wioska barbarzyƄska","Points":7853,"X":376,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793691Z"},{"ID":45776,"Name":"Wioska barbarzyƄska","Points":2556,"X":333,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793691Z"},{"ID":45777,"Name":"001. GĂłrki Wielkie","Points":10845,"X":653,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793692Z"},{"ID":45778,"Name":"037","Points":7639,"X":674,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793693Z"},{"ID":45779,"Name":"049 sebaseba1991","Points":10160,"X":619,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793693Z"},{"ID":45780,"Name":"New WorldA","Points":8547,"X":294,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793694Z"},{"ID":45781,"Name":"010. Wioska barbarzyƄska","Points":9806,"X":342,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793694Z"},{"ID":45782,"Name":"Wioska barbarzyƄska 3","Points":9733,"X":307,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793695Z"},{"ID":45783,"Name":"Wioska barbarzyƄska","Points":7355,"X":710,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793695Z"},{"ID":45784,"Name":"Verka","Points":7161,"X":626,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849061374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793696Z"},{"ID":45785,"Name":"005","Points":2660,"X":593,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793696Z"},{"ID":45786,"Name":"Wioska barbarzyƄska","Points":2658,"X":686,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793697Z"},{"ID":45787,"Name":"C.002","Points":10000,"X":704,"Y":494,"Continent":"K47","Bonus":6,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793697Z"},{"ID":45788,"Name":"Wioska barbarzyƄska","Points":8853,"X":537,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793698Z"},{"ID":45789,"Name":"017. Pomodoro e basilico","Points":4715,"X":330,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793698Z"},{"ID":45790,"Name":"211","Points":5975,"X":431,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793699Z"},{"ID":45791,"Name":"PiekƂo to inni","Points":4474,"X":638,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793699Z"},{"ID":45792,"Name":"MojeDnoToWaszSzczyt","Points":9962,"X":503,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7937Z"},{"ID":45793,"Name":"New World","Points":10294,"X":421,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7937Z"},{"ID":45794,"Name":"047 Austria","Points":10495,"X":577,"Y":465,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793701Z"},{"ID":45795,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793701Z"},{"ID":45796,"Name":"007. Stories","Points":9788,"X":712,"Y":508,"Continent":"K57","Bonus":3,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793702Z"},{"ID":45798,"Name":"C0342","Points":2439,"X":295,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793702Z"},{"ID":45799,"Name":"014","Points":2895,"X":391,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793703Z"},{"ID":45800,"Name":"Wioska barbarzyƄska","Points":8097,"X":553,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793704Z"},{"ID":45801,"Name":"MojeDnoToWaszSzczyt","Points":9964,"X":505,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793704Z"},{"ID":45802,"Name":"C0244","Points":4700,"X":293,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793705Z"},{"ID":45803,"Name":"asd","Points":8576,"X":622,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793705Z"},{"ID":45804,"Name":"=115= Albany","Points":7021,"X":700,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793706Z"},{"ID":45805,"Name":"Wioska barbarzyƄska","Points":5469,"X":573,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793706Z"},{"ID":45806,"Name":"- 273 - SS","Points":6756,"X":553,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793707Z"},{"ID":45807,"Name":"O041","Points":10068,"X":334,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793707Z"},{"ID":45808,"Name":"Wioska barbarzyƄska","Points":9843,"X":636,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793708Z"},{"ID":45809,"Name":"Wioska barbarzyƄska","Points":4310,"X":618,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793708Z"},{"ID":45810,"Name":"###098###","Points":10495,"X":580,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793709Z"},{"ID":45811,"Name":"D008","Points":9714,"X":353,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793709Z"},{"ID":45812,"Name":"O122","Points":9824,"X":332,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79371Z"},{"ID":45813,"Name":"Osada 4","Points":9560,"X":699,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793711Z"},{"ID":45814,"Name":"Didi","Points":10141,"X":682,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793711Z"},{"ID":45815,"Name":"Wioska barbarzyƄska","Points":1362,"X":689,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793712Z"},{"ID":45816,"Name":"Wioska barbarzyƄska","Points":8368,"X":518,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793712Z"},{"ID":45817,"Name":"Wioska barbarzyƄska","Points":7155,"X":709,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793713Z"},{"ID":45818,"Name":"Wioska barbarzyƄska","Points":2779,"X":336,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793713Z"},{"ID":45820,"Name":"059","Points":7865,"X":714,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793714Z"},{"ID":45821,"Name":"Wioska barbarzyƄska","Points":3537,"X":384,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793714Z"},{"ID":45822,"Name":"Wioska barbarzyƄska","Points":8172,"X":376,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793715Z"},{"ID":45823,"Name":"Wioska barbarzyƄska","Points":9835,"X":362,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793715Z"},{"ID":45824,"Name":"###045###","Points":10495,"X":599,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793716Z"},{"ID":45825,"Name":"015. Wioska barbarzyƄska","Points":8086,"X":345,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793716Z"},{"ID":45826,"Name":"KATTEGARD","Points":5189,"X":494,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793717Z"},{"ID":45827,"Name":"237","Points":2799,"X":405,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793717Z"},{"ID":45828,"Name":"[0266]","Points":5573,"X":290,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793718Z"},{"ID":45829,"Name":"Wioska barbarzyƄska","Points":8742,"X":708,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793718Z"},{"ID":45830,"Name":"Elo Elo 14","Points":5992,"X":313,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793719Z"},{"ID":45831,"Name":"023.Stradi","Points":10495,"X":434,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79372Z"},{"ID":45832,"Name":"A#009","Points":9797,"X":712,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79372Z"},{"ID":45833,"Name":"Bytom","Points":8753,"X":487,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793721Z"},{"ID":45834,"Name":"[0227]","Points":4631,"X":289,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793721Z"},{"ID":45836,"Name":"041","Points":1754,"X":305,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":926823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793722Z"},{"ID":45837,"Name":"NBT 2","Points":6665,"X":593,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793722Z"},{"ID":45838,"Name":"C084","Points":9907,"X":358,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793723Z"},{"ID":45839,"Name":"C.021","Points":4678,"X":709,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793723Z"},{"ID":45840,"Name":"Wioska barbarzyƄska","Points":9982,"X":576,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793724Z"},{"ID":45841,"Name":"WiedĆșma - Z 011","Points":3233,"X":303,"Y":434,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793724Z"},{"ID":45842,"Name":"014. Changtse","Points":10495,"X":707,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793725Z"},{"ID":45844,"Name":"WydziaƂ zamiejscowy","Points":7658,"X":300,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793725Z"},{"ID":45846,"Name":"Z25","Points":9835,"X":311,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793726Z"},{"ID":45847,"Name":"Taran","Points":10728,"X":684,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793726Z"},{"ID":45848,"Name":".achim.","Points":6156,"X":482,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793727Z"},{"ID":45849,"Name":"04. Konstantynopol","Points":10481,"X":710,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793727Z"},{"ID":45850,"Name":"007","Points":4429,"X":304,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793728Z"},{"ID":45851,"Name":"Wioska barbarzyƄska","Points":3159,"X":593,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793728Z"},{"ID":45852,"Name":"Ć»UBEREK 019 Dawaj grube majster!","Points":10585,"X":608,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793729Z"},{"ID":45853,"Name":"018","Points":8531,"X":656,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793729Z"},{"ID":45854,"Name":"OrzeƂ WylądowaƂ","Points":6867,"X":455,"Y":657,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79373Z"},{"ID":45855,"Name":"kto ananasowy pod wodą ma dom","Points":9938,"X":708,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793731Z"},{"ID":45856,"Name":"54 nie barbarzyƄska","Points":4931,"X":296,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793731Z"},{"ID":45857,"Name":"005","Points":4229,"X":591,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793732Z"},{"ID":45860,"Name":"EO EO","Points":8281,"X":294,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793732Z"},{"ID":45861,"Name":"Winterfell.009","Points":10178,"X":454,"Y":299,"Continent":"K24","Bonus":3,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793733Z"},{"ID":45863,"Name":"0020","Points":5106,"X":394,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793733Z"},{"ID":45864,"Name":"001 IIIIIIIIIIIII","Points":9885,"X":394,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793734Z"},{"ID":45865,"Name":"Koziarowo 4","Points":8619,"X":505,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":849100228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793734Z"},{"ID":45867,"Name":"Angella xx","Points":2330,"X":653,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793735Z"},{"ID":45868,"Name":"271...emerson","Points":6849,"X":461,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793735Z"},{"ID":45869,"Name":"Taran","Points":8713,"X":327,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793736Z"},{"ID":45871,"Name":"Monte Christo","Points":7368,"X":703,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793736Z"},{"ID":45872,"Name":"Z15","Points":9835,"X":315,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793737Z"},{"ID":45873,"Name":"Wioska WITWIC","Points":9965,"X":696,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793737Z"},{"ID":45874,"Name":"Początek","Points":10040,"X":308,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793738Z"},{"ID":45875,"Name":"WiedĆșma - Z 010","Points":2255,"X":299,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793738Z"},{"ID":45876,"Name":"043.","Points":10426,"X":450,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793739Z"},{"ID":45877,"Name":"[0183]","Points":8486,"X":287,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79374Z"},{"ID":45878,"Name":"Dzik 14","Points":3670,"X":300,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79374Z"},{"ID":45880,"Name":"079","Points":8886,"X":412,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793741Z"},{"ID":45882,"Name":"Wioska","Points":6105,"X":385,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":2268889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793741Z"},{"ID":45884,"Name":"006","Points":3843,"X":594,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793742Z"},{"ID":45885,"Name":"027Porządki","Points":6090,"X":463,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793742Z"},{"ID":45886,"Name":"Kurnik","Points":10137,"X":483,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793743Z"},{"ID":45887,"Name":"O014","Points":9956,"X":337,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793743Z"},{"ID":45888,"Name":"###014###","Points":10495,"X":600,"Y":682,"Continent":"K66","Bonus":9,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793744Z"},{"ID":45890,"Name":"Jednak wolę gofry","Points":9624,"X":464,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793744Z"},{"ID":45891,"Name":"KRÓL PAPI WIELKI","Points":9621,"X":644,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793745Z"},{"ID":45892,"Name":"krytl19","Points":7326,"X":511,"Y":317,"Continent":"K35","Bonus":0,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793745Z"},{"ID":45893,"Name":"KONFA TO MARKA, NARKA","Points":7608,"X":295,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793746Z"},{"ID":45894,"Name":"007a","Points":5273,"X":304,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793746Z"},{"ID":45895,"Name":"Z21","Points":9835,"X":317,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793747Z"},{"ID":45896,"Name":"Wioska barbarzyƄska","Points":4788,"X":689,"Y":422,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793747Z"},{"ID":45897,"Name":"#043","Points":4480,"X":549,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793748Z"},{"ID":45898,"Name":"051","Points":6608,"X":712,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793748Z"},{"ID":45899,"Name":"C08","Points":6060,"X":705,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793749Z"},{"ID":45901,"Name":"Wioska barbarzyƄska","Points":4015,"X":671,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":1049851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793749Z"},{"ID":45902,"Name":"014","Points":3251,"X":389,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79375Z"},{"ID":45903,"Name":"Wioska barbarzyƄska","Points":4633,"X":560,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793751Z"},{"ID":45904,"Name":"Na SsSskraju","Points":9170,"X":299,"Y":557,"Continent":"K52","Bonus":6,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793751Z"},{"ID":45905,"Name":"Wioska barbarzyƄska","Points":7671,"X":374,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793752Z"},{"ID":45906,"Name":"sebastianxxx19","Points":10319,"X":623,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793752Z"},{"ID":45907,"Name":"0031","Points":2535,"X":322,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793753Z"},{"ID":45908,"Name":"026.","Points":4282,"X":622,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793753Z"},{"ID":45909,"Name":"Wioska barbarzyƄska11","Points":2221,"X":291,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":698879638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793754Z"},{"ID":45910,"Name":"bucksbarzyƄskamiiiru","Points":8965,"X":319,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793754Z"},{"ID":45911,"Name":"B008","Points":9974,"X":626,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793755Z"},{"ID":45912,"Name":"Wioska barbarzyƄska","Points":2781,"X":650,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793755Z"},{"ID":45913,"Name":"10.BTOB","Points":8657,"X":692,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793756Z"},{"ID":45914,"Name":"021","Points":9835,"X":302,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793756Z"},{"ID":45915,"Name":"Wioska barbarzyƄska","Points":5596,"X":517,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793757Z"},{"ID":45916,"Name":"C.022","Points":5199,"X":710,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793757Z"},{"ID":45917,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":6999,"X":487,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793758Z"},{"ID":45918,"Name":"Blob","Points":8684,"X":551,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793758Z"},{"ID":45919,"Name":"Wioska barbarzyƄska","Points":9915,"X":381,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793759Z"},{"ID":45920,"Name":"59 Goƛć1","Points":8292,"X":295,"Y":475,"Continent":"K42","Bonus":2,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793759Z"},{"ID":45921,"Name":"Wioska Staszek M","Points":5401,"X":568,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79376Z"},{"ID":45922,"Name":"- 207 - SS","Points":7644,"X":544,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79376Z"},{"ID":45923,"Name":"048. Jastrzębia Turnia","Points":7721,"X":700,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793761Z"},{"ID":45924,"Name":"*W000","Points":9377,"X":663,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793761Z"},{"ID":45925,"Name":"Melon3","Points":3882,"X":308,"Y":429,"Continent":"K43","Bonus":0,"PlayerID":699659708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793762Z"},{"ID":45926,"Name":"Wioska barbarzyƄska","Points":10237,"X":642,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793762Z"},{"ID":45927,"Name":"Tzarski - o3","Points":5202,"X":646,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":699783063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793763Z"},{"ID":45928,"Name":"=077= BORSUCZEK","Points":9211,"X":699,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793763Z"},{"ID":45929,"Name":".achim.","Points":9549,"X":479,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793764Z"},{"ID":45930,"Name":"013 telimena","Points":10160,"X":615,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793765Z"},{"ID":45931,"Name":"Wioska barbarzyƄska","Points":8088,"X":397,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793765Z"},{"ID":45932,"Name":"Nie Teraz","Points":8328,"X":710,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793766Z"},{"ID":45933,"Name":"Wioska barbarzyƄska","Points":9908,"X":579,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793766Z"},{"ID":45935,"Name":"Wulfenit","Points":10222,"X":704,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793767Z"},{"ID":45936,"Name":"018","Points":4061,"X":293,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793767Z"},{"ID":45937,"Name":"012","Points":10040,"X":699,"Y":468,"Continent":"K46","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793768Z"},{"ID":45938,"Name":"064- Mroczna Osada","Points":2449,"X":654,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793768Z"},{"ID":45941,"Name":"C11","Points":4653,"X":702,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793769Z"},{"ID":45942,"Name":"Czekaj, chwila!","Points":6484,"X":688,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793769Z"},{"ID":45943,"Name":"C0214","Points":8849,"X":292,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79377Z"},{"ID":45944,"Name":"=088= Wioska barbarzyƄska","Points":9357,"X":703,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79377Z"},{"ID":45945,"Name":".achim.","Points":8611,"X":481,"Y":287,"Continent":"K24","Bonus":3,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793771Z"},{"ID":45946,"Name":"B#023","Points":9797,"X":703,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793771Z"},{"ID":45947,"Name":"Wioska barbarzyƄska","Points":2979,"X":652,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793772Z"},{"ID":45948,"Name":"[201]","Points":4000,"X":678,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793772Z"},{"ID":45949,"Name":"Wioska barbarzyƄska","Points":6054,"X":696,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":6929240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793773Z"},{"ID":45950,"Name":"Wioska barbarzyƄska","Points":3552,"X":303,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793773Z"},{"ID":45951,"Name":"071- Mroczna Osada","Points":2386,"X":621,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793774Z"},{"ID":45952,"Name":"B#006","Points":9797,"X":700,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793774Z"},{"ID":45953,"Name":"Wioska barbarzyƄska","Points":2032,"X":598,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793775Z"},{"ID":45954,"Name":"MojeDnoToWaszSzczyt","Points":9980,"X":495,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793776Z"},{"ID":45955,"Name":"Wioska G","Points":3152,"X":541,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793776Z"},{"ID":45956,"Name":"Wioska barbarzyƄska","Points":4949,"X":504,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793777Z"},{"ID":45958,"Name":"New World","Points":10295,"X":420,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793777Z"},{"ID":45959,"Name":"Początek","Points":9648,"X":307,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793778Z"},{"ID":45960,"Name":"0057 181.04","Points":5016,"X":449,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793778Z"},{"ID":45962,"Name":"C116","Points":9549,"X":360,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793779Z"},{"ID":45963,"Name":"202","Points":9564,"X":368,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793779Z"},{"ID":45964,"Name":"153","Points":10495,"X":399,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79378Z"},{"ID":45965,"Name":"206...segador","Points":10744,"X":454,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79378Z"},{"ID":45966,"Name":"Jednak wolę gofry","Points":6328,"X":425,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793781Z"},{"ID":45967,"Name":"007b","Points":5743,"X":303,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793781Z"},{"ID":45968,"Name":"pozew","Points":2225,"X":703,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":1895081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793782Z"},{"ID":45969,"Name":"005 VLV","Points":9181,"X":560,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":849100656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793782Z"},{"ID":45970,"Name":"C077","Points":4334,"X":359,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793783Z"},{"ID":45971,"Name":"A#023","Points":9797,"X":711,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793783Z"},{"ID":45972,"Name":"4 KORN","Points":2931,"X":345,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":6315553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793784Z"},{"ID":45973,"Name":"Wioska barbarzyƄska","Points":2519,"X":631,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793784Z"},{"ID":45974,"Name":"030. GƂowa Cukru","Points":8194,"X":708,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793785Z"},{"ID":45975,"Name":"Horyzont zdarzeƄ","Points":10019,"X":517,"Y":551,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793785Z"},{"ID":45976,"Name":"Wioska przembarca20","Points":8120,"X":286,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":9148439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793786Z"},{"ID":45977,"Name":"Joanna","Points":9441,"X":526,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793787Z"},{"ID":45978,"Name":"Wioska barbarzyƄska","Points":9137,"X":379,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793787Z"},{"ID":45979,"Name":"SoƂtys Wsi Maciekp011","Points":9553,"X":353,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793788Z"},{"ID":45980,"Name":"bucksbarzyƄskamiiiru","Points":6847,"X":317,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793788Z"},{"ID":45981,"Name":"C0221","Points":5927,"X":291,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793789Z"},{"ID":45982,"Name":"0069 Wioska barbarzyƄska","Points":8513,"X":446,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793789Z"},{"ID":45983,"Name":"*225*","Points":10211,"X":333,"Y":382,"Continent":"K33","Bonus":4,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79379Z"},{"ID":45984,"Name":"Wioska barbarzyƄska","Points":9365,"X":695,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79379Z"},{"ID":45986,"Name":"C065","Points":10194,"X":359,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793791Z"},{"ID":45987,"Name":"232","Points":4521,"X":422,"Y":330,"Continent":"K34","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793791Z"},{"ID":45988,"Name":"017. Wioska barbarzyƄska","Points":7613,"X":349,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793792Z"},{"ID":45989,"Name":"Vedette","Points":10362,"X":553,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793792Z"},{"ID":45990,"Name":"Wioska barbarzyƄska","Points":5237,"X":711,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793793Z"},{"ID":45991,"Name":"[0126]","Points":9331,"X":447,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793793Z"},{"ID":45992,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":10220,"X":487,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793794Z"},{"ID":45993,"Name":"Wioska barbarzyƄska","Points":9868,"X":633,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793794Z"},{"ID":45994,"Name":"05. Kaer Moren","Points":9808,"X":709,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793795Z"},{"ID":45995,"Name":"Z20","Points":9835,"X":316,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793795Z"},{"ID":45996,"Name":"010","Points":2982,"X":324,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793796Z"},{"ID":45997,"Name":"Wioska barbarzyƄska","Points":4428,"X":303,"Y":556,"Continent":"K53","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793797Z"},{"ID":45998,"Name":"Wioska barbarzyƄska","Points":10474,"X":588,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793797Z"},{"ID":45999,"Name":"TWIERDZA .:004:.","Points":10275,"X":694,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793798Z"},{"ID":46000,"Name":"0027 Wioska barbarzyƄska","Points":10476,"X":442,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793798Z"},{"ID":46001,"Name":"O081","Points":9887,"X":333,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793799Z"},{"ID":46003,"Name":"002","Points":8584,"X":528,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793799Z"},{"ID":46004,"Name":"AAA","Points":8921,"X":534,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7938Z"},{"ID":46005,"Name":"K33","Points":2908,"X":320,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7938Z"},{"ID":46006,"Name":"003","Points":10469,"X":521,"Y":296,"Continent":"K25","Bonus":4,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793801Z"},{"ID":46008,"Name":"Avanti!","Points":8738,"X":286,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793801Z"},{"ID":46009,"Name":"Mniejsze zƂo 0024","Points":7920,"X":318,"Y":391,"Continent":"K33","Bonus":8,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793802Z"},{"ID":46010,"Name":"B15","Points":10640,"X":695,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793802Z"},{"ID":46011,"Name":"0111","Points":8565,"X":395,"Y":675,"Continent":"K63","Bonus":6,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793803Z"},{"ID":46012,"Name":"D010","Points":8651,"X":350,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793803Z"},{"ID":46013,"Name":"120 invidia","Points":8384,"X":499,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793804Z"},{"ID":46014,"Name":"G001","Points":9912,"X":515,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793804Z"},{"ID":46015,"Name":"Akademia Sztuk Pięknych","Points":6317,"X":701,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793805Z"},{"ID":46016,"Name":"New World","Points":10297,"X":435,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793805Z"},{"ID":46017,"Name":"Bagno 23","Points":7188,"X":486,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793806Z"},{"ID":46018,"Name":"New World","Points":10294,"X":422,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793806Z"},{"ID":46020,"Name":"FAKE OR OFF","Points":9706,"X":408,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793807Z"},{"ID":46021,"Name":"026","Points":8581,"X":704,"Y":468,"Continent":"K47","Bonus":5,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793807Z"},{"ID":46022,"Name":"XXX","Points":9282,"X":292,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793808Z"},{"ID":46023,"Name":"bucksbarzyƄskamiiiru","Points":10001,"X":318,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793808Z"},{"ID":46024,"Name":"Kagusiowo 2","Points":5964,"X":298,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793809Z"},{"ID":46025,"Name":"A-001","Points":9299,"X":324,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793809Z"},{"ID":46026,"Name":"[0140]","Points":9346,"X":447,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79381Z"},{"ID":46028,"Name":"Taran","Points":6258,"X":312,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793811Z"},{"ID":46029,"Name":"Wioska barbarzyƄska","Points":1773,"X":511,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793811Z"},{"ID":46030,"Name":"EEE Barba 2","Points":9140,"X":464,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793812Z"},{"ID":46031,"Name":"Psycho to Marka, Narka !","Points":6300,"X":303,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793812Z"},{"ID":46032,"Name":"Wioska barbarzyƄska","Points":8715,"X":534,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793813Z"},{"ID":46033,"Name":"WB17","Points":6215,"X":311,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793813Z"},{"ID":46034,"Name":"||Uzbekistan","Points":7921,"X":289,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793814Z"},{"ID":46035,"Name":"109 invidia","Points":10362,"X":504,"Y":711,"Continent":"K75","Bonus":8,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793815Z"},{"ID":46036,"Name":"Deeee","Points":10083,"X":289,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793815Z"},{"ID":46037,"Name":"Wioska barbarzyƄska","Points":9621,"X":341,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793816Z"},{"ID":46038,"Name":"EO EO","Points":9064,"X":288,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793816Z"},{"ID":46039,"Name":"Zeta Reticuli OO","Points":10728,"X":471,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793817Z"},{"ID":46040,"Name":"bucksbarzyƄskamiiiru","Points":2668,"X":328,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793817Z"},{"ID":46041,"Name":"0154","Points":4530,"X":387,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793818Z"},{"ID":46042,"Name":"Zermatyzm","Points":1350,"X":297,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":848970357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793818Z"},{"ID":46043,"Name":"C0347","Points":2147,"X":298,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793819Z"},{"ID":46044,"Name":"0062","Points":9993,"X":365,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793819Z"},{"ID":46045,"Name":"Wioska barbarzyƄska","Points":8033,"X":382,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79382Z"},{"ID":46046,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79382Z"},{"ID":46047,"Name":"020","Points":7651,"X":298,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793821Z"},{"ID":46048,"Name":"Wioska C","Points":5120,"X":540,"Y":291,"Continent":"K25","Bonus":1,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793821Z"},{"ID":46049,"Name":"Bessa 004","Points":10010,"X":641,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793822Z"},{"ID":46050,"Name":"MojeDnoToWaszSzczyt","Points":9973,"X":498,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793822Z"},{"ID":46051,"Name":"#041#","Points":9761,"X":626,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793823Z"},{"ID":46052,"Name":"G003","Points":8118,"X":515,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793823Z"},{"ID":46053,"Name":"Wioska barbarzyƄska","Points":7516,"X":389,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793824Z"},{"ID":46054,"Name":"019","Points":9828,"X":509,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793824Z"},{"ID":46055,"Name":"002","Points":8836,"X":438,"Y":298,"Continent":"K24","Bonus":1,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793825Z"},{"ID":46057,"Name":"026 Wioska barbarzyƄska","Points":9224,"X":604,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793826Z"},{"ID":46058,"Name":"003","Points":9815,"X":313,"Y":593,"Continent":"K53","Bonus":6,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793826Z"},{"ID":46059,"Name":"O070","Points":9868,"X":328,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793827Z"},{"ID":46060,"Name":"013","Points":9582,"X":466,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793827Z"},{"ID":46061,"Name":"028","Points":4145,"X":701,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":849031818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793828Z"},{"ID":46062,"Name":"Szlachcic","Points":5706,"X":361,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793828Z"},{"ID":46063,"Name":"085 Ard Carraigh","Points":9899,"X":545,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793829Z"},{"ID":46065,"Name":"Jednak wolę gofry","Points":8988,"X":465,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793829Z"},{"ID":46067,"Name":"Wioska barbarzyƄska","Points":4099,"X":303,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79383Z"},{"ID":46068,"Name":"FAKE OR OFF","Points":9960,"X":423,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79383Z"},{"ID":46069,"Name":"Co masz w ƛrodku?","Points":7170,"X":689,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793831Z"},{"ID":46070,"Name":"Wioska barbarzyƄska","Points":4418,"X":569,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793831Z"},{"ID":46071,"Name":"Wiadrowo Dolne","Points":4965,"X":288,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793832Z"},{"ID":46072,"Name":"053. Wioska barbarzyƄska","Points":8386,"X":706,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793832Z"},{"ID":46073,"Name":"W26","Points":3078,"X":690,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793833Z"},{"ID":46074,"Name":"!36 65 Todiresti","Points":9749,"X":659,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793833Z"},{"ID":46075,"Name":"--007--","Points":7433,"X":570,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793834Z"},{"ID":46076,"Name":"012","Points":7882,"X":312,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793834Z"},{"ID":46077,"Name":"Wioska barbarzyƄska","Points":8533,"X":422,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793835Z"},{"ID":46078,"Name":"Wioska barbarzyƄska","Points":8234,"X":704,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793835Z"},{"ID":46079,"Name":"=071= Wioska barbarzyƄska","Points":9072,"X":701,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793836Z"},{"ID":46080,"Name":"Wioska barbarzyƄska","Points":2756,"X":652,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793837Z"},{"ID":46081,"Name":"Wioska barbarzyƄska","Points":5901,"X":533,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849088639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793837Z"},{"ID":46082,"Name":"Osada 5","Points":9494,"X":699,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793838Z"},{"ID":46083,"Name":"Osada 10","Points":9737,"X":695,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793838Z"},{"ID":46084,"Name":"Wioska barbarzyƄska","Points":9799,"X":706,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793839Z"},{"ID":46085,"Name":"017 GĂłrki GĂłreczki","Points":3532,"X":653,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793839Z"},{"ID":46086,"Name":"Bessa 014","Points":10115,"X":642,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79384Z"},{"ID":46087,"Name":"031. Girowa","Points":10207,"X":710,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79384Z"},{"ID":46088,"Name":"0072 Wioska barbarzyƄska","Points":3988,"X":447,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793841Z"},{"ID":46089,"Name":"WB15","Points":4570,"X":309,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793841Z"},{"ID":46090,"Name":"Wioska barbarzyƄska","Points":4409,"X":337,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793842Z"},{"ID":46091,"Name":"KONFA TO MARKA, NARKA","Points":7680,"X":301,"Y":445,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793842Z"},{"ID":46092,"Name":"TWIERDZA .:002:.","Points":10311,"X":692,"Y":577,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793843Z"},{"ID":46093,"Name":"0111","Points":9584,"X":708,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793843Z"},{"ID":46094,"Name":"007","Points":9976,"X":297,"Y":557,"Continent":"K52","Bonus":4,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793844Z"},{"ID":46095,"Name":"a-7","Points":6722,"X":677,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793844Z"},{"ID":46096,"Name":"06. Val Dorcia","Points":10495,"X":708,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793845Z"},{"ID":46097,"Name":"##7","Points":6824,"X":347,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793845Z"},{"ID":46098,"Name":"FP030","Points":8913,"X":470,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793846Z"},{"ID":46099,"Name":"New World","Points":10306,"X":434,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793846Z"},{"ID":46100,"Name":"Taran","Points":9424,"X":324,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793847Z"},{"ID":46101,"Name":"Wioska barbarzyƄska 003","Points":9738,"X":562,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793848Z"},{"ID":46102,"Name":"098.Stradi","Points":9443,"X":441,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793848Z"},{"ID":46103,"Name":"Wioska barbarzyƄska","Points":4482,"X":532,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793849Z"},{"ID":46104,"Name":"Wioska barbarzyƄska","Points":1976,"X":707,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793849Z"},{"ID":46105,"Name":"!36 66 Partesti de Sus","Points":9950,"X":660,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79385Z"},{"ID":46106,"Name":"????","Points":9344,"X":476,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79385Z"},{"ID":46107,"Name":"Dream on","Points":6358,"X":290,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793851Z"},{"ID":46108,"Name":"Kurnik","Points":7002,"X":474,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793851Z"},{"ID":46109,"Name":"O065","Points":9867,"X":335,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793852Z"},{"ID":46110,"Name":"i na co to","Points":8465,"X":378,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793852Z"},{"ID":46111,"Name":"Wioska barbarzyƄska","Points":3375,"X":714,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793853Z"},{"ID":46112,"Name":"03-oss","Points":10187,"X":677,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793853Z"},{"ID":46113,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":658,"Y":631,"Continent":"K66","Bonus":9,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793854Z"},{"ID":46114,"Name":"041","Points":10495,"X":410,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793854Z"},{"ID":46115,"Name":"O129","Points":6304,"X":331,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793855Z"},{"ID":46116,"Name":"a-4","Points":10495,"X":676,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793855Z"},{"ID":46117,"Name":"Wioska barbarzyƄska","Points":5626,"X":318,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793856Z"},{"ID":46118,"Name":"Bessa 002","Points":9993,"X":642,"Y":656,"Continent":"K66","Bonus":1,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793857Z"},{"ID":46119,"Name":"016. Wioska barbarzyƄska","Points":8370,"X":343,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793857Z"},{"ID":46120,"Name":"017.","Points":7790,"X":665,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793858Z"},{"ID":46121,"Name":"17 Adamuswielki2..","Points":9386,"X":292,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793858Z"},{"ID":46122,"Name":"Wioska barbarzyƄska","Points":9880,"X":576,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793859Z"},{"ID":46123,"Name":"003","Points":8177,"X":395,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793859Z"},{"ID":46124,"Name":"*INTERTWINED*","Points":6061,"X":508,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79386Z"},{"ID":46125,"Name":"New WorldA","Points":6279,"X":295,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79386Z"},{"ID":46126,"Name":"004","Points":8394,"X":467,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793861Z"},{"ID":46127,"Name":"XXXX","Points":9746,"X":561,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793861Z"},{"ID":46128,"Name":"Zielony 4","Points":4001,"X":299,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":699876746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793862Z"},{"ID":46129,"Name":"Wioska barbarzyƄska","Points":6453,"X":686,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793862Z"},{"ID":46130,"Name":"KRÓL PAPI WIELKI","Points":9943,"X":643,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793863Z"},{"ID":46131,"Name":"S011","Points":7454,"X":688,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793863Z"},{"ID":46132,"Name":"035 Wioska barbarzyƄska","Points":9726,"X":606,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793864Z"},{"ID":46133,"Name":"New WorldA","Points":6058,"X":288,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793864Z"},{"ID":46134,"Name":"018","Points":3729,"X":396,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793865Z"},{"ID":46135,"Name":"Wioska Bipi","Points":2769,"X":625,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699126490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793865Z"},{"ID":46136,"Name":"Wyspa","Points":2207,"X":383,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793866Z"},{"ID":46137,"Name":"01-oss","Points":10187,"X":677,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793866Z"},{"ID":46138,"Name":"- 256 - SS","Points":6165,"X":557,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793867Z"},{"ID":46139,"Name":"Wioska barbarzyƄska","Points":1586,"X":650,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793867Z"},{"ID":46140,"Name":"Wioska barbarzyƄska","Points":263,"X":334,"Y":526,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793868Z"},{"ID":46141,"Name":"Wioska barbarzyƄska","Points":9189,"X":629,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793868Z"},{"ID":46142,"Name":"141","Points":10495,"X":395,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793869Z"},{"ID":46143,"Name":"New World","Points":10300,"X":418,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793869Z"},{"ID":46144,"Name":"Wioska barbarzyƄska","Points":2737,"X":312,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":848901396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79387Z"},{"ID":46145,"Name":"Bongo Wielkie","Points":954,"X":292,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79387Z"},{"ID":46146,"Name":"FAKE OR OFF","Points":9813,"X":402,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793871Z"},{"ID":46147,"Name":"098","Points":7775,"X":403,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793872Z"},{"ID":46148,"Name":"[0135]","Points":9337,"X":446,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793872Z"},{"ID":46149,"Name":"53 nie barbarzyƄska","Points":4865,"X":292,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793873Z"},{"ID":46150,"Name":"PóƂnocny Bagdad","Points":9899,"X":617,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793873Z"},{"ID":46151,"Name":"--002--","Points":7267,"X":567,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793874Z"},{"ID":46152,"Name":"I104","Points":8023,"X":684,"Y":456,"Continent":"K46","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793874Z"},{"ID":46153,"Name":"KRÓL PAPI WIELKI","Points":7773,"X":712,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793875Z"},{"ID":46154,"Name":"KONFA TO MARKA, NARKA","Points":6700,"X":300,"Y":446,"Continent":"K43","Bonus":2,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793875Z"},{"ID":46155,"Name":"Tylko dla Vampirki!","Points":10160,"X":687,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793876Z"},{"ID":46156,"Name":"Wioska barbarzyƄska","Points":5912,"X":536,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849088639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793876Z"},{"ID":46157,"Name":"Elo Elo","Points":10241,"X":309,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793877Z"},{"ID":46158,"Name":"Wiadro09","Points":7271,"X":673,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793877Z"},{"ID":46159,"Name":"!36 66 Granicesti","Points":6312,"X":664,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793878Z"},{"ID":46160,"Name":"Wioska barbarzyƄska","Points":3320,"X":706,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793878Z"},{"ID":46161,"Name":"Aaa","Points":6669,"X":570,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793879Z"},{"ID":46162,"Name":"Zaplecze Barba 6","Points":9747,"X":368,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793879Z"},{"ID":46163,"Name":"Wioska barbarzyƄska","Points":7176,"X":708,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79388Z"},{"ID":46164,"Name":"XDX","Points":10093,"X":607,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79388Z"},{"ID":46165,"Name":"Lord Arsey KING","Points":8469,"X":659,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793881Z"},{"ID":46166,"Name":"A#036","Points":9797,"X":710,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793882Z"},{"ID":46167,"Name":"CastAway !033","Points":5202,"X":687,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793882Z"},{"ID":46168,"Name":"!36 65 Calafindesti","Points":5667,"X":658,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793883Z"},{"ID":46170,"Name":"0085","Points":5111,"X":682,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793883Z"},{"ID":46172,"Name":"ZZ08","Points":8365,"X":310,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793884Z"},{"ID":46173,"Name":"Taran","Points":8553,"X":324,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793884Z"},{"ID":46174,"Name":"Wioska barbarzyƄska 1","Points":9790,"X":311,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793885Z"},{"ID":46175,"Name":"046 sebaseba1991","Points":10160,"X":621,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793885Z"},{"ID":46176,"Name":"Wancki","Points":9861,"X":515,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793886Z"},{"ID":46177,"Name":"XDX","Points":5899,"X":597,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793886Z"},{"ID":46178,"Name":"!36 65 Mitocu Dragomirnei","Points":6005,"X":654,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793887Z"},{"ID":46179,"Name":"020 GĂłrki Krajobrazowe","Points":6745,"X":646,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793887Z"},{"ID":46180,"Name":"C09","Points":5857,"X":703,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793888Z"},{"ID":46182,"Name":"bucksbarzyƄskamiiiru","Points":9579,"X":319,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793888Z"},{"ID":46183,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9745,"X":485,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793889Z"},{"ID":46184,"Name":"tylko pp","Points":7173,"X":509,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":8240677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793889Z"},{"ID":46185,"Name":"Wioska barbarzyƄska 3","Points":4635,"X":452,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79389Z"},{"ID":46186,"Name":"=0021=","Points":9299,"X":402,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79389Z"},{"ID":46187,"Name":"New World","Points":9292,"X":419,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793891Z"},{"ID":46188,"Name":"C10","Points":4832,"X":703,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793892Z"},{"ID":46189,"Name":"ObrzeĆŒe","Points":8820,"X":578,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793892Z"},{"ID":46190,"Name":"0.17b","Points":9546,"X":459,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793893Z"},{"ID":46191,"Name":"xxx","Points":2546,"X":318,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":849100811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793893Z"},{"ID":46192,"Name":"BurƂak","Points":9761,"X":551,"Y":701,"Continent":"K75","Bonus":5,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793894Z"},{"ID":46193,"Name":"Wioska barbarzyƄska","Points":3097,"X":535,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":9016560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793894Z"},{"ID":46194,"Name":"Wioska barbarzyƄska","Points":5834,"X":703,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793895Z"},{"ID":46195,"Name":"###099###","Points":10495,"X":579,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793896Z"},{"ID":46196,"Name":"- 229 - SS","Points":4845,"X":549,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793896Z"},{"ID":46197,"Name":"New World","Points":6460,"X":421,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793897Z"},{"ID":46198,"Name":"A#021","Points":9797,"X":712,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793897Z"},{"ID":46199,"Name":"*03 GAWRA*","Points":9402,"X":304,"Y":427,"Continent":"K43","Bonus":5,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793898Z"},{"ID":46200,"Name":"BORSUK","Points":9525,"X":458,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":7518529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793898Z"},{"ID":46201,"Name":"XDX","Points":6273,"X":600,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793899Z"},{"ID":46202,"Name":"Dream on","Points":3194,"X":291,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793899Z"},{"ID":46203,"Name":"Wioska barbarzyƄska","Points":290,"X":308,"Y":419,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7939Z"},{"ID":46204,"Name":"PIROTECHNIK 001","Points":9637,"X":353,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.7939Z"},{"ID":46205,"Name":"004","Points":9627,"X":645,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793901Z"},{"ID":46206,"Name":"WANADYNIT","Points":10363,"X":703,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793901Z"},{"ID":46207,"Name":"003 super hero","Points":10160,"X":603,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793902Z"},{"ID":46208,"Name":"009","Points":8022,"X":296,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793902Z"},{"ID":46209,"Name":"017. Night Raid","Points":6316,"X":494,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793903Z"},{"ID":46210,"Name":"wioska","Points":3235,"X":635,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793903Z"},{"ID":46211,"Name":"Kagusiowo 10","Points":4476,"X":303,"Y":444,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793904Z"},{"ID":46212,"Name":"KRÓL PAPI WIELKI","Points":5931,"X":711,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793904Z"},{"ID":46213,"Name":"Kurnik","Points":9252,"X":471,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793905Z"},{"ID":46215,"Name":"019.Stradi","Points":10495,"X":432,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793905Z"},{"ID":46216,"Name":"czeska gura","Points":9124,"X":567,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793906Z"},{"ID":46217,"Name":"0118","Points":9825,"X":705,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793906Z"},{"ID":46219,"Name":"28.BlockB","Points":4490,"X":690,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793907Z"},{"ID":46221,"Name":"Zaplecze drewniane 2","Points":9887,"X":371,"Y":339,"Continent":"K33","Bonus":1,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793907Z"},{"ID":46222,"Name":"082 Hjubal","Points":4417,"X":713,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793908Z"},{"ID":46223,"Name":"044","Points":6652,"X":662,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793908Z"},{"ID":46225,"Name":"027","Points":6992,"X":294,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793909Z"},{"ID":46226,"Name":"Zagroda6","Points":6304,"X":609,"Y":674,"Continent":"K66","Bonus":6,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793909Z"},{"ID":46228,"Name":"New WorldA","Points":6571,"X":289,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79391Z"},{"ID":46229,"Name":"Sandomierz","Points":7943,"X":297,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":849101092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79391Z"},{"ID":46231,"Name":"4...","Points":2321,"X":647,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793911Z"},{"ID":46232,"Name":"014","Points":6438,"X":526,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793912Z"},{"ID":46233,"Name":"North 015","Points":9650,"X":501,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793912Z"},{"ID":46234,"Name":"Polandia","Points":4680,"X":519,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":3298902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793913Z"},{"ID":46236,"Name":"Wioska X06","Points":3906,"X":297,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793913Z"},{"ID":46237,"Name":"XDX","Points":9623,"X":611,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793914Z"},{"ID":46238,"Name":"Wioska barbarzyƄska","Points":9968,"X":371,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793914Z"},{"ID":46239,"Name":"New WorldA","Points":5802,"X":287,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793915Z"},{"ID":46240,"Name":"002","Points":2733,"X":347,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":849101293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793915Z"},{"ID":46241,"Name":"1.05","Points":9741,"X":438,"Y":703,"Continent":"K74","Bonus":8,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793916Z"},{"ID":46242,"Name":"Wioska barbarzyƄska","Points":6106,"X":341,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793916Z"},{"ID":46243,"Name":"=072= Wioska barbarzyƄska","Points":9174,"X":700,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793917Z"},{"ID":46244,"Name":"204","Points":6586,"X":426,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793917Z"},{"ID":46245,"Name":"Wioska barbarzyƄska","Points":9448,"X":377,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793918Z"},{"ID":46246,"Name":"Wioska barbarzyƄska","Points":10223,"X":631,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793918Z"},{"ID":46247,"Name":"FAKE OR OFF","Points":9707,"X":408,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793919Z"},{"ID":46248,"Name":"ElMajkelos III","Points":9633,"X":416,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793919Z"},{"ID":46249,"Name":"bucksbarzyƄskamiiiru","Points":3512,"X":326,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79392Z"},{"ID":46250,"Name":"017 Therinsford","Points":10083,"X":690,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79392Z"},{"ID":46251,"Name":"ZƂoty ƚwit","Points":3445,"X":591,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793921Z"},{"ID":46252,"Name":"KRÓL PAPI WIELKI","Points":7860,"X":630,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793921Z"},{"ID":46253,"Name":"Wioska barbarzyƄska","Points":6184,"X":620,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793922Z"},{"ID":46254,"Name":"Początek","Points":10040,"X":311,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793922Z"},{"ID":46255,"Name":"0079","Points":10019,"X":683,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793923Z"},{"ID":46256,"Name":"Wioska barbarzyƄska","Points":7163,"X":699,"Y":443,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793924Z"},{"ID":46258,"Name":"C0341","Points":2550,"X":295,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793924Z"},{"ID":46259,"Name":"a-8","Points":5135,"X":679,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793925Z"},{"ID":46260,"Name":"Początek","Points":8415,"X":312,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793925Z"},{"ID":46261,"Name":"MojeDnoToWaszSzczyt","Points":9559,"X":497,"Y":293,"Continent":"K24","Bonus":7,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793926Z"},{"ID":46262,"Name":"O111","Points":7617,"X":332,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793926Z"},{"ID":46263,"Name":"Ger1","Points":7610,"X":712,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793927Z"},{"ID":46265,"Name":"012. Arrabiata","Points":7538,"X":320,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793927Z"},{"ID":46266,"Name":"C.032","Points":4475,"X":713,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793928Z"},{"ID":46267,"Name":"Osada 9","Points":10019,"X":703,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793928Z"},{"ID":46268,"Name":"13 PidĆŒama","Points":9413,"X":712,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793929Z"},{"ID":46269,"Name":"Melina","Points":3898,"X":626,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":849101104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793929Z"},{"ID":46270,"Name":"C086","Points":7226,"X":366,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79393Z"},{"ID":46271,"Name":"004b","Points":4878,"X":305,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793931Z"},{"ID":46272,"Name":"Komandos","Points":10495,"X":633,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793931Z"},{"ID":46273,"Name":"096 invidia","Points":5130,"X":544,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793932Z"},{"ID":46274,"Name":"Wioska barbarzyƄska","Points":9043,"X":693,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793932Z"},{"ID":46275,"Name":"ChceszPokojuSzykujSięDoWojny","Points":4982,"X":494,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793933Z"},{"ID":46276,"Name":"predator","Points":9049,"X":342,"Y":643,"Continent":"K63","Bonus":2,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793933Z"},{"ID":46277,"Name":"EE 013","Points":5669,"X":693,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793934Z"},{"ID":46278,"Name":"C0240","Points":10362,"X":294,"Y":546,"Continent":"K52","Bonus":6,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793934Z"},{"ID":46279,"Name":"EO EO","Points":10019,"X":291,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793935Z"},{"ID":46280,"Name":"041. Inowiec","Points":9413,"X":708,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793935Z"},{"ID":46281,"Name":"||Irak","Points":10495,"X":291,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793936Z"},{"ID":46282,"Name":"Wioska barbarzyƄska","Points":3108,"X":336,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793936Z"},{"ID":46283,"Name":"Wioska barbarzyƄska","Points":7803,"X":707,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793937Z"},{"ID":46284,"Name":"East2","Points":6957,"X":677,"Y":378,"Continent":"K36","Bonus":1,"PlayerID":1086351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793937Z"},{"ID":46285,"Name":"O086","Points":9938,"X":334,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793938Z"},{"ID":46286,"Name":"New WorldA","Points":6106,"X":288,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793938Z"},{"ID":46287,"Name":"rafisonik2","Points":12154,"X":511,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793939Z"},{"ID":46288,"Name":"ZƂoty ƚwit","Points":7231,"X":577,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793939Z"},{"ID":46289,"Name":"bucksbarzyƄskamiiiru","Points":4951,"X":323,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79394Z"},{"ID":46290,"Name":"Tiger districk","Points":3214,"X":659,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79394Z"},{"ID":46291,"Name":"005","Points":9899,"X":312,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793941Z"},{"ID":46292,"Name":"Dream on","Points":8467,"X":294,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793942Z"},{"ID":46293,"Name":"013","Points":6770,"X":390,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793942Z"},{"ID":46294,"Name":"Zzzz - Kasztelania 005","Points":4208,"X":641,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":699733098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793943Z"},{"ID":46295,"Name":"D017","Points":5718,"X":354,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793943Z"},{"ID":46296,"Name":"Wioska 0022","Points":8461,"X":348,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793944Z"},{"ID":46298,"Name":"Gattacka","Points":7536,"X":614,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793944Z"},{"ID":46299,"Name":"Wioska barbarzyƄska","Points":7267,"X":715,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793945Z"},{"ID":46300,"Name":"###100###","Points":10495,"X":585,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793945Z"},{"ID":46301,"Name":"Wioska barbarzyƄska","Points":7145,"X":714,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793946Z"},{"ID":46303,"Name":"038","Points":9026,"X":673,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793946Z"},{"ID":46304,"Name":"Wioska 08","Points":5627,"X":691,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793947Z"},{"ID":46306,"Name":"klops33","Points":10242,"X":628,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793948Z"},{"ID":46308,"Name":"????","Points":9921,"X":473,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793948Z"},{"ID":46309,"Name":"komandos","Points":10495,"X":636,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793949Z"},{"ID":46310,"Name":"klops3","Points":10242,"X":626,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793949Z"},{"ID":46311,"Name":"Wioska mygos","Points":12154,"X":454,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79395Z"},{"ID":46312,"Name":"Taran","Points":9211,"X":325,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79395Z"},{"ID":46313,"Name":"HAPERT","Points":11891,"X":624,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793951Z"},{"ID":46314,"Name":"...04 am","Points":10495,"X":673,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793951Z"},{"ID":46315,"Name":"KONFA TO MARKA, NARKA","Points":6100,"X":296,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793952Z"},{"ID":46316,"Name":".achim.","Points":5201,"X":484,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793952Z"},{"ID":46317,"Name":"010","Points":3661,"X":389,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793953Z"},{"ID":46318,"Name":"C.01 a panicz to dokąd?","Points":8995,"X":550,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849026145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793953Z"},{"ID":46319,"Name":"B002 ZieNciu Glina","Points":10160,"X":706,"Y":463,"Continent":"K47","Bonus":2,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793954Z"},{"ID":46320,"Name":"Kurnik","Points":8627,"X":517,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793954Z"},{"ID":46321,"Name":"Elo elo 3","Points":9298,"X":310,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793955Z"},{"ID":46322,"Name":"029","Points":4384,"X":664,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793955Z"},{"ID":46323,"Name":"Wioska barbarzyƄska","Points":4341,"X":336,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793956Z"},{"ID":46324,"Name":"Kolorowo","Points":6299,"X":686,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793956Z"},{"ID":46325,"Name":"Wioska barbarzyƄska","Points":4903,"X":572,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793957Z"},{"ID":46326,"Name":"149","Points":7103,"X":400,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793957Z"},{"ID":46327,"Name":"*INTERTWINED*","Points":3634,"X":514,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793958Z"},{"ID":46328,"Name":"02. Oxenfurt","Points":9372,"X":705,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793958Z"},{"ID":46329,"Name":"Szlachcic","Points":6477,"X":363,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793959Z"},{"ID":46330,"Name":"BrzeĆșno Szlacheckie","Points":9155,"X":459,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793959Z"},{"ID":46331,"Name":"PIROTECHNIK 004","Points":5624,"X":352,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79396Z"},{"ID":46332,"Name":"070.","Points":3298,"X":707,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79396Z"},{"ID":46333,"Name":"004","Points":4930,"X":303,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793961Z"},{"ID":46334,"Name":"#0153 barbarzyƄska","Points":6683,"X":488,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793961Z"},{"ID":46335,"Name":"BOSS S","Points":7752,"X":353,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793962Z"},{"ID":46336,"Name":"FAKE OR OFF","Points":9825,"X":404,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793962Z"},{"ID":46337,"Name":"Didiek","Points":3314,"X":689,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793963Z"},{"ID":46338,"Name":"NBT","Points":9736,"X":595,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793964Z"},{"ID":46339,"Name":"14. GoƂe BABY","Points":7126,"X":477,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793964Z"},{"ID":46340,"Name":"002 moĆŒe się uda","Points":10237,"X":512,"Y":709,"Continent":"K75","Bonus":3,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793965Z"},{"ID":46342,"Name":"Wioska barbarzyƄska","Points":5633,"X":578,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793965Z"},{"ID":46343,"Name":"0070 Wioska barbarzyƄska","Points":8689,"X":447,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793966Z"},{"ID":46344,"Name":"Pontarfynach","Points":4254,"X":352,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793966Z"},{"ID":46345,"Name":".achim.","Points":6343,"X":482,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793967Z"},{"ID":46346,"Name":"Wioska barbarzyƄska","Points":2425,"X":327,"Y":374,"Continent":"K33","Bonus":3,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793967Z"},{"ID":46347,"Name":"Wioska barbarzyƄska","Points":4911,"X":393,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793968Z"},{"ID":46348,"Name":"Szlachcic","Points":7488,"X":361,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793968Z"},{"ID":46349,"Name":"Wioska A","Points":6649,"X":542,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793969Z"},{"ID":46350,"Name":"C0243","Points":6449,"X":292,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793969Z"},{"ID":46351,"Name":"FP016","Points":10342,"X":477,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79397Z"},{"ID":46352,"Name":"B#024","Points":9797,"X":705,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79397Z"},{"ID":46353,"Name":"AAA","Points":9083,"X":552,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793971Z"},{"ID":46354,"Name":"Wioska barbarzyƄska","Points":3906,"X":641,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793971Z"},{"ID":46355,"Name":"!36 66 Plutonita","Points":9860,"X":663,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793972Z"},{"ID":46356,"Name":"#K75 0010","Points":5344,"X":522,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793972Z"},{"ID":46357,"Name":"Wioska barbarzyƄska","Points":6265,"X":685,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793973Z"},{"ID":46358,"Name":"Wioska barbarzyƄska","Points":7906,"X":373,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793973Z"},{"ID":46359,"Name":"0142","Points":4946,"X":391,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793974Z"},{"ID":46360,"Name":"Pochodnie","Points":3994,"X":704,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793974Z"},{"ID":46361,"Name":"XDX","Points":11164,"X":602,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793975Z"},{"ID":46362,"Name":"Husaria Blisko 1","Points":3047,"X":682,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793975Z"},{"ID":46363,"Name":"0134","Points":4529,"X":391,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793976Z"},{"ID":46364,"Name":"Wioska barbarzyƄska","Points":6806,"X":710,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793977Z"},{"ID":46365,"Name":"Taran","Points":9957,"X":329,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793977Z"},{"ID":46366,"Name":"[014]","Points":4121,"X":445,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793978Z"},{"ID":46367,"Name":"Bessa 009","Points":9979,"X":641,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793978Z"},{"ID":46368,"Name":"32 Kreda","Points":9829,"X":395,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793979Z"},{"ID":46369,"Name":"-16-","Points":7887,"X":572,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793979Z"},{"ID":46370,"Name":"025.Stradi","Points":10495,"X":433,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79398Z"},{"ID":46371,"Name":"059...barbarka","Points":10311,"X":439,"Y":296,"Continent":"K24","Bonus":6,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79398Z"},{"ID":46372,"Name":"*INTERTWINED*","Points":6315,"X":512,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793981Z"},{"ID":46374,"Name":"306","Points":4464,"X":441,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793982Z"},{"ID":46375,"Name":"Wioska barbarzyƄska","Points":7262,"X":711,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793982Z"},{"ID":46376,"Name":"#0187 grabarz22","Points":4136,"X":469,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793983Z"},{"ID":46377,"Name":"002. Diavola","Points":9746,"X":321,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793983Z"},{"ID":46378,"Name":"Wioska barbarzyƄska","Points":9737,"X":513,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793984Z"},{"ID":46379,"Name":"New World","Points":8003,"X":423,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793984Z"},{"ID":46380,"Name":"046","Points":5626,"X":662,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793985Z"},{"ID":46381,"Name":"XDX","Points":4464,"X":594,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793985Z"},{"ID":46382,"Name":"059","Points":10495,"X":404,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793986Z"},{"ID":46383,"Name":"040.","Points":10838,"X":451,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793986Z"},{"ID":46384,"Name":"Początek","Points":9738,"X":302,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793987Z"},{"ID":46385,"Name":"z181_28","Points":8200,"X":304,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793987Z"},{"ID":46386,"Name":"#K75 0016","Points":4916,"X":518,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793988Z"},{"ID":46387,"Name":"StaƂo się","Points":8139,"X":689,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793988Z"},{"ID":46388,"Name":"AAA","Points":8762,"X":319,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793989Z"},{"ID":46389,"Name":"!36 66 Solonetu Nou","Points":10317,"X":665,"Y":368,"Continent":"K36","Bonus":8,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793989Z"},{"ID":46390,"Name":"[D]_[007] Dejv.oldplyr","Points":5701,"X":286,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79399Z"},{"ID":46391,"Name":"38. Pan Maszynista","Points":6221,"X":711,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79399Z"},{"ID":46392,"Name":"*INTERTWINED*","Points":6318,"X":510,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793991Z"},{"ID":46393,"Name":"!36 75 Botosanita Mare","Points":6241,"X":659,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793992Z"},{"ID":46394,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":7466,"X":549,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793992Z"},{"ID":46395,"Name":"Wioska barbarzyƄska","Points":6255,"X":389,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793993Z"},{"ID":46396,"Name":"Maszlug kolonia VIII","Points":8075,"X":364,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793993Z"},{"ID":46397,"Name":"C.033","Points":4486,"X":708,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793994Z"},{"ID":46399,"Name":"Wioska X11","Points":4479,"X":296,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793994Z"},{"ID":46400,"Name":"0.05 CWKS","Points":9713,"X":460,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793995Z"},{"ID":46401,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793995Z"},{"ID":46402,"Name":"asdert","Points":8789,"X":531,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793996Z"},{"ID":46403,"Name":"-05-","Points":9472,"X":577,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793996Z"},{"ID":46404,"Name":"B14","Points":11550,"X":704,"Y":542,"Continent":"K57","Bonus":2,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793997Z"},{"ID":46405,"Name":"014","Points":4240,"X":350,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793997Z"},{"ID":46406,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":298,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793998Z"},{"ID":46407,"Name":"009","Points":6087,"X":391,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793998Z"},{"ID":46408,"Name":"###101###","Points":10495,"X":581,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793999Z"},{"ID":46410,"Name":"Familia Kuzyni","Points":3079,"X":379,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.793999Z"},{"ID":46411,"Name":"AAA","Points":10162,"X":314,"Y":606,"Continent":"K63","Bonus":3,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794Z"},{"ID":46412,"Name":"Taran","Points":8295,"X":316,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794001Z"},{"ID":46413,"Name":"006","Points":3706,"X":684,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794001Z"},{"ID":46414,"Name":"O132","Points":9899,"X":324,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794002Z"},{"ID":46415,"Name":"Taran","Points":8547,"X":323,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794002Z"},{"ID":46416,"Name":"C.023","Points":4677,"X":714,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794003Z"},{"ID":46417,"Name":"Z00","Points":5951,"X":672,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":849055553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794003Z"},{"ID":46418,"Name":"Wioska KaszczuJ 3","Points":9761,"X":700,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":849104356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794004Z"},{"ID":46419,"Name":"55 nie barbarzyƄska","Points":6397,"X":297,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794004Z"},{"ID":46420,"Name":"Ave Why!","Points":10358,"X":308,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794005Z"},{"ID":46421,"Name":"Taran","Points":9835,"X":319,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794005Z"},{"ID":46422,"Name":"089.Stradi","Points":9437,"X":436,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794006Z"},{"ID":46423,"Name":"Wioska barbarzyƄska","Points":3118,"X":309,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":8699429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794006Z"},{"ID":46424,"Name":"[0176]","Points":9189,"X":449,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794007Z"},{"ID":46425,"Name":"0105","Points":10216,"X":386,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794007Z"},{"ID":46426,"Name":"KRÓL PAPI WIELKI","Points":9580,"X":670,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794008Z"},{"ID":46427,"Name":"Z13","Points":9835,"X":313,"Y":406,"Continent":"K43","Bonus":1,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794008Z"},{"ID":46428,"Name":"179","Points":7600,"X":384,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794009Z"},{"ID":46429,"Name":"XXXX","Points":10068,"X":563,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79401Z"},{"ID":46430,"Name":"D006","Points":8142,"X":355,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79401Z"},{"ID":46431,"Name":"018","Points":7616,"X":298,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794011Z"},{"ID":46432,"Name":"a-1","Points":10495,"X":677,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794011Z"},{"ID":46434,"Name":"#K75 0015","Points":5232,"X":515,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794012Z"},{"ID":46435,"Name":"013","Points":3554,"X":395,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794012Z"},{"ID":46436,"Name":"R 036","Points":6742,"X":495,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794013Z"},{"ID":46437,"Name":"O021","Points":9959,"X":336,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794013Z"},{"ID":46438,"Name":"Wioska barbarzyƄska","Points":7027,"X":708,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794014Z"},{"ID":46439,"Name":"Wioska-011-","Points":2363,"X":634,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":7675610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794014Z"},{"ID":46440,"Name":"#0137 deleted","Points":10178,"X":471,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794015Z"},{"ID":46441,"Name":"TWIERDZA .:062:.","Points":6815,"X":692,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794015Z"},{"ID":46442,"Name":"ZK Wronki","Points":6001,"X":548,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794016Z"},{"ID":46443,"Name":"0032","Points":2434,"X":324,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794016Z"},{"ID":46444,"Name":"Mmmvvvv","Points":8853,"X":289,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794017Z"},{"ID":46445,"Name":"FP014","Points":10393,"X":481,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794017Z"},{"ID":46446,"Name":"Początek","Points":6803,"X":311,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794018Z"},{"ID":46447,"Name":"Dream on","Points":3246,"X":294,"Y":486,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794018Z"},{"ID":46448,"Name":"Lipinki ƁuĆŒyckie","Points":8510,"X":539,"Y":350,"Continent":"K35","Bonus":0,"PlayerID":849101144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794019Z"},{"ID":46449,"Name":"Wioska barbarzyƄska","Points":8667,"X":423,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794019Z"},{"ID":46450,"Name":"Wioska barbarzyƄska","Points":9514,"X":374,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79402Z"},{"ID":46451,"Name":"[0244]","Points":5884,"X":287,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79402Z"},{"ID":46452,"Name":"O060","Points":9876,"X":332,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794021Z"},{"ID":46453,"Name":"Wioska brutal29","Points":3613,"X":709,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794021Z"},{"ID":46454,"Name":"- 263 - SS","Points":5093,"X":549,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794022Z"},{"ID":46455,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":658,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794023Z"},{"ID":46456,"Name":"C0250","Points":5080,"X":289,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794023Z"},{"ID":46457,"Name":"0143","Points":5135,"X":390,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794024Z"},{"ID":46458,"Name":"sh01","Points":6618,"X":511,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794024Z"},{"ID":46459,"Name":"028","Points":7261,"X":302,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794025Z"},{"ID":46460,"Name":"Wioska k01","Points":10184,"X":699,"Y":437,"Continent":"K46","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794025Z"},{"ID":46461,"Name":"!36 66 Cajvana","Points":9275,"X":664,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794026Z"},{"ID":46462,"Name":"=087= St. Augustine","Points":10580,"X":701,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794026Z"},{"ID":46463,"Name":"606|373","Points":9239,"X":668,"Y":371,"Continent":"K36","Bonus":9,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794027Z"},{"ID":46464,"Name":"Cisza","Points":5623,"X":293,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794027Z"},{"ID":46465,"Name":"Taran","Points":7716,"X":316,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794028Z"},{"ID":46466,"Name":"@rkowi Zawodnicy Dominują Rybki","Points":8939,"X":382,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":1434753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794028Z"},{"ID":46467,"Name":"Komandos","Points":9569,"X":639,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794029Z"},{"ID":46468,"Name":"039","Points":8459,"X":672,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794029Z"},{"ID":46470,"Name":"ElMajkelos XII","Points":3555,"X":417,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79403Z"},{"ID":46471,"Name":"Kagusiowo 5","Points":3399,"X":301,"Y":439,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.79403Z"},{"ID":46473,"Name":"007","Points":4333,"X":685,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794031Z"},{"ID":46474,"Name":"Wioska barbarzyƄska","Points":7035,"X":705,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794032Z"},{"ID":46475,"Name":"EO EO","Points":8446,"X":289,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.794032Z"},{"ID":46477,"Name":"015","Points":3879,"X":297,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829508Z"},{"ID":46478,"Name":"Wioska barbarzyƄska","Points":9761,"X":538,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829509Z"},{"ID":46479,"Name":"027.","Points":4013,"X":633,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829509Z"},{"ID":46481,"Name":"New World","Points":8809,"X":434,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82951Z"},{"ID":46482,"Name":"003c","Points":4826,"X":305,"Y":412,"Continent":"K43","Bonus":7,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82951Z"},{"ID":46483,"Name":"[059] Wioska barbarzyƄska","Points":3857,"X":691,"Y":424,"Continent":"K46","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829511Z"},{"ID":46485,"Name":"--033--","Points":6209,"X":573,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829512Z"},{"ID":46487,"Name":"C019","Points":9681,"X":371,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829512Z"},{"ID":46488,"Name":"*INTERTWINED*","Points":6938,"X":505,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829513Z"},{"ID":46489,"Name":"New World","Points":10297,"X":435,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829513Z"},{"ID":46490,"Name":"01. Rome","Points":10495,"X":712,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829514Z"},{"ID":46491,"Name":"C007","Points":4925,"X":537,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829515Z"},{"ID":46492,"Name":"055.","Points":6992,"X":316,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829515Z"},{"ID":46493,"Name":"015. Diran","Points":10495,"X":710,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829516Z"},{"ID":46494,"Name":"XDX","Points":10290,"X":611,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829516Z"},{"ID":46496,"Name":"0138","Points":2627,"X":681,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829517Z"},{"ID":46497,"Name":"BRICKLEBERRY","Points":9681,"X":553,"Y":300,"Continent":"K35","Bonus":5,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829517Z"},{"ID":46499,"Name":"FAKE OR OFF","Points":9821,"X":407,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829518Z"},{"ID":46501,"Name":"001 nie chcę","Points":5884,"X":534,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829518Z"},{"ID":46502,"Name":"B027","Points":8341,"X":624,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829519Z"},{"ID":46503,"Name":"komands","Points":9789,"X":638,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829519Z"},{"ID":46504,"Name":"035","Points":5569,"X":295,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82952Z"},{"ID":46505,"Name":"Blessed","Points":7139,"X":552,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829521Z"},{"ID":46506,"Name":"092","Points":9075,"X":414,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829521Z"},{"ID":46507,"Name":"002 jakieƛ preferencje?","Points":7130,"X":533,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829522Z"},{"ID":46508,"Name":"=089= Wioska barbarzyƄska","Points":6942,"X":701,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829522Z"},{"ID":46509,"Name":"Wioska barbarzyƄska","Points":9790,"X":372,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829523Z"},{"ID":46510,"Name":"Osada koczownikĂłw","Points":7382,"X":299,"Y":424,"Continent":"K42","Bonus":2,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829523Z"},{"ID":46511,"Name":"Wioska 01","Points":9153,"X":692,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829524Z"},{"ID":46512,"Name":"Borubar 6","Points":4013,"X":710,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829524Z"},{"ID":46513,"Name":"Wioska barbarzyƄska","Points":4173,"X":295,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829525Z"},{"ID":46514,"Name":"Dream on","Points":5690,"X":292,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829526Z"},{"ID":46515,"Name":"Bandalina","Points":9761,"X":552,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829526Z"},{"ID":46516,"Name":"Wioska barbarzyƄska","Points":9966,"X":711,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829527Z"},{"ID":46517,"Name":"0071 Wioska barbarzyƄska","Points":4381,"X":444,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829527Z"},{"ID":46518,"Name":"MojeDnoToWaszSzczyt","Points":9952,"X":508,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829528Z"},{"ID":46519,"Name":"#0217 Segadorr dar","Points":10178,"X":441,"Y":302,"Continent":"K34","Bonus":4,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829528Z"},{"ID":46520,"Name":"011 Cedynia","Points":3070,"X":287,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829529Z"},{"ID":46521,"Name":"Bez emocji II","Points":7938,"X":352,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829529Z"},{"ID":46522,"Name":"C001","Points":9595,"X":538,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82953Z"},{"ID":46523,"Name":"Wioska 15","Points":3742,"X":689,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82953Z"},{"ID":46524,"Name":"Wioska barbarzyƄska","Points":9875,"X":645,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829531Z"},{"ID":46525,"Name":"XDX","Points":10048,"X":608,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829531Z"},{"ID":46527,"Name":"Bosco","Points":9761,"X":558,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829532Z"},{"ID":46528,"Name":"Gotowa odpowiedz","Points":6705,"X":690,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829533Z"},{"ID":46529,"Name":"WAVELLIT","Points":10216,"X":708,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829533Z"},{"ID":46530,"Name":"Elo elo 8","Points":5202,"X":307,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829534Z"},{"ID":46531,"Name":"20 Karbon","Points":10083,"X":393,"Y":320,"Continent":"K33","Bonus":5,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829534Z"},{"ID":46532,"Name":"New World","Points":5141,"X":420,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829535Z"},{"ID":46534,"Name":"Wioska barbarzyƄska","Points":6263,"X":355,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829535Z"},{"ID":46535,"Name":"Na KraƄcu ƚwiata 018","Points":4170,"X":640,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829536Z"},{"ID":46536,"Name":"004","Points":9555,"X":464,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829536Z"},{"ID":46537,"Name":"[822] Odludzie","Points":6698,"X":706,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829537Z"},{"ID":46538,"Name":"Wioska barbarzyƄska","Points":6654,"X":619,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829537Z"},{"ID":46539,"Name":"a11","Points":5439,"X":683,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829538Z"},{"ID":46540,"Name":"Dream on","Points":3192,"X":293,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829538Z"},{"ID":46541,"Name":"New World","Points":10291,"X":428,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829539Z"},{"ID":46542,"Name":"Gites!","Points":2140,"X":389,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":8553904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829539Z"},{"ID":46543,"Name":"TWIERDZA .:090:.","Points":8581,"X":698,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82954Z"},{"ID":46544,"Name":"B025","Points":9500,"X":624,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82954Z"},{"ID":46545,"Name":"Zzzz - Kasztelania 001","Points":4562,"X":642,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829541Z"},{"ID":46546,"Name":"Wioska smurfĂłw","Points":9310,"X":525,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829542Z"},{"ID":46547,"Name":"Ave Why!","Points":5188,"X":502,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829542Z"},{"ID":46548,"Name":"Wioska barbarzyƄska","Points":5697,"X":547,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829543Z"},{"ID":46549,"Name":"XDX","Points":10292,"X":609,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829543Z"},{"ID":46550,"Name":"042. Ihrowiec","Points":7713,"X":701,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829544Z"},{"ID":46551,"Name":"Jan Ost N II","Points":5138,"X":702,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829544Z"},{"ID":46552,"Name":"Taran","Points":10068,"X":325,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829545Z"},{"ID":46553,"Name":"Lord Arsey KING","Points":8274,"X":650,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829545Z"},{"ID":46554,"Name":"Osada koczownikĂłw","Points":6395,"X":688,"Y":410,"Continent":"K46","Bonus":7,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829546Z"},{"ID":46555,"Name":"Wioska barbarzyƄska","Points":8003,"X":373,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829547Z"},{"ID":46556,"Name":"013.","Points":9976,"X":627,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829547Z"},{"ID":46557,"Name":"Z14","Points":9835,"X":314,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829548Z"},{"ID":46558,"Name":"029 tu będzie raj","Points":6752,"X":534,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829548Z"},{"ID":46559,"Name":"Avanti!","Points":6116,"X":287,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829549Z"},{"ID":46560,"Name":"Bunkier u Mariana","Points":8264,"X":325,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":849101177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829549Z"},{"ID":46562,"Name":"Wioska barbarzyƄska","Points":6558,"X":701,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82955Z"},{"ID":46563,"Name":"031. Wioska Lord Ɓukasz1997","Points":10795,"X":349,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82955Z"},{"ID":46564,"Name":"*012*","Points":8141,"X":681,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829551Z"},{"ID":46566,"Name":"054.","Points":5942,"X":704,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829551Z"},{"ID":46568,"Name":"Ave Why!","Points":1826,"X":310,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829552Z"},{"ID":46569,"Name":"KONFA TO MARKA, NARKA","Points":7305,"X":293,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829552Z"},{"ID":46570,"Name":"B#015","Points":9797,"X":698,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829553Z"},{"ID":46571,"Name":"rafisonik5","Points":8694,"X":511,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829553Z"},{"ID":46572,"Name":"Wioska barbarzyƄska","Points":2194,"X":703,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829554Z"},{"ID":46573,"Name":"Avanti!","Points":6697,"X":290,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829555Z"},{"ID":46574,"Name":"Wioska Wojtka","Points":3406,"X":587,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":8609713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829555Z"},{"ID":46575,"Name":"0144","Points":7607,"X":390,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829556Z"},{"ID":46576,"Name":"!36 76 Deleni","Points":10203,"X":667,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829556Z"},{"ID":46577,"Name":"086","Points":10365,"X":396,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829557Z"},{"ID":46578,"Name":"Grubasy 5","Points":3815,"X":295,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829557Z"},{"ID":46579,"Name":"Apollo","Points":7769,"X":699,"Y":428,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829558Z"},{"ID":46580,"Name":"KRÓL PAPI WIELKI","Points":8351,"X":629,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829558Z"},{"ID":46581,"Name":"Wioska 17","Points":3984,"X":691,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829559Z"},{"ID":46582,"Name":"017","Points":3697,"X":393,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829559Z"},{"ID":46583,"Name":"ZƂoty ƚwit","Points":6361,"X":577,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82956Z"},{"ID":46584,"Name":"STREFA GAZY | 003","Points":8983,"X":714,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82956Z"},{"ID":46585,"Name":"Cisza","Points":5292,"X":293,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829561Z"},{"ID":46586,"Name":"054","Points":8952,"X":462,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829561Z"},{"ID":46587,"Name":"002","Points":10469,"X":525,"Y":296,"Continent":"K25","Bonus":5,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829562Z"},{"ID":46588,"Name":"!36 66 Botosana","Points":9843,"X":663,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829563Z"},{"ID":46589,"Name":"Bessa 001","Points":10216,"X":640,"Y":656,"Continent":"K66","Bonus":9,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829563Z"},{"ID":46590,"Name":"B015","Points":2878,"X":624,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829564Z"},{"ID":46591,"Name":"!36 66 Ciprian Porumbescu","Points":9875,"X":662,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829564Z"},{"ID":46592,"Name":"C01","Points":9066,"X":705,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829565Z"},{"ID":46593,"Name":"O008","Points":9955,"X":339,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829565Z"},{"ID":46594,"Name":"Wioska barbarzyƄska","Points":9239,"X":423,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829566Z"},{"ID":46595,"Name":"090","Points":9895,"X":383,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829566Z"},{"ID":46596,"Name":"North 055","Points":9082,"X":511,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829567Z"},{"ID":46597,"Name":"020 Wioska barbarzyƄska","Points":9891,"X":600,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829568Z"},{"ID":46598,"Name":"Wyspa_41","Points":9638,"X":520,"Y":706,"Continent":"K75","Bonus":9,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829568Z"},{"ID":46600,"Name":"###102###","Points":10495,"X":582,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829569Z"},{"ID":46601,"Name":"New World","Points":10311,"X":437,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829569Z"},{"ID":46602,"Name":"251...Karki98","Points":11420,"X":453,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82957Z"},{"ID":46603,"Name":"Ave Why!","Points":4311,"X":312,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829571Z"},{"ID":46604,"Name":"093","Points":10559,"X":411,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829571Z"},{"ID":46605,"Name":"030","Points":9573,"X":661,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829572Z"},{"ID":46606,"Name":"052","Points":7774,"X":712,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829572Z"},{"ID":46607,"Name":"004:Osada koczownikĂłw","Points":8499,"X":378,"Y":327,"Continent":"K33","Bonus":4,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829573Z"},{"ID":46608,"Name":"XDX","Points":10113,"X":612,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829573Z"},{"ID":46609,"Name":"Wioska barbarzyƄska","Points":3221,"X":360,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829574Z"},{"ID":46611,"Name":"KEFALOS","Points":1739,"X":675,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":848890012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829574Z"},{"ID":46612,"Name":"komandos","Points":10043,"X":639,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829575Z"},{"ID":46613,"Name":"IĆ‚ĆŒa","Points":10063,"X":570,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829576Z"},{"ID":46614,"Name":"07-oss","Points":8269,"X":671,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829576Z"},{"ID":46615,"Name":"022","Points":9432,"X":524,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829577Z"},{"ID":46616,"Name":"[0118]","Points":10012,"X":442,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829577Z"},{"ID":46617,"Name":"###103###","Points":10495,"X":599,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829578Z"},{"ID":46618,"Name":"Oww Konfederacja","Points":4550,"X":614,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829578Z"},{"ID":46619,"Name":"Wioska barbarzyƄska","Points":9756,"X":520,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829579Z"},{"ID":46620,"Name":"Zloty ƚwit","Points":7187,"X":579,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829579Z"},{"ID":46621,"Name":"Wioska barbarzyƄska","Points":6058,"X":358,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82958Z"},{"ID":46622,"Name":"Wioska barbarzyƄska","Points":2282,"X":705,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82958Z"},{"ID":46623,"Name":"*000*","Points":9954,"X":713,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829581Z"},{"ID":46624,"Name":"#K75 0022","Points":5132,"X":515,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829582Z"},{"ID":46625,"Name":"0030","Points":2800,"X":323,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829582Z"},{"ID":46626,"Name":"Wioska barbarzyƄska","Points":2420,"X":651,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":699039013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829583Z"},{"ID":46627,"Name":"005","Points":4894,"X":288,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":848886200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829584Z"},{"ID":46628,"Name":"010","Points":2466,"X":313,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829584Z"},{"ID":46629,"Name":"New WorldA","Points":4994,"X":292,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829585Z"},{"ID":46630,"Name":"Taran","Points":6564,"X":321,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829585Z"},{"ID":46631,"Name":"Wioska barbarzyƄska","Points":10021,"X":380,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829586Z"},{"ID":46632,"Name":"[0245]","Points":6944,"X":285,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829586Z"},{"ID":46633,"Name":"...","Points":9036,"X":340,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829587Z"},{"ID":46635,"Name":"Wioska barbarzyƄska","Points":7749,"X":699,"Y":436,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829588Z"},{"ID":46636,"Name":"A#031","Points":9797,"X":714,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829588Z"},{"ID":46637,"Name":"Wioska barbarzyƄska","Points":7922,"X":533,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829589Z"},{"ID":46638,"Name":"Wioska MMario","Points":7268,"X":496,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829589Z"},{"ID":46639,"Name":"008b","Points":4579,"X":305,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82959Z"},{"ID":46640,"Name":"009","Points":5801,"X":351,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82959Z"},{"ID":46641,"Name":"Wioska barbarzyƄska","Points":4292,"X":640,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829591Z"},{"ID":46642,"Name":"Wioska barbarzyƄska","Points":7083,"X":712,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829591Z"},{"ID":46643,"Name":"????","Points":6878,"X":472,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829592Z"},{"ID":46644,"Name":"C.024","Points":7804,"X":711,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829593Z"},{"ID":46645,"Name":"Star","Points":9024,"X":339,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829593Z"},{"ID":46646,"Name":"Dream on","Points":9497,"X":294,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829594Z"},{"ID":46647,"Name":"Witten","Points":7660,"X":568,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829594Z"},{"ID":46648,"Name":"Wioska barbarzyƄska","Points":8946,"X":646,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829595Z"},{"ID":46649,"Name":"ObrzeĆŒe","Points":8817,"X":580,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829595Z"},{"ID":46651,"Name":"007","Points":4638,"X":699,"Y":560,"Continent":"K56","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829596Z"},{"ID":46652,"Name":"...03 am","Points":10495,"X":673,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829596Z"},{"ID":46653,"Name":"BOSS S1","Points":5391,"X":354,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829597Z"},{"ID":46654,"Name":"027","Points":4256,"X":663,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829598Z"},{"ID":46655,"Name":"Wioska barbarzyƄska","Points":5721,"X":547,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829598Z"},{"ID":46656,"Name":"EO EO","Points":10083,"X":287,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829599Z"},{"ID":46658,"Name":"Wioska Turystyczna 005","Points":7639,"X":712,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829599Z"},{"ID":46659,"Name":"!--","Points":2638,"X":658,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8296Z"},{"ID":46660,"Name":"040","Points":9050,"X":672,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8296Z"},{"ID":46661,"Name":"XDX","Points":9022,"X":597,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829601Z"},{"ID":46662,"Name":"C079","Points":9965,"X":354,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829601Z"},{"ID":46663,"Name":"Ave Why!","Points":4735,"X":307,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829602Z"},{"ID":46664,"Name":"O097","Points":8569,"X":331,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829602Z"},{"ID":46665,"Name":"--025--","Points":4866,"X":573,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829603Z"},{"ID":46666,"Name":"010 GĂłry Beorskie","Points":10252,"X":670,"Y":619,"Continent":"K66","Bonus":8,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829603Z"},{"ID":46667,"Name":"151...A","Points":6723,"X":396,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829604Z"},{"ID":46668,"Name":"Wioska barbarzyƄska","Points":6276,"X":317,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":7183372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829604Z"},{"ID":46670,"Name":"Z05","Points":9835,"X":316,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829605Z"},{"ID":46671,"Name":"Wioska dixon15pl","Points":6362,"X":539,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829605Z"},{"ID":46672,"Name":"Kurnik","Points":9408,"X":469,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829606Z"},{"ID":46673,"Name":"Wyspa 010","Points":7685,"X":296,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829606Z"},{"ID":46674,"Name":"Z 0002","Points":10221,"X":347,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829607Z"},{"ID":46676,"Name":"028 Wioska barbarzyƄska","Points":9077,"X":600,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829607Z"},{"ID":46677,"Name":"Wioska barbarzyƄska","Points":10380,"X":587,"Y":311,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829608Z"},{"ID":46678,"Name":"#0142 barbarzyƄska","Points":6709,"X":483,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829609Z"},{"ID":46679,"Name":"FAKE OR OFF","Points":9813,"X":410,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829609Z"},{"ID":46680,"Name":"002","Points":9653,"X":469,"Y":367,"Continent":"K34","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82961Z"},{"ID":46681,"Name":"!36 76 Romanesti","Points":7829,"X":662,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82961Z"},{"ID":46682,"Name":"#0276 Don Noobas","Points":5836,"X":466,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829611Z"},{"ID":46683,"Name":"Taran","Points":10300,"X":327,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829611Z"},{"ID":46684,"Name":"Wioska barbarzyƄska","Points":7350,"X":298,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829612Z"},{"ID":46686,"Name":"XDX","Points":9680,"X":609,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829612Z"},{"ID":46687,"Name":"Wioska Zorro 020","Points":8350,"X":676,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829613Z"},{"ID":46688,"Name":"016","Points":9379,"X":293,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829613Z"},{"ID":46689,"Name":"Elo elo 11","Points":5819,"X":305,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829614Z"},{"ID":46690,"Name":"New World","Points":10297,"X":420,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829615Z"},{"ID":46691,"Name":"wioska","Points":9483,"X":637,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829616Z"},{"ID":46692,"Name":"001","Points":8346,"X":349,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829616Z"},{"ID":46693,"Name":"###104###","Points":10495,"X":591,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829617Z"},{"ID":46694,"Name":"031 Wioska barbarzyƄska","Points":10160,"X":602,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829617Z"},{"ID":46695,"Name":"022","Points":5491,"X":651,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829618Z"},{"ID":46696,"Name":"Wioska barbarzyƄska","Points":5278,"X":495,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829618Z"},{"ID":46697,"Name":"024Flanki","Points":9592,"X":467,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829619Z"},{"ID":46698,"Name":"776","Points":8810,"X":345,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829619Z"},{"ID":46699,"Name":"Wioska barbarzyƄska","Points":5022,"X":395,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82962Z"},{"ID":46700,"Name":"Wioska barbarzyƄska","Points":9239,"X":377,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82962Z"},{"ID":46701,"Name":"148","Points":7636,"X":399,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829621Z"},{"ID":46702,"Name":"Taran","Points":10127,"X":686,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829621Z"},{"ID":46703,"Name":"Wioska barbarzyƄska","Points":5731,"X":712,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829622Z"},{"ID":46704,"Name":"C.034","Points":4784,"X":714,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829622Z"},{"ID":46705,"Name":"068 invidia","Points":5509,"X":545,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829623Z"},{"ID":46706,"Name":"Wioska 001","Points":6688,"X":563,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829624Z"},{"ID":46707,"Name":"Taran","Points":8411,"X":324,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829624Z"},{"ID":46708,"Name":"068.","Points":5026,"X":312,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829625Z"},{"ID":46709,"Name":"EE 010","Points":5734,"X":698,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829625Z"},{"ID":46710,"Name":"043|| Indus","Points":9039,"X":461,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829626Z"},{"ID":46711,"Name":"028.","Points":4048,"X":626,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829626Z"},{"ID":46712,"Name":"Wioska barbarzyƄska","Points":8732,"X":697,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829627Z"},{"ID":46713,"Name":"Wioska barbarzyƄska","Points":8018,"X":694,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829627Z"},{"ID":46714,"Name":"029.","Points":4047,"X":624,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829628Z"},{"ID":46715,"Name":"New WorldA","Points":8937,"X":290,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829628Z"},{"ID":46716,"Name":"[0228]","Points":7278,"X":284,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829629Z"},{"ID":46717,"Name":"New World","Points":10183,"X":423,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829629Z"},{"ID":46718,"Name":"Wioska barbarzyƄska 2x2","Points":5632,"X":571,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82963Z"},{"ID":46719,"Name":"Harmonia","Points":7889,"X":703,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82963Z"},{"ID":46720,"Name":"[0142]","Points":8958,"X":449,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829631Z"},{"ID":46721,"Name":"MojeDnoToWaszSzczyt","Points":9751,"X":505,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829631Z"},{"ID":46722,"Name":"Osada 3","Points":9570,"X":699,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829632Z"},{"ID":46723,"Name":"XDX","Points":6538,"X":595,"Y":310,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829632Z"},{"ID":46724,"Name":"Seredzice","Points":10030,"X":572,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829633Z"},{"ID":46725,"Name":"ElMajkelos VI","Points":10545,"X":413,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829634Z"},{"ID":46726,"Name":"030.","Points":3432,"X":625,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829634Z"},{"ID":46727,"Name":"Taran","Points":5701,"X":313,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829635Z"},{"ID":46728,"Name":"0073","Points":4965,"X":367,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829635Z"},{"ID":46729,"Name":"Wioska barbarzyƄska","Points":454,"X":583,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829636Z"},{"ID":46730,"Name":"043. Istor-o-Nal","Points":8651,"X":704,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829636Z"},{"ID":46732,"Name":"FAKE OR OFF","Points":9820,"X":412,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829637Z"},{"ID":46733,"Name":"Wiadro12","Points":9747,"X":674,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829637Z"},{"ID":46734,"Name":"048","Points":6186,"X":473,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829638Z"},{"ID":46735,"Name":"Familia Kuzyni","Points":2996,"X":375,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829638Z"},{"ID":46736,"Name":"039","Points":9409,"X":683,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829639Z"},{"ID":46738,"Name":"--010--","Points":7297,"X":572,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829639Z"},{"ID":46739,"Name":"????","Points":10393,"X":477,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82964Z"},{"ID":46740,"Name":"ZZ07","Points":9739,"X":310,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82964Z"},{"ID":46741,"Name":"Mniejsze zƂo 0087","Points":6894,"X":470,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829641Z"},{"ID":46742,"Name":"D001","Points":7138,"X":562,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829641Z"},{"ID":46743,"Name":"Bessa 005","Points":9985,"X":640,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829642Z"},{"ID":46744,"Name":"C0228","Points":7607,"X":293,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829642Z"},{"ID":46746,"Name":"003","Points":8587,"X":527,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829643Z"},{"ID":46748,"Name":"DALEKO","Points":10471,"X":532,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829644Z"},{"ID":46749,"Name":"TWIERDZA .:006:.","Points":10405,"X":697,"Y":574,"Continent":"K56","Bonus":4,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829644Z"},{"ID":46750,"Name":"Wioska barbarzyƄska","Points":9683,"X":342,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829645Z"},{"ID":46751,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":297,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829645Z"},{"ID":46752,"Name":"003","Points":9406,"X":387,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829646Z"},{"ID":46753,"Name":"Wiadro10","Points":6828,"X":674,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829646Z"},{"ID":46754,"Name":"[0157]","Points":8677,"X":446,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829647Z"},{"ID":46755,"Name":"A#040","Points":9797,"X":712,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829647Z"},{"ID":46756,"Name":"Wioska barbarzyƄska","Points":8828,"X":344,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829648Z"},{"ID":46757,"Name":"ZA27","Points":9394,"X":310,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829649Z"},{"ID":46758,"Name":"Wioska barbarzyƄska","Points":9778,"X":369,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829649Z"},{"ID":46759,"Name":"Taran","Points":8413,"X":314,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82965Z"},{"ID":46760,"Name":"Singularity","Points":47,"X":468,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849099965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82965Z"},{"ID":46761,"Name":"New World","Points":10294,"X":434,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829651Z"},{"ID":46762,"Name":"!36 66 Partesti de Jos","Points":9653,"X":660,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829651Z"},{"ID":46763,"Name":"DALEKO","Points":7801,"X":530,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829652Z"},{"ID":46764,"Name":"Kurnik","Points":8060,"X":469,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829652Z"},{"ID":46765,"Name":"0.17a","Points":9472,"X":456,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829653Z"},{"ID":46766,"Name":"070 invidia","Points":5711,"X":541,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829653Z"},{"ID":46767,"Name":"###105###","Points":10495,"X":582,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829654Z"},{"ID":46768,"Name":"219","Points":11417,"X":418,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829654Z"},{"ID":46769,"Name":"New World","Points":10291,"X":436,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829655Z"},{"ID":46770,"Name":"FAKE OR OFF","Points":9726,"X":403,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829656Z"},{"ID":46771,"Name":"Niezabyszewo","Points":9768,"X":465,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829656Z"},{"ID":46772,"Name":"Wioska barbarzyƄska","Points":7078,"X":705,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829657Z"},{"ID":46773,"Name":"Bagno 2","Points":9433,"X":484,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829657Z"},{"ID":46774,"Name":"213","Points":5506,"X":427,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829658Z"},{"ID":46775,"Name":"031.","Points":3749,"X":627,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829658Z"},{"ID":46776,"Name":"29. PƂutniki","Points":11215,"X":711,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829659Z"},{"ID":46777,"Name":"###106###","Points":10495,"X":598,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829659Z"},{"ID":46778,"Name":"Wioska barbarzyƄska","Points":9411,"X":696,"Y":435,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82966Z"},{"ID":46779,"Name":"WiedĆșma - Z 013","Points":381,"X":310,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82966Z"},{"ID":46780,"Name":"Wioska barbarzyƄska","Points":9294,"X":552,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829661Z"},{"ID":46781,"Name":"015","Points":5965,"X":707,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829661Z"},{"ID":46782,"Name":"140...centr","Points":7414,"X":449,"Y":347,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829662Z"},{"ID":46783,"Name":"EE 009","Points":6247,"X":701,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829662Z"},{"ID":46784,"Name":"078","Points":7000,"X":716,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829663Z"},{"ID":46785,"Name":"New World","Points":9707,"X":433,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829663Z"},{"ID":46786,"Name":"defik","Points":2446,"X":683,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":849098769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829664Z"},{"ID":46787,"Name":"06. JeĆŒyce","Points":9690,"X":510,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829664Z"},{"ID":46788,"Name":"FAKE OR OFF","Points":9816,"X":409,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829665Z"},{"ID":46789,"Name":"Wioska barbarzyƄska","Points":3495,"X":535,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829665Z"},{"ID":46790,"Name":"B007 Twierdza 3","Points":7353,"X":711,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829666Z"},{"ID":46791,"Name":"169","Points":8906,"X":379,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829667Z"},{"ID":46792,"Name":"*001*","Points":8954,"X":680,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829667Z"},{"ID":46793,"Name":"K35 - [016] Before Land","Points":10126,"X":587,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829668Z"},{"ID":46794,"Name":"190...segador","Points":10920,"X":428,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829668Z"},{"ID":46795,"Name":"023.","Points":9924,"X":469,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829669Z"},{"ID":46796,"Name":"0074","Points":10019,"X":683,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829669Z"},{"ID":46797,"Name":"W28","Points":2714,"X":694,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82967Z"},{"ID":46798,"Name":"Wioska barbarzyƄska","Points":7855,"X":714,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82967Z"},{"ID":46799,"Name":"009","Points":9828,"X":679,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829671Z"},{"ID":46800,"Name":"Chocim","Points":5522,"X":311,"Y":603,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829671Z"},{"ID":46801,"Name":"ZƂoty ƚwit","Points":6730,"X":579,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829672Z"},{"ID":46802,"Name":"Elo Elo 9","Points":6466,"X":306,"Y":576,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829672Z"},{"ID":46804,"Name":"Wioska barbarzyƄska","Points":5565,"X":334,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829673Z"},{"ID":46805,"Name":"New WorldA","Points":5432,"X":297,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829673Z"},{"ID":46806,"Name":"050","Points":10495,"X":400,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829674Z"},{"ID":46808,"Name":"Wioska04","Points":5527,"X":301,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829674Z"},{"ID":46809,"Name":"157","Points":7548,"X":392,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829675Z"},{"ID":46810,"Name":"Komandos","Points":10495,"X":643,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829675Z"},{"ID":46811,"Name":"Adamo2","Points":9690,"X":582,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829676Z"},{"ID":46812,"Name":"Wyspa 021","Points":3815,"X":298,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829677Z"},{"ID":46813,"Name":"Taran","Points":7209,"X":308,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829677Z"},{"ID":46814,"Name":"Wioska barbarzyƄska","Points":3990,"X":285,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849101647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829678Z"},{"ID":46815,"Name":"Avanti!","Points":4060,"X":291,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829678Z"},{"ID":46816,"Name":"206","Points":8301,"X":366,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829679Z"},{"ID":46817,"Name":"0133","Points":7815,"X":392,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829679Z"},{"ID":46818,"Name":"[0146]","Points":9125,"X":441,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82968Z"},{"ID":46820,"Name":"172","Points":8172,"X":382,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82968Z"},{"ID":46821,"Name":"Lord Arsey KING","Points":9014,"X":657,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829681Z"},{"ID":46822,"Name":"komandos48","Points":5381,"X":642,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829681Z"},{"ID":46823,"Name":"056","Points":7972,"X":709,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829682Z"},{"ID":46824,"Name":"014. Wioska barbarzyƄska","Points":8742,"X":675,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829682Z"},{"ID":46826,"Name":"Wioska barbarzyƄska","Points":8883,"X":568,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829683Z"},{"ID":46827,"Name":"006b","Points":5579,"X":307,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829683Z"},{"ID":46828,"Name":"A#045","Points":9744,"X":706,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829684Z"},{"ID":46829,"Name":"Początek","Points":9584,"X":308,"Y":580,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829684Z"},{"ID":46830,"Name":"Wioska barbarzyƄska","Points":7784,"X":301,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829685Z"},{"ID":46831,"Name":"Kurnik","Points":10495,"X":466,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829686Z"},{"ID":46832,"Name":"**Dzikos**","Points":9818,"X":296,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829686Z"},{"ID":46833,"Name":"Wioska","Points":3594,"X":711,"Y":530,"Continent":"K57","Bonus":0,"PlayerID":699034094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829687Z"},{"ID":46834,"Name":"006a","Points":4970,"X":309,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829687Z"},{"ID":46835,"Name":"Wioska barbarzyƄska","Points":2287,"X":705,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829688Z"},{"ID":46836,"Name":"Kolonia 01","Points":9814,"X":305,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829688Z"},{"ID":46837,"Name":"Szlachcic","Points":6207,"X":364,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829689Z"},{"ID":46838,"Name":"010","Points":6965,"X":661,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82969Z"},{"ID":46840,"Name":"044.Stradi","Points":10495,"X":434,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82969Z"},{"ID":46841,"Name":"###046###","Points":10495,"X":594,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829691Z"},{"ID":46842,"Name":"013","Points":7882,"X":295,"Y":554,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829691Z"},{"ID":46843,"Name":"Taran","Points":8213,"X":321,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829692Z"},{"ID":46844,"Name":"Wioska barbarzyƄska","Points":2440,"X":282,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":698879638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829692Z"},{"ID":46845,"Name":"O083","Points":9816,"X":329,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829693Z"},{"ID":46846,"Name":"Lord Arsey KING","Points":8829,"X":658,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829694Z"},{"ID":46847,"Name":"042.","Points":10503,"X":450,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829694Z"},{"ID":46848,"Name":"Avanti!","Points":7132,"X":285,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829695Z"},{"ID":46850,"Name":"02. Ostia","Points":10215,"X":712,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829695Z"},{"ID":46851,"Name":"Z.05","Points":4961,"X":700,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829696Z"},{"ID":46852,"Name":"D016","Points":5810,"X":354,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829697Z"},{"ID":46853,"Name":"Wioska 111","Points":3778,"X":496,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829697Z"},{"ID":46854,"Name":"B07","Points":11321,"X":704,"Y":551,"Continent":"K57","Bonus":1,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829698Z"},{"ID":46856,"Name":"###047###","Points":10495,"X":590,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829698Z"},{"ID":46857,"Name":"D003","Points":5695,"X":560,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829699Z"},{"ID":46858,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":296,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829699Z"},{"ID":46859,"Name":"[D]_[005] Dejv.oldplyr","Points":5329,"X":285,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8297Z"},{"ID":46860,"Name":"Tak ZO","Points":12021,"X":526,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8297Z"},{"ID":46861,"Name":"FAKE OR OFF","Points":9814,"X":413,"Y":311,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829701Z"},{"ID":46862,"Name":"077 invidia","Points":5269,"X":533,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829701Z"},{"ID":46863,"Name":"Wioska barbarzyƄska","Points":6212,"X":356,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829702Z"},{"ID":46864,"Name":"Po jednej tabletce","Points":6657,"X":688,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829702Z"},{"ID":46865,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":660,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829703Z"},{"ID":46866,"Name":"A#043","Points":9744,"X":706,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829703Z"},{"ID":46867,"Name":"FAKE OR OFF","Points":9825,"X":408,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829704Z"},{"ID":46868,"Name":"O69 Texcoco","Points":10475,"X":696,"Y":571,"Continent":"K56","Bonus":8,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829704Z"},{"ID":46869,"Name":"bucksbarzyƄskamiiiru","Points":8087,"X":313,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829705Z"},{"ID":46870,"Name":"B029","Points":10311,"X":626,"Y":325,"Continent":"K36","Bonus":4,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829705Z"},{"ID":46871,"Name":"TWIERDZA .:051:.","Points":7587,"X":694,"Y":575,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829706Z"},{"ID":46872,"Name":"147","Points":7202,"X":401,"Y":684,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829706Z"},{"ID":46873,"Name":"MojeDnoToWaszSzczyt","Points":9955,"X":498,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829707Z"},{"ID":46874,"Name":"Village","Points":12154,"X":501,"Y":594,"Continent":"K55","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829707Z"},{"ID":46875,"Name":"New World","Points":10230,"X":430,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829708Z"},{"ID":46877,"Name":"Ave Why!","Points":9925,"X":449,"Y":619,"Continent":"K64","Bonus":0,"PlayerID":8729672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829709Z"},{"ID":46878,"Name":"EE 002","Points":9290,"X":701,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829709Z"},{"ID":46879,"Name":"[0184]","Points":7990,"X":288,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82971Z"},{"ID":46880,"Name":"ZƂoty ƚwit","Points":10127,"X":590,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82971Z"},{"ID":46881,"Name":"A#002","Points":9797,"X":714,"Y":519,"Continent":"K57","Bonus":1,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829711Z"},{"ID":46883,"Name":"D011","Points":9566,"X":352,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829711Z"},{"ID":46884,"Name":"Zaplecze Barba 014","Points":8567,"X":370,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829712Z"},{"ID":46885,"Name":"Wioska Adamol","Points":10795,"X":583,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829712Z"},{"ID":46886,"Name":"Wioska barbarzyƄska","Points":2086,"X":635,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849100782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829713Z"},{"ID":46887,"Name":"043","Points":6315,"X":657,"Y":352,"Continent":"K36","Bonus":2,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829713Z"},{"ID":46888,"Name":"Wioska barbarzyƄska","Points":8698,"X":639,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829714Z"},{"ID":46889,"Name":"007c","Points":4431,"X":305,"Y":421,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829714Z"},{"ID":46890,"Name":"028","Points":4753,"X":706,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829715Z"},{"ID":46892,"Name":"FP015","Points":10201,"X":479,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829715Z"},{"ID":46893,"Name":"O146","Points":4763,"X":351,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829716Z"},{"ID":46895,"Name":"Familia Kuzyni","Points":2578,"X":377,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829716Z"},{"ID":46896,"Name":"Henia","Points":8969,"X":526,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829717Z"},{"ID":46897,"Name":"008","Points":6251,"X":306,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829717Z"},{"ID":46898,"Name":"Wioska barbarzyƄska 001","Points":9966,"X":563,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829718Z"},{"ID":46899,"Name":"123","Points":4291,"X":704,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829718Z"},{"ID":46900,"Name":"Bessa 006","Points":9989,"X":639,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829719Z"},{"ID":46901,"Name":"5..","Points":1003,"X":646,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82972Z"},{"ID":46902,"Name":"NBT C","Points":9232,"X":595,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82972Z"},{"ID":46903,"Name":"*04 GAWRA*","Points":9121,"X":302,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829721Z"},{"ID":46904,"Name":"#K75 0008","Points":5088,"X":519,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829721Z"},{"ID":46905,"Name":"110","Points":8840,"X":410,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829722Z"},{"ID":46906,"Name":"SKORPION:)","Points":3349,"X":455,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":7518529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829723Z"},{"ID":46907,"Name":"!36 65 Mihoveni","Points":7324,"X":659,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829723Z"},{"ID":46908,"Name":"O130","Points":6428,"X":331,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829724Z"},{"ID":46909,"Name":"--003--","Points":8310,"X":571,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829725Z"},{"ID":46910,"Name":"Wiadro14","Points":5318,"X":673,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829725Z"},{"ID":46911,"Name":"Suppi","Points":9549,"X":302,"Y":416,"Continent":"K43","Bonus":8,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829726Z"},{"ID":46913,"Name":"bucksbarzyƄskamiiiru","Points":9551,"X":318,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829727Z"},{"ID":46914,"Name":"WIOSKA AZGARD","Points":7515,"X":706,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829727Z"},{"ID":46915,"Name":"Wioska barbarzyƄska","Points":5135,"X":357,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829728Z"},{"ID":46916,"Name":"008. Amnesia","Points":9787,"X":707,"Y":514,"Continent":"K57","Bonus":1,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829729Z"},{"ID":46918,"Name":"Bastion StraĆŒnikĂłw","Points":8198,"X":705,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82973Z"},{"ID":46919,"Name":"249...Kaban1998","Points":9573,"X":460,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82973Z"},{"ID":46920,"Name":"AAA","Points":9815,"X":320,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829731Z"},{"ID":46922,"Name":"U.007","Points":5638,"X":293,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829732Z"},{"ID":46923,"Name":"041","Points":9386,"X":675,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829733Z"},{"ID":46924,"Name":"Flap","Points":8901,"X":607,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829733Z"},{"ID":46925,"Name":"MojeDnoToWaszSzczyt","Points":9947,"X":498,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829734Z"},{"ID":46926,"Name":"008c","Points":4803,"X":307,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829735Z"},{"ID":46927,"Name":"203","Points":7687,"X":367,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829735Z"},{"ID":46928,"Name":"bastion","Points":10019,"X":690,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829736Z"},{"ID":46929,"Name":"-06-","Points":9472,"X":576,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829736Z"},{"ID":46930,"Name":"035. Hradczany","Points":10495,"X":708,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829737Z"},{"ID":46931,"Name":"KRÓL PAPI WIELKI","Points":9361,"X":650,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829737Z"},{"ID":46932,"Name":"C.040","Points":4337,"X":715,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829738Z"},{"ID":46933,"Name":"Wiadro03","Points":9067,"X":671,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829738Z"},{"ID":46934,"Name":"57 ggggg","Points":8969,"X":294,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829739Z"},{"ID":46935,"Name":".achim.","Points":3414,"X":481,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82974Z"},{"ID":46936,"Name":"a-2","Points":10495,"X":674,"Y":619,"Continent":"K66","Bonus":1,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82974Z"},{"ID":46937,"Name":"T-Killa","Points":7976,"X":694,"Y":427,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829741Z"},{"ID":46938,"Name":"Taran","Points":10049,"X":328,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829741Z"},{"ID":46939,"Name":"[0133]","Points":9339,"X":442,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829742Z"},{"ID":46940,"Name":"008","Points":10153,"X":392,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829742Z"},{"ID":46941,"Name":"FAKE OR OFF","Points":9813,"X":400,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829743Z"},{"ID":46942,"Name":"005 WUEM ENCEHA","Points":10160,"X":612,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829744Z"},{"ID":46943,"Name":"0068","Points":6105,"X":368,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829744Z"},{"ID":46944,"Name":"006. GĂłrki GĂłrzyste","Points":9747,"X":652,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829745Z"},{"ID":46945,"Name":"042","Points":7316,"X":675,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829745Z"},{"ID":46946,"Name":"Kagusiowo 1","Points":10684,"X":299,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829746Z"},{"ID":46947,"Name":"Wioska Zorro 003","Points":12154,"X":681,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":849080702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829746Z"},{"ID":46948,"Name":"Dream on","Points":4495,"X":294,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829747Z"},{"ID":46949,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":9747,"X":497,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829747Z"},{"ID":46950,"Name":"Wioska barbarzyƄska","Points":9742,"X":342,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829748Z"},{"ID":46951,"Name":"02-oss","Points":10187,"X":671,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829749Z"},{"ID":46952,"Name":"*INTERTWINED*","Points":6696,"X":508,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829749Z"},{"ID":46953,"Name":"Winterfell.013","Points":10178,"X":451,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82975Z"},{"ID":46954,"Name":"Gross Stein","Points":2789,"X":345,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82975Z"},{"ID":46955,"Name":"ZƂoty ƚwit","Points":10119,"X":578,"Y":298,"Continent":"K25","Bonus":5,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829751Z"},{"ID":46956,"Name":"Wioska barbarzyƄska","Points":3850,"X":666,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829752Z"},{"ID":46957,"Name":"Icemark","Points":8060,"X":706,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829752Z"},{"ID":46958,"Name":"Kagusiowo 9","Points":3725,"X":301,"Y":440,"Continent":"K43","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829753Z"},{"ID":46959,"Name":"PóƂnocny Bagdad","Points":10068,"X":615,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829753Z"},{"ID":46960,"Name":"[B]_[034] Dejv.oldplyr","Points":8993,"X":428,"Y":351,"Continent":"K34","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829754Z"},{"ID":46961,"Name":"Dzik 13","Points":4820,"X":297,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829755Z"},{"ID":46962,"Name":"O024","Points":9976,"X":337,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829755Z"},{"ID":46963,"Name":"023","Points":3141,"X":651,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829756Z"},{"ID":46964,"Name":"D014","Points":9624,"X":349,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829756Z"},{"ID":46965,"Name":"Zaplecze Barba 013","Points":8837,"X":369,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829757Z"},{"ID":46966,"Name":"stickman3333","Points":8733,"X":597,"Y":668,"Continent":"K65","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829757Z"},{"ID":46967,"Name":"G002 zzz","Points":10066,"X":514,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829758Z"},{"ID":46969,"Name":"[0246]","Points":5668,"X":285,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829759Z"},{"ID":46971,"Name":"O082","Points":9761,"X":335,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829759Z"},{"ID":46972,"Name":"###107###","Points":10495,"X":588,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82976Z"},{"ID":46973,"Name":"0583","Points":7821,"X":577,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82976Z"},{"ID":46974,"Name":"Shire","Points":11898,"X":413,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829761Z"},{"ID":46975,"Name":"Taran","Points":9888,"X":320,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829761Z"},{"ID":46976,"Name":"19 Adamuswielki2..","Points":9811,"X":294,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829762Z"},{"ID":46977,"Name":"018","Points":4217,"X":648,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829762Z"},{"ID":46978,"Name":"D005","Points":7717,"X":345,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829763Z"},{"ID":46979,"Name":"=090= Wioska barbarzyƄska","Points":9324,"X":704,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829763Z"},{"ID":46980,"Name":"Nowa 55","Points":7434,"X":695,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829764Z"},{"ID":46981,"Name":"a001","Points":1315,"X":683,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829764Z"},{"ID":46982,"Name":"kto ananasowy pod wodą ma dom","Points":9479,"X":710,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829765Z"},{"ID":46983,"Name":"Wioska barbarzyƄska","Points":6898,"X":510,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829765Z"},{"ID":46984,"Name":"Wioska barbarzyƄska","Points":3605,"X":381,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829766Z"},{"ID":46985,"Name":"Kamienne Drzwi","Points":8900,"X":706,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829767Z"},{"ID":46986,"Name":"036. Domek na wodzie","Points":2611,"X":500,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829767Z"},{"ID":46987,"Name":"Taran","Points":10049,"X":323,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829768Z"},{"ID":46989,"Name":"!--","Points":4351,"X":656,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829768Z"},{"ID":46990,"Name":"!--","Points":2156,"X":657,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829769Z"},{"ID":46991,"Name":"228...M","Points":4957,"X":398,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829769Z"},{"ID":46992,"Name":"--011--","Points":7357,"X":572,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82977Z"},{"ID":46993,"Name":"Wioska dawszz4","Points":3734,"X":293,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":849094688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82977Z"},{"ID":46994,"Name":"EO EO","Points":10083,"X":286,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829771Z"},{"ID":46995,"Name":"Wioska barbarzyƄska","Points":3643,"X":305,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829771Z"},{"ID":46996,"Name":"004 Twierdza","Points":8683,"X":626,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829772Z"},{"ID":46997,"Name":"Winterfell.020","Points":10178,"X":456,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829772Z"},{"ID":46998,"Name":"005","Points":5634,"X":653,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829773Z"},{"ID":46999,"Name":"#037","Points":2688,"X":554,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829773Z"},{"ID":47000,"Name":"!36 65 Dragosa","Points":9841,"X":658,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829774Z"},{"ID":47001,"Name":"032.","Points":3432,"X":626,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829774Z"},{"ID":47002,"Name":"p0pppp","Points":9613,"X":291,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829775Z"},{"ID":47003,"Name":"North K25","Points":2694,"X":535,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829775Z"},{"ID":47005,"Name":"#0273 olcixx","Points":6017,"X":465,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829776Z"},{"ID":47006,"Name":"Wioska barbarzyƄska","Points":9134,"X":692,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829777Z"},{"ID":47007,"Name":"Jednak wolę gofry","Points":9376,"X":459,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829777Z"},{"ID":47008,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":663,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829778Z"},{"ID":47009,"Name":"Wioska ZWIADOWCA 2","Points":771,"X":287,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":8370183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829778Z"},{"ID":47010,"Name":"C0251","Points":5452,"X":292,"Y":552,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829779Z"},{"ID":47011,"Name":"13 barbarzyƄska..","Points":9198,"X":297,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829779Z"},{"ID":47012,"Name":"O084","Points":9882,"X":338,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82978Z"},{"ID":47013,"Name":"015.Night Raid","Points":6739,"X":491,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82978Z"},{"ID":47014,"Name":"komandos","Points":9219,"X":640,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829781Z"},{"ID":47015,"Name":"O020","Points":9962,"X":335,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829781Z"},{"ID":47016,"Name":"Wioska barbarzyƄska","Points":2912,"X":650,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829782Z"},{"ID":47017,"Name":"Wioska barbarzyƄska","Points":3724,"X":390,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829782Z"},{"ID":47018,"Name":"Wioska barbarzyƄska","Points":8851,"X":700,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829783Z"},{"ID":47019,"Name":"C083","Points":9602,"X":356,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829784Z"},{"ID":47020,"Name":"[0197]","Points":7675,"X":288,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829784Z"},{"ID":47021,"Name":"0088","Points":9993,"X":613,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829785Z"},{"ID":47022,"Name":"066 invidia","Points":6335,"X":546,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829785Z"},{"ID":47023,"Name":"Taran","Points":9964,"X":324,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829786Z"},{"ID":47024,"Name":"a moĆŒe off ? :)","Points":5639,"X":682,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829786Z"},{"ID":47025,"Name":"Wioska barbarzyƄska","Points":9905,"X":635,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829787Z"},{"ID":47026,"Name":"Idę po swoje","Points":6805,"X":687,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829787Z"},{"ID":47027,"Name":"ZƂomowisko","Points":7515,"X":607,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":569790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829788Z"},{"ID":47028,"Name":"StatekMatka","Points":5028,"X":478,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":848995291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829788Z"},{"ID":47029,"Name":"EO EO","Points":7625,"X":287,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829789Z"},{"ID":47030,"Name":"Bzyk","Points":5087,"X":293,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829789Z"},{"ID":47031,"Name":"Bounty","Points":9761,"X":554,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82979Z"},{"ID":47032,"Name":"037|| Serpens","Points":6352,"X":461,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82979Z"},{"ID":47033,"Name":"004","Points":8087,"X":525,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829791Z"},{"ID":47034,"Name":"007d","Points":4611,"X":302,"Y":422,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829792Z"},{"ID":47035,"Name":"Wioska barbarzyƄska","Points":6291,"X":392,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829792Z"},{"ID":47037,"Name":"043","Points":6704,"X":679,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829793Z"},{"ID":47038,"Name":"XDX","Points":9389,"X":607,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829793Z"},{"ID":47039,"Name":"-15-","Points":8042,"X":573,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829794Z"},{"ID":47040,"Name":"0445","Points":10019,"X":557,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829794Z"},{"ID":47041,"Name":"Wioska krumlow 7","Points":2897,"X":595,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829795Z"},{"ID":47042,"Name":"#138#","Points":8902,"X":643,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829795Z"},{"ID":47043,"Name":"[0247]","Points":6333,"X":285,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829796Z"},{"ID":47044,"Name":"210...segador","Points":10877,"X":451,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829796Z"},{"ID":47045,"Name":"BRICKLEBERRY","Points":9899,"X":514,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829797Z"},{"ID":47046,"Name":"Wioska Hubix","Points":10083,"X":694,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829797Z"},{"ID":47047,"Name":"FP029","Points":8838,"X":474,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829798Z"},{"ID":47048,"Name":"Wioska barbarzyƄska","Points":3657,"X":658,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829798Z"},{"ID":47049,"Name":"001 Texas","Points":5769,"X":348,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":849101293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829799Z"},{"ID":47050,"Name":"S017","Points":5464,"X":689,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829799Z"},{"ID":47051,"Name":"UltraInstynkt","Points":9994,"X":614,"Y":316,"Continent":"K36","Bonus":3,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8298Z"},{"ID":47053,"Name":"ZzZzZ Sylwek","Points":7910,"X":697,"Y":571,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8298Z"},{"ID":47054,"Name":"WiedĆșma - Z 007","Points":1900,"X":303,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829801Z"},{"ID":47055,"Name":"059 invidia","Points":6176,"X":543,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829801Z"},{"ID":47056,"Name":"ZA29","Points":9835,"X":313,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829802Z"},{"ID":47058,"Name":"Aleppppp","Points":4487,"X":291,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829802Z"},{"ID":47060,"Name":"C0339","Points":3697,"X":296,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829803Z"},{"ID":47061,"Name":"011","Points":7202,"X":621,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829803Z"},{"ID":47062,"Name":"New World","Points":10295,"X":422,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829804Z"},{"ID":47063,"Name":"W.181/20","Points":10242,"X":615,"Y":531,"Continent":"K56","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829804Z"},{"ID":47064,"Name":"Zaplecze barba 3","Points":9809,"X":364,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829805Z"},{"ID":47065,"Name":"0104","Points":8909,"X":709,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829806Z"},{"ID":47066,"Name":"bucksbarzyƄskamiiiru","Points":6685,"X":325,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829806Z"},{"ID":47067,"Name":"S023","Points":3524,"X":685,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829807Z"},{"ID":47068,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9825,"X":486,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829807Z"},{"ID":47069,"Name":"008","Points":5423,"X":356,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829808Z"},{"ID":47070,"Name":"113 invidia","Points":10401,"X":504,"Y":712,"Continent":"K75","Bonus":2,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829808Z"},{"ID":47071,"Name":"EO EO","Points":10019,"X":290,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829809Z"},{"ID":47072,"Name":"Cieszyn","Points":9857,"X":488,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829809Z"},{"ID":47074,"Name":"Wancki","Points":9861,"X":512,"Y":293,"Continent":"K25","Bonus":9,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82981Z"},{"ID":47075,"Name":"B002","Points":8456,"X":622,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82981Z"},{"ID":47076,"Name":"0076 Z003","Points":5428,"X":445,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829811Z"},{"ID":47078,"Name":"017 Wioska barbarzyƄska","Points":9891,"X":603,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829811Z"},{"ID":47079,"Name":"ZƂoty ƚwit","Points":10184,"X":574,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829812Z"},{"ID":47080,"Name":"Wioska 12","Points":5433,"X":693,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829812Z"},{"ID":47081,"Name":"0sada koczownikĂłw","Points":9597,"X":691,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829813Z"},{"ID":47082,"Name":"001","Points":9470,"X":385,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829813Z"},{"ID":47083,"Name":"132 invidia","Points":9373,"X":498,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829814Z"},{"ID":47084,"Name":"Grubasy 6","Points":3563,"X":296,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829814Z"},{"ID":47085,"Name":"005","Points":7027,"X":387,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829815Z"},{"ID":47086,"Name":"D002","Points":9818,"X":349,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829816Z"},{"ID":47087,"Name":"Wioska barbarzyƄska","Points":5612,"X":619,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829816Z"},{"ID":47088,"Name":"New World","Points":7602,"X":438,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829817Z"},{"ID":47089,"Name":"Szlachcic","Points":10479,"X":394,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829817Z"},{"ID":47090,"Name":"New WorldA","Points":6135,"X":293,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829818Z"},{"ID":47092,"Name":"[0137]","Points":9195,"X":449,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829818Z"},{"ID":47093,"Name":"Bez emocji","Points":8157,"X":352,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829819Z"},{"ID":47094,"Name":"XXXX","Points":10025,"X":566,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829819Z"},{"ID":47095,"Name":"0054","Points":10252,"X":579,"Y":691,"Continent":"K65","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82982Z"},{"ID":47096,"Name":"????","Points":10503,"X":472,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82982Z"},{"ID":47097,"Name":"=0014=","Points":8411,"X":404,"Y":317,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829821Z"},{"ID":47098,"Name":"XDX","Points":11164,"X":602,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829821Z"},{"ID":47099,"Name":"Wioska barbarzyƄska","Points":7900,"X":714,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829822Z"},{"ID":47100,"Name":"Wioska Arystek","Points":9476,"X":526,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":7590135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829822Z"},{"ID":47101,"Name":"Wioska barbarzyƄska","Points":3613,"X":644,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829823Z"},{"ID":47103,"Name":"Wioska barbarzyƄska","Points":8249,"X":375,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829823Z"},{"ID":47104,"Name":"[0229]","Points":6776,"X":287,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829824Z"},{"ID":47105,"Name":"PóƂnocny Bagdad","Points":9899,"X":618,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829824Z"},{"ID":47106,"Name":"Taran","Points":6262,"X":314,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829825Z"},{"ID":47107,"Name":"Winterfell.002","Points":10178,"X":447,"Y":298,"Continent":"K24","Bonus":8,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829826Z"},{"ID":47108,"Name":"W29","Points":1762,"X":693,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829826Z"},{"ID":47109,"Name":"022# Cassandrav2","Points":6945,"X":443,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829827Z"},{"ID":47110,"Name":"Wioska barbarzyƄska","Points":1413,"X":660,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829827Z"},{"ID":47111,"Name":"042 Wioska barbarzyƄska","Points":5853,"X":612,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829828Z"},{"ID":47112,"Name":"001.","Points":10385,"X":565,"Y":326,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829828Z"},{"ID":47113,"Name":"###048###","Points":10495,"X":599,"Y":683,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829829Z"},{"ID":47114,"Name":"Krowodrza","Points":10200,"X":690,"Y":398,"Continent":"K36","Bonus":5,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82983Z"},{"ID":47116,"Name":"209","Points":7627,"X":425,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82983Z"},{"ID":47117,"Name":"137","Points":6798,"X":403,"Y":683,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829831Z"},{"ID":47118,"Name":"FAKE OR OFF","Points":9707,"X":407,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829831Z"},{"ID":47119,"Name":"029","Points":3637,"X":655,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829832Z"},{"ID":47120,"Name":"bucksbarzyƄskamiiiru","Points":2229,"X":326,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829832Z"},{"ID":47121,"Name":"012","Points":8658,"X":290,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829833Z"},{"ID":47122,"Name":"043","Points":10495,"X":412,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829833Z"},{"ID":47123,"Name":"Wioska Kaczerki","Points":8093,"X":375,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829834Z"},{"ID":47124,"Name":"CiemnogrĂłd #8","Points":6797,"X":332,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829835Z"},{"ID":47125,"Name":"STREFA GAZY | 001","Points":9544,"X":712,"Y":479,"Continent":"K47","Bonus":8,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829835Z"},{"ID":47127,"Name":"Lord Arsey KING","Points":9889,"X":656,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829836Z"},{"ID":47128,"Name":"Wioska Kosiu461","Points":9807,"X":710,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829837Z"},{"ID":47129,"Name":"!--","Points":5174,"X":656,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829837Z"},{"ID":47131,"Name":"Początek","Points":6220,"X":303,"Y":578,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829838Z"},{"ID":47132,"Name":"Wioska barbarzyƄska","Points":8787,"X":385,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829838Z"},{"ID":47133,"Name":"Początek","Points":5034,"X":301,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829839Z"},{"ID":47134,"Name":"039.Stradi","Points":10495,"X":433,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829839Z"},{"ID":47135,"Name":"Wioska barbarzyƄska","Points":346,"X":306,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82984Z"},{"ID":47136,"Name":"ƚwiętojaƄska","Points":2620,"X":483,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698848373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82984Z"},{"ID":47137,"Name":"Wioska barbarzyƄska","Points":5670,"X":353,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829841Z"},{"ID":47138,"Name":"Daleko od domu","Points":6594,"X":658,"Y":354,"Continent":"K36","Bonus":1,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829842Z"},{"ID":47139,"Name":"Wioska","Points":10061,"X":693,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829842Z"},{"ID":47140,"Name":"STREFA GAZY | 002","Points":9544,"X":707,"Y":471,"Continent":"K47","Bonus":9,"PlayerID":9228039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829843Z"},{"ID":47142,"Name":"!36 66 Dragoiesti","Points":9650,"X":665,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829843Z"},{"ID":47143,"Name":"Wioska barbarzyƄska","Points":4081,"X":466,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829844Z"},{"ID":47144,"Name":"075","Points":7884,"X":717,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829845Z"},{"ID":47145,"Name":"0147","Points":7339,"X":386,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829845Z"},{"ID":47147,"Name":"#0139 barbarzyƄska","Points":7865,"X":484,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829846Z"},{"ID":47148,"Name":"ZZZ","Points":9761,"X":535,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829846Z"},{"ID":47149,"Name":"bucksbarzyƄskamiiiru","Points":8306,"X":315,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829847Z"},{"ID":47150,"Name":"052 invidia","Points":10414,"X":521,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829847Z"},{"ID":47151,"Name":"Wioska barbarzyƄska","Points":7014,"X":710,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829848Z"},{"ID":47153,"Name":"Wioska barbarzyƄska","Points":4064,"X":541,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829849Z"},{"ID":47154,"Name":"=080= drago 7","Points":10501,"X":707,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829849Z"},{"ID":47155,"Name":"XXXX","Points":10178,"X":565,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82985Z"},{"ID":47156,"Name":"Wioska barbarzyƄska","Points":5283,"X":391,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82985Z"},{"ID":47157,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":294,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829851Z"},{"ID":47158,"Name":"09. Toussaint","Points":9526,"X":709,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829852Z"},{"ID":47159,"Name":"Wioska barbarzyƄska","Points":8568,"X":559,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829852Z"},{"ID":47160,"Name":"Wioska","Points":8390,"X":712,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":699034094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829853Z"},{"ID":47161,"Name":"New World","Points":10290,"X":435,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829853Z"},{"ID":47162,"Name":"015Roztopy","Points":9716,"X":471,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829854Z"},{"ID":47164,"Name":"##1","Points":9059,"X":349,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829854Z"},{"ID":47165,"Name":"013.","Points":10838,"X":470,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829855Z"},{"ID":47166,"Name":"022 Wioska barbarzyƄska","Points":9566,"X":600,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829855Z"},{"ID":47167,"Name":"ZƂoty ƚwit","Points":10119,"X":585,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829856Z"},{"ID":47168,"Name":"D003","Points":9220,"X":350,"Y":644,"Continent":"K63","Bonus":4,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829857Z"},{"ID":47169,"Name":"[0230]","Points":5585,"X":292,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829857Z"},{"ID":47170,"Name":"Didi","Points":1638,"X":689,"Y":586,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829858Z"},{"ID":47171,"Name":"037","Points":2403,"X":660,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829858Z"},{"ID":47172,"Name":"050.","Points":3722,"X":637,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829859Z"},{"ID":47173,"Name":"Zzzz - Kasztelania 003","Points":3901,"X":642,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829859Z"},{"ID":47174,"Name":"*INTERTWINED*","Points":7098,"X":509,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82986Z"},{"ID":47176,"Name":"PiekƂo to inni","Points":7472,"X":643,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829861Z"},{"ID":47178,"Name":"007","Points":3629,"X":310,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829861Z"},{"ID":47179,"Name":"W31","Points":1895,"X":696,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829862Z"},{"ID":47180,"Name":"Wioska 001","Points":10061,"X":688,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829862Z"},{"ID":47181,"Name":"C085","Points":7440,"X":361,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829863Z"},{"ID":47182,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":294,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829864Z"},{"ID":47183,"Name":"23.B.A.P","Points":6319,"X":692,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829864Z"},{"ID":47184,"Name":"PIROTECHNIK 006","Points":3001,"X":351,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829865Z"},{"ID":47185,"Name":"Szlachcic","Points":10116,"X":381,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829865Z"},{"ID":47186,"Name":"152...B","Points":6453,"X":397,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829866Z"},{"ID":47187,"Name":"=112= Wioska wyncel","Points":7038,"X":703,"Y":558,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829867Z"},{"ID":47188,"Name":"###108###","Points":10495,"X":586,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829867Z"},{"ID":47189,"Name":"KrĂłlowy Most","Points":10409,"X":704,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":849102464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829868Z"},{"ID":47190,"Name":"-02-","Points":9472,"X":579,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829868Z"},{"ID":47191,"Name":"--035--","Points":4138,"X":569,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829869Z"},{"ID":47192,"Name":"031","Points":6535,"X":510,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829869Z"},{"ID":47193,"Name":"024. FudĆŒi","Points":10495,"X":713,"Y":530,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82987Z"},{"ID":47194,"Name":"Wioska barbarzyƄska","Points":5379,"X":444,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82987Z"},{"ID":47195,"Name":"Wioska 15","Points":7517,"X":524,"Y":504,"Continent":"K55","Bonus":0,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829871Z"},{"ID":47196,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":498,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829872Z"},{"ID":47198,"Name":"011","Points":2976,"X":391,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":8153941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829872Z"},{"ID":47199,"Name":"W30","Points":1591,"X":697,"Y":412,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829873Z"},{"ID":47200,"Name":"240","Points":958,"X":391,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829873Z"},{"ID":47201,"Name":"Castel Ravello","Points":9876,"X":558,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829874Z"},{"ID":47202,"Name":"[0141]","Points":9334,"X":441,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829874Z"},{"ID":47203,"Name":"Zaplecze drewniane 1","Points":10217,"X":374,"Y":330,"Continent":"K33","Bonus":1,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829875Z"},{"ID":47204,"Name":"#K75 0018","Points":5075,"X":519,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829875Z"},{"ID":47205,"Name":"05-oss","Points":10187,"X":677,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829876Z"},{"ID":47207,"Name":"Prawie zmieniƂem podejƛcie","Points":8595,"X":688,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829877Z"},{"ID":47209,"Name":"Wyspa_43","Points":9653,"X":505,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829877Z"},{"ID":47210,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829878Z"},{"ID":47211,"Name":"Taran","Points":8891,"X":326,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829878Z"},{"ID":47212,"Name":"O074","Points":9871,"X":330,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829879Z"},{"ID":47213,"Name":"Ultimate Farming Simulator 1","Points":12154,"X":416,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":699872032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829879Z"},{"ID":47214,"Name":"CSA","Points":3555,"X":527,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":7651093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82988Z"},{"ID":47215,"Name":"Wioska barbarzyƄska","Points":4893,"X":381,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82988Z"},{"ID":47216,"Name":"004","Points":10301,"X":713,"Y":498,"Continent":"K47","Bonus":4,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829881Z"},{"ID":47217,"Name":"#K66 0013","Points":6560,"X":614,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829882Z"},{"ID":47218,"Name":"Suppi","Points":9549,"X":304,"Y":418,"Continent":"K43","Bonus":4,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829882Z"},{"ID":47219,"Name":"36. Kufe 3","Points":2574,"X":703,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829883Z"},{"ID":47220,"Name":"KONFA TO MARKA, NARKA","Points":9214,"X":303,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829883Z"},{"ID":47221,"Name":"A22","Points":10201,"X":550,"Y":458,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829884Z"},{"ID":47222,"Name":"XXXX","Points":10068,"X":568,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829884Z"},{"ID":47223,"Name":"0072","Points":7776,"X":366,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829885Z"},{"ID":47224,"Name":"!36 66 Capu Codrului","Points":9242,"X":660,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829885Z"},{"ID":47226,"Name":"Ave Why!","Points":5748,"X":311,"Y":585,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829886Z"},{"ID":47227,"Name":"wioska","Points":5791,"X":639,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829887Z"},{"ID":47228,"Name":"#K75 0014","Points":4637,"X":519,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829887Z"},{"ID":47229,"Name":"Winterfell.006","Points":10178,"X":450,"Y":291,"Continent":"K24","Bonus":2,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829888Z"},{"ID":47230,"Name":"A#024","Points":9797,"X":711,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829888Z"},{"ID":47231,"Name":"*05 GAWRA*","Points":7961,"X":301,"Y":428,"Continent":"K43","Bonus":0,"PlayerID":2415972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829889Z"},{"ID":47232,"Name":"C14","Points":6017,"X":704,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829889Z"},{"ID":47233,"Name":"033.","Points":5547,"X":628,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82989Z"},{"ID":47234,"Name":"005","Points":8529,"X":644,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829891Z"},{"ID":47235,"Name":"O077","Points":9899,"X":334,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829891Z"},{"ID":47236,"Name":"Taran","Points":6905,"X":313,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829892Z"},{"ID":47237,"Name":"????","Points":10019,"X":473,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829892Z"},{"ID":47238,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":292,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829893Z"},{"ID":47239,"Name":"016. Night Raid*","Points":9807,"X":432,"Y":698,"Continent":"K64","Bonus":6,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829893Z"},{"ID":47240,"Name":"Zaplecze Barba 019","Points":8260,"X":368,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829894Z"},{"ID":47241,"Name":"Wioska barbarzyƄska","Points":3170,"X":416,"Y":649,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829895Z"},{"ID":47242,"Name":"XXXX","Points":10178,"X":566,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829895Z"},{"ID":47243,"Name":"*INTERTWINED*","Points":3992,"X":511,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829896Z"},{"ID":47244,"Name":"012","Points":6282,"X":387,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829896Z"},{"ID":47246,"Name":"ZzZzZ Sylwek2","Points":7285,"X":696,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829897Z"},{"ID":47248,"Name":"Wioska barbarzyƄska","Points":8619,"X":645,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829897Z"},{"ID":47250,"Name":"Wioska barbarzyƄska","Points":6706,"X":347,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829898Z"},{"ID":47251,"Name":"S027","Points":9740,"X":687,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829899Z"},{"ID":47252,"Name":"CastAway !030","Points":6139,"X":688,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829899Z"},{"ID":47253,"Name":"WiedĆșma - Z 009","Points":1362,"X":305,"Y":431,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8299Z"},{"ID":47254,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":661,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8299Z"},{"ID":47255,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":668,"Y":633,"Continent":"K66","Bonus":9,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829901Z"},{"ID":47256,"Name":"Taran","Points":9526,"X":317,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829901Z"},{"ID":47257,"Name":"Wioska barbarzyƄska","Points":7176,"X":434,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829902Z"},{"ID":47258,"Name":"012 ZO","Points":10247,"X":537,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829902Z"},{"ID":47259,"Name":"*INTERTWINED*","Points":5628,"X":514,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829903Z"},{"ID":47260,"Name":"ZƂoty ƚwit","Points":7813,"X":576,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829904Z"},{"ID":47261,"Name":"###049###","Points":10495,"X":599,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829904Z"},{"ID":47262,"Name":"010","Points":4771,"X":391,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829905Z"},{"ID":47263,"Name":"XDX","Points":6822,"X":595,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829905Z"},{"ID":47264,"Name":"Dzik 7","Points":7525,"X":303,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829906Z"},{"ID":47265,"Name":"009","Points":7928,"X":664,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829906Z"},{"ID":47266,"Name":"Wioska barbarzyƄska","Points":10478,"X":590,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829907Z"},{"ID":47267,"Name":"New World","Points":10295,"X":437,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829907Z"},{"ID":47268,"Name":"065 ZieloneOczko3","Points":8721,"X":707,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829908Z"},{"ID":47269,"Name":"0.17 Jadom","Points":9467,"X":458,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829908Z"},{"ID":47270,"Name":".achim.","Points":7271,"X":482,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829909Z"},{"ID":47271,"Name":"KRÓL PAPI WIELKI","Points":7113,"X":650,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829909Z"},{"ID":47273,"Name":"Wioska barbarzyƄska","Points":8978,"X":535,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82991Z"},{"ID":47274,"Name":"North 042","Points":9252,"X":513,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82991Z"},{"ID":47275,"Name":"Wioska barbarzyƄska","Points":9741,"X":696,"Y":432,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829911Z"},{"ID":47276,"Name":"002","Points":6294,"X":323,"Y":376,"Continent":"K33","Bonus":5,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829911Z"},{"ID":47277,"Name":"ZƂoty ƚwit","Points":7124,"X":582,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829912Z"},{"ID":47278,"Name":"Kagusiowo 7","Points":4818,"X":299,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829912Z"},{"ID":47279,"Name":"035","Points":9835,"X":651,"Y":354,"Continent":"K36","Bonus":1,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829913Z"},{"ID":47280,"Name":"C087","Points":8240,"X":364,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829913Z"},{"ID":47281,"Name":"019","Points":7782,"X":299,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829914Z"},{"ID":47282,"Name":"058","Points":4734,"X":668,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829915Z"},{"ID":47283,"Name":"*009*","Points":8087,"X":683,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829915Z"},{"ID":47284,"Name":"Wioska 04","Points":6249,"X":695,"Y":589,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829916Z"},{"ID":47285,"Name":"Psycha Siada","Points":10019,"X":340,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829916Z"},{"ID":47286,"Name":"Osada 13","Points":10059,"X":699,"Y":430,"Continent":"K46","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829917Z"},{"ID":47287,"Name":"ZƂoty ƚwit","Points":7068,"X":579,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829917Z"},{"ID":47288,"Name":"Avanti!","Points":9882,"X":285,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829918Z"},{"ID":47289,"Name":"Na KraƄcu ƚwiata 001","Points":10476,"X":645,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829918Z"},{"ID":47290,"Name":"EO EO","Points":6844,"X":293,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829919Z"},{"ID":47291,"Name":"Wioska 005","Points":9969,"X":696,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829919Z"},{"ID":47292,"Name":"Wioska barbarzyƄska","Points":8539,"X":300,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82992Z"},{"ID":47293,"Name":"Grud","Points":3398,"X":293,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":699284822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82992Z"},{"ID":47294,"Name":"BOSS2","Points":8472,"X":354,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829921Z"},{"ID":47295,"Name":"Wioska-012-","Points":1464,"X":629,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":7675610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829922Z"},{"ID":47296,"Name":"042","Points":7822,"X":513,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829922Z"},{"ID":47297,"Name":"0045 Apt3czka","Points":10474,"X":448,"Y":704,"Continent":"K74","Bonus":6,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829923Z"},{"ID":47298,"Name":"Lord Arsey KING","Points":6301,"X":648,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829923Z"},{"ID":47299,"Name":"ElMajkelos VII","Points":9456,"X":412,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829924Z"},{"ID":47300,"Name":"Piszkawa","Points":5513,"X":297,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":849101092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829924Z"},{"ID":47301,"Name":"005 Wioska barbarzyƄska","Points":4138,"X":405,"Y":315,"Continent":"K34","Bonus":0,"PlayerID":698258283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829925Z"},{"ID":47302,"Name":"Avanti!","Points":9713,"X":286,"Y":484,"Continent":"K42","Bonus":4,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829925Z"},{"ID":47304,"Name":"044","Points":6974,"X":676,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829926Z"},{"ID":47305,"Name":"Wioska barbarzyƄska","Points":9017,"X":692,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829926Z"},{"ID":47306,"Name":"005","Points":1684,"X":441,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829927Z"},{"ID":47307,"Name":"0532","Points":10495,"X":557,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829928Z"},{"ID":47308,"Name":"###109###","Points":10495,"X":597,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829928Z"},{"ID":47309,"Name":"106...","Points":10105,"X":473,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829929Z"},{"ID":47310,"Name":"WS 02","Points":9721,"X":701,"Y":440,"Continent":"K47","Bonus":4,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829929Z"},{"ID":47311,"Name":"A11","Points":9889,"X":464,"Y":659,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82993Z"},{"ID":47312,"Name":"CastAway #007","Points":7713,"X":700,"Y":584,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82993Z"},{"ID":47313,"Name":"BETI 012","Points":1719,"X":462,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829931Z"},{"ID":47314,"Name":"Wioska barbarzyƄska","Points":5046,"X":501,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829932Z"},{"ID":47315,"Name":"New WorldA","Points":4278,"X":289,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829932Z"},{"ID":47316,"Name":"Taran","Points":9835,"X":310,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829933Z"},{"ID":47317,"Name":"Avanti!","Points":6959,"X":286,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829933Z"},{"ID":47318,"Name":"Taran","Points":9265,"X":319,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829934Z"},{"ID":47320,"Name":"ZƂoty ƚwit","Points":9747,"X":588,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829934Z"},{"ID":47321,"Name":"ElMajkelos XI","Points":3432,"X":420,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829935Z"},{"ID":47322,"Name":"Wioska 19","Points":2110,"X":693,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829935Z"},{"ID":47323,"Name":"Suppi","Points":9549,"X":297,"Y":425,"Continent":"K42","Bonus":8,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829936Z"},{"ID":47324,"Name":"046","Points":7763,"X":715,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829937Z"},{"ID":47325,"Name":"030 zadupie","Points":10019,"X":532,"Y":710,"Continent":"K75","Bonus":5,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829937Z"},{"ID":47326,"Name":"MojeDnoToWaszSzczyt","Points":9735,"X":506,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829938Z"},{"ID":47327,"Name":"0125","Points":9764,"X":393,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829938Z"},{"ID":47329,"Name":"097.Stradi","Points":9293,"X":439,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829939Z"},{"ID":47331,"Name":"Kurnik","Points":9077,"X":474,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829939Z"},{"ID":47332,"Name":"095","Points":8996,"X":403,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82994Z"},{"ID":47333,"Name":"075 invidia","Points":5660,"X":557,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82994Z"},{"ID":47334,"Name":"wioska","Points":9927,"X":637,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829941Z"},{"ID":47335,"Name":"MENSPHYSIQUE","Points":2171,"X":378,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829942Z"},{"ID":47336,"Name":"01. Novigrad","Points":9737,"X":704,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829942Z"},{"ID":47337,"Name":"Dubno","Points":9924,"X":690,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829943Z"},{"ID":47338,"Name":"###110###","Points":10495,"X":583,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829943Z"},{"ID":47339,"Name":"108 invidia","Points":10401,"X":511,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829944Z"},{"ID":47340,"Name":"Wioska barbarzyƄska","Points":9655,"X":520,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829944Z"},{"ID":47341,"Name":"Wioska barbarzyƄska","Points":4210,"X":302,"Y":458,"Continent":"K43","Bonus":0,"PlayerID":699706955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829945Z"},{"ID":47342,"Name":"R 040 ~Wybacz Ribeska~","Points":7756,"X":500,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829946Z"},{"ID":47343,"Name":"Taran","Points":9835,"X":314,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829946Z"},{"ID":47344,"Name":"0069","Points":4918,"X":713,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829947Z"},{"ID":47345,"Name":"Wioska barbarzyƄska","Points":1304,"X":319,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829947Z"},{"ID":47346,"Name":"Wioska 006","Points":8982,"X":696,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829948Z"},{"ID":47347,"Name":"Taran","Points":9835,"X":315,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829948Z"},{"ID":47348,"Name":"KRÓL PAPI WIELKI","Points":9970,"X":669,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829949Z"},{"ID":47349,"Name":"07 Banga Banga","Points":9484,"X":705,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829949Z"},{"ID":47350,"Name":"Z 0005","Points":10033,"X":349,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82995Z"},{"ID":47351,"Name":"012","Points":7507,"X":296,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829951Z"},{"ID":47352,"Name":"Syjon 01","Points":7941,"X":343,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829951Z"},{"ID":47354,"Name":"0584","Points":8851,"X":576,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829952Z"},{"ID":47355,"Name":"Dzik 2","Points":10887,"X":294,"Y":432,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829952Z"},{"ID":47356,"Name":"Wioska barbarzyƄska","Points":8522,"X":647,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829953Z"},{"ID":47357,"Name":"00000B","Points":9975,"X":376,"Y":331,"Continent":"K33","Bonus":4,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829953Z"},{"ID":47358,"Name":"EE 008","Points":8707,"X":699,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829954Z"},{"ID":47359,"Name":"D004","Points":9151,"X":347,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829955Z"},{"ID":47360,"Name":"007","Points":9814,"X":666,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829955Z"},{"ID":47362,"Name":"SOS","Points":7661,"X":702,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829956Z"},{"ID":47363,"Name":"New World","Points":9424,"X":447,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829956Z"},{"ID":47364,"Name":"wioska","Points":7681,"X":639,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829957Z"},{"ID":47366,"Name":"PóƂnocny Bagdad","Points":10311,"X":613,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829957Z"},{"ID":47367,"Name":"Avanti!","Points":6251,"X":286,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829958Z"},{"ID":47368,"Name":"EO EO","Points":8981,"X":292,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829958Z"},{"ID":47369,"Name":"2_Franekkimono510_2","Points":8164,"X":374,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829959Z"},{"ID":47370,"Name":"Osada 7","Points":9570,"X":696,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82996Z"},{"ID":47371,"Name":"045","Points":9847,"X":673,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82996Z"},{"ID":47372,"Name":"0073 Wioska barbarzyƄska","Points":8459,"X":445,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829961Z"},{"ID":47373,"Name":"klops33","Points":10242,"X":629,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829961Z"},{"ID":47374,"Name":"Winterfell.003","Points":10178,"X":441,"Y":291,"Continent":"K24","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829962Z"},{"ID":47375,"Name":"004","Points":8346,"X":532,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829962Z"},{"ID":47376,"Name":"Wioska barbarzyƄska","Points":9238,"X":370,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829963Z"},{"ID":47377,"Name":"New World","Points":8481,"X":439,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829964Z"},{"ID":47379,"Name":"0034","Points":3858,"X":489,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829964Z"},{"ID":47380,"Name":"Cisza","Points":6001,"X":288,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829965Z"},{"ID":47381,"Name":"023 zadupie","Points":9859,"X":531,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829965Z"},{"ID":47382,"Name":"ElMajkelos X","Points":3778,"X":416,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829966Z"},{"ID":47383,"Name":"ZZ03","Points":9406,"X":313,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829966Z"},{"ID":47385,"Name":"007 Moulton Park","Points":8664,"X":620,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829967Z"},{"ID":47386,"Name":"0096","Points":3162,"X":680,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829967Z"},{"ID":47387,"Name":"New World","Points":10294,"X":421,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829968Z"},{"ID":47388,"Name":"Klejnot nr1","Points":4053,"X":589,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":699837483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829969Z"},{"ID":47389,"Name":".achim.","Points":7159,"X":482,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829969Z"},{"ID":47390,"Name":"sh05","Points":5714,"X":513,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82997Z"},{"ID":47391,"Name":"003a","Points":5230,"X":302,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82997Z"},{"ID":47392,"Name":"189","Points":9282,"X":417,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829971Z"},{"ID":47393,"Name":"EO EO","Points":7432,"X":284,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829972Z"},{"ID":47394,"Name":"...","Points":3833,"X":337,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829972Z"},{"ID":47395,"Name":"002","Points":4212,"X":697,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":849085371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829973Z"},{"ID":47396,"Name":"RPM CUSTOM 2","Points":4373,"X":553,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849102094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829973Z"},{"ID":47397,"Name":"009. GĂłrki Wyboiste","Points":7248,"X":655,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":849100994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829974Z"},{"ID":47398,"Name":"Wioska barbarzyƄska","Points":5636,"X":573,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829974Z"},{"ID":47399,"Name":"W32","Points":2038,"X":695,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829975Z"},{"ID":47400,"Name":"ZƂoty ƚwit","Points":9521,"X":582,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829975Z"},{"ID":47401,"Name":"Ave Why!","Points":9644,"X":309,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829976Z"},{"ID":47402,"Name":"C015","Points":9892,"X":366,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829977Z"},{"ID":47403,"Name":"XDX","Points":7432,"X":599,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829977Z"},{"ID":47404,"Name":"#K75 0023","Points":5198,"X":514,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829978Z"},{"ID":47406,"Name":"Lord Arsey KING","Points":10285,"X":650,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829978Z"},{"ID":47407,"Name":"Ger4","Points":4454,"X":715,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829979Z"},{"ID":47408,"Name":"O002","Points":9955,"X":337,"Y":637,"Continent":"K63","Bonus":8,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829979Z"},{"ID":47410,"Name":"XDX","Points":7384,"X":595,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82998Z"},{"ID":47411,"Name":"005a","Points":4755,"X":305,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82998Z"},{"ID":47412,"Name":"New WorldA","Points":3414,"X":291,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829981Z"},{"ID":47413,"Name":"0066","Points":5143,"X":692,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829981Z"},{"ID":47414,"Name":"C.035","Points":4678,"X":708,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829982Z"},{"ID":47415,"Name":"Kurnik","Points":9486,"X":481,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829983Z"},{"ID":47416,"Name":"002 coƛ ciekawego?","Points":4015,"X":530,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829983Z"},{"ID":47417,"Name":"Wioska 14","Points":3628,"X":694,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829984Z"},{"ID":47418,"Name":"058","Points":2038,"X":639,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829984Z"},{"ID":47419,"Name":"Wioska008","Points":9514,"X":345,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829985Z"},{"ID":47421,"Name":"BOSS3","Points":7855,"X":353,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829985Z"},{"ID":47422,"Name":"ZƂoty ƚwit","Points":7405,"X":577,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829986Z"},{"ID":47423,"Name":"wpadam do Ciebie do swiat","Points":1413,"X":623,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":698457392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829987Z"},{"ID":47424,"Name":"Lewa","Points":8418,"X":497,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829987Z"},{"ID":47425,"Name":"Na chƂodno","Points":10252,"X":682,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829988Z"},{"ID":47426,"Name":"*227* pozdro poćwicz","Points":10211,"X":325,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829988Z"},{"ID":47427,"Name":"0069","Points":6080,"X":369,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829989Z"},{"ID":47428,"Name":"Czarny Zamek","Points":10971,"X":708,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829989Z"},{"ID":47429,"Name":"ElMajkelos II","Points":9262,"X":419,"Y":302,"Continent":"K34","Bonus":2,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82999Z"},{"ID":47430,"Name":"022.","Points":10838,"X":470,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.82999Z"},{"ID":47431,"Name":"Wioska barbarzyƄska","Points":8551,"X":350,"Y":653,"Continent":"K63","Bonus":2,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829991Z"},{"ID":47432,"Name":"C.036","Points":4732,"X":715,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829991Z"},{"ID":47433,"Name":"081 Wioska barbarzyƄska","Points":8635,"X":536,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829992Z"},{"ID":47434,"Name":"New World","Points":10291,"X":425,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829993Z"},{"ID":47435,"Name":"bucksbarzyƄskamiiiru","Points":2353,"X":332,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829993Z"},{"ID":47436,"Name":"Wioska barbarzyƄska","Points":2421,"X":293,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":7530708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829994Z"},{"ID":47437,"Name":"002","Points":4815,"X":322,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":7919620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829994Z"},{"ID":47438,"Name":"[0248]","Points":6567,"X":287,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829995Z"},{"ID":47439,"Name":"Wioska barbarzyƄska","Points":2438,"X":630,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829995Z"},{"ID":47440,"Name":"KONFA TO MARKA, NARKA","Points":6403,"X":293,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829996Z"},{"ID":47441,"Name":"001","Points":9571,"X":442,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829996Z"},{"ID":47442,"Name":"chwile zabawy","Points":5310,"X":421,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829997Z"},{"ID":47443,"Name":"Wioska barbarzyƄska","Points":6925,"X":496,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829998Z"},{"ID":47444,"Name":"Wioska barbarzyƄska","Points":2957,"X":629,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829998Z"},{"ID":47445,"Name":"Wioska X05","Points":3074,"X":296,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829999Z"},{"ID":47446,"Name":"bucksbarzyƄskamiiiru","Points":2155,"X":330,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.829999Z"},{"ID":47447,"Name":"XXXX","Points":10068,"X":563,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83Z"},{"ID":47448,"Name":"Wioska ewaa","Points":6335,"X":506,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":849101382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83Z"},{"ID":47449,"Name":"Taran","Points":8803,"X":315,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830001Z"},{"ID":47451,"Name":"[0125]","Points":9587,"X":444,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830001Z"},{"ID":47452,"Name":"wioska barbarzyƄska","Points":8187,"X":621,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830002Z"},{"ID":47454,"Name":"Wioska","Points":4183,"X":713,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":699034094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830003Z"},{"ID":47456,"Name":"Wioska 07","Points":6169,"X":695,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830003Z"},{"ID":47457,"Name":"O023","Points":9957,"X":331,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830004Z"},{"ID":47458,"Name":"Wioska 06","Points":7172,"X":692,"Y":593,"Continent":"K56","Bonus":5,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830004Z"},{"ID":47459,"Name":"WiedĆșma - Z 001","Points":9383,"X":304,"Y":430,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830005Z"},{"ID":47460,"Name":"Wioska barbarzyƄska","Points":7738,"X":335,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830005Z"},{"ID":47461,"Name":"Wioska barbarzyƄska","Points":6317,"X":691,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830006Z"},{"ID":47463,"Name":"[0249]","Points":6605,"X":286,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830007Z"},{"ID":47464,"Name":"18 Dewon","Points":10083,"X":395,"Y":315,"Continent":"K33","Bonus":8,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830007Z"},{"ID":47465,"Name":"139","Points":9132,"X":399,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830008Z"},{"ID":47466,"Name":"TWIERDZA .:075:.","Points":7879,"X":697,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830008Z"},{"ID":47467,"Name":"*019","Points":6968,"X":672,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830009Z"},{"ID":47468,"Name":"[0132]","Points":9334,"X":444,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830009Z"},{"ID":47469,"Name":"Szlachcic","Points":5440,"X":359,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83001Z"},{"ID":47470,"Name":"Wioska D","Points":3325,"X":541,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830011Z"},{"ID":47471,"Name":"Wioska barbarzyƄska","Points":5995,"X":703,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830011Z"},{"ID":47472,"Name":"Wioska E","Points":2869,"X":543,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830012Z"},{"ID":47473,"Name":"Wioska barbarzyƄska","Points":2993,"X":698,"Y":563,"Continent":"K56","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830012Z"},{"ID":47474,"Name":"220","Points":7047,"X":418,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830013Z"},{"ID":47475,"Name":"Wioska Motliiu","Points":6029,"X":691,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830013Z"},{"ID":47476,"Name":"Soltys Wsi Maciekp011","Points":9356,"X":349,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830014Z"},{"ID":47477,"Name":"Lord Arsey KING","Points":8700,"X":658,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830015Z"},{"ID":47478,"Name":"012 JJ","Points":3501,"X":330,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830015Z"},{"ID":47479,"Name":"16 Cezarleon.","Points":9976,"X":290,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830016Z"},{"ID":47480,"Name":"Nowa Nadzieja 6","Points":8120,"X":501,"Y":596,"Continent":"K55","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830016Z"},{"ID":47482,"Name":"034.","Points":4050,"X":622,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830017Z"},{"ID":47483,"Name":"062 - misslolaxo","Points":7926,"X":424,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830017Z"},{"ID":47484,"Name":"[0190]","Points":8755,"X":284,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830018Z"},{"ID":47485,"Name":"19 Achttung, Herman","Points":4006,"X":710,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830018Z"},{"ID":47486,"Name":"Wioska barbarzyƄska","Points":7666,"X":632,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830019Z"},{"ID":47487,"Name":"C025","Points":9419,"X":359,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83002Z"},{"ID":47488,"Name":"0108","Points":10216,"X":400,"Y":691,"Continent":"K64","Bonus":1,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83002Z"},{"ID":47489,"Name":"1919ccc","Points":1440,"X":681,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830021Z"},{"ID":47490,"Name":"...","Points":6874,"X":338,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830021Z"},{"ID":47491,"Name":"060","Points":8380,"X":714,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830022Z"},{"ID":47492,"Name":"Barabara","Points":6362,"X":288,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830022Z"},{"ID":47493,"Name":"Bessa 008","Points":9986,"X":640,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830023Z"},{"ID":47494,"Name":"Wioska barbarzyƄska","Points":3180,"X":660,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830024Z"},{"ID":47495,"Name":"[0174]","Points":8822,"X":287,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830024Z"},{"ID":47497,"Name":"[823] Odludzie","Points":6319,"X":705,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830025Z"},{"ID":47498,"Name":"Onono nono","Points":7339,"X":287,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830025Z"},{"ID":47499,"Name":"Wioska Sir Olmek","Points":9583,"X":642,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830026Z"},{"ID":47500,"Name":"004 dark.lady","Points":10019,"X":609,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830026Z"},{"ID":47501,"Name":"Klatka","Points":6392,"X":621,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830027Z"},{"ID":47502,"Name":"036","Points":8585,"X":721,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830028Z"},{"ID":47503,"Name":"002","Points":5877,"X":442,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830028Z"},{"ID":47504,"Name":"Wioska barbarzyƄska","Points":7322,"X":716,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830029Z"},{"ID":47505,"Name":"0158","Points":5714,"X":393,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830029Z"},{"ID":47506,"Name":"Wioska barbarzyƄska","Points":8331,"X":647,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83003Z"},{"ID":47508,"Name":"K35 - [022] Before Land","Points":9783,"X":584,"Y":305,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83003Z"},{"ID":47509,"Name":"FAKE OR OFF","Points":9825,"X":401,"Y":312,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830031Z"},{"ID":47510,"Name":"####","Points":4883,"X":699,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830031Z"},{"ID":47512,"Name":"022","Points":7471,"X":298,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830032Z"},{"ID":47513,"Name":"207","Points":6423,"X":425,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830032Z"},{"ID":47515,"Name":"rafisonik6","Points":4370,"X":510,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830033Z"},{"ID":47516,"Name":"0151","Points":3902,"X":393,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830034Z"},{"ID":47517,"Name":"Wioska barbarzyƄska","Points":8753,"X":334,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830034Z"},{"ID":47518,"Name":"-020- P","Points":5314,"X":620,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830035Z"},{"ID":47519,"Name":"B003","Points":6198,"X":621,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830035Z"},{"ID":47520,"Name":"Wioska 03","Points":6963,"X":694,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830036Z"},{"ID":47521,"Name":"-027- WWW","Points":1444,"X":649,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":849099276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830036Z"},{"ID":47522,"Name":"Osada koczownikĂłw","Points":7879,"X":618,"Y":682,"Continent":"K66","Bonus":4,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830037Z"},{"ID":47523,"Name":"xzc","Points":8592,"X":501,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830037Z"},{"ID":47524,"Name":"Ć»UBEREK 002","Points":10479,"X":612,"Y":685,"Continent":"K66","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830038Z"},{"ID":47525,"Name":"Kurnik","Points":10252,"X":452,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830039Z"},{"ID":47526,"Name":"Wioska barbarzyƄska","Points":1383,"X":694,"Y":584,"Continent":"K56","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830039Z"},{"ID":47527,"Name":"*INTERTWINED*","Points":5647,"X":512,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83004Z"},{"ID":47528,"Name":"New World","Points":10290,"X":429,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83004Z"},{"ID":47529,"Name":"011","Points":2942,"X":647,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830041Z"},{"ID":47530,"Name":"026. Minas Morgul","Points":10495,"X":567,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830041Z"},{"ID":47531,"Name":"Bennet","Points":8892,"X":554,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830042Z"},{"ID":47532,"Name":"Coraz bliĆŒej ƛwięta","Points":8768,"X":685,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830042Z"},{"ID":47533,"Name":"New World","Points":10294,"X":437,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830043Z"},{"ID":47534,"Name":"Starosiedlice","Points":8386,"X":576,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830043Z"},{"ID":47535,"Name":"###111###","Points":10495,"X":598,"Y":690,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830044Z"},{"ID":47536,"Name":"Wioska barbarzyƄska","Points":5331,"X":281,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830044Z"},{"ID":47537,"Name":"Wioska barbarzyƄska","Points":2403,"X":698,"Y":573,"Continent":"K56","Bonus":7,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830045Z"},{"ID":47538,"Name":"177","Points":6786,"X":383,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830046Z"},{"ID":47539,"Name":"Jasieniec","Points":5522,"X":572,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830046Z"},{"ID":47540,"Name":"Wioska teduniook","Points":4304,"X":600,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":9106690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830047Z"},{"ID":47541,"Name":"025 zadupie","Points":10019,"X":533,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830047Z"},{"ID":47542,"Name":"Wioska barbarzyƄska","Points":3124,"X":705,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830048Z"},{"ID":47543,"Name":"*003*","Points":9075,"X":680,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830048Z"},{"ID":47544,"Name":"C0242","Points":10310,"X":291,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830049Z"},{"ID":47545,"Name":"EO EO","Points":10019,"X":288,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830049Z"},{"ID":47546,"Name":"XDX","Points":10290,"X":605,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83005Z"},{"ID":47547,"Name":"0106","Points":10216,"X":393,"Y":678,"Continent":"K63","Bonus":2,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.83005Z"},{"ID":47548,"Name":"Hubix","Points":10019,"X":697,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830051Z"},{"ID":47549,"Name":"MojeDnoToWaszSzczyt","Points":9966,"X":498,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830051Z"},{"ID":47550,"Name":"C0213","Points":8730,"X":294,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830052Z"},{"ID":47551,"Name":"Avanti!","Points":6023,"X":288,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830052Z"},{"ID":47552,"Name":"042","Points":10495,"X":410,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830053Z"},{"ID":47553,"Name":"Wancki","Points":9861,"X":517,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830054Z"},{"ID":47554,"Name":"Rigel","Points":5309,"X":285,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":849101647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830054Z"},{"ID":47555,"Name":"Wioska barbarzyƄska","Points":6943,"X":549,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830055Z"},{"ID":47556,"Name":"048.","Points":4846,"X":637,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830055Z"},{"ID":47557,"Name":"Arczi997 05","Points":1116,"X":291,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830056Z"},{"ID":47558,"Name":"005","Points":6251,"X":304,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830056Z"},{"ID":47559,"Name":"C0247","Points":5167,"X":292,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830057Z"},{"ID":47560,"Name":"###112###","Points":10495,"X":591,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830057Z"},{"ID":47561,"Name":"003 Gniezno","Points":6498,"X":290,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830058Z"},{"ID":47562,"Name":"Ultimate Farming Simulator 5","Points":7332,"X":415,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":699872032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830058Z"},{"ID":47563,"Name":"013. Chogolisa","Points":10495,"X":710,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.830059Z"},{"ID":47564,"Name":"D005","Points":5550,"X":561,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861578Z"},{"ID":47565,"Name":"Taran","Points":6757,"X":310,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861579Z"},{"ID":47566,"Name":"--013--","Points":8521,"X":572,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861579Z"},{"ID":47567,"Name":"W33","Points":1887,"X":692,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86158Z"},{"ID":47569,"Name":"W34","Points":3222,"X":698,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86158Z"},{"ID":47570,"Name":"023","Points":5538,"X":655,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861581Z"},{"ID":47571,"Name":"Szlachcic","Points":5761,"X":363,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861581Z"},{"ID":47572,"Name":"0161","Points":3072,"X":391,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861582Z"},{"ID":47573,"Name":"Kurnik","Points":7929,"X":472,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861582Z"},{"ID":47574,"Name":"Klatka7","Points":3419,"X":626,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861583Z"},{"ID":47575,"Name":"C06","Points":8066,"X":705,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861584Z"},{"ID":47576,"Name":"KONFA TO MARKA, NARKA","Points":7273,"X":294,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861584Z"},{"ID":47577,"Name":"PóƂnocny Bagdad","Points":9899,"X":619,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861585Z"},{"ID":47578,"Name":"FP021","Points":8375,"X":482,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861585Z"},{"ID":47579,"Name":"0041","Points":3304,"X":478,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861586Z"},{"ID":47580,"Name":"Bagno 20","Points":8293,"X":484,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861586Z"},{"ID":47581,"Name":"Wioska barbarzyƄska","Points":7514,"X":716,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861587Z"},{"ID":47583,"Name":"MojeDnoToWaszSzczyt","Points":9949,"X":497,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861587Z"},{"ID":47584,"Name":"Wioska barbarzyƄska","Points":1963,"X":697,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861588Z"},{"ID":47585,"Name":"AAA","Points":8876,"X":541,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861589Z"},{"ID":47586,"Name":"0103","Points":9627,"X":708,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861589Z"},{"ID":47587,"Name":"R 039","Points":6098,"X":495,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86159Z"},{"ID":47588,"Name":"0132","Points":6531,"X":392,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86159Z"},{"ID":47589,"Name":"Wioska barbarzyƄska","Points":5027,"X":655,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861591Z"},{"ID":47590,"Name":"CiemnogrĂłd #9","Points":6660,"X":333,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861591Z"},{"ID":47591,"Name":"New WorldA","Points":4743,"X":286,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861592Z"},{"ID":47592,"Name":"Wioska barbarzyƄska","Points":5260,"X":546,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861592Z"},{"ID":47593,"Name":"[0181]","Points":8715,"X":289,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861593Z"},{"ID":47594,"Name":"Wioska barbarzyƄska","Points":4639,"X":522,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":7590135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861593Z"},{"ID":47595,"Name":"O025","Points":9959,"X":333,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861594Z"},{"ID":47596,"Name":"New World","Points":10292,"X":426,"Y":697,"Continent":"K64","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861594Z"},{"ID":47597,"Name":"Wioska barbarzyƄska","Points":8177,"X":382,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861595Z"},{"ID":47598,"Name":"O075","Points":9818,"X":329,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861595Z"},{"ID":47599,"Name":"138","Points":10252,"X":402,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861596Z"},{"ID":47601,"Name":"032","Points":9819,"X":656,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861597Z"},{"ID":47604,"Name":"XDX","Points":10048,"X":610,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861597Z"},{"ID":47605,"Name":"Ars","Points":9894,"X":718,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861598Z"},{"ID":47606,"Name":"Dzik 3","Points":9476,"X":295,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861598Z"},{"ID":47607,"Name":"250...Kaban1998","Points":9781,"X":461,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861599Z"},{"ID":47608,"Name":"nasa","Points":2567,"X":706,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":1895081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861599Z"},{"ID":47609,"Name":"019. Wioska barbarzyƄska","Points":8499,"X":343,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8616Z"},{"ID":47610,"Name":"FAKE OR OFF","Points":9830,"X":400,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8616Z"},{"ID":47611,"Name":"0.17d","Points":9464,"X":465,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861601Z"},{"ID":47613,"Name":"###113###","Points":10495,"X":600,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861602Z"},{"ID":47614,"Name":"FAKE OR OFF","Points":9813,"X":402,"Y":314,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861602Z"},{"ID":47615,"Name":"Początek","Points":3782,"X":297,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861603Z"},{"ID":47616,"Name":"077 Wioska barbarzyƄska","Points":10178,"X":537,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861603Z"},{"ID":47617,"Name":"Saran2","Points":4261,"X":407,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861604Z"},{"ID":47618,"Name":"008","Points":5952,"X":647,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861605Z"},{"ID":47619,"Name":"Zaplecze barba 1","Points":10216,"X":377,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861605Z"},{"ID":47620,"Name":"Szlachcic","Points":10093,"X":580,"Y":505,"Continent":"K55","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861606Z"},{"ID":47621,"Name":"Początek","Points":5049,"X":313,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861606Z"},{"ID":47622,"Name":"EEE Barba 1","Points":9762,"X":464,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861607Z"},{"ID":47623,"Name":"Lord Arsey KING","Points":10158,"X":650,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861607Z"},{"ID":47624,"Name":"Z18","Points":9835,"X":312,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861608Z"},{"ID":47625,"Name":"001 moĆŒe być","Points":5307,"X":529,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861609Z"},{"ID":47626,"Name":"020","Points":3114,"X":655,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861609Z"},{"ID":47627,"Name":"North 020","Points":8243,"X":499,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86161Z"},{"ID":47628,"Name":",,,,","Points":4172,"X":702,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86161Z"},{"ID":47629,"Name":"180","Points":8172,"X":383,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861611Z"},{"ID":47630,"Name":"Wioska 13","Points":3632,"X":692,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861611Z"},{"ID":47631,"Name":"ZZZ","Points":3954,"X":455,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861612Z"},{"ID":47633,"Name":"165","Points":8704,"X":412,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861612Z"},{"ID":47634,"Name":"Wioska barbarzyƄska","Points":9806,"X":326,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861613Z"},{"ID":47635,"Name":"048 sebaseba1991","Points":10160,"X":616,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861613Z"},{"ID":47636,"Name":"080 Hjubal","Points":5004,"X":709,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861614Z"},{"ID":47637,"Name":"D003","Points":8881,"X":348,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861615Z"},{"ID":47638,"Name":"Adamo 4","Points":3465,"X":586,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861615Z"},{"ID":47639,"Name":"Legenda","Points":8221,"X":378,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861616Z"},{"ID":47640,"Name":"AlaKlaudia4","Points":2760,"X":381,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":848966521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861616Z"},{"ID":47641,"Name":"...","Points":4279,"X":341,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861617Z"},{"ID":47642,"Name":"Wioska barbarzyƄska","Points":3638,"X":553,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861617Z"},{"ID":47644,"Name":"002 JJ","Points":4556,"X":331,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861618Z"},{"ID":47645,"Name":"Taran","Points":8295,"X":321,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861618Z"},{"ID":47646,"Name":"Wioska barbarzyƄska","Points":10203,"X":379,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861619Z"},{"ID":47647,"Name":"Osada koczownikĂłw","Points":9820,"X":421,"Y":303,"Continent":"K34","Bonus":5,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86162Z"},{"ID":47648,"Name":"Szlachcic/Taran","Points":10237,"X":615,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86162Z"},{"ID":47649,"Name":"Wioska003","Points":9741,"X":346,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861621Z"},{"ID":47650,"Name":"KRÓL PAPI WIELKI","Points":6565,"X":710,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861621Z"},{"ID":47651,"Name":"Inny niĆŒ oni","Points":6038,"X":703,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861622Z"},{"ID":47653,"Name":"Bagno 3","Points":9427,"X":482,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861622Z"},{"ID":47654,"Name":"0585","Points":10019,"X":578,"Y":696,"Continent":"K65","Bonus":8,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861623Z"},{"ID":47655,"Name":"Pitulice","Points":6951,"X":381,"Y":590,"Continent":"K53","Bonus":0,"PlayerID":849095992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861623Z"},{"ID":47656,"Name":"#K75 0009","Points":5232,"X":520,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861624Z"},{"ID":47657,"Name":"New World","Points":10294,"X":430,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861624Z"},{"ID":47658,"Name":"Familia Kuzyni","Points":2318,"X":376,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861625Z"},{"ID":47659,"Name":"Wioska barbarzyƄska","Points":8440,"X":569,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861625Z"},{"ID":47660,"Name":"t009","Points":8173,"X":663,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861626Z"},{"ID":47661,"Name":"Avanti!","Points":6313,"X":287,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861627Z"},{"ID":47662,"Name":"C016","Points":9472,"X":371,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861627Z"},{"ID":47663,"Name":"1-OB","Points":3115,"X":688,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861628Z"},{"ID":47664,"Name":"024","Points":2979,"X":663,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861628Z"},{"ID":47666,"Name":"Wioska barbarzyƄska","Points":5549,"X":703,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861629Z"},{"ID":47667,"Name":"07 CHATA","Points":3797,"X":631,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861629Z"},{"ID":47668,"Name":"C005","Points":7020,"X":540,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86163Z"},{"ID":47669,"Name":"Klejnoty","Points":2755,"X":589,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":699837483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86163Z"},{"ID":47670,"Name":"049 Wioska barbarzyƄska","Points":9835,"X":544,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861631Z"},{"ID":47671,"Name":"KONFA TO MARKA, NARKA","Points":7138,"X":298,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861632Z"},{"ID":47672,"Name":"053- Mroczna Osada","Points":4543,"X":660,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861632Z"},{"ID":47673,"Name":"3. Blaviken","Points":5281,"X":604,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861633Z"},{"ID":47674,"Name":"Wioska barbarzyƄska","Points":8548,"X":520,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861633Z"},{"ID":47675,"Name":"#K66 0010","Points":6340,"X":609,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861634Z"},{"ID":47676,"Name":"=116= Hopewell","Points":6394,"X":706,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861635Z"},{"ID":47677,"Name":"###016###","Points":10495,"X":593,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861635Z"},{"ID":47678,"Name":"Montecalvo","Points":2927,"X":551,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":698789253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861636Z"},{"ID":47679,"Name":"Na KraƄcu ƚwiata 021","Points":4074,"X":646,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861636Z"},{"ID":47680,"Name":"20 barbarzyƄska...","Points":9126,"X":286,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861637Z"},{"ID":47681,"Name":"020","Points":11896,"X":526,"Y":716,"Continent":"K75","Bonus":3,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861637Z"},{"ID":47682,"Name":"XXXX","Points":10025,"X":566,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861638Z"},{"ID":47683,"Name":"Ć»UBEREK 018 .::. Gazun","Points":8157,"X":608,"Y":682,"Continent":"K66","Bonus":6,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861638Z"},{"ID":47684,"Name":"018. Ortolana","Points":6690,"X":314,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861639Z"},{"ID":47685,"Name":"wioska","Points":12154,"X":638,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86164Z"},{"ID":47686,"Name":"Wioska wioska","Points":9775,"X":709,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86164Z"},{"ID":47687,"Name":"Cisza","Points":5993,"X":294,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861641Z"},{"ID":47688,"Name":"###114###","Points":10495,"X":601,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861641Z"},{"ID":47689,"Name":"MojeDnoToWaszSzczyt","Points":9950,"X":496,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861642Z"},{"ID":47690,"Name":"North 016","Points":10311,"X":504,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861642Z"},{"ID":47691,"Name":"Wioska barbarzyƄska","Points":2618,"X":664,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861643Z"},{"ID":47692,"Name":"Wioska piwkoo","Points":9319,"X":291,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861643Z"},{"ID":47693,"Name":"Kurnik","Points":8596,"X":468,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861644Z"},{"ID":47694,"Name":"asd","Points":10728,"X":685,"Y":404,"Continent":"K46","Bonus":3,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861644Z"},{"ID":47695,"Name":"KocioƂ Gromoszczęka","Points":9525,"X":328,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861645Z"},{"ID":47696,"Name":"Wioska barbarzyƄska","Points":6346,"X":427,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861645Z"},{"ID":47697,"Name":"North 008","Points":10311,"X":504,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861646Z"},{"ID":47698,"Name":"S016","Points":4556,"X":686,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861647Z"},{"ID":47699,"Name":"MojeDnoToWaszSzczyt","Points":9999,"X":501,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861647Z"},{"ID":47700,"Name":"Wioska001","Points":7266,"X":685,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861648Z"},{"ID":47702,"Name":"FAKE OR OFF","Points":9817,"X":410,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861648Z"},{"ID":47703,"Name":"Zaplecze miedziane","Points":9643,"X":375,"Y":321,"Continent":"K33","Bonus":3,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861649Z"},{"ID":47704,"Name":"MojeDnoToWaszSzczyt","Points":9981,"X":502,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861649Z"},{"ID":47705,"Name":"Lord Arsey KING","Points":7850,"X":654,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86165Z"},{"ID":47706,"Name":"ElMajkelos V","Points":10160,"X":413,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861651Z"},{"ID":47707,"Name":"010","Points":9723,"X":711,"Y":551,"Continent":"K57","Bonus":2,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861651Z"},{"ID":47708,"Name":"Wioska Duszkowsky 012","Points":5099,"X":355,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861652Z"},{"ID":47709,"Name":"ZZ06","Points":9713,"X":308,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861652Z"},{"ID":47710,"Name":"09 Dzięki Motorowiec10 ;)..","Points":9899,"X":296,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861653Z"},{"ID":47711,"Name":"Wioska barbarzyƄska","Points":2778,"X":697,"Y":567,"Continent":"K56","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861653Z"},{"ID":47712,"Name":"004 C","Points":10495,"X":401,"Y":694,"Continent":"K64","Bonus":8,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861654Z"},{"ID":47713,"Name":"W35","Points":1707,"X":696,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861655Z"},{"ID":47714,"Name":"[0195]","Points":7487,"X":286,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861655Z"},{"ID":47715,"Name":"Wioska barbarzyƄska","Points":9722,"X":573,"Y":302,"Continent":"K35","Bonus":6,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861656Z"},{"ID":47716,"Name":"Komandos","Points":10290,"X":635,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861656Z"},{"ID":47717,"Name":"Wioska barbarzyƄska","Points":6079,"X":702,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861657Z"},{"ID":47718,"Name":"Avanti!","Points":5786,"X":293,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861657Z"},{"ID":47719,"Name":"Zaplecze Barba 016","Points":9185,"X":365,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861658Z"},{"ID":47720,"Name":"088 Wioska barbarzyƄska","Points":7648,"X":546,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861658Z"},{"ID":47721,"Name":"Wioska barbarzyƄska","Points":8341,"X":377,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861659Z"},{"ID":47722,"Name":".achim.","Points":6659,"X":474,"Y":288,"Continent":"K24","Bonus":2,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861659Z"},{"ID":47723,"Name":"Wyspa 009","Points":5418,"X":295,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86166Z"},{"ID":47724,"Name":"Pozamykani w oƛrodkach","Points":6954,"X":711,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86166Z"},{"ID":47725,"Name":"B030","Points":6009,"X":626,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861661Z"},{"ID":47727,"Name":"MJ23","Points":6194,"X":683,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861662Z"},{"ID":47728,"Name":"#0300 LAROX","Points":5532,"X":460,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861662Z"},{"ID":47729,"Name":"Lord Arsey KING","Points":3995,"X":648,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861663Z"},{"ID":47730,"Name":"0164","Points":3496,"X":386,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861663Z"},{"ID":47731,"Name":"0076","Points":10083,"X":689,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861664Z"},{"ID":47732,"Name":"Flap","Points":10290,"X":608,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861664Z"},{"ID":47733,"Name":"Wioska barbarzyƄska","Points":6531,"X":572,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861665Z"},{"ID":47734,"Name":"*014*","Points":7382,"X":679,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861665Z"},{"ID":47735,"Name":"komandso","Points":10040,"X":636,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861666Z"},{"ID":47736,"Name":"C097","Points":9777,"X":362,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861667Z"},{"ID":47738,"Name":"019","Points":4292,"X":653,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861667Z"},{"ID":47739,"Name":"007","Points":1644,"X":539,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861668Z"},{"ID":47740,"Name":"pusta","Points":4565,"X":572,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861668Z"},{"ID":47742,"Name":"Wioska Sportowiec73","Points":3606,"X":321,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":8696132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861669Z"},{"ID":47743,"Name":"=118= Wioska barbarzyƄska","Points":6206,"X":701,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861669Z"},{"ID":47744,"Name":"*005*","Points":8793,"X":679,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86167Z"},{"ID":47745,"Name":"001. Good Night","Points":10019,"X":491,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86167Z"},{"ID":47746,"Name":"Wioska barbarzyƄska","Points":2117,"X":317,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861671Z"},{"ID":47747,"Name":"*016","Points":7180,"X":674,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861671Z"},{"ID":47748,"Name":"005","Points":10495,"X":403,"Y":688,"Continent":"K64","Bonus":8,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861672Z"},{"ID":47749,"Name":"0085","Points":9968,"X":611,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861672Z"},{"ID":47750,"Name":"069.","Points":2200,"X":312,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861673Z"},{"ID":47751,"Name":"035","Points":3351,"X":624,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861673Z"},{"ID":47752,"Name":"Saran1","Points":4553,"X":411,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861674Z"},{"ID":47753,"Name":"##2","Points":9080,"X":348,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861675Z"},{"ID":47754,"Name":"Lord Arsey KING","Points":10285,"X":660,"Y":645,"Continent":"K66","Bonus":6,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861675Z"},{"ID":47755,"Name":"Osterwijk","Points":7896,"X":626,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":9103424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861676Z"},{"ID":47756,"Name":"wioska","Points":12154,"X":635,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861676Z"},{"ID":47757,"Name":"Wioska barbarzyƄska","Points":4735,"X":679,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861677Z"},{"ID":47758,"Name":"SkalpeR 2","Points":3325,"X":290,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":849108007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861677Z"},{"ID":47759,"Name":"B026","Points":6769,"X":625,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861678Z"},{"ID":47760,"Name":"C.025","Points":4472,"X":710,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861678Z"},{"ID":47761,"Name":"Wyspa 020","Points":1999,"X":297,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861679Z"},{"ID":47762,"Name":"C002","Points":9841,"X":369,"Y":670,"Continent":"K63","Bonus":6,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861679Z"},{"ID":47763,"Name":"Wioska barbarzyƄska","Points":10474,"X":588,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86168Z"},{"ID":47764,"Name":"Husaria","Points":9303,"X":689,"Y":598,"Continent":"K56","Bonus":6,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861681Z"},{"ID":47765,"Name":"010 maƂa pomyƂka","Points":10259,"X":521,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861681Z"},{"ID":47766,"Name":"Wioska barbarzyƄska","Points":8303,"X":298,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861682Z"},{"ID":47767,"Name":"C012","Points":3103,"X":545,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861682Z"},{"ID":47768,"Name":"001.","Points":8223,"X":626,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861683Z"},{"ID":47769,"Name":"O005","Points":9955,"X":338,"Y":638,"Continent":"K63","Bonus":5,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861683Z"},{"ID":47771,"Name":"067 - Nowy Początek...","Points":7870,"X":347,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861684Z"},{"ID":47772,"Name":"Wioska KaszczuJ 2","Points":9835,"X":699,"Y":574,"Continent":"K56","Bonus":0,"PlayerID":849104356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861684Z"},{"ID":47773,"Name":"071","Points":7764,"X":713,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861685Z"},{"ID":47774,"Name":"[179]","Points":9902,"X":677,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861685Z"},{"ID":47775,"Name":"Wioska barbarzyƄska","Points":10476,"X":582,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861686Z"},{"ID":47776,"Name":"004","Points":2599,"X":326,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7919620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861687Z"},{"ID":47777,"Name":"New World","Points":9145,"X":439,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861687Z"},{"ID":47778,"Name":"029 Novigrad","Points":9842,"X":469,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861688Z"},{"ID":47779,"Name":"Wioska barbarzyƄska","Points":6220,"X":313,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861688Z"},{"ID":47780,"Name":"0060 Wioska barbarzyƄska","Points":6027,"X":449,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861689Z"},{"ID":47782,"Name":"Cisza","Points":4651,"X":290,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861689Z"},{"ID":47783,"Name":"Wioska barbarzyƄska","Points":2085,"X":687,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86169Z"},{"ID":47784,"Name":"084 Anchor","Points":9835,"X":544,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86169Z"},{"ID":47786,"Name":"004","Points":3818,"X":445,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861691Z"},{"ID":47787,"Name":"CiemnogrĂłd #6","Points":7629,"X":333,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861691Z"},{"ID":47788,"Name":"FAKE OR OFF","Points":9712,"X":408,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861692Z"},{"ID":47789,"Name":"Wioska majku 4","Points":3093,"X":414,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":363280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861692Z"},{"ID":47790,"Name":"Na KraƄcu ƚwiata 003","Points":10475,"X":645,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861693Z"},{"ID":47792,"Name":"D004","Points":5902,"X":562,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861694Z"},{"ID":47793,"Name":"Winterfell.008","Points":10178,"X":445,"Y":296,"Continent":"K24","Bonus":3,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861694Z"},{"ID":47794,"Name":"Wioska014","Points":9654,"X":346,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861695Z"},{"ID":47796,"Name":"EO EO","Points":10160,"X":284,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861695Z"},{"ID":47797,"Name":"023. El Toro","Points":10495,"X":713,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861696Z"},{"ID":47798,"Name":"EO EO","Points":10019,"X":290,"Y":517,"Continent":"K52","Bonus":4,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861696Z"},{"ID":47799,"Name":"C012","Points":9790,"X":370,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861697Z"},{"ID":47800,"Name":"Asgard","Points":9105,"X":304,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861697Z"},{"ID":47801,"Name":"C0225","Points":6716,"X":291,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861698Z"},{"ID":47802,"Name":"Wioska barbarzyƄska","Points":9507,"X":522,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861699Z"},{"ID":47803,"Name":"North 002","Points":10311,"X":515,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861699Z"},{"ID":47804,"Name":"Wioska barbarzyƄska","Points":5265,"X":694,"Y":423,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8617Z"},{"ID":47805,"Name":"North 007","Points":10311,"X":510,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8617Z"},{"ID":47806,"Name":"xxx","Points":10495,"X":404,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861701Z"},{"ID":47807,"Name":"Maltic","Points":1383,"X":293,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861701Z"},{"ID":47808,"Name":"MojeDnoToWaszSzczyt","Points":9960,"X":500,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861702Z"},{"ID":47809,"Name":"Wioska008","Points":9288,"X":691,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861702Z"},{"ID":47810,"Name":"O016","Points":9955,"X":338,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861703Z"},{"ID":47811,"Name":"021","Points":11157,"X":524,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861703Z"},{"ID":47812,"Name":"Wioska barbarzyƄska","Points":10728,"X":678,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861704Z"},{"ID":47813,"Name":"0040","Points":10252,"X":581,"Y":693,"Continent":"K65","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861704Z"},{"ID":47814,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":501,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861705Z"},{"ID":47815,"Name":"Zeta Reticuli OO","Points":10728,"X":471,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861706Z"},{"ID":47816,"Name":"035.","Points":10838,"X":458,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861706Z"},{"ID":47817,"Name":"0107","Points":10216,"X":394,"Y":685,"Continent":"K63","Bonus":2,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861707Z"},{"ID":47818,"Name":"!36 65 Arbore","Points":9860,"X":658,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861707Z"},{"ID":47819,"Name":"ZƂoty ƚwit","Points":6456,"X":581,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861708Z"},{"ID":47820,"Name":"!36 66 Plesa","Points":9841,"X":666,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861708Z"},{"ID":47821,"Name":"barbarzyƄskaaaa","Points":10222,"X":713,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861709Z"},{"ID":47822,"Name":"a002","Points":1459,"X":681,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861709Z"},{"ID":47823,"Name":"*008*","Points":8029,"X":680,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86171Z"},{"ID":47824,"Name":"K33","Points":2577,"X":317,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86171Z"},{"ID":47825,"Name":"xxx","Points":8659,"X":322,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861711Z"},{"ID":47826,"Name":"Wioska barbarzyƄska","Points":3031,"X":287,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":849085605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861712Z"},{"ID":47827,"Name":"Flap","Points":10692,"X":604,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861712Z"},{"ID":47828,"Name":"CiemnogrĂłd","Points":9939,"X":333,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861713Z"},{"ID":47829,"Name":"Dobrawa","Points":5540,"X":572,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861713Z"},{"ID":47830,"Name":"Kurnik","Points":3965,"X":456,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861714Z"},{"ID":47831,"Name":"071.Stradi","Points":9869,"X":429,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861714Z"},{"ID":47832,"Name":"019. Elbrus","Points":9182,"X":711,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861715Z"},{"ID":47833,"Name":"Lord Arsey KING","Points":9014,"X":657,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861715Z"},{"ID":47834,"Name":"O003","Points":9955,"X":338,"Y":633,"Continent":"K63","Bonus":8,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861716Z"},{"ID":47835,"Name":"EO EO","Points":9177,"X":293,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861717Z"},{"ID":47836,"Name":"015","Points":2752,"X":325,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861717Z"},{"ID":47837,"Name":"Ob Konfederacja","Points":9682,"X":438,"Y":336,"Continent":"K34","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861718Z"},{"ID":47838,"Name":"BRICKLEBERRY","Points":10242,"X":515,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861718Z"},{"ID":47839,"Name":"Wioska X10","Points":1560,"X":296,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861719Z"},{"ID":47840,"Name":"C13","Points":3513,"X":706,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861719Z"},{"ID":47841,"Name":"003","Points":4087,"X":444,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86172Z"},{"ID":47842,"Name":"Wioska barbarzyƄska","Points":5937,"X":336,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86172Z"},{"ID":47843,"Name":"188","Points":9209,"X":416,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861721Z"},{"ID":47844,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9825,"X":560,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861721Z"},{"ID":47846,"Name":"Elo elo 15","Points":4855,"X":304,"Y":577,"Continent":"K53","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861722Z"},{"ID":47847,"Name":"090 Wioska barbarzyƄska","Points":6794,"X":542,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861722Z"},{"ID":47849,"Name":"Taran","Points":7708,"X":311,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861723Z"},{"ID":47850,"Name":"Brugge","Points":9171,"X":555,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861724Z"},{"ID":47851,"Name":"!36 65 Manastioara","Points":6389,"X":657,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861724Z"},{"ID":47853,"Name":"Wyspa_51","Points":9638,"X":495,"Y":718,"Continent":"K74","Bonus":9,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861725Z"},{"ID":47854,"Name":"Wioska barbarzyƄska","Points":6803,"X":416,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861725Z"},{"ID":47855,"Name":"czorny","Points":1379,"X":698,"Y":576,"Continent":"K56","Bonus":0,"PlayerID":849101814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861726Z"},{"ID":47856,"Name":"18 Adamuswielki2..","Points":9114,"X":298,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861726Z"},{"ID":47857,"Name":"*006","Points":8864,"X":668,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861727Z"},{"ID":47858,"Name":"Amsterdam Holandia","Points":1732,"X":290,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":698368493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861727Z"},{"ID":47859,"Name":"AAA","Points":10377,"X":549,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861728Z"},{"ID":47860,"Name":"C004","Points":5398,"X":539,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861728Z"},{"ID":47861,"Name":"komandos","Points":10178,"X":633,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861729Z"},{"ID":47862,"Name":"Wioska krumlow 14","Points":2372,"X":593,"Y":316,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861729Z"},{"ID":47863,"Name":"Wioska barbarzyƄska","Points":9755,"X":637,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86173Z"},{"ID":47864,"Name":"006","Points":10495,"X":401,"Y":690,"Continent":"K64","Bonus":4,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861731Z"},{"ID":47865,"Name":"0032","Points":3993,"X":485,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861731Z"},{"ID":47866,"Name":"036.","Points":3283,"X":630,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861732Z"},{"ID":47867,"Name":"001","Points":5949,"X":301,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861732Z"},{"ID":47868,"Name":"026. Forela","Points":10152,"X":712,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861733Z"},{"ID":47869,"Name":"Wiocha V","Points":2400,"X":337,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":849106316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861733Z"},{"ID":47871,"Name":"Wioska barbarzyƄska","Points":9166,"X":553,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861734Z"},{"ID":47872,"Name":"###050###","Points":10495,"X":593,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861734Z"},{"ID":47873,"Name":"Taran","Points":8163,"X":320,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861735Z"},{"ID":47874,"Name":"001","Points":12154,"X":323,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861735Z"},{"ID":47875,"Name":"Wioska barbarzyƄska","Points":10269,"X":707,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":7047342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861736Z"},{"ID":47876,"Name":"????","Points":10503,"X":476,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861736Z"},{"ID":47877,"Name":"046","Points":9239,"X":674,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861737Z"},{"ID":47878,"Name":"Bagno 1","Points":9731,"X":481,"Y":716,"Continent":"K74","Bonus":9,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861738Z"},{"ID":47880,"Name":"Wypijmy zdrowie","Points":5949,"X":690,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861738Z"},{"ID":47882,"Name":"###115###","Points":10495,"X":585,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861739Z"},{"ID":47883,"Name":"#0279 Don Noobas","Points":3813,"X":465,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861739Z"},{"ID":47884,"Name":"Lord Arsey KING","Points":9014,"X":655,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86174Z"},{"ID":47885,"Name":"0074 Wioska barbarzyƄska","Points":6648,"X":445,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86174Z"},{"ID":47886,"Name":"Wioska 0021","Points":6656,"X":351,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861741Z"},{"ID":47887,"Name":"Wioska barbarzyƄska","Points":2810,"X":380,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":6821136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861741Z"},{"ID":47888,"Name":"Winona","Points":5440,"X":531,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861742Z"},{"ID":47889,"Name":"Wioska barbarzyƄska","Points":2819,"X":592,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861742Z"},{"ID":47890,"Name":"0529","Points":9753,"X":532,"Y":664,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861743Z"},{"ID":47891,"Name":"B009","Points":7129,"X":629,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861743Z"},{"ID":47892,"Name":"KONFA TO MARKA, NARKA","Points":7829,"X":289,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861744Z"},{"ID":47893,"Name":"Wioska barbarzyƄska","Points":2239,"X":282,"Y":486,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861745Z"},{"ID":47894,"Name":"Wiadro05","Points":9444,"X":674,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861745Z"},{"ID":47895,"Name":"!!!Wioska barbarzyƄska","Points":4954,"X":642,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861746Z"},{"ID":47896,"Name":"NBT J","Points":9233,"X":596,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861746Z"},{"ID":47897,"Name":"Wioska barbarzyƄska","Points":10287,"X":571,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861747Z"},{"ID":47898,"Name":"206","Points":10483,"X":427,"Y":298,"Continent":"K24","Bonus":7,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861747Z"},{"ID":47899,"Name":"013","Points":6424,"X":290,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861748Z"},{"ID":47900,"Name":"Wioska barbarzyƄska","Points":8235,"X":710,"Y":492,"Continent":"K47","Bonus":7,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861748Z"},{"ID":47901,"Name":"Wioska barbarzyƄska","Points":3282,"X":655,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861749Z"},{"ID":47902,"Name":"167...K","Points":4952,"X":395,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861749Z"},{"ID":47904,"Name":"#K75 0003","Points":6835,"X":521,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86175Z"},{"ID":47905,"Name":"Wioska 0011","Points":10311,"X":346,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86175Z"},{"ID":47906,"Name":"The Game Has Only Just Begun","Points":9976,"X":353,"Y":521,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861751Z"},{"ID":47907,"Name":"Zaplecze Barba 011","Points":8741,"X":368,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861751Z"},{"ID":47908,"Name":"Wioska barbarzyƄska","Points":9780,"X":709,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861752Z"},{"ID":47909,"Name":"10 Dzięki Lord Lord Dexter ;)..","Points":9835,"X":294,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861753Z"},{"ID":47910,"Name":"#K75 0025","Points":5881,"X":517,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861753Z"},{"ID":47911,"Name":"a-3","Points":10495,"X":678,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861754Z"},{"ID":47912,"Name":"Wioska barbarzyƄska","Points":8935,"X":647,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861754Z"},{"ID":47913,"Name":"034|| Ara","Points":6361,"X":459,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861755Z"},{"ID":47914,"Name":"Szlachcic","Points":6949,"X":359,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861755Z"},{"ID":47915,"Name":"Wioska10","Points":6940,"X":705,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861756Z"},{"ID":47916,"Name":"AAA","Points":6704,"X":550,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861757Z"},{"ID":47917,"Name":"C088","Points":8397,"X":362,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861757Z"},{"ID":47918,"Name":"###116###","Points":10495,"X":583,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861758Z"},{"ID":47919,"Name":"037.","Points":3879,"X":626,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861758Z"},{"ID":47920,"Name":"Wioska barbarzyƄska","Points":9225,"X":380,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861759Z"},{"ID":47921,"Name":"XXXX","Points":10178,"X":564,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861759Z"},{"ID":47922,"Name":"Lord Arsey KING","Points":9377,"X":661,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86176Z"},{"ID":47923,"Name":"Jan Ost skrajny II","Points":5637,"X":709,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86176Z"},{"ID":47924,"Name":"09 Sytuacja","Points":9754,"X":704,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861761Z"},{"ID":47925,"Name":"Wioska 002","Points":10061,"X":694,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861762Z"},{"ID":47926,"Name":"047","Points":7114,"X":509,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861762Z"},{"ID":47927,"Name":"KONFA TO MARKA, NARKA","Points":8031,"X":291,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861763Z"},{"ID":47928,"Name":"3.Coventry","Points":5457,"X":548,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861763Z"},{"ID":47929,"Name":"012 Dziekanowice","Points":2963,"X":285,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861764Z"},{"ID":47930,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":670,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861764Z"},{"ID":47931,"Name":"0145","Points":4571,"X":391,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861765Z"},{"ID":47932,"Name":"012","Points":1162,"X":303,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861765Z"},{"ID":47933,"Name":"112","Points":10495,"X":408,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861766Z"},{"ID":47934,"Name":"New WorldA","Points":4805,"X":284,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861766Z"},{"ID":47935,"Name":"054","Points":10495,"X":406,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861767Z"},{"ID":47936,"Name":"xzc","Points":10084,"X":488,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861767Z"},{"ID":47937,"Name":"Początek","Points":5886,"X":307,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861768Z"},{"ID":47938,"Name":"Wioska barbarzyƄska","Points":9138,"X":474,"Y":283,"Continent":"K24","Bonus":1,"PlayerID":699196829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861769Z"},{"ID":47939,"Name":"001b","Points":5230,"X":302,"Y":414,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861769Z"},{"ID":47940,"Name":"Cisza","Points":5330,"X":289,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86177Z"},{"ID":47941,"Name":"Wioska barbarzyƄska","Points":2433,"X":386,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86177Z"},{"ID":47942,"Name":"Magiczne koszary","Points":9809,"X":462,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861771Z"},{"ID":47943,"Name":"[0122]","Points":9885,"X":439,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861771Z"},{"ID":47944,"Name":"Wioska barbarzyƄska","Points":4797,"X":304,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861772Z"},{"ID":47945,"Name":"C006","Points":9880,"X":372,"Y":674,"Continent":"K63","Bonus":4,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861772Z"},{"ID":47946,"Name":"XDX","Points":7427,"X":606,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861773Z"},{"ID":47947,"Name":"XDX","Points":10585,"X":608,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861774Z"},{"ID":47948,"Name":"Wioska barbarzyƄska","Points":1526,"X":508,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861774Z"},{"ID":47949,"Name":"WS 06","Points":6848,"X":703,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861775Z"},{"ID":47950,"Name":"KONFA TO MARKA, NARKA","Points":8420,"X":293,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861775Z"},{"ID":47951,"Name":"Wioska barbarzyƄska","Points":7391,"X":302,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861776Z"},{"ID":47952,"Name":"Wioska witold2129","Points":4734,"X":700,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":699471829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861776Z"},{"ID":47953,"Name":"037 Vattweir","Points":10838,"X":472,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861777Z"},{"ID":47954,"Name":"CiemnogrĂłd #7","Points":7797,"X":334,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861777Z"},{"ID":47955,"Name":"KONFA TO MARKA, NARKA","Points":7207,"X":299,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861778Z"},{"ID":47956,"Name":"39.Jamurlak","Points":4979,"X":710,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861778Z"},{"ID":47957,"Name":"047","Points":8505,"X":673,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861779Z"},{"ID":47958,"Name":"Ć»UBEREK 001","Points":10778,"X":608,"Y":687,"Continent":"K66","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861779Z"},{"ID":47959,"Name":"WooWoo zimą chodzi w sandaƂach","Points":9122,"X":616,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86178Z"},{"ID":47960,"Name":"005","Points":3631,"X":699,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":849085371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86178Z"},{"ID":47961,"Name":"...","Points":8462,"X":583,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":7985956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861781Z"},{"ID":47962,"Name":"Wioska barbarzyƄska","Points":3652,"X":705,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861782Z"},{"ID":47963,"Name":"Wioska barbarzyƄska","Points":3934,"X":709,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861782Z"},{"ID":47964,"Name":"BRICKLEBERRY","Points":10040,"X":518,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861783Z"},{"ID":47965,"Name":"Brama KrĂłlowej","Points":9098,"X":707,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861783Z"},{"ID":47966,"Name":"PóƂnocny Bagdad","Points":9835,"X":618,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861784Z"},{"ID":47967,"Name":"komandos","Points":10053,"X":646,"Y":662,"Continent":"K66","Bonus":5,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861784Z"},{"ID":47969,"Name":"014","Points":10636,"X":289,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861785Z"},{"ID":47970,"Name":"#K75 0028","Points":4403,"X":513,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861785Z"},{"ID":47971,"Name":"Wioska Jopo32","Points":8227,"X":527,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699733501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861786Z"},{"ID":47972,"Name":"Osada 6","Points":9560,"X":698,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861786Z"},{"ID":47973,"Name":"Avanti!","Points":9525,"X":283,"Y":473,"Continent":"K42","Bonus":4,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861787Z"},{"ID":47974,"Name":"Szlachcic","Points":9806,"X":362,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861787Z"},{"ID":47975,"Name":"KRÓL PAPI WIELKI","Points":6242,"X":715,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861788Z"},{"ID":47976,"Name":"[006]","Points":8851,"X":460,"Y":633,"Continent":"K64","Bonus":0,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861789Z"},{"ID":47977,"Name":"###117###","Points":10495,"X":594,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861789Z"},{"ID":47978,"Name":"Wioska barbarzyƄska","Points":9226,"X":476,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86179Z"},{"ID":47979,"Name":"...","Points":9229,"X":341,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86179Z"},{"ID":47980,"Name":"023","Points":11731,"X":528,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861791Z"},{"ID":47981,"Name":"Wioska barbarzyƄska","Points":8202,"X":684,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861791Z"},{"ID":47982,"Name":"008 KW","Points":9957,"X":702,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861792Z"},{"ID":47983,"Name":"Taran","Points":5189,"X":323,"Y":619,"Continent":"K63","Bonus":4,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861792Z"},{"ID":47984,"Name":"Wioska barbarzyƄska","Points":8851,"X":703,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861793Z"},{"ID":47985,"Name":"New WorldA","Points":4087,"X":285,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861793Z"},{"ID":47986,"Name":"????","Points":5098,"X":470,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861794Z"},{"ID":47987,"Name":"063.Stradi","Points":10073,"X":433,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861795Z"},{"ID":47988,"Name":"20 Dwie dychy","Points":4530,"X":711,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861795Z"},{"ID":47989,"Name":"Wioska B","Points":4687,"X":540,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861796Z"},{"ID":47990,"Name":"Sernik z Andzynkami","Points":7841,"X":709,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861796Z"},{"ID":47991,"Name":"004 Abinghton","Points":10143,"X":619,"Y":320,"Continent":"K36","Bonus":1,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861797Z"},{"ID":47992,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9828,"X":487,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861797Z"},{"ID":47993,"Name":"...","Points":6073,"X":339,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861798Z"},{"ID":47994,"Name":"Wioska maks","Points":8890,"X":374,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861798Z"},{"ID":47995,"Name":"*007*","Points":8171,"X":683,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861799Z"},{"ID":47996,"Name":"038.","Points":3253,"X":631,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8618Z"},{"ID":47997,"Name":"142","Points":6764,"X":402,"Y":687,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8618Z"},{"ID":47998,"Name":"033","Points":9783,"X":659,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861801Z"},{"ID":47999,"Name":"[202]","Points":6641,"X":678,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861801Z"},{"ID":48000,"Name":"KONFA TO MARKA, NARKA","Points":10053,"X":289,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861802Z"},{"ID":48001,"Name":"Maribor","Points":10068,"X":556,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861802Z"},{"ID":48002,"Name":"Wioska barbarzyƄska","Points":2142,"X":305,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861803Z"},{"ID":48004,"Name":"C0238","Points":8241,"X":290,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861803Z"},{"ID":48005,"Name":"WB08","Points":4606,"X":307,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861804Z"},{"ID":48006,"Name":"Las Palmas","Points":6202,"X":379,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861804Z"},{"ID":48008,"Name":"FAKE OR OFF","Points":9822,"X":403,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861805Z"},{"ID":48009,"Name":"Wioska barbarzyƄska","Points":5061,"X":450,"Y":385,"Continent":"K34","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861805Z"},{"ID":48010,"Name":"Cisza","Points":6921,"X":289,"Y":554,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861806Z"},{"ID":48011,"Name":"005 xd elo","Points":9835,"X":309,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861807Z"},{"ID":48012,"Name":"KONFA TO MARKA, NARKA","Points":7296,"X":288,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861807Z"},{"ID":48013,"Name":"0011 Węgorzewo","Points":5265,"X":462,"Y":284,"Continent":"K24","Bonus":9,"PlayerID":849096882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861808Z"},{"ID":48014,"Name":"002 Twierdza","Points":10019,"X":630,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861808Z"},{"ID":48015,"Name":"ZƂoty ƚwit","Points":7154,"X":579,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861809Z"},{"ID":48016,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":291,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861809Z"},{"ID":48017,"Name":"Orion","Points":5646,"X":284,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849101647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86181Z"},{"ID":48018,"Name":"Wioska barbarzyƄska","Points":2052,"X":327,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86181Z"},{"ID":48019,"Name":"Wyspa 018","Points":5716,"X":298,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861811Z"},{"ID":48020,"Name":"Wioska barbarzyƄska","Points":6322,"X":508,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861811Z"},{"ID":48021,"Name":".achim.","Points":9150,"X":482,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861812Z"},{"ID":48022,"Name":"039.","Points":4460,"X":627,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861813Z"},{"ID":48023,"Name":"Wioska barbarzyƄska","Points":8880,"X":638,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861813Z"},{"ID":48024,"Name":"Bessa 007","Points":9996,"X":639,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861814Z"},{"ID":48025,"Name":"Kurnik","Points":1322,"X":442,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861814Z"},{"ID":48026,"Name":"C.041","Points":4346,"X":711,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861815Z"},{"ID":48027,"Name":"###015###","Points":10495,"X":607,"Y":690,"Continent":"K66","Bonus":9,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861815Z"},{"ID":48028,"Name":"Szlachcic","Points":4266,"X":360,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861816Z"},{"ID":48029,"Name":"G005","Points":9566,"X":511,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861816Z"},{"ID":48030,"Name":"S009","Points":7468,"X":596,"Y":687,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861817Z"},{"ID":48031,"Name":"002 potrzeby?","Points":6793,"X":534,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861817Z"},{"ID":48032,"Name":"NOT?","Points":1748,"X":434,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861818Z"},{"ID":48033,"Name":"Taran","Points":8411,"X":323,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861818Z"},{"ID":48034,"Name":"044. Jaworowy","Points":8306,"X":711,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861819Z"},{"ID":48035,"Name":"015","Points":9792,"X":718,"Y":497,"Continent":"K47","Bonus":2,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861819Z"},{"ID":48036,"Name":"047","Points":6059,"X":663,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86182Z"},{"ID":48037,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":291,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86182Z"},{"ID":48038,"Name":"Parque de Santa Catalina","Points":2588,"X":376,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861821Z"},{"ID":48039,"Name":"030# Karla","Points":2902,"X":448,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861822Z"},{"ID":48041,"Name":"ZƂoty ƚwit","Points":10055,"X":583,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861822Z"},{"ID":48042,"Name":"Wioska barbarzyƄska","Points":1567,"X":365,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861823Z"},{"ID":48043,"Name":"ZZ05","Points":9648,"X":310,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861823Z"},{"ID":48044,"Name":"TWIERDZA .:076:.","Points":6021,"X":703,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861824Z"},{"ID":48045,"Name":"1. basket","Points":4116,"X":310,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861824Z"},{"ID":48047,"Name":"New WorldA","Points":6360,"X":290,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861825Z"},{"ID":48048,"Name":"Nabatene","Points":8219,"X":458,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861825Z"},{"ID":48049,"Name":"XDX","Points":9681,"X":607,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861826Z"},{"ID":48050,"Name":"Początek","Points":3643,"X":299,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861826Z"},{"ID":48051,"Name":"186","Points":9585,"X":415,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861827Z"},{"ID":48052,"Name":"Wioska barbarzyƄska","Points":1580,"X":305,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861827Z"},{"ID":48055,"Name":"Wioska barbarzyƄska","Points":9535,"X":372,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861828Z"},{"ID":48057,"Name":"173","Points":7434,"X":380,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861829Z"},{"ID":48058,"Name":"DĆŒejdĆŒej 6","Points":1283,"X":669,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861829Z"},{"ID":48059,"Name":"wioska","Points":3583,"X":637,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86183Z"},{"ID":48061,"Name":"Wioska barbarzyƄska","Points":6585,"X":385,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86183Z"},{"ID":48062,"Name":"099.Stradi","Points":8905,"X":439,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861831Z"},{"ID":48063,"Name":"037","Points":6440,"X":510,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861831Z"},{"ID":48064,"Name":"036","Points":3601,"X":665,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861832Z"},{"ID":48065,"Name":"020","Points":5435,"X":648,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861832Z"},{"ID":48067,"Name":"002","Points":8890,"X":349,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861833Z"},{"ID":48068,"Name":"Wioska barbarzyƄska","Points":9284,"X":557,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861833Z"},{"ID":48069,"Name":"bucksbarzyƄskamiiiru","Points":2290,"X":328,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861834Z"},{"ID":48070,"Name":"cc 091d","Points":7054,"X":410,"Y":373,"Continent":"K34","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861835Z"},{"ID":48071,"Name":"036.","Points":10503,"X":454,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861835Z"},{"ID":48072,"Name":"Wioska barbarzyƄska","Points":3610,"X":332,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861836Z"},{"ID":48073,"Name":"4_Franekkimono510_4","Points":6281,"X":369,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861836Z"},{"ID":48074,"Name":"004","Points":5139,"X":683,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861837Z"},{"ID":48075,"Name":"10. Vindobona","Points":10479,"X":711,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861837Z"},{"ID":48076,"Name":"????","Points":7511,"X":472,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861838Z"},{"ID":48078,"Name":"Wioska barbarzyƄska","Points":9765,"X":323,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861838Z"},{"ID":48079,"Name":"--024--","Points":6128,"X":572,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861839Z"},{"ID":48080,"Name":"#0024 barbarzyƄska","Points":10178,"X":489,"Y":287,"Continent":"K24","Bonus":8,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861839Z"},{"ID":48081,"Name":"015. Pollo alla cacciatore","Points":9782,"X":329,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86184Z"},{"ID":48082,"Name":"Podbitek 4","Points":3453,"X":689,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861841Z"},{"ID":48083,"Name":"pusta","Points":10024,"X":557,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861841Z"},{"ID":48084,"Name":"005","Points":6528,"X":611,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861842Z"},{"ID":48086,"Name":"775","Points":7143,"X":345,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861842Z"},{"ID":48087,"Name":"044KP","Points":8481,"X":486,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861843Z"},{"ID":48088,"Name":"Ostatnia Noc","Points":6868,"X":696,"Y":425,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861843Z"},{"ID":48089,"Name":"=085= Plymouth","Points":6914,"X":700,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861844Z"},{"ID":48090,"Name":"Wioska006","Points":9041,"X":344,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861844Z"},{"ID":48091,"Name":"Wioska barbarzyƄska","Points":8325,"X":375,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861845Z"},{"ID":48092,"Name":"XDX","Points":5962,"X":595,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861845Z"},{"ID":48093,"Name":"Avanti!","Points":6771,"X":282,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861846Z"},{"ID":48094,"Name":"Bolonia","Points":1395,"X":302,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":699852080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861846Z"},{"ID":48095,"Name":"#0296 LAROX","Points":7545,"X":461,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861847Z"},{"ID":48096,"Name":"0141","Points":5077,"X":390,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861847Z"},{"ID":48097,"Name":"W36","Points":3235,"X":694,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861848Z"},{"ID":48098,"Name":"DĆŒejdĆŒej 3","Points":8745,"X":668,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861848Z"},{"ID":48099,"Name":"Lord Arsey KING","Points":8274,"X":658,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861849Z"},{"ID":48100,"Name":"[0250]","Points":5576,"X":283,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861849Z"},{"ID":48101,"Name":"Jan III Sobieski","Points":3421,"X":713,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86185Z"},{"ID":48102,"Name":"039. Pig","Points":4206,"X":509,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86185Z"},{"ID":48103,"Name":"Wielka Lechia","Points":4103,"X":294,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":848970357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861851Z"},{"ID":48104,"Name":"Wioska barbarzyƄska 2x3","Points":8790,"X":570,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861851Z"},{"ID":48105,"Name":"Avanti!","Points":6280,"X":285,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861852Z"},{"ID":48106,"Name":"New World 1","Points":10178,"X":289,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861852Z"},{"ID":48107,"Name":"Wioska011","Points":7085,"X":689,"Y":399,"Continent":"K36","Bonus":2,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861853Z"},{"ID":48108,"Name":"New WorldA","Points":4442,"X":284,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861853Z"},{"ID":48109,"Name":"34. Szalom","Points":7429,"X":558,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861854Z"},{"ID":48111,"Name":"New World","Points":10294,"X":428,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861854Z"},{"ID":48112,"Name":"Na SsSskraju","Points":6896,"X":298,"Y":556,"Continent":"K52","Bonus":7,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861855Z"},{"ID":48113,"Name":"O079","Points":9870,"X":335,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861855Z"},{"ID":48114,"Name":"3. Syrax","Points":4426,"X":301,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861856Z"},{"ID":48115,"Name":"C047","Points":8589,"X":369,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861856Z"},{"ID":48116,"Name":"Wioska barbarzyƄska","Points":7467,"X":534,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861857Z"},{"ID":48117,"Name":"O131","Points":7961,"X":319,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861857Z"},{"ID":48118,"Name":"013","Points":1969,"X":615,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861858Z"},{"ID":48119,"Name":"Ultimate Farming Simulator 2","Points":9534,"X":417,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":699872032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861858Z"},{"ID":48120,"Name":"FAKE OR OFF","Points":9816,"X":406,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861859Z"},{"ID":48121,"Name":"028","Points":10160,"X":296,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86186Z"},{"ID":48122,"Name":"Wioska 008","Points":6968,"X":693,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86186Z"},{"ID":48123,"Name":"O064","Points":9868,"X":332,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861861Z"},{"ID":48124,"Name":"Wioska barbarzyƄska","Points":8723,"X":703,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861861Z"},{"ID":48125,"Name":"121","Points":5874,"X":701,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861862Z"},{"ID":48126,"Name":"New WorldA","Points":6749,"X":291,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861862Z"},{"ID":48127,"Name":".achim.","Points":6589,"X":563,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861863Z"},{"ID":48129,"Name":"PóƂnocny Bagdad","Points":9976,"X":616,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861863Z"},{"ID":48130,"Name":"Senne","Points":6205,"X":286,"Y":457,"Continent":"K42","Bonus":9,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861864Z"},{"ID":48131,"Name":"Avanti!","Points":6939,"X":283,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861865Z"},{"ID":48132,"Name":"Avanti!","Points":6919,"X":287,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861865Z"},{"ID":48133,"Name":"Mamy sporo za sobą","Points":6057,"X":701,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861866Z"},{"ID":48134,"Name":"Wioska barbarzyƄska","Points":9863,"X":358,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861866Z"},{"ID":48136,"Name":"Wioska barbarzyƄska","Points":2857,"X":419,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":849102150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861867Z"},{"ID":48137,"Name":"Osada koczownikĂłw","Points":9934,"X":383,"Y":325,"Continent":"K33","Bonus":8,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861867Z"},{"ID":48138,"Name":"016 - Budowanko!","Points":7305,"X":485,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861868Z"},{"ID":48139,"Name":"Saran4","Points":3739,"X":412,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861868Z"},{"ID":48140,"Name":"New Land 28","Points":2869,"X":330,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861869Z"},{"ID":48141,"Name":"Holandia100","Points":3014,"X":289,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":698368493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861869Z"},{"ID":48142,"Name":"[0161]","Points":8491,"X":450,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86187Z"},{"ID":48143,"Name":".achim.","Points":3495,"X":477,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861871Z"},{"ID":48145,"Name":"Kolonia 03","Points":8447,"X":304,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861871Z"},{"ID":48147,"Name":"006 Wioska barbarzyƄska","Points":10019,"X":603,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861872Z"},{"ID":48148,"Name":"Wioska2.","Points":9525,"X":705,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861872Z"},{"ID":48149,"Name":"[B]001","Points":9828,"X":417,"Y":702,"Continent":"K74","Bonus":8,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861873Z"},{"ID":48152,"Name":"Klatka5","Points":2819,"X":623,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861873Z"},{"ID":48153,"Name":"023Nowy Rok","Points":8014,"X":474,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861874Z"},{"ID":48154,"Name":"MojeDnoToWaszSzczyt","Points":9957,"X":493,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861874Z"},{"ID":48155,"Name":"005","Points":6857,"X":531,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861875Z"},{"ID":48156,"Name":"...","Points":5569,"X":340,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861876Z"},{"ID":48157,"Name":"ZZ16","Points":8198,"X":307,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861876Z"},{"ID":48158,"Name":"Wioska GƂaz","Points":1083,"X":386,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":848917401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861877Z"},{"ID":48159,"Name":"Wioska barbarzyƄska","Points":5929,"X":705,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861877Z"},{"ID":48160,"Name":"068.Stradi","Points":10064,"X":431,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861878Z"},{"ID":48161,"Name":"Avanti!","Points":6180,"X":285,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861878Z"},{"ID":48162,"Name":"Wioska barbarzyƄska","Points":4068,"X":647,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861879Z"},{"ID":48163,"Name":"bbb","Points":1388,"X":682,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861879Z"},{"ID":48164,"Name":".achim.","Points":8302,"X":481,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86188Z"},{"ID":48165,"Name":"EE 004","Points":9643,"X":693,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861881Z"},{"ID":48166,"Name":"HOLENDER 5","Points":4905,"X":322,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861881Z"},{"ID":48167,"Name":"Wioska barbarzyƄska","Points":4345,"X":335,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861882Z"},{"ID":48168,"Name":"BorysĂłwka maƂa","Points":4043,"X":305,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861882Z"},{"ID":48169,"Name":"TƂokowo kolonia","Points":8365,"X":285,"Y":501,"Continent":"K52","Bonus":1,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861883Z"},{"ID":48170,"Name":"R 037","Points":6806,"X":496,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861883Z"},{"ID":48171,"Name":"York","Points":7194,"X":567,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861884Z"},{"ID":48172,"Name":"ZƂoty ƚwit","Points":9998,"X":586,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861884Z"},{"ID":48173,"Name":"Barba","Points":8590,"X":289,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861885Z"},{"ID":48174,"Name":"Adamo3","Points":8645,"X":585,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861885Z"},{"ID":48176,"Name":"NBT D","Points":9238,"X":594,"Y":691,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861886Z"},{"ID":48177,"Name":"023","Points":10160,"X":714,"Y":473,"Continent":"K47","Bonus":3,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861887Z"},{"ID":48178,"Name":"C014","Points":9767,"X":543,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861887Z"},{"ID":48179,"Name":"Beteo","Points":9761,"X":553,"Y":705,"Continent":"K75","Bonus":4,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861888Z"},{"ID":48180,"Name":"Wioska barbarzyƄska","Points":406,"X":616,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861888Z"},{"ID":48181,"Name":"*006*","Points":7989,"X":685,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861889Z"},{"ID":48182,"Name":"New WorldA","Points":3056,"X":286,"Y":508,"Continent":"K52","Bonus":1,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861889Z"},{"ID":48183,"Name":"075 Wioska barbarzyƄska","Points":9752,"X":539,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86189Z"},{"ID":48184,"Name":"O010","Points":9956,"X":339,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86189Z"},{"ID":48186,"Name":"Taran","Points":9934,"X":326,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861891Z"},{"ID":48187,"Name":"B_3","Points":4281,"X":296,"Y":419,"Continent":"K42","Bonus":2,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861891Z"},{"ID":48188,"Name":"Wiba","Points":2307,"X":285,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861892Z"},{"ID":48189,"Name":"Wioska barbarzyƄska","Points":2719,"X":328,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861892Z"},{"ID":48190,"Name":"028. Night Raid*","Points":10471,"X":426,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861893Z"},{"ID":48191,"Name":"Szlachcic","Points":5987,"X":358,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861893Z"},{"ID":48192,"Name":"##5","Points":9080,"X":348,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861894Z"},{"ID":48193,"Name":"...","Points":5234,"X":341,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861895Z"},{"ID":48194,"Name":"Zzz 03 wejdĆș a nie wyjdziesz","Points":4149,"X":293,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861895Z"},{"ID":48195,"Name":"Wioska barbarzyƄska","Points":4161,"X":421,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861896Z"},{"ID":48196,"Name":"Lord Arsey IV","Points":3005,"X":325,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861896Z"},{"ID":48197,"Name":"- 279 - SS","Points":7361,"X":554,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861897Z"},{"ID":48198,"Name":"Taran","Points":10728,"X":687,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861897Z"},{"ID":48199,"Name":"096.Stradi","Points":8690,"X":438,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861898Z"},{"ID":48200,"Name":"Wioska barbarzyƄska","Points":7193,"X":529,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861898Z"},{"ID":48201,"Name":"A-002","Points":6320,"X":323,"Y":377,"Continent":"K33","Bonus":9,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861899Z"},{"ID":48202,"Name":"Bestan","Points":9761,"X":558,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861899Z"},{"ID":48203,"Name":"FAKE OR OFF","Points":9824,"X":410,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8619Z"},{"ID":48204,"Name":"032 Lavaridge Town","Points":5034,"X":717,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8619Z"},{"ID":48205,"Name":"*003","Points":9847,"X":668,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861901Z"},{"ID":48206,"Name":"-07-","Points":9472,"X":577,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861901Z"},{"ID":48207,"Name":"ChceszPokojuSzykujSięDoWojny","Points":9761,"X":488,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861902Z"},{"ID":48208,"Name":"New World","Points":10295,"X":438,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861903Z"},{"ID":48209,"Name":"118 invidia","Points":9546,"X":503,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861903Z"},{"ID":48210,"Name":"040.","Points":3250,"X":631,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861904Z"},{"ID":48211,"Name":"Wioska barbarzyƄska","Points":6453,"X":417,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861904Z"},{"ID":48212,"Name":"009 ukradƂem darmę","Points":10237,"X":521,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861905Z"},{"ID":48213,"Name":"Wioska Felicjan","Points":10160,"X":528,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861905Z"},{"ID":48214,"Name":"Wioska barbarzyƄska","Points":4101,"X":712,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861906Z"},{"ID":48215,"Name":"Wioska barbarzyƄska","Points":5454,"X":559,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861906Z"},{"ID":48216,"Name":"Wioska barbarzyƄska","Points":6034,"X":717,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861907Z"},{"ID":48217,"Name":"Wioska","Points":10160,"X":685,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861908Z"},{"ID":48218,"Name":"O029","Points":9907,"X":334,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861908Z"},{"ID":48219,"Name":"C080","Points":9597,"X":357,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861909Z"},{"ID":48220,"Name":"O052","Points":9871,"X":331,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861909Z"},{"ID":48221,"Name":"=Testudo=","Points":4103,"X":344,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":849101581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86191Z"},{"ID":48222,"Name":"New World","Points":10290,"X":424,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86191Z"},{"ID":48223,"Name":"Wioska 0023","Points":7731,"X":348,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861911Z"},{"ID":48224,"Name":"WIOSKA DO ODDANIA Z BONUSAMI","Points":1017,"X":462,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849101578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861911Z"},{"ID":48225,"Name":"WiedĆșma - Z 008","Points":2656,"X":301,"Y":432,"Continent":"K43","Bonus":0,"PlayerID":9239515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861912Z"},{"ID":48226,"Name":"EO EO","Points":10019,"X":281,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861912Z"},{"ID":48227,"Name":"Wioska barbarzyƄska","Points":5001,"X":305,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861913Z"},{"ID":48229,"Name":"Poziom emocji: 0","Points":7951,"X":353,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861913Z"},{"ID":48230,"Name":"Wioska *worm*","Points":3477,"X":292,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":2811353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861914Z"},{"ID":48231,"Name":"055 Wioska barbarzyƄska","Points":9976,"X":549,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861914Z"},{"ID":48232,"Name":"#.46 Wioska barbarzyƄska","Points":1722,"X":706,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":849054582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861915Z"},{"ID":48233,"Name":"088","Points":7074,"X":711,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861915Z"},{"ID":48234,"Name":"FAKE OR OFF","Points":9822,"X":410,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861916Z"},{"ID":48235,"Name":"C078","Points":5037,"X":355,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861917Z"},{"ID":48236,"Name":"Początek","Points":9674,"X":302,"Y":579,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861917Z"},{"ID":48237,"Name":"Tyle co nic","Points":2321,"X":693,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861918Z"},{"ID":48238,"Name":"rafisonik4","Points":9657,"X":511,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861918Z"},{"ID":48239,"Name":"North 004","Points":10311,"X":517,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861919Z"},{"ID":48240,"Name":"*015**","Points":6765,"X":680,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861919Z"},{"ID":48241,"Name":"Wiadro07","Points":8096,"X":673,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86192Z"},{"ID":48242,"Name":"Wioska barbarzyƄska","Points":287,"X":307,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86192Z"},{"ID":48243,"Name":"005","Points":2596,"X":538,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":8925624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861921Z"},{"ID":48244,"Name":"ZƂoty ƚwit","Points":9643,"X":580,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861922Z"},{"ID":48245,"Name":"Wioska barbarzyƄska 006","Points":9722,"X":379,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861922Z"},{"ID":48246,"Name":"0075 Wioska barbarzyƄska","Points":6798,"X":448,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861923Z"},{"ID":48247,"Name":"New World","Points":10294,"X":433,"Y":700,"Continent":"K74","Bonus":6,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861923Z"},{"ID":48248,"Name":"007 Ć»nin","Points":4179,"X":286,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861924Z"},{"ID":48249,"Name":"001 - Budowanko!","Points":11130,"X":488,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861924Z"},{"ID":48251,"Name":"Wioska ba","Points":4191,"X":281,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861925Z"},{"ID":48252,"Name":"Taran","Points":7699,"X":324,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861925Z"},{"ID":48253,"Name":"073","Points":5246,"X":626,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861926Z"},{"ID":48255,"Name":"087","Points":5952,"X":717,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861927Z"},{"ID":48257,"Name":"XDX","Points":6310,"X":603,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861927Z"},{"ID":48258,"Name":"Wioska 5","Points":1702,"X":655,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861928Z"},{"ID":48259,"Name":"Wioska barbarzyƄska","Points":5830,"X":715,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861928Z"},{"ID":48260,"Name":"Wioska barbarzyƄska","Points":3766,"X":708,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861929Z"},{"ID":48261,"Name":"041.","Points":4066,"X":630,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861929Z"},{"ID":48262,"Name":"stalingrad 1","Points":3777,"X":541,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86193Z"},{"ID":48264,"Name":"Wioska 19F06","Points":7262,"X":438,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861931Z"},{"ID":48265,"Name":"Kurnik","Points":2662,"X":444,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861931Z"},{"ID":48266,"Name":"C070","Points":4397,"X":358,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861932Z"},{"ID":48267,"Name":"Taran","Points":6228,"X":315,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861932Z"},{"ID":48268,"Name":"Wyspa 026","Points":4563,"X":292,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861933Z"},{"ID":48269,"Name":"C.026","Points":4680,"X":709,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861933Z"},{"ID":48271,"Name":"002","Points":7876,"X":696,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":7409475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861934Z"},{"ID":48272,"Name":"0080","Points":9912,"X":681,"Y":394,"Continent":"K36","Bonus":7,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861934Z"},{"ID":48274,"Name":"037","Points":8844,"X":716,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861935Z"},{"ID":48275,"Name":"0001 Wioska Hubixon","Points":9707,"X":494,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861936Z"},{"ID":48276,"Name":"MojeDnoToWaszSzczyt","Points":9971,"X":496,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861936Z"},{"ID":48277,"Name":"AAA","Points":7327,"X":555,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861937Z"},{"ID":48278,"Name":"-04-","Points":9472,"X":579,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861937Z"},{"ID":48281,"Name":"002 Giecz","Points":6994,"X":290,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861938Z"},{"ID":48282,"Name":"#0186 grabarz22","Points":7114,"X":465,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861938Z"},{"ID":48283,"Name":"C04","Points":7090,"X":707,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861939Z"},{"ID":48284,"Name":"Kurnik","Points":9070,"X":548,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86194Z"},{"ID":48285,"Name":"006","Points":9428,"X":388,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86194Z"},{"ID":48286,"Name":"Architekci PlacĂłw Boju","Points":9880,"X":338,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861941Z"},{"ID":48287,"Name":"C071","Points":5609,"X":358,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861941Z"},{"ID":48288,"Name":"15 Tam gdzie Zawsze","Points":8462,"X":706,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861942Z"},{"ID":48289,"Name":"0434","Points":10019,"X":560,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861942Z"},{"ID":48290,"Name":"C010","Points":5798,"X":537,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861943Z"},{"ID":48291,"Name":"###118###","Points":10495,"X":587,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861943Z"},{"ID":48292,"Name":"253...Karki98","Points":5661,"X":452,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861944Z"},{"ID":48293,"Name":"015","Points":4574,"X":663,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861944Z"},{"ID":48294,"Name":"Wioska barbarzyƄska","Points":9310,"X":371,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861945Z"},{"ID":48295,"Name":"Wioska barbarzyƄska","Points":7158,"X":426,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861945Z"},{"ID":48296,"Name":"004 - Budowanko!","Points":8910,"X":490,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861946Z"},{"ID":48297,"Name":"13. PST","Points":4135,"X":477,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861946Z"},{"ID":48298,"Name":"XDX","Points":10290,"X":608,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861947Z"},{"ID":48299,"Name":"MojeDnoToWaszSzczyt","Points":9706,"X":502,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861948Z"},{"ID":48300,"Name":"069","Points":8275,"X":712,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861948Z"},{"ID":48302,"Name":"Taran","Points":9869,"X":323,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861949Z"},{"ID":48303,"Name":"073 Wioska barbarzyƄska","Points":9835,"X":543,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861949Z"},{"ID":48304,"Name":"C0246","Points":4870,"X":288,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86195Z"},{"ID":48305,"Name":"BossLand","Points":10120,"X":353,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86195Z"},{"ID":48306,"Name":"PiekƂo to inni","Points":5835,"X":643,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861951Z"},{"ID":48307,"Name":"...","Points":3917,"X":342,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861951Z"},{"ID":48308,"Name":"Wioska bar","Points":1928,"X":285,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861952Z"},{"ID":48309,"Name":"007","Points":6907,"X":384,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861952Z"},{"ID":48310,"Name":"005","Points":8434,"X":420,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861953Z"},{"ID":48311,"Name":"Szlachcic","Points":6772,"X":360,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861954Z"},{"ID":48312,"Name":"024","Points":4122,"X":646,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861954Z"},{"ID":48313,"Name":"[D]_[002] Dejv.oldplyr","Points":8749,"X":285,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861955Z"},{"ID":48314,"Name":"0126","Points":7460,"X":386,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861955Z"},{"ID":48315,"Name":"[0231]","Points":7549,"X":290,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861956Z"},{"ID":48316,"Name":"006:Wioska Huel","Points":10301,"X":374,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861956Z"},{"ID":48318,"Name":"#K66 0011","Points":4914,"X":609,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861957Z"},{"ID":48319,"Name":"Wioska barbarzyƄska","Points":8082,"X":385,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":6948793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861957Z"},{"ID":48320,"Name":"008 Biskupin","Points":7374,"X":286,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861958Z"},{"ID":48321,"Name":"#K75 0011","Points":5091,"X":521,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861958Z"},{"ID":48322,"Name":"087","Points":10026,"X":394,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861959Z"},{"ID":48323,"Name":"043","Points":5011,"X":293,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861959Z"},{"ID":48324,"Name":"[203]","Points":6024,"X":678,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86196Z"},{"ID":48325,"Name":"114","Points":4052,"X":683,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86196Z"},{"ID":48327,"Name":"039.","Points":9681,"X":451,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861961Z"},{"ID":48329,"Name":"New World","Points":10291,"X":435,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861962Z"},{"ID":48330,"Name":"Komandos","Points":10495,"X":638,"Y":665,"Continent":"K66","Bonus":4,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861962Z"},{"ID":48331,"Name":"Woof","Points":7263,"X":701,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861963Z"},{"ID":48332,"Name":"016","Points":4242,"X":386,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861963Z"},{"ID":48333,"Name":"Wioska barbarzyƄska","Points":2777,"X":687,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861964Z"},{"ID":48334,"Name":"XDX","Points":6115,"X":600,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861964Z"},{"ID":48335,"Name":"002","Points":9783,"X":663,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861965Z"},{"ID":48336,"Name":"D012","Points":5533,"X":560,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861965Z"},{"ID":48337,"Name":"Wyspa 017","Points":6680,"X":299,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861966Z"},{"ID":48338,"Name":"- 289 - SS","Points":6484,"X":559,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861966Z"},{"ID":48339,"Name":"006. xHavajek","Points":10237,"X":681,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861967Z"},{"ID":48340,"Name":"029 Slateport City","Points":4766,"X":713,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861967Z"},{"ID":48342,"Name":"ObrzeĆŒe","Points":8817,"X":582,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861968Z"},{"ID":48343,"Name":"SkalpeR 4","Points":2764,"X":281,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861968Z"},{"ID":48344,"Name":"Lord Arsey KING","Points":10285,"X":653,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861969Z"},{"ID":48345,"Name":"05. Rawenna","Points":10382,"X":709,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861969Z"},{"ID":48346,"Name":"FAKE OR OFF","Points":9813,"X":403,"Y":309,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86197Z"},{"ID":48347,"Name":"Cisza","Points":7385,"X":289,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861971Z"},{"ID":48348,"Name":"Kurnik","Points":2204,"X":446,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861971Z"},{"ID":48349,"Name":"A 036","Points":8254,"X":362,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861972Z"},{"ID":48350,"Name":"MJ45","Points":6100,"X":683,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861972Z"},{"ID":48351,"Name":"AlaKlaudia1","Points":5825,"X":383,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":848966521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861973Z"},{"ID":48352,"Name":"Daleko od domu.","Points":1680,"X":659,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861973Z"},{"ID":48354,"Name":"O067","Points":9868,"X":331,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861974Z"},{"ID":48355,"Name":"162...H","Points":5548,"X":392,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861974Z"},{"ID":48356,"Name":"010. Night Raid*","Points":10362,"X":433,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861975Z"},{"ID":48357,"Name":"049.","Points":4455,"X":637,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861975Z"},{"ID":48359,"Name":"018","Points":6332,"X":525,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861976Z"},{"ID":48360,"Name":"028. Brauer92","Points":7157,"X":674,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861976Z"},{"ID":48361,"Name":"Początek","Points":9924,"X":297,"Y":574,"Continent":"K52","Bonus":9,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861977Z"},{"ID":48362,"Name":"Ɓo baben!","Points":9797,"X":712,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861978Z"},{"ID":48363,"Name":"Wioska 003","Points":10304,"X":689,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861978Z"},{"ID":48365,"Name":"003","Points":8716,"X":701,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":301602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861979Z"},{"ID":48366,"Name":"Ger5","Points":3970,"X":716,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861979Z"},{"ID":48367,"Name":"181","Points":4771,"X":383,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":2268889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86198Z"},{"ID":48368,"Name":"Wioska009","Points":4286,"X":694,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86198Z"},{"ID":48369,"Name":"060","Points":10495,"X":401,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861981Z"},{"ID":48370,"Name":"artnow","Points":1960,"X":618,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861981Z"},{"ID":48371,"Name":"008","Points":3161,"X":311,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861982Z"},{"ID":48372,"Name":"010","Points":10171,"X":695,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861982Z"},{"ID":48373,"Name":"Wioska do czasu","Points":4366,"X":352,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861983Z"},{"ID":48375,"Name":"FAKE OR OFF","Points":9822,"X":403,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861983Z"},{"ID":48376,"Name":"Wioska barbarzyƄska","Points":3860,"X":709,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861984Z"},{"ID":48377,"Name":"New World","Points":10297,"X":421,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861984Z"},{"ID":48378,"Name":"Wancki","Points":9861,"X":517,"Y":287,"Continent":"K25","Bonus":6,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861985Z"},{"ID":48379,"Name":"#K75 0017","Points":4882,"X":520,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861986Z"},{"ID":48380,"Name":"Szlachcic","Points":6260,"X":362,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861986Z"},{"ID":48381,"Name":"Wiadro15","Points":10147,"X":666,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861987Z"},{"ID":48382,"Name":"KONFA TO MARKA, NARKA","Points":7668,"X":296,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861987Z"},{"ID":48383,"Name":"028|| Sextans","Points":10019,"X":488,"Y":643,"Continent":"K64","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861988Z"},{"ID":48384,"Name":"166","Points":9206,"X":413,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861988Z"},{"ID":48385,"Name":"U.004","Points":7159,"X":291,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861989Z"},{"ID":48386,"Name":"New World","Points":7471,"X":432,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861989Z"},{"ID":48387,"Name":"#0042","Points":10495,"X":545,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86199Z"},{"ID":48388,"Name":"058","Points":10495,"X":401,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86199Z"},{"ID":48389,"Name":"0033","Points":2603,"X":326,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861991Z"},{"ID":48390,"Name":"085","Points":6007,"X":719,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861991Z"},{"ID":48391,"Name":"????","Points":10503,"X":490,"Y":281,"Continent":"K24","Bonus":6,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861992Z"},{"ID":48392,"Name":"Wioska Vlo4","Points":8931,"X":586,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":8609713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861992Z"},{"ID":48393,"Name":"KONFA TO MARKA, NARKA","Points":6897,"X":290,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861993Z"},{"ID":48394,"Name":"...","Points":1652,"X":336,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861994Z"},{"ID":48395,"Name":"004","Points":5365,"X":308,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861994Z"},{"ID":48396,"Name":"004","Points":7938,"X":353,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861995Z"},{"ID":48397,"Name":"0042","Points":3745,"X":473,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861995Z"},{"ID":48398,"Name":"ZƂoty ƚwit","Points":7896,"X":596,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861996Z"},{"ID":48399,"Name":"Kurnik","Points":7644,"X":477,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861996Z"},{"ID":48400,"Name":"C.042","Points":4517,"X":715,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861997Z"},{"ID":48402,"Name":"Wioska barbarzyƄska","Points":7015,"X":694,"Y":598,"Continent":"K56","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861998Z"},{"ID":48403,"Name":"ZƂoty ƚwit","Points":10119,"X":580,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861998Z"},{"ID":48404,"Name":"Babidi #3","Points":7450,"X":373,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861999Z"},{"ID":48405,"Name":"0089","Points":9435,"X":685,"Y":399,"Continent":"K36","Bonus":6,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.861999Z"},{"ID":48406,"Name":"Wioska barbarzyƄska","Points":8229,"X":534,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862Z"},{"ID":48407,"Name":"Lord Arsey KING","Points":9870,"X":654,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862Z"},{"ID":48409,"Name":"115","Points":4350,"X":687,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862001Z"},{"ID":48410,"Name":"Kurnik","Points":9201,"X":467,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862001Z"},{"ID":48411,"Name":"Bagno 4","Points":9452,"X":485,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862002Z"},{"ID":48412,"Name":"IV. Krzyczki-Ć»abiczki","Points":4784,"X":364,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":849101893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862002Z"},{"ID":48413,"Name":"012","Points":5912,"X":657,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862003Z"},{"ID":48415,"Name":"bucksbarzyƄskamiiiru","Points":6973,"X":316,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862003Z"},{"ID":48417,"Name":"rafisonik3","Points":12154,"X":510,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862004Z"},{"ID":48418,"Name":"Blask","Points":7696,"X":701,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862004Z"},{"ID":48419,"Name":"*028*","Points":3309,"X":688,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862005Z"},{"ID":48420,"Name":"Hoofdorp","Points":1871,"X":282,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":699830255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862006Z"},{"ID":48422,"Name":"Wioska barbarzyƄska","Points":3550,"X":636,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862006Z"},{"ID":48423,"Name":"065 invidia","Points":6235,"X":546,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862007Z"},{"ID":48424,"Name":"!36 66 Runcu","Points":9483,"X":663,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862007Z"},{"ID":48425,"Name":"Moldor 5","Points":11078,"X":633,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":849049045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862008Z"},{"ID":48426,"Name":"XDX","Points":6620,"X":599,"Y":314,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862008Z"},{"ID":48427,"Name":"Taran","Points":9789,"X":314,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862009Z"},{"ID":48428,"Name":"Wioska barbarzyƄska","Points":8565,"X":431,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862009Z"},{"ID":48429,"Name":"XDX","Points":9759,"X":598,"Y":313,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86201Z"},{"ID":48430,"Name":"042","Points":3535,"X":625,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86201Z"},{"ID":48431,"Name":"#K75 0019","Points":4227,"X":519,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862011Z"},{"ID":48432,"Name":"New World","Points":10291,"X":436,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862011Z"},{"ID":48433,"Name":"Wioska barbarzyƄska","Points":6185,"X":573,"Y":646,"Continent":"K65","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862012Z"},{"ID":48434,"Name":"0024","Points":3169,"X":317,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862013Z"},{"ID":48435,"Name":"Wioska ZƂylos","Points":11495,"X":380,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862013Z"},{"ID":48436,"Name":"...","Points":8502,"X":338,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862014Z"},{"ID":48437,"Name":"R 038","Points":7625,"X":497,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862014Z"},{"ID":48438,"Name":"Z23","Points":9835,"X":313,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862015Z"},{"ID":48439,"Name":"Muspelheim","Points":2176,"X":667,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862015Z"},{"ID":48440,"Name":"EE 005","Points":9570,"X":697,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862016Z"},{"ID":48441,"Name":"kamilkaze135 #13","Points":4415,"X":688,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862016Z"},{"ID":48442,"Name":"(NieTymRazem)","Points":6801,"X":701,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862017Z"},{"ID":48443,"Name":"North K25","Points":2067,"X":535,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862017Z"},{"ID":48444,"Name":"005. Prosciutto e rucola","Points":4447,"X":327,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862018Z"},{"ID":48445,"Name":"Blumak","Points":9761,"X":551,"Y":711,"Continent":"K75","Bonus":1,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862018Z"},{"ID":48446,"Name":"Procyon","Points":9213,"X":291,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":849101647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862019Z"},{"ID":48447,"Name":"New WorldA","Points":2531,"X":281,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862019Z"},{"ID":48448,"Name":"Wioska barbarzyƄska","Points":5529,"X":719,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86202Z"},{"ID":48449,"Name":"###119###","Points":10495,"X":592,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86202Z"},{"ID":48450,"Name":"Wioska009","Points":9732,"X":344,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862021Z"},{"ID":48451,"Name":"Wioska barbarzyƄska","Points":6992,"X":573,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862021Z"},{"ID":48452,"Name":"EO EO","Points":10019,"X":283,"Y":519,"Continent":"K52","Bonus":5,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862022Z"},{"ID":48453,"Name":"Avanti!","Points":5963,"X":286,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862022Z"},{"ID":48454,"Name":"Wioska barbarzyƄska","Points":5549,"X":705,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862023Z"},{"ID":48455,"Name":"BRICKLEBERRY","Points":9395,"X":518,"Y":286,"Continent":"K25","Bonus":4,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862023Z"},{"ID":48456,"Name":"Wioska Mursilis","Points":2540,"X":508,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":9260447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862024Z"},{"ID":48458,"Name":"Stefan Batory","Points":7720,"X":714,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862025Z"},{"ID":48459,"Name":"Wioska barbarzyƄska","Points":8389,"X":373,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862025Z"},{"ID":48460,"Name":"EO EO","Points":10083,"X":287,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862026Z"},{"ID":48461,"Name":"C074","Points":4790,"X":355,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862026Z"},{"ID":48462,"Name":"HOLENDER 3","Points":5557,"X":318,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862027Z"},{"ID":48463,"Name":"068. Aeminium","Points":8063,"X":713,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862027Z"},{"ID":48464,"Name":"Ultimate Farming Simulator 3","Points":9232,"X":414,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":699872032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862028Z"},{"ID":48465,"Name":"Szlachcic","Points":6022,"X":363,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862028Z"},{"ID":48466,"Name":"072","Points":6414,"X":715,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862029Z"},{"ID":48467,"Name":"Bagno 13","Points":9468,"X":482,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862029Z"},{"ID":48468,"Name":"Wioska barbarzyƄska 002","Points":9418,"X":564,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86203Z"},{"ID":48469,"Name":"[0232]","Points":6257,"X":287,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86203Z"},{"ID":48470,"Name":"New WorldA","Points":1937,"X":285,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862031Z"},{"ID":48471,"Name":"zbytowa","Points":5608,"X":296,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":849101092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862031Z"},{"ID":48472,"Name":"Nic","Points":10019,"X":695,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862032Z"},{"ID":48473,"Name":"TƂokowo Wielkie","Points":7665,"X":283,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862032Z"},{"ID":48474,"Name":"Borubar 4","Points":4439,"X":715,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":699413581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862033Z"},{"ID":48475,"Name":"Crystal Gardens","Points":2140,"X":383,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":849105463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862034Z"},{"ID":48476,"Name":"043.","Points":3315,"X":629,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862034Z"},{"ID":48477,"Name":"Wioska barbarzyƄska","Points":7251,"X":449,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862035Z"},{"ID":48478,"Name":"ZƂoty ƚwit","Points":7397,"X":593,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862035Z"},{"ID":48479,"Name":"=039= Wioska barbarzyƄska","Points":10017,"X":705,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862036Z"},{"ID":48480,"Name":"016. Demawend","Points":10495,"X":711,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862036Z"},{"ID":48481,"Name":"049","Points":8122,"X":664,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862037Z"},{"ID":48482,"Name":"W37","Points":1477,"X":699,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862037Z"},{"ID":48483,"Name":"146","Points":8937,"X":397,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862038Z"},{"ID":48484,"Name":"Wioska 007","Points":7430,"X":697,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862038Z"},{"ID":48485,"Name":"18+","Points":2498,"X":329,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":9240154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862039Z"},{"ID":48486,"Name":"Wioska Kanut","Points":3346,"X":289,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862039Z"},{"ID":48487,"Name":"|A| Ghostfort.","Points":10495,"X":481,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86204Z"},{"ID":48488,"Name":"Avanti!","Points":7314,"X":284,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862041Z"},{"ID":48489,"Name":"MojeDnoToWaszSzczyt","Points":9827,"X":508,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862041Z"},{"ID":48490,"Name":"EO EO","Points":10019,"X":290,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862042Z"},{"ID":48491,"Name":"PóƂnocny Bagdad","Points":9835,"X":619,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862042Z"},{"ID":48492,"Name":"017","Points":8148,"X":298,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862043Z"},{"ID":48493,"Name":"XXXX","Points":10068,"X":566,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862043Z"},{"ID":48494,"Name":"Wioska barbarzyƄska","Points":10476,"X":585,"Y":306,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862044Z"},{"ID":48495,"Name":"054.","Points":3855,"X":633,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862044Z"},{"ID":48496,"Name":"006","Points":8089,"X":647,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":849101148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862045Z"},{"ID":48498,"Name":"Wioska barbarzyƄska","Points":1874,"X":711,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862045Z"},{"ID":48499,"Name":"Marchewkowe pole","Points":7213,"X":354,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862046Z"},{"ID":48500,"Name":"C.037","Points":4689,"X":718,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862046Z"},{"ID":48501,"Name":"015","Points":7655,"X":297,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862047Z"},{"ID":48502,"Name":"New World","Points":10187,"X":420,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862047Z"},{"ID":48503,"Name":"035","Points":3159,"X":670,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862048Z"},{"ID":48504,"Name":"Taran","Points":7843,"X":316,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862048Z"},{"ID":48505,"Name":"Wyspa 013","Points":5820,"X":297,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862049Z"},{"ID":48506,"Name":"Wioska barbarzyƄska 008","Points":6410,"X":560,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86205Z"},{"ID":48508,"Name":"Wioska 4","Points":2289,"X":386,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":2268889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86205Z"},{"ID":48509,"Name":"Wioska","Points":5749,"X":706,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":849102464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862051Z"},{"ID":48510,"Name":"*013*","Points":7817,"X":684,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862051Z"},{"ID":48511,"Name":"135 invidia","Points":10661,"X":540,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862052Z"},{"ID":48512,"Name":"Wioska barbarzyƄska","Points":9307,"X":379,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862052Z"},{"ID":48514,"Name":"Jaaa","Points":10263,"X":627,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862053Z"},{"ID":48515,"Name":"027 Night Raid*","Points":8708,"X":424,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862053Z"},{"ID":48517,"Name":"154","Points":7202,"X":395,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862054Z"},{"ID":48519,"Name":"###120###","Points":10495,"X":589,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862054Z"},{"ID":48520,"Name":"Rawa Mazowiecka","Points":12154,"X":630,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":698346318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862055Z"},{"ID":48521,"Name":"Wioska barbarzyƄska","Points":7074,"X":716,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862055Z"},{"ID":48522,"Name":"XDX","Points":7892,"X":610,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862056Z"},{"ID":48523,"Name":"013","Points":6736,"X":528,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862056Z"},{"ID":48524,"Name":"#Kresy","Points":2543,"X":627,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862057Z"},{"ID":48525,"Name":"033","Points":6393,"X":654,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862057Z"},{"ID":48526,"Name":"025","Points":1967,"X":667,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862058Z"},{"ID":48527,"Name":"260...Karki98","Points":4464,"X":455,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862058Z"},{"ID":48528,"Name":"Wioska 01","Points":1987,"X":717,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":8408007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862059Z"},{"ID":48529,"Name":"O028","Points":9957,"X":333,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862059Z"},{"ID":48530,"Name":"0000029Z","Points":10144,"X":288,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86206Z"},{"ID":48531,"Name":"Wioska barbarzyƄska","Points":6078,"X":312,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86206Z"},{"ID":48532,"Name":"Zzz 02 ale oco chodzi","Points":5381,"X":294,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862061Z"},{"ID":48533,"Name":"Wioska 0014","Points":9963,"X":346,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862061Z"},{"ID":48534,"Name":"psycha sitting","Points":10311,"X":405,"Y":677,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862062Z"},{"ID":48535,"Name":"Avanti!","Points":5432,"X":288,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862062Z"},{"ID":48536,"Name":"K33","Points":9121,"X":312,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862063Z"},{"ID":48537,"Name":"MJ2","Points":6052,"X":684,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862064Z"},{"ID":48539,"Name":"Bocian","Points":3409,"X":431,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":947923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862064Z"},{"ID":48540,"Name":"111 invidia","Points":10001,"X":514,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862065Z"},{"ID":48541,"Name":"Wioska barbarzyƄska","Points":9750,"X":699,"Y":433,"Continent":"K46","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862065Z"},{"ID":48542,"Name":"New World","Points":10290,"X":427,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862066Z"},{"ID":48543,"Name":"Wiadro08","Points":7341,"X":671,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862066Z"},{"ID":48544,"Name":"113","Points":10106,"X":408,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862067Z"},{"ID":48545,"Name":"001","Points":2376,"X":625,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":849010865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862067Z"},{"ID":48546,"Name":"New WorldA","Points":2079,"X":286,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862068Z"},{"ID":48547,"Name":"[0123]","Points":9590,"X":442,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862068Z"},{"ID":48549,"Name":"BRICKLEBERRY","Points":10132,"X":516,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862069Z"},{"ID":48550,"Name":"001e","Points":5230,"X":300,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862069Z"},{"ID":48551,"Name":"PiekƂo to inni","Points":8549,"X":643,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86207Z"},{"ID":48552,"Name":"Wioska 10","Points":4917,"X":691,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86207Z"},{"ID":48553,"Name":"104","Points":9479,"X":506,"Y":486,"Continent":"K45","Bonus":0,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862071Z"},{"ID":48554,"Name":"Kolonia 04","Points":5991,"X":304,"Y":589,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862071Z"},{"ID":48555,"Name":"167","Points":7443,"X":380,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862072Z"},{"ID":48556,"Name":"Szara Warta","Points":7347,"X":707,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862073Z"},{"ID":48557,"Name":"Wioska","Points":6782,"X":404,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":849094789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862073Z"},{"ID":48558,"Name":"W38","Points":1931,"X":694,"Y":414,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862074Z"},{"ID":48559,"Name":"#K75 0013","Points":7130,"X":517,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862074Z"},{"ID":48560,"Name":"sh03","Points":5892,"X":512,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862075Z"},{"ID":48561,"Name":"[821] Odludzie","Points":6792,"X":710,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862075Z"},{"ID":48562,"Name":"New WorldA","Points":6015,"X":291,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862076Z"},{"ID":48563,"Name":"052 Wioska barbarzyƄska","Points":9835,"X":548,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862076Z"},{"ID":48564,"Name":"bucksbarzyƄskamiiiru","Points":5257,"X":317,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862077Z"},{"ID":48565,"Name":"Szlachcic","Points":10476,"X":394,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862077Z"},{"ID":48566,"Name":"[0251]","Points":6293,"X":284,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862078Z"},{"ID":48568,"Name":"003 JJ","Points":8218,"X":329,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862078Z"},{"ID":48569,"Name":"Vvv","Points":2485,"X":285,"Y":531,"Continent":"K52","Bonus":1,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862079Z"},{"ID":48570,"Name":"003","Points":9741,"X":583,"Y":319,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862079Z"},{"ID":48571,"Name":"New WorldA","Points":5387,"X":289,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86208Z"},{"ID":48572,"Name":"Bestia","Points":9761,"X":553,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86208Z"},{"ID":48573,"Name":"038","Points":6444,"X":510,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862081Z"},{"ID":48574,"Name":"016# Anetha","Points":6836,"X":478,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862081Z"},{"ID":48575,"Name":"X003 Gwiezdna flota","Points":7795,"X":709,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862082Z"},{"ID":48576,"Name":"Wioska barbarzyƄska","Points":2310,"X":329,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862082Z"},{"ID":48577,"Name":"A#030","Points":9797,"X":716,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862083Z"},{"ID":48578,"Name":"basonia","Points":8221,"X":282,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862083Z"},{"ID":48579,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":289,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862084Z"},{"ID":48580,"Name":"020. Ebal","Points":10495,"X":713,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862084Z"},{"ID":48582,"Name":"Wioska Zoso2000o","Points":4045,"X":632,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":849093875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862085Z"},{"ID":48583,"Name":"Wioska Pawel1992","Points":9732,"X":693,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862085Z"},{"ID":48584,"Name":"B005","Points":5835,"X":622,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862086Z"},{"ID":48585,"Name":"Wyspa 012","Points":3674,"X":294,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862087Z"},{"ID":48586,"Name":"KRÓL PAPI WIELKI","Points":7058,"X":670,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862087Z"},{"ID":48587,"Name":"CastAway #002","Points":9815,"X":703,"Y":585,"Continent":"K57","Bonus":6,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862088Z"},{"ID":48588,"Name":"MERHET","Points":9476,"X":583,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862088Z"},{"ID":48589,"Name":"079","Points":6125,"X":718,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862089Z"},{"ID":48590,"Name":"Wioska barbarzyƄska","Points":6733,"X":497,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862089Z"},{"ID":48591,"Name":"New WorldA","Points":6246,"X":284,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86209Z"},{"ID":48592,"Name":"ZZ04","Points":9365,"X":309,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86209Z"},{"ID":48593,"Name":"C0244","Points":4798,"X":287,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862091Z"},{"ID":48594,"Name":"Raqmu","Points":9553,"X":457,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862091Z"},{"ID":48595,"Name":"052","Points":10495,"X":405,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862092Z"},{"ID":48596,"Name":"101.Stradi","Points":9082,"X":441,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862092Z"},{"ID":48597,"Name":"048","Points":7269,"X":677,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862093Z"},{"ID":48598,"Name":"Wioska barbarzyƄska III","Points":2912,"X":628,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":848958556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862093Z"},{"ID":48599,"Name":"Wioska barbarzyƄska","Points":4282,"X":574,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862094Z"},{"ID":48601,"Name":"33. Wioska barbarzyƄska05","Points":3219,"X":714,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862094Z"},{"ID":48602,"Name":"=081= Hampton","Points":10590,"X":703,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862095Z"},{"ID":48603,"Name":"Wioska barbarzyƄska","Points":7724,"X":426,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862095Z"},{"ID":48604,"Name":"Taran","Points":9572,"X":325,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862096Z"},{"ID":48605,"Name":"PIROTECHNIK 009","Points":3190,"X":350,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862096Z"},{"ID":48606,"Name":"Wyspa 003","Points":10495,"X":293,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862097Z"},{"ID":48607,"Name":"qqqqq4","Points":2205,"X":283,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":1095489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862097Z"},{"ID":48608,"Name":"020 Cianwood City","Points":11109,"X":716,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862098Z"},{"ID":48609,"Name":"002","Points":6668,"X":308,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862098Z"},{"ID":48610,"Name":"FAKE OR OFF","Points":10072,"X":426,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862099Z"},{"ID":48611,"Name":"Avanti!","Points":6462,"X":284,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862099Z"},{"ID":48612,"Name":"B024","Points":10006,"X":625,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8621Z"},{"ID":48613,"Name":"Mniejsze zƂo 0090","Points":5079,"X":311,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8621Z"},{"ID":48614,"Name":"Psycho to Marka, Narka !","Points":9091,"X":302,"Y":569,"Continent":"K53","Bonus":9,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862101Z"},{"ID":48616,"Name":"O030","Points":9959,"X":336,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862101Z"},{"ID":48617,"Name":"KRÓL PAPI WIELKI","Points":6381,"X":710,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862102Z"},{"ID":48618,"Name":"Wioska barbarzyƄska","Points":5307,"X":616,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862102Z"},{"ID":48619,"Name":"023 szczęƛciarz","Points":10237,"X":543,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862103Z"},{"ID":48620,"Name":"Ultimate Farming Simulator 4","Points":8530,"X":414,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":699872032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862104Z"},{"ID":48621,"Name":"K35 - [017] Before Land","Points":9429,"X":587,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862104Z"},{"ID":48622,"Name":"O071","Points":9871,"X":328,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862105Z"},{"ID":48623,"Name":"192...segador","Points":10744,"X":431,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862105Z"},{"ID":48624,"Name":"3.Birmingham","Points":8862,"X":549,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862106Z"},{"ID":48625,"Name":"C014","Points":9663,"X":370,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862106Z"},{"ID":48626,"Name":"Z.06","Points":3664,"X":700,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862107Z"},{"ID":48627,"Name":"????","Points":8302,"X":472,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862108Z"},{"ID":48628,"Name":"Wioska Turystyczna 009","Points":2865,"X":701,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862108Z"},{"ID":48629,"Name":"New WorldA","Points":7364,"X":292,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862109Z"},{"ID":48630,"Name":"Sosonowiec","Points":6195,"X":532,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862109Z"},{"ID":48631,"Name":"Wioska barbarzyƄska","Points":2434,"X":630,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":849005829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86211Z"},{"ID":48633,"Name":"006","Points":6174,"X":298,"Y":428,"Continent":"K42","Bonus":5,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.86211Z"},{"ID":48634,"Name":"069.","Points":3528,"X":715,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862111Z"},{"ID":48635,"Name":"Wioska barbarzyƄska","Points":10055,"X":713,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862111Z"},{"ID":48637,"Name":"Wioska Turystyczna 008","Points":4686,"X":709,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862112Z"},{"ID":48638,"Name":"Pax","Points":10802,"X":351,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":849101694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862112Z"},{"ID":48639,"Name":"Lord Arsey KING","Points":7673,"X":660,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862113Z"},{"ID":48640,"Name":"36. Nice","Points":7146,"X":559,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862113Z"},{"ID":48641,"Name":"CastAway !008","Points":9270,"X":702,"Y":582,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862114Z"},{"ID":48643,"Name":"*010*","Points":7584,"X":680,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862114Z"},{"ID":48644,"Name":"FAKE OR OFF","Points":9816,"X":404,"Y":310,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862115Z"},{"ID":48645,"Name":"010","Points":4127,"X":352,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862115Z"},{"ID":48648,"Name":"007 A","Points":10495,"X":410,"Y":690,"Continent":"K64","Bonus":9,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862116Z"},{"ID":48650,"Name":"FAKE OR OFF","Points":9709,"X":408,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862116Z"},{"ID":48651,"Name":"4. Vermithor","Points":2645,"X":302,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.862117Z"},{"ID":48652,"Name":"-26-","Points":4179,"X":567,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893506Z"},{"ID":48654,"Name":"PoƂudnie.015","Points":10012,"X":551,"Y":686,"Continent":"K65","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893508Z"},{"ID":48655,"Name":"ZƂoty ƚwit","Points":8187,"X":592,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893509Z"},{"ID":48656,"Name":"--022--","Points":6589,"X":575,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89351Z"},{"ID":48657,"Name":"KONFA TO MARKA, NARKA","Points":9623,"X":291,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893511Z"},{"ID":48658,"Name":"Wioska barbarzyƄska","Points":6059,"X":707,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893511Z"},{"ID":48659,"Name":"045. Jacksona","Points":8702,"X":703,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893512Z"},{"ID":48660,"Name":"O069","Points":9870,"X":329,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893513Z"},{"ID":48661,"Name":"Wioska 0009","Points":10375,"X":344,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893522Z"},{"ID":48662,"Name":"wancki i gustlikk","Points":9726,"X":502,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893523Z"},{"ID":48663,"Name":"Sernik z Andzynkami","Points":7762,"X":710,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893524Z"},{"ID":48665,"Name":"BANG","Points":1931,"X":310,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699127156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893525Z"},{"ID":48666,"Name":"Gombao 33","Points":7946,"X":701,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893526Z"},{"ID":48667,"Name":"NBT P","Points":8588,"X":595,"Y":692,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893527Z"},{"ID":48668,"Name":"Bydgoszcz","Points":9765,"X":499,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893528Z"},{"ID":48669,"Name":"Borubar 2","Points":1955,"X":710,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893531Z"},{"ID":48670,"Name":"C090","Points":6888,"X":361,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893532Z"},{"ID":48672,"Name":"Psycha Siada","Points":9099,"X":337,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893533Z"},{"ID":48673,"Name":"0129","Points":5187,"X":389,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893534Z"},{"ID":48674,"Name":"????","Points":10160,"X":493,"Y":281,"Continent":"K24","Bonus":5,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893535Z"},{"ID":48675,"Name":"Psycha Siada","Points":9835,"X":338,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893536Z"},{"ID":48677,"Name":"Wioska Turystyczna 004","Points":7044,"X":715,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893537Z"},{"ID":48678,"Name":"*016*","Points":5805,"X":675,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893537Z"},{"ID":48679,"Name":"O015","Points":9955,"X":338,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89354Z"},{"ID":48680,"Name":".achim.","Points":7977,"X":487,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893541Z"},{"ID":48681,"Name":"024 Littleroot Town","Points":7247,"X":719,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893542Z"},{"ID":48682,"Name":"Wioska barbarzyƄska","Points":4669,"X":589,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":699837483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893543Z"},{"ID":48684,"Name":"Wioska 011","Points":3193,"X":696,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893544Z"},{"ID":48685,"Name":"D002","Points":7923,"X":561,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893545Z"},{"ID":48686,"Name":"Wioska 0002","Points":10237,"X":342,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893546Z"},{"ID":48687,"Name":"Taran","Points":9014,"X":318,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893547Z"},{"ID":48688,"Name":"Wioska barbarzyƄska","Points":9023,"X":418,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893549Z"},{"ID":48689,"Name":"Kiedyƛ Wielki Wojownik","Points":8130,"X":333,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89355Z"},{"ID":48690,"Name":"Wioska barbarzyƄskaaaa","Points":9278,"X":716,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893551Z"},{"ID":48691,"Name":"Wioska-014-","Points":1415,"X":631,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":7675610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893552Z"},{"ID":48692,"Name":"bucksbarzyƄskamiiiru","Points":6855,"X":315,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893553Z"},{"ID":48693,"Name":"EE 007","Points":9115,"X":698,"Y":582,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893554Z"},{"ID":48694,"Name":"Winterfell.014","Points":8062,"X":468,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893555Z"},{"ID":48695,"Name":"psycha sitting","Points":10311,"X":415,"Y":676,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893557Z"},{"ID":48696,"Name":"Wioska barbarzyƄska","Points":7167,"X":355,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893558Z"},{"ID":48697,"Name":"Taran","Points":8003,"X":320,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893559Z"},{"ID":48698,"Name":"Wioska barbarzyƄska","Points":2190,"X":506,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89356Z"},{"ID":48700,"Name":"[D]_[006] Dejv.oldplyr","Points":5615,"X":285,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893561Z"},{"ID":48701,"Name":"EO EO","Points":10252,"X":288,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893562Z"},{"ID":48702,"Name":"Wioska barbarzyƄska 011","Points":4894,"X":382,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893563Z"},{"ID":48703,"Name":"114 invidia","Points":10290,"X":507,"Y":716,"Continent":"K75","Bonus":2,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893564Z"},{"ID":48704,"Name":"Wioska barbarzyƄska","Points":3957,"X":712,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893566Z"},{"ID":48705,"Name":"wancki i gustlikk","Points":9737,"X":506,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893567Z"},{"ID":48706,"Name":"Wioska barbarzyƄska","Points":9074,"X":368,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893568Z"},{"ID":48707,"Name":"Wiadro13","Points":6159,"X":677,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893569Z"},{"ID":48710,"Name":"Wioska barbarzyƄska","Points":1740,"X":393,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89357Z"},{"ID":48711,"Name":"111","Points":7196,"X":683,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893571Z"},{"ID":48712,"Name":"061.Stradi","Points":10060,"X":427,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893572Z"},{"ID":48713,"Name":"O053","Points":9867,"X":331,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893574Z"},{"ID":48714,"Name":"Wioska MrZibo","Points":1129,"X":310,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":7695659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893575Z"},{"ID":48715,"Name":"K24 - [004] Before Land","Points":6016,"X":435,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893576Z"},{"ID":48716,"Name":"A#039","Points":9797,"X":713,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893577Z"},{"ID":48717,"Name":"C005","Points":9808,"X":369,"Y":667,"Continent":"K63","Bonus":5,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893578Z"},{"ID":48718,"Name":"MojeDnoToWaszSzczyt","Points":9960,"X":501,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893578Z"},{"ID":48720,"Name":"1. Wioska barbarzyƄska","Points":3127,"X":684,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":1049851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893579Z"},{"ID":48722,"Name":"Vvvvvv","Points":1707,"X":282,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89358Z"},{"ID":48723,"Name":"Kurnik","Points":8883,"X":549,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893583Z"},{"ID":48725,"Name":"001a","Points":4773,"X":301,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893584Z"},{"ID":48726,"Name":"Wioska barbarzyƄska","Points":4516,"X":614,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893584Z"},{"ID":48727,"Name":"yks","Points":10449,"X":542,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":9016560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893585Z"},{"ID":48728,"Name":"ZƂoty ƚwit","Points":10049,"X":582,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893586Z"},{"ID":48729,"Name":"C007","Points":9804,"X":350,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893587Z"},{"ID":48730,"Name":"223","Points":4645,"X":421,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893588Z"},{"ID":48731,"Name":"ZƂoty ƚwit","Points":6980,"X":596,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89359Z"},{"ID":48732,"Name":"Wioska barbarzyƄska","Points":8626,"X":646,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893591Z"},{"ID":48733,"Name":"Wioska barbarzyƄska","Points":8348,"X":328,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893592Z"},{"ID":48734,"Name":"006","Points":8640,"X":532,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893593Z"},{"ID":48735,"Name":"CiemnogrĂłd #5","Points":7821,"X":335,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893594Z"},{"ID":48736,"Name":"Wioska barbarzyƄska","Points":5176,"X":550,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893595Z"},{"ID":48737,"Name":"New World","Points":9132,"X":439,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893596Z"},{"ID":48738,"Name":"Wioska barbarzyƄska","Points":9924,"X":639,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893597Z"},{"ID":48739,"Name":"Wioska barbarzyƄska","Points":7727,"X":557,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8936Z"},{"ID":48740,"Name":"C.043","Points":4346,"X":711,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893601Z"},{"ID":48741,"Name":"002g","Points":5230,"X":302,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893602Z"},{"ID":48742,"Name":"081 Hjubal","Points":3505,"X":711,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893603Z"},{"ID":48743,"Name":"BacĂłwka","Points":1962,"X":308,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893604Z"},{"ID":48745,"Name":"002c","Points":5141,"X":299,"Y":410,"Continent":"K42","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893605Z"},{"ID":48746,"Name":"KRÓL PAPI WIELKI","Points":6210,"X":716,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893606Z"},{"ID":48747,"Name":"069 invidia","Points":6179,"X":538,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893608Z"},{"ID":48748,"Name":"Wioska barbarzyƄska","Points":9638,"X":514,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893609Z"},{"ID":48749,"Name":"Wancki","Points":9861,"X":517,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89361Z"},{"ID":48753,"Name":"The Unforgiven","Points":3447,"X":701,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893611Z"},{"ID":48755,"Name":"O045","Points":9871,"X":327,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893612Z"},{"ID":48757,"Name":"New WorldA","Points":2990,"X":281,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893613Z"},{"ID":48759,"Name":"ZƂoty ƚwit","Points":6563,"X":577,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893614Z"},{"ID":48762,"Name":"010 Kalisz","Points":3702,"X":288,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893615Z"},{"ID":48764,"Name":"Wioska barbarzyƄska","Points":5663,"X":445,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893618Z"},{"ID":48766,"Name":"Bagno 5","Points":9433,"X":480,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893619Z"},{"ID":48768,"Name":"=LM=","Points":3830,"X":700,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893619Z"},{"ID":48770,"Name":"SpĂłĆșnienie","Points":8403,"X":306,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":849076515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89362Z"},{"ID":48772,"Name":"ZƂoty ƚwit","Points":9050,"X":571,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893621Z"},{"ID":48773,"Name":"009.","Points":3642,"X":624,"Y":676,"Continent":"K66","Bonus":3,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893623Z"},{"ID":48775,"Name":"ChceszPokojuSzykujSięDoWojny","Points":4859,"X":486,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893624Z"},{"ID":48776,"Name":"Wioska barbarzyƄska","Points":3988,"X":303,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893626Z"},{"ID":48777,"Name":"Wyspa 033","Points":1470,"X":292,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893627Z"},{"ID":48778,"Name":"Wioska barbarzyƄska","Points":4282,"X":716,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893628Z"},{"ID":48779,"Name":"01 goƛć018443.","Points":9835,"X":287,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893629Z"},{"ID":48780,"Name":"A#016","Points":9797,"X":710,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89363Z"},{"ID":48781,"Name":"Wioska010","Points":8389,"X":343,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893631Z"},{"ID":48782,"Name":"304","Points":6333,"X":450,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893632Z"},{"ID":48783,"Name":"Bialystok","Points":9814,"X":487,"Y":281,"Continent":"K24","Bonus":1,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893633Z"},{"ID":48784,"Name":"*029*","Points":2176,"X":681,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893635Z"},{"ID":48785,"Name":"#153#","Points":2585,"X":649,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893636Z"},{"ID":48787,"Name":"Początek","Points":4964,"X":305,"Y":582,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893637Z"},{"ID":48789,"Name":"Wioska barbarzyƄska","Points":4008,"X":658,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893638Z"},{"ID":48790,"Name":"A#001","Points":9797,"X":718,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893639Z"},{"ID":48791,"Name":"Kurnik","Points":9778,"X":464,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89364Z"},{"ID":48792,"Name":"#K75 0024","Points":4358,"X":513,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893641Z"},{"ID":48793,"Name":"08 Winko","Points":9361,"X":706,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893643Z"},{"ID":48794,"Name":"wancki i gustlikk","Points":9797,"X":507,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893644Z"},{"ID":48795,"Name":"Wioska barbarzyƄska","Points":4251,"X":434,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893645Z"},{"ID":48796,"Name":"Wioska barbarzyƄska","Points":3361,"X":282,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893646Z"},{"ID":48797,"Name":"...","Points":3536,"X":340,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893647Z"},{"ID":48798,"Name":"A#003","Points":9797,"X":712,"Y":514,"Continent":"K57","Bonus":8,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893648Z"},{"ID":48799,"Name":"002","Points":3479,"X":652,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":848889850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893649Z"},{"ID":48800,"Name":"Wioska barbarzyƄska","Points":3609,"X":280,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89365Z"},{"ID":48801,"Name":"111","Points":8999,"X":413,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893652Z"},{"ID":48802,"Name":"Manowce","Points":5537,"X":690,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893653Z"},{"ID":48803,"Name":"Szlachcic","Points":9570,"X":381,"Y":315,"Continent":"K33","Bonus":5,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893655Z"},{"ID":48805,"Name":"*011*","Points":8293,"X":680,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893656Z"},{"ID":48807,"Name":"Początek","Points":9468,"X":299,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893657Z"},{"ID":48808,"Name":"komandos48","Points":10252,"X":648,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893657Z"},{"ID":48809,"Name":"024 Wioska barbarzyƄska","Points":7515,"X":600,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893659Z"},{"ID":48810,"Name":"166...J","Points":5291,"X":397,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893661Z"},{"ID":48811,"Name":"a-5","Points":10495,"X":677,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":848921861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893662Z"},{"ID":48812,"Name":"002 - Budowanko!","Points":9803,"X":488,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893663Z"},{"ID":48813,"Name":"Wioska6","Points":8315,"X":707,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893664Z"},{"ID":48814,"Name":"154...D","Points":7550,"X":399,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893665Z"},{"ID":48815,"Name":"009. Boscaiola","Points":5158,"X":313,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893666Z"},{"ID":48816,"Name":"Kolorowe Jarmarki","Points":5866,"X":700,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893667Z"},{"ID":48817,"Name":"MADAGASKAR 02","Points":7668,"X":341,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893668Z"},{"ID":48818,"Name":"wy...nic","Points":9976,"X":600,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89367Z"},{"ID":48819,"Name":"=021= Wioska barbarzyƄska","Points":8486,"X":709,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893671Z"},{"ID":48820,"Name":"Nocny Fort","Points":9069,"X":705,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893672Z"},{"ID":48821,"Name":"003","Points":5230,"X":303,"Y":412,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893673Z"},{"ID":48822,"Name":"New World","Points":9910,"X":433,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893674Z"},{"ID":48823,"Name":"044","Points":3034,"X":634,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893675Z"},{"ID":48824,"Name":"WieĆŒa Cieni","Points":9037,"X":709,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893676Z"},{"ID":48825,"Name":"O031","Points":9959,"X":332,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893678Z"},{"ID":48826,"Name":"PiekƂo to inni","Points":5435,"X":632,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893679Z"},{"ID":48827,"Name":"Wioska barbarzyƄska","Points":6931,"X":713,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89368Z"},{"ID":48828,"Name":"Wioska franka","Points":4961,"X":294,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":849101771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893681Z"},{"ID":48829,"Name":"Wioska barbarzyƄska","Points":9222,"X":421,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893682Z"},{"ID":48830,"Name":"#0079","Points":4070,"X":573,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893683Z"},{"ID":48831,"Name":"Lord Arsey KING","Points":10096,"X":652,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893684Z"},{"ID":48832,"Name":"Wioska barbarzyƄska","Points":5385,"X":280,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893685Z"},{"ID":48833,"Name":"=130= Mascov","Points":10946,"X":702,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893688Z"},{"ID":48834,"Name":"*024","Points":4051,"X":676,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893689Z"},{"ID":48835,"Name":"Bigosowy2","Points":4110,"X":678,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":849095800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893689Z"},{"ID":48836,"Name":"###121###","Points":10495,"X":596,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89369Z"},{"ID":48838,"Name":"Cisza","Points":5716,"X":290,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893691Z"},{"ID":48840,"Name":"wioska","Points":10353,"X":635,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893692Z"},{"ID":48841,"Name":"037.","Points":8944,"X":453,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893693Z"},{"ID":48842,"Name":"CiemnogrĂłd #10","Points":4757,"X":335,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893694Z"},{"ID":48843,"Name":"020. Gorgonzola e noci","Points":1976,"X":323,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893696Z"},{"ID":48844,"Name":"ZƂoty ƚwit","Points":10119,"X":594,"Y":301,"Continent":"K35","Bonus":5,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893697Z"},{"ID":48845,"Name":"New WorldA","Points":4576,"X":288,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893699Z"},{"ID":48846,"Name":"PiekƂo to inni","Points":5291,"X":633,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893699Z"},{"ID":48847,"Name":"Wioska barbarzyƄska","Points":5393,"X":594,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8937Z"},{"ID":48848,"Name":"XXXX","Points":9236,"X":567,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893701Z"},{"ID":48849,"Name":"145","Points":9489,"X":403,"Y":689,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893702Z"},{"ID":48850,"Name":"--006--","Points":9377,"X":568,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893704Z"},{"ID":48851,"Name":"072","Points":10495,"X":398,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893705Z"},{"ID":48852,"Name":"PiekƂo to inni","Points":5651,"X":642,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893706Z"},{"ID":48853,"Name":"Psycha Siada","Points":9222,"X":339,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893707Z"},{"ID":48854,"Name":"Wioska barbarzyƄska","Points":3755,"X":281,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893708Z"},{"ID":48856,"Name":"PP030 Suna","Points":9356,"X":718,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893709Z"},{"ID":48858,"Name":"New WorldA","Points":9095,"X":290,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89371Z"},{"ID":48859,"Name":"Wioska barbarzyƄska","Points":2589,"X":280,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893711Z"},{"ID":48860,"Name":"Wioska barbarzyƄska","Points":2725,"X":421,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":849102150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893713Z"},{"ID":48861,"Name":"A-003","Points":7470,"X":323,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893714Z"},{"ID":48863,"Name":"kathare","Points":9966,"X":537,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893715Z"},{"ID":48864,"Name":"komandos","Points":9308,"X":641,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893717Z"},{"ID":48865,"Name":"Rivia","Points":10051,"X":557,"Y":294,"Continent":"K25","Bonus":2,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893717Z"},{"ID":48866,"Name":"KRÓL PAPI WIELKI","Points":10000,"X":662,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893718Z"},{"ID":48867,"Name":"044 sebaseba1991","Points":9494,"X":624,"Y":679,"Continent":"K66","Bonus":4,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893719Z"},{"ID":48869,"Name":"Jeszcze stoję xd","Points":3874,"X":647,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893722Z"},{"ID":48870,"Name":"077 Astapor","Points":9720,"X":706,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893723Z"},{"ID":48872,"Name":"Avanti!","Points":7407,"X":287,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893724Z"},{"ID":48873,"Name":"Wioska barbarzyƄska","Points":10154,"X":713,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893725Z"},{"ID":48874,"Name":"Wioska barbarzyƄska","Points":6997,"X":429,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893726Z"},{"ID":48875,"Name":"009","Points":4030,"X":386,"Y":317,"Continent":"K33","Bonus":6,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893727Z"},{"ID":48876,"Name":"CastAway #006","Points":7637,"X":702,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893728Z"},{"ID":48878,"Name":"New WorldA","Points":5477,"X":288,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893729Z"},{"ID":48879,"Name":"Kurnik","Points":5942,"X":443,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893731Z"},{"ID":48880,"Name":"=0020=","Points":8134,"X":389,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893732Z"},{"ID":48881,"Name":"-20-","Points":5969,"X":573,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893733Z"},{"ID":48882,"Name":"Wioska barbarzyƄska","Points":6491,"X":418,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893734Z"},{"ID":48883,"Name":"...","Points":3117,"X":341,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893735Z"},{"ID":48884,"Name":"ZƂoty ƚwit","Points":9940,"X":583,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893736Z"},{"ID":48885,"Name":"Wioska barbarzyƄska","Points":7244,"X":706,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893737Z"},{"ID":48886,"Name":"ewaa vol.2","Points":3537,"X":504,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849101382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89374Z"},{"ID":48888,"Name":"##6","Points":9080,"X":349,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893741Z"},{"ID":48889,"Name":"New World","Points":6607,"X":438,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893742Z"},{"ID":48890,"Name":"KRÓL PAPI WIELKI","Points":6930,"X":717,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893743Z"},{"ID":48891,"Name":"...","Points":9969,"X":337,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893744Z"},{"ID":48892,"Name":"AAA","Points":7360,"X":538,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893744Z"},{"ID":48893,"Name":"022. Salmone affumicato","Points":5606,"X":317,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893745Z"},{"ID":48894,"Name":"5_Franekkimono510_5","Points":6479,"X":368,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893747Z"},{"ID":48895,"Name":"C082","Points":8563,"X":361,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893749Z"},{"ID":48896,"Name":"###122###","Points":10495,"X":601,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89375Z"},{"ID":48897,"Name":"045.","Points":3148,"X":626,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893751Z"},{"ID":48898,"Name":"079.Stradi","Points":9199,"X":430,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893752Z"},{"ID":48899,"Name":"Osada koczownikĂłw","Points":3537,"X":710,"Y":520,"Continent":"K57","Bonus":7,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893753Z"},{"ID":48900,"Name":"Doberek","Points":10083,"X":689,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893754Z"},{"ID":48901,"Name":"###123###","Points":10495,"X":606,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893755Z"},{"ID":48902,"Name":"U.006","Points":3600,"X":292,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893757Z"},{"ID":48903,"Name":"Wioska barbarzyƄska","Points":9786,"X":532,"Y":388,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893758Z"},{"ID":48905,"Name":"ZƂoty ƚwit","Points":9019,"X":575,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893759Z"},{"ID":48906,"Name":"FAKE OR OFF","Points":9871,"X":407,"Y":301,"Continent":"K34","Bonus":4,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89376Z"},{"ID":48907,"Name":"MJ1","Points":6210,"X":684,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893761Z"},{"ID":48908,"Name":"ZƂoty ƚwit","Points":10052,"X":588,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893762Z"},{"ID":48909,"Name":"Początek","Points":3990,"X":302,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893763Z"},{"ID":48910,"Name":"BiaƂa Podlaska","Points":6528,"X":590,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":699837483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893764Z"},{"ID":48912,"Name":"Psycho to Marka, Narka !","Points":4597,"X":300,"Y":570,"Continent":"K53","Bonus":0,"PlayerID":849040142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893766Z"},{"ID":48913,"Name":"C.038","Points":4686,"X":715,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893768Z"},{"ID":48914,"Name":"Cisza","Points":4848,"X":289,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893768Z"},{"ID":48915,"Name":"FAKE OR OFF","Points":9705,"X":405,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89377Z"},{"ID":48916,"Name":"Taran","Points":7183,"X":314,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893771Z"},{"ID":48917,"Name":"Kapral16A","Points":5577,"X":463,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849096891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893772Z"},{"ID":48918,"Name":"161...G","Points":5407,"X":393,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893773Z"},{"ID":48919,"Name":"019","Points":10019,"X":718,"Y":499,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893775Z"},{"ID":48920,"Name":"EO EO","Points":9063,"X":287,"Y":511,"Continent":"K52","Bonus":1,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893776Z"},{"ID":48921,"Name":"DĆŒejdĆŒej 5","Points":2603,"X":669,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893777Z"},{"ID":48922,"Name":"Wioska","Points":1475,"X":285,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893778Z"},{"ID":48923,"Name":"KONFA TO MARKA, NARKA","Points":8070,"X":288,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893779Z"},{"ID":48924,"Name":"Osada koczownikĂłw","Points":4557,"X":672,"Y":622,"Continent":"K66","Bonus":7,"PlayerID":1049851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89378Z"},{"ID":48925,"Name":"bucksbarzyƄskamiiiru","Points":8652,"X":318,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893781Z"},{"ID":48926,"Name":"KRÓL PAPI WIELKI","Points":7066,"X":668,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893782Z"},{"ID":48927,"Name":"049","Points":10495,"X":673,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893785Z"},{"ID":48928,"Name":"0104","Points":9764,"X":385,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893786Z"},{"ID":48929,"Name":"*002*","Points":8957,"X":676,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893787Z"},{"ID":48930,"Name":"Satyra","Points":8077,"X":306,"Y":398,"Continent":"K33","Bonus":0,"PlayerID":849076515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893788Z"},{"ID":48931,"Name":"145 invidia","Points":6653,"X":541,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893789Z"},{"ID":48932,"Name":"Bagno 17","Points":8946,"X":483,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89379Z"},{"ID":48935,"Name":"Wioska barbarzyƄska","Points":4451,"X":350,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":849101694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893791Z"},{"ID":48936,"Name":"Avanti!","Points":9996,"X":286,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893793Z"},{"ID":48937,"Name":"XDX","Points":9879,"X":604,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893794Z"},{"ID":48938,"Name":"Avanti!","Points":10311,"X":285,"Y":476,"Continent":"K42","Bonus":4,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893795Z"},{"ID":48939,"Name":"[0185]","Points":7454,"X":287,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893796Z"},{"ID":48940,"Name":"Bagno 19","Points":8747,"X":485,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893797Z"},{"ID":48941,"Name":"Wioska 0008","Points":10375,"X":343,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893798Z"},{"ID":48942,"Name":"105","Points":9449,"X":412,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893799Z"},{"ID":48943,"Name":"Wioska barbarzyƄska","Points":9966,"X":295,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8938Z"},{"ID":48944,"Name":"Wioska barbarzyƄska","Points":6183,"X":478,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893802Z"},{"ID":48945,"Name":"Podbitek 3","Points":7633,"X":685,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893803Z"},{"ID":48946,"Name":"Lord Arsey KING","Points":10087,"X":661,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893804Z"},{"ID":48947,"Name":"Tretogor","Points":10054,"X":558,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893805Z"},{"ID":48948,"Name":"[176]","Points":7272,"X":698,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893806Z"},{"ID":48949,"Name":"##4","Points":9109,"X":350,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893807Z"},{"ID":48950,"Name":"Wiadro16","Points":8439,"X":667,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893808Z"},{"ID":48951,"Name":"WARYSCYT","Points":10222,"X":706,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893893Z"},{"ID":48952,"Name":"013","Points":2228,"X":657,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893896Z"},{"ID":48953,"Name":"024 zadupie","Points":10019,"X":532,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893898Z"},{"ID":48954,"Name":"FAKE OR OFF","Points":9825,"X":404,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893899Z"},{"ID":48955,"Name":"Wioska barbarzyƄska","Points":6115,"X":547,"Y":710,"Continent":"K75","Bonus":6,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893901Z"},{"ID":48956,"Name":"PóƂnocny Bagdad","Points":9835,"X":616,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893902Z"},{"ID":48957,"Name":"083.Stradi","Points":9525,"X":429,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893903Z"},{"ID":48959,"Name":"MERHET 04/02","Points":7507,"X":587,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893905Z"},{"ID":48960,"Name":"[D]_[001] Dejv.oldplyr","Points":10444,"X":287,"Y":493,"Continent":"K42","Bonus":1,"PlayerID":699380607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89391Z"},{"ID":48961,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":286,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893912Z"},{"ID":48962,"Name":"Ave Why!","Points":1248,"X":503,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893913Z"},{"ID":48963,"Name":"Wioska czorny","Points":7645,"X":698,"Y":579,"Continent":"K56","Bonus":0,"PlayerID":849101814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893915Z"},{"ID":48964,"Name":"Wioska barbarzyƄska --","Points":8151,"X":566,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893916Z"},{"ID":48965,"Name":"0043","Points":4467,"X":490,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893917Z"},{"ID":48966,"Name":"009","Points":2884,"X":324,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893918Z"},{"ID":48967,"Name":"a moĆŒe off ? :)","Points":5705,"X":687,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893922Z"},{"ID":48968,"Name":"????","Points":10083,"X":480,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893923Z"},{"ID":48969,"Name":"Mniejsze zƂo 0098","Points":4806,"X":312,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893925Z"},{"ID":48970,"Name":"063","Points":9752,"X":716,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893927Z"},{"ID":48971,"Name":"barbarzyƄska","Points":9397,"X":513,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849101102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893928Z"},{"ID":48972,"Name":"136","Points":7087,"X":391,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89393Z"},{"ID":48973,"Name":"Kagusiowo 13","Points":3592,"X":297,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":849101268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893931Z"},{"ID":48974,"Name":"004 Chcę Remont","Points":9736,"X":428,"Y":707,"Continent":"K74","Bonus":5,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893933Z"},{"ID":48975,"Name":"001","Points":9619,"X":466,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893936Z"},{"ID":48976,"Name":"084.Stradi","Points":9850,"X":431,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893938Z"},{"ID":48977,"Name":"- 252 - SS","Points":10000,"X":570,"Y":707,"Continent":"K75","Bonus":5,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893939Z"},{"ID":48978,"Name":"Wyspa 006","Points":10495,"X":290,"Y":568,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89394Z"},{"ID":48980,"Name":"Wioska Ares25","Points":9704,"X":490,"Y":690,"Continent":"K64","Bonus":0,"PlayerID":5997814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893942Z"},{"ID":48981,"Name":"019","Points":10311,"X":525,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893943Z"},{"ID":48982,"Name":"Taran","Points":10311,"X":331,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893945Z"},{"ID":48983,"Name":"003","Points":7971,"X":665,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893946Z"},{"ID":48984,"Name":"Wioska barbarzyƄska","Points":5054,"X":498,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893949Z"},{"ID":48985,"Name":"Wygwizdowa 012","Points":3311,"X":643,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893951Z"},{"ID":48986,"Name":"C095","Points":9808,"X":365,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893952Z"},{"ID":48987,"Name":"Wioska barbarzyƄska","Points":9326,"X":521,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893954Z"},{"ID":48988,"Name":"Lord Arsey KING","Points":8829,"X":652,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893955Z"},{"ID":48989,"Name":"049","Points":10495,"X":405,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893957Z"},{"ID":48990,"Name":"Avanti!","Points":4391,"X":281,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893958Z"},{"ID":48991,"Name":"Wioska barbarzyƄska","Points":6113,"X":313,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893962Z"},{"ID":48992,"Name":"005","Points":3483,"X":310,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893963Z"},{"ID":48993,"Name":"SmardzĂłw","Points":4860,"X":297,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":849101092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893965Z"},{"ID":48994,"Name":"Wioska - 005 -","Points":1787,"X":536,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893966Z"},{"ID":48995,"Name":"3 ACDC","Points":1234,"X":347,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":6315553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893968Z"},{"ID":48996,"Name":"C050","Points":7874,"X":358,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893969Z"},{"ID":48997,"Name":"005","Points":8238,"X":526,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89397Z"},{"ID":48998,"Name":"088.Stradi","Points":9544,"X":434,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893972Z"},{"ID":48999,"Name":"XDX","Points":9768,"X":601,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893975Z"},{"ID":49000,"Name":"Gladsheim","Points":9835,"X":307,"Y":405,"Continent":"K43","Bonus":4,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893976Z"},{"ID":49001,"Name":"C010","Points":9825,"X":371,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893978Z"},{"ID":49002,"Name":"New World","Points":10295,"X":437,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893979Z"},{"ID":49003,"Name":"Ave Why!","Points":2475,"X":506,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893981Z"},{"ID":49004,"Name":"009","Points":9835,"X":294,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893982Z"},{"ID":49005,"Name":"Wioska barbarzyƄska","Points":9827,"X":376,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893984Z"},{"ID":49006,"Name":"0600","Points":10252,"X":489,"Y":681,"Continent":"K64","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893988Z"},{"ID":49007,"Name":"Wioska barbarzyƄska","Points":2038,"X":300,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893989Z"},{"ID":49008,"Name":"C0218","Points":10362,"X":293,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89399Z"},{"ID":49009,"Name":"O046","Points":9868,"X":328,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893992Z"},{"ID":49010,"Name":"C098","Points":8051,"X":358,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893994Z"},{"ID":49011,"Name":"011","Points":9835,"X":292,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893995Z"},{"ID":49012,"Name":"KRÓL PAPI WIELKI","Points":7051,"X":650,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893997Z"},{"ID":49013,"Name":"XDX","Points":8310,"X":604,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.893998Z"},{"ID":49014,"Name":"Wioska 2","Points":5014,"X":301,"Y":423,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894002Z"},{"ID":49015,"Name":"Ave Why!","Points":8629,"X":305,"Y":585,"Continent":"K53","Bonus":3,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894003Z"},{"ID":49016,"Name":"komandos48","Points":6380,"X":635,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894005Z"},{"ID":49017,"Name":"090.Stradi","Points":9440,"X":438,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894006Z"},{"ID":49018,"Name":"Komamdos","Points":9729,"X":641,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894007Z"},{"ID":49019,"Name":"106","Points":8842,"X":409,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894009Z"},{"ID":49020,"Name":"New World","Points":10292,"X":429,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89401Z"},{"ID":49021,"Name":"XDX","Points":6318,"X":609,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894014Z"},{"ID":49022,"Name":"100.Stradi","Points":9082,"X":441,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894016Z"},{"ID":49023,"Name":"Wioska15","Points":5271,"X":343,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894017Z"},{"ID":49024,"Name":"027","Points":1149,"X":648,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894018Z"},{"ID":49025,"Name":"013. Amatriciana","Points":9788,"X":302,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89402Z"},{"ID":49026,"Name":"059","Points":2584,"X":639,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894022Z"},{"ID":49027,"Name":"XDX","Points":9681,"X":608,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894023Z"},{"ID":49028,"Name":"Wioska barbarzyƄska","Points":3056,"X":656,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894025Z"},{"ID":49029,"Name":"A#014","Points":9797,"X":713,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894028Z"},{"ID":49030,"Name":"O026","Points":9955,"X":331,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894029Z"},{"ID":49031,"Name":"Wioska-013-","Points":1323,"X":630,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":7675610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894031Z"},{"ID":49032,"Name":"ZZZ .::. cinek3456/02","Points":10191,"X":585,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894032Z"},{"ID":49033,"Name":"Saran9","Points":3520,"X":410,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894034Z"},{"ID":49034,"Name":"006","Points":9783,"X":664,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894035Z"},{"ID":49035,"Name":"Wioska barbarzyƄska","Points":1685,"X":366,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894037Z"},{"ID":49036,"Name":"C0226","Points":5046,"X":288,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89404Z"},{"ID":49037,"Name":"001","Points":9998,"X":653,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894042Z"},{"ID":49038,"Name":"Psycha Siada","Points":9968,"X":334,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894043Z"},{"ID":49039,"Name":"024","Points":3938,"X":688,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894045Z"},{"ID":49040,"Name":"Las Canteras","Points":5838,"X":377,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894046Z"},{"ID":49041,"Name":"KRÓL PAPI WIELKI","Points":6255,"X":713,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894048Z"},{"ID":49042,"Name":"Wioska barbarzyƄska","Points":5180,"X":639,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89405Z"},{"ID":49043,"Name":"030. Ceterum censeo","Points":9260,"X":467,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894051Z"},{"ID":49044,"Name":"New World","Points":10295,"X":431,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894055Z"},{"ID":49045,"Name":"PIROTECHNIK 002","Points":6699,"X":354,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894056Z"},{"ID":49046,"Name":"#0147 deleted","Points":10178,"X":480,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894058Z"},{"ID":49047,"Name":"Wioska005","Points":9732,"X":346,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894059Z"},{"ID":49048,"Name":"Osada koczownikĂłw","Points":7355,"X":464,"Y":283,"Continent":"K24","Bonus":6,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894061Z"},{"ID":49049,"Name":"081","Points":4797,"X":719,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894062Z"},{"ID":49050,"Name":"[0127]","Points":9414,"X":281,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894064Z"},{"ID":49051,"Name":"o04","Points":6981,"X":610,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894067Z"},{"ID":49052,"Name":"W39","Points":3254,"X":694,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894069Z"},{"ID":49053,"Name":"A-1","Points":7537,"X":670,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89407Z"},{"ID":49054,"Name":"=026= Wioska barbarzyƄska","Points":10566,"X":709,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894072Z"},{"ID":49055,"Name":"Bagno 6","Points":9520,"X":482,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894073Z"},{"ID":49056,"Name":"39. Pan Maszynista 2","Points":2875,"X":707,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894074Z"},{"ID":49057,"Name":"01 Fiko","Points":9475,"X":713,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894076Z"},{"ID":49058,"Name":"Wioska barbarzyƄska","Points":9094,"X":684,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894077Z"},{"ID":49061,"Name":"062. Diocletianopolis","Points":8381,"X":712,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894081Z"},{"ID":49062,"Name":"063 invidia","Points":6132,"X":542,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894083Z"},{"ID":49063,"Name":"*017*","Points":5948,"X":679,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894084Z"},{"ID":49065,"Name":"Magiczne koszary","Points":9809,"X":463,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894086Z"},{"ID":49066,"Name":"Szlachcic","Points":5260,"X":373,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894087Z"},{"ID":49067,"Name":"Wioska barbarzyƄska IV","Points":2457,"X":627,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":848958556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894088Z"},{"ID":49068,"Name":"Wioska barbarzyƄska","Points":5848,"X":720,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89409Z"},{"ID":49069,"Name":"Elo:)","Points":4964,"X":703,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894094Z"},{"ID":49070,"Name":"C032","Points":7495,"X":365,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894095Z"},{"ID":49071,"Name":"7_Franekkimono510_7","Points":4113,"X":370,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894097Z"},{"ID":49072,"Name":"004","Points":9797,"X":666,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894098Z"},{"ID":49074,"Name":"=0015=","Points":9884,"X":396,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8941Z"},{"ID":49075,"Name":"Na KraƄcu ƚwiata 002","Points":10474,"X":645,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894102Z"},{"ID":49076,"Name":"ZƂoty ƚwit","Points":10119,"X":582,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894103Z"},{"ID":49077,"Name":"A#004","Points":9797,"X":717,"Y":517,"Continent":"K57","Bonus":5,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894104Z"},{"ID":49078,"Name":"bucksbarzyƄskamiiiru","Points":7625,"X":314,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894108Z"},{"ID":49079,"Name":"005","Points":9877,"X":295,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89411Z"},{"ID":49080,"Name":"Wioska Gigako","Points":7846,"X":557,"Y":287,"Continent":"K25","Bonus":7,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894111Z"},{"ID":49081,"Name":"Wioska barbarzyƄska","Points":5557,"X":534,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":849088639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894113Z"},{"ID":49082,"Name":"North 011","Points":10311,"X":512,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894115Z"},{"ID":49083,"Name":"774","Points":8314,"X":343,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894117Z"},{"ID":49084,"Name":"C026","Points":9719,"X":369,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894118Z"},{"ID":49085,"Name":"Barcin","Points":9524,"X":486,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894122Z"},{"ID":49086,"Name":"###124###","Points":10495,"X":599,"Y":689,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894124Z"},{"ID":49087,"Name":"FAKE OR OFF","Points":9833,"X":401,"Y":313,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894125Z"},{"ID":49088,"Name":"Avanti!","Points":8643,"X":280,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894126Z"},{"ID":49089,"Name":"31. Saduny","Points":3175,"X":714,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894127Z"},{"ID":49090,"Name":"Wyspa_48","Points":10375,"X":503,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894129Z"},{"ID":49091,"Name":"Wioska barbarzyƄska","Points":2920,"X":692,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89413Z"},{"ID":49093,"Name":"174","Points":6707,"X":379,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894131Z"},{"ID":49095,"Name":"Mniejsze zƂo 0091","Points":6384,"X":315,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894135Z"},{"ID":49096,"Name":".achim.","Points":10232,"X":477,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894137Z"},{"ID":49097,"Name":"Avanti!","Points":9117,"X":283,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894138Z"},{"ID":49098,"Name":"EE 006","Points":9113,"X":698,"Y":581,"Continent":"K56","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894139Z"},{"ID":49099,"Name":"P|003|","Points":9738,"X":460,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894141Z"},{"ID":49100,"Name":"PoƂudniowy WschĂłd 002","Points":2630,"X":691,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894142Z"},{"ID":49101,"Name":"C008","Points":6344,"X":543,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894144Z"},{"ID":49103,"Name":"Wioska barbarzyƄska","Points":6100,"X":714,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894153Z"},{"ID":49104,"Name":"Bez emocji III","Points":4837,"X":354,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894154Z"},{"ID":49105,"Name":"0153","Points":4406,"X":388,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894155Z"},{"ID":49107,"Name":"ZƂoty ƚwit","Points":6888,"X":572,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894156Z"},{"ID":49108,"Name":"Wioska 030","Points":9523,"X":665,"Y":356,"Continent":"K36","Bonus":5,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894158Z"},{"ID":49109,"Name":"Etitek 3","Points":2989,"X":721,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":848999448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894159Z"},{"ID":49110,"Name":"024 Osada koczownikĂłw","Points":9899,"X":544,"Y":286,"Continent":"K25","Bonus":7,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89416Z"},{"ID":49111,"Name":"010","Points":1862,"X":404,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894161Z"},{"ID":49112,"Name":"Wioska barbarzyƄska","Points":7397,"X":300,"Y":425,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894188Z"},{"ID":49113,"Name":"North 001","Points":10311,"X":505,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894189Z"},{"ID":49114,"Name":"039","Points":10495,"X":406,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894191Z"},{"ID":49115,"Name":"C02","Points":8312,"X":707,"Y":442,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894192Z"},{"ID":49116,"Name":"Wioska barbarzyƄska","Points":8358,"X":477,"Y":285,"Continent":"K24","Bonus":8,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894193Z"},{"ID":49117,"Name":"0030 Wioska barbarzyƄska","Points":6322,"X":409,"Y":615,"Continent":"K64","Bonus":0,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894195Z"},{"ID":49118,"Name":"001","Points":5374,"X":653,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":848889850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894196Z"},{"ID":49119,"Name":"Elo elo 7","Points":9186,"X":303,"Y":580,"Continent":"K53","Bonus":3,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894199Z"},{"ID":49120,"Name":"KONFA TO MARKA, NARKA","Points":1699,"X":288,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8942Z"},{"ID":49121,"Name":"Ban Gleann","Points":9970,"X":554,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894202Z"},{"ID":49122,"Name":"B010","Points":12024,"X":627,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894203Z"},{"ID":49123,"Name":"Wioska barbarzyƄska","Points":4980,"X":394,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894204Z"},{"ID":49124,"Name":"Poletko","Points":8577,"X":649,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":2371436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894206Z"},{"ID":49125,"Name":"S04","Points":3611,"X":719,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894207Z"},{"ID":49126,"Name":"K33","Points":2539,"X":320,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894208Z"},{"ID":49127,"Name":"153...C","Points":6947,"X":398,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894211Z"},{"ID":49128,"Name":"AAA","Points":6676,"X":553,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894212Z"},{"ID":49129,"Name":"Kiedyƛ Wielki Wojownik","Points":9835,"X":334,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894213Z"},{"ID":49130,"Name":"C009","Points":9785,"X":356,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894214Z"},{"ID":49131,"Name":"#0298 mastaw","Points":1855,"X":462,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894215Z"},{"ID":49132,"Name":"013","Points":4809,"X":294,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894217Z"},{"ID":49133,"Name":"BLANCA","Points":7103,"X":698,"Y":417,"Continent":"K46","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894218Z"},{"ID":49134,"Name":"Eldorado","Points":3414,"X":687,"Y":604,"Continent":"K66","Bonus":5,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89422Z"},{"ID":49135,"Name":"Bagno 22","Points":8741,"X":477,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894221Z"},{"ID":49136,"Name":"C.044","Points":4491,"X":711,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894222Z"},{"ID":49137,"Name":"09. Sirmium","Points":10495,"X":709,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894223Z"},{"ID":49138,"Name":"Klatka6","Points":3829,"X":625,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894224Z"},{"ID":49139,"Name":"...","Points":2863,"X":338,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894225Z"},{"ID":49140,"Name":"Wioska majku","Points":7739,"X":415,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894226Z"},{"ID":49141,"Name":"=066= Wioska barbarzyƄska","Points":9558,"X":702,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894227Z"},{"ID":49142,"Name":"Wioska Wojdiking","Points":6652,"X":424,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894229Z"},{"ID":49143,"Name":"Parking7","Points":3977,"X":623,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89423Z"},{"ID":49144,"Name":"Wioska barbarzyƄska","Points":7159,"X":384,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894231Z"},{"ID":49145,"Name":"kkk","Points":1831,"X":422,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894232Z"},{"ID":49146,"Name":"O034","Points":9955,"X":337,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894233Z"},{"ID":49147,"Name":"Kurnik","Points":10160,"X":477,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894234Z"},{"ID":49148,"Name":"Parking5","Points":5798,"X":621,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894235Z"},{"ID":49149,"Name":"Zzz 04 pije se kawe","Points":7025,"X":294,"Y":568,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894237Z"},{"ID":49150,"Name":"Wioska barbarzyƄska","Points":9870,"X":643,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894238Z"},{"ID":49151,"Name":"Blasco","Points":9761,"X":556,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894238Z"},{"ID":49152,"Name":"190","Points":9925,"X":412,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894239Z"},{"ID":49153,"Name":"Wioska barbarzyƄska","Points":3449,"X":331,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89424Z"},{"ID":49154,"Name":"004","Points":9611,"X":691,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894241Z"},{"ID":49155,"Name":"Wioska barbarzyƄska","Points":2578,"X":301,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894242Z"},{"ID":49156,"Name":".achim.","Points":10495,"X":478,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894243Z"},{"ID":49158,"Name":"New World","Points":10297,"X":418,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894245Z"},{"ID":49159,"Name":"0102","Points":10216,"X":386,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894246Z"},{"ID":49160,"Name":"G007","Points":10041,"X":506,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894247Z"},{"ID":49161,"Name":"10 Kaseta","Points":9670,"X":713,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894248Z"},{"ID":49162,"Name":"sh02","Points":5169,"X":511,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894249Z"},{"ID":49163,"Name":"011","Points":9720,"X":715,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89425Z"},{"ID":49164,"Name":"Wioska barbarzyƄska","Points":7421,"X":530,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894251Z"},{"ID":49165,"Name":"Wioska barbarzyƄska","Points":347,"X":306,"Y":417,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894253Z"},{"ID":49166,"Name":"Room service","Points":7949,"X":701,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894254Z"},{"ID":49167,"Name":"Lisse","Points":9708,"X":282,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699830255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894255Z"},{"ID":49168,"Name":"006","Points":5958,"X":307,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894256Z"},{"ID":49169,"Name":"KONFA TO MARKA, NARKA","Points":9801,"X":284,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894256Z"},{"ID":49170,"Name":"070","Points":5544,"X":713,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894257Z"},{"ID":49171,"Name":"Cisza","Points":6107,"X":290,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894258Z"},{"ID":49172,"Name":"013. Reakcja","Points":10301,"X":561,"Y":322,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894259Z"},{"ID":49173,"Name":"ZƂoty ƚwit","Points":9996,"X":586,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894261Z"},{"ID":49174,"Name":"C12","Points":2740,"X":705,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894262Z"},{"ID":49175,"Name":"0118","Points":4998,"X":386,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894263Z"},{"ID":49176,"Name":"Wioska barbarzyƄska","Points":2063,"X":284,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894264Z"},{"ID":49177,"Name":"EE 012","Points":9549,"X":707,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894265Z"},{"ID":49178,"Name":"0406","Points":10160,"X":561,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894266Z"},{"ID":49179,"Name":"????","Points":9435,"X":474,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894267Z"},{"ID":49180,"Name":"Kiedyƛ Wielki Wojownik","Points":9467,"X":331,"Y":360,"Continent":"K33","Bonus":6,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894269Z"},{"ID":49181,"Name":"((PYSIA))","Points":10019,"X":701,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89427Z"},{"ID":49182,"Name":"Wioska barbarzyƄska","Points":7731,"X":709,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894271Z"},{"ID":49183,"Name":"Moja wioska","Points":12154,"X":636,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894272Z"},{"ID":49184,"Name":"bucksbarzyƄskamiiiru","Points":8709,"X":315,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894273Z"},{"ID":49185,"Name":"CastAway #003","Points":9976,"X":704,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894274Z"},{"ID":49186,"Name":"[204]","Points":4624,"X":684,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894274Z"},{"ID":49187,"Name":"C.027","Points":4678,"X":716,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894275Z"},{"ID":49188,"Name":"048 Wioska barbarzyƄska","Points":9976,"X":549,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894278Z"},{"ID":49189,"Name":"MojeDnoToWaszSzczyt","Points":9716,"X":497,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894279Z"},{"ID":49190,"Name":"001:Wioska FilozofMiejski","Points":10139,"X":374,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89428Z"},{"ID":49191,"Name":"Lord Arsey KING","Points":7214,"X":656,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894281Z"},{"ID":49192,"Name":"107.Stradi","Points":9869,"X":440,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894282Z"},{"ID":49193,"Name":"016","Points":2688,"X":289,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894282Z"},{"ID":49194,"Name":"Wioska barbarzyƄska","Points":6760,"X":545,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894283Z"},{"ID":49195,"Name":"116","Points":9305,"X":395,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894284Z"},{"ID":49196,"Name":"015","Points":5828,"X":650,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894287Z"},{"ID":49197,"Name":"C027","Points":9825,"X":360,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894288Z"},{"ID":49198,"Name":"NewWorldA","Points":5190,"X":290,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894289Z"},{"ID":49199,"Name":"050","Points":10971,"X":678,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894291Z"},{"ID":49200,"Name":"Komandos","Points":4380,"X":648,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894292Z"},{"ID":49201,"Name":"FAKE OR OFF","Points":9823,"X":409,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894295Z"},{"ID":49202,"Name":"wioska","Points":11304,"X":636,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894296Z"},{"ID":49203,"Name":"Kiedyƛ Wielki Wojownik","Points":9976,"X":334,"Y":358,"Continent":"K33","Bonus":4,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8943Z"},{"ID":49204,"Name":"M.O.S.T.","Points":4267,"X":318,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":7929731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894301Z"},{"ID":49205,"Name":"[0175]","Points":8841,"X":286,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894302Z"},{"ID":49206,"Name":"003","Points":4522,"X":698,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":849085371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894303Z"},{"ID":49207,"Name":"Ave Why!","Points":2413,"X":500,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894305Z"},{"ID":49209,"Name":"02 barbarzyƄska.","Points":8743,"X":288,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894306Z"},{"ID":49210,"Name":"Wioska barbarzyƄska","Points":6635,"X":322,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894307Z"},{"ID":49211,"Name":"8516","Points":11550,"X":375,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894308Z"},{"ID":49212,"Name":"021. Salsiccia e funghi","Points":5239,"X":318,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894311Z"},{"ID":49213,"Name":"Wioska barbarzyƄska","Points":5081,"X":693,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894312Z"},{"ID":49214,"Name":"PƁD","Points":4276,"X":717,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894313Z"},{"ID":49215,"Name":"PóƂnocny Bagdad","Points":9835,"X":616,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894314Z"},{"ID":49216,"Name":"076.","Points":9419,"X":458,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894315Z"},{"ID":49217,"Name":"Babidi #6","Points":5652,"X":366,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894317Z"},{"ID":49218,"Name":"komandos","Points":9989,"X":641,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894318Z"},{"ID":49219,"Name":"New World","Points":10292,"X":426,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894321Z"},{"ID":49220,"Name":"#0299 kawskole","Points":6158,"X":437,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894323Z"},{"ID":49221,"Name":"013","Points":5100,"X":528,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894324Z"},{"ID":49222,"Name":"[0252]","Points":5535,"X":279,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894326Z"},{"ID":49223,"Name":"MojeDnoToWaszSzczyt","Points":9712,"X":492,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894327Z"},{"ID":49224,"Name":"035","Points":9581,"X":718,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894328Z"},{"ID":49225,"Name":"035|| Canes Venatici","Points":8093,"X":458,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894329Z"},{"ID":49226,"Name":"XDX","Points":10045,"X":607,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894331Z"},{"ID":49227,"Name":"Wioska barbarzyƄska","Points":7105,"X":300,"Y":427,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894334Z"},{"ID":49228,"Name":"I. Oszczywilk","Points":7538,"X":364,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":849101893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894335Z"},{"ID":49229,"Name":"Wioska barbarzyƄska","Points":9641,"X":523,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894337Z"},{"ID":49230,"Name":"Wioska 2","Points":8587,"X":655,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894338Z"},{"ID":49231,"Name":"komandos czysta","Points":10059,"X":642,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89434Z"},{"ID":49232,"Name":"MojeDnoToWaszSzczyt","Points":9710,"X":490,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894341Z"},{"ID":49233,"Name":"Avanti!","Points":10042,"X":280,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894342Z"},{"ID":49234,"Name":"Op Konfederacja","Points":7132,"X":472,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894345Z"},{"ID":49236,"Name":"New WorldA","Points":5529,"X":289,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894346Z"},{"ID":49238,"Name":"Wioska barbarzyƄska","Points":2884,"X":382,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894347Z"},{"ID":49239,"Name":"W40","Points":2070,"X":695,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894349Z"},{"ID":49240,"Name":"###125###","Points":10495,"X":591,"Y":698,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89435Z"},{"ID":49241,"Name":"029","Points":5234,"X":683,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894351Z"},{"ID":49242,"Name":"TWIERDZA .:084:.","Points":8893,"X":699,"Y":577,"Continent":"K56","Bonus":7,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894352Z"},{"ID":49243,"Name":"Avanti!","Points":7213,"X":283,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894353Z"},{"ID":49244,"Name":"069.Stradi","Points":9727,"X":430,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894356Z"},{"ID":49245,"Name":"C112","Points":7730,"X":358,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894358Z"},{"ID":49246,"Name":"Wioska barbarzyƄska","Points":2617,"X":298,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89436Z"},{"ID":49247,"Name":"024. Night Raid","Points":7815,"X":486,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894361Z"},{"ID":49248,"Name":"Wioska","Points":6095,"X":302,"Y":424,"Continent":"K43","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894362Z"},{"ID":49249,"Name":"MojeDnoToWaszSzczyt","Points":6441,"X":489,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894363Z"},{"ID":49250,"Name":"Osada","Points":4044,"X":384,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":2268889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894365Z"},{"ID":49251,"Name":"Wiadro18","Points":4336,"X":674,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894368Z"},{"ID":49252,"Name":"019 Z","Points":4599,"X":715,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894369Z"},{"ID":49253,"Name":"Wioska barbarzyƄska","Points":6991,"X":425,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89437Z"},{"ID":49254,"Name":"Wioska barbarzyƄska","Points":5546,"X":439,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894371Z"},{"ID":49255,"Name":"#K75 0005","Points":5664,"X":521,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894372Z"},{"ID":49256,"Name":"C076","Points":4258,"X":356,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894374Z"},{"ID":49257,"Name":"5. Gors Velen","Points":3844,"X":604,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894375Z"},{"ID":49258,"Name":"Wioska KaszczuJ 4","Points":9735,"X":701,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":849104356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894376Z"},{"ID":49259,"Name":"Babilon 01","Points":9864,"X":345,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894379Z"},{"ID":49260,"Name":"302","Points":6069,"X":447,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89438Z"},{"ID":49261,"Name":"D009","Points":8667,"X":349,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894381Z"},{"ID":49262,"Name":"Wioska barbarzyƄska","Points":3455,"X":311,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894382Z"},{"ID":49263,"Name":"U.001","Points":8672,"X":288,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894383Z"},{"ID":49264,"Name":"Taran","Points":8888,"X":314,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894385Z"},{"ID":49265,"Name":"Wiadrowo Kolonia","Points":4749,"X":288,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894386Z"},{"ID":49266,"Name":"Taran","Points":7086,"X":310,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894389Z"},{"ID":49267,"Name":"Wioska barbarzyƄska","Points":8462,"X":376,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699269923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89439Z"},{"ID":49268,"Name":"012","Points":2130,"X":322,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894391Z"},{"ID":49269,"Name":"005","Points":8677,"X":664,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894392Z"},{"ID":49270,"Name":"Wioska002","Points":9726,"X":347,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894393Z"},{"ID":49271,"Name":"=032= Wioska barbarzyƄska","Points":8389,"X":705,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894394Z"},{"ID":49272,"Name":"VII. Stare Juchy","Points":3062,"X":366,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":849101893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894395Z"},{"ID":49273,"Name":"Początek","Points":4920,"X":300,"Y":573,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894397Z"},{"ID":49274,"Name":"Wioska barbarzyƄska","Points":2709,"X":329,"Y":370,"Continent":"K33","Bonus":5,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894399Z"},{"ID":49275,"Name":"021.","Points":10838,"X":471,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894401Z"},{"ID":49276,"Name":"Komandos","Points":9723,"X":640,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894402Z"},{"ID":49277,"Name":"04 Trąbek Bąbek","Points":9512,"X":715,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894403Z"},{"ID":49278,"Name":"003","Points":7573,"X":612,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894404Z"},{"ID":49279,"Name":"Taran","Points":10291,"X":317,"Y":612,"Continent":"K63","Bonus":2,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894405Z"},{"ID":49280,"Name":"Wioska Destination1","Points":6053,"X":493,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894407Z"},{"ID":49281,"Name":"005","Points":3772,"X":294,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894409Z"},{"ID":49282,"Name":"Wioska barbarzyƄska 007","Points":7765,"X":560,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894411Z"},{"ID":49284,"Name":"*INTERTWINED*","Points":5743,"X":515,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894412Z"},{"ID":49285,"Name":"KRÓL PAPI WIELKI","Points":6329,"X":717,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894413Z"},{"ID":49286,"Name":"EO EO","Points":10083,"X":288,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894414Z"},{"ID":49287,"Name":"OƂawa","Points":6850,"X":678,"Y":633,"Continent":"K66","Bonus":9,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894415Z"},{"ID":49288,"Name":"#K75 0002","Points":6734,"X":520,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894417Z"},{"ID":49289,"Name":"B001","Points":10216,"X":613,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894418Z"},{"ID":49290,"Name":"Oxenfurt","Points":5434,"X":311,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":849101377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894421Z"},{"ID":49291,"Name":"Nowe IMPERIUM 2","Points":4555,"X":617,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894422Z"},{"ID":49292,"Name":"Wy... c","Points":10495,"X":600,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894423Z"},{"ID":49293,"Name":"Wioska barbarzyƄska","Points":10439,"X":572,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894425Z"},{"ID":49294,"Name":"Wioska barbarzyƄska","Points":3433,"X":281,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894426Z"},{"ID":49295,"Name":"051","Points":9285,"X":670,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894427Z"},{"ID":49296,"Name":"Wioska barbarzyƄska","Points":7174,"X":717,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894428Z"},{"ID":49297,"Name":"009 Octoginta","Points":6484,"X":670,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894431Z"},{"ID":49298,"Name":"ZƂoty ƚwit","Points":9777,"X":585,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894432Z"},{"ID":49299,"Name":"New WorldA","Points":5916,"X":289,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894433Z"},{"ID":49300,"Name":"New WorldA","Points":4707,"X":287,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894435Z"},{"ID":49301,"Name":"Wioska F","Points":3166,"X":543,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":1867161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894436Z"},{"ID":49302,"Name":"Bagno 43","Points":3956,"X":475,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894437Z"},{"ID":49303,"Name":"Parking8","Points":4153,"X":620,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894438Z"},{"ID":49304,"Name":"053","Points":6102,"X":711,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894439Z"},{"ID":49305,"Name":"Wioska","Points":5017,"X":713,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":699034094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894443Z"},{"ID":49306,"Name":"=101= Wioska barbarzyƄska","Points":5687,"X":704,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894444Z"},{"ID":49307,"Name":"Wioska barbarzyƄska","Points":7164,"X":524,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894445Z"},{"ID":49308,"Name":"056","Points":10495,"X":405,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894447Z"},{"ID":49309,"Name":"Podbitek 5","Points":8056,"X":689,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894448Z"},{"ID":49310,"Name":"Wioska barbarzyƄska","Points":2844,"X":297,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894449Z"},{"ID":49311,"Name":"Menng","Points":8731,"X":281,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89445Z"},{"ID":49312,"Name":"Raskip","Points":10953,"X":350,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":849021566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894453Z"},{"ID":49313,"Name":"U.005","Points":6965,"X":292,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894455Z"},{"ID":49314,"Name":"Zaplecze Patataj","Points":9741,"X":355,"Y":335,"Continent":"K33","Bonus":6,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894456Z"},{"ID":49316,"Name":"176","Points":7622,"X":384,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894457Z"},{"ID":49317,"Name":"007","Points":9741,"X":651,"Y":345,"Continent":"K36","Bonus":9,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894459Z"},{"ID":49318,"Name":"atakuje plemie3","Points":2321,"X":680,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89446Z"},{"ID":49319,"Name":"082.Stradi","Points":10067,"X":431,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894461Z"},{"ID":49320,"Name":"006","Points":8449,"X":297,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894462Z"},{"ID":49321,"Name":"005 PoznaƄ","Points":4092,"X":287,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894465Z"},{"ID":49322,"Name":"Wioska barbarzyƄska","Points":3678,"X":699,"Y":572,"Continent":"K56","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894466Z"},{"ID":49323,"Name":"Wyspa 022","Points":5822,"X":294,"Y":573,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894468Z"},{"ID":49324,"Name":"Wioska barbarzyƄska","Points":8848,"X":690,"Y":407,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894469Z"},{"ID":49325,"Name":"Zaplecze gliniane","Points":9885,"X":367,"Y":334,"Continent":"K33","Bonus":2,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89447Z"},{"ID":49327,"Name":"CastAway !009","Points":9092,"X":706,"Y":583,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894471Z"},{"ID":49328,"Name":"068","Points":10019,"X":719,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894472Z"},{"ID":49329,"Name":"016. Bolognese","Points":3868,"X":322,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894474Z"},{"ID":49330,"Name":"032 Wioska barbarzyƄska","Points":9835,"X":546,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894476Z"},{"ID":49331,"Name":"Taran","Points":9209,"X":321,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894478Z"},{"ID":49332,"Name":"*018","Points":7478,"X":675,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894479Z"},{"ID":49333,"Name":"KONFA TO MARKA, NARKA","Points":6430,"X":296,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89448Z"},{"ID":49334,"Name":"komandsos","Points":9981,"X":633,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894481Z"},{"ID":49335,"Name":"Kurnik","Points":10047,"X":484,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894483Z"},{"ID":49336,"Name":"Wioska barbarzyƄska","Points":1584,"X":330,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894484Z"},{"ID":49337,"Name":"Wioska barbarzyƄska","Points":6153,"X":714,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894487Z"},{"ID":49338,"Name":"Wioska barbarzyƄska","Points":6393,"X":326,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894488Z"},{"ID":49339,"Name":"Bagno 7","Points":9428,"X":482,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894489Z"},{"ID":49340,"Name":"MJ8","Points":5693,"X":682,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89449Z"},{"ID":49341,"Name":"New WorldA","Points":4980,"X":281,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894491Z"},{"ID":49342,"Name":"Cisza","Points":4764,"X":292,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894492Z"},{"ID":49343,"Name":"C013","Points":9805,"X":371,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894494Z"},{"ID":49344,"Name":"-11-","Points":6765,"X":567,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894495Z"},{"ID":49345,"Name":"032. Gaszerbrum","Points":8920,"X":709,"Y":558,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894498Z"},{"ID":49346,"Name":"ZZ09","Points":8414,"X":309,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894499Z"},{"ID":49347,"Name":"Wioska barbarzyƄska","Points":348,"X":306,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8945Z"},{"ID":49348,"Name":"PóƂnocny Bagdad","Points":9835,"X":613,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894501Z"},{"ID":49349,"Name":"Wioska barbarzyƄska","Points":6083,"X":716,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894502Z"},{"ID":49350,"Name":"Winterfell.015","Points":6935,"X":467,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894504Z"},{"ID":49351,"Name":"Kurnik","Points":8170,"X":444,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894505Z"},{"ID":49352,"Name":"KONFA TO MARKA, NARKA","Points":4815,"X":289,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894508Z"},{"ID":49354,"Name":"033. Garizim","Points":10066,"X":709,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894509Z"},{"ID":49355,"Name":"0.02 Szale!","Points":9462,"X":463,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89451Z"},{"ID":49356,"Name":"Lord Arsey KING","Points":9014,"X":654,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894511Z"},{"ID":49357,"Name":"Wioska barbarzyƄska","Points":5103,"X":722,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894513Z"},{"ID":49358,"Name":"03 barbarzyƄska.","Points":9114,"X":286,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894514Z"},{"ID":49359,"Name":"008 Perfectio","Points":4433,"X":672,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894516Z"},{"ID":49360,"Name":"Wioska barbarzyƄska","Points":4285,"X":708,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894517Z"},{"ID":49361,"Name":"BIMBER","Points":4074,"X":450,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894521Z"},{"ID":49362,"Name":"o01","Points":10216,"X":605,"Y":689,"Continent":"K66","Bonus":2,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894522Z"},{"ID":49363,"Name":"017. Dhaulagiri","Points":10495,"X":710,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894524Z"},{"ID":49364,"Name":"026","Points":2670,"X":668,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894525Z"},{"ID":49365,"Name":"Wioska 0016","Points":8645,"X":343,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894526Z"},{"ID":49366,"Name":"Panopticon Ave","Points":645,"X":381,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":849105463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894527Z"},{"ID":49367,"Name":"Wiocha","Points":6000,"X":408,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":849094789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894528Z"},{"ID":49368,"Name":"Początek","Points":4861,"X":296,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894532Z"},{"ID":49369,"Name":"094.Stradi","Points":8848,"X":437,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894533Z"},{"ID":49370,"Name":"ElMajkelos IV","Points":10224,"X":413,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894534Z"},{"ID":49371,"Name":"Psycha Siada","Points":9835,"X":336,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894535Z"},{"ID":49372,"Name":"XDX","Points":7312,"X":609,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894537Z"},{"ID":49373,"Name":"Wioska barbarzyƄska","Points":1499,"X":692,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894538Z"},{"ID":49374,"Name":"6. Tretogor","Points":4247,"X":604,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894539Z"},{"ID":49375,"Name":"Flap","Points":7740,"X":600,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89454Z"},{"ID":49376,"Name":"Wioska barbarzyƄska","Points":5634,"X":713,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894544Z"},{"ID":49377,"Name":"Wioska barbarzyƄska 018","Points":3088,"X":386,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894545Z"},{"ID":49378,"Name":"0002 KrĂłl Fabio","Points":9745,"X":496,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894546Z"},{"ID":49379,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":294,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894547Z"},{"ID":49380,"Name":"Taran","Points":8671,"X":319,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894548Z"},{"ID":49381,"Name":"Zasiedmiogorogrodzie 001","Points":3345,"X":695,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698278542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89455Z"},{"ID":49382,"Name":"C008","Points":9790,"X":357,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894551Z"},{"ID":49383,"Name":"PoƂudniowy WschĂłd 003","Points":2913,"X":694,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894554Z"},{"ID":49385,"Name":"Mniejsze zƂo 0083","Points":10012,"X":313,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894555Z"},{"ID":49386,"Name":"t019","Points":7191,"X":664,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894556Z"},{"ID":49387,"Name":"New World","Points":10290,"X":435,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894558Z"},{"ID":49388,"Name":"--031--","Points":6166,"X":567,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894559Z"},{"ID":49389,"Name":"04.SHIBA","Points":4298,"X":711,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89456Z"},{"ID":49390,"Name":"Wioska barbarzyƄska","Points":3436,"X":649,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894561Z"},{"ID":49391,"Name":".achim.","Points":6171,"X":567,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894562Z"},{"ID":49392,"Name":"KONFA TO MARKA, NARKA","Points":7683,"X":289,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894565Z"},{"ID":49393,"Name":"New World","Points":10291,"X":424,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894566Z"},{"ID":49395,"Name":"basonia2","Points":6102,"X":284,"Y":506,"Continent":"K52","Bonus":2,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894567Z"},{"ID":49396,"Name":"S05","Points":1909,"X":720,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894569Z"},{"ID":49397,"Name":"017","Points":10495,"X":716,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89457Z"},{"ID":49398,"Name":"=027= Wioska barbarzyƄska","Points":9600,"X":704,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894571Z"},{"ID":49399,"Name":"0010 Wioska barbarzyƄska","Points":5673,"X":495,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894573Z"},{"ID":49400,"Name":"EO EO","Points":10019,"X":284,"Y":518,"Continent":"K52","Bonus":6,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894575Z"},{"ID":49401,"Name":"007 Draconia","Points":5430,"X":308,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894576Z"},{"ID":49403,"Name":"-13-","Points":8445,"X":574,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894578Z"},{"ID":49404,"Name":"KWB","Points":8346,"X":463,"Y":719,"Continent":"K74","Bonus":5,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894579Z"},{"ID":49405,"Name":"C017","Points":9701,"X":364,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89458Z"},{"ID":49406,"Name":"Bagno 8","Points":9427,"X":481,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894582Z"},{"ID":49407,"Name":"C018","Points":8297,"X":367,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894583Z"},{"ID":49408,"Name":"popki","Points":5271,"X":445,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894584Z"},{"ID":49409,"Name":"B_6","Points":3143,"X":295,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894587Z"},{"ID":49410,"Name":"Wioska barbarzyƄska","Points":5395,"X":716,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894588Z"},{"ID":49411,"Name":"057","Points":10495,"X":399,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894589Z"},{"ID":49412,"Name":"Oawek 1","Points":9305,"X":654,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894591Z"},{"ID":49413,"Name":"Wioska barbarzyƄska","Points":7154,"X":321,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894592Z"},{"ID":49414,"Name":"Zaplecze miedziane 3","Points":9886,"X":356,"Y":336,"Continent":"K33","Bonus":3,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894593Z"},{"ID":49415,"Name":"Wioska barbarzyƄska","Points":1762,"X":294,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894594Z"},{"ID":49416,"Name":"Wioska barbarzyƄska","Points":5773,"X":282,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894597Z"},{"ID":49417,"Name":"TARAN","Points":7154,"X":547,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":7860453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894598Z"},{"ID":49418,"Name":"Wyspa 015","Points":3360,"X":296,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894599Z"},{"ID":49420,"Name":"komandos","Points":10176,"X":642,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8946Z"},{"ID":49421,"Name":"Wioska barbarzyƄska","Points":7279,"X":558,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894602Z"},{"ID":49423,"Name":"Avanti!","Points":7065,"X":284,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894603Z"},{"ID":49424,"Name":"New World","Points":10290,"X":424,"Y":698,"Continent":"K64","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894604Z"},{"ID":49425,"Name":"Wioska 05","Points":6359,"X":694,"Y":592,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894605Z"},{"ID":49427,"Name":"007","Points":5478,"X":611,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894608Z"},{"ID":49428,"Name":"CSA - Konfederacja","Points":9861,"X":668,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894609Z"},{"ID":49429,"Name":"###126###","Points":10495,"X":590,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894611Z"},{"ID":49430,"Name":"wioska","Points":10635,"X":642,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894612Z"},{"ID":49431,"Name":"Lord Arsey KING","Points":8274,"X":662,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894613Z"},{"ID":49432,"Name":"008 Twierdza","Points":10019,"X":627,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894614Z"},{"ID":49433,"Name":"###127###","Points":10495,"X":586,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894615Z"},{"ID":49434,"Name":"047 sebaseba1991","Points":10160,"X":620,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894618Z"},{"ID":49435,"Name":"Wioska barbarzyƄska","Points":8564,"X":713,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894619Z"},{"ID":49436,"Name":"0101","Points":10216,"X":387,"Y":685,"Continent":"K63","Bonus":2,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894621Z"},{"ID":49437,"Name":"--032--","Points":3773,"X":567,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894622Z"},{"ID":49438,"Name":"komandos","Points":9838,"X":643,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894623Z"},{"ID":49439,"Name":"MERHET","Points":9953,"X":581,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894624Z"},{"ID":49441,"Name":"S026","Points":7341,"X":686,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894625Z"},{"ID":49442,"Name":"Wioska 0000","Points":10040,"X":342,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894627Z"},{"ID":49443,"Name":"018. Wioska barbarzyƄska","Points":7691,"X":681,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89463Z"},{"ID":49444,"Name":"07. Zucchabar","Points":10495,"X":712,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894631Z"},{"ID":49445,"Name":"Wyspa 005","Points":10495,"X":291,"Y":568,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894633Z"},{"ID":49446,"Name":"#Kresy","Points":5990,"X":628,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894634Z"},{"ID":49447,"Name":"Wioska004","Points":9732,"X":345,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894635Z"},{"ID":49448,"Name":"themonk","Points":5598,"X":636,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":849005829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894637Z"},{"ID":49449,"Name":"C003","Points":9805,"X":369,"Y":673,"Continent":"K63","Bonus":5,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894638Z"},{"ID":49450,"Name":"101","Points":10130,"X":397,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894641Z"},{"ID":49451,"Name":"Wyspa 016","Points":3649,"X":298,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894642Z"},{"ID":49452,"Name":"Mniejsze zƂo 0092","Points":4663,"X":312,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894643Z"},{"ID":49453,"Name":"Początek","Points":4197,"X":294,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894644Z"},{"ID":49454,"Name":"Szlachcic","Points":6250,"X":364,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894645Z"},{"ID":49455,"Name":"021","Points":7324,"X":295,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894647Z"},{"ID":49456,"Name":"187","Points":7164,"X":381,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894648Z"},{"ID":49457,"Name":"###128###","Points":10495,"X":610,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894649Z"},{"ID":49458,"Name":"Wiadro17","Points":3736,"X":672,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894652Z"},{"ID":49459,"Name":"Wioska","Points":4073,"X":715,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":699034094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894653Z"},{"ID":49460,"Name":"KRÓL PAPI WIELKI","Points":5155,"X":711,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894654Z"},{"ID":49461,"Name":"...","Points":5449,"X":338,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894655Z"},{"ID":49462,"Name":"Wioska barbarzyƄska","Points":8544,"X":345,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894657Z"},{"ID":49463,"Name":"Wioska barbarzyƄska 2x1","Points":7654,"X":571,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894658Z"},{"ID":49464,"Name":"[0253]","Points":7065,"X":281,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894659Z"},{"ID":49465,"Name":"New WorldA","Points":6863,"X":288,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89466Z"},{"ID":49466,"Name":"S02","Points":10143,"X":718,"Y":473,"Continent":"K47","Bonus":5,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894663Z"},{"ID":49467,"Name":"Mandarynka","Points":2161,"X":359,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894664Z"},{"ID":49468,"Name":"Wioska barbarzyƄska","Points":5067,"X":448,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894666Z"},{"ID":49469,"Name":"ZƂoty ƚwit","Points":6877,"X":584,"Y":308,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894668Z"},{"ID":49470,"Name":"Zaplecze Barba 020","Points":6950,"X":367,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894669Z"},{"ID":49472,"Name":"3.Derby","Points":4996,"X":578,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89467Z"},{"ID":49473,"Name":"XDX","Points":7151,"X":598,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894671Z"},{"ID":49474,"Name":"Wioska barbarzyƄska","Points":4753,"X":302,"Y":587,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894674Z"},{"ID":49475,"Name":"*026*","Points":2972,"X":689,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894675Z"},{"ID":49476,"Name":"093.Stradi","Points":9858,"X":439,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894676Z"},{"ID":49477,"Name":"EO EO","Points":10160,"X":280,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894678Z"},{"ID":49478,"Name":"008","Points":2600,"X":321,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894679Z"},{"ID":49480,"Name":"096","Points":10495,"X":400,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89468Z"},{"ID":49481,"Name":"057KP","Points":4592,"X":481,"Y":284,"Continent":"K24","Bonus":4,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894681Z"},{"ID":49482,"Name":"Z.04","Points":4647,"X":700,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894682Z"},{"ID":49483,"Name":"083","Points":9627,"X":405,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894685Z"},{"ID":49484,"Name":"MJ12","Points":5749,"X":682,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894687Z"},{"ID":49485,"Name":"*004","Points":9399,"X":669,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894688Z"},{"ID":49487,"Name":"001","Points":9719,"X":725,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894689Z"},{"ID":49488,"Name":"Wioska barbarzyƄska 001","Points":11625,"X":379,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89469Z"},{"ID":49489,"Name":"Babidi #1","Points":9787,"X":374,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894692Z"},{"ID":49490,"Name":"Ave Why!","Points":3508,"X":507,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894693Z"},{"ID":49491,"Name":"004d","Points":4408,"X":300,"Y":418,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894696Z"},{"ID":49492,"Name":"Tomekrol 4","Points":5379,"X":697,"Y":590,"Continent":"K56","Bonus":0,"PlayerID":849096334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894697Z"},{"ID":49493,"Name":"-14-","Points":7985,"X":575,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894699Z"},{"ID":49495,"Name":"New World","Points":10290,"X":428,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8947Z"},{"ID":49497,"Name":"3_Franekkimono510_3","Points":7112,"X":371,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894701Z"},{"ID":49498,"Name":"O027","Points":9957,"X":340,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894703Z"},{"ID":49499,"Name":"028","Points":4251,"X":666,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894704Z"},{"ID":49500,"Name":"007","Points":1284,"X":440,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894705Z"},{"ID":49501,"Name":"Wioska barbarzyƄska","Points":4797,"X":515,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894709Z"},{"ID":49502,"Name":"0037","Points":1561,"X":323,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89471Z"},{"ID":49503,"Name":"076","Points":7158,"X":716,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894711Z"},{"ID":49505,"Name":"3.Doncaster","Points":5456,"X":548,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894712Z"},{"ID":49506,"Name":"014 Twierdza","Points":7689,"X":631,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894714Z"},{"ID":49507,"Name":"Czarna Dziura","Points":6277,"X":360,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894715Z"},{"ID":49508,"Name":"B029","Points":9815,"X":635,"Y":490,"Continent":"K46","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894716Z"},{"ID":49509,"Name":"040","Points":10495,"X":409,"Y":691,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894719Z"},{"ID":49510,"Name":"*017","Points":7617,"X":673,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89472Z"},{"ID":49511,"Name":"Bagno 15","Points":8739,"X":486,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894721Z"},{"ID":49512,"Name":"Wioska barbarzyƄska","Points":8663,"X":645,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894722Z"},{"ID":49513,"Name":"Wioska8","Points":6975,"X":707,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894723Z"},{"ID":49514,"Name":"017 Osada koczownikĂłw","Points":10178,"X":544,"Y":282,"Continent":"K25","Bonus":2,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894725Z"},{"ID":49516,"Name":"027. Faber","Points":9095,"X":712,"Y":533,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894726Z"},{"ID":49517,"Name":"044","Points":10495,"X":410,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894727Z"},{"ID":49518,"Name":"002d","Points":4776,"X":301,"Y":408,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89473Z"},{"ID":49519,"Name":"Wioska barbarzyƄska","Points":4231,"X":457,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894731Z"},{"ID":49520,"Name":"czorny","Points":1506,"X":698,"Y":578,"Continent":"K56","Bonus":0,"PlayerID":849101814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894733Z"},{"ID":49521,"Name":"ZƂoty ƚwit","Points":9450,"X":598,"Y":302,"Continent":"K35","Bonus":7,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894734Z"},{"ID":49522,"Name":"kontra 2","Points":2628,"X":680,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894735Z"},{"ID":49523,"Name":"Wioska barbarzyƄska","Points":9499,"X":716,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894736Z"},{"ID":49524,"Name":"SawTower","Points":7292,"X":283,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894738Z"},{"ID":49525,"Name":"ZƂoty ƚwit","Points":9764,"X":585,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89474Z"},{"ID":49526,"Name":"Kurnik","Points":3454,"X":473,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894742Z"},{"ID":49527,"Name":"Wioska CzambaƁamba","Points":559,"X":326,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":699875650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894743Z"},{"ID":49528,"Name":"001","Points":6953,"X":307,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894744Z"},{"ID":49529,"Name":"026 zadupie 2","Points":10083,"X":534,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894745Z"},{"ID":49530,"Name":"Klatka2","Points":3192,"X":619,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894746Z"},{"ID":49531,"Name":"011","Points":2315,"X":308,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894747Z"},{"ID":49532,"Name":"Taran","Points":10047,"X":320,"Y":617,"Continent":"K63","Bonus":6,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894749Z"},{"ID":49533,"Name":"658|388","Points":9570,"X":670,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894751Z"},{"ID":49534,"Name":"Wioska barbarzyƄska","Points":697,"X":336,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894753Z"},{"ID":49535,"Name":"Wioska011","Points":9017,"X":346,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894754Z"},{"ID":49536,"Name":"0137","Points":4843,"X":367,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894755Z"},{"ID":49537,"Name":"C0234","Points":9968,"X":285,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894757Z"},{"ID":49538,"Name":"Wioska barbarzyƄska","Points":7255,"X":299,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894758Z"},{"ID":49539,"Name":"DĆŒejdĆŒej 4","Points":6645,"X":669,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894759Z"},{"ID":49541,"Name":"2023","Points":4260,"X":375,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894762Z"},{"ID":49542,"Name":"005","Points":2966,"X":592,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894763Z"},{"ID":49543,"Name":"Wyspa_42","Points":7604,"X":500,"Y":721,"Continent":"K75","Bonus":4,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894764Z"},{"ID":49544,"Name":"[805] Odludzie","Points":7007,"X":712,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894766Z"},{"ID":49546,"Name":"Psycha Siada","Points":8553,"X":339,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894767Z"},{"ID":49548,"Name":"031 Furnost","Points":10083,"X":601,"Y":502,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894768Z"},{"ID":49549,"Name":"0006","Points":9160,"X":576,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894769Z"},{"ID":49550,"Name":"Wioska barbarzyƄska","Points":3821,"X":524,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89477Z"},{"ID":49551,"Name":"KONFA TO MARKA, NARKA","Points":8051,"X":293,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894773Z"},{"ID":49552,"Name":"Wioska barbarzyƄska","Points":8902,"X":355,"Y":447,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894774Z"},{"ID":49553,"Name":"C0236","Points":7192,"X":282,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894776Z"},{"ID":49554,"Name":"Wioska barbarzyƄska","Points":1540,"X":429,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894777Z"},{"ID":49555,"Name":"XDX","Points":9880,"X":603,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894778Z"},{"ID":49556,"Name":"009","Points":10242,"X":536,"Y":291,"Continent":"K25","Bonus":1,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89478Z"},{"ID":49557,"Name":"0149","Points":5345,"X":389,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894781Z"},{"ID":49558,"Name":"112","Points":7707,"X":688,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894784Z"},{"ID":49559,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":286,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894785Z"},{"ID":49560,"Name":"Avanti!","Points":7189,"X":285,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894786Z"},{"ID":49561,"Name":"018","Points":7995,"X":283,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894787Z"},{"ID":49563,"Name":"O068","Points":9873,"X":331,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894789Z"},{"ID":49564,"Name":"New WorldA","Points":4923,"X":289,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89479Z"},{"ID":49565,"Name":"Wioska barbarzyƄska","Points":5733,"X":425,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894791Z"},{"ID":49566,"Name":"Szlachcic","Points":10474,"X":382,"Y":317,"Continent":"K33","Bonus":8,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894792Z"},{"ID":49567,"Name":"barabara","Points":1033,"X":284,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894795Z"},{"ID":49568,"Name":"Wioska barbarzyƄska","Points":7155,"X":706,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894796Z"},{"ID":49569,"Name":"171","Points":7618,"X":379,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894797Z"},{"ID":49570,"Name":"W002","Points":8702,"X":306,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":849082154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894799Z"},{"ID":49571,"Name":"--023--","Points":6002,"X":572,"Y":293,"Continent":"K25","Bonus":3,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8948Z"},{"ID":49573,"Name":"029. Gerlach","Points":8699,"X":715,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894801Z"},{"ID":49574,"Name":"Mniejsze zƂo 0039","Points":8484,"X":312,"Y":388,"Continent":"K33","Bonus":2,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894802Z"},{"ID":49575,"Name":"KONFA TO MARKA, NARKA","Points":4686,"X":292,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894805Z"},{"ID":49576,"Name":"Playa del Confital","Points":6342,"X":376,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894806Z"},{"ID":49577,"Name":"#0254 Taki Pan dar","Points":5189,"X":469,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894807Z"},{"ID":49578,"Name":"1 Nowy vequs","Points":6423,"X":341,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894808Z"},{"ID":49579,"Name":"Wioska ƻóƂwi Ninja","Points":8456,"X":712,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89481Z"},{"ID":49580,"Name":"C043","Points":9202,"X":351,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894811Z"},{"ID":49581,"Name":"Wioska barbarzyƄska","Points":4080,"X":649,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849048734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894812Z"},{"ID":49582,"Name":"Wioska 031","Points":10495,"X":670,"Y":360,"Continent":"K36","Bonus":1,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894813Z"},{"ID":49583,"Name":"004 JJ","Points":3699,"X":327,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894816Z"},{"ID":49584,"Name":"Wioska barbarzyƄska","Points":6393,"X":462,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":849104286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894817Z"},{"ID":49585,"Name":"Psycha Siada","Points":7569,"X":345,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894819Z"},{"ID":49586,"Name":"MojeDnoToWaszSzczyt","Points":4950,"X":488,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89482Z"},{"ID":49587,"Name":"0031 drama","Points":9805,"X":324,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894821Z"},{"ID":49588,"Name":"Wioska (045)","Points":2062,"X":714,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894823Z"},{"ID":49589,"Name":".4.!","Points":2327,"X":301,"Y":406,"Continent":"K43","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894824Z"},{"ID":49590,"Name":"- 219 -","Points":6528,"X":547,"Y":561,"Continent":"K55","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894827Z"},{"ID":49591,"Name":"Ghostmane2","Points":2759,"X":716,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894828Z"},{"ID":49592,"Name":"Wioska barbarzyƄska","Points":5449,"X":721,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894829Z"},{"ID":49593,"Name":"046","Points":3326,"X":632,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894831Z"},{"ID":49594,"Name":"0.17c","Points":9744,"X":459,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894832Z"},{"ID":49596,"Name":"Caldera de Bandama","Points":5788,"X":378,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894833Z"},{"ID":49597,"Name":"MojeDnoToWaszSzczyt","Points":9961,"X":494,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894834Z"},{"ID":49598,"Name":"003","Points":5946,"X":291,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894836Z"},{"ID":49599,"Name":"[0187]","Points":8587,"X":285,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894838Z"},{"ID":49600,"Name":"Taran","Points":5630,"X":311,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89484Z"},{"ID":49601,"Name":"New WorldA","Points":4979,"X":284,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894841Z"},{"ID":49602,"Name":"aaa","Points":1317,"X":682,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894842Z"},{"ID":49603,"Name":"Początek","Points":3643,"X":301,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894843Z"},{"ID":49604,"Name":"BIMBER 2","Points":5456,"X":446,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894844Z"},{"ID":49606,"Name":"...","Points":8282,"X":377,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894846Z"},{"ID":49607,"Name":"R 041","Points":6493,"X":500,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894847Z"},{"ID":49608,"Name":"Osada Wandali x","Points":4145,"X":658,"Y":351,"Continent":"K36","Bonus":6,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89485Z"},{"ID":49609,"Name":"BRICKLEBERRY","Points":8566,"X":521,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894851Z"},{"ID":49610,"Name":"Wioska-010-","Points":2725,"X":635,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":7675610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894852Z"},{"ID":49611,"Name":"0435","Points":10019,"X":559,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894854Z"},{"ID":49612,"Name":"Wioska 003","Points":8375,"X":316,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":699424741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894855Z"},{"ID":49613,"Name":"Winterfell.010","Points":10178,"X":454,"Y":283,"Continent":"K24","Bonus":3,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894856Z"},{"ID":49614,"Name":".: SPARTA :.","Points":5059,"X":720,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":699734445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894857Z"},{"ID":49615,"Name":"Rikitiki","Points":4047,"X":290,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894861Z"},{"ID":49616,"Name":"Wioska barbarzyƄska","Points":3090,"X":492,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894862Z"},{"ID":49617,"Name":"Winterfell.019","Points":10178,"X":458,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894863Z"},{"ID":49618,"Name":"031","Points":6520,"X":686,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894864Z"},{"ID":49619,"Name":".achim.","Points":5282,"X":485,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894865Z"},{"ID":49620,"Name":"ĆŒ internacionale 0002Fresio","Points":10062,"X":316,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894866Z"},{"ID":49621,"Name":"D007","Points":5103,"X":562,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894868Z"},{"ID":49622,"Name":"Zaplecze Barba 012","Points":9088,"X":366,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894869Z"},{"ID":49623,"Name":"EO EO","Points":10019,"X":281,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894896Z"},{"ID":49624,"Name":"001d","Points":7915,"X":302,"Y":415,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894898Z"},{"ID":49625,"Name":".Krakers. 008","Points":1531,"X":319,"Y":620,"Continent":"K63","Bonus":9,"PlayerID":9163140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894899Z"},{"ID":49626,"Name":"Avanti!","Points":6473,"X":285,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.8949Z"},{"ID":49627,"Name":"aaaa","Points":9817,"X":421,"Y":294,"Continent":"K24","Bonus":8,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894901Z"},{"ID":49629,"Name":"New WorldA","Points":3642,"X":281,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894903Z"},{"ID":49630,"Name":"Mniejsze zƂo 0095","Points":5283,"X":317,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894904Z"},{"ID":49631,"Name":"PóƂnocny Bagdad","Points":6866,"X":621,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894907Z"},{"ID":49632,"Name":"Bagno 28","Points":6811,"X":475,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894908Z"},{"ID":49633,"Name":"033","Points":10160,"X":717,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89491Z"},{"ID":49635,"Name":"Parking6","Points":4215,"X":625,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894911Z"},{"ID":49636,"Name":"###129###","Points":10495,"X":609,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894912Z"},{"ID":49637,"Name":".achim.","Points":7211,"X":566,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894914Z"},{"ID":49638,"Name":"#0055","Points":10495,"X":575,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894915Z"},{"ID":49639,"Name":"027.","Points":10838,"X":472,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894916Z"},{"ID":49640,"Name":"Lord Arsey KING","Points":8274,"X":655,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89492Z"},{"ID":49641,"Name":"MJ13","Points":4567,"X":681,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894921Z"},{"ID":49642,"Name":"ZƂoty ƚwit","Points":7430,"X":591,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894923Z"},{"ID":49643,"Name":"Jan Ost skrajny","Points":6424,"X":705,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":879782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894924Z"},{"ID":49644,"Name":"Wioska barbarzyƄska","Points":9069,"X":378,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894925Z"},{"ID":49645,"Name":"MojeDnoToWaszSzczyt","Points":9622,"X":508,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894927Z"},{"ID":49646,"Name":"027","Points":5985,"X":456,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894928Z"},{"ID":49647,"Name":"Denver","Points":4391,"X":283,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894931Z"},{"ID":49649,"Name":"Wioska barbarzyƄska","Points":9566,"X":423,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894932Z"},{"ID":49650,"Name":"021","Points":2799,"X":665,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894934Z"},{"ID":49651,"Name":"*018*","Points":4737,"X":682,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894935Z"},{"ID":49652,"Name":"Osada koczownikĂłw","Points":9986,"X":638,"Y":333,"Continent":"K36","Bonus":4,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894936Z"},{"ID":49653,"Name":"o05","Points":9744,"X":612,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894937Z"},{"ID":49654,"Name":"Zaplecze barba 5","Points":9811,"X":365,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894938Z"},{"ID":49655,"Name":"009 JJ","Points":3302,"X":325,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89494Z"},{"ID":49656,"Name":"--027--","Points":4803,"X":568,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894942Z"},{"ID":49657,"Name":"ZZ11","Points":9044,"X":308,"Y":404,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894944Z"},{"ID":49658,"Name":"Wioska barbarzyƄska","Points":4805,"X":396,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894945Z"},{"ID":49659,"Name":"MojeSzczytToTwĂłjDno","Points":10971,"X":514,"Y":368,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894946Z"},{"ID":49660,"Name":"R 042","Points":5813,"X":499,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894947Z"},{"ID":49661,"Name":"ZƂoty ƚwit","Points":7988,"X":575,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894949Z"},{"ID":49663,"Name":"###130###","Points":10495,"X":607,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89495Z"},{"ID":49664,"Name":"FAKE OR OFF","Points":9813,"X":407,"Y":306,"Continent":"K34","Bonus":9,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894953Z"},{"ID":49665,"Name":"Wioska barbarzyƄska","Points":3574,"X":443,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894954Z"},{"ID":49666,"Name":"C069","Points":6692,"X":358,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894955Z"},{"ID":49667,"Name":"o008","Points":6462,"X":605,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894957Z"},{"ID":49668,"Name":"049. Lindor","Points":3312,"X":442,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894958Z"},{"ID":49669,"Name":"###131###","Points":10495,"X":610,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894959Z"},{"ID":49670,"Name":"137 invidia","Points":10083,"X":496,"Y":715,"Continent":"K74","Bonus":6,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89496Z"},{"ID":49671,"Name":"300","Points":10495,"X":446,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894962Z"},{"ID":49672,"Name":"04 barbarzyƄska.","Points":8050,"X":287,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894964Z"},{"ID":49673,"Name":"EO EO","Points":10160,"X":279,"Y":521,"Continent":"K52","Bonus":3,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894966Z"},{"ID":49674,"Name":"Wioska majku 5","Points":1632,"X":414,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":363280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894967Z"},{"ID":49675,"Name":"Szlachcic","Points":7688,"X":382,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894969Z"},{"ID":49676,"Name":"P002","Points":9981,"X":514,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89497Z"},{"ID":49677,"Name":"##3","Points":9080,"X":348,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894971Z"},{"ID":49678,"Name":"Wioska - 008 -","Points":1989,"X":535,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894972Z"},{"ID":49679,"Name":"--005--","Points":7704,"X":571,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894975Z"},{"ID":49680,"Name":"Legnica","Points":4475,"X":678,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894976Z"},{"ID":49681,"Name":"New WorldA","Points":4788,"X":292,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894977Z"},{"ID":49682,"Name":"122","Points":8543,"X":407,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894979Z"},{"ID":49683,"Name":"Ger2","Points":5778,"X":715,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89498Z"},{"ID":49685,"Name":"[0165]","Points":7889,"X":439,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894981Z"},{"ID":49686,"Name":"002f","Points":4185,"X":301,"Y":411,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894982Z"},{"ID":49688,"Name":"*004*","Points":11321,"X":277,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894984Z"},{"ID":49689,"Name":"C028","Points":8056,"X":364,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894987Z"},{"ID":49690,"Name":"015","Points":4539,"X":531,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894988Z"},{"ID":49691,"Name":"045","Points":10495,"X":408,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894989Z"},{"ID":49692,"Name":"B003Mordor","Points":10393,"X":712,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89499Z"},{"ID":49693,"Name":"168","Points":8436,"X":382,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894991Z"},{"ID":49694,"Name":"0070","Points":10252,"X":580,"Y":707,"Continent":"K75","Bonus":3,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894993Z"},{"ID":49695,"Name":"Vvvv","Points":3773,"X":284,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894994Z"},{"ID":49696,"Name":"005 JJ","Points":4309,"X":331,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894997Z"},{"ID":49697,"Name":"Wioska barbarzyƄska","Points":7268,"X":551,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.894999Z"},{"ID":49698,"Name":"[0194]","Points":9135,"X":279,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895Z"},{"ID":49699,"Name":"=0019=","Points":8529,"X":389,"Y":311,"Continent":"K33","Bonus":7,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895001Z"},{"ID":49700,"Name":"Wioska barbarzyƄska","Points":1612,"X":310,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895002Z"},{"ID":49701,"Name":"Wioska jurger","Points":9755,"X":716,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":2246711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895003Z"},{"ID":49702,"Name":"090","Points":4173,"X":722,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895005Z"},{"ID":49703,"Name":"Szlachcic","Points":6299,"X":357,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895006Z"},{"ID":49704,"Name":"C038","Points":7835,"X":355,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895009Z"},{"ID":49705,"Name":"062","Points":8215,"X":714,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89501Z"},{"ID":49707,"Name":"ZZ14","Points":9597,"X":309,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895012Z"},{"ID":49709,"Name":"012.","Points":4940,"X":632,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895013Z"},{"ID":49710,"Name":"B_5","Points":2848,"X":294,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895014Z"},{"ID":49711,"Name":"OFF","Points":10343,"X":653,"Y":654,"Continent":"K66","Bonus":4,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895015Z"},{"ID":49712,"Name":"XDX","Points":10290,"X":599,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895017Z"},{"ID":49713,"Name":"XDX","Points":7729,"X":599,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895019Z"},{"ID":49714,"Name":"023. Aglio e olio","Points":4697,"X":319,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895021Z"},{"ID":49716,"Name":"002","Points":7573,"X":656,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895022Z"},{"ID":49717,"Name":"099","Points":8554,"X":407,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895023Z"},{"ID":49718,"Name":"Wioska barbarzyƄska","Points":1460,"X":693,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895024Z"},{"ID":49719,"Name":"=091= Wioska barbarzyƄska","Points":5893,"X":700,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895026Z"},{"ID":49720,"Name":"MojeDnoToWaszSzczyt","Points":6244,"X":485,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895027Z"},{"ID":49721,"Name":"C001","Points":9879,"X":353,"Y":661,"Continent":"K63","Bonus":9,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895028Z"},{"ID":49723,"Name":"Wioska barbarzyƄska","Points":1500,"X":702,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":698462285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895031Z"},{"ID":49724,"Name":"Wioska barbarzyƄska","Points":3045,"X":279,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895033Z"},{"ID":49725,"Name":"025","Points":4741,"X":527,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895034Z"},{"ID":49726,"Name":"Wioska barbarzyƄska","Points":4908,"X":351,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849101694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895035Z"},{"ID":49727,"Name":"Początek","Points":9811,"X":297,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895037Z"},{"ID":49728,"Name":"bucksbarzyƄskamiiiru","Points":6643,"X":315,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895038Z"},{"ID":49729,"Name":"KONFA TO MARKA, NARKA","Points":10248,"X":286,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895039Z"},{"ID":49730,"Name":"Mroczny Zamek OZDR 01","Points":10559,"X":624,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895042Z"},{"ID":49731,"Name":"EO EO","Points":9701,"X":284,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895043Z"},{"ID":49732,"Name":"021 Safari Zone Gate","Points":10388,"X":721,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895045Z"},{"ID":49733,"Name":"...","Points":3126,"X":337,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895046Z"},{"ID":49734,"Name":"Dorka na malediwy","Points":10611,"X":294,"Y":415,"Continent":"K42","Bonus":9,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895047Z"},{"ID":49735,"Name":"0.17e","Points":9413,"X":460,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699827112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895048Z"},{"ID":49736,"Name":"[0198]","Points":7489,"X":283,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89505Z"},{"ID":49737,"Name":"$007$ Paradise","Points":7420,"X":304,"Y":584,"Continent":"K53","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895051Z"},{"ID":49738,"Name":"KONFA TO MARKA, NARKA","Points":6720,"X":290,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895054Z"},{"ID":49739,"Name":"058","Points":7665,"X":711,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895055Z"},{"ID":49740,"Name":"055","Points":10495,"X":407,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895056Z"},{"ID":49741,"Name":"-17-","Points":7858,"X":577,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895057Z"},{"ID":49742,"Name":"A#006","Points":9797,"X":717,"Y":533,"Continent":"K57","Bonus":9,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.895058Z"},{"ID":49743,"Name":"Testarossa","Points":4718,"X":704,"Y":412,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.89506Z"},{"ID":49744,"Name":"BRICKLEBERRY","Points":8149,"X":557,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92809Z"},{"ID":49745,"Name":"058KP","Points":4245,"X":485,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928091Z"},{"ID":49746,"Name":"B004","Points":5653,"X":621,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928092Z"},{"ID":49747,"Name":"009","Points":2683,"X":309,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928092Z"},{"ID":49748,"Name":"Cisza","Points":2578,"X":299,"Y":574,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928093Z"},{"ID":49749,"Name":"Avanti!","Points":10119,"X":286,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928093Z"},{"ID":49750,"Name":"Wioska barbarzyƄska","Points":5670,"X":527,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928094Z"},{"ID":49751,"Name":"040","Points":6230,"X":509,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":849010255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928095Z"},{"ID":49752,"Name":"Chojnice","Points":9362,"X":485,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928095Z"},{"ID":49754,"Name":"Taran","Points":9645,"X":318,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928096Z"},{"ID":49755,"Name":"BiaƂa Podlaska 2","Points":1981,"X":439,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849100787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928096Z"},{"ID":49756,"Name":"--009--","Points":8696,"X":571,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928097Z"},{"ID":49757,"Name":"Wioska barbarzyƄska","Points":8860,"X":696,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928097Z"},{"ID":49758,"Name":"B016","Points":3102,"X":625,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928098Z"},{"ID":49759,"Name":"Barba","Points":8289,"X":325,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928099Z"},{"ID":49761,"Name":"39. Wioska 39","Points":8404,"X":289,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928099Z"},{"ID":49762,"Name":"Taka.","Points":5864,"X":484,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9281Z"},{"ID":49763,"Name":"6 M MANSON","Points":2363,"X":346,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":6315553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9281Z"},{"ID":49764,"Name":"052","Points":8832,"X":676,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928101Z"},{"ID":49765,"Name":"Wioska barbarzyƄska","Points":2182,"X":307,"Y":591,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928102Z"},{"ID":49766,"Name":"XDX","Points":3769,"X":604,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928102Z"},{"ID":49767,"Name":"[B]003","Points":8126,"X":418,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928103Z"},{"ID":49768,"Name":"D008","Points":4661,"X":563,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928103Z"},{"ID":49769,"Name":"Psycha Siada","Points":10019,"X":334,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928104Z"},{"ID":49770,"Name":"063","Points":7252,"X":717,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928104Z"},{"ID":49771,"Name":"PóƂnocny Bagdad","Points":7517,"X":620,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928105Z"},{"ID":49772,"Name":"ZZ12","Points":9049,"X":307,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928105Z"},{"ID":49774,"Name":"091 Wioska barbarzyƄska","Points":6109,"X":542,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928106Z"},{"ID":49776,"Name":"C075","Points":5688,"X":354,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928107Z"},{"ID":49777,"Name":"PoƂudniowy WschĂłd 013","Points":1407,"X":695,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928107Z"},{"ID":49778,"Name":"Wiocha IV","Points":2591,"X":337,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849106316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928108Z"},{"ID":49779,"Name":"Bagno 9","Points":9400,"X":479,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928108Z"},{"ID":49780,"Name":"Wyspa 011","Points":7727,"X":296,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928109Z"},{"ID":49781,"Name":"OFF","Points":11078,"X":658,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92811Z"},{"ID":49782,"Name":"wioska","Points":12154,"X":638,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92811Z"},{"ID":49783,"Name":"051","Points":10495,"X":406,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928111Z"},{"ID":49785,"Name":"[0143]","Points":8951,"X":458,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928111Z"},{"ID":49786,"Name":"--037--","Points":3957,"X":574,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928112Z"},{"ID":49787,"Name":"Wioska barbarzyƄska 006","Points":7485,"X":564,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928112Z"},{"ID":49788,"Name":"Avanti!","Points":4586,"X":283,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928113Z"},{"ID":49789,"Name":"Yoyio","Points":5932,"X":285,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928114Z"},{"ID":49790,"Name":"1_Franekkimono510_1","Points":12154,"X":374,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928115Z"},{"ID":49791,"Name":"Wioska 0005","Points":10311,"X":346,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928116Z"},{"ID":49792,"Name":"Taran","Points":9509,"X":319,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928116Z"},{"ID":49793,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":290,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928117Z"},{"ID":49794,"Name":"Wioska 021","Points":11352,"X":661,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928118Z"},{"ID":49795,"Name":"O072","Points":9827,"X":329,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928119Z"},{"ID":49796,"Name":"Wioska barbarzyƄska","Points":2221,"X":461,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92812Z"},{"ID":49797,"Name":"Psycha Siada","Points":9968,"X":335,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928121Z"},{"ID":49798,"Name":"00321","Points":5814,"X":434,"Y":416,"Continent":"K44","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928122Z"},{"ID":49799,"Name":"Wioska barbarzyƄska","Points":8860,"X":693,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928122Z"},{"ID":49800,"Name":"Wioska barbarzyƄska","Points":10019,"X":711,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928123Z"},{"ID":49801,"Name":"New World","Points":10292,"X":427,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928123Z"},{"ID":49802,"Name":"C022","Points":9957,"X":356,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928124Z"},{"ID":49803,"Name":"Wioska barbarzyƄska","Points":293,"X":305,"Y":405,"Continent":"K43","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928124Z"},{"ID":49804,"Name":"038","Points":1770,"X":670,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928125Z"},{"ID":49805,"Name":"001","Points":5976,"X":593,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928126Z"},{"ID":49806,"Name":"Wioska barbarzyƄska","Points":2556,"X":281,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":7530708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928126Z"},{"ID":49807,"Name":"Amsterdam","Points":4106,"X":282,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":699830255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928127Z"},{"ID":49808,"Name":"002","Points":6826,"X":288,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928127Z"},{"ID":49809,"Name":"067. Nansena","Points":3381,"X":720,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928128Z"},{"ID":49810,"Name":"New World","Points":10291,"X":428,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928129Z"},{"ID":49811,"Name":"Wioska barbarzyƄska","Points":2443,"X":291,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":498483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928129Z"},{"ID":49812,"Name":"001","Points":6171,"X":288,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":849085605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92813Z"},{"ID":49813,"Name":"Z.01","Points":10056,"X":701,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92813Z"},{"ID":49814,"Name":"KONFA TO MARKA, NARKA","Points":2908,"X":297,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928131Z"},{"ID":49815,"Name":"001. Pepperoni","Points":8473,"X":320,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928131Z"},{"ID":49816,"Name":"Wioska19","Points":3063,"X":707,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928132Z"},{"ID":49817,"Name":"005 - Budowanko!","Points":7354,"X":487,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928132Z"},{"ID":49818,"Name":"Vvvvv","Points":1763,"X":281,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928133Z"},{"ID":49819,"Name":"=113= Wioska barbarzyƄska-01-","Points":6093,"X":703,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928134Z"},{"ID":49820,"Name":"Wioska barbarzyƄska","Points":3760,"X":687,"Y":529,"Continent":"K56","Bonus":0,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928134Z"},{"ID":49821,"Name":"W41","Points":1722,"X":693,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928135Z"},{"ID":49822,"Name":"086.Stradi","Points":8622,"X":429,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928135Z"},{"ID":49824,"Name":"Szlachcic","Points":7302,"X":373,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928136Z"},{"ID":49825,"Name":"KONFA TO MARKA, NARKA","Points":8674,"X":287,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928137Z"},{"ID":49826,"Name":"Wioska barbarzyƄska","Points":4290,"X":709,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928137Z"},{"ID":49827,"Name":"osada 1","Points":7423,"X":663,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":7357503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928138Z"},{"ID":49828,"Name":"Wioska barbarzyƄska","Points":3134,"X":353,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":698817235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928138Z"},{"ID":49829,"Name":"Wioska barbarzyƄska","Points":1391,"X":650,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":6167751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928139Z"},{"ID":49830,"Name":"004 Thargourm","Points":6002,"X":671,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928139Z"},{"ID":49831,"Name":"Początek","Points":9955,"X":299,"Y":584,"Continent":"K52","Bonus":9,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92814Z"},{"ID":49832,"Name":"Wioska JAN1234","Points":4233,"X":299,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":699075351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92814Z"},{"ID":49833,"Name":"=092= Wioska barbarzyƄska","Points":5662,"X":699,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928141Z"},{"ID":49834,"Name":"XDX","Points":6347,"X":600,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928142Z"},{"ID":49835,"Name":"Mroczny Zamek OZDR 03","Points":5080,"X":621,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":699699601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928142Z"},{"ID":49836,"Name":"Taran","Points":9349,"X":321,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928143Z"},{"ID":49837,"Name":"Kurnik","Points":9253,"X":468,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928143Z"},{"ID":49838,"Name":"007 - Budowanko!","Points":8382,"X":492,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928144Z"},{"ID":49839,"Name":"Wioska","Points":5322,"X":283,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":8792844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928144Z"},{"ID":49840,"Name":"###132###","Points":10495,"X":598,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928145Z"},{"ID":49841,"Name":"Wioska barbarzyƄska","Points":9719,"X":519,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928145Z"},{"ID":49842,"Name":"C031","Points":7858,"X":359,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928146Z"},{"ID":49843,"Name":"Wioska barbarzyƄska","Points":4113,"X":390,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928147Z"},{"ID":49844,"Name":"PoƂudniowy WschĂłd 006","Points":1577,"X":690,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928147Z"},{"ID":49845,"Name":"Szlachcic","Points":8098,"X":382,"Y":312,"Continent":"K33","Bonus":6,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928148Z"},{"ID":49846,"Name":"Wioska przemek2707","Points":7662,"X":285,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":8853146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928148Z"},{"ID":49847,"Name":"=119= Wioska barbarzyƄska","Points":2279,"X":704,"Y":558,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928149Z"},{"ID":49848,"Name":"--038--","Points":3901,"X":574,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928149Z"},{"ID":49849,"Name":"- 275 - SS","Points":2991,"X":571,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92815Z"},{"ID":49850,"Name":"004. Osada koczownikĂłw","Points":10237,"X":686,"Y":387,"Continent":"K36","Bonus":3,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928151Z"},{"ID":49851,"Name":"XDX","Points":9281,"X":607,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928151Z"},{"ID":49853,"Name":"001 Mortalis","Points":10292,"X":671,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928152Z"},{"ID":49854,"Name":"Wioska12","Points":7269,"X":707,"Y":581,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928152Z"},{"ID":49855,"Name":"R 044","Points":4456,"X":495,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928153Z"},{"ID":49856,"Name":"012 telimena","Points":10160,"X":616,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928153Z"},{"ID":49857,"Name":"#0306 kawskole","Points":4466,"X":445,"Y":285,"Continent":"K24","Bonus":5,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928154Z"},{"ID":49859,"Name":"C035","Points":9692,"X":352,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928154Z"},{"ID":49860,"Name":"C.045","Points":4354,"X":714,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928155Z"},{"ID":49862,"Name":"Wioska4.","Points":9315,"X":707,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928156Z"},{"ID":49863,"Name":"Taran","Points":9899,"X":323,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928156Z"},{"ID":49864,"Name":"3.Ipswich","Points":4873,"X":579,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928157Z"},{"ID":49865,"Name":"Kiedyƛ Wielki Wojownik","Points":5023,"X":333,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928157Z"},{"ID":49866,"Name":"Wioska barbarzyƄska","Points":4651,"X":368,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928158Z"},{"ID":49867,"Name":"037 Wioska barbarzyƄska","Points":8812,"X":606,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928158Z"},{"ID":49868,"Name":"[0150]","Points":9130,"X":440,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928159Z"},{"ID":49869,"Name":"Bilo","Points":4362,"X":558,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928159Z"},{"ID":49870,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":289,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92816Z"},{"ID":49871,"Name":"074 Stopnie","Points":9553,"X":705,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928161Z"},{"ID":49872,"Name":"EO EO","Points":10160,"X":282,"Y":513,"Continent":"K52","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928161Z"},{"ID":49873,"Name":"038. Brunet wieczorową porą","Points":4538,"X":502,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928162Z"},{"ID":49874,"Name":"003","Points":1442,"X":532,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928162Z"},{"ID":49875,"Name":"Wioska barbarzyƄska","Points":5781,"X":524,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928163Z"},{"ID":49876,"Name":"005","Points":10019,"X":721,"Y":497,"Continent":"K47","Bonus":8,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928163Z"},{"ID":49877,"Name":"Zielona Warta","Points":7951,"X":707,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928164Z"},{"ID":49878,"Name":"[0213]","Points":7414,"X":277,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928165Z"},{"ID":49879,"Name":"New World","Points":10291,"X":429,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928165Z"},{"ID":49880,"Name":"060 invidia","Points":6647,"X":542,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928166Z"},{"ID":49882,"Name":"Nowa 01","Points":8370,"X":302,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928166Z"},{"ID":49884,"Name":"K33","Points":2119,"X":316,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928167Z"},{"ID":49885,"Name":"C073","Points":5863,"X":355,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928167Z"},{"ID":49887,"Name":"Jefferson","Points":608,"X":383,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":849105463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928168Z"},{"ID":49888,"Name":"CastAway #010","Points":9265,"X":706,"Y":584,"Continent":"K57","Bonus":1,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928168Z"},{"ID":49889,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":285,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928169Z"},{"ID":49890,"Name":"~~077~~","Points":6190,"X":679,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928169Z"},{"ID":49891,"Name":"0113","Points":10216,"X":366,"Y":675,"Continent":"K63","Bonus":8,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92817Z"},{"ID":49892,"Name":"MojeDnoToWaszSzczyt","Points":9946,"X":500,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928171Z"},{"ID":49893,"Name":"PoƂudniowy WschĂłd 010","Points":1951,"X":690,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928171Z"},{"ID":49894,"Name":"New World","Points":6404,"X":280,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928172Z"},{"ID":49895,"Name":"Wioska barbarzyƄska","Points":3991,"X":562,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928172Z"},{"ID":49896,"Name":"Wioska Turystyczna 007","Points":5474,"X":716,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928173Z"},{"ID":49897,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9811,"X":551,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928174Z"},{"ID":49898,"Name":"084","Points":6317,"X":715,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928174Z"},{"ID":49899,"Name":"C0249","Points":8038,"X":287,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928175Z"},{"ID":49900,"Name":"[808] Odludzie","Points":8166,"X":708,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928175Z"},{"ID":49901,"Name":"=086= Santa Fe","Points":10385,"X":701,"Y":572,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928176Z"},{"ID":49902,"Name":"Wioska - 007 -","Points":1702,"X":534,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928176Z"},{"ID":49903,"Name":"Nowa 57","Points":6826,"X":701,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928177Z"},{"ID":49904,"Name":"Winterfell.001","Points":10178,"X":454,"Y":289,"Continent":"K24","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928177Z"},{"ID":49905,"Name":"Wioska barbarzyƄska","Points":6092,"X":713,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928178Z"},{"ID":49906,"Name":"Wioska barbarzyƄska","Points":4902,"X":305,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928178Z"},{"ID":49907,"Name":"komandos48","Points":10495,"X":639,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928179Z"},{"ID":49908,"Name":"Wioska klez 021","Points":2725,"X":315,"Y":564,"Continent":"K53","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928179Z"},{"ID":49910,"Name":"0068","Points":4993,"X":693,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92818Z"},{"ID":49911,"Name":"Wyspa 008","Points":10495,"X":289,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928181Z"},{"ID":49912,"Name":"MojeDnoToWaszSzczyt","Points":9952,"X":508,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928181Z"},{"ID":49914,"Name":"0131","Points":4761,"X":388,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928182Z"},{"ID":49915,"Name":"tomek016 III","Points":2199,"X":690,"Y":568,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928182Z"},{"ID":49916,"Name":"Wioska barbarzyƄska 003","Points":10641,"X":378,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928183Z"},{"ID":49917,"Name":"Asgard","Points":4979,"X":659,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":849101947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928183Z"},{"ID":49918,"Name":"003 poćwiczone byq","Points":6666,"X":324,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928184Z"},{"ID":49919,"Name":"B_9","Points":1347,"X":298,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928184Z"},{"ID":49920,"Name":"#0267 EmersonJr","Points":5755,"X":468,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928185Z"},{"ID":49922,"Name":"s181 krzysiek1293","Points":10132,"X":404,"Y":418,"Continent":"K44","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928186Z"},{"ID":49923,"Name":"ZƂoty ƚwit","Points":8280,"X":574,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928186Z"},{"ID":49924,"Name":"xxx","Points":8511,"X":536,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928187Z"},{"ID":49925,"Name":"013 zbieranie","Points":4947,"X":532,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928187Z"},{"ID":49926,"Name":"Wioska barbarzyƄska","Points":3020,"X":646,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":849048734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928188Z"},{"ID":49927,"Name":"Wygwizdowa 008","Points":7180,"X":637,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928189Z"},{"ID":49928,"Name":"Wioska barbarzyƄska","Points":6964,"X":710,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928189Z"},{"ID":49929,"Name":"199...Segador","Points":10787,"X":441,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92819Z"},{"ID":49930,"Name":"001","Points":9271,"X":321,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7919620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928191Z"},{"ID":49931,"Name":"Wioska barbarzyƄska","Points":5547,"X":721,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928191Z"},{"ID":49932,"Name":"Wioska03","Points":4580,"X":297,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928192Z"},{"ID":49933,"Name":"FAKE OR OFF","Points":9843,"X":401,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928193Z"},{"ID":49934,"Name":"Wioska 02","Points":6926,"X":694,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928194Z"},{"ID":49936,"Name":"C.046","Points":4851,"X":711,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928194Z"},{"ID":49937,"Name":"005","Points":9555,"X":464,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928195Z"},{"ID":49938,"Name":"New WorldA","Points":4279,"X":282,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928196Z"},{"ID":49939,"Name":"Wioska barbarzyƄska","Points":1823,"X":695,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928197Z"},{"ID":49940,"Name":"A#005","Points":9797,"X":716,"Y":504,"Continent":"K57","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928197Z"},{"ID":49941,"Name":"New World","Points":10292,"X":415,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928198Z"},{"ID":49943,"Name":"006","Points":3399,"X":287,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":848886200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928199Z"},{"ID":49944,"Name":"002. Osada koczownikĂłw","Points":10237,"X":681,"Y":375,"Continent":"K36","Bonus":8,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928199Z"},{"ID":49945,"Name":"05.CHZ","Points":5717,"X":712,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9282Z"},{"ID":49946,"Name":"EO EO","Points":10147,"X":294,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9282Z"},{"ID":49947,"Name":"Taka.","Points":3210,"X":487,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928201Z"},{"ID":49948,"Name":"Wioska Lord Mariusso","Points":8119,"X":522,"Y":528,"Continent":"K55","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928201Z"},{"ID":49949,"Name":"K33","Points":3493,"X":318,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928202Z"},{"ID":49950,"Name":"Taran","Points":8005,"X":319,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928203Z"},{"ID":49951,"Name":"025","Points":5111,"X":654,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928203Z"},{"ID":49952,"Name":"080","Points":5011,"X":719,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928204Z"},{"ID":49953,"Name":"002e","Points":4211,"X":302,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928204Z"},{"ID":49954,"Name":"Bartek","Points":6791,"X":362,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":6416213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928205Z"},{"ID":49955,"Name":"-005-","Points":5439,"X":723,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928205Z"},{"ID":49957,"Name":"=093= Wioska barbarzyƄska","Points":5699,"X":701,"Y":589,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928206Z"},{"ID":49958,"Name":"Amaranth.","Points":2406,"X":283,"Y":479,"Continent":"K42","Bonus":3,"PlayerID":849001277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928206Z"},{"ID":49960,"Name":"[0267]","Points":5993,"X":286,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928207Z"},{"ID":49961,"Name":"Sicario","Points":1663,"X":715,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928207Z"},{"ID":49962,"Name":"Wioska barbarzyƄska","Points":8715,"X":520,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928208Z"},{"ID":49963,"Name":"C01 Qukaku.","Points":10817,"X":450,"Y":715,"Continent":"K74","Bonus":4,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928209Z"},{"ID":49964,"Name":"Wioska barbarzyƄska","Points":6334,"X":643,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928209Z"},{"ID":49965,"Name":"###146###","Points":10495,"X":597,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92821Z"},{"ID":49966,"Name":"011","Points":5202,"X":307,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":849099463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92821Z"},{"ID":49967,"Name":"WEZUWIAN","Points":10222,"X":707,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928211Z"},{"ID":49968,"Name":"001 Desant","Points":9736,"X":482,"Y":688,"Continent":"K64","Bonus":0,"PlayerID":699745265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928211Z"},{"ID":49969,"Name":"C048","Points":7015,"X":354,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928212Z"},{"ID":49970,"Name":"0000030Z","Points":6563,"X":286,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928212Z"},{"ID":49971,"Name":"Lord Arsey KING","Points":9179,"X":661,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928213Z"},{"ID":49972,"Name":"rynko","Points":1348,"X":683,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928214Z"},{"ID":49973,"Name":"xxx","Points":10136,"X":537,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928214Z"},{"ID":49974,"Name":"B20","Points":7339,"X":646,"Y":445,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928215Z"},{"ID":49975,"Name":"Wioska barbarzyƄska","Points":6990,"X":713,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928215Z"},{"ID":49977,"Name":"=079= BORSUKA NORA","Points":3731,"X":707,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928216Z"},{"ID":49978,"Name":"Wioska Boonkol","Points":6684,"X":528,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928216Z"},{"ID":49979,"Name":"333","Points":2960,"X":417,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928217Z"},{"ID":49980,"Name":"Wioska grzegorzzdw","Points":2343,"X":312,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":849098132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928217Z"},{"ID":49981,"Name":"Wioska 11","Points":5006,"X":695,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928218Z"},{"ID":49983,"Name":"178","Points":6928,"X":384,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928219Z"},{"ID":49984,"Name":"XDX","Points":9222,"X":605,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928219Z"},{"ID":49985,"Name":"New World","Points":10292,"X":411,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92822Z"},{"ID":49986,"Name":"Na KraƄcu ƚwiata 007","Points":6448,"X":647,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92822Z"},{"ID":49987,"Name":"014","Points":9922,"X":545,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928221Z"},{"ID":49988,"Name":"MojeDnoToWaszSzczyt","Points":9958,"X":509,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928221Z"},{"ID":49990,"Name":"Wioska 16","Points":2656,"X":694,"Y":587,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928222Z"},{"ID":49991,"Name":"106 invidia","Points":10311,"X":522,"Y":720,"Continent":"K75","Bonus":5,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928222Z"},{"ID":49992,"Name":"Saran7","Points":2752,"X":399,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928223Z"},{"ID":49993,"Name":"New WorldA","Points":4131,"X":279,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928223Z"},{"ID":49994,"Name":"Walhalla","Points":9453,"X":310,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928224Z"},{"ID":49995,"Name":"B_2","Points":4204,"X":295,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928225Z"},{"ID":49996,"Name":"Taran","Points":8304,"X":318,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928225Z"},{"ID":49997,"Name":"045","Points":5149,"X":661,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928226Z"},{"ID":49998,"Name":"Wioska hajza","Points":4338,"X":406,"Y":305,"Continent":"K34","Bonus":0,"PlayerID":378757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928226Z"},{"ID":49999,"Name":"C.047","Points":4340,"X":720,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928227Z"},{"ID":50000,"Name":"B017","Points":2201,"X":626,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928227Z"},{"ID":50001,"Name":"041.","Points":10838,"X":451,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928228Z"},{"ID":50002,"Name":"001 Twierdza","Points":10019,"X":630,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928228Z"},{"ID":50003,"Name":"Wioska Chudy19","Points":7217,"X":351,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849101694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928229Z"},{"ID":50004,"Name":"063 Wioska barbarzyƄska","Points":6044,"X":343,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92823Z"},{"ID":50006,"Name":"6_Franekkimono510_6","Points":4184,"X":370,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92823Z"},{"ID":50007,"Name":"XDX","Points":5342,"X":615,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928231Z"},{"ID":50008,"Name":"000","Points":9570,"X":306,"Y":476,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928231Z"},{"ID":50009,"Name":"Dream on","Points":9697,"X":303,"Y":506,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928232Z"},{"ID":50010,"Name":"Kurnik","Points":10160,"X":476,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928232Z"},{"ID":50011,"Name":"057 Wioska barbarzyƄska","Points":9976,"X":550,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928233Z"},{"ID":50012,"Name":"Polska","Points":6548,"X":379,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928233Z"},{"ID":50013,"Name":"bucksbarzyƄskamiiiru","Points":1882,"X":314,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928234Z"},{"ID":50014,"Name":"B001 OSADA 2","Points":3863,"X":710,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928235Z"},{"ID":50015,"Name":"019Szalowanie Czapki","Points":8185,"X":503,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928235Z"},{"ID":50016,"Name":"*009","Points":9861,"X":674,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928236Z"},{"ID":50017,"Name":"Winterfell.004","Points":10178,"X":465,"Y":289,"Continent":"K24","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928236Z"},{"ID":50019,"Name":"072.","Points":4364,"X":710,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928237Z"},{"ID":50020,"Name":"04Osada koczownikĂłw","Points":9817,"X":363,"Y":675,"Continent":"K63","Bonus":3,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928237Z"},{"ID":50021,"Name":"002","Points":9662,"X":647,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928238Z"},{"ID":50022,"Name":"038","Points":10495,"X":398,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928238Z"},{"ID":50023,"Name":"22 kolonia016..","Points":10311,"X":290,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928239Z"},{"ID":50024,"Name":"Wiadro01","Points":8199,"X":675,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928239Z"},{"ID":50026,"Name":"Wioska","Points":2504,"X":636,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849005829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92824Z"},{"ID":50027,"Name":"wioska","Points":12154,"X":636,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92824Z"},{"ID":50028,"Name":"Wioska barbarzyƄska","Points":4656,"X":377,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928241Z"},{"ID":50029,"Name":"C093","Points":9912,"X":360,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928242Z"},{"ID":50030,"Name":"###133###","Points":10388,"X":610,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928242Z"},{"ID":50031,"Name":"K33","Points":2165,"X":315,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928243Z"},{"ID":50032,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9744,"X":551,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928243Z"},{"ID":50034,"Name":"Wioska barbarzyƄska","Points":3015,"X":277,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928244Z"},{"ID":50035,"Name":"Wioska barbarzyƄska","Points":5652,"X":526,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928244Z"},{"ID":50036,"Name":"ZƂoty ƚwit","Points":10086,"X":606,"Y":306,"Continent":"K36","Bonus":6,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928245Z"},{"ID":50038,"Name":"Wioska barbarzyƄska","Points":3319,"X":720,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928245Z"},{"ID":50039,"Name":"0595","Points":8975,"X":475,"Y":546,"Continent":"K54","Bonus":0,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928246Z"},{"ID":50040,"Name":"CastAway !034","Points":5740,"X":689,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928247Z"},{"ID":50041,"Name":"001","Points":10495,"X":402,"Y":590,"Continent":"K54","Bonus":0,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928247Z"},{"ID":50042,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":291,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928248Z"},{"ID":50044,"Name":"Wioska barbarzyƄska","Points":4112,"X":398,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928248Z"},{"ID":50045,"Name":"PóƂnocny Bagdad","Points":9541,"X":614,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928249Z"},{"ID":50046,"Name":":... 2 ...: -","Points":8012,"X":512,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849051976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928249Z"},{"ID":50047,"Name":"W001","Points":6774,"X":307,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":849082154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92825Z"},{"ID":50048,"Name":"Wioska barbarzyƄska","Points":2367,"X":509,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92825Z"},{"ID":50050,"Name":"Wioska majku 3","Points":4630,"X":414,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928251Z"},{"ID":50051,"Name":"Wioska barbarzyƄska","Points":1439,"X":555,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928251Z"},{"ID":50052,"Name":"022","Points":2603,"X":285,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928252Z"},{"ID":50053,"Name":".achim.","Points":8325,"X":481,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928252Z"},{"ID":50054,"Name":"Wioska barbarzyƄska","Points":6827,"X":414,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928253Z"},{"ID":50055,"Name":"Wioska barbarzyƄska","Points":8684,"X":645,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928254Z"},{"ID":50056,"Name":"Deor, przeginasz","Points":2856,"X":627,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928254Z"},{"ID":50057,"Name":"New World","Points":5130,"X":438,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928255Z"},{"ID":50058,"Name":"002","Points":8235,"X":386,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928255Z"},{"ID":50059,"Name":"#0154 barbarzyƄska","Points":5568,"X":478,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928256Z"},{"ID":50060,"Name":"048.","Points":10313,"X":449,"Y":710,"Continent":"K74","Bonus":9,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928256Z"},{"ID":50061,"Name":"Taka.","Points":6671,"X":484,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928257Z"},{"ID":50062,"Name":"North 013","Points":10311,"X":513,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928257Z"},{"ID":50063,"Name":"[820] Odludzie","Points":6104,"X":714,"Y":442,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928258Z"},{"ID":50064,"Name":"#0070","Points":7605,"X":572,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928258Z"},{"ID":50065,"Name":"Wioska 0001","Points":10237,"X":343,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928259Z"},{"ID":50066,"Name":"Wioska barbarzyƄska","Points":9833,"X":391,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92826Z"},{"ID":50067,"Name":"Kurnik","Points":7952,"X":448,"Y":709,"Continent":"K74","Bonus":2,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92826Z"},{"ID":50068,"Name":"Baloo","Points":5080,"X":552,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928261Z"},{"ID":50069,"Name":"Wioska barbarzyƄska","Points":8856,"X":435,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928261Z"},{"ID":50070,"Name":"Klejnot nr3","Points":2145,"X":592,"Y":693,"Continent":"K65","Bonus":0,"PlayerID":699837483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928262Z"},{"ID":50071,"Name":"Wioska barbarzyƄska","Points":6802,"X":559,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928262Z"},{"ID":50073,"Name":"#K75 0012","Points":4501,"X":517,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928263Z"},{"ID":50074,"Name":"Bastion","Points":3769,"X":704,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":849088199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928263Z"},{"ID":50075,"Name":"006 gruba","Points":2214,"X":283,"Y":552,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928264Z"},{"ID":50076,"Name":"B_4","Points":2544,"X":297,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928264Z"},{"ID":50078,"Name":"017","Points":3822,"X":666,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928265Z"},{"ID":50080,"Name":"Wioska barbarzyƄska","Points":9043,"X":324,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928266Z"},{"ID":50081,"Name":"New WorldA","Points":3909,"X":282,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928267Z"},{"ID":50082,"Name":"Wioska007","Points":8262,"X":688,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928267Z"},{"ID":50083,"Name":"W42","Points":1901,"X":693,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928268Z"},{"ID":50084,"Name":"Wioska007","Points":9735,"X":343,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928269Z"},{"ID":50085,"Name":"II. Niemyje-Ząbki","Points":5320,"X":364,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":849101893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928269Z"},{"ID":50086,"Name":"0036","Points":2410,"X":324,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92827Z"},{"ID":50087,"Name":"Minas Tirith","Points":10160,"X":704,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928271Z"},{"ID":50088,"Name":"ZƂoty ƚwit","Points":10127,"X":585,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928272Z"},{"ID":50089,"Name":"008","Points":5127,"X":299,"Y":595,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928272Z"},{"ID":50090,"Name":"Avanti!","Points":6673,"X":282,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928273Z"},{"ID":50091,"Name":"Wiadro02","Points":9008,"X":672,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928274Z"},{"ID":50092,"Name":"#035","Points":3861,"X":553,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928274Z"},{"ID":50093,"Name":"Wioska barbarzyƄska","Points":4500,"X":722,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928275Z"},{"ID":50094,"Name":"001 koparka","Points":5319,"X":527,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928275Z"},{"ID":50095,"Name":"Wioska borat1986","Points":8109,"X":498,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928276Z"},{"ID":50096,"Name":"229...PÓƂnoc","Points":7514,"X":436,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928276Z"},{"ID":50097,"Name":"[J]aĆș","Points":2280,"X":285,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":849106971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928277Z"},{"ID":50098,"Name":"Dream on","Points":9508,"X":306,"Y":500,"Continent":"K53","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928277Z"},{"ID":50099,"Name":"Wyspa_53","Points":2854,"X":496,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928278Z"},{"ID":50100,"Name":"Wioska barbarzyƄska","Points":9750,"X":553,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928278Z"},{"ID":50101,"Name":"WAKKRA","Points":10222,"X":708,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928279Z"},{"ID":50102,"Name":"Wioska Karyagina","Points":8789,"X":715,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92828Z"},{"ID":50103,"Name":"Chęciny","Points":2312,"X":305,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92828Z"},{"ID":50104,"Name":"Out of Touch","Points":6926,"X":325,"Y":443,"Continent":"K43","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928281Z"},{"ID":50105,"Name":"012","Points":3728,"X":341,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928281Z"},{"ID":50106,"Name":"...","Points":4071,"X":336,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928282Z"},{"ID":50107,"Name":"Lord Arsey KING","Points":4235,"X":655,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928282Z"},{"ID":50108,"Name":"Komandos","Points":4468,"X":653,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928283Z"},{"ID":50109,"Name":"Not 2 day","Points":5447,"X":483,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928284Z"},{"ID":50111,"Name":"ZZ13","Points":9368,"X":311,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928284Z"},{"ID":50112,"Name":"PiekƂo to inni","Points":6300,"X":643,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928285Z"},{"ID":50113,"Name":"=028= Wioska barbarzyƄska","Points":9603,"X":708,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928285Z"},{"ID":50114,"Name":"Wioska barbarzyƄska","Points":5720,"X":506,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928286Z"},{"ID":50115,"Name":"HWILA","Points":5174,"X":626,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928286Z"},{"ID":50116,"Name":"Lord Arsey KING","Points":10285,"X":658,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928287Z"},{"ID":50118,"Name":"EO EO","Points":7800,"X":286,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928287Z"},{"ID":50119,"Name":"Wioska barbarzyƄska","Points":3887,"X":278,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928288Z"},{"ID":50120,"Name":"076 Wioska barbarzyƄska","Points":9756,"X":539,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928288Z"},{"ID":50121,"Name":"0140","Points":4443,"X":368,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928289Z"},{"ID":50122,"Name":"????","Points":9059,"X":477,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928289Z"},{"ID":50123,"Name":"067 invidia","Points":5621,"X":542,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92829Z"},{"ID":50124,"Name":"Wioska 032","Points":8783,"X":665,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928291Z"},{"ID":50125,"Name":"JJay House","Points":8243,"X":328,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928291Z"},{"ID":50126,"Name":"[0254]","Points":5639,"X":288,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928292Z"},{"ID":50127,"Name":"052 Wioska barbarzyƄska","Points":7080,"X":347,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928292Z"},{"ID":50128,"Name":"005b","Points":4943,"X":305,"Y":409,"Continent":"K43","Bonus":7,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928293Z"},{"ID":50129,"Name":"@08@","Points":6926,"X":405,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699483429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928293Z"},{"ID":50130,"Name":"Psycha Siada","Points":9835,"X":339,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928294Z"},{"ID":50131,"Name":"=0018=","Points":9864,"X":389,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928294Z"},{"ID":50132,"Name":"New WorldA","Points":5917,"X":288,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928295Z"},{"ID":50133,"Name":"Wioska barbarzyƄska","Points":4652,"X":303,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928295Z"},{"ID":50134,"Name":"#K75 0006","Points":6066,"X":521,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928296Z"},{"ID":50135,"Name":"Z 04","Points":3289,"X":384,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928296Z"},{"ID":50136,"Name":"C0232","Points":7498,"X":283,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928297Z"},{"ID":50137,"Name":"wancki i gustlikk","Points":9720,"X":504,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928297Z"},{"ID":50138,"Name":"Wioska11","Points":6753,"X":709,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928298Z"},{"ID":50139,"Name":"Zaplecze Deadshot","Points":2765,"X":358,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928299Z"},{"ID":50140,"Name":"028. Falakro","Points":8917,"X":713,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928299Z"},{"ID":50141,"Name":"0109","Points":10216,"X":369,"Y":680,"Continent":"K63","Bonus":2,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9283Z"},{"ID":50142,"Name":"Bagno 25","Points":7565,"X":477,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9283Z"},{"ID":50143,"Name":"-03-","Points":9472,"X":579,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928301Z"},{"ID":50145,"Name":".004. Zanzibar","Points":7732,"X":720,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928301Z"},{"ID":50146,"Name":"3.Nottingham","Points":3756,"X":549,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928302Z"},{"ID":50147,"Name":"K33","Points":3953,"X":310,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928302Z"},{"ID":50148,"Name":"047 Wioska barbarzyƄska","Points":9835,"X":547,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928303Z"},{"ID":50149,"Name":"062 invidia","Points":5153,"X":540,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928303Z"},{"ID":50150,"Name":"004","Points":3953,"X":699,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849085371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928304Z"},{"ID":50151,"Name":"Wioska dzbanek54321","Points":4472,"X":693,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698187023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928305Z"},{"ID":50152,"Name":"037","Points":7696,"X":655,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928305Z"},{"ID":50153,"Name":"###134###","Points":10495,"X":606,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928306Z"},{"ID":50154,"Name":"Saran6","Points":3322,"X":401,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928306Z"},{"ID":50155,"Name":"Wioska barbarzyƄska","Points":1999,"X":278,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928307Z"},{"ID":50156,"Name":"Taka.","Points":5853,"X":485,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928307Z"},{"ID":50157,"Name":"030.","Points":10165,"X":467,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928308Z"},{"ID":50158,"Name":"C0229","Points":10362,"X":282,"Y":539,"Continent":"K52","Bonus":3,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928308Z"},{"ID":50159,"Name":"X002","Points":10485,"X":707,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928309Z"},{"ID":50160,"Name":"C040","Points":8478,"X":354,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928309Z"},{"ID":50161,"Name":"040","Points":1045,"X":667,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92831Z"},{"ID":50162,"Name":"Z 05","Points":6278,"X":384,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928311Z"},{"ID":50163,"Name":"Wioska barbarzyƄska","Points":4180,"X":461,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":699863708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928311Z"},{"ID":50164,"Name":"krisa","Points":5643,"X":304,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928312Z"},{"ID":50165,"Name":"Wioska barbarzyƄska","Points":5176,"X":327,"Y":559,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928312Z"},{"ID":50166,"Name":"Wioska barbarzyƄska","Points":7067,"X":548,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928313Z"},{"ID":50167,"Name":"003. Osada koczownikĂłw","Points":10237,"X":675,"Y":374,"Continent":"K36","Bonus":1,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928313Z"},{"ID":50168,"Name":"Wioska krzysztof wspaniaƂy","Points":4068,"X":675,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":6111938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928314Z"},{"ID":50169,"Name":"C033","Points":9436,"X":369,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928314Z"},{"ID":50170,"Name":"#0149 barbarzyƄska","Points":7729,"X":474,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928315Z"},{"ID":50171,"Name":"Wioska_10oo","Points":3945,"X":647,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":6795280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928316Z"},{"ID":50172,"Name":"FAKE OR OFF","Points":9819,"X":399,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928316Z"},{"ID":50173,"Name":"MojeDnoToWaszSzczyt","Points":4887,"X":490,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928317Z"},{"ID":50174,"Name":"004 N","Points":5892,"X":303,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928317Z"},{"ID":50175,"Name":"006","Points":1515,"X":441,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":849101309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928318Z"},{"ID":50176,"Name":"Wioska barbarzyƄska","Points":4775,"X":397,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928318Z"},{"ID":50177,"Name":"MojeDnoToWaszSzczyt","Points":6304,"X":489,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928319Z"},{"ID":50178,"Name":"002","Points":2600,"X":527,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928319Z"},{"ID":50179,"Name":"...","Points":1870,"X":338,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92832Z"},{"ID":50180,"Name":"181 Katastrofa, panie rexanty XD","Points":3992,"X":715,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":698693697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92832Z"},{"ID":50181,"Name":"011","Points":4676,"X":308,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928321Z"},{"ID":50182,"Name":"Na KraƄcu ƚwiata 023","Points":4278,"X":646,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928321Z"},{"ID":50184,"Name":"Psycha Siada","Points":10019,"X":337,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928322Z"},{"ID":50185,"Name":"1v9 machine","Points":10019,"X":389,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928323Z"},{"ID":50186,"Name":"PiekƂo to inni","Points":5046,"X":633,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928323Z"},{"ID":50187,"Name":"1. Rivia","Points":9590,"X":602,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928324Z"},{"ID":50188,"Name":"Wioska barbarzyƄska","Points":8058,"X":575,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928324Z"},{"ID":50189,"Name":"=082= Jamestown","Points":10580,"X":704,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928328Z"},{"ID":50190,"Name":"0.01 Good Night!","Points":9166,"X":460,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928329Z"},{"ID":50191,"Name":"[0145]","Points":9125,"X":456,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928329Z"},{"ID":50192,"Name":".achim.","Points":7112,"X":480,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928329Z"},{"ID":50193,"Name":"Wioska barbarzyƄska","Points":3862,"X":277,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928329Z"},{"ID":50194,"Name":"073","Points":6446,"X":717,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928329Z"},{"ID":50195,"Name":"Wioska barbarzyƄska","Points":9094,"X":711,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92833Z"},{"ID":50196,"Name":"FP037","Points":5752,"X":471,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92833Z"},{"ID":50197,"Name":"160...F","Points":7021,"X":397,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92833Z"},{"ID":50198,"Name":"002","Points":9230,"X":288,"Y":467,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92833Z"},{"ID":50199,"Name":"Wioska barbarzyƄska","Points":3447,"X":290,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":498483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928331Z"},{"ID":50200,"Name":"Lord Arsey KING","Points":4694,"X":652,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928331Z"},{"ID":50201,"Name":"Avanti!","Points":8341,"X":282,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928331Z"},{"ID":50202,"Name":"115. Dorona","Points":8262,"X":640,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928331Z"},{"ID":50203,"Name":"New World","Points":10295,"X":432,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928332Z"},{"ID":50204,"Name":"o07","Points":9745,"X":610,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928332Z"},{"ID":50205,"Name":"pulapka plemie","Points":2265,"X":681,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928332Z"},{"ID":50206,"Name":"Barba","Points":9825,"X":322,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928332Z"},{"ID":50207,"Name":"006","Points":3560,"X":309,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928333Z"},{"ID":50209,"Name":"018","Points":9994,"X":711,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928333Z"},{"ID":50210,"Name":"Wioska barbarzyƄska","Points":3703,"X":699,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928333Z"},{"ID":50211,"Name":"[0268]","Points":5354,"X":286,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928334Z"},{"ID":50212,"Name":"Wioska barbarzyƄska","Points":6191,"X":526,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":7590135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928334Z"},{"ID":50213,"Name":"076","Points":9668,"X":442,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928334Z"},{"ID":50214,"Name":"New WorldA","Points":3704,"X":280,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928334Z"},{"ID":50216,"Name":"Bigosowy1","Points":10546,"X":679,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":849095800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928335Z"},{"ID":50217,"Name":"XDX","Points":6620,"X":596,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928335Z"},{"ID":50218,"Name":"Wioska barbarzyƄska","Points":5210,"X":399,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928335Z"},{"ID":50219,"Name":"????","Points":9889,"X":478,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928336Z"},{"ID":50220,"Name":"ZƂoty ƚwit","Points":8623,"X":581,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928336Z"},{"ID":50221,"Name":"Psycha Siada","Points":7185,"X":335,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928336Z"},{"ID":50222,"Name":"ZƂoty ƚwit","Points":8663,"X":582,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928337Z"},{"ID":50224,"Name":"048","Points":8312,"X":663,"Y":357,"Continent":"K36","Bonus":9,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928337Z"},{"ID":50225,"Name":"Wioska barbarzyƄska","Points":5672,"X":322,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928337Z"},{"ID":50226,"Name":"Prawie jak oƛka","Points":6066,"X":702,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928337Z"},{"ID":50227,"Name":"#0297 LAROX","Points":5466,"X":462,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928338Z"},{"ID":50228,"Name":"Wioska barbarzyƄska","Points":5756,"X":713,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928338Z"},{"ID":50229,"Name":"076","Points":10495,"X":403,"Y":698,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928338Z"},{"ID":50231,"Name":"W43","Points":1951,"X":695,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928339Z"},{"ID":50233,"Name":"Wioska barbarzyƄska","Points":5687,"X":315,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928339Z"},{"ID":50234,"Name":"Wioska juventino1988","Points":150,"X":360,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699665031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928339Z"},{"ID":50235,"Name":".002. Malediwy","Points":6300,"X":717,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928339Z"},{"ID":50236,"Name":"084","Points":9948,"X":403,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92834Z"},{"ID":50237,"Name":"005","Points":10068,"X":295,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92834Z"},{"ID":50238,"Name":"komandos48","Points":8747,"X":653,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92834Z"},{"ID":50239,"Name":"Szlachcic","Points":6185,"X":364,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928341Z"},{"ID":50240,"Name":"UltraInstynkt","Points":10063,"X":615,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":699710633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928341Z"},{"ID":50241,"Name":"009 bymp","Points":1771,"X":284,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928342Z"},{"ID":50242,"Name":"Komandos","Points":10017,"X":649,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928342Z"},{"ID":50243,"Name":"Wioska3","Points":8589,"X":706,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928343Z"},{"ID":50245,"Name":"Ubrudzona0","Points":5885,"X":624,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928343Z"},{"ID":50246,"Name":"Początek","Points":9374,"X":299,"Y":585,"Continent":"K52","Bonus":9,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928344Z"},{"ID":50247,"Name":"Doba","Points":3817,"X":697,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":849088882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928344Z"},{"ID":50248,"Name":"...","Points":8792,"X":339,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928344Z"},{"ID":50249,"Name":"Wioska KRIS 74 PL","Points":3692,"X":526,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928345Z"},{"ID":50250,"Name":"C092","Points":9285,"X":362,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928346Z"},{"ID":50251,"Name":"056 invidia","Points":7007,"X":548,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928346Z"},{"ID":50252,"Name":"PP020 Liberty Bay","Points":9741,"X":719,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928346Z"},{"ID":50253,"Name":"001","Points":9783,"X":663,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928347Z"},{"ID":50254,"Name":"044.","Points":10838,"X":457,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928347Z"},{"ID":50255,"Name":"050|| Aquila","Points":5247,"X":459,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928347Z"},{"ID":50256,"Name":"Saran3","Points":3598,"X":409,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928347Z"},{"ID":50257,"Name":"0138","Points":3042,"X":367,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928348Z"},{"ID":50258,"Name":"C013","Points":6957,"X":537,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928348Z"},{"ID":50259,"Name":"Lord Arsey KING","Points":5041,"X":654,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928348Z"},{"ID":50260,"Name":"Wioska barbarzyƄska","Points":5492,"X":326,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928349Z"},{"ID":50261,"Name":"005","Points":4533,"X":654,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":848889850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928349Z"},{"ID":50262,"Name":"Adamo 1","Points":9382,"X":581,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":849096768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928349Z"},{"ID":50263,"Name":"041|| Bootes","Points":3182,"X":463,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928349Z"},{"ID":50264,"Name":"Magiczne koszary","Points":9809,"X":480,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92835Z"},{"ID":50265,"Name":"074","Points":7769,"X":718,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92835Z"},{"ID":50266,"Name":"Wioska barbarzyƄska","Points":7427,"X":321,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92835Z"},{"ID":50267,"Name":"Market","Points":963,"X":379,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":849105463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92835Z"},{"ID":50268,"Name":"Wioska mateuszek15517","Points":5067,"X":710,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":7914131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928351Z"},{"ID":50269,"Name":"077. Alalea","Points":8241,"X":691,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928351Z"},{"ID":50270,"Name":"KONFA TO MARKA, NARKA","Points":5259,"X":289,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928351Z"},{"ID":50271,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":290,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928351Z"},{"ID":50272,"Name":"[812] Odludzie","Points":6792,"X":713,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928352Z"},{"ID":50273,"Name":"Mm02","Points":5271,"X":631,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":698442418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928352Z"},{"ID":50274,"Name":"050 sebaseba1991","Points":10160,"X":618,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928352Z"},{"ID":50275,"Name":"MERHET","Points":9953,"X":586,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928352Z"},{"ID":50276,"Name":"--020--","Points":7626,"X":574,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928353Z"},{"ID":50277,"Name":"004","Points":5673,"X":653,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":848889850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928353Z"},{"ID":50278,"Name":"053","Points":7073,"X":677,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928353Z"},{"ID":50279,"Name":"Osada koczownikĂłw","Points":7089,"X":425,"Y":291,"Continent":"K24","Bonus":7,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928353Z"},{"ID":50280,"Name":"- 126 -","Points":7148,"X":546,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928354Z"},{"ID":50281,"Name":"02.ETH","Points":12154,"X":712,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928354Z"},{"ID":50282,"Name":"156","Points":4775,"X":389,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928354Z"},{"ID":50283,"Name":"Wioska barbarzyƄska","Points":6045,"X":526,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928355Z"},{"ID":50284,"Name":"Kurnik","Points":6198,"X":452,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928355Z"},{"ID":50286,"Name":"003:Osada koczownikĂłw","Points":10615,"X":372,"Y":328,"Continent":"K33","Bonus":4,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928355Z"},{"ID":50287,"Name":"Old Town","Points":5549,"X":701,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928356Z"},{"ID":50288,"Name":"Wioska barbarzyƄska","Points":9808,"X":325,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928356Z"},{"ID":50290,"Name":"K42 ADAMUS 003","Points":9563,"X":287,"Y":432,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928356Z"},{"ID":50291,"Name":"KONFA TO MARKA, NARKA","Points":7332,"X":294,"Y":437,"Continent":"K42","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928357Z"},{"ID":50292,"Name":"Wioska barbarzyƄska","Points":4345,"X":301,"Y":588,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928357Z"},{"ID":50293,"Name":"009","Points":4098,"X":298,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928357Z"},{"ID":50294,"Name":"Lord Arsey KING","Points":8913,"X":656,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928357Z"},{"ID":50295,"Name":"###135###","Points":10495,"X":611,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928358Z"},{"ID":50296,"Name":"027","Points":4634,"X":529,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928358Z"},{"ID":50297,"Name":"017","Points":3094,"X":290,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928358Z"},{"ID":50299,"Name":"094","Points":10495,"X":401,"Y":692,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928359Z"},{"ID":50302,"Name":"kww02","Points":5415,"X":719,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928359Z"},{"ID":50303,"Name":"Lord Arsey KING","Points":8758,"X":653,"Y":653,"Continent":"K66","Bonus":7,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928359Z"},{"ID":50304,"Name":"Avanti!","Points":6615,"X":286,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92836Z"},{"ID":50307,"Name":"[0255]","Points":5729,"X":281,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92836Z"},{"ID":50308,"Name":"B-002","Points":4255,"X":308,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92836Z"},{"ID":50309,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":294,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928361Z"},{"ID":50310,"Name":"Twierdza (WZ)","Points":6873,"X":376,"Y":534,"Continent":"K53","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928361Z"},{"ID":50311,"Name":"MojeDnoToWaszSzczyt","Points":6336,"X":486,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928361Z"},{"ID":50312,"Name":"184","Points":8881,"X":410,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928361Z"},{"ID":50313,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":290,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928362Z"},{"ID":50314,"Name":"Taran","Points":7949,"X":310,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928362Z"},{"ID":50315,"Name":"North 026","Points":8182,"X":496,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928362Z"},{"ID":50316,"Name":"035 Lilycove City","Points":5200,"X":722,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928362Z"},{"ID":50318,"Name":"ZƂoty ƚwit","Points":8550,"X":579,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928362Z"},{"ID":50319,"Name":"025 Oldale Town","Points":11109,"X":713,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928363Z"},{"ID":50320,"Name":"C0278","Points":4414,"X":284,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928363Z"},{"ID":50321,"Name":"010 Twierdza","Points":10019,"X":628,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928363Z"},{"ID":50322,"Name":"ƚciernisko","Points":1055,"X":301,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":849076515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928363Z"},{"ID":50323,"Name":"Hillegom","Points":5806,"X":281,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699830255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928364Z"},{"ID":50324,"Name":"011","Points":4896,"X":317,"Y":371,"Continent":"K33","Bonus":2,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928364Z"},{"ID":50325,"Name":"Wioska Tomtrik","Points":10358,"X":326,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928364Z"},{"ID":50327,"Name":"Wiosk","Points":4982,"X":448,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":6955809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928364Z"},{"ID":50328,"Name":"Wioska barbarzyƄska","Points":2441,"X":694,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928365Z"},{"ID":50329,"Name":"181","Points":9488,"X":722,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928365Z"},{"ID":50330,"Name":"03 Punks Not Dead","Points":9447,"X":716,"Y":452,"Continent":"K47","Bonus":1,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928365Z"},{"ID":50331,"Name":"065.","Points":3913,"X":718,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928365Z"},{"ID":50332,"Name":"Taka.","Points":9287,"X":483,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928366Z"},{"ID":50333,"Name":"Cisza","Points":7190,"X":288,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928366Z"},{"ID":50334,"Name":"Wioska 3","Points":6506,"X":655,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928366Z"},{"ID":50335,"Name":"Mniejsze zƂo 0088","Points":5545,"X":312,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928366Z"},{"ID":50336,"Name":"wancki i gustlikk","Points":9737,"X":504,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928367Z"},{"ID":50337,"Name":"Wioska barbarzyƄska","Points":187,"X":655,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928367Z"},{"ID":50338,"Name":"Zaplecze Barba 031","Points":4809,"X":350,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928367Z"},{"ID":50339,"Name":"HOLENDER 4","Points":5434,"X":320,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928368Z"},{"ID":50340,"Name":"OFF","Points":10440,"X":651,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928368Z"},{"ID":50341,"Name":"305","Points":9414,"X":469,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928368Z"},{"ID":50342,"Name":"Wioska barbarzyƄska","Points":1618,"X":720,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928368Z"},{"ID":50343,"Name":"009","Points":5625,"X":293,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928369Z"},{"ID":50344,"Name":"086","Points":6271,"X":719,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928369Z"},{"ID":50345,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8817,"X":550,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928369Z"},{"ID":50346,"Name":"Wioska mateusz16180","Points":101,"X":370,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":6554011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92837Z"},{"ID":50347,"Name":"ElMajkelos VIII","Points":4872,"X":421,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92837Z"},{"ID":50348,"Name":"Wioska barbarzyƄska","Points":2619,"X":591,"Y":307,"Continent":"K35","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92837Z"},{"ID":50349,"Name":"3.Leeds","Points":7015,"X":545,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928371Z"},{"ID":50350,"Name":"003","Points":3147,"X":654,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":848889850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928371Z"},{"ID":50352,"Name":"#K75 0020","Points":4794,"X":522,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928372Z"},{"ID":50353,"Name":"B006","Points":6257,"X":620,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928372Z"},{"ID":50354,"Name":"CastAway #004","Points":10054,"X":704,"Y":585,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928372Z"},{"ID":50355,"Name":"034. Istota wody","Points":2621,"X":501,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928373Z"},{"ID":50356,"Name":"Wioska barbarzyƄska","Points":4353,"X":688,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928373Z"},{"ID":50357,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9744,"X":550,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928373Z"},{"ID":50358,"Name":"0044","Points":2820,"X":464,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928374Z"},{"ID":50359,"Name":"Z001","Points":8035,"X":500,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":8153179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928374Z"},{"ID":50360,"Name":"Osada koczownikĂłw","Points":10178,"X":702,"Y":409,"Continent":"K47","Bonus":3,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928374Z"},{"ID":50361,"Name":"0447","Points":9740,"X":579,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928375Z"},{"ID":50362,"Name":"KONFA TO MARKA, NARKA","Points":8319,"X":287,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928375Z"},{"ID":50363,"Name":"047","Points":3433,"X":633,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928375Z"},{"ID":50364,"Name":"[814] Odludzie","Points":7360,"X":707,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928376Z"},{"ID":50365,"Name":"038 Wioska barbarzyƄska","Points":8731,"X":608,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928376Z"},{"ID":50366,"Name":"Wioska13","Points":7066,"X":706,"Y":582,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928376Z"},{"ID":50367,"Name":"009 - Budowanko!","Points":7587,"X":493,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928376Z"},{"ID":50368,"Name":"Wioska barbarzyƄska","Points":1221,"X":715,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928376Z"},{"ID":50369,"Name":"085.Stradi","Points":10072,"X":430,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928377Z"},{"ID":50370,"Name":"015","Points":8988,"X":287,"Y":556,"Continent":"K52","Bonus":6,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928377Z"},{"ID":50371,"Name":"Lord Arsey KING","Points":6651,"X":659,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928377Z"},{"ID":50372,"Name":".achim.","Points":6830,"X":486,"Y":282,"Continent":"K24","Bonus":5,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928377Z"},{"ID":50374,"Name":"Wioska barbarzyƄska","Points":1773,"X":422,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928378Z"},{"ID":50375,"Name":"KRÓL PAPI WIELKI","Points":6314,"X":689,"Y":530,"Continent":"K56","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928378Z"},{"ID":50376,"Name":"FAKE OR OFF","Points":9822,"X":405,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928378Z"},{"ID":50377,"Name":"Szlachcic","Points":5789,"X":357,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928378Z"},{"ID":50378,"Name":"Wyspa 034","Points":2156,"X":290,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928379Z"},{"ID":50379,"Name":"KRÓL PAPI WIELKI","Points":8022,"X":649,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928379Z"},{"ID":50380,"Name":"Wioska barbarzyƄska","Points":1507,"X":717,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928379Z"},{"ID":50381,"Name":"Wioska jajoasia","Points":782,"X":632,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8720321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928379Z"},{"ID":50382,"Name":"005 Gąsawa","Points":4801,"X":286,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":9235561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92838Z"},{"ID":50383,"Name":"Wioska barbarzyƄska","Points":2373,"X":279,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92838Z"},{"ID":50384,"Name":"1x2 Wioska barbarzyƄska","Points":7013,"X":569,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92838Z"},{"ID":50385,"Name":"#0075","Points":4310,"X":571,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92838Z"},{"ID":50386,"Name":"=078= BORSUK MEGA","Points":7963,"X":706,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928381Z"},{"ID":50387,"Name":"ZZZ","Points":6279,"X":459,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928381Z"},{"ID":50388,"Name":"Wioseczka0","Points":5731,"X":622,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928381Z"},{"ID":50389,"Name":"Incursio","Points":9979,"X":697,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928381Z"},{"ID":50390,"Name":"ZƂoty ƚwit","Points":7139,"X":581,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928382Z"},{"ID":50392,"Name":"19. Brokilon","Points":9642,"X":720,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928382Z"},{"ID":50393,"Name":"Wioska barbarzyƄska","Points":7232,"X":518,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":8240677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928382Z"},{"ID":50394,"Name":"EO EO","Points":10083,"X":294,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928382Z"},{"ID":50395,"Name":"D009","Points":4305,"X":559,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928383Z"},{"ID":50397,"Name":"Kurnik","Points":10064,"X":463,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928383Z"},{"ID":50398,"Name":"K35 - [003] Before Land","Points":9783,"X":590,"Y":301,"Continent":"K35","Bonus":1,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928383Z"},{"ID":50399,"Name":"Wioska majku 2","Points":3407,"X":416,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928383Z"},{"ID":50400,"Name":"0072","Points":5466,"X":701,"Y":413,"Continent":"K47","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928384Z"},{"ID":50401,"Name":"EO EO","Points":10495,"X":285,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928384Z"},{"ID":50402,"Name":"[802] Odludzie","Points":9036,"X":713,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928384Z"},{"ID":50403,"Name":"MojeDnoToWaszSzczyt","Points":9955,"X":500,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928384Z"},{"ID":50404,"Name":"Początek","Points":2505,"X":298,"Y":584,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928385Z"},{"ID":50405,"Name":"037 Wioska barbarzyƄska","Points":9835,"X":544,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928385Z"},{"ID":50406,"Name":"FAKE OR OFF","Points":10390,"X":434,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928385Z"},{"ID":50407,"Name":"C.039","Points":4678,"X":716,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928385Z"},{"ID":50408,"Name":"014","Points":3601,"X":305,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928386Z"},{"ID":50409,"Name":"095.Stradi","Points":9738,"X":440,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928386Z"},{"ID":50410,"Name":"C0279","Points":4192,"X":283,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928386Z"},{"ID":50411,"Name":"ZZZ .::. cinek3456/01","Points":9984,"X":585,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928386Z"},{"ID":50412,"Name":"Wyspa 014","Points":2746,"X":292,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928387Z"},{"ID":50413,"Name":"Szlachcic","Points":6606,"X":364,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928387Z"},{"ID":50414,"Name":"C0162","Points":9487,"X":323,"Y":538,"Continent":"K53","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928387Z"},{"ID":50415,"Name":"Uklejka","Points":7608,"X":331,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928387Z"},{"ID":50416,"Name":"061","Points":10495,"X":403,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928388Z"},{"ID":50417,"Name":"Taran","Points":7079,"X":311,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928388Z"},{"ID":50418,"Name":"003 czekam na odp","Points":4720,"X":535,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928388Z"},{"ID":50419,"Name":"0008 Wioska kosiarziii","Points":9933,"X":495,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928388Z"},{"ID":50420,"Name":"KRÓL PAPI WIELKI","Points":6677,"X":719,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928389Z"},{"ID":50421,"Name":"100. Bana","Points":8713,"X":625,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928389Z"},{"ID":50422,"Name":"Wioska 0006","Points":10311,"X":342,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928389Z"},{"ID":50423,"Name":"025","Points":3674,"X":688,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92839Z"},{"ID":50424,"Name":"Wioska barbarzyƄska","Points":5606,"X":724,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92839Z"},{"ID":50425,"Name":"001","Points":10311,"X":534,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92839Z"},{"ID":50426,"Name":"Tomekrol 3","Points":5890,"X":698,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849096334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92839Z"},{"ID":50427,"Name":".achim.","Points":5140,"X":484,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928391Z"},{"ID":50428,"Name":"Wioska barbarzyƄska","Points":9110,"X":717,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928391Z"},{"ID":50429,"Name":"003","Points":4658,"X":590,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928391Z"},{"ID":50430,"Name":"036 Osada koczownikĂłw","Points":10053,"X":606,"Y":688,"Continent":"K66","Bonus":7,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928391Z"},{"ID":50431,"Name":"Podbitek","Points":8011,"X":690,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928392Z"},{"ID":50432,"Name":"Ave Why!","Points":2839,"X":506,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928392Z"},{"ID":50433,"Name":"002","Points":9555,"X":466,"Y":712,"Continent":"K74","Bonus":5,"PlayerID":699725436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928393Z"},{"ID":50434,"Name":"Wioska barbarzyƄska","Points":7109,"X":711,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928393Z"},{"ID":50435,"Name":"[0256]","Points":5856,"X":284,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928393Z"},{"ID":50436,"Name":"-12-","Points":8982,"X":580,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928393Z"},{"ID":50437,"Name":"Wioska barbarzyƄska","Points":7429,"X":321,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928393Z"},{"ID":50438,"Name":"035","Points":10495,"X":401,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928394Z"},{"ID":50439,"Name":"New World","Points":10291,"X":422,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928394Z"},{"ID":50440,"Name":"[806] Odludzie","Points":8334,"X":712,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928394Z"},{"ID":50441,"Name":"komandos","Points":10032,"X":619,"Y":678,"Continent":"K66","Bonus":2,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928394Z"},{"ID":50442,"Name":"013","Points":9852,"X":306,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928395Z"},{"ID":50443,"Name":"MojeDnoToWaszSzczyt","Points":9850,"X":492,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928395Z"},{"ID":50444,"Name":"_PUSTA","Points":7150,"X":655,"Y":603,"Continent":"K66","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928395Z"},{"ID":50445,"Name":"ZƂoty ƚwit","Points":9918,"X":594,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928395Z"},{"ID":50446,"Name":"Wioska barbarzyƄska","Points":9638,"X":576,"Y":586,"Continent":"K55","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928396Z"},{"ID":50447,"Name":"O032","Points":9907,"X":333,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928396Z"},{"ID":50448,"Name":"Gran Canaria","Points":3840,"X":372,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":947564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928396Z"},{"ID":50449,"Name":"Kurnik","Points":1972,"X":448,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928396Z"},{"ID":50450,"Name":"wioska","Points":6936,"X":637,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928397Z"},{"ID":50451,"Name":"K42 ADAMUS 002","Points":9172,"X":287,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928397Z"},{"ID":50452,"Name":"WOLA0002","Points":5955,"X":680,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928397Z"},{"ID":50453,"Name":"Wioska barbarzyƄska","Points":4149,"X":650,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928397Z"},{"ID":50454,"Name":"010","Points":3579,"X":659,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928398Z"},{"ID":50456,"Name":"003. Capricciosa","Points":3675,"X":322,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928398Z"},{"ID":50457,"Name":"001","Points":12154,"X":696,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":7409475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928398Z"},{"ID":50458,"Name":"bnnnn","Points":2023,"X":278,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928398Z"},{"ID":50459,"Name":"Brak nazwy","Points":12154,"X":357,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928399Z"},{"ID":50460,"Name":"Wioska barbarzyƄska","Points":2590,"X":669,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699580120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928399Z"},{"ID":50461,"Name":"Kurnik","Points":8162,"X":450,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928399Z"},{"ID":50462,"Name":"HWILA /1/","Points":6471,"X":629,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928399Z"},{"ID":50463,"Name":"FP036","Points":5751,"X":473,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9284Z"},{"ID":50464,"Name":"Wioska barbarzyƄska","Points":2246,"X":690,"Y":604,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9284Z"},{"ID":50465,"Name":"Trollsonix","Points":8597,"X":335,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849103148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9284Z"},{"ID":50466,"Name":"Zaplecze Barba 025","Points":6316,"X":351,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9284Z"},{"ID":50467,"Name":"BRICKLEBERRY","Points":10375,"X":526,"Y":282,"Continent":"K25","Bonus":5,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9284Z"},{"ID":50468,"Name":"008 - Budowanko!","Points":6614,"X":492,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928401Z"},{"ID":50469,"Name":"=114= Acoma Pueblo","Points":4107,"X":705,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928401Z"},{"ID":50470,"Name":"Wioska barbarzyƄska","Points":6678,"X":709,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928401Z"},{"ID":50471,"Name":"Wioska barbarzyƄska","Points":4383,"X":617,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928401Z"},{"ID":50472,"Name":"Wioska Szaniec","Points":2199,"X":515,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":698934729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928402Z"},{"ID":50473,"Name":"Kurnik","Points":10252,"X":468,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928402Z"},{"ID":50474,"Name":"Wioska Bochun10","Points":11130,"X":337,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928402Z"},{"ID":50475,"Name":"ZƂoty ƚwit","Points":9629,"X":597,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928402Z"},{"ID":50477,"Name":"C067","Points":4941,"X":359,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928403Z"},{"ID":50478,"Name":"*004*","Points":8994,"X":686,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928403Z"},{"ID":50479,"Name":"komandos","Points":5530,"X":667,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928403Z"},{"ID":50480,"Name":"W44","Points":1304,"X":698,"Y":411,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928403Z"},{"ID":50481,"Name":"North K25","Points":2702,"X":530,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928403Z"},{"ID":50483,"Name":"Wioska barbarzyƄska","Points":8714,"X":682,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928404Z"},{"ID":50484,"Name":"W45","Points":2139,"X":688,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928404Z"},{"ID":50485,"Name":"o008","Points":9744,"X":611,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928404Z"},{"ID":50486,"Name":"017","Points":10484,"X":306,"Y":608,"Continent":"K63","Bonus":2,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928404Z"},{"ID":50488,"Name":"Wioska barbarzyƄska","Points":7397,"X":714,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928405Z"},{"ID":50489,"Name":"187...Segador","Points":10787,"X":431,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928405Z"},{"ID":50490,"Name":"021","Points":9976,"X":563,"Y":642,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928405Z"},{"ID":50491,"Name":"Wioska barbarzyƄska","Points":5961,"X":421,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928405Z"},{"ID":50492,"Name":"303","Points":7377,"X":471,"Y":281,"Continent":"K24","Bonus":5,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928406Z"},{"ID":50493,"Name":"HWILA [3]","Points":4420,"X":629,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928406Z"},{"ID":50494,"Name":"Wioska barbarzyƄska","Points":5411,"X":319,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928406Z"},{"ID":50495,"Name":"308","Points":6309,"X":448,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928406Z"},{"ID":50496,"Name":"011","Points":2745,"X":663,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928406Z"},{"ID":50497,"Name":"Wioska Daria 201","Points":5935,"X":535,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":3027589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928407Z"},{"ID":50498,"Name":"Avanti!","Points":6455,"X":284,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928407Z"},{"ID":50499,"Name":"New WorldA","Points":3918,"X":280,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928407Z"},{"ID":50500,"Name":"EO EO","Points":10019,"X":283,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928407Z"},{"ID":50501,"Name":"xxx","Points":8782,"X":538,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928408Z"},{"ID":50502,"Name":"Wioska barbarzyƄska","Points":5084,"X":642,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928408Z"},{"ID":50503,"Name":"Didek","Points":10475,"X":685,"Y":583,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928408Z"},{"ID":50504,"Name":"Wioska 4","Points":3899,"X":652,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928408Z"},{"ID":50505,"Name":"1v9 machine","Points":10019,"X":384,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928409Z"},{"ID":50506,"Name":"014","Points":6801,"X":525,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928409Z"},{"ID":50507,"Name":"Wioska Adamek95","Points":8944,"X":375,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928409Z"},{"ID":50508,"Name":"Wioska barbarzyƄska","Points":8496,"X":709,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928409Z"},{"ID":50509,"Name":"Osada 11","Points":10845,"X":700,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92841Z"},{"ID":50510,"Name":"023 A","Points":3479,"X":685,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92841Z"},{"ID":50511,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":291,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92841Z"},{"ID":50512,"Name":"003 Eudona","Points":8522,"X":672,"Y":635,"Continent":"K66","Bonus":6,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928411Z"},{"ID":50513,"Name":"074","Points":3969,"X":633,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928411Z"},{"ID":50514,"Name":"005","Points":1932,"X":526,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928412Z"},{"ID":50515,"Name":"Wioska pinokio","Points":3375,"X":433,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849097373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928412Z"},{"ID":50516,"Name":"Taran","Points":9348,"X":313,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928412Z"},{"ID":50517,"Name":"016 Osada koczownikĂłw","Points":10068,"X":545,"Y":285,"Continent":"K25","Bonus":8,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928413Z"},{"ID":50520,"Name":"14 WƁAM","Points":9660,"X":718,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928413Z"},{"ID":50521,"Name":"MojeDnoToWaszSzczyt","Points":9824,"X":510,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928413Z"},{"ID":50522,"Name":"Wioska barbarzyƄska","Points":9006,"X":375,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928414Z"},{"ID":50524,"Name":"Avanti!","Points":3356,"X":279,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928414Z"},{"ID":50525,"Name":"No Way","Points":6729,"X":350,"Y":462,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928414Z"},{"ID":50526,"Name":"0007","Points":6115,"X":576,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928415Z"},{"ID":50527,"Name":"B17","Points":7739,"X":646,"Y":446,"Continent":"K46","Bonus":0,"PlayerID":849093742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928415Z"},{"ID":50528,"Name":"###136###","Points":10495,"X":595,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928415Z"},{"ID":50529,"Name":"002","Points":5065,"X":406,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928415Z"},{"ID":50530,"Name":"--028--","Points":6595,"X":571,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928416Z"},{"ID":50531,"Name":"Wioska barbarzyƄska","Points":1188,"X":688,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928416Z"},{"ID":50532,"Name":"MojeDnoToWaszSzczyt","Points":9966,"X":497,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928416Z"},{"ID":50533,"Name":"064 invidia","Points":6236,"X":542,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928417Z"},{"ID":50534,"Name":"028","Points":9447,"X":533,"Y":671,"Continent":"K65","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928417Z"},{"ID":50535,"Name":"Zachodnia StraĆŒnica","Points":7062,"X":704,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928417Z"},{"ID":50536,"Name":"PóƂnocny Bagdad","Points":8971,"X":620,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928417Z"},{"ID":50537,"Name":"082","Points":7156,"X":717,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928418Z"},{"ID":50538,"Name":"0082","Points":2829,"X":692,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928418Z"},{"ID":50539,"Name":"PiekƂo to inni","Points":5645,"X":638,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928418Z"},{"ID":50540,"Name":"Lord Arsey KING","Points":9014,"X":655,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928419Z"},{"ID":50541,"Name":"qqqqq3","Points":3233,"X":284,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928419Z"},{"ID":50542,"Name":"014","Points":10160,"X":722,"Y":498,"Continent":"K47","Bonus":1,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928419Z"},{"ID":50543,"Name":"0009 Marysin","Points":9820,"X":496,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92842Z"},{"ID":50544,"Name":"[0257]","Points":5806,"X":280,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92842Z"},{"ID":50545,"Name":"X010","Points":6634,"X":710,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92842Z"},{"ID":50546,"Name":"C039","Points":7812,"X":355,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928421Z"},{"ID":50547,"Name":"XDX","Points":7002,"X":612,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928421Z"},{"ID":50548,"Name":"Trzebiatkowa","Points":2785,"X":461,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":849101116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928421Z"},{"ID":50549,"Name":"LENI***","Points":6494,"X":700,"Y":415,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928421Z"},{"ID":50550,"Name":"Flange 9000","Points":6127,"X":354,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928422Z"},{"ID":50552,"Name":"023. elli38","Points":6718,"X":685,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928422Z"},{"ID":50553,"Name":"Sernik z Andzynkami","Points":10107,"X":714,"Y":507,"Continent":"K57","Bonus":4,"PlayerID":699126484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928422Z"},{"ID":50554,"Name":"Bagno 44","Points":5975,"X":476,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928423Z"},{"ID":50555,"Name":"Wioska barbarzyƄska","Points":4597,"X":705,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928423Z"},{"ID":50556,"Name":"Wioska barbarzyƄska 017","Points":6328,"X":386,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928423Z"},{"ID":50557,"Name":".achim.","Points":9382,"X":535,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928423Z"},{"ID":50558,"Name":"New WorldA","Points":1997,"X":288,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928424Z"},{"ID":50559,"Name":"[0164]","Points":8105,"X":458,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928424Z"},{"ID":50560,"Name":"Wioska barbarzyƄska","Points":3299,"X":387,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928424Z"},{"ID":50561,"Name":"Wioska barbarzyƄska","Points":2823,"X":545,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928424Z"},{"ID":50562,"Name":"Zzz 01 jem ƛniadanie","Points":4635,"X":295,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928425Z"},{"ID":50563,"Name":"Wioska barbarzyƄska","Points":3241,"X":304,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928425Z"},{"ID":50564,"Name":"Wioska MrPaullus","Points":8968,"X":529,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928425Z"},{"ID":50565,"Name":"XDX","Points":5717,"X":599,"Y":309,"Continent":"K35","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928426Z"},{"ID":50566,"Name":"Wancki","Points":9899,"X":526,"Y":280,"Continent":"K25","Bonus":4,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928426Z"},{"ID":50567,"Name":"wy...m","Points":4742,"X":598,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928426Z"},{"ID":50568,"Name":"Taran","Points":7080,"X":317,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928426Z"},{"ID":50569,"Name":"2. Ellander","Points":6543,"X":603,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928427Z"},{"ID":50570,"Name":"komandos48","Points":9802,"X":640,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928427Z"},{"ID":50571,"Name":"Wioska barbarzyƄska","Points":4135,"X":724,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928427Z"},{"ID":50572,"Name":"Wioska Pracz 9","Points":2435,"X":311,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928427Z"},{"ID":50573,"Name":"Flap","Points":7429,"X":601,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928428Z"},{"ID":50574,"Name":"...","Points":2432,"X":337,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928428Z"},{"ID":50575,"Name":"[0152]","Points":8692,"X":280,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928428Z"},{"ID":50576,"Name":"054","Points":10318,"X":717,"Y":513,"Continent":"K57","Bonus":1,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928429Z"},{"ID":50577,"Name":"Taran","Points":8796,"X":309,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928429Z"},{"ID":50578,"Name":"Wioska barbarzyƄska","Points":9017,"X":697,"Y":416,"Continent":"K46","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928429Z"},{"ID":50579,"Name":"sh04","Points":5500,"X":513,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92843Z"},{"ID":50580,"Name":"001","Points":9489,"X":611,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92843Z"},{"ID":50581,"Name":"C094","Points":7406,"X":359,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92843Z"},{"ID":50582,"Name":"Wioska-009-","Points":4051,"X":634,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":7675610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92843Z"},{"ID":50583,"Name":"Bagno 30","Points":7253,"X":479,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928431Z"},{"ID":50584,"Name":"Psycha Siada","Points":8180,"X":335,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928431Z"},{"ID":50585,"Name":"089. ALFI","Points":494,"X":470,"Y":575,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928431Z"},{"ID":50586,"Name":"StatePchelka","Points":7040,"X":283,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928431Z"},{"ID":50587,"Name":"Albus Lepus","Points":8693,"X":524,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928432Z"},{"ID":50588,"Name":"PiekƂo to inni","Points":7243,"X":642,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928432Z"},{"ID":50589,"Name":"06 wioska","Points":2536,"X":633,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928432Z"},{"ID":50590,"Name":"001","Points":7626,"X":290,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928433Z"},{"ID":50591,"Name":"112","Points":5719,"X":593,"Y":670,"Continent":"K65","Bonus":0,"PlayerID":849097799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928433Z"},{"ID":50592,"Name":"KRÓL PAPI WIELKI","Points":6305,"X":718,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928434Z"},{"ID":50594,"Name":"Ć»UBEREK 007","Points":6409,"X":614,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928434Z"},{"ID":50595,"Name":"181","Points":9337,"X":581,"Y":619,"Continent":"K65","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928434Z"},{"ID":50597,"Name":"048","Points":3201,"X":629,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928435Z"},{"ID":50598,"Name":"QQQQ","Points":4790,"X":283,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928435Z"},{"ID":50599,"Name":"009","Points":6326,"X":606,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928435Z"},{"ID":50600,"Name":"001f","Points":7717,"X":299,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928436Z"},{"ID":50601,"Name":"[010]","Points":6953,"X":456,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928436Z"},{"ID":50602,"Name":"012","Points":480,"X":651,"Y":339,"Continent":"K36","Bonus":2,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928436Z"},{"ID":50603,"Name":"--043--","Points":9783,"X":577,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928437Z"},{"ID":50604,"Name":"005","Points":8598,"X":299,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928437Z"},{"ID":50605,"Name":"Jehu_Kingdom_61","Points":2784,"X":628,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928438Z"},{"ID":50606,"Name":"Wioska barbarzyƄska","Points":4255,"X":705,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928439Z"},{"ID":50607,"Name":"03.XRP","Points":12154,"X":713,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928439Z"},{"ID":50608,"Name":"Klaudek25","Points":951,"X":633,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92844Z"},{"ID":50609,"Name":"070","Points":10026,"X":399,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92844Z"},{"ID":50610,"Name":"KONFA TO MARKA, NARKA","Points":6836,"X":291,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928441Z"},{"ID":50612,"Name":"Wioska barbarzyƄska","Points":5638,"X":416,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928442Z"},{"ID":50614,"Name":"Yoto0","Points":4314,"X":621,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928442Z"},{"ID":50615,"Name":"OFF","Points":10343,"X":655,"Y":661,"Continent":"K66","Bonus":4,"PlayerID":849014413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928443Z"},{"ID":50619,"Name":"B007","Points":9740,"X":627,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928444Z"},{"ID":50621,"Name":"012 pogromca barbakĂłw","Points":5566,"X":532,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928444Z"},{"ID":50623,"Name":"Wioska barbarzyƄska","Points":5128,"X":398,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928445Z"},{"ID":50624,"Name":"175","Points":7612,"X":381,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928445Z"},{"ID":50625,"Name":"=094= Wioska barbarzyƄska","Points":3430,"X":701,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928446Z"},{"ID":50626,"Name":"008","Points":5034,"X":616,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928446Z"},{"ID":50627,"Name":"ZƂoty ƚwit","Points":10405,"X":594,"Y":303,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928447Z"},{"ID":50628,"Name":"Wioska barbarzyƄska","Points":8060,"X":431,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928447Z"},{"ID":50629,"Name":"Wioska barbarzyƄska","Points":699,"X":338,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928448Z"},{"ID":50630,"Name":"Wioska001","Points":9724,"X":346,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928448Z"},{"ID":50631,"Name":"Bremervoord","Points":9829,"X":555,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928449Z"},{"ID":50632,"Name":"Sekunda","Points":5689,"X":705,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928449Z"},{"ID":50633,"Name":"Avanti!","Points":6532,"X":287,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92845Z"},{"ID":50634,"Name":"121","Points":8335,"X":392,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928451Z"},{"ID":50635,"Name":"o08","Points":9547,"X":613,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928451Z"},{"ID":50636,"Name":"rafisonik11","Points":5454,"X":516,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928451Z"},{"ID":50637,"Name":"ZƂoty ƚwit","Points":10634,"X":605,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928452Z"},{"ID":50638,"Name":"Psycha Siada","Points":7848,"X":339,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928452Z"},{"ID":50639,"Name":"Lord Arsey KING","Points":7116,"X":658,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928452Z"},{"ID":50640,"Name":"Bagno 10","Points":9401,"X":484,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928453Z"},{"ID":50641,"Name":"Wioska barbarzyƄska","Points":9742,"X":324,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928453Z"},{"ID":50642,"Name":"163...I","Points":5617,"X":391,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928453Z"},{"ID":50643,"Name":"Wyspa 019","Points":4318,"X":298,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928454Z"},{"ID":50644,"Name":"061 invidia","Points":6079,"X":541,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928454Z"},{"ID":50645,"Name":"New World","Points":9354,"X":420,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928454Z"},{"ID":50646,"Name":"AAA","Points":9356,"X":541,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928454Z"},{"ID":50648,"Name":"Wioska barbarzyƄska","Points":3907,"X":391,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928455Z"},{"ID":50649,"Name":"Wioska barbarzyƄska 013","Points":4840,"X":386,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928455Z"},{"ID":50650,"Name":"009 Twierdza","Points":10019,"X":631,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928455Z"},{"ID":50651,"Name":"Betelgeza","Points":6157,"X":284,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849101647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928455Z"},{"ID":50652,"Name":"[801] Odludzie","Points":8578,"X":709,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928456Z"},{"ID":50653,"Name":"016. Wioska barbarzyƄska","Points":8032,"X":683,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928456Z"},{"ID":50654,"Name":"PóƂnocny Bagdad","Points":9835,"X":617,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928456Z"},{"ID":50655,"Name":"[0258]","Points":5762,"X":280,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928457Z"},{"ID":50656,"Name":"elisea","Points":2327,"X":644,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849048734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928457Z"},{"ID":50657,"Name":"034. Hermon","Points":7350,"X":711,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928457Z"},{"ID":50658,"Name":"bucksbarzyƄskamiiiru","Points":4308,"X":325,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":848955783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928457Z"},{"ID":50659,"Name":"Wioska Aga22011993","Points":6677,"X":331,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928458Z"},{"ID":50660,"Name":"003 - Budowanko!","Points":10207,"X":491,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928458Z"},{"ID":50661,"Name":"North 014","Points":10126,"X":504,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928458Z"},{"ID":50662,"Name":"New World","Points":7459,"X":436,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928459Z"},{"ID":50664,"Name":"Wyspa 004","Points":10495,"X":292,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928459Z"},{"ID":50666,"Name":"Wioska barbarzyƄska","Points":7292,"X":411,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928463Z"},{"ID":50667,"Name":"BETI 014","Points":2033,"X":456,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928463Z"},{"ID":50668,"Name":"--021--","Points":6916,"X":575,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928464Z"},{"ID":50669,"Name":"K42 ADAMUS 001","Points":9326,"X":287,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928464Z"},{"ID":50670,"Name":"#K75 0032","Points":5868,"X":520,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928464Z"},{"ID":50671,"Name":"Wioska barbarzyƄska","Points":3002,"X":564,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928465Z"},{"ID":50672,"Name":"XDX","Points":6722,"X":613,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928465Z"},{"ID":50673,"Name":"Komandos","Points":5617,"X":646,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928465Z"},{"ID":50674,"Name":"Mniejsze zƂo 0084","Points":5160,"X":316,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928465Z"},{"ID":50676,"Name":"Bagno 16","Points":8595,"X":485,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928466Z"},{"ID":50677,"Name":"181.01","Points":10986,"X":365,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":848931321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928466Z"},{"ID":50678,"Name":"=095= Wioska barbarzyƄska","Points":5573,"X":699,"Y":596,"Continent":"K56","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928466Z"},{"ID":50679,"Name":"3.Newcastle upon Tyne","Points":5621,"X":549,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928467Z"},{"ID":50680,"Name":"Wioska barbarzyƄska","Points":6422,"X":576,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928467Z"},{"ID":50681,"Name":"Na KraƄcu ƚwiata 005","Points":10252,"X":643,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928468Z"},{"ID":50682,"Name":"117","Points":8138,"X":394,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928468Z"},{"ID":50684,"Name":"Barba","Points":8292,"X":323,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928468Z"},{"ID":50685,"Name":"[177]","Points":4988,"X":699,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928468Z"},{"ID":50686,"Name":"KONFA TO MARKA, NARKA","Points":9364,"X":285,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928469Z"},{"ID":50687,"Name":"Wioska Misiaczka69","Points":3621,"X":551,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849085293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928469Z"},{"ID":50688,"Name":"Wioska barbarzyƄska","Points":4639,"X":708,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928469Z"},{"ID":50689,"Name":"Wancki","Points":9861,"X":515,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92847Z"},{"ID":50690,"Name":"Cisza","Points":2520,"X":288,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92847Z"},{"ID":50691,"Name":"D026","Points":7375,"X":565,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928471Z"},{"ID":50692,"Name":"=HB=","Points":4441,"X":699,"Y":418,"Continent":"K46","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928471Z"},{"ID":50694,"Name":"Bagno 21","Points":7895,"X":483,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928472Z"},{"ID":50695,"Name":"###137###","Points":10495,"X":607,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928472Z"},{"ID":50696,"Name":"029","Points":10160,"X":576,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928473Z"},{"ID":50697,"Name":"Wioska x","Points":2284,"X":658,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928473Z"},{"ID":50698,"Name":"Podworko","Points":2899,"X":659,"Y":355,"Continent":"K36","Bonus":5,"PlayerID":848924219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928473Z"},{"ID":50699,"Name":"Wioska","Points":1334,"X":712,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":699034094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928474Z"},{"ID":50700,"Name":"036|| Coma Berenices","Points":3500,"X":457,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928474Z"},{"ID":50701,"Name":"Zaplecze Barba 021","Points":6805,"X":370,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928475Z"},{"ID":50702,"Name":"0010","Points":6362,"X":576,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928476Z"},{"ID":50703,"Name":"Wioska 7","Points":4226,"X":652,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928476Z"},{"ID":50705,"Name":"014","Points":4418,"X":294,"Y":427,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928477Z"},{"ID":50706,"Name":"181","Points":9544,"X":673,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928477Z"},{"ID":50707,"Name":"AAA","Points":8891,"X":312,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928477Z"},{"ID":50708,"Name":"Parking3","Points":8967,"X":631,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928478Z"},{"ID":50709,"Name":"#0252 Taki Pan dar","Points":5571,"X":468,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928478Z"},{"ID":50710,"Name":"Wioska barbarzyƄska","Points":5286,"X":367,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928479Z"},{"ID":50711,"Name":"Wioska barbarzyƄska","Points":3444,"X":291,"Y":574,"Continent":"K52","Bonus":0,"PlayerID":498483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928479Z"},{"ID":50712,"Name":"Didek","Points":9855,"X":676,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":849070946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92848Z"},{"ID":50713,"Name":"Wioska barbarzyƄska","Points":2127,"X":524,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92848Z"},{"ID":50714,"Name":"004","Points":6280,"X":324,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928481Z"},{"ID":50715,"Name":"Zeta Reticuli O","Points":9245,"X":416,"Y":326,"Continent":"K34","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928481Z"},{"ID":50716,"Name":"FAKE OR OFF","Points":9817,"X":409,"Y":307,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928481Z"},{"ID":50717,"Name":"001","Points":10559,"X":282,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928482Z"},{"ID":50718,"Name":"097","Points":9918,"X":543,"Y":503,"Continent":"K55","Bonus":0,"PlayerID":699351301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928482Z"},{"ID":50719,"Name":"082 Wioska barbarzyƄska","Points":8783,"X":537,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928483Z"},{"ID":50720,"Name":"11 HerrMrozio..","Points":10287,"X":294,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928483Z"},{"ID":50721,"Name":"Wioska3 barbarzyƄska","Points":5132,"X":703,"Y":408,"Continent":"K47","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928483Z"},{"ID":50722,"Name":"Wioska barbarzyƄska","Points":7168,"X":565,"Y":288,"Continent":"K25","Bonus":5,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928484Z"},{"ID":50723,"Name":"013","Points":3830,"X":664,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928484Z"},{"ID":50725,"Name":"Wioska barbarzyƄska II","Points":5812,"X":277,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928485Z"},{"ID":50726,"Name":"Wioska barbarzyƄska","Points":8351,"X":423,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928485Z"},{"ID":50727,"Name":"PóƂnocny Bagdad","Points":9835,"X":618,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928486Z"},{"ID":50728,"Name":"MaraczxD","Points":12154,"X":354,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928486Z"},{"ID":50729,"Name":"049","Points":3557,"X":633,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928487Z"},{"ID":50730,"Name":"K33","Points":1599,"X":313,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928487Z"},{"ID":50731,"Name":"Szlachcic","Points":5233,"X":362,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928488Z"},{"ID":50732,"Name":"Osada koczownikĂłw","Points":9932,"X":722,"Y":529,"Continent":"K57","Bonus":1,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928488Z"},{"ID":50734,"Name":"Kurnik","Points":5677,"X":442,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928488Z"},{"ID":50735,"Name":"A-3","Points":3639,"X":672,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928489Z"},{"ID":50736,"Name":"087.Stradi","Points":9563,"X":435,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928489Z"},{"ID":50737,"Name":"Wioska - 001 -","Points":3688,"X":535,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928489Z"},{"ID":50738,"Name":"Wioska barbarzyƄska","Points":4236,"X":721,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92849Z"},{"ID":50739,"Name":"1x3 Wioska barbarzyƄska","Points":6687,"X":570,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92849Z"},{"ID":50740,"Name":"0136","Points":5608,"X":366,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928491Z"},{"ID":50741,"Name":"KUKA","Points":4851,"X":285,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928491Z"},{"ID":50742,"Name":"092 Wioska barbarzyƄska","Points":6103,"X":542,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928491Z"},{"ID":50743,"Name":"[0259]","Points":5546,"X":284,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928492Z"},{"ID":50744,"Name":"Harsz","Points":10624,"X":697,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928492Z"},{"ID":50745,"Name":"Wioska barbarzyƄska","Points":3761,"X":276,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928492Z"},{"ID":50746,"Name":"038 Wioska barbarzyƄska","Points":9899,"X":542,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928492Z"},{"ID":50747,"Name":"=029= Wioska barbarzyƄska","Points":9626,"X":707,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928493Z"},{"ID":50748,"Name":"040 Wioska barbarzyƄska","Points":8142,"X":604,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928493Z"},{"ID":50749,"Name":"064","Points":7256,"X":715,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928493Z"},{"ID":50750,"Name":"FAKE OR OFF","Points":9812,"X":409,"Y":303,"Continent":"K34","Bonus":4,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928494Z"},{"ID":50751,"Name":"III. Sucha Psina","Points":4795,"X":366,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849101893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928494Z"},{"ID":50752,"Name":"Zakazany las","Points":1397,"X":485,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928494Z"},{"ID":50753,"Name":"Wioska barbarzyƄska","Points":9710,"X":431,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928495Z"},{"ID":50754,"Name":"KONFA TO MARKA, NARKA","Points":5487,"X":291,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928495Z"},{"ID":50755,"Name":"A#042","Points":7388,"X":721,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928496Z"},{"ID":50756,"Name":"Barba","Points":9825,"X":322,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928496Z"},{"ID":50757,"Name":"113","Points":5617,"X":691,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928496Z"},{"ID":50758,"Name":"#0304 kawskole","Points":3942,"X":443,"Y":283,"Continent":"K24","Bonus":5,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928497Z"},{"ID":50759,"Name":"New WorldA","Points":2678,"X":284,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928497Z"},{"ID":50760,"Name":"ChciaƂabym","Points":2361,"X":351,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928498Z"},{"ID":50761,"Name":"003","Points":4382,"X":695,"Y":403,"Continent":"K46","Bonus":0,"PlayerID":7409475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928498Z"},{"ID":50762,"Name":"Avanti!","Points":5440,"X":285,"Y":486,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928498Z"},{"ID":50763,"Name":"Wioska barbarzyƄska","Points":6443,"X":427,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928498Z"},{"ID":50764,"Name":"ZƂoty ƚwit","Points":9812,"X":587,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928499Z"},{"ID":50765,"Name":"MojeDnoToWaszSzczyt","Points":5727,"X":487,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928499Z"},{"ID":50766,"Name":": (","Points":6835,"X":280,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928499Z"},{"ID":50767,"Name":"Wioska barbarzyƄska","Points":6959,"X":365,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9285Z"},{"ID":50768,"Name":"Wioska barbarzyƄska","Points":7826,"X":496,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9285Z"},{"ID":50769,"Name":"018","Points":10595,"X":716,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9285Z"},{"ID":50770,"Name":"...::181 07::...","Points":4061,"X":277,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928501Z"},{"ID":50771,"Name":"Wioska barbarzyƄska","Points":6395,"X":315,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928501Z"},{"ID":50772,"Name":"0130","Points":4867,"X":387,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928501Z"},{"ID":50773,"Name":"KRÓL PAPI WIELKI","Points":7998,"X":721,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928502Z"},{"ID":50774,"Name":"Wioska barbarzyƄska","Points":5167,"X":397,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928502Z"},{"ID":50775,"Name":"Wioska1.","Points":9302,"X":706,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928502Z"},{"ID":50776,"Name":"Wioska 5","Points":3102,"X":542,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928503Z"},{"ID":50777,"Name":"SPEC HOME","Points":9189,"X":543,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699569800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928503Z"},{"ID":50778,"Name":"#297 C","Points":4982,"X":519,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928504Z"},{"ID":50779,"Name":"#K75 0004","Points":7031,"X":520,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928504Z"},{"ID":50780,"Name":"Taran","Points":9956,"X":315,"Y":619,"Continent":"K63","Bonus":5,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928505Z"},{"ID":50781,"Name":"Początek","Points":5721,"X":299,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928505Z"},{"ID":50782,"Name":"Wioska VestoreI","Points":1581,"X":365,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":9292037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928505Z"},{"ID":50783,"Name":"XDX","Points":8510,"X":609,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928506Z"},{"ID":50784,"Name":"#0242 colt9","Points":5415,"X":436,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928506Z"},{"ID":50785,"Name":"ƚw181*001 robię hetmana .","Points":7348,"X":660,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928507Z"},{"ID":50786,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":540,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928507Z"},{"ID":50787,"Name":"MojeDnoToWaszSzczyt","Points":9984,"X":493,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928508Z"},{"ID":50788,"Name":"Motorola 01","Points":9685,"X":365,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928508Z"},{"ID":50789,"Name":"#2 Wioska barbarzyƄska","Points":8686,"X":633,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":849099517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928508Z"},{"ID":50790,"Name":"Mamtamtam","Points":7444,"X":285,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928509Z"},{"ID":50791,"Name":"*027*","Points":3183,"X":689,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928509Z"},{"ID":50792,"Name":"Wioska - 003 -","Points":1991,"X":539,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92851Z"},{"ID":50793,"Name":"=083= Jersey City","Points":7191,"X":704,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92851Z"},{"ID":50794,"Name":"003","Points":4233,"X":405,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928511Z"},{"ID":50795,"Name":"05 barbarzyƄska.","Points":8807,"X":285,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928511Z"},{"ID":50796,"Name":"A002","Points":8124,"X":334,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":849105102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928511Z"},{"ID":50797,"Name":"Psycha Siada","Points":9835,"X":330,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928512Z"},{"ID":50798,"Name":"KONFA TO MARKA, NARKA","Points":9182,"X":286,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928512Z"},{"ID":50799,"Name":"Wioska barbarzyƄska","Points":4279,"X":711,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928513Z"},{"ID":50800,"Name":"Wioska barbarzyƄska","Points":10178,"X":400,"Y":360,"Continent":"K34","Bonus":0,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928513Z"},{"ID":50801,"Name":"ZPP Vill","Points":5366,"X":724,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928513Z"},{"ID":50802,"Name":"KONFA TO MARKA, NARKA","Points":10311,"X":290,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928514Z"},{"ID":50803,"Name":"Osada koczownikĂłw","Points":9963,"X":694,"Y":403,"Continent":"K46","Bonus":7,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928514Z"},{"ID":50805,"Name":"Wioska 010","Points":3763,"X":693,"Y":595,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928515Z"},{"ID":50806,"Name":"3.Cambridge","Points":8067,"X":546,"Y":717,"Continent":"K75","Bonus":9,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928515Z"},{"ID":50807,"Name":"32. Gemmera","Points":4320,"X":721,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928516Z"},{"ID":50808,"Name":"Taka.","Points":7356,"X":483,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928516Z"},{"ID":50809,"Name":"021","Points":10147,"X":716,"Y":486,"Continent":"K47","Bonus":1,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928517Z"},{"ID":50810,"Name":"*019*","Points":3886,"X":686,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928517Z"},{"ID":50811,"Name":"Wioska18","Points":3040,"X":704,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928517Z"},{"ID":50812,"Name":"004","Points":6999,"X":610,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928518Z"},{"ID":50813,"Name":"t016","Points":7567,"X":666,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928518Z"},{"ID":50814,"Name":"018. Distaghil Sar","Points":10495,"X":711,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928519Z"},{"ID":50815,"Name":"011","Points":3841,"X":524,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928519Z"},{"ID":50816,"Name":"KRÓL PAPI WIELKI","Points":6325,"X":722,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92852Z"},{"ID":50817,"Name":"Wioska barbarzyƄska","Points":6010,"X":400,"Y":467,"Continent":"K44","Bonus":0,"PlayerID":699523631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92852Z"},{"ID":50818,"Name":"Wioska barbarzyƄska","Points":4060,"X":390,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.92852Z"},{"ID":50819,"Name":"[0233]","Points":4012,"X":286,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928521Z"},{"ID":50820,"Name":"EKOLERNA","Points":10583,"X":673,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":3957237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928521Z"},{"ID":50821,"Name":"...","Points":9893,"X":336,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928522Z"},{"ID":50822,"Name":"--015--","Points":7194,"X":574,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928522Z"},{"ID":50823,"Name":"KONFA TO MARKA, NARKA","Points":10161,"X":285,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928522Z"},{"ID":50824,"Name":"MJ43","Points":6215,"X":684,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928523Z"},{"ID":50825,"Name":"Lord Arsey KING","Points":10285,"X":654,"Y":656,"Continent":"K66","Bonus":5,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.928523Z"},{"ID":50826,"Name":"Rohan","Points":8191,"X":702,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960487Z"},{"ID":50827,"Name":"ElMajkelos IX","Points":3536,"X":412,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960487Z"},{"ID":50828,"Name":"Wioska barbarzyƄska","Points":197,"X":361,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960488Z"},{"ID":50829,"Name":"Wioska barbarzyƄska","Points":2514,"X":277,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960488Z"},{"ID":50831,"Name":"061 Wioska barbarzyƄska","Points":6067,"X":344,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960489Z"},{"ID":50832,"Name":"003 AAAAA","Points":6266,"X":281,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96049Z"},{"ID":50833,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":285,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96049Z"},{"ID":50834,"Name":"New WorldA","Points":5974,"X":280,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960491Z"},{"ID":50835,"Name":"078","Points":10025,"X":398,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960491Z"},{"ID":50836,"Name":"107","Points":8840,"X":410,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960492Z"},{"ID":50837,"Name":"Lord Arsey KING","Points":9532,"X":654,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960493Z"},{"ID":50838,"Name":"051 Wioska barbarzyƄska","Points":7125,"X":346,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960493Z"},{"ID":50839,"Name":"Wioska barbarzyƄska 002","Points":10453,"X":379,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960494Z"},{"ID":50840,"Name":"New World","Points":8619,"X":439,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960494Z"},{"ID":50841,"Name":".achim.","Points":6893,"X":570,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960495Z"},{"ID":50843,"Name":"XDX","Points":10692,"X":608,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960495Z"},{"ID":50844,"Name":"[0234]","Points":5928,"X":284,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960496Z"},{"ID":50845,"Name":"SamobĂłj","Points":2404,"X":308,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":849076515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960497Z"},{"ID":50847,"Name":"New World","Points":10294,"X":418,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960497Z"},{"ID":50848,"Name":"#0288 kaban1988","Points":10160,"X":460,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960498Z"},{"ID":50849,"Name":"Wioska barbarzyƄska","Points":5789,"X":511,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849051976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960498Z"},{"ID":50850,"Name":"Granit 19","Points":11691,"X":360,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960499Z"},{"ID":50851,"Name":"Klatka4","Points":4473,"X":622,"Y":679,"Continent":"K66","Bonus":3,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960499Z"},{"ID":50852,"Name":"North K25","Points":3594,"X":525,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9605Z"},{"ID":50853,"Name":"Wioska [2]","Points":3228,"X":723,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":699858313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9605Z"},{"ID":50854,"Name":"012 Krayana","Points":3945,"X":673,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960501Z"},{"ID":50855,"Name":"Kiedyƛ Wielki Wojownik","Points":6904,"X":332,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960502Z"},{"ID":50856,"Name":"110.Stradi","Points":8729,"X":438,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960502Z"},{"ID":50857,"Name":"PIROTECHNIK 007","Points":3699,"X":348,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960503Z"},{"ID":50858,"Name":"056KP","Points":10557,"X":489,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960503Z"},{"ID":50859,"Name":"W46","Points":2637,"X":686,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960504Z"},{"ID":50860,"Name":"KRÓL PAPI WIELKI","Points":10317,"X":659,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960504Z"},{"ID":50861,"Name":"0038","Points":1669,"X":330,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960505Z"},{"ID":50863,"Name":"1. Vhagar","Points":7891,"X":298,"Y":583,"Continent":"K52","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960506Z"},{"ID":50864,"Name":"Wioska barbarzyƄska","Points":9885,"X":712,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960506Z"},{"ID":50865,"Name":"003","Points":9603,"X":468,"Y":717,"Continent":"K74","Bonus":5,"PlayerID":8966820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960507Z"},{"ID":50866,"Name":"003","Points":8528,"X":657,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960507Z"},{"ID":50867,"Name":"Wioska barbarzyƄska","Points":8578,"X":435,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960508Z"},{"ID":50868,"Name":"#0144 deleted","Points":9535,"X":474,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960508Z"},{"ID":50869,"Name":"Wioska barbarzyƄska","Points":7653,"X":301,"Y":420,"Continent":"K43","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960509Z"},{"ID":50870,"Name":"XDX","Points":6458,"X":613,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960509Z"},{"ID":50871,"Name":"2 Nowy vequs","Points":5808,"X":341,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96051Z"},{"ID":50872,"Name":"nysa","Points":1822,"X":480,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960511Z"},{"ID":50873,"Name":"008","Points":4794,"X":301,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960511Z"},{"ID":50874,"Name":"KONFA TO MARKA, NARKA","Points":7190,"X":288,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960512Z"},{"ID":50875,"Name":"MojeDnoToWaszSzczyt","Points":9949,"X":495,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960512Z"},{"ID":50876,"Name":"FAKE OR OFF","Points":9812,"X":412,"Y":299,"Continent":"K24","Bonus":9,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960513Z"},{"ID":50877,"Name":"RPM CUSTOM","Points":7411,"X":550,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":849102094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960513Z"},{"ID":50878,"Name":"#0150 barbarzyƄska","Points":5499,"X":481,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960514Z"},{"ID":50879,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":5703,"X":543,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960514Z"},{"ID":50880,"Name":"CastAway !005","Points":10311,"X":705,"Y":585,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960515Z"},{"ID":50881,"Name":"0150","Points":4241,"X":368,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960516Z"},{"ID":50883,"Name":"160","Points":10495,"X":387,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960516Z"},{"ID":50884,"Name":"Wioska barbarzyƄska","Points":2785,"X":699,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960517Z"},{"ID":50885,"Name":"Wioska barbarzyƄska","Points":5418,"X":328,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960517Z"},{"ID":50886,"Name":"DĆŒejdĆŒej 7","Points":1400,"X":675,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960518Z"},{"ID":50887,"Name":"Wioska barbarzyƄska","Points":8717,"X":650,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960518Z"},{"ID":50888,"Name":"108","Points":9300,"X":409,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960519Z"},{"ID":50889,"Name":"[0153]","Points":8817,"X":453,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960519Z"},{"ID":50890,"Name":"Psycha Siada","Points":9141,"X":331,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96052Z"},{"ID":50891,"Name":"Wioska barbarzyƄska","Points":5528,"X":719,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96052Z"},{"ID":50892,"Name":"komandos","Points":10242,"X":636,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960521Z"},{"ID":50893,"Name":"054","Points":7654,"X":679,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960522Z"},{"ID":50894,"Name":"Wioska barbarzyƄska","Points":5054,"X":525,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960522Z"},{"ID":50895,"Name":"ZƂoty ƚwit","Points":6859,"X":595,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960523Z"},{"ID":50896,"Name":"XDX","Points":4642,"X":605,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960523Z"},{"ID":50897,"Name":"Wioska barbarzyƄska","Points":10636,"X":705,"Y":418,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960524Z"},{"ID":50898,"Name":"azi6","Points":2413,"X":461,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":849094759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960524Z"},{"ID":50899,"Name":"New World","Points":10311,"X":414,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960525Z"},{"ID":50900,"Name":"Winterfell.016","Points":7566,"X":468,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960526Z"},{"ID":50901,"Name":"02 ƚruba","Points":9710,"X":720,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960526Z"},{"ID":50902,"Name":"Winterfell.017","Points":7552,"X":466,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960527Z"},{"ID":50903,"Name":"PiekƂo to inni","Points":4030,"X":639,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960527Z"},{"ID":50904,"Name":"003","Points":6530,"X":686,"Y":615,"Continent":"K66","Bonus":7,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960528Z"},{"ID":50905,"Name":"Wioska barbarzyƄska","Points":1843,"X":305,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":3298564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960529Z"},{"ID":50906,"Name":"Wioska 024","Points":4278,"X":666,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960529Z"},{"ID":50907,"Name":"Taka..","Points":9573,"X":482,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96053Z"},{"ID":50908,"Name":"EO EO","Points":10083,"X":295,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96053Z"},{"ID":50909,"Name":"Przezorny zawsze ubezpieczony","Points":8889,"X":390,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960531Z"},{"ID":50910,"Name":"026.","Points":10508,"X":473,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960531Z"},{"ID":50911,"Name":"Wioska002","Points":10223,"X":687,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960532Z"},{"ID":50912,"Name":"155","Points":4734,"X":396,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960533Z"},{"ID":50913,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":289,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960533Z"},{"ID":50914,"Name":"[0154]","Points":8688,"X":458,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960534Z"},{"ID":50915,"Name":"K33","Points":2256,"X":319,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960534Z"},{"ID":50916,"Name":"0011","Points":6111,"X":577,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960535Z"},{"ID":50917,"Name":"BETI 013","Points":1134,"X":455,"Y":566,"Continent":"K54","Bonus":0,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960535Z"},{"ID":50918,"Name":"###138###","Points":10495,"X":612,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960536Z"},{"ID":50919,"Name":"Wioska barbarzyƄska","Points":5200,"X":311,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960536Z"},{"ID":50920,"Name":"Wioska 0010","Points":10311,"X":342,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960537Z"},{"ID":50921,"Name":"0127","Points":5365,"X":387,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960538Z"},{"ID":50922,"Name":"????","Points":8720,"X":491,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960538Z"},{"ID":50923,"Name":"083 Wioska barbarzyƄska","Points":9049,"X":539,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960539Z"},{"ID":50925,"Name":"...::181 02::...","Points":5337,"X":276,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960539Z"},{"ID":50926,"Name":"Wioska barbarzyƄska","Points":3052,"X":394,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96054Z"},{"ID":50927,"Name":"Kurnik","Points":9492,"X":467,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96054Z"},{"ID":50928,"Name":"Wioska Aloxx","Points":6288,"X":320,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960541Z"},{"ID":50929,"Name":"Wioska barbarzyƄska","Points":6266,"X":711,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960542Z"},{"ID":50930,"Name":"50-1 MASZOPERIA","Points":7898,"X":575,"Y":427,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960542Z"},{"ID":50931,"Name":"Wioska barbarzyƄska","Points":3240,"X":303,"Y":583,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960543Z"},{"ID":50932,"Name":"--034--","Points":4123,"X":575,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960543Z"},{"ID":50934,"Name":"007 Twierdza","Points":10019,"X":631,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960544Z"},{"ID":50935,"Name":"#K75 0033","Points":3734,"X":516,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960544Z"},{"ID":50936,"Name":"BOSS Z1","Points":3257,"X":350,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960545Z"},{"ID":50938,"Name":"018 Olivine City","Points":10866,"X":720,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960545Z"},{"ID":50939,"Name":"ZƂoty ƚwit","Points":5847,"X":595,"Y":304,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960546Z"},{"ID":50940,"Name":"DuĆŒe Oczy","Points":8305,"X":709,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960547Z"},{"ID":50942,"Name":"Niezbyt WIELKI KAZIO!","Points":10495,"X":460,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960547Z"},{"ID":50943,"Name":"Wioska barbarzyƄska","Points":4822,"X":278,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960548Z"},{"ID":50944,"Name":"Wioska barbarzyƄska","Points":4565,"X":390,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960548Z"},{"ID":50945,"Name":"C004","Points":9805,"X":365,"Y":667,"Continent":"K63","Bonus":9,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960549Z"},{"ID":50946,"Name":"058","Points":3191,"X":719,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960549Z"},{"ID":50947,"Name":"WY...m","Points":10495,"X":600,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96055Z"},{"ID":50948,"Name":"t017","Points":4315,"X":668,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96055Z"},{"ID":50949,"Name":"050","Points":2963,"X":625,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960551Z"},{"ID":50950,"Name":"Wioska012","Points":8750,"X":345,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960552Z"},{"ID":50951,"Name":"North 003","Points":10311,"X":516,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960552Z"},{"ID":50952,"Name":"BRICKLEBERRY","Points":9042,"X":556,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960553Z"},{"ID":50953,"Name":"Wyspa 029","Points":4680,"X":294,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960553Z"},{"ID":50954,"Name":"###139###","Points":10495,"X":598,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960554Z"},{"ID":50955,"Name":"New World","Points":10292,"X":435,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960555Z"},{"ID":50956,"Name":"0149","Points":3040,"X":695,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960555Z"},{"ID":50957,"Name":"053","Points":10495,"X":406,"Y":693,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960556Z"},{"ID":50958,"Name":"Szczęƛliwego Nowego Roku ;)","Points":5512,"X":561,"Y":457,"Continent":"K45","Bonus":0,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960556Z"},{"ID":50959,"Name":"Wioska barbarzyƄska","Points":5428,"X":618,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960557Z"},{"ID":50961,"Name":"Wioska barbarzyƄska","Points":8654,"X":645,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960557Z"},{"ID":50962,"Name":"Wioska barbarzyƄska","Points":7980,"X":394,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960558Z"},{"ID":50963,"Name":"031.","Points":10838,"X":468,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960559Z"},{"ID":50964,"Name":"Nowe Dobra - budowa","Points":9860,"X":684,"Y":629,"Continent":"K66","Bonus":2,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960559Z"},{"ID":50965,"Name":"U.003","Points":8466,"X":287,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96056Z"},{"ID":50966,"Name":"Avanti!","Points":6239,"X":276,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96056Z"},{"ID":50967,"Name":"091.Stradi","Points":9738,"X":434,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960561Z"},{"ID":50968,"Name":"- 264 - SS","Points":4453,"X":570,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960561Z"},{"ID":50969,"Name":"116.Stradi","Points":10362,"X":419,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960562Z"},{"ID":50971,"Name":"Wioska barbarzyƄska","Points":2906,"X":325,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960563Z"},{"ID":50973,"Name":"021. Night Raid","Points":9843,"X":492,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960563Z"},{"ID":50974,"Name":"ZƂoty ƚwit","Points":9851,"X":590,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960564Z"},{"ID":50975,"Name":"Wioska barbarzyƄska","Points":2238,"X":278,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960564Z"},{"ID":50976,"Name":"Wioska barbarzyƄska","Points":3822,"X":719,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960565Z"},{"ID":50977,"Name":"EO EO","Points":8697,"X":283,"Y":491,"Continent":"K42","Bonus":9,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960566Z"},{"ID":50978,"Name":"Wioska barbarzyƄska","Points":5457,"X":420,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960566Z"},{"ID":50979,"Name":"Saran5","Points":3821,"X":410,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960567Z"},{"ID":50980,"Name":"*195*","Points":10211,"X":367,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960567Z"},{"ID":50981,"Name":"KRÓL PAPI WIELKI","Points":6346,"X":723,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960568Z"},{"ID":50982,"Name":"X012","Points":6808,"X":711,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960568Z"},{"ID":50983,"Name":"Wioska barbarzyƄska","Points":878,"X":423,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960569Z"},{"ID":50984,"Name":"053|| Sagitta","Points":9727,"X":461,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960569Z"},{"ID":50985,"Name":"WB11","Points":4036,"X":306,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96057Z"},{"ID":50986,"Name":"Wioska tor1","Points":9922,"X":574,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960571Z"},{"ID":50987,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":539,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960571Z"},{"ID":50988,"Name":"002","Points":9638,"X":306,"Y":565,"Continent":"K53","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960572Z"},{"ID":50989,"Name":"[0205]","Points":6444,"X":278,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960572Z"},{"ID":50990,"Name":".achim.","Points":7490,"X":568,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960573Z"},{"ID":50991,"Name":"BorysĂłwka","Points":6683,"X":306,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960574Z"},{"ID":50992,"Name":"komandos","Points":9600,"X":640,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960574Z"},{"ID":50993,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":285,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960575Z"},{"ID":50995,"Name":"WrocƂaw","Points":10175,"X":680,"Y":629,"Continent":"K66","Bonus":2,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960575Z"},{"ID":50997,"Name":"162","Points":4453,"X":383,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960576Z"},{"ID":50998,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9809,"X":552,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960576Z"},{"ID":51000,"Name":"kathare","Points":9963,"X":537,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960577Z"},{"ID":51001,"Name":"034","Points":10160,"X":717,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960577Z"},{"ID":51003,"Name":"C044","Points":7671,"X":361,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960578Z"},{"ID":51004,"Name":"EO EO","Points":10224,"X":278,"Y":503,"Continent":"K52","Bonus":8,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960579Z"},{"ID":51006,"Name":"005 Payana","Points":5775,"X":671,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960579Z"},{"ID":51007,"Name":"FP038","Points":4709,"X":476,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96058Z"},{"ID":51008,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":290,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96058Z"},{"ID":51009,"Name":"XXXX","Points":10057,"X":564,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960581Z"},{"ID":51010,"Name":"ƚroda ƚląska","Points":3850,"X":673,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960581Z"},{"ID":51011,"Name":"Wyspa 001","Points":10495,"X":293,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960582Z"},{"ID":51012,"Name":"Wioska barbarzyƄska","Points":8819,"X":537,"Y":629,"Continent":"K65","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960582Z"},{"ID":51013,"Name":"Wioska barbarzyƄska","Points":9806,"X":324,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960583Z"},{"ID":51014,"Name":"xxx","Points":3290,"X":644,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960583Z"},{"ID":51015,"Name":"Wioska barbarzyƄska","Points":8856,"X":711,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960584Z"},{"ID":51016,"Name":"NP 02","Points":4975,"X":303,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960585Z"},{"ID":51017,"Name":"Wioska barbarzyƄska","Points":5414,"X":427,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960586Z"},{"ID":51018,"Name":"Twierdza 2","Points":920,"X":690,"Y":606,"Continent":"K66","Bonus":2,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960586Z"},{"ID":51019,"Name":"New WorldA","Points":4992,"X":286,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960587Z"},{"ID":51020,"Name":"OrzeƂ 01 wylądowaƂ","Points":7226,"X":336,"Y":416,"Continent":"K43","Bonus":0,"PlayerID":849098299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960587Z"},{"ID":51021,"Name":"114","Points":9308,"X":408,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960588Z"},{"ID":51022,"Name":"Psycha Siada","Points":8669,"X":332,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960588Z"},{"ID":51023,"Name":".achim.","Points":6399,"X":567,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960589Z"},{"ID":51024,"Name":"Avanti!","Points":5294,"X":279,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960589Z"},{"ID":51025,"Name":"Wioska barbarzyƄska","Points":5043,"X":612,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96059Z"},{"ID":51026,"Name":"Kurnik","Points":7348,"X":422,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96059Z"},{"ID":51027,"Name":"[0199]","Points":6738,"X":276,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960591Z"},{"ID":51028,"Name":"Tomekrol 5","Points":5939,"X":701,"Y":597,"Continent":"K57","Bonus":0,"PlayerID":849096334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960592Z"},{"ID":51029,"Name":"Wioska spartacus699111","Points":10178,"X":314,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960592Z"},{"ID":51030,"Name":"Wioska barbarzyƄska","Points":8548,"X":646,"Y":658,"Continent":"K66","Bonus":1,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960593Z"},{"ID":51031,"Name":"Wioska barbarzyƄska","Points":5428,"X":720,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960593Z"},{"ID":51032,"Name":"004","Points":10068,"X":295,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960594Z"},{"ID":51033,"Name":"0448","Points":9398,"X":570,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960594Z"},{"ID":51034,"Name":"###140###","Points":10495,"X":600,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960595Z"},{"ID":51035,"Name":"New World","Points":10122,"X":412,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960595Z"},{"ID":51036,"Name":"C0350","Points":4195,"X":278,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960596Z"},{"ID":51037,"Name":"*010","Points":8291,"X":675,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960597Z"},{"ID":51038,"Name":"Wioska barbarzyƄska","Points":2059,"X":497,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960597Z"},{"ID":51039,"Name":"Kartoflisko","Points":2999,"X":348,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960598Z"},{"ID":51040,"Name":"Wioska barbarzyƄska","Points":4064,"X":527,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699818726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960598Z"},{"ID":51041,"Name":"30. Caingorn","Points":5079,"X":721,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960599Z"},{"ID":51042,"Name":"Wioska barbarzyƄska","Points":4663,"X":322,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9606Z"},{"ID":51043,"Name":"0152","Points":4449,"X":366,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9606Z"},{"ID":51044,"Name":"Pobozowisko","Points":10971,"X":398,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960601Z"},{"ID":51045,"Name":"HWILA /2/","Points":3168,"X":630,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960601Z"},{"ID":51047,"Name":"Drobne","Points":5395,"X":358,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":6416213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960602Z"},{"ID":51048,"Name":"MojeDnoToWaszSzczyt","Points":5135,"X":487,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960602Z"},{"ID":51049,"Name":"New World","Points":10291,"X":426,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960603Z"},{"ID":51050,"Name":"ZƂoty ƚwit","Points":9702,"X":593,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960603Z"},{"ID":51051,"Name":"[804] Odludzie","Points":8527,"X":710,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960604Z"},{"ID":51052,"Name":"Wioska barbarzyƄska","Points":1681,"X":320,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960605Z"},{"ID":51053,"Name":"Początek","Points":3470,"X":294,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960605Z"},{"ID":51055,"Name":"Wioska barbarzyƄska","Points":3692,"X":718,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960606Z"},{"ID":51056,"Name":"Wioska barbarzyƄska","Points":2589,"X":282,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960606Z"},{"ID":51057,"Name":"Wiadro00","Points":9576,"X":671,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960607Z"},{"ID":51058,"Name":"New World","Points":10297,"X":410,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960608Z"},{"ID":51059,"Name":"0018 Wioska barbarzyƄska","Points":5149,"X":494,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960608Z"},{"ID":51060,"Name":".achim.","Points":4591,"X":576,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960609Z"},{"ID":51061,"Name":"Wioska MISTRZU77","Points":4994,"X":495,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":763529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960609Z"},{"ID":51062,"Name":"kathare","Points":9961,"X":535,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96061Z"},{"ID":51063,"Name":"O108","Points":8112,"X":313,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96061Z"},{"ID":51064,"Name":"019 Osada koczownikĂłw","Points":10068,"X":536,"Y":278,"Continent":"K25","Bonus":3,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960611Z"},{"ID":51065,"Name":"#K75 0026","Points":4450,"X":513,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960612Z"},{"ID":51066,"Name":"rafisonik9","Points":4039,"X":511,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960612Z"},{"ID":51067,"Name":"ZZZ .::. cinek3456/06","Points":10195,"X":581,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960613Z"},{"ID":51070,"Name":"Wioska barbarzyƄska","Points":11363,"X":719,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960613Z"},{"ID":51071,"Name":"Wioska 028","Points":5619,"X":666,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960614Z"},{"ID":51072,"Name":"HAPERT","Points":10344,"X":625,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960614Z"},{"ID":51073,"Name":"New World","Points":10294,"X":435,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960615Z"},{"ID":51074,"Name":"#K75 0030","Points":3941,"X":521,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960616Z"},{"ID":51075,"Name":"New World","Points":10290,"X":428,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960616Z"},{"ID":51076,"Name":"- 257 - SS","Points":5082,"X":571,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960617Z"},{"ID":51077,"Name":"Wioska P-406-04","Points":1360,"X":554,"Y":335,"Continent":"K35","Bonus":0,"PlayerID":6654098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960617Z"},{"ID":51078,"Name":"056 Wioska barbarzyƄska","Points":9702,"X":549,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960618Z"},{"ID":51079,"Name":"o014","Points":7447,"X":605,"Y":696,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960618Z"},{"ID":51080,"Name":"wancki i gustlikk","Points":9721,"X":505,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960619Z"},{"ID":51082,"Name":"Wioska barbarzyƄska","Points":9787,"X":472,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":699196829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960619Z"},{"ID":51083,"Name":"0586","Points":10019,"X":586,"Y":707,"Continent":"K75","Bonus":1,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96062Z"},{"ID":51084,"Name":"005","Points":3354,"X":593,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960621Z"},{"ID":51085,"Name":"ĆŒ internacionale 0001","Points":10228,"X":316,"Y":374,"Continent":"K33","Bonus":1,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960621Z"},{"ID":51087,"Name":"P|004|","Points":8819,"X":460,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960622Z"},{"ID":51088,"Name":"Wioska barbarzyƄska","Points":1357,"X":313,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960622Z"},{"ID":51089,"Name":"034","Points":5785,"X":655,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960623Z"},{"ID":51090,"Name":"*020*","Points":5241,"X":685,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960623Z"},{"ID":51091,"Name":"Wioska barbarzyƄska","Points":6336,"X":715,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960624Z"},{"ID":51092,"Name":"0083","Points":5411,"X":455,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960625Z"},{"ID":51093,"Name":"KRÓL PAPI WIELKI","Points":6280,"X":672,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960625Z"},{"ID":51094,"Name":"055","Points":9825,"X":676,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960626Z"},{"ID":51095,"Name":"B011","Points":10813,"X":630,"Y":323,"Continent":"K36","Bonus":4,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960626Z"},{"ID":51096,"Name":"Wioska Mammbeppe","Points":8818,"X":715,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960627Z"},{"ID":51097,"Name":"Wioska LadyMauritius","Points":9734,"X":501,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960627Z"},{"ID":51098,"Name":"039 Wioska barbarzyƄska","Points":9835,"X":542,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960628Z"},{"ID":51099,"Name":"Bagno 12","Points":9423,"X":483,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960629Z"},{"ID":51100,"Name":"027 Wioska barbarzyƄska","Points":10068,"X":544,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960629Z"},{"ID":51101,"Name":"Wioska barbarzyƄska","Points":5293,"X":417,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96063Z"},{"ID":51102,"Name":"!36 65 Prisaca Dornei","Points":10019,"X":665,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960631Z"},{"ID":51103,"Name":"[0200]","Points":7446,"X":275,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960631Z"},{"ID":51104,"Name":"005c","Points":4162,"X":305,"Y":410,"Continent":"K43","Bonus":6,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960632Z"},{"ID":51105,"Name":"W47","Points":2149,"X":691,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960632Z"},{"ID":51106,"Name":"New World","Points":7454,"X":438,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960633Z"},{"ID":51107,"Name":"003","Points":8460,"X":344,"Y":347,"Continent":"K33","Bonus":8,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960633Z"},{"ID":51108,"Name":"KUKA VIII","Points":1513,"X":291,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960634Z"},{"ID":51109,"Name":"Koczowisko","Points":4998,"X":306,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960634Z"},{"ID":51110,"Name":"Wioska barbarzyƄska","Points":6929,"X":388,"Y":482,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960635Z"},{"ID":51111,"Name":"*015","Points":9268,"X":676,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960636Z"},{"ID":51112,"Name":"#0240 colt9","Points":6310,"X":437,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960636Z"},{"ID":51113,"Name":"07 barbarzyƄska0","Points":9835,"X":283,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960637Z"},{"ID":51115,"Name":"Wioska 025","Points":4357,"X":668,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960637Z"},{"ID":51116,"Name":"Zaplecze miedziane 2","Points":9744,"X":360,"Y":333,"Continent":"K33","Bonus":3,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960638Z"},{"ID":51117,"Name":"Wioska barbarzyƄska","Points":3097,"X":718,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960639Z"},{"ID":51118,"Name":"PóƂnocny Bagdad","Points":7010,"X":620,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960639Z"},{"ID":51119,"Name":"C091","Points":8569,"X":361,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96064Z"},{"ID":51120,"Name":"KRÓL PAPI WIELKI","Points":6215,"X":691,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96064Z"},{"ID":51121,"Name":"12 desdemona24.","Points":9835,"X":284,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960641Z"},{"ID":51122,"Name":"W48","Points":1800,"X":693,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960641Z"},{"ID":51123,"Name":"#Kresy","Points":7264,"X":629,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960642Z"},{"ID":51124,"Name":"039 Wioska barbarzyƄska","Points":10160,"X":604,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":699346280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960642Z"},{"ID":51125,"Name":"Psycha Siada","Points":9925,"X":326,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960643Z"},{"ID":51126,"Name":"Wioska barbarzyƄska","Points":5041,"X":364,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960644Z"},{"ID":51127,"Name":"ZƂoty ƚwit","Points":10055,"X":597,"Y":301,"Continent":"K35","Bonus":3,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960644Z"},{"ID":51128,"Name":"BiaƂa Podlaska 3","Points":991,"X":440,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":849100787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960645Z"},{"ID":51129,"Name":"MojeDnoToWaszSzczyt","Points":9946,"X":507,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960645Z"},{"ID":51130,"Name":"K33","Points":2529,"X":315,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960646Z"},{"ID":51131,"Name":"Wioska barbarzyƄska","Points":6231,"X":716,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960646Z"},{"ID":51132,"Name":"Wioska mk2014","Points":2186,"X":412,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698431574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960647Z"},{"ID":51133,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":285,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960648Z"},{"ID":51134,"Name":"Wioska barbarzyƄska","Points":5680,"X":327,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960648Z"},{"ID":51135,"Name":"254...","Points":4670,"X":464,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960649Z"},{"ID":51136,"Name":"New WorldA","Points":2831,"X":281,"Y":505,"Continent":"K52","Bonus":7,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960649Z"},{"ID":51137,"Name":"Zzz 00 CebulaVillage","Points":2884,"X":295,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96065Z"},{"ID":51138,"Name":"Wioska barbarzyƄska","Points":5087,"X":711,"Y":558,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96065Z"},{"ID":51139,"Name":"008 JJ","Points":9379,"X":327,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960651Z"},{"ID":51140,"Name":"Wioska barbarzyƄska","Points":3354,"X":651,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960651Z"},{"ID":51141,"Name":"FAKE OR OFF","Points":9814,"X":417,"Y":298,"Continent":"K24","Bonus":4,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960652Z"},{"ID":51142,"Name":"Wioska barbarzyƄska","Points":2936,"X":420,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960653Z"},{"ID":51143,"Name":"MJ3","Points":5776,"X":685,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960653Z"},{"ID":51144,"Name":"Nowy Początek","Points":9555,"X":303,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960654Z"},{"ID":51145,"Name":"-001-","Points":9740,"X":357,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":9253494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960655Z"},{"ID":51146,"Name":"Bagno 26","Points":7294,"X":475,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960655Z"},{"ID":51147,"Name":"Trunks Super Saiyan 002","Points":5354,"X":518,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960656Z"},{"ID":51148,"Name":"020","Points":8459,"X":707,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":699150527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960656Z"},{"ID":51150,"Name":"Wioska 009","Points":3181,"X":697,"Y":591,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960657Z"},{"ID":51151,"Name":"New World","Points":10291,"X":431,"Y":714,"Continent":"K74","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960657Z"},{"ID":51152,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":292,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960658Z"},{"ID":51153,"Name":"#0301 Piotr-B","Points":8258,"X":435,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960658Z"},{"ID":51154,"Name":"003 PPP","Points":4890,"X":529,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960659Z"},{"ID":51155,"Name":"Zasiedmiogorogrodzie 002","Points":3152,"X":696,"Y":398,"Continent":"K36","Bonus":0,"PlayerID":698278542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96066Z"},{"ID":51156,"Name":"063","Points":10495,"X":403,"Y":694,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96066Z"},{"ID":51157,"Name":"ZZZ .::. cinek3456/05","Points":10195,"X":581,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960661Z"},{"ID":51158,"Name":"Wioska barbarzyƄska","Points":5111,"X":711,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960661Z"},{"ID":51159,"Name":"05 GHOL","Points":9539,"X":722,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960662Z"},{"ID":51160,"Name":"o09","Points":7631,"X":614,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960663Z"},{"ID":51161,"Name":"[817] Odludzie","Points":7325,"X":713,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960663Z"},{"ID":51162,"Name":"Twierdza (SV)","Points":6873,"X":351,"Y":549,"Continent":"K53","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960664Z"},{"ID":51163,"Name":"Demacia","Points":11502,"X":347,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":698817235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960664Z"},{"ID":51164,"Name":"022 Mahogany Town","Points":11109,"X":721,"Y":485,"Continent":"K47","Bonus":2,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960665Z"},{"ID":51165,"Name":"Wioska barbarzyƄska","Points":5185,"X":507,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960665Z"},{"ID":51166,"Name":"Aksjo 1","Points":2017,"X":560,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960666Z"},{"ID":51167,"Name":"Bernabeum","Points":5796,"X":642,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960666Z"},{"ID":51168,"Name":"011 Twierdza","Points":9053,"X":629,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960667Z"},{"ID":51169,"Name":"006","Points":5169,"X":676,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960667Z"},{"ID":51170,"Name":"030 Mauville City","Points":5328,"X":714,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960668Z"},{"ID":51171,"Name":"kathare","Points":10182,"X":535,"Y":719,"Continent":"K75","Bonus":8,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960669Z"},{"ID":51172,"Name":"Wioska010","Points":9596,"X":696,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960669Z"},{"ID":51173,"Name":"UTAPAU 1","Points":4057,"X":541,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96067Z"},{"ID":51174,"Name":"Wioska barbarzyƄska","Points":4246,"X":715,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960671Z"},{"ID":51175,"Name":"Avanti!","Points":6468,"X":284,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960671Z"},{"ID":51176,"Name":"017","Points":9637,"X":280,"Y":464,"Continent":"K42","Bonus":5,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960672Z"},{"ID":51177,"Name":"C-003","Points":3894,"X":323,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960672Z"},{"ID":51178,"Name":"MojeDnoToWaszSzczyt","Points":9822,"X":509,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960673Z"},{"ID":51179,"Name":"Wioska barbarzyƄska","Points":8851,"X":686,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960674Z"},{"ID":51180,"Name":"A-004","Points":6028,"X":323,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960674Z"},{"ID":51181,"Name":"005. Seiyouwasabi","Points":10237,"X":697,"Y":391,"Continent":"K36","Bonus":4,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960675Z"},{"ID":51182,"Name":"010 JJ","Points":3624,"X":332,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960675Z"},{"ID":51183,"Name":"Wioska barbarzyƄska","Points":3066,"X":688,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960676Z"},{"ID":51184,"Name":"Kapitol_04","Points":5225,"X":505,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960676Z"},{"ID":51185,"Name":"KamienioƂom","Points":3123,"X":348,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960677Z"},{"ID":51186,"Name":".achim.","Points":2548,"X":564,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960678Z"},{"ID":51187,"Name":"NP 04","Points":6746,"X":304,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960678Z"},{"ID":51189,"Name":"Psycha Siada","Points":8980,"X":339,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960679Z"},{"ID":51190,"Name":"0367","Points":8109,"X":566,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960679Z"},{"ID":51191,"Name":"Wioska barbarzyƄska","Points":3250,"X":363,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":6416213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96068Z"},{"ID":51192,"Name":"=096= Wioska barbarzyƄska","Points":5993,"X":706,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96068Z"},{"ID":51193,"Name":"Finne","Points":8041,"X":279,"Y":463,"Continent":"K42","Bonus":1,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960681Z"},{"ID":51194,"Name":"Blanco Conejo","Points":7134,"X":522,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960682Z"},{"ID":51195,"Name":"Na KraƄcu ƚwiata 004","Points":10475,"X":645,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960682Z"},{"ID":51196,"Name":"002","Points":5097,"X":422,"Y":711,"Continent":"K74","Bonus":1,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960683Z"},{"ID":51197,"Name":"Wioska barbarzyƄska","Points":1204,"X":318,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960683Z"},{"ID":51198,"Name":"074 invidia","Points":5181,"X":537,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960684Z"},{"ID":51199,"Name":"071","Points":10495,"X":399,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960684Z"},{"ID":51200,"Name":"Wioska barbarzyƄska","Points":1969,"X":328,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":9240154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960685Z"},{"ID":51201,"Name":"Barlinek","Points":7213,"X":487,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960686Z"},{"ID":51202,"Name":"New World","Points":9886,"X":413,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960686Z"},{"ID":51204,"Name":"mufinka","Points":9804,"X":381,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960687Z"},{"ID":51205,"Name":"0139","Points":3866,"X":367,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960687Z"},{"ID":51206,"Name":"007","Points":6922,"X":635,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849099544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960688Z"},{"ID":51207,"Name":"*005","Points":9663,"X":671,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960688Z"},{"ID":51208,"Name":"North 049","Points":6140,"X":512,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960689Z"},{"ID":51209,"Name":"#K75 0007","Points":5353,"X":518,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960689Z"},{"ID":51210,"Name":"ChomentĂłw","Points":10160,"X":580,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96069Z"},{"ID":51211,"Name":"033","Points":3898,"X":685,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960691Z"},{"ID":51212,"Name":"Kapitol_02","Points":5960,"X":506,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960691Z"},{"ID":51213,"Name":"014.","Points":10158,"X":634,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960692Z"},{"ID":51214,"Name":"018","Points":5417,"X":303,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960692Z"},{"ID":51215,"Name":"WOLA0102","Points":6587,"X":680,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960693Z"},{"ID":51216,"Name":"New WorldA","Points":4199,"X":278,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960694Z"},{"ID":51217,"Name":"0066","Points":9993,"X":458,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960694Z"},{"ID":51218,"Name":"Wioska barbarzyƄska","Points":5269,"X":318,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960695Z"},{"ID":51219,"Name":"072 Wioska barbarzyƄska","Points":9899,"X":540,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960695Z"},{"ID":51220,"Name":"North 040","Points":7027,"X":516,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960696Z"},{"ID":51221,"Name":"Wioska 1","Points":3577,"X":512,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849100615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960697Z"},{"ID":51222,"Name":"komandos","Points":4979,"X":669,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960697Z"},{"ID":51223,"Name":"Wiiiiiii","Points":1964,"X":287,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960698Z"},{"ID":51225,"Name":"Op Konfederacja","Points":7344,"X":472,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960698Z"},{"ID":51226,"Name":"No to jedziemy :D","Points":7399,"X":495,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960699Z"},{"ID":51227,"Name":"075 KrĂłlewska PrzystaƄ","Points":9565,"X":705,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9607Z"},{"ID":51228,"Name":"Wioska7","Points":8092,"X":708,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9607Z"},{"ID":51229,"Name":"*002","Points":10337,"X":669,"Y":364,"Continent":"K36","Bonus":3,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960701Z"},{"ID":51230,"Name":"P004","Points":5482,"X":511,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960701Z"},{"ID":51231,"Name":"17 Wioska wolna od pisu","Points":7237,"X":721,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960702Z"},{"ID":51232,"Name":"B_10","Points":2513,"X":296,"Y":411,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960703Z"},{"ID":51233,"Name":"Wioska KaszczuJ 1","Points":10160,"X":700,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":849104356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960703Z"},{"ID":51234,"Name":"New World","Points":10291,"X":432,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960704Z"},{"ID":51235,"Name":"103","Points":9951,"X":399,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960704Z"},{"ID":51236,"Name":"Motorola 02","Points":9145,"X":364,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960705Z"},{"ID":51237,"Name":"Xxxx","Points":9786,"X":722,"Y":501,"Continent":"K57","Bonus":8,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960705Z"},{"ID":51238,"Name":"K24 - [002] Before Land","Points":6524,"X":462,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960706Z"},{"ID":51239,"Name":"Kurnik","Points":9521,"X":451,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960706Z"},{"ID":51241,"Name":"Wioska 013","Points":2400,"X":700,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960707Z"},{"ID":51242,"Name":"Wioska barbarzyƄska 001","Points":1868,"X":703,"Y":404,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960708Z"},{"ID":51243,"Name":"B012","Points":11328,"X":631,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960708Z"},{"ID":51244,"Name":"012 Twierdza","Points":8155,"X":629,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960709Z"},{"ID":51245,"Name":"04Wioska barbarzyƄska","Points":3370,"X":363,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960709Z"},{"ID":51246,"Name":"ZƂoty ƚwit","Points":6731,"X":595,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96071Z"},{"ID":51247,"Name":"Wioska","Points":6551,"X":476,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960711Z"},{"ID":51248,"Name":"W49","Points":2070,"X":694,"Y":402,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960711Z"},{"ID":51250,"Name":"###141###","Points":10495,"X":602,"Y":696,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960712Z"},{"ID":51251,"Name":"AAA","Points":8459,"X":555,"Y":289,"Continent":"K25","Bonus":2,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960712Z"},{"ID":51253,"Name":"#034","Points":2771,"X":557,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960713Z"},{"ID":51254,"Name":"Pcim Dolny","Points":4818,"X":463,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":849100083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960713Z"},{"ID":51255,"Name":"###142###","Points":10495,"X":598,"Y":695,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960714Z"},{"ID":51256,"Name":"Wioska barbarzyƄska","Points":1521,"X":702,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960715Z"},{"ID":51257,"Name":"KRÓL PAPI WIELKI","Points":5793,"X":725,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960715Z"},{"ID":51258,"Name":"AAA","Points":4215,"X":528,"Y":318,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960716Z"},{"ID":51259,"Name":"Wioska barbarzyƄska","Points":2674,"X":350,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849101694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960717Z"},{"ID":51260,"Name":"Wioska barbarzyƄska","Points":4096,"X":459,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":699863708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960717Z"},{"ID":51261,"Name":"Wioska kjs12","Points":628,"X":301,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":698687597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960718Z"},{"ID":51262,"Name":"Wioska jo1","Points":3762,"X":296,"Y":405,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960718Z"},{"ID":51263,"Name":"002 Quatra","Points":8036,"X":670,"Y":640,"Continent":"K66","Bonus":1,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960719Z"},{"ID":51264,"Name":"Bagno 18","Points":7442,"X":483,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960719Z"},{"ID":51265,"Name":"123","Points":9368,"X":404,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96072Z"},{"ID":51266,"Name":"MojeDnoToWaszSzczyt","Points":9946,"X":499,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96072Z"},{"ID":51267,"Name":"0104","Points":4377,"X":681,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960721Z"},{"ID":51268,"Name":"Wioska Kristoffs","Points":9995,"X":699,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960721Z"},{"ID":51269,"Name":"Psycha Siada","Points":10019,"X":327,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960722Z"},{"ID":51270,"Name":"Zaplecze Barba 7","Points":9742,"X":372,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960722Z"},{"ID":51271,"Name":"wancki i gustlikk","Points":9132,"X":503,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960723Z"},{"ID":51272,"Name":"008","Points":4784,"X":308,"Y":605,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960724Z"},{"ID":51273,"Name":"PiekƂo to inni","Points":5885,"X":647,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960724Z"},{"ID":51274,"Name":"C099","Points":9704,"X":357,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960725Z"},{"ID":51275,"Name":"=0017=","Points":9851,"X":391,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960726Z"},{"ID":51276,"Name":"222","Points":2961,"X":413,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960726Z"},{"ID":51277,"Name":"023","Points":3151,"X":289,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960727Z"},{"ID":51278,"Name":"###143###","Points":10495,"X":592,"Y":697,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960728Z"},{"ID":51279,"Name":"New WorldA","Points":3251,"X":281,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960728Z"},{"ID":51280,"Name":"015","Points":1252,"X":309,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960729Z"},{"ID":51281,"Name":"04Wioska barbarzyƄska","Points":9524,"X":364,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960729Z"},{"ID":51282,"Name":"BOSS SW","Points":7399,"X":350,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96073Z"},{"ID":51283,"Name":"Nowa 03","Points":3089,"X":302,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960731Z"},{"ID":51284,"Name":"Wioska adekkolt1","Points":26,"X":651,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":9257513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960731Z"},{"ID":51286,"Name":"wancki i gustlikk","Points":9737,"X":503,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960732Z"},{"ID":51288,"Name":"North 074","Points":4004,"X":518,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960732Z"},{"ID":51289,"Name":"0012 Wioska sos1234","Points":9756,"X":471,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960733Z"},{"ID":51290,"Name":"065","Points":7380,"X":716,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960734Z"},{"ID":51291,"Name":"010. Tonno e cipolla","Points":8878,"X":307,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960734Z"},{"ID":51292,"Name":"012","Points":5644,"X":290,"Y":425,"Continent":"K42","Bonus":1,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960735Z"},{"ID":51293,"Name":"*014","Points":7097,"X":678,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960735Z"},{"ID":51295,"Name":"--026--","Points":7790,"X":570,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960736Z"},{"ID":51296,"Name":"MojeDnoToWaszSzczyt","Points":9955,"X":498,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960737Z"},{"ID":51297,"Name":"054 Wioska barbarzyƄska","Points":5498,"X":347,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960737Z"},{"ID":51298,"Name":"Wioska barbarzyƄska","Points":5561,"X":418,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960738Z"},{"ID":51300,"Name":"056","Points":10290,"X":680,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960738Z"},{"ID":51301,"Name":"003","Points":8470,"X":284,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960739Z"},{"ID":51302,"Name":"Podbitek 2","Points":7352,"X":685,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960739Z"},{"ID":51303,"Name":"009","Points":4328,"X":658,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96074Z"},{"ID":51304,"Name":"MERHET","Points":7346,"X":583,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960741Z"},{"ID":51305,"Name":"018 Twierdza","Points":2631,"X":636,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960741Z"},{"ID":51306,"Name":"014","Points":5090,"X":667,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960742Z"},{"ID":51307,"Name":"044","Points":1244,"X":663,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960743Z"},{"ID":51308,"Name":"Magiczne koszary","Points":6418,"X":462,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960743Z"},{"ID":51309,"Name":"Wiocha 2","Points":11737,"X":556,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960744Z"},{"ID":51310,"Name":"Trawiasta0","Points":9655,"X":623,"Y":684,"Continent":"K66","Bonus":4,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960744Z"},{"ID":51311,"Name":"ZƂoty ƚwit","Points":6201,"X":597,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960745Z"},{"ID":51312,"Name":"2. Caraxes","Points":2574,"X":299,"Y":583,"Continent":"K52","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960745Z"},{"ID":51313,"Name":"002","Points":4792,"X":300,"Y":409,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960746Z"},{"ID":51314,"Name":"06.LUNA","Points":3756,"X":710,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960746Z"},{"ID":51315,"Name":"Lord Arsey KING","Points":9014,"X":656,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960747Z"},{"ID":51316,"Name":"118","Points":8073,"X":391,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960748Z"},{"ID":51317,"Name":"--044--","Points":1943,"X":572,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960748Z"},{"ID":51318,"Name":"008","Points":5774,"X":297,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960749Z"},{"ID":51319,"Name":"PoƂudniowy WschĂłd 014","Points":1012,"X":690,"Y":609,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960749Z"},{"ID":51320,"Name":"Haga","Points":4299,"X":280,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":699830255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96075Z"},{"ID":51321,"Name":"PiekƂo to inni","Points":6715,"X":638,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960751Z"},{"ID":51323,"Name":"028","Points":3353,"X":683,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960751Z"},{"ID":51324,"Name":"[0149]","Points":8943,"X":444,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960752Z"},{"ID":51325,"Name":"Wioska barbarzyƄska","Points":3242,"X":717,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960752Z"},{"ID":51326,"Name":"#0072","Points":7385,"X":572,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960753Z"},{"ID":51327,"Name":"Kolonia 02","Points":7919,"X":304,"Y":592,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960753Z"},{"ID":51328,"Name":"KRÓL PAPI WIELKI","Points":6318,"X":692,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960754Z"},{"ID":51329,"Name":"Winterfell.021","Points":3693,"X":455,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960755Z"},{"ID":51330,"Name":"Motorola 06","Points":4642,"X":364,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960755Z"},{"ID":51331,"Name":"Cisza","Points":3354,"X":291,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960756Z"},{"ID":51332,"Name":"3.Oksford","Points":6458,"X":545,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960756Z"},{"ID":51333,"Name":"46. Ellander","Points":4345,"X":718,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960757Z"},{"ID":51334,"Name":"SP 2201","Points":5176,"X":353,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960758Z"},{"ID":51335,"Name":"FAKE OR OFF","Points":9836,"X":400,"Y":304,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960758Z"},{"ID":51337,"Name":"Wioska barbarzyƄska","Points":4776,"X":594,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":8991696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960759Z"},{"ID":51338,"Name":"Ave Night","Points":7023,"X":457,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960759Z"},{"ID":51339,"Name":"Psycha Siada","Points":10019,"X":332,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96076Z"},{"ID":51341,"Name":"PiekƂo to inni","Points":3016,"X":654,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96076Z"},{"ID":51342,"Name":".achim.","Points":5610,"X":566,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960761Z"},{"ID":51343,"Name":"C045","Points":7791,"X":372,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960761Z"},{"ID":51344,"Name":"7. Maribor","Points":5358,"X":602,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960762Z"},{"ID":51345,"Name":"o011","Points":9959,"X":615,"Y":686,"Continent":"K66","Bonus":1,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960763Z"},{"ID":51346,"Name":"Psycha Siada","Points":8533,"X":338,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960763Z"},{"ID":51347,"Name":"04Wioska barbarzyƄska","Points":9128,"X":362,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960764Z"},{"ID":51348,"Name":"008 | North","Points":5999,"X":374,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960765Z"},{"ID":51349,"Name":"008","Points":3682,"X":659,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960765Z"},{"ID":51350,"Name":"###144###","Points":10495,"X":607,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960766Z"},{"ID":51351,"Name":"Avanti!","Points":8390,"X":278,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960766Z"},{"ID":51352,"Name":"Wioska005","Points":10113,"X":688,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960767Z"},{"ID":51354,"Name":"Wioska barbarzyƄska","Points":5827,"X":714,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960767Z"},{"ID":51355,"Name":"osada","Points":1550,"X":418,"Y":709,"Continent":"K74","Bonus":2,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960768Z"},{"ID":51356,"Name":"DZIMMMIi","Points":9724,"X":335,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":849101135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960769Z"},{"ID":51357,"Name":"No.27","Points":769,"X":475,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960769Z"},{"ID":51358,"Name":"029.","Points":10838,"X":466,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96077Z"},{"ID":51360,"Name":"0140","Points":2539,"X":690,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960771Z"},{"ID":51361,"Name":"006","Points":6242,"X":298,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960771Z"},{"ID":51362,"Name":"Wioska barbarzyƄska","Points":3440,"X":474,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960772Z"},{"ID":51363,"Name":"0070","Points":4887,"X":697,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960772Z"},{"ID":51364,"Name":"Wioska barbarzyƄska","Points":2090,"X":720,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960773Z"},{"ID":51365,"Name":"azi1","Points":7839,"X":460,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":849094759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960774Z"},{"ID":51366,"Name":"Nowy początek","Points":11622,"X":463,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":849104546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960774Z"},{"ID":51367,"Name":"Wioska barbarzyƄska","Points":10019,"X":712,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960775Z"},{"ID":51368,"Name":"-08-","Points":9472,"X":582,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960775Z"},{"ID":51369,"Name":"ZƂoty ƚwit","Points":5885,"X":579,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960776Z"},{"ID":51370,"Name":"059.","Points":2847,"X":628,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960777Z"},{"ID":51371,"Name":"Wioska4 barbarzyƄska","Points":5043,"X":697,"Y":413,"Continent":"K46","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960777Z"},{"ID":51372,"Name":"Wioska barbarzyƄska","Points":6441,"X":714,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960778Z"},{"ID":51373,"Name":"MANUO","Points":9561,"X":619,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960779Z"},{"ID":51374,"Name":"=|17|=","Points":10495,"X":651,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960779Z"},{"ID":51375,"Name":"Wioska barbarzyƄska","Points":11283,"X":718,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96078Z"},{"ID":51376,"Name":"ZZZ .::. cinek3456/04","Points":10200,"X":582,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960781Z"},{"ID":51377,"Name":"weiBer Hase","Points":4351,"X":527,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960782Z"},{"ID":51378,"Name":"Wioska barbarzyƄska","Points":4672,"X":722,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960782Z"},{"ID":51379,"Name":"O078","Points":9887,"X":333,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960783Z"},{"ID":51380,"Name":"Psycha Siada","Points":5429,"X":446,"Y":665,"Continent":"K64","Bonus":0,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960783Z"},{"ID":51381,"Name":"003","Points":2793,"X":321,"Y":379,"Continent":"K33","Bonus":9,"PlayerID":7919620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960784Z"},{"ID":51382,"Name":"XDe","Points":5992,"X":326,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960785Z"},{"ID":51383,"Name":"Wioska tomnado","Points":9830,"X":674,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960785Z"},{"ID":51384,"Name":"Wioska 006","Points":4281,"X":670,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960786Z"},{"ID":51385,"Name":"Ć»UBEREK 005 rt27","Points":10242,"X":617,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960787Z"},{"ID":51386,"Name":"071.","Points":3190,"X":715,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960787Z"},{"ID":51387,"Name":"t015","Points":7752,"X":667,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960788Z"},{"ID":51388,"Name":"Avanti!","Points":6770,"X":281,"Y":471,"Continent":"K42","Bonus":7,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960789Z"},{"ID":51389,"Name":"New WorldA","Points":5061,"X":280,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960789Z"},{"ID":51390,"Name":"MojeDnoToWaszSzczyt","Points":9947,"X":509,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96079Z"},{"ID":51392,"Name":"Wioska barbarzyƄska","Points":5418,"X":396,"Y":300,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960791Z"},{"ID":51393,"Name":"016","Points":5845,"X":655,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960791Z"},{"ID":51394,"Name":"!36 65 Corocaiesti","Points":4478,"X":652,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960792Z"},{"ID":51395,"Name":"WOLA0101","Points":7297,"X":679,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960792Z"},{"ID":51398,"Name":"*021*","Points":3621,"X":683,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960793Z"},{"ID":51399,"Name":"0061.","Points":7169,"X":450,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960794Z"},{"ID":51400,"Name":"119 invidia","Points":10236,"X":507,"Y":723,"Continent":"K75","Bonus":4,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960794Z"},{"ID":51403,"Name":"Wioska barbarzyƄska","Points":2192,"X":279,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":699812351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960795Z"},{"ID":51404,"Name":"Lord Arsey KING","Points":10285,"X":653,"Y":660,"Continent":"K66","Bonus":6,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960796Z"},{"ID":51405,"Name":"Wioska barbarzyƄska","Points":7081,"X":411,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960796Z"},{"ID":51406,"Name":"Wioska 023","Points":3827,"X":667,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960797Z"},{"ID":51407,"Name":"New World","Points":9799,"X":418,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960798Z"},{"ID":51408,"Name":".achim.","Points":8600,"X":471,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960798Z"},{"ID":51409,"Name":"rafisonik7","Points":4685,"X":510,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960799Z"},{"ID":51410,"Name":"001","Points":10795,"X":659,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9608Z"},{"ID":51411,"Name":"Wioska barbarzyƄska","Points":3662,"X":293,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9608Z"},{"ID":51412,"Name":"185","Points":6937,"X":384,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960801Z"},{"ID":51413,"Name":"PóƂnocny Bagdad","Points":9835,"X":616,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960802Z"},{"ID":51414,"Name":"Recreational Facility","Points":6364,"X":515,"Y":608,"Continent":"K65","Bonus":0,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960802Z"},{"ID":51415,"Name":"Taran","Points":7172,"X":322,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960803Z"},{"ID":51416,"Name":"Gryfios 098","Points":11460,"X":720,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960804Z"},{"ID":51417,"Name":"Wioska barbarzyƄska","Points":3697,"X":301,"Y":586,"Continent":"K53","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960804Z"},{"ID":51418,"Name":"#0305 wancki i gustlikk dar","Points":6446,"X":482,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960805Z"},{"ID":51419,"Name":"=097= Wioska barbarzyƄska","Points":7080,"X":700,"Y":596,"Continent":"K57","Bonus":9,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960805Z"},{"ID":51420,"Name":"Avanti!","Points":5552,"X":278,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960806Z"},{"ID":51421,"Name":"15 Cezarleon.","Points":9811,"X":290,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960807Z"},{"ID":51422,"Name":"MojeDnoToWaszSzczyt","Points":9812,"X":488,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960807Z"},{"ID":51423,"Name":"Bagno","Points":4578,"X":354,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960808Z"},{"ID":51424,"Name":"WBar","Points":6359,"X":285,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960808Z"},{"ID":51426,"Name":"Ow Konfederacja","Points":4775,"X":604,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960809Z"},{"ID":51427,"Name":"032","Points":2762,"X":677,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960809Z"},{"ID":51428,"Name":"Wioska EmilPraski","Points":8604,"X":618,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":699857387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96081Z"},{"ID":51429,"Name":"C0230","Points":8717,"X":279,"Y":546,"Continent":"K52","Bonus":6,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960811Z"},{"ID":51432,"Name":"-18-","Points":6182,"X":577,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960811Z"},{"ID":51433,"Name":"8. Sunfyre","Points":226,"X":297,"Y":591,"Continent":"K52","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960812Z"},{"ID":51435,"Name":"C024","Points":8874,"X":356,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960813Z"},{"ID":51436,"Name":"Komandos","Points":10054,"X":643,"Y":665,"Continent":"K66","Bonus":5,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960813Z"},{"ID":51437,"Name":"KoƛcióƂ na gĂłrce","Points":8917,"X":681,"Y":545,"Continent":"K56","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960814Z"},{"ID":51438,"Name":"KONFA TO MARKA, NARKA","Points":10306,"X":288,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960814Z"},{"ID":51439,"Name":"Wioska barbarzyƄska","Points":8319,"X":392,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960815Z"},{"ID":51440,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":289,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960815Z"},{"ID":51441,"Name":"Psycha Siada","Points":10019,"X":336,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960816Z"},{"ID":51444,"Name":"Wioska 18","Points":2602,"X":692,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960817Z"},{"ID":51445,"Name":"Bagno 29","Points":8178,"X":481,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960817Z"},{"ID":51446,"Name":"=034= Wioska barbarzyƄska","Points":10575,"X":708,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960818Z"},{"ID":51447,"Name":"Zzz 07 koniec blisko","Points":7470,"X":290,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960818Z"},{"ID":51448,"Name":"K24 - [001] Before Land","Points":4973,"X":470,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960819Z"},{"ID":51449,"Name":"Wioska barbarzyƄska","Points":3922,"X":323,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96082Z"},{"ID":51450,"Name":"Avanti!","Points":7016,"X":279,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96082Z"},{"ID":51451,"Name":"013","Points":9966,"X":725,"Y":494,"Continent":"K47","Bonus":1,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960821Z"},{"ID":51452,"Name":"ZZZ .::. cinek3456/03","Points":10194,"X":584,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960821Z"},{"ID":51453,"Name":"4. Wyzima","Points":6043,"X":606,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960822Z"},{"ID":51454,"Name":"Avanti!","Points":5523,"X":281,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960822Z"},{"ID":51455,"Name":"Magiczne koszary","Points":9809,"X":462,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960823Z"},{"ID":51457,"Name":"Lord Arsey KING","Points":9478,"X":654,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960824Z"},{"ID":51458,"Name":"XXXX","Points":10311,"X":561,"Y":292,"Continent":"K25","Bonus":6,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960824Z"},{"ID":51459,"Name":"Winter is coming","Points":4682,"X":463,"Y":604,"Continent":"K64","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960825Z"},{"ID":51460,"Name":"Motorola 04","Points":7772,"X":366,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960826Z"},{"ID":51461,"Name":"0062","Points":9292,"X":450,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960826Z"},{"ID":51462,"Name":"Wioska barbarzyƄska","Points":3578,"X":726,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960827Z"},{"ID":51463,"Name":"Wioska 1","Points":3716,"X":546,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960828Z"},{"ID":51464,"Name":"Ludzka przypadƂoƛć","Points":2372,"X":694,"Y":401,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960828Z"},{"ID":51465,"Name":"030","Points":4191,"X":301,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960829Z"},{"ID":51466,"Name":"005","Points":3403,"X":695,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960829Z"},{"ID":51468,"Name":"089 Wioska barbarzyƄska","Points":7376,"X":544,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96083Z"},{"ID":51469,"Name":"38. Hakland","Points":9196,"X":714,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96083Z"},{"ID":51470,"Name":"KONFA TO MARKA, NARKA","Points":9601,"X":284,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960831Z"},{"ID":51471,"Name":"007 Victoria","Points":10065,"X":671,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960832Z"},{"ID":51472,"Name":"Wioska barbarzyƄska","Points":1515,"X":317,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960832Z"},{"ID":51473,"Name":"3.Leicester","Points":9949,"X":566,"Y":716,"Continent":"K75","Bonus":1,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960833Z"},{"ID":51474,"Name":"wioska wilka 01","Points":10809,"X":717,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":6786449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960833Z"},{"ID":51475,"Name":"New World","Points":10291,"X":413,"Y":707,"Continent":"K74","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960834Z"},{"ID":51476,"Name":"=0027=","Points":8303,"X":395,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960835Z"},{"ID":51477,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":553,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960835Z"},{"ID":51478,"Name":"020","Points":8870,"X":482,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699238479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960836Z"},{"ID":51479,"Name":"ZƂoty ƚwit","Points":8057,"X":579,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960836Z"},{"ID":51480,"Name":"Kurnik","Points":10481,"X":466,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960837Z"},{"ID":51481,"Name":"X006","Points":7199,"X":713,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960837Z"},{"ID":51482,"Name":"Orgetoryks","Points":9577,"X":329,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":848998530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960838Z"},{"ID":51483,"Name":"Avanti!","Points":5970,"X":284,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960839Z"},{"ID":51484,"Name":"#Kresy","Points":5726,"X":629,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960839Z"},{"ID":51485,"Name":"O073","Points":9871,"X":330,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96084Z"},{"ID":51486,"Name":"North 005","Points":10311,"X":516,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96084Z"},{"ID":51487,"Name":"=023= Osada koczownikĂłw","Points":8560,"X":709,"Y":573,"Continent":"K57","Bonus":1,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960841Z"},{"ID":51488,"Name":"Tomekrol","Points":7517,"X":702,"Y":597,"Continent":"K57","Bonus":0,"PlayerID":849096334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960842Z"},{"ID":51489,"Name":"002a","Points":4475,"X":300,"Y":410,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960842Z"},{"ID":51490,"Name":"B004 Osada Ć»elazo","Points":9346,"X":713,"Y":460,"Continent":"K47","Bonus":3,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960843Z"},{"ID":51491,"Name":"Wioska wilka 03","Points":9790,"X":717,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":6786449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960843Z"},{"ID":51492,"Name":"Wioska barbarzyƄska","Points":6925,"X":559,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960844Z"},{"ID":51493,"Name":"Zzz 09 kom","Points":3609,"X":287,"Y":568,"Continent":"K52","Bonus":2,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960844Z"},{"ID":51494,"Name":"0112","Points":10216,"X":374,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960845Z"},{"ID":51495,"Name":"Wioska barbarzyƄska","Points":3654,"X":294,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960846Z"},{"ID":51496,"Name":"024","Points":10160,"X":715,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960846Z"},{"ID":51497,"Name":"Wioska barbarzyƄska","Points":5569,"X":425,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960847Z"},{"ID":51498,"Name":"#0156 lukas041","Points":3813,"X":479,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960847Z"},{"ID":51499,"Name":"W50","Points":2069,"X":694,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960848Z"},{"ID":51500,"Name":"###145###","Points":10495,"X":590,"Y":696,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960848Z"},{"ID":51501,"Name":"000","Points":10495,"X":612,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960849Z"},{"ID":51502,"Name":"007 crisyss","Points":3303,"X":526,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96085Z"},{"ID":51503,"Name":"022. Gloria Victis","Points":11130,"X":284,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96085Z"},{"ID":51504,"Name":"=098= Wioska barbarzyƄska","Points":3768,"X":708,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960851Z"},{"ID":51505,"Name":"Wioska barbarzyƄska","Points":8852,"X":703,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960851Z"},{"ID":51506,"Name":"Wioska barbarzyƄska","Points":7564,"X":714,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960852Z"},{"ID":51507,"Name":"S021","Points":4386,"X":691,"Y":599,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960852Z"},{"ID":51508,"Name":"#0123 Gaj","Points":6319,"X":480,"Y":536,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960853Z"},{"ID":51509,"Name":"A-005","Points":5189,"X":319,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960854Z"},{"ID":51510,"Name":"Wioska barbarzyƄska","Points":2162,"X":280,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960854Z"},{"ID":51511,"Name":"11_Franekkimono510_11","Points":1121,"X":368,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":849099422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960855Z"},{"ID":51512,"Name":"Wioska barbarzyƄska","Points":6634,"X":473,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":699196829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960855Z"},{"ID":51513,"Name":"Wioska =Wilku=","Points":11898,"X":717,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":6786449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960856Z"},{"ID":51514,"Name":"062","Points":10495,"X":402,"Y":696,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960856Z"},{"ID":51515,"Name":"Zeta Reticuli W","Points":3952,"X":361,"Y":407,"Continent":"K43","Bonus":0,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960857Z"},{"ID":51516,"Name":"Mordownia 5","Points":7933,"X":703,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960858Z"},{"ID":51517,"Name":"Trunks Super Saiyan 001","Points":8464,"X":520,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960858Z"},{"ID":51518,"Name":":... 1 ...:","Points":8029,"X":514,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849051976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960859Z"},{"ID":51519,"Name":"###146###","Points":10495,"X":608,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96086Z"},{"ID":51520,"Name":"Gattacka","Points":9549,"X":612,"Y":420,"Continent":"K46","Bonus":0,"PlayerID":699298370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96086Z"},{"ID":51521,"Name":"[816] Odludzie","Points":6913,"X":710,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960861Z"},{"ID":51522,"Name":"000","Points":7174,"X":395,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960861Z"},{"ID":51523,"Name":"New World","Points":10292,"X":426,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960862Z"},{"ID":51524,"Name":"161","Points":5890,"X":383,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960862Z"},{"ID":51525,"Name":"WOLA0001","Points":9488,"X":679,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960863Z"},{"ID":51526,"Name":"Wioska barbarzyƄska","Points":4648,"X":375,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960864Z"},{"ID":51527,"Name":"PiekƂo to inni","Points":4508,"X":637,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960864Z"},{"ID":51528,"Name":"Koala0o1","Points":9592,"X":364,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960865Z"},{"ID":51529,"Name":"Wioska barbarzyƄska","Points":5751,"X":553,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960866Z"},{"ID":51530,"Name":"xxx","Points":9283,"X":400,"Y":699,"Continent":"K64","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960866Z"},{"ID":51531,"Name":"006 | North","Points":10019,"X":374,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960867Z"},{"ID":51532,"Name":"KONFA TO MARKA, NARKA","Points":10252,"X":285,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960867Z"},{"ID":51533,"Name":"010","Points":4749,"X":609,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960868Z"},{"ID":51534,"Name":"Osada 14","Points":8364,"X":711,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960868Z"},{"ID":51535,"Name":"Avanti!","Points":6204,"X":282,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960869Z"},{"ID":51537,"Name":"Nowe Dobra - budowa","Points":7300,"X":687,"Y":628,"Continent":"K66","Bonus":1,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96087Z"},{"ID":51538,"Name":"Wioska barbarzyƄska","Points":4428,"X":723,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96087Z"},{"ID":51539,"Name":"Kurnik","Points":7511,"X":420,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960871Z"},{"ID":51540,"Name":"077","Points":10548,"X":694,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":699316421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960871Z"},{"ID":51541,"Name":"#0237 colt9","Points":9335,"X":436,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960872Z"},{"ID":51542,"Name":"rycho100","Points":9025,"X":695,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960872Z"},{"ID":51543,"Name":"MojeDnoToWaszSzczyt","Points":9954,"X":497,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960873Z"},{"ID":51544,"Name":"309","Points":2328,"X":448,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960874Z"},{"ID":51545,"Name":"#3 Wioska barbarzyƄska","Points":5039,"X":635,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":849099517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960875Z"},{"ID":51546,"Name":"MojeDnoToWaszSzczyt","Points":9959,"X":491,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960875Z"},{"ID":51547,"Name":".Sajonaura","Points":10495,"X":472,"Y":501,"Continent":"K54","Bonus":0,"PlayerID":699781762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960876Z"},{"ID":51548,"Name":"Klatka3","Points":3986,"X":620,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960876Z"},{"ID":51549,"Name":"0451","Points":10083,"X":556,"Y":612,"Continent":"K65","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960877Z"},{"ID":51550,"Name":"022","Points":2857,"X":666,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960878Z"},{"ID":51551,"Name":"101. Armekt","Points":12001,"X":673,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960878Z"},{"ID":51552,"Name":"Szlachcic","Points":4468,"X":354,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960879Z"},{"ID":51553,"Name":"001. Chelsea","Points":10495,"X":494,"Y":646,"Continent":"K64","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960879Z"},{"ID":51554,"Name":"061","Points":1101,"X":690,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96088Z"},{"ID":51555,"Name":"D021","Points":3526,"X":560,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960881Z"},{"ID":51556,"Name":"PiekƂo to inni","Points":5263,"X":652,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960881Z"},{"ID":51557,"Name":"Wioska Luk10iD","Points":2668,"X":680,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960882Z"},{"ID":51558,"Name":"065 Wioska barbarzyƄska","Points":4208,"X":347,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960882Z"},{"ID":51559,"Name":"CiemnogrĂłd #2","Points":8293,"X":331,"Y":363,"Continent":"K33","Bonus":2,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960883Z"},{"ID":51560,"Name":"PóƂnocny Bagdad","Points":6479,"X":622,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960883Z"},{"ID":51561,"Name":"X001 WehikuƂ czasu","Points":8951,"X":709,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960884Z"},{"ID":51562,"Name":"Bida","Points":1912,"X":304,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960885Z"},{"ID":51563,"Name":"Zaplątany.","Points":5185,"X":283,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":849001277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960885Z"},{"ID":51564,"Name":"Wioska barbarzyƄska","Points":9744,"X":546,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960886Z"},{"ID":51565,"Name":"Wioska barbarzyƄska","Points":7277,"X":710,"Y":583,"Continent":"K57","Bonus":9,"PlayerID":698845189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960886Z"},{"ID":51566,"Name":"...","Points":7251,"X":335,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":699657450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960887Z"},{"ID":51567,"Name":"Ghostmane5","Points":2490,"X":719,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960887Z"},{"ID":51568,"Name":"Mordownia","Points":11713,"X":705,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960888Z"},{"ID":51569,"Name":"C.054","Points":3684,"X":724,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960889Z"},{"ID":51570,"Name":"Wioska barbarzyƄska","Points":6990,"X":429,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960889Z"},{"ID":51571,"Name":"00000ZƂoty ƛwit","Points":10119,"X":586,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96089Z"},{"ID":51572,"Name":"PoƂudniowy WschĂłd 007","Points":1721,"X":691,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96089Z"},{"ID":51573,"Name":"Wioska barbarzyƄska","Points":9651,"X":324,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960891Z"},{"ID":51574,"Name":"Początek","Points":3191,"X":298,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960892Z"},{"ID":51575,"Name":"Avanti!","Points":2639,"X":283,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960892Z"},{"ID":51577,"Name":"Wioska barbarzyƄska","Points":6820,"X":716,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960893Z"},{"ID":51578,"Name":"Wioska barbarzyƄska","Points":1109,"X":658,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960893Z"},{"ID":51579,"Name":"B002","Points":9384,"X":521,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960894Z"},{"ID":51580,"Name":"013","Points":10495,"X":400,"Y":693,"Continent":"K64","Bonus":3,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960895Z"},{"ID":51581,"Name":"086 rexanty2","Points":4918,"X":715,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960895Z"},{"ID":51582,"Name":"Wioska barbarzyƄska","Points":8297,"X":301,"Y":596,"Continent":"K53","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960896Z"},{"ID":51583,"Name":"Wioska barbarzyƄska","Points":4649,"X":722,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960897Z"},{"ID":51584,"Name":"035 Wioska barbarzyƄska","Points":9899,"X":543,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960897Z"},{"ID":51585,"Name":"Wioska barbarzyƄska","Points":5836,"X":717,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960898Z"},{"ID":51586,"Name":"Flap","Points":3109,"X":601,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960898Z"},{"ID":51587,"Name":"C046","Points":5394,"X":364,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960899Z"},{"ID":51589,"Name":"020","Points":3364,"X":290,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960899Z"},{"ID":51590,"Name":"Wioska majku 6","Points":3758,"X":412,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9609Z"},{"ID":51591,"Name":"New World","Points":10294,"X":432,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9609Z"},{"ID":51592,"Name":"CiemnogrĂłd #4","Points":7723,"X":334,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":849096958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960901Z"},{"ID":51593,"Name":"016","Points":653,"X":303,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960902Z"},{"ID":51594,"Name":"|D| Baywell","Points":4534,"X":456,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960902Z"},{"ID":51595,"Name":"Jupi","Points":1335,"X":279,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960903Z"},{"ID":51596,"Name":"PiekƂo to inni","Points":2357,"X":657,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960903Z"},{"ID":51597,"Name":"C.055","Points":4381,"X":722,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960904Z"},{"ID":51598,"Name":"Zielonka","Points":9474,"X":465,"Y":306,"Continent":"K34","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960905Z"},{"ID":51599,"Name":"Arehukas","Points":10247,"X":379,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960905Z"},{"ID":51600,"Name":"New World","Points":7710,"X":423,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960906Z"},{"ID":51601,"Name":"Wioska006","Points":5641,"X":689,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960907Z"},{"ID":51602,"Name":"Wioska denver72","Points":5948,"X":296,"Y":583,"Continent":"K52","Bonus":0,"PlayerID":699671197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960907Z"},{"ID":51603,"Name":"sami swoi 2","Points":5017,"X":411,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960908Z"},{"ID":51604,"Name":"Wioska barbarzyƄska","Points":2296,"X":490,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699744012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960908Z"},{"ID":51605,"Name":"Wioska Miko6","Points":1547,"X":286,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960909Z"},{"ID":51606,"Name":"119.Stradi","Points":10495,"X":443,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960909Z"},{"ID":51607,"Name":"Motorola 07","Points":3751,"X":364,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96091Z"},{"ID":51608,"Name":"#001","Points":9398,"X":553,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960911Z"},{"ID":51609,"Name":"Osada koczownikĂłw","Points":9630,"X":624,"Y":321,"Continent":"K36","Bonus":8,"PlayerID":7555180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960911Z"},{"ID":51611,"Name":"036 KTW","Points":3022,"X":720,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960912Z"},{"ID":51612,"Name":"115","Points":9143,"X":396,"Y":696,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960913Z"},{"ID":51613,"Name":"Wioska katoryjcias","Points":9408,"X":726,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960913Z"},{"ID":51614,"Name":"MojeDnoToWaszSzczyt","Points":9963,"X":501,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960914Z"},{"ID":51615,"Name":"EKG M11 sebastia","Points":10354,"X":484,"Y":606,"Continent":"K64","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960914Z"},{"ID":51616,"Name":"Kiedyƛ Wielki Wojownik","Points":1264,"X":327,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960915Z"},{"ID":51617,"Name":"074 Wioska barbarzyƄska","Points":10178,"X":540,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960915Z"},{"ID":51618,"Name":"#0250 colt9","Points":6055,"X":439,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960916Z"},{"ID":51619,"Name":"Wioska barbarzyƄska","Points":2980,"X":625,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":699699601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960917Z"},{"ID":51620,"Name":"Wioska barbarzyƄska","Points":3994,"X":368,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960917Z"},{"ID":51621,"Name":"0011 Wioska Kaczorek69","Points":9737,"X":501,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960918Z"},{"ID":51622,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":289,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960918Z"},{"ID":51623,"Name":"xxx2","Points":5254,"X":701,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960919Z"},{"ID":51624,"Name":"#0241 colt9","Points":5978,"X":437,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960919Z"},{"ID":51625,"Name":"BOA5","Points":2851,"X":307,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96092Z"},{"ID":51626,"Name":"024.","Points":10838,"X":469,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960921Z"},{"ID":51627,"Name":"Wioska barbarzyƄska","Points":6995,"X":430,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960921Z"},{"ID":51629,"Name":"044 Wioska barbarzyƄska","Points":9835,"X":540,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960922Z"},{"ID":51630,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":285,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960922Z"},{"ID":51631,"Name":"-29-","Points":3162,"X":565,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960923Z"},{"ID":51632,"Name":"Wiocha II","Points":3028,"X":335,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849106316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960923Z"},{"ID":51633,"Name":"Wioska barbarzyƄska V","Points":1843,"X":627,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":848958556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960924Z"},{"ID":51634,"Name":"Wioska 3dychy","Points":4727,"X":380,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":6821136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960925Z"},{"ID":51635,"Name":"#K75 0029","Points":4987,"X":523,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960925Z"},{"ID":51637,"Name":"005 E","Points":4766,"X":306,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960926Z"},{"ID":51638,"Name":"U.008","Points":6164,"X":289,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960926Z"},{"ID":51639,"Name":"085 rexanty1","Points":4920,"X":714,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960927Z"},{"ID":51640,"Name":"Wioska barbarzyƄska","Points":2204,"X":293,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960928Z"},{"ID":51641,"Name":"Wioska AlfaCentauri","Points":30,"X":306,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":849036055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960928Z"},{"ID":51642,"Name":"Wioska15","Points":4808,"X":709,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960929Z"},{"ID":51643,"Name":"2. Obj.268D","Points":5494,"X":496,"Y":535,"Continent":"K54","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960929Z"},{"ID":51644,"Name":"P3Kasik","Points":2090,"X":281,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":699627771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96093Z"},{"ID":51645,"Name":"0035","Points":5086,"X":491,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96093Z"},{"ID":51646,"Name":"Wioska barbarzyƄska","Points":10019,"X":712,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960931Z"},{"ID":51647,"Name":"133","Points":7842,"X":386,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960932Z"},{"ID":51649,"Name":"--045--","Points":3152,"X":576,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960932Z"},{"ID":51650,"Name":"030. Gloria Victis","Points":6926,"X":288,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960933Z"},{"ID":51651,"Name":"PiekƂo to inni","Points":6188,"X":645,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960933Z"},{"ID":51652,"Name":"Wioska - 006 -","Points":1373,"X":534,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960934Z"},{"ID":51653,"Name":"Tabasko","Points":6646,"X":708,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960934Z"},{"ID":51654,"Name":"010. Vaclav the Prague","Points":10345,"X":463,"Y":720,"Continent":"K74","Bonus":5,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960935Z"},{"ID":51655,"Name":"MANUO 2","Points":4309,"X":617,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960936Z"},{"ID":51656,"Name":"KRÓL PAPI WIELKI","Points":6218,"X":723,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960936Z"},{"ID":51658,"Name":"KRÓL PAPI WIELKI","Points":6250,"X":673,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960937Z"},{"ID":51659,"Name":"073 invidia","Points":5826,"X":548,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960938Z"},{"ID":51660,"Name":"Kurnik","Points":9440,"X":448,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960938Z"},{"ID":51661,"Name":"Tyko tyle","Points":1119,"X":693,"Y":404,"Continent":"K46","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960939Z"},{"ID":51662,"Name":"Flap","Points":4057,"X":607,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960939Z"},{"ID":51663,"Name":"053 Wioska barbarzyƄska","Points":9835,"X":550,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96094Z"},{"ID":51665,"Name":"Wioska barbarzyƄska 010","Points":4822,"X":564,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96094Z"},{"ID":51666,"Name":"003","Points":4580,"X":304,"Y":608,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960941Z"},{"ID":51667,"Name":"#0239 colt9","Points":6113,"X":438,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960942Z"},{"ID":51668,"Name":"FP040","Points":5080,"X":469,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960942Z"},{"ID":51669,"Name":"003","Points":6372,"X":297,"Y":408,"Continent":"K42","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960943Z"},{"ID":51670,"Name":"Wioska barbarzyƄska","Points":2011,"X":277,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960944Z"},{"ID":51671,"Name":"UTAPAU","Points":4157,"X":540,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960944Z"},{"ID":51673,"Name":"Wioska barbarzyƄska","Points":5020,"X":418,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960945Z"},{"ID":51675,"Name":"KONFA TO MARKA, NARKA","Points":7327,"X":291,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960945Z"},{"ID":51676,"Name":"22. Brugge","Points":7192,"X":722,"Y":539,"Continent":"K57","Bonus":7,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960946Z"},{"ID":51677,"Name":"Wincy94","Points":8108,"X":649,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":849048734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960947Z"},{"ID":51678,"Name":"Wioska BenyZSZ","Points":989,"X":277,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":699614027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960947Z"},{"ID":51679,"Name":"New WorldA","Points":4052,"X":282,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960948Z"},{"ID":51680,"Name":"Wioska barbarzyƄska","Points":5196,"X":311,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960948Z"},{"ID":51681,"Name":"SPOCENI KUZYNI","Points":2455,"X":423,"Y":648,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960949Z"},{"ID":51682,"Name":"Zzz 06 tu nic nie ma","Points":5754,"X":292,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960949Z"},{"ID":51683,"Name":"North K25","Points":5384,"X":524,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96095Z"},{"ID":51684,"Name":"PóƂnocny Bagdad","Points":7000,"X":624,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960951Z"},{"ID":51685,"Name":"0026","Points":2627,"X":292,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960951Z"},{"ID":51686,"Name":"Wioska barbarzyƄska","Points":1849,"X":347,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960952Z"},{"ID":51687,"Name":"006 Autara","Points":8886,"X":671,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960953Z"},{"ID":51688,"Name":"*001","Points":10337,"X":676,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960953Z"},{"ID":51689,"Name":"xxx","Points":9422,"X":644,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960954Z"},{"ID":51690,"Name":"010 - Budowanko!","Points":6564,"X":490,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960954Z"},{"ID":51691,"Name":"6.F","Points":2749,"X":531,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960955Z"},{"ID":51692,"Name":"Wioska barbarzyƄska","Points":5215,"X":320,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960956Z"},{"ID":51694,"Name":"Wioska 0012","Points":10375,"X":343,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960956Z"},{"ID":51695,"Name":"EMERYTOWANY KUZYN","Points":3120,"X":433,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":848913998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960957Z"},{"ID":51696,"Name":"shizior 006","Points":3242,"X":424,"Y":639,"Continent":"K64","Bonus":0,"PlayerID":849089459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960957Z"},{"ID":51697,"Name":"058 Wioska barbarzyƄska","Points":9835,"X":553,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960958Z"},{"ID":51698,"Name":"C056","Points":6924,"X":371,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960959Z"},{"ID":51699,"Name":"#0077","Points":4996,"X":570,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960959Z"},{"ID":51700,"Name":"Wioska barbarzyƄska","Points":4440,"X":395,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96096Z"},{"ID":51701,"Name":"Motorola 08","Points":4222,"X":363,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960961Z"},{"ID":51702,"Name":"Wioska barbarzyƄska","Points":4221,"X":726,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960961Z"},{"ID":51703,"Name":"017","Points":527,"X":303,"Y":402,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960962Z"},{"ID":51704,"Name":"055 Wioska barbarzyƄska","Points":4296,"X":347,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960962Z"},{"ID":51706,"Name":"Klatka8","Points":5445,"X":627,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960963Z"},{"ID":51707,"Name":"MojeDnoToWaszSzczyt","Points":6059,"X":486,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960963Z"},{"ID":51708,"Name":"#0151 barbarzyƄska","Points":4945,"X":480,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960964Z"},{"ID":51709,"Name":"15. Lyria","Points":9814,"X":698,"Y":550,"Continent":"K56","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960965Z"},{"ID":51710,"Name":"EO EO","Points":9066,"X":277,"Y":492,"Continent":"K42","Bonus":4,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960965Z"},{"ID":51711,"Name":"Wiadro04","Points":9048,"X":676,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960966Z"},{"ID":51713,"Name":"001","Points":7120,"X":367,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":698182935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960966Z"},{"ID":51714,"Name":"Avanti!","Points":5894,"X":282,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960967Z"},{"ID":51715,"Name":"A-008","Points":3735,"X":318,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960968Z"},{"ID":51716,"Name":"Wioska Dominator2014","Points":333,"X":380,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960968Z"},{"ID":51717,"Name":"Parking9","Points":3892,"X":620,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960969Z"},{"ID":51718,"Name":"FORTONI","Points":10583,"X":673,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":3957237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960969Z"},{"ID":51719,"Name":"wyjazd","Points":3393,"X":704,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":698462285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96097Z"},{"ID":51720,"Name":"Kurnik","Points":6053,"X":447,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960971Z"},{"ID":51721,"Name":"Wioska barbarzyƄska","Points":7851,"X":712,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960971Z"},{"ID":51723,"Name":"Zzz 05 niespƂacam dƂugĂłw","Points":5072,"X":293,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960972Z"},{"ID":51724,"Name":"North 061","Points":5866,"X":512,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960972Z"},{"ID":51725,"Name":"Wioska - 004 -","Points":2611,"X":536,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960973Z"},{"ID":51726,"Name":"MƁODE ORƁY 003 zakręcona","Points":9385,"X":576,"Y":605,"Continent":"K65","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960973Z"},{"ID":51727,"Name":"012","Points":4019,"X":526,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960974Z"},{"ID":51729,"Name":"Wioska barbarzyƄska","Points":8637,"X":632,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960975Z"},{"ID":51730,"Name":"Nowy ƛwiat A","Points":516,"X":281,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960975Z"},{"ID":51731,"Name":"Nagato - B 001","Points":3758,"X":315,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":849094586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960976Z"},{"ID":51733,"Name":"Psycha Siada","Points":9835,"X":329,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960976Z"},{"ID":51734,"Name":"Wioska barbarzyƄska","Points":2049,"X":318,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960977Z"},{"ID":51735,"Name":"Wioska barbarzyƄska","Points":7118,"X":713,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960978Z"},{"ID":51736,"Name":"021 Osada koczownikĂłw","Points":9899,"X":548,"Y":285,"Continent":"K25","Bonus":6,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960978Z"},{"ID":51737,"Name":"Taran","Points":6500,"X":313,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960979Z"},{"ID":51738,"Name":"Mordownia 4","Points":9426,"X":706,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960979Z"},{"ID":51739,"Name":"mjrbordo","Points":5613,"X":562,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96098Z"},{"ID":51740,"Name":"Babidi #4","Points":4601,"X":375,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960981Z"},{"ID":51741,"Name":"Wioska barbarzyƄska","Points":3539,"X":283,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":8792844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960981Z"},{"ID":51742,"Name":"Wioska barbarzyƄska","Points":1566,"X":691,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":8622901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960982Z"},{"ID":51744,"Name":"Wioska MaƂa","Points":2125,"X":277,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":960100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960983Z"},{"ID":51745,"Name":"0103","Points":10216,"X":386,"Y":683,"Continent":"K63","Bonus":3,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960983Z"},{"ID":51746,"Name":"Wioska Player","Points":3682,"X":277,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960984Z"},{"ID":51747,"Name":"0076","Points":6090,"X":460,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960984Z"},{"ID":51748,"Name":"Wioska karlitos MMz","Points":4432,"X":279,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":849062546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960985Z"},{"ID":51749,"Name":"#0053","Points":8851,"X":574,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960985Z"},{"ID":51750,"Name":"Wioska barbarzyƄska","Points":3996,"X":722,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960986Z"},{"ID":51751,"Name":"Avanti!","Points":6326,"X":279,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960987Z"},{"ID":51752,"Name":"Barba","Points":10083,"X":322,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960987Z"},{"ID":51754,"Name":"S022","Points":4135,"X":693,"Y":597,"Continent":"K56","Bonus":0,"PlayerID":8428196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960988Z"},{"ID":51755,"Name":"A#019","Points":9797,"X":723,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960988Z"},{"ID":51756,"Name":"fajnie tu jest","Points":4352,"X":526,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960989Z"},{"ID":51757,"Name":"Wioska myrcin","Points":8320,"X":537,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849105071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960989Z"},{"ID":51758,"Name":"New World","Points":9913,"X":420,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96099Z"},{"ID":51759,"Name":"Wioska Kendal","Points":7865,"X":327,"Y":611,"Continent":"K63","Bonus":0,"PlayerID":849105072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960991Z"},{"ID":51760,"Name":"Wioska barbarzyƄska","Points":1868,"X":307,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960991Z"},{"ID":51761,"Name":"Kurnik","Points":6983,"X":444,"Y":714,"Continent":"K74","Bonus":4,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960992Z"},{"ID":51762,"Name":"0016","Points":2186,"X":681,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960992Z"},{"ID":51763,"Name":"078","Points":3725,"X":703,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960993Z"},{"ID":51764,"Name":"WoleƄcy","Points":9449,"X":370,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960994Z"},{"ID":51765,"Name":"Wioska barbarzyƄska","Points":6177,"X":477,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960994Z"},{"ID":51766,"Name":"0109","Points":1967,"X":693,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960995Z"},{"ID":51767,"Name":"Orgetoryks","Points":4691,"X":330,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":848998530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960995Z"},{"ID":51768,"Name":"-25-","Points":3841,"X":569,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960996Z"},{"ID":51769,"Name":"Lord Arsey KING","Points":4404,"X":655,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960996Z"},{"ID":51770,"Name":"005 Twierdza","Points":10019,"X":622,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960997Z"},{"ID":51771,"Name":"062 Wioska barbarzyƄska","Points":9835,"X":541,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960998Z"},{"ID":51772,"Name":"#0168 darmuwa","Points":6253,"X":470,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960998Z"},{"ID":51773,"Name":"35. Hannu","Points":6129,"X":722,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.960999Z"},{"ID":51774,"Name":"POCZĄTEK","Points":8905,"X":692,"Y":390,"Continent":"K36","Bonus":0,"PlayerID":8622901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961Z"},{"ID":51775,"Name":"006","Points":5344,"X":291,"Y":583,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961Z"},{"ID":51776,"Name":"040 - Budowanko!","Points":5555,"X":470,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961001Z"},{"ID":51777,"Name":"Psycha Siada","Points":10019,"X":329,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961001Z"},{"ID":51779,"Name":"022. Eagle Cap","Points":10232,"X":712,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961002Z"},{"ID":51780,"Name":"Wioska barbarzyƄska III","Points":2572,"X":277,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961002Z"},{"ID":51781,"Name":"Uaaaa","Points":6481,"X":310,"Y":555,"Continent":"K53","Bonus":0,"PlayerID":848901396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961003Z"},{"ID":51782,"Name":"X-Doom0","Points":6823,"X":623,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":8607734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961004Z"},{"ID":51783,"Name":"Lord Arsey KING","Points":4453,"X":651,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961004Z"},{"ID":51784,"Name":"Wioska Lepsi5","Points":3009,"X":654,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":7440474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961005Z"},{"ID":51785,"Name":"Wioska barbarzyƄska","Points":5076,"X":723,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961005Z"},{"ID":51786,"Name":"Wioska14.","Points":5484,"X":708,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961006Z"},{"ID":51787,"Name":"Flen","Points":3263,"X":295,"Y":403,"Continent":"K42","Bonus":0,"PlayerID":7259690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961007Z"},{"ID":51788,"Name":"PoƂudniowy WschĂłd 004","Points":2601,"X":696,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961007Z"},{"ID":51789,"Name":"Wioska 0025","Points":1001,"X":341,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961008Z"},{"ID":51790,"Name":"Wioska barbarzyƄska","Points":1510,"X":314,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961008Z"},{"ID":51791,"Name":"MADAGASKAR 01","Points":7627,"X":340,"Y":345,"Continent":"K33","Bonus":5,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961009Z"},{"ID":51792,"Name":"C034","Points":8147,"X":372,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961009Z"},{"ID":51793,"Name":"031 Legio XI Securis","Points":7417,"X":714,"Y":572,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96101Z"},{"ID":51794,"Name":"nowa 1","Points":2142,"X":626,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961011Z"},{"ID":51795,"Name":"barbarzyƄska","Points":1600,"X":281,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":8792844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961011Z"},{"ID":51796,"Name":"024. Fettuccine Alfredo.","Points":6486,"X":316,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961012Z"},{"ID":51797,"Name":"087 jagger23","Points":10661,"X":544,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961013Z"},{"ID":51798,"Name":"KIELBA 117","Points":5962,"X":464,"Y":583,"Continent":"K54","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961013Z"},{"ID":51799,"Name":"010","Points":9609,"X":293,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961014Z"},{"ID":51800,"Name":"Psycha Siada","Points":7401,"X":331,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961014Z"},{"ID":51801,"Name":"HWILA [5]","Points":2461,"X":632,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961015Z"},{"ID":51802,"Name":"Wioska damiano3106","Points":3460,"X":630,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961016Z"},{"ID":51803,"Name":"Wioska biosiekiery","Points":3738,"X":513,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":698934729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961016Z"},{"ID":51804,"Name":"W51","Points":1951,"X":693,"Y":396,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961017Z"},{"ID":51805,"Name":"[0260]","Points":5537,"X":280,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961018Z"},{"ID":51806,"Name":"*020","Points":4974,"X":676,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961018Z"},{"ID":51807,"Name":"025.","Points":9739,"X":472,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961019Z"},{"ID":51809,"Name":"Wioska barbarzyƄska","Points":1507,"X":556,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961019Z"},{"ID":51810,"Name":"Nowa Baza 10","Points":6980,"X":616,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96102Z"},{"ID":51811,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":534,"Y":628,"Continent":"K65","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96102Z"},{"ID":51812,"Name":"Wioska barbarzyƄska","Points":2898,"X":279,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961021Z"},{"ID":51813,"Name":"#005 New York","Points":3818,"X":316,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":849101276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961022Z"},{"ID":51814,"Name":"Psycha Siada","Points":8203,"X":335,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961022Z"},{"ID":51815,"Name":"#4 Wioska barbarzyƄska","Points":7145,"X":632,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":849099517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961023Z"},{"ID":51816,"Name":"New WorldA","Points":2306,"X":277,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961024Z"},{"ID":51817,"Name":"019. tƂuszczyk","Points":10237,"X":694,"Y":383,"Continent":"K36","Bonus":8,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961024Z"},{"ID":51818,"Name":"Wioska barbarzyƄska","Points":2827,"X":283,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961025Z"},{"ID":51819,"Name":"Wioska barbarzyƄska","Points":3893,"X":718,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961025Z"},{"ID":51820,"Name":"Wioska barbarzyƄska","Points":508,"X":374,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961026Z"},{"ID":51821,"Name":"072 invidia","Points":5781,"X":541,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961027Z"},{"ID":51822,"Name":"C119","Points":8563,"X":356,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961027Z"},{"ID":51824,"Name":"009","Points":4150,"X":301,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961028Z"},{"ID":51825,"Name":"35. Na rowerek","Points":1557,"X":370,"Y":571,"Continent":"K53","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961028Z"},{"ID":51826,"Name":"Lord Arsey KING","Points":3286,"X":660,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961029Z"},{"ID":51827,"Name":"North 039","Points":8074,"X":513,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96103Z"},{"ID":51828,"Name":"ZƂoty ƚwit","Points":10114,"X":590,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96103Z"},{"ID":51829,"Name":"Lord Arsey KING","Points":10595,"X":659,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961031Z"},{"ID":51830,"Name":"SOKzGUMIjagĂłd","Points":9805,"X":638,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":849059491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961031Z"},{"ID":51831,"Name":"P|005|","Points":4561,"X":457,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961032Z"},{"ID":51832,"Name":"Wioska Pracz 5","Points":5664,"X":311,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961033Z"},{"ID":51833,"Name":"Chojnik","Points":2354,"X":303,"Y":600,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961034Z"},{"ID":51834,"Name":"Wioska barbarzyƄska","Points":1449,"X":684,"Y":454,"Continent":"K46","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961034Z"},{"ID":51835,"Name":"ZZZ .::. cinek3456/07","Points":9971,"X":585,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961035Z"},{"ID":51836,"Name":"002","Points":2925,"X":365,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":698182935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961035Z"},{"ID":51837,"Name":"MERHET","Points":9951,"X":586,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961036Z"},{"ID":51839,"Name":".achim.","Points":6328,"X":567,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961037Z"},{"ID":51841,"Name":"Psycha Siada","Points":7763,"X":342,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961037Z"},{"ID":51842,"Name":"NP 07","Points":2188,"X":306,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961038Z"},{"ID":51843,"Name":"Wioska19","Points":4993,"X":334,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961038Z"},{"ID":51844,"Name":"KONFA TO MARKA, NARKA","Points":2237,"X":287,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961039Z"},{"ID":51845,"Name":"08 barbarzyƄska0","Points":9811,"X":283,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96104Z"},{"ID":51847,"Name":"004. Funghi","Points":8620,"X":318,"Y":373,"Continent":"K33","Bonus":8,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96104Z"},{"ID":51848,"Name":"027 Legio X Augusta","Points":7361,"X":710,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961041Z"},{"ID":51849,"Name":"Lord Arsey KING","Points":8666,"X":660,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961041Z"},{"ID":51850,"Name":"Wioska barbarzyƄska","Points":3102,"X":390,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961042Z"},{"ID":51851,"Name":"Aksjo 2","Points":1826,"X":559,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961043Z"},{"ID":51852,"Name":"0165","Points":2626,"X":385,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961043Z"},{"ID":51853,"Name":"KONFA TO MARKA, NARKA","Points":6929,"X":284,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961044Z"},{"ID":51855,"Name":"Wioska16","Points":8302,"X":333,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961044Z"},{"ID":51857,"Name":"#0087","Points":5510,"X":578,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961045Z"},{"ID":51858,"Name":"Szlachcic","Points":5649,"X":355,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961046Z"},{"ID":51859,"Name":"006 Twierdza","Points":10019,"X":621,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961046Z"},{"ID":51860,"Name":"Wioska Gigako","Points":8400,"X":557,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961047Z"},{"ID":51861,"Name":"#116#","Points":5942,"X":643,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961047Z"},{"ID":51862,"Name":"007","Points":8424,"X":533,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961048Z"},{"ID":51863,"Name":"Wioska barbarzyƄska","Points":3207,"X":462,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961048Z"},{"ID":51864,"Name":"40. Wioska 40","Points":7564,"X":288,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961049Z"},{"ID":51865,"Name":"Avanti!","Points":6869,"X":284,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96105Z"},{"ID":51866,"Name":"~~082~~","Points":2738,"X":682,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96105Z"},{"ID":51867,"Name":"[0261]","Points":5820,"X":281,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961051Z"},{"ID":51868,"Name":"073. Pola","Points":4495,"X":714,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961051Z"},{"ID":51869,"Name":"CastAway #011","Points":9818,"X":699,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961052Z"},{"ID":51870,"Name":"Kurnik","Points":9054,"X":462,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961053Z"},{"ID":51871,"Name":"Wioska barbarzyƄska","Points":3692,"X":376,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961053Z"},{"ID":51872,"Name":"006 JJ","Points":7229,"X":324,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961054Z"},{"ID":51873,"Name":"MojeDnoToWaszSzczyt","Points":9953,"X":500,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961054Z"},{"ID":51874,"Name":"DzieƄ dobry wieczĂłr","Points":8428,"X":471,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961055Z"},{"ID":51875,"Name":"Wioska barbarzyƄska","Points":7929,"X":708,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961056Z"},{"ID":51876,"Name":"013 JJ","Points":1735,"X":329,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961056Z"},{"ID":51877,"Name":".1.","Points":4786,"X":297,"Y":402,"Continent":"K42","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961057Z"},{"ID":51878,"Name":"[B]002","Points":9115,"X":417,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961057Z"},{"ID":51879,"Name":"Ave Why!","Points":859,"X":466,"Y":650,"Continent":"K64","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961058Z"},{"ID":51880,"Name":"Wioska barbarzyƄska","Points":8209,"X":712,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961058Z"},{"ID":51881,"Name":"Wioska barbarzyƄska 012","Points":7602,"X":378,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961059Z"},{"ID":51882,"Name":"PóƂnocny Bagdad","Points":4958,"X":620,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96106Z"},{"ID":51883,"Name":"C018","Points":6293,"X":546,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96106Z"},{"ID":51884,"Name":"...::181 04::...","Points":4613,"X":276,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961061Z"},{"ID":51885,"Name":"Wioska barbarzyƄska","Points":1523,"X":302,"Y":604,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961062Z"},{"ID":51886,"Name":"307","Points":1705,"X":392,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961062Z"},{"ID":51887,"Name":"New WorldA","Points":4352,"X":281,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961063Z"},{"ID":51888,"Name":"Wioska barbarzyƄska","Points":7285,"X":409,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961063Z"},{"ID":51889,"Name":"Wioska Bochun10","Points":6700,"X":322,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961064Z"},{"ID":51890,"Name":"058 invidia","Points":6882,"X":543,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961064Z"},{"ID":51891,"Name":"Wioska barbarzyƄska","Points":1140,"X":306,"Y":566,"Continent":"K53","Bonus":0,"PlayerID":849098688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961065Z"},{"ID":51892,"Name":"Wioska barbarzyƄska","Points":3861,"X":593,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961066Z"},{"ID":51893,"Name":"Kastet","Points":3276,"X":347,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961066Z"},{"ID":51894,"Name":"Nowa 02","Points":6731,"X":298,"Y":600,"Continent":"K62","Bonus":0,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961067Z"},{"ID":51895,"Name":"Mniejsze zƂo 0096","Points":4721,"X":310,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961067Z"},{"ID":51897,"Name":".achim.","Points":5786,"X":487,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961068Z"},{"ID":51898,"Name":"Wioska barbarzyƄska","Points":6154,"X":424,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961069Z"},{"ID":51900,"Name":"301","Points":5980,"X":446,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961069Z"},{"ID":51901,"Name":"004","Points":10068,"X":293,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96107Z"},{"ID":51902,"Name":"004 Wioska C","Points":4321,"X":284,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.96107Z"},{"ID":51904,"Name":"Wioska z Pracza 9","Points":1949,"X":314,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961071Z"},{"ID":51905,"Name":"friendship","Points":5840,"X":703,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961072Z"},{"ID":51906,"Name":"WrocƂaw","Points":4887,"X":407,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961072Z"},{"ID":51907,"Name":"074","Points":10113,"X":397,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961073Z"},{"ID":51908,"Name":"EO EO","Points":10083,"X":284,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.961073Z"},{"ID":51909,"Name":"Wioska barbarzyƄska","Points":6601,"X":717,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99262Z"},{"ID":51910,"Name":"Batalion","Points":4562,"X":437,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":947923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992621Z"},{"ID":51911,"Name":"Wioska barbarzyƄska","Points":4992,"X":458,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992622Z"},{"ID":51912,"Name":"KONFA TO MARKA, NARKA","Points":7354,"X":283,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992622Z"},{"ID":51913,"Name":"BIMBER 1","Points":5065,"X":450,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992623Z"},{"ID":51914,"Name":"Wioska SirCzoper","Points":1974,"X":278,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":698162357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992624Z"},{"ID":51915,"Name":"ZƂoty ƚwit","Points":10087,"X":586,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992624Z"},{"ID":51916,"Name":"Wioska barbarzyƄska","Points":7290,"X":409,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992625Z"},{"ID":51917,"Name":"040 Twinleaf Town","Points":2364,"X":724,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992625Z"},{"ID":51918,"Name":"EO EO","Points":10019,"X":275,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992626Z"},{"ID":51919,"Name":"KONFA TO MARKA, NARKA","Points":4706,"X":292,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992627Z"},{"ID":51920,"Name":"New WorldA","Points":3241,"X":281,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992627Z"},{"ID":51921,"Name":"Manuo3","Points":4060,"X":619,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992628Z"},{"ID":51922,"Name":"D025","Points":8515,"X":565,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992628Z"},{"ID":51923,"Name":"-10. WygwizdĂłw","Points":5508,"X":379,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992629Z"},{"ID":51924,"Name":"009 | North","Points":7407,"X":372,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992629Z"},{"ID":51925,"Name":"PiekƂo to inni","Points":3241,"X":653,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99263Z"},{"ID":51926,"Name":"Wioska barbarzyƄska","Points":2671,"X":387,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849084066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99263Z"},{"ID":51927,"Name":"Wioska bogdan0811","Points":4498,"X":602,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699323781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992631Z"},{"ID":51928,"Name":"077","Points":4898,"X":718,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992632Z"},{"ID":51929,"Name":"Wioska barbarzyƄska","Points":8020,"X":428,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992632Z"},{"ID":51930,"Name":"002","Points":4616,"X":592,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992633Z"},{"ID":51931,"Name":"WB16","Points":4444,"X":305,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992633Z"},{"ID":51932,"Name":"Wioska [4]","Points":807,"X":724,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":699858313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992634Z"},{"ID":51933,"Name":"Horyzont zdarzeƄ","Points":10019,"X":542,"Y":603,"Continent":"K65","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992634Z"},{"ID":51934,"Name":"ZƂoty ƚwit","Points":9872,"X":594,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992635Z"},{"ID":51935,"Name":"GuaGua","Points":6332,"X":372,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992636Z"},{"ID":51936,"Name":"XDX","Points":6461,"X":616,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992636Z"},{"ID":51937,"Name":"BierutĂłw","Points":7072,"X":294,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":849101092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992637Z"},{"ID":51938,"Name":"Wioska barbarzyƄska","Points":3851,"X":377,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992637Z"},{"ID":51939,"Name":"0028","Points":1555,"X":310,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992638Z"},{"ID":51940,"Name":"026. Gloria Victis","Points":6676,"X":280,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992638Z"},{"ID":51941,"Name":"27. Morfeusz 4x","Points":7105,"X":691,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992639Z"},{"ID":51942,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":287,"Y":456,"Continent":"K42","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992639Z"},{"ID":51943,"Name":"*034*","Points":10211,"X":359,"Y":388,"Continent":"K33","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99264Z"},{"ID":51944,"Name":"Wioska barbarzyƄska","Points":3871,"X":724,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992641Z"},{"ID":51945,"Name":"PiekƂo to inni","Points":4252,"X":653,"Y":332,"Continent":"K36","Bonus":7,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992641Z"},{"ID":51946,"Name":"068. Newtona","Points":4615,"X":719,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992642Z"},{"ID":51947,"Name":"Lipien","Points":4523,"X":326,"Y":545,"Continent":"K53","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992642Z"},{"ID":51948,"Name":"Psycha Siada","Points":9968,"X":337,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992643Z"},{"ID":51949,"Name":"Z.02","Points":3995,"X":708,"Y":584,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992643Z"},{"ID":51950,"Name":"066 Wioska barbarzyƄska","Points":9835,"X":541,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992644Z"},{"ID":51951,"Name":"Wioska barbarzyƄska","Points":3208,"X":708,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992645Z"},{"ID":51952,"Name":"050 Wioska barbarzyƄska","Points":9835,"X":549,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992645Z"},{"ID":51953,"Name":"...::181 01::...bomb.najazd","Points":9145,"X":275,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992646Z"},{"ID":51954,"Name":"KUKA VI","Points":1360,"X":287,"Y":427,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992646Z"},{"ID":51955,"Name":"Wioska 0004","Points":10311,"X":344,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992647Z"},{"ID":51956,"Name":"011 JJ","Points":2597,"X":329,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992647Z"},{"ID":51957,"Name":"New World","Points":10291,"X":409,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992648Z"},{"ID":51958,"Name":"Gryfios 097","Points":11285,"X":719,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992649Z"},{"ID":51959,"Name":"Buzka9395","Points":8209,"X":296,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992649Z"},{"ID":51960,"Name":"###147###","Points":10495,"X":591,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99265Z"},{"ID":51961,"Name":"Wioska barbarzyƄska","Points":3047,"X":302,"Y":594,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99265Z"},{"ID":51962,"Name":"Wioska barbarzyƄska","Points":4797,"X":726,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992651Z"},{"ID":51963,"Name":"#039","Points":1988,"X":554,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992651Z"},{"ID":51964,"Name":"Wioska barbarzyƄska","Points":1940,"X":309,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992652Z"},{"ID":51965,"Name":"Wioska barbarzyƄska","Points":2303,"X":308,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992652Z"},{"ID":51966,"Name":"Wioska barbarzyƄska","Points":4704,"X":713,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992653Z"},{"ID":51967,"Name":"004","Points":4125,"X":403,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992653Z"},{"ID":51968,"Name":"Wioska barbarzyƄska","Points":9810,"X":382,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":849030226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992654Z"},{"ID":51969,"Name":"Nowe Dobra - budowa","Points":6957,"X":685,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992654Z"},{"ID":51970,"Name":"008 Wioska G","Points":2828,"X":287,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992655Z"},{"ID":51971,"Name":"Wiosk","Points":1188,"X":283,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992656Z"},{"ID":51972,"Name":"MJ16","Points":3629,"X":687,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992656Z"},{"ID":51973,"Name":"000","Points":5853,"X":286,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992657Z"},{"ID":51974,"Name":"Taka.","Points":5989,"X":484,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992657Z"},{"ID":51975,"Name":"*023**","Points":6500,"X":686,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992658Z"},{"ID":51976,"Name":"Wioska barbarzyƄska","Points":6922,"X":326,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992658Z"},{"ID":51977,"Name":"Gryfios 095","Points":11460,"X":718,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992659Z"},{"ID":51978,"Name":"Kiedyƛ Wielki Wojownik","Points":8940,"X":329,"Y":351,"Continent":"K33","Bonus":9,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992659Z"},{"ID":51979,"Name":"071 invidia","Points":5811,"X":536,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99266Z"},{"ID":51980,"Name":"XDX","Points":3239,"X":602,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992661Z"},{"ID":51981,"Name":"006. Quattro formaggi","Points":4081,"X":312,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992661Z"},{"ID":51982,"Name":"Blanc Lapin","Points":6015,"X":526,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992662Z"},{"ID":51983,"Name":"Wioska barbarzyƄska","Points":3375,"X":403,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992662Z"},{"ID":51984,"Name":"KRÓL PAPI WIELKI","Points":6428,"X":723,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992663Z"},{"ID":51985,"Name":"Komandos","Points":8005,"X":653,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992663Z"},{"ID":51986,"Name":"230 Casablanca","Points":9761,"X":437,"Y":472,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992664Z"},{"ID":51987,"Name":"Wioska lo 2","Points":2896,"X":297,"Y":407,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992665Z"},{"ID":51988,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9808,"X":552,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992665Z"},{"ID":51989,"Name":"11 Patatajnia","Points":9489,"X":721,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992666Z"},{"ID":51990,"Name":"Wioska003","Points":5255,"X":687,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992666Z"},{"ID":51991,"Name":"Wioska 6","Points":1769,"X":653,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":849101945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992667Z"},{"ID":51992,"Name":"078 Wioska barbarzyƄska","Points":7632,"X":538,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992667Z"},{"ID":51993,"Name":"Eldorado","Points":1770,"X":709,"Y":587,"Continent":"K57","Bonus":0,"PlayerID":849098724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992668Z"},{"ID":51994,"Name":"04Osada koczownikĂłw","Points":9742,"X":364,"Y":678,"Continent":"K63","Bonus":2,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992668Z"},{"ID":51995,"Name":"PiekƂo to inni","Points":5876,"X":644,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992669Z"},{"ID":51996,"Name":"W52","Points":2034,"X":689,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992669Z"},{"ID":51997,"Name":"New World","Points":9356,"X":421,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99267Z"},{"ID":51998,"Name":"Wygwizdowa 011","Points":4743,"X":644,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99267Z"},{"ID":51999,"Name":"Wioska barbarzyƄska","Points":7886,"X":725,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992671Z"},{"ID":52000,"Name":"Wioska Black Priest","Points":9685,"X":423,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992672Z"},{"ID":52001,"Name":"kryniu niebko centrum","Points":5408,"X":677,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992672Z"},{"ID":52002,"Name":"81.","Points":7638,"X":294,"Y":406,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992673Z"},{"ID":52003,"Name":"019","Points":2848,"X":667,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992673Z"},{"ID":52004,"Name":"XDX","Points":3998,"X":606,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992674Z"},{"ID":52005,"Name":"Wioska barbarzyƄska","Points":7002,"X":714,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992674Z"},{"ID":52006,"Name":"A#007","Points":9797,"X":720,"Y":534,"Continent":"K57","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992675Z"},{"ID":52007,"Name":"gory szare","Points":2648,"X":296,"Y":410,"Continent":"K42","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992675Z"},{"ID":52008,"Name":"005","Points":4718,"X":321,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992676Z"},{"ID":52009,"Name":"Saran8","Points":2248,"X":398,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992677Z"},{"ID":52010,"Name":".003. Madagaskar","Points":5907,"X":719,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992677Z"},{"ID":52011,"Name":"=099= Wioska barbarzyƄska","Points":4010,"X":702,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992678Z"},{"ID":52012,"Name":"Kharkov","Points":9258,"X":400,"Y":301,"Continent":"K34","Bonus":0,"PlayerID":699588526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992678Z"},{"ID":52013,"Name":"Wioska barbarzyƄska 009","Points":5000,"X":563,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992679Z"},{"ID":52014,"Name":"Wioska DontCry","Points":3807,"X":599,"Y":540,"Continent":"K55","Bonus":0,"PlayerID":7220989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992679Z"},{"ID":52015,"Name":"Wioska18","Points":4990,"X":333,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99268Z"},{"ID":52016,"Name":"Wioska barbarzyƄska","Points":2602,"X":692,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992681Z"},{"ID":52017,"Name":"127","Points":8332,"X":382,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992681Z"},{"ID":52018,"Name":"FAKE OR OFF","Points":9917,"X":392,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992682Z"},{"ID":52019,"Name":"PiekƂo to inni","Points":6076,"X":650,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992682Z"},{"ID":52020,"Name":"-24-","Points":5353,"X":578,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992683Z"},{"ID":52021,"Name":"Trunks Super Saiyan 005","Points":5496,"X":517,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992684Z"},{"ID":52022,"Name":"New World","Points":4717,"X":425,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992684Z"},{"ID":52023,"Name":"Nowa baza 3","Points":7255,"X":614,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992685Z"},{"ID":52024,"Name":"Bagno 32","Points":5571,"X":474,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992685Z"},{"ID":52025,"Name":".achim.","Points":5351,"X":578,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992686Z"},{"ID":52026,"Name":"wioska XX","Points":9283,"X":675,"Y":356,"Continent":"K36","Bonus":1,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992686Z"},{"ID":52027,"Name":"Wioska barbarzyƄska","Points":8885,"X":327,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992687Z"},{"ID":52028,"Name":"Trunks Super Saiyan 004","Points":5806,"X":515,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992688Z"},{"ID":52029,"Name":"012","Points":6471,"X":307,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992688Z"},{"ID":52030,"Name":"Wioska barbarzyƄska","Points":4727,"X":698,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992689Z"},{"ID":52032,"Name":"0145","Points":2648,"X":693,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992689Z"},{"ID":52033,"Name":"Kurnik","Points":8116,"X":470,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99269Z"},{"ID":52034,"Name":"Glinnn","Points":2368,"X":285,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992691Z"},{"ID":52035,"Name":"Wioska barbarzyƄska","Points":3553,"X":717,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992691Z"},{"ID":52036,"Name":"Wioska z Pracza 4","Points":2707,"X":312,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992692Z"},{"ID":52037,"Name":"Wioska barbarzyƄska","Points":1482,"X":658,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":1715091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992692Z"},{"ID":52038,"Name":"ZƂoty ƚwit","Points":9568,"X":589,"Y":300,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992693Z"},{"ID":52039,"Name":"SIOƁO","Points":3472,"X":654,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":2371436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992693Z"},{"ID":52040,"Name":"Wioska Zidanee0390","Points":9176,"X":583,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":8609713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992694Z"},{"ID":52041,"Name":"BOSS D1","Points":4086,"X":352,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992694Z"},{"ID":52042,"Name":"Bianco Coniglio","Points":9572,"X":525,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992695Z"},{"ID":52043,"Name":"Nowa Wieƛ","Points":5825,"X":369,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992696Z"},{"ID":52044,"Name":"014","Points":6799,"X":320,"Y":375,"Continent":"K33","Bonus":2,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992696Z"},{"ID":52045,"Name":"101. Wioska martwy dzik","Points":2933,"X":722,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992697Z"},{"ID":52046,"Name":"[0202]","Points":6927,"X":277,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992697Z"},{"ID":52047,"Name":".achim.","Points":8033,"X":486,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992698Z"},{"ID":52048,"Name":"04Wioska barbarzyƄska","Points":9742,"X":363,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992699Z"},{"ID":52049,"Name":"Wioska 015","Points":561,"X":695,"Y":594,"Continent":"K56","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992699Z"},{"ID":52050,"Name":"Wioska Pracz 3","Points":7563,"X":311,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9927Z"},{"ID":52052,"Name":"KRÓL PAPI WIELKI","Points":6242,"X":724,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9927Z"},{"ID":52053,"Name":"Wioska barbarzyƄska","Points":62,"X":323,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992701Z"},{"ID":52054,"Name":"O101","Points":7773,"X":318,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992701Z"},{"ID":52055,"Name":"Wioska barbarzyƄska","Points":2225,"X":281,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992702Z"},{"ID":52056,"Name":"Mason Street","Points":4771,"X":382,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":849105463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992703Z"},{"ID":52057,"Name":"Bryzgiel","Points":5089,"X":300,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992703Z"},{"ID":52058,"Name":"Wioska barbarzyƄska","Points":9250,"X":483,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992704Z"},{"ID":52059,"Name":"New World","Points":10027,"X":412,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992704Z"},{"ID":52060,"Name":"043","Points":5715,"X":704,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992705Z"},{"ID":52062,"Name":"Wioska 20","Points":2429,"X":698,"Y":593,"Continent":"K56","Bonus":0,"PlayerID":849101162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992705Z"},{"ID":52063,"Name":"zawodnik","Points":10023,"X":593,"Y":695,"Continent":"K65","Bonus":2,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992706Z"},{"ID":52064,"Name":"004","Points":8064,"X":293,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992707Z"},{"ID":52065,"Name":"Wioska barbarzyƄska","Points":5327,"X":706,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992707Z"},{"ID":52066,"Name":"kathare","Points":9961,"X":537,"Y":721,"Continent":"K75","Bonus":2,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992708Z"},{"ID":52067,"Name":"Wioska","Points":10090,"X":346,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992708Z"},{"ID":52068,"Name":"[O]koƄ","Points":3190,"X":281,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":849106971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992709Z"},{"ID":52070,"Name":"Avanti!","Points":6141,"X":280,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99271Z"},{"ID":52071,"Name":"V. KƂopoty-StanisƂawy","Points":5244,"X":360,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849101893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99271Z"},{"ID":52072,"Name":"Wioska barbarzyƄska","Points":9806,"X":327,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992711Z"},{"ID":52073,"Name":"Wioska barbarzyƄska","Points":2491,"X":326,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992712Z"},{"ID":52074,"Name":"MikolajOSK6","Points":2551,"X":441,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992712Z"},{"ID":52075,"Name":"Wioska barbarzyƄska","Points":1426,"X":455,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992713Z"},{"ID":52076,"Name":"051","Points":3658,"X":634,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992713Z"},{"ID":52077,"Name":"Wyspa 002","Points":10495,"X":292,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992714Z"},{"ID":52078,"Name":"012","Points":1930,"X":611,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992714Z"},{"ID":52079,"Name":"Makowa 02","Points":3874,"X":388,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992715Z"},{"ID":52080,"Name":"C049","Points":7667,"X":356,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992715Z"},{"ID":52081,"Name":"098. AnioƂki","Points":2839,"X":716,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992716Z"},{"ID":52082,"Name":"Wioska barbarzyƄska","Points":1144,"X":292,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":849101771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992717Z"},{"ID":52083,"Name":"North K25","Points":3530,"X":524,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992717Z"},{"ID":52084,"Name":"Gryfios 096","Points":11574,"X":716,"Y":551,"Continent":"K57","Bonus":2,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992718Z"},{"ID":52085,"Name":"komandos48","Points":9113,"X":643,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992718Z"},{"ID":52086,"Name":"020. elli38","Points":6400,"X":684,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992719Z"},{"ID":52087,"Name":"O076","Points":9866,"X":331,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992719Z"},{"ID":52088,"Name":"Wioska skuzmi","Points":9907,"X":516,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":849101102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99272Z"},{"ID":52089,"Name":"KRÓL PAPI WIELKI","Points":5817,"X":720,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99272Z"},{"ID":52090,"Name":"Wioska barbarzyƄska","Points":5208,"X":320,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992721Z"},{"ID":52091,"Name":"Wioska 002","Points":7976,"X":677,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992722Z"},{"ID":52092,"Name":"Wioska wtkc","Points":1810,"X":688,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992722Z"},{"ID":52093,"Name":"Wioska barbarzyƄska 15","Points":7293,"X":336,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992723Z"},{"ID":52094,"Name":"0028","Points":10019,"X":509,"Y":500,"Continent":"K55","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992723Z"},{"ID":52095,"Name":"Nowa 04","Points":4007,"X":301,"Y":598,"Continent":"K53","Bonus":0,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992724Z"},{"ID":52096,"Name":"w myself","Points":1605,"X":601,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992724Z"},{"ID":52097,"Name":"06 barbarzyƄska.","Points":8762,"X":286,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992725Z"},{"ID":52098,"Name":"Wioska barbarzyƄska","Points":3947,"X":712,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992725Z"},{"ID":52099,"Name":"#06!","Points":3388,"X":636,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992726Z"},{"ID":52100,"Name":"Wioska Putabarca28","Points":3346,"X":697,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992727Z"},{"ID":52101,"Name":"Nie popusc","Points":7869,"X":409,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992727Z"},{"ID":52102,"Name":"Wioska barbarzyƄska","Points":9008,"X":433,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992728Z"},{"ID":52103,"Name":"032","Points":10160,"X":724,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992728Z"},{"ID":52104,"Name":"016","Points":4114,"X":304,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992729Z"},{"ID":52105,"Name":"ZƂoty ƚwit","Points":6162,"X":598,"Y":299,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99273Z"},{"ID":52106,"Name":"ZƂoty ƚwit","Points":10056,"X":588,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99273Z"},{"ID":52107,"Name":"038.","Points":10838,"X":464,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992731Z"},{"ID":52108,"Name":"031","Points":3125,"X":667,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992731Z"},{"ID":52109,"Name":"ZƂoty ƚwit","Points":6664,"X":587,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992732Z"},{"ID":52110,"Name":"#K75 0031","Points":4290,"X":524,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992732Z"},{"ID":52112,"Name":"PóƂnocny Bagdad","Points":7240,"X":622,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992733Z"},{"ID":52113,"Name":"Psycha Siada","Points":9968,"X":333,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992734Z"},{"ID":52114,"Name":"Poema del Mar Aquarium","Points":4582,"X":374,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992734Z"},{"ID":52116,"Name":"Flap","Points":6032,"X":607,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992735Z"},{"ID":52118,"Name":"NP 01","Points":8047,"X":301,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992735Z"},{"ID":52119,"Name":"New WorldA","Points":3945,"X":280,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992736Z"},{"ID":52120,"Name":"W53","Points":1833,"X":699,"Y":409,"Continent":"K46","Bonus":0,"PlayerID":699524362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992736Z"},{"ID":52121,"Name":"ƚrodowisko miejskie","Points":7767,"X":714,"Y":461,"Continent":"K47","Bonus":7,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992737Z"},{"ID":52122,"Name":"Wioska barbarzyƄska","Points":4062,"X":392,"Y":301,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992737Z"},{"ID":52123,"Name":"[818] Odludzie","Points":7078,"X":709,"Y":442,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992738Z"},{"ID":52124,"Name":"Wioska barbarzyƄska","Points":3938,"X":400,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992739Z"},{"ID":52125,"Name":"Wioska barbarzyƄska","Points":8042,"X":434,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992739Z"},{"ID":52126,"Name":"#K75 0034","Points":5349,"X":518,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99274Z"},{"ID":52127,"Name":"Wioska barbarzyƄska","Points":8157,"X":715,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99274Z"},{"ID":52128,"Name":"Kurnik","Points":9687,"X":468,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992741Z"},{"ID":52129,"Name":"Nienack","Points":11566,"X":694,"Y":397,"Continent":"K36","Bonus":0,"PlayerID":698278542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992741Z"},{"ID":52130,"Name":"KRÓL PAPI WIELKI","Points":6239,"X":695,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992742Z"},{"ID":52131,"Name":"Wioska barbarzyƄska","Points":5360,"X":424,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992742Z"},{"ID":52132,"Name":"040 Wioska barbarzyƄska","Points":9835,"X":545,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992743Z"},{"ID":52134,"Name":"X007","Points":6508,"X":713,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992743Z"},{"ID":52135,"Name":"Wioska barbarzyƄska","Points":4308,"X":566,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992744Z"},{"ID":52136,"Name":"Wioska marianos1994","Points":689,"X":663,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":848936229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992745Z"},{"ID":52137,"Name":"0173","Points":8075,"X":366,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992745Z"},{"ID":52138,"Name":"Wioska barbarzyƄska","Points":7367,"X":710,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992746Z"},{"ID":52139,"Name":"|D| Sunfort","Points":3809,"X":455,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992746Z"},{"ID":52140,"Name":"029 KTW","Points":4609,"X":721,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992747Z"},{"ID":52141,"Name":"XDX","Points":4635,"X":614,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992747Z"},{"ID":52142,"Name":"Wioska Kl0Ns","Points":2190,"X":490,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992748Z"},{"ID":52143,"Name":"Taka.","Points":5494,"X":484,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992748Z"},{"ID":52144,"Name":"Warszawa","Points":9644,"X":290,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992749Z"},{"ID":52145,"Name":"HWILA [4]","Points":2268,"X":630,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992749Z"},{"ID":52146,"Name":"Wioska Lord Lord Giza","Points":2596,"X":651,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":698946155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99275Z"},{"ID":52147,"Name":"04Wioska barbarzyƄska","Points":9170,"X":364,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99275Z"},{"ID":52148,"Name":"Madera","Points":7404,"X":712,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992751Z"},{"ID":52149,"Name":"Blueberry","Points":426,"X":381,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849105463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992752Z"},{"ID":52150,"Name":"067 Wioska barbarzyƄska","Points":3052,"X":342,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992752Z"},{"ID":52151,"Name":"Szlachcic","Points":5271,"X":374,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992753Z"},{"ID":52152,"Name":"C0227","Points":10362,"X":282,"Y":540,"Continent":"K52","Bonus":4,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992753Z"},{"ID":52153,"Name":"#0162 darmuwa","Points":6561,"X":470,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992754Z"},{"ID":52154,"Name":"Wioska barbarzyƄska","Points":5179,"X":552,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992754Z"},{"ID":52155,"Name":"wancki i gustlikk","Points":9205,"X":504,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992755Z"},{"ID":52157,"Name":"C.048","Points":3370,"X":715,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992755Z"},{"ID":52158,"Name":"0172","Points":10216,"X":371,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992756Z"},{"ID":52159,"Name":"KONFA TO MARKA, NARKA","Points":7371,"X":289,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992757Z"},{"ID":52161,"Name":"Wioska barbarzyƄska","Points":4283,"X":336,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849103148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992757Z"},{"ID":52162,"Name":"Albatros","Points":6298,"X":432,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":947923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992758Z"},{"ID":52163,"Name":"Zaplecze Barba 022","Points":6339,"X":368,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992758Z"},{"ID":52164,"Name":"wioska psa nie dotykać","Points":6323,"X":684,"Y":565,"Continent":"K56","Bonus":0,"PlayerID":849102143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992759Z"},{"ID":52165,"Name":"*008","Points":9861,"X":674,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992759Z"},{"ID":52166,"Name":"007","Points":5531,"X":289,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99276Z"},{"ID":52167,"Name":"045 Wioska barbarzyƄska","Points":9835,"X":541,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99276Z"},{"ID":52168,"Name":"04Wioska barbarzyƄska","Points":8661,"X":355,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992761Z"},{"ID":52169,"Name":"Wioska barbarzyƄska","Points":8159,"X":391,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992762Z"},{"ID":52171,"Name":"--036--","Points":3918,"X":568,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992762Z"},{"ID":52172,"Name":"007. Napoletana","Points":8753,"X":306,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992763Z"},{"ID":52173,"Name":"B001","Points":10078,"X":520,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992763Z"},{"ID":52174,"Name":"0163","Points":2656,"X":391,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992764Z"},{"ID":52175,"Name":"Wioska barbarzyƄska","Points":5665,"X":396,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992764Z"},{"ID":52177,"Name":"024","Points":5060,"X":529,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992765Z"},{"ID":52178,"Name":"026 Petalburg City","Points":11109,"X":719,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992766Z"},{"ID":52179,"Name":"[0235]","Points":5867,"X":282,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992766Z"},{"ID":52181,"Name":"0095","Points":4684,"X":680,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992767Z"},{"ID":52182,"Name":"PoƂudniowy WschĂłd 011","Points":1641,"X":695,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992767Z"},{"ID":52183,"Name":"--040--","Points":3649,"X":572,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992768Z"},{"ID":52184,"Name":"022. Wioska barbarzyƄska","Points":5674,"X":681,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992768Z"},{"ID":52185,"Name":"[0206]","Points":6790,"X":276,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992769Z"},{"ID":52186,"Name":"New WorldA","Points":1822,"X":275,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992769Z"},{"ID":52187,"Name":"Wioska10","Points":3908,"X":624,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99277Z"},{"ID":52188,"Name":"KONFA TO MARKA, NARKA","Points":2444,"X":295,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992771Z"},{"ID":52189,"Name":"!36 65 Botosanita Mica","Points":6148,"X":659,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992771Z"},{"ID":52190,"Name":"Wioska barbarzyƄska","Points":4712,"X":404,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992772Z"},{"ID":52191,"Name":"Osada koczownikĂłw","Points":2871,"X":307,"Y":380,"Continent":"K33","Bonus":2,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992772Z"},{"ID":52192,"Name":"Szlachcic","Points":5170,"X":371,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992773Z"},{"ID":52193,"Name":"Zzz 08 zaraz się zacznie","Points":6564,"X":290,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992773Z"},{"ID":52194,"Name":"Początek","Points":9265,"X":292,"Y":580,"Continent":"K52","Bonus":1,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992774Z"},{"ID":52196,"Name":"0115","Points":7988,"X":346,"Y":665,"Continent":"K63","Bonus":9,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992774Z"},{"ID":52197,"Name":"t026","Points":800,"X":667,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992775Z"},{"ID":52198,"Name":"#0080","Points":4097,"X":569,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992775Z"},{"ID":52199,"Name":"Wioska barbarzyƄska","Points":5131,"X":374,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992776Z"},{"ID":52200,"Name":"059KP","Points":2665,"X":487,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992776Z"},{"ID":52201,"Name":"008","Points":2233,"X":402,"Y":302,"Continent":"K34","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992777Z"},{"ID":52202,"Name":"Zaplecze Barba 8","Points":9741,"X":369,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992778Z"},{"ID":52203,"Name":"kww03","Points":4321,"X":720,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992778Z"},{"ID":52204,"Name":"Wioska barbarzyƄska","Points":2077,"X":484,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992779Z"},{"ID":52205,"Name":"Wioska barbarzyƄska","Points":816,"X":610,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":1775957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992779Z"},{"ID":52206,"Name":"Wioska barbarzyƄska","Points":5330,"X":395,"Y":699,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99278Z"},{"ID":52208,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":538,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99278Z"},{"ID":52209,"Name":"031 Wioska barbarzyƄska","Points":9835,"X":543,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992781Z"},{"ID":52210,"Name":"Wioska RR 01","Points":7790,"X":370,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":849023212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992781Z"},{"ID":52211,"Name":"Wioska Zawodnika","Points":6921,"X":536,"Y":633,"Continent":"K65","Bonus":0,"PlayerID":698655859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992782Z"},{"ID":52212,"Name":"D01","Points":2900,"X":441,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992782Z"},{"ID":52213,"Name":"Monetki","Points":7926,"X":482,"Y":421,"Continent":"K44","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992783Z"},{"ID":52214,"Name":"~~083~~","Points":3713,"X":677,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992784Z"},{"ID":52216,"Name":"Wioska02","Points":3929,"X":298,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992784Z"},{"ID":52217,"Name":"014","Points":1734,"X":338,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992785Z"},{"ID":52218,"Name":"[0262]","Points":5372,"X":279,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992785Z"},{"ID":52219,"Name":"X013","Points":5807,"X":709,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992786Z"},{"ID":52220,"Name":"t012","Points":8196,"X":670,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992786Z"},{"ID":52221,"Name":"07.APT","Points":3408,"X":713,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992787Z"},{"ID":52222,"Name":"Wioska super hero","Points":4082,"X":309,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699438389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992787Z"},{"ID":52223,"Name":"032","Points":10495,"X":399,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992788Z"},{"ID":52224,"Name":"PóƂnocny Bagdad","Points":4597,"X":616,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992788Z"},{"ID":52225,"Name":".achim.","Points":5190,"X":569,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992789Z"},{"ID":52226,"Name":"[0201]","Points":6883,"X":283,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99279Z"},{"ID":52227,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","Points":7555,"X":493,"Y":718,"Continent":"K74","Bonus":4,"PlayerID":8980651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99279Z"},{"ID":52228,"Name":"079 hasacz","Points":5550,"X":705,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992791Z"},{"ID":52229,"Name":"Eden","Points":5015,"X":706,"Y":410,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992791Z"},{"ID":52230,"Name":"Wioska barbarzyƄska","Points":8296,"X":324,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992792Z"},{"ID":52231,"Name":"[810] Odludzie","Points":7456,"X":713,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992792Z"},{"ID":52232,"Name":"232...PÓƁNOC","Points":4635,"X":436,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992793Z"},{"ID":52233,"Name":"Wioska gooomis","Points":602,"X":435,"Y":559,"Continent":"K54","Bonus":0,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992793Z"},{"ID":52234,"Name":"Wioska barbarzyƄska","Points":5465,"X":426,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992794Z"},{"ID":52235,"Name":"091","Points":4446,"X":724,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992794Z"},{"ID":52236,"Name":"Nowa Baza 11","Points":7705,"X":616,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992795Z"},{"ID":52237,"Name":"Witam:)","Points":10019,"X":701,"Y":418,"Continent":"K47","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992796Z"},{"ID":52238,"Name":"092.Stradi","Points":8877,"X":438,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992796Z"},{"ID":52239,"Name":"Wioska barbarzyƄska","Points":2198,"X":463,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":699863708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992797Z"},{"ID":52240,"Name":"azi3","Points":2271,"X":458,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":849094759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992797Z"},{"ID":52241,"Name":"AG15","Points":9747,"X":590,"Y":663,"Continent":"K65","Bonus":0,"PlayerID":699876345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992798Z"},{"ID":52242,"Name":"PóƂnocny Bagdad","Points":7243,"X":620,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992798Z"},{"ID":52243,"Name":"Mm01","Points":8984,"X":630,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":698442418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992799Z"},{"ID":52244,"Name":"KONFA TO MARKA, NARKA","Points":7234,"X":280,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9928Z"},{"ID":52245,"Name":"wjeĆŒdĆŒam na dzielnie","Points":1631,"X":677,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9928Z"},{"ID":52246,"Name":"0075","Points":4686,"X":458,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992801Z"},{"ID":52247,"Name":"Kiedyƛ Wielki Wojownik","Points":6506,"X":331,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992801Z"},{"ID":52248,"Name":"18.","Points":2755,"X":702,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":699562182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992802Z"},{"ID":52249,"Name":"Wioska barbarzyƄska","Points":4046,"X":723,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992802Z"},{"ID":52250,"Name":"Kurnik","Points":7320,"X":445,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992803Z"},{"ID":52251,"Name":"Wioska 4","Points":1742,"X":296,"Y":403,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992804Z"},{"ID":52252,"Name":"041 Wioska barbarzyƄska","Points":9835,"X":546,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992804Z"},{"ID":52253,"Name":"Wioska Turystyczna 006","Points":6927,"X":724,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992805Z"},{"ID":52254,"Name":"[0162]","Points":8494,"X":455,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992805Z"},{"ID":52255,"Name":"sony911","Points":9456,"X":672,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992806Z"},{"ID":52256,"Name":"15.","Points":4007,"X":702,"Y":401,"Continent":"K47","Bonus":0,"PlayerID":699562182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992807Z"},{"ID":52257,"Name":"04Wioska barbarzyƄska","Points":8807,"X":364,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992807Z"},{"ID":52258,"Name":"MojeDnoToWaszSzczyt","Points":9517,"X":473,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992808Z"},{"ID":52259,"Name":"Fourth","Points":1004,"X":448,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":849048216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992808Z"},{"ID":52260,"Name":"azi4","Points":2956,"X":453,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":849094759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992809Z"},{"ID":52261,"Name":"Początek","Points":9461,"X":297,"Y":581,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992809Z"},{"ID":52263,"Name":"04Wioska barbarzyƄska","Points":9747,"X":361,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99281Z"},{"ID":52264,"Name":"067 Wioska barbarzyƄska","Points":9835,"X":537,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992811Z"},{"ID":52265,"Name":"Wioska 2","Points":1714,"X":298,"Y":404,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992811Z"},{"ID":52266,"Name":"Ć»UBEREK 008 MENAGO.EXE","Points":7217,"X":618,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992812Z"},{"ID":52267,"Name":"Wioska barbarzyƄska","Points":7613,"X":643,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992812Z"},{"ID":52268,"Name":"021. Eskwilin","Points":10341,"X":712,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992813Z"},{"ID":52269,"Name":"075. Acrae","Points":4788,"X":721,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992813Z"},{"ID":52270,"Name":"Wioska 007","Points":2871,"X":672,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992814Z"},{"ID":52271,"Name":"Wioska barbarzyƄska","Points":6047,"X":555,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992815Z"},{"ID":52272,"Name":"PiekƂo to inni","Points":3413,"X":651,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992815Z"},{"ID":52273,"Name":"007 eQNares","Points":10478,"X":478,"Y":572,"Continent":"K54","Bonus":0,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992816Z"},{"ID":52274,"Name":"D006","Points":4370,"X":562,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992816Z"},{"ID":52275,"Name":"Werid","Points":9473,"X":467,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992817Z"},{"ID":52276,"Name":"aaaa","Points":10728,"X":700,"Y":394,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992817Z"},{"ID":52277,"Name":"Wioska z Pracza 8","Points":200,"X":311,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992818Z"},{"ID":52278,"Name":"Wioska barbarzyƄska","Points":5367,"X":709,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992819Z"},{"ID":52280,"Name":"Wyspa 030","Points":2294,"X":295,"Y":573,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992819Z"},{"ID":52281,"Name":"CastAway #001","Points":9815,"X":702,"Y":585,"Continent":"K57","Bonus":6,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99282Z"},{"ID":52282,"Name":"083","Points":4443,"X":720,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99282Z"},{"ID":52283,"Name":"078 Wioska barbarzyƄska","Points":5279,"X":350,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992821Z"},{"ID":52285,"Name":"[800] Odludzie","Points":10047,"X":711,"Y":434,"Continent":"K47","Bonus":9,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992821Z"},{"ID":52286,"Name":"056 Wioska barbarzyƄska","Points":6748,"X":343,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992822Z"},{"ID":52288,"Name":"Wioska barbarzyƄska","Points":2150,"X":503,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992822Z"},{"ID":52289,"Name":"Wioska Kepczyk","Points":6547,"X":318,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992823Z"},{"ID":52290,"Name":"Wioska barbarzyƄska","Points":1891,"X":311,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992823Z"},{"ID":52291,"Name":"Wioska kapittan","Points":679,"X":316,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":699456288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992824Z"},{"ID":52292,"Name":"Wioska barbarzyƄska","Points":7559,"X":644,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992824Z"},{"ID":52293,"Name":"U_U","Points":3777,"X":351,"Y":433,"Continent":"K43","Bonus":0,"PlayerID":699088529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992825Z"},{"ID":52294,"Name":"Wioska bulkas9999333","Points":532,"X":319,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":849098993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992826Z"},{"ID":52295,"Name":"###148###","Points":10495,"X":602,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992826Z"},{"ID":52296,"Name":"Kiedyƛ Wielki Wojownik","Points":1870,"X":327,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992827Z"},{"ID":52297,"Name":"--047--","Points":1541,"X":578,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992827Z"},{"ID":52298,"Name":"014 - Budowanko!","Points":6674,"X":494,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992828Z"},{"ID":52299,"Name":"Wioska olko666","Points":9333,"X":724,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992828Z"},{"ID":52300,"Name":"Wioska krzucha2037","Points":9606,"X":722,"Y":530,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992829Z"},{"ID":52301,"Name":"Wioska barbarzyƄska","Points":7727,"X":710,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99283Z"},{"ID":52302,"Name":"Osada koczownikĂłw","Points":9803,"X":704,"Y":407,"Continent":"K47","Bonus":1,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99283Z"},{"ID":52303,"Name":"013","Points":3586,"X":327,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":7386358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992831Z"},{"ID":52304,"Name":"*011","Points":8425,"X":677,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992831Z"},{"ID":52305,"Name":"Wioska01","Points":5879,"X":297,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992832Z"},{"ID":52306,"Name":"100","Points":9450,"X":395,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992832Z"},{"ID":52307,"Name":"Wioska barbarzyƄska","Points":1835,"X":724,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992833Z"},{"ID":52308,"Name":"017. Wioska barbarzyƄska","Points":6718,"X":682,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992833Z"},{"ID":52309,"Name":"Wioska barbarzyƄska","Points":8370,"X":546,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992834Z"},{"ID":52310,"Name":"BOA.","Points":6338,"X":311,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992834Z"},{"ID":52311,"Name":"093","Points":4223,"X":725,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992835Z"},{"ID":52312,"Name":"082","Points":9835,"X":406,"Y":697,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992835Z"},{"ID":52313,"Name":"roksi","Points":5257,"X":302,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992836Z"},{"ID":52314,"Name":"#5 Wioska barbarzyƄska","Points":6516,"X":637,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":849099517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992836Z"},{"ID":52315,"Name":"002 Kazik","Points":8259,"X":282,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992837Z"},{"ID":52316,"Name":"KONFA TO MARKA, NARKA","Points":7587,"X":278,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992837Z"},{"ID":52317,"Name":"KONFA TO MARKA, NARKA","Points":9723,"X":279,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992838Z"},{"ID":52318,"Name":"Walec","Points":1416,"X":354,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992839Z"},{"ID":52319,"Name":"243","Points":2764,"X":387,"Y":311,"Continent":"K33","Bonus":6,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992839Z"},{"ID":52320,"Name":"Bestleevatican Twitch TV","Points":9797,"X":714,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":8418489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99284Z"},{"ID":52321,"Name":"Wioska barbarzyƄska","Points":6788,"X":379,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99284Z"},{"ID":52322,"Name":"XDX","Points":7082,"X":611,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992841Z"},{"ID":52323,"Name":"New World","Points":7114,"X":438,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992841Z"},{"ID":52324,"Name":"Tartak","Points":4782,"X":712,"Y":440,"Continent":"K47","Bonus":1,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992842Z"},{"ID":52325,"Name":"Wioska barbarzyƄska -","Points":4112,"X":563,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992843Z"},{"ID":52326,"Name":"KRÓL PAPI WIELKI","Points":5654,"X":718,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992843Z"},{"ID":52327,"Name":"New World","Points":8664,"X":423,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992844Z"},{"ID":52328,"Name":"backstage 2","Points":4557,"X":705,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992844Z"},{"ID":52329,"Name":"Ave Why!","Points":942,"X":547,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992845Z"},{"ID":52330,"Name":"Wioska 0017","Points":7613,"X":339,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992846Z"},{"ID":52331,"Name":"Wioska barbarzyƄska","Points":7074,"X":483,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992846Z"},{"ID":52332,"Name":"New WorldA","Points":3885,"X":280,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992847Z"},{"ID":52333,"Name":"KONFA TO MARKA, NARKA","Points":2746,"X":296,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992847Z"},{"ID":52335,"Name":"Wioska barbarzyƄska","Points":4531,"X":722,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992848Z"},{"ID":52336,"Name":"wioska barba","Points":9904,"X":406,"Y":573,"Continent":"K54","Bonus":0,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992848Z"},{"ID":52337,"Name":"xxx4","Points":9335,"X":694,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992849Z"},{"ID":52338,"Name":"32. Wioska barbarzyƄska","Points":3078,"X":715,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99285Z"},{"ID":52340,"Name":"C096","Points":6562,"X":359,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99285Z"},{"ID":52341,"Name":"039","Points":5362,"X":664,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992851Z"},{"ID":52342,"Name":"004","Points":2111,"X":530,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992851Z"},{"ID":52343,"Name":"KONFA TO MARKA, NARKA","Points":2322,"X":295,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992852Z"},{"ID":52344,"Name":"Wioska barbarzyƄska","Points":5053,"X":368,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992852Z"},{"ID":52345,"Name":"001","Points":7756,"X":406,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992853Z"},{"ID":52346,"Name":"#0155 barbarzyƄska","Points":4826,"X":479,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992854Z"},{"ID":52347,"Name":"New WorldA","Points":4875,"X":283,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992854Z"},{"ID":52348,"Name":"BOA4","Points":3387,"X":305,"Y":618,"Continent":"K63","Bonus":0,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992855Z"},{"ID":52349,"Name":"BIMBER 3","Points":2531,"X":452,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992855Z"},{"ID":52350,"Name":"Maestro","Points":8201,"X":713,"Y":457,"Continent":"K47","Bonus":6,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992856Z"},{"ID":52351,"Name":"Nowa Era","Points":4460,"X":717,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992857Z"},{"ID":52352,"Name":"006","Points":5753,"X":289,"Y":585,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992857Z"},{"ID":52353,"Name":"AVERSA city","Points":4441,"X":495,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":3762475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992858Z"},{"ID":52354,"Name":"#003","Points":9326,"X":552,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992858Z"},{"ID":52355,"Name":"wieƛmen","Points":7351,"X":637,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":849094006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992859Z"},{"ID":52356,"Name":"Bagno 27","Points":6231,"X":475,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992859Z"},{"ID":52357,"Name":"Wioska klogan","Points":6261,"X":695,"Y":405,"Continent":"K46","Bonus":0,"PlayerID":699884788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99286Z"},{"ID":52358,"Name":"07.GOT7","Points":8740,"X":710,"Y":434,"Continent":"K47","Bonus":5,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992861Z"},{"ID":52359,"Name":"076 invidia","Points":5993,"X":543,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992861Z"},{"ID":52360,"Name":"03 brutal29","Points":2576,"X":638,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992862Z"},{"ID":52361,"Name":"Wioska barbarzyƄska","Points":4115,"X":404,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992862Z"},{"ID":52362,"Name":"Wioska barbarzyƄska","Points":3674,"X":505,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992863Z"},{"ID":52363,"Name":"0108","Points":2050,"X":692,"Y":392,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992863Z"},{"ID":52364,"Name":"142.Stradi","Points":1660,"X":482,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":848952566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992864Z"},{"ID":52365,"Name":"Nowa 58","Points":5677,"X":712,"Y":581,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992865Z"},{"ID":52366,"Name":"XDX","Points":5941,"X":616,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992865Z"},{"ID":52367,"Name":"017","Points":10495,"X":397,"Y":699,"Continent":"K63","Bonus":5,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992866Z"},{"ID":52368,"Name":"Wioska dawszz5","Points":1651,"X":284,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":849094688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992866Z"},{"ID":52369,"Name":"ZƂoty ƚwit","Points":7083,"X":591,"Y":301,"Continent":"K35","Bonus":3,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992867Z"},{"ID":52370,"Name":"Wioska 016","Points":10580,"X":669,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992867Z"},{"ID":52371,"Name":".achim.","Points":6238,"X":570,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992868Z"},{"ID":52372,"Name":"wioska","Points":10040,"X":636,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992869Z"},{"ID":52373,"Name":"=022= Wioska barbarzyƄska","Points":10580,"X":708,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992869Z"},{"ID":52374,"Name":"Wioska barbarzyƄska","Points":1704,"X":371,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99287Z"},{"ID":52375,"Name":"X008","Points":6399,"X":714,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99287Z"},{"ID":52377,"Name":"KONFA TO MARKA, NARKA","Points":8234,"X":281,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992871Z"},{"ID":52378,"Name":"008","Points":8010,"X":665,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992872Z"},{"ID":52379,"Name":"B-001","Points":7020,"X":307,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992872Z"},{"ID":52380,"Name":"SkalpeR3","Points":2192,"X":283,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":849101674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992873Z"},{"ID":52381,"Name":"PóƂnocny Bagdad","Points":6757,"X":623,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992874Z"},{"ID":52382,"Name":"029StaƂka","Points":4896,"X":532,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992874Z"},{"ID":52383,"Name":"Wioska barbarzyƄska","Points":7603,"X":392,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992875Z"},{"ID":52384,"Name":"134 #007","Points":4876,"X":625,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":2467370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992875Z"},{"ID":52385,"Name":"010","Points":3710,"X":524,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992876Z"},{"ID":52386,"Name":"001","Points":1007,"X":384,"Y":401,"Continent":"K43","Bonus":0,"PlayerID":6647535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992877Z"},{"ID":52387,"Name":"###149###","Points":10495,"X":607,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992877Z"},{"ID":52388,"Name":"????","Points":6798,"X":494,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992878Z"},{"ID":52389,"Name":"Wioska barbarzyƄska","Points":7232,"X":518,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":8240677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992879Z"},{"ID":52390,"Name":"Wioska Gazel699","Points":4901,"X":494,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992879Z"},{"ID":52391,"Name":"007","Points":3010,"X":294,"Y":585,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99288Z"},{"ID":52392,"Name":"WMA","Points":2366,"X":721,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992881Z"},{"ID":52393,"Name":"=100= Wioska barbarzyƄska","Points":3459,"X":701,"Y":596,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992881Z"},{"ID":52394,"Name":"Wioska barbarzyƄska","Points":7578,"X":390,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992882Z"},{"ID":52395,"Name":"076 Wioska barbarzyƄska","Points":6193,"X":347,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992883Z"},{"ID":52397,"Name":"#0052","Points":9953,"X":573,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992883Z"},{"ID":52398,"Name":"PPF-01","Points":9808,"X":521,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992884Z"},{"ID":52399,"Name":"KONFA TO MARKA, NARKA","Points":7231,"X":288,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992885Z"},{"ID":52400,"Name":"104","Points":10311,"X":399,"Y":696,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992885Z"},{"ID":52401,"Name":"Wioska 4","Points":2284,"X":552,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992886Z"},{"ID":52402,"Name":"Wioska barbarzyƄska","Points":4406,"X":704,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":699488108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992887Z"},{"ID":52403,"Name":"Wioska 026","Points":4374,"X":667,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992887Z"},{"ID":52404,"Name":"XDX","Points":6218,"X":602,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992888Z"},{"ID":52405,"Name":"PiekƂo to inni","Points":4038,"X":643,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992889Z"},{"ID":52406,"Name":"666","Points":12021,"X":277,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":849081869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992889Z"},{"ID":52407,"Name":"Wioska 013","Points":2516,"X":668,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99289Z"},{"ID":52408,"Name":"016","Points":10160,"X":279,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99289Z"},{"ID":52409,"Name":"Wioska barbarzyƄska","Points":1043,"X":354,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992891Z"},{"ID":52410,"Name":"Piorunek1996 Wieƛ ..1..","Points":7187,"X":528,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992891Z"},{"ID":52411,"Name":"###150###","Points":10495,"X":596,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992892Z"},{"ID":52412,"Name":"019 Frontier Access","Points":9751,"X":720,"Y":485,"Continent":"K47","Bonus":3,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992892Z"},{"ID":52414,"Name":"D02","Points":3384,"X":441,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992893Z"},{"ID":52415,"Name":"New WorldA","Points":1899,"X":276,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992894Z"},{"ID":52416,"Name":"komandos","Points":4178,"X":672,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992894Z"},{"ID":52417,"Name":"Tu sie pracuje","Points":9209,"X":592,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992895Z"},{"ID":52418,"Name":"35. Openbar","Points":9640,"X":558,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992895Z"},{"ID":52419,"Name":"New World","Points":9931,"X":417,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992896Z"},{"ID":52420,"Name":"Cisza","Points":6565,"X":289,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992896Z"},{"ID":52422,"Name":"White Rabbit","Points":4638,"X":524,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992897Z"},{"ID":52424,"Name":"Wioska barbarzyƄska","Points":6609,"X":715,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992897Z"},{"ID":52427,"Name":"MojeDnoToWaszSzczyt","Points":9366,"X":499,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992898Z"},{"ID":52428,"Name":"Wioska barbarzyƄska","Points":5124,"X":416,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992898Z"},{"ID":52430,"Name":"Wioska barbarzyƄska","Points":1653,"X":274,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992899Z"},{"ID":52431,"Name":"New World","Points":10294,"X":430,"Y":714,"Continent":"K74","Bonus":5,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992899Z"},{"ID":52433,"Name":"Wioska9","Points":9854,"X":710,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9929Z"},{"ID":52434,"Name":"004","Points":10360,"X":292,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9929Z"},{"ID":52435,"Name":"081 Wioska barbarzyƄska","Points":4677,"X":348,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992901Z"},{"ID":52436,"Name":"WOJSKO","Points":8266,"X":474,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":699814283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992902Z"},{"ID":52437,"Name":"059 Wioska barbarzyƄska","Points":9835,"X":552,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992902Z"},{"ID":52438,"Name":"0042 K55 and987 OZDR.","Points":9841,"X":508,"Y":541,"Continent":"K55","Bonus":0,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992903Z"},{"ID":52439,"Name":"28. Attre","Points":5764,"X":717,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992903Z"},{"ID":52440,"Name":"Mordownia 2","Points":9788,"X":703,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992904Z"},{"ID":52441,"Name":"0160","Points":3152,"X":388,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992904Z"},{"ID":52442,"Name":"039.xxx","Points":2677,"X":476,"Y":695,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992905Z"},{"ID":52443,"Name":"Lord Arsey KING","Points":4987,"X":654,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992906Z"},{"ID":52444,"Name":"062","Points":8237,"X":700,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":849095227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992906Z"},{"ID":52445,"Name":"komandos","Points":4765,"X":664,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992907Z"},{"ID":52446,"Name":"A#046","Points":9287,"X":724,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992907Z"},{"ID":52447,"Name":"061.","Points":1980,"X":639,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992908Z"},{"ID":52448,"Name":"KWB2","Points":2890,"X":470,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992908Z"},{"ID":52449,"Name":"066 - Budowanko!","Points":4658,"X":508,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992909Z"},{"ID":52450,"Name":"Atlantyk","Points":5955,"X":690,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992909Z"},{"ID":52451,"Name":"Wioska barbarzyƄska +","Points":3110,"X":563,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99291Z"},{"ID":52452,"Name":"Wioska 022","Points":6105,"X":673,"Y":354,"Continent":"K36","Bonus":4,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99291Z"},{"ID":52455,"Name":"Cisza","Points":6896,"X":289,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992911Z"},{"ID":52456,"Name":"Wioska barbarzyƄska","Points":436,"X":357,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":699199084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992911Z"},{"ID":52457,"Name":"003","Points":6348,"X":275,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992912Z"},{"ID":52458,"Name":"Wioska barbarzyƄska","Points":2070,"X":625,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992913Z"},{"ID":52459,"Name":"t013","Points":6382,"X":669,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992913Z"},{"ID":52460,"Name":"Kaer Morhen","Points":5368,"X":318,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":849101377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992914Z"},{"ID":52461,"Name":"cyklop","Points":3015,"X":370,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992914Z"},{"ID":52462,"Name":"New World","Points":10290,"X":410,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992915Z"},{"ID":52463,"Name":"Architekci PlacĂłw Boju","Points":6488,"X":340,"Y":550,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992916Z"},{"ID":52464,"Name":"Nowe Dobra - budowa","Points":3696,"X":684,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992916Z"},{"ID":52465,"Name":"North 073","Points":6219,"X":503,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992917Z"},{"ID":52466,"Name":"035 KTW","Points":3152,"X":722,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992917Z"},{"ID":52467,"Name":"Bagno 11","Points":9424,"X":482,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992918Z"},{"ID":52468,"Name":"Gibonowo Kolonia","Points":1022,"X":280,"Y":488,"Continent":"K42","Bonus":5,"PlayerID":849100877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992918Z"},{"ID":52469,"Name":"0000043Z","Points":1191,"X":285,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992919Z"},{"ID":52470,"Name":"Wioska barbarzyƄska","Points":6775,"X":274,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992919Z"},{"ID":52471,"Name":"#0283 kaban1988","Points":10242,"X":462,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99292Z"},{"ID":52472,"Name":"Wioska","Points":5559,"X":650,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":6167751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99292Z"},{"ID":52473,"Name":"Taka.","Points":5692,"X":487,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992921Z"},{"ID":52474,"Name":"PiekƂo to inni","Points":3643,"X":645,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992922Z"},{"ID":52475,"Name":"Wioska barbarzyƄska 008","Points":5999,"X":377,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992922Z"},{"ID":52476,"Name":"0155","Points":4744,"X":369,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992923Z"},{"ID":52477,"Name":"Avanti!","Points":6457,"X":275,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992923Z"},{"ID":52478,"Name":"Avanti!","Points":6336,"X":273,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992924Z"},{"ID":52479,"Name":"Babidi #5","Points":4523,"X":373,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992924Z"},{"ID":52480,"Name":"KONFA TO MARKA, NARKA","Points":10291,"X":286,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992925Z"},{"ID":52481,"Name":"M001","Points":8886,"X":474,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992926Z"},{"ID":52482,"Name":"Bagno","Points":4137,"X":589,"Y":708,"Continent":"K75","Bonus":7,"PlayerID":849040194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992926Z"},{"ID":52483,"Name":"Dzik 5","Points":9490,"X":293,"Y":432,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992927Z"},{"ID":52484,"Name":"Kiedyƛ Wielki Wojownik","Points":4533,"X":332,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992927Z"},{"ID":52485,"Name":"XDX","Points":6186,"X":612,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992928Z"},{"ID":52486,"Name":"001 Lady mysza89100","Points":4438,"X":529,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992928Z"},{"ID":52487,"Name":"01Wioska barbarzyƄska","Points":9761,"X":361,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992929Z"},{"ID":52488,"Name":"Avanti!","Points":2667,"X":277,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992929Z"},{"ID":52489,"Name":"#0245 colt9","Points":5100,"X":440,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99293Z"},{"ID":52490,"Name":"1.A","Points":4878,"X":534,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":849100611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99293Z"},{"ID":52491,"Name":"003 Wioska B","Points":4434,"X":285,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992931Z"},{"ID":52492,"Name":"New World","Points":9290,"X":408,"Y":704,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992932Z"},{"ID":52493,"Name":"0027","Points":1994,"X":310,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":2321390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992932Z"},{"ID":52494,"Name":"stachowo","Points":3227,"X":595,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":849101409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992933Z"},{"ID":52495,"Name":"KRÓL PAPI WIELKI","Points":8135,"X":652,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992933Z"},{"ID":52496,"Name":"007 | North","Points":6935,"X":387,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992934Z"},{"ID":52497,"Name":"Wioska barbarzyƄska","Points":7281,"X":519,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":8240677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992935Z"},{"ID":52498,"Name":"-10-","Points":8976,"X":582,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992935Z"},{"ID":52499,"Name":"zk potulice krynius","Points":2482,"X":678,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992936Z"},{"ID":52500,"Name":"Wioska barbarzyƄska","Points":5643,"X":371,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992936Z"},{"ID":52501,"Name":"027","Points":3420,"X":690,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992937Z"},{"ID":52502,"Name":"002 Wioska A","Points":6346,"X":286,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992937Z"},{"ID":52505,"Name":"nie grasz obok mnie?","Points":3857,"X":527,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992938Z"},{"ID":52506,"Name":"Nowe Dobra - budowa","Points":6777,"X":681,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992938Z"},{"ID":52507,"Name":"#165#","Points":4718,"X":654,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992939Z"},{"ID":52508,"Name":"C0275","Points":4374,"X":287,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99294Z"},{"ID":52509,"Name":"241...NORTH","Points":2148,"X":444,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99294Z"},{"ID":52510,"Name":"069 Wioska barbarzyƄska","Points":8780,"X":540,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992941Z"},{"ID":52512,"Name":"Azyl 8","Points":2296,"X":631,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992941Z"},{"ID":52513,"Name":"BOSS NW","Points":7852,"X":345,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992942Z"},{"ID":52514,"Name":"B008","Points":10211,"X":518,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992942Z"},{"ID":52515,"Name":"PiekƂo to inni","Points":5321,"X":652,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992943Z"},{"ID":52516,"Name":"MojeDnoToWaszSzczyt","Points":9704,"X":509,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992943Z"},{"ID":52517,"Name":"BOA1","Points":6552,"X":308,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992944Z"},{"ID":52518,"Name":"066.","Points":2641,"X":717,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992944Z"},{"ID":52519,"Name":"Wioska barbarzyƄska 03","Points":10495,"X":344,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992945Z"},{"ID":52520,"Name":"AAA","Points":7337,"X":535,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992945Z"},{"ID":52521,"Name":"015 Schwere Panzer-Abteilung 503","Points":2437,"X":606,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992946Z"},{"ID":52522,"Name":"WOLA0000","Points":10495,"X":678,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992946Z"},{"ID":52523,"Name":"New World","Points":10249,"X":429,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992947Z"},{"ID":52524,"Name":"New World","Points":10294,"X":406,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992948Z"},{"ID":52525,"Name":"C036","Points":9806,"X":354,"Y":673,"Continent":"K63","Bonus":5,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992948Z"},{"ID":52526,"Name":"Wioska barbarzyƄska","Points":3956,"X":367,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992949Z"},{"ID":52527,"Name":"#Kresy","Points":6103,"X":629,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99295Z"},{"ID":52528,"Name":"Wioska wilka 04","Points":7406,"X":715,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99295Z"},{"ID":52529,"Name":"Wioska Sindbad00","Points":5097,"X":415,"Y":316,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992951Z"},{"ID":52530,"Name":"Wioska barbarzyƄska","Points":7908,"X":403,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992951Z"},{"ID":52531,"Name":"034","Points":1946,"X":668,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992952Z"},{"ID":52532,"Name":"015 Twierdza","Points":5993,"X":633,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992952Z"},{"ID":52533,"Name":"KONFA TO MARKA, NARKA","Points":7051,"X":289,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992953Z"},{"ID":52534,"Name":"komandos. Ddddddd","Points":5182,"X":669,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992954Z"},{"ID":52535,"Name":"PiekƂo to inni","Points":3602,"X":650,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992955Z"},{"ID":52536,"Name":"S03","Points":5360,"X":718,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992955Z"},{"ID":52537,"Name":"Wioska19","Points":1280,"X":623,"Y":476,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992956Z"},{"ID":52538,"Name":"Magiczne koszary","Points":9809,"X":450,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992956Z"},{"ID":52539,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":554,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992957Z"},{"ID":52540,"Name":"KONFA TO MARKA, NARKA","Points":7391,"X":281,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992957Z"},{"ID":52541,"Name":"MJ14","Points":3881,"X":686,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":8669398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992958Z"},{"ID":52542,"Name":"075 Wioska barbarzyƄska","Points":3987,"X":346,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992959Z"},{"ID":52543,"Name":"MERHET","Points":1196,"X":590,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992959Z"},{"ID":52544,"Name":"Wioska barbarzyƄska","Points":6403,"X":366,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99296Z"},{"ID":52546,"Name":"NP 06","Points":6441,"X":304,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99296Z"},{"ID":52547,"Name":"Wioska 0013","Points":10375,"X":338,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992961Z"},{"ID":52548,"Name":"R 045 ~Kurast~","Points":7555,"X":492,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992961Z"},{"ID":52549,"Name":"Wioska barbarzyƄska","Points":2469,"X":314,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992962Z"},{"ID":52550,"Name":"027.","Points":9189,"X":622,"Y":546,"Continent":"K56","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992963Z"},{"ID":52551,"Name":"PóƂnocny Bagdad","Points":7008,"X":614,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992963Z"},{"ID":52553,"Name":"[0204]","Points":7604,"X":276,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992964Z"},{"ID":52554,"Name":"-1-","Points":9464,"X":631,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":849105420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992965Z"},{"ID":52555,"Name":"015","Points":9418,"X":304,"Y":615,"Continent":"K63","Bonus":6,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992965Z"},{"ID":52556,"Name":"KONFA TO MARKA, NARKA","Points":4569,"X":292,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992966Z"},{"ID":52557,"Name":"004","Points":10280,"X":275,"Y":537,"Continent":"K52","Bonus":5,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992966Z"},{"ID":52558,"Name":".2.","Points":1763,"X":297,"Y":403,"Continent":"K42","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992967Z"},{"ID":52559,"Name":"Avanti!","Points":7368,"X":275,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992968Z"},{"ID":52560,"Name":"#0142 Befsztyk","Points":3143,"X":487,"Y":548,"Continent":"K54","Bonus":0,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992968Z"},{"ID":52561,"Name":"Ć»UBEREK 101 - jak tak to tak","Points":9388,"X":608,"Y":701,"Continent":"K76","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992969Z"},{"ID":52562,"Name":"112 Wioska General Kaczor","Points":7608,"X":545,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99297Z"},{"ID":52563,"Name":"UTAPAU 3","Points":529,"X":543,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99297Z"},{"ID":52564,"Name":"04Wioska barbarzyƄska","Points":7953,"X":356,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992971Z"},{"ID":52565,"Name":"Wincy94 1","Points":8266,"X":648,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":849048734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992971Z"},{"ID":52566,"Name":"001","Points":1857,"X":566,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":6925574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992972Z"},{"ID":52567,"Name":"Wioska Pitter82","Points":5075,"X":545,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992973Z"},{"ID":52568,"Name":"001c","Points":4590,"X":301,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992973Z"},{"ID":52569,"Name":"z 058","Points":10220,"X":547,"Y":715,"Continent":"K75","Bonus":5,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992974Z"},{"ID":52570,"Name":"Wiocha III","Points":2391,"X":337,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849106316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992974Z"},{"ID":52571,"Name":"Kurnik","Points":6060,"X":442,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992975Z"},{"ID":52573,"Name":"EE 011","Points":4651,"X":706,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":849100149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992975Z"},{"ID":52574,"Name":"Alicante","Points":3319,"X":648,"Y":673,"Continent":"K66","Bonus":2,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992976Z"},{"ID":52576,"Name":"Wioska 2","Points":3030,"X":550,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992977Z"},{"ID":52577,"Name":"057","Points":7336,"X":713,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992977Z"},{"ID":52579,"Name":"#0054","Points":10495,"X":576,"Y":711,"Continent":"K75","Bonus":3,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992978Z"},{"ID":52580,"Name":"--029--","Points":8815,"X":572,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992979Z"},{"ID":52581,"Name":"C.049","Points":4237,"X":716,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992979Z"},{"ID":52582,"Name":"021","Points":9740,"X":652,"Y":333,"Continent":"K36","Bonus":8,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99298Z"},{"ID":52583,"Name":"xxx3","Points":7086,"X":702,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99298Z"},{"ID":52584,"Name":"XDX","Points":5002,"X":611,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992981Z"},{"ID":52586,"Name":"083","Points":3894,"X":713,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":2135129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992982Z"},{"ID":52587,"Name":"18k$ Grvvyq","Points":10495,"X":700,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":699676005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992982Z"},{"ID":52588,"Name":"KONFA TO MARKA, NARKA","Points":7587,"X":282,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992983Z"},{"ID":52589,"Name":"New WorldA","Points":3956,"X":282,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992983Z"},{"ID":52590,"Name":"Wioska barbarzyƄska","Points":2807,"X":421,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":849102150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992984Z"},{"ID":52592,"Name":"47. Ɓukomorze","Points":3015,"X":722,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992985Z"},{"ID":52593,"Name":"Psycha Siada","Points":10019,"X":330,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992985Z"},{"ID":52594,"Name":"D020","Points":3924,"X":560,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992986Z"},{"ID":52595,"Name":"C015","Points":3696,"X":540,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992986Z"},{"ID":52596,"Name":"003 Twierdza","Points":10019,"X":634,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992987Z"},{"ID":52597,"Name":"#0238 colt9","Points":5495,"X":435,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992988Z"},{"ID":52598,"Name":"059 Wioska barbarzyƄska","Points":4084,"X":342,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992988Z"},{"ID":52599,"Name":"Wioska barbarzyƄska 020","Points":8616,"X":595,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992989Z"},{"ID":52600,"Name":"North 092","Points":3672,"X":505,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992989Z"},{"ID":52601,"Name":"WZ02","Points":9420,"X":700,"Y":607,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99299Z"},{"ID":52602,"Name":"Nowy 0003","Points":1375,"X":299,"Y":601,"Continent":"K62","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992991Z"},{"ID":52603,"Name":"PPF-19","Points":3951,"X":532,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992991Z"},{"ID":52604,"Name":"Wioska barbarzyƄska","Points":3679,"X":463,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992992Z"},{"ID":52605,"Name":"Wioska kosmo1972","Points":5843,"X":424,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":7499430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992992Z"},{"ID":52606,"Name":"Nowa Baza 6","Points":6365,"X":615,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992993Z"},{"ID":52607,"Name":"PóƂnocny Bagdad","Points":9143,"X":622,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992994Z"},{"ID":52608,"Name":"053 Wioska barbarzyƄska","Points":3944,"X":345,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992994Z"},{"ID":52609,"Name":"Lipa","Points":9814,"X":671,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992995Z"},{"ID":52610,"Name":"Szlachcic","Points":4337,"X":362,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992995Z"},{"ID":52611,"Name":"Osada koczownikĂłw","Points":9319,"X":717,"Y":547,"Continent":"K57","Bonus":3,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992996Z"},{"ID":52612,"Name":"007","Points":9751,"X":287,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":849097898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992997Z"},{"ID":52613,"Name":"Wiocha","Points":6858,"X":336,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":849106316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992997Z"},{"ID":52614,"Name":"Efekty specjalne","Points":4708,"X":361,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":6416213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992998Z"},{"ID":52615,"Name":"04Wioska barbarzyƄska","Points":9351,"X":358,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992998Z"},{"ID":52616,"Name":"013","Points":3083,"X":341,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992999Z"},{"ID":52617,"Name":"A#012","Points":9797,"X":723,"Y":491,"Continent":"K47","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.992999Z"},{"ID":52618,"Name":"MojeDnoToWaszSzczyt","Points":9612,"X":510,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993Z"},{"ID":52619,"Name":"Avanti!","Points":5786,"X":283,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993001Z"},{"ID":52621,"Name":"Początek","Points":9739,"X":289,"Y":581,"Continent":"K52","Bonus":0,"PlayerID":7842579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993001Z"},{"ID":52622,"Name":"Wioska barbarzyƄska 010","Points":4014,"X":377,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993002Z"},{"ID":52623,"Name":"Wyspa 032","Points":4411,"X":291,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993003Z"},{"ID":52624,"Name":"t011","Points":7975,"X":671,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993003Z"},{"ID":52625,"Name":"Arczi997","Points":8688,"X":297,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993004Z"},{"ID":52626,"Name":"12. Remont na ƚw. Marcin","Points":5331,"X":462,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993004Z"},{"ID":52627,"Name":"024 Z","Points":986,"X":718,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993005Z"},{"ID":52628,"Name":"...::181 10::...","Points":3213,"X":273,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993005Z"},{"ID":52629,"Name":"E01","Points":4739,"X":306,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":6301789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993006Z"},{"ID":52630,"Name":"Wioska barbarzyƄska","Points":909,"X":614,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":8292737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993007Z"},{"ID":52631,"Name":"Wioska saba13","Points":638,"X":368,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":3101080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993007Z"},{"ID":52633,"Name":"o06","Points":9744,"X":612,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993008Z"},{"ID":52635,"Name":"Tequila","Points":7053,"X":705,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993008Z"},{"ID":52636,"Name":"0006 Wioska oracz1","Points":9739,"X":496,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993009Z"},{"ID":52637,"Name":"Wioska barbarzyƄska","Points":3859,"X":593,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":8991696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99301Z"},{"ID":52638,"Name":"Wioska [3]","Points":2250,"X":723,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":699858313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99301Z"},{"ID":52639,"Name":"wancki i gustlikk","Points":8880,"X":506,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993011Z"},{"ID":52640,"Name":"#1 MatWa","Points":10197,"X":635,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":849099517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993012Z"},{"ID":52641,"Name":"--030--","Points":3728,"X":575,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993012Z"},{"ID":52642,"Name":"Wioska barbarzyƄska 016","Points":9018,"X":375,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993013Z"},{"ID":52643,"Name":"R0se69","Points":9976,"X":543,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":849106383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993013Z"},{"ID":52644,"Name":"wancki i gustlikk","Points":8948,"X":505,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993014Z"},{"ID":52645,"Name":"$004$ OXY","Points":8055,"X":308,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993015Z"},{"ID":52646,"Name":"New World","Points":10290,"X":434,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993015Z"},{"ID":52647,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9804,"X":555,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993016Z"},{"ID":52648,"Name":"Wioska barbarzyƄska","Points":3266,"X":703,"Y":403,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993016Z"},{"ID":52649,"Name":"0110","Points":7608,"X":374,"Y":684,"Continent":"K63","Bonus":6,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993017Z"},{"ID":52651,"Name":"Wioska barbarzyƄska","Points":2250,"X":725,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993018Z"},{"ID":52652,"Name":"Wioska proof333","Points":7960,"X":391,"Y":477,"Continent":"K43","Bonus":0,"PlayerID":698783754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993019Z"},{"ID":52653,"Name":"006 - Budowanko!","Points":7463,"X":489,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993019Z"},{"ID":52654,"Name":"Szlachcic","Points":10476,"X":364,"Y":316,"Continent":"K33","Bonus":9,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99302Z"},{"ID":52655,"Name":"Wioska barbarzyƄska","Points":948,"X":392,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":2308351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99302Z"},{"ID":52656,"Name":"New WorldA","Points":1834,"X":279,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993021Z"},{"ID":52657,"Name":"Wioska barbarzyƄska","Points":3252,"X":709,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993022Z"},{"ID":52658,"Name":"Klatka9","Points":2165,"X":628,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993022Z"},{"ID":52659,"Name":"North 041","Points":7030,"X":515,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993023Z"},{"ID":52660,"Name":"Khorinis","Points":9847,"X":325,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993023Z"},{"ID":52661,"Name":"Flap","Points":5752,"X":617,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993024Z"},{"ID":52662,"Name":"Avanti!","Points":4827,"X":281,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993024Z"},{"ID":52664,"Name":"Nowe IMPERIUM 4","Points":5776,"X":617,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993025Z"},{"ID":52665,"Name":"CastAway !016","Points":6270,"X":710,"Y":589,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993026Z"},{"ID":52666,"Name":"TOLCIA 2","Points":5818,"X":639,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":699868739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993026Z"},{"ID":52667,"Name":"045.","Points":9869,"X":463,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993027Z"},{"ID":52668,"Name":"[0186]","Points":7325,"X":277,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993027Z"},{"ID":52669,"Name":"CastAway #017","Points":5727,"X":712,"Y":585,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993028Z"},{"ID":52670,"Name":"Azyl 5","Points":2181,"X":632,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993029Z"},{"ID":52671,"Name":"KONFA TO MARKA, NARKA","Points":8288,"X":283,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993029Z"},{"ID":52672,"Name":"Wioska barbarzyƄska","Points":2525,"X":410,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99303Z"},{"ID":52673,"Name":"029","Points":10160,"X":723,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99303Z"},{"ID":52674,"Name":"065. Noszak","Points":5145,"X":720,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993031Z"},{"ID":52675,"Name":"New World","Points":10291,"X":430,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993031Z"},{"ID":52676,"Name":"Wioska","Points":6074,"X":700,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993032Z"},{"ID":52677,"Name":"000","Points":9200,"X":653,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":848889850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993032Z"},{"ID":52678,"Name":"Wioska","Points":5759,"X":516,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849101102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993033Z"},{"ID":52679,"Name":"158","Points":10495,"X":392,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993034Z"},{"ID":52680,"Name":"C0351","Points":2038,"X":276,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993034Z"},{"ID":52682,"Name":"Nagato - B 002","Points":3842,"X":316,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":849094586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993035Z"},{"ID":52683,"Name":"Wioska barbarzyƄska","Points":6755,"X":327,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993035Z"},{"ID":52684,"Name":"Wioska barbarzyƄska","Points":5160,"X":422,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993036Z"},{"ID":52685,"Name":"0077","Points":4312,"X":460,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993036Z"},{"ID":52686,"Name":"Wioska barbarzyƄska","Points":2427,"X":464,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993037Z"},{"ID":52688,"Name":"Op Konfederacja","Points":3307,"X":467,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993038Z"},{"ID":52689,"Name":"Dzik 4","Points":7988,"X":295,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993038Z"},{"ID":52690,"Name":"NP 08","Points":2944,"X":306,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993039Z"},{"ID":52692,"Name":"Wioska barbarzyƄska 015","Points":2658,"X":386,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993039Z"},{"ID":52693,"Name":"W00","Points":7754,"X":324,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99304Z"},{"ID":52694,"Name":"WOLA0003","Points":5233,"X":682,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99304Z"},{"ID":52695,"Name":"New World","Points":10291,"X":429,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993041Z"},{"ID":52696,"Name":"[0263]","Points":5352,"X":279,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993042Z"},{"ID":52697,"Name":"*021","Points":5797,"X":674,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993042Z"},{"ID":52698,"Name":"005","Points":8893,"X":293,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993043Z"},{"ID":52699,"Name":"#034#","Points":9761,"X":638,"Y":674,"Continent":"K66","Bonus":4,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993043Z"},{"ID":52700,"Name":"Wioska barbarzyƄska","Points":4743,"X":483,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993044Z"},{"ID":52701,"Name":"Wioska barbarzyƄska","Points":5664,"X":380,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993044Z"},{"ID":52702,"Name":"C0286","Points":3882,"X":281,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993045Z"},{"ID":52703,"Name":"PiekƂo to inni","Points":4358,"X":647,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993046Z"},{"ID":52704,"Name":"Wioska barbarzyƄska","Points":5595,"X":555,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993046Z"},{"ID":52705,"Name":"-09-","Points":9472,"X":583,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993047Z"},{"ID":52706,"Name":"P1Kasik","Points":7178,"X":277,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":699627771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993047Z"},{"ID":52707,"Name":"Wioska barbarzyƄska","Points":4559,"X":388,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993048Z"},{"ID":52708,"Name":"Wioska Sir dziadekk19","Points":676,"X":612,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993048Z"},{"ID":52709,"Name":"001","Points":3303,"X":279,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993049Z"},{"ID":52710,"Name":"Wioska barbarzyƄska","Points":3535,"X":380,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993049Z"},{"ID":52711,"Name":"[0178]","Points":7909,"X":455,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99305Z"},{"ID":52712,"Name":"Wioska barbarzyƄska","Points":3126,"X":719,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993051Z"},{"ID":52713,"Name":"Wioska 1","Points":5806,"X":295,"Y":407,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993051Z"},{"ID":52714,"Name":"016","Points":4502,"X":532,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993052Z"},{"ID":52716,"Name":"Kurnik","Points":4063,"X":443,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993052Z"},{"ID":52717,"Name":"PiekƂo to inni","Points":4735,"X":648,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993053Z"},{"ID":52718,"Name":"Gryfios 094","Points":11365,"X":720,"Y":545,"Continent":"K57","Bonus":2,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993053Z"},{"ID":52719,"Name":"PoƂudniowy WschĂłd 008","Points":1718,"X":695,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993054Z"},{"ID":52720,"Name":"KOƁO","Points":2689,"X":656,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":2371436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993055Z"},{"ID":52721,"Name":"#298 C","Points":3823,"X":508,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993055Z"},{"ID":52722,"Name":"0000028Z","Points":9309,"X":289,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993056Z"},{"ID":52723,"Name":"New World","Points":10291,"X":426,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993056Z"},{"ID":52724,"Name":"010 | North","Points":4187,"X":383,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993057Z"},{"ID":52725,"Name":"BRAWO [01]","Points":1722,"X":629,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993058Z"},{"ID":52726,"Name":"Wioska Kostek33","Points":3348,"X":713,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993058Z"},{"ID":52727,"Name":"U.002","Points":8072,"X":288,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":849088243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993059Z"},{"ID":52728,"Name":"Wioska barbarzyƄska","Points":4729,"X":725,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99306Z"},{"ID":52729,"Name":"Wioska barbarzyƄska","Points":5497,"X":420,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99306Z"},{"ID":52730,"Name":"!36 55 Negostina","Points":4732,"X":657,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993061Z"},{"ID":52731,"Name":"Wioska barbarzyƄska","Points":6815,"X":373,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993061Z"},{"ID":52733,"Name":"Szlachcic","Points":4720,"X":361,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993062Z"},{"ID":52734,"Name":"000 Plutosea","Points":8495,"X":317,"Y":561,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993062Z"},{"ID":52735,"Name":"-01-","Points":9472,"X":580,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993063Z"},{"ID":52736,"Name":"Wioska RROO","Points":7460,"X":389,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":849084066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993064Z"},{"ID":52737,"Name":"006","Points":4167,"X":469,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993064Z"},{"ID":52738,"Name":"A#011","Points":9797,"X":724,"Y":492,"Continent":"K47","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993065Z"},{"ID":52739,"Name":"MojeDnoToWaszSzczyt","Points":9812,"X":506,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993065Z"},{"ID":52741,"Name":"Kiedyƛ Wielki Wojownik","Points":4474,"X":333,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993066Z"},{"ID":52742,"Name":"0003 Osada koczownikĂłw","Points":9735,"X":505,"Y":724,"Continent":"K75","Bonus":8,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993067Z"},{"ID":52743,"Name":"-19-","Points":5446,"X":579,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993068Z"},{"ID":52744,"Name":"024. Wioska barbarzyƄska","Points":5415,"X":683,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993068Z"},{"ID":52745,"Name":"Wschodnia StraĆŒnica","Points":9119,"X":711,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":849101378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993069Z"},{"ID":52746,"Name":"Wioska barbarzyƄska","Points":1314,"X":370,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99307Z"},{"ID":52747,"Name":"TYLOS","Points":8821,"X":559,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99307Z"},{"ID":52748,"Name":"Wioska barbarzyƄska","Points":2370,"X":630,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993071Z"},{"ID":52749,"Name":"jlkllklll","Points":6670,"X":665,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":7646152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993071Z"},{"ID":52750,"Name":"Psycha Siada","Points":9835,"X":335,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993072Z"},{"ID":52751,"Name":"ZƂoty ƚwit","Points":4583,"X":585,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993073Z"},{"ID":52752,"Name":"Avanti!","Points":6321,"X":273,"Y":486,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993073Z"},{"ID":52753,"Name":"###151###","Points":10495,"X":580,"Y":681,"Continent":"K65","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993074Z"},{"ID":52754,"Name":"Wawel","Points":3153,"X":324,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":849098731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993075Z"},{"ID":52755,"Name":"Wioska b","Points":1254,"X":281,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":699805379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993075Z"},{"ID":52756,"Name":"New World","Points":10291,"X":421,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993076Z"},{"ID":52757,"Name":"wy...m","Points":4157,"X":597,"Y":699,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993077Z"},{"ID":52758,"Name":"Wioska barbarzyƄska","Points":11284,"X":715,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993077Z"},{"ID":52759,"Name":"0009","Points":5730,"X":573,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993078Z"},{"ID":52761,"Name":"=SAwars=02=","Points":6461,"X":565,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993079Z"},{"ID":52763,"Name":"066. Nebo","Points":5143,"X":713,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99308Z"},{"ID":52764,"Name":"PiekƂo to inni","Points":2366,"X":657,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99308Z"},{"ID":52765,"Name":"#0086","Points":6073,"X":576,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993081Z"},{"ID":52766,"Name":"Wioska barbarzyƄska","Points":4102,"X":703,"Y":407,"Continent":"K47","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993081Z"},{"ID":52767,"Name":"032 Legio IX Tempestas","Points":1738,"X":713,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993082Z"},{"ID":52768,"Name":"Wioska barbarzyƄska","Points":1268,"X":274,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993083Z"},{"ID":52770,"Name":"PiekƂo to inni","Points":4215,"X":644,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993083Z"},{"ID":52771,"Name":"Wioska barbarzyƄska","Points":5415,"X":310,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993084Z"},{"ID":52772,"Name":"UTAPAU 2","Points":388,"X":542,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993085Z"},{"ID":52773,"Name":"Wioska barbarzyƄska","Points":788,"X":379,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993085Z"},{"ID":52774,"Name":"Ć»yleta","Points":2311,"X":681,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993086Z"},{"ID":52775,"Name":"*012","Points":8368,"X":676,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993086Z"},{"ID":52776,"Name":"PIROTECHNIK 008","Points":2318,"X":349,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993087Z"},{"ID":52777,"Name":"9.P","Points":4740,"X":461,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993088Z"},{"ID":52778,"Name":"0156","Points":3735,"X":366,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993088Z"},{"ID":52779,"Name":"BOSS N","Points":5943,"X":353,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993089Z"},{"ID":52780,"Name":"Wioska barbarzyƄska","Points":6192,"X":535,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":8240677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99309Z"},{"ID":52782,"Name":"Wioska barbarzyƄska","Points":3462,"X":400,"Y":300,"Continent":"K34","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99309Z"},{"ID":52783,"Name":"052.","Points":4277,"X":640,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993091Z"},{"ID":52784,"Name":"Lord Arsey KING","Points":8274,"X":508,"Y":527,"Continent":"K55","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993091Z"},{"ID":52785,"Name":"Osada koczownikĂłw","Points":2589,"X":278,"Y":519,"Continent":"K52","Bonus":7,"PlayerID":7530708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993092Z"},{"ID":52786,"Name":"0125","Points":464,"X":696,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993092Z"},{"ID":52787,"Name":"KONFA TO MARKA, NARKA","Points":10297,"X":292,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993093Z"},{"ID":52788,"Name":"Wioska janusz6161","Points":6967,"X":465,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":699863708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993093Z"},{"ID":52789,"Name":"Ć»UBEREK 004","Points":8784,"X":613,"Y":686,"Continent":"K66","Bonus":7,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993094Z"},{"ID":52790,"Name":"159","Points":8242,"X":389,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993095Z"},{"ID":52791,"Name":"Wioska barbarzyƄska","Points":4190,"X":380,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993095Z"},{"ID":52793,"Name":"ZƂoty ƚwit","Points":9921,"X":593,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993096Z"},{"ID":52794,"Name":"37.","Points":1336,"X":350,"Y":581,"Continent":"K53","Bonus":0,"PlayerID":3990066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993097Z"},{"ID":52795,"Name":"KRÓL PAPI WIELKI","Points":4783,"X":670,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993097Z"},{"ID":52796,"Name":"Wioska barbarzyƄska","Points":925,"X":724,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993098Z"},{"ID":52797,"Name":"#0082","Points":4031,"X":574,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993098Z"},{"ID":52798,"Name":"11. Porsche","Points":5550,"X":463,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993099Z"},{"ID":52799,"Name":"Osada koczownikĂłw","Points":4660,"X":344,"Y":344,"Continent":"K33","Bonus":7,"PlayerID":698817235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993099Z"},{"ID":52800,"Name":"Wioska barbarzyƄska","Points":1138,"X":394,"Y":516,"Continent":"K53","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9931Z"},{"ID":52801,"Name":"030 VFF Wioska barbarzyƄska","Points":1865,"X":320,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993101Z"},{"ID":52802,"Name":"Wioska barbarzyƄska","Points":9725,"X":326,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993101Z"},{"ID":52803,"Name":"#0157 barbarzyƄska","Points":5839,"X":480,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993102Z"},{"ID":52804,"Name":"=SAwars=01=","Points":8512,"X":565,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993102Z"},{"ID":52805,"Name":"019 - Budowanko!","Points":6577,"X":484,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993103Z"},{"ID":52806,"Name":"Avanti!","Points":6456,"X":276,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993104Z"},{"ID":52807,"Name":"066 Wioska barbarzyƄska","Points":3266,"X":340,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993105Z"},{"ID":52808,"Name":"183","Points":9889,"X":410,"Y":700,"Continent":"K74","Bonus":2,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993105Z"},{"ID":52809,"Name":"001","Points":9002,"X":699,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":849085371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993106Z"},{"ID":52810,"Name":"K42 ADAMUS 018","Points":4571,"X":284,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993106Z"},{"ID":52811,"Name":"Ć»UBRAWKA 013","Points":5581,"X":606,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993107Z"},{"ID":52812,"Name":"Wioska barbarzyƄska","Points":9210,"X":279,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993107Z"},{"ID":52813,"Name":"[0160]","Points":8624,"X":452,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993108Z"},{"ID":52814,"Name":"wioska prezesa","Points":2129,"X":304,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993109Z"},{"ID":52815,"Name":"PiekƂo to inni","Points":3686,"X":645,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993109Z"},{"ID":52817,"Name":"Domek Miniuka 02","Points":4715,"X":480,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99311Z"},{"ID":52818,"Name":"New WorldA","Points":1865,"X":283,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99311Z"},{"ID":52819,"Name":"Wioska barbarzyƄska","Points":4380,"X":670,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993111Z"},{"ID":52820,"Name":"0020 Wioska piratwoj","Points":9161,"X":492,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993112Z"},{"ID":52821,"Name":"New World","Points":5463,"X":415,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993112Z"},{"ID":52822,"Name":"Wioska barbarzyƄska","Points":2771,"X":395,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993113Z"},{"ID":52823,"Name":"[813] Odludzie","Points":6559,"X":712,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993113Z"},{"ID":52824,"Name":"Raskipek","Points":1636,"X":349,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849021566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993114Z"},{"ID":52825,"Name":"Hacperek","Points":5000,"X":361,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993115Z"},{"ID":52826,"Name":"010","Points":4612,"X":304,"Y":610,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993115Z"},{"ID":52827,"Name":"#0053","Points":6339,"X":579,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993116Z"},{"ID":52828,"Name":"Kapitol_03","Points":7908,"X":505,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993116Z"},{"ID":52829,"Name":"sh05","Points":4264,"X":512,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993117Z"},{"ID":52830,"Name":"#155#","Points":6152,"X":656,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993118Z"},{"ID":52831,"Name":"komandos","Points":4192,"X":662,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993118Z"},{"ID":52832,"Name":"3.Bristol","Points":9949,"X":593,"Y":700,"Continent":"K75","Bonus":9,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993119Z"},{"ID":52833,"Name":"027","Points":9922,"X":726,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99312Z"},{"ID":52834,"Name":"FP0001,5","Points":10838,"X":469,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99312Z"},{"ID":52835,"Name":"WZ04","Points":5336,"X":701,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993121Z"},{"ID":52836,"Name":"CastAway #013","Points":3995,"X":705,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993121Z"},{"ID":52838,"Name":"Wioska SirPatryk22","Points":8856,"X":563,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993122Z"},{"ID":52839,"Name":"W01","Points":5033,"X":319,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993123Z"},{"ID":52840,"Name":"kww01","Points":5318,"X":722,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993123Z"},{"ID":52842,"Name":"Gryfios 099","Points":11876,"X":720,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993124Z"},{"ID":52843,"Name":"036. HiiimsNest","Points":4204,"X":684,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993124Z"},{"ID":52844,"Name":"North 090","Points":3635,"X":601,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993125Z"},{"ID":52845,"Name":"Wioska barbarzyƄska","Points":1683,"X":274,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993125Z"},{"ID":52846,"Name":"Nie wiesz w co się pchasz :D","Points":1926,"X":273,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":849105417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993126Z"},{"ID":52847,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9806,"X":553,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993127Z"},{"ID":52848,"Name":"019","Points":1557,"X":300,"Y":478,"Continent":"K43","Bonus":0,"PlayerID":2418364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993127Z"},{"ID":52849,"Name":"Psycha Siada","Points":8958,"X":334,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993128Z"},{"ID":52850,"Name":"PiekƂo to inni","Points":4238,"X":639,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993129Z"},{"ID":52851,"Name":"B005","Points":7850,"X":521,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993129Z"},{"ID":52852,"Name":"Mordownia 6","Points":6204,"X":705,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99313Z"},{"ID":52854,"Name":"Wioska barbarzyƄska","Points":1601,"X":301,"Y":599,"Continent":"K53","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99313Z"},{"ID":52855,"Name":"023 Bluethorn City","Points":8238,"X":722,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993131Z"},{"ID":52856,"Name":"Wioska barbarzyƄska","Points":3610,"X":725,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993131Z"},{"ID":52857,"Name":"Psycha Siada","Points":9835,"X":332,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993132Z"},{"ID":52858,"Name":"FP039","Points":5013,"X":479,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993133Z"},{"ID":52859,"Name":"Wioska - 002 -","Points":2453,"X":533,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":848982634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993133Z"},{"ID":52860,"Name":"067.","Points":3341,"X":717,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993134Z"},{"ID":52862,"Name":"komandos","Points":3976,"X":668,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993135Z"},{"ID":52863,"Name":"ƁódĆș","Points":12154,"X":535,"Y":657,"Continent":"K65","Bonus":0,"PlayerID":529552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993135Z"},{"ID":52864,"Name":"X011","Points":6039,"X":711,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993136Z"},{"ID":52865,"Name":"Dalej nic","Points":9528,"X":691,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993136Z"},{"ID":52866,"Name":"Grzejdas 1","Points":9955,"X":698,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993137Z"},{"ID":52867,"Name":"Zaplecze Barba 023","Points":5722,"X":358,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993137Z"},{"ID":52868,"Name":"K33","Points":2454,"X":311,"Y":389,"Continent":"K33","Bonus":7,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993138Z"},{"ID":52869,"Name":"Wioska barbarzyƄska","Points":1944,"X":715,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993139Z"},{"ID":52870,"Name":"Avanti!","Points":5432,"X":275,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993139Z"},{"ID":52871,"Name":"083","Points":10495,"X":367,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":6853693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99314Z"},{"ID":52872,"Name":"Wioska barbarzyƄska","Points":5686,"X":371,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99314Z"},{"ID":52873,"Name":"PoƂudniowy WschĂłd 009","Points":1533,"X":694,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993141Z"},{"ID":52874,"Name":".achim.","Points":4046,"X":650,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993141Z"},{"ID":52875,"Name":"nasza plemie.rezerw.","Points":1056,"X":678,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993142Z"},{"ID":52876,"Name":"{54} Siemirowice","Points":873,"X":373,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993143Z"},{"ID":52877,"Name":"Wioska barbarzyƄska","Points":2397,"X":380,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":195249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993143Z"},{"ID":52878,"Name":"022 Z","Points":2578,"X":728,"Y":499,"Continent":"K47","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993144Z"},{"ID":52879,"Name":"Szlachcic","Points":9509,"X":372,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993145Z"},{"ID":52880,"Name":"Psycha Siada","Points":9835,"X":334,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993145Z"},{"ID":52882,"Name":"New World","Points":10291,"X":412,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993146Z"},{"ID":52883,"Name":"Bekas","Points":5454,"X":431,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":947923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993146Z"},{"ID":52884,"Name":"Smrodowo","Points":8169,"X":715,"Y":433,"Continent":"K47","Bonus":8,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993147Z"},{"ID":52885,"Name":"019 | North","Points":1764,"X":372,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993148Z"},{"ID":52886,"Name":".achim.","Points":3979,"X":567,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993148Z"},{"ID":52887,"Name":"Plaza de Santa Ana","Points":3030,"X":375,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993149Z"},{"ID":52888,"Name":"No.28","Points":758,"X":474,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993149Z"},{"ID":52889,"Name":"PóƂnocny Bagdad","Points":6883,"X":623,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99315Z"},{"ID":52890,"Name":"ZƂoty ƚwit","Points":8485,"X":586,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993151Z"},{"ID":52891,"Name":"Magiczne koszary","Points":9809,"X":447,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":848935389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993151Z"},{"ID":52893,"Name":"B007","Points":9056,"X":523,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993152Z"},{"ID":52894,"Name":"PiekƂo to inni","Points":3059,"X":655,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993153Z"},{"ID":52895,"Name":"Wioska barbarzyƄska","Points":6884,"X":415,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993153Z"},{"ID":52896,"Name":"=102= Wioska barbarzyƄska","Points":1448,"X":705,"Y":597,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993154Z"},{"ID":52897,"Name":"kamilkaze135 #14","Points":4144,"X":687,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993155Z"},{"ID":52898,"Name":"Cisza","Points":2738,"X":282,"Y":554,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993155Z"},{"ID":52899,"Name":"013 Twierdza","Points":8430,"X":632,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993156Z"},{"ID":52900,"Name":"A#013","Points":9797,"X":721,"Y":515,"Continent":"K57","Bonus":8,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993156Z"},{"ID":52902,"Name":"006 Wioska E","Points":3232,"X":281,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993157Z"},{"ID":52903,"Name":"XDX","Points":4313,"X":610,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993157Z"},{"ID":52905,"Name":"Wioska barbarzyƄska","Points":6594,"X":692,"Y":380,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993158Z"},{"ID":52907,"Name":"A-2","Points":5483,"X":672,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993159Z"},{"ID":52908,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":552,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993159Z"},{"ID":52909,"Name":"Wioska niki63","Points":6828,"X":488,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":2730335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99316Z"},{"ID":52910,"Name":"Psycha Siada","Points":8760,"X":334,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99316Z"},{"ID":52911,"Name":"nowe","Points":1616,"X":626,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993161Z"},{"ID":52912,"Name":"028 KTW","Points":4193,"X":719,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993162Z"},{"ID":52913,"Name":"29. Zangwebar","Points":5268,"X":717,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993162Z"},{"ID":52914,"Name":"MojeDnoToWaszSzczyt","Points":4952,"X":489,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993163Z"},{"ID":52915,"Name":"KONFA TO MARKA, NARKA","Points":2242,"X":293,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993163Z"},{"ID":52916,"Name":"KONFA TO MARKA, NARKA","Points":4539,"X":278,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993164Z"},{"ID":52917,"Name":"Kurnik","Points":5011,"X":443,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993164Z"},{"ID":52918,"Name":"065","Points":4936,"X":519,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993165Z"},{"ID":52919,"Name":"Wioska LordFrotto","Points":7253,"X":562,"Y":332,"Continent":"K35","Bonus":0,"PlayerID":849106785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993166Z"},{"ID":52920,"Name":"014","Points":842,"X":304,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993167Z"},{"ID":52921,"Name":"XDX","Points":3520,"X":615,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993167Z"},{"ID":52922,"Name":"104 Wioska","Points":9899,"X":540,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993168Z"},{"ID":52923,"Name":"Psycha Siada","Points":9728,"X":332,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993168Z"},{"ID":52924,"Name":"=103= Wioska barbarzyƄska","Points":2688,"X":702,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993169Z"},{"ID":52925,"Name":"001 Ć»elazna Twierdza","Points":9707,"X":550,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":8015775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993169Z"},{"ID":52926,"Name":"Wioska barbarzyƄska 014","Points":2747,"X":385,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99317Z"},{"ID":52927,"Name":"Wioska barbarzyƄska","Points":7712,"X":705,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993171Z"},{"ID":52928,"Name":"21. Wioska 21","Points":4172,"X":279,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993171Z"},{"ID":52929,"Name":"=104= Wioska barbarzyƄska","Points":3247,"X":708,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993172Z"},{"ID":52930,"Name":"Wioska HENRYK321","Points":1063,"X":415,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993172Z"},{"ID":52931,"Name":"Wioska barbarzyƄska","Points":6486,"X":396,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993173Z"},{"ID":52932,"Name":"ZataƄczymy Poloneza ;]","Points":7799,"X":493,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":848918262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993174Z"},{"ID":52933,"Name":"KONFA TO MARKA, NARKA","Points":7188,"X":282,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993174Z"},{"ID":52934,"Name":"34. Ebbing","Points":6503,"X":718,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993175Z"},{"ID":52935,"Name":"013","Points":739,"X":307,"Y":399,"Continent":"K33","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993175Z"},{"ID":52936,"Name":"New World","Points":6196,"X":278,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993176Z"},{"ID":52937,"Name":"Kurnik","Points":9463,"X":448,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993176Z"},{"ID":52938,"Name":"002","Points":7399,"X":689,"Y":611,"Continent":"K66","Bonus":8,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993177Z"},{"ID":52939,"Name":"wy...","Points":7208,"X":602,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993178Z"},{"ID":52940,"Name":"Wioska grek159","Points":2326,"X":296,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":1646837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993178Z"},{"ID":52941,"Name":"Wioska barbarzyƄska","Points":939,"X":325,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993179Z"},{"ID":52942,"Name":"Kurnik","Points":8680,"X":453,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99318Z"},{"ID":52943,"Name":"Beyaz Tavsan","Points":3899,"X":525,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99318Z"},{"ID":52944,"Name":"P2Kasik","Points":1873,"X":277,"Y":450,"Continent":"K42","Bonus":5,"PlayerID":699627771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993181Z"},{"ID":52945,"Name":"North 023","Points":7798,"X":511,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993181Z"},{"ID":52946,"Name":"ABC","Points":2550,"X":579,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849112029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993182Z"},{"ID":52947,"Name":"0000031Z","Points":5598,"X":279,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993183Z"},{"ID":52948,"Name":"PoƂudniowy WschĂłd 012","Points":1958,"X":690,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993183Z"},{"ID":52949,"Name":"Wioska Maliniak77","Points":4696,"X":635,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":7428666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993184Z"},{"ID":52950,"Name":"Wioska barbarzyƄska","Points":7634,"X":409,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993184Z"},{"ID":52951,"Name":"Wiocha 8","Points":3483,"X":557,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993185Z"},{"ID":52953,"Name":"Wioska 0020","Points":7617,"X":341,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993185Z"},{"ID":52954,"Name":"Avanti!","Points":5584,"X":278,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993186Z"},{"ID":52955,"Name":"Wioska barbarzyƄska 13","Points":6932,"X":337,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993186Z"},{"ID":52956,"Name":"=105= Wioska barbarzyƄska","Points":3030,"X":707,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993187Z"},{"ID":52957,"Name":"Nowe Dobra - budowa","Points":5733,"X":690,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993188Z"},{"ID":52958,"Name":"Kapitol_06","Points":5697,"X":503,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993188Z"},{"ID":52959,"Name":"KONFA TO MARKA, NARKA","Points":10300,"X":286,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993189Z"},{"ID":52960,"Name":"jeziora dlugie","Points":1772,"X":297,"Y":411,"Continent":"K42","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993189Z"},{"ID":52961,"Name":"Wioska barbarzyƄska","Points":9744,"X":550,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99319Z"},{"ID":52962,"Name":"026","Points":5728,"X":467,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.99319Z"},{"ID":52963,"Name":"BRAWO [02]","Points":1679,"X":630,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":849006385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993191Z"},{"ID":52964,"Name":"|D| IS","Points":2583,"X":458,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993192Z"},{"ID":52965,"Name":"#038","Points":2308,"X":557,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993192Z"},{"ID":52966,"Name":"Wioska barbarzyƄska","Points":4198,"X":661,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993193Z"},{"ID":52967,"Name":"Wioska barbarzyƄska 004","Points":9277,"X":379,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993193Z"},{"ID":52968,"Name":"Psycha Siada","Points":9138,"X":325,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993194Z"},{"ID":52969,"Name":"R 043","Points":4024,"X":501,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993195Z"},{"ID":52970,"Name":"002b","Points":3769,"X":299,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":8259895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993195Z"},{"ID":52971,"Name":"Wioska5","Points":9242,"X":705,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993196Z"},{"ID":52972,"Name":"017 Twierdza","Points":5149,"X":633,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993196Z"},{"ID":52973,"Name":".7.","Points":5848,"X":699,"Y":400,"Continent":"K46","Bonus":1,"PlayerID":699562182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993197Z"},{"ID":52974,"Name":"Podzamcze","Points":2336,"X":299,"Y":603,"Continent":"K62","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993198Z"},{"ID":52975,"Name":"[0203]","Points":6810,"X":278,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993198Z"},{"ID":52976,"Name":"024 VFF IJN Nagato","Points":5700,"X":315,"Y":367,"Continent":"K33","Bonus":8,"PlayerID":3108144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993199Z"},{"ID":52977,"Name":"Z01","Points":1273,"X":704,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.993199Z"},{"ID":52978,"Name":"K33","Points":2329,"X":311,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:54.9932Z"},{"ID":52979,"Name":"Gubernia 03 BarbarzyƄska","Points":1829,"X":368,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":849107532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03117Z"},{"ID":52980,"Name":"Wioska barbarzyƄska","Points":4439,"X":429,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03117Z"},{"ID":52981,"Name":"=117= Ramboq123","Points":4880,"X":711,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031171Z"},{"ID":52982,"Name":"Zygfryd","Points":7065,"X":379,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031171Z"},{"ID":52983,"Name":"#018 NOWE IMPERIUM STRONG","Points":10292,"X":617,"Y":696,"Continent":"K66","Bonus":4,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031172Z"},{"ID":52984,"Name":"Wioska Vi-vali","Points":3860,"X":523,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031172Z"},{"ID":52985,"Name":"Wioska 029","Points":3672,"X":668,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031173Z"},{"ID":52986,"Name":"KONFA TO MARKA, NARKA","Points":2534,"X":287,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031173Z"},{"ID":52987,"Name":"Wioska barbarzyƄska","Points":7318,"X":649,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031174Z"},{"ID":52988,"Name":"PPF-23","Points":3004,"X":533,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031174Z"},{"ID":52989,"Name":"Banicja 01","Points":9758,"X":348,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031175Z"},{"ID":52990,"Name":"034","Points":3595,"X":684,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031176Z"},{"ID":52991,"Name":"Wioska Kiubi5","Points":4390,"X":710,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":3692413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031176Z"},{"ID":52992,"Name":"[B]004","Points":2267,"X":416,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031177Z"},{"ID":52993,"Name":"037 KTW","Points":2824,"X":720,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031177Z"},{"ID":52994,"Name":"024","Points":2395,"X":287,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031178Z"},{"ID":52995,"Name":"Wioska barbarzyƄska","Points":1766,"X":448,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031178Z"},{"ID":52996,"Name":"#0246 colt9","Points":5271,"X":432,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031179Z"},{"ID":52997,"Name":"Wioska a3","Points":2814,"X":431,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031179Z"},{"ID":52998,"Name":"K42 ADAMUS 009","Points":8111,"X":286,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03118Z"},{"ID":52999,"Name":"C-004","Points":3608,"X":325,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03118Z"},{"ID":53000,"Name":"Bagno 14","Points":8261,"X":480,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031181Z"},{"ID":53001,"Name":"Ghostmane","Points":5912,"X":720,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031181Z"},{"ID":53002,"Name":"Wioska barbarzyƄska","Points":2249,"X":293,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":849101771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031182Z"},{"ID":53003,"Name":"009","Points":10237,"X":524,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031183Z"},{"ID":53004,"Name":"Wioska barbarzyƄska","Points":5646,"X":659,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849111196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031183Z"},{"ID":53005,"Name":"XDX","Points":6258,"X":615,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031184Z"},{"ID":53006,"Name":"8.P","Points":4844,"X":458,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031184Z"},{"ID":53007,"Name":"????","Points":5610,"X":480,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031185Z"},{"ID":53008,"Name":"ZƂoty ƚwit","Points":6613,"X":585,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031185Z"},{"ID":53009,"Name":"Wioska barbarzyƄska","Points":5463,"X":314,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031186Z"},{"ID":53010,"Name":"[0188]","Points":6596,"X":291,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031186Z"},{"ID":53012,"Name":"Bilbao","Points":2494,"X":645,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031187Z"},{"ID":53013,"Name":"olchowa","Points":6312,"X":589,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":6870350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031187Z"},{"ID":53014,"Name":"wioska XVI","Points":6233,"X":680,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698635863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031188Z"},{"ID":53015,"Name":"058 Osada koczownikĂłw","Points":4404,"X":342,"Y":663,"Continent":"K63","Bonus":7,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031188Z"},{"ID":53017,"Name":"Wioska barbarzyƄska","Points":3884,"X":725,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031189Z"},{"ID":53018,"Name":"02 Mario 76","Points":2963,"X":636,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03119Z"},{"ID":53019,"Name":"ƚw181*002","Points":4137,"X":661,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03119Z"},{"ID":53020,"Name":"008","Points":10409,"X":524,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031191Z"},{"ID":53021,"Name":"Flap","Points":7043,"X":612,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031191Z"},{"ID":53022,"Name":"MojeDnoToWaszSzczyt","Points":9949,"X":494,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031192Z"},{"ID":53023,"Name":"Wioska barbarzyƄska","Points":2450,"X":369,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031192Z"},{"ID":53024,"Name":"Wioska barbarzyƄska 14","Points":6387,"X":337,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031193Z"},{"ID":53025,"Name":"Wioska barbarzyƄska","Points":1088,"X":359,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":6416213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031194Z"},{"ID":53026,"Name":"Wioska 049","Points":9761,"X":701,"Y":606,"Continent":"K67","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031194Z"},{"ID":53027,"Name":"000 Dioda","Points":9260,"X":607,"Y":504,"Continent":"K56","Bonus":0,"PlayerID":849095240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031195Z"},{"ID":53028,"Name":"Wioska barbarzyƄska","Points":4708,"X":725,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031195Z"},{"ID":53029,"Name":"Wioska 005","Points":5010,"X":671,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031196Z"},{"ID":53030,"Name":"131","Points":9278,"X":386,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031197Z"},{"ID":53031,"Name":"Wioska barbarzyƄska","Points":3845,"X":727,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031197Z"},{"ID":53032,"Name":"128","Points":9279,"X":381,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031198Z"},{"ID":53033,"Name":"Inia City","Points":4160,"X":298,"Y":413,"Continent":"K42","Bonus":0,"PlayerID":849104818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031198Z"},{"ID":53034,"Name":"002","Points":2228,"X":280,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031199Z"},{"ID":53035,"Name":"M002","Points":7366,"X":475,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031199Z"},{"ID":53036,"Name":"0146","Points":5306,"X":367,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0312Z"},{"ID":53037,"Name":"Wioska barbarzyƄska","Points":9697,"X":326,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0312Z"},{"ID":53038,"Name":"Wioska barbarzyƄska 04","Points":10495,"X":343,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031201Z"},{"ID":53039,"Name":"PiekƂo to inni","Points":3964,"X":640,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031201Z"},{"ID":53041,"Name":"KONFA TO MARKA, NARKA","Points":2427,"X":288,"Y":414,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031202Z"},{"ID":53042,"Name":"Wioska barbarzyƄska","Points":3133,"X":691,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031203Z"},{"ID":53043,"Name":".achim.","Points":3612,"X":567,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031203Z"},{"ID":53044,"Name":"Psycha Siada","Points":9835,"X":330,"Y":641,"Continent":"K63","Bonus":7,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031204Z"},{"ID":53045,"Name":"0402","Points":9811,"X":573,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031204Z"},{"ID":53046,"Name":"PiekƂo to inni","Points":4722,"X":649,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031205Z"},{"ID":53047,"Name":"Wioska Fermer","Points":2183,"X":292,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":849105408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031205Z"},{"ID":53048,"Name":"047","Points":1725,"X":667,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031206Z"},{"ID":53049,"Name":"WywiaƂo daleko","Points":4322,"X":710,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031206Z"},{"ID":53050,"Name":"WOLA0004","Points":4825,"X":681,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031207Z"},{"ID":53051,"Name":"kathare","Points":9960,"X":534,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031207Z"},{"ID":53052,"Name":"Wioska 008","Points":3540,"X":673,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031208Z"},{"ID":53053,"Name":"wy...","Points":8705,"X":601,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031209Z"},{"ID":53054,"Name":"Osada koczownikĂłw","Points":5226,"X":368,"Y":321,"Continent":"K33","Bonus":7,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031209Z"},{"ID":53055,"Name":"003","Points":2177,"X":279,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03121Z"},{"ID":53056,"Name":"#0066","Points":5126,"X":573,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03121Z"},{"ID":53057,"Name":"[S]zczupak","Points":6332,"X":276,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":849106971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031211Z"},{"ID":53058,"Name":"Lord Arsey KING","Points":4418,"X":655,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031211Z"},{"ID":53059,"Name":"031 Wioska","Points":1940,"X":690,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031212Z"},{"ID":53060,"Name":"052","Points":2529,"X":695,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031212Z"},{"ID":53061,"Name":"027 Rustboro City","Points":11109,"X":727,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031213Z"},{"ID":53062,"Name":"Kapitol_07","Points":5832,"X":502,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031213Z"},{"ID":53063,"Name":"011 Garkonia","Points":1452,"X":672,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031214Z"},{"ID":53064,"Name":"CastAway !019","Points":5833,"X":710,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031214Z"},{"ID":53065,"Name":"A-4","Points":2439,"X":672,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031215Z"},{"ID":53066,"Name":"006","Points":2655,"X":327,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031215Z"},{"ID":53067,"Name":"#Kresy","Points":2142,"X":628,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031216Z"},{"ID":53068,"Name":"KONFA TO MARKA, NARKA","Points":8287,"X":283,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031216Z"},{"ID":53069,"Name":"053","Points":1849,"X":693,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031217Z"},{"ID":53070,"Name":"026ƚnieg","Points":5152,"X":470,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031217Z"},{"ID":53071,"Name":"o010","Points":7079,"X":609,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031218Z"},{"ID":53072,"Name":"242...NORTH","Points":2927,"X":444,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031219Z"},{"ID":53073,"Name":"#0071","Points":4351,"X":572,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031219Z"},{"ID":53075,"Name":"Wioska barbarzyƄska","Points":5220,"X":320,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03122Z"},{"ID":53076,"Name":"Wioska barbarzyƄska","Points":1093,"X":322,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03122Z"},{"ID":53077,"Name":"Wioska barbarzyƄska","Points":5240,"X":538,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031221Z"},{"ID":53078,"Name":"Wioska","Points":8026,"X":284,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":849097123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031221Z"},{"ID":53079,"Name":"Wioska24","Points":4526,"X":332,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031222Z"},{"ID":53080,"Name":"0452","Points":9146,"X":565,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031223Z"},{"ID":53081,"Name":"029","Points":10495,"X":400,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031223Z"},{"ID":53082,"Name":"006","Points":5130,"X":664,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031224Z"},{"ID":53083,"Name":"Orgetoryks","Points":3508,"X":329,"Y":354,"Continent":"K33","Bonus":0,"PlayerID":848998530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031224Z"},{"ID":53084,"Name":"003","Points":5480,"X":536,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031225Z"},{"ID":53085,"Name":"Wiocha","Points":2275,"X":690,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699803189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031226Z"},{"ID":53086,"Name":"bagienko_02","Points":5036,"X":567,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849093353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031226Z"},{"ID":53087,"Name":"_002_","Points":6354,"X":419,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":9283142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031227Z"},{"ID":53088,"Name":"BOA3","Points":4775,"X":310,"Y":620,"Continent":"K63","Bonus":7,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031227Z"},{"ID":53089,"Name":"mija","Points":1174,"X":303,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031228Z"},{"ID":53090,"Name":"Amogus","Points":1351,"X":724,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031228Z"},{"ID":53092,"Name":"C0287","Points":4396,"X":279,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031229Z"},{"ID":53093,"Name":"Wioska barbarzyƄska","Points":523,"X":298,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03123Z"},{"ID":53094,"Name":"Nowe Dobra - budowa","Points":5136,"X":689,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03123Z"},{"ID":53095,"Name":"Wioska barbarzyƄska","Points":1043,"X":336,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031231Z"},{"ID":53096,"Name":"KRÓL PAPI WIELKI","Points":6245,"X":725,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031231Z"},{"ID":53097,"Name":".achim.","Points":8947,"X":488,"Y":278,"Continent":"K24","Bonus":9,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031232Z"},{"ID":53098,"Name":"PiekƂo to inni","Points":4313,"X":651,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031232Z"},{"ID":53099,"Name":"Wioska barbarzyƄska","Points":4301,"X":724,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031233Z"},{"ID":53100,"Name":"Winterhome.031","Points":10075,"X":513,"Y":312,"Continent":"K35","Bonus":0,"PlayerID":8400180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031234Z"},{"ID":53101,"Name":"Kuzyn BƂaĆŒej","Points":6049,"X":580,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031235Z"},{"ID":53102,"Name":"komandos","Points":4147,"X":663,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031235Z"},{"ID":53103,"Name":"030 KTW","Points":3338,"X":724,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031236Z"},{"ID":53104,"Name":"3.Londyn","Points":9974,"X":579,"Y":704,"Continent":"K75","Bonus":8,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031236Z"},{"ID":53105,"Name":"wwwb","Points":3298,"X":598,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031237Z"},{"ID":53106,"Name":"Taran","Points":8006,"X":313,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031238Z"},{"ID":53107,"Name":"Nowe IMPERIUM 1","Points":3485,"X":617,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031238Z"},{"ID":53108,"Name":"0150","Points":8818,"X":703,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031239Z"},{"ID":53109,"Name":"002","Points":10237,"X":533,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031239Z"},{"ID":53110,"Name":"azi5","Points":2129,"X":461,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":849094759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03124Z"},{"ID":53111,"Name":"egon","Points":7211,"X":440,"Y":567,"Continent":"K54","Bonus":0,"PlayerID":8438707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03124Z"},{"ID":53112,"Name":"*204*","Points":9968,"X":291,"Y":407,"Continent":"K42","Bonus":0,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031241Z"},{"ID":53113,"Name":"Wioska barbarzyƄska","Points":2872,"X":717,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031241Z"},{"ID":53114,"Name":"PiekƂo to inni","Points":5226,"X":648,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031242Z"},{"ID":53115,"Name":"Zaplecze Barba 027","Points":5027,"X":356,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031242Z"},{"ID":53116,"Name":"071 Wioska barbarzyƄska","Points":9386,"X":540,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031243Z"},{"ID":53117,"Name":"210","Points":8449,"X":397,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031244Z"},{"ID":53118,"Name":"C0310","Points":3005,"X":279,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031244Z"},{"ID":53119,"Name":"[829] Odludzie","Points":6237,"X":720,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031245Z"},{"ID":53120,"Name":"Wioska barbarzyƄska","Points":9632,"X":552,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031245Z"},{"ID":53121,"Name":"Chile","Points":6382,"X":724,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031246Z"},{"ID":53122,"Name":"063 Wioska barbarzyƄska","Points":9835,"X":548,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031246Z"},{"ID":53123,"Name":"WZ01","Points":10362,"X":700,"Y":606,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031247Z"},{"ID":53124,"Name":"Zaplecze drewniane 3","Points":9744,"X":369,"Y":323,"Continent":"K33","Bonus":1,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031248Z"},{"ID":53125,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9805,"X":551,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031248Z"},{"ID":53126,"Name":"North 062","Points":5149,"X":539,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031249Z"},{"ID":53127,"Name":"Osada koczownikĂłw 01","Points":10495,"X":343,"Y":335,"Continent":"K33","Bonus":3,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031249Z"},{"ID":53128,"Name":"Wioska Wojka","Points":5690,"X":584,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":8609713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03125Z"},{"ID":53129,"Name":"B018","Points":1950,"X":625,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03125Z"},{"ID":53130,"Name":"#004","Points":9063,"X":550,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031251Z"},{"ID":53131,"Name":"055.","Points":3042,"X":639,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031251Z"},{"ID":53132,"Name":"Wioska Gregor20-90","Points":6526,"X":514,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":698934729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031252Z"},{"ID":53133,"Name":"B031","Points":10227,"X":632,"Y":314,"Continent":"K36","Bonus":8,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031252Z"},{"ID":53134,"Name":"Wioska barbarzyƄska","Points":4880,"X":306,"Y":382,"Continent":"K33","Bonus":0,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031253Z"},{"ID":53135,"Name":"#K75 0021","Points":4003,"X":521,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031253Z"},{"ID":53136,"Name":"C0233","Points":7563,"X":282,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031254Z"},{"ID":53137,"Name":"181","Points":10019,"X":388,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031254Z"},{"ID":53138,"Name":"z Wioska barbarzyƄska 15","Points":5833,"X":358,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031255Z"},{"ID":53139,"Name":"4.D","Points":1623,"X":532,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031255Z"},{"ID":53140,"Name":"Wioska barbarzyƄska","Points":3926,"X":435,"Y":628,"Continent":"K64","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031256Z"},{"ID":53141,"Name":"Mordownia 7","Points":6525,"X":705,"Y":596,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031257Z"},{"ID":53142,"Name":"Wioska Grucha125","Points":8245,"X":285,"Y":574,"Continent":"K52","Bonus":0,"PlayerID":498483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031257Z"},{"ID":53143,"Name":"Wioska b","Points":7441,"X":516,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":849101102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031258Z"},{"ID":53144,"Name":"Wioska barbarzyƄska","Points":4062,"X":698,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031258Z"},{"ID":53145,"Name":"Lord Arsey KING","Points":7301,"X":659,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031259Z"},{"ID":53146,"Name":"0015","Points":7784,"X":468,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031259Z"},{"ID":53147,"Name":"Wioska barbarzyƄska","Points":1559,"X":312,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03126Z"},{"ID":53148,"Name":"Avanti!","Points":2618,"X":275,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031261Z"},{"ID":53149,"Name":"$002$ MSI","Points":9828,"X":303,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031261Z"},{"ID":53150,"Name":"011","Points":2832,"X":606,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031262Z"},{"ID":53151,"Name":"A#033","Points":9797,"X":719,"Y":528,"Continent":"K57","Bonus":2,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031262Z"},{"ID":53152,"Name":"004 maniuƛ","Points":6772,"X":284,"Y":552,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031263Z"},{"ID":53153,"Name":"026 Wioska barbarzyƄska","Points":10068,"X":544,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031263Z"},{"ID":53155,"Name":"080 Wioska barbarzyƄska","Points":4278,"X":347,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031264Z"},{"ID":53156,"Name":"New World","Points":4023,"X":431,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031264Z"},{"ID":53157,"Name":"WZ03","Points":7630,"X":700,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031265Z"},{"ID":53158,"Name":"Wioska barbarzyƄska","Points":6383,"X":414,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031265Z"},{"ID":53159,"Name":"Wioska [1]","Points":6399,"X":724,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":699858313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031266Z"},{"ID":53160,"Name":"????","Points":4530,"X":472,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031266Z"},{"ID":53161,"Name":"a Kraken121","Points":2059,"X":563,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849038985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031267Z"},{"ID":53162,"Name":"Avanti!","Points":4279,"X":276,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031268Z"},{"ID":53163,"Name":"011","Points":7570,"X":284,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031268Z"},{"ID":53164,"Name":"C0282","Points":4353,"X":281,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031269Z"},{"ID":53165,"Name":"C0239","Points":10416,"X":272,"Y":524,"Continent":"K52","Bonus":1,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031269Z"},{"ID":53166,"Name":"Wioska barbarzyƄska 05","Points":10349,"X":341,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03127Z"},{"ID":53167,"Name":"Psycha Siada","Points":8564,"X":332,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03127Z"},{"ID":53168,"Name":"Wioska LOLA1982","Points":1176,"X":502,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":2569868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031271Z"},{"ID":53169,"Name":"Psycha Siada","Points":8867,"X":333,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031271Z"},{"ID":53170,"Name":"Wioska barbarzyƄska","Points":3531,"X":277,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031272Z"},{"ID":53171,"Name":"*024*t","Points":7714,"X":683,"Y":624,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031273Z"},{"ID":53172,"Name":"Avanti!","Points":5987,"X":274,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031273Z"},{"ID":53173,"Name":"Wioska barbarzyƄska","Points":4595,"X":661,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031274Z"},{"ID":53174,"Name":"Nowe Dobra - budowa","Points":5897,"X":686,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031274Z"},{"ID":53175,"Name":"SALEM","Points":1208,"X":293,"Y":401,"Continent":"K42","Bonus":0,"PlayerID":7259690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031275Z"},{"ID":53176,"Name":"Wioska 005","Points":4485,"X":315,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":699424741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031275Z"},{"ID":53177,"Name":"[819] Odludzie","Points":6542,"X":710,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031276Z"},{"ID":53178,"Name":"Wioska barbarzyƄska","Points":4554,"X":276,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031276Z"},{"ID":53179,"Name":"--039--","Points":5736,"X":573,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031277Z"},{"ID":53180,"Name":"Wioska barbarzyƄska","Points":7281,"X":413,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031277Z"},{"ID":53181,"Name":"26. Maecht","Points":9875,"X":724,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031278Z"},{"ID":53182,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":4543,"X":538,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031278Z"},{"ID":53184,"Name":"-006-","Points":8614,"X":723,"Y":499,"Continent":"K47","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031279Z"},{"ID":53185,"Name":"C0295","Points":4139,"X":274,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03128Z"},{"ID":53186,"Name":"Wiadro19","Points":2441,"X":675,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03128Z"},{"ID":53187,"Name":"NP 05","Points":4132,"X":305,"Y":392,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031281Z"},{"ID":53188,"Name":"Kobylany","Points":2728,"X":588,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":699837483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031281Z"},{"ID":53189,"Name":"KONFA TO MARKA, NARKA","Points":6178,"X":285,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031282Z"},{"ID":53190,"Name":"North 050","Points":9199,"X":512,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031282Z"},{"ID":53191,"Name":"PóƂnocny Bagdad","Points":2766,"X":628,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031283Z"},{"ID":53192,"Name":"rafisonik10","Points":4213,"X":513,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031283Z"},{"ID":53193,"Name":"C0300","Points":4184,"X":278,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031284Z"},{"ID":53194,"Name":"Wioska barbarzyƄska","Points":8000,"X":727,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031284Z"},{"ID":53195,"Name":"0017","Points":1807,"X":681,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031285Z"},{"ID":53196,"Name":"Motorola 03","Points":8373,"X":363,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031286Z"},{"ID":53197,"Name":"Wioska barbarzyƄska","Points":1880,"X":571,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031286Z"},{"ID":53198,"Name":"Wioska barbarzyƄska","Points":4087,"X":367,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031287Z"},{"ID":53200,"Name":"Wolgast","Points":2341,"X":338,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031287Z"},{"ID":53201,"Name":"New World","Points":10294,"X":433,"Y":718,"Continent":"K74","Bonus":6,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031288Z"},{"ID":53202,"Name":"031 Verdanturf Town","Points":7485,"X":721,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031288Z"},{"ID":53203,"Name":"Wioska barbarzyƄska","Points":4827,"X":714,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031289Z"},{"ID":53204,"Name":"nowy początek :)","Points":3859,"X":392,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":2308351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031289Z"},{"ID":53205,"Name":"Wioska barbarzyƄska 007","Points":6205,"X":376,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03129Z"},{"ID":53207,"Name":"High commissioner","Points":6007,"X":303,"Y":400,"Continent":"K43","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03129Z"},{"ID":53208,"Name":"=106= Wioska barbarzyƄska","Points":2283,"X":707,"Y":572,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031291Z"},{"ID":53209,"Name":"7.62 mm","Points":3460,"X":423,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031291Z"},{"ID":53210,"Name":"C.050","Points":4154,"X":718,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031292Z"},{"ID":53212,"Name":"Wioska 3","Points":2481,"X":550,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031293Z"},{"ID":53213,"Name":"Wioska barbarzyƄska","Points":2605,"X":724,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031293Z"},{"ID":53214,"Name":"Wioska004","Points":8167,"X":690,"Y":386,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031294Z"},{"ID":53215,"Name":"Wioska barbarzyƄska 005","Points":7813,"X":378,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031294Z"},{"ID":53216,"Name":"xxx","Points":9323,"X":697,"Y":600,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031295Z"},{"ID":53217,"Name":"Wioska barbarzyƄska","Points":353,"X":331,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":849097175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031295Z"},{"ID":53218,"Name":"Wioska barbarzyƄska","Points":3249,"X":725,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031296Z"},{"ID":53219,"Name":"046 Wioska barbarzyƄska","Points":9835,"X":547,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031296Z"},{"ID":53220,"Name":"077 Wioska barbarzyƄska","Points":5334,"X":349,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031297Z"},{"ID":53221,"Name":"--019--","Points":8059,"X":575,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031297Z"},{"ID":53222,"Name":"#07!","Points":2780,"X":637,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031298Z"},{"ID":53223,"Name":"FAKE OR OFF","Points":9812,"X":400,"Y":299,"Continent":"K24","Bonus":3,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031299Z"},{"ID":53224,"Name":"Wioska STALLON327","Points":2065,"X":475,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":1553481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031299Z"},{"ID":53225,"Name":"RzeĆșnia 2","Points":7426,"X":708,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0313Z"},{"ID":53226,"Name":"Wioska Pracz 4","Points":6332,"X":307,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0313Z"},{"ID":53227,"Name":"azi7","Points":2084,"X":460,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":849094759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031301Z"},{"ID":53228,"Name":"[0166]","Points":8484,"X":456,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031301Z"},{"ID":53229,"Name":"Wioska barbarzyƄska","Points":3705,"X":427,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031302Z"},{"ID":53230,"Name":"Wioska Kristoffs","Points":10971,"X":341,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031302Z"},{"ID":53231,"Name":"Wioska barbarzyƄska","Points":2539,"X":370,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031303Z"},{"ID":53233,"Name":"KrakĂłw","Points":3016,"X":408,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031304Z"},{"ID":53234,"Name":"Wioska barbarzyƄska","Points":2975,"X":725,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031304Z"},{"ID":53235,"Name":"Wioska barbarzyƄska","Points":3316,"X":705,"Y":400,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031305Z"},{"ID":53236,"Name":"Wioska barbarzyƄska","Points":2695,"X":723,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031305Z"},{"ID":53237,"Name":"Wioska barbarzyƄska","Points":1157,"X":283,"Y":573,"Continent":"K52","Bonus":0,"PlayerID":849097123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031306Z"},{"ID":53240,"Name":"134","Points":7454,"X":386,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031306Z"},{"ID":53241,"Name":"Wioska barbarzyƄska","Points":1477,"X":298,"Y":614,"Continent":"K62","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031307Z"},{"ID":53242,"Name":"Brzeg Dolny","Points":2995,"X":677,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031307Z"},{"ID":53243,"Name":"rafisonik8","Points":3293,"X":514,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849101108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031308Z"},{"ID":53244,"Name":"PPF-21","Points":3753,"X":533,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031309Z"},{"ID":53245,"Name":"Osada koczownikĂłw","Points":2835,"X":425,"Y":714,"Continent":"K74","Bonus":2,"PlayerID":849100814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031309Z"},{"ID":53246,"Name":"komandos","Points":4203,"X":668,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03131Z"},{"ID":53247,"Name":"New WorldA","Points":3928,"X":280,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03131Z"},{"ID":53248,"Name":"K42 ADAMUS 012","Points":6512,"X":281,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031311Z"},{"ID":53249,"Name":"054","Points":2481,"X":695,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031311Z"},{"ID":53250,"Name":"E02","Points":2716,"X":305,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":6301789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031312Z"},{"ID":53251,"Name":"New World","Points":10290,"X":431,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031312Z"},{"ID":53252,"Name":"Psycha Siada","Points":4715,"X":327,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031313Z"},{"ID":53253,"Name":"BIMBER 7","Points":2063,"X":444,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031313Z"},{"ID":53254,"Name":"komandos","Points":5168,"X":662,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031314Z"},{"ID":53255,"Name":"Wioska 002","Points":5266,"X":671,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031314Z"},{"ID":53257,"Name":"K42 ADAMUS 008","Points":8474,"X":282,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031315Z"},{"ID":53258,"Name":"001","Points":2637,"X":609,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":1775957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031315Z"},{"ID":53259,"Name":"Wioska barbarzyƄska","Points":6593,"X":533,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":8240677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031316Z"},{"ID":53260,"Name":"K67 28","Points":2842,"X":703,"Y":607,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031317Z"},{"ID":53261,"Name":"Babidi #2","Points":6954,"X":375,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":849101962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031317Z"},{"ID":53262,"Name":"Kapitol_10","Points":5966,"X":505,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031318Z"},{"ID":53263,"Name":"Wioska Vocare","Points":3603,"X":603,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":849083293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031318Z"},{"ID":53264,"Name":"Wioska barbarzyƄska","Points":2747,"X":706,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031319Z"},{"ID":53265,"Name":"Szlachcic","Points":6137,"X":373,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031319Z"},{"ID":53266,"Name":"_003_","Points":4390,"X":420,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":9283142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03132Z"},{"ID":53267,"Name":"New World","Points":8757,"X":437,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03132Z"},{"ID":53268,"Name":"C0296 (Bandii.)","Points":1917,"X":285,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031321Z"},{"ID":53269,"Name":"Wioska barbarzyƄska","Points":4421,"X":698,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031321Z"},{"ID":53270,"Name":"050.","Points":2593,"X":595,"Y":454,"Continent":"K45","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031322Z"},{"ID":53271,"Name":"komandos","Points":3875,"X":669,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031322Z"},{"ID":53272,"Name":"New World","Points":10292,"X":428,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031323Z"},{"ID":53273,"Name":"102.Stradi","Points":9726,"X":422,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031323Z"},{"ID":53274,"Name":"KASHYYYK 2","Points":1909,"X":568,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031324Z"},{"ID":53275,"Name":"Wioska Myszka21","Points":401,"X":337,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":849064087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031325Z"},{"ID":53276,"Name":"zzz","Points":3514,"X":595,"Y":701,"Continent":"K75","Bonus":0,"PlayerID":8773967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031325Z"},{"ID":53277,"Name":"#0256 barbarzyƄska","Points":1738,"X":444,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031326Z"},{"ID":53278,"Name":"Wioska barbarzyƄska","Points":3226,"X":383,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031326Z"},{"ID":53279,"Name":"Wioska 011","Points":3442,"X":673,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031327Z"},{"ID":53280,"Name":"kathare","Points":9557,"X":529,"Y":727,"Continent":"K75","Bonus":5,"PlayerID":873575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031327Z"},{"ID":53281,"Name":"komandos","Points":6772,"X":667,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031328Z"},{"ID":53282,"Name":"Kiedyƛ Wielki Wojownik","Points":4933,"X":331,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031328Z"},{"ID":53284,"Name":"#201 C","Points":4435,"X":512,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031329Z"},{"ID":53285,"Name":"Branco coelho","Points":6088,"X":523,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031329Z"},{"ID":53288,"Name":"#0076","Points":4215,"X":572,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03133Z"},{"ID":53290,"Name":"Atlantyda","Points":3928,"X":706,"Y":413,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03133Z"},{"ID":53291,"Name":"095","Points":2752,"X":725,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031331Z"},{"ID":53293,"Name":"Bombai","Points":3171,"X":291,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":2717161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031331Z"},{"ID":53294,"Name":"Lord Arsey KING","Points":6079,"X":656,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031332Z"},{"ID":53295,"Name":"Barcelona","Points":3195,"X":646,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031333Z"},{"ID":53296,"Name":"Wioska barbarzyƄska","Points":7044,"X":412,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031333Z"},{"ID":53297,"Name":"096","Points":2752,"X":726,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031334Z"},{"ID":53298,"Name":"Taran","Points":8105,"X":321,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031334Z"},{"ID":53299,"Name":"Wioska barbarzyƄska","Points":6760,"X":403,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031335Z"},{"ID":53300,"Name":"EO EO","Points":8107,"X":273,"Y":502,"Continent":"K52","Bonus":1,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031336Z"},{"ID":53301,"Name":"Wioska janush4","Points":5045,"X":648,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031336Z"},{"ID":53302,"Name":"wioska","Points":10200,"X":643,"Y":323,"Continent":"K36","Bonus":2,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031337Z"},{"ID":53303,"Name":"Wioska wodzu 22s","Points":6928,"X":613,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":8292737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031337Z"},{"ID":53305,"Name":"0162","Points":3261,"X":385,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031338Z"},{"ID":53306,"Name":"osada 3","Points":3610,"X":662,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":7357503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031338Z"},{"ID":53307,"Name":"Wioska barbarzyƄska","Points":5402,"X":368,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031339Z"},{"ID":53308,"Name":"zenon","Points":9686,"X":376,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031339Z"},{"ID":53309,"Name":"KONFA TO MARKA, NARKA","Points":4303,"X":277,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03134Z"},{"ID":53310,"Name":"BETON 090.......","Points":7404,"X":664,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031341Z"},{"ID":53311,"Name":"059.","Points":2458,"X":638,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031341Z"},{"ID":53312,"Name":"005 Wioska D","Points":4022,"X":285,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031342Z"},{"ID":53313,"Name":"Wioska17","Points":5373,"X":332,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031342Z"},{"ID":53314,"Name":"Ghostmane1","Points":2806,"X":721,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031343Z"},{"ID":53315,"Name":"Wioska barbarzyƄska","Points":7095,"X":325,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031343Z"},{"ID":53316,"Name":"Wioska forestrr","Points":7463,"X":598,"Y":301,"Continent":"K35","Bonus":0,"PlayerID":8852026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031344Z"},{"ID":53317,"Name":"Kapitol_14","Points":4373,"X":502,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031344Z"},{"ID":53318,"Name":"Kurnik","Points":8238,"X":452,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031345Z"},{"ID":53319,"Name":"097","Points":10495,"X":386,"Y":697,"Continent":"K63","Bonus":2,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031345Z"},{"ID":53321,"Name":"C100","Points":5264,"X":355,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":699383279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031346Z"},{"ID":53322,"Name":"7.62 mm","Points":3891,"X":466,"Y":426,"Continent":"K44","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031346Z"},{"ID":53323,"Name":"ZƂoty ƚwit","Points":8605,"X":593,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031347Z"},{"ID":53324,"Name":"027 KTW","Points":6199,"X":722,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031347Z"},{"ID":53325,"Name":"Ghostmane8","Points":1654,"X":720,"Y":442,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031348Z"},{"ID":53326,"Name":"K42 ADAMUS 014","Points":5384,"X":284,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031349Z"},{"ID":53327,"Name":"Wyspa 007","Points":10495,"X":290,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031349Z"},{"ID":53328,"Name":"41. Wioska 41","Points":8545,"X":282,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03135Z"},{"ID":53329,"Name":"New World","Points":10290,"X":422,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03135Z"},{"ID":53330,"Name":"mmutla o mosweu","Points":1758,"X":521,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031351Z"},{"ID":53331,"Name":"Taka.","Points":4522,"X":483,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031351Z"},{"ID":53332,"Name":"Wioska barbarzyƄska","Points":9898,"X":373,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031352Z"},{"ID":53333,"Name":"Little thing","Points":6558,"X":694,"Y":617,"Continent":"K66","Bonus":5,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031352Z"},{"ID":53334,"Name":"*022*","Points":6119,"X":687,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031353Z"},{"ID":53335,"Name":"Wioska barbarzyƄska","Points":3400,"X":717,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031354Z"},{"ID":53336,"Name":"cypel","Points":5007,"X":527,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031354Z"},{"ID":53337,"Name":"farma to darma","Points":1787,"X":528,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031355Z"},{"ID":53338,"Name":"New World","Points":10290,"X":428,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031355Z"},{"ID":53339,"Name":"-32-","Points":5649,"X":585,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031356Z"},{"ID":53340,"Name":"Wioska barbarzyƄska","Points":4542,"X":589,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031356Z"},{"ID":53341,"Name":"027. Gloria Victis","Points":6201,"X":280,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031357Z"},{"ID":53342,"Name":"Wioska Kuzniakers","Points":3102,"X":722,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":699734445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031357Z"},{"ID":53343,"Name":"New World","Points":10294,"X":433,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031358Z"},{"ID":53344,"Name":"Wioska barbarzyƄska","Points":5477,"X":718,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031359Z"},{"ID":53345,"Name":"[809] Odludzie","Points":6145,"X":713,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031359Z"},{"ID":53346,"Name":"Wioska barbarzyƄska","Points":3703,"X":276,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03136Z"},{"ID":53348,"Name":"Wioska TeletubisiĂłw","Points":3961,"X":716,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03136Z"},{"ID":53349,"Name":"#033#","Points":9761,"X":652,"Y":665,"Continent":"K66","Bonus":4,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031361Z"},{"ID":53350,"Name":"032","Points":1497,"X":454,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031361Z"},{"ID":53352,"Name":"stachodĆŒons 2","Points":3531,"X":594,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":849101409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031362Z"},{"ID":53353,"Name":"5-Wioska -AC-OB","Points":1623,"X":693,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031362Z"},{"ID":53354,"Name":"Wioska barbarzyƄska","Points":658,"X":320,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031363Z"},{"ID":53355,"Name":"16 ta","Points":9811,"X":720,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031363Z"},{"ID":53356,"Name":"Wioska barbarzyƄska","Points":4034,"X":726,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031364Z"},{"ID":53357,"Name":"NoeyPL 4","Points":5286,"X":333,"Y":558,"Continent":"K53","Bonus":0,"PlayerID":849000135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031364Z"},{"ID":53358,"Name":"O153","Points":2138,"X":299,"Y":612,"Continent":"K62","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031365Z"},{"ID":53359,"Name":"Osada koczownikĂłw","Points":7004,"X":271,"Y":490,"Continent":"K42","Bonus":4,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031366Z"},{"ID":53360,"Name":"KONFA TO MARKA, NARKA","Points":6784,"X":276,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031366Z"},{"ID":53361,"Name":"Wioska barbarzyƄska","Points":3389,"X":718,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031367Z"},{"ID":53362,"Name":"C.051","Points":3001,"X":718,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031367Z"},{"ID":53363,"Name":"KONFA TO MARKA, NARKA","Points":4276,"X":292,"Y":427,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031368Z"},{"ID":53364,"Name":"Wioska barbarzyƄska","Points":1384,"X":408,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849102150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031368Z"},{"ID":53365,"Name":"Wioska barbarzyƄska","Points":7126,"X":648,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031369Z"},{"ID":53366,"Name":"komandos","Points":6357,"X":663,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031369Z"},{"ID":53367,"Name":"tomek016 VII","Points":460,"X":691,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":8811880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03137Z"},{"ID":53368,"Name":"015 - Budowanko!","Points":6766,"X":493,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03137Z"},{"ID":53369,"Name":"Wioska barbarzyƄska","Points":2773,"X":284,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":848988401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031371Z"},{"ID":53370,"Name":"kamilkaze135 #17","Points":3008,"X":685,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031371Z"},{"ID":53371,"Name":"Wioska barbarzyƄska","Points":2485,"X":713,"Y":423,"Continent":"K47","Bonus":3,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031372Z"},{"ID":53372,"Name":"Wioska barbarzyƄska","Points":5535,"X":414,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031372Z"},{"ID":53373,"Name":"002","Points":3741,"X":300,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849109795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031373Z"},{"ID":53374,"Name":"0119","Points":8518,"X":377,"Y":694,"Continent":"K63","Bonus":9,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031373Z"},{"ID":53375,"Name":"Szulernia","Points":1806,"X":392,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":7249451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031374Z"},{"ID":53376,"Name":"Wioska barbarzyƄska","Points":4566,"X":563,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031375Z"},{"ID":53377,"Name":"Wioska SHIZA","Points":1957,"X":318,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":698766369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031375Z"},{"ID":53378,"Name":"Wioska barbarzyƄska","Points":11116,"X":721,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031376Z"},{"ID":53379,"Name":"276...DEL","Points":11781,"X":462,"Y":308,"Continent":"K34","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031376Z"},{"ID":53380,"Name":"069. Napier","Points":4391,"X":718,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031377Z"},{"ID":53381,"Name":"028. Gloria Victis","Points":5882,"X":282,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031377Z"},{"ID":53382,"Name":"Wioska","Points":5947,"X":328,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031378Z"},{"ID":53383,"Name":"Wioska barbarzyƄska","Points":6657,"X":540,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031378Z"},{"ID":53384,"Name":"Wioska barbarzyƄsko","Points":6869,"X":579,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031379Z"},{"ID":53385,"Name":"Wioska barbarzyƄska","Points":2907,"X":720,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031379Z"},{"ID":53386,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":10237,"X":539,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03138Z"},{"ID":53387,"Name":"PóƂnocny Bagdad","Points":6978,"X":625,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03138Z"},{"ID":53388,"Name":"Rosa","Points":8715,"X":577,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":6882236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031381Z"},{"ID":53389,"Name":"#0174 darmuwa","Points":5896,"X":475,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031381Z"},{"ID":53390,"Name":"Wioska barbarzyƄska","Points":3814,"X":725,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031382Z"},{"ID":53391,"Name":"B006","Points":7520,"X":522,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031382Z"},{"ID":53392,"Name":"New World","Points":9983,"X":425,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031383Z"},{"ID":53393,"Name":"0016","Points":8554,"X":471,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031384Z"},{"ID":53394,"Name":"001","Points":7267,"X":295,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":848886200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031384Z"},{"ID":53395,"Name":"Kapitol_19","Points":5135,"X":502,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031385Z"},{"ID":53396,"Name":"Wioska barbarzyƄska","Points":470,"X":410,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031385Z"},{"ID":53397,"Name":".achim.","Points":7868,"X":486,"Y":274,"Continent":"K24","Bonus":2,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031386Z"},{"ID":53399,"Name":"Wioska barbarzyƄska 02","Points":10495,"X":339,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031386Z"},{"ID":53400,"Name":"Wioska 0015","Points":8990,"X":340,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031387Z"},{"ID":53401,"Name":"Ghostmane4","Points":3043,"X":727,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031388Z"},{"ID":53402,"Name":"Zaplecze Barba 026","Points":5740,"X":355,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031388Z"},{"ID":53403,"Name":"Wioska barbarzyƄska","Points":5140,"X":319,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031389Z"},{"ID":53404,"Name":"North 076","Points":4245,"X":519,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031389Z"},{"ID":53405,"Name":"074 Wioska barbarzyƄska","Points":3593,"X":344,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03139Z"},{"ID":53406,"Name":"#115#","Points":5236,"X":652,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03139Z"},{"ID":53407,"Name":"ZƂoty ƚwit","Points":8873,"X":596,"Y":294,"Continent":"K25","Bonus":1,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031391Z"},{"ID":53408,"Name":"BiaƂa Podlaska 1","Points":6913,"X":438,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849100787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031391Z"},{"ID":53410,"Name":"062","Points":655,"X":692,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031392Z"},{"ID":53411,"Name":"Wioska barbarzyƄska","Points":1416,"X":415,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031393Z"},{"ID":53412,"Name":"Wioska wilka 02","Points":9582,"X":716,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":6786449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031393Z"},{"ID":53413,"Name":"Lord Arsey KING","Points":6951,"X":663,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031394Z"},{"ID":53414,"Name":"kww04","Points":4188,"X":718,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031394Z"},{"ID":53415,"Name":"005","Points":1377,"X":302,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849109795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031395Z"},{"ID":53416,"Name":"[811] Odludzie","Points":7224,"X":714,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031395Z"},{"ID":53417,"Name":"KONFA TO MARKA, NARKA","Points":3467,"X":287,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031396Z"},{"ID":53418,"Name":"Wioska barbarzyƄska","Points":826,"X":691,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031397Z"},{"ID":53419,"Name":"Avanti!","Points":5997,"X":279,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031397Z"},{"ID":53421,"Name":"New WorldA","Points":1571,"X":277,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031398Z"},{"ID":53422,"Name":"Wioska barbarzyƄska","Points":9708,"X":714,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031398Z"},{"ID":53423,"Name":"- 169 - SS","Points":9264,"X":548,"Y":688,"Continent":"K65","Bonus":0,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031399Z"},{"ID":53424,"Name":"osada 2","Points":4923,"X":663,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":7357503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031399Z"},{"ID":53426,"Name":"040.xxx","Points":2049,"X":522,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0314Z"},{"ID":53427,"Name":"Wioska dla gieƂdy","Points":8318,"X":437,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":1406042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0314Z"},{"ID":53428,"Name":"Wioska barbarzyƄska","Points":3875,"X":727,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031401Z"},{"ID":53429,"Name":"Wioska Sessue","Points":4175,"X":512,"Y":676,"Continent":"K65","Bonus":0,"PlayerID":8501514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031402Z"},{"ID":53430,"Name":"kamilkaze135 #15","Points":3768,"X":691,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031402Z"},{"ID":53431,"Name":"Wioska barbarzyƄska","Points":5623,"X":706,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031403Z"},{"ID":53432,"Name":".achim.","Points":5485,"X":575,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031403Z"},{"ID":53433,"Name":"Osada koczownikĂłw 02","Points":10495,"X":339,"Y":339,"Continent":"K33","Bonus":2,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031404Z"},{"ID":53434,"Name":"WZ06","Points":4226,"X":699,"Y":608,"Continent":"K66","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031404Z"},{"ID":53435,"Name":"Wioska barbarzyƄska","Points":5457,"X":699,"Y":395,"Continent":"K36","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031405Z"},{"ID":53436,"Name":"Twierdza (Why?)","Points":6873,"X":474,"Y":648,"Continent":"K64","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031405Z"},{"ID":53437,"Name":"Twierdza (-LM-)","Points":2608,"X":533,"Y":450,"Continent":"K45","Bonus":25,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031406Z"},{"ID":53438,"Name":"014. Carbonara","Points":5689,"X":315,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031406Z"},{"ID":53439,"Name":"Wioska barbarzyƄska 11","Points":6888,"X":347,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031407Z"},{"ID":53440,"Name":"C-005","Points":4132,"X":322,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031407Z"},{"ID":53441,"Name":"Wioska barbarzyƄska","Points":5910,"X":644,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031408Z"},{"ID":53442,"Name":"Betoniarnia","Points":1898,"X":276,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":848907771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031408Z"},{"ID":53443,"Name":"Darma MOOSELOOSE","Points":9255,"X":577,"Y":622,"Continent":"K65","Bonus":0,"PlayerID":699560327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031409Z"},{"ID":53444,"Name":"Wioska barbarzyƄska","Points":6957,"X":404,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031409Z"},{"ID":53445,"Name":"011 | North","Points":4973,"X":380,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03141Z"},{"ID":53446,"Name":"04Wioska barbarzyƄska","Points":4154,"X":362,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031411Z"},{"ID":53447,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":285,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031411Z"},{"ID":53448,"Name":"Wioska barbarzyƄska","Points":1032,"X":690,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031412Z"},{"ID":53449,"Name":"Alamo","Points":2773,"X":718,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031412Z"},{"ID":53450,"Name":"023 Z","Points":4345,"X":729,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031413Z"},{"ID":53452,"Name":"025","Points":10495,"X":398,"Y":706,"Continent":"K73","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031413Z"},{"ID":53453,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":3930,"X":539,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031414Z"},{"ID":53454,"Name":"Wioska barbarzyƄska","Points":9076,"X":324,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031414Z"},{"ID":53455,"Name":"Ć»UBEREK 003","Points":9988,"X":611,"Y":691,"Continent":"K66","Bonus":5,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031415Z"},{"ID":53456,"Name":"Kurnik","Points":9068,"X":451,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031415Z"},{"ID":53457,"Name":"[836] Odludzie","Points":5182,"X":720,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031416Z"},{"ID":53458,"Name":"The Game Has Only Just Begun","Points":4674,"X":356,"Y":525,"Continent":"K53","Bonus":0,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031416Z"},{"ID":53459,"Name":"ZPP Atleti","Points":2952,"X":727,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031417Z"},{"ID":53460,"Name":"New World","Points":6740,"X":411,"Y":700,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031417Z"},{"ID":53461,"Name":"Ghostmane7","Points":2667,"X":719,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031418Z"},{"ID":53462,"Name":"3. Redania","Points":1682,"X":603,"Y":698,"Continent":"K66","Bonus":0,"PlayerID":849101526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031419Z"},{"ID":53463,"Name":"058 - Budowanko!","Points":4190,"X":506,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031419Z"},{"ID":53464,"Name":"*007","Points":6732,"X":673,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03142Z"},{"ID":53465,"Name":"Wioska barbarzyƄska","Points":7553,"X":324,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03142Z"},{"ID":53466,"Name":"Wioska barbarzyƄska","Points":3663,"X":382,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031421Z"},{"ID":53467,"Name":"0013 Dziewczyna z Pociągu","Points":9511,"X":458,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031421Z"},{"ID":53468,"Name":"1 na 100","Points":5574,"X":709,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031422Z"},{"ID":53470,"Name":"Wioska barbarzyƄska","Points":816,"X":390,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":3842862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031422Z"},{"ID":53471,"Name":"K67 04","Points":4734,"X":700,"Y":614,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031423Z"},{"ID":53472,"Name":"Wioska barbarzyƄska","Points":928,"X":353,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031423Z"},{"ID":53473,"Name":"Wioska barbarzyƄska","Points":5526,"X":322,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031424Z"},{"ID":53474,"Name":"27.U-KISS","Points":7168,"X":694,"Y":421,"Continent":"K46","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031424Z"},{"ID":53475,"Name":"020. Night Raid","Points":5343,"X":489,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":699684062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031425Z"},{"ID":53476,"Name":"K42 ADAMUS 017","Points":5757,"X":282,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031426Z"},{"ID":53477,"Name":"KONFA TO MARKA, NARKA","Points":2468,"X":289,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031426Z"},{"ID":53478,"Name":"Trunks Super Saiyan 003","Points":5107,"X":519,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699054373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031427Z"},{"ID":53479,"Name":"Wioska 3","Points":3998,"X":623,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":849056744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031428Z"},{"ID":53480,"Name":"#011","Points":8806,"X":555,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031428Z"},{"ID":53481,"Name":"PiekƂo to inni","Points":2818,"X":657,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031429Z"},{"ID":53482,"Name":"Wioska barbarzyƄska","Points":5788,"X":367,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03143Z"},{"ID":53483,"Name":"~~085~~","Points":2747,"X":678,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03143Z"},{"ID":53484,"Name":"-11-","Points":8925,"X":582,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031431Z"},{"ID":53485,"Name":"028 Legio IV Flavia Felix","Points":1578,"X":713,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031431Z"},{"ID":53486,"Name":"Wioska barbarzyƄska","Points":1817,"X":714,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":699272633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031432Z"},{"ID":53487,"Name":"Psycha Siada","Points":9079,"X":333,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031432Z"},{"ID":53488,"Name":"E01","Points":8650,"X":723,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031433Z"},{"ID":53489,"Name":"Kapitol_11","Points":5954,"X":513,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031433Z"},{"ID":53491,"Name":"Wioska barbarzyƄska","Points":4619,"X":395,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031434Z"},{"ID":53492,"Name":"[0172]","Points":7230,"X":450,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031434Z"},{"ID":53493,"Name":"Zaplecze Barba 035","Points":3895,"X":349,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031435Z"},{"ID":53494,"Name":"009","Points":4490,"X":298,"Y":595,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031435Z"},{"ID":53495,"Name":"#0056","Points":4855,"X":580,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031436Z"},{"ID":53496,"Name":"5.E","Points":1252,"X":536,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031436Z"},{"ID":53497,"Name":"#006 Zenitizm to styl ĆŒycia","Points":1104,"X":279,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":849096215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031437Z"},{"ID":53498,"Name":"Wioska diabel19","Points":9394,"X":724,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031437Z"},{"ID":53499,"Name":"Kurczaczek","Points":1574,"X":628,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":698338524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031438Z"},{"ID":53500,"Name":"New World","Points":10290,"X":429,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031438Z"},{"ID":53501,"Name":"Wiocha VI","Points":963,"X":335,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":849106316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031439Z"},{"ID":53502,"Name":"B_7","Points":1478,"X":295,"Y":421,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031439Z"},{"ID":53503,"Name":"Winterfell.011","Points":10178,"X":455,"Y":280,"Continent":"K24","Bonus":9,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03144Z"},{"ID":53504,"Name":"lorus","Points":5727,"X":527,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03144Z"},{"ID":53505,"Name":"128 invidia","Points":9459,"X":504,"Y":727,"Continent":"K75","Bonus":3,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031441Z"},{"ID":53506,"Name":"Wioska MamTegoDoƛć","Points":5928,"X":351,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":698592907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031441Z"},{"ID":53507,"Name":"163","Points":9278,"X":399,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031442Z"},{"ID":53508,"Name":"Nekropolis","Points":8790,"X":707,"Y":584,"Continent":"K57","Bonus":0,"PlayerID":849088199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031443Z"},{"ID":53509,"Name":"Semantyka","Points":2218,"X":307,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849076515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031443Z"},{"ID":53510,"Name":"Bagno 31","Points":5841,"X":474,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031444Z"},{"ID":53511,"Name":"StachodĆŒons","Points":6758,"X":594,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849101409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031444Z"},{"ID":53512,"Name":"Mordownia 8","Points":5661,"X":707,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031445Z"},{"ID":53513,"Name":"New World","Points":10291,"X":435,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031445Z"},{"ID":53514,"Name":"063. Maszerbrum","Points":4612,"X":718,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031446Z"},{"ID":53515,"Name":"CastAway !031","Points":4029,"X":715,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031446Z"},{"ID":53516,"Name":"Wioska Xerez","Points":3677,"X":295,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":698701911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031447Z"},{"ID":53517,"Name":"Wioska barbarzyƄska","Points":1486,"X":713,"Y":415,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031447Z"},{"ID":53518,"Name":"Artur Boruc V2","Points":2450,"X":707,"Y":405,"Continent":"K47","Bonus":0,"PlayerID":699146876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031448Z"},{"ID":53519,"Name":"013. Wimbledon","Points":5355,"X":507,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":848953066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031448Z"},{"ID":53520,"Name":"Wioska barbarzyƄska","Points":4359,"X":402,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031449Z"},{"ID":53521,"Name":"Cisza","Points":1291,"X":286,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031449Z"},{"ID":53522,"Name":"--051--","Points":3008,"X":580,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03145Z"},{"ID":53523,"Name":"C-001","Points":5900,"X":321,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03145Z"},{"ID":53524,"Name":"RzeĆșnia","Points":4624,"X":708,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031451Z"},{"ID":53525,"Name":"Osada koczownikĂłw","Points":1109,"X":691,"Y":628,"Continent":"K66","Bonus":6,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031451Z"},{"ID":53526,"Name":"092","Points":4086,"X":722,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031452Z"},{"ID":53527,"Name":"#107#","Points":5507,"X":656,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031452Z"},{"ID":53528,"Name":"Wioska Wojtaka","Points":2647,"X":585,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":8609713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031453Z"},{"ID":53529,"Name":"Avanti!","Points":3974,"X":272,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031453Z"},{"ID":53530,"Name":"O047","Points":9866,"X":315,"Y":629,"Continent":"K63","Bonus":9,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031454Z"},{"ID":53531,"Name":"Liverpool","Points":359,"X":293,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":848993769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031455Z"},{"ID":53532,"Name":"xxx1","Points":5316,"X":696,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031455Z"},{"ID":53533,"Name":"[824] Odludzie","Points":6271,"X":718,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031456Z"},{"ID":53534,"Name":"XDX","Points":3960,"X":617,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031461Z"},{"ID":53535,"Name":"Flap","Points":5233,"X":600,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031462Z"},{"ID":53536,"Name":"MERHET","Points":2451,"X":590,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031462Z"},{"ID":53537,"Name":"KRONOSIK8","Points":6307,"X":679,"Y":562,"Continent":"K56","Bonus":0,"PlayerID":849107703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031463Z"},{"ID":53538,"Name":"Wioska barbarzyƄska","Points":6059,"X":403,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031463Z"},{"ID":53540,"Name":"Laguna","Points":2846,"X":278,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":848930898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031464Z"},{"ID":53542,"Name":"K42 ADAMUS 015","Points":5471,"X":289,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031464Z"},{"ID":53544,"Name":"007","Points":8261,"X":401,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031465Z"},{"ID":53545,"Name":"1. Kear Morhen","Points":6512,"X":606,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":849101526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031465Z"},{"ID":53546,"Name":"????","Points":5212,"X":477,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031466Z"},{"ID":53547,"Name":"Wioska dziadek1974","Points":6717,"X":593,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":8991696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031466Z"},{"ID":53548,"Name":"Wioska barbarzyƄska","Points":2197,"X":697,"Y":614,"Continent":"K66","Bonus":0,"PlayerID":3589487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031467Z"},{"ID":53549,"Name":"New World","Points":6762,"X":439,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031467Z"},{"ID":53550,"Name":"Nowa 60","Points":4278,"X":711,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031468Z"},{"ID":53551,"Name":"|D| IS","Points":2673,"X":459,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031469Z"},{"ID":53552,"Name":"San Escobar","Points":6682,"X":291,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":2717161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031469Z"},{"ID":53553,"Name":"B-1","Points":3932,"X":672,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03147Z"},{"ID":53554,"Name":"111","Points":3875,"X":414,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03147Z"},{"ID":53555,"Name":"129","Points":7253,"X":391,"Y":699,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031471Z"},{"ID":53556,"Name":"|D| Riverfrost","Points":4697,"X":455,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031471Z"},{"ID":53557,"Name":"K42 ADAMUS 024","Points":2036,"X":283,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031472Z"},{"ID":53558,"Name":"Wioska barbarzyƄska","Points":762,"X":352,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031472Z"},{"ID":53559,"Name":"Wioska barbarzyƄska","Points":4349,"X":729,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031473Z"},{"ID":53560,"Name":"0121","Points":6472,"X":348,"Y":672,"Continent":"K63","Bonus":3,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031474Z"},{"ID":53561,"Name":"111","Points":3430,"X":420,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":849102150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031474Z"},{"ID":53562,"Name":"PiekƂo to inni","Points":3633,"X":649,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031475Z"},{"ID":53563,"Name":"Wygwizdowa 014","Points":3489,"X":653,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031475Z"},{"ID":53564,"Name":"059","Points":3310,"X":723,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031476Z"},{"ID":53565,"Name":"=|07|=","Points":9882,"X":690,"Y":383,"Continent":"K36","Bonus":9,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031476Z"},{"ID":53566,"Name":"A004","Points":2787,"X":334,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":849105102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031477Z"},{"ID":53567,"Name":"Osada koczownikĂłw","Points":5224,"X":419,"Y":296,"Continent":"K24","Bonus":6,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031477Z"},{"ID":53568,"Name":"102 Zushi","Points":3670,"X":635,"Y":473,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031478Z"},{"ID":53569,"Name":"Cisza","Points":3078,"X":285,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031478Z"},{"ID":53570,"Name":"W003","Points":1907,"X":307,"Y":389,"Continent":"K33","Bonus":0,"PlayerID":849082154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031479Z"},{"ID":53571,"Name":"101 Sanuki","Points":3984,"X":641,"Y":475,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031479Z"},{"ID":53572,"Name":"New World","Points":4638,"X":411,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03148Z"},{"ID":53573,"Name":"--046--","Points":3145,"X":577,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031481Z"},{"ID":53574,"Name":"Wioska29","Points":2452,"X":334,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031481Z"},{"ID":53575,"Name":"Dzik 11","Points":9441,"X":288,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":8366045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031482Z"},{"ID":53576,"Name":"A17","Points":3629,"X":465,"Y":644,"Continent":"K64","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031482Z"},{"ID":53577,"Name":"Wioska barbarzyƄska","Points":2748,"X":355,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031483Z"},{"ID":53579,"Name":"=|06|=","Points":10004,"X":690,"Y":385,"Continent":"K36","Bonus":6,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031483Z"},{"ID":53580,"Name":"ups","Points":8989,"X":508,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":849101102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031484Z"},{"ID":53581,"Name":"PóƂnocny Bagdad","Points":7031,"X":626,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031485Z"},{"ID":53582,"Name":"Wioska barbarzyƄska","Points":2478,"X":355,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031485Z"},{"ID":53583,"Name":"~~068~~","Points":6283,"X":683,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031486Z"},{"ID":53584,"Name":"#0057","Points":4321,"X":571,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031486Z"},{"ID":53585,"Name":"04Wioska barbarzyƄska","Points":8593,"X":358,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031487Z"},{"ID":53586,"Name":"Wioska barbarzyƄska","Points":1632,"X":493,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699744012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031487Z"},{"ID":53587,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":8200,"X":543,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031488Z"},{"ID":53588,"Name":"021. Wioska barbarzyƄska","Points":4846,"X":683,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031488Z"},{"ID":53589,"Name":"Wioska barbarzyƄska","Points":2713,"X":459,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031489Z"},{"ID":53590,"Name":"Wioska barbarzyƄska","Points":1327,"X":455,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031489Z"},{"ID":53591,"Name":"K44 x035","Points":6529,"X":441,"Y":406,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03149Z"},{"ID":53592,"Name":"Cisza","Points":1040,"X":283,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03149Z"},{"ID":53593,"Name":"New WorldA","Points":4628,"X":280,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031491Z"},{"ID":53594,"Name":"Osada koczownikĂłw","Points":9596,"X":714,"Y":573,"Continent":"K57","Bonus":6,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031491Z"},{"ID":53595,"Name":"Wioska PeKamon","Points":7399,"X":438,"Y":409,"Continent":"K44","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031492Z"},{"ID":53597,"Name":"FAKE OR OFF","Points":9814,"X":398,"Y":300,"Continent":"K33","Bonus":9,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031493Z"},{"ID":53599,"Name":"Wioska barbarzyƄska","Points":9429,"X":718,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031493Z"},{"ID":53600,"Name":"A-007","Points":3226,"X":318,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031494Z"},{"ID":53601,"Name":"Wioska barbarzyƄska","Points":1015,"X":329,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031494Z"},{"ID":53602,"Name":"KONFA TO MARKA, NARKA","Points":2062,"X":288,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031495Z"},{"ID":53603,"Name":"Palirura","Points":2342,"X":353,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":698906190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031495Z"},{"ID":53604,"Name":"osada 5","Points":1741,"X":661,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":7357503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031496Z"},{"ID":53605,"Name":"Wioska Mekambe","Points":7911,"X":713,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031496Z"},{"ID":53606,"Name":"135","Points":6575,"X":388,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031497Z"},{"ID":53607,"Name":"Wioska Pracz 8","Points":2986,"X":312,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031497Z"},{"ID":53608,"Name":"North 047","Points":5292,"X":541,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031498Z"},{"ID":53609,"Name":"Wioska barbarzyƄska","Points":1714,"X":393,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031498Z"},{"ID":53610,"Name":"Wioska barbarzyƄska","Points":5270,"X":397,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031499Z"},{"ID":53611,"Name":"komandos","Points":4344,"X":666,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0315Z"},{"ID":53612,"Name":"0117","Points":8004,"X":376,"Y":692,"Continent":"K63","Bonus":6,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0315Z"},{"ID":53613,"Name":"A.018","Points":7389,"X":606,"Y":556,"Continent":"K56","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031501Z"},{"ID":53614,"Name":"C0248","Points":4806,"X":272,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031501Z"},{"ID":53615,"Name":"103. Wioska barbarzyƄska","Points":2506,"X":724,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031502Z"},{"ID":53616,"Name":"Wioska 012","Points":3230,"X":667,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031503Z"},{"ID":53617,"Name":"Wiocha 1","Points":12154,"X":556,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031503Z"},{"ID":53618,"Name":"lorus","Points":5856,"X":531,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031504Z"},{"ID":53620,"Name":"New World","Points":10290,"X":432,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031504Z"},{"ID":53621,"Name":"MojeSzczytToTwĂłjDno","Points":9001,"X":511,"Y":381,"Continent":"K35","Bonus":0,"PlayerID":828637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031505Z"},{"ID":53622,"Name":"Wioska barbarzyƄska","Points":9769,"X":719,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031505Z"},{"ID":53623,"Name":"Wioska zicher","Points":850,"X":538,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":6032352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031506Z"},{"ID":53625,"Name":"Saran10","Points":857,"X":409,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031506Z"},{"ID":53626,"Name":"009","Points":3708,"X":296,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031507Z"},{"ID":53627,"Name":"Kapitol_16","Points":5133,"X":508,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031507Z"},{"ID":53628,"Name":"[0170]","Points":7489,"X":453,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031508Z"},{"ID":53629,"Name":"o015","Points":4624,"X":609,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031508Z"},{"ID":53631,"Name":"Wioska barbarzyƄska","Points":4733,"X":660,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031509Z"},{"ID":53632,"Name":"Gubernia","Points":6654,"X":364,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849107532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031509Z"},{"ID":53633,"Name":"Sexxy P","Points":3551,"X":694,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":8815749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03151Z"},{"ID":53634,"Name":"WOLA0100","Points":9779,"X":677,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03151Z"},{"ID":53635,"Name":"04Wioska barbarzyƄska","Points":6464,"X":366,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031511Z"},{"ID":53636,"Name":"Parking2","Points":5891,"X":615,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":6528152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031512Z"},{"ID":53637,"Name":"Azylek 1","Points":1524,"X":628,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031512Z"},{"ID":53639,"Name":"Avanti!","Points":3775,"X":277,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031513Z"},{"ID":53640,"Name":"K33","Points":1326,"X":310,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031513Z"},{"ID":53641,"Name":"ZƂoty ƚwit","Points":10035,"X":582,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031514Z"},{"ID":53642,"Name":"111 Wioska beziuleq","Points":519,"X":548,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031514Z"},{"ID":53643,"Name":"BiaƂy KrĂłlik","Points":4243,"X":524,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031515Z"},{"ID":53645,"Name":"komandos","Points":4321,"X":668,"Y":655,"Continent":"K66","Bonus":7,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031515Z"},{"ID":53646,"Name":"Rumia","Points":7987,"X":409,"Y":708,"Continent":"K74","Bonus":0,"PlayerID":8425594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031516Z"},{"ID":53647,"Name":"PODSTAWA","Points":1669,"X":692,"Y":389,"Continent":"K36","Bonus":0,"PlayerID":8622901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031516Z"},{"ID":53648,"Name":"004","Points":3806,"X":594,"Y":704,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031517Z"},{"ID":53649,"Name":"KONFA TO MARKA, NARKA","Points":10294,"X":286,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031517Z"},{"ID":53650,"Name":"E005","Points":2024,"X":636,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031518Z"},{"ID":53651,"Name":"Ebe ebe","Points":4003,"X":711,"Y":413,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031518Z"},{"ID":53652,"Name":"Osada koczownikĂłw","Points":9647,"X":670,"Y":653,"Continent":"K66","Bonus":6,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031519Z"},{"ID":53653,"Name":"A#051","Points":6367,"X":728,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03152Z"},{"ID":53654,"Name":"056.","Points":2220,"X":636,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03152Z"},{"ID":53655,"Name":"[0169]","Points":7753,"X":447,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031521Z"},{"ID":53656,"Name":"A-5","Points":1442,"X":672,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849095509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031522Z"},{"ID":53657,"Name":"-KDK-","Points":7744,"X":497,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":698349125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031523Z"},{"ID":53658,"Name":"Wioska barbarzyƄska","Points":5133,"X":727,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031523Z"},{"ID":53659,"Name":"K67 08","Points":3543,"X":702,"Y":610,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031524Z"},{"ID":53660,"Name":"Bagno 24","Points":6815,"X":487,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031524Z"},{"ID":53661,"Name":"0135","Points":8785,"X":342,"Y":666,"Continent":"K63","Bonus":8,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031525Z"},{"ID":53662,"Name":"Wioska barbarzyƄska","Points":3776,"X":529,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031525Z"},{"ID":53663,"Name":"Wioska barbarzyƄska","Points":2936,"X":302,"Y":595,"Continent":"K53","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031526Z"},{"ID":53665,"Name":"K42 ADAMUS 006","Points":9172,"X":286,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031526Z"},{"ID":53666,"Name":"Wioska barbarzyƄska","Points":6346,"X":413,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031527Z"},{"ID":53667,"Name":"Kapitol_09","Points":5952,"X":499,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031528Z"},{"ID":53668,"Name":"Wioska","Points":4985,"X":273,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":699795698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031528Z"},{"ID":53669,"Name":"E004","Points":1955,"X":632,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031529Z"},{"ID":53670,"Name":"New WorldA","Points":1750,"X":273,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031529Z"},{"ID":53671,"Name":"KONFA TO MARKA, NARKA","Points":7231,"X":283,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03153Z"},{"ID":53672,"Name":"008","Points":5803,"X":280,"Y":432,"Continent":"K42","Bonus":6,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03153Z"},{"ID":53673,"Name":"Wioska","Points":3209,"X":718,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031531Z"},{"ID":53674,"Name":"Wioska barbarzyƄska","Points":1602,"X":731,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031531Z"},{"ID":53675,"Name":"Avanti!","Points":5348,"X":272,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031532Z"},{"ID":53676,"Name":"Avanti!","Points":5699,"X":276,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031533Z"},{"ID":53677,"Name":"034 Osada koczownikĂłw","Points":9835,"X":533,"Y":276,"Continent":"K25","Bonus":1,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031533Z"},{"ID":53678,"Name":"????","Points":2526,"X":473,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031534Z"},{"ID":53679,"Name":"Wioska 010","Points":3994,"X":671,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031534Z"},{"ID":53681,"Name":"=|46|=","Points":1319,"X":686,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031535Z"},{"ID":53682,"Name":"057 - Budowanko!","Points":2564,"X":527,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031535Z"},{"ID":53683,"Name":"MojeDnoToWaszSzczyt","Points":9702,"X":510,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031536Z"},{"ID":53684,"Name":"0107","Points":2433,"X":698,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031536Z"},{"ID":53685,"Name":"Wioska barbarzyƄska","Points":3601,"X":724,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031537Z"},{"ID":53686,"Name":"PiekƂo to inni","Points":2959,"X":651,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031537Z"},{"ID":53687,"Name":"Wioska barbarzyƄska","Points":1132,"X":692,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":8622901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031538Z"},{"ID":53688,"Name":"Wioska barbarzyƄska","Points":5360,"X":718,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031539Z"},{"ID":53689,"Name":"041","Points":987,"X":669,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031539Z"},{"ID":53690,"Name":"Wioska barbarzyƄska 01","Points":10495,"X":343,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03154Z"},{"ID":53691,"Name":"Avanti!","Points":6033,"X":275,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03154Z"},{"ID":53692,"Name":"Wioska Pracz 1","Points":7718,"X":308,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031541Z"},{"ID":53693,"Name":"057.","Points":2467,"X":635,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031541Z"},{"ID":53694,"Name":"KUKA II","Points":3115,"X":281,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031542Z"},{"ID":53695,"Name":"komandos","Points":3614,"X":674,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031543Z"},{"ID":53696,"Name":"Wioska PysioSsie","Points":286,"X":273,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":8947705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031543Z"},{"ID":53697,"Name":"Taran","Points":8025,"X":315,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031544Z"},{"ID":53698,"Name":"[830] Odludzie","Points":5800,"X":711,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031544Z"},{"ID":53699,"Name":"Etitek 4","Points":2311,"X":725,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":848999448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031545Z"},{"ID":53700,"Name":"Wioska kajko1962 -","Points":10908,"X":664,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":7357503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031545Z"},{"ID":53701,"Name":"KONFA TO MARKA, NARKA","Points":7095,"X":292,"Y":426,"Continent":"K42","Bonus":1,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031546Z"},{"ID":53702,"Name":"028 Dewford Town","Points":9243,"X":725,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031546Z"},{"ID":53703,"Name":"006","Points":5212,"X":294,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031547Z"},{"ID":53704,"Name":"#02!","Points":9617,"X":640,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031547Z"},{"ID":53705,"Name":"wioska XIX","Points":3274,"X":671,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849101889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031547Z"},{"ID":53706,"Name":"Wioska barbarzyƄska","Points":39,"X":281,"Y":427,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031548Z"},{"ID":53707,"Name":"029.","Points":10987,"X":609,"Y":481,"Continent":"K46","Bonus":0,"PlayerID":8900955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031548Z"},{"ID":53708,"Name":"D022","Points":3473,"X":560,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031548Z"},{"ID":53709,"Name":"MojeDnoToWaszSzczyt","Points":9946,"X":499,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031549Z"},{"ID":53710,"Name":"Wioska arkowa","Points":1438,"X":653,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":563544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031549Z"},{"ID":53711,"Name":"132","Points":8223,"X":383,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031549Z"},{"ID":53712,"Name":"023 - Budowanko!","Points":4275,"X":710,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031549Z"},{"ID":53713,"Name":"10.DASH","Points":1331,"X":712,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03155Z"},{"ID":53714,"Name":"Wioska Wieslaw 2","Points":3755,"X":504,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":699794421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03155Z"},{"ID":53715,"Name":"Wioska barbarzyƄska","Points":7309,"X":645,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03155Z"},{"ID":53717,"Name":"Wioska bezludna","Points":2001,"X":598,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03155Z"},{"ID":53718,"Name":"Kapitol_18","Points":5132,"X":500,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031551Z"},{"ID":53719,"Name":"North 031","Points":6679,"X":516,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031551Z"},{"ID":53720,"Name":"024.","Points":2508,"X":698,"Y":601,"Continent":"K66","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031551Z"},{"ID":53721,"Name":"068","Points":1852,"X":721,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031552Z"},{"ID":53722,"Name":"Wioska barbarzyƄska","Points":3102,"X":388,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031552Z"},{"ID":53723,"Name":"Wioska barbarzyƄska","Points":3337,"X":464,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":699863708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031552Z"},{"ID":53724,"Name":"023","Points":2094,"X":302,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031552Z"},{"ID":53725,"Name":"komandos","Points":3372,"X":674,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031553Z"},{"ID":53726,"Name":"#Kresy","Points":8307,"X":629,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031553Z"},{"ID":53727,"Name":"004","Points":10068,"X":293,"Y":597,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031553Z"},{"ID":53728,"Name":"04Wioska barbarzyƄska","Points":7356,"X":359,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031553Z"},{"ID":53729,"Name":"Wioska barbarzyƄska","Points":1962,"X":469,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":699196829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031554Z"},{"ID":53730,"Name":"PiekƂo to inni","Points":5295,"X":647,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031554Z"},{"ID":53731,"Name":"Wioska MalinowaZaba","Points":5119,"X":497,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031555Z"},{"ID":53732,"Name":"PóƂnocny Bagdad","Points":2748,"X":619,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031555Z"},{"ID":53733,"Name":"Wioska Mr.SoLo","Points":9592,"X":721,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031555Z"},{"ID":53734,"Name":"A#017","Points":9797,"X":719,"Y":565,"Continent":"K57","Bonus":8,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031555Z"},{"ID":53735,"Name":"060","Points":3434,"X":724,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031556Z"},{"ID":53736,"Name":"Wioska barbarzyƄska","Points":5060,"X":359,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031556Z"},{"ID":53737,"Name":"SkalpeR1337","Points":5947,"X":288,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":849108007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031556Z"},{"ID":53738,"Name":"BOSS W","Points":1296,"X":335,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031556Z"},{"ID":53739,"Name":"Wioska 0018","Points":6752,"X":342,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031557Z"},{"ID":53740,"Name":"KIELBA 108","Points":7749,"X":465,"Y":601,"Continent":"K64","Bonus":0,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031557Z"},{"ID":53741,"Name":"Wioska barbarzyƄska","Points":4787,"X":299,"Y":406,"Continent":"K42","Bonus":0,"PlayerID":6186491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031557Z"},{"ID":53742,"Name":"Wioska ASYSTORIA","Points":2604,"X":601,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031558Z"},{"ID":53743,"Name":"Wioska barbarzyƄska","Points":5512,"X":275,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031558Z"},{"ID":53744,"Name":"KUKA I","Points":5325,"X":285,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031558Z"},{"ID":53745,"Name":"Wioska barbarzyƄska","Points":1592,"X":697,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031558Z"},{"ID":53746,"Name":"MERHET","Points":5290,"X":582,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031559Z"},{"ID":53747,"Name":"Wioska barbarzyƄska","Points":4195,"X":711,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031559Z"},{"ID":53748,"Name":"Wioska barbarzyƄska","Points":3785,"X":730,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03156Z"},{"ID":53749,"Name":"Wioska barbarzyƄska","Points":1836,"X":375,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03156Z"},{"ID":53750,"Name":"#0247 colt9","Points":5080,"X":439,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03156Z"},{"ID":53751,"Name":"Sony 911","Points":3623,"X":673,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03156Z"},{"ID":53752,"Name":"Wioska barbarzyƄska","Points":565,"X":378,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031561Z"},{"ID":53753,"Name":"#124#","Points":3625,"X":655,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031561Z"},{"ID":53754,"Name":"Winterfell.012","Points":10008,"X":449,"Y":284,"Continent":"K24","Bonus":2,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031561Z"},{"ID":53755,"Name":"Wioska arobest","Points":1110,"X":700,"Y":399,"Continent":"K37","Bonus":0,"PlayerID":849096041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031562Z"},{"ID":53756,"Name":"XDX","Points":4454,"X":611,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031562Z"},{"ID":53757,"Name":"Wioska 0003","Points":10311,"X":342,"Y":656,"Continent":"K63","Bonus":4,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031563Z"},{"ID":53758,"Name":"#0260 mrufki","Points":1818,"X":441,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031563Z"},{"ID":53759,"Name":"KONFA TO MARKA, NARKA","Points":2544,"X":292,"Y":414,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031563Z"},{"ID":53760,"Name":"RzeĆșnia 3","Points":5373,"X":710,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031564Z"},{"ID":53761,"Name":"Village","Points":2318,"X":571,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849094067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031564Z"},{"ID":53762,"Name":"Wioska Olczi","Points":1207,"X":484,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":849108053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031564Z"},{"ID":53763,"Name":"New WorldA","Points":4328,"X":283,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031565Z"},{"ID":53764,"Name":"Wioska barbarzyƄska","Points":4891,"X":563,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031565Z"},{"ID":53765,"Name":"006","Points":3595,"X":405,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031566Z"},{"ID":53766,"Name":"PiekƂo to inni","Points":4061,"X":641,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031566Z"},{"ID":53767,"Name":"Wioska barbarzyƄska","Points":1685,"X":538,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849044705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031567Z"},{"ID":53768,"Name":"Wioska 001","Points":3780,"X":674,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031567Z"},{"ID":53769,"Name":"191","Points":9142,"X":402,"Y":703,"Continent":"K74","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031567Z"},{"ID":53770,"Name":"#030","Points":2305,"X":543,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031568Z"},{"ID":53771,"Name":"005","Points":1671,"X":282,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031568Z"},{"ID":53772,"Name":"New WorldA","Points":3805,"X":281,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031569Z"},{"ID":53773,"Name":"[0179]","Points":7411,"X":454,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031569Z"},{"ID":53774,"Name":"181 Okrutny Pogromca Szlachty","Points":733,"X":534,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":698667255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031569Z"},{"ID":53775,"Name":"Avanti!","Points":4633,"X":274,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03157Z"},{"ID":53776,"Name":"R 046","Points":5365,"X":493,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03157Z"},{"ID":53777,"Name":".achim.","Points":2180,"X":579,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03157Z"},{"ID":53778,"Name":"Wioska barbarzyƄska","Points":1526,"X":347,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031571Z"},{"ID":53779,"Name":"Wioska barbarzyƄska","Points":6823,"X":540,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031571Z"},{"ID":53780,"Name":"PƁD2","Points":1438,"X":722,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031571Z"},{"ID":53782,"Name":"033 Fallarbor Town","Points":4174,"X":722,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031572Z"},{"ID":53783,"Name":"170","Points":5376,"X":416,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031572Z"},{"ID":53784,"Name":"0000047Z","Points":1183,"X":278,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031573Z"},{"ID":53785,"Name":"0102","Points":7659,"X":672,"Y":351,"Continent":"K36","Bonus":3,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031573Z"},{"ID":53786,"Name":"ZPP Haran","Points":5825,"X":729,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031574Z"},{"ID":53787,"Name":"Wioska barbarzyƄska","Points":4090,"X":386,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031574Z"},{"ID":53788,"Name":".001. Wyspa","Points":6128,"X":723,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031574Z"},{"ID":53789,"Name":"Wioska barbarzyƄska","Points":3136,"X":700,"Y":404,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031575Z"},{"ID":53790,"Name":"Wioska Inergio","Points":2851,"X":358,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":849098766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031575Z"},{"ID":53791,"Name":"010 Bradina","Points":2415,"X":671,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031576Z"},{"ID":53792,"Name":"C0352","Points":8498,"X":279,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031577Z"},{"ID":53793,"Name":"C0312","Points":2422,"X":275,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031577Z"},{"ID":53794,"Name":"XDX","Points":5968,"X":610,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031578Z"},{"ID":53796,"Name":"Wioska013","Points":7185,"X":344,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031578Z"},{"ID":53797,"Name":"TOLCIA 1","Points":9250,"X":641,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":699868739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031578Z"},{"ID":53798,"Name":"Wioska barbarzyƄska","Points":6398,"X":367,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031579Z"},{"ID":53799,"Name":"Nowa 66","Points":2914,"X":691,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031579Z"},{"ID":53800,"Name":"Wioska barbarzyƄska","Points":3224,"X":720,"Y":533,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031579Z"},{"ID":53801,"Name":"Wioska Zephyr II","Points":4186,"X":351,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":1347385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03158Z"},{"ID":53802,"Name":"025Kacor","Points":9716,"X":470,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03158Z"},{"ID":53803,"Name":"wy...","Points":6463,"X":602,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03158Z"},{"ID":53804,"Name":"Wioska barbarzyƄska","Points":2304,"X":623,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031581Z"},{"ID":53805,"Name":"Motorola 05","Points":4564,"X":365,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031581Z"},{"ID":53806,"Name":"A01","Points":8952,"X":427,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":849038597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031581Z"},{"ID":53807,"Name":"ZƂoty ƚwit","Points":5587,"X":597,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031582Z"},{"ID":53808,"Name":"Wioska pinek321","Points":10437,"X":288,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":849103947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031582Z"},{"ID":53809,"Name":"Puck","Points":3642,"X":300,"Y":597,"Continent":"K53","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031582Z"},{"ID":53810,"Name":"Nowe IMPERIUM 12","Points":5090,"X":622,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031583Z"},{"ID":53811,"Name":"Lord Arsey KING","Points":5364,"X":653,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031583Z"},{"ID":53812,"Name":"Wioska joannaniel","Points":7024,"X":543,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":3560281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031583Z"},{"ID":53813,"Name":"Wioska barbarzyƄska","Points":5004,"X":557,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031583Z"},{"ID":53814,"Name":"bagienko_04","Points":4668,"X":564,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":849093353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031584Z"},{"ID":53815,"Name":"025","Points":1715,"X":283,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031584Z"},{"ID":53816,"Name":".achim.","Points":3188,"X":564,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031584Z"},{"ID":53817,"Name":"Wioska barbarzyƄska","Points":9389,"X":548,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031585Z"},{"ID":53818,"Name":"Wioska fan zmijki","Points":7638,"X":519,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":769293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031585Z"},{"ID":53819,"Name":"P001","Points":7463,"X":513,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031585Z"},{"ID":53820,"Name":"C.056","Points":3682,"X":726,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031586Z"},{"ID":53821,"Name":"080 Wioska barbarzyƄska","Points":8759,"X":540,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031586Z"},{"ID":53823,"Name":"029 Legio IX Ulpia Victrix","Points":1229,"X":709,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031586Z"},{"ID":53824,"Name":"New World","Points":10294,"X":431,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031586Z"},{"ID":53825,"Name":"Wioska streak2k12","Points":2159,"X":629,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":699356102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031587Z"},{"ID":53826,"Name":"New World","Points":5025,"X":439,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031587Z"},{"ID":53827,"Name":"Wioska barbarzyƄska","Points":2797,"X":689,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031587Z"},{"ID":53828,"Name":"#0257 Yomikuri","Points":7461,"X":435,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031588Z"},{"ID":53829,"Name":"Wioska barbarzyƄska","Points":6228,"X":405,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031588Z"},{"ID":53830,"Name":".achim.","Points":3973,"X":571,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031588Z"},{"ID":53831,"Name":"023.","Points":2801,"X":697,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":6520732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031588Z"},{"ID":53832,"Name":"Lord Arsey KING","Points":7850,"X":662,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031589Z"},{"ID":53833,"Name":".achim.","Points":5357,"X":485,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031589Z"},{"ID":53834,"Name":"ZƂoty ƚwit","Points":10119,"X":582,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031589Z"},{"ID":53835,"Name":"Wioska barbarzyƄska","Points":6430,"X":539,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03159Z"},{"ID":53836,"Name":"KWB3","Points":6013,"X":462,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03159Z"},{"ID":53837,"Name":"Wioska Karl 132","Points":5054,"X":283,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":1861962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03159Z"},{"ID":53838,"Name":"Nowe IMPERIUM 5","Points":5864,"X":617,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03159Z"},{"ID":53839,"Name":"Wioska barbarzyƄska","Points":1577,"X":328,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031591Z"},{"ID":53840,"Name":"iepure alb","Points":2824,"X":526,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031591Z"},{"ID":53841,"Name":"Wioska chudyn","Points":11050,"X":595,"Y":702,"Continent":"K75","Bonus":0,"PlayerID":8773967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031591Z"},{"ID":53842,"Name":"Wioska barbarzyƄska","Points":3615,"X":727,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031592Z"},{"ID":53844,"Name":"02181","Points":7769,"X":632,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":699872616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031592Z"},{"ID":53845,"Name":"Wioska barbarzyƄska 16","Points":6167,"X":337,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031592Z"},{"ID":53846,"Name":"Wioska barbarzyƄska","Points":3240,"X":682,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031592Z"},{"ID":53847,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":499,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031593Z"},{"ID":53848,"Name":"Wioska barbarzyƄska","Points":2582,"X":383,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031593Z"},{"ID":53849,"Name":"~~081~~","Points":4637,"X":683,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031593Z"},{"ID":53850,"Name":"Tomekrol 2","Points":6632,"X":703,"Y":597,"Continent":"K57","Bonus":3,"PlayerID":849096334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031594Z"},{"ID":53851,"Name":"A0258","Points":10362,"X":385,"Y":475,"Continent":"K43","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031594Z"},{"ID":53852,"Name":"060.","Points":2142,"X":641,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031594Z"},{"ID":53853,"Name":"K33","Points":3193,"X":310,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031594Z"},{"ID":53854,"Name":"Nowe Dobra - budowa","Points":6783,"X":681,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031595Z"},{"ID":53855,"Name":"009","Points":3175,"X":400,"Y":303,"Continent":"K34","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031595Z"},{"ID":53857,"Name":"[815] Odludzie","Points":7020,"X":713,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031595Z"},{"ID":53858,"Name":"Taran","Points":7691,"X":315,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":6180190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031596Z"},{"ID":53859,"Name":"Wioska barbarzyƄska 009","Points":3719,"X":376,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031596Z"},{"ID":53860,"Name":"Wioska barbarzyƄska","Points":1586,"X":683,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699794720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031596Z"},{"ID":53861,"Name":".achim.","Points":4073,"X":562,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031596Z"},{"ID":53862,"Name":"Wioska barbarzyƄska","Points":6442,"X":722,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031597Z"},{"ID":53863,"Name":"--042--","Points":4853,"X":574,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031597Z"},{"ID":53864,"Name":"#0067","Points":4400,"X":573,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031597Z"},{"ID":53865,"Name":"wioska XX","Points":1648,"X":674,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031597Z"},{"ID":53866,"Name":"075. Wioska barbarzyƄska","Points":5506,"X":722,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031598Z"},{"ID":53867,"Name":"Wioska barbarzyƄska","Points":1076,"X":326,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031598Z"},{"ID":53868,"Name":"0151","Points":8717,"X":707,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031598Z"},{"ID":53869,"Name":"North 027","Points":7918,"X":511,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031598Z"},{"ID":53870,"Name":"080. Wioska barbarzyƄska","Points":4756,"X":729,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031599Z"},{"ID":53871,"Name":"PPF-11","Points":2445,"X":518,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031599Z"},{"ID":53872,"Name":"Wioska barbarzyƄska","Points":1429,"X":282,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":699812351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031599Z"},{"ID":53873,"Name":"04Wioska barbarzyƄska","Points":8202,"X":364,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0316Z"},{"ID":53874,"Name":"Wioska barbarzyƄska","Points":4121,"X":717,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0316Z"},{"ID":53875,"Name":"[833] Odludzie","Points":5579,"X":723,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0316Z"},{"ID":53876,"Name":"KONFA TO MARKA, NARKA","Points":5072,"X":278,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031601Z"},{"ID":53877,"Name":"Wioska monitor123aa","Points":5213,"X":517,"Y":302,"Continent":"K35","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031601Z"},{"ID":53878,"Name":"Azyl 9","Points":1830,"X":630,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031601Z"},{"ID":53879,"Name":"Oww Konfederacja","Points":10117,"X":607,"Y":391,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031602Z"},{"ID":53880,"Name":"mordor","Points":3662,"X":299,"Y":394,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031602Z"},{"ID":53881,"Name":"027","Points":7629,"X":636,"Y":585,"Continent":"K56","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031602Z"},{"ID":53882,"Name":"Wioska barbarzyƄska","Points":5224,"X":430,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031603Z"},{"ID":53883,"Name":"PiekƂo to inni","Points":3423,"X":653,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031603Z"},{"ID":53884,"Name":"XDX","Points":3743,"X":608,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031603Z"},{"ID":53885,"Name":"Wioska REXMUNDI","Points":3881,"X":725,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":6249486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031604Z"},{"ID":53886,"Name":"komandos","Points":314,"X":675,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031604Z"},{"ID":53887,"Name":"Wioska barbarzyƄska","Points":1326,"X":292,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":849101771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031604Z"},{"ID":53888,"Name":"Wioska barbarzyƄska","Points":10881,"X":718,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031604Z"},{"ID":53889,"Name":"Gors Velen","Points":10051,"X":565,"Y":289,"Continent":"K25","Bonus":8,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031605Z"},{"ID":53891,"Name":"ZƂoty ƚwit","Points":6537,"X":589,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031605Z"},{"ID":53892,"Name":"#K75 0035","Points":4874,"X":525,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031605Z"},{"ID":53893,"Name":"Wioska Lost im Wald","Points":1164,"X":613,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":848914120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031605Z"},{"ID":53894,"Name":"Wiocha 3","Points":10879,"X":558,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031606Z"},{"ID":53895,"Name":"#004","Points":7815,"X":332,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031606Z"},{"ID":53897,"Name":"Wioska barbarzyƄska","Points":6433,"X":533,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031606Z"},{"ID":53899,"Name":"041.xxx","Points":1189,"X":513,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031607Z"},{"ID":53900,"Name":"Wioska barbarzyƄska","Points":8275,"X":625,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031607Z"},{"ID":53902,"Name":"$006$ Papuga","Points":7083,"X":303,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031607Z"},{"ID":53903,"Name":"mysza","Points":3983,"X":315,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031608Z"},{"ID":53904,"Name":"0598","Points":8038,"X":477,"Y":545,"Continent":"K54","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031608Z"},{"ID":53905,"Name":"#007","Points":7343,"X":547,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031608Z"},{"ID":53906,"Name":"Wioska barbarzyƄska","Points":470,"X":376,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031609Z"},{"ID":53907,"Name":"PóƂnocny Bagdad","Points":9835,"X":626,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031609Z"},{"ID":53908,"Name":"Wioska barbarzyƄska","Points":6309,"X":321,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031609Z"},{"ID":53909,"Name":"jooo","Points":2638,"X":538,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849105071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03161Z"},{"ID":53910,"Name":"Wioska barbarzyƄska","Points":2239,"X":305,"Y":378,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03161Z"},{"ID":53911,"Name":"Wioska niedzwiedz8807","Points":2955,"X":295,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":3319611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03161Z"},{"ID":53912,"Name":"230...NORTH","Points":1992,"X":448,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03161Z"},{"ID":53913,"Name":"Wioska barbarzyƄska","Points":1039,"X":307,"Y":614,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03161Z"},{"ID":53914,"Name":"Wioska bob 25","Points":2969,"X":366,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":281866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031611Z"},{"ID":53915,"Name":"Wioska Beny604","Points":432,"X":458,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698738810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031611Z"},{"ID":53916,"Name":"Wioska lis 1","Points":1273,"X":335,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":849056475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031611Z"},{"ID":53917,"Name":"051.","Points":2926,"X":638,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031611Z"},{"ID":53918,"Name":"0122","Points":5818,"X":376,"Y":684,"Continent":"K63","Bonus":2,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031612Z"},{"ID":53919,"Name":"Walgind","Points":8114,"X":301,"Y":403,"Continent":"K43","Bonus":0,"PlayerID":8724192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031612Z"},{"ID":53920,"Name":"Agonia","Points":9549,"X":727,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031612Z"},{"ID":53921,"Name":"Wolgast Wald","Points":1558,"X":341,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849092685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031612Z"},{"ID":53922,"Name":"ƚw181*004","Points":2986,"X":663,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031613Z"},{"ID":53923,"Name":"Wioska Kayohix","Points":6230,"X":615,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698647624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031613Z"},{"ID":53924,"Name":"026","Points":1371,"X":306,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031613Z"},{"ID":53925,"Name":"--049--","Points":1405,"X":581,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031613Z"},{"ID":53926,"Name":"Kirholm","Points":3167,"X":302,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031613Z"},{"ID":53927,"Name":"North 032","Points":6675,"X":510,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031614Z"},{"ID":53928,"Name":"=120= Wioska barbarzyƄska","Points":1956,"X":715,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031614Z"},{"ID":53929,"Name":"maniek 01","Points":6248,"X":271,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031614Z"},{"ID":53930,"Name":"Psycha Siada","Points":6672,"X":321,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031614Z"},{"ID":53931,"Name":"Twierdza (NBW)","Points":2608,"X":374,"Y":379,"Continent":"K33","Bonus":25,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031615Z"},{"ID":53933,"Name":"New World","Points":10294,"X":431,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031615Z"},{"ID":53934,"Name":"D013","Points":6660,"X":341,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031615Z"},{"ID":53935,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":491,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031616Z"},{"ID":53936,"Name":"warszawa","Points":2077,"X":716,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":849042461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031616Z"},{"ID":53937,"Name":"B_8","Points":1688,"X":294,"Y":421,"Continent":"K42","Bonus":0,"PlayerID":699728266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031616Z"},{"ID":53938,"Name":"01 Sztab Generalny","Points":8008,"X":730,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":849104855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031616Z"},{"ID":53939,"Name":"###152###","Points":10495,"X":610,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031617Z"},{"ID":53940,"Name":"Kaufbeuren","Points":6937,"X":646,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031617Z"},{"ID":53941,"Name":"025. Gloria Victis","Points":6713,"X":286,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031617Z"},{"ID":53942,"Name":"Wioska bartek145972","Points":2105,"X":479,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031617Z"},{"ID":53943,"Name":"komandos","Points":3737,"X":672,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031618Z"},{"ID":53944,"Name":"Z01","Points":2189,"X":285,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031618Z"},{"ID":53945,"Name":"043. Rezerwacja","Points":3152,"X":499,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031618Z"},{"ID":53946,"Name":"Kiedyƛ Wielki Wojownik","Points":2780,"X":329,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031618Z"},{"ID":53947,"Name":"wioska","Points":11995,"X":642,"Y":318,"Continent":"K36","Bonus":1,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031619Z"},{"ID":53948,"Name":"#0287 mirabelik","Points":5799,"X":443,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031619Z"},{"ID":53949,"Name":"{55} Pogorzelice","Points":942,"X":373,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031619Z"},{"ID":53950,"Name":"O141","Points":5130,"X":345,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03162Z"},{"ID":53951,"Name":"C0289","Points":3867,"X":280,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03162Z"},{"ID":53952,"Name":"002.MoĆŒe się uda","Points":3510,"X":457,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":602408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03162Z"},{"ID":53953,"Name":"Wioska barbarzyƄska","Points":4908,"X":424,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03162Z"},{"ID":53954,"Name":"New World","Points":9695,"X":417,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031621Z"},{"ID":53955,"Name":"Wioska barbarzyƄska","Points":3125,"X":726,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031621Z"},{"ID":53956,"Name":"#002","Points":2618,"X":305,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":849110743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031621Z"},{"ID":53957,"Name":"[826] Odludzie","Points":6396,"X":716,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031621Z"},{"ID":53958,"Name":"C0291","Points":3816,"X":283,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031622Z"},{"ID":53959,"Name":"Mordownia 3","Points":9870,"X":706,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031622Z"},{"ID":53960,"Name":"Wioska barbarzyƄska","Points":1844,"X":313,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031622Z"},{"ID":53961,"Name":"Wioska barbarzyƄska","Points":2609,"X":670,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031622Z"},{"ID":53962,"Name":"056.","Points":9384,"X":455,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031623Z"},{"ID":53963,"Name":"001 Paluszkowo","Points":10283,"X":593,"Y":343,"Continent":"K35","Bonus":0,"PlayerID":699576407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031623Z"},{"ID":53964,"Name":"Wioska barbarzyƄska","Points":3558,"X":596,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031623Z"},{"ID":53965,"Name":"Wioska barbarzyƄska","Points":3406,"X":567,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849078942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031623Z"},{"ID":53966,"Name":"002","Points":9651,"X":612,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031623Z"},{"ID":53967,"Name":"X009","Points":6053,"X":710,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031624Z"},{"ID":53968,"Name":"C0255","Points":4208,"X":270,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031624Z"},{"ID":53969,"Name":"120. Dartan","Points":10083,"X":677,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031624Z"},{"ID":53970,"Name":"WaƂ","Points":1331,"X":353,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031624Z"},{"ID":53971,"Name":"KONFA TO MARKA, NARKA","Points":2627,"X":289,"Y":414,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031625Z"},{"ID":53972,"Name":"Wioska barbarzyƄska 07","Points":7066,"X":345,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031625Z"},{"ID":53973,"Name":"Psycha Siada","Points":4902,"X":329,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031625Z"},{"ID":53974,"Name":"060 - Budowanko!","Points":2021,"X":547,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031625Z"},{"ID":53975,"Name":".achim.","Points":5623,"X":568,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031626Z"},{"ID":53976,"Name":"Wioska biesta","Points":463,"X":296,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":6276208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031626Z"},{"ID":53977,"Name":"#006","Points":8971,"X":547,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031626Z"},{"ID":53978,"Name":"New World","Points":9957,"X":420,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031627Z"},{"ID":53979,"Name":"0078","Points":4595,"X":456,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031627Z"},{"ID":53980,"Name":"0014 Village","Points":8354,"X":486,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031627Z"},{"ID":53981,"Name":"Wioska barbarzyƄskaB","Points":2235,"X":295,"Y":607,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031627Z"},{"ID":53982,"Name":".achim.","Points":1800,"X":576,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031628Z"},{"ID":53983,"Name":"lorus","Points":5854,"X":527,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031628Z"},{"ID":53985,"Name":"C.052","Points":3304,"X":719,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031628Z"},{"ID":53986,"Name":"Wioska barbarzyƄska","Points":2440,"X":725,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031628Z"},{"ID":53988,"Name":"New World","Points":10292,"X":415,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031628Z"},{"ID":53989,"Name":"Wioska mondo96","Points":6405,"X":688,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":6472706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031629Z"},{"ID":53990,"Name":"Wioska barbarzyƄska","Points":3195,"X":621,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031629Z"},{"ID":53991,"Name":"064.","Points":2324,"X":717,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031629Z"},{"ID":53992,"Name":"ZƂoty ƚwit","Points":10035,"X":589,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031629Z"},{"ID":53993,"Name":"Cisza","Points":704,"X":289,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03163Z"},{"ID":53994,"Name":"Kiedyƛ Wielki Wojownik","Points":3165,"X":331,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03163Z"},{"ID":53995,"Name":"#0062","Points":9648,"X":577,"Y":713,"Continent":"K75","Bonus":3,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03163Z"},{"ID":53996,"Name":"001 Wioska York","Points":9214,"X":281,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03163Z"},{"ID":53997,"Name":"Wioska barbarzyƄska","Points":2568,"X":349,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031631Z"},{"ID":53998,"Name":"Soƛnica","Points":3238,"X":290,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":848892804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031631Z"},{"ID":53999,"Name":"Wioska NoeyPl","Points":8632,"X":332,"Y":554,"Continent":"K53","Bonus":0,"PlayerID":849000135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031631Z"},{"ID":54000,"Name":"KONFA TO MARKA, NARKA","Points":4128,"X":292,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031631Z"},{"ID":54001,"Name":"O134","Points":4480,"X":315,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031631Z"},{"ID":54002,"Name":"Wioska barbarzyƄska","Points":3872,"X":724,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031632Z"},{"ID":54003,"Name":"Wioska barbarzyƄska","Points":7148,"X":325,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031632Z"},{"ID":54004,"Name":"003","Points":773,"X":526,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031632Z"},{"ID":54005,"Name":"Wioska barbarzyƄska","Points":2802,"X":723,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031633Z"},{"ID":54006,"Name":"Wioska barbarzyƄska","Points":5270,"X":319,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031633Z"},{"ID":54007,"Name":"Wioska barbarzyƄska","Points":2624,"X":384,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031633Z"},{"ID":54008,"Name":"Wioska bercik53","Points":1453,"X":676,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":9136062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031634Z"},{"ID":54009,"Name":"Ghostmane6","Points":1748,"X":718,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031634Z"},{"ID":54010,"Name":"North 021","Points":7174,"X":511,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031634Z"},{"ID":54011,"Name":"226 |","Points":7565,"X":530,"Y":544,"Continent":"K55","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031635Z"},{"ID":54013,"Name":"~~073~~","Points":5241,"X":682,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031635Z"},{"ID":54014,"Name":"060 Wioska barbarzyƄska","Points":9835,"X":551,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031635Z"},{"ID":54015,"Name":"BƂękitna gƂębia","Points":2040,"X":281,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":848930898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031636Z"},{"ID":54016,"Name":"Allianz Arena","Points":3722,"X":678,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849096631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031636Z"},{"ID":54017,"Name":".achim.","Points":3889,"X":580,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031636Z"},{"ID":54018,"Name":"ZƂomowisko","Points":5518,"X":710,"Y":584,"Continent":"K57","Bonus":0,"PlayerID":849098724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031637Z"},{"ID":54019,"Name":"082 Wioska barbarzyƄska","Points":4766,"X":346,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031637Z"},{"ID":54020,"Name":"Zzz 15 lubie laseczki","Points":1895,"X":278,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031637Z"},{"ID":54021,"Name":"[0236]","Points":4314,"X":273,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031637Z"},{"ID":54022,"Name":"New World","Points":7960,"X":437,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031638Z"},{"ID":54023,"Name":"Zaplecze Barba 032","Points":4695,"X":352,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031638Z"},{"ID":54024,"Name":"Wioska barbarzyƄska","Points":2110,"X":290,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":498483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031638Z"},{"ID":54025,"Name":"Wioska 181","Points":4147,"X":585,"Y":563,"Continent":"K55","Bonus":0,"PlayerID":848981244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031639Z"},{"ID":54026,"Name":"034 Fortree City","Points":2747,"X":727,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031639Z"},{"ID":54027,"Name":"D019","Points":2784,"X":560,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031639Z"},{"ID":54028,"Name":"Infantino","Points":7062,"X":604,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":848983660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031639Z"},{"ID":54029,"Name":"Kicha","Points":1896,"X":301,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031639Z"},{"ID":54030,"Name":"072 obrzeĆŒa","Points":5334,"X":277,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03164Z"},{"ID":54031,"Name":"KONFA TO MARKA, NARKA","Points":2087,"X":274,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03164Z"},{"ID":54032,"Name":"007 JJ","Points":4288,"X":327,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":9120206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.03164Z"},{"ID":54034,"Name":"PiekƂo to inni","Points":3356,"X":647,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031641Z"},{"ID":54035,"Name":"Wioska barbarzyƄska","Points":8425,"X":719,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031641Z"},{"ID":54036,"Name":"Wioska barbarzyƄska","Points":3571,"X":399,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.031641Z"},{"ID":54037,"Name":"Wioska barbarzyƄska","Points":2898,"X":567,"Y":613,"Continent":"K65","Bonus":0,"PlayerID":699567608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062523Z"},{"ID":54038,"Name":"Wioska maybe-later","Points":1467,"X":385,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":8097158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062524Z"},{"ID":54039,"Name":"PóƂnocny Bagdad","Points":3226,"X":627,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062524Z"},{"ID":54040,"Name":"11. Kaer Morhen","Points":873,"X":607,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":849102573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062524Z"},{"ID":54041,"Name":"ZƂoty ƚwit","Points":4328,"X":586,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062525Z"},{"ID":54042,"Name":"B019","Points":4434,"X":630,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062525Z"},{"ID":54043,"Name":"A#020","Points":9797,"X":723,"Y":504,"Continent":"K57","Bonus":9,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062525Z"},{"ID":54044,"Name":"ZPP United","Points":1950,"X":727,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":8096537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062526Z"},{"ID":54045,"Name":"Poznan 001","Points":1221,"X":413,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":1924718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062526Z"},{"ID":54046,"Name":"Z 06","Points":2109,"X":384,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062526Z"},{"ID":54047,"Name":"New WorldA","Points":1244,"X":276,"Y":517,"Continent":"K52","Bonus":1,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062526Z"},{"ID":54048,"Name":"08.AVAX","Points":6600,"X":715,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":698905177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062527Z"},{"ID":54049,"Name":"018 daleko","Points":10237,"X":552,"Y":715,"Continent":"K75","Bonus":5,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062527Z"},{"ID":54050,"Name":"[835] Odludzie","Points":5464,"X":720,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062528Z"},{"ID":54051,"Name":"Nowe Dobra - budowa","Points":5475,"X":689,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062528Z"},{"ID":54052,"Name":"B009","Points":3820,"X":529,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062528Z"},{"ID":54053,"Name":"Artur Boruc","Points":6726,"X":708,"Y":405,"Continent":"K47","Bonus":0,"PlayerID":699146876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062529Z"},{"ID":54054,"Name":"wioska","Points":3873,"X":634,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062529Z"},{"ID":54055,"Name":"Lord Arsey KING","Points":8200,"X":665,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062529Z"},{"ID":54056,"Name":"PiekƂo to inni","Points":3392,"X":649,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062529Z"},{"ID":54057,"Name":"KONFA TO MARKA, NARKA","Points":10292,"X":284,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06253Z"},{"ID":54058,"Name":"Wioska Wieslaw 4","Points":2188,"X":498,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":699794421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06253Z"},{"ID":54059,"Name":"Wioska barbarzyƄska","Points":9808,"X":325,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06253Z"},{"ID":54060,"Name":"w oczekiwaniu na nazwę docelową","Points":524,"X":518,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":849102336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062531Z"},{"ID":54061,"Name":".achim.","Points":5996,"X":483,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062531Z"},{"ID":54062,"Name":"Feed me more 018","Points":9742,"X":501,"Y":369,"Continent":"K35","Bonus":0,"PlayerID":699756210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062531Z"},{"ID":54063,"Name":"004","Points":1825,"X":301,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":849109795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062532Z"},{"ID":54064,"Name":"Wioska 181","Points":9761,"X":296,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":1164249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062532Z"},{"ID":54065,"Name":"Wioska barbarzyƄska","Points":5805,"X":724,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062532Z"},{"ID":54066,"Name":"Nowa Baza 5","Points":5964,"X":614,"Y":698,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062533Z"},{"ID":54068,"Name":"Wioska barbarzyƄska","Points":4630,"X":395,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062533Z"},{"ID":54070,"Name":"Peru","Points":6622,"X":724,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062533Z"},{"ID":54071,"Name":"New WorldA","Points":1758,"X":275,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062534Z"},{"ID":54072,"Name":"nr9","Points":1925,"X":643,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062534Z"},{"ID":54073,"Name":"Wioska barbarzyƄska","Points":3809,"X":679,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062534Z"},{"ID":54074,"Name":"Wioska jar-11","Points":1611,"X":273,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":698384662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062535Z"},{"ID":54075,"Name":"Wioska kwiatek7777","Points":1162,"X":529,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":7337110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062535Z"},{"ID":54076,"Name":"Flap","Points":6320,"X":614,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062535Z"},{"ID":54077,"Name":"=107= Wioska barbarzyƄska","Points":3240,"X":701,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062536Z"},{"ID":54078,"Name":"01 maki5b","Points":9752,"X":637,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062536Z"},{"ID":54079,"Name":"016. Tak o","Points":3623,"X":295,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062536Z"},{"ID":54080,"Name":"Anty C - ovid !","Points":2319,"X":655,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":6046743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062536Z"},{"ID":54081,"Name":"Malaga","Points":3440,"X":645,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062537Z"},{"ID":54082,"Name":"048","Points":1606,"X":669,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062537Z"},{"ID":54083,"Name":"063.","Points":1774,"X":639,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062537Z"},{"ID":54084,"Name":"United","Points":3070,"X":292,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":848993769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062538Z"},{"ID":54086,"Name":"Avanti!","Points":6031,"X":274,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062538Z"},{"ID":54087,"Name":"FAKE OR OFF","Points":9812,"X":392,"Y":303,"Continent":"K33","Bonus":9,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062538Z"},{"ID":54088,"Name":"A001","Points":9891,"X":334,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":849105102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062539Z"},{"ID":54089,"Name":"[0191]","Points":6861,"X":275,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062539Z"},{"ID":54090,"Name":"K67 02","Points":8133,"X":700,"Y":616,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062539Z"},{"ID":54091,"Name":"B003","Points":8518,"X":521,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06254Z"},{"ID":54092,"Name":"050","Points":1188,"X":671,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06254Z"},{"ID":54093,"Name":"Flap","Points":6365,"X":615,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06254Z"},{"ID":54094,"Name":"#03!","Points":5239,"X":639,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06254Z"},{"ID":54095,"Name":"130","Points":9204,"X":393,"Y":701,"Continent":"K73","Bonus":6,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062541Z"},{"ID":54096,"Name":"36.Geso","Points":5374,"X":723,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062541Z"},{"ID":54097,"Name":"North 028","Points":7135,"X":514,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062541Z"},{"ID":54098,"Name":"026","Points":3237,"X":688,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062542Z"},{"ID":54099,"Name":"BETON 104","Points":975,"X":662,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062542Z"},{"ID":54100,"Name":"aaaaaa","Points":7605,"X":678,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062542Z"},{"ID":54101,"Name":"#0244 colt9","Points":5971,"X":438,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062543Z"},{"ID":54102,"Name":"042 - Budowanko!","Points":6514,"X":501,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062543Z"},{"ID":54103,"Name":"North 024","Points":7384,"X":510,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062543Z"},{"ID":54104,"Name":"63/1","Points":3001,"X":328,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062544Z"},{"ID":54105,"Name":"Kurnik","Points":7685,"X":449,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062544Z"},{"ID":54106,"Name":"770","Points":655,"X":538,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849087149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062544Z"},{"ID":54107,"Name":"Wioska barbarzyƄska","Points":3137,"X":592,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":8991696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062545Z"},{"ID":54108,"Name":"030 - Budowanko!","Points":4892,"X":481,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062545Z"},{"ID":54109,"Name":"[0192]","Points":7023,"X":273,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062545Z"},{"ID":54111,"Name":"Wioska barbarzyƄska","Points":1652,"X":337,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849103148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062545Z"},{"ID":54112,"Name":"024","Points":2982,"X":458,"Y":651,"Continent":"K64","Bonus":0,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062546Z"},{"ID":54113,"Name":"001 wolnoƛć","Points":1143,"X":336,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062546Z"},{"ID":54114,"Name":"jarekamyk","Points":3524,"X":351,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":699875132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062547Z"},{"ID":54116,"Name":"WaƂbrzych","Points":4475,"X":677,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062547Z"},{"ID":54117,"Name":"Wioska Pieguss","Points":162,"X":469,"Y":647,"Continent":"K64","Bonus":0,"PlayerID":698855681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062547Z"},{"ID":54118,"Name":"Wioska barbarzyƄska","Points":2161,"X":721,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062548Z"},{"ID":54119,"Name":"Wioska barbarzyƄska","Points":4741,"X":589,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062548Z"},{"ID":54120,"Name":"125","Points":8288,"X":385,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062548Z"},{"ID":54121,"Name":"Wioska16","Points":1970,"X":633,"Y":486,"Continent":"K46","Bonus":0,"PlayerID":848935020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062548Z"},{"ID":54122,"Name":"#119#","Points":5141,"X":641,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062549Z"},{"ID":54123,"Name":"03 Dywizja","Points":7164,"X":728,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":849104855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062549Z"},{"ID":54124,"Name":"[0168]","Points":7911,"X":472,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06255Z"},{"ID":54125,"Name":"0015","Points":1604,"X":683,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06255Z"},{"ID":54126,"Name":"029. Gloria Victis","Points":5637,"X":279,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06255Z"},{"ID":54127,"Name":"Wioska barbarzyƄska","Points":4000,"X":278,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062551Z"},{"ID":54128,"Name":"04Wioska barbarzyƄska","Points":7645,"X":363,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062551Z"},{"ID":54129,"Name":"Wioska barbarzyƄska","Points":1693,"X":463,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062551Z"},{"ID":54130,"Name":"001 Kattegat","Points":10362,"X":552,"Y":352,"Continent":"K35","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062552Z"},{"ID":54131,"Name":"063","Points":4480,"X":696,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062552Z"},{"ID":54132,"Name":"KUKA IV","Points":1953,"X":282,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062553Z"},{"ID":54133,"Name":"Wioska barbarzyƄska","Points":1473,"X":687,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062553Z"},{"ID":54134,"Name":"MWITO","Points":1460,"X":590,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062553Z"},{"ID":54135,"Name":"Wioska barbarzyƄska","Points":1447,"X":363,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062554Z"},{"ID":54136,"Name":"###153###","Points":10495,"X":603,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062554Z"},{"ID":54137,"Name":"049","Points":875,"X":671,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062555Z"},{"ID":54138,"Name":"O120","Points":6562,"X":309,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062555Z"},{"ID":54139,"Name":"MERHET","Points":4564,"X":581,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062555Z"},{"ID":54140,"Name":"Wioska barbarzyƄska","Points":3305,"X":692,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062556Z"},{"ID":54141,"Name":"C0297","Points":3726,"X":277,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062556Z"},{"ID":54142,"Name":"misiek1393","Points":7739,"X":383,"Y":301,"Continent":"K33","Bonus":0,"PlayerID":849027025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062556Z"},{"ID":54143,"Name":"Wioska barbarzyƄska","Points":6401,"X":364,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062557Z"},{"ID":54144,"Name":"Wioska Steven","Points":2154,"X":686,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":699375903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062557Z"},{"ID":54145,"Name":"079 Wioska barbarzyƄska","Points":2723,"X":350,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062557Z"},{"ID":54146,"Name":"PóƂnocny Bagdad","Points":5962,"X":625,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062558Z"},{"ID":54147,"Name":"Wioska barbarzyƄska","Points":2109,"X":715,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062558Z"},{"ID":54148,"Name":"Wioska barbarzyƄska","Points":612,"X":298,"Y":613,"Continent":"K62","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062558Z"},{"ID":54149,"Name":"Gubernia 01","Points":2086,"X":364,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":849107532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062559Z"},{"ID":54150,"Name":"Wioska barbarzyƄska","Points":2236,"X":583,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":698723158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062559Z"},{"ID":54151,"Name":"0065","Points":10343,"X":448,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062559Z"},{"ID":54152,"Name":"[0207]","Points":6378,"X":274,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06256Z"},{"ID":54153,"Name":"Zaplecze Barba 036","Points":3220,"X":348,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06256Z"},{"ID":54154,"Name":"126","Points":8881,"X":384,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06256Z"},{"ID":54155,"Name":"Op Konfederacja","Points":7037,"X":468,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062561Z"},{"ID":54156,"Name":"Wioska gazolek123","Points":79,"X":367,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":7242969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062561Z"},{"ID":54157,"Name":"Wioska xbarbarzyƄska","Points":205,"X":603,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":9106690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062561Z"},{"ID":54158,"Name":"Wioska Dnabuk","Points":112,"X":651,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":6167751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062562Z"},{"ID":54159,"Name":"002","Points":3568,"X":313,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062562Z"},{"ID":54160,"Name":"24.VIXX","Points":3435,"X":692,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062562Z"},{"ID":54161,"Name":"Wioska barbarzyƄska","Points":4080,"X":677,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062563Z"},{"ID":54162,"Name":"K42 ADAMUS 004","Points":9172,"X":283,"Y":432,"Continent":"K42","Bonus":2,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062563Z"},{"ID":54163,"Name":"**** Niko ****","Points":4104,"X":486,"Y":345,"Continent":"K34","Bonus":0,"PlayerID":1510264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062563Z"},{"ID":54164,"Name":"Wioska 111","Points":2717,"X":686,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062563Z"},{"ID":54165,"Name":"=108= Wioska barbarzyƄska","Points":2585,"X":702,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062564Z"},{"ID":54166,"Name":"Wakat","Points":939,"X":354,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062564Z"},{"ID":54167,"Name":"Wioska Knykieć Dyl","Points":196,"X":280,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":7927374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062564Z"},{"ID":54168,"Name":"=109= Wioska barbarzyƄska","Points":2525,"X":704,"Y":596,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062565Z"},{"ID":54169,"Name":"Wioska barbarzyƄska","Points":3103,"X":386,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062565Z"},{"ID":54170,"Name":"Wioska barbarzyƄska","Points":3473,"X":722,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062566Z"},{"ID":54171,"Name":"=|08|=","Points":8900,"X":692,"Y":375,"Continent":"K36","Bonus":5,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062566Z"},{"ID":54172,"Name":"Warszawa","Points":6909,"X":337,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849103148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062566Z"},{"ID":54173,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":494,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062566Z"},{"ID":54174,"Name":"030 Legio IX Equites","Points":1428,"X":723,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":699878150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062567Z"},{"ID":54175,"Name":"Wioska barbarzyƄska","Points":3621,"X":723,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062567Z"},{"ID":54177,"Name":"Kapitol_05","Points":5206,"X":505,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062568Z"},{"ID":54178,"Name":"#047","Points":1662,"X":559,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062568Z"},{"ID":54179,"Name":"037. 5spajk5","Points":1889,"X":689,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062568Z"},{"ID":54180,"Name":"046 - Strata","Points":6002,"X":414,"Y":582,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062569Z"},{"ID":54181,"Name":"Wioska jarko123","Points":1083,"X":273,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":699448843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062569Z"},{"ID":54182,"Name":"Avanti!","Points":6288,"X":275,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06257Z"},{"ID":54183,"Name":"X.07","Points":2587,"X":725,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06257Z"},{"ID":54184,"Name":"220...NORTH","Points":2113,"X":426,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062571Z"},{"ID":54185,"Name":"Cisza","Points":2347,"X":284,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062571Z"},{"ID":54186,"Name":"Wioska PokemonĂłw","Points":7274,"X":720,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062572Z"},{"ID":54187,"Name":"Wioska barbarzyƄska","Points":3790,"X":682,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062572Z"},{"ID":54188,"Name":"MojeDnoToWaszSzczyt","Points":4963,"X":494,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062573Z"},{"ID":54189,"Name":"Wioska barbarzyƄska","Points":1847,"X":697,"Y":400,"Continent":"K46","Bonus":0,"PlayerID":699562182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062573Z"},{"ID":54191,"Name":"New WorldA","Points":3142,"X":277,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062573Z"},{"ID":54192,"Name":"Wioska barbarzyƄska","Points":3033,"X":296,"Y":601,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062574Z"},{"ID":54193,"Name":"201 .40. Infanterie-Division","Points":3166,"X":691,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062575Z"},{"ID":54194,"Name":"North K25","Points":5416,"X":523,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062575Z"},{"ID":54195,"Name":"001 | North","Points":10019,"X":381,"Y":696,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062575Z"},{"ID":54196,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":496,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062576Z"},{"ID":54197,"Name":"Wioska gall","Points":5478,"X":272,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062576Z"},{"ID":54198,"Name":"0123","Points":7534,"X":370,"Y":691,"Continent":"K63","Bonus":9,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062576Z"},{"ID":54199,"Name":"Nowe Dobra - budowa","Points":4879,"X":688,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062577Z"},{"ID":54200,"Name":"#129#","Points":3774,"X":658,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062577Z"},{"ID":54201,"Name":"007","Points":3925,"X":273,"Y":453,"Continent":"K42","Bonus":4,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062578Z"},{"ID":54202,"Name":"W004","Points":530,"X":301,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":849082154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062578Z"},{"ID":54203,"Name":"Wioska barbarzyƄska","Points":9699,"X":554,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062578Z"},{"ID":54204,"Name":"020","Points":1895,"X":302,"Y":606,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062579Z"},{"ID":54205,"Name":"Darlowo","Points":5571,"X":469,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062579Z"},{"ID":54206,"Name":"Wioska bzyku195","Points":426,"X":336,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":849089512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06258Z"},{"ID":54207,"Name":"Wioska barbarzyƄska","Points":9639,"X":548,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06258Z"},{"ID":54208,"Name":"013. Wioska barbarzyƄska","Points":6912,"X":700,"Y":388,"Continent":"K37","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06258Z"},{"ID":54209,"Name":"C0303","Points":3620,"X":282,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06258Z"},{"ID":54210,"Name":"North 078","Points":4332,"X":598,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062581Z"},{"ID":54211,"Name":"Www","Points":2768,"X":505,"Y":394,"Continent":"K35","Bonus":0,"PlayerID":849044961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062581Z"},{"ID":54212,"Name":"Wioska barbarzyƄska","Points":803,"X":554,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849099280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062582Z"},{"ID":54213,"Name":"E001","Points":4405,"X":635,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062582Z"},{"ID":54214,"Name":"A-006","Points":4349,"X":321,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062582Z"},{"ID":54215,"Name":"022","Points":7601,"X":698,"Y":620,"Continent":"K66","Bonus":4,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062583Z"},{"ID":54216,"Name":"020 | North","Points":1598,"X":376,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062583Z"},{"ID":54217,"Name":"wy...","Points":3946,"X":597,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062583Z"},{"ID":54218,"Name":"Leeƛnica","Points":8279,"X":297,"Y":597,"Continent":"K52","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062584Z"},{"ID":54219,"Name":"New WorldA","Points":5220,"X":282,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062584Z"},{"ID":54220,"Name":"=110= Wioska barbarzyƄska","Points":1984,"X":704,"Y":592,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062584Z"},{"ID":54222,"Name":"komandos48","Points":7085,"X":648,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062585Z"},{"ID":54223,"Name":"Wioska emilek","Points":4559,"X":633,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":849040462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062585Z"},{"ID":54224,"Name":"Kandydat","Points":1402,"X":691,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062585Z"},{"ID":54225,"Name":"Osada koczownikĂłw","Points":815,"X":321,"Y":358,"Continent":"K33","Bonus":7,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062585Z"},{"ID":54227,"Name":"PóƂnocny Bagdad","Points":6647,"X":625,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062586Z"},{"ID":54228,"Name":"Wioska barbarzyƄska","Points":4030,"X":299,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062586Z"},{"ID":54229,"Name":"04Wioska barbarzyƄska","Points":6837,"X":362,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062586Z"},{"ID":54230,"Name":"44.Ymlac","Points":3060,"X":723,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062587Z"},{"ID":54231,"Name":"PóƂnocny Bagdad","Points":7103,"X":616,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062587Z"},{"ID":54232,"Name":"Wioska barbarzyƄska","Points":2549,"X":537,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":849105071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062587Z"},{"ID":54233,"Name":"0045","Points":1245,"X":476,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062588Z"},{"ID":54234,"Name":"Wioska barbarzyƄska","Points":1242,"X":595,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":849101409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062588Z"},{"ID":54235,"Name":"Op Konfederacja","Points":1221,"X":465,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062588Z"},{"ID":54236,"Name":"ƚw181*003","Points":3045,"X":661,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062589Z"},{"ID":54237,"Name":"001 bam","Points":9511,"X":280,"Y":552,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062589Z"},{"ID":54238,"Name":"Grzejdas 4","Points":3114,"X":695,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062589Z"},{"ID":54240,"Name":"Wioska26","Points":4001,"X":332,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06259Z"},{"ID":54241,"Name":"Dhabfba","Points":1633,"X":634,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":849102985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06259Z"},{"ID":54242,"Name":"kww06","Points":2745,"X":717,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":8541236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06259Z"},{"ID":54243,"Name":"ZƂoty ƚwit","Points":7549,"X":585,"Y":295,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062591Z"},{"ID":54244,"Name":"Far far away","Points":2530,"X":284,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062591Z"},{"ID":54245,"Name":"181 Wioska Chmielu","Points":2354,"X":716,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":848975192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062591Z"},{"ID":54246,"Name":"Wioska barbarzyƄska","Points":2560,"X":407,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062592Z"},{"ID":54247,"Name":"Wioska barbarzyƄska","Points":9788,"X":416,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062592Z"},{"ID":54248,"Name":"K33","Points":1537,"X":309,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062592Z"},{"ID":54250,"Name":"Wioska barbarzyƄska","Points":2189,"X":316,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062593Z"},{"ID":54251,"Name":"komandos","Points":3302,"X":660,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062593Z"},{"ID":54252,"Name":"042 Wioska barbarzyƄska","Points":9835,"X":545,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062593Z"},{"ID":54253,"Name":"Wioska wieslaw1","Points":5360,"X":502,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699794421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062594Z"},{"ID":54254,"Name":"New World","Points":9687,"X":416,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062594Z"},{"ID":54255,"Name":"New World","Points":10290,"X":433,"Y":717,"Continent":"K74","Bonus":4,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062594Z"},{"ID":54256,"Name":"Wioska barbarzyƄska 019","Points":2852,"X":382,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":849068662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062594Z"},{"ID":54257,"Name":"...::181 09::...","Points":3184,"X":276,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062595Z"},{"ID":54258,"Name":"Wioska barbarzyƄska","Points":10066,"X":724,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062595Z"},{"ID":54259,"Name":"A#022","Points":9797,"X":724,"Y":540,"Continent":"K57","Bonus":9,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062595Z"},{"ID":54261,"Name":"Taka.","Points":5989,"X":483,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062596Z"},{"ID":54262,"Name":"3.Sheffield","Points":7886,"X":567,"Y":719,"Continent":"K75","Bonus":1,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062596Z"},{"ID":54264,"Name":"125 invidia","Points":9547,"X":493,"Y":730,"Continent":"K74","Bonus":5,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062596Z"},{"ID":54266,"Name":"070 Wioska barbarzyƄska","Points":8643,"X":542,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062597Z"},{"ID":54267,"Name":"Kapitol_01","Points":4377,"X":509,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062597Z"},{"ID":54268,"Name":"01 Kapitol","Points":11487,"X":547,"Y":359,"Continent":"K35","Bonus":0,"PlayerID":849108780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062598Z"},{"ID":54269,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":9370,"X":539,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062598Z"},{"ID":54270,"Name":"Stolica Berciaka","Points":7300,"X":540,"Y":341,"Continent":"K35","Bonus":0,"PlayerID":849108784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062598Z"},{"ID":54271,"Name":"04Wioska barbarzyƄska","Points":8373,"X":361,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062599Z"},{"ID":54272,"Name":"PiekƂo to inni","Points":2998,"X":638,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062599Z"},{"ID":54273,"Name":"Wioska barbarzyƄska","Points":5582,"X":643,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062599Z"},{"ID":54274,"Name":"064.","Points":1639,"X":635,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062599Z"},{"ID":54275,"Name":"New WorldA","Points":3375,"X":275,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0626Z"},{"ID":54276,"Name":"komandos","Points":2545,"X":661,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0626Z"},{"ID":54277,"Name":"Wioska Lord Pynio","Points":6964,"X":662,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":849018778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0626Z"},{"ID":54278,"Name":"Sony 911","Points":5323,"X":716,"Y":583,"Continent":"K57","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062601Z"},{"ID":54279,"Name":"016. Way of Blond","Points":9043,"X":463,"Y":723,"Continent":"K74","Bonus":5,"PlayerID":848896948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062601Z"},{"ID":54280,"Name":"K42 ADAMUS 005","Points":9172,"X":281,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062601Z"},{"ID":54281,"Name":"Wioska barbarzyƄska","Points":3486,"X":707,"Y":403,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062602Z"},{"ID":54282,"Name":"Wioska Bosman7","Points":209,"X":564,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":6948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062602Z"},{"ID":54283,"Name":"Wioska barbarzyƄska","Points":1855,"X":311,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062602Z"},{"ID":54284,"Name":"Wioska barbarzyƄska","Points":1673,"X":303,"Y":601,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062603Z"},{"ID":54285,"Name":"C0307","Points":2930,"X":278,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062603Z"},{"ID":54286,"Name":"Wioska barbarzyƄska","Points":1783,"X":369,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062603Z"},{"ID":54287,"Name":"ZZZ .::. cinek3456/13","Points":1275,"X":587,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062604Z"},{"ID":54288,"Name":"bandzior","Points":6388,"X":498,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062604Z"},{"ID":54289,"Name":"=121= Wioska barbarzyƄska","Points":2173,"X":714,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062605Z"},{"ID":54290,"Name":"PoƂudniowy WschĂłd 015","Points":825,"X":694,"Y":610,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062605Z"},{"ID":54291,"Name":"MP4/1B","Points":2003,"X":405,"Y":299,"Continent":"K24","Bonus":0,"PlayerID":8429484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062606Z"},{"ID":54292,"Name":"0000038Z","Points":3200,"X":278,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062606Z"},{"ID":54293,"Name":"R 049","Points":3190,"X":492,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062607Z"},{"ID":54294,"Name":".achim.","Points":5579,"X":568,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062608Z"},{"ID":54295,"Name":"K33","Points":3638,"X":318,"Y":386,"Continent":"K33","Bonus":0,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062608Z"},{"ID":54296,"Name":"Wioska barbarzyƄska","Points":3878,"X":427,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062609Z"},{"ID":54297,"Name":"Wioska Lodar93","Points":888,"X":604,"Y":707,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062609Z"},{"ID":54298,"Name":"ƚw181*006","Points":1799,"X":663,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06261Z"},{"ID":54299,"Name":"Grunwald 001","Points":3450,"X":660,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06261Z"},{"ID":54300,"Name":"Lord Arsey KING","Points":7673,"X":664,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062611Z"},{"ID":54301,"Name":"054 Wioska barbarzyƄska","Points":9835,"X":549,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062611Z"},{"ID":54302,"Name":"-11. Las Grzybas","Points":2254,"X":379,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062612Z"},{"ID":54303,"Name":"Wioska barbarzyƄska","Points":3878,"X":401,"Y":702,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062613Z"},{"ID":54304,"Name":"K42 ADAMUS 019","Points":3679,"X":281,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062613Z"},{"ID":54305,"Name":"Kapitol_08","Points":5817,"X":499,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062614Z"},{"ID":54306,"Name":"27. Ofir","Points":7266,"X":722,"Y":533,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062614Z"},{"ID":54307,"Name":"Wioska barbarzyƄska","Points":5658,"X":399,"Y":705,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062615Z"},{"ID":54308,"Name":"...::181 11::...","Points":2856,"X":273,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062615Z"},{"ID":54309,"Name":"Wioska barbarzyƄska","Points":1177,"X":624,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":699699601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062616Z"},{"ID":54310,"Name":"Wioska barbarzyƄska","Points":738,"X":350,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062616Z"},{"ID":54311,"Name":"0067","Points":10183,"X":454,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062617Z"},{"ID":54312,"Name":"127 invidia","Points":8896,"X":493,"Y":731,"Continent":"K74","Bonus":5,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062618Z"},{"ID":54313,"Name":"091","Points":411,"X":699,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062618Z"},{"ID":54314,"Name":"Wioska barbarzyƄska","Points":2475,"X":316,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062619Z"},{"ID":54315,"Name":"Wioska barbarzyƄska","Points":1948,"X":704,"Y":393,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062619Z"},{"ID":54316,"Name":"Wioska barbarzyƄska 12","Points":6439,"X":346,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06262Z"},{"ID":54317,"Name":"BOA2","Points":5176,"X":305,"Y":621,"Continent":"K63","Bonus":0,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062621Z"},{"ID":54318,"Name":"Wioska barbarzyƄska","Points":9135,"X":713,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062621Z"},{"ID":54319,"Name":"C0313","Points":2493,"X":278,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062622Z"},{"ID":54320,"Name":"007","Points":2870,"X":408,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062623Z"},{"ID":54321,"Name":"Warszawa","Points":8103,"X":407,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062623Z"},{"ID":54322,"Name":"Wioska ziutek 1","Points":7559,"X":517,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":7787254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062624Z"},{"ID":54323,"Name":"Wioska barbarzyƄska","Points":5884,"X":497,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062625Z"},{"ID":54324,"Name":"D | Forest Cyaaaanku","Points":8502,"X":277,"Y":465,"Continent":"K42","Bonus":9,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062626Z"},{"ID":54325,"Name":"Wioska badadi 97","Points":3240,"X":722,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":1043028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062626Z"},{"ID":54326,"Name":"072. Wioska barbarzyƄska","Points":5575,"X":728,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062627Z"},{"ID":54327,"Name":"051","Points":3384,"X":668,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062628Z"},{"ID":54328,"Name":"Wioska barbarzyƄska","Points":2260,"X":729,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062629Z"},{"ID":54329,"Name":"062.","Points":2339,"X":643,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062629Z"},{"ID":54330,"Name":"Wioska barbarzyƄska","Points":1003,"X":716,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06263Z"},{"ID":54331,"Name":"Mordownia 9","Points":4287,"X":707,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062631Z"},{"ID":54332,"Name":"XDX","Points":5158,"X":613,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062632Z"},{"ID":54333,"Name":"Zaplecze ludzikĂłw","Points":9804,"X":354,"Y":322,"Continent":"K33","Bonus":4,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062632Z"},{"ID":54335,"Name":"#0264 colt9","Points":1299,"X":432,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062633Z"},{"ID":54336,"Name":"O133","Points":4486,"X":313,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062634Z"},{"ID":54337,"Name":"Wioska barbarzyƄska","Points":2297,"X":527,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062635Z"},{"ID":54338,"Name":"Wioska barbarzyƄska","Points":1699,"X":679,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062635Z"},{"ID":54339,"Name":"-001-","Points":9725,"X":729,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062636Z"},{"ID":54340,"Name":"Kiedyƛ Wielki Wojownik","Points":1815,"X":329,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062637Z"},{"ID":54341,"Name":"082. Wioska barbarzyƄska","Points":3866,"X":730,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062637Z"},{"ID":54342,"Name":"Orgetoryks","Points":1935,"X":327,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":848998530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062638Z"},{"ID":54343,"Name":"008. Osada koczownikĂłw","Points":10237,"X":706,"Y":395,"Continent":"K37","Bonus":2,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062639Z"},{"ID":54344,"Name":"C016","Points":1505,"X":545,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062639Z"},{"ID":54345,"Name":"Wioska barbarzyƄska","Points":6728,"X":645,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06264Z"},{"ID":54347,"Name":"No.3","Points":1845,"X":326,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":849106612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06264Z"},{"ID":54349,"Name":"PiekƂo to inni","Points":3942,"X":650,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062641Z"},{"ID":54350,"Name":"Wioska Ozilo","Points":5229,"X":686,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":699794720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062641Z"},{"ID":54351,"Name":"~~084~~","Points":4646,"X":680,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":7829201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062642Z"},{"ID":54352,"Name":"KONFA TO MARKA, NARKA","Points":6778,"X":278,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062643Z"},{"ID":54353,"Name":"North 033","Points":6784,"X":518,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062643Z"},{"ID":54355,"Name":"Kapitol_25","Points":3769,"X":505,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062644Z"},{"ID":54356,"Name":"0174","Points":2486,"X":370,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":7085510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062644Z"},{"ID":54357,"Name":"ZZZ .::. cinek3456/09","Points":1769,"X":586,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062645Z"},{"ID":54358,"Name":"KONFA TO MARKA, NARKA","Points":4274,"X":283,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062645Z"},{"ID":54360,"Name":"Wioska 9","Points":866,"X":681,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062646Z"},{"ID":54361,"Name":"#005","Points":8599,"X":550,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062646Z"},{"ID":54362,"Name":"Wioska barbarzyƄska","Points":484,"X":353,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062647Z"},{"ID":54363,"Name":"Kiedyƛ Wielki Wojownik","Points":1361,"X":328,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062648Z"},{"ID":54364,"Name":"Motorola 09","Points":3682,"X":365,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062648Z"},{"ID":54365,"Name":"003 | North","Points":8796,"X":383,"Y":697,"Continent":"K63","Bonus":7,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062649Z"},{"ID":54366,"Name":"Wiadro24","Points":3317,"X":680,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062649Z"},{"ID":54367,"Name":"KONFA TO MARKA, NARKA","Points":7957,"X":276,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06265Z"},{"ID":54368,"Name":"Wioska barbarzyƄska","Points":733,"X":274,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":1095489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06265Z"},{"ID":54369,"Name":"Wioska 017","Points":4786,"X":669,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062651Z"},{"ID":54370,"Name":"okk","Points":409,"X":697,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":848928486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062651Z"},{"ID":54371,"Name":"Zzz 10 Vetiuss","Points":5335,"X":281,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062652Z"},{"ID":54372,"Name":"KONFA TO MARKA, NARKA","Points":2482,"X":292,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062653Z"},{"ID":54373,"Name":"Kapitol_22","Points":4074,"X":510,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062653Z"},{"ID":54374,"Name":"PPF-02","Points":5849,"X":520,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062654Z"},{"ID":54375,"Name":"O105","Points":7662,"X":314,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062654Z"},{"ID":54376,"Name":"KONFA TO MARKA, NARKA","Points":5896,"X":281,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062655Z"},{"ID":54377,"Name":"013 - Budowanko!","Points":6553,"X":489,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062655Z"},{"ID":54379,"Name":"C0288","Points":4375,"X":280,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062656Z"},{"ID":54380,"Name":"Wioska barbarzyƄska","Points":4514,"X":716,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062656Z"},{"ID":54381,"Name":"[0237]","Points":4604,"X":271,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062657Z"},{"ID":54383,"Name":"PiekƂo to inni","Points":1648,"X":652,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062657Z"},{"ID":54384,"Name":"Wioska barbarzyƄska","Points":1406,"X":629,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062658Z"},{"ID":54385,"Name":"70. Wioska 70","Points":6784,"X":277,"Y":563,"Continent":"K52","Bonus":6,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062659Z"},{"ID":54386,"Name":"O095","Points":7736,"X":313,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062659Z"},{"ID":54388,"Name":"064 Wioska barbarzyƄska","Points":3402,"X":345,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06266Z"},{"ID":54389,"Name":".achim.","Points":4299,"X":570,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06266Z"},{"ID":54390,"Name":"011 - Budowanko!","Points":6614,"X":489,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062661Z"},{"ID":54391,"Name":"New WorldA","Points":1926,"X":271,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062662Z"},{"ID":54392,"Name":"Wioska barbarzyƄska","Points":1394,"X":376,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062662Z"},{"ID":54393,"Name":"04Wioska barbarzyƄska","Points":7567,"X":364,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062663Z"},{"ID":54394,"Name":"Wioska barbarzyƄska","Points":5669,"X":732,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062663Z"},{"ID":54395,"Name":"New World","Points":10290,"X":429,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062664Z"},{"ID":54396,"Name":"Zadupie","Points":2818,"X":680,"Y":358,"Continent":"K36","Bonus":6,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062664Z"},{"ID":54398,"Name":"Wioska barbarzyƄska","Points":2864,"X":729,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062665Z"},{"ID":54399,"Name":"Nowe Dobra - budowa","Points":5202,"X":684,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062665Z"},{"ID":54400,"Name":"0047","Points":1463,"X":478,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062666Z"},{"ID":54401,"Name":"Wioska Lord Jack Carver","Points":5002,"X":324,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062666Z"},{"ID":54402,"Name":"033. Brauer92","Points":10237,"X":702,"Y":394,"Continent":"K37","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062667Z"},{"ID":54403,"Name":"[807] Odludzie","Points":7450,"X":712,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062667Z"},{"ID":54405,"Name":"$001$ Isengard","Points":10019,"X":305,"Y":624,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062668Z"},{"ID":54406,"Name":"061.","Points":9393,"X":447,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062669Z"},{"ID":54408,"Name":"022 KTW","Points":10971,"X":724,"Y":446,"Continent":"K47","Bonus":2,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062669Z"},{"ID":54409,"Name":"Wioska barbarzyƄska","Points":571,"X":388,"Y":300,"Continent":"K33","Bonus":0,"PlayerID":3842862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06267Z"},{"ID":54410,"Name":"#032","Points":2225,"X":557,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06267Z"},{"ID":54411,"Name":"Wioska barbarzyƄska","Points":144,"X":602,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062671Z"},{"ID":54412,"Name":"#0188 barbarzyƄska","Points":5413,"X":661,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062671Z"},{"ID":54413,"Name":"Wioska Soldier2020","Points":8895,"X":622,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":699883836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062672Z"},{"ID":54414,"Name":"XDX","Points":3914,"X":608,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062673Z"},{"ID":54415,"Name":"O154","Points":792,"X":316,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062673Z"},{"ID":54416,"Name":"Wioska barbarzyƄska","Points":5283,"X":319,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062674Z"},{"ID":54417,"Name":"Wioska28","Points":1957,"X":334,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062674Z"},{"ID":54418,"Name":"KONFA TO MARKA, NARKA","Points":8290,"X":283,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062675Z"},{"ID":54419,"Name":"Wioska barbarzyƄska","Points":1317,"X":278,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062675Z"},{"ID":54420,"Name":"North 093","Points":4289,"X":596,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062676Z"},{"ID":54422,"Name":"076. Acci","Points":4197,"X":723,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062677Z"},{"ID":54423,"Name":"005","Points":10068,"X":295,"Y":593,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062677Z"},{"ID":54424,"Name":"044Bagno","Points":7113,"X":468,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062678Z"},{"ID":54425,"Name":"Z01","Points":1623,"X":374,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062678Z"},{"ID":54426,"Name":"-27-","Points":3141,"X":584,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062679Z"},{"ID":54427,"Name":"021","Points":2345,"X":290,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062679Z"},{"ID":54428,"Name":"030Boli gƂowa","Points":2665,"X":501,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06268Z"},{"ID":54429,"Name":"0106","Points":2436,"X":691,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062681Z"},{"ID":54430,"Name":"Wioska barbarzyƄska","Points":1697,"X":353,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062681Z"},{"ID":54431,"Name":"Szarowki","Points":4985,"X":601,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":848912937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062682Z"},{"ID":54432,"Name":"Psycha Siada","Points":4807,"X":324,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062682Z"},{"ID":54434,"Name":"Wioska barbarzyƄska","Points":8561,"X":553,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062683Z"},{"ID":54435,"Name":"=111= Wioska barbarzyƄska","Points":4318,"X":709,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062684Z"},{"ID":54436,"Name":"71. Wioska 71","Points":2774,"X":277,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062684Z"},{"ID":54437,"Name":"PPF-40","Points":743,"X":537,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062685Z"},{"ID":54439,"Name":"04Wioska barbarzyƄska","Points":6990,"X":357,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062685Z"},{"ID":54440,"Name":"Spoko, nie szkodzi","Points":2426,"X":711,"Y":407,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062686Z"},{"ID":54441,"Name":"MERHEt","Points":3530,"X":588,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":698215322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062686Z"},{"ID":54442,"Name":"012 | North","Points":4955,"X":375,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062687Z"},{"ID":54443,"Name":"#002","Points":9187,"X":553,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062688Z"},{"ID":54444,"Name":"Wioska barbarzyƄska","Points":772,"X":561,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699712422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062688Z"},{"ID":54445,"Name":"071 Wioska barbarzyƄska","Points":2419,"X":340,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062689Z"},{"ID":54446,"Name":"Wioska 003","Points":5889,"X":670,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062689Z"},{"ID":54447,"Name":"KONFA TO MARKA, NARKA","Points":2699,"X":287,"Y":413,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06269Z"},{"ID":54448,"Name":"016 Twierdza","Points":7143,"X":633,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":849104328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062691Z"},{"ID":54449,"Name":"Wioska 004","Points":3424,"X":673,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062691Z"},{"ID":54450,"Name":"t010","Points":7208,"X":671,"Y":348,"Continent":"K36","Bonus":8,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062692Z"},{"ID":54451,"Name":"002 wolnoƛć","Points":812,"X":335,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062692Z"},{"ID":54452,"Name":"04Wioska barbarzyƄska","Points":6801,"X":364,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062693Z"},{"ID":54453,"Name":"###154###","Points":10388,"X":610,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062693Z"},{"ID":54454,"Name":"CastAway #018","Points":3585,"X":710,"Y":585,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062694Z"},{"ID":54455,"Name":"Wiadro20","Points":1275,"X":686,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062694Z"},{"ID":54456,"Name":"C.057","Points":1358,"X":723,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062695Z"},{"ID":54457,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":507,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062696Z"},{"ID":54459,"Name":"Wioska barbarzyƄska","Points":1764,"X":450,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062696Z"},{"ID":54460,"Name":"003","Points":5942,"X":306,"Y":374,"Continent":"K33","Bonus":4,"PlayerID":849109795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062697Z"},{"ID":54461,"Name":"33. Vicovaro","Points":5876,"X":724,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062697Z"},{"ID":54462,"Name":"Wioska barbarzyƄska","Points":906,"X":722,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062698Z"},{"ID":54463,"Name":"039 Ever Grande City","Points":4770,"X":730,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062699Z"},{"ID":54464,"Name":"Wioska barbarzyƄska","Points":7139,"X":658,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062699Z"},{"ID":54465,"Name":"Wioska17","Points":4471,"X":704,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0627Z"},{"ID":54466,"Name":"Osada koczownikĂłw","Points":3730,"X":459,"Y":281,"Continent":"K24","Bonus":3,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0627Z"},{"ID":54467,"Name":"C.053","Points":4491,"X":720,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062701Z"},{"ID":54468,"Name":"011. Calzone","Points":8450,"X":316,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":849102092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062702Z"},{"ID":54469,"Name":"110 Takahashi","Points":3111,"X":636,"Y":471,"Continent":"K46","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062703Z"},{"ID":54470,"Name":"szymek2","Points":3849,"X":280,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":1323424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062704Z"},{"ID":54471,"Name":"Wioska barbarzyƄska","Points":3160,"X":458,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062704Z"},{"ID":54472,"Name":"2 lozi20","Points":2193,"X":726,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062705Z"},{"ID":54473,"Name":"Wioska barbarzyƄska","Points":3683,"X":712,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062706Z"},{"ID":54474,"Name":"#010","Points":6453,"X":548,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062707Z"},{"ID":54475,"Name":"Zaplecze Barba 037","Points":4632,"X":356,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062708Z"},{"ID":54477,"Name":"Wioska barbarzyƄska","Points":9741,"X":550,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062708Z"},{"ID":54478,"Name":"Avanti!","Points":3412,"X":273,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062709Z"},{"ID":54479,"Name":"moria","Points":4133,"X":295,"Y":391,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06271Z"},{"ID":54480,"Name":"New WorldA","Points":1238,"X":279,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06271Z"},{"ID":54481,"Name":"#0261 cƂopciec","Points":953,"X":478,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062711Z"},{"ID":54482,"Name":"045Cacuƛ-Lion","Points":4442,"X":471,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062711Z"},{"ID":54483,"Name":"#022","Points":2513,"X":544,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062712Z"},{"ID":54484,"Name":"181","Points":980,"X":518,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":849107799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062713Z"},{"ID":54485,"Name":"North K25","Points":5607,"X":535,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062713Z"},{"ID":54486,"Name":"Wioska barbarzyƄska","Points":2132,"X":726,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062714Z"},{"ID":54487,"Name":"Wioska barbarzyƄska","Points":872,"X":371,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062714Z"},{"ID":54488,"Name":"124","Points":8432,"X":386,"Y":695,"Continent":"K63","Bonus":6,"PlayerID":849099876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062715Z"},{"ID":54490,"Name":"PóƂnocny Bagdad","Points":3421,"X":630,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062715Z"},{"ID":54491,"Name":"Wioska barbarzyƄska","Points":292,"X":297,"Y":607,"Continent":"K62","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062716Z"},{"ID":54492,"Name":"086 Wioska barbarzyƄska","Points":9799,"X":475,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062716Z"},{"ID":54493,"Name":"Wioska 2","Points":3439,"X":270,"Y":511,"Continent":"K52","Bonus":3,"PlayerID":849114265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062717Z"},{"ID":54494,"Name":"Wioska GoƂabek","Points":5870,"X":595,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":849070736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062717Z"},{"ID":54495,"Name":"129.Stradi","Points":2702,"X":398,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062718Z"},{"ID":54496,"Name":"-28-","Points":8098,"X":577,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062718Z"},{"ID":54497,"Name":"Wioska27","Points":4482,"X":331,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062719Z"},{"ID":54498,"Name":"Wioska barbarzyƄska","Points":1943,"X":386,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062719Z"},{"ID":54499,"Name":".achim.","Points":4985,"X":571,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06272Z"},{"ID":54500,"Name":"XDX","Points":4926,"X":614,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06272Z"},{"ID":54501,"Name":"Nowe Dobra - budowa","Points":5736,"X":689,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062721Z"},{"ID":54502,"Name":"Wioska","Points":576,"X":706,"Y":587,"Continent":"K57","Bonus":0,"PlayerID":3692413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062722Z"},{"ID":54503,"Name":"Wioska barbarzyƄska","Points":4105,"X":709,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062722Z"},{"ID":54504,"Name":"029. Brauer92","Points":6808,"X":700,"Y":395,"Continent":"K37","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062723Z"},{"ID":54505,"Name":"038 Pacifidlog Town","Points":3477,"X":728,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062723Z"},{"ID":54506,"Name":"Ghostmane3","Points":2430,"X":717,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062724Z"},{"ID":54507,"Name":"New World","Points":9984,"X":413,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062725Z"},{"ID":54508,"Name":"014","Points":1082,"X":606,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062725Z"},{"ID":54509,"Name":"#015","Points":5034,"X":555,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062726Z"},{"ID":54510,"Name":"055","Points":758,"X":666,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062726Z"},{"ID":54511,"Name":"058.","Points":1956,"X":640,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062727Z"},{"ID":54512,"Name":"...::181 06::...","Points":3539,"X":274,"Y":516,"Continent":"K52","Bonus":3,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062727Z"},{"ID":54513,"Name":"Wioska barbarzyƄska","Points":792,"X":692,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062728Z"},{"ID":54514,"Name":"MojeDnoToWaszSzczyt","Points":9947,"X":504,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062729Z"},{"ID":54515,"Name":"Wioska barbarzyƄska","Points":1277,"X":724,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062729Z"},{"ID":54516,"Name":"064","Points":288,"X":695,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06273Z"},{"ID":54517,"Name":"MojeDnoToWaszSzczyt","Points":9946,"X":497,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06273Z"},{"ID":54518,"Name":"006","Points":8812,"X":609,"Y":303,"Continent":"K36","Bonus":8,"PlayerID":699117992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062731Z"},{"ID":54519,"Name":"094","Points":3361,"X":724,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062731Z"},{"ID":54520,"Name":"KONFA TO MARKA, NARKA","Points":4344,"X":281,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062732Z"},{"ID":54521,"Name":"Xardas","Points":5543,"X":625,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":848974611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062732Z"},{"ID":54522,"Name":"002 | North","Points":10019,"X":382,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062733Z"},{"ID":54523,"Name":"PóƂnocny Bagdad","Points":2699,"X":628,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062733Z"},{"ID":54524,"Name":"Wioska barbarzyƄska","Points":3969,"X":396,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062734Z"},{"ID":54525,"Name":"Wioska barbarzyƄska","Points":5658,"X":394,"Y":706,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062735Z"},{"ID":54526,"Name":"060KP","Points":2504,"X":484,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062735Z"},{"ID":54527,"Name":"Wioska barbarzyƄska","Points":8474,"X":724,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062736Z"},{"ID":54528,"Name":"Soƛnica 3","Points":623,"X":286,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":848892804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062736Z"},{"ID":54529,"Name":"Wioska Lisu79","Points":3977,"X":279,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":699812351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062737Z"},{"ID":54530,"Name":"ZƂoty ƚwit","Points":5589,"X":598,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062737Z"},{"ID":54531,"Name":"Wioska21","Points":4142,"X":331,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062738Z"},{"ID":54532,"Name":"063KP","Points":2183,"X":480,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062738Z"},{"ID":54533,"Name":"Wioska 001","Points":9693,"X":670,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062739Z"},{"ID":54534,"Name":"wy...m","Points":3860,"X":599,"Y":700,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06274Z"},{"ID":54535,"Name":"0018","Points":1429,"X":681,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":6417987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06274Z"},{"ID":54536,"Name":"Wioska Pracz 7","Points":6714,"X":308,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062741Z"},{"ID":54537,"Name":"Wioska barbarzyƄska","Points":5570,"X":564,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062741Z"},{"ID":54538,"Name":"Psycha Siada","Points":6796,"X":323,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062742Z"},{"ID":54539,"Name":"019","Points":6329,"X":294,"Y":606,"Continent":"K62","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062742Z"},{"ID":54541,"Name":"BB2","Points":1717,"X":269,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849110365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062743Z"},{"ID":54542,"Name":"04Wioska barbarzyƄska","Points":6169,"X":358,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062743Z"},{"ID":54543,"Name":"North 034","Points":5892,"X":515,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062744Z"},{"ID":54544,"Name":"KƂodzko","Points":2198,"X":674,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062745Z"},{"ID":54545,"Name":"WOLA0005","Points":3558,"X":675,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062745Z"},{"ID":54546,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":505,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062746Z"},{"ID":54548,"Name":"016","Points":1282,"X":339,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062746Z"},{"ID":54550,"Name":"Wioska barbarzyƄska","Points":3142,"X":730,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062747Z"},{"ID":54551,"Name":"Wioska mily546","Points":775,"X":646,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062747Z"},{"ID":54552,"Name":"Kartagina","Points":9604,"X":691,"Y":620,"Continent":"K66","Bonus":0,"PlayerID":7550472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062748Z"},{"ID":54553,"Name":"#205 C","Points":4520,"X":509,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062749Z"},{"ID":54554,"Name":"033. Gloria Victis","Points":4415,"X":281,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062749Z"},{"ID":54555,"Name":"Wioska Waldemark","Points":4553,"X":703,"Y":611,"Continent":"K67","Bonus":0,"PlayerID":6921135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06275Z"},{"ID":54557,"Name":"Nowa 61","Points":3497,"X":723,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06275Z"},{"ID":54558,"Name":"008","Points":3021,"X":273,"Y":450,"Continent":"K42","Bonus":1,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062751Z"},{"ID":54559,"Name":"Wioska Boginysa","Points":3210,"X":312,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":2324569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062751Z"},{"ID":54560,"Name":"t014","Points":7340,"X":668,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062752Z"},{"ID":54561,"Name":"Wioska barbarzyƄska","Points":606,"X":319,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062752Z"},{"ID":54562,"Name":"Wioska barbarzyƄska","Points":3200,"X":681,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062753Z"},{"ID":54563,"Name":"Sony 911","Points":6111,"X":672,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062754Z"},{"ID":54564,"Name":"O149","Points":2271,"X":314,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062754Z"},{"ID":54565,"Name":"Kurnik","Points":7628,"X":447,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062755Z"},{"ID":54567,"Name":"W00","Points":5693,"X":323,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062755Z"},{"ID":54568,"Name":"007 Wioska F","Points":2755,"X":285,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":6240801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062756Z"},{"ID":54569,"Name":"Avanti!","Points":2416,"X":275,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062757Z"},{"ID":54570,"Name":"Wioska barbarzyƄska","Points":4870,"X":638,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062757Z"},{"ID":54571,"Name":"Wioska wilka 05","Points":8067,"X":719,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":6786449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062758Z"},{"ID":54572,"Name":"Wioska32","Points":1310,"X":336,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062758Z"},{"ID":54573,"Name":"Wioska a","Points":6493,"X":426,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062759Z"},{"ID":54574,"Name":"North 109","Points":1174,"X":509,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062759Z"},{"ID":54576,"Name":"Kapitol_15","Points":4359,"X":498,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06276Z"},{"ID":54577,"Name":"R 050","Points":2336,"X":497,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06276Z"},{"ID":54578,"Name":"Wioska barbarzyƄska","Points":843,"X":729,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062761Z"},{"ID":54579,"Name":"KONFA TO MARKA, NARKA","Points":10295,"X":286,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062761Z"},{"ID":54580,"Name":"Wioska barbarzyƄska","Points":4550,"X":553,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062762Z"},{"ID":54581,"Name":"4-Wioska -OB","Points":1392,"X":692,"Y":611,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062763Z"},{"ID":54582,"Name":"038 KTW","Points":1989,"X":723,"Y":453,"Continent":"K47","Bonus":7,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062763Z"},{"ID":54583,"Name":"Wioska barbarzyƄska","Points":2477,"X":725,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062764Z"},{"ID":54584,"Name":"0017 Domek Miniuka 01","Points":8543,"X":479,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062764Z"},{"ID":54585,"Name":"B004","Points":7520,"X":520,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062765Z"},{"ID":54586,"Name":"A#048","Points":6702,"X":706,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062765Z"},{"ID":54587,"Name":"PiekƂo to inni","Points":3937,"X":643,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062766Z"},{"ID":54588,"Name":"TRENER","Points":706,"X":373,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":849097837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062766Z"},{"ID":54589,"Name":"ObrzeĆŒe","Points":3196,"X":603,"Y":707,"Continent":"K76","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062767Z"},{"ID":54590,"Name":".achim.","Points":2274,"X":578,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062767Z"},{"ID":54591,"Name":"113.Stradi","Points":7236,"X":424,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062768Z"},{"ID":54592,"Name":"065","Points":3080,"X":692,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062768Z"},{"ID":54593,"Name":"$003$ XMAS","Points":9039,"X":305,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062769Z"},{"ID":54594,"Name":"021","Points":1605,"X":302,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062769Z"},{"ID":54595,"Name":"--041--","Points":2914,"X":575,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06277Z"},{"ID":54596,"Name":"053","Points":2001,"X":655,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06277Z"},{"ID":54598,"Name":"Wioska Pracz 2","Points":7241,"X":309,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062771Z"},{"ID":54599,"Name":"ZƂoty ƚwit","Points":1315,"X":593,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062772Z"},{"ID":54600,"Name":"A co Gazet nie czytasz ?","Points":1038,"X":271,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":849105417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062772Z"},{"ID":54601,"Name":"Wioska barbarzyƄska","Points":471,"X":691,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":849092827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062773Z"},{"ID":54602,"Name":"#041","Points":1293,"X":557,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062773Z"},{"ID":54603,"Name":"Flap","Points":6080,"X":615,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062774Z"},{"ID":54604,"Name":"Tomek II","Points":8138,"X":384,"Y":490,"Continent":"K43","Bonus":0,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062774Z"},{"ID":54605,"Name":"Wioska22","Points":4649,"X":330,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062775Z"},{"ID":54606,"Name":"Wioska barbarzyƄska","Points":5658,"X":385,"Y":702,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062775Z"},{"ID":54607,"Name":"PiekƂo to inni","Points":3349,"X":642,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062776Z"},{"ID":54608,"Name":"Lord Arsey KING","Points":4730,"X":665,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062776Z"},{"ID":54609,"Name":"CZARNA PERƁA","Points":7808,"X":279,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":848930898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062777Z"},{"ID":54610,"Name":"Wioska barbarzyƄska","Points":6349,"X":397,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062778Z"},{"ID":54611,"Name":"Wioska 027","Points":799,"X":672,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062779Z"},{"ID":54612,"Name":"New World","Points":7425,"X":432,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062779Z"},{"ID":54613,"Name":"ATYPOWY","Points":3012,"X":292,"Y":602,"Continent":"K62","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06278Z"},{"ID":54614,"Name":"B014","Points":4966,"X":530,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062781Z"},{"ID":54615,"Name":"Wioska barbarzyƄska","Points":516,"X":302,"Y":602,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062782Z"},{"ID":54616,"Name":"Wioska barbarzyƄska","Points":1220,"X":531,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062782Z"},{"ID":54617,"Name":"Wioska MGryglak95","Points":2476,"X":291,"Y":599,"Continent":"K52","Bonus":0,"PlayerID":849108971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062783Z"},{"ID":54618,"Name":"Wioska barbarzyƄska","Points":6276,"X":394,"Y":705,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062784Z"},{"ID":54619,"Name":"KONFA TO MARKA, NARKA","Points":2228,"X":294,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062785Z"},{"ID":54620,"Name":"North 035","Points":6855,"X":511,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062785Z"},{"ID":54621,"Name":"XDX","Points":3556,"X":617,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062786Z"},{"ID":54622,"Name":"Wioska barbarzyƄska","Points":3091,"X":407,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062787Z"},{"ID":54624,"Name":"Kurnik","Points":8541,"X":451,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062787Z"},{"ID":54625,"Name":"04 Tabaluga1922","Points":1809,"X":636,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062788Z"},{"ID":54626,"Name":"Wioska 0026","Points":649,"X":341,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062788Z"},{"ID":54627,"Name":"Wioska M2","Points":230,"X":549,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849085293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062789Z"},{"ID":54628,"Name":"U-09","Points":2325,"X":653,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062789Z"},{"ID":54629,"Name":"North 094","Points":4438,"X":600,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06279Z"},{"ID":54630,"Name":"|D| Wolffall","Points":3809,"X":456,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06279Z"},{"ID":54631,"Name":"#0058","Points":4079,"X":578,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062791Z"},{"ID":54632,"Name":"XDX","Points":3604,"X":606,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062792Z"},{"ID":54633,"Name":"050 Osada koczownikĂłw","Points":6334,"X":345,"Y":662,"Continent":"K63","Bonus":9,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062792Z"},{"ID":54634,"Name":"Wioska 014","Points":1822,"X":673,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062793Z"},{"ID":54635,"Name":"Wioska barbarzyƄska","Points":2886,"X":729,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062793Z"},{"ID":54636,"Name":"004","Points":10068,"X":292,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062794Z"},{"ID":54637,"Name":"005","Points":2836,"X":404,"Y":297,"Continent":"K24","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062795Z"},{"ID":54638,"Name":"Pcim GĂłrny","Points":3295,"X":466,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849100083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062795Z"},{"ID":54639,"Name":"New World","Points":10290,"X":433,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062796Z"},{"ID":54640,"Name":"Wioska barbarzyƄska 002","Points":3603,"X":718,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":7588382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062796Z"},{"ID":54641,"Name":"komandos","Points":4060,"X":667,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062797Z"},{"ID":54642,"Name":"nowa 3","Points":812,"X":626,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062797Z"},{"ID":54643,"Name":"Wioska barbarzyƄska","Points":4767,"X":364,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062798Z"},{"ID":54644,"Name":"K42 ADAMUS 013","Points":5614,"X":280,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062798Z"},{"ID":54645,"Name":"PPF-29","Points":1456,"X":568,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062799Z"},{"ID":54646,"Name":"Avanti!","Points":2280,"X":273,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0628Z"},{"ID":54647,"Name":"Wioska morogram","Points":4319,"X":463,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":848952566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0628Z"},{"ID":54648,"Name":"Wioska maciusw","Points":154,"X":395,"Y":696,"Continent":"K63","Bonus":0,"PlayerID":699747504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062801Z"},{"ID":54649,"Name":"Wioska barbarzyƄska","Points":965,"X":301,"Y":612,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062801Z"},{"ID":54650,"Name":"Wioska henior123","Points":433,"X":380,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062802Z"},{"ID":54651,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":488,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062803Z"},{"ID":54652,"Name":"zzosa","Points":1257,"X":704,"Y":603,"Continent":"K67","Bonus":5,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062803Z"},{"ID":54653,"Name":"New World","Points":2081,"X":437,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062804Z"},{"ID":54654,"Name":"XDX","Points":3674,"X":611,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062804Z"},{"ID":54655,"Name":"008","Points":6984,"X":682,"Y":359,"Continent":"K36","Bonus":4,"PlayerID":9148043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062805Z"},{"ID":54656,"Name":"North 036","Points":6784,"X":509,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062805Z"},{"ID":54657,"Name":"Wioska barbarzyƄska","Points":4825,"X":412,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062806Z"},{"ID":54658,"Name":"PóƂnocny Bagdad","Points":6497,"X":618,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062807Z"},{"ID":54659,"Name":"Wioska runiczna","Points":4355,"X":409,"Y":300,"Continent":"K34","Bonus":10,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062807Z"},{"ID":54660,"Name":"Wioska runiczna","Points":4355,"X":421,"Y":302,"Continent":"K34","Bonus":10,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062808Z"},{"ID":54661,"Name":"Wioska runiczna","Points":10495,"X":446,"Y":313,"Continent":"K34","Bonus":10,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062809Z"},{"ID":54662,"Name":"XDD","Points":10618,"X":474,"Y":316,"Continent":"K34","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062809Z"},{"ID":54663,"Name":"magiczna flet","Points":10178,"X":496,"Y":308,"Continent":"K34","Bonus":10,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06281Z"},{"ID":54664,"Name":"Runy na runy","Points":9740,"X":414,"Y":329,"Continent":"K34","Bonus":10,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06281Z"},{"ID":54665,"Name":"XDDD","Points":2354,"X":431,"Y":323,"Continent":"K34","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062811Z"},{"ID":54666,"Name":"Wioska barbarzyƄska","Points":6598,"X":440,"Y":329,"Continent":"K34","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062811Z"},{"ID":54667,"Name":"#0066 runiczna","Points":10178,"X":474,"Y":336,"Continent":"K34","Bonus":10,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062812Z"},{"ID":54668,"Name":"XDD","Points":9513,"X":481,"Y":321,"Continent":"K34","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062813Z"},{"ID":54669,"Name":"10002 runiczna","Points":9512,"X":418,"Y":354,"Continent":"K34","Bonus":10,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062813Z"},{"ID":54670,"Name":"Runy znĂłw Runy","Points":9740,"X":433,"Y":343,"Continent":"K34","Bonus":10,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062814Z"},{"ID":54671,"Name":"K34 - [080] Before Land","Points":9192,"X":442,"Y":355,"Continent":"K34","Bonus":10,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062814Z"},{"ID":54672,"Name":"GrĂłd 5","Points":8746,"X":463,"Y":343,"Continent":"K34","Bonus":10,"PlayerID":699204478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062815Z"},{"ID":54673,"Name":"Wioska runiczna","Points":9761,"X":491,"Y":340,"Continent":"K34","Bonus":10,"PlayerID":698739350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062815Z"},{"ID":54674,"Name":"A-048-Heffitto","Points":10168,"X":402,"Y":367,"Continent":"K34","Bonus":10,"PlayerID":8419570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062816Z"},{"ID":54675,"Name":"Wioska runiczna","Points":10460,"X":425,"Y":378,"Continent":"K34","Bonus":10,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062816Z"},{"ID":54676,"Name":"10001 runiczna","Points":8984,"X":441,"Y":371,"Continent":"K34","Bonus":10,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062817Z"},{"ID":54677,"Name":"VN Feitan Portor","Points":9672,"X":464,"Y":369,"Continent":"K34","Bonus":10,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062817Z"},{"ID":54678,"Name":".039.","Points":9712,"X":492,"Y":377,"Continent":"K34","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062818Z"},{"ID":54679,"Name":"Wioska runiczna","Points":9835,"X":411,"Y":386,"Continent":"K34","Bonus":10,"PlayerID":699402816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062818Z"},{"ID":54680,"Name":"Kentin ufam Tobie","Points":10000,"X":431,"Y":389,"Continent":"K34","Bonus":10,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062819Z"},{"ID":54681,"Name":"K34 x008 Wioska Runiczna","Points":9331,"X":444,"Y":390,"Continent":"K34","Bonus":10,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062819Z"},{"ID":54682,"Name":".041.","Points":10001,"X":471,"Y":390,"Continent":"K34","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06282Z"},{"ID":54683,"Name":"Napewno to nie jest off","Points":7632,"X":494,"Y":397,"Continent":"K34","Bonus":10,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06282Z"},{"ID":54684,"Name":"magiczna flet","Points":10178,"X":508,"Y":303,"Continent":"K35","Bonus":10,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062821Z"},{"ID":54685,"Name":"AAA","Points":6942,"X":539,"Y":317,"Continent":"K35","Bonus":10,"PlayerID":1006847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062822Z"},{"ID":54686,"Name":"BRICKLEBERRY","Points":5738,"X":554,"Y":304,"Continent":"K35","Bonus":10,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062822Z"},{"ID":54687,"Name":"Wioska runiczna","Points":10047,"X":568,"Y":303,"Continent":"K35","Bonus":10,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062823Z"},{"ID":54688,"Name":"Wioska krumlow 13","Points":1767,"X":592,"Y":308,"Continent":"K35","Bonus":10,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062823Z"},{"ID":54689,"Name":"Lord Lord Franek .#177","Points":9393,"X":518,"Y":330,"Continent":"K35","Bonus":10,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062824Z"},{"ID":54690,"Name":"Lord Lord Franek .#083","Points":9955,"X":523,"Y":336,"Continent":"K35","Bonus":10,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062824Z"},{"ID":54691,"Name":"Wioska runiczna","Points":4668,"X":542,"Y":337,"Continent":"K35","Bonus":10,"PlayerID":2972329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062825Z"},{"ID":54692,"Name":"K35 - [033] Before Land","Points":4579,"X":576,"Y":322,"Continent":"K35","Bonus":10,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062825Z"},{"ID":54693,"Name":"K35 - [038] Before Land","Points":3696,"X":585,"Y":320,"Continent":"K35","Bonus":10,"PlayerID":699088769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062826Z"},{"ID":54694,"Name":"Lord Lord Franek .#109","Points":9955,"X":510,"Y":344,"Continent":"K35","Bonus":10,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062826Z"},{"ID":54695,"Name":"Lord Lord Franek .#084","Points":9955,"X":534,"Y":344,"Continent":"K35","Bonus":10,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062827Z"},{"ID":54696,"Name":"Wioska runiczna","Points":8680,"X":550,"Y":349,"Continent":"K35","Bonus":10,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062827Z"},{"ID":54697,"Name":"Wioska XVI","Points":3668,"X":577,"Y":347,"Continent":"K35","Bonus":10,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062828Z"},{"ID":54698,"Name":"020 Schwere Panzer-Abteilung 505","Points":2540,"X":597,"Y":357,"Continent":"K35","Bonus":10,"PlayerID":849091899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062828Z"},{"ID":54699,"Name":".040.","Points":10030,"X":509,"Y":371,"Continent":"K35","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062829Z"},{"ID":54700,"Name":"000","Points":10068,"X":529,"Y":360,"Continent":"K35","Bonus":10,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06283Z"},{"ID":54701,"Name":".:050:. ƁOBUZIK","Points":7097,"X":549,"Y":370,"Continent":"K35","Bonus":10,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06283Z"},{"ID":54702,"Name":"Wioska runiczna","Points":10216,"X":561,"Y":362,"Continent":"K35","Bonus":10,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062831Z"},{"ID":54703,"Name":"WesoƂych ƚwiąt","Points":5608,"X":591,"Y":363,"Continent":"K35","Bonus":10,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062831Z"},{"ID":54704,"Name":".038.","Points":9989,"X":503,"Y":381,"Continent":"K35","Bonus":10,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062832Z"},{"ID":54705,"Name":"000","Points":10068,"X":527,"Y":390,"Continent":"K35","Bonus":10,"PlayerID":1990750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062832Z"},{"ID":54706,"Name":"Taran","Points":9426,"X":547,"Y":386,"Continent":"K35","Bonus":10,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062833Z"},{"ID":54707,"Name":"077R","Points":6384,"X":573,"Y":397,"Continent":"K35","Bonus":10,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062834Z"},{"ID":54708,"Name":"C 019","Points":9311,"X":597,"Y":393,"Continent":"K35","Bonus":10,"PlayerID":6384450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062834Z"},{"ID":54709,"Name":"Sruniczna","Points":9821,"X":314,"Y":416,"Continent":"K43","Bonus":10,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062835Z"},{"ID":54710,"Name":"Sruniczna","Points":9835,"X":321,"Y":404,"Continent":"K43","Bonus":10,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062835Z"},{"ID":54711,"Name":"*166*","Points":8116,"X":348,"Y":408,"Continent":"K43","Bonus":10,"PlayerID":699273451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062836Z"},{"ID":54712,"Name":"Ręcznik do zmiany","Points":9854,"X":373,"Y":406,"Continent":"K43","Bonus":10,"PlayerID":699697558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062836Z"},{"ID":54713,"Name":"012","Points":9995,"X":379,"Y":405,"Continent":"K43","Bonus":10,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062837Z"},{"ID":54714,"Name":"Wioska runiczna","Points":3686,"X":309,"Y":429,"Continent":"K43","Bonus":10,"PlayerID":849099859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062838Z"},{"ID":54715,"Name":"magiczna flet","Points":10178,"X":336,"Y":427,"Continent":"K43","Bonus":10,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062838Z"},{"ID":54716,"Name":"magiczna flet","Points":10178,"X":346,"Y":422,"Continent":"K43","Bonus":10,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062839Z"},{"ID":54717,"Name":"M181_019","Points":8811,"X":359,"Y":434,"Continent":"K43","Bonus":10,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062839Z"},{"ID":54718,"Name":"magiczna flet","Points":10178,"X":390,"Y":427,"Continent":"K43","Bonus":10,"PlayerID":848918380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06284Z"},{"ID":54719,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":310,"Y":454,"Continent":"K43","Bonus":10,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06284Z"},{"ID":54720,"Name":"Wioska runiczna","Points":4092,"X":329,"Y":445,"Continent":"K43","Bonus":10,"PlayerID":849096547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062841Z"},{"ID":54721,"Name":"Wioska runiczna","Points":1501,"X":340,"Y":452,"Continent":"K43","Bonus":10,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062841Z"},{"ID":54722,"Name":"Kentin ufam Tobie","Points":10000,"X":370,"Y":452,"Continent":"K43","Bonus":10,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062842Z"},{"ID":54723,"Name":"s181eo25","Points":7531,"X":396,"Y":451,"Continent":"K43","Bonus":10,"PlayerID":393668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062842Z"},{"ID":54724,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":303,"Y":460,"Continent":"K43","Bonus":10,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062843Z"},{"ID":54725,"Name":"Wioska Bochuniczna10","Points":8549,"X":331,"Y":475,"Continent":"K43","Bonus":10,"PlayerID":7449254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062844Z"},{"ID":54726,"Name":"Kentin ufam Tobie","Points":10000,"X":340,"Y":470,"Continent":"K43","Bonus":10,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062844Z"},{"ID":54727,"Name":"A0257","Points":10362,"X":378,"Y":473,"Continent":"K43","Bonus":10,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062845Z"},{"ID":54728,"Name":"Wioska runiczna","Points":10047,"X":384,"Y":460,"Continent":"K43","Bonus":10,"PlayerID":698807570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062845Z"},{"ID":54729,"Name":"Dream on","Points":9697,"X":304,"Y":486,"Continent":"K43","Bonus":10,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062846Z"},{"ID":54730,"Name":"A0284","Points":10362,"X":330,"Y":484,"Continent":"K43","Bonus":10,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062846Z"},{"ID":54731,"Name":"Kentin ufam Tobie","Points":10000,"X":342,"Y":480,"Continent":"K43","Bonus":10,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062847Z"},{"ID":54732,"Name":"Mniejsze zƂo 0054","Points":7726,"X":378,"Y":484,"Continent":"K43","Bonus":10,"PlayerID":699794765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062847Z"},{"ID":54733,"Name":"Wioska runiczna","Points":6871,"X":393,"Y":497,"Continent":"K43","Bonus":10,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062848Z"},{"ID":54734,"Name":"zupeƂnie normalna wioska","Points":10997,"X":413,"Y":414,"Continent":"K44","Bonus":10,"PlayerID":699323302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062848Z"},{"ID":54735,"Name":"0000","Points":9348,"X":433,"Y":419,"Continent":"K44","Bonus":10,"PlayerID":3909522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062849Z"},{"ID":54736,"Name":"10003 runiczna","Points":9512,"X":444,"Y":417,"Continent":"K44","Bonus":10,"PlayerID":699431255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062849Z"},{"ID":54737,"Name":"Monetki","Points":9814,"X":477,"Y":410,"Continent":"K44","Bonus":10,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06285Z"},{"ID":54738,"Name":"Uwaga będę bronić! - Roman kazaƂ","Points":10178,"X":487,"Y":409,"Continent":"K44","Bonus":10,"PlayerID":699433558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06285Z"},{"ID":54739,"Name":"Wioska runiczna","Points":10093,"X":403,"Y":429,"Continent":"K44","Bonus":10,"PlayerID":7462660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062851Z"},{"ID":54740,"Name":"Wioska runiczna","Points":7726,"X":428,"Y":428,"Continent":"K44","Bonus":10,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062851Z"},{"ID":54741,"Name":"Wioska runiczna","Points":9188,"X":456,"Y":426,"Continent":"K44","Bonus":10,"PlayerID":9291984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062852Z"},{"ID":54742,"Name":"Monetki","Points":9814,"X":471,"Y":421,"Continent":"K44","Bonus":10,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062852Z"},{"ID":54743,"Name":"7.62 mm","Points":10019,"X":486,"Y":439,"Continent":"K44","Bonus":10,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062853Z"},{"ID":54744,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":408,"Y":459,"Continent":"K44","Bonus":10,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062854Z"},{"ID":54745,"Name":"Suppi","Points":9549,"X":437,"Y":450,"Continent":"K44","Bonus":10,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062855Z"},{"ID":54746,"Name":"Wioska runiczna","Points":8696,"X":446,"Y":458,"Continent":"K44","Bonus":10,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062855Z"},{"ID":54747,"Name":"Os Konfederacja","Points":9682,"X":469,"Y":449,"Continent":"K44","Bonus":10,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062856Z"},{"ID":54748,"Name":"BR01","Points":9503,"X":487,"Y":448,"Continent":"K44","Bonus":10,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062857Z"},{"ID":54749,"Name":"Kentin ufam Tobie","Points":10000,"X":404,"Y":478,"Continent":"K44","Bonus":10,"PlayerID":699783765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062857Z"},{"ID":54750,"Name":"KONFA TO MARKA, NARKA","Points":10290,"X":422,"Y":459,"Continent":"K44","Bonus":10,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062858Z"},{"ID":54751,"Name":"+44 74 Lyon Fourviere","Points":9705,"X":446,"Y":473,"Continent":"K44","Bonus":10,"PlayerID":698361257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062859Z"},{"ID":54752,"Name":"BR02","Points":10269,"X":476,"Y":470,"Continent":"K44","Bonus":10,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06286Z"},{"ID":54753,"Name":"124 Culiacan","Points":9761,"X":481,"Y":459,"Continent":"K44","Bonus":10,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06286Z"},{"ID":54754,"Name":"PRO8L3M","Points":7651,"X":411,"Y":492,"Continent":"K44","Bonus":10,"PlayerID":7491093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062861Z"},{"ID":54755,"Name":"SsSs","Points":10139,"X":423,"Y":487,"Continent":"K44","Bonus":10,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062862Z"},{"ID":54756,"Name":"035","Points":9741,"X":442,"Y":491,"Continent":"K44","Bonus":10,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062863Z"},{"ID":54757,"Name":"123 Mazatlan","Points":9761,"X":477,"Y":480,"Continent":"K44","Bonus":10,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062863Z"},{"ID":54758,"Name":"Pf Konfederacja","Points":9786,"X":486,"Y":483,"Continent":"K44","Bonus":10,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062864Z"},{"ID":54759,"Name":".:000:. Chillout","Points":9389,"X":500,"Y":405,"Continent":"K45","Bonus":10,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062864Z"},{"ID":54760,"Name":"Wioska runiczna","Points":9498,"X":535,"Y":402,"Continent":"K45","Bonus":10,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062865Z"},{"ID":54761,"Name":"Hhh","Points":10495,"X":540,"Y":409,"Continent":"K45","Bonus":10,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062865Z"},{"ID":54762,"Name":"133","Points":10311,"X":559,"Y":413,"Continent":"K45","Bonus":10,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062866Z"},{"ID":54763,"Name":"South K45","Points":8188,"X":582,"Y":400,"Continent":"K45","Bonus":10,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062866Z"},{"ID":54764,"Name":"Wioska runiczna","Points":8378,"X":501,"Y":421,"Continent":"K45","Bonus":10,"PlayerID":699658023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062867Z"},{"ID":54765,"Name":"PiekƂo to inni","Points":10160,"X":525,"Y":431,"Continent":"K45","Bonus":10,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062867Z"},{"ID":54766,"Name":".:095:. Chillout","Points":4769,"X":542,"Y":437,"Continent":"K45","Bonus":10,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062868Z"},{"ID":54767,"Name":"ADEN","Points":9140,"X":570,"Y":425,"Continent":"K45","Bonus":10,"PlayerID":698588535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062868Z"},{"ID":54768,"Name":"[354] Chorągiewka na wietrze","Points":9659,"X":585,"Y":436,"Continent":"K45","Bonus":10,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062869Z"},{"ID":54769,"Name":".:052:. Chillout","Points":3092,"X":519,"Y":443,"Continent":"K45","Bonus":10,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062869Z"},{"ID":54770,"Name":"229 Jakarta","Points":7840,"X":536,"Y":446,"Continent":"K45","Bonus":10,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06287Z"},{"ID":54771,"Name":"Wioska runiczna","Points":2196,"X":544,"Y":448,"Continent":"K45","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06287Z"},{"ID":54772,"Name":".....yhj","Points":4871,"X":576,"Y":446,"Continent":"K45","Bonus":10,"PlayerID":699368887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062871Z"},{"ID":54773,"Name":"056. Runa","Points":5063,"X":580,"Y":457,"Continent":"K45","Bonus":10,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062871Z"},{"ID":54774,"Name":"Szlachcic","Points":6048,"X":506,"Y":466,"Continent":"K45","Bonus":10,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062872Z"},{"ID":54775,"Name":"SINGAPUR","Points":6579,"X":537,"Y":472,"Continent":"K45","Bonus":10,"PlayerID":8155296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062873Z"},{"ID":54776,"Name":"016","Points":8403,"X":547,"Y":470,"Continent":"K45","Bonus":10,"PlayerID":699194766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062873Z"},{"ID":54777,"Name":"! Wioska runiczna","Points":8914,"X":562,"Y":461,"Continent":"K45","Bonus":10,"PlayerID":477415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062874Z"},{"ID":54778,"Name":"087. Runa","Points":2670,"X":587,"Y":459,"Continent":"K45","Bonus":10,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062874Z"},{"ID":54779,"Name":"126.","Points":6896,"X":512,"Y":486,"Continent":"K45","Bonus":10,"PlayerID":8788366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062875Z"},{"ID":54780,"Name":"[087]","Points":9476,"X":539,"Y":491,"Continent":"K45","Bonus":10,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062875Z"},{"ID":54781,"Name":"0061","Points":8091,"X":544,"Y":487,"Continent":"K45","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062876Z"},{"ID":54782,"Name":"~~LatającyHolender~~","Points":9555,"X":563,"Y":494,"Continent":"K45","Bonus":10,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062876Z"},{"ID":54783,"Name":"~~LatającyHolender~~","Points":9141,"X":581,"Y":489,"Continent":"K45","Bonus":10,"PlayerID":9174887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062877Z"},{"ID":54784,"Name":"Wioska runiczna","Points":2281,"X":614,"Y":400,"Continent":"K46","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062877Z"},{"ID":54785,"Name":"Wioska runiczna","Points":9825,"X":628,"Y":411,"Continent":"K46","Bonus":10,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062878Z"},{"ID":54786,"Name":"073- Mroczna Osada","Points":3047,"X":641,"Y":406,"Continent":"K46","Bonus":10,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062879Z"},{"ID":54787,"Name":"Wioska barbarzyƄska","Points":3845,"X":663,"Y":407,"Continent":"K46","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062879Z"},{"ID":54788,"Name":"Wioska barbarzyƄska","Points":10019,"X":698,"Y":400,"Continent":"K46","Bonus":10,"PlayerID":8675636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06288Z"},{"ID":54789,"Name":"#047.495|486","Points":9735,"X":614,"Y":437,"Continent":"K46","Bonus":10,"PlayerID":556154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06288Z"},{"ID":54790,"Name":"*0016 co to jest","Points":10315,"X":633,"Y":421,"Continent":"K46","Bonus":10,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062881Z"},{"ID":54791,"Name":"I076 Potrzymaj mi piwo","Points":10113,"X":658,"Y":439,"Continent":"K46","Bonus":10,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062881Z"},{"ID":54792,"Name":"Jehu_Kingdom_99","Points":6045,"X":664,"Y":426,"Continent":"K46","Bonus":10,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062882Z"},{"ID":54793,"Name":"Wioska runiczna","Points":7452,"X":684,"Y":425,"Continent":"K46","Bonus":10,"PlayerID":699738350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062883Z"},{"ID":54794,"Name":"055. Runa","Points":4889,"X":603,"Y":445,"Continent":"K46","Bonus":10,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062883Z"},{"ID":54795,"Name":"0051","Points":9258,"X":631,"Y":453,"Continent":"K46","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062884Z"},{"ID":54796,"Name":"Wioska runiczna","Points":10019,"X":643,"Y":446,"Continent":"K46","Bonus":10,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062884Z"},{"ID":54797,"Name":"I077","Points":10050,"X":660,"Y":446,"Continent":"K46","Bonus":10,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062885Z"},{"ID":54798,"Name":"I078","Points":9326,"X":686,"Y":453,"Continent":"K46","Bonus":10,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062885Z"},{"ID":54799,"Name":"041. Wioska runiczna","Points":9868,"X":608,"Y":469,"Continent":"K46","Bonus":10,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062886Z"},{"ID":54800,"Name":"040. Avennio","Points":10231,"X":625,"Y":463,"Continent":"K46","Bonus":10,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062886Z"},{"ID":54801,"Name":"Wioska runiczna","Points":7610,"X":656,"Y":462,"Continent":"K46","Bonus":10,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062887Z"},{"ID":54802,"Name":"072 Shimoda","Points":10054,"X":668,"Y":474,"Continent":"K46","Bonus":10,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062888Z"},{"ID":54803,"Name":"*028*","Points":8630,"X":679,"Y":464,"Continent":"K46","Bonus":10,"PlayerID":698670524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062888Z"},{"ID":54804,"Name":"Wioska runiczna","Points":10380,"X":600,"Y":482,"Continent":"K46","Bonus":10,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062889Z"},{"ID":54805,"Name":"031 runiczna","Points":10280,"X":632,"Y":494,"Continent":"K46","Bonus":10,"PlayerID":9238175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062889Z"},{"ID":54806,"Name":"Jehu_Kingdom_98","Points":4003,"X":658,"Y":492,"Continent":"K46","Bonus":10,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06289Z"},{"ID":54807,"Name":"062. Runa","Points":5066,"X":670,"Y":485,"Continent":"K46","Bonus":10,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06289Z"},{"ID":54808,"Name":"0119","Points":9825,"X":692,"Y":491,"Continent":"K46","Bonus":10,"PlayerID":699429153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062891Z"},{"ID":54809,"Name":"C0012","Points":10362,"X":306,"Y":518,"Continent":"K53","Bonus":10,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062892Z"},{"ID":54810,"Name":"015.Wioska runiczna","Points":4334,"X":334,"Y":506,"Continent":"K53","Bonus":10,"PlayerID":1830149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062892Z"},{"ID":54811,"Name":"The Game Has Only Just Begun","Points":9976,"X":348,"Y":512,"Continent":"K53","Bonus":10,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062893Z"},{"ID":54812,"Name":"Wioska runiczna","Points":3483,"X":369,"Y":503,"Continent":"K53","Bonus":10,"PlayerID":699265922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062893Z"},{"ID":54813,"Name":"Wioska","Points":10178,"X":392,"Y":502,"Continent":"K53","Bonus":10,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062894Z"},{"ID":54814,"Name":"C0179","Points":10362,"X":301,"Y":526,"Continent":"K53","Bonus":10,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062895Z"},{"ID":54815,"Name":"Chekku - meito","Points":9976,"X":339,"Y":521,"Continent":"K53","Bonus":10,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062895Z"},{"ID":54816,"Name":"Chekku - meito","Points":9976,"X":342,"Y":529,"Continent":"K53","Bonus":10,"PlayerID":9280477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062896Z"},{"ID":54817,"Name":"Wioska runiczna","Points":8766,"X":362,"Y":521,"Continent":"K53","Bonus":10,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062896Z"},{"ID":54818,"Name":"Wioska","Points":10178,"X":384,"Y":538,"Continent":"K53","Bonus":10,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062897Z"},{"ID":54819,"Name":"Wioska barbarzyƄska","Points":3780,"X":304,"Y":558,"Continent":"K53","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062897Z"},{"ID":54820,"Name":"Wioska barbarzyƄska","Points":1867,"X":322,"Y":547,"Continent":"K53","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062898Z"},{"ID":54821,"Name":"Jestem Poza Kontrolą","Points":8221,"X":356,"Y":548,"Continent":"K53","Bonus":10,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062898Z"},{"ID":54822,"Name":"042","Points":9032,"X":362,"Y":541,"Continent":"K53","Bonus":10,"PlayerID":8908002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062899Z"},{"ID":54823,"Name":"Wioska","Points":10178,"X":384,"Y":543,"Continent":"K53","Bonus":10,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062899Z"},{"ID":54824,"Name":"Psycho to Marka, Narka !","Points":6083,"X":319,"Y":575,"Continent":"K53","Bonus":10,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0629Z"},{"ID":54825,"Name":"(017)Shattered Plains","Points":8149,"X":326,"Y":567,"Continent":"K53","Bonus":10,"PlayerID":849098695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0629Z"},{"ID":54826,"Name":"x004","Points":8569,"X":357,"Y":565,"Continent":"K53","Bonus":10,"PlayerID":9264752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062901Z"},{"ID":54827,"Name":"076 Wioska runiczna","Points":9540,"X":373,"Y":575,"Continent":"K53","Bonus":10,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062901Z"},{"ID":54828,"Name":"Wioska runiczna","Points":9362,"X":398,"Y":563,"Continent":"K53","Bonus":10,"PlayerID":9167250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062902Z"},{"ID":54829,"Name":"Wioska runiczna","Points":2537,"X":317,"Y":593,"Continent":"K53","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062902Z"},{"ID":54830,"Name":"Wioska runiczna","Points":2537,"X":339,"Y":583,"Continent":"K53","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062903Z"},{"ID":54831,"Name":"Myk i do kieszonki","Points":9032,"X":351,"Y":583,"Continent":"K53","Bonus":10,"PlayerID":9319058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062903Z"},{"ID":54832,"Name":"21. GaraĆŒ u boryƂy","Points":8957,"X":372,"Y":597,"Continent":"K53","Bonus":10,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062904Z"},{"ID":54833,"Name":"Pobozowisko","Points":10242,"X":386,"Y":583,"Continent":"K53","Bonus":10,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062904Z"},{"ID":54834,"Name":"093","Points":10129,"X":402,"Y":514,"Continent":"K54","Bonus":10,"PlayerID":699851427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062905Z"},{"ID":54835,"Name":"Zdecydowanie nie Wioska runiczna","Points":10042,"X":422,"Y":512,"Continent":"K54","Bonus":10,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062906Z"},{"ID":54836,"Name":"Wioska runiczna","Points":5013,"X":450,"Y":501,"Continent":"K54","Bonus":10,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062906Z"},{"ID":54837,"Name":"232 Kair","Points":2868,"X":467,"Y":503,"Continent":"K54","Bonus":10,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062907Z"},{"ID":54838,"Name":"Wioska runiczna","Points":2537,"X":482,"Y":510,"Continent":"K54","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062907Z"},{"ID":54839,"Name":"Wioska runiczna","Points":9410,"X":411,"Y":533,"Continent":"K54","Bonus":10,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062908Z"},{"ID":54840,"Name":"Suppi","Points":9549,"X":439,"Y":523,"Continent":"K54","Bonus":10,"PlayerID":699856962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062908Z"},{"ID":54841,"Name":"Winter is coming","Points":9533,"X":445,"Y":537,"Continent":"K54","Bonus":10,"PlayerID":698971484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062909Z"},{"ID":54842,"Name":"Wioska runiczna","Points":2537,"X":467,"Y":538,"Continent":"K54","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062909Z"},{"ID":54843,"Name":"Wioska runiczna","Points":8921,"X":494,"Y":520,"Continent":"K54","Bonus":10,"PlayerID":848967710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06291Z"},{"ID":54844,"Name":"144 Wioska runiczna","Points":8655,"X":401,"Y":550,"Continent":"K54","Bonus":10,"PlayerID":699382126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06291Z"},{"ID":54845,"Name":"Zdecydowanie nie Wioska runiczna","Points":4494,"X":429,"Y":543,"Continent":"K54","Bonus":10,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062911Z"},{"ID":54846,"Name":"NOT?","Points":4149,"X":444,"Y":553,"Continent":"K54","Bonus":10,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062912Z"},{"ID":54847,"Name":"0343","Points":8351,"X":469,"Y":559,"Continent":"K54","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062912Z"},{"ID":54848,"Name":"#0083 Runa","Points":9488,"X":490,"Y":559,"Continent":"K54","Bonus":10,"PlayerID":9272054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062913Z"},{"ID":54849,"Name":"Wioska runiczna","Points":6152,"X":403,"Y":574,"Continent":"K54","Bonus":10,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062913Z"},{"ID":54850,"Name":"IIIIIII","Points":10495,"X":427,"Y":577,"Continent":"K54","Bonus":10,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062914Z"},{"ID":54851,"Name":"Nuniczna","Points":9088,"X":457,"Y":569,"Continent":"K54","Bonus":10,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062914Z"},{"ID":54852,"Name":"Wioska runiczna","Points":1514,"X":478,"Y":570,"Continent":"K54","Bonus":10,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062915Z"},{"ID":54853,"Name":"Wioska runiczna","Points":2105,"X":487,"Y":572,"Continent":"K54","Bonus":10,"PlayerID":8539216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062916Z"},{"ID":54854,"Name":"Pobozowisko","Points":6724,"X":405,"Y":594,"Continent":"K54","Bonus":10,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062916Z"},{"ID":54855,"Name":"JJJJJ","Points":10495,"X":429,"Y":586,"Continent":"K54","Bonus":10,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062917Z"},{"ID":54856,"Name":"0551","Points":5726,"X":442,"Y":588,"Continent":"K54","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062918Z"},{"ID":54857,"Name":"Madzia","Points":8567,"X":469,"Y":582,"Continent":"K54","Bonus":10,"PlayerID":2585846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062918Z"},{"ID":54858,"Name":"Wioska runiczna","Points":8784,"X":489,"Y":586,"Continent":"K54","Bonus":10,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062919Z"},{"ID":54859,"Name":"Lord Arsey KING","Points":10285,"X":517,"Y":506,"Continent":"K55","Bonus":10,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06292Z"},{"ID":54860,"Name":"Wioska 14","Points":8441,"X":526,"Y":511,"Continent":"K55","Bonus":10,"PlayerID":699385139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06292Z"},{"ID":54861,"Name":"[129]","Points":9489,"X":541,"Y":500,"Continent":"K55","Bonus":10,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062921Z"},{"ID":54862,"Name":"Nitro","Points":10450,"X":569,"Y":503,"Continent":"K55","Bonus":10,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062921Z"},{"ID":54863,"Name":"[032] Te occidere","Points":10633,"X":582,"Y":511,"Continent":"K55","Bonus":10,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062922Z"},{"ID":54864,"Name":"0071 runiczna","Points":10495,"X":517,"Y":531,"Continent":"K55","Bonus":10,"PlayerID":699432672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062923Z"},{"ID":54865,"Name":"JaamMwG 026","Points":9881,"X":526,"Y":528,"Continent":"K55","Bonus":10,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062923Z"},{"ID":54866,"Name":"Lord Arsey KING","Points":10285,"X":546,"Y":532,"Continent":"K55","Bonus":10,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062924Z"},{"ID":54867,"Name":"[127]","Points":9881,"X":567,"Y":534,"Continent":"K55","Bonus":10,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062924Z"},{"ID":54868,"Name":"[033] Nogalinat tevi","Points":10390,"X":580,"Y":530,"Continent":"K55","Bonus":10,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062925Z"},{"ID":54869,"Name":"Yogi","Points":8550,"X":511,"Y":554,"Continent":"K55","Bonus":10,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062925Z"},{"ID":54870,"Name":"Wioska runiczna","Points":8724,"X":530,"Y":543,"Continent":"K55","Bonus":10,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062926Z"},{"ID":54871,"Name":"[123]","Points":9740,"X":558,"Y":556,"Continent":"K55","Bonus":10,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062926Z"},{"ID":54872,"Name":"[130]","Points":9183,"X":563,"Y":550,"Continent":"K55","Bonus":10,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062927Z"},{"ID":54873,"Name":"Let It Be","Points":9445,"X":591,"Y":558,"Continent":"K55","Bonus":10,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062928Z"},{"ID":54874,"Name":"Wioska runiczna","Points":9840,"X":501,"Y":560,"Continent":"K55","Bonus":10,"PlayerID":3613413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062928Z"},{"ID":54875,"Name":"Wioska runiczna","Points":9740,"X":521,"Y":565,"Continent":"K55","Bonus":10,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062929Z"},{"ID":54876,"Name":"[150]","Points":9106,"X":555,"Y":576,"Continent":"K55","Bonus":10,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06293Z"},{"ID":54877,"Name":"Runiczny Ronin?","Points":10311,"X":561,"Y":563,"Continent":"K55","Bonus":10,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06293Z"},{"ID":54878,"Name":"0028 MzM","Points":9258,"X":597,"Y":559,"Continent":"K55","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062931Z"},{"ID":54879,"Name":"#0100","Points":10495,"X":500,"Y":594,"Continent":"K55","Bonus":10,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062932Z"},{"ID":54880,"Name":"- 153 -","Points":10000,"X":535,"Y":581,"Continent":"K55","Bonus":10,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062933Z"},{"ID":54881,"Name":"Wioska runiczna","Points":10311,"X":554,"Y":586,"Continent":"K55","Bonus":10,"PlayerID":699784536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062934Z"},{"ID":54882,"Name":"Lord Arsey KING","Points":10285,"X":572,"Y":591,"Continent":"K55","Bonus":10,"PlayerID":848956513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062935Z"},{"ID":54883,"Name":"0037 MzM","Points":9060,"X":597,"Y":593,"Continent":"K55","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062935Z"},{"ID":54884,"Name":"SiƂa, Masa, RzeĆșba 09","Points":10362,"X":611,"Y":513,"Continent":"K56","Bonus":10,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062936Z"},{"ID":54885,"Name":"056 ƁódĆș","Points":10297,"X":638,"Y":514,"Continent":"K56","Bonus":10,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062937Z"},{"ID":54886,"Name":"Wioska runiczna","Points":9279,"X":651,"Y":517,"Continent":"K56","Bonus":10,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062938Z"},{"ID":54887,"Name":"Wioska runiczna","Points":9097,"X":670,"Y":509,"Continent":"K56","Bonus":10,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062938Z"},{"ID":54888,"Name":"WƂadcy PóƂnocy 02","Points":10474,"X":685,"Y":503,"Continent":"K56","Bonus":10,"PlayerID":699379895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062939Z"},{"ID":54889,"Name":"Wioska runiczna","Points":9786,"X":614,"Y":527,"Continent":"K56","Bonus":10,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06294Z"},{"ID":54890,"Name":"Wioska runiczna","Points":9786,"X":622,"Y":533,"Continent":"K56","Bonus":10,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06294Z"},{"ID":54891,"Name":"Wioska runiczna","Points":9068,"X":641,"Y":534,"Continent":"K56","Bonus":10,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062941Z"},{"ID":54892,"Name":"Wioska runiczna","Points":4544,"X":677,"Y":537,"Continent":"K56","Bonus":10,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062941Z"},{"ID":54893,"Name":"LAST !!!","Points":7414,"X":686,"Y":527,"Continent":"K56","Bonus":10,"PlayerID":1563417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062942Z"},{"ID":54894,"Name":"0027 MzM","Points":9258,"X":604,"Y":557,"Continent":"K56","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062942Z"},{"ID":54895,"Name":"Wioska runiczna","Points":7883,"X":629,"Y":552,"Continent":"K56","Bonus":10,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062943Z"},{"ID":54896,"Name":"TWIERDZA .:064:.","Points":10019,"X":655,"Y":559,"Continent":"K56","Bonus":10,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062944Z"},{"ID":54897,"Name":"TWIERDZA .:058:.","Points":9326,"X":663,"Y":555,"Continent":"K56","Bonus":10,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062944Z"},{"ID":54898,"Name":"Wioska runiczna","Points":4222,"X":697,"Y":543,"Continent":"K56","Bonus":10,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062945Z"},{"ID":54899,"Name":"Wioska runiczna","Points":9740,"X":616,"Y":565,"Continent":"K56","Bonus":10,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062945Z"},{"ID":54900,"Name":"Wioska runiczna","Points":7665,"X":630,"Y":564,"Continent":"K56","Bonus":10,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062946Z"},{"ID":54901,"Name":"TWIERDZA .:059:.","Points":9430,"X":659,"Y":561,"Continent":"K56","Bonus":10,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062946Z"},{"ID":54902,"Name":"044. Wioska runiczna","Points":10083,"X":667,"Y":577,"Continent":"K56","Bonus":10,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062947Z"},{"ID":54903,"Name":"TWIERDZA .:057:.","Points":9709,"X":695,"Y":569,"Continent":"K56","Bonus":10,"PlayerID":7154207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062948Z"},{"ID":54904,"Name":"0042 MzM","Points":9151,"X":604,"Y":592,"Continent":"K56","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062948Z"},{"ID":54905,"Name":"PUSTO","Points":6158,"X":624,"Y":584,"Continent":"K56","Bonus":10,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062949Z"},{"ID":54906,"Name":"042. Wioska runiczna","Points":10083,"X":642,"Y":595,"Continent":"K56","Bonus":10,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062949Z"},{"ID":54907,"Name":"043. Wioska runiczna","Points":10083,"X":670,"Y":583,"Continent":"K56","Bonus":10,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06295Z"},{"ID":54908,"Name":"045. Wioska runiczna","Points":10083,"X":693,"Y":579,"Continent":"K56","Bonus":10,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06295Z"},{"ID":54909,"Name":"Pobozowisko","Points":9008,"X":409,"Y":608,"Continent":"K64","Bonus":10,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062951Z"},{"ID":54910,"Name":"Wioska runiczna","Points":3602,"X":431,"Y":617,"Continent":"K64","Bonus":10,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062951Z"},{"ID":54911,"Name":"035","Points":10311,"X":442,"Y":619,"Continent":"K64","Bonus":10,"PlayerID":849084985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062952Z"},{"ID":54912,"Name":"081","Points":7507,"X":468,"Y":617,"Continent":"K64","Bonus":10,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062952Z"},{"ID":54913,"Name":"Wioska runiczna","Points":9740,"X":491,"Y":617,"Continent":"K64","Bonus":10,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062953Z"},{"ID":54914,"Name":"Wioska sobie 014","Points":10301,"X":402,"Y":639,"Continent":"K64","Bonus":10,"PlayerID":7349282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062954Z"},{"ID":54915,"Name":"0022 Wioska runiczna","Points":2881,"X":424,"Y":635,"Continent":"K64","Bonus":10,"PlayerID":9060641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062954Z"},{"ID":54916,"Name":"Wioska runiczna","Points":7352,"X":457,"Y":624,"Continent":"K64","Bonus":10,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062955Z"},{"ID":54917,"Name":"082","Points":5947,"X":469,"Y":624,"Continent":"K64","Bonus":10,"PlayerID":699336777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062955Z"},{"ID":54918,"Name":"Wioska runiczna","Points":9577,"X":486,"Y":628,"Continent":"K64","Bonus":10,"PlayerID":699494488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062956Z"},{"ID":54919,"Name":"Wioska runiczna","Points":2494,"X":409,"Y":656,"Continent":"K64","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062956Z"},{"ID":54920,"Name":"Wioska runiczna","Points":2537,"X":429,"Y":658,"Continent":"K64","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062957Z"},{"ID":54921,"Name":"Wioska runiczna","Points":2537,"X":440,"Y":656,"Continent":"K64","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062957Z"},{"ID":54922,"Name":"042|| Delphinus","Points":9761,"X":475,"Y":652,"Continent":"K64","Bonus":10,"PlayerID":849035525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062958Z"},{"ID":54923,"Name":"Ave Why!","Points":9772,"X":495,"Y":642,"Continent":"K64","Bonus":10,"PlayerID":698585370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062959Z"},{"ID":54924,"Name":"Wioska runiczna","Points":2537,"X":411,"Y":659,"Continent":"K64","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062959Z"},{"ID":54925,"Name":"Wioska runiczna","Points":8111,"X":426,"Y":668,"Continent":"K64","Bonus":10,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06296Z"},{"ID":54926,"Name":"Wioska runiczna","Points":2537,"X":440,"Y":660,"Continent":"K64","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06296Z"},{"ID":54927,"Name":"018 Wioska runiczna","Points":5326,"X":474,"Y":665,"Continent":"K64","Bonus":10,"PlayerID":699834004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062961Z"},{"ID":54928,"Name":"|040| Wioska runiczna K64","Points":10160,"X":494,"Y":672,"Continent":"K64","Bonus":10,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062961Z"},{"ID":54929,"Name":"Wioska runiczna","Points":9551,"X":410,"Y":681,"Continent":"K64","Bonus":10,"PlayerID":699736927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062962Z"},{"ID":54930,"Name":"New World","Points":10315,"X":438,"Y":682,"Continent":"K64","Bonus":10,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062962Z"},{"ID":54931,"Name":"A19","Points":4051,"X":447,"Y":694,"Continent":"K64","Bonus":10,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062963Z"},{"ID":54932,"Name":"B09","Points":5046,"X":460,"Y":686,"Continent":"K64","Bonus":10,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062963Z"},{"ID":54933,"Name":"A007 RUN","Points":10824,"X":491,"Y":680,"Continent":"K64","Bonus":10,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062964Z"},{"ID":54934,"Name":"0344","Points":9911,"X":519,"Y":601,"Continent":"K65","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062964Z"},{"ID":54935,"Name":"Mako Reactor 1 - B1F","Points":9885,"X":525,"Y":612,"Continent":"K65","Bonus":10,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062965Z"},{"ID":54936,"Name":"Wioska runiczna","Points":10238,"X":559,"Y":601,"Continent":"K65","Bonus":10,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062965Z"},{"ID":54937,"Name":"Wioska runiczna","Points":2281,"X":573,"Y":619,"Continent":"K65","Bonus":10,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062966Z"},{"ID":54938,"Name":"Wioska runiczna","Points":9853,"X":583,"Y":606,"Continent":"K65","Bonus":10,"PlayerID":699342219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062966Z"},{"ID":54939,"Name":"SSJ 056","Points":9761,"X":505,"Y":630,"Continent":"K65","Bonus":10,"PlayerID":699364813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062967Z"},{"ID":54940,"Name":"Lower Level - Corporate Archives","Points":10224,"X":521,"Y":621,"Continent":"K65","Bonus":10,"PlayerID":8199417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062968Z"},{"ID":54941,"Name":"0345","Points":9911,"X":541,"Y":624,"Continent":"K65","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062968Z"},{"ID":54942,"Name":"Yogi","Points":8366,"X":576,"Y":639,"Continent":"K65","Bonus":10,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062969Z"},{"ID":54943,"Name":"0099","Points":8097,"X":589,"Y":630,"Continent":"K65","Bonus":10,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062969Z"},{"ID":54944,"Name":"0530","Points":10362,"X":519,"Y":658,"Continent":"K65","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06297Z"},{"ID":54945,"Name":"0346","Points":10019,"X":535,"Y":644,"Continent":"K65","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06297Z"},{"ID":54946,"Name":"yogi","Points":8036,"X":556,"Y":641,"Continent":"K65","Bonus":10,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062971Z"},{"ID":54947,"Name":"Yogi","Points":8899,"X":562,"Y":640,"Continent":"K65","Bonus":10,"PlayerID":2808172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062971Z"},{"ID":54948,"Name":"Sony 911","Points":10201,"X":590,"Y":643,"Continent":"K65","Bonus":10,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062972Z"},{"ID":54949,"Name":"029. Wioska runiczna","Points":6092,"X":518,"Y":668,"Continent":"K65","Bonus":10,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062972Z"},{"ID":54950,"Name":"0531","Points":10362,"X":521,"Y":666,"Continent":"K65","Bonus":10,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062973Z"},{"ID":54951,"Name":"Wioska runiczna","Points":10238,"X":556,"Y":669,"Continent":"K65","Bonus":10,"PlayerID":848915531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062974Z"},{"ID":54952,"Name":"005. Wioska runiczna","Points":4380,"X":574,"Y":664,"Continent":"K65","Bonus":10,"PlayerID":1270916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062974Z"},{"ID":54953,"Name":"Wioska runiczna","Points":4235,"X":585,"Y":670,"Continent":"K65","Bonus":10,"PlayerID":849031846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062975Z"},{"ID":54954,"Name":"031. Wioska runiczna","Points":9199,"X":507,"Y":685,"Continent":"K65","Bonus":10,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062975Z"},{"ID":54955,"Name":"- 156 - SS","Points":10000,"X":538,"Y":693,"Continent":"K65","Bonus":10,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062976Z"},{"ID":54956,"Name":"- 158 - SS","Points":10000,"X":545,"Y":695,"Continent":"K65","Bonus":10,"PlayerID":849018239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062976Z"},{"ID":54957,"Name":"nr5","Points":7631,"X":576,"Y":680,"Continent":"K65","Bonus":10,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062977Z"},{"ID":54958,"Name":"nr6","Points":2787,"X":588,"Y":692,"Continent":"K65","Bonus":10,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062978Z"},{"ID":54959,"Name":"C0253","Points":4263,"X":273,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062978Z"},{"ID":54960,"Name":"Bunu1","Points":1433,"X":310,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":849050087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062979Z"},{"ID":54961,"Name":"New WorldA","Points":2439,"X":281,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062979Z"},{"ID":54962,"Name":"KONFA TO MARKA, NARKA","Points":3355,"X":292,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06298Z"},{"ID":54963,"Name":"042.xxx","Points":1158,"X":486,"Y":611,"Continent":"K64","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06298Z"},{"ID":54964,"Name":"Psycha Siada","Points":4681,"X":331,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062981Z"},{"ID":54965,"Name":"New WorldA","Points":1364,"X":272,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062982Z"},{"ID":54967,"Name":"Wioska barbarzyƄska","Points":2469,"X":400,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062982Z"},{"ID":54968,"Name":"Wioska barbarzyƄska","Points":5129,"X":691,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062983Z"},{"ID":54969,"Name":"|D| IS","Points":1857,"X":458,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062983Z"},{"ID":54970,"Name":"C0292","Points":3733,"X":277,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062984Z"},{"ID":54971,"Name":"017 - Budowanko!","Points":6569,"X":492,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062984Z"},{"ID":54972,"Name":"Nowa 62","Points":3393,"X":698,"Y":602,"Continent":"K66","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062985Z"},{"ID":54973,"Name":"Wioska barbarzyƄska","Points":127,"X":407,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062986Z"},{"ID":54974,"Name":"Wiocha 4","Points":8325,"X":555,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062986Z"},{"ID":54975,"Name":"181*6","Points":3763,"X":696,"Y":426,"Continent":"K46","Bonus":0,"PlayerID":849101881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062987Z"},{"ID":54976,"Name":"New WorldA","Points":2370,"X":276,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062987Z"},{"ID":54977,"Name":"Wioska pinkolinka","Points":5708,"X":375,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":849035447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062988Z"},{"ID":54978,"Name":"KASHYYYK 1","Points":2132,"X":568,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062988Z"},{"ID":54979,"Name":"ostr","Points":4563,"X":391,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":3842862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062989Z"},{"ID":54980,"Name":"004","Points":9740,"X":291,"Y":422,"Continent":"K42","Bonus":8,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06299Z"},{"ID":54981,"Name":"Zwolin","Points":5603,"X":285,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":699754856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06299Z"},{"ID":54982,"Name":"Ć»aneta","Points":4244,"X":682,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062991Z"},{"ID":54983,"Name":"D015","Points":3154,"X":563,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062992Z"},{"ID":54984,"Name":"062 Wioska barbarzyƄska","Points":2987,"X":346,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062992Z"},{"ID":54985,"Name":"Wioska LastWish","Points":645,"X":382,"Y":699,"Continent":"K63","Bonus":0,"PlayerID":698785538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062993Z"},{"ID":54986,"Name":"komandos","Points":5428,"X":664,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062993Z"},{"ID":54987,"Name":"236...NORTH","Points":4263,"X":437,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062994Z"},{"ID":54988,"Name":"#008","Points":6584,"X":554,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062994Z"},{"ID":54989,"Name":"030","Points":2272,"X":685,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062995Z"},{"ID":54990,"Name":"Wioska gall1","Points":3187,"X":271,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062995Z"},{"ID":54991,"Name":"ObrzeĆŒe","Points":8815,"X":603,"Y":708,"Continent":"K76","Bonus":2,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062996Z"},{"ID":54992,"Name":"Aa5","Points":1282,"X":589,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062996Z"},{"ID":54993,"Name":"Wioska barbarzyƄska","Points":2761,"X":536,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062997Z"},{"ID":54994,"Name":"05 bukai","Points":2350,"X":634,"Y":322,"Continent":"K36","Bonus":9,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062998Z"},{"ID":54995,"Name":"Wioska skubana123","Points":571,"X":709,"Y":398,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062998Z"},{"ID":54996,"Name":"Wioska dextermorgan","Points":609,"X":698,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062999Z"},{"ID":54997,"Name":"????","Points":4481,"X":473,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.062999Z"},{"ID":54998,"Name":"104. Wioska pawelec123","Points":1210,"X":731,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063Z"},{"ID":54999,"Name":"0063.","Points":10345,"X":454,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063Z"},{"ID":55000,"Name":"New World","Points":6926,"X":427,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063001Z"},{"ID":55001,"Name":"Wioska barbarzyƄska","Points":4384,"X":666,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063001Z"},{"ID":55002,"Name":"HenrykĂłw","Points":2104,"X":585,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":6674092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063002Z"},{"ID":55003,"Name":"ZZZ .::. cinek3456/11","Points":2058,"X":586,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063002Z"},{"ID":55004,"Name":"Wioska z Pracza 5","Points":1293,"X":307,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063003Z"},{"ID":55005,"Name":"Wioska barbarzyƄska","Points":1852,"X":729,"Y":542,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063003Z"},{"ID":55006,"Name":"Wilczy Szaniec","Points":4717,"X":460,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":698738810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063004Z"},{"ID":55007,"Name":"04Wioska barbarzyƄska","Points":7786,"X":359,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063004Z"},{"ID":55008,"Name":"Nowe Dobra - budowa","Points":5404,"X":685,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063005Z"},{"ID":55009,"Name":"Kapitol_12","Points":5823,"X":495,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063006Z"},{"ID":55010,"Name":"Wioska Jori","Points":5970,"X":326,"Y":435,"Continent":"K43","Bonus":0,"PlayerID":289542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063007Z"},{"ID":55011,"Name":"B013","Points":3542,"X":530,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063007Z"},{"ID":55012,"Name":"Wioska barbarzyƄska","Points":1191,"X":683,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063008Z"},{"ID":55013,"Name":"#132#","Points":3021,"X":661,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063009Z"},{"ID":55014,"Name":"FP044","Points":4112,"X":464,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063009Z"},{"ID":55015,"Name":"X.01","Points":8475,"X":727,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06301Z"},{"ID":55016,"Name":"Nowy 0004","Points":1164,"X":284,"Y":587,"Continent":"K52","Bonus":1,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063011Z"},{"ID":55017,"Name":"Wioska barbarzyƄska","Points":6012,"X":723,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063011Z"},{"ID":55018,"Name":"MojeDnoToWaszSzczyt","Points":9945,"X":505,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063012Z"},{"ID":55019,"Name":"Wioska barbarzyƄska","Points":781,"X":343,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063013Z"},{"ID":55020,"Name":"K67 Polis","Points":5687,"X":701,"Y":613,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063014Z"},{"ID":55021,"Name":"Wioska barbarzyƄska","Points":3250,"X":724,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063014Z"},{"ID":55022,"Name":"Wioska bart1234","Points":226,"X":724,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063015Z"},{"ID":55023,"Name":"ZƂoty ƚwit","Points":5156,"X":591,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063015Z"},{"ID":55024,"Name":"K67 29","Points":2867,"X":706,"Y":607,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063016Z"},{"ID":55025,"Name":"Wioska barbarzyƄska","Points":3589,"X":715,"Y":418,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063017Z"},{"ID":55027,"Name":"XDX","Points":3777,"X":601,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063017Z"},{"ID":55028,"Name":"C-002","Points":4939,"X":324,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063018Z"},{"ID":55029,"Name":"Wioska barbarzyƄska","Points":4852,"X":372,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063018Z"},{"ID":55030,"Name":"Wioska barbarzyƄska","Points":3449,"X":718,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063019Z"},{"ID":55032,"Name":"Wioska barbarzyƄska","Points":3129,"X":683,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063019Z"},{"ID":55033,"Name":"Minas Tirith","Points":8983,"X":300,"Y":613,"Continent":"K63","Bonus":0,"PlayerID":849100796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06302Z"},{"ID":55034,"Name":"008 olk","Points":2740,"X":276,"Y":552,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06302Z"},{"ID":55035,"Name":"wyb...","Points":3639,"X":604,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063021Z"},{"ID":55037,"Name":"Wioska barbarzyƄska","Points":169,"X":379,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063021Z"},{"ID":55038,"Name":"Wioska barbarzyƄska","Points":1759,"X":684,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063022Z"},{"ID":55039,"Name":"[839] Odludzie","Points":5106,"X":719,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063023Z"},{"ID":55040,"Name":"Wioska barbarzyƄska","Points":6351,"X":651,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063023Z"},{"ID":55041,"Name":"0658","Points":4497,"X":588,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063024Z"},{"ID":55042,"Name":"Nowa 59","Points":4061,"X":713,"Y":592,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063024Z"},{"ID":55043,"Name":"Zorza","Points":3905,"X":708,"Y":414,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063025Z"},{"ID":55044,"Name":"Poznan 002","Points":985,"X":412,"Y":285,"Continent":"K24","Bonus":7,"PlayerID":1924718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063025Z"},{"ID":55045,"Name":"KONFA TO MARKA, NARKA","Points":4197,"X":282,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063026Z"},{"ID":55046,"Name":"034.Gloria Victis","Points":4305,"X":280,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063027Z"},{"ID":55047,"Name":"Wioska barbarzyƄska","Points":881,"X":320,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063027Z"},{"ID":55048,"Name":"ƚwieradĂłw","Points":1006,"X":296,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063028Z"},{"ID":55049,"Name":"B001","Points":3679,"X":680,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063028Z"},{"ID":55050,"Name":"Wioska barbarzyƄska","Points":780,"X":596,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":849101409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063029Z"},{"ID":55051,"Name":"Wioska barbarzyƄska","Points":1880,"X":578,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063029Z"},{"ID":55052,"Name":"Wioska barbarzyƄska","Points":398,"X":319,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06303Z"},{"ID":55053,"Name":"Wioska barbarzyƄskaE","Points":857,"X":292,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063031Z"},{"ID":55054,"Name":"#0078","Points":3833,"X":572,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063031Z"},{"ID":55055,"Name":"Odour de camembert","Points":5180,"X":614,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":849109116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063032Z"},{"ID":55056,"Name":"I001A","Points":1944,"X":692,"Y":382,"Continent":"K36","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063033Z"},{"ID":55057,"Name":"Wioska barbarzyƄska","Points":563,"X":375,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063033Z"},{"ID":55059,"Name":"B020","Points":4078,"X":629,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063034Z"},{"ID":55060,"Name":"0019 Wioska barbarzyƄska","Points":905,"X":489,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063034Z"},{"ID":55061,"Name":"New WorldA","Points":2008,"X":270,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063035Z"},{"ID":55062,"Name":"Osada koczownikĂłw","Points":3671,"X":404,"Y":289,"Continent":"K24","Bonus":7,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063035Z"},{"ID":55063,"Name":"Wioska barbarzyƄska","Points":9362,"X":717,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063036Z"},{"ID":55065,"Name":"Wiocha 5","Points":8818,"X":559,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063036Z"},{"ID":55066,"Name":"Wioska barbarzyƄska","Points":7240,"X":439,"Y":587,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063037Z"},{"ID":55067,"Name":"t025","Points":2090,"X":666,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063038Z"},{"ID":55068,"Name":"Jehu_Kingdom_68","Points":908,"X":714,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063038Z"},{"ID":55069,"Name":"ƚw181*005","Points":1844,"X":663,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063039Z"},{"ID":55070,"Name":"O106","Points":1092,"X":309,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063039Z"},{"ID":55071,"Name":"Wioska barbarzyƄska","Points":2559,"X":391,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06304Z"},{"ID":55072,"Name":"Wioska barbarzyƄska (malwin)","Points":1722,"X":278,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.06304Z"},{"ID":55073,"Name":"osada 4","Points":2184,"X":663,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":7357503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063041Z"},{"ID":55074,"Name":"40. EZETH","Points":3624,"X":680,"Y":497,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063042Z"},{"ID":55075,"Name":"Wioska barbarzyƄska","Points":3102,"X":731,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063042Z"},{"ID":55076,"Name":"02Wioska barbarzyƄska","Points":7464,"X":360,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063043Z"},{"ID":55077,"Name":"XDX","Points":3692,"X":603,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063043Z"},{"ID":55078,"Name":"#202 C","Points":4158,"X":515,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063044Z"},{"ID":55080,"Name":"-22-","Points":3880,"X":590,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063044Z"},{"ID":55081,"Name":"Wioska a6","Points":1817,"X":432,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063045Z"},{"ID":55082,"Name":"101 Wioska barbarzyƄska","Points":4327,"X":576,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.063045Z"},{"ID":55083,"Name":"41. Justys3828","Points":2280,"X":673,"Y":489,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093071Z"},{"ID":55084,"Name":"PPF-22","Points":2774,"X":536,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093072Z"},{"ID":55086,"Name":"Avanti!","Points":2594,"X":275,"Y":467,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093073Z"},{"ID":55088,"Name":"Wioska oracz1","Points":8435,"X":480,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":260666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093074Z"},{"ID":55089,"Name":"043 Wioska barbarzyƄska","Points":9835,"X":544,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093074Z"},{"ID":55090,"Name":"Wioska barbarzyƄska","Points":394,"X":327,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093075Z"},{"ID":55091,"Name":"Wioska barbarzyƄska","Points":9429,"X":720,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093076Z"},{"ID":55092,"Name":"073. Wioska barbarzyƄska","Points":4956,"X":730,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093077Z"},{"ID":55094,"Name":"002","Points":920,"X":292,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":848892804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093077Z"},{"ID":55095,"Name":"Nowa Baza 13","Points":5898,"X":616,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093078Z"},{"ID":55097,"Name":"Wioska barbarzyƄska","Points":9011,"X":542,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093079Z"},{"ID":55098,"Name":"wy...","Points":4010,"X":598,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093079Z"},{"ID":55099,"Name":"o.o 2","Points":1344,"X":442,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09308Z"},{"ID":55100,"Name":"Wioska barbarzyƄska","Points":3583,"X":723,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093081Z"},{"ID":55101,"Name":"$015$ Dirty dancer","Points":432,"X":305,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093082Z"},{"ID":55102,"Name":"Hejka","Points":2835,"X":453,"Y":656,"Continent":"K64","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093082Z"},{"ID":55103,"Name":"Wioska barbarzyƄska","Points":2010,"X":473,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":699196829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093083Z"},{"ID":55104,"Name":"NBT 1","Points":5602,"X":596,"Y":694,"Continent":"K65","Bonus":0,"PlayerID":849047044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093084Z"},{"ID":55105,"Name":"NOT?","Points":1340,"X":314,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093085Z"},{"ID":55106,"Name":"MORDOR","Points":3169,"X":565,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":849082580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093085Z"},{"ID":55107,"Name":"komandos","Points":2977,"X":668,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093086Z"},{"ID":55108,"Name":"Wioska barbarzyƄska","Points":1421,"X":277,"Y":533,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093087Z"},{"ID":55109,"Name":".achim.","Points":4711,"X":566,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093088Z"},{"ID":55110,"Name":"mirron","Points":5015,"X":299,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093088Z"},{"ID":55111,"Name":"Z 07","Points":2141,"X":383,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":6884492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093089Z"},{"ID":55112,"Name":"Wioska barbarzyƄska","Points":3420,"X":707,"Y":404,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09309Z"},{"ID":55114,"Name":"Wioska barbarzyƄska","Points":1444,"X":695,"Y":388,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093091Z"},{"ID":55115,"Name":"New World","Points":4419,"X":423,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093091Z"},{"ID":55116,"Name":"092","Points":817,"X":696,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093092Z"},{"ID":55117,"Name":"ZƂoty ƚwit","Points":4947,"X":597,"Y":297,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093093Z"},{"ID":55118,"Name":"ZƂoty ƚwit","Points":2090,"X":593,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093093Z"},{"ID":55119,"Name":"K67 11","Points":4454,"X":701,"Y":610,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093094Z"},{"ID":55120,"Name":"#167#","Points":836,"X":659,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093095Z"},{"ID":55121,"Name":"Wioska barbarzyƄska","Points":6486,"X":718,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093096Z"},{"ID":55122,"Name":"060 Wioska barbarzyƄska","Points":3804,"X":343,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093096Z"},{"ID":55124,"Name":"Wioska23","Points":4635,"X":330,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093097Z"},{"ID":55125,"Name":"181","Points":1109,"X":504,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":849065606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093098Z"},{"ID":55126,"Name":"Wiocha 2","Points":1316,"X":689,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699803189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093099Z"},{"ID":55127,"Name":"075 - Budowanko!","Points":903,"X":496,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093099Z"},{"ID":55128,"Name":"Wioska barbarzyƄska","Points":3876,"X":692,"Y":378,"Continent":"K36","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0931Z"},{"ID":55129,"Name":"181 001","Points":9379,"X":720,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":7272223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093101Z"},{"ID":55130,"Name":"Wioska barbarzyƄska","Points":11283,"X":722,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093102Z"},{"ID":55131,"Name":"marus1000","Points":8752,"X":296,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":878961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093102Z"},{"ID":55132,"Name":"Wilcza Wolnoƛć","Points":197,"X":318,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":848888787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093103Z"},{"ID":55133,"Name":"budowa 07","Points":4339,"X":610,"Y":705,"Continent":"K76","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093104Z"},{"ID":55134,"Name":"New World","Points":10290,"X":434,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093104Z"},{"ID":55135,"Name":"baska","Points":1181,"X":296,"Y":400,"Continent":"K42","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093105Z"},{"ID":55136,"Name":"*025*","Points":2706,"X":685,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":1205898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093106Z"},{"ID":55137,"Name":"63. Wioska 63","Points":3385,"X":279,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093107Z"},{"ID":55138,"Name":"Wioska barbarzyƄska","Points":4310,"X":277,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093107Z"},{"ID":55139,"Name":"Bunu 2","Points":975,"X":311,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":849050087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093108Z"},{"ID":55140,"Name":"O150","Points":2139,"X":317,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093109Z"},{"ID":55141,"Name":"B021","Points":3229,"X":630,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09311Z"},{"ID":55142,"Name":"015","Points":1357,"X":339,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09311Z"},{"ID":55143,"Name":"## 114","Points":2505,"X":583,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093111Z"},{"ID":55144,"Name":"#206 C","Points":1600,"X":514,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093112Z"},{"ID":55145,"Name":"@@3","Points":1209,"X":269,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":849113546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093113Z"},{"ID":55146,"Name":"CastAway #021","Points":3523,"X":711,"Y":592,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093113Z"},{"ID":55147,"Name":"Wioska barbarzyƄska","Points":4413,"X":444,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093114Z"},{"ID":55148,"Name":"rivendell","Points":868,"X":290,"Y":401,"Continent":"K42","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093115Z"},{"ID":55149,"Name":"Wioska barbarzyƄska","Points":4346,"X":368,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093115Z"},{"ID":55150,"Name":"C0293","Points":4084,"X":275,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093116Z"},{"ID":55151,"Name":"-33-","Points":740,"X":587,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093117Z"},{"ID":55152,"Name":"Wioska Mad World","Points":26,"X":327,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":699635774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093118Z"},{"ID":55153,"Name":"04Wioska barbarzyƄska","Points":5751,"X":357,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093118Z"},{"ID":55154,"Name":"Wioska barbarzyƄska","Points":1054,"X":307,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093119Z"},{"ID":55155,"Name":"Wioska barbarzyƄska","Points":1711,"X":602,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09312Z"},{"ID":55156,"Name":"070 Wioska barbarzyƄska","Points":5216,"X":340,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09312Z"},{"ID":55157,"Name":"Wioska barbarzyƄska","Points":2874,"X":323,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093121Z"},{"ID":55158,"Name":"Zaplecze Barba 039","Points":2993,"X":349,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093122Z"},{"ID":55159,"Name":"Pcim","Points":9524,"X":464,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":849100083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093123Z"},{"ID":55160,"Name":"072 Wioska barbarzyƄska","Points":3482,"X":338,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093124Z"},{"ID":55161,"Name":"Wyspa 023","Points":1165,"X":282,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093124Z"},{"ID":55162,"Name":"CastAway #014","Points":5592,"X":709,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093125Z"},{"ID":55163,"Name":"Wioska Deff","Points":2494,"X":348,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":698913618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093126Z"},{"ID":55164,"Name":"Wioska barbarzyƄska","Points":1172,"X":338,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093126Z"},{"ID":55165,"Name":"FP049","Points":5427,"X":444,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093127Z"},{"ID":55166,"Name":"X005","Points":6127,"X":712,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093128Z"},{"ID":55167,"Name":"-31-","Points":1487,"X":575,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093129Z"},{"ID":55168,"Name":"Wioska barbarzyƄska","Points":2280,"X":312,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093129Z"},{"ID":55169,"Name":"Wioska barbarzyƄska","Points":3282,"X":714,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09313Z"},{"ID":55170,"Name":"PiekƂo to inni","Points":4887,"X":651,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093131Z"},{"ID":55171,"Name":"0136","Points":929,"X":689,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093132Z"},{"ID":55172,"Name":"Wioska b 001","Points":1552,"X":421,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093132Z"},{"ID":55173,"Name":"Wioska barbarzyƄska","Points":1198,"X":280,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":699812351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093133Z"},{"ID":55174,"Name":"wy...","Points":3753,"X":596,"Y":703,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093134Z"},{"ID":55176,"Name":"WschĂłd 001","Points":4731,"X":699,"Y":620,"Continent":"K66","Bonus":2,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093135Z"},{"ID":55177,"Name":"Granica","Points":2104,"X":270,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093135Z"},{"ID":55178,"Name":"074. Wioska barbarzyƄska","Points":4970,"X":730,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093136Z"},{"ID":55179,"Name":"BETON 107","Points":456,"X":667,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093137Z"},{"ID":55180,"Name":"Wioska Lord dankos","Points":3433,"X":682,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":698315881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093138Z"},{"ID":55181,"Name":"ZZZ .::. cinek3456/08","Points":5123,"X":585,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093138Z"},{"ID":55182,"Name":"074 - Budowanko!","Points":329,"X":477,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093139Z"},{"ID":55183,"Name":"079 Wioska barbarzyƄska","Points":7229,"X":540,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09314Z"},{"ID":55184,"Name":"Kapitol_20","Points":5136,"X":506,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093141Z"},{"ID":55185,"Name":"090","Points":1158,"X":690,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093141Z"},{"ID":55186,"Name":"C0298","Points":3663,"X":274,"Y":552,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093142Z"},{"ID":55187,"Name":"025","Points":1447,"X":304,"Y":617,"Continent":"K63","Bonus":7,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093143Z"},{"ID":55188,"Name":"KWB","Points":10534,"X":445,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093143Z"},{"ID":55189,"Name":"Wioska barbarzyƄska","Points":1457,"X":324,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":849100289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093144Z"},{"ID":55190,"Name":"Avanti!","Points":6144,"X":274,"Y":487,"Continent":"K42","Bonus":6,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093145Z"},{"ID":55191,"Name":"TOLCIA 3","Points":1260,"X":643,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":699868739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093146Z"},{"ID":55192,"Name":"Wioska kondzio95rrr","Points":1344,"X":723,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093146Z"},{"ID":55193,"Name":"Wioska014","Points":7173,"X":693,"Y":387,"Continent":"K36","Bonus":0,"PlayerID":698768565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093147Z"},{"ID":55194,"Name":"Ave Why!","Points":2751,"X":523,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093148Z"},{"ID":55195,"Name":"Dumnoryks","Points":1420,"X":290,"Y":400,"Continent":"K42","Bonus":0,"PlayerID":848998530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093149Z"},{"ID":55196,"Name":"ZƂoty ƚwit","Points":5160,"X":592,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093149Z"},{"ID":55197,"Name":"Cisza","Points":1562,"X":287,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09315Z"},{"ID":55198,"Name":"Wioska Johnny B","Points":4663,"X":723,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":9282669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093151Z"},{"ID":55199,"Name":"Osada myself i tylko jej :)","Points":5671,"X":597,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093151Z"},{"ID":55200,"Name":"Kiedyƛ Wielki Wojownik","Points":6403,"X":323,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093152Z"},{"ID":55201,"Name":"odek 181","Points":5585,"X":292,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":699285160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093153Z"},{"ID":55202,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":3138,"X":539,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093154Z"},{"ID":55203,"Name":"aaaaaa","Points":1707,"X":665,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":7646152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093154Z"},{"ID":55204,"Name":"Wioska barbarzyƄska","Points":1834,"X":724,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093155Z"},{"ID":55205,"Name":"Wioska barbarzyƄska","Points":589,"X":300,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093156Z"},{"ID":55206,"Name":"Psycha Siada","Points":4057,"X":330,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093156Z"},{"ID":55207,"Name":"Brat447","Points":1716,"X":369,"Y":520,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093157Z"},{"ID":55208,"Name":"KONFA TO MARKA, NARKA","Points":2274,"X":290,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093158Z"},{"ID":55209,"Name":"Wioska Martin1991","Points":5600,"X":484,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":699027000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093159Z"},{"ID":55210,"Name":"Wioska barbarzyƄska","Points":3867,"X":669,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093159Z"},{"ID":55211,"Name":"Wioska 009","Points":2925,"X":670,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09316Z"},{"ID":55212,"Name":"Pobozowisko","Points":69,"X":406,"Y":596,"Continent":"K54","Bonus":0,"PlayerID":699513260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093161Z"},{"ID":55213,"Name":"Telimena 2.","Points":1889,"X":307,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":699037086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093162Z"},{"ID":55214,"Name":"KONFA TO MARKA, NARKA","Points":2383,"X":286,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093162Z"},{"ID":55215,"Name":"Wioska miromistrz","Points":8284,"X":487,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093163Z"},{"ID":55216,"Name":"Avanti!","Points":5813,"X":271,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093164Z"},{"ID":55217,"Name":"Wioska barbarzyƄska","Points":1666,"X":720,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093165Z"},{"ID":55218,"Name":"Wioska barbarzyƄska","Points":4552,"X":547,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093165Z"},{"ID":55219,"Name":"Sony 911","Points":795,"X":660,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093166Z"},{"ID":55220,"Name":"PPF-26","Points":2118,"X":534,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093167Z"},{"ID":55221,"Name":"Wioska barbarzyƄska","Points":6202,"X":717,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093167Z"},{"ID":55222,"Name":"Wioska krzyĆŒak1","Points":1086,"X":367,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":699826996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093168Z"},{"ID":55223,"Name":"Nagato - B 003","Points":2018,"X":315,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849094586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093169Z"},{"ID":55225,"Name":"*013","Points":4874,"X":678,"Y":364,"Continent":"K36","Bonus":4,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09317Z"},{"ID":55226,"Name":"Wioska barbarzyƄska","Points":351,"X":296,"Y":607,"Continent":"K62","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093171Z"},{"ID":55227,"Name":"E002","Points":4062,"X":665,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093171Z"},{"ID":55228,"Name":"0659","Points":5225,"X":587,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093172Z"},{"ID":55229,"Name":"Wioska barbarzyƄska","Points":1558,"X":723,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093173Z"},{"ID":55230,"Name":"[0189]","Points":6595,"X":275,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093174Z"},{"ID":55231,"Name":"--054--","Points":979,"X":578,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093174Z"},{"ID":55232,"Name":"[0171]","Points":7211,"X":446,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093175Z"},{"ID":55233,"Name":"Wioska barbarzyƄska","Points":1534,"X":628,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":699679662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093176Z"},{"ID":55234,"Name":".achim.","Points":2520,"X":581,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093177Z"},{"ID":55235,"Name":"A040","Points":2969,"X":606,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":9023703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093177Z"},{"ID":55236,"Name":"kamilkaze135 #16","Points":2674,"X":686,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093178Z"},{"ID":55237,"Name":"Wioska Vasqu","Points":206,"X":415,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":8616713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093179Z"},{"ID":55238,"Name":"Wioska barbarzyƄska","Points":2821,"X":702,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09318Z"},{"ID":55239,"Name":"PóƂnocny Bagdad","Points":7009,"X":617,"Y":298,"Continent":"K26","Bonus":1,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09318Z"},{"ID":55240,"Name":"04Wioska barbarzyƄska","Points":5275,"X":356,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093181Z"},{"ID":55241,"Name":"#0074","Points":4698,"X":578,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093182Z"},{"ID":55243,"Name":"9. Nowy ƚwiat","Points":1320,"X":606,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093182Z"},{"ID":55244,"Name":"097","Points":3696,"X":732,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093183Z"},{"ID":55245,"Name":"Wioska acer123","Points":1243,"X":297,"Y":602,"Continent":"K62","Bonus":0,"PlayerID":848969160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093184Z"},{"ID":55246,"Name":"MojeDnoToWaszSzczyt","Points":4263,"X":490,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093185Z"},{"ID":55247,"Name":"C0235","Points":6239,"X":281,"Y":542,"Continent":"K52","Bonus":6,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093185Z"},{"ID":55248,"Name":"Wioska barbarzyƄska","Points":65,"X":320,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093186Z"},{"ID":55249,"Name":"Wioska barbarzyƄska","Points":4233,"X":277,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093187Z"},{"ID":55250,"Name":"224...NORTH","Points":2374,"X":453,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093187Z"},{"ID":55251,"Name":"064 - Budowanko!","Points":5042,"X":499,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093188Z"},{"ID":55252,"Name":"Wioska z Pracza 1","Points":2683,"X":312,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093189Z"},{"ID":55253,"Name":"New WorldA","Points":2499,"X":274,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09319Z"},{"ID":55254,"Name":"Wioska barbarzyƄska","Points":1632,"X":718,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":848976034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093191Z"},{"ID":55255,"Name":"zzz03","Points":794,"X":711,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093191Z"},{"ID":55256,"Name":"New World","Points":10290,"X":431,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093192Z"},{"ID":55257,"Name":"Wioska dabek","Points":8556,"X":269,"Y":486,"Continent":"K42","Bonus":0,"PlayerID":699795698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093193Z"},{"ID":55258,"Name":"Wioska barbarzyƄska","Points":472,"X":306,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093194Z"},{"ID":55259,"Name":"045","Points":1797,"X":678,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093194Z"},{"ID":55260,"Name":"Wioska barbarzyƄska","Points":2451,"X":410,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093195Z"},{"ID":55261,"Name":"--056--","Points":837,"X":588,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093196Z"},{"ID":55262,"Name":"018 - Budowanko!","Points":6614,"X":488,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093196Z"},{"ID":55263,"Name":"Sqn","Points":2683,"X":706,"Y":396,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093197Z"},{"ID":55264,"Name":"szymek5","Points":1419,"X":283,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":1323424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093198Z"},{"ID":55265,"Name":"Wioska barbarzyƄska","Points":3451,"X":712,"Y":412,"Continent":"K47","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093199Z"},{"ID":55266,"Name":"#0248 colt9","Points":5109,"X":433,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093199Z"},{"ID":55267,"Name":"201","Points":2400,"X":570,"Y":409,"Continent":"K45","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0932Z"},{"ID":55268,"Name":"backstage 1","Points":3312,"X":706,"Y":401,"Continent":"K47","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093201Z"},{"ID":55269,"Name":"New World","Points":10290,"X":427,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093201Z"},{"ID":55270,"Name":"Bagno 39","Points":3249,"X":460,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093202Z"},{"ID":55271,"Name":"Wioska DZiki250","Points":6429,"X":275,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":848907771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093203Z"},{"ID":55272,"Name":"Za lasami","Points":2330,"X":283,"Y":413,"Continent":"K42","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093204Z"},{"ID":55273,"Name":"MojeDnoToWaszSzczyt","Points":4679,"X":488,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093204Z"},{"ID":55275,"Name":"New World","Points":7869,"X":421,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093205Z"},{"ID":55276,"Name":"Wioska barbarzyƄska","Points":1396,"X":389,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093206Z"},{"ID":55277,"Name":"Kiedyƛ Wielki Wojownik","Points":5620,"X":322,"Y":351,"Continent":"K33","Bonus":4,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093207Z"},{"ID":55278,"Name":"K67 05","Points":4471,"X":702,"Y":618,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093207Z"},{"ID":55279,"Name":"Avanti!","Points":2502,"X":270,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093208Z"},{"ID":55280,"Name":"GrĂłd BrĂłdno","Points":291,"X":536,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":1568908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093209Z"},{"ID":55281,"Name":"New WorldA","Points":2553,"X":272,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09321Z"},{"ID":55282,"Name":"Wioska barbarzyƄska","Points":418,"X":310,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09321Z"},{"ID":55283,"Name":"Wioska barbarzyƄska","Points":2648,"X":684,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093211Z"},{"ID":55284,"Name":"02# Wioska barbarzyƄska","Points":1594,"X":680,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":8444698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093212Z"},{"ID":55285,"Name":"wy...","Points":4353,"X":600,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093212Z"},{"ID":55286,"Name":"Wioska barbarzyƄska","Points":1025,"X":729,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093213Z"},{"ID":55287,"Name":"Wioska barbarzyƄska","Points":3187,"X":271,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093214Z"},{"ID":55288,"Name":"Wioska barbarzyƄska","Points":408,"X":323,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093215Z"},{"ID":55289,"Name":"#0073","Points":3891,"X":572,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093215Z"},{"ID":55290,"Name":"seafighter1","Points":7751,"X":683,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":7899232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093216Z"},{"ID":55291,"Name":"Piorunek1996 Wieƛ ..2..","Points":1551,"X":531,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":6118079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093217Z"},{"ID":55292,"Name":"#012","Points":5673,"X":546,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093217Z"},{"ID":55293,"Name":"North 037","Points":6785,"X":512,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093218Z"},{"ID":55294,"Name":"Avanti!","Points":5831,"X":276,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093219Z"},{"ID":55295,"Name":"[825] Odludzie","Points":6237,"X":716,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09322Z"},{"ID":55296,"Name":"0113","Points":1179,"X":695,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09322Z"},{"ID":55297,"Name":"Wioska barbarzyƄska","Points":837,"X":724,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093221Z"},{"ID":55298,"Name":"031 KTW","Points":2730,"X":723,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093222Z"},{"ID":55299,"Name":"Wyzima","Points":4277,"X":378,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":849103688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093223Z"},{"ID":55300,"Name":"New World","Points":10238,"X":418,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093223Z"},{"ID":55301,"Name":"RzeĆșnia 4","Points":1493,"X":706,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":849101029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093224Z"},{"ID":55302,"Name":"Nowa Baza 8","Points":5459,"X":615,"Y":701,"Continent":"K76","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093225Z"},{"ID":55303,"Name":"Wioska barbarzyƄska","Points":8585,"X":541,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093226Z"},{"ID":55304,"Name":"Wioska Lewkowskyyyy","Points":2905,"X":682,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":698315881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093226Z"},{"ID":55305,"Name":"Wioska ba","Points":5169,"X":515,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":849101102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093227Z"},{"ID":55306,"Name":"036 Mossdeep City","Points":976,"X":723,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093228Z"},{"ID":55307,"Name":"No.29","Points":822,"X":569,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093229Z"},{"ID":55308,"Name":"Wioska MAXIMUS-1","Points":26,"X":348,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":8644299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093229Z"},{"ID":55309,"Name":"Wioska barbarzyƄska","Points":4004,"X":495,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09323Z"},{"ID":55310,"Name":"Wioska barbarzyƄska","Points":6667,"X":470,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":699196829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093231Z"},{"ID":55311,"Name":"Dwutakt","Points":2817,"X":708,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":699785935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093231Z"},{"ID":55312,"Name":".achim.","Points":4428,"X":570,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093232Z"},{"ID":55313,"Name":"Ć»UBEREK 006","Points":9976,"X":623,"Y":692,"Continent":"K66","Bonus":3,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093233Z"},{"ID":55314,"Name":"311","Points":741,"X":451,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093233Z"},{"ID":55315,"Name":"Wioska a2","Points":2806,"X":422,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093234Z"},{"ID":55316,"Name":"New World","Points":9643,"X":410,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093235Z"},{"ID":55317,"Name":"0074","Points":3575,"X":459,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093236Z"},{"ID":55318,"Name":"Avanti!","Points":5523,"X":273,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093236Z"},{"ID":55319,"Name":"Wioska barbarzyƄska","Points":5294,"X":360,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093237Z"},{"ID":55320,"Name":"KASHYYYK","Points":4012,"X":569,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093238Z"},{"ID":55321,"Name":"Z.03","Points":4269,"X":710,"Y":581,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093238Z"},{"ID":55322,"Name":"Dajanka 24","Points":829,"X":291,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093239Z"},{"ID":55323,"Name":"26. Wioska 26","Points":3736,"X":287,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09324Z"},{"ID":55324,"Name":"Wioska barbarzyƄska","Points":229,"X":377,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093241Z"},{"ID":55325,"Name":"#026","Points":2307,"X":543,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093241Z"},{"ID":55326,"Name":"001","Points":947,"X":441,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":699069151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093242Z"},{"ID":55327,"Name":"Wioska barbarzyƄska","Points":1761,"X":568,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093243Z"},{"ID":55328,"Name":"Wioska marek123","Points":8161,"X":691,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":849090846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093243Z"},{"ID":55329,"Name":"Nowa 64","Points":3898,"X":720,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093244Z"},{"ID":55330,"Name":"Wioska Gigako","Points":10324,"X":562,"Y":284,"Continent":"K25","Bonus":4,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093245Z"},{"ID":55331,"Name":"Wioska barbarzyƄska","Points":3024,"X":703,"Y":398,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093246Z"},{"ID":55332,"Name":"KWB4","Points":4871,"X":485,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093246Z"},{"ID":55333,"Name":"O114","Points":7181,"X":317,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093247Z"},{"ID":55334,"Name":"Wioska barbarzyƄska","Points":1087,"X":716,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093248Z"},{"ID":55335,"Name":"P003","Points":4304,"X":512,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699208929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093248Z"},{"ID":55336,"Name":"009","Points":3577,"X":297,"Y":596,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093249Z"},{"ID":55337,"Name":"Wioska barbarzyƄska","Points":8031,"X":416,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09325Z"},{"ID":55338,"Name":"#036","Points":2772,"X":560,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09325Z"},{"ID":55339,"Name":"BIMBER 5","Points":1374,"X":441,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093251Z"},{"ID":55340,"Name":"Wioska barbarzyƄska","Points":3438,"X":727,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093252Z"},{"ID":55341,"Name":"New World","Points":5143,"X":413,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093253Z"},{"ID":55342,"Name":"szymek1","Points":7637,"X":280,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":1323424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093253Z"},{"ID":55343,"Name":"PóƂnocny Bagdad","Points":7013,"X":618,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093254Z"},{"ID":55344,"Name":"bagienko_01","Points":7098,"X":570,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849093353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093255Z"},{"ID":55345,"Name":"o013","Points":6508,"X":607,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093256Z"},{"ID":55346,"Name":"CapriSun","Points":1121,"X":689,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":849055553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093256Z"},{"ID":55347,"Name":"Wioska barbarzyƄska","Points":1854,"X":315,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093257Z"},{"ID":55348,"Name":"024","Points":1012,"X":301,"Y":609,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093258Z"},{"ID":55349,"Name":"NP 09","Points":1342,"X":303,"Y":393,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093258Z"},{"ID":55350,"Name":"Zaplecze Barba 040","Points":3132,"X":347,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093259Z"},{"ID":55351,"Name":"CastAway !036","Points":3241,"X":711,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09326Z"},{"ID":55352,"Name":".achim.","Points":2647,"X":573,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093261Z"},{"ID":55353,"Name":"Wioska barbarzyƄska","Points":491,"X":282,"Y":584,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093261Z"},{"ID":55354,"Name":"Mordor","Points":1226,"X":697,"Y":588,"Continent":"K56","Bonus":0,"PlayerID":849109935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093262Z"},{"ID":55355,"Name":"KONFA TO MARKA, NARKA","Points":7997,"X":286,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093263Z"},{"ID":55356,"Name":"Osada koczownikĂłw","Points":1426,"X":593,"Y":290,"Continent":"K25","Bonus":7,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093263Z"},{"ID":55357,"Name":"Kurnik","Points":1182,"X":445,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093264Z"},{"ID":55358,"Name":"XDX","Points":3787,"X":598,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093265Z"},{"ID":55359,"Name":"000","Points":5071,"X":281,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093266Z"},{"ID":55360,"Name":"PiekƂo to inni","Points":4238,"X":645,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093266Z"},{"ID":55361,"Name":"Wioska LubieĆŒny Mietek","Points":26,"X":582,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":6326324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093267Z"},{"ID":55362,"Name":"...::181 05::...","Points":3486,"X":275,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093268Z"},{"ID":55363,"Name":"Wioska barbarzyƄska","Points":589,"X":370,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093269Z"},{"ID":55364,"Name":"Vetiuss3","Points":626,"X":282,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":849096399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093269Z"},{"ID":55365,"Name":"##9","Points":1710,"X":346,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09327Z"},{"ID":55366,"Name":"WiedeƄ","Points":8019,"X":294,"Y":589,"Continent":"K52","Bonus":0,"PlayerID":2717161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093271Z"},{"ID":55367,"Name":"Wioska ewciamariusz2","Points":1131,"X":300,"Y":391,"Continent":"K33","Bonus":0,"PlayerID":9014108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093271Z"},{"ID":55368,"Name":"ToHellAndBack.","Points":6626,"X":444,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":699069151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093272Z"},{"ID":55369,"Name":"Wioska16.","Points":3249,"X":713,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":699266530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093273Z"},{"ID":55370,"Name":"Wioska barbarzyƄska","Points":4207,"X":350,"Y":464,"Continent":"K43","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093274Z"},{"ID":55371,"Name":"Osada koczownikĂłw","Points":3898,"X":267,"Y":491,"Continent":"K42","Bonus":2,"PlayerID":699795698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093274Z"},{"ID":55372,"Name":"Kapitol_13","Points":4501,"X":510,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093275Z"},{"ID":55373,"Name":"????","Points":4085,"X":461,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093276Z"},{"ID":55374,"Name":"021 - Budowanko!","Points":5513,"X":496,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093276Z"},{"ID":55375,"Name":"005","Points":9691,"X":293,"Y":588,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093277Z"},{"ID":55376,"Name":"Wioska","Points":5434,"X":418,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093278Z"},{"ID":55377,"Name":"01# Wioska Menager86","Points":4684,"X":681,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":8444698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093279Z"},{"ID":55378,"Name":"North 063","Points":4810,"X":540,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093279Z"},{"ID":55379,"Name":"Aa1","Points":5393,"X":592,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09328Z"},{"ID":55380,"Name":"###155###","Points":10495,"X":602,"Y":710,"Continent":"K76","Bonus":0,"PlayerID":698285444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093281Z"},{"ID":55381,"Name":"Wioska barbarzyƄska","Points":3870,"X":713,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093281Z"},{"ID":55382,"Name":"Wioska barbarzyƄska","Points":1074,"X":380,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093282Z"},{"ID":55383,"Name":"Tuturutu","Points":3090,"X":281,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093283Z"},{"ID":55384,"Name":"[828] Odludzie","Points":6040,"X":717,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093284Z"},{"ID":55385,"Name":"XXX","Points":4963,"X":400,"Y":678,"Continent":"K64","Bonus":0,"PlayerID":698650509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093284Z"},{"ID":55386,"Name":"PPF-27","Points":2152,"X":535,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093285Z"},{"ID":55387,"Name":"Nowe Dobra - budowa","Points":5606,"X":686,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093286Z"},{"ID":55389,"Name":"PoƂudniowy WschĂłd 005","Points":1116,"X":698,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093286Z"},{"ID":55390,"Name":"Wioska barbarzyƄska","Points":785,"X":295,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093287Z"},{"ID":55391,"Name":"Tumba","Points":1854,"X":296,"Y":401,"Continent":"K42","Bonus":0,"PlayerID":7259690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093288Z"},{"ID":55393,"Name":"002","Points":4901,"X":303,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093289Z"},{"ID":55395,"Name":"A#025","Points":9797,"X":729,"Y":510,"Continent":"K57","Bonus":5,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093289Z"},{"ID":55396,"Name":"PóƂnocny Bagdad","Points":6915,"X":621,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09329Z"},{"ID":55397,"Name":"Wioska barbarzyƄska","Points":3193,"X":386,"Y":298,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093291Z"},{"ID":55398,"Name":"Wioska rafalzak 01","Points":1122,"X":269,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":6083448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093291Z"},{"ID":55399,"Name":"Wioska20","Points":4139,"X":332,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093292Z"},{"ID":55400,"Name":"Wioska barbarzyƄska","Points":1814,"X":357,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093293Z"},{"ID":55401,"Name":"Wioska barbarzyƄska","Points":847,"X":633,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":699576978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093294Z"},{"ID":55402,"Name":"-002-","Points":4334,"X":728,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093294Z"},{"ID":55403,"Name":"04Wioska barbarzyƄska","Points":3199,"X":365,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093295Z"},{"ID":55404,"Name":"KONFA TO MARKA, NARKA","Points":2646,"X":290,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093296Z"},{"ID":55405,"Name":"014","Points":4710,"X":398,"Y":292,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093296Z"},{"ID":55406,"Name":"Wioska barbarzyƄska","Points":1684,"X":276,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093297Z"},{"ID":55407,"Name":"Zaplecze Barba 041","Points":2523,"X":347,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093298Z"},{"ID":55408,"Name":"181.03","Points":881,"X":328,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":7221139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093299Z"},{"ID":55409,"Name":"Wioska barbarzyƄska","Points":3294,"X":519,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":769293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093299Z"},{"ID":55410,"Name":"North K25","Points":2607,"X":524,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0933Z"},{"ID":55411,"Name":"Wioska maniek38","Points":26,"X":434,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":9213654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093301Z"},{"ID":55412,"Name":"0064","Points":10290,"X":453,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093302Z"},{"ID":55413,"Name":"Wioska TheKingDestroyer","Points":3257,"X":696,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":699812869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093302Z"},{"ID":55414,"Name":"Wioska barbarzyƄska","Points":2681,"X":624,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093303Z"},{"ID":55415,"Name":"Wioska barbarzyƄska 06","Points":6966,"X":342,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093304Z"},{"ID":55416,"Name":"Wioska barbarzyƄska","Points":3136,"X":730,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093304Z"},{"ID":55417,"Name":"Nowa Baza 4","Points":4902,"X":614,"Y":696,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093305Z"},{"ID":55418,"Name":"014 | North","Points":2895,"X":378,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093306Z"},{"ID":55419,"Name":"Wioska barbarzyƄska","Points":358,"X":314,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093307Z"},{"ID":55420,"Name":"Wioska barbarzyƄska","Points":4230,"X":276,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093307Z"},{"ID":55422,"Name":"Wioska barbarzyƄska","Points":2897,"X":367,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093308Z"},{"ID":55423,"Name":"????","Points":3878,"X":462,"Y":277,"Continent":"K24","Bonus":7,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093309Z"},{"ID":55425,"Name":"Wioska barbarzyƄska","Points":4543,"X":372,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09331Z"},{"ID":55426,"Name":".achim.","Points":2826,"X":575,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09331Z"},{"ID":55427,"Name":"011. Wioska barbarzyƄska","Points":7504,"X":700,"Y":390,"Continent":"K37","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093311Z"},{"ID":55428,"Name":"#499 F","Points":5250,"X":441,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093312Z"},{"ID":55429,"Name":"????","Points":4816,"X":477,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093313Z"},{"ID":55430,"Name":"Avanti!","Points":4258,"X":270,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093313Z"},{"ID":55431,"Name":"029","Points":9641,"X":730,"Y":531,"Continent":"K57","Bonus":9,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093314Z"},{"ID":55432,"Name":"AZGARD 2.","Points":462,"X":295,"Y":609,"Continent":"K62","Bonus":0,"PlayerID":6651072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093315Z"},{"ID":55433,"Name":"081. Wioska barbarzyƄska","Points":4680,"X":732,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093315Z"},{"ID":55434,"Name":"Wioska barbarzyƄska","Points":1425,"X":387,"Y":705,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093316Z"},{"ID":55435,"Name":"C0254","Points":4375,"X":269,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093317Z"},{"ID":55436,"Name":"Wioska RĂłĆŒalXDD","Points":1110,"X":343,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":699639001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093318Z"},{"ID":55437,"Name":"O117","Points":6845,"X":314,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093318Z"},{"ID":55438,"Name":"Wioska barbarzyƄska","Points":2875,"X":711,"Y":400,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093319Z"},{"ID":55439,"Name":"[017]","Points":2713,"X":462,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09332Z"},{"ID":55440,"Name":"098","Points":2271,"X":731,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093321Z"},{"ID":55441,"Name":"0081","Points":4386,"X":457,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093321Z"},{"ID":55442,"Name":"Wioska obywateldb","Points":6246,"X":287,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093322Z"},{"ID":55443,"Name":"Rewa","Points":1897,"X":296,"Y":603,"Continent":"K62","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093323Z"},{"ID":55444,"Name":"Ale UrwaƂ","Points":6938,"X":270,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":849105417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093323Z"},{"ID":55445,"Name":"004","Points":1377,"X":277,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093324Z"},{"ID":55446,"Name":"Wioska barbarzyƄska","Points":1796,"X":608,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093325Z"},{"ID":55447,"Name":"ZZZ .::. cinek3456/14","Points":1644,"X":590,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093325Z"},{"ID":55448,"Name":"KONFA TO MARKA, NARKA","Points":2164,"X":288,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093326Z"},{"ID":55449,"Name":"04Wioska barbarzyƄska","Points":7601,"X":361,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093327Z"},{"ID":55450,"Name":"Wioska IAmChaozu","Points":6108,"X":572,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":849080011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093328Z"},{"ID":55452,"Name":"42. JeGrzegorz","Points":1206,"X":672,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699804790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093328Z"},{"ID":55453,"Name":"sh06","Points":2573,"X":514,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093329Z"},{"ID":55454,"Name":"Wioska barbarzyƄska","Points":1344,"X":318,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09333Z"},{"ID":55455,"Name":"[0276]","Points":3787,"X":266,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093331Z"},{"ID":55456,"Name":"Wioska marko91","Points":1301,"X":497,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":849070812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093331Z"},{"ID":55457,"Name":"237...NORTH","Points":4753,"X":432,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093332Z"},{"ID":55458,"Name":"[217]","Points":1138,"X":721,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093333Z"},{"ID":55459,"Name":"Wioska barbarzyƄska","Points":3191,"X":724,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093333Z"},{"ID":55460,"Name":"Wioska Gollum18","Points":3252,"X":409,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":8947021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093334Z"},{"ID":55461,"Name":"ZƂoty ƚwit","Points":5101,"X":586,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093335Z"},{"ID":55462,"Name":"Wioska barbarzyƄska","Points":504,"X":319,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093336Z"},{"ID":55463,"Name":"C0294","Points":3807,"X":277,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093336Z"},{"ID":55464,"Name":"KONFA TO MARKA, NARKA","Points":7407,"X":277,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093337Z"},{"ID":55465,"Name":"BETON 115","Points":81,"X":663,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093338Z"},{"ID":55466,"Name":"006","Points":1164,"X":531,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":698736778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093338Z"},{"ID":55467,"Name":"Utumno","Points":2696,"X":328,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":849100288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093339Z"},{"ID":55468,"Name":".achim.","Points":4672,"X":568,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09334Z"},{"ID":55469,"Name":"PóƂnocny Bagdad","Points":2818,"X":633,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093341Z"},{"ID":55470,"Name":"Taka.","Points":2039,"X":484,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093341Z"},{"ID":55471,"Name":"Wioska rufus997","Points":4572,"X":270,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093342Z"},{"ID":55472,"Name":"1x1 Wioska barbarzyƄska","Points":5601,"X":570,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":849055425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093343Z"},{"ID":55473,"Name":"107 Wioska barbarzyƄska","Points":828,"X":584,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093343Z"},{"ID":55474,"Name":"061 Wioska barbarzyƄska","Points":9835,"X":551,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093344Z"},{"ID":55475,"Name":"MojeDnoToWaszSzczyt","Points":4675,"X":494,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093345Z"},{"ID":55476,"Name":"100. Wioska barbarzyƄska","Points":2858,"X":695,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093346Z"},{"ID":55477,"Name":"Osada koczownikĂłw","Points":10881,"X":725,"Y":561,"Continent":"K57","Bonus":7,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093346Z"},{"ID":55478,"Name":"erebor","Points":6098,"X":292,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093347Z"},{"ID":55479,"Name":"MojeDnoToWaszSzczyt","Points":9471,"X":498,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093348Z"},{"ID":55480,"Name":"Odludek","Points":3273,"X":701,"Y":609,"Continent":"K67","Bonus":0,"PlayerID":849101652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093348Z"},{"ID":55481,"Name":"Wioska barbarzyƄska","Points":2390,"X":356,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093349Z"},{"ID":55482,"Name":"TOLCIA 4","Points":1154,"X":640,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":699868739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09335Z"},{"ID":55483,"Name":"Wioska kosiarziii","Points":7354,"X":657,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":8856821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093351Z"},{"ID":55484,"Name":"Wioska barbarzyƄska","Points":4591,"X":639,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093351Z"},{"ID":55485,"Name":"Hindenburg","Points":4336,"X":270,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":699662232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093352Z"},{"ID":55486,"Name":"KONFA TO MARKA, NARKA","Points":2318,"X":270,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093353Z"},{"ID":55487,"Name":"Wioska barbarzyƄska","Points":2668,"X":595,"Y":705,"Continent":"K75","Bonus":0,"PlayerID":8991696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093353Z"},{"ID":55488,"Name":"PATOLOGIA","Points":6227,"X":288,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093354Z"},{"ID":55489,"Name":"Wioska 124","Points":191,"X":706,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093355Z"},{"ID":55490,"Name":"Sony 911","Points":6209,"X":697,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093356Z"},{"ID":55491,"Name":"XDX","Points":3976,"X":613,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093357Z"},{"ID":55492,"Name":"2. Novigrad","Points":2336,"X":609,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":849101526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093357Z"},{"ID":55493,"Name":"Wioska barbarzyƄska","Points":2625,"X":525,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093358Z"},{"ID":55494,"Name":"PóƂnocny Bagdad","Points":9249,"X":621,"Y":303,"Continent":"K36","Bonus":9,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093359Z"},{"ID":55495,"Name":"Wioska barbarzyƄska","Points":3724,"X":721,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093359Z"},{"ID":55496,"Name":"Wyspa","Points":788,"X":394,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09336Z"},{"ID":55497,"Name":"Wioska barbarzyƄska","Points":428,"X":371,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849096945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093361Z"},{"ID":55498,"Name":"...::181 08::...","Points":3213,"X":277,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093362Z"},{"ID":55499,"Name":"Avanti!","Points":6019,"X":271,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093362Z"},{"ID":55500,"Name":"4. Skellige Nowe IMPERIUM","Points":4159,"X":614,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093363Z"},{"ID":55501,"Name":"XDX","Points":3476,"X":604,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093364Z"},{"ID":55502,"Name":"Wioska 0007","Points":10311,"X":349,"Y":665,"Continent":"K63","Bonus":4,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093364Z"},{"ID":55503,"Name":"C0314","Points":2458,"X":276,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093365Z"},{"ID":55504,"Name":"Wz08","Points":2721,"X":698,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093366Z"},{"ID":55505,"Name":"0000034Z","Points":5515,"X":275,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093367Z"},{"ID":55506,"Name":"Wioska barbarzyƄska","Points":949,"X":303,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":1267913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093367Z"},{"ID":55507,"Name":"055- Mroczna Osada","Points":5711,"X":704,"Y":386,"Continent":"K37","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093368Z"},{"ID":55508,"Name":"[827] Odludzie","Points":6235,"X":719,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093369Z"},{"ID":55509,"Name":"Wioska barbarzyƄska","Points":234,"X":317,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093369Z"},{"ID":55510,"Name":"Wioska a1","Points":4026,"X":421,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09337Z"},{"ID":55511,"Name":"KONFA TO MARKA, NARKA","Points":4168,"X":275,"Y":444,"Continent":"K42","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093371Z"},{"ID":55512,"Name":"Wioska barbarzyƄska","Points":444,"X":300,"Y":397,"Continent":"K33","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093371Z"},{"ID":55513,"Name":"Zaplecze Barba 029","Points":4637,"X":360,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093372Z"},{"ID":55514,"Name":"Wioska barbarzyƄska","Points":3370,"X":503,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093373Z"},{"ID":55515,"Name":"Wioska barbarzyƄska","Points":5582,"X":310,"Y":625,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093374Z"},{"ID":55516,"Name":"Wioska barbarzyƄska","Points":9468,"X":722,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093374Z"},{"ID":55517,"Name":"004. niespodzianka","Points":1286,"X":457,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":602408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093375Z"},{"ID":55518,"Name":"Wioska barbarzyƄska","Points":7909,"X":537,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093376Z"},{"ID":55519,"Name":"K67 03","Points":7569,"X":702,"Y":613,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093376Z"},{"ID":55520,"Name":"Aa7","Points":3468,"X":594,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093377Z"},{"ID":55521,"Name":"112.Stradi","Points":6450,"X":427,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093378Z"},{"ID":55522,"Name":"KONFA TO MARKA, NARKA","Points":1529,"X":293,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093379Z"},{"ID":55524,"Name":"Wioska barbarzyƄska","Points":2237,"X":690,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":849090846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093379Z"},{"ID":55525,"Name":"MojeDnoToWaszSzczyt","Points":4478,"X":486,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09338Z"},{"ID":55527,"Name":"Wioska barbarzyƄska","Points":4179,"X":658,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093381Z"},{"ID":55528,"Name":"New World","Points":4529,"X":418,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093381Z"},{"ID":55529,"Name":"Wioska DAJWIDOS17","Points":1256,"X":320,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":848913252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093382Z"},{"ID":55530,"Name":"006","Points":7185,"X":313,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":7919620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093383Z"},{"ID":55531,"Name":"MojeDnoToWaszSzczyt","Points":4593,"X":475,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093384Z"},{"ID":55532,"Name":"...::181 12::...","Points":2117,"X":272,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093384Z"},{"ID":55534,"Name":"Wioska barbarzyƄska","Points":3057,"X":685,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093385Z"},{"ID":55535,"Name":"Wioska barbarzyƄska","Points":2345,"X":602,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093386Z"},{"ID":55536,"Name":"Wioska barbarzyƄska","Points":1697,"X":727,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093386Z"},{"ID":55537,"Name":"003","Points":10544,"X":292,"Y":591,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093387Z"},{"ID":55538,"Name":"KONFA TO MARKA, NARKA","Points":2346,"X":289,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093388Z"},{"ID":55539,"Name":"Wioska barbarzyƄska","Points":3726,"X":270,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093389Z"},{"ID":55540,"Name":"????","Points":1488,"X":461,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093389Z"},{"ID":55541,"Name":"Wygwizdowa 013","Points":2966,"X":638,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09339Z"},{"ID":55544,"Name":"S177 K64","Points":772,"X":415,"Y":686,"Continent":"K64","Bonus":0,"PlayerID":849055309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093391Z"},{"ID":55545,"Name":"#0064","Points":3777,"X":577,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093391Z"},{"ID":55546,"Name":"Wioska Karakan13","Points":26,"X":727,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":849096936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093392Z"},{"ID":55547,"Name":"Psycha Siada","Points":6806,"X":320,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093393Z"},{"ID":55549,"Name":"23 Blacha","Points":2257,"X":721,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093393Z"},{"ID":55550,"Name":"Bagno 34","Points":5046,"X":475,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093394Z"},{"ID":55552,"Name":"...::181 03::...","Points":3121,"X":276,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093395Z"},{"ID":55553,"Name":"Wioska barbarzyƄska","Points":283,"X":271,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093396Z"},{"ID":55554,"Name":"Wioska barbarzyƄska","Points":317,"X":381,"Y":699,"Continent":"K63","Bonus":0,"PlayerID":7494178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093396Z"},{"ID":55555,"Name":"027","Points":816,"X":305,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093397Z"},{"ID":55556,"Name":"25.TEEN TOP","Points":2781,"X":694,"Y":384,"Continent":"K36","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093398Z"},{"ID":55557,"Name":"KONFA TO MARKA, NARKA","Points":2590,"X":292,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093398Z"},{"ID":55558,"Name":"007","Points":6042,"X":291,"Y":593,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093399Z"},{"ID":55559,"Name":"#0059","Points":3689,"X":575,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0934Z"},{"ID":55561,"Name":"New World","Points":9619,"X":418,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093401Z"},{"ID":55562,"Name":"Wioska dafffciu","Points":9391,"X":362,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":848984022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093401Z"},{"ID":55563,"Name":"Wioska barbarzyƄska","Points":709,"X":317,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093402Z"},{"ID":55564,"Name":"001 Oazis","Points":10104,"X":304,"Y":607,"Continent":"K63","Bonus":0,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093403Z"},{"ID":55565,"Name":"-003-","Points":4482,"X":730,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093403Z"},{"ID":55566,"Name":"|D| IS","Points":1494,"X":453,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093404Z"},{"ID":55567,"Name":"Gorzow","Points":3969,"X":466,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093405Z"},{"ID":55568,"Name":"078g","Points":6556,"X":318,"Y":553,"Continent":"K53","Bonus":0,"PlayerID":698641566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093405Z"},{"ID":55569,"Name":"KONFA TO MARKA, NARKA","Points":4274,"X":279,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093406Z"},{"ID":55570,"Name":"Wygwizdowa 016","Points":728,"X":625,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093407Z"},{"ID":55571,"Name":"C0308","Points":3268,"X":274,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093408Z"},{"ID":55572,"Name":"Wioska bercion","Points":1764,"X":383,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":699490365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093408Z"},{"ID":55573,"Name":"Kiedyƛ Wielki Wojownik","Points":1131,"X":322,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093409Z"},{"ID":55574,"Name":"K42 ADAMUS 016","Points":5088,"X":287,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09341Z"},{"ID":55575,"Name":"KONFA TO MARKA, NARKA","Points":2494,"X":289,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09341Z"},{"ID":55576,"Name":"PiekƂo to inni","Points":4213,"X":651,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093411Z"},{"ID":55577,"Name":"Osada koczownikĂłw","Points":4300,"X":546,"Y":728,"Continent":"K75","Bonus":7,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093412Z"},{"ID":55578,"Name":"Wioska barbarzyƄska","Points":3271,"X":352,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093413Z"},{"ID":55579,"Name":"Wioska barbarzyƄska","Points":2252,"X":689,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093414Z"},{"ID":55580,"Name":"PiekƂo to inni","Points":3144,"X":660,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093414Z"},{"ID":55581,"Name":"Kapitol_31","Points":3741,"X":497,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093415Z"},{"ID":55582,"Name":"ADAMM","Points":721,"X":536,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":699409420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093416Z"},{"ID":55583,"Name":"New World","Points":8133,"X":429,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093416Z"},{"ID":55584,"Name":"Sony 911","Points":1612,"X":676,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093417Z"},{"ID":55585,"Name":"Wioska 7","Points":1003,"X":534,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093418Z"},{"ID":55586,"Name":"Wioska barbarzyƄska","Points":4535,"X":373,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093418Z"},{"ID":55587,"Name":"001","Points":3773,"X":312,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093419Z"},{"ID":55588,"Name":"MojeDnoToWaszSzczyt","Points":3230,"X":463,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09342Z"},{"ID":55589,"Name":"002.","Points":1452,"X":698,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":7557683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093421Z"},{"ID":55590,"Name":"Wioska buuu","Points":5178,"X":734,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":849048241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093421Z"},{"ID":55591,"Name":"003 wolnoƛć","Points":746,"X":332,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093422Z"},{"ID":55592,"Name":"111.Stradi","Points":7123,"X":426,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093423Z"},{"ID":55593,"Name":"Wioska barbarzyƄska","Points":4908,"X":317,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093423Z"},{"ID":55594,"Name":"PóƂnocny Bagdad","Points":7002,"X":618,"Y":302,"Continent":"K36","Bonus":7,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093424Z"},{"ID":55595,"Name":"New World","Points":3698,"X":432,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093425Z"},{"ID":55596,"Name":"26.WINNER","Points":3104,"X":696,"Y":383,"Continent":"K36","Bonus":0,"PlayerID":9180206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093426Z"},{"ID":55597,"Name":"=SAwars=04=","Points":3612,"X":566,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093427Z"},{"ID":55598,"Name":"North 038","Points":6864,"X":510,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093428Z"},{"ID":55599,"Name":"......","Points":7495,"X":300,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":699595556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093429Z"},{"ID":55600,"Name":"Wioska barbarzyƄska","Points":2061,"X":355,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09343Z"},{"ID":55601,"Name":"Wioska Maverick1","Points":3993,"X":734,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":699618326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09343Z"},{"ID":55602,"Name":"012 - Budowanko!","Points":6690,"X":489,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093431Z"},{"ID":55603,"Name":"Bocianikson022","Points":1592,"X":714,"Y":582,"Continent":"K57","Bonus":7,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093432Z"},{"ID":55604,"Name":"037 Sootopolis City","Points":8653,"X":729,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":699441366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093433Z"},{"ID":55605,"Name":"Wioska 091","Points":5511,"X":697,"Y":617,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093434Z"},{"ID":55606,"Name":"Kapitol_26_O","Points":5152,"X":504,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093435Z"},{"ID":55607,"Name":"Wioska barbarzyƄska","Points":1495,"X":714,"Y":583,"Continent":"K57","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093436Z"},{"ID":55608,"Name":"Wioska nsplus","Points":6035,"X":667,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":849048856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093437Z"},{"ID":55609,"Name":"Sqn","Points":2587,"X":707,"Y":395,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093437Z"},{"ID":55610,"Name":"Wiadro21","Points":1216,"X":688,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093438Z"},{"ID":55611,"Name":"Wiƛniowe wzgĂłrza","Points":3617,"X":444,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":7526090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093439Z"},{"ID":55612,"Name":"Wioska barbarzyƄska","Points":906,"X":268,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09344Z"},{"ID":55614,"Name":"004 | North","Points":9235,"X":379,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093441Z"},{"ID":55615,"Name":"Wioska SAGITTARIUS70","Points":5862,"X":293,"Y":398,"Continent":"K32","Bonus":0,"PlayerID":7259690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093441Z"},{"ID":55616,"Name":"MojeDnoToWaszSzczyt","Points":5348,"X":473,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093442Z"},{"ID":55618,"Name":"Wioska barbarzyƄska","Points":681,"X":297,"Y":389,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093443Z"},{"ID":55619,"Name":"BB1","Points":6221,"X":270,"Y":514,"Continent":"K52","Bonus":0,"PlayerID":849110365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093444Z"},{"ID":55620,"Name":"Wioska barbarzyƄska","Points":1723,"X":352,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093445Z"},{"ID":55621,"Name":"Wioska barbarzyƄska","Points":1794,"X":313,"Y":372,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093446Z"},{"ID":55622,"Name":"12. GT","Points":3447,"X":464,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093447Z"},{"ID":55623,"Name":"Wioska katarzyna2012","Points":3912,"X":543,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093447Z"},{"ID":55624,"Name":"235...NORTH","Points":5174,"X":433,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093448Z"},{"ID":55625,"Name":"????","Points":5155,"X":491,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093449Z"},{"ID":55626,"Name":"0066,","Points":10298,"X":445,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09345Z"},{"ID":55627,"Name":"Wioska Mantvel","Points":6445,"X":270,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":699795698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093451Z"},{"ID":55628,"Name":"Wioska barbarzyƄska","Points":2734,"X":603,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093451Z"},{"ID":55629,"Name":"NOT?","Points":1174,"X":314,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093452Z"},{"ID":55630,"Name":"$013$ Interesting...","Points":1233,"X":299,"Y":621,"Continent":"K62","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093453Z"},{"ID":55631,"Name":"Wioska brzydko.1","Points":7408,"X":613,"Y":615,"Continent":"K66","Bonus":0,"PlayerID":699511370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093454Z"},{"ID":55632,"Name":"bandzior","Points":4622,"X":499,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093455Z"},{"ID":55633,"Name":"sony911","Points":4091,"X":600,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093456Z"},{"ID":55634,"Name":"shire","Points":7511,"X":294,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093457Z"},{"ID":55636,"Name":"Wioska barbarzyƄska","Points":1078,"X":595,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":849097370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093458Z"},{"ID":55637,"Name":"wwwb","Points":2749,"X":601,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093458Z"},{"ID":55638,"Name":"|D| IS","Points":1842,"X":459,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093459Z"},{"ID":55639,"Name":"Wioska barbarzyƄskaC","Points":661,"X":295,"Y":606,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09346Z"},{"ID":55640,"Name":"017. Tak o","Points":1223,"X":295,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":698630507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093461Z"},{"ID":55642,"Name":"Osada koczownikĂłw","Points":7612,"X":722,"Y":549,"Continent":"K57","Bonus":7,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093462Z"},{"ID":55643,"Name":"Wioska leslawos","Points":9331,"X":267,"Y":513,"Continent":"K52","Bonus":0,"PlayerID":1227918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093463Z"},{"ID":55644,"Name":"Wioska barbarzyƄska","Points":5349,"X":313,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093463Z"},{"ID":55645,"Name":"Wioska barbarzyƄska","Points":749,"X":303,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093464Z"},{"ID":55646,"Name":"Psycha Siada","Points":7114,"X":320,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093465Z"},{"ID":55647,"Name":"016 | North","Points":2787,"X":371,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093466Z"},{"ID":55648,"Name":"Wioska barbarzyƄska","Points":4626,"X":610,"Y":701,"Continent":"K76","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093467Z"},{"ID":55649,"Name":"025","Points":8602,"X":725,"Y":491,"Continent":"K47","Bonus":3,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093467Z"},{"ID":55650,"Name":"#05!","Points":3074,"X":643,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093468Z"},{"ID":55651,"Name":"ZZZ .::. cinek3456/10","Points":2240,"X":586,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093469Z"},{"ID":55652,"Name":"Wioska barbarzyƄska","Points":2098,"X":729,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09347Z"},{"ID":55653,"Name":"Wioska barbarzyƄska","Points":2332,"X":731,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093471Z"},{"ID":55654,"Name":"xxx","Points":4244,"X":270,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":699510045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093472Z"},{"ID":55655,"Name":"Wioska barbarzyƄska","Points":457,"X":283,"Y":588,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093473Z"},{"ID":55656,"Name":"GoczaƂkowice","Points":2005,"X":316,"Y":575,"Continent":"K53","Bonus":0,"PlayerID":698589866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093473Z"},{"ID":55657,"Name":"Taka.","Points":1957,"X":484,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093474Z"},{"ID":55658,"Name":"#K75 0037","Points":4611,"X":524,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093475Z"},{"ID":55659,"Name":"Wioska barbarzyƄska","Points":627,"X":322,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093476Z"},{"ID":55660,"Name":"Wioska barbarzyƄska","Points":1019,"X":340,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093477Z"},{"ID":55661,"Name":"#122#","Points":4320,"X":651,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093478Z"},{"ID":55662,"Name":"Wioska barbarzyƄska","Points":1313,"X":730,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093479Z"},{"ID":55663,"Name":"Wioska barbarzyƄska","Points":1773,"X":395,"Y":707,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093479Z"},{"ID":55664,"Name":"Wioska barbarzyƄska","Points":794,"X":353,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09348Z"},{"ID":55665,"Name":"$010$ KEN","Points":1751,"X":307,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093481Z"},{"ID":55666,"Name":"Wioska barbarzyƄska","Points":1890,"X":724,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093482Z"},{"ID":55667,"Name":"Republic Of Rukahs","Points":2274,"X":724,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":699789609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093483Z"},{"ID":55668,"Name":"Wioska barbarzyƄska","Points":2233,"X":683,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093484Z"},{"ID":55669,"Name":"Wioska NiedzwiedzWampyr","Points":1281,"X":643,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":849099887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093485Z"},{"ID":55670,"Name":"075 obrzeĆŒa","Points":2518,"X":277,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093485Z"},{"ID":55671,"Name":"Flap","Points":4171,"X":608,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093486Z"},{"ID":55672,"Name":"PiekƂo to inni","Points":2750,"X":648,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093487Z"},{"ID":55673,"Name":"New World","Points":5333,"X":436,"Y":717,"Continent":"K74","Bonus":4,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093488Z"},{"ID":55674,"Name":"Wioska barbarzyƄska","Points":1805,"X":709,"Y":409,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093489Z"},{"ID":55675,"Name":"068 Wioska barbarzyƄska","Points":4414,"X":339,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09349Z"},{"ID":55676,"Name":"A#054","Points":3713,"X":707,"Y":409,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093491Z"},{"ID":55677,"Name":"Wioska barbarzyƄska","Points":1705,"X":459,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093492Z"},{"ID":55678,"Name":"Osada koczownikĂłw","Points":9356,"X":299,"Y":381,"Continent":"K32","Bonus":8,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093493Z"},{"ID":55679,"Name":"Wioska ddd121","Points":1844,"X":416,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093494Z"},{"ID":55680,"Name":"Wioska barbarzyƄska","Points":719,"X":731,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093495Z"},{"ID":55681,"Name":".achim.","Points":4130,"X":569,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093496Z"},{"ID":55682,"Name":"O155","Points":1422,"X":304,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093496Z"},{"ID":55683,"Name":"019","Points":5100,"X":270,"Y":455,"Continent":"K42","Bonus":6,"PlayerID":6131106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093497Z"},{"ID":55684,"Name":"Wioska barbarzyƄska","Points":4721,"X":713,"Y":574,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093498Z"},{"ID":55685,"Name":"Nowe IMPERIUM 7","Points":2954,"X":618,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093499Z"},{"ID":55686,"Name":"Wioska borek102","Points":5458,"X":562,"Y":398,"Continent":"K35","Bonus":0,"PlayerID":6606543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0935Z"},{"ID":55687,"Name":"Wioska miki11","Points":151,"X":275,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":50930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093502Z"},{"ID":55688,"Name":"Osada koczownikĂłw","Points":7598,"X":417,"Y":713,"Continent":"K74","Bonus":4,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093503Z"},{"ID":55689,"Name":"Wioska Wieslaw 3","Points":2576,"X":499,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":699794421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093503Z"},{"ID":55690,"Name":"Wioska barbarzyƄska","Points":5777,"X":720,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093504Z"},{"ID":55691,"Name":"PPF-60","Points":5044,"X":572,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849080011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093505Z"},{"ID":55692,"Name":"031. Gloria Victis","Points":4666,"X":285,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093506Z"},{"ID":55693,"Name":"#0068","Points":3131,"X":575,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093507Z"},{"ID":55694,"Name":"wy...","Points":3830,"X":602,"Y":705,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093507Z"},{"ID":55695,"Name":"Wioska gall6","Points":2706,"X":269,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093508Z"},{"ID":55696,"Name":"Wioska barbarzyƄska","Points":2108,"X":723,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093509Z"},{"ID":55697,"Name":"Wioska dam111","Points":50,"X":552,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":3345943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09351Z"},{"ID":55698,"Name":"MojeDnoToWaszSzczyt","Points":6166,"X":487,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093511Z"},{"ID":55700,"Name":"Gdansk","Points":3132,"X":449,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093512Z"},{"ID":55701,"Name":"Wioska Farmer155","Points":909,"X":275,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849095594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093513Z"},{"ID":55702,"Name":"Wioska 093","Points":5276,"X":699,"Y":618,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093513Z"},{"ID":55703,"Name":"Wioska black","Points":4864,"X":416,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093514Z"},{"ID":55704,"Name":"Wioska barbarzyƄska","Points":5002,"X":530,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093515Z"},{"ID":55705,"Name":"PiekƂo to inni","Points":4238,"X":650,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093516Z"},{"ID":55707,"Name":"Wioska SharpWaldek","Points":114,"X":504,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849108352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093516Z"},{"ID":55708,"Name":"KONFA TO MARKA, NARKA","Points":2154,"X":288,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093517Z"},{"ID":55709,"Name":"[832] Odludzie","Points":5910,"X":722,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093518Z"},{"ID":55710,"Name":"Wioska barbarzyƄska","Points":3083,"X":686,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093519Z"},{"ID":55712,"Name":"Wioska barbarzyƄska","Points":1317,"X":734,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09352Z"},{"ID":55713,"Name":"MojeDnoToWaszSzczyt","Points":5848,"X":487,"Y":272,"Continent":"K24","Bonus":7,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09352Z"},{"ID":55714,"Name":"PiekƂo to inni","Points":3317,"X":643,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093521Z"},{"ID":55715,"Name":"Wioska barbarzyƄska","Points":2235,"X":728,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093522Z"},{"ID":55716,"Name":"Gubernia 04 BarbarzyƄska","Points":3893,"X":373,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":849107532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093523Z"},{"ID":55717,"Name":"Avanti!","Points":2618,"X":271,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093524Z"},{"ID":55718,"Name":"Kiedyƛ Wielki Wojownik","Points":3411,"X":324,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093525Z"},{"ID":55719,"Name":"094. Wioska barbarzyƄska","Points":3462,"X":728,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093525Z"},{"ID":55720,"Name":"Wioska SmerfĂłw","Points":4629,"X":716,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":849102480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093526Z"},{"ID":55721,"Name":"Wioska z Pracza 2","Points":1639,"X":311,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093527Z"},{"ID":55722,"Name":"Wioska barbarzyƄska","Points":1270,"X":282,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":848988401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093528Z"},{"ID":55723,"Name":"New World","Points":10157,"X":408,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093529Z"},{"ID":55724,"Name":"Wioska barbarzyƄska","Points":5160,"X":642,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09353Z"},{"ID":55726,"Name":"Wioska (046)","Points":801,"X":725,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":698232227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093531Z"},{"ID":55727,"Name":"Wioska E","Points":4618,"X":401,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093531Z"},{"ID":55728,"Name":"Wioska Abis","Points":1165,"X":515,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":698934729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093532Z"},{"ID":55729,"Name":"Wioska barbarzyƄska","Points":3007,"X":684,"Y":406,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093533Z"},{"ID":55730,"Name":"KONFA TO MARKA, NARKA","Points":3840,"X":279,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093534Z"},{"ID":55731,"Name":"Wioska barbarzyƄska","Points":1423,"X":383,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093535Z"},{"ID":55732,"Name":"117","Points":4388,"X":563,"Y":473,"Continent":"K45","Bonus":0,"PlayerID":7092442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093536Z"},{"ID":55733,"Name":"Taka.","Points":3242,"X":488,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093536Z"},{"ID":55734,"Name":"Lipa","Points":5209,"X":323,"Y":653,"Continent":"K63","Bonus":5,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093537Z"},{"ID":55736,"Name":"006","Points":7724,"X":401,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093538Z"},{"ID":55737,"Name":"KONFA TO MARKA, NARKA","Points":1825,"X":287,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093539Z"},{"ID":55738,"Name":"PiekƂo to inni","Points":3880,"X":653,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09354Z"},{"ID":55739,"Name":"Wioska lechman","Points":4698,"X":716,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":8997874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09354Z"},{"ID":55740,"Name":"Wioska barbarzyƄska","Points":2128,"X":727,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093541Z"},{"ID":55741,"Name":"B011","Points":3809,"X":527,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093542Z"},{"ID":55742,"Name":"Wioska utache","Points":209,"X":407,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":848965531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093543Z"},{"ID":55743,"Name":"Wioska barbarzyƄska","Points":941,"X":714,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093544Z"},{"ID":55744,"Name":"Wioska barbarzyƄska","Points":1050,"X":336,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093545Z"},{"ID":55745,"Name":"Wioska barbarzyƄska","Points":368,"X":326,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093546Z"},{"ID":55746,"Name":"Wioska DrJointtt","Points":3307,"X":599,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":8609713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093547Z"},{"ID":55747,"Name":"Wioska barbarzyƄska","Points":3719,"X":665,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093547Z"},{"ID":55748,"Name":"Wioska Mr Dymer","Points":3622,"X":326,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":7865511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093548Z"},{"ID":55749,"Name":"Nowy 0001","Points":5204,"X":285,"Y":595,"Continent":"K52","Bonus":6,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093549Z"},{"ID":55750,"Name":"Wioska Ywozdreiwt Nyzuk","Points":2552,"X":311,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":849110571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09355Z"},{"ID":55751,"Name":"Maszlug kolonia XXIII","Points":1101,"X":317,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093551Z"},{"ID":55752,"Name":"PIROTECHNIK 005","Points":6436,"X":336,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093551Z"},{"ID":55753,"Name":"PPF-04","Points":4551,"X":518,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093552Z"},{"ID":55754,"Name":"K42 ADAMUS 011","Points":7445,"X":280,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093553Z"},{"ID":55755,"Name":"#117#","Points":4260,"X":651,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093554Z"},{"ID":55756,"Name":"069","Points":3249,"X":476,"Y":502,"Continent":"K54","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093555Z"},{"ID":55757,"Name":"#0175 darmuwa","Points":5403,"X":476,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093556Z"},{"ID":55758,"Name":"Wioska barbarzyƄska","Points":534,"X":356,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093557Z"},{"ID":55759,"Name":"Wioska barbarzyƄska","Points":2404,"X":270,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093558Z"},{"ID":55760,"Name":"ƚrednia osada","Points":3850,"X":419,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093558Z"},{"ID":55761,"Name":"t027","Points":780,"X":667,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093559Z"},{"ID":55762,"Name":"Wyspa 024","Points":1126,"X":280,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09356Z"},{"ID":55763,"Name":"039 - Budowanko!","Points":5481,"X":469,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093561Z"},{"ID":55764,"Name":"Bombaj City.","Points":4302,"X":688,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":699803189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093562Z"},{"ID":55765,"Name":"005","Points":10068,"X":294,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093563Z"},{"ID":55766,"Name":"Wiocha 6","Points":6706,"X":547,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093564Z"},{"ID":55767,"Name":"Wioska barbarzyƄska","Points":816,"X":682,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093565Z"},{"ID":55768,"Name":"Wioska Totalnie Mocarny Goƛciu","Points":136,"X":647,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":8924845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093565Z"},{"ID":55769,"Name":"Wioska barbarzyƄska","Points":441,"X":300,"Y":388,"Continent":"K33","Bonus":9,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093566Z"},{"ID":55770,"Name":"Dina","Points":3064,"X":583,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":6882236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093567Z"},{"ID":55771,"Name":"Wioska barbarzyƄska","Points":1974,"X":356,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093568Z"},{"ID":55772,"Name":"PiekƂo to inni","Points":3472,"X":640,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093568Z"},{"ID":55773,"Name":"OV1 Neath","Points":3953,"X":713,"Y":594,"Continent":"K57","Bonus":9,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093569Z"},{"ID":55774,"Name":"Wioska barbarzyƄska","Points":3490,"X":401,"Y":298,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09357Z"},{"ID":55775,"Name":"Na SsSskraju","Points":4236,"X":276,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093571Z"},{"ID":55776,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":5275,"X":541,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093571Z"},{"ID":55777,"Name":"007","Points":6652,"X":655,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093572Z"},{"ID":55778,"Name":"W81","Points":7345,"X":442,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":7661091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093573Z"},{"ID":55779,"Name":"Flap","Points":4408,"X":616,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093574Z"},{"ID":55780,"Name":"39zzz005","Points":591,"X":709,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093574Z"},{"ID":55781,"Name":"New World","Points":8098,"X":414,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093575Z"},{"ID":55782,"Name":"w myself","Points":3415,"X":598,"Y":706,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093576Z"},{"ID":55783,"Name":"Nowe IMPERIUM 3","Points":5735,"X":617,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093577Z"},{"ID":55784,"Name":"Opal","Points":7777,"X":667,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":849048856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093577Z"},{"ID":55785,"Name":"R 048","Points":3488,"X":491,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093578Z"},{"ID":55786,"Name":"#0069","Points":2860,"X":574,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093579Z"},{"ID":55787,"Name":"Wioska barbarzyƄska","Points":1071,"X":633,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09358Z"},{"ID":55788,"Name":"Wioska Jatutuptup","Points":524,"X":703,"Y":614,"Continent":"K67","Bonus":0,"PlayerID":1044760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09358Z"},{"ID":55789,"Name":"Wioska barbarzyƄska","Points":2276,"X":728,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093581Z"},{"ID":55790,"Name":"085. Wioska barbarzyƄska","Points":3386,"X":729,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093582Z"},{"ID":55791,"Name":"Wioska barbarzyƄska","Points":5857,"X":400,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093582Z"},{"ID":55792,"Name":"KONFA TO MARKA, NARKA","Points":1420,"X":286,"Y":410,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093583Z"},{"ID":55794,"Name":"Kapitol_30","Points":3717,"X":504,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093584Z"},{"ID":55795,"Name":"005 Rom","Points":4294,"X":278,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093585Z"},{"ID":55796,"Name":"North K25","Points":1581,"X":533,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093585Z"},{"ID":55797,"Name":"0660","Points":9542,"X":588,"Y":717,"Continent":"K75","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093586Z"},{"ID":55798,"Name":"181","Points":127,"X":525,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":699614821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093587Z"},{"ID":55799,"Name":"Wioska barbarzyƄska","Points":837,"X":322,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093587Z"},{"ID":55801,"Name":"PiekƂo to inni","Points":3553,"X":642,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093588Z"},{"ID":55802,"Name":"New World","Points":10290,"X":413,"Y":717,"Continent":"K74","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093589Z"},{"ID":55803,"Name":"231 Kalkuta","Points":4210,"X":476,"Y":495,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09359Z"},{"ID":55804,"Name":"004","Points":2017,"X":331,"Y":662,"Continent":"K63","Bonus":2,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09359Z"},{"ID":55805,"Name":"Wioska ACFT","Points":26,"X":276,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":848906441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093591Z"},{"ID":55806,"Name":"#154#","Points":1285,"X":652,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093592Z"},{"ID":55807,"Name":"#0083","Points":2562,"X":577,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093592Z"},{"ID":55808,"Name":"Wioska barbarzyƄska","Points":930,"X":289,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":498483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093593Z"},{"ID":55810,"Name":"083. Wioska barbarzyƄska","Points":3973,"X":731,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093594Z"},{"ID":55811,"Name":"Wioska POMPIARZ 12","Points":4835,"X":274,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":849107881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093595Z"},{"ID":55812,"Name":"Wioska barbarzyƄska","Points":1450,"X":678,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093595Z"},{"ID":55813,"Name":"Wioska barbarzyƄska","Points":2620,"X":387,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093596Z"},{"ID":55814,"Name":"Wioska barbarzyƄska","Points":1461,"X":381,"Y":298,"Continent":"K23","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093597Z"},{"ID":55815,"Name":"KONFA TO MARKA, NARKA","Points":2260,"X":286,"Y":413,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093597Z"},{"ID":55816,"Name":"komandos","Points":3446,"X":675,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093598Z"},{"ID":55817,"Name":"KUKA IX","Points":603,"X":285,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093599Z"},{"ID":55818,"Name":"New WorldA","Points":958,"X":268,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0936Z"},{"ID":55819,"Name":"A#026","Points":9797,"X":732,"Y":472,"Continent":"K47","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0936Z"},{"ID":55820,"Name":"Kapitol_21","Points":4058,"X":505,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093601Z"},{"ID":55821,"Name":"#123#","Points":4285,"X":653,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093602Z"},{"ID":55823,"Name":"Wioska barbarzyƄska","Points":1926,"X":734,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093602Z"},{"ID":55825,"Name":"BETON 114","Points":164,"X":668,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093603Z"},{"ID":55826,"Name":"Gwenville 013","Points":2785,"X":451,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093604Z"},{"ID":55827,"Name":"007","Points":4486,"X":290,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093605Z"},{"ID":55828,"Name":"FP046","Points":4493,"X":454,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093605Z"},{"ID":55829,"Name":"#0227 barbarzyƄska","Points":3000,"X":664,"Y":331,"Continent":"K36","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093606Z"},{"ID":55830,"Name":"Napewno to nie jest off","Points":2198,"X":592,"Y":324,"Continent":"K35","Bonus":0,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093607Z"},{"ID":55831,"Name":"szymek3 OCB","Points":2404,"X":281,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":1323424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093608Z"},{"ID":55832,"Name":"Wioska b 002","Points":1524,"X":428,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093608Z"},{"ID":55833,"Name":"Wioska barbarzyƄska","Points":9331,"X":721,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093609Z"},{"ID":55834,"Name":"#001","Points":5301,"X":444,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":849042480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09361Z"},{"ID":55835,"Name":"Wioska barbarzyƄskaD","Points":666,"X":293,"Y":608,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093611Z"},{"ID":55836,"Name":"Psycha Siada","Points":7350,"X":317,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093611Z"},{"ID":55837,"Name":"Avanti!","Points":4440,"X":272,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093612Z"},{"ID":55838,"Name":"Wioska barbarzyƄska","Points":3998,"X":274,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093613Z"},{"ID":55839,"Name":"Wioska MIREK2222222","Points":3072,"X":706,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":6927748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093613Z"},{"ID":55840,"Name":"Wioska barbarzyƄska","Points":6171,"X":399,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093614Z"},{"ID":55841,"Name":"Wioska barbarzyƄskaA","Points":4330,"X":293,"Y":609,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093615Z"},{"ID":55842,"Name":".achim.","Points":3783,"X":572,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093616Z"},{"ID":55843,"Name":"Wioska barbarzyƄska","Points":1125,"X":305,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093616Z"},{"ID":55844,"Name":"Wioska barbarzyƄska","Points":2408,"X":414,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093617Z"},{"ID":55845,"Name":"North 064","Points":4896,"X":541,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093618Z"},{"ID":55846,"Name":"042","Points":1249,"X":674,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093618Z"},{"ID":55847,"Name":"Wioska barbarzyƄska","Points":4860,"X":365,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093619Z"},{"ID":55848,"Name":"NOT?","Points":2330,"X":314,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09362Z"},{"ID":55849,"Name":"039 KTW","Points":1726,"X":724,"Y":454,"Continent":"K47","Bonus":7,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093621Z"},{"ID":55850,"Name":"Sony 911","Points":3054,"X":661,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093621Z"},{"ID":55851,"Name":"Z.07","Points":2736,"X":709,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093622Z"},{"ID":55853,"Name":"Wioska barbarzyƄska","Points":5069,"X":366,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093623Z"},{"ID":55854,"Name":"Nie atakuje robię flagi","Points":1598,"X":651,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":3365981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093624Z"},{"ID":55855,"Name":"X.03","Points":3199,"X":728,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093624Z"},{"ID":55857,"Name":"Wioska barbarzyƄska","Points":2116,"X":349,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093625Z"},{"ID":55858,"Name":"Wioska barbarzyƄska","Points":525,"X":676,"Y":350,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093626Z"},{"ID":55859,"Name":"backstage 3","Points":3259,"X":705,"Y":399,"Continent":"K37","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093627Z"},{"ID":55860,"Name":"Wiocha zabita dechami","Points":4503,"X":549,"Y":338,"Continent":"K35","Bonus":0,"PlayerID":849110711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093627Z"},{"ID":55861,"Name":"Wioska barbarzyƄska","Points":3182,"X":362,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093628Z"},{"ID":55862,"Name":"MojeDnoToWaszSzczyt","Points":5595,"X":475,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093629Z"},{"ID":55863,"Name":"=SAwars=03=","Points":5288,"X":563,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09363Z"},{"ID":55864,"Name":"Myk","Points":2927,"X":424,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":849022649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09363Z"},{"ID":55865,"Name":"002","Points":10544,"X":288,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093631Z"},{"ID":55866,"Name":"181","Points":1550,"X":268,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":698941586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093632Z"},{"ID":55867,"Name":"Wioska barbarzyƄska","Points":2633,"X":705,"Y":401,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093632Z"},{"ID":55868,"Name":"Wioska ZYXW","Points":3759,"X":563,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":698331388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093633Z"},{"ID":55869,"Name":"PPF-24","Points":1797,"X":533,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093634Z"},{"ID":55870,"Name":"Wioska kacper10ciupek","Points":6996,"X":549,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":8015955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093635Z"},{"ID":55871,"Name":"Wioska barbarzyƄska","Points":498,"X":284,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093635Z"},{"ID":55872,"Name":"Wioska Zielony Zielony Zielony","Points":5341,"X":297,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":699876746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093636Z"},{"ID":55873,"Name":"Wioska barbarzyƄska","Points":2535,"X":685,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093637Z"},{"ID":55874,"Name":"bagienko_03","Points":3932,"X":562,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":849093353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093637Z"},{"ID":55875,"Name":"krainy zachodu","Points":3290,"X":285,"Y":406,"Continent":"K42","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093638Z"},{"ID":55876,"Name":"Wioska barbarzyƄska","Points":2066,"X":369,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093639Z"},{"ID":55877,"Name":"Wioska barbarzyƄska","Points":6932,"X":538,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09364Z"},{"ID":55878,"Name":"CastAway #015","Points":3618,"X":707,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09364Z"},{"ID":55879,"Name":"Wioska Donek94","Points":3464,"X":303,"Y":383,"Continent":"K33","Bonus":0,"PlayerID":699841905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093641Z"},{"ID":55880,"Name":"--053--","Points":855,"X":583,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093642Z"},{"ID":55882,"Name":"Wioska barbarzyƄska","Points":1538,"X":394,"Y":708,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093643Z"},{"ID":55883,"Name":"Wioska barbarzyƄska","Points":1575,"X":731,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093643Z"},{"ID":55884,"Name":"Wioska barbarzyƄska","Points":1663,"X":354,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093644Z"},{"ID":55885,"Name":"New World","Points":9973,"X":421,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093645Z"},{"ID":55886,"Name":"Jack 69","Points":2736,"X":326,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":699622781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093645Z"},{"ID":55887,"Name":"Wioska barbarzyƄska","Points":2187,"X":728,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093646Z"},{"ID":55888,"Name":"04Wioska barbarzyƄska","Points":3079,"X":354,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093647Z"},{"ID":55889,"Name":"065","Points":3079,"X":726,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093648Z"},{"ID":55890,"Name":"C0299","Points":3954,"X":275,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093648Z"},{"ID":55891,"Name":"MrozĂłw","Points":1046,"X":300,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":1276665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093649Z"},{"ID":55892,"Name":"PóƂnocny Bagdad","Points":3206,"X":630,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09365Z"},{"ID":55893,"Name":"P|006|","Points":6085,"X":449,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09365Z"},{"ID":55894,"Name":"No.2","Points":2317,"X":327,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":849106612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093651Z"},{"ID":55895,"Name":"Wioska Frolunda","Points":536,"X":630,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":8379825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093652Z"},{"ID":55896,"Name":"Nowe IMPERIUM 8","Points":4548,"X":620,"Y":698,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093653Z"},{"ID":55897,"Name":"Ow Konfederacja","Points":7219,"X":608,"Y":399,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093653Z"},{"ID":55898,"Name":"Flap","Points":4110,"X":610,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093654Z"},{"ID":55899,"Name":"=|45|=","Points":464,"X":692,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093655Z"},{"ID":55900,"Name":"WschĂłd 003","Points":2040,"X":695,"Y":622,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093656Z"},{"ID":55901,"Name":".achim.","Points":2971,"X":579,"Y":283,"Continent":"K25","Bonus":8,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093656Z"},{"ID":55902,"Name":"Twierdza (Ald)","Points":6873,"X":331,"Y":609,"Continent":"K63","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093657Z"},{"ID":55903,"Name":"Wioska barbarzyƄska","Points":4064,"X":722,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093658Z"},{"ID":55904,"Name":"Wioska barbarzyƄska","Points":6029,"X":324,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093659Z"},{"ID":55905,"Name":"Grzejdas 2","Points":6323,"X":698,"Y":385,"Continent":"K36","Bonus":0,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093659Z"},{"ID":55906,"Name":"Wioska barbarzyƄska","Points":341,"X":726,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09366Z"},{"ID":55907,"Name":"Wioska barbarzyƄska","Points":1819,"X":732,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093661Z"},{"ID":55908,"Name":"Wioska barbarzyƄska","Points":5137,"X":647,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093661Z"},{"ID":55910,"Name":"zwiedle wrzosowiska","Points":6082,"X":291,"Y":393,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093662Z"},{"ID":55911,"Name":"|D| IS","Points":2632,"X":457,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093663Z"},{"ID":55912,"Name":"003","Points":1946,"X":698,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":699832463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093664Z"},{"ID":55913,"Name":"Wioska","Points":1537,"X":723,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":699765601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093664Z"},{"ID":55914,"Name":"Wioska wojtek1435","Points":4572,"X":541,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":6032352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093665Z"},{"ID":55915,"Name":"Flap","Points":4669,"X":610,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093666Z"},{"ID":55916,"Name":"Wioska barbarzyƄska","Points":466,"X":697,"Y":612,"Continent":"K66","Bonus":0,"PlayerID":699778867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093666Z"},{"ID":55917,"Name":"Wioska barbarzyƄska","Points":1441,"X":560,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093667Z"},{"ID":55918,"Name":"Wioska ElitoPogero","Points":3844,"X":446,"Y":673,"Continent":"K64","Bonus":0,"PlayerID":8827094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093668Z"},{"ID":55919,"Name":"003","Points":7432,"X":291,"Y":596,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093669Z"},{"ID":55920,"Name":"049","Points":8326,"X":473,"Y":269,"Continent":"K24","Bonus":6,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093669Z"},{"ID":55921,"Name":"055","Points":4220,"X":671,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09367Z"},{"ID":55922,"Name":"New World","Points":6464,"X":435,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093671Z"},{"ID":55924,"Name":"Wioska barbarzyƄska","Points":8182,"X":540,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093672Z"},{"ID":55925,"Name":"Australia D","Points":4629,"X":296,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":699852080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093672Z"},{"ID":55926,"Name":"D017","Points":2431,"X":562,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093673Z"},{"ID":55927,"Name":"060-Mroczna Osada","Points":908,"X":701,"Y":379,"Continent":"K37","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093674Z"},{"ID":55928,"Name":"PóƂnocny Bagdad","Points":7013,"X":623,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093675Z"},{"ID":55929,"Name":"Wioska polotny33","Points":307,"X":732,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":8776452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093675Z"},{"ID":55930,"Name":"61. Wioska 61","Points":7525,"X":281,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093676Z"},{"ID":55931,"Name":"North 022","Points":7106,"X":509,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093677Z"},{"ID":55932,"Name":"Gubernia 02 Robsona","Points":4133,"X":365,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849107532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093678Z"},{"ID":55933,"Name":"Przylądek","Points":1947,"X":270,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093678Z"},{"ID":55934,"Name":"023. Gloria Victis","Points":7427,"X":282,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093679Z"},{"ID":55935,"Name":"C0252","Points":4949,"X":268,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09368Z"},{"ID":55936,"Name":"Wioska barbarzyƄska","Points":3258,"X":548,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09368Z"},{"ID":55937,"Name":"Wioska barbarzyƄska","Points":2418,"X":353,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093681Z"},{"ID":55938,"Name":"PiekƂo to inni","Points":3220,"X":654,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093682Z"},{"ID":55939,"Name":"C007","Points":2407,"X":466,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093683Z"},{"ID":55940,"Name":"Wioska barbarzyƄska","Points":1165,"X":334,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093683Z"},{"ID":55941,"Name":"C0305","Points":3538,"X":276,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093684Z"},{"ID":55942,"Name":"KUKA V","Points":1070,"X":279,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093685Z"},{"ID":55943,"Name":"ble","Points":1370,"X":623,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093686Z"},{"ID":55944,"Name":"#204 C","Points":4022,"X":509,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093686Z"},{"ID":55945,"Name":"Wioska niko30","Points":9581,"X":285,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":848988401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093687Z"},{"ID":55946,"Name":"szymek4","Points":1363,"X":281,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":1323424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093688Z"},{"ID":55947,"Name":"Wioska barbarzyƄska","Points":85,"X":569,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093688Z"},{"ID":55948,"Name":"007","Points":4624,"X":290,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093689Z"},{"ID":55949,"Name":"North 017","Points":7902,"X":508,"Y":270,"Continent":"K25","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09369Z"},{"ID":55950,"Name":"067","Points":2309,"X":724,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093691Z"},{"ID":55951,"Name":"akuku","Points":1182,"X":555,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":6425087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093691Z"},{"ID":55952,"Name":"#K75 0036","Points":5036,"X":523,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":699728159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093692Z"},{"ID":55953,"Name":"Wioska barbarzyƄska","Points":335,"X":318,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093693Z"},{"ID":55954,"Name":"Wioska barbarzyƄska","Points":726,"X":334,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093694Z"},{"ID":55955,"Name":"Wioska barbarzyƄska","Points":390,"X":337,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093694Z"},{"ID":55956,"Name":"63/2","Points":2559,"X":328,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093695Z"},{"ID":55958,"Name":"Wioska barbarzyƄska","Points":5735,"X":724,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093696Z"},{"ID":55959,"Name":"012","Points":4987,"X":395,"Y":292,"Continent":"K23","Bonus":6,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093696Z"},{"ID":55960,"Name":"Artur Boruc v3","Points":2339,"X":711,"Y":405,"Continent":"K47","Bonus":0,"PlayerID":699146876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093697Z"},{"ID":55961,"Name":"04Wioska barbarzyƄska","Points":5346,"X":362,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093698Z"},{"ID":55962,"Name":"Wioska Volf102","Points":138,"X":413,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":698202162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093698Z"},{"ID":55963,"Name":"Osada koczownikĂłw","Points":4121,"X":730,"Y":523,"Continent":"K57","Bonus":3,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093699Z"},{"ID":55964,"Name":"KERTO 01","Points":3925,"X":709,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":7474527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0937Z"},{"ID":55965,"Name":"MojeDnoToWaszSzczyt","Points":5535,"X":479,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093701Z"},{"ID":55966,"Name":"North 113","Points":1597,"X":512,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093702Z"},{"ID":55967,"Name":"Bagno 37","Points":4117,"X":471,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093702Z"},{"ID":55968,"Name":"Wioska barbarzyƄska","Points":3340,"X":733,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093703Z"},{"ID":55969,"Name":"Wioska barbarzyƄska","Points":5564,"X":393,"Y":706,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093704Z"},{"ID":55970,"Name":"102 Wioska barbarzyƄska","Points":3649,"X":536,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093705Z"},{"ID":55971,"Name":"????","Points":4307,"X":477,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093705Z"},{"ID":55972,"Name":"wybuduję sobie paƂac...","Points":10178,"X":602,"Y":703,"Continent":"K76","Bonus":9,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093706Z"},{"ID":55973,"Name":"114.Stradi","Points":6214,"X":425,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093707Z"},{"ID":55974,"Name":"$005$ JBL","Points":8470,"X":304,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093707Z"},{"ID":55975,"Name":"Wioska muflon1922","Points":335,"X":297,"Y":388,"Continent":"K32","Bonus":0,"PlayerID":1827485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093708Z"},{"ID":55976,"Name":".achim.","Points":2849,"X":578,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093709Z"},{"ID":55977,"Name":"092 koniec ƛwiata","Points":3336,"X":634,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09371Z"},{"ID":55978,"Name":"Wioska barbarzyƄska","Points":781,"X":726,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":113796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09371Z"},{"ID":55979,"Name":"A#027","Points":9797,"X":735,"Y":500,"Continent":"K57","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093711Z"},{"ID":55980,"Name":"KONFA TO MARKA, NARKA","Points":4243,"X":271,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093712Z"},{"ID":55981,"Name":"londyn","Points":1070,"X":299,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093713Z"},{"ID":55982,"Name":"Wioska barbarzyƄska","Points":411,"X":268,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":6186491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093713Z"},{"ID":55983,"Name":"Wioska barbarzyƄska","Points":4419,"X":716,"Y":572,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093714Z"},{"ID":55984,"Name":"005","Points":2231,"X":327,"Y":645,"Continent":"K63","Bonus":3,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093715Z"},{"ID":55985,"Name":"Wioska barbarzyƄska","Points":152,"X":582,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093715Z"},{"ID":55986,"Name":"Wioska barbarzyƄska","Points":722,"X":272,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093716Z"},{"ID":55987,"Name":"Będzie zadyma?","Points":756,"X":623,"Y":474,"Continent":"K46","Bonus":0,"PlayerID":699545762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093717Z"},{"ID":55988,"Name":"#0230 barbarzyƄska","Points":2972,"X":662,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093717Z"},{"ID":55989,"Name":"Wioska leolen n","Points":8051,"X":731,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":849104855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093718Z"},{"ID":55990,"Name":"kamilkaze135 #19","Points":1446,"X":685,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093719Z"},{"ID":55991,"Name":"Wioska Arda26 and Azdro","Points":10160,"X":499,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":699429335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09372Z"},{"ID":55992,"Name":"PiekƂo to inni","Points":3254,"X":646,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09372Z"},{"ID":55993,"Name":"#001","Points":6528,"X":304,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":849110743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093721Z"},{"ID":55994,"Name":"Blaviken","Points":963,"X":323,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":849098731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093722Z"},{"ID":55995,"Name":"New World","Points":6914,"X":431,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093723Z"},{"ID":55996,"Name":"071","Points":1751,"X":730,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093723Z"},{"ID":55997,"Name":"Wioska barbarzyƄska","Points":1163,"X":723,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093724Z"},{"ID":55998,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":3575,"X":539,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":8201460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093725Z"},{"ID":55999,"Name":"Osada koczownikĂłw","Points":9496,"X":560,"Y":721,"Continent":"K75","Bonus":4,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093725Z"},{"ID":56000,"Name":"Ave Why!","Points":693,"X":498,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093726Z"},{"ID":56001,"Name":"XDX","Points":4106,"X":601,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093727Z"},{"ID":56002,"Name":"Wioska barbarzyƄska","Points":537,"X":521,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093728Z"},{"ID":56003,"Name":"#0060","Points":3488,"X":579,"Y":711,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093728Z"},{"ID":56004,"Name":"0001","Points":7203,"X":654,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":8890346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093729Z"},{"ID":56005,"Name":"Wioska barbarzyƄska","Points":1218,"X":719,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09373Z"},{"ID":56006,"Name":"Nie gram tu","Points":437,"X":294,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":849061417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093731Z"},{"ID":56007,"Name":"CastAway #022","Points":3420,"X":713,"Y":589,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093731Z"},{"ID":56008,"Name":"Freedom","Points":689,"X":648,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":699518384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093732Z"},{"ID":56009,"Name":"North K25","Points":1826,"X":562,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093733Z"},{"ID":56010,"Name":"K67 ...........................","Points":7326,"X":702,"Y":614,"Continent":"K67","Bonus":3,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093733Z"},{"ID":56011,"Name":"WIOSKA OD BIG PAPA MZM.","Points":9633,"X":614,"Y":480,"Continent":"K46","Bonus":0,"PlayerID":699117865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093734Z"},{"ID":56012,"Name":"samotna gora","Points":7611,"X":293,"Y":392,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093735Z"},{"ID":56013,"Name":"052 - Budowanko!","Points":3371,"X":503,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093736Z"},{"ID":56014,"Name":"Granica1","Points":2332,"X":272,"Y":467,"Continent":"K42","Bonus":7,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093736Z"},{"ID":56015,"Name":"Wioska barbarzyƄska","Points":1632,"X":728,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093737Z"},{"ID":56016,"Name":"No.1","Points":2450,"X":329,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849106612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093738Z"},{"ID":56017,"Name":"Wioska barbarzyƄska","Points":319,"X":335,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093738Z"},{"ID":56018,"Name":"#120#","Points":4036,"X":649,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093739Z"},{"ID":56019,"Name":"Wioska barbarzyƄska","Points":434,"X":322,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":849098731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09374Z"},{"ID":56020,"Name":"#0249 colt9","Points":4470,"X":438,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093741Z"},{"ID":56021,"Name":"Wioska mevest","Points":42,"X":549,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":9067168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093741Z"},{"ID":56022,"Name":"102. Wioska barbarzyƄska","Points":6106,"X":723,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093742Z"},{"ID":56023,"Name":"Wioska barbarzyƄska","Points":2889,"X":280,"Y":585,"Continent":"K52","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093743Z"},{"ID":56025,"Name":"Wioska barbarzyƄska","Points":3161,"X":735,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093744Z"},{"ID":56027,"Name":"Wioska barbarzyƄska","Points":2275,"X":347,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093744Z"},{"ID":56028,"Name":"Wioska barbarzyƄska","Points":1232,"X":460,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093745Z"},{"ID":56029,"Name":"Wioska 012","Points":8064,"X":710,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093746Z"},{"ID":56030,"Name":"1 oo.oo","Points":731,"X":441,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":848933470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093746Z"},{"ID":56031,"Name":"Wioska barbarzyƄska","Points":5719,"X":727,"Y":554,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093747Z"},{"ID":56032,"Name":"North K25","Points":1395,"X":561,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093748Z"},{"ID":56033,"Name":"Wioska barbarzyƄska","Points":563,"X":285,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093749Z"},{"ID":56035,"Name":"XDX","Points":3707,"X":613,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09375Z"},{"ID":56036,"Name":"nowa 4","Points":975,"X":631,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09375Z"},{"ID":56037,"Name":"Bessa 016","Points":8499,"X":649,"Y":679,"Continent":"K66","Bonus":9,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093751Z"},{"ID":56038,"Name":"013 Satoma","Points":4509,"X":676,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":849102108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093752Z"},{"ID":56039,"Name":"118.Stradi","Points":4743,"X":423,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093752Z"},{"ID":56040,"Name":"058","Points":2239,"X":637,"Y":687,"Continent":"K66","Bonus":9,"PlayerID":699695167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093753Z"},{"ID":56041,"Name":"NieMacieSzans","Points":3147,"X":501,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":849110688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093754Z"},{"ID":56042,"Name":"Wioska barbarzyƄska","Points":5563,"X":396,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093755Z"},{"ID":56043,"Name":"Wioska barbarzyƄska","Points":1518,"X":714,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093755Z"},{"ID":56044,"Name":"Wioska Herkuless","Points":5843,"X":694,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":6472706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093756Z"},{"ID":56045,"Name":"010. Osada koczownikĂłw","Points":6197,"X":690,"Y":374,"Continent":"K36","Bonus":2,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093757Z"},{"ID":56046,"Name":"ƁakaMakaFą","Points":2881,"X":563,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849096341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093758Z"},{"ID":56047,"Name":"NP 03","Points":1461,"X":304,"Y":390,"Continent":"K33","Bonus":0,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093758Z"},{"ID":56048,"Name":"093 Wioska barbarzyƄska","Points":4645,"X":540,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093759Z"},{"ID":56049,"Name":"Nowe Dobra - budowa","Points":4872,"X":689,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09376Z"},{"ID":56050,"Name":"paawlo13","Points":7425,"X":417,"Y":410,"Continent":"K44","Bonus":0,"PlayerID":698848067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093761Z"},{"ID":56051,"Name":"No to jedziemy :D","Points":1864,"X":474,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093761Z"},{"ID":56053,"Name":"zelazne wzgorza","Points":2346,"X":291,"Y":399,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093762Z"},{"ID":56054,"Name":"Wioska oliwer1996","Points":5997,"X":489,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":699075613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093763Z"},{"ID":56055,"Name":"Nowa 63","Points":4191,"X":723,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093763Z"},{"ID":56056,"Name":"Wioska Morgan578","Points":6435,"X":277,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093764Z"},{"ID":56057,"Name":"=|43|=","Points":711,"X":692,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093765Z"},{"ID":56058,"Name":"Wioska klejmon","Points":705,"X":648,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":849095771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093766Z"},{"ID":56059,"Name":"#Kresy","Points":7142,"X":632,"Y":692,"Continent":"K66","Bonus":8,"PlayerID":2665207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093766Z"},{"ID":56060,"Name":"Sony 911","Points":5118,"X":672,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093767Z"},{"ID":56061,"Name":"Ć»ubr","Points":1810,"X":681,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093768Z"},{"ID":56062,"Name":"RAMZES","Points":2887,"X":532,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":8082376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093769Z"},{"ID":56063,"Name":"#207 C","Points":1416,"X":517,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093769Z"},{"ID":56064,"Name":"XDX","Points":3264,"X":616,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09377Z"},{"ID":56065,"Name":"Gwenville 014","Points":1090,"X":453,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093771Z"},{"ID":56066,"Name":"Wioska barbarzyƄska","Points":2648,"X":658,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093772Z"},{"ID":56067,"Name":"Zaplecze Barba 038","Points":2661,"X":348,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093772Z"},{"ID":56068,"Name":"CastAway !037","Points":2524,"X":713,"Y":582,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093773Z"},{"ID":56069,"Name":"Wioska barbarzyƄska","Points":829,"X":726,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093774Z"},{"ID":56070,"Name":"New World","Points":10094,"X":432,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093774Z"},{"ID":56071,"Name":"Wioska barbarzyƄska","Points":3671,"X":558,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093775Z"},{"ID":56073,"Name":"CastAway !023","Points":5417,"X":710,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093776Z"},{"ID":56074,"Name":"-12. Skandynawska huta","Points":1931,"X":317,"Y":365,"Continent":"K33","Bonus":3,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093777Z"},{"ID":56075,"Name":"Wioska barbarzyƄska","Points":2469,"X":398,"Y":708,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093777Z"},{"ID":56076,"Name":"032","Points":1476,"X":691,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093778Z"},{"ID":56077,"Name":"Marysin","Points":2720,"X":599,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":823987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093779Z"},{"ID":56078,"Name":"Wioska barbarzyƄska","Points":1481,"X":385,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09378Z"},{"ID":56080,"Name":"Wioska barbarzyƄska","Points":949,"X":342,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09378Z"},{"ID":56081,"Name":"Wioska Krzych0007","Points":3204,"X":280,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":699682780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093781Z"},{"ID":56082,"Name":"Wioska Mietusek22","Points":7348,"X":399,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":6001174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093782Z"},{"ID":56083,"Name":"Alamo2","Points":2133,"X":716,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093783Z"},{"ID":56084,"Name":"077. Wioska barbarzyƄska","Points":4947,"X":732,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093783Z"},{"ID":56085,"Name":"KUKA III","Points":3487,"X":285,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093784Z"},{"ID":56086,"Name":"Wioska barbarzyƄska","Points":8383,"X":726,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093785Z"},{"ID":56087,"Name":"New World","Points":1633,"X":408,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093786Z"},{"ID":56088,"Name":"New World","Points":6641,"X":437,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093786Z"},{"ID":56089,"Name":"040 KTW","Points":1840,"X":723,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093787Z"},{"ID":56090,"Name":"Wioska Boski222","Points":8206,"X":563,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093788Z"},{"ID":56091,"Name":"Wioska barbarzyƄska","Points":2157,"X":460,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093788Z"},{"ID":56092,"Name":"Diduuu","Points":2194,"X":560,"Y":397,"Continent":"K35","Bonus":0,"PlayerID":849108339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093789Z"},{"ID":56093,"Name":"wwwb","Points":3257,"X":599,"Y":707,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09379Z"},{"ID":56094,"Name":"Wioska saladyn89.","Points":5793,"X":669,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":7346797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093791Z"},{"ID":56095,"Name":"003","Points":2644,"X":333,"Y":656,"Continent":"K63","Bonus":2,"PlayerID":8752714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093791Z"},{"ID":56096,"Name":"--050--","Points":1916,"X":583,"Y":290,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093792Z"},{"ID":56097,"Name":"Wioska barbarzyƄska","Points":8215,"X":727,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093793Z"},{"ID":56098,"Name":"O115","Points":6461,"X":313,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093794Z"},{"ID":56099,"Name":"B022","Points":2429,"X":627,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093794Z"},{"ID":56100,"Name":"Osada koczownikĂłw 03","Points":10028,"X":340,"Y":336,"Continent":"K33","Bonus":6,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093795Z"},{"ID":56101,"Name":"Twierdza (MAƁYSZ)","Points":6873,"X":331,"Y":610,"Continent":"K63","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093796Z"},{"ID":56103,"Name":"Twierdza (Zajęnc)","Points":6873,"X":331,"Y":611,"Continent":"K63","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093796Z"},{"ID":56104,"Name":"Maryna","Points":4052,"X":268,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":699650981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093797Z"},{"ID":56105,"Name":"Wioska barbarzyƄska","Points":1299,"X":312,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093798Z"},{"ID":56106,"Name":"Wioska Cypis666","Points":5440,"X":274,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":699730399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093799Z"},{"ID":56107,"Name":"Wioska barbarzyƄska","Points":1484,"X":631,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093799Z"},{"ID":56109,"Name":"002","Points":10544,"X":289,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.0938Z"},{"ID":56110,"Name":"Psycha Siada","Points":6456,"X":322,"Y":641,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093801Z"},{"ID":56111,"Name":"0000042Z","Points":925,"X":275,"Y":566,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093802Z"},{"ID":56112,"Name":"MojeDnoToWaszSzczyt","Points":6129,"X":492,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093802Z"},{"ID":56113,"Name":"Wioska barbarzyƄska","Points":273,"X":365,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093803Z"},{"ID":56114,"Name":"Wioska barbarzyƄska","Points":2481,"X":675,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093804Z"},{"ID":56115,"Name":"wwwb","Points":2648,"X":605,"Y":710,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093804Z"},{"ID":56116,"Name":"BIMBER 6","Points":996,"X":438,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093805Z"},{"ID":56117,"Name":"Wioska barbarzyƄska","Points":3306,"X":731,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":254937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093806Z"},{"ID":56118,"Name":"KONFA TO MARKA, NARKA","Points":2233,"X":284,"Y":419,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093807Z"},{"ID":56119,"Name":"Wioska Mihalina","Points":509,"X":735,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":698849979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093807Z"},{"ID":56120,"Name":"Wioska 019","Points":929,"X":674,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093808Z"},{"ID":56121,"Name":"K67 07","Points":4186,"X":702,"Y":607,"Continent":"K67","Bonus":3,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093809Z"},{"ID":56122,"Name":"Wioska igrane5000","Points":3286,"X":557,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093809Z"},{"ID":56123,"Name":"New World","Points":2710,"X":439,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.09381Z"},{"ID":56124,"Name":"43.","Points":498,"X":333,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093811Z"},{"ID":56125,"Name":"Wioska25","Points":3824,"X":333,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093812Z"},{"ID":56126,"Name":"115.Stradi","Points":5325,"X":425,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093812Z"},{"ID":56127,"Name":"Wioska barbarzyƄska","Points":3570,"X":660,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093813Z"},{"ID":56128,"Name":"028","Points":2763,"X":713,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093814Z"},{"ID":56129,"Name":"035. marcopolo1324","Points":2679,"X":688,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093815Z"},{"ID":56130,"Name":"New World","Points":7230,"X":430,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093815Z"},{"ID":56131,"Name":"037. Small Town","Points":2499,"X":496,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093816Z"},{"ID":56132,"Name":"KONFA TO MARKA, NARKA","Points":1533,"X":289,"Y":399,"Continent":"K32","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093817Z"},{"ID":56133,"Name":"Wioska barbarzyƄska","Points":719,"X":597,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093817Z"},{"ID":56134,"Name":"pRoFiCe II","Points":4844,"X":362,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":698712383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.093818Z"},{"ID":56135,"Name":"Wioska asiulkaaa23","Points":6035,"X":417,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126835Z"},{"ID":56136,"Name":"????","Points":3642,"X":469,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126836Z"},{"ID":56137,"Name":"Wioska barbarzyƄska","Points":633,"X":298,"Y":619,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126837Z"},{"ID":56138,"Name":"New World","Points":3540,"X":409,"Y":710,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126838Z"},{"ID":56139,"Name":"=122= Wioska barbarzyƄska","Points":1676,"X":720,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126838Z"},{"ID":56140,"Name":"0000039Z","Points":2045,"X":276,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126839Z"},{"ID":56141,"Name":"042 KTW","Points":1471,"X":727,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12684Z"},{"ID":56142,"Name":"K42 ADAMUS 007","Points":9172,"X":279,"Y":432,"Continent":"K42","Bonus":8,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126841Z"},{"ID":56143,"Name":"Sony 911","Points":1543,"X":683,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126841Z"},{"ID":56144,"Name":"004","Points":4789,"X":666,"Y":333,"Continent":"K36","Bonus":3,"PlayerID":849020094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126842Z"},{"ID":56145,"Name":"Wioska cobra2ooo","Points":628,"X":708,"Y":587,"Continent":"K57","Bonus":0,"PlayerID":699734795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126843Z"},{"ID":56146,"Name":"Zeta pięć","Points":1164,"X":573,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849080011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126844Z"},{"ID":56147,"Name":"RPM CUSTOM 3","Points":3023,"X":556,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849102094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126844Z"},{"ID":56148,"Name":"Wioska barbarzyƄska","Points":1428,"X":390,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126845Z"},{"ID":56149,"Name":"Poznan 003","Points":494,"X":411,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":1924718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126846Z"},{"ID":56150,"Name":"All heil CSA","Points":509,"X":592,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699448276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126846Z"},{"ID":56151,"Name":"Wioska barbarzyƄska","Points":3533,"X":275,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126847Z"},{"ID":56152,"Name":"Wioska hiszpan78","Points":409,"X":277,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":699721590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126848Z"},{"ID":56153,"Name":"Kuzyn BƂaĆŒej","Points":5328,"X":583,"Y":714,"Continent":"K75","Bonus":1,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126849Z"},{"ID":56154,"Name":"Wioska oleska2002","Points":2963,"X":593,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":6296228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126849Z"},{"ID":56155,"Name":"BETON 111","Points":232,"X":663,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12685Z"},{"ID":56156,"Name":"Sony 911","Points":2296,"X":699,"Y":394,"Continent":"K36","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126851Z"},{"ID":56157,"Name":"Wioska barbarzyƄska","Points":2849,"X":357,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126851Z"},{"ID":56159,"Name":"062","Points":3342,"X":725,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126852Z"},{"ID":56160,"Name":"North 103","Points":2347,"X":484,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126853Z"},{"ID":56161,"Name":"Flap","Points":3009,"X":603,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126854Z"},{"ID":56162,"Name":"M001","Points":998,"X":278,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":1669587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126854Z"},{"ID":56163,"Name":"PiekƂo to inni","Points":3389,"X":651,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126855Z"},{"ID":56164,"Name":"Wioska szaikan96","Points":26,"X":620,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":3860614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126856Z"},{"ID":56165,"Name":"Wioska barbarzyƄska","Points":2106,"X":535,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126857Z"},{"ID":56166,"Name":"#044","Points":1050,"X":560,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126857Z"},{"ID":56167,"Name":"007","Points":5071,"X":318,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":7919620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126858Z"},{"ID":56168,"Name":"Alamo1","Points":2773,"X":718,"Y":565,"Continent":"K57","Bonus":8,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126859Z"},{"ID":56169,"Name":"bagienko_06","Points":2936,"X":559,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849093353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126859Z"},{"ID":56170,"Name":"PiekƂo to inni","Points":3257,"X":647,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12686Z"},{"ID":56171,"Name":"131.Stradi","Points":3170,"X":394,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126861Z"},{"ID":56172,"Name":"[840] Odludzie","Points":5032,"X":723,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126862Z"},{"ID":56174,"Name":"[0269]","Points":3715,"X":266,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126862Z"},{"ID":56175,"Name":"PPF-03","Points":4986,"X":521,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126863Z"},{"ID":56177,"Name":"Cadiz","Points":2813,"X":649,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126864Z"},{"ID":56178,"Name":"Wioska Lord Ɓukasz05","Points":2371,"X":726,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":8816336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126864Z"},{"ID":56179,"Name":"Nowa Baza 2","Points":4924,"X":613,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126865Z"},{"ID":56180,"Name":"247","Points":464,"X":451,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126866Z"},{"ID":56181,"Name":"Wioska bartekwach","Points":4275,"X":266,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":849107507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126866Z"},{"ID":56182,"Name":"Wioska barbarzyƄska","Points":427,"X":318,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126867Z"},{"ID":56183,"Name":"B015","Points":3613,"X":529,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126868Z"},{"ID":56184,"Name":"223...NORTH","Points":1639,"X":437,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126869Z"},{"ID":56185,"Name":"Flap","Points":4511,"X":609,"Y":291,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126869Z"},{"ID":56186,"Name":"Wioska XXARDASS","Points":4417,"X":546,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":1015528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12687Z"},{"ID":56187,"Name":"MojeDnoToWaszSzczyt","Points":4250,"X":498,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126871Z"},{"ID":56188,"Name":"Wioska AreYouHorny?","Points":3620,"X":720,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":849067079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126872Z"},{"ID":56189,"Name":"008","Points":8100,"X":398,"Y":290,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126872Z"},{"ID":56190,"Name":"C0237","Points":9020,"X":277,"Y":552,"Continent":"K52","Bonus":9,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126873Z"},{"ID":56191,"Name":"C.058","Points":1172,"X":725,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126874Z"},{"ID":56192,"Name":"Wioska barbarzyƄska","Points":317,"X":298,"Y":608,"Continent":"K62","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126874Z"},{"ID":56193,"Name":"Wioska agjao","Points":874,"X":500,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":849070220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126875Z"},{"ID":56194,"Name":"04Wioska barbarzyƄska","Points":4449,"X":354,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126876Z"},{"ID":56195,"Name":"009","Points":4210,"X":293,"Y":589,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126876Z"},{"ID":56196,"Name":"0048","Points":980,"X":478,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126877Z"},{"ID":56197,"Name":"*001*","Points":3270,"X":275,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":699791054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126878Z"},{"ID":56198,"Name":":) :)","Points":3385,"X":268,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":3972413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126879Z"},{"ID":56199,"Name":"Ave Why!","Points":1231,"X":472,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126879Z"},{"ID":56200,"Name":"C017","Points":1754,"X":535,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":698599365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12688Z"},{"ID":56201,"Name":"Wioska barbarzyƄska","Points":2058,"X":731,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126881Z"},{"ID":56202,"Name":"????","Points":5241,"X":490,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126881Z"},{"ID":56203,"Name":"Wioska barbarzyƄska","Points":1498,"X":387,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126882Z"},{"ID":56204,"Name":"!Wioska barbarzyƄska 2","Points":3190,"X":584,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126883Z"},{"ID":56205,"Name":"Wioska Stefal-S22","Points":792,"X":556,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":2764337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126884Z"},{"ID":56206,"Name":"osgiliath","Points":6696,"X":291,"Y":392,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126884Z"},{"ID":56207,"Name":"Mohicans","Points":5329,"X":727,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":6002527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126885Z"},{"ID":56208,"Name":"Wioska barczi1979","Points":3445,"X":400,"Y":701,"Continent":"K74","Bonus":0,"PlayerID":698692141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126886Z"},{"ID":56209,"Name":"Wioska35","Points":1358,"X":325,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126887Z"},{"ID":56210,"Name":"R 047","Points":3596,"X":491,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126887Z"},{"ID":56211,"Name":"mroczna puszcza","Points":1065,"X":294,"Y":391,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126888Z"},{"ID":56212,"Name":"PiekƂo to inni","Points":3578,"X":652,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126889Z"},{"ID":56213,"Name":"Wioska MannyKing97","Points":4481,"X":440,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849111244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12689Z"},{"ID":56214,"Name":"FP041","Points":5139,"X":469,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12689Z"},{"ID":56216,"Name":"|D| Cavemere","Points":6146,"X":455,"Y":722,"Continent":"K74","Bonus":9,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126891Z"},{"ID":56217,"Name":"K42 ADAMUS 022","Points":2748,"X":279,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126892Z"},{"ID":56218,"Name":"PóƂnocny Bagdad","Points":6521,"X":628,"Y":313,"Continent":"K36","Bonus":7,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126893Z"},{"ID":56219,"Name":"Las Vegas","Points":8602,"X":659,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":849111196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126893Z"},{"ID":56220,"Name":"A003","Points":3369,"X":336,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":849105102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126894Z"},{"ID":56221,"Name":"Wioska barbarzyƄska","Points":2051,"X":678,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126895Z"},{"ID":56222,"Name":"Wioska Grisza10","Points":6093,"X":653,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":896355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126895Z"},{"ID":56223,"Name":"Wioska barbarzyƄska","Points":469,"X":336,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":849101604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126896Z"},{"ID":56224,"Name":"[S]andacza","Points":4073,"X":274,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":849106971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126897Z"},{"ID":56225,"Name":"KONFA TO MARKA, NARKA","Points":2395,"X":288,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126897Z"},{"ID":56226,"Name":"Wioska barbarzyƄska","Points":2701,"X":356,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126898Z"},{"ID":56227,"Name":"New WorldA","Points":512,"X":274,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126899Z"},{"ID":56228,"Name":"Master","Points":8403,"X":274,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":849052289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1269Z"},{"ID":56229,"Name":"Wioska Kurji","Points":7434,"X":496,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":698324343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1269Z"},{"ID":56230,"Name":"$008$ Lordzik","Points":7376,"X":300,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126901Z"},{"ID":56231,"Name":"gory mgliste","Points":5000,"X":288,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126902Z"},{"ID":56232,"Name":"Wioska nortos17","Points":126,"X":336,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":699428898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126903Z"},{"ID":56233,"Name":"Wioska Wu7ek","Points":3220,"X":701,"Y":616,"Continent":"K67","Bonus":0,"PlayerID":849108157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126903Z"},{"ID":56234,"Name":"Sony 911","Points":4845,"X":678,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126904Z"},{"ID":56235,"Name":"Wioska barbarzyƄska","Points":1276,"X":349,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126905Z"},{"ID":56236,"Name":"Wioska barbarzyƄska","Points":6418,"X":534,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126905Z"},{"ID":56237,"Name":"CastAway !024","Points":4839,"X":711,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126906Z"},{"ID":56238,"Name":"C.059","Points":2794,"X":726,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126907Z"},{"ID":56240,"Name":"North 029","Points":6994,"X":508,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126908Z"},{"ID":56241,"Name":"Wioska piro78","Points":3534,"X":578,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699840189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126908Z"},{"ID":56242,"Name":"Spajki","Points":1111,"X":681,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126909Z"},{"ID":56243,"Name":"Wioska barbarzyƄska","Points":390,"X":552,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12691Z"},{"ID":56244,"Name":"C.060","Points":3193,"X":729,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126911Z"},{"ID":56245,"Name":"Arczi997 08","Points":359,"X":266,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126911Z"},{"ID":56246,"Name":"Bagno 33","Points":4626,"X":475,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126912Z"},{"ID":56247,"Name":"Wioska barbarzyƄska","Points":607,"X":370,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126913Z"},{"ID":56248,"Name":"Wioska barbarzyƄska","Points":2139,"X":705,"Y":389,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126914Z"},{"ID":56249,"Name":"PóƂnocny Bagdad","Points":6206,"X":629,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126914Z"},{"ID":56250,"Name":"44 barbarzyƄska","Points":3099,"X":273,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126915Z"},{"ID":56251,"Name":"Wioska barbarzyƄska","Points":986,"X":721,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126916Z"},{"ID":56252,"Name":"Wioska barbarzyƄska","Points":1619,"X":418,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126917Z"},{"ID":56253,"Name":"ZƂoty ƚwit","Points":622,"X":598,"Y":298,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126917Z"},{"ID":56254,"Name":"New World","Points":6996,"X":434,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126918Z"},{"ID":56255,"Name":"Wioska barbarzyƄska","Points":3442,"X":532,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126919Z"},{"ID":56256,"Name":"103 Wioska barbarzyƄska","Points":2926,"X":585,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126919Z"},{"ID":56257,"Name":"Winterthur II","Points":1644,"X":694,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":849109637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12692Z"},{"ID":56258,"Name":"Wioska36","Points":1392,"X":325,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126921Z"},{"ID":56259,"Name":"Wioska bartek696","Points":26,"X":367,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":6968280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126922Z"},{"ID":56260,"Name":"Z02","Points":2216,"X":371,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":698652014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126922Z"},{"ID":56261,"Name":"Wioska barbarzyƄska","Points":119,"X":362,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126923Z"},{"ID":56262,"Name":"Wioska","Points":1402,"X":734,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":849084474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126924Z"},{"ID":56263,"Name":"Wioska barbarzyƄska","Points":1056,"X":724,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126925Z"},{"ID":56264,"Name":"37.Etolia","Points":2831,"X":727,"Y":527,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126925Z"},{"ID":56265,"Name":"Wioska Henryk IV","Points":6361,"X":674,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":699421735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126926Z"},{"ID":56266,"Name":"0012zznowuk","Points":878,"X":707,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126927Z"},{"ID":56267,"Name":"XDX","Points":3264,"X":615,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126928Z"},{"ID":56268,"Name":"005 | North","Points":7668,"X":383,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126928Z"},{"ID":56269,"Name":"[0208]","Points":6028,"X":273,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126929Z"},{"ID":56270,"Name":"Alamo3","Points":2148,"X":723,"Y":563,"Continent":"K57","Bonus":7,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12693Z"},{"ID":56271,"Name":"Kheled-Zaram","Points":6032,"X":407,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126931Z"},{"ID":56272,"Name":"069 Wioska barbarzyƄska","Points":3785,"X":338,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126931Z"},{"ID":56273,"Name":"041 - Budowanko!","Points":5496,"X":535,"Y":725,"Continent":"K75","Bonus":9,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126932Z"},{"ID":56274,"Name":"2:32:57 496 198 99 66","Points":4745,"X":286,"Y":589,"Continent":"K52","Bonus":0,"PlayerID":3800097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126933Z"},{"ID":56275,"Name":"Wioska bastekx","Points":26,"X":720,"Y":418,"Continent":"K47","Bonus":0,"PlayerID":699855277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126934Z"},{"ID":56276,"Name":"Avanti!","Points":1763,"X":268,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126935Z"},{"ID":56277,"Name":"No.30","Points":606,"X":574,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126935Z"},{"ID":56278,"Name":"Wioska Natalii","Points":285,"X":618,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":849076678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126936Z"},{"ID":56279,"Name":"Wioska barbarzyƄska","Points":1186,"X":462,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126937Z"},{"ID":56280,"Name":"001Godziwa Wioska","Points":7744,"X":455,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":602408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126938Z"},{"ID":56282,"Name":"PPF-28","Points":1547,"X":537,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126938Z"},{"ID":56283,"Name":"001","Points":4381,"X":274,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":699282717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126939Z"},{"ID":56284,"Name":"Wioska barbarzyƄska","Points":1091,"X":371,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12694Z"},{"ID":56285,"Name":"Wioska barbarzyƄska","Points":293,"X":366,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126941Z"},{"ID":56286,"Name":"001","Points":4939,"X":301,"Y":394,"Continent":"K33","Bonus":0,"PlayerID":849109795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126941Z"},{"ID":56287,"Name":"O151","Points":2395,"X":309,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126942Z"},{"ID":56288,"Name":"Wioska webi","Points":183,"X":537,"Y":482,"Continent":"K45","Bonus":0,"PlayerID":849058207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126943Z"},{"ID":56289,"Name":"Wioska gall2","Points":1752,"X":272,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126943Z"},{"ID":56291,"Name":"Wioska barbarzyƄska","Points":1622,"X":353,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126944Z"},{"ID":56292,"Name":"Wioska barbarzyƄska","Points":333,"X":599,"Y":296,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126945Z"},{"ID":56293,"Name":"Wioska tomaszek74","Points":2045,"X":685,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":698151302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126946Z"},{"ID":56294,"Name":"New World","Points":3693,"X":418,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126947Z"},{"ID":56295,"Name":"Wioska barbarzyƄska","Points":4627,"X":722,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126947Z"},{"ID":56296,"Name":"Wioska 2","Points":1376,"X":664,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":849111050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126948Z"},{"ID":56298,"Name":"Wioska tedy1","Points":393,"X":660,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":3631404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126949Z"},{"ID":56299,"Name":"#0085","Points":2712,"X":579,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126949Z"},{"ID":56300,"Name":"Wioska Fieffe","Points":76,"X":609,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":8968520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12695Z"},{"ID":56301,"Name":"Wioska barbarzyƄska","Points":616,"X":617,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126951Z"},{"ID":56302,"Name":"Wioska ArturLublin","Points":1083,"X":609,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":698906643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126952Z"},{"ID":56303,"Name":"Enter Sandman","Points":523,"X":685,"Y":564,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126952Z"},{"ID":56304,"Name":"O121","Points":5785,"X":306,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126953Z"},{"ID":56305,"Name":"Wioska 008","Points":2631,"X":731,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126954Z"},{"ID":56306,"Name":"PiekƂo to inni","Points":2269,"X":657,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126954Z"},{"ID":56307,"Name":"C0315","Points":2410,"X":273,"Y":554,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126955Z"},{"ID":56308,"Name":"New World","Points":4257,"X":411,"Y":707,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126956Z"},{"ID":56309,"Name":"Vetiuss2","Points":1647,"X":281,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":849096399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126957Z"},{"ID":56310,"Name":"wwwb","Points":2632,"X":600,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126957Z"},{"ID":56311,"Name":"Wioska barbarzyƄska","Points":4947,"X":643,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126958Z"},{"ID":56312,"Name":"Wioska MORUSGRIN","Points":7252,"X":536,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":7590275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126959Z"},{"ID":56313,"Name":"72. Wioska 72","Points":2528,"X":278,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126959Z"},{"ID":56314,"Name":"047","Points":6046,"X":718,"Y":563,"Continent":"K57","Bonus":8,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12696Z"},{"ID":56315,"Name":"ble","Points":3758,"X":622,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126961Z"},{"ID":56316,"Name":"004","Points":10068,"X":294,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126962Z"},{"ID":56317,"Name":"B016","Points":3762,"X":531,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126962Z"},{"ID":56318,"Name":"Wioska barbarzyƄska","Points":4919,"X":543,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126963Z"},{"ID":56319,"Name":"#158#","Points":1064,"X":654,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126964Z"},{"ID":56320,"Name":"Belweder","Points":785,"X":281,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":699854312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126964Z"},{"ID":56321,"Name":"Psycha Siada","Points":8346,"X":315,"Y":640,"Continent":"K63","Bonus":8,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126965Z"},{"ID":56322,"Name":"#131#","Points":2855,"X":661,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126966Z"},{"ID":56323,"Name":"Wioska barbarzyƄska","Points":2214,"X":729,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126966Z"},{"ID":56324,"Name":"K67 26","Points":1802,"X":706,"Y":609,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126967Z"},{"ID":56325,"Name":"Winterthur","Points":3843,"X":693,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":849109637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126968Z"},{"ID":56326,"Name":"[831] Odludzie","Points":6157,"X":723,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126969Z"},{"ID":56327,"Name":"Wioska Aragorn StraĆŒnik PóƂnocy","Points":1364,"X":342,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":2051721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126969Z"},{"ID":56328,"Name":"[838] Odludzie","Points":5380,"X":721,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12697Z"},{"ID":56329,"Name":"003","Points":7137,"X":449,"Y":273,"Continent":"K24","Bonus":8,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126971Z"},{"ID":56330,"Name":"Wioska barbarzyƄska","Points":1058,"X":723,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126972Z"},{"ID":56331,"Name":"Wioska wertywer","Points":1031,"X":543,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":699469600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126972Z"},{"ID":56332,"Name":"X.02","Points":2641,"X":727,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126973Z"},{"ID":56333,"Name":"DEMON-SRT","Points":678,"X":462,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849098667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126974Z"},{"ID":56334,"Name":"024. Gloria Victis","Points":6194,"X":285,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126975Z"},{"ID":56335,"Name":"Wioska Hary666","Points":7110,"X":728,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":849104855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126975Z"},{"ID":56336,"Name":"Nowe IMPERIUM 9","Points":2907,"X":620,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126976Z"},{"ID":56337,"Name":"62. Wioska 62","Points":4593,"X":276,"Y":568,"Continent":"K52","Bonus":0,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126977Z"},{"ID":56338,"Name":"o018","Points":4211,"X":613,"Y":706,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126977Z"},{"ID":56339,"Name":"Odwierty","Points":670,"X":688,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126978Z"},{"ID":56340,"Name":"PóƂnocny Bagdad","Points":6531,"X":626,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126979Z"},{"ID":56341,"Name":"MojeDnoToWaszSzczyt","Points":4458,"X":495,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12698Z"},{"ID":56342,"Name":"|D| IS","Points":2241,"X":455,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12698Z"},{"ID":56343,"Name":"Wioska barbarzyƄska","Points":1680,"X":628,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126981Z"},{"ID":56344,"Name":"SmokeCity","Points":4782,"X":725,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":849111487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126982Z"},{"ID":56345,"Name":"Wioska barbarzyƄska","Points":2407,"X":608,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126983Z"},{"ID":56346,"Name":"Wioska barbarzyƄska","Points":2424,"X":685,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126983Z"},{"ID":56347,"Name":"Wioska barbarzyƄska","Points":2682,"X":706,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126984Z"},{"ID":56348,"Name":"Wioska Szrek5","Points":3784,"X":449,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":849020667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126985Z"},{"ID":56349,"Name":"wojo","Points":2239,"X":694,"Y":370,"Continent":"K36","Bonus":0,"PlayerID":849054951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126985Z"},{"ID":56350,"Name":"Wioska barbarzyƄska","Points":3349,"X":404,"Y":465,"Continent":"K44","Bonus":0,"PlayerID":6258092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126986Z"},{"ID":56351,"Name":"038. 5spajk5","Points":1276,"X":675,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126987Z"},{"ID":56352,"Name":"KONFA TO MARKA, NARKA","Points":4503,"X":274,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126987Z"},{"ID":56353,"Name":"C-006","Points":3003,"X":321,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":699406247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126988Z"},{"ID":56354,"Name":"012. Osada koczownikĂłw","Points":5726,"X":685,"Y":367,"Continent":"K36","Bonus":9,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126989Z"},{"ID":56355,"Name":"Wioska barbarzyƄska","Points":3225,"X":278,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12699Z"},{"ID":56356,"Name":"Wioska barbarzyƄska","Points":6421,"X":536,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12699Z"},{"ID":56357,"Name":"Wioska Gebels25","Points":158,"X":291,"Y":410,"Continent":"K42","Bonus":0,"PlayerID":848942618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126991Z"},{"ID":56358,"Name":"zielona2","Points":3662,"X":364,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":2105150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126992Z"},{"ID":56359,"Name":"=|51|=","Points":273,"X":687,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126992Z"},{"ID":56360,"Name":"Wioska barbarzyƄska","Points":2201,"X":735,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126993Z"},{"ID":56361,"Name":"Wioska wilka 06","Points":3247,"X":719,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":6786449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126994Z"},{"ID":56362,"Name":"[0270]","Points":3971,"X":265,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126995Z"},{"ID":56363,"Name":"002","Points":254,"X":366,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":281866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126995Z"},{"ID":56364,"Name":"Avanti!","Points":5339,"X":267,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126996Z"},{"ID":56365,"Name":"Wioska2 barbarzyƄska","Points":3221,"X":709,"Y":414,"Continent":"K47","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126997Z"},{"ID":56366,"Name":"????","Points":3638,"X":456,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126997Z"},{"ID":56367,"Name":"Wioska barbarzyƄska","Points":2942,"X":542,"Y":386,"Continent":"K35","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126998Z"},{"ID":56368,"Name":"Kapitol_24","Points":4229,"X":506,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.126999Z"},{"ID":56369,"Name":"Wioska barbarzyƄska","Points":688,"X":388,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127Z"},{"ID":56370,"Name":"Motorola l10","Points":3061,"X":363,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127Z"},{"ID":56371,"Name":"ZZZ .::. cinek3456/12","Points":1244,"X":585,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":33900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127001Z"},{"ID":56372,"Name":"Wioska MauritiusMagnus","Points":138,"X":393,"Y":301,"Continent":"K33","Bonus":0,"PlayerID":7508390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127002Z"},{"ID":56373,"Name":"K67 06","Points":3817,"X":702,"Y":622,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127002Z"},{"ID":56374,"Name":"Wioska 3","Points":375,"X":295,"Y":401,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127003Z"},{"ID":56375,"Name":"Psycha Siada","Points":6824,"X":319,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":8099868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127004Z"},{"ID":56376,"Name":"Wioska 014","Points":5055,"X":683,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":7999103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127005Z"},{"ID":56377,"Name":"Wioska barbarzyƄska","Points":569,"X":590,"Y":294,"Continent":"K25","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127005Z"},{"ID":56378,"Name":"Wioska 001","Points":3889,"X":692,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":6472706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127006Z"},{"ID":56379,"Name":"Wioska barbarzyƄska","Points":625,"X":307,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127007Z"},{"ID":56380,"Name":"Wioska barbarzyƄska","Points":1028,"X":634,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127007Z"},{"ID":56381,"Name":".achim.","Points":2087,"X":571,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127008Z"},{"ID":56382,"Name":"A#034","Points":9037,"X":724,"Y":529,"Continent":"K57","Bonus":6,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127009Z"},{"ID":56383,"Name":"Wioska DRAGONMIR","Points":1274,"X":271,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":698171150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12701Z"},{"ID":56385,"Name":"sh08","Points":2237,"X":514,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12701Z"},{"ID":56386,"Name":"Wioska barbarzyƄska","Points":2419,"X":687,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127011Z"},{"ID":56387,"Name":"Wioska Jackob666","Points":6979,"X":726,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":849104855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127012Z"},{"ID":56388,"Name":"North 030","Points":6888,"X":517,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127012Z"},{"ID":56389,"Name":"Bessa 017","Points":5039,"X":642,"Y":680,"Continent":"K66","Bonus":7,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127013Z"},{"ID":56390,"Name":"069","Points":1647,"X":727,"Y":516,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127014Z"},{"ID":56391,"Name":"isengard","Points":3716,"X":295,"Y":390,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127015Z"},{"ID":56392,"Name":"Wioska barbarzyƄska","Points":1949,"X":538,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127015Z"},{"ID":56393,"Name":"New WorldA","Points":1102,"X":272,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127016Z"},{"ID":56394,"Name":"Wioska barbarzyƄska","Points":4865,"X":642,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127017Z"},{"ID":56395,"Name":"#04!","Points":8821,"X":640,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":849101884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127018Z"},{"ID":56396,"Name":"Wioska barbarzyƄska","Points":4939,"X":365,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127018Z"},{"ID":56397,"Name":"Wioska Zero 1.","Points":2136,"X":437,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":7150939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127019Z"},{"ID":56398,"Name":"Wioska barbarzyƄska","Points":3628,"X":681,"Y":482,"Continent":"K46","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12702Z"},{"ID":56399,"Name":"New World","Points":6396,"X":413,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127021Z"},{"ID":56400,"Name":"Wioska barbarzyƄska","Points":674,"X":724,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127021Z"},{"ID":56401,"Name":"Wioska barbarzyƄska","Points":2590,"X":536,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127022Z"},{"ID":56402,"Name":"PóƂnocny Bagdad","Points":3164,"X":624,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127023Z"},{"ID":56403,"Name":"C0304","Points":3307,"X":275,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127023Z"},{"ID":56404,"Name":"www","Points":4034,"X":602,"Y":706,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127024Z"},{"ID":56405,"Name":"Wioska barbarzyƄska","Points":8664,"X":729,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127025Z"},{"ID":56407,"Name":"New World","Points":7891,"X":434,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127026Z"},{"ID":56409,"Name":"Wioska Aritian1","Points":7448,"X":547,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":7492426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127026Z"},{"ID":56410,"Name":"D011","Points":2828,"X":565,"Y":279,"Continent":"K25","Bonus":4,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127027Z"},{"ID":56411,"Name":"Wioska agawy","Points":1229,"X":727,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":7259218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127028Z"},{"ID":56412,"Name":"X.04","Points":3039,"X":731,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127028Z"},{"ID":56413,"Name":"Osada koczownikĂłw","Points":1149,"X":639,"Y":314,"Continent":"K36","Bonus":4,"PlayerID":1018357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127029Z"},{"ID":56414,"Name":"Wioska barbarzyƄska","Points":1909,"X":415,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12703Z"},{"ID":56416,"Name":"A#032","Points":9797,"X":708,"Y":407,"Continent":"K47","Bonus":4,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127031Z"},{"ID":56417,"Name":"Wioska1","Points":743,"X":549,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849085293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127031Z"},{"ID":56418,"Name":"Avanti!","Points":2007,"X":271,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127032Z"},{"ID":56419,"Name":"New World","Points":3820,"X":414,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127033Z"},{"ID":56420,"Name":"E003","Points":2036,"X":634,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127034Z"},{"ID":56421,"Name":"P4Kasik","Points":1442,"X":275,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":699627771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127034Z"},{"ID":56422,"Name":"Wioska barbarzyƄska","Points":605,"X":341,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127035Z"},{"ID":56423,"Name":"Wioska barbarzyƄska","Points":2063,"X":732,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127036Z"},{"ID":56424,"Name":"Avanti!","Points":5261,"X":268,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127036Z"},{"ID":56425,"Name":"New WorldA","Points":1123,"X":271,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127037Z"},{"ID":56426,"Name":"Wioska 010","Points":773,"X":687,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1647052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127038Z"},{"ID":56428,"Name":"Kapitol_17","Points":4133,"X":500,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127038Z"},{"ID":56429,"Name":"New World","Points":6559,"X":424,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127039Z"},{"ID":56430,"Name":"Wioska barbarzyƄska","Points":789,"X":344,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12704Z"},{"ID":56431,"Name":"Wioska dalesz1212","Points":947,"X":387,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":8217130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127041Z"},{"ID":56432,"Name":"KONFA TO MARKA, NARKA","Points":4298,"X":273,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127041Z"},{"ID":56433,"Name":"Zakątek","Points":2967,"X":271,"Y":461,"Continent":"K42","Bonus":3,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127042Z"},{"ID":56434,"Name":"atol 6","Points":948,"X":277,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":848930898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127043Z"},{"ID":56435,"Name":"36.","Points":1105,"X":328,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127043Z"},{"ID":56436,"Name":"Wioska barbarzyƄska","Points":2624,"X":371,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127044Z"},{"ID":56437,"Name":"Wioska barbarzyƄska","Points":2229,"X":646,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127045Z"},{"ID":56438,"Name":"Avanti!","Points":5296,"X":265,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127046Z"},{"ID":56439,"Name":"064 Osada koczownikĂłw","Points":9792,"X":539,"Y":277,"Continent":"K25","Bonus":2,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127046Z"},{"ID":56441,"Name":"Dajanka 26","Points":646,"X":290,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":849012843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127047Z"},{"ID":56443,"Name":"Wioska barbarzyƄska","Points":2768,"X":347,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127048Z"},{"ID":56445,"Name":"Wioska barbarzyƄska","Points":870,"X":320,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127048Z"},{"ID":56446,"Name":"Nowe Dobra - budowa","Points":3987,"X":686,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127049Z"},{"ID":56447,"Name":"Wioska barbarzyƄska","Points":2473,"X":421,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12705Z"},{"ID":56448,"Name":"srodziemie","Points":2129,"X":285,"Y":401,"Continent":"K42","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12705Z"},{"ID":56449,"Name":"Wioska barbarzyƄska","Points":721,"X":427,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127051Z"},{"ID":56450,"Name":"001 Osada koczownikĂłw tu ƛlij","Points":10544,"X":292,"Y":594,"Continent":"K52","Bonus":9,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127052Z"},{"ID":56451,"Name":"Wioska Lady elo320","Points":3480,"X":264,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":699632387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127053Z"},{"ID":56452,"Name":"Wioska barbarzyƄska","Points":5270,"X":389,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127053Z"},{"ID":56453,"Name":"MaƂy","Points":262,"X":726,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":699724603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127054Z"},{"ID":56455,"Name":"UlanyKaplanisko","Points":524,"X":544,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":849111632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127055Z"},{"ID":56456,"Name":"Wioska barbarzyƄska","Points":1920,"X":413,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127055Z"},{"ID":56457,"Name":"Wioska barbarzyƄska","Points":544,"X":374,"Y":696,"Continent":"K63","Bonus":0,"PlayerID":849030086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127056Z"},{"ID":56458,"Name":"084 obrzeĆŒa","Points":910,"X":272,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127057Z"},{"ID":56459,"Name":"Poznan 000","Points":3924,"X":414,"Y":289,"Continent":"K24","Bonus":0,"PlayerID":1924718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127058Z"},{"ID":56460,"Name":"072a Wioska barbarzyƄska","Points":4037,"X":339,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127058Z"},{"ID":56462,"Name":"Wioska bolek13241","Points":2648,"X":724,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":849064084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127059Z"},{"ID":56463,"Name":"Wioska barbarzyƄska","Points":2507,"X":720,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12706Z"},{"ID":56464,"Name":"O112","Points":7685,"X":298,"Y":617,"Continent":"K62","Bonus":6,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127061Z"},{"ID":56465,"Name":"Wioska barbarzyƄska","Points":447,"X":315,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127061Z"},{"ID":56466,"Name":"budowa 04","Points":2183,"X":601,"Y":710,"Continent":"K76","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127062Z"},{"ID":56467,"Name":"New World","Points":6612,"X":414,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127063Z"},{"ID":56468,"Name":"Wioska barbarzyƄska","Points":1249,"X":398,"Y":713,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127063Z"},{"ID":56469,"Name":"EmilianĂłw","Points":911,"X":272,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":849116221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127064Z"},{"ID":56471,"Name":"New World","Points":6519,"X":412,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127065Z"},{"ID":56473,"Name":"Wioska barbarzyƄskaG","Points":457,"X":293,"Y":611,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127066Z"},{"ID":56474,"Name":"Wioska barbarzyƄska","Points":2215,"X":716,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127066Z"},{"ID":56475,"Name":"Wioska barbarzyƄska","Points":2420,"X":705,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127067Z"},{"ID":56476,"Name":"Urzędowa 2","Points":815,"X":323,"Y":343,"Continent":"K33","Bonus":0,"PlayerID":699802012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127068Z"},{"ID":56477,"Name":"Wioska Puma79","Points":2045,"X":323,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":848882397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127069Z"},{"ID":56478,"Name":"Wioska barbarzyƄska","Points":2193,"X":704,"Y":380,"Continent":"K37","Bonus":0,"PlayerID":1767876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127069Z"},{"ID":56479,"Name":"Kapitol_27","Points":2558,"X":500,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12707Z"},{"ID":56480,"Name":"PóƂnocny Bagdad","Points":3435,"X":622,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127071Z"},{"ID":56481,"Name":"Nowe Dobra - budowa","Points":5043,"X":686,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127072Z"},{"ID":56483,"Name":"North K25","Points":2157,"X":532,"Y":270,"Continent":"K25","Bonus":7,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127073Z"},{"ID":56485,"Name":"ZƂoty ƚwit","Points":930,"X":595,"Y":288,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127073Z"},{"ID":56486,"Name":"03 Wioska barbarzyƄska","Points":1884,"X":726,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":8785003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127074Z"},{"ID":56487,"Name":"043","Points":982,"X":677,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127075Z"},{"ID":56488,"Name":"Wioska barbarzyƄska","Points":2940,"X":725,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127075Z"},{"ID":56489,"Name":"KONFA TO MARKA, NARKA","Points":6914,"X":271,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127076Z"},{"ID":56490,"Name":"Wioska barbarzyƄska","Points":827,"X":711,"Y":403,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127077Z"},{"ID":56491,"Name":"nr7","Points":1319,"X":637,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127078Z"},{"ID":56492,"Name":"Wioska barbarzyƄska","Points":6266,"X":389,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127078Z"},{"ID":56493,"Name":"PPF-16","Points":2936,"X":522,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127079Z"},{"ID":56494,"Name":"Wioska PaweƂ I Wspanialy","Points":1643,"X":319,"Y":634,"Continent":"K63","Bonus":0,"PlayerID":470266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12708Z"},{"ID":56495,"Name":"B012","Points":3569,"X":528,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12708Z"},{"ID":56496,"Name":"Wioska sos1234","Points":1258,"X":646,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":7150683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127081Z"},{"ID":56497,"Name":"Wioska barbarzyƄska","Points":488,"X":367,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127082Z"},{"ID":56498,"Name":"Wioska ajnoƂ","Points":3035,"X":308,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":6647642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127083Z"},{"ID":56499,"Name":"Wioska barbarzyƄska","Points":6504,"X":651,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127083Z"},{"ID":56500,"Name":".achim.","Points":2109,"X":578,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127084Z"},{"ID":56501,"Name":"#0063","Points":2791,"X":573,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127085Z"},{"ID":56502,"Name":"011","Points":934,"X":403,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":9283775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127086Z"},{"ID":56503,"Name":"Wioska 015","Points":2783,"X":680,"Y":348,"Continent":"K36","Bonus":8,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127086Z"},{"ID":56504,"Name":"Wioska seba3333","Points":1796,"X":520,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849110382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127087Z"},{"ID":56505,"Name":"073 Wioska barbarzyƄska","Points":2566,"X":341,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127088Z"},{"ID":56506,"Name":"GRABARNIA","Points":3784,"X":692,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":3957237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127089Z"},{"ID":56507,"Name":"New World","Points":8287,"X":427,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127089Z"},{"ID":56508,"Name":"Osada koczownikĂłw","Points":7406,"X":723,"Y":579,"Continent":"K57","Bonus":8,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12709Z"},{"ID":56509,"Name":"Wioska SzopPracz93","Points":450,"X":402,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849099131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127091Z"},{"ID":56510,"Name":"Maryna 3","Points":1025,"X":269,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":699650981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127091Z"},{"ID":56511,"Name":"Wioska Developer1994","Points":4147,"X":686,"Y":605,"Continent":"K66","Bonus":0,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127092Z"},{"ID":56512,"Name":"Wioska barbarzyƄska","Points":4671,"X":639,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127093Z"},{"ID":56513,"Name":"C0317","Points":2427,"X":271,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127093Z"},{"ID":56514,"Name":"061","Points":2291,"X":725,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127094Z"},{"ID":56515,"Name":"Wioska barbarzyƄska","Points":3509,"X":276,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127095Z"},{"ID":56516,"Name":"Wioska Dragonics1991","Points":1549,"X":336,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":849111732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127096Z"},{"ID":56517,"Name":"C0296","Points":3470,"X":273,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127096Z"},{"ID":56518,"Name":"backstage 5","Points":2867,"X":707,"Y":401,"Continent":"K47","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127097Z"},{"ID":56520,"Name":"37.","Points":2197,"X":333,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127098Z"},{"ID":56521,"Name":"Azgeda","Points":1754,"X":629,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":849048455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127098Z"},{"ID":56522,"Name":"Wioska Jabolek","Points":3119,"X":727,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":698654164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127099Z"},{"ID":56523,"Name":"Wioska barbarzyƄska","Points":3382,"X":702,"Y":397,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1271Z"},{"ID":56524,"Name":"BB3","Points":1661,"X":270,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":849110365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127101Z"},{"ID":56525,"Name":"Wioska barbarzyƄska","Points":519,"X":313,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127101Z"},{"ID":56526,"Name":".3.!","Points":2168,"X":287,"Y":411,"Continent":"K42","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127102Z"},{"ID":56527,"Name":"kww09","Points":1856,"X":728,"Y":544,"Continent":"K57","Bonus":0,"PlayerID":699831860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127103Z"},{"ID":56528,"Name":"Wioska Mr.ElCzapo","Points":3303,"X":511,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":849096990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127103Z"},{"ID":56529,"Name":"Wioska barbarzyƄska","Points":2786,"X":687,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127104Z"},{"ID":56530,"Name":"Wioska alexwpr","Points":3853,"X":323,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":699802012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127105Z"},{"ID":56531,"Name":"king-pin","Points":7717,"X":300,"Y":396,"Continent":"K33","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127106Z"},{"ID":56532,"Name":"059.","Points":9850,"X":445,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127106Z"},{"ID":56533,"Name":"Wioska barbarzyƄska","Points":554,"X":343,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127107Z"},{"ID":56534,"Name":"Wioska barbarzyƄska","Points":317,"X":598,"Y":709,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127108Z"},{"ID":56535,"Name":"PPF-25","Points":1908,"X":534,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127108Z"},{"ID":56536,"Name":"Nowa baza 1","Points":6085,"X":597,"Y":707,"Continent":"K75","Bonus":9,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127109Z"},{"ID":56537,"Name":"Wioska 2","Points":1693,"X":514,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849100615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12711Z"},{"ID":56538,"Name":"North K25","Points":2681,"X":527,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127111Z"},{"ID":56539,"Name":"Wioska barbarzyƄska","Points":2855,"X":729,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127111Z"},{"ID":56540,"Name":"Wioska barbarzyƄska","Points":1749,"X":312,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127112Z"},{"ID":56541,"Name":"Wioska barbarzyƄska","Points":3482,"X":390,"Y":709,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127113Z"},{"ID":56542,"Name":"Wioska kilolo","Points":321,"X":267,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":699844880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127113Z"},{"ID":56543,"Name":"056","Points":1113,"X":691,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127114Z"},{"ID":56544,"Name":"Wioska misiek650","Points":189,"X":339,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":849022063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127115Z"},{"ID":56545,"Name":"[0238]","Points":4095,"X":270,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127116Z"},{"ID":56546,"Name":"Saran11","Points":350,"X":408,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127116Z"},{"ID":56547,"Name":"022","Points":1463,"X":302,"Y":614,"Continent":"K63","Bonus":7,"PlayerID":699356968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127117Z"},{"ID":56548,"Name":"Wioska barbarzyƄska","Points":720,"X":591,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127118Z"},{"ID":56549,"Name":"Wioska barbarzyƄska","Points":2259,"X":601,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127119Z"},{"ID":56550,"Name":"Wioska Iceeman","Points":381,"X":621,"Y":703,"Continent":"K76","Bonus":0,"PlayerID":584989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127119Z"},{"ID":56551,"Name":".achim.","Points":3442,"X":569,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12712Z"},{"ID":56552,"Name":"017","Points":1771,"X":396,"Y":292,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127121Z"},{"ID":56553,"Name":"070","Points":1836,"X":729,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127122Z"},{"ID":56554,"Name":"181.02","Points":887,"X":329,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":7221139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127122Z"},{"ID":56555,"Name":"Wioska barbarzyƄska","Points":2081,"X":734,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127123Z"},{"ID":56556,"Name":"004 Rohan II","Points":6858,"X":525,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849100383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127124Z"},{"ID":56557,"Name":"#020","Points":2665,"X":546,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127125Z"},{"ID":56558,"Name":"Wioska barbarzyƄska","Points":622,"X":304,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127125Z"},{"ID":56559,"Name":"znam ostropesta 2","Points":2426,"X":460,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127126Z"},{"ID":56560,"Name":"Hardex","Points":5469,"X":519,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":849110382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127127Z"},{"ID":56561,"Name":"#021","Points":2552,"X":548,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127127Z"},{"ID":56562,"Name":"Wioska barbarzyƄska","Points":1251,"X":705,"Y":391,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127128Z"},{"ID":56563,"Name":"0126","Points":1120,"X":694,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127129Z"},{"ID":56564,"Name":"Wioska barbarzyƄska","Points":1574,"X":568,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849010386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12713Z"},{"ID":56565,"Name":"Wioska barbarzyƄska","Points":410,"X":331,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12713Z"},{"ID":56566,"Name":"031. Brauer92","Points":5732,"X":694,"Y":382,"Continent":"K36","Bonus":5,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127131Z"},{"ID":56567,"Name":"Wioska Pracz 6","Points":6348,"X":309,"Y":626,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127132Z"},{"ID":56568,"Name":"New World","Points":6995,"X":420,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127133Z"},{"ID":56569,"Name":"Wioska barbarzyƄska","Points":1514,"X":352,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127133Z"},{"ID":56570,"Name":"Wyspa 025","Points":1817,"X":280,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127134Z"},{"ID":56572,"Name":"Wioska barbarzyƄska","Points":932,"X":730,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127135Z"},{"ID":56573,"Name":"001","Points":5940,"X":699,"Y":393,"Continent":"K36","Bonus":0,"PlayerID":8019812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127136Z"},{"ID":56574,"Name":"CastAway !020","Points":5351,"X":711,"Y":589,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127136Z"},{"ID":56575,"Name":"Wioska z Pracza 3","Points":2194,"X":303,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127137Z"},{"ID":56576,"Name":"Taran","Points":2387,"X":545,"Y":378,"Continent":"K35","Bonus":0,"PlayerID":699170684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127138Z"},{"ID":56577,"Name":"108. Akala","Points":2527,"X":695,"Y":626,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127138Z"},{"ID":56578,"Name":"Wioska barbarzyƄska","Points":424,"X":333,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127139Z"},{"ID":56579,"Name":"ƚw181*008","Points":818,"X":674,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12714Z"},{"ID":56580,"Name":"Wioska Glapy 1.","Points":2858,"X":440,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":7150939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127141Z"},{"ID":56581,"Name":"Ave Why!","Points":1069,"X":508,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127141Z"},{"ID":56582,"Name":"062KP","Points":2017,"X":482,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127142Z"},{"ID":56583,"Name":"Wioska barbarzyƄska","Points":1505,"X":691,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":699664910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127143Z"},{"ID":56584,"Name":"Wioska barbarzyƄska","Points":2940,"X":395,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127143Z"},{"ID":56586,"Name":"Osada koczownikĂłw","Points":4094,"X":658,"Y":330,"Continent":"K36","Bonus":6,"PlayerID":849111196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127144Z"},{"ID":56587,"Name":"Wioska XXXRETARDION","Points":716,"X":719,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":848924648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127145Z"},{"ID":56588,"Name":"O116","Points":6274,"X":314,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127146Z"},{"ID":56589,"Name":"P 181","Points":1691,"X":715,"Y":583,"Continent":"K57","Bonus":0,"PlayerID":8997874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127146Z"},{"ID":56590,"Name":"Wioska barbarzyƄska","Points":552,"X":302,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127147Z"},{"ID":56591,"Name":"#027","Points":1467,"X":547,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127148Z"},{"ID":56592,"Name":"Wioska barbarzyƄska","Points":2237,"X":735,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127149Z"},{"ID":56593,"Name":"North 072","Points":3154,"X":502,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127149Z"},{"ID":56594,"Name":"Wioska barbarzyƄska 17","Points":3190,"X":344,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12715Z"},{"ID":56595,"Name":"Wioska barbarzyƄska","Points":208,"X":316,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127151Z"},{"ID":56596,"Name":"PóƂnocny Bagdad","Points":2994,"X":631,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127151Z"},{"ID":56597,"Name":"Wioska pebloss","Points":3975,"X":317,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":849111911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127152Z"},{"ID":56598,"Name":"K67 24","Points":2199,"X":708,"Y":611,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127153Z"},{"ID":56599,"Name":"079. Wioska barbarzyƄska","Points":3900,"X":732,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127154Z"},{"ID":56600,"Name":"????","Points":5551,"X":491,"Y":263,"Continent":"K24","Bonus":9,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127154Z"},{"ID":56601,"Name":"Wioska barbarzyƄska","Points":2422,"X":398,"Y":295,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127155Z"},{"ID":56602,"Name":"Wioska barbarzyƄska","Points":368,"X":368,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127156Z"},{"ID":56603,"Name":"D024","Points":3652,"X":563,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127157Z"},{"ID":56605,"Name":"ZƂoty ƚwit","Points":1236,"X":592,"Y":291,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127157Z"},{"ID":56606,"Name":"Wioska ZiomekWafla","Points":4262,"X":459,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849090573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127158Z"},{"ID":56607,"Name":"Wioska barbarzyƄska","Points":669,"X":271,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":699662232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127159Z"},{"ID":56608,"Name":"Wioska kowala","Points":4362,"X":726,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":849106923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127159Z"},{"ID":56609,"Name":"Osada koczownikĂłw","Points":7932,"X":386,"Y":706,"Continent":"K73","Bonus":8,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12716Z"},{"ID":56610,"Name":"New WorldA","Points":1381,"X":269,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127161Z"},{"ID":56611,"Name":"Wioska barbarzyƄska","Points":8179,"X":542,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127162Z"},{"ID":56612,"Name":"Ave Why!","Points":554,"X":521,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127162Z"},{"ID":56613,"Name":"E03","Points":528,"X":305,"Y":384,"Continent":"K33","Bonus":0,"PlayerID":6301789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127163Z"},{"ID":56614,"Name":"020 - Budowanko!","Points":5513,"X":478,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127164Z"},{"ID":56615,"Name":"Wioska 5","Points":266,"X":294,"Y":402,"Continent":"K42","Bonus":0,"PlayerID":699763225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127164Z"},{"ID":56616,"Name":"Nowa 67","Points":2345,"X":712,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127165Z"},{"ID":56617,"Name":"#033","Points":1616,"X":559,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127166Z"},{"ID":56618,"Name":"Wioska 018","Points":1344,"X":670,"Y":346,"Continent":"K36","Bonus":4,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127167Z"},{"ID":56619,"Name":"JaskóƂcze Gniazdo","Points":5281,"X":721,"Y":415,"Continent":"K47","Bonus":0,"PlayerID":9095581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127167Z"},{"ID":56620,"Name":"3lobit","Points":847,"X":482,"Y":366,"Continent":"K34","Bonus":0,"PlayerID":1581890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127168Z"},{"ID":56621,"Name":"Wioska barbarzyƄska","Points":1051,"X":633,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127169Z"},{"ID":56622,"Name":"macqu","Points":4337,"X":582,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":849112029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127169Z"},{"ID":56623,"Name":"Wioska Paxon","Points":4031,"X":580,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849112033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12717Z"},{"ID":56624,"Name":"Wioska barbarzyƄska","Points":1766,"X":350,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127171Z"},{"ID":56625,"Name":"K42 ADAMUS 020","Points":3695,"X":275,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127172Z"},{"ID":56626,"Name":"wwwb","Points":2153,"X":598,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127172Z"},{"ID":56627,"Name":"Wioska barbarzyƄska","Points":3890,"X":526,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127173Z"},{"ID":56628,"Name":"Etitek 6","Points":778,"X":728,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":848999448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127174Z"},{"ID":56629,"Name":"GnojĂłwa","Points":4198,"X":711,"Y":411,"Continent":"K47","Bonus":1,"PlayerID":848902592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127174Z"},{"ID":56630,"Name":"Gdynia","Points":1941,"X":447,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127175Z"},{"ID":56631,"Name":"009. Osada koczownikĂłw","Points":5810,"X":697,"Y":382,"Continent":"K36","Bonus":1,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127176Z"},{"ID":56632,"Name":"bagienko_05","Points":2698,"X":574,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":849093353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127177Z"},{"ID":56633,"Name":"#0223 barbarzyƄska","Points":2921,"X":661,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127177Z"},{"ID":56634,"Name":"New World","Points":3320,"X":413,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127178Z"},{"ID":56635,"Name":"Wioska barbarzyƄska","Points":1821,"X":391,"Y":290,"Continent":"K23","Bonus":0,"PlayerID":6186491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127179Z"},{"ID":56636,"Name":"0000035Z","Points":2139,"X":280,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127179Z"},{"ID":56637,"Name":"PóƂnocny Bagdad","Points":6621,"X":629,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12718Z"},{"ID":56638,"Name":"Nowy 0002","Points":1155,"X":294,"Y":603,"Continent":"K62","Bonus":3,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127181Z"},{"ID":56639,"Name":"0000033Z","Points":2841,"X":277,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127181Z"},{"ID":56640,"Name":"Avanti!","Points":5095,"X":271,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127182Z"},{"ID":56641,"Name":"Wioska Lord kongo","Points":7132,"X":733,"Y":481,"Continent":"K47","Bonus":0,"PlayerID":8877886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127183Z"},{"ID":56642,"Name":"$012$ Volcano","Points":1170,"X":302,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127184Z"},{"ID":56643,"Name":"Wioska herqers","Points":3431,"X":338,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":849112094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127184Z"},{"ID":56644,"Name":"Wioska RozbiĂłrka","Points":80,"X":669,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":699040431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127185Z"},{"ID":56645,"Name":"New World","Points":7124,"X":425,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127186Z"},{"ID":56646,"Name":"Sony 911","Points":3170,"X":671,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127186Z"},{"ID":56647,"Name":"Na SsSskraju","Points":699,"X":278,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127187Z"},{"ID":56648,"Name":"KarlĂłwek","Points":7165,"X":724,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":849111792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127188Z"},{"ID":56649,"Name":"Wioska barbarzyƄska","Points":3177,"X":389,"Y":707,"Continent":"K73","Bonus":0,"PlayerID":2105150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127188Z"},{"ID":56651,"Name":"Wioska barbarzyƄska","Points":5628,"X":646,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127189Z"},{"ID":56652,"Name":"sony911","Points":1834,"X":675,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12719Z"},{"ID":56653,"Name":"061KP","Points":1895,"X":491,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127191Z"},{"ID":56654,"Name":"Wioska barbarzyƄska","Points":329,"X":326,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127191Z"},{"ID":56655,"Name":"Wioska barbarzyƄska","Points":758,"X":374,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127192Z"},{"ID":56656,"Name":"004","Points":4657,"X":448,"Y":272,"Continent":"K24","Bonus":4,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127193Z"},{"ID":56657,"Name":"AGITER","Points":400,"X":339,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":849108762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127194Z"},{"ID":56658,"Name":"Wioska barbarzyƄska","Points":3520,"X":363,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127194Z"},{"ID":56659,"Name":"#031","Points":1761,"X":556,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127195Z"},{"ID":56660,"Name":"Wioska barbarzyƄska","Points":341,"X":322,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127196Z"},{"ID":56661,"Name":"Nowe IMPERIUM 6","Points":5485,"X":617,"Y":701,"Continent":"K76","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127196Z"},{"ID":56662,"Name":"Wioska barbarzyƄska","Points":1660,"X":390,"Y":706,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127197Z"},{"ID":56663,"Name":"K67 22","Points":3232,"X":709,"Y":606,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127198Z"},{"ID":56664,"Name":"MojeDnoToWaszSzczyt","Points":5442,"X":481,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127198Z"},{"ID":56665,"Name":"SZczytno","Points":932,"X":526,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":698934729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127199Z"},{"ID":56666,"Name":"Wioska barbarzyƄska","Points":4870,"X":640,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1272Z"},{"ID":56667,"Name":"Wioska Puchencjusz I WspaniaƂy","Points":2008,"X":735,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":849107188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127201Z"},{"ID":56669,"Name":"04Wioska barbarzyƄska","Points":4485,"X":358,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127201Z"},{"ID":56670,"Name":"Wioska barbarzyƄska","Points":267,"X":264,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127202Z"},{"ID":56671,"Name":"035 - Budowanko!","Points":5513,"X":476,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127203Z"},{"ID":56672,"Name":"#134#","Points":2016,"X":664,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127203Z"},{"ID":56673,"Name":"MojeDnoToWaszSzczyt","Points":4449,"X":490,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127204Z"},{"ID":56674,"Name":"Wioska barbarzyƄska","Points":2770,"X":387,"Y":702,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127205Z"},{"ID":56675,"Name":"Wioska barbarzyƄska","Points":1263,"X":269,"Y":455,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127206Z"},{"ID":56676,"Name":"MojeDnoToWaszSzczyt","Points":5070,"X":482,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127206Z"},{"ID":56677,"Name":"WZ14","Points":1081,"X":696,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127207Z"},{"ID":56678,"Name":"Wioska barbarzyƄska","Points":2035,"X":731,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127208Z"},{"ID":56679,"Name":"Wioska barbarzyƄska","Points":1951,"X":705,"Y":390,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127208Z"},{"ID":56680,"Name":"Taka.","Points":2052,"X":484,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127209Z"},{"ID":56681,"Name":"Wioska barbarzyƄska","Points":1259,"X":722,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12721Z"},{"ID":56682,"Name":"Wioska Zawodnik 4","Points":2347,"X":565,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":698655859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127211Z"},{"ID":56683,"Name":"New World","Points":7762,"X":422,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127211Z"},{"ID":56684,"Name":"kww08","Points":1194,"X":723,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127212Z"},{"ID":56685,"Name":"WZ12","Points":1721,"X":695,"Y":613,"Continent":"K66","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127213Z"},{"ID":56686,"Name":"Wioska barbarzyƄska","Points":80,"X":670,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127213Z"},{"ID":56687,"Name":"Wioska barbarzyƄska","Points":1083,"X":629,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127214Z"},{"ID":56688,"Name":"066","Points":2302,"X":726,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":699413040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127215Z"},{"ID":56689,"Name":"J**** P**","Points":1315,"X":489,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":849096435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127216Z"},{"ID":56690,"Name":"Wioska barbarzyƄska","Points":4389,"X":721,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127216Z"},{"ID":56691,"Name":"0112","Points":963,"X":704,"Y":381,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127217Z"},{"ID":56692,"Name":"Wioska 020","Points":967,"X":672,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":7226782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127218Z"},{"ID":56693,"Name":"Alamo6","Points":1110,"X":716,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127218Z"},{"ID":56694,"Name":"108 Wioska barbarzyƄska","Points":761,"X":584,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127219Z"},{"ID":56695,"Name":"Wioska barbarzyƄska","Points":1075,"X":585,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":849112033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12722Z"},{"ID":56696,"Name":"Wioska barbarzyƄska","Points":3020,"X":715,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127221Z"},{"ID":56697,"Name":"MojeDnoToWaszSzczyt","Points":5840,"X":495,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127221Z"},{"ID":56699,"Name":"Wioska barbarzyƄska","Points":3437,"X":344,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127222Z"},{"ID":56700,"Name":"Wioska Lord Jack Carver","Points":3949,"X":273,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":9231765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127223Z"},{"ID":56701,"Name":"Wioska barbarzyƄska","Points":1802,"X":734,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127223Z"},{"ID":56702,"Name":"Wioska barbarzyƄska","Points":1375,"X":384,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127224Z"},{"ID":56703,"Name":"Tytanik","Points":1336,"X":370,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127225Z"},{"ID":56704,"Name":"Sony 911","Points":3200,"X":670,"Y":661,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127226Z"},{"ID":56705,"Name":"094 Wioska barbarzyƄska","Points":4635,"X":539,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127226Z"},{"ID":56706,"Name":"08 Wioska","Points":842,"X":637,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":6517826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127227Z"},{"ID":56707,"Name":"003.","Points":781,"X":700,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":7557683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127228Z"},{"ID":56708,"Name":"-21-","Points":4295,"X":580,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127228Z"},{"ID":56710,"Name":"wioska 002","Points":3076,"X":687,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":6472706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127229Z"},{"ID":56711,"Name":"C0301","Points":3496,"X":272,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12723Z"},{"ID":56712,"Name":"Wioska barbarzyƄska","Points":898,"X":335,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12723Z"},{"ID":56713,"Name":"Wioska barbarzyƄska","Points":410,"X":424,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":849102150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127231Z"},{"ID":56714,"Name":"KONFA TO MARKA, NARKA","Points":1801,"X":290,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127232Z"},{"ID":56715,"Name":"zzz02","Points":993,"X":703,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127233Z"},{"ID":56716,"Name":"WB03","Points":4175,"X":297,"Y":380,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127233Z"},{"ID":56717,"Name":"Wioska barbarzyƄska","Points":5898,"X":653,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127234Z"},{"ID":56718,"Name":"MojeDnoToWaszSzczyt","Points":4970,"X":492,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127235Z"},{"ID":56719,"Name":"037 - Budowanko!","Points":5513,"X":480,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127235Z"},{"ID":56720,"Name":"Rozlewnia browaru Ć»uberka","Points":2157,"X":445,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":849110622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127236Z"},{"ID":56721,"Name":"130.Stradi","Points":2831,"X":395,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127237Z"},{"ID":56722,"Name":"001","Points":2796,"X":724,"Y":584,"Continent":"K57","Bonus":0,"PlayerID":3409028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127238Z"},{"ID":56723,"Name":"KONFA TO MARKA, NARKA","Points":2335,"X":272,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127238Z"},{"ID":56724,"Name":"Wioska barbarzyƄska","Points":4224,"X":632,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127239Z"},{"ID":56725,"Name":"No to jedziemy :D","Points":1540,"X":472,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12724Z"},{"ID":56726,"Name":"Sony 911","Points":1454,"X":665,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12724Z"},{"ID":56727,"Name":"181~~~~ wiewioreczkavivat","Points":3767,"X":446,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":7365299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127241Z"},{"ID":56728,"Name":"Wioska barbarzyƄska","Points":1612,"X":628,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127242Z"},{"ID":56729,"Name":"ble","Points":4417,"X":622,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127243Z"},{"ID":56730,"Name":"Wioska barbarzyƄska","Points":1977,"X":604,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127243Z"},{"ID":56731,"Name":"$011$ Arm Town","Points":1235,"X":302,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127244Z"},{"ID":56732,"Name":"MojeDnoToWaszSzczyt","Points":5429,"X":476,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127245Z"},{"ID":56733,"Name":"KONFA TO MARKA, NARKA","Points":4654,"X":274,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127245Z"},{"ID":56734,"Name":"#017","Points":2972,"X":557,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127246Z"},{"ID":56735,"Name":"Wioska Isabella","Points":2197,"X":373,"Y":546,"Continent":"K53","Bonus":0,"PlayerID":698519133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127247Z"},{"ID":56736,"Name":"001","Points":516,"X":366,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":281866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127248Z"},{"ID":56737,"Name":"Wioska Szyszka77","Points":4840,"X":333,"Y":522,"Continent":"K53","Bonus":0,"PlayerID":8004076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127248Z"},{"ID":56738,"Name":"[205]","Points":1599,"X":721,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127249Z"},{"ID":56739,"Name":"Wioska barbarzyƄska","Points":1079,"X":721,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12725Z"},{"ID":56740,"Name":"=SAwars=06=","Points":2180,"X":574,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12725Z"},{"ID":56742,"Name":"Bajka","Points":3177,"X":399,"Y":713,"Continent":"K73","Bonus":0,"PlayerID":849111819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127251Z"},{"ID":56743,"Name":"Wioska barbarzyƄska","Points":1442,"X":596,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127252Z"},{"ID":56744,"Name":"Wioska Your Nightmare","Points":46,"X":565,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":8766033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127252Z"},{"ID":56745,"Name":"????","Points":3860,"X":463,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127253Z"},{"ID":56746,"Name":"21 PszczoƂy i WrĂłble","Points":2255,"X":725,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127254Z"},{"ID":56747,"Name":"001.","Points":5080,"X":699,"Y":377,"Continent":"K36","Bonus":0,"PlayerID":7557683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127255Z"},{"ID":56748,"Name":"Wioska barbarzyƄska","Points":755,"X":590,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849010386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127256Z"},{"ID":56749,"Name":"PPF-34","Points":1079,"X":576,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127256Z"},{"ID":56750,"Name":"Wioska z Pracza 6","Points":926,"X":308,"Y":629,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127257Z"},{"ID":56751,"Name":"MojeDnoToWaszSzczyt","Points":5681,"X":485,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127258Z"},{"ID":56752,"Name":"Xxx","Points":988,"X":430,"Y":586,"Continent":"K54","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127259Z"},{"ID":56753,"Name":"KUKA VII","Points":847,"X":280,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":6127190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127259Z"},{"ID":56754,"Name":"Wioska barbarzyƄska","Points":2446,"X":440,"Y":584,"Continent":"K54","Bonus":0,"PlayerID":849028088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12726Z"},{"ID":56755,"Name":"Wioska barbarzyƄska","Points":2036,"X":735,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127261Z"},{"ID":56757,"Name":"Wioska barbarzyƄska","Points":2525,"X":271,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127261Z"},{"ID":56758,"Name":"077 obrzeĆŒa","Points":1532,"X":276,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127262Z"},{"ID":56759,"Name":"MojeDnoToWaszSzczyt","Points":3532,"X":487,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127263Z"},{"ID":56760,"Name":"Wioska Luftwafel","Points":4604,"X":626,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":848922958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127264Z"},{"ID":56761,"Name":"#023","Points":2365,"X":546,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127264Z"},{"ID":56762,"Name":"North K25","Points":2680,"X":554,"Y":271,"Continent":"K25","Bonus":9,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127265Z"},{"ID":56763,"Name":"[018]","Points":2921,"X":461,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":9094538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127266Z"},{"ID":56764,"Name":"PiekƂo to inni","Points":3164,"X":650,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127266Z"},{"ID":56765,"Name":"106. Wioska barbarzyƄska","Points":538,"X":689,"Y":455,"Continent":"K46","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127267Z"},{"ID":56766,"Name":"PiekƂo to inni","Points":3793,"X":650,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127268Z"},{"ID":56767,"Name":"181","Points":774,"X":679,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":8922870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127269Z"},{"ID":56768,"Name":"Wiadro23","Points":498,"X":681,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127269Z"},{"ID":56769,"Name":"PiotrekPazzi","Points":500,"X":326,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":289542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12727Z"},{"ID":56770,"Name":"Wioska barbarzyƄska","Points":792,"X":727,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127271Z"},{"ID":56771,"Name":"premka nie tu","Points":3200,"X":567,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127271Z"},{"ID":56772,"Name":"095 Wioska barbarzyƄska","Points":4297,"X":541,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127272Z"},{"ID":56773,"Name":"New World","Points":7230,"X":420,"Y":721,"Continent":"K74","Bonus":2,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127273Z"},{"ID":56774,"Name":"Wioska Aneta517","Points":426,"X":373,"Y":544,"Continent":"K53","Bonus":0,"PlayerID":2591538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127274Z"},{"ID":56775,"Name":"Nowe IMPERIUM 13","Points":5672,"X":623,"Y":698,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127274Z"},{"ID":56776,"Name":"052. Witek","Points":845,"X":444,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127275Z"},{"ID":56777,"Name":"Wioska barbarzyƄska","Points":1091,"X":369,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127276Z"},{"ID":56778,"Name":"[206]","Points":1503,"X":721,"Y":418,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127276Z"},{"ID":56780,"Name":"Flap","Points":4152,"X":598,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127277Z"},{"ID":56781,"Name":"RosnochaƂ","Points":2357,"X":560,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849112312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127278Z"},{"ID":56782,"Name":"MojeDnoToWaszSzczyt","Points":4258,"X":463,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127279Z"},{"ID":56783,"Name":"Wioska barbarzyƄska","Points":1500,"X":403,"Y":291,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127279Z"},{"ID":56784,"Name":"Wioska barbarzyƄska","Points":1809,"X":729,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12728Z"},{"ID":56785,"Name":"Wioska barbarzyƄska","Points":3366,"X":390,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127281Z"},{"ID":56786,"Name":"Wioska barbarzyƄska","Points":2849,"X":667,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127282Z"},{"ID":56787,"Name":"Wioska martin1181","Points":4885,"X":354,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":7287342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127282Z"},{"ID":56788,"Name":"Wioska barbarzyƄska","Points":2826,"X":381,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127283Z"},{"ID":56789,"Name":"Brat447","Points":2772,"X":364,"Y":515,"Continent":"K53","Bonus":0,"PlayerID":699262350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127284Z"},{"ID":56790,"Name":"074 obrzeĆŒa","Points":1797,"X":276,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127285Z"},{"ID":56791,"Name":"Wioska peres5130","Points":761,"X":309,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":849019785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127285Z"},{"ID":56792,"Name":"Wioska barbarzyƄska","Points":1322,"X":462,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127286Z"},{"ID":56793,"Name":"002-81","Points":1593,"X":283,"Y":595,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127287Z"},{"ID":56794,"Name":"007","Points":4787,"X":294,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127287Z"},{"ID":56795,"Name":"Wioska barbarzyƄska","Points":40,"X":300,"Y":619,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127288Z"},{"ID":56796,"Name":"Krasnolandia","Points":7485,"X":525,"Y":315,"Continent":"K35","Bonus":0,"PlayerID":3377827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127289Z"},{"ID":56797,"Name":"Wioska superpuszka","Points":276,"X":730,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":6677893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12729Z"},{"ID":56798,"Name":"PóƂnocny Bagdad","Points":6456,"X":619,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12729Z"},{"ID":56799,"Name":"Wioska barbarzyƄska","Points":3461,"X":665,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127291Z"},{"ID":56800,"Name":"Wioska barbarzyƄska","Points":398,"X":283,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127292Z"},{"ID":56801,"Name":"Sony 911","Points":1465,"X":681,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127293Z"},{"ID":56802,"Name":"Wioska HORTON","Points":96,"X":514,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":6035425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127293Z"},{"ID":56803,"Name":"K42 ADAMUS 010","Points":7504,"X":285,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127294Z"},{"ID":56804,"Name":"New World","Points":4156,"X":424,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127295Z"},{"ID":56805,"Name":"KONFA TO MARKA, NARKA","Points":4005,"X":273,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127296Z"},{"ID":56806,"Name":"#014","Points":4289,"X":547,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127296Z"},{"ID":56807,"Name":"096 Wioska barbarzyƄska","Points":4632,"X":540,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127297Z"},{"ID":56808,"Name":"001","Points":1959,"X":704,"Y":410,"Continent":"K47","Bonus":0,"PlayerID":2837080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127298Z"},{"ID":56809,"Name":"057 Wioska barbarzyƄska","Points":3966,"X":346,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127298Z"},{"ID":56810,"Name":"Mordex","Points":1326,"X":706,"Y":400,"Continent":"K47","Bonus":0,"PlayerID":7023110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127299Z"},{"ID":56811,"Name":"Wioska barbarzyƄska","Points":5190,"X":398,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1273Z"},{"ID":56813,"Name":"#0065","Points":2644,"X":572,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1273Z"},{"ID":56814,"Name":"-002-","Points":4335,"X":730,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127301Z"},{"ID":56815,"Name":"068 Osada koczownikĂłw","Points":8900,"X":543,"Y":271,"Continent":"K25","Bonus":9,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127302Z"},{"ID":56816,"Name":"Wioska Bociek80","Points":572,"X":669,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":545152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127303Z"},{"ID":56817,"Name":"#299 C","Points":10971,"X":515,"Y":731,"Continent":"K75","Bonus":3,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127304Z"},{"ID":56818,"Name":"Wioska","Points":3372,"X":604,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":8698728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127304Z"},{"ID":56819,"Name":"Wioska barbarzyƄska","Points":536,"X":631,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127305Z"},{"ID":56820,"Name":"=SILDEN=","Points":2274,"X":481,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":849112368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127306Z"},{"ID":56821,"Name":"Osada koczownikĂłw","Points":5132,"X":379,"Y":702,"Continent":"K73","Bonus":6,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127307Z"},{"ID":56822,"Name":"0000037Z","Points":2087,"X":276,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127307Z"},{"ID":56823,"Name":"Wioska barbarzyƄska","Points":2073,"X":733,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127308Z"},{"ID":56824,"Name":"Wioska barbarzyƄska","Points":3735,"X":361,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127309Z"},{"ID":56825,"Name":"Wioska dadan2","Points":2741,"X":653,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":849086357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127309Z"},{"ID":56826,"Name":"067","Points":5225,"X":591,"Y":560,"Continent":"K55","Bonus":0,"PlayerID":699373599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12731Z"},{"ID":56827,"Name":"Wioska barbarzyƄska 08","Points":6989,"X":344,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127311Z"},{"ID":56828,"Name":"Wioska monkeyy","Points":55,"X":450,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":848923754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127311Z"},{"ID":56829,"Name":"Wioska barbarzyƄska","Points":1629,"X":391,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127312Z"},{"ID":56830,"Name":"Wioska b 010","Points":274,"X":408,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127313Z"},{"ID":56831,"Name":"Wioska barbarzyƄska","Points":1857,"X":626,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127314Z"},{"ID":56832,"Name":"Wioska barbarzyƄska","Points":1614,"X":714,"Y":415,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127314Z"},{"ID":56833,"Name":"O109","Points":7328,"X":317,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127315Z"},{"ID":56834,"Name":"Wioska barbarzyƄska","Points":1660,"X":399,"Y":708,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127316Z"},{"ID":56835,"Name":"R 056","Points":1660,"X":491,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127317Z"},{"ID":56837,"Name":"PóƂnocny Bagdad","Points":2950,"X":633,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127317Z"},{"ID":56838,"Name":"Wioska barbarzyƄska","Points":446,"X":302,"Y":617,"Continent":"K63","Bonus":0,"PlayerID":698167138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127318Z"},{"ID":56839,"Name":"Wioska barbarzyƄska","Points":5590,"X":535,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127319Z"},{"ID":56840,"Name":"A04","Points":1113,"X":423,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":849038597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127319Z"},{"ID":56841,"Name":"HANDEN","Points":717,"X":294,"Y":399,"Continent":"K32","Bonus":0,"PlayerID":7259690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12732Z"},{"ID":56842,"Name":"Wioska barbarzyƄska","Points":1037,"X":358,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127321Z"},{"ID":56843,"Name":"WB02","Points":5004,"X":297,"Y":383,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127322Z"},{"ID":56844,"Name":"Wioska LORDHerkules13","Points":4379,"X":540,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699522257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127322Z"},{"ID":56845,"Name":"Wioska barbarzyƄska","Points":201,"X":689,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127323Z"},{"ID":56846,"Name":"KONFA TO MARKA, NARKA","Points":1905,"X":286,"Y":407,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127324Z"},{"ID":56847,"Name":"Wioska Lisq12","Points":3200,"X":301,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849111408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127325Z"},{"ID":56848,"Name":"01 Wioska ignacy","Points":5431,"X":727,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":8785003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127325Z"},{"ID":56849,"Name":"K66 Ć»elazo","Points":2493,"X":698,"Y":626,"Continent":"K66","Bonus":3,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127326Z"},{"ID":56850,"Name":"Wioska ƚMIERCI","Points":1954,"X":719,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":849096102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127327Z"},{"ID":56851,"Name":"C.061","Points":2781,"X":729,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127327Z"},{"ID":56852,"Name":"#498 F","Points":703,"X":442,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127328Z"},{"ID":56853,"Name":"Wioska 3","Points":341,"X":267,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849114265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127329Z"},{"ID":56854,"Name":"Wioska barbarzyƄska","Points":987,"X":541,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":3560281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12733Z"},{"ID":56856,"Name":"Wioska barbarzyƄska","Points":641,"X":303,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12733Z"},{"ID":56857,"Name":"001","Points":2716,"X":276,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":698511920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127331Z"},{"ID":56858,"Name":"#016","Points":2689,"X":557,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127332Z"},{"ID":56859,"Name":"0664","Points":5118,"X":585,"Y":721,"Continent":"K75","Bonus":9,"PlayerID":698659980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127332Z"},{"ID":56860,"Name":"$009$ PakaĆŒu","Points":3112,"X":303,"Y":622,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127333Z"},{"ID":56861,"Name":"009","Points":5511,"X":393,"Y":290,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127334Z"},{"ID":56862,"Name":"KWB5","Points":2639,"X":479,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127335Z"},{"ID":56863,"Name":"Wioska barbarzyƄska","Points":414,"X":318,"Y":357,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127335Z"},{"ID":56864,"Name":"Sony 911","Points":498,"X":677,"Y":650,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127336Z"},{"ID":56865,"Name":"Wioska barbarzyƄska","Points":4939,"X":641,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127337Z"},{"ID":56866,"Name":"Wioska z Pracza 7","Points":527,"X":308,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":8916982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127337Z"},{"ID":56867,"Name":"Wioska barbarzyƄska","Points":4657,"X":640,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127338Z"},{"ID":56868,"Name":"B020","Points":2746,"X":535,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127339Z"},{"ID":56869,"Name":"[0193]","Points":6017,"X":274,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12734Z"},{"ID":56870,"Name":"Avanti!","Points":2262,"X":269,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12734Z"},{"ID":56871,"Name":"Wioska gall5","Points":1006,"X":267,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127341Z"},{"ID":56872,"Name":"Osada koczownikĂłw","Points":7199,"X":537,"Y":733,"Continent":"K75","Bonus":1,"PlayerID":698704189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127342Z"},{"ID":56873,"Name":"PiekƂo to inni","Points":2322,"X":661,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127342Z"},{"ID":56874,"Name":"west","Points":6517,"X":296,"Y":378,"Continent":"K32","Bonus":0,"PlayerID":849089601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127343Z"},{"ID":56875,"Name":"81 skorbyk.","Points":2337,"X":549,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":8015955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127344Z"},{"ID":56876,"Name":"B023","Points":2082,"X":629,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":8740199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127345Z"},{"ID":56877,"Name":"Wioska Miltonia","Points":146,"X":671,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":849088414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127345Z"},{"ID":56878,"Name":"Bagno 35","Points":4463,"X":474,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127346Z"},{"ID":56879,"Name":"Wioska barbarzyƄska","Points":614,"X":529,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127347Z"},{"ID":56880,"Name":"Wioska brodatykebab","Points":26,"X":633,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":849112443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127348Z"},{"ID":56881,"Name":"[0264]","Points":4179,"X":270,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127348Z"},{"ID":56882,"Name":"#0081","Points":2180,"X":580,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127349Z"},{"ID":56883,"Name":"Wioska barbarzyƄska","Points":768,"X":728,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12735Z"},{"ID":56884,"Name":"117.Stradi","Points":5261,"X":421,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12735Z"},{"ID":56885,"Name":"050","Points":525,"X":693,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127351Z"},{"ID":56887,"Name":"Wioska barbarzyƄska","Points":2304,"X":690,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127352Z"},{"ID":56888,"Name":"Pf Konfederacja","Points":3773,"X":493,"Y":497,"Continent":"K44","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127353Z"},{"ID":56889,"Name":"#0061","Points":2722,"X":578,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127353Z"},{"ID":56890,"Name":"--055--","Points":431,"X":588,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127354Z"},{"ID":56891,"Name":"PPF-05","Points":3982,"X":507,"Y":264,"Continent":"K25","Bonus":6,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127355Z"},{"ID":56892,"Name":"Wioska barbarzyƄska","Points":709,"X":724,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127355Z"},{"ID":56893,"Name":"New World","Points":8309,"X":412,"Y":709,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127356Z"},{"ID":56894,"Name":"Wioska Lorda Posejdona","Points":387,"X":270,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":699878443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127357Z"},{"ID":56895,"Name":"Wioska barbarzyƄska 10","Points":6297,"X":343,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127358Z"},{"ID":56897,"Name":"Wioska barbarzyƄska","Points":1729,"X":731,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127358Z"},{"ID":56898,"Name":"#128#","Points":2827,"X":656,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127359Z"},{"ID":56899,"Name":"KONFA TO MARKA, NARKA","Points":4707,"X":269,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12736Z"},{"ID":56900,"Name":"Wioska Vebo","Points":4427,"X":727,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":848969313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12736Z"},{"ID":56901,"Name":"No to jedziemy :D","Points":1450,"X":468,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127361Z"},{"ID":56902,"Name":"PóƂnocny Bagdad","Points":7851,"X":619,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127362Z"},{"ID":56903,"Name":"044 - Budowanko!","Points":5053,"X":504,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127363Z"},{"ID":56904,"Name":"Wioska barbarzyƄska","Points":2604,"X":314,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127363Z"},{"ID":56905,"Name":"[0239] xxx","Points":4472,"X":271,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127364Z"},{"ID":56906,"Name":"#024","Points":2216,"X":554,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127365Z"},{"ID":56907,"Name":"K67 12","Points":3449,"X":700,"Y":622,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127366Z"},{"ID":56908,"Name":"CAP001","Points":266,"X":352,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":698661697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127366Z"},{"ID":56909,"Name":"0000032Z","Points":4614,"X":278,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127367Z"},{"ID":56910,"Name":"Wioska 1","Points":3043,"X":668,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":7346797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127368Z"},{"ID":56911,"Name":"ZakƂad 1","Points":592,"X":264,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127368Z"},{"ID":56912,"Name":"Wioska barbarzyƄska","Points":3385,"X":412,"Y":544,"Continent":"K54","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127369Z"},{"ID":56913,"Name":"Wioska barbarzyƄska","Points":570,"X":324,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12737Z"},{"ID":56914,"Name":"Wioska ligedman92","Points":1792,"X":713,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":698676788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12737Z"},{"ID":56915,"Name":"Wioska barbarzyƄska","Points":2302,"X":676,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127371Z"},{"ID":56916,"Name":"Flap","Points":3319,"X":601,"Y":286,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127372Z"},{"ID":56917,"Name":"Wioska w00han","Points":3959,"X":658,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":849111332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127373Z"},{"ID":56918,"Name":"C006","Points":1629,"X":460,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127373Z"},{"ID":56919,"Name":"Wioska barbarzyƄska","Points":845,"X":724,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127374Z"},{"ID":56920,"Name":"Wioska barbarzyƄska","Points":360,"X":324,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127375Z"},{"ID":56921,"Name":"FP051","Points":3119,"X":446,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127375Z"},{"ID":56922,"Name":"Wioska barbarzyƄska","Points":5115,"X":320,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127376Z"},{"ID":56923,"Name":"04Wioska barbarzyƄska","Points":3097,"X":363,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127377Z"},{"ID":56924,"Name":"Cisza","Points":360,"X":278,"Y":581,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127377Z"},{"ID":56925,"Name":"048. Wioska barbarzyƄska","Points":1634,"X":678,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127378Z"},{"ID":56926,"Name":"Wioska barbarzyƄska","Points":1808,"X":736,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127379Z"},{"ID":56927,"Name":"Allara","Points":1838,"X":713,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":8994199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12738Z"},{"ID":56928,"Name":"D018","Points":2283,"X":563,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12738Z"},{"ID":56929,"Name":"wioska XX","Points":1684,"X":678,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127381Z"},{"ID":56930,"Name":"mc01","Points":3351,"X":706,"Y":388,"Continent":"K37","Bonus":0,"PlayerID":848939131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127382Z"},{"ID":56931,"Name":"Sony 911","Points":3650,"X":677,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127382Z"},{"ID":56932,"Name":"124.Stradi","Points":1839,"X":451,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127383Z"},{"ID":56933,"Name":"NOT?","Points":3695,"X":312,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127384Z"},{"ID":56934,"Name":"ASony 911","Points":6832,"X":687,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127385Z"},{"ID":56935,"Name":"[0271]","Points":4063,"X":265,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127385Z"},{"ID":56936,"Name":"Wioska barbarzyƄska","Points":1535,"X":397,"Y":708,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127386Z"},{"ID":56937,"Name":"Wioska barbarzyƄska","Points":564,"X":265,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":699846892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127387Z"},{"ID":56938,"Name":"Wioska barbarzyƄska","Points":1116,"X":680,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127387Z"},{"ID":56939,"Name":"#018","Points":2145,"X":556,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127388Z"},{"ID":56940,"Name":"Wioska alanbebz","Points":894,"X":576,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":698938264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127389Z"},{"ID":56941,"Name":"New World","Points":3951,"X":422,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127389Z"},{"ID":56942,"Name":"PóƂnocny Bagdad","Points":6910,"X":620,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12739Z"},{"ID":56943,"Name":"015. Osada koczownikĂłw","Points":6042,"X":696,"Y":379,"Continent":"K36","Bonus":5,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127391Z"},{"ID":56944,"Name":"spóƂka z o.o.","Points":1969,"X":286,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":1700145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127392Z"},{"ID":56945,"Name":"New World","Points":4072,"X":432,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127392Z"},{"ID":56946,"Name":"Y Hy y Hy JESTEM HORY","Points":3139,"X":287,"Y":600,"Continent":"K62","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127393Z"},{"ID":56947,"Name":"Wioska 003","Points":2435,"X":687,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":6472706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127394Z"},{"ID":56948,"Name":"ZƂoty ƚwit","Points":4076,"X":587,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127394Z"},{"ID":56949,"Name":"KERTO 02","Points":743,"X":709,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":7474527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127395Z"},{"ID":56950,"Name":"034 KTW","Points":3942,"X":729,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127396Z"},{"ID":56951,"Name":"032. Gloria Victis","Points":4436,"X":282,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127397Z"},{"ID":56952,"Name":"Komaros1992","Points":6007,"X":628,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":699679662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127397Z"},{"ID":56953,"Name":"WschĂłd 002","Points":2495,"X":699,"Y":619,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127398Z"},{"ID":56954,"Name":"Wioska barbarzyƄska","Points":567,"X":415,"Y":296,"Continent":"K24","Bonus":0,"PlayerID":849089654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127399Z"},{"ID":56955,"Name":"Wioska barbarzyƄska","Points":914,"X":733,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127399Z"},{"ID":56956,"Name":"Wioska DAJWIDOS16","Points":2533,"X":319,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":848913252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1274Z"},{"ID":56957,"Name":"Wioska barbarzyƄska","Points":3001,"X":400,"Y":295,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127401Z"},{"ID":56958,"Name":"E03","Points":3363,"X":722,"Y":548,"Continent":"K57","Bonus":4,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127402Z"},{"ID":56959,"Name":"Wioska NewBetterSatan","Points":1609,"X":309,"Y":466,"Continent":"K43","Bonus":0,"PlayerID":1021709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127402Z"},{"ID":56960,"Name":"Wioska BANAN 22","Points":5955,"X":731,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":2357773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127403Z"},{"ID":56961,"Name":"Wioska barbarzyƄska","Points":3443,"X":536,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127404Z"},{"ID":56962,"Name":"Wioska anatol2619","Points":463,"X":264,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849106828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127404Z"},{"ID":56963,"Name":"SirNiuchniuch","Points":4109,"X":447,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":849109010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127405Z"},{"ID":56964,"Name":"Wioska barbarzyƄska","Points":4591,"X":374,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127406Z"},{"ID":56965,"Name":"CastAway !040","Points":2440,"X":711,"Y":596,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127407Z"},{"ID":56966,"Name":"[842] Odludzie","Points":3559,"X":727,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127407Z"},{"ID":56967,"Name":"AZGARD","Points":3751,"X":295,"Y":608,"Continent":"K62","Bonus":0,"PlayerID":6651072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127408Z"},{"ID":56968,"Name":"017 | North","Points":2675,"X":381,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127409Z"},{"ID":56969,"Name":"Wioska barbarzyƄska","Points":205,"X":353,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12741Z"},{"ID":56970,"Name":"Wioska barbarzyƄska","Points":904,"X":452,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12741Z"},{"ID":56971,"Name":"Melogo","Points":4362,"X":699,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":849112369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127411Z"},{"ID":56972,"Name":"11. ƚwiatƂa na Ratajach","Points":5704,"X":459,"Y":729,"Continent":"K74","Bonus":8,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127412Z"},{"ID":56973,"Name":"Wioska barbarzyƄska","Points":2745,"X":716,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127412Z"},{"ID":56974,"Name":"PPF-32","Points":1090,"X":570,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127413Z"},{"ID":56975,"Name":"-34-","Points":1506,"X":575,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127414Z"},{"ID":56976,"Name":"Wioska barbarzyƄska","Points":257,"X":363,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127415Z"},{"ID":56977,"Name":"XDX","Points":4028,"X":605,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127415Z"},{"ID":56978,"Name":"PIROTECHNIK 013","Points":146,"X":337,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127416Z"},{"ID":56980,"Name":"MojeDnoToWaszSzczyt","Points":4112,"X":481,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127417Z"},{"ID":56981,"Name":"614|415 Wioska barbarzyƄska","Points":2433,"X":614,"Y":415,"Continent":"K46","Bonus":0,"PlayerID":6822957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127417Z"},{"ID":56982,"Name":"Avanti!","Points":2175,"X":267,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127418Z"},{"ID":56983,"Name":"Chwaliszew","Points":3352,"X":692,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":6472706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127419Z"},{"ID":56984,"Name":"Wioska barbarzyƄska","Points":4397,"X":364,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12742Z"},{"ID":56985,"Name":"Twierdza (MzM.)","Points":4017,"X":594,"Y":518,"Continent":"K55","Bonus":30,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12742Z"},{"ID":56986,"Name":"Wio","Points":2453,"X":445,"Y":666,"Continent":"K64","Bonus":0,"PlayerID":698152498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127421Z"},{"ID":56987,"Name":"Wioska Spekulant951","Points":170,"X":334,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":849038195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127422Z"},{"ID":56988,"Name":"K67 18","Points":2515,"X":711,"Y":607,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127422Z"},{"ID":56989,"Name":"Wioska barbarzyƄska","Points":333,"X":300,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127423Z"},{"ID":56990,"Name":"FP042","Points":3973,"X":462,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127424Z"},{"ID":56991,"Name":"Adijen 2","Points":3194,"X":348,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":699688180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127424Z"},{"ID":56992,"Name":"PóƂnocny Bagdad","Points":6947,"X":616,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127425Z"},{"ID":56993,"Name":"Avanti!","Points":4867,"X":270,"Y":481,"Continent":"K42","Bonus":3,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127426Z"},{"ID":56995,"Name":"Nowe IMPERIUM 10","Points":5495,"X":620,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127427Z"},{"ID":56996,"Name":"...Just like that","Points":3116,"X":461,"Y":478,"Continent":"K44","Bonus":0,"PlayerID":699723284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127427Z"},{"ID":56997,"Name":"Wioska barbarzyƄska","Points":455,"X":314,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":848945529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127428Z"},{"ID":56998,"Name":"087 obrzeĆŒa","Points":863,"X":271,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127429Z"},{"ID":56999,"Name":"New World","Points":8250,"X":422,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127429Z"},{"ID":57000,"Name":"Grudziadz","Points":408,"X":458,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12743Z"},{"ID":57001,"Name":"Wioska barbarzyƄska","Points":1799,"X":725,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127431Z"},{"ID":57002,"Name":"Kapitol_28","Points":2055,"X":509,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127432Z"},{"ID":57003,"Name":"Kiedyƛ Wielki Wojownik","Points":1157,"X":327,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127432Z"},{"ID":57004,"Name":"t029","Points":379,"X":670,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127433Z"},{"ID":57005,"Name":"215...NORTH","Points":2101,"X":416,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127434Z"},{"ID":57006,"Name":"New WorldA","Points":898,"X":265,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127434Z"},{"ID":57007,"Name":"Wioska Karolinka6868","Points":26,"X":576,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":849094355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127435Z"},{"ID":57008,"Name":"Sqn","Points":1527,"X":713,"Y":395,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127436Z"},{"ID":57009,"Name":"7. Vermax","Points":1008,"X":279,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127437Z"},{"ID":57010,"Name":"Wioska Adijen","Points":7357,"X":348,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699688180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127437Z"},{"ID":57011,"Name":"Zaplecze Barba 047","Points":1557,"X":342,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127438Z"},{"ID":57012,"Name":"Wioska barbarzyƄska","Points":2363,"X":401,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127439Z"},{"ID":57013,"Name":"0128","Points":741,"X":703,"Y":380,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12744Z"},{"ID":57014,"Name":"Wioska barbarzyƄska","Points":1566,"X":355,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127441Z"},{"ID":57015,"Name":"FP056","Points":6782,"X":444,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127441Z"},{"ID":57016,"Name":"Wioska barbarzyƄska","Points":387,"X":285,"Y":398,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127442Z"},{"ID":57017,"Name":"#0258 barbarzyƄska","Points":869,"X":445,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127443Z"},{"ID":57018,"Name":"011 R2 D2","Points":4510,"X":275,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127443Z"},{"ID":57019,"Name":"017","Points":403,"X":338,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":849101205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127444Z"},{"ID":57020,"Name":"Wioska dla mklo12","Points":9103,"X":521,"Y":373,"Continent":"K35","Bonus":0,"PlayerID":8678008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127445Z"},{"ID":57021,"Name":"FP043","Points":4028,"X":465,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127446Z"},{"ID":57022,"Name":"045 - Budowanko!","Points":5513,"X":538,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127446Z"},{"ID":57023,"Name":"078. Wioska barbarzyƄska","Points":4319,"X":734,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127447Z"},{"ID":57024,"Name":"024 - Budowanko!","Points":4892,"X":486,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127448Z"},{"ID":57025,"Name":"220 |","Points":866,"X":724,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127448Z"},{"ID":57026,"Name":"TikTok","Points":3288,"X":487,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":849051731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127449Z"},{"ID":57027,"Name":"Wioska knoxville5","Points":26,"X":444,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":849110747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12745Z"},{"ID":57028,"Name":"znam ostropesta","Points":3255,"X":461,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127451Z"},{"ID":57029,"Name":"001-181","Points":722,"X":468,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":2297431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127451Z"},{"ID":57030,"Name":"052","Points":972,"X":665,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127452Z"},{"ID":57031,"Name":"=|43|=","Points":2077,"X":689,"Y":374,"Continent":"K36","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127453Z"},{"ID":57032,"Name":"Wioska barbarzyƄska","Points":1188,"X":726,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":699573053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127453Z"},{"ID":57033,"Name":"#0251 barbarzyƄska","Points":720,"X":443,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127454Z"},{"ID":57034,"Name":"ZƂoty ƚwit","Points":4960,"X":594,"Y":293,"Continent":"K25","Bonus":0,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127455Z"},{"ID":57035,"Name":"Wioska barbarzyƄska","Points":1448,"X":461,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127456Z"},{"ID":57036,"Name":"--052--","Points":1140,"X":585,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":542253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127456Z"},{"ID":57037,"Name":"Wioska barbarzyƄska","Points":465,"X":318,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127457Z"},{"ID":57038,"Name":"????","Points":4518,"X":496,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127458Z"},{"ID":57039,"Name":"Wioska barbarzyƄska","Points":1086,"X":278,"Y":585,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127458Z"},{"ID":57040,"Name":"HajnĂłwka","Points":3060,"X":726,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":698548451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127459Z"},{"ID":57041,"Name":"Wioska 113","Points":2000,"X":686,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12746Z"},{"ID":57042,"Name":"Lord Lord Franek .#189","Points":2521,"X":692,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12746Z"},{"ID":57043,"Name":"PóƂnocny Bagdad","Points":6946,"X":625,"Y":303,"Continent":"K36","Bonus":3,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127461Z"},{"ID":57044,"Name":"Wioska patrix01","Points":3698,"X":727,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":849092978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127462Z"},{"ID":57045,"Name":"001","Points":2606,"X":447,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849080197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127463Z"},{"ID":57046,"Name":"Spajk","Points":1085,"X":680,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127463Z"},{"ID":57048,"Name":"087. Wioska barbarzyƄska","Points":3051,"X":733,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127464Z"},{"ID":57049,"Name":"Alamo7","Points":936,"X":717,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127465Z"},{"ID":57050,"Name":"Wioska BabciaZosia","Points":59,"X":267,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":849110781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127465Z"},{"ID":57051,"Name":"Wioska barbarzyƄska","Points":330,"X":646,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127466Z"},{"ID":57052,"Name":"Wioska barbarzyƄska","Points":1189,"X":733,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127467Z"},{"ID":57053,"Name":"C0302","Points":3420,"X":274,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127468Z"},{"ID":57054,"Name":"New World","Points":7310,"X":432,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127468Z"},{"ID":57055,"Name":"181","Points":26,"X":399,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":699829975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127469Z"},{"ID":57056,"Name":"HAREDON","Points":2510,"X":692,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":3957237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12747Z"},{"ID":57057,"Name":"40 barbarzyƄska 3A","Points":1879,"X":269,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12747Z"},{"ID":57058,"Name":"Wioska barbarzyƄska","Points":1683,"X":270,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127471Z"},{"ID":57059,"Name":"ZƂoty ƚwit","Points":1249,"X":591,"Y":291,"Continent":"K25","Bonus":2,"PlayerID":699883079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127472Z"},{"ID":57060,"Name":"K67 13","Points":3455,"X":702,"Y":608,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127472Z"},{"ID":57061,"Name":"MojeDnoToWaszSzczyt","Points":5290,"X":466,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127473Z"},{"ID":57062,"Name":"Belmondo77","Points":1584,"X":642,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699058253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127474Z"},{"ID":57063,"Name":"Wioska barbarzyƄska","Points":4852,"X":520,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":769293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127475Z"},{"ID":57064,"Name":"Wioska Stresik","Points":129,"X":656,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":699820572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127475Z"},{"ID":57065,"Name":"Wioska barbarzyƄska","Points":1297,"X":333,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127476Z"},{"ID":57066,"Name":"Wioska BoĆŒa","Points":4596,"X":279,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":699854312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127477Z"},{"ID":57067,"Name":"O106","Points":8476,"X":303,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127477Z"},{"ID":57068,"Name":"Wioska barbarzyƄska","Points":1069,"X":634,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":7139853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127478Z"},{"ID":57069,"Name":"Wioska barbarzyƄska","Points":1868,"X":731,"Y":484,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127479Z"},{"ID":57070,"Name":"Crezys","Points":1525,"X":643,"Y":478,"Continent":"K46","Bonus":0,"PlayerID":699057459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127479Z"},{"ID":57071,"Name":"yuyuyuyu","Points":2044,"X":666,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":7646152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12748Z"},{"ID":57072,"Name":"0001","Points":3321,"X":525,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":848987695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127481Z"},{"ID":57073,"Name":"Kurnik","Points":7183,"X":450,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":699603116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127482Z"},{"ID":57074,"Name":"Wioska barbarzyƄska","Points":463,"X":587,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127482Z"},{"ID":57075,"Name":"[0281]","Points":3723,"X":265,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127483Z"},{"ID":57076,"Name":"Tomekrol 6","Points":3940,"X":705,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":849096334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127484Z"},{"ID":57077,"Name":"PóƂnocny Bagdad","Points":3850,"X":628,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127485Z"},{"ID":57078,"Name":"Wioska Aga22011993","Points":327,"X":265,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":849098592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127485Z"},{"ID":57079,"Name":"0000036Z","Points":2224,"X":278,"Y":556,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127486Z"},{"ID":57080,"Name":"Wioska barbarzyƄska","Points":1660,"X":607,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127487Z"},{"ID":57081,"Name":"Wioska barbarzyƄska","Points":1386,"X":394,"Y":707,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127488Z"},{"ID":57082,"Name":"Sony 911","Points":1547,"X":682,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127488Z"},{"ID":57083,"Name":"Domek Miniuka 03","Points":2979,"X":479,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699373225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127489Z"},{"ID":57084,"Name":"Wioska ladio","Points":225,"X":365,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":698472522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12749Z"},{"ID":57085,"Name":"Wioska barbarzyƄska","Points":575,"X":549,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":8015775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12749Z"},{"ID":57086,"Name":"No.0","Points":4001,"X":328,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":849106612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127491Z"},{"ID":57087,"Name":"New WorldA","Points":627,"X":269,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127492Z"},{"ID":57088,"Name":"Monia18","Points":1772,"X":651,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":698776998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127493Z"},{"ID":57089,"Name":"245","Points":223,"X":369,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127493Z"},{"ID":57090,"Name":"wioska XX","Points":1387,"X":683,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127494Z"},{"ID":57092,"Name":"Wioska barbarzyƄska","Points":1502,"X":711,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127495Z"},{"ID":57093,"Name":"Wioska XVIII","Points":1509,"X":586,"Y":345,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127495Z"},{"ID":57094,"Name":"Wioska barbarzyƄska","Points":759,"X":270,"Y":506,"Continent":"K52","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127496Z"},{"ID":57095,"Name":"Wioska Gosia99","Points":4633,"X":732,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":849075298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127497Z"},{"ID":57096,"Name":"Wioska barbarzyƄska","Points":3003,"X":669,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127498Z"},{"ID":57097,"Name":"Tycia *","Points":1702,"X":492,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":698748891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127499Z"},{"ID":57098,"Name":"North 110","Points":657,"X":597,"Y":292,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127499Z"},{"ID":57099,"Name":"Wioska barbarzyƄska","Points":2819,"X":331,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1275Z"},{"ID":57100,"Name":"Wioska barbarzyƄska","Points":2016,"X":704,"Y":388,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127501Z"},{"ID":57101,"Name":"North 079","Points":4099,"X":533,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127501Z"},{"ID":57102,"Name":"o012","Points":5821,"X":611,"Y":698,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127502Z"},{"ID":57104,"Name":"K67 09","Points":3245,"X":701,"Y":619,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127503Z"},{"ID":57105,"Name":"093. Wioska barbarzyƄska","Points":3083,"X":730,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127504Z"},{"ID":57106,"Name":"PiekƂo to inni","Points":3222,"X":654,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127504Z"},{"ID":57107,"Name":"=|39|=","Points":2650,"X":692,"Y":376,"Continent":"K36","Bonus":5,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127505Z"},{"ID":57108,"Name":"Wioska Nevada","Points":3411,"X":267,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":699693687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127506Z"},{"ID":57109,"Name":"New WorldA","Points":1145,"X":268,"Y":541,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127506Z"},{"ID":57110,"Name":"Wioska sznur","Points":351,"X":478,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":699832431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127507Z"},{"ID":57111,"Name":"[0240]","Points":4276,"X":272,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127508Z"},{"ID":57112,"Name":"Janapola01","Points":816,"X":333,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127508Z"},{"ID":57114,"Name":"Wioska barbarzyƄska","Points":2441,"X":395,"Y":708,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127509Z"},{"ID":57115,"Name":"MojeDnoToWaszSzczyt","Points":5329,"X":501,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12751Z"},{"ID":57116,"Name":"Osada koczownikĂłw","Points":1713,"X":711,"Y":599,"Continent":"K57","Bonus":5,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127511Z"},{"ID":57117,"Name":"WZ13","Points":1524,"X":701,"Y":607,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127511Z"},{"ID":57118,"Name":"Wioska barbarzyƄska","Points":996,"X":640,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127512Z"},{"ID":57119,"Name":"Avanti!","Points":1306,"X":268,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127513Z"},{"ID":57120,"Name":"PiekƂo to inni","Points":3387,"X":654,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127513Z"},{"ID":57121,"Name":"[0241]","Points":4032,"X":272,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127514Z"},{"ID":57122,"Name":"Wioska barbarzyƄska","Points":788,"X":331,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":6910361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127515Z"},{"ID":57123,"Name":"Wioska barbarzyƄska","Points":1111,"X":311,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127516Z"},{"ID":57124,"Name":"????","Points":4700,"X":493,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127516Z"},{"ID":57125,"Name":"Wioska barbarzyƄska","Points":3683,"X":561,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127517Z"},{"ID":57126,"Name":"=123= Wioska barbarzyƄska","Points":1500,"X":726,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127518Z"},{"ID":57127,"Name":"-003- Wioska barbarzyƄska","Points":1327,"X":684,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127518Z"},{"ID":57128,"Name":"Sony 911","Points":1842,"X":680,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127519Z"},{"ID":57129,"Name":"Wioska bambinos66","Points":6911,"X":716,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":8325700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12752Z"},{"ID":57130,"Name":"PiekƂo to inni","Points":1877,"X":657,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127521Z"},{"ID":57131,"Name":"Wioska barbarzyƄska","Points":361,"X":335,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127521Z"},{"ID":57132,"Name":"Wioska barbarzyƄska","Points":2599,"X":403,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127522Z"},{"ID":57133,"Name":"K67 15","Points":2541,"X":705,"Y":619,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127523Z"},{"ID":57134,"Name":"Wioska barbarzyƄska","Points":3279,"X":655,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127523Z"},{"ID":57135,"Name":"Wioska barbarzyƄska","Points":5279,"X":724,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127524Z"},{"ID":57136,"Name":"komandos","Points":3528,"X":673,"Y":655,"Continent":"K66","Bonus":0,"PlayerID":7976264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127525Z"},{"ID":57137,"Name":"Harem","Points":5847,"X":627,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":848882577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127525Z"},{"ID":57138,"Name":"Wioska barbarzyƄska","Points":3271,"X":674,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127526Z"},{"ID":57139,"Name":"CastAway !035","Points":2145,"X":716,"Y":582,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127527Z"},{"ID":57140,"Name":"04Wioska barbarzyƄska","Points":3127,"X":354,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127528Z"},{"ID":57141,"Name":"Wioska Harmozabal","Points":53,"X":676,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":1675628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127528Z"},{"ID":57142,"Name":"wuju1","Points":925,"X":381,"Y":702,"Continent":"K73","Bonus":0,"PlayerID":849101224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127529Z"},{"ID":57143,"Name":"babababab","Points":1046,"X":668,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":7646152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12753Z"},{"ID":57144,"Name":"18 Spedd Box","Points":4971,"X":729,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12753Z"},{"ID":57145,"Name":"Wioska barbarzyƄska","Points":937,"X":267,"Y":464,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127531Z"},{"ID":57146,"Name":"Wioska MARCINEK GROĆ»NY","Points":270,"X":726,"Y":477,"Continent":"K47","Bonus":0,"PlayerID":849069010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127532Z"},{"ID":57147,"Name":"Ćčrebię","Points":737,"X":572,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849080011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127533Z"},{"ID":57148,"Name":"=SAwars=07=","Points":1490,"X":566,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127533Z"},{"ID":57149,"Name":"Wioska barbarzyƄska","Points":730,"X":367,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127534Z"},{"ID":57150,"Name":"Wioska barbarzyƄska","Points":2428,"X":602,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127535Z"},{"ID":57151,"Name":"Betka","Points":766,"X":669,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":849048856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127535Z"},{"ID":57152,"Name":"Wioska warkoczynka","Points":844,"X":610,"Y":607,"Continent":"K66","Bonus":0,"PlayerID":698580310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127536Z"},{"ID":57153,"Name":"043 KTW","Points":850,"X":728,"Y":442,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127537Z"},{"ID":57154,"Name":"Wioska barbarzyƄska","Points":2048,"X":378,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127537Z"},{"ID":57155,"Name":"MojeDnoToWaszSzczyt","Points":5897,"X":503,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127538Z"},{"ID":57156,"Name":"D013","Points":3348,"X":564,"Y":281,"Continent":"K25","Bonus":9,"PlayerID":699299123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127539Z"},{"ID":57157,"Name":"Wioska touchmeboy","Points":430,"X":716,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":849043776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12754Z"},{"ID":57158,"Name":"Wioska barbarzyƄska","Points":2629,"X":401,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12754Z"},{"ID":57159,"Name":"Wioska Quattro only","Points":6050,"X":301,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":849112435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127541Z"},{"ID":57160,"Name":"Wioska barbarzyƄska","Points":4200,"X":640,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127542Z"},{"ID":57161,"Name":"New World","Points":4350,"X":418,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127543Z"},{"ID":57162,"Name":"Wioska greenapple","Points":26,"X":727,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":698604229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127543Z"},{"ID":57163,"Name":"backstage 4","Points":2651,"X":706,"Y":399,"Continent":"K37","Bonus":0,"PlayerID":849099696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127544Z"},{"ID":57164,"Name":"Na SsSskraju","Points":5647,"X":276,"Y":570,"Continent":"K52","Bonus":8,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127545Z"},{"ID":57165,"Name":"Wioska PACYFICA","Points":590,"X":520,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":1450352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127546Z"},{"ID":57166,"Name":"MojeDnoToWaszSzczyt","Points":5442,"X":478,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127546Z"},{"ID":57167,"Name":"New World","Points":3624,"X":427,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127547Z"},{"ID":57168,"Name":"001","Points":4943,"X":299,"Y":614,"Continent":"K62","Bonus":0,"PlayerID":849100796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127548Z"},{"ID":57169,"Name":"Wioska barbarzyƄska","Points":3333,"X":537,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127548Z"},{"ID":57170,"Name":"Osada koczownikĂłw","Points":4607,"X":737,"Y":518,"Continent":"K57","Bonus":7,"PlayerID":849082848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127549Z"},{"ID":57171,"Name":"nowa 6","Points":477,"X":631,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12755Z"},{"ID":57172,"Name":"moczary","Points":889,"X":280,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":699880701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.12755Z"},{"ID":57173,"Name":"Wioska daro1974","Points":222,"X":400,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":3773216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127551Z"},{"ID":57174,"Name":"Spy","Points":951,"X":682,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127552Z"},{"ID":57175,"Name":"Ɓatwy cel","Points":6135,"X":380,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":699419851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127553Z"},{"ID":57176,"Name":"015 | North","Points":3000,"X":371,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127553Z"},{"ID":57177,"Name":"038 - Budowanko!","Points":5053,"X":485,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127554Z"},{"ID":57178,"Name":"Nowa Baza 7","Points":3537,"X":615,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.127555Z"},{"ID":57179,"Name":"New World","Points":6428,"X":425,"Y":719,"Continent":"K74","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159954Z"},{"ID":57180,"Name":"Wioska barbarzyƄska","Points":3149,"X":716,"Y":408,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159955Z"},{"ID":57181,"Name":"Ks Konfederacja","Points":5140,"X":692,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159956Z"},{"ID":57182,"Name":"Wioska SiwyStaruszek","Points":1308,"X":516,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":848937780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159957Z"},{"ID":57183,"Name":"013 | North","Points":2843,"X":378,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159958Z"},{"ID":57184,"Name":"Wioska Pimpuƛ","Points":52,"X":459,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":849057655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159958Z"},{"ID":57185,"Name":"Wioska barbarzyƄska","Points":2924,"X":274,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159959Z"},{"ID":57186,"Name":"KONFA TO MARKA, NARKA","Points":2034,"X":287,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.15996Z"},{"ID":57187,"Name":"Wioska barbarzyƄska","Points":1459,"X":544,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159961Z"},{"ID":57188,"Name":"Wioska barbarzyƄska","Points":461,"X":305,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159961Z"},{"ID":57189,"Name":"Wioska Damian098po","Points":311,"X":544,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849088880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159962Z"},{"ID":57190,"Name":"Wioska Stefek7","Points":801,"X":376,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849108934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159963Z"},{"ID":57191,"Name":"Wioska barbarzyƄska","Points":383,"X":589,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159963Z"},{"ID":57192,"Name":"Osada koczownikĂłw","Points":523,"X":321,"Y":349,"Continent":"K33","Bonus":3,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159964Z"},{"ID":57193,"Name":"Wioska barbarzyƄska","Points":362,"X":386,"Y":705,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159965Z"},{"ID":57194,"Name":"Osada 1","Points":2537,"X":278,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":848936053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159966Z"},{"ID":57195,"Name":"099","Points":1933,"X":732,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159966Z"},{"ID":57196,"Name":"WZ05","Points":3256,"X":713,"Y":600,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159967Z"},{"ID":57197,"Name":"C008","Points":1536,"X":463,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":8954402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159968Z"},{"ID":57198,"Name":"PiekƂo to inni","Points":3262,"X":654,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159969Z"},{"ID":57200,"Name":"KONFA TO MARKA, NARKA","Points":3768,"X":271,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159969Z"},{"ID":57201,"Name":"Wioska barbarzyƄska","Points":196,"X":649,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":849048734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.15997Z"},{"ID":57202,"Name":"Wioska barbarzyƄska","Points":208,"X":731,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159971Z"},{"ID":57203,"Name":"gondor","Points":2116,"X":290,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159971Z"},{"ID":57204,"Name":"o016","Points":3513,"X":613,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159972Z"},{"ID":57205,"Name":"Wioska barbarzyƄska","Points":399,"X":343,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159973Z"},{"ID":57206,"Name":"005 Barad Dur","Points":7045,"X":505,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849100383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159974Z"},{"ID":57207,"Name":"105 Wioska barbarzyƄska","Points":1022,"X":567,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159974Z"},{"ID":57208,"Name":"P|007|","Points":4936,"X":439,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":699393742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159975Z"},{"ID":57209,"Name":"=SAwars=05=","Points":2981,"X":564,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159976Z"},{"ID":57210,"Name":"Wioska barbarzyƄska","Points":339,"X":347,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159977Z"},{"ID":57212,"Name":"Arczi997 07","Points":278,"X":270,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159977Z"},{"ID":57213,"Name":"#019","Points":2079,"X":558,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159978Z"},{"ID":57214,"Name":"Wioska elgordo","Points":1599,"X":716,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":1079223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159979Z"},{"ID":57215,"Name":"Wioska barbarzyƄska","Points":422,"X":346,"Y":677,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159979Z"},{"ID":57216,"Name":"Wioska barbarzyƄska","Points":204,"X":298,"Y":615,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.15998Z"},{"ID":57217,"Name":"Wioska barbarzyƄska","Points":3332,"X":530,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159981Z"},{"ID":57218,"Name":"Wioska domin964","Points":2064,"X":730,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":849112725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159982Z"},{"ID":57219,"Name":"BETON 112","Points":175,"X":667,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":699277039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159982Z"},{"ID":57221,"Name":".:080:. Takmahal","Points":3384,"X":522,"Y":446,"Continent":"K45","Bonus":0,"PlayerID":848934935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159983Z"},{"ID":57222,"Name":"Wioska mrozzo","Points":26,"X":663,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":849048112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159984Z"},{"ID":57223,"Name":"Wioska barbarzyƄska","Points":599,"X":295,"Y":613,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159985Z"},{"ID":57224,"Name":"O158","Points":786,"X":310,"Y":630,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159985Z"},{"ID":57225,"Name":"Bagno 38","Points":3981,"X":461,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159986Z"},{"ID":57226,"Name":"Osada koczownikĂłw","Points":3905,"X":406,"Y":286,"Continent":"K24","Bonus":5,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159987Z"},{"ID":57228,"Name":"New WorldA","Points":1158,"X":271,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159987Z"},{"ID":57229,"Name":".5.","Points":1827,"X":289,"Y":391,"Continent":"K32","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159988Z"},{"ID":57230,"Name":"Wiadro25","Points":593,"X":679,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159989Z"},{"ID":57231,"Name":"marekkkzzz665","Points":5565,"X":402,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":9195661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.15999Z"},{"ID":57232,"Name":"Wioska barbarzyƄska","Points":5911,"X":648,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.15999Z"},{"ID":57234,"Name":"Wioska barbarzyƄska","Points":5270,"X":726,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159991Z"},{"ID":57235,"Name":"KONFA TO MARKA, NARKA","Points":1540,"X":289,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159992Z"},{"ID":57236,"Name":"PóƂnocny Bagdad","Points":6341,"X":621,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159993Z"},{"ID":57237,"Name":"MojeDnoToWaszSzczyt","Points":3979,"X":483,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159993Z"},{"ID":57238,"Name":"North K25","Points":1504,"X":560,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159994Z"},{"ID":57239,"Name":"PóƂnocny Bagdad","Points":5072,"X":625,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159995Z"},{"ID":57240,"Name":"Wioska 092","Points":4834,"X":697,"Y":616,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159996Z"},{"ID":57241,"Name":"...","Points":1068,"X":685,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":849108991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159996Z"},{"ID":57242,"Name":"Nowa Baza 9","Points":4637,"X":615,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159997Z"},{"ID":57243,"Name":"C.062","Points":914,"X":731,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159998Z"},{"ID":57244,"Name":"New World","Points":4178,"X":423,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159998Z"},{"ID":57245,"Name":"Wioska barbarzyƄska","Points":400,"X":306,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.159999Z"},{"ID":57246,"Name":"Wioska barbarzyƄska","Points":127,"X":291,"Y":591,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16Z"},{"ID":57247,"Name":"New World","Points":8098,"X":272,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160001Z"},{"ID":57248,"Name":"Aa2","Points":5144,"X":593,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160001Z"},{"ID":57249,"Name":"Wioska barbarzyƄska","Points":746,"X":727,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160002Z"},{"ID":57250,"Name":"0029zzz006","Points":482,"X":708,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160003Z"},{"ID":57252,"Name":"Wioska barbarzyƄska","Points":571,"X":319,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160004Z"},{"ID":57253,"Name":".achim.","Points":862,"X":573,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160004Z"},{"ID":57254,"Name":"Wioska barbarzyƄska","Points":2778,"X":712,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160005Z"},{"ID":57255,"Name":"Waldus","Points":3680,"X":521,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849110382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160006Z"},{"ID":57256,"Name":"PPF-09","Points":1389,"X":519,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160007Z"},{"ID":57257,"Name":"KONFA TO MARKA, NARKA","Points":5693,"X":277,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160008Z"},{"ID":57258,"Name":"Wioska Mega Niepokorny","Points":3937,"X":399,"Y":287,"Continent":"K23","Bonus":0,"PlayerID":699741694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160008Z"},{"ID":57259,"Name":"#009","Points":6221,"X":553,"Y":274,"Continent":"K25","Bonus":3,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160009Z"},{"ID":57260,"Name":"mogƂem wbić kolejnego klina","Points":371,"X":622,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16001Z"},{"ID":57261,"Name":"Wioska barbarzyƄska","Points":5416,"X":727,"Y":558,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160011Z"},{"ID":57262,"Name":"Wioska 0019","Points":6294,"X":340,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160011Z"},{"ID":57263,"Name":"Wiocha Zochy 2","Points":282,"X":361,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":8838462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160012Z"},{"ID":57264,"Name":"o,o 3","Points":296,"X":445,"Y":270,"Continent":"K24","Bonus":7,"PlayerID":848933470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160013Z"},{"ID":57265,"Name":"Wioska Zawodnika 3","Points":3480,"X":569,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":698655859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160014Z"},{"ID":57266,"Name":"KONFA TO MARKA, NARKA","Points":7603,"X":281,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160014Z"},{"ID":57267,"Name":"Sony 911","Points":1851,"X":678,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160015Z"},{"ID":57268,"Name":"PPF-12","Points":1704,"X":522,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160016Z"},{"ID":57269,"Name":"068.","Points":9397,"X":452,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":849034882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160017Z"},{"ID":57270,"Name":"Wioska barbarzyƄska","Points":145,"X":281,"Y":589,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160017Z"},{"ID":57271,"Name":"Wioska barbarzyƄska","Points":5347,"X":526,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160018Z"},{"ID":57272,"Name":"Wioska Crift","Points":1622,"X":358,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":848887366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160019Z"},{"ID":57273,"Name":"Wioska barbarzyƄska","Points":896,"X":727,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16002Z"},{"ID":57274,"Name":"Wioska barbarzyƄska","Points":2001,"X":686,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":7758085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16002Z"},{"ID":57275,"Name":"046","Points":569,"X":675,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":2323859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160021Z"},{"ID":57276,"Name":"Wioska barbarzyƄska","Points":985,"X":632,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":849096354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160022Z"},{"ID":57277,"Name":"Osada koczownikĂłw","Points":965,"X":347,"Y":670,"Continent":"K63","Bonus":1,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160023Z"},{"ID":57278,"Name":"Sony 911","Points":1912,"X":671,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160023Z"},{"ID":57279,"Name":"KONFA TO MARKA, NARKA","Points":4134,"X":276,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160024Z"},{"ID":57280,"Name":"Wioska Sylwiaa1234","Points":68,"X":571,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":849048552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160025Z"},{"ID":57281,"Name":"Wioska barbarzyƄska 09","Points":6752,"X":343,"Y":331,"Continent":"K33","Bonus":9,"PlayerID":698757439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160025Z"},{"ID":57282,"Name":"Wioska amon201","Points":926,"X":320,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":7262049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160026Z"},{"ID":57283,"Name":"068KP","Points":598,"X":473,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160027Z"},{"ID":57284,"Name":"Wioska barbarzyƄska","Points":514,"X":324,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":849098400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160028Z"},{"ID":57286,"Name":"Wioska barbarzyƄska","Points":576,"X":294,"Y":613,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160028Z"},{"ID":57287,"Name":"Wioska barbarzyƄska","Points":251,"X":292,"Y":398,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160029Z"},{"ID":57288,"Name":"Wioska 112","Points":2677,"X":687,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16003Z"},{"ID":57289,"Name":"Wioska barbarzyƄska","Points":1801,"X":723,"Y":558,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160031Z"},{"ID":57290,"Name":"Wioska barbarzyƄska","Points":2676,"X":712,"Y":408,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160031Z"},{"ID":57292,"Name":"Wioska barbarzyƄska","Points":3461,"X":385,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160032Z"},{"ID":57293,"Name":"Ciapolos","Points":3047,"X":446,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":849111231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160033Z"},{"ID":57294,"Name":"Wioska Pazuros","Points":3090,"X":449,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":849111316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160034Z"},{"ID":57295,"Name":"KONFA TO MARKA, NARKA","Points":3735,"X":275,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160034Z"},{"ID":57296,"Name":"Wioska barbarzyƄska","Points":2800,"X":664,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160035Z"},{"ID":57297,"Name":"????","Points":3615,"X":461,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160036Z"},{"ID":57298,"Name":"Osada koczownikĂłw","Points":980,"X":376,"Y":298,"Continent":"K23","Bonus":3,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160036Z"},{"ID":57299,"Name":".6.","Points":2398,"X":287,"Y":410,"Continent":"K42","Bonus":0,"PlayerID":762975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160037Z"},{"ID":57300,"Name":"K42 ADAMUS 021","Points":3301,"X":279,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160038Z"},{"ID":57301,"Name":"Wioska barbarzyƄska","Points":798,"X":730,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160039Z"},{"ID":57302,"Name":"#149#","Points":913,"X":649,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160039Z"},{"ID":57303,"Name":"102","Points":1800,"X":738,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16004Z"},{"ID":57304,"Name":"Wioska Breisse","Points":743,"X":546,"Y":404,"Continent":"K45","Bonus":0,"PlayerID":849093771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160041Z"},{"ID":57305,"Name":"Wioska barbarzyƄska","Points":2617,"X":551,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160042Z"},{"ID":57306,"Name":"=124= Wioska barbarzyƄska","Points":1434,"X":717,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160042Z"},{"ID":57307,"Name":"Wioska KrzysztofBerg95","Points":463,"X":274,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":699712243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160043Z"},{"ID":57308,"Name":"PóƂnocny Bagdad","Points":2970,"X":634,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160044Z"},{"ID":57309,"Name":"Wioska barbarzyƄska","Points":377,"X":341,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160045Z"},{"ID":57310,"Name":"033. Syria","Points":4739,"X":524,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160045Z"},{"ID":57311,"Name":"=125= Wioska barbarzyƄska","Points":1246,"X":727,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160046Z"},{"ID":57312,"Name":"Wioska barbarzyƄska","Points":2767,"X":355,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160047Z"},{"ID":57313,"Name":"Wioska barbarzyƄska","Points":535,"X":730,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160048Z"},{"ID":57314,"Name":"Wioska barbarzyƄska","Points":5860,"X":648,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160048Z"},{"ID":57315,"Name":"nr8","Points":802,"X":638,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":364126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160049Z"},{"ID":57316,"Name":"KONFA TO MARKA, NARKA","Points":2274,"X":276,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16005Z"},{"ID":57317,"Name":"maƂy raj","Points":2074,"X":272,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":699401083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160051Z"},{"ID":57318,"Name":"Wioska barbarzyƄska","Points":135,"X":298,"Y":606,"Continent":"K62","Bonus":0,"PlayerID":699604515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160051Z"},{"ID":57319,"Name":"0130","Points":429,"X":714,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160052Z"},{"ID":57320,"Name":"Wioska barbarzyƄska","Points":668,"X":321,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160053Z"},{"ID":57321,"Name":"Wioska barbarzyƄska","Points":3969,"X":402,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160054Z"},{"ID":57322,"Name":"Wioska barbarzyƄska","Points":963,"X":566,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160055Z"},{"ID":57323,"Name":"New WorldA","Points":669,"X":267,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160055Z"},{"ID":57324,"Name":"Wioska Hektor888.","Points":886,"X":723,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":8434727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160056Z"},{"ID":57325,"Name":"B010","Points":3603,"X":529,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160057Z"},{"ID":57326,"Name":"Wioska barbarzyƄska","Points":2474,"X":682,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160057Z"},{"ID":57327,"Name":"Wioska barbarzyƄska","Points":938,"X":321,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160058Z"},{"ID":57328,"Name":"Zaplecze Barba 043","Points":1548,"X":352,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160059Z"},{"ID":57329,"Name":"Zaplecze Barba 044","Points":1608,"X":346,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57329","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16006Z"},{"ID":57330,"Name":"Maszlug kolonia XXII","Points":818,"X":318,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":848977649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16006Z"},{"ID":57331,"Name":"Wioska 1edc","Points":26,"X":698,"Y":623,"Continent":"K66","Bonus":0,"PlayerID":7007969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160061Z"},{"ID":57332,"Name":"#135#","Points":2088,"X":664,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160062Z"},{"ID":57333,"Name":"Kombinat","Points":1263,"X":281,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160063Z"},{"ID":57334,"Name":"KONFA TO MARKA, NARKA","Points":3550,"X":274,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160063Z"},{"ID":57335,"Name":"Wioska Kaczoland","Points":213,"X":289,"Y":608,"Continent":"K62","Bonus":0,"PlayerID":6323735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160064Z"},{"ID":57336,"Name":"Wioska barbarzyƄska","Points":353,"X":444,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160065Z"},{"ID":57337,"Name":"Wioska barbarzyƄska","Points":910,"X":269,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160065Z"},{"ID":57338,"Name":"[207]","Points":1702,"X":720,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160066Z"},{"ID":57340,"Name":"B018","Points":3439,"X":531,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160067Z"},{"ID":57341,"Name":"Wioska barbarzyƄska","Points":2111,"X":720,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160068Z"},{"ID":57342,"Name":"Wioska barbarzyƄska","Points":986,"X":730,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160068Z"},{"ID":57343,"Name":"Wioska barbarzyƄska","Points":987,"X":719,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160069Z"},{"ID":57344,"Name":"O118","Points":6412,"X":311,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16007Z"},{"ID":57345,"Name":"North 057","Points":4918,"X":528,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16007Z"},{"ID":57346,"Name":"Wioska barbarzyƄska","Points":660,"X":713,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160071Z"},{"ID":57347,"Name":"KONFA TO MARKA, NARKA","Points":2083,"X":271,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160072Z"},{"ID":57348,"Name":"Wioska barbarzyƄska","Points":1340,"X":392,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160073Z"},{"ID":57349,"Name":"008","Points":728,"X":263,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160073Z"},{"ID":57350,"Name":"Zzz 12 trochę daleko","Points":524,"X":282,"Y":581,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160074Z"},{"ID":57351,"Name":"New World","Points":6538,"X":410,"Y":718,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160075Z"},{"ID":57353,"Name":"001::","Points":1723,"X":352,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160075Z"},{"ID":57354,"Name":"Wioska barbarzyƄska","Points":431,"X":732,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160076Z"},{"ID":57355,"Name":"Wioska barbarzyƄska","Points":563,"X":269,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160077Z"},{"ID":57357,"Name":"New WorldA","Points":1354,"X":273,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160078Z"},{"ID":57358,"Name":"North 065","Points":5172,"X":515,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160078Z"},{"ID":57359,"Name":"North K25","Points":1721,"X":566,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160079Z"},{"ID":57360,"Name":".achim.","Points":1476,"X":580,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16008Z"},{"ID":57361,"Name":"PoznaƄ","Points":3516,"X":559,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699872401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16008Z"},{"ID":57362,"Name":"PPF-06","Points":3170,"X":508,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160081Z"},{"ID":57364,"Name":"001 Mordor","Points":8544,"X":521,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":849100383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160082Z"},{"ID":57365,"Name":"Wioska barbarzyƄska","Points":2686,"X":713,"Y":407,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160083Z"},{"ID":57366,"Name":"Wioska gajawa","Points":634,"X":589,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":7781236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160083Z"},{"ID":57367,"Name":"009","Points":2427,"X":273,"Y":465,"Continent":"K42","Bonus":2,"PlayerID":698652171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160084Z"},{"ID":57369,"Name":"Wioska wjadr0","Points":26,"X":604,"Y":712,"Continent":"K76","Bonus":0,"PlayerID":699711334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160085Z"},{"ID":57370,"Name":"PPF-08","Points":3019,"X":518,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160085Z"},{"ID":57372,"Name":"009","Points":4209,"X":284,"Y":595,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160086Z"},{"ID":57373,"Name":"Saran12","Points":302,"X":407,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":848937248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160087Z"},{"ID":57374,"Name":"Wioska barbarzyƄska","Points":376,"X":305,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160088Z"},{"ID":57375,"Name":"PPF-35","Points":879,"X":573,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160088Z"},{"ID":57376,"Name":"Wioska barbarzyƄska","Points":887,"X":733,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160089Z"},{"ID":57377,"Name":"Flap","Points":3936,"X":607,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16009Z"},{"ID":57378,"Name":"Wioska barbarzyƄska","Points":2029,"X":731,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160091Z"},{"ID":57379,"Name":"New WorldA","Points":1600,"X":273,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160091Z"},{"ID":57380,"Name":"Wioska barbarzyƄska","Points":731,"X":286,"Y":590,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160092Z"},{"ID":57381,"Name":"44.","Points":650,"X":331,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160093Z"},{"ID":57383,"Name":"Wioska barbarzyƄska","Points":1489,"X":318,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":698364331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160094Z"},{"ID":57384,"Name":"BaligrĂłd","Points":1894,"X":626,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":848922958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160094Z"},{"ID":57385,"Name":"KONFA TO MARKA, NARKA","Points":2291,"X":288,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160095Z"},{"ID":57386,"Name":"Wioska barbarzyƄska","Points":185,"X":354,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160096Z"},{"ID":57387,"Name":"bandzior na koƄcu","Points":3533,"X":506,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":849065697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160096Z"},{"ID":57388,"Name":"Wioska barbarzyƄska","Points":246,"X":318,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160097Z"},{"ID":57389,"Name":"Wioska barbarzyƄska","Points":1408,"X":681,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160098Z"},{"ID":57390,"Name":"PóƂnocny Bagdad","Points":2200,"X":635,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160099Z"},{"ID":57391,"Name":"Wioska1 barbarzyƄska","Points":3430,"X":710,"Y":412,"Continent":"K47","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160099Z"},{"ID":57392,"Name":"Wioska barbarzyƄska","Points":4694,"X":722,"Y":582,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1601Z"},{"ID":57393,"Name":"#126#","Points":2410,"X":654,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160101Z"},{"ID":57394,"Name":"Wioska mlodyfacetkosmita","Points":41,"X":333,"Y":593,"Continent":"K53","Bonus":0,"PlayerID":849081284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160101Z"},{"ID":57395,"Name":"Wioska barbarzyƄska","Points":1840,"X":589,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160102Z"},{"ID":57396,"Name":"Wioska Alchemika","Points":640,"X":342,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849068108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160103Z"},{"ID":57397,"Name":"New WorldA","Points":1010,"X":267,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160104Z"},{"ID":57398,"Name":"NOT*","Points":8039,"X":312,"Y":354,"Continent":"K33","Bonus":9,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160104Z"},{"ID":57399,"Name":"-23-","Points":3089,"X":578,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160105Z"},{"ID":57400,"Name":"Avanti!","Points":2334,"X":270,"Y":490,"Continent":"K42","Bonus":1,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160106Z"},{"ID":57401,"Name":"O156","Points":1406,"X":308,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160107Z"},{"ID":57402,"Name":"002 Moria","Points":3825,"X":519,"Y":264,"Continent":"K25","Bonus":0,"PlayerID":849100383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160107Z"},{"ID":57403,"Name":"New World","Points":7236,"X":427,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160108Z"},{"ID":57404,"Name":"Wiadro22","Points":1823,"X":682,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":8677963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160109Z"},{"ID":57405,"Name":"Wioska WiedĆșma","Points":194,"X":304,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":849106698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16011Z"},{"ID":57406,"Name":"North K25","Points":1781,"X":562,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16011Z"},{"ID":57407,"Name":"001","Points":867,"X":316,"Y":395,"Continent":"K33","Bonus":0,"PlayerID":1809943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160111Z"},{"ID":57408,"Name":"Wioska barbarzyƄska","Points":1981,"X":528,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160112Z"},{"ID":57409,"Name":"Wioska","Points":5995,"X":303,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":9185931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160112Z"},{"ID":57410,"Name":"????","Points":2801,"X":489,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160113Z"},{"ID":57411,"Name":"Wioska gall4","Points":1178,"X":268,"Y":475,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160114Z"},{"ID":57412,"Name":"005","Points":4249,"X":465,"Y":271,"Continent":"K24","Bonus":3,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160115Z"},{"ID":57413,"Name":"PiekƂo to inni","Points":2719,"X":655,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160115Z"},{"ID":57414,"Name":"Alamo4","Points":1755,"X":714,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160116Z"},{"ID":57415,"Name":"PóƂnocny Bagdad","Points":1112,"X":604,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160117Z"},{"ID":57416,"Name":"076. Wioska barbarzyƄska","Points":4435,"X":729,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160118Z"},{"ID":57417,"Name":"@@2","Points":1223,"X":266,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":849113546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160118Z"},{"ID":57418,"Name":"Wioska Deylor","Points":453,"X":291,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":849032741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160119Z"},{"ID":57419,"Name":"WB41","Points":758,"X":302,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16012Z"},{"ID":57420,"Name":"Wioska Baat","Points":872,"X":397,"Y":298,"Continent":"K23","Bonus":0,"PlayerID":699709160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16012Z"},{"ID":57421,"Name":"Wioska barbarzyƄska","Points":2559,"X":724,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160121Z"},{"ID":57422,"Name":"Wioska barbarzyƄska","Points":466,"X":309,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160122Z"},{"ID":57423,"Name":"KONFA TO MARKA, NARKA","Points":3732,"X":275,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160123Z"},{"ID":57424,"Name":"Osada koczownikĂłw","Points":5383,"X":317,"Y":645,"Continent":"K63","Bonus":2,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160123Z"},{"ID":57425,"Name":"Wioska barbarzyƄska","Points":610,"X":349,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160124Z"},{"ID":57426,"Name":"Wioska barbarzyƄska","Points":355,"X":574,"Y":601,"Continent":"K65","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160125Z"},{"ID":57427,"Name":"Wioska barbarzyƄska","Points":820,"X":384,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160126Z"},{"ID":57428,"Name":"Wioska barbarzyƄska","Points":551,"X":270,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160126Z"},{"ID":57429,"Name":"Wioska barbarzyƄska","Points":2776,"X":352,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160127Z"},{"ID":57430,"Name":"KONFA TO MARKA, NARKA","Points":3772,"X":282,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160128Z"},{"ID":57431,"Name":"Wioska b 003","Points":2012,"X":423,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160128Z"},{"ID":57432,"Name":"New World","Points":4832,"X":414,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160129Z"},{"ID":57433,"Name":"New World","Points":4000,"X":422,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16013Z"},{"ID":57434,"Name":"068.","Points":1155,"X":706,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":849094609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16013Z"},{"ID":57435,"Name":"Madagascar","Points":6843,"X":322,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":7707390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160131Z"},{"ID":57436,"Name":"K67 20","Points":2307,"X":705,"Y":611,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160132Z"},{"ID":57437,"Name":"Wioska barbarzyƄska","Points":187,"X":722,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160133Z"},{"ID":57438,"Name":"...::181 13::...","Points":1724,"X":272,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":699641777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160133Z"},{"ID":57439,"Name":"PóƂnocny Bagdad","Points":7002,"X":624,"Y":301,"Continent":"K36","Bonus":2,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160134Z"},{"ID":57440,"Name":"*01*","Points":665,"X":685,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":1284796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160135Z"},{"ID":57441,"Name":"PóƂ 1","Points":1220,"X":438,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160136Z"},{"ID":57442,"Name":"Wioska barbarzyƄska","Points":1049,"X":363,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160136Z"},{"ID":57443,"Name":"R 054","Points":1745,"X":488,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160137Z"},{"ID":57444,"Name":"PóƂnocny Bagdad","Points":2077,"X":616,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160138Z"},{"ID":57445,"Name":"Wioska barbarzyƄska","Points":466,"X":310,"Y":364,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160138Z"},{"ID":57446,"Name":"Wioska barbarzyƄska","Points":460,"X":318,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160139Z"},{"ID":57447,"Name":"Oaza","Points":402,"X":348,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":2725721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16014Z"},{"ID":57448,"Name":"New World","Points":4657,"X":404,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16014Z"},{"ID":57449,"Name":"Wioska barbarzyƄska","Points":2328,"X":546,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160141Z"},{"ID":57450,"Name":"KONFA TO MARKA, NARKA","Points":1800,"X":285,"Y":408,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160142Z"},{"ID":57451,"Name":"Wioska Tabaluga1922","Points":844,"X":501,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":848950255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160143Z"},{"ID":57452,"Name":"Ć»ywioƂ","Points":273,"X":680,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160143Z"},{"ID":57453,"Name":"Wioska barbarzyƄska","Points":1385,"X":693,"Y":379,"Continent":"K36","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160144Z"},{"ID":57454,"Name":"Wioska barbarzyƄska","Points":3161,"X":720,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160145Z"},{"ID":57455,"Name":"04Osada koczownikĂłw","Points":7979,"X":362,"Y":690,"Continent":"K63","Bonus":1,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160145Z"},{"ID":57457,"Name":"MojeDnoToWaszSzczyt","Points":2381,"X":467,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160146Z"},{"ID":57458,"Name":"097 Wioska barbarzyƄska","Points":4765,"X":541,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160147Z"},{"ID":57460,"Name":"O119","Points":5851,"X":306,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160148Z"},{"ID":57461,"Name":"Zęby Smoka","Points":5485,"X":412,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":849037354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160148Z"},{"ID":57462,"Name":"XDX","Points":3743,"X":614,"Y":298,"Continent":"K26","Bonus":4,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160149Z"},{"ID":57464,"Name":"011","Points":4536,"X":394,"Y":288,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16015Z"},{"ID":57466,"Name":"Wioska barbarzyƄska","Points":1162,"X":736,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16015Z"},{"ID":57468,"Name":"KONFA TO MARKA, NARKA","Points":4782,"X":277,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160151Z"},{"ID":57469,"Name":"New World","Points":2537,"X":416,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160152Z"},{"ID":57470,"Name":"Kiedyƛ Wielki Wojownik","Points":1094,"X":328,"Y":351,"Continent":"K33","Bonus":0,"PlayerID":8632462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160153Z"},{"ID":57471,"Name":"031","Points":7215,"X":704,"Y":399,"Continent":"K37","Bonus":2,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160153Z"},{"ID":57472,"Name":"Wioska","Points":1402,"X":603,"Y":703,"Continent":"K76","Bonus":0,"PlayerID":849113078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160154Z"},{"ID":57473,"Name":"!Wioska barbarzyƄska 22","Points":3122,"X":583,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160155Z"},{"ID":57474,"Name":"Wioska pepus1971","Points":3441,"X":607,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":699238678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160155Z"},{"ID":57475,"Name":"Wioska barbarzyƄska","Points":5450,"X":647,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160156Z"},{"ID":57476,"Name":"magazyn PP xxx","Points":1553,"X":664,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849111196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160157Z"},{"ID":57477,"Name":"Wioska mysza","Points":417,"X":274,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":849110852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160158Z"},{"ID":57478,"Name":"Wioska barbarzyƄska","Points":385,"X":317,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160158Z"},{"ID":57479,"Name":"Wioska Trzepak7","Points":249,"X":405,"Y":712,"Continent":"K74","Bonus":0,"PlayerID":849103237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160159Z"},{"ID":57480,"Name":"Wioska barbarzyƄska","Points":1197,"X":460,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16016Z"},{"ID":57481,"Name":"Wioska barbarzyƄska","Points":232,"X":300,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16016Z"},{"ID":57482,"Name":"Wioska barbarzyƄska","Points":1691,"X":626,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160161Z"},{"ID":57483,"Name":"Wioska Mlody165","Points":2293,"X":471,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":849113055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160162Z"},{"ID":57485,"Name":"Wioska barbarzyƄska","Points":2579,"X":403,"Y":706,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160163Z"},{"ID":57486,"Name":"Wioska barbarzyƄska","Points":3671,"X":547,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160163Z"},{"ID":57487,"Name":"Wioska Astecki","Points":52,"X":291,"Y":394,"Continent":"K32","Bonus":0,"PlayerID":849112733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160164Z"},{"ID":57488,"Name":"PPF-13","Points":3030,"X":510,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160165Z"},{"ID":57490,"Name":"Wioska barbarzyƄska","Points":156,"X":592,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160165Z"},{"ID":57491,"Name":"009","Points":4787,"X":286,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160166Z"},{"ID":57493,"Name":"Wioska barbarzyƄska","Points":2036,"X":732,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160167Z"},{"ID":57494,"Name":"Wioska barbarzyƄska","Points":2012,"X":706,"Y":393,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160168Z"},{"ID":57495,"Name":"Wioska barbarzyƄska","Points":1338,"X":641,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160169Z"},{"ID":57496,"Name":"010","Points":5246,"X":397,"Y":288,"Continent":"K23","Bonus":2,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160169Z"},{"ID":57497,"Name":"Wioska xmox","Points":626,"X":722,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":6822085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16017Z"},{"ID":57498,"Name":"Sony 912","Points":2931,"X":705,"Y":392,"Continent":"K37","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160171Z"},{"ID":57499,"Name":"Wioska barbarzyƄska","Points":4285,"X":362,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160171Z"},{"ID":57500,"Name":"O160","Points":756,"X":313,"Y":645,"Continent":"K63","Bonus":6,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160172Z"},{"ID":57502,"Name":"Wioska mrugowal","Points":71,"X":691,"Y":373,"Continent":"K36","Bonus":0,"PlayerID":849104474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160173Z"},{"ID":57503,"Name":"0027zzz04","Points":468,"X":708,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":3986807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160174Z"},{"ID":57505,"Name":"#002 Las Vegas","Points":1091,"X":331,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":849101276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160174Z"},{"ID":57506,"Name":"Wioska barbarzyƄska","Points":2649,"X":377,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160175Z"},{"ID":57507,"Name":"Wioska rafi041072","Points":522,"X":416,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":1511101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160176Z"},{"ID":57508,"Name":"Wioska barbarzyƄska","Points":1057,"X":443,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160177Z"},{"ID":57509,"Name":"????","Points":3501,"X":484,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160177Z"},{"ID":57511,"Name":"Pan Pączek","Points":2028,"X":271,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":849105417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160178Z"},{"ID":57512,"Name":"PPF-07","Points":3181,"X":510,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160179Z"},{"ID":57513,"Name":"Wioska Koc Mƛciwy","Points":129,"X":279,"Y":573,"Continent":"K52","Bonus":0,"PlayerID":849083725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160179Z"},{"ID":57514,"Name":"221...NORTH","Points":1955,"X":431,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16018Z"},{"ID":57515,"Name":"Wioska barbarzyƄska","Points":600,"X":425,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160181Z"},{"ID":57516,"Name":"Wioska barbarzyƄska","Points":3006,"X":356,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160182Z"},{"ID":57517,"Name":"Wioska Piotr-Wielki2","Points":2167,"X":727,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":849110021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160182Z"},{"ID":57518,"Name":"New World","Points":5026,"X":408,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160183Z"},{"ID":57519,"Name":"Wioska barbarzyƄska","Points":2330,"X":728,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160184Z"},{"ID":57521,"Name":"KONFA TO MARKA, NARKA","Points":1293,"X":285,"Y":397,"Continent":"K32","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160184Z"},{"ID":57522,"Name":"Gwenville 016","Points":457,"X":455,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160185Z"},{"ID":57523,"Name":"MojeDnoToWaszSzczyt","Points":4474,"X":466,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160186Z"},{"ID":57524,"Name":"MojeDnoToWaszSzczyt","Points":3090,"X":483,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160187Z"},{"ID":57525,"Name":"Flap","Points":4320,"X":597,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160187Z"},{"ID":57526,"Name":"Wioska barbarzyƄska","Points":327,"X":308,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160188Z"},{"ID":57527,"Name":"Wioska 088","Points":5552,"X":715,"Y":600,"Continent":"K67","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160189Z"},{"ID":57528,"Name":"Nibylandia","Points":693,"X":555,"Y":344,"Continent":"K35","Bonus":0,"PlayerID":849110711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160189Z"},{"ID":57530,"Name":"C0311","Points":2385,"X":272,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16019Z"},{"ID":57531,"Name":"001","Points":5933,"X":732,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":849078498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160191Z"},{"ID":57532,"Name":"Wioska barbarzyƄska","Points":851,"X":735,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160191Z"},{"ID":57533,"Name":"026","Points":2810,"X":529,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":698996782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160193Z"},{"ID":57534,"Name":"Kami 2","Points":1885,"X":736,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160193Z"},{"ID":57535,"Name":"Wioska Raissa","Points":499,"X":273,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":699336679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160194Z"},{"ID":57536,"Name":"Snippet FR","Points":5871,"X":482,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":849004274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160195Z"},{"ID":57537,"Name":"Sony 911","Points":1340,"X":678,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160195Z"},{"ID":57538,"Name":".achim.","Points":1181,"X":575,"Y":283,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160196Z"},{"ID":57539,"Name":"North 080","Points":2890,"X":516,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160197Z"},{"ID":57540,"Name":"Wioska telimena","Points":5291,"X":306,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":699037086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160198Z"},{"ID":57541,"Name":"+.75000...-4","Points":4176,"X":546,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":8320319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160198Z"},{"ID":57542,"Name":"B017","Points":3640,"X":529,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160199Z"},{"ID":57543,"Name":"Wioska barbarzyƄska","Points":118,"X":661,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1602Z"},{"ID":57544,"Name":"Wioska barbarzyƄska","Points":794,"X":680,"Y":354,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1602Z"},{"ID":57545,"Name":"North 066","Points":5593,"X":511,"Y":272,"Continent":"K25","Bonus":4,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160201Z"},{"ID":57547,"Name":"A#038","Points":8451,"X":734,"Y":480,"Continent":"K47","Bonus":1,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160202Z"},{"ID":57549,"Name":"Wioska barbarzyƄska","Points":3271,"X":369,"Y":310,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160203Z"},{"ID":57550,"Name":"kamilkaze135 #18","Points":1488,"X":689,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":699705601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160203Z"},{"ID":57551,"Name":"sw 181","Points":2861,"X":360,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":100452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160204Z"},{"ID":57552,"Name":"Wioska M1","Points":2313,"X":696,"Y":606,"Continent":"K66","Bonus":0,"PlayerID":6046368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160205Z"},{"ID":57553,"Name":"117. Archipelag PoƂudniowy","Points":1981,"X":694,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160205Z"},{"ID":57555,"Name":"Wioska barbarzyƄska","Points":877,"X":732,"Y":499,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160206Z"},{"ID":57556,"Name":"Sony 911","Points":2504,"X":673,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160207Z"},{"ID":57557,"Name":"086. Wioska barbarzyƄska","Points":2939,"X":735,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160207Z"},{"ID":57558,"Name":"Wioska misiu12193","Points":339,"X":433,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":9129046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160208Z"},{"ID":57559,"Name":"Qqqqqq","Points":1225,"X":272,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":848981726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160209Z"},{"ID":57560,"Name":"Wioska barbarzyƄska","Points":4855,"X":645,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16021Z"},{"ID":57561,"Name":"MojeDnoToWaszSzczyt","Points":3362,"X":460,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16021Z"},{"ID":57562,"Name":"ZK Wronki","Points":1595,"X":272,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":698279195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160211Z"},{"ID":57563,"Name":"NOT?","Points":2878,"X":311,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160212Z"},{"ID":57564,"Name":"PPF-43","Points":582,"X":586,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160212Z"},{"ID":57565,"Name":"kurwistaw8808","Points":1633,"X":369,"Y":305,"Continent":"K33","Bonus":0,"PlayerID":848963521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160213Z"},{"ID":57566,"Name":"018","Points":2508,"X":713,"Y":591,"Continent":"K57","Bonus":4,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160214Z"},{"ID":57567,"Name":"Wioska DZ4L4","Points":128,"X":621,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":849100496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160215Z"},{"ID":57568,"Name":"Hi Bady","Points":3442,"X":303,"Y":375,"Continent":"K33","Bonus":0,"PlayerID":848943145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160215Z"},{"ID":57569,"Name":"Na SsSskraju","Points":653,"X":275,"Y":572,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160216Z"},{"ID":57570,"Name":"North 019","Points":6733,"X":517,"Y":270,"Continent":"K25","Bonus":1,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160217Z"},{"ID":57571,"Name":"Wioska barbarzyƄska","Points":1593,"X":725,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160218Z"},{"ID":57572,"Name":"O110","Points":7743,"X":295,"Y":612,"Continent":"K62","Bonus":4,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160218Z"},{"ID":57573,"Name":"#125#","Points":2603,"X":651,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160219Z"},{"ID":57574,"Name":"Wow23","Points":369,"X":351,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699730714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16022Z"},{"ID":57575,"Name":"GrochĂłw","Points":449,"X":284,"Y":408,"Continent":"K42","Bonus":0,"PlayerID":699854312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16022Z"},{"ID":57576,"Name":"Wioska chopek1","Points":2776,"X":384,"Y":291,"Continent":"K23","Bonus":0,"PlayerID":8855679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160221Z"},{"ID":57577,"Name":"Nowe Dobra - budowa","Points":2984,"X":693,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160222Z"},{"ID":57578,"Name":"DuĆŒa osada","Points":7508,"X":419,"Y":282,"Continent":"K24","Bonus":2,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160223Z"},{"ID":57579,"Name":"Wioska graf72","Points":1746,"X":286,"Y":583,"Continent":"K52","Bonus":0,"PlayerID":849109885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160223Z"},{"ID":57580,"Name":"=126= Wioska barbarzyƄska","Points":1019,"X":729,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160224Z"},{"ID":57581,"Name":"Wioska barbarzyƄska","Points":194,"X":735,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160225Z"},{"ID":57582,"Name":"nowa 5","Points":441,"X":630,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160225Z"},{"ID":57583,"Name":"Wioska Somalija","Points":80,"X":560,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":699794286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160226Z"},{"ID":57584,"Name":"Wioska barbarzyƄska","Points":2482,"X":362,"Y":682,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160227Z"},{"ID":57585,"Name":"Wioska barbarzyƄska","Points":176,"X":360,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160228Z"},{"ID":57586,"Name":"028 - Budowanko!","Points":4892,"X":473,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160228Z"},{"ID":57587,"Name":"North 095","Points":4020,"X":496,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160229Z"},{"ID":57588,"Name":"Wioska barbarzyƄska","Points":4868,"X":366,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16023Z"},{"ID":57589,"Name":"NieLubieRudzielcĂłw","Points":274,"X":296,"Y":394,"Continent":"K32","Bonus":0,"PlayerID":849076515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16023Z"},{"ID":57590,"Name":"38.","Points":1132,"X":330,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160231Z"},{"ID":57591,"Name":"Wioska MistycznaParowa","Points":188,"X":636,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":9096738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160232Z"},{"ID":57592,"Name":"KONFA TO MARKA, NARKA","Points":3701,"X":272,"Y":446,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160233Z"},{"ID":57593,"Name":"Wioska barbarzyƄska","Points":3368,"X":712,"Y":415,"Continent":"K47","Bonus":0,"PlayerID":699722599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160233Z"},{"ID":57594,"Name":"North 067","Points":4940,"X":511,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160234Z"},{"ID":57595,"Name":"KONFA TO MARKA, NARKA","Points":2180,"X":274,"Y":427,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160235Z"},{"ID":57596,"Name":"Wyspa 027","Points":1079,"X":280,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160235Z"},{"ID":57599,"Name":"elo","Points":494,"X":430,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160236Z"},{"ID":57600,"Name":"#042","Points":897,"X":556,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160237Z"},{"ID":57601,"Name":"O102","Points":7576,"X":293,"Y":620,"Continent":"K62","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160238Z"},{"ID":57602,"Name":"Wioska barbarzyƄska","Points":725,"X":734,"Y":535,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160238Z"},{"ID":57603,"Name":"Wioska gracforfun","Points":1111,"X":704,"Y":624,"Continent":"K67","Bonus":0,"PlayerID":699751562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160239Z"},{"ID":57604,"Name":"Wioska barbarzyƄska","Points":2255,"X":610,"Y":706,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16024Z"},{"ID":57605,"Name":"Wioska barbarzyƄska","Points":246,"X":271,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160241Z"},{"ID":57606,"Name":"KONFA TO MARKA, NARKA","Points":2187,"X":287,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160241Z"},{"ID":57607,"Name":"Wioska barbarzyƄska","Points":704,"X":267,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160242Z"},{"ID":57608,"Name":"Wioska barbarzyƄska","Points":326,"X":316,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160243Z"},{"ID":57609,"Name":"Saragossa","Points":1065,"X":649,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":747422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160244Z"},{"ID":57610,"Name":"Domek Miniuka 04","Points":2258,"X":478,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":699373225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160244Z"},{"ID":57611,"Name":"Wioska Machoneyy","Points":977,"X":296,"Y":386,"Continent":"K32","Bonus":0,"PlayerID":848949517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160245Z"},{"ID":57612,"Name":"R 051","Points":2734,"X":491,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160246Z"},{"ID":57613,"Name":"New World","Points":4783,"X":409,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160246Z"},{"ID":57614,"Name":"Wioska barbarzyƄska","Points":1105,"X":739,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160247Z"},{"ID":57615,"Name":"Wioska ociek123","Points":2969,"X":269,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":699860418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160248Z"},{"ID":57616,"Name":"Wioska lukempire","Points":26,"X":651,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":9247737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160248Z"},{"ID":57617,"Name":"Na SsSskraju","Points":754,"X":275,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160249Z"},{"ID":57618,"Name":"Wioska Marcelinka","Points":2111,"X":298,"Y":611,"Continent":"K62","Bonus":0,"PlayerID":849060357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16025Z"},{"ID":57619,"Name":"Wioska barbarzyƄska","Points":3454,"X":592,"Y":708,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160251Z"},{"ID":57621,"Name":"Wioska barbarzyƄska","Points":1087,"X":384,"Y":707,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160251Z"},{"ID":57622,"Name":"Nowe IMPERIUM 11 Warksztat","Points":5082,"X":621,"Y":699,"Continent":"K66","Bonus":7,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160252Z"},{"ID":57623,"Name":"New WorldA","Points":1112,"X":266,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160253Z"},{"ID":57624,"Name":"[0282]","Points":3475,"X":266,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160253Z"},{"ID":57625,"Name":"Wioska Sir SilverBaron","Points":2552,"X":316,"Y":350,"Continent":"K33","Bonus":0,"PlayerID":699678801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160254Z"},{"ID":57626,"Name":"41.","Points":762,"X":333,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160255Z"},{"ID":57628,"Name":"Wioska barbarzyƄska","Points":440,"X":306,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160256Z"},{"ID":57629,"Name":"CastAway !039","Points":1725,"X":708,"Y":596,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160256Z"},{"ID":57630,"Name":"Wioska rkot","Points":3295,"X":468,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699449946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160257Z"},{"ID":57631,"Name":"Flap","Points":3783,"X":601,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160258Z"},{"ID":57632,"Name":"Wioska KKS Rakieta","Points":618,"X":501,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":849066808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160258Z"},{"ID":57634,"Name":"PóƂnocny Bagdad","Points":2046,"X":613,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160259Z"},{"ID":57635,"Name":"Sony 911","Points":1201,"X":685,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16026Z"},{"ID":57637,"Name":"PóƂnocny Bagdad","Points":6512,"X":628,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160261Z"},{"ID":57638,"Name":"080 - Budowanko!","Points":407,"X":498,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160261Z"},{"ID":57639,"Name":"009","Points":4787,"X":287,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160262Z"},{"ID":57640,"Name":"[0265]","Points":3560,"X":262,"Y":499,"Continent":"K42","Bonus":5,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160263Z"},{"ID":57641,"Name":"Wioska barbarzyƄska","Points":777,"X":676,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160264Z"},{"ID":57642,"Name":"R 052","Points":2476,"X":492,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160264Z"},{"ID":57643,"Name":"Wioska Krukuu","Points":989,"X":371,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":699699422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160265Z"},{"ID":57644,"Name":"046 - Budowanko!","Points":4417,"X":566,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160266Z"},{"ID":57645,"Name":"zk kryniu","Points":1250,"X":684,"Y":364,"Continent":"K36","Bonus":1,"PlayerID":849105232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160266Z"},{"ID":57646,"Name":"????","Points":2806,"X":455,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160267Z"},{"ID":57647,"Name":"Wioska barbarzyƄska","Points":793,"X":721,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160268Z"},{"ID":57648,"Name":"Wioska barbarzyƄska","Points":2568,"X":708,"Y":398,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160268Z"},{"ID":57649,"Name":"Wioska barbarzyƄska","Points":1463,"X":737,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160269Z"},{"ID":57650,"Name":"Wioska Lord Ɓoszo","Points":696,"X":269,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":698207545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16027Z"},{"ID":57651,"Name":"Maryna 4","Points":570,"X":267,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":699650981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160271Z"},{"ID":57652,"Name":"Wioska szabla32","Points":560,"X":472,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":8128478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160271Z"},{"ID":57653,"Name":"A#041","Points":6542,"X":730,"Y":517,"Continent":"K57","Bonus":1,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160272Z"},{"ID":57654,"Name":"PPF-48","Points":329,"X":552,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160273Z"},{"ID":57655,"Name":"Avanti!","Points":2239,"X":271,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160273Z"},{"ID":57656,"Name":"Wioska barbarzyƄska","Points":117,"X":727,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160274Z"},{"ID":57657,"Name":"Wioska30","Points":1646,"X":330,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160275Z"},{"ID":57658,"Name":"karmelon","Points":2453,"X":353,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":849099804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160276Z"},{"ID":57659,"Name":"adam","Points":5297,"X":337,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":6618608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160276Z"},{"ID":57660,"Name":"Wioska KozioƂ","Points":344,"X":293,"Y":615,"Continent":"K62","Bonus":0,"PlayerID":849109966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160277Z"},{"ID":57661,"Name":"NOT?","Points":660,"X":308,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160278Z"},{"ID":57662,"Name":"taka malutka","Points":2434,"X":531,"Y":710,"Continent":"K75","Bonus":0,"PlayerID":6116940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160278Z"},{"ID":57664,"Name":"Wioska","Points":901,"X":622,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":7140413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160279Z"},{"ID":57665,"Name":"hobbiton","Points":607,"X":289,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16028Z"},{"ID":57666,"Name":"Wioska barbarzyƄska","Points":298,"X":307,"Y":376,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160281Z"},{"ID":57667,"Name":"032. Ateny","Points":4229,"X":523,"Y":264,"Continent":"K25","Bonus":3,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160281Z"},{"ID":57669,"Name":"[0284]","Points":3180,"X":266,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160282Z"},{"ID":57670,"Name":"CastAway #026","Points":2465,"X":716,"Y":596,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160283Z"},{"ID":57671,"Name":"KASHYYYK 3","Points":1052,"X":573,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160284Z"},{"ID":57672,"Name":"040","Points":1727,"X":715,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160284Z"},{"ID":57673,"Name":"Wioska barbarzyƄska","Points":2300,"X":667,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160285Z"},{"ID":57674,"Name":"[837] Odludzie","Points":4918,"X":720,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160286Z"},{"ID":57675,"Name":"Wioska barbarzyƄska","Points":431,"X":685,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":2976468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160286Z"},{"ID":57676,"Name":"095. Wioska barbarzyƄska","Points":2993,"X":727,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160287Z"},{"ID":57677,"Name":"Wioska barbarzyƄska","Points":321,"X":607,"Y":710,"Continent":"K76","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160288Z"},{"ID":57678,"Name":"o022","Points":2425,"X":631,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160289Z"},{"ID":57679,"Name":"Grzejdas 3","Points":3990,"X":705,"Y":378,"Continent":"K37","Bonus":8,"PlayerID":849057764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160289Z"},{"ID":57680,"Name":"Wioska barbarzyƄska","Points":3143,"X":575,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16029Z"},{"ID":57681,"Name":"#163#","Points":1130,"X":657,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160291Z"},{"ID":57682,"Name":"057","Points":572,"X":683,"Y":636,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160291Z"},{"ID":57683,"Name":"Wygwizdowa 015","Points":467,"X":662,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160292Z"},{"ID":57684,"Name":"R 055","Points":1010,"X":491,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160293Z"},{"ID":57685,"Name":"Wioska barbarzyƄska","Points":6880,"X":723,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160294Z"},{"ID":57686,"Name":"Wioska ChoraĆŒy","Points":4474,"X":607,"Y":288,"Continent":"K26","Bonus":0,"PlayerID":849098374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160294Z"},{"ID":57687,"Name":"Resist And Bite!","Points":2176,"X":447,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":699069151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160295Z"},{"ID":57688,"Name":"Wioska barbarzyƄska","Points":3618,"X":724,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160296Z"},{"ID":57689,"Name":"Wioska gall3","Points":2440,"X":267,"Y":476,"Continent":"K42","Bonus":1,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160297Z"},{"ID":57690,"Name":"Wioska barbarzyƄska","Points":293,"X":610,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160297Z"},{"ID":57691,"Name":"Wioska barbarzyƄska","Points":79,"X":288,"Y":389,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160298Z"},{"ID":57692,"Name":"Wioska barbarzyƄska","Points":459,"X":334,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160299Z"},{"ID":57693,"Name":"Wioska barbarzyƄska","Points":3587,"X":618,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1603Z"},{"ID":57694,"Name":"MaƂa osada","Points":7603,"X":417,"Y":277,"Continent":"K24","Bonus":8,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1603Z"},{"ID":57695,"Name":"FP045","Points":3777,"X":460,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160301Z"},{"ID":57696,"Name":"Wioska31","Points":1617,"X":330,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160302Z"},{"ID":57697,"Name":"Wioska barbarzyƄska","Points":181,"X":293,"Y":614,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160302Z"},{"ID":57698,"Name":"098 Wioska barbarzyƄska","Points":4785,"X":541,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160303Z"},{"ID":57699,"Name":"Wioska 181","Points":414,"X":733,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":2363165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160304Z"},{"ID":57700,"Name":"Sqn","Points":2014,"X":715,"Y":397,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160305Z"},{"ID":57701,"Name":"WB05","Points":4272,"X":298,"Y":384,"Continent":"K32","Bonus":7,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160305Z"},{"ID":57702,"Name":"001","Points":2601,"X":661,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":849111050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160306Z"},{"ID":57703,"Name":"PSYHOSOCIAL","Points":1450,"X":292,"Y":600,"Continent":"K62","Bonus":1,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160307Z"},{"ID":57704,"Name":"Wioska EpSi1","Points":893,"X":589,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":6516085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160307Z"},{"ID":57705,"Name":"Wioska barbarzyƄska","Points":958,"X":736,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160308Z"},{"ID":57706,"Name":"Wioska Maja40","Points":1856,"X":670,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":8483719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160309Z"},{"ID":57707,"Name":"Wioska barbarzyƄska","Points":367,"X":521,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16031Z"},{"ID":57708,"Name":"Wioska barbarzyƄska","Points":1622,"X":401,"Y":705,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16031Z"},{"ID":57709,"Name":"KONFA TO MARKA, NARKA","Points":2107,"X":275,"Y":428,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160311Z"},{"ID":57710,"Name":"C0332","Points":1482,"X":262,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160312Z"},{"ID":57711,"Name":"Wioska barbarzyƄska","Points":437,"X":265,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":849013126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160312Z"},{"ID":57712,"Name":"KWB6","Points":4045,"X":448,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160313Z"},{"ID":57713,"Name":"Wioska barbarzyƄska","Points":898,"X":507,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160314Z"},{"ID":57714,"Name":"132.Stradi","Points":3610,"X":396,"Y":293,"Continent":"K23","Bonus":5,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160314Z"},{"ID":57715,"Name":"Praven","Points":2273,"X":344,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699716785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160315Z"},{"ID":57716,"Name":"PóƂnocny Bagdad","Points":6945,"X":621,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160316Z"},{"ID":57718,"Name":"Wioska barbarzyƄska","Points":2327,"X":329,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160317Z"},{"ID":57719,"Name":"Kami 4","Points":1321,"X":734,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160317Z"},{"ID":57721,"Name":"Wioska barbarzyƄska","Points":1268,"X":715,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160318Z"},{"ID":57722,"Name":"King Arkadius 1","Points":1055,"X":542,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699812653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160319Z"},{"ID":57723,"Name":"008","Points":4787,"X":290,"Y":595,"Continent":"K52","Bonus":4,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160319Z"},{"ID":57724,"Name":"Wioska PiĆșdzichlapica","Points":191,"X":533,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":849038572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16032Z"},{"ID":57725,"Name":"022 - Budowanko!","Points":5991,"X":478,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160321Z"},{"ID":57727,"Name":"084. Wioska barbarzyƄska","Points":2998,"X":731,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160322Z"},{"ID":57728,"Name":"65 barbarzyƄska","Points":96,"X":276,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160322Z"},{"ID":57729,"Name":"030. elli38","Points":3422,"X":698,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160323Z"},{"ID":57730,"Name":"Osada koczownikĂłw","Points":5408,"X":669,"Y":345,"Continent":"K36","Bonus":2,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160324Z"},{"ID":57731,"Name":"Wioska Sir sernik","Points":313,"X":425,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":849113300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160324Z"},{"ID":57732,"Name":"Wioska real124","Points":26,"X":624,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":848956537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160325Z"},{"ID":57733,"Name":"North 018","Points":7345,"X":516,"Y":265,"Continent":"K25","Bonus":8,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160326Z"},{"ID":57734,"Name":"New World","Points":3354,"X":426,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160326Z"},{"ID":57736,"Name":"Avanti!","Points":2516,"X":269,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160327Z"},{"ID":57737,"Name":"Wioska KOSMACZ1","Points":439,"X":732,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":848926070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160328Z"},{"ID":57738,"Name":"New World","Points":5412,"X":417,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160329Z"},{"ID":57739,"Name":"Wioska Ɓukasz80","Points":1019,"X":632,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":1227022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160329Z"},{"ID":57741,"Name":"Sony 911","Points":2596,"X":669,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16033Z"},{"ID":57742,"Name":"No na pewno","Points":565,"X":402,"Y":288,"Continent":"K24","Bonus":7,"PlayerID":699854830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160331Z"},{"ID":57743,"Name":"Stryszawa City v9","Points":483,"X":264,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":699729211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160331Z"},{"ID":57744,"Name":"KONFA TO MARKA, NARKA","Points":968,"X":291,"Y":398,"Continent":"K32","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160332Z"},{"ID":57745,"Name":"WWWWWW","Points":864,"X":264,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":1095489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160333Z"},{"ID":57746,"Name":"#151#","Points":848,"X":656,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160334Z"},{"ID":57747,"Name":"FP054","Points":3090,"X":447,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160334Z"},{"ID":57748,"Name":"Wioska barbarzyƄska","Points":265,"X":373,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160335Z"},{"ID":57749,"Name":"MojeDnoToWaszSzczyt","Points":5015,"X":474,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160336Z"},{"ID":57750,"Name":"Wioska barbarzyƄska","Points":3520,"X":366,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160336Z"},{"ID":57751,"Name":"0110","Points":1157,"X":701,"Y":378,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160337Z"},{"ID":57752,"Name":"New World","Points":3596,"X":435,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160338Z"},{"ID":57753,"Name":"C0320","Points":2382,"X":267,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160338Z"},{"ID":57754,"Name":"BOA6","Points":2317,"X":306,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699829494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160339Z"},{"ID":57755,"Name":"Wioska barbarzyƄska","Points":3897,"X":553,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16034Z"},{"ID":57756,"Name":"Zaplecze Osada 1","Points":6729,"X":361,"Y":315,"Continent":"K33","Bonus":8,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160341Z"},{"ID":57757,"Name":"Wioska jurek15","Points":1267,"X":507,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699144886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160341Z"},{"ID":57758,"Name":"Cisza","Points":590,"X":278,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160342Z"},{"ID":57759,"Name":"Wioska Skols998","Points":2720,"X":733,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":849005658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160343Z"},{"ID":57760,"Name":"O67 Daeyami","Points":629,"X":687,"Y":566,"Continent":"K56","Bonus":0,"PlayerID":699272880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160343Z"},{"ID":57761,"Name":"Wioska barbarzyƄska","Points":379,"X":585,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849087855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160344Z"},{"ID":57762,"Name":"Wioska uks13","Points":771,"X":644,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":8411874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160345Z"},{"ID":57763,"Name":"rzeka anduina","Points":519,"X":292,"Y":391,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160346Z"},{"ID":57764,"Name":"Tylko FALUBAZ","Points":5319,"X":470,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":9277642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160346Z"},{"ID":57765,"Name":"MojeDnoToWaszSzczyt","Points":5268,"X":501,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160347Z"},{"ID":57766,"Name":"New World","Points":3012,"X":412,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160348Z"},{"ID":57767,"Name":"PPF-30","Points":1424,"X":566,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160348Z"},{"ID":57768,"Name":"001","Points":2839,"X":711,"Y":394,"Continent":"K37","Bonus":0,"PlayerID":699832463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160349Z"},{"ID":57769,"Name":"Sony 911","Points":1113,"X":707,"Y":618,"Continent":"K67","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16035Z"},{"ID":57770,"Name":"Wioska barbarzyƄska","Points":912,"X":732,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160351Z"},{"ID":57771,"Name":"Wioska Warkilia","Points":2002,"X":708,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":3668212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160351Z"},{"ID":57772,"Name":"Wioska barbarzyƄska","Points":2410,"X":667,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160352Z"},{"ID":57774,"Name":"#137#","Points":1978,"X":666,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160353Z"},{"ID":57775,"Name":"Wioska rhodos77","Points":3689,"X":689,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":7230689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160353Z"},{"ID":57776,"Name":"C0318","Points":2428,"X":271,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160354Z"},{"ID":57777,"Name":"049 - Budowanko!","Points":3914,"X":520,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160355Z"},{"ID":57778,"Name":"Wioska barbarzyƄska","Points":305,"X":267,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160356Z"},{"ID":57779,"Name":"Wioska barbarzyƄska","Points":1373,"X":557,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160356Z"},{"ID":57780,"Name":"jebacwas","Points":225,"X":263,"Y":490,"Continent":"K42","Bonus":0,"PlayerID":849110380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160357Z"},{"ID":57781,"Name":"[834] Odludzie","Points":5310,"X":722,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160358Z"},{"ID":57782,"Name":"Wioska barbarzyƄska","Points":600,"X":301,"Y":374,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160359Z"},{"ID":57784,"Name":"041 - Alcorcon","Points":728,"X":716,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160359Z"},{"ID":57785,"Name":"Wioska barbarzyƄska","Points":795,"X":380,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16036Z"},{"ID":57786,"Name":"New World","Points":4203,"X":413,"Y":723,"Continent":"K74","Bonus":2,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160361Z"},{"ID":57788,"Name":"Wioska barbarzyƄska","Points":1977,"X":313,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160361Z"},{"ID":57790,"Name":"Wioska barbarzyƄska","Points":2029,"X":498,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160362Z"},{"ID":57791,"Name":"Wioska barbarzyƄska","Points":134,"X":635,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160363Z"},{"ID":57792,"Name":"New World","Points":4814,"X":429,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160363Z"},{"ID":57793,"Name":"IGNESJA","Points":1629,"X":695,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":3957237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160364Z"},{"ID":57795,"Name":"lesna brama","Points":1355,"X":286,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160365Z"},{"ID":57796,"Name":"Wioska mamcos98","Points":26,"X":298,"Y":620,"Continent":"K62","Bonus":0,"PlayerID":9057880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160366Z"},{"ID":57797,"Name":"-10-","Points":3765,"X":516,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":765188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160366Z"},{"ID":57798,"Name":"Wioska barbarzyƄska","Points":144,"X":729,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160367Z"},{"ID":57799,"Name":"Wioska barbarzyƄska","Points":1618,"X":726,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160368Z"},{"ID":57800,"Name":"#10","Points":391,"X":342,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160368Z"},{"ID":57801,"Name":"WB48","Points":121,"X":294,"Y":384,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160369Z"},{"ID":57802,"Name":"Wioska barbarzyƄska","Points":1743,"X":554,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16037Z"},{"ID":57804,"Name":"WB34","Points":1274,"X":296,"Y":385,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16037Z"},{"ID":57805,"Name":"45 barbarzyƄska","Points":1157,"X":271,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160371Z"},{"ID":57806,"Name":"078","Points":1312,"X":675,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160372Z"},{"ID":57808,"Name":"Wioska barbarzyƄska","Points":421,"X":287,"Y":393,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160373Z"},{"ID":57809,"Name":"@@1","Points":3964,"X":267,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":849113546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160373Z"},{"ID":57810,"Name":"shadow #1","Points":3969,"X":260,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":1034117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160374Z"},{"ID":57811,"Name":"PóƂnocny Bagdad","Points":6511,"X":617,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160375Z"},{"ID":57812,"Name":"Naboo","Points":4251,"X":735,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":160513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160376Z"},{"ID":57813,"Name":"ƻƻanetta","Points":540,"X":681,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":699875213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160377Z"},{"ID":57814,"Name":"CastAway !012","Points":5979,"X":715,"Y":596,"Continent":"K57","Bonus":9,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160377Z"},{"ID":57815,"Name":"050","Points":279,"X":733,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160378Z"},{"ID":57816,"Name":"PiekƂo to inni","Points":2216,"X":652,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160379Z"},{"ID":57817,"Name":"lorien","Points":424,"X":294,"Y":390,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160379Z"},{"ID":57820,"Name":"Avanti!","Points":1940,"X":267,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16038Z"},{"ID":57821,"Name":"Wioska barbarzyƄska","Points":1947,"X":364,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160381Z"},{"ID":57822,"Name":"Wioska 115","Points":1870,"X":688,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160382Z"},{"ID":57823,"Name":"=127= Wioska barbarzyƄska","Points":1378,"X":725,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160382Z"},{"ID":57824,"Name":"[0283]","Points":3363,"X":263,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160383Z"},{"ID":57825,"Name":"Wioska Ć»ulionerka","Points":254,"X":501,"Y":495,"Continent":"K45","Bonus":0,"PlayerID":849066125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160384Z"},{"ID":57826,"Name":"Bagno 36","Points":4123,"X":473,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160384Z"},{"ID":57827,"Name":"Wioska Sir Moon Knight","Points":143,"X":711,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":849094972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160385Z"},{"ID":57828,"Name":"Wioska barbarzyƄska","Points":1428,"X":579,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160386Z"},{"ID":57829,"Name":"adam3","Points":239,"X":338,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":6618608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160387Z"},{"ID":57830,"Name":".achim.","Points":1524,"X":577,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160387Z"},{"ID":57831,"Name":"#203 C","Points":784,"X":517,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160388Z"},{"ID":57832,"Name":"Wioska barbarzyƄska","Points":3969,"X":394,"Y":714,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160389Z"},{"ID":57833,"Name":"Gwenville 018","Points":462,"X":450,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160389Z"},{"ID":57834,"Name":"009","Points":608,"X":264,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16039Z"},{"ID":57836,"Name":"Wioska barbarzyƄska","Points":2337,"X":359,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160391Z"},{"ID":57837,"Name":"Wioska barbarzyƄska","Points":1748,"X":730,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160392Z"},{"ID":57838,"Name":"Wioska barbarzyƄska","Points":462,"X":293,"Y":616,"Continent":"K62","Bonus":0,"PlayerID":3896657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160392Z"},{"ID":57839,"Name":"018 | North","Points":2837,"X":380,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160393Z"},{"ID":57840,"Name":"Wioska barbarzyƄska","Points":2071,"X":671,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160394Z"},{"ID":57841,"Name":".achim.","Points":2254,"X":573,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":6936607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160394Z"},{"ID":57842,"Name":"Wioska Kielce","Points":202,"X":735,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":849065829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160395Z"},{"ID":57843,"Name":"Wioska???","Points":470,"X":285,"Y":603,"Continent":"K62","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160396Z"},{"ID":57844,"Name":"New World","Points":3877,"X":409,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160396Z"},{"ID":57845,"Name":"0132","Points":759,"X":698,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160397Z"},{"ID":57846,"Name":"Wioska barbarzyƄska","Points":620,"X":266,"Y":460,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160398Z"},{"ID":57847,"Name":"Wioska barbarzyƄska","Points":1968,"X":674,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160399Z"},{"ID":57848,"Name":"Delaware","Points":1231,"X":730,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":6002527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160399Z"},{"ID":57849,"Name":"Wioska barbarzyƄska","Points":2852,"X":348,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1604Z"},{"ID":57850,"Name":"42.","Points":1227,"X":329,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160401Z"},{"ID":57851,"Name":"North K25","Points":1567,"X":565,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160401Z"},{"ID":57852,"Name":"Wioska macp1","Points":2267,"X":657,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":3750922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160402Z"},{"ID":57853,"Name":"Wioska barbarzyƄska","Points":1467,"X":318,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160403Z"},{"ID":57854,"Name":"ChceszPokojuSzykujSięDoWojny","Points":1031,"X":472,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160404Z"},{"ID":57855,"Name":"O113","Points":6895,"X":305,"Y":629,"Continent":"K63","Bonus":1,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160404Z"},{"ID":57856,"Name":"PóƂnocny Bagdad","Points":667,"X":645,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160405Z"},{"ID":57857,"Name":"007 baba","Points":4201,"X":273,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160406Z"},{"ID":57858,"Name":"Wioska barbarzyƄska","Points":4919,"X":528,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160406Z"},{"ID":57859,"Name":"PóƂnocny Bagdad","Points":1055,"X":632,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160407Z"},{"ID":57860,"Name":"36 barbarzyƄska 2A","Points":2357,"X":269,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160408Z"},{"ID":57861,"Name":"Wioska barbarzyƄska","Points":1160,"X":642,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":849102068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160408Z"},{"ID":57862,"Name":"Wioska grzesiek576","Points":299,"X":517,"Y":530,"Continent":"K55","Bonus":0,"PlayerID":7844370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160409Z"},{"ID":57863,"Name":"Avanti!","Points":827,"X":267,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16041Z"},{"ID":57864,"Name":"Wioska TCH1","Points":3988,"X":265,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":7749444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160411Z"},{"ID":57865,"Name":"Avanti!","Points":2230,"X":271,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160411Z"},{"ID":57866,"Name":"Opalenica","Points":1320,"X":630,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":849113595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160412Z"},{"ID":57867,"Name":"Bunkier","Points":2077,"X":344,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160413Z"},{"ID":57868,"Name":"Leszno","Points":1741,"X":621,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":849113597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160413Z"},{"ID":57869,"Name":"Wioska barbarzyƄska","Points":2302,"X":609,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160414Z"},{"ID":57870,"Name":"PIROTECHNIK 012","Points":298,"X":339,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160415Z"},{"ID":57871,"Name":"Osada koczownikĂłw","Points":745,"X":263,"Y":517,"Continent":"K52","Bonus":7,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160416Z"},{"ID":57873,"Name":"Wioska barbarzyƄska","Points":679,"X":425,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160416Z"},{"ID":57874,"Name":"JW94","Points":802,"X":736,"Y":515,"Continent":"K57","Bonus":0,"PlayerID":849113603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160417Z"},{"ID":57875,"Name":"MojeDnoToWaszSzczyt","Points":5465,"X":491,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160418Z"},{"ID":57876,"Name":"Maroko","Points":400,"X":323,"Y":661,"Continent":"K63","Bonus":0,"PlayerID":7707390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160418Z"},{"ID":57877,"Name":"#121#","Points":3448,"X":655,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160419Z"},{"ID":57878,"Name":"Wioska barbarzyƄska","Points":60,"X":312,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16042Z"},{"ID":57879,"Name":"Wioska barbarzyƄska","Points":2437,"X":385,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160421Z"},{"ID":57880,"Name":"Sony 911","Points":1707,"X":682,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160421Z"},{"ID":57881,"Name":"Wioska barbarzyƄska","Points":1082,"X":728,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160422Z"},{"ID":57882,"Name":"Zaplecze Barba 048","Points":915,"X":341,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160423Z"},{"ID":57883,"Name":"KASHYYYK 4","Points":867,"X":574,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160424Z"},{"ID":57884,"Name":"225...NORTH","Points":1581,"X":437,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160424Z"},{"ID":57885,"Name":"K67 17","Points":2893,"X":716,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160425Z"},{"ID":57886,"Name":"Wioska pyari","Points":2031,"X":297,"Y":393,"Continent":"K32","Bonus":0,"PlayerID":1371998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160426Z"},{"ID":57887,"Name":"CastAway #028","Points":2589,"X":709,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160427Z"},{"ID":57889,"Name":"Kami","Points":2205,"X":738,"Y":474,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160427Z"},{"ID":57890,"Name":"Wioska barbarzyƄska","Points":1685,"X":620,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160428Z"},{"ID":57891,"Name":"North 058","Points":4561,"X":529,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160429Z"},{"ID":57892,"Name":"Wioska barbarzyƄska","Points":3448,"X":662,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160429Z"},{"ID":57893,"Name":"Wioska barbarzyƄska","Points":1737,"X":556,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16043Z"},{"ID":57894,"Name":"032 - Budowanko!","Points":4669,"X":500,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160431Z"},{"ID":57895,"Name":"PóƂnocny Bagdad","Points":6590,"X":629,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160432Z"},{"ID":57896,"Name":"Wioska barbarzyƄska","Points":2516,"X":727,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160432Z"},{"ID":57897,"Name":"PPF-33","Points":1224,"X":570,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160433Z"},{"ID":57899,"Name":"!Wioska barbarzyƄska 3","Points":2830,"X":582,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160434Z"},{"ID":57900,"Name":"North K25","Points":1746,"X":561,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160434Z"},{"ID":57901,"Name":"Wioska barbarzyƄska","Points":328,"X":326,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160435Z"},{"ID":57902,"Name":"Wioska brt007","Points":172,"X":263,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":699131849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160436Z"},{"ID":57903,"Name":"Wioska H Cezar","Points":3701,"X":275,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":7135037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160436Z"},{"ID":57904,"Name":"MojeDnoToWaszSzczyt","Points":2379,"X":458,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160437Z"},{"ID":57905,"Name":"Wioska lord zbyszek1960","Points":3207,"X":528,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":8741336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160438Z"},{"ID":57906,"Name":"033","Points":1278,"X":722,"Y":584,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160439Z"},{"ID":57907,"Name":"Wioska FreestylerWLKW","Points":1320,"X":608,"Y":710,"Continent":"K76","Bonus":0,"PlayerID":6135387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160439Z"},{"ID":57908,"Name":"PóƂnocny Bagdad","Points":730,"X":639,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16044Z"},{"ID":57909,"Name":"xxx1","Points":1225,"X":537,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":7427966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160441Z"},{"ID":57910,"Name":"Wioska 665783847","Points":5293,"X":402,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":699339594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160441Z"},{"ID":57911,"Name":"093. Sufetula","Points":4045,"X":728,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":849091866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160442Z"},{"ID":57912,"Name":"KWB7","Points":3831,"X":486,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160443Z"},{"ID":57913,"Name":"PóƂnocny Bagdad","Points":6998,"X":622,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160444Z"},{"ID":57914,"Name":"Jannapol","Points":1313,"X":333,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":698806018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160444Z"},{"ID":57915,"Name":"Wioska barbarzyƄska","Points":1281,"X":618,"Y":705,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160445Z"},{"ID":57916,"Name":"004","Points":275,"X":574,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160446Z"},{"ID":57918,"Name":"103 koniec ƛwiata","Points":1913,"X":615,"Y":705,"Continent":"K76","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160446Z"},{"ID":57919,"Name":"038# Yaka","Points":1179,"X":488,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":3933666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160447Z"},{"ID":57920,"Name":"No to jedziemy :D","Points":2671,"X":470,"Y":736,"Continent":"K74","Bonus":4,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160448Z"},{"ID":57921,"Name":"Wioska b 004","Points":900,"X":420,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160449Z"},{"ID":57922,"Name":"Osada koczownikĂłw","Points":3547,"X":716,"Y":594,"Continent":"K57","Bonus":5,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160449Z"},{"ID":57923,"Name":"Wioska barbarzyƄska","Points":1534,"X":397,"Y":711,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16045Z"},{"ID":57924,"Name":"New WorldA","Points":776,"X":272,"Y":532,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160451Z"},{"ID":57925,"Name":"033 - Budowanko!","Points":4472,"X":494,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160451Z"},{"ID":57926,"Name":"C0324","Points":1852,"X":268,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160452Z"},{"ID":57927,"Name":"Wioska barbarzyƄska","Points":997,"X":380,"Y":300,"Continent":"K33","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160453Z"},{"ID":57928,"Name":"????","Points":2626,"X":480,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160453Z"},{"ID":57929,"Name":"Wioska barbarzyƄska","Points":2237,"X":730,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160454Z"},{"ID":57930,"Name":"Wioska barbarzyƄska","Points":1748,"X":731,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160455Z"},{"ID":57931,"Name":"Wioska barbarzyƄska","Points":251,"X":307,"Y":377,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160456Z"},{"ID":57932,"Name":"#208 C","Points":2145,"X":507,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160456Z"},{"ID":57933,"Name":"Wioska barbarzyƄska","Points":1748,"X":731,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160457Z"},{"ID":57934,"Name":"!Wioska barbarzyƄska 1","Points":4386,"X":594,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160458Z"},{"ID":57937,"Name":"Wioska Domino00155","Points":704,"X":736,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":849030062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160458Z"},{"ID":57939,"Name":"C0321","Points":2398,"X":270,"Y":555,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160459Z"},{"ID":57940,"Name":"Wioska barbarzyƄska","Points":218,"X":373,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16046Z"},{"ID":57941,"Name":"091. Wioska barbarzyƄska","Points":2792,"X":730,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160461Z"},{"ID":57942,"Name":"Wioska Avgan","Points":116,"X":329,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":8877462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160461Z"},{"ID":57943,"Name":"#127#","Points":3059,"X":656,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160462Z"},{"ID":57944,"Name":"003 Rohan","Points":2522,"X":523,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":849100383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160463Z"},{"ID":57945,"Name":"K67 27","Points":1843,"X":700,"Y":619,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160464Z"},{"ID":57946,"Name":"Wioska barbarzyƄska","Points":1643,"X":317,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160464Z"},{"ID":57947,"Name":"????","Points":2626,"X":460,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160465Z"},{"ID":57948,"Name":"Wioska Koza","Points":26,"X":315,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":849092868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160466Z"},{"ID":57949,"Name":"=|44|=","Points":444,"X":696,"Y":372,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160466Z"},{"ID":57950,"Name":"Wioska barbarzyƄska","Points":467,"X":303,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699037086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160467Z"},{"ID":57951,"Name":"Wioska barbarzyƄska","Points":234,"X":330,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160468Z"},{"ID":57952,"Name":"PPF-15","Points":2309,"X":523,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160469Z"},{"ID":57953,"Name":"Dam-Daj","Points":1765,"X":488,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":8062053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160469Z"},{"ID":57954,"Name":"Wioska barbarzyƄska","Points":329,"X":318,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16047Z"},{"ID":57955,"Name":"035Bethlechem","Points":3084,"X":452,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160471Z"},{"ID":57956,"Name":"Lord Nc3dyh 6","Points":701,"X":324,"Y":339,"Continent":"K33","Bonus":0,"PlayerID":699509284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160471Z"},{"ID":57957,"Name":"Wioska barbarzyƄska","Points":278,"X":346,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160472Z"},{"ID":57958,"Name":"MojeDnoToWaszSzczyt","Points":5448,"X":503,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160473Z"},{"ID":57959,"Name":"Avanti!","Points":1519,"X":268,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160474Z"},{"ID":57960,"Name":"U-10","Points":1850,"X":643,"Y":311,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160474Z"},{"ID":57961,"Name":"Wioska barbarzyƄska","Points":774,"X":577,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160475Z"},{"ID":57962,"Name":"#130#","Points":2905,"X":663,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160476Z"},{"ID":57963,"Name":"RETURN","Points":1121,"X":725,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":849024152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160476Z"},{"ID":57964,"Name":"Wioska","Points":327,"X":279,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":849086777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160477Z"},{"ID":57965,"Name":"Wiocha","Points":5381,"X":666,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":849048856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160478Z"},{"ID":57966,"Name":"WB12","Points":2989,"X":299,"Y":379,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160479Z"},{"ID":57967,"Name":"=|41|=","Points":947,"X":693,"Y":369,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160479Z"},{"ID":57968,"Name":"Ooo","Points":1926,"X":581,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849089323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16048Z"},{"ID":57969,"Name":"CastAway !029","Points":3548,"X":715,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160481Z"},{"ID":57970,"Name":"Swojak","Points":1918,"X":697,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":8185721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160481Z"},{"ID":57971,"Name":"Wioska barbarzyƄska","Points":6655,"X":726,"Y":424,"Continent":"K47","Bonus":6,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160482Z"},{"ID":57972,"Name":"TWIERDZA DAMIK 1","Points":4330,"X":578,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":6143689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160483Z"},{"ID":57973,"Name":"Ave Why!","Points":966,"X":510,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160484Z"},{"ID":57974,"Name":"Wioska robert72","Points":4824,"X":668,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":126954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160484Z"},{"ID":57975,"Name":"New World","Points":4749,"X":436,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160485Z"},{"ID":57976,"Name":"Wioska barbarzyƄska","Points":549,"X":313,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160486Z"},{"ID":57977,"Name":"New WorldA","Points":745,"X":267,"Y":540,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160486Z"},{"ID":57978,"Name":"Wioska barbarzyƄska","Points":208,"X":734,"Y":492,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160487Z"},{"ID":57979,"Name":"Wioska SirSin X","Points":134,"X":481,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":699390457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160488Z"},{"ID":57980,"Name":"Wioska barbarzyƄska","Points":43,"X":340,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160489Z"},{"ID":57981,"Name":"Wioska barbarzyƄska","Points":318,"X":321,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160489Z"},{"ID":57982,"Name":"075","Points":2562,"X":665,"Y":333,"Continent":"K36","Bonus":0,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16049Z"},{"ID":57983,"Name":"Wioska barbarzyƄska","Points":2505,"X":356,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160491Z"},{"ID":57984,"Name":"shadow #3","Points":620,"X":262,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":1034117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160492Z"},{"ID":57985,"Name":"Wioska barbarzyƄska","Points":2418,"X":716,"Y":409,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160492Z"},{"ID":57986,"Name":"gosiaczek","Points":3405,"X":725,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":848977412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160493Z"},{"ID":57987,"Name":"Wioska barbarzyƄska","Points":436,"X":301,"Y":387,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160494Z"},{"ID":57988,"Name":"Wioska Kubaa333","Points":639,"X":556,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849068436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160494Z"},{"ID":57989,"Name":"CastAway !038","Points":1859,"X":728,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160495Z"},{"ID":57990,"Name":"053 - Budowanko!","Points":2989,"X":510,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160496Z"},{"ID":57991,"Name":"KERTO 03","Points":510,"X":710,"Y":604,"Continent":"K67","Bonus":0,"PlayerID":7474527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160497Z"},{"ID":57993,"Name":"Wioska barbarzyƄska","Points":240,"X":308,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160497Z"},{"ID":57994,"Name":"Wioska barbarzyƄska","Points":923,"X":266,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160498Z"},{"ID":57995,"Name":"Wioska barbarzyƄska","Points":565,"X":628,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160499Z"},{"ID":57996,"Name":"Wioska barbarzyƄska","Points":1659,"X":396,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160499Z"},{"ID":57997,"Name":"Wioska barbarzyƄska","Points":334,"X":650,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1605Z"},{"ID":57998,"Name":"New World","Points":3773,"X":425,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160501Z"},{"ID":57999,"Name":"Wioska barbarzyƄska","Points":434,"X":346,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160502Z"},{"ID":58000,"Name":"Wioska barbarzyƄska","Points":1095,"X":312,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":699660539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160502Z"},{"ID":58001,"Name":"7.62 mm","Points":1350,"X":442,"Y":393,"Continent":"K34","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160503Z"},{"ID":58002,"Name":"214...NORTH","Points":2143,"X":416,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160504Z"},{"ID":58003,"Name":"Wioska barbarzyƄska","Points":348,"X":326,"Y":650,"Continent":"K63","Bonus":0,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160504Z"},{"ID":58004,"Name":"7.62 mm","Points":2474,"X":437,"Y":396,"Continent":"K34","Bonus":0,"PlayerID":699777234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160505Z"},{"ID":58005,"Name":"Telimena 3.","Points":890,"X":306,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":699037086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160506Z"},{"ID":58006,"Name":"Wioska barbarzyƄska","Points":1555,"X":477,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":699656989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160506Z"},{"ID":58007,"Name":"Wioska barbarzyƄska","Points":3082,"X":545,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160507Z"},{"ID":58008,"Name":"Wioska Driata","Points":763,"X":281,"Y":588,"Continent":"K52","Bonus":0,"PlayerID":699866271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160508Z"},{"ID":58010,"Name":"MojeDnoToWaszSzczyt","Points":5465,"X":503,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160509Z"},{"ID":58011,"Name":"078 obrzeĆŒa","Points":1183,"X":273,"Y":559,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160509Z"},{"ID":58012,"Name":"Wioska barbarzyƄska","Points":929,"X":658,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":849111332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16051Z"},{"ID":58013,"Name":"Wioska barbarzyƄska","Points":374,"X":317,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160511Z"},{"ID":58014,"Name":"London","Points":2711,"X":418,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":699325506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160511Z"},{"ID":58015,"Name":"082 obrzeĆŒa","Points":1150,"X":273,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160512Z"},{"ID":58016,"Name":"Wioska barbarzyƄska","Points":1140,"X":557,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160513Z"},{"ID":58017,"Name":"027 - Budowanko!","Points":4669,"X":483,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160513Z"},{"ID":58018,"Name":"Wioska barbarzyƄska","Points":2790,"X":605,"Y":712,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160514Z"},{"ID":58019,"Name":"Wioska barbarzyƄska","Points":1215,"X":702,"Y":393,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160515Z"},{"ID":58020,"Name":"Wioska barbarzyƄska","Points":1165,"X":564,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160516Z"},{"ID":58021,"Name":"KWB9.2","Points":1207,"X":457,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160516Z"},{"ID":58022,"Name":"Dream on","Points":4136,"X":296,"Y":485,"Continent":"K42","Bonus":0,"PlayerID":698962117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160517Z"},{"ID":58023,"Name":"30 barbarzyƄska","Points":2731,"X":272,"Y":434,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160518Z"},{"ID":58025,"Name":"Wioska barbarzyƄska","Points":126,"X":262,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":698356304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160518Z"},{"ID":58026,"Name":"Wioska barbarzyƄska","Points":655,"X":507,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160519Z"},{"ID":58027,"Name":"Farma","Points":1014,"X":697,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":699867743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16052Z"},{"ID":58028,"Name":"RODZYNEK","Points":1092,"X":270,"Y":553,"Continent":"K52","Bonus":0,"PlayerID":6892517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160521Z"},{"ID":58029,"Name":"#013","Points":5090,"X":547,"Y":271,"Continent":"K25","Bonus":1,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160521Z"},{"ID":58030,"Name":"Wioska a4","Points":1479,"X":425,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160522Z"},{"ID":58031,"Name":"K67 10","Points":3234,"X":702,"Y":619,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160523Z"},{"ID":58032,"Name":"Wioska barbarzyƄska","Points":315,"X":306,"Y":615,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160523Z"},{"ID":58033,"Name":"New World","Points":3967,"X":422,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160524Z"},{"ID":58034,"Name":"PIROTECHNIK 010","Points":376,"X":337,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160525Z"},{"ID":58035,"Name":"Wioska barbarzyƄska","Points":821,"X":407,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160526Z"},{"ID":58036,"Name":"030","Points":7761,"X":733,"Y":493,"Continent":"K47","Bonus":4,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160526Z"},{"ID":58038,"Name":"Wioska barbarzyƄska","Points":4919,"X":529,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160527Z"},{"ID":58039,"Name":"Bzyk","Points":3296,"X":561,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":699443920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160528Z"},{"ID":58040,"Name":"Wioska barbarzyƄska","Points":4999,"X":534,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160528Z"},{"ID":58041,"Name":"K67 30","Points":1039,"X":716,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160529Z"},{"ID":58042,"Name":"Zzz 11 trochę za daleko","Points":615,"X":280,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16053Z"},{"ID":58043,"Name":"Wioska barbarzyƄska","Points":436,"X":550,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":8015775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160531Z"},{"ID":58044,"Name":"001 Drewno","Points":4809,"X":266,"Y":527,"Continent":"K52","Bonus":1,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160531Z"},{"ID":58047,"Name":"New WorldA","Points":1549,"X":269,"Y":541,"Continent":"K52","Bonus":7,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160532Z"},{"ID":58049,"Name":"Wioska barbarzyƄska","Points":2029,"X":727,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160533Z"},{"ID":58051,"Name":"Wioska Cheltenham","Points":690,"X":336,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":849106820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160533Z"},{"ID":58052,"Name":"Wioska barbarzyƄska","Points":148,"X":282,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160534Z"},{"ID":58053,"Name":"083 obrzeĆŒa","Points":1121,"X":274,"Y":557,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160535Z"},{"ID":58054,"Name":"009","Points":4094,"X":283,"Y":596,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160535Z"},{"ID":58056,"Name":"Wioska barbarzyƄska","Points":338,"X":371,"Y":699,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160536Z"},{"ID":58057,"Name":"006","Points":325,"X":275,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":699844314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160537Z"},{"ID":58058,"Name":"Wioska barbarzyƄska","Points":2522,"X":364,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160538Z"},{"ID":58059,"Name":"Wioska MegaMocny","Points":2208,"X":581,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":8806145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160538Z"},{"ID":58060,"Name":"NOT?","Points":2549,"X":308,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160539Z"},{"ID":58061,"Name":"Osada koczownikĂłw","Points":3410,"X":284,"Y":603,"Continent":"K62","Bonus":2,"PlayerID":849047233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16054Z"},{"ID":58062,"Name":"Wioska Arash1","Points":195,"X":287,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":3462813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160541Z"},{"ID":58063,"Name":"budowa 06","Points":1098,"X":613,"Y":710,"Continent":"K76","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160541Z"},{"ID":58064,"Name":"Wioska ddd121","Points":493,"X":523,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":2575842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160542Z"},{"ID":58065,"Name":"[0272]","Points":3381,"X":262,"Y":500,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160543Z"},{"ID":58066,"Name":"234 Asuan","Points":5867,"X":469,"Y":498,"Continent":"K44","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160543Z"},{"ID":58067,"Name":"051 - Budowanko!","Points":3362,"X":513,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160544Z"},{"ID":58068,"Name":"A02","Points":1507,"X":428,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":849038597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160545Z"},{"ID":58069,"Name":"Flap","Points":4182,"X":615,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160546Z"},{"ID":58070,"Name":"Wioska sebastianxxx19","Points":2979,"X":346,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":849101018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160546Z"},{"ID":58071,"Name":"K67 21","Points":2248,"X":704,"Y":620,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160547Z"},{"ID":58072,"Name":"Wioska barbarzyƄska","Points":206,"X":295,"Y":617,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160548Z"},{"ID":58073,"Name":"Ave Why!","Points":749,"X":518,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160548Z"},{"ID":58074,"Name":"Kami 5","Points":837,"X":736,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160549Z"},{"ID":58075,"Name":"Wioska klez 030","Points":1531,"X":263,"Y":531,"Continent":"K52","Bonus":1,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16055Z"},{"ID":58076,"Name":"Wioska Yeta","Points":1770,"X":288,"Y":402,"Continent":"K42","Bonus":0,"PlayerID":7259690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160551Z"},{"ID":58077,"Name":"Ave Why!","Points":633,"X":525,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699121671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160551Z"},{"ID":58078,"Name":"Wioska barbarzyƄska","Points":672,"X":372,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160552Z"},{"ID":58079,"Name":"NOT?","Points":2431,"X":311,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160553Z"},{"ID":58080,"Name":"Wioska fafex","Points":471,"X":383,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":108256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160554Z"},{"ID":58081,"Name":"Wioska barbarzyƄska","Points":720,"X":345,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160554Z"},{"ID":58082,"Name":"elo","Points":650,"X":431,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160555Z"},{"ID":58083,"Name":"Wioska barbarzyƄska","Points":545,"X":284,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":849096972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160556Z"},{"ID":58084,"Name":"Wioska barbarzyƄska","Points":5897,"X":650,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160556Z"},{"ID":58085,"Name":"02 Wioska barbarzyƄska","Points":2080,"X":725,"Y":434,"Continent":"K47","Bonus":0,"PlayerID":8785003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160557Z"},{"ID":58086,"Name":"Wioska barbarzyƄska","Points":253,"X":348,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160558Z"},{"ID":58087,"Name":"Wioska barbarzyƄska","Points":395,"X":292,"Y":617,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160559Z"},{"ID":58088,"Name":"Wioska barbarzyƄska","Points":1960,"X":615,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16056Z"},{"ID":58089,"Name":"North 051","Points":4218,"X":518,"Y":264,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16056Z"},{"ID":58090,"Name":"033 KTW","Points":1918,"X":731,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160561Z"},{"ID":58091,"Name":"K42 ADAMUS 023","Points":2396,"X":279,"Y":433,"Continent":"K42","Bonus":0,"PlayerID":6212605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160562Z"},{"ID":58092,"Name":"New WorldA","Points":1200,"X":274,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160562Z"},{"ID":58093,"Name":"Wioska gmaciejwagner","Points":846,"X":726,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":849114022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160563Z"},{"ID":58094,"Name":"047 - Budowanko!","Points":3777,"X":571,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160564Z"},{"ID":58095,"Name":"#0221 barbarzyƄska","Points":2886,"X":663,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160564Z"},{"ID":58096,"Name":"042. Wioska barbarzyƄska","Points":588,"X":684,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160565Z"},{"ID":58097,"Name":"Wioska diabolllo","Points":1043,"X":669,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":7982117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160566Z"},{"ID":58098,"Name":"Flap","Points":3572,"X":600,"Y":283,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160567Z"},{"ID":58099,"Name":"-30-","Points":2835,"X":576,"Y":719,"Continent":"K75","Bonus":1,"PlayerID":849032414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160567Z"},{"ID":58100,"Name":"C0330","Points":1570,"X":267,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160568Z"},{"ID":58101,"Name":"Wioska barbarzyƄska","Points":464,"X":322,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160569Z"},{"ID":58102,"Name":"Wioska barbarzyƄska","Points":1981,"X":535,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16057Z"},{"ID":58103,"Name":"Paris","Points":1997,"X":276,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":2717161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16057Z"},{"ID":58104,"Name":"Wioska barbarzyƄska","Points":1654,"X":734,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160571Z"},{"ID":58105,"Name":"O159","Points":684,"X":314,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160572Z"},{"ID":58107,"Name":"[0277]","Points":3697,"X":264,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160572Z"},{"ID":58108,"Name":"002","Points":3951,"X":297,"Y":614,"Continent":"K62","Bonus":0,"PlayerID":849100796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160573Z"},{"ID":58109,"Name":"North 068","Points":4778,"X":514,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160574Z"},{"ID":58111,"Name":"Bagno 40","Points":2633,"X":466,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160575Z"},{"ID":58112,"Name":"Wioska Artok","Points":1418,"X":289,"Y":403,"Continent":"K42","Bonus":0,"PlayerID":849097477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160575Z"},{"ID":58113,"Name":"Wioska barbarzyƄska","Points":822,"X":728,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160576Z"},{"ID":58114,"Name":"Wioska Moddark","Points":26,"X":645,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":6670484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160577Z"},{"ID":58115,"Name":"XDX","Points":3391,"X":611,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160577Z"},{"ID":58116,"Name":"Wyspa 031","Points":1149,"X":297,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160578Z"},{"ID":58117,"Name":"Wioska barbarzyƄska","Points":2575,"X":372,"Y":307,"Continent":"K33","Bonus":6,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160579Z"},{"ID":58118,"Name":"Wioska barbarzyƄska","Points":563,"X":739,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160579Z"},{"ID":58119,"Name":"North 025","Points":6803,"X":511,"Y":267,"Continent":"K25","Bonus":7,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16058Z"},{"ID":58120,"Name":"Wioska barbarzyƄska","Points":1950,"X":669,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160581Z"},{"ID":58121,"Name":"103","Points":1989,"X":737,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160582Z"},{"ID":58122,"Name":"Wioska barbarzyƄska","Points":279,"X":540,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160582Z"},{"ID":58123,"Name":"Wioska barbarzyƄska","Points":287,"X":685,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160583Z"},{"ID":58124,"Name":"Wioska korek62","Points":1373,"X":338,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":7422002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160584Z"},{"ID":58125,"Name":"Wioska Addamus","Points":1874,"X":306,"Y":441,"Continent":"K43","Bonus":0,"PlayerID":371910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160584Z"},{"ID":58126,"Name":"[0273]","Points":3773,"X":263,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160585Z"},{"ID":58127,"Name":"Wioska barbarzyƄska","Points":2427,"X":674,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160586Z"},{"ID":58128,"Name":"Polna","Points":612,"X":415,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":2801913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160586Z"},{"ID":58129,"Name":"13. Ford","Points":3006,"X":460,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":849100262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160587Z"},{"ID":58130,"Name":"Junak","Points":1951,"X":471,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":849114085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160588Z"},{"ID":58131,"Name":"WZ09","Points":1939,"X":702,"Y":624,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160589Z"},{"ID":58132,"Name":"Piorunek1996 Wieƛ ..3.. PPF-28","Points":1279,"X":524,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849066618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160589Z"},{"ID":58133,"Name":"Wioska barbarzyƄska","Points":1138,"X":565,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16059Z"},{"ID":58134,"Name":"elo","Points":975,"X":432,"Y":271,"Continent":"K24","Bonus":6,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160591Z"},{"ID":58136,"Name":"Wioska barbarzyƄska","Points":2639,"X":540,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160591Z"},{"ID":58137,"Name":"-004-","Points":3825,"X":731,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":7418168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160592Z"},{"ID":58138,"Name":"Wioska Sir Christopher Last","Points":792,"X":629,"Y":483,"Continent":"K46","Bonus":0,"PlayerID":699781390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160593Z"},{"ID":58139,"Name":"Wioska barbarzyƄska","Points":362,"X":298,"Y":621,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160594Z"},{"ID":58140,"Name":"X.05","Points":1516,"X":729,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160594Z"},{"ID":58141,"Name":"PóƂnocny Bagdad","Points":3821,"X":623,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160595Z"},{"ID":58142,"Name":"[216]","Points":693,"X":723,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160596Z"},{"ID":58143,"Name":"Kami 3","Points":1505,"X":736,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160596Z"},{"ID":58144,"Name":"ROBIĘ HETMANA","Points":1211,"X":726,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":849018780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160597Z"},{"ID":58145,"Name":"ble","Points":4132,"X":621,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160598Z"},{"ID":58146,"Name":"Wioska Geamel","Points":26,"X":421,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":9282974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160598Z"},{"ID":58147,"Name":"Na SsSskraju","Points":307,"X":276,"Y":573,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160599Z"},{"ID":58148,"Name":"Bunkier","Points":363,"X":344,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1606Z"},{"ID":58149,"Name":"Zaplecze Barba 033","Points":4076,"X":356,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160601Z"},{"ID":58150,"Name":"089. Wioska barbarzyƄska","Points":2796,"X":735,"Y":459,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160601Z"},{"ID":58151,"Name":"127.Stradi","Points":1236,"X":439,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160602Z"},{"ID":58152,"Name":"PóƂnocny Bagdad","Points":1058,"X":639,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160603Z"},{"ID":58153,"Name":"#001 Chicago","Points":2205,"X":332,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":849101276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160603Z"},{"ID":58154,"Name":"Wioska barbarzyƄska","Points":1021,"X":728,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160604Z"},{"ID":58155,"Name":"PóƂnocny Bagdad","Points":6342,"X":630,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160605Z"},{"ID":58156,"Name":"]Zachowek[","Points":2376,"X":536,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":192947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160606Z"},{"ID":58157,"Name":"Wioska barbarzyƄska","Points":3216,"X":539,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160607Z"},{"ID":58158,"Name":"Wioska skwr85","Points":1977,"X":723,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":849104121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160607Z"},{"ID":58159,"Name":"Wioska barbarzyƄska","Points":235,"X":269,"Y":505,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160608Z"},{"ID":58160,"Name":"Na SsSskraju","Points":775,"X":276,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160609Z"},{"ID":58161,"Name":"39.","Points":705,"X":331,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160609Z"},{"ID":58162,"Name":"New World","Points":3110,"X":435,"Y":728,"Continent":"K74","Bonus":9,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16061Z"},{"ID":58163,"Name":"Wioska barbarzyƄska","Points":149,"X":261,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160611Z"},{"ID":58164,"Name":"Wioska gall7","Points":733,"X":266,"Y":471,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160612Z"},{"ID":58165,"Name":"Maryna 2","Points":1863,"X":268,"Y":457,"Continent":"K42","Bonus":0,"PlayerID":699650981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160612Z"},{"ID":58166,"Name":"Sony 911","Points":4068,"X":673,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160613Z"},{"ID":58167,"Name":"Wioska barbarzyƄska","Points":540,"X":730,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160614Z"},{"ID":58168,"Name":"North 081","Points":4177,"X":487,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160614Z"},{"ID":58170,"Name":"Wioska barbarzyƄska","Points":924,"X":543,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849010386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160615Z"},{"ID":58171,"Name":"Gandalf","Points":3099,"X":680,"Y":641,"Continent":"K66","Bonus":0,"PlayerID":849112504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160616Z"},{"ID":58172,"Name":"Wioska krycha9867","Points":278,"X":690,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":6995252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160617Z"},{"ID":58173,"Name":"Wioska lord leoni","Points":884,"X":272,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":8897100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160617Z"},{"ID":58175,"Name":"Wioska barbarzyƄska","Points":1817,"X":732,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160618Z"},{"ID":58176,"Name":"ZakƂad","Points":1963,"X":262,"Y":474,"Continent":"K42","Bonus":2,"PlayerID":848977600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160619Z"},{"ID":58177,"Name":"Wioska lukaszking2","Points":129,"X":271,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":128353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160619Z"},{"ID":58178,"Name":"Wioska Lord Ɓukasz1997","Points":2092,"X":512,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":9097545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16062Z"},{"ID":58179,"Name":"rohan","Points":1410,"X":293,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160621Z"},{"ID":58180,"Name":"PPF-44","Points":385,"X":500,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160622Z"},{"ID":58181,"Name":"Wioska barbarzyƄska","Points":1254,"X":381,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160622Z"},{"ID":58182,"Name":"Elo Elo 20","Points":930,"X":280,"Y":584,"Continent":"K52","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160623Z"},{"ID":58183,"Name":"Wioska barbarzyƄska","Points":1550,"X":597,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160624Z"},{"ID":58184,"Name":"Wiocha 7","Points":2354,"X":559,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":849045675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160624Z"},{"ID":58185,"Name":"XDX","Points":3641,"X":606,"Y":286,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160625Z"},{"ID":58186,"Name":"Wioska Robert Nowakowski Jan","Points":26,"X":429,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849101396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160626Z"},{"ID":58187,"Name":"Wioska barbarzyƄska","Points":421,"X":301,"Y":380,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160626Z"},{"ID":58188,"Name":"Wioska 1","Points":8219,"X":266,"Y":510,"Continent":"K52","Bonus":0,"PlayerID":849114265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160627Z"},{"ID":58189,"Name":"MojeDnoToWaszSzczyt","Points":2825,"X":464,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160628Z"},{"ID":58190,"Name":"Wioska exim","Points":502,"X":714,"Y":607,"Continent":"K67","Bonus":0,"PlayerID":699858532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160629Z"},{"ID":58191,"Name":"Wioska barbarzyƄska","Points":488,"X":729,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160629Z"},{"ID":58192,"Name":"#401 F","Points":1568,"X":445,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16063Z"},{"ID":58193,"Name":"Wioska barbara","Points":4090,"X":419,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160631Z"},{"ID":58194,"Name":"Wioska marq135","Points":1160,"X":293,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":699598671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160631Z"},{"ID":58195,"Name":"Nowe Dobra - budowa","Points":3513,"X":690,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":699759128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160632Z"},{"ID":58196,"Name":"080 obrzeĆŒa","Points":990,"X":273,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160633Z"},{"ID":58197,"Name":"C0322","Points":2141,"X":268,"Y":554,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160633Z"},{"ID":58198,"Name":"Sony 911","Points":2243,"X":677,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160634Z"},{"ID":58199,"Name":"Wioska maniuƛ1968","Points":1084,"X":272,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":7575174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160635Z"},{"ID":58200,"Name":"Wioska barbarzyƄska","Points":350,"X":333,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160636Z"},{"ID":58201,"Name":"Wioska barbarzyƄska","Points":431,"X":733,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160636Z"},{"ID":58202,"Name":"Wioska Marczelok5","Points":270,"X":564,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":849065742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160637Z"},{"ID":58203,"Name":"089 obrzeĆŒa","Points":632,"X":270,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160638Z"},{"ID":58204,"Name":"sony911","Points":1193,"X":691,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160638Z"},{"ID":58205,"Name":"Avanti!","Points":1215,"X":265,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160639Z"},{"ID":58206,"Name":"Wioska bunu","Points":3707,"X":308,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849050087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16064Z"},{"ID":58207,"Name":"Wioska barbarzyƄska","Points":275,"X":723,"Y":412,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160641Z"},{"ID":58208,"Name":"Wioska barbarzyƄska","Points":2271,"X":592,"Y":712,"Continent":"K75","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160641Z"},{"ID":58209,"Name":"Wioska barbarzyƄska","Points":3752,"X":404,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160642Z"},{"ID":58210,"Name":"DCS","Points":2399,"X":725,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":699687328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160643Z"},{"ID":58211,"Name":"032. Brauer92","Points":4042,"X":704,"Y":376,"Continent":"K37","Bonus":5,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160643Z"},{"ID":58212,"Name":"Wioska barbarzyƄska","Points":1748,"X":739,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160644Z"},{"ID":58213,"Name":"PóƂnocny Bagdad","Points":3427,"X":625,"Y":305,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160645Z"},{"ID":58214,"Name":"035. Gloria Victis","Points":4008,"X":282,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160646Z"},{"ID":58215,"Name":"Wioska przemomam","Points":2253,"X":697,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":9147518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160646Z"},{"ID":58216,"Name":"SKUTE BO BO","Points":1035,"X":288,"Y":603,"Continent":"K62","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160647Z"},{"ID":58217,"Name":"Wioska barbarzyƄska","Points":785,"X":579,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160648Z"},{"ID":58218,"Name":"Wioska barbarzyƄska","Points":4292,"X":540,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160649Z"},{"ID":58219,"Name":"[001] Wiesz nie","Points":4752,"X":662,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699477624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160649Z"},{"ID":58220,"Name":"Sony 911","Points":3824,"X":687,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16065Z"},{"ID":58221,"Name":"Wioska barbarzyƄska","Points":455,"X":345,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160651Z"},{"ID":58222,"Name":"ChceszPokojuSzykujSięDoWojny","Points":1732,"X":470,"Y":734,"Continent":"K74","Bonus":7,"PlayerID":699333701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160651Z"},{"ID":58223,"Name":"ble","Points":2995,"X":623,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160652Z"},{"ID":58224,"Name":"095 koniec ƛwiata","Points":2992,"X":622,"Y":705,"Continent":"K76","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160653Z"},{"ID":58225,"Name":"238...North","Points":1123,"X":445,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160653Z"},{"ID":58226,"Name":"FP047","Points":3980,"X":469,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160654Z"},{"ID":58227,"Name":"088. Wioska barbarzyƄska","Points":2741,"X":731,"Y":471,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160655Z"},{"ID":58228,"Name":"C0319","Points":2361,"X":272,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160656Z"},{"ID":58229,"Name":"Taka.","Points":979,"X":484,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160656Z"},{"ID":58230,"Name":"[001] Sqaza","Points":1381,"X":269,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":6692351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160657Z"},{"ID":58231,"Name":"Wioska II","Points":497,"X":313,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":849095948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160658Z"},{"ID":58232,"Name":"XDX","Points":3673,"X":599,"Y":282,"Continent":"K25","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160658Z"},{"ID":58233,"Name":"Wioska barbarzyƄska","Points":1659,"X":401,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160659Z"},{"ID":58234,"Name":"@@@@","Points":1130,"X":264,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":698879638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16066Z"},{"ID":58235,"Name":"PóƂnocny Bagdad","Points":1720,"X":609,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160661Z"},{"ID":58236,"Name":"Wioska barbarzyƄska","Points":3449,"X":532,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160661Z"},{"ID":58237,"Name":"Wioska barbarzyƄska","Points":231,"X":321,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160662Z"},{"ID":58238,"Name":"Wioska barbarzyƄska","Points":2522,"X":662,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160663Z"},{"ID":58239,"Name":"Wioska barbarzyƄska","Points":1498,"X":674,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160663Z"},{"ID":58240,"Name":"Wioska barbarzyƄska","Points":958,"X":727,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160664Z"},{"ID":58241,"Name":"Twierdza (PRS)","Points":2608,"X":704,"Y":434,"Continent":"K47","Bonus":25,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160665Z"},{"ID":58242,"Name":"Wioska barbarzyƄska","Points":99,"X":293,"Y":399,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160666Z"},{"ID":58243,"Name":"Wioska barbarzyƄska","Points":131,"X":331,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160666Z"},{"ID":58244,"Name":"0000044Z","Points":683,"X":267,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160667Z"},{"ID":58245,"Name":"Experience","Points":651,"X":656,"Y":573,"Continent":"K56","Bonus":0,"PlayerID":848926293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160668Z"},{"ID":58246,"Name":"PPF-17","Points":2046,"X":517,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160668Z"},{"ID":58247,"Name":"181 Wioska","Points":347,"X":494,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":3499467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160669Z"},{"ID":58248,"Name":"Zaplecze Barba 049","Points":1068,"X":341,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16067Z"},{"ID":58249,"Name":"Osada koczownikĂłw","Points":717,"X":327,"Y":654,"Continent":"K63","Bonus":2,"PlayerID":8175236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.16067Z"},{"ID":58250,"Name":"Wioska barbarzyƄska","Points":2693,"X":718,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160671Z"},{"ID":58251,"Name":"Wioska barbarzyƄska","Points":266,"X":315,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160672Z"},{"ID":58252,"Name":"Ghostmane9","Points":530,"X":726,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":848896434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160673Z"},{"ID":58253,"Name":"KONFA TO MARKA, NARKA","Points":3464,"X":269,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.160673Z"},{"ID":58254,"Name":"Wioska Arlosik","Points":1394,"X":514,"Y":261,"Continent":"K25","Bonus":0,"PlayerID":849112960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194575Z"},{"ID":58256,"Name":"Wioska barbarzyƄska","Points":336,"X":681,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194578Z"},{"ID":58257,"Name":"Wz07","Points":2334,"X":706,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194579Z"},{"ID":58258,"Name":"Wioska barbarzyƄska","Points":2638,"X":548,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19458Z"},{"ID":58259,"Name":"#142#","Points":1223,"X":649,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194582Z"},{"ID":58260,"Name":"MojeDnoToWaszSzczyt","Points":5385,"X":506,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194583Z"},{"ID":58261,"Name":"Osada koczownikĂłw","Points":853,"X":655,"Y":325,"Continent":"K36","Bonus":4,"PlayerID":849092309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194584Z"},{"ID":58262,"Name":"Wioska AP1997","Points":2212,"X":720,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":9095581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194585Z"},{"ID":58264,"Name":"#025","Points":2215,"X":552,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194595Z"},{"ID":58265,"Name":"Wioska barbarzyƄska","Points":895,"X":586,"Y":346,"Continent":"K35","Bonus":0,"PlayerID":698200480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194596Z"},{"ID":58266,"Name":"Osada koczownikĂłw","Points":269,"X":302,"Y":375,"Continent":"K33","Bonus":2,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194598Z"},{"ID":58267,"Name":"Wioska barbarzyƄska","Points":972,"X":643,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194599Z"},{"ID":58268,"Name":"0119","Points":711,"X":702,"Y":377,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1946Z"},{"ID":58269,"Name":"A#047","Points":5393,"X":738,"Y":469,"Continent":"K47","Bonus":6,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194601Z"},{"ID":58270,"Name":"Wioska Ragnarok 76","Points":1027,"X":592,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":849114408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194602Z"},{"ID":58271,"Name":"Wioska barbarzyƄska","Points":2445,"X":538,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194606Z"},{"ID":58272,"Name":"Wioska barbarzyƄska","Points":251,"X":328,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194607Z"},{"ID":58273,"Name":"Wioska slawekx28","Points":255,"X":619,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":6766467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194608Z"},{"ID":58274,"Name":"North 052","Points":4270,"X":514,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194609Z"},{"ID":58276,"Name":"Wioska 001","Points":508,"X":731,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":7751626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19461Z"},{"ID":58277,"Name":"PPF-31","Points":1066,"X":566,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194612Z"},{"ID":58278,"Name":"Twierdza (KOMY)","Points":6873,"X":386,"Y":600,"Continent":"K63","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194613Z"},{"ID":58279,"Name":"Kolonia","Points":469,"X":384,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":699588526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194614Z"},{"ID":58280,"Name":"235 Bombaj","Points":1850,"X":483,"Y":510,"Continent":"K54","Bonus":0,"PlayerID":1497168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194617Z"},{"ID":58281,"Name":"093 koniec ƛwiata","Points":2273,"X":614,"Y":701,"Continent":"K76","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194619Z"},{"ID":58282,"Name":"Wioska barbarzyƄska","Points":382,"X":367,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19462Z"},{"ID":58283,"Name":"Wioska barbarzyƄska","Points":668,"X":370,"Y":300,"Continent":"K33","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194621Z"},{"ID":58284,"Name":"X.06","Points":1616,"X":728,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194623Z"},{"ID":58285,"Name":"Wioska barbarzyƄska","Points":684,"X":424,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194624Z"},{"ID":58286,"Name":"WZ15","Points":791,"X":688,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194625Z"},{"ID":58287,"Name":"Defini","Points":585,"X":444,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194626Z"},{"ID":58288,"Name":"Wioska barbarzyƄska","Points":314,"X":375,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194629Z"},{"ID":58289,"Name":"adam1","Points":929,"X":336,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":6618608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194631Z"},{"ID":58290,"Name":"o017","Points":3506,"X":625,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194632Z"},{"ID":58291,"Name":"056","Points":328,"X":687,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194634Z"},{"ID":58292,"Name":"MojeDnoToWaszSzczyt","Points":4277,"X":478,"Y":261,"Continent":"K24","Bonus":5,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194635Z"},{"ID":58295,"Name":"Zaplecze Barba 050","Points":1338,"X":346,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194637Z"},{"ID":58297,"Name":"North K25","Points":1963,"X":555,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194638Z"},{"ID":58298,"Name":"C0335","Points":981,"X":265,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194641Z"},{"ID":58299,"Name":"009","Points":3979,"X":286,"Y":591,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194643Z"},{"ID":58300,"Name":"Wioska Ale AHMED","Points":338,"X":319,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":7687862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194644Z"},{"ID":58301,"Name":"PPF-14","Points":2510,"X":517,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194645Z"},{"ID":58302,"Name":"Wioska barbarzyƄska","Points":300,"X":302,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194646Z"},{"ID":58303,"Name":"#028","Points":1984,"X":554,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194648Z"},{"ID":58304,"Name":"40.","Points":771,"X":332,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194649Z"},{"ID":58305,"Name":"o019","Points":3092,"X":629,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19465Z"},{"ID":58306,"Name":"Wioska barbarzyƄska","Points":901,"X":496,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194653Z"},{"ID":58307,"Name":"Taka.","Points":1535,"X":479,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194654Z"},{"ID":58309,"Name":"????","Points":4898,"X":491,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194656Z"},{"ID":58310,"Name":"Wioska barbarzyƄska","Points":286,"X":459,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":849090573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194657Z"},{"ID":58311,"Name":"#141#","Points":1213,"X":669,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194658Z"},{"ID":58312,"Name":"Wioska barbarzyƄska","Points":330,"X":348,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19466Z"},{"ID":58313,"Name":"Wioska barbarzyƄska","Points":344,"X":376,"Y":702,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194661Z"},{"ID":58314,"Name":"Wioska barbarzyƄska","Points":1020,"X":380,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194664Z"},{"ID":58315,"Name":"rycho 13","Points":1827,"X":739,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":2819768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194665Z"},{"ID":58316,"Name":"Wioska barbarzyƄska","Points":869,"X":738,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194667Z"},{"ID":58317,"Name":"Wioska barbarzyƄska","Points":1533,"X":603,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194668Z"},{"ID":58318,"Name":"PPF-18","Points":1828,"X":525,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194669Z"},{"ID":58319,"Name":"Wioska barbarzyƄska","Points":232,"X":314,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19467Z"},{"ID":58320,"Name":"PóƂnocny Bagdad","Points":1884,"X":610,"Y":287,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194672Z"},{"ID":58321,"Name":"Wioska barbarzyƄska","Points":572,"X":424,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194673Z"},{"ID":58322,"Name":"Wioska Stefan Escobar","Points":26,"X":366,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":699399386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194676Z"},{"ID":58323,"Name":"Wioska barbarzyƄska","Points":1794,"X":733,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194678Z"},{"ID":58324,"Name":"Wioska barbarzyƄska","Points":336,"X":268,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194679Z"},{"ID":58325,"Name":"A10","Points":857,"X":715,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":3692413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19468Z"},{"ID":58326,"Name":"Wioska barbarzyƄska","Points":704,"X":689,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194681Z"},{"ID":58327,"Name":"North K25","Points":1493,"X":566,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194683Z"},{"ID":58328,"Name":"BIMBER 4","Points":941,"X":441,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":6857973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194684Z"},{"ID":58330,"Name":"K67 14","Points":3434,"X":702,"Y":623,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194687Z"},{"ID":58332,"Name":"#209 C","Points":1289,"X":516,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194689Z"},{"ID":58333,"Name":"Kapitol_29","Points":1069,"X":510,"Y":729,"Continent":"K75","Bonus":7,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19469Z"},{"ID":58334,"Name":"Wioska barbarzyƄska","Points":219,"X":314,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194691Z"},{"ID":58335,"Name":"Wioska barbarzyƄska","Points":4081,"X":638,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194693Z"},{"ID":58336,"Name":"Wioska barbarzyƄska","Points":3223,"X":653,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194694Z"},{"ID":58337,"Name":"Wioska barbarzyƄska","Points":342,"X":320,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194695Z"},{"ID":58338,"Name":"Wioska barbarzyƄska","Points":442,"X":725,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194697Z"},{"ID":58339,"Name":"Wioska barbarzyƄska","Points":787,"X":736,"Y":538,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1947Z"},{"ID":58340,"Name":"Wioska barbarzyƄska","Points":505,"X":383,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194701Z"},{"ID":58341,"Name":"Flap","Points":3779,"X":598,"Y":286,"Continent":"K25","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194702Z"},{"ID":58342,"Name":"Wioska CrazyJack","Points":182,"X":599,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":699835178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194704Z"},{"ID":58344,"Name":"U-11","Points":2066,"X":647,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194705Z"},{"ID":58346,"Name":"Bar","Points":3731,"X":668,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":849048856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194706Z"},{"ID":58347,"Name":"New WorldA","Points":713,"X":276,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194708Z"},{"ID":58348,"Name":"0-16","Points":1645,"X":696,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19471Z"},{"ID":58349,"Name":"Wioska barbarzyƄska","Points":190,"X":289,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":849103947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194712Z"},{"ID":58350,"Name":"Alamo5","Points":1405,"X":719,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":2723244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194713Z"},{"ID":58351,"Name":"28 barbarzyƄska","Points":2619,"X":271,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194715Z"},{"ID":58352,"Name":"Wioska Zoso2000o","Points":2115,"X":277,"Y":413,"Continent":"K42","Bonus":0,"PlayerID":3639628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194716Z"},{"ID":58353,"Name":"Wioska 009","Points":2516,"X":732,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194717Z"},{"ID":58354,"Name":"04 Wioska barbarzyƄska","Points":847,"X":725,"Y":435,"Continent":"K47","Bonus":0,"PlayerID":8785003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194719Z"},{"ID":58355,"Name":"37barbarzyƄska 2B","Points":2191,"X":273,"Y":431,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19472Z"},{"ID":58357,"Name":"Wioska barbarzyƄska","Points":544,"X":348,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194723Z"},{"ID":58358,"Name":"128.Stradi","Points":2485,"X":395,"Y":295,"Continent":"K23","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194724Z"},{"ID":58359,"Name":"Wioska Wieslaw 5","Points":1194,"X":512,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":699794421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194725Z"},{"ID":58360,"Name":"Wioska barbarzyƄska","Points":2363,"X":531,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194727Z"},{"ID":58361,"Name":"Wioska semunus","Points":26,"X":319,"Y":353,"Continent":"K33","Bonus":0,"PlayerID":699776412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194728Z"},{"ID":58362,"Name":"002","Points":478,"X":276,"Y":585,"Continent":"K52","Bonus":0,"PlayerID":699730998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194729Z"},{"ID":58363,"Name":"Wioska barbarzyƄska","Points":539,"X":406,"Y":713,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19473Z"},{"ID":58364,"Name":"Taka.","Points":1441,"X":482,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194733Z"},{"ID":58365,"Name":"Wioska KsiÄ™ĆŒnaAnna","Points":743,"X":378,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":699491827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194734Z"},{"ID":58366,"Name":"138.Stradi","Points":860,"X":401,"Y":293,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194736Z"},{"ID":58367,"Name":"godziwa","Points":1960,"X":268,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":1095271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194737Z"},{"ID":58368,"Name":"Wioska barbarzyƄska","Points":499,"X":382,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194738Z"},{"ID":58369,"Name":"Wioska barbarzyƄska","Points":444,"X":452,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194739Z"},{"ID":58370,"Name":"New World","Points":3642,"X":420,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19474Z"},{"ID":58371,"Name":"Osada koczownikĂłw","Points":799,"X":622,"Y":696,"Continent":"K66","Bonus":8,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194741Z"},{"ID":58372,"Name":"043. Mercel","Points":385,"X":681,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194744Z"},{"ID":58374,"Name":"Sony 911","Points":3372,"X":672,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194746Z"},{"ID":58375,"Name":"Wioska KRIS 74 PL","Points":26,"X":298,"Y":377,"Continent":"K32","Bonus":0,"PlayerID":9029627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194747Z"},{"ID":58376,"Name":"Wioska barbarzyƄska","Points":1192,"X":702,"Y":380,"Continent":"K37","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194748Z"},{"ID":58378,"Name":"Wioska barbarzyƄska","Points":3270,"X":523,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194859Z"},{"ID":58379,"Name":"FENIX","Points":3491,"X":389,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":9016464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194863Z"},{"ID":58380,"Name":"adam2","Points":728,"X":337,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":6618608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194865Z"},{"ID":58381,"Name":"Wioska robosm3352","Points":108,"X":267,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":1684948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194867Z"},{"ID":58382,"Name":"Elo Elo 19","Points":1173,"X":279,"Y":584,"Continent":"K52","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194869Z"},{"ID":58383,"Name":"akuku","Points":5130,"X":549,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":6425087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194882Z"},{"ID":58384,"Name":"New WorldA","Points":868,"X":267,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194884Z"},{"ID":58386,"Name":"098 koniec ƛwiata","Points":1934,"X":626,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194886Z"},{"ID":58387,"Name":"+01","Points":1739,"X":397,"Y":291,"Continent":"K23","Bonus":0,"PlayerID":699741694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194892Z"},{"ID":58388,"Name":"Wioska barbarzyƄska","Points":1451,"X":675,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194893Z"},{"ID":58389,"Name":"Osada koczownikĂłw","Points":2163,"X":530,"Y":263,"Continent":"K25","Bonus":9,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194894Z"},{"ID":58390,"Name":"Wioska Banan123","Points":1214,"X":565,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849112887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194896Z"},{"ID":58391,"Name":"[J]esiotr","Points":471,"X":275,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":849106971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194898Z"},{"ID":58392,"Name":"Wioska barbarzyƄska","Points":379,"X":471,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194899Z"},{"ID":58393,"Name":"WB49","Points":363,"X":303,"Y":365,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194901Z"},{"ID":58394,"Name":"Wioska barbarzyƄska","Points":718,"X":429,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194905Z"},{"ID":58395,"Name":"Wioska barbarzyƄska","Points":2388,"X":377,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194906Z"},{"ID":58396,"Name":"Wioska jaworbog","Points":701,"X":712,"Y":392,"Continent":"K37","Bonus":0,"PlayerID":2256843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194908Z"},{"ID":58397,"Name":"Wioska b 005","Points":865,"X":404,"Y":292,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194909Z"},{"ID":58398,"Name":"KONFA TO MARKA, NARKA","Points":2029,"X":275,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194911Z"},{"ID":58399,"Name":"[0242]","Points":3785,"X":268,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194913Z"},{"ID":58400,"Name":"PiekƂo to inni","Points":1664,"X":655,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194915Z"},{"ID":58401,"Name":"Bunkier","Points":356,"X":343,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194916Z"},{"ID":58402,"Name":"Wioska barbarzyƄska","Points":203,"X":306,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19492Z"},{"ID":58403,"Name":"6. Meleys","Points":644,"X":273,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194922Z"},{"ID":58404,"Name":"Wioska barbarzyƄska","Points":198,"X":314,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194923Z"},{"ID":58405,"Name":"0-17","Points":1478,"X":644,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194925Z"},{"ID":58406,"Name":"Wioska barbarzyƄska","Points":3339,"X":712,"Y":411,"Continent":"K47","Bonus":0,"PlayerID":8459255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194926Z"},{"ID":58407,"Name":"Wioska barbarzyƄska","Points":1655,"X":405,"Y":290,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194928Z"},{"ID":58408,"Name":"Wioska barbarzyƄska","Points":412,"X":281,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194929Z"},{"ID":58409,"Name":"North 096","Points":4238,"X":487,"Y":261,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194931Z"},{"ID":58410,"Name":"Wioska barbarzyƄska","Points":411,"X":298,"Y":610,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194935Z"},{"ID":58411,"Name":"#045","Points":492,"X":552,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194936Z"},{"ID":58412,"Name":"Wioska barbarzyƄska","Points":133,"X":264,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":699065686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194938Z"},{"ID":58413,"Name":"A03","Points":2110,"X":425,"Y":283,"Continent":"K24","Bonus":0,"PlayerID":849038597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194939Z"},{"ID":58414,"Name":"Wioska barbarzyƄska","Points":2667,"X":706,"Y":397,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194941Z"},{"ID":58415,"Name":"099. Wioska barbarzyƄska","Points":1827,"X":728,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194942Z"},{"ID":58416,"Name":"099 Wioska barbarzyƄska","Points":4136,"X":541,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194944Z"},{"ID":58417,"Name":"Wioska robertos1","Points":1627,"X":597,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":699148121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194981Z"},{"ID":58418,"Name":"#400 F","Points":2162,"X":446,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194983Z"},{"ID":58419,"Name":"041","Points":1216,"X":709,"Y":405,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194984Z"},{"ID":58420,"Name":"Wioska barbarzyƄska","Points":4501,"X":638,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194985Z"},{"ID":58421,"Name":"#0255 barbarzyƄska","Points":702,"X":442,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194986Z"},{"ID":58422,"Name":"CastAway !027","Points":4010,"X":716,"Y":592,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194988Z"},{"ID":58423,"Name":"Wioska barbarzyƄska","Points":2247,"X":357,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194989Z"},{"ID":58424,"Name":"#0084","Points":2118,"X":582,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":1536231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194991Z"},{"ID":58425,"Name":"Wioska Sir zombi","Points":792,"X":684,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":848964811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194995Z"},{"ID":58426,"Name":"41 barbarzyƄska 3B","Points":1959,"X":272,"Y":442,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194996Z"},{"ID":58427,"Name":"#133#","Points":1954,"X":673,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194998Z"},{"ID":58428,"Name":"New World","Points":3335,"X":425,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.194999Z"},{"ID":58429,"Name":"181.01","Points":5283,"X":329,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":7221139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195001Z"},{"ID":58430,"Name":"Wioska barbarzyƄska","Points":766,"X":728,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195003Z"},{"ID":58431,"Name":"054","Points":157,"X":739,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195004Z"},{"ID":58432,"Name":"Wioska barbarzyƄska","Points":344,"X":326,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195008Z"},{"ID":58433,"Name":"Wioska sasa","Points":4593,"X":531,"Y":615,"Continent":"K65","Bonus":0,"PlayerID":2613743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195009Z"},{"ID":58434,"Name":"#143#","Points":1216,"X":668,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195011Z"},{"ID":58435,"Name":"ƚw181*007","Points":726,"X":666,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":959179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195012Z"},{"ID":58436,"Name":"Wioska barbarzyƄska","Points":228,"X":267,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":1227918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195014Z"},{"ID":58437,"Name":"Wioska barbarzyƄska","Points":1101,"X":656,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195015Z"},{"ID":58438,"Name":"Wioska markam27","Points":1452,"X":408,"Y":714,"Continent":"K74","Bonus":0,"PlayerID":8651917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195017Z"},{"ID":58439,"Name":"Wioska barbarzyƄska","Points":1635,"X":527,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":699799629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195018Z"},{"ID":58440,"Name":"Wioska barbarzyƄska","Points":578,"X":579,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195022Z"},{"ID":58442,"Name":"Wioska barbarzyƄska","Points":2636,"X":621,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195024Z"},{"ID":58443,"Name":"065KP","Points":866,"X":472,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195025Z"},{"ID":58444,"Name":"X.08","Points":1061,"X":727,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195027Z"},{"ID":58446,"Name":"#046","Points":869,"X":550,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195029Z"},{"ID":58447,"Name":"003. Czysta","Points":2490,"X":454,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":602408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19503Z"},{"ID":58448,"Name":"Wioska BiiLii","Points":162,"X":265,"Y":468,"Continent":"K42","Bonus":0,"PlayerID":849110726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195032Z"},{"ID":58449,"Name":"Wioska malwina1","Points":976,"X":326,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":9053254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195036Z"},{"ID":58450,"Name":"025","Points":1235,"X":709,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195037Z"},{"ID":58452,"Name":"0116","Points":1273,"X":708,"Y":384,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195039Z"},{"ID":58453,"Name":"NOT?","Points":3518,"X":310,"Y":353,"Continent":"K33","Bonus":7,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195041Z"},{"ID":58454,"Name":"Wioska ArąStaro","Points":2032,"X":389,"Y":288,"Continent":"K23","Bonus":0,"PlayerID":848935732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195042Z"},{"ID":58455,"Name":"Wioska barbarzyƄska","Points":2013,"X":379,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195044Z"},{"ID":58456,"Name":"North K25","Points":1346,"X":537,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195045Z"},{"ID":58457,"Name":"Wioska barbarzyƄska","Points":2543,"X":365,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195047Z"},{"ID":58458,"Name":"Wioska barbarzyƄska","Points":3291,"X":647,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195051Z"},{"ID":58459,"Name":"Wioska barbarzyƄska","Points":378,"X":299,"Y":610,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195053Z"},{"ID":58460,"Name":"013","Points":4328,"X":401,"Y":286,"Continent":"K24","Bonus":2,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195054Z"},{"ID":58461,"Name":"085 obrzeĆŒa","Points":949,"X":274,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195056Z"},{"ID":58462,"Name":"Wioska barbarzyƄska","Points":2105,"X":731,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195058Z"},{"ID":58463,"Name":"04Osada koczownikĂłw","Points":5564,"X":356,"Y":683,"Continent":"K63","Bonus":2,"PlayerID":699704542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195059Z"},{"ID":58465,"Name":"Wioska barbarzyƄska","Points":1171,"X":673,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195061Z"},{"ID":58466,"Name":"Wioska barbarzyƄska","Points":71,"X":325,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195066Z"},{"ID":58467,"Name":"Wioska barbarzyƄska","Points":240,"X":339,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195067Z"},{"ID":58468,"Name":"Zaplecze Barba 034","Points":2578,"X":363,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195069Z"},{"ID":58469,"Name":"Wioska barbarzyƄska","Points":178,"X":365,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195071Z"},{"ID":58470,"Name":"KONFA TO MARKA, NARKA","Points":2022,"X":275,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195072Z"},{"ID":58471,"Name":"Wioska barbarzyƄska","Points":4856,"X":644,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195074Z"},{"ID":58472,"Name":"Zbąszynek","Points":4046,"X":676,"Y":658,"Continent":"K66","Bonus":0,"PlayerID":7520280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195075Z"},{"ID":58473,"Name":"[215]","Points":742,"X":722,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195077Z"},{"ID":58474,"Name":"Katowice","Points":760,"X":677,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195083Z"},{"ID":58475,"Name":"Wioska Monczi29i","Points":198,"X":677,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":849114477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195085Z"},{"ID":58476,"Name":"Wioska barbarzyƄska","Points":2000,"X":733,"Y":517,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195087Z"},{"ID":58477,"Name":"Wioska barbarzyƄska","Points":149,"X":317,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195088Z"},{"ID":58478,"Name":"Za dolinami","Points":1599,"X":283,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19509Z"},{"ID":58480,"Name":"KONFA TO MARKA, NARKA","Points":1364,"X":286,"Y":397,"Continent":"K32","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195092Z"},{"ID":58481,"Name":"046","Points":566,"X":717,"Y":403,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195093Z"},{"ID":58482,"Name":"twoja stara","Points":972,"X":719,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":9095581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195098Z"},{"ID":58483,"Name":"Wioska barbarzyƄsko","Points":1447,"X":604,"Y":713,"Continent":"K76","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195099Z"},{"ID":58484,"Name":"Wioska barbarzyƄska","Points":2107,"X":355,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195101Z"},{"ID":58485,"Name":"46 barbarzyƄska","Points":869,"X":271,"Y":452,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195103Z"},{"ID":58486,"Name":"Wioska barbarzyƄska","Points":312,"X":352,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195105Z"},{"ID":58487,"Name":"PóƂ 2","Points":466,"X":438,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195107Z"},{"ID":58488,"Name":"C0306","Points":3216,"X":275,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195108Z"},{"ID":58490,"Name":"WZ10","Points":1702,"X":713,"Y":609,"Continent":"K67","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19511Z"},{"ID":58491,"Name":"Wioska barbarzyƄska","Points":358,"X":264,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":1095489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195117Z"},{"ID":58492,"Name":"#144#","Points":1047,"X":650,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195118Z"},{"ID":58493,"Name":"North 059","Points":5271,"X":513,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19512Z"},{"ID":58494,"Name":"o024","Points":2027,"X":626,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195122Z"},{"ID":58495,"Name":"Flap","Points":3425,"X":599,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195124Z"},{"ID":58496,"Name":"Wioska perfekcja","Points":3836,"X":653,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":1286008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195126Z"},{"ID":58497,"Name":"067KP","Points":735,"X":464,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195128Z"},{"ID":58498,"Name":"Wioska barbarzyƄska","Points":108,"X":633,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195133Z"},{"ID":58499,"Name":"Wioska barbarzyƄska","Points":1528,"X":612,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195135Z"},{"ID":58500,"Name":"Wiriatus BD84","Points":1979,"X":366,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":9021037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195137Z"},{"ID":58501,"Name":"Osada koczownikĂłw","Points":1880,"X":577,"Y":720,"Continent":"K75","Bonus":4,"PlayerID":7581876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195139Z"},{"ID":58502,"Name":"Wioska barbarzyƄska","Points":2102,"X":544,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195141Z"},{"ID":58503,"Name":"Wioska barbarzyƄska","Points":1357,"X":602,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195143Z"},{"ID":58504,"Name":"Wioska barbarzyƄska","Points":440,"X":732,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195145Z"},{"ID":58505,"Name":"North K25","Points":1491,"X":554,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195147Z"},{"ID":58506,"Name":"Wioska barbarzyƄska","Points":314,"X":314,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":6892517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195152Z"},{"ID":58507,"Name":"Osada koczownikĂłw","Points":1048,"X":690,"Y":362,"Continent":"K36","Bonus":3,"PlayerID":609384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195154Z"},{"ID":58508,"Name":"#139#","Points":1216,"X":671,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195156Z"},{"ID":58510,"Name":"Wioska barbarzyƄska","Points":534,"X":295,"Y":623,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195157Z"},{"ID":58511,"Name":"Wioska barbarzyƄska","Points":3291,"X":651,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195159Z"},{"ID":58512,"Name":"|D| IS","Points":1771,"X":455,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698147372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195161Z"},{"ID":58513,"Name":"Wioska czarekpol","Points":99,"X":725,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":849103644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195163Z"},{"ID":58514,"Name":"Morelowy Sad","Points":1036,"X":444,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":7526090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195168Z"},{"ID":58515,"Name":"090. Wioska barbarzyƄska","Points":2708,"X":736,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19517Z"},{"ID":58516,"Name":"Wioska Sir dziadekk19","Points":761,"X":724,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":849032027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195171Z"},{"ID":58517,"Name":"#029","Points":2018,"X":555,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195173Z"},{"ID":58518,"Name":"Wioska Nadav","Points":2056,"X":553,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":849083534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195175Z"},{"ID":58519,"Name":"Wioska klez 031","Points":379,"X":284,"Y":606,"Continent":"K62","Bonus":0,"PlayerID":698295651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195177Z"},{"ID":58520,"Name":"38 barbarzyƄska 2A","Points":1630,"X":269,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195178Z"},{"ID":58521,"Name":"Wioska barbarzyƄska","Points":1247,"X":680,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19518Z"},{"ID":58522,"Name":"61 barbarzyƄska","Points":555,"X":271,"Y":440,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195202Z"},{"ID":58523,"Name":"Wioska barbarzyƄska","Points":757,"X":733,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195205Z"},{"ID":58524,"Name":"Wioska oisaj-org","Points":26,"X":358,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":7067846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195207Z"},{"ID":58525,"Name":"034","Points":642,"X":729,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195214Z"},{"ID":58526,"Name":"bandzior","Points":4191,"X":506,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195216Z"},{"ID":58527,"Name":"Wioska barbarzyƄska","Points":925,"X":740,"Y":487,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195217Z"},{"ID":58528,"Name":"Wioska siedlik12345","Points":1362,"X":419,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":849098477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195219Z"},{"ID":58529,"Name":"043.xxx","Points":1096,"X":521,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":8612358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195221Z"},{"ID":58531,"Name":"Wioska barbarzyƄska","Points":337,"X":321,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195223Z"},{"ID":58532,"Name":"Wioska barbarzyƄska","Points":241,"X":337,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195225Z"},{"ID":58533,"Name":"Wioska barbarzyƄska","Points":1355,"X":385,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19523Z"},{"ID":58534,"Name":"Wioska barbarzyƄska","Points":1131,"X":735,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195232Z"},{"ID":58535,"Name":"Wioska barbarzyƄska","Points":1165,"X":602,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195233Z"},{"ID":58536,"Name":"0000046Z","Points":483,"X":270,"Y":568,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195235Z"},{"ID":58537,"Name":"Wioska barbarzyƄska","Points":642,"X":484,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":848999671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195237Z"},{"ID":58538,"Name":"bla bla","Points":520,"X":260,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195238Z"},{"ID":58539,"Name":"Wioska game777","Points":94,"X":689,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":849071883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19524Z"},{"ID":58540,"Name":"KONFA TO MARKA, NARKA","Points":2116,"X":274,"Y":418,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195241Z"},{"ID":58541,"Name":"Wioska bbbarteqqq","Points":324,"X":389,"Y":289,"Continent":"K23","Bonus":0,"PlayerID":699589540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195249Z"},{"ID":58542,"Name":"[0243]","Points":4005,"X":268,"Y":498,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195251Z"},{"ID":58543,"Name":"Wioska Sessue","Points":43,"X":739,"Y":493,"Continent":"K47","Bonus":0,"PlayerID":699099385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195253Z"},{"ID":58544,"Name":"Wioska barbarzyƄska","Points":864,"X":733,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195255Z"},{"ID":58545,"Name":"050 - Budowanko!","Points":3045,"X":510,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195257Z"},{"ID":58546,"Name":"Wioska barbarzyƄska","Points":177,"X":280,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195258Z"},{"ID":58547,"Name":"Gruszczyn","Points":686,"X":499,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":849115431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19526Z"},{"ID":58548,"Name":"Wioska Kross x Smerf","Points":26,"X":545,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":9280679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195262Z"},{"ID":58549,"Name":"034. Charfa","Points":2686,"X":693,"Y":368,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195267Z"},{"ID":58550,"Name":"Wioska barbarzyƄska","Points":570,"X":729,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195269Z"},{"ID":58551,"Name":"Wioska barbarzyƄska","Points":598,"X":662,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195271Z"},{"ID":58552,"Name":"Wioska barbarzyƄska","Points":3299,"X":548,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195273Z"},{"ID":58553,"Name":"Wioska barbarzyƄska","Points":138,"X":685,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195274Z"},{"ID":58554,"Name":"Wioska barbarzyƄska","Points":445,"X":302,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195276Z"},{"ID":58555,"Name":"ONR 1","Points":5144,"X":657,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":9090040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195277Z"},{"ID":58556,"Name":"XDX","Points":3424,"X":616,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195282Z"},{"ID":58557,"Name":"#147#","Points":1048,"X":662,"Y":669,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195284Z"},{"ID":58558,"Name":"Wioska barbarzyƄska","Points":994,"X":563,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195286Z"},{"ID":58559,"Name":"0002","Points":2822,"X":556,"Y":396,"Continent":"K35","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195287Z"},{"ID":58560,"Name":"ƁOPALENICA","Points":199,"X":628,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":848922958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195289Z"},{"ID":58561,"Name":"Wioska barbarzyƄska","Points":1274,"X":274,"Y":584,"Continent":"K52","Bonus":0,"PlayerID":849097937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195291Z"},{"ID":58563,"Name":"Kapitol_23","Points":920,"X":508,"Y":730,"Continent":"K75","Bonus":5,"PlayerID":606407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195292Z"},{"ID":58564,"Name":"North K25","Points":1491,"X":568,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195294Z"},{"ID":58565,"Name":"Wioska barbarzyƄska","Points":230,"X":359,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195299Z"},{"ID":58566,"Name":"CSA forever","Points":2490,"X":593,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699448276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1953Z"},{"ID":58567,"Name":"29 barbarzyƄska","Points":2315,"X":270,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195302Z"},{"ID":58568,"Name":"Osada koczownikĂłw","Points":4494,"X":400,"Y":719,"Continent":"K74","Bonus":8,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195304Z"},{"ID":58569,"Name":"flagi","Points":2040,"X":365,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":603968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195305Z"},{"ID":58570,"Name":"0006","Points":317,"X":679,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":849101889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195307Z"},{"ID":58572,"Name":"021 Z","Points":1800,"X":735,"Y":495,"Continent":"K47","Bonus":6,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195309Z"},{"ID":58574,"Name":"0117","Points":953,"X":704,"Y":379,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195313Z"},{"ID":58576,"Name":"Wioska barbarzyƄska","Points":426,"X":274,"Y":574,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195314Z"},{"ID":58577,"Name":"Avanti!","Points":1246,"X":265,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195316Z"},{"ID":58578,"Name":"0x01","Points":1560,"X":576,"Y":656,"Continent":"K65","Bonus":0,"PlayerID":439825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195318Z"},{"ID":58579,"Name":"Wioska robsona","Points":3159,"X":294,"Y":616,"Continent":"K62","Bonus":0,"PlayerID":3896657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195319Z"},{"ID":58580,"Name":"New World","Points":3494,"X":431,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195321Z"},{"ID":58581,"Name":"Gwenville 015","Points":627,"X":453,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195323Z"},{"ID":58582,"Name":"Wioska AndrewwXYZ","Points":1310,"X":561,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":698897472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195325Z"},{"ID":58583,"Name":"Wioska barbarzyƄska","Points":633,"X":729,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195329Z"},{"ID":58584,"Name":"Wioska barbarzyƄska","Points":481,"X":302,"Y":627,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195331Z"},{"ID":58585,"Name":"021 | North","Points":1152,"X":375,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":699511295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195332Z"},{"ID":58586,"Name":"Wioska 114","Points":1771,"X":685,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195334Z"},{"ID":58587,"Name":"Wioska barbarzyƄska","Points":665,"X":378,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195336Z"},{"ID":58588,"Name":"Wioska barbarzyƄska","Points":135,"X":313,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195338Z"},{"ID":58589,"Name":"C.063","Points":940,"X":730,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":9188016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19534Z"},{"ID":58590,"Name":"Wioska pit71","Points":3436,"X":267,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":6395848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195344Z"},{"ID":58591,"Name":"Wioska barbarzyƄska","Points":372,"X":339,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195345Z"},{"ID":58592,"Name":"rt27 o","Points":1262,"X":497,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":698623373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195347Z"},{"ID":58593,"Name":"124","Points":3488,"X":730,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195348Z"},{"ID":58594,"Name":"028","Points":1189,"X":460,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19535Z"},{"ID":58595,"Name":"5. Seasmoke","Points":902,"X":276,"Y":581,"Continent":"K52","Bonus":0,"PlayerID":849089499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195352Z"},{"ID":58597,"Name":"..1","Points":5363,"X":690,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195354Z"},{"ID":58598,"Name":"Wioska Velsaniq","Points":26,"X":269,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":849083942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195355Z"},{"ID":58599,"Name":"FP055","Points":2812,"X":450,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195359Z"},{"ID":58600,"Name":"North 097","Points":3475,"X":491,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195361Z"},{"ID":58601,"Name":"Wioska blatio","Points":3307,"X":731,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":699518454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195363Z"},{"ID":58602,"Name":"????","Points":3501,"X":462,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195364Z"},{"ID":58603,"Name":"Zaplecze Barba 045","Points":1215,"X":353,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195366Z"},{"ID":58604,"Name":"Wioska barbarzyƄska","Points":3202,"X":531,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195368Z"},{"ID":58605,"Name":"Wioska barbarzyƄska","Points":1880,"X":702,"Y":391,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195369Z"},{"ID":58606,"Name":"Wioska barbarzyƄska","Points":372,"X":352,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195374Z"},{"ID":58607,"Name":"TOLCIA 6","Points":51,"X":644,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":699868739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195375Z"},{"ID":58608,"Name":"XDX","Points":3304,"X":606,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195377Z"},{"ID":58609,"Name":"North K25","Points":1266,"X":577,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195378Z"},{"ID":58610,"Name":"Wioska Unknown","Points":150,"X":514,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":9124682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19538Z"},{"ID":58611,"Name":"109 Wioska barbarzyƄska","Points":787,"X":587,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195381Z"},{"ID":58613,"Name":"KONFA TO MARKA, NARKA","Points":4353,"X":277,"Y":423,"Continent":"K42","Bonus":5,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195383Z"},{"ID":58614,"Name":"Wioska KiepLach","Points":26,"X":741,"Y":505,"Continent":"K57","Bonus":0,"PlayerID":699705910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195385Z"},{"ID":58615,"Name":"109. Rollayna","Points":2264,"X":694,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19539Z"},{"ID":58616,"Name":"#150#","Points":975,"X":644,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195392Z"},{"ID":58617,"Name":"Wioska barbarzyƄska","Points":1138,"X":561,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195393Z"},{"ID":58618,"Name":"North 102","Points":2373,"X":477,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195395Z"},{"ID":58619,"Name":"Zarezerwowana.","Points":5802,"X":723,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":8478874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195396Z"},{"ID":58621,"Name":"#136#","Points":1833,"X":665,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195398Z"},{"ID":58622,"Name":"Monkey","Points":908,"X":305,"Y":361,"Continent":"K33","Bonus":0,"PlayerID":699803939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1954Z"},{"ID":58623,"Name":"Wioska barbarzyƄska","Points":833,"X":739,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195404Z"},{"ID":58625,"Name":"=128= Wioska barbarzyƄska","Points":893,"X":727,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195406Z"},{"ID":58626,"Name":"K67 39","Points":298,"X":700,"Y":618,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195407Z"},{"ID":58627,"Name":"Wioska barbarzyƄska","Points":3237,"X":667,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195409Z"},{"ID":58628,"Name":"FP053","Points":2450,"X":438,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19541Z"},{"ID":58629,"Name":"Wioska barbarzyƄska","Points":723,"X":731,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195412Z"},{"ID":58630,"Name":"Jelenia GĂłra","Points":2776,"X":674,"Y":655,"Continent":"K66","Bonus":3,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195414Z"},{"ID":58631,"Name":"Wioska 20","Points":1245,"X":731,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195415Z"},{"ID":58632,"Name":"Wioska b 006","Points":516,"X":403,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195419Z"},{"ID":58633,"Name":"Osada koczownikĂłw","Points":5270,"X":728,"Y":557,"Continent":"K57","Bonus":1,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195421Z"},{"ID":58634,"Name":"Wioska Seylito","Points":1884,"X":342,"Y":332,"Continent":"K33","Bonus":0,"PlayerID":699283869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195422Z"},{"ID":58635,"Name":"33 barbarzyƄska A","Points":2591,"X":268,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195424Z"},{"ID":58636,"Name":"025. Osada koczownikĂłw","Points":4110,"X":690,"Y":354,"Continent":"K36","Bonus":4,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195426Z"},{"ID":58637,"Name":"Wioska Firau","Points":557,"X":381,"Y":295,"Continent":"K23","Bonus":0,"PlayerID":849105613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195428Z"},{"ID":58638,"Name":"Wioska barbarzyƄska","Points":242,"X":315,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195429Z"},{"ID":58639,"Name":"Wioska mirmyn","Points":1355,"X":276,"Y":436,"Continent":"K42","Bonus":0,"PlayerID":698190039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195433Z"},{"ID":58640,"Name":"Wioska barbarzyƄska","Points":2362,"X":377,"Y":707,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195434Z"},{"ID":58641,"Name":"Wioska GeraltV47","Points":351,"X":710,"Y":613,"Continent":"K67","Bonus":0,"PlayerID":699850967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195436Z"},{"ID":58642,"Name":"Wioska barbarzyƄska","Points":253,"X":267,"Y":502,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195438Z"},{"ID":58644,"Name":"C0325","Points":1872,"X":265,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195439Z"},{"ID":58645,"Name":"Bessa 018","Points":5897,"X":651,"Y":683,"Continent":"K66","Bonus":9,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195441Z"},{"ID":58647,"Name":"North 082","Points":3169,"X":514,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195443Z"},{"ID":58648,"Name":"Wioska barbarzyƄska","Points":2663,"X":727,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195444Z"},{"ID":58651,"Name":"Zadaleko","Points":1368,"X":281,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195448Z"},{"ID":58652,"Name":"Wioska WiktorTraktor","Points":4049,"X":736,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":849095430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19545Z"},{"ID":58653,"Name":"Wioska barbarzyƄska","Points":489,"X":729,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195452Z"},{"ID":58654,"Name":"K67 31","Points":1259,"X":717,"Y":604,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195453Z"},{"ID":58655,"Name":"sony911","Points":1204,"X":688,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195454Z"},{"ID":58656,"Name":"Wioska falat030","Points":59,"X":633,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":698542183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195455Z"},{"ID":58657,"Name":"#210 C","Points":1140,"X":507,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":9037756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195457Z"},{"ID":58658,"Name":"Wioska Lord lukis2012","Points":1718,"X":306,"Y":639,"Continent":"K63","Bonus":0,"PlayerID":698931404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195459Z"},{"ID":58659,"Name":"K67 19","Points":1801,"X":716,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195461Z"},{"ID":58660,"Name":"elo","Points":263,"X":434,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195462Z"},{"ID":58661,"Name":"Wioska barbarzyƄska","Points":214,"X":626,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195463Z"},{"ID":58662,"Name":"Wioska Paveulon","Points":1190,"X":734,"Y":463,"Continent":"K47","Bonus":0,"PlayerID":849075298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195465Z"},{"ID":58663,"Name":"PiekƂo to inni","Points":942,"X":656,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195466Z"},{"ID":58664,"Name":"Wioska KOMANDOR PIERWSZY","Points":492,"X":384,"Y":711,"Continent":"K73","Bonus":0,"PlayerID":796977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195468Z"},{"ID":58665,"Name":"83Krzysiek83","Points":869,"X":564,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":849072703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195469Z"},{"ID":58666,"Name":"#0262 colt9","Points":653,"X":433,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195472Z"},{"ID":58667,"Name":"212...NORTH","Points":2262,"X":420,"Y":276,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195474Z"},{"ID":58668,"Name":"Wioska Terada","Points":358,"X":525,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":849052488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195475Z"},{"ID":58669,"Name":"MojeDnoToWaszSzczyt","Points":4111,"X":479,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195477Z"},{"ID":58670,"Name":"A#044","Points":6553,"X":728,"Y":469,"Continent":"K47","Bonus":5,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195478Z"},{"ID":58671,"Name":"123.Stradi","Points":1753,"X":448,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19548Z"},{"ID":58672,"Name":"North 060","Points":4391,"X":512,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195481Z"},{"ID":58673,"Name":"Wioska Szujski Mastess Team","Points":429,"X":721,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":3487933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195484Z"},{"ID":58674,"Name":"KONFA TO MARKA, NARKA","Points":3597,"X":274,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195485Z"},{"ID":58675,"Name":"Wioska Antoni93","Points":41,"X":567,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":87825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195487Z"},{"ID":58676,"Name":"C0323","Points":2137,"X":267,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195488Z"},{"ID":58678,"Name":"Wioska barbarzyƄska","Points":869,"X":740,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19549Z"},{"ID":58681,"Name":"Za gĂłrami","Points":2901,"X":282,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195491Z"},{"ID":58682,"Name":"Sony 911","Points":515,"X":686,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195493Z"},{"ID":58683,"Name":"Wioska barbarzyƄska","Points":990,"X":692,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195494Z"},{"ID":58685,"Name":"Wioska barbarzyƄska","Points":287,"X":376,"Y":385,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195497Z"},{"ID":58686,"Name":"Wioska barbarzyƄska","Points":728,"X":392,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195499Z"},{"ID":58688,"Name":"????","Points":4284,"X":488,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1955Z"},{"ID":58689,"Name":"Wioska E W A","Points":66,"X":535,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":3743817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195502Z"},{"ID":58690,"Name":"K67 47","Points":181,"X":711,"Y":606,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195503Z"},{"ID":58691,"Name":"Wioska barbarzyƄska","Points":4935,"X":648,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195504Z"},{"ID":58692,"Name":"LordFallus","Points":188,"X":691,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":849112876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195505Z"},{"ID":58693,"Name":"Wioska barbarzyƄska","Points":1006,"X":715,"Y":582,"Continent":"K57","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195507Z"},{"ID":58694,"Name":"Sony 911","Points":1392,"X":684,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19551Z"},{"ID":58695,"Name":"budowa 02","Points":1515,"X":601,"Y":714,"Continent":"K76","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195511Z"},{"ID":58696,"Name":"Wioska barbarzyƄska","Points":1564,"X":681,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195512Z"},{"ID":58697,"Name":"Sony 911","Points":687,"X":670,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195513Z"},{"ID":58698,"Name":"45.","Points":445,"X":335,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195515Z"},{"ID":58699,"Name":"Wioska barbarzyƄska","Points":405,"X":731,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195516Z"},{"ID":58700,"Name":"029","Points":1365,"X":714,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195517Z"},{"ID":58702,"Name":"Wioska barbarzyƄska","Points":175,"X":370,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19552Z"},{"ID":58703,"Name":"Wioska Stadar","Points":26,"X":727,"Y":564,"Continent":"K57","Bonus":0,"PlayerID":698203538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195521Z"},{"ID":58704,"Name":"053","Points":440,"X":689,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195522Z"},{"ID":58705,"Name":"????","Points":575,"X":285,"Y":599,"Continent":"K52","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195523Z"},{"ID":58706,"Name":"Wioska Rafi43","Points":556,"X":682,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":849099141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195524Z"},{"ID":58707,"Name":"100 koniec ƛwiata","Points":864,"X":625,"Y":703,"Continent":"K76","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195525Z"},{"ID":58708,"Name":"adi judo honor","Points":26,"X":333,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":699163285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195527Z"},{"ID":58709,"Name":"239...North","Points":1320,"X":435,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195528Z"},{"ID":58710,"Name":"Wioska barbarzyƄska","Points":611,"X":408,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":699308637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195531Z"},{"ID":58711,"Name":"Wioska barbarzyƄska","Points":838,"X":554,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":699828442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195532Z"},{"ID":58712,"Name":"Wyspa 028","Points":695,"X":279,"Y":577,"Continent":"K52","Bonus":0,"PlayerID":225023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195533Z"},{"ID":58713,"Name":"057- Mroczna Osada","Points":1510,"X":702,"Y":378,"Continent":"K37","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195534Z"},{"ID":58714,"Name":"KONFA TO MARKA, NARKA","Points":2161,"X":271,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195535Z"},{"ID":58715,"Name":"Wioska Pirdek999","Points":2477,"X":732,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":849103156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195537Z"},{"ID":58716,"Name":"Wioska barbarzyƄska","Points":2577,"X":676,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195538Z"},{"ID":58717,"Name":"#048","Points":756,"X":559,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19554Z"},{"ID":58718,"Name":"Wioska barbarzyƄska","Points":272,"X":285,"Y":606,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195541Z"},{"ID":58719,"Name":"DĆŒejdĆŒej 8","Points":349,"X":690,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":849098326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195543Z"},{"ID":58720,"Name":"Wioska barbarzyƄska","Points":1317,"X":709,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195544Z"},{"ID":58721,"Name":"Wioska barbarzyƄska","Points":227,"X":534,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195545Z"},{"ID":58722,"Name":"PPF-37","Points":857,"X":580,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195546Z"},{"ID":58723,"Name":"LONGOBARDIA","Points":390,"X":644,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":699711996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195547Z"},{"ID":58724,"Name":"????","Points":3501,"X":460,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195549Z"},{"ID":58725,"Name":"Osada koczownikĂłw","Points":4270,"X":312,"Y":635,"Continent":"K63","Bonus":9,"PlayerID":8877156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195551Z"},{"ID":58726,"Name":"Wioska barbarzyƄska","Points":96,"X":342,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195552Z"},{"ID":58727,"Name":"222...NORTH","Points":1552,"X":408,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195553Z"},{"ID":58728,"Name":"033","Points":814,"X":463,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195555Z"},{"ID":58729,"Name":"059","Points":387,"X":688,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195556Z"},{"ID":58730,"Name":"310","Points":1520,"X":375,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195557Z"},{"ID":58731,"Name":"Wioska CorAngar96","Points":44,"X":318,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":849115256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195558Z"},{"ID":58732,"Name":"North 069","Points":4098,"X":533,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195561Z"},{"ID":58733,"Name":"Wioska Struma1","Points":212,"X":298,"Y":623,"Continent":"K62","Bonus":0,"PlayerID":849115994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195562Z"},{"ID":58734,"Name":"New World","Points":3633,"X":425,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195563Z"},{"ID":58735,"Name":"Wioska Afterparty","Points":1144,"X":285,"Y":581,"Continent":"K52","Bonus":0,"PlayerID":699598764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195564Z"},{"ID":58736,"Name":"Wioska barbarzyƄska","Points":4326,"X":639,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195566Z"},{"ID":58737,"Name":"Wioska M A S S A C R E","Points":26,"X":730,"Y":545,"Continent":"K57","Bonus":0,"PlayerID":848914661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195567Z"},{"ID":58738,"Name":"K67 18","Points":2054,"X":701,"Y":631,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195568Z"},{"ID":58739,"Name":"Wioska 011","Points":1850,"X":734,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195569Z"},{"ID":58740,"Name":"Na SsSskraju","Points":297,"X":273,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195572Z"},{"ID":58741,"Name":"Wioska daria519","Points":1530,"X":376,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":699831193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195573Z"},{"ID":58742,"Name":"Wioska barbarzyƄska","Points":3074,"X":725,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195574Z"},{"ID":58743,"Name":"Wioska dixon15pl","Points":149,"X":645,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":849086132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195575Z"},{"ID":58744,"Name":"Gniezno","Points":1337,"X":448,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":699278528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195577Z"},{"ID":58745,"Name":"Wioska Tohsaka Rin","Points":394,"X":648,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":9114562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195578Z"},{"ID":58746,"Name":"-13. Koniec ƛwiata","Points":1042,"X":316,"Y":359,"Continent":"K33","Bonus":6,"PlayerID":698345556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195579Z"},{"ID":58747,"Name":"Wioska SkyForce2","Points":2384,"X":364,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":849099138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195582Z"},{"ID":58748,"Name":"#003","Points":1804,"X":304,"Y":379,"Continent":"K33","Bonus":0,"PlayerID":849110743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195583Z"},{"ID":58749,"Name":"budowa 01","Points":2183,"X":600,"Y":719,"Continent":"K76","Bonus":1,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195584Z"},{"ID":58750,"Name":"KONFA TO MARKA, NARKA","Points":2035,"X":274,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195585Z"},{"ID":58752,"Name":"PóƂnocny Bagdad","Points":2023,"X":624,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195587Z"},{"ID":58753,"Name":"0000041Z","Points":1942,"X":279,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195588Z"},{"ID":58754,"Name":"041 KTW","Points":995,"X":725,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195589Z"},{"ID":58755,"Name":"Wioska barbarzyƄska","Points":811,"X":650,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19559Z"},{"ID":58756,"Name":"092. Wioska barbarzyƄska","Points":2563,"X":737,"Y":461,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195593Z"},{"ID":58757,"Name":"Wioska Mateuszek0330","Points":192,"X":267,"Y":465,"Continent":"K42","Bonus":0,"PlayerID":849079977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195594Z"},{"ID":58758,"Name":"New World","Points":3744,"X":418,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195595Z"},{"ID":58759,"Name":"zakręcona","Points":1887,"X":578,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":6658016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195597Z"},{"ID":58760,"Name":"032 KTW","Points":1657,"X":725,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195598Z"},{"ID":58761,"Name":"Wioska barbarzyƄska","Points":667,"X":731,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195599Z"},{"ID":58762,"Name":"Wioska barbarzyƄska","Points":2192,"X":728,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1956Z"},{"ID":58763,"Name":"BorĂłw","Points":4293,"X":272,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":849116221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195603Z"},{"ID":58764,"Name":"No.4","Points":406,"X":328,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":849106612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195604Z"},{"ID":58765,"Name":"001","Points":619,"X":690,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1609607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195605Z"},{"ID":58766,"Name":"Wioska katarzyna2012","Points":1733,"X":609,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":698931998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195606Z"},{"ID":58767,"Name":"FP050","Points":2538,"X":446,"Y":732,"Continent":"K74","Bonus":2,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195608Z"},{"ID":58768,"Name":"Poznan 004","Points":443,"X":408,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":1924718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195609Z"},{"ID":58769,"Name":"Osada koczownikĂłw","Points":2722,"X":534,"Y":731,"Continent":"K75","Bonus":1,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19561Z"},{"ID":58770,"Name":"New WorldA","Points":647,"X":274,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195611Z"},{"ID":58771,"Name":"elo","Points":621,"X":432,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195614Z"},{"ID":58773,"Name":"Wioska barbarzyƄska","Points":833,"X":551,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195615Z"},{"ID":58774,"Name":"Wioska barbarzyƄska","Points":648,"X":573,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195616Z"},{"ID":58775,"Name":"WB36","Points":922,"X":289,"Y":385,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195618Z"},{"ID":58776,"Name":"Osada koczownikĂłw","Points":781,"X":464,"Y":733,"Continent":"K74","Bonus":5,"PlayerID":849037407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195619Z"},{"ID":58778,"Name":"0111","Points":855,"X":710,"Y":386,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19562Z"},{"ID":58779,"Name":"Wioska barbarzyƄska","Points":1307,"X":411,"Y":531,"Continent":"K54","Bonus":0,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195621Z"},{"ID":58780,"Name":"Wioska barbarzyƄska","Points":539,"X":733,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195624Z"},{"ID":58781,"Name":"029","Points":1066,"X":473,"Y":740,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195625Z"},{"ID":58782,"Name":"New World","Points":3619,"X":406,"Y":711,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195626Z"},{"ID":58783,"Name":"Wioska barbarzyƄska","Points":1110,"X":430,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195627Z"},{"ID":58784,"Name":"051. Cukiereczek","Points":384,"X":451,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":848928624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195629Z"},{"ID":58785,"Name":"Wioska barbarzyƄska","Points":1205,"X":399,"Y":707,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19563Z"},{"ID":58786,"Name":"MojeDnoToWaszSzczyt","Points":4110,"X":478,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195631Z"},{"ID":58788,"Name":"New World","Points":2187,"X":422,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195632Z"},{"ID":58789,"Name":"Wioska barbarzyƄska","Points":999,"X":586,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195635Z"},{"ID":58790,"Name":"MojeDnoToWaszSzczyt","Points":4051,"X":473,"Y":261,"Continent":"K24","Bonus":5,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195636Z"},{"ID":58791,"Name":"Wioska barbarzyƄska","Points":240,"X":553,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195637Z"},{"ID":58792,"Name":"Wioska b 007","Points":873,"X":416,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195638Z"},{"ID":58793,"Name":"Wioska wabos","Points":128,"X":684,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":698485268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19564Z"},{"ID":58794,"Name":"Wioska 1","Points":1686,"X":652,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":849114445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195641Z"},{"ID":58795,"Name":"015","Points":3273,"X":397,"Y":285,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195642Z"},{"ID":58796,"Name":"bystra rzeka","Points":347,"X":292,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195645Z"},{"ID":58797,"Name":"Wioska barbarzyƄska","Points":3176,"X":648,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195646Z"},{"ID":58798,"Name":"Etitek 7","Points":1389,"X":730,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":848999448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195647Z"},{"ID":58799,"Name":"241","Points":1601,"X":374,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195649Z"},{"ID":58800,"Name":"PóƂnocny Bagdad","Points":2325,"X":614,"Y":291,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19565Z"},{"ID":58801,"Name":"WB38","Points":691,"X":294,"Y":385,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195651Z"},{"ID":58802,"Name":"Wioska barbarzyƄska","Points":1642,"X":664,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195653Z"},{"ID":58803,"Name":"XDX","Points":3331,"X":599,"Y":291,"Continent":"K25","Bonus":6,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195654Z"},{"ID":58804,"Name":"Wioska barbarzyƄska","Points":2096,"X":350,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195656Z"},{"ID":58805,"Name":"budowa 03","Points":1515,"X":600,"Y":713,"Continent":"K76","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195658Z"},{"ID":58806,"Name":"Wioska Loca","Points":54,"X":741,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":848927262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195659Z"},{"ID":58808,"Name":"32 barbarzyƄska","Points":2247,"X":266,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19566Z"},{"ID":58809,"Name":"026. Osada koczownikĂłw","Points":4073,"X":699,"Y":385,"Continent":"K36","Bonus":4,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195661Z"},{"ID":58810,"Name":"Wioska znek8","Points":1015,"X":670,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":7866994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195663Z"},{"ID":58811,"Name":"Wioska pierszak","Points":549,"X":367,"Y":693,"Continent":"K63","Bonus":0,"PlayerID":6379173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195664Z"},{"ID":58812,"Name":"Wioska Szymkowiak","Points":26,"X":370,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":849100089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195666Z"},{"ID":58813,"Name":"Wioska barbarzyƄska","Points":1809,"X":658,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195668Z"},{"ID":58814,"Name":"Wioska natofp","Points":101,"X":733,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":849116251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195669Z"},{"ID":58815,"Name":"WB28","Points":1484,"X":297,"Y":371,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195671Z"},{"ID":58817,"Name":"Wioska Bicoss","Points":1026,"X":712,"Y":400,"Continent":"K47","Bonus":0,"PlayerID":699609445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195672Z"},{"ID":58818,"Name":"hope","Points":2735,"X":439,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":849099965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195673Z"},{"ID":58819,"Name":"030","Points":978,"X":464,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195674Z"},{"ID":58820,"Name":"Wioska barbarzyƄska","Points":1978,"X":662,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195676Z"},{"ID":58821,"Name":"Wioska barbarzyƄska","Points":2023,"X":415,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195678Z"},{"ID":58822,"Name":"New WorldA","Points":714,"X":264,"Y":550,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19568Z"},{"ID":58823,"Name":"Wioska barbarzyƄska","Points":232,"X":726,"Y":446,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195681Z"},{"ID":58824,"Name":"Wioska barbarzyƄska","Points":1854,"X":342,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195682Z"},{"ID":58825,"Name":"Wioska barbarzyƄska","Points":32,"X":564,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195684Z"},{"ID":58826,"Name":"0121","Points":633,"X":707,"Y":376,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195685Z"},{"ID":58827,"Name":"Wioska prezes naczelny","Points":3494,"X":393,"Y":711,"Continent":"K73","Bonus":0,"PlayerID":698696420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195686Z"},{"ID":58828,"Name":"Wioska AjuZGora","Points":210,"X":680,"Y":648,"Continent":"K66","Bonus":0,"PlayerID":699696740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195687Z"},{"ID":58829,"Name":"047. Wioska barbarzyƄska","Points":122,"X":688,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19569Z"},{"ID":58830,"Name":"Wioska barbarzyƄska","Points":480,"X":372,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195691Z"},{"ID":58831,"Name":"Wioska rafaltz","Points":250,"X":282,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":849116416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195693Z"},{"ID":58832,"Name":"C0333","Points":1039,"X":261,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195694Z"},{"ID":58834,"Name":"Wioska barbarzyƄska","Points":1868,"X":350,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195695Z"},{"ID":58835,"Name":"Wioska barbarzyƄska","Points":1133,"X":607,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195696Z"},{"ID":58836,"Name":"0118","Points":563,"X":706,"Y":376,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195697Z"},{"ID":58837,"Name":"KONFA TO MARKA, NARKA","Points":1495,"X":284,"Y":403,"Continent":"K42","Bonus":7,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1957Z"},{"ID":58838,"Name":"Wioska LOƁKICK","Points":1879,"X":543,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":849004461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195701Z"},{"ID":58839,"Name":"Wioska barbarzyƄska","Points":275,"X":341,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195703Z"},{"ID":58840,"Name":"Wioska barbarzyƄska","Points":260,"X":586,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195704Z"},{"ID":58841,"Name":"MojeDnoToWaszSzczyt","Points":3530,"X":492,"Y":261,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195705Z"},{"ID":58842,"Name":"Wioska VillaSHL","Points":2327,"X":615,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":849116310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195706Z"},{"ID":58843,"Name":"Wioska b 1","Points":1240,"X":260,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":1164249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195708Z"},{"ID":58844,"Name":"135.Stradi","Points":603,"X":445,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195709Z"},{"ID":58845,"Name":"Gwenville 012","Points":1415,"X":454,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195711Z"},{"ID":58846,"Name":"New World","Points":585,"X":434,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195712Z"},{"ID":58847,"Name":"139.Stradi","Points":947,"X":398,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195714Z"},{"ID":58848,"Name":"Pan Kebab","Points":442,"X":268,"Y":512,"Continent":"K52","Bonus":5,"PlayerID":849105417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195715Z"},{"ID":58849,"Name":"Wioska izka1611","Points":239,"X":698,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":2232973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195716Z"},{"ID":58850,"Name":"*002*","Points":231,"X":275,"Y":432,"Continent":"K42","Bonus":0,"PlayerID":699791054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195717Z"},{"ID":58851,"Name":"Wioska barbarzyƄska","Points":293,"X":301,"Y":370,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195718Z"},{"ID":58852,"Name":"North 091","Points":2764,"X":487,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195721Z"},{"ID":58853,"Name":"Wioska barbarzyƄska","Points":537,"X":592,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195722Z"},{"ID":58854,"Name":"Wioska barbarzyƄska","Points":125,"X":309,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195724Z"},{"ID":58855,"Name":"Wioska barbarzyƄska","Points":1748,"X":736,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195725Z"},{"ID":58856,"Name":"K66 Drewno","Points":1968,"X":699,"Y":627,"Continent":"K66","Bonus":1,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195726Z"},{"ID":58858,"Name":"Wioska barbarzyƄska","Points":352,"X":297,"Y":630,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195727Z"},{"ID":58859,"Name":"Crazy Pig","Points":654,"X":725,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195728Z"},{"ID":58860,"Name":"Wioska barbarzyƄska","Points":2014,"X":704,"Y":391,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19573Z"},{"ID":58861,"Name":"#169#","Points":396,"X":642,"Y":689,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195732Z"},{"ID":58862,"Name":"028Kawik","Points":3994,"X":466,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195733Z"},{"ID":58863,"Name":"0134","Points":560,"X":702,"Y":376,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195734Z"},{"ID":58864,"Name":"samotna skala","Points":298,"X":288,"Y":393,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195736Z"},{"ID":58866,"Name":"044 KTW","Points":623,"X":733,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195737Z"},{"ID":58867,"Name":"Wioska barbarzyƄska","Points":503,"X":525,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":3027589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195738Z"},{"ID":58868,"Name":"jeszcze dalej","Points":1621,"X":731,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195739Z"},{"ID":58869,"Name":"040 - Albacete","Points":858,"X":727,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195742Z"},{"ID":58870,"Name":"Wioska Jozin321","Points":234,"X":589,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849116287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195743Z"},{"ID":58871,"Name":"Wioska barbarzyƄska","Points":387,"X":367,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195744Z"},{"ID":58872,"Name":"Wioska barbarzyƄska","Points":523,"X":629,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195745Z"},{"ID":58873,"Name":"Zasiedmiogorogrodzie 004","Points":1151,"X":691,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698278542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195746Z"},{"ID":58874,"Name":"Osada koczownikĂłw","Points":3573,"X":593,"Y":277,"Continent":"K25","Bonus":5,"PlayerID":849100406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195748Z"},{"ID":58875,"Name":"sh07","Points":718,"X":513,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":7064954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195749Z"},{"ID":58876,"Name":"Wioska barbarzyƄska","Points":264,"X":263,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19575Z"},{"ID":58877,"Name":"Wioska marcinmista","Points":2631,"X":372,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849112879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195753Z"},{"ID":58878,"Name":"K67 16","Points":2540,"X":703,"Y":617,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195754Z"},{"ID":58879,"Name":"Brzydgoszcz","Points":890,"X":625,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":848922958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195755Z"},{"ID":58880,"Name":"North 098","Points":2730,"X":482,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195756Z"},{"ID":58881,"Name":"[002] Czemu nie","Points":1924,"X":662,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":699477624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195758Z"},{"ID":58882,"Name":"Wioska barbarzyƄska","Points":284,"X":341,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195759Z"},{"ID":58883,"Name":"ble","Points":798,"X":632,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":848909464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19576Z"},{"ID":58884,"Name":"-002- Wioska barbarzyƄska","Points":1092,"X":684,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195762Z"},{"ID":58885,"Name":"WB44","Points":537,"X":300,"Y":366,"Continent":"K33","Bonus":2,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195764Z"},{"ID":58886,"Name":"o020","Points":3088,"X":614,"Y":705,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195765Z"},{"ID":58887,"Name":"PiekƂo to inni","Points":2556,"X":649,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195766Z"},{"ID":58888,"Name":"Wioska Butcher*","Points":32,"X":268,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":1153934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195767Z"},{"ID":58889,"Name":"WschĂłd 005","Points":529,"X":720,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195768Z"},{"ID":58890,"Name":"Wioska barbarzyƄska","Points":1426,"X":411,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":698231772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19577Z"},{"ID":58892,"Name":"Wioska barbarzyƄska","Points":936,"X":390,"Y":287,"Continent":"K23","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195771Z"},{"ID":58893,"Name":"Warszawka","Points":482,"X":699,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":699843389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195773Z"},{"ID":58894,"Name":"Wioska barbarzyƄska","Points":957,"X":740,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195775Z"},{"ID":58895,"Name":"Imperium","Points":2251,"X":695,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":849116419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195776Z"},{"ID":58896,"Name":"Wioska barbarzyƄska","Points":2800,"X":667,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195777Z"},{"ID":58897,"Name":"Szlachcic","Points":6266,"X":638,"Y":542,"Continent":"K56","Bonus":0,"PlayerID":930720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195778Z"},{"ID":58898,"Name":"Wioska barbarzyƄska","Points":730,"X":732,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19578Z"},{"ID":58899,"Name":"018","Points":1569,"X":394,"Y":292,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195781Z"},{"ID":58900,"Name":"Elo Elo 12","Points":1282,"X":281,"Y":583,"Continent":"K52","Bonus":2,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195783Z"},{"ID":58901,"Name":"Wioska xxxbestiaxxx","Points":97,"X":472,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":6545206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195785Z"},{"ID":58902,"Name":"PóƂnocny Bagdad","Points":934,"X":637,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195786Z"},{"ID":58903,"Name":"Wioska Swiechu","Points":102,"X":574,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":698845107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195787Z"},{"ID":58905,"Name":"Wioska barbarzyƄska","Points":416,"X":517,"Y":739,"Continent":"K75","Bonus":0,"PlayerID":849066849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195788Z"},{"ID":58906,"Name":"Wioska dynamit666","Points":2421,"X":527,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":8552893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19579Z"},{"ID":58907,"Name":"A#049","Points":5090,"X":732,"Y":535,"Continent":"K57","Bonus":1,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195791Z"},{"ID":58909,"Name":"Wioska barbarzyƄska","Points":284,"X":521,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195792Z"},{"ID":58910,"Name":"Wioska barbarzyƄska","Points":336,"X":348,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195795Z"},{"ID":58911,"Name":"jagger23","Points":2887,"X":519,"Y":741,"Continent":"K75","Bonus":0,"PlayerID":2646397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195796Z"},{"ID":58912,"Name":"PóƂnocny Bagdad","Points":504,"X":597,"Y":289,"Continent":"K25","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195797Z"},{"ID":58913,"Name":"Wioska HAPPYxxx","Points":61,"X":350,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":6643002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195798Z"},{"ID":58914,"Name":"Wioska barbarzyƄska","Points":1342,"X":720,"Y":580,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195799Z"},{"ID":58915,"Name":"Zaplecze Barba 051","Points":763,"X":344,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195801Z"},{"ID":58916,"Name":"R 053","Points":1548,"X":490,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195802Z"},{"ID":58917,"Name":"NIe Bij Chce tylko grac","Points":3883,"X":676,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":9312528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195804Z"},{"ID":58918,"Name":"New WorldA","Points":697,"X":267,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195806Z"},{"ID":58919,"Name":"Wioska Makoo","Points":26,"X":546,"Y":525,"Continent":"K55","Bonus":0,"PlayerID":848913030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195807Z"},{"ID":58920,"Name":"Wioska barbarzyƄska","Points":315,"X":296,"Y":390,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195808Z"},{"ID":58921,"Name":"Sony 911","Points":614,"X":682,"Y":649,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195809Z"},{"ID":58922,"Name":"122.Stradi","Points":1862,"X":449,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19581Z"},{"ID":58923,"Name":"Wioska barbarzyƄska","Points":1102,"X":703,"Y":379,"Continent":"K37","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195812Z"},{"ID":58924,"Name":"Wioska barbarzyƄska","Points":667,"X":630,"Y":691,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195813Z"},{"ID":58925,"Name":"Wioska Gimi7777","Points":930,"X":349,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":849091972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195815Z"},{"ID":58926,"Name":"t028","Points":251,"X":669,"Y":343,"Continent":"K36","Bonus":0,"PlayerID":2262902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195817Z"},{"ID":58927,"Name":"DziaƂka","Points":346,"X":322,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":849098557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195818Z"},{"ID":58928,"Name":"KONFA TO MARKA, NARKA","Points":4026,"X":274,"Y":447,"Continent":"K42","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195819Z"},{"ID":58929,"Name":"Wioska blady14","Points":1881,"X":642,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":849106210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195821Z"},{"ID":58930,"Name":"Wioska barbarzyƄska","Points":64,"X":285,"Y":597,"Continent":"K52","Bonus":0,"PlayerID":698663855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195822Z"},{"ID":58931,"Name":"Wioska barbarzyƄska","Points":1010,"X":677,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195823Z"},{"ID":58932,"Name":"Wioska 7homasbaN1","Points":277,"X":322,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":699600855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195826Z"},{"ID":58933,"Name":"052","Points":221,"X":733,"Y":478,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195827Z"},{"ID":58934,"Name":"Wioska barbarzyƄska","Points":272,"X":312,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195828Z"},{"ID":58935,"Name":"040. 5spajk5","Points":484,"X":681,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195829Z"},{"ID":58936,"Name":"221 |","Points":479,"X":725,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19583Z"},{"ID":58937,"Name":"Wioska vodka442","Points":301,"X":503,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":8708728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195832Z"},{"ID":58938,"Name":"Cisza","Points":581,"X":267,"Y":563,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195833Z"},{"ID":58939,"Name":"Wioska Don Kalion","Points":26,"X":544,"Y":516,"Continent":"K55","Bonus":0,"PlayerID":699552859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195834Z"},{"ID":58940,"Name":"Wioska Gilutyna","Points":33,"X":736,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":849108933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195837Z"},{"ID":58941,"Name":"KONFA TO MARKA, NARKA","Points":4083,"X":270,"Y":440,"Continent":"K42","Bonus":2,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195838Z"},{"ID":58943,"Name":"Wioska barbarzyƄska","Points":2865,"X":543,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195839Z"},{"ID":58944,"Name":"PPF-10","Points":2749,"X":510,"Y":263,"Continent":"K25","Bonus":3,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195841Z"},{"ID":58945,"Name":"Wioska Ulanyksiadz","Points":354,"X":696,"Y":633,"Continent":"K66","Bonus":0,"PlayerID":699673236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195842Z"},{"ID":58946,"Name":"Wioska barbarzyƄska","Points":1727,"X":714,"Y":391,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195843Z"},{"ID":58947,"Name":"Wioska barbarzyƄska","Points":430,"X":727,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195844Z"},{"ID":58948,"Name":"Wioska barbarzyƄska","Points":159,"X":285,"Y":399,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195847Z"},{"ID":58949,"Name":"044","Points":850,"X":701,"Y":371,"Continent":"K37","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195848Z"},{"ID":58950,"Name":"Wioska PijęMurzyniankę","Points":69,"X":392,"Y":714,"Continent":"K73","Bonus":0,"PlayerID":9302748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195849Z"},{"ID":58951,"Name":"[0278]","Points":3431,"X":263,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19585Z"},{"ID":58952,"Name":"Wioska I","Points":3251,"X":336,"Y":616,"Continent":"K63","Bonus":0,"PlayerID":849095948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195852Z"},{"ID":58953,"Name":"C0349","Points":168,"X":267,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195853Z"},{"ID":58954,"Name":"Wioska barbarzyƄska","Points":198,"X":714,"Y":409,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195854Z"},{"ID":58955,"Name":"Sony 911","Points":3855,"X":686,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195855Z"},{"ID":58956,"Name":"Wioska barbarzyƄska","Points":142,"X":458,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":849090573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195858Z"},{"ID":58957,"Name":"04# Wioska barbarzyƄska","Points":528,"X":681,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":8444698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195859Z"},{"ID":58958,"Name":"097. Wioska barbarzyƄska","Points":2307,"X":737,"Y":454,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19586Z"},{"ID":58959,"Name":"Wioska barbarzyƄska","Points":4735,"X":649,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195861Z"},{"ID":58960,"Name":"Wioska szewa432","Points":164,"X":740,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":849090890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195863Z"},{"ID":58961,"Name":"Wioska barbarzyƄska","Points":255,"X":360,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195864Z"},{"ID":58962,"Name":"105. Wioska barbarzyƄska","Points":351,"X":727,"Y":455,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195865Z"},{"ID":58963,"Name":"Wioska barbarzyƄska","Points":489,"X":452,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195866Z"},{"ID":58964,"Name":"Wioska barbarzyƄska","Points":152,"X":313,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195869Z"},{"ID":58965,"Name":"Wioska barbarzyƄska","Points":3031,"X":719,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19587Z"},{"ID":58966,"Name":"NOT?","Points":507,"X":303,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195871Z"},{"ID":58967,"Name":"Wioska barbarzyƄska","Points":1898,"X":652,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195873Z"},{"ID":58968,"Name":"Osada koczownikĂłw","Points":2296,"X":371,"Y":698,"Continent":"K63","Bonus":4,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195874Z"},{"ID":58969,"Name":"WB32","Points":844,"X":295,"Y":379,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195875Z"},{"ID":58970,"Name":"005","Points":393,"X":458,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":602408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195876Z"},{"ID":58971,"Name":"New World","Points":2827,"X":420,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195879Z"},{"ID":58972,"Name":"Wioska barbarzyƄska","Points":97,"X":689,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19588Z"},{"ID":58973,"Name":"Szlachcic","Points":688,"X":544,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195882Z"},{"ID":58974,"Name":"[003] Dobra nie","Points":1338,"X":661,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699477624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195883Z"},{"ID":58976,"Name":"[843] Odludzie","Points":2408,"X":725,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195884Z"},{"ID":58977,"Name":"Wioska Kerakein","Points":277,"X":683,"Y":640,"Continent":"K66","Bonus":0,"PlayerID":849116357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195885Z"},{"ID":58978,"Name":"Wioska barbarzyƄska","Points":664,"X":385,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195887Z"},{"ID":58979,"Name":"056 - Budowanko!","Points":2299,"X":483,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195888Z"},{"ID":58980,"Name":"Wioska barbarzyƄska","Points":876,"X":722,"Y":573,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19589Z"},{"ID":58981,"Name":"Wioska Harpun98vos","Points":512,"X":626,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":848942734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195892Z"},{"ID":58982,"Name":"Wioska Marcinho10","Points":2040,"X":545,"Y":514,"Continent":"K55","Bonus":0,"PlayerID":699844727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195893Z"},{"ID":58983,"Name":"31 barbarzyƄska","Points":2516,"X":268,"Y":447,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195894Z"},{"ID":58984,"Name":"Wioska pele z zar","Points":198,"X":677,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":724621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195895Z"},{"ID":58986,"Name":"Wioska barbarzyƄska","Points":127,"X":269,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195897Z"},{"ID":58987,"Name":"Wioska barbarzyƄska","Points":1450,"X":701,"Y":383,"Continent":"K37","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195898Z"},{"ID":58988,"Name":"Wioska jareczek951","Points":1034,"X":655,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":849114683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1959Z"},{"ID":58989,"Name":"Wioska barbarzyƄska","Points":673,"X":727,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195901Z"},{"ID":58990,"Name":"Wioska miki021","Points":793,"X":598,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":699785141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195903Z"},{"ID":58991,"Name":"Wioska barbarzyƄska","Points":1081,"X":621,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":849037469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195904Z"},{"ID":58992,"Name":"PóƂnocny Bagdad","Points":1909,"X":626,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195905Z"},{"ID":58993,"Name":"KONFA TO MARKA, NARKA","Points":2009,"X":277,"Y":414,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195907Z"},{"ID":58994,"Name":"Wioska Perszing125","Points":393,"X":413,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":848922118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195908Z"},{"ID":58995,"Name":"Wioska barbarzyƄska","Points":3493,"X":359,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195909Z"},{"ID":58996,"Name":"Wioska barbarzyƄska","Points":120,"X":329,"Y":656,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195912Z"},{"ID":58997,"Name":"Wioska barbarzyƄska","Points":2328,"X":545,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195913Z"},{"ID":58998,"Name":"Wioska Hejhej","Points":308,"X":666,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":699751062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195914Z"},{"ID":58999,"Name":"PIROTECHNIK 011","Points":441,"X":338,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195915Z"},{"ID":59000,"Name":"Wioska bunu4","Points":1411,"X":305,"Y":368,"Continent":"K33","Bonus":0,"PlayerID":849050087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195916Z"},{"ID":59001,"Name":"KREV 006","Points":248,"X":723,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195917Z"},{"ID":59002,"Name":"Maryna 5","Points":233,"X":268,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":699650981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195919Z"},{"ID":59003,"Name":"34 barbarzyƄska B","Points":3065,"X":266,"Y":449,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195921Z"},{"ID":59004,"Name":"Wioska barbarzyƄska","Points":320,"X":659,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195922Z"},{"ID":59005,"Name":"Wioska barbarzyƄska","Points":3519,"X":355,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195924Z"},{"ID":59006,"Name":"North 104","Points":2640,"X":481,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195925Z"},{"ID":59007,"Name":"Wioska barbarzyƄska","Points":213,"X":289,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195926Z"},{"ID":59008,"Name":"Wioska Raff Tierro","Points":260,"X":350,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":848932115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195927Z"},{"ID":59009,"Name":"Wioska barbarzyƄska","Points":2681,"X":606,"Y":712,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195929Z"},{"ID":59010,"Name":"Wioska miro75","Points":32,"X":641,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":699825089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19593Z"},{"ID":59011,"Name":"Odyseja","Points":429,"X":284,"Y":395,"Continent":"K32","Bonus":2,"PlayerID":849076810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195932Z"},{"ID":59012,"Name":"Wioska barbarzyƄska","Points":495,"X":374,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195934Z"},{"ID":59013,"Name":"WB25","Points":1389,"X":294,"Y":374,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195935Z"},{"ID":59014,"Name":"C0329","Points":1747,"X":263,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195936Z"},{"ID":59015,"Name":"Wioska barbarzyƄska","Points":766,"X":670,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":7346797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195938Z"},{"ID":59016,"Name":"004","Points":1069,"X":712,"Y":399,"Continent":"K37","Bonus":0,"PlayerID":699832463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195939Z"},{"ID":59017,"Name":"Wioska SzymonMF6465","Points":7901,"X":521,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":849114579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19594Z"},{"ID":59018,"Name":"Wioska czorny-81","Points":498,"X":415,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":1260088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195943Z"},{"ID":59019,"Name":"[841] Odludzie","Points":3492,"X":725,"Y":432,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195944Z"},{"ID":59020,"Name":"Wioska Power76","Points":51,"X":383,"Y":381,"Continent":"K33","Bonus":0,"PlayerID":849096454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195946Z"},{"ID":59021,"Name":"Wioska Kacperr12","Points":47,"X":668,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":849112264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195947Z"},{"ID":59022,"Name":"036 - Budowanko!","Points":5053,"X":482,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195948Z"},{"ID":59023,"Name":"Wioska YenSu","Points":1809,"X":689,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":698363063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19595Z"},{"ID":59024,"Name":"Wioska barbarzyƄska","Points":971,"X":681,"Y":342,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195951Z"},{"ID":59025,"Name":"WB06","Points":4439,"X":297,"Y":379,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195952Z"},{"ID":59026,"Name":"252...NORTH","Points":840,"X":433,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195955Z"},{"ID":59027,"Name":"#11","Points":360,"X":342,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":2800032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195956Z"},{"ID":59028,"Name":"JAK","Points":1999,"X":302,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":7083877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195957Z"},{"ID":59029,"Name":"FP058","Points":1911,"X":447,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195959Z"},{"ID":59030,"Name":"Zabardzo","Points":966,"X":284,"Y":412,"Continent":"K42","Bonus":0,"PlayerID":699821629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19596Z"},{"ID":59031,"Name":"Sony 911","Points":1996,"X":683,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195961Z"},{"ID":59032,"Name":"Wioska barbarzyƄska","Points":130,"X":346,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195962Z"},{"ID":59033,"Name":"025 - Budowanko!","Points":4669,"X":505,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195965Z"},{"ID":59034,"Name":"Wioska barbarzyƄska","Points":227,"X":732,"Y":537,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195966Z"},{"ID":59036,"Name":"Wioska barbarzyƄska","Points":2419,"X":716,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195967Z"},{"ID":59037,"Name":"Wioska OneGiet","Points":173,"X":429,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":849108600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195969Z"},{"ID":59038,"Name":"Szlachcic","Points":3048,"X":707,"Y":610,"Continent":"K67","Bonus":0,"PlayerID":698867446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19597Z"},{"ID":59039,"Name":"Wioska 1kip7","Points":917,"X":674,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":7346797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195971Z"},{"ID":59040,"Name":"Cisza","Points":211,"X":282,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":698769107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195972Z"},{"ID":59041,"Name":"Wioska barbarzyƄska","Points":1792,"X":591,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849100406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195973Z"},{"ID":59042,"Name":"Wioska barbarzyƄska","Points":564,"X":710,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195976Z"},{"ID":59043,"Name":"#049","Points":877,"X":558,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195978Z"},{"ID":59044,"Name":"Sony 911","Points":198,"X":718,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195979Z"},{"ID":59045,"Name":"CastAway !025","Points":3856,"X":711,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19598Z"},{"ID":59046,"Name":"1.Hanolulu","Points":2034,"X":389,"Y":291,"Continent":"K23","Bonus":0,"PlayerID":849117143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195981Z"},{"ID":59048,"Name":"Wioska barbarzyƄska","Points":1065,"X":674,"Y":337,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59048","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195983Z"},{"ID":59049,"Name":"PIROTECHNIK 014","Points":283,"X":336,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":849101083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195984Z"},{"ID":59051,"Name":"Wioska Olek96","Points":1858,"X":290,"Y":387,"Continent":"K32","Bonus":0,"PlayerID":849113480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195987Z"},{"ID":59052,"Name":"Wioska barbarzyƄska","Points":3417,"X":363,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195988Z"},{"ID":59053,"Name":"Wioska barbarzyƄska","Points":152,"X":316,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195989Z"},{"ID":59054,"Name":"121.Stradi","Points":2059,"X":449,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19599Z"},{"ID":59055,"Name":"Rheinmetall","Points":308,"X":732,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":849086925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195991Z"},{"ID":59056,"Name":"Wioska barbarzyƄska","Points":989,"X":659,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195993Z"},{"ID":59058,"Name":"Wioska botlike","Points":26,"X":335,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":7970506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195994Z"},{"ID":59059,"Name":"KONFA TO MARKA, NARKA","Points":4843,"X":269,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195995Z"},{"ID":59060,"Name":"Tupot maƂych nĂłĆŒek","Points":117,"X":261,"Y":484,"Continent":"K42","Bonus":0,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195998Z"},{"ID":59061,"Name":"Wioska barbarzyƄska","Points":251,"X":589,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":698350371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.195999Z"},{"ID":59062,"Name":"Wioska Sindbad00","Points":592,"X":414,"Y":325,"Continent":"K34","Bonus":0,"PlayerID":546458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196Z"},{"ID":59063,"Name":"Wioska barbarzyƄska","Points":841,"X":602,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196001Z"},{"ID":59064,"Name":"Wioska barbarzyƄska","Points":2518,"X":352,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":3698627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196002Z"},{"ID":59065,"Name":"NOT?","Points":143,"X":309,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196004Z"},{"ID":59066,"Name":"Wioska barbarzyƄska","Points":210,"X":693,"Y":643,"Continent":"K66","Bonus":0,"PlayerID":698786826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196005Z"},{"ID":59067,"Name":"Wioska barbarzyƄska","Points":820,"X":604,"Y":714,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59067","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196008Z"},{"ID":59068,"Name":"Wioska barbarzyƄska","Points":65,"X":589,"Y":455,"Continent":"K45","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196009Z"},{"ID":59069,"Name":"Wioska barbarzyƄska","Points":72,"X":343,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19601Z"},{"ID":59070,"Name":"KONFA TO MARKA, NARKA","Points":5011,"X":277,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196012Z"},{"ID":59071,"Name":"New WorldA","Points":652,"X":261,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196013Z"},{"ID":59072,"Name":"Wioska barbarzyƄska","Points":3277,"X":724,"Y":436,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196014Z"},{"ID":59073,"Name":"[0275]","Points":2902,"X":258,"Y":502,"Continent":"K52","Bonus":7,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196015Z"},{"ID":59074,"Name":"Wioska 010","Points":1759,"X":741,"Y":511,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196017Z"},{"ID":59075,"Name":"#166#","Points":338,"X":652,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19602Z"},{"ID":59076,"Name":"072KP","Points":384,"X":467,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196021Z"},{"ID":59077,"Name":"B021","Points":2578,"X":535,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196022Z"},{"ID":59078,"Name":"Wioska b 008","Points":455,"X":417,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196023Z"},{"ID":59079,"Name":"C0336","Points":902,"X":266,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196024Z"},{"ID":59080,"Name":"KONFA TO MARKA, NARKA","Points":3424,"X":273,"Y":441,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59080","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196026Z"},{"ID":59081,"Name":"Wioska barbarzyƄska","Points":116,"X":345,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196027Z"},{"ID":59082,"Name":"#161#","Points":653,"X":661,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19603Z"},{"ID":59083,"Name":"Wioska barbarzyƄska","Points":709,"X":727,"Y":453,"Continent":"K47","Bonus":0,"PlayerID":699347951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196031Z"},{"ID":59085,"Name":"Wioska dezert8","Points":1442,"X":336,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":2411854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196033Z"},{"ID":59086,"Name":"MojeDnoToWaszSzczyt","Points":2085,"X":483,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196034Z"},{"ID":59087,"Name":"Wioska torys666","Points":3501,"X":566,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":7210775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196036Z"},{"ID":59088,"Name":"096. Wioska barbarzyƄska","Points":2401,"X":733,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196037Z"},{"ID":59089,"Name":"Wioska morfeusz37","Points":364,"X":505,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":849097357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196038Z"},{"ID":59090,"Name":"Wioska barbarzyƄska","Points":281,"X":316,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196039Z"},{"ID":59091,"Name":"Wioska barbarzyƄska","Points":320,"X":589,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196042Z"},{"ID":59092,"Name":"Wioska barbarzyƄska","Points":3464,"X":367,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196044Z"},{"ID":59093,"Name":"Wioska Matz32","Points":506,"X":586,"Y":625,"Continent":"K65","Bonus":0,"PlayerID":848883542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196045Z"},{"ID":59094,"Name":"Wioska barbarzyƄska","Points":521,"X":582,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196046Z"},{"ID":59095,"Name":"Wioska Deyna10","Points":194,"X":591,"Y":285,"Continent":"K25","Bonus":0,"PlayerID":3518623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196047Z"},{"ID":59096,"Name":"Wioska barbarzyƄska","Points":1087,"X":349,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196049Z"},{"ID":59097,"Name":"Wioska barbarzyƄska","Points":415,"X":301,"Y":632,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19605Z"},{"ID":59098,"Name":"Wioska barbarzyƄska","Points":240,"X":316,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196051Z"},{"ID":59099,"Name":"budowa 05","Points":869,"X":558,"Y":732,"Continent":"K75","Bonus":5,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196054Z"},{"ID":59100,"Name":"040Kret Orkuf","Points":1816,"X":506,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196055Z"},{"ID":59101,"Name":"Wioska barbarzyƄska","Points":870,"X":391,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196056Z"},{"ID":59102,"Name":"????","Points":4018,"X":494,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196057Z"},{"ID":59103,"Name":"107. Puszcza Bukowa","Points":4154,"X":695,"Y":627,"Continent":"K66","Bonus":1,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196059Z"},{"ID":59104,"Name":"Wioska barbarzyƄska","Points":106,"X":335,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19606Z"},{"ID":59105,"Name":"0131","Points":355,"X":731,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196061Z"},{"ID":59106,"Name":"PPF-20","Points":1312,"X":504,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196064Z"},{"ID":59107,"Name":"KWB8","Points":585,"X":528,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196065Z"},{"ID":59108,"Name":"026 - Budowanko!","Points":4669,"X":474,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196067Z"},{"ID":59109,"Name":"ALAMO","Points":989,"X":607,"Y":716,"Continent":"K76","Bonus":0,"PlayerID":699025262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196068Z"},{"ID":59110,"Name":"Wioska Mateusz400","Points":573,"X":542,"Y":264,"Continent":"K25","Bonus":0,"PlayerID":849117427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196069Z"},{"ID":59111,"Name":"Wioska barbarzyƄska","Points":251,"X":262,"Y":503,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19607Z"},{"ID":59112,"Name":"Wioska Monsio","Points":194,"X":452,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":699813587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196071Z"},{"ID":59113,"Name":"ONR 2","Points":1369,"X":656,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":9090040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196073Z"},{"ID":59114,"Name":"Wioska HENRYK321","Points":367,"X":615,"Y":288,"Continent":"K26","Bonus":0,"PlayerID":5989306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196075Z"},{"ID":59115,"Name":"Bimber123","Points":776,"X":272,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":849117454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196077Z"},{"ID":59116,"Name":"Wioska barbarzyƄska","Points":755,"X":630,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196078Z"},{"ID":59117,"Name":"PPF-55","Points":176,"X":554,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196079Z"},{"ID":59118,"Name":"O152","Points":1246,"X":307,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19608Z"},{"ID":59119,"Name":"Wioska aitseb","Points":3337,"X":296,"Y":372,"Continent":"K32","Bonus":0,"PlayerID":699870267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59119","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196082Z"},{"ID":59120,"Name":"Wioska nsplus","Points":191,"X":262,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":6557824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196083Z"},{"ID":59121,"Name":"Wioska Piwna","Points":1952,"X":316,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":849107104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196086Z"},{"ID":59122,"Name":"Wioska barbarzyƄska","Points":564,"X":722,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196087Z"},{"ID":59123,"Name":"Wioska noidea","Points":458,"X":278,"Y":573,"Continent":"K52","Bonus":0,"PlayerID":699011415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196088Z"},{"ID":59124,"Name":"Wioska barbarzyƄska","Points":2418,"X":717,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196089Z"},{"ID":59125,"Name":"shadow #2","Points":1352,"X":259,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":1034117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196091Z"},{"ID":59126,"Name":"KONFA TO MARKA, NARKA","Points":1996,"X":271,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196092Z"},{"ID":59127,"Name":"043 - Budowanko!","Points":4892,"X":518,"Y":730,"Continent":"K75","Bonus":1,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196093Z"},{"ID":59128,"Name":"Wioska barbarzyƄska","Points":73,"X":312,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196094Z"},{"ID":59129,"Name":"Wioska barbarzyƄska","Points":437,"X":677,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196097Z"},{"ID":59130,"Name":"110 Wioska barbarzyƄska","Points":685,"X":586,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59130","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196098Z"},{"ID":59131,"Name":"Wioska barbarzyƄska","Points":48,"X":698,"Y":376,"Continent":"K36","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196099Z"},{"ID":59132,"Name":"Wioska barbarzyƄska","Points":329,"X":319,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59132","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196101Z"},{"ID":59133,"Name":"Wioska barbarzyƄska","Points":161,"X":315,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196102Z"},{"ID":59134,"Name":"Wioska barbarzyƄska","Points":227,"X":374,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196103Z"},{"ID":59135,"Name":"Wioska barbarzyƄska","Points":405,"X":374,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196105Z"},{"ID":59136,"Name":"27 barbarzyƄska","Points":2115,"X":267,"Y":435,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196107Z"},{"ID":59137,"Name":"A#050","Points":4780,"X":729,"Y":454,"Continent":"K47","Bonus":1,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196109Z"},{"ID":59138,"Name":"PóƂnocny Bagdad","Points":1123,"X":621,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59138","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19611Z"},{"ID":59139,"Name":"KONFA TO MARKA, NARKA","Points":1294,"X":286,"Y":404,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196111Z"},{"ID":59140,"Name":"Wioska Biegacz1","Points":171,"X":377,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":848978052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196112Z"},{"ID":59141,"Name":"0000045Z","Points":456,"X":266,"Y":558,"Continent":"K52","Bonus":0,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196114Z"},{"ID":59142,"Name":"Wioska Marecki2222","Points":50,"X":733,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":699843936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196115Z"},{"ID":59144,"Name":"Sony 911","Points":1084,"X":678,"Y":664,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196116Z"},{"ID":59145,"Name":"Wioska barbarzyƄska","Points":140,"X":359,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196119Z"},{"ID":59146,"Name":"[208]","Points":1298,"X":721,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19612Z"},{"ID":59147,"Name":"068 - Budowanko!","Points":944,"X":509,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196121Z"},{"ID":59148,"Name":"Wioska mruva","Points":347,"X":653,"Y":629,"Continent":"K66","Bonus":0,"PlayerID":2245160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196123Z"},{"ID":59149,"Name":"KONFA TO MARKA, NARKA","Points":3729,"X":273,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196124Z"},{"ID":59150,"Name":"PP POLSKIE POLA 81","Points":1309,"X":372,"Y":296,"Continent":"K23","Bonus":0,"PlayerID":849107571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196125Z"},{"ID":59151,"Name":"C0334","Points":1388,"X":265,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196126Z"},{"ID":59152,"Name":"C0337","Points":729,"X":265,"Y":526,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196129Z"},{"ID":59153,"Name":"Nowa","Points":1207,"X":638,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19613Z"},{"ID":59155,"Name":"Wioska Szczerbatka","Points":1468,"X":329,"Y":338,"Continent":"K33","Bonus":0,"PlayerID":848939203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196131Z"},{"ID":59156,"Name":"NOT?","Points":2690,"X":308,"Y":360,"Continent":"K33","Bonus":0,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196133Z"},{"ID":59157,"Name":"Wioska barbarzyƄska","Points":497,"X":369,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196134Z"},{"ID":59158,"Name":"0120","Points":786,"X":703,"Y":383,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59158","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196135Z"},{"ID":59159,"Name":"227 |","Points":151,"X":722,"Y":426,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196137Z"},{"ID":59160,"Name":"001","Points":692,"X":654,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":8006209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196138Z"},{"ID":59161,"Name":"Wioska barbarzyƄska","Points":1376,"X":394,"Y":715,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19614Z"},{"ID":59162,"Name":"Wioska zuzel","Points":1553,"X":382,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":335509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196142Z"},{"ID":59163,"Name":"Wioska a5","Points":1335,"X":423,"Y":281,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196143Z"},{"ID":59164,"Name":"ziutek","Points":1308,"X":453,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":849117622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196144Z"},{"ID":59165,"Name":"[0274]","Points":3491,"X":267,"Y":493,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196145Z"},{"ID":59166,"Name":"038","Points":3738,"X":701,"Y":374,"Continent":"K37","Bonus":4,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196147Z"},{"ID":59168,"Name":"Wioska barbarzyƄska","Points":1960,"X":616,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196148Z"},{"ID":59169,"Name":"Wioska barbarzyƄska","Points":104,"X":735,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19615Z"},{"ID":59170,"Name":"#0253 barbarzyƄska","Points":815,"X":442,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196152Z"},{"ID":59171,"Name":"Ks Konfederacja","Points":2853,"X":691,"Y":362,"Continent":"K36","Bonus":2,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196153Z"},{"ID":59172,"Name":"242","Points":488,"X":377,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196154Z"},{"ID":59173,"Name":"PóƂnocny Bagdad","Points":1204,"X":598,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196156Z"},{"ID":59174,"Name":"K67 34","Points":718,"X":714,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196157Z"},{"ID":59175,"Name":"100","Points":1339,"X":736,"Y":533,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196158Z"},{"ID":59176,"Name":"Wioska Arco87","Points":249,"X":261,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":848974774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59176","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196159Z"},{"ID":59177,"Name":"K67 23","Points":1662,"X":715,"Y":605,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196162Z"},{"ID":59178,"Name":"Wioska sada2","Points":3943,"X":363,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":849114502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196163Z"},{"ID":59179,"Name":"002","Points":955,"X":275,"Y":445,"Continent":"K42","Bonus":0,"PlayerID":699282717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196165Z"},{"ID":59180,"Name":"Wioska 0024","Points":2491,"X":337,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":9186126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196166Z"},{"ID":59181,"Name":"FP048","Points":2255,"X":448,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196167Z"},{"ID":59182,"Name":"My City","Points":2653,"X":296,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":944147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196169Z"},{"ID":59183,"Name":"C0327","Points":1782,"X":268,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19617Z"},{"ID":59184,"Name":"Wioska Kaminski95","Points":1115,"X":521,"Y":259,"Continent":"K25","Bonus":0,"PlayerID":849106303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196172Z"},{"ID":59185,"Name":"Wioska Alderos","Points":26,"X":684,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":849117035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196174Z"},{"ID":59186,"Name":"Wioska barbarzyƄska","Points":1591,"X":727,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":698666810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196175Z"},{"ID":59187,"Name":"Wioska barbarzyƄska","Points":905,"X":650,"Y":318,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59187","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196176Z"},{"ID":59188,"Name":"094 koniec ƛwiata","Points":3017,"X":616,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":849093426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196178Z"},{"ID":59190,"Name":"????","Points":4036,"X":491,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196179Z"},{"ID":59191,"Name":"Wioska PrawdziwyIlveron","Points":68,"X":493,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":699698873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19618Z"},{"ID":59192,"Name":"PiekƂo to inni","Points":2572,"X":657,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196181Z"},{"ID":59193,"Name":"koniec","Points":193,"X":625,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":699883836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196184Z"},{"ID":59194,"Name":"Osada koczownikĂłw","Points":295,"X":313,"Y":648,"Continent":"K63","Bonus":6,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196185Z"},{"ID":59195,"Name":"Wioska barbarzyƄska","Points":60,"X":387,"Y":295,"Continent":"K23","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196186Z"},{"ID":59196,"Name":"PiekƂo to inni","Points":2105,"X":649,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196188Z"},{"ID":59197,"Name":"Karolo1","Points":388,"X":566,"Y":655,"Continent":"K65","Bonus":0,"PlayerID":848960061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196189Z"},{"ID":59198,"Name":"Wioska b 009","Points":992,"X":426,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19619Z"},{"ID":59199,"Name":"Wioska40","Points":159,"X":324,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196192Z"},{"ID":59200,"Name":"#040","Points":895,"X":554,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196194Z"},{"ID":59202,"Name":"Wioska barbarzyƄska","Points":2917,"X":527,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196195Z"},{"ID":59203,"Name":"!Wioska barbarzyƄska","Points":222,"X":599,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196197Z"},{"ID":59204,"Name":"Następna","Points":1180,"X":633,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196198Z"},{"ID":59205,"Name":"Wioska Gacek565","Points":2745,"X":474,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":8978080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.1962Z"},{"ID":59206,"Name":"003-81","Points":2686,"X":287,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196201Z"},{"ID":59207,"Name":"Wioska DrXE7","Points":253,"X":438,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":849106601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196202Z"},{"ID":59208,"Name":"Wioska barbarzyƄska","Points":971,"X":454,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196203Z"},{"ID":59209,"Name":"Chlewnik","Points":988,"X":731,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":699685533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196206Z"},{"ID":59210,"Name":"002 Zagroda","Points":1266,"X":272,"Y":538,"Continent":"K52","Bonus":4,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196207Z"},{"ID":59211,"Name":"PPF-50","Points":501,"X":572,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196209Z"},{"ID":59212,"Name":"Wioska barbarzyƄska","Points":502,"X":626,"Y":696,"Continent":"K66","Bonus":0,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19621Z"},{"ID":59213,"Name":"Wioska ksiÄ…ĆŒÄ™ plemienia","Points":834,"X":306,"Y":373,"Continent":"K33","Bonus":0,"PlayerID":699816699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196211Z"},{"ID":59214,"Name":"[0279]","Points":2853,"X":269,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196212Z"},{"ID":59215,"Name":"Osada koczownikĂłw","Points":2349,"X":596,"Y":283,"Continent":"K25","Bonus":7,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196213Z"},{"ID":59216,"Name":"Wioska barbarzyƄska","Points":205,"X":647,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196216Z"},{"ID":59217,"Name":"Ultimate Farming Simulator 6","Points":198,"X":433,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":699872032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196217Z"},{"ID":59218,"Name":"Wioska barbarzyƄska","Points":2305,"X":359,"Y":303,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196218Z"},{"ID":59219,"Name":"Wioska barbarzyƄska","Points":1750,"X":738,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19622Z"},{"ID":59220,"Name":"Wioska miniorek","Points":26,"X":532,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":849072919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196221Z"},{"ID":59221,"Name":"C0328","Points":1839,"X":270,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196222Z"},{"ID":59222,"Name":"Osada koczownikĂłw","Points":348,"X":687,"Y":637,"Continent":"K66","Bonus":7,"PlayerID":3467919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196223Z"},{"ID":59223,"Name":"Wioska barbarzyƄska","Points":144,"X":267,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196225Z"},{"ID":59224,"Name":"Sąsiad buduję Ci wioskę :)","Points":1713,"X":385,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":3647080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196227Z"},{"ID":59225,"Name":"PiekƂo to inni","Points":2599,"X":660,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196229Z"},{"ID":59226,"Name":"0129","Points":433,"X":704,"Y":378,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19623Z"},{"ID":59227,"Name":"=129= Wioska barbarzyƄska","Points":956,"X":729,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":3781794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196231Z"},{"ID":59229,"Name":"Wioska barbarzyƄska","Points":330,"X":282,"Y":601,"Continent":"K62","Bonus":0,"PlayerID":699396429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196232Z"},{"ID":59230,"Name":"Wioska barbarzyƄska","Points":677,"X":473,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196233Z"},{"ID":59231,"Name":"North K25","Points":1329,"X":563,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196235Z"},{"ID":59232,"Name":"Wioska Tombar76","Points":583,"X":490,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":2162471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196236Z"},{"ID":59233,"Name":"Wioska barbarzyƄska","Points":918,"X":267,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196239Z"},{"ID":59234,"Name":"Wioska Ferox-1","Points":223,"X":718,"Y":576,"Continent":"K57","Bonus":0,"PlayerID":849113673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19624Z"},{"ID":59235,"Name":"Wioska barbarzyƄska","Points":203,"X":317,"Y":655,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196241Z"},{"ID":59236,"Name":"Bracket","Points":344,"X":401,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":699741694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196242Z"},{"ID":59237,"Name":"Wioska barbarzyƄska","Points":263,"X":277,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59237","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196244Z"},{"ID":59238,"Name":"Zasiedmiogorogrodzie 003","Points":427,"X":698,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":698278542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196245Z"},{"ID":59239,"Name":"Wioska barbarzyƄska","Points":230,"X":320,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196246Z"},{"ID":59240,"Name":"????","Points":3011,"X":467,"Y":268,"Continent":"K24","Bonus":2,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196249Z"},{"ID":59241,"Name":"Wioska chips03","Points":26,"X":297,"Y":615,"Continent":"K62","Bonus":0,"PlayerID":849096346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19625Z"},{"ID":59242,"Name":"WB45","Points":409,"X":303,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196252Z"},{"ID":59243,"Name":"Wioska Querto","Points":237,"X":715,"Y":392,"Continent":"K37","Bonus":0,"PlayerID":698854238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196253Z"},{"ID":59244,"Name":"029 - Budowanko!","Points":4652,"X":491,"Y":740,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196255Z"},{"ID":59246,"Name":"007","Points":1843,"X":441,"Y":267,"Continent":"K24","Bonus":4,"PlayerID":699562874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196256Z"},{"ID":59247,"Name":"liliput81","Points":1665,"X":484,"Y":741,"Continent":"K74","Bonus":0,"PlayerID":698321130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59247","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196257Z"},{"ID":59248,"Name":"Wioska barbarzyƄska","Points":493,"X":558,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196258Z"},{"ID":59249,"Name":"Krasnal","Points":1131,"X":653,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":8583185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196261Z"},{"ID":59250,"Name":"WB37","Points":621,"X":298,"Y":387,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196262Z"},{"ID":59251,"Name":"New World","Points":1770,"X":438,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196263Z"},{"ID":59252,"Name":"Wioska Banan001","Points":26,"X":263,"Y":528,"Continent":"K52","Bonus":0,"PlayerID":699765971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196265Z"},{"ID":59253,"Name":"Wioska Szy.mek","Points":842,"X":691,"Y":634,"Continent":"K66","Bonus":0,"PlayerID":849116679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196266Z"},{"ID":59255,"Name":"CO TAM ????","Points":130,"X":289,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196267Z"},{"ID":59256,"Name":"Wioska barbarzyƄska","Points":343,"X":680,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":6956104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59256","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196268Z"},{"ID":59257,"Name":"Wioska Bozydar666","Points":217,"X":735,"Y":482,"Continent":"K47","Bonus":0,"PlayerID":848959422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196271Z"},{"ID":59258,"Name":"KONFA TO MARKA, NARKA","Points":2153,"X":279,"Y":421,"Continent":"K42","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196272Z"},{"ID":59259,"Name":"Wioska barbarzyƄska","Points":417,"X":374,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196274Z"},{"ID":59260,"Name":"!Wioska barbarzyƄska 4","Points":2958,"X":583,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196275Z"},{"ID":59261,"Name":"endriu1990/181","Points":633,"X":440,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":698795589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196276Z"},{"ID":59262,"Name":"Wioska barbarzyƄska","Points":364,"X":596,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59262","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196278Z"},{"ID":59263,"Name":"Wioska Galactus","Points":237,"X":287,"Y":388,"Continent":"K32","Bonus":0,"PlayerID":698488800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196279Z"},{"ID":59264,"Name":"Wioska barbarzyƄska","Points":1748,"X":533,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19628Z"},{"ID":59265,"Name":"Wioska sarab","Points":1176,"X":458,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":6474323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196283Z"},{"ID":59266,"Name":"Wioska Klaudia121","Points":102,"X":479,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849112850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196284Z"},{"ID":59267,"Name":"Wioska barbarzyƄska","Points":274,"X":358,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196286Z"},{"ID":59268,"Name":"Wioska krzok14","Points":71,"X":733,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":698984562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196287Z"},{"ID":59269,"Name":"Na SsSskraju","Points":1089,"X":270,"Y":572,"Continent":"K52","Bonus":4,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196288Z"},{"ID":59270,"Name":"Wioska King2000","Points":296,"X":617,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":849101871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196289Z"},{"ID":59271,"Name":"Wioska barbarzyƄska","Points":391,"X":571,"Y":273,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196291Z"},{"ID":59272,"Name":"North 053","Points":4008,"X":529,"Y":264,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196293Z"},{"ID":59273,"Name":"North 111","Points":1503,"X":474,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196294Z"},{"ID":59274,"Name":"FEEDBACK","Points":1993,"X":287,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":699774694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196296Z"},{"ID":59275,"Name":"106 Wioska barbarzyƄska","Points":817,"X":568,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196297Z"},{"ID":59276,"Name":"North 056","Points":4204,"X":550,"Y":264,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196298Z"},{"ID":59277,"Name":"21. Tama","Points":166,"X":352,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":849092769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196299Z"},{"ID":59278,"Name":"North 054","Points":4189,"X":536,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196301Z"},{"ID":59279,"Name":"K67 37","Points":444,"X":714,"Y":609,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196302Z"},{"ID":59280,"Name":"Wioska b 012","Points":187,"X":406,"Y":279,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196305Z"},{"ID":59281,"Name":"PóƂnocny Bagdad","Points":2350,"X":616,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196306Z"},{"ID":59282,"Name":"Wioska Simon93","Points":1546,"X":274,"Y":569,"Continent":"K52","Bonus":0,"PlayerID":849115254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196307Z"},{"ID":59283,"Name":"Wioska barbarzyƄska","Points":1916,"X":665,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196309Z"},{"ID":59285,"Name":"035","Points":757,"X":725,"Y":588,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19631Z"},{"ID":59286,"Name":"001Vixa","Points":361,"X":346,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":8819990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196311Z"},{"ID":59287,"Name":"MojeDnoToWaszSzczyt","Points":1322,"X":468,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196312Z"},{"ID":59288,"Name":"North 048","Points":3505,"X":559,"Y":269,"Continent":"K25","Bonus":6,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196315Z"},{"ID":59289,"Name":"Wioska barbarzyƄska","Points":1583,"X":636,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196317Z"},{"ID":59290,"Name":"Wioska barbarzyƄska","Points":174,"X":321,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196318Z"},{"ID":59291,"Name":"Wioska barbarzyƄska","Points":162,"X":300,"Y":620,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196319Z"},{"ID":59292,"Name":"North 070","Points":4383,"X":507,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196321Z"},{"ID":59293,"Name":"Osada koczownikĂłw","Points":310,"X":295,"Y":618,"Continent":"K62","Bonus":3,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196322Z"},{"ID":59294,"Name":"Wioska Uparty1","Points":634,"X":385,"Y":295,"Continent":"K23","Bonus":0,"PlayerID":699471024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196323Z"},{"ID":59295,"Name":"Wioska barbarzyƄska","Points":1500,"X":552,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196324Z"},{"ID":59296,"Name":"Wioska Squander","Points":219,"X":649,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":698915069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196327Z"},{"ID":59298,"Name":"New World","Points":3103,"X":425,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196328Z"},{"ID":59299,"Name":"Wioska barbarzyƄska","Points":263,"X":731,"Y":541,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196329Z"},{"ID":59300,"Name":"WB33","Points":972,"X":293,"Y":382,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19633Z"},{"ID":59301,"Name":"Wioska barbarzyƄska","Points":42,"X":269,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196332Z"},{"ID":59302,"Name":"znam ostropesta 3","Points":2244,"X":434,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196333Z"},{"ID":59303,"Name":"Wioska Nogger14","Points":750,"X":285,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":3923887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196334Z"},{"ID":59304,"Name":"PiekƂo to inni","Points":1677,"X":656,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":848956765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196337Z"},{"ID":59305,"Name":"Wioska barbarzyƄska","Points":300,"X":653,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":896355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196338Z"},{"ID":59306,"Name":"PóƂnocny Bagdad","Points":1860,"X":611,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59306","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19634Z"},{"ID":59307,"Name":"Flap","Points":1823,"X":604,"Y":281,"Continent":"K26","Bonus":8,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196341Z"},{"ID":59309,"Name":"Avanti!","Points":1434,"X":267,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196342Z"},{"ID":59310,"Name":"wu2ek","Points":851,"X":703,"Y":616,"Continent":"K67","Bonus":0,"PlayerID":849108157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59310","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196343Z"},{"ID":59311,"Name":"PóƂnocny Bagdad","Points":2050,"X":632,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196345Z"},{"ID":59312,"Name":"Wioska Szymon9405","Points":4011,"X":276,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":849099145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196346Z"},{"ID":59313,"Name":"101","Points":1260,"X":735,"Y":529,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196349Z"},{"ID":59314,"Name":"Wioska Cegla x DrTaxi","Points":41,"X":517,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":7951206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59314","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19635Z"},{"ID":59315,"Name":"Wioska gall8","Points":293,"X":265,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":699598396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196351Z"},{"ID":59316,"Name":"Wioska Gruby0905","Points":515,"X":433,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":1384222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196352Z"},{"ID":59317,"Name":"WB24","Points":1270,"X":298,"Y":367,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196353Z"},{"ID":59318,"Name":"Wioska barbarzyƄska","Points":525,"X":737,"Y":450,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196355Z"},{"ID":59319,"Name":"Wioska33","Points":1224,"X":328,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196356Z"},{"ID":59320,"Name":"Wioska barbarzyƄska","Points":233,"X":737,"Y":502,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59320","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196359Z"},{"ID":59321,"Name":"PóƂnocny Bagdad","Points":1453,"X":630,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.19636Z"},{"ID":59322,"Name":"A#052","Points":4426,"X":737,"Y":464,"Continent":"K47","Bonus":3,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196361Z"},{"ID":59324,"Name":"Wioska barbarzyƄska","Points":725,"X":670,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196363Z"},{"ID":59327,"Name":"222 |","Points":270,"X":718,"Y":416,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59327","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196364Z"},{"ID":59328,"Name":"North 099","Points":4202,"X":548,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.196365Z"},{"ID":59330,"Name":"Wioska barbarzyƄska","Points":1399,"X":738,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231711Z"},{"ID":59332,"Name":"041. Wioska barbarzyƄska","Points":468,"X":685,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231712Z"},{"ID":59333,"Name":"088 obrzeĆŒa","Points":457,"X":272,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231713Z"},{"ID":59334,"Name":"Wioska 181","Points":1353,"X":284,"Y":401,"Continent":"K42","Bonus":0,"PlayerID":382222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231713Z"},{"ID":59335,"Name":"KWB9","Points":4889,"X":467,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231713Z"},{"ID":59336,"Name":"New World","Points":1578,"X":434,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231714Z"},{"ID":59337,"Name":"031 - Budowanko!","Points":4417,"X":495,"Y":742,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59337","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231714Z"},{"ID":59338,"Name":"Wioska lukas1980","Points":1258,"X":501,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":2213632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231714Z"},{"ID":59339,"Name":"42 barbarzyƄska 3A","Points":2002,"X":268,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231714Z"},{"ID":59340,"Name":"Wioska 181","Points":1646,"X":345,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":82782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231715Z"},{"ID":59341,"Name":"Wioska barbarzyƄska","Points":156,"X":335,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231715Z"},{"ID":59342,"Name":"Wioska barbarzyƄska","Points":222,"X":350,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231715Z"},{"ID":59343,"Name":"Wioska barbarzyƄska","Points":75,"X":263,"Y":472,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231716Z"},{"ID":59344,"Name":"K67 25","Points":1737,"X":704,"Y":611,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231716Z"},{"ID":59345,"Name":"Wioska barbarzyƄska","Points":410,"X":329,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231716Z"},{"ID":59346,"Name":"Wioska Koza2021","Points":68,"X":279,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":849106741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231717Z"},{"ID":59348,"Name":"PóƂnocny Bagdad","Points":2789,"X":632,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231717Z"},{"ID":59349,"Name":"B019","Points":2881,"X":534,"Y":266,"Continent":"K25","Bonus":6,"PlayerID":699485250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59349","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231717Z"},{"ID":59350,"Name":"071 - Budowanko!","Points":633,"X":514,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231718Z"},{"ID":59351,"Name":"Kancelaria 1","Points":1157,"X":715,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":849104468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231718Z"},{"ID":59352,"Name":"Bunkier","Points":458,"X":344,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":699805839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231718Z"},{"ID":59353,"Name":"Wioska apokalipsa25","Points":26,"X":733,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":9135525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231719Z"},{"ID":59354,"Name":"Wioska barbarzyƄska","Points":228,"X":600,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231719Z"},{"ID":59355,"Name":"Wioska Adrianzaq12wsx","Points":26,"X":721,"Y":424,"Continent":"K47","Bonus":0,"PlayerID":1945202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231719Z"},{"ID":59356,"Name":"K66","Points":1331,"X":698,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23172Z"},{"ID":59357,"Name":"Wioska barbarzyƄska","Points":121,"X":290,"Y":402,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23172Z"},{"ID":59358,"Name":"????","Points":2625,"X":486,"Y":259,"Continent":"K24","Bonus":0,"PlayerID":698489071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59358","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23172Z"},{"ID":59359,"Name":"002 Carlin","Points":2434,"X":692,"Y":645,"Continent":"K66","Bonus":0,"PlayerID":699516250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231721Z"},{"ID":59360,"Name":"Wioska KrĂłl Mieszko1","Points":670,"X":265,"Y":527,"Continent":"K52","Bonus":0,"PlayerID":849110674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231721Z"},{"ID":59361,"Name":"[209]","Points":1126,"X":722,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231721Z"},{"ID":59362,"Name":"Wioska PtyƛTurbo","Points":138,"X":386,"Y":295,"Continent":"K23","Bonus":0,"PlayerID":849095825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231722Z"},{"ID":59363,"Name":"Wioska barbarzyƄska","Points":1693,"X":553,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231722Z"},{"ID":59364,"Name":"KONFA TO MARKA, NARKA","Points":1201,"X":273,"Y":423,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231722Z"},{"ID":59365,"Name":"0123","Points":541,"X":711,"Y":384,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231723Z"},{"ID":59366,"Name":"Wioska 221719123","Points":26,"X":695,"Y":631,"Continent":"K66","Bonus":0,"PlayerID":849050410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231723Z"},{"ID":59367,"Name":"Wioska vasper123","Points":671,"X":616,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":848980727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231723Z"},{"ID":59368,"Name":"Wioska barbarzyƄska","Points":2926,"X":418,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231724Z"},{"ID":59369,"Name":"Wioska barbarzyƄska","Points":77,"X":266,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231724Z"},{"ID":59370,"Name":"Zaplecze Barba 042","Points":1907,"X":358,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231724Z"},{"ID":59371,"Name":"124. Bezmiar Wschodni Bliski","Points":274,"X":663,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231725Z"},{"ID":59372,"Name":"North 083","Points":4006,"X":554,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231725Z"},{"ID":59373,"Name":"Wioska barbarzyƄska","Points":338,"X":672,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231725Z"},{"ID":59375,"Name":"Wioska barbarzyƄska","Points":934,"X":379,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231726Z"},{"ID":59376,"Name":"sobiska","Points":1496,"X":439,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":849118259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231726Z"},{"ID":59377,"Name":"Wioska barbarzyƄska","Points":1748,"X":739,"Y":523,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231726Z"},{"ID":59378,"Name":"Flex 1","Points":1126,"X":375,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849114033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231726Z"},{"ID":59380,"Name":"PPF-47","Points":396,"X":518,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231727Z"},{"ID":59381,"Name":"Wioska barbarzyƄska","Points":956,"X":457,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":9299539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231727Z"},{"ID":59382,"Name":"Wioska samolot11","Points":139,"X":527,"Y":261,"Continent":"K25","Bonus":0,"PlayerID":849105201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231728Z"},{"ID":59383,"Name":"Osada koczownikĂłw","Points":1477,"X":678,"Y":337,"Continent":"K36","Bonus":3,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231728Z"},{"ID":59384,"Name":"Wioska OgnistaOwca","Points":54,"X":616,"Y":295,"Continent":"K26","Bonus":0,"PlayerID":699868448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231728Z"},{"ID":59385,"Name":"PóƂnocny Bagdad","Points":765,"X":648,"Y":316,"Continent":"K36","Bonus":6,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231729Z"},{"ID":59386,"Name":"Wioska barbarzyƄska","Points":268,"X":739,"Y":503,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59386","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231729Z"},{"ID":59387,"Name":"Wioska barbarzyƄska","Points":1480,"X":737,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231729Z"},{"ID":59388,"Name":"ponger19955","Points":489,"X":692,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":849031759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23173Z"},{"ID":59389,"Name":"Wioska barbarzyƄska","Points":1355,"X":386,"Y":713,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23173Z"},{"ID":59390,"Name":"Wioska Blak widow","Points":237,"X":684,"Y":356,"Continent":"K36","Bonus":0,"PlayerID":698916256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23173Z"},{"ID":59391,"Name":"Wioska ABE 1","Points":181,"X":269,"Y":524,"Continent":"K52","Bonus":0,"PlayerID":7964548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231731Z"},{"ID":59392,"Name":"Wioska barbarzyƄska","Points":1477,"X":316,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":698908184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231731Z"},{"ID":59393,"Name":"Wioska dziwas2","Points":1899,"X":296,"Y":606,"Continent":"K62","Bonus":0,"PlayerID":8760563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231731Z"},{"ID":59394,"Name":"045 KTW","Points":500,"X":733,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":848883237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231732Z"},{"ID":59395,"Name":"Wioska barbarzyƄska","Points":313,"X":281,"Y":466,"Continent":"K42","Bonus":0,"PlayerID":699812351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231732Z"},{"ID":59396,"Name":"Wioska bleta spz","Points":275,"X":728,"Y":571,"Continent":"K57","Bonus":0,"PlayerID":699811133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231732Z"},{"ID":59397,"Name":"Wioska barbarzyƄska","Points":330,"X":729,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231733Z"},{"ID":59398,"Name":"Wioska koka17","Points":952,"X":372,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":848901822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231733Z"},{"ID":59399,"Name":"Wioska barbarzyƄska","Points":4325,"X":649,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231733Z"},{"ID":59400,"Name":"Wioska barbarzyƄska","Points":402,"X":739,"Y":531,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231733Z"},{"ID":59401,"Name":"Wioska xarans","Points":1146,"X":410,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":849044724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231734Z"},{"ID":59402,"Name":"WZ11","Points":1722,"X":697,"Y":621,"Continent":"K66","Bonus":0,"PlayerID":7142659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231734Z"},{"ID":59403,"Name":"Wioska barbarzyƄska","Points":318,"X":679,"Y":657,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231734Z"},{"ID":59404,"Name":"Wioska barbarzyƄska","Points":392,"X":595,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231735Z"},{"ID":59405,"Name":"Wioska Pheniks2009","Points":122,"X":452,"Y":729,"Continent":"K74","Bonus":0,"PlayerID":6541079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231735Z"},{"ID":59406,"Name":"Wioska barbarzyƄska","Points":684,"X":740,"Y":464,"Continent":"K47","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231736Z"},{"ID":59407,"Name":"Wioska slawomirec","Points":294,"X":627,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":2345447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231736Z"},{"ID":59408,"Name":"Wioska Piorun000","Points":333,"X":290,"Y":380,"Continent":"K32","Bonus":0,"PlayerID":699865716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231736Z"},{"ID":59409,"Name":"[0280]","Points":3491,"X":266,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59409","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231737Z"},{"ID":59410,"Name":"pl181 n1g3r","Points":2259,"X":268,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":6354962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231737Z"},{"ID":59411,"Name":"Wioska barbarzyƄska","Points":1693,"X":558,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231737Z"},{"ID":59412,"Name":"Odrodzenie","Points":783,"X":280,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":848952556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231737Z"},{"ID":59413,"Name":"KONFA TO MARKA, NARKA","Points":1827,"X":276,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59413","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231738Z"},{"ID":59414,"Name":"Bagno 41","Points":1879,"X":457,"Y":731,"Continent":"K74","Bonus":9,"PlayerID":848883684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231738Z"},{"ID":59415,"Name":"Wioska Alibaba420","Points":425,"X":737,"Y":448,"Continent":"K47","Bonus":0,"PlayerID":848942565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231738Z"},{"ID":59416,"Name":"Wioska barbarzyƄska","Points":1254,"X":613,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231739Z"},{"ID":59417,"Name":"Wioska barbarzyƄska","Points":771,"X":476,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231739Z"},{"ID":59418,"Name":"Osada koczownikĂłw","Points":2188,"X":739,"Y":539,"Continent":"K57","Bonus":2,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59418","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231739Z"},{"ID":59419,"Name":"Wioska snajpiradlo","Points":150,"X":396,"Y":284,"Continent":"K23","Bonus":0,"PlayerID":2980670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23174Z"},{"ID":59420,"Name":"Wioska barbarzyƄska","Points":42,"X":656,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23174Z"},{"ID":59421,"Name":"Wioska barbarzyƄska","Points":272,"X":341,"Y":330,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23174Z"},{"ID":59422,"Name":"Magnes","Points":192,"X":271,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":849116221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231741Z"},{"ID":59423,"Name":"62 barbarzyƄska","Points":443,"X":276,"Y":432,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231741Z"},{"ID":59424,"Name":"PPF-51","Points":227,"X":544,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231741Z"},{"ID":59425,"Name":"Wioska barbarzyƄska","Points":689,"X":382,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231741Z"},{"ID":59426,"Name":"Wioska to tylko hastrat","Points":26,"X":346,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":42635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231742Z"},{"ID":59427,"Name":"Wioska barbarzyƄska","Points":159,"X":290,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231742Z"},{"ID":59428,"Name":"North 071","Points":4375,"X":497,"Y":258,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59428","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231742Z"},{"ID":59429,"Name":"Wioska Love4evere3","Points":349,"X":297,"Y":611,"Continent":"K62","Bonus":0,"PlayerID":849117240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231743Z"},{"ID":59430,"Name":"Wioska barbarzyƄska","Points":175,"X":375,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231743Z"},{"ID":59432,"Name":"Wioska barbarzyƄska","Points":1748,"X":735,"Y":524,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231744Z"},{"ID":59433,"Name":"Wioska wlodek1404","Points":793,"X":580,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":849118462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231744Z"},{"ID":59434,"Name":"Wioska barbarzyƄska","Points":501,"X":269,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231744Z"},{"ID":59435,"Name":"Wioska drrakox","Points":26,"X":282,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":699851001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231744Z"},{"ID":59436,"Name":"Wioska barbarzyƄska","Points":472,"X":348,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231745Z"},{"ID":59437,"Name":"181","Points":376,"X":517,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":699147813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231745Z"},{"ID":59438,"Name":"042","Points":916,"X":720,"Y":403,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231745Z"},{"ID":59439,"Name":"Wioska BOMBA NA BANIIE","Points":26,"X":636,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":849029559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59439","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231746Z"},{"ID":59440,"Name":"Wioska Jaayzik","Points":26,"X":688,"Y":639,"Continent":"K66","Bonus":0,"PlayerID":699762118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231746Z"},{"ID":59441,"Name":"Wioska barbarzyƄska","Points":226,"X":599,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231746Z"},{"ID":59442,"Name":"Wioska AdaSobieraj","Points":565,"X":264,"Y":525,"Continent":"K52","Bonus":0,"PlayerID":849118441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231747Z"},{"ID":59443,"Name":"Wioska barbarzyƄska","Points":1396,"X":384,"Y":712,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231747Z"},{"ID":59444,"Name":"Wioska barbarzyƄska","Points":772,"X":737,"Y":460,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231747Z"},{"ID":59445,"Name":"Osada koczownikĂłw","Points":3451,"X":421,"Y":272,"Continent":"K24","Bonus":2,"PlayerID":3411571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231748Z"},{"ID":59446,"Name":"qwerty","Points":2016,"X":579,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849117830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231748Z"},{"ID":59447,"Name":"Wioska barbarzyƄska","Points":68,"X":296,"Y":613,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231748Z"},{"ID":59448,"Name":"Wioska Error?","Points":227,"X":578,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":698897841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231749Z"},{"ID":59449,"Name":"46.","Points":219,"X":333,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":8665783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231749Z"},{"ID":59451,"Name":"Wioska barbarzyƄska","Points":768,"X":579,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231749Z"},{"ID":59452,"Name":"Wioska barbarzyƄskaF","Points":586,"X":289,"Y":607,"Continent":"K62","Bonus":0,"PlayerID":698178312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23175Z"},{"ID":59453,"Name":"Wioska barbarzyƄska","Points":1907,"X":689,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23175Z"},{"ID":59454,"Name":"Osada koczownikĂłw","Points":235,"X":632,"Y":690,"Continent":"K66","Bonus":2,"PlayerID":699372829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23175Z"},{"ID":59456,"Name":"Wioska barbarzyƄska","Points":124,"X":288,"Y":392,"Continent":"K32","Bonus":0,"PlayerID":698677650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231751Z"},{"ID":59457,"Name":"034 - Budowanko!","Points":4402,"X":470,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231751Z"},{"ID":59458,"Name":"Wioska barbarzyƄska","Points":172,"X":637,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231751Z"},{"ID":59459,"Name":"Wioska barbarzyƄska","Points":194,"X":350,"Y":690,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231752Z"},{"ID":59460,"Name":"Wioska palkoneti","Points":326,"X":689,"Y":362,"Continent":"K36","Bonus":0,"PlayerID":2602575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231752Z"},{"ID":59461,"Name":"WB30","Points":1168,"X":292,"Y":377,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231752Z"},{"ID":59462,"Name":"WB42","Points":127,"X":291,"Y":385,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231753Z"},{"ID":59463,"Name":"Wioska frolunda63","Points":243,"X":557,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699391409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231753Z"},{"ID":59464,"Name":"Wioska 2 die 4","Points":232,"X":259,"Y":488,"Continent":"K42","Bonus":0,"PlayerID":2512219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231753Z"},{"ID":59465,"Name":"Wioska barbarzyƄska","Points":133,"X":732,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59465","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231754Z"},{"ID":59466,"Name":"Wioska barbarzyƄska","Points":311,"X":267,"Y":546,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231754Z"},{"ID":59467,"Name":"Wioska barbarzyƄska","Points":239,"X":343,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231754Z"},{"ID":59468,"Name":"Wioska pluton1","Points":209,"X":446,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":662253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231755Z"},{"ID":59469,"Name":"Wioska barbarzyƄska","Points":907,"X":577,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231755Z"},{"ID":59470,"Name":"VASTO 2","Points":1695,"X":345,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":849100016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231755Z"},{"ID":59471,"Name":"-001- Wioska barbarzyƄska","Points":2516,"X":687,"Y":347,"Continent":"K36","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231755Z"},{"ID":59472,"Name":"Wioska dziki71","Points":1398,"X":403,"Y":286,"Continent":"K24","Bonus":0,"PlayerID":3667722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231756Z"},{"ID":59473,"Name":"C0326","Points":1780,"X":269,"Y":519,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231756Z"},{"ID":59474,"Name":"Wioska leolen","Points":2509,"X":331,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":6617912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59474","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231756Z"},{"ID":59475,"Name":"#140#","Points":1201,"X":664,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231757Z"},{"ID":59476,"Name":"K67 38","Points":345,"X":710,"Y":615,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231757Z"},{"ID":59477,"Name":"Babylon","Points":296,"X":340,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":3377503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231757Z"},{"ID":59478,"Name":"Wioska barbarzyƄska","Points":373,"X":371,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231758Z"},{"ID":59479,"Name":"Wioska barbarzyƄska","Points":571,"X":718,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":7528491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231758Z"},{"ID":59480,"Name":"Wioska marlis1992","Points":26,"X":351,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":849098159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231758Z"},{"ID":59481,"Name":"026 Z","Points":125,"X":737,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231758Z"},{"ID":59482,"Name":"A#053","Points":3863,"X":724,"Y":412,"Continent":"K47","Bonus":8,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231759Z"},{"ID":59483,"Name":"Wioska Kafaro","Points":460,"X":405,"Y":564,"Continent":"K54","Bonus":0,"PlayerID":698911639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231759Z"},{"ID":59484,"Name":"Wioska barbarzyƄska","Points":1693,"X":526,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231759Z"},{"ID":59485,"Name":"Wioska barbarzyƄska","Points":214,"X":740,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23176Z"},{"ID":59486,"Name":"Wioska barbarzyƄska","Points":237,"X":338,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23176Z"},{"ID":59487,"Name":"moĆŒna farmić - zapraszam","Points":143,"X":724,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":699600167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23176Z"},{"ID":59488,"Name":"Wioska barbarzyƄska","Points":882,"X":741,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23176Z"},{"ID":59489,"Name":"Wioska barbarzyƄska","Points":128,"X":618,"Y":300,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231761Z"},{"ID":59490,"Name":"Wioska barbarzyƄska","Points":3291,"X":651,"Y":684,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231761Z"},{"ID":59491,"Name":"Wioska barbarzyƄska","Points":88,"X":337,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231761Z"},{"ID":59492,"Name":"=|42|=","Points":509,"X":693,"Y":367,"Continent":"K36","Bonus":0,"PlayerID":9101574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231762Z"},{"ID":59493,"Name":"Osada koczownikĂłw","Points":1141,"X":274,"Y":575,"Continent":"K52","Bonus":5,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231762Z"},{"ID":59494,"Name":"Wioska pilkowski","Points":101,"X":660,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":849096856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231762Z"},{"ID":59495,"Name":"Wioska barbarzyƄska","Points":3176,"X":657,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231763Z"},{"ID":59496,"Name":"Wioska barbarzyƄska","Points":216,"X":302,"Y":628,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231763Z"},{"ID":59497,"Name":"gracjan1995","Points":1811,"X":720,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":698631190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231763Z"},{"ID":59498,"Name":"240...north","Points":1290,"X":435,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231763Z"},{"ID":59499,"Name":"Wioska rycerzrzyk2000","Points":26,"X":705,"Y":379,"Continent":"K37","Bonus":0,"PlayerID":6021542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231764Z"},{"ID":59500,"Name":"Zaplecze Barba 046","Points":1821,"X":355,"Y":318,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231764Z"},{"ID":59501,"Name":"Wioska barbarzyƄska","Points":56,"X":729,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231764Z"},{"ID":59502,"Name":"North K25","Points":1359,"X":560,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231765Z"},{"ID":59503,"Name":"Wioska barbarzyƄska","Points":54,"X":609,"Y":286,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231765Z"},{"ID":59504,"Name":"Wioska barbarzyƄska","Points":1855,"X":365,"Y":307,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231765Z"},{"ID":59505,"Name":"PPF-49","Points":333,"X":553,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231766Z"},{"ID":59506,"Name":"Wioska Bober5180","Points":126,"X":424,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":849106576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231766Z"},{"ID":59507,"Name":"Wioska barbarzyƄska","Points":90,"X":269,"Y":480,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231766Z"},{"ID":59508,"Name":"Wioska barbarzyƄska","Points":201,"X":317,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231767Z"},{"ID":59509,"Name":"Zaplecze Barba 052","Points":508,"X":344,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231767Z"},{"ID":59510,"Name":"Wioska barbarzyƄska","Points":81,"X":267,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231767Z"},{"ID":59511,"Name":"045. Wioska barbarzyƄska","Points":530,"X":687,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231768Z"},{"ID":59512,"Name":"Wioska barbarzyƄska","Points":1451,"X":523,"Y":741,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231768Z"},{"ID":59513,"Name":"049","Points":691,"X":691,"Y":352,"Continent":"K36","Bonus":2,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231768Z"},{"ID":59514,"Name":"Wioska Shadow39","Points":1208,"X":704,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":849073939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231768Z"},{"ID":59515,"Name":"Wioska JuanPabloII","Points":26,"X":414,"Y":285,"Continent":"K24","Bonus":0,"PlayerID":849091060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231769Z"},{"ID":59516,"Name":"PóƂnocny Bagdad","Points":2134,"X":621,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231769Z"},{"ID":59517,"Name":"2Pac","Points":1146,"X":467,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849117242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231769Z"},{"ID":59518,"Name":"003 Venore","Points":1492,"X":695,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":699516250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23177Z"},{"ID":59520,"Name":"New World","Points":3139,"X":433,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23177Z"},{"ID":59521,"Name":"Wioska barbarzyƄska","Points":147,"X":646,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23177Z"},{"ID":59522,"Name":"Nowa 65","Points":2413,"X":722,"Y":595,"Continent":"K57","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231771Z"},{"ID":59523,"Name":"Wioska Vokhar","Points":26,"X":334,"Y":334,"Continent":"K33","Bonus":0,"PlayerID":849118478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231771Z"},{"ID":59524,"Name":"New World","Points":3513,"X":427,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231771Z"},{"ID":59525,"Name":"Wioska bylo21","Points":199,"X":307,"Y":366,"Continent":"K33","Bonus":0,"PlayerID":1132842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231771Z"},{"ID":59526,"Name":"086 obrzeĆŒa","Points":838,"X":274,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231772Z"},{"ID":59527,"Name":"Osada koczownikĂłw","Points":876,"X":331,"Y":334,"Continent":"K33","Bonus":3,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231772Z"},{"ID":59529,"Name":"Wioska b 011","Points":268,"X":407,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231772Z"},{"ID":59530,"Name":"!Wioska barbarzyƄska 33","Points":2810,"X":583,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231773Z"},{"ID":59531,"Name":"Sony 911","Points":211,"X":706,"Y":625,"Continent":"K67","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231773Z"},{"ID":59532,"Name":"Wioska barbarzyƄska","Points":1056,"X":625,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":101074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231773Z"},{"ID":59533,"Name":"Wioska Carlos75","Points":26,"X":510,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":337137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231774Z"},{"ID":59534,"Name":"North 100","Points":2628,"X":507,"Y":259,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231774Z"},{"ID":59535,"Name":"Wioska barbarzyƄska","Points":554,"X":662,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231774Z"},{"ID":59536,"Name":"Wioska barbarzyƄska","Points":1570,"X":659,"Y":322,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231775Z"},{"ID":59537,"Name":"Mega kox","Points":527,"X":658,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":848919959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231775Z"},{"ID":59538,"Name":"Wioska barbarzyƄska","Points":74,"X":663,"Y":321,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231775Z"},{"ID":59539,"Name":"036. Gloria Victis","Points":1324,"X":269,"Y":576,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231776Z"},{"ID":59540,"Name":"Wioska hair12345.","Points":761,"X":702,"Y":390,"Continent":"K37","Bonus":0,"PlayerID":849118786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231776Z"},{"ID":59541,"Name":"WB39","Points":580,"X":289,"Y":386,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231776Z"},{"ID":59543,"Name":"Wioska barbarzyƄska","Points":108,"X":714,"Y":413,"Continent":"K47","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231776Z"},{"ID":59544,"Name":"Wioska barbarzyƄska","Points":856,"X":640,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231777Z"},{"ID":59545,"Name":"069 - Budowanko!","Points":670,"X":513,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231777Z"},{"ID":59546,"Name":"002","Points":2008,"X":716,"Y":390,"Continent":"K37","Bonus":0,"PlayerID":699832463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231777Z"},{"ID":59547,"Name":"Wioska MARCINEK GROĆ»NY","Points":358,"X":445,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":6174010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231778Z"},{"ID":59548,"Name":"Wioska barbarzyƄska","Points":604,"X":342,"Y":320,"Continent":"K33","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231778Z"},{"ID":59549,"Name":"181","Points":311,"X":730,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":698957176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231778Z"},{"ID":59550,"Name":"Melissa monet","Points":1777,"X":573,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":698936852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231779Z"},{"ID":59551,"Name":"KONFA TO MARKA, NARKA","Points":2084,"X":272,"Y":422,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231779Z"},{"ID":59552,"Name":"Wioska plazmi","Points":650,"X":392,"Y":716,"Continent":"K73","Bonus":0,"PlayerID":2177410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231779Z"},{"ID":59553,"Name":"Wioska barbarzyƄska","Points":190,"X":337,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231779Z"},{"ID":59554,"Name":"ONR 3","Points":184,"X":662,"Y":319,"Continent":"K36","Bonus":0,"PlayerID":9090040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23178Z"},{"ID":59555,"Name":"Wioska barbarzyƄska","Points":893,"X":638,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23178Z"},{"ID":59556,"Name":"Wioska Pysia.","Points":26,"X":334,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":849062706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23178Z"},{"ID":59557,"Name":"Wioska NurseJK","Points":1446,"X":285,"Y":611,"Continent":"K62","Bonus":0,"PlayerID":849113819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231781Z"},{"ID":59558,"Name":"Twierdza (Cadia)","Points":2511,"X":401,"Y":288,"Continent":"K24","Bonus":23,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231781Z"},{"ID":59559,"Name":"035","Points":83,"X":470,"Y":738,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231781Z"},{"ID":59560,"Name":"Wioska barbarzyƄska","Points":206,"X":346,"Y":679,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231782Z"},{"ID":59562,"Name":"Wioska barbarzyƄska","Points":26,"X":469,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231782Z"},{"ID":59563,"Name":"Wioska dominik121","Points":194,"X":274,"Y":424,"Continent":"K42","Bonus":0,"PlayerID":698639278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231782Z"},{"ID":59564,"Name":"North 084","Points":3852,"X":488,"Y":261,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231783Z"},{"ID":59565,"Name":"Wioska marek46aa","Points":454,"X":398,"Y":720,"Continent":"K73","Bonus":0,"PlayerID":698346954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231783Z"},{"ID":59566,"Name":"Wioska barbarzyƄska","Points":185,"X":720,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231783Z"},{"ID":59567,"Name":"Wioska barbarzyƄska","Points":208,"X":741,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59567","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231784Z"},{"ID":59568,"Name":"Wioska barbarzyƄska","Points":76,"X":258,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231784Z"},{"ID":59569,"Name":"Sony 911","Points":1346,"X":687,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231784Z"},{"ID":59570,"Name":"Wioska barbarzyƄska","Points":93,"X":732,"Y":552,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231785Z"},{"ID":59571,"Name":"Wioska cycu269","Points":1871,"X":573,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":7913305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231785Z"},{"ID":59572,"Name":"Wioska Mistrzunio229","Points":195,"X":309,"Y":362,"Continent":"K33","Bonus":0,"PlayerID":699545975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231785Z"},{"ID":59573,"Name":"Wioska barbarzyƄska","Points":82,"X":445,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":699280514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59573","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231785Z"},{"ID":59574,"Name":"Wioska artur1488","Points":764,"X":711,"Y":611,"Continent":"K67","Bonus":0,"PlayerID":7024597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231786Z"},{"ID":59575,"Name":"03# Wioska barbarzyƄska","Points":458,"X":682,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":8444698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231786Z"},{"ID":59576,"Name":"Wioska barbarzyƄska","Points":229,"X":648,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231786Z"},{"ID":59577,"Name":"WB43","Points":369,"X":300,"Y":363,"Continent":"K33","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231786Z"},{"ID":59578,"Name":"Wioska Xpace67","Points":26,"X":267,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":849112774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231787Z"},{"ID":59579,"Name":"Wioska barbarzyƄska","Points":1771,"X":701,"Y":381,"Continent":"K37","Bonus":0,"PlayerID":7340529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231787Z"},{"ID":59580,"Name":"Wioska Pati999","Points":196,"X":622,"Y":302,"Continent":"K36","Bonus":0,"PlayerID":849115365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231787Z"},{"ID":59581,"Name":"036","Points":624,"X":736,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":6160655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231788Z"},{"ID":59582,"Name":"Wioska Minister123","Points":1768,"X":287,"Y":403,"Continent":"K42","Bonus":0,"PlayerID":849118999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231788Z"},{"ID":59584,"Name":"North K25","Points":1289,"X":572,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231788Z"},{"ID":59585,"Name":"Wioska barbarzyƄska","Points":26,"X":497,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231789Z"},{"ID":59586,"Name":"Wioska tomekjasko","Points":144,"X":736,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":849101646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231789Z"},{"ID":59587,"Name":"Wioska ceru","Points":112,"X":531,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":699254631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231789Z"},{"ID":59588,"Name":"Wioska barbarzyƄska","Points":269,"X":262,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23179Z"},{"ID":59589,"Name":"Wioska barbarzyƄska","Points":33,"X":551,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23179Z"},{"ID":59590,"Name":"WB27","Points":1221,"X":299,"Y":375,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23179Z"},{"ID":59591,"Name":"#002","Points":854,"X":446,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":849042480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231791Z"},{"ID":59592,"Name":"Xxx","Points":2126,"X":509,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231791Z"},{"ID":59593,"Name":"Wioska barbarzyƄska","Points":87,"X":311,"Y":646,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231791Z"},{"ID":59594,"Name":"244","Points":436,"X":366,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231792Z"},{"ID":59595,"Name":"Wioska ascend","Points":2705,"X":486,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":698830638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231792Z"},{"ID":59596,"Name":"Wioska barbarzyƄska","Points":141,"X":334,"Y":327,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231792Z"},{"ID":59597,"Name":"Wioska CebulowyRycerz","Points":94,"X":467,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":699492817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231792Z"},{"ID":59598,"Name":"[210]","Points":852,"X":722,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231793Z"},{"ID":59599,"Name":"KONFA TO MARKA, NARKA","Points":722,"X":280,"Y":405,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231793Z"},{"ID":59600,"Name":"Wioska barbarzyƄska","Points":1640,"X":611,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":699098531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231793Z"},{"ID":59602,"Name":"002 Wioska barbarzyƄska","Points":188,"X":259,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":915113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231794Z"},{"ID":59603,"Name":"Dworek","Points":1189,"X":297,"Y":632,"Continent":"K62","Bonus":0,"PlayerID":8502135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231794Z"},{"ID":59604,"Name":"Wioska barbarzyƄska","Points":139,"X":279,"Y":599,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231794Z"},{"ID":59605,"Name":"PPF-58","Points":272,"X":544,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231794Z"},{"ID":59606,"Name":"#148#","Points":1023,"X":658,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231795Z"},{"ID":59607,"Name":"057","Points":81,"X":740,"Y":498,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231795Z"},{"ID":59608,"Name":"KREV 007","Points":217,"X":721,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":848988744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231795Z"},{"ID":59609,"Name":"Wioska miodzik9669","Points":340,"X":697,"Y":375,"Continent":"K36","Bonus":0,"PlayerID":2422415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231796Z"},{"ID":59610,"Name":"Wioska barbarzyƄska","Points":1667,"X":368,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231796Z"},{"ID":59611,"Name":"Wioska spiki2009.","Points":569,"X":357,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":6468217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231796Z"},{"ID":59612,"Name":"New WorldA","Points":1102,"X":270,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":849084005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231796Z"},{"ID":59613,"Name":"sony911","Points":185,"X":674,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231797Z"},{"ID":59614,"Name":"Wioska barbarzyƄska","Points":1421,"X":668,"Y":324,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231797Z"},{"ID":59615,"Name":"Wioska barbarzyƄska","Points":284,"X":733,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":698702991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231797Z"},{"ID":59616,"Name":"Aa3","Points":1650,"X":592,"Y":720,"Continent":"K75","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231798Z"},{"ID":59617,"Name":"Wioska barbarzyƄska","Points":48,"X":375,"Y":702,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231798Z"},{"ID":59618,"Name":"066KP","Points":644,"X":482,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231798Z"},{"ID":59619,"Name":"Wioska barbarzyƄska","Points":198,"X":732,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231799Z"},{"ID":59620,"Name":"Tupot maƂych nĂłĆŒek 2","Points":203,"X":259,"Y":478,"Continent":"K42","Bonus":0,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231799Z"},{"ID":59621,"Name":"Wioska xKratz","Points":41,"X":272,"Y":420,"Continent":"K42","Bonus":0,"PlayerID":849096954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231799Z"},{"ID":59622,"Name":"Wioska barbarzyƄska","Points":261,"X":297,"Y":626,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231799Z"},{"ID":59623,"Name":"Wioska Lejlu","Points":245,"X":619,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":699491924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2318Z"},{"ID":59624,"Name":"045","Points":775,"X":695,"Y":371,"Continent":"K36","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2318Z"},{"ID":59625,"Name":"Wioska barbarzyƄska","Points":136,"X":611,"Y":286,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2318Z"},{"ID":59626,"Name":"Wioska 013","Points":433,"X":735,"Y":496,"Continent":"K47","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231801Z"},{"ID":59627,"Name":"Wioska barbarzyƄska","Points":1737,"X":639,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231801Z"},{"ID":59628,"Name":"181","Points":664,"X":589,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849119121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231801Z"},{"ID":59629,"Name":"048 - Budowanko!","Points":3137,"X":513,"Y":741,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231801Z"},{"ID":59630,"Name":"Valhalla","Points":803,"X":718,"Y":591,"Continent":"K57","Bonus":0,"PlayerID":949279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231802Z"},{"ID":59631,"Name":"North 085","Points":3662,"X":512,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231802Z"},{"ID":59632,"Name":"181.Nie ƛwiruję","Points":1096,"X":358,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":6284929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231802Z"},{"ID":59633,"Name":"Wioska barbarzyƄska","Points":165,"X":328,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231802Z"},{"ID":59634,"Name":"Wioska 43","Points":343,"X":579,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":3022364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231803Z"},{"ID":59635,"Name":"43 barbarzyƄska 3B","Points":2029,"X":271,"Y":430,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231803Z"},{"ID":59637,"Name":"Peter","Points":408,"X":280,"Y":589,"Continent":"K52","Bonus":0,"PlayerID":698766178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231803Z"},{"ID":59638,"Name":"Wioska Kamilooo97","Points":694,"X":596,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":848882446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231804Z"},{"ID":59639,"Name":"KONFA TO MARKA, NARKA","Points":1719,"X":273,"Y":414,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231804Z"},{"ID":59640,"Name":"Wioska Koziok","Points":26,"X":725,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":849094319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231804Z"},{"ID":59641,"Name":"Wioska barbarzyƄska","Points":645,"X":431,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231804Z"},{"ID":59643,"Name":"100 Wioska barbarzyƄska","Points":3124,"X":547,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231805Z"},{"ID":59644,"Name":"Wioska kafejtor","Points":227,"X":714,"Y":614,"Continent":"K67","Bonus":0,"PlayerID":849119173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231805Z"},{"ID":59645,"Name":"025 Z","Points":273,"X":733,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":699718269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231805Z"},{"ID":59646,"Name":"SHIR","Points":468,"X":680,"Y":660,"Continent":"K66","Bonus":0,"PlayerID":8134135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231805Z"},{"ID":59648,"Name":"219...NORTH","Points":1268,"X":415,"Y":284,"Continent":"K24","Bonus":0,"PlayerID":6920960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231806Z"},{"ID":59649,"Name":"Wioska Deckuƛ oddaj rower","Points":77,"X":710,"Y":396,"Continent":"K37","Bonus":0,"PlayerID":699624570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231806Z"},{"ID":59650,"Name":"Wioska barbarzyƄska","Points":993,"X":384,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231806Z"},{"ID":59651,"Name":"SHAKARA","Points":478,"X":332,"Y":674,"Continent":"K63","Bonus":0,"PlayerID":699056677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231806Z"},{"ID":59652,"Name":"Tupot maƂych nĂłĆŒek 1","Points":307,"X":258,"Y":477,"Continent":"K42","Bonus":0,"PlayerID":7012651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231807Z"},{"ID":59653,"Name":"Osada koczownikĂłw","Points":598,"X":630,"Y":700,"Continent":"K76","Bonus":2,"PlayerID":6818593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231807Z"},{"ID":59654,"Name":"Wioska lubiszT0","Points":162,"X":739,"Y":508,"Continent":"K57","Bonus":0,"PlayerID":3295619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231807Z"},{"ID":59655,"Name":"Wioska barbarzyƄska","Points":731,"X":362,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59655","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231807Z"},{"ID":59656,"Name":"KONFA TO MARKA, NARKA","Points":2077,"X":281,"Y":421,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231808Z"},{"ID":59657,"Name":"Wioska PEPUS","Points":146,"X":606,"Y":287,"Continent":"K26","Bonus":0,"PlayerID":699238678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231808Z"},{"ID":59658,"Name":"Wioska barbarzyƄska","Points":256,"X":332,"Y":333,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231808Z"},{"ID":59659,"Name":"Wioska barbarzyƄska","Points":104,"X":730,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231809Z"},{"ID":59660,"Name":"016","Points":1894,"X":396,"Y":285,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231809Z"},{"ID":59661,"Name":"0105","Points":923,"X":706,"Y":379,"Continent":"K37","Bonus":5,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231809Z"},{"ID":59662,"Name":"Arczi997 09","Points":84,"X":266,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":849055181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231809Z"},{"ID":59663,"Name":"Malgagovo","Points":249,"X":701,"Y":372,"Continent":"K37","Bonus":0,"PlayerID":849112369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23181Z"},{"ID":59664,"Name":"Wioska barbarzyƄska","Points":65,"X":266,"Y":469,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23181Z"},{"ID":59665,"Name":"K66","Points":636,"X":699,"Y":637,"Continent":"K66","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23181Z"},{"ID":59666,"Name":"Wioska dami991","Points":2036,"X":348,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":699777556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23181Z"},{"ID":59667,"Name":"Twierdza (CSA-X)","Points":5136,"X":435,"Y":404,"Continent":"K44","Bonus":31,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231811Z"},{"ID":59668,"Name":"Twierdza (CSA-Z)","Points":6873,"X":435,"Y":405,"Continent":"K44","Bonus":32,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231811Z"},{"ID":59669,"Name":"Wioska liƛcia","Points":1005,"X":501,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":849076953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231811Z"},{"ID":59670,"Name":"Wioska sadomaso","Points":350,"X":332,"Y":514,"Continent":"K53","Bonus":0,"PlayerID":849117695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231811Z"},{"ID":59671,"Name":"Wioska Bacik1906","Points":26,"X":487,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":849116980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231811Z"},{"ID":59672,"Name":"Wioska barbarzyƄska","Points":1814,"X":710,"Y":399,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231812Z"},{"ID":59673,"Name":"Wioska kizak1","Points":1372,"X":640,"Y":694,"Continent":"K66","Bonus":0,"PlayerID":848953472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231812Z"},{"ID":59674,"Name":"Wioska","Points":1578,"X":335,"Y":337,"Continent":"K33","Bonus":0,"PlayerID":8758298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231812Z"},{"ID":59675,"Name":"Wioska barbarzyƄska","Points":77,"X":264,"Y":530,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231813Z"},{"ID":59676,"Name":"Wioska barbarzyƄska","Points":300,"X":728,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231813Z"},{"ID":59677,"Name":"North 089","Points":3757,"X":512,"Y":269,"Continent":"K25","Bonus":8,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231814Z"},{"ID":59678,"Name":"Wioska BedsideBrick477","Points":104,"X":454,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":849107391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231814Z"},{"ID":59679,"Name":"Wioska barbarzyƄska","Points":1193,"X":740,"Y":518,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231814Z"},{"ID":59680,"Name":"Wioska barbarzyƄska","Points":60,"X":661,"Y":672,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231815Z"},{"ID":59681,"Name":"$014$ Ramzes","Points":465,"X":300,"Y":623,"Continent":"K63","Bonus":0,"PlayerID":699550876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231815Z"},{"ID":59682,"Name":"Wioska barbarzyƄska","Points":335,"X":339,"Y":322,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231815Z"},{"ID":59683,"Name":"PóƂnocny Bagdad","Points":2111,"X":639,"Y":312,"Continent":"K36","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231815Z"},{"ID":59684,"Name":"K67 41","Points":213,"X":704,"Y":614,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231815Z"},{"ID":59685,"Name":"Wioska barbarzyƄska","Points":1169,"X":390,"Y":713,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231816Z"},{"ID":59687,"Name":"PPF-36","Points":847,"X":575,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231816Z"},{"ID":59688,"Name":"Wioska barbarzyƄska","Points":84,"X":568,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":6425087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231816Z"},{"ID":59689,"Name":"Wioska barbarzyƄska","Points":2472,"X":372,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231816Z"},{"ID":59690,"Name":"Wioska bestleevatican","Points":1428,"X":318,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849073156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231817Z"},{"ID":59691,"Name":"PPF-53","Points":157,"X":520,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231817Z"},{"ID":59692,"Name":"Wioska zbawiciel4","Points":64,"X":497,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":699751887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231817Z"},{"ID":59693,"Name":"Wioska barbarzyƄska","Points":207,"X":327,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231817Z"},{"ID":59694,"Name":"001","Points":500,"X":691,"Y":635,"Continent":"K66","Bonus":0,"PlayerID":98294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231818Z"},{"ID":59695,"Name":"Wioska barbarzyƄska","Points":604,"X":407,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":699393759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231818Z"},{"ID":59696,"Name":"Meh","Points":553,"X":612,"Y":715,"Continent":"K76","Bonus":0,"PlayerID":848883791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231818Z"},{"ID":59698,"Name":"Wioska barbarzyƄska","Points":1814,"X":708,"Y":390,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231819Z"},{"ID":59700,"Name":"Wioska barbarzyƄska","Points":434,"X":589,"Y":717,"Continent":"K75","Bonus":0,"PlayerID":848995242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231819Z"},{"ID":59701,"Name":"Wioska Mikkerland","Points":269,"X":737,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":762859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231819Z"},{"ID":59702,"Name":"104","Points":687,"X":736,"Y":466,"Continent":"K47","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231819Z"},{"ID":59704,"Name":"Wioska barbarzyƄska","Points":151,"X":740,"Y":514,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23182Z"},{"ID":59705,"Name":"Twierdza (MzM)","Points":3041,"X":595,"Y":564,"Continent":"K55","Bonus":28,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23182Z"},{"ID":59706,"Name":"miglanc06","Points":682,"X":350,"Y":314,"Continent":"K33","Bonus":0,"PlayerID":849119328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23182Z"},{"ID":59707,"Name":"SpiĆŒ","Points":2688,"X":279,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":849049288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23182Z"},{"ID":59708,"Name":"Wioska barbarzyƄska","Points":416,"X":656,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231821Z"},{"ID":59710,"Name":"budowa 08","Points":545,"X":600,"Y":712,"Continent":"K76","Bonus":0,"PlayerID":7139820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231821Z"},{"ID":59711,"Name":"Wioska balkres1","Points":237,"X":263,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":849118998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231821Z"},{"ID":59712,"Name":"Wioska barbarzyƄska","Points":101,"X":607,"Y":714,"Continent":"K76","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231822Z"},{"ID":59713,"Name":"Wioska kuba987","Points":97,"X":679,"Y":348,"Continent":"K36","Bonus":0,"PlayerID":699622958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231822Z"},{"ID":59714,"Name":"Wioska barbarzyƄska","Points":184,"X":734,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":6510480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231822Z"},{"ID":59716,"Name":"Wioska barbarzyƄska","Points":1019,"X":392,"Y":706,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231822Z"},{"ID":59717,"Name":"046. tomnado","Points":273,"X":679,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231823Z"},{"ID":59718,"Name":"Osada koczownikĂłw","Points":3142,"X":644,"Y":692,"Continent":"K66","Bonus":5,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231823Z"},{"ID":59719,"Name":"Wioska WhiteMuffin","Points":32,"X":658,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":699812824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231823Z"},{"ID":59720,"Name":"Wioska barbarzyƄska","Points":161,"X":360,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231823Z"},{"ID":59722,"Name":"#146#","Points":1055,"X":676,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231824Z"},{"ID":59723,"Name":"Wioska barbarzyƄska","Points":578,"X":597,"Y":723,"Continent":"K75","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231824Z"},{"ID":59724,"Name":"Wioska38","Points":764,"X":327,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231824Z"},{"ID":59725,"Name":"Wioska Pan ƚwirusek","Points":26,"X":271,"Y":538,"Continent":"K52","Bonus":0,"PlayerID":699831524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231825Z"},{"ID":59726,"Name":"105","Points":967,"X":713,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":7085502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231825Z"},{"ID":59727,"Name":"Bolszewo","Points":72,"X":338,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":699852606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231825Z"},{"ID":59728,"Name":"Wioska Krzysztofeks16","Points":182,"X":355,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":6298409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231825Z"},{"ID":59729,"Name":"Wioska barbarzyƄska","Points":165,"X":288,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231826Z"},{"ID":59730,"Name":"Wioska naja1920ruch","Points":26,"X":261,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":849088923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231826Z"},{"ID":59731,"Name":"Wioska szymoniasty2740","Points":352,"X":286,"Y":597,"Continent":"K52","Bonus":0,"PlayerID":849008396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231826Z"},{"ID":59732,"Name":"WB23","Points":1244,"X":297,"Y":367,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231826Z"},{"ID":59733,"Name":"Wioska maciejasz3k","Points":974,"X":719,"Y":587,"Continent":"K57","Bonus":0,"PlayerID":699699563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231827Z"},{"ID":59734,"Name":"Wioska cyaaaa2","Points":134,"X":324,"Y":494,"Continent":"K43","Bonus":0,"PlayerID":7560085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231827Z"},{"ID":59735,"Name":"Osada koczownikĂłw","Points":577,"X":292,"Y":603,"Continent":"K62","Bonus":9,"PlayerID":699321518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231827Z"},{"ID":59736,"Name":"141.Stradi","Points":215,"X":413,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231828Z"},{"ID":59737,"Name":"Wioska barbarzyƄska","Points":139,"X":328,"Y":658,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231828Z"},{"ID":59738,"Name":"Wioska barbarzyƄska","Points":43,"X":461,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231828Z"},{"ID":59739,"Name":"WB35","Points":835,"X":289,"Y":383,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231828Z"},{"ID":59740,"Name":"Wioska barbarzyƄska","Points":148,"X":267,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231829Z"},{"ID":59741,"Name":"Wioska Omikronmen","Points":1733,"X":609,"Y":506,"Continent":"K56","Bonus":0,"PlayerID":849095448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231829Z"},{"ID":59742,"Name":"35 koczownikĂłw A","Points":1895,"X":273,"Y":433,"Continent":"K42","Bonus":3,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23183Z"},{"ID":59743,"Name":"Wioska Chronek09","Points":658,"X":282,"Y":597,"Continent":"K52","Bonus":0,"PlayerID":849110916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23183Z"},{"ID":59744,"Name":"Wioska barbarzyƄska","Points":544,"X":351,"Y":323,"Continent":"K33","Bonus":0,"PlayerID":8772425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23183Z"},{"ID":59745,"Name":"Wioska Mc Fly","Points":128,"X":728,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":849118930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23183Z"},{"ID":59746,"Name":"WB26","Points":1243,"X":299,"Y":368,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59746","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231831Z"},{"ID":59747,"Name":"Wioska Rewson","Points":26,"X":735,"Y":553,"Continent":"K57","Bonus":0,"PlayerID":849084911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231831Z"},{"ID":59748,"Name":"Jehu_Kingdom_67","Points":997,"X":716,"Y":398,"Continent":"K37","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231831Z"},{"ID":59749,"Name":"Osada koczownikĂłw","Points":919,"X":344,"Y":681,"Continent":"K63","Bonus":5,"PlayerID":6354098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231831Z"},{"ID":59750,"Name":"Wioska Zelmer","Points":484,"X":418,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":849117551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231832Z"},{"ID":59751,"Name":"PóƂnocny Bagdad","Points":2237,"X":615,"Y":291,"Continent":"K26","Bonus":7,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231832Z"},{"ID":59752,"Name":"GOAT","Points":208,"X":289,"Y":380,"Continent":"K32","Bonus":0,"PlayerID":699535590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231832Z"},{"ID":59753,"Name":"Wioska barbarzyƄska","Points":754,"X":334,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231832Z"},{"ID":59754,"Name":"Wioska Future Traveler","Points":26,"X":262,"Y":523,"Continent":"K52","Bonus":0,"PlayerID":8399822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231833Z"},{"ID":59755,"Name":"PPF-41","Points":650,"X":582,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231833Z"},{"ID":59756,"Name":"O148","Points":1236,"X":311,"Y":641,"Continent":"K63","Bonus":4,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231833Z"},{"ID":59757,"Name":"Wioska barbarzyƄska","Points":26,"X":290,"Y":602,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231833Z"},{"ID":59758,"Name":"Wioska barbarzyƄska","Points":844,"X":737,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231834Z"},{"ID":59760,"Name":"K66","Points":598,"X":697,"Y":628,"Continent":"K66","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231834Z"},{"ID":59762,"Name":"Wioska barbarzyƄska","Points":1168,"X":397,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231834Z"},{"ID":59763,"Name":"WB40","Points":427,"X":292,"Y":387,"Continent":"K32","Bonus":1,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231835Z"},{"ID":59764,"Name":"Wioska Minikod","Points":26,"X":471,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":849082839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231835Z"},{"ID":59765,"Name":"Wioska barbarzyƄska","Points":1168,"X":403,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231835Z"},{"ID":59766,"Name":"Wioska piter787878","Points":153,"X":742,"Y":494,"Continent":"K47","Bonus":0,"PlayerID":848982635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231835Z"},{"ID":59767,"Name":"Wioska barbarzyƄska","Points":556,"X":729,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231836Z"},{"ID":59768,"Name":"181 002","Points":144,"X":730,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":7272223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231836Z"},{"ID":59770,"Name":"Wioska sabaciorz","Points":26,"X":402,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":849101403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231836Z"},{"ID":59771,"Name":"Wioska t0m45","Points":192,"X":264,"Y":548,"Continent":"K52","Bonus":0,"PlayerID":849111121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231836Z"},{"ID":59772,"Name":"Wioska barbarzyƄska","Points":678,"X":590,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231837Z"},{"ID":59773,"Name":"Wioska barbarzyƄska","Points":127,"X":375,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231837Z"},{"ID":59774,"Name":"[844] Odludzie","Points":2659,"X":726,"Y":431,"Continent":"K47","Bonus":0,"PlayerID":848985692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231837Z"},{"ID":59775,"Name":"Orzechowa United","Points":1108,"X":586,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849112050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231838Z"},{"ID":59776,"Name":"Wioska barbarzyƄska","Points":1252,"X":368,"Y":309,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231838Z"},{"ID":59777,"Name":"Wioska MalinowaZaba","Points":812,"X":738,"Y":543,"Continent":"K57","Bonus":0,"PlayerID":699677277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231838Z"},{"ID":59778,"Name":"Wioska barbarzyƄska","Points":471,"X":734,"Y":539,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231838Z"},{"ID":59779,"Name":"Wioska barbarzyƄska","Points":47,"X":269,"Y":481,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231839Z"},{"ID":59780,"Name":"PóƂnocny Bagdad","Points":1729,"X":623,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231839Z"},{"ID":59782,"Name":"Wioska Strusiek","Points":422,"X":735,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":699749184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231839Z"},{"ID":59783,"Name":"Osada koczownikĂłw","Points":344,"X":257,"Y":503,"Continent":"K52","Bonus":1,"PlayerID":699425709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231839Z"},{"ID":59784,"Name":"K67 46","Points":132,"X":703,"Y":631,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231839Z"},{"ID":59785,"Name":"051","Points":482,"X":688,"Y":353,"Continent":"K36","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23184Z"},{"ID":59786,"Name":"Wioska Adison II ƚmiaƂy","Points":478,"X":365,"Y":308,"Continent":"K33","Bonus":0,"PlayerID":849113226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23184Z"},{"ID":59787,"Name":"Wioska barbarzyƄska","Points":818,"X":707,"Y":381,"Continent":"K37","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23184Z"},{"ID":59788,"Name":"Wioska Adikson16","Points":143,"X":730,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":849114112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231841Z"},{"ID":59789,"Name":"PóƂnocny Bagdad","Points":963,"X":599,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231841Z"},{"ID":59790,"Name":"ƁódĆș","Points":1279,"X":708,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":698248308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231841Z"},{"ID":59791,"Name":"North 086","Points":3356,"X":488,"Y":257,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231842Z"},{"ID":59792,"Name":"Wioska jaromirek","Points":764,"X":530,"Y":261,"Continent":"K25","Bonus":0,"PlayerID":7516892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231842Z"},{"ID":59793,"Name":"Wioska barbarzyƄska","Points":806,"X":547,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231842Z"},{"ID":59794,"Name":"Wioska goodvibegoodman","Points":1284,"X":631,"Y":695,"Continent":"K66","Bonus":0,"PlayerID":848909292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231842Z"},{"ID":59795,"Name":"Wioska Akantos","Points":50,"X":556,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":698262808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231843Z"},{"ID":59797,"Name":"KADRONGE","Points":1194,"X":693,"Y":363,"Continent":"K36","Bonus":0,"PlayerID":3957237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231843Z"},{"ID":59798,"Name":"Wioska nawi4","Points":1070,"X":393,"Y":713,"Continent":"K73","Bonus":0,"PlayerID":7802435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231843Z"},{"ID":59799,"Name":"#152#","Points":871,"X":645,"Y":688,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231844Z"},{"ID":59800,"Name":"Wioska slawekkrasulak","Points":26,"X":735,"Y":485,"Continent":"K47","Bonus":0,"PlayerID":699876653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231844Z"},{"ID":59801,"Name":"#156#","Points":1776,"X":621,"Y":711,"Continent":"K76","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231844Z"},{"ID":59802,"Name":"Wioska barbarzyƄska","Points":44,"X":658,"Y":680,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231845Z"},{"ID":59803,"Name":"#145#","Points":1006,"X":675,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231845Z"},{"ID":59806,"Name":"Wioska barbarzyƄska","Points":368,"X":259,"Y":521,"Continent":"K52","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231845Z"},{"ID":59807,"Name":"Osada koczownikĂłw","Points":845,"X":561,"Y":266,"Continent":"K25","Bonus":1,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231845Z"},{"ID":59808,"Name":"Wioska Poranna Gwiazda","Points":212,"X":605,"Y":711,"Continent":"K76","Bonus":0,"PlayerID":699753863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231846Z"},{"ID":59809,"Name":"Wioska barbarzyƄska","Points":719,"X":728,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231846Z"},{"ID":59811,"Name":"Wioska barbarzyƄska","Points":637,"X":534,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231846Z"},{"ID":59812,"Name":"Wioska barbarzyƄska","Points":144,"X":275,"Y":583,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231847Z"},{"ID":59813,"Name":"Ć»elaza Potęga","Points":226,"X":614,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":849052195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231847Z"},{"ID":59814,"Name":"Spray","Points":724,"X":680,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":7973893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231847Z"},{"ID":59815,"Name":"Wioska szalony iwan","Points":531,"X":734,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":8772923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231847Z"},{"ID":59816,"Name":"Wioska orko3","Points":167,"X":718,"Y":601,"Continent":"K67","Bonus":0,"PlayerID":7069895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231847Z"},{"ID":59817,"Name":"031Luchowski","Points":1631,"X":508,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231848Z"},{"ID":59818,"Name":"Wioska barbarzyƄska","Points":79,"X":549,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231848Z"},{"ID":59819,"Name":"39 barbarzyƄska 2B","Points":1879,"X":264,"Y":444,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231848Z"},{"ID":59821,"Name":"Wioska barbarzyƄska","Points":160,"X":330,"Y":662,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231849Z"},{"ID":59822,"Name":"Osada koczownikĂłw","Points":829,"X":580,"Y":723,"Continent":"K75","Bonus":6,"PlayerID":6299408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231849Z"},{"ID":59823,"Name":"Wioska barbarzyƄska","Points":48,"X":373,"Y":699,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231849Z"},{"ID":59824,"Name":"Zaplecze Gubernia","Points":1757,"X":354,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231849Z"},{"ID":59825,"Name":"AKIKU","Points":866,"X":666,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":2315542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23185Z"},{"ID":59826,"Name":"Wioska barbarzyƄska","Points":1355,"X":267,"Y":496,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23185Z"},{"ID":59827,"Name":"PPF-59","Points":53,"X":562,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23185Z"},{"ID":59828,"Name":"Wioska barbarzyƄska","Points":360,"X":598,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23185Z"},{"ID":59829,"Name":"Wioska epstein.","Points":123,"X":742,"Y":491,"Continent":"K47","Bonus":0,"PlayerID":848905784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231851Z"},{"ID":59830,"Name":"Kami 6","Points":568,"X":741,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":849002796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231851Z"},{"ID":59831,"Name":"Wioska RED87","Points":97,"X":735,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":699836388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231851Z"},{"ID":59832,"Name":"Wioska barbarzyƄska","Points":1837,"X":361,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":698160606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231852Z"},{"ID":59833,"Name":"Wypizdowo","Points":189,"X":676,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":849119631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231852Z"},{"ID":59834,"Name":"Wioska sendzia555","Points":128,"X":264,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":6294942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231852Z"},{"ID":59835,"Name":"No.31","Points":363,"X":473,"Y":735,"Continent":"K74","Bonus":3,"PlayerID":698826986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231853Z"},{"ID":59836,"Name":"Wioska drewniak","Points":176,"X":719,"Y":408,"Continent":"K47","Bonus":0,"PlayerID":849119848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231853Z"},{"ID":59837,"Name":"Wioska barbarzyƄska","Points":802,"X":594,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849100406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231853Z"},{"ID":59838,"Name":"078KP","Points":80,"X":489,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231854Z"},{"ID":59839,"Name":"Wioska barbarzyƄska","Points":1355,"X":670,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231854Z"},{"ID":59840,"Name":"Wioska solek4321","Points":1059,"X":260,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":699808655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231854Z"},{"ID":59841,"Name":"Wioska barbarzyƄska","Points":94,"X":645,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231854Z"},{"ID":59842,"Name":"Wioska bartki37","Points":102,"X":267,"Y":539,"Continent":"K52","Bonus":0,"PlayerID":849016844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231855Z"},{"ID":59843,"Name":"Sony 911","Points":809,"X":683,"Y":654,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231855Z"},{"ID":59845,"Name":"Wioska barbarzyƄska","Points":748,"X":728,"Y":575,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231855Z"},{"ID":59846,"Name":"Wioska barbarzyƄska","Points":189,"X":270,"Y":551,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231855Z"},{"ID":59847,"Name":"039. Gloria Victis","Points":868,"X":276,"Y":578,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231856Z"},{"ID":59849,"Name":"Wioska barbarzyƄska","Points":52,"X":259,"Y":487,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231856Z"},{"ID":59851,"Name":"Wioska WitoldWolski","Points":153,"X":629,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":849119432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231856Z"},{"ID":59852,"Name":"Wioska barbarzyƄska","Points":453,"X":733,"Y":500,"Continent":"K57","Bonus":0,"PlayerID":942959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231857Z"},{"ID":59853,"Name":"Wioska barbarzyƄska","Points":70,"X":564,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231857Z"},{"ID":59854,"Name":"PóƂnocny Bagdad","Points":2017,"X":618,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231857Z"},{"ID":59855,"Name":"Wioska Chwedi","Points":1011,"X":388,"Y":288,"Continent":"K23","Bonus":0,"PlayerID":848958005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231857Z"},{"ID":59856,"Name":"Wioska barbarzyƄska","Points":1072,"X":673,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231858Z"},{"ID":59857,"Name":"Osada koczownikĂłw","Points":939,"X":730,"Y":560,"Continent":"K57","Bonus":6,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231858Z"},{"ID":59858,"Name":"079 - Budowanko!","Points":150,"X":510,"Y":742,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231858Z"},{"ID":59859,"Name":"Wioska ..Tomek..","Points":2214,"X":585,"Y":590,"Continent":"K55","Bonus":0,"PlayerID":849004759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231858Z"},{"ID":59860,"Name":"Wioska barbarzyƄska","Points":412,"X":261,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231859Z"},{"ID":59861,"Name":"Wioska festher","Points":1219,"X":459,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":849117362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231859Z"},{"ID":59862,"Name":"Wioska bielacz","Points":845,"X":275,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":849096265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231859Z"},{"ID":59863,"Name":"Sony 911","Points":1024,"X":692,"Y":642,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231859Z"},{"ID":59864,"Name":"Wioska beast01","Points":26,"X":464,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":699853286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23186Z"},{"ID":59865,"Name":"032Drewno","Points":2485,"X":481,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23186Z"},{"ID":59866,"Name":"Wioska marekwalczyk","Points":214,"X":624,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":699155679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23186Z"},{"ID":59867,"Name":"054 - Budowanko!","Points":2438,"X":508,"Y":733,"Continent":"K75","Bonus":1,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231861Z"},{"ID":59868,"Name":"BORKOS","Points":1606,"X":721,"Y":398,"Continent":"K37","Bonus":0,"PlayerID":3487721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231861Z"},{"ID":59870,"Name":"Wioska barbarzyƄska","Points":36,"X":301,"Y":631,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231861Z"},{"ID":59871,"Name":"Wioska barbarzyƄska","Points":568,"X":635,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":848987051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231861Z"},{"ID":59872,"Name":"hyniu 2112","Points":288,"X":265,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":849094061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231862Z"},{"ID":59873,"Name":"073KP","Points":320,"X":466,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231862Z"},{"ID":59874,"Name":"Wioska barbarzyƄska","Points":70,"X":372,"Y":695,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231862Z"},{"ID":59875,"Name":"Radiowa","Points":1032,"X":723,"Y":565,"Continent":"K57","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231862Z"},{"ID":59876,"Name":"Wioska BastianCHW","Points":26,"X":728,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":849061406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231863Z"},{"ID":59877,"Name":"Wioska Varendial x Visyq","Points":26,"X":338,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":848977748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231863Z"},{"ID":59878,"Name":"0124","Points":519,"X":721,"Y":421,"Continent":"K47","Bonus":6,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231863Z"},{"ID":59879,"Name":"akuku","Points":589,"X":551,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":6425087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231863Z"},{"ID":59880,"Name":"Wioska barbarzyƄska","Points":120,"X":320,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231863Z"},{"ID":59881,"Name":"Wioska Damian0704","Points":1976,"X":293,"Y":394,"Continent":"K32","Bonus":0,"PlayerID":849075744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231864Z"},{"ID":59882,"Name":"Wioska Maniek.W","Points":26,"X":639,"Y":692,"Continent":"K66","Bonus":0,"PlayerID":699831603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231864Z"},{"ID":59883,"Name":"Wioska barbarzyƄska","Points":242,"X":727,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231864Z"},{"ID":59884,"Name":"181","Points":572,"X":732,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":565043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231864Z"},{"ID":59885,"Name":"KASHYYYK 5","Points":246,"X":573,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699383121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231865Z"},{"ID":59886,"Name":"Wioska SzCzAkUs","Points":503,"X":338,"Y":669,"Continent":"K63","Bonus":0,"PlayerID":2684175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231865Z"},{"ID":59887,"Name":"Wioska barbarzyƄska","Points":882,"X":735,"Y":439,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231865Z"},{"ID":59888,"Name":"0000040Z","Points":3722,"X":277,"Y":568,"Continent":"K52","Bonus":1,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231865Z"},{"ID":59889,"Name":"Wioska Exodus303","Points":998,"X":614,"Y":503,"Continent":"K56","Bonus":0,"PlayerID":849119994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231866Z"},{"ID":59890,"Name":"0122","Points":489,"X":701,"Y":384,"Continent":"K37","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231866Z"},{"ID":59891,"Name":"Wioska barbarzyƄska","Points":61,"X":737,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231866Z"},{"ID":59892,"Name":"X.10","Points":461,"X":726,"Y":440,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231866Z"},{"ID":59893,"Name":"81 Calimera +747.000+-102","Points":206,"X":717,"Y":413,"Continent":"K47","Bonus":0,"PlayerID":2571536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231867Z"},{"ID":59894,"Name":"Albiorix","Points":307,"X":383,"Y":298,"Continent":"K23","Bonus":0,"PlayerID":3377503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231867Z"},{"ID":59895,"Name":"Wioska barbarzyƄska","Points":124,"X":621,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231867Z"},{"ID":59896,"Name":"Witten","Points":1813,"X":596,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849057450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231867Z"},{"ID":59897,"Name":"039 - Salamanca","Points":932,"X":720,"Y":600,"Continent":"K67","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231868Z"},{"ID":59898,"Name":"Wioska kijek","Points":38,"X":710,"Y":377,"Continent":"K37","Bonus":0,"PlayerID":849115304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231868Z"},{"ID":59899,"Name":"Wioska barbarzyƄska","Points":62,"X":703,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231868Z"},{"ID":59900,"Name":"Wioska Beast Palladin","Points":967,"X":733,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":3362925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231868Z"},{"ID":59901,"Name":"Zzz 13 trochę bardzo daleko","Points":358,"X":283,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231868Z"},{"ID":59902,"Name":"Wioska Dominoo1","Points":373,"X":734,"Y":560,"Continent":"K57","Bonus":0,"PlayerID":699748916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231869Z"},{"ID":59903,"Name":"Wioska mustanq123","Points":86,"X":441,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":6851059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231869Z"},{"ID":59904,"Name":"K67 32","Points":653,"X":714,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231869Z"},{"ID":59905,"Name":"081 - Budowanko!","Points":49,"X":495,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231869Z"},{"ID":59906,"Name":"Wioska marcinpaluch0211","Points":69,"X":729,"Y":429,"Continent":"K47","Bonus":0,"PlayerID":849120093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23187Z"},{"ID":59907,"Name":"Wioska barbarzyƄska","Points":149,"X":335,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23187Z"},{"ID":59908,"Name":"Wioska barbarzyƄska","Points":42,"X":439,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":1238300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23187Z"},{"ID":59909,"Name":"Wioska barbarzyƄska","Points":35,"X":396,"Y":712,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23187Z"},{"ID":59910,"Name":"Wioska barbarzyƄska","Points":35,"X":348,"Y":685,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231871Z"},{"ID":59911,"Name":"North 075","Points":3243,"X":502,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231871Z"},{"ID":59912,"Name":"Wioska wiNo","Points":26,"X":412,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":849095756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231871Z"},{"ID":59913,"Name":"Orkowi Zawodnicy Dominują Rybki","Points":75,"X":573,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231872Z"},{"ID":59914,"Name":"Wioska Segadorr","Points":26,"X":717,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":8083365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231872Z"},{"ID":59915,"Name":"Osada koczownikĂłw","Points":112,"X":622,"Y":711,"Continent":"K76","Bonus":2,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231872Z"},{"ID":59916,"Name":"082 - Budowanko!","Points":50,"X":531,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231872Z"},{"ID":59917,"Name":"O161","Points":899,"X":321,"Y":660,"Continent":"K63","Bonus":9,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231873Z"},{"ID":59919,"Name":"Wioska barbarzyƄska","Points":176,"X":348,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231873Z"},{"ID":59920,"Name":"Wioska bzdenio","Points":82,"X":733,"Y":562,"Continent":"K57","Bonus":0,"PlayerID":867191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231873Z"},{"ID":59921,"Name":"228 |","Points":211,"X":727,"Y":415,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231873Z"},{"ID":59922,"Name":"Wioska onek666","Points":379,"X":588,"Y":281,"Continent":"K25","Bonus":0,"PlayerID":849032413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231874Z"},{"ID":59923,"Name":"047","Points":560,"X":725,"Y":410,"Continent":"K47","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231874Z"},{"ID":59924,"Name":"Wioska barbarzyƄska","Points":32,"X":454,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231874Z"},{"ID":59925,"Name":"North 087","Points":2920,"X":498,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231875Z"},{"ID":59926,"Name":"SERWAR","Points":1574,"X":287,"Y":383,"Continent":"K32","Bonus":0,"PlayerID":849119528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231875Z"},{"ID":59927,"Name":"Wioska barbarzyƄska","Points":45,"X":386,"Y":289,"Continent":"K23","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231875Z"},{"ID":59928,"Name":"Wioska japacz","Points":26,"X":273,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":7809316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231876Z"},{"ID":59929,"Name":"Wioska barbarzyƄska","Points":519,"X":630,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231876Z"},{"ID":59930,"Name":"055 - Budowanko!","Points":2414,"X":477,"Y":732,"Continent":"K74","Bonus":2,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231876Z"},{"ID":59931,"Name":"Wioska pol992","Points":121,"X":667,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":8468862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231877Z"},{"ID":59932,"Name":"Wioska barbarzyƄska","Points":547,"X":580,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59932","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231877Z"},{"ID":59933,"Name":"Wioska Lego.","Points":215,"X":526,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":699778684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231877Z"},{"ID":59934,"Name":"Wioska Pietrasfryzjer","Points":590,"X":693,"Y":632,"Continent":"K66","Bonus":0,"PlayerID":699866225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231877Z"},{"ID":59935,"Name":"Wioska barbarzyƄska","Points":41,"X":328,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231878Z"},{"ID":59936,"Name":"Wioska barbarzyƄska","Points":1212,"X":667,"Y":326,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231878Z"},{"ID":59938,"Name":"o023","Points":2605,"X":601,"Y":720,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231878Z"},{"ID":59939,"Name":"Wioska barbarzyƄska","Points":34,"X":283,"Y":404,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231878Z"},{"ID":59940,"Name":"0127","Points":505,"X":699,"Y":381,"Continent":"K36","Bonus":0,"PlayerID":698416970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231879Z"},{"ID":59941,"Name":"NO. 00","Points":424,"X":268,"Y":474,"Continent":"K42","Bonus":0,"PlayerID":849118262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231879Z"},{"ID":59942,"Name":"Wioska barbarzyƄska","Points":539,"X":381,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231879Z"},{"ID":59943,"Name":"Wioska damiano3106","Points":129,"X":396,"Y":288,"Continent":"K23","Bonus":0,"PlayerID":848940223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231879Z"},{"ID":59944,"Name":"Wioska barbarzyƄska","Points":136,"X":358,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23188Z"},{"ID":59945,"Name":"Wioska barbarzyƄska","Points":198,"X":599,"Y":279,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23188Z"},{"ID":59946,"Name":"Wioska barbarzyƄska","Points":278,"X":457,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":699191455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23188Z"},{"ID":59947,"Name":"Wioska barbarzyƄska","Points":50,"X":656,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231881Z"},{"ID":59948,"Name":"Wioska barbarzyƄska","Points":1289,"X":718,"Y":392,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231881Z"},{"ID":59949,"Name":"Pomiot obƂędu","Points":317,"X":617,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":849118709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231881Z"},{"ID":59950,"Name":"Wioska barbarzyƄska","Points":523,"X":626,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":3600737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231882Z"},{"ID":59951,"Name":"Wioska barbarzyƄska","Points":44,"X":445,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231882Z"},{"ID":59952,"Name":"PóƂnocny Bagdad","Points":1865,"X":623,"Y":296,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231882Z"},{"ID":59953,"Name":"81 kybb.","Points":825,"X":577,"Y":278,"Continent":"K25","Bonus":0,"PlayerID":122492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231882Z"},{"ID":59954,"Name":"Wioska barbarzyƄska","Points":1650,"X":357,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231882Z"},{"ID":59955,"Name":"Wioska barbarzyƄska","Points":613,"X":717,"Y":415,"Continent":"K47","Bonus":1,"PlayerID":8325700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231883Z"},{"ID":59957,"Name":"Wioska barbarzyƄska","Points":803,"X":735,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231883Z"},{"ID":59958,"Name":"Wioska barbarzyƄska","Points":39,"X":303,"Y":367,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231883Z"},{"ID":59959,"Name":"Gwenville 017","Points":474,"X":453,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231884Z"},{"ID":59960,"Name":"Wioska Mufferr","Points":120,"X":617,"Y":297,"Continent":"K26","Bonus":0,"PlayerID":698455203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231884Z"},{"ID":59961,"Name":"033Nawisy lodowe","Points":2183,"X":472,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231884Z"},{"ID":59962,"Name":"001 Thais","Points":4942,"X":695,"Y":646,"Continent":"K66","Bonus":0,"PlayerID":699516250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231885Z"},{"ID":59963,"Name":"North 101","Points":2351,"X":476,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231885Z"},{"ID":59965,"Name":"Wioska barbarzyƄska","Points":78,"X":605,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231885Z"},{"ID":59966,"Name":"Wioska adamzagi","Points":380,"X":393,"Y":717,"Continent":"K73","Bonus":0,"PlayerID":849103914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231885Z"},{"ID":59967,"Name":"Wioska barbarzyƄska","Points":37,"X":487,"Y":741,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231886Z"},{"ID":59968,"Name":"Dark Place","Points":330,"X":417,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":699797065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231886Z"},{"ID":59969,"Name":"Wioska barbarzyƄska","Points":114,"X":302,"Y":359,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231886Z"},{"ID":59970,"Name":"Apollo8","Points":403,"X":737,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":6590149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231886Z"},{"ID":59971,"Name":"Wioska damianslipiec","Points":26,"X":296,"Y":371,"Continent":"K32","Bonus":0,"PlayerID":699865603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231886Z"},{"ID":59972,"Name":"Wioska DomiNio","Points":357,"X":290,"Y":377,"Continent":"K32","Bonus":0,"PlayerID":849109705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231887Z"},{"ID":59973,"Name":"Wioska barbarzyƄska","Points":100,"X":575,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":7589468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231887Z"},{"ID":59974,"Name":"001","Points":1669,"X":280,"Y":587,"Continent":"K52","Bonus":0,"PlayerID":8617889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231887Z"},{"ID":59975,"Name":"Wioska justyna010114","Points":446,"X":724,"Y":413,"Continent":"K47","Bonus":0,"PlayerID":849118261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231887Z"},{"ID":59976,"Name":"Wioska barbarzyƄska","Points":571,"X":377,"Y":697,"Continent":"K63","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231888Z"},{"ID":59977,"Name":"PóƂnocny Bagdad","Points":1896,"X":613,"Y":289,"Continent":"K26","Bonus":8,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231888Z"},{"ID":59978,"Name":"Wioska mjk105","Points":26,"X":732,"Y":528,"Continent":"K57","Bonus":0,"PlayerID":849103876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231888Z"},{"ID":59979,"Name":"Wioska barbarzyƄska","Points":658,"X":395,"Y":716,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231888Z"},{"ID":59980,"Name":"81 Dorian888","Points":514,"X":499,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":6423275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231888Z"},{"ID":59981,"Name":"031","Points":942,"X":470,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231889Z"},{"ID":59982,"Name":"nic tu po mnie","Points":466,"X":482,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":849119862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231889Z"},{"ID":59983,"Name":"WB31","Points":974,"X":291,"Y":381,"Continent":"K32","Bonus":8,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231889Z"},{"ID":59984,"Name":"Trundugl","Points":958,"X":290,"Y":619,"Continent":"K62","Bonus":0,"PlayerID":849117196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231889Z"},{"ID":59985,"Name":"Wioska barbarzyƄska","Points":1143,"X":716,"Y":405,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23189Z"},{"ID":59986,"Name":"079 obrzeĆŒa","Points":1323,"X":265,"Y":560,"Continent":"K52","Bonus":8,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23189Z"},{"ID":59987,"Name":"Wioska barbarzyƄska","Points":32,"X":271,"Y":549,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23189Z"},{"ID":59988,"Name":"Wioska barbarzyƄska","Points":26,"X":464,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23189Z"},{"ID":59989,"Name":"Wioska barbarzyƄska","Points":172,"X":359,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231891Z"},{"ID":59990,"Name":"Wioska barbarzyƄska","Points":81,"X":350,"Y":317,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231891Z"},{"ID":59993,"Name":"North 088","Points":2915,"X":501,"Y":268,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231891Z"},{"ID":59995,"Name":"Wioska pisior18","Points":62,"X":610,"Y":290,"Continent":"K26","Bonus":0,"PlayerID":699551148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231891Z"},{"ID":59996,"Name":"Wioska jaro513","Points":228,"X":555,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":849118128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231892Z"},{"ID":59997,"Name":"Wioska barbarzyƄska","Points":116,"X":312,"Y":346,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231892Z"},{"ID":59998,"Name":"Wioska pogromca xcc","Points":176,"X":660,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":8926516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231892Z"},{"ID":59999,"Name":"034Dendystka","Points":2279,"X":474,"Y":740,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231893Z"},{"ID":60000,"Name":"Ks Konfederacja","Points":1643,"X":695,"Y":360,"Continent":"K36","Bonus":5,"PlayerID":848915730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231893Z"},{"ID":60001,"Name":"Wioska jozin4don","Points":500,"X":292,"Y":613,"Continent":"K62","Bonus":0,"PlayerID":849106548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231893Z"},{"ID":60002,"Name":"Wioska barbarzyƄska","Points":158,"X":353,"Y":689,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231893Z"},{"ID":60004,"Name":"New World","Points":1974,"X":425,"Y":724,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231894Z"},{"ID":60005,"Name":"Wioska skwarol888","Points":630,"X":398,"Y":281,"Continent":"K23","Bonus":0,"PlayerID":699741694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231894Z"},{"ID":60006,"Name":"PóƂnocny Bagdad","Points":909,"X":605,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231894Z"},{"ID":60007,"Name":"Wioska Jacymir15","Points":68,"X":538,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":849117536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231895Z"},{"ID":60008,"Name":"Wioska barbarzyƄska","Points":26,"X":724,"Y":566,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231895Z"},{"ID":60009,"Name":"Melina","Points":391,"X":276,"Y":416,"Continent":"K42","Bonus":0,"PlayerID":699854312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231895Z"},{"ID":60010,"Name":"Wioska Sir fojerman","Points":97,"X":690,"Y":366,"Continent":"K36","Bonus":0,"PlayerID":698885960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231895Z"},{"ID":60011,"Name":"Moja1","Points":1027,"X":724,"Y":422,"Continent":"K47","Bonus":0,"PlayerID":849114119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231896Z"},{"ID":60012,"Name":"Wioska barbarzyƄska","Points":137,"X":315,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231896Z"},{"ID":60013,"Name":"Wioska lukasz111","Points":237,"X":576,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":849066035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231896Z"},{"ID":60014,"Name":"Wioska barbarzyƄska","Points":27,"X":446,"Y":728,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231896Z"},{"ID":60015,"Name":"Wioska barbarzyƄska","Points":479,"X":522,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231897Z"},{"ID":60016,"Name":"Wioska gnom1","Points":301,"X":627,"Y":699,"Continent":"K66","Bonus":0,"PlayerID":849119476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231897Z"},{"ID":60017,"Name":"Wioska barbarzyƄska","Points":414,"X":598,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231897Z"},{"ID":60018,"Name":"zenek12","Points":289,"X":685,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":849118820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231897Z"},{"ID":60019,"Name":"47 barbarzyƄska","Points":645,"X":268,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231897Z"},{"ID":60020,"Name":"Pallet Town","Points":514,"X":268,"Y":542,"Continent":"K52","Bonus":0,"PlayerID":849119423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231898Z"},{"ID":60021,"Name":"Wioska ADiKxD","Points":55,"X":403,"Y":720,"Continent":"K74","Bonus":0,"PlayerID":6504658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231898Z"},{"ID":60022,"Name":"Alator","Points":393,"X":391,"Y":287,"Continent":"K23","Bonus":0,"PlayerID":3377503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231898Z"},{"ID":60023,"Name":"Wioska bartek145972","Points":339,"X":662,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":8942143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231898Z"},{"ID":60024,"Name":"Wioska barbarzyƄska","Points":101,"X":284,"Y":611,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231899Z"},{"ID":60025,"Name":"Osada koczownikĂłw","Points":809,"X":406,"Y":287,"Continent":"K24","Bonus":5,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231899Z"},{"ID":60026,"Name":"Wioska rutej123","Points":116,"X":284,"Y":591,"Continent":"K52","Bonus":0,"PlayerID":699720374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231899Z"},{"ID":60027,"Name":"Zzz 14 dalej niĆŒ daleko","Points":197,"X":280,"Y":586,"Continent":"K52","Bonus":0,"PlayerID":849084740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231899Z"},{"ID":60028,"Name":"Wioska Chmielu94","Points":115,"X":649,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":849105187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2319Z"},{"ID":60029,"Name":"Wioska barbarzyƄska","Points":88,"X":334,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2319Z"},{"ID":60031,"Name":"Wioska barbarzyƄska","Points":268,"X":728,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2319Z"},{"ID":60032,"Name":"Wioska Kampffliege","Points":112,"X":585,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849120421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2319Z"},{"ID":60033,"Name":"Wioska badidek","Points":26,"X":702,"Y":374,"Continent":"K37","Bonus":0,"PlayerID":9002278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231901Z"},{"ID":60034,"Name":"Wioska borowka73","Points":400,"X":732,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":2811568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231901Z"},{"ID":60035,"Name":"Wioska barbarzyƄska","Points":394,"X":371,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231901Z"},{"ID":60036,"Name":"Wioska Tomaszer12","Points":525,"X":670,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":849119407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231901Z"},{"ID":60037,"Name":"Wioska Wanderwoman","Points":500,"X":697,"Y":410,"Continent":"K46","Bonus":0,"PlayerID":849120438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231902Z"},{"ID":60038,"Name":"Wioska 181","Points":849,"X":410,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":849120129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231902Z"},{"ID":60039,"Name":"Wioska barbarzyƄska","Points":48,"X":266,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231902Z"},{"ID":60040,"Name":"PóƂnocny Bagdad","Points":719,"X":608,"Y":288,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231902Z"},{"ID":60042,"Name":"019","Points":1227,"X":394,"Y":283,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231903Z"},{"ID":60044,"Name":"Wioska barbarzyƄska","Points":445,"X":546,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231903Z"},{"ID":60045,"Name":"Wioska barbarzyƄska","Points":83,"X":714,"Y":385,"Continent":"K37","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231903Z"},{"ID":60046,"Name":"Wioska smerfy 22","Points":52,"X":384,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":849116819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60046","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231903Z"},{"ID":60047,"Name":"Wioska barbarzyƄska","Points":187,"X":304,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60047","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231903Z"},{"ID":60049,"Name":"CastAway !041","Points":423,"X":718,"Y":592,"Continent":"K57","Bonus":0,"PlayerID":9314079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60049","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231904Z"},{"ID":60050,"Name":"Wioska barbarzyƄska","Points":32,"X":738,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60050","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231904Z"},{"ID":60051,"Name":"Wioska barbarzyƄska","Points":362,"X":721,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60051","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231904Z"},{"ID":60052,"Name":"Osada koczownikĂłw","Points":408,"X":725,"Y":587,"Continent":"K57","Bonus":3,"PlayerID":699493750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60052","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231904Z"},{"ID":60053,"Name":"Wioska bonktrzmiel I","Points":255,"X":627,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":849120488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60053","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231905Z"},{"ID":60054,"Name":"PPF-38","Points":635,"X":529,"Y":259,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60054","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231905Z"},{"ID":60055,"Name":"Wioska barbarzyƄska","Points":57,"X":719,"Y":406,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60055","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231905Z"},{"ID":60056,"Name":"010 x","Points":1106,"X":273,"Y":557,"Continent":"K52","Bonus":5,"PlayerID":197581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60056","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231905Z"},{"ID":60057,"Name":"Miasteczko","Points":1011,"X":636,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":849046206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60057","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231906Z"},{"ID":60058,"Name":"Wioska barbarzyƄska","Points":465,"X":344,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":699191464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60058","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231906Z"},{"ID":60059,"Name":"Wioska Przemko duch","Points":627,"X":317,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":849119975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60059","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231906Z"},{"ID":60060,"Name":"Wioska barbarzyƄska","Points":156,"X":708,"Y":392,"Continent":"K37","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60060","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231906Z"},{"ID":60061,"Name":"40 Dol Blathanna","Points":472,"X":740,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":8976313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60061","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231906Z"},{"ID":60062,"Name":"North 077","Points":2913,"X":486,"Y":264,"Continent":"K24","Bonus":6,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60062","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231907Z"},{"ID":60063,"Name":"TuRawka","Points":165,"X":597,"Y":716,"Continent":"K75","Bonus":0,"PlayerID":849120285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60063","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231907Z"},{"ID":60064,"Name":"#159#","Points":653,"X":662,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60064","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231907Z"},{"ID":60065,"Name":"Wioska v3n1s","Points":180,"X":644,"Y":307,"Continent":"K36","Bonus":0,"PlayerID":849109875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60065","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231907Z"},{"ID":60066,"Name":"X.09","Points":456,"X":726,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":699737356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60066","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231908Z"},{"ID":60068,"Name":"PPF-42","Points":571,"X":536,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60068","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231908Z"},{"ID":60069,"Name":"Wioska Mandrysi","Points":295,"X":605,"Y":715,"Continent":"K76","Bonus":0,"PlayerID":849116044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60069","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231908Z"},{"ID":60070,"Name":"Osada koczownikĂłw","Points":816,"X":608,"Y":715,"Continent":"K76","Bonus":6,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60070","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231908Z"},{"ID":60071,"Name":"Wioska coreslaw","Points":200,"X":668,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":699564303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60071","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231909Z"},{"ID":60072,"Name":"Wioska barbarzyƄska","Points":437,"X":594,"Y":714,"Continent":"K75","Bonus":0,"PlayerID":699828685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60072","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231909Z"},{"ID":60073,"Name":"Wioska Sir Pazdan","Points":1281,"X":266,"Y":462,"Continent":"K42","Bonus":0,"PlayerID":9270302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60073","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231909Z"},{"ID":60074,"Name":"076","Points":285,"X":666,"Y":332,"Continent":"K36","Bonus":5,"PlayerID":2502956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60074","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231909Z"},{"ID":60075,"Name":"Wioska polska222","Points":228,"X":647,"Y":683,"Continent":"K66","Bonus":0,"PlayerID":849102833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60075","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23191Z"},{"ID":60076,"Name":"Wioska barbarzyƄska","Points":44,"X":376,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60076","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23191Z"},{"ID":60077,"Name":"Wioska barbarzyƄska","Points":206,"X":300,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60077","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23191Z"},{"ID":60078,"Name":"Wioska fikumiku111","Points":179,"X":741,"Y":526,"Continent":"K57","Bonus":0,"PlayerID":849055527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60078","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23191Z"},{"ID":60079,"Name":"#157#","Points":613,"X":609,"Y":718,"Continent":"K76","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60079","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231911Z"},{"ID":60081,"Name":"FP057","Points":1328,"X":446,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":699605333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60081","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231911Z"},{"ID":60082,"Name":"Wioska barbarzyƄska","Points":26,"X":394,"Y":281,"Continent":"K23","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60082","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231911Z"},{"ID":60083,"Name":"K67 33","Points":639,"X":718,"Y":603,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60083","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231911Z"},{"ID":60084,"Name":"Wioska miro2558","Points":196,"X":669,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":1170102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60084","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231911Z"},{"ID":60085,"Name":"Wioska barbarzyƄska","Points":598,"X":725,"Y":427,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60085","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231912Z"},{"ID":60086,"Name":"Wioska barbarzyƄska","Points":26,"X":265,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60086","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231912Z"},{"ID":60087,"Name":"PPF-39","Points":623,"X":521,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60087","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231912Z"},{"ID":60088,"Name":"NOT?","Points":998,"X":310,"Y":348,"Continent":"K33","Bonus":4,"PlayerID":9236866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60088","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231912Z"},{"ID":60089,"Name":"Wioska dorkness","Points":136,"X":700,"Y":620,"Continent":"K67","Bonus":0,"PlayerID":849055096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60089","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231913Z"},{"ID":60090,"Name":"Wioska barbarzyƄska","Points":390,"X":266,"Y":494,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60090","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231913Z"},{"ID":60091,"Name":"Wioska barbarzyƄska","Points":27,"X":580,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60091","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231913Z"},{"ID":60092,"Name":"kww10","Points":486,"X":728,"Y":547,"Continent":"K57","Bonus":0,"PlayerID":699831860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60092","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231914Z"},{"ID":60093,"Name":"Wioska barbarzyƄska","Points":131,"X":742,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60093","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231914Z"},{"ID":60094,"Name":"Wioska Zdrowa Pięta Achillesa","Points":26,"X":280,"Y":406,"Continent":"K42","Bonus":0,"PlayerID":699699650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60094","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231914Z"},{"ID":60095,"Name":"Zaplecze Osada 2","Points":1839,"X":357,"Y":312,"Continent":"K33","Bonus":2,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60095","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231914Z"},{"ID":60096,"Name":"Wioska","Points":298,"X":723,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":2516620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60096","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231915Z"},{"ID":60097,"Name":"48 barbarzyƄska","Points":646,"X":271,"Y":448,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60097","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231915Z"},{"ID":60098,"Name":"048","Points":511,"X":733,"Y":442,"Continent":"K47","Bonus":1,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60098","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231915Z"},{"ID":60099,"Name":"Wioska apysia","Points":200,"X":739,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":1322622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60099","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231916Z"},{"ID":60100,"Name":"oliwka. 1","Points":373,"X":290,"Y":600,"Continent":"K62","Bonus":0,"PlayerID":849078119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60100","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231916Z"},{"ID":60101,"Name":"Wioska jjaare","Points":802,"X":392,"Y":290,"Continent":"K23","Bonus":0,"PlayerID":7013660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60101","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231916Z"},{"ID":60102,"Name":"Wioska Miko6","Points":307,"X":732,"Y":525,"Continent":"K57","Bonus":0,"PlayerID":6704738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60102","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231916Z"},{"ID":60103,"Name":"Osada koczownikĂłw","Points":787,"X":579,"Y":271,"Continent":"K25","Bonus":8,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60103","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231917Z"},{"ID":60104,"Name":"Wioska Sir kamil 1999","Points":119,"X":374,"Y":572,"Continent":"K53","Bonus":0,"PlayerID":9182487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60104","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231917Z"},{"ID":60105,"Name":"koniec","Points":136,"X":626,"Y":698,"Continent":"K66","Bonus":0,"PlayerID":699883836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60105","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231917Z"},{"ID":60106,"Name":"5,56mm Grot","Points":974,"X":486,"Y":256,"Continent":"K24","Bonus":0,"PlayerID":3430969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60106","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231917Z"},{"ID":60107,"Name":"Wioska barbarzyƄska","Points":274,"X":378,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60107","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231918Z"},{"ID":60108,"Name":"Wioska Mario 76","Points":620,"X":453,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":699672060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60108","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231918Z"},{"ID":60109,"Name":"Wioska barbarzyƄska","Points":308,"X":737,"Y":534,"Continent":"K57","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60109","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231918Z"},{"ID":60110,"Name":"Wioska adahin","Points":487,"X":387,"Y":413,"Continent":"K43","Bonus":0,"PlayerID":7995033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60110","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231918Z"},{"ID":60111,"Name":"Wioska Kapral161","Points":276,"X":418,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":849098217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60111","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231919Z"},{"ID":60112,"Name":"Wioska barbarzyƄska","Points":264,"X":727,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60112","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231919Z"},{"ID":60113,"Name":"Wioska rere1995","Points":834,"X":271,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":1020792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60113","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231919Z"},{"ID":60114,"Name":"Wioska barbarzyƄska","Points":470,"X":730,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60114","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231919Z"},{"ID":60115,"Name":"Wioska adamcx91","Points":1323,"X":406,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":849111418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60115","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23192Z"},{"ID":60116,"Name":"North 105","Points":2591,"X":492,"Y":258,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60116","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23192Z"},{"ID":60117,"Name":"Wioska JungleBoyz","Points":5778,"X":616,"Y":408,"Continent":"K46","Bonus":0,"PlayerID":7915966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60117","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23192Z"},{"ID":60118,"Name":"Wioska barbarzyƄska","Points":1664,"X":736,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60118","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231921Z"},{"ID":60120,"Name":"Wioska barbarzyƄska","Points":364,"X":618,"Y":711,"Continent":"K76","Bonus":0,"PlayerID":849104491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60120","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231921Z"},{"ID":60121,"Name":"Wioska Latino","Points":26,"X":286,"Y":593,"Continent":"K52","Bonus":0,"PlayerID":848893447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60121","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231921Z"},{"ID":60122,"Name":"Wioska barbarzyƄska","Points":113,"X":360,"Y":694,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60122","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231921Z"},{"ID":60123,"Name":"Wioska Noto Wojsko","Points":26,"X":307,"Y":635,"Continent":"K63","Bonus":0,"PlayerID":849120051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60123","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231922Z"},{"ID":60124,"Name":"Wioska Krzysiek12","Points":73,"X":419,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":849117533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60124","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231922Z"},{"ID":60125,"Name":"KONFA TO MARKA, NARKA","Points":1946,"X":276,"Y":410,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60125","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231922Z"},{"ID":60126,"Name":"Wioska LOCODEMACONHA","Points":26,"X":294,"Y":370,"Continent":"K32","Bonus":0,"PlayerID":699832737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60126","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231922Z"},{"ID":60127,"Name":"#162#","Points":520,"X":659,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60127","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231923Z"},{"ID":60128,"Name":"Wioska MichaƂ zƂoƛliwy","Points":310,"X":295,"Y":615,"Continent":"K62","Bonus":0,"PlayerID":849107426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60128","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231923Z"},{"ID":60129,"Name":"039. 5spajk5","Points":494,"X":678,"Y":349,"Continent":"K36","Bonus":0,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60129","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231923Z"},{"ID":60131,"Name":"WschĂłd 004","Points":432,"X":708,"Y":616,"Continent":"K67","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60131","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231923Z"},{"ID":60133,"Name":"Wioska barbarzyƄska","Points":839,"X":725,"Y":420,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60133","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231924Z"},{"ID":60134,"Name":"181","Points":449,"X":656,"Y":328,"Continent":"K36","Bonus":0,"PlayerID":8890346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60134","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231924Z"},{"ID":60135,"Name":"Wioska barbarzyƄska","Points":125,"X":308,"Y":640,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60135","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231924Z"},{"ID":60136,"Name":"Wioska hubal3","Points":45,"X":419,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849030481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60136","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231925Z"},{"ID":60137,"Name":"Wioska barbarzyƄska","Points":356,"X":620,"Y":712,"Continent":"K76","Bonus":0,"PlayerID":849104491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60137","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231925Z"},{"ID":60139,"Name":"o021","Points":2307,"X":628,"Y":702,"Continent":"K76","Bonus":0,"PlayerID":699189792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60139","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231926Z"},{"ID":60140,"Name":"Wioska iSeAtakuj","Points":26,"X":712,"Y":402,"Continent":"K47","Bonus":0,"PlayerID":8095505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60140","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231926Z"},{"ID":60141,"Name":"Wioska barbarzyƄska","Points":407,"X":371,"Y":702,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60141","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231927Z"},{"ID":60142,"Name":"Wioska ptomptom","Points":615,"X":523,"Y":261,"Continent":"K25","Bonus":0,"PlayerID":699780721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60142","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231927Z"},{"ID":60143,"Name":"C0331","Points":1507,"X":268,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60143","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231928Z"},{"ID":60144,"Name":"Wioska Ankalagon Czarny","Points":268,"X":348,"Y":313,"Continent":"K33","Bonus":0,"PlayerID":1517450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60144","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231929Z"},{"ID":60145,"Name":"Wioska ERAS","Points":26,"X":712,"Y":387,"Continent":"K37","Bonus":0,"PlayerID":849120791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60145","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231929Z"},{"ID":60146,"Name":"Wioska barbarzyƄska","Points":540,"X":378,"Y":711,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60146","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23193Z"},{"ID":60147,"Name":"Wioska Kolekcjon","Points":140,"X":365,"Y":299,"Continent":"K23","Bonus":0,"PlayerID":849120526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60147","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23193Z"},{"ID":60148,"Name":"Wioska barbarzyƄska","Points":407,"X":376,"Y":705,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60148","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231931Z"},{"ID":60149,"Name":"Wioska matipo321","Points":113,"X":274,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":849114450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60149","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231931Z"},{"ID":60150,"Name":"Lord Lord Franek .#190","Points":896,"X":698,"Y":359,"Continent":"K36","Bonus":0,"PlayerID":698420691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60150","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231932Z"},{"ID":60151,"Name":"Wioska Rommel","Points":371,"X":260,"Y":516,"Continent":"K52","Bonus":0,"PlayerID":698983867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60151","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231932Z"},{"ID":60152,"Name":"Wioska Krejv95","Points":26,"X":286,"Y":600,"Continent":"K62","Bonus":0,"PlayerID":699554427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60152","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231933Z"},{"ID":60153,"Name":"Wioska barbarzyƄska","Points":220,"X":295,"Y":630,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60153","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231933Z"},{"ID":60154,"Name":"Stopy","Points":303,"X":279,"Y":407,"Continent":"K42","Bonus":0,"PlayerID":849108891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60154","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231934Z"},{"ID":60155,"Name":"125.Stradi","Points":1617,"X":449,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60155","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231934Z"},{"ID":60156,"Name":"Wioska Lodar93","Points":26,"X":346,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":9138661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60156","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231935Z"},{"ID":60157,"Name":"Wioska barbarzyƄska","Points":145,"X":450,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60157","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231935Z"},{"ID":60159,"Name":"041Szaraki","Points":1827,"X":476,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60159","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231936Z"},{"ID":60160,"Name":"Wioska KamykosXD","Points":70,"X":272,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":9128606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60160","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231936Z"},{"ID":60161,"Name":"059 - Budowanko!","Points":1635,"X":518,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60161","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231937Z"},{"ID":60162,"Name":"New World","Points":1863,"X":416,"Y":728,"Continent":"K74","Bonus":3,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60162","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231937Z"},{"ID":60163,"Name":"111","Points":295,"X":354,"Y":306,"Continent":"K33","Bonus":0,"PlayerID":698384726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60163","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231938Z"},{"ID":60164,"Name":"Wioska barbarzyƄska","Points":445,"X":566,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60164","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231938Z"},{"ID":60165,"Name":"Wioska rozyczka","Points":705,"X":493,"Y":742,"Continent":"K74","Bonus":0,"PlayerID":849120698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60165","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231939Z"},{"ID":60166,"Name":"Wioska Herkuless","Points":808,"X":413,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":699642954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60166","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23194Z"},{"ID":60167,"Name":"Wioska barbarzyƄska","Points":394,"X":406,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60167","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23194Z"},{"ID":60168,"Name":"Wioska Martynka2010","Points":66,"X":348,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849120865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60168","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231941Z"},{"ID":60169,"Name":"042KoƄcĂłwka","Points":1488,"X":466,"Y":741,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60169","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231941Z"},{"ID":60170,"Name":"Wioska kamien335","Points":54,"X":738,"Y":522,"Continent":"K57","Bonus":0,"PlayerID":8886999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60170","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231942Z"},{"ID":60171,"Name":"PóƂnocny Bagdad","Points":726,"X":610,"Y":285,"Continent":"K26","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60171","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231943Z"},{"ID":60172,"Name":"Wioska Zachariasz Grundbaum","Points":26,"X":435,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":849096979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60172","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231943Z"},{"ID":60173,"Name":"Wioska paviks","Points":26,"X":313,"Y":649,"Continent":"K63","Bonus":0,"PlayerID":849119486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60173","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231944Z"},{"ID":60174,"Name":"Aa4","Points":1436,"X":589,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60174","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231944Z"},{"ID":60175,"Name":"Wioska Knoxpl","Points":425,"X":705,"Y":617,"Continent":"K67","Bonus":0,"PlayerID":849108157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60175","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231945Z"},{"ID":60177,"Name":"juVe","Points":1124,"X":676,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":698167153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60177","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231945Z"},{"ID":60178,"Name":"119. Lida Aye","Points":1099,"X":675,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":8337151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60178","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231946Z"},{"ID":60179,"Name":"Wioska piotrus507","Points":26,"X":353,"Y":692,"Continent":"K63","Bonus":0,"PlayerID":3973432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60179","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231947Z"},{"ID":60180,"Name":"YYY","Points":1918,"X":476,"Y":742,"Continent":"K74","Bonus":0,"PlayerID":2293376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60180","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231947Z"},{"ID":60181,"Name":"Wioska patrykoss93","Points":26,"X":264,"Y":544,"Continent":"K52","Bonus":0,"PlayerID":3428961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60181","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231948Z"},{"ID":60182,"Name":"znam ostropesta 4","Points":648,"X":436,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":699777372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60182","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231948Z"},{"ID":60183,"Name":"wilcza wioska","Points":412,"X":643,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":848976720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60183","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231949Z"},{"ID":60184,"Name":"Wioska barbarzyƄska","Points":173,"X":298,"Y":629,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60184","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231949Z"},{"ID":60185,"Name":"Wioska igrane5000","Points":26,"X":730,"Y":437,"Continent":"K47","Bonus":0,"PlayerID":699655364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60185","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23195Z"},{"ID":60186,"Name":"090 obrzeĆŒa","Points":286,"X":266,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60186","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23195Z"},{"ID":60188,"Name":"Wioska barbarzyƄska","Points":1211,"X":732,"Y":456,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60188","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231951Z"},{"ID":60189,"Name":"Wioska skowron","Points":168,"X":565,"Y":498,"Continent":"K45","Bonus":0,"PlayerID":8831977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60189","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231952Z"},{"ID":60190,"Name":"KONFA TO MARKA, NARKA","Points":1577,"X":277,"Y":407,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60190","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231952Z"},{"ID":60191,"Name":"Wioska smagi007","Points":853,"X":259,"Y":508,"Continent":"K52","Bonus":0,"PlayerID":6193337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60191","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231953Z"},{"ID":60192,"Name":"Wioska tinki","Points":26,"X":329,"Y":670,"Continent":"K63","Bonus":0,"PlayerID":849120855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60192","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231953Z"},{"ID":60193,"Name":"037. Gloria Victis","Points":1058,"X":268,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60193","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231954Z"},{"ID":60194,"Name":"Wioska kokso420","Points":26,"X":732,"Y":445,"Continent":"K47","Bonus":0,"PlayerID":3734803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60194","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231954Z"},{"ID":60195,"Name":"Wioska Nowicjusz1","Points":64,"X":560,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":849113063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60195","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231955Z"},{"ID":60196,"Name":"Wioska Wolin","Points":550,"X":263,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":849100891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60196","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231956Z"},{"ID":60197,"Name":"Wioska barbarzyƄska","Points":97,"X":263,"Y":499,"Continent":"K42","Bonus":0,"PlayerID":8630972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60197","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231956Z"},{"ID":60198,"Name":"Wioska tribal766","Points":26,"X":671,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":849116089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60198","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231957Z"},{"ID":60199,"Name":"#160#","Points":565,"X":667,"Y":678,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60199","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231957Z"},{"ID":60200,"Name":"Wioska wuener","Points":462,"X":360,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":8889781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60200","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231958Z"},{"ID":60201,"Name":"Wioska barbarzyƄska","Points":439,"X":721,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60201","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231959Z"},{"ID":60202,"Name":"Wioska thor13","Points":375,"X":322,"Y":349,"Continent":"K33","Bonus":0,"PlayerID":849103113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60202","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231959Z"},{"ID":60203,"Name":"Wioska barbarzyƄska","Points":341,"X":267,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":699213622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60203","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23196Z"},{"ID":60204,"Name":"Wioska Mr.SoLo","Points":551,"X":511,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":699366937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60204","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23196Z"},{"ID":60205,"Name":"Wioska Pongo","Points":46,"X":302,"Y":633,"Continent":"K63","Bonus":0,"PlayerID":849116225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60205","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231961Z"},{"ID":60206,"Name":"Wioska barbarzyƄska","Points":125,"X":283,"Y":604,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60206","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231962Z"},{"ID":60207,"Name":"Wioska jekord","Points":26,"X":609,"Y":284,"Continent":"K26","Bonus":0,"PlayerID":849031779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60207","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231962Z"},{"ID":60208,"Name":"Wioska PiotrBiznes","Points":114,"X":670,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":849105032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60208","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231963Z"},{"ID":60209,"Name":"Wioska lech3838","Points":120,"X":610,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":6078176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60209","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231963Z"},{"ID":60210,"Name":"Wioska Impro","Points":26,"X":484,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":699875086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60210","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231964Z"},{"ID":60211,"Name":"Wioska sebo1303","Points":135,"X":547,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":848949271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60211","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231964Z"},{"ID":60212,"Name":"PóƂnocny Bagdad","Points":657,"X":594,"Y":287,"Continent":"K25","Bonus":0,"PlayerID":8847546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60212","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231965Z"},{"ID":60213,"Name":"Wioska Dzymek10","Points":146,"X":543,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":2514219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60213","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231965Z"},{"ID":60214,"Name":"063 - Budowanko!","Points":1085,"X":535,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60214","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231966Z"},{"ID":60215,"Name":"Wioska Elendila","Points":26,"X":459,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":699345087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60215","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231966Z"},{"ID":60216,"Name":"062 - Budowanko!","Points":1068,"X":468,"Y":738,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60216","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231967Z"},{"ID":60217,"Name":"Wioska NajlepszyZiomekWeWsi","Points":135,"X":509,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699360521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60217","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231967Z"},{"ID":60218,"Name":"49 barbarzyƄska","Points":602,"X":267,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60218","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231968Z"},{"ID":60219,"Name":"Wioska Huayna Capac","Points":26,"X":339,"Y":678,"Continent":"K63","Bonus":0,"PlayerID":848964085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60219","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231968Z"},{"ID":60220,"Name":"058","Points":331,"X":694,"Y":638,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60220","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231969Z"},{"ID":60221,"Name":"Wioska SmerfĂłw","Points":128,"X":462,"Y":261,"Continent":"K24","Bonus":0,"PlayerID":8239348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60221","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231969Z"},{"ID":60222,"Name":"Wioska Kamileq69","Points":26,"X":277,"Y":597,"Continent":"K52","Bonus":0,"PlayerID":849099785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60222","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23197Z"},{"ID":60223,"Name":"Wioska barbarzyƄska","Points":361,"X":557,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60223","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23197Z"},{"ID":60224,"Name":"Wioska DzikiDzik","Points":132,"X":275,"Y":568,"Continent":"K52","Bonus":0,"PlayerID":699405877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60224","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231971Z"},{"ID":60225,"Name":"Wioska WillyBilly","Points":26,"X":715,"Y":603,"Continent":"K67","Bonus":0,"PlayerID":849117644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60225","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231972Z"},{"ID":60226,"Name":"Wioska barbarzyƄska","Points":195,"X":728,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":849095435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60226","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231972Z"},{"ID":60227,"Name":"Autopsja","Points":1043,"X":735,"Y":501,"Continent":"K57","Bonus":0,"PlayerID":7313287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60227","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231973Z"},{"ID":60228,"Name":"Wioska barbarzyƄska","Points":1142,"X":737,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60228","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231973Z"},{"ID":60229,"Name":"Wioska akamee","Points":26,"X":354,"Y":687,"Continent":"K63","Bonus":0,"PlayerID":699767482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60229","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231974Z"},{"ID":60230,"Name":"Wioska barbarzyƄska","Points":130,"X":450,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":699644852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60230","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231974Z"},{"ID":60231,"Name":"Wioska Rejku30","Points":71,"X":310,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":699648975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60231","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231975Z"},{"ID":60232,"Name":"KONFA TO MARKA, NARKA","Points":1707,"X":274,"Y":411,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60232","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231975Z"},{"ID":60233,"Name":"Wioska GrubySponsor","Points":141,"X":327,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":849119078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60233","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231976Z"},{"ID":60234,"Name":"K67 36","Points":403,"X":711,"Y":621,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60234","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231976Z"},{"ID":60235,"Name":"Wioska jankes630","Points":73,"X":594,"Y":284,"Continent":"K25","Bonus":0,"PlayerID":3264281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60235","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231977Z"},{"ID":60236,"Name":"O157","Points":549,"X":294,"Y":631,"Continent":"K62","Bonus":0,"PlayerID":272173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60236","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231977Z"},{"ID":60238,"Name":"Wioska barbarzyƄska","Points":219,"X":536,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":7590135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60238","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231978Z"},{"ID":60239,"Name":"Wioska rainyday","Points":371,"X":565,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":7180447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60239","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231978Z"},{"ID":60240,"Name":"Wioska barbarzyƄska","Points":171,"X":738,"Y":452,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60240","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231979Z"},{"ID":60241,"Name":"Wioska LodowyPtyƛ","Points":26,"X":464,"Y":263,"Continent":"K24","Bonus":0,"PlayerID":699870923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60241","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231979Z"},{"ID":60242,"Name":"PPF-45","Points":512,"X":546,"Y":261,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60242","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23198Z"},{"ID":60243,"Name":"Osada koczownikĂłw","Points":264,"X":328,"Y":327,"Continent":"K33","Bonus":1,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60243","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23198Z"},{"ID":60244,"Name":"Wioska Kilmonn","Points":72,"X":602,"Y":289,"Continent":"K26","Bonus":0,"PlayerID":849101656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60244","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231981Z"},{"ID":60245,"Name":"KONFA TO MARKA, NARKA","Points":1750,"X":276,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60245","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231981Z"},{"ID":60246,"Name":"Osada koczownikĂłw","Points":288,"X":581,"Y":270,"Continent":"K25","Bonus":3,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60246","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231982Z"},{"ID":60248,"Name":"North 107","Points":1991,"X":487,"Y":257,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60248","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231982Z"},{"ID":60249,"Name":"KOIEC NIC NIE ROBIĆ","Points":603,"X":288,"Y":600,"Continent":"K62","Bonus":0,"PlayerID":849110289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60249","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231983Z"},{"ID":60250,"Name":"Wioska barbarzyƄska","Points":1022,"X":666,"Y":330,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60250","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231984Z"},{"ID":60251,"Name":"Wioska kamillo220","Points":26,"X":326,"Y":668,"Continent":"K63","Bonus":0,"PlayerID":698403524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60251","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231984Z"},{"ID":60252,"Name":"Wioska barbarzyƄska","Points":383,"X":373,"Y":301,"Continent":"K33","Bonus":0,"PlayerID":849017820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60252","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231985Z"},{"ID":60253,"Name":"Wioska I","Points":133,"X":400,"Y":288,"Continent":"K24","Bonus":0,"PlayerID":699798847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60253","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231985Z"},{"ID":60254,"Name":"C0343","Points":383,"X":259,"Y":532,"Continent":"K52","Bonus":3,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60254","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231986Z"},{"ID":60255,"Name":"neo328","Points":158,"X":638,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":7114815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60255","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231986Z"},{"ID":60257,"Name":"Wioska miki0412","Points":166,"X":676,"Y":663,"Continent":"K66","Bonus":0,"PlayerID":9219778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60257","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231987Z"},{"ID":60258,"Name":"Wioska barbarzyƄska","Points":329,"X":733,"Y":520,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60258","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231987Z"},{"ID":60259,"Name":"C0348","Points":295,"X":262,"Y":520,"Continent":"K52","Bonus":0,"PlayerID":8841266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60259","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231988Z"},{"ID":60260,"Name":"Wioska Jack Daniels","Points":126,"X":429,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":849090289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60260","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231988Z"},{"ID":60261,"Name":"Wioska barbarzyƄska","Points":394,"X":386,"Y":716,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60261","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231989Z"},{"ID":60263,"Name":"Wioska stopercool","Points":133,"X":286,"Y":617,"Continent":"K62","Bonus":0,"PlayerID":8366849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60263","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231989Z"},{"ID":60264,"Name":"K67 35","Points":574,"X":704,"Y":615,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60264","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23199Z"},{"ID":60265,"Name":"Wioska Hwastu","Points":26,"X":569,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":849004338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60265","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23199Z"},{"ID":60266,"Name":"Wioska barbarzyƄska","Points":619,"X":670,"Y":340,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60266","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231991Z"},{"ID":60267,"Name":"Polska","Points":641,"X":366,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849099425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60267","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231991Z"},{"ID":60268,"Name":"Wioska VaniaMay","Points":360,"X":262,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":849109701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60268","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231992Z"},{"ID":60269,"Name":"TWIERDZA DAMIK 2","Points":396,"X":579,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":6143689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60269","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231992Z"},{"ID":60270,"Name":"Wioska Ludwik 3","Points":175,"X":538,"Y":269,"Continent":"K25","Bonus":0,"PlayerID":1757722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60270","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231993Z"},{"ID":60271,"Name":"Wioska barbarzyƄska","Points":249,"X":266,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":6892517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60271","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231994Z"},{"ID":60272,"Name":"Wioska leon1214","Points":111,"X":696,"Y":625,"Continent":"K66","Bonus":0,"PlayerID":849109152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60272","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231994Z"},{"ID":60273,"Name":"KONFA TO MARKA, NARKA","Points":1213,"X":280,"Y":403,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60273","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231995Z"},{"ID":60274,"Name":"Wioska Michal1614","Points":26,"X":338,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":849120966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60274","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231995Z"},{"ID":60275,"Name":"mc02","Points":306,"X":708,"Y":387,"Continent":"K37","Bonus":0,"PlayerID":848939131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60275","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231996Z"},{"ID":60276,"Name":"Wioska De Integro","Points":32,"X":593,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":7431759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60276","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231996Z"},{"ID":60277,"Name":"061 - Budowanko!","Points":1086,"X":479,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60277","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231997Z"},{"ID":60278,"Name":"Wioska Danielo3","Points":26,"X":265,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":849092875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60278","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231997Z"},{"ID":60279,"Name":"Wioska barbarzyƄska","Points":117,"X":301,"Y":638,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60279","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231998Z"},{"ID":60280,"Name":"Wioska Rychu0890","Points":441,"X":328,"Y":659,"Continent":"K63","Bonus":0,"PlayerID":849024208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60280","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231998Z"},{"ID":60281,"Name":"Wioska Mizerkaa","Points":26,"X":571,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":849001388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60281","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231999Z"},{"ID":60282,"Name":"50 barbarzyƄska","Points":601,"X":276,"Y":437,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60282","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.231999Z"},{"ID":60283,"Name":"Wioska adrianh3","Points":26,"X":737,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":2083273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60283","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232Z"},{"ID":60284,"Name":"Wioska Lord patban177","Points":448,"X":697,"Y":630,"Continent":"K66","Bonus":0,"PlayerID":849109232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60284","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232001Z"},{"ID":60285,"Name":"034","Points":226,"X":442,"Y":732,"Continent":"K74","Bonus":0,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60285","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232001Z"},{"ID":60286,"Name":"-001- Osada","Points":742,"X":337,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":699406101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60286","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232002Z"},{"ID":60287,"Name":"Wioska AP1997","Points":249,"X":419,"Y":730,"Continent":"K74","Bonus":0,"PlayerID":848973968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60287","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232002Z"},{"ID":60288,"Name":"51 barbarzyƄska","Points":874,"X":265,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60288","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232003Z"},{"ID":60289,"Name":"Wioska EpsHunT","Points":26,"X":496,"Y":741,"Continent":"K74","Bonus":0,"PlayerID":849109601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60289","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232003Z"},{"ID":60290,"Name":"067 - Budowanko!","Points":765,"X":533,"Y":732,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60290","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232004Z"},{"ID":60291,"Name":"Wioska Timb3r","Points":26,"X":580,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":698298333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60291","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232004Z"},{"ID":60292,"Name":"Wioska Anko Itosu","Points":26,"X":278,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":699855469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60292","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232005Z"},{"ID":60293,"Name":"Wioska barbarzyƄska","Points":314,"X":585,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60293","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232005Z"},{"ID":60294,"Name":"Wioska kozielniak","Points":141,"X":488,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849118827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60294","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232006Z"},{"ID":60295,"Name":"#170#","Points":101,"X":639,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60295","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232006Z"},{"ID":60296,"Name":"Wioska Terror x Miniqo","Points":26,"X":542,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":9154293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60296","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232007Z"},{"ID":60297,"Name":"Wioska Kwiatuu","Points":26,"X":457,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":699264947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60297","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232008Z"},{"ID":60298,"Name":"Wioska barbarzyƄska","Points":165,"X":737,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":17714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60298","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232008Z"},{"ID":60299,"Name":"Wioska wtkc","Points":26,"X":259,"Y":512,"Continent":"K52","Bonus":0,"PlayerID":148405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60299","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232009Z"},{"ID":60300,"Name":"Wioska marekttt","Points":26,"X":703,"Y":636,"Continent":"K67","Bonus":0,"PlayerID":848893520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60300","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232009Z"},{"ID":60301,"Name":"Wioska barbarzyƄska","Points":112,"X":329,"Y":666,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60301","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23201Z"},{"ID":60302,"Name":"StarogrĂłd","Points":291,"X":296,"Y":629,"Continent":"K62","Bonus":0,"PlayerID":849063605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60302","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23201Z"},{"ID":60303,"Name":"071KP","Points":290,"X":471,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60303","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232011Z"},{"ID":60304,"Name":"Wioska Kulfix","Points":521,"X":279,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":849114040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60304","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232011Z"},{"ID":60305,"Name":"Wioska barbarzyƄska","Points":54,"X":290,"Y":603,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60305","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232012Z"},{"ID":60307,"Name":"Wioska Nicosta","Points":26,"X":309,"Y":636,"Continent":"K63","Bonus":0,"PlayerID":8984336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60307","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232012Z"},{"ID":60308,"Name":"Wioska barbarzyƄska","Points":245,"X":279,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":699016994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60308","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232013Z"},{"ID":60309,"Name":"043 Ave WHY","Points":1272,"X":487,"Y":733,"Continent":"K74","Bonus":5,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60309","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232013Z"},{"ID":60311,"Name":"Wioska ARENTHAI","Points":70,"X":564,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849121036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60311","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232014Z"},{"ID":60312,"Name":"069KP","Points":290,"X":469,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60312","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232014Z"},{"ID":60313,"Name":"Wioska Saladyn Pustyny","Points":26,"X":289,"Y":613,"Continent":"K62","Bonus":0,"PlayerID":8043286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60313","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232015Z"},{"ID":60315,"Name":"North 106","Points":1899,"X":522,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60315","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232015Z"},{"ID":60316,"Name":"Twierdza","Points":1478,"X":319,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699795301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60316","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232016Z"},{"ID":60317,"Name":"WschĂłd 006","Points":265,"X":705,"Y":624,"Continent":"K67","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60317","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232016Z"},{"ID":60318,"Name":"Wioska Ppfarmer","Points":26,"X":287,"Y":404,"Continent":"K42","Bonus":0,"PlayerID":849121337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60318","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232017Z"},{"ID":60319,"Name":"Wioska barbarzyƄska","Points":860,"X":686,"Y":345,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60319","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232018Z"},{"ID":60321,"Name":"K66","Points":366,"X":697,"Y":627,"Continent":"K66","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60321","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232018Z"},{"ID":60322,"Name":"Wioska sajmon117","Points":26,"X":642,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":2727535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60322","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232019Z"},{"ID":60323,"Name":"Wioska barbarzyƄska","Points":114,"X":350,"Y":686,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60323","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232019Z"},{"ID":60324,"Name":"Wioska Patryk95","Points":26,"X":688,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":849114664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60324","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23202Z"},{"ID":60325,"Name":"North 112","Points":1499,"X":492,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60325","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23202Z"},{"ID":60326,"Name":"Bexaaa","Points":1129,"X":455,"Y":569,"Continent":"K54","Bonus":0,"PlayerID":698698087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60326","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232021Z"},{"ID":60328,"Name":"Wioska Jar0o","Points":115,"X":703,"Y":367,"Continent":"K37","Bonus":0,"PlayerID":1610267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60328","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232021Z"},{"ID":60330,"Name":"038. Gloria Victis","Points":882,"X":278,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":848886973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60330","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232022Z"},{"ID":60331,"Name":"Wioska Lord Dan 1","Points":512,"X":403,"Y":287,"Continent":"K24","Bonus":0,"PlayerID":849121331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60331","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232022Z"},{"ID":60332,"Name":"Wioska barbarzyƄska","Points":114,"X":329,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60332","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232023Z"},{"ID":60333,"Name":"Wioska aghjs5","Points":257,"X":419,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":849113556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60333","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232023Z"},{"ID":60334,"Name":"North 108","Points":1971,"X":511,"Y":261,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60334","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232024Z"},{"ID":60335,"Name":"Wioska PiotrekPazzi","Points":158,"X":336,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":848917127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60335","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232024Z"},{"ID":60336,"Name":"Wioska37","Points":790,"X":325,"Y":342,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60336","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232025Z"},{"ID":60338,"Name":"Wioska barbarzyƄska","Points":168,"X":340,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":6169408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60338","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232025Z"},{"ID":60339,"Name":"Osada koczownikĂłw","Points":345,"X":368,"Y":702,"Continent":"K73","Bonus":6,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60339","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232026Z"},{"ID":60340,"Name":"Wioska OcHnIK","Points":26,"X":314,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":40666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60340","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232026Z"},{"ID":60341,"Name":"bla bla 2","Points":119,"X":256,"Y":504,"Continent":"K52","Bonus":0,"PlayerID":849091084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60341","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232027Z"},{"ID":60342,"Name":"Wioska Księga przyrodniczo","Points":102,"X":730,"Y":421,"Continent":"K47","Bonus":0,"PlayerID":7495050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60342","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232027Z"},{"ID":60343,"Name":"=SAwars=08=","Points":346,"X":596,"Y":276,"Continent":"K25","Bonus":0,"PlayerID":849106420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60343","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232028Z"},{"ID":60344,"Name":"Wioska Hilwoz","Points":26,"X":256,"Y":497,"Continent":"K42","Bonus":0,"PlayerID":671516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60344","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232028Z"},{"ID":60345,"Name":"Wioska barbarzyƄska","Points":957,"X":505,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60345","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232029Z"},{"ID":60346,"Name":"Osada koczownikĂłw","Points":241,"X":461,"Y":264,"Continent":"K24","Bonus":2,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60346","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232029Z"},{"ID":60347,"Name":"Wioska afibatin","Points":58,"X":664,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":6326215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60347","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23203Z"},{"ID":60348,"Name":"Wioska barbarzyƄska","Points":59,"X":339,"Y":681,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60348","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232031Z"},{"ID":60350,"Name":"Osada koczownikĂłw","Points":140,"X":603,"Y":289,"Continent":"K26","Bonus":7,"PlayerID":699146580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60350","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232031Z"},{"ID":60351,"Name":"Wioska KATOZAUR","Points":77,"X":520,"Y":738,"Continent":"K75","Bonus":0,"PlayerID":699156456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60351","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232032Z"},{"ID":60352,"Name":"TOLCIA 5","Points":272,"X":640,"Y":314,"Continent":"K36","Bonus":0,"PlayerID":699868739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60352","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232032Z"},{"ID":60353,"Name":"Wioska ekopark","Points":52,"X":270,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":848993903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60353","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232033Z"},{"ID":60354,"Name":"Wioska barbarzyƄska","Points":179,"X":331,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":699304554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60354","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232033Z"},{"ID":60355,"Name":"Wioska Habibi Malik","Points":85,"X":301,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":849090243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60355","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232034Z"},{"ID":60356,"Name":"New World","Points":1354,"X":428,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60356","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232034Z"},{"ID":60357,"Name":"Wioska golem6","Points":26,"X":654,"Y":316,"Continent":"K36","Bonus":0,"PlayerID":1085802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60357","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232035Z"},{"ID":60359,"Name":"224 |","Points":94,"X":722,"Y":404,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60359","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232035Z"},{"ID":60360,"Name":"Wioska xLyn","Points":555,"X":678,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":849121483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60360","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232036Z"},{"ID":60361,"Name":"Wioska cwaniaczek25","Points":26,"X":273,"Y":421,"Continent":"K42","Bonus":0,"PlayerID":848930996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60361","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232036Z"},{"ID":60362,"Name":"Gliwice","Points":328,"X":679,"Y":346,"Continent":"K36","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60362","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232037Z"},{"ID":60363,"Name":"Wioska mani4884","Points":26,"X":264,"Y":529,"Continent":"K52","Bonus":0,"PlayerID":848923646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60363","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232037Z"},{"ID":60364,"Name":"52 barbarzyƄska","Points":758,"X":267,"Y":429,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60364","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232038Z"},{"ID":60365,"Name":"Barbakan","Points":869,"X":509,"Y":339,"Continent":"K35","Bonus":0,"PlayerID":7803631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60365","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232038Z"},{"ID":60366,"Name":"Wioska barbarzyƄska","Points":92,"X":260,"Y":536,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60366","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232039Z"},{"ID":60367,"Name":"Wioska huzar28","Points":26,"X":425,"Y":273,"Continent":"K24","Bonus":0,"PlayerID":849121389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60367","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232039Z"},{"ID":60368,"Name":"Napewno to nie jest off","Points":298,"X":637,"Y":298,"Continent":"K26","Bonus":1,"PlayerID":848912265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60368","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23204Z"},{"ID":60369,"Name":"Wioska moskittt","Points":307,"X":738,"Y":476,"Continent":"K47","Bonus":0,"PlayerID":8204028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60369","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232041Z"},{"ID":60370,"Name":"Wioska barbarzyƄska","Points":105,"X":285,"Y":392,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60370","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232041Z"},{"ID":60371,"Name":"FARMA nie przejmowac","Points":168,"X":641,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":699492120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60371","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232042Z"},{"ID":60372,"Name":"Wioska Feruell","Points":133,"X":738,"Y":530,"Continent":"K57","Bonus":0,"PlayerID":699825977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60372","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232042Z"},{"ID":60373,"Name":"KiszyniĂłw","Points":411,"X":406,"Y":278,"Continent":"K24","Bonus":0,"PlayerID":699588526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60373","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232043Z"},{"ID":60374,"Name":"Wioska tomek-gt","Points":435,"X":721,"Y":603,"Continent":"K67","Bonus":0,"PlayerID":699867390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60374","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232043Z"},{"ID":60375,"Name":"KONFA TO MARKA, NARKA","Points":1225,"X":270,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60375","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232044Z"},{"ID":60376,"Name":"Wioska Maniek28a","Points":639,"X":649,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":2942206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60376","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232044Z"},{"ID":60377,"Name":"Wioska barbarzyƄska","Points":217,"X":718,"Y":583,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60377","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232045Z"},{"ID":60378,"Name":"Wioska faraon1981","Points":437,"X":642,"Y":477,"Continent":"K46","Bonus":0,"PlayerID":849006011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60378","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232045Z"},{"ID":60379,"Name":"Na SsSskraju","Points":256,"X":270,"Y":571,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60379","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232046Z"},{"ID":60380,"Name":"Wioska ProCzacha","Points":26,"X":299,"Y":378,"Continent":"K32","Bonus":0,"PlayerID":849099660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60380","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232046Z"},{"ID":60381,"Name":"New World","Points":1208,"X":414,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60381","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232047Z"},{"ID":60382,"Name":"Wioska mikos","Points":291,"X":590,"Y":277,"Continent":"K25","Bonus":0,"PlayerID":849109072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60382","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232047Z"},{"ID":60383,"Name":"WygwizdĂłw","Points":572,"X":279,"Y":593,"Continent":"K52","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60383","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232048Z"},{"ID":60384,"Name":"Wioska RYSIO E46","Points":26,"X":264,"Y":509,"Continent":"K52","Bonus":0,"PlayerID":699812828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60384","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232048Z"},{"ID":60385,"Name":"Wioska barbarzyƄska","Points":464,"X":735,"Y":486,"Continent":"K47","Bonus":0,"PlayerID":699574408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60385","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232049Z"},{"ID":60387,"Name":"Wioska barbarzyƄska","Points":987,"X":486,"Y":742,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60387","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232049Z"},{"ID":60388,"Name":"Wioska justyna1234","Points":50,"X":366,"Y":665,"Continent":"K63","Bonus":0,"PlayerID":849103595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60388","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23205Z"},{"ID":60389,"Name":"246","Points":231,"X":366,"Y":298,"Continent":"K23","Bonus":0,"PlayerID":7271812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60389","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.23205Z"},{"ID":60390,"Name":"Wioska ten ktĂłry kroczy","Points":121,"X":268,"Y":467,"Continent":"K42","Bonus":0,"PlayerID":1794060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60390","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232051Z"},{"ID":60391,"Name":"WschĂłd 007","Points":210,"X":714,"Y":597,"Continent":"K57","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60391","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232052Z"},{"ID":60392,"Name":"Wioska barca35fcb","Points":26,"X":739,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":849118043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60392","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232052Z"},{"ID":60393,"Name":"Wioska barbarzyƄska","Points":122,"X":712,"Y":598,"Continent":"K57","Bonus":0,"PlayerID":8323711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60393","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232053Z"},{"ID":60394,"Name":"Wioska Dziobson266","Points":203,"X":683,"Y":651,"Continent":"K66","Bonus":0,"PlayerID":699617524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60394","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232053Z"},{"ID":60395,"Name":"Wioska barbarzyƄska","Points":711,"X":422,"Y":277,"Continent":"K24","Bonus":0,"PlayerID":849038597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60395","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232054Z"},{"ID":60396,"Name":"Wioska marart2","Points":53,"X":320,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":699380730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60396","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232054Z"},{"ID":60397,"Name":"GĂłra 3","Points":309,"X":440,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60397","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232055Z"},{"ID":60398,"Name":"Wioska Sir Wiking","Points":109,"X":269,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":8790027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60398","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232055Z"},{"ID":60399,"Name":"Wioska rewox","Points":26,"X":701,"Y":361,"Continent":"K37","Bonus":0,"PlayerID":849119017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60399","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232056Z"},{"ID":60400,"Name":"Wioska barbarzyƄska","Points":94,"X":603,"Y":284,"Continent":"K26","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60400","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.232056Z"},{"ID":60401,"Name":"PPF-46","Points":319,"X":543,"Y":270,"Continent":"K25","Bonus":4,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60401","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262259Z"},{"ID":60402,"Name":"Wioska Sir NoToKredki","Points":56,"X":643,"Y":693,"Continent":"K66","Bonus":0,"PlayerID":699560963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60402","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26226Z"},{"ID":60403,"Name":"Wioska owen10","Points":26,"X":737,"Y":483,"Continent":"K47","Bonus":0,"PlayerID":366938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60403","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262261Z"},{"ID":60404,"Name":"Wioska aegalionkak","Points":26,"X":291,"Y":607,"Continent":"K62","Bonus":0,"PlayerID":848912151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60404","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262261Z"},{"ID":60405,"Name":"Wioska barbarzyƄska","Points":1210,"X":363,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60405","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262262Z"},{"ID":60406,"Name":"Wioska gis1969b","Points":26,"X":507,"Y":258,"Continent":"K25","Bonus":0,"PlayerID":7096208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60406","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262262Z"},{"ID":60407,"Name":"Wioska tomas289","Points":26,"X":659,"Y":682,"Continent":"K66","Bonus":0,"PlayerID":849099255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60407","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262263Z"},{"ID":60408,"Name":"#164#","Points":346,"X":641,"Y":700,"Continent":"K76","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60408","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262263Z"},{"ID":60410,"Name":"Wioska barbarzyƄska","Points":335,"X":734,"Y":548,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60410","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262264Z"},{"ID":60411,"Name":"Wioska Angelina2013","Points":132,"X":266,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":849097729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60411","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262264Z"},{"ID":60412,"Name":"Wioska ivanov66","Points":376,"X":739,"Y":532,"Continent":"K57","Bonus":0,"PlayerID":2559569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60412","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262265Z"},{"ID":60414,"Name":"Wioska barbarzyƄska","Points":283,"X":553,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60414","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262265Z"},{"ID":60415,"Name":"Wioska grzeg","Points":371,"X":277,"Y":580,"Continent":"K52","Bonus":0,"PlayerID":699826312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60415","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262266Z"},{"ID":60416,"Name":"Wioska34","Points":1054,"X":329,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60416","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262266Z"},{"ID":60417,"Name":"Wioska TheZeNiT","Points":26,"X":697,"Y":360,"Continent":"K36","Bonus":0,"PlayerID":849009945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60417","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262267Z"},{"ID":60419,"Name":"Wioska barbarzyƄska","Points":90,"X":636,"Y":306,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60419","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262267Z"},{"ID":60420,"Name":"Wioska Khorstes","Points":26,"X":722,"Y":586,"Continent":"K57","Bonus":0,"PlayerID":8709940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60420","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262268Z"},{"ID":60421,"Name":"Wioska barbarzyƄska","Points":338,"X":742,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60421","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262268Z"},{"ID":60422,"Name":"Osada koczownikĂłw","Points":235,"X":391,"Y":708,"Continent":"K73","Bonus":3,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60422","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262269Z"},{"ID":60423,"Name":"Wioska drzyzga123","Points":26,"X":517,"Y":257,"Continent":"K25","Bonus":0,"PlayerID":849121725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60423","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262269Z"},{"ID":60424,"Name":"Wioska barbarzyƄska","Points":72,"X":310,"Y":653,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60424","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26227Z"},{"ID":60425,"Name":"Wioska -umino-","Points":26,"X":626,"Y":293,"Continent":"K26","Bonus":0,"PlayerID":8662264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60425","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26227Z"},{"ID":60426,"Name":"Wioska - V -","Points":235,"X":726,"Y":581,"Continent":"K57","Bonus":0,"PlayerID":9153430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60426","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262271Z"},{"ID":60427,"Name":"KONFA TO MARKA, NARKA","Points":862,"X":284,"Y":398,"Continent":"K32","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60427","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262272Z"},{"ID":60429,"Name":"Wioska jaktoon","Points":78,"X":475,"Y":743,"Continent":"K74","Bonus":0,"PlayerID":848997058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60429","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262272Z"},{"ID":60430,"Name":"060","Points":71,"X":681,"Y":656,"Continent":"K66","Bonus":0,"PlayerID":699099811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60430","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262273Z"},{"ID":60431,"Name":"Wioska METALCORE","Points":121,"X":311,"Y":637,"Continent":"K63","Bonus":0,"PlayerID":849110644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60431","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262273Z"},{"ID":60432,"Name":"Wioska ManchesterKing","Points":79,"X":651,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":849002486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60432","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262274Z"},{"ID":60433,"Name":"Wioska Tomus 01011973","Points":323,"X":729,"Y":550,"Continent":"K57","Bonus":0,"PlayerID":849051363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60433","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262274Z"},{"ID":60434,"Name":"Mat05usz","Points":1511,"X":733,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":849088515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60434","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262275Z"},{"ID":60435,"Name":"Wioska robotykjakinny","Points":26,"X":561,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849121746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60435","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262275Z"},{"ID":60436,"Name":"_001_ Wioska barbarzyƄska","Points":761,"X":708,"Y":388,"Continent":"K37","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60436","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262276Z"},{"ID":60437,"Name":"Wioska muchaPG","Points":457,"X":706,"Y":369,"Continent":"K37","Bonus":0,"PlayerID":698866770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60437","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262276Z"},{"ID":60438,"Name":"Wioska 012","Points":911,"X":743,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60438","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262277Z"},{"ID":60440,"Name":"Wioska Deadshot","Points":26,"X":551,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":921888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60440","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262277Z"},{"ID":60441,"Name":"Wioska barbarzyƄska","Points":63,"X":648,"Y":315,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60441","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262278Z"},{"ID":60442,"Name":"Wioska *Kaziu*","Points":47,"X":462,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":848966404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60442","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262278Z"},{"ID":60443,"Name":"Wioska Zaba12","Points":26,"X":601,"Y":280,"Continent":"K26","Bonus":0,"PlayerID":699760696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60443","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262279Z"},{"ID":60444,"Name":"Wioska barbarzyƄska","Points":133,"X":643,"Y":685,"Continent":"K66","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60444","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262279Z"},{"ID":60445,"Name":"Wioska Chubi","Points":26,"X":638,"Y":299,"Continent":"K26","Bonus":0,"PlayerID":8290773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60445","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26228Z"},{"ID":60446,"Name":"Wioska barbarzyƄska","Points":56,"X":277,"Y":598,"Continent":"K52","Bonus":0,"PlayerID":849096458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60446","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26228Z"},{"ID":60447,"Name":"KONFA TO MARKA, NARKA","Points":1201,"X":274,"Y":423,"Continent":"K42","Bonus":8,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60447","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262281Z"},{"ID":60448,"Name":"Wioska floraI","Points":235,"X":740,"Y":468,"Continent":"K47","Bonus":0,"PlayerID":566379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60448","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262281Z"},{"ID":60449,"Name":"Aa6","Points":1161,"X":603,"Y":721,"Continent":"K76","Bonus":0,"PlayerID":849097614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60449","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262282Z"},{"ID":60450,"Name":"Wioska tyskie323","Points":129,"X":501,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":849093724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60450","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262282Z"},{"ID":60451,"Name":"Wioska barbarzyƄska","Points":143,"X":609,"Y":719,"Continent":"K76","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60451","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262283Z"},{"ID":60452,"Name":"Wioska Abazur","Points":80,"X":596,"Y":275,"Continent":"K25","Bonus":0,"PlayerID":849028040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60452","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262283Z"},{"ID":60453,"Name":"Vivek","Points":222,"X":290,"Y":617,"Continent":"K62","Bonus":0,"PlayerID":849114603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60453","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262284Z"},{"ID":60454,"Name":"Wioska barbarzyƄska","Points":47,"X":327,"Y":664,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60454","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262284Z"},{"ID":60455,"Name":"Wioska xFacHoWieCx","Points":26,"X":597,"Y":713,"Continent":"K75","Bonus":0,"PlayerID":9073704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60455","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262285Z"},{"ID":60456,"Name":"KONFA TO MARKA, NARKA","Points":463,"X":287,"Y":396,"Continent":"K32","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60456","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262285Z"},{"ID":60457,"Name":"Wioska","Points":381,"X":256,"Y":495,"Continent":"K42","Bonus":0,"PlayerID":699860651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60457","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262286Z"},{"ID":60458,"Name":"Wioska barbarzyƄska","Points":76,"X":357,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60458","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262287Z"},{"ID":60459,"Name":"Wioska MarcinMazury 1","Points":256,"X":294,"Y":605,"Continent":"K62","Bonus":0,"PlayerID":849081641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60459","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262287Z"},{"ID":60460,"Name":"Sony 911","Points":508,"X":689,"Y":652,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60460","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262288Z"},{"ID":60461,"Name":"Polandia","Points":240,"X":644,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":849121570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60461","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262288Z"},{"ID":60462,"Name":"Wioska barbarzyƄska","Points":201,"X":579,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60462","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262289Z"},{"ID":60463,"Name":"Wioska mati997","Points":424,"X":423,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":849121835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60463","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262289Z"},{"ID":60464,"Name":"Wioska solidna","Points":182,"X":310,"Y":643,"Continent":"K63","Bonus":0,"PlayerID":9098296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60464","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26229Z"},{"ID":60466,"Name":"Wioska barbarzyƄska","Points":351,"X":731,"Y":578,"Continent":"K57","Bonus":0,"PlayerID":2453888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60466","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26229Z"},{"ID":60467,"Name":"Osada koczownikĂłw","Points":336,"X":740,"Y":485,"Continent":"K47","Bonus":8,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60467","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262291Z"},{"ID":60468,"Name":"Wioska Yomikuri","Points":201,"X":264,"Y":531,"Continent":"K52","Bonus":0,"PlayerID":849108148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60468","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262291Z"},{"ID":60469,"Name":"065 - Budowanko!","Points":821,"X":502,"Y":745,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60469","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262292Z"},{"ID":60470,"Name":"Wioska Danka Ch","Points":475,"X":292,"Y":388,"Continent":"K32","Bonus":0,"PlayerID":7605446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60470","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262292Z"},{"ID":60471,"Name":"Wioska barbarzyƄska","Points":214,"X":381,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60471","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262293Z"},{"ID":60472,"Name":"Wioska Wysypisko Ć»ycia","Points":99,"X":403,"Y":321,"Continent":"K34","Bonus":0,"PlayerID":698147969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60472","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262293Z"},{"ID":60473,"Name":"Wioska barbarzyƄska","Points":196,"X":542,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":849078942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60473","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262294Z"},{"ID":60475,"Name":"Wioska barbarzyƄska","Points":40,"X":320,"Y":335,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60475","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262294Z"},{"ID":60476,"Name":"032 Wioska","Points":439,"X":736,"Y":455,"Continent":"K47","Bonus":7,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60476","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262295Z"},{"ID":60477,"Name":"Wioska trend","Points":338,"X":710,"Y":375,"Continent":"K37","Bonus":0,"PlayerID":849118806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60477","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262295Z"},{"ID":60478,"Name":"Wioska barbarzyƄska","Points":90,"X":342,"Y":675,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60478","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262296Z"},{"ID":60479,"Name":"Wioska yaruciak1","Points":26,"X":704,"Y":617,"Continent":"K67","Bonus":0,"PlayerID":699346267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60479","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262297Z"},{"ID":60480,"Name":"077 - Budowanko!","Points":190,"X":519,"Y":742,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60480","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262297Z"},{"ID":60481,"Name":"Wioska Malfoja","Points":158,"X":261,"Y":458,"Continent":"K42","Bonus":0,"PlayerID":849121811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60481","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262298Z"},{"ID":60482,"Name":"Wioska barbarzyƄska","Points":191,"X":386,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60482","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262298Z"},{"ID":60483,"Name":"Wioska RudnikDagger","Points":26,"X":285,"Y":615,"Continent":"K62","Bonus":0,"PlayerID":699577663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60483","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262299Z"},{"ID":60484,"Name":"Wioska barbarzyƄska","Points":67,"X":263,"Y":511,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60484","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262299Z"},{"ID":60485,"Name":"Wioska niunia wredna","Points":484,"X":298,"Y":395,"Continent":"K32","Bonus":0,"PlayerID":8423835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60485","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2623Z"},{"ID":60486,"Name":"Wioska barbarzyƄska","Points":262,"X":733,"Y":480,"Continent":"K47","Bonus":0,"PlayerID":8877886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60486","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2623Z"},{"ID":60487,"Name":"#001 - Zamek Wartburg","Points":284,"X":353,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":8595633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60487","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262301Z"},{"ID":60488,"Name":"Wioska barbarzyƄska","Points":65,"X":281,"Y":594,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60488","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262301Z"},{"ID":60489,"Name":"Wioska AzER","Points":26,"X":387,"Y":290,"Continent":"K23","Bonus":0,"PlayerID":8704709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60489","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262302Z"},{"ID":60490,"Name":"63 barbarzyƄska","Points":380,"X":267,"Y":450,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60490","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262302Z"},{"ID":60491,"Name":"Wioska QdamianQ","Points":93,"X":392,"Y":281,"Continent":"K23","Bonus":0,"PlayerID":848965205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60491","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262303Z"},{"ID":60492,"Name":"126.Stradi","Points":896,"X":429,"Y":275,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60492","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262303Z"},{"ID":60493,"Name":"Wioska Sonomi","Points":26,"X":407,"Y":717,"Continent":"K74","Bonus":0,"PlayerID":7322865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60493","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262304Z"},{"ID":60494,"Name":"055","Points":111,"X":711,"Y":383,"Continent":"K37","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60494","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262304Z"},{"ID":60495,"Name":"Wioska 5dych","Points":140,"X":411,"Y":721,"Continent":"K74","Bonus":0,"PlayerID":848930498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60495","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262305Z"},{"ID":60496,"Name":"Wioska barbarzyƄska","Points":309,"X":578,"Y":270,"Continent":"K25","Bonus":0,"PlayerID":849064614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60496","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262305Z"},{"ID":60497,"Name":"Wioska rambo3423","Points":115,"X":415,"Y":726,"Continent":"K74","Bonus":0,"PlayerID":849110479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60497","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262306Z"},{"ID":60498,"Name":"Wioska olimpijska","Points":186,"X":638,"Y":309,"Continent":"K36","Bonus":0,"PlayerID":849040462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60498","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262306Z"},{"ID":60499,"Name":"Wioska Limited23","Points":241,"X":277,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":848963694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60499","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262307Z"},{"ID":60500,"Name":"Wioska barbarzyƄska","Points":69,"X":266,"Y":515,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60500","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262307Z"},{"ID":60501,"Name":"Wioska shakeit1","Points":26,"X":608,"Y":285,"Continent":"K26","Bonus":0,"PlayerID":6178803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60501","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262308Z"},{"ID":60502,"Name":"North 114","Points":873,"X":495,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60502","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262308Z"},{"ID":60503,"Name":"Wioska kristoferix","Points":26,"X":402,"Y":392,"Continent":"K34","Bonus":0,"PlayerID":849073486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60503","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262309Z"},{"ID":60504,"Name":"Wioska barbarzyƄska","Points":209,"X":440,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":699191449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60504","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262309Z"},{"ID":60505,"Name":"Wioska Marian1960","Points":177,"X":345,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":699714935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60505","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26231Z"},{"ID":60506,"Name":"Wioska barbarzyƄska","Points":850,"X":586,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60506","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26231Z"},{"ID":60507,"Name":"81skorbyk.","Points":531,"X":269,"Y":564,"Continent":"K52","Bonus":0,"PlayerID":129795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60507","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262311Z"},{"ID":60508,"Name":"KONFA TO MARKA, NARKA","Points":1072,"X":279,"Y":409,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60508","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262311Z"},{"ID":60509,"Name":"Wioska Dj-saken","Points":429,"X":708,"Y":393,"Continent":"K37","Bonus":0,"PlayerID":848995262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60509","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262312Z"},{"ID":60510,"Name":"Wioska barbarzyƄska","Points":220,"X":268,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":849095814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60510","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262312Z"},{"ID":60511,"Name":"HotChrum","Points":219,"X":317,"Y":652,"Continent":"K63","Bonus":0,"PlayerID":849012219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60511","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262313Z"},{"ID":60512,"Name":"Osada koczownikĂłw","Points":621,"X":655,"Y":315,"Continent":"K36","Bonus":7,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60512","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262313Z"},{"ID":60513,"Name":"Wioska Mishkkk","Points":317,"X":437,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":849119827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60513","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262314Z"},{"ID":60514,"Name":"Wioska barbarzyƄska","Points":65,"X":714,"Y":617,"Continent":"K67","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60514","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262315Z"},{"ID":60515,"Name":"Krzysiek933","Points":102,"X":385,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":699603033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60515","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262315Z"},{"ID":60516,"Name":"Wioska barbarzyƄska","Points":212,"X":262,"Y":534,"Continent":"K52","Bonus":0,"PlayerID":1861962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60516","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262316Z"},{"ID":60517,"Name":"Wioska mrufki komandoski","Points":197,"X":363,"Y":701,"Continent":"K73","Bonus":0,"PlayerID":1525273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60517","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262316Z"},{"ID":60518,"Name":"Wioska anita","Points":264,"X":733,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":849121975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60518","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262317Z"},{"ID":60519,"Name":"WschĂłd 008","Points":186,"X":704,"Y":627,"Continent":"K67","Bonus":0,"PlayerID":698562644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60519","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262317Z"},{"ID":60520,"Name":"Wioska Laduu","Points":95,"X":297,"Y":375,"Continent":"K32","Bonus":0,"PlayerID":848887011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60520","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262318Z"},{"ID":60521,"Name":"Wioska jack2","Points":182,"X":260,"Y":492,"Continent":"K42","Bonus":0,"PlayerID":849104310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60521","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262318Z"},{"ID":60522,"Name":"068- Mroczna Oada","Points":566,"X":701,"Y":382,"Continent":"K37","Bonus":0,"PlayerID":849035905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60522","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262319Z"},{"ID":60523,"Name":"Wioska Dziwny As","Points":119,"X":596,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":848897333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60523","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262319Z"},{"ID":60524,"Name":"Sony 911","Points":71,"X":681,"Y":662,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60524","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26232Z"},{"ID":60525,"Name":"Merilly-Tivis Prze:Kupa","Points":449,"X":292,"Y":379,"Continent":"K32","Bonus":0,"PlayerID":849098324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60525","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26232Z"},{"ID":60526,"Name":"Wioska barbarzyƄska","Points":86,"X":743,"Y":513,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60526","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262321Z"},{"ID":60527,"Name":"Wioska Kira Motyl","Points":26,"X":289,"Y":614,"Continent":"K62","Bonus":0,"PlayerID":699282793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60527","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262321Z"},{"ID":60528,"Name":"Wioska barbarzyƄska","Points":95,"X":314,"Y":642,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60528","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262322Z"},{"ID":60529,"Name":"181","Points":530,"X":456,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":699853526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60529","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262322Z"},{"ID":60530,"Name":"Wioska barbarzyƄska","Points":829,"X":462,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":698620694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60530","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262323Z"},{"ID":60531,"Name":"Osada koczownikĂłw","Points":89,"X":625,"Y":298,"Continent":"K26","Bonus":7,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60531","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262323Z"},{"ID":60532,"Name":"Wioska saulgoodman","Points":124,"X":374,"Y":301,"Continent":"K33","Bonus":0,"PlayerID":849120075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60532","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262324Z"},{"ID":60533,"Name":"Wioska barbarzyƄska","Points":54,"X":648,"Y":317,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60533","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262324Z"},{"ID":60534,"Name":"Wioska mefisom13","Points":368,"X":304,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":699749530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60534","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262325Z"},{"ID":60535,"Name":"020","Points":711,"X":394,"Y":280,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60535","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262325Z"},{"ID":60536,"Name":"Wioska Alpinista","Points":26,"X":620,"Y":287,"Continent":"K26","Bonus":0,"PlayerID":849096543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60536","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262326Z"},{"ID":60537,"Name":"Wioska barbarzyƄska","Points":61,"X":319,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60537","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262326Z"},{"ID":60538,"Name":"Wioska Time Traveler","Points":26,"X":434,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":699811844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60538","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262327Z"},{"ID":60539,"Name":"Wioska barbarzyƄska","Points":97,"X":738,"Y":457,"Continent":"K47","Bonus":0,"PlayerID":849095599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60539","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262327Z"},{"ID":60540,"Name":"Wioska Seledynowy skuter wodny","Points":183,"X":298,"Y":370,"Continent":"K32","Bonus":0,"PlayerID":849109351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60540","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262328Z"},{"ID":60541,"Name":"1 Doniel","Points":222,"X":690,"Y":352,"Continent":"K36","Bonus":0,"PlayerID":698766454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60541","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262329Z"},{"ID":60542,"Name":"Wioska barbarzyƄska","Points":158,"X":675,"Y":338,"Continent":"K36","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60542","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262329Z"},{"ID":60543,"Name":"Wioska grzesiek9522","Points":66,"X":737,"Y":506,"Continent":"K57","Bonus":0,"PlayerID":849122047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60543","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26233Z"},{"ID":60544,"Name":"Wioska peter3131","Points":321,"X":727,"Y":443,"Continent":"K47","Bonus":0,"PlayerID":128346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60544","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26233Z"},{"ID":60545,"Name":"Wioska barbarzyƄska","Points":133,"X":726,"Y":418,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60545","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262331Z"},{"ID":60546,"Name":".001. A","Points":329,"X":664,"Y":679,"Continent":"K66","Bonus":0,"PlayerID":699877413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60546","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262331Z"},{"ID":60547,"Name":"PPF-52","Points":310,"X":513,"Y":263,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60547","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262332Z"},{"ID":60548,"Name":"WB29","Points":697,"X":292,"Y":373,"Continent":"K32","Bonus":1,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60548","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262332Z"},{"ID":60549,"Name":"Wioska Soro","Points":26,"X":478,"Y":744,"Continent":"K74","Bonus":0,"PlayerID":848963696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60549","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262333Z"},{"ID":60550,"Name":"070 - Budowanko!","Points":414,"X":504,"Y":738,"Continent":"K75","Bonus":9,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60550","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262333Z"},{"ID":60551,"Name":"jop","Points":377,"X":337,"Y":328,"Continent":"K33","Bonus":0,"PlayerID":849121762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60551","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262334Z"},{"ID":60552,"Name":"73. Wioska 73","Points":988,"X":288,"Y":611,"Continent":"K62","Bonus":4,"PlayerID":849091769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60552","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262335Z"},{"ID":60553,"Name":"Wioska Grzaegorz1122","Points":268,"X":337,"Y":325,"Continent":"K33","Bonus":0,"PlayerID":849118954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60553","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262335Z"},{"ID":60554,"Name":"Wioska barbarzyƄska","Points":201,"X":388,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60554","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262336Z"},{"ID":60555,"Name":"Wioska Maarri91","Points":26,"X":477,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":699762681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60555","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262336Z"},{"ID":60556,"Name":"#168#","Points":193,"X":657,"Y":676,"Continent":"K66","Bonus":0,"PlayerID":692803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60556","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262337Z"},{"ID":60557,"Name":"Wioska Rangiku Matsumoto","Points":26,"X":659,"Y":681,"Continent":"K66","Bonus":0,"PlayerID":9300026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60557","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262337Z"},{"ID":60558,"Name":"Wioska barbarzyƄska","Points":430,"X":712,"Y":401,"Continent":"K47","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60558","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262338Z"},{"ID":60559,"Name":"001 gerf","Points":239,"X":740,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":849109036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60559","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262338Z"},{"ID":60560,"Name":"Wioska barbarzyƄska","Points":223,"X":707,"Y":624,"Continent":"K67","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60560","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262339Z"},{"ID":60561,"Name":"Wioska MoistVonLipwing","Points":26,"X":606,"Y":718,"Continent":"K76","Bonus":0,"PlayerID":6270765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60561","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262339Z"},{"ID":60562,"Name":"Wioska kolejne multikonto","Points":26,"X":694,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":8975453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60562","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26234Z"},{"ID":60563,"Name":"R 057","Points":197,"X":491,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":699195358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60563","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26234Z"},{"ID":60564,"Name":"Wioska Nooowka07","Points":26,"X":563,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699548922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60564","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262341Z"},{"ID":60565,"Name":"Wioska poweju56","Points":189,"X":281,"Y":419,"Continent":"K42","Bonus":0,"PlayerID":2140084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60565","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262341Z"},{"ID":60566,"Name":"Wioska barbarzyƄska","Points":731,"X":371,"Y":293,"Continent":"K23","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60566","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262342Z"},{"ID":60568,"Name":"Wioska barbarzyƄska","Points":585,"X":736,"Y":444,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60568","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262342Z"},{"ID":60569,"Name":"Wioska TraktorWiktor","Points":334,"X":463,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":849101284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60569","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262343Z"},{"ID":60570,"Name":"K67 40","Points":248,"X":718,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60570","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262343Z"},{"ID":60571,"Name":"Wioska Kupidynek","Points":26,"X":289,"Y":609,"Continent":"K62","Bonus":0,"PlayerID":7906167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60571","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262344Z"},{"ID":60572,"Name":"Wioska Sebko70","Points":224,"X":270,"Y":574,"Continent":"K52","Bonus":0,"PlayerID":699546317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60572","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262344Z"},{"ID":60574,"Name":"Wioska barbarzyƄska","Points":68,"X":318,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60574","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262345Z"},{"ID":60575,"Name":"GdaƄsk*","Points":224,"X":599,"Y":280,"Continent":"K25","Bonus":0,"PlayerID":1889913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60575","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262345Z"},{"ID":60576,"Name":"Wioska Rebel1995","Points":26,"X":311,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":2692494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60576","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262346Z"},{"ID":60577,"Name":"073 - Budowanko!","Points":315,"X":519,"Y":735,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60577","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262346Z"},{"ID":60578,"Name":"BobiLIVE","Points":318,"X":287,"Y":380,"Continent":"K32","Bonus":0,"PlayerID":699807296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60578","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262347Z"},{"ID":60579,"Name":"Wioska joaopaulo98","Points":26,"X":700,"Y":635,"Continent":"K67","Bonus":0,"PlayerID":849118769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60579","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262348Z"},{"ID":60580,"Name":"!Wioska barbarzyƄska 11","Points":559,"X":597,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60580","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262348Z"},{"ID":60581,"Name":"Wioska paweƂdante","Points":52,"X":280,"Y":601,"Continent":"K62","Bonus":0,"PlayerID":849112178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60581","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262349Z"},{"ID":60582,"Name":"Wioska Ed3kMonster","Points":226,"X":722,"Y":585,"Continent":"K57","Bonus":0,"PlayerID":849023540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60582","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262349Z"},{"ID":60583,"Name":"A#055","Points":400,"X":732,"Y":475,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60583","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26235Z"},{"ID":60584,"Name":"SunSun","Points":566,"X":404,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":849117087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60584","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26235Z"},{"ID":60585,"Name":"K67 42","Points":189,"X":711,"Y":603,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60585","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262351Z"},{"ID":60586,"Name":"Wioska iminlove","Points":173,"X":595,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":8621570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60586","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262351Z"},{"ID":60587,"Name":"Wioska Myanmar","Points":26,"X":501,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":699508363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60587","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262352Z"},{"ID":60588,"Name":"Wioska zniszczywacz","Points":187,"X":264,"Y":522,"Continent":"K52","Bonus":0,"PlayerID":699858423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60588","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262352Z"},{"ID":60589,"Name":"134.Stradi","Points":704,"X":413,"Y":271,"Continent":"K24","Bonus":8,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60589","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262353Z"},{"ID":60590,"Name":"Wioska Chuja","Points":395,"X":723,"Y":585,"Continent":"K57","Bonus":0,"PlayerID":849114028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60590","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262353Z"},{"ID":60591,"Name":"Wioska peniozdw","Points":26,"X":672,"Y":665,"Continent":"K66","Bonus":0,"PlayerID":9294339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60591","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262354Z"},{"ID":60592,"Name":"Wioska Vintrax","Points":26,"X":342,"Y":683,"Continent":"K63","Bonus":0,"PlayerID":849097793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60592","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262354Z"},{"ID":60593,"Name":"Wioska karplop123","Points":66,"X":687,"Y":653,"Continent":"K66","Bonus":0,"PlayerID":849119842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60593","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262355Z"},{"ID":60594,"Name":"072 - Budowanko!","Points":344,"X":495,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60594","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262355Z"},{"ID":60595,"Name":"Wioska Dawid4321","Points":26,"X":324,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":849098197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60595","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262356Z"},{"ID":60596,"Name":"Wioska barbarzyƄska","Points":61,"X":725,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60596","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262356Z"},{"ID":60597,"Name":"Wioska SIR UNITED","Points":44,"X":276,"Y":593,"Continent":"K52","Bonus":0,"PlayerID":9031705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60597","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262357Z"},{"ID":60598,"Name":"Wioska Maxi Montana","Points":286,"X":309,"Y":355,"Continent":"K33","Bonus":0,"PlayerID":849121846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60598","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262357Z"},{"ID":60599,"Name":"Wioska barbarzyƄska","Points":46,"X":335,"Y":321,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60599","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262358Z"},{"ID":60600,"Name":"Wioska Hakal93","Points":26,"X":709,"Y":383,"Continent":"K37","Bonus":0,"PlayerID":849116911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60600","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262358Z"},{"ID":60601,"Name":"Wioska barbarzyƄska","Points":253,"X":685,"Y":647,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60601","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262359Z"},{"ID":60602,"Name":"Wioska Mistrz 99","Points":170,"X":278,"Y":588,"Continent":"K52","Bonus":0,"PlayerID":849089207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60602","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262359Z"},{"ID":60603,"Name":"Wioska barbarzyƄska","Points":178,"X":395,"Y":712,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60603","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26236Z"},{"ID":60604,"Name":"Wioska Czadamm","Points":80,"X":308,"Y":356,"Continent":"K33","Bonus":0,"PlayerID":849104100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60604","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26236Z"},{"ID":60605,"Name":"Wioska barbarzyƄska","Points":131,"X":271,"Y":575,"Continent":"K52","Bonus":0,"PlayerID":1536625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60605","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262361Z"},{"ID":60606,"Name":"Leszek1964","Points":566,"X":291,"Y":391,"Continent":"K32","Bonus":0,"PlayerID":849122297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60606","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262361Z"},{"ID":60607,"Name":"Wioska hornet9","Points":26,"X":452,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":6249524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60607","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262362Z"},{"ID":60608,"Name":"Wioska barbarzyƄska","Points":59,"X":461,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60608","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262362Z"},{"ID":60609,"Name":"Wioska QiczikJP","Points":278,"X":267,"Y":426,"Continent":"K42","Bonus":0,"PlayerID":8662634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60609","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262363Z"},{"ID":60610,"Name":"Wioska barbarzyƄska","Points":466,"X":713,"Y":391,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60610","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262364Z"},{"ID":60611,"Name":"Wioska nocna1993","Points":26,"X":440,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":698798180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60611","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262364Z"},{"ID":60612,"Name":"Wioska Jestem Pogromca z TOPu","Points":249,"X":372,"Y":696,"Continent":"K63","Bonus":0,"PlayerID":698388041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60612","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262365Z"},{"ID":60613,"Name":"Wioska barbarzyƄska","Points":325,"X":668,"Y":334,"Continent":"K36","Bonus":0,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60613","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262365Z"},{"ID":60614,"Name":"Wioska Marcin Marci","Points":26,"X":579,"Y":721,"Continent":"K75","Bonus":0,"PlayerID":849113580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60614","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262366Z"},{"ID":60615,"Name":"Wioska barbarzyƄska","Points":51,"X":685,"Y":659,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60615","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262366Z"},{"ID":60616,"Name":"Wioska JaaMwG 1","Points":347,"X":725,"Y":594,"Continent":"K57","Bonus":0,"PlayerID":2593568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60616","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262367Z"},{"ID":60617,"Name":"KONFA TO MARKA, NARKA","Points":153,"X":280,"Y":421,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60617","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262367Z"},{"ID":60618,"Name":"Wioska Cinse","Points":117,"X":258,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":849111109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60618","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262368Z"},{"ID":60619,"Name":"Wioska Kadar","Points":284,"X":678,"Y":344,"Continent":"K36","Bonus":0,"PlayerID":849104297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60619","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262368Z"},{"ID":60620,"Name":"Wioska barbarzyƄska","Points":64,"X":467,"Y":265,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60620","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262369Z"},{"ID":60621,"Name":"Wioska Hasha","Points":392,"X":345,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":849097006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60621","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262369Z"},{"ID":60622,"Name":"Wioska wozny1020","Points":250,"X":342,"Y":680,"Continent":"K63","Bonus":0,"PlayerID":848981523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60622","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26237Z"},{"ID":60623,"Name":"Wioska barbarzyƄska","Points":52,"X":264,"Y":547,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60623","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26237Z"},{"ID":60624,"Name":"Wioska polska652","Points":112,"X":276,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":849122318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60624","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262371Z"},{"ID":60625,"Name":"Wioska barbarzyƄska","Points":195,"X":342,"Y":324,"Continent":"K33","Bonus":0,"PlayerID":699796330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60625","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262371Z"},{"ID":60626,"Name":"Wioska tomek22863","Points":93,"X":590,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":6066254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60626","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262372Z"},{"ID":60627,"Name":"Wioska barbarzyƄska","Points":64,"X":637,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60627","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262372Z"},{"ID":60628,"Name":"Osada koczownikĂłw","Points":348,"X":674,"Y":331,"Continent":"K36","Bonus":6,"PlayerID":699072129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60628","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262373Z"},{"ID":60629,"Name":"Wioska CccC2","Points":140,"X":307,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":848999518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60629","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262373Z"},{"ID":60630,"Name":"042 - Logrono","Points":165,"X":720,"Y":597,"Continent":"K57","Bonus":0,"PlayerID":698342159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60630","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262374Z"},{"ID":60631,"Name":"Wioska Karki98","Points":312,"X":264,"Y":463,"Continent":"K42","Bonus":0,"PlayerID":849101186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60631","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262374Z"},{"ID":60632,"Name":"Wioska barbarzyƄska","Points":150,"X":290,"Y":623,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60632","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262375Z"},{"ID":60633,"Name":"Wioska LokiPLN","Points":224,"X":322,"Y":654,"Continent":"K63","Bonus":0,"PlayerID":699431590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60633","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262375Z"},{"ID":60634,"Name":"Wioska Jacaxxx","Points":136,"X":678,"Y":332,"Continent":"K36","Bonus":0,"PlayerID":699451338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60634","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262376Z"},{"ID":60635,"Name":"Wioska barbarzyƄska","Points":107,"X":743,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":8742874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60635","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262376Z"},{"ID":60636,"Name":"Wioska Fezzoo","Points":26,"X":734,"Y":488,"Continent":"K47","Bonus":0,"PlayerID":6557487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60636","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262377Z"},{"ID":60637,"Name":"Wioska barbarzyƄska","Points":51,"X":258,"Y":479,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60637","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262377Z"},{"ID":60638,"Name":"Wioska Black Bird","Points":875,"X":727,"Y":593,"Continent":"K57","Bonus":0,"PlayerID":699778028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60638","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262378Z"},{"ID":60639,"Name":"Wioska barbarzyƄska","Points":150,"X":299,"Y":623,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60639","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262378Z"},{"ID":60640,"Name":"Wioska Lord Magik77","Points":75,"X":667,"Y":667,"Continent":"K66","Bonus":0,"PlayerID":698162153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60640","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262379Z"},{"ID":60641,"Name":"Wioska barbarzyƄska","Points":199,"X":438,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":849096310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60641","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262379Z"},{"ID":60642,"Name":"Wioska halooogan","Points":26,"X":381,"Y":297,"Continent":"K23","Bonus":0,"PlayerID":698676429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60642","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26238Z"},{"ID":60643,"Name":"Wioska barbarzyƄska","Points":141,"X":372,"Y":704,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60643","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26238Z"},{"ID":60644,"Name":"Wioska lordlewy10","Points":26,"X":720,"Y":414,"Continent":"K47","Bonus":0,"PlayerID":698380048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60644","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262381Z"},{"ID":60645,"Name":"Wioska barbarzyƄska","Points":53,"X":282,"Y":390,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60645","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262382Z"},{"ID":60646,"Name":"Wioska Norane","Points":212,"X":736,"Y":540,"Continent":"K57","Bonus":0,"PlayerID":8956715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60646","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262382Z"},{"ID":60647,"Name":"Wioska barbarzyƄska","Points":81,"X":439,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60647","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262383Z"},{"ID":60648,"Name":"Aqua","Points":437,"X":581,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":3395817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60648","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262383Z"},{"ID":60649,"Name":"Wioska Jamson","Points":128,"X":609,"Y":717,"Continent":"K76","Bonus":0,"PlayerID":205821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60649","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262384Z"},{"ID":60650,"Name":"Wioska barbarzyƄska","Points":52,"X":257,"Y":489,"Continent":"K42","Bonus":0,"PlayerID":698625834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60650","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262384Z"},{"ID":60651,"Name":"Wioska Davcio1994","Points":26,"X":416,"Y":727,"Continent":"K74","Bonus":0,"PlayerID":848916779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60651","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262385Z"},{"ID":60652,"Name":"Osada koczownikĂłw","Points":71,"X":475,"Y":260,"Continent":"K24","Bonus":6,"PlayerID":849063849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60652","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262385Z"},{"ID":60653,"Name":"Wioska Bliskoznaczny","Points":26,"X":686,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":699698745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60653","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262386Z"},{"ID":60654,"Name":"lozi20","Points":174,"X":269,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":8362886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60654","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262386Z"},{"ID":60656,"Name":"Wioska Lilit","Points":403,"X":360,"Y":700,"Continent":"K73","Bonus":0,"PlayerID":849109045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60656","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262387Z"},{"ID":60657,"Name":"OsioƂ trojaƄski","Points":405,"X":384,"Y":288,"Continent":"K23","Bonus":0,"PlayerID":698162312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60657","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262387Z"},{"ID":60658,"Name":"Wioska Helios874","Points":230,"X":636,"Y":485,"Continent":"K46","Bonus":0,"PlayerID":7733128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60658","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262388Z"},{"ID":60659,"Name":"MALBORK","Points":226,"X":646,"Y":304,"Continent":"K36","Bonus":0,"PlayerID":848944534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60659","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262388Z"},{"ID":60660,"Name":"113 Wioska barbarzyƄska","Points":105,"X":546,"Y":267,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60660","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262389Z"},{"ID":60661,"Name":"Wioska gggg1989","Points":26,"X":553,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":699397280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60661","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262389Z"},{"ID":60662,"Name":"Wioska barbarzyƄska","Points":49,"X":264,"Y":545,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60662","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26239Z"},{"ID":60663,"Name":"Wioska Patryczekk","Points":229,"X":320,"Y":340,"Continent":"K33","Bonus":0,"PlayerID":848955756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60663","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26239Z"},{"ID":60664,"Name":"Wioska AllAdin","Points":333,"X":735,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":698826217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60664","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262391Z"},{"ID":60665,"Name":"Wioska barbarzyƄska","Points":120,"X":385,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60665","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262391Z"},{"ID":60666,"Name":"Wioska *ZasadĆșca*","Points":105,"X":284,"Y":600,"Continent":"K62","Bonus":0,"PlayerID":699062337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60666","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262392Z"},{"ID":60667,"Name":"Wioska b 013","Points":110,"X":430,"Y":269,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60667","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262392Z"},{"ID":60668,"Name":"Queen A","Points":344,"X":605,"Y":720,"Continent":"K76","Bonus":0,"PlayerID":848944455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60668","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262393Z"},{"ID":60669,"Name":"Wioska barbarzyƄska","Points":124,"X":558,"Y":734,"Continent":"K75","Bonus":0,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60669","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262393Z"},{"ID":60670,"Name":"Wioska SteamUser1675976894","Points":88,"X":511,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":849122450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60670","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262394Z"},{"ID":60671,"Name":"Wioska barbarzyƄska","Points":46,"X":340,"Y":316,"Continent":"K33","Bonus":0,"PlayerID":698388578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60671","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262394Z"},{"ID":60672,"Name":"Wioska zewlakow6","Points":26,"X":292,"Y":612,"Continent":"K62","Bonus":0,"PlayerID":698379979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60672","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262395Z"},{"ID":60673,"Name":"Wioska 014","Points":438,"X":739,"Y":490,"Continent":"K47","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60673","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262395Z"},{"ID":60674,"Name":"Wioska PrzechyƂy i przechyƂy...","Points":26,"X":482,"Y":259,"Continent":"K24","Bonus":0,"PlayerID":698167413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60674","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262396Z"},{"ID":60675,"Name":"Wioska Destruktorix I","Points":124,"X":671,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":7539223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60675","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262396Z"},{"ID":60676,"Name":"Wioska barbarzyƄska","Points":121,"X":737,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":1601917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60676","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262397Z"},{"ID":60677,"Name":"Wioska Jaruga007","Points":192,"X":724,"Y":568,"Continent":"K57","Bonus":0,"PlayerID":1350456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60677","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262398Z"},{"ID":60678,"Name":"225 |","Points":93,"X":719,"Y":419,"Continent":"K47","Bonus":0,"PlayerID":8000875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60678","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262398Z"},{"ID":60679,"Name":"Wioska snake7","Points":130,"X":548,"Y":731,"Continent":"K75","Bonus":0,"PlayerID":698556600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60679","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262399Z"},{"ID":60680,"Name":"KWB9.3","Points":144,"X":506,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":9003698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60680","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262399Z"},{"ID":60681,"Name":"Wioska Stupid","Points":45,"X":522,"Y":737,"Continent":"K75","Bonus":0,"PlayerID":699480768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60681","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2624Z"},{"ID":60682,"Name":"K67 43","Points":193,"X":700,"Y":623,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60682","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2624Z"},{"ID":60683,"Name":"Wioska alexxdize","Points":136,"X":727,"Y":433,"Continent":"K47","Bonus":0,"PlayerID":849107860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60683","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262401Z"},{"ID":60684,"Name":"Wioska barbarzyƄska","Points":630,"X":348,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60684","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262401Z"},{"ID":60685,"Name":"Wioska adrianww13","Points":312,"X":606,"Y":280,"Continent":"K26","Bonus":0,"PlayerID":8907258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60685","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262402Z"},{"ID":60686,"Name":"Wioska","Points":169,"X":266,"Y":501,"Continent":"K52","Bonus":0,"PlayerID":2365630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60686","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262402Z"},{"ID":60687,"Name":"KONFA TO MARKA, NARKA","Points":235,"X":275,"Y":438,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60687","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262403Z"},{"ID":60688,"Name":"Wioska bino666","Points":365,"X":492,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":6310214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60688","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262403Z"},{"ID":60689,"Name":"114 Wioska barbarzyƄska","Points":108,"X":565,"Y":266,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60689","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262404Z"},{"ID":60690,"Name":"Wioska kamilek6969","Points":259,"X":407,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":849122487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60690","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262404Z"},{"ID":60691,"Name":"64 barbarzyƄska","Points":351,"X":269,"Y":454,"Continent":"K42","Bonus":0,"PlayerID":849018442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60691","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262405Z"},{"ID":60692,"Name":"Wioska Genotypek","Points":132,"X":609,"Y":281,"Continent":"K26","Bonus":0,"PlayerID":698281635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60692","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262405Z"},{"ID":60693,"Name":"Wioska39","Points":813,"X":324,"Y":345,"Continent":"K33","Bonus":0,"PlayerID":699711926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60693","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262406Z"},{"ID":60694,"Name":"Wioska Bernhard Roth*","Points":206,"X":311,"Y":344,"Continent":"K33","Bonus":0,"PlayerID":9186877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60694","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262406Z"},{"ID":60695,"Name":"Wioska barbarzyƄska","Points":149,"X":738,"Y":557,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60695","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262407Z"},{"ID":60696,"Name":"Wioska NikoMat","Points":53,"X":739,"Y":469,"Continent":"K47","Bonus":0,"PlayerID":699820969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60696","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262407Z"},{"ID":60697,"Name":"033 Wioska","Points":164,"X":737,"Y":512,"Continent":"K57","Bonus":0,"PlayerID":699671454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60697","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262408Z"},{"ID":60698,"Name":"Wioska Hasyp","Points":487,"X":375,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":1304915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60698","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262408Z"},{"ID":60699,"Name":"0092","Points":95,"X":283,"Y":389,"Continent":"K32","Bonus":0,"PlayerID":848913037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60699","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262409Z"},{"ID":60700,"Name":"Wioska King Grzes","Points":47,"X":294,"Y":621,"Continent":"K62","Bonus":0,"PlayerID":8746112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60700","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262409Z"},{"ID":60701,"Name":"Wioska barbarzyƄska","Points":52,"X":283,"Y":399,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60701","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26241Z"},{"ID":60702,"Name":"Wioska S1mple...","Points":26,"X":717,"Y":599,"Continent":"K57","Bonus":0,"PlayerID":849033395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60702","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26241Z"},{"ID":60703,"Name":"Wioska zielonyjohn","Points":26,"X":261,"Y":507,"Continent":"K52","Bonus":0,"PlayerID":848978169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60703","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262411Z"},{"ID":60704,"Name":"Wioska barbarzyƄska","Points":215,"X":408,"Y":715,"Continent":"K74","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60704","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262412Z"},{"ID":60705,"Name":"Osada koczownikĂłw","Points":107,"X":597,"Y":719,"Continent":"K75","Bonus":8,"PlayerID":849098628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60705","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262412Z"},{"ID":60706,"Name":"181","Points":158,"X":509,"Y":257,"Continent":"K25","Bonus":0,"PlayerID":3760848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60706","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262413Z"},{"ID":60707,"Name":"Wioska barbarzyƄska","Points":74,"X":614,"Y":294,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60707","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262413Z"},{"ID":60708,"Name":"Wioska PetC","Points":298,"X":586,"Y":665,"Continent":"K65","Bonus":0,"PlayerID":6300771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60708","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262414Z"},{"ID":60709,"Name":"Wioska barbarzyƄska","Points":589,"X":361,"Y":311,"Continent":"K33","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60709","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262414Z"},{"ID":60710,"Name":"Wioska Fontowcy Dual i MaƂpiake","Points":26,"X":494,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":698526500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60710","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262415Z"},{"ID":60711,"Name":"Wioska barbarzyƄska","Points":43,"X":677,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":698290577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60711","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262415Z"},{"ID":60712,"Name":"Wioska Jakub JĂłĆșwiak","Points":26,"X":546,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":699294577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60712","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262416Z"},{"ID":60713,"Name":"091 obrzeĆŒa","Points":157,"X":265,"Y":561,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60713","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262416Z"},{"ID":60714,"Name":"Wioska kcys2","Points":47,"X":664,"Y":325,"Continent":"K36","Bonus":0,"PlayerID":8907069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60714","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262417Z"},{"ID":60715,"Name":"Wioska barbarzyƄska","Points":180,"X":737,"Y":489,"Continent":"K47","Bonus":0,"PlayerID":699524891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60715","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262417Z"},{"ID":60716,"Name":"Wioska Czaki995","Points":185,"X":263,"Y":476,"Continent":"K42","Bonus":0,"PlayerID":849120088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60716","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262418Z"},{"ID":60717,"Name":"Wioska KOYE","Points":26,"X":735,"Y":546,"Continent":"K57","Bonus":0,"PlayerID":849120311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60717","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262418Z"},{"ID":60718,"Name":"Wioska EvilTwin","Points":55,"X":630,"Y":465,"Continent":"K46","Bonus":0,"PlayerID":699866510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60718","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262419Z"},{"ID":60719,"Name":"Wioska cinek1998","Points":26,"X":575,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":849084699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60719","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262419Z"},{"ID":60720,"Name":"K67 45","Points":134,"X":713,"Y":602,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60720","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26242Z"},{"ID":60721,"Name":"Wioska prosiaczek","Points":301,"X":580,"Y":719,"Continent":"K75","Bonus":0,"PlayerID":849121623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60721","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26242Z"},{"ID":60722,"Name":"Gwenville 019","Points":90,"X":454,"Y":271,"Continent":"K24","Bonus":0,"PlayerID":848986638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60722","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262421Z"},{"ID":60723,"Name":"Wioska Szalejot3","Points":294,"X":622,"Y":704,"Continent":"K76","Bonus":0,"PlayerID":849121329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60723","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262421Z"},{"ID":60724,"Name":"Wioska Itadakimasu","Points":26,"X":736,"Y":472,"Continent":"K47","Bonus":0,"PlayerID":849049864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60724","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262422Z"},{"ID":60725,"Name":"Sony 911","Points":209,"X":667,"Y":666,"Continent":"K66","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60725","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262422Z"},{"ID":60726,"Name":"Wioska kojak14","Points":26,"X":622,"Y":708,"Continent":"K76","Bonus":0,"PlayerID":9201946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60726","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262423Z"},{"ID":60727,"Name":"Wioska barbarzyƄska","Points":98,"X":627,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":848887199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60727","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262423Z"},{"ID":60728,"Name":"Wioska Simon118","Points":26,"X":693,"Y":358,"Continent":"K36","Bonus":0,"PlayerID":2210946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60728","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262424Z"},{"ID":60729,"Name":"Wioska barbarzyƄska","Points":1455,"X":567,"Y":724,"Continent":"K75","Bonus":0,"PlayerID":7756002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60729","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262424Z"},{"ID":60730,"Name":"Wioska Feii","Points":26,"X":645,"Y":303,"Continent":"K36","Bonus":0,"PlayerID":849097274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60730","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262425Z"},{"ID":60731,"Name":"Wioska Frodo1","Points":26,"X":267,"Y":456,"Continent":"K42","Bonus":0,"PlayerID":849108034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60731","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262425Z"},{"ID":60732,"Name":"Wioska barbarzyƄska","Points":51,"X":709,"Y":628,"Continent":"K67","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60732","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262426Z"},{"ID":60733,"Name":"Wioska Damian2023","Points":121,"X":525,"Y":743,"Continent":"K75","Bonus":0,"PlayerID":849115920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60733","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262426Z"},{"ID":60734,"Name":"021","Points":249,"X":389,"Y":285,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60734","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262427Z"},{"ID":60735,"Name":"Wioska AndrzejJ96","Points":269,"X":268,"Y":567,"Continent":"K52","Bonus":0,"PlayerID":848995446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60735","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262427Z"},{"ID":60736,"Name":"Wioska riki30.1976","Points":198,"X":511,"Y":744,"Continent":"K75","Bonus":0,"PlayerID":2426019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60736","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262428Z"},{"ID":60737,"Name":"022","Points":300,"X":397,"Y":289,"Continent":"K23","Bonus":0,"PlayerID":699694284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60737","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262429Z"},{"ID":60738,"Name":"Wioska Budrys2000","Points":26,"X":471,"Y":734,"Continent":"K74","Bonus":0,"PlayerID":849118435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60738","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262429Z"},{"ID":60739,"Name":"Wioska barbarzyƄska","Points":54,"X":739,"Y":467,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60739","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26243Z"},{"ID":60740,"Name":"Wioska Choroszcz","Points":34,"X":592,"Y":725,"Continent":"K75","Bonus":0,"PlayerID":849121269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60740","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26243Z"},{"ID":60741,"Name":"Wioska barbarzyƄska","Points":159,"X":276,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":698152377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60741","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262431Z"},{"ID":60742,"Name":"044. Osada koczownikĂłw","Points":194,"X":679,"Y":343,"Continent":"K36","Bonus":3,"PlayerID":2873154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60742","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262431Z"},{"ID":60743,"Name":"Wioska LeadyBoo","Points":26,"X":473,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":849121536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60743","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262432Z"},{"ID":60744,"Name":"Wioska KrĂłl Mieszko I","Points":122,"X":352,"Y":688,"Continent":"K63","Bonus":0,"PlayerID":698648691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60744","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262433Z"},{"ID":60745,"Name":"Wioska barbarzyƄska","Points":37,"X":735,"Y":567,"Continent":"K57","Bonus":0,"PlayerID":7038651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60745","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262433Z"},{"ID":60747,"Name":"Wioska patryczekpyrka96","Points":26,"X":493,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":849100836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60747","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262434Z"},{"ID":60748,"Name":"Wioska danek","Points":26,"X":338,"Y":326,"Continent":"K33","Bonus":0,"PlayerID":849121686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60748","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262434Z"},{"ID":60749,"Name":"K67 44","Points":171,"X":704,"Y":635,"Continent":"K67","Bonus":0,"PlayerID":698867483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60749","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262435Z"},{"ID":60750,"Name":"Wioska Sir Alano1","Points":86,"X":575,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":698206922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60750","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262435Z"},{"ID":60751,"Name":"_002_ Wioska barbarzyƄska","Points":90,"X":708,"Y":373,"Continent":"K37","Bonus":0,"PlayerID":849095068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60751","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262436Z"},{"ID":60752,"Name":"Wioska etrusk","Points":26,"X":742,"Y":495,"Continent":"K47","Bonus":0,"PlayerID":848963634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60752","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262436Z"},{"ID":60753,"Name":"Wioska barbarzyƄska","Points":43,"X":364,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60753","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262437Z"},{"ID":60754,"Name":"Wioska sweetdream","Points":26,"X":577,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":849122658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60754","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262437Z"},{"ID":60755,"Name":"076 - Budowanko!","Points":182,"X":482,"Y":742,"Continent":"K74","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60755","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262438Z"},{"ID":60756,"Name":"Wioska PROboszczz","Points":74,"X":726,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":699845927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60756","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262438Z"},{"ID":60757,"Name":"Wioska barbarzyƄska","Points":30,"X":435,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60757","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262439Z"},{"ID":60758,"Name":"Wioska J3bacTo","Points":225,"X":306,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":849001762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60758","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262439Z"},{"ID":60759,"Name":"Wioska barbarzyƄska","Points":80,"X":312,"Y":358,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60759","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26244Z"},{"ID":60760,"Name":"Wioska mmarcinho","Points":26,"X":669,"Y":323,"Continent":"K36","Bonus":0,"PlayerID":699557165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60760","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26244Z"},{"ID":60761,"Name":"Wioska barbarzyƄska","Points":79,"X":553,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":699854484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60761","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262441Z"},{"ID":60762,"Name":"Wioska marianoitaliuano","Points":26,"X":667,"Y":677,"Continent":"K66","Bonus":0,"PlayerID":9043233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60762","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262441Z"},{"ID":60763,"Name":"22 No Future","Points":568,"X":734,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60763","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262442Z"},{"ID":60764,"Name":"Wioska Szpadyzor","Points":133,"X":726,"Y":423,"Continent":"K47","Bonus":0,"PlayerID":849121691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60764","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262443Z"},{"ID":60765,"Name":"Wioska barbarzyƄska","Points":85,"X":731,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":699628084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60765","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262443Z"},{"ID":60766,"Name":"Wioska colt9","Points":26,"X":672,"Y":339,"Continent":"K36","Bonus":0,"PlayerID":6242167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60766","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262444Z"},{"ID":60767,"Name":"Wioska barbarzyƄska","Points":52,"X":361,"Y":698,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60767","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262444Z"},{"ID":60768,"Name":"Wioska mariuszf","Points":98,"X":644,"Y":697,"Continent":"K66","Bonus":0,"PlayerID":9004337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60768","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262445Z"},{"ID":60769,"Name":"Wioska barbarzyƄska","Points":53,"X":296,"Y":636,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60769","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262445Z"},{"ID":60770,"Name":"Wioska ewazeth","Points":26,"X":432,"Y":723,"Continent":"K74","Bonus":0,"PlayerID":849109507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60770","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262446Z"},{"ID":60771,"Name":"Wioska wolf1982","Points":26,"X":327,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":849039766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60771","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262446Z"},{"ID":60772,"Name":"Wioska Paveulon","Points":97,"X":701,"Y":623,"Continent":"K67","Bonus":0,"PlayerID":849110304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60772","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262447Z"},{"ID":60773,"Name":"#004 Las Palmas","Points":98,"X":335,"Y":667,"Continent":"K63","Bonus":8,"PlayerID":849101276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60773","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262447Z"},{"ID":60774,"Name":"Wioska artnow","Points":119,"X":697,"Y":355,"Continent":"K36","Bonus":0,"PlayerID":8061953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60774","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262448Z"},{"ID":60775,"Name":"PPF-56","Points":108,"X":524,"Y":262,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60775","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262448Z"},{"ID":60776,"Name":"Xxx 2","Points":157,"X":511,"Y":738,"Continent":"K75","Bonus":2,"PlayerID":7098955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60776","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262449Z"},{"ID":60777,"Name":"Wioska czaka222","Points":198,"X":571,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":849120467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60777","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262449Z"},{"ID":60778,"Name":"Wioska Lady Basia408","Points":125,"X":272,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":699330765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60778","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26245Z"},{"ID":60779,"Name":"Wioska barbarzyƄska","Points":84,"X":378,"Y":712,"Continent":"K73","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60779","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26245Z"},{"ID":60780,"Name":"Wioska Saladyn92t","Points":386,"X":370,"Y":436,"Continent":"K43","Bonus":0,"PlayerID":849122738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60780","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262451Z"},{"ID":60781,"Name":"078 - Budowanko!","Points":135,"X":503,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":7540891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60781","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262451Z"},{"ID":60782,"Name":"Wioska yam1","Points":169,"X":486,"Y":739,"Continent":"K74","Bonus":0,"PlayerID":8218433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60782","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262452Z"},{"ID":60783,"Name":"Wioska bs160","Points":261,"X":382,"Y":285,"Continent":"K23","Bonus":0,"PlayerID":2812197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60783","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262452Z"},{"ID":60784,"Name":"Wioska barbarzyƄska","Points":50,"X":338,"Y":676,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60784","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262453Z"},{"ID":60785,"Name":"Wioska hmc.","Points":38,"X":258,"Y":467,"Continent":"K42","Bonus":0,"PlayerID":699355948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60785","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262453Z"},{"ID":60786,"Name":"Wioska barbarzyƄska","Points":35,"X":405,"Y":716,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60786","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262454Z"},{"ID":60787,"Name":"Wioska S3b3k1999","Points":26,"X":584,"Y":282,"Continent":"K25","Bonus":0,"PlayerID":849121697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60787","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262454Z"},{"ID":60788,"Name":"Wiocha","Points":336,"X":284,"Y":584,"Continent":"K52","Bonus":0,"PlayerID":849122768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60788","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262455Z"},{"ID":60789,"Name":"Wioska barbarzyƄska","Points":37,"X":672,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60789","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262456Z"},{"ID":60790,"Name":"Wioska Adrianxl95.","Points":26,"X":742,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":699707057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60790","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262456Z"},{"ID":60791,"Name":"Wioska barbarzyƄska","Points":301,"X":712,"Y":394,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60791","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262457Z"},{"ID":60792,"Name":"Wioska Arto135","Points":74,"X":729,"Y":556,"Continent":"K57","Bonus":0,"PlayerID":3840616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60792","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262458Z"},{"ID":60793,"Name":"Wioska MANTOQ","Points":204,"X":459,"Y":733,"Continent":"K74","Bonus":0,"PlayerID":8309492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60793","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262458Z"},{"ID":60794,"Name":"Wioska LukaseQxxD","Points":312,"X":294,"Y":377,"Continent":"K32","Bonus":0,"PlayerID":2130659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60794","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262459Z"},{"ID":60795,"Name":"Wioska barbarzyƄska","Points":274,"X":737,"Y":551,"Continent":"K57","Bonus":0,"PlayerID":848995478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60795","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262459Z"},{"ID":60796,"Name":"WikingogrĂłd","Points":233,"X":727,"Y":430,"Continent":"K47","Bonus":0,"PlayerID":848939434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60796","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26246Z"},{"ID":60797,"Name":"Wioska --KEMPA--","Points":26,"X":271,"Y":565,"Continent":"K52","Bonus":0,"PlayerID":6070734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60797","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262461Z"},{"ID":60798,"Name":"Wioska barbarzyƄska","Points":134,"X":522,"Y":257,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60798","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262461Z"},{"ID":60799,"Name":"Grzelakb","Points":339,"X":723,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":849119223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60799","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262462Z"},{"ID":60800,"Name":"North 115","Points":426,"X":514,"Y":265,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60800","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262463Z"},{"ID":60801,"Name":"Wioska BELOZ","Points":95,"X":259,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":849122819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60801","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262463Z"},{"ID":60802,"Name":"Wioska SzefPatryƛ","Points":64,"X":512,"Y":741,"Continent":"K75","Bonus":0,"PlayerID":849122821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60802","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262464Z"},{"ID":60803,"Name":"Wioska barbarzyƄska","Points":43,"X":639,"Y":308,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60803","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262465Z"},{"ID":60804,"Name":"Wioska Sharkox","Points":26,"X":716,"Y":608,"Continent":"K67","Bonus":0,"PlayerID":8728202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60804","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262465Z"},{"ID":60805,"Name":"Wioska jmz41922","Points":162,"X":278,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":849122822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60805","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262466Z"},{"ID":60806,"Name":"Osada koczownikĂłw","Points":47,"X":443,"Y":732,"Continent":"K74","Bonus":7,"PlayerID":8268010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60806","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262466Z"},{"ID":60807,"Name":"Wioska Agamemnon","Points":26,"X":731,"Y":561,"Continent":"K57","Bonus":0,"PlayerID":699737563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60807","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262467Z"},{"ID":60808,"Name":"Wioska barbarzyƄska","Points":42,"X":737,"Y":507,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60808","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262468Z"},{"ID":60809,"Name":"Wioska frrrantic","Points":243,"X":520,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":698747719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60809","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262468Z"},{"ID":60810,"Name":"Wioska Mogok","Points":173,"X":613,"Y":711,"Continent":"K76","Bonus":0,"PlayerID":7820575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60810","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262469Z"},{"ID":60811,"Name":"Wioska barbarzyƄska","Points":153,"X":377,"Y":298,"Continent":"K23","Bonus":0,"PlayerID":3484132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60811","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26247Z"},{"ID":60812,"Name":"Wioska Lord Zabijaka1999","Points":47,"X":509,"Y":256,"Continent":"K25","Bonus":0,"PlayerID":8773151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60812","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26247Z"},{"ID":60813,"Name":"Wioska Chudy19","Points":321,"X":738,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":699856830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60813","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262471Z"},{"ID":60814,"Name":"Wioska barbarzyƄska","Points":37,"X":267,"Y":473,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60814","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262471Z"},{"ID":60815,"Name":"Wioska miodek1143143","Points":26,"X":671,"Y":673,"Continent":"K66","Bonus":0,"PlayerID":849031197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60815","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262472Z"},{"ID":60816,"Name":"092 obrzeĆŒa","Points":78,"X":268,"Y":560,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60816","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262473Z"},{"ID":60817,"Name":"Wioska mayald","Points":127,"X":326,"Y":331,"Continent":"K33","Bonus":0,"PlayerID":699873141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60817","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262473Z"},{"ID":60818,"Name":"Wioska barbarzyƄska","Points":232,"X":651,"Y":313,"Continent":"K36","Bonus":0,"PlayerID":698895940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60818","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262474Z"},{"ID":60819,"Name":"Osada koczownikĂłw","Points":39,"X":557,"Y":736,"Continent":"K75","Bonus":7,"PlayerID":699878511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60819","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262474Z"},{"ID":60820,"Name":"Wioska rafixiem","Points":236,"X":266,"Y":453,"Continent":"K42","Bonus":0,"PlayerID":699752776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60820","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262475Z"},{"ID":60821,"Name":"Wioska barbarzyƄska","Points":40,"X":297,"Y":624,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60821","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262476Z"},{"ID":60822,"Name":"Wioska KAUN","Points":180,"X":661,"Y":674,"Continent":"K66","Bonus":0,"PlayerID":849006194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60822","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262476Z"},{"ID":60823,"Name":"Wioska barbarzyƄska","Points":37,"X":440,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":698365960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60823","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262477Z"},{"ID":60824,"Name":"Wioska Santa aka Dziadzia","Points":26,"X":288,"Y":619,"Continent":"K62","Bonus":0,"PlayerID":698754087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60824","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262477Z"},{"ID":60825,"Name":"Wioska barbarzyƄska","Points":40,"X":703,"Y":364,"Continent":"K37","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60825","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262478Z"},{"ID":60826,"Name":"Osada koczownikĂłw","Points":34,"X":675,"Y":336,"Continent":"K36","Bonus":7,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60826","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262478Z"},{"ID":60827,"Name":"Wioska Kokeszko94","Points":26,"X":736,"Y":510,"Continent":"K57","Bonus":0,"PlayerID":849118761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60827","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262479Z"},{"ID":60828,"Name":"PPF-57","Points":77,"X":527,"Y":259,"Continent":"K25","Bonus":0,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60828","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26248Z"},{"ID":60829,"Name":"Wioska Treon","Points":53,"X":740,"Y":451,"Continent":"K47","Bonus":0,"PlayerID":849115010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60829","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26248Z"},{"ID":60830,"Name":"Wioska barbarzyƄska","Points":55,"X":626,"Y":301,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60830","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262481Z"},{"ID":60831,"Name":"Osada koczownikĂłw","Points":33,"X":611,"Y":712,"Continent":"K76","Bonus":7,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60831","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262481Z"},{"ID":60832,"Name":"Wioska Patrz Ale Nie Zjadaj","Points":26,"X":580,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":698850319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60832","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262482Z"},{"ID":60833,"Name":"WB47","Points":50,"X":298,"Y":374,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60833","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262483Z"},{"ID":60834,"Name":"Osada koczownikĂłw","Points":91,"X":388,"Y":715,"Continent":"K73","Bonus":2,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60834","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262483Z"},{"ID":60835,"Name":"Wioska Brauer92","Points":26,"X":626,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":849098265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60835","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262484Z"},{"ID":60836,"Name":"Wioska barbarzyƄska","Points":49,"X":521,"Y":257,"Continent":"K25","Bonus":0,"PlayerID":849064752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60836","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262484Z"},{"ID":60837,"Name":"Wioska adhd","Points":68,"X":601,"Y":717,"Continent":"K76","Bonus":0,"PlayerID":849025839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60837","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262485Z"},{"ID":60838,"Name":"Wioska kamera","Points":52,"X":271,"Y":451,"Continent":"K42","Bonus":0,"PlayerID":849046397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60838","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262486Z"},{"ID":60839,"Name":"Wioska barbarzyƄska","Points":55,"X":420,"Y":270,"Continent":"K24","Bonus":0,"PlayerID":6343784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60839","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262486Z"},{"ID":60840,"Name":"PPF-54","Points":88,"X":529,"Y":260,"Continent":"K25","Bonus":8,"PlayerID":1424656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60840","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262487Z"},{"ID":60841,"Name":"Wioska Ƃysy97","Points":26,"X":493,"Y":256,"Continent":"K24","Bonus":0,"PlayerID":849023337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60841","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262487Z"},{"ID":60842,"Name":"Wioska barbarzyƄska","Points":37,"X":666,"Y":675,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60842","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262488Z"},{"ID":60843,"Name":"Wioska extor98","Points":26,"X":739,"Y":470,"Continent":"K47","Bonus":0,"PlayerID":849095446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60843","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262489Z"},{"ID":60844,"Name":"Wioska heroarek","Points":26,"X":325,"Y":667,"Continent":"K63","Bonus":0,"PlayerID":849117513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60844","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262489Z"},{"ID":60845,"Name":"Wioska barbarzyƄska","Points":358,"X":621,"Y":701,"Continent":"K76","Bonus":0,"PlayerID":698353083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60845","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26249Z"},{"ID":60846,"Name":"Wioska Czaq1","Points":111,"X":492,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":849118231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60846","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262491Z"},{"ID":60847,"Name":"Wioska barbarzyƄska","Points":46,"X":737,"Y":441,"Continent":"K47","Bonus":0,"PlayerID":2999957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60847","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262491Z"},{"ID":60848,"Name":"Wioska Arletta82","Points":104,"X":731,"Y":579,"Continent":"K57","Bonus":0,"PlayerID":3112100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60848","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262492Z"},{"ID":60849,"Name":"Wioska barbarzyƄska","Points":38,"X":741,"Y":504,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60849","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262492Z"},{"ID":60850,"Name":"Wioska Wigerek","Points":271,"X":531,"Y":264,"Continent":"K25","Bonus":0,"PlayerID":7910501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60850","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262493Z"},{"ID":60851,"Name":"107. Wioska barbarzyƄska","Points":84,"X":733,"Y":465,"Continent":"K47","Bonus":0,"PlayerID":7494497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60851","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262494Z"},{"ID":60852,"Name":"181","Points":388,"X":376,"Y":294,"Continent":"K23","Bonus":0,"PlayerID":848977118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60852","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262494Z"},{"ID":60853,"Name":"Wioska barbarzyƄska","Points":59,"X":702,"Y":639,"Continent":"K67","Bonus":0,"PlayerID":1415009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60853","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262495Z"},{"ID":60854,"Name":"Wioska Albertini","Points":26,"X":729,"Y":563,"Continent":"K57","Bonus":0,"PlayerID":848922517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60854","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262496Z"},{"ID":60855,"Name":"Wioska barbarzyƄska","Points":42,"X":284,"Y":384,"Continent":"K32","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60855","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262496Z"},{"ID":60856,"Name":"Melina","Points":220,"X":315,"Y":348,"Continent":"K33","Bonus":0,"PlayerID":848909122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60856","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262497Z"},{"ID":60857,"Name":"Wioska barbarzyƄska","Points":36,"X":733,"Y":458,"Continent":"K47","Bonus":0,"PlayerID":698191218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60857","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262497Z"},{"ID":60858,"Name":"Wioska Botty","Points":228,"X":316,"Y":347,"Continent":"K33","Bonus":0,"PlayerID":8055581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60858","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262498Z"},{"ID":60859,"Name":"Wioska barbarzyƄska","Points":155,"X":283,"Y":406,"Continent":"K42","Bonus":0,"PlayerID":634848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60859","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262498Z"},{"ID":60860,"Name":"Wioska DonArturo","Points":26,"X":665,"Y":320,"Continent":"K36","Bonus":0,"PlayerID":849108673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60860","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262499Z"},{"ID":60861,"Name":"Wioska barbarzyƄska","Points":34,"X":697,"Y":361,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60861","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2625Z"},{"ID":60862,"Name":"Wioska przemekagatki","Points":26,"X":594,"Y":715,"Continent":"K75","Bonus":0,"PlayerID":699802009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60862","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2625Z"},{"ID":60863,"Name":"001","Points":48,"X":654,"Y":686,"Continent":"K66","Bonus":0,"PlayerID":698410946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60863","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262501Z"},{"ID":60864,"Name":"Wioska barbarzyƄska","Points":100,"X":663,"Y":668,"Continent":"K66","Bonus":0,"PlayerID":8627359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60864","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262502Z"},{"ID":60865,"Name":"Wioska Lech798","Points":241,"X":288,"Y":384,"Continent":"K32","Bonus":0,"PlayerID":698743511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60865","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262502Z"},{"ID":60866,"Name":"Wioska barbarzyƄska","Points":42,"X":561,"Y":726,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60866","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262503Z"},{"ID":60867,"Name":"Wioska brutal29","Points":56,"X":258,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":698655576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60867","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262504Z"},{"ID":60868,"Name":"Wioska barbarzyƄska","Points":87,"X":717,"Y":589,"Continent":"K57","Bonus":0,"PlayerID":848946700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60868","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262504Z"},{"ID":60869,"Name":"Wioska Andragon21","Points":61,"X":324,"Y":660,"Continent":"K63","Bonus":0,"PlayerID":8197987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60869","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262505Z"},{"ID":60870,"Name":"Wioska barbarzyƄska","Points":41,"X":738,"Y":519,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60870","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262506Z"},{"ID":60871,"Name":"Wioska Dawidoxil96","Points":227,"X":337,"Y":673,"Continent":"K63","Bonus":0,"PlayerID":849119163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60871","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262506Z"},{"ID":60872,"Name":"A#056","Points":157,"X":734,"Y":479,"Continent":"K47","Bonus":0,"PlayerID":2065730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60872","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262507Z"},{"ID":60873,"Name":"Wioska Savek","Points":26,"X":310,"Y":648,"Continent":"K63","Bonus":0,"PlayerID":699868399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60873","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262508Z"},{"ID":60874,"Name":"Wioska barbarzyƄska","Points":41,"X":262,"Y":535,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60874","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262508Z"},{"ID":60875,"Name":"Wioska Szymonos420","Points":238,"X":488,"Y":324,"Continent":"K34","Bonus":0,"PlayerID":849121196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60875","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262509Z"},{"ID":60876,"Name":"Wioska Bellu","Points":26,"X":299,"Y":377,"Continent":"K32","Bonus":0,"PlayerID":849061418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60876","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26251Z"},{"ID":60877,"Name":"Wioska barbarzyƄska","Points":44,"X":259,"Y":518,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60877","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26251Z"},{"ID":60878,"Name":"Wioska stefek alibaba","Points":101,"X":487,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":849010955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60878","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262511Z"},{"ID":60879,"Name":"058","Points":50,"X":714,"Y":383,"Continent":"K37","Bonus":0,"PlayerID":849091105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60879","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262512Z"},{"ID":60880,"Name":"Wioska KESHIK","Points":48,"X":274,"Y":439,"Continent":"K42","Bonus":0,"PlayerID":9006528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60880","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262512Z"},{"ID":60881,"Name":"Wioska MiczMicz","Points":104,"X":491,"Y":672,"Continent":"K64","Bonus":0,"PlayerID":699630393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60881","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262513Z"},{"ID":60882,"Name":"Wioska barbarzyƄska","Points":29,"X":258,"Y":470,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60882","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262513Z"},{"ID":60883,"Name":"Wioska boyka8721","Points":45,"X":730,"Y":577,"Continent":"K57","Bonus":0,"PlayerID":848888394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60883","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262514Z"},{"ID":60884,"Name":"Wioska barbarzyƄska","Points":34,"X":263,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":699510259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60884","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262515Z"},{"ID":60885,"Name":"Wioska KeymilLoveOrHate","Points":26,"X":435,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":849022907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60885","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262515Z"},{"ID":60886,"Name":"Wioska Sir Hood","Points":26,"X":568,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":7663945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60886","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262516Z"},{"ID":60887,"Name":"W kontakcie","Points":66,"X":735,"Y":559,"Continent":"K57","Bonus":0,"PlayerID":848932879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60887","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262517Z"},{"ID":60888,"Name":"Wioska Krasnoludek.Mędrek","Points":26,"X":268,"Y":562,"Continent":"K52","Bonus":0,"PlayerID":849009059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60888","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262517Z"},{"ID":60889,"Name":"Wioska barbarzyƄska","Points":171,"X":714,"Y":398,"Continent":"K37","Bonus":0,"PlayerID":699598425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60889","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262518Z"},{"ID":60890,"Name":"Wioska KARY1988","Points":26,"X":255,"Y":517,"Continent":"K52","Bonus":0,"PlayerID":3824463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60890","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262519Z"},{"ID":60891,"Name":"Wioska barbarzyƄska","Points":46,"X":552,"Y":728,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60891","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262519Z"},{"ID":60892,"Name":"Wioska xMario25x","Points":26,"X":316,"Y":663,"Continent":"K63","Bonus":0,"PlayerID":848910971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60892","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26252Z"},{"ID":60893,"Name":"Jehu_Kingdom_70","Points":71,"X":722,"Y":409,"Continent":"K47","Bonus":0,"PlayerID":8785314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60893","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26252Z"},{"ID":60894,"Name":"Wioska VencedorPL","Points":26,"X":744,"Y":473,"Continent":"K47","Bonus":0,"PlayerID":699842078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60894","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262521Z"},{"ID":60895,"Name":"Wioska barbarzyƄska","Points":36,"X":305,"Y":369,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60895","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262522Z"},{"ID":60896,"Name":"Wioska merty","Points":235,"X":380,"Y":708,"Continent":"K73","Bonus":0,"PlayerID":699847354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60896","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262522Z"},{"ID":60897,"Name":"Wioska barbarzyƄska","Points":31,"X":297,"Y":637,"Continent":"K62","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60897","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262523Z"},{"ID":60898,"Name":"Wioska Mroczne Elfy 1","Points":102,"X":620,"Y":706,"Continent":"K76","Bonus":0,"PlayerID":849113868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60898","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262523Z"},{"ID":60899,"Name":"Wioska zapomniaƂem hasƂa","Points":248,"X":446,"Y":735,"Continent":"K74","Bonus":0,"PlayerID":848911863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60899","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262524Z"},{"ID":60900,"Name":"Wioska ndse","Points":26,"X":474,"Y":737,"Continent":"K74","Bonus":0,"PlayerID":848980119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60900","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262525Z"},{"ID":60901,"Name":"Wioska bsju","Points":26,"X":732,"Y":549,"Continent":"K57","Bonus":0,"PlayerID":848980120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60901","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262525Z"},{"ID":60902,"Name":"WB46","Points":61,"X":291,"Y":378,"Continent":"K32","Bonus":0,"PlayerID":356642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60902","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262526Z"},{"ID":60903,"Name":"Wioska gsno","Points":26,"X":504,"Y":257,"Continent":"K25","Bonus":0,"PlayerID":848980456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60903","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262527Z"},{"ID":60904,"Name":"Wioska barbarzyƄska","Points":32,"X":401,"Y":280,"Continent":"K24","Bonus":0,"PlayerID":849085160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60904","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262527Z"},{"ID":60905,"Name":"Wioska khiu","Points":26,"X":302,"Y":371,"Continent":"K33","Bonus":0,"PlayerID":848980458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60905","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262528Z"},{"ID":60906,"Name":"Wioska cvde","Points":26,"X":709,"Y":372,"Continent":"K37","Bonus":0,"PlayerID":848980459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60906","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262529Z"},{"ID":60907,"Name":"Wioska fswq","Points":26,"X":588,"Y":272,"Continent":"K25","Bonus":0,"PlayerID":848980460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60907","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262529Z"},{"ID":60908,"Name":"Wioska nipki","Points":26,"X":673,"Y":335,"Continent":"K36","Bonus":0,"PlayerID":848980461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60908","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26253Z"},{"ID":60909,"Name":"Wioska veru","Points":26,"X":316,"Y":647,"Continent":"K63","Bonus":0,"PlayerID":848980492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60909","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26253Z"},{"ID":60910,"Name":"Wioska tews","Points":26,"X":731,"Y":425,"Continent":"K47","Bonus":0,"PlayerID":848980493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60910","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262531Z"},{"ID":60911,"Name":"Wioska laszc","Points":26,"X":323,"Y":341,"Continent":"K33","Bonus":0,"PlayerID":848980494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60911","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262532Z"},{"ID":60912,"Name":"Wioska nmih","Points":26,"X":349,"Y":312,"Continent":"K33","Bonus":0,"PlayerID":848980495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60912","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262532Z"},{"ID":60913,"Name":"Wioska barbarzyƄska","Points":41,"X":278,"Y":592,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60913","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262533Z"},{"ID":60914,"Name":"Wioska afad","Points":26,"X":412,"Y":719,"Continent":"K74","Bonus":0,"PlayerID":848980496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60914","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262534Z"},{"ID":60915,"Name":"Wioska barbarzyƄska","Points":46,"X":418,"Y":731,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60915","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262534Z"},{"ID":60916,"Name":"Wioska freaky97","Points":26,"X":436,"Y":274,"Continent":"K24","Bonus":0,"PlayerID":699011096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60916","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262535Z"},{"ID":60917,"Name":"Wioska barbarzyƄska","Points":32,"X":473,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60917","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262536Z"},{"ID":60918,"Name":"Wioska vosd","Points":26,"X":740,"Y":447,"Continent":"K47","Bonus":0,"PlayerID":848980497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60918","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262536Z"},{"ID":60919,"Name":"Wioska barbarzyƄska","Points":36,"X":651,"Y":687,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60919","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262537Z"},{"ID":60920,"Name":"Wioska amlk","Points":26,"X":269,"Y":582,"Continent":"K52","Bonus":0,"PlayerID":848980498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60920","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262538Z"},{"ID":60921,"Name":"Wioska filip9399","Points":26,"X":659,"Y":327,"Continent":"K36","Bonus":0,"PlayerID":698592565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60921","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262538Z"},{"ID":60922,"Name":"Wioska warmonger","Points":43,"X":393,"Y":718,"Continent":"K73","Bonus":0,"PlayerID":849065566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60922","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262539Z"},{"ID":60923,"Name":"Wioska barbarzyƄska","Points":44,"X":695,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60923","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262539Z"},{"ID":60924,"Name":"Wioska Lady K8","Points":26,"X":392,"Y":280,"Continent":"K23","Bonus":0,"PlayerID":699668392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60924","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26254Z"},{"ID":60925,"Name":"Wioska barbarzyƄska","Points":48,"X":346,"Y":691,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60925","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262541Z"},{"ID":60926,"Name":"Twierdza (ANS)","Points":1202,"X":293,"Y":420,"Continent":"K42","Bonus":22,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60926","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262541Z"},{"ID":60927,"Name":"Wioska lucko5","Points":26,"X":700,"Y":626,"Continent":"K67","Bonus":0,"PlayerID":699756403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60927","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262542Z"},{"ID":60928,"Name":"Lukaczka","Points":196,"X":265,"Y":491,"Continent":"K42","Bonus":0,"PlayerID":849123125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60928","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262542Z"},{"ID":60929,"Name":"Wioska barbarzyƄska","Points":46,"X":391,"Y":282,"Continent":"K23","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60929","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262543Z"},{"ID":60930,"Name":"Osada koczownikĂłw","Points":35,"X":464,"Y":264,"Continent":"K24","Bonus":6,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60930","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262543Z"},{"ID":60931,"Name":"Wioska farmerzestoczka","Points":75,"X":262,"Y":483,"Continent":"K42","Bonus":0,"PlayerID":849123128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60931","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262544Z"},{"ID":60933,"Name":"Wioska barbarzyƄska","Points":42,"X":672,"Y":336,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60933","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262544Z"},{"ID":60934,"Name":"Wioska Ljuboja1916","Points":43,"X":531,"Y":260,"Continent":"K25","Bonus":0,"PlayerID":849123135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60934","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262545Z"},{"ID":60935,"Name":"!Wioska barbarzyƄska","Points":229,"X":584,"Y":718,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60935","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262546Z"},{"ID":60936,"Name":"Osada koczownikĂłw","Points":76,"X":271,"Y":572,"Continent":"K52","Bonus":8,"PlayerID":849089881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60936","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262546Z"},{"ID":60937,"Name":"Wioska Kox12344","Points":153,"X":374,"Y":302,"Continent":"K33","Bonus":0,"PlayerID":849115509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60937","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262547Z"},{"ID":60938,"Name":"Wioska pawka283","Points":44,"X":539,"Y":741,"Continent":"K75","Bonus":0,"PlayerID":849121320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60938","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262547Z"},{"ID":60939,"Name":"Wioska barbarzyƄska","Points":30,"X":655,"Y":310,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60939","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262548Z"},{"ID":60940,"Name":"Wioska kondzio95rrr","Points":155,"X":732,"Y":555,"Continent":"K57","Bonus":0,"PlayerID":699054327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60940","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262549Z"},{"ID":60941,"Name":"Wioska Co biedaa","Points":26,"X":606,"Y":716,"Continent":"K76","Bonus":0,"PlayerID":849003332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60941","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262549Z"},{"ID":60942,"Name":"Wioska jesslexuwuowo","Points":80,"X":725,"Y":412,"Continent":"K47","Bonus":0,"PlayerID":849123162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60942","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26255Z"},{"ID":60943,"Name":"Wioska barbarzyƄska","Points":38,"X":259,"Y":543,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60943","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26255Z"},{"ID":60944,"Name":"Wioska Marass","Points":151,"X":469,"Y":741,"Continent":"K74","Bonus":0,"PlayerID":849100349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60944","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262551Z"},{"ID":60945,"Name":"Wioska 126","Points":59,"X":705,"Y":631,"Continent":"K67","Bonus":0,"PlayerID":848971079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60945","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262551Z"},{"ID":60946,"Name":"Flagi","Points":443,"X":273,"Y":415,"Continent":"K42","Bonus":0,"PlayerID":699633365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60946","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262552Z"},{"ID":60947,"Name":"Wioska barbarzyƄska","Points":44,"X":261,"Y":461,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60947","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262552Z"},{"ID":60948,"Name":"Wioska Bombelnik","Points":134,"X":700,"Y":375,"Continent":"K37","Bonus":0,"PlayerID":849016425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60948","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262553Z"},{"ID":60949,"Name":"!Wioska barbarzyƄska","Points":79,"X":581,"Y":722,"Continent":"K75","Bonus":0,"PlayerID":8779575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60949","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262553Z"},{"ID":60950,"Name":"Wioska Kanut","Points":200,"X":426,"Y":398,"Continent":"K34","Bonus":0,"PlayerID":698791053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60950","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262554Z"},{"ID":60951,"Name":"Wioska Vi-vali","Points":218,"X":274,"Y":570,"Continent":"K52","Bonus":0,"PlayerID":1867410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60951","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262554Z"},{"ID":60952,"Name":"Wioska barbarzyƄska","Points":33,"X":688,"Y":351,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60952","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262555Z"},{"ID":60953,"Name":"Osada koczownikĂłw","Points":35,"X":740,"Y":522,"Continent":"K57","Bonus":2,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60953","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262555Z"},{"ID":60954,"Name":"Wioska Szp4Q","Points":129,"X":281,"Y":417,"Continent":"K42","Bonus":0,"PlayerID":848951699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60954","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262556Z"},{"ID":60955,"Name":"Wioska barbarzyƄska","Points":33,"X":585,"Y":727,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60955","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262556Z"},{"ID":60956,"Name":"Wioska 100dni","Points":26,"X":505,"Y":742,"Continent":"K75","Bonus":0,"PlayerID":699878952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60956","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262557Z"},{"ID":60957,"Name":"Wioska barbarzyƄska","Points":35,"X":696,"Y":364,"Continent":"K36","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60957","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262557Z"},{"ID":60958,"Name":"Wioska gumis111","Points":26,"X":454,"Y":260,"Continent":"K24","Bonus":0,"PlayerID":849122931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60958","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262558Z"},{"ID":60959,"Name":"Wioska barbarzyƄska","Points":44,"X":585,"Y":729,"Continent":"K75","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60959","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262558Z"},{"ID":60960,"Name":"Wioska prince rudeboy","Points":136,"X":617,"Y":711,"Continent":"K76","Bonus":0,"PlayerID":9234594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60960","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262559Z"},{"ID":60961,"Name":"Wioska Lis44","Points":64,"X":567,"Y":736,"Continent":"K75","Bonus":0,"PlayerID":699773770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60961","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262559Z"},{"ID":60962,"Name":"Wioska barbarzyƄska","Points":28,"X":404,"Y":725,"Continent":"K74","Bonus":0,"PlayerID":849014922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60962","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26256Z"},{"ID":60963,"Name":"Wioska SwwQ","Points":26,"X":687,"Y":341,"Continent":"K36","Bonus":0,"PlayerID":8312412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60963","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26256Z"},{"ID":60964,"Name":"Wioska barbarzyƄska","Points":50,"X":737,"Y":521,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60964","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262561Z"},{"ID":60965,"Name":"Wioska jordonjbe","Points":180,"X":614,"Y":709,"Continent":"K76","Bonus":0,"PlayerID":849108915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60965","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262561Z"},{"ID":60966,"Name":"Wioska barbarzyƄska","Points":30,"X":468,"Y":264,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60966","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262562Z"},{"ID":60967,"Name":"Wioska B.E.R.S.E.R.","Points":26,"X":447,"Y":268,"Continent":"K24","Bonus":0,"PlayerID":698645802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60967","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262562Z"},{"ID":60968,"Name":"Wioska Forwalls","Points":126,"X":470,"Y":266,"Continent":"K24","Bonus":0,"PlayerID":849064715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60968","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262563Z"},{"ID":60969,"Name":"Wioska barbarzyƄska","Points":35,"X":260,"Y":459,"Continent":"K42","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60969","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262564Z"},{"ID":60970,"Name":"Wioska playbackp","Points":26,"X":267,"Y":425,"Continent":"K42","Bonus":0,"PlayerID":698226224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60970","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262564Z"},{"ID":60971,"Name":"Wioska barbarzyƄska","Points":35,"X":350,"Y":319,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60971","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262565Z"},{"ID":60972,"Name":"Wioska Saintros","Points":26,"X":686,"Y":357,"Continent":"K36","Bonus":0,"PlayerID":699788972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60972","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262565Z"},{"ID":60973,"Name":"Wioska barbarzyƄska","Points":38,"X":447,"Y":267,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60973","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262566Z"},{"ID":60974,"Name":"Wioska zdziƛ123","Points":26,"X":365,"Y":304,"Continent":"K33","Bonus":0,"PlayerID":849123002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60974","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262566Z"},{"ID":60975,"Name":"Wioska JeGrzegorz","Points":62,"X":726,"Y":570,"Continent":"K57","Bonus":0,"PlayerID":2620389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60975","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262567Z"},{"ID":60976,"Name":"Wioska barbarzyƄska","Points":35,"X":725,"Y":589,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60976","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262567Z"},{"ID":60977,"Name":"Wioska Dom Kichot","Points":26,"X":704,"Y":383,"Continent":"K37","Bonus":0,"PlayerID":849028071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60977","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262568Z"},{"ID":60978,"Name":"Wioska barbarzyƄska","Points":34,"X":704,"Y":369,"Continent":"K37","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60978","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262568Z"},{"ID":60979,"Name":"Wioska NeXi","Points":26,"X":719,"Y":412,"Continent":"K47","Bonus":0,"PlayerID":698850251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60979","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262569Z"},{"ID":60980,"Name":"Wioska barbarzyƄska","Points":38,"X":578,"Y":274,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60980","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262569Z"},{"ID":60981,"Name":"Wioska Kluha Jo","Points":141,"X":277,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":849029077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60981","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26257Z"},{"ID":60982,"Name":"Wioska gsxr600k2","Points":178,"X":720,"Y":590,"Continent":"K57","Bonus":0,"PlayerID":699084064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60982","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26257Z"},{"ID":60983,"Name":"Wioska techniq","Points":67,"X":501,"Y":740,"Continent":"K75","Bonus":0,"PlayerID":698658087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60983","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262571Z"},{"ID":60984,"Name":"Wioska barbarzyƄska","Points":32,"X":369,"Y":703,"Continent":"K73","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60984","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262571Z"},{"ID":60985,"Name":"Wioska vaksso","Points":113,"X":379,"Y":291,"Continent":"K23","Bonus":0,"PlayerID":8551316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60985","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262572Z"},{"ID":60986,"Name":"Wioska barbarzyƄska","Points":58,"X":731,"Y":462,"Continent":"K47","Bonus":0,"PlayerID":849101845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60986","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262572Z"},{"ID":60987,"Name":"AAA 1","Points":251,"X":306,"Y":651,"Continent":"K63","Bonus":0,"PlayerID":1809381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60987","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262573Z"},{"ID":60988,"Name":"Wioska barbarzyƄska","Points":33,"X":260,"Y":537,"Continent":"K52","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60988","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262573Z"},{"ID":60989,"Name":"ja tylko na moment xD","Points":172,"X":706,"Y":387,"Continent":"K37","Bonus":0,"PlayerID":699825797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60989","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262574Z"},{"ID":60990,"Name":"Wioska barbarzyƄska","Points":32,"X":601,"Y":287,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60990","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262574Z"},{"ID":60991,"Name":"Wioska lukaku","Points":65,"X":526,"Y":256,"Continent":"K25","Bonus":0,"PlayerID":849040332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60991","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262575Z"},{"ID":60992,"Name":"Wioska barbarzyƄska","Points":36,"X":693,"Y":644,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60992","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262575Z"},{"ID":60993,"Name":"Wioska Chwaliszew2008","Points":106,"X":350,"Y":315,"Continent":"K33","Bonus":0,"PlayerID":849112510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60993","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262576Z"},{"ID":60994,"Name":"Wioska barbarzyƄska","Points":40,"X":732,"Y":438,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60994","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262576Z"},{"ID":60995,"Name":"Wioska Mateo1315","Points":26,"X":379,"Y":710,"Continent":"K73","Bonus":0,"PlayerID":849052549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60995","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262577Z"},{"ID":60996,"Name":"Wioska barbarzyƄska","Points":37,"X":334,"Y":671,"Continent":"K63","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60996","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262578Z"},{"ID":60997,"Name":"Wioska dragon622","Points":219,"X":416,"Y":294,"Continent":"K24","Bonus":0,"PlayerID":7831811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60997","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262578Z"},{"ID":60998,"Name":"Wioska barbarzyƄska","Points":36,"X":301,"Y":644,"Continent":"K63","Bonus":0,"PlayerID":2289134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60998","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262579Z"},{"ID":60999,"Name":"Wioska Knoxpl","Points":48,"X":735,"Y":428,"Continent":"K47","Bonus":0,"PlayerID":849113485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60999","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262579Z"},{"ID":61000,"Name":"Wioska DĆŒejdĆŒejj","Points":26,"X":710,"Y":627,"Continent":"K67","Bonus":0,"PlayerID":849046647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61000","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26258Z"},{"ID":61001,"Name":"Camelot","Points":101,"X":331,"Y":672,"Continent":"K63","Bonus":0,"PlayerID":5999909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61001","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26258Z"},{"ID":61002,"Name":"Wioska barbarzyƄska","Points":27,"X":315,"Y":352,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61002","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262581Z"},{"ID":61003,"Name":"Wioska donpabloone","Points":26,"X":399,"Y":712,"Continent":"K73","Bonus":0,"PlayerID":699618066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61003","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262581Z"},{"ID":61004,"Name":"Wioska barbarzyƄska","Points":26,"X":716,"Y":613,"Continent":"K67","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61004","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262582Z"},{"ID":61005,"Name":"Wioska TheMooon","Points":138,"X":288,"Y":621,"Continent":"K62","Bonus":0,"PlayerID":849054606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61005","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262582Z"},{"ID":61006,"Name":"Wioska wojtas0112","Points":213,"X":615,"Y":284,"Continent":"K26","Bonus":0,"PlayerID":8106333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61006","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262583Z"},{"ID":61007,"Name":"Wioska barbarzyƄska","Points":32,"X":725,"Y":403,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61007","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262583Z"},{"ID":61008,"Name":"Wioska marekkkzzz665","Points":190,"X":631,"Y":696,"Continent":"K66","Bonus":0,"PlayerID":699798611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61008","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262584Z"},{"ID":61009,"Name":"Wioska Luu123","Points":93,"X":338,"Y":684,"Continent":"K63","Bonus":0,"PlayerID":849072855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61009","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262584Z"},{"ID":61010,"Name":"Wioska barbarzyƄska","Points":26,"X":480,"Y":743,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61010","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262585Z"},{"ID":61011,"Name":"Wioska Stefan Batory V","Points":26,"X":268,"Y":579,"Continent":"K52","Bonus":0,"PlayerID":849112561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61011","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262585Z"},{"ID":61012,"Name":"Wioska barbarzyƄska","Points":38,"X":620,"Y":292,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61012","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262586Z"},{"ID":61013,"Name":"Wioska Gumaty","Points":75,"X":320,"Y":336,"Continent":"K33","Bonus":0,"PlayerID":849108350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61013","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262586Z"},{"ID":61014,"Name":"Wioska DiscoZenon","Points":102,"X":259,"Y":482,"Continent":"K42","Bonus":0,"PlayerID":849112666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61014","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262587Z"},{"ID":61015,"Name":"Wioska barbarzyƄska","Points":26,"X":411,"Y":282,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61015","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262587Z"},{"ID":61016,"Name":"Wioska Sewo2137","Points":95,"X":311,"Y":645,"Continent":"K63","Bonus":0,"PlayerID":849123267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61016","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262588Z"},{"ID":61017,"Name":"Wioska Harasi","Points":47,"X":270,"Y":443,"Continent":"K42","Bonus":0,"PlayerID":8890611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61017","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262588Z"},{"ID":61018,"Name":"Wioska Mozzie","Points":26,"X":734,"Y":497,"Continent":"K47","Bonus":0,"PlayerID":849088429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61018","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262589Z"},{"ID":61019,"Name":"Wioska barbarzyƄska","Points":26,"X":499,"Y":259,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61019","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262589Z"},{"ID":61020,"Name":"Wioska Layton","Points":47,"X":691,"Y":365,"Continent":"K36","Bonus":0,"PlayerID":849120889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61020","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.26259Z"},{"ID":61021,"Name":"Wioska barbarzyƄska","Points":26,"X":566,"Y":271,"Continent":"K25","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61021","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262591Z"},{"ID":61022,"Name":"Osada koczownikĂłw","Points":26,"X":335,"Y":682,"Continent":"K63","Bonus":5,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61022","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262591Z"},{"ID":61023,"Name":"Wioska maciej55413","Points":68,"X":497,"Y":255,"Continent":"K24","Bonus":0,"PlayerID":9012894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61023","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262592Z"},{"ID":61024,"Name":"Wioska barbarzyƄska","Points":32,"X":669,"Y":671,"Continent":"K66","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61024","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262592Z"},{"ID":61025,"Name":"Metropolia","Points":91,"X":430,"Y":736,"Continent":"K74","Bonus":0,"PlayerID":849041557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61025","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262593Z"},{"ID":61026,"Name":"Wioska barbarzyƄska","Points":32,"X":736,"Y":449,"Continent":"K47","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61026","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262593Z"},{"ID":61027,"Name":"Wioska xFeFe","Points":26,"X":481,"Y":262,"Continent":"K24","Bonus":0,"PlayerID":699700007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61027","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262594Z"},{"ID":61028,"Name":"Wioska barbarzyƄska","Points":26,"X":736,"Y":509,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61028","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262594Z"},{"ID":61029,"Name":"Wioska Tomasz Stanek","Points":26,"X":702,"Y":362,"Continent":"K37","Bonus":0,"PlayerID":849083705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61029","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262595Z"},{"ID":61030,"Name":"Wioska barbarzyƄska","Points":28,"X":334,"Y":329,"Continent":"K33","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61030","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262595Z"},{"ID":61031,"Name":"Wioska HinduKush","Points":94,"X":564,"Y":733,"Continent":"K75","Bonus":0,"PlayerID":849121504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61031","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262596Z"},{"ID":61032,"Name":"Wioska barbarzyƄska","Points":45,"X":724,"Y":569,"Continent":"K57","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61032","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262596Z"},{"ID":61033,"Name":"Wioska TeroXer s","Points":26,"X":577,"Y":730,"Continent":"K75","Bonus":0,"PlayerID":6577211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61033","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262597Z"},{"ID":61034,"Name":"Wioska barbarzyƄska","Points":26,"X":618,"Y":298,"Continent":"K26","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61034","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262597Z"},{"ID":61035,"Name":"Wioska champion271","Points":81,"X":670,"Y":329,"Continent":"K36","Bonus":0,"PlayerID":699864609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61035","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262598Z"},{"ID":61036,"Name":"Wioska Pokraczny850","Points":26,"X":440,"Y":272,"Continent":"K24","Bonus":0,"PlayerID":699790202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61036","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262598Z"},{"ID":61037,"Name":"Wioska jedyny1taki","Points":32,"X":323,"Y":657,"Continent":"K63","Bonus":0,"PlayerID":1626626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61037","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262599Z"},{"ID":61038,"Name":"Wioska barbarzyƄska","Points":27,"X":609,"Y":714,"Continent":"K76","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61038","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262599Z"},{"ID":61039,"Name":"Wioska Kolodzij","Points":94,"X":723,"Y":417,"Continent":"K47","Bonus":0,"PlayerID":849118616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61039","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2626Z"},{"ID":61040,"Name":"Wioska barbarzyƄska","Points":26,"X":491,"Y":259,"Continent":"K24","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61040","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.2626Z"},{"ID":61041,"Name":"Wioska FAST ROTHMANS","Points":26,"X":637,"Y":690,"Continent":"K66","Bonus":0,"PlayerID":849111052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61041","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262601Z"},{"ID":61042,"Name":"Wioska barbarzyƄska","Points":26,"X":293,"Y":628,"Continent":"K62","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61042","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262602Z"},{"ID":61043,"Name":"Wioska spokojnabaƛka123","Points":64,"X":739,"Y":536,"Continent":"K57","Bonus":0,"PlayerID":849120763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61043","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262602Z"},{"ID":61044,"Name":"Wioska barbarzyƄska","Points":32,"X":400,"Y":722,"Continent":"K74","Bonus":0,"PlayerID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61044","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262603Z"},{"ID":61045,"Name":"Wioska GrubsonSzczecin","Points":26,"X":674,"Y":670,"Continent":"K66","Bonus":0,"PlayerID":7286392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61045","ServerKey":"pl181","CreatedAt":"2023-02-15T06:22:55.262603Z"}] diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_building_info b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_building_info new file mode 100644 index 0000000..6b033f5 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_building_info @@ -0,0 +1,227 @@ + + +
+ 30 + 1 + 90 + 80 + 70 + 5 + 1.26 + 1.275 + 1.26 + 1.17 + 900 + 1.2 +
+ + 25 + 0 + 200 + 170 + 90 + 7 + 1.26 + 1.28 + 1.26 + 1.17 + 1800 + 1.2 + + + 20 + 0 + 270 + 240 + 260 + 8 + 1.26 + 1.28 + 1.26 + 1.17 + 6000 + 1.2 + + + 15 + 0 + 300 + 240 + 260 + 8 + 1.26 + 1.28 + 1.26 + 1.17 + 6000 + 1.2 + + + 1 + 0 + 15000 + 25000 + 10000 + 80 + 2 + 2 + 2 + 1.17 + 586800 + 1.2 + + + 20 + 0 + 220 + 180 + 240 + 20 + 1.26 + 1.275 + 1.26 + 1.17 + 6000 + 1.2 + + + 1 + 0 + 10 + 40 + 30 + 0 + 1.26 + 1.275 + 1.26 + 1.17 + 10860 + 1.2 + + + 1 + 0 + 220 + 220 + 220 + 10 + 1.26 + 1.275 + 1.26 + 1.17 + 1500 + 1.2 + + + 25 + 0 + 100 + 100 + 100 + 20 + 1.26 + 1.275 + 1.26 + 1.17 + 2700 + 1.2 + + + 30 + 0 + 50 + 60 + 40 + 5 + 1.25 + 1.275 + 1.245 + 1.155 + 900 + 1.2 + + + 30 + 0 + 65 + 50 + 40 + 10 + 1.27 + 1.265 + 1.24 + 1.14 + 900 + 1.2 + + + 30 + 0 + 75 + 65 + 70 + 10 + 1.252 + 1.275 + 1.24 + 1.17 + 1080 + 1.2 + + + 30 + 1 + 45 + 40 + 30 + 0 + 1.3 + 1.32 + 1.29 + 1 + 1200 + 1.2 + + + 30 + 1 + 60 + 50 + 40 + 0 + 1.265 + 1.27 + 1.245 + 1.15 + 1020 + 1.2 + + + 10 + 0 + 50 + 60 + 50 + 2 + 1.25 + 1.25 + 1.25 + 1.17 + 1800 + 1.2 + + + 20 + 0 + 50 + 100 + 20 + 5 + 1.26 + 1.275 + 1.26 + 1.17 + 3600 + 1.2 + +
\ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_config b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_config new file mode 100644 index 0000000..9cdb616 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_config @@ -0,0 +1,127 @@ + + + +1 +1 +1 + + 1 + + +2 +5 +300 + + +1 +600 + + + 7 + 60 + 20 + 1 + + + 2 + 3 + + 1 + 2 + 0 + 0 + 0 + 1 + 1 + 0.003 + 1 + 2000 + 1 + 1 + 1000 + 100000 + 30 + 10 + 0 + + + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + + + 1 + 0 + 2 + 1000 + 0.9 + 28000 + 30000 + 25000 + + + + 0 + 1 + 0 + 0 + 0 + 0 + 50 + 0 + 5 + 15000 + 7 + 1 + v1 + + + 1000 + 4 + 70 + 10 + 8287 + 1 + 336 + 1 + 1 + + +1 + + + 0 + 60 + 6 + 10 + 12 + 36 + 10 + + + 1 + 23 + 8 + 2 + 14 + + + 5 + + + \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_unit_info b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_unit_info new file mode 100644 index 0000000..b3ffee2 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/interface.phpget_unit_info @@ -0,0 +1,133 @@ + + + + 1020 + 1 + 18 + 10 + 15 + 45 + 20 + 25 + + + 1500 + 1 + 22 + 25 + 50 + 15 + 40 + 15 + + + 1320 + 1 + 18 + 40 + 10 + 5 + 10 + 10 + + + 1800 + 1 + 18 + 15 + 50 + 40 + 5 + 10 + + + 900 + 2 + 9 + 0 + 2 + 1 + 2 + 0 + + + 1800 + 4 + 10 + 130 + 30 + 40 + 30 + 80 + + + 2700 + 5 + 10 + 120 + 40 + 30 + 50 + 50 + + + 3600 + 6 + 11 + 150 + 200 + 80 + 180 + 50 + + + 4800 + 5 + 30 + 2 + 20 + 50 + 20 + 0 + + + 7200 + 8 + 30 + 100 + 100 + 50 + 100 + 0 + + + 21600 + 10 + 10 + 150 + 250 + 400 + 150 + 100 + + + 18000 + 100 + 35 + 30 + 100 + 50 + 100 + 0 + + + 1 + 0 + 0.016666666666667 + 0 + 15 + 45 + 25 + 0 + + \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/ally.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/ally.txt new file mode 100644 index 0000000..531f221 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/ally.txt @@ -0,0 +1,283 @@ +1,Konfederacja,CSA-X,49,9610,79734535,84293901,1 +4,Farmerzy,Farma,1,2,9523,9523,127 +7,Spoceni+Kuzyni,KUZYNI,41,4745,39443045,39443116,4 +8,W+O+W,WOW,10,10,26037,26037,90 +12,AveMy,AveMy,2,1,5995,5995,146 +13,FarmerzyPremium,P.P,1,1,454,454,216 +19,Wojna+Domowa+Centrum,%2AWDC%2A,2,1,129,129,241 +24,Anonymous,IT,17,21,69149,69149,63 +29,Elitarne+plemie+zbieraczy+PP,EPZPP,50,122,481916,484598,32 +31,Project+D,PD,20,28,71157,71157,62 +33,Towarzystwo+Wzajemnej+Asekuracji,TWA,25,61,243847,243847,44 +35,MotoMyszy.,MzM,48,4085,35223609,35837645,6 +39,OZDR+%2B+Why,Ozdr%40,28,374,2661501,2661501,15 +47,Konfederacja+Z,CSA-Z,48,9539,77167049,81825499,2 +53,Zakon+Zielonego+Li%C5%9Bcia,420,1,13,49609,49609,71 +56,Pot%C4%99%C5%BCne+Pelikany,%2APP%2A,1,1,678,678,207 +59,Znani+i+Nieznani,ZiN,9,8,17154,17154,109 +68,Obro%C5%84cy+Cadii,Cadia,20,105,496548,496548,31 +71,why+so+serious,Why%3F,26,1144,9778999,9778999,10 +72,Dinozaury,DINO,3,4,15813,15813,111 +77,Wyznawcy+Darksizmu,-WzDa-,5,5,3811,3811,164 +80,Legion,-LM-,13,31,162947,162947,49 +85,Motomyszy,MzM.,50,4613,38916809,40754476,5 +89,FRIENDOLINOS,OG,2,0,168,168,237 +92,MotoMyszy%21,MzM%21,1,1,3421,3421,167 +96,Zakon+Czerwonej+R%C3%B3%C5%BCy,Z.C.R,12,13,19201,19201,102 +97,FARMERZY+PLEMION,FARME,1,6,23474,23474,95 +106,GWIEZDNA+FEDERACJA,GF,24,342,1896632,1896632,16 +112,co%C5%9B+wi%C4%99cej,CW,4,3,1122,1122,196 +115,zgierzanie,zgr,1,7,45603,45603,76 +116,PotrzymajMiBrowar,PMB,1,1,1598,1598,187 +117,Przybysze+z+kosmosu,Pzk,5,5,19683,19683,101 +120,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,OZDR,49,5550,46956015,48360507,3 +125,Szcz%C4%99%C5%9Bliwi+Gracze,SG,4,6,33298,33298,85 +129,PREM,Punkty,5,19,24356,24356,93 +134,DarNocy,DN,1,5,31077,31077,87 +147,Bandycka+Elita+Niskoros%C5%82ych,BENIS,1,0,0,0,260 +157,Domino,Dom,35,181,916826,916826,25 +159,Oggr,Ogg,1,0,524,524,214 +176,Albanski+Raj,AR,2,6,42024,42024,78 +185,NISZCZYCIELE,%7CN%7C,1,0,0,0,261 +187,Champions+League,-ChL-,1,0,347,347,220 +194,Vis+Maior,VS,17,150,820208,820208,26 +200,Takie+tam,Ttm.,1,0,531,531,213 +206,Pppp,P..p,1,0,551,551,211 +210,NoPon,N-P,47,68,204493,205215,47 +211,%2APotrzymaj+mi+Piwo,%2APmP,2,5,18106,18106,106 +214,Armia+Bosmana,BOSMAN,3,3,4230,4230,159 +216,Plemie+Igora,P.L.I,1,0,0,0,262 +220,Amatorzy+Kiszonych+Og%C3%B3rk%C3%B3w,ALKO,3,3,2264,2264,179 +234,Pepeki123,pepek,24,27,81264,81264,57 +236,Nakr%C4%99cane+Myszy,NM,1,0,262,262,226 +255,-QED-,QED,1,3,22893,22893,96 +256,GET+this+osada,GETTO,1,1,2552,2552,174 +260,B%C5%82%C4%99kitna+Planeta,%2ABP%2A,1,0,5708,5708,149 +281,Liga+Mistrzow,LM,1,3,5950,5950,147 +285,Kompletnie+Bezsensowne+Plemi%C4%99+xD,KBS,17,51,211326,211326,46 +287,fififi,fi,1,3,10461,10461,123 +290,Komercja+Plemionn,K+-+P,1,0,197,197,233 +291,MotoMyszy%3F,.Mzm.,47,2593,19704268,20286906,8 +301,Psycho+szczury,MzM..,37,1866,14094868,14094868,9 +305,Pro+Sto,Pro,1,1,7425,7425,136 +309,Konfederacja+Y,CSA-Y,18,1088,9174264,9174264,11 +317,Szalone+Nied%C5%BAwiedzie,Mi%C5%9Bki,1,0,4609,4609,157 +319,PAKT,PAKT,2,2,6188,6188,145 +336,hkgj,kw,1,0,0,0,263 +339,ZARZEW,ZRW,1,0,2775,2775,170 +355,uuuuuuuuuuuuuuu,uuu,1,0,3988,3988,160 +365,GIE%C5%81DA,GA,1,0,8318,8318,131 +369,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,0ZDR,36,3043,26198197,26198197,7 +373,Gildia+Kupiecka,GK,2,3,13805,13805,115 +374,xyz.,xyz.,1,0,901,901,199 +375,PePeKi+PP.PP,PKTPP,18,16,38947,38947,80 +377,AKADEMIA+WD,AWD,24,26,56124,56124,68 +382,HANDEL,HANDEL,1,1,2203,2203,180 +385,Bia%C5%82a+Armia,B.A,5,17,80171,80171,58 +397,Emka,E.M.,1,1,1170,1170,194 +412,BOMBA,BOMBA,22,107,396978,396978,35 +413,Giht,Hggf,1,1,1374,1374,189 +415,.%3Axxx%3A.,xxxx,1,0,26,26,249 +429,Zabi+Staw,Z-S,1,0,812,812,200 +430,%2A%2AWojna+Idei%2A%2A,%2A%2AWD%2A%2A,1,0,0,0,264 +432,McOpole,McOpo,21,210,1249639,1249639,21 +435,ave+sieci,sieci,1,1,4441,4441,158 +441,Project+D%21,PD%21,23,43,96866,96866,55 +443,PEAKY+BLINDERS,PB,1,0,0,0,265 +451,AVE+%28M%29,AVE%28M%29,1,0,169,169,236 +452,Obro%C5%84cy+Krasnali+Ogroduwych,OKO,47,108,386827,388034,36 +474,zagubiony+natanek,wul,1,0,536,536,212 +475,Zbieracze+Punktow+Premium,Z%2AP%2AP,2,2,9300,9300,129 +503,TMPL,TMP,1,1,2332,2332,178 +517,M%C3%B3j+Dom,%3D+MD+%3D,2,1,1174,1174,193 +520,ESSA,ESSA,2,6,25153,25153,92 +523,Wiocha,Yuby,1,0,261,261,227 +546,WOJNA+IDEI,WD,1,1,50,50,248 +548,Co+Chcesz%3F,CO,1,1,317,317,223 +554,%3Dpremium%3D,pp.,3,2,4768,4768,155 +557,WYROLOWANI,WYROL,1,5,39506,39506,79 +594,T+E+R+Y+T+O+R+I+U+M,%5DT%5B,4,4,13494,13494,117 +597,Bractwo+Krzy%C5%BCowe,%2BBK%2B,2,1,7686,7686,134 +607,NAJEMNICY.,N%2FM%2FY,5,22,95363,95363,56 +624,K35+DEMONY,K35,1,3,19050,19050,103 +625,Wilki,Wilki,1,0,808,808,201 +626,Targowica,Targ,1,3,11099,11099,121 +633,Wolny,WS,1,16,80047,80047,59 +636,Superpremium,%28%24%29,5,5,5381,5381,151 +647,Ow%C5%82osione+Rogale,OwR,7,11,36369,36369,82 +651,Semper+Invicta,Sempe,3,4,11832,11832,120 +664,Kal-Kol,K+L+N,3,2,7328,7328,138 +666,KOM0RNICY+2,KOM2,27,504,3631190,3631190,13 +686,Semper+Invicta.,Semp.,3,2,3169,3169,169 +689,Ga%C5%9Bnice+Po%C5%BCarowe+Stra%C5%BCaka,GPS%21,1,0,126,126,243 +693,Why+So+Serious%3F,Why,1,0,0,0,266 +722,Bractwo+Nocnych+Polan,BNP,30,196,1067408,1067408,22 +723,Raki+nie+boraki,Rnb,1,1,2750,2750,171 +733,Kuzyni+2,KUZYNA,1,1,26,26,250 +750,Moje+OHV,OHV,1,0,249,249,228 +758,-300-,-300-,5,6,13695,13695,116 +766,%2AAnonymous%2A,%2AAMS%2A,1,0,0,0,267 +778,Imperium+Polskie,IP,12,12,30040,30040,88 +785,KOMORNICY3,KOM3,38,737,5057759,5057759,12 +786,JP2+2137,21%3A37,7,48,257077,257077,42 +806,Cesarstwo+Zachodnio+Rzymskie,SPQR,1,0,26,26,251 +809,NOC3,NOC3,1,0,343,343,221 +822,%2AGramy+Dla+Zabawy%2A%2A,%2AGDZ%2A%2A,2,10,42120,42120,77 +830,Komornicy,KOM1,3,13,73615,73615,61 +841,PP+Pan+Dziobak,PEPE,1,1,771,771,203 +847,Nowa+nadzieja,Nowa,35,119,351739,351739,39 +862,IMPERIUM+%2B,.%3A%2B%3A.,31,287,1774471,1774471,17 +936,Gracz+bula9001+zablokowa%C5%82+ci%C4%99.,bula90,1,8,77623,77623,60 +944,YOGI,YOGI,7,14,60284,60284,66 +945,Brygada+RR,RR,1,0,689,689,206 +963,Grupa+Amerykanka,GAZ,2,2,2349,2349,176 +965,Kamilanie+Gora,KG,1,0,1827,1827,182 +989,KOMORNICYX,KOMX,2,1,9905,9905,125 +991,Ordo+Theutonicorum,OT,1,0,0,0,268 +1023,AWANGARDA,.%29A%28.,4,15,55248,55248,69 +1039,IMPERIUM+%2B%2B,%3A%2B%3A,11,107,563999,563999,30 +1040,We+Are+Ready%21,WAR%21,2,3,18048,18048,107 +1052,Gachi+Frens,-%3DGF%3D-,11,29,139074,139074,51 +1058,Powa%C5%BCneUgrupowanieBy%C5%82ychGraczy,PUBG,1,1,10021,10021,124 +1079,Rycerze+Czerwonego+Tartanu,RCT,6,56,369388,369388,37 +1096,DNR+F,ACHTUN,4,7,38811,38811,81 +1108,K0MORNICY4,KOM4,13,68,329883,329883,40 +1127,BLOCKCHAIN,CRYPTO,1,8,49418,49418,72 +1128,Nazwa+b%C4%99dzie+wkr%C3%B3tce,NBW,16,81,416408,416408,33 +1140,0.7+zg%C5%82o%C5%9B+si%C4%99,POLEJ,8,135,1011133,1011133,24 +1148,HELLGATE,%2AHG%2A,9,61,234026,234026,45 +1161,Ose%C5%82ka,OS.,1,2,13377,13377,118 +1163,Kl8F,Klasa8,2,2,12630,12630,119 +1166,Dybuk,Dybuk,1,3,18993,18993,104 +1170,Nono,Nnn,1,0,0,0,269 +1209,Komandosi+na+5,KOM5,2,5,20529,20529,100 +1226,Cartel+TW,Cartel,40,476,3200975,3200975,14 +1232,Braty+i+Kompany,BiK,4,4,1235,1235,192 +1247,%C5%BCydek+natanek,qwq,1,0,243,243,229 +1258,Bum%21,Bum%21,1,0,128,128,242 +1261,Ujazdowcy,UJ,1,2,6741,6741,143 +1275,CSA-ATAK,CSA-AT,1,0,26,26,252 +1278,Waffen-SS,W-SS,1,3,7062,7062,141 +1293,youll+never+walk+alone,ynwa,11,50,301640,301640,41 +1312,Purpurowi+Zegarmistrze+%C5%9Awiat%C5%82a,ZEGARY,45,186,701653,703439,28 +1317,1edc,1edc,1,0,26,26,253 +1333,Grupa+Wsparcia+Amator%C3%B3w,GWA,1,0,764,764,204 +1336,Scandi+Power,SCP,21,266,1514988,1514988,18 +1338,weee,wg,1,0,0,0,270 +1347,BezCov,B-C,3,2,7308,7308,139 +1357,J.+B.+B....,JBB%3B%2F,1,0,0,0,271 +1368,Elitarny+Legion,ELITA,2,18,68427,68427,64 +1372,WIDMO,WIDMO,1,0,0,0,272 +1376,Wojna+Idei+P,WDP,1,1,628,628,209 +1389,dfbdfbd,db,1,0,4663,4663,156 +1399,Bojk%C3%B3w,_B_,3,6,36070,36070,83 +1411,HURAGAN,Tajfun,28,257,1405083,1405083,20 +1416,Z%C5%82odzieje+Przysz%C5%82o%C5%9Bci,%3DZP%3D,1,1,1857,1857,181 +1418,Plemi%C4%99+Rodu+Smoka,PRS,3,22,172971,172971,48 +1421,Dla+fanu+pykamy,DFP,1,0,1643,1643,184 +1423,Grupa+Armii+%C5%9Arodek,%C5%9Arodek,2,11,52309,52309,70 +1428,Wodne+zwierzaczki,WZ,1,3,17761,17761,108 +1431,Amanita+Muscaria,A-M,3,2,1511,1511,188 +1432,Nasze+Plemie,ABW,1,1,1627,1627,185 +1448,myself,%3DMf%3D,1,0,0,0,273 +1456,1-2-0,1x2,2,2,10863,10863,122 +1460,bobertos,ZIOM,2,1,200,200,232 +1466,GREEN+STREET+HOOLIGANS,GSH,7,20,112014,112014,54 +1470,SunnyValley,SV,1,6,45642,45642,75 +1477,Do+ko%C5%84ca%21,DK%21,1,1,307,307,224 +1480,KUZYN+X,KUZYN%3F,14,284,1482901,1482901,19 +1483,Afrika+Korps,AK,1,0,0,0,274 +1484,INVISIBLE,IV,1,0,26,26,254 +1494,Wioska+Matrix9105%40,Matrix,1,0,0,0,275 +1498,Kokoko,KKK7,1,0,2745,2745,172 +1523,Ty+i+Twoje+orzeszki,T.T,26,115,649837,649837,29 +1526,Polanie,Polani,1,0,0,0,276 +1528,NieZniszczalni.,NZ,3,3,2617,2617,173 +1530,S%C5%81OWIANIE,S%C5%81OWO,3,3,6388,6388,144 +1535,The+Gorillas,GOR,2,26,142006,142006,50 +1538,Ho+no+tu,SOO,1,2,7382,7382,137 +1551,Siewca+Wiatru,%7ESW%7E,7,14,48043,48043,74 +1573,DUCHY,DUCH,11,10,9505,9505,128 +1582,Ca%C5%82e+%C5%BBycie+z+Wariatami,WARIAT,1,1,7987,7987,133 +1585,SAM+WE+M%C5%81YNIE,SWM,1,0,722,722,205 +1588,Moment+Strategiczny,no+c%C3%B3%C5%BC,1,12,59739,59739,67 +1590,Bo+od+tylu+tez+jest+fajnie,Xes,5,5,3318,3318,168 +1597,Kontra,Kontra,42,178,791549,799441,27 +1599,ma%C5%82e+ciche+do+g%C4%99siej+szyji,mcgs,1,0,358,358,219 +1602,Uuuu,Uuy,1,1,3854,3854,163 +1609,asdd,das,1,0,0,0,277 +1610,Kombinat+Punkkt%C3%B3w+Premium,KPP,1,0,138,138,240 +1621,Rolnicy+Podlasie,RP,11,186,1018468,1018468,23 +1626,JazdaZKuramk,JZK,1,0,0,0,278 +1627,ANONYMOUSS,ANS,15,43,112530,112530,53 +1636,GDZIE+S%C4%84+%3F%3F%3F,MA%C5%81YSZ,1,1,3622,3622,165 +1638,asyy,asyy,1,0,26,26,255 +1643,1112,12,1,0,0,0,279 +1645,Rekontakt,REK,2,3,8317,8317,132 +1648,Aldente,Ald,1,1,338,338,222 +1651,Oszukani,New,2,1,3936,3936,161 +1652,%C5%81omocimy,Zaj%C4%99nc,1,7,15823,15823,110 +1656,Robotniczy+Klub+Sportowy+HUWDU,HUWDU,1,1,270,270,225 +1657,Xyz%2C,Xyz%2C,1,0,498,498,215 +1669,Mocny+FULL,FULL,5,8,18721,18721,105 +1672,MKM.,MKM.,1,2,9572,9572,126 +1680,Mymu,My,2,4,27342,27342,89 +1681,fehg,wwerj,1,0,0,0,280 +1683,......,FIN,1,9,49097,49097,73 +1687,SoSKooperacja,SoS,7,7,14738,14738,114 +1690,Nie%C5%9Bmiertelni,ookp,1,1,2343,2343,177 +1691,Zbieram+flagi,Zbf,1,4,7264,7264,140 +1692,Zapraszam+ch%C4%99tnych,Buuu,1,1,5178,5178,152 +1700,Fiku+Miku,FIUFIU,4,70,367550,367550,38 +1705,Galaktyczna+Federacja+%C5%9Awiat%C5%82a,GF+II,1,1,1609,1609,186 +1707,Koniec,1234,1,1,26,26,256 +1715,R-C-,RC,1,2,5005,5005,153 +1716,KOMORNIKI,KOMY,2,4,34258,34258,84 +1721,Pocahontas,Gg,1,2,5823,5823,148 +1724,Punkty+Premium+i+Flagi,Witamy,37,64,251898,251898,43 +1727,Lykanie,LK,1,0,0,0,281 +1728,fffff,fffff,1,1,3440,3440,166 +1729,Gallowo,GAL,1,7,14794,14794,113 +1734,Woir,Wrrrr,1,1,5703,5703,150 +1735,Strong+Ekipa,SE,31,114,404065,404065,34 +1737,Samiec+Alfa,Alfa,1,0,0,0,282 +1740,T.W.,%3DTW%3D,1,19,122227,122227,52 +1745,Dni+w+Plemieniu,DWP,1,2,15224,15224,112 +1750,CZY+TO+X%3F,Xx,1,0,0,0,283 +1751,xddd,xddd,1,0,68,68,246 +1753,eeee,eeee,1,1,774,774,202 +1754,PogromcY,PY,1,1,1131,1131,195 +1755,cudo,C%21%21,1,1,988,988,198 +1757,Lublin,LUB,1,1,1274,1274,190 +1758,Oddam+wioski,OW,1,5,25709,25709,91 +1760,Qwer,Qwe,1,4,8366,8366,130 +1763,Altra,ALR,1,5,23924,23924,94 +1764,Traktor,TRK,1,1,26,26,257 +1770,ooooo,ooo,1,1,153,153,239 +1771,WD40,30,1,2,6944,6944,142 +1772,Jdhd,Hdhdh,1,1,2516,2516,175 +1777,Chlip,CHP,1,1,998,998,197 +1779,1905,CWKS,1,2,7537,7537,135 +1780,Lololololol,Lol,2,3,21393,21393,97 +1782,disco,dsc,1,1,639,639,208 +1783,Niszczycielski+Akwedukt,NA,2,2,1681,1681,183 +1785,HELLO,HELLO,2,2,1237,1237,191 +1786,Pomy%C5%9Bl+zanim+kopniesz+Qunia,Q%C5%84.,1,1,3883,3883,162 +1787,WCF+%21,WCF,1,1,26,26,258 +1789,klin,lki,1,0,239,239,230 +1790,Kruk,-KR-,1,8,32971,32971,86 +1791,Wymiana,Flagi,1,1,26,26,259 +1792,Winners,Win,1,1,371,371,218 +1793,Sam1,Sam1,1,11,67321,67321,65 +1795,Kukabaka,kUKLA,2,2,562,562,210 +1797,Mi%C5%82o%C5%9Bnicy+Taniego+Piwa,Browar,18,19,21004,21004,98 +1798,Gggg,Ggg,1,1,4773,4773,154 +1799,Kkkkk,Kkkkk,2,2,52,52,247 +1802,weRFAS,DFSAFS,2,2,103,103,244 +1803,czarnuchowo,WPDS,1,1,162,162,238 +1804,12345,12345,3,3,78,78,245 +1806,Kto+zjad%C5%82+ciastka%3F,KZC%3F,1,1,206,206,231 +1807,ZaPPFrakcja+W,CSA-W,1,0,443,443,217 +1808,LECOQ,LECOQ,1,3,20560,20560,99 +1809,Vexel,Vexel,1,1,178,178,234 +1810,Sobie+Sam,SS,1,1,172,172,235 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_all.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_all.txt new file mode 100644 index 0000000..610101b --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_all.txt @@ -0,0 +1,2583 @@ +1359,6948,110403 +866,17714,464632 +87,33900,8781502 +1188,50930,180594 +859,61791,475482 +660,82782,893970 +759,87575,643368 +893,89637,422592 +792,100452,564941 +2056,101074,7522 +2563,108256,4 +1940,112401,14195 +720,113796,720174 +2117,117208,5371 +1102,118121,224000 +1040,122492,263506 +2281,126954,1459 +2207,128353,2947 +1559,129795,59293 +2233,131972,2247 +2328,148405,748 +1085,160513,231831 +828,192947,518733 +1539,195249,61994 +1079,197581,234696 +2168,205821,4043 +21,225023,23891704 +1131,254937,205369 +1778,260666,29387 +71,272173,10799145 +1908,281866,16910 +1173,289542,186520 +783,301602,581213 +965,310729,346482 +1863,325491,20650 +515,335509,1408430 +1665,337137,42344 +200,356642,4710462 +915,361125,401452 +1463,363280,79994 +1414,364126,94248 +2540,371910,10 +1281,378757,136306 +470,382222,1631788 +185,393668,5013598 +1685,412571,40021 +1711,439825,37047 +1192,466800,179125 +1850,470266,21915 +257,477415,3494808 +1113,478956,217754 +1001,483145,306120 +1702,498483,38110 +1643,526350,44990 +1700,529552,38363 +251,542253,3615678 +2270,545152,1661 +1947,546458,13365 +346,556154,2489519 +843,563544,498350 +1993,566379,10283 +1315,569790,124391 +2021,570100,8959 +2133,583500,5011 +1043,584989,262862 +794,591733,562498 +2072,602408,6936 +2527,603968,10 +225,606407,4210863 +1199,606706,176086 +1545,609384,61314 +1823,610196,24651 +1123,634848,210707 +2574,662253,1 +873,671516,450991 +413,692803,1940481 +954,712216,358666 +824,724621,522076 +835,745946,508554 +1382,747422,102624 +338,758104,2574583 +2508,762859,17 +1838,762975,23244 +1400,763529,98069 +481,765188,1551117 +1171,769293,186877 +1476,796977,77899 +1833,823987,23953 +91,828637,8634973 +1626,869195,48231 +42,873575,15727673 +1425,878961,92194 +578,879782,1144931 +1398,881782,98848 +1211,896355,170021 +949,915113,361844 +1571,919882,57725 +2163,921888,4121 +118,926823,7227911 +2456,930720,59 +473,940693,1620850 +981,942959,328071 +1084,944147,232433 +1830,947564,24145 +1039,947923,264254 +2581,949279,1 +952,950985,359045 +1201,951823,174712 +1506,959179,70094 +1317,960100,123972 +38,1006847,16713375 +789,1015528,569643 +113,1018357,7432487 +927,1020792,390258 +969,1021709,342934 +2109,1034117,5603 +1295,1043028,130875 +2050,1044760,7890 +1889,1049851,18226 +607,1078121,1041188 +1498,1079223,71447 +253,1086351,3552864 +1350,1095271,112509 +301,1095489,2870336 +946,1096254,364891 +2107,1106220,5729 +2458,1132842,52 +1752,1164249,32486 +1565,1170102,58497 +1195,1205898,176939 +2073,1227022,6898 +1870,1227918,20282 +93,1238300,8462005 +1625,1260088,48433 +641,1267913,939976 +1108,1270916,220192 +1542,1276665,61531 +1670,1284796,41941 +1104,1285441,223509 +1419,1286008,93239 +2105,1322622,5796 +1729,1323424,34546 +656,1347385,901713 +1798,1350456,27384 +2061,1371998,7469 +1600,1406042,52241 +490,1415009,1520103 +1597,1415665,53519 +464,1424656,1668644 +57,1434753,14206827 +997,1450352,308664 +1191,1454871,179391 +2116,1493696,5389 +22,1497168,23519562 +1141,1510264,196178 +2397,1511101,231 +1562,1525273,58804 +226,1536231,4210125 +161,1536625,5637893 +2172,1553481,3966 +219,1553947,4341231 +557,1563417,1212382 +2114,1568700,5459 +2240,1568908,2078 +1578,1578509,55864 +2364,1581890,434 +765,1601917,630458 +1075,1606425,235250 +703,1608563,753663 +1180,1609607,184563 +1489,1610267,72919 +1478,1631690,76709 +2250,1645835,1946 +1494,1646837,72134 +1236,1647052,157339 +1869,1668965,20296 +1473,1669587,78351 +2291,1675628,1286 +1351,1693936,112417 +1077,1700145,234963 +729,1715091,706132 +452,1746216,1764506 +1250,1748180,148950 +1928,1757722,15483 +305,1767876,2847797 +1666,1775957,42324 +626,1782523,974785 +2411,1794060,169 +170,1804724,5406349 +670,1809381,849215 +1511,1809943,68512 +1322,1827485,122322 +221,1830149,4265002 +1715,1831874,36775 +1836,1861962,23336 +1879,1867161,19234 +1260,1867410,144074 +1644,1889913,44960 +788,1895081,570573 +701,1900364,758130 +1708,1924718,37364 +1008,1945202,296058 +1681,1957280,40500 +131,1990750,6716411 +547,2020935,1254025 +264,2044462,3329961 +1820,2051721,25093 +1818,2061701,25166 +354,2065730,2403017 +1200,2083273,175390 +1042,2087251,263088 +1981,2105150,11428 +334,2135129,2613281 +1488,2151163,72944 +1781,2162471,29029 +1733,2177410,34097 +1938,2213632,14380 +1018,2232973,285339 +1550,2245160,61003 +998,2246711,308247 +1929,2256843,15439 +342,2262902,2540165 +1633,2268889,47735 +1133,2269943,204527 +67,2289134,11461188 +414,2293376,1936938 +1921,2297431,16100 +2090,2308351,6227 +345,2315542,2509277 +585,2321390,1135404 +1120,2323859,211734 +1272,2324569,140144 +1320,2345447,122954 +1031,2357773,272096 +1594,2362058,53777 +1596,2363165,53585 +1166,2365630,188672 +1829,2371436,24168 +1094,2392791,226853 +290,2411854,2982402 +478,2415972,1586892 +976,2418002,331563 +647,2418364,925999 +1451,2422415,84508 +1493,2426019,72152 +1667,2443031,42198 +420,2453888,1896760 +813,2467370,539769 +2416,2485646,152 +2217,2491724,2824 +289,2502956,2984229 +2477,2512219,38 +1827,2514219,24397 +1837,2516620,23251 +232,2559569,4103494 +1246,2569868,151131 +1799,2571407,27051 +1721,2571536,35833 +2084,2575842,6477 +4,2585846,59031591 +1512,2591538,67944 +1209,2593568,172203 +983,2595542,327287 +192,2600387,4886840 +2224,2613743,2485 +1587,2620389,55017 +1674,2646397,41043 +262,2665207,3351876 +1149,2692494,194266 +1469,2717161,78918 +1258,2723244,145383 +1924,2725721,15730 +1254,2730335,147842 +2209,2735370,2908 +1660,2764337,43298 +919,2798385,398122 +507,2800032,1437683 +917,2801913,399497 +204,2808172,4639782 +2180,2811353,3773 +877,2812197,437089 +2152,2819255,4541 +1790,2819768,27791 +2156,2837080,4430 +576,2873154,1150591 +1439,2893211,88823 +1330,2924071,118630 +747,2972329,660950 +1280,2976468,136489 +2444,2980670,90 +732,2999957,699325 +1208,3022364,172215 +2159,3024357,4359 +1384,3027589,102453 +1196,3057381,176648 +2561,3101080,4 +230,3108144,4119174 +854,3136062,480993 +1157,3181712,191778 +1409,3185732,95060 +713,3264534,731552 +377,3295619,2239785 +1747,3298564,32948 +1663,3298902,42605 +1234,3319611,157727 +1210,3340647,170087 +684,3342690,803533 +970,3345943,341095 +2258,3362925,1826 +1754,3364735,32271 +1586,3365981,55048 +2042,3372959,8054 +683,3377503,810547 +426,3377827,1861607 +943,3395817,370248 +1413,3409028,94419 +1003,3411571,301341 +546,3428961,1256583 +894,3430969,421523 +2113,3441892,5484 +304,3454753,2850314 +2520,3462813,13 +1615,3467919,49752 +122,3475079,7111123 +177,3484132,5232112 +932,3487721,383196 +2040,3487933,8091 +2287,3499467,1367 +75,3502565,10413642 +2427,3518623,132 +2126,3529695,5269 +2375,3560281,340 +1161,3584298,190239 +1219,3589487,166519 +692,3600737,783102 +162,3613413,5565009 +1767,3631404,30510 +1101,3639628,224048 +2513,3647080,14 +1901,3647086,17225 +1259,3652727,144726 +1091,3667722,228358 +2216,3668212,2844 +1801,3692413,26966 +545,3698627,1257564 +1184,3713020,182517 +921,3734803,397318 +572,3739202,1163209 +2054,3743817,7693 +867,3750922,461512 +1636,3760848,46717 +1884,3762475,18974 +774,3781794,598016 +2273,3800097,1625 +1637,3842862,46404 +1577,3860614,55913 +1697,3895471,38626 +1127,3896657,207146 +27,3909522,20244674 +2066,3923887,7187 +405,3933666,2020551 +1726,3957237,35282 +1314,3969110,124779 +746,3972413,661345 +431,3986807,1830322 +787,3990066,571673 +2260,5989306,1797 +149,5991728,6046548 +175,5997814,5286801 +1965,6001174,12212 +1508,6002527,70015 +2111,6021542,5564 +1742,6032352,33647 +1403,6046368,96592 +1376,6046743,104895 +1270,6048627,140367 +994,6071567,310809 +1693,6078176,38784 +1013,6083448,287775 +798,6101033,559126 +2189,6111938,3596 +375,6116940,2259005 +522,6118079,1376109 +1404,6121024,96558 +1572,6121519,57670 +1861,6127190,20894 +1222,6131106,164375 +847,6136757,493221 +2362,6143689,446 +2220,6145316,2637 +710,6160655,741230 +1758,6167751,31755 +541,6169408,1288270 +1553,6171569,60452 +907,6174010,409244 +29,6180190,19570078 +963,6186491,349006 +1652,6212605,44131 +1777,6240801,29450 +806,6242167,545229 +2396,6243588,231 +779,6249486,583854 +300,6258092,2880352 +2075,6262469,6861 +968,6270765,343571 +2263,6276208,1785 +433,6276419,1821628 +1178,6284929,184836 +2469,6294942,42 +740,6296228,676940 +1167,6299408,187785 +2007,6300771,9620 +1205,6301789,172517 +246,6308670,3723845 +2432,6310214,121 +1730,6315553,34495 +2523,6323735,13 +1495,6326324,72066 +1913,6330147,16608 +424,6343784,1875245 +445,6354098,1783634 +2349,6354962,500 +2389,6379173,262 +164,6384450,5503181 +1159,6395848,191295 +2089,6409472,6297 +693,6414286,780986 +1416,6416213,93583 +1438,6417987,89468 +2325,6423275,763 +971,6423719,340696 +736,6425087,694597 +1262,6472706,143543 +393,6510480,2102499 +2170,6516085,4003 +1910,6517003,16708 +1426,6517826,91846 +741,6520732,675241 +465,6528152,1659207 +1849,6541079,22110 +1699,6554011,38576 +2436,6557487,112 +1890,6557824,18121 +1946,6590149,13504 +928,6606543,388448 +1840,6617912,22766 +733,6618608,696866 +459,6625437,1709114 +815,6625716,537399 +975,6647535,333630 +2522,6647642,13 +2455,6651072,63 +882,6654098,433795 +2137,6658016,4994 +2175,6674092,3888 +2300,6677893,1209 +2533,6692351,10 +1692,6704738,38878 +1452,6736666,84324 +1110,6786449,218847 +1551,6795280,60638 +152,6818593,5981889 +2151,6821136,4546 +2092,6822085,6166 +466,6822957,1656011 +1857,6837266,21061 +181,6853693,5094332 +1720,6857973,36000 +1255,6870350,147497 +1004,6882236,300439 +1509,6884492,69758 +1552,6892517,60465 +10,6910361,40917918 +135,6920960,6607248 +1347,6921135,113407 +324,6923061,2695043 +1116,6925574,215486 +1427,6927748,91761 +678,6929240,825139 +40,6936607,15869829 +121,6948793,7111708 +1951,6955809,13224 +1748,6956104,32874 +2199,6968280,3206 +510,6986891,1421890 +2419,6995252,149 +1621,7007969,48972 +668,7012651,855689 +646,7013660,929242 +1687,7023110,39176 +804,7038651,546336 +1214,7047342,169033 +1475,7064954,78275 +2343,7067846,544 +1005,7069895,300166 +2160,7083877,4286 +362,7085502,2351202 +130,7085510,6770436 +187,7092442,4991368 +1189,7097727,179832 +521,7098955,1377043 +1223,7125212,163983 +1402,7127455,97139 +2077,7135037,6705 +242,7139820,3796800 +1561,7139853,58968 +1588,7140413,54819 +446,7142659,1780725 +1694,7150683,38763 +451,7150939,1764789 +392,7154207,2110955 +904,7157316,410414 +1305,7158871,127535 +654,7181335,905977 +173,7183372,5299058 +1030,7210775,272123 +1738,7220989,33727 +1276,7221139,138410 +1056,7226782,247682 +2046,7230689,7953 +2153,7242969,4527 +56,7249451,14237798 +1440,7259218,88356 +2237,7259690,2202 +2392,7262049,246 +158,7271812,5783347 +846,7272223,495519 +1453,7287342,84038 +1090,7297881,228547 +1603,7313287,51817 +213,7318415,4455841 +456,7318949,1733593 +707,7333216,750230 +1526,7337110,65280 +70,7340529,10877442 +1356,7346797,111556 +223,7349282,4220968 +1763,7357503,30893 +2016,7365299,9102 +447,7386358,1780209 +768,7394371,625860 +2112,7409475,5560 +179,7417116,5169005 +611,7418168,1026768 +1695,7422002,38730 +1293,7427966,130983 +2019,7428666,9050 +2261,7440474,1793 +109,7449254,7620399 +172,7462660,5313309 +2219,7474527,2721 +2025,7477695,8821 +1397,7485877,98967 +89,7491093,8687668 +2131,7492426,5062 +1590,7494178,54701 +423,7494497,1878811 +2093,7499430,6111 +1595,7508390,53751 +1152,7516892,193218 +737,7518529,693706 +2428,7520280,128 +2295,7526090,1257 +1107,7528491,220774 +1848,7530708,22156 +2464,7539223,46 +139,7540891,6402103 +1261,7550472,144048 +41,7555180,15835069 +2284,7557683,1400 +1887,7559093,18541 +1655,7560474,43727 +457,7563185,1723431 +1408,7563943,95090 +1168,7574317,187482 +1591,7575174,54454 +72,7581876,10694415 +833,7588382,509901 +355,7589468,2395641 +1634,7590135,47446 +1872,7590275,20127 +1554,7605446,60407 +2306,7629036,1026 +1227,7646152,161767 +1207,7651093,172404 +1144,7661091,195339 +677,7675610,828415 +1273,7691817,139935 +449,7695478,1771730 +1392,7695659,100195 +1541,7699382,61561 +2496,7707390,22 +2282,7720028,1432 +1310,7721441,125651 +1891,7733128,17885 +699,7749444,760905 +1722,7750835,35781 +425,7756002,1872468 +123,7758085,7093808 +229,7765098,4150665 +2108,7775311,5698 +1284,7781236,135294 +1380,7787254,102888 +1058,7802435,246697 +2248,7803631,2001 +2197,7809316,3303 +1374,7820575,105301 +216,7829201,4425115 +702,7831811,755146 +475,7842579,1605525 +401,7860453,2039694 +2329,7865511,701 +2188,7866994,3601 +1361,7897925,108845 +2511,7899232,15 +2493,7910501,23 +2292,7913305,1277 +2254,7914131,1891 +2350,7915966,500 +1448,7919620,85473 +2373,7927374,347 +2110,7929731,5593 +1519,7970506,66342 +539,7973893,1294076 +141,7976264,6278179 +2559,7982117,4 +1688,7985956,39097 +744,7995033,668219 +1035,7999103,267521 +77,8000875,10269605 +114,8004076,7429789 +1325,8006209,120047 +967,8013349,344768 +1994,8015775,10204 +1919,8015955,16278 +869,8019812,457747 +560,8048374,1192520 +1766,8061953,30563 +1233,8062053,158235 +343,8078914,2515739 +2057,8082376,7509 +482,8083365,1541082 +396,8096537,2069160 +1755,8097158,32092 +3,8099868,62582313 +609,8123790,1030647 +1995,8128478,10164 +642,8138506,939234 +39,8153179,16681613 +750,8153941,655887 +92,8155296,8530935 +2127,8160123,5237 +649,8167837,918492 +341,8175236,2551497 +348,8184383,2482216 +2528,8185721,10 +514,8191129,1411245 +1496,8192845,71624 +98,8199417,8173977 +190,8201460,4929535 +1761,8204028,31261 +1326,8204926,119933 +415,8218433,1933556 +1487,8224678,73059 +1614,8240209,49834 +1393,8240677,99974 +913,8259895,402147 +543,8268010,1279016 +1574,8274566,57162 +2139,8288459,4833 +2065,8292737,7207 +2076,8305343,6722 +1154,8320319,193025 +441,8323711,1789043 +1628,8325063,48099 +935,8325700,378872 +351,8337151,2450608 +1812,8362886,25958 +1248,8366045,150501 +2017,8366849,9089 +255,8369561,3535354 +2183,8369657,3746 +383,8369778,2184839 +1882,8370183,19148 +1346,8373234,113494 +1783,8379825,28931 +2006,8379871,9689 +1776,8386608,29508 +1560,8400180,59027 +1245,8400975,151551 +2155,8408007,4454 +2064,8411874,7212 +1269,8418489,140520 +136,8419570,6575072 +1445,8420564,86555 +314,8423835,2755613 +2171,8425594,3987 +645,8428196,933777 +2446,8434727,79 +1009,8438707,294884 +569,8444356,1168527 +1342,8444698,115364 +277,8459255,3165355 +174,8478874,5291618 +1081,8483719,233707 +960,8501514,349764 +1174,8502135,186277 +493,8503255,1507515 +2166,8510466,4098 +540,8513699,1289070 +52,8539216,14432797 +1115,8541236,216369 +1819,8552893,25113 +2062,8553904,7449 +1383,8574922,102566 +1169,8582487,187423 +2546,8583185,10 +1095,8588789,226702 +992,8593382,313564 +1466,8606809,79020 +165,8607734,5488846 +1432,8609713,91044 +378,8612358,2236446 +2438,8617889,108 +1906,8622901,17031 +371,8627359,2275867 +280,8630972,3099711 +269,8632462,3257938 +53,8649412,14420139 +427,8654156,1854420 +391,8662264,2136829 +2457,8662634,52 +574,8665783,1152359 +1892,8669398,17776 +544,8674163,1277411 +443,8675636,1788616 +1099,8677963,225367 +2274,8678008,1544 +2035,8696132,8277 +1176,8698728,185731 +2029,8699429,8666 +1119,8708728,212013 +209,8710047,4492189 +1645,8720321,44788 +1774,8724192,29570 +776,8729672,586238 +263,8740199,3332017 +860,8741336,475063 +770,8742874,622791 +1354,8752714,111739 +657,8753956,898159 +886,8758298,430228 +807,8760124,544808 +1537,8760563,63555 +1646,8772425,44623 +1834,8772923,23586 +1817,8773967,25205 +1846,8776452,22333 +26,8779575,20924068 +942,8784866,372157 +1967,8785003,12004 +596,8785314,1083600 +45,8788366,15641200 +1985,8792844,11152 +1263,8796215,142154 +1676,8806145,40954 +1225,8811880,162961 +243,8812550,3788534 +2239,8815353,2079 +386,8815749,2168699 +2529,8819990,10 +1844,8827094,22490 +1182,8831977,183378 +929,8839171,387058 +1732,8839403,34460 +15,8841266,28760885 +241,8842936,3836897 +1213,8843774,169224 +129,8847546,6841235 +948,8849267,363053 +2167,8852026,4083 +2312,8853146,859 +1423,8855679,92293 +2028,8856821,8701 +2266,8868716,1719 +1468,8876551,78919 +1165,8877156,189156 +2351,8877886,500 +1394,8890346,99912 +667,8890793,855795 +326,8895532,2661110 +1098,8897100,225875 +592,8900955,1096729 +953,8907258,358910 +294,8908002,2947972 +1240,8908544,153342 +1471,8916982,78852 +1371,8922870,106282 +2142,8924845,4678 +1363,8925624,107428 +864,8925695,467993 +2551,8926516,9 +2340,8942143,563 +2326,8947021,756 +2187,8947705,3633 +291,8954402,2979317 +1669,8956715,41990 +196,8963720,4815571 +233,8966820,4075807 +106,8967440,7803952 +1378,8970390,104473 +786,8976313,573921 +1309,8978080,126088 +661,8980651,891343 +1480,8983479,75310 +622,8985694,980801 +1150,8991696,193871 +2534,8994199,10 +1221,8997874,165020 +681,9000253,817699 +639,9003698,957657 +1328,9014108,119354 +1228,9016464,160998 +823,9016560,524769 +1988,9021037,10926 +356,9021920,2388255 +296,9023703,2917367 +2418,9029627,149 +282,9029928,3092607 +945,9031705,366879 +281,9037756,3095280 +256,9043233,3525740 +295,9047658,2940417 +394,9048764,2085766 +2391,9053254,252 +202,9057880,4684166 +193,9060641,4855009 +205,9060885,4636733 +1648,9067168,44548 +1619,9071253,49235 +2425,9090040,134 +1814,9091557,25592 +691,9094538,784278 +1855,9095581,21154 +855,9096738,480644 +1251,9097545,148684 +637,9101574,958437 +548,9103424,1245966 +472,9106642,1623352 +986,9106690,322853 +1279,9113064,136637 +1411,9120206,94913 +2238,9124682,2172 +2299,9129046,1214 +2333,9136062,647 +2242,9138661,2066 +924,9140898,392309 +1045,9147518,258099 +312,9148043,2764628 +1949,9148439,13275 +1319,9151549,123021 +2223,9153430,2517 +108,9154293,7705121 +252,9154820,3554050 +2215,9163140,2846 +76,9167250,10271407 +287,9174887,3014936 +1391,9179700,100419 +508,9180206,1429489 +542,9182487,1279677 +849,9185931,487280 +769,9186126,624620 +327,9186877,2656007 +214,9188016,4453755 +1575,9191031,56754 +664,9195661,878056 +623,9199885,979238 +2567,9213654,3 +1909,9225795,16840 +526,9228039,1352689 +1533,9231765,64364 +715,9234594,727335 +1388,9235561,101313 +36,9236866,17270444 +550,9238175,1231941 +339,9239515,2570530 +1461,9240154,80459 +1779,9253494,29316 +2103,9257513,5819 +1576,9260447,56021 +1784,9262877,28650 +469,9264752,1639792 +1622,9266092,48818 +2081,9270302,6583 +82,9272054,9035359 +1151,9277642,193677 +44,9280477,15669521 +673,9280679,838708 +1573,9282669,57582 +529,9282974,1337707 +1183,9283142,183308 +1968,9283775,11938 +69,9291984,10897396 +1540,9292037,61632 +321,9299539,2727332 +2442,9312528,92 +489,9314079,1522328 +695,9314153,775182 +1369,9318449,106675 +146,9319058,6083985 +462,9320272,1691260 +491,698143931,1520006 +417,698147372,1913743 +388,698147969,2154353 +1566,698151302,58359 +2,698152377,64430404 +1450,698152498,85079 +197,698160606,4814539 +461,698162312,1691634 +2094,698162357,6109 +708,698167138,747975 +2386,698167153,280 +1241,698169715,152910 +811,698171150,541592 +509,698178312,1427932 +1970,698182935,11853 +1515,698187023,67586 +1971,698190039,11745 +978,698191218,329945 +1424,698200480,92229 +2052,698202162,7836 +973,698203538,335646 +504,698207545,1448850 +1483,698212272,73637 +153,698215322,5978901 +101,698231772,7959711 +1036,698232227,267216 +1897,698234770,17532 +180,698239813,5159161 +483,698241117,1540562 +773,698258283,607989 +2179,698262808,3798 +1746,698264828,33092 +705,698273555,751230 +1290,698278542,132088 +1232,698279195,158591 +2003,698281649,9810 +203,698285444,4683408 +467,698290319,1655712 +128,698290577,6899247 +594,698295651,1093948 +1396,698299678,99409 +523,698305474,1370882 +2304,698312347,1108 +1581,698315881,55545 +2562,698321130,4 +1218,698324343,166919 +1037,698330221,267052 +2435,698331388,115 +455,698338524,1748021 +718,698342159,721388 +920,698345556,397529 +2011,698346318,9412 +1138,698346954,200307 +851,698349125,483506 +194,698350371,4837095 +266,698353083,3308030 +1114,698356304,217322 +62,698361257,12378015 +1654,698363063,43927 +337,698364331,2575613 +471,698365960,1627219 +2218,698368493,2802 +1020,698373265,282992 +1982,698383417,11363 +2036,698384662,8237 +1899,698384726,17412 +1701,698385619,38157 +1816,698388041,25456 +416,698388578,1929142 +2115,698403524,5441 +360,698416970,2382686 +143,698420691,6246953 +618,698442418,1003917 +1579,698457392,55765 +220,698462285,4268309 +593,698477883,1094533 +1568,698485268,58113 +812,698486277,540798 +1064,698488800,243562 +218,698489071,4357408 +1811,698511920,26022 +1548,698519133,61160 +1224,698526036,163199 +984,698540331,326383 +728,698545981,707398 +2063,698548451,7406 +738,698557087,680465 +498,698562644,1481353 +1772,698580310,29636 +2202,698582741,3123 +134,698585370,6665779 +31,698588535,19320110 +758,698588812,643543 +1316,698589866,123975 +2371,698592565,377 +2082,698592907,6560 +558,698599365,1207795 +778,698604229,584022 +1657,698605444,43675 +369,698613394,2287592 +549,698620694,1239945 +1743,698623373,33586 +273,698625834,3230785 +1953,698630140,12966 +500,698630507,1461065 +150,698635863,6025507 +138,698641566,6449298 +1957,698647624,12680 +435,698650301,1810297 +2320,698650509,793 +587,698652014,1130541 +1810,698652171,26067 +2536,698654164,10 +1638,698655576,46338 +1362,698655859,108338 +6,698659980,47234715 +2318,698661697,806 +891,698663855,423685 +1364,698666810,107340 +1885,698667255,18859 +601,698670524,1070347 +1379,698677650,103791 +1026,698680806,278160 +2294,698687597,1257 +1518,698687678,66439 +906,698692141,409713 +2051,698693697,7883 +2122,698696420,5311 +1612,698701911,50193 +333,698702991,2630094 +80,698704189,9264160 +1534,698704875,64198 +659,698723158,894900 +1592,698736778,54072 +1683,698738810,40225 +163,698739350,5507450 +2352,698743511,494 +1659,698748891,43352 +1788,698749311,28058 +1235,698757439,157369 +2128,698757487,5144 +2085,698766369,6454 +2002,698766454,9856 +283,698768565,3083122 +207,698769107,4566788 +2470,698776998,42 +1145,698783754,195271 +1794,698785538,27441 +189,698786826,4950373 +178,698789253,5223129 +1904,698791053,17070 +2462,698795589,50 +2491,698798180,25 +1918,698806018,16289 +32,698807570,19290248 +711,698811281,736131 +1975,698817235,11593 +126,698823542,6962284 +2412,698826217,166 +723,698826986,713388 +37,698829590,16887805 +2509,698830638,16 +825,698837993,520908 +597,698842996,1081714 +809,698845189,544065 +1504,698848067,70384 +1348,698848373,112781 +606,698849979,1049618 +2176,698855681,3872 +561,698867446,1190734 +365,698867483,2340856 +575,698879638,1150800 +328,698881022,2648164 +124,698884287,7034474 +275,698895940,3199646 +1441,698897472,87913 +2568,698897841,3 +1459,698905177,81545 +1365,698906190,107316 +2191,698906643,3530 +208,698908184,4496122 +1399,698908912,98708 +1973,698911639,11674 +2415,698913618,154 +421,698916948,1880728 +2009,698926585,9481 +2321,698931404,793 +2193,698931998,3458 +1530,698934729,64873 +1080,698938264,234404 +2541,698941586,10 +1170,698946155,187025 +1389,698957176,100899 +49,698962117,14663061 +46,698971484,15478112 +972,698983867,339411 +697,698987598,767458 +518,698993706,1395234 +712,698996782,733441 +1282,698998882,135573 +621,698999105,988527 +1544,699004723,61362 +2204,699006683,3027 +2049,699007059,7894 +2208,699011415,2946 +682,699016994,815873 +1903,699019249,17159 +1935,699025262,14585 +2055,699027000,7552 +1925,699034094,15658 +1306,699037086,126963 +1690,699039013,39001 +2471,699040431,41 +1355,699054327,111706 +148,699054373,6050905 +2502,699057459,19 +2465,699058253,45 +323,699065686,2721313 +1257,699066118,145991 +2069,699069151,7124 +111,699072129,7450550 +1491,699075351,72688 +448,699083129,1776566 +727,699086436,707750 +995,699088529,309464 +85,699088769,8870636 +1753,699091553,32444 +30,699097885,19327094 +8,699098531,44890740 +985,699099385,325610 +565,699099811,1181329 +831,699111651,513486 +1434,699117178,90754 +1631,699117865,47870 +1015,699117992,286510 +535,699121671,1309254 +1172,699121777,186725 +563,699126484,1182657 +2400,699126490,209 +1770,699127156,30224 +839,699127546,504467 +2414,699131849,156 +1029,699139964,272583 +1557,699144886,59805 +47,699146580,15258440 +1905,699146876,17051 +2569,699147813,2 +1808,699148121,26235 +632,699150527,967436 +766,699155679,629147 +1762,699156456,31124 +1618,699167148,49269 +1959,699169828,12463 +156,699170684,5838198 +454,699176234,1756150 +43,699189792,15703420 +947,699191449,363406 +956,699191455,356573 +775,699191464,592577 +512,699194766,1413991 +753,699195358,652950 +506,699196829,1443179 +468,699199084,1641689 +1130,699201278,205760 +556,699204478,1215312 +395,699208929,2083329 +2140,699212614,4822 +186,699213622,5003518 +573,699238479,1152514 +2201,699238678,3147 +1117,699244334,214253 +127,699246032,6961954 +212,699250676,4460847 +1835,699251542,23356 +2572,699254631,2 +116,699262350,7263019 +132,699265922,6701846 +1230,699266530,159925 +68,699269923,11003028 +1088,699272633,230200 +390,699272880,2137620 +96,699273451,8236061 +496,699277039,1491589 +731,699278528,703749 +411,699280514,1955069 +2236,699282717,2225 +488,699283869,1526096 +2302,699284822,1178 +1492,699285160,72405 +370,699287032,2281074 +166,699298370,5486450 +63,699299123,12375287 +996,699301458,309336 +308,699304554,2815702 +933,699308637,381426 +502,699316421,1451377 +1686,699319395,39758 +590,699320017,1116097 +644,699321518,934358 +244,699323302,3768771 +1513,699323781,67834 +2353,699325506,494 +1465,699326171,79112 +2478,699330765,38 +12,699333701,31292714 +1712,699336679,36850 +83,699336777,9019878 +2379,699339594,313 +428,699341889,1849599 +14,699342219,30142139 +1601,699343887,52121 +694,699346267,780131 +579,699346280,1144203 +624,699347951,976930 +2247,699351046,2003 +532,699351301,1321614 +313,699355601,2759815 +2313,699356102,854 +842,699356968,502954 +1,699364813,70457484 +1066,699366937,242627 +9,699368887,44677694 +640,699372829,955404 +914,699373225,401816 +399,699373599,2044593 +1296,699375903,130500 +874,699377151,445197 +1089,699377401,230020 +505,699379895,1443767 +151,699380607,6007285 +724,699380621,710818 +65,699382126,12047704 +474,699383121,1615573 +84,699383279,8924611 +552,699385139,1218931 +602,699390457,1067811 +1517,699391409,66947 +147,699393742,6055597 +1197,699393759,176435 +1860,699396429,20912 +2403,699401083,196 +352,699402816,2444169 +1706,699405877,37410 +437,699406247,1808063 +1231,699406750,159683 +169,699406776,5447667 +372,699408669,2275226 +1304,699409420,127825 +364,699413040,2344696 +439,699413581,1793740 +1481,699419851,74834 +1771,699421735,30176 +1395,699423167,99588 +719,699424741,720744 +331,699425709,2639511 +2497,699428898,22 +330,699429153,2645384 +1433,699429335,90967 +182,699431255,5089988 +344,699432672,2512481 +210,699433558,4480129 +1815,699438389,25475 +856,699441366,480102 +19,699443920,25363415 +537,699448276,1303186 +2475,699448843,39 +1961,699449946,12404 +2365,699451338,427 +2367,699456288,423 +2026,699469600,8802 +1933,699470220,14803 +1731,699471829,34478 +2070,699477624,7109 +679,699478692,823806 +1291,699483429,131866 +79,699485250,9834040 +1068,699488108,241354 +2555,699490365,6 +16,699491076,28450024 +2309,699491924,899 +1529,699493750,65022 +361,699494480,2363493 +171,699494488,5359600 +1876,699498602,19990 +1436,699501322,90234 +1610,699503079,50670 +1668,699508363,42129 +285,699509239,3031165 +629,699509284,972683 +1522,699510045,66053 +191,699510259,4890555 +1229,699511295,160137 +2245,699511370,2046 +7,699513260,44894776 +419,699516250,1911887 +1775,699516268,29526 +1795,699518384,27441 +2079,699518454,6674 +1538,699520575,63268 +1927,699522257,15521 +628,699523631,972797 +888,699524362,426866 +584,699524891,1137482 +1479,699530673,76683 +1797,699541376,27398 +2439,699542874,107 +1485,699543968,73359 +349,699545762,2481142 +1786,699545975,28324 +1531,699546317,64665 +357,699548295,2387060 +857,699550876,478426 +2012,699551148,9364 +322,699552859,2725747 +1499,699554427,71004 +1358,699556684,110527 +730,699557165,705423 +1332,699560327,117869 +259,699562182,3431915 +1215,699562874,167678 +140,699567608,6362813 +2235,699569800,2244 +267,699573053,3289630 +739,699574408,677873 +1373,699576407,105306 +1329,699576978,118891 +870,699578606,457027 +534,699580120,1317661 +958,699583677,352441 +2020,699588526,9047 +819,699589540,533051 +832,699590236,509942 +816,699595556,535650 +934,699598396,379151 +168,699598425,5469653 +2515,699598671,13 +2517,699598764,13 +2289,699600167,1314 +658,699600855,897623 +553,699603116,1218415 +1097,699604515,226400 +86,699605333,8784871 +2283,699609445,1407 +827,699611673,519657 +2378,699613884,323 +2185,699614027,3651 +2074,699614821,6879 +2525,699618326,12 +1177,699620730,185269 +1584,699621601,55297 +2001,699622781,9873 +1507,699622958,70074 +1608,699627771,50874 +387,699628084,2164848 +2135,699630110,4998 +1431,699632387,91314 +2376,699639001,326 +1629,699639005,48036 +901,699639122,415476 +980,699641777,328407 +1520,699642954,66255 +1163,699644054,189591 +1052,699644448,252461 +939,699644852,376879 +1948,699650981,13329 +1911,699651260,16663 +2005,699655364,9693 +1022,699656989,280973 +1886,699657242,18752 +762,699657450,636571 +238,699658023,3906946 +1793,699659708,27532 +250,699660539,3659149 +2033,699662232,8493 +989,699664910,318356 +1053,699665031,252354 +382,699665152,2186407 +2486,699668392,28 +1181,699671197,184469 +1017,699671454,285855 +2164,699672060,4112 +2399,699673236,222 +757,699674355,644007 +463,699676005,1678260 +1179,699677277,184774 +1343,699677325,114841 +936,699678739,378462 +944,699678801,369484 +2008,699679662,9591 +2531,699682780,10 +756,699684062,644886 +528,699684693,1344980 +2369,699685533,395 +2339,699687328,581 +2278,699688180,1494 +957,699693687,353344 +1744,699694284,33278 +887,699695167,427069 +1339,699697136,116158 +33,699697558,19062324 +434,699698079,1815146 +99,699698253,8139308 +2506,699698745,17 +2177,699699422,3848 +2576,699699563,1 +74,699699601,10525412 +1267,699699650,141340 +1341,699703295,115717 +224,699703642,4215668 +176,699703782,5247823 +408,699704542,1995607 +1135,699705601,203422 +821,699706047,529367 +1287,699706955,133554 +1987,699709160,10948 +51,699710633,14532136 +1046,699711706,257921 +1025,699711723,278806 +836,699711926,506969 +2421,699711996,140 +380,699712422,2218906 +1121,699713515,211249 +2039,699716785,8152 +1050,699718269,254553 +2434,699720374,117 +88,699722599,8770194 +247,699723284,3720524 +1429,699724603,91702 +17,699725436,25562927 +1460,699726660,80533 +303,699728159,2856721 +2195,699728266,3439 +2357,699729211,472 +1955,699730399,12750 +633,699730714,966062 +880,699730998,435385 +211,699733098,4467188 +754,699733501,650575 +453,699734152,1759424 +1366,699734445,107058 +1143,699734795,195439 +581,699735020,1140829 +5,699736927,58364829 +120,699736959,7116416 +525,699737356,1354972 +636,699738350,958993 +2147,699739523,4610 +2141,699739891,4796 +2097,699741694,5966 +2370,699742054,390 +1071,699744012,237721 +160,699744766,5710647 +910,699745265,406319 +2440,699749184,102 +1057,699751062,247574 +2358,699752402,469 +895,699753640,420030 +2222,699753863,2544 +2512,699754856,15 +1527,699755859,65178 +50,699756210,14536391 +1202,699758688,174092 +144,699759128,6129269 +1954,699760767,12783 +48,699761749,15126510 +1865,699763225,20411 +1765,699765601,30795 +890,699765971,424391 +1997,699774694,10068 +2305,699776412,1091 +234,699777234,4024746 +760,699777372,641726 +748,699777556,659961 +397,699778028,2063079 +562,699778867,1184620 +1952,699779038,13094 +1672,699780721,41426 +1802,699780873,26938 +1828,699781390,24346 +652,699781605,907661 +13,699781762,30234953 +772,699783063,609992 +2490,699783641,25 +24,699783765,21758351 +55,699784536,14261510 +2192,699785141,3515 +217,699785935,4363273 +689,699788305,789474 +1698,699789609,38606 +959,699790202,351918 +1198,699791054,176312 +1609,699792747,50702 +898,699794286,417603 +1839,699794421,22984 +1939,699794720,14322 +298,699794765,2898589 +2443,699795301,90 +530,699795378,1337483 +1620,699795698,49095 +239,699796330,3894241 +1415,699796630,93889 +2104,699797065,5804 +837,699797252,505743 +477,699797508,1589401 +1407,699797805,95556 +1689,699798611,39058 +374,699799629,2260518 +1109,699800377,219463 +1011,699800992,289641 +1866,699802012,20400 +329,699803070,2647166 +2265,699803189,1743 +818,699804790,534790 +1462,699805379,80406 +925,699805839,390671 +2383,699811133,298 +1966,699811844,12181 +752,699812007,653227 +905,699812351,410334 +1271,699812571,140217 +1137,699812653,200509 +1680,699812869,40528 +167,699814283,5481995 +1087,699816699,230204 +1430,699818726,91448 +276,699820572,3173578 +487,699821629,1526344 +1148,699821755,194325 +1978,699823365,11520 +1639,699823490,46152 +853,699825089,483135 +1142,699825236,195612 +2451,699825977,67 +2417,699826312,150 +2381,699826996,305 +260,699827112,3409732 +1878,699828338,19860 +110,699828442,7551482 +157,699828685,5825491 +1570,699829494,57944 +1386,699829916,101632 +1998,699829975,10061 +1627,699830255,48182 +2308,699831193,914 +1547,699831366,61296 +1140,699831860,196986 +800,699832431,554941 +721,699832463,714850 +325,699833171,2667310 +366,699834004,2336650 +2186,699835178,3642 +1585,699837483,55244 +476,699837826,1601789 +2473,699840189,40 +1582,699841959,55536 +1874,699842853,20066 +2319,699843389,801 +937,699843417,377368 +2570,699843936,2 +1983,699844314,11297 +1268,699844594,140879 +566,699844727,1178661 +2547,699844880,10 +1470,699845400,78879 +379,699846892,2232213 +64,699849210,12217477 +432,699850967,1830207 +951,699851345,359435 +511,699851426,1419741 +78,699851427,10069043 +1484,699852080,73521 +1984,699853308,11284 +1312,699854312,125426 +297,699854484,2912866 +2083,699854830,6492 +2211,699855277,2867 +2253,699855647,1902 +690,699856586,789351 +1253,699856830,148258 +54,699856962,14371895 +700,699857387,759629 +1324,699858313,120651 +406,699859013,2010054 +2395,699860418,232 +2149,699860651,4596 +598,699861004,1080028 +2361,699862278,456 +1034,699863708,268489 +802,699864013,551169 +384,699866225,2179736 +2372,699866271,353 +669,699866510,852781 +974,699867602,334547 +2279,699867743,1480 +20,699868002,23918962 +2454,699868399,64 +1632,699868739,47800 +104,699869682,7858214 +663,699870198,885116 +743,699870923,668643 +1796,699872032,27422 +2252,699872401,1930 +1023,699872616,280833 +2087,699873141,6404 +1019,699875132,285278 +527,699875213,1348053 +2086,699875650,6425 +903,699876345,411555 +1277,699876746,138328 +782,699878150,581379 +309,699878511,2767588 +1047,699879113,256509 +797,699879556,559578 +554,699879927,1217808 +1353,699880701,111890 +105,699883079,7850498 +1311,699883836,125426 +2200,699884788,3148 +2099,848882397,5949 +2144,848882577,4638 +799,848883237,556593 +1883,848883542,19097 +319,848883684,2739425 +1524,848883791,65339 +358,848886056,2383831 +1640,848886200,45795 +879,848886870,435420 +154,848886973,5919108 +763,848887199,636097 +2345,848888787,539 +625,848889556,974910 +1303,848889850,128418 +1749,848890012,32768 +1917,848892804,16515 +1454,848895676,83760 +1092,848896434,228200 +318,848896948,2742348 +1212,848897972,169962 +604,848899726,1067522 +1915,848901396,16585 +1033,848902592,270758 +671,848902744,845700 +1500,848903260,70905 +1367,848903690,106887 +278,848905770,3159748 +2507,848905784,17 +1741,848907771,33665 +1714,848908144,36806 +2542,848909292,10 +495,848909464,1491849 +755,848910122,650264 +293,848912265,2953166 +777,848912772,585787 +1160,848912937,190479 +643,848913030,935557 +368,848913037,2294323 +2262,848913252,1788 +66,848913998,11653272 +1996,848914120,10072 +315,848914661,2753009 +1780,848915032,29137 +159,848915531,5780545 +11,848915730,34223812 +1134,848915956,203724 +1447,848916779,85595 +1336,848917127,116976 +2080,848917401,6637 +1086,848917570,230559 +2037,848918262,8170 +58,848918380,13281260 +2388,848919959,264 +1112,848921536,217999 +745,848921793,667174 +916,848921861,400974 +1856,848922118,21114 +2290,848922517,1286 +2212,848922958,2858 +1662,848923540,42712 +332,848924219,2634229 +2178,848924648,3826 +865,848925840,465383 +2402,848926070,201 +617,848926293,1005530 +810,848927262,542408 +790,848928486,569247 +634,848928624,963196 +249,848930111,3677746 +1247,848930498,151017 +1969,848930898,11928 +1990,848931321,10691 +2162,848932115,4152 +897,848932879,418953 +1190,848933470,179740 +248,848934935,3719703 +570,848935020,1167295 +272,848935389,3242961 +2394,848935732,240 +726,848936053,709947 +2549,848936229,10 +1671,848937248,41847 +1598,848937780,53490 +1842,848939131,22689 +2422,848939203,138 +2045,848940223,8010 +1864,848942587,20437 +1916,848942618,16516 +2404,848942734,188 +1989,848942847,10697 +698,848942968,765781 +2409,848943145,176 +627,848945529,973401 +1038,848946608,265261 +749,848946700,659459 +1458,848949271,82007 +2424,848949517,134 +1727,848949597,35268 +2226,848950255,2465 +1807,848952556,26462 +1937,848952566,14459 +780,848953066,582761 +1664,848953472,42440 +2554,848954163,7 +1265,848954236,141428 +1146,848955311,194496 +97,848955783,8196683 +1024,848956013,280700 +60,848956513,13034177 +18,848956765,25392708 +1446,848958111,86182 +1103,848958556,223933 +2023,848959231,8919 +1521,848960061,66096 +830,848963236,515345 +2360,848963521,458 +1635,848964811,47306 +2453,848965531,65 +803,848966521,551097 +292,848967422,2973940 +59,848967710,13155824 +1986,848968427,11094 +2504,848969160,18 +2448,848969313,73 +2196,848970357,3414 +519,848971079,1394626 +1718,848973715,36351 +2243,848973968,2063 +1843,848974611,22665 +1647,848974774,44622 +1028,848975192,274521 +742,848976034,673283 +2492,848976720,23 +2120,848977203,5330 +1292,848977412,131256 +1300,848977600,129173 +977,848977649,330173 +503,848977748,1449794 +1787,848978052,28201 +1960,848978284,12413 +112,848978297,7444666 +2205,848978534,3024 +407,848978903,2005361 +499,848980237,1465855 +2560,848980727,4 +1193,848981244,178864 +2267,848981523,1714 +1435,848981726,90390 +2032,848982634,8503 +2430,848982635,124 +1377,848984022,104772 +23,848985692,22571437 +538,848986287,1299879 +1059,848986638,245997 +586,848987051,1131164 +1893,848987695,17735 +1010,848988401,292842 +1266,848988744,141422 +1737,848989855,33812 +850,848993505,486232 +2303,848993769,1169 +279,848995242,3116362 +1421,848995291,92382 +2165,848995446,4104 +665,848995478,874855 +2314,848998530,847 +1420,848999448,92832 +1851,848999518,21637 +820,848999671,532408 +1564,849000135,58574 +1505,849001277,70144 +261,849001572,3355432 +188,849001724,4950376 +761,849002091,637420 +801,849002796,551359 +651,849004274,908547 +2264,849004461,1755 +497,849004759,1483576 +1854,849005658,21160 +1705,849005829,37528 +1162,849006011,189605 +270,849006145,3252700 +2479,849006194,36 +653,849006385,907153 +861,849006412,471594 +2488,849008396,27 +1791,849009623,27745 +198,849009945,4760765 +240,849010255,3886980 +771,849010386,622747 +2288,849010865,1365 +117,849012521,7240820 +1067,849012843,241580 +516,849012985,1405337 +1301,849013126,128688 +517,849014147,1396682 +608,849014413,1034552 +28,849014922,20078560 +1656,849015875,43717 +1093,849017820,227281 +1824,849017894,24471 +34,849018239,18253204 +1164,849018442,189376 +1444,849018778,86964 +2230,849018780,2291 +1914,849019785,16608 +1338,849020094,116464 +2058,849020212,7504 +1387,849020667,101538 +1405,849021566,95822 +1558,849022063,59734 +2359,849022649,463 +559,849023078,1199153 +1482,849023212,73874 +381,849023540,2207937 +2130,849024152,5066 +1750,849024208,32567 +2198,849024333,3227 +1555,849025083,60365 +1871,849025558,20237 +142,849026145,6265779 +206,849027025,4605948 +840,849027653,503933 +852,849027712,483187 +1175,849028071,186136 +310,849028088,2765987 +2537,849030062,10 +1606,849030086,51114 +81,849030226,9066446 +582,849030643,1139699 +501,849031818,1451658 +398,849031846,2044808 +2269,849032027,1670 +271,849032059,3246747 +926,849032413,390308 +1051,849032414,254077 +838,849032741,504632 +1624,849034666,48547 +201,849034882,4699639 +2413,849034917,161 +2067,849035447,7145 +389,849035525,2145207 +429,849035905,1842054 +2582,849036055,1 +1556,849036262,59825 +2150,849037354,4563 +107,849037407,7707929 +73,849037469,10691372 +1370,849037699,106429 +1158,849038195,191739 +2377,849038572,325 +2118,849038597,5362 +2206,849038985,2996 +1147,849039310,194375 +675,849040142,836013 +288,849040194,3004441 +1709,849040462,37345 +485,849041192,1537648 +2344,849042461,542 +2296,849042480,1252 +1286,849043776,134454 +1187,849044705,181601 +1242,849044961,152526 +350,849045047,2451513 +991,849045675,314724 +410,849045915,1962407 +2268,849046206,1705 +1623,849046232,48702 +2184,849047044,3716 +1061,849047233,244753 +444,849048112,1787404 +1070,849048216,238297 +1894,849048241,17659 +822,849048455,524994 +900,849048552,417026 +1502,849048562,70618 +1523,849048734,66028 +2194,849048856,3444 +1014,849048867,287135 +422,849049045,1880220 +875,849049155,444797 +2543,849049288,10 +1826,849050087,24405 +1442,849050191,87389 +1012,849050734,288765 +884,849050849,431057 +1675,849051363,40999 +438,849051436,1796272 +2387,849051731,269 +1457,849051976,82417 +2423,849052195,135 +2106,849052289,5784 +284,849052549,3036086 +1243,849052588,152292 +2393,849053122,240 +1072,849053868,237456 +696,849054582,771270 +155,849054951,5868972 +1792,849055181,27670 +1422,849055309,92381 +962,849055425,349011 +1825,849055527,24432 +1063,849055553,243986 +1868,849056475,20311 +403,849056744,2025231 +1016,849056892,286426 +2095,849057176,6038 +902,849057450,414478 +311,849057572,2765665 +199,849057655,4746948 +844,849057764,498195 +931,849058207,385032 +1349,849059331,112602 +1006,849059457,299626 +119,849059491,7226716 +2091,849060099,6187 +2447,849060357,77 +183,849060446,5081402 +35,849061374,17784924 +258,849061406,3479079 +1873,849061417,20099 +2088,849062546,6368 +1580,849062920,55612 +367,849063605,2310886 +1294,849063793,130933 +460,849063849,1697975 +899,849063932,417027 +2271,849064084,1657 +1678,849064087,40706 +307,849064614,2826516 +1288,849064715,133533 +25,849064752,21208790 +1745,849065566,33162 +2143,849065606,4669 +610,849065697,1027235 +2182,849065829,3750 +2390,849066035,260 +1333,849066044,117646 +808,849066125,544237 +1106,849066618,222816 +2355,849066808,484 +676,849066849,830020 +1653,849067079,44002 +1858,849067192,21060 +1313,849067216,124790 +533,849068108,1318929 +858,849068662,477392 +2119,849069010,5332 +725,849069022,710657 +1773,849070220,29586 +513,849070335,1412364 +638,849070464,957875 +2018,849070736,9084 +1782,849070812,28981 +492,849070946,1514158 +613,849071545,1016411 +1630,849072846,47975 +1237,849072873,157046 +2571,849072919,2 +922,849073156,394536 +1980,849073314,11485 +2173,849074508,3955 +2158,849075298,4371 +1546,849075442,61308 +1100,849075836,224941 +1757,849076187,31828 +317,849076515,2748731 +982,849076678,327384 +340,849076810,2563529 +2433,849076953,118 +1455,849077481,83198 +1443,849078086,87148 +571,849078297,1167125 +274,849078498,3200547 +1920,849078942,16225 +2410,849079977,171 +722,849080011,713736 +1593,849080118,53798 +1930,849080197,15346 +2161,849080260,4257 +845,849080702,498033 +1682,849081284,40337 +1602,849081641,51847 +2484,849081869,30 +1456,849082154,82459 +2015,849082580,9130 +764,849082839,631936 +666,849082848,858601 +2342,849083293,549 +1486,849083294,73346 +430,849083501,1839027 +1977,849083534,11561 +735,849083725,695126 +61,849084005,12879487 +1845,849084066,22419 +1122,849084474,210965 +95,849084740,8326800 +145,849084911,6118507 +872,849084920,453641 +100,849084985,8104169 +1922,849085160,15989 +1549,849085293,61104 +1244,849085371,152247 +648,849085605,922641 +993,849085764,311222 +1867,849085908,20348 +619,849085961,1001561 +2384,849086132,292 +1299,849086357,129552 +302,849086491,2864042 +1054,849086693,249868 +1381,849086783,102821 +1000,849086817,306349 +1032,849086925,271503 +2498,849087149,21 +717,849087581,721445 +442,849087742,1788851 +1972,849087786,11744 +412,849087855,1944675 +1813,849087895,25951 +1118,849088101,212374 +1710,849088199,37080 +125,849088243,7024943 +336,849088515,2602908 +1516,849088639,67485 +716,849088880,723113 +1800,849088882,27051 +1048,849088923,256361 +1535,849089207,64179 +2363,849089323,437 +103,849089459,7904927 +1528,849089499,65074 +1616,849089512,49747 +1821,849089601,25074 +2071,849089654,6996 +195,849089881,4836494 +236,849090130,3959233 +1302,849090187,128498 +2203,849090573,3072 +1723,849090765,35755 +2346,849090846,520 +2101,849090954,5873 +133,849091060,6694744 +286,849091084,3021831 +685,849091105,801938 +90,849091769,8648605 +484,849091866,1539477 +781,849091897,581973 +299,849091899,2897090 +494,849091947,1507010 +2013,849091972,9245 +630,849092109,971278 +1536,849092185,63567 +1249,849092244,150249 +631,849092309,969709 +2148,849092639,4604 +987,849092685,320314 +306,849092723,2834294 +583,849092769,1137535 +704,849092827,753295 +353,849092978,2436197 +909,849093003,407023 +878,849093155,436883 +1156,849093353,192651 +94,849093422,8340830 +228,849093426,4152458 +1044,849093576,262038 +588,849093742,1123312 +1216,849093771,167171 +600,849093875,1071246 +805,849093924,545410 +2298,849094006,1234 +674,849094023,836768 +373,849094067,2272802 +1583,849094111,55387 +829,849094147,516445 +2374,849094355,343 +480,849094586,1558460 +1335,849094597,117029 +686,849094603,799915 +363,849094609,2346752 +871,849094653,454953 +1725,849094688,35439 +940,849094759,375368 +1719,849094789,36244 +1880,849094972,19174 +227,849095014,4154128 +404,849095068,2021694 +1252,849095219,148644 +450,849095227,1766808 +316,849095240,2750057 +912,849095324,403978 +1734,849095376,33936 +2382,849095430,299 +841,849095435,503457 +1078,849095446,234739 +966,849095448,345644 +268,849095482,3286123 +1124,849095488,210272 +1831,849095509,24101 +938,849095599,377274 +1611,849095601,50602 +2043,849095642,8050 +1979,849095771,11507 +1129,849095778,205808 +1809,849095800,26086 +1756,849095814,31870 +1803,849095825,26937 +961,849095829,349090 +1308,849095879,126171 +616,849095948,1006725 +245,849095959,3730882 +1203,849095963,173172 +599,849095992,1073960 +1642,849096041,45392 +1467,849096102,78993 +2098,849096123,5965 +605,849096182,1063048 +614,849096215,1012610 +1417,849096265,93576 +817,849096285,534798 +650,849096310,910424 +1658,849096334,43471 +2501,849096341,20 +1760,849096346,31524 +102,849096354,7942256 +615,849096383,1012255 +1567,849096399,58198 +1605,849096435,51547 +635,849096454,961863 +254,849096458,3537451 +479,849096544,1564034 +335,849096547,2608825 +1206,849096592,172449 +1083,849096594,233201 +115,849096606,7268582 +1739,849096631,33686 +531,849096649,1322921 +814,849096768,537780 +580,849096856,1142099 +620,849096874,990899 +359,849096882,2383416 +1543,849096891,61482 +1002,849096944,301356 +222,849096945,4236029 +1289,849096954,133401 +911,849096958,406319 +896,849096972,419174 +883,849096977,432693 +524,849096979,1368607 +1717,849096990,36443 +767,849097002,628815 +1853,849097006,21307 +876,849097103,439966 +2337,849097123,607 +568,849097175,1171915 +990,849097220,317623 +2022,849097312,8923 +1360,849097357,110136 +1449,849097370,85184 +2293,849097373,1271 +1368,849097386,106733 +1964,849097445,12235 +2255,849097477,1867 +577,849097614,1148423 +1274,849097620,139507 +1740,849097681,33675 +1073,849097716,236700 +1437,849097729,89907 +826,849097737,520648 +1331,849097792,118490 +1076,849097793,234999 +347,849097799,2486863 +1962,849097837,12403 +709,849097898,741397 +1679,849097924,40562 +680,849097937,819535 +908,849097954,409054 +662,849097981,887832 +1128,849098109,207000 +1877,849098132,19975 +1204,849098136,172912 +1474,849098159,78345 +1472,849098162,78599 +1238,849098192,156540 +734,849098200,696404 +1220,849098217,165118 +555,849098265,1217717 +688,849098299,794565 +923,849098324,393674 +2014,849098326,9233 +1345,849098374,114229 +941,849098387,373750 +591,849098400,1114048 +1060,849098423,245338 +2169,849098476,4005 +2157,849098477,4388 +868,849098516,461252 +892,849098557,423588 +1785,849098592,28616 +2338,849098607,589 +237,849098628,3945325 +950,849098648,359923 +2229,849098667,2377 +137,849098688,6565358 +1806,849098693,26656 +265,849098695,3312749 +1406,849098724,95773 +784,849098727,577005 +2132,849098731,5015 +2225,849098766,2470 +564,849098769,1182476 +791,849098774,565268 +440,849098782,1790522 +889,849098784,424853 +706,849098791,750457 +1991,849098822,10615 +2010,849098827,9469 +1256,849098848,146933 +486,849098966,1532153 +2481,849098993,34 +235,849099021,3968568 +1912,849099054,16631 +655,849099105,903189 +1728,849099131,34906 +999,849099138,307203 +1390,849099141,100555 +1153,849099145,193095 +436,849099160,1810078 +1285,849099258,135104 +215,849099276,4425785 +2060,849099280,7474 +1352,849099342,111990 +2102,849099391,5864 +1650,849099422,44419 +1069,849099434,239566 +536,849099463,1307172 +418,849099505,1913574 +1321,849099517,122681 +1707,849099541,37382 +687,849099544,796876 +1139,849099557,198955 +2078,849099558,6697 +1275,849099601,138576 +672,849099640,839046 +1963,849099660,12287 +1976,849099689,11571 +231,849099696,4104676 +595,849099785,1086842 +1412,849099797,94884 +1832,849099804,24012 +881,849099815,434659 +1497,849099859,71587 +1334,849099864,117234 +184,849099876,5054105 +1724,849099887,35690 +2034,849099924,8436 +1126,849099932,207333 +1464,849099955,79199 +376,849099965,2251443 +2336,849100006,615 +1041,849100016,263349 +751,849100034,654055 +1132,849100082,204714 +1841,849100083,22736 +2190,849100089,3581 +2234,849100134,2245 +567,849100149,1174880 +2323,849100162,780 +2146,849100199,4619 +1599,849100211,52425 +795,849100228,562085 +1297,849100246,130422 +793,849100262,563318 +2030,849100288,8604 +1649,849100289,44504 +612,849100323,1022793 +385,849100349,2179339 +1525,849100352,65317 +1278,849100354,136982 +1344,849100383,114567 +2334,849100399,639 +1111,849100406,218430 +2024,849100439,8859 +1082,849100463,233366 +1105,849100496,223069 +1764,849100584,30834 +988,849100611,318465 +1931,849100612,15285 +409,849100615,1983322 +1375,849100656,104971 +1194,849100680,177442 +1862,849100743,20848 +1074,849100744,236541 +2348,849100760,501 +2041,849100782,8071 +1607,849100787,51068 +1859,849100796,21048 +603,849100811,1067674 +834,849100814,509850 +2317,849100815,807 +1769,849100827,30265 +1604,849100877,51690 +1307,849100882,126686 +1875,849100891,20041 +551,849100994,1229582 +1735,849101018,33928 +1217,849101029,166951 +1096,849101083,226416 +1055,849101092,247767 +1340,849101102,115944 +1185,849101104,181672 +1751,849101108,32498 +520,849101116,1377047 +1136,849101132,202542 +1895,849101135,17634 +2249,849101144,1975 +1186,849101148,181608 +1065,849101162,243221 +2210,849101177,2902 +955,849101186,356956 +1239,849101205,153581 +1410,849101224,94938 +1936,849101232,14543 +1155,849101248,192900 +2174,849101268,3933 +1503,849101276,70590 +2100,849101284,5898 +1418,849101291,93468 +1651,849101293,44203 +1673,849101309,41138 +964,849101311,347637 +785,849101377,576520 +589,849101378,1122080 +1490,849101382,72731 +1283,849101391,135435 +2059,849101409,7476 +2301,849101443,1201 +1677,849101526,40748 +1716,849101578,36591 +930,849101579,386431 +1049,849101580,255835 +2307,849101581,947 +1021,849101604,281322 +2154,849101646,4462 +2136,849101647,4996 +1298,849101652,130273 +1805,849101674,26765 +1898,849101694,17467 +2214,849101771,2852 +1950,849101814,13248 +979,849101845,329091 +1713,849101871,36850 +918,849101881,398218 +1337,849101884,116952 +402,849101889,2032620 +1357,849101893,110631 +1532,849101945,64459 +1932,849101947,15078 +1477,849101962,77488 +2489,849102037,26 +320,849102068,2731982 +458,849102092,1713380 +1684,849102094,40181 +1226,849102108,162330 +2031,849102143,8602 +2232,849102150,2250 +2558,849102302,5 +1759,849102336,31534 +1007,849102464,297181 +1641,849102480,45681 +2566,849102505,3 +885,849102573,430361 +2406,849102985,182 +1589,849103148,54791 +2324,849103156,767 +2221,849103237,2564 +862,849103456,470082 +2510,849103595,16 +1703,849103688,38045 +2461,849103914,50 +1789,849103947,27898 +1613,849104010,49851 +1385,849104100,102134 +1027,849104286,274776 +1264,849104297,142114 +714,849104328,730080 +1401,849104356,97794 +863,849104491,468177 +848,849104546,491288 +2027,849104633,8711 +2125,849104814,5278 +2276,849104818,1512 +1691,849104855,38893 +1704,849105071,37936 +2514,849105072,14 +1372,849105102,105677 +2573,849105201,2 +1768,849105232,30411 +2398,849105408,224 +1852,849105417,21464 +1945,849105420,13551 +2181,849105463,3754 +2256,849105613,1853 +2047,849105880,7952 +2044,849105954,8020 +1881,849106210,19173 +1934,849106303,14780 +2053,849106316,7723 +1062,849106340,244146 +1696,849106383,38704 +2257,849106420,1833 +2466,849106576,45 +2246,849106601,2032 +1617,849106612,49576 +2485,849106698,30 +1125,849106785,208691 +2407,849106820,180 +2550,849106828,10 +1944,849106971,13750 +2315,849107104,843 +2499,849107188,20 +1896,849107426,17603 +2251,849107507,1937 +1563,849107532,58695 +2004,849107703,9713 +2575,849107799,1 +2459,849107881,50 +1847,849108007,22159 +2311,849108053,884 +1510,849108148,69439 +2038,849108157,8164 +1327,849108328,119542 +2500,849108339,20 +2280,849108350,1464 +2577,849108352,1 +400,849108623,2042421 +2322,849108762,785 +796,849108780,561055 +1318,849108784,123115 +1900,849108934,17383 +2487,849108971,28 +1661,849108991,43297 +2366,849109010,426 +1501,849109072,70777 +2530,849109116,10 +1907,849109152,16951 +2556,849109232,6 +1428,849109413,91716 +1323,849109507,122292 +2231,849109521,2266 +1736,849109637,33843 +1942,849109795,13914 +2316,849109885,817 +1923,849109935,15916 +2275,849109966,1530 +2134,849110304,5001 +2138,849110310,4920 +1943,849110365,13887 +2467,849110380,43 +1804,849110382,26808 +2578,849110571,1 +1888,849110622,18396 +2000,849110644,9971 +2285,849110674,1399 +1902,849110688,17180 +1514,849110711,67742 +1958,849110743,12553 +2429,849110916,127 +2068,849111050,7137 +1569,849111196,57999 +2565,849111231,4 +2241,849111244,2066 +2437,849111316,110 +2121,849111332,5318 +2380,849111408,310 +2476,849111418,39 +2552,849111487,8 +2452,849111632,65 +1822,849111667,24659 +2408,849111732,178 +2368,849111792,419 +2405,849111819,186 +1956,849112029,12748 +2244,849112033,2062 +1941,849112050,14091 +2579,849112264,1 +2564,849112312,4 +1926,849112368,15556 +2145,849112369,4637 +2494,849112435,23 +2213,849112510,2858 +2048,849112774,7942 +2449,849112876,70 +1999,849112879,10029 +2286,849112887,1380 +2503,849112960,19 +2482,849113055,34 +2580,849113078,1 +2474,849113300,40 +2310,849113350,897 +2356,849113485,478 +2297,849113546,1243 +2123,849113595,5296 +2129,849113597,5128 +2495,849113603,22 +2347,849113673,512 +2538,849114022,10 +2331,849114033,678 +2259,849114085,1820 +2544,849114112,10 +2272,849114119,1628 +2401,849114265,204 +2096,849114408,6015 +2524,849114445,13 +2468,849114450,42 +2431,849114477,123 +2532,849114502,10 +2426,849114579,134 +2483,849114683,30 +2518,849115254,13 +2526,849115431,12 +2519,849115994,13 +2124,849116221,5279 +2228,849116310,2379 +2463,849116357,49 +2521,849116416,13 +1992,849116419,10573 +2445,849116679,88 +2583,849116980,1 +2330,849117143,693 +2341,849117196,549 +2516,849117240,13 +2227,849117242,2382 +2332,849117427,676 +2539,849117454,10 +2557,849117533,5 +1974,849117830,11612 +2385,849118259,282 +2545,849118262,10 +2354,849118441,490 +2548,849118462,10 +2472,849118709,40 +2277,849118786,1499 +2420,849118999,140 +2553,849119078,8 +2441,849119862,100 +2335,849119975,636 +2535,849119994,10 +2327,849120467,750 +2480,849121835,34 +2450,849122768,70 +2460,849122819,50 +2505,849123125,18 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_all_tribe.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_all_tribe.txt new file mode 100644 index 0000000..487c55a --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_all_tribe.txt @@ -0,0 +1,263 @@ +2,1,515371643 +99,4,1148596 +3,7,513604231 +68,8,2934253 +82,12,1995368 +119,13,650623 +34,19,11791705 +79,24,2163061 +56,29,4019564 +62,31,3579958 +35,33,11518323 +9,35,116574112 +11,39,90816918 +4,47,465294036 +145,53,328407 +120,56,632131 +61,59,3640507 +48,68,6533937 +31,71,15537972 +127,72,544908 +25,77,24603199 +21,80,36195899 +7,85,120816085 +105,89,936121 +85,92,1913549 +70,96,2812912 +123,97,598608 +55,106,4428016 +22,112,30162886 +133,115,476582 +95,116,1243734 +67,117,3041909 +1,120,572571198 +83,125,1945540 +65,129,3202656 +96,134,1224123 +81,147,2028269 +49,157,6305119 +236,159,7890 +167,176,158224 +140,185,377805 +251,187,1367 +20,194,38560907 +224,200,23586 +151,206,242627 +59,210,3759711 +69,211,2893518 +102,214,993608 +213,216,32443 +121,220,630577 +66,234,3097023 +182,236,91702 +210,255,34460 +50,256,6123731 +178,260,100851 +170,281,140209 +87,285,1515968 +232,287,11666 +253,290,539 +17,291,62760850 +18,301,53752856 +158,305,198650 +16,309,65055844 +164,317,182517 +116,319,708504 +148,336,267052 +242,339,5459 +113,355,760905 +200,365,52241 +5,369,176482721 +115,373,711036 +197,374,54819 +89,375,1379428 +52,377,5347117 +143,382,358666 +86,385,1780581 +208,397,36806 +46,412,6846095 +156,413,215538 +234,415,10061 +163,429,184774 +27,430,19841316 +40,432,7641920 +159,435,197777 +44,441,7023533 +183,443,83584 +161,451,188672 +38,452,9512471 +218,474,28931 +94,475,1255265 +238,503,7494 +71,517,2615421 +135,520,454684 +137,523,437089 +42,546,7268867 +41,548,7387675 +146,554,322799 +217,557,29930 +29,594,16158300 +172,597,139493 +97,607,1218207 +162,624,185431 +193,625,66255 +235,626,8121 +147,633,269847 +169,636,149152 +104,647,991269 +98,651,1202644 +90,664,1371321 +14,666,67122577 +118,686,672292 +174,689,135903 +33,693,13927849 +23,722,28313016 +246,723,4610 +129,733,512496 +108,750,876738 +93,758,1256466 +141,766,365059 +78,778,2169593 +10,785,107610800 +63,786,3554001 +132,806,476872 +165,809,171639 +77,822,2340609 +12,830,87500446 +190,841,69410 +75,847,2487934 +6,862,136829959 +84,936,1940894 +64,944,3264303 +222,945,27441 +179,963,97544 +221,965,27527 +74,989,2543700 +130,991,500661 +32,1023,14729351 +13,1039,85035694 +36,1040,11104753 +43,1052,7062125 +109,1058,863124 +58,1079,3819385 +111,1096,792047 +28,1108,17760154 +185,1127,81545 +15,1128,66569234 +47,1140,6606194 +39,1148,8063060 +101,1161,996140 +187,1163,77166 +233,1166,11428 +220,1170,27655 +107,1209,886014 +37,1226,10147516 +57,1232,3875380 +192,1247,66890 +153,1258,223069 +230,1261,13732 +138,1275,399365 +131,1278,481948 +53,1293,4833403 +76,1312,2353367 +204,1317,46145 +160,1333,197267 +26,1336,20372946 +177,1338,113620 +207,1347,40837 +152,1357,224264 +92,1368,1288389 +191,1372,68452 +45,1376,6847914 +201,1389,51601 +103,1399,992741 +19,1411,47859039 +157,1416,214608 +73,1418,2557465 +209,1421,35273 +134,1423,471241 +122,1428,630185 +124,1431,594841 +114,1432,733473 +168,1448,149206 +112,1456,785196 +255,1460,381 +88,1466,1449811 +128,1470,528181 +142,1477,358920 +24,1480,26406450 +80,1483,2062188 +225,1484,22060 +215,1494,30432 +176,1498,126080 +8,1523,117037428 +184,1526,81749 +51,1528,5769388 +100,1530,1117026 +198,1535,52879 +249,1538,3192 +139,1551,395786 +196,1573,56642 +248,1582,3987 +229,1585,13876 +214,1588,31524 +223,1590,25538 +54,1597,4697746 +166,1599,165273 +110,1602,805496 +180,1609,97494 +202,1610,48607 +30,1621,16042856 +231,1626,13439 +144,1627,333654 +154,1636,221031 +117,1638,699804 +244,1643,4920 +211,1645,33370 +91,1648,1299521 +72,1651,2577567 +149,1652,261207 +243,1656,5332 +155,1657,215830 +212,1669,32937 +241,1672,5468 +150,1680,249572 +189,1681,69556 +195,1683,64569 +173,1687,137468 +228,1690,16936 +188,1691,74052 +226,1692,17659 +126,1700,575944 +258,1705,62 +239,1715,6946 +125,1716,584874 +247,1721,4371 +106,1724,917830 +237,1727,7801 +240,1729,6680 +194,1734,64596 +136,1735,449124 +171,1737,140112 +186,1740,81233 +175,1745,130123 +205,1750,43707 +263,1753,2 +262,1754,10 +254,1755,395 +252,1757,1278 +216,1758,30079 +219,1760,27699 +203,1763,46599 +257,1770,124 +199,1771,52625 +245,1772,4774 +261,1777,10 +256,1779,207 +60,1780,3642793 +259,1783,52 +250,1785,1705 +206,1790,43136 +181,1793,97199 +260,1795,40 +227,1797,17184 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_att.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_att.txt new file mode 100644 index 0000000..e03239a --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_att.txt @@ -0,0 +1,1991 @@ +593,17714,222346 +88,33900,3694783 +743,50930,108523 +793,82782,84826 +1401,89637,4149 +1876,100452,88 +1272,112401,7325 +384,113796,613398 +1680,118121,695 +1930,122492,32 +1589,126954,1416 +1734,160513,395 +1050,192947,23281 +963,195249,36942 +663,197581,151562 +1856,205821,118 +129,225023,2344650 +1156,254937,13636 +55,272173,4615284 +1753,281866,326 +1417,289542,3780 +796,301602,83768 +1300,310729,6540 +1831,335509,147 +1546,337137,1910 +114,356642,2665937 +1138,361125,15088 +1677,364126,704 +1714,382222,500 +139,393668,2216126 +1839,412571,137 +121,477415,2498636 +1578,478956,1534 +711,483145,123243 +1557,498483,1784 +960,529552,37346 +365,542253,655274 +1774,545152,273 +206,556154,1531030 +1701,570100,581 +1646,584989,868 +1699,602408,584 +228,606407,1303914 +929,606706,44391 +1204,609384,10514 +1764,610196,291 +1425,634848,3636 +457,671516,433457 +189,692803,1639097 +1763,712216,291 +1250,724621,8189 +1137,745946,15103 +823,747422,72427 +188,758104,1639319 +1956,762859,17 +1290,762975,6746 +756,763529,98048 +852,765188,62873 +1918,769293,39 +36,828637,6062596 +1787,869195,247 +60,873575,4419223 +1696,878961,598 +265,879782,1070796 +1942,881782,26 +1212,915113,10216 +1577,921888,1537 +599,926823,215355 +1892,930720,59 +562,940693,260753 +538,942959,299012 +1895,944147,54 +834,947923,70422 +1733,950985,402 +878,951823,55882 +1389,959179,4387 +1653,960100,819 +35,1006847,6073241 +1007,1015528,28962 +280,1018357,994878 +1474,1021709,2754 +1341,1034117,5381 +1460,1049851,3043 +653,1078121,156288 +1860,1079223,111 +404,1086351,578446 +1328,1095271,5724 +621,1095489,190423 +726,1096254,112842 +1279,1164249,7102 +1921,1170102,36 +661,1205898,152838 +1603,1227918,1273 +69,1238300,4240017 +1666,1260088,753 +563,1267913,258364 +1281,1270916,6987 +1484,1276665,2578 +1531,1284796,2083 +1481,1285441,2647 +1622,1286008,1081 +1355,1323424,5193 +1592,1350456,1342 +217,1415009,1420858 +962,1415665,37085 +390,1424656,605341 +24,1434753,7390915 +1585,1450352,1454 +6,1497168,15228631 +1900,1525273,51 +220,1536231,1343488 +79,1536625,3981331 +200,1553947,1567485 +363,1563417,658662 +1935,1578509,29 +527,1601917,312934 +1454,1606425,3112 +637,1608563,170636 +1160,1609607,13065 +1382,1610267,4538 +896,1647052,51827 +386,1715091,611831 +984,1746216,33246 +884,1748180,54675 +465,1767876,424257 +1346,1775957,5313 +126,1804724,2408774 +1043,1809381,24601 +1385,1809943,4520 +737,1827485,109095 +308,1830149,883860 +1866,1861962,100 +1574,1867161,1565 +1240,1889913,8630 +1317,1895081,6017 +572,1900364,247673 +975,1924718,34008 +1471,1957280,2788 +56,1990750,4589080 +480,2020935,393851 +340,2044462,752647 +1152,2051721,13785 +238,2065730,1238424 +1883,2083273,75 +1741,2105150,365 +120,2135129,2501108 +1233,2151163,8954 +916,2245160,47577 +626,2246711,184258 +738,2262902,109040 +1197,2268889,10833 +651,2269943,157597 +240,2289134,1195570 +305,2293376,903179 +1770,2297431,281 +1724,2308351,462 +1365,2315542,4826 +704,2321390,126514 +720,2323859,115381 +892,2324569,52642 +1410,2357773,3999 +1419,2362058,3767 +1675,2371436,707 +1898,2392791,52 +821,2411854,72830 +1444,2415972,3262 +865,2418002,59356 +649,2418364,158284 +1259,2422415,7815 +1987,2426019,4 +1624,2443031,1069 +769,2453888,93738 +751,2467370,102048 +1633,2491724,988 +170,2502956,1871417 +677,2559569,141418 +1485,2571407,2576 +1775,2571536,271 +22,2585846,7964912 +1988,2591538,4 +885,2593568,54383 +1074,2595542,20472 +288,2600387,970939 +1847,2646397,133 +253,2665207,1096543 +801,2692494,80097 +849,2717161,64464 +1243,2723244,8528 +1304,2725721,6524 +1053,2730335,23035 +670,2798385,145709 +747,2800032,103062 +1448,2801913,3237 +98,2808172,3221684 +1405,2812197,4107 +1848,2819255,133 +1503,2819768,2359 +542,2873154,292119 +1255,2893211,7938 +1688,2924071,669 +755,2972329,98123 +931,2976468,43656 +364,2999957,655568 +1565,3027589,1701 +1788,3057381,240 +558,3108144,265001 +486,3136062,379388 +1896,3181712,53 +1072,3264534,20704 +163,3295619,1956061 +1529,3298564,2092 +1244,3298902,8503 +1009,3319611,28749 +777,3340647,89974 +1587,3342690,1427 +750,3345943,102379 +1002,3364735,29853 +1316,3365981,6150 +864,3377503,59496 +589,3377827,226868 +1443,3395817,3267 +1559,3409028,1776 +900,3411571,51046 +309,3428961,877476 +951,3430969,39435 +1948,3441892,20 +229,3454753,1301306 +1021,3467919,27561 +517,3475079,327183 +113,3484132,2714253 +1854,3487721,120 +171,3502565,1867684 +1257,3584298,7889 +971,3589487,35170 +468,3600737,415862 +351,3613413,691481 +1482,3639628,2605 +775,3652727,90896 +1088,3667722,19593 +1221,3692413,9848 +439,3698627,467434 +630,3734803,178126 +254,3739202,1094385 +974,3750922,34248 +1364,3760848,4876 +419,3781794,519984 +1066,3860614,21659 +1786,3895471,249 +1611,3896657,1226 +7,3909522,14909975 +380,3933666,615746 +1262,3957237,7572 +1941,3969110,26 +686,3972413,139270 +1548,3986807,1855 +1549,3990066,1845 +587,5991728,228522 +657,5997814,155365 +1635,6001174,959 +1579,6002527,1529 +1336,6021542,5564 +1394,6032352,4272 +1323,6046368,5872 +1929,6046743,32 +1269,6048627,7416 +1621,6078176,1083 +1469,6101033,2843 +1563,6111938,1714 +355,6116940,680532 +620,6118079,190630 +1586,6121024,1449 +1132,6121519,15727 +1099,6127190,18145 +1040,6131106,24823 +799,6136757,82082 +560,6160655,261778 +294,6169408,939418 +1462,6171569,2985 +702,6174010,127108 +18,6180190,8216200 +1931,6186491,31 +1008,6212605,28955 +1194,6240801,10973 +666,6242167,147534 +1418,6249486,3769 +176,6258092,1806917 +1351,6262469,5271 +836,6276419,70209 +1573,6284929,1603 +1911,6294942,42 +1712,6296228,523 +1136,6299408,15183 +997,6308670,30916 +1853,6310214,121 +1081,6315553,20168 +1962,6323735,13 +879,6326324,55768 +694,6343784,134942 +367,6354098,650787 +1717,6354962,492 +131,6384450,2319121 +1833,6395848,143 +736,6414286,109794 +858,6416213,60218 +932,6417987,43532 +1778,6423275,263 +1884,6423719,72 +392,6425087,601227 +692,6472706,136233 +239,6510480,1206064 +1886,6516085,68 +1773,6517003,278 +851,6517826,63629 +403,6520732,579859 +283,6528152,991090 +1089,6554011,19559 +1337,6557824,5554 +1928,6590149,33 +689,6606543,138883 +1971,6617912,9 +861,6618608,59939 +583,6625437,234479 +1920,6651072,37 +1032,6654098,26508 +1440,6658016,3286 +956,6786449,38076 +1693,6795280,636 +401,6818593,582161 +1934,6821136,30 +279,6822957,996704 +1964,6837266,11 +216,6853693,1421140 +1108,6857973,17494 +713,6870350,122043 +1260,6882236,7684 +1618,6884492,1127 +1640,6892517,920 +66,6910361,4282751 +84,6920960,3771418 +789,6921135,85795 +580,6923061,239001 +1205,6925574,10510 +1595,6927748,1328 +393,6929240,599799 +40,6936607,5755476 +153,6948793,2028867 +1617,6955809,1130 +1207,6956104,10361 +568,6986891,251988 +1797,7007969,224 +671,7012651,145695 +514,7013660,330576 +952,7023110,38932 +464,7038651,424778 +754,7047342,98953 +925,7064954,45230 +1552,7069895,1819 +1393,7083877,4273 +130,7085502,2323922 +175,7085510,1817646 +76,7092442,4074636 +735,7097727,109938 +624,7098955,186439 +707,7125212,124759 +1446,7127455,3245 +184,7139820,1675232 +1000,7139853,30579 +1867,7140413,99 +187,7142659,1639716 +1015,7150939,28166 +172,7154207,1836875 +785,7157316,87068 +1318,7158871,6000 +339,7181335,759021 +105,7183372,2954976 +1103,7210775,17729 +1376,7220989,4617 +1416,7221139,3852 +795,7226782,84055 +1781,7230689,260 +23,7249451,7509545 +1514,7259690,2202 +112,7271812,2741974 +1422,7272223,3685 +1521,7287342,2162 +1537,7297881,1980 +1837,7313287,138 +443,7318415,465578 +539,7318949,298296 +541,7333216,295815 +1478,7337110,2700 +270,7340529,1051654 +1264,7346797,7537 +303,7349282,909908 +1109,7357503,17400 +1343,7365299,5368 +553,7386358,273032 +529,7394371,311888 +1879,7409475,85 +427,7417116,490557 +287,7418168,976084 +887,7427966,53590 +57,7449254,4552303 +80,7462660,3863656 +1779,7474527,262 +1077,7485877,20368 +95,7491093,3364151 +1661,7492426,787 +1061,7494178,21988 +192,7494497,1621283 +1429,7508390,3587 +1456,7516892,3085 +918,7518529,47302 +1852,7520280,126 +1610,7526090,1235 +1046,7528491,24412 +1667,7530708,746 +1904,7539223,46 +534,7540891,307859 +1325,7550472,5836 +99,7555180,3202496 +1027,7560474,27037 +790,7563185,85726 +1145,7563943,14242 +1268,7574317,7480 +1966,7575174,10 +42,7581876,5618662 +479,7588382,396569 +519,7589468,326347 +1123,7590135,16373 +906,7651093,48526 +1695,7661091,626 +890,7675610,53026 +346,7695478,702181 +1662,7695659,770 +869,7699382,57501 +1608,7720028,1239 +383,7756002,614029 +110,7758085,2788234 +225,7765098,1321264 +1494,7775311,2430 +1912,7781236,42 +1805,7803631,190 +515,7829201,329689 +1146,7831811,14196 +483,7842579,386096 +316,7860453,853298 +1060,7897925,22263 +1958,7899232,15 +1944,7910501,23 +1604,7913305,1267 +1859,7915966,112 +1012,7919620,28506 +1213,7970506,10136 +299,7973893,919317 +115,7976264,2648080 +1575,7985956,1565 +1742,7995033,357 +575,7999103,241876 +20,8000875,8080756 +65,8004076,4384195 +1924,8006209,36 +547,8013349,286980 +1126,8015955,16268 +578,8048374,240497 +1682,8062053,682 +214,8078914,1464445 +237,8083365,1251455 +224,8096537,1322646 +138,8099868,2241865 +1056,8123790,22871 +319,8138506,834296 +281,8153179,993105 +609,8153941,203283 +146,8155296,2111136 +1507,8167837,2300 +776,8175236,90768 +528,8184383,312394 +369,8191129,648499 +1882,8192845,75 +231,8199417,1288954 +210,8201460,1495104 +1059,8204926,22310 +544,8218433,291140 +1158,8224678,13213 +986,8240677,33054 +496,8259895,355418 +413,8268010,552609 +1026,8274566,27042 +1614,8292737,1184 +1524,8305343,2139 +1720,8320319,485 +193,8323711,1608448 +939,8325063,42299 +1457,8325700,3082 +145,8337151,2131768 +682,8366045,140454 +513,8369561,331832 +1824,8369657,154 +596,8369778,216715 +1637,8370183,950 +1064,8373234,21695 +1945,8386608,23 +1449,8400180,3236 +1803,8400975,207 +699,8418489,130798 +52,8419570,4839651 +1605,8420564,1252 +1196,8423835,10882 +1894,8425594,55 +602,8428196,213489 +610,8438707,203184 +297,8444356,921138 +1735,8444698,382 +143,8459255,2165507 +467,8478874,416170 +1248,8501514,8340 +1686,8502135,671 +888,8503255,53417 +1568,8513699,1677 +67,8539216,4262575 +606,8541236,206989 +1880,8552893,82 +1054,8574922,22959 +1014,8582487,28311 +1067,8588789,21557 +1458,8606809,3078 +485,8607734,385579 +1082,8609713,19983 +257,8612358,1086396 +1862,8617889,108 +347,8627359,700860 +135,8630972,2276843 +295,8632462,934854 +127,8649412,2399784 +300,8654156,919083 +150,8662264,2037809 +462,8665783,428088 +1120,8669398,16694 +809,8674163,76735 +277,8675636,1006884 +654,8677963,156113 +1639,8678008,923 +1909,8696132,44 +1638,8698728,933 +1353,8699429,5241 +1899,8708728,51 +368,8710047,649362 +1049,8724192,23550 +757,8729672,97726 +183,8740199,1716256 +1483,8741336,2592 +451,8742874,449527 +965,8752714,36292 +1319,8753956,5998 +1122,8758298,16424 +1759,8760124,308 +1041,8772425,24730 +1933,8772923,30 +167,8779575,1904294 +1222,8784866,9759 +285,8785314,986979 +28,8788366,6910051 +1409,8792844,4017 +934,8796215,43248 +1464,8806145,2969 +933,8811880,43447 +1356,8812550,5165 +159,8815749,1985158 +1506,8827094,2312 +1827,8839171,150 +4,8841266,18639899 +459,8842936,429833 +1491,8843774,2455 +70,8847546,4231049 +1037,8855679,25802 +1723,8856821,466 +1534,8876551,2031 +638,8877156,168299 +1721,8877886,480 +1239,8890346,8760 +586,8890793,229546 +162,8895532,1964676 +1747,8897100,342 +273,8900955,1027524 +1004,8907258,29681 +213,8908002,1471784 +1203,8908544,10563 +972,8916982,34728 +1907,8922870,46 +1399,8924845,4201 +846,8925624,66039 +460,8925695,429738 +1968,8926516,9 +136,8954402,2267457 +1246,8956715,8432 +345,8963720,707484 +194,8966820,1600938 +354,8967440,682393 +1739,8970390,367 +422,8976313,509733 +1952,8978080,19 +360,8980651,661120 +1691,8983479,665 +579,8985694,240489 +1242,8991696,8542 +1038,8997874,25667 +409,9000253,565891 +328,9003698,799302 +1167,9016464,12693 +645,9016560,164385 +1913,9021037,40 +494,9021920,361893 +166,9023703,1912601 +415,9029928,546963 +310,9037756,876817 +456,9043233,433855 +399,9047658,587673 +565,9048764,257270 +1785,9053254,252 +835,9057880,70229 +208,9060641,1504258 +411,9060885,560872 +1034,9067168,26283 +1845,9090040,134 +656,9094538,155893 +1080,9095581,20290 +768,9096738,93946 +523,9101574,320655 +891,9103424,52920 +429,9106642,488424 +1672,9106690,722 +1070,9120206,20805 +1869,9129046,94 +1864,9140898,107 +1302,9147518,6532 +436,9148043,472852 +1526,9148439,2122 +1943,9151549,24 +179,9154293,1746829 +128,9154820,2371307 +1754,9163140,323 +59,9167250,4451047 +106,9174887,2941544 +687,9180206,139193 +573,9182487,242341 +1623,9185931,1073 +684,9186126,139437 +152,9186877,2030581 +223,9188016,1324407 +1700,9191031,582 +632,9195661,177403 +604,9199885,208214 +1768,9225795,286 +246,9228039,1163994 +1590,9231765,1392 +1400,9234594,4169 +1017,9235561,27937 +16,9236866,9877891 +306,9238175,903020 +917,9239515,47568 +1974,9240154,9 +1175,9253494,12181 +205,9264752,1536924 +1791,9266092,233 +1299,9270302,6583 +201,9272054,1564933 +1033,9277642,26292 +25,9280477,7346222 +581,9280679,236718 +226,9282974,1318612 +1291,9283142,6735 +1480,9283775,2676 +48,9291984,5009603 +998,9292037,30875 +810,9299539,76381 +1873,9312528,90 +276,9314079,1020709 +1403,9314153,4139 +119,9319058,2503982 +740,9320272,108556 +335,698143931,774260 +302,698147372,913811 +548,698147969,285927 +8,698152377,14193835 +837,698152498,69650 +124,698160606,2425619 +1349,698162312,5304 +1668,698162357,744 +717,698167138,117907 +1771,698167153,280 +1641,698169715,910 +1270,698171150,7413 +791,698178312,84895 +1186,698182935,11437 +1814,698187023,174 +643,698191218,165097 +981,698200480,33407 +526,698203538,313978 +1030,698207545,26619 +1406,698212272,4090 +473,698215322,408916 +109,698231772,2845250 +724,698232227,114107 +1431,698234770,3573 +75,698239813,4085183 +615,698241117,192411 +1198,698258283,10755 +1421,698262808,3749 +1979,698264828,7 +1509,698273555,2252 +1475,698278542,2749 +1388,698279195,4455 +911,698285444,47917 +576,698290319,241742 +51,698290577,4843741 +871,698295651,57473 +1669,698299678,738 +219,698305474,1346898 +1092,698315881,19307 +1846,698324343,134 +1411,698330221,3986 +1950,698331388,20 +510,698338524,336873 +458,698342159,432760 +1459,698345556,3076 +1407,698346318,4063 +618,698349125,191761 +408,698350371,566660 +425,698353083,503963 +1395,698356304,4261 +39,698361257,5914470 +165,698364331,1924565 +203,698365960,1557111 +1518,698373265,2173 +1872,698383417,91 +204,698388578,1539857 +140,698416970,2197684 +68,698420691,4261727 +1424,698442418,3648 +631,698462285,177843 +648,698477883,158341 +1906,698485268,46 +705,698486277,126107 +1932,698488800,30 +97,698489071,3261947 +1636,698519133,956 +1360,698526036,5105 +1373,698540331,4646 +495,698545981,357251 +1703,698548451,568 +290,698562644,960410 +1193,698580310,11058 +83,698585370,3793717 +325,698588535,809573 +714,698588812,121448 +1694,698589866,630 +311,698599365,872898 +1016,698604229,28165 +1131,698605444,15753 +1435,698613394,3424 +461,698620694,428343 +1978,698623373,8 +816,698625834,75345 +1202,698630140,10588 +634,698630507,174143 +168,698635863,1888799 +87,698641566,3739531 +263,698650301,1073337 +377,698652014,623964 +1420,698652171,3759 +760,698655859,96154 +1,698659980,29706138 +1441,698663855,3286 +1102,698666810,17745 +1986,698667255,4 +326,698670524,801669 +748,698677650,102911 +794,698680806,84698 +1107,698687678,17616 +1164,698692141,12908 +1051,698701911,23148 +117,698702991,2535735 +85,698704189,3752420 +362,698723158,660070 +1119,698736778,16736 +1045,698738810,24468 +323,698739350,812446 +1715,698743511,494 +1849,698748891,132 +1159,698757439,13156 +1823,698757487,160 +331,698768565,791687 +343,698769107,719912 +1975,698776998,9 +1209,698783754,10341 +1881,698785538,82 +731,698786826,110777 +453,698789253,446204 +1149,698791053,13983 +1381,698806018,4563 +61,698807570,4410499 +815,698811281,75402 +1195,698817235,10954 +348,698823542,700256 +1820,698826217,166 +1332,698826986,5655 +426,698829590,493624 +1957,698830638,15 +1130,698837993,15770 +636,698842996,171918 +487,698845189,378801 +1916,698848067,40 +1466,698848373,2917 +1313,698849979,6276 +1490,698855681,2475 +448,698867446,453292 +320,698867483,826986 +937,698879638,42906 +980,698881022,33553 +58,698884287,4520229 +1058,698895940,22316 +1555,698897472,1809 +969,698905177,35542 +800,698906190,81751 +144,698908184,2164795 +1445,698908912,3253 +1832,698913618,144 +826,698916948,71394 +1493,698926585,2430 +961,698934729,37143 +1761,698946155,301 +1674,698957176,716 +17,698962117,9398881 +29,698971484,6887180 +1810,698983867,179 +1069,698987598,20922 +977,698993706,33839 +356,698996782,678653 +696,698999105,133381 +1865,699004723,100 +664,699016994,148137 +1657,699025262,797 +1766,699034094,288 +1706,699037086,557 +1451,699039013,3207 +1162,699054327,12991 +177,699054373,1799609 +1980,699057459,6 +1959,699058253,15 +278,699065686,998458 +708,699066118,124486 +1278,699069151,7114 +34,699072129,6242248 +641,699083129,166245 +771,699086436,93101 +1063,699088529,21902 +44,699088769,5293101 +241,699097885,1173563 +5,699098531,17492315 +752,699099385,101922 +375,699099811,625734 +454,699111651,440153 +1413,699117178,3941 +912,699117865,47870 +1003,699117992,29717 +414,699121671,547084 +244,699126484,1165967 +1738,699127156,369 +1851,699127546,128 +1190,699139964,11192 +196,699146580,1580462 +1133,699146876,15589 +1287,699148121,6767 +322,699150527,821191 +1284,699155679,6927 +1020,699156456,27725 +116,699170684,2617419 +262,699176234,1078952 +108,699189792,2934255 +524,699191449,317315 +521,699191455,321791 +477,699191464,401931 +234,699194766,1278634 +595,699195358,218788 +233,699196829,1282710 +545,699199084,288786 +1055,699201278,22890 +1214,699204478,10127 +199,699208929,1571875 +1647,699212614,852 +96,699213622,3350082 +314,699238479,866894 +1780,699238678,260 +1171,699244334,12381 +222,699246032,1329013 +291,699250676,957939 +1751,699251542,336 +77,699262350,4068859 +73,699265922,4123159 +829,699266530,71099 +49,699269923,4923506 +669,699272633,145935 +169,699272880,1879400 +27,699273451,7143601 +245,699277039,1164542 +1489,699278528,2478 +266,699280514,1061805 +1512,699282717,2215 +274,699283869,1026083 +1813,699284822,175 +1625,699285160,1054 +333,699287032,775693 +86,699298370,3751608 +33,699299123,6242330 +948,699301458,40896 +317,699304554,852614 +532,699308637,309905 +301,699316421,918915 +1725,699319395,460 +435,699320017,473923 +792,699321518,84853 +149,699323302,2065610 +1863,699323781,107 +1716,699325506,494 +1433,699326171,3470 +1919,699330765,38 +103,699333701,3021963 +1697,699336679,593 +92,699336777,3516597 +1757,699339594,311 +1631,699341889,998 +132,699342219,2318941 +1982,699343887,5 +352,699346267,689735 +337,699346280,771728 +350,699347951,692456 +282,699351301,991801 +734,699355601,110490 +482,699356968,386549 +19,699364813,8198443 +62,699368887,4409587 +1352,699372829,5260 +782,699373225,87942 +873,699373599,57303 +767,699375903,94263 +500,699377151,348981 +788,699377401,86084 +284,699379895,989301 +147,699380607,2104482 +373,699380621,628236 +47,699382126,5012098 +502,699383121,346073 +101,699383279,3066699 +540,699385139,297224 +329,699390457,798009 +1893,699391409,57 +104,699393742,3008669 +753,699393759,101240 +1560,699396429,1750 +1807,699401083,186 +174,699402816,1822607 +1777,699405877,268 +492,699406247,369812 +729,699406750,111726 +275,699406776,1021678 +452,699408669,446744 +1110,699409420,17370 +215,699413040,1429545 +817,699413581,74077 +908,699419851,48397 +1564,699423167,1703 +1251,699424741,8124 +227,699425709,1306747 +272,699429153,1032662 +1098,699429335,18591 +74,699431255,4092786 +164,699432672,1929045 +148,699433558,2095484 +1730,699438389,434 +470,699441366,412568 +209,699443920,1502012 +349,699448276,697259 +1970,699451338,9 +1561,699471829,1721 +1280,699477624,7089 +820,699478692,73080 +938,699483429,42899 +90,699485250,3586562 +710,699488108,123509 +13,699491076,10672067 +1144,699493750,14283 +1075,699494480,20457 +221,699494488,1338512 +1985,699501322,4 +1071,699503079,20717 +1036,699508363,26021 +488,699509239,376817 +1208,699509284,10355 +1377,699510045,4613 +111,699510259,2761492 +665,699511295,148003 +1784,699511370,254 +12,699513260,11458244 +512,699516250,334459 +1650,699516268,843 +1858,699518384,114 +1295,699518454,6622 +1644,699520575,889 +1134,699522257,15521 +402,699523631,581020 +484,699524362,385948 +442,699524891,466309 +1632,699530673,990 +1628,699541376,1030 +928,699543968,44744 +1792,699545762,233 +1282,699546317,6983 +509,699548295,339100 +828,699550876,71358 +1238,699551148,8803 +530,699552859,311220 +881,699554427,55212 +1324,699556684,5871 +732,699557165,110609 +854,699560327,62642 +691,699562182,137319 +1461,699562874,3025 +181,699567608,1731024 +1705,699569800,560 +107,699573053,2937106 +440,699574408,466980 +941,699576407,41810 +1199,699576978,10678 +475,699578606,406622 +688,699580120,139035 +1019,699583677,27873 +830,699589540,70850 +1117,699595556,16968 +53,699598425,4802458 +1673,699600167,721 +824,699600855,71783 +249,699603116,1127435 +839,699604515,69125 +41,699605333,5654937 +1871,699609445,94 +1181,699611673,11736 +1889,699613884,62 +1969,699614027,9 +1170,699621601,12387 +1750,699622781,340 +1532,699622958,2070 +1415,699627771,3920 +154,699628084,2013814 +1147,699632387,14188 +1815,699639005,174 +700,699639122,128299 +1598,699641777,1297 +1085,699644448,19695 +987,699644852,32961 +1528,699650981,2111 +556,699656989,268531 +1960,699657242,15 +787,699657450,86634 +151,699658023,2035868 +1047,699659708,23806 +122,699660539,2482231 +1511,699662232,2236 +552,699664910,273277 +723,699665031,114916 +260,699665152,1084503 +899,699671197,51484 +813,699671454,75974 +1844,699672060,134 +258,699676005,1085765 +1961,699678739,14 +902,699678801,49166 +1231,699679662,8983 +420,699684062,516211 +910,699684693,48063 +1708,699687328,555 +1582,699688180,1484 +1237,699693687,8808 +1298,699694284,6603 +613,699695167,197610 +843,699697136,67523 +21,699697558,8043355 +382,699698079,614874 +250,699698253,1103773 +474,699699601,408371 +778,699699650,89785 +867,699703295,58651 +173,699703642,1827672 +180,699703782,1731912 +338,699704542,762463 +797,699705601,83417 +1447,699706047,3243 +838,699706955,69389 +207,699710633,1508389 +855,699711706,62553 +605,699711723,207282 +831,699711926,70722 +1835,699711996,140 +433,699712422,477236 +901,699713515,50019 +683,699718269,139492 +38,699722599,5990367 +155,699723284,2003093 +1897,699724603,52 +50,699725436,4852304 +1951,699726660,19 +195,699728159,1600482 +1479,699728266,2678 +1308,699730399,6359 +985,699730714,33137 +1367,699730998,4776 +659,699733098,154130 +1083,699733501,19766 +1094,699734152,19080 +1097,699734445,18836 +979,699734795,33598 +416,699735020,533981 +10,699736927,12182758 +549,699736959,281169 +463,699737356,427655 +434,699738350,476861 +1829,699739891,149 +1320,699741694,5902 +1052,699744012,23114 +378,699744766,623353 +588,699745265,227742 +1801,699752402,215 +1093,699753640,19197 +1990,699753863,2 +870,699755859,57488 +45,699756210,5141636 +1022,699758688,27493 +46,699759128,5095690 +1550,699760767,1821 +186,699761749,1645321 +1218,699763225,9952 +749,699765971,102414 +1292,699774694,6710 +133,699777234,2318168 +421,699777372,509930 +1362,699777556,4993 +202,699778028,1564681 +497,699778867,354641 +1989,699780721,3 +1387,699780873,4473 +1737,699781390,375 +571,699781605,248822 +72,699781762,4165341 +633,699783063,177373 +3,699783765,19374739 +63,699784536,4406307 +197,699785935,1572983 +505,699788305,341992 +508,699790202,339675 +1200,699791054,10675 +1465,699792747,2932 +489,699794286,376475 +1596,699794421,1315 +1740,699794720,367 +125,699794765,2409162 +1875,699795301,90 +455,699795378,439524 +914,699795698,47775 +141,699796330,2181650 +1938,699796630,27 +1808,699797065,184 +550,699797508,275816 +1307,699797805,6409 +622,699799629,189512 +946,699800377,41163 +1084,699800992,19707 +905,699803070,48877 +424,699804790,505048 +994,699805379,31250 +1600,699805839,1285 +379,699812007,618674 +996,699812351,31042 +784,699812571,87112 +1572,699812653,1609 +1392,699812869,4285 +118,699814283,2527437 +1643,699816699,892 +806,699818726,77536 +298,699820572,920690 +695,699821629,134908 +968,699821755,35667 +959,699823490,37448 +746,699825089,104449 +818,699825236,73736 +1828,699826312,150 +157,699827112,1999002 +1855,699828338,120 +218,699828442,1367246 +318,699828685,839593 +1011,699829494,28618 +1289,699829916,6763 +1065,699830255,21686 +1220,699831860,9902 +850,699832463,63633 +763,699833171,95308 +243,699834004,1168652 +1553,699835178,1814 +949,699837483,40331 +875,699837826,56935 +1671,699843389,727 +1157,699843417,13382 +1710,699844314,545 +1283,699844594,6932 +745,699844727,105033 +1076,699845400,20375 +372,699846892,634999 +437,699849210,471992 +395,699850967,593804 +522,699851345,321406 +247,699851426,1143893 +32,699851427,6374797 +1732,699853308,403 +1798,699854312,223 +242,699854484,1168870 +1541,699854830,1940 +1963,699855277,13 +1967,699856586,9 +1301,699856830,6538 +15,699856962,10120971 +1285,699857387,6865 +1649,699858313,844 +472,699859013,409251 +1796,699860418,225 +397,699861004,593507 +1877,699862278,88 +1500,699863708,2390 +783,699864013,87665 +658,699866225,154484 +601,699867602,213531 +100,699868002,3199098 +1288,699868739,6763 +64,699869682,4387188 +1322,699870198,5894 +761,699870923,95802 +1609,699872032,1236 +1544,699872401,1920 +1018,699872616,27905 +1760,699875132,301 +819,699875213,73695 +597,699876345,216628 +1172,699876746,12258 +428,699878150,488817 +385,699878511,613070 +1398,699879113,4210 +1379,699879556,4572 +388,699879927,606514 +37,699883079,6061948 +1168,699883836,12651 +1819,699884788,167 +1375,848882577,4618 +507,848883237,339795 +1567,848883542,1691 +313,848883684,867105 +1345,848883791,5318 +481,848886056,387836 +1438,848886200,3338 +546,848886870,288718 +371,848886973,640626 +897,848887199,51611 +533,848889556,308758 +774,848889850,91467 +1588,848890012,1417 +1310,848892804,6343 +950,848895676,39462 +825,848896434,71400 +232,848896948,1286090 +1057,848897972,22564 +1536,848899726,2022 +1428,848901396,3612 +894,848902592,52177 +798,848902744,82423 +1005,848903260,29346 +1630,848903690,999 +877,848905770,56152 +978,848907771,33655 +312,848909464,868075 +1659,848910122,793 +137,848912265,2266959 +525,848912772,314086 +1984,848912937,4 +1112,848913030,17348 +198,848913037,1571938 +1556,848913252,1788 +185,848913998,1649787 +629,848914661,178796 +1426,848915032,3621 +123,848915531,2466665 +9,848915730,13282022 +1086,848916779,19662 +1538,848917127,1979 +1068,848917570,21197 +1348,848918262,5305 +31,848918380,6723809 +1361,848921536,5088 +679,848921793,141025 +516,848921861,329073 +1520,848922118,2164 +1472,848922958,2780 +1114,848923540,17122 +616,848924219,192066 +1842,848924648,134 +1216,848925840,10019 +423,848926293,508432 +860,848927262,59949 +499,848928486,351240 +332,848928624,783845 +721,848930111,115177 +1180,848930898,11918 +660,848932879,153759 +1096,848933470,18969 +134,848934935,2288266 +269,848935020,1052044 +160,848935389,1977167 +1793,848935732,230 +536,848936053,300947 +988,848937248,32792 +1612,848937780,1191 +1802,848939131,213 +1115,848942587,17073 +1922,848942734,36 +1566,848942968,1701 +1812,848943145,176 +1078,848945529,20363 +995,848946608,31213 +370,848946700,648294 +1905,848949271,46 +1843,848949517,134 +1035,848952556,26040 +1315,848952566,6161 +430,848953066,486952 +1023,848953472,27382 +1597,848955311,1298 +71,848955783,4228066 +14,848956513,10515776 +11,848956765,11463375 +1634,848958556,970 +1947,848959231,22 +1523,848960061,2144 +1850,848963521,130 +1830,848964811,149 +1125,848966521,16270 +251,848967422,1103638 +30,848967710,6828027 +1888,848969313,63 +445,848971079,458929 +1615,848973715,1172 +1870,848973968,94 +1453,848974774,3145 +1436,848975192,3409 +733,848976034,110525 +1946,848976720,23 +1656,848977203,800 +1105,848977600,17681 +759,848977649,96990 +296,848977748,922329 +1174,848978284,12182 +555,848978297,272949 +1683,848978903,678 +814,848980237,75561 +1983,848980727,4 +1591,848981726,1373 +1594,848982634,1329 +1296,848984022,6617 +2,848985692,19935406 +336,848986287,773480 +1488,848986638,2500 +554,848987051,272952 +712,848988401,122247 +1713,848988744,505 +1249,848989855,8316 +1821,848993505,161 +255,848995242,1094052 +405,848995478,575180 +1001,848999448,30393 +491,848999671,371185 +1253,849000135,8063 +1267,849001277,7495 +267,849001572,1061216 +256,849001724,1092271 +511,849002091,334481 +1044,849002796,24518 +361,849004274,661093 +1887,849004461,67 +264,849004759,1073197 +1206,849005658,10370 +1363,849005829,4941 +1331,849006011,5690 +342,849006145,721626 +1923,849006194,36 +1245,849006385,8446 +551,849006412,275412 +1937,849008396,27 +1234,849009623,8931 +142,849009945,2170020 +211,849010255,1481594 +765,849010386,95065 +1698,849010865,585 +94,849012521,3442043 +923,849012843,45557 +693,849012985,134973 +716,849013126,118360 +612,849014147,200368 +357,849014413,677150 +292,849014922,955019 +611,849017820,202782 +26,849018239,7152796 +646,849018442,163886 +1358,849018778,5148 +1953,849018780,18 +1329,849019785,5724 +919,849020094,47102 +1340,849020212,5394 +936,849021566,43051 +706,849023078,125772 +718,849023540,117897 +1584,849024152,1462 +1767,849024208,287 +1743,849024333,353 +1954,849025083,18 +531,849026145,310303 +91,849027025,3543267 +644,849027653,164707 +1782,849027712,260 +1689,849028071,668 +341,849028088,747828 +942,849030086,41802 +93,849030226,3462101 +1010,849030643,28664 +289,849031818,961472 +614,849031846,194604 +537,849032059,299339 +1501,849032413,2381 +639,849032414,168161 +1225,849032741,9486 +82,849034882,3807184 +1826,849034917,151 +235,849035525,1271812 +327,849035905,799578 +1380,849037354,4563 +78,849037407,4045950 +574,849037469,242300 +1973,849038195,9 +1939,849038572,27 +1412,849038597,3956 +685,849039310,139342 +569,849040142,251895 +585,849040194,231335 +1334,849040462,5624 +883,849041192,55005 +1606,849042480,1252 +812,849044705,76015 +1370,849044961,4732 +248,849045047,1129117 +772,849045675,92981 +1473,849045915,2779 +1762,849046206,296 +999,849046232,30671 +1645,849047044,889 +625,849047233,184646 +567,849048112,255113 +945,849048216,41250 +1106,849048241,17635 +804,849048455,79603 +847,849048552,65666 +1129,849048562,15812 +957,849048734,37911 +1434,849048856,3444 +698,849048867,131708 +446,849049045,455166 +652,849049155,156399 +1236,849050087,8841 +1498,849050191,2415 +518,849050849,326552 +1090,849051436,19539 +1783,849051731,258 +947,849051976,40963 +1840,849052195,135 +1408,849052289,4050 +598,849052549,216618 +1450,849052588,3214 +1530,849053868,2087 +417,849054582,531083 +81,849054951,3858958 +1540,849055181,1978 +1755,849055309,313 +955,849055425,38310 +1576,849055553,1557 +770,849056744,93268 +1765,849057450,288 +590,849057572,224176 +504,849057655,343819 +1496,849057764,2416 +703,849058207,126983 +848,849059457,65582 +315,849059491,853911 +1665,849060099,755 +324,849060446,811352 +212,849061374,1481037 +182,849061406,1730001 +1427,849061417,3619 +1692,849062546,643 +1140,849062920,14829 +1135,849063605,15329 +954,849063793,38346 +396,849063849,593766 +617,849063932,191808 +1581,849064084,1487 +1571,849064087,1609 +559,849064614,262110 +43,849064752,5482618 +1522,849065606,2152 +394,849065697,598562 +1976,849066035,8 +921,849066044,46653 +924,849066125,45397 +1651,849066618,835 +1722,849066808,470 +722,849066849,115163 +1261,849067192,7575 +1275,849068108,7142 +570,849068662,250026 +1525,849069010,2129 +469,849069022,415790 +1626,849070220,1037 +966,849070335,36239 +304,849070464,907137 +1504,849070736,2315 +271,849070946,1041914 +431,849071545,482238 +943,849072846,41751 +1468,849072873,2849 +1241,849073156,8544 +1825,849073314,151 +1878,849074508,86 +1390,849075298,4371 +1215,849075836,10096 +758,849076515,97163 +1029,849076678,26756 +490,849076810,376346 +1857,849076953,116 +808,849077481,77228 +1176,849078086,12045 +619,849078297,191212 +1118,849078498,16927 +1173,849078942,12194 +926,849080011,44867 +1756,849080118,312 +1868,849080197,99 +447,849080702,454858 +1476,849082580,2744 +418,849082839,530007 +779,849082848,88817 +766,849083501,94636 +862,849083725,59710 +89,849084005,3674270 +1678,849084066,704 +964,849084474,36512 +191,849084740,1625465 +286,849084911,983368 +1228,849084920,9282 +54,849084985,4651830 +1230,849085160,8983 +1311,849085293,6318 +915,849085371,47649 +1339,849085605,5439 +970,849085764,35438 +1179,849085908,11977 +321,849085961,826978 +1201,849086357,10658 +387,849086491,609457 +944,849086693,41549 +1330,849087581,5713 +432,849087742,480694 +1306,849087786,6460 +450,849087855,449826 +728,849088101,112286 +268,849088243,1060779 +158,849088515,1991363 +872,849088639,57339 +1423,849088880,3665 +1226,849088882,9358 +1141,849088923,14623 +1790,849089323,238 +259,849089459,1084590 +1545,849089499,1912 +1048,849089601,23556 +1357,849089654,5150 +478,849089881,400846 +407,849090130,566876 +1519,849090187,2172 +1890,849090573,60 +1616,849090765,1141 +190,849091060,1635335 +498,849091084,354536 +344,849091105,717406 +261,849091769,1083112 +307,849091866,888430 +441,849091897,466329 +607,849091899,206601 +1095,849091947,19038 +773,849092109,92403 +1211,849092309,10248 +701,849092685,127746 +506,849092723,340775 +293,849092769,948947 +675,849092827,142821 +1191,849092978,11148 +672,849093003,144665 +1569,849093155,1656 +628,849093353,179982 +400,849093422,583271 +230,849093426,1289134 +1184,849093576,11641 +330,849093742,795988 +591,849093875,223618 +582,849093924,234566 +1874,849094006,90 +353,849094023,684854 +398,849094067,592510 +1210,849094111,10300 +1183,849094147,11692 +1100,849094586,17958 +1116,849094597,16979 +1121,849094603,16543 +156,849094609,2001700 +1432,849094653,3515 +1342,849094688,5372 +1276,849094759,7141 +1386,849094789,4501 +412,849095014,553112 +466,849095068,421351 +1219,849095219,9932 +236,849095227,1252081 +503,849095240,345463 +678,849095324,141159 +1508,849095376,2278 +719,849095435,115921 +600,849095446,214986 +856,849095482,62475 +668,849095488,146070 +1452,849095509,3183 +520,849095599,325580 +1752,849095601,332 +1333,849095771,5632 +647,849095778,162684 +1492,849095800,2453 +1439,849095814,3316 +762,849095829,95532 +840,849095879,68774 +811,849095948,76260 +376,849095959,624305 +764,849095963,95155 +594,849095992,220800 +1354,849096041,5222 +1745,849096102,346 +1543,849096123,1936 +676,849096182,142186 +802,849096215,80042 +1273,849096265,7225 +1247,849096285,8373 +805,849096310,77798 +1128,849096334,15856 +1772,849096346,280 +358,849096354,668803 +1293,849096383,6653 +1369,849096399,4743 +1166,849096435,12707 +697,849096454,131952 +1013,849096458,28386 +1601,849096544,1283 +334,849096547,775162 +1838,849096592,138 +859,849096594,60115 +178,849096606,1779554 +1062,849096631,21967 +655,849096649,156077 +913,849096768,47803 +803,849096856,79903 +898,849096874,51529 +667,849096882,146389 +1312,849096891,6283 +844,849096944,67152 +577,849096945,240707 +991,849096954,32626 +727,849096958,112454 +940,849096972,42287 +1148,849096977,14149 +1570,849096979,1610 +781,849097002,88294 +1185,849097006,11458 +742,849097103,108532 +557,849097175,266031 +1467,849097312,2896 +832,849097357,70710 +1025,849097370,27094 +1991,849097373,1 +1497,849097386,2415 +1702,849097445,577 +1547,849097477,1867 +853,849097614,62725 +1150,849097620,13856 +876,849097716,56445 +623,849097737,186712 +1437,849097792,3370 +1177,849097793,12015 +161,849097799,1974498 +1789,849097837,240 +889,849097898,53035 +444,849097937,462761 +920,849097954,46717 +1091,849097981,19316 +833,849098109,70632 +1599,849098132,1295 +674,849098136,143710 +1154,849098159,13712 +1297,849098192,6608 +690,849098200,138832 +1143,849098217,14314 +391,849098265,603107 +1101,849098299,17879 +1263,849098324,7550 +1486,849098326,2533 +895,849098374,52171 +730,849098387,111540 +640,849098400,167715 +989,849098423,32790 +1822,849098476,161 +1510,849098477,2242 +893,849098516,52377 +1704,849098557,560 +1972,849098592,9 +471,849098628,411701 +608,849098648,205057 +366,849098688,651057 +1182,849098693,11724 +406,849098695,571334 +1178,849098724,12009 +1619,849098727,1101 +252,849098769,1098050 +845,849098774,66456 +592,849098782,222840 +866,849098784,59039 +822,849098791,72699 +1442,849098822,3281 +1627,849098848,1032 +1153,849098966,13768 +725,849099021,113452 +1188,849099054,11289 +1729,849099105,436 +1371,849099131,4731 +1256,849099138,7910 +1266,849099141,7515 +1515,849099145,2190 +635,849099160,173534 +1533,849099258,2052 +374,849099276,627988 +1383,849099280,4537 +744,849099342,105384 +1684,849099391,675 +990,849099422,32627 +584,849099434,234296 +681,849099463,140885 +741,849099505,108534 +982,849099517,33402 +493,849099544,365320 +1602,849099557,1277 +1470,849099558,2806 +930,849099601,43979 +1165,849099640,12849 +1554,849099660,1813 +1799,849099689,217 +389,849099696,606431 +449,849099785,449879 +1396,849099797,4243 +1402,849099804,4143 +1104,849099815,17692 +1359,849099859,5138 +1795,849099864,225 +102,849099876,3030696 +1087,849099932,19616 +983,849099955,33305 +564,849099965,257553 +1687,849100016,670 +1344,849100034,5351 +1189,849100082,11228 +1648,849100083,850 +662,849100149,152592 +1463,849100199,2969 +857,849100228,60742 +1366,849100246,4824 +535,849100262,303071 +1749,849100288,340 +1404,849100289,4129 +476,849100323,405020 +381,849100349,615081 +1495,849100352,2425 +1124,849100354,16357 +842,849100383,67666 +1727,849100399,444 +1327,849100406,5813 +1384,849100439,4526 +863,849100463,59523 +1271,849100584,7335 +1232,849100611,8960 +1477,849100612,2735 +543,849100615,291713 +922,849100656,46266 +1192,849100680,11131 +1670,849100743,734 +1217,849100744,9993 +1746,849100760,344 +1326,849100782,5817 +927,849100787,44762 +1079,849100796,20304 +673,849100811,144153 +1024,849100814,27265 +904,849100877,49041 +1006,849100882,29329 +1726,849100891,458 +359,849100994,664187 +1265,849101018,7521 +739,849101029,108930 +1142,849101083,14496 +886,849101092,54167 +907,849101102,48425 +1658,849101104,793 +1031,849101108,26544 +501,849101116,348746 +1607,849101132,1244 +1642,849101144,893 +1305,849101148,6502 +627,849101162,181158 +1527,849101177,2112 +1042,849101186,24677 +1294,849101205,6628 +1274,849101224,7197 +1613,849101232,1188 +973,849101248,34436 +1718,849101268,492 +1736,849101276,382 +1368,849101291,4755 +1655,849101293,800 +1397,849101311,4238 +882,849101377,55172 +650,849101378,157607 +976,849101382,33988 +1583,849101391,1471 +1499,849101409,2412 +1163,849101526,12984 +1744,849101578,349 +1430,849101579,3582 +709,849101580,123833 +1748,849101581,341 +967,849101604,35840 +1414,849101647,3923 +786,849101652,87038 +1378,849101674,4583 +1286,849101694,6859 +1321,849101814,5900 +566,849101845,255534 +1113,849101871,17249 +680,849101881,141008 +909,849101884,48199 +807,849101889,77389 +841,849101893,68265 +868,849101945,58120 +1391,849101947,4287 +827,849101962,71365 +438,849102068,471294 +410,849102092,562722 +958,849102094,37853 +715,849102108,118638 +1309,849102143,6345 +1580,849102150,1494 +1039,849102336,25002 +780,849102464,88534 +935,849102480,43138 +874,849102573,57070 +1816,849102985,172 +1303,849103148,6531 +1663,849103156,767 +1562,849103237,1716 +1252,849103456,8111 +1902,849103914,50 +1804,849103947,206 +1542,849104010,1937 +1227,849104100,9341 +1258,849104286,7875 +1161,849104297,13000 +561,849104328,261326 +903,849104356,49150 +1660,849104491,792 +1073,849104546,20697 +1800,849104818,216 +953,849104855,38798 +1235,849105071,8926 +993,849105102,32141 +1187,849105232,11377 +1139,849105417,14879 +1505,849105463,2314 +1915,849106303,40 +1335,849106316,5595 +1314,849106340,6233 +1679,849106383,695 +1664,849106420,762 +1908,849106576,45 +1372,849106612,4672 +1709,849106785,554 +1809,849106820,180 +1224,849106971,9541 +1652,849107104,833 +1517,849107426,2178 +1728,849107507,440 +880,849107532,55595 +1223,849107703,9713 +1818,849108007,170 +1654,849108053,818 +1455,849108148,3111 +1254,849108157,7940 +1516,849108328,2187 +642,849108623,165215 +1925,849108762,35 +603,849108780,211892 +1338,849108784,5507 +1111,849108934,17369 +1127,849108991,15956 +1949,849109010,20 +1910,849109152,42 +1981,849109232,6 +1558,849109413,1779 +1817,849109507,171 +1776,849109521,270 +992,849109637,32386 +1155,849109795,13706 +1620,849109966,1091 +1374,849110310,4638 +1151,849110365,13847 +1028,849110382,26798 +1676,849110674,707 +1707,849110688,557 +1169,849110743,12553 +1277,849111050,7117 +1513,849111196,2209 +1539,849111244,1978 +1861,849111316,110 +1347,849111332,5308 +1758,849111408,310 +1917,849111418,39 +1901,849111667,50 +1811,849111732,178 +1731,849111792,419 +1806,849111819,186 +1229,849112029,9010 +1487,849112368,2529 +1690,849112369,665 +1940,849112510,27 +1927,849113055,34 +1629,849113546,1002 +1350,849113595,5292 +1593,849113597,1330 +1551,849114085,1820 +1834,849114265,142 +1535,849114408,2030 +1936,849114477,28 +1841,849114579,134 +1965,849115431,10 +1711,849116221,530 +1502,849116310,2364 +1903,849116357,49 +1891,849116679,60 +1681,849117143,683 +1685,849117427,675 +1794,849117830,228 +1769,849118259,282 +1719,849118441,490 +1914,849118709,40 +1836,849118999,140 +1977,849119078,8 +1926,849121835,34 +1885,849122768,70 +1955,849123125,18 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_att_tribe.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_att_tribe.txt new file mode 100644 index 0000000..cdbf756 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_att_tribe.txt @@ -0,0 +1,213 @@ +2,1,197149923 +163,4,7808 +4,7,133940808 +89,8,155525 +114,12,71331 +119,13,63826 +29,19,3109409 +80,24,205544 +60,29,419592 +68,31,271134 +99,33,127014 +6,35,67576037 +8,39,38547158 +1,47,236152747 +187,53,1297 +102,56,107411 +108,59,89693 +45,68,1066395 +16,71,8406402 +133,72,38620 +34,77,2196064 +25,80,4699158 +5,85,86023620 +105,89,94543 +79,92,208853 +129,96,40098 +137,97,33470 +39,106,1547869 +38,112,1711002 +142,115,25141 +110,116,85225 +146,117,21965 +3,120,139926286 +100,125,110559 +111,129,82762 +62,134,397211 +112,147,80447 +61,157,415697 +152,176,16504 +166,185,7378 +31,194,2607720 +208,200,30 +83,210,178718 +71,211,257208 +127,214,41521 +211,216,12 +161,220,8278 +65,234,362768 +202,236,52 +33,256,2264454 +156,260,10522 +91,285,150587 +174,287,4521 +9,291,36875586 +11,301,26806801 +148,305,19292 +10,309,36138019 +118,319,67239 +178,336,3986 +7,369,58830293 +128,373,40352 +200,374,99 +84,375,174378 +67,377,331213 +196,382,291 +90,385,153097 +52,412,642975 +32,430,2549096 +24,432,5051794 +147,435,20699 +55,441,579188 +190,443,1031 +48,452,725489 +138,475,30918 +183,503,2275 +172,517,4826 +96,520,137000 +176,523,4107 +35,546,2097153 +41,548,1309325 +207,554,32 +188,557,1239 +37,594,1766507 +160,597,8289 +74,607,222168 +181,624,2475 +123,633,51266 +124,636,48384 +113,647,72783 +97,651,136651 +150,664,18675 +17,666,8113232 +120,686,61938 +23,693,5125520 +27,722,3734858 +95,733,141728 +107,750,91301 +77,758,212637 +130,766,40018 +154,778,16261 +15,785,8726932 +58,786,492119 +82,806,187855 +76,822,214844 +20,830,6182634 +153,841,16412 +73,847,241905 +12,862,18894601 +40,936,1367259 +72,944,249585 +198,945,114 +169,963,6190 +182,965,2359 +49,989,702186 +104,991,99680 +46,1023,869386 +13,1039,10258911 +36,1040,1922517 +51,1052,659407 +125,1058,44295 +85,1079,172850 +135,1096,36721 +30,1108,2992607 +136,1127,35542 +18,1128,7828246 +21,1140,6065875 +42,1148,1223288 +121,1161,59985 +140,1163,28985 +193,1166,365 +170,1170,6131 +81,1209,200678 +26,1226,4223030 +86,1232,171782 +168,1261,6589 +63,1275,394386 +149,1278,19193 +66,1293,351269 +53,1312,635357 +205,1317,42 +171,1333,5757 +28,1336,3119338 +210,1347,15 +141,1357,26793 +92,1368,149732 +179,1372,3874 +47,1376,783132 +122,1399,57170 +22,1411,5711015 +157,1416,10013 +64,1418,364951 +180,1421,3128 +115,1423,70186 +54,1428,610324 +164,1431,7530 +116,1432,67981 +98,1448,132845 +155,1456,11762 +103,1466,101232 +57,1470,507857 +191,1477,375 +19,1480,7053464 +87,1483,171122 +167,1494,7195 +209,1498,19 +14,1523,9693986 +177,1526,4100 +59,1528,476359 +134,1530,36737 +162,1535,7897 +109,1551,86090 +194,1573,326 +201,1582,55 +197,1585,281 +143,1588,25002 +50,1597,668744 +131,1599,39978 +145,1602,23331 +203,1609,52 +43,1621,1204990 +158,1626,9530 +139,1627,29761 +75,1636,220320 +101,1638,107892 +173,1643,4638 +44,1648,1091715 +88,1651,166503 +69,1652,258353 +184,1656,2129 +132,1657,38951 +159,1669,9010 +213,1672,1 +93,1680,149155 +144,1681,24465 +186,1683,1682 +185,1687,1713 +192,1691,370 +151,1692,17635 +117,1700,67818 +56,1716,523524 +175,1721,4371 +78,1724,210586 +199,1729,106 +70,1735,257705 +189,1737,1032 +165,1745,7416 +212,1763,9 +94,1780,142522 +204,1783,50 +195,1785,296 +126,1790,43136 +106,1793,91636 +206,1795,40 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_def.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_def.txt new file mode 100644 index 0000000..13fe047 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_def.txt @@ -0,0 +1,2515 @@ +1260,6948,61670 +1815,17714,11560 +410,33900,719818 +1847,50930,10080 +536,61791,469152 +375,82782,804093 +443,87575,637385 +566,89637,409283 +470,100452,564853 +1913,101074,7522 +2487,108256,4 +1933,112401,6870 +1122,113796,90696 +1989,117208,5371 +782,118121,221944 +715,122492,263474 +2370,126954,43 +2088,128353,2947 +1284,129795,59293 +2130,131972,2247 +2239,148405,748 +772,160513,231436 +531,192947,481038 +1779,195249,13558 +1152,197581,82789 +2123,205821,2374 +14,225023,18438391 +1668,254937,20530 +1551,260666,29387 +88,272173,3813465 +1737,281866,16574 +865,289542,181210 +516,301602,494705 +747,310729,243705 +1667,325491,20650 +276,335509,1318402 +1425,337137,40415 +852,356642,185104 +594,361125,385441 +1166,363280,79994 +1107,364126,93163 +2447,371910,10 +967,378757,136306 +233,382222,1631288 +307,393668,1131172 +1428,412571,39884 +1464,439825,37047 +2118,466800,2424 +1652,470266,21915 +335,477415,961175 +793,478956,216220 +861,483145,182868 +1473,498483,36326 +1393,526350,44990 +2214,529552,1017 +131,542253,2960404 +2259,545152,549 +1786,546458,13365 +388,556154,787408 +513,563544,498350 +1843,566379,10283 +1003,569790,124391 +1888,570100,8378 +2003,583500,5000 +720,584989,261994 +474,591733,562496 +1952,602408,6351 +2456,603968,10 +1203,606407,72428 +974,606706,131662 +1351,609384,50800 +1624,610196,24360 +805,634848,207069 +2510,662253,1 +1718,671516,17534 +943,692803,146184 +620,712216,358375 +544,724621,455189 +518,745946,493346 +1539,747422,30197 +361,758104,852830 +1741,762975,16460 +2401,763529,21 +259,765188,1430770 +843,769293,186838 +1174,796977,77868 +1629,823987,23953 +317,828637,1070229 +1373,869195,47984 +1268,873575,60748 +1190,878961,74918 +1488,879782,35329 +1081,881782,98822 +886,896355,170018 +727,915113,258250 +1299,919882,57725 +2108,921888,2579 +47,926823,6789703 +293,940693,1217975 +1915,942959,7504 +771,944147,232379 +1627,947564,24145 +831,947923,193832 +2515,949279,1 +619,950985,358643 +1154,951823,82606 +1633,959179,23430 +1014,960100,122269 +43,1006847,7565048 +488,1015528,540680 +54,1018357,6190053 +589,1020792,390101 +638,1021709,338682 +2318,1034117,222 +979,1043028,130875 +1904,1044760,7890 +1795,1049851,12582 +351,1078121,884900 +1222,1079223,68604 +183,1086351,2047868 +1076,1095271,100624 +154,1095489,2481698 +1170,1096254,78805 +1976,1106220,5729 +2365,1132842,52 +1605,1164249,25384 +1294,1170102,58461 +1628,1205898,24100 +1931,1227022,6898 +1704,1227918,18722 +493,1238300,529488 +1379,1260088,47680 +487,1267913,544257 +796,1270916,212998 +1288,1276665,58951 +1429,1284796,39858 +786,1285441,220862 +1156,1286008,81894 +1973,1322622,5796 +1553,1323424,29353 +344,1347385,901713 +1606,1350456,25361 +1916,1371998,7469 +1345,1406042,52241 +1207,1415009,71681 +1743,1415665,16413 +490,1424656,535112 +70,1434753,4847755 +663,1450352,303399 +869,1454871,179391 +1987,1493696,5389 +101,1497168,3510999 +829,1510264,194017 +2313,1511101,231 +1290,1525273,58753 +1440,1536231,38943 +358,1536625,871218 +2042,1553481,3966 +195,1553947,1956403 +755,1563417,237156 +1984,1568700,5459 +2142,1568908,2078 +1314,1578509,55835 +2277,1581890,434 +1504,1601917,33620 +986,1606425,128503 +464,1608563,582629 +919,1609607,154613 +1224,1610267,68381 +1181,1631690,76709 +2149,1645835,1946 +1206,1646837,72134 +1070,1647052,102226 +1670,1668965,20296 +1173,1669587,78351 +2319,1675628,212 +1042,1693936,112417 +857,1700145,183686 +1346,1715091,52177 +254,1746216,1455179 +1099,1748180,94275 +1753,1757722,15483 +158,1767876,2399236 +1465,1775957,37011 +334,1782523,974769 +2330,1794060,169 +879,1804724,174840 +370,1809381,823822 +1247,1809943,63986 +1817,1827485,11450 +123,1830149,3119376 +1470,1831874,36775 +1638,1861962,23222 +1716,1867161,17648 +947,1867410,144074 +1474,1889913,36313 +471,1895081,563172 +1149,1900364,84449 +2075,1924718,3356 +671,1945202,296058 +1458,1957280,37712 +217,1990750,1734551 +360,2020935,860174 +190,2044462,1969425 +1827,2051721,10990 +1610,2061701,25166 +373,2065730,817769 +1398,2083273,44204 +716,2087251,263088 +1826,2105150,11063 +1781,2135129,13548 +1246,2151163,63990 +1557,2162471,29029 +1500,2177410,34097 +1767,2213632,14380 +684,2232973,285338 +1785,2245160,13426 +1005,2246711,123989 +1754,2256843,15439 +163,2262902,2326713 +1468,2268889,36902 +1384,2269943,46929 +36,2289134,9253798 +1105,2293376,93212 +1749,2297431,15815 +2025,2308351,4392 +153,2315542,2504451 +325,2321390,1008890 +1394,2323859,44816 +1134,2324569,87502 +1013,2345447,122522 +705,2357773,267962 +1356,2362058,50009 +1336,2363165,53585 +839,2365630,188672 +1646,2371436,22527 +2129,2392791,2251 +181,2411854,2052512 +672,2415972,295378 +888,2418002,169450 +399,2418364,754818 +1185,2422415,76112 +1205,2426019,72148 +1418,2443031,41129 +226,2453888,1672543 +553,2467370,435845 +2333,2485646,152 +2158,2491724,1836 +779,2502956,223091 +2378,2512219,38 +1623,2514219,24397 +1637,2516620,23251 +103,2559569,3506095 +925,2569868,151131 +1626,2571407,24241 +1493,2571536,34773 +1949,2575842,6399 +3,2585846,46153641 +1228,2591538,67909 +1026,2593568,117820 +702,2595542,269482 +100,2600387,3511709 +2114,2613743,2485 +1325,2620389,55017 +1421,2646397,40910 +583,2665207,393250 +1367,2692494,48673 +1765,2717161,14454 +966,2723244,136855 +2055,2725721,3709 +999,2730335,124806 +2091,2735370,2908 +1405,2764337,43298 +734,2798385,252071 +273,2800032,1334285 +580,2801913,396260 +945,2808172,145672 +2051,2811353,3773 +555,2812197,432982 +2024,2819255,4408 +1604,2819768,25432 +2022,2837080,4430 +549,2873154,442300 +1160,2893211,80885 +1024,2924071,117961 +482,2972329,551662 +1128,2976468,89299 +2349,2980670,90 +1492,2999957,34922 +882,3022364,172215 +2026,3024357,4355 +1075,3027589,100752 +875,3057381,176373 +2486,3101080,4 +95,3108144,3659008 +1309,3136062,56366 +846,3181712,186691 +1095,3185732,95060 +415,3264534,708434 +724,3295619,260032 +1532,3298564,30856 +1599,3298902,25542 +1008,3319611,123444 +1777,3340647,13660 +376,3342690,802106 +777,3345943,224932 +2160,3362925,1826 +2140,3364735,2098 +1364,3365981,48893 +1897,3372959,8054 +400,3377503,751051 +235,3377827,1628125 +641,3395817,333720 +1109,3409028,92643 +768,3411571,233028 +698,3428961,272273 +599,3430969,380673 +1983,3441892,5464 +1614,3454753,24724 +2421,3462813,13 +1701,3467919,18775 +51,3475079,6502818 +585,3484132,392689 +597,3487721,383076 +1896,3487933,8091 +2191,3499467,1367 +40,3502565,7971132 +2338,3518623,132 +1997,3529695,5269 +2293,3560281,340 +863,3584298,182350 +975,3589487,131344 +792,3600737,217022 +1023,3613413,117975 +1536,3631404,30510 +840,3639628,188341 +2416,3647080,14 +1725,3647086,17225 +1348,3652727,51748 +803,3667722,208765 +2096,3668212,2841 +1728,3692413,17108 +1530,3698627,30945 +862,3713020,182517 +1619,3734803,24448 +1410,3739202,41940 +1907,3743817,7693 +558,3750922,427264 +1412,3760848,41840 +1698,3762475,18974 +1702,3781794,18765 +2176,3800097,1618 +1582,3842862,27259 +2205,3860614,1126 +1451,3895471,38377 +806,3896657,205920 +204,3909522,1840752 +1923,3923887,7187 +519,3933666,493033 +1577,3957237,27710 +1001,3969110,124753 +1044,3972413,111265 +206,3986807,1828467 +467,3990066,569828 +2162,5989306,1797 +106,5991728,3442192 +80,5997814,4266167 +1822,6001174,11253 +1223,6002527,68486 +1552,6032352,29375 +1120,6046368,90712 +1059,6046743,104855 +973,6048627,132951 +658,6071567,310809 +1487,6078176,35438 +683,6083448,285903 +481,6101033,552089 +2154,6111938,1882 +1430,6116940,39674 +298,6118079,1177392 +1094,6121024,95109 +1460,6121519,37585 +2100,6127190,2749 +996,6131106,125418 +618,6136757,360143 +2274,6143689,446 +2106,6145316,2637 +1825,6160655,11094 +1522,6167751,31755 +1064,6169408,103596 +1303,6171569,57467 +689,6174010,282124 +39,6180190,8431802 +878,6186491,175319 +2326,6212605,194 +1707,6240801,18477 +610,6242167,367771 +2314,6243588,231 +465,6249486,580085 +728,6258092,255973 +2177,6262469,1590 +629,6270765,343571 +2165,6276208,1785 +242,6276419,1551356 +1167,6284929,79689 +425,6296228,676417 +893,6299408,167472 +1864,6300771,9620 +954,6301789,142557 +94,6308670,3672613 +1768,6315553,14327 +1788,6326324,13300 +2144,6330147,2043 +230,6343784,1654961 +607,6354098,373066 +2479,6354962,8 +2304,6379173,262 +176,6384450,2080869 +835,6395848,191094 +1954,6409472,6297 +439,6414286,646106 +1507,6416213,33364 +1979,6417987,5655 +2269,6423275,500 +635,6423719,340624 +1597,6425087,25643 +1920,6472706,7310 +648,6510480,322577 +2044,6516085,3935 +1742,6517003,16430 +1571,6517826,28217 +2081,6520732,3133 +437,6528152,647531 +1655,6541079,21803 +1697,6554011,19017 +2342,6557487,112 +1796,6557824,12567 +1784,6590149,13471 +1200,6606543,72792 +1644,6617912,22757 +445,6618608,633567 +299,6625437,1176858 +489,6625716,537399 +643,6647535,330551 +2428,6647642,13 +2389,6651072,26 +569,6654098,407287 +2170,6658016,1708 +2323,6674092,200 +2199,6677893,1209 +2465,6692351,10 +1442,6704738,38878 +1150,6736666,84324 +866,6786449,180771 +1276,6795280,59956 +1719,6818593,17511 +2019,6821136,4516 +1957,6822085,6166 +503,6822957,512527 +1666,6837266,21050 +949,6853693,143492 +2072,6857973,3366 +1650,6870350,22103 +746,6882236,243973 +1221,6884492,68631 +1282,6892517,59545 +6,6910361,32245198 +617,6920960,360466 +1978,6921135,5690 +184,6923061,2042173 +810,6925574,204817 +1161,6927748,80879 +1940,6929240,6697 +96,6936607,3632667 +137,6948793,2822013 +1806,6955809,12094 +1647,6956104,22498 +2079,6968280,3206 +311,6986891,1094040 +2334,6995252,149 +1368,7007969,48658 +420,7012651,696389 +667,7013660,298876 +2309,7023110,244 +1301,7038651,57660 +1844,7047342,10266 +1509,7064954,33045 +2261,7067846,544 +668,7069895,298332 +2422,7083877,13 +1733,7085502,16800 +85,7085510,4052425 +380,7092442,794965 +1216,7097727,69894 +309,7098955,1101037 +2119,7125212,2385 +1102,7127455,93894 +1938,7135037,6705 +989,7139820,126932 +1568,7139853,28389 +1330,7140413,54720 +993,7142659,125768 +1444,7150683,38763 +237,7150939,1598475 +1525,7154207,31575 +652,7157316,316045 +1163,7158871,80687 +1313,7181335,55955 +240,7183372,1583934 +730,7210775,254394 +1556,7220989,29110 +971,7221139,134432 +1495,7226782,34472 +1908,7230689,7693 +2018,7242969,4527 +77,7249451,4531137 +1130,7259218,88356 +2308,7262049,246 +369,7271812,825218 +521,7272223,491834 +1258,7287342,62324 +774,7297881,226567 +1349,7313287,51679 +113,7318415,3268635 +468,7318949,565878 +621,7333216,358104 +1265,7337110,61184 +33,7340529,9693842 +1063,7346797,103956 +520,7349282,492330 +1782,7357503,13493 +2053,7365299,3732 +336,7386358,945220 +655,7394371,313355 +2384,7409475,30 +91,7417116,3743373 +1363,7418168,49109 +1446,7422002,38730 +1178,7427966,77393 +1886,7428666,8492 +2163,7440474,1793 +258,7449254,1434313 +665,7462660,302189 +2117,7474527,2459 +1879,7477695,8821 +1172,7485877,78599 +68,7491093,4916117 +2028,7492426,4275 +1511,7494178,32678 +981,7494497,129925 +1969,7499430,5846 +1359,7508390,49802 +838,7516892,190133 +438,7518529,646382 +2495,7520280,2 +2396,7526090,22 +1992,7528491,5347 +1671,7530708,20255 +64,7540891,5444885 +964,7550472,138212 +34,7555180,9579441 +2189,7557683,1400 +1723,7559093,17374 +1734,7560474,16690 +234,7563185,1630841 +1162,7563943,80848 +868,7574317,180002 +1332,7575174,54411 +760,7581876,235048 +1595,7588382,25739 +1882,7589468,8748 +1537,7590135,30453 +1675,7590275,20127 +1270,7605446,60407 +2212,7629036,1026 +915,7646152,157182 +1934,7651093,6855 +828,7661091,194713 +418,7675610,699257 +959,7691817,139935 +319,7695478,1061592 +1101,7695659,93936 +2040,7699382,3971 +2399,7707390,22 +2327,7720028,193 +994,7721441,125651 +1714,7733128,17728 +398,7749444,760905 +1484,7750835,35781 +1792,7756002,12794 +130,7758085,2982583 +138,7765098,2809964 +2084,7775311,3054 +1030,7781236,115811 +1065,7787254,102888 +742,7802435,246697 +2161,7803631,1811 +2076,7809316,3303 +1058,7820575,105301 +484,7829201,551196 +405,7831811,740950 +295,7842579,1214988 +601,7860453,380516 +2242,7865511,701 +2063,7866994,3601 +1135,7897925,86580 +2450,7913305,10 +2153,7914131,1891 +2285,7915966,388 +1305,7919620,56967 +2290,7927374,347 +1982,7929731,5593 +1590,7970506,26130 +703,7973893,268909 +504,7976264,510557 +2488,7982117,4 +2264,7985956,528 +498,7995033,522130 +1663,7999103,21305 +509,8000875,502744 +196,8004076,1928927 +1019,8006209,120011 +2061,8013349,3627 +1846,8015775,10204 +2459,8015955,10 +541,8019812,457747 +366,8048374,830634 +1535,8061953,30563 +914,8062053,157553 +822,8078914,197248 +1914,8082376,7509 +1439,8083365,38969 +912,8096537,157944 +1519,8097158,32092 +2,8099868,57036551 +329,8123790,992528 +1874,8128478,9086 +1202,8138506,72556 +29,8153179,11485813 +812,8153941,203462 +97,8155296,3614607 +1999,8160123,5237 +371,8167837,822175 +185,8175236,2007007 +191,8184383,1967646 +2462,8185721,10 +738,8191129,248366 +1208,8192845,71549 +1583,8199417,27027 +904,8201460,164639 +1527,8204028,31261 +1086,8204926,97623 +265,8218433,1396037 +1338,8224678,53455 +1358,8240209,49834 +1232,8240677,66920 +1385,8259895,46727 +722,8268010,261736 +1542,8274566,30120 +2006,8288459,4820 +1961,8292737,6023 +2013,8305343,4583 +889,8320319,169254 +899,8323711,166369 +1972,8325063,5800 +616,8325700,360668 +769,8337151,232836 +1592,8362886,25958 +1966,8366045,5883 +1873,8366849,9089 +121,8369561,3160861 +2064,8369657,3592 +1491,8369778,34935 +1709,8370183,18198 +1113,8373234,91799 +1560,8379825,28931 +1862,8379871,9689 +1550,8386608,29485 +1315,8400180,55791 +924,8400975,151344 +2023,8408007,4427 +1922,8411874,7212 +1859,8418489,9722 +316,8419570,1071165 +1146,8420564,85303 +142,8423835,2734448 +2045,8425594,3932 +1450,8428196,38415 +2351,8434727,79 +1115,8438707,91687 +761,8444356,235012 +1036,8444698,114982 +389,8459255,779152 +69,8478874,4865740 +767,8483719,233698 +634,8501514,341384 +1002,8502135,124730 +255,8503255,1454075 +2034,8510466,4098 +483,8513699,551349 +55,8539216,6145786 +1875,8541236,9053 +1613,8552893,25031 +1917,8553904,7449 +1168,8574922,79600 +909,8582487,159112 +2439,8583185,10 +809,8588789,204935 +657,8593382,313270 +1186,8606809,75942 +90,8607734,3752641 +1250,8609713,63361 +1180,8612358,77104 +1730,8622901,17031 +2103,8627359,2707 +1331,8630972,54719 +279,8632462,1311596 +30,8649412,11303579 +1296,8654156,58269 +1114,8662264,91760 +2363,8662634,52 +690,8665783,280921 +2209,8669398,1082 +424,8674163,678183 +407,8675636,732623 +1396,8677963,44577 +2250,8678008,621 +1894,8696132,8233 +918,8698728,155674 +2124,8699429,2367 +798,8708728,211960 +125,8710047,3102084 +1395,8720321,44787 +1974,8724192,5787 +1544,8729672,30043 +306,8740199,1136594 +534,8741336,472471 +1911,8742874,7565 +1189,8752714,75259 +350,8753956,891275 +565,8758298,412229 +486,8760124,544500 +1269,8760563,60434 +1682,8772425,19893 +1631,8772923,23556 +1609,8773967,25205 +1649,8776452,22333 +16,8779575,18080334 +614,8784866,362398 +1807,8785003,12004 +1148,8785314,85008 +52,8788366,6350192 +1926,8792844,7135 +1104,8796215,93768 +1457,8806145,37985 +1432,8811880,39516 +108,8812550,3411009 +2141,8815353,2079 +1231,8815749,67260 +2441,8819990,10 +1673,8827094,20178 +859,8831977,183378 +592,8839171,386028 +1497,8839403,34460 +333,8841266,984309 +122,8842936,3144228 +897,8843774,166769 +305,8847546,1140466 +612,8849267,363053 +2035,8852026,4083 +2221,8853146,859 +1235,8855679,66491 +1893,8856821,8235 +2168,8868716,1719 +1182,8876551,76582 +1799,8877156,12503 +2402,8877886,20 +1119,8890346,91152 +453,8890793,609396 +613,8895532,362571 +776,8897100,225533 +1494,8900955,34490 +644,8907258,329223 +1192,8908002,74355 +953,8908544,142779 +1399,8916982,44124 +1055,8922870,106236 +2271,8924845,477 +1416,8925624,41389 +1845,8925695,10229 +2256,8942143,563 +2235,8947021,756 +2060,8947705,3633 +711,8954402,264636 +1506,8956715,33558 +83,8963720,4087908 +250,8966820,1499296 +48,8967440,6758765 +1062,8970390,103977 +1307,8976313,56565 +992,8978080,126069 +1433,8980651,39491 +1191,8983479,74645 +429,8985694,667946 +850,8991696,185329 +2460,8994199,10 +969,8997874,135268 +750,9000253,242545 +1165,9003698,80197 +1039,9014108,113440 +935,9016464,148294 +1554,9016560,29316 +1830,9021037,10886 +312,9021920,1091379 +783,9023703,221666 +2335,9029627,149 +172,9029928,2156716 +628,9031705,344141 +577,9037756,403076 +129,9043233,2991485 +236,9047658,1624665 +223,9048764,1691440 +128,9057880,3010527 +133,9060641,2933303 +117,9060885,3190865 +1713,9067168,17729 +1362,9071253,49235 +1600,9091557,25519 +666,9094538,300856 +2228,9095581,799 +787,9096738,220848 +934,9097545,148684 +825,9101574,196005 +308,9103424,1120247 +331,9106642,987378 +649,9106690,322131 +1267,9113064,61075 +1194,9120206,73740 +2133,9124682,2172 +2206,9129046,1120 +2247,9136062,647 +2143,9138661,2066 +588,9140898,392202 +736,9147518,251567 +171,9148043,2158304 +1823,9148439,11153 +1052,9151549,107247 +2113,9153430,2517 +58,9154293,5826417 +611,9154820,365469 +2111,9163140,2523 +105,9167250,3457749 +1486,9174887,35593 +1077,9179700,100419 +1617,9180206,24511 +449,9182487,625062 +526,9185931,486207 +1964,9186126,5899 +827,9186877,194796 +1139,9188016,86299 +1312,9191031,56169 +428,9195661,668174 +406,9199885,737788 +2493,9213654,3 +1801,9225795,12339 +1466,9228039,36966 +1252,9231765,62972 +409,9234594,723166 +1285,9235561,59213 +81,9236866,4238466 +1106,9238175,93197 +178,9239515,2065078 +1226,9240154,68044 +1727,9253494,17135 +2286,9257513,382 +1335,9260447,53601 +1562,9262877,28650 +1066,9264752,102868 +1531,9266092,30909 +256,9272054,1452011 +898,9277642,166763 +241,9280477,1558749 +459,9280679,600382 +1302,9282669,57579 +2046,9282974,3897 +873,9283142,176573 +1870,9283775,9262 +126,9291984,3045776 +1547,9292037,29827 +673,9299539,293814 +2503,9312528,2 +576,9314079,403206 +391,9314153,771043 +1053,9318449,106673 +302,9319058,1150010 +364,9320272,837597 +559,698143931,424614 +853,698147372,184948 +203,698147969,1844189 +1295,698151302,58359 +11,698152377,20341024 +1776,698152498,13887 +403,698160606,747433 +225,698162312,1674338 +1990,698162357,5365 +547,698167138,448815 +923,698169715,151980 +532,698171150,477951 +270,698178312,1343037 +2281,698182935,416 +1241,698187023,65726 +1811,698190039,11745 +1413,698191218,41654 +1289,698200480,58822 +1906,698202162,7836 +1658,698203538,21668 +261,698207545,1422231 +1218,698212272,69547 +1334,698215322,53855 +397,698231772,761071 +1471,698232227,36632 +1773,698234770,13959 +382,698239813,794161 +392,698241117,770662 +460,698258283,597234 +2369,698262808,49 +1513,698264828,32509 +402,698273555,748974 +1033,698278542,115205 +920,698279195,154136 +1857,698281649,9810 +1096,698285444,94869 +263,698290319,1412863 +251,698290577,1478532 +340,698295651,920772 +1083,698299678,98671 +1858,698305474,9770 +2207,698312347,1108 +1479,698315881,36238 +2490,698321130,4 +896,698324343,166785 +717,698330221,263066 +2348,698331388,95 +275,698338524,1319382 +714,698342159,263672 +582,698345556,394453 +1991,698346318,5349 +816,698346954,200307 +675,698349125,291745 +296,698350371,1212148 +287,698353083,1243536 +795,698356304,213061 +112,698361257,3342894 +1401,698363063,43927 +1136,698364331,86547 +1215,698365960,70108 +2098,698368493,2802 +691,698373265,280783 +1821,698383417,11272 +1892,698384662,8237 +1721,698384726,17412 +1452,698385619,38157 +1602,698388041,25456 +1175,698388578,77795 +1985,698403524,5441 +881,698416970,173964 +937,698420691,147460 +365,698442418,836207 +1317,698457392,55719 +98,698462285,3554796 +359,698477883,860871 +1320,698485268,55429 +575,698486277,403780 +748,698488800,243532 +633,698489071,342224 +1591,698511920,26022 +1279,698519133,59737 +911,698526036,158094 +650,698540331,321134 +1498,698545981,34411 +1937,698548451,6750 +423,698557087,680465 +1422,698562644,40626 +2172,698580310,1679 +2082,698582741,3123 +156,698585370,2432562 +20,698588535,16276092 +561,698588812,416536 +1020,698589866,119911 +2287,698592565,377 +1942,698592907,6560 +669,698599365,297218 +479,698604229,555857 +1575,698605444,27922 +218,698613394,1724159 +573,698620694,405976 +1505,698623373,33578 +550,698625834,440279 +2121,698630140,2378 +318,698630507,1061795 +277,698635863,1313586 +297,698641566,1200161 +1793,698647624,12680 +427,698650301,672762 +2230,698650509,793 +965,698652014,137991 +2292,698652171,340 +2478,698654164,10 +1386,698655576,46338 +1803,698655859,12184 +25,698659980,12585611 +2227,698661697,806 +741,698663855,246835 +1693,698666810,19311 +1700,698667255,18855 +1242,698670524,65641 +2246,698677650,650 +1885,698680806,8649 +2198,698687597,1257 +1366,698687678,48823 +593,698692141,386000 +1905,698693697,7883 +1994,698696420,5311 +1625,698701911,24339 +1390,698702991,45706 +140,698704189,2745407 +1292,698704875,58563 +1311,698723158,56242 +1680,698736778,19902 +1750,698738810,15757 +1381,698739350,47439 +1459,698748891,37610 +1573,698749311,28058 +1747,698757439,16014 +2005,698757487,4984 +1945,698766369,6438 +1855,698766454,9854 +1397,698768565,44487 +115,698769107,3215206 +2388,698776998,28 +854,698783754,184930 +1579,698785538,27359 +1660,698786826,21625 +79,698789253,4326401 +2083,698791053,3087 +2368,698795589,50 +2393,698798180,25 +1812,698806018,11724 +23,698807570,14262032 +441,698811281,645083 +2248,698817235,639 +61,698823542,5640061 +701,698826986,269983 +21,698829590,15954032 +2506,698830638,1 +510,698837993,502449 +343,698842996,909796 +1490,698845189,34971 +1214,698848067,70156 +1046,698848373,109223 +339,698849979,926122 +2276,698855681,437 +528,698867446,483039 +401,698867483,750341 +417,698879638,703289 +152,698881022,2538293 +1009,698884287,123068 +120,698895940,3177177 +1141,698897472,86104 +2491,698897841,3 +1388,698905177,46003 +1598,698906190,25565 +2067,698906643,3530 +182,698908184,2049057 +1093,698908912,95452 +1813,698911639,11674 +2432,698913618,10 +215,698916948,1757593 +1958,698926585,6055 +2229,698931404,793 +2069,698931998,3458 +1654,698934729,21817 +763,698938264,234404 +2464,698941586,10 +845,698946155,186724 +1079,698957176,100183 +289,698962117,1235620 +60,698971484,5706643 +637,698983867,339232 +436,698987598,647814 +283,698993706,1285969 +1328,698996782,54788 +968,698998882,135573 +1333,698999105,54026 +1264,699004723,61262 +2085,699006683,3027 +1903,699007059,7894 +2089,699011415,2946 +725,699016994,259639 +1726,699019249,17159 +1778,699025262,13657 +1912,699027000,7552 +1918,699034094,7438 +991,699037086,126159 +1534,699039013,30784 +2373,699040431,41 +1082,699054327,98715 +155,699054373,2443294 +2434,699057459,10 +2469,699058253,10 +253,699065686,1460733 +1696,699066118,19019 +2443,699069151,10 +416,699072129,706598 +1201,699075351,72688 +332,699083129,984577 +462,699086436,593183 +710,699088529,265549 +476,699088769,561534 +1515,699091553,32444 +19,699097885,16414227 +8,699098531,22806985 +808,699099385,205501 +1732,699099811,16873 +1565,699111651,28597 +1417,699117178,41266 +744,699117992,246113 +579,699121671,402035 +874,699121777,176539 +1752,699126484,15506 +2320,699126490,209 +1546,699127156,29855 +522,699127546,491648 +2331,699131849,156 +745,699139964,245477 +1278,699144886,59805 +32,699146580,10896710 +2184,699146876,1462 +2498,699147813,2 +1692,699148121,19468 +950,699150527,143272 +450,699155679,622220 +2077,699156456,3284 +1361,699167148,49269 +1800,699169828,12463 +310,699170684,1097258 +1661,699176234,21510 +53,699189792,6205667 +1467,699191449,36951 +1642,699191455,22923 +867,699191464,180564 +1069,699194766,102369 +864,699195358,181313 +948,699196829,143740 +323,699199084,1037005 +860,699201278,182870 +300,699204478,1164946 +951,699208929,143192 +2041,699212614,3970 +661,699213622,308733 +892,699238479,167679 +2092,699238678,2887 +814,699244334,201872 +62,699246032,5583593 +134,699250676,2905048 +1641,699251542,23020 +2494,699254631,2 +164,699262350,2314003 +660,699265922,309057 +1880,699266530,8802 +198,699269923,1896108 +1665,699272633,21120 +1016,699272880,122037 +426,699273451,676415 +1211,699277039,70907 +430,699278528,666235 +385,699280514,790025 +2436,699282717,10 +1169,699283869,79516 +2241,699284822,732 +1209,699285160,71340 +1326,699287032,54827 +224,699298370,1675003 +114,699299123,3259775 +707,699301458,267120 +207,699304554,1824092 +1248,699308637,63758 +1157,699316421,81870 +1449,699319395,38519 +1372,699320017,48100 +363,699321518,844196 +876,699323302,175561 +1229,699323781,67727 +1193,699326171,74273 +7,699333701,27764621 +1476,699336679,36257 +383,699336777,794105 +2496,699339594,2 +213,699341889,1787465 +13,699342219,18919038 +1910,699343887,7666 +1153,699346267,82785 +1863,699346280,9650 +740,699347951,247629 +2146,699351046,2003 +1662,699351301,21382 +200,699355601,1883590 +2222,699356102,854 +1029,699356968,116344 +1,699364813,60221467 +749,699366937,242627 +5,699368887,38812934 +412,699372829,715187 +731,699373225,254337 +1584,699373599,26525 +1480,699375903,36235 +1234,699377151,66497 +1772,699377401,13968 +931,699379895,149757 +723,699380607,260373 +1164,699380621,80478 +93,699382126,3711282 +1603,699383121,25442 +75,699383279,4681464 +408,699385139,730120 +759,699390457,235778 +1233,699391409,66890 +160,699393742,2368728 +1639,699393759,23186 +1695,699396429,19157 +2445,699401083,10 +1378,699402816,47710 +1462,699405877,37135 +266,699406247,1392482 +1387,699406750,46006 +78,699406776,4420245 +239,699408669,1594207 +1132,699409420,87995 +1121,699413040,90702 +243,699413581,1546850 +1586,699419851,26437 +1540,699421735,30176 +1085,699423167,97885 +413,699424741,712454 +395,699425709,768631 +2398,699428898,22 +726,699429153,258401 +1204,699429335,72376 +623,699431255,352558 +475,699432672,561877 +696,699433558,275453 +1612,699438389,25041 +1350,699441366,51402 +10,699443920,21069128 +533,699448276,475479 +2377,699448843,39 +1808,699449946,11922 +2280,699451338,418 +2278,699456288,423 +1881,699469600,8802 +1760,699470220,14803 +1526,699471829,31439 +2407,699477624,20 +432,699478692,659466 +1217,699483429,69832 +76,699485250,4677497 +1043,699488108,111628 +2481,699490365,6 +18,699491076,16471367 +2218,699491924,899 +1708,699493750,18260 +175,699494480,2107729 +890,699494488,169239 +1679,699498602,19990 +1124,699501322,90225 +1545,699503079,29953 +1746,699508363,16108 +150,699509239,2552237 +357,699509284,874078 +1357,699510045,49928 +466,699510259,571324 +1805,699511295,12134 +2164,699511370,1792 +24,699513260,13375496 +1006,699516250,123787 +1561,699516268,28683 +1581,699518384,27327 +2364,699518454,52 +1257,699520575,62379 +1762,699523631,14783 +1921,699524362,7275 +1681,699524891,19902 +1187,699530673,75693 +1588,699541376,26368 +2343,699542874,107 +1563,699543968,28615 +515,699545762,497108 +1570,699545975,28324 +1300,699546317,57682 +210,699548295,1799870 +570,699550876,407068 +2257,699551148,561 +228,699552859,1663559 +1761,699554427,14796 +1744,699556684,16218 +461,699557165,594814 +1321,699560327,55227 +118,699562182,3186252 +903,699562874,164644 +1636,699567608,23311 +2202,699569800,1152 +790,699573053,217860 +1502,699574408,33756 +1391,699576407,45472 +1050,699576978,107763 +1371,699578606,48145 +326,699580120,1007637 +1032,699583677,115243 +1876,699588526,9046 +608,699589540,368909 +505,699590236,509942 +1711,699595556,17800 +604,699598396,377011 +455,699598425,605326 +2427,699598671,13 +2423,699598764,13 +2267,699600167,517 +378,699600855,800627 +1482,699603116,36118 +929,699604515,150336 +244,699605333,1543124 +2193,699609445,1313 +506,699611673,507543 +2305,699613884,261 +2059,699614027,3642 +1932,699614821,6879 +2429,699618326,12 +851,699620730,185252 +1448,699621601,38565 +1867,699622781,9533 +1227,699622958,68004 +1383,699627771,46954 +1766,699628084,14446 +2004,699630110,4998 +1179,699632387,77126 +2295,699639001,326 +1374,699639005,47862 +679,699639122,287177 +646,699641777,327110 +1238,699642954,66255 +895,699644054,166843 +770,699644448,232766 +632,699644852,342816 +1860,699650981,9702 +1735,699651260,16663 +1861,699655364,9693 +2134,699656989,2155 +1703,699657242,18737 +485,699657450,549903 +939,699658023,147128 +2054,699659708,3726 +1098,699660539,94670 +1955,699662232,6257 +2220,699664910,887 +987,699665031,128346 +384,699665152,792455 +2387,699668392,28 +984,699671197,128715 +1771,699671454,14081 +2038,699672060,3978 +2317,699673236,222 +530,699674355,481283 +687,699676005,282621 +855,699677277,184774 +1037,699677325,114841 +605,699678739,375134 +651,699678801,320318 +2254,699679662,604 +2454,699682780,10 +985,699684062,128672 +281,699684693,1296895 +2283,699685533,395 +2390,699687328,26 +2458,699688180,10 +627,699693687,344532 +1802,699694284,12317 +1275,699695167,60029 +1369,699697136,48635 +42,699697558,7703135 +315,699698079,1072621 +46,699698253,6797088 +2411,699698745,17 +2048,699699422,3848 +2513,699699563,1 +35,699699601,9346260 +1406,699699650,43218 +1308,699703295,56371 +778,699703642,223963 +119,699703782,3186130 +508,699704542,503252 +1377,699705601,47751 +501,699706047,518734 +1245,699706955,64101 +1829,699709160,10948 +27,699710633,11809284 +826,699711706,195368 +1219,699711723,69437 +1818,699711926,11435 +221,699712422,1700606 +988,699713515,127113 +2217,699716785,914 +1147,699718269,85092 +2341,699720374,117 +144,699722599,2665172 +419,699723284,699023 +1116,699724603,91650 +12,699725436,19690461 +2056,699726660,3706 +1877,699728159,8984 +2234,699728266,760 +2272,699729211,472 +1950,699730399,6391 +337,699730714,932925 +598,699730998,381311 +84,699733098,4056320 +654,699733501,314047 +219,699734152,1713237 +1272,699734445,60327 +933,699734795,149003 +1078,699735020,100390 +4,699736927,40358391 +49,699736959,6667170 +847,699737356,186171 +1073,699738350,100933 +2010,699739523,4610 +2009,699739891,4647 +2359,699741694,64 +2284,699742054,390 +794,699744012,214603 +73,699744766,4693997 +872,699745265,177696 +2344,699749184,102 +743,699751062,246192 +2306,699752402,254 +1342,699753640,52425 +2110,699753863,2542 +2414,699754856,15 +1909,699755859,7690 +57,699756210,5872633 +941,699758688,146384 +377,699759128,801545 +1828,699760767,10960 +26,699761749,11918805 +1840,699763225,10459 +1533,699765601,30795 +653,699765971,315881 +2074,699774694,3358 +2208,699776412,1091 +885,699777234,170277 +976,699777372,131329 +472,699777556,563099 +908,699778028,160828 +1411,699778867,41863 +1789,699779038,13094 +1415,699780721,41423 +1852,699780873,10008 +433,699781605,658831 +9,699781762,22675493 +562,699783063,416148 +2392,699783641,25 +187,699783765,1997648 +1049,699784536,108683 +2068,699785141,3515 +477,699785935,558964 +1316,699788305,55774 +1447,699789609,38606 +2058,699790202,3686 +901,699791054,165635 +1375,699792747,47770 +1798,699794286,12528 +1657,699794421,21669 +1774,699794720,13955 +700,699794765,270011 +442,699795378,637875 +2192,699795698,1320 +842,699796330,187448 +1103,699796630,93862 +1981,699797065,5620 +507,699797252,505743 +304,699797508,1141082 +1975,699797805,5759 +1437,699798611,39058 +264,699799629,1397244 +961,699800377,138840 +706,699800992,267507 +1944,699802012,6494 +151,699803070,2549925 +2166,699803189,1743 +1865,699804790,9585 +1872,699805379,9222 +1664,699805839,21150 +2300,699811133,298 +1804,699811844,12181 +1854,699812007,9924 +603,699812351,378930 +1340,699812571,53090 +818,699812653,198897 +1477,699812869,36243 +324,699814283,1026576 +773,699816699,229009 +1775,699818726,13912 +169,699820572,2214059 +268,699821629,1388376 +910,699821755,158658 +1816,699823365,11520 +1884,699823490,8701 +640,699825089,336160 +1017,699825236,121840 +2355,699825977,67 +2297,699826996,305 +330,699827112,992017 +1684,699828338,19740 +821,699828442,197476 +906,699828685,163223 +2136,699829494,2135 +1097,699829916,94748 +1849,699829975,10061 +1585,699830255,26496 +2216,699831193,914 +1263,699831366,61296 +844,699831860,186811 +480,699832431,554941 +801,699832463,210034 +149,699833171,2565869 +355,699834004,876737 +2159,699835178,1828 +1758,699837483,14911 +285,699837826,1265509 +2374,699840189,40 +1319,699841959,55536 +1677,699842853,20066 +2353,699843389,74 +636,699843417,340334 +2500,699843936,2 +1834,699844314,10752 +1074,699844594,100826 +320,699844727,1059806 +2470,699844880,10 +1318,699845400,55700 +247,699846892,1528523 +31,699849210,11031147 +411,699850967,718390 +1548,699851345,29772 +1261,699851426,61636 +686,699851427,283161 +1197,699852080,73479 +1832,699853308,10881 +997,699854312,125197 +980,699854484,130193 +2016,699854830,4548 +2095,699855277,2854 +2151,699855647,1902 +386,699856586,789342 +956,699856830,141720 +208,699856962,1817378 +404,699857387,746571 +1022,699858313,119545 +252,699859013,1473883 +2012,699860651,4596 +525,699861004,486475 +2288,699862278,368 +709,699863708,266099 +1145,699864013,85307 +214,699866225,1778854 +2289,699866271,353 +444,699866510,636124 +1131,699867602,88006 +2182,699867743,1480 +44,699868002,7192219 +2360,699868399,64 +1419,699868739,41037 +132,699869682,2943596 +353,699870198,879222 +478,699870923,556010 +1589,699872032,26186 +2466,699872401,10 +737,699872616,250240 +1948,699873141,6401 +685,699875132,283357 +294,699875213,1217792 +1946,699875650,6425 +848,699876345,186055 +1007,699876746,123770 +1352,699878150,50643 +556,699878511,432071 +733,699879113,252299 +572,699879556,406752 +622,699879927,354767 +1056,699880701,105606 +804,699883079,208367 +1040,699883836,112775 +2178,699884788,1572 +1963,848882397,5949 +2408,848882577,20 +1251,848883237,63071 +1722,848883542,17406 +278,848883684,1312678 +1310,848883791,56303 +262,848886056,1416603 +1407,848886200,42457 +946,848886870,144443 +72,848886973,4722290 +463,848887199,584016 +2263,848888787,539 +452,848889556,609623 +1640,848889850,23163 +1574,848890012,28000 +1866,848892804,9541 +1455,848895676,38033 +917,848896434,156800 +584,848896948,392783 +938,848897972,147398 +1971,848899726,5803 +1791,848901396,12973 +789,848902592,218581 +422,848902744,682537 +1521,848903260,31764 +2132,848903690,2205 +124,848905770,3103516 +2412,848905784,17 +2446,848907771,10 +1469,848908144,36806 +2474,848909292,10 +758,848909464,235957 +435,848910122,647879 +775,848912265,225707 +729,848912772,254874 +837,848912937,190292 +458,848913030,600811 +916,848913037,156977 +38,848913998,8684653 +1848,848914120,10072 +167,848914661,2244365 +1630,848915032,23853 +590,848915531,387305 +17,848915730,17032497 +811,848915956,203724 +1239,848916779,65933 +1035,848917127,114991 +2245,848917401,675 +856,848917570,184738 +2094,848918262,2865 +238,848918380,1597838 +2303,848919959,264 +802,848921536,208966 +517,848921793,494414 +1255,848921861,62460 +1699,848922118,18950 +2195,848922517,1286 +2468,848922958,10 +1621,848923540,24410 +161,848924219,2341825 +2057,848924648,3692 +546,848925840,453593 +2322,848926070,201 +1842,848926293,10303 +535,848927262,471726 +1188,848928486,75385 +1028,848928624,117209 +136,848930111,2835359 +926,848930498,151017 +2457,848930898,10 +1836,848931321,10691 +2032,848932115,4152 +1724,848932879,17321 +928,848933470,150596 +390,848934935,774475 +1144,848935020,85879 +457,848935389,602145 +2435,848935732,10 +567,848936053,408983 +2463,848936229,10 +1929,848937248,6936 +1344,848937780,52299 +1648,848939131,22476 +2337,848939203,138 +1900,848940223,8010 +2073,848942587,3364 +1739,848942618,16516 +2332,848942734,152 +1835,848942847,10697 +396,848942968,764080 +456,848945529,603130 +766,848946608,233810 +2014,848946700,4569 +1155,848949271,81959 +1489,848949597,35268 +2116,848950255,2465 +2279,848952556,422 +1890,848952566,8298 +1091,848953066,95809 +1757,848953472,15058 +2480,848954163,7 +957,848954236,141428 +833,848955311,193198 +143,848955783,2685989 +692,848956013,280700 +328,848956513,1002004 +28,848956765,11533675 +1140,848958111,86182 +788,848958556,219395 +1878,848959231,8897 +1259,848960061,61849 +502,848963236,515345 +2294,848963521,328 +1382,848964811,47157 +2357,848965531,65 +491,848966521,534827 +246,848967422,1532391 +65,848967710,5311671 +1824,848968427,11094 +2410,848969160,18 +2433,848969313,10 +2071,848970357,3414 +2011,848971079,4609 +1517,848973715,32305 +2148,848973968,1969 +1645,848974611,22665 +1431,848974774,39543 +704,848975192,268270 +473,848976034,562758 +2017,848977203,4530 +977,848977412,131203 +1117,848977600,91397 +877,848977649,175400 +1496,848977748,34469 +1596,848978052,25668 +2312,848978284,231 +45,848978297,6928339 +2086,848978534,3024 +186,848978903,2004353 +269,848980237,1380554 +871,848981244,178864 +2169,848981523,1714 +1137,848981726,86508 +1924,848982634,7174 +2340,848982635,124 +1084,848984022,98155 +165,848985692,2277963 +624,848986287,351190 +807,848986638,205635 +884,848987051,170400 +1712,848987695,17735 +887,848988401,169682 +963,848988744,138535 +1601,848989855,25496 +527,848993505,485136 +2201,848993769,1169 +1769,848995242,14270 +1111,848995291,92382 +2033,848995446,4104 +1304,848995478,57312 +2224,848998530,847 +1256,848999448,62439 +1659,848999518,21637 +1516,848999671,32400 +1353,849000135,50510 +2078,849001277,3276 +1635,849001572,23319 +159,849001724,2376918 +735,849002091,251646 +568,849002796,408463 +1068,849004274,102788 +2171,849004461,1688 +712,849004759,264518 +1833,849005658,10790 +1512,849005829,32587 +958,849006011,140708 +157,849006145,2408894 +345,849006385,898707 +1380,849006412,47532 +1995,849009623,5287 +174,849009945,2131721 +212,849010255,1791108 +494,849010386,527682 +2233,849010865,780 +197,849012521,1913407 +1529,849012843,31209 +313,849012985,1080956 +1841,849013126,10328 +321,849014147,1053105 +1435,849014413,39362 +15,849014922,18389178 +1402,849015875,43717 +1618,849017820,24499 +1622,849017894,24404 +1047,849018239,109087 +1687,849018442,19642 +1158,849018778,81816 +2126,849018780,2269 +1831,849019785,10884 +1569,849020094,28376 +2139,849020212,2109 +1071,849020667,101537 +1354,849021566,50075 +1280,849022063,59734 +2273,849022649,463 +1143,849023078,86048 +1198,849023212,73446 +192,849023540,1963959 +2062,849024152,3604 +1518,849024208,32280 +2093,849024333,2874 +1271,849025083,60347 +1672,849025558,20237 +66,849026145,5091924 +524,849027025,488758 +952,849027653,142923 +600,849027712,380521 +849,849028071,185468 +327,849028088,1002140 +2451,849030062,10 +1869,849030086,9312 +1072,849030226,101007 +314,849030643,1077371 +642,849031818,331975 +209,849031846,1807307 +2173,849032027,1670 +179,849032059,2058644 +602,849032413,380349 +2138,849032414,2122 +523,849032741,489013 +1370,849034666,48547 +540,849034882,460594 +2442,849034917,10 +1925,849035447,7145 +693,849035525,280453 +564,849035905,413309 +2512,849036055,1 +1277,849036262,59825 +168,849037407,2225789 +41,849037469,7724164 +1054,849037699,106411 +834,849038195,191730 +2299,849038572,298 +2188,849038597,1406 +2087,849038985,2996 +1324,849039310,55033 +756,849040142,236841 +139,849040194,2755361 +1524,849040462,31721 +280,849041192,1297981 +2262,849042461,542 +970,849043776,134454 +1057,849044705,105586 +936,849044961,147787 +288,849045047,1239122 +791,849045675,217802 +194,849045915,1957340 +2187,849046206,1409 +1710,849046232,18031 +2099,849047044,2800 +1274,849047233,60107 +284,849048112,1281838 +982,849048216,129194 +2394,849048241,24 +557,849048455,427735 +631,849048552,342840 +1327,849048562,54806 +1690,849048734,19542 +1038,849048867,113445 +282,849049045,1289083 +680,849049155,287016 +2475,849049288,10 +1751,849050087,15564 +1212,849050191,70827 +678,849050734,288160 +1061,849050849,104505 +1420,849051363,40999 +216,849051436,1752217 +2431,849051731,11 +1414,849051976,41454 +2167,849052289,1734 +141,849052549,2744723 +932,849052588,149021 +2311,849053122,240 +762,849053868,234522 +1045,849054582,109387 +543,849054951,456243 +1607,849055181,25301 +1112,849055309,92068 +1048,849055425,108987 +1620,849055527,24417 +751,849055553,242429 +1669,849056475,20311 +205,849056744,1832232 +681,849056892,286426 +1959,849057176,6038 +563,849057450,414190 +199,849057572,1886666 +110,849057655,3400530 +596,849057764,383279 +799,849058207,211115 +1041,849059331,112602 +1220,849059457,69002 +59,849059491,5803221 +1986,849060099,5431 +2352,849060357,77 +86,849060446,3944607 +22,849061374,14367037 +220,849061406,1712187 +1740,849061417,16480 +1977,849062546,5725 +1616,849062920,24527 +166,849063605,2261037 +1244,849063793,64158 +342,849063849,910548 +784,849063932,221569 +2329,849064084,170 +1438,849064087,39006 +292,849064614,1219468 +972,849064715,133533 +37,849064752,8958689 +1508,849065566,33162 +2112,849065606,2517 +1643,849065697,22864 +2052,849065829,3750 +2307,849066035,252 +1210,849066044,70970 +670,849066125,296816 +785,849066618,221074 +2417,849066808,14 +1988,849066849,5385 +1400,849067079,44002 +1783,849067192,13485 +1000,849067216,124790 +286,849068108,1252357 +1011,849068662,123016 +2080,849069010,3203 +721,849069022,261800 +1567,849070220,28548 +290,849070335,1233963 +1895,849070464,8146 +1935,849070736,6769 +1559,849070812,28981 +942,849070946,146263 +586,849071545,392443 +1956,849072846,6224 +921,849072873,153960 +2501,849072919,2 +625,849073156,350774 +1820,849073314,11334 +2047,849074508,3869 +1262,849075442,61308 +817,849075836,199864 +1520,849076187,31828 +148,849076515,2598655 +676,849076678,290430 +177,849076810,2080263 +2502,849076953,2 +1962,849077481,5970 +1199,849078086,73094 +387,849078297,788677 +145,849078498,2654505 +2036,849078942,4031 +2328,849079977,171 +451,849080011,613508 +1337,849080118,53486 +1756,849080197,15247 +2029,849080260,4257 +1810,849080702,11760 +1427,849081284,40337 +1347,849081641,51845 +2382,849081869,30 +1240,849082154,65817 +1951,849082580,6373 +1306,849082839,56580 +394,849082848,769329 +2258,849083293,549 +1266,849083294,61128 +274,849083501,1331512 +2336,849083534,140 +446,849083725,630756 +753,849084005,239515 +1656,849084066,21715 +880,849084474,174412 +82,849084740,4153987 +74,849084911,4688957 +551,849084920,438105 +173,849084985,2133260 +1928,849085160,7006 +1329,849085293,54786 +1060,849085371,104598 +374,849085605,813655 +697,849085764,274491 +1889,849085908,8371 +1729,849085961,17079 +2301,849086132,292 +1025,849086357,117898 +193,849086491,1962691 +813,849086693,203150 +1067,849086783,102821 +662,849086817,306349 +699,849086925,271503 +2400,849087149,21 +421,849087581,689048 +291,849087742,1232876 +2197,849087786,1259 +1293,849087855,58536 +1593,849087895,25951 +1088,849088101,97286 +1463,849088199,37080 +92,849088243,3740275 +492,849088515,529986 +1850,849088639,10044 +414,849088880,709380 +1715,849088882,17693 +752,849088923,241738 +1243,849089207,64179 +2324,849089323,199 +50,849089459,6639827 +1594,849089499,25905 +1360,849089512,49747 +2179,849089601,1518 +2157,849089654,1846 +87,849089881,3836786 +188,849090130,1977769 +990,849090187,126326 +2437,849090573,10 +1501,849090765,33866 +2266,849090846,520 +1968,849090954,5873 +99,849091060,3512699 +146,849091084,2649921 +1706,849091105,18623 +71,849091769,4845436 +1010,849091866,123026 +1051,849091897,107390 +162,849091899,2339976 +257,849091947,1444331 +1871,849091972,9245 +354,849092109,878875 +1249,849092185,63567 +930,849092244,150249 +352,849092309,883476 +2015,849092639,4566 +1118,849092685,91305 +189,849092723,1973479 +905,849092769,163428 +581,849092827,395770 +170,849092978,2211817 +858,849093003,183664 +554,849093155,435227 +1794,849093353,12669 +63,849093422,5506114 +765,849093426,234055 +757,849093576,236327 +955,849093742,142349 +894,849093771,167153 +381,849093875,794428 +739,849093924,247902 +2204,849094006,1144 +1004,849094023,124354 +1738,849094067,16518 +1392,849094111,45087 +542,849094147,457389 +2291,849094355,343 +245,849094586,1534595 +1080,849094597,100050 +497,849094603,522598 +677,849094609,289601 +548,849094653,443820 +1543,849094688,30067 +609,849094759,368227 +1523,849094789,31743 +1745,849094972,16147 +102,849095014,3510084 +348,849095068,894916 +962,849095219,138712 +1678,849095227,20044 +180,849095240,2058221 +718,849095324,262819 +1549,849095376,29731 +2298,849095430,299 +1514,849095435,32475 +1686,849095446,19692 +1634,849095448,23321 +147,849095482,2625569 +1281,849095488,59670 +1674,849095509,20160 +1838,849095599,10506 +1355,849095601,50016 +1898,849095642,8050 +1967,849095771,5875 +1441,849095778,38906 +2203,849095800,1150 +1566,849095814,28554 +1608,849095825,25217 +732,849095829,253558 +1323,849095879,55090 +349,849095948,892648 +135,849095959,2889524 +1183,849095963,76177 +1341,849095992,52894 +1572,849096041,28193 +1177,849096102,77528 +2043,849096123,3961 +341,849096182,920638 +688,849096215,282312 +1138,849096265,86351 +496,849096285,523828 +367,849096310,828990 +1611,849096334,25095 +2405,849096341,20 +1528,849096346,31244 +56,849096354,6098139 +495,849096383,527556 +1339,849096399,53453 +1443,849096435,38840 +372,849096454,821507 +109,849096458,3405783 +248,849096544,1523826 +232,849096547,1642074 +940,849096592,147032 +891,849096594,168408 +127,849096606,3034492 +1947,849096631,6410 +301,849096649,1152616 +538,849096768,462218 +322,849096856,1044988 +368,849096874,826802 +229,849096882,1660170 +1322,849096891,55102 +764,849096944,234103 +116,849096945,3206856 +1151,849096954,83814 +682,849096958,286142 +664,849096972,302335 +578,849096977,402600 +272,849096979,1337029 +1472,849096990,36443 +1125,849097002,90026 +1856,849097006,9849 +1424,849097103,40561 +2252,849097123,607 +379,849097175,799545 +2127,849097220,2260 +1960,849097312,6027 +1434,849097357,39375 +1297,849097370,58088 +2196,849097373,1270 +1090,849097386,97005 +1814,849097445,11658 +346,849097614,896854 +995,849097620,125651 +1503,849097681,33675 +960,849097716,139934 +1127,849097729,89907 +656,849097737,313271 +1034,849097792,115120 +781,849097793,222984 +645,849097799,328720 +1927,849097837,7119 +440,849097898,645389 +1423,849097924,40562 +695,849097937,275783 +639,849097954,337897 +362,849097981,848633 +1012,849098109,122932 +1705,849098132,18680 +1555,849098136,29188 +1254,849098159,62795 +1171,849098162,78599 +1176,849098192,77774 +713,849098200,263857 +927,849098217,150804 +587,849098265,392416 +626,849098299,346476 +591,849098324,386124 +1939,849098326,6700 +1283,849098374,59434 +830,849098387,193931 +447,849098400,629870 +797,849098423,212548 +2049,849098476,3844 +2135,849098477,2146 +571,849098516,406811 +560,849098557,421197 +1564,849098592,28607 +2255,849098607,589 +111,849098628,3345807 +922,849098648,153075 +2122,849098667,2377 +67,849098688,5024038 +1759,849098693,14903 +231,849098695,1653296 +1159,849098724,81040 +500,849098727,520998 +2007,849098731,4805 +2115,849098766,2470 +1408,849098769,42447 +512,849098774,498812 +356,849098782,875364 +1936,849098784,6751 +431,849098791,663077 +2020,849098822,4509 +1868,849098827,9469 +944,849098848,145901 +249,849098966,1517571 +2379,849098993,34 +89,849099021,3797508 +1993,849099054,5342 +347,849099105,896468 +1541,849099131,30175 +674,849099138,293035 +1110,849099141,92621 +836,849099145,190905 +260,849099160,1430188 +998,849099258,125081 +107,849099276,3422165 +2090,849099280,2937 +2105,849099342,2640 +2000,849099391,5189 +1809,849099422,11792 +1998,849099434,5261 +303,849099463,1143022 +227,849099505,1669982 +2107,849099517,2632 +1461,849099541,37377 +615,849099544,361712 +820,849099557,197678 +2101,849099558,2742 +1100,849099601,94244 +694,849099640,279462 +1839,849099660,10474 +1887,849099689,8484 +104,849099696,3496033 +448,849099785,626275 +1123,849099797,90641 +1688,849099804,19628 +574,849099815,404279 +1236,849099859,66449 +1087,849099864,97343 +595,849099876,383398 +1485,849099887,35688 +2066,849099924,3534 +841,849099932,187717 +1389,849099955,45745 +201,849099965,1882017 +2251,849100006,615 +719,849100016,262679 +434,849100034,648704 +2215,849100082,984 +1653,849100083,21886 +2065,849100089,3581 +2131,849100134,2245 +1286,849100149,59204 +2232,849100162,780 +2174,849100199,1650 +1343,849100211,52425 +511,849100228,501343 +2109,849100246,2579 +1021,849100262,119785 +1891,849100288,8264 +1426,849100289,40375 +514,849100323,497289 +267,849100349,1389187 +1253,849100352,62892 +1018,849100354,120625 +1483,849100383,36108 +2325,849100399,195 +1142,849100406,86066 +2027,849100439,4333 +883,849100463,171260 +780,849100496,223069 +1632,849100584,23499 +659,849100611,309505 +1797,849100612,12550 +271,849100615,1339084 +1291,849100656,58661 +900,849100680,166311 +1676,849100743,20114 +800,849100744,210497 +2362,849100760,54 +2152,849100782,1898 +1970,849100787,5807 +2240,849100796,744 +393,849100811,769844 +529,849100814,482585 +2226,849100815,807 +1538,849100827,30265 +2104,849100877,2649 +1089,849100882,97043 +1689,849100891,19583 +469,849100994,565298 +1587,849101018,26407 +1298,849101029,58021 +1031,849101083,115474 +832,849101092,193600 +1230,849101102,67519 +870,849101104,179253 +2102,849101108,2711 +338,849101116,929257 +815,849101132,201298 +1717,849101135,17634 +2210,849101144,1080 +902,849101148,165276 +1287,849101162,58961 +2231,849101177,790 +647,849101186,325425 +1273,849101205,60298 +1133,849101224,87741 +1787,849101232,13355 +913,849101248,157598 +2070,849101268,3441 +1510,849101276,32896 +1965,849101284,5898 +1129,849101291,88713 +1403,849101293,43403 +1453,849101309,38129 +630,849101311,343399 +499,849101377,521348 +824,849101378,196272 +1445,849101382,38743 +978,849101391,131129 +2001,849101409,5064 +2200,849101443,1201 +1576,849101526,27759 +1478,849101578,36242 +823,849101579,197168 +1184,849101580,76122 +2253,849101581,606 +1092,849101604,95569 +2021,849101646,4462 +2380,849101647,32 +1499,849101652,34147 +1683,849101674,19823 +2213,849101694,1025 +2265,849101771,522 +1919,849101814,7348 +1195,849101845,73557 +1691,849101871,19476 +907,849101881,160854 +1225,849101884,68312 +211,849101889,1791459 +1409,849101893,42366 +1953,849101945,6339 +1930,849101947,6924 +1980,849101962,5625 +2391,849102037,26 +222,849102068,1695323 +454,849102092,608552 +2125,849102094,2328 +1475,849102108,36300 +2128,849102143,2253 +2236,849102150,756 +2483,849102302,5 +1943,849102336,6532 +819,849102464,198442 +2150,849102480,1936 +2492,849102505,3 +606,849102573,373291 +2453,849102985,10 +1481,849103148,36219 +2223,849103237,848 +539,849103456,461971 +2413,849103595,16 +1454,849103688,38045 +1578,849103947,27678 +1376,849104010,47751 +1108,849104100,92793 +708,849104286,266901 +983,849104297,129114 +552,849104328,436206 +1685,849104356,19715 +537,849104491,467385 +545,849104546,454914 +1883,849104633,8711 +1996,849104814,5278 +2194,849104818,1296 +2346,849104855,95 +1558,849105071,29010 +2418,849105072,14 +1196,849105102,73536 +2497,849105201,2 +1764,849105232,14534 +2316,849105408,224 +1941,849105417,6585 +1780,849105420,13551 +2186,849105463,1440 +2156,849105613,1853 +1901,849105880,7952 +1899,849105954,8020 +1694,849106210,19173 +1763,849106303,14740 +2137,849106316,2128 +754,849106340,237913 +1456,849106383,38009 +2211,849106420,1071 +2145,849106601,2032 +1404,849106612,43358 +2381,849106698,30 +1720,849106785,17466 +2467,849106828,10 +2030,849106971,4209 +2449,849107104,10 +2406,849107188,20 +1755,849107426,15425 +2181,849107507,1497 +2155,849107532,1878 +2511,849107799,1 +2367,849107881,50 +1651,849108007,21988 +2356,849108053,66 +1237,849108148,66328 +2315,849108157,224 +1027,849108328,117355 +2404,849108339,20 +2183,849108350,1464 +2514,849108352,1 +202,849108623,1846329 +2238,849108762,750 +2031,849108780,4154 +1436,849108784,39351 +2419,849108934,14 +2386,849108971,28 +1580,849108991,27341 +2282,849109010,406 +1213,849109072,70777 +2471,849109116,10 +1731,849109152,16909 +1126,849109413,89934 +1015,849109507,122121 +2147,849109521,1996 +2185,849109637,1454 +2321,849109795,208 +2225,849109885,817 +1748,849109935,15916 +2275,849109966,439 +2002,849110304,5001 +2302,849110310,282 +2375,849110365,40 +2371,849110380,43 +2440,849110382,10 +2504,849110571,1 +2472,849110622,10 +1853,849110644,9971 +2243,849110674,692 +1736,849110688,16623 +2339,849110916,127 +2403,849111050,20 +1365,849111196,48832 +2350,849111244,88 +2455,849111332,10 +2489,849111487,4 +2358,849111632,65 +1615,849111667,24609 +2296,849112029,306 +2482,849112033,6 +1770,849112050,14091 +2509,849112264,1 +2485,849112312,4 +1790,849112368,13027 +2039,849112369,3972 +2395,849112435,23 +2097,849112510,2831 +1902,849112774,7942 +2354,849112876,70 +1851,849112879,10029 +2190,849112887,1380 +2409,849112960,19 +2507,849113078,1 +2376,849113300,40 +2219,849113350,897 +2270,849113485,478 +2310,849113546,241 +2050,849113597,3798 +2397,849113603,22 +2268,849113673,512 +2461,849114022,10 +2244,849114033,678 +2444,849114112,10 +2175,849114119,1628 +2361,849114265,62 +2037,849114408,3985 +2430,849114445,12 +2372,849114450,42 +2347,849114477,95 +2476,849114502,10 +2383,849114683,30 +2425,849115254,13 +2499,849115431,2 +2420,849115994,13 +2008,849116221,4749 +2415,849116310,15 +2426,849116416,13 +1837,849116419,10573 +2385,849116679,28 +2505,849116980,1 +2473,849117143,10 +2260,849117196,549 +2424,849117240,13 +2120,849117242,2382 +2508,849117427,1 +2477,849117454,10 +2484,849117533,5 +1819,849117830,11384 +2448,849118262,10 +2438,849118462,10 +2180,849118786,1499 +2345,849119862,100 +2249,849119975,636 +2452,849119994,10 +2237,849120467,750 +2366,849122819,50 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_def_tribe.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_def_tribe.txt new file mode 100644 index 0000000..819e371 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_def_tribe.txt @@ -0,0 +1,259 @@ +3,1,223526800 +91,4,1123538 +2,7,263707452 +66,8,2442577 +78,12,1791593 +116,13,586792 +33,19,7654576 +73,24,1956734 +52,29,3536233 +56,31,3182520 +31,33,7967918 +15,35,30817347 +12,39,40733659 +4,47,123030942 +134,53,327110 +118,56,524360 +55,59,3236269 +44,68,5126302 +36,71,6435280 +119,72,506287 +22,77,18308136 +17,80,27243852 +18,85,26537205 +99,89,819602 +80,92,1704695 +61,96,2763830 +117,97,543960 +65,106,2461280 +19,112,24098705 +125,115,432992 +90,116,1158499 +63,117,2637247 +1,120,273736161 +77,125,1826223 +58,129,3053157 +102,134,788292 +74,147,1947811 +46,157,4950615 +225,159,7890 +159,176,141720 +130,185,370427 +245,187,1367 +16,194,29684725 +210,200,23556 +142,206,242627 +53,210,3465436 +67,211,2411001 +101,214,791197 +216,216,17866 +113,220,600370 +62,234,2733729 +172,236,91650 +201,255,34460 +60,256,2894965 +174,260,90324 +168,281,109440 +86,285,1306890 +227,287,7145 +248,290,539 +21,291,19185870 +38,301,6194947 +154,305,178401 +30,309,8632397 +153,317,182517 +110,319,638904 +141,336,263066 +233,339,5459 +104,355,760905 +189,365,52241 +13,369,38986612 +108,373,670466 +186,374,54720 +89,375,1195885 +47,377,4922975 +132,382,358375 +82,385,1615856 +200,397,36806 +41,412,5899052 +145,413,215538 +222,415,10061 +151,429,184774 +24,430,16198878 +71,432,2040203 +158,435,162816 +37,441,6276638 +175,443,82553 +150,451,188672 +32,452,7720010 +204,474,28931 +87,475,1224347 +234,503,5219 +64,517,2609213 +137,520,313250 +126,523,432982 +48,546,4265938 +49,548,4231284 +135,554,322767 +205,557,28691 +28,594,11702793 +162,597,131188 +96,607,979477 +152,624,182954 +179,625,66255 +224,626,8121 +144,633,218581 +169,636,100606 +97,647,893889 +93,651,1039357 +85,664,1352646 +11,666,48156459 +112,686,602468 +161,689,135903 +34,693,7123124 +20,722,22025239 +237,723,4610 +133,733,328377 +106,750,735077 +95,758,1010984 +136,766,322406 +70,778,2153298 +7,785,82715139 +75,786,1933759 +140,806,276830 +156,809,171639 +76,822,1928071 +8,830,71201569 +187,841,52998 +69,847,2171639 +5,862,101830140 +120,936,477351 +59,944,2957488 +207,945,27327 +173,963,90726 +209,965,25168 +81,989,1684724 +129,991,393721 +29,1023,11579200 +9,1039,60773093 +35,1040,6807047 +39,1052,6122989 +100,1058,811470 +68,1079,2218960 +105,1096,752682 +26,1108,13488903 +195,1127,46003 +10,1128,54938117 +124,1140,443639 +40,1148,5966245 +122,1161,473253 +192,1163,47907 +221,1166,11063 +214,1170,19000 +111,1209,635798 +43,1226,5640076 +51,1232,3588148 +178,1247,66890 +143,1258,223069 +229,1261,6352 +235,1275,4979 +123,1278,462546 +50,1293,3808303 +83,1312,1602570 +194,1317,46103 +149,1333,191510 +25,1336,15190900 +167,1338,113618 +199,1347,40822 +147,1357,197411 +92,1368,1114175 +181,1372,64564 +42,1376,5740497 +190,1389,51599 +98,1399,860657 +14,1411,36967078 +146,1416,204595 +84,1418,1398761 +202,1421,32137 +128,1423,401050 +223,1428,9859 +115,1431,587311 +109,1432,665488 +218,1448,16361 +103,1456,769792 +250,1460,381 +88,1466,1197564 +213,1470,20287 +131,1477,358545 +23,1480,17352076 +79,1483,1762582 +212,1484,22040 +211,1494,23237 +163,1498,126061 +6,1523,91796591 +184,1526,60390 +45,1528,5076313 +94,1530,1014380 +197,1535,44982 +242,1538,3192 +139,1551,283986 +185,1573,56269 +239,1582,3932 +220,1585,13591 +228,1588,6522 +208,1590,25538 +54,1597,3454766 +164,1599,125295 +121,1602,475515 +171,1609,97442 +191,1610,48607 +27,1621,12298812 +240,1626,3909 +138,1627,302333 +247,1636,711 +114,1638,591912 +251,1643,282 +206,1645,28423 +148,1648,194797 +72,1651,2038539 +243,1652,2854 +241,1656,3203 +155,1657,176879 +215,1669,18439 +232,1672,5467 +170,1680,97513 +196,1681,45091 +182,1683,62887 +166,1687,117365 +217,1690,16936 +177,1691,73682 +255,1692,24 +127,1700,428102 +254,1705,62 +230,1715,6260 +183,1716,61350 +107,1724,692133 +226,1727,7801 +238,1729,4434 +180,1734,64596 +157,1735,164228 +160,1737,139080 +176,1740,81019 +165,1745,122707 +198,1750,43707 +259,1753,2 +257,1754,10 +249,1755,395 +246,1757,1278 +203,1758,30079 +193,1763,46590 +253,1770,124 +188,1771,52625 +236,1772,4774 +256,1777,10 +252,1779,207 +57,1780,3095378 +258,1783,2 +244,1785,1409 +231,1793,5563 +219,1797,15811 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_sup.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_sup.txt new file mode 100644 index 0000000..ae8af8c --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/kill_sup.txt @@ -0,0 +1,1421 @@ +703,6948,48733 +449,17714,230726 +35,33900,4366901 +668,50930,61991 +971,61791,6330 +1002,82782,5051 +983,87575,5983 +932,89637,9160 +857,113796,16080 +1132,118121,1361 +873,192947,14414 +904,195249,11494 +1208,197581,345 +1118,205821,1551 +58,225023,3108663 +503,254937,171203 +91,272173,2370396 +1333,281866,10 +1121,289542,1530 +1059,301602,2740 +607,310729,96237 +617,335509,89881 +1311,337137,19 +120,356642,1859421 +1156,361125,923 +1201,364126,381 +128,393668,1666300 +495,466800,176701 +753,477415,34997 +1337,483145,9 +1165,545152,839 +504,556154,171081 +1331,583500,11 +1397,591733,2 +1417,602408,1 +69,606407,2834521 +1297,606706,33 +1388,634848,2 +517,692803,155200 +678,724621,58698 +1256,745946,105 +629,758104,82434 +1289,762975,38 +681,765188,57474 +1299,796977,31 +151,828637,1502148 +4,873575,11247702 +852,878961,16678 +738,879782,38806 +1373,896355,3 +609,915113,93378 +1358,921888,5 +452,926823,222853 +533,940693,142122 +820,942959,21555 +750,951823,36224 +722,959179,42277 +1160,960100,884 +59,1006847,3075086 +1408,1015528,1 +436,1018357,247556 +1245,1020792,157 +1123,1021709,1498 +1068,1049851,2601 +1060,1079223,2732 +202,1086351,926550 +979,1095271,6161 +469,1095489,198215 +500,1096254,173244 +1413,1205898,1 +1220,1227918,287 +43,1238300,3692500 +538,1267913,137355 +1238,1270916,207 +1391,1276665,2 +917,1286008,10264 +1173,1350456,681 +789,1415009,27564 +1308,1415665,21 +300,1424656,528191 +113,1434753,1968157 +1027,1450352,3811 +27,1497168,4779932 +1088,1510264,2161 +70,1536231,2827694 +226,1536625,785344 +218,1553947,817343 +399,1563417,316564 +415,1601917,283904 +588,1606425,103635 +1199,1608563,398 +847,1609607,16885 +1041,1647052,3286 +1146,1675628,1074 +697,1700145,51277 +723,1715091,42124 +420,1746216,276081 +805,1767876,24304 +1318,1782523,16 +72,1804724,2822735 +1167,1809381,792 +1347,1809943,6 +1107,1827485,1777 +423,1830149,261766 +1324,1861962,14 +1307,1867161,21 +1316,1889913,17 +1127,1895081,1384 +340,1900364,426008 +358,1990750,392780 +271,2044462,607889 +1214,2051721,318 +382,2065730,346824 +548,2083273,131111 +602,2135129,98625 +1418,2232973,1 +585,2262902,104412 +1412,2269943,1 +191,2289134,1011820 +197,2293376,940547 +1365,2297431,4 +1130,2308351,1373 +695,2323859,51537 +1196,2345447,432 +1249,2357773,135 +1416,2362058,1 +1154,2371436,934 +451,2392791,224550 +214,2411854,857060 +169,2415972,1288252 +593,2418002,102757 +890,2418364,12897 +1182,2422415,581 +550,2453888,130479 +1101,2467370,1876 +206,2502956,889721 +324,2559569,455981 +1230,2571407,234 +1168,2571536,789 +1267,2575842,78 +23,2585846,4913038 +1298,2591538,31 +743,2595542,37333 +356,2600387,404192 +119,2665207,1862083 +662,2692494,65496 +993,2725721,5497 +1405,2730335,1 +1209,2798385,342 +1210,2800032,336 +171,2808172,1272426 +345,2873154,416172 +906,2972329,11165 +1033,2976468,3534 +937,2999957,8835 +1370,3024357,4 +1294,3057381,35 +472,3108144,195165 +711,3136062,45239 +1004,3181712,5034 +1077,3264534,2414 +808,3295619,23692 +939,3298902,8560 +992,3319611,5534 +660,3340647,66453 +886,3345943,13784 +1213,3364735,320 +1355,3365981,5 +968,3377827,6614 +760,3395817,33261 +843,3411571,17267 +581,3428961,106834 +1124,3430969,1415 +148,3454753,1524284 +1036,3467919,3416 +417,3475079,281122 +105,3484132,2125170 +282,3502565,574826 +1351,3589487,5 +521,3600737,150218 +28,3613413,4755553 +764,3639628,33102 +1094,3652727,2082 +1382,3668212,3 +1334,3692413,10 +235,3698627,759185 +473,3734803,194744 +793,3739202,26884 +1421,3760848,1 +677,3781794,59267 +1344,3800097,7 +833,3842862,19145 +762,3860614,33128 +48,3909522,3493947 +203,3933666,911772 +350,3972413,410810 +90,5991728,2375834 +212,5997814,865269 +1340,6046368,8 +1341,6046743,8 +1084,6078176,2263 +1102,6083448,1872 +1019,6101033,4194 +144,6116940,1538799 +947,6118079,8087 +1013,6121519,4358 +880,6131106,14134 +698,6136757,50996 +318,6160655,468358 +439,6169408,245256 +1329,6174010,12 +65,6180190,2922076 +498,6186491,173656 +869,6212605,14982 +779,6242167,29924 +217,6258092,817462 +468,6276419,200063 +590,6284929,103544 +1001,6299408,5130 +778,6301789,29960 +824,6308670,20316 +1050,6326324,2998 +872,6330147,14565 +625,6343784,85342 +234,6354098,759781 +181,6384450,1103191 +1278,6395848,58 +798,6414286,25086 +1410,6416213,1 +732,6417987,40281 +659,6425087,67727 +284,6510480,573858 +611,6520732,92249 +823,6528152,20586 +1216,6541079,307 +494,6606543,176773 +1037,6618608,3360 +410,6625437,297777 +1045,6647535,3079 +1029,6674092,3688 +1283,6795280,46 +20,6818593,5382217 +526,6822957,146780 +46,6853693,3529700 +867,6857973,15140 +1039,6870350,3351 +702,6882236,48782 +34,6910361,4389969 +83,6920960,2475364 +818,6921135,21922 +347,6923061,413869 +1244,6925574,159 +929,6927748,9554 +456,6929240,218643 +14,6936607,6481686 +96,6948793,2260828 +1322,6956104,15 +642,6986891,75862 +1263,7007969,90 +887,7012651,13605 +409,7013660,299790 +664,7038651,63898 +673,7047342,59814 +1321,7069895,15 +914,7085502,10480 +204,7085510,900365 +565,7092442,121767 +618,7098955,89567 +749,7125212,36839 +111,7139820,1994636 +865,7142659,15241 +537,7150939,138148 +441,7154207,242505 +961,7157316,7301 +730,7158871,40848 +615,7181335,91001 +233,7183372,760148 +1252,7221139,126 +554,7226782,129155 +103,7249451,2197116 +102,7271812,2216155 +830,7287342,19552 +246,7318415,721628 +211,7318949,869419 +606,7333216,96311 +1126,7337110,1396 +546,7340529,131946 +1275,7346797,63 +73,7349282,2818730 +1394,7365299,2 +291,7386358,561957 +1178,7394371,617 +995,7409475,5445 +199,7417116,935075 +1116,7418168,1575 +1184,7428666,558 +132,7449254,1633783 +179,7462660,1147464 +352,7491093,407400 +1293,7494178,35 +558,7494497,127603 +1223,7499430,265 +1205,7508390,362 +1306,7518529,22 +478,7528491,191015 +1140,7530708,1155 +263,7540891,649359 +61,7555180,3053132 +1139,7559093,1167 +966,7563185,6864 +1296,7575174,33 +24,7581876,4840705 +621,7588382,87593 +108,7589468,2060546 +1177,7590135,620 +1009,7646152,4585 +571,7651093,117023 +640,7675610,76132 +949,7695478,7957 +994,7695659,5489 +1264,7699382,89 +1246,7733128,157 +174,7756002,1245645 +165,7758085,1322991 +832,7765098,19437 +1235,7775311,214 +831,7781236,19441 +45,7829201,3544230 +1012,7842579,4441 +221,7860453,805880 +1387,7897925,2 +775,7970506,30076 +583,7973893,105850 +57,7976264,3119542 +746,7985956,37004 +528,7995033,145732 +1015,7999103,4340 +127,8000875,1686105 +180,8004076,1116667 +690,8013349,54161 +566,8048374,121389 +215,8078914,854046 +431,8083365,250658 +277,8096537,588570 +53,8099868,3303897 +864,8123790,15248 +1145,8128478,1078 +771,8138506,32382 +37,8153179,4202695 +433,8153941,249142 +74,8155296,2805192 +608,8167837,94017 +325,8175236,453722 +465,8184383,202176 +306,8191129,514380 +10,8199417,6857996 +54,8201460,3269792 +438,8218433,246379 +970,8224678,6391 +1383,8259895,2 +319,8268010,464671 +1327,8288459,13 +810,8320319,23286 +876,8323711,14226 +868,8325700,15122 +624,8337151,86004 +1020,8366045,4164 +719,8369561,42661 +116,8369778,1933189 +1302,8408007,27 +256,8419570,664256 +916,8423835,10283 +253,8428196,681873 +1326,8438707,13 +896,8444356,12377 +454,8459255,220696 +927,8478874,9708 +1336,8483719,9 +1288,8501514,40 +671,8502135,60876 +1304,8503255,23 +241,8513699,736044 +40,8539216,4024436 +1212,8541236,327 +1343,8574922,7 +1237,8588789,210 +1219,8593382,294 +162,8607734,1350626 +953,8609713,7700 +184,8612358,1072946 +137,8627359,1572300 +230,8630972,768149 +192,8632462,1011488 +247,8649412,716776 +210,8654156,877068 +962,8662264,7260 +331,8665783,443350 +303,8674163,522493 +701,8675636,49109 +800,8677963,24677 +782,8698728,29124 +1147,8699429,1058 +1399,8708728,2 +240,8710047,740743 +1414,8720321,1 +1231,8724192,233 +322,8729672,458469 +316,8740199,479167 +509,8742874,165699 +1239,8752714,188 +1159,8753956,886 +1117,8758298,1575 +1043,8760563,3121 +198,8779575,939440 +902,8785314,11613 +89,8788366,2380957 +1000,8796215,5138 +634,8811880,79998 +367,8812550,372360 +573,8815749,116281 +1162,8839171,880 +7,8841266,9136677 +421,8842936,262836 +153,8847546,1469720 +1217,8876551,306 +943,8877156,8354 +848,8890793,16853 +387,8895532,333863 +754,8900955,34715 +1349,8907258,6 +160,8908002,1401833 +786,8925695,28026 +329,8954402,447224 +825,8963720,20179 +195,8966820,975573 +372,8967440,362794 +1251,8970390,129 +954,8976313,7623 +479,8980651,190732 +650,8985694,72366 +1021,8997874,4085 +931,9000253,9263 +637,9003698,78158 +985,9014108,5914 +1332,9016464,11 +388,9016560,331068 +200,9021920,934983 +227,9023703,783100 +360,9029928,388928 +813,9031705,22738 +122,9037756,1815387 +597,9043233,100400 +244,9047658,728079 +539,9048764,137056 +134,9057880,1603410 +344,9060641,417448 +208,9060885,884996 +1185,9067168,536 +1269,9091557,73 +391,9094538,327529 +1273,9095581,65 +508,9096738,165850 +332,9101574,441777 +649,9103424,72799 +525,9106642,147550 +643,9113064,75562 +1203,9120206,368 +545,9148043,133472 +861,9151549,15750 +547,9154293,131875 +219,9154820,817274 +92,9167250,2362611 +741,9174887,37799 +172,9180206,1265785 +349,9182487,412274 +315,9186126,479284 +338,9186877,430630 +62,9188016,3043049 +1380,9191031,3 +770,9195661,32479 +761,9199885,33236 +1018,9225795,4215 +520,9228039,151729 +878,9235561,14163 +55,9236866,3154087 +444,9238175,235724 +323,9239515,457884 +895,9240154,12406 +996,9257513,5437 +1076,9260447,2420 +839,9266092,17676 +15,9272054,6018415 +1176,9277642,622 +12,9280477,6764550 +1114,9280679,1608 +1371,9282669,3 +866,9282974,15198 +68,9291984,2842017 +1155,9292037,930 +93,9299539,2357137 +603,9314079,98413 +1396,9318449,2 +86,9319058,2429993 +238,9320272,745107 +395,698143931,321132 +220,698147372,814984 +806,698147969,24237 +1,698152377,29895545 +1120,698152498,1542 +130,698160606,1641487 +899,698162312,11992 +490,698167138,181253 +1310,698169715,20 +684,698171150,56228 +1110,698187023,1686 +562,698191218,123194 +18,698215322,5516130 +36,698231772,4353390 +572,698232227,116477 +418,698239813,279817 +279,698241117,577489 +1183,698264828,576 +1363,698273555,4 +881,698278542,14134 +33,698285444,4540622 +1143,698290319,1107 +280,698290577,576974 +574,698295651,115703 +877,698305474,14214 +613,698338524,91766 +799,698342159,24956 +60,698350371,3058287 +140,698353083,1560531 +56,698361257,3120651 +289,698364331,564501 +1291,698373265,36 +404,698388578,311490 +907,698416970,11038 +121,698420691,1837766 +512,698442418,164062 +1284,698457392,46 +298,698462285,535670 +645,698477883,75321 +1066,698485268,2638 +908,698486277,10911 +236,698489071,753237 +1192,698519133,467 +1181,698540331,603 +402,698545981,315736 +1265,698548451,88 +314,698562644,480317 +846,698580310,16899 +335,698585370,439500 +99,698588535,2234445 +584,698588812,105559 +1034,698589866,3434 +742,698599365,37679 +292,698613394,560009 +354,698620694,405626 +80,698625834,2715161 +450,698630507,225127 +71,698635863,2823122 +150,698641566,1509606 +663,698650301,64198 +368,698652014,368586 +817,698652171,21968 +22,698659980,4942966 +499,698663855,173564 +653,698666810,70284 +464,698670524,203037 +1232,698677650,230 +487,698680806,184813 +909,698692141,10805 +1062,698701911,2706 +704,698702991,48653 +77,698704189,2766333 +990,698704875,5635 +492,698723158,178588 +841,698736778,17434 +30,698739350,4647565 +991,698748891,5610 +556,698757439,128199 +1317,698766369,16 +1392,698766454,2 +98,698768565,2246948 +265,698769107,631670 +1353,698776998,5 +26,698786826,4817971 +327,698789253,450524 +1385,698806018,2 +269,698807570,617717 +863,698811281,15646 +268,698823542,621967 +336,698826986,437750 +334,698829590,440149 +1064,698837993,2689 +552,698845189,130293 +1240,698848067,188 +1174,698848373,641 +570,698849979,117220 +1152,698855681,960 +429,698867446,254403 +232,698867483,763529 +355,698879638,404605 +639,698881022,76318 +88,698884287,2391177 +1247,698895940,153 +416,698908184,282270 +1374,698908912,3 +694,698916948,51741 +1151,698926585,996 +986,698934729,5913 +39,698962117,4028560 +66,698971484,2884289 +601,698987598,98722 +644,698993706,75426 +222,698999105,801120 +351,699016994,408097 +1250,699025262,131 +950,699034094,7932 +1226,699037086,247 +1005,699039013,5010 +123,699054373,1808002 +1372,699057459,3 +1309,699058253,20 +422,699065686,262122 +1074,699066118,2486 +309,699072129,501704 +267,699083129,625744 +821,699086436,21466 +816,699088529,22013 +63,699088769,3016001 +124,699097885,1739304 +32,699098531,4591440 +836,699099385,18187 +297,699099811,538722 +712,699111651,44736 +709,699117178,45547 +913,699117992,10680 +373,699121671,360135 +920,699121777,10186 +1137,699126484,1184 +892,699127546,12691 +860,699139964,15914 +76,699146580,2781268 +1051,699150527,2973 +1255,699156456,115 +106,699170684,2123521 +259,699176234,655688 +13,699189792,6563498 +933,699191449,9140 +901,699191455,11859 +922,699191464,10082 +767,699194766,32988 +430,699195358,252849 +851,699196829,16729 +401,699199084,315898 +733,699204478,40239 +369,699208929,368262 +164,699213622,1344703 +569,699238479,117941 +699,699246032,49348 +274,699250676,597860 +209,699262350,880157 +95,699265922,2269630 +633,699266530,80024 +38,699269923,4183414 +665,699272633,63145 +541,699272880,136183 +346,699273451,416045 +428,699277039,256140 +752,699278528,35036 +592,699280514,103239 +342,699283869,420497 +1222,699284822,271 +1330,699285160,11 +156,699287032,1450554 +672,699298370,59839 +67,699299123,2873182 +1133,699301458,1320 +536,699304554,138996 +951,699308637,7763 +326,699316421,450592 +1169,699319395,779 +275,699320017,594074 +997,699321518,5309 +146,699323302,1527600 +1131,699326171,1369 +308,699333701,506130 +29,699336777,4709176 +670,699341889,61136 +9,699342219,8904160 +713,699343887,44450 +956,699346267,7611 +371,699346280,362825 +748,699347951,36845 +407,699351301,308431 +231,699355601,765735 +1276,699356968,61 +109,699364813,2037574 +154,699368887,1455173 +446,699372829,234957 +674,699373225,59537 +114,699373599,1960765 +1395,699375903,2 +780,699377151,29719 +553,699377401,129968 +408,699379895,304709 +44,699380607,3642430 +1091,699380621,2104 +51,699382126,3324324 +175,699383121,1244058 +177,699383279,1176448 +477,699385139,191587 +757,699390457,34024 +254,699393742,678200 +693,699393759,52009 +1352,699396429,5 +285,699402816,573852 +1345,699405877,7 +708,699406247,45769 +1098,699406750,1951 +989,699406776,5744 +447,699408669,234275 +815,699409420,22460 +216,699413040,824449 +501,699413581,172813 +1242,699424741,166 +290,699425709,564133 +161,699429153,1354321 +264,699431255,644644 +819,699432672,21559 +107,699433558,2109192 +856,699441366,16132 +75,699443920,2792275 +551,699448276,130448 +1189,699449946,482 +1134,699471829,1318 +614,699478692,91260 +834,699483429,19135 +138,699485250,1569981 +977,699488108,6217 +168,699491076,1306590 +769,699493750,32479 +445,699494480,235307 +42,699494488,3851849 +1354,699501322,5 +595,699509239,102111 +620,699509284,88250 +903,699510045,11512 +141,699510259,1557739 +2,699513260,20061036 +155,699516250,1453641 +365,699523631,376994 +759,699524362,33643 +261,699524891,651271 +112,699545762,1983801 +434,699548295,248090 +237,699552859,750968 +1149,699554427,996 +619,699556684,88438 +579,699562182,108344 +1335,699562874,9 +31,699567608,4608478 +1186,699569800,532 +544,699573053,134664 +493,699574408,177137 +837,699576407,18024 +1194,699576978,450 +1085,699578606,2260 +505,699580120,170989 +462,699583677,209325 +1420,699588526,1 +610,699589540,93292 +310,699595556,500882 +1089,699598396,2140 +669,699598425,61869 +1268,699600167,76 +796,699600855,25213 +689,699603116,54862 +965,699604515,6939 +135,699605333,1586810 +1202,699611673,378 +1315,699620730,17 +1014,699621601,4345 +540,699628084,136588 +812,699644054,22748 +1144,699644852,1102 +1122,699650981,1516 +915,699656989,10287 +1295,699657450,34 +125,699658023,1723950 +183,699660539,1082248 +714,699664910,44192 +934,699665031,9092 +406,699665152,309449 +1016,699671197,4270 +471,699671454,195800 +514,699674355,162724 +405,699676005,309874 +1040,699678739,3314 +1367,699679662,4 +1381,699684062,3 +1305,699684693,22 +1366,699693687,4 +874,699694284,14358 +506,699695167,169430 +52,699697558,3315834 +557,699698079,127651 +443,699698253,238447 +228,699699601,770781 +944,699699650,8337 +1172,699703295,695 +104,699703642,2164033 +390,699703782,329781 +243,699704542,729892 +651,699705601,72254 +959,699706047,7390 +1274,699706955,64 +176,699710633,1214463 +1093,699711723,2087 +341,699711926,424812 +728,699712422,41064 +756,699713515,34117 +963,699716785,7238 +776,699718269,29969 +575,699722599,114655 +188,699723284,1018408 +187,699725436,1020162 +638,699726660,76808 +173,699728159,1247255 +1415,699728266,1 +700,699730998,49298 +426,699733098,256738 +398,699733501,316762 +792,699734152,27107 +787,699734445,27895 +891,699734795,12838 +307,699735020,506458 +17,699736927,5823680 +507,699736959,168077 +239,699737356,741146 +363,699738350,381199 +1360,699744012,4 +357,699744766,393297 +1161,699745265,881 +1129,699751062,1382 +380,699753640,348408 +47,699756210,3522122 +1234,699758688,215 +448,699759128,232034 +1400,699760767,2 +139,699761749,1562384 +982,699765971,6096 +145,699777234,1536301 +1191,699777372,467 +612,699777556,91869 +386,699778028,337570 +225,699778867,788116 +894,699780873,12457 +807,699781390,23971 +1339,699781605,8 +50,699781762,3394119 +854,699783063,16471 +362,699783765,385964 +6,699784536,9746520 +100,699785935,2231326 +359,699788305,391708 +940,699790202,8557 +1393,699791054,2 +784,699794286,28600 +455,699794765,219416 +425,699795378,260084 +147,699796330,1525143 +502,699797508,172503 +627,699797805,83388 +255,699799629,673762 +735,699800377,39460 +1075,699800992,2427 +883,699802012,13906 +705,699803070,48364 +826,699804790,20157 +734,699805379,39934 +370,699805839,368236 +801,699812007,24629 +1204,699812351,362 +1319,699812571,15 +1375,699812653,3 +117,699814283,1927982 +1218,699816699,303 +737,699820572,38829 +1046,699821629,3060 +1376,699823490,3 +721,699825089,42526 +1292,699825236,36 +343,699827112,418713 +16,699828442,5986760 +25,699828685,4822675 +791,699829494,27191 +1254,699829916,121 +1221,699831860,273 +333,699832463,441183 +980,699833171,6133 +413,699834004,291261 +1386,699837483,2 +419,699837826,279345 +809,699843417,23652 +763,699844594,33121 +884,699844727,13822 +1057,699845400,2804 +655,699846892,68691 +248,699849210,714338 +305,699850967,518013 +945,699851345,8257 +460,699851426,214212 +49,699851427,3411085 +1286,699852080,42 +1348,699854312,6 +133,699854484,1613803 +1369,699854830,4 +85,699856962,2433546 +978,699857387,6193 +1224,699858313,262 +559,699859013,126920 +1342,699860418,7 +1282,699861004,46 +364,699864013,378197 +437,699866225,246398 +458,699866510,216657 +766,699867602,33010 +3,699868002,13527645 +302,699869682,527430 +849,699870923,16831 +1065,699872616,2688 +1378,699873141,3 +1113,699875132,1620 +682,699875213,56566 +936,699876345,8872 +1082,699876746,2300 +726,699878150,41919 +126,699878511,1722447 +524,699879556,148254 +427,699879927,256527 +973,699880701,6284 +136,699883079,1580183 +1125,699884788,1409 +518,848883237,153727 +293,848883684,559642 +1028,848883791,3718 +278,848886056,579392 +1086,848886870,2259 +294,848886973,556192 +1190,848887199,470 +683,848889556,56529 +885,848889850,13788 +1038,848890012,3351 +1175,848892804,631 +974,848895676,6265 +185,848896948,1063475 +186,848899726,1059697 +632,848902744,80740 +925,848903260,9795 +587,848903690,103683 +1266,848905770,80 +361,848909464,387817 +1115,848910122,1592 +320,848912265,460500 +850,848912772,16827 +1241,848912937,183 +397,848913030,317398 +287,848913037,565408 +167,848913998,1318832 +389,848914661,329848 +1111,848915032,1663 +64,848915531,2926575 +41,848915730,3909293 +1350,848917127,6 +984,848917401,5962 +802,848917570,24624 +21,848918380,4959613 +1024,848921536,3945 +772,848921793,31735 +930,848921861,9441 +1270,848922958,68 +1138,848923540,1180 +598,848924219,100338 +1108,848925840,1771 +313,848926293,486795 +911,848927262,10733 +531,848928486,142622 +667,848928624,62142 +245,848930111,727210 +435,848932879,247873 +921,848933470,10175 +258,848934935,656962 +781,848935020,29372 +257,848935389,663649 +1314,848936053,17 +1090,848937248,2119 +379,848945529,349908 +1228,848946608,238 +969,848946700,6596 +1401,848949271,2 +170,848955783,1282628 +149,848956513,1516397 +87,848956765,2395658 +1032,848958556,3568 +1092,848960061,2103 +385,848967422,337911 +189,848967710,1016126 +201,848971079,931088 +1052,848973715,2874 +1099,848974774,1934 +1054,848975192,2842 +1280,848977412,53 +827,848977600,20095 +679,848977649,57783 +312,848977748,492996 +1071,848978052,2533 +440,848978297,243378 +1211,848978903,330 +926,848980237,9740 +1073,848981726,2509 +375,848985692,358068 +496,848986287,175209 +739,848986638,37862 +252,848987051,687812 +1157,848988401,913 +1078,848988744,2382 +1153,848993505,935 +110,848995242,2008040 +442,848995478,242363 +555,848999671,128823 +1419,849000135,1 +676,849001277,59373 +94,849001572,2270897 +152,849001724,1481187 +696,849002091,51293 +568,849002796,118378 +529,849004274,144666 +527,849004759,145861 +716,849006011,43207 +564,849006145,122180 +523,849006412,148650 +888,849009623,13527 +321,849009945,459024 +270,849010255,614278 +118,849012521,1885370 +511,849012843,164814 +481,849012985,189408 +530,849014147,143209 +396,849014413,318040 +242,849014922,734363 +1272,849017894,67 +5,849018239,10991321 +988,849018442,5848 +1368,849018780,4 +729,849020094,40986 +1404,849020212,1 +1407,849020667,1 +1063,849021566,2696 +194,849023078,987333 +1197,849023212,428 +561,849023540,126081 +213,849026145,863552 +283,849027025,573923 +470,849027653,196303 +594,849027712,102406 +190,849028088,1016019 +19,849030226,5503338 +758,849030643,33664 +515,849031818,158211 +718,849031846,42897 +207,849032059,888764 +957,849032413,7578 +626,849032414,83794 +981,849032741,6133 +337,849034882,431861 +276,849035525,592942 +266,849035905,629167 +158,849037407,1436190 +78,849037469,2724908 +1313,849037699,18 +381,849040142,347277 +838,849040194,17745 +488,849041192,184662 +1346,849044961,7 +628,849045047,83274 +1025,849045675,3941 +1083,849045915,2288 +1301,849047044,27 +432,849048112,250453 +657,849048216,67853 +840,849048455,17656 +941,849048552,8520 +938,849048734,8575 +724,849048867,41982 +542,849049045,135971 +1128,849049155,1382 +879,849050191,14147 +1180,849050734,605 +803,849051436,24516 +647,849052549,74745 +1279,849052588,57 +1164,849053868,847 +549,849054582,130800 +142,849054951,1553771 +1200,849055181,391 +467,849055425,201714 +1320,849055527,15 +599,849056744,99731 +260,849057572,654823 +193,849057655,1002599 +577,849057764,112500 +707,849058207,46934 +510,849059457,165042 +286,849059491,569584 +1409,849060099,1 +393,849060446,325443 +115,849061374,1936850 +747,849061406,36891 +855,849062920,16256 +755,849063605,34520 +785,849063793,28429 +474,849063849,193661 +1030,849063932,3650 +1262,849064087,91 +163,849064614,1344938 +11,849064752,6767483 +353,849065697,405809 +1303,849066044,23 +466,849066125,202024 +1158,849066618,907 +249,849066849,709472 +675,849068108,59430 +586,849068662,104350 +765,849069022,33067 +1406,849070220,1 +532,849070335,142162 +720,849070464,42592 +392,849070946,325981 +534,849071545,141730 +1229,849072873,237 +751,849073156,35218 +870,849075836,14981 +692,849076515,52913 +919,849076678,10198 +580,849076810,106920 +1097,849078086,2009 +484,849078297,187236 +299,849078498,529115 +687,849080011,55361 +773,849080702,31415 +1402,849081641,2 +853,849082154,16642 +1328,849082580,13 +710,849082839,45349 +1193,849082848,455 +897,849083294,12218 +348,849083501,412879 +905,849083534,11421 +1008,849083725,4660 +8,849084005,8965702 +1287,849084474,41 +82,849084740,2547348 +330,849084911,446182 +976,849084920,6254 +166,849084985,1319079 +589,849085605,103547 +1135,849085764,1293 +516,849085961,157504 +1150,849086357,996 +412,849086491,291894 +999,849086693,5169 +794,849087581,26684 +646,849087742,75281 +1022,849087786,4025 +157,849087855,1436313 +1058,849088101,2802 +101,849088243,2223889 +630,849088515,81559 +1258,849088639,102 +923,849088880,10068 +491,849089459,180510 +745,849089499,37257 +272,849089881,598862 +159,849090130,1414588 +1049,849090573,3002 +1171,849090765,748 +143,849091060,1546710 +842,849091084,17374 +661,849091105,65909 +79,849091769,2720057 +301,849091866,528021 +946,849091897,8254 +378,849091899,350513 +715,849091947,43641 +641,849092309,75985 +1290,849092639,38 +596,849092685,101263 +304,849092723,520040 +797,849092769,25160 +459,849092827,214704 +461,849092978,213232 +635,849093003,78694 +97,849093422,2251445 +81,849093426,2629269 +882,849093576,14070 +486,849093742,184975 +1312,849093771,18 +691,849093875,53200 +666,849093924,62942 +790,849094023,27560 +129,849094067,1663774 +706,849094147,47364 +987,849094586,5907 +424,849094603,260774 +686,849094609,55451 +955,849094653,7618 +1047,849094972,3027 +616,849095014,90932 +250,849095068,705427 +311,849095227,494683 +383,849095240,346373 +1100,849095376,1927 +376,849095435,355061 +1277,849095446,61 +394,849095448,322323 +273,849095482,598079 +1010,849095488,4532 +1170,849095509,758 +727,849095599,41188 +1225,849095601,254 +1017,849095778,4218 +814,849095800,22483 +1109,849095825,1720 +1081,849095879,2307 +740,849095948,37817 +457,849095959,217053 +1103,849095963,1840 +223,849095992,800266 +900,849096041,11977 +1142,849096102,1119 +1271,849096123,68 +1233,849096182,224 +262,849096215,650256 +1069,849096285,2597 +1031,849096310,3636 +1072,849096334,2520 +178,849096354,1175314 +317,849096383,478046 +1390,849096399,2 +942,849096454,8404 +591,849096458,103282 +736,849096544,38925 +476,849096547,191589 +795,849096592,25279 +1007,849096594,4678 +84,849096606,2454536 +998,849096631,5309 +875,849096649,14228 +788,849096768,27759 +844,849096856,17208 +576,849096874,112568 +281,849096882,576857 +1261,849096891,97 +1259,849096944,101 +224,849096945,788466 +845,849096954,16961 +952,849096958,7723 +648,849096972,74552 +859,849096977,15944 +777,849096979,29968 +328,849097002,450495 +414,849097103,290873 +582,849097175,106339 +403,849097220,315363 +1281,849097357,51 +1398,849097370,2 +960,849097386,7313 +482,849097614,188844 +731,849097716,40321 +822,849097737,20665 +489,849097799,183645 +1003,849097837,5044 +717,849097898,42973 +631,849097937,80991 +804,849097954,24440 +828,849097981,19883 +889,849098109,13436 +1325,849098136,14 +1104,849098159,1838 +652,849098192,72158 +411,849098200,293715 +453,849098265,222194 +339,849098299,430210 +1067,849098374,2624 +656,849098387,68279 +400,849098400,316463 +1095,849098516,2064 +1105,849098557,1831 +483,849098628,187817 +1106,849098648,1791 +205,849098688,890263 +1300,849098693,29 +182,849098695,1088119 +1061,849098724,2724 +688,849098727,54906 +1236,849098731,210 +725,849098769,41979 +251,849098782,692318 +374,849098784,359063 +871,849098791,14681 +1056,849098822,2825 +1166,849098966,814 +680,849099021,57608 +972,849099105,6285 +975,849099138,6258 +1198,849099141,419 +463,849099160,206356 +948,849099258,7971 +366,849099276,375632 +1023,849099342,3966 +1338,849099434,9 +811,849099463,23265 +543,849099505,135058 +623,849099517,86647 +1357,849099541,5 +654,849099544,69844 +1141,849099558,1149 +1207,849099601,353 +295,849099640,546735 +1053,849099689,2870 +1087,849099696,2212 +912,849099785,10688 +1227,849099804,241 +893,849099815,12688 +829,849099864,19666 +131,849099876,1640011 +1389,849099887,2 +1006,849099924,4902 +1248,849099955,149 +578,849099965,111873 +475,849100082,192502 +196,849100149,963084 +563,849100246,123019 +535,849100262,140462 +567,849100323,120484 +497,849100349,175071 +910,849100383,10793 +560,849100406,126551 +1070,849100463,2583 +377,849100615,352525 +1285,849100656,44 +858,849100744,16051 +1257,849100760,103 +1206,849100782,356 +1187,849100787,499 +519,849100811,153677 +1215,849100882,314 +1260,849100994,97 +604,849101083,96446 +1112,849101104,1626 +1042,849101108,3243 +600,849101116,99044 +1384,849101144,2 +924,849101148,9830 +1044,849101162,3102 +967,849101186,6854 +622,849101205,86655 +1163,849101248,866 +744,849101276,37312 +1048,849101309,3009 +229,849101378,768201 +1055,849101391,2835 +1356,849101526,5 +485,849101579,185681 +685,849101580,55880 +522,849101604,149913 +1148,849101647,1041 +935,849101652,9088 +1079,849101674,2359 +928,849101694,9583 +1080,849101771,2330 +1253,849101871,125 +605,849101881,96356 +1195,849101884,441 +513,849101889,163772 +1026,849101947,3867 +1188,849101962,498 +288,849102068,565365 +296,849102092,542106 +958,849102108,7392 +1361,849102143,4 +918,849102464,10205 +1179,849102480,607 +898,849103148,12041 +1323,849103947,14 +1243,849104010,163 +768,849104328,32548 +783,849104356,28929 +862,849104546,15677 +1011,849105232,4500 +1119,849106612,1546 +480,849106785,190671 +1136,849107532,1222 +1403,849108007,1 +774,849108623,30877 +384,849108780,345009 +636,849108784,78257 +1379,849109413,3 +1377,849109637,3 +835,849110622,18386 +658,849110711,67742 +964,849111196,6958 +1359,849111231,4 +1362,849111487,4 +1035,849112029,3432 +1096,849112033,2056 +1364,849113595,4 +1411,849114445,1 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/player.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/player.txt new file mode 100644 index 0000000..0c632e2 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/player.txt @@ -0,0 +1,3129 @@ +6948,Bosman7,214,1,209,2285 +17714,skobol,301,81,472873,278 +33900,Mwito,120,254,2306948,33 +40666,OcHnIK,0,1,26,2621 +42635,to+tylko+hastrat,0,1,26,2622 +50930,miki11,0,1,151,2376 +61791,Macp,0,5,30606,810 +82782,pinkiola,157,1,1646,1723 +87575,VEGE,594,2,10713,1065 +87825,Antoni93,0,1,41,2607 +89637,Mabes,0,0,0,2882 +98294,Antek93,0,1,500,2029 +100452,hirek+58,778,1,2861,1545 +101074,Krnik,1724,2,6613,1235 +108256,fafex,1797,1,471,2046 +112401,%2ATrilesto%2A,0,1,2840,1548 +113796,mpiechu,291,84,633855,226 +117208,milupa3+and+IdziPR,432,1,6898,1223 +118121,MRFELEK,1226,4,38722,748 +122492,kybb,554,1,825,1911 +126954,robert72,234,1,4824,1342 +128346,peter3131,0,1,321,2153 +128353,lukaszking2,234,1,129,2418 +129795,skorbyk,554,1,531,2010 +131972,Ares85,234,1,1347,1779 +148405,wtkc,0,1,26,2623 +160513,obi+van+kenobi,0,1,4251,1390 +192947,Jedrol,594,1,2376,1599 +195249,Marcio7,1336,10,55910,667 +197581,malwin,1312,11,51644,679 +205821,Jamson,0,1,128,2424 +225023,GKS+TYCHY,7,173,1514201,78 +254937,ilia55,301,16,133357,487 +260666,oracz1,0,1,8435,1139 +272173,dracodarco,7,247,1920593,50 +281866,bob+25,377,3,3739,1438 +289542,Jori,1411,2,6470,1241 +301602,Luki80,29,11,70147,614 +310729,Wilczekhehe,0,2,8151,1149 +325491,Zbyszko+Zbogda%C5%84ca,0,0,0,2883 +335509,zuzel,59,1,1553,1742 +337137,Carlos75,210,1,26,2624 +356642,FKG007,47,222,1808769,59 +361125,max-94,31,3,11434,1051 +363280,majku,1627,2,4725,1355 +364126,Borys35,1466,9,51175,684 +366938,owen10,0,1,26,2625 +371910,Addamus,847,1,1874,1689 +378757,hajza,0,1,4338,1384 +382222,lechu33,847,1,1353,1778 +393668,Bonnie+i+Clyde,47,205,1793291,61 +412571,bomba1,0,0,0,2884 +439825,Pawelstryju,1096,1,1560,1741 +466800,leito2,1602,1,3854,1425 +470266,Pawe%C5%82+I+Wspanialy,1421,1,1643,1724 +477415,dudas1,85,89,919480,159 +478956,Sir+Zordon,0,11,58957,657 +483145,Krzysztof1215,1411,15,133079,489 +498483,Grucha125,1312,6,20619,907 +526350,Maxwell+3,375,1,2364,1602 +529552,matekstryju,0,4,27236,835 +542253,Tomek+7,0,50,263228,373 +545152,Bociek80,96,1,572,1993 +546458,Sindbad00,125,1,592,1988 +556154,SweetKimo,85,77,717686,199 +563544,arkow,0,1,1438,1762 +565043,nikita.11,0,1,572,1994 +566379,floraI,0,1,235,2244 +569790,relag06,647,1,7515,1186 +570100,kazek-+15,194,9,39541,743 +583500,pchelka75,1728,1,3440,1474 +584989,Iceeman,0,1,381,2100 +591733,ShOcK,1058,1,10021,1084 +602408,dracart,1312,5,15423,990 +603968,Dreddenoth,1724,1,2040,1654 +606407,BaNdzi0r,120,123,1047439,134 +606706,adam1961,1128,5,26858,839 +609384,Brbi,29,9,21017,902 +610196,Tomek+z+Tyyrra+X+Adam547,0,2,778,1925 +634848,izolator,847,9,46582,708 +662253,pluton1,210,1,209,2286 +671516,Hilwoz,1275,1,26,2626 +692803,maradona1006,35,181,1313277,95 +712216,toreno1,382,1,2203,1629 +724621,pele+z+zar,8,1,198,2300 +745946,kazio73,1523,8,47214,704 +747422,janush4,412,8,22146,890 +758104,kaszak10,35,68,597877,241 +762859,Mikkerland,0,1,269,2205 +762975,xxczesiaxx,847,7,15713,986 +763529,Destination1,0,7,42124,731 +765188,pablo99999,666,11,82718,579 +769293,fan+zmijki,0,3,15784,984 +796977,KOMANDOR+PIERWSZY,607,1,492,2035 +823987,Pietrucha2,1724,1,2720,1563 +828637,mklo12,1,214,2186883,40 +867191,bzdenio,0,1,82,2509 +869195,Lord+Siekier,0,1,2269,1621 +873575,kathare,120,240,2431995,29 +878961,marus1000,106,1,8752,1127 +879782,Janxxv,291,69,612750,232 +881782,szymon12-95,0,0,0,2885 +896355,Grisza10,375,2,6393,1247 +915113,gex1992,830,5,27683,833 +919882,Kostek33,0,0,0,2886 +921888,Deadshot,0,1,26,2627 +926823,luki0911,785,7,40875,736 +930720,Susdam,301,4,26795,840 +940693,Kartes90,0,0,0,2887 +942959,D.E.M.O.N,1140,19,97329,548 +944147,klos111,377,1,2653,1573 +947564,matusia300,0,1,3840,1426 +947923,Piotr-B,452,4,19723,924 +949279,niupiro,0,1,803,1914 +950985,yen3,0,1,3897,1421 +951823,PawJag,722,13,99922,539 +959179,mirkos44,1597,8,22703,885 +960100,Konstansja,1672,2,9572,1102 +1006847,niezwyci%C4%99%C5%BCony,1,213,1760715,63 +1015528,XXARDASS,0,1,4417,1380 +1018357,Wujek+W%C5%82adek,301,15,132884,490 +1020792,rere1995,31,1,834,1909 +1021709,NewBetterSatan,1705,1,1609,1730 +1034117,Splendid606,0,3,5941,1274 +1043028,badadi+97,24,1,3240,1502 +1044760,Jatutuptup,159,1,524,2015 +1049851,Strojgniew,0,4,18838,937 +1078121,Damian283,0,11,78752,588 +1079223,elgordo,8,1,1599,1732 +1085802,golem6,1791,1,26,2628 +1086351,plls,291,54,294894,358 +1095271,HUBERTS111,59,1,1960,1674 +1095489,Mikares,1523,4,4160,1396 +1096254,marmag,106,11,79688,586 +1106220,mon-men,0,1,1472,1754 +1132842,bylo21,0,1,199,2299 +1153934,Butcher%2A,0,1,32,2615 +1164249,kukiz70,72,2,11001,1055 +1170102,miro2558,234,1,196,2306 +1205898,bolopb,1226,33,198134,415 +1227022,%C5%81ukasz80,0,1,1019,1856 +1227918,leslawos,1312,2,9559,1103 +1238300,messi1996,1,309,2561800,21 +1260088,czorny-81,1657,1,498,2033 +1267913,19Adrian90,68,7,24218,867 +1270916,%2AWalkiria,1096,5,37072,762 +1276665,krowabojowa,1735,7,23295,878 +1284796,joybook,125,1,665,1964 +1285441,markus72,1431,0,0,2888 +1286008,perfekcja,59,1,3836,1427 +1304915,Hasyp,1797,1,487,2037 +1322622,apysia,0,1,200,2296 +1323424,szymekXIV,847,5,16672,972 +1347385,Zephyr+II,0,1,4186,1394 +1350456,Jaruga007,8,1,192,2316 +1371998,pyari,847,1,2031,1659 +1384222,Gruby0905,0,1,515,2019 +1406042,erielle,365,1,8318,1145 +1415009,sony911,35,192,1384110,86 +1415665,White_Lady88,1735,0,0,2889 +1424656,Vecci,47,97,469643,280 +1434753,Ryba9431+x+Diil3r,369,93,915411,161 +1450352,PACYFICA,441,1,590,1989 +1454871,gandalffa,413,1,1374,1771 +1493696,roooob,1786,1,3883,1422 +1497168,Krulowiec+Wielki,47,236,2266144,37 +1510264,%C5%81okietek+II,0,1,4104,1401 +1511101,rafi041072,24,1,522,2017 +1517450,Ankalagon+Czarny,0,1,268,2207 +1525273,mrufki+komandoski,210,1,197,2304 +1536231,vip999,369,103,850452,170 +1536625,Spojler201,47,102,823351,177 +1553481,STALLON327,0,1,2065,1646 +1553947,Tryfi,85,34,329819,340 +1563417,DilerPL,301,11,94811,552 +1568700,wilku1000,339,1,2775,1552 +1568908,MIRLEON,285,1,291,2184 +1578509,arek1s,24,1,8119,1151 +1581890,Argeen,0,1,847,1902 +1601917,asiok79,301,101,647058,220 +1606425,Sullivan+IV,785,4,42012,732 +1608563,loj99,722,0,0,2890 +1609607,hydra,0,1,619,1983 +1610267,Jar0o,0,1,115,2454 +1626626,jedyny1taki,0,1,32,2616 +1631690,kukus1946,0,1,2284,1616 +1645835,c%C5%82opciec,0,0,0,2891 +1646837,grek159,1735,1,2326,1611 +1647052,Peny25,1226,10,45845,710 +1668965,Rychont,220,1,1091,1837 +1669587,Mateuszek023,0,1,998,1865 +1675628,Harmozabal,0,1,53,2570 +1684948,robosm3352,0,1,108,2467 +1693936,Bukson,1621,7,29862,815 +1700145,elew,24,1,1969,1673 +1715091,podgrzybek+brunatny,291,88,651776,218 +1746216,Szaku%C5%8223,1411,10,62549,643 +1748180,Mistrz444,234,0,0,2892 +1757722,Ludwik+3,0,1,175,2344 +1767876,Kenshipl,1039,10,54269,670 +1775957,Szczepan+1954,778,2,3453,1471 +1782523,piter357,778,1,6720,1230 +1794060,ten+kt%C3%B3ry+kroczy,0,1,121,2442 +1804724,szyymekk,7,72,701274,206 +1809381,Wiesiek19,0,1,251,2221 +1809943,wiech17,377,1,867,1898 +1827485,muflon1922,0,1,335,2142 +1830149,zbyszek2609,666,26,192882,422 +1831874,denver72,0,0,0,2893 +1861962,Karl+132,0,2,5266,1313 +1867161,snake0,1597,7,28968,824 +1867410,Vi-vali,0,1,218,2275 +1889913,Hanah1,33,1,224,2264 +1895081,Najemnik+full+light,607,6,21764,893 +1900364,Rublow,301,33,226329,395 +1924718,.o0krychu0o.,412,5,7067,1212 +1945202,Adrianzaq12wsx,0,1,26,2629 +1957280,zulus72,0,1,4115,1399 +1990750,xkikutx,1,125,1199124,112 +2020935,tunks,0,0,0,2894 +2044462,Diablo+90,0,0,0,2895 +2051721,Aragorn+Stra%C5%BCnik+P%C3%B3%C5%82nocy,0,1,1364,1774 +2061701,pablo1912,0,0,0,2896 +2065730,Farmie+Kombajnem,291,148,1321936,93 +2083273,adrianh3,8,1,26,2630 +2087251,kondziu.27x,991,0,0,2897 +2105150,zielonelody,1166,3,18993,934 +2130659,LukaseQxxD,847,1,312,2161 +2135129,ADAMCZYCY,291,101,828812,175 +2140084,poweju56,0,1,189,2322 +2151163,kabast,0,0,0,2898 +2162471,Tombar76,0,1,583,1991 +2177410,plazmi,1797,1,650,1969 +2210946,Simon118,1799,1,26,2631 +2213632,lukas1980,0,1,1258,1799 +2232973,izka1611,31,1,239,2235 +2245160,mruva,0,1,347,2128 +2246711,jurger,607,8,44529,719 +2256843,jaworbog,0,1,701,1951 +2262902,totmes21,862,15,76399,597 +2268889,dj.B.M.P.,33,4,17209,966 +2269943,gabsaw,301,23,162423,446 +2289134,Julixx,7,46,32435,791 +2293376,szkiel1552,369,75,679518,210 +2297431,BANKMAN,1585,1,722,1943 +2308351,markoz73,1797,2,4807,1345 +2315542,AKIKU,517,1,866,1899 +2321390,RED54,1336,35,166317,444 +2323859,alexiej,301,54,232672,392 +2324569,Boginysa,1735,1,3210,1503 +2345447,slawomirec,33,1,294,2182 +2357773,BANAN+22,24,1,5955,1271 +2362058,Sir+Lewan,0,1,9069,1121 +2363165,puciaa,68,1,414,2080 +2365630,zkiw,451,1,169,2354 +2371436,jedrzej152,0,4,21474,896 +2392791,artur3416,1079,3,30581,811 +2411854,dezert8,77,1,1442,1761 +2415972,Quelus,1411,14,123642,500 +2418002,Markus2008,1148,23,122002,503 +2418364,Artifoks,1108,16,90864,556 +2422415,miodzik9669,0,1,340,2135 +2426019,riki30.1976,0,1,198,2301 +2443031,HOST999,0,1,3081,1518 +2453888,MatikB87,1700,33,178901,434 +2467370,marciniok1,377,1,4876,1337 +2485646,Mitze,0,1,3139,1511 +2491724,krzysiu1969,0,1,1750,1710 +2502956,Ziomecek,1,83,780659,186 +2512219,2+die+4,0,1,232,2249 +2514219,Dzymek10,1590,1,146,2382 +2516620,waski098,0,1,298,2177 +2559569,ivanov66,0,1,376,2105 +2569868,LOLA1982,0,1,1176,1811 +2571407,Legion+15,97,6,23474,877 +2571536,Calimera,33,1,206,2289 +2575842,ddd121,80,1,493,2034 +2585846,Arrkoo,120,275,2250576,38 +2591538,Aneta+2,96,1,426,2073 +2593568,aleksandro987,1724,1,347,2129 +2595542,mastaw,722,0,0,2899 +2600387,DeMoN00,862,3,27838,831 +2602575,palkoneti,0,1,326,2150 +2613743,skate4321,0,1,4593,1366 +2620389,JeGrzegorz,452,1,62,2555 +2646397,jagger23,441,1,2887,1541 +2665207,xyacqqqx,666,69,636336,224 +2684175,SzCzAkUs,1735,1,503,2027 +2692494,Rebel1995,432,1,26,2632 +2717161,smerf007,29,4,19869,920 +2723244,1gladiator,1700,9,19493,929 +2725721,rudi+jk25,1735,10,26030,848 +2727535,sajmon117,0,1,26,2633 +2730335,niki63,29,1,6828,1227 +2735370,wovi,989,0,0,2900 +2764337,Stefal-S22,441,1,792,1920 +2798385,bencu,0,0,0,2901 +2800032,kamilheros2,157,11,69385,616 +2801913,iagre,412,1,612,1986 +2808172,yogi+1,120,119,1129790,120 +2811353,%2Aworm%2A,0,1,3477,1468 +2811568,borowka73,29,1,400,2088 +2812197,bs160,523,1,261,2212 +2819255,Atillaa,0,1,4007,1409 +2819768,rycho100,965,1,1827,1698 +2837080,LadyVv,210,1,1959,1675 +2873154,Kozak+Wielki+5,301,47,254047,381 +2893211,lukiluki1200,0,2,719,1946 +2924071,lew+mis,0,0,0,2902 +2942206,Maniek28a,0,1,639,1972 +2972329,Bigbangs,0,13,106506,528 +2976468,tomnado,29,10,44068,721 +2980670,snajpiradlo,0,1,150,2378 +2999957,GRABIERZCA+1,35,51,405335,301 +3022364,romusz43,809,1,343,2134 +3024357,DETONATOR2010,385,1,5027,1324 +3027589,Daria+201,0,2,6438,1242 +3057381,waldi0227,33,0,0,2903 +3101080,saba13,0,1,638,1974 +3108144,Vandip,1621,32,196459,417 +3112100,Arletta82,0,1,104,2470 +3136062,emeryt224,0,0,0,2904 +3181712,Roman150,377,0,0,2905 +3185732,Wielki+Wezyr,0,1,2431,1593 +3264281,jankes630,0,1,73,2527 +3264534,Sosiq...,1456,1,10698,1066 +3295619,lubiszT0,0,1,162,2362 +3298564,arek22310,847,1,1843,1695 +3298902,Sejmion,412,4,22828,884 +3319611,niedzwiedz8807,1735,1,2955,1534 +3340647,Chaos.Black,432,1,9494,1106 +3342690,zyzok108,157,2,5794,1285 +3345943,dam111,546,1,50,2581 +3362925,Beast+Palladin,375,1,967,1877 +3364735,Vesemir7,1140,7,65933,631 +3365981,Panoramix112,116,1,1598,1733 +3372959,wowo.ww,626,3,11099,1052 +3377503,Czarny+Hetman,68,3,996,1867 +3377827,Krasnal01,194,3,22528,886 +3395817,Aquarius12,1724,1,437,2065 +3409028,giza61,452,1,2796,1550 +3411571,asiulkaaa23,412,20,98184,545 +3428961,patrykoss93,0,1,26,2634 +3430969,Barret,210,1,974,1875 +3441892,w%C5%82adca+smok%C3%B3w+2,234,0,0,2906 +3454753,Iker96,120,78,715572,200 +3462813,Arash1,0,1,195,2310 +3467919,Tomcio+Rycerz,1226,16,88168,567 +3475079,de+Talleyrand,785,29,118325,508 +3484132,wojtek1409,47,165,1348778,90 +3487721,BORKOS4,24,1,1606,1731 +3487933,Szujski+Mastess+Team,0,1,429,2071 +3499467,ciechu0m,187,1,347,2130 +3502565,Erupcja,1411,25,157289,455 +3518623,Deyna10,0,1,194,2312 +3529695,Don+Kargul,0,1,9060,1122 +3560281,joannaniel,1724,2,8011,1156 +3584298,RYCERZ+MA%C5%81Y,0,0,0,2907 +3589487,fazii2155,1226,21,106912,527 +3600737,elli38,309,53,343355,333 +3613413,and987,120,66,628023,227 +3631404,tedy1,96,1,393,2092 +3639628,Zoso2000,33,1,2115,1640 +3647080,MP1001,1797,1,1713,1716 +3647086,bruno+60,8,1,6935,1220 +3652727,sancus,452,1,2383,1598 +3667722,dziki71,412,1,1398,1768 +3668212,Warkilia,0,1,2002,1665 +3692413,Kiubi5,452,3,5823,1282 +3698627,Bystek7,47,95,786848,184 +3713020,Tytus+Africanus,317,1,4609,1363 +3734803,kokso420,0,1,26,2635 +3739202,Tryagain,301,1,4809,1344 +3743817,E+W+A,0,1,66,2545 +3750922,macp1,1528,1,2267,1622 +3760848,wiciu12,0,1,158,2366 +3762475,tomiil,435,1,4441,1376 +3773216,daro1974,0,1,222,2268 +3781794,977007,35,130,1015958,143 +3800097,Seba1112111,0,1,4745,1350 +3824463,KARY1988,1804,1,26,2636 +3840616,Arto135,0,1,74,2525 +3842862,M4TeK,281,3,5950,1273 +3860614,szaikan96,0,1,26,2637 +3895471,mikwojka,441,1,1997,1667 +3896657,robson351971,1735,2,3621,1448 +3909522,paawlo13,47,465,4004753,8 +3923887,Nogger14,0,1,750,1938 +3933666,damian0ss,71,26,158808,451 +3957237,DARO36,29,6,30283,813 +3969110,ferrekin,319,1,3153,1509 +3972413,bartekzdroj,0,1,3385,1486 +3973432,piotrus507,0,1,26,2638 +3986807,ORKORAN,129,15,19864,921 +3990066,AsconX,0,6,20958,903 +5989306,HENRYK321,0,1,367,2114 +5991728,hodowca1,1523,0,0,2908 +5997814,Frejas933,120,31,181281,431 +5999909,piper97,0,1,101,2480 +6001174,Mietusek22,117,1,7348,1199 +6002527,Dj+Burglar,24,2,6560,1237 +6021542,rycerzrzyk2000,0,1,26,2639 +6032352,wojtek1435,441,2,5422,1306 +6035425,HORTON,0,1,96,2493 +6046368,Moniq15,129,1,2313,1613 +6046743,Filters,412,1,2319,1612 +6048627,rojek1122,1745,2,15224,993 +6066254,tomek22863,0,1,93,2501 +6070734,--KEMPA--,0,1,26,2640 +6071567,Petro180,664,0,0,2909 +6078176,lech3838,96,1,120,2446 +6083448,rafalzak,441,1,1122,1828 +6101033,Smiatuniu,80,2,7762,1172 +6111938,krzysztof+wspania%C5%82y,29,1,4068,1405 +6116940,pi%C3%B3ro78,369,57,431647,290 +6118079,geoo,722,25,153836,459 +6121024,topolskia,33,2,10994,1056 +6121519,876g,0,0,0,2910 +6127190,kuka1,106,10,24124,870 +6131106,pinqa,106,26,147290,468 +6135387,FreestylerWLKW,1724,1,1320,1782 +6136757,Kaffik,1226,15,96231,549 +6143689,vacik11,1669,2,4726,1354 +6145316,zabario1,375,0,0,2911 +6160655,Hubix55,301,36,261739,376 +6167751,wlamus61,1278,3,7062,1213 +6169408,Hasava,47,89,607139,236 +6171569,andrzej84,1411,6,19872,919 +6174010,MARCINEK+GRO%C5%BBNY,1599,1,358,2119 +6178803,shakeit1,0,1,26,2641 +6180190,Chcesz+remont%3F,7,295,2487760,26 +6186491,andrux,211,4,14734,1001 +6193337,smagi007,1312,1,853,1900 +6212605,ADAMUS75,106,24,152535,462 +6240801,MrTed,1312,8,37152,759 +6242167,colt9,0,1,26,2642 +6243588,deEdion,666,1,9777,1090 +6249486,REXMUNDI,0,1,3881,1424 +6249524,hornet9,0,1,26,2643 +6258092,tarcza55,47,124,1098095,125 +6262469,Muck123,1108,0,0,2912 +6270765,MoistVonLipwing,96,1,26,2644 +6276208,biesta,0,1,463,2049 +6276419,gerania,80,0,0,2913 +6284929,antenkay,33,1,1096,1836 +6294942,sendzia555,0,1,128,2425 +6296228,oleska2002,475,1,2963,1533 +6298409,Krzysztofeks16,0,1,182,2331 +6299408,tylos3,1293,9,51392,682 +6300771,PetC,1466,1,298,2178 +6301789,Ewelinaq,68,3,7983,1160 +6308670,Artemida-21,0,0,0,2914 +6310214,bino666,210,1,365,2115 +6315553,LESTAT+SKI,157,6,16653,973 +6323735,Kaczoland,377,1,213,2279 +6326215,afibatin,0,1,58,2561 +6326324,Lubie%C5%BCny+Mietek,0,1,26,2645 +6330147,marcelinor,216,0,0,2915 +6343784,reiter+13,309,53,294241,359 +6354098,Wioska+Mia%C5%82a+By%C4%87+Pusta,666,87,590675,245 +6354962,filips+19,59,1,2259,1623 +6379173,pierszak,1797,1,549,2007 +6384450,ronislaw007,1,71,638952,222 +6395848,pit71,375,1,3436,1476 +6409472,Best+Wiedzmin,1226,5,25482,856 +6414286,myszkof1,0,0,0,2916 +6416213,Granit+19,157,5,21232,898 +6417987,majonespzn,301,27,191580,425 +6423275,Dorian888,1573,1,514,2020 +6423719,Bydlak777,185,0,0,2917 +6425087,moniullka987,432,4,6985,1217 +6468217,spiki2009,33,1,569,1995 +6472706,mondo96,0,6,25000,861 +6474323,sarab,0,1,1176,1812 +6504658,ADiKxD,0,1,55,2564 +6510480,Bytomiak,85,136,1034996,140 +6516085,EpSi1,1724,1,893,1889 +6517003,...bil...,0,1,1064,1845 +6517826,maki5b,1052,8,26625,841 +6520732,lukassaw,301,26,230964,393 +6528152,blondynek23,301,45,306845,354 +6541079,Pheniks2009,210,1,122,2440 +6545206,xxxbestiaxxx,0,1,97,2488 +6554011,mateusz16180,0,1,101,2481 +6557487,Fezzoo,0,1,26,2646 +6557824,nsplus,31,1,191,2319 +6577211,TeroXer+s,0,1,26,2647 +6590149,Apollo8,1573,1,403,2085 +6606543,borek102,0,1,5458,1303 +6617912,leolen,0,1,2509,1586 +6618608,paw%C5%82apiotra,452,4,7193,1207 +6625437,GRIGOR-2007,1039,19,126174,498 +6625716,zollmeister,0,0,0,2918 +6643002,HAPPYxxx,0,1,61,2557 +6647535,Qtafon,0,1,1007,1862 +6647642,ajno%C5%82,319,1,3035,1524 +6651072,Tomek+20011989,377,2,4213,1393 +6654098,P-406,0,1,1360,1776 +6658016,DoRoCiA95,1724,1,1887,1685 +6670484,Moddark,0,1,26,2648 +6674092,wladyslaw011,1724,1,2104,1642 +6677893,superpuszka,0,1,276,2199 +6692351,nicoleesme,1627,1,1381,1770 +6704738,Miko6,0,1,307,2169 +6736666,szopen966,0,0,0,2919 +6766467,slawekx28,0,1,255,2217 +6786449,%3DWilku%3D,29,6,53393,671 +6795280,SUPER+KR%C3%93L+PAWE%C5%81,0,1,3945,1416 +6818593,CzarnamambaPL,120,111,843784,172 +6821136,3dychy,1779,2,7537,1183 +6822085,xmox,0,1,626,1981 +6822957,LegatusXI,85,59,520985,261 +6837266,swenty1968,0,1,4996,1327 +6851059,mustanq123,0,1,86,2506 +6853693,lukiuki,7,87,667310,214 +6857973,popki+2,722,11,31666,796 +6870350,13kris,39,19,143466,474 +6882236,Rosawow,1293,2,11779,1045 +6884492,Janusz+IV,0,7,50279,689 +6892517,D.M.K.,0,4,9782,1089 +6910361,Kuzyn+Kamil,7,36,142814,476 +6920960,grzesiek9521,1,277,2386881,31 +6921135,aksamitny71,1226,16,76573,596 +6923061,liberator1992,80,7,24354,866 +6925574,zyrer,1416,1,1857,1692 +6927748,MIREK2222222,377,1,3072,1520 +6929240,ruch135,301,46,345168,330 +6936607,.achim.,1,433,3855294,10 +6948793,Kuzyn+Bartosz,7,90,787673,182 +6955809,Hank+Evans,0,1,4982,1330 +6956104,marcopolo1324,1597,14,69800,615 +6968280,bartek696,1707,1,26,2649 +6986891,pasy18,862,1,1583,1736 +6995252,krycha9867,0,1,278,2195 +7007969,1edc,1317,1,26,2650 +7012651,Kr%C3%B3lowo+Z%C5%82ota,1148,7,19923,915 +7013660,jjaare,29,1,802,1915 +7023110,vanromex76,0,1,1326,1780 +7024597,artur1488,0,1,764,1932 +7038651,Yoh+Asakura,35,53,358536,319 +7047342,Rok+Szczura,85,106,1107684,123 +7064954,shaggy909,1790,8,32971,787 +7067846,oisaj-org,0,1,26,2651 +7069895,orko3,0,1,167,2358 +7083877,jumperr88,1735,1,1999,1666 +7085502,Kuman333,291,125,980289,149 +7085510,magnats,7,90,601563,239 +7092442,Sir+Valense2,85,117,1116008,121 +7096208,gis1969b,0,1,26,2652 +7097727,spiderandsobol,0,15,88622,565 +7098955,Dragonus80,830,7,45831,711 +7114815,neo328,0,1,158,2367 +7125212,0xadam,85,28,237607,388 +7127455,rychor,0,9,62392,644 +7135037,H+Cezar,210,1,3701,1439 +7139820,-Efektywny%3F,120,101,920280,158 +7139853,gregorek18,1523,15,68144,621 +7140413,44dor,374,1,901,1887 +7142659,tomson89,85,70,610556,233 +7150683,sos1234,0,1,1258,1800 +7150939,gulden,722,2,4994,1328 +7154207,sylwek2011,301,90,804264,179 +7157316,TheHacker,693,0,0,2920 +7158871,Sapir1,475,1,6337,1255 +7180447,rainyday,1792,1,371,2110 +7181335,Sque,432,1,10160,1079 +7183372,MarcinFix,7,114,970477,151 +7210775,torys666,1052,1,3501,1462 +7220989,DontCry,0,1,3807,1429 +7221139,Nie%C5%9Bmiertelny97,452,3,7051,1215 +7226782,soloma1500,291,32,152476,463 +7230689,rhodos77,0,1,3689,1442 +7242969,gazolek123,0,1,79,2516 +7249451,Max+Delor,47,190,1662069,67 +7259218,kraczy%C5%84ski,0,1,1229,1802 +7259690,SAGITTARIUS70,847,6,14674,1002 +7262049,amon201,0,1,926,1883 +7271812,spiryt+pro+elo,1,164,1248167,99 +7272223,robus7,4,2,9523,1105 +7286392,GrubsonSzczecin,0,1,26,2653 +7287342,martin1181,157,1,4885,1335 +7297881,Zawisza160,0,0,0,2921 +7313287,Striker09,1530,1,1043,1848 +7318415,bula9001,785,5,26242,845 +7318949,czarny8216,1645,2,7990,1158 +7322865,Sonomi,0,1,26,2654 +7333216,Majsmen,936,8,77623,591 +7337110,kwiatek7777,8,1,1162,1816 +7340529,morra12311,35,67,641795,221 +7346797,saladyn89.,758,4,10519,1073 +7349282,Sta%C5%9Bkinio,7,9,53311,672 +7357503,kajko1962,0,6,30789,808 +7365299,wiewioreczkavivat,452,1,3767,1435 +7386358,upalamba,1336,13,64741,637 +7394371,adi7474,291,48,426936,293 +7409475,Xenae,1597,3,24412,865 +7417116,master%5E_%5E,666,18,177387,437 +7418168,smok42+PLEMIENNY+BUREK,1140,20,170721,443 +7422002,korek62,1735,1,1373,1772 +7427966,Pitter82,441,10,29114,823 +7428666,Maliniak77,285,1,4696,1356 +7431759,De+Integro,0,1,32,2617 +7440474,Lepsi5,0,1,3009,1527 +7449254,Bochun10,47,194,1728259,64 +7462660,vequs,47,141,1238163,104 +7474527,kerto13,157,3,5178,1316 +7477695,Pupenplatz,1727,0,0,2922 +7485877,ro98,0,12,59757,654 +7491093,nubeN,47,90,855843,169 +7492426,Aritian1,0,1,7448,1189 +7494178,minijuncio1,548,1,317,2157 +7494497,damiant61,291,107,811011,178 +7495050,Ksi%C4%99ga+przyrodniczo,0,1,102,2473 +7499430,kosmo1972,24,1,5843,1281 +7508390,MauritiusMagnus,1610,1,138,2395 +7516892,jaromirek,1333,1,764,1933 +7518529,LAROX,722,2,12874,1030 +7520280,barex10,29,1,4046,1407 +7526090,Ballab,847,2,4653,1361 +7528491,Bocianikson,35,28,192062,424 +7530708,SlodLenka,1312,6,17355,965 +7539223,Destruktorix+I,0,1,124,2437 +7540891,Ras+7C,369,84,356870,320 +7550472,Sir.Gardier,234,1,9604,1100 +7555180,LukasKeller,291,34,240289,387 +7557683,dadek26,1597,3,7313,1201 +7559093,WJHK,1399,1,5667,1291 +7560085,cyaaaa2,0,1,134,2406 +7560474,JasJ,33,10,62121,645 +7563185,zajadek96,0,3,7826,1168 +7563943,bukai,285,4,18928,936 +7574317,sir+alec,0,0,0,2923 +7575174,maniu%C5%9B1968,0,1,1084,1839 +7581876,sas584,120,174,1614467,72 +7588382,buczkowice1998,291,51,427976,292 +7589468,Filipets,369,67,500728,270 +7590135,Arystek,1523,4,20525,909 +7590275,MORUSGRIN,0,1,7252,1205 +7605446,Danka+Ch,847,1,475,2045 +7629036,ziomeka4,0,1,2408,1595 +7646152,Kierownik44,1597,4,11467,1050 +7651093,Hankier,309,20,141931,477 +7661091,stecj,157,1,7345,1200 +7663945,Sir+Hood,0,1,26,2655 +7675610,kawskole,194,6,13341,1022 +7687862,Ale+AHMED,1648,1,338,2139 +7691817,czesc,1052,1,2706,1567 +7695478,Turbo+Gumi%C5%9B,0,0,0,2924 +7695659,MrZibo,0,1,1129,1824 +7699382,Diabe%C5%82+x+Sok%C3%B3%C5%82,0,0,0,2925 +7707390,Hellooo,0,2,7243,1206 +7720028,blok+konk,0,0,0,2926 +7721441,elisea,0,0,0,2927 +7733128,Helios874,33,1,230,2250 +7749444,TCH1,355,1,3988,1411 +7750835,Drago+Mich,0,0,0,2928 +7751626,neron+Lodz,0,1,508,2025 +7756002,HORUS+33,369,55,461108,281 +7758085,Obywatel+Leszcz,1,180,1585542,73 +7765098,per%C5%82a+1983,0,10,90629,557 +7775311,lagoony,432,3,18825,938 +7781236,gajawa,59,1,634,1975 +7787254,ziutek+1,597,1,7559,1181 +7802435,nawi4,0,1,1070,1843 +7803631,Helios322,432,1,869,1896 +7809316,japacz,0,1,26,2656 +7820575,Mogok,0,1,173,2346 +7829201,hbmacko,120,78,677151,211 +7831811,dragon622,412,1,219,2272 +7842579,basket60,785,30,208683,409 +7844370,grzesiek576,0,1,299,2176 +7860453,Bombardier11,369,44,324986,345 +7865511,Mr+Dymer,1636,1,3622,1447 +7866994,znek8,0,1,1015,1858 +7897925,Destroyers96,1312,0,0,2929 +7899232,seafighter1,29,1,7751,1173 +7906167,Kupidynek,0,1,26,2657 +7910501,Wigerek,0,1,271,2202 +7913305,cycu269,1724,1,1871,1690 +7914131,mateuszek15517,29,1,5067,1322 +7915966,JungleBoyz,85,4,28164,828 +7919620,Voxeti,1336,6,31734,795 +7927374,Knykie%C4%87+Dyl,0,1,196,2307 +7929731,rutek75,1735,1,4267,1388 +7951206,Cegla+x+DrTaxi,0,1,41,2608 +7964548,ABE+1,0,1,181,2335 +7970506,botlike,0,1,26,2658 +7973893,Tedock,301,90,708894,202 +7976264,komandos48,120,144,1180389,116 +7982117,diabolllo,0,1,1043,1849 +7985956,Bocianv2,1293,1,8462,1138 +7995033,adahin,1411,1,487,2038 +7999103,Franko+Mocny+2,1226,22,144438,472 +8000875,B.+Moon+l+Black+E.,35,230,1981975,47 +8004076,ExpertoCredite,7,194,1705869,65 +8006209,Szymon9904,0,1,692,1954 +8013349,Malinka696,35,33,282095,362 +8015775,nihal3377,1052,3,10718,1064 +8015955,kacper10ciupek,441,2,9333,1111 +8019812,Vladoks,377,1,5940,1275 +8043286,Saladyn+Pustyny,0,1,26,2659 +8048374,szlon,666,21,158931,450 +8055581,Botty,0,1,228,2252 +8061953,artnow,0,1,119,2448 +8062053,Dam-,0,1,1765,1707 +8078914,Panicore1,35,127,1159541,118 +8082376,Chefrenus,0,1,2887,1542 +8083365,Segadorr,0,1,26,2660 +8095505,iSeAtakuj,0,1,26,2661 +8096537,koffi950,85,80,724862,197 +8097158,maybe-later,0,1,1467,1756 +8099868,Brown,1480,56,469814,279 +8106333,wojtas0112,778,1,213,2280 +8123790,%C5%81YSY+WIATR,1128,10,23714,875 +8128478,szabla32,0,1,560,1999 +8134135,SHIRINA,1573,1,468,2047 +8138506,jablonka345,85,43,405343,300 +8153179,Gryffinhart,785,3,18354,942 +8153941,IIIIIIIIIIIII,0,23,133106,488 +8155296,maniek+1985,85,56,521504,260 +8160123,Ahaber,0,0,0,2930 +8167837,diwad11x,0,0,0,2931 +8175236,Joker77777,1480,14,18239,943 +8184383,ProXima26,1411,7,43373,722 +8185721,endwar77,0,1,1918,1681 +8191129,Diabellny,35,23,216775,405 +8192845,silesias+marco,1161,2,13377,1021 +8197987,Andragon21,0,1,61,2558 +8199417,abimm5644,369,91,917993,160 +8201460,MUNq,120,69,664238,215 +8204028,moskittt,0,1,307,2170 +8204926,crisyss,1551,0,0,2932 +8217130,dalesz1212,29,1,947,1881 +8218433,yam1,666,1,169,2355 +8224678,marcinnn19922,1226,16,126806,497 +8239348,gejus007,0,1,128,2426 +8240209,nagtagumpay,89,0,0,2933 +8240677,saskie123,176,6,41703,734 +8259895,strateg5,106,51,261884,375 +8268010,WALECZNY213,666,36,232895,391 +8274566,dzoper1000,0,0,0,2934 +8288459,baka21sklad,210,0,0,2935 +8290773,Chubi+i+marcinzero,0,1,26,2662 +8292737,wodzu+22,31,2,7837,1167 +8305343,julix5,503,1,2332,1609 +8309492,MANTOQ,0,1,204,2292 +8312412,SwwQ,0,1,26,2663 +8320319,niunio69,59,1,4176,1395 +8323711,Yaooo,85,56,504306,266 +8325063,krzysiuaa,1523,0,0,2936 +8325700,bambinos66,210,2,7524,1185 +8337151,lisseks,85,133,1241146,102 +8362886,lozi20,1573,1,174,2345 +8366045,%2A%2ADzikos%2A%2A,106,20,136688,483 +8366849,stopercool,0,1,133,2409 +8369561,GELU-GELU,80,0,0,2937 +8369657,czarna+per%C5%82a,0,1,1175,1813 +8369778,PARASOL+X,120,48,436353,287 +8370183,ZWIADOWCA+2,0,1,771,1930 +8373234,20Cinek20,1626,0,0,2938 +8379825,Frolunda,474,1,536,2008 +8379871,bula1101-95,0,1,3662,1444 +8386608,milosz1612,0,0,0,2939 +8399822,Future+Traveler,0,1,26,2664 +8400180,plelinia,412,5,42910,726 +8400975,leo1414,234,2,3410,1483 +8408007,admirer2,607,1,1987,1668 +8411874,uks13,841,1,771,1931 +8418489,Inpetto,1140,10,71555,607 +8419570,Maddov,47,116,1069193,131 +8420564,dawinczi397,520,0,0,2940 +8423835,niunia+wredna,847,1,484,2039 +8425594,bobo2210,1582,1,7987,1159 +8428196,Sonofrad,301,64,500563,271 +8429484,MarekLH44,412,1,2003,1664 +8434727,Hektor888,452,1,886,1891 +8438707,rom2009,120,18,143544,473 +8444356,optyksrebro,309,19,190005,426 +8444698,Menager86,1691,4,7264,1204 +8459255,pallad,85,99,951452,154 +8468862,pol992,0,1,121,2443 +8478874,Tyson+23,1597,1,5802,1284 +8483719,Maja40,29,1,1856,1693 +8501514,Kugiel102,115,7,45603,715 +8502135,OZON-01,1735,1,1189,1810 +8503255,Czapla506506,1411,2,5682,1290 +8510466,RychuR,0,0,0,2941 +8513699,JW1964,80,4,23167,880 +8539216,adamkk222,120,138,302479,355 +8541236,katoryjcias,1140,8,69115,617 +8551316,vaksso,0,1,113,2459 +8552893,dynamit666,29,1,2421,1594 +8553904,Byziaczek,157,1,2140,1638 +8574922,mleczyk123,0,0,0,2942 +8582487,Jarl+P%C4%99kniny,0,2,16548,975 +8583185,kaka858,1754,1,1131,1822 +8588789,lolobolos,944,1,8790,1125 +8593382,lee-1,0,0,0,2943 +8595633,pi0run,33,1,284,2192 +8606809,sengus+avan123,0,5,25248,858 +8607734,EnPater,785,60,523391,258 +8609713,Vlo4,1597,6,33157,786 +8612358,Brayan20,120,32,254918,379 +8616713,Vasqu,0,1,206,2290 +8617889,Herold102,0,1,1669,1720 +8621570,iminlove,0,1,173,2347 +8622901,ArturNowy,1597,4,13272,1024 +8627359,Gregorius+XII,120,46,377741,310 +8630972,PijaniiBracia,47,308,2582551,19 +8632462,rohhan415,47,65,482769,273 +8644299,MAXIMUS-1,0,1,26,2665 +8646849,Margog,0,0,0,2944 +8649412,Unforget,309,53,480190,274 +8651917,markam27,0,1,1452,1759 +8654156,Taki+Pan,309,1,10362,1076 +8662264,-umino-,39,1,26,2666 +8662634,QiczikJP,1797,1,278,2196 +8665783,kolomoloolo,785,46,326551,344 +8669398,misiu809,29,12,61876,646 +8674163,klekoc,80,9,58845,658 +8675636,Hubix,35,85,797697,181 +8677963,WSWW,1226,26,157842,453 +8678008,Hanka32,432,1,9103,1118 +8696132,Sportowiec73,0,1,3606,1450 +8698728,zosia321,211,1,3372,1488 +8699429,Ma%C5%82pa07,1312,2,8634,1130 +8704709,AzER,0,1,26,2667 +8708728,vodka442,220,1,301,2173 +8709940,Khorstes,0,1,26,2668 +8710047,mikolaj4862,785,2,19844,922 +8720321,jajoasia,29,1,782,1924 +8724192,michal21871,1411,22,88685,564 +8728202,Sharkox,0,1,26,2669 +8729672,Wychylybymy14,71,20,187597,428 +8740199,miterez9,1,85,733900,195 +8741336,lord+zbyszek1960,1724,1,3207,1504 +8742874,Monia+i+Ruch,301,26,178793,435 +8746112,King+Grzes,0,1,47,2588 +8752714,Kamol1998,1735,7,21890,891 +8753956,GanjaMafiaTHC,1052,0,0,2945 +8758298,piotr1960,0,1,1578,1738 +8760124,Bonaro,0,1,4359,1383 +8760563,dziwas2,377,1,1899,1683 +8766033,Your+Nightmare,0,1,46,2595 +8772425,FilozofMiejski,0,29,98841,542 +8772923,szalony+iwan,200,1,531,2011 +8773151,Lord+Zabijaka1999,0,1,47,2589 +8773967,chudyn,0,2,14564,1004 +8776452,polotny33,1477,1,307,2171 +8779575,I+ZNOWU+KUBA,369,51,272719,364 +8784866,Spasny,0,1,6528,1240 +8785003,ignacy,29,4,10242,1078 +8785314,Jehu,85,72,556547,250 +8788366,Lord+Arsey,35,128,1247224,100 +8790027,Sir+Wiking,0,1,109,2466 +8792844,atotadzio,287,3,10461,1074 +8796215,Dnabuk,0,0,0,2946 +8806145,MegaMocny,1724,1,2208,1628 +8811880,tomek016,1023,7,13380,1020 +8812550,przytulaczekROBO,33,1,2517,1584 +8815353,Lord+Pawe%C5%82+I,375,0,0,2947 +8815749,Sir+Black+Blood,35,21,204164,411 +8816336,Lord+%C5%81ukasz05,96,1,2371,1601 +8819990,bitefight1998,0,1,361,2117 +8827094,ElitoPogero,39,10,88024,568 +8831977,skowron,89,1,168,2356 +8838462,Wilkuwolf,778,1,282,2194 +8839171,Marwinek,0,1,3504,1461 +8839403,IgnacEs,255,3,22893,882 +8841266,Bandii.,47,672,6139081,4 +8842936,z4l3wski,862,8,71834,604 +8843774,Lord+LovelyBones,624,3,19050,933 +8847546,traczu1224,1,242,1917219,51 +8849267,rzemo,0,0,0,2948 +8852026,forestrr,1597,1,7463,1188 +8853146,przemek2707,1312,1,7662,1176 +8855679,chopek1,210,1,2776,1551 +8856821,kosiarziii,125,1,7354,1197 +8868716,Lord+Sir+szok,554,1,3412,1481 +8876551,wodzuniunio1,0,3,9198,1115 +8877156,Woja7155,1480,26,210217,407 +8877462,Avgan,0,1,116,2452 +8877886,Lord+kongo,234,2,7394,1195 +8886999,kamien335,0,1,54,2567 +8889781,wuener,0,1,462,2052 +8890346,brif123456789,285,2,7652,1177 +8890611,Harasi,0,1,47,2590 +8890793,Ronoxo+and+Zaruss,432,0,0,2949 +8895532,KubekXD11,432,0,0,2950 +8897100,lord+leoni,0,1,884,1892 +8900955,Pablosta,85,34,271339,366 +8907069,kcys2,0,1,47,2591 +8907258,adrianww13,0,1,312,2162 +8908002,Kuzyn+Platynov,7,63,514474,265 +8908544,And%C5%BCi+San,1523,1,5624,1293 +8916982,morus854,1735,18,67119,626 +8922870,MAX+LU+Prime,1753,1,774,1927 +8924845,Totalnie+Mocarny+Go%C5%9Bciu,0,1,136,2399 +8925624,Napastnik.,39,9,57263,665 +8925695,tutek101,301,20,151945,465 +8926516,pogromca+xcc,0,1,176,2342 +8942143,bartek145972,0,1,339,2136 +8947021,Gollum18,0,1,3252,1500 +8947705,PysioSsie,0,1,286,2189 +8954402,darkmike01,369,75,697936,207 +8956715,Norane,29,1,212,2281 +8963720,Lord+Binladen,1039,5,32713,788 +8966820,arti..,369,21,158430,452 +8967440,Many,1621,44,268640,367 +8968520,Fieffe,0,1,76,2521 +8970390,dodocolo,0,1,2661,1572 +8975453,kolejne+multikonto,0,1,26,2670 +8976313,tranquill,291,52,368228,316 +8978080,Gacek565,1498,1,2745,1559 +8980651,cyni123,369,60,502402,268 +8983479,AnImA83,0,0,0,2951 +8984336,Nicosta,0,1,26,2671 +8985694,robert15365,0,0,0,2952 +8991696,dziadek1974,1724,5,21157,900 +8994199,Froozantenna,0,1,1838,1696 +8997874,Sir+lechman,452,2,6389,1249 +9000253,Rokkas,0,0,0,2953 +9002278,badidek,0,1,26,2672 +9003698,Quenthelq,39,31,247081,382 +9004337,mariuszf,0,1,98,2487 +9006528,KESHIK,0,1,48,2585 +9012894,maciej55413,0,1,68,2538 +9014108,ewciamariusz,1411,1,1131,1823 +9016464,Sir+lobbek,210,1,3491,1466 +9016560,Vikingen+x+Control360,39,3,22215,889 +9021037,BD84,377,1,1979,1669 +9021920,Sebek4991,785,1,10026,1083 +9023703,SirBia%C5%82y+VII,369,100,889640,165 +9029627,KRIS+74+PL,452,1,26,2673 +9029928,Smykaj,1039,8,33208,784 +9031705,SIR+UNITED,0,1,44,2600 +9037756,Psycho+McB,120,38,244810,383 +9043233,marianoitaliuano,0,1,26,2674 +9047658,Hanibal25,0,0,0,2954 +9048764,BagPipePL,35,2,20523,910 +9053254,malwina1,1735,1,976,1874 +9057880,mamcos98,194,1,26,2675 +9060641,Koloalu,7,43,378628,309 +9060885,z%C5%82yy+banan.,862,3,15142,994 +9067168,mevest,0,1,42,2606 +9071253,Lord+Sir+bogdan,0,0,0,2955 +9073704,xFacHoWieCx,0,1,26,2676 +9090040,czubak91,0,3,6697,1231 +9091557,SzybaSc,0,1,3085,1517 +9094538,koziki,0,9,38344,750 +9095581,Lord+SnOOpDoG,210,3,8465,1137 +9096738,MistycznaParowa,0,1,188,2325 +9097545,Lord+%C5%81ukasz1997,210,1,2092,1643 +9098296,solidna,0,1,182,2332 +9101574,Hashirama,35,51,371362,312 +9103424,kiokiokio,862,12,74275,603 +9106642,Aftjero,1523,0,0,2956 +9106690,teduniook,0,2,4509,1368 +9113064,OlaLuv,722,6,18479,941 +9114562,Tohsaka+Rin,0,1,394,2091 +9120206,hubo00,1336,13,64680,638 +9124682,Unknown,0,1,150,2379 +9128606,KamykosXD,0,1,70,2534 +9129046,misiu12193,0,1,339,2137 +9135525,apokalipsa25,0,1,26,2677 +9136062,bercik53,29,1,1453,1758 +9138661,Lodar93,0,1,26,2678 +9140898,kmakma,0,2,7775,1170 +9147518,przemomam,944,1,2253,1624 +9148043,I+am+best1,862,44,296663,357 +9148439,przembarca20,1108,1,8120,1150 +9151549,Brzydal+3-5,0,1,3250,1501 +9153430,-+V+-,29,1,235,2245 +9154293,Terror+x+Miniqo,0,1,26,2679 +9154820,wilq332,0,0,0,2957 +9163140,.Krakers.,1368,8,25076,860 +9167250,smieli,7,81,668460,212 +9174887,JedynyTwardyPrawdziwy,85,71,705616,205 +9179700,KonopiTop,1772,1,2516,1585 +9180206,Larvanger,85,30,221444,399 +9182487,Sir+kamil+1999,0,1,119,2449 +9185931,bury16,12,1,5995,1269 +9186126,KingJulian,666,27,227054,394 +9186877,Bernhard+Roth%2A,1806,1,206,2291 +9188016,byMuerte,301,150,1203969,111 +9191031,Lord+Yogurt+I,1763,5,23924,873 +9195661,M%C3%B3wMiHarpagan,1793,11,67321,624 +9199885,Sir+maniek,1480,26,151459,466 +9201946,kojak14,1799,1,26,2680 +9213654,maniek38,0,1,26,2681 +9219778,miki0412,0,1,166,2359 +9225795,SatsIronSide,0,1,6136,1264 +9228039,sKev,291,86,663676,216 +9231765,Lord+Jack+Carver,375,1,3949,1415 +9234594,prince+rudeboy,385,1,136,2400 +9235561,Chesterton,1312,12,62929,642 +9236866,notfair.,47,293,2543824,22 +9238175,Mucharadza,291,86,845999,171 +9239515,Wied%C5%BAma100,1411,21,94287,553 +9240154,JackBlant,847,2,4467,1375 +9247737,lukempire,0,1,26,2682 +9253494,LordDeltax,1470,6,45642,713 +9257513,adekkolt1,285,1,26,2683 +9260447,Mursilis,0,1,2540,1582 +9262877,Blautek+Janello,0,1,6399,1245 +9264752,Hitman003,1480,21,215655,406 +9266092,julka27,452,1,2120,1639 +9270302,Sir+Pazdan,452,1,1281,1791 +9272054,Gracze,120,102,963354,152 +9277642,cago1994,1530,1,5319,1310 +9280477,Kampaj3,47,278,2572859,20 +9280679,Kross+x+Smerf,0,1,26,2684 +9282669,Johnny+B,1389,1,4663,1359 +9282974,Geamel,0,1,26,2685 +9283142,Zi3lonoMi,412,2,10744,1062 +9283775,nani91,412,11,38684,749 +9291984,Alessaandra,1,213,1822825,58 +9292037,VestoreI,0,1,1581,1737 +9294339,peniozdw,0,1,26,2686 +9299539,DefinitelyRlyTheD0orek,1,174,1394283,84 +9300026,Rangiku+Matsumoto,0,1,26,2687 +9302748,Pij%C4%99Murzyniank%C4%99,0,1,69,2536 +9312528,mateszko166,31,1,3883,1423 +9314079,Kamilex00,291,101,765826,188 +9314153,Giermek+franek,0,1,3781,1434 +9318449,paulinarzy,1338,0,0,2958 +9319058,walka500,7,141,1347755,91 +9320272,Raukodel,0,3,12203,1041 +698143931,Thresh,71,27,264662,369 +698147372,hardkour,71,41,317779,349 +698147969,Wysypisko+%C5%BBycia,1128,1,99,2485 +698151302,tomaszek74,72,1,2045,1652 +698152377,DefinitelyRlyTheMackobl,47,888,7474323,1 +698152498,Murano,31,1,2453,1590 +698160606,denq,47,157,1240497,103 +698162153,Lord+Magik77,0,1,75,2522 +698162312,delta6583,594,1,405,2084 +698162357,SirCzoper,0,1,1974,1672 +698167138,borysdragosani,785,24,60437,653 +698167153,ok3m,0,1,1124,1827 +698167413,Przechy%C5%82y+i+przechy%C5%82y...,0,1,26,2688 +698169715,misiekma%C5%82y,0,1,3437,1475 +698171150,DRAGONMIR,1757,1,1274,1795 +698178312,mygos,452,13,37444,756 +698182935,xxShiva18xx,0,2,10045,1082 +698187023,dzbanek54321,1597,1,4472,1374 +698190039,mirmyn,0,1,1355,1777 +698191218,SeexyPapi,85,409,3136853,15 +698200480,Ida+Madame,285,20,113414,514 +698202162,Volf102,0,1,138,2396 +698203538,Stadar,0,1,26,2689 +698206922,Sir+Alano1,0,1,86,2507 +698207545,Lord+%C5%81oszo,0,1,696,1952 +698212272,Szyderczy+promil,686,0,0,2959 +698215322,MeRHeT,120,131,1022602,141 +698226224,playbackp,0,1,26,2690 +698231772,Psykoo,1,311,2511033,25 +698232227,Vendea,85,46,386180,306 +698234770,zolw222,0,7,60915,650 +698239813,Tottal+Score,1,101,991913,147 +698241117,LordGeorg,1039,8,51493,681 +698248308,Mareaa,862,1,1279,1793 +698258283,Gran+Torino,1336,3,19896,916 +698262808,Akantos,0,1,50,2582 +698264828,Elener,31,1,2799,1549 +698273555,Sir+Paolo75,778,0,0,2960 +698278542,Lord+Znienacka,1597,5,19641,926 +698279195,CzerowyDziadek,24,1,1595,1734 +698281635,Genotypek,0,1,132,2414 +698281649,cycedoziemi,0,1,8500,1136 +698285444,Maniaq1,369,155,1626652,69 +698290319,homektyjek6,862,9,84521,575 +698290577,Mercel,47,192,1317633,94 +698295651,klez,666,22,140053,478 +698298333,Timb3r,0,1,26,2691 +698299678,KakaowyBudyn,1609,0,0,2961 +698305474,SajmonNijoo,301,46,398199,303 +698312347,Gienioslawek,0,1,3064,1521 +698315881,Lord+dankos,0,2,6338,1254 +698321130,liliput81,1347,1,1665,1721 +698324343,Kurji,0,1,7434,1190 +698330221,ninja92,336,0,0,2962 +698331388,ZYXW,636,1,3759,1436 +698338524,Nice,1683,9,49097,699 +698342159,Blaszczu11,291,42,354054,322 +698345556,Wiezowiec,1336,12,86850,573 +698346318,ByXon,0,7,52934,673 +698346954,marek46aa,13,1,454,2056 +698349125,KDK-,35,9,47031,705 +698350371,JuanDe,47,114,895225,164 +698353083,Mateuszekbezuszek,785,62,414180,296 +698356304,Sir+Zdzich,1312,10,37124,760 +698361257,grolas,1,234,2120429,43 +698363063,YenSu,157,1,1809,1701 +698364331,wdamianse,47,93,723923,198 +698365960,MrStradivarius,309,165,1401852,83 +698368493,Kaszyce131,1312,3,8374,1142 +698373265,Imperator+ciemno%C5%9Bci,0,0,0,2963 +698379979,zewlakow6,0,1,26,2692 +698380048,lordlewy10,0,1,26,2693 +698383417,aver121,944,1,8694,1129 +698384662,jar-11,0,1,1611,1729 +698384726,marszalek-duck,452,1,295,2180 +698385619,mioduch,686,1,2663,1571 +698388041,Jestem+Pogromca+z+TOPu,750,1,249,2224 +698388578,JJJuriJJJ,47,167,1418641,82 +698403524,kamillo220,0,1,26,2694 +698410946,RicoTW,0,1,48,2586 +698416970,zioms1,85,153,1050065,133 +698420691,Lord+Lord+Franek,1,239,2325383,32 +698431574,mk2014,0,1,2186,1632 +698442418,wolgler1234,194,2,14255,1010 +698455203,Mufferr,0,1,120,2447 +698457392,App1e,285,1,1413,1765 +698462285,%C5%BBulioner,24,2,4893,1333 +698472522,ladio,0,1,225,2261 +698477883,rufusix,1523,1,2761,1557 +698485268,wabos,0,1,128,2427 +698486277,dragonk6,666,0,0,2964 +698488800,Galactus,0,1,237,2238 +698489071,3lobit,1,187,1560964,74 +698511920,tarzan04,1627,1,2716,1565 +698519133,Isabella,96,1,2197,1630 +698526036,lordtados,373,2,13062,1026 +698526500,Fontowcy+Dual+i+Ma%C5%82piake,0,1,26,2695 +698540331,Kajtej,1148,6,28895,825 +698542183,falat030,0,1,59,2559 +698545981,Adaczu,39,0,0,2965 +698548451,Paul2493,651,1,3060,1522 +698556600,snake7,210,1,130,2417 +698557087,SenTu%C5%9Bka,594,0,0,2966 +698562644,DawidN,301,78,650266,219 +698575453,resp,0,0,0,2967 +698580310,warkoczynka,0,1,844,1906 +698582741,ogri,0,0,0,2968 +698585370,S1Joker,71,153,1371239,87 +698588535,krismal,1,127,1205656,110 +698588812,Lord+Sir+felek,194,13,65165,633 +698589866,Sir+Arczi99,1108,1,2005,1663 +698592565,filip9399,1724,1,26,2696 +698592907,MamTegoDo%C5%9B%C4%87,0,1,5928,1277 +698599365,RoBaCzEk101+reaktywacja,35,53,446152,283 +698604229,greenapple,0,1,26,2697 +698605444,1kip7,1357,0,0,2969 +698613394,SOL+menka,33,3,9716,1095 +698620694,rurek50029,71,51,335811,336 +698623373,rt27,0,1,1262,1798 +698625834,PjetreQ,309,188,1287509,97 +698630140,Espel132,0,1,7265,1203 +698630507,Mpower+e36,1411,17,114549,511 +698631190,gracjan1995,29,1,1811,1700 +698635863,JaaMwG,35,399,4032853,7 +698639278,dominik121,0,1,194,2313 +698641566,Kuzyn+Patryk,7,79,753542,190 +698645802,B.E.R.S.E.R.,0,1,26,2698 +698647624,Kayohix,0,1,6230,1260 +698648691,Kr%C3%B3l+Mieszko+I,0,1,122,2441 +698650301,Kopersss,71,37,329815,341 +698650509,DefinitelyNotLegion,0,2,7881,1165 +698652014,Maru,71,51,416137,295 +698652171,lordkali91s,106,15,87119,571 +698654164,Jabolek,0,1,3119,1513 +698655576,brutal29,31,1,56,2562 +698655859,Chmelnycky,0,4,19191,932 +698658087,techniq,0,1,67,2544 +698659980,zawodnik,120,637,6166974,3 +698661697,carrex95,0,1,266,2209 +698663855,Dzieciake,785,61,346976,328 +698666810,Gryfios,85,81,734480,194 +698667255,Szary+Ubek,210,1,733,1942 +698670524,Simon21,291,48,370724,315 +698676429,halooogan,0,1,26,2699 +698676788,ligedman92,377,1,1792,1702 +698677650,GranicaPSK,847,25,71827,605 +698680806,spartakus270,722,9,65318,632 +698687597,kjs12,377,1,628,1978 +698687678,ciniol97,0,0,0,2970 +698689858,kraku123,0,0,0,2971 +698692141,barczi1979,0,1,3445,1472 +698693697,AGH+Szary,35,2,14286,1009 +698696420,prezes+naczelny,117,1,3494,1465 +698698087,Sir+xyz1,0,1,1129,1825 +698701911,Xerez,106,12,41058,735 +698702991,carnage234,85,116,948171,155 +698704189,Reco,120,235,1990340,46 +698704875,Dominator2014,0,0,0,2972 +698712383,pRoFiCe+II,0,1,4844,1339 +698723158,kaliber84,369,64,440256,285 +698736778,Lady+mysza89100,1551,7,16990,969 +698738810,King+Kamil+I,377,2,5149,1318 +698739350,SaFaR,1,193,1773207,62 +698743511,Lech798,24,1,241,2232 +698747719,frrrantic,0,1,243,2230 +698748891,Sumienie,59,1,1702,1717 +698749311,Mergio,0,1,1489,1752 +698754087,Santa+aka+Dziadzia,1802,1,26,2700 +698757439,Kristoffs,157,24,196737,416 +698757487,Halny,0,1,2345,1605 +698766178,Peter1,1573,1,408,2083 +698766369,SHIZA,1573,1,1957,1676 +698766454,Doniel,1573,1,222,2269 +698768565,Ronin1995,301,182,1548756,75 +698769107,DobromirPan,7,88,582954,246 +698776998,Monia18,1573,1,1772,1705 +698783754,proof333,0,1,7960,1162 +698785538,LastWish,234,1,645,1970 +698786826,Sir+develes,369,111,1016410,142 +698789253,Galasfree,1039,1,2927,1538 +698791053,Kanut,106,1,200,2297 +698795589,endriu1990,210,1,633,1977 +698798180,nocna1993,0,1,26,2701 +698806018,krzysztofgucio,33,13,70618,611 +698807570,xHavajek,47,244,2286053,35 +698811281,SHENRON81,0,0,0,2973 +698817235,Lord+Baszczu123,157,3,19296,931 +698823542,AwangardazCiechanowa,862,4,36659,764 +698826217,AllAdin,0,1,333,2144 +698826986,Chirucas,39,17,51678,678 +698829590,S%C5%82odki+Urai,1,37,331603,339 +698830638,ascend,210,1,2705,1568 +698837993,Don+Quijote,0,3,5079,1321 +698842996,Ernesto+Hoosta,0,0,0,2974 +698845107,Swiechu,0,1,102,2474 +698845189,tesa,85,35,307170,353 +698848067,Sir+Hycel,305,1,7425,1191 +698848373,BloodyMath,722,10,29652,820 +698849979,Mihalina,112,1,509,2024 +698850251,NeXi,0,1,26,2702 +698850319,Patrz+Ale+Nie+Zjadaj,0,1,26,2703 +698854238,Querto,0,1,237,2239 +698855681,Pieguss,71,1,162,2363 +698866770,muchaPG,0,1,457,2055 +698867446,pisiur71,85,71,667536,213 +698867483,pa+ZZI,85,118,736930,193 +698879638,leito3,1760,4,8366,1143 +698881022,sila,1523,8,42893,728 +698884287,Nervouse,47,132,1299770,96 +698885960,Sir+fojerman,0,1,97,2489 +698895940,tnt3nt,0,13,44626,718 +698897472,AndrewwXYZ,1431,1,1310,1785 +698897841,Error%3F,0,1,227,2255 +698905177,TheWolfie,1127,8,49418,697 +698906190,MaraczxD,0,9,58718,659 +698906643,ArturLublin,0,1,1083,1840 +698908184,EXPUGNATOR,7,124,903421,163 +698908912,Chybik,35,9,92209,554 +698911639,Kafaro,0,1,460,2053 +698913618,kukis,157,1,2494,1587 +698915069,Squander,0,1,219,2273 +698916256,Blak+widow,0,1,237,2240 +698916948,Jose2015,0,7,33606,782 +698926585,Sir+Rekin+II,989,1,9905,1086 +698931404,Lord+lukis2012,0,1,1718,1715 +698931998,katarzyna2012,0,1,1733,1713 +698934729,Gregor20-90,1523,5,14560,1005 +698936852,ksiazejanusz,0,1,1777,1703 +698938264,alanbebz,1669,1,894,1888 +698941586,Vito+Corleone+2,1627,1,1550,1743 +698946155,Lord+Lord+Giza,0,1,2596,1577 +698957176,Pogodny+W%C3%B3dz,29,1,311,2164 +698962117,pawcio231,47,404,3457451,12 +698971484,ryju15,47,225,1890554,55 +698983867,Rommel,117,1,371,2111 +698984562,krzok14,0,1,71,2531 +698987598,Aniuta,0,0,0,2975 +698993706,barot2,1480,6,52521,677 +698996782,MrDynamitePl,39,27,198590,414 +698998882,Ervin21,0,2,11078,1053 +698999105,Rose1827,35,79,782910,185 +699004723,PLSPopo,0,0,0,2976 +699006683,qsza,0,0,0,2977 +699007059,Lolitkaa,0,1,6536,1238 +699011096,freaky97,0,1,26,2704 +699011415,noidea,1724,1,458,2054 +699016994,TeenShey,785,25,157317,454 +699019249,LoRd+BoNiO,0,1,1831,1697 +699025262,Pif+paf...,96,1,989,1868 +699027000,Martin1991,1347,1,5600,1295 +699034094,Marduk,607,6,26591,842 +699037086,telimena,1735,4,8537,1134 +699039013,zbigbrader,1538,2,7382,1196 +699040431,Skylly,0,1,80,2511 +699054327,kondzio95rrr,0,1,155,2371 +699054373,chelseafan69,120,79,741183,192 +699056677,SHAKARA,1573,1,478,2043 +699057459,Crezys,1573,1,1525,1749 +699058253,Belmondo77,1573,1,1584,1735 +699062337,%2AZasad%C5%BAca%2A,0,1,105,2469 +699065686,Sir+skawiu,0,1,133,2410 +699066118,tomiwet,194,12,71745,606 +699069151,ToHellAndBack,0,3,9749,1091 +699072129,Charfa,1,307,2536905,23 +699075351,JAN1234,1312,1,4233,1392 +699075613,oliwer1996,0,1,5997,1268 +699083129,skogu,666,25,195307,420 +699084064,gsxr600k2,1809,1,178,2340 +699086436,bogmar,1039,0,0,2978 +699088529,waldek10,1411,9,50104,692 +699088769,Before1995,1,216,2069622,44 +699091553,dudus1992,0,0,0,2979 +699097885,epsilonPL,785,32,272192,365 +699098531,Flip+i+Flap,1,742,6466161,2 +699099385,Sessue,0,1,43,2603 +699099811,P0tulny,301,66,449915,282 +699111651,POLdi,301,1,10290,1077 +699117178,Sir+Borsuk011,369,4,31021,804 +699117865,WOJOWNICZKA.,0,1,9633,1098 +699117992,Bakun83,1312,15,88947,563 +699121671,KotAlik,71,55,372180,311 +699121777,Trevor05,0,0,0,2980 +699126484,Andzynek,291,36,336516,335 +699126490,Bipi,0,1,2769,1554 +699127156,donguralesko80,1411,2,7415,1192 +699127546,kinia+20,0,2,9425,1108 +699131849,brt007,0,1,172,2349 +699139964,dudek2222,1771,2,6944,1219 +699144886,jurek15,0,1,1267,1797 +699146580,Lord+miki12323,1,95,609436,234 +699146876,DzikiNieogar,1597,3,11515,1049 +699147813,Zakrecony,0,1,376,2106 +699148121,robertos1,1432,1,1627,1727 +699150527,F4T4L,291,55,476849,275 +699155679,marekwalczyk,0,1,214,2278 +699156456,KATOZAUR,0,1,77,2519 +699163285,Zukos,0,1,26,2705 +699167148,dekunka2,0,1,1853,1694 +699169828,Atanami,0,0,0,2981 +699170684,krzychu20177,1,70,637773,223 +699176234,Loker,39,3,29822,816 +699189792,Inko,120,191,1660111,68 +699191449,Chodziu95,432,33,192481,423 +699191455,KingPoiek,432,26,152176,464 +699191464,Lord+Queno,432,24,114512,512 +699194766,osilek123,35,17,156334,456 +699195358,Ribeskanina,369,57,430416,291 +699196829,Ethan+Hunt,85,6,36198,766 +699199084,Sir+JuriGagarin,1480,1,436,2068 +699201278,wodzu11,1052,2,15419,991 +699204478,DannyQ,722,5,34580,776 +699208929,tann,1,101,828267,176 +699212614,Lord+xXWiLQXx,377,0,0,2982 +699213622,Murzyn,309,85,657196,217 +699238479,majster0607,71,25,202917,413 +699238678,pepus1971,0,2,3587,1454 +699244334,DO100JNY,722,11,35835,771 +699246032,Kwest,71,6,50587,688 +699250676,Sir+mary%C5%9Bka,0,2,17057,968 +699251542,Zoodix,1226,3,19572,927 +699254631,ceru,0,1,112,2461 +699262350,Brat447,47,118,1089904,127 +699264947,Kwiatuu,0,1,26,2706 +699265922,murzyn59,47,145,1236042,105 +699266530,LordTrol,1700,20,136463,484 +699269923,Kuzyn+Karol,7,152,1325532,92 +699272633,pachnis96,291,39,350520,325 +699272880,TyQ1710,85,141,1366221,88 +699273451,Gram+offa,47,268,2487295,27 +699277039,B.E.T.O.N,0,17,65972,630 +699278528,LadyMauritius,722,14,90380,560 +699280514,hary,120,18,80544,584 +699282717,jury1993,1627,2,5336,1309 +699282793,Kira+Motyl,0,1,26,2707 +699283869,Seylito,432,1,1884,1686 +699284822,Karol+III+WIelki,0,1,3398,1485 +699285160,odek69,847,2,8036,1154 +699287032,%3DPanR%3D,39,2,16537,976 +699294577,Jakub+J%C3%B3%C5%BAwiak,0,1,26,2708 +699298370,Gatt,85,226,2132872,42 +699299123,d33L,1,211,1941868,49 +699301458,ZORDON2016,0,4,5953,1272 +699304554,TransportBUS,1148,13,20229,913 +699308637,Freshlajkdzieju,432,34,223959,396 +699316421,Alstrem+x+Ataturk,35,78,726366,196 +699319395,Cacu%C5%9B-Lion,1466,0,0,2983 +699320017,Sir+czerwis,0,0,0,2984 +699321518,cado,1735,7,24074,871 +699323302,zeta.reticuli,47,123,1196257,114 +699323781,bogdan0811,1597,1,4498,1369 +699325506,CareHoster,0,1,2711,1566 +699326171,SlashOfDark,0,1,8043,1153 +699330765,Lady+Basia408,0,1,125,2436 +699333701,Kr%C3%B3l+Fabian%2A,120,73,500992,269 +699336679,Raissa,234,1,499,2032 +699336777,Elsche+x+Astaroth,369,114,1041616,137 +699339594,665783847,117,1,5293,1311 +699341889,Rafer,1523,1,6355,1253 +699342219,BLACK15,120,240,2279254,36 +699343887,daniel420,1411,6,21624,894 +699345087,Elendila,0,1,26,2709 +699346267,yaruciak1,0,1,26,2710 +699346280,yuri09,369,53,514742,264 +699347951,abadon666,85,61,473939,277 +699351046,tomektonkiel,0,2,7964,1161 +699351301,Sir+ItWasntMe,35,101,932020,157 +699355601,piast123,1523,17,97824,546 +699355948,hmc.,0,1,38,2611 +699356102,streak2k12,1590,1,2159,1635 +699356968,Heui,7,27,127242,496 +699360521,NajlepszyZiomekWeWsi,1590,1,135,2404 +699364813,Warzywa+Style,120,149,1384730,85 +699366937,Mr.SoLo,206,1,551,2005 +699368887,Tomi77,1,222,1972955,48 +699372829,4+ewelina,1108,11,18141,946 +699373225,miniuk,0,2,5237,1314 +699373599,Sarna,301,93,712676,201 +699375903,Steven,29,1,2154,1637 +699377151,Hindukusz,291,15,99555,541 +699377401,stalowyhetzer,1336,13,80758,583 +699379895,Cet4boN,85,68,602962,238 +699380607,Dejv.oldplyr,47,124,1214867,108 +699380621,fajterooo,0,5,49668,695 +699380730,marart2,0,1,53,2571 +699382126,Tunios%C5%82aw,7,168,1623658,71 +699383121,Falco11,120,43,323152,346 +699383279,bax8009,7,145,1252123,98 +699385139,gotkamil,35,22,180227,433 +699390457,SirSin+X,0,1,134,2407 +699391409,frolunda63,1247,1,243,2231 +699393742,DeanMiles,71,79,707524,203 +699393759,Tekson1,432,23,146931,470 +699396429,obywateldb,1312,8,14347,1008 +699397280,gggg1989,0,1,26,2711 +699399386,Pablo+Escobar-.,0,1,26,2712 +699401083,Sir+Spiro,0,1,2074,1645 +699402816,Luxipux,47,52,515905,262 +699405877,DzikiDzik,210,1,132,2415 +699406101,HoroeX,0,1,742,1941 +699406247,Uaschitschun,1336,14,71092,609 +699406750,mAcIeK+1988,291,28,277398,363 +699406776,Maczo+-+Pieczarz+-+%C5%81obuz,1128,22,97390,547 +699408669,Merr,430,0,0,2985 +699409420,adam0218,80,1,721,1944 +699413040,%C5%9AlimakYT,85,71,595732,242 +699413581,DonRocco,1079,16,102714,532 +699419851,191deto,0,1,6135,1265 +699421735,Henryk+IV,0,1,6361,1252 +699423167,Mishiu,1651,1,3936,1418 +699424741,maciekz123,1128,2,12860,1032 +699425709,Wieslaw+Geralt,7,52,441583,284 +699428898,nortos17,0,1,126,2432 +699429153,%C5%81azan,85,202,1823493,57 +699429335,Arda26+and+Azdro,120,7,58098,662 +699431255,MacioB1997,1,167,1481437,79 +699431590,LokiPLN,0,1,224,2265 +699432672,142klp3,35,83,799775,180 +699433558,Guardian92,1,107,1012268,144 +699438389,super+hero,1735,1,4082,1403 +699441366,OdyseuszProFighter,85,40,355105,321 +699443920,mooseloose,369,148,1196371,113 +699448276,Minerva,0,2,2999,1529 +699448843,jarko123,0,1,1083,1841 +699449946,rkot,1480,1,3295,1494 +699451338,Jacaxxx,210,1,136,2401 +699456288,kapittan,0,1,679,1960 +699469600,wertywer,1724,1,1031,1851 +699470220,monitor123aa,0,0,0,2986 +699471024,Uparty1,0,1,634,1976 +699471829,witold2129,375,1,4734,1352 +699477624,Majin+Buu,1597,3,8014,1155 +699478692,Adas532,1039,9,35350,772 +699480768,Stupid,0,1,45,2597 +699483429,psychol16,1336,18,111287,519 +699485250,TYLKODOBRED%C5%BBISY,1,127,1101803,124 +699488108,Tw%C3%B3j+Kolega,862,14,115801,509 +699490365,bercion,1797,1,1764,1708 +699491076,DaSilva2402,1,206,1911465,53 +699491827,Ksi%C4%99%C5%BCnaAnna,0,1,743,1939 +699491924,Lejlu,1795,1,245,2229 +699492120,djraaa1,0,1,168,2357 +699492817,CebulowyRycerz,0,1,94,2497 +699493750,krychukozak,1700,8,32693,790 +699494480,Azucar,785,15,129227,495 +699494488,ScofieldTPS,369,123,1223901,106 +699498602,Tymek1,0,0,0,2987 +699501322,Egwene,0,1,2946,1535 +699503079,cinek3456,39,0,0,2988 +699508363,Myanmar,1232,1,26,2713 +699509239,XMM+Rudy+102,862,15,90155,562 +699509284,Lord+Nc3dyh,1148,5,20710,905 +699510045,BLACK+SOLDI+LP,1209,4,18086,949 +699510259,Dulnik,47,93,706979,204 +699511295,Raven000PL,0,21,111763,517 +699511370,brzydko.1,0,1,7408,1193 +699513260,Kuzyn+Marek,7,361,3470872,11 +699516250,Du%C5%BCy+Arek,0,3,8868,1124 +699516268,krakusekk,557,5,39506,744 +699518384,landhaus1,945,1,689,1956 +699518454,blatio,29,1,3307,1492 +699520575,Adamsoft,778,1,7994,1157 +699522257,LORDHerkules13,1724,1,4379,1381 +699523631,l2adziu,309,56,557941,249 +699524362,Pioter007,35,54,263489,371 +699524891,Tomall78,291,68,473988,276 +699530673,Westor,0,5,24042,872 +699535590,lsjhjvdhgvfskhbsfv,0,1,208,2288 +699541376,Mr.P,0,4,11843,1044 +699542874,Makss,0,0,0,2989 +699543968,0nxss,0,0,0,2990 +699545762,Deornoth,33,7,29697,819 +699545975,Mistrzunio229,0,1,195,2311 +699546317,Sebko70,647,1,224,2266 +699548295,zimny+11,1039,6,37922,752 +699548922,Nooowka07,0,1,26,2714 +699550876,StopsoN7,666,15,76688,594 +699551148,pisior18,0,1,62,2556 +699552859,Don+Kalion,77,1,26,2715 +699554427,Krejv95,0,1,26,2716 +699556684,Atryda,0,0,0,2991 +699557165,mmarcinho,1638,1,26,2717 +699560327,Hartigan,39,2,14893,997 +699560963,Sir+NoToKredki,0,1,56,2563 +699562182,diammyx3,862,5,19513,928 +699562874,hubertw25,68,7,39797,741 +699564303,coreslaw,0,1,200,2298 +699567608,Stanly156,369,163,1530527,77 +699569800,Lululu95,210,3,18958,935 +699573053,MONAMI,85,106,1080784,130 +699574408,emoriar,291,105,838582,174 +699576407,AAnubiSS,862,6,35291,774 +699576978,andziolaa,0,1,847,1903 +699577663,RudnikDagger,0,1,26,2718 +699578606,Lord+Konzi,1716,0,0,2992 +699580120,Ciachociech,291,32,220749,401 +699583677,Lexmet,0,0,0,2993 +699588526,Dirk+ze+Skraju+Lasu,29,3,10138,1080 +699589540,bbbarteqqq,1528,1,324,2151 +699590236,ZygaH,0,1,3029,1525 +699595556,Lord+ramagama,1411,7,35894,770 +699598396,gall,0,9,18773,939 +699598425,Pomidorowy+dzem,291,192,1542135,76 +699598671,marq135,0,1,1160,1817 +699598764,Afterparty,0,1,1144,1821 +699600167,Szyszka77,29,1,143,2385 +699600855,7homasbaN1,77,1,277,2197 +699603033,Krzysiek933,0,1,102,2475 +699603116,Infamiia+x+Bartez,369,67,522621,259 +699604515,KruliK,1652,7,15823,983 +699605333,Dominik+17cm,369,136,1244225,101 +699609445,Bicoss,0,1,1026,1855 +699611673,Asaret,1226,4,24466,864 +699613884,Bracket,0,0,0,2994 +699614027,BenyZSZ,0,1,989,1869 +699614821,gazda30,0,1,127,2430 +699617524,Dziobson266,0,1,203,2293 +699618066,donpabloone,0,1,26,2719 +699618326,Maverick1,24,1,3993,1410 +699620730,rumcajski,375,0,0,2995 +699621601,Joffrey666,785,22,144636,471 +699622781,Jack+69,452,1,2736,1561 +699622958,kuba987,33,1,97,2490 +699624570,Decku%C5%9B+Dow%C3%B3dca+Podziemia,1802,1,77,2520 +699627771,P1Kasik,106,4,12583,1036 +699628084,k4myk,35,99,779299,187 +699630110,Dam2314,664,1,4776,1348 +699630393,MiczMicz,0,1,104,2471 +699632387,Lady+elo320,0,1,3480,1467 +699633365,King+Schultz,1807,1,443,2062 +699635774,Mad+World,0,1,26,2720 +699639001,R%C3%B3%C5%BCalXDD,441,1,1110,1832 +699639005,kakuna,758,1,2287,1615 +699639122,Arkadio1,1226,2,8575,1133 +699641777,Lord+Shimonus,53,13,49609,696 +699642954,Herkuless,625,1,808,1913 +699644054,Lijor,1411,3,6881,1226 +699644448,Rodriges1271,385,14,66314,628 +699644852,Natka1968,194,7,13458,1018 +699648975,Rejku30,0,1,71,2532 +699650981,Jacollo,1627,5,7743,1174 +699651260,Cray123,0,0,0,2996 +699655364,igrane5000,1484,1,26,2721 +699656989,Hubixon,39,24,186326,429 +699657242,Krz40,210,1,2932,1537 +699657450,Lord+Myster+Boos,1336,24,132189,491 +699658023,Syisy,1,65,580109,247 +699659708,Melon944,0,7,31344,800 +699660539,Fresio,47,131,1000952,146 +699662232,raflinski,1715,2,5005,1325 +699664910,rze%C5%BAnik88,35,24,175764,439 +699665031,juventino1988,1460,1,150,2380 +699665152,marweb,1716,4,34258,778 +699665188,dawdevil,0,0,0,2997 +699668392,Lady+K8,0,1,26,2722 +699671197,arzipi,785,17,137178,480 +699671454,gazela1209,291,33,222632,397 +699672060,Mario+76,210,1,620,1982 +699673236,Ulanyksiadz,1590,1,354,2122 +699674355,Aniuta77,0,0,0,2998 +699676005,Groovyq,35,120,1141693,119 +699677277,MalinowaZaba,429,1,812,1912 +699677325,czmielu80,0,0,0,2999 +699678739,seba3333,59,0,0,3000 +699678801,Sir+SilverBaron,664,1,2552,1579 +699679662,Komaros1992,1312,2,7541,1182 +699682780,Krzych0007,0,1,3204,1505 +699684062,WanHeDa,120,49,421842,294 +699684693,XanSaul,0,2,17841,955 +699685533,Szaszka,1755,1,988,1871 +699687328,AlekTbg,0,1,2399,1596 +699688180,Adijen,1735,2,10551,1070 +699693687,Nevada,210,1,3411,1482 +699694284,Yomasz,68,22,107423,526 +699695167,Kosiarze,369,59,361556,318 +699696740,AjuZGora,0,1,210,2284 +699697136,Hrabia+mol,1108,2,15563,988 +699697558,Deveste,1,442,4148995,6 +699698079,kejmill,1480,2,9398,1109 +699698253,Dominatorxd,120,38,254831,380 +699698745,Bliskoznaczny,0,1,26,2723 +699698873,PrawdziwyIlveron,1751,1,68,2539 +699699422,Krukuu,0,1,989,1870 +699699563,maciejasz3k,29,1,974,1876 +699699601,szczylo,666,5,27276,834 +699699650,Zdrowa+Pi%C4%99ta+Achillesa,1787,1,26,2724 +699700007,xFeFe,0,1,26,2725 +699703295,kowalola123,1597,2,12877,1029 +699703642,LadyAnimaVilis,120,92,874818,166 +699703782,pacyfic,0,0,0,3001 +699704542,Geriavit65,120,59,371016,313 +699705601,Kamilkaze135,291,23,162338,447 +699705910,KiepLach,0,1,26,2726 +699706047,zbycho73,0,0,0,3002 +699706955,migs,106,14,68456,620 +699707057,Adrianxl95.,0,1,26,2727 +699709160,Baat,220,1,872,1895 +699710633,Valhim,862,28,240726,386 +699711334,najarany+szachista,0,1,26,2728 +699711706,malaula,29,10,43294,724 +699711723,prayforyou,432,13,83862,576 +699711926,Inchi,157,41,219625,402 +699711996,Lord+lotos652,1466,1,390,2095 +699712243,KrzysztofBerg95,452,1,463,2050 +699712422,kukas94,1724,1,772,1928 +699713515,Shrek+z+Bagien,1740,19,122227,502 +699714935,Marian1960,0,1,177,2341 +699716785,Nijord,157,1,2273,1619 +699718269,SweetPain,291,15,88401,566 +699720374,rutej123,0,1,116,2453 +699721590,hiszpan78,0,1,409,2082 +699722599,Sandre,85,204,1901112,54 +699723284,Aissa,47,103,983289,148 +699724603,Sir+Ma%C5%82y101,236,1,262,2211 +699725436,Dimitria+x+Ciemny,71,93,872489,167 +699726660,ryhu,33,1,2889,1540 +699728159,Woocash,120,78,533470,256 +699728266,Buzka9395,1627,10,32255,793 +699729211,Robert242,0,1,483,2041 +699730399,Cypis666,1627,1,5440,1305 +699730714,Neroven,68,7,33194,785 +699730998,MATTI,944,8,26894,838 +699733098,Le+Coq,1808,3,20560,908 +699733501,Jopo32,1293,7,55903,668 +699734152,micha6,0,0,0,3003 +699734445,Sir+HEROES,8,2,8161,1148 +699734795,cobra2ooo,1376,1,628,1979 +699735020,dz1ku,291,1,9747,1092 +699736927,Bociarze,7,383,3235051,14 +699736959,mackooo24,666,2,8400,1141 +699737356,Sekou,301,82,622253,229 +699737563,Agamemnon,0,1,26,2729 +699738350,Ramdzis12,291,38,343840,332 +699739523,Ysiek,723,1,2750,1558 +699739891,Waldus,1551,0,0,3004 +699741694,Mega+Niepokorny,68,4,6650,1232 +699742054,Yeta,0,0,0,3005 +699744012,piratwoj,210,2,3928,1419 +699744766,CriS00,1523,2,12321,1040 +699745265,Misteryo777,39,8,76630,595 +699747504,maciusw,0,1,154,2372 +699748916,Dominoo1,0,1,373,2108 +699749184,Strusiek,0,1,422,2078 +699749530,mefisom13,0,1,368,2113 +699751062,Hejhej,517,1,308,2167 +699751562,gracforfun,0,1,1111,1831 +699751887,zbawiciel4,0,1,64,2550 +699752402,leonek,0,0,0,3006 +699752776,rafixiem,0,1,236,2243 +699753640,Raguel888,1621,7,24908,862 +699753863,Poranna+Gwiazda,0,1,212,2282 +699754856,Zwolin,29,1,5603,1294 +699755859,lixx1337,385,1,4900,1332 +699756210,rafaldan,1,168,1623883,70 +699756403,lucko5,0,1,26,2730 +699758688,Bedoi+King,1399,2,7134,1210 +699759128,Guachilla,85,214,2049603,45 +699760696,Zaba12,0,1,26,2731 +699760767,ZemstaPowraca,285,0,0,3007 +699761749,Szwedzio,1,172,1686035,66 +699762118,Jaayzik,0,1,26,2732 +699762681,Maarri91,0,1,26,2733 +699763225,waldaksi12,847,8,24199,868 +699765601,Gryzipi%C3%B3rek,129,1,1537,1747 +699765971,Banan001,0,1,26,2734 +699766223,bart1234,0,0,0,3008 +699767482,akamee,0,1,26,2735 +699773770,Lis44,0,1,64,2551 +699774694,Trip+kuba,1735,9,18031,950 +699776412,semunus+x+Przemek9595,0,1,26,2736 +699777234,7.62+mm,1,86,787254,183 +699777372,Marioesp,71,20,124004,499 +699777556,dami991,1724,1,2036,1656 +699778028,Black+Bird,39,1,875,1893 +699778684,Lego.,0,1,215,2277 +699778867,kimbos,301,98,864857,168 +699779038,Feleross,0,0,0,3009 +699780721,ptomptom,0,1,615,1985 +699780873,Lexlutor,106,2,6886,1225 +699781390,Sir+Christopher+Last,33,1,792,1921 +699781605,Asmo17,722,0,0,3010 +699781762,Meok,120,104,1008515,145 +699783063,Tzarski707,0,3,15343,992 +699783641,mily546,0,0,0,3011 +699783765,xKentinPL,47,451,4336589,5 +699784536,kocziurs,120,177,1824470,56 +699785141,miki021,0,1,793,1918 +699785935,Vampirka%2A+x+Czaru%C5%9B,35,213,1912756,52 +699788305,lihtum,1,33,301410,356 +699788972,Saintros,0,1,26,2737 +699789609,LuzakNT,0,1,2274,1617 +699790202,Pokraczny850,0,1,26,2738 +699791054,Shooott,847,2,3501,1463 +699792747,Fatality51,0,1,5653,1292 +699794286,Somalija,0,1,80,2512 +699794421,wieslaw1,68,5,15073,996 +699794720,Ozilo,29,2,6815,1228 +699794765,KrulAndrzej,47,150,1047236,135 +699795301,Paranormalny,452,1,1478,1753 +699795378,hurricaneAG,85,44,400100,302 +699795698,dabek,0,4,23884,874 +699796330,SugarDandy,47,170,1360330,89 +699796630,nero26,452,2,6182,1262 +699797065,peterw21,0,1,330,2146 +699797252,Kaimek,96,1,2997,1530 +699797508,biunar,0,2,14858,998 +699797805,Terminatorka1992,194,14,48589,700 +699798611,marekkkzzz665,0,1,190,2321 +699798847,aquarius250000,0,1,133,2411 +699799629,KaZZiu1993,309,41,352179,324 +699800377,Frupek,0,3,6371,1250 +699800992,BeIIator,0,1,6057,1266 +699802009,przemekagatki,0,1,26,2739 +699802012,alexwpr,452,2,4668,1358 +699803070,Ravmlm,785,0,0,3012 +699803189,MojaJedynaMi%C5%82o%C5%9B%C4%87,1597,3,7893,1164 +699803939,Drain,0,1,908,1886 +699804790,snake5665,1140,42,320873,347 +699805379,Pampun,1312,10,18153,945 +699805839,DejMon,666,22,111692,518 +699807296,Kuba555,847,1,318,2156 +699808655,solek4321,0,1,1059,1846 +699811133,bleta+spz,0,1,275,2201 +699811844,Time+Traveler,452,1,26,2740 +699812007,Pediadoks,291,26,203060,412 +699812351,Lisu79,1627,5,9109,1117 +699812571,kryska6969,0,2,3701,1440 +699812653,King+Arkadius+1,1724,1,1055,1847 +699812824,WhiteMuffin,0,1,32,2618 +699812828,RYSIO+E46,0,1,26,2741 +699812869,TheKingDestroyer,234,1,3257,1498 +699813587,Monsio,0,1,194,2314 +699814283,Majson+x+SZEF+RYSZARD,0,1,8266,1146 +699816699,ksi%C4%85%C5%BC%C4%99+plemienia,0,1,834,1910 +699818726,Felicjan,194,23,159097,449 +699820572,Stresik,0,1,129,2419 +699820969,NikoMat,0,1,53,2572 +699821629,Lady+Miriam,1411,12,52629,676 +699821755,Dawidoff,1411,3,21199,899 +699823365,lulus69,0,0,0,3013 +699823490,hubert21227,106,11,67164,625 +699825089,miro75,0,1,32,2619 +699825236,magregor,194,14,100517,538 +699825797,gozzi+vel+jammeroe,1810,1,172,2350 +699825977,Feruell,0,1,133,2412 +699826312,grzeg,29,1,371,2112 +699826996,krzy%C5%BCak1,377,1,1086,1838 +699827112,Orientall,369,34,316648,350 +699828338,Pigula1983,31,1,5589,1297 +699828442,Adalino,369,125,1038901,138 +699828685,myself,369,136,1082541,129 +699829494,BOA1,1735,7,31396,799 +699829916,Scarface91,0,1,3006,1528 +699829975,amsz,415,1,26,2742 +699830255,Lord+Sloik1935,1312,5,25790,852 +699831193,daria519,0,1,1530,1748 +699831366,P0L0,443,0,0,3014 +699831524,Pan+%C5%9Awirusek,0,1,26,2743 +699831603,Maniek.W,0,1,26,2744 +699831860,kawon2,651,2,2342,1607 +699832431,sznur,0,1,351,2124 +699832463,msramfis,862,5,20016,914 +699832737,LOCODEMACONHA,0,1,26,2745 +699833171,Roffi,120,21,123279,501 +699834004,Zero-,71,48,406489,299 +699835178,CrazyJack,0,1,182,2333 +699836388,RED87,0,1,97,2491 +699837483,MarcelloGawron,647,6,22878,883 +699837826,pierer123,862,16,68055,622 +699840189,piro78,1724,1,3534,1457 +699841905,Donek94,68,1,3464,1469 +699841959,Koticzak,157,1,3627,1446 +699842078,VencedorPL,0,1,26,2746 +699842853,kriz73,1621,2,2562,1578 +699843389,Foks,0,1,482,2042 +699843417,hello11,1023,0,0,3015 +699843936,Marecki2222,0,1,50,2583 +699844314,Szarik1,1627,7,16152,980 +699844594,MocarnyCzosnek,0,0,0,3016 +699844727,Marcinho10,77,1,2040,1655 +699844880,kilolo,0,1,321,2154 +699845400,czarny1975,1023,5,31338,801 +699845927,PROboszczz,0,1,74,2526 +699846892,Kupsztajl,0,63,435755,288 +699847354,jaro222,234,1,235,2246 +699849210,Alicei,7,58,378748,308 +699850967,GeraltV47,0,1,351,2125 +699851001,drrakox,0,1,26,2747 +699851345,Krolik14,35,26,236474,389 +699851426,Sir+%C5%9Amigi,0,0,0,3017 +699851427,ScigusseK,7,105,1055029,132 +699852080,Lord+Nemo,1627,3,6915,1222 +699852606,jacek1891,0,1,72,2529 +699853286,beast01,0,1,26,2748 +699853308,Hubs1,375,1,3290,1495 +699853526,Morbital,1232,1,530,2012 +699854312,Yebiewdenko,847,4,6221,1261 +699854484,DonSzwagreone,1,117,957408,153 +699854830,b5artek,1128,7,36914,763 +699855277,bastekx,0,1,26,2749 +699855469,Anko+Itosu,0,1,26,2750 +699855647,Michal+CR7,0,1,2842,1547 +699856586,Czuowieku,0,0,0,3018 +699856830,Chudy19,176,1,321,2155 +699856962,Suppx,47,248,2239403,39 +699857387,Luk160,862,13,100768,537 +699858313,matstr,24,4,12684,1034 +699858423,zniszczywacz,0,1,187,2327 +699858532,exim,129,1,502,2028 +699859013,PECUS,0,5,31742,794 +699860418,ociek123,847,1,2969,1532 +699860651,lord+Micha%C5%82+1,0,1,381,2101 +699861004,PanTatami,85,10,90496,559 +699862278,w%C5%82adcamarceli,1209,1,2443,1592 +699863708,janusz6161,210,5,20778,904 +699864013,Arek486,666,12,87299,569 +699864609,champion271,0,1,81,2510 +699865603,damianslipiec,0,1,26,2751 +699865716,Piorun000,0,1,333,2145 +699866225,Pietrasfryzjer,80,1,590,1990 +699866271,Driata,0,1,763,1934 +699866510,EvilTwin,33,1,55,2565 +699867390,tomek-gt,0,1,435,2069 +699867602,wlodas62,1448,0,0,3019 +699867743,Skonek%C5%9Awir,0,1,1014,1859 +699868002,tw1ster2,120,16,98635,544 +699868399,Savek,0,1,26,2752 +699868448,OgnistaOwca,778,1,54,2568 +699868739,TOLCIA1,1597,6,17805,957 +699869682,wancki+i+gustlikk,309,3,27841,830 +699870198,JabaDu,0,0,0,3020 +699870267,aitseb,0,1,3337,1489 +699870923,LodowyPty%C5%9B,0,1,26,2753 +699872032,Ainsley,1535,6,46980,706 +699872401,PanByczek,441,1,3516,1460 +699872616,Kr%C3%B3l+Ja%C5%9B,1226,5,29767,818 +699873141,mayald,597,1,127,2431 +699875086,Impro,0,1,26,2754 +699875132,jarekamyk,0,1,3524,1459 +699875213,Sir+atylla,862,11,26178,846 +699875650,Czamba%C5%81amba,441,1,559,2000 +699876345,AG2018,39,21,181840,430 +699876653,slawekkrasulak,0,1,26,2755 +699876746,Zielony+Zielony+Zielony,106,4,16021,982 +699877413,Panda+Gomes,0,1,329,2147 +699878150,Pan+Magneto,291,33,195664,419 +699878443,ChudyMRW,441,1,387,2098 +699878511,Lorus22,120,105,612770,231 +699878952,100dni,0,1,26,2756 +699879113,munban,0,0,0,3021 +699879556,MDKS,0,1,3118,1514 +699879927,szymi3,0,0,0,3022 +699880701,Swoboda,758,1,889,1890 +699883079,VN+No+Door,1,245,2163501,41 +699883836,Soldier2020,452,3,9224,1113 +699884788,klogan,1597,1,6261,1259 +848882397,Puma79,0,1,2045,1653 +848882446,Kamilooo97,1724,1,694,1953 +848882577,lukaszn93,1312,1,5847,1280 +848883237,Flinii,291,49,345439,329 +848883542,Matz32,686,1,506,2026 +848883684,Bele7h,369,47,343891,331 +848883791,Jerzy-z-Lodowca,1724,1,553,2004 +848886056,Abo+co,1621,25,120874,505 +848886200,Bochunn,0,6,31482,797 +848886870,Akuzinek1,39,16,165281,445 +848886973,Traczu+Dominator,7,39,307313,352 +848887011,Laduu,0,1,95,2494 +848887199,Marceldom,1052,2,6635,1233 +848887366,Crift,0,1,1622,1728 +848888394,boyka8721,0,1,45,2598 +848888787,Samotny+Wilk,290,1,197,2305 +848889556,bohatejro,106,13,112813,516 +848889850,jonllll,1597,6,31406,798 +848890012,Glaber,1226,2,3543,1456 +848892804,Josef,1312,3,4781,1347 +848893447,Latino,0,1,26,2757 +848893520,marekttt,0,1,26,2758 +848895676,WarDuke,106,6,20638,906 +848896434,Liczyrzepa,0,12,28789,827 +848896948,TheDoubleSunset,369,54,503337,267 +848897333,Dziwny+As,0,1,119,2450 +848897972,Skiczak,0,0,0,3023 +848899726,Savi,301,15,109899,520 +848901396,Kekuu%C5%9B,0,3,12867,1031 +848901822,koka17,636,1,952,1879 +848902592,Generalruski,633,16,80047,585 +848902744,sliwatojo,722,7,48279,701 +848903260,Gazun,39,1,3428,1479 +848903690,Rajmundeq,822,1,4255,1389 +848905770,TakiKris,1128,1,3289,1496 +848905784,epstein.,0,1,123,2439 +848906441,ACFT,0,1,26,2759 +848907771,DZiki250,0,2,8327,1144 +848908144,Speedway007,397,1,1170,1814 +848909122,hujozo,452,1,220,2271 +848909292,goodvibegoodman,452,1,1284,1790 +848909464,klops3,369,46,407535,298 +848910122,GrzyBson04,1411,9,16219,978 +848910971,xMario25x,1804,1,26,2760 +848911863,zapomnia%C5%82em+has%C5%82a,0,1,248,2228 +848912151,aegalionkak,0,1,26,2761 +848912265,Luftmysza93,1,71,552548,253 +848912772,xNieZnaJoMyx,785,25,235755,390 +848912937,Szalony+Ost,96,1,4985,1329 +848913030,Makoo,77,1,26,2762 +848913037,FraPe,47,92,750867,191 +848913252,DAJWIDOS16,0,2,3789,1431 +848913998,Kuzyn+Piotru%C5%9B,7,129,903868,162 +848914120,Lost+im+Wald,0,1,1164,1815 +848914661,M+A+S+S+A+C+R+E,1523,1,26,2763 +848915032,Naval3,0,1,7192,1208 +848915531,Amator7,120,163,1454064,81 +848915730,szunaj23+x+Kewlys,1,435,3917742,9 +848915956,Kreynoss,0,0,0,3024 +848916779,Davcio1994,234,1,26,2764 +848917127,PiotrekPazzi,157,1,158,2368 +848917401,G%C5%82az,452,1,1083,1842 +848917570,JURAND+WIELKI,1368,10,43351,723 +848918262,Przekocur,0,2,17505,962 +848918380,THEvMOLKA,309,241,2400094,30 +848919959,arusaru10,285,1,527,2013 +848921536,DemolkaHD,1411,17,100943,536 +848921793,kubaaa26,1523,1,11678,1046 +848921861,Tiex,1226,28,258736,378 +848922118,Perszing125,0,1,393,2093 +848922517,Albertini,0,1,26,2765 +848922958,Luftwafel,1312,4,7587,1180 +848923540,nival,0,0,0,3025 +848923646,mani4884,0,1,26,2766 +848923754,monkeyy,0,1,55,2566 +848924219,AndziaN,862,15,61333,648 +848924648,XXXRETARDION,0,1,716,1947 +848925840,Ariel69,1040,2,18018,951 +848926070,KOSMACZ1,0,1,439,2064 +848926293,Mr.Creep,35,42,328692,343 +848927262,Loca,0,1,54,2569 +848928486,ciachbabkewpiach,301,8,55903,669 +848928624,Mr+Bizy,39,36,264100,370 +848930111,Slawpol,80,2,19887,918 +848930498,5dych,129,1,140,2391 +848930898,Niez%C5%82omni+44,31,4,13642,1014 +848930996,cwaniaczek25,0,1,26,2767 +848931321,tomek709,0,1,10986,1057 +848932115,Raff+Tierro,0,1,260,2213 +848932879,m%C5%82ody77,301,58,434698,289 +848933470,toficiii,1687,2,1027,1852 +848934935,Czakalaka,1,144,1189615,115 +848935020,Bkonkel4,291,28,217653,404 +848935389,Agresywny+Gabriel,0,39,385867,307 +848935732,Ar%C4%85Staro,29,1,2032,1658 +848936053,Born-kes,1108,1,2537,1583 +848936229,marianos1994,0,1,689,1957 +848937248,Saran1,412,12,33323,783 +848937780,SiwyStaruszek,0,1,1308,1787 +848939131,MichaelCh,0,2,3657,1445 +848939203,Szczerbatka,452,1,1468,1755 +848939434,wikingowy4321,0,1,233,2248 +848940223,damiano3106,0,1,129,2420 +848942565,Alibaba420,210,1,425,2075 +848942587,kamilpo4,1226,3,21485,895 +848942618,Gebels25,441,1,158,2369 +848942734,Harpun98,0,1,512,2022 +848942847,taysi,441,1,1917,1682 +848942968,Stalker1,0,5,20266,912 +848943145,allombard,847,1,3442,1473 +848944455,aniarobifoty,0,1,344,2132 +848944534,piteroch,1785,1,226,2258 +848945529,Niunia1,1621,13,66076,629 +848946608,-Robert-,520,6,25153,859 +848946700,Lord+Maximus,291,49,292867,360 +848949271,sebo1303,375,1,135,2405 +848949517,Machoneyy,0,1,977,1873 +848949597,RadoLigonss,785,6,29462,821 +848950255,Tabaluga1922,0,1,844,1907 +848951699,Szp4Q,0,1,129,2421 +848952556,Arthi1991,31,1,783,1923 +848952566,morogram,0,2,5979,1270 +848953066,Pippo11.4fun,71,13,109810,521 +848953472,kizak1,0,1,1372,1773 +848954163,Wiecznie+pok%C5%82ucony,0,1,1005,1863 +848954236,C.a.,0,1,3454,1470 +848955311,PyrMen,0,0,0,3026 +848955756,Patryczekk,0,1,229,2251 +848955783,Bucks+x+Kamiiiru,47,186,1459988,80 +848956013,%C5%81otrka,147,0,0,3027 +848956513,Ilia+x+BieniuS,35,258,2471663,28 +848956537,real124,0,1,26,2768 +848956765,Fristajla,1,376,3135935,16 +848958005,Chwedi,29,1,1011,1860 +848958111,WannaBeLoved,0,0,0,3028 +848958556,Bill40,0,5,16067,981 +848959231,swistolek,12,0,0,3029 +848959422,Bozydar666,0,1,217,2276 +848960061,Karolo1,0,1,388,2096 +848963236,Mararte,92,1,3421,1480 +848963521,Adrian8808,68,1,1633,1725 +848963634,etrusk,0,1,26,2769 +848963694,Limited23,0,1,241,2233 +848963696,Soro,0,1,26,2770 +848964085,Huayna+Capac,0,1,26,2771 +848964811,Sir+zombi,0,1,792,1922 +848965205,QdamianQ,0,1,93,2502 +848965531,utache,375,1,209,2287 +848966404,%2AKaziu%2A,0,1,47,2592 +848966521,Lu%C5%9Bka1206,1128,3,12372,1038 +848967422,Frenchi,0,1,10611,1069 +848967710,Exano,35,258,2513210,24 +848968427,misiek210,0,0,0,3030 +848969160,acer123,0,1,1243,1801 +848969313,Vebo,24,1,4427,1379 +848970357,KrwawyBaronW3,106,2,5453,1304 +848971079,mocek12345,35,126,1113746,122 +848973715,Pawlo101,0,3,10731,1063 +848973968,AP1997,0,1,249,2225 +848974611,dawid20211,1312,1,5543,1300 +848974774,Arco87,0,1,249,2226 +848975192,Chmielu0927,8,1,2354,1604 +848976034,kiljanos,0,9,47766,703 +848976720,Lord+Patka999,33,1,412,2081 +848977118,sucha+woda,1232,1,388,2097 +848977203,mateusz15963,0,1,6632,1234 +848977412,goska111,96,1,3405,1484 +848977600,piwkoo,106,15,76997,593 +848977649,Maszlug,1621,24,161402,448 +848977748,Varendial+x+Visyq,432,1,26,2772 +848978052,Biegacz1,1466,1,171,2351 +848978169,zielonyjohn,0,1,26,2773 +848978284,olos,1551,0,0,3031 +848978297,Marcinmesi,1128,7,39265,746 +848978534,JUlkA07,0,0,0,3032 +848978903,RIPNAMAJKU,785,5,37327,757 +848980119,ndse,0,1,26,2774 +848980120,bsju,0,1,26,2775 +848980237,yonek111,785,1,8776,1126 +848980456,gsno,0,1,26,2776 +848980458,khiu,0,1,26,2777 +848980459,cvde,0,1,26,2778 +848980460,fswq,0,1,26,2779 +848980461,nipki,0,1,26,2780 +848980492,veru,0,1,26,2781 +848980493,tews,0,1,26,2782 +848980494,laszc,0,1,26,2783 +848980495,nmih,0,1,26,2784 +848980496,afad,0,1,26,2785 +848980497,vosd,0,1,26,2786 +848980498,amlk,0,1,26,2787 +848980727,vasper123,778,1,671,1962 +848981244,Kaktus49,0,1,4147,1398 +848981523,wozny1020,210,1,250,2222 +848981726,Rudzia06,1108,12,57732,664 +848982634,anda22,441,8,17594,960 +848982635,piter787878,1770,1,153,2373 +848983660,Janusz9704,0,1,7062,1214 +848984022,dafffciu,0,1,9391,1110 +848985692,Lord+Axen,85,347,3322858,13 +848986287,Klemens+Zdobywca+69,309,16,153182,460 +848986638,Gwen1,722,8,7400,1194 +848987051,Lord+Pumbarak,35,133,1088678,128 +848987695,goldman,1627,1,3321,1491 +848988401,niko30,0,3,13624,1015 +848988744,euro97,1226,7,46020,709 +848989855,Zard,1399,3,23269,879 +848993505,Mallutka33,0,2,10648,1067 +848993769,Lord+Rycerz96,1627,2,3429,1478 +848993903,ekopark,0,1,52,2574 +848995242,Szpingischan,369,97,939330,156 +848995262,Dj-saken,0,1,429,2072 +848995291,SirArthureek,210,1,5028,1323 +848995446,AndrzejJ96,0,1,269,2206 +848995478,Delongii,301,77,538352,254 +848997058,jaktoon,0,1,78,2518 +848998530,Orgetoryks,847,5,21131,901 +848999448,Etitek,0,4,7467,1187 +848999518,CccC2,0,1,140,2392 +848999671,TakaTo,71,42,241453,385 +849000135,NoeyPl,1758,5,25709,853 +849001277,Ci%C4%99%C5%BCki+Kawalerzysta,1108,3,14048,1012 +849001388,Mizerkaa,0,1,26,2788 +849001572,Daremny,120,64,598925,240 +849001724,Tloluvin,39,4,40212,740 +849001762,J3bacTo,0,1,225,2262 +849002091,klima69,309,18,147148,469 +849002486,ManchesterKing,0,1,79,2517 +849002796,Hamar,1079,15,80950,581 +849003332,Co+biedaa,0,1,26,2789 +849004274,guex,71,27,263243,372 +849004338,Hwastu,0,1,26,2790 +849004461,LO%C5%81KICK,1724,1,1879,1688 +849004759,..Tomek..,0,1,2214,1627 +849005658,Skols998,24,1,2720,1564 +849005829,themonk,194,4,13300,1023 +849006011,faraon1981,33,1,437,2066 +849006145,pledos,71,12,103815,531 +849006194,KAUN,0,1,180,2336 +849006385,Lord+MARCEL12345,1597,13,51591,680 +849006412,Madarra,291,37,333533,338 +849008396,szymoniasty2740,0,1,352,2123 +849009059,Krasnoludek.M%C4%99drek,1804,1,26,2791 +849009623,Sir+zamelus365,1226,7,38263,751 +849009945,TheZeNiT,0,1,26,2792 +849010255,rutecky,1,69,515714,263 +849010386,Pomidorop,0,3,3253,1499 +849010865,matesa2,285,1,2376,1600 +849010955,stefek+alibaba,0,1,101,2482 +849012219,HotChrum,0,1,219,2274 +849012521,Born2befree+x+Hitman007,7,123,1038355,139 +849012843,Darktix87,7,36,180893,432 +849012985,killeer,0,0,0,3033 +849013126,Baala,432,16,114189,513 +849014147,piotrekbmm,666,18,108724,523 +849014413,sygut,301,17,172773,440 +849014922,Tomasz+%C5%81omot,1480,122,333889,337 +849015875,DrJointtt,1750,0,0,3034 +849016425,Bombelnik,0,1,134,2408 +849016844,bartki37,0,1,102,2476 +849017820,Silent17,432,25,148168,467 +849017894,trail,385,1,3794,1430 +849018239,-P3K-,120,338,3131326,17 +849018442,go%C5%9B%C4%87018443,106,65,350098,326 +849018778,Lord+Pynio,1597,1,6964,1218 +849018780,Lak1,29,1,1211,1806 +849019785,peres5130,210,1,761,1935 +849020094,Bartonzkl,1597,13,66340,627 +849020212,InnosensQ,733,1,26,2793 +849020667,Szrek5,647,1,3784,1433 +849021566,raskip,157,2,12589,1035 +849022063,misiek650,441,1,189,2323 +849022649,mikiwnyk,0,1,2927,1539 +849022907,KeymilLoveOrHate,0,1,26,2794 +849023078,pingwin112,0,0,0,3035 +849023212,Aleksander1973,157,1,7790,1169 +849023337,%C5%82ysy97,0,1,26,2795 +849023540,Ed3kMonster,1523,1,226,2259 +849024152,polska1234,29,1,1121,1829 +849024208,Rychu0890,0,1,441,2063 +849024333,skwarol888,0,0,0,3036 +849025083,martwy+dzik,766,0,0,3037 +849025558,Szezeger,0,1,2762,1556 +849025839,adhd,0,1,68,2540 +849026145,Writter.89,1039,27,119073,507 +849027025,So%C5%82tys+ca%C5%82ej+wsi,47,146,1162012,117 +849027653,BIG+PAPA.,291,9,91645,555 +849027712,tomalascala,210,1,6370,1251 +849028040,Abazur,0,1,80,2513 +849028071,Dom+Kichot,1724,1,26,2796 +849028088,Bexaaa,120,37,353950,323 +849029077,Kluha+Jo,0,1,141,2388 +849029559,BOMBA+NA+BANIIE,0,1,26,2797 +849030062,Domino00155,0,1,704,1950 +849030086,Arehukas,0,15,77658,590 +849030226,poolie96,7,108,1096481,126 +849030481,hubal3,0,1,45,2599 +849030643,rosiu56,0,0,0,3038 +849031197,miodek1143143,0,1,26,2798 +849031759,ponger19955,862,1,489,2036 +849031779,jekord,0,1,26,2799 +849031818,Kinglevy,85,29,222587,398 +849031846,Lolek3333,1780,1,4235,1391 +849032027,Sir+dziadekk19,647,1,761,1936 +849032059,Stickman,1780,2,17158,967 +849032413,onek666,0,1,379,2103 +849032414,georgek,39,34,221200,400 +849032741,Deylor,0,1,453,2057 +849033395,S1mple...,0,1,26,2800 +849034666,FanBednar,0,1,3137,1512 +849034882,GamiBer2021,71,58,603522,237 +849034917,Bombalena,432,1,9091,1120 +849035447,pinkolinka,260,1,5708,1288 +849035525,Aiken,71,53,492200,272 +849035905,Jamapet,291,76,683722,208 +849036055,AlfaCentauri,1040,1,30,2620 +849036262,egon+322,0,0,0,3039 +849037354,Saint+Clair,412,1,5485,1302 +849037407,Ksi%C4%85dz+PL,369,129,1205837,109 +849037469,h1d3th,1,44,391821,304 +849037699,shokode,651,1,6430,1243 +849038195,Spekulant951,0,1,170,2352 +849038572,Bzyyykox3,0,1,191,2320 +849038597,janusz12,0,5,14393,1007 +849038985,Kraken121,1724,1,2059,1648 +849039310,vwbora,1226,17,121171,504 +849039766,wolf1982,0,1,26,2801 +849040142,Vizier19,785,19,113403,515 +849040194,RabarbarWB,666,2,14502,1006 +849040332,lukaku,0,1,65,2549 +849040462,emilek,0,2,4745,1351 +849041192,Lord+Tost,35,14,70341,612 +849041557,Kavve,0,1,91,2504 +849042461,perespol43,0,1,2077,1644 +849042480,michelangelo420,210,2,6155,1263 +849043776,touchmeboy,0,1,430,2070 +849044705,Tathagatta,194,20,119348,506 +849044724,xarans,0,1,1146,1819 +849044961,Pawe%C5%82U136f,134,5,31077,803 +849045047,Songoku29,0,0,0,3040 +849045675,Debe%C5%9BciakZpodlasia,1052,8,64456,640 +849045915,Gremar90,452,2,16614,974 +849046206,Zuzia,1785,1,1011,1861 +849046232,kamilos937,785,4,34153,779 +849046397,kamera,0,1,52,2575 +849046647,D%C5%BCejd%C5%BCejj,0,1,26,2802 +849047044,Angelyears,1466,7,58294,660 +849047233,Morgan578,1312,7,32413,792 +849048112,mrozzo,1480,1,26,2803 +849048216,Wektor39,722,11,40380,739 +849048241,Krystian438997,1692,1,5178,1317 +849048455,Brannigan,0,1,1754,1709 +849048552,Sylwiaa1234,112,1,68,2541 +849048562,Adam19955,31,1,8612,1131 +849048734,Wincy94,1597,6,25997,849 +849048856,Ffran,0,5,23690,876 +849048867,sylwek02,301,30,208982,408 +849049045,rafal9725,0,14,137079,481 +849049155,NHL2022,0,3,25876,851 +849049288,maaadzior95,377,1,2688,1570 +849049864,Itadakimasu,0,1,26,2804 +849050087,bunu,847,4,7526,1184 +849050191,Sir+Refresh,1734,1,5703,1289 +849050410,221719123,0,1,26,2805 +849050734,piotrpeters,647,0,0,3041 +849050849,Dawid+84,722,7,49266,698 +849051363,Tomus+01011973,0,1,323,2152 +849051436,Cataloniaa,1523,0,0,3042 +849051731,dzidek76,210,1,3288,1497 +849051976,AdamC7,0,3,21830,892 +849052195,PaszaBiceps,0,1,226,2260 +849052289,Avilkson,1312,1,8403,1140 +849052488,Terada,0,1,358,2120 +849052549,Mateo1315,80,1,26,2806 +849052588,nula132,0,0,0,3043 +849053122,mockingcoffin,234,1,2886,1543 +849053868,Hajotus,0,0,0,3044 +849054582,Pompka15,291,46,328897,342 +849054606,TheMooon,0,1,138,2397 +849054951,maxigtr95,309,58,555172,252 +849055096,dorkness,0,1,136,2402 +849055181,Lord+Arczi997,1312,9,22285,888 +849055309,Rango,31,1,772,1929 +849055425,Karl+Dzikens,39,16,108133,525 +849055527,fikumiku111,1096,1,179,2339 +849055553,Bv3y,1597,2,7072,1211 +849056475,lis+1,0,1,1273,1796 +849056744,setts,862,8,38789,747 +849056892,General+Kaczor,0,0,0,3045 +849057176,Patoszek,0,0,0,3046 +849057450,Rutalo,1724,1,1813,1699 +849057572,L44ndryn,862,4,28050,829 +849057655,Pimpu%C5%9B,0,1,52,2576 +849057764,Grzejdas,862,8,30430,812 +849058207,webi,0,1,183,2329 +849059331,Hubida,0,0,0,3047 +849059457,serwis%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F,1621,17,102082,534 +849059491,Robbinho,35,33,265438,368 +849060099,Krycek,0,1,9097,1119 +849060357,Marcelinka,0,1,2111,1641 +849060446,karu7,85,34,308903,351 +849061374,kosiarapan,291,11,101270,535 +849061406,BastianCHW,0,1,26,2807 +849061417,Poqson1337,1627,1,437,2067 +849061418,Bellu,0,1,26,2808 +849062546,karlitos+MMz,0,1,4432,1378 +849062706,Pysia.,0,1,26,2809 +849062920,TheJarzabek,285,2,5852,1279 +849063605,Mescalero,112,1,291,2185 +849063793,Nowak2508,285,10,36260,765 +849063849,specanz,47,80,614254,230 +849063932,Electriccc,0,0,0,3048 +849064084,bolek13241,0,1,2648,1574 +849064087,Myszka21,0,1,401,2087 +849064614,rzecznianin,47,96,537838,255 +849064715,Forwalls,689,1,126,2433 +849064752,Soliz,1,360,2879539,18 +849065566,warmonger,1347,1,43,2604 +849065606,AriaVikings,1724,1,1109,1834 +849065697,aJMers,39,1,3533,1458 +849065742,Marczelok5,0,1,270,2203 +849065829,Sir+Kmicic,210,1,202,2294 +849066035,lukasz111,0,1,237,2241 +849066044,Rzezimieszek96,1226,6,49984,693 +849066125,%C5%BBulionerka,112,1,254,2219 +849066618,Piorunek1996,1551,1,1279,1794 +849066808,Argo733,636,1,618,1984 +849066849,Bilonhg,39,25,136890,482 +849067079,AreYouHorny%3F,29,1,3620,1449 +849067192,borys1695,210,6,26064,847 +849067216,Gum23,8,1,3982,1412 +849068108,Haszka13,822,9,37865,753 +849068436,Kubaa333,1782,1,639,1973 +849068662,Z%C5%82ylos,1336,20,134990,485 +849069010,Jackob666,1656,1,270,2204 +849069022,Jesse1910,0,0,0,3049 +849070220,agjao,214,1,874,1894 +849070335,MaRm13,80,3,27102,836 +849070464,Thao0,85,17,137804,479 +849070736,Go%C5%82abek,0,1,5870,1278 +849070812,marko91,1783,1,1301,1789 +849070946,Didu%C5%9B97,35,81,634445,225 +849071545,timonuser,80,0,0,3050 +849071883,game777,0,1,94,2498 +849072703,83Krzysiek83,0,1,869,1897 +849072846,Vallias,0,0,0,3051 +849072855,Luu123,0,1,93,2503 +849072873,Nika1234,125,3,24687,863 +849072919,miniorek,0,1,26,2810 +849073156,bestleevatican,8,1,1428,1763 +849073314,DANIEL48,157,1,1192,1809 +849073486,kristoferix,0,1,26,2811 +849073939,Shadow39,862,1,1208,1807 +849074508,ZimoweMajtki,0,1,2727,1562 +849075298,Gosia99,1721,2,5823,1283 +849075442,isku,0,0,0,3052 +849075744,Damian0704,847,1,1976,1671 +849075836,Buku27,106,14,104218,530 +849076187,HappyTheFriends,0,0,0,3053 +849076515,kamilos4444,1411,6,22431,887 +849076678,EWKA82,778,1,285,2191 +849076810,Dziobak6658,1411,11,48260,702 +849076953,heweltjakub664,210,1,1005,1864 +849077481,dedej,0,0,0,3054 +849078086,123Misiek,210,1,5771,1286 +849078119,lukasz45567,452,1,373,2109 +849078297,Trenger,35,14,83062,578 +849078498,UUffoo,194,1,5933,1276 +849078942,Boski222,1724,2,3602,1452 +849079977,Mateuszek0330,0,1,192,2317 +849080011,IAmChaozu,412,4,13053,1027 +849080118,fedziu675,0,0,0,3055 +849080197,Vectar,452,1,2606,1576 +849080260,Apfel,0,1,1776,1704 +849080702,Zorro,1226,27,242983,384 +849081284,mlodyfacetkosmita,0,1,41,2609 +849081641,MarcinMazury,377,1,256,2216 +849081869,3637,1627,1,12021,1042 +849082154,Cipendeys,68,4,17913,953 +849082580,nappystarr,377,1,3169,1508 +849082839,Minikod,0,1,26,2812 +849082848,Jastrz%C4%85b+z+NBP,944,1,4607,1364 +849083293,Vocare,0,1,3603,1451 +849083294,Merida.waleczna,285,2,7652,1178 +849083501,SaturnV,1523,9,64742,636 +849083534,Nadav,1724,1,2056,1649 +849083705,Tomasz+Stanek,0,1,26,2813 +849083725,Koc+M%C5%9Bciwy,19,1,129,2422 +849083942,Velsaniq,0,1,26,2814 +849084005,Kuzyn+Jacob,7,315,2303144,34 +849084066,RROO,412,2,10131,1081 +849084474,Atero,234,1,1402,1766 +849084699,cinek1998,0,1,26,2815 +849084740,Fisherrwd,7,71,533245,257 +849084911,Rewson,1523,1,26,2816 +849084920,Magdalena82,0,2,6533,1239 +849084985,Tivis,71,112,1046213,136 +849085160,ElMajkelos,1535,20,95026,551 +849085293,Misiaczka69,0,3,4594,1365 +849085371,wykolejonymiki,1597,5,25320,857 +849085605,LukaszWspanialy,1108,2,9202,1114 +849085764,Seiyouwasabi,0,0,0,3056 +849085908,krunor,0,0,0,3057 +849085961,owusum,39,1,9735,1093 +849086074,Lady+evee,285,1,4440,1377 +849086132,dixon15pl,0,1,149,2381 +849086357,dadan2,285,1,2741,1560 +849086491,Aratorn,862,7,40841,737 +849086693,Dixon+1993,1597,1,4659,1360 +849086777,cba444,29,1,327,2148 +849086783,Anton707,0,0,0,3058 +849086817,Elban,0,1,3080,1519 +849086925,Hautoria,0,1,308,2168 +849087149,mm1370,441,1,655,1967 +849087581,takenn90,0,1,2052,1650 +849087742,RichiePichie,0,0,0,3059 +849087786,jajco55,194,6,25528,855 +849087855,Pegaz,120,40,361684,317 +849087895,Izuia98,1170,0,0,3060 +849088101,Sir+Dzikus,1680,1,9972,1085 +849088199,Balti,452,2,12559,1037 +849088243,noomouse,7,85,681755,209 +849088414,Miltonia,0,1,146,2383 +849088429,Mozzie,0,1,26,2817 +849088515,Maroni,85,68,591302,244 +849088639,Goku+ssj2,1680,3,17370,964 +849088880,Damian098po,441,1,311,2165 +849088882,Jastrz%C4%99bie+zdr%C3%B3j,1597,1,3817,1428 +849088923,naja1920ruch,31,1,26,2818 +849089207,Mistrz+99,285,1,170,2353 +849089323,Hyzio,1293,1,1926,1680 +849089459,Abdoulxx,71,52,439346,286 +849089499,staszku,1312,8,20316,911 +849089512,bzyku195,0,1,426,2074 +849089601,krisssak,847,11,45693,712 +849089654,wawur,412,7,13740,1013 +849089881,mcwie,7,48,336795,334 +849090130,AdamTy,785,41,319962,348 +849090187,Flisek10th,0,1,2243,1626 +849090243,Habibi+Malik,0,1,85,2508 +849090289,Jack+Daniels,0,1,126,2434 +849090573,ZiomekWafla,210,3,4690,1357 +849090765,%3DRosalet%3D,0,0,0,3061 +849090846,marek123,1597,2,10398,1075 +849090890,szewa432,0,1,164,2361 +849090954,Dr.W%C4%99giel,0,0,0,3062 +849091060,JuanPabloII,1523,1,26,2819 +849091084,Makro,1523,10,68589,619 +849091105,Raogar12,291,58,389620,305 +849091769,wotek,7,73,607187,235 +849091866,Mat05usz,85,108,971533,150 +849091897,Danon23,35,21,194858,421 +849091899,Arnhem,35,21,130250,493 +849091947,OSkoczekO,19,0,0,3063 +849091972,Gimi7777,1797,1,930,1882 +849092109,Lord+Endy,24,0,0,3064 +849092185,Antonio+PaTeras,758,0,0,3065 +849092244,kijo,758,0,0,3066 +849092309,Klaudek,291,36,196206,418 +849092639,GONDAS9696,0,1,2334,1608 +849092685,kalou,1735,10,51128,685 +849092723,Cocofedron69,0,9,81090,580 +849092769,Guti14PL,71,23,188552,427 +849092827,Najan,85,39,284858,361 +849092868,Koza,0,1,26,2820 +849092875,Danielo3,0,1,26,2821 +849092978,patrix01,0,1,3698,1441 +849093003,DANEK31.,0,0,0,3067 +849093155,lukasz0707,0,6,43053,725 +849093353,gorzki1984,412,6,26368,844 +849093422,niangmen,309,16,154638,458 +849093426,Kuba+Zenen,369,145,1220023,107 +849093576,Sylwek2503,722,1,2047,1651 +849093724,tyskie323,0,1,129,2423 +849093742,Marek+Pustoszyciel,85,63,556386,251 +849093771,Breisse,373,1,743,1940 +849093875,Martita08,291,8,39544,742 +849093924,bezludna,0,0,0,3068 +849094006,Wie%C5%9Bmenn,0,1,7351,1198 +849094023,Tasmanski22,0,0,0,3069 +849094061,marcin2202,210,1,288,2188 +849094067,Franss,120,56,594330,243 +849094111,Antos,72,1,2767,1555 +849094147,LordKat69,0,2,15077,995 +849094319,Koziok,0,1,26,2822 +849094355,Karolinka6868,0,1,26,2823 +849094586,Nekoyo,1621,3,9618,1099 +849094597,Wyczesany+Czes%C5%82aw,0,0,0,3070 +849094603,Go%C5%9B%C4%87094603,1411,2,6933,1221 +849094609,AkademiaPanaKleksa,85,92,755699,189 +849094653,Deny2107,0,0,0,3071 +849094688,dawszz,1312,5,26500,843 +849094759,aziii2,0,6,19692,925 +849094789,kortom,0,2,12782,1033 +849094972,Sir+Moon+Knight,0,1,143,2386 +849095014,Hexiu,1428,3,17761,958 +849095068,PogromcaZabieg%C5%82ych,35,78,622928,228 +849095219,the.+mehow,0,0,0,3072 +849095227,Krystiano242,35,89,840540,173 +849095240,JohnSnow,309,2,19428,930 +849095324,CarlosPL,0,0,0,3073 +849095376,Le%C5%9BnyJebas,1108,8,60877,652 +849095430,WiktorTraktor,375,1,4049,1406 +849095435,jawor,301,9,44267,720 +849095446,extor98,0,1,26,2824 +849095448,Omikronmen,0,1,1733,1714 +849095482,Adrian+SzachMat,785,21,99874,540 +849095488,Lancer0,0,0,0,3074 +849095509,kubek86,29,7,34286,777 +849095594,Farmer155,441,1,909,1885 +849095599,Diczku,291,39,260327,377 +849095601,Hydrawydra,0,1,7686,1175 +849095642,DamianDK,0,1,3330,1490 +849095756,wiNo,0,1,26,2825 +849095771,klejmon,0,1,705,1948 +849095778,komrat966,1226,6,52741,675 +849095800,Bigosowy,1597,2,14656,1003 +849095814,Go%C5%9B%C4%87095814,1729,7,14794,1000 +849095825,Pty%C5%9BTurbo,0,1,138,2398 +849095829,Lukanio,1681,0,0,3075 +849095879,Go%C5%9B%C4%87095879,0,1,5001,1326 +849095948,maribast,1480,2,3748,1437 +849095959,mateuszek720,0,5,18135,947 +849095963,matrix281,1226,12,102358,533 +849095992,Koba98,785,18,142994,475 +849096041,arobest,210,1,1110,1833 +849096102,Radziox321,452,1,1954,1677 +849096123,Miczenso,0,1,4733,1353 +849096182,AreKing,0,3,7773,1171 +849096215,Ig%C5%82aa,1621,12,35985,768 +849096265,bielacz,1312,1,845,1905 +849096285,MokryRick,0,2,9007,1123 +849096310,Giser,722,11,58151,661 +849096334,Tomekrol,1226,6,35297,773 +849096341,Meldennsen,441,1,2881,1544 +849096346,chips03,1530,1,26,2826 +849096354,Artur199556,666,12,40779,738 +849096383,Kallichore,0,0,0,3076 +849096399,Vetiuss,1312,2,2273,1620 +849096435,HKS+RUCH,0,1,1315,1784 +849096454,Power76,1128,1,51,2580 +849096458,wookash,666,19,130604,492 +849096543,Alpinista,0,1,26,2827 +849096544,Proczu,1128,11,96123,550 +849096547,mikson1995,1336,7,25537,854 +849096592,Marshmike,722,1,5414,1307 +849096594,Kerpi,0,1,1562,1740 +849096606,Darma+dla+zawodnika,0,0,0,3077 +849096631,Pot%C4%99%C5%BCny+Sycowianin,1226,11,78243,589 +849096649,BudzikRide,785,2,15733,985 +849096768,Adamo,1293,7,52933,674 +849096856,pilkowski,830,1,101,2483 +849096874,Igordaniel313,1651,0,0,3078 +849096882,MarekKrk,1128,7,49810,694 +849096891,Kapral16,31,1,5577,1298 +849096936,Karakan13,0,1,26,2828 +849096944,Jarko,944,1,8598,1132 +849096945,Boru1996,39,14,22925,881 +849096954,xKratz,1480,1,41,2610 +849096958,majchi96,1336,10,76266,599 +849096972,Triton1,785,32,206398,410 +849096977,Gabiii,0,1,3787,1432 +849096979,Zachariasz+Grundbaum,1128,1,26,2829 +849096990,Mr.ElCzapo,0,1,3303,1493 +849097002,KazuyaVV,666,21,171222,442 +849097006,Hasha,0,1,392,2094 +849097103,Krystian19k,786,18,79533,587 +849097123,RediiSD,1312,2,9183,1116 +849097175,GrendysaPowr%C3%B3t,1480,5,14163,1011 +849097220,wesolykrystek,786,4,18106,948 +849097274,Feii,0,1,26,2830 +849097312,Bbartek97,1597,2,8112,1152 +849097357,morfeusz37,0,1,364,2116 +849097370,CzarnyBlade,1293,7,32697,789 +849097373,pinoki,452,1,3375,1487 +849097386,betka36,0,1,3559,1455 +849097445,eddyk,157,1,653,1968 +849097477,Artok,847,1,1418,1764 +849097614,RUCHWKSAZBUD,666,17,114694,510 +849097620,MikolajOSK,68,0,0,3079 +849097681,piotr245,1798,1,4773,1349 +849097716,Ja1234,1411,13,87291,570 +849097729,Angelina2013,375,1,132,2416 +849097737,VentX,1336,15,85426,574 +849097792,MihuPoKielichu,0,0,0,3080 +849097793,Vintrax,0,1,26,2831 +849097799,wgola,39,48,370798,314 +849097837,Adamek95,1735,9,50170,691 +849097898,kRolo94,785,8,59147,656 +849097924,Aragorn93,1096,0,0,3081 +849097937,Krasnetus,120,25,219470,403 +849097954,Mr.+Schecter,0,0,0,3082 +849097981,devaster,1523,8,67394,623 +849098109,wojtek11423,0,0,0,3083 +849098132,grzegorzzdw,1690,1,2343,1606 +849098136,Arhibitsus,194,8,56988,666 +849098159,marlis1992,0,1,26,2832 +849098162,Baleron1215,0,0,0,3084 +849098192,Guru18,1148,1,6610,1236 +849098197,Dawid4321,0,1,26,2833 +849098200,pestekkinice,862,0,0,3085 +849098217,Kapral161,1797,1,276,2200 +849098265,Brauer92,862,1,26,2834 +849098299,PParker,1336,12,61116,649 +849098324,Merilly,847,1,449,2059 +849098326,piotrczi,1226,8,42756,729 +849098374,Chora%C5%BCy+Torpeda,0,1,4474,1373 +849098387,paluchowski,666,9,76366,598 +849098400,Milq,1148,2,4486,1371 +849098423,Tuna93,0,1,3013,1526 +849098476,beziuleq,0,0,0,3086 +849098477,siedlik12345,452,1,1362,1775 +849098516,shart3012,1128,0,0,3087 +849098557,chmielek,1148,1,346,2131 +849098592,Aga22011993,1645,1,327,2149 +849098607,Go%C5%9B%C4%87098607,0,1,2021,1660 +849098628,Gor%C4%85cyDelfinek69,785,20,65033,635 +849098648,Kamazer1,1336,9,63146,641 +849098667,barcioch,56,1,678,1961 +849098688,Gosia08,785,41,348917,327 +849098693,1kornik83,1226,10,70197,613 +849098695,KiwiThief,785,35,263084,374 +849098724,cienki11,452,2,7288,1202 +849098727,Riv93,1148,3,10825,1060 +849098731,Maarczu,31,3,4550,1367 +849098766,Inergio,377,1,2851,1546 +849098769,hesus93,291,52,412702,297 +849098774,CypisWariat,1128,0,0,3088 +849098782,Kratos007,35,59,569850,248 +849098784,Riko97,1411,2,4813,1343 +849098791,ilona12005,0,1,5561,1299 +849098822,SirCharles2,1226,3,17935,952 +849098827,zbrzeziu44,452,1,1651,1722 +849098848,Kufe,1737,0,0,3089 +849098966,GrimS,1411,12,71352,608 +849098993,bulkas9999333,0,1,532,2009 +849099021,mibre,1336,0,0,3090 +849099054,GromHellscream,194,7,50849,687 +849099105,GrandeGallo,1483,0,0,3091 +849099131,SzopPracz93,963,1,450,2058 +849099138,SkyForce2,377,1,2384,1597 +849099141,Rafi43,0,1,556,2002 +849099145,Szymon9405,0,1,4011,1408 +849099160,FiftyShades,722,10,104708,529 +849099255,tomas289,0,1,26,2835 +849099258,POLiii,785,6,35904,769 +849099276,Sosen1,862,7,37091,761 +849099280,staszek233,1724,2,4831,1341 +849099342,Michalxj6,722,7,45636,714 +849099391,AzinG,375,2,8706,1128 +849099422,franekkimono510,68,11,60889,651 +849099425,Ponury+Grabarz+1995,1797,1,641,1971 +849099434,luverten,68,11,86870,572 +849099463,mosiekk,785,5,37575,755 +849099505,Andrzejizator,1052,2,5116,1319 +849099517,MatWa,1597,5,37583,754 +849099541,Mrkime,1597,1,4308,1385 +849099544,happydrinker,1724,15,109018,522 +849099557,IZRA,412,0,0,3092 +849099558,Seprinoth,1052,1,2940,1536 +849099601,Pro100wryj,1108,6,19798,923 +849099640,DonOrleon,1079,11,74545,601 +849099660,ProCzacha,806,1,26,2836 +849099689,seba1234567,1226,3,11596,1047 +849099696,harryson,1039,14,70870,610 +849099785,Kamileq69,0,1,26,2837 +849099797,dekmax,0,1,1523,1750 +849099804,karmelon,33,1,2453,1591 +849099815,CarIsonn,0,0,0,3093 +849099859,Go%C5%9B%C4%87099859,157,1,3686,1443 +849099864,oskar996,0,1,5592,1296 +849099876,heetsik,7,193,1804782,60 +849099887,NiedzwiedzWampir,412,1,1281,1792 +849099924,kondzikkk,0,3,9710,1096 +849099932,Mati1995,0,0,0,3094 +849099955,VIK97,1226,2,6297,1258 +849099965,Don+Sracze,722,4,11524,1048 +849100006,andzia524,0,1,3499,1464 +849100016,pawelek113,0,1,1695,1718 +849100034,Dyaebel,68,0,0,3095 +849100082,malinos29,1079,6,51311,683 +849100083,paskowy,1128,3,17637,959 +849100089,Szymkowiak,636,1,26,2838 +849100134,Paprykk777,963,1,1899,1684 +849100149,kolo123321,452,14,108460,524 +849100162,Mag+Gywer,0,1,2775,1553 +849100199,Gra31,0,0,0,3096 +849100211,Andrew97,0,0,0,3097 +849100228,Koziar1999,234,3,29789,817 +849100246,atomwaffen,1079,5,29287,822 +849100262,YeQiu,71,19,172645,441 +849100288,metyh,157,1,2696,1569 +849100289,GalAnonim94,31,1,1457,1757 +849100323,zucholag,7,1,4875,1338 +849100349,Marass,722,1,151,2377 +849100352,cwiek21,1293,2,7001,1216 +849100354,Bo%C4%87ka,1523,8,74559,600 +849100383,KDJ7,1551,5,28794,826 +849100399,huzaj,68,3,27084,837 +849100406,SEDZIADRED,722,6,34136,780 +849100439,%C5%9Api%C4%85cy+Szaman,0,1,1543,1746 +849100463,RaphaelMiner69,0,0,0,3098 +849100496,DZ4L4,1258,1,128,2428 +849100584,Matrix9105,1494,0,0,3099 +849100611,amazonka,0,1,4878,1336 +849100612,MajkelEs,452,4,16797,970 +849100615,wojas2302,785,2,5270,1312 +849100656,KK95VLV,210,5,42654,730 +849100680,TadeuszeQW,210,1,6421,1244 +849100743,Developer1994,0,0,0,3100 +849100744,Totomoose,1336,6,17558,961 +849100760,Majerasz,1293,1,949,1880 +849100782,Lord+Pat+Gla,1261,2,6741,1229 +849100787,Drwal+95+PL,1293,3,9885,1087 +849100796,Elzap,33,3,17877,954 +849100811,KOSSARII,785,1,2546,1581 +849100814,Aksente,0,8,25926,850 +849100815,Mercedes450,0,0,0,3101 +849100827,Ramboq123,375,0,0,3102 +849100836,patryczekpyrka96,0,1,26,2839 +849100877,SteveT%C5%82ok,106,8,50886,686 +849100882,Elesar+Aragorn,106,0,0,3103 +849100891,S%C5%82owianie,0,1,550,2006 +849100994,Merlic,1226,22,176079,438 +849101018,sebastianxxx19,157,1,2979,1531 +849101029,bela831,1226,13,90323,561 +849101083,PIROTECHNIK,157,14,50220,690 +849101092,brajanacm,1108,5,30996,805 +849101102,skuzmi,1724,6,46662,707 +849101104,beazy,377,1,3898,1420 +849101108,rafisonik2,1293,10,68713,618 +849101116,kaban1988,722,7,42907,727 +849101132,Maciek2001PL,234,0,0,3104 +849101135,DZIMMMI,0,1,9724,1094 +849101144,Pascal277,786,3,16743,971 +849101148,Herom,1226,8,61442,647 +849101162,Transporter77,1226,27,129625,494 +849101177,Bunkier+u+Mariana,68,1,8264,1147 +849101186,Karki98,722,1,312,2163 +849101205,Adixkod,157,17,83347,577 +849101224,Max2255,1724,1,925,1884 +849101232,Szuwi,0,0,0,3105 +849101248,kaatbus,0,0,0,3106 +849101268,kaga,106,13,65081,634 +849101276,Witololo,666,5,13048,1028 +849101284,TraktorWiktor,375,1,334,2143 +849101291,wiras123,0,0,0,3107 +849101293,CatsDad,1735,2,8502,1135 +849101309,Dawideq102,452,7,27836,832 +849101311,Adrian11234595,1597,1,4075,1404 +849101377,HashandTag,1336,2,10802,1061 +849101378,Kie%C5%82ba,1418,12,98806,543 +849101382,ewaa,234,2,9872,1088 +849101391,dark.lady,0,0,0,3108 +849101396,Robert+Nowakowski+Jan,0,1,26,2840 +849101403,sabaciorz,0,1,26,2841 +849101409,Stachod%C5%BCons93,1597,5,15538,989 +849101443,Specjalista007,1372,0,0,3109 +849101526,qbaa.d,1423,3,10530,1071 +849101578,FIFI121212,0,1,1017,1857 +849101579,Duszkowsky,666,1,5712,1287 +849101580,michy,862,0,0,3110 +849101581,Siepacz,1735,1,4103,1402 +849101604,konradboss,157,14,74309,602 +849101646,tomekjasko,0,1,144,2384 +849101647,Ketarsky,1312,6,33799,781 +849101652,lidxoxo,1226,12,77382,592 +849101656,Kilmonn,0,1,72,2530 +849101674,mateusz2288,1523,7,30918,806 +849101694,Sir+Paxx,157,5,30052,814 +849101771,franka,1312,4,9680,1097 +849101814,czorny998,1023,3,10530,1072 +849101845,Fiko,1140,24,178295,436 +849101871,King2000,377,1,296,2179 +849101881,Lucyfer1999,1597,11,64661,639 +849101884,Patrycja412,1226,7,45073,717 +849101889,5spajk5,0,2,3591,1453 +849101893,kostunio,0,6,30743,809 +849101945,Oawek,1597,8,36181,767 +849101947,LokiValhallen,1597,1,4979,1331 +849101962,Babidi,68,8,45130,716 +849102037,Lord+tomekr,0,0,0,3111 +849102047,bartoszkar,0,0,0,3112 +849102068,TribalMaster,862,22,133518,486 +849102092,slovik-,1336,24,154693,457 +849102094,PavoreAni,441,3,14807,999 +849102108,Goveso,1226,13,80816,582 +849102143,Kacpro3310,1163,1,6323,1256 +849102150,DewTour,412,6,13613,1016 +849102302,dextermorgan,0,0,0,3113 +849102336,Albus+Lepus,1588,12,59739,655 +849102464,rafik9797,1418,2,16158,979 +849102480,Karyagin,1418,8,58007,663 +849102491,pawelec123,0,0,0,3114 +849102505,skubana123,0,0,0,3115 +849102573,Chispet92,1423,8,41779,733 +849102833,polska222,0,1,228,2253 +849102985,szaszek94,0,1,1633,1726 +849103113,thor13,0,1,375,2107 +849103148,Trollsonix,157,4,21441,897 +849103156,Pirdek999,0,1,2477,1588 +849103237,Trzepak7,375,1,249,2227 +849103456,Cukiernia+R%C3%B3%C5%BCa,0,0,0,3116 +849103570,henior123,0,0,0,3117 +849103595,justyna1234,1460,1,50,2584 +849103644,czarekpol,0,1,99,2486 +849103688,Avaqer,0,1,4277,1386 +849103876,mjk105,0,1,26,2842 +849103914,adamzagi,1783,1,380,2102 +849103947,pinek3,1312,2,10627,1068 +849104010,Kawa,0,0,0,3118 +849104100,Czadamm,0,1,80,2514 +849104121,skwr85,0,1,1977,1670 +849104286,TwojaStaraTabaluga,210,1,6393,1248 +849104297,Kadar,452,1,284,2193 +849104310,jack2,0,1,182,2334 +849104328,Martinex,1226,18,153097,461 +849104356,KaszczuJ,452,4,39491,745 +849104468,Marian+Morderca,0,1,1157,1818 +849104474,mrugowal,7,1,71,2533 +849104491,MANUO,96,2,720,1945 +849104546,Jensiu90,722,5,35080,775 +849104633,Miia,0,0,0,3119 +849104814,Xava,0,0,0,3120 +849104818,bombelboniewo,847,1,4160,1397 +849104855,Hary666,1140,5,37312,758 +849105032,PiotrBiznes,0,1,114,2457 +849105071,myrcin,0,3,13507,1017 +849105072,Kendal,1312,1,7865,1166 +849105102,PatanTERROR,1735,4,24171,869 +849105187,Chmielu94,0,1,115,2455 +849105201,samolot11,0,1,139,2394 +849105232,krzysztofkryn148,1597,7,17410,963 +849105408,Fermer,0,1,2183,1633 +849105417,GdziePiniondzeSomZaLas,1312,5,12372,1039 +849105420,Natalia9388,0,1,9464,1107 +849105463,zwyczajny+bandyta,68,6,9553,1104 +849105613,Firau,29,1,557,2001 +849105880,wojtas.kaziu,0,0,0,3121 +849105954,SteamUser1668416228,0,0,0,3122 +849106210,blady14,0,1,1881,1687 +849106303,Kaminski95,0,1,1115,1830 +849106316,Dzejkob23,157,6,18231,944 +849106340,Koza69,1312,0,0,3123 +849106383,R0se69,0,2,13390,1019 +849106420,SAwars,412,8,30870,807 +849106548,jozin4don,1735,1,500,2030 +849106576,Bober5180,0,1,126,2435 +849106601,DrXE7,0,1,253,2220 +849106612,Ufok834,452,5,11019,1054 +849106698,Harley+Quinn,0,1,194,2315 +849106741,Koza2021,0,1,68,2542 +849106785,LordFrotto,1597,3,15659,987 +849106820,Cheltenham,157,1,690,1955 +849106828,anatol2619,0,1,463,2051 +849106923,kowal26022,29,1,4362,1382 +849106971,Irek216,1312,5,16346,977 +849107104,k3d4r89,452,1,1952,1678 +849107188,Bondzia,0,1,2008,1662 +849107391,BedsideBrick477,0,1,104,2472 +849107426,Micha%C5%82+z%C5%82o%C5%9Bliwy,234,1,310,2166 +849107507,bartekwach,0,1,4275,1387 +849107532,Ponury+morderca,157,5,18595,940 +849107571,mFxXx,0,1,1309,1786 +849107703,KRONOSIK8,1163,1,6307,1257 +849107799,Podzal,1551,1,980,1872 +849107860,alexxdize,0,1,136,2403 +849107881,POMPIARZ+122,1312,1,4835,1340 +849108007,SkalpeR1337,1523,2,9272,1112 +849108034,Frodo1,0,1,26,2843 +849108053,Olczii,647,1,1207,1808 +849108148,Yomikuri,1431,1,201,2295 +849108157,Wu7ek,234,3,4496,1370 +849108328,mirabelik,1687,0,0,3124 +849108339,DiduDidek,0,1,2194,1631 +849108350,Gumaty,0,1,75,2523 +849108352,SharpWaldek,0,1,114,2458 +849108600,OneGiet,0,1,173,2348 +849108623,Kapiburaczek,786,2,13253,1025 +849108673,DonArturo,0,1,26,2844 +849108762,batman2022,0,1,400,2089 +849108780,przegra%C5%82,786,11,90614,558 +849108784,Berciak,786,7,31188,802 +849108891,jd21372005,210,1,303,2172 +849108915,jordonjbe,0,1,180,2337 +849108933,Gilutyna,0,1,33,2614 +849108934,Stefek7,0,1,801,1917 +849108971,MGryglak95,377,1,2476,1589 +849108991,krisus8497,0,1,1068,1844 +849109010,SirNiuchniuch,1687,1,4109,1400 +849109036,Gerf,1789,1,239,2236 +849109045,Lilit,1797,1,403,2086 +849109072,mikos,1232,1,291,2186 +849109116,apolinary,778,1,5180,1315 +849109152,leon1214,0,1,111,2464 +849109232,Lord+patban177,944,1,448,2060 +849109351,Seledynowy+skuter+wodny,0,1,183,2330 +849109413,Javor,234,0,0,3125 +849109507,ewazeth,1528,1,26,2845 +849109521,justys3828,0,0,0,3126 +849109601,EpsHunT,0,1,26,2846 +849109637,Czemi96,1597,2,5487,1301 +849109701,VaniaMay,0,1,360,2118 +849109705,DomiNio,0,1,357,2121 +849109795,Peka44,847,5,17824,956 +849109875,v3n1s,0,1,180,2338 +849109885,graf72,0,1,1746,1711 +849109935,Patrykos91,0,1,1226,1803 +849109966,Kozio%C5%82,1735,1,344,2133 +849110021,Piotr-Wielki2,0,1,2167,1634 +849110289,daniok94,0,1,603,1987 +849110304,Paveulon,0,1,97,2492 +849110310,Mantvel,1643,0,0,3127 +849110365,bojanees,1312,3,9599,1101 +849110380,Jasne%C5%BBeSzymek,31,1,225,2263 +849110382,Hardex,33,3,10945,1059 +849110479,rambo3423,1797,1,115,2456 +849110571,Ywozdreiwt+Nyzuk,256,1,2552,1580 +849110622,ciulpa,1687,1,2157,1636 +849110644,METALCORE,0,1,121,2444 +849110674,Kr%C3%B3l+Mieszko1,0,1,670,1963 +849110688,Szarykocik717,214,1,3147,1510 +849110711,Johny544,786,3,7640,1179 +849110726,BiiLii,0,1,162,2364 +849110743,Bart97,847,3,10950,1058 +849110747,knoxville5,0,1,26,2847 +849110781,BabciaZosia,0,1,59,2560 +849110852,mysza,0,1,417,2079 +849110916,Chronek09,0,1,658,1966 +849111050,Tomkos,0,2,3977,1413 +849111052,FAST+ROTHMANS,0,1,26,2848 +849111109,Cinse,0,1,117,2451 +849111121,t0m45,0,1,192,2318 +849111196,batomixmix,1597,4,19895,917 +849111231,Ciapolos,1687,1,3047,1523 +849111244,MannyKing97,722,1,4481,1372 +849111316,Pazuros,1687,1,3090,1516 +849111332,w00hanczyk,285,2,4888,1334 +849111408,Lisq12,847,1,3200,1506 +849111418,adamcx91,1797,1,1323,1781 +849111487,smokee944,24,1,4782,1346 +849111632,UlanyKaplan,1590,1,524,2016 +849111667,Artur350,0,0,0,3128 +849111732,Dragonics1991,157,1,1549,1744 +849111792,zbigniew.G,29,1,7165,1209 +849111819,Lord+darecki2,117,1,3177,1507 +849111911,pebloss,0,1,3975,1414 +849112029,macqu,1669,2,6887,1224 +849112033,Paxon13,1669,2,5106,1320 +849112050,nowikpzk,1669,1,1108,1835 +849112094,herqers,157,1,3431,1477 +849112178,pawe%C5%82dante,0,1,52,2577 +849112264,Kacperr12,0,1,47,2593 +849112312,Natalia1999,0,1,2357,1603 +849112368,Ruchna722,1797,1,2274,1618 +849112369,malagagaga,0,2,4611,1362 +849112435,Quattro+only,1735,1,6050,1267 +849112443,brodatykebab,0,1,26,2849 +849112504,HucuPL,157,1,3099,1515 +849112510,Chwaliszew2008,0,1,106,2468 +849112561,Stefan+Batory+V,0,1,26,2850 +849112666,DiscoZenon,0,1,102,2477 +849112725,domin964,0,1,2064,1647 +849112733,Astecki,0,1,52,2578 +849112774,Xpace67,0,1,26,2851 +849112850,Klaudia121,0,1,102,2478 +849112876,Fajfus,0,1,188,2326 +849112879,marcinmista,1797,1,2631,1575 +849112887,Banan123,0,1,1214,1805 +849112960,Arlosik,29,1,1394,1769 +849113055,Mlody165,0,1,2293,1614 +849113063,Nowicjusz1,0,1,64,2552 +849113078,Sara23,0,1,1402,1767 +849113226,Adison+II+%C5%9Amia%C5%82y,0,1,478,2044 +849113300,Sir+sernik,0,1,313,2160 +849113350,SirPatryk23,1526,0,0,3129 +849113480,Olek96,847,1,1858,1691 +849113485,Knoxpl,0,1,48,2587 +849113546,bboy1994,0,3,6396,1246 +849113556,aghjs5,0,1,257,2215 +849113580,Marcin+Marci,0,1,26,2852 +849113595,Kosiaczkyyy,1312,1,1320,1783 +849113597,Wenol,1312,1,1741,1712 +849113603,JW94,0,1,802,1916 +849113673,Ferox-1,0,1,223,2267 +849113819,NurseJK,1735,1,1446,1760 +849113868,Mroczne+Elfy+1,0,1,102,2479 +849114022,gmaciejwagner,0,1,846,1904 +849114028,Ko%C5%82owata,0,1,395,2090 +849114033,przemys%C5%82+II,1797,1,1126,1826 +849114040,Kulfix,0,1,521,2018 +849114085,Krystiann11,0,1,1951,1679 +849114112,Adikson16,0,1,143,2387 +849114119,Adek77,452,1,1027,1853 +849114265,narcyz3973,1312,3,11999,1043 +849114408,Ragnarok+76,0,1,1027,1854 +849114445,kindza,1466,1,1686,1719 +849114450,matipo321,0,1,113,2460 +849114477,Monczi25,31,1,198,2302 +849114502,sada2,0,1,3943,1417 +849114579,SzymonMF6465,1724,1,7901,1163 +849114603,Flink,0,1,222,2270 +849114664,Patryk95,0,1,26,2853 +849114683,jareczek951,59,1,1034,1850 +849115010,Treon,0,1,53,2573 +849115254,Simon93,29,1,1546,1745 +849115256,CorAngar96,0,1,44,2601 +849115304,kijek,0,1,38,2612 +849115365,Pati999,0,1,196,2308 +849115431,fifiogf,1312,1,686,1958 +849115509,Kox12344,0,1,153,2374 +849115920,Damian2023,0,1,121,2445 +849115994,Struma,0,1,212,2283 +849116044,Mandrysi,0,1,295,2181 +849116089,tribal766,0,1,26,2854 +849116221,ChadxikH8,452,3,5396,1308 +849116225,Pongo,0,1,46,2596 +849116251,natofp,234,1,101,2484 +849116287,Jozin321,0,1,234,2247 +849116310,VillaSHL,778,1,2327,1610 +849116357,Kerakein,0,1,277,2198 +849116416,rafaltz,29,1,250,2223 +849116419,ArtBe,0,1,2251,1625 +849116679,Szy.mek,234,1,842,1908 +849116819,smerfy+22,0,1,52,2579 +849116911,Hakal93,0,1,26,2855 +849116980,Bacik1906,0,1,26,2856 +849117035,Alderos,0,1,26,2857 +849117087,SunSun,1797,1,566,1996 +849117143,karty123,29,1,2034,1657 +849117196,ekursy,1052,1,958,1878 +849117240,Love4evere3,0,1,349,2127 +849117242,frombosu1,0,1,1146,1820 +849117362,festher,0,1,1219,1804 +849117427,Mateusz400,441,1,573,1992 +849117454,Bimber123,452,1,776,1926 +849117513,heroarek,0,1,26,2858 +849117533,Krzysiek12,0,1,73,2528 +849117536,Jacymir15,0,1,68,2543 +849117551,perko,0,1,484,2040 +849117622,smiesznylucek,1687,1,1308,1788 +849117644,WillyBilly,0,1,26,2859 +849117695,sadomaso6903,210,1,350,2126 +849117830,kosmiczny,0,1,2016,1661 +849118043,barca35fcb,0,1,26,2860 +849118128,jaro513,0,1,228,2254 +849118231,Czaq1,0,1,111,2465 +849118259,Kopansky,0,1,1496,1751 +849118261,justyna010114,0,1,446,2061 +849118262,xKirioSan,0,1,424,2076 +849118435,Budrys2000,0,1,26,2861 +849118441,AdaSobieraj,29,1,565,1998 +849118462,wlodek1404,0,1,793,1919 +849118478,Vokhar,1764,1,26,2862 +849118616,Kolodzij,29,1,94,2499 +849118709,Addu,1795,1,317,2158 +849118761,Kokeszko94,0,1,26,2863 +849118769,joaopaulo98,0,1,26,2864 +849118786,hair12345,0,1,761,1937 +849118806,trend,0,1,338,2140 +849118820,zenek12,0,1,289,2187 +849118827,kozielniak,0,1,141,2389 +849118930,Mc+Fly,0,1,128,2429 +849118954,Grzaegorz1122,0,1,268,2208 +849118998,balkres,0,1,237,2242 +849118999,Minister123,847,1,1768,1706 +849119017,rewox,0,1,26,2865 +849119078,GrubySponsor,0,1,141,2390 +849119121,aceofa,1724,1,664,1965 +849119163,Dawidoxil1996,1735,1,227,2256 +849119173,kafejtor,0,1,227,2257 +849119223,Grzelakb,29,1,339,2138 +849119328,miglanc06,0,1,682,1959 +849119407,Tomaszer12,0,1,525,2014 +849119423,Polak212,210,1,514,2021 +849119432,WitoldWolski,0,1,153,2375 +849119476,gnom1,0,1,301,2174 +849119486,paviks,0,1,26,2866 +849119528,SERWAR,847,1,1574,1739 +849119631,ChujajBuja,0,1,189,2324 +849119827,Mishkkk,0,1,317,2159 +849119842,karplop123,0,1,66,2546 +849119848,drewniak,210,1,176,2343 +849119862,belzebub+szatan,0,1,466,2048 +849119975,Przemko+duch,0,1,627,1980 +849119994,Exodus303,1777,1,998,1866 +849120051,Noto+Wojsko,0,1,26,2867 +849120075,saulgoodman,0,1,124,2438 +849120088,Czaki995,0,1,185,2328 +849120093,marcinpaluch0211,0,1,69,2537 +849120129,Derek69,452,1,849,1901 +849120285,pollak21,1456,1,165,2360 +849120311,KOYE,0,1,26,2868 +849120421,Kampffliege,0,1,112,2462 +849120438,Wanderwoman,0,1,500,2031 +849120467,czaka222,0,1,198,2303 +849120488,bonktrzmiel,1312,1,255,2218 +849120526,Kolekcjon,0,1,140,2393 +849120698,rozyczka,0,1,705,1949 +849120763,spokojnaba%C5%9Bka123,0,1,64,2553 +849120791,ERAS,0,1,26,2869 +849120855,tinki,0,1,26,2870 +849120865,Martynka2010,0,1,66,2547 +849120889,Layton,0,1,47,2594 +849120966,Michal1614,0,1,26,2871 +849121036,ARENTHAI,0,1,70,2535 +849121196,Szymonos420,0,1,238,2237 +849121269,Choroszcz,0,1,34,2613 +849121320,pawka283,0,1,44,2602 +849121329,Szalejot3,452,1,294,2183 +849121331,Dankok2k23,0,1,512,2023 +849121337,Ppfarmer,0,1,26,2872 +849121389,huzar28,0,1,26,2873 +849121483,xLyn,0,1,555,2003 +849121504,HinduKush,0,1,94,2500 +849121536,LeadyBoo,0,1,26,2874 +849121570,LupaPL,0,1,240,2234 +849121623,prosiaczek,0,1,301,2175 +849121686,danek,0,1,26,2875 +849121691,Szpadyzor,0,1,133,2413 +849121697,S3b3k1999,0,1,26,2876 +849121725,drzyzga123,0,1,26,2877 +849121746,robotykjakinny,0,1,26,2878 +849121762,Jopi,0,1,377,2104 +849121811,Cookie,0,1,158,2370 +849121835,mati997,0,1,424,2077 +849121846,Maxi+Montana,0,1,286,2190 +849121975,anita,0,1,264,2210 +849122047,grzesiek9522,0,1,66,2548 +849122297,Leszek1964,847,1,566,1997 +849122318,polska652,0,1,112,2463 +849122450,SteamUser1675976894,0,1,88,2505 +849122487,kamilek6969,0,1,259,2214 +849122658,sweetdream,0,1,26,2879 +849122738,Saladyn92,0,1,386,2099 +849122768,niedzwiedzxd,0,1,336,2141 +849122819,BELOZ,0,1,95,2495 +849122821,SzefPatry%C5%9B,0,1,64,2554 +849122822,jmz41922,1803,1,162,2365 +849122931,gumis111,0,1,26,2880 +849123002,zdzi%C5%9B123,636,1,26,2881 +849123125,Lukaczka,0,1,196,2309 +849123128,farmerzestoczka,0,1,75,2524 +849123135,Ljuboja1916,441,1,43,2605 +849123162,jesslexuwuowo,0,1,80,2515 +849123267,Sewo2137,0,1,95,2496 diff --git a/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/village.txt b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/village.txt new file mode 100644 index 0000000..d285aaa --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/pl181.plemiona.pl/map/village.txt @@ -0,0 +1,57633 @@ +1,2.+Tortoise+%2A%2A,493,536,849087855,7834,0 +2,0041+K54+and987+OZDR.,490,544,3613413,9861,0 +3,Ateny_62,472,531,7491093,9835,0 +4,AR_Madzia,466,518,2585846,5836,0 +5,013,475,523,849092723,9899,0 +6,Wioska+barbarzy%C5%84ska,516,443,8649412,6573,0 +7,024,463,524,2585846,2945,0 +8,Winter+is+coming,438,552,699856962,2111,0 +9,%2AAteny_41,470,532,2585846,9638,0 +10,amator,524,573,848915531,11550,0 +11,%2AAteny_15,471,525,2585846,3464,0 +12,NOT%3F,430,519,9236866,10042,0 +13,Front_19,456,528,2585846,9638,0 +14,KONFA+TO+MARKA%2C+NARKA,422,465,698152377,10303,0 +15,Front_12,458,524,2585846,4025,0 +16,Daleko+030,473,582,699364813,8744,0 +17,Wioska+barbarzy%C5%84ska,454,537,3909522,1248,0 +18,Lord+Arsey+KING,522,495,848956513,10285,0 +19,%2AAteny_08,470,535,2585846,9638,0 +20,%2AAteny_29,465,522,699333701,3497,0 +21,NOT%21,468,533,9236866,10042,0 +22,amfa+fatima,448,524,698971484,10008,0 +23,020,472,516,699333701,6783,0 +24,%2AAteny_48,466,529,2585846,8744,0 +25,%2AAteny_27,479,523,2585846,9638,0 +26,PRO8L3M,478,525,7491093,10242,0 +27,Lucky+Strike,497,527,699785935,9835,0 +28,A+012.,433,582,849028088,9894,0 +29,Lynortis,464,532,699698253,9558,0 +30,08+Belgia,587,490,8925695,8169,0 +31,keepo,475,515,848967710,5373,0 +32,012,473,520,699781762,3812,0 +33,DROGA+BEZ+POWROTU,539,468,8155296,10728,0 +34,5.+Koszutka,481,537,699781762,10330,0 +35,Suppi,445,525,699856962,9556,0 +36,keepo,482,534,848967710,10252,0 +37,Aleartis,481,538,698704189,9711,0 +38,KIELBA+084,455,600,699342219,10384,0 +39,051,419,525,699851427,10042,0 +40,Village,491,531,849094067,11481,0 +41,%C5%9Amieszkii,520,561,3454753,9064,0 +42,POGRZEB+GRUBYCH,540,446,8155296,9455,7 +43,031,479,525,699781762,10060,0 +44,Szlachcic,577,485,699759128,10237,0 +45,0006,496,501,848967710,10495,3 +46,Wioska+barbarzy%C5%84ska,398,481,699523631,10481,0 +47,%7E054.,497,573,7139820,10495,0 +48,006+Tokio,619,483,7092442,9718,0 +49,Ateny_74,470,528,2585846,7122,0 +50,%5B109%5D+North9,574,488,848985692,10218,0 +51,%2AAteny_46,474,534,2585846,9638,0 +52,119.,494,486,8788366,6345,0 +53,012,609,482,699573053,10495,0 +54,B062,472,464,699299123,8502,0 +55,Yogi,485,530,2808172,9983,0 +56,F067,489,519,699189792,9251,0 +57,Szlachcic,485,480,699098531,10295,0 +58,030,478,520,699781762,9631,0 +59,NOT%21,467,534,9236866,6994,0 +60,Alien%21,499,510,699785935,9835,0 +61,keepo,484,531,848967710,10495,0 +62,%230047+Samob%C3%B3j,489,546,9272054,10000,0 +63,061+Finlandia,572,465,7092442,10495,0 +64,1.+Is-7+%21%21%21,491,540,849087855,9820,0 +65,K44+008,426,483,698290577,6772,0 +66,%2AINTERTWINED%2A,478,544,698704189,9711,0 +67,Jungle+Boyz%21,495,510,699785935,9835,0 +68,F091,481,518,699189792,10019,0 +69,K55,538,518,848967710,10252,0 +70,%2AAteny_51,461,529,2585846,9638,0 +71,%7E%7ELataj%C4%85cyHolender%7E%7E,587,508,9174887,10144,0 +72,Lynortis,466,536,849001724,11824,0 +73,003,562,490,699099811,9202,0 +74,%230048+Tajemnica+Poliszynela,485,543,9272054,10003,0 +75,002,431,506,698971484,10160,0 +76,012,462,531,2585846,2640,0 +77,AbacadA+009,558,435,699756210,10495,0 +78,0096,464,550,698659980,9014,0 +79,Wioska+Barbarzy%C5%84ska,547,478,698867483,9889,0 +80,CHW%23028,480,538,699781762,10495,0 +81,Szlachcic,486,472,699098531,9885,0 +82,0065,487,526,699432672,10495,0 +83,Brat447,454,503,699262350,10559,0 +84,Yogi,485,531,2808172,9983,0 +85,CHW%23046,481,521,699781762,5000,0 +86,CALL+1017,553,562,699784536,10311,0 +87,SsSs,457,500,1536625,10002,0 +88,05+California,469,506,699781762,10728,0 +89,PRO8L3M,461,490,7491093,9976,0 +90,NOT%3F,417,532,9236866,10042,0 +91,Brat447,463,505,699262350,10720,0 +92,lady,494,583,699703642,10455,0 +93,0013,509,530,699432672,10495,0 +94,135+Puebla,479,483,1497168,9761,0 +95,R%C4%99cznik+do+zmiany,382,480,699697558,10495,0 +96,Monetki,474,425,699098531,10295,0 +98,NOT%3F,417,510,9236866,10042,0 +99,0052,519,524,699432672,10495,0 +100,Lord+Arsey+KING,520,501,848956513,9417,0 +101,0207,534,594,698659980,10019,0 +102,PRO8L3M,464,497,7491093,10311,0 +103,Horyzont+zdarze%C5%84,519,532,7581876,9835,0 +104,Winter+is+coming,444,540,698971484,2034,0 +105,Lord+Arsey+KING,515,520,848956513,10285,0 +106,Monetki,483,415,699098531,10295,0 +107,021N+Lord+Alexxx,577,440,8323711,10143,0 +108,063.+ALFI,474,564,8539216,1468,0 +109,Lord+Arsey+KING,531,522,848956513,10285,0 +110,Osada,499,438,699098531,10295,0 +111,Kasyno,440,510,7249451,9902,7 +112,0052+K55+and987+OZDR,509,550,3613413,10083,0 +113,-+037+-,534,580,849018239,10000,0 +114,ChceszPokojuSzykujSi%C4%99DoWojny,458,513,699333701,9827,0 +115,Brat447,460,508,699262350,6984,0 +116,Szlachcic,491,476,699098531,10311,0 +117,Village,502,585,849094067,11321,0 +118,MAXX,496,481,699098531,9835,0 +119,Wioska+Barbarzy%C5%84ska,546,480,698867483,10019,0 +120,Szlachcic,495,474,699098531,9690,0 +121,Szlachcic,489,464,699098531,10294,0 +122,0115,469,548,698659980,10019,0 +123,030+%7C,553,534,8000875,9957,4 +124,Szlachcic,487,475,699098531,9957,0 +125,Bagdad,477,382,8847546,10654,0 +126,Szlachcic,498,485,699098531,10311,0 +127,0015,508,505,698599365,9860,0 +128,Szlachcic,488,477,699098531,10292,0 +129,Mzm48,553,522,7142659,7447,0 +130,A001,490,415,699299123,10495,0 +131,CHW%23027r,484,538,698704189,9711,0 +132,161+Belo+Horizonte,482,473,1497168,9761,0 +133,%230068+Robert+L,498,561,9272054,10014,0 +134,Szlachcic,500,465,699098531,9637,0 +135,PRO8L3M,421,498,7491093,10178,0 +136,0003+smarfa,501,494,698599365,10019,0 +137,CALL+953,546,553,699784536,10311,0 +138,x+Cast+Away+001,457,491,698290577,8861,0 +139,005,510,545,848915531,10807,0 +140,%230046+Nero,497,545,9272054,10000,0 +141,%230105+Orch%C3%B3wek,481,544,9272054,9780,0 +142,makelovenotwar5,392,459,698807570,10068,0 +143,CALL+1046,540,550,699784536,10311,0 +144,30001,490,539,848915531,11087,0 +145,KONFA+TO+MARKA%2C+NARKA,434,462,698152377,10300,0 +146,F028,486,542,699189792,10003,0 +147,10%2A,571,544,699664910,7548,0 +148,Jaaa,578,541,698635863,10487,3 +149,%230034+Turbocola,495,543,9272054,10000,0 +150,2.+Su+%21%21%21,496,541,849087855,9823,0 +151,2.+Obj+261+%21%21%21,496,549,849087855,10362,0 +152,%230080+Czas+to+pu%C5%82apka,485,551,9272054,10003,0 +153,Piek%C5%82o+to+inni,522,482,848956765,10160,0 +154,Piek%C5%82o+to+inni,525,475,848956765,6639,0 +155,CALL+980,550,569,699784536,10544,0 +156,%C5%81yk+i+buch%21,493,510,699785935,10401,9 +157,NOT%21,466,537,9236866,9310,0 +158,Szlachcic,502,474,699098531,9882,0 +159,HCG,622,507,699379895,10495,0 +160,Yogi,517,540,2808172,7386,0 +161,%2A008%2A,620,505,698670524,8614,0 +162,OBTW,433,560,699443920,3239,0 +163,Szlachcic,510,463,699098531,8958,0 +164,SsSs,422,501,1536625,7524,0 +165,10+Backstage,615,510,9314079,9713,0 +166,Osada,498,444,699098531,10292,0 +167,Kielce,590,576,1715091,9835,0 +168,F033,491,534,699189792,9701,0 +169,015.,599,534,6520732,10019,0 +170,Winter+is+coming,435,550,699856962,2551,0 +171,Suppi,441,530,699856962,9549,8 +172,Handel,508,383,699368887,10237,0 +173,Village,505,589,849094067,10559,0 +174,Wioska+Edwardes,599,522,698845189,10083,0 +175,0076,602,523,699432672,10495,0 +176,Krab+Oceaniczny,475,585,7249451,8035,0 +177,Piek%C5%82o+to+inni,512,477,848956765,10019,6 +178,podgrzybek,598,573,1715091,9962,0 +179,KONFA+TO+MARKA%2C+NARKA,450,460,698152377,10311,0 +180,Taran+004,617,525,698562644,10311,0 +181,F008,507,535,699189792,9747,0 +182,rakieta+012,625,499,848928486,9819,0 +183,044.,509,486,8788366,10252,0 +184,Lord+Arsey+KING,518,499,848956513,10285,0 +185,032,592,569,699373599,10047,0 +186,001.+Ragnar,585,569,699373599,10252,0 +187,Joms+030,521,418,699756210,9708,0 +189,Wioska+barbarzy%C5%84ska,532,474,699355601,2866,0 +190,s%C5%82odziute%C5%84ka+09,604,536,8013349,10160,0 +191,P%C3%B3%C5%82noc,607,542,699785935,10093,0 +192,YES%3F,458,537,699660539,3955,0 +193,kto+ananasowy+pod+wod%C4%85+ma+dom,589,575,699628084,9797,0 +194,Jaaa,589,566,698635863,10236,0 +195,003.+NH+STREET,614,538,8900955,8814,0 +196,A.181.00,598,535,2999957,10242,0 +197,Wioska+barbarzy%C5%84ska,446,520,698971484,10008,0 +198,s%C5%82odziute%C5%84ka+01,603,533,8013349,9740,0 +199,013,525,497,8191129,9899,0 +200,Lord+Arsey+KING,512,496,848956513,10285,0 +201,023,456,438,9291984,10478,0 +202,%230001+Amegakure,527,620,699728159,9761,0 +203,Lord+Arsey+KING,529,486,848956513,10285,0 +204,010.+Czomolungma,602,570,1601917,10495,0 +205,kto+ananasowy+pod+wod%C4%85+ma+dom,570,504,699628084,9797,0 +206,Piek%C5%82o+to+inni,524,477,848956765,6331,0 +207,%3Acc,541,477,698867483,10019,0 +208,%5B001%5D+Drep+Big+%2A,604,538,848985692,10290,0 +209,Mzm06,613,535,7142659,10362,0 +210,Wioska+3,529,516,699385139,4383,0 +211,Wioska+17ohly17,596,572,1715091,9681,0 +212,Creep,594,565,848926293,9528,0 +213,SsSs,460,502,1536625,4660,0 +214,%C5%81om%C5%BCa,588,583,1715091,9324,0 +215,yogi,526,534,2808172,7444,0 +216,0011,505,502,698599365,10019,0 +217,Lord+Arsey+KING,519,507,848956513,10285,4 +218,Wioska+Dziadzi,600,532,848963236,3421,0 +219,Jaaa,568,560,698635863,10479,0 +220,Essa+002,573,573,848987051,10216,0 +221,-015-,465,427,9291984,10351,0 +222,Anio%C5%82+soli,603,526,3364735,9761,0 +223,Szlachcic,485,462,699098531,10291,0 +224,Essa+003+Magdula,568,581,848987051,10237,0 +225,Kiedy%C5%9B+Wielki+Wojownik,398,454,8632462,9711,0 +226,012+Lucek+ville,603,527,8323711,10495,0 +227,048,586,473,699573053,10495,0 +228,081,612,533,699373599,10093,0 +229,SsSs,452,499,1536625,10160,0 +230,Wioska+barbarzy%C5%84ska,484,544,7976264,9478,0 +231,Lord+Arsey+KING,516,497,848956513,10285,0 +232,%230074+%C5%81%C4%85ka,492,547,9272054,10019,0 +233,061.,513,506,8788366,7301,0 +234,%2A012%2A,608,496,698670524,8501,0 +235,-%5B027%5D-+Rakaposhi,562,485,849092827,7596,0 +236,002,509,501,758104,8024,0 +238,Szlachcic,487,465,699098531,10291,0 +239,NOT%3F,461,538,9236866,3471,0 +240,Szlachcic,498,467,699098531,9620,0 +241,025,415,524,699851427,10129,0 +242,Wioska+FKG007,421,409,356642,9835,0 +243,Szlachcic,487,476,699098531,10292,5 +244,s181eo01,393,447,393668,9894,0 +245,Wioska+barbarzy%C5%84ska,499,412,699658023,9817,0 +247,Gdybys+Kiedy%C5%9B,500,520,699785935,9835,0 +249,%7E%7ELataj%C4%85cyHolender%7E%7E,584,502,9174887,10144,0 +251,ChceszPokojuSzykujSi%C4%99DoWojny,462,509,699333701,9835,0 +253,Suppi,425,454,699856962,9570,0 +255,keepo,484,530,848967710,10016,0 +256,Pf+Konfederacja,482,496,848915730,9740,5 +257,001,385,462,3698627,9964,0 +258,Suppi,444,527,699856962,9551,0 +259,0080,465,554,698659980,8139,5 +260,%230127+Fascynacja,495,525,9272054,6988,0 +261,038.,554,513,8788366,10252,0 +262,%5B0001%5D,458,383,8630972,10495,0 +263,059,552,430,699761749,10495,6 +264,Szulernia,418,414,7249451,10053,0 +266,Yogi,515,540,2808172,10019,0 +268,Suppi,444,453,699856962,8617,0 +270,.%3A021%3A.+Chilout,510,420,848934935,8227,0 +271,A001,444,404,8740199,10479,0 +272,2xxxxxxxxxxxx,464,429,9291984,10244,0 +273,NOT,420,421,9236866,10042,0 +274,%7E%7ELataj%C4%85cyHolender%7E%7E,597,502,9174887,9905,0 +275,20005,505,541,848915531,10728,0 +276,00Wioska+barbarzy%C5%84ska,475,530,699781762,9197,0 +277,0079,442,401,699431255,10311,0 +278,KONFA+TO+MARKA%2C+NARKA,402,459,698152377,10971,0 +281,005,567,481,849070464,8493,0 +282,%2B44+61+Tassin+la+Demi+Lune,417,465,698361257,10019,0 +283,Cast+Away+011,453,483,698290577,8639,0 +284,%7E067.,498,529,7139820,8380,0 +285,-017-,461,430,9291984,10348,0 +286,K44+x001,442,404,698364331,10495,0 +287,JaamMwG+002,525,527,848987051,9814,0 +289,Strasznie+Mi%C5%82y+S%C4%85siad%21,546,447,556154,6472,0 +290,064.+%7CXD%7C,497,522,848967710,10209,0 +291,048+Belgia,583,478,7092442,10495,0 +293,%2B44+63+Bron,431,469,698361257,9841,0 +294,0007+K55+and987+OZDR.,504,559,3613413,9845,7 +295,NOT,415,428,9236866,10042,0 +297,Fajna+016,453,565,8539216,6743,0 +298,Minas+Tirith,506,516,849091897,10019,0 +299,Szlachcic,466,417,698388578,10237,0 +300,Land+of+Fire,395,447,698962117,9678,0 +301,Pf+Konfederacja,491,492,848915730,9938,0 +302,TRR+001,407,415,698971484,10008,0 +303,Szlachcic,492,476,699098531,9885,0 +305,9.+Wysypisko,547,434,8444356,10338,0 +306,20016,519,553,848915531,11130,4 +307,F002,507,531,699189792,9753,0 +308,0016+K55+and987+OZDR.,504,560,3613413,9780,0 +310,Brat447,452,500,699262350,10495,0 +313,Jaaa,577,539,698635863,10476,0 +315,Wioska+Mateoo,551,493,699432672,4081,0 +316,Nowy+Trueschool,503,523,699785935,9976,0 +317,PRO8L3M,450,499,7491093,10311,0 +318,028+Oxenfurt,620,521,699272880,10068,0 +320,NOT%3F,429,522,9236866,10042,0 +321,Amaranthe,498,520,699785935,9835,0 +322,Merhet,523,582,698215322,10228,3 +323,Village,488,528,849094067,9323,0 +324,Bucksbarzy%C5%84sKamiiiru,426,510,848955783,10178,0 +325,30002,494,541,848915531,12111,0 +327,Wioska+barbarzy%C5%84ska,432,501,698971484,9794,0 +328,2.+BC,496,531,849087855,7395,0 +330,.%3A097%3A.+Chillout,543,445,848934935,4267,0 +332,-%5B021%5D-+Khunyang+Chhish,552,491,849092827,7739,0 +334,keepo,486,528,848967710,9832,0 +335,015.+Wioska+tukkan,580,514,8788366,9986,3 +337,0000,441,396,699431255,10047,0 +338,Wioska_01,537,451,8674163,5302,0 +339,xhav,396,472,698807570,10068,0 +340,Horyzont+zdarze%C5%84,516,537,7581876,9835,0 +343,Butem+w+Morgen,485,513,848967710,10124,0 +344,MasteroN+02,568,449,699379895,10290,0 +347,Wioska+Wojtek150+005,533,523,7581876,9835,0 +348,014,491,387,698739350,9825,0 +349,Bucksbarzy%C5%84sKamiiiru,428,514,848955783,10001,0 +350,215+Broome,531,436,1497168,9761,2 +352,NOT%3F,426,540,9236866,6803,0 +354,Monetki,471,429,699098531,9623,0 +356,Warzywniak+020,451,546,698290577,1942,0 +357,Horyzont+zdarze%C5%84,535,547,7581876,10019,4 +360,0.Hollywood,520,584,698215322,9962,0 +362,025,467,525,2585846,4935,0 +364,Piek%C5%82o+to+inni,519,485,848956765,10160,0 +366,Vito+1,511,533,7581876,10019,0 +367,Piek%C5%82o+to+inni,516,451,848956765,10160,0 +368,xxx,513,459,698239813,10495,0 +369,.%3A029%3A.+Chillout,518,453,848934935,10495,0 +370,0030+K54+and987+OZDR.,488,551,3613413,9845,0 +371,1-%2AAirdrie...,526,445,8649412,12154,0 +372,064.+ALFI,481,563,8539216,1461,0 +373,213+Darwin,529,438,1497168,9761,0 +374,A023,487,415,699299123,10495,0 +375,19-Mesquite,528,446,8649412,9806,0 +376,Forteca,502,569,606407,10495,0 +377,.%3A039%3A.+Chillout,518,449,848934935,9388,0 +378,Szlachcic,507,475,699098531,9899,0 +379,Napewno+to+nie+jest+off,515,445,848912265,10495,0 +380,NOT%3F,436,552,9236866,1603,0 +381,Piek%C5%82o+to+inni,519,452,848956765,10160,0 +382,Szlachcic,508,465,699098531,8202,0 +383,Butem+w+Morgen,483,516,848967710,10085,0 +384,.achim.,519,454,6936607,10311,0 +385,Ko%C5%84czy%C4%87+czas%3A%29,548,446,699368887,8983,0 +386,.%3A031%3A.+Chillout,521,448,848934935,6605,0 +387,.%3A041%3A.+Chillout,520,451,848934935,10495,0 +388,Osada,498,455,699098531,9827,0 +389,.achim.,527,447,6936607,10544,0 +390,%2B44+75+Saint+Omer,454,473,698361257,9635,0 +391,Szlachcic,516,459,699098531,9166,0 +392,R%C4%99cznik+do+zmiany,414,486,699697558,10019,0 +394,Napewno+to+nie+jest+off,516,429,848912265,10495,0 +395,Bagdad,475,389,8847546,10654,0 +396,Dum+Spiro+Spero,491,554,848896948,9981,0 +397,xxx,511,446,698239813,10199,0 +398,05.+C3F,475,507,699781762,9521,0 +399,Piek%C5%82o+to+inni,529,437,848956765,10019,0 +400,AbacadA+019,559,431,699756210,10221,0 +401,7.62+mm,507,434,699777234,10019,0 +402,C034,522,450,699299123,7379,0 +403,Szlachcic,486,470,699098531,10300,0 +404,Zasiedmiog%C3%B3rogr%C3%B3d,517,444,699433558,10311,0 +406,NOT%3F,423,518,9236866,10042,0 +407,Szlachcic,505,460,699098531,7112,0 +408,%2311.,520,464,848967710,10252,0 +409,Osada,509,451,699098531,9617,0 +410,Piek%C5%82o+to+inni,522,484,848956765,10083,1 +411,Osada,507,456,699098531,9632,0 +412,-xx10,498,495,848967710,10252,0 +413,Osada,511,453,699098531,4695,0 +414,Szlachcic,499,457,699098531,10068,0 +415,Wioska+432,561,519,477415,10495,0 +416,Gravity,412,458,698962117,9491,0 +417,Wioska+514,571,446,477415,10495,0 +418,Piek%C5%82o+to+inni,510,466,848956765,10160,0 +419,051.+ALFI,483,566,8539216,1489,0 +420,7.62+mm,504,440,699777234,10019,0 +421,%230098+Kopyt%C3%B3w,475,557,9272054,9144,0 +422,Cast+Away+018,445,483,698290577,10867,1 +424,.%3A018%3A.+Chillout,508,420,848934935,7209,0 +425,Napewno+to+nie+jest+off,514,438,848912265,8904,0 +426,-+300+-,529,582,849018239,10000,0 +427,.%3A063%3A.+Chillout,512,425,848934935,5862,7 +429,028%23,538,455,8155296,10189,0 +430,.%3A034%3A.+Chillout,521,443,848934935,3306,0 +431,7.62+mm,503,435,699777234,10019,0 +433,Kasyno,445,516,7249451,9680,0 +434,Napewno+to+nie+jest+off,517,439,848912265,10495,0 +435,087.,475,500,8788366,10068,0 +436,Osada,501,445,699098531,10294,0 +437,JaamMwG+003,526,523,848987051,9809,0 +438,Szlachcic,508,460,699098531,9109,0 +439,016,566,549,699316421,9885,0 +440,%2304.,525,469,848967710,10252,0 +441,Yogi,533,563,2808172,10019,0 +442,Piek%C5%82o+to+inni,512,451,848956765,10160,0 +443,SsSs,421,496,1536625,9456,0 +445,Osada,500,447,699098531,10294,0 +446,xxx,477,437,698239813,10495,8 +447,X07,530,460,6923061,2697,0 +448,kathare,498,570,873575,10322,0 +449,x+011.+Gar%C5%9B%C4%87+dynamitu,414,490,698290577,7856,5 +450,Szlachcic,499,476,699098531,10311,0 +451,K55+kaszka+manna%3AP,542,519,848967710,10252,0 +452,Szlachcic,496,483,699098531,9620,0 +453,%21Alakazam,567,445,699795378,10019,0 +454,Minas+Tirith,505,481,699098531,9835,0 +455,ChceszPokojuSzykujSi%C4%99DoWojny,457,514,699333701,3608,0 +456,Szlachcic,505,472,699098531,9888,0 +457,.achim.,532,461,6936607,9083,0 +458,093.,500,481,8788366,10004,0 +459,067.+ALFI,463,568,8539216,1331,0 +460,Szlachcic,488,474,699098531,10292,0 +461,004,508,545,848915531,10012,0 +462,Szlachcic,504,467,699098531,9899,0 +463,%7C083%7C,557,513,699664910,6614,0 +464,0016+b%C4%99c,513,494,698599365,10019,0 +465,020,537,474,848930111,9851,0 +466,P+Konfederacja+8,460,453,848915730,9784,7 +467,Wioska+Ko5a,492,478,699098531,9835,0 +468,004,568,482,849070464,8493,0 +469,-x7,499,498,848967710,10252,0 +470,CALL+1041,550,541,699784536,9835,0 +471,002,503,478,699098531,9976,0 +472,Szlachcic,505,469,699098531,9637,0 +473,Polania+002,540,451,758104,8024,0 +474,013W+Wiocha,558,511,8323711,10143,0 +475,Szlachcic,494,467,699098531,9767,0 +476,Ogr%C3%B3d+Warzywny,448,563,7249451,7458,0 +477,Szlachcic,491,477,699098531,9956,0 +478,KONFA+TO+MARKA%2C+NARKA,428,482,698152377,10654,0 +479,Szlachcic,500,470,699098531,10359,0 +480,KONFA+TO+MARKA%2C+NARKA,439,466,698152377,10292,0 +481,Szlachcic,508,481,699098531,9814,0 +482,067.,509,493,8788366,10393,0 +483,Szlachcic,504,472,699098531,10252,0 +484,009,414,501,699510259,9756,0 +485,0018,506,497,698599365,10019,0 +486,0056,513,519,699432672,10495,0 +487,%23Scyther,574,457,699795378,12154,9 +488,Piek%C5%82o+to+inni,518,477,848956765,9487,0 +489,Butem+w+Morgen,485,512,848967710,10495,0 +490,-xx15,491,496,848967710,10393,0 +491,0004+Venezuela,493,471,699098531,9835,0 +492,KONFA+TO+MARKA%2C+NARKA,423,463,698152377,10311,0 +493,Szlachcic,492,480,699098531,10311,0 +494,K44+024,426,495,698290577,5529,0 +495,Szlachcic,491,484,699098531,10311,0 +496,053.+ALFI,486,567,8539216,2858,0 +497,Szlachcic,496,457,699098531,9835,0 +498,Szlachcic,494,475,699098531,10294,0 +499,Szlachcic,504,468,699098531,9637,0 +500,043.,509,488,8788366,10485,0 +501,Szlachcic,559,469,698867446,9852,0 +502,Szlachcic,493,478,699098531,10311,0 +503,%235%23,500,480,699098531,9835,0 +504,095+Grand+Junction,477,461,1497168,9761,0 +505,002,489,472,699098531,9835,0 +506,K44+026,419,499,698290577,4303,0 +507,Szlachcic,510,464,699098531,9637,0 +508,Szlachcic,496,469,699098531,8507,0 +509,Pf+Konfederacja,487,484,848915730,9322,0 +510,Szlachcic,496,461,699098531,10115,0 +511,0027,504,492,698599365,9606,0 +512,0017+K55+and987+OZDR.,506,541,3613413,9861,0 +513,Lord+Arsey+KING,517,488,848956513,10285,0 +514,Pf+Konfederacja,495,489,848915730,9938,0 +515,Lord+Arsey+KING,515,494,848956513,10285,0 +516,Zero+Stresu,448,533,698971484,10252,0 +517,Lord+Arsey+KING,526,495,848956513,10285,0 +518,ChceszPokojuSzykujSi%C4%99DoWojny,456,517,699333701,6824,0 +519,Lord+Arsey+KING,513,490,848956513,10285,0 +520,K44+010,431,485,698290577,7003,0 +521,Wioska+11,520,504,848967710,10971,0 +522,R%C4%99cznik+do+zmiany,417,500,699697558,10845,0 +523,Lord+Arsey+KING,520,489,848956513,10285,0 +524,xxx,481,442,698239813,10495,0 +525,078.,508,503,8788366,11130,0 +526,KIELBA+028,451,577,699342219,10495,0 +527,Szlachcic,508,477,699098531,9068,0 +528,ChceszPokojuSzykujSi%C4%99DoWojny,467,513,699333701,3042,4 +529,054.,506,492,8788366,10252,0 +530,Lord+Arsey+KING,517,494,848956513,5969,0 +531,K45+-+004,558,465,6510480,10320,0 +532,Szlachcic,491,482,699098531,10303,2 +533,022,567,603,698999105,10311,0 +534,Winter+is+coming,444,548,698971484,2788,0 +535,Lord+Arsey+KING,513,492,848956513,10285,0 +536,CALL+976,547,544,699784536,10311,0 +537,Lord+Arsey+KING,521,495,848956513,10285,0 +538,112.,534,485,8788366,6016,0 +539,Lord+Arsey+KING,515,498,848956513,10285,0 +540,Napewno+to+nie+jest+off,515,437,848912265,6847,0 +541,Lord+Arsey+KING,519,488,848956513,10285,0 +542,%5B088%5D,535,486,848985692,10492,0 +543,Lord+Arsey+KING,576,592,848956513,10285,0 +544,0593,476,546,698659980,9494,0 +545,Lord+Arsey+KING,513,486,848956513,10285,0 +546,017+C12,522,466,848967710,3206,0 +547,Lord+Arsey+KING,525,486,848956513,10285,0 +548,Piek%C5%82o+to+inni,514,478,848956765,10019,0 +549,Monetki,482,416,699098531,10295,0 +550,Joms+008,529,417,699756210,10030,1 +551,Szlachcic,499,487,699098531,9680,0 +552,Piek%C5%82o+to+inni,520,480,848956765,10160,0 +553,CJRT,544,469,699368887,7573,0 +554,011,528,498,8191129,9835,0 +555,0014,621,528,6510480,10322,0 +556,WioskaC,516,584,8369778,9762,0 +557,Lord+Arsey+KING,520,507,848956513,10285,0 +558,Mzm20,558,529,7142659,10362,0 +559,Taran+009,623,528,698562644,9615,0 +560,%5B135%5D,563,535,8000875,9495,0 +561,0014,510,499,698599365,10019,0 +562,%3F%2B44+86+Zegerscappel,464,486,698361257,9695,0 +563,001,509,502,758104,8024,0 +564,Piek%C5%82o+to+inni,516,481,848956765,7827,0 +565,052.,504,494,8788366,10252,0 +566,F083,490,524,699189792,8926,0 +567,%5B066%5D+My,528,502,848985692,10216,0 +568,tawerna,570,594,699364813,10311,0 +569,Piek%C5%82o+to+inni,518,475,848956765,9669,0 +570,006+Wioska,521,466,848967710,10083,0 +571,C008,524,457,699299123,10559,0 +572,Szlachcic,490,477,699098531,10297,0 +573,%2303.,524,469,848967710,10485,0 +574,019.+ALFI,487,571,8539216,1418,0 +575,Piek%C5%82o+to+inni,516,473,848956765,10083,0 +576,Szafir,533,542,699785935,9976,0 +577,006,507,481,698881022,3049,0 +579,079.,567,465,849094609,9958,0 +580,014+piotr,618,521,8323711,10495,0 +581,Sharks%21,498,510,699785935,9835,0 +582,0026,505,501,698599365,5978,0 +583,%3F%3F%3F,481,546,698704189,9520,0 +584,Lord+Arsey+KING,523,501,848956513,10285,0 +585,%7E052.,493,571,7139820,10495,0 +586,012,524,498,8191129,11819,0 +587,%5B068%5D+Bunuh+kamu,535,511,848985692,10049,0 +588,Lord+Arsey+KING,528,487,848956513,10285,0 +589,Lord+Arsey+KING,515,496,848956513,10285,0 +590,206+Ohio+Rios,465,462,1497168,9761,0 +591,123.,512,485,8788366,7749,0 +592,Wioska+barbarzy%C5%84ska,451,534,698971484,3846,0 +593,X05,535,475,6923061,4120,0 +594,%7E074.,485,615,7139820,10495,0 +595,Lord+Arsey+KING,520,488,848956513,10285,0 +596,Piek%C5%82o+to+inni,521,486,848956765,10160,0 +597,%5B026%5D+Kubulala,587,523,848985692,10057,0 +598,0005+K55+and987+OZDR.,505,550,3613413,9953,0 +599,0Wioska+barbarzy%C5%84ska,479,531,699781762,9764,0 +600,F010,505,535,699189792,9761,0 +601,Mzm25,559,528,7142659,10362,0 +602,Yogi,508,533,2808172,10019,0 +603,x05,550,472,8459255,10066,0 +604,0043+K55+and987+OZDR,506,537,3613413,9861,0 +605,Gattacka,587,499,699298370,9554,0 +606,003+B.O.R,576,584,699524362,8538,0 +607,Horyzont+zdarze%C5%84,508,543,7581876,10019,0 +608,KONFA+TO+MARKA%2C+NARKA,436,458,698152377,10311,0 +609,CALL+1059,518,533,699784536,10495,0 +610,Szcz%C4%99%C5%9Bliwego+Nowego+Roku%3A%29,540,456,8155296,7786,0 +611,004.+Midnight+Never+Ends,615,528,699785935,10160,0 +612,057+Hana,457,467,1497168,9761,0 +613,Wioska+barbarzy%C5%84ska,434,443,698884287,10285,0 +614,Lord+Arsey+KING,515,528,848956513,10285,0 +615,Gravity,420,457,698962117,9505,0 +616,F063,506,536,699189792,9761,0 +617,Sparta_61,476,574,2585846,9638,0 +618,Yogi,518,535,2808172,10019,0 +619,F073,503,534,699189792,9761,0 +620,Koszmarna+Noc,497,514,699785935,10178,0 +621,020.+ALFI,486,571,8539216,1508,0 +622,Lord+Arsey+KING,514,530,848956513,10285,0 +623,%2AINTERTWINED%2A,498,543,698704189,9711,0 +624,%5B017%5D+Pepehi+ia+oe,586,524,848985692,10292,8 +625,20004,503,543,848915531,11130,0 +626,Bucksbarzy%C5%84sKamiiiru,428,502,848955783,10171,0 +627,%5B085%5D,553,513,8000875,10232,4 +628,50002,504,541,848915531,4885,0 +629,F062,488,520,699189792,9050,0 +630,ADEN,560,432,698588535,7438,0 +631,004.,613,543,8900955,7387,0 +632,0156,468,553,698659980,7332,0 +633,Gdy+zga%C5%9Bnie+s%C5%82o%C5%84ce,505,527,699785935,9835,0 +634,2.Strv+%21%21%21,493,531,849087855,10019,0 +635,kathare,499,571,873575,10495,0 +636,F005,502,542,699189792,9761,0 +637,Yogi,520,544,2808172,4542,0 +638,PRO8L3M,420,498,7491093,10068,0 +639,Yogi,489,540,2808172,10019,0 +640,Szlachcic,483,464,699098531,10294,0 +641,Gdy+opadnie+popi%C3%B3%C5%82%21,503,509,699785935,9835,0 +642,Bucksbarzy%C5%84sKamiiiru,424,507,848955783,9160,0 +644,0037,463,470,848913037,9030,0 +645,Szlachcic,503,459,699098531,7229,0 +646,Szlachcic,581,488,699759128,10237,0 +647,xxx,509,458,698239813,10495,0 +648,0063+Somali+lew,443,429,3909522,8805,0 +649,Osada,510,452,699098531,9637,0 +650,Szlachcic,506,462,699098531,7594,0 +651,F003,497,536,699189792,9189,0 +652,0014,506,526,699432672,10495,0 +653,F036,495,530,699189792,9080,0 +654,0053,509,519,699432672,10495,0 +655,Dum+Spiro+Spero,493,559,848896948,9976,0 +656,Strefa+Komfortu,500,521,699785935,10495,0 +657,B031,483,458,699299123,9985,0 +658,Miasto+%C5%9Amiechu,504,527,699785935,9835,0 +659,184+Medellin,469,472,1497168,9761,0 +660,Wioska+barbarzy%C5%84ska,509,541,7581876,10287,0 +661,JaamMwG+020,517,528,848987051,9817,0 +662,018+F-1,602,516,8323711,10495,0 +663,Diagnoza%21,494,509,699785935,10040,0 +664,Wioska+rafalzak+01,520,543,7581876,9835,0 +665,Osada+BR,454,539,3909522,2806,0 +666,F032,501,528,699189792,9761,0 +667,007,446,524,698971484,10008,0 +668,0066,506,518,699432672,10495,0 +669,CALL+1056,521,532,699784536,10495,0 +670,Napewno+to+nie+jest+off,516,442,848912265,7494,0 +671,Ogr%C3%B3d+Warzywny,450,562,7249451,8012,8 +672,3.+M41+Buldog+%21%21%21,496,537,849087855,10008,0 +673,%23038,519,551,849001572,10019,0 +675,keepo,489,529,848967710,9515,0 +676,0005,508,514,699432672,10495,0 +677,FF007,471,517,699189792,5401,0 +678,ztb,500,523,699785935,9835,0 +679,Wioska+1,521,514,699385139,7465,0 +681,0Wioska+barbarzy%C5%84ska,480,528,699781762,10078,0 +682,Bon+Appetit,518,511,699785935,12154,1 +683,F043,487,525,699189792,8913,0 +684,Monetki,471,422,699098531,10291,0 +685,2.+Isu+%21%21%21,501,539,849087855,9966,0 +686,Butem+w+Morgen,490,512,848967710,10559,0 +687,Front_08,460,522,2585846,4336,0 +688,1.+Type-5H,498,530,849087855,7727,0 +689,0092+Alakazam,455,436,3909522,9549,0 +691,%7E%7ELataj%C4%85cyHolender%7E%7E,546,475,9174887,10141,0 +692,005,522,529,7581876,10019,0 +693,Monetki,476,413,699098531,10292,0 +694,Harpagan5,501,533,7581876,9835,0 +695,%2B44+61+Lyon+Monplaisir,416,469,698361257,9818,0 +696,069.+%7CXD%7C,496,513,848967710,10209,0 +697,B010,491,448,699299123,10495,0 +698,CHW%23055s,527,520,7581876,5505,0 +699,50001,505,540,848915531,10728,0 +700,XXX+Abadon,563,487,699347951,10393,0 +701,Jeszcze+nie+czas,500,524,699785935,9835,0 +702,Horyzont+zdarze%C5%84,501,532,7581876,10019,0 +703,CALL+960,545,549,699784536,10311,0 +704,Hahahaha,488,470,699098531,9835,2 +705,1.Lansen+%21%21%21,498,540,849087855,9854,0 +706,%23Machamp,572,453,699795378,11130,0 +707,F064,505,536,699189792,9761,0 +708,F075,504,530,699189792,9761,0 +709,%7C006%7C,552,569,873575,10495,0 +710,F076,508,530,699189792,9741,0 +711,%C5%9Amieszkii,519,557,3454753,9115,0 +712,keepo,490,528,848967710,9777,0 +713,Lord+Arsey+KING,516,499,848956513,10285,0 +714,%7E065.,489,532,7139820,8234,0 +715,Lord+Arsey+KING,513,497,848956513,10285,0 +716,1.Amx+CDC+%21%21%21,497,534,849087855,10072,0 +717,Yogi,487,530,2808172,10078,0 +718,181,392,518,849030226,9724,0 +719,1.+Is-3,492,541,849087855,9674,0 +720,005,521,515,8191129,9702,0 +721,PRO8L3M,479,526,7491093,10019,0 +722,Wioska+barbarzy%C5%84ska,602,568,8742874,9720,0 +723,Szlachcic,487,469,699098531,10292,0 +724,F046,483,520,699189792,9555,0 +725,P.004,536,566,873575,9966,0 +726,keepo,482,531,848967710,10444,0 +727,Pf+Konfederacja,493,496,848915730,9740,0 +728,0057,490,519,699432672,10416,0 +729,Numenor,506,512,849091897,9899,0 +730,Klub,542,434,848986287,9753,3 +731,016,479,524,849092723,8603,0 +732,086+Orzech+pekan,541,464,7092442,10495,0 +733,bandzior,493,613,606407,10311,0 +734,Problemy+luksusowe,507,509,699785935,12154,0 +735,keepo,479,508,848967710,10251,0 +736,STAL+MIELEC,551,460,699368887,7535,0 +737,0062,507,525,699432672,10495,0 +738,165+Kurytyba,479,477,1497168,9761,0 +739,056,536,486,699351301,9615,7 +740,Wioska+barbarzy%C5%84ska......,486,548,7976264,10189,0 +741,%2AINTERTWINED%2A%2A,463,562,698704189,9318,0 +742,keepo,483,524,848967710,8993,0 +743,%3F%2B44+86+Quaedypre,465,488,698361257,9080,0 +744,0007,509,514,699432672,10495,0 +745,Butem+w+Morgen,487,513,848967710,10495,0 +746,Bucksbarzy%C5%84sKamiiiru,436,528,848955783,10971,0 +747,A019,494,411,699299123,10495,1 +748,F030,499,531,699189792,11420,0 +749,Lord+Arsey+KING,509,521,848956513,10285,0 +750,Rivendell,502,513,849091897,9522,0 +751,Hobbiton,504,508,849091897,10019,0 +752,001+-+Nowa+przygoda,421,581,225023,9728,0 +753,C+Zach+001+Gliwice,409,576,849084740,9937,0 +754,0063+b4,449,433,3909522,10239,0 +755,C+002+Mikolow,418,581,849084740,7915,0 +756,037+%7C,557,559,8000875,10141,0 +757,nijmegen,402,572,9167250,9135,0 +758,A045,497,422,699299123,10495,0 +759,A.005,409,575,849088243,9436,0 +760,Wioska+02,434,455,698884287,10285,0 +761,C+010+Bukowno,415,579,849084740,7810,0 +762,-004-,538,452,849070335,9034,0 +763,CALL+1016,552,562,699784536,10311,1 +764,001thx,411,573,9167250,9614,0 +765,NOT%3F,432,495,9236866,10042,0 +766,-5-+%28Loss+of+life%29,415,569,698769107,9170,0 +767,P001,503,561,698599365,9727,0 +768,Fajna+081,458,559,3613413,8619,9 +769,016,524,497,8191129,9976,0 +770,A+015.,431,584,849028088,10019,0 +771,Szlachcic,487,461,699098531,10294,0 +772,0058,489,514,699432672,10495,2 +773,WioskaKr%C3%B3l+Artur+I%28WiotrPitczak%29,408,581,698769107,9835,0 +774,001,426,579,849084740,10053,0 +775,B053,475,468,699299123,9380,0 +776,C+001+Katowice,417,581,849084740,10604,0 +777,C+008+Bochnia,419,577,849084740,8823,0 +778,A.018+LW,413,575,849088243,10476,0 +779,020,530,429,699788305,9741,0 +780,Barad+Eithel,495,512,849091897,7592,0 +781,Osada,508,454,699098531,9150,0 +782,poza+kontrol%C4%85+%21,493,506,699785935,10160,0 +783,066.+%7CXD%7C,494,513,848967710,10209,0 +784,0072,530,522,699432672,10495,0 +785,Myto+myto%21,497,505,699785935,9835,0 +786,Szlachcic+026,558,520,758104,9338,0 +787,O+czym+%C5%9Bnisz%3F%21,499,505,699785935,10362,0 +788,%2B44+72+Etaples,429,471,698361257,9841,0 +789,-x2,491,498,848967710,10252,0 +790,C024,526,453,699299123,7087,0 +791,%23PRO8L3M,431,491,7491093,10311,3 +792,072.+%7CXD%7C,494,512,848967710,9694,0 +793,027,528,576,699189792,9742,0 +794,Kontrast,514,509,699785935,10068,3 +795,005,488,518,849092723,10528,0 +796,04+Las+Palmas,472,503,699781762,12154,0 +797,094,539,504,699351301,9928,0 +798,Konfiasze,475,494,698908912,10971,0 +799,110+Thunder+Bay,477,489,1497168,10237,0 +800,0103,468,550,698659980,8639,0 +801,108.,480,499,8788366,10252,0 +802,Osada,491,437,699098531,10294,0 +803,031,479,492,699510259,9835,0 +804,108+Oho,543,458,7092442,3441,0 +805,PRO8L3M,473,484,7491093,10311,0 +806,Winter+is+coming,507,580,699364813,10178,0 +807,117+St+Catharines,478,495,1497168,9994,0 +808,7.62+mm,470,436,699777234,10019,0 +809,01+Eyjafjallajokull,472,509,699781762,11377,0 +810,008,472,512,1536625,6474,0 +811,021.+ALFI,475,568,8539216,1269,0 +813,Part+II,536,381,698350371,10495,0 +814,013,519,538,848915531,9171,0 +815,%5B056%5D+Eta,543,489,848985692,10232,7 +816,C005+Hamunarpta,602,563,8096537,9761,0 +817,B059,472,470,699299123,9198,0 +818,PRO8L3M1,454,501,7491093,9835,0 +819,Brat447,453,503,699262350,10495,0 +820,%5B120%5D+North20,570,471,848985692,10051,0 +821,-Billie+Jean,511,514,699785935,9835,0 +822,SsSs,448,499,1536625,9814,0 +823,068.,514,506,8788366,12154,0 +824,Os+Konfederacja,481,446,848915730,10055,0 +825,JaamMwG+027,520,522,848987051,10218,0 +826,023,549,532,8138506,7461,0 +828,%5B100%5D,548,504,8000875,9898,0 +829,066,482,494,699510259,9740,0 +830,0031+K54+and987+OZDR.,488,550,3613413,9917,0 +831,183+Bogota,467,466,1497168,9783,0 +832,0034+MzM,529,536,698416970,9807,0 +833,005,549,615,699189792,9747,0 +834,204+Santo+Domingo,468,464,1497168,9771,0 +835,006+wioska+Gda%C5%84sk,610,464,699671454,8735,0 +836,-Idziesz+spa%C4%87%2C+ja+robi%C4%99+bang,516,513,699785935,9835,0 +837,Horyzont+zdarze%C5%84,502,532,7581876,9835,0 +838,szlachcic,439,542,698971484,8655,9 +839,064.+Vindobona,615,473,849091866,9606,0 +840,Piek%C5%82o+to+inni,526,437,848956765,10160,0 +841,0022+K55+and987+OZDR.,505,551,3613413,9853,0 +842,008,618,475,8459255,10232,0 +843,162+Campo+Grande,483,475,1497168,9761,0 +844,1.+Is-1+%21%21%21,501,544,849087855,10019,0 +845,037,617,472,8459255,9924,0 +846,%230133+Rykoszet,494,519,9272054,9579,0 +847,034.,611,470,8900955,9835,0 +848,Szlachcic,505,473,699098531,9687,0 +849,50000,502,538,848915531,10838,0 +850,%2B44+73+Le+Touquet+Paris+plage,433,470,698361257,9840,0 +851,Sparta_36,480,579,2585846,9426,2 +852,C+006+Olkusz,415,577,849084740,7726,0 +853,Szlachcic,566,500,698867446,9721,0 +854,0002+K55+and987+OZDR.,505,552,3613413,10083,0 +855,Fajna+020,450,553,698971484,6756,0 +856,Komturia,512,541,7581876,10019,0 +857,091.,508,489,8788366,10252,0 +858,Szlachcic,615,483,698867446,10301,0 +859,yogi,514,552,2808172,10252,0 +860,P+Konfederacja,461,448,848915730,9406,0 +861,026,519,533,848915531,5377,0 +862,D022,576,417,699761749,10495,0 +863,017,489,526,849092723,7491,0 +864,0012+K55+and987+OZDR.,509,558,3613413,9853,0 +865,009+Kagawa,619,482,7092442,10495,0 +866,Monetki,469,416,699098531,10295,0 +867,Wioska+6,621,471,848935020,10001,0 +868,Horyzont+zdarze%C5%84,526,549,7581876,9835,0 +869,063.+Sinope,618,469,849091866,10236,0 +870,Szlachcic,573,490,699759128,10237,0 +871,064+The+Lion,621,482,2135129,9553,0 +872,Pauza,534,539,699785935,9835,0 +873,Carsultyal.,486,555,698704189,9711,0 +874,%230002+Carsultyal,485,553,9272054,10000,9 +875,L+6,614,478,849027653,10316,0 +876,%7E039.,489,554,7139820,10495,0 +877,Tu+spoczywa+Deornoth,625,474,699545762,9004,0 +878,1.Progetto+%21%21%21,498,547,849087855,10019,0 +879,2.+Strv1065%2A%2A,499,546,849087855,9291,0 +880,15+%C4%86punolandia,612,471,699347951,11550,0 +881,Sparta_73,475,574,2585846,9638,0 +882,boh12prawdziwy,396,562,9167250,8369,0 +883,Yogi,521,536,2808172,10019,0 +884,xxx,512,458,698239813,8497,0 +885,%230134+Bastian,496,520,9272054,9595,0 +886,C023,513,454,699299123,10728,0 +888,Wioska+barbarzy%C5%84ska,570,517,699851345,9691,0 +889,%5B189%5D,537,489,8000875,10290,8 +890,Piek%C5%82o+to+inni,517,451,848956765,10160,0 +891,Wioska+barbarzy%C5%84ska,536,495,848967710,10252,0 +892,xxx,514,459,698239813,10971,0 +893,Pf+Konfederacja,494,492,848915730,9938,0 +894,C001,523,456,699299123,10728,0 +895,NOT%3F,460,539,9236866,3197,0 +896,Piek%C5%82o+to+inni,515,452,848956765,10160,0 +897,%230113+Wie%C5%9B+P%C3%B3%C5%82nocna,478,541,9272054,10019,0 +898,Piek%C5%82o+to+inni,516,448,848956765,10160,0 +899,Mysza+1,483,509,698908912,6191,0 +900,Piek%C5%82o+to+inni,515,451,848956765,10160,0 +901,.%3A040%3A.+Chillout,519,451,848934935,10252,0 +902,%5B136%5D+North+----,581,475,848985692,10297,0 +903,xxx,505,454,698239813,10495,0 +904,003+YAYAMIOMATE,540,522,8649412,6974,6 +905,Napewno+to+nie+jest+off,516,446,848912265,10495,0 +906,04.+C2F,473,506,699781762,10838,0 +907,C033,531,451,699299123,8581,0 +908,A009,491,416,699299123,10495,0 +909,Szlachcic,508,462,699098531,9632,0 +910,keepo,487,529,848967710,9967,0 +911,009,413,500,699851427,10042,8 +912,C006,524,458,699299123,10728,0 +913,%7E%7ELataj%C4%85cyHolender%7E%7E,585,512,9174887,10149,0 +914,001,606,538,699413040,9860,0 +915,Winter+is+coming,447,537,698971484,9116,0 +916,%5B001%5D,618,541,698305474,9809,0 +917,Fajna+088,452,564,699856962,7098,0 +918,DDD,528,453,849091084,9618,0 +919,Wioska+barbarzy%C5%84ska,485,510,848967710,9579,0 +920,Piek%C5%82o+to+inni,514,452,848956765,10160,0 +921,Fred+Perry,505,521,699785935,10495,0 +922,.%3A002%3A.+Chillout,509,441,848934935,10362,0 +923,C029,524,449,699299123,10332,0 +924,CALL+1085,537,538,699784536,10495,0 +925,.%3A011%3A.+Chillout,517,431,848934935,7100,0 +926,Zasiedmiog%C3%B3rogr%C3%B3d,517,448,699433558,10311,0 +927,C043,536,458,699299123,4889,0 +928,.%3A098%3A.+Chillout,523,447,848934935,9771,0 +929,032,525,441,699788305,8612,0 +930,.%3A066%3A.+Chillout,500,417,848934935,7663,0 +931,.achim.,518,454,6936607,10311,0 +932,Szlachcic,567,487,698867446,9852,0 +933,Osada,511,452,699098531,9123,0 +934,109.+Dzi%C4%99ki+szunaj+%3A%5D,489,427,8788366,10252,0 +935,Lord+Arsey+KING,519,471,848956513,9976,0 +936,CHW%23025r,484,536,698704189,9038,0 +937,keepo,481,535,848967710,9983,0 +938,Monetki,473,435,699098531,10291,0 +939,Pf+Konfederacja,487,502,848915730,9938,0 +940,Osada,496,450,699098531,7584,0 +941,B022,483,457,699299123,9683,0 +942,B039,495,452,699299123,9370,0 +943,Ateny_45,471,529,2585846,9088,0 +944,20023,505,547,848915531,10971,0 +945,Pf+Konfederacja,489,492,848915730,9575,0 +946,0Osada+koczownik%C3%B3w,479,527,699781762,9203,6 +947,092.,499,483,8788366,10252,0 +948,SsSs,458,505,1536625,10487,0 +949,Szlachcic+%21%21%21,496,490,848915730,10311,0 +950,.%3A120%3A.+Niangmen,513,415,848934935,9559,6 +951,.%3A029%3A.+San+Escobar,503,486,699098531,9260,0 +952,K45+-+010,560,468,6510480,9790,0 +953,-%5B013%5D-+Gaszerbrum+II,549,490,849092827,9216,0 +954,Feed+me+more+002,497,372,699756210,10300,0 +955,.033.,490,378,698489071,10485,0 +956,Piek%C5%82o+to+inni,520,435,848956765,10160,0 +957,ADEN,577,425,698588535,10311,0 +958,C041,535,455,699299123,10728,0 +959,So+Far+Away,511,526,699785935,9952,0 +960,Yogi,515,543,2808172,8584,0 +961,F080,510,530,699189792,8604,0 +962,Pi%C4%99kni+ludzie,502,518,699785935,10160,0 +963,F077,502,531,699189792,7752,0 +964,098,553,498,699351301,10035,0 +965,Szlachcic,506,467,699098531,10019,0 +966,xxx,510,457,698239813,10495,0 +967,Osada,511,454,699098531,9824,0 +968,006343+Miedziany+2,442,434,3909522,7892,0 +969,Piek%C5%82o+to+inni,512,472,848956765,10224,0 +970,Wioska+3,425,551,8779575,2955,0 +971,Piek%C5%82o+to+inni,515,472,848956765,10019,0 +972,Daleko+007,475,587,6116940,8151,0 +973,Szlachcic,504,458,699098531,9637,0 +974,Lord+Arsey+KING,524,493,848956513,10285,0 +975,%230026+Wirus,502,527,9272054,10478,0 +976,-Za+p%C3%B3%C5%BAno,518,514,699785935,9953,0 +977,Yogi,524,544,2808172,10160,0 +978,040.,502,492,8788366,10252,0 +979,55k%24+Grvvyq,528,534,699676005,10495,0 +980,%2AINTERTWINED%2A,485,538,698704189,9153,0 +981,Wioska+barbarzy%C5%84ska,521,541,7581876,9835,0 +982,JaamMwG+016,524,517,848987051,9539,0 +983,Micha%C5%82,534,538,848967710,10495,0 +984,Wioska+barbarzy%C5%84ska,452,452,699660539,9975,0 +985,Osada+GL,457,542,8779575,2940,2 +986,Podhala%C5%84ski+Zb%C3%B3j%21+-001-,525,549,7581876,10019,0 +987,%C5%9Amieszkii,530,545,3454753,10160,0 +988,008.,522,547,699695167,10047,0 +989,Ateny_64,476,536,2585846,6930,0 +990,20007,520,540,848915531,6364,0 +991,.achim.,520,457,6936607,10311,0 +992,JaamMwG+021,519,523,848987051,9806,0 +993,008,531,488,848967710,10252,0 +994,PRO8L3M,449,490,7491093,10178,6 +995,Pf+Konfederacja,486,498,848915730,9938,0 +996,Piek%C5%82o+to+inni,517,479,848956765,6847,0 +997,0061,506,524,699432672,10495,4 +999,%5B181%5D,531,555,8000875,9959,0 +1000,111+Winnipeg,478,491,1497168,9761,0 +1001,IQ151,552,452,699368887,6088,0 +1002,122+Banff,479,488,1497168,9761,0 +1003,5+ESIOK+f,538,463,8155296,9038,0 +1004,083.,481,493,8788366,10485,0 +1005,023,415,522,699851427,10129,0 +1006,Pf+Konfederacja,488,486,848915730,10066,0 +1007,.achim.,536,422,6936607,10311,0 +1008,Jaaa,579,596,698635863,10263,0 +1009,Butem+w+Morgen,484,513,848967710,10559,0 +1010,057.+Koniec+Konfy%3F%3F%3F,481,492,8788366,10252,0 +1011,Wioska+barbarzy%C5%84ska,465,432,9291984,10487,0 +1012,085.,474,498,8788366,9325,0 +1013,Monetki,481,426,699098531,10295,0 +1014,PRO8L3M,473,485,7491093,10311,0 +1015,0014+K55+and987+OZDR.,502,556,3613413,9847,0 +1016,148+Veracruz,472,493,1497168,9761,0 +1017,020+Wioska+barbarzy%C5%84ska,572,548,699316421,9744,0 +1018,keepo,478,508,848967710,10495,0 +1019,Gattacka,588,500,699298370,9747,0 +1020,A+013.,435,580,849028088,9694,0 +1021,-018-,466,427,9291984,10481,0 +1022,Pf+Konfederacja,486,500,848915730,10068,0 +1023,Wioska+barbarzy%C5%84ska,571,516,699851345,9689,0 +1024,Konfiasze,471,495,698908912,10971,0 +1025,146+Puerto+Escondido,478,486,1497168,9761,9 +1026,071,583,588,698999105,10311,0 +1027,082,616,529,699373599,10093,0 +1028,sas,536,556,7581876,10200,0 +1029,053.,507,491,8788366,9403,0 +1030,Wioska_06,544,449,8674163,6870,0 +1031,Yogi,521,540,2808172,10019,0 +1032,AAA,526,459,849091084,8961,0 +1033,025,523,534,2808172,8225,0 +1034,Piek%C5%82o+to+inni,516,478,848956765,10019,0 +1035,Vito+3,513,533,7581876,9835,0 +1036,Winter+is+coming,500,585,699364813,10068,0 +1037,adam5,523,539,7581876,9684,0 +1038,Esgaroth,503,513,849091897,8874,0 +1039,%2AAteny_78,474,540,2585846,9638,0 +1040,%5B083%5D,536,489,848985692,10293,0 +1041,CHW%23034,476,534,699781762,10330,0 +1042,Jaaa,574,539,698635863,10479,0 +1043,NOT%21,468,535,9236866,8122,0 +1044,1.+Type-4H,500,548,849087855,9116,0 +1045,Suppi,471,542,699856962,9682,0 +1046,Pf+Konfederacja,483,490,848915730,10268,0 +1047,SsSs,425,493,1536625,9818,7 +1048,039.+ALFI,468,551,8539216,1908,0 +1049,BBB,555,435,1006847,7189,0 +1050,038.+ALFI,467,554,8539216,1896,0 +1051,038+%7C,567,559,8000875,10478,0 +1052,034.+ALFI,476,552,8539216,2682,0 +1053,Wioska+Barbarzy%C5%84ska,546,496,698867483,10019,0 +1054,0649,477,548,698659980,10019,9 +1055,040.+ALFI,473,559,8539216,1449,0 +1056,%230060+Psylocibina,483,542,9272054,9098,0 +1057,Ogr%C3%B3d+Warzywny,446,559,7249451,7743,0 +1058,CHW%23035,477,534,699781762,9523,0 +1059,NOT%3F,427,496,9236866,10042,0 +1060,%2AAteny_04,471,536,699856962,9638,0 +1061,Follow+%21,501,502,699785935,10375,0 +1062,0127,463,544,698659980,10019,0 +1063,Szlachcic,500,471,699098531,9617,0 +1064,Zosta%C5%82em+Krabem,464,542,699783765,10252,0 +1065,064.,509,492,8788366,10393,0 +1066,%230094+Lebiedziew,474,559,9272054,8094,0 +1067,Os+Konfederacja,475,449,848915730,10178,0 +1068,Kwidzyn,509,618,606407,10311,0 +1069,Miejsca+z+plakatu,503,524,699785935,10160,0 +1070,Business+District,519,620,8199417,10495,0 +1071,-+Jeszcze+pi%C4%99%C4%87+minut,511,517,699785935,10160,0 +1072,%2AAteny_35,470,521,2585846,3823,0 +1073,ChceszPokojuSzykujSi%C4%99DoWojny,455,517,699333701,9490,0 +1074,Szlachcic,491,469,699098531,10161,0 +1075,170+Caracas,478,494,1497168,9753,9 +1076,Szlachcic,487,479,699098531,10300,0 +1077,Szlachcic+%21%21%21,483,477,699098531,10311,0 +1078,Sector+5,509,587,8199417,10147,0 +1079,001,489,470,699098531,9596,0 +1080,Szlachcic,490,463,699098531,10297,0 +1081,Lord+Arsey+KING,518,507,848956513,10285,0 +1082,086.,478,500,8788366,10252,0 +1083,116.,542,518,8788366,7134,0 +1084,maro+baron+1997%28Mieszko+1995%29,410,583,698769107,9899,0 +1085,C+Zach+002+Sosnicowice,404,576,849084740,10503,0 +1086,Mzm13.,560,516,7142659,10426,0 +1087,A.002,417,579,849088243,10259,0 +1088,%5B076%5D+Tote+dich,535,491,848985692,10397,0 +1089,A.007,410,586,849088243,10475,0 +1090,A.013,411,580,849088243,10559,0 +1091,Abadon+landy,563,489,699347951,9938,0 +1092,xxx,496,435,698239813,10495,8 +1093,%5B163%5D,537,530,8000875,8973,0 +1094,D04,546,455,699368887,7408,0 +1096,MojeSzczytToTw%C3%B3jDno,534,389,828637,10160,0 +1097,%7E%7ELataj%C4%85cyHolender%7E%7E,578,507,9174887,10066,0 +1098,.achim.,540,394,6936607,10311,0 +1099,para,495,590,8369778,10636,0 +1100,122+Wioska-005-,541,387,699491076,10001,0 +1101,Osada,491,453,699098531,9842,0 +1102,026,543,394,1424656,9825,0 +1103,Lord+Arsey+KING,528,486,848956513,10285,0 +1104,MojeSzczytToTw%C3%B3jDno,528,389,828637,10479,0 +1106,Szlachcic,491,470,699098531,10096,0 +1107,001+%C5%9Awi%C4%99ta+Terra,521,547,7581876,10019,0 +1108,Lord+Arsey+KING,515,489,848956513,10285,0 +1109,Wioska+Barbarzy%C5%84ska,547,486,698867483,9149,7 +1110,Wioska+181,524,538,849066849,2552,0 +1111,%2AINTERTWINED%2A,471,562,698704189,9537,0 +1112,yogi,527,552,2808172,10019,0 +1113,Mzm38,564,524,7142659,10426,0 +1114,Horyzont+zdarze%C5%84,514,551,7581876,9835,0 +1115,015,529,432,699788305,9192,0 +1116,yogi,524,562,2808172,10019,0 +1117,%5B145%5D+North,581,466,848985692,10052,0 +1118,Jaaa,580,553,698635863,10495,0 +1119,Horyzont+zdarze%C5%84,514,543,7581876,10160,0 +1120,NOT%3F,420,512,9236866,10042,0 +1121,055.,513,560,699695167,9735,0 +1122,Zero+Stresu,445,534,698971484,10252,0 +1123,21+Valhalla,528,548,699861004,9819,0 +1124,%28031%29,419,538,699846892,8837,0 +1125,Micha%C5%82,534,543,848967710,10495,0 +1126,Pf+Konfederacja,487,497,848915730,9832,0 +1127,Mzm01,608,530,7142659,10362,0 +1128,168+Capo+Grande,480,473,1497168,9761,0 +1129,KR%C3%93L+PAPI+WIELKI,574,577,698191218,10000,0 +1130,0062+%7E4%7E,444,433,3909522,10237,0 +1131,P.024,536,559,873575,10436,8 +1132,-+097+-,545,581,849018239,10000,0 +1133,%5B070%5D+Epsilon,552,502,848985692,10495,0 +1134,B003,553,499,8138506,10019,0 +1135,KONFA+TO+MARKA%2C+NARKA,442,461,698152377,10303,0 +1136,Wioska+17,554,504,699385139,8207,0 +1137,keepo,477,517,848967710,4822,0 +1138,%5B174%5D,553,508,8000875,7068,0 +1139,%7E%7ELataj%C4%85cyHolender%7E%7E,559,510,9174887,10224,0 +1140,Jehu_Kingdom_25_,600,483,8785314,9993,0 +1141,Lord+Arsey+KING,510,494,848956513,10285,0 +1142,010,526,500,8191129,10068,0 +1143,xxx,512,450,698239813,10559,0 +1144,Brat447,391,515,699262350,10476,0 +1145,007,520,517,8191129,8979,0 +1146,009,531,516,8191129,9835,0 +1147,Piek%C5%82o+to+inni,516,480,848956765,6844,0 +1148,%5B069%5D+Vonoy+ianao,531,504,848985692,10051,0 +1149,-%5B009%5D-+Nanga+Parbat,550,486,849092827,8134,0 +1150,007.+Atelstan,593,578,699373599,10252,0 +1151,Lord+Arsey+KING,584,526,848956513,10285,0 +1152,005.,615,542,8900955,7764,0 +1153,224+Coober+Pedy,528,443,1497168,9761,0 +1155,Brat447,445,485,699262350,10495,0 +1156,NWO,388,524,849030226,10950,0 +1157,163+Recife,478,478,1497168,9761,0 +1158,068+%7C,546,509,8000875,10495,0 +1159,hack3d+by+gh05t,476,525,7491093,9738,0 +1160,Piek%C5%82o+to+inni,522,483,848956765,10019,7 +1161,118,543,517,8788366,10393,0 +1162,%5B213%5D,542,520,8000875,10216,0 +1163,CALL+993,535,552,699784536,10178,0 +1164,%5B060%5D+Theta+%2A%2A,534,509,848985692,10241,0 +1165,Wioska+dezert8,541,518,848967710,10252,0 +1166,SsSs,423,506,1536625,9745,0 +1167,%5B146%5D,540,502,8000875,9547,0 +1168,Osada,502,439,699098531,10295,0 +1169,031.+Wioska+Zb%C3%B3jnik44,552,514,8788366,10252,0 +1170,K45+-+009,564,462,6510480,10319,5 +1171,050.+A-RE-SE-EY,543,511,848967710,10252,0 +1172,0180,464,549,698659980,9377,0 +1173,K34+-+%5B133%5D+Before+Land,458,380,699088769,8853,0 +1174,Yuppi,473,542,699856962,9644,0 +1175,%2308.,519,463,848967710,10971,0 +1176,Carsultyal.,487,554,698704189,9711,0 +1177,0133,456,391,699431255,7769,0 +1178,C027,524,450,699299123,8541,0 +1179,K34+-+%5B005%5D+Before+Land,453,388,699088769,10259,0 +1180,Szlachcic,516,464,699098531,8506,0 +1181,KONFA+TO+MARKA%2C+NARKA,430,462,698152377,10292,0 +1182,047.+A-RE-SE-EY,553,515,848967710,10252,6 +1183,C009,523,460,699299123,10495,0 +1184,C026,526,451,699299123,8194,0 +1185,15%2A,567,539,699664910,6104,0 +1186,001+hodowca1,530,466,8155296,8086,0 +1187,Samarkanda,531,462,8513699,6491,0 +1188,%2309.,527,463,848967710,10971,0 +1189,Szlachcic,569,488,698867446,9852,0 +1190,KHAND,537,462,8155296,10559,0 +1191,.achim.,533,454,6936607,9687,0 +1192,Lord+Arsey+KING,539,533,848956513,10285,0 +1193,C002,524,455,699299123,10728,0 +1194,Wioska+barbarzy%C5%84ska,536,541,7581876,5753,0 +1195,1+ESIOK,538,467,8155296,9571,2 +1196,C046,536,462,699299123,4799,0 +1197,Os+Konfederacja,479,443,848915730,9812,0 +1198,GELU%40GELU,534,469,8155296,9010,0 +1199,Yogi,537,542,2808172,10019,0 +1200,Horyzont+zdarze%C5%84,511,540,7581876,10019,2 +1201,C030,526,455,699299123,9437,0 +1202,Mzm16,559,516,7142659,10426,0 +1203,016+GELU-GELU+a,530,469,8155296,10986,0 +1204,Piek%C5%82o+to+inni,526,428,848956765,10160,0 +1205,C022,525,459,699299123,8221,0 +1206,-000-,538,450,849070335,9034,0 +1207,%2AAteny_17,468,526,2585846,3105,0 +1208,%C5%BBELAZNE+WZG%C3%93RZA,532,463,8155296,10861,0 +1209,011.,525,557,699695167,10132,0 +1210,08%2A,567,544,699664910,7321,1 +1212,F019,494,535,699189792,9074,0 +1213,107.,508,485,8788366,7424,5 +1214,Szlachcic,505,467,699098531,9623,0 +1215,Horyzont+zdarze%C5%84,535,542,7581876,9811,0 +1216,Piek%C5%82o+to+inni,511,471,848956765,8302,0 +1217,BETI+005,457,571,8539216,1361,0 +1218,%3F%2B44+85+Audruicq,455,481,698361257,9653,0 +1219,B036,488,453,699299123,10728,0 +1220,Suppi,471,540,699856962,9664,0 +1221,Szlachcic,511,465,699098531,8252,0 +1222,0071,468,548,698659980,9559,0 +1223,043.,575,452,849094609,9827,0 +1224,%28011%29,419,529,699846892,9904,0 +1225,0082,531,513,699432672,10495,0 +1226,0189,465,549,698659980,7937,0 +1227,BBB,555,439,1006847,8476,0 +1228,023+Iowa,606,489,7092442,10362,0 +1229,0101,461,546,698659980,7896,0 +1230,KIELBA+091,447,567,699342219,9220,0 +1231,%23052,476,605,699605333,10393,0 +1232,K45+-+002,561,465,6510480,10316,0 +1233,o.s.a.d.a,554,476,698867483,10495,8 +1234,%2AAteny_66,468,539,2585846,9638,0 +1235,Wioska+Matyy,547,497,848967710,7651,0 +1236,R%C4%99cznik+do+zmiany,386,481,699697558,10160,0 +1237,hack3d+by+gh05t,478,523,7491093,6024,0 +1238,003,610,535,699413040,9924,0 +1239,%3F%2B44+76+Lyon+Les+Etats+Unis,464,477,698361257,9793,0 +1240,0001,616,531,6510480,10971,0 +1241,JaamMwG+007,520,526,848987051,9699,0 +1242,Wioska+Fezzoo,604,539,2999957,10242,0 +1243,Szlachcic,493,459,699098531,10470,0 +1244,.Wioska+Rok+Szczura,609,555,7047342,10478,0 +1245,0001.+A+-+Ellesmera,606,527,7125212,9761,0 +1246,Bocianikson001,609,542,7528491,9950,0 +1247,0053+K55+and987+OZDR,510,550,3613413,10083,0 +1248,KR%C3%93L+PAPI+WIELKI,602,541,698191218,10000,0 +1249,%5B108%5D,562,544,8000875,9873,0 +1250,-1-,583,495,699347951,10971,0 +1251,ADEN,559,446,698588535,10136,0 +1252,016+Sebo,619,524,8323711,10160,0 +1253,095+Macedonia+P%C3%B3%C5%82nocna,572,468,7092442,10495,0 +1254,001+start,610,563,9238175,10559,0 +1255,South+Barba+3,455,459,699796330,9802,0 +1256,ccc,606,546,7047342,10474,0 +1257,0001+MzM,599,569,698416970,9630,0 +1258,Szlachcic+001,615,534,698562644,10311,0 +1259,Monetki,478,433,699098531,10295,0 +1261,0008,607,503,699429153,10337,0 +1262,F070,486,519,699189792,9261,0 +1263,Wioska+nocna1993,610,532,2999957,10242,0 +1264,-%5B019%5D-+Ngadi+Chuli,551,490,849092827,7377,0 +1265,0051,513,524,699432672,10495,1 +1266,A.015,594,567,9188016,10000,0 +1267,Gattacka,591,492,699298370,9821,0 +1268,20001,519,539,848915531,9472,0 +1269,tomson89,608,529,7142659,10362,0 +1270,002+pieska+Leszka,605,533,9238175,10545,0 +1271,036,583,463,699573053,10495,0 +1272,Jaaa,579,592,698635863,10045,0 +1273,-%5B008%5D-+Manaslu,544,488,849092827,8116,0 +1274,054.,518,554,699695167,9769,0 +1275,067,550,429,699761749,10365,0 +1276,rakieta+004,617,534,848928486,9905,0 +1277,002,620,498,849006412,9956,0 +1278,Pf+Konfederacja,489,495,848915730,9089,0 +1279,%2A5502%2A+Dym+Aguszka,592,564,7973893,10287,0 +1280,31.,565,480,698702991,10104,0 +1281,001+Pallet+Town,595,500,699441366,11109,0 +1282,%7E036.,492,568,7139820,10495,0 +1283,001,606,498,699573053,10495,0 +1284,F061,489,524,699189792,9399,0 +1285,058.,480,488,699851345,10252,6 +1286,%230131+Maja,486,533,9272054,4593,0 +1287,054+Waikiki,456,467,1497168,9761,5 +1288,%2AAteny_09,472,534,2585846,9638,0 +1289,%2AAteny_76,475,526,2585846,8007,0 +1290,185,558,442,849064752,9653,0 +1291,%2AAteny_10,472,526,2585846,3449,0 +1292,049.+A-RE-SE-EY,541,513,848967710,10252,0 +1293,067.+%7CXD%7C,493,513,848967710,9817,0 +1294,.%3A017%3A.+Znicz,510,410,8649412,10160,0 +1295,.%3A001%3A.+Here+We+Go+Again,509,410,8649412,9745,0 +1296,.achim.,532,447,6936607,10838,0 +1297,F053,486,517,848915730,9212,0 +1298,088.,475,499,8788366,8892,0 +1299,.%3A010%3A.+Etyka,502,410,8649412,9428,0 +1300,Wioska+barbarzy%C5%84ska,448,451,699660539,9533,0 +1301,F041,488,519,699189792,8922,0 +1302,208+Nassau,468,463,1497168,9761,0 +1303,.%3A006%3A.+Top%C3%B3r,510,417,8649412,9737,0 +1304,NOT%3F,423,516,9236866,10042,0 +1305,.%3A139%3A.+Niangmen,510,400,848934935,10252,0 +1306,A10,548,454,699368887,9889,0 +1307,.%3A001%3A.+Chillout,505,412,848934935,10001,0 +1308,Suppi,437,418,699856962,9994,0 +1309,xxx,515,464,698239813,7782,0 +1310,0053+Szkolna+17,439,421,3909522,10083,0 +1311,0020,508,500,698599365,10019,0 +1312,Lynortis,465,537,849001724,9830,0 +1314,0055,464,464,848913037,9993,0 +1315,017+Oklahoma,427,425,9291984,10479,0 +1316,Suppi,440,515,699856962,9570,0 +1317,NOT%21%3F+YET,459,533,3909522,1286,0 +1318,0033+Wioska+T+S,432,418,3909522,10342,0 +1319,0016+O,434,410,3909522,10075,0 +1320,%5B053%5D+Delta,539,492,848985692,10178,0 +1321,%5B090%5D,540,490,848985692,10068,0 +1322,Nie+%C5%9Bpi%C4%99+bo+gonie+sny,568,594,699785935,10224,0 +1323,KR%C3%93L+PAPI+WIELKI,570,587,698191218,9899,0 +1324,SsSs,421,501,1536625,8476,0 +1325,026.+Wioska+Songoku29,556,505,8788366,10252,0 +1326,Lord+Arsey+KING,566,589,848956513,10285,0 +1327,Po%C5%82udniowa+brama,572,599,699785935,10316,0 +1328,15+%7C+Legionex,541,437,849002091,5430,0 +1329,%5B126%5D,543,498,8000875,9914,0 +1330,Wioska+505,577,458,477415,10495,0 +1331,014,542,499,8191129,8408,0 +1333,7.62+mm,482,444,699777234,10019,0 +1334,074,566,603,698999105,10311,0 +1335,PRO8L3M,405,492,7491093,10495,0 +1336,F089,497,517,699189792,9912,0 +1337,Wioska+Barbarzy%C5%84ska,540,480,698867483,9267,0 +1338,78k%24+Grvvyq,541,492,699676005,9379,0 +1339,022.+ALFI,474,566,8539216,1815,0 +1340,%5B185%5D,540,487,8000875,9959,0 +1341,kathare,493,575,873575,9918,0 +1342,%5B055%5D+Dzeta+%2A%2A%2A,538,496,848985692,10252,0 +1343,%7E%7ELataj%C4%85cyHolender%7E%7E,568,497,9174887,9545,0 +1344,%5B094%5D,538,490,848985692,11321,0 +1345,A026,488,412,699299123,10495,0 +1346,%5B098%5D,534,493,848985692,11137,0 +1347,yogi,532,519,2808172,10160,0 +1348,PRO8L3M,409,496,7491093,10099,0 +1349,Witam+w+wietnamie,419,539,699856962,9899,0 +1350,%2AAteny_32,465,520,2585846,5447,0 +1351,018,462,528,2585846,2152,0 +1352,F050,491,519,699189792,8913,0 +1353,ChceszPokojuSzykujSi%C4%99DoWojny,459,515,699333701,3879,0 +1354,FF002,469,518,699189792,9663,0 +1355,%5B085%5D,528,507,848985692,10394,0 +1356,Szlachcic,484,472,699098531,10311,0 +1357,Piek%C5%82o+to+inni,513,474,848956765,10160,0 +1358,009.+Marzyciel+Shrek,456,499,698290577,5698,0 +1359,0069,528,526,699432672,10495,0 +1360,Brat447,457,495,699262350,6290,0 +1361,Wioska+426,590,511,477415,10495,0 +1362,...Just+like+that,452,487,699723284,10452,0 +1363,JaamMwG+025,522,525,848987051,9753,0 +1364,%3F%2B44+75+Feyzin,455,478,698361257,9840,0 +1365,041+Fairbanks,458,470,1497168,9761,0 +1366,-x3,500,499,848967710,10252,0 +1367,010+%7C,561,558,8000875,9888,5 +1369,...Just+like+that,462,487,699723284,3962,0 +1371,065+Phildelphia,462,474,1497168,9761,0 +1372,%3F%2B44+85+Lyon+Vaise,457,488,698361257,9852,0 +1373,Szlachcic,492,462,699098531,10297,0 +1374,Cast+Away+009,449,483,698290577,10068,0 +1375,B007,556,504,8138506,9640,0 +1376,Yogi,515,533,2808172,10019,0 +1377,Lord+Arsey+KING,517,527,848956513,10285,0 +1378,sas,514,534,7581876,9159,0 +1379,%C5%9Amieszkiii,479,581,3454753,8491,0 +1380,0009,507,526,699432672,10495,0 +1381,P.003,537,566,873575,10097,0 +1382,20011,518,531,848915531,11550,0 +1383,025.+A-RE-SE-EY,575,533,848967710,10252,0 +1384,Horyzont+zdarze%C5%84,516,536,7581876,10019,0 +1385,004,549,569,6818593,9835,0 +1386,yogi,516,541,2808172,10019,0 +1387,Butem+w+Morgen,484,512,848967710,10495,0 +1388,Micha%C5%82,531,536,848967710,10495,0 +1389,Hilonia,512,556,849066849,7946,0 +1390,Yogi,518,528,2808172,10019,0 +1391,Fajna+056,456,548,699868002,2308,0 +1392,Horyzont+zdarze%C5%84,526,546,7581876,9835,0 +1393,0073,511,531,699432672,10495,0 +1394,xxx,503,428,698239813,10495,0 +1395,Lord+Arsey+KING,515,522,848956513,10285,0 +1396,Wioska+barbarzy%C5%84ska,421,503,1536625,7704,0 +1397,Daleko+032,476,578,6116940,8376,2 +1398,0067,506,525,699432672,10495,0 +1399,017.+B%C5%82ud,511,563,699703642,9534,0 +1400,Lord+Arsey+KING,524,501,848956513,10285,0 +1401,Ateny_73,470,524,2585846,3028,0 +1402,B048,484,464,699299123,10495,6 +1403,Wioska+4,523,504,699385139,7071,0 +1404,002+Wawrzyszew,540,470,849083501,10019,0 +1405,%3F%2B44+85+Brexent+Enocq,458,484,698361257,9860,0 +1406,Wioska+barbarzy%C5%84ska,526,501,848967710,10252,0 +1407,066+Punxsutawney,461,477,1497168,9761,0 +1408,KONFA+TO+MARKA%2C+NARKA,393,464,698152377,10311,0 +1409,0006,390,460,699523631,10795,0 +1410,KONFA+TO+MARKA%2C+NARKA,387,468,698152377,10311,0 +1411,Piek%C5%82o+to+inni,520,487,848956765,9745,0 +1412,.%3A028%3A.+Belka,513,419,8649412,9130,1 +1413,Micha%C5%82,534,541,848967710,10495,0 +1414,.Br10..,428,545,8779575,9782,0 +1415,0050+K55+and987+OZDR,508,549,3613413,10083,0 +1416,%23008+-+Awzan,520,505,848967710,8850,0 +1417,P.008Z,506,553,873575,10157,0 +1418,018.+A-RE-SE-EY,572,528,848967710,10252,0 +1419,20009,503,545,848915531,11130,0 +1420,B043,480,469,699299123,10113,0 +1421,S%C5%82oneczna+Przysta%C5%84,519,543,7581876,10019,0 +1422,09%2A,571,542,699664910,8548,0 +1423,Horyzont+zdarze%C5%84,507,546,7581876,11911,0 +1424,adam3,525,538,7581876,9811,0 +1425,%2AINTERTWINED%2A%2A,522,552,698704189,9711,0 +1426,F040,482,520,699189792,9884,0 +1427,Horyzont+zdarze%C5%84,519,560,7581876,10019,0 +1428,%C5%9Amieszkii,517,565,3454753,9006,0 +1429,%C5%9Amieszkii,516,568,3454753,9182,0 +1430,059.,501,492,8788366,10252,0 +1431,yogi,526,556,2808172,10019,0 +1432,Bilonia,517,555,849066849,10376,0 +1433,yogi,520,538,2808172,10019,0 +1434,20027,507,549,848915531,11321,0 +1435,016+Przelot%C3%B3wka,421,540,699425709,9873,0 +1436,Zagrzeb,425,458,699660539,9765,7 +1437,%C5%9Amieszkii,525,548,3454753,10224,0 +1438,Gratuluje+m%C3%B3zgu,442,537,698971484,6408,0 +1439,%C5%9Amieszkii,517,557,3454753,9123,0 +1440,Horyzont+zdarze%C5%84,515,554,7581876,10019,0 +1441,10000,527,567,848915531,11321,0 +1442,Lord+Arsey+KING,523,495,848956513,10285,0 +1443,%C5%9Amieszkii,517,560,3454753,9335,0 +1444,006.,520,554,699695167,10188,0 +1445,Osada,497,439,699098531,10300,0 +1446,0050,508,526,699432672,10495,0 +1447,0038+K54+and987+OZDR.,495,564,3613413,9861,0 +1448,Ogr%C3%B3d+Warzywny,444,564,7249451,7623,8 +1449,Lord+Arsey+KING,522,492,848956513,10285,0 +1450,PRO8L3M,461,499,7491093,6572,0 +1451,051+Hilo,457,472,1497168,9761,0 +1452,%3F%2B44+76+Lyon+Tete+dOr,462,479,698361257,9752,0 +1453,%3F%2B44+85+Lyon+Perrache,454,480,698361257,10495,0 +1454,F068,486,520,699189792,9034,0 +1455,031+Nashville,452,468,1497168,9761,0 +1456,026,526,438,699788305,9290,0 +1457,PRO8L3M,466,495,7491093,10336,0 +1458,JaamMwG+008,519,526,848987051,9691,0 +1459,077.,467,492,8788366,10252,0 +1460,Mniejsze+z%C5%82o+0049,419,513,699794765,5923,0 +1461,SsSs,463,502,1536625,10495,0 +1462,Piek%C5%82o+to+inni,522,427,848956765,10160,0 +1463,068+Scranton,464,479,1497168,9761,2 +1464,.Mobile,469,494,699781762,12154,0 +1465,0035,464,470,848913037,7888,0 +1466,%3F%2B44+95+Pusignan,459,489,698361257,9726,0 +1467,keepo,482,532,848967710,10495,0 +1468,B060,473,464,699299123,10495,0 +1469,PRO8L3M,465,492,7491093,8231,0 +1470,PRO8L3M,460,497,7491093,10068,0 +1471,028,457,494,699510259,9761,0 +1472,Wioska+barbarzy%C5%84ska,537,505,848967710,10252,0 +1473,Horyzont+zdarze%C5%84,537,561,7581876,10019,8 +1474,%23%23%23%23Wioska+barbarzy%C5%84ska,437,429,9291984,10209,0 +1475,0026+K55+and987+OZDR.,500,560,3613413,9861,0 +1476,P.014,539,562,873575,10384,0 +1477,yogi,511,556,2808172,10019,0 +1478,0Wioska+barbarzy%C5%84ska,479,529,699781762,10023,0 +1479,004+%7C+Niflheim,508,548,7581876,10019,0 +1480,0008+K55+and987+OZDR.,506,560,3613413,10160,0 +1481,0062+%7E3%7E,443,435,3909522,10365,0 +1482,0102,445,415,699431255,9582,0 +1483,021.+A-RE-SE-EY,572,529,848967710,10252,0 +1484,027+San+Antonio,433,436,9291984,10476,0 +1485,-%5B005%5D-+Makalu,554,481,849092827,7296,0 +1486,2.Rhm-B-Wt+%21%21%21,497,541,849087855,10002,0 +1487,Wioska+barbarzy%C5%84ska,586,519,699851345,9708,0 +1488,0050+Mleko%C5%82ak,433,425,3909522,9885,0 +1489,WioskaA,513,584,8369778,10231,0 +1490,lady,504,567,699703642,10454,0 +1491,002,497,380,698739350,9761,0 +1492,Szlachcic,487,459,699098531,9680,0 +1493,Kiedy%C5%9B+Wielki+Wojownik,397,458,8632462,9835,0 +1494,Suppi,425,421,699856962,10220,0 +1495,Wioska+barbarzy%C5%84ska,474,539,698971484,10160,0 +1496,R%C4%99cznik+do+zmiany,398,438,699697558,10160,0 +1497,Monetki,486,425,699098531,10294,0 +1498,0013+G,431,410,3909522,10160,0 +1499,NOT%3F,434,533,9236866,7428,0 +1500,Gravity,409,451,698962117,9525,0 +1501,%2AINTERTWINED%2A,473,569,698704189,9711,0 +1502,0011+S,431,408,3909522,10075,0 +1503,Gravity,406,457,698962117,9763,0 +1504,0070,510,531,699432672,10495,0 +1505,Suppi,428,450,699856962,9894,0 +1506,7.62+mm,488,430,699777234,10019,7 +1507,x19,409,433,698884287,10285,0 +1508,033,520,571,699189792,9745,0 +1509,FKG+01-01,420,411,356642,9835,0 +1510,KONFA+TO+MARKA%2C+NARKA,448,453,698152377,10294,1 +1511,CALL+1055,520,532,699784536,10495,0 +1512,0026+A-01,428,414,3909522,10083,0 +1513,0045+K55+and987+OZDR,506,548,3613413,10083,0 +1514,SsSs,419,501,1536625,7710,0 +1515,A010,447,403,8740199,10237,0 +1516,Bucksbarzy%C5%84sKamiiiru,428,506,848955783,10093,0 +1517,CALL+1063,519,530,699784536,9727,0 +1518,NOT,422,427,9236866,10042,0 +1519,%5B141%5D+North,583,464,848985692,10054,0 +1520,%230061+Meskalina,496,544,9272054,10011,0 +1521,Winter+is+coming,445,552,698971484,5814,0 +1522,0002,443,395,699431255,10017,0 +1523,CALL+972,545,553,699784536,10452,2 +1524,%C5%9Amieszkii,532,544,3454753,10316,0 +1525,Winter+is+coming,443,548,698971484,1702,0 +1526,84k%24+Grvvyq,526,525,699676005,10495,0 +1527,0109,461,544,698659980,9251,0 +1528,Szlachcic,500,469,699098531,9883,4 +1529,Nie+oceniaj,505,519,699785935,10160,0 +1530,JaamMwG+009,521,528,848987051,9885,0 +1531,KAER+MORHEN,481,378,699658023,9674,0 +1532,%2307.,529,478,848967710,10252,0 +1533,0012+K,431,409,3909522,10252,0 +1534,Wioska+Barbarzy%C5%84ska,554,477,698867483,9309,0 +1535,0080,441,410,699431255,9924,0 +1536,%5B122%5D,568,536,8000875,9811,0 +1537,001,409,447,698884287,10285,0 +1538,A15,553,449,699368887,10068,5 +1539,Gravity,413,455,698962117,9502,0 +1540,%5B115%5D,542,504,8000875,9885,0 +1541,K44+x027,437,411,698364331,9850,0 +1542,CALL+975,541,545,699784536,10311,0 +1543,FAKE+OR+OFF,436,399,698231772,9858,0 +1544,SsSs,421,494,1536625,9454,0 +1545,002,580,534,8138506,10019,3 +1546,BoOmBaa..,444,399,6169408,10495,0 +1547,22.,561,479,698702991,10178,0 +1548,K44+x004,442,400,698364331,9603,0 +1549,Osada+SP,449,536,698971484,9489,9 +1550,Kentin+ufam+Tobie,432,402,699783765,10019,0 +1551,%5B112%5D,555,533,8000875,9955,0 +1552,0063,505,513,699432672,10495,0 +1553,A005,446,403,8740199,10218,0 +1554,B012,537,481,8138506,9401,6 +1555,NOT,414,437,9236866,10042,0 +1556,Szlachcic+027,566,527,758104,9338,0 +1557,0107,456,386,699431255,9835,0 +1559,CALL+979,552,550,699784536,10311,0 +1560,%5B080%5D,533,526,848985692,10030,0 +1561,Osada,498,452,699098531,9976,0 +1562,No+i+Mi%C3%B3d,535,519,7581876,9835,0 +1563,%5B082%5D,530,527,848985692,10030,0 +1564,0120,460,547,698659980,6082,0 +1565,76k%24+Grvvyq,527,535,699676005,10495,0 +1566,80k%24+Grvvyq,530,526,699676005,10495,0 +1568,0061+Wioska,444,436,3909522,10242,0 +1569,JaamMwG+010,527,521,848987051,10087,0 +1570,Lord+Arsey+KING,522,500,848956513,10285,0 +1571,Szlachcic+004,618,533,698562644,10311,0 +1572,0081+Wioska,443,445,3909522,10223,0 +1573,117.,537,518,8788366,10252,0 +1574,BBB,552,428,1006847,6480,0 +1576,20028,507,548,848915531,10388,0 +1577,Suppi,424,424,699856962,9825,0 +1578,Wioska+barbarzy%C5%84ska,414,445,698884287,10285,0 +1579,00192+Wioska,438,412,3909522,7082,0 +1581,Osada,495,442,699098531,10292,0 +1582,%23039,520,553,849001572,10059,0 +1583,Filantrop_kto%C5%9B%3F,579,485,699347951,7669,3 +1584,0001,439,403,699431255,10201,0 +1585,Jaaa,569,534,698635863,10484,0 +1586,Land+of+Fire,396,443,698962117,9505,0 +1587,%28019%29,426,539,699846892,10144,0 +1588,Velenneth,403,427,7462660,10068,0 +1589,0116,450,390,699431255,10019,0 +1590,Szlachcic,455,462,698388578,11063,0 +1591,Gravity,406,445,698962117,9527,0 +1592,9.9+Heytroom,550,441,8444356,8435,0 +1593,05.+Brakuj%C4%85cy+element,404,565,9167250,10057,0 +1594,0019,531,533,699432672,10495,0 +1595,Alabama,409,469,699265922,9835,0 +1596,x11,406,429,698884287,10285,0 +1597,0030,512,498,698599365,9812,0 +1598,KONFA+TO+MARKA%2C+NARKA,401,465,698152377,11950,0 +1599,0Wioska+barbarzy%C5%84ska,477,535,699781762,10311,0 +1600,%C5%9Amieszkii,538,548,3454753,10160,0 +1601,F078,509,537,699189792,9753,0 +1602,Zeta+Reticuli+S,418,417,699323302,11188,0 +1603,R%C4%99cznik+do+zmiany,412,489,699697558,11635,0 +1604,20012,529,538,848915531,7036,0 +1605,Szlachcic,460,419,698388578,10237,0 +1607,Lord+Arsey+KING,538,533,848956513,10285,0 +1608,Osada,490,456,699098531,9637,4 +1609,CALL+996,543,542,699784536,9638,0 +1610,asasa,401,540,699856962,9840,0 +1611,003,531,482,848967710,10252,0 +1612,Mzm39,548,546,7142659,10362,0 +1613,10010,531,557,848915531,8708,0 +1614,C003,518,456,699299123,10971,0 +1615,003,552,539,699194766,8886,0 +1616,102.,505,480,8788366,6990,0 +1617,Yogi,539,527,2808172,9669,0 +1618,kto+ananasowy+pod+wod%C4%85+ma+dom,574,511,699628084,9797,0 +1619,0034%3A,431,417,3909522,10160,0 +1620,Daleko+039,485,592,8369778,8762,0 +1621,%5B0002%5D,423,408,8630972,10495,0 +1622,Pf+Konfederacja,491,502,848915730,9976,0 +1623,Gravity,406,450,698962117,9497,0 +1624,Br4,425,545,699364813,8845,0 +1625,Yogi,511,548,2808172,10019,0 +1626,Wioska+barbarzy%C5%84ska,495,517,848967710,10119,0 +1627,%2A310%2A,508,618,606407,10294,0 +1628,Szlachcic,497,480,699098531,9899,0 +1629,0117,461,545,698659980,7743,0 +1630,0001+K55+and987+OZDR.,504,552,3613413,10160,0 +1631,%C5%9Amieszkii,513,561,3454753,9835,0 +1632,Horyzont+zdarze%C5%84,517,549,7581876,9835,0 +1633,PRO8L3M,447,502,7491093,10311,0 +1634,CALL+1057,520,533,699784536,10495,0 +1635,Wioska+barbarzy%C5%84ska,430,503,698971484,9782,0 +1636,021.+%C5%BBmij,508,574,699703642,9761,0 +1637,Nirvana,539,486,699127546,4500,0 +1638,Reco,495,554,698704189,9711,0 +1639,.%3A065%3A.+Chillout,515,425,848934935,2753,0 +1640,%C5%9Amieszkii,511,552,3454753,10019,0 +1641,.%3A031%3A.+Makaron,512,416,8649412,8923,0 +1642,%5B182%5D,530,555,8000875,10233,0 +1643,.achim.,530,393,6936607,10311,0 +1644,207+San+Juan,466,463,1497168,9761,0 +1645,Gundabad,534,558,849091897,10971,0 +1646,R%C4%99cznik+do+zmiany,418,487,699697558,10845,0 +1647,%C5%9Amieszkii,518,562,3454753,9123,0 +1648,P.013,531,560,873575,10375,0 +1649,ChceszPokojuSzykujSi%C4%99DoWojny,453,512,699333701,9835,0 +1650,Yogi,514,544,2808172,10019,0 +1651,Dilonia,518,561,849066849,8160,0 +1652,Wioska+519,558,466,477415,10495,0 +1653,Shire,531,545,7581876,9811,0 +1654,Gattacka,586,514,699298370,10635,8 +1655,Horyzont+zdarze%C5%84,512,544,7581876,10019,0 +1656,0242,521,606,698659980,10019,0 +1657,NOT%3F,432,529,9236866,10042,0 +1658,Summer+Slam+%7E+006,513,541,7581876,9703,0 +1659,10002,525,567,848915531,11550,0 +1660,Lord+Arsey+KING,509,526,848956513,10285,7 +1661,Wioska+barbarzy%C5%84ska,510,544,7581876,10495,0 +1662,Lord+Arsey+KING,537,531,848956513,10285,0 +1663,xxx,487,443,698239813,10495,9 +1664,Wioska,383,503,849084005,10178,0 +1665,NOT%3F,418,510,9236866,10042,0 +1667,xxx,513,455,698239813,8881,0 +1668,019,517,538,848915531,7279,0 +1669,CALL+1015,551,562,699784536,10311,4 +1670,%23027,518,551,849001572,9941,0 +1671,068.+ALFI,477,558,8539216,1852,0 +1672,0080,527,548,699432672,10495,0 +1673,yogi,513,543,2808172,10019,0 +1674,Suppi,441,448,699856962,9697,0 +1675,A042,508,430,699299123,10495,8 +1676,20026,507,544,848915531,11321,0 +1677,Dum+Spiro+Spero,493,557,848896948,10183,0 +1678,CALL+962,545,546,699784536,10311,0 +1679,PARASOL+X,504,598,8369778,10221,0 +1680,Horyzont+zdarze%C5%84,509,544,7581876,10019,0 +1681,000+Wioska,510,538,848915531,10636,0 +1682,Gryfios+018,617,541,698666810,12143,0 +1683,Mzm50,538,520,7142659,4710,0 +1684,0023+K55+and987+OZDR.,505,558,3613413,9861,0 +1685,024.+A-RE-SE-EY,570,530,848967710,10252,0 +1686,%C5%9Amieszkii,522,563,3454753,9835,0 +1687,77k%24+Grvvyq,527,543,699676005,10495,0 +1688,024.+Utopiec,510,571,699703642,9761,0 +1689,.achim.,529,452,6936607,9398,0 +1690,KIELBA+103,450,569,699342219,10495,2 +1691,0046+K55+and987+OZDR,509,548,3613413,10083,0 +1692,lady,506,567,699703642,10612,0 +1693,10001,534,564,848915531,11130,9 +1694,Karaz-a-Karak,517,543,7581876,10019,0 +1695,035.+ALFI,471,560,8539216,1625,0 +1696,006+Deliverance,520,548,7581876,9835,0 +1697,0118,460,546,698659980,8354,0 +1698,Szlachcic,487,480,699098531,9685,6 +1699,Horyzont+zdarze%C5%84,513,552,7581876,10019,0 +1700,002+Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,465,543,698971484,10008,0 +1701,A002,493,417,699299123,10495,8 +1702,1.+Is-2+%21%21%21,500,549,849087855,10019,0 +1703,Wioska+501,577,459,477415,10495,0 +1704,2.+World+%21%21%21,503,540,849087855,10019,0 +1705,P+Konfederacja,454,447,848915730,9823,0 +1706,Wioska,391,535,849084005,9674,0 +1707,0054,460,470,848913037,6520,0 +1708,2.+Jagdpanzer+%21%21%21,500,541,849087855,9828,0 +1709,Szlachcic+009,564,528,758104,9338,0 +1710,015+-+Tychy%2A%2A%2A,448,582,225023,10495,0 +1711,20025,509,543,848915531,8672,0 +1712,20021,504,548,848915531,9926,0 +1713,0036+K55+and987+OZDR.,503,565,3613413,9919,0 +1714,-+Nie+bior%C4%99+tabletek+na+sen,510,513,699785935,9835,0 +1715,Nilonia,518,555,849066849,6238,0 +1716,JaamMwG+011,521,527,848987051,9148,0 +1717,0033,620,513,6510480,10203,0 +1718,%28017%29,425,537,9236866,9880,0 +1719,Oilonia,512,559,849066849,6521,0 +1720,Szlachcic,551,496,698867446,9852,3 +1721,010.,530,553,699695167,10132,0 +1722,065.+ALFI,471,569,8539216,1299,0 +1723,And987,502,561,3613413,10495,0 +1724,%230124+Zabawa,493,522,9272054,9410,0 +1725,%C5%9Amieszkii,512,564,3454753,9175,0 +1726,004,530,483,848967710,10252,0 +1727,Aleartis,487,546,698704189,9711,6 +1728,Horyzont+zdarze%C5%84,529,543,7581876,9835,0 +1729,Head+Held+High,501,519,699785935,10362,0 +1730,Winter+is+coming,509,571,699364813,10311,0 +1731,007,528,480,848967710,10160,0 +1732,KARTAGINA+..2,454,583,8438707,6898,0 +1733,Wioska+7,443,544,698971484,1428,0 +1734,KIELBA+002,447,578,699342219,10495,0 +1735,0018,530,512,699432672,10495,0 +1736,Wioska+skobol,599,573,17714,10216,0 +1737,005,470,499,699781762,8070,0 +1738,001.+Pianohi1Tars,611,538,254937,10066,0 +1739,Ilonia,520,555,849066849,8230,0 +1740,...xXx...+II,603,540,3364735,9966,0 +1741,7.62+mm,503,440,699777234,10019,0 +1742,001.Aconcagua,601,571,1601917,10495,0 +1743,037.,551,516,8788366,10252,0 +1744,Gliwice,593,577,1715091,9899,0 +1745,Brat447,418,520,699262350,10476,0 +1747,Napewno+to+nie+jest+off,515,443,848912265,7536,0 +1748,Krakow,592,567,1715091,9526,0 +1749,%230107+%C5%9Awi%C4%99ty+Miko%C5%82aj,480,541,698704189,9295,0 +1750,podgrzybek,601,572,1715091,9591,0 +1751,031,537,426,7271812,10495,0 +1752,W.181%2F01,608,536,2999957,10242,0 +1753,Monetki,472,421,699098531,10291,0 +1754,Godziwa+nazwa,605,540,3364735,9966,0 +1755,%7E%7ELataj%C4%85cyHolender%7E%7E,547,467,9174887,7808,0 +1756,.WIDZEW,595,569,6929240,9840,0 +1757,%2B44+73+Lyon+Confluence,430,471,698361257,9849,6 +1759,%230126+Koliber,494,524,9272054,10160,0 +1760,EXA,616,533,848967710,10495,0 +1761,017+Indianopolis,439,476,1497168,9761,0 +1762,%C5%9Apij+spokojnie,582,590,699785935,10495,0 +1763,Jaaa,571,541,698635863,10490,0 +1764,%2A5601%2A+Bradford+City,600,559,7973893,10287,0 +1765,09+%7C+Wioska+barbarzy%C5%84ska,541,439,849002091,9757,0 +1766,0001,604,549,477415,10495,0 +1767,Szlachcic,493,477,699098531,9637,0 +1768,Abadonia+WWW,618,487,699347951,10955,0 +1769,7.62+mm,477,440,699777234,10019,0 +1770,001+Sparta,605,530,8013349,10019,0 +1771,Yogi,540,543,2808172,10019,0 +1772,040,586,564,699373599,10068,0 +1773,001.+Wioska+BieniuS,593,520,8788366,10495,0 +1774,008.,615,536,8900955,6722,0 +1775,007+Sol.,611,529,699099811,10019,0 +1776,0018+MzM,607,555,698416970,9322,0 +1777,Osada,501,440,699098531,10300,0 +1778,0050,600,531,698416970,9483,0 +1779,0001,571,579,698191218,10343,0 +1780,CALL+1038,540,551,699784536,10838,0 +1781,9.6+Bonus+PKP,555,434,8444356,10471,4 +1782,%7E%7ELataj%C4%85cyHolender%7E%7E,598,500,9174887,10247,0 +1783,Ogr%C3%B3d+Warzywny,455,561,7249451,10371,3 +1784,002,606,537,699413040,9860,0 +1785,GONDOR+f,541,472,8155296,8877,0 +1786,ZAMEK+ABADONA+1,591,489,699347951,11130,0 +1787,amator+MO5,536,551,848915531,10487,0 +1788,s%C5%82odziute%C5%84ka+13,602,537,8013349,10019,0 +1789,Szlachcic,582,488,699759128,10237,0 +1790,111.,533,476,8788366,8034,0 +1791,s%C5%82odziute%C5%84ka+06,604,535,8013349,9821,0 +1792,CALL+956,547,549,699784536,10311,0 +1793,013,612,542,8428196,9934,0 +1794,PRO8L3M,447,488,7491093,10437,0 +1795,Wioska+JaaMwG,578,595,698635863,10478,0 +1796,Jaaa,567,580,698635863,10432,0 +1797,B044,480,468,699299123,10116,0 +1798,Szlachcic,579,493,699759128,10237,3 +1799,%5B186%5D,536,493,8000875,9976,0 +1800,%2301.,526,467,848967710,10252,0 +1801,a+mo%C5%BCe+off+%3F+%3A%29,574,587,698768565,9374,0 +1802,Wioska+408,555,514,477415,10495,0 +1803,022.,612,540,8900955,6874,0 +1804,Z%C5%82ote+Wrota,532,458,8513699,5950,0 +1805,010+Moria,604,529,8013349,9816,0 +1807,%2B44+63+Mions,432,469,698361257,9840,0 +1808,-001-+Delusions+of+Saviour,578,591,698693697,10294,0 +1809,139+Gudalajahara,472,489,1497168,9761,0 +1810,Szlachcic+x,508,461,699098531,9152,0 +1811,Wioska+barbarzy%C5%84ska,433,506,698971484,10008,0 +1812,EXA,605,527,848967710,10495,0 +1813,027,467,437,9291984,10236,0 +1814,000+PRO8L3M%3F,573,553,699316421,9744,0 +1815,F021,497,533,699189792,9753,0 +1816,Piek%C5%82o+to+inni,521,471,848956765,9761,0 +1817,Marienburg+8,527,480,699355601,2412,0 +1818,014.,599,545,8900955,7563,0 +1819,B007,483,442,699299123,10495,0 +1820,kto+ananasowy+pod+wod%C4%85+ma+dom,581,580,699628084,9797,0 +1821,.Wis%C5%82a+Krak%C3%B3w.,599,547,6929240,10328,0 +1822,%5B109%5D,544,506,8000875,9938,0 +1823,Piek%C5%82o+to+inni,518,482,848956765,8806,0 +1824,M%C3%B3wili+na+ni%C4%85+s%C5%82o%C5%84ce,577,594,699785935,10311,0 +1825,%2B44+63+Sainte+Foy+les+Lyon,433,464,698361257,9840,0 +1826,Lord+Arsey+KING,581,591,848956513,10285,0 +1827,115.,509,479,8788366,9299,0 +1828,A%23034%23,421,476,698807570,11837,6 +1829,0007,604,496,699429153,10301,0 +1830,%21Wioska+502,586,491,477415,10495,0 +1831,044,599,561,699373599,10068,0 +1832,07+Chorwacja,586,488,8925695,9595,0 +1833,012.,608,557,8900955,9737,0 +1834,Front_22,455,529,699856962,9638,0 +1835,Lord+Arsey+KING,575,590,848956513,10285,0 +1836,004,506,478,698881022,3134,0 +1837,Piek%C5%82o+to+inni,518,467,848956765,9761,0 +1838,Lord+Arsey+KING,581,590,848956513,10285,0 +1839,%230078+Wermikulit,496,559,9272054,10005,0 +1840,050,492,380,698739350,9481,0 +1841,016,465,577,848886870,10160,0 +1842,KR%C3%93L+PAPI+WIELKI,600,533,698191218,10000,0 +1843,B002,555,500,8138506,9588,0 +1844,0032,616,527,6510480,9846,0 +1845,0229,470,547,698659980,10019,0 +1846,OSTIGLIAT,532,469,8155296,8966,0 +1847,039,555,446,849063849,8398,0 +1848,007,558,541,699194766,9547,7 +1849,%5B035%5D,595,538,848985692,10252,0 +1850,Obro%C5%84cyZamkuTrzymaliSieDzielnie,479,530,7491093,10236,0 +1851,KiLL+YoU%21,603,537,848985692,10311,0 +1852,035,519,576,699189792,9747,0 +1853,Essa+001,570,576,848987051,10218,0 +1854,Szlachcic,569,474,698867446,9976,0 +1855,Jaaa,589,554,698635863,10479,0 +1856,.achim.,532,475,6936607,5178,0 +1857,Szlachcic+002,616,535,698562644,10311,0 +1858,Ateny_71,472,519,2585846,3241,0 +1859,006.,613,547,8900955,6373,0 +1860,K44+x020.,457,430,698364331,6957,0 +1861,Kotka+nie+ma%2C+myszka+harcuje,571,596,699785935,10160,0 +1862,nie+ma+mnie+%2Costrze+kredki,606,560,8742874,9761,0 +1863,Wioska+Barbarzy%C5%84ska,544,486,698867483,9761,0 +1864,Moria,535,532,7581876,6405,0 +1865,Micha%C5%82,531,537,848967710,10495,0 +1866,Pf+Konfederacja,491,500,848915730,7482,0 +1867,CALL+1077,528,546,699784536,10728,0 +1868,0055,510,517,699432672,10495,0 +1869,Wioska,384,520,849084005,10178,0 +1870,Zeta+Reticuli+S,404,420,699323302,11188,0 +1871,kek,545,516,848967710,7000,0 +1872,0073,451,439,3909522,10429,8 +1873,Szlachcic+060,540,527,758104,8024,0 +1874,Butem+w+Morgen,482,514,848967710,9836,0 +1875,CALL+999,542,540,699784536,10311,0 +1876,Os+Konfederacja,470,449,848915730,9448,0 +1877,026+-+Belfast,406,580,225023,10495,0 +1878,%5B143%5D,562,535,8000875,9809,0 +1879,Oh+oh+oho,537,534,699785935,10160,0 +1880,kathare,493,569,873575,10495,0 +1881,CALL+1061,523,533,699784536,10495,0 +1882,aaa,456,544,699698253,1985,0 +1883,003,524,531,7581876,10019,0 +1884,P+Konfederacja,453,446,848915730,9535,0 +1885,SsSs,418,492,1536625,9906,7 +1886,Wioska+uorior,530,539,7581876,9626,0 +1887,Szlachcic+%21%21%21,498,475,699098531,10311,0 +1888,amator+MO4,535,549,848915531,10495,0 +1889,keepo,477,512,848967710,5971,0 +1890,0038+MzM,547,541,698416970,10019,0 +1891,003,471,515,848967710,5470,0 +1892,sas,539,528,7581876,10277,0 +1893,10015,527,562,848915531,8014,0 +1894,Jilonia,513,555,849066849,6749,7 +1895,Micha%C5%82,537,543,848967710,10495,0 +1896,009,554,531,699316421,9744,0 +1897,Szlachcic,550,527,698867446,9852,0 +1898,.%3A009%3A.+Chillout,515,430,848934935,9146,1 +1899,kek,537,515,848967710,8451,0 +1900,032,522,573,699189792,9742,0 +1901,K55,531,524,698867483,11678,0 +1902,%5B089%5D,535,487,848985692,10005,0 +1903,Tamk+005.+Vegeta,398,501,698290577,9084,0 +1904,Fajna+001,450,557,698971484,4596,4 +1905,Lord+Arsey+KING,539,532,848956513,10285,0 +1906,CALL+1021,550,564,699784536,10311,0 +1907,CALL+1084,536,540,699784536,10495,0 +1908,002.+Marzyciel+Shrek,482,504,698290577,5781,0 +1909,85k%24+Grvvyq,535,529,699676005,9355,0 +1910,30005,488,542,848915531,8838,0 +1911,P.032,544,558,873575,10143,0 +1912,0062+%7E223%7E,442,439,3909522,9091,0 +1914,xxx,504,446,698239813,9949,0 +1915,056.,529,555,699695167,9741,0 +1916,B009,485,447,699299123,10495,0 +1917,%5B193,530,551,8000875,9814,0 +1918,0.Nowy+Jork,518,586,698215322,9954,0 +1919,Osada,493,448,699098531,9968,8 +1920,0001+paawlo13,424,412,3909522,10160,0 +1921,112+Ottawa,479,491,1497168,9761,0 +1924,Os+Konfederacja,480,448,848915730,9812,0 +1926,021,505,591,7976264,9986,0 +1928,457%7C424,450,405,9291984,10481,0 +1929,001+Delirium,425,416,9291984,10476,0 +1930,A010,489,414,699299123,10495,0 +1932,Fajna+045,458,557,3613413,3782,0 +1934,K44+009,429,483,698290577,7589,0 +1936,P+Konfederacja,456,449,848915730,9897,0 +1940,Lord+Arsey+KING,517,501,848956513,9146,0 +1941,Mam+do+tego+nosa,498,521,699785935,9899,0 +1942,011,468,579,848886870,10393,0 +1943,Darma,427,402,356642,9835,0 +1944,Butem+w+Morgen,489,510,848967710,10495,0 +1947,Fresio,420,419,699660539,10067,0 +1948,PRO8L3M,411,496,7491093,10311,0 +1949,0030,454,383,699431255,10677,0 +1950,045,543,431,7271812,5957,0 +1952,ChceszPokojuSzykujSi%C4%99DoWojny,452,516,699333701,9218,0 +1953,SugarDandy,431,406,699796330,10319,0 +1954,1.+T-10,493,530,849087855,10144,0 +1956,078.+ALFI,481,556,8539216,1894,0 +1957,Suppi,424,422,699856962,10231,0 +1958,Wioska+barbarzy%C5%84ska,442,441,9291984,9809,0 +1959,VN+No+Door,467,378,699883079,9835,0 +1961,B028,482,452,699299123,8514,0 +1963,Wioska+barbarzy%C5%84ska,586,521,699851345,9703,0 +1964,NOT,418,429,9236866,10042,0 +1965,Suppi,425,422,699856962,9559,0 +1966,Jaaa,583,534,698635863,10481,0 +1967,Szlachcic,494,478,699098531,10311,0 +1968,%3F%2B44+85+Zuydcoote,455,484,698361257,9747,0 +1969,yogi,510,547,2808172,10019,0 +1970,keepo,484,528,848967710,10495,0 +1972,Joms+005,527,422,699756210,10178,0 +1973,0158,462,550,698659980,8596,0 +1974,%2AINTERTWINED%2A,519,568,698704189,9711,0 +1975,kathare,498,569,873575,10401,0 +1976,lady+anima,495,577,699703642,9997,0 +1977,036.+Ara,506,576,699703642,9628,0 +1978,A%23064%23,417,474,698807570,10391,0 +1979,lady,495,586,699703642,7413,0 +1980,Landy+3,566,482,699347951,8845,0 +1981,Nowa+Nadzieja,493,592,699383121,9734,0 +1982,.%3A044%3A.+Chillout,500,394,848934935,10559,0 +1983,NOT%3F,422,528,9236866,10042,0 +1984,x16,432,441,698884287,10285,0 +1985,-xx13,490,497,848967710,10252,0 +1986,Suppi,431,442,699856962,10311,0 +1987,P+Konfederacja+8,458,450,848915730,9694,0 +1988,Suppi,439,447,699856962,9777,0 +1989,034,518,570,699189792,9745,0 +1990,Osada+ST,454,540,3909522,2800,6 +1991,Wioska+barbarzy%C5%84ska,426,445,698884287,10285,0 +1992,09+Niemcy,585,490,8925695,6263,0 +1993,064,420,514,699851427,10042,0 +1994,Os+Konfederacja,480,449,848915730,9720,0 +1995,014,421,511,699851427,10129,0 +1996,Szlachcic,492,482,699098531,10300,0 +1997,Lynortis,454,546,699698253,4181,2 +1998,058+Kahului,460,469,1497168,9761,0 +1999,046,421,487,699510259,9825,0 +2000,Jaaa,582,536,698635863,10484,0 +2001,%5B183%5D,553,540,8000875,9587,0 +2002,JL5,539,449,8155296,8253,0 +2003,Osada,491,441,699098531,10295,0 +2004,012+123+rta,542,455,699368887,9013,0 +2005,%21Aqua004,564,514,477415,10495,0 +2006,Cyber+detox,400,520,1804724,10204,0 +2007,172+Ushuaia,482,478,1497168,9761,0 +2008,Butem+w+Morgen,553,548,848967710,10495,0 +2009,004,555,543,699194766,9638,0 +2010,Taran,585,453,699759128,10237,0 +2011,BBB,576,448,1006847,8849,0 +2012,-+216+-,552,573,849018239,10000,0 +2013,070+Chicago,456,476,1497168,10019,4 +2014,20015,516,559,848915531,10971,0 +2015,F034,496,524,699189792,9750,0 +2016,012.+Yrka,510,560,699703642,10083,0 +2017,K55,539,519,848967710,9538,0 +2018,Obreit,431,561,699443920,4076,0 +2019,CALL+1062,520,534,699784536,9899,0 +2020,.%3A028%3A.Chillout,512,442,848934935,7734,0 +2021,%3F%2B44+75+Lyon+Grange+Blanche,459,477,698361257,9709,0 +2022,Napewno+to+nie+jest+off,513,439,848912265,9629,0 +2023,PRO8L3M,457,498,7491093,8419,0 +2024,0020,464,466,848913037,9993,9 +2025,P.016,534,568,873575,10345,0 +2026,C020,526,462,699299123,10214,0 +2027,051,531,576,699189792,10160,0 +2028,-+118+-,540,573,849018239,9424,0 +2029,%2B44+61+Chaponost,417,467,698361257,9860,0 +2030,Kasyno,437,512,7249451,9994,0 +2031,160+Fortaleza,479,479,1497168,9761,0 +2032,159+Rio+de+Janeiro,480,477,1497168,9761,0 +2033,KONFA+TO+MARKA%2C+NARKA,424,462,698152377,10291,0 +2034,003+Arizona,610,485,7092442,10495,0 +2035,0028+K55+and987+OZDR.,504,562,3613413,9842,0 +2036,%2B44+61+Rexpoede,415,469,698361257,9653,0 +2037,206,565,397,849064752,9756,0 +2038,7.62+mm,467,445,699777234,10019,0 +2039,0027,561,394,699485250,10211,0 +2040,2.+Vipera,489,538,849087855,10287,0 +2041,SsSs,423,489,1536625,10069,0 +2042,R%C4%99cznik+do+zmiany,426,480,699697558,12154,0 +2043,.%3A092%3A.+JuanPabloII,542,444,848934935,8605,0 +2044,%3F%2B44+86+Lyon+Croix+Rousse,460,485,698361257,9724,0 +2045,Brat447,441,488,699262350,8460,0 +2046,...Just+like+that,463,490,699723284,9364,0 +2047,CALL+959,543,548,699784536,10311,0 +2048,ANGMAR+a,532,467,8155296,11130,0 +2049,xxx,484,421,698239813,10495,0 +2050,Harbar+3,430,550,8779575,3223,0 +2051,xxx,481,430,698239813,10495,0 +2052,-019-,468,428,9291984,10357,0 +2053,Mielno,520,423,699433558,10375,0 +2054,-+046+-,539,581,849018239,10000,0 +2055,Zasiedmiog%C3%B3rogr%C3%B3d,518,429,699433558,10178,0 +2056,Pf+Konfederacja,485,483,848915730,9902,0 +2057,077+Shreveport,457,455,1497168,9761,0 +2058,Monetki,473,436,699098531,10290,6 +2059,P+Konfederacja,460,446,848915730,9720,0 +2060,SsSs,449,498,1536625,10495,0 +2061,Azgeda,537,439,848986287,9816,0 +2062,Wioska+barbarzy%C5%84ska,536,442,849002091,8511,0 +2063,Brat447,384,511,699262350,10160,0 +2064,Brat447,384,515,699262350,10244,0 +2065,2.+War%2A%2A,491,524,849087855,6062,0 +2066,ok.,389,532,849030226,10495,0 +2067,0009+K55+and987+OZDR.,504,555,3613413,9842,0 +2068,214+Gold+Coast,531,438,1497168,9761,0 +2069,0015+K55+and987+OZDR.,502,558,3613413,9844,0 +2070,.achim.,532,448,6936607,12154,0 +2071,Sparta_41,480,581,2585846,9638,0 +2072,.%3A089%3A.JuanPabloII,539,442,848934935,10495,0 +2073,007+Celadon+City,589,495,699441366,11109,0 +2074,PU%C5%81+WYP%C5%81ATY+POSZ%C5%81O+NA+MUREK+XDD,547,435,848986287,9878,0 +2075,Utumno,504,512,849091897,9680,0 +2076,Stage+group+A,503,582,699703642,8769,6 +2077,Stolica,537,433,848986287,10019,0 +2078,kto+ananasowy+pod+wod%C4%85+ma+dom,565,505,699628084,9797,0 +2079,Zasiedmiog%C3%B3rogr%C3%B3d,538,430,699433558,5841,0 +2080,%C5%9Amieszkii,519,572,3454753,9404,0 +2081,Catern,538,433,848986287,10019,0 +2082,2.+Sosnomysz,545,430,8444356,10252,0 +2083,Os+Konfederacja+%2B,475,450,848915730,10068,0 +2084,A034,496,417,699299123,9792,0 +2085,SsSs,461,502,1536625,9833,0 +2086,Piek%C5%82o+to+inni,518,442,848956765,10160,0 +2087,006,549,534,699194766,9711,7 +2088,Marienburgg+11,533,458,699355601,8780,0 +2089,-2-,585,493,699347951,10997,0 +2091,Szlachcic,562,470,698867446,9852,0 +2092,Teatr,433,565,7249451,10495,0 +2093,keepo,478,515,848967710,5041,0 +2094,Suppi,436,449,699856962,9556,0 +2095,Fajna+014,451,565,8539216,6701,0 +2096,%5B098%5D,552,508,8000875,9957,7 +2098,001+Jacek+Jaworek+baza,415,547,698971484,9651,0 +2099,Jaaa,573,542,698635863,10484,0 +2100,Suppi,416,540,699856962,9825,0 +2101,069,416,530,699851427,10129,0 +2102,.+Incepcja,419,545,699856962,8854,0 +2103,KIELBA+069,469,576,699342219,10365,0 +2104,.achim.,540,393,6936607,10311,0 +2105,027,422,516,699851427,10042,0 +2106,.achim.,532,396,6936607,10311,0 +2107,008,549,568,6818593,9835,0 +2108,BBB,583,440,1006847,10495,0 +2109,Pf+Konfederacja,484,500,848915730,9714,0 +2110,%28018%29,425,540,699846892,10146,0 +2111,%3F%2B44+85+Brignais,459,481,698361257,9846,2 +2112,012,588,446,699722599,10495,0 +2113,Wioska+434,566,519,477415,10495,0 +2114,-xx14,492,501,848967710,10393,0 +2115,%21Wioska+424,563,506,477415,10495,0 +2116,BBB,588,442,1006847,9494,0 +2117,%5B091%5D,539,488,848985692,10057,0 +2118,Mzm15,547,537,7142659,10495,0 +2119,Mzm35,550,530,7142659,10362,0 +2120,0072,452,438,3909522,8839,0 +2121,00972,462,437,3909522,6600,0 +2122,Napewno+to+nie+jest+off,515,441,848912265,3661,0 +2123,0076,449,440,3909522,7693,0 +2124,.achim.,518,455,6936607,10311,0 +2125,00731+nsplus1,450,438,3909522,9835,0 +2126,Szlachcic,497,475,699098531,9885,0 +2127,00703,452,442,3909522,7528,0 +2128,B010,578,412,699761749,10495,0 +2129,P.021,538,561,873575,10136,0 +2130,014,584,408,849064752,10311,0 +2131,ladyanima,513,570,699703642,9811,0 +2132,052+%7C,545,505,8000875,9919,0 +2133,xxx,503,446,698239813,10495,0 +2134,ladyanima,515,569,699703642,9151,0 +2135,The+Last+One,500,454,699341889,6355,0 +2136,048,430,490,699510259,9771,0 +2137,Unlovable,506,509,699785935,8156,0 +2138,NOT%3F,439,550,9236866,2032,0 +2139,030,562,399,849063849,10636,0 +2140,G%C3%93RY+B%C5%81%C4%98KITNE+f%3F,530,468,8155296,11366,0 +2141,036.+ALFI,477,560,8539216,1705,0 +2142,052.,523,557,699695167,9902,0 +2143,Joms+004,526,422,699756210,10241,2 +2144,keepo,475,514,848967710,4787,0 +2145,-%5B031%5D-+Saltoro+Kangri,551,484,849092827,6756,0 +2147,001+Washington+D.C.,438,470,1497168,9761,0 +2148,Gratuluje+m%C3%B3zgu,444,535,698971484,9881,0 +2149,9.1+%C5%9Aciernisko,545,438,8444356,10495,0 +2150,KONFA+TO+MARKA%2C+NARKA,432,459,698152377,10291,0 +2151,Suppi,431,444,699856962,10237,0 +2152,Szlachcic,508,459,699098531,9622,0 +2153,.achim.,531,393,6936607,10311,0 +2154,015,417,519,699851427,5953,4 +2155,Mzm23,574,510,7142659,10362,0 +2156,P+Konfederacja,457,446,848915730,10068,0 +2157,A052,500,423,699299123,10495,2 +2158,024.+Wioska+k4myk,575,508,8788366,10252,0 +2159,a+mo%C5%BCe+off+%3F+%3A%29,583,587,698768565,10211,0 +2160,Going+Under,501,518,699785935,10362,0 +2161,%21Wioska+400,564,516,477415,10495,0 +2162,013.+Wioska+POLdi,574,513,8788366,10252,0 +2163,0025+K55+and987+OZDR.,503,562,3613413,9792,7 +2164,Filonia,521,554,849066849,8673,0 +2165,A06,550,448,699368887,8290,0 +2166,NOT%3F,435,528,9236866,10068,0 +2167,237+Maduraj,474,514,1497168,4738,7 +2169,076.,568,466,849094609,9949,0 +2170,Korczo,397,517,1804724,10204,0 +2171,045,448,537,698971484,6720,0 +2172,Wioska+szyymekk,396,525,960100,7447,0 +2173,Craven+Cottage,547,517,699194766,6806,0 +2174,Wioska+szyymekk,403,528,1804724,10251,0 +2175,Winter+is+coming,507,574,699364813,10311,6 +2176,06.+Yaren+Bolt,565,483,699347951,10110,0 +2177,Winter+is+coming,505,584,699364813,9843,0 +2178,B011,552,487,8138506,10160,0 +2179,NOT%3F,429,536,9236866,9460,0 +2180,-+069+-,543,576,849018239,10000,0 +2181,034,559,530,699316421,9744,0 +2182,Napewno+to+nie+jest+off,516,430,848912265,10178,0 +2183,0053,591,504,698416970,10971,0 +2184,Os+Konfederacja+%2B,475,440,848915730,9846,0 +2185,Wioska,384,529,849084005,10178,0 +2186,218+Adelaide,531,440,1497168,8652,0 +2187,AR_ELA,459,519,2585846,9638,0 +2188,Joms+018,518,417,699756210,10268,0 +2189,Wioska+Barbarzy%C5%84ska,542,494,698867483,10019,0 +2190,JaamMwG+012,524,529,848987051,9054,0 +2191,keepo,478,513,848967710,10362,0 +2192,Gravity,412,452,698962117,9497,0 +2193,Winter+is+coming,444,551,698971484,5548,0 +2194,Fajna+011,451,561,699868002,7736,0 +2195,xxx,502,435,698239813,10495,0 +2196,CALL+1045,567,561,699784536,7229,0 +2197,161,433,433,699660539,7092,0 +2198,Wioska+barbarzy%C5%84ska,434,500,698971484,10008,0 +2199,A038,507,428,699299123,10495,0 +2200,SsSs,401,491,1536625,9875,0 +2201,%5B142%5D+North,578,468,848985692,10052,0 +2202,-+099+-,533,580,849018239,9664,0 +2203,Wioska+barbarzy%C5%84ska,561,455,699368887,9902,0 +2204,JF2,555,457,699368887,4763,0 +2205,MasteroN+03,569,447,699379895,10636,0 +2206,026,432,486,699510259,9771,0 +2207,225+Auckland,539,444,1497168,9761,0 +2208,KIELBA+060,458,581,699342219,10444,0 +2209,xxx,512,447,698239813,8669,4 +2210,Jaaa,575,588,698635863,10239,0 +2211,amator+MO1,536,555,848915531,10636,0 +2212,-+049+-,540,574,849018239,10000,0 +2213,Wioska+CzarnamambaPL,562,583,6818593,9835,0 +2214,035.,504,491,8788366,10252,0 +2215,16%2A,565,543,699664910,6224,0 +2216,201+Asuncion,469,460,1497168,9761,0 +2217,Szlachcic+001,565,530,758104,8024,0 +2218,PRO8L3M,462,491,7491093,7740,0 +2219,JM4,561,458,699368887,5778,0 +2220,038+-+Getafe,609,500,698342159,7947,0 +2221,023,569,549,699316421,9744,0 +2222,Sheraton,579,585,699785935,10495,0 +2223,F013,493,544,699189792,9750,0 +2224,Bagdad,476,393,8847546,10654,0 +2225,.achim.,533,427,6936607,10311,0 +2226,CHW%23029,479,535,699781762,10495,0 +2227,Napewno+to+nie+jest+off,514,436,848912265,7394,0 +2228,%2AINTERTWINED%2A,531,556,698704189,9711,0 +2229,-+312+-,524,584,849018239,10000,0 +2230,Wioska4,492,598,8369778,10254,0 +2231,Wioska+barbarzy%C5%84ska,434,508,698971484,10008,0 +2232,Piek%C5%82o+to+inni,523,414,848956765,10160,0 +2233,Piek%C5%82o+to+inni,519,424,848956765,10160,0 +2234,Abadon+landy+2,566,491,699347951,7445,0 +2235,2.+Wz+%21%21%21,497,542,849087855,9817,0 +2236,monetki,508,433,699098531,9824,0 +2237,Osada+x,509,452,699098531,9390,0 +2238,Monetki,474,423,699098531,10297,0 +2239,Napewno+to+nie+jest+off,512,445,848912265,4967,0 +2240,Warzywniak+018,447,549,698290577,2822,0 +2241,028.+Rar%C3%B3g,518,559,699703642,9582,0 +2242,A02,549,454,699368887,9994,0 +2243,Bucksbarzy%C5%84sKamiiiru,438,531,848955783,6812,0 +2244,KONFA+TO+MARKA%2C+NARKA,437,465,698152377,10290,0 +2245,KONFA+TO+MARKA%2C+NARKA,452,457,698152377,10290,0 +2246,KIELBA+065,470,577,699342219,10495,0 +2247,Sparta_31,489,576,2585846,9638,9 +2248,017,418,518,699851427,10042,0 +2249,Szlachcic,568,484,698867446,9583,0 +2250,yogi,520,536,2808172,10019,0 +2251,yogi,522,530,2808172,10083,0 +2252,Piek%C5%82o+to+inni,520,424,848956765,10160,0 +2253,022+Grand+Forks,448,470,1497168,9761,6 +2254,001+Fiona,446,502,698290577,10203,0 +2255,029,539,420,7271812,10495,0 +2256,%2A%2A%2A9f%2A%2A%2A+Brzoskwinia,553,390,1990750,10068,0 +2257,012,574,550,699316421,9744,0 +2258,042,554,393,849064752,10311,0 +2259,0033+K55+and987+OZDR.,502,562,3613413,9861,0 +2260,031,451,550,698290577,2184,0 +2261,Forteca,499,569,606407,9009,0 +2262,Szlachcic,587,506,699759128,10104,0 +2263,Os+Konfederacja,474,452,848915730,10311,0 +2264,121+Trois+Rivieres,478,490,1497168,9761,0 +2265,Os+Konfederacja+%2B,474,450,848915730,9976,9 +2267,Cast+Away+021,441,482,698290577,4228,0 +2268,093+Luksemburg,574,474,7092442,10495,0 +2269,KONFA+TO+MARKA%2C+NARKA,428,486,698152377,10300,0 +2270,Village,504,603,849094067,12154,0 +2271,047,446,532,698971484,7297,0 +2272,--------1,455,421,9291984,10362,0 +2273,094+%C5%81otwa,572,471,7092442,10495,0 +2274,Onda,435,557,699443920,4042,0 +2275,%5B175%5D,562,562,8000875,6951,0 +2276,Kasyno,444,510,7249451,9902,0 +2277,%2AINTERTWINED%2A,515,614,698704189,9711,0 +2278,x03,545,473,8459255,10016,0 +2279,Midgard,483,496,848967710,10252,0 +2280,211+Wagga+Wagga,539,428,1497168,9261,0 +2281,Brat447,446,490,699262350,8577,0 +2282,Brat447,437,485,699262350,7977,0 +2283,PYRLANDIA+005+%24,571,594,33900,10495,0 +2284,Szlachcic,572,496,698867446,9852,0 +2285,sas,526,553,7581876,10019,0 +2286,105+Dumdi+diri+daj,542,460,7092442,5039,0 +2287,CALL+1081,532,548,699784536,10636,0 +2288,Horyzont+zdarze%C5%84,532,545,7581876,9835,0 +2289,Napewno+to+nie+jest+off,515,434,848912265,6451,0 +2290,xxx,485,431,698239813,10495,0 +2291,.%3A019%3A.+Krab,511,432,8649412,9742,0 +2292,100,409,514,699851427,10042,0 +2293,02+W%C5%82ochy,582,486,8925695,9374,0 +2294,Osada,499,450,699098531,9976,0 +2295,ChceszPokojuSzykujSi%C4%99DoWojny,457,519,699333701,3566,0 +2296,SsSs,416,496,1536625,9131,0 +2297,11+%7C+Pcim+dolny,537,440,849002091,8418,0 +2298,Wioska,391,505,849084005,10178,0 +2299,Wioska+barbarzy%C5%84ska,431,504,698971484,10008,0 +2300,001.+WDP,611,544,8900955,7669,0 +2301,0011+K55+and987+OZDR.,507,561,3613413,9861,0 +2302,Minas+Tirith,534,387,1990750,10068,0 +2303,Marienburg+2,523,481,699355601,3442,0 +2304,%5B0112%5D,443,398,8630972,10365,0 +2305,Szlachcic,576,494,699759128,10104,0 +2306,Monetki,469,421,699098531,10292,0 +2307,ADEN,582,433,698588535,10211,0 +2308,042+InnyNizWszyscy,540,389,699491076,9221,0 +2309,0030,560,391,699485250,10211,0 +2310,Szlachcic,498,461,699098531,8888,0 +2311,7.62+mm,489,421,699777234,10019,0 +2312,Szlachcic,495,483,699098531,10311,0 +2313,Wioska+barbarzy%C5%84ska,492,412,699658023,9664,0 +2314,%5B115%5D+North15,575,471,848985692,10052,0 +2315,.%3A004%3A.+Chillout,501,414,848934935,9496,0 +2316,B02,540,445,8649412,9814,0 +2317,A011,488,414,699299123,10495,0 +2318,0Wioska+barbarzy%C5%84ska,473,512,699333701,2769,0 +2319,%230021+Szczur,486,546,9272054,10019,0 +2320,Horyzont+zdarze%C5%84,525,545,7581876,10019,0 +2321,053,419,515,699851427,10129,0 +2322,x07,560,476,8459255,10267,0 +2323,PRO8L3M,423,505,7491093,8099,0 +2324,hack3d+by+gh05t,474,526,7491093,9835,0 +2325,101,548,498,699351301,10035,0 +2326,082+MEHEHE,497,618,6116940,10019,0 +2327,Suppi,438,518,699856962,9562,0 +2328,mehehehe,467,438,9291984,10348,0 +2329,Szlachcic,559,480,699759128,10237,0 +2330,%5B234%5D+WEST,598,451,848985692,10052,0 +2331,P+Konfederacja,457,443,848915730,9812,0 +2332,043,544,394,849064752,10311,0 +2333,ladyanima,514,571,699703642,9613,0 +2334,0000+Velka+pardubicka,471,423,3909522,9899,0 +2335,Yogi,512,552,2808172,10019,0 +2336,PRO8L3M,460,499,7491093,10495,0 +2337,x+Romper+Stomper,423,502,698290577,7238,0 +2338,Brat447,456,509,699262350,10728,0 +2339,%5B154%5D+North,566,465,848985692,10411,0 +2340,Wioska+barbarzy%C5%84ska,514,536,848915531,4953,0 +2341,Wioska+16,530,499,699385139,8687,0 +2342,Strasznie+Mi%C5%82y+S%C4%85siad%21,548,447,556154,9643,0 +2343,069.+ALFI,465,570,8539216,1444,0 +2344,%2B44+62+Broukerque,420,466,698361257,9669,0 +2345,037.+A-RE-SE-EY,548,499,848967710,10252,0 +2346,10022,531,561,848915531,10728,0 +2347,%5B111%5D,557,501,8000875,9976,0 +2348,Osada,498,443,699098531,10292,0 +2349,CALL+977,551,554,699784536,10311,0 +2350,Wioska+barbarzy%C5%84ska,452,455,699660539,7218,0 +2351,Szlachcic,577,484,699759128,10025,0 +2352,Lord+Arsey+KING,516,519,848956513,10285,9 +2353,RZESZ%C3%93W,422,428,699660539,9668,0 +2354,Ta+cena+si%C4%99+nie+zmienia,512,510,699785935,8351,0 +2355,Land+of+Fire,396,446,698962117,9505,0 +2356,slow,530,489,848967710,10316,0 +2357,Szlachcic,578,502,699759128,10237,0 +2358,0019.+B+-,577,505,7125212,10160,0 +2359,Wioska+barbarzy%C5%84ska,538,499,848967710,10595,0 +2360,Pf+Konfederacja,495,490,848915730,9438,0 +2361,023+Rapid+City,438,479,1497168,9761,0 +2362,FAKE+OR+OFF,438,398,698231772,9828,0 +2363,A031,496,415,699299123,10495,0 +2364,0016,547,547,699432672,10495,0 +2365,Lord+Arsey+KING,516,487,848956513,10285,0 +2366,kathare,497,571,873575,11130,0 +2367,010.+A-RE-SE-EY,575,526,848967710,10252,0 +2368,008+%7C+Lord+Axen+-+Beware%21,552,536,8000875,9960,0 +2369,0031,467,469,848913037,8891,0 +2370,Sir+Hood+1,386,531,1804724,10393,0 +2371,.%3A123%3A.+Niangmen,520,412,848934935,9899,0 +2372,%21Charizard,568,443,699795378,9651,0 +2373,DobromirPan,412,576,698769107,9701,0 +2375,KIELBA+032,453,574,699342219,9624,0 +2376,Wioska+Barbarzy%C5%84ska,547,484,698867483,10362,0 +2377,Wioska+sila,503,479,699098531,10779,0 +2378,106.,495,488,8788366,7203,0 +2379,0012,509,528,699432672,10495,0 +2380,221+Mackay,531,439,1497168,10043,0 +2381,0001,512,519,699432672,10495,0 +2382,Wioska+Barbarzy%C5%84ska,544,484,698867483,10019,0 +2383,FF011,465,518,699189792,4098,0 +2384,045.+ALFI,479,563,8539216,1700,0 +2385,%2B44+73+Saint+Priest+Bel+Air,430,476,698361257,9855,0 +2386,Carsultyal,482,556,698704189,9711,0 +2387,%230024+Wycieczka+szkolna,487,570,9272054,10019,0 +2388,FFF,531,464,849091084,4433,0 +2389,007.+ALFI,469,569,8539216,1546,0 +2390,Sparta_64,482,579,2585846,9638,0 +2391,Wioska+13,532,498,699385139,9227,0 +2393,kto+ananasowy+pod+wod%C4%85+ma+dom,575,505,699628084,9797,0 +2394,Monetki,485,412,699098531,10306,0 +2395,001.+ALFI,472,566,8539216,2237,0 +2396,KIELBA+074,469,574,699342219,10237,0 +2397,.achim.,558,448,6936607,10132,0 +2398,002.+ALFI,472,567,8539216,1235,0 +2399,Minas+Anor+017,573,461,699379895,10495,0 +2400,194+Georgetown,466,461,1497168,9761,0 +2401,Ogr%C3%B3d+Warzywny,447,564,7249451,7237,0 +2402,Szlachcic,566,498,698867446,9435,0 +2403,Szlachcic,491,472,699098531,10294,0 +2404,036+Tulsa,434,441,9291984,10495,0 +2405,KONFA+TO+MARKA%2C+NARKA,425,482,698152377,10311,0 +2406,Suppi,433,444,699856962,10104,0 +2407,086,533,486,699351301,5130,0 +2408,024+Trititi,543,464,849031818,10019,0 +2409,Wioska+barbarzy%C5%84ska,535,539,7581876,9811,0 +2410,Kentin+ufam+Tobie,391,485,699783765,10000,0 +2411,182+Artigas,479,484,1497168,9761,0 +2412,166+Belem,482,477,1497168,9761,0 +2413,.achim.,530,444,6936607,12154,0 +2414,7.62+mm,486,429,699777234,10019,6 +2415,0Wioska+barbarzy%C5%84ska,470,513,699189792,4428,0 +2416,0648,478,548,698659980,10005,0 +2417,C013,526,458,699299123,9768,0 +2418,004,473,510,1536625,8073,0 +2419,0062+%7E222%7E+zaj%C4%85c,442,438,3909522,10478,0 +2420,%5B147%5D+North,583,475,848985692,10060,0 +2421,91k%24+Grvvyq,559,540,699676005,10495,0 +2422,Obro%C5%84cyZamkuTrzymaliSieDzielnie,479,528,7491093,9850,0 +2423,%3F%2B44+96+Ecully+Val+dOuest,467,491,698361257,11487,0 +2424,033,522,567,699189792,9747,0 +2425,084.,469,485,8788366,10252,0 +2426,.achim.,534,423,6936607,6319,0 +2427,107+Quebec+City,464,488,1497168,9761,0 +2428,Piek%C5%82o+to+inni,517,474,848956765,9251,0 +2429,%230077+S%C5%82abo%C5%9B%C4%87,497,558,8827094,9976,0 +2430,049,588,480,699573053,10495,0 +2431,Lord+Arsey+KING,514,526,848956513,10285,2 +2432,%230079+UPC,495,565,9272054,10014,0 +2433,7.62+mm,498,426,699777234,10019,0 +2434,026+Nelin,542,467,849031818,9889,0 +2435,%230099+%C5%9Awidnik,479,546,9272054,9307,0 +2436,A018,489,418,699299123,10495,0 +2437,018+-+Chicanna%2A%2A%2A,436,591,225023,10495,0 +2438,Szlachcic,497,470,699098531,9693,0 +2439,7.62+mm,477,448,699777234,10019,0 +2440,015.+Dola,509,570,699703642,9449,0 +2441,Os+Konfederacja+%2B,478,445,848915730,9749,0 +2442,Osada,496,446,699098531,10294,0 +2443,Os+Konfederacja,473,444,848915730,10252,0 +2444,023.+ALFI,486,572,8539216,1595,0 +2445,Strasznie+Mi%C5%82y+S%C4%85siad%21,549,449,556154,9735,0 +2446,7.62+mm,514,441,699777234,10019,0 +2447,Jaaa,572,577,698635863,10282,0 +2448,Gratuluje+m%C3%B3zgu,442,536,698971484,9674,0 +2449,meh,438,553,699856962,1657,0 +2450,073.,493,487,8788366,10252,0 +2451,0081,527,512,699432672,10495,0 +2452,Wioska+barbarzy%C5%84ska,406,423,698971484,10008,0 +2453,009711,464,439,3909522,10133,0 +2454,P+Konfederacja,454,444,848915730,9921,0 +2455,NOT%3F,461,537,9236866,9184,0 +2456,%7E%7ELataj%C4%85cyHolender%7E%7E,583,508,9174887,10149,0 +2457,036,613,489,849006412,9701,0 +2458,Szlachcic,556,487,698867446,9798,0 +2459,Madryt,422,457,699660539,10495,0 +2460,0032,523,502,698599365,10132,0 +2461,031,523,441,699788305,7617,0 +2462,Kasyno,441,508,7249451,10237,0 +2463,Isengard,532,532,7581876,8441,0 +2464,Suppi,443,529,699856962,9559,0 +2465,Arizona,406,471,699265922,9761,0 +2466,SS04,533,493,699744766,5422,0 +2467,072+Houston,448,444,1497168,9761,0 +2468,Szlachcic,510,475,699098531,9623,0 +2469,086.+ALFI,484,564,8539216,1275,0 +2470,Fajna+025,446,552,698971484,6266,0 +2471,Atlantis+07,542,425,699433558,10654,0 +2472,Szlachcic,557,486,698867446,9721,0 +2473,Village,504,575,849094067,12154,0 +2474,Wioska+417,564,506,477415,10495,0 +2475,-+299+-,527,579,849018239,10008,0 +2476,Szlachcic,506,471,699098531,8318,0 +2477,%230015+Zapalniczka,500,566,9272054,10008,0 +2478,SsSs,424,495,1536625,7168,0 +2479,0034+K55+and987+OZDR.,503,558,3613413,9845,0 +2480,KIELBA+058,466,584,699342219,10259,0 +2481,warzywa+style,507,572,699364813,9790,0 +2483,JaamMwG+015,523,517,848987051,10226,0 +2484,040.+A-RE-SE-EY,563,528,848967710,10252,0 +2485,CALL+969,548,569,699784536,10311,0 +2486,079,568,393,849063849,10068,0 +2487,%2B44+72+Inxent,421,470,698361257,9710,0 +2488,..%3A%3A004%3A%3A..+Planeta+Guwbu,412,435,698884287,10285,0 +2489,093,591,474,699573053,10495,0 +2490,Szlachcic,491,481,699098531,10297,0 +2491,067+Baltimore,461,474,1497168,9761,0 +2492,IBAR,431,554,8779575,2676,0 +2493,043+Kodiak,463,469,1497168,9761,0 +2494,091+Liechtenstein,574,462,7092442,10495,0 +2495,062+Carson+City,457,470,1497168,9761,0 +2496,Suppi,431,457,699856962,9580,0 +2497,Cast+Away+023,438,478,698290577,3688,0 +2498,Joms+014,521,415,699756210,9861,0 +2499,%2B44+83+Ghyvelde,437,481,698361257,9839,0 +2500,Osada,491,440,699098531,10295,0 +2501,%7E086.,494,607,7139820,10495,0 +2502,Monetki,482,423,699098531,10294,0 +2503,Osada+KS,450,536,698971484,9722,5 +2504,Teby_01,504,609,2585846,9638,0 +2505,Brat447,437,486,699262350,8851,0 +2506,P+Konfederacja+%2B,458,449,848915730,9692,0 +2507,Wioska+Barbarzy%C5%84ska,553,477,698867483,10019,0 +2508,078+Albuquerque,463,453,1497168,9761,0 +2509,%3F%2B44+85+Hesdigneul+les+Boulogne,456,489,698361257,9849,0 +2510,JM3,561,456,699368887,8793,0 +2511,0636,438,600,698659980,10019,0 +2512,kek,535,516,848967710,7131,0 +2513,.achim.,536,447,6936607,10311,0 +2514,CALL+947,546,558,699784536,10311,0 +2515,Andrzejuuu,437,460,698884287,10285,0 +2516,021,432,490,699510259,10001,0 +2517,%7C064%7C000,568,531,699664910,6385,0 +2518,Knowhere,410,501,699723284,10452,0 +2519,001,554,402,699761749,10495,0 +2520,%5B114%5D,551,503,8000875,9886,0 +2521,027+%7C,555,545,8000875,10476,1 +2522,002,560,396,699761749,10495,0 +2523,%2AINTERTWINED%2A%2A,462,556,698704189,9570,0 +2524,%3F%2B44+85+Craywick,458,480,698361257,9728,0 +2525,Lord+Arsey+KING,516,506,848956513,10285,0 +2526,0032,564,391,699485250,10705,0 +2527,%5B132%5D,553,536,8000875,9808,0 +2528,%5B117%5D+North17,572,472,848985692,10052,0 +2529,010,588,449,699722599,10495,0 +2530,A01,548,453,699368887,9084,2 +2531,B067,474,475,699299123,10495,0 +2532,NOT%3F,434,527,9236866,10042,0 +2533,K44+004,418,477,698290577,10094,0 +2534,A%23039%23,419,474,698807570,11727,0 +2535,%5B073%5D,557,566,8000875,9960,0 +2536,K44+005,420,478,698290577,4703,0 +2537,132+Acapulco,478,480,1497168,9761,0 +2538,Joms+021,528,417,699756210,10273,5 +2539,0063+kamie%C5%84,446,428,3909522,9847,0 +2540,031.+Andromeda,490,584,699703642,10083,0 +2541,Szlachcic,580,491,699759128,10237,0 +2542,103.,504,481,8788366,9782,0 +2544,KONFA+TO+MARKA%2C+NARKA,449,471,698152377,10364,0 +2545,Gattacka,588,498,699298370,9835,0 +2546,0022+MzM,568,498,698416970,9258,0 +2547,Wioska+Wiecznie+pok%C5%82ucony,582,504,848954163,1005,0 +2548,C032,527,450,699299123,7949,0 +2549,...Just+like+that,452,488,699723284,10452,0 +2550,KONFA+TO+MARKA%2C+NARKA,426,461,698152377,10292,0 +2551,017+%7C,560,560,8000875,10140,0 +2552,budzik,441,533,699856962,5649,0 +2553,065+Holandia,573,453,7092442,10495,0 +2554,025,528,434,699788305,10147,0 +2555,045.,499,492,8788366,10252,0 +2556,Gratuluje+m%C3%B3zgu,441,536,698971484,8362,0 +2557,A05,552,451,699368887,9377,9 +2558,Suppi,445,526,699856962,9818,0 +2559,6.+N%C4%99dza,550,435,8444356,10471,0 +2560,Gratuluje+m%C3%B3zgu,444,539,698971484,8709,0 +2561,Yogi,514,542,2808172,8623,0 +2562,Szlachcic,582,497,699759128,10237,0 +2563,%7E%7ELataj%C4%85cyHolender%7E%7E,581,499,9174887,10139,0 +2564,Pf+Konfederacja,490,491,848915730,9938,0 +2565,Wioska+Barbarzy%C5%84ska,542,482,698867483,10019,0 +2566,Winter+is+coming,440,555,699856962,6964,0 +2567,7.62+mm,509,440,699777234,10019,0 +2568,CALL+952,551,553,699784536,10311,0 +2569,073,417,507,699851427,10042,0 +2570,BBB,527,456,849091084,9055,0 +2571,035,413,517,699851427,10042,0 +2572,.achim.,532,445,6936607,12154,0 +2573,%2AAteny_06,470,537,2585846,9638,0 +2574,C+004.,459,579,849028088,10713,0 +2575,NOT%3F,419,527,9236866,10042,0 +2576,B024,490,451,699299123,10495,0 +2577,%3F%2B44+86+La+Capelle+les+Boulogne,461,484,698361257,9669,0 +2578,010,552,492,849070464,8562,0 +2579,XXX002,570,456,699368887,8635,0 +2580,.achim.,528,449,6936607,10634,0 +2581,%C5%9Amieszkii,512,567,3454753,9210,0 +2582,0087,465,461,848913037,3652,0 +2583,ADEN,564,441,698588535,10180,0 +2584,%5B104%5D+North4,575,484,848985692,10049,0 +2585,10007,527,560,848915531,8251,0 +2586,Coruscant+2,503,603,699383121,9797,0 +2587,%7E015.,504,605,7139820,10495,0 +2588,0002+dla,506,505,698599365,10019,8 +2589,Yellow+Candy,402,458,698807570,10703,0 +2590,008+Fiona,447,506,698290577,7870,0 +2591,Fajna+028,446,557,698971484,6847,3 +2592,Yogi,527,557,2808172,10019,0 +2593,NOT%21%21,469,599,9236866,10122,0 +2594,006,465,600,699364813,10495,0 +2595,%231%23,501,483,699098531,9283,0 +2596,CALL+968,546,568,699784536,10311,0 +2597,.achim.,518,410,6936607,10311,0 +2598,yogi,513,546,2808172,10252,0 +2599,Horyzont+zdarze%C5%84,533,603,7581876,9835,0 +2600,Cast+Away+008,448,484,698290577,10206,0 +2601,043+%7C,566,568,8000875,10143,0 +2602,130,565,407,849064752,10311,0 +2603,0Wioska+barbarzy%C5%84ska,479,532,699781762,9277,0 +2604,Szlachcic,486,468,699098531,10290,0 +2605,Osada,500,436,699098531,10306,0 +2606,Wioska+Gebels25,465,409,9291984,7958,0 +2607,Szlachcic+035,562,526,758104,8024,0 +2608,Szlachcic,578,485,699759128,10237,0 +2609,PRO8L3M,414,498,7491093,9992,0 +2610,Lord+Arsey+KING,518,469,848956513,6838,0 +2611,R%C4%99cznik+do+zmiany,417,491,699697558,11489,0 +2612,Osada,491,454,699098531,10113,0 +2613,NOT%3F,467,548,9236866,8371,0 +2614,052.+ALFI,486,564,8539216,1866,0 +2615,Jaaa,605,436,698635863,10495,0 +2616,0176,473,544,698659980,9995,0 +2617,052+Waimea,453,458,1497168,9761,5 +2618,Suppi,443,449,699856962,9556,0 +2619,Pf+Konfederacja,497,490,848915730,9938,0 +2620,SsSs,423,504,1536625,8565,0 +2621,Wioska+barbarzy%C5%84ska,422,504,698290577,3970,0 +2622,NWO,393,525,849030226,10966,0 +2623,.%3A012%3A.Chillout,515,429,848934935,4078,0 +2624,Piek%C5%82o+to+inni,516,426,848956765,10160,0 +2625,Os+Konfederacja,474,438,848915730,9836,0 +2626,Warzywniak+007,451,545,698290577,2274,0 +2627,CALL+963,544,546,699784536,10311,0 +2628,Szlachcic+021,555,525,758104,9295,0 +2629,ADEN,561,438,698588535,6366,0 +2630,0102+dzik,468,446,3909522,10181,0 +2631,Jaaa,574,547,698635863,10438,0 +2632,0106+bbbb+kojotqqqqqqqqqqqqqqqqq,470,439,3909522,9739,0 +2633,WioskaD,513,581,8369778,9730,0 +2634,.%3A033%3A.+Chillout,502,411,848934935,5516,0 +2635,K44+011,433,484,698290577,4005,0 +2636,A+nie+pami%C4%99tasz+jak%3F,502,517,699785935,9835,2 +2637,Odepta,438,557,699443920,6259,0 +2638,NOT%3F,435,523,9236866,10042,0 +2639,keepo,488,529,848967710,9777,0 +2640,Winter+is+coming,447,538,698971484,9558,0 +2641,54k%24+Grvvyq,528,535,699676005,10495,0 +2642,009741,464,442,3909522,8652,0 +2643,086,425,514,699851427,10129,0 +2644,Bucksbarzy%C5%84sKamiiiru,428,505,848955783,9580,0 +2645,0028,548,527,699432672,9106,0 +2646,077.,569,462,849094609,10364,0 +2647,%5B074%5D,558,546,8000875,10295,0 +2648,Wioska+Klemens+Zdobywca+69,549,432,848986287,10476,0 +2649,1.+Baza,547,437,8444356,10495,0 +2650,Traptosteron%21,494,504,699785935,9835,6 +2651,049,540,424,699761749,10495,0 +2652,01+%7C+Wiocha,539,437,849002091,11383,0 +2653,196,548,428,849064752,10311,0 +2654,026.+P%C5%82anetnik,510,578,699703642,9761,0 +2655,Minas+Anor+025,574,463,699379895,10495,0 +2656,Monetki,474,424,699098531,10311,0 +2657,K45+-+012,559,467,6510480,9796,0 +2658,7.62+mm,494,424,699777234,10019,0 +2659,Wioska+barbarzy%C5%84ska,538,493,848967710,10252,0 +2660,Osada,500,456,699098531,9618,0 +2661,022,548,477,849031818,6072,0 +2662,xxx,501,453,698239813,10495,0 +2663,048+%7C,550,548,8000875,10164,2 +2664,Szlachcic,500,457,699098531,10019,0 +2665,%230023+Velo,486,558,9272054,10000,0 +2666,B025,496,453,699299123,10495,0 +2667,Pf+Konfederacja,485,489,848915730,9938,0 +2668,098+Sierra+Vista,480,459,1497168,9761,0 +2669,A017,491,411,699299123,10490,0 +2670,Wioska,379,521,849084005,10178,0 +2671,Szlachcic+002,566,524,758104,9338,0 +2672,R%C4%99cznik+do+zmiany,417,493,699697558,11911,0 +2673,szla,564,529,6818593,9835,0 +2674,Szlachcic+040,560,519,758104,9338,0 +2675,%5B097%5D,550,497,8000875,9957,0 +2676,Napewno+to+nie+jest+off,515,440,848912265,4502,0 +2677,%2AAteny_43,468,532,2585846,9682,0 +2679,KIELBA+013,446,573,699342219,10478,0 +2680,Wioska+Barbarzy%C5%84ska,545,479,698867483,9855,0 +2681,Fajna+071,459,562,8539216,6188,0 +2682,Suppi,428,447,699856962,10237,0 +2683,Suppi,427,449,699856962,9828,0 +2684,039+%7C,564,540,8000875,10060,9 +2685,-1-+FOB+UP,508,476,699098531,9835,0 +2686,CALL+1042,549,545,699784536,10070,0 +2687,099.,506,480,8788366,10252,0 +2688,F017,496,534,699189792,9080,0 +2689,Zasiedmiog%C3%B3rogr%C3%B3d,518,447,699433558,9821,0 +2690,xxx,509,449,698239813,10636,0 +2691,Szlachcic,582,499,699759128,10237,0 +2692,.%3A079%3A.+Takmahal,524,439,848934935,7570,0 +2693,zapodlina,569,416,849027712,6370,0 +2694,%230093+Leniuszki,483,550,9272054,10019,0 +2695,Wioska+419,565,518,477415,10636,0 +2696,-+305+-,529,583,849018239,10000,2 +2697,30004,486,543,848915531,9827,0 +2698,F014,488,537,699189792,9761,0 +2699,5.+Bieda,548,435,8444356,10495,0 +2700,%7E061.,480,548,7139820,10495,0 +2701,%230085+Kolonia+Piszczac,476,554,9272054,10019,0 +2702,Wioska+barbarzy%C5%84ska,556,473,699368887,7040,0 +2703,CHW%23031r,481,540,698704189,9711,0 +2704,%7E%7ELataj%C4%85cyHolender%7E%7E,579,502,9174887,9615,0 +2705,%230004+Warszawka,498,553,9272054,10495,0 +2706,Brat447,446,489,699262350,10481,0 +2707,%230020+Ka%C5%9Bka+Koniecko,494,563,9272054,10000,0 +2708,Pf+Konfederacja,490,485,848915730,9938,0 +2709,%230071+Mateusz+P,490,546,9272054,10019,0 +2710,070.+ALFI,475,563,8539216,1344,0 +2711,Os+Konfederacja+%2B,480,446,848915730,9812,0 +2712,%2AAteny_42,469,533,2585846,9638,0 +2713,Mzm29,555,528,7142659,10362,0 +2714,%230115+Doniczka,479,551,9272054,9132,0 +2715,XXXX,500,381,849054951,10178,0 +2716,019.+A-RE-SE-EY,572,527,848967710,10252,0 +2717,001+Reaction,563,474,849031818,10377,0 +2718,%5B082%5D,541,503,8000875,9853,0 +2719,008+Hubal,562,477,849031818,7703,0 +2720,%23065,472,586,699605333,8438,5 +2721,002,568,480,849070464,8161,0 +2722,Osada,499,446,699098531,10297,0 +2723,035.+A-RE-SE-EY,571,513,848967710,10252,0 +2724,%5B120%5D,551,507,8000875,9820,0 +2725,076+Lubbock,456,455,1497168,9761,0 +2726,B051,476,467,699299123,9257,0 +2727,Wioska,385,534,849084005,10178,0 +2728,0001,559,392,699485250,10211,0 +2729,030+Chippewa+Falls,446,460,1497168,9761,0 +2730,%5B136%5D,561,536,8000875,10054,0 +2731,KONFA+TO+MARKA%2C+NARKA,397,465,698152377,12154,0 +2732,128.,491,487,8788366,10495,0 +2733,CALL+985,545,570,699784536,10495,0 +2734,A012,495,417,699299123,10495,0 +2735,R%C4%99cznik+do+zmiany,416,483,699697558,12154,0 +2736,KARTAGINA+.10,459,576,8438707,8157,0 +2737,xxx,510,427,698239813,11130,4 +2738,038+Lexinton,448,465,1497168,9761,0 +2739,Piek%C5%82o+to+inni,517,486,848956765,9908,0 +2740,Szlachcic,510,471,699098531,9824,0 +2741,KONFA+TO+MARKA%2C+NARKA,441,468,698152377,10941,0 +2742,Pu%C5%82apka+na+motyle,516,507,699785935,12154,0 +2743,Jaaa,578,533,698635863,7770,0 +2744,Piek%C5%82o+to+inni,522,464,848956765,10362,0 +2745,S%C5%82oneczna+W%C5%82%C3%B3cznia,540,465,8155296,4593,0 +2746,002,482,507,849092723,8447,0 +2747,008.+Marzyciel+Shrek,456,500,698290577,9959,0 +2748,Joms+013,527,419,699756210,10122,0 +2749,Szlachcic,559,497,698867446,9721,0 +2750,Pf+Konfederacja,493,500,848915730,9297,0 +2751,003,606,496,699573053,10495,0 +2752,083+Denver,479,468,1497168,9761,0 +2753,Mzm40,565,524,7142659,10362,0 +2754,B029,479,455,699299123,10495,0 +2755,07%2A,568,532,699664910,9531,0 +2756,00977,461,434,3909522,5903,0 +2757,Taran,544,388,699170684,9825,0 +2758,0063+Madrid,449,427,3909522,10262,0 +2759,.%3A074%3A.+Takmahal,526,444,848934935,8555,0 +2760,0063+12qqqqqqqqqqqqqqqqqqqq,448,429,3909522,10160,0 +2761,Osada+koczownik%C3%B3w,432,507,698971484,10008,3 +2762,0057,445,424,3909522,10072,0 +2763,075,569,396,849063849,9576,0 +2764,054,572,404,849064752,10311,0 +2765,049.,546,465,849094609,9835,0 +2766,0063+b11,455,430,3909522,9361,0 +2768,-+221+-,549,575,849018239,10000,0 +2769,078.,571,462,849094609,9946,0 +2770,013+%7C,561,562,8000875,10495,0 +2771,0036,461,468,848913037,9993,0 +2772,Szlachcic,578,486,699759128,10237,0 +2773,Dioda+v3,543,524,8649412,10495,0 +2774,009,566,483,849070464,7981,0 +2775,Lord+Arsey+KING,541,528,848956513,10285,0 +2776,%5B116%5D+North16,574,471,848985692,9980,0 +2777,%21+Wioska+436,548,528,477415,8383,0 +2778,Front_13,457,524,2585846,9638,0 +2779,ChceszPokojuSzykujSi%C4%99DoWojny,460,517,699333701,3543,0 +2780,0164,463,549,698659980,9250,0 +2781,SsSs,460,504,1536625,8501,0 +2782,Piek%C5%82o+to+inni,518,428,848956765,10160,0 +2783,Brat447,462,505,699262350,11302,0 +2784,Brat447,461,506,699262350,8649,0 +2785,CALL+957,550,549,699784536,10311,0 +2786,NIERAJ10,444,610,699859013,3994,0 +2787,P+Konfederacja+%2B,471,439,848915730,9687,0 +2788,Osada,501,454,699098531,9637,0 +2789,P+Konfederacja,462,444,848915730,9305,0 +2790,079+Orzech+arachidowy,551,471,7092442,10495,1 +2791,0327,446,609,698659980,9797,0 +2792,R%C4%99cznik+do+zmiany,420,491,699697558,10654,0 +2793,Wioska+barbarzy%C5%84ska,539,474,8155296,4081,0 +2794,Wioska+barbarzy%C5%84ska,497,417,699658023,9650,0 +2795,K44+025,425,496,698290577,9166,0 +2796,PRO8L3M,426,497,7491093,9899,0 +2797,ob%C3%B3z+Pracy,422,505,698290577,7348,0 +2798,Ateny_72,472,522,2585846,3094,0 +2799,SsSs,421,493,1536625,10149,0 +2800,018,432,492,699510259,9761,0 +2801,NOT%3F,434,537,9236866,3437,0 +2802,Wioska+barbarzy%C5%84ska,567,483,699347951,9302,0 +2803,013+Esiok+f,535,464,8155296,10179,0 +2804,0063+b5+mehehehe,450,434,3909522,10149,0 +2805,0063+13,452,428,3909522,9975,0 +2806,C005,523,457,699299123,10838,0 +2807,%5B058%5D+Kappa,526,504,848985692,10237,0 +2808,Wioska+415,570,506,477415,10495,0 +2809,Os+Konfederacja+%2B,469,452,848915730,9668,0 +2810,-%5B006%5D-+Czo+Oju,553,483,849092827,7088,0 +2811,Monetki,483,425,699098531,10291,7 +2812,195+Santiago+de+Surco,467,458,1497168,10068,0 +2813,Wioska_09,556,447,8674163,5369,0 +2814,CALL+949,547,556,699784536,10311,0 +2815,IQ154,554,452,699368887,6765,0 +2816,ChceszPokojuSzykujSi%C4%99DoWojny,462,517,699333701,3122,0 +2817,013,541,401,849064752,10311,0 +2818,.achim.,539,411,6936607,10801,0 +2819,-+319+-,525,582,849018239,10000,0 +2820,KONFA+TO+MARKA%2C+NARKA,389,470,698152377,10311,0 +2821,%C5%9Amieszkii,515,564,3454753,9156,0 +2822,KONFA+TO+MARKA%2C+NARKA,419,460,698152377,10292,0 +2823,KONFA+TO+MARKA%2C+NARKA,423,464,698152377,10311,0 +2824,Szlachcic,580,483,699759128,10237,0 +2825,F026,496,543,699189792,9702,0 +2826,003,461,577,848886870,10495,0 +2827,keepo,474,510,848967710,10330,0 +2828,0170,470,550,698659980,9500,0 +2829,B006,555,501,8138506,10160,0 +2830,003+-+Who+next%3F,426,573,225023,10495,0 +2831,Mesaria,437,455,698884287,10285,0 +2832,Merhet,521,585,698215322,10220,0 +2834,F084,484,523,699189792,9694,0 +2835,044.+A-RE-SE-EY,567,511,848967710,10252,0 +2836,%2B44+61+Ferques,412,464,698361257,9840,0 +2837,26.,565,482,698702991,10104,0 +2838,003,566,480,849031818,7361,0 +2839,Szlachcic+043,565,526,758104,9338,0 +2840,Szlachcic,556,474,698867446,10160,0 +2841,%5B137%5D,566,538,8000875,9750,0 +2842,10021,534,559,848915531,5765,0 +2843,Osada,498,449,699098531,9629,0 +2844,F011,500,529,699189792,9744,0 +2845,KONFA+TO+MARKA%2C+NARKA,399,472,698152377,12154,0 +2846,Mniejsze+z%C5%82o+0059,417,504,699794765,6076,0 +2847,Szlachcic,495,465,699098531,9166,0 +2848,10012,533,561,848915531,8163,0 +2849,A%C5%81A+NIE+BIJ+BOLI,493,469,699098531,9835,0 +2850,Szlachcic,492,475,699098531,9764,0 +2851,029+-+Katowice,406,579,225023,10495,0 +2852,%3F%2B44+85+Wirwignes,459,482,698361257,9175,0 +2853,228+Queenstown,535,442,1497168,8898,0 +2855,003+Osada+koczownik%C3%B3w,573,549,699316421,9744,5 +2857,Osada,496,447,699098531,9629,1 +2858,Szlachcic,509,480,699098531,9701,0 +2859,220+Townsville,536,441,1497168,9146,0 +2860,Winter+is+coming,503,585,699364813,9976,0 +2861,%C5%9Amieszkii,514,559,3454753,9115,0 +2862,025.+Oborot,505,579,699703642,9761,0 +2863,Wioska+506,575,456,477415,10495,0 +2864,Minas+Ithil,506,515,849091897,9386,0 +2865,%28023%29,422,544,699846892,10152,0 +2866,-+Alternatywa,507,514,699785935,10160,0 +2867,%2B44+73+Sorrus,435,479,698361257,9661,0 +2868,BBB,563,437,1006847,5982,0 +2869,%230097+Dobry%C5%84+Du%C5%BCy,473,555,699856962,9033,0 +2870,Ogr%C3%B3d+Warzywny,451,560,7249451,10495,0 +2871,088+Cincinnati,476,457,1497168,10247,9 +2872,008,415,502,699510259,9750,0 +2873,.%3A064%3A.+Chillout,510,422,848934935,5466,0 +2874,104,412,510,699851427,10129,0 +2875,065,423,508,699851427,10042,0 +2876,011,464,533,2585846,4022,0 +2877,Bucksbarzy%C5%84sKamiiiru,425,503,848955783,10756,0 +2878,Szlachcic,498,465,699098531,7984,0 +2879,%5B103%5D,552,503,8000875,9907,0 +2880,082,415,514,699851427,10042,0 +2881,Suppi,442,525,699856962,9636,0 +2882,NOT%3F,424,528,9236866,10042,0 +2883,Monetki+%3F%3F%3F,485,416,699098531,10295,0 +2884,Piek%C5%82o+to+inni,523,468,848956765,9761,0 +2885,044,553,398,849064752,10311,0 +2886,-+307+-,524,583,849018239,10000,0 +2887,South+K45,569,409,699146580,9297,0 +2888,KONFA+TO+MARKA%2C+NARKA,451,465,698152377,10311,0 +2889,B015,567,404,699761749,10495,0 +2890,wioska+ofensywna,549,430,848986287,9771,0 +2891,011,560,407,699761749,10495,0 +2892,Szlachcic,492,460,699098531,10311,0 +2893,002+King,531,466,848967710,5381,0 +2894,%2B44+61+Landrethun+le+Nord,416,466,698361257,9843,0 +2895,Marienburg+5,527,476,699355601,3549,0 +2896,Monetki,473,417,699098531,10292,0 +2897,SPARTA_67,480,582,2585846,9638,0 +2898,Szlachcic,559,476,698867446,9332,0 +2899,027.+ALFI,484,572,8539216,1838,0 +2900,%5B119%5D,563,538,8000875,9941,0 +2901,%230001,546,612,1536231,10495,0 +2902,0011,508,502,699432672,10495,0 +2903,%230017+Bober,489,561,9272054,10000,8 +2904,0083,551,608,698659980,10160,0 +2905,Wioska+Barbarzy%C5%84ska,546,483,698867483,9094,0 +2906,Bagdad,475,384,8847546,10654,0 +2907,Mzm24,551,520,7142659,10362,0 +2908,Konfederacja,468,384,848915730,10160,0 +2909,CALL+1033,550,555,699784536,10495,0 +2910,Yogi,533,567,2808172,10019,0 +2911,CALL+946,551,552,699784536,10311,0 +2912,P+Konfederacja,463,449,848915730,9222,0 +2913,-%3D+010+%3D-,443,519,698971484,10008,0 +2914,Fajna+078,459,557,3613413,4395,0 +2915,Suppi,442,522,699856962,9556,0 +2916,...Just+like+that,453,488,699723284,10452,0 +2917,D01,544,456,699355601,10301,0 +2918,Strasznie+Mi%C5%82y+S%C4%85siad%21,547,447,556154,9735,0 +2919,KONFA+TO+MARKA%2C+NARKA,444,457,698152377,10303,0 +2920,046+Boise,467,468,1497168,9761,0 +2921,Lord+Arsey+KING,519,493,848956513,10285,0 +2922,200+Paramaribo,470,459,1497168,9902,0 +2923,KONFA+TO+MARKA%2C+NARKA,431,480,698152377,10311,0 +2924,Os+Konfederacja,477,454,848915730,10203,0 +2925,10+%7C+002,537,434,849002091,5707,0 +2926,B041,476,456,699299123,8933,0 +2927,COUSINS,487,587,7976264,9176,0 +2928,014.+Wioska+mruva,578,516,8788366,10252,0 +2929,012,559,493,849070464,7981,0 +2930,Gattacka,579,513,699298370,10506,0 +2931,Jaaa,571,538,698635863,10490,0 +2932,BEEF,498,515,699785935,10495,0 +2933,Fajna+085,457,563,8539216,335,0 +2934,Wioska+20.,495,523,848967710,9963,0 +2935,007+Fiona,445,506,698290577,7711,0 +2936,K55,539,529,698867483,10019,0 +2937,NOT%3F,412,513,9236866,10042,0 +2938,CALL+1086,536,537,699784536,10495,0 +2939,063+Grecja,572,462,7092442,10495,0 +2940,Wioska+barbarzy%C5%84ska,438,444,698884287,10285,0 +2941,Szlachcic,568,471,698867446,9845,0 +2942,Anioly3,438,537,699856962,7083,0 +2943,Abad+On,569,475,699347951,9863,0 +2944,Wioska+barbarzy%C5%84ska,435,440,9291984,10478,0 +2945,Szlachcic,568,479,699759128,10237,0 +2946,100.,503,482,8788366,6773,0 +2947,%5B143%5D+North,578,467,848985692,10311,0 +2948,Lord+Arsey+KING,518,501,848956513,10285,0 +2949,Suppi,435,444,699856962,9659,0 +2950,Lord+Arsey+KING,517,503,848956513,8392,0 +2951,.achim.,538,421,6936607,10375,0 +2952,SsSs,423,503,1536625,9698,0 +2953,Suppi,441,515,699856962,9553,0 +2954,037.+ALFI,469,557,8539216,1324,0 +2955,BETI+006,463,567,8539216,1641,0 +2956,0169,470,553,698659980,9081,0 +2957,Szlachcic,559,494,698867446,10117,0 +2958,Winter+is+coming,438,529,699856962,8022,0 +2959,019+Ewolucja,554,502,849031818,7165,0 +2960,...Just+like+that,452,506,699723284,10452,0 +2961,Montgomery,466,494,698290577,9960,4 +2962,007,553,496,849070464,8969,0 +2963,Piek%C5%82o+to+inni,522,426,848956765,10160,0 +2964,NEW+ABADON,563,499,699347951,9172,0 +2965,Piek%C5%82o+to+inni,523,423,848956765,10160,0 +2966,Anioly1,439,537,699856962,9670,0 +2967,Mzm31,547,539,7142659,10426,0 +2968,Gratuluje+m%C3%B3zgu,440,533,699856962,9924,0 +2969,Gratuluje+m%C3%B3zgu,442,539,698971484,7100,0 +2970,Piek%C5%82o+to+inni,521,417,848956765,10160,0 +2971,%2AINTERTWINED%2A,476,564,698704189,9711,0 +2972,.%3A062%3A.+Chillout,518,425,848934935,9076,0 +2973,004,563,491,699099811,10654,0 +2974,116+Mcbride,479,496,1497168,9761,0 +2976,006,481,586,7976264,10290,0 +2977,......,553,446,699368887,7576,0 +2978,scar,478,593,699364813,10365,0 +2979,107+Kasztan+Kasztanem+Pogania,544,459,7092442,5138,0 +2980,.%3A127%3A.+Niangmen,512,417,848934935,9899,0 +2981,7.62+mm,509,426,699777234,8723,0 +2982,Cast+Away+015,448,483,698290577,5597,0 +2983,045,566,403,849064752,10311,0 +2984,0Wioska+barbarzy%C5%84ska,473,505,699781762,10083,0 +2985,%5B130%5D+North,580,472,848985692,10060,0 +2986,Wioska+Barbarzy%C5%84ska,543,481,698867483,10019,0 +2987,097,568,399,849064752,10311,0 +2988,Piek%C5%82o+to+inni,525,425,848956765,10160,0 +2989,A04,555,449,699368887,9439,0 +2990,KONFA+TO+MARKA%2C+NARKA,425,466,698152377,10303,0 +2991,South+K45,574,410,699146580,8736,0 +2992,warzywa,496,588,699364813,10394,0 +2993,%3F%2B44+76+Charly,460,475,698361257,9466,7 +2994,Pf+Konfederacja,490,504,848915730,9682,0 +2995,Konfiasze,473,492,698908912,10787,0 +2996,%5B086%5D,529,528,848985692,10107,0 +2997,084+Pistacja,543,465,7092442,9637,0 +2998,JaamMwG+031,530,524,848987051,12154,0 +2999,Mzm21,560,517,7142659,10503,0 +3001,Monetki,469,417,699098531,10295,0 +3003,0032+K55+and987+OZDR.,503,564,3613413,9792,0 +3004,073+Amarillo,454,450,1497168,9771,0 +3006,20006,505,545,848915531,10838,0 +3007,071+Dallas,453,449,1497168,9761,0 +3008,%230033+%C5%9Awinouj%C5%9Bcie,486,563,9272054,10000,0 +3009,004.+ALFI,483,572,8539216,1521,0 +3010,Szlachcic+010,557,523,758104,8024,0 +3011,006+Fiona,444,506,698290577,7403,0 +3012,Mzm05,556,525,7142659,10636,0 +3013,Monetki,475,427,699098531,10291,0 +3014,Osada,500,451,699098531,9617,0 +3015,7.62+mm,472,434,699777234,10019,0 +3016,.%3A141%3A.+Niangmen,507,401,848934935,9761,0 +3017,.achim.,515,400,6936607,10311,0 +3018,Szlachcic,502,462,699098531,8318,0 +3019,Brat447,445,495,699262350,10495,0 +3020,Wioska+barbarzy%C5%84ska,533,436,699788305,9250,0 +3021,Brat447,447,490,699262350,10495,0 +3023,%23Kingler,573,457,699795378,10252,0 +3025,%7E045.,481,553,7139820,10495,0 +3026,NOT,419,422,9236866,10042,0 +3027,...001...,553,445,699368887,9060,0 +3028,%7C010%7C,553,569,873575,10311,0 +3029,A09,550,452,699368887,9994,0 +3030,%3F%2B44+86,463,486,698361257,9626,0 +3031,Wioska+barbarzy%C5%84ska,526,606,606407,10300,0 +3032,Tank+001,396,515,698290577,10343,0 +3033,C018,526,460,699299123,9759,0 +3034,LEGION_1,553,450,6101033,3482,0 +3035,FF009,468,518,699189792,5813,0 +3036,Strasznie+Mi%C5%82y+S%C4%85siad%21,548,442,556154,9735,0 +3037,%7E049.,492,565,7139820,10495,0 +3038,004,500,378,849010255,10019,0 +3039,slow,533,488,848967710,10252,0 +3041,024,531,574,699189792,9761,0 +3042,%5B180%5D,541,548,8000875,10524,8 +3043,Wioska,379,517,849084005,10178,0 +3044,007,507,482,698881022,6448,0 +3045,ccc,611,555,7047342,10476,0 +3046,lady+anima,493,582,699703642,10535,0 +3047,Wioska,380,526,849084005,10178,0 +3048,024+Buffalo,440,478,1497168,9761,0 +3049,Piek%C5%82o+to+inni,518,481,848956765,10160,0 +3050,P.018,540,562,873575,9915,0 +3051,.achim.,516,486,6936607,10311,0 +3052,4+ESIOK+f,538,462,8155296,8935,0 +3053,0063+4+Lechxxxxx,450,426,3909522,10316,0 +3054,0063+3,448,427,3909522,10083,0 +3055,%2AINTERTWINED%2A%2A,468,564,698704189,8546,0 +3056,P+Konfederacja,459,453,848915730,9319,0 +3057,0110,469,562,698659980,8776,0 +3058,CALL+1020,550,563,699784536,10311,0 +3059,Wioska+barbarzy%C5%84ska,431,446,698884287,10285,0 +3060,CALL+941,553,556,699784536,10311,0 +3061,K44+x014,441,417,698364331,10495,0 +3062,NOT%3F,425,519,9236866,9950,0 +3063,00533+W01,440,418,3909522,8006,0 +3064,Szlachcic,486,479,699098531,10300,2 +3065,070,547,413,699761749,10495,0 +3066,KONFA+TO+MARKA%2C+NARKA,446,470,698152377,10643,0 +3067,03+%7C+Osada+bolcownik%C3%B3w,543,432,849002091,8877,9 +3068,054,542,417,7271812,10495,0 +3069,Piek%C5%82o+to+inni,520,472,848956765,8131,9 +3070,Pf+Konfederacja,484,490,848915730,9912,0 +3071,Pf+Konfederacja+%2B,486,484,848915730,9938,0 +3072,.achim.,526,398,6936607,10311,0 +3073,P.019,539,555,873575,10028,0 +3074,%230018+Wizualizacja,490,550,9272054,10346,0 +3075,%2AINTERTWINED%2A,469,564,698704189,9565,0 +3076,amator+MO3,533,554,848915531,10971,0 +3077,-%5B023%5D-+Nanda+Devi,550,488,849092827,7445,0 +3078,CALL+1078,535,548,699784536,11130,0 +3079,0090,451,436,3909522,9924,0 +3080,%5B0101%5D,448,395,8630972,10495,0 +3081,.008,460,498,699781762,10495,0 +3082,K34+x002,447,385,698364331,10495,0 +3083,Wioska+420,554,511,477415,10495,0 +3084,Wioska+gotkamil,523,512,699385139,9711,0 +3085,219+Brisbane,532,439,1497168,9966,0 +3086,001,522,513,8191129,8095,0 +3087,A12,549,455,699368887,9994,0 +3088,Ateny_78,473,521,2585846,2569,0 +3089,09.+Ren+Grouver,563,480,698702991,10178,0 +3090,07+Zr%C3%B3b+mi+huragan,474,517,699781762,3249,0 +3091,-+034+-,532,574,849018239,10000,0 +3092,%2B44+62+Hesdin+l+Abbe,420,463,698361257,9852,0 +3093,-+261+-,529,581,849018239,10000,0 +3094,036,554,429,849063849,9199,0 +3095,Lord+Arsey+KING,501,471,848956513,10285,0 +3096,Front_21,456,529,2585846,9638,0 +3097,Szlachcic,498,478,699098531,9899,0 +3098,South+barba+1,457,460,699796330,10495,0 +3099,053,548,406,699761749,10495,0 +3100,013,556,398,699761749,10495,0 +3101,%2B44+84+Airon+Saint+Vaast,444,480,698361257,9652,0 +3102,NOT%3F,425,527,9236866,10042,0 +3103,P.020,540,556,873575,10026,0 +3104,NOT%3F,434,528,9236866,10042,0 +3105,Winter+is+coming,446,537,698971484,8924,0 +3106,Szlachcic,558,479,699759128,10237,0 +3107,%21Wioska+413,569,507,477415,10838,0 +3108,...Just+like+that,450,482,699723284,10452,6 +3109,002+KSG,560,473,849031818,9245,0 +3110,ASEINGARD+f,539,464,8155296,9384,0 +3111,Wioska+Barbarzy%C5%84ska.,555,476,698867483,10019,0 +3112,Maximize,507,520,699785935,10495,0 +3113,Lord+Arsey+KING,519,500,848956513,10285,0 +3114,PRO8L3M,412,499,7491093,9835,0 +3115,Wesz%C5%82o+%C5%82adnie,516,508,699785935,9835,0 +3116,-%5B014%5D-+Sziszapangma,551,491,849092827,8087,0 +3117,Lord+Arsey+KING,517,498,848956513,10285,0 +3118,Szlachcic,587,483,699759128,10237,0 +3119,070.,514,503,8788366,11321,0 +3120,%5B105%5D,559,542,8000875,9962,0 +3121,007+Hasta+la+vista+baby,465,505,1536625,9808,0 +3122,...Just+like+that,467,473,699723284,10117,0 +3123,ChceszPokojuSzykujSi%C4%99DoWojny,462,513,699333701,10252,0 +3124,F086,481,519,699189792,9771,0 +3125,05+Hafnarfjordur,472,511,699333701,5082,0 +3126,PRO8L3M,457,497,7491093,11321,0 +3127,Brat447,455,503,699262350,10728,0 +3128,Darma,425,403,356642,9835,0 +3129,002,424,399,699402816,10068,0 +3130,keepo,477,515,848967710,4961,0 +3131,%3F%2B44+85+Riillieux+la+Pape,455,489,698361257,9889,0 +3132,Fajna+086,456,567,8539216,850,0 +3133,%3F%2B44+85+Villeurbanne+Poudrette,457,484,698361257,9669,0 +3134,xxx,506,452,698239813,6328,0 +3135,KIELBA+035,451,573,699342219,10495,0 +3136,00971+ddd+pies,463,438,3909522,5505,0 +3137,7.+Brasil,453,567,699856962,6947,0 +3138,005,576,544,8138506,10019,1 +3139,A03,551,454,699368887,9313,0 +3140,SsSs,435,497,1536625,8542,0 +3141,A20,554,447,699368887,7512,0 +3142,Fajna+018,449,554,698971484,7574,0 +3143,Feed+me+more+007,492,373,699756210,10495,0 +3144,X14,544,446,6923061,3087,0 +3145,Yyyy,500,373,699883079,10132,0 +3146,%C5%9Amieszkii,510,552,3454753,9072,0 +3147,040,561,399,699761749,10495,0 +3148,Wioska+6,535,495,699385139,7576,0 +3149,.%3A083%3A.+Takmahal,524,451,848934935,10636,8 +3150,033,560,406,699761749,10495,0 +3151,Szlachcic,509,476,699098531,7603,0 +3152,7.62+mm,470,457,699777234,10019,0 +3153,KONFA+TO+MARKA%2C+NARKA,445,455,698152377,10447,0 +3155,Selonari.,460,563,698704189,9711,0 +3156,Psytrance,504,416,8649412,10171,0 +3157,BBB,554,436,1006847,6900,0 +3158,A051,503,419,699299123,10495,0 +3159,042+%7C,555,560,8000875,10178,0 +3160,F009,505,531,7581876,9586,0 +3161,F006,501,535,699189792,9756,0 +3162,0064,508,523,699432672,10495,0 +3163,Obnisk,434,562,699443920,4094,0 +3164,%5B084%5D,551,530,8000875,9976,0 +3165,018+%7C,550,534,8000875,10155,0 +3166,0078,463,547,698659980,10160,0 +3167,003+Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,465,542,698971484,10008,0 +3168,Osada,496,452,699098531,9637,0 +3169,Weso%C5%82ych+%C5%9Awi%C4%85t,558,452,699368887,11653,0 +3170,KONFA+TO+MARKA%2C+NARKA,426,463,698152377,10300,0 +3171,Ko%C5%84czy%C4%87+czas%3A%29,549,447,699368887,9955,0 +3172,063.,480,490,699851345,9935,0 +3173,Wioska+barbarzy%C5%84ska,564,446,699368887,9994,0 +3174,Wioska+barbarzy%C5%84ska,510,541,7581876,10083,1 +3175,A13,550,455,699368887,9902,0 +3176,Weso%C5%82ych+%C5%9Awi%C4%85t,564,452,699368887,6799,0 +3177,Szlachcic+%21%21%21,502,475,699098531,9685,0 +3178,%230090+Wycz%C3%B3%C5%82ki,474,552,9272054,10027,0 +3179,Monetki,479,416,699098531,10303,0 +3180,%2AINTERTWINED%2A,478,542,698704189,9711,0 +3181,KIELBA+062,462,581,699342219,10479,0 +3182,001,464,576,848886870,10495,0 +3183,Fajna007,467,569,8539216,1727,0 +3184,0092qqqqqqqqqqqqqqqqqqqqqqqqqqq,455,437,3909522,9503,0 +3185,2.+Bison%2A%2A,497,544,849087855,10157,0 +3186,Osada,499,442,699098531,10297,0 +3187,Dum+Spiro+Spero,493,554,848896948,9981,0 +3188,.%3A076%3A.+Takmahal,526,442,848934935,6812,0 +3189,055+%7C,547,502,8000875,10160,0 +3190,NOT%3F,426,520,9236866,10060,0 +3191,038.+A-RE-SE-EY,548,500,848967710,10316,0 +3192,Yeet,530,510,848908144,1170,0 +3193,030,469,523,2585846,7090,0 +3194,100,529,512,699351301,9406,0 +3195,Zadupie,493,568,699698253,10856,0 +3196,Cast+Away+016,447,479,698290577,3668,0 +3197,005.+ALFI,492,571,8539216,1821,0 +3198,%230014+Oscylator,498,560,9272054,10000,0 +3199,yogi,514,535,2808172,10019,0 +3200,167+Sao+Paulo,480,475,1497168,9761,0 +3201,Wioska+0005,407,514,1804724,10188,0 +3202,076.+%7CXD%7C,494,511,848967710,10252,0 +3203,Wioska,378,520,849084005,10178,0 +3204,Oponka,440,564,699443920,9761,0 +3205,Pobozowisko,420,592,699513260,10971,0 +3206,092+San+Bernardino,472,459,1497168,9761,0 +3207,Horyzont+zdarze%C5%84,520,549,7581876,9835,0 +3208,Horyzont+zdarze%C5%84,521,546,7581876,10019,0 +3209,0062+%7E21%7E,440,437,3909522,7139,0 +3210,-+113+-,544,578,849018239,9706,0 +3211,Osada,489,437,699098531,9887,0 +3212,-+061+-,543,579,849018239,10000,0 +3213,Oczko+w+g%C5%82owie,504,525,699785935,9835,0 +3214,035+Memphis,438,436,9291984,10479,0 +3215,Szlachcic,496,487,699098531,10311,0 +3216,034+Jacksonville,437,440,9291984,10495,0 +3217,EREGION+f,539,466,8155296,10324,2 +3218,003,560,482,849070464,8969,0 +3219,140+Zacatecas,473,489,1497168,9761,2 +3220,Szlachcic,563,475,698867446,9459,0 +3221,Wioska+523,557,468,477415,10495,0 +3222,Szlachcic+061,545,531,758104,9338,7 +3223,0071,565,487,698416970,10019,0 +3224,7.62+mm,494,439,699777234,10019,0 +3225,ChceszPokojuSzykujSi%C4%99DoWojny,468,508,699333701,11896,9 +3226,003,549,406,699761749,10495,0 +3227,xxx,495,440,698239813,10495,0 +3228,113+Prince+Rupert,477,487,1497168,9761,0 +3229,Osada,488,438,699098531,10306,0 +3230,Pf+Konfederacja+%2B,474,496,848915730,10068,0 +3231,Stage+group+B,440,539,698971484,6141,0 +3232,A%23054%23,415,474,698807570,10692,0 +3233,XnX-01,439,541,698971484,7848,0 +3234,120.,488,490,8788366,10158,0 +3235,K44+027,413,496,698290577,4447,0 +3236,Pf+Konfederacja,485,497,848915730,9938,0 +3237,Fajna+022,446,549,698290577,2111,0 +3238,CALL+1040,550,542,699784536,10068,0 +3239,Winter+is+coming,441,548,698971484,5848,0 +3240,CALL+945,546,557,699784536,10311,0 +3241,R%C4%99cznik+do+zmiany,393,440,699697558,10160,0 +3242,A024,487,416,699299123,10495,0 +3243,Kentin+ufam+Tobie,389,445,699783765,10000,0 +3244,%5B071%5D+Sayhello,548,501,848985692,10495,0 +3245,0097,459,438,3909522,10083,0 +3246,%2AINTERTWINED%2A,477,561,698704189,9711,0 +3247,3xxxxxxxxxxxx,462,429,9291984,10236,0 +3248,Fajna003,452,556,698971484,7241,0 +3249,Shot+Down,501,520,699785935,10495,0 +3250,KONFA+TO+MARKA%2C+NARKA,420,465,698152377,10303,0 +3251,%230005+G%C5%82%C4%99biej,501,559,9272054,10011,0 +3253,013W+Osada,562,511,8323711,10003,7 +3254,004+Asgard,603,566,699272880,9598,0 +3255,Wioska+barbarzy%C5%84ska,432,510,698971484,10008,0 +3256,003+Heviz,604,562,699272880,10161,0 +3257,7.62+mm,504,441,699777234,10019,0 +3258,.%3A131%3A.+Niangmen,516,418,848934935,9899,5 +3259,Suppi,441,529,699856962,10316,0 +3260,Nostra,458,571,699443920,9761,0 +3261,Suppi,442,527,699856962,9744,0 +3262,KIELBA+067,471,578,699342219,10495,0 +3263,Otim,433,557,699443920,3143,0 +3265,066.,498,486,8788366,10252,0 +3266,Jaaak%21+Kung+fu+panda+%28%3B,484,510,699785935,8403,6 +3267,Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,465,541,698971484,10008,0 +3268,Sparta_54,481,585,2585846,9638,0 +3269,081.+xDDDDDDDDDD,476,496,8788366,10252,6 +3270,002.+Taterka,427,549,699856962,4299,0 +3271,.achim.,515,411,6936607,10311,0 +3272,Wioska+4,426,551,8779575,3300,0 +3273,lady+anima,512,582,699703642,10471,0 +3274,Brat447,444,487,699262350,7717,0 +3275,022.+Wodnik,507,584,699703642,6517,0 +3276,To+nie+nasz+klimat,504,519,699785935,10495,0 +3277,C010,520,459,699299123,10036,0 +3278,-+054+-,541,572,849018239,10000,0 +3279,028+Texarkana,435,477,1497168,9761,5 +3280,CCC,527,455,849091084,8946,0 +3281,KONFA+TO+MARKA%2C+NARKA,428,458,698152377,10294,0 +3282,Napewno+to+nie+jest+off,495,413,848912265,10495,4 +3283,Joms+031,521,420,699756210,9835,0 +3284,Osada,501,437,699098531,10292,0 +3285,.achim.,526,411,6936607,10311,0 +3286,Szlachcic+%21%21%21,485,473,699098531,10295,0 +3287,.achim.,533,420,6936607,10311,0 +3288,023,548,531,8191129,9717,0 +3290,026,539,454,699250676,6291,0 +3291,B035,489,458,699299123,10495,0 +3292,Monetki,482,412,699098531,10355,0 +3293,.002.,500,376,698489071,10393,0 +3294,Feed+me+more+005,499,378,699756210,10325,0 +3295,Lord+Arsey+KING,522,502,848956513,9019,0 +3296,006,414,509,699851427,10042,8 +3297,004+%7C+Lord+Axen+-+rumbling%2C,556,559,8000875,9968,0 +3298,%230041+Zamczysko,495,556,9272054,10000,0 +3299,Dum+Spiro+Spero,494,557,848896948,10064,5 +3300,047+%7C,554,565,8000875,9976,0 +3301,016,529,434,699788305,9386,0 +3302,Minas+Anor+021,578,460,699379895,10495,0 +3303,K45+-+005,559,466,6510480,10186,0 +3304,%5B144%5D+North,576,465,848985692,10311,0 +3305,Malta%C5%84skie+Tango%21,495,508,699785935,9835,0 +3307,014+Fiona,447,507,698290577,9917,0 +3308,Joms+023,522,416,699756210,9733,7 +3310,.achim.,534,420,6936607,10311,0 +3311,Zero+Stresu,445,535,698971484,10008,0 +3312,F037,489,522,699189792,9718,0 +3313,szlachcic,442,540,698971484,3445,0 +3314,7.62+mm,489,423,699777234,10019,0 +3315,Winter+is+coming,440,544,698971484,1450,0 +3316,Mzm32,545,530,7142659,10362,0 +3317,%5B057%5D+Jota,532,505,848985692,10161,0 +3318,014+Espana,534,499,849031818,5410,0 +3319,B014,562,487,8138506,10019,0 +3320,Mniejsze+z%C5%82o+0065,416,504,699794765,7186,0 +3321,B015,560,492,8138506,10019,0 +3322,-+100+-,545,578,849018239,10000,0 +3323,...Just+like+that,467,476,699723284,5802,0 +3324,Os+Konfederacja+%2B,479,429,848915730,9960,4 +3325,%3F%2B44+76+Wierre+Effroy,466,478,698361257,9840,0 +3326,019+Spokane,438,474,1497168,9761,0 +3327,B006,486,447,699299123,10495,0 +3328,Gattacka,580,517,699298370,10560,1 +3329,%2B44+64+Villeurbanne+Gratte+Ciel,441,466,698361257,9695,0 +3330,12%2A,565,545,699664910,6980,0 +3331,ChceszPokojuSzykujSi%C4%99DoWojny,469,510,699333701,9630,0 +3332,ChceszPokojuSzykujSi%C4%99DoWojny,468,513,699333701,4472,0 +3333,-+071+-,543,578,849018239,10000,0 +3334,.achim.,533,451,6936607,10925,0 +3335,F009,496,546,699189792,9750,0 +3336,014.ZdM,389,560,699382126,10479,0 +3337,Amator,510,543,848915531,10971,0 +3338,.achim.,532,453,6936607,10068,0 +3339,015+DoNotCry.ZdM,392,562,699382126,8851,0 +3340,GRUBASKI,536,454,8155296,10093,0 +3341,Lord+Arsey+KING,582,522,848956513,10285,0 +3342,Gotham,545,443,848986287,9792,0 +3343,101.,502,484,8788366,8388,0 +3344,090+MEHEHE+2,491,588,6116940,10160,0 +3345,031,489,593,8369778,8075,0 +3346,BETI+007,460,570,8539216,2555,0 +3347,Piek%C5%82o+to+inni,521,483,848956765,8405,0 +3348,Fajna+040,461,566,8539216,1765,0 +3349,0030,463,468,848913037,9952,0 +3350,%7E%7ELataj%C4%85cyHolender%7E%7E,579,498,9174887,10636,0 +3351,SsSs,451,503,1536625,9914,0 +3352,yogi,516,547,2808172,10019,0 +3353,0063+L,452,430,3909522,5418,0 +3354,00633,443,430,3909522,6013,0 +3355,Sparta_45,481,574,2585846,9638,0 +3356,JK1,560,450,699368887,9566,0 +3357,131+Oaxaca,483,485,1497168,9761,0 +3358,184,562,444,849064752,10311,0 +3359,9.8+Sherwood,551,442,8444356,10471,0 +3360,Sparta_27,486,586,2585846,9638,0 +3361,A08,549,456,699368887,10058,0 +3362,Village,517,583,849094067,12154,0 +3363,JM5,563,459,699368887,8202,2 +3364,KONFA+TO+MARKA%2C+NARKA,450,455,698152377,10311,0 +3365,Szlachcic,494,460,699098531,9899,0 +3366,187,570,402,849064752,10311,0 +3367,P+Konfederacja,460,447,848915730,9030,0 +3368,0597,465,544,698659980,7599,0 +3369,0106,464,546,698971484,8036,0 +3370,%7E%7ELataj%C4%85cyHolender%7E%7E,554,522,9174887,10779,0 +3371,026,422,517,699851427,10129,0 +3372,Szlachcic+016,552,526,758104,8024,0 +3373,K44+019,433,494,698290577,7797,0 +3374,%7E%7ELataj%C4%85cyHolender%7E%7E,554,521,9174887,10160,0 +3375,%7E035.,489,565,7139820,10495,0 +3376,Wioska+Barbarzy%C5%84ska,543,493,698867483,10083,0 +3377,%2B44+61+Samer,418,465,698361257,9844,0 +3378,Wioska+Barbarzy%C5%84ska,546,484,698867483,8450,0 +3379,005,516,543,7581876,9835,0 +3380,0062+%7E2%7E,441,438,3909522,10083,0 +3381,Szlachcic,577,493,699759128,10237,0 +3382,Suppi,438,445,699856962,9708,0 +3383,xxx,503,441,698239813,10495,0 +3384,P.001,537,564,873575,10170,0 +3385,Osada,494,446,699098531,10358,0 +3386,P.009,535,562,873575,10157,0 +3387,Lord+Arsey+KING,543,520,848956513,6801,0 +3388,Wioska+barbarzy%C5%84ska,446,452,699660539,9830,0 +3389,CALL+1036,553,542,699784536,10311,0 +3390,Wioska+barbarzy%C5%84ska,448,446,9291984,10495,0 +3391,F035,491,535,699189792,9674,0 +3392,084,414,523,699851427,10129,0 +3393,x17,432,440,698884287,10285,8 +3394,072,417,514,699851427,10129,0 +3395,Wioska+barbarzy%C5%84ska,447,527,698971484,10008,0 +3396,Atena,461,557,698704189,8684,0 +3397,Piek%C5%82o+to+inni,521,477,848956765,9461,5 +3398,%2AINTERTWINED%2A,460,559,698704189,6689,0 +3399,NOT%3F,459,555,9236866,7794,0 +3400,Selonari,460,561,698704189,9236,0 +3401,Fajna+013,446,564,699868002,9727,0 +3402,043.+ALFI,462,564,8539216,1190,0 +3403,Fajna+026,445,554,699868002,7313,0 +3405,Wioska+barbarzy%C5%84ska,537,508,848967710,10252,0 +3406,jack+herrer,402,568,9167250,9357,0 +3407,Lord+Arsey+KING,543,530,848956513,10285,0 +3408,C+Zach+0011+Koz%C5%82%C3%B3w,407,576,849084740,10030,0 +3409,%7C063%7COoo,582,524,699664910,8548,0 +3410,055+Lanai+City,456,465,1497168,9761,0 +3411,Osada,495,451,699098531,9629,0 +3412,P+Konfederacja,459,457,848915730,8480,0 +3413,024,533,429,699788305,9352,0 +3414,017+M+Diler+to+marka,591,461,698829590,10495,0 +3415,x18,423,449,698884287,10285,0 +3416,Szlachcic,575,499,699759128,10237,0 +3417,-+066+-,537,570,849018239,10000,0 +3418,Winter+is+coming,502,581,699364813,9922,0 +3419,Tretogor,498,389,699433558,10495,0 +3420,%2B44+83+Lyon+La+Guillotiere,435,482,698361257,9802,0 +3421,A039,502,426,699299123,10204,0 +3422,A029,495,418,699299123,10495,0 +3423,033,551,532,699316421,9744,0 +3424,KIELBA+096,464,589,699342219,10495,0 +3425,Pf+Konfederacja,487,503,848915730,10030,0 +3426,KIELBA+039,456,589,699342219,10495,0 +3427,Wioska+barbarzy%C5%84ska,435,502,698971484,10008,0 +3428,%C5%9Amieszki,531,618,3454753,9095,0 +3429,Joms+033,535,417,699756210,10273,3 +3430,Kamyk,592,577,1715091,9835,0 +3431,K55,543,515,848967710,10252,0 +3432,064+Hiszpania,575,462,7092442,10495,0 +3433,PRO8L3M,454,499,7491093,9835,0 +3434,%21Wioska+500,576,459,477415,10495,0 +3435,ChceszPokojuSzykujSi%C4%99DoWojny,468,510,699333701,8042,0 +3436,HiA,431,552,8779575,2614,0 +3437,FF004,466,517,699189792,9835,0 +3438,Front_18,457,527,2585846,9218,0 +3439,Osada,490,439,699098531,10294,0 +3440,-+041+-,534,572,849018239,10000,0 +3441,B003,487,446,699299123,10023,0 +3442,%21Wioska+414,556,507,477415,10495,0 +3443,009991,470,433,3909522,10147,0 +3444,099+Douglas,479,464,1497168,9761,0 +3445,x10,563,477,8459255,10400,1 +3446,Monetki,475,429,699098531,9618,0 +3447,A01+Oslo,578,499,699272880,10355,0 +3448,%5B096%5D,562,540,8000875,9805,0 +3449,10+Albania,580,494,8925695,8914,0 +3450,011,553,487,849070464,10469,0 +3451,004+Chicago,427,417,9291984,10478,0 +3452,Thunderstruck,499,520,699785935,9835,0 +3453,%7E%7ELataj%C4%85cyHolender%7E%7E,576,498,9174887,10083,9 +3454,Suppi,428,423,699856962,9888,0 +3455,Winter+is+coming,437,531,699856962,6771,0 +3456,0002+Fc+Gold+Paw,487,470,699098531,9835,0 +3457,0027+K54+and987+OZDR.,499,560,3613413,9861,7 +3458,173+Buenos+Aires,483,480,1497168,9835,0 +3459,040.,574,459,849094609,9461,0 +3460,yogi,485,548,2808172,10019,0 +3461,C+002.,450,567,849028088,10301,0 +3462,Aleartis,486,547,698704189,9711,0 +3463,%7E%7ELataj%C4%85cyHolender%7E%7E,563,497,9174887,10141,0 +3464,%7E%7ELataj%C4%85cyHolender%7E%7E,563,504,9174887,8555,0 +3465,077+Orzech+w%C5%82oski,551,475,7092442,10495,4 +3466,Szlachcic,568,493,699759128,10237,0 +3467,10005,531,564,848915531,10971,0 +3468,Dum+Spiro+Spero,490,553,848896948,9976,0 +3469,7.62+mm,489,422,699777234,10019,0 +3470,Valhalla,502,508,699861004,9835,5 +3471,Dum+Spiro+Spero,489,557,848896948,9995,0 +3472,022,573,547,699316421,9744,0 +3473,Brat447,445,491,699262350,10479,0 +3474,0647,477,547,698659980,10362,0 +3475,Piek%C5%82o+to+inni,521,436,848956765,10160,0 +3476,keepo,485,526,848967710,9456,0 +3477,...Just+like+that,454,490,699723284,5366,0 +3478,Szlachcic,491,463,699098531,10297,0 +3479,0084,537,533,699432672,9366,0 +3481,%5B148%5D+North,576,469,848985692,10294,0 +3482,Lord+Arsey+KING,543,527,848956513,10285,0 +3483,Suppi,436,518,699856962,9556,0 +3484,Wioska+barbarzy%C5%84ska,432,500,698971484,10158,0 +3485,0048,456,469,848913037,9272,0 +3486,Joms+026,526,421,699756210,10495,4 +3487,B014,481,444,699299123,10172,0 +3488,Wioska+barbarzy%C5%84ska,431,501,698290577,5961,0 +3489,%5B227%5D+WEST,605,451,848985692,10068,0 +3490,102+Toronto,475,483,1497168,9364,0 +3491,K44+028,415,491,698290577,10179,0 +3492,081+Jackson,468,473,1497168,9761,0 +3493,005+Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,464,543,698971484,10008,0 +3494,P.028,535,567,873575,9929,0 +3495,05+Portugalia,581,487,8925695,8162,0 +3496,Fajna+037,455,570,8539216,991,0 +3497,Szlachcic+%21%21%21,524,487,699098531,9835,0 +3498,4.Antykwariat,504,450,8649412,6710,0 +3499,0331,448,608,698659980,10495,0 +3500,Pf+Konfederacja,491,506,848915730,9924,0 +3501,013,527,431,699788305,10147,0 +3502,095.,502,481,8788366,10252,0 +3503,021,530,434,699788305,8969,0 +3504,037.+Aries,500,578,699703642,9513,0 +3505,K45+-+011,570,467,6510480,9790,0 +3506,%23020+A,463,614,33900,10083,0 +3507,xxx,511,447,698239813,10495,0 +3508,Monetki,478,414,699098531,10300,0 +3509,Szlachcic,487,464,699098531,10294,0 +3510,%230016+Kleszcz,491,563,9272054,10019,0 +3511,Os+Konfederacja,478,440,848915730,9822,0 +3512,NOT%3F,433,524,9236866,10042,0 +3513,205+Montego+Bay,466,462,1497168,9761,0 +3514,Garfii,434,457,698884287,10285,0 +3515,C045,534,458,699299123,3592,0 +3516,F022,500,532,699189792,9750,0 +3517,105.+DefinitelyRlyKoniecKonfy%3F%3F%3F,451,492,8788366,10252,0 +3518,%2AAteny_38,471,522,2585846,2240,0 +3519,14%2A,566,544,699664910,7233,0 +3520,029+%7C,564,562,8000875,10495,0 +3521,032.+A-RE-SE-EY,570,533,848967710,10252,0 +3522,Yogi,539,530,2808172,9726,0 +3524,Osada,499,448,699098531,10295,0 +3525,Wioska+pawela76,536,433,848986287,10495,0 +3526,2+c3risa,443,566,8779575,10237,0 +3527,Ogr%C3%B3d+Warzywny,448,559,7249451,8594,0 +3528,7.62+mm,487,429,699777234,10019,4 +3529,A058,500,424,699299123,10444,0 +3530,ladyanima,511,574,699703642,9151,0 +3531,0.St.+Louis,521,588,698215322,9970,0 +3532,%2AAteny_02,474,537,2585846,9638,0 +3533,NOT%3F,459,540,9236866,4689,0 +3534,Szlachcic,501,470,699098531,9334,0 +3535,%2A005%2A,608,508,698670524,8552,0 +3536,%23Raichu,565,464,699795378,10362,0 +3537,Os+Konfederacja,484,453,848915730,9915,0 +3538,Weso%C5%82ych+%C5%9Awi%C4%85t,581,481,699298370,9761,0 +3539,%21Wioska+504,575,457,477415,10495,0 +3540,Szlachcic+039,568,525,758104,8024,0 +3541,HibaST,427,552,8779575,3352,0 +3542,.achim.,529,454,6936607,6447,0 +3543,Village,518,584,849094067,12154,0 +3544,Fajna+069,453,564,8539216,5181,0 +3545,.achim.,529,395,6936607,10311,0 +3546,Wioska+12,527,495,699385139,5681,0 +3547,Wioska+leito2,562,506,466800,3854,0 +3548,Oster,443,556,699443920,9738,0 +3549,Lord+Arsey+KING,516,490,848956513,10285,9 +3550,016+Rammstein,562,463,849031818,7219,0 +3551,82k%24+Grvvyq,540,529,699676005,10495,0 +3552,Wioska+barbarzy%C5%84ska,598,568,8742874,9740,0 +3553,071.+ALFI,477,559,8539216,781,0 +3554,NOT%3F,430,544,9236866,6564,0 +3555,Os+Konfederacja,477,453,848915730,9853,0 +3556,keepo,476,513,848967710,4115,0 +3557,%28033%29,419,534,699846892,9369,0 +3558,Fajna+027,446,556,698971484,4610,0 +3559,012+New+Bark+Town,590,501,699441366,11109,0 +3560,Ogr%C3%B3d+Warzywny,454,562,7249451,7458,0 +3561,086+Huntsville,480,455,1497168,9761,0 +3562,B013,559,486,8138506,10495,0 +3563,193+Guayaquil,464,463,1497168,9761,0 +3564,C+007+Wieliczka,418,574,849084740,7422,0 +3565,Amator,523,576,848915531,4952,0 +3566,kathare,542,544,873575,10503,0 +3567,024.+ALFI,477,568,8539216,1418,0 +3568,Wioska+Ania12345,471,582,699364813,9662,0 +3569,0123,463,548,698659980,10160,0 +3570,222+Hobart,531,446,1497168,9761,0 +3571,slow,535,481,848967710,10252,0 +3572,Summer+Slam+%7E+010,520,547,7581876,9835,0 +3573,Sarajewo,424,452,698884287,10285,0 +3574,-+032+-,537,578,849018239,10000,0 +3575,003,551,402,1424656,9746,0 +3576,Jaaa,568,539,698635863,10487,0 +3577,Kasyno,444,516,7249451,9902,0 +3579,Wioska+Barbarzy%C5%84ska,547,476,698867483,10019,0 +3580,%C5%9Amieszkii,513,564,3454753,9175,0 +3581,04%2Akit+pszczeli,572,545,699664910,7280,0 +3582,125.,511,483,8788366,11130,0 +3583,.achim.,540,422,6936607,8013,0 +3584,Wioska,545,520,712216,2203,0 +3585,Winter+is+coming,504,571,699364813,10311,0 +3586,0054+K55+and987+OZDR,506,562,3613413,10636,0 +3587,B020,488,451,699299123,10495,0 +3588,.%3A008%3A.+Magia,515,408,8649412,9761,0 +3589,005.+Marzyciel+Shrek,463,494,698290577,6357,0 +3590,002+Wioska+fan+zmijki,571,553,699316421,9744,0 +3591,R%C4%99cznik+do+zmiany,412,493,699697558,10845,0 +3592,RHUN,533,473,8155296,9805,0 +3593,.%3A032%3A.+Oliwa,512,412,8649412,9753,0 +3594,Suppi,436,447,699856962,9550,0 +3595,KIELBA+059,461,581,699342219,10247,0 +3596,BETI+008,457,566,8539216,1364,0 +3597,K55,540,511,848967710,9147,0 +3599,ladyanima,512,572,699703642,9064,0 +3600,Front_06,461,522,2585846,3818,0 +3601,Sparta_70,467,582,2585846,9638,0 +3602,082+Vancouver,453,453,1497168,9761,0 +3603,026.+A-RE-SE-EY,575,535,848967710,10252,0 +3604,I+Wioska+z+Czarodziejem,441,476,698349125,5662,0 +3605,Szlachcic,568,487,698867446,9965,0 +3606,3+KR%C3%93LESTWO,537,460,8155296,10590,0 +3607,%7E055.,490,573,7139820,10495,0 +3608,A028,492,410,699299123,10495,0 +3609,%28013%29,421,526,699846892,10140,0 +3610,118+Mississauga,476,487,1497168,9761,0 +3611,ADEN,559,440,698588535,10072,0 +3612,KIELBA+132,454,570,699342219,10223,0 +3613,Brat447,442,495,699262350,4951,0 +3614,145+Tuxla+Gutierezz,464,485,1497168,9761,7 +3615,K44+014,433,487,698290577,7674,0 +3616,150+Gwatemala,457,456,1497168,9761,0 +3617,ChceszPokojuSzykujSi%C4%99DoWojny,459,510,699333701,9563,0 +3618,KONFA+TO+MARKA%2C+NARKA,449,458,698152377,10311,0 +3619,%C5%9Amieszkii,518,560,3454753,9046,0 +3620,Wioska+barbarzy%C5%84ska,445,452,699660539,10103,0 +3621,Wioska+barbarzy%C5%84ska,465,433,9291984,9924,0 +3622,Front_16,458,528,2585846,9638,0 +3623,091+San+Diego,473,458,1497168,9835,0 +3624,A040,505,431,699299123,10495,0 +3625,Sparta_50,479,579,2585846,9638,0 +3626,Wioska+barbarzy%C5%84ska,540,501,848967710,10252,0 +3627,.achim.,527,415,6936607,10311,0 +3628,A057,503,422,699299123,10495,0 +3629,0063+b3,453,432,3909522,10075,0 +3630,NWO,388,516,849030226,10952,0 +3631,Szlachcic+%21%21%21,498,489,699098531,10311,0 +3632,Suppi,445,447,699856962,9596,0 +3634,Lord+Arsey+KING,526,489,848956513,10285,3 +3635,Szlachcic,503,468,699098531,9701,0 +3636,Pf+Konfederacja+%2B,486,491,848915730,9309,0 +3637,Bagdad,479,377,8847546,9835,0 +3638,Osada,498,454,699098531,9629,0 +3639,%5B050%5D+Alfa+%2A%2A%2A,542,486,848985692,10495,0 +3640,007,434,549,699856962,2892,3 +3641,A047,498,420,699299123,9909,0 +3642,Kasyno,445,509,7249451,9902,0 +3643,006+Wizna,567,489,849031818,8526,0 +3644,%C5%9Amieszkii,515,561,3454753,9017,0 +3645,Bucksbarzy%C5%84sKamiiiru,425,513,848955783,10344,0 +3646,P.017Z,523,565,873575,10150,0 +3647,Stage+group+B+2,462,557,698704189,9084,8 +3648,Puzzle,506,508,699785935,12154,0 +3649,COUSINS,491,580,699364813,10401,0 +3650,030.+Bieda,504,587,699703642,8930,0 +3651,089+Colorado+Springs,477,456,1497168,9761,0 +3652,CALL+1080,525,543,699784536,10559,0 +3653,018,542,453,699250676,10766,0 +3654,PRO8L3M,435,487,7491093,9835,0 +3655,Wioska+barbarzy%C5%84ska,509,439,699658023,8971,0 +3656,slow,533,479,848967710,10316,0 +3657,JaamMwG+005,527,523,848987051,10218,0 +3658,BBB,549,427,1006847,6975,0 +3659,TROJA.13,457,577,8438707,4101,0 +3660,NOT%3F,426,534,9236866,10042,0 +3661,KONFA+TO+MARKA%2C+NARKA,450,472,698152377,10297,9 +3662,033+Flagstaff,450,461,1497168,9761,0 +3663,037,428,488,699510259,9747,0 +3664,Zero+Stresu,446,535,698971484,10008,0 +3665,006+Fort+Worth,440,475,1497168,9761,0 +3666,%2AINTERTWINED%2A,475,564,698704189,9711,0 +3667,kto+ananasowy+pod+wod%C4%85+ma+dom,566,506,699628084,9797,0 +3668,Szlachcic,498,481,699098531,9888,0 +3669,%23017+S,472,606,33900,10252,0 +3670,023,464,525,2585846,3322,0 +3671,%28022%29,424,544,699846892,10160,0 +3672,018,572,549,699316421,9744,0 +3673,006,513,532,848915531,10365,0 +3674,Horyzont+zdarze%C5%84,526,543,7581876,9835,0 +3675,Arabska+noc,507,519,699785935,10068,0 +3676,046,447,534,698971484,9843,0 +3677,Gravity,422,458,698962117,9491,0 +3678,CALL+1014,520,609,699784536,10311,0 +3679,090.+ALFI,475,570,8539216,838,0 +3680,R%C4%99cznik+do+zmiany,412,490,699697558,10495,0 +3682,022,530,574,699189792,9966,0 +3683,Horyzont+zdarze%C5%84,524,541,7581876,10019,0 +3684,091,413,525,699851427,10129,0 +3685,%7E%7ELataj%C4%85cyHolender%7E%7E,560,501,9174887,10207,0 +3686,Lord+Arsey+KING,512,490,848956513,10285,0 +3687,Village,516,579,849094067,12154,5 +3688,057.+ALFI,474,560,8539216,1240,0 +3689,Wioska+barbarzy%C5%84ska,536,542,7581876,6952,0 +3690,.achim.,516,412,6936607,10311,0 +3691,020.+P%C3%B3lnica,494,585,699703642,9402,0 +3692,0126,463,553,698659980,5411,0 +3693,002+%7C,563,558,8000875,9962,8 +3694,Wioska+barbarzy%C5%84ska,533,499,848967710,10252,0 +3695,NWO,383,523,849030226,10957,0 +3696,Suppi,434,451,699856962,9554,0 +3697,ADEN,557,430,698588535,10072,0 +3698,%7C012%7C,555,571,873575,10439,0 +3699,013,418,517,699851427,10129,0 +3700,Osada,495,437,699098531,10294,0 +3701,...,477,532,699781762,10394,0 +3702,Pf+Konfederacja,493,494,848915730,9818,0 +3703,%230114+Krzywowierzba-Kolonia,489,569,9272054,9189,0 +3704,K44+018,434,493,698290577,8894,0 +3705,Brat447,459,506,699262350,5623,0 +3706,Bramborowa+dolina+004,536,487,698599365,10019,0 +3707,C039,536,457,699299123,10728,0 +3708,ADEN,563,440,698588535,9978,0 +3709,F087,488,534,699189792,10362,0 +3710,026+%7C,558,549,8000875,10495,0 +3711,7.62+mm,505,442,699777234,10019,0 +3712,A0303,376,502,8841266,10362,0 +3713,Wioska+409,559,524,477415,10495,0 +3714,.achim.,560,437,6936607,10311,2 +3715,Winter+is+coming,439,552,699856962,2288,0 +3716,021+%7C,564,560,8000875,10049,0 +3717,zx+deflektor+y,440,547,698971484,2018,0 +3718,PRO8L3M,453,493,7491093,10452,0 +3719,Suppi,441,527,699856962,9570,0 +3720,SsSs,464,499,1536625,9451,0 +3721,Piek%C5%82o+to+inni,517,422,848956765,10160,0 +3722,%3F%2B44+86+Bollezeele,463,487,698361257,9669,0 +3723,Szlachcic,492,481,699098531,10291,0 +3724,Z02+Saqqaq,562,514,699272880,10052,0 +3725,Monetki,479,415,699098531,10297,0 +3726,lady,498,577,699703642,10471,0 +3727,Wioska+barbarzy%C5%84ska,449,527,698971484,10008,0 +3728,021,421,512,699851427,10129,0 +3729,xxx,484,430,698239813,10495,0 +3730,PRO8L3M,463,497,7491093,10311,8 +3731,Fajna+069,455,565,8539216,6516,0 +3732,X+D02,547,459,3909522,10282,0 +3733,KONFA+TO+MARKA%2C+NARKA,435,463,698152377,10290,0 +3734,036+Reno,442,472,1497168,9761,0 +3735,060+%7C,548,510,8000875,9976,0 +3736,Tesa+11,531,476,698845189,6604,0 +3737,.%3A132%3A.+Niangmen,516,416,848934935,9899,0 +3738,003,490,525,849092723,9275,0 +3739,029,554,490,849031818,9906,0 +3740,Prywatny+bal,507,507,699785935,7334,0 +3741,Jaaa,573,566,698635863,10495,0 +3742,JF4,554,457,699368887,10971,0 +3743,Ithilien,571,518,849091897,9393,0 +3744,EEE+Abadon,565,477,699347951,9384,0 +3745,%C5%9Amieszkii,514,564,3454753,9256,0 +3746,PRO8L3M,467,499,7491093,9370,0 +3747,.%3A077%3A.+Takmahal,525,443,848934935,5934,0 +3748,SsSs,424,493,1536625,10144,8 +3749,Myk+i+do+kieszonki,378,512,9319058,9799,0 +3750,079,412,524,699851427,10086,0 +3751,Suppi,438,449,699856962,9562,7 +3752,7.62+mm,497,426,699777234,10019,0 +3753,Szlachcic,489,477,699098531,10290,0 +3754,Marienburg+3,528,483,699355601,9148,0 +3755,Jaaa,574,538,698635863,10476,0 +3756,Wioska+Mitze,522,431,2485646,3139,0 +3757,89k%24+Grvvyq,546,537,699676005,10034,0 +3758,008,414,515,699851427,10129,0 +3759,-%5B018%5D-+Distaghil+Sar,554,489,849092827,6791,0 +3760,Mzm28.,553,520,7142659,10362,0 +3761,119+Churchill,479,495,1497168,9761,0 +3762,-3-,589,484,699347951,10518,0 +3763,%2B44+63+Dardilly,434,466,698361257,9844,0 +3764,Joms+003,525,421,699756210,10140,0 +3765,%2B44+73+Lyon+La+Duchere,433,473,698361257,9843,0 +3766,Wioska+kiss-my-axe,440,549,698971484,2785,0 +3767,08+%7C+Tej+nie+atakuj,539,436,849002091,9582,0 +3768,Ta%C5%84cz%C4%85c+w+ciemno%C5%9Bciach,502,524,699785935,9899,0 +3769,134+Mexico+City,478,481,1497168,9761,0 +3770,Joms+009,518,420,699756210,10273,0 +3771,K44+023,428,497,698290577,9050,0 +3772,Wioska+barbarzy%C5%84ska,534,496,848967710,10252,0 +3773,Piek%C5%82o+to+inni,523,437,848956765,10160,0 +3774,0063+b15,454,432,3909522,10043,0 +3775,xxx,513,458,698239813,9879,0 +3776,%2B44+63+Caluire+et+Cuire,431,466,698361257,10002,0 +3777,%230086+Choty%C5%82%C3%B3w,475,554,9272054,9899,0 +3778,ADEN,563,442,698588535,10173,0 +3779,%2AINTERTWINED%2A,475,562,698704189,8914,0 +3780,%5B124%5D,564,535,8000875,9760,0 +3781,kathare,492,566,873575,10824,0 +3782,Gratuluje+m%C3%B3zgu,443,536,699364813,10495,0 +3783,009.+A-RE-SE-EY,579,526,848967710,10252,3 +3784,kathare,492,569,873575,10401,0 +3785,Knowhere,391,506,699723284,8007,0 +3786,PRO8L3M,422,495,7491093,2173,0 +3787,139,563,421,849064752,10311,0 +3788,CALL+997,544,539,699784536,9971,0 +3789,%2AAteny_16,470,525,2585846,2987,0 +3790,197+La+Paz,469,467,1497168,9390,0 +3791,011,494,582,8369778,7076,0 +3792,062.,497,488,8788366,10252,0 +3793,085+Nerkowiec,557,473,7092442,10252,0 +3794,Bucksbarzy%C5%84sKamiiiru,429,511,848955783,10971,0 +3795,115+Niagara+Falls,480,492,1497168,9761,0 +3796,%230050+Amarena,495,562,9272054,10235,0 +3797,%230010+Muflon,490,561,9272054,10019,0 +3798,Szlachcic+007,565,531,758104,8024,0 +3799,%5B064%5D+Omikron,540,493,848985692,9968,9 +3800,Kasyno,450,510,7249451,10838,0 +3801,-020-,456,421,9291984,10479,0 +3802,SsSs,464,507,1536625,4313,0 +3803,Cast+Away+010,452,483,698290577,8500,0 +3804,yogi,539,542,2808172,10019,0 +3805,Osada,503,455,699098531,8448,0 +3806,Szlachcic,584,490,699759128,10237,6 +3807,%7C025%7C,556,569,873575,10303,0 +3808,005+Fiona,446,505,698290577,7785,0 +3809,NOT%3F,434,522,9236866,10042,0 +3810,Szlachcic,467,420,698388578,10237,0 +3811,Szlachcic+%21%21%21,505,471,699098531,8915,0 +3812,Wioska+Barbarzy%C5%84ska,545,477,698867483,9060,0 +3813,A.017,606,549,9188016,7456,0 +3814,Fajna+044,458,556,3613413,6193,0 +3815,-021-,458,423,9291984,10479,0 +3816,JaamMwG+013,522,521,848987051,9489,0 +3817,20013,515,538,848915531,5931,0 +3818,Piek%C5%82o+to+inni,511,470,848956765,10019,0 +3819,155+Esquipulas,454,469,1497168,9966,0 +3820,Wioska+456,582,552,477415,10495,0 +3821,KIELBA+130,443,570,699342219,10576,0 +3822,Chatka+Hagrida,455,500,698290577,10237,0 +3823,ChceszPokojuSzykujSi%C4%99DoWojny,454,512,699333701,8259,0 +3824,Suppi,440,520,699856962,9554,0 +3825,005,461,578,848886870,10495,0 +3826,%C5%9Amieszkiii,496,566,3454753,9047,0 +3827,B066,473,471,699299123,10495,2 +3828,%230031,547,616,1536231,10495,0 +3829,%5B099%5D+KONIEC,538,488,848985692,8438,0 +3830,20024,502,549,848915531,8280,0 +3831,-046-,461,424,9291984,10371,0 +3832,.+Jameson,423,548,8779575,9245,0 +3833,Monetki,483,423,699098531,10170,0 +3834,.%3A019%3A.+Chilout,508,418,848934935,4954,0 +3835,097.+Wioska+Sarna,487,427,8788366,10252,0 +3836,Sparta_28,488,583,2585846,9638,0 +3837,Zasiedmiog%C3%B3rogr%C3%B3d,534,430,699433558,10040,0 +3838,7.62+mm,492,432,699777234,10019,0 +3839,Lord+Arsey+KING,581,587,848956513,10285,0 +3840,%5B113%5D+North13,575,472,848985692,10048,0 +3841,0009,619,525,6510480,10328,0 +3842,Yogi,524,574,2808172,10019,0 +3843,Ogr%C3%B3d+Warzywny,454,561,7249451,2863,0 +3844,Wioska+018,592,581,848971079,9761,0 +3845,%21Wioska+428,563,513,477415,10495,0 +3846,-022-,464,426,9291984,10479,0 +3847,032,583,471,699573053,10495,0 +3848,Szlachcic,484,476,699098531,10387,0 +3849,%5B191%5D,544,523,8000875,8498,0 +3850,Lord+Arsey+KING,517,525,848956513,10285,0 +3851,Warzywniak+004,447,544,698290577,3031,6 +3852,KONFA+TO+MARKA%2C+NARKA,451,461,698152377,10291,0 +3853,%21Wioska+429,564,518,477415,10495,0 +3854,012+Fiona,447,510,698290577,4974,0 +3855,.+Per%C5%82a,425,550,699856962,4106,0 +3856,Fajna+033,463,571,8539216,1834,0 +3857,Wioska+barbarzy%C5%84ska,519,505,848967710,8144,0 +3858,030,446,503,699510259,9761,0 +3859,KONFA+TO+MARKA%2C+NARKA,444,472,698152377,10643,0 +3860,015+Atlantic+City,444,470,1497168,9761,0 +3861,0100+pantera,465,446,3909522,10069,0 +3862,Oltar,440,559,699443920,3282,0 +3863,FAKE+OR+OFF,456,399,698231772,9842,0 +3864,Wioska+508,575,461,477415,10559,0 +3865,Gattacka,582,483,699298370,10019,0 +3866,042.+ALFI,467,572,8539216,1863,0 +3867,%5B180%5D,547,512,848985692,9516,0 +3868,039+-+pobite+gary,411,577,225023,10495,0 +3869,%5B144%5D,555,549,8000875,9554,0 +3871,Warzywniak+002,446,545,698290577,3857,0 +3872,0015,524,533,699432672,10495,0 +3873,016,420,511,699851427,10042,8 +3874,ADEN,564,442,698588535,10121,0 +3875,0594,476,545,698659980,9827,0 +3876,Konfederacja+8,460,382,848915730,10001,0 +3877,xxxx,497,429,698239813,10495,0 +3878,Baobab,385,491,699265922,9835,0 +3879,%3F%2B44+85+Lyon+Point+du+Jour,456,482,698361257,9860,0 +3880,9.4+Legancko,545,440,8444356,10059,0 +3881,Lord+Arsey+KING,517,500,848956513,10285,0 +3882,19.+Wioska+19,408,569,849091769,10019,0 +3883,Brat447,455,498,699262350,8327,0 +3884,STA%C5%81KA,451,533,699698253,4508,0 +3885,Fajna+089,456,565,8539216,2346,0 +3886,yogi,525,573,2808172,10019,0 +3887,KONFA+TO+MARKA%2C+NARKA,449,469,698152377,10306,0 +3888,Monetki,474,432,699098531,10295,0 +3889,C002,521,388,7758085,9963,0 +3890,KONFA+TO+MARKA%2C+NARKA,450,453,698152377,10311,0 +3891,045+%7C,561,548,8000875,10487,0 +3892,085+Saint+Louis,465,459,1497168,9761,8 +3893,Wioska+Barbarzy%C5%84ska,542,477,698867483,10019,0 +3894,Tranquillo,504,524,699785935,10032,0 +3895,Onest,442,554,699443920,8461,0 +3896,Pf+Konfederacja+w,494,488,848915730,10068,0 +3897,0062+%7E211%7E+miedziany+3,439,436,3909522,6925,0 +3898,ada,463,569,8539216,2044,0 +3899,KIELBA+054,455,590,699342219,10290,0 +3900,Winter+is+coming,441,542,698971484,2048,0 +3901,ChceszPokojuSzykujSi%C4%99DoWojny,456,518,699333701,10019,0 +3902,%21Wioska+507,570,448,477415,10495,0 +3903,125,549,389,849064752,10311,0 +3904,%C5%9Amieszkii,511,569,3454753,9210,0 +3905,053+Kahului,461,467,1497168,9761,0 +3906,Oibar,430,556,699443920,3660,0 +3907,013.+Dziwo%C5%BCona,513,572,699703642,10157,0 +3908,Welll,545,460,849086817,3080,0 +3909,0045,457,466,848913037,8086,0 +3910,Horyzont+zdarze%C5%84,533,543,7581876,9835,0 +3911,CALL+915,556,602,699784536,10311,0 +3912,Ogr%C3%B3d+Warzywny,449,560,7249451,6424,0 +3913,Fajna+053,455,550,699868002,2450,9 +3914,Pf+Konfederacja,485,486,848915730,9938,0 +3915,Lord+Arsey+KING,516,520,848956513,10285,0 +3916,%5B063%5D+Lambda,542,484,848985692,10300,2 +3917,%7C044%7C,555,570,873575,10018,0 +3918,Szlachcic+%21%21%21,486,461,699098531,10303,0 +3919,C014,527,459,699299123,10971,0 +3920,Wioska+411,577,518,477415,10495,0 +3921,4.+Pierdziszewo,544,439,8444356,10471,0 +3922,Fajna+031,450,568,8539216,9179,0 +3923,NOT%3F,425,536,9236866,10042,0 +3924,Lynortis,463,532,849001724,12154,8 +3925,014,506,544,848915531,7618,0 +3927,KIELBA+115,450,572,699342219,10039,0 +3928,B040,473,459,699299123,10495,0 +3929,%5B024%5D+Et+mato,586,525,848985692,10052,0 +3930,001,587,518,6048627,5532,0 +3931,Winter+is+coming,440,550,698971484,1399,0 +3932,Suppi,454,598,699856962,9902,0 +3933,Wioska+barbarzy%C5%84ska,445,540,698971484,2334,0 +3934,0003,564,398,699485250,10211,0 +3935,JaamMwG+022,530,521,848987051,9806,0 +3936,%5B184%5D,543,552,8000875,10264,8 +3937,Zasiedmiog%C3%B3rogr%C3%B3d,532,434,699433558,9650,0 +3938,IQ153,553,452,699368887,6107,0 +3939,Wioska+barbarzy%C5%84ska,475,540,698971484,9422,0 +3940,NOT%3F,433,519,9236866,10068,0 +3941,KIELBA+066,470,578,699342219,10495,0 +3942,Wioska+barbarzy%C5%84ska,525,540,7581876,10019,0 +3943,0010+K55+and987+OZDR.,504,556,3613413,9841,0 +3944,ChceszPokojuSzykujSi%C4%99DoWojny,454,513,699333701,9835,6 +3945,097+MEHEHE+m,493,601,6116940,10019,0 +3946,Wioska+barbarzy%C5%84ska,572,552,699316421,5839,0 +3947,Szlachcic,503,471,699098531,9696,0 +3948,019.+Wioska+Zaconek,572,519,8788366,10252,0 +3949,Brat447,445,486,699262350,10490,0 +3950,001,607,545,6160655,10285,0 +3951,Ogr%C3%B3d+Warzywny,455,559,7249451,2316,0 +3952,CALL+1037,548,543,699784536,9868,0 +3953,Mzm37,549,530,7142659,10362,0 +3954,KONFA+TO+MARKA%2C+NARKA,452,466,698152377,10311,0 +3955,.achim.,523,412,6936607,10311,0 +3956,Szlachcic+062,556,519,758104,8288,0 +3957,JF1,555,456,699368887,7356,0 +3958,00634+Widzew,441,431,3909522,9037,0 +3959,K44+012,433,485,698290577,10343,0 +3960,Pf+Konfederacja,488,496,848915730,9938,0 +3962,Winter+is+coming,503,579,699364813,9976,0 +3963,011+Fiona,446,510,698290577,5142,0 +3964,%230062+LSD,491,551,9272054,10008,0 +3965,Szlachcic,501,482,699098531,7265,0 +3966,0024,512,518,698599365,10019,0 +3967,Wioska+Barbarzy%C5%84ska,545,484,698867483,9166,0 +3968,042,475,480,699510259,9742,0 +3969,%7C046%7C,558,570,873575,10211,0 +3970,ChceszPokojuSzykujSi%C4%99DoWojny,454,504,699333701,9835,0 +3971,010+Trumnypremium.pl,553,495,849031818,7634,0 +3972,Suppi,439,516,699856962,9584,0 +3973,amator+MO2,536,549,848915531,10971,0 +3974,069,552,431,699761749,10495,0 +3975,Wioska+barbarzy%C5%84ska,515,534,848915531,7400,0 +3976,K45+002,417,478,698290577,8403,0 +3977,%5BA%5D_%5B039%5D+Dejv.oldplyr,416,475,699380607,10495,0 +3978,SsSs,453,498,1536625,10160,0 +3979,kathare,493,573,873575,10362,0 +3980,023,529,533,7581876,9007,0 +3981,MARYLIN,515,379,699368887,10237,0 +3982,-+266+-,529,580,849018239,10000,0 +3983,%7E%7ELataj%C4%85cyHolender%7E%7E,561,508,9174887,10152,0 +3984,Szlachcic,485,471,699098531,10311,0 +3985,Szlachcic,559,472,698867446,9965,0 +3986,-+308+-,531,584,849018239,10000,0 +3987,%5B155%5D+North,561,468,848985692,10411,0 +3989,xxx,510,454,698239813,7857,0 +3990,%5B112%5D+North12,571,488,848985692,10161,0 +3992,014,421,480,699510259,9761,0 +3993,0Wioska+barbarzy%C5%84ska,476,535,699781762,9968,0 +3994,.achim.,534,388,6936607,10311,0 +3995,keepo,482,529,848967710,10330,0 +3996,.%3A068%3A.+Chillout,511,427,848934935,3497,0 +3997,087+Dziadek+do+orzech%C3%B3w,541,459,7092442,10495,0 +3998,030,536,418,7271812,10495,0 +3999,055,426,514,699851427,10042,0 +4000,0016%7CRzym,508,443,699098531,9821,0 +4002,Bulletproof,482,512,699785935,8480,0 +4003,Horyzont+zdarze%C5%84,530,550,7581876,10019,0 +4004,.%3A033%3A.+Czosnek,503,485,699098531,7159,0 +4005,Monetki,477,425,699098531,9835,0 +4006,Os+Konfederacja,478,444,848915730,9822,0 +4007,keepo,482,537,848967710,10516,2 +4009,K44+x021,459,431,698364331,6466,0 +4010,B004,556,503,8138506,9354,7 +4011,%7E090.,496,610,7139820,10495,0 +4012,%5B190%5D,544,521,8000875,9034,0 +4013,KIELBA+075,469,580,699342219,10223,0 +4014,Piek%C5%82o+to+inni,512,481,848956765,5684,0 +4015,Konfiasze,474,493,698908912,10971,0 +4016,...Just+like+that,461,489,699723284,7116,0 +4017,Suppi,439,522,699856962,9984,0 +4018,Sparta_53,477,579,2585846,9638,0 +4019,NOT%3F,431,538,9236866,8123,0 +4020,7.62+mm,470,437,699777234,10019,0 +4021,0114,468,561,698659980,8169,0 +4022,Sparta_43,482,582,2585846,9638,0 +4023,0022,519,516,699432672,10495,0 +4024,186+Barquisimeto,465,453,1497168,9761,0 +4025,027.+Wioska+Loalanek,564,508,8788366,10252,0 +4026,JaamMwG+024,531,525,848987051,8634,0 +4027,Qusz,420,556,699443920,9761,0 +4028,Monetki,484,423,699098531,10294,0 +4029,%5B119%5D+North19,571,471,848985692,10047,0 +4030,Osada,494,437,699098531,10291,0 +4031,Napewno+to+nie+jest+off,513,445,848912265,10495,0 +4032,NOT%3F,425,528,9236866,10042,0 +4033,005,571,550,699316421,9744,0 +4034,yogi,538,568,2808172,10019,0 +4035,Suppi,439,452,699856962,9580,0 +4036,Wioska+435,572,526,477415,10495,0 +4037,Wioska+402,559,509,477415,10495,0 +4038,016,492,580,8369778,9312,0 +4039,041.,504,489,8788366,10316,0 +4040,kto+ananasowy+pod+wod%C4%85+ma+dom,567,503,699628084,9797,0 +4041,Gravity,404,440,698962117,9506,0 +4042,FULL+DEFF,544,471,8155296,7987,0 +4043,Yogi,525,534,2808172,10019,0 +4044,ChceszPokojuSzykujSi%C4%99DoWojny,459,517,699333701,3753,0 +4045,P+Konfederacja,456,442,848915730,9484,5 +4046,-%5B017%5D-+Himalchuli,549,487,849092827,6844,0 +4047,Piek%C5%82o+to+inni,507,473,848956765,9854,0 +4048,00701,452,441,3909522,5439,0 +4049,Wioska+superpuszka,581,498,699347951,6419,0 +4050,20010,516,530,848915531,8583,0 +4051,038,552,427,849063849,8864,0 +4052,025,528,575,699189792,9742,0 +4053,0.Oklahoma,520,589,698215322,9974,0 +4054,049,527,576,699189792,9744,0 +4055,Sparta_39,483,575,2585846,9638,0 +4056,.054.,507,380,698489071,6774,0 +4057,NOT%3F,431,543,9236866,8075,0 +4058,%5B158%5D,538,530,8000875,6633,0 +4059,7.62+mm,499,424,699777234,10019,0 +4060,A027,496,413,699299123,10495,0 +4061,Monetki,481,417,699098531,10291,0 +4062,-%5B029%5D-+Kamet,558,472,849092827,7410,0 +4063,NOT%3F,428,524,9236866,10042,0 +4064,Erena,458,565,7249451,1451,0 +4065,014+Wierzbno,537,470,849083501,4712,0 +4066,W.181%2F21,611,532,2999957,10242,0 +4067,.%3A013%3A.+Wilk,508,428,8649412,9989,0 +4068,kto+ananasowy+pod+wod%C4%85+ma+dom,567,502,699628084,9797,0 +4069,yogi,491,542,2808172,10019,0 +4070,012,576,419,849064752,10311,0 +4071,008+Fuchsia+City,591,495,699441366,11109,0 +4072,X01,560,454,699368887,12154,0 +4073,kek,538,517,848967710,10252,0 +4074,037,542,614,699189792,9761,0 +4076,C021,523,454,699299123,10728,0 +4077,NOT%3F,463,533,9236866,8865,0 +4078,%C5%9Amieszkii,512,560,3454753,9011,0 +4079,Osada,495,448,699098531,9637,0 +4080,Wioska+%28033%29,573,507,698232227,9838,0 +4081,B010,536,480,8138506,10019,0 +4082,KONFA+TO+MARKA%2C+NARKA,413,481,698152377,10311,0 +4083,F042,488,521,699189792,8651,0 +4084,031,591,449,699722599,10838,0 +4085,Szlachcic,577,490,699759128,10237,0 +4086,STOLICA+DMK,401,570,6892517,8127,0 +4087,KONFA+TO+MARKA%2C+NARKA,443,459,698152377,10297,0 +4088,xxx,494,436,698239813,10495,0 +4089,Wioska+barbarzy%C5%84ska,463,441,9291984,9720,0 +4090,Wioska+barbarzy%C5%84ska,431,507,698971484,10008,0 +4091,.%3A034%3A.+Papryczka,510,432,699098531,8540,0 +4092,KONFA+TO+MARKA%2C+NARKA,440,464,698152377,10292,0 +4093,%28032%29,418,534,699846892,10075,0 +4094,Tank+009.+Za+gar%C5%9B%C4%87+dolar%C3%B3w,399,495,698290577,9362,0 +4095,007,556,609,699567608,9720,0 +4096,043,425,486,699510259,9753,0 +4097,AbacadA+012,567,426,699756210,9924,0 +4098,%3F%2B44+76+Baincthun,468,478,698361257,9844,0 +4099,90k%24+Grvvyq,561,539,699676005,10495,0 +4100,0024+K55+and987+OZDR.,505,556,3613413,9850,0 +4101,0049,457,469,848913037,10095,0 +4102,Szlachcic,489,474,699098531,10292,0 +4103,Wembley,620,512,699795378,10845,0 +4104,-023-,461,426,9291984,10479,0 +4105,Monetki,478,419,699098531,10292,0 +4106,006,582,535,8138506,10019,0 +4107,COUSINS...%2C....,474,584,7976264,10295,0 +4108,Monetki+%3F%3F%3F,481,423,699098531,10292,0 +4109,Lord+Arsey+KING,519,498,848956513,10285,0 +4110,30006,487,539,848915531,9114,0 +4111,Szlachcic,565,488,698867446,10029,0 +4112,Wioska+barbarzy%C5%84ska,464,432,9291984,10152,0 +4113,Fajna005,453,556,698971484,3436,0 +4114,031,521,571,699189792,9744,0 +4115,021.+Wioska+Krystiano242,570,507,8788366,10252,9 +4116,Domek+1+%2A,545,423,849064614,8616,0 +4117,Bucksbarzy%C5%84sKamiiiru,430,513,848955783,10971,0 +4119,yogi,502,546,2808172,10019,0 +4120,060+San+Jose,458,471,1497168,9761,0 +4121,K45+-+007,562,466,6510480,9841,0 +4122,Brat447,440,497,699262350,10476,0 +4123,Szlachcic,467,418,698388578,10237,0 +4124,%23Shellder,563,463,699795378,10362,0 +4125,Wioska+barbarzy%C5%84ska,458,540,699698253,2212,0 +4126,Monetki,487,434,699098531,10295,2 +4128,189+Cuzco,463,458,1497168,9761,0 +4129,7.62+mm,477,439,699777234,10019,0 +4130,Baza2,430,446,698884287,10285,0 +4131,%2AAteny_14,471,526,2585846,9638,0 +4132,0187,466,554,698659980,8721,0 +4133,004,445,524,698971484,10008,0 +4134,%7C065%7COoo,569,531,699664910,6894,0 +4135,87k%24+Grvvyq,542,536,699676005,8834,0 +4136,003,566,579,699316421,10273,0 +4137,Daleko+006,477,583,8369778,8013,0 +4138,Amator,522,578,848915531,11321,0 +4139,Sparta_44,485,578,2585846,9638,0 +4140,K45+-+008,563,461,6510480,10495,0 +4141,Mniejsze+z%C5%82o+0050,421,507,699794765,6463,0 +4142,3.+Gnojowice,549,433,8444356,10471,0 +4143,-+116+-,548,587,849018239,10000,0 +4144,A%23035%23,424,479,698807570,11383,3 +4145,Szlachcic,494,458,699098531,9980,0 +4146,Wioska+barbarzy%C5%84ska,539,539,7581876,6137,0 +4147,Sparta_37,478,576,2585846,9638,0 +4149,002,530,482,848967710,10252,0 +4150,7.62+mm,489,426,699777234,10019,0 +4151,Ko%C5%84czy%C4%87+czas%3A%29,552,443,699368887,6663,0 +4152,Front_03,460,520,2585846,5417,0 +4153,Deff+stop%2C+chyba+%C5%BCe+dla+ryca+exp,490,471,699098531,9835,0 +4154,Gravity,423,453,698962117,9505,0 +4156,07+%7C+Twoja+stara+wioska,544,431,849002091,9887,0 +4157,Pf+Konfederacja,494,493,848915730,10178,0 +4158,Osada,496,441,699098531,10292,3 +4159,Fajna+019,449,553,698971484,5849,0 +4160,049.,501,493,8788366,10252,0 +4161,076.,499,479,8788366,10252,0 +4162,048.,499,494,8788366,10485,0 +4163,ADEN,561,433,698588535,8163,0 +4164,001,555,405,7271812,10495,0 +4165,%230089+Brze%C5%9B%C4%87,476,556,9272054,10146,3 +4166,Merhet,522,582,698215322,10228,0 +4167,Wioska+barbarzy%C5%84ska,539,493,848967710,10252,0 +4168,054,448,479,699510259,9761,0 +4169,081.,567,463,849094609,10330,0 +4170,049,432,489,699510259,9750,0 +4171,0080,463,464,848913037,3942,0 +4172,-+033+-,535,580,849018239,10000,0 +4173,P+Konfederacja+8,457,445,848915730,10336,0 +4174,Szlachcic+%21%21%21,504,471,699098531,9701,0 +4175,Omali,435,555,699443920,3955,0 +4176,Zosta%C5%82em+Krabem,469,530,699783765,10005,0 +4177,0063+1,451,431,3909522,10478,2 +4178,%C5%9Amieszkii,510,563,3454753,9835,0 +4179,Wioska+barbarzy%C5%84ska,486,506,848967710,5355,0 +4180,Sparta_68,489,581,2585846,9261,0 +4181,025.+ALFI,484,571,8539216,1870,0 +4182,Zasiedmiog%C3%B3rogr%C3%B3d,537,428,699433558,9367,0 +4183,Fajna+034,462,570,8539216,1765,0 +4184,044+%7C,557,560,8000875,9953,0 +4185,043,421,521,699851427,10129,0 +4186,NOT%3F,425,531,9236866,10042,0 +4187,018,531,497,8191129,8490,0 +4188,SsSs,452,501,1536625,9860,0 +4189,KONFA+TO+MARKA%2C+NARKA,427,461,698152377,10292,0 +4190,Propion4t,623,505,699379895,9966,0 +4191,KONFA+TO+MARKA%2C+NARKA,439,464,698152377,10295,0 +4192,03.+C1F,473,507,699781762,12154,0 +4193,%230120+%C5%81aba%C5%82ba%C5%82,477,540,698704189,8510,0 +4194,KONFA+TO+MARKA%2C+NARKA,389,475,698152377,10311,0 +4195,-+092+-,539,582,849018239,10000,0 +4196,Zasiedmiog%C3%B3rogr%C3%B3d,532,436,699433558,6163,0 +4197,Joms+015,530,416,699756210,10036,0 +4198,%7C011%7C,559,570,873575,10178,0 +4199,Yogi,504,546,2808172,10019,0 +4200,%3F%2B44+86+Jons,460,480,698361257,9841,0 +4201,114.,534,483,8788366,9498,0 +4202,Wioska+Pitter82,478,501,848967710,10252,0 +4203,%7E%7ELataj%C4%85cyHolender%7E%7E,562,498,9174887,9288,0 +4204,002,411,507,699851427,10042,0 +4205,Aleartis,480,546,698704189,9711,0 +4206,Eldorado%21,498,501,699785935,9899,0 +4207,174+Cordoba,480,483,1497168,9761,0 +4208,KONFA+TO+MARKA%2C+NARKA,433,461,698152377,10300,0 +4209,P+Konfederacja,475,436,848915730,9202,0 +4210,%5B102%5D+North2,574,481,848985692,10054,0 +4211,009,567,412,849064752,10311,0 +4212,027.+Alkanost,510,579,699703642,9653,0 +4214,066+%7C,565,575,8000875,9938,0 +4215,Piek%C5%82o+to+inni,520,419,848956765,10160,0 +4216,KONFA+TO+MARKA%2C+NARKA,427,471,698152377,10294,0 +4217,WIE%C5%BBA+GRANICZNA,537,452,8155296,10409,0 +4218,Zadzwoni%C4%99+do+Ciebie+%21,500,503,699785935,10160,0 +4219,0184,475,543,698971484,9328,0 +4220,KONFA+TO+MARKA%2C+NARKA,443,461,698152377,10294,0 +4221,K44+007,421,475,698290577,5520,0 +4222,CALL+1019,543,563,699784536,10311,0 +4223,Horyzont+zdarze%C5%84,527,541,7581876,9835,0 +4224,Wioska+barbarzy%C5%84ska,457,543,699698253,2654,0 +4225,005.+Cintra,564,397,699799629,10495,0 +4226,Szlachcic,466,420,698388578,10237,0 +4228,Brat447,445,494,699262350,10481,0 +4229,.achim.,536,398,6936607,10311,0 +4230,Prawo+ponad+prawem%21,493,509,699785935,9835,0 +4231,Wioska+Barbarzy%C5%84ska,547,488,698867483,9449,0 +4232,P.006,540,559,873575,9807,0 +4233,Monetki,477,414,699098531,10291,6 +4234,Twierdza+001,421,571,849084740,10171,0 +4235,023,548,475,849031818,7371,0 +4236,NOT+FOR+YOU,456,552,9236866,5954,0 +4237,%5B097%5D,538,489,848985692,10068,0 +4238,0173,471,549,699856962,10004,0 +4239,015,420,477,699510259,9761,0 +4240,B011,488,448,699299123,10061,0 +4241,ATENY,474,536,698971484,10008,0 +4242,Szlachcic,560,490,698867446,9335,0 +4243,Akademia+Bogactwa,550,426,848986287,10160,0 +4245,-12-,589,482,699347951,10971,0 +4246,NOT%3F,433,515,9236866,10042,0 +4247,Wioska+Barbarzy%C5%84ska,548,479,698867483,10019,0 +4249,ladyanima,509,572,699703642,9223,0 +4251,Fajna+003,450,559,699868002,9163,0 +4252,Szlachcic,578,487,699759128,10237,0 +4253,Yuppi,454,529,699856962,9601,0 +4254,Szlachcic+050,567,532,758104,9338,0 +4255,KONFA+TO+MARKA%2C+NARKA,426,465,698152377,10311,0 +4256,Wioska,385,521,849084005,10178,0 +4257,CALL+1054,520,567,699784536,10559,0 +4258,ChceszPokojuSzykujSi%C4%99DoWojny,462,514,699333701,5185,0 +4259,Mniejsze+z%C5%82o+0008,391,463,699794765,9708,0 +4260,Mniejsze+z%C5%82o+0063,420,506,699794765,8246,0 +4261,Ikona%2A,394,525,1804724,10142,0 +4262,Szlachcic+%21%21%21,494,476,699098531,10311,0 +4263,X09,531,458,6923061,2284,0 +4264,.%3A116%3A.+Niangmen,513,410,848934935,9825,0 +4265,KIELBA+064,470,576,699342219,10273,0 +4266,Fajna+070,454,564,8539216,7904,0 +4267,MORIA+F,540,472,8155296,10817,0 +4268,xxx,504,452,698239813,10495,0 +4269,059.+ALFI,484,563,8539216,1066,0 +4270,NOT%3F,435,552,9236866,2257,0 +4271,Oreo,439,560,699443920,3940,0 +4272,Wawrzyniak+017,450,547,698290577,2318,0 +4273,Kasyno,449,518,7249451,10237,0 +4274,KONFA+TO+MARKA%2C+NARKA,425,465,698152377,10294,0 +4275,212+New+Delhi,472,490,1497168,6813,0 +4276,Jaaa,586,530,698635863,10495,0 +4277,NOT%3F,433,530,9236866,10042,0 +4279,%2AINTERTWINED%2A,476,563,698704189,9711,0 +4280,-----------------3,460,422,9291984,10362,0 +4281,NIERAJ07,442,610,699859013,5605,0 +4282,024,464,524,2585846,3021,0 +4283,Szlachcic,486,466,699098531,10478,0 +4284,0033,556,495,699432672,5295,0 +4285,153+MIKOX+054,591,413,699491076,10001,0 +4286,Monetki,482,414,699098531,10295,0 +4287,20008,519,540,848915531,7633,0 +4288,053+%7C,555,535,8000875,10311,0 +4289,Szlachcic,564,499,698867446,9721,0 +4290,CALL+958,543,550,699784536,10311,0 +4291,012+Moab,438,468,1497168,9761,0 +4292,055.+ALFI,485,568,8539216,1997,0 +4293,Belvedere+001,579,413,699756210,10290,0 +4294,055.,510,490,8788366,10252,0 +4295,Szlachcic,561,496,698867446,9771,0 +4296,P.002,532,559,873575,9964,0 +4297,%7E%7ELataj%C4%85cyHolender%7E%7E,581,503,9174887,10143,0 +4298,s181eo17,399,446,393668,9966,0 +4299,F052,483,521,699189792,8493,0 +4300,Joms+024,529,422,699756210,9924,0 +4301,-+302+-,528,582,849018239,10000,0 +4302,Domek+3,547,424,849064614,9750,0 +4303,.%3A006%3A.Chillout,511,443,848934935,8065,4 +4304,LEGION_2,553,448,6101033,4280,0 +4305,Fajna009,464,572,8539216,1721,0 +4306,PARA,475,581,8369778,9286,6 +4307,Szlachcic+%21%21%21,514,461,699098531,6421,0 +4308,Wioska+Barbarzy%C5%84ska,547,480,698867483,8923,0 +4309,009+HEAVY,555,485,849031818,9113,0 +4310,%5B187%5D,537,490,8000875,9885,0 +4311,amator,527,570,848915531,11550,0 +4312,.achim.,530,452,6936607,10654,0 +4313,.achim.,534,422,6936607,6878,0 +4314,Osada,497,443,699098531,9637,3 +4315,%21Snorlax,570,449,699795378,7795,0 +4316,Fajna+050,452,553,698971484,2348,0 +4317,039+St.+George,446,461,1497168,9761,0 +4318,xxx,486,440,698239813,10495,0 +4319,Wioska+Barbarzy%C5%84ska,547,483,698867483,9593,0 +4320,Sas,511,544,7581876,10019,0 +4321,keepo,475,509,848967710,12154,8 +4322,merkus+73,429,433,9291984,10400,0 +4323,OsaDavout,451,539,699698253,5963,0 +4324,Winter+is+coming,441,545,698971484,1296,0 +4325,012+%7C+Lord+Arsey+-+Konfederacji,567,553,8000875,10090,4 +4326,Cast+Away+022,440,486,698290577,4232,0 +4327,019,536,474,848930111,10036,0 +4328,Pf+Konfederacja+w,487,491,848915730,10311,0 +4329,Szlachcic,492,477,699098531,9690,0 +4330,R%C4%99cznik+do+zmiany,417,488,699697558,10083,0 +4331,JaamMwG+004,526,522,848987051,9084,0 +4332,BETI+009,461,568,8539216,1795,0 +4333,Fresio,449,445,699660539,9808,2 +4334,Village,505,594,849094067,12154,0 +4335,Pf+Konfederacja,491,490,848915730,9726,0 +4336,SsSs,422,490,1536625,8884,0 +4337,007,556,462,699368887,7513,0 +4338,001+%7C+B.+Moon+l+Black+E.,562,560,8000875,9959,0 +4339,Taran,580,465,699759128,10237,0 +4340,Szlachcic+041,567,527,758104,9338,0 +4341,SPARTA_66,485,579,2585846,8969,0 +4342,Szlachcic,485,481,699098531,10311,0 +4343,-+096+-,544,577,849018239,10000,0 +4344,Suppi,469,540,699856962,9570,0 +4345,White+widow,401,568,9167250,8845,0 +4346,060+Estonia,574,464,7092442,10495,0 +4347,Village,518,578,849094067,12154,0 +4348,01%2A,564,544,699664910,7111,0 +4349,108+St+Johns,473,491,1497168,9761,0 +4350,-+309+-,524,585,849018239,10000,0 +4351,-%5B024%5D-+Chomo+Lonzo,559,487,849092827,7605,0 +4352,F004,509,533,699189792,9761,0 +4353,...Just+like+that,456,505,699723284,10452,0 +4354,0005,449,391,699431255,9961,0 +4355,xxx,486,426,698239813,10495,0 +4356,%230118+Jupiter,499,550,9272054,10083,0 +4357,P+Konfederacja,455,451,848915730,9463,0 +4358,Winter+is+coming,506,574,699364813,10311,0 +4359,x01,544,470,8459255,10067,0 +4360,%5B108%5D+North8,571,486,848985692,9975,0 +4361,009.+Nocnica,497,586,699703642,10160,0 +4362,x04,549,468,8459255,10018,0 +4363,CALL+1082,540,549,699784536,10495,0 +4364,Fajna+049,454,553,698971484,945,0 +4365,Wioska+Barbarzy%C5%84ska,548,491,698867483,10019,0 +4366,Joms+039,532,427,699756210,9297,0 +4367,Sparta_23,496,596,2585846,9638,0 +4368,Wioska+barbarzy%C5%84ska,455,535,699698253,5024,0 +4369,%7E030.,476,600,7139820,10495,0 +4370,Szlachcic,492,459,699098531,9899,4 +4371,Szlachcic,457,403,698388578,10237,0 +4372,New+York,425,450,698884287,10285,0 +4373,Winter+is+coming,503,581,699364813,10075,0 +4374,027,567,545,699316421,9744,0 +4375,PRO8L3M,420,497,7491093,9835,0 +4376,Front_15,459,527,699856962,5593,0 +4377,x+B002,392,515,698290577,10345,0 +4378,001,585,543,8138506,10019,0 +4379,ChceszPokojuSzykujSi%C4%99DoWojny,467,496,699333701,11487,0 +4380,xxx,512,466,698239813,10971,0 +4381,011.+P%C3%B3%C5%82nocnica,505,578,699703642,9761,0 +4382,P.007Z,509,559,873575,10203,1 +4383,Wioska+barbarzy%C5%84ska,436,501,698971484,10201,0 +4384,Kasyno,440,509,7249451,9902,0 +4385,Fajna+087,457,564,8539216,1733,0 +4386,R%C4%99cznik+do+zmiany,421,479,699697558,10019,0 +4387,Kasyno,445,512,7249451,10337,0 +4388,001,530,480,848967710,10252,0 +4389,018,490,526,849092723,8019,0 +4390,023,529,575,699189792,10135,0 +4391,Pf+Konfederacja,493,488,848915730,9933,0 +4392,-+036+-,533,578,849018239,10000,0 +4393,006.+ALFI,484,573,8539216,2118,4 +4394,Offline,503,516,699785935,10495,0 +4395,Wioska+Kermej,537,525,7581876,7474,0 +4396,Wioska+barbarzy%C5%84ska,510,436,699658023,9135,0 +4397,Winter+is+coming,442,552,698971484,4648,0 +4398,Osada,500,453,699098531,8561,0 +4399,Yogi,532,550,2808172,10160,0 +4400,Rilonia,514,550,849066849,5371,0 +4401,Szlachcic+052,571,522,758104,9338,0 +4402,%5B095%5D,539,489,848985692,11391,0 +4403,%5B072%5D+Noqtlok,528,506,848985692,10178,0 +4404,Wioska+barbarzy%C5%84ska,512,435,699658023,9345,0 +4405,.achim.,533,447,6936607,12154,0 +4406,%5B121%5D+North21,571,470,848985692,10051,0 +4407,Szlachcic,565,500,698867446,9721,0 +4408,015.+ALFI,483,568,8539216,2559,1 +4409,PRO8L3M,468,500,7491093,7978,0 +4410,KONFA+TO+MARKA%2C+NARKA,440,463,698152377,10311,0 +4411,B017,485,451,699299123,10495,0 +4412,Brat447,418,519,699262350,10479,0 +4413,Suppi,444,449,699856962,9670,0 +4414,KONFA+TO+MARKA%2C+NARKA,445,471,698152377,10311,0 +4415,Jehu_Kingdom_30_,586,475,8785314,9993,0 +4416,Sparta_29,489,582,2585846,9638,0 +4417,023.+Ni+ma+opcji+xd,506,583,699703642,9761,3 +4418,.achim.,541,409,6936607,9491,0 +4419,%2AINTERTWINED%2A,479,543,698704189,9711,0 +4420,%5B124%5D+North24,572,473,848985692,10054,0 +4421,Knowhere,394,503,699723284,10452,0 +4422,016.+ALFI,471,571,8539216,2453,3 +4423,Dum+Spiro+Spero,494,558,848896948,10042,0 +4424,BBB,552,436,1006847,7788,0 +4425,007.+Wioska+lllllllllXDlllllllll,568,529,8788366,10495,2 +4427,NOT%3F,417,536,9236866,10042,0 +4428,165+Ale+mnie+g%C5%82%C3%B3wka+boli,386,545,699382126,10636,0 +4429,090+Des+Moines,478,456,1497168,9761,0 +4430,0008,505,524,699432672,10495,0 +4431,%230027+Kwarantanna,498,526,9272054,10066,0 +4432,096.,477,499,8788366,10047,0 +4433,Olenale,439,559,699443920,3508,0 +4434,Horyzont+zdarze%C5%84,517,546,7581876,9835,0 +4435,WOJSKO,476,454,699869682,9761,0 +4436,XXX001,569,456,699368887,10004,0 +4437,%7E%7ELataj%C4%85cyHolender%7E%7E,557,499,9174887,9708,0 +4438,KIELBA+072,471,577,699342219,10495,0 +4439,Daleko+019,484,589,8369778,8431,0 +4440,Lynortis,464,537,849001724,6404,0 +4441,%2AINTERTWINED%2A,481,522,698704189,6624,0 +4442,012,561,474,849031818,3874,0 +4443,Durthang,505,514,849091897,10160,0 +4444,046,549,391,849064752,10311,0 +4445,Wioska+Mateox,555,496,699432672,3733,0 +4446,.achim.,540,397,6936607,10311,0 +4447,Szlachcic,565,467,698867446,10043,0 +4448,Szlachcic+%21%21%21,499,474,699098531,9899,0 +4449,Zasiedmiog%C3%B3rogr%C3%B3d,530,433,699433558,10068,0 +4450,R%C4%99cznik+do+zmiany,423,485,699697558,10252,0 +4451,.achim.,525,385,6936607,10068,0 +4452,%2AINTERTWINED%2A%2A,532,563,698704189,9711,0 +4453,%5B118%5D,565,539,8000875,9894,0 +4454,Napewno+to+nie+jest+off,514,440,848912265,6398,0 +4455,-+109+-,540,580,849018239,10000,0 +4456,Gattacka,579,522,699298370,10373,0 +4457,045,472,482,699510259,10019,0 +4458,NOT%3F,418,513,9236866,10042,0 +4459,Bagdad,466,392,8847546,10242,0 +4460,C012,524,461,699299123,10728,0 +4461,035+%7C,568,551,8000875,10476,0 +4462,Pf+Konfederacja,494,498,848915730,10232,0 +4463,%2B44+84,444,481,698361257,9664,0 +4464,Bucksbarzy%C5%84sKamiiiru,436,525,848955783,10971,0 +4465,014,528,433,699788305,9798,0 +4466,B015,480,443,699299123,10495,0 +4467,C019,528,461,699299123,9484,0 +4468,%3F%2B44+96+Desvres,465,490,698361257,9669,0 +4469,P+Konfederacja,458,445,848915730,10030,0 +4470,Butem+w+Morgen,552,548,848967710,10495,0 +4471,0018+K55+and987+OZDR.,500,554,3613413,9845,0 +4472,Pf+Konfederacja,488,492,848915730,10365,0 +4473,%5B052%5D+Gamma,542,483,848985692,10311,0 +4474,Osada,510,453,699098531,6625,0 +4475,%230132+Kleofas,494,515,9272054,4642,0 +4476,P.015,541,560,873575,10271,0 +4477,NOT%3F,432,531,9236866,9033,0 +4478,Selonari,460,562,698704189,9735,0 +4479,Selonari,462,565,698704189,9711,0 +4480,CALL+940,548,557,699784536,10311,0 +4481,xxx,487,432,698239813,10495,1 +4482,10009,523,553,848915531,11550,0 +4483,%2F01,410,577,9167250,11568,0 +4484,Kasyno,442,504,7249451,10237,0 +4485,Jaaa,577,544,698635863,10479,0 +4486,Wioska+barbarzy%C5%84ska,445,453,699660539,9493,0 +4487,Wioska+10,530,498,699385139,9171,7 +4488,Piek%C5%82o+to+inni,517,438,848956765,10160,0 +4489,%2B44+64,445,462,698361257,8992,0 +4490,%C5%9Amieszkiii,480,586,3454753,7870,0 +4491,142+Durango,468,483,1497168,9761,0 +4492,%5B034%5D+MONETKI,597,535,848985692,10252,0 +4493,Wioska+barbarzy%C5%84ska,451,541,699698253,2178,0 +4494,Lord+Arsey+KING,581,529,848956513,10285,0 +4495,Butem+w+Morgen,485,515,848967710,9937,0 +4496,CALL+934,552,560,699784536,10311,0 +4497,-+043+-,535,571,849018239,10000,0 +4498,Monetki,473,432,699098531,10297,0 +4499,010,413,501,699510259,9761,0 +4500,Wioska,381,525,849084005,10178,0 +4501,7.62+mm,469,437,699777234,10019,0 +4502,0040+MzM,530,528,698416970,11678,0 +4503,026.+ALFI,483,569,8539216,1725,0 +4504,114+Yellowknife,478,488,1497168,9761,0 +4505,Weso%C5%82ych+%C5%9Awi%C4%85t,568,460,699368887,9994,0 +4506,001.xxx,464,617,8612358,10495,0 +4507,7.62+mm,489,430,699777234,10019,0 +4508,Wioska+barbarzy%C5%84ska,437,503,698971484,8486,0 +4509,0004+K55+and987+OZDR.,504,554,3613413,9899,0 +4510,7.62+mm,477,441,699777234,10019,0 +4511,007+Dworzec+Gda%C5%84ski,542,469,849083501,10019,0 +4512,022,482,584,699364813,9753,0 +4513,031+%7C,558,547,8000875,10149,0 +4514,006.+Marzyciel+Shrek,459,502,698290577,5646,0 +4515,017,462,529,2585846,2763,0 +4516,kathare,536,546,873575,10595,0 +4517,Myk+i+do+kieszonki,381,508,9319058,9799,0 +4518,.%3A016%3A.+Chillout,500,385,848934935,9401,0 +4519,20019,515,550,848915531,8729,0 +4520,Harbar,428,551,8779575,2903,0 +4521,C028,525,450,699299123,7450,0 +4522,Piek%C5%82o+to+inni,518,470,848956765,9596,0 +4523,%2313.,529,473,848967710,10971,0 +4524,Winter+is+coming,443,552,698971484,7227,0 +4525,Lord+Arsey+KING,508,524,848956513,10285,6 +4526,-+094+-,542,576,849018239,10000,0 +4527,Piek%C5%82o+to+inni,511,469,848956765,10083,0 +4528,%230138+Anne-Marie,557,519,9272054,3560,0 +4529,CALL+965,521,568,699784536,10311,0 +4530,0046,458,466,848913037,5352,0 +4531,xxx,511,466,698239813,8549,0 +4532,7.62+mm,511,448,699777234,8638,0 +4533,009+%7C+Lord+Axen+-+Coming+for+you,558,560,8000875,10303,0 +4534,-%5B022%5D-+Maszerbrum,555,491,849092827,7477,0 +4535,Szlachcic,583,493,699759128,10237,0 +4536,Palma+pod+palma%21,499,509,699785935,9835,0 +4537,009,550,522,699194766,9986,0 +4538,0062+%7E23%7E,438,439,3909522,10214,0 +4539,Grafoll,455,544,699698253,9753,0 +4540,015.+A-RE-SE-EY,574,524,848967710,10252,5 +4541,7.62+mm,495,433,699777234,10019,0 +4542,0202,455,614,698659980,10559,0 +4543,Wioska+430,565,515,477415,10495,0 +4544,Lord+Arsey+KING,511,467,848956513,10285,0 +4545,Wioska+401,561,516,477415,10495,0 +4546,Kasyno,443,510,7249451,8005,0 +4547,%2AINTERTWINED%2A,465,560,698704189,9595,0 +4548,Fajna+073,455,551,699868002,1877,0 +4549,Gattacka,581,523,699298370,9455,0 +4550,Wioska+Marceli+Tower,445,543,698971484,2827,0 +4551,%2B44+84,443,482,698361257,8798,0 +4552,04+Anglia,586,492,8925695,9394,0 +4553,ChceszPokojuSzykujSi%C4%99DoWojny,459,516,699333701,3862,0 +4554,ChceszPokojuSzykujSi%C4%99DoWojny,460,518,699333701,4336,0 +4555,Pf+Konfederacja,491,489,848915730,9575,0 +4556,P.012,544,563,873575,10141,0 +4557,008+Boulder+City,438,475,1497168,9761,0 +4558,Fort,501,571,606407,10300,0 +4559,%2B44+72+Montcavrel,421,472,698361257,10827,0 +4560,Lord+Arsey+KING,517,526,848956513,10285,0 +4561,lady,489,585,699703642,12154,0 +4562,068,551,429,699761749,10495,0 +4563,KONFA+TO+MARKA%2C+NARKA,450,467,698152377,10438,0 +4564,098.,503,483,8788366,6995,0 +4565,120+Royal+New+France,477,481,1497168,9761,0 +4566,D018,505,387,7758085,9925,0 +4567,NOT%3F,460,537,9236866,3688,0 +4568,071.,509,495,8788366,10252,0 +4569,002,472,514,848967710,4394,0 +4570,z+029,556,588,699342219,10237,0 +4571,036,598,565,699373599,10068,0 +4572,Joms+029,530,414,699756210,9761,0 +4573,Szlachcic,573,522,698867446,9492,0 +4574,x+cast+Away,434,495,698290577,9845,0 +4575,.achim.,540,464,6936607,4713,0 +4576,Dum+Spiro+Spero,492,558,848896948,10000,0 +4577,048+Bu%C5%82eczka+v3,532,401,699491076,10001,0 +4578,025,567,549,699316421,9744,0 +4579,Pf+Konfederacja+%2B,487,488,848915730,10157,0 +4580,015+Fiona,446,500,698290577,10096,0 +4581,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+10,622,505,699379895,8308,0 +4582,JaamMwG+028,521,523,848987051,9851,0 +4583,KONFA+TO+MARKA%2C+NARKA,446,455,698152377,10654,0 +4584,Wioska+mati,548,497,699432672,2703,6 +4585,Os+Konfederacja,469,453,848915730,9053,0 +4586,NOT%3F,436,533,9236866,8316,0 +4587,Horyzont+zdarze%C5%84,525,535,7581876,9814,0 +4588,7.62+mm,488,440,699777234,6432,0 +4589,%5B110%5D,569,548,8000875,9888,0 +4590,Ho%C5%82opole,493,389,699433558,10178,0 +4591,35+min+to+d%C5%82ugo,551,459,699368887,6359,0 +4592,%7E%7ELataj%C4%85cyHolender%7E%7E,586,507,9174887,10316,0 +4593,Wioska+barbarzy%C5%84ska,511,436,699658023,9458,0 +4594,%5B139%5D,548,535,8000875,9627,0 +4595,%3F%2B44+85+Villeurbanne+La+Doua,456,480,698361257,9841,8 +4596,%23181Wrrr...,579,510,2999957,3700,0 +4597,A%23061%23,416,476,698807570,10397,0 +4598,CALL+990,544,551,699784536,10311,0 +4599,Wioska+barbarzy%C5%84ska,526,502,848967710,10252,0 +4600,.%3A035%3A.+Cynamon,510,416,8649412,7667,0 +4601,A+%7C+Forest+Cyaaaanku,389,493,699213622,10000,0 +4602,Winter+is+coming,430,539,9236866,3740,0 +4604,C015,518,459,699299123,10838,0 +4605,Nitrbolon,571,500,699379895,9885,0 +4606,Szlachcic,506,460,699098531,8856,0 +4607,0022,505,497,698599365,8037,0 +4608,Szlachcic+%21%21%21,507,470,699098531,7083,0 +4609,ADEN,568,430,698588535,9971,0 +4610,%5B091%5D,555,498,8000875,9962,0 +4611,Knowhere,385,492,699723284,10282,0 +4612,Mniejsze+z%C5%82o+0067,421,504,699794765,7903,0 +4613,028,468,522,2585846,2794,0 +4614,0050,462,473,848913037,8841,0 +4615,%2AINTERTWINED%2A,461,560,698704189,5364,0 +4616,C042,533,457,699299123,6393,0 +4617,011+Indigo+Plateau,588,495,699441366,11109,0 +4618,%21Wioska+406,559,514,477415,10495,0 +4619,%5B140%5D,559,533,8000875,9312,0 +4620,KIELBA+118,435,563,699342219,7536,0 +4621,Osada,501,439,699098531,10291,0 +4622,lady,487,584,699703642,9394,0 +4623,kek,537,519,848967710,8811,0 +4624,Szlachcic+028,572,522,758104,9338,0 +4625,030.+Wioska+osilek123,552,515,8788366,10252,0 +4626,06+Arabia+Saudyjska,468,506,699781762,9339,0 +4627,7.62+mm,494,428,699777234,10019,6 +4628,Szlachcic,573,491,699759128,10237,0 +4629,KONFA+TO+MARKA%2C+NARKA,449,463,698152377,10311,0 +4630,Wioska+431,557,500,477415,10495,0 +4631,0101,467,447,3909522,9841,0 +4632,B014,570,399,699761749,10495,0 +4633,CALL+1043,550,543,699784536,7234,0 +4634,ChceszPokojuSzykujSi%C4%99DoWojny,461,511,699333701,10290,0 +4635,SsSs,422,496,1536625,6265,0 +4636,Village,452,566,849094067,9534,0 +4637,Gattacka,583,517,699298370,8526,0 +4638,10014,533,556,848915531,9329,0 +4639,033,475,491,699510259,9761,0 +4640,Lord+Arsey+KING,516,522,848956513,10285,0 +4641,%C5%9Amieszkii,507,565,3454753,9248,0 +4642,0.Pittsburgh,518,583,698215322,9970,0 +4643,Winter+is+coming,441,553,699856962,6949,0 +4644,Jaaa,571,547,698635863,10487,0 +4645,0047,458,467,848913037,6859,0 +4647,187+Cali,470,467,1497168,9761,0 +4648,%2AINTERTWINED%2A%2A,461,561,698704189,9711,0 +4649,Gattacka,582,481,699298370,9570,0 +4650,A013,494,415,699299123,10481,0 +4651,022.+A-RE-SE-EY,575,525,848967710,10252,0 +4652,Front_28,454,526,2585846,6995,0 +4653,068,448,503,699510259,10237,0 +4654,KONFA+TO+MARKA%2C+NARKA,425,463,698152377,10311,0 +4655,041,445,538,698971484,8662,0 +4656,Piek%C5%82o+to+inni,519,489,848956765,9761,0 +4657,SsSs,437,499,1536625,3804,0 +4658,Szlachcic+037,552,520,758104,9338,0 +4659,Brat447,455,496,699262350,11321,0 +4660,Jaaa,572,541,698635863,10481,0 +4661,CALL+1047,542,553,699784536,10311,0 +4662,001+M%C5%82ociny,536,479,849083501,10019,0 +4663,011.,615,546,8900955,6359,0 +4664,adam4,526,538,7581876,9641,0 +4665,%7E009.,503,604,7139820,10495,0 +4666,-13-,586,474,699347951,10400,0 +4667,%2AAteny_49,465,529,2585846,2925,0 +4668,Monetki,477,413,699098531,10294,0 +4669,Winter+is+coming,440,543,698971484,1978,0 +4670,Monetki,481,416,699098531,10311,0 +4671,KONFA+TO+MARKA%2C+NARKA,446,471,698152377,10311,0 +4672,0004,622,520,6510480,10320,0 +4673,Daleko+029,472,584,699364813,8286,0 +4674,003,429,583,9167250,10068,0 +4675,Suppi,439,520,699856962,9554,2 +4676,Wioska+Barbarzy%C5%84ska,544,475,698867483,10019,0 +4677,A016,487,414,699299123,10495,0 +4678,.achim.,558,443,6936607,10311,0 +4679,104+Hejka,541,460,7092442,5613,0 +4680,Presja,512,508,699785935,12154,0 +4681,JaamMwG+017,529,525,848987051,10220,0 +4682,OOI,508,438,699658023,9738,0 +4683,xxx,501,434,698239813,10495,0 +4684,199+Santa+Cruz+de+La+Sierra,468,461,1497168,10016,0 +4685,1.+Obj+705+%21%21%21,498,533,849087855,10019,0 +4686,CALL+951,548,554,699784536,10311,0 +4687,Joms+025,532,418,699756210,10495,0 +4688,7.62+mm,465,454,699777234,8468,0 +4689,PRO8L3M,448,501,7491093,9862,0 +4690,.achim.,517,401,6936607,10311,0 +4691,%230096+Dobry%C5%84+Ma%C5%82y,475,556,9272054,10019,0 +4692,COUSINS,495,587,699364813,10203,0 +4693,%2B44+72+Sainte+Consorce,424,470,698361257,9726,0 +4694,034.,505,490,8788366,10201,0 +4695,0174,472,545,698971484,8929,0 +4696,F074,504,533,699189792,9588,0 +4697,.%3A009%3A.+Taktyka,517,415,8649412,9780,0 +4698,NOT,418,427,9236866,10042,0 +4699,KIELBA+068,470,579,699342219,10444,0 +4700,Cast+Away+012,450,483,698290577,5400,0 +4701,Joms+042,543,423,699756210,6874,0 +4702,96k%24+Grvvyq,553,551,699676005,10495,0 +4703,KONFA+TO+MARKA%2C+NARKA,428,461,698152377,10311,0 +4704,%5B0003%5D,450,396,8630972,10495,0 +4705,094+Barstow,480,457,1497168,9761,0 +4706,236+Denpasar,548,445,1497168,9994,0 +4707,093+Needles,474,460,1497168,9761,0 +4708,KONFA+TO+MARKA%2C+NARKA,430,484,698152377,10297,0 +4709,Szlachcic,468,419,698388578,10237,0 +4710,Szlachcic,555,473,698867446,9657,0 +4711,CALL+955,551,548,699784536,10311,0 +4712,Warsztat,552,442,849002091,7060,7 +4713,%2A002+Wyspy+owcze,385,541,699425709,9873,0 +4714,Szlachcic+047,569,530,758104,9338,0 +4715,ADEN,526,381,698588535,9737,0 +4716,%2B44+83+Escalles,435,483,698361257,10088,0 +4717,Szlachcic+006,565,529,758104,9338,1 +4718,Wioska+barbarzy%C5%84ska,500,418,699658023,9647,0 +4719,KIELBA+036,447,571,699342219,10495,0 +4720,Bilgewater,444,525,698971484,10008,0 +4721,%7C027%7C,553,567,873575,9913,0 +4722,Kentin+ufam+Tobie,431,400,699783765,11130,0 +4723,F072,508,538,699189792,10050,0 +4724,Winter+is+coming,504,581,699364813,9891,0 +4725,3+ESIOK+f,537,463,8155296,10239,0 +4726,ladyanima,516,566,699703642,9201,0 +4727,Lord+Arsey+KING,527,492,848956513,10285,0 +4728,A021,496,410,699299123,10495,0 +4729,017.+A-RE-SE-EY,573,536,848967710,10252,0 +4730,Metamorfoza,508,519,699785935,10030,0 +4731,F024,493,532,699189792,9750,0 +4732,Szlachcic,577,486,699759128,10237,0 +4733,P.011,538,563,873575,10273,0 +4734,C040,534,456,699299123,9883,0 +4735,%21+Wioska+barbarzy%C5%84ska,539,460,477415,8709,0 +4736,NOT%3F,431,519,9236866,10042,0 +4737,Wioska+barbarzy%C5%84ska,461,433,9291984,8504,0 +4738,Village,499,586,849094067,8046,0 +4739,0017,529,514,699432672,10495,0 +4740,P+Konfederacja,460,451,848915730,9508,0 +4741,065+%7C,560,567,8000875,9891,0 +4742,Pf+Konfederacja,491,504,848915730,9641,3 +4744,0185,474,544,698971484,9187,0 +4745,0.Savannah,519,581,698215322,9970,0 +4746,Mzm43,569,522,7142659,9817,0 +4747,%230109+Powodzenia,502,526,9272054,8171,0 +4748,Suppi,439,453,699856962,9556,0 +4749,Gattacka,594,493,699298370,9364,0 +4750,096+Malta,569,470,7092442,10495,0 +4751,0117,457,389,699431255,10495,0 +4752,188+Lima,468,458,1497168,10016,0 +4753,0079,462,465,848913037,6670,0 +4754,014+Violet+City,563,457,699441366,11109,0 +4755,Dum+Spiro+Spero,493,558,848896948,9979,0 +4756,Piek%C5%82o+to+inni,518,484,848956765,10019,0 +4757,7.62+mm,492,427,699777234,10019,0 +4758,Belegost,502,514,849091897,8730,0 +4759,Piek%C5%82o+to+inni,521,423,848956765,10160,5 +4760,009+Nie+wymi%C4%99k%C5%82em,602,479,699272633,10478,0 +4761,KIELBA+031,455,578,699342219,10495,0 +4762,%23060,518,588,849001572,9711,0 +4763,%5B151%5D+North,573,465,848985692,10052,0 +4764,KIELBA+098,465,580,699342219,10495,0 +4765,%3A%29.,542,475,698867483,10019,0 +4766,CALL+995,543,543,699784536,10311,0 +4767,Sparta_33,481,579,2585846,9638,0 +4768,Lord+Arsey+KING,516,525,848956513,10285,0 +4769,%2AINTERTWINED%2A,460,560,698704189,7979,0 +4770,COUS%2C%2C,498,578,8369778,6602,0 +4771,%C5%9Amieszkiii,485,588,3454753,9038,0 +4772,Os+Konfederacja,474,445,848915730,10068,0 +4773,066,550,430,699761749,6224,0 +4774,%7C041%7C,549,570,873575,9870,0 +4775,Suppi,444,526,699856962,9550,0 +4776,198,547,429,849064752,5230,0 +4777,Szlachcic,494,465,699098531,9687,0 +4778,004,521,517,8191129,9708,0 +4779,Mniejsze+z%C5%82o+0051,418,508,699794765,7800,0 +4780,020+%7C,553,552,8000875,10141,0 +4781,008,512,546,848915531,10192,0 +4783,Lord+Arsey+KING,525,496,848956513,10285,0 +4784,G%C5%82ucha+noc,506,520,699785935,10495,0 +4785,157+Belmopan,455,460,1497168,9761,0 +4786,Osada,497,450,699098531,9968,0 +4787,Suppi,442,455,699856962,8272,0 +4788,Piek%C5%82o+to+inni,513,426,848956765,10160,0 +4789,Oleander,438,559,699443920,4750,0 +4790,NOT%3F,432,523,9236866,10042,0 +4791,sas,531,551,7581876,7963,0 +4792,017,516,531,848915531,9192,0 +4794,Butla,582,503,9225795,6136,0 +4795,%23027,477,619,699605333,10393,0 +4796,%2B44+73+Verton,431,477,698361257,9799,0 +4797,Stage+group+B5,438,549,698971484,3335,0 +4798,ADEN,559,433,698588535,9692,0 +4799,023,481,582,699364813,10362,0 +4800,Odda%C5%82+wiosk%C4%99%2C+ma+gest%21,503,506,699785935,9835,0 +4801,032.+Antlia,489,579,699703642,9761,0 +4802,-x1,490,496,848967710,11307,6 +4803,F027,492,535,699189792,9628,0 +4804,Gattacka,583,518,699298370,10367,0 +4805,169+Natal,478,477,1497168,9825,0 +4806,WioskaB,511,584,8369778,10130,0 +4807,Wioska+Barbarzy%C5%84ska,548,492,698867483,10019,0 +4808,Kasyno,439,513,7249451,10301,0 +4809,009743,466,441,3909522,7021,0 +4810,Fajna+084,458,564,7249451,5526,0 +4811,Os+Konfederacja,472,440,848915730,9304,0 +4812,7.62+mm,471,438,699777234,10019,0 +4813,053+Czarnog%C3%B3ra,580,458,7092442,9747,0 +4814,ADEN,561,439,698588535,6100,0 +4815,Wioska+433,570,524,477415,10495,0 +4816,NOT%3F,434,532,9236866,5895,0 +4817,NOT%3F,413,505,9236866,10042,0 +4818,yogi,537,537,2808172,10393,0 +4819,KONFA+TO+MARKA%2C+NARKA,445,454,698152377,10432,0 +4820,012.+A-RE-SE-EY,578,534,848967710,10252,0 +4821,BoBa,490,470,699098531,9596,0 +4822,Village,519,578,849094067,12154,0 +4823,Bruksela,424,455,699660539,9976,0 +4824,Szlachcic+025,556,537,758104,9338,0 +4825,009,468,573,848886870,10495,0 +4826,10018,537,554,848915531,9609,0 +4827,.achim.,535,441,6936607,7939,0 +4828,Otimek,433,556,699443920,2855,0 +4829,Carsultyal.,486,551,698704189,9711,0 +4830,CHW%23056t,451,553,698971484,1144,0 +4831,0091,454,437,3909522,10083,0 +4832,7.62+mm,466,450,699777234,8328,0 +4833,Joms+022,529,415,699756210,10365,0 +4834,Szlachcic,570,495,698867446,9778,0 +4835,yogi,486,530,2808172,9837,7 +4836,BETI+001,462,577,8539216,1996,0 +4837,7.62+mm,497,445,699777234,10019,0 +4838,Wioska+Matii,556,494,699432672,3816,0 +4839,Village,492,579,849094067,8723,0 +4840,Szlachcic,578,483,699759128,10237,0 +4841,%5B076%5D,562,567,8000875,9880,0 +4842,Wioska+tomaszek74,433,502,698971484,10008,0 +4843,JaamMwG+014,521,522,848987051,9225,0 +4844,012,546,529,699194766,9789,0 +4845,Szlachcic,542,516,698867446,3659,0 +4846,Gratuluje+m%C3%B3zgu,452,539,699698253,10252,0 +4847,Tesa+8,533,475,698845189,10019,0 +4848,Cast+Away+020,443,486,698290577,4077,0 +4849,Wioska+%28032%29,572,507,698232227,9814,0 +4850,.042.,502,382,698489071,10426,0 +4851,Natii,435,457,699660539,8767,0 +4852,Dum+Spiro+Spero,496,552,848896948,8923,0 +4853,Wioska+barbarzy%C5%84ska,564,435,699368887,6794,0 +4854,176,575,417,849064752,10311,0 +4855,Szlachcic+017,570,520,758104,8024,0 +4856,Zasiedmiog%C3%B3rogr%C3%B3d,530,431,699433558,10375,0 +4857,%7E%7ELataj%C4%85cyHolender%7E%7E,582,506,9174887,10149,0 +4858,KIELBA+125,450,564,699342219,6950,0 +4859,0040+K54+and987+OZDR.,496,563,3613413,9841,0 +4860,Jaaa,574,542,698635863,10481,0 +4861,006,557,615,699567608,10341,0 +4862,Jaaa,584,533,698635863,10487,0 +4863,Zasiedmiog%C3%B3rogr%C3%B3d,517,435,699433558,10362,9 +4864,Wioska,388,503,849084005,10178,0 +4865,Lord+Arsey+KING,517,522,848956513,10285,0 +4866,.%3A049%3A.Chillout,513,442,848934935,4064,0 +4867,0.San+Antonio,520,587,698215322,9951,0 +4868,...Just+like+that,461,487,699723284,4467,0 +4869,%230125+Koperta,492,521,9272054,9346,0 +4870,Wioska+browar150,407,567,9167250,6781,0 +4871,%2AINTERTWINED%2A,478,543,698704189,9711,0 +4872,Os+Konfederacja,478,439,848915730,9836,0 +4873,BBB,556,440,1006847,7779,0 +4874,0231,469,545,698659980,10083,0 +4875,Wioska+Barbarzy%C5%84ska,553,476,698867483,9188,0 +4876,Wioska+416,572,508,477415,10495,0 +4877,Szlachcic+013,572,535,758104,9338,0 +4878,Wioska+barbarzy%C5%84ska,455,546,699698253,3028,0 +4879,004+West+Palm+Beach,442,470,1497168,9761,6 +4880,Szlachcic+031,558,528,758104,9338,0 +4881,Winter+is+coming,439,538,699856962,8032,0 +4882,X06,536,475,6923061,7755,0 +4883,Wioska+barbarzy%C5%84ska,441,437,9291984,10821,0 +4884,ADEN,562,436,698588535,8113,0 +4885,%C5%9Amieszkiii,498,565,3454753,9130,0 +4886,Gravity,410,456,698962117,9515,0 +4887,A005,488,418,699299123,10495,0 +4888,Szlachcic,463,417,698388578,10237,0 +4889,%5BA%5D_%5B044%5D+Dejv.oldplyr,410,475,699380607,10444,0 +4890,A18,551,448,699368887,9014,0 +4891,024,614,473,8459255,10336,0 +4892,NOT%3F,434,518,9236866,10042,0 +4893,Jaaa,583,531,698635863,10400,0 +4894,%23Dragonite,578,454,699795378,10147,0 +4895,x11,552,471,8459255,10267,0 +4896,.Selonari,472,562,698704189,8405,2 +4897,0084,446,442,3909522,7046,0 +4898,Zajazd,504,420,699658023,6476,0 +4899,Winter+is+coming,505,580,699364813,10117,0 +4900,058+%7C,551,502,8000875,10336,0 +4901,keepo,484,532,848967710,10023,0 +4902,IQ149,552,453,699368887,6678,0 +4903,KONFA+TO+MARKA%2C+NARKA,428,459,698152377,10528,0 +4904,%5B121%5D,542,503,8000875,9809,0 +4905,%2AINTERTWINED%2A,460,565,698704189,8296,0 +4906,KONFA+TO+MARKA%2C+NARKA,429,484,698152377,10306,0 +4907,.achim.,520,401,6936607,10311,0 +4908,CALL+939,554,557,699784536,10311,0 +4910,%2B44+73+Irigny,433,472,698361257,9849,0 +4911,CALL+1048,520,568,699784536,10311,0 +4912,NOT%3F,433,522,9236866,10042,0 +4913,Lord+Arsey+KING,571,588,848956513,10285,0 +4914,FALAS+a,529,468,8155296,9666,0 +4915,Chill+gaming,583,504,698312347,3064,0 +4916,Wioska+barbarzy%C5%84ska,435,504,698971484,10008,0 +4917,028.+ALFI,476,568,8539216,1534,0 +4918,022,532,429,699788305,8746,0 +4919,020,531,499,8191129,9976,0 +4920,%7E066.,479,556,7139820,7494,0 +4921,PRO8L3M,434,486,7491093,9437,0 +4922,Szlachcic,498,482,699098531,9885,5 +4923,0596,475,542,698971484,9814,0 +4924,Gratuluje+m%C3%B3zgu,449,538,699698253,1868,0 +4925,Darma,423,402,356642,9835,0 +4926,x+Wioska+wsch%C3%B3d,438,502,698290577,8603,0 +4927,Pf+Konfederacja,493,490,848915730,9955,0 +4928,006,558,483,849070464,8976,4 +4929,yogi,538,550,2808172,10160,0 +4930,%5B065%5D+KSi,533,515,848985692,9994,0 +4931,055+Czechy,586,476,7092442,10160,0 +4932,Zimbabwe1,439,530,699856962,8229,0 +4933,%7E047.,487,552,7139820,10495,0 +4934,Nogrod,502,512,849091897,7999,0 +4935,Wioska+403,562,516,477415,10495,0 +4936,0137,456,613,698659980,10252,0 +4939,MasteroN+11,566,454,699379895,10252,0 +4940,.achim.,541,392,6936607,10311,0 +4941,ChceszPokojuSzykujSi%C4%99DoWojny,454,508,699333701,9828,0 +4943,Szlachcic,576,513,698867446,9852,0 +4944,005+nowoczesnenagrobki.eu,566,471,849031818,7749,0 +4945,Piek%C5%82o+to+inni,515,480,848956765,9761,0 +4946,03%2Aawangarda,549,528,699664910,9893,0 +4947,KARTAGINA+..9,461,572,8438707,8403,0 +4948,A007,489,420,699299123,10495,0 +4949,016.+Czart,510,561,699703642,9825,0 +4950,%230013+Retrospekcja,490,551,9272054,10005,0 +4951,B045,481,468,699299123,10495,0 +4952,Dum+Spiro+Spero,494,553,848896948,9995,0 +4953,Ogr%C3%B3d+Warzywny,448,561,7249451,6550,0 +4954,Fajna+066,450,563,699868002,6935,0 +4955,%2AINTERTWINED%2A%2A,528,564,698704189,9711,0 +4956,P+Konfederacja,460,445,848915730,9333,0 +4957,Noc,546,387,3600737,9013,0 +4958,001,471,509,699781762,10495,6 +4959,077.+%7CXD%7C,496,516,848967710,10209,0 +4960,Szlachcic,507,477,699098531,9623,0 +4961,Os+Konfederacja,482,453,848915730,10319,0 +4962,Wioska+barbarzy%C5%84ska,506,530,7581876,8579,0 +4963,%3F%2B44+95+Verlincthun,455,490,698361257,9846,0 +4964,Szlachcic+020,551,521,758104,8024,0 +4965,-x8,497,498,848967710,10252,0 +4966,10016,522,568,848915531,7662,0 +4967,0071,454,441,3909522,10290,0 +4968,074+San+Antonio,460,458,1497168,9761,5 +4969,Wioska+rufusix,546,474,699368887,10252,0 +4970,Wioska+barbarzy%C5%84ska,462,431,9291984,9851,0 +4971,010+Binghamton,438,466,1497168,9761,0 +4972,041.+Camelopardalis,512,580,699703642,9761,8 +4973,x+00022,551,464,3909522,6915,0 +4974,yogi,519,536,2808172,10019,0 +4975,Village,517,581,849094067,12154,0 +4976,Szcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,585,459,699368887,10245,0 +4977,xxx,499,485,699098531,9835,0 +4978,Suppi,428,452,699856962,9825,7 +4979,Suppi,443,453,699856962,9556,0 +4980,092,541,499,699351301,10106,0 +4981,S181+P%C4%99dz%C4%99+Sobie+Samogon,499,612,606407,10311,0 +4982,-%5B028%5D-+Namcze+Barwa,550,487,849092827,7638,0 +4983,063,442,499,699510259,9761,0 +4984,029.+A-RE-SE-EY,576,532,848967710,10252,0 +4985,084.,584,477,849094609,10225,8 +4986,Pf+Konfederacja,488,500,848915730,10068,0 +4987,Ogr%C3%B3d+Warzywny,449,561,7249451,8963,0 +4988,Wioska+407,559,518,477415,10495,0 +4989,Bounce,508,521,699785935,10495,0 +4990,NOT%3F,457,550,9236866,2708,0 +4991,072.+ALFI,465,574,8539216,1391,0 +4993,133+Tijuana,468,481,1497168,9771,0 +4994,Monetki,482,417,699098531,10295,0 +4995,Pf+Konfederacja,493,491,848915730,11164,6 +4996,014,468,576,848886870,10160,0 +4997,022.,580,523,6520732,7951,0 +4998,xxxx,492,429,698239813,10166,0 +4999,Lord+Arsey+KING,501,467,848956513,10285,0 +5000,SsSs,466,499,1536625,7967,0 +5001,7.62+mm,472,432,699777234,10019,0 +5002,Os+Konfederacja,475,445,848915730,10001,0 +5004,Wioska+barbarzy%C5%84ska,537,492,848967710,10252,0 +5005,025.+Wioska+Mozzie,560,504,8788366,10252,6 +5006,9.5+Moje,544,438,8444356,9861,0 +5007,GPS,540,535,699785935,9018,0 +5008,Piek%C5%82o+to+inni,513,487,848956765,10237,0 +5009,F029,486,540,699189792,9639,0 +5010,Fajna+076,456,564,8539216,5971,0 +5011,P+Konfederacja+8,460,448,848915730,9654,0 +5012,.%3A078%3A.+Takmahal,527,445,848934935,7624,0 +5013,xxx,517,452,698239813,10330,0 +5014,Wioska+11,524,496,699385139,10657,0 +5015,Lord+Arsey+KING,521,502,848956513,10285,0 +5016,Os+Konfederacja+%2B,469,448,848915730,9646,0 +5017,048,422,526,699851427,10129,0 +5018,Winter+is+coming,506,575,699364813,10311,0 +5019,NOT%3F,427,544,9236866,9100,0 +5020,11%2A,566,543,699664910,9457,0 +5021,009990,469,433,3909522,8459,0 +5022,Brat447,444,497,699262350,9143,0 +5023,%7E064.,489,531,7139820,9798,0 +5024,EXA,585,517,848967710,8149,0 +5025,A056,501,432,699299123,10495,0 +5026,szlachcic,439,540,698971484,6186,0 +5027,200,548,431,849064752,5949,0 +5028,004+Fiona,447,504,698290577,7997,0 +5029,Suppi,427,453,699856962,9691,0 +5030,NOT%3F,413,515,9236866,10042,0 +5031,079.,577,515,8788366,10252,0 +5032,NOT%3F,433,518,9236866,9712,0 +5033,0001+sztart,505,503,698599365,10019,0 +5034,%5B051%5D+Beta,545,488,848985692,10290,0 +5035,Os+Konfederacja,480,441,848915730,9824,0 +5036,Szlachcic+022,554,526,758104,8024,0 +5037,Osada+koczownik%C3%B3w,454,543,699698253,2715,1 +5038,NOT%3F,425,539,9236866,4999,0 +5039,-%5B026%5D-+Kanjut+Sar,551,485,849092827,7101,0 +5040,%5B106%5D+North6,574,484,848985692,10054,0 +5041,056.+ALFI,472,559,8539216,2025,0 +5042,%C5%9Amieszkii,520,560,3454753,8086,0 +5043,Piek%C5%82o+to+inni,512,484,848956765,9258,0 +5044,Kasyno,448,513,7249451,7281,0 +5045,Ogr%C3%B3d+Warzywny,449,562,7249451,10495,4 +5046,R%C4%99cznik+do+zmiany,395,439,699697558,10362,0 +5047,00952+meheheheqqqqqqqqqqqqqqqqqq,459,437,3909522,10152,0 +5048,Szlachcic+023,555,526,758104,9111,0 +5049,057.,523,558,699695167,10452,0 +5050,%2AINTERTWINED%2A%2A,462,561,698704189,9318,0 +5051,Szlachcic,572,491,699759128,10237,6 +5052,bazan,566,536,7038651,9663,0 +5053,B047,483,467,699299123,9711,0 +5054,...Just+like+that,454,505,699723284,10452,0 +5055,004+Cerulean+City,591,496,699441366,11109,0 +5056,Front_11,459,524,2585846,2989,0 +5057,0063+b5,450,433,3909522,10220,0 +5059,Wioska+Matyyy,549,497,848967710,6039,0 +5060,Gratuluje+m%C3%B3zgu,443,539,698971484,9670,0 +5061,Lord+Arsey+KING,519,525,848956513,10285,0 +5062,%2B44+74+Armbout+Cappel,448,476,698361257,9855,0 +5063,003,469,496,699781762,12154,0 +5064,BETI+003,460,566,8539216,1698,0 +5065,Wioska+Barbarzy%C5%84ska,553,478,698867483,9439,0 +5066,B032,490,452,699299123,10495,0 +5067,Pf+Konfederacja,492,495,848915730,9639,0 +5068,017,556,501,849070464,7618,0 +5069,.%3A036%3A.+Curry,507,438,8649412,8532,0 +5070,029,429,516,699851427,10129,0 +5071,Warzywniak+001,446,544,698290577,5416,0 +5072,024+%7C,560,552,8000875,10141,0 +5073,Wioska+barbarzy%C5%84ska,535,510,848967710,10252,0 +5074,%2A001%2A,613,502,698670524,9359,0 +5075,%3F%3F%3F,482,546,698704189,9711,0 +5076,DOL+GULDUR,543,472,8155296,9879,0 +5077,%C5%9Bnieg,494,500,848967710,10393,0 +5078,%5B218%5D,557,518,8000875,2482,0 +5079,NOT%3F,434,541,9236866,9711,0 +5080,%28003%29,428,539,699846892,10160,0 +5081,Wioska+ciniol97,508,602,699698253,9806,0 +5082,%7E%7ELataj%C4%85cyHolender%7E%7E,584,503,9174887,9547,0 +5083,096+Bisbee,478,460,1497168,9761,0 +5084,NOT%3F,427,523,9236866,10042,0 +5086,Lord+Arsey+KING,580,588,848956513,8505,0 +5087,ChceszPokojuSzykujSi%C4%99DoWojny,457,513,699333701,6513,0 +5088,%C5%9Amieszkiii,487,586,3454753,8199,0 +5089,Cast+Away+007,449,487,698290577,10138,0 +5090,kto+ananasowy+pod+wod%C4%85+ma+dom,573,510,699628084,9797,0 +5091,217+Sydney,529,441,1497168,9761,3 +5092,073,585,468,699573053,10495,0 +5093,kto+ananasowy+pod+wod%C4%85+ma+dom,573,511,699628084,9797,0 +5094,0BrunO,470,502,699781762,8388,0 +5095,PRO8L3M,451,493,7491093,10311,0 +5096,Merhet,520,579,698215322,6630,0 +5097,128+La+Paz,464,475,1497168,9761,0 +5098,%7E021.,489,567,7139820,10495,1 +5099,Weso%C5%82ych+%C5%9Awi%C4%85t,563,456,699368887,11653,0 +5100,027,467,523,2585846,3718,0 +5101,06+Polska,584,483,8925695,10426,0 +5102,031,455,438,9291984,10348,0 +5103,Horyzont+zdarze%C5%84,532,546,7581876,9835,0 +5104,Erebor,505,386,699368887,10237,0 +5105,Szlachcic+032,562,524,758104,9338,0 +5106,052,532,576,699189792,10160,1 +5107,010,466,435,9291984,10481,0 +5108,%21Wioska+421,552,507,477415,10636,0 +5109,%2B44+61+Looberghe,417,469,698361257,9797,0 +5110,Szlachcic,494,469,699098531,9696,0 +5111,%7E%7ELataj%C4%85cyHolender%7E%7E,582,496,9174887,10141,0 +5112,-+038+-,535,582,849018239,10000,0 +5113,Fajna+074,456,556,3613413,8372,0 +5114,%2AFront_27,453,527,2585846,9638,0 +5115,Butem+w+Morgen,489,511,848967710,10342,0 +5116,Gattacka,578,520,699298370,10268,0 +5117,Butem+w+Morgen,554,549,848967710,10495,0 +5118,A041,507,429,699299123,10495,0 +5119,Carsultyal.,484,556,698704189,9711,0 +5120,Wioska+Mati%C5%B9%C5%BA%C5%BA,554,494,699432672,4294,0 +5121,W007,446,497,698290577,9220,0 +5122,NOT%3F,413,504,9236866,10042,0 +5123,Wioska+barbarzy%C5%84ska,511,434,699658023,9650,0 +5124,0004+kolejowo,503,500,698599365,10019,0 +5125,NOT%21,465,540,9236866,10042,0 +5126,JF5,553,457,699368887,5328,0 +5127,002,524,510,8191129,8809,0 +5128,NOT%3F,411,508,9236866,10042,0 +5129,062+Francja,573,455,7092442,10495,8 +5130,xxxx,505,427,698239813,10495,0 +5131,JF3,555,458,699368887,6189,0 +5133,Mzm45,573,514,7142659,10426,0 +5134,024,566,547,699316421,9744,7 +5135,-xx12,491,497,848967710,10393,0 +5136,%C5%9Amieszkii,516,565,3454753,9046,0 +5137,Szlachcic,510,458,699098531,9617,0 +5138,Jaaa,579,539,698635863,10475,0 +5139,Szlachcic,493,476,699098531,10063,0 +5140,%7C009%7C,552,571,873575,10178,0 +5141,Jaaa,585,557,698635863,10495,0 +5142,-043-,470,428,9291984,10238,0 +5143,0094,457,437,3909522,10220,0 +5144,Mzm22.,561,528,7142659,10362,0 +5145,x15,427,451,698884287,10285,0 +5146,B050,475,465,699299123,9277,0 +5147,Przypa%C5%82,560,460,699368887,9016,0 +5148,Jaaa,580,541,698635863,10397,0 +5149,F023,491,532,699189792,9861,0 +5151,MojeSzczytToTw%C3%B3jDno,513,377,828637,10495,0 +5152,Wioska+Barbarzy%C5%84ska,543,477,698867483,10019,0 +5153,Lord+Arsey+KING,516,524,848956513,10285,0 +5154,%5B111%5D+North111,577,474,848985692,10068,0 +5155,003,505,478,698881022,7089,0 +5156,NOT%3F,432,538,9236866,8741,0 +5157,A07,552,449,699368887,9994,0 +5158,DOM+2,563,401,849064614,9555,0 +5159,.%3A071%3A.+Chillout,513,421,848934935,3573,0 +5160,Wioska+Barbarzy%C5%84ska,556,476,698867483,10019,0 +5161,%230108+Ma%C5%82aszewicze,472,556,9272054,9251,0 +5162,Belvedere+002,577,411,699756210,10290,0 +5163,-+035+-,535,576,849018239,10000,0 +5164,Ateny_57,473,531,2585846,8667,0 +5165,Jetlag%21,498,508,699785935,9835,0 +5166,KIELBA+076,475,579,699342219,10217,0 +5167,%2B44+74+Conchil+le+Temple,446,474,698361257,9715,0 +5168,Pf+Konfederacja,484,489,848915730,9516,0 +5169,W.181%2F24,613,520,2999957,10242,0 +5170,020.+Kompania+Braci,540,452,8155296,9249,0 +5171,%5B007%5D+Patyon+ka,603,522,848985692,10068,0 +5172,Taran,582,463,699759128,10237,0 +5173,025,543,463,849031818,9756,0 +5174,047,427,491,699510259,9747,0 +5175,070,563,400,849064752,10311,0 +5176,KONFA+TO+MARKA%2C+NARKA,438,469,698152377,10292,0 +5177,%230032+Suwalki,483,556,9272054,10000,0 +5178,012,529,433,699788305,8622,0 +5179,015,572,408,849064752,10311,0 +5180,B009,552,498,8138506,10019,0 +5181,COUSINS...%2C%2C%2C%2C...,485,587,7976264,10051,0 +5182,014,460,531,2585846,2766,1 +5183,Joms+040,548,416,699756210,10273,0 +5184,Marienburg+6,527,478,699355601,3099,0 +5186,%7E051.,488,568,7139820,10495,0 +5187,.%3A075%3A.+Takmahal,526,443,848934935,10600,2 +5188,xxx,482,428,698239813,10495,0 +5189,%230073+Je%C5%BC,493,562,9272054,10019,0 +5190,NOT%3F,439,551,9236866,2168,0 +5191,Warzywniak+003,447,542,698290577,1279,0 +5192,008,573,493,849070464,8493,0 +5193,.%3A037%3A.+Og%C3%B3rki,512,415,8649412,9742,0 +5194,Wioska+tnt3nt,510,433,698895940,11321,0 +5195,JK4,559,450,699368887,6189,0 +5196,Os+Konfederacja+%2B,471,454,848915730,8647,0 +5197,MOTEL+5,566,401,849064614,9741,0 +5198,Suppi,433,448,699856962,9283,0 +5199,%23029,490,589,849001572,8785,0 +5200,%2B44+83+Lyon+Mermoz,438,481,698361257,9860,0 +5201,Wioska+barbarzy%C5%84ska,535,461,8155296,10947,0 +5202,Wioska+509,574,458,477415,10495,0 +5203,Wioska+%28030%29,568,524,698232227,9232,0 +5204,-10-,589,481,699347951,10164,0 +5205,Wioska+barbarzy%C5%84ska,456,535,699698253,2875,0 +5206,005+Jose2k15,393,552,699382126,10495,0 +5207,051+%7C,563,539,8000875,9976,0 +5208,K44+x017,452,426,698364331,10705,0 +5209,138+Tepic,467,483,1497168,9761,8 +5210,Brat447,418,521,699262350,10476,0 +5211,K44+x015.,459,425,698364331,10658,0 +5212,Suppi,441,522,699856962,9570,0 +5213,Pf+Konfederacja,495,495,848915730,10068,0 +5214,yogi,531,563,2808172,10019,0 +5215,NOT%3F,428,544,9236866,3410,0 +5216,NOT%3F,412,512,9236866,10042,0 +5218,016,583,537,8138506,10019,0 +5219,066+Irlandia,574,454,7092442,10495,0 +5220,Wioska+barbarzy%C5%84ska,623,489,699347951,5011,0 +5221,Lord+Arsey+KING,518,496,848956513,10285,0 +5222,7.62+mm,547,428,699777234,5937,0 +5223,Bucksbarzy%C5%84sKamiiiru,425,507,848955783,8899,0 +5224,%2AAteny_40,472,532,2585846,9595,0 +5225,-037-,458,422,9291984,10479,0 +5226,Szlachcic,504,465,699098531,9200,0 +5227,0075,501,522,699432672,10495,0 +5228,B034,489,453,699299123,10229,0 +5229,F058,492,516,699189792,9410,4 +5230,Piek%C5%82o+to+inni,528,439,848956765,10160,0 +5231,044,546,429,7271812,4428,0 +5234,088+Orzech+macadamia,544,465,7092442,10164,0 +5235,Wioska+barbarzy%C5%84ska,435,439,698884287,10285,0 +5236,C036,530,456,699299123,10160,0 +5237,NOT%3F,420,517,9236866,10042,0 +5238,9.3+Gitara,545,439,8444356,10471,0 +5239,%21Wioska+437,556,497,477415,12154,0 +5240,002+Oklahoma+City,442,478,1497168,9761,8 +5241,FilipV,447,525,698971484,10008,0 +5242,00632,442,430,3909522,9882,0 +5243,001,471,514,848967710,4752,5 +5244,2.+Rybnik,510,619,606407,10544,0 +5245,09+Valhalla,502,507,699861004,9462,0 +5246,%2B44+71+Cucq,418,471,698361257,9849,0 +5247,%2B44+72+Beutin,422,472,698361257,9669,0 +5249,074.,567,458,849094609,9944,0 +5250,067+Islandia,572,452,7092442,10495,0 +5251,082.,496,488,8788366,10252,0 +5252,043+Vasperland,602,513,8323711,10495,0 +5253,Horyzont+zdarze%C5%84,517,547,7581876,9835,0 +5254,.%3A015%3A.+Chillout,515,435,848934935,7309,0 +5255,.%3A082%3A.JuanPabloII,540,443,848934935,8720,0 +5256,Wioska+LoRd+BoNiO,570,498,699019249,1831,0 +5257,015.,524,545,699695167,9902,0 +5258,lady,500,589,699703642,10471,0 +5259,SS03,533,492,699744766,6899,0 +5260,Os+Konfederacja,481,439,848915730,9791,0 +5261,A0174,382,472,8841266,10362,0 +5262,%5B149%5D,552,540,8000875,9509,0 +5263,Lord+Arsey+KING,516,505,848956513,10285,0 +5264,015,477,520,7491093,9068,0 +5265,033.,504,490,8788366,10252,0 +5266,Ateny_80,471,524,2585846,5368,2 +5267,Bucksbarzy%C5%84sKamiiiru,436,514,848955783,10971,0 +5268,%2AINTERTWINED%2A,470,574,698704189,9520,0 +5269,%2AINTERTWINED%2A,469,572,698704189,9711,7 +5270,Monetki,481,419,699098531,10290,0 +5271,lady,498,575,699703642,8514,0 +5272,Piek%C5%82o+to+inni,520,473,848956765,9738,4 +5273,Wioska+barbarzy%C5%84ska,442,608,699859013,3146,0 +5274,037,585,472,699573053,10495,0 +5275,011,536,499,849031818,8186,0 +5276,%2B44+75+Tassin+Le+Bourg,455,477,698361257,9860,0 +5277,026+Lafayette,447,469,1497168,9761,0 +5278,Szlachcic,470,399,698388578,10237,0 +5279,120+s000,401,557,699382126,8326,0 +5280,Szlachcic+033,555,536,758104,9338,0 +5281,Szlachcic,582,490,699759128,10237,0 +5282,2+KR%C3%93LESTWO+f%3F,537,461,8155296,8147,0 +5283,KONFA+TO+MARKA%2C+NARKA,446,454,698152377,10311,0 +5284,x02,545,475,8459255,10139,0 +5285,014,560,491,849070464,8493,0 +5286,Monetki,475,413,699098531,10294,0 +5287,%5B150%5D+North,578,472,848985692,10052,0 +5288,Szlachcic,489,467,699098531,10292,0 +5289,0035+K54+and987+OZDR.,499,565,3613413,9845,0 +5290,%7B001%7D+Asta,538,385,698350371,10495,0 +5291,%28014%29,419,536,699846892,10144,0 +5292,Szlachcic+049,567,531,758104,8851,0 +5293,015,564,486,849070464,4371,0 +5294,%5B078%5D,525,539,8000875,10173,0 +5295,KONFA+TO+MARKA%2C+NARKA,443,469,698152377,10303,0 +5296,Piek%C5%82o+to+inni,525,438,848956765,10160,0 +5297,Joms+016,519,418,699756210,10030,0 +5298,028,420,518,699851427,10129,0 +5299,A050,501,428,699299123,10178,0 +5300,Monetki,473,418,699098531,10226,0 +5301,Fajna008,464,571,8539216,2015,0 +5302,So%C5%82tys+Wsi+Dejvvvvv,441,416,849027025,10237,0 +5303,Wioska+barbarzy%C5%84ska,583,500,8925695,5127,0 +5305,.%3A087%3A.JuanPabloII,541,443,848934935,6962,0 +5307,KONFA+TO+MARKA%2C+NARKA,426,464,698152377,10311,8 +5308,%230052+Traumon,488,557,9272054,10362,0 +5309,KIELBA+105,454,574,699342219,10218,0 +5311,%21Wioska+405,564,513,477415,10838,0 +5312,Knowhere,379,496,699723284,10452,0 +5313,Lord+Arsey+KING,517,523,848956513,10285,0 +5314,056+%7C,549,501,8000875,10311,0 +5315,%5BA%5D_%5B038%5D+Dejv.oldplyr,408,483,699380607,10495,0 +5316,Os+Konfederacja,475,444,848915730,10201,0 +5317,002.+Zwiadowcy,480,601,7976264,10106,0 +5318,C035,529,458,699299123,10838,0 +5319,Gratuluje+m%C3%B3zgu,451,538,699698253,5888,0 +5320,kek,537,516,848967710,9922,1 +5321,NOT%3F,429,544,9236866,6425,0 +5322,%2AINTERTWINED%2A,488,545,698704189,9038,0 +5323,JaamMwG+030,523,514,848987051,9745,0 +5324,Wioska+kinia+20,540,483,699127546,4925,0 +5325,00621+Wioska,442,436,3909522,7092,0 +5326,.%3A003%3A.+Chillout,513,406,848934935,8597,0 +5327,Osada,494,443,699098531,10295,0 +5328,ChceszPokojuSzykujSi%C4%99DoWojny,454,509,699333701,10237,0 +5329,Szlachcic+018,553,526,758104,9338,0 +5330,002.+BAKAJOKO,611,541,8900955,6736,0 +5331,%7E%7ELataj%C4%85cyHolender%7E%7E,548,468,9174887,8396,0 +5332,.achim.,538,422,6936607,10311,0 +5333,019,532,465,8155296,8664,0 +5334,Ogr%C3%B3d+Warzywny,445,562,7249451,9505,0 +5335,Kasyno,447,517,7249451,10122,0 +5336,Front_36,457,522,2585846,2221,0 +5337,Ogr%C3%B3d+Warzywny,450,560,7249451,10452,0 +5338,Wioska+barbarzy%C5%84ska,464,435,9291984,10067,0 +5339,.achim.,531,455,6936607,7777,0 +5340,Suppi,425,449,699856962,9553,0 +5341,ADEN,563,443,698588535,10090,0 +5342,Czujno%C5%9B%C4%87+to+podstawa,593,434,848985692,10042,0 +5343,046.,504,487,8788366,9813,0 +5344,HELMOWY+RAJ,533,470,8155296,10569,0 +5345,024,415,523,699851427,10042,0 +5346,124,548,386,849064752,10311,0 +5347,PRO8L3M,453,504,7491093,10495,0 +5348,NOT%3F,424,520,9236866,10042,5 +5349,.achim.,525,404,6936607,10311,0 +5350,Lord+Arsey+KING,518,495,848956513,10285,0 +5351,Wioska+barbarzy%C5%84ska,435,586,849028088,10223,0 +5352,MasteroN+06,568,445,699379895,10135,0 +5353,Gryfios+002,615,538,698666810,10495,0 +5354,0025,530,516,699432672,10495,0 +5355,003.+Novigrad,562,397,699799629,10495,0 +5356,Szlachcic,567,492,699759128,10237,0 +5357,Kasyno,442,503,7249451,6601,0 +5358,NOT%3F,425,544,9236866,9921,0 +5359,%2AAteny_26,474,522,2585846,9394,0 +5360,Piek%C5%82o+to+inni,516,476,848956765,9507,0 +5361,-%5B007%5D-+Dhaulagiri,553,481,849092827,8063,0 +5362,NOT%3F,431,541,9236866,9029,0 +5363,PRO8L3M,432,493,7491093,2421,0 +5364,Bucksbarzy%C5%84sKamiiiru,427,503,848955783,8820,0 +5365,Piek%C5%82o+to+inni,517,476,848956765,9312,5 +5366,001,558,539,699194766,10019,0 +5367,185+Baranquilla,468,466,1497168,9771,0 +5368,xwqe,455,574,8539216,1770,0 +5369,Osada,503,443,699098531,10294,7 +5370,Szlachcic+034,561,532,758104,8024,0 +5371,0013+MzM,567,461,698416970,7642,0 +5372,Sparta_63,494,597,2585846,8174,0 +5373,7.62+mm,486,434,699777234,10019,0 +5374,Piek%C5%82o+to+inni,517,420,848956765,10160,0 +5375,Jaaa,580,542,698635863,10476,0 +5376,Suppi,444,447,699856962,9562,0 +5377,FAKE+OR+OFF,438,401,698231772,9816,0 +5378,00951,458,439,3909522,6520,0 +5379,032,565,393,699761749,10495,0 +5380,Z01+Galicznik,561,515,699272880,10426,0 +5381,Monetki,479,432,699098531,10303,0 +5382,JM1,559,453,699368887,7064,0 +5383,Wioska+BontaBom,556,431,1957280,4115,0 +5384,%5B075%5D+Vermoord+jou,529,501,848985692,10395,0 +5385,%2B44+72+Wacquinghen,426,476,698361257,9860,0 +5386,002,623,493,849091105,10160,0 +5387,.%3A038%3A.+Studnia,512,414,8649412,9244,0 +5388,2%2B2x2,509,432,698895940,10446,0 +5389,xxx,522,465,698239813,10971,0 +5390,F049,489,518,699189792,8842,0 +5391,0018%7CBerlin,511,445,699098531,9441,0 +5392,7.62+mm,498,427,699777234,10019,0 +5393,Zasiedmiog%C3%B3rogr%C3%B3d,541,422,699433558,6709,0 +5394,.achim.,523,452,6936607,6125,0 +5395,Suppi,444,454,699856962,9565,0 +5396,Piek%C5%82o+to+inni,516,452,848956765,10160,0 +5397,0063+b12,454,430,3909522,5986,0 +5398,Wioska+iver1,515,596,699698253,6821,0 +5399,014,569,554,699316421,9744,0 +5400,001+Viborg,599,557,699272880,10238,0 +5401,NOT%3F,433,552,9236866,2867,0 +5402,010+Fiona,447,509,698290577,9443,8 +5403,Village,516,577,849094067,12154,0 +5404,Szlachcic,490,475,699098531,9968,0 +5405,003,405,543,699425709,9873,0 +5406,Warzywniak+015,453,547,698290577,2472,0 +5407,013+Kuasta,614,481,8337151,9918,0 +5408,0001,466,604,33900,10010,0 +5409,Joms+036,532,424,699756210,8003,0 +5410,Pf+Konfederacja,486,486,848915730,9938,8 +5411,%7E%7ELataj%C4%85cyHolender%7E%7E,552,523,9174887,10160,0 +5412,00761,449,439,3909522,8167,0 +5414,Szlachcic,575,493,699759128,10237,0 +5415,Osada,495,444,699098531,9899,0 +5416,Szlachcic,579,491,699759128,10237,0 +5417,Wioska+barbarzy%C5%84ska,432,503,698971484,10008,0 +5418,7.62+mm,505,444,699777234,10019,0 +5419,A0153,381,468,8841266,10362,0 +5420,%230063+DMT,496,562,9272054,10008,0 +5421,.%3A010%3A.+Chillout,502,414,848934935,7622,6 +5422,kathare,498,571,873575,10495,0 +5423,003.+ALFI,472,568,8539216,1318,0 +5424,Wioska+barbarzy%C5%84ska,451,532,3909522,1660,0 +5425,NOT%3F,427,532,9236866,8009,0 +5426,Suppi,426,448,699856962,9570,0 +5427,023.+Wioska+kaszak10,579,511,8788366,10252,0 +5428,Szlachcic+048,574,515,758104,8024,0 +5429,%2312.,519,465,848967710,10971,0 +5430,Brat447,452,498,699262350,10479,3 +5431,13+%7C+Rozbojowisko,537,435,849002091,8286,0 +5432,Front_32,453,519,2585846,5963,0 +5433,Jaaa,581,540,698635863,10476,0 +5434,KIELBA+104,452,569,699342219,10223,0 +5435,SsSs,464,502,1536625,7058,0 +5436,Wioska+barbarzy%C5%84ska,584,465,699573053,10425,0 +5438,P.033,544,559,873575,10346,0 +5439,Zeta+Reticuli+0S,417,420,699323302,10728,0 +5440,xxx,503,447,698239813,9290,0 +5441,0063+b16qqqqqqqqqqqqqqqqqqqq,454,431,3909522,10083,0 +5442,B061,473,465,699299123,10495,0 +5443,%230006+To%C5%BCsamo%C5%9B%C4%87,492,549,9272054,10019,0 +5444,NOT%3F,437,530,9236866,5884,0 +5445,183,562,437,849064752,9815,0 +5446,113.,531,485,8788366,6345,0 +5447,Horyzont+zdarze%C5%84,527,553,7581876,10019,0 +5448,NOT%3F,428,530,9236866,8649,0 +5449,Szlachcic,573,488,699759128,10237,0 +5450,keepo,480,534,848967710,10495,0 +5451,Fajna+021,450,551,699868002,1610,0 +5452,xxx,510,449,698239813,10495,0 +5453,Osada+koczownik%C3%B3w,492,534,7581876,8908,6 +5454,.achim.,540,462,6936607,8091,0 +5455,Szlachcic+%21%21%21,488,462,699098531,10292,0 +5456,%2B44+72+Villeurbanne+Cusset,429,472,698361257,9872,0 +5457,Strasznie+Mi%C5%82y+S%C4%85siad%21,549,442,556154,9735,0 +5458,Dioda+v2,539,520,8649412,9757,0 +5459,PRO8L3M,452,494,7491093,10311,0 +5460,Wioska+barbarzy%C5%84ska,570,452,699368887,9994,0 +5461,7.62+mm,495,439,699777234,10019,0 +5462,Nottingham,554,445,699368887,5169,0 +5463,Myk+i+do+kieszonki,385,513,9319058,9799,0 +5464,080.+ALFI,480,557,8539216,1858,0 +5466,F057,494,522,699189792,9337,0 +5467,016,568,483,849070464,4313,0 +5468,SsSs,438,503,1536625,10149,0 +5469,%23050,524,588,849001572,7253,0 +5470,ladyanima,513,577,699703642,9613,0 +5471,Szlachcic,557,492,698867446,10117,0 +5472,DARMA+TUTEK101MZMNIEUMIECZYTA%C4%86,585,495,8925695,7414,0 +5473,Wioska+001,491,594,7976264,9981,0 +5474,Monetki,474,429,699098531,10295,0 +5475,C+011+D.G%C3%B3rnicza,413,579,849084740,9718,0 +5476,Sparta_38,483,576,2585846,9638,0 +5477,%7E%7ELataj%C4%85cyHolender%7E%7E,557,507,9174887,9561,0 +5478,slow,534,488,848967710,10485,0 +5479,0082,444,443,3909522,10453,0 +5480,x09,558,476,8459255,10267,0 +5481,Monetki,479,423,699098531,10096,4 +5482,CALL+964,542,547,699784536,10311,0 +5483,Wioska+barbarzy%C5%84ska,569,516,699851345,9694,0 +5484,016.+Wioska+Ronin1995,568,515,8788366,10252,0 +5485,036.,490,622,699494488,10237,0 +5486,Joms+019,531,416,699756210,9775,0 +5487,%2AAteny_39,465,523,699333701,5085,0 +5488,Ko%C5%84czy%C4%87+czas%3A%29,550,445,699368887,9902,0 +5489,%2AINTERTWINED%2A,477,562,698704189,9711,0 +5490,Ondulina,444,556,699443920,9293,0 +5491,010.+Topielica,496,584,699703642,10237,0 +5492,073.+ALFI,488,561,8539216,1855,0 +5493,Wioska+Barbarzy%C5%84ska,545,476,698867483,9750,0 +5494,Kasyno,447,515,7249451,9994,0 +5495,Ogr%C3%B3d+Warzywny,462,558,7249451,11130,0 +5496,005,561,542,699194766,9655,1 +5497,%2306.,526,478,848967710,10252,0 +5498,%5B092%5D,560,541,8000875,9959,0 +5499,0181,474,547,698659980,8099,0 +5500,006+Plac+Wilsona,535,476,849083501,5957,0 +5501,7.62+mm,465,449,699777234,9529,0 +5502,Marienburg+9,532,479,699355601,8747,0 +5503,KIELBA+033,454,573,699342219,10495,0 +5504,Szlachcic,572,492,698867446,9721,0 +5505,%2AAteny_28,466,522,699333701,5205,0 +5506,112+Fuga,541,453,7092442,8774,0 +5507,R%C4%99cznik+do+zmiany,423,486,699697558,11691,0 +5508,...Just+like+that,468,477,699723284,10452,0 +5509,%5B005%5D+Hil+zaitez,586,522,848985692,10306,0 +5510,%5B027%5D+K+D,584,522,848985692,10013,0 +5511,Szlachcic,552,486,698867446,9657,0 +5512,0056,605,512,6510480,10952,0 +5513,Jaaa,569,539,698635863,10484,0 +5514,%2B44+72+Vaulx+en+Velin,428,472,698361257,9846,0 +5515,%5B054%5D+pa+ZZI+BEST+dude,541,486,848985692,10362,0 +5516,KONFA+TO+MARKA%2C+NARKA,449,456,698152377,10300,1 +5517,Brat447,460,507,699262350,5177,0 +5518,%5B025%5D+Wanuchiy+QAN,584,521,848985692,10060,0 +5519,0005,458,504,1536625,8142,9 +5520,Warzywniak+011,443,546,698290577,2498,0 +5521,ChceszPokojuSzykujSi%C4%99DoWojny,451,512,699333701,4428,0 +5522,Wioska+Matiyyy,557,494,699432672,3618,0 +5523,11%2Aszpica,560,527,699664910,7479,0 +5524,Piek%C5%82o+to+inni,524,473,848956765,10147,7 +5525,%C5%9Amieszkiii,498,589,3454753,8582,0 +5526,B042,485,467,699299123,10495,0 +5527,Stage+group+B+7,437,532,699856962,9047,0 +5528,20020,503,547,848915531,7021,0 +5529,056,545,421,7271812,7391,0 +5530,NOT%3F,433,527,9236866,10060,0 +5531,Szlachcic,584,510,699759128,9856,0 +5532,Brat447,439,494,699262350,10479,0 +5533,rakieta+019,618,537,848928486,7357,0 +5534,%7E%7ELataj%C4%85cyHolender%7E%7E,547,469,9174887,9179,0 +5535,0081,441,402,699431255,9835,0 +5536,Gattacka,574,498,699298370,9894,0 +5537,Szlachcic,468,420,698388578,10237,0 +5538,020.+A-RE-SE-EY,573,527,848967710,10252,0 +5539,%5B084%5D,541,494,848985692,10049,0 +5540,Brat447,439,492,699262350,8903,0 +5541,Suppi,433,451,699856962,9606,0 +5542,0059,508,515,699432672,10495,0 +5543,A061,504,424,699299123,10495,0 +5544,K55,527,529,698867483,10495,0 +5545,B055,478,470,699299123,10111,0 +5546,Myk+i+do+kieszonki,382,507,9319058,9799,0 +5547,007.,524,557,699695167,9793,0 +5548,14+%7C+%C5%9Al%C4%85sk,537,431,849002091,4848,0 +5549,Micha%C5%82,533,544,848967710,10495,0 +5550,%5B184%5D,549,506,848985692,7691,0 +5551,Wioska+barbarzy%C5%84ska,397,535,849030226,10484,0 +5552,0Wioska+barbarzy%C5%84ska,482,538,699781762,10495,0 +5553,xxx,498,433,698239813,10495,0 +5554,Winter+is+coming,507,583,699364813,9976,0 +5555,0006,536,532,699432672,10495,0 +5556,%7E058.,487,542,7139820,10495,0 +5557,017.+ALFI,477,566,8539216,1421,2 +5558,BBB,562,412,1006847,11228,0 +5559,NOT%3F,414,511,9236866,10042,0 +5560,%230025+Oskar,491,569,9272054,10083,0 +5561,Mzm42,566,520,7142659,10362,0 +5562,0008,505,500,698599365,9940,0 +5563,Leicester,549,440,849002091,4796,0 +5564,00702,451,441,3909522,10069,0 +5565,Wioska+510,579,459,477415,10495,0 +5566,7.62+mm,483,436,699777234,10019,0 +5567,Szlachcic+%21%21%21,485,472,699098531,9891,0 +5568,Wioska+barbarzy%C5%84ska,499,413,699658023,9644,0 +5569,K44+013,433,486,698290577,7594,0 +5570,%7E040.,481,550,7139820,10495,7 +5571,035+Atlanta,441,470,1497168,9761,0 +5572,Sparta_48,485,574,2585846,9638,0 +5573,090+Kazachstan,576,462,7092442,10495,0 +5574,Everest,542,535,699785935,9835,0 +5575,Szlachcic,587,481,699759128,10237,0 +5576,C017,524,462,699299123,8634,0 +5577,Szlachcic,494,462,699098531,9637,0 +5578,KONFA+TO+MARKA%2C+NARKA,431,461,698152377,10295,0 +5580,D05,547,464,8649412,7883,0 +5581,xxx,509,469,698239813,7076,0 +5582,0062+Wioska,443,436,3909522,10495,0 +5583,.achim.,516,485,6936607,9601,0 +5584,A+%7C+Forest+Cyaaaanku,389,496,699723284,9976,0 +5585,Pf+Konfederacja,485,504,848915730,9621,0 +5586,Yogi,526,574,2808172,10019,0 +5587,Wioska+X,543,450,699368887,4245,0 +5588,Wioska+404,565,514,477415,10495,0 +5589,003,524,518,8191129,9664,0 +5590,Fajna+024,448,548,699868002,2535,0 +5591,CALL+1035,545,555,699784536,9792,0 +5592,002.+Wioska+Exano,553,514,8788366,10252,0 +5593,CALL+973,544,571,699784536,10429,0 +5594,NOT+FOR+YOU,459,553,9236866,8307,2 +5595,ZBIE,598,574,17714,10222,0 +5596,016+Orlando,443,471,1497168,9761,5 +5598,Kapitan_B%C5%82%C4%85d,557,454,699368887,7903,0 +5599,00821,442,443,3909522,6081,0 +5600,FF006,464,516,699189792,6127,0 +5601,Szlachcic+004,561,533,758104,9338,5 +5602,BBB,579,442,1006847,9556,0 +5603,005.+Rusa%C5%82ka,507,590,699703642,9761,0 +5604,%23042,489,590,849001572,9790,0 +5605,024,527,533,7581876,8125,0 +5607,Wioska+defensywna,540,428,848986287,7104,0 +5608,A006,492,421,699299123,10495,0 +5609,Gratuluje+m%C3%B3zgu,450,538,699698253,10160,0 +5610,.%3A039%3A.+Sznur,513,434,8649412,9745,0 +5611,Marienburgg+10,534,480,699355601,7012,0 +5612,Wioska+Barbarzy%C5%84ska,545,492,698867483,9271,0 +5613,A033,477,415,699299123,10495,0 +5614,slow,534,489,848967710,10252,0 +5616,-8-,588,482,699347951,11321,0 +5617,.034.,489,379,698489071,10316,0 +5618,%C5%9Amieszkii,518,572,3454753,9375,0 +5619,054,416,516,699851427,10042,0 +5620,Os+Konfederacja,479,448,848915730,9890,0 +5621,020,522,537,2808172,6812,0 +5622,003,622,493,849091105,10019,0 +5624,%5B185%5D,536,498,848985692,4543,0 +5625,019,530,500,8191129,7512,0 +5626,Wioska+19,529,513,699385139,9360,0 +5627,%5B156%5D,545,508,8000875,7905,0 +5628,Napewno+to+nie+jest+off,489,387,848912265,10495,0 +5629,036,458,495,699510259,9980,0 +5630,Yogi,533,550,2808172,10636,0 +5631,KONFA+TO+MARKA%2C+NARKA,452,458,698152377,10444,0 +5632,Ateny_12,475,537,698971484,9809,0 +5633,007.+Marzyciel+Shrek,456,501,698290577,10109,0 +5634,084+Salt+Lake+City,473,469,1497168,9761,0 +5635,Szlachcic,489,475,699098531,9976,0 +5636,-Zapraszam+do+ta%C5%84ca%21+%3AP,515,514,699785935,10083,0 +5638,001+Puk...Puk...Przeprowadzka%21%21%21,576,585,699524362,10211,0 +5639,%C5%9Amieszkii,509,568,3454753,9267,0 +5640,B008,576,500,8138506,10019,0 +5641,Szlachcic,586,496,699759128,10237,0 +5642,Szlachcic,567,482,698867446,9647,0 +5643,%5B149%5D+North,573,466,848985692,10014,0 +5644,004+koka+hera+hasz+lsd+%3A%29+i,425,572,9167250,9933,0 +5645,P+Konfederacja,453,444,848915730,9664,0 +5646,Szlachcic,498,479,699098531,9626,0 +5647,Jaaa,576,542,698635863,10481,0 +5648,Ulu-mulu,431,601,699697558,10637,0 +5650,KONFA+TO+MARKA%2C+NARKA,437,459,698152377,10311,0 +5651,190+Trujillo,462,457,1497168,9761,0 +5652,017,529,435,699788305,9221,0 +5653,056+Kilauea,455,463,1497168,9761,0 +5654,Os+Konfederacja,477,438,848915730,9803,0 +5655,SsSs,453,495,1536625,6795,0 +5656,JW3,556,442,699368887,7257,0 +5657,%2B44+63+Ecully,430,467,698361257,9860,0 +5658,%2AAteny_05+Juppi+3+-,471,537,2585846,9638,0 +5659,Joms+028,529,419,699756210,10030,0 +5660,.achim.,537,419,6936607,8530,0 +5661,KONFA+TO+MARKA%2C+NARKA,416,480,698152377,10292,0 +5662,Cast+Away+017,446,479,698290577,4575,0 +5663,049+Fort+Laudardale,452,465,1497168,9761,0 +5664,x12,551,453,8459255,8191,0 +5665,MTS,493,520,699785935,9537,2 +5666,Fajna+077,456,557,698290577,7193,0 +5667,0063+10,451,430,3909522,10268,0 +5668,NOT%3F,415,511,9236866,10042,0 +5669,Szlachcic,566,475,698867446,9976,0 +5670,002,466,575,848886870,10495,0 +5671,087+Kansas+City,474,455,1497168,9761,0 +5672,Lord+Arsey+KING,535,518,848956513,10285,0 +5673,Zero+Stresu,446,538,698971484,9898,0 +5675,...Just+like+that,466,474,699723284,7140,0 +5676,%5B146%5D+North,581,467,848985692,10048,0 +5677,008.+ALFI,470,565,8539216,1426,0 +5678,Szlachcic,464,417,698388578,10237,0 +5679,%21Wioska+518,556,459,477415,10495,3 +5680,0.Edison+Mob,525,581,698215322,10474,0 +5681,Wioska+barbarzy%C5%84ska,574,449,699368887,9994,0 +5682,KONFA+TO+MARKA%2C+NARKA,432,484,698152377,9957,0 +5683,Wioska+barbarzy%C5%84ska,511,435,699658023,9362,0 +5684,Yogi,531,526,2808172,6189,0 +5685,Kasyno,444,517,7249451,9966,0 +5686,141+San+Louis+Potosi,471,481,1497168,9761,0 +5687,K45+-+006,561,467,6510480,10187,0 +5688,monetki,510,415,699098531,9821,6 +5689,yogi,525,576,2808172,10160,0 +5690,Piek%C5%82o+to+inni,511,479,848956765,9750,0 +5691,11111,479,602,699364813,10495,0 +5692,Piek%C5%82o+to+inni,520,478,848956765,9090,0 +5693,F001,498,537,699189792,9428,0 +5694,Piek%C5%82o+to+inni,521,419,848956765,10160,0 +5695,Joms+007,522,417,699756210,9867,0 +5696,South+K35,555,394,699146580,9809,0 +5697,%7E062.,487,562,7139820,8397,0 +5698,Ogr%C3%B3d+Warzywny,445,561,7249451,6016,0 +5699,CALL+936,548,560,699784536,10311,0 +5700,007.,609,537,8900955,7408,0 +5701,NOT%3F,438,548,9236866,1419,0 +5702,Wioska+barbarzy%C5%84ska,429,456,698884287,9827,0 +5703,063,553,433,699761749,10495,0 +5704,.+Jack+Daniels,423,547,699856962,8941,0 +5705,007+%7C+Lord+Axen+-+rumbling%21,559,547,8000875,10362,0 +5706,032,497,617,699878511,10495,0 +5707,Fajna+079,455,567,8539216,4228,0 +5708,1.+Type+58+%21%21%21,492,531,849087855,10019,0 +5709,Ateny_76,474,519,2585846,2717,0 +5710,Os+Konfederacja,479,441,848915730,9542,0 +5711,SsSs,419,503,1536625,10160,0 +5712,0026,591,503,699429153,10058,0 +5713,Yogi,525,562,2808172,10019,0 +5714,NOT%3F,430,537,9236866,9425,3 +5715,%21Pikaczu,569,444,699795378,10362,0 +5716,%7C084%7C,571,526,699664910,4199,0 +5717,slow,530,490,848967710,10595,0 +5718,068,415,525,699851427,10042,0 +5719,Wioska+barbarzy%C5%84ska,433,445,698884287,10285,0 +5720,Lord+Arsey+KING,540,531,848956513,10285,0 +5721,097+Tombstone,480,463,1497168,10019,4 +5722,046.,550,474,849094609,9899,0 +5723,NOT%3F,433,514,9236866,9656,0 +5724,Brat447,466,496,699262350,4551,0 +5725,MasteroN+07,570,445,699379895,10495,0 +5726,Fajna006,454,556,698971484,6195,0 +5727,NOT%21,467,540,9236866,10042,0 +5728,SsSs,438,497,1536625,9797,0 +5729,-+076+-,535,583,849018239,10000,0 +5730,%23001,467,612,699605333,10393,0 +5732,Brat447,461,507,699262350,8732,0 +5733,Wioska+barbarzy%C5%84ska,530,534,7581876,9581,0 +5734,Szlachcic,563,476,698867446,9721,0 +5735,Ko%C5%84czy%C4%87+czas%3A%29,552,444,699368887,7186,0 +5736,sas,535,536,7581876,9466,0 +5737,Wioska+Matixx,550,496,699432672,3934,0 +5738,Wioska+barbarzy%C5%84ska,489,599,7976264,10279,0 +5739,keepo,483,535,848967710,10027,0 +5740,Szlachcic+038,553,516,758104,9338,0 +5741,.%3A017%3A.+Chillout,514,433,848934935,7223,0 +5742,001,417,577,9167250,10004,0 +5743,5.+Witosa,477,536,699781762,9835,0 +5744,sas,512,542,7581876,9624,0 +5745,004,483,512,849092723,9417,0 +5746,0188,472,548,698659980,10019,0 +5747,%5B135%5D+North,578,473,848985692,10411,0 +5748,Suppi,433,450,699856962,9570,0 +5749,%5B061%5D+B%C4%99dzie+psikus,530,503,848985692,10311,0 +5750,-+Bis+zu+ende,518,517,699785935,9976,0 +5751,086+OD+KOGO+BIJE+BLASK,404,556,699382126,6606,0 +5752,Szlachcic,488,476,699098531,10292,0 +5753,Szlachcic+024,558,521,758104,8024,0 +5754,Suppi,442,524,699856962,9559,0 +5755,KIELBA+001,445,578,699342219,10273,0 +5756,029.+Leszy,511,560,699703642,9186,0 +5757,.%3A003%3A.+Same+Thing,511,413,8649412,9547,0 +5758,Fajna004,452,555,698971484,4865,0 +5759,Joms+011,520,417,699756210,9797,0 +5760,%23025,519,552,849001572,10030,0 +5761,126+Tulum,477,482,1497168,9761,0 +5762,7.62+mm,488,422,699777234,10019,0 +5763,044,431,514,699851427,10129,0 +5764,078+Orzech+laskowy,553,474,7092442,10495,2 +5765,0023,519,515,699432672,10495,0 +5766,%2B44+72+Vernaison,422,470,698361257,9914,0 +5767,Mimosa%21,498,512,699785935,9835,0 +5768,Lord+Arsey+KING,542,523,848956513,5251,0 +5769,%C5%9Amieszkii,519,559,3454753,9115,0 +5770,0020.+B+-,577,506,7125212,9825,0 +5771,OXA,497,521,699785935,9899,0 +5772,.achim.,534,391,6936607,10311,0 +5773,%3F%2B44+96,466,491,698361257,8825,0 +5774,171+Sao+Luis,479,471,1497168,9761,0 +5775,005,409,504,699851427,10129,0 +5776,016,412,484,699510259,9744,0 +5777,Butem+w+Morgen,488,511,848967710,10001,0 +5778,Sparta_11,495,599,2585846,9638,0 +5779,003.+Marzyciel+Shrek,466,493,698290577,6099,0 +5780,Szlachcic,580,485,699759128,10237,0 +5781,Joms+002,524,419,699756210,10140,0 +5782,-%5B002%5D-+K2,555,483,849092827,8104,0 +5783,Osada,501,451,699098531,9616,0 +5784,-+301+-,525,583,849018239,10008,0 +5785,Monetki,474,431,699098531,10294,0 +5786,SsSs,461,500,1536625,5405,0 +5787,%7E043.,482,551,7139820,10495,0 +5788,Szary+%C5%9Awiat,576,593,699785935,10224,0 +5789,TROJA.11,456,575,8438707,9036,0 +5790,Filip+IV,447,526,698971484,10008,0 +5791,Kattegat,518,543,7581876,9836,0 +5792,017+Ecruteak+City,565,456,699441366,11109,0 +5793,20003,516,550,848915531,8045,0 +5794,keepo,480,511,848967710,9293,0 +5795,C038,533,459,699299123,10971,0 +5796,South+K35,555,387,699146580,10042,0 +5797,0Wioska+barbarzy%C5%84ska,467,509,699333701,8284,0 +5798,JK5,559,447,699368887,6238,0 +5799,073,554,427,849064752,10311,0 +5800,Harbar+2,429,551,8779575,3402,0 +5801,%3F%2B44+76+Corbas,467,479,698361257,9844,0 +5802,%2B44+75+Rang+du+Fliers,451,479,698361257,9653,0 +5803,Warzywniak+022,453,549,698290577,3787,0 +5804,CALL+961,544,548,699784536,10311,0 +5805,B018,487,449,699299123,9906,0 +5806,%7E059.,491,543,7139820,10184,0 +5807,0021+K55+and987+OZDR.,502,551,3613413,9845,5 +5808,%5B153%5D+North,564,469,848985692,10411,0 +5809,Strasznie+Mi%C5%82y+S%C4%85siad%21,546,445,556154,5716,0 +5810,00974,462,441,3909522,9885,2 +5812,018,581,533,8138506,10019,0 +5813,Osada,506,449,699098531,8381,0 +5814,Bloody+Mary,560,546,699785935,10311,8 +5815,Wioska+barbarzy%C5%84ska,487,507,848967710,10252,0 +5816,Lord+Arsey+KING,547,530,848956513,10285,0 +5817,014.+A-RE-SE-EY,579,524,848967710,10252,0 +5818,Wioska+barbarzy%C5%84ska,528,538,7581876,9350,0 +5819,KONFA+TO+MARKA%2C+NARKA,428,460,698152377,10300,0 +5820,SSS-Abadon,566,479,699347951,10357,0 +5821,Szlachcic,574,496,698867446,9771,0 +5822,Wioska+2,523,518,699385139,8230,0 +5823,024,456,436,9291984,10478,0 +5824,05%2A,571,543,699664910,9525,0 +5825,COUSINS,483,587,7976264,10292,0 +5826,KONFA+TO+MARKA%2C+NARKA,421,466,698152377,10294,0 +5827,%5B164%5D,578,542,8000875,8337,0 +5828,CALL+1072,519,531,699784536,10495,0 +5829,Wioska+barbarzy%C5%84ska,486,508,848967710,10252,0 +5830,.achim.,517,450,6936607,6969,0 +5831,032.,503,490,8788366,10495,9 +5832,yogi,533,552,2808172,10224,0 +5833,Wioska+barbarzy%C5%84ska,497,416,699658023,9714,0 +5834,022,518,541,848915531,8174,0 +5835,%23058,518,585,849001572,9711,0 +5836,KONFA+TO+MARKA%2C+NARKA,395,456,698152377,11962,0 +5837,%2B44+62+Saint+Laurent+de+Mure,420,464,698361257,9841,0 +5838,NOT%3F,435,538,9236866,6589,0 +5839,144+Leon,471,487,1497168,9761,0 +5840,%2AINTERTWINED%2A,472,571,698704189,9711,0 +5841,Wioska,383,524,849084005,10178,0 +5842,Wioska+barbarzy%C5%84ska,432,511,698971484,10008,0 +5843,030.+A-RE-SE-EY,576,531,848967710,10252,0 +5844,x+0002+dwa+x+to+ma%C5%82o+091,551,463,3909522,9127,0 +5845,PRO8L3M,425,499,7491093,10311,0 +5846,080,425,515,699851427,10129,0 +5847,036.,502,489,8788366,10252,0 +5848,Szlachcic,509,472,699098531,9616,0 +5849,.%3A014%3A.+Owca,511,428,8649412,8862,0 +5850,PRO8L3M,466,490,7491093,10495,0 +5851,%21Wioska+522,558,461,477415,10495,0 +5852,.achim.,529,394,6936607,10311,0 +5853,PRO8L3M,457,496,7491093,10495,0 +5854,Si%C4%99+wje%C5%BCd%C5%BCa+%21,498,500,699785935,10495,3 +5855,Zasiedmiog%C3%B3rogr%C3%B3d,539,421,699433558,10311,0 +5856,amator,511,545,848915531,9094,0 +5857,Zasiedmiog%C3%B3rogr%C3%B3d,538,426,699433558,7092,0 +5858,Santorini,436,451,698884287,8878,0 +5859,xxx,507,450,698239813,10495,0 +5860,Gattacka,581,517,699298370,10302,0 +5861,026,568,545,699316421,9532,0 +5862,Lilonia,516,556,849066849,7388,0 +5863,Pf+Konfederacja,495,496,848915730,10301,0 +5864,Warzywniak+009,444,546,698290577,2683,0 +5865,-024-,456,422,9291984,10490,0 +5866,lady,494,577,699703642,9508,0 +5867,010.+Marzyciel+Shrek,455,499,698290577,10243,0 +5868,Wioska,381,520,849084005,10178,0 +5869,ADEN,557,436,698588535,4727,0 +5870,x06,559,477,8459255,10400,4 +5871,-002-,535,448,849070335,9034,0 +5872,Wioska+Barbarzy%C5%84ska,543,483,698867483,9430,0 +5873,%7E%7ELataj%C4%85cyHolender%7E%7E,558,507,9174887,9727,0 +5874,%2B44+84,447,486,698361257,9075,0 +5875,Piek%C5%82o+to+inni,523,430,848956765,10160,0 +5876,Wioska+barbarzy%C5%84ska,411,413,698971484,10008,0 +5878,%7E%7ELataj%C4%85cyHolender%7E%7E,559,506,9174887,10006,0 +5879,%5B140%5D+North,579,464,848985692,10060,4 +5880,NOT%3F,429,524,9236866,10042,0 +5881,Brat447,447,493,699262350,10479,0 +5882,076,416,507,699851427,10129,0 +5883,Wioska_02,538,451,8674163,8805,0 +5884,Szlachcic,508,471,699098531,8915,0 +5885,NOT%3F,404,549,9236866,9902,0 +5886,%7C007%7C,551,570,873575,10306,0 +5887,Wioska+barbarzy%C5%84ska,456,533,699660539,3788,0 +5888,C031,528,457,699299123,6507,0 +5889,008,533,513,8191129,9835,0 +5890,%21Blastoise,572,448,699795378,9805,0 +5891,CALL+933,552,561,699784536,10311,2 +5892,0175,473,546,698971484,9720,0 +5893,022.+Infinity+War,428,549,8779575,4125,0 +5894,%5B072%5D,556,567,8000875,9956,0 +5895,FF005,465,515,699189792,10232,0 +5896,CALL+938,553,558,699784536,10311,0 +5897,003,578,535,8138506,10019,0 +5898,CZEKAM+NA+SZLACHTE,536,453,8155296,10243,0 +5899,Wioska+barbarzy%C5%84ska,589,503,8925695,3940,0 +5900,Szlachcic,484,467,699098531,10300,0 +5901,A048,500,420,699299123,10495,0 +5902,CALL+942,555,565,699784536,10311,0 +5903,-+Na+pierwsze%2C+deser,514,513,699785935,9860,0 +5904,JaawmG+P,620,474,8815749,10019,0 +5905,Dum+Spiro+Spero,490,554,848896948,9995,0 +5906,Pf+Konfederacja,487,493,848915730,10047,0 +5907,%7E%7ELataj%C4%85cyHolender%7E%7E,560,497,9174887,12021,0 +5908,CALL+935,551,559,699784536,10311,0 +5909,EKG+.%3A%3A.Inchi+%2B+R,480,609,33900,10495,0 +5910,Monetki,473,427,699098531,10294,5 +5911,004+%28Popeye14%29,411,576,698769107,9953,0 +5912,010,464,579,848886870,10495,0 +5913,NOT%3F,431,540,9236866,8190,0 +5914,Wioska+barbarzy%C5%84ska,482,466,699098531,9835,0 +5915,0021,506,496,698599365,9547,0 +5916,KONFA+TO+MARKA%2C+NARKA,442,469,698152377,10297,0 +5917,...Just+like+that,463,479,699723284,6366,0 +5918,NOT%3F,430,541,9236866,9950,0 +5919,%23Weezing,569,463,699795378,10971,0 +5920,0119,467,550,698659980,7568,0 +5921,0058,589,514,698416970,8767,0 +5922,028,588,564,699373599,10047,0 +5923,0025,504,507,698599365,9655,0 +5924,Lord+Arsey+KING,517,496,848956513,10285,0 +5925,004+Mamy+pierwsz%C4%85+wysiadk%C4%99%21,603,486,699272633,10476,0 +5926,10011,532,555,848915531,10311,0 +5927,036+-+one,421,583,225023,10495,0 +5928,Pf+Konfederacja,484,503,848915730,9530,0 +5929,034,414,521,699851427,10042,0 +5930,015,526,498,8191129,9976,0 +5931,-%5B003%5D-+Kanczenczonga,555,482,849092827,8124,0 +5932,023,531,428,699788305,10019,5 +5933,KIELBA+071,474,579,699342219,10487,0 +5934,F007,507,530,699189792,9750,0 +5935,A001,609,450,699722599,10362,0 +5936,...Just+like+that,471,475,699723284,9639,0 +5937,Szlachcic,506,470,699098531,9552,0 +5938,-007-Richmond%2CVA,449,517,698971484,9364,6 +5939,.%3A011%3A.+Fresk,517,419,8649412,9839,0 +5940,KONFA+TO+MARKA%2C+NARKA,423,472,698152377,10162,0 +5941,%7E%7ELataj%C4%85cyHolender%7E%7E,560,507,9174887,10139,0 +5942,020+Roswell,441,474,1497168,9761,0 +5943,Lord+Arsey+KING,519,490,848956513,10285,0 +5944,.achim.,560,446,6936607,10311,0 +5945,0007,610,549,477415,10495,0 +5946,7.62+mm,495,431,699777234,10019,0 +5947,A013,513,382,7758085,9925,0 +5948,7.62+mm,466,444,699777234,10019,0 +5949,Sparta_56,487,574,2585846,9638,0 +5950,%5B131%5D,560,535,8000875,9616,0 +5951,B070,484,454,699299123,10495,0 +5952,00976+Alakazam,460,434,3909522,10226,0 +5953,%5B019%5D+Gbuo+gi,584,532,848985692,10217,2 +5955,065.,507,492,8788366,10252,0 +5956,A.010,414,575,849088243,10237,0 +5957,Szlachcic+%21%21%21,503,469,699098531,9891,0 +5958,Gattacka,587,498,699298370,9741,0 +5959,0020+K55+and987+OZDR.,506,561,3613413,9861,0 +5960,A032,496,416,699299123,10495,0 +5961,0019,466,466,848913037,9993,0 +5962,%2B44+84,441,484,698361257,9374,0 +5963,%21Arcanine,571,447,699795378,9232,0 +5964,Wioska_08,556,448,8674163,4142,0 +5965,Lord+Arsey+KING,520,497,848956513,10285,0 +5966,Weso%C5%82ych+%C5%9Awi%C4%85t,562,449,699368887,9994,0 +5967,%5B355%5D+Chor%C4%85giewka+na+wietrze,593,440,848985692,10474,0 +5968,ChceszPokojuSzykujSi%C4%99DoWojny,467,504,699333701,6398,0 +5969,s181eo02,396,449,393668,9886,0 +5970,023+%7C,559,559,8000875,10144,0 +5971,Wioska+barbarzy%C5%84ska,432,443,698884287,10178,0 +5972,Szlachcic+%21%21%21,497,466,699098531,7249,0 +5973,029.+ALFI,477,570,8539216,930,0 +5974,Lord+Arsey+KING,538,535,848956513,10285,0 +5975,keepo,479,512,848967710,9666,0 +5976,Front_30,453,520,2585846,5940,0 +5977,R%C4%99cznik+do+zmiany,412,485,699697558,10495,0 +5978,lady,510,559,699703642,10471,0 +5979,%7E%7ELataj%C4%85cyHolender%7E%7E,586,511,9174887,10149,0 +5980,164+Brasilia,481,476,1497168,9761,0 +5981,%2AAteny_65,470,539,2585846,9638,0 +5983,009.+ALFI,480,571,8539216,2432,3 +5985,Wioska+barbarzy%C5%84ska,454,455,699660539,10492,0 +5986,Semantyka,504,523,699785935,10019,0 +5987,0027,539,473,699432672,10160,0 +5988,037+Minneapolis,448,463,1497168,9761,2 +5989,B.001,410,568,849088243,10495,0 +5990,Village,517,580,849094067,11479,0 +5991,Zasiedmiog%C3%B3rogr%C3%B3d,518,427,699433558,10068,0 +5992,x+012089,551,462,3909522,8370,0 +5993,.%3A121%3A.+Niangmen,516,414,848934935,9899,0 +5994,Myk+i+do+kieszonki,381,509,9319058,9799,0 +5995,KONFA+TO+MARKA%2C+NARKA,441,473,698152377,10654,0 +5996,%2AAteny_60,476,523,2585846,9708,0 +5997,Nic+na+krech%C4%99,511,510,699785935,5855,0 +5998,029+Twierdza,622,521,8323711,9542,0 +5999,Os+Konfederacja,473,438,848915730,9812,0 +6000,Jaaa,575,548,698635863,10495,0 +6001,%2B44+71+Champagne+au+Mont+dOr,419,473,698361257,9849,0 +6002,Pilonia,520,552,849066849,8425,0 +6003,7.62+mm,490,438,699777234,5160,0 +6004,008,559,536,699194766,9555,0 +6005,NOT%3F,428,522,9236866,10042,0 +6006,-%5B034%5D-+Molamenqing,558,473,849092827,7201,0 +6007,Osada+koczownik%C3%B3w,469,585,699364813,10311,1 +6008,NOT,418,428,9236866,10042,0 +6009,Sparta_72,471,581,2585846,9638,0 +6010,.%3A048%3A.Chillout,507,393,848934935,10495,0 +6011,015+%7C,562,550,8000875,10481,3 +6012,Taran,581,464,699759128,10237,0 +6013,Skrzyd%C5%82a,496,528,699785935,9835,0 +6014,00975+Avada,461,440,3909522,10142,4 +6015,A.012,412,580,849088243,10559,0 +6016,Wioska+Nacz0,394,462,698807570,10057,0 +6017,002,605,497,699573053,10495,0 +6018,Suppi,443,450,699856962,9700,0 +6019,20017,515,548,848915531,9392,0 +6020,Joms+027,528,424,699756210,10252,0 +6021,JaamMwG+006,526,521,848987051,9814,0 +6022,Wioska+Barbarzy%C5%84ska,549,482,698867483,10019,0 +6023,Szlachcic,566,474,698867446,9922,0 +6024,Wioska_04,543,446,8674163,5076,0 +6025,Polania+003,539,450,758104,9338,0 +6026,K44+x031.,453,431,698364331,7075,0 +6027,%7E%7ELataj%C4%85cyHolender%7E%7E,559,504,9174887,10143,0 +6028,021+Pensacola,439,478,1497168,9761,0 +6029,%3F%2B44+85+Lyon+Brotteaux,455,485,698361257,9844,0 +6030,Bucks+x+Kamiiiru,449,610,848955783,10362,0 +6031,%5B087%5D,551,499,8000875,9894,0 +6033,Zasiedmiog%C3%B3rogr%C3%B3d,520,429,699433558,10311,0 +6034,%5B131%5D+North,582,475,848985692,10054,0 +6035,Village,517,576,849094067,12154,0 +6036,Wioska_03,538,448,8674163,8805,0 +6037,%5B152%5D+North,568,470,848985692,10411,0 +6038,Wioska+barbarzy%C5%84ska+017%7C,557,411,6343784,9619,0 +6039,NOT%3F,429,534,9236866,9693,0 +6040,%C5%9Amieszkiii,493,590,3454753,8411,0 +6041,7.62+mm,489,445,699777234,10019,0 +6042,027,533,432,699788305,8986,0 +6043,Wioska+Muszti,550,608,699781762,10495,0 +6045,Wioska+7,525,509,699385139,7743,0 +6047,%5B101%5D,551,535,8000875,9957,0 +6048,Wioska+8,533,516,699385139,9115,0 +6049,City+Ground,547,515,699194766,6342,0 +6050,Niespodzinaka+%3F,467,506,699333701,9882,0 +6051,Zasiedmiog%C3%B3rogr%C3%B3d,525,437,699433558,10297,0 +6052,elqueria,554,387,3600737,9013,0 +6053,Szlachcic,578,497,699759128,9679,0 +6054,A022,493,415,699299123,10495,0 +6055,%2B44+74+Airon+Notre+Dame,443,476,698361257,9655,0 +6056,%28002%29,423,544,699846892,10160,0 +6057,NOT%3F,433,534,9236866,4605,0 +6058,Zasiedmiog%C3%B3rogr%C3%B3d,535,424,699433558,10311,0 +6059,%23043,455,604,699605333,10728,0 +6060,0033,519,510,698599365,10019,0 +6061,PRO8L3M,420,499,7491093,10311,0 +6062,%5B074%5D+Tihlum+rawh,533,512,848985692,10311,0 +6063,10.+Dennis+Cranmer,562,478,698702991,10178,0 +6064,%C5%9Amieszkii,519,574,3454753,10478,0 +6065,Szlachcic+030,540,526,758104,8024,0 +6066,Porysowany,513,509,699785935,5618,0 +6067,041,540,401,7271812,10495,0 +6068,B002,487,447,699299123,10495,0 +6069,%2AINTERTWINED%2A,508,564,698704189,9711,0 +6070,.achim.,527,413,6936607,10311,0 +6071,Obl%C4%85g,439,554,699443920,8840,0 +6072,NOT%3F,429,545,9236866,3247,0 +6073,0.Mobilek,519,580,698215322,10495,8 +6074,7.62+mm,492,426,699777234,10019,0 +6075,Only,436,558,699443920,3758,0 +6076,060.,514,501,8788366,6918,0 +6077,Brat447,464,504,699262350,10374,0 +6078,1xxxxxxxxxxxx,467,429,9291984,10236,0 +6079,Monetki,470,415,699098531,10292,0 +6080,%2305.,526,470,848967710,10971,0 +6081,009742,464,443,3909522,9037,0 +6082,Praga,426,457,699660539,9841,0 +6083,202+Kingston,462,463,1497168,9261,0 +6084,F092,489,534,699189792,9878,0 +6085,------------------4,459,433,9291984,10410,0 +6086,KIELBA+037,444,571,699342219,10495,0 +6087,079.+ALFI,480,556,8539216,1725,0 +6088,Wioska+barbarzy%C5%84ska,590,485,8925695,7974,0 +6089,Forteca,501,569,606407,10306,0 +6090,A%23002%23,404,472,698807570,12154,0 +6091,%5B088%5D,541,487,848985692,9849,7 +6092,%C5%9Amieszki,536,614,3454753,9199,0 +6093,.%3A020%3A.+Chillout,509,419,848934935,6255,0 +6094,BBB,554,437,1006847,9341,0 +6095,028,532,432,699788305,8741,0 +6096,%2B44+84,443,480,698361257,9669,0 +6097,Suppi,430,457,699856962,9052,0 +6098,Osada,496,451,699098531,9632,0 +6099,011,439,491,699510259,9761,0 +6100,2.+Grille,493,534,849087855,7848,0 +6101,Pary%C5%BC,424,457,699660539,10083,0 +6102,Piek%C5%82o+to+inni,515,486,848956765,8826,0 +6103,F048,488,525,699189792,9335,0 +6104,-------------2,467,426,9291984,10362,8 +6105,006341,440,432,3909522,8754,0 +6106,Lord+Arsey+KING,529,520,848956513,8621,0 +6107,016+%7C,560,550,8000875,9956,4 +6108,%7E056.,489,542,7139820,10495,0 +6109,Bucksbarzy%C5%84sKamiiiru,437,523,848955783,10654,0 +6110,Horyzont+zdarze%C5%84,536,617,7581876,10495,0 +6111,Wioska+Barbarzy%C5%84ska,543,491,698867483,10019,0 +6112,A060,502,430,699299123,10311,0 +6113,NOT%3F,430,516,9236866,10060,0 +6114,OOIV,508,437,699658023,9267,3 +6115,050,528,573,699189792,9756,0 +6116,NOT%3F,426,543,9236866,9136,0 +6117,Wioska+4,443,542,698971484,2849,0 +6118,NOT%3F,431,539,9236866,3619,0 +6119,0012.+A+-+Petrovya,608,525,7125212,10160,0 +6120,Gratuluje+m%C3%B3zgu,442,538,698971484,7426,0 +6121,Wioska+barbarzy%C5%84ska,524,440,698895940,7030,0 +6122,018+Norfolk,441,475,1497168,9761,0 +6123,100+Jamestown,474,482,1497168,9761,0 +6124,NOT%3F,423,521,9236866,10042,0 +6125,045+Seattle,467,467,1497168,9761,0 +6126,Kasyno,448,518,7249451,9652,0 +6127,yogi,545,610,2808172,10019,0 +6128,065.+Palmyra,618,472,849091866,10233,0 +6129,Wioska+barbarzy%C5%84ska,456,539,3909522,2786,0 +6130,keepo,478,506,848967710,10495,0 +6131,%230064+Moleku%C5%82a+duszy,490,562,9272054,10000,0 +6132,Os+Konfederacja,469,450,848915730,9976,0 +6133,Piek%C5%82o+to+inni,511,472,848956765,10019,0 +6134,013+Cherrygrove+City,590,498,699441366,11109,0 +6135,Szlachcic,490,479,699098531,10099,2 +6136,033.+ALFI,477,552,8539216,1501,0 +6137,Castle+of+glass%21,497,500,699785935,9835,0 +6138,%7E%7ELataj%C4%85cyHolender%7E%7E,586,509,9174887,10160,0 +6139,A053,501,423,699299123,10178,0 +6140,zaboli,551,451,699368887,7543,0 +6141,C044,533,463,699299123,9302,0 +6142,Kentin+ufam+Tobie,436,405,699783765,10000,0 +6143,0005+CH,425,410,3909522,10495,0 +6144,19+Valhalla,484,506,698290577,5357,0 +6145,Piek%C5%82o+to+inni,525,467,848956765,9761,0 +6146,069.,510,493,8788366,10252,0 +6147,Warzywniak+014,449,546,698290577,2322,0 +6148,NOT%3F,432,544,9236866,4065,0 +6149,BBB,559,436,1006847,8368,0 +6150,001.+Kaer+Morhen,563,399,699799629,10495,0 +6151,-025-,459,426,9291984,10479,0 +6152,Angband,510,522,849091897,8195,0 +6153,0Wioska+barbarzy%C5%84ska,473,514,699781762,4030,0 +6154,0.Davenport,521,581,698215322,10211,0 +6155,Lord+Arsey+KING,521,496,848956513,10285,0 +6156,Wioska+427,559,501,477415,10495,0 +6157,%2AINTERTWINED%2A,465,559,698704189,9403,0 +6158,monetki,507,441,699098531,9367,0 +6159,-+111+-,538,572,849018239,10000,0 +6160,Szlachcic,502,472,699098531,9693,0 +6161,0044+K55+and987+OZDR,510,556,3613413,10083,0 +6162,Suppi,471,539,699856962,9896,0 +6163,%2AINTERTWINED%2A,530,559,698704189,9711,0 +6164,B001,486,449,699299123,10484,0 +6165,%3F%2B44+76+Recques+sur+Course,467,475,698361257,9653,0 +6166,xxx,486,424,698239813,10294,0 +6167,Osada,497,446,699098531,10303,0 +6168,KONFA+TO+MARKA%2C+NARKA,435,472,698152377,10432,0 +6169,2.Kanonjgpd+%21%21%21,496,536,849087855,9908,0 +6170,042,419,523,699851427,10042,0 +6171,Moria,520,539,7581876,10019,4 +6172,Wioska+Wojtek150+003,531,520,7581876,10019,0 +6173,%C5%9Amieszkiii,480,585,3454753,8316,0 +6174,113+Choroszcz,540,454,7092442,2142,0 +6175,F047,486,524,699189792,9130,0 +6176,Rampage+2,525,477,699355601,3148,0 +6177,Winter+is+coming,505,572,699364813,9960,0 +6178,Employee+Housing+Area,515,609,8199417,10495,0 +6179,%7E%7ELataj%C4%85cyHolender%7E%7E,583,509,9174887,10210,0 +6180,z+020,538,593,699342219,10216,0 +6181,040+Chattanooga,448,467,1497168,9761,0 +6182,0.Palm+Bay+Mob,525,579,698215322,10047,0 +6183,017,532,514,8191129,9628,0 +6184,0093,465,547,698659980,8638,0 +6185,.%3A070%3A.+Chillout,505,421,848934935,7435,0 +6186,.achim.,541,432,6936607,8375,0 +6187,216+Mount+Gambier,533,428,1497168,9761,0 +6188,SPARTA_71,468,581,2585846,9638,0 +6189,Dum+Spiro+Spero,494,552,848896948,10000,0 +6190,x+0001,548,461,3909522,6082,0 +6191,ChceszPokojuSzykujSi%C4%99DoWojny,462,496,699333701,10382,0 +6193,030.+ALFI,477,571,8539216,1290,0 +6194,002.+Licho,508,591,699703642,10160,0 +6195,yogi,513,553,2808172,10019,0 +6196,ADEN,567,438,698588535,10035,0 +6197,Osada+L,426,547,699856962,8538,4 +6199,Os+Konfederacja,477,447,848915730,10068,0 +6200,Kattegat,536,384,698350371,10495,0 +6201,NOT%3F,427,517,9236866,10042,0 +6202,kto+ananasowy+pod+wod%C4%85+ma+dom,574,501,699628084,9797,0 +6203,%5B132%5D+North,577,472,848985692,10295,8 +6204,PRO8L3M,411,499,7491093,10495,0 +6205,ChceszPokojuSzykujSi%C4%99DoWojny,458,511,699333701,10362,0 +6206,...Just+like+that,452,505,699723284,10452,0 +6207,083.+ALFI,482,562,8539216,1846,8 +6208,Weso%C5%82ych+%C5%9Awi%C4%85t,568,451,699368887,11653,0 +6209,Kontrola+Jako%C5%9Bci%21,499,504,699785935,9835,0 +6210,Village,519,584,849094067,12154,0 +6211,K55,543,514,848967710,10252,0 +6212,A030,497,413,699299123,10259,0 +6213,Mniejsze+z%C5%82o+0066,421,505,699794765,5227,0 +6214,018,527,435,699788305,8632,0 +6215,075.+%7CXD%7C,496,514,848967710,10209,0 +6216,KONFA+TO+MARKA%2C+NARKA,442,457,698152377,10306,0 +6217,025,436,486,699510259,9808,0 +6218,XnX-03,438,542,698971484,7694,0 +6219,Ko%C5%84czy%C4%87+czas%3A%29,547,450,699368887,6300,0 +6220,003+Osada,527,466,848967710,6441,2 +6221,018,554,399,849063849,10224,0 +6222,33-wara+od+moich+wiosek,543,438,849002091,7095,0 +6223,Suppi,442,447,699856962,9570,0 +6224,089+Orzech,545,465,7092442,7910,0 +6225,004+Uber+Schlesien,567,480,849031818,7604,0 +6226,050+%7C,550,537,8000875,10425,0 +6227,0054,513,526,699432672,10495,0 +6228,Opti,439,558,699443920,4635,0 +6229,0063+La+Casa+De+Los+Hombres,446,427,3909522,10401,0 +6230,Szlachcic,578,495,699759128,10237,0 +6231,%230030+%C5%9Awiebodzin,480,564,9272054,10000,2 +6232,U-6,544,427,3600737,6855,0 +6233,Piek%C5%82o+to+inni,512,483,848956765,5113,0 +6234,069+Harrisburg,460,474,1497168,9761,0 +6235,72k%24+Grvvyq,548,525,699676005,10495,0 +6236,Carsultyal.,485,554,698704189,9711,0 +6237,A025,492,417,699299123,10495,0 +6238,NOT%3F,435,527,9236866,10042,0 +6239,0111,468,559,698659980,9045,0 +6240,%2AINTERTWINED%2A,469,566,698704189,9711,0 +6241,Lynortis,458,541,699698253,4224,0 +6242,Joms+020,531,418,699756210,9771,0 +6243,Front_17,458,526,2585846,3037,0 +6244,061,441,496,699510259,9741,0 +6245,R%C4%99cznik+do+zmiany,416,488,699697558,11581,0 +6246,DEFF+CENTRUM,539,469,8155296,9523,0 +6247,136+Puerto+Vallarta,467,482,1497168,9761,0 +6248,%21Wioska+412,563,509,477415,10495,0 +6249,002,504,381,849010255,10019,0 +6250,Piek%C5%82o+to+inni,525,435,848956765,10160,0 +6251,Piek%C5%82o+to+inni,522,415,848956765,10160,0 +6252,016+Goldenrod+City,590,504,699441366,11109,0 +6254,Joms+034,534,418,699756210,10273,0 +6255,Winter+is+coming,503,580,699364813,9835,0 +6256,020,512,531,7581876,5751,0 +6257,Forteca,500,569,606407,10295,0 +6258,Ulu-mulu,431,600,699697558,10316,0 +6259,KIELBA+007,446,568,699342219,10247,0 +6260,0063,462,462,848913037,7745,0 +6261,Piek%C5%82o+to+inni,510,484,848956765,5702,0 +6262,%C5%9Amieszkiii,491,579,3454753,8258,0 +6263,Wioska+barbarzy%C5%84ska,434,511,698971484,10008,0 +6264,075+Nowy+Orlean,470,456,1497168,9761,0 +6265,West+04,587,475,698702991,9753,0 +6266,xxx,490,442,698239813,5944,0 +6267,CALL+1060,519,535,699784536,10495,0 +6268,Wioska+18,520,511,699385139,9480,0 +6269,08+Zakr%C4%99%C4%87+kur%C4%85+sw%C4%85,473,502,699781762,10178,0 +6270,003.,608,526,6520732,10019,0 +6271,Front_01,463,519,2585846,9735,0 +6272,Brat447+XXX,386,503,699262350,10495,0 +6273,020,457,436,9291984,10478,0 +6274,002,573,409,849064752,10311,0 +6275,Szlachcic,490,459,699098531,10178,0 +6276,Lord+Arsey+KING,521,500,848956513,10285,0 +6277,Taran,577,462,699759128,10237,0 +6278,Wioska+barbarzy%C5%84ska,533,505,848967710,10495,0 +6279,151+Quetzaltenango,453,465,1497168,9761,0 +6280,001,504,479,698881022,10231,0 +6281,Szlachcic,561,492,698867446,9258,0 +6282,163,538,418,849064752,10311,0 +6283,Szlachcic+011,557,528,758104,9338,2 +6284,Pf+Konfederacja,492,489,848915730,8870,0 +6285,B008,485,448,699299123,10484,0 +6286,Warzywniak+006,448,543,698290577,3021,0 +6287,007,605,496,699573053,10495,0 +6288,010,547,522,699194766,10107,0 +6289,Wioska+Barbarzy%C5%84ska,546,481,698867483,8899,0 +6290,0003,511,518,699432672,10495,0 +6291,-+021+-,539,600,849018239,10000,0 +6292,KONFA+TO+MARKA%2C+NARKA,438,459,698152377,10358,0 +6293,CHW%23038,480,521,699781762,8792,0 +6294,PRO8L3M,474,483,7491093,8397,0 +6295,keepo,484,534,848967710,10495,0 +6296,210+Port+Pirie,534,433,1497168,9835,0 +6297,Szlachcic,491,467,699098531,10297,1 +6298,Wioska+HI,427,551,8779575,2923,0 +6300,.%3A040%3A.+Hak,514,432,8649412,6424,0 +6301,Szlachcic+P%C3%B3%C5%82noc+006,624,506,698562644,7101,0 +6302,KONFA+TO+MARKA%2C+NARKA,440,457,698152377,10654,0 +6303,%2B44+72+Genas,427,474,698361257,9841,0 +6304,Front_10,459,523,2585846,1916,0 +6305,%230111+Talerz,479,541,698704189,9714,0 +6306,039,435,501,699510259,9747,0 +6307,Brat447,460,506,699262350,7374,0 +6308,Szlachcic,569,515,698867446,9922,0 +6309,a+Wioska+1,454,532,3909522,4864,0 +6310,KONFA+TO+MARKA%2C+NARKA,423,461,698152377,10290,0 +6311,JM2,561,454,699368887,5839,0 +6312,Kapitan_James_B%C5%82%C4%85d_007,557,455,699368887,10728,0 +6313,013+Fiona,448,510,698290577,5337,0 +6314,K45+-+001,561,464,6510480,10317,0 +6315,Lord+Arsey+KING,509,499,848956513,10285,0 +6316,Suppi,437,520,699856962,9652,0 +6317,xxxx,507,433,698239813,10495,0 +6318,Yogi,534,527,2808172,5334,0 +6319,P.023,538,552,873575,10254,0 +6320,%2AINTERTWINED%2A,465,566,698704189,9711,2 +6321,Suppi,443,528,699856962,9575,0 +6322,004,528,467,848967710,6396,0 +6323,%28001%29,420,537,699846892,10152,0 +6324,%28020%29,427,537,699846892,10146,0 +6325,Lord+Arsey+KING,515,495,848956513,10285,0 +6326,Piek%C5%82o+to+inni,521,435,848956765,10160,0 +6327,019,586,536,8138506,9546,0 +6328,K45+-+003,559,464,6510480,10079,0 +6329,095,413,522,699851427,10129,0 +6330,Gattacka,582,515,699298370,9847,0 +6331,%2B44+72+Coquelles,428,470,698361257,9849,0 +6332,%2AINTERTWINED%2A,479,542,698704189,9711,0 +6333,...Just+like+that,459,488,699723284,5851,0 +6334,Ja%C5%82ow%C4%99sy,535,470,8155296,8805,0 +6335,Piek%C5%82o+to+inni,521,426,848956765,10160,0 +6336,CALL+981,549,567,699784536,10311,0 +6337,Szlachcic,494,480,699098531,9952,0 +6338,keepo,477,519,848967710,8239,0 +6339,0098,459,439,3909522,10297,0 +6340,Wioska+barbarzy%C5%84ska,510,532,7581876,6735,0 +6341,Zasiedmiog%C3%B3rogr%C3%B3d,539,426,699433558,5699,0 +6342,Kasyno,443,509,7249451,9865,0 +6343,F016,497,543,699189792,9753,0 +6344,Wioska,379,518,849084005,10178,0 +6345,Orish,430,555,699443920,3323,0 +6346,041,417,526,699851427,10129,0 +6347,Oplot,437,557,699443920,6474,0 +6348,KONFA+TO+MARKA%2C+NARKA,445,468,698152377,10303,0 +6349,-+039+-,532,581,849018239,10000,0 +6350,Szlachcic,466,421,698388578,10237,0 +6351,SsSs,453,501,1536625,7563,0 +6352,-%5B020%5D-+Nuptse,558,481,849092827,7318,0 +6353,0001+Gehenna+Facility,387,460,698807570,10703,0 +6354,10006,529,562,848915531,11130,0 +6355,191+Cartagena,470,472,1497168,9761,0 +6356,KONFA+TO+MARKA%2C+NARKA,418,483,698152377,10311,7 +6358,%7E%7ELataj%C4%85cyHolender%7E%7E,585,509,9174887,10155,0 +6359,7.62+mm,493,432,699777234,10019,0 +6361,Horyzont+zdarze%C5%84,524,532,7581876,10019,0 +6362,Monetki,475,423,699098531,10290,0 +6363,0Wioska+barbarzy%C5%84ska,482,527,699781762,8786,0 +6364,PRO8L3M,461,498,7491093,7492,0 +6365,021,527,516,8191129,6954,0 +6366,Ateny_75,474,521,2585846,4550,0 +6367,24.,565,475,698702991,10178,0 +6368,001.+Gloria+Victis,439,605,848886973,10357,0 +6369,Fajna+030,449,567,8539216,8816,0 +6370,0078,528,542,699432672,10495,0 +6371,%7E%7ELataj%C4%85cyHolender%7E%7E,585,508,9174887,10208,0 +6372,1.+Type+58+G+%21%21%21,494,531,849087855,10019,0 +6373,KONFA+TO+MARKA%2C+NARKA,418,480,698152377,10311,6 +6374,Szlachcic+%21%21%21,510,476,699098531,9835,0 +6375,028+%7C,556,561,8000875,10143,0 +6376,Wioska+barbarzy%C5%84ska,521,542,7581876,7376,0 +6377,keepo,481,534,848967710,9817,0 +6378,.%3A069%3A.+Chillout,503,418,848934935,10107,0 +6379,NOT%3F,438,530,9236866,9897,0 +6380,NIERAJ001,469,612,33900,10356,0 +6381,073.,568,458,849094609,7337,0 +6382,0076,456,395,699431255,9835,0 +6383,Gattacka,590,493,699298370,9750,0 +6384,A0006,388,479,8841266,10362,0 +6385,Forteca,500,570,606407,10311,0 +6386,FF001,469,517,699189792,7145,0 +6387,040,436,502,699510259,9742,0 +6388,%5B145%5D,568,535,8000875,8962,0 +6389,%5BA%5D_%5B023%5D+Dejv.oldplyr,404,486,699380607,10495,0 +6390,KONFA+TO+MARKA%2C+NARKA,437,463,698152377,10294,0 +6391,109+Aha,551,467,7092442,9563,0 +6393,%7E%7ELataj%C4%85cyHolender%7E%7E,566,495,9174887,9535,0 +6394,Your+Body%21,499,502,699785935,9835,0 +6395,Kasyno,448,514,7249451,10008,0 +6396,Wioska+barbarzy%C5%84ska,431,510,698971484,9275,0 +6397,0063+11,452,427,3909522,9919,0 +6398,P.022,539,550,873575,9964,0 +6399,Wioska+barbarzy%C5%84ska,471,432,9291984,8493,0 +6400,Pf+Konfederacja,482,500,848915730,9938,0 +6401,025,438,597,698659980,9747,0 +6402,002.,523,555,699695167,9902,0 +6403,050,425,517,699851427,10129,0 +6404,SsSs,452,496,1536625,8318,0 +6406,Fajna+090,455,568,8539216,828,0 +6407,%2AAteny_47,468,529,2585846,9638,0 +6408,%5B081%5D,555,547,8000875,9959,5 +6409,LE%C5%9ANE+KR%C3%93LESTWO,537,454,8155296,10184,0 +6410,7.62+mm,471,433,699777234,10019,0 +6411,Suppi,428,451,699856962,9808,0 +6412,Wioska+Barbarzy%C5%84ska,542,478,698867483,10019,0 +6413,105+Saskatoon,476,483,1497168,9761,0 +6414,CALL+954,545,554,699784536,10311,0 +6415,Erebor+7,499,591,699383121,7858,0 +6416,Szlachcic,464,420,698388578,10237,0 +6417,0056+Zodiak,439,428,3909522,10444,0 +6418,NOT%3F,413,507,9236866,9993,0 +6419,-+215+-,551,573,849018239,10000,0 +6420,.achim.,525,398,6936607,10311,0 +6421,kathare,496,577,873575,10011,0 +6422,Carsultyal.,487,553,698704189,6053,0 +6423,Osada,492,453,699098531,10113,0 +6424,Konfiasze,474,495,698908912,10971,0 +6425,014+%7C,568,552,8000875,10232,0 +6426,Horyzont+zdarze%C5%84,515,535,7581876,9835,0 +6427,00901,452,436,3909522,8501,0 +6428,%230036+Agrest,498,567,9272054,10019,0 +6429,Os+Konfederacja,474,437,848915730,9853,0 +6431,BBB,553,438,1006847,8653,0 +6432,Wioska+barbarzy%C5%84ska,441,531,699856962,3078,0 +6433,Wioska+423,558,504,477415,10495,0 +6434,Wioska,381,501,849084005,10178,0 +6435,PRO8L3M,464,487,7491093,8999,0 +6436,sas,536,539,7581876,10051,0 +6437,Osada,493,445,699098531,10306,0 +6438,%230031+%C5%9Awidwin,485,566,9272054,10000,0 +6439,Piek%C5%82o+to+inni,516,471,848956765,9761,0 +6440,xxx,479,430,698239813,10495,0 +6441,South+K45,595,431,699146580,10042,0 +6442,0063+b2qqqqqqqqqqqqqqqqqqqqqqqqq,453,429,3909522,10083,0 +6443,%230012+Szalony+Ogier,485,549,9272054,10000,0 +6445,KONFA+TO+MARKA%2C+NARKA,441,458,698152377,10311,0 +6446,ChceszPokojuSzykujSi%C4%99DoWojny,469,511,699333701,9642,0 +6447,Szlachcic,577,494,699759128,10237,0 +6449,0085,545,527,699432672,8009,0 +6450,Suppi,424,425,699856962,9881,0 +6451,-%5B004%5D-+Lhotse,555,481,849092827,7524,0 +6452,-+063+-,536,570,849018239,10000,0 +6453,BETI+004,457,572,8539216,1824,0 +6454,0051+Bombas,436,424,3909522,10444,0 +6455,013,581,534,8138506,10019,0 +6456,SZYMI+PALACE+1,392,539,9167250,9756,0 +6457,015,560,461,699368887,5877,0 +6458,Wioska+barbarzy%C5%84ska,437,443,698884287,10285,0 +6459,Os+Konfederacja+%2B,471,443,848915730,10001,4 +6460,.achim.,534,453,6936607,10311,0 +6461,Warzywniak+010,443,545,698290577,2062,0 +6462,Ogr%C3%B3d+Warzywny,450,561,7249451,9111,0 +6463,Wioska+barbarzy%C5%84ska,427,448,698884287,10285,0 +6464,Szlachcic+042,567,526,758104,9343,0 +6465,Mordor,503,531,849091897,10971,3 +6466,Suppi,432,452,699856962,9738,0 +6467,7.62+mm,500,428,699777234,10019,0 +6468,SSJ+002,489,596,699054373,9761,0 +6469,038,485,482,699510259,10237,0 +6470,0049+K55+and987+OZDR,500,553,3613413,9914,0 +6471,003+Fiona,446,504,698290577,5911,0 +6472,Szlachcic,501,468,699098531,9899,0 +6473,Osada,498,442,699098531,10295,0 +6474,Monetki,482,415,699098531,10297,0 +6475,0208,524,592,698659980,10019,0 +6476,Suppi,436,520,699856962,9559,0 +6477,Ost-in-Edhil,503,512,849091897,8751,0 +6478,Jaaa,581,536,698635863,10484,0 +6479,001.+Harna%C5%9B,428,550,8779575,9825,0 +6480,Marienburg+4,528,476,699355601,5368,0 +6481,0029,561,391,699485250,10211,0 +6482,Szlachcic,564,494,698867446,9721,4 +6483,Wioska+Barbarzy%C5%84ska,544,480,698867483,9478,0 +6484,015+Texas,432,426,9291984,10495,0 +6485,Suppi,440,524,699856962,9553,0 +6486,075.,570,461,849094609,9955,0 +6487,064,554,433,699761749,10495,0 +6488,P.010,539,561,873575,9915,0 +6489,Winter+is+coming,508,578,699364813,9868,0 +6490,Winter+is+coming,440,545,698971484,3178,0 +6491,.achim.,532,451,6936607,7377,0 +6492,0074,549,527,699432672,10495,0 +6493,KONFA+TO+MARKA%2C+NARKA,434,463,698152377,10306,0 +6494,-014-,453,415,9291984,10487,0 +6495,aaa,565,484,699347951,9342,0 +6496,NOT%3F,436,532,9236866,8093,0 +6497,%C5%9Amieszkii,517,571,3454753,9196,0 +6498,Opas,434,560,699443920,3529,0 +6499,0.Phoenix,522,586,698215322,9970,3 +6500,ADEN,559,448,698588535,10178,0 +6501,Wioska+barbarzy%C5%84ska,437,444,698884287,10285,0 +6502,Os+Konfederacja+%2B,476,445,848915730,10001,0 +6503,Szlachcic,571,497,699759128,10237,0 +6504,%7C008%7C,552,570,873575,10484,0 +6505,JaamMwG+018,525,517,848987051,9156,0 +6506,ADEN,558,446,698588535,10072,0 +6507,%21Wioska+503,578,455,477415,10495,0 +6508,PYRLANDIA+040+%24%2BC,578,594,33900,10401,0 +6509,025+Bayou+La+Batre,449,470,1497168,9797,0 +6510,...Just+like+that,453,505,699723284,10452,0 +6511,Mniejsze+z%C5%82o+0055,421,506,699794765,7553,0 +6512,Kasyno,442,510,7249451,10093,3 +6513,021,583,458,849031818,9181,0 +6514,A008,489,415,699299123,10495,0 +6515,Brat447,443,495,699262350,10476,0 +6516,NOT%3F,434,529,9236866,10042,0 +6517,Gattacka,587,501,699298370,9821,0 +6518,B068,473,472,699299123,10495,0 +6519,D03,548,463,699368887,10580,8 +6520,Front_05,460,521,2585846,3756,0 +6521,F060,489,523,699189792,9434,0 +6522,X03,538,472,6923061,2525,0 +6523,002+Fiona,445,503,698290577,6893,0 +6524,02%2A,575,531,699664910,7994,0 +6525,%C5%9Amieszkii,517,556,3454753,9051,0 +6526,ADEN,555,428,698588535,9971,0 +6527,Wioska+barbarzy%C5%84ska,586,520,699851345,9700,0 +6528,Kasyno,443,517,7249451,10237,6 +6529,.achim.,527,398,6936607,10042,0 +6530,0014%7CZagrzeb,508,442,8649412,7345,0 +6531,Fajna+065,451,562,699868002,8574,0 +6532,B046,483,470,699299123,10495,0 +6534,0163,548,617,698659980,10495,0 +6536,92k%24+Grvvyq,564,536,699676005,10495,0 +6537,KIELBA+127,462,582,699342219,10226,0 +6538,%5B212%5D,545,501,8000875,8614,0 +6539,-026-,460,427,9291984,10213,0 +6540,.achim.,533,453,6936607,9203,5 +6542,Jaaa,575,546,698635863,10487,0 +6543,Yogi,492,544,2808172,10019,0 +6544,%230140+Sustanon,494,550,9272054,7225,0 +6545,087.+ALFI,475,560,8539216,1376,0 +6546,010.+ALFI,483,573,8539216,2383,0 +6547,124.,513,479,8788366,7032,0 +6548,037,543,391,1424656,9902,0 +6549,006,565,492,699099811,9835,0 +6550,Yogi,535,521,2808172,10083,0 +6551,Winter+is+coming,437,533,699856962,9729,0 +6552,043+-+B01%2A%2A%2A,434,584,225023,10495,0 +6553,042.,597,566,699373599,10068,0 +6554,%C5%9Amieszkii,506,564,3454753,9175,0 +6555,%230070+Piotr+J,497,560,9272054,10000,0 +6556,Fajna+075,455,564,8539216,5634,0 +6557,yogi,503,544,2808172,10019,0 +6558,042.+A-RE-SE-EY,569,512,848967710,10252,0 +6559,.achim.,529,450,6936607,12154,0 +6560,xxx,509,446,698239813,10495,0 +6561,JaamMwG+019,525,516,848987051,9616,0 +6562,TRR+002,410,415,698971484,10008,0 +6563,P+Konfederacja,466,438,848915730,10002,0 +6564,Sparta_40,483,578,2585846,9638,0 +6565,Piek%C5%82o+to+inni,526,425,848956765,10160,0 +6566,Monetki,480,417,699098531,10294,0 +6567,NOT%3F,413,518,9236866,10042,0 +6568,Brat447,459,500,699262350,8575,0 +6569,Szlachcic+015,558,522,758104,8024,0 +6570,058.+ALFI,484,562,8539216,1531,0 +6571,Szlachcic+%21%21%21,503,470,699098531,9565,0 +6572,Kilonia,516,552,849066849,7072,0 +6573,Jaaa,583,554,698635863,10484,0 +6574,%230082+Prawiedniki,498,554,9272054,10000,0 +6575,K45+-+012,557,466,6510480,10019,0 +6576,045+Plemi%C4%99,574,504,8323711,10495,0 +6577,%2AINTERTWINED%2A,477,544,698704189,9735,1 +6578,007,411,517,699851427,10042,0 +6579,KIELBA+029,452,577,699342219,10259,0 +6580,Burdel,550,433,848986287,10348,0 +6581,013,561,473,849031818,4358,0 +6582,Rubinowa+Dolina,535,462,8513699,5885,0 +6583,Kasyno,440,508,7249451,9994,0 +6584,P.026,538,559,873575,9913,0 +6585,Wioska+barbarzy%C5%84ska,446,530,698971484,10008,0 +6587,Yogi,541,566,2808172,10019,0 +6588,JW1,555,442,699368887,8719,0 +6589,.achim.,526,415,6936607,10311,0 +6591,A046,501,425,699299123,10178,0 +6592,050+Fresno,471,468,1497168,9761,8 +6593,Gattacka,581,496,699298370,9664,0 +6594,.achim.,532,419,6936607,10311,0 +6595,Awanturnik+1908,516,425,8649412,8882,0 +6596,006,523,515,8191129,9730,0 +6597,.achim.,532,462,6936607,10375,0 +6598,016.+A-RE-SE-EY,579,525,848967710,10252,0 +6599,Aleartis,488,544,698704189,9711,0 +6600,kathare,497,569,873575,10457,0 +6601,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,548,699364813,5942,0 +6602,%5B122%5D+North22,570,477,848985692,10054,0 +6603,ladyanima,516,571,699703642,9448,0 +6604,Kulik+003,402,511,698290577,7426,0 +6605,Wioska+0013,401,516,1804724,10188,0 +6606,%5B186%5D,540,498,848985692,8032,0 +6608,%230056+Nimesil,490,557,848896948,9976,0 +6609,Pf+Konfederacja,495,494,848915730,10887,0 +6610,%C5%9Amieszkiii,496,590,3454753,8457,0 +6611,Wioska+Ariel69,604,455,848925840,9771,0 +6612,P+Konfederacja,460,457,848915730,7998,0 +6613,JK6,562,446,699368887,9918,0 +6614,203+Port+au+Prince,468,462,1497168,9761,0 +6615,Monetki,473,428,699098531,9637,0 +6616,198+Alice+Springs,532,428,1497168,9902,5 +6617,P+Konfederacja+8,452,445,848915730,9808,0 +6618,xxx,504,448,698239813,10495,0 +6619,%7E%7ELataj%C4%85cyHolender%7E%7E,588,512,9174887,10149,0 +6620,Gattacka,582,495,699298370,9744,1 +6621,Barba,434,502,698971484,10008,0 +6622,.%3A037%3A.+Chillout,518,452,848934935,8631,0 +6623,Gratuluje+m%C3%B3zgu,441,537,698971484,5704,0 +6624,Suppi,426,450,699856962,9559,0 +6625,CALL+971,548,558,699784536,10311,6 +6626,Entrance,524,612,8199417,10495,0 +6627,Lord+Arsey+KING,528,491,848956513,10285,0 +6628,Wioska+2,428,538,699846892,5169,0 +6629,SsSs,422,503,1536625,9734,0 +6630,WesternGold,539,536,699785935,9578,0 +6631,044.+ALFI,485,564,8539216,1903,0 +6632,Dum+Spiro+Spero,493,556,848896948,9976,0 +6633,A%23044%23,423,477,698807570,11706,0 +6634,-027-,461,419,9291984,10479,0 +6636,11+S%C5%82owacja,589,486,8925695,6473,0 +6637,Os+Konfederacja,474,444,848915730,10068,0 +6638,Szlachcic,572,509,698867446,9721,0 +6639,C011,526,457,699299123,10711,0 +6640,Dum+Spiro+Spero,494,551,848896948,10000,0 +6641,Piek%C5%82o+to+inni,528,427,848956765,10160,0 +6642,Suppi,441,525,699856962,9627,0 +6643,022,463,525,2585846,1859,0 +6644,NOT%3F,433,521,9236866,10042,0 +6645,%3A%28.,542,474,698867483,8270,0 +6646,ABADON+STAY,568,489,699347951,9095,0 +6648,%5B073%5D+Patua+koe,536,509,848985692,10011,0 +6649,Szlachcic+058,576,519,758104,9338,0 +6650,CALL+986,555,556,699784536,10311,0 +6651,Winter+is+coming,439,529,699856962,9885,0 +6652,4+c4bat,439,563,8779575,9392,0 +6653,.achim.,534,421,6936607,10336,0 +6654,175+Bahia+Blanca,483,478,1497168,9761,0 +6655,%5B128%5D+North28,577,478,848985692,10400,0 +6656,Village,517,578,849094067,12154,0 +6657,091,558,397,849064752,10311,0 +6658,KIELBA+102,444,567,699342219,10229,0 +6659,.%3A067%3A.+Chillout,506,415,848934935,10636,3 +6660,Village,502,567,849094067,12154,0 +6661,Ogr%C3%B3d+Warzywny,454,560,7249451,7935,9 +6662,Oleole,436,555,699443920,4049,0 +6663,KIELBA+056,457,589,699342219,10290,0 +6664,002,446,526,698971484,10008,0 +6665,%5B134%5D,557,542,8000875,9494,0 +6666,008511,439,442,3909522,7809,0 +6667,Cast+Away+004,451,491,698290577,7876,0 +6668,-%3D+007+%3D-,443,514,698971484,10008,0 +6669,Szmaragdowa+Wyspa,537,467,8513699,4841,0 +6670,WioskaE,510,581,8369778,8367,0 +6671,Wioska+taysi,516,427,848942847,1917,0 +6672,0.+Mob,521,582,698215322,10241,0 +6673,Szlachcic,572,505,698867446,9721,0 +6674,%5B182%5D,543,518,848985692,7290,0 +6675,.achim.,528,415,6936607,10311,0 +6676,F085,490,518,699189792,8962,0 +6677,Kasyno,443,516,7249451,10104,0 +6678,A004,481,405,699299123,10495,0 +6679,x005,428,499,698290577,7063,5 +6681,keepo,484,525,848967710,10287,0 +6682,048+Miami,452,467,1497168,9761,0 +6683,Wioska+barbarzy%C5%84ska,443,440,9291984,10405,0 +6685,Wioska+%2ASwiss%2ABang%2A,445,519,698971484,8651,0 +6686,Osada,507,453,699098531,7840,0 +6687,FilipVII,442,531,699856962,9533,7 +6688,109+Sept-Iles,479,481,1497168,9825,0 +6689,Mniejsze+z%C5%82o+0032,418,512,699794765,8116,0 +6690,%5B071%5D,558,548,8000875,9894,0 +6691,KONFA+TO+MARKA%2C+NARKA,450,471,698152377,10311,0 +6692,C+016,563,395,6384450,10362,0 +6693,002,539,471,849091084,9128,0 +6695,005,603,459,8459255,10195,0 +6696,B012,490,449,699299123,10436,0 +6697,007+Tucson,440,469,1497168,9761,0 +6698,-+218+-,548,577,849018239,10000,0 +6699,013,461,531,2585846,2803,0 +6700,Pf+Konfederacja,495,499,848915730,9912,7 +6701,Brat447,447,495,699262350,10495,0 +6702,F044,485,523,699189792,8993,0 +6703,Brat447,463,503,699262350,5878,0 +6704,Szlachcic,495,461,699098531,9693,0 +6705,F066,484,519,699189792,9033,0 +6706,Lord+Arsey+KING,530,487,848956513,10285,0 +6707,%230135+Barbarian,552,542,9272054,5223,0 +6708,163+Ale+mnie+g%C5%82%C3%B3wka+boli,385,548,699382126,10636,0 +6709,075,413,523,699851427,10042,0 +6710,Szlachcic,468,421,698388578,10237,0 +6711,%21Rapidash,566,447,699795378,10160,0 +6712,0029+K54+and987+OZDR.,487,549,3613413,9856,6 +6713,%2B44+62+L+Arbresle,429,463,698361257,9669,0 +6714,-028-,466,434,9291984,10822,0 +6715,Szlachcic,505,476,699098531,10164,0 +6716,Omonomo,438,556,699443920,2950,0 +6717,Szlachcic+014,571,534,758104,9338,0 +6718,NOT+FOR+YOU,458,555,9236866,5314,0 +6719,Jaaa,570,538,698635863,10484,0 +6720,Ogr%C3%B3d+Warzywny,449,559,7249451,7523,0 +6721,005+Palm+Springs,444,469,1497168,10019,4 +6722,Mzm34,592,507,7142659,10362,0 +6723,Szlachcic,559,470,698867446,9771,0 +6724,ZS03,450,527,698971484,10008,2 +6725,Os+Konfederacja,482,460,848915730,9861,0 +6726,Lord+Arsey+KING,510,524,848956513,10285,0 +6727,2.Skorpion+%21%21%21,499,541,849087855,10000,0 +6728,PRO8L3M,427,499,7491093,9513,0 +6729,0051+K55+and987+OZDR,508,552,3613413,9878,0 +6730,%7C014%7C,554,571,873575,10336,0 +6731,Szlachcic,484,479,699098531,10357,8 +6732,041+%7C,561,560,8000875,10495,0 +6733,Os+Konfederacja,475,451,848915730,9969,0 +6734,Cast+Away+002,454,493,698290577,4853,0 +6735,-+212+-,547,574,849018239,10000,0 +6736,0003,614,529,6510480,10320,0 +6737,-xx11,497,494,848967710,10252,0 +6738,Szlachcic,494,482,699098531,10311,3 +6739,9.9.1+Legiony,544,442,8444356,5728,0 +6740,Pf+Konfederacja,494,484,699098531,10044,0 +6741,Szlachcic,558,480,699759128,10237,0 +6742,047.,500,490,8788366,10728,0 +6743,Azymut%21,498,503,699785935,9835,0 +6744,yogi,532,530,2808172,6530,0 +6745,%3F%2B44+85+Colombier+Saugnieu,454,482,698361257,9722,0 +6746,%7E%7ELataj%C4%85cyHolender%7E%7E,585,511,9174887,10252,0 +6747,%2AAteny_18,467,526,2585846,3122,0 +6748,NOT%3F,431,526,9236866,10042,0 +6749,R%C4%99cznik+do+zmiany,416,495,699697558,10362,0 +6751,Mzm18,567,524,7142659,10252,0 +6752,KONFA+TO+MARKA%2C+NARKA,427,462,698152377,10303,0 +6753,%23Sawk,566,466,699795378,10654,0 +6754,Szlachcic,509,457,699098531,9123,0 +6755,...Just+like+that,454,487,699723284,10452,0 +6757,034,437,488,699510259,9761,0 +6758,ADEN,561,443,698588535,8836,0 +6759,P+Konfederacja,460,450,848915730,10031,0 +6760,052.+A-RE-SE-EY,546,516,848967710,10252,6 +6761,033+%7C,569,551,8000875,10146,0 +6762,028,569,547,699316421,9744,0 +6763,Annapurna,380,486,699265922,9825,0 +6764,A%23051%23,415,472,698807570,10877,0 +6765,Brat447,462,512,699262350,9510,0 +6766,045,428,517,699851427,10042,0 +6768,Wioska+001,593,580,848971079,9761,0 +6769,Diss+na+budzik%21,495,507,699785935,10178,4 +6770,%23019,540,592,849001572,9866,0 +6771,Warzywniak+013,448,546,698290577,1476,7 +6772,SsSs,420,501,1536625,10160,0 +6773,Szlachcic,567,494,698867446,10029,0 +6774,7.62+mm,504,434,699777234,9633,0 +6775,Os+Konfederacja,483,440,848915730,3876,0 +6776,088,540,495,699351301,9963,0 +6777,014,558,457,699368887,5418,0 +6778,xxx,497,428,698239813,10495,0 +6779,Szlachcic,507,457,699098531,9621,0 +6780,PRO8L3M,457,480,7491093,10311,0 +6781,pogl%C4%85dowo%C5%9Bci+Z,569,546,699664910,5567,0 +6782,Warzywniak+005,447,547,698290577,810,0 +6783,Szlachcic+036,551,522,758104,9241,0 +6784,063,419,509,699851427,10129,0 +6785,Szlachcic,500,476,699098531,10311,0 +6786,074.,501,481,8788366,10252,0 +6787,Wioska+barbarzy%C5%84ska,501,416,699658023,8876,0 +6788,SsSs,436,497,1536625,9200,0 +6789,0029,508,495,698599365,10143,0 +6790,-%5B016%5D-+Tenzing+Peak,550,489,849092827,8430,0 +6791,Wioska+barbarzy%C5%84ska,564,451,699368887,9994,0 +6792,052,423,523,699851427,10042,0 +6793,%230081+Barabasz,483,557,9272054,10011,0 +6794,K44+016,435,485,698290577,7124,0 +6795,Zasiedmiog%C3%B3rogr%C3%B3d,535,427,699433558,10068,0 +6796,177+Punta+del+Diablo,479,480,1497168,9761,0 +6797,Front_34,455,520,2585846,9638,0 +6798,0113,471,546,698659980,9143,0 +6799,0010+pech,504,498,698599365,10019,0 +6800,KONFA+TO+MARKA%2C+NARKA,449,455,698152377,10536,0 +6801,COUS,493,581,8369778,10209,0 +6802,%5B125%5D,557,541,8000875,9912,0 +6803,Yogi,533,537,2808172,5389,0 +6804,Wioska+barbarzy%C5%84ska,500,484,699098531,9835,0 +6805,B005,555,503,8138506,6721,0 +6807,Butem+w+Morgen,488,510,848967710,10060,0 +6808,Wioska+barbarzy%C5%84ska,460,575,8438707,7237,0 +6809,031.+A-RE-SE-EY,571,533,848967710,10252,0 +6810,Osada,512,454,699098531,7159,0 +6811,BETI+010,459,568,8539216,1763,0 +6812,040,424,524,699851427,10129,0 +6813,020,581,459,849031818,7496,0 +6814,JaamMwG+023,528,530,848987051,8622,0 +6815,Szlachcic+%21%21%21,496,466,699098531,9687,0 +6816,066.+ALFI,470,566,8539216,1452,0 +6817,Lord+Arsey+KING,528,489,848956513,10285,0 +6818,%230022+Robercik,493,564,9272054,10019,0 +6819,Lord+Arsey+KING,522,488,848956513,10285,0 +6820,0592,476,547,698659980,9951,0 +6821,Szlachcic,500,458,699098531,10636,0 +6822,Suppi,428,449,699856962,9905,0 +6823,054+%7C,565,561,8000875,10068,3 +6824,080.,570,459,849094609,10375,0 +6825,Horyzont+zdarze%C5%84,528,545,7581876,9835,0 +6826,008.+Rivia,559,396,699799629,10495,0 +6827,Szlachcic,567,484,698867446,9580,0 +6828,B016,481,451,699299123,10495,0 +6829,monetki,508,441,699098531,9835,0 +6830,Daj+mi+zna%C4%87,511,508,699785935,6946,0 +6831,%3F%2B44+85+Fort+Mahon+Plage,455,482,698361257,9653,0 +6832,002.+Mediolanum,611,460,849091866,9308,0 +6833,KONFA+TO+MARKA%2C+NARKA,436,463,698152377,10295,0 +6835,Wioska+Barbarzy%C5%84ska,545,495,698867483,10019,0 +6836,-%5B011%5D-+Gaszerbrum+I,550,483,849092827,8078,0 +6837,Butem+w+Morgen,492,511,848967710,10516,0 +6838,20022,504,547,848915531,9175,0 +6839,Szlachcic,490,467,699098531,10292,0 +6840,P.030,543,560,873575,10636,0 +6841,.%3A035%3A.+Chillout,522,449,848934935,3082,0 +6842,Horyzont+zdarze%C5%84,527,544,7581876,9835,2 +6844,Cast+Away+014,454,483,698290577,10073,0 +6845,CHW%23024r,487,537,698704189,9711,0 +6846,Piek%C5%82o+to+inni,524,442,848956765,10160,0 +6847,013,569,467,849070464,8493,0 +6848,%5BA%5D_%5B032%5D+Dejv.oldplyr,408,475,699380607,10401,0 +6849,Mzm17.,559,519,7142659,10362,0 +6850,KONFA+TO+MARKA%2C+NARKA,429,461,698152377,10292,0 +6851,ChceszPokojuSzykujSi%C4%99DoWojny,454,516,699333701,9835,0 +6852,B001,558,502,8138506,10019,0 +6853,Front_24,455,530,699856962,9648,0 +6854,%2B44+75+Lyon+Menival,452,473,698361257,9846,0 +6855,%2AINTERTWINED%2A,532,566,698704189,9711,0 +6857,Suppi,440,519,699856962,9734,0 +6858,%5B020%5D+Membunuhmu,590,521,848985692,10211,0 +6859,.achim.,541,466,6936607,9251,0 +6861,Kaczystan,550,425,848986287,9576,0 +6862,Carsultyal.,484,557,698704189,9711,0 +6863,06+Hazard,614,515,9314079,9624,0 +6864,0019,507,497,698599365,10019,0 +6865,%28025%29,418,537,699846892,10149,0 +6866,029,527,572,699189792,9742,0 +6867,-029-,466,423,9291984,10479,0 +6868,KONFA+TO+MARKA%2C+NARKA,422,460,698152377,10297,0 +6869,Szlachcic,499,461,699098531,9693,0 +6870,Zasiedmiog%C3%B3rogr%C3%B3d,517,436,699433558,10224,9 +6871,Wioska,381,503,849084005,10178,0 +6872,Wioska+barbarzy%C5%84ska,457,539,699698253,9761,0 +6873,A015,490,412,699299123,10495,0 +6874,Osada,503,453,699098531,9623,0 +6875,Front_02,461,520,2585846,3766,0 +6876,008,478,606,8925624,5143,0 +6877,%5B086%5D,550,511,8000875,8386,0 +6878,Wioska+barbarzy%C5%84ska+016%7C,572,402,6343784,9582,0 +6879,009+Fiona,447,508,698290577,4984,0 +6880,C004,521,456,699299123,10971,0 +6881,Zasiedmiog%C3%B3rogr%C3%B3d,544,417,699433558,10311,0 +6882,005,564,491,699099811,10068,0 +6883,Piek%C5%82o+to+inni,517,472,848956765,9596,0 +6884,056.,511,494,8788366,10252,0 +6885,%5B153%5D,562,537,8000875,6589,0 +6886,szkot,486,620,699494488,10226,0 +6887,.%3A126%3A.+Niangmen,518,414,848934935,9899,0 +6888,022.+Wioska+Lord+Pumbarak,565,517,8788366,10252,8 +6889,F059,489,525,699189792,9511,0 +6890,CALL+950,552,553,699784536,10311,0 +6891,%2B44+72+Leffrinckouque,428,475,698361257,9841,2 +6892,Szlachcic,494,481,699098531,9715,0 +6893,B021,483,456,699299123,10495,9 +6894,Alltimov,501,417,699658023,7630,0 +6895,Szlachcic+%21%21%21,504,469,699098531,10068,4 +6896,Konfiasze,473,496,698908912,10492,0 +6897,Piek%C5%82o+to+inni,521,429,848956765,10160,0 +6898,20018,514,549,848915531,11321,0 +6899,011+Portland,445,472,1497168,9761,0 +6900,062+%7C,549,508,8000875,10476,3 +6901,0033,463,611,698659980,10019,0 +6902,074.+ALFI,485,559,8539216,1462,0 +6903,Szlachcic+056,562,530,758104,8024,0 +6904,076,565,396,849064752,10311,0 +6905,062.+ALFI,469,568,8539216,1425,0 +6907,kto+ananasowy+pod+wod%C4%85+ma+dom,572,498,699628084,9797,0 +6908,064+New+York+City,463,475,1497168,9761,6 +6909,080+Little+Rock,470,475,1497168,9761,0 +6910,ChceszPokojuSzykujSi%C4%99DoWojny,455,518,699333701,8474,0 +6911,.achim.,534,419,6936607,10311,0 +6912,040+%7C,560,565,8000875,10149,0 +6913,%230007+Globus,493,538,9272054,9442,0 +6914,%7E%7ELataj%C4%85cyHolender%7E%7E,560,508,9174887,10210,0 +6915,Wioska+barbarzy%C5%84ska,446,529,698971484,10008,0 +6916,CALL+1083,534,548,699784536,10495,0 +6917,1h10+jeszcze+d%C5%82u%C5%BCej,551,458,699368887,6338,0 +6918,A003,488,411,699299123,10495,0 +6919,111+Ok%3F+Ok.,539,455,7092442,10495,0 +6920,%23064,474,575,849001572,7866,0 +6921,7.62+mm,504,435,699777234,8861,0 +6922,A%23045%23,412,479,698807570,11106,0 +6923,Bye+Bye+Beautiful,491,511,699785935,10362,0 +6924,0026,527,502,699432672,10495,0 +6925,168+Ale+mnie+g%C5%82%C3%B3wka+boli,387,542,699382126,10636,0 +6926,223+Canberra,532,441,1497168,9146,0 +6927,Sparta_35,480,578,2585846,9638,0 +6928,041+Plemi%C4%99,574,502,8323711,10155,0 +6929,Witam+w+wietnamie,419,549,698971484,10008,0 +6930,Szlachcic,501,476,699098531,10303,0 +6931,106+Regina,472,488,1497168,9761,0 +6932,084.+ALFI,482,553,8539216,2264,1 +6933,006,485,525,849092723,9411,0 +6934,PRO8L3M,468,490,7491093,9899,0 +6935,Fajna+046,458,558,3613413,3569,0 +6936,Monetki,474,421,699098531,10290,0 +6937,Wystrzeli%C5%82em+si%C4%99+Tob%C4%85+%21,500,508,699785935,10083,0 +6938,To+chyba+to,483,503,698290577,5311,0 +6939,Tesa+15,533,496,698845189,4065,0 +6940,NOT%3F,428,531,9236866,10042,0 +6941,Mzm26,556,534,7142659,10362,0 +6942,Wioska+barbarzy%C5%84ska,451,518,698971484,7898,0 +6943,Winter+is+coming,438,538,699856962,8888,0 +6944,Lord+Arsey+KING,536,534,848956513,10285,0 +6945,Lincoln,554,446,699368887,5176,0 +6946,KONFA+TO+MARKA%2C+NARKA,446,469,698152377,10291,0 +6947,Szlachcic+005,567,547,758104,9338,0 +6948,033.+Apus,511,581,699703642,7606,0 +6949,0055+K55+and987+OZDR,507,562,3613413,10495,0 +6950,%230095+Zastawek,474,558,9272054,8558,0 +6951,xxx,506,444,698239813,10495,8 +6952,%2AINTERTWINED%2A%2A,503,546,698704189,9711,0 +6953,%7E%7ELataj%C4%85cyHolender%7E%7E,577,498,9174887,8272,0 +6954,Ho%C5%82opole,488,410,699433558,9976,0 +6955,%2AAteny_07,469,536,699856962,9643,0 +6956,WINTER+IS+COMING,471,504,1536625,9763,0 +6957,NOT%3F,434,524,9236866,10042,0 +6958,Sparta_30,484,578,2585846,7270,4 +6960,A044,496,421,699299123,10495,0 +6961,Winter+is+coming,504,583,699364813,9899,0 +6962,-+124+-,536,581,849018239,10000,0 +6963,021,574,548,699316421,9532,0 +6964,Amsterdam,538,386,698350371,10495,0 +6965,007,507,539,848915531,11305,0 +6966,keepo,483,529,848967710,8946,0 +6967,Wioska+418,557,511,477415,10495,0 +6968,Wioska+barbarzy%C5%84ska,438,418,849027025,9585,0 +6969,0035,553,494,699432672,4787,0 +6970,keepo,479,514,848967710,5973,0 +6971,%2B44+61+Marcy+LEtoile,418,462,698361257,9849,0 +6972,%5B200%5D+WEST,611,457,848985692,10047,0 +6973,%3Ac.,543,474,698867483,10019,0 +6974,%3F%2B44+85+Saint+Georges+sur+lAa,456,484,698361257,9653,0 +6975,Lord+Arsey+KING,521,499,848956513,8470,0 +6976,SsSs,462,500,1536625,7624,0 +6977,KONFA+TO+MARKA%2C+NARKA,400,469,698152377,12154,0 +6978,0144,467,552,698659980,7473,0 +6979,Napewno+to+nie+jest+off,494,412,848912265,10495,0 +6980,Monetki,480,424,699098531,10162,0 +6981,POGRZEB+GRUBYCH,539,446,8155296,10947,0 +6982,013,462,574,848886870,10160,0 +6983,005.+A-RE-SE-EY,585,530,848967710,10252,0 +6984,5.No+cheba,506,457,8649412,5971,0 +6985,Kentin+ufam+Tobie,408,491,699783765,10000,0 +6986,Monetki,475,414,699098531,10291,0 +6987,Micha%C5%82,530,536,848967710,10495,0 +6988,B021,496,494,848967710,10495,0 +6989,003,434,551,699856962,2926,0 +6990,NOT+FOR+YOU,456,551,9236866,7775,0 +6991,Weso%C5%82ych+%C5%9Awi%C4%85t,563,452,699368887,8627,0 +6992,018.KAT,556,484,849031818,8199,0 +6993,Lord+Arsey+KING,513,527,848956513,10285,0 +6994,budzik,443,535,698971484,8673,0 +6995,Szlachcic+046,549,518,758104,9338,0 +6996,-042-,456,425,9291984,10479,3 +6997,Skanned,555,445,699368887,3785,0 +6998,0091,469,556,698659980,8039,0 +6999,MasteroN+09,571,445,699379895,9869,0 +7000,Wioska+barbarzy%C5%84ska,581,486,1715091,8257,0 +7001,4xxxxxxxxxxxx,464,436,9291984,9845,0 +7002,EEE,530,458,849091084,9135,0 +7003,Szlachcic,579,497,699759128,10237,0 +7004,L+5,613,478,849027653,10316,0 +7005,x+A23,551,461,3909522,6375,0 +7006,Wioska+barbarzy%C5%84ska,485,509,848967710,10252,0 +7007,.achim.,530,451,6936607,8163,0 +7008,006,475,506,699781762,10297,0 +7009,A036,494,410,699299123,7414,0 +7010,%5B0059%5D,416,415,8630972,10495,0 +7011,Domek+2,547,423,849064614,9761,0 +7012,050,411,484,699510259,9761,0 +7013,0000,451,427,3909522,10495,9 +7014,Z04+Rivan,561,522,699272880,10186,0 +7015,KONFA+TO+MARKA%2C+NARKA,452,459,698152377,10539,0 +7016,0012,507,505,698599365,10019,0 +7017,Piek%C5%82o+to+inni,524,428,848956765,10160,0 +7018,CALL+944,551,555,699784536,10311,0 +7019,K44+022,428,496,698290577,5061,0 +7020,Marienburg+1,524,481,699355601,9690,0 +7021,2.+Jagdtiger,494,527,849087855,8995,0 +7022,029,534,431,699788305,8600,0 +7023,.achim.,517,445,6936607,8279,0 +7024,Kasyno,442,511,7249451,9817,3 +7025,Wioska+barbarzy%C5%84ska,419,541,699846892,1391,0 +7026,Szlachcic,489,480,699098531,10297,0 +7027,030+Kentucky,607,488,7092442,10495,0 +7028,Monetki,471,419,699098531,10292,0 +7029,Wioska+Wojtek150+002,534,519,7581876,10019,1 +7030,Fajna+051,448,555,698971484,5969,0 +7031,Mniejsze+z%C5%82o+0056,420,504,699794765,6628,0 +7032,Warzywniak+021,452,548,698290577,1514,0 +7033,Gattacka,590,491,699298370,9744,0 +7035,F031,500,531,699189792,9761,0 +7036,Front_35,455,521,2585846,3751,0 +7037,0063+Cr250r,455,428,3909522,9562,0 +7038,%5B096%5D,541,482,848985692,9835,0 +7039,%5B133%5D+North,582,474,848985692,10054,0 +7040,%C5%9Amieszkiii,499,567,3454753,9303,0 +7041,NOT%3F,429,493,9236866,10060,0 +7042,0062+%7E41%7EWioska,444,432,3909522,8208,0 +7043,PRO8L3M,449,501,7491093,10068,0 +7044,Osada,502,443,699098531,9960,0 +7045,%230069+Mateusz+W,494,548,9272054,10019,0 +7046,Piek%C5%82o+to+inni,524,438,848956765,10160,0 +7047,Piek%C5%82o+to+inni,509,467,848956765,8891,0 +7048,Jaaa,584,534,698635863,10476,0 +7049,Monetki,481,435,699098531,10300,1 +7050,006+Lavender+Town,587,493,699441366,11109,0 +7051,10008,523,566,848915531,6788,0 +7052,Szlachcic,483,472,699098531,9690,0 +7053,B049,477,464,699299123,10495,0 +7054,-%5B200%5D-+Mont+Blanc,575,446,849092827,9650,0 +7055,PRO8L3M,462,492,7491093,8675,0 +7056,Osada,508,451,699098531,9166,0 +7057,013W+JaCoB%2A,561,511,8323711,10495,0 +7058,10003,527,568,848915531,10838,0 +7059,Wioska+barbarzy%C5%84ska,434,507,698971484,10008,0 +7060,%5BA%5D_%5B006%5D+Dejv.oldplyr,398,483,699380607,10495,0 +7061,Winter+is+coming,504,572,699364813,10311,0 +7062,ADEN,524,381,698588535,10268,0 +7063,KONFA+TO+MARKA%2C+NARKA,425,462,698152377,10311,0 +7064,Taran,545,384,699170684,9566,0 +7065,NOT%3F,418,514,9236866,10042,0 +7066,kek,536,519,848967710,9307,0 +7067,091,540,496,699351301,10108,0 +7068,JaamMwG+029,525,521,848987051,9975,0 +7069,7.62+mm,490,429,699777234,10019,0 +7070,ADEN,528,381,698588535,9819,0 +7071,Brat447,434,488,699262350,6053,0 +7072,007,465,583,848886870,10495,0 +7073,0017%7CPraga,511,444,699098531,8302,0 +7074,-004-,512,543,7581876,10019,4 +7075,016,481,583,7976264,9109,0 +7076,Gattacka,590,497,699298370,9753,0 +7077,%2AINTERTWINED%2A%2A,461,558,698704189,9143,0 +7078,Mzm47,557,520,7142659,7701,0 +7079,00976+ZARABIAM+PP,462,439,3909522,5913,0 +7080,Pf+Konfederacja,490,494,848915730,9938,0 +7081,002,554,540,699194766,9553,0 +7082,-+095+-,546,576,849018239,10000,0 +7083,Brat447,456,498,699262350,8887,0 +7084,-045-,464,425,9291984,10236,6 +7085,PRO8L3M,430,492,7491093,8701,0 +7086,%5B114%5D+North14,574,477,848985692,9975,0 +7087,EXA,606,531,848967710,10495,0 +7088,Piek%C5%82o+to+inni,520,432,848956765,10160,0 +7089,Szlachcic,496,458,699098531,9701,0 +7091,PRO8L3M,409,494,7491093,9359,0 +7092,%230029+%C5%9Awi%C4%99toch%C5%82owice,482,560,9272054,10008,1 +7093,KONIEC,509,494,699785935,9835,0 +7094,Pf+Konfederacja,488,488,848915730,9955,0 +7095,NOT%3F,432,534,9236866,6215,0 +7096,MONNN,506,437,698239813,10971,0 +7097,NOT%3F,426,542,9236866,8209,0 +7098,SsSs,423,484,1536625,8937,0 +7099,xxx,515,460,698239813,9052,0 +7100,F056,506,533,699189792,9516,0 +7101,Winter+is+coming,504,584,699364813,10068,0 +7102,035.,479,618,699494488,10495,0 +7103,%5B062%5D+O+i+jest+Psikus,532,503,848985692,10088,0 +7104,050,540,418,699761749,10495,0 +7105,kek,534,515,848967710,7108,0 +7106,006.+Kikimora,509,589,699703642,9761,0 +7107,Szlachcic,491,468,699098531,9250,0 +7108,%2AINTERTWINED%2A,472,569,698704189,9711,0 +7109,Szlachcic+029,554,520,758104,9230,0 +7110,P+Konfederacja,459,446,848915730,10068,0 +7111,008,553,530,699316421,9744,0 +7112,001,538,471,849091084,8674,0 +7114,Winter+is+coming,463,603,699364813,4273,0 +7115,xxx,505,437,698239813,10495,0 +7116,%21+011,556,467,477415,9828,0 +7117,Tu+obok+ju%C5%BC+nie+macie+tyle+defa%3F,583,413,848985692,10362,0 +7118,053.,522,557,699695167,9902,0 +7119,036,412,521,699851427,10129,0 +7120,Vaes+Drakaris,476,611,699494488,10495,0 +7121,Monetki,472,418,699098531,10292,0 +7122,.%3A027%3A.+Kaktus,504,430,8649412,10273,0 +7123,031.+ALFI+-+2%2C5,479,571,8539216,1627,0 +7124,%230044+Yagami+W%C3%B3dz,495,557,9272054,10000,7 +7125,00705,450,441,3909522,9036,0 +7126,.achim.,540,427,6936607,10273,0 +7127,F079,502,537,699189792,8551,0 +7128,nie+atakujcie+mnie%3A%28,445,553,698971484,2673,0 +7129,a+Wioska+2,453,533,3909522,7167,0 +7130,-Cze%C5%9B%C4%87%21+Jak+si%C4%99+masz%3F+%3A%29,515,515,699785935,10083,0 +7131,Osada+1,431,505,698971484,10008,1 +7132,0087,447,439,3909522,9637,0 +7133,Szlachcic,575,488,699759128,10237,0 +7134,NOT%3F,414,504,9236866,10042,0 +7135,058.,515,504,8788366,8212,0 +7136,002,602,464,8459255,10093,0 +7137,Wioska+barbarzy%C5%84ska,527,505,848967710,10252,0 +7138,Jaaa,571,540,698635863,10490,0 +7139,Merhet,521,583,698215322,10136,0 +7140,0Wioska+barbarzy%C5%84ska,480,527,699781762,10193,0 +7141,Szlachcic,467,417,698388578,10237,0 +7142,R%C4%99cznik+do+zmiany,415,485,699697558,12154,0 +7143,181+Maracaibo,467,454,1497168,9825,0 +7144,032,565,551,699316421,9744,0 +7145,Wioska+barbarzy%C5%84ska,432,512,698971484,10008,0 +7146,Zasiedmiog%C3%B3rogr%C3%B3d,536,426,699433558,8564,5 +7147,%5B090%5D,555,544,8000875,9888,0 +7148,-%5B012%5D-+Broad+Peak,556,478,849092827,8113,0 +7149,BETI+011,464,558,8539216,899,0 +7150,%28016%29,424,539,699846892,10141,0 +7151,Lord+Arsey+KING,500,473,848956513,10285,0 +7152,103+Montreal,468,482,1497168,9761,0 +7153,KIELBA+099,447,569,699342219,10320,7 +7154,011,586,414,849064752,10311,0 +7155,yogi,523,524,2808172,11074,0 +7156,Winter+is+coming,438,534,699856962,6930,0 +7157,06%2A,568,543,699664910,8922,8 +7158,B058,477,474,699299123,10495,0 +7159,Warzywniak+008,444,544,698290577,1373,0 +7160,SsSs,397,505,1536625,9979,0 +7161,-x9,497,497,848967710,10252,0 +7162,048.,548,476,849094609,10495,0 +7163,xxx,512,441,698239813,10495,0 +7164,B056,474,470,699299123,9003,0 +7165,kto+ananasowy+pod+wod%C4%85+ma+dom,574,503,699628084,9797,0 +7166,Wioska+barbarzy%C5%84ska,442,544,698971484,2393,0 +7167,Suppi,426,453,699856962,9806,0 +7168,Szlachcic,392,480,6258092,10160,0 +7169,046,489,398,698739350,8367,0 +7170,Fffff,422,581,225023,10132,0 +7171,KONFA+TO+MARKA%2C+NARKA,428,464,698152377,10361,0 +7172,Wioska,386,539,849084005,10178,0 +7173,0018,463,466,848913037,9993,0 +7174,ChceszPokojuSzykujSi%C4%99DoWojny,466,512,699333701,8564,0 +7175,002,548,473,699368887,10005,0 +7176,051.,497,487,8788366,10393,0 +7177,P+Konfederacja,459,455,848915730,9797,0 +7178,xxx,499,435,698239813,10495,0 +7179,Szlachcic,564,497,698867446,9721,0 +7180,Szlachcic+045,570,528,758104,9338,0 +7181,%2AINTERTWINED%2A,463,563,698704189,9275,0 +7182,063,586,481,699573053,10495,0 +7183,kathare,494,575,873575,10495,0 +7184,szlachcic,440,542,698971484,2223,0 +7185,.achim.,528,454,6936607,8236,0 +7186,xxx,461,418,9291984,8934,0 +7187,10013,529,556,848915531,8674,0 +7189,027.+A-RE-SE-EY,574,532,848967710,10252,0 +7190,C+Zach+008+Tarnowskie+G,411,571,849084740,9352,0 +7191,026,467,524,2585846,3503,0 +7192,Z03+Qeqertat,562,513,699272880,10006,0 +7193,B027,478,457,699299123,10149,0 +7194,0024,526,512,699432672,10495,1 +7195,Fajna+052,449,556,698971484,8145,0 +7196,046+%7C,559,566,8000875,10104,0 +7197,CALL+1023,543,565,699784536,10311,0 +7198,-+045+-,533,570,849018239,10000,0 +7200,075.+ALFI,466,571,8539216,1324,0 +7201,050.+ALFI,480,563,8539216,1517,0 +7202,%5B129%5D+North29,577,477,848985692,10391,0 +7203,0009,468,608,33900,9975,0 +7204,147+Zihuatanejo,466,487,1497168,9761,0 +7205,Tesa+10,533,491,698845189,10252,0 +7206,Merhet,519,587,698215322,5621,0 +7207,Mzm03,601,528,7142659,10362,0 +7208,...,436,507,698971484,10008,0 +7209,Selonari,459,558,3613413,9034,0 +7210,012,460,577,848886870,10495,0 +7211,0034,554,496,699432672,5274,0 +7212,Feed+me+more+004,497,379,699756210,10160,0 +7213,0177,471,541,698659980,10083,0 +7214,%7C013%7C,556,571,873575,10433,0 +7215,017+TNN,561,490,849031818,7804,0 +7216,Nospa,456,571,699443920,10396,0 +7217,Wioska+mockingcoffin,621,525,849053122,2886,0 +7218,154+Puerto+Barrios,454,457,1497168,9761,0 +7219,KIELBA+094,445,566,699342219,10495,0 +7220,xxx,503,426,698239813,10495,0 +7221,003+Virginia+Beach,441,478,1497168,9761,5 +7222,CALL+1034,544,545,699784536,10311,0 +7223,Niby+to+myszy+w+nocy+harcuj%C4%85..,545,525,8649412,9116,0 +7224,031+Colorado+Springs,423,420,9291984,10484,0 +7225,050.,507,489,8788366,10252,0 +7226,Front_29,453,531,2585846,5683,0 +7227,X08,530,459,6923061,1886,0 +7228,kto+ananasowy+pod+wod%C4%85+ma+dom,568,504,699628084,9797,0 +7229,226+Wellington,533,442,1497168,8652,0 +7231,7.62+mm,467,435,699777234,10019,0 +7232,ChceszPokojuSzykujSi%C4%99DoWojny,453,514,699333701,10147,0 +7233,Lord+Arsey+KING,515,524,848956513,10285,0 +7234,NOT%3F,424,519,9236866,10042,0 +7235,008+Czary+mary,588,463,698829590,8001,0 +7236,COUS%2C,493,580,8369778,7043,0 +7237,081.+ALFI,479,558,8539216,1791,0 +7238,Sparta_42,481,581,2585846,9638,0 +7239,%21+Wioska+MMM,557,497,477415,3961,0 +7240,-004-+Uszka+mee,455,413,9291984,10479,0 +7241,Osada,499,443,699098531,10294,0 +7242,047+Idaho+Falls,469,471,1497168,9761,0 +7243,A054,497,425,699299123,10495,0 +7244,121.,495,485,8788366,8400,0 +7245,%7E%7ELataj%C4%85cyHolender%7E%7E,567,497,9174887,10160,0 +7246,Wioska+Barbarzy%C5%84ska,544,496,698867483,9013,0 +7247,JF6,553,458,699368887,6746,0 +7248,039.,506,491,8788366,10252,0 +7249,-+211+-,548,576,849018239,10000,0 +7250,P+Konfederacja+8,458,447,848915730,9812,0 +7251,Szlachcic,581,501,699759128,10237,0 +7252,ROHAN,536,465,8155296,9383,0 +7253,.54,428,509,848955783,10291,0 +7254,8.+Gruzowisko,543,434,8444356,10471,0 +7255,Suppi,439,518,699856962,9565,0 +7256,0228,451,612,698659980,10495,0 +7257,7.62+mm,502,442,699777234,10019,0 +7258,MYSZO%C5%81%C3%93W,539,512,8155296,10286,0 +7259,Weso%C5%82ych+%C5%9Awi%C4%85t,559,454,699368887,9994,0 +7260,209+Margaret+River,535,432,1497168,9835,0 +7261,011.+ALFI,476,570,8539216,1484,0 +7262,%2B44+73+Bourbourg,433,477,698361257,10195,0 +7263,NWO,394,520,849030226,10971,0 +7264,0085,443,441,3909522,9924,0 +7265,Zaodrze,389,548,699425709,3521,0 +7266,0Wioska+barbarzy%C5%84ska,474,504,699781762,10083,0 +7267,NOT%3F,469,544,9236866,9675,0 +7268,B063,477,471,699299123,10252,0 +7269,030,526,575,699189792,9745,0 +7270,Osada,498,440,699098531,10295,0 +7271,Wioska+Barbarzy%C5%84ska,544,493,698867483,9561,0 +7272,Gattacka,575,496,699298370,10370,0 +7273,ADEN,562,435,698588535,7857,0 +7274,018,417,511,699851427,10129,0 +7275,xxx,487,420,698239813,10495,0 +7276,%7E060.,481,549,7139820,10115,0 +7277,001,434,550,699856962,1262,0 +7278,Lord+Arsey+KING,540,523,848956513,7850,0 +7279,CALL+1039,545,536,699784536,9272,0 +7280,Mzm36,543,528,7142659,10362,0 +7281,DAWA%C4%86+GRUBE,540,447,8155296,8789,0 +7282,Os+Konfederacja,480,450,848915730,9812,0 +7283,018.+Wioska+B.E.R.S.E.R.,565,516,8788366,10252,0 +7284,F020,493,542,699189792,9756,0 +7285,PRO8L3M,465,493,7491093,10495,0 +7286,054.+ALFI,485,567,8539216,1661,0 +7287,A21,556,449,699368887,9459,0 +7288,%3F%2B44+85+Marquise,458,486,698361257,9844,0 +7289,079+Mobile,461,451,1497168,9761,0 +7290,7.62+mm,470,440,699777234,10019,0 +7291,73k%24+Grvvyq,549,520,699676005,10495,0 +7292,Yogi,514,533,2808172,8822,0 +7293,MasteroN,568,448,699379895,10160,0 +7294,037+Fresno,436,435,9291984,9804,0 +7295,xxx,484,425,698239813,10495,0 +7296,%2AINTERTWINED%2A,458,560,698704189,8560,0 +7297,Pf+Konfederacja,495,492,848915730,9938,0 +7298,kek,544,515,848967710,6209,0 +7299,Kasyno,446,517,7249451,10237,0 +7300,Fajna+062,452,559,699868002,8391,0 +7301,042.,510,495,8788366,9462,0 +7302,Jehu_Kingdom_04_,587,477,8785314,9993,0 +7303,NOT%3F,412,503,9236866,10042,0 +7304,%5B133%5D,567,538,8000875,9564,0 +7305,.%3A129%3A.+Niangmen,519,414,848934935,9814,0 +7306,Szlachcic,494,466,699098531,9899,0 +7307,.achim.,529,447,6936607,10654,0 +7308,.achim.,535,422,6936607,10311,0 +7309,Suppi,469,537,699856962,9549,0 +7310,-Ca%C5%82o%C5%9B%C4%87+do+ca%C5%82o%C5%9Bci,516,510,699785935,9814,0 +7311,02+%7C+Ciemnogr%C3%B3d,537,437,849002091,9477,0 +7312,PRO8L3M,456,497,7491093,9615,0 +7313,Taran,579,465,699759128,10237,0 +7314,-+058+-,540,576,849018239,10000,0 +7315,Wioska+barbarzy%C5%84ska,452,543,699698253,1894,0 +7316,Osada,492,448,699098531,9962,9 +7317,Joms+041,546,413,699756210,10273,0 +7318,SsSs,455,497,1536625,7242,0 +7319,ChceszPokojuSzykujSi%C4%99DoWojny,460,512,699333701,9761,0 +7320,%5B188%5D,532,492,8000875,9885,2 +7321,Ogr%C3%B3d+Warzywny,456,558,7249451,5040,0 +7322,Cast+Away+013,453,481,698290577,9608,0 +7323,Osada+koczownik%C3%B3w,534,434,848986287,8946,7 +7324,Piek%C5%82o+to+inni,519,483,848956765,10252,0 +7325,Bellucci,503,519,699785935,10495,0 +7326,002+-+Madrid,597,490,698342159,10019,0 +7327,Monetki,469,420,699098531,10311,0 +7328,Teatr,437,565,7249451,8474,0 +7329,Mzm02.,609,532,7142659,10019,0 +7330,83k%24+Grvvyq,547,532,699676005,10495,2 +7331,Daleko+012,480,584,6116940,8557,0 +7332,Suppi,442,453,699856962,9554,0 +7333,F045,483,517,699189792,8883,0 +7334,...Just+like+that,461,492,699723284,10452,0 +7335,%2B44+73+Frencq,432,473,698361257,9844,0 +7336,KONFA+TO+MARKA%2C+NARKA,448,454,698152377,10297,0 +7337,I+po+%C5%9Awi%C4%99tach+%3B%29%29%29,563,451,699368887,7067,0 +7338,0.Nowy+Orlean,521,586,698215322,9951,0 +7339,EKG+M14,484,596,33900,10004,0 +7340,B054,481,470,699299123,10495,0 +7341,Wioska+barbarzy%C5%84ska,449,522,698971484,10008,0 +7342,JK3,559,449,699368887,6927,1 +7343,021,552,395,849064752,10311,0 +7344,Milonia,518,556,849066849,7083,0 +7345,KONFA+TO+MARKA%2C+NARKA,422,474,698152377,10292,0 +7346,%2AAteny_13,470,527,2585846,9682,0 +7347,Napewno+to+nie+jest+off,516,444,848912265,10495,0 +7348,CALL+967,545,567,699784536,10311,0 +7349,013+Savanah,440,465,1497168,9761,0 +7350,050+Bu%C5%82garia,585,480,7092442,10495,0 +7351,F069,492,515,699189792,9433,0 +7352,%28021%29,424,543,699846892,10160,0 +7353,Wioska+barbarzy%C5%84ska,493,511,848967710,9694,0 +7354,...Just+like+that,469,478,699723284,10452,0 +7355,.%3A038%3A.+Chillout,521,449,848934935,7133,0 +7356,P.034,543,557,873575,10297,0 +7357,Szlachcic+054,573,519,758104,9338,0 +7358,PRO8L3M,448,490,7491093,9127,0 +7359,Warzywniak016,453,548,698290577,2383,0 +7360,Monetki,475,417,699098531,10290,0 +7361,%23020,472,615,699605333,10393,0 +7362,Piek%C5%82o+to+inni,521,473,848956765,8864,0 +7363,Wioska+10.,496,525,848967710,11141,0 +7364,ladyanima+200+pik+300+miecz,514,567,699703642,9415,0 +7365,Lord+Arsey+KING,523,503,848956513,10285,0 +7366,XnX-02,437,541,699856962,8573,2 +7367,-+031+-,535,578,849018239,10000,0 +7368,-%5B025%5D-+Batura+Sar,557,490,849092827,8089,0 +7369,011.+A-RE-SE-EY,577,527,848967710,10252,0 +7370,002,587,519,6048627,9692,0 +7371,%28006%29,416,533,699846892,10144,0 +7372,Monetki,468,417,699098531,10297,0 +7373,022,518,515,8191129,10160,0 +7374,A014,494,416,699299123,10495,0 +7375,xxx,514,455,698239813,10495,0 +7376,NOT%3F,428,495,9236866,9329,0 +7377,Niusam,457,570,699443920,9761,0 +7378,Suppi,425,455,699856962,9570,0 +7379,Sparta_34,479,582,2585846,9638,9 +7380,Niedopasowany,498,528,699785935,9899,0 +7381,Piek%C5%82o+to+inni,520,479,848956765,10160,0 +7382,011+%7C+Lord+Arsey+-+Poskramiacz,560,566,8000875,10140,1 +7383,%7E%7ELataj%C4%85cyHolender%7E%7E,550,467,9174887,8790,0 +7384,1.+Char+mle,495,531,849087855,9355,0 +7385,004+Are+you+seriously%3F,570,553,699316421,9744,0 +7386,039,414,505,699851427,10129,0 +7387,A043,505,428,699299123,10058,0 +7388,KIELBA+126,465,584,699342219,7286,0 +7389,Bagdad,475,381,8847546,10470,0 +7390,Muszla,398,458,698807570,10068,0 +7391,lady,493,577,699703642,9761,0 +7392,C037,532,456,699299123,10838,0 +7393,Wioska+barbarzy%C5%84ska,528,541,7581876,9835,0 +7394,B023,484,457,699299123,10495,0 +7395,lady,510,584,699703642,9761,0 +7396,NOT%3F,410,514,9236866,10042,0 +7397,Jaaa,570,542,698635863,10484,0 +7398,slow,531,490,848967710,10485,0 +7399,1.+Is-4+%21%21%21,488,539,849087855,9917,0 +7400,Wioska+barbarzy%C5%84ska,560,571,6818593,9835,0 +7401,011+Politechnika,538,481,849083501,4720,0 +7402,yogi,524,534,2808172,10019,0 +7403,-%3D+004+%3D-,446,521,698971484,10008,4 +7404,NOT%3F,411,512,9236866,10042,0 +7405,Lord+Arsey+KING,528,494,848956513,10285,0 +7406,Front_31,453,521,2585846,3809,0 +7407,CALL+1000,552,576,699784536,10411,0 +7408,.%3A073%3A.+Takmahal,522,440,848934935,4075,0 +7409,.achim.,526,413,6936607,10311,0 +7410,kek,546,515,848967710,7058,0 +7412,Optima,432,557,699443920,2828,0 +7414,Piek%C5%82o+to+inni,522,467,848956765,9761,0 +7415,Szlachcic,586,512,698867446,9654,0 +7416,063+Pittsburg,464,474,1497168,9761,0 +7417,%230117+Rambo,499,551,9272054,10019,0 +7418,%5B101%5D+Mateni+Kowe,574,476,848985692,10252,0 +7419,CALL+937,549,561,699784536,10311,0 +7420,%23046,475,613,699605333,10393,0 +7421,sas,537,541,7581876,9836,0 +7422,%2AINTERTWINED%2A,474,571,698704189,9711,0 +7423,Suppi,427,447,699856962,9570,3 +7424,B038,487,456,699299123,10166,0 +7425,K44+015,435,484,698290577,3394,0 +7426,%230066+Jakub+K,493,563,9272054,10000,0 +7427,082.+%7CXD%7C,495,516,848967710,10173,0 +7428,0083,445,443,3909522,7022,0 +7429,Lord+Arsey+KING,525,491,848956513,10285,0 +7430,116,399,560,699382126,4269,0 +7431,Szlachcic+%21%21%21,489,469,699098531,10294,0 +7432,Strasznie+Mi%C5%82y+S%C4%85siad%21,551,449,556154,9735,0 +7433,Zasiedmiog%C3%B3rogr%C3%B3d,524,436,699433558,9442,0 +7434,HARAD+f,534,466,8155296,11188,0 +7435,Wioska+1,426,552,8779575,9753,0 +7436,ADEN,558,440,698588535,9711,0 +7437,P+Konfederacja,453,450,848915730,9759,0 +7439,Szlachcic,487,467,699098531,10292,0 +7440,%230067+Daniel+Z,486,557,9272054,10000,0 +7441,046.+ALFI,482,563,8539216,1386,0 +7442,%2B44+70+Collonges+au+Mont+dOr,409,472,698361257,9846,0 +7443,.%3A042%3A.+Chillout,523,450,848934935,5861,0 +7444,Bucksbarzy%C5%84sKamiiiru,435,529,848955783,10971,0 +7445,95k%24+Grvvyq,548,523,699676005,4600,0 +7446,x08,558,478,8459255,10267,5 +7447,Sparta_58,479,573,2585846,9638,0 +7448,%C5%9Amieszkii,512,563,3454753,9117,0 +7449,006.+Wioska+Lord+Axen,574,523,8788366,10495,0 +7450,Szlachcic,574,494,699759128,10237,0 +7451,DOM+7,567,408,849064614,9818,0 +7452,xxx,512,459,698239813,9186,0 +7453,Fajna010,460,574,8539216,1915,0 +7454,0063+7+strupin,446,431,3909522,10078,0 +7455,Z07+Mikkeli,561,514,699272880,10345,7 +7456,-x6,499,497,848967710,10495,0 +7457,0036+MzM,544,540,698416970,10019,0 +7458,033,584,468,699573053,10495,0 +7459,007+Rupik95,576,550,699316421,9744,0 +7460,Joms+035,533,421,699756210,6797,0 +7461,Wioska+Barbarzy%C5%84ska,555,477,698867483,8893,0 +7462,Sparta_74,470,583,2585846,9638,0 +7463,019+%7C,556,552,8000875,10159,1 +7464,Stage+group+D,463,596,699364813,9924,0 +7465,041.+A-RE-SE-EY,573,508,848967710,10252,0 +7466,Ethan+Hunt+04,603,476,698702991,9844,0 +7467,Knowhere,378,500,699723284,10452,0 +7468,058,444,490,699510259,9747,0 +7469,13%2A,568,542,699664910,8902,0 +7470,Kasyno,443,504,7249451,9994,0 +7471,Szlachcic+%21%21%21,507,484,699098531,10178,0 +7472,Piek%C5%82o+to+inni,520,482,848956765,10083,0 +7473,Kasyno,444,514,7249451,10058,0 +7474,%5B117%5D,544,507,8000875,9875,0 +7475,006,529,480,848967710,10019,0 +7476,%21Wioska+511,576,458,477415,10495,0 +7477,-%5B032%5D-+Jannu,555,474,849092827,9568,0 +7478,XnX-16,458,534,699698253,9780,0 +7479,%5B125%5D+North25,574,475,848985692,10236,0 +7480,%5B009%5D+MORTU+VIN,607,533,848985692,10159,0 +7481,JW2,553,443,699368887,6806,0 +7482,%5B127%5D+North27,573,477,848985692,10359,0 +7483,MINAS+MORGUL+F,537,464,8155296,10997,0 +7484,%5BA%5D_%5B022%5D+Dejv.oldplyr,400,479,699380607,10365,0 +7485,Rampage+1,527,472,699355601,3705,0 +7486,004+-+piek%C5%82o,418,579,225023,10495,0 +7487,059+%7C,547,500,8000875,10160,0 +7488,Wioska+barbarzy%C5%84ska,450,521,698971484,10108,0 +7489,PRO8L3M,423,496,7491093,7358,0 +7490,038,424,508,699851427,10129,0 +7491,0063+b56,452,434,3909522,8487,0 +7492,Weso%C5%82ych+%C5%9Awi%C4%85t,561,452,699368887,9994,0 +7493,ladyanima,513,571,699703642,9689,0 +7494,Fajna+032,451,567,8539216,7649,0 +7495,Wioska+025,590,575,848971079,9761,0 +7496,Tutkowa+darma,590,489,8925695,7772,0 +7497,Owa,429,555,699443920,3146,0 +7498,027,441,492,699510259,10016,0 +7499,043.+A-RE-SE-EY,563,530,848967710,10252,0 +7500,Szlachcic+051,577,512,758104,9338,0 +7501,%3F%2B44+76+Hoymille,465,479,698361257,9763,0 +7502,F090,495,527,699189792,9505,0 +7503,ChceszPokojuSzykujSi%C4%99DoWojny,455,512,699333701,9020,0 +7504,Tank+Wioska+Damian0704,430,501,698290577,10217,0 +7505,Osada,501,435,699098531,10292,0 +7506,Moria,494,518,849091897,4414,0 +7507,%5B089%5D,550,507,8000875,9902,0 +7508,PRO8L3M,413,495,7491093,10163,0 +7509,06+%7C+Zag%C5%82%C4%99bie+Rury,542,431,849002091,9217,0 +7510,Cilonia,514,556,849066849,8322,0 +7511,ANIO%C5%81Y+I+DEMONY,502,525,699785935,10083,0 +7512,%7C054%7C,551,568,873575,9834,0 +7513,A17,550,449,699368887,7727,7 +7514,0003,444,395,699431255,10025,0 +7515,%2AAteny_01,474,535,2585846,9682,0 +7516,Napewno+to+nie+jest+off,514,445,848912265,2762,0 +7517,10004,525,566,848915531,11550,0 +7518,Lord+Arsey+KING,502,467,848956513,9889,0 +7519,OOV,510,437,699658023,9700,0 +7520,152+Jutiapa,454,454,1497168,9761,0 +7521,Selonari.,461,556,698704189,7761,0 +7522,Front_26,453,528,2585846,9638,0 +7523,022,542,396,849064752,10311,0 +7524,047,424,511,699851427,10042,0 +7525,Suppi,441,518,699856962,9553,0 +7526,003.,523,556,699695167,9902,0 +7527,Fresio,450,445,699660539,9409,0 +7528,156+Mazatenango,454,459,1497168,9783,0 +7529,Wioska,384,545,849084005,10178,0 +7530,008,463,578,848886870,10495,0 +7531,Wioska+barbarzy%C5%84ska,437,502,698971484,10241,0 +7532,keepo,479,509,848967710,7452,0 +7533,Wioska+barbarzy%C5%84ska,434,444,698884287,10285,0 +7534,005,508,480,698881022,6176,0 +7536,Wioska+Barbarzy%C5%84ska,544,495,698867483,10083,0 +7537,008+Ratusz+Arsena%C5%82,540,469,849083501,4508,0 +7538,Osada+koczownik%C3%B3w,434,503,698971484,10008,2 +7540,Wioska+21,538,500,699385139,3997,0 +7541,Winter+is+coming,438,539,699856962,6066,0 +7542,Szlachcic+003,570,536,758104,9338,0 +7543,Osada,500,439,699098531,10297,0 +7544,COUSINS,490,595,7976264,10259,0 +7545,KIELBA+034,452,572,699342219,10495,0 +7546,Part+III,535,381,698350371,10495,0 +7547,Wioska+barbarzy%C5%84ska,455,542,699698253,2643,0 +7548,Wioska+barbarzy%C5%84ska,592,557,8742874,9740,0 +7549,034.+A-RE-SE-EY,570,537,848967710,10252,0 +7550,Village,499,583,849094067,8441,0 +7551,00704,452,440,3909522,9577,0 +7552,%5B079%5D,527,537,8000875,9957,0 +7553,Szlachcic,491,478,699098531,10167,0 +7554,.%3A096%3A.+Rewson,542,445,848934935,6100,0 +7555,Piek%C5%82o+to+inni,522,423,848956765,10083,0 +7556,NOT%3F,433,536,9236866,8571,0 +7557,Lord+Arsey+KING,517,497,848956513,10285,0 +7558,Yogi,494,545,2808172,10019,0 +7559,Otr%C4%99t,444,554,699443920,9994,0 +7560,B030,485,458,699299123,9133,0 +7561,Osada,496,442,699098531,10300,0 +7562,R%C4%99cznik+do+zmiany,416,485,699697558,12154,0 +7563,FF003,467,518,699189792,5728,0 +7564,Strasznie+Mi%C5%82y+S%C4%85siad%21,547,449,556154,6990,0 +7565,009+Dras-Leona,611,482,8337151,10083,0 +7566,.%3A041%3A.+%C5%81a%C5%84cuch,503,410,8649412,8746,0 +7567,020.+Wioska+SeexyPapi,578,515,8788366,10252,0 +7568,192+Quito,472,468,1497168,7862,0 +7569,Monetki,474,414,699098531,10292,0 +7570,019,492,577,3613413,9189,0 +7571,Lord+Arsey+KING,575,584,848956513,10285,0 +7572,MasteroN+10,565,448,699379895,9887,0 +7573,Szlachcic,488,463,699098531,10358,0 +7574,Sector+5+Slums+Area,514,590,8199417,10083,0 +7575,Szlachcic+x,508,458,699098531,9835,0 +7576,P.005,535,566,873575,10184,0 +7577,00973,461,437,3909522,10279,0 +7578,PRO8L3M,465,496,7491093,9234,0 +7579,7.62+mm,465,448,699777234,9249,0 +7580,046.+A-RE-SE-EY,554,517,848967710,10485,0 +7581,%C5%9Amieszkii,508,563,3454753,9175,0 +7582,Osada,499,440,699098531,10291,0 +7583,Wioska+barbarzy%C5%84ska,572,518,699851345,9697,0 +7584,Wioska_05,539,448,8674163,9341,0 +7585,0063+b1,456,431,3909522,10072,0 +7586,%3F%2B44+76+Tingry,460,476,698361257,9649,0 +7587,K44+020,431,499,698290577,9996,0 +7588,Winter+is+coming,505,583,699364813,9976,0 +7589,0039+K55+and987+OZDR.,505,543,3613413,9842,0 +7590,Szlachcic,577,511,698867446,9852,0 +7591,Wioska+barbarzy%C5%84ska,565,457,699368887,10058,0 +7592,PRO8L3M,452,502,7491093,10311,0 +7593,002,462,440,9291984,10478,0 +7594,Piek%C5%82o+to+inni,520,431,848956765,10160,0 +7595,Napewno+to+nie+jest+off,518,445,848912265,2477,0 +7596,Suppi,443,448,699856962,9570,0 +7597,0060,509,517,699432672,10495,0 +7598,Szlachcic+053,569,520,758104,9338,0 +7599,075.,504,485,8788366,10252,0 +7600,Brat447,384,509,699262350,10476,0 +7601,Gratuluje+m%C3%B3zgu,444,536,698971484,10008,0 +7602,044,434,492,699510259,9745,0 +7603,Jaaa,567,588,698635863,10830,0 +7604,Abadon+landy+3,563,488,699347951,6416,0 +7605,A11,548,455,699368887,9825,0 +7606,Kentin+ufam+Tobie,433,400,699783765,10000,0 +7607,B065,478,471,699299123,10495,0 +7608,061+Sacramento,462,472,1497168,9761,0 +7609,017.+Wioska+Exano,569,521,8788366,10252,0 +7610,101+Edmonton,472,486,1497168,9761,0 +7611,A049,500,426,699299123,10495,0 +7612,P+Konfederacja+%2B,462,445,848915730,9480,0 +7613,Piek%C5%82o+to+inni,521,422,848956765,10160,0 +7614,012+Sosnowiec,429,426,9291984,10478,0 +7615,015,570,556,699316421,9744,0 +7616,028.+Wioska+Misiaczek6,569,504,8788366,10252,9 +7618,%5B107%5D+North7,579,476,848985692,9978,0 +7619,Fajna002,451,556,698971484,7444,0 +7620,Jaaa,575,537,698635863,10476,0 +7621,P.027,538,551,873575,9913,0 +7622,.%3A100%3A.+Niangmen,502,394,848934935,9899,0 +7623,%2B44+62+Saint+Didier+au+Mont+dOr,425,469,698361257,9844,0 +7624,Szlachcic,507,459,699098531,8552,0 +7625,-001-+Chod%C5%BA+chod%C5%BA+chod%C5%BA,450,411,9291984,10487,0 +7626,...Just+like+that,455,507,699723284,10452,0 +7627,Wioska+barbarzy%C5%84ska,436,504,698971484,10008,0 +7629,010+Cinnabar+Island,565,458,699441366,11109,0 +7630,Szlachcic+%21%21%21,498,477,699098531,10365,0 +7631,Piek%C5%82o+to+inni,521,427,848956765,10160,0 +7632,KONFA+TO+MARKA%2C+NARKA,442,464,698152377,10297,0 +7633,W001Wygnanie,445,498,698290577,10157,0 +7634,Ateny_10,473,535,698971484,10008,0 +7635,Joms+001,523,420,699756210,9800,0 +7636,-+052+-,541,577,849018239,10000,0 +7637,Winter+is+coming,508,585,699364813,10311,0 +7638,kto+ananasowy+pod+wod%C4%85+ma+dom,566,502,699628084,9797,0 +7639,.%3A020%3A.+Kot,506,431,8649412,9747,0 +7640,Winter+is+coming,510,587,699364813,10559,0 +7641,%C5%9Amieszkiii,486,590,3454753,8751,0 +7642,...Just+like+that,469,474,699723284,5414,0 +7643,Daleko+014,474,583,699868002,10495,0 +7644,South+Barba+2,457,458,699796330,10563,0 +7645,Jaaa,577,549,698635863,10479,2 +7646,%5B155%5D,550,505,8000875,7842,0 +7647,CALL+970,552,557,699784536,10311,0 +7648,WioskaF,509,584,8369778,7897,0 +7649,%5B110%5D+North10,578,474,848985692,10051,0 +7650,CALL+1012,525,614,699784536,10311,0 +7651,JaamMwG+001,524,524,848987051,9808,0 +7653,Szlachcic,489,479,699098531,10300,0 +7654,Fajna+083,457,562,8539216,5745,0 +7655,Suppi,439,450,699856962,9554,0 +7656,a+CSA-Z,454,533,3909522,2856,0 +7657,Os+Konfederacja,471,444,848915730,9556,0 +7658,Kasyno,441,503,7249451,8965,0 +7659,ABADON+NEW1,553,472,699347951,5594,0 +7660,.%3A004%3A.+Kr%C3%B3lestwo,511,418,8649412,9860,0 +7661,7.62+mm,468,433,699777234,10019,0 +7662,NOT%3F,433,540,9236866,8743,0 +7663,Suppi,441,528,699856962,9556,0 +7664,CALL+1058,522,532,699784536,10495,9 +7665,%230075+Rado%C5%9B%C4%87,497,559,8827094,9981,0 +7666,Marienburg+7,526,479,699355601,2609,0 +7667,Summer+Slam+%7E+011,521,548,7581876,9810,0 +7668,014,558,519,699194766,9922,0 +7669,Enigma+004,508,453,699098531,6747,0 +7670,Cast+Away+005,450,490,698290577,8804,0 +7671,keepo,476,512,848967710,4233,0 +7672,000+Warszawa,541,470,849083501,10019,0 +7673,0013+K55+and987+OZDR.,509,547,3613413,9845,0 +7674,%2B44+61+Nesles,411,461,698361257,9878,0 +7675,Szlachcic,580,479,699759128,10237,0 +7676,0053,460,472,848913037,4420,0 +7677,%230122+Uprzejmo%C5%9B%C4%87,482,548,9272054,10003,0 +7678,Piek%C5%82o+to+inni,514,424,848956765,10019,0 +7679,SsSs,451,499,1536625,10160,0 +7680,keepo,482,535,848967710,10495,0 +7681,0062+%7E1%7E,444,434,3909522,10083,0 +7682,lady,501,588,699703642,10471,0 +7683,Ethan+Hunt+01,603,477,698702991,9768,0 +7684,061.+ALFI,469,565,8539216,1882,0 +7685,.%3A021%3A.+Pies,518,418,8649412,8976,0 +7686,0060+Wioska,447,434,3909522,10436,0 +7687,Mersulka,433,457,698884287,10285,0 +7688,.%3A030%3A.+Sos,499,488,699098531,9162,0 +7689,%7E%7ELataj%C4%85cyHolender%7E%7E,561,507,9174887,10146,0 +7690,%7E%7ELataj%C4%85cyHolender%7E%7E,581,497,9174887,10393,0 +7691,Szlachcic+9%3B20,505,475,699098531,10267,0 +7692,019,531,434,699788305,8464,0 +7693,Front_04,459,520,2585846,9638,0 +7694,yogi,539,567,2808172,10019,0 +7695,WarehousePCC,585,494,699347951,11550,0 +7696,067+%7C,553,501,8000875,10025,0 +7697,090.,506,489,8788366,10252,0 +7698,027+Memphis,444,482,1497168,9761,0 +7699,Lord+Arsey+KING,517,495,848956513,10285,4 +7700,%21+Wioska+barbarzy%C5%84ska,543,459,477415,8820,0 +7701,%2B44+72+Villeurbanne+Bon+Coin,426,471,698361257,9841,0 +7702,KONFA+TO+MARKA%2C+NARKA,427,467,698152377,10291,0 +7703,Piek%C5%82o+to+inni,515,475,848956765,10019,0 +7704,Village,503,589,849094067,10636,0 +7705,Piek%C5%82o+to+inni,523,429,848956765,10160,0 +7706,Lord+Arsey+KING,573,585,848956513,10285,0 +7707,Okaz,436,556,699443920,3953,0 +7708,0070+Osada,453,441,3909522,7565,6 +7709,Sparta_46,480,576,2585846,9648,0 +7710,20000,520,541,848915531,11321,0 +7711,008,595,458,849088515,10019,0 +7712,%5B183%5D,536,515,848985692,7832,0 +7713,Osada,508,456,699098531,9637,0 +7714,.achim.,515,412,6936607,10311,0 +7715,EPICENTRUM,539,467,8155296,10035,0 +7716,0063+sawin,447,431,3909522,10239,0 +7717,%5B128%5D,553,546,8000875,9761,0 +7718,Joms+010,518,419,699756210,9861,0 +7719,-%5B033%5D-+Tiricz+Mir,558,474,849092827,8121,0 +7720,067,413,516,699851427,10129,0 +7721,0015%7CLublana,510,441,8649412,9383,0 +7723,0wi,471,512,699189792,4765,0 +7724,10019,537,555,848915531,7324,0 +7725,B052,475,469,699299123,9694,0 +7726,0006+MzM,572,449,698416970,8455,0 +7727,C+015+Bia%C5%82y+Ko%C5%9Bci%C3%B3%C5%82,417,575,849084740,9834,0 +7728,Szlachcic,580,501,699759128,10237,0 +7729,Wioska+Barbarzy%C5%84ska,544,482,698867483,10160,0 +7730,KIELBA+124,452,562,699342219,4785,0 +7731,yogi,514,547,2808172,6686,0 +7732,015,549,522,699194766,8781,0 +7733,062,408,501,699851427,10129,0 +7734,Mzm30,555,521,7142659,10362,0 +7736,Winter+is+coming,443,550,698971484,1532,0 +7737,%5B067%5D+Chwilowa,535,492,848985692,10257,1 +7738,Za+daleko,578,593,699785935,10178,0 +7739,Suppi,439,451,699856962,9570,0 +7740,Horyzont+zdarze%C5%84,534,554,7581876,9835,0 +7741,040.+Caelum,512,579,699703642,9628,0 +7742,Szlachcic,579,483,699759128,10237,0 +7743,Szlachcic,488,468,699098531,10162,0 +7744,Piek%C5%82o+to+inni,513,427,848956765,10160,0 +7745,MIKOR+004,559,388,6343784,10083,0 +7746,Wioska+barbarzy%C5%84ska,449,528,698971484,10008,0 +7747,WINTER+IS+COMING,473,503,1536625,10207,0 +7748,R%C4%99cznik+do+zmiany,417,482,699697558,10495,0 +7749,%28004%29,412,535,699846892,10146,0 +7750,keepo,488,523,848967710,9351,0 +7751,Osada,504,456,699098531,9637,0 +7752,-030-,464,423,9291984,10479,0 +7753,CALL+978,545,566,699784536,10311,0 +7754,x+daro+091,552,469,3909522,8574,0 +7755,033.,483,624,699494488,10495,0 +7756,Mzm41,567,523,7142659,10252,0 +7757,%5B126%5D+Dolina+Cienia,581,473,848985692,10362,3 +7758,036.+A-RE-SE-EY,569,509,848967710,10252,0 +7759,Joms+006,527,421,699756210,10273,0 +7760,Fajna+002,450,558,699868002,6481,0 +7761,Wioska_07,546,451,8674163,5135,0 +7762,Sparta_49,485,575,2585846,9638,0 +7763,Bia%C5%82y+Sad,483,379,699658023,9756,0 +7764,018,492,578,3613413,8703,0 +7765,Wioska+barbarzy%C5%84ska,484,548,7976264,10145,0 +7766,029+Montgomery,437,476,1497168,9761,0 +7767,B026,478,454,699299123,10495,0 +7768,022+%7C,560,558,8000875,10144,0 +7769,Fajna+035,458,572,8539216,1977,0 +7770,Szlachcic,462,412,698388578,10237,0 +7771,%2AINTERTWINED%2A,533,546,698704189,9711,0 +7772,077.+ALFI,466,568,8539216,1536,0 +7773,Ho%C5%82opole,487,380,699433558,10160,0 +7774,Suppi,431,458,699856962,11678,0 +7775,%21Wioska+410,571,520,477415,10495,0 +7776,.%3A081%3A.+Takmahal,525,452,848934935,3854,0 +7777,Mniejsze+z%C5%82o+0057,420,505,699794765,7066,0 +7778,Gattacka,572,493,699298370,8532,4 +7779,Wioska+Nie+Rusza%C4%87,498,534,7581876,9811,0 +7780,0080+Wioska,443,446,3909522,10083,0 +7781,-14-,584,475,699347951,10508,0 +7782,Wioska+barbarzy%C5%84ska,513,477,699098531,4035,0 +7783,R%C4%99cznik+do+zmiany,416,493,699697558,11123,0 +7784,KIELBA+090,445,570,699342219,10239,0 +7785,NOT%3F,419,510,9236866,10042,0 +7786,Wioska+20,515,531,699385139,12154,0 +7787,-+Killing+Me+Slowly,510,516,699785935,10083,0 +7788,Winter+is+coming,434,547,699856962,2159,0 +7789,R%C4%99cznik+do+zmiany,419,480,699697558,11348,0 +7790,009+Saffron+City,564,459,699441366,11109,2 +7791,Szlachcic,578,493,699759128,10237,0 +7792,lady,514,572,699703642,10521,0 +7793,0000009%23,434,573,849089881,10475,0 +7794,%5B077%5D+Kukupha+iwe,530,505,848985692,10516,0 +7795,Lord+Arsey+KING,529,521,848956513,9014,0 +7796,127+San+Felipe,462,475,1497168,9761,0 +7797,Szlachcic,567,467,698867446,9781,0 +7798,Pf+Konfederacja,487,490,848915730,9976,0 +7799,085.+ALFI,482,552,8539216,1762,0 +7800,Horyzont+zdarze%C5%84,527,549,7581876,10019,0 +7801,-+306+-,530,585,849018239,10000,0 +7802,Z05+Danderyd,561,524,699272880,10429,0 +7803,Szlachcic,499,490,699098531,9882,0 +7804,021+-+Palenque%2A%2A%2A,435,591,225023,10495,0 +7805,Village,498,582,849094067,8354,0 +7806,xxx,500,430,698239813,10495,0 +7807,Wioska+barbarzy%C5%84ska,588,521,699851345,9689,0 +7808,K44+003,418,476,698290577,7446,0 +7809,SsSs,465,500,1536625,9436,0 +7810,Lord+Arsey+KING,535,535,848956513,10285,0 +7811,Hengfors,486,380,699433558,10311,0 +7812,F053,493,516,699189792,9346,0 +7813,Front_25,455,528,2585846,9249,0 +7814,018.+ALFI,481,566,8539216,1959,9 +7815,Horyzont+zdarze%C5%84,519,546,7581876,10019,0 +7816,Cast+Away+006,450,489,698290577,10073,0 +7817,Met4n4boL,618,505,699379895,10495,0 +7818,NOT%3F,441,552,9236866,5444,0 +7819,Sparta_32,489,575,2585846,9638,0 +7820,NOT%3F,424,530,9236866,6763,0 +7821,Lord+Arsey+KING,526,484,848956513,10285,0 +7822,Xx+Pegaz+xX,500,542,849087855,10002,0 +7823,SsSs,453,497,1536625,8114,0 +7824,B057,475,471,699299123,10495,0 +7825,Piek%C5%82o+to+inni,522,419,848956765,10160,0 +7826,CALL+984,546,571,699784536,10068,0 +7827,keepo,480,512,848967710,9540,0 +7828,Szlachcic+012,556,533,758104,8024,0 +7829,Village,520,575,849094067,12154,0 +7830,0002,510,518,699432672,10495,0 +7831,034,478,521,2585846,6815,0 +7832,ChceszPokojuSzykujSi%C4%99DoWojny,466,511,699333701,9109,0 +7833,122.,494,487,8788366,4840,0 +7834,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+14,620,510,699379895,6167,0 +7835,Szlachcic,576,496,699759128,10237,0 +7836,Dum+Spiro+Spero,493,555,848896948,9984,0 +7837,Suppi,429,445,699856962,10229,0 +7838,009+%C5%9Awi%C4%99tokrzyska,535,477,849083501,4769,0 +7839,P+Konfederacja,459,444,848915730,9361,5 +7840,8.+Columbia,459,560,698704189,8688,0 +7841,Fajna+038,454,566,8539216,6769,0 +7842,Ogr%C3%B3d+Warzywny,464,559,7249451,8346,0 +7843,%5B101%5D+North1,573,481,848985692,10083,0 +7844,Zasiedmiog%C3%B3rogr%C3%B3d,534,428,699433558,10787,0 +7845,063.,511,506,8788366,7234,0 +7846,K44+017,433,490,698290577,8225,0 +7847,CALL+948,548,559,699784536,10311,0 +7848,Pf+Konfederacja,489,488,848915730,9653,0 +7849,Szlachcic,584,494,699759128,10237,0 +7850,Wioska+10,443,540,698971484,2524,0 +7851,A.001,410,585,849088243,10559,0 +7852,%23028,491,589,849001572,9744,0 +7853,%5B139%5D+North,588,470,848985692,10787,0 +7854,Lord+Arsey+KING,532,517,848956513,10285,0 +7855,081,565,416,849064752,10311,0 +7856,047.+ALFI,484,565,8539216,1634,0 +7857,Majin+Buu+005,440,565,699054373,9408,0 +7858,%5B141%5D,560,533,8000875,9921,0 +7859,Pln+001+Busko-Zdr%C3%B3j,421,565,849084740,9128,0 +7860,Wioska+barbarzy%C5%84ska,529,505,848967710,10485,0 +7861,Village,518,576,849094067,12154,0 +7862,Wioska+barbarzy%C5%84ska,538,502,848967710,10252,0 +7863,%230130+Kropiwki,483,548,9272054,9579,0 +7864,kathare,538,545,873575,10348,0 +7865,006+Miami,431,430,9291984,10495,0 +7866,080.,513,505,8788366,10252,0 +7867,keepo,483,534,848967710,10495,0 +7868,015,461,530,2585846,2718,0 +7869,B044,430,547,8779575,2319,0 +7870,Konfiasze,472,497,698908912,10544,6 +7871,ChceszPokojuSzykujSi%C4%99DoWojny,459,509,699333701,6125,0 +7872,Szlachcic,499,469,699098531,9682,0 +7873,200131,514,538,848915531,6868,0 +7874,NOT%3F,458,552,9236866,2573,0 +7875,F055,502,535,699189792,9756,0 +7876,Szlachcic,582,489,699759128,10237,1 +7877,Gravity,416,459,698962117,9579,0 +7878,NOT%3F,413,510,9236866,9954,0 +7879,Wioska+barbarzy%C5%84ska,488,548,7976264,7877,0 +7880,%2B44+72+Heyrieux,420,470,698361257,10000,0 +7881,%2AINTERTWINED%2A%2A,526,561,698704189,9711,4 +7882,Kula,544,463,698477883,2761,0 +7883,ChceszPokojuSzykujSi%C4%99DoWojny,465,512,699333701,5919,0 +7884,044,545,500,699573053,10495,0 +7885,szlachcic,442,541,698971484,2009,0 +7886,Wioska+Barbarzy%C5%84ska,539,477,698867483,10019,0 +7887,Wioska+Barbarzy%C5%84ska,548,483,698867483,10019,0 +7888,Monetki,478,427,699098531,9814,0 +7889,B004,484,445,699299123,10495,0 +7890,ADEN,522,384,698588535,9737,0 +7891,Barad-dur,533,532,7581876,7041,0 +7892,009791+Choroszcz,463,431,3909522,7501,0 +7893,087,543,497,699351301,10121,0 +7894,143+Ciudad+Juarez,466,484,1497168,9761,0 +7895,0063+2+wierzbica,448,430,3909522,10075,0 +7896,Osada,496,444,699098531,10292,0 +7897,Szlachcic+%21%21%21,504,473,699098531,9899,0 +7898,103,413,527,699851427,10042,0 +7899,Wioska+521,556,463,477415,10495,0 +7900,Szlachcic,505,470,699098531,9166,0 +7901,k55+Hieronim,543,538,698867483,8514,0 +7902,03+Francja,584,486,8925695,8020,0 +7903,NOT%3F,426,528,9236866,10042,0 +7904,076,569,395,849063849,10316,0 +7905,%5B151%5D,550,509,8000875,9613,0 +7906,Wioska,380,523,849084005,10178,0 +7907,Szlachcic,487,463,699098531,10306,0 +7908,Kentin+ufam+Tobie,405,482,699783765,10000,0 +7909,SsSs,425,484,1536625,8938,0 +7910,045+-+B06%2A%2A%2A,433,591,225023,10495,0 +7911,016+Fiona,445,499,698290577,9965,0 +7912,Monetki,484,414,699098531,10291,0 +7913,Joms+038,544,422,699756210,7637,0 +7914,%7E050.,489,552,7139820,10495,0 +7915,NOT%3F,433,529,9236866,10042,0 +7916,Piek%C5%82o+to+inni,528,438,848956765,10160,0 +7917,%2AINTERTWINED%2A,524,555,698704189,9711,0 +7918,%2B44+73+Maninghen+Henne,430,473,698361257,9841,0 +7919,Gattacka,583,482,699298370,9663,0 +7920,KIELBA+051,466,583,699342219,10495,0 +7921,-031-,457,424,9291984,10479,0 +7922,.achim.,533,456,6936607,5372,0 +7923,JK2,560,448,699368887,6550,0 +7924,Andrzejownia+Pupownia,544,423,848986287,9752,0 +7925,046,427,510,699851427,10129,0 +7926,Szlachcic,499,470,699098531,10311,0 +7927,-%5B015%5D-+Gyachung+Kang,557,484,849092827,8087,0 +7928,ADEN,564,444,698588535,10311,0 +7929,NOT%3F,430,493,9236866,10042,0 +7930,Wioska+barbarzy%C5%84ska,449,521,698971484,9783,0 +7931,K44+006,420,479,698290577,7331,0 +7932,048.+A-RE-SE-EY,549,510,848967710,10252,0 +7933,030,421,523,699851427,10042,6 +7934,083,418,532,699851427,10042,0 +7935,030,531,425,699788305,9372,0 +7936,%C5%9Amieszkiii,498,563,3454753,9847,0 +7937,kathare,538,547,873575,10224,0 +7938,0086,447,441,3909522,8149,0 +7939,Szlachcic+055,561,527,758104,8024,0 +7940,Lord+Arsey+KING,519,499,848956513,10285,4 +7941,%2AINTERTWINED%2A,512,617,698704189,9711,0 +7943,NOT%3F,430,526,9236866,10042,0 +7944,Szlachcic,585,417,699170684,9835,0 +7945,034,584,466,699573053,10495,0 +7946,%2310.,524,465,848967710,10252,0 +7947,051.+A-RE-SE-EY,543,516,848967710,10252,0 +7949,Village,504,585,849094067,11824,0 +7950,041.+ALFI,468,571,8539216,1359,0 +7951,Lord+Arsey+KING,518,471,848956513,10285,0 +7952,Sk%C5%82ad,513,616,606407,10291,0 +7953,Lord+Arsey+KING,523,489,848956513,10285,0 +7954,Dobranoc,423,545,699364813,9756,0 +7955,keepo,484,527,848967710,9426,0 +7956,xxx,520,466,698239813,10495,0 +7957,F018,495,542,699189792,9677,0 +7959,R%C4%99cznik+do+zmiany,422,487,699697558,11215,0 +7960,041,433,501,699510259,9756,6 +7961,.achim.,533,449,6936607,10841,0 +7962,046,541,424,7271812,6031,0 +7963,013+Rac%C5%82awicka,537,468,8155296,3463,0 +7964,032+Santa+Barbara,441,461,1497168,9761,0 +7965,KIELBA+073,471,580,699342219,10301,0 +7966,%2B44+61+Lyon+Gerland,417,462,698361257,9846,0 +7967,.achim.,557,443,6936607,9597,0 +7968,02+Skrable,617,504,699377151,8865,0 +7969,Suppi,438,515,699856962,9559,0 +7970,Szlachcic+%21%21%21,514,465,699098531,7503,0 +7971,-%5B030%5D-+Dhaulagiri+II,551,494,849092827,7050,0 +7972,Pf+Konfederacja,494,490,848915730,9938,0 +7973,Fajna+017,449,555,698971484,8215,0 +7974,%2AINTERTWINED%2A,480,539,698704189,9711,0 +7975,kathare,497,572,873575,10121,0 +7976,Piek%C5%82o+to+inni,526,434,848956765,10160,0 +7977,TROJA.14,460,578,8438707,8661,0 +7978,WINTER+IS+COMING,472,504,1536625,10636,0 +7979,CALL+1079,540,544,699784536,10971,0 +7980,Village,514,581,849094067,12154,0 +7981,%5B093%5D,532,496,848985692,9062,0 +7982,%7E%7ELataj%C4%85cyHolender%7E%7E,581,514,9174887,10152,0 +7983,7.62+mm,491,428,699777234,10019,0 +7984,NOT%3F,411,510,9236866,10042,0 +7985,KONFA+TO+MARKA%2C+NARKA,421,462,698152377,10297,0 +7986,00851,440,441,3909522,8213,0 +7987,026+co+ja+tu+robie+2,582,480,8459255,10001,0 +7988,Sparta_69,469,583,2585846,9638,0 +7989,Szlachcic,577,487,699759128,10237,0 +7990,0006+K55+and987+OZDR.,501,558,3613413,9844,2 +7991,yogi,525,533,2808172,10083,0 +7992,%230141+Reptilianin,497,553,9272054,10495,0 +7993,Wioska+barbarzy%C5%84ska,514,421,8649412,2904,0 +7994,125+Cancun,479,486,1497168,9761,0 +7995,Zochcinek+f%3F,536,468,8155296,8303,0 +7996,7.62+mm,500,429,699777234,10019,0 +7997,099,552,506,699351301,9350,0 +7998,ERIADOR,535,468,8155296,10359,0 +7999,.%3A005%3A.+Chillout,514,431,848934935,6167,0 +8001,Sparta_47,483,582,2585846,9638,0 +8002,.....,544,549,848915531,11321,9 +8003,%21+Szcz%C4%99%C5%9Bliwego+Nowego+Roku%3A%29,553,463,477415,6483,0 +8004,064,587,478,699573053,10495,0 +8005,Mniejsze+z%C5%82o+0058,415,507,699794765,8349,7 +8006,%23Ma%C5%82eOrzeszki,571,456,699795378,10019,0 +8007,Ten+stan,515,511,699785935,6804,0 +8008,Wioska+barbarzy%C5%84ska,537,507,848967710,10252,0 +8009,%C5%9Amieszkii,515,560,3454753,9115,0 +8010,B019,484,451,699299123,10495,0 +8011,C016,516,458,699299123,9621,0 +8012,Wioska+Szpanerq,523,561,6818593,9835,0 +8013,%2B44+73+Pierre+Benite,432,476,698361257,9860,0 +8014,Sparta_51,480,583,2585846,9638,0 +8015,Szlachcic+057,573,520,758104,9338,0 +8016,Piek%C5%82o+to+inni,511,484,848956765,2571,0 +8017,017,426,488,699510259,10083,0 +8018,Horyzont+zdarze%C5%84,530,548,7581876,9835,0 +8020,0650,476,549,698659980,10019,0 +8021,.%3A124%3A.+Niangmen,519,413,848934935,9899,0 +8022,PRO8L3M,467,490,7491093,9289,0 +8023,047.,549,475,849094609,10132,0 +8024,Jaaa,580,539,698635863,10476,0 +8025,C025,519,458,699299123,10971,0 +8026,Suppi,435,449,699856962,9570,9 +8027,076.+ALFI,486,562,8539216,1358,0 +8028,Piek%C5%82o+to+inni,521,469,848956765,8726,0 +8029,Winter+is+coming,439,549,698971484,2018,0 +8030,Szlachcic,505,457,699098531,8730,0 +8031,F025,496,529,699189792,9747,0 +8032,%5B152%5D,561,540,8000875,8094,0 +8033,kto+ananasowy+pod+wod%C4%85+ma+dom,573,506,699628084,9797,0 +8034,.achim.,529,453,6936607,10237,0 +8035,%5B118%5D+North18,579,473,848985692,9977,0 +8036,COUSINS,490,585,699364813,10113,0 +8037,Mniejsze+z%C5%82o+0064,418,504,699794765,6504,0 +8038,%2AAteny_03,472,536,698971484,10182,0 +8039,CALL+966,547,567,699784536,10311,0 +8040,008.+A-RE-SE-EY,586,528,848967710,10252,0 +8041,Gattacka,585,502,699298370,9811,0 +8042,.achim.,540,423,6936607,10311,3 +8043,001,619,496,849091105,10728,0 +8044,B005,483,443,699299123,10495,0 +8045,%2B44+62+Condette,422,469,698361257,9860,0 +8046,033.+A-RE-SE-EY,570,534,848967710,10252,0 +8047,0021+MzM,559,483,698416970,9258,2 +8048,129+Playa+Del+Carmen,465,485,1497168,9761,0 +8049,Wioska+422,563,507,477415,10495,0 +8050,BBB,557,440,1006847,7628,6 +8051,C004+Kamigata,606,559,8096537,9277,0 +8052,%7E%7ELataj%C4%85cyHolender%7E%7E,588,514,9174887,10155,0 +8053,Winter+is+coming,504,582,699364813,9812,0 +8054,Winter+is+coming,506,586,699364813,10068,0 +8055,PRO8L3M,455,495,7491093,10452,0 +8056,0095,458,438,3909522,10306,0 +8057,013,560,404,849063849,9783,0 +8058,FF008,470,516,699189792,6365,0 +8059,Wioska+barbarzy%C5%84ska,429,500,698290577,4702,0 +8060,103+Niemi%C5%82e+zaskoczenie,542,459,7092442,8885,0 +8061,032,595,470,8459255,10971,0 +8062,004+eQNares,488,547,698704189,9711,1 +8063,.achim.,531,456,6936607,10336,0 +8064,%7E048.,480,560,7139820,10495,0 +8065,Bagdad,469,388,8847546,10654,0 +8066,Front_07,461,523,2585846,2631,0 +8067,-+093+-,539,575,849018239,10000,1 +8068,Monetki,472,429,699098531,9632,0 +8069,Szlachcic,485,461,699098531,10292,0 +8070,0063+M,453,430,3909522,5086,0 +8071,KIELBA+070,473,577,699342219,10273,0 +8072,064,439,501,699510259,9745,0 +8073,Wioska+barbarzy%C5%84ska,453,535,3909522,2522,0 +8074,026,529,572,699189792,9745,0 +8075,0002Loarderon,422,577,9167250,9400,0 +8076,.achim.,516,411,6936607,10311,0 +8077,Wioska,408,418,698971484,10008,0 +8078,Wioska+barbarzy%C5%84ska,428,446,698884287,10285,0 +8079,%5B094%5D,562,541,8000875,9962,0 +8080,005+%7C+Lord+Axen+-+its+coming%21,563,554,8000875,10158,0 +8081,K44+001,417,476,698290577,9337,0 +8082,110.,507,485,8788366,8542,0 +8083,%C5%9Amieszkiii,479,587,3454753,9734,0 +8084,057+%7C,550,499,8000875,10495,6 +8085,Suppi,445,449,699856962,10223,0 +8086,179+Caracas,468,457,1497168,9761,0 +8087,Brat447,446,492,699262350,10481,0 +8088,Joms+017,523,415,699756210,10401,0 +8089,Front_33,454,520,2585846,3843,0 +8090,Wioska+barbarzy%C5%84ska,454,538,3909522,1956,0 +8091,%5B093%5D,552,500,8000875,9821,0 +8092,%2AINTERTWINED%2A%2A,522,566,698704189,9711,0 +8093,Joanna,497,411,699658023,9708,0 +8094,2.+GW+e100+%21%21%21,489,539,849087855,10144,0 +8095,A059,504,422,699299123,10495,0 +8096,027+co+ja+tu+robie+3,584,480,8459255,9924,0 +8097,130+Merida,483,491,1497168,9761,0 +8098,Yogi,512,548,2808172,7338,0 +8099,Wioska+barbarzy%C5%84ska,444,519,698971484,10008,0 +8100,9.2+San+Francisco,536,432,8444356,10452,0 +8101,SsSs,420,494,1536625,7424,0 +8102,.%3A022%3A.+Misa,507,411,8649412,9028,0 +8103,Napewno+to+nie+jest+off,506,426,848912265,10495,0 +8104,029.+Wioska+Groovyq,552,516,8788366,10252,0 +8105,008+Pusta+Xd,554,389,3600737,9549,0 +8106,Szlachcic,484,462,699098531,10297,0 +8107,Osada,501,444,699098531,10290,0 +8108,Szlachcic,493,470,699098531,9687,0 +8109,Gattacka,570,501,699298370,10452,0 +8110,NOT%3F,416,519,9236866,10042,0 +8111,196+Sucre,467,461,1497168,9761,0 +8112,025+%7C,567,558,8000875,10140,2 +8113,F015,488,536,699189792,9744,0 +8114,Wioska+barbarzy%C5%84ska,451,520,698971484,10201,0 +8115,CALL+994,543,544,699784536,10311,0 +8116,ladyanima,513,576,699703642,8788,0 +8117,R%C4%99cznik+do+zmiany,417,483,699697558,11970,0 +8118,.%3A084%3A.+Takmahal,540,444,848934935,12154,0 +8119,158+Belize+City,454,461,1497168,9761,0 +8120,Wioska+Barbarzy%C5%84ska,543,478,698867483,10019,0 +8121,%3F%2B44+76+Cormont,464,476,698361257,9661,0 +8122,%21Wioska+425,568,501,477415,10495,0 +8123,NOT%3F,432,540,9236866,9591,0 +8124,-+314+-,525,586,849018239,10000,0 +8125,Teatr,436,568,7249451,10478,0 +8126,CALL+998,541,540,699784536,10311,0 +8127,-032-,458,430,9291984,10241,0 +8128,Ateny_79,472,523,2585846,1073,0 +8129,Horyzont+zdarze%C5%84,529,541,7581876,9835,0 +8130,%2B44+63+Coudekerque,434,468,698361257,9844,0 +8131,Napewno+to+nie+jest+off,503,417,848912265,4529,0 +8132,Gliniok,541,476,698867483,10019,2 +8133,Oldschool,442,556,699443920,9683,0 +8134,20014,532,541,848915531,6359,0 +8135,%7E%7ELataj%C4%85cyHolender%7E%7E,582,505,9174887,10160,0 +8136,Pf+Konfederacja,492,487,848915730,10132,0 +8137,Szlachcic,584,500,699759128,10232,0 +8138,002,565,489,699099811,8712,0 +8139,042+Anchorage,465,467,1497168,9761,0 +8140,%5B187%5D,531,496,848985692,6510,0 +8141,P.025,535,568,873575,10056,0 +8142,Wioska+barbarzy%C5%84ska,447,528,698971484,10008,0 +8143,045.+A-RE-SE-EY,564,520,848967710,10054,0 +8144,%2AINTERTWINED%2A%2A,463,561,698704189,8000,0 +8145,slow,534,487,848967710,10252,0 +8146,Gattacka,580,499,699298370,9745,5 +8147,001.+Roma,611,461,849091866,10252,0 +8148,Front_09,459,522,2585846,9638,0 +8149,A055,502,423,699299123,10178,0 +8150,7.62+mm,494,425,699777234,10019,0 +8151,Erebor,507,513,849091897,12154,0 +8152,028.+A-RE-SE-EY,576,535,848967710,10252,0 +8153,072.,482,491,8788366,9400,0 +8154,106+Nieuczciwe+praktyki+rynkowe,544,460,7092442,7411,0 +8155,0155,461,549,698659980,7567,0 +8156,ADEN,561,435,698588535,6588,0 +8157,086.,584,476,849094609,7582,0 +8158,049+Bo%C5%9Bnia+i+Hercegowina,584,478,7092442,10252,0 +8159,ADEN,566,438,698588535,9475,0 +8160,0Wioska+barbarzy%C5%84ska,483,538,699781762,10636,0 +8161,0Wioska+barbarzy%C5%84ska,473,516,699781762,3431,0 +8162,%3F%2B44+76+Toussieu,463,473,698361257,9998,0 +8163,Konfiasze,479,498,698908912,10311,0 +8164,Wioska+barbarzy%C5%84ska,450,524,698971484,10008,0 +8165,Brat447,444,488,699262350,5053,0 +8166,%2AAteny_30,464,522,699333701,2027,0 +8167,KONFA+TO+MARKA%2C+NARKA,433,469,698152377,10292,0 +8168,Napewno+to+nie+jest+off,516,428,848912265,6213,0 +8169,%5B099%5D,551,539,8000875,9968,0 +8170,028,527,573,699189792,9745,0 +8171,Z06+Nokia,559,525,699272880,10185,0 +8172,Wioska+barbarzy%C5%84ska,448,447,699660539,9924,0 +8173,104+Calgary,470,481,1497168,9761,0 +8174,Osada+C,450,534,698971484,10504,0 +8175,012.+ALFI,480,567,8539216,2242,8 +8176,052+Chorwacja,580,463,7092442,10495,0 +8177,%230072+Marian,485,546,9272054,10019,0 +8178,F082,488,524,699189792,9318,0 +8179,MasteroN+04,565,449,699379895,10019,0 +8180,074,592,466,699573053,10421,0 +8181,Kolbudy,436,539,699856962,5270,0 +8182,Wioska+barbarzy%C5%84ska,457,535,699698253,2904,0 +8183,Szlachcic,462,420,698388578,10237,0 +8184,P+Konfederacja,460,456,848915730,9319,0 +8185,.%3A061%3A.+Chillout,517,432,848934935,2826,0 +8186,015,465,578,848886870,8963,0 +8187,R%C4%99cznik+do+zmiany,413,494,699697558,10495,0 +8188,00611,445,437,3909522,6902,0 +8189,Ateny_44,471,530,2585846,9218,0 +8190,005+koczownik%C3%B3w,587,480,9238175,10349,2 +8191,Fresio,450,449,699660539,9851,0 +8192,0063+b4+Wioska+bb,449,432,3909522,9747,0 +8193,Monetki,476,419,699098531,10292,0 +8194,%230051+Coca-Cola,484,547,9272054,10000,0 +8195,042,448,536,698971484,6585,0 +8196,%2AAteny_31,465,521,699333701,5003,0 +8197,CALL+1028,543,561,699784536,10311,0 +8198,B064,478,469,699299123,10495,0 +8199,Mzm46,578,511,7142659,10038,7 +8201,xxx,515,456,698239813,10495,0 +8202,NOT%3F,427,535,9236866,10042,0 +8203,095,545,499,699351301,9934,0 +8204,%C5%9Amieszkii,518,557,3454753,9019,0 +8205,10020,532,556,848915531,8448,0 +8206,Piek%C5%82o+to+inni,518,476,848956765,9179,0 +8207,008x,531,467,8155296,10346,0 +8208,.achim.,531,448,6936607,11550,0 +8209,Wioska+barbarzy%C5%84ska,437,510,698971484,10008,0 +8210,NOT%3F,437,550,9236866,1110,0 +8211,0107,469,558,698659980,9156,0 +8212,036,522,575,699189792,9742,0 +8213,7.62+mm,480,440,699777234,8652,0 +8214,0068,521,529,699432672,10495,0 +8215,%5B103%5D+North3,573,483,848985692,10049,0 +8216,EKG+M02+%C5%81,478,612,33900,10495,0 +8217,7.+Pisowisko,551,434,8444356,10495,0 +8218,047,561,398,849064752,10311,0 +8219,002,511,534,848915531,9756,0 +8220,%5B083%5D,558,544,8000875,9957,0 +8221,%2B44+72+Groffliers,425,474,698361257,9749,0 +8222,%230087+Zamo%C5%82odycze,483,547,9272054,9346,0 +8223,Suppi,438,517,699856962,9551,0 +8224,Mzm33.,590,508,7142659,10362,0 +8225,%230076+%C5%9Awiecko,485,565,9272054,10019,0 +8226,Wioska+barbarzy%C5%84ska,533,507,848967710,10252,0 +8227,%C5%812%C5%81,536,463,8155296,7589,0 +8228,-%5B010%5D-+Annapurna+I,556,485,849092827,7612,0 +8229,Wioska+09,495,522,848967710,10621,0 +8230,%230011+Partycypacja,486,550,9272054,10000,0 +8231,0037+K55+and987+OZDR.,508,568,3613413,9842,0 +8232,KONFA+TO+MARKA%2C+NARKA,434,472,698152377,10303,0 +8233,Szlachcic+044,569,524,758104,9338,0 +8234,039.+A-RE-SE-EY,546,500,848967710,10252,0 +8235,0002,594,423,8459255,10268,0 +8236,137+Colima,473,483,1497168,9761,0 +8237,KIELBA+128,467,584,699342219,9860,0 +8238,%7E%7ELataj%C4%85cyHolender%7E%7E,582,512,9174887,10155,0 +8239,Piek%C5%82o+to+inni,518,473,848956765,9991,2 +8240,-+083+-,538,581,849018239,10000,0 +8241,013,482,578,7976264,8070,0 +8242,%2AINTERTWINED%2A,471,564,698704189,9711,0 +8243,%2AAteny_33,466,520,699333701,3130,0 +8244,023.+A-RE-SE-EY,570,529,848967710,10252,0 +8245,Gattacka,581,500,699298370,9753,5 +8246,Mzm51,538,519,7142659,7719,0 +8247,Monetki,475,420,699098531,10292,0 +8248,AbacadA+020,558,431,699756210,10290,0 +8249,F071,496,548,699189792,10385,0 +8250,F065,507,537,699189792,9745,0 +8251,...Just+like+that,462,478,699723284,10452,0 +8252,Napewno+to+nie+jest+off,498,395,848912265,10495,0 +8253,.achim.,558,447,6936607,9012,0 +8254,FF010,470,517,699189792,7037,0 +8255,.%3A005%3A.+Busik,509,415,8649412,9577,0 +8256,Bucksbarzy%C5%84sKamiiiru,437,524,848955783,10971,0 +8257,0359,502,623,698659980,10495,0 +8258,7.62+mm,495,424,699777234,10019,0 +8259,153+Escuintla,453,466,1497168,9761,0 +8260,007.+Boginka,506,589,699703642,9761,0 +8261,keepo,486,525,848967710,9978,0 +8263,Szlachcic,567,488,698867446,9721,0 +8264,Wioska+Krolik14,593,526,699851345,9907,0 +8265,%5B091%5D,540,494,848985692,10528,0 +8266,015,491,389,698739350,9761,0 +8267,.Tuscaloosa,469,493,699781762,10252,3 +8268,Suppi,440,454,699856962,9570,0 +8269,Sparta_59,475,578,2585846,9638,0 +8270,Wioska+barbarzy%C5%84ska,563,389,699072129,9941,0 +8271,Daleko+005,475,586,699868002,8235,0 +8272,Monetki,479,418,699098531,10311,0 +8273,7.62+mm,468,441,699777234,8960,0 +8274,Ma%C5%82y,466,382,699393759,7584,0 +8275,007+Wrz%C3%B3d+na+d....,566,489,849031818,7832,0 +8276,.achim.,533,426,6936607,10311,0 +8277,010.,614,545,8900955,5889,0 +8278,0105qqqqqqqqqqqqqqqqqqqqqqqqq,468,445,3909522,10069,0 +8280,Szlachcic,493,481,699098531,10300,0 +8281,NOT%3F,427,528,9236866,10042,0 +8282,Piek%C5%82o+to+inni,517,426,848956765,10160,0 +8283,Village,517,579,849094067,12154,0 +8284,0082,463,460,848913037,9549,0 +8285,MIKOR+000,559,391,6343784,10232,0 +8286,xxx,484,431,698239813,10495,0 +8287,013.+ALFI,482,568,8539216,1375,0 +8288,Jaaa,580,544,698635863,10476,0 +8289,001,495,411,699658023,9753,0 +8290,-+213+-,553,573,849018239,10000,0 +8291,Wioska+Michalpol545,394,523,849030226,10955,0 +8292,.achim.,524,411,6936607,10311,0 +8293,003,407,508,699851427,10129,0 +8294,Jaaa,586,537,698635863,10484,0 +8295,035,583,469,699573053,10495,0 +8296,Taran,580,461,699759128,10237,0 +8297,060,403,505,699851427,10042,0 +8298,0599,438,594,698659980,10019,0 +8299,0052,591,515,698416970,10971,0 +8300,0.Chicago,520,590,698215322,9956,0 +8301,2..,426,446,698884287,10285,0 +8302,A020,481,412,699299123,10495,0 +8303,IBAR+2,432,554,8779575,3190,0 +8304,065,589,479,699573053,10495,0 +8305,Suppi,418,536,699856962,10076,6 +8306,Zasiedmiog%C3%B3rogr%C3%B3d,543,422,699433558,6053,0 +8307,KIELBA+026,454,581,699342219,10273,0 +8308,Majin+Buu+013,438,566,699054373,9591,0 +8309,Atlantis+15,542,418,699433558,5158,0 +8310,SKELLIGE,497,410,699658023,9686,0 +8311,KONFA+TO+MARKA%2C+NARKA,418,460,698152377,10292,0 +8312,04+%7C+Wygwizd%C3%B3w,541,431,849002091,9409,0 +8313,-+323+-,530,586,849018239,10000,0 +8314,%28007%29,419,537,699846892,10143,0 +8315,KONFA+TO+MARKA%2C+NARKA,390,468,698152377,10311,0 +8316,Erebor+6,499,590,699383121,8923,0 +8317,Alabasta,498,411,699433558,10311,0 +8318,-+320+-,528,586,849018239,10343,0 +8319,00631+Wioska,442,429,3909522,7362,0 +8320,xxx%3AAabadon,591,486,699347951,11824,0 +8321,Szlachcic,465,413,698388578,10237,0 +8322,0.Honolulu,519,588,698215322,9983,0 +8323,Probol4N,592,502,699379895,10495,0 +8324,012,583,536,8138506,10005,0 +8325,003,563,410,849064752,10311,0 +8326,.achim.,514,411,6936607,10452,0 +8327,%5B203%5D+WEST,612,455,848985692,9974,0 +8328,.achim.,518,409,6936607,10311,0 +8329,069+%7C,567,565,8000875,10068,1 +8330,039.,577,450,849094609,10495,0 +8331,Village,471,588,849094067,8351,0 +8332,057,546,419,7271812,7336,0 +8333,Jaaa,568,562,698635863,10484,0 +8334,050,587,473,699573053,10495,0 +8335,A%23023%23,402,475,698807570,11970,0 +8336,066,586,463,699573053,10495,0 +8338,%28024%29,420,539,699846892,8730,0 +8339,0.Nashville,519,589,698215322,9959,0 +8340,Erebor+4,501,593,699383121,10471,0 +8341,Teatr,434,564,7249451,7265,0 +8342,.achim.,516,395,6936607,10311,0 +8343,047+POD+MOSTEM,421,548,699382126,10476,0 +8344,091+MEHEHE,494,612,6116940,10019,0 +8345,%5B015%5D+Matarte,589,526,848985692,10052,7 +8346,Lord+Arsey+KING,579,582,848956513,10285,0 +8347,Feed+me+more+003,497,377,699756210,9924,0 +8348,Wioska+2,425,552,8779575,3724,0 +8349,Cztery+kostki+lodu,566,567,699785935,10311,0 +8350,%2B44+61+Lyon+Charpennes,415,463,698361257,9669,0 +8351,0017,465,605,33900,9816,0 +8352,PRO8L3M,407,499,7491093,9884,6 +8353,.0.Brooklyn,521,589,698215322,9978,0 +8354,Gattacka,591,491,699298370,9757,0 +8355,Oskal,429,560,699443920,2999,0 +8356,%2B44+71+Blecquenecques,416,470,698361257,9658,0 +8357,.achim.,517,409,6936607,10311,0 +8358,-4-,590,483,699347951,10495,0 +8359,197,546,428,849064752,7458,0 +8360,%5B077%5D,563,566,8000875,9933,0 +8361,Dobranoc,418,543,699856962,9418,0 +8362,Wioska+barbarzy%C5%84ska,591,521,848967710,10252,0 +8363,-+085+-,535,584,849018239,10000,0 +8364,%2B44+52+Lyon+Eurexpo,421,455,698361257,9681,0 +8365,K34+-+%5B045%5D+Before+Land,462,387,699088769,10016,0 +8366,-+081+-,538,585,849018239,10000,0 +8367,Boszkowo,420,546,699856962,9381,0 +8368,0054,591,514,698416970,10838,0 +8369,-+244+-,544,581,849018239,10000,0 +8370,NOT%3F,414,536,9236866,10063,0 +8371,C+001.,450,574,849028088,9530,0 +8372,Jaaa,577,552,698635863,10123,0 +8374,Feed+me+more+011,492,408,699756210,10140,0 +8375,033+Palm+Springs,433,441,9291984,10495,0 +8376,Darma+tutek101,591,485,8925695,9169,0 +8377,077,425,516,699851427,10042,0 +8378,G008,438,565,8779575,8045,0 +8379,0.Miami,524,589,698215322,9975,0 +8380,0002,615,527,6510480,10495,0 +8381,KIELBA+025,453,581,699342219,10273,0 +8382,.+Interstellar,422,550,8779575,9151,0 +8384,0062+%7E25%7E,437,436,3909522,7716,0 +8385,0178,466,543,698659980,10252,0 +8386,Jaaa,570,557,698635863,10484,0 +8387,%7C026%7C,557,569,873575,10295,0 +8388,-010-+Czemu%3F+Wyt%C5%82umacz%C4%99+potem,456,419,9291984,10479,0 +8389,013,571,555,699316421,9744,0 +8390,Monetki,471,411,699098531,10303,0 +8391,059,543,419,7271812,6281,0 +8392,Zao,489,407,699433558,10311,0 +8393,%2B44+61+Ecuires,413,466,698361257,9650,0 +8394,0059,447,424,3909522,10495,0 +8395,Wioska+barbarzy%C5%84ska,590,522,848967710,10252,0 +8396,%5B0004%5D,452,388,8630972,10495,0 +8397,Wioska+barbarzy%C5%84ska,497,406,699658023,9806,0 +8398,%2B44+71+Campigneulles+les+Petites,414,470,698361257,9669,0 +8399,Popas9,407,494,699265922,8939,0 +8401,WDG,425,553,8779575,3138,0 +8402,Szlachcic,568,486,698867446,9329,0 +8403,%5B107%5D,567,564,8000875,9864,0 +8405,Wioska+Szymon4077,427,442,698971484,10008,0 +8406,Wioska+barbarzy%C5%84ska,587,465,699573053,10487,0 +8407,z+007,560,596,699342219,10476,0 +8408,KIELBA+129,464,584,699342219,10237,0 +8409,Majin+Buu+014,439,568,699054373,6210,0 +8410,Knowhere,410,503,699723284,10452,0 +8411,KIELBA+005,445,575,699342219,10495,0 +8412,Wioska+barbarzy%C5%84ska,571,443,699368887,9994,0 +8413,00593,453,424,3909522,10276,0 +8414,.achim.,535,416,6936607,10544,0 +8415,015+Azalea+Town,591,505,699441366,11109,0 +8416,%5B095%5D,562,566,8000875,10221,0 +8417,Wioska+barbarzy%C5%84ska,503,389,7758085,9861,0 +8418,Jaaa,581,545,698635863,10479,0 +8419,0090,460,615,698659980,10083,0 +8420,%23Gyarados,577,453,699795378,10019,0 +8422,Wioska+barbarzy%C5%84ska,500,408,699658023,9656,0 +8423,Village,471,587,849094067,7999,0 +8424,lady,500,590,699703642,10471,0 +8425,Suppi,417,543,699856962,10090,1 +8426,%7E%7ELataj%C4%85cyHolender%7E%7E,602,498,9174887,10146,0 +8427,Wioska+512,581,458,477415,10495,0 +8428,Wioska+barbarzy%C5%84ska,511,542,848915531,3784,0 +8429,%23008,577,448,699368887,7889,0 +8430,%23052,525,590,849001572,9742,0 +8431,011,574,551,699316421,9744,0 +8432,KONFA+TO+MARKA%2C+NARKA,412,476,698152377,10336,0 +8433,Mzm27,589,505,7142659,10426,0 +8434,Monetki,471,414,699098531,10291,0 +8435,NOT%3F,409,507,9236866,10042,0 +8436,.%3A013%3A.+Chillout,504,407,848934935,7649,0 +8437,Teatr,433,566,7249451,9524,0 +8438,WD1,426,553,8779575,3610,0 +8439,00.1,496,418,699658023,9074,0 +8440,Jaaa,578,551,698635863,10487,0 +8442,105,412,530,699851427,10129,0 +8443,-+298+-,537,582,849018239,10000,6 +8444,102,564,401,849064752,10311,0 +8445,Wioska+barbarzy%C5%84ska,425,446,698884287,10285,0 +8446,00562,439,430,3909522,5214,0 +8447,%23045,522,590,849001572,9809,0 +8448,%23049,522,591,849001572,6709,0 +8449,Brat447,410,517,699262350,10495,0 +8450,Wioska+barbarzy%C5%84ska,570,440,699368887,9994,0 +8451,A037,490,411,699299123,6646,0 +8452,038+Kansas+City,435,435,9291984,9283,0 +8453,Wioska+barbarzy%C5%84ska,431,441,698884287,10090,0 +8454,.%3A043%3A.+Kisiel,504,409,8649412,9544,0 +8455,Gryfios+003,617,539,698666810,10484,0 +8456,Opyle,429,559,699443920,3416,0 +8457,%5B138%5D,565,564,8000875,9897,0 +8458,.achim.,514,410,6936607,10311,0 +8459,WDJ,425,554,8779575,3614,0 +8460,.achim.,526,412,6936607,10311,0 +8461,Wioska+barbarzy%C5%84ska,424,445,698884287,10285,0 +8462,Suppi,427,446,699856962,9644,0 +8463,012,412,481,699510259,9775,0 +8464,KONFA+TO+MARKA%2C+NARKA,413,476,698152377,10311,0 +8465,D0004,439,567,8841266,8370,0 +8466,%23004,578,448,699368887,8882,0 +8467,.achim.,537,392,6936607,10452,0 +8468,Jaaa,574,557,698635863,10441,0 +8469,00594,451,420,3909522,4924,0 +8470,Wioska+barbarzy%C5%84ska,495,407,699658023,9820,0 +8471,Jaaa,583,540,698635863,10484,0 +8472,049,414,526,699851427,10129,0 +8473,002.+Lagerta,589,565,699373599,10252,0 +8474,%23005,576,447,699368887,7657,0 +8475,Radek,413,473,699523631,10495,0 +8476,00591,449,424,3909522,10072,0 +8477,044.,579,455,849094609,10551,0 +8478,0017,594,499,699429153,10168,0 +8479,049+%7C,563,569,8000875,10068,0 +8480,K34+x025.,466,396,698364331,10495,0 +8481,005.+Wioska+JaaMwG,591,511,8788366,10495,0 +8482,Sparta_25,492,592,2585846,9638,0 +8483,15.+Cloud+Strife,535,587,8199417,10559,6 +8485,.achim.,518,408,6936607,10311,0 +8486,Suppi,414,534,699856962,9825,0 +8487,Gravity,420,454,698962117,9773,0 +8488,%23006,576,449,699368887,8122,0 +8489,047+Riihimaki,605,524,699272880,10579,0 +8490,-+084+-,534,586,849018239,10000,8 +8491,0007,502,506,698599365,10019,0 +8492,010,574,552,699316421,9744,0 +8493,Sparta_06,498,595,2585846,9181,0 +8494,.achim.,520,408,6936607,10311,0 +8495,Suppi,415,539,699856962,10459,2 +8496,NOT%3F,410,516,9236866,10042,0 +8497,Hej+hoo,456,385,699191449,10495,0 +8498,Ho%C5%82opole,489,409,699433558,10170,0 +8499,0338,499,624,698659980,10495,0 +8500,Knowhere,410,504,699723284,10452,0 +8501,.achim.,524,410,6936607,10311,0 +8502,-+077+-,535,586,849018239,10000,0 +8503,Nowa+Nadzieja+1,497,592,699383121,9263,0 +8504,Monetki,479,408,699098531,10294,0 +8505,Jaaa,574,554,698635863,10495,0 +8506,Gravity,418,456,698962117,9505,3 +8507,KIELBA+044,458,582,699342219,10495,0 +8508,-+057+-,540,582,849018239,10000,0 +8509,Lubi%C5%82a+r%C3%B3%C5%BCe..,562,565,699785935,10311,0 +8510,Wioska+barbarzy%C5%84ska,569,563,6818593,9835,0 +8511,Taran,582,462,699759128,10237,6 +8512,krzysiek1293-vequ2,412,425,7462660,10122,0 +8513,ADEN,560,429,698588535,6747,0 +8514,Majin+Buu+002,440,571,699054373,9761,0 +8516,047,565,395,849063849,10728,0 +8517,NOT%3F,411,514,9236866,10042,0 +8518,049+-+A01.%2A%2A%2A,440,603,225023,10495,0 +8519,Gattacka,593,492,699298370,7333,4 +8520,%5B004%5D+Maak+jou+dood+%2A,590,525,848985692,10162,0 +8521,182,558,428,849064752,10311,6 +8522,CALL+1024,561,568,699784536,10311,0 +8523,0.Columbia,522,588,698215322,9610,0 +8524,Kentin+ufam+Tobie,406,490,699783765,10000,0 +8525,BBB,555,425,1006847,10213,0 +8526,048,552,400,849064752,10311,0 +8527,KIELBA+014,445,572,699342219,10484,0 +8528,Avanti%21,378,479,698625834,10042,0 +8529,Ob%C5%82o...,432,562,699443920,3556,0 +8530,MasteroN+05,570,442,699379895,10362,0 +8531,Wioska+516,584,456,477415,10495,0 +8532,Majin+Buu+001,442,572,699054373,9761,0 +8533,-9-,591,477,699347951,12154,0 +8534,%C5%9Amieszki,532,618,3454753,9168,0 +8535,Syrup+Village,499,410,699433558,10311,0 +8536,%5BA%5D_%5B049%5D+Dejv.oldplyr,408,484,699380607,10248,0 +8537,NOT%3F,410,507,9236866,10042,0 +8539,Teatr,434,566,7249451,9888,0 +8540,0098,447,423,699431255,9835,0 +8541,.%3A142%3A.+Niangmen,508,406,848934935,9761,0 +8542,-+082+-,537,585,849018239,10000,1 +8543,%2A301%2A,507,612,606407,10311,0 +8544,.achim.,532,412,6936607,10311,0 +8545,0060,592,510,698416970,7313,0 +8546,Gravity,418,458,698962117,9489,0 +8547,Gattacka,591,494,699298370,9741,0 +8548,B033,488,455,699299123,10495,0 +8549,Jaaa,577,550,698635863,10476,0 +8550,Canberra,422,450,698884287,10285,0 +8551,Alaska,414,472,699265922,9761,0 +8552,Jaaa,581,544,698635863,10481,0 +8553,-+318+-,527,588,849018239,10000,0 +8554,Research+and+Development,532,585,8199417,10316,0 +8555,S7+-+6+Service+Tunnel,533,585,8199417,10224,0 +8556,Wioska+barbarzy%C5%84ska,585,466,699573053,10495,0 +8557,.achim.,517,407,6936607,10311,0 +8558,%23002,577,447,699368887,9249,0 +8559,%5B014%5D+Kashe+Ka,591,526,848985692,10223,0 +8560,NOT%3F,416,536,9236866,10042,0 +8561,041,557,427,849064752,10311,9 +8562,Suppi,419,546,699856962,9944,0 +8563,Wioska+barbarzy%C5%84ska,431,440,698884287,10285,0 +8564,COUSINS,484,592,7976264,10104,0 +8565,058,539,418,7271812,10495,0 +8566,Ho%C5%82opole,490,407,699433558,10311,0 +8567,KIELBA+004,446,575,699342219,10495,0 +8568,KARTAGINA+..4,456,580,8438707,8655,0 +8569,Horyzont+zdarze%C5%84,531,611,7581876,9835,0 +8570,Wioska+barbarzy%C5%84ska,565,569,6818593,9835,0 +8571,019.+Brzeginka,505,582,699703642,6676,0 +8572,5.+Szprotka,478,536,699781762,10013,0 +8573,%5BA%5D_%5B036%5D+Dejv.oldplyr,409,475,699380607,10495,0 +8574,041.,579,451,849094609,9456,0 +8575,%21Wioska+513,584,458,477415,10495,0 +8576,-+210+-,549,578,849018239,10000,0 +8577,Suppi,426,447,699856962,9670,0 +8578,jol+jol,402,566,9167250,7430,0 +8579,0056,592,517,698416970,9675,0 +8580,%7C020%7C,557,570,873575,10444,0 +8581,KIELBA+024,452,581,699342219,10273,0 +8582,%5B0055%5D,448,397,8630972,10495,0 +8583,Wioska+barbarzy%C5%84ska,493,408,699658023,9881,0 +8584,NOT%3F,413,536,9236866,10042,0 +8585,Monetki,481,411,699098531,10167,0 +8586,083.,588,478,849094609,11344,0 +8587,061,406,504,699851427,10042,0 +8588,A016,449,420,8740199,10221,0 +8589,Idar,428,555,8779575,3642,0 +8590,0034,589,513,6510480,9787,0 +8591,-+129+-,542,583,849018239,10000,8 +8592,%23067,471,586,699605333,9663,0 +8593,.achim.,519,408,6936607,10311,0 +8594,02.+Wioska+Prykopek,470,589,699364813,10495,0 +8595,x13,422,448,698884287,10285,0 +8596,Wioska+barbarzy%C5%84ska,573,441,699368887,9994,0 +8597,Monetki,476,409,699098531,10294,0 +8598,NOT%3F,408,518,9236866,10060,0 +8599,Ghost+Rider4,487,593,7976264,9155,0 +8600,Kiedy%C5%9B+Wielki+Wojownik,394,455,8632462,9765,0 +8601,Wioska+barbarzy%C5%84ska,447,454,699660539,9492,0 +8602,Wioska+barbarzy%C5%84ska,481,590,7976264,9318,0 +8603,Majin+Buu+016,436,565,699054373,9546,0 +8604,.+Fight+Club,422,548,8779575,9492,0 +8605,.achim.,526,403,6936607,10311,0 +8606,Wioska+0020,408,523,1804724,9539,0 +8607,Wioska+barbarzy%C5%84ska,428,441,698884287,10285,0 +8608,029+Honolulu,434,436,9291984,9597,3 +8609,.achim.,523,409,6936607,10311,0 +8610,Szlachcic,592,511,698867446,9721,0 +8611,.%3A015%3A.+Szafa,507,405,8649412,9761,0 +8612,West+02,591,480,698702991,9761,0 +8613,KIELBA+008,445,573,699342219,10245,3 +8614,D0001,439,569,8841266,10354,0 +8615,merhet,538,587,698215322,10036,0 +8616,A0010,384,483,8841266,10362,0 +8617,096,409,526,699851427,10042,0 +8618,Erebor+3,502,594,699383121,10471,0 +8619,CALL+1001,555,577,699784536,10495,0 +8620,%C5%9Amieszki,534,619,3454753,9131,0 +8621,Jaaa,570,558,698635863,10484,0 +8622,Suppi,412,536,699856962,9827,0 +8623,Popas3,407,498,699265922,9761,0 +8624,Suppi,417,544,699856962,9811,0 +8625,098,414,530,699851427,10048,0 +8626,.achim.,537,413,6936607,10544,0 +8627,028,547,420,7271812,10495,0 +8628,Sparta_62,493,594,2585846,9638,0 +8629,scoti,492,619,699494488,10349,0 +8630,Wioska+0007,410,524,1804724,10161,0 +8631,Wioska+barbarzy%C5%84ska,499,406,699658023,9897,0 +8632,-11-,590,472,699347951,10177,0 +8633,Jaaa,577,551,698635863,10478,0 +8634,KOSZARY+ABADONA,590,484,699347951,12154,0 +8635,Mmmmm,429,563,699833171,4632,0 +8636,KIELBA+089,452,578,699342219,10023,0 +8637,055,545,416,699761749,10495,0 +8638,%5BA%5D_%5B033%5D+Dejv.oldplyr,404,477,699380607,10444,0 +8639,.%3A002%3A.+Another+World,510,408,8649412,8930,5 +8640,Kentin+ufam+Tobie,406,491,699783765,10000,0 +8641,0000001%23,432,574,849089881,10542,0 +8642,034,557,428,849063849,8726,0 +8643,Jehu_Kingdom_26_,598,485,8785314,9993,0 +8644,KONFA+TO+MARKA%2C+NARKA,409,487,698152377,10311,0 +8646,%5B104%5D,568,565,8000875,9956,0 +8647,SsSs,417,492,1536625,9547,0 +8648,AbacadA+016,559,426,699756210,10273,0 +8649,Hammerhead,531,613,8199417,10160,0 +8650,037,411,524,699851427,10042,0 +8651,Szlachcic,470,414,698388578,9147,0 +8652,%5B137%5D+North,587,469,848985692,10311,0 +8653,Gattacka,594,488,699298370,9745,0 +8654,Monetki+%3F%3F%3F,479,406,699098531,10292,0 +8655,003+Jednak+za+ma%C5%82o+deffa+w+nocy,587,463,698829590,10319,0 +8656,%5BA%5D_%5B034%5D+Dejv.oldplyr,409,474,699380607,10495,0 +8657,027.+Beta,543,416,699799629,10495,0 +8658,%23044,520,591,849001572,9809,0 +8659,Wioska+barbarzy%C5%84ska,589,468,699573053,10490,0 +8660,Wioska+barbarzy%C5%84ska,464,415,9291984,6323,0 +8661,Teatr,436,570,7249451,9722,0 +8662,011,545,521,699194766,9634,0 +8663,KIELBA+047,460,583,699342219,10495,0 +8664,x05,423,445,698884287,10285,1 +8665,Suppi,416,544,699856962,9808,0 +8666,.achim.,521,407,6936607,10311,0 +8667,Ho%C5%82opole,480,400,699433558,9899,0 +8668,.%3A023%3A.+Zlew,509,409,8649412,9906,0 +8669,%3F%3F%3F,425,557,8779575,9296,0 +8670,%5B138%5D+North,587,472,848985692,10051,0 +8671,FKG+01-16,418,406,356642,9835,0 +8672,089,406,513,699851427,10129,0 +8673,0002,558,394,699485250,10211,0 +8674,Daleko+025,481,594,6116940,8021,0 +8675,Teatr,435,568,7249451,10029,0 +8676,022,410,527,699851427,10129,0 +8677,Malbork,441,571,698769107,9835,0 +8678,0001,606,495,699429153,10559,0 +8679,Jaaa,578,552,698635863,10479,0 +8680,.achim.,528,413,6936607,10311,3 +8681,026+Andora,589,474,7092442,10495,0 +8682,Wioska+barbarzy%C5%84ska,432,438,698884287,10285,0 +8683,.za%C5%9B+ten+KUBA,423,550,8779575,8804,0 +8684,KIELBA+015,442,573,699342219,10294,0 +8685,003+Pewter+City,595,499,699441366,11109,0 +8686,%23012,532,588,849001572,9761,0 +8687,0020,594,502,699429153,10301,0 +8688,KIELBA+012,445,576,699342219,10259,0 +8689,Popas,405,498,699265922,9816,0 +8690,019,575,556,699316421,9744,0 +8691,012,618,476,8459255,10320,0 +8692,Sector+6+Slums+Area,514,591,8199417,10083,0 +8693,Okuba,431,556,699443920,3644,0 +8694,-013-+Wszystko+dlatego+%C5%BCe,456,418,9291984,10479,0 +8695,Wioska+barbarzy%C5%84ska+018%7C,547,421,6343784,9663,0 +8696,%23068,476,588,699605333,10728,0 +8697,045.,582,456,849094609,9760,0 +8698,Village,470,587,849094067,8258,0 +8699,042.,578,451,849094609,9827,0 +8700,045,503,385,698739350,10247,0 +8701,.achim.,518,407,6936607,10311,0 +8702,Teatr,434,568,7249451,10143,6 +8703,098+MEHEHE,518,612,6116940,10160,0 +8704,Jaaa,584,543,698635863,10478,0 +8705,ADEN,562,432,698588535,9056,0 +8706,Sector+1,531,585,8199417,10559,0 +8707,COUSINS,485,593,7976264,10041,0 +8708,Osada+koczownik%C3%B3w,430,560,699443920,3646,1 +8709,Cast+Away+019,444,484,698290577,10636,0 +8710,-+214+-,555,573,849018239,10000,0 +8711,002+Viridian+City,592,499,699441366,11109,5 +8712,Darma+Tomi77,510,384,699368887,10237,0 +8713,Teatr,431,564,7249451,9960,0 +8714,ADEN,564,430,698588535,10056,0 +8715,Monetki,472,411,699098531,10292,0 +8717,.achim.,525,411,6936607,10311,0 +8719,NOT%3F,410,513,9236866,10042,0 +8720,PRO8L3M,408,498,7491093,10311,0 +8721,Witam+w+wietnamie,420,552,698971484,10008,0 +8722,%C5%9Amieszkiii,475,588,3454753,8370,0 +8723,0013,595,497,699429153,10301,0 +8724,.achim.,533,410,6936607,10311,0 +8725,Popas7,406,495,699265922,9054,0 +8726,VN+Canalie+Braize,467,380,699883079,9558,0 +8727,KARTAGINA+..1,455,582,8438707,7904,0 +8728,IRW,427,555,8779575,3293,0 +8729,0058,446,421,3909522,10259,0 +8730,Wioska+0010,408,519,1804724,10167,0 +8731,Szlachcic,509,477,699098531,9835,0 +8732,Szlachcic,459,415,698388578,10237,0 +8733,-+284+-,517,592,849018239,10000,0 +8734,Wioska7,512,593,8369778,10220,0 +8735,F074,508,534,699189792,7551,0 +8736,%5BA%5D_%5B027%5D+Dejv.oldplyr,408,482,699380607,10495,5 +8737,%2B44+61+Widehem,413,468,698361257,9669,0 +8738,Szlachcic,462,415,698388578,10237,0 +8739,012,477,592,699364813,10093,0 +8740,CALL+1027,558,574,699784536,10311,0 +8741,Szlachcic,494,473,699098531,9762,0 +8742,PRO8L3M,406,497,7491093,9220,0 +8743,.achim.,534,411,6936607,10311,0 +8744,020,419,517,699851427,10042,0 +8745,ADEN,561,430,698588535,7987,0 +8746,051,588,471,699573053,10495,0 +8747,%2B44+61+Decines,411,465,698361257,9841,6 +8748,Witam+w+wietnamie,422,553,698971484,7888,0 +8749,181+Kicia..........,463,582,7976264,10084,0 +8750,Sparta_05,500,595,2585846,9638,0 +8751,%2B44+61+Bray+Dunes,412,467,698361257,10495,0 +8752,Winstrol,593,499,699379895,10495,0 +8753,015,587,536,8138506,9814,0 +8754,%230095,510,595,1536231,10495,0 +8755,Szlachcic,464,414,698388578,10237,0 +8756,Daleko+027,480,592,8369778,8332,0 +8757,079,549,421,849064752,10311,0 +8758,Teatr,434,567,7249451,10503,0 +8759,.%3A025%3A.+Rower,513,407,8649412,9745,0 +8760,090,592,481,699573053,10495,0 +8761,Wioska+barbarzy%C5%84ska,568,436,699368887,7549,0 +8762,0016,477,593,699280514,10273,0 +8763,017+-+Legancko%2A%2A%2A,448,580,225023,10495,0 +8764,West+Blue,492,407,699433558,10530,5 +8765,Szlachcic,459,414,698388578,10237,0 +8767,NOT%3F,408,511,9236866,10042,0 +8768,L+4,613,476,849027653,10224,0 +8769,.achim.,538,412,6936607,9674,0 +8770,ADEN,565,433,698588535,7735,0 +8771,027,574,441,699368887,10104,8 +8772,.+%C5%BBywiec,424,548,698971484,7552,0 +8773,020,542,612,699189792,9761,0 +8774,010,584,540,8138506,9892,0 +8775,00592,450,423,3909522,10160,0 +8776,Suppi,414,540,699856962,9989,0 +8777,Bez+s%C5%82%C3%B3w,564,568,699785935,10311,0 +8778,Szlachcic,468,414,698388578,10237,0 +8779,Radek,410,473,699523631,10478,0 +8780,097,409,525,699851427,10129,0 +8781,KR%C3%93L+PAPI+WIELKI,573,560,698191218,10000,0 +8782,CALL+1022,559,574,699784536,10311,0 +8783,Ho%C5%82opole,485,408,699433558,10311,0 +8784,Mzm08.,593,510,7142659,10495,0 +8785,092,591,472,699573053,10495,0 +8786,004,561,403,849063849,10636,0 +8787,%28010%29,416,538,699846892,10143,0 +8788,Kanczendzonga,378,486,699265922,9825,0 +8789,0062+%7E26%7E+Lech+-7,437,433,3909522,9850,0 +8790,074,408,516,699851427,10042,0 +8791,Wioska+517,582,453,477415,10495,0 +8792,011,414,539,699425709,9873,0 +8793,Suppi,416,539,699856962,10362,0 +8794,KONFA+TO+MARKA%2C+NARKA,418,459,698152377,10292,0 +8795,Osada+koczownik%C3%B3w,424,446,698884287,10285,2 +8796,Taran,583,453,699759128,9592,0 +8797,Gattacka,594,487,699298370,9753,0 +8798,XXXX,491,383,849054951,10242,0 +8799,008.+Wietrzyca,507,592,699703642,9697,0 +8800,Jaaa,581,550,698635863,10479,5 +8801,Monetki+2,470,411,699098531,10349,0 +8802,WDBar,425,555,8779575,2603,0 +8803,KIELBA+049,461,584,699342219,10247,0 +8804,Szlachcic,462,414,698388578,10237,0 +8805,026+Nashville,431,439,9291984,10495,0 +8807,%230035+Coals,481,561,9272054,10000,0 +8808,.achim.,525,410,6936607,10311,0 +8809,-5-,589,472,699347951,10569,0 +8810,%23003,577,444,699368887,7345,0 +8812,Daleko+010,478,590,8369778,7437,0 +8813,Teatr,434,565,7249451,10157,0 +8814,Wioska+%28041%29,620,485,698232227,9785,0 +8815,G001,432,566,8779575,10178,0 +8816,%2B44+61+Saint+Priest+Manissieux,412,466,698361257,9844,0 +8817,Gravity,415,458,698962117,9579,0 +8818,Witam+w+wietnamie,415,540,699856962,9644,0 +8819,Feed+me+more+013,493,406,699756210,10066,4 +8820,017,399,544,699856962,9550,0 +8821,Pszcz%C3%B3%C5%82ki,432,564,8779575,10311,0 +8823,FAKE+OR+OFF,442,403,698231772,9833,0 +8824,012,572,438,699368887,9274,0 +8825,-015-+Dotyka%C4%87%2C+przytula%C4%87,456,415,9291984,10441,0 +8826,0004,524,521,699432672,10495,0 +8827,Z03,554,579,873575,10180,0 +8829,Szlachcic,461,416,698388578,10237,0 +8830,KIELBA+010,445,577,699342219,10273,0 +8831,Kentin+ufam+Tobie,431,401,699783765,10000,0 +8832,PRO8L3M,406,505,7491093,10311,0 +8833,.016.,482,382,698489071,10316,0 +8834,039+Baltimore,431,433,9291984,10487,0 +8835,.achim.,534,396,6936607,10311,0 +8836,CALL+1004,553,577,699784536,10544,0 +8838,088+MEHEHE+4,487,594,6116940,10019,0 +8839,%23%23%23%23,451,580,699342219,10495,9 +8840,Zasiedmiog%C3%B3rogr%C3%B3d,540,426,699433558,9976,0 +8841,064+%7C,565,565,8000875,9740,0 +8842,Jehu_Kingdom_29_,591,476,8785314,9993,0 +8843,Wioska+515,583,451,477415,10495,2 +8844,.achim.,527,410,6936607,10311,0 +8845,.achim.,525,409,6936607,10311,0 +8846,020,504,594,7976264,10211,0 +8847,Lord+Arsey+KING,590,534,848956513,10285,0 +8848,Szlachcic,460,417,698388578,10237,0 +8849,Szlachcic,466,410,698388578,8201,0 +8850,Dobranoc,418,545,699856962,9670,0 +8851,Connecticut,410,469,699265922,9761,0 +8852,%5B092%5D,531,501,848985692,10057,0 +8853,%2B44+61+Hervelinghen,413,461,698361257,9844,0 +8854,%2B44+61+Uxem,415,466,698361257,9658,0 +8855,Wioska+barbarzy%C5%84ska,405,503,698290577,5630,0 +8856,Monetki,483,408,699098531,10311,0 +8857,-6-,592,483,699347951,10636,0 +8858,-+091+-,536,585,849018239,10000,0 +8859,088,410,523,699851427,10129,0 +8860,KARTAGINA+..5,456,581,8438707,9028,0 +8861,-+281+-,518,594,849018239,10000,0 +8862,AbacadA+014,561,427,699756210,9658,0 +8863,023+Jednak+z+sensem,432,433,9291984,9749,0 +8864,Jaaa,580,551,698635863,10484,0 +8865,021,408,526,699425709,9417,0 +8866,daleko+009,478,589,8369778,8102,0 +8867,Stage+group+C,568,597,699364813,10311,0 +8868,%2AINTERTWINED%2A%2A,525,561,698704189,9711,0 +8869,Monetki+%3F%3F%3F,477,408,699098531,10292,0 +8870,bright+crystal,469,497,698290577,9077,0 +8871,Gravity,416,455,698962117,9498,0 +8872,F012,500,528,699189792,9756,0 +8873,Mi%C4%99guszowiecki+Szczyt,414,467,849013126,9614,0 +8874,01.+Piccolo,512,596,849085961,9735,0 +8875,Popas4,405,497,699265922,9811,0 +8876,-+098+-,548,581,849018239,10000,7 +8878,%5BA%5D_%5B029%5D+Dejv.oldplyr,404,489,699380607,10495,0 +8879,.%3A054%3A.Chillout,508,405,848934935,7879,0 +8880,Sector+6,513,590,8199417,10019,0 +8881,KIELBA+133,465,587,699342219,10362,0 +8882,Tu+poleg%C5%82+Kalifah+Idris+IV,506,580,699364813,10362,0 +8883,085,404,502,699851427,10129,0 +8884,003.+A-RE-SE-EY,591,528,848967710,10252,0 +8885,001,408,508,699851427,10129,0 +8886,Sphinx,426,560,699833171,4934,0 +8887,NOT%21%21,466,585,9236866,10042,0 +8889,Z06,545,583,873575,9870,0 +8890,S%C5%82odki+Urai,504,389,849017894,3794,0 +8891,-+104+-,543,586,849018239,10000,0 +8892,%5B100%5D+North,576,481,848985692,10181,0 +8893,Ho%C5%82opole,492,406,699433558,9835,0 +8894,-+122+-,542,586,849018239,9973,0 +8895,Suppi,413,534,699856962,9809,0 +8896,082.+ALFI,481,557,8539216,1354,0 +8897,031,573,438,699368887,9107,0 +8898,Taran,585,465,699759128,10237,4 +8899,010,406,516,699851427,10129,0 +8900,%230091+Piszczac+Pierwszy,478,553,9272054,10083,0 +8901,Monetki,476,410,699098531,10292,0 +8902,006+%7C+Lord+Axen+-+Rumbling%2C,559,549,8000875,10343,0 +8903,011,586,540,8138506,10019,0 +8904,KIELBA+046,459,583,699342219,10495,0 +8905,.achim.,513,405,6936607,10311,0 +8906,Szlachcic,465,412,698388578,10237,0 +8907,030,491,593,8369778,8286,0 +8908,K44+x028.,451,422,698364331,6323,0 +8909,004.+A-RE-SE-EY,591,525,848967710,10252,9 +8910,088,566,395,849064752,10311,0 +8912,-+103+-,542,584,849018239,10000,0 +8913,Knowhere,376,493,699723284,10452,0 +8914,eeeeee,575,445,849092827,7464,0 +8915,Gravity,421,452,698962117,9553,0 +8916,KONFA+TO+MARKA%2C+NARKA,409,476,698152377,10311,0 +8917,Wioska+barbarzy%C5%84ska,497,404,699658023,9653,0 +8918,026.,591,478,8900955,9995,0 +8919,0019,476,593,33900,9192,0 +8920,.J+wydzia%C5%82,421,550,699856962,8756,0 +8921,003.+Wioska+Ilia,593,525,8788366,10495,9 +8922,Szlachcic,580,484,699759128,10237,0 +8923,Village,467,587,849094067,8079,0 +8924,bluberry,590,474,698702991,9835,0 +8925,Suppi,418,542,699856962,9550,0 +8926,099,409,521,699851427,10042,0 +8927,Domek+6,557,422,849064614,9750,0 +8928,Gattacka,594,485,699298370,9821,9 +8929,Gattacka,583,476,699298370,9664,0 +8930,Wioska+barbarzy%C5%84ska,566,569,6818593,9835,0 +8932,PPP1,429,565,699833171,3614,0 +8933,-7-,592,477,699347951,10728,0 +8934,Jaaa,583,548,698635863,10476,0 +8935,04.,572,439,699368887,9994,0 +8936,AbacadA+022,560,425,699756210,9824,0 +8937,053,484,407,698739350,9761,0 +8938,00593,449,421,3909522,10566,0 +8939,%5B002%5D+Ubiti+te,591,533,848985692,10273,0 +8940,Z07,548,582,873575,9972,0 +8941,%230028+Kr%C4%85g,487,559,9272054,10019,0 +8942,Gravity,420,452,698962117,9497,0 +8943,Village,503,595,849094067,12154,0 +8944,Rysy,415,462,849013126,9667,0 +8945,-+316+-,528,588,849018239,10000,0 +8946,Cintra,515,594,699698253,9430,0 +8947,Szlachcic,455,416,698388578,10237,0 +8948,Carpo,423,558,699833171,9401,0 +8949,CALL+1018,559,575,699784536,10311,6 +8950,.achim.,516,406,6936607,10311,0 +8951,.%3A053%3A.+Chillout,503,406,848934935,6181,0 +8952,Jehu_Kingdom_05_,592,474,8785314,9993,0 +8953,%21+KOXOWNIA,582,554,477415,9228,0 +8954,.achim.,540,414,6936607,10677,0 +8956,013.+A-RE-SE-EY,587,533,848967710,10252,0 +8957,Ostr%C3%B3dzki+Sektor,517,510,699785935,10838,0 +8958,Gravity,416,454,698962117,9489,0 +8960,NOT,421,428,9236866,10042,0 +8961,Wioska+barbarzy%C5%84ska,594,522,699851345,9264,0 +8962,KR%C3%93L+PAPI+WIELKI,568,567,698191218,10000,0 +8963,Wioska+barbarzy%C5%84ska,587,461,699573053,9524,0 +8964,090,410,526,699851427,10042,0 +8965,ADEN,566,435,698588535,10055,0 +8966,0052+Kerfurqqqqqqqqqqqqqqqqqqqq,439,425,3909522,9438,0 +8967,Wioska%2C,504,596,8369778,9894,0 +8968,Gravity,419,454,698962117,9505,0 +8969,002.+A-RE-SE-EY,590,530,848967710,10252,6 +8970,Gravity,419,455,698962117,9763,0 +8971,-+285+-,519,592,849018239,10000,0 +8972,Jaaa,580,550,698635863,10479,0 +8973,023,562,426,849064752,9901,0 +8974,Teatr,436,569,7249451,9794,0 +8975,001+Hello+Moto,595,424,699491076,10001,0 +8976,Wioska+barbarzy%C5%84ska,426,442,698884287,10285,0 +8977,017,587,535,8138506,10019,0 +8978,Gravity,417,453,698962117,9500,0 +8979,C001,573,400,699722599,10203,0 +8980,Zasiedmiog%C3%B3rogr%C3%B3d,544,416,699433558,7011,0 +8981,Erebor,500,593,699383121,10471,0 +8982,%5BA%5D_%5B050%5D+Dejv.oldplyr,406,488,699380607,10231,0 +8983,CALL+1002,552,578,699784536,10544,0 +8984,Teatr,430,564,7249451,10282,0 +8985,Wioska+barbarzy%C5%84ska,403,507,698290577,5858,0 +8986,%5B102%5D,566,565,8000875,9966,0 +8987,Wioska+0030,406,521,1804724,10210,0 +8988,Batory,501,595,606407,10495,0 +8989,072,550,417,699761749,10203,0 +8990,Jaaa,583,543,698635863,10475,0 +8991,.achim.,531,408,6936607,10311,0 +8992,%21Mew,582,449,699795378,9968,0 +8993,.achim.,512,406,6936607,10273,0 +8994,KIELBA+135,431,566,699342219,9668,0 +8996,Wioska+barbarzy%C5%84ska,426,440,698884287,10285,0 +8997,009,585,538,8138506,10019,0 +8998,KARTAGINA+..3,456,582,8438707,6817,0 +8999,0204,407,521,7085510,10216,0 +9000,Gravity,404,446,698962117,9539,0 +9001,Daleko+016,481,591,8369778,7777,0 +9002,083+MEHEHE+6,465,590,6116940,10019,0 +9003,KIELBA+042,459,586,699342219,10495,0 +9004,Wyspy+Skellige,496,405,699658023,9783,0 +9005,Sparta_07,498,597,2585846,9742,0 +9006,161,562,428,849064752,7950,6 +9007,KARTAGINA+...,457,583,8438707,8423,0 +9008,KR%C3%93L+PAPI+WIELKI,566,570,698191218,10000,0 +9009,Gattacka,594,476,699298370,9976,4 +9010,.032.,490,379,698489071,10393,0 +9011,KARTAGINA+..7,454,584,8438707,10019,0 +9012,A.019,598,562,9188016,10000,0 +9014,.achim.,537,412,6936607,10920,0 +9015,032+Odense,603,524,699272880,10160,0 +9016,Teatr,430,566,7249451,8510,0 +9017,KR%C3%93L+PAPI+WIELKI,574,560,698191218,10000,0 +9018,056,401,507,699851427,10129,0 +9019,CALL+1044,571,565,699784536,10311,0 +9020,181,624,474,699726660,2889,0 +9021,Daleko+026,480,594,6116940,8490,0 +9022,Land+of+Fire,394,443,698962117,9505,0 +9023,0004+MzM,602,569,698416970,9630,0 +9024,Wioska+barbarzy%C5%84ska,567,433,699368887,7705,0 +9025,001+Bybzi+Bybzi,572,558,699316421,9797,0 +9026,024,547,418,7271812,10495,0 +9027,Wioska,382,525,849084005,10178,0 +9028,0055,592,514,698416970,10971,0 +9029,Nowa+Nadzieja+7,502,595,699383121,6380,0 +9030,0008,530,613,848915531,11130,0 +9031,Wioska+0031,405,518,1804724,8557,0 +9032,Ostend,423,555,699443920,9761,0 +9033,022,581,547,8138506,10019,0 +9034,COUSINS00000,490,593,7976264,10133,0 +9035,Gravity,419,449,698962117,9515,0 +9036,007,584,541,8138506,10019,7 +9037,056,545,415,699761749,10495,0 +9038,SINGED+X+SZEF,494,378,699368887,10178,0 +9039,134,559,425,849064752,10311,0 +9040,Z02,554,580,873575,10495,0 +9041,Kalifornia,410,466,699265922,9462,0 +9042,.achim.,522,406,6936607,10311,0 +9043,Jaaa,569,568,698635863,10495,0 +9044,.achim.,539,412,6936607,10971,0 +9045,Najlepszy+s%C4%85siad+012,601,442,699756210,10273,0 +9046,.NA+PRZECIWKO,423,552,8779575,9860,0 +9047,NOT%3F,433,526,9236866,10042,0 +9048,Lord+Arsey+KING,577,592,848956513,8469,0 +9049,Jaaa,578,558,698635863,10487,0 +9050,Pobozowisko,414,590,699513260,10971,0 +9052,Z08,550,581,873575,9966,0 +9053,%7E092.,495,619,7139820,10495,0 +9054,Monetki,475,410,699098531,10292,0 +9055,Wioska+barbarzy%C5%84ska,591,522,848967710,10252,0 +9056,0057,592,516,698416970,10100,0 +9057,Wioska,587,543,698702991,9835,0 +9058,032,404,503,699851427,10129,0 +9059,008,412,537,699425709,9873,0 +9061,%2B44+61+Lyon+Part+Dieu,411,467,698361257,9841,9 +9062,Fajna+082,459,563,698704189,6847,0 +9063,Darma,428,397,356642,9835,0 +9064,.%3A125%3A.+Niangmen,508,397,848934935,9899,0 +9065,Szlachcic,587,456,698867446,9721,0 +9066,30003,489,543,848915531,11003,0 +9067,.achim.,533,412,6936607,10311,0 +9068,%23013,534,589,849001572,9761,0 +9069,%23056,522,594,849001572,9809,0 +9070,%23047,527,591,849001572,9750,0 +9071,Wioska+Velsaniq+3,490,597,7976264,7873,3 +9072,Gattacka,598,421,699298370,9835,0 +9073,101,408,520,699851427,10129,0 +9074,0054+To+ju%C5%BC+koniecqqqqqqqqqqqqqq,441,426,3909522,10078,0 +9075,Wioska+M01,406,524,1804724,9722,0 +9076,002,396,498,699510259,9761,0 +9077,082,589,463,699573053,10490,0 +9078,Gravity,420,448,698962117,9515,0 +9079,Sector+7,509,596,8199417,10019,0 +9080,CALL+1025,563,570,699784536,10311,0 +9081,-15-,591,469,699347951,10551,0 +9082,KARTAGINA+..8,453,584,8438707,9770,0 +9083,A.001,601,559,9188016,10000,0 +9084,Jaaa,584,548,698635863,10441,0 +9085,-+120+-,538,589,849018239,10000,0 +9086,020,410,525,699425709,9873,0 +9087,Monetki,473,410,699098531,10311,0 +9088,Jaaa,576,557,698635863,10490,0 +9089,Szlachcic,453,416,698388578,10237,0 +9090,Wioska8,515,593,8369778,10208,0 +9091,A043,475,407,8740199,10294,0 +9092,%5BA%5D_%5B041%5D+Dejv.oldplyr,409,473,699380607,10444,0 +9093,BBB,579,444,1006847,10083,0 +9094,KIELBA+018,444,575,699342219,10259,0 +9095,132,551,420,849064752,10311,7 +9096,Suppi,417,545,699856962,9825,0 +9097,Gravity,412,457,698962117,9505,0 +9098,Dobranoc,414,545,699856962,8930,0 +9099,Wioska6%2C,514,594,8369778,9883,0 +9100,021+Horik,580,552,699373599,10019,0 +9102,Erebor+2,502,593,699383121,10471,7 +9103,Shire,594,519,849091897,10160,0 +9104,A017,449,418,8740199,10223,0 +9105,CALL+1003,551,578,699784536,10311,0 +9107,038,609,499,699573053,10495,0 +9108,Gattacka,593,490,699298370,9747,0 +9109,003+-+Valencia,597,492,698342159,10019,0 +9110,KR%C3%93L+PAPI+WIELKI,576,562,698191218,10000,0 +9111,Monetki,470,407,699098531,10297,0 +9112,KIELBA+119,430,567,699342219,10183,0 +9113,para,498,594,8369778,8155,0 +9114,071,405,510,699851427,10129,0 +9115,Wioska+barbarzy%C5%84ska,423,444,698884287,10285,0 +9116,%7E%7ELataj%C4%85cyHolender%7E%7E,597,495,9174887,10160,0 +9117,Majin+Buu+010,439,571,699054373,9761,0 +9119,004+-+Sevilla,597,487,698342159,10019,0 +9120,Kentin+ufam+Tobie,407,492,699783765,10014,0 +9121,Sparta_08,497,597,2585846,9638,0 +9122,013,409,527,699425709,9873,0 +9123,Blaviken,489,406,699433558,9899,0 +9124,Jehu_Kingdom_27_,595,486,8785314,9993,5 +9125,%23055,520,592,849001572,9809,0 +9126,Oby..,430,562,699443920,4557,0 +9127,030.,565,394,699799629,10362,0 +9128,%23007,576,445,699368887,7411,0 +9129,020,583,547,8138506,10019,0 +9130,029,552,419,699761749,10495,0 +9131,Monetki,479,405,699098531,10294,0 +9132,.+GRYZIESZ+PIACH,422,551,8779575,9761,0 +9133,W+002+bombastik,432,591,849084740,9239,0 +9134,005+Vermilion+City,595,504,699441366,11109,0 +9135,.%3A016%3A.+Kosa,511,405,8649412,9745,0 +9136,098,547,416,849064752,10311,0 +9137,003,604,458,8459255,10203,0 +9138,Gattacka,593,486,699298370,10653,9 +9139,Wodospady,560,572,699785935,10375,0 +9140,0209,524,594,698659980,10083,0 +9141,%2B44+61+Vaugneray,414,461,698361257,9860,0 +9143,.%3A055%3A.+Chillout,504,405,848934935,6745,0 +9144,0024,596,497,699429153,9889,0 +9145,Arkansass,409,467,699265922,9761,0 +9146,0009,532,592,698659980,10252,9 +9147,.achim.,522,409,6936607,10311,0 +9148,Wioska+barbarzy%C5%84ska,427,439,698884287,10285,0 +9149,004,588,541,8138506,10019,6 +9150,10017,527,556,848915531,11321,0 +9151,Wioska+barbarzy%C5%84ska,574,438,699368887,7464,0 +9152,024,569,425,849063849,8399,0 +9153,Taran,543,386,699170684,9814,0 +9154,----------5,454,425,9291984,10346,0 +9155,KIELBA+027,440,573,699342219,10237,0 +9156,0052+kA,440,425,3909522,10083,7 +9157,KIELBA+003,447,577,699342219,10495,0 +9158,Cristo+de+la+Concordia,428,562,699833171,4305,0 +9159,Kentin+ufam+Tobie,403,486,699783765,10000,0 +9160,KIELBA+041,459,587,699342219,10495,0 +9161,AbacadA+021,566,429,699756210,7344,0 +9162,Z04,555,579,873575,10449,0 +9163,%23022,531,589,849001572,9564,0 +9164,Jaaa,563,575,698635863,9986,0 +9165,%23048,526,590,849001572,9750,0 +9166,%5B041%5D,590,532,848985692,10394,0 +9167,025,546,418,7271812,10495,0 +9168,001,411,539,699425709,9873,0 +9169,%23057,521,593,849001572,9735,0 +9170,0051+Zodiak,437,426,3909522,9649,0 +9171,Wioska+barbarzy%C5%84ska,402,504,698290577,5338,0 +9172,033,416,518,699851427,10129,0 +9173,Wioska+barbarzy%C5%84ska,448,417,9291984,7601,0 +9174,KONFA+TO+MARKA%2C+NARKA,407,483,698152377,10311,0 +9175,021,584,546,8138506,10019,0 +9176,%7C031%7C,569,564,6818593,9835,0 +9177,Majin+Buu+011,438,572,699054373,9761,0 +9178,Teatr,433,567,7249451,9312,0 +9179,008.+Wioska+Vampirka%2A,593,524,8788366,10252,0 +9180,Monetki,478,405,699098531,10291,0 +9181,Sparta_60,496,597,2585846,9638,0 +9182,%23059,517,596,849001572,9711,0 +9183,067,595,484,699573053,10444,0 +9184,A%23026%23,406,479,698807570,11949,0 +9185,%5BA%5D_%5B045%5D+Dejv.oldplyr,407,471,699380607,10336,0 +9186,KIELBA+101,463,590,699342219,10220,0 +9187,WK46,460,588,1631690,2284,0 +9188,%5BA%5D_%5B052%5D+Dejv.oldplyr,405,485,699380607,10495,0 +9189,Wioska+kruszynka1,432,434,9291984,10495,0 +9190,kathare,536,547,873575,10362,0 +9191,.%2C.%2C,403,517,1804724,9676,0 +9192,%5B003%5D+Te+vras,592,533,848985692,10300,0 +9193,010,410,536,699425709,9873,0 +9194,Monetki,477,406,699098531,10297,6 +9195,O%3AAabadon+A,596,480,699347951,12154,0 +9196,KR%C3%93L+PAPI+WIELKI,575,563,698191218,10000,0 +9197,Suppi,411,534,699856962,9809,2 +9199,KONFA+TO+MARKA%2C+NARKA,408,479,698152377,10311,0 +9200,Village,473,590,849094067,8370,0 +9201,0021,595,505,699429153,10301,0 +9202,049,547,399,849064752,10311,0 +9203,Wioska+Horst,405,523,1804724,9870,0 +9204,Popas10,402,502,699265922,9808,0 +9205,kathare,549,613,873575,10495,0 +9206,048,551,418,7271812,10495,0 +9207,.%3A024%3A.+Motyka,508,404,8649412,9761,0 +9208,Sparta_04,500,596,2585846,9638,0 +9209,.achim.,526,407,6936607,10290,0 +9211,%28034%29,406,528,699846892,10072,0 +9212,Jaaa,578,557,698635863,10479,0 +9213,Jehu_Kingdom_28_,594,481,8785314,9993,4 +9214,-+102+-,544,582,849018239,10000,0 +9215,026,561,426,849063849,8429,0 +9216,%2A001+Islandia,388,541,699425709,9873,0 +9217,Wioska+452,588,542,477415,10495,0 +9218,PRO8L3M,449,492,7491093,10178,0 +9219,Monetki,481,406,699098531,10294,0 +9220,Village,471,589,849094067,8087,0 +9221,Szlachcic,459,413,698388578,10237,0 +9222,Napewno+to+nie+jest+off,496,398,848912265,10495,0 +9223,0012,595,502,699429153,10168,0 +9224,Wioska,427,560,699833171,7837,0 +9225,.achim.,534,410,6936607,10311,0 +9226,Gravity,420,446,698962117,9486,0 +9228,091,585,456,699573053,10495,0 +9229,NOT%3F,412,539,9236866,8478,0 +9230,1.Indianapolis,542,587,698215322,10094,0 +9231,Z05,555,578,873575,10838,1 +9232,0202,403,509,7085510,10216,0 +9233,NOT%3F,413,537,9236866,9950,0 +9234,South+K35,564,392,699146580,10042,0 +9235,BBB,579,447,1006847,7624,0 +9236,005,596,491,699573053,10495,0 +9237,0201,405,511,7085510,10216,0 +9238,s181eo31,383,463,393668,10611,0 +9239,KR%C3%93L+PAPI+WIELKI,577,560,698191218,10000,0 +9240,Wioska+barbarzy%C5%84ska,569,432,699368887,7024,0 +9241,00505+CalciFord,433,429,3909522,9942,0 +9242,Gravity,417,450,698962117,9498,0 +9243,Monetki,476,407,699098531,9816,0 +9244,K34+-+%5B017%5D+Before+Land,447,389,699088769,10290,0 +9245,Szlachcic,463,411,698388578,10237,0 +9247,Sparta_10,495,598,2585846,9638,0 +9248,KIELBA+050,454,586,699342219,10247,6 +9249,102,406,529,699851427,10129,0 +9250,022,597,500,699573053,10495,0 +9251,Gravity,417,452,698962117,9499,7 +9252,Jaaa,578,559,698635863,10495,0 +9253,OBB,425,560,699443920,3455,0 +9254,KIELBA+016,441,573,699342219,10273,0 +9255,CALL+1026,562,571,699784536,10311,0 +9256,P.031,545,560,873575,10503,0 +9257,.achim.,539,413,6936607,10971,0 +9258,0056+Wioska+1,440,428,3909522,10083,0 +9259,AAA,509,404,849093422,9761,0 +9260,111........,476,595,7976264,8760,0 +9261,.achim.,526,409,6936607,10311,0 +9262,Wioska+barbarzy%C5%84ska,563,571,6818593,9835,0 +9263,Gravity,418,449,698962117,9499,0 +9264,Kentin+ufam+Tobie,403,484,699783765,10000,0 +9265,1.Atlanta,541,589,698215322,9980,2 +9266,%2A00D1,560,605,699567608,9041,0 +9267,KIELBA+006,443,580,699342219,10273,0 +9268,Sparta_03,501,597,2585846,9638,0 +9269,%7E044.,488,593,7139820,10495,0 +9270,Avanti%21,380,484,698625834,9989,0 +9271,AbacadA+002,565,427,699756210,10189,0 +9272,.achim.,517,406,6936607,10311,0 +9273,A018,447,418,8740199,10221,0 +9274,05+%7C+Zalesie,542,432,849002091,9408,0 +9275,ADEN,564,431,698588535,10167,0 +9276,083,595,508,699573053,9601,0 +9277,KR%C3%93L+PAPI+WIELKI,582,546,698191218,10000,0 +9278,Teatr,432,569,7249451,10076,9 +9279,Monetki,469,411,699098531,10311,0 +9280,KIELBA+009,446,577,699342219,10273,0 +9281,-+280+-,518,596,849018239,10000,6 +9282,A020,450,419,8740199,10221,0 +9283,011.+Wioska+Mucharadza,593,522,8788366,10252,0 +9284,Bagdad,468,389,8847546,10679,0 +9285,-012-+opresji+wytaraska%C4%87,457,416,9291984,10481,0 +9286,%5B006%5D+Ubiti,590,533,848985692,10223,0 +9287,004,598,494,699573053,10495,0 +9288,lady,481,595,699703642,9045,0 +9289,granica+wyobrazni,559,608,699567608,9818,0 +9290,A022,447,417,8740199,10226,0 +9291,A062,504,433,699299123,8556,0 +9292,Domek+7,559,423,849064614,9761,0 +9293,-011-+Yo%2C+nie+mog%C4%99+si%C4%99+z,457,417,9291984,10479,0 +9294,Szlachcic,462,410,698388578,10237,0 +9295,kathare,548,614,873575,10362,0 +9296,Jaaa,581,554,698635863,10478,5 +9297,-+321+-,532,590,849018239,9147,0 +9298,00561,438,429,3909522,8687,0 +9299,Samotna+G%C3%B3ra,534,530,7581876,10019,0 +9300,018,557,420,699761749,10495,0 +9301,.achim.,527,408,6936607,10311,0 +9302,Szlachcic,461,411,698388578,10237,0 +9303,0210,524,593,698659980,10083,2 +9304,041,490,403,698739350,9761,0 +9305,Wioska+0003,399,530,1804724,10311,0 +9306,027+Herman+Melville,590,461,698829590,5952,0 +9307,014.+ALFI,474,565,8539216,2999,0 +9308,Jaaa,581,552,698635863,10484,0 +9310,G004,431,567,8779575,10506,0 +9312,.achim.,530,410,6936607,10311,0 +9313,Witam+w+wietnamie,416,551,698971484,10008,0 +9314,%2B44+61+Villeurbanne+Grandclement,412,462,698361257,9841,8 +9315,F051,490,521,699189792,8902,0 +9316,KIELBA+114,430,565,699342219,8301,0 +9317,Wioska+barbarzy%C5%84ska,488,404,699433558,9835,0 +9318,A%23025%23,407,478,698807570,11951,7 +9319,-+313+-,536,591,849018239,9454,0 +9320,Wioska+barbarzy%C5%84ska,576,442,699368887,9994,0 +9321,075,591,470,699573053,10161,0 +9322,B09,502,402,849093422,9761,0 +9323,022,608,457,849088515,8426,0 +9324,Monetki,469,410,699098531,10294,0 +9326,B16,499,405,849093422,9825,0 +9327,Gravity,416,457,698962117,9505,0 +9328,084,587,464,699573053,9024,0 +9330,Teatr,431,568,7249451,10490,0 +9332,.Intouchables,418,550,698971484,10008,0 +9333,NOT,420,443,9236866,10042,0 +9334,ladyanima,514,569,699703642,9761,0 +9335,Lord+Arsey+KING,594,530,848956513,10285,0 +9336,009+Syracuse,441,469,1497168,9761,0 +9337,%230091,509,598,1536231,10495,0 +9338,Monetki,469,408,699098531,10292,6 +9339,%28012%29,408,531,699846892,10149,0 +9340,016,549,582,699189792,9741,4 +9341,%23061,520,595,849001572,9819,0 +9342,0012,522,595,698659980,10252,9 +9343,.achim.,537,420,6936607,10311,0 +9344,-014-+ci%C4%85gle+chcesz+mnie+g%C5%82aska%C4%87,456,412,9291984,10479,0 +9346,Wioska+barbarzy%C5%84ska,443,421,849027025,9051,0 +9347,Szlachcic,457,414,698388578,10237,0 +9348,00502,434,430,3909522,8732,0 +9349,Wioska5,509,594,8369778,10212,0 +9350,NOT%3F,411,538,9236866,10042,0 +9351,Ataturk+Mask,425,561,699833171,2578,0 +9352,KR%C3%93L+PAPI+WIELKI,565,570,698191218,10000,0 +9353,Popas6,403,494,699265922,9816,0 +9354,Dobranoc,415,544,699856962,10083,0 +9355,030,585,450,699722599,10346,0 +9356,Polania+001,541,451,758104,9415,0 +9357,Astana,422,447,698884287,10285,0 +9358,BBB,581,444,1006847,6926,0 +9359,Monetki,477,404,699098531,10292,3 +9360,BBB,582,444,1006847,8195,0 +9361,BBB,556,424,1006847,6396,0 +9362,137,565,430,849064752,10311,0 +9363,Szlachcic+019,590,537,758104,9338,0 +9364,Wioska+M.01,404,515,1804724,8565,0 +9365,Wioska+barbarzy%C5%84ska,422,445,698884287,10285,0 +9366,AbacadA+023,560,422,699756210,5329,0 +9367,KONFA+TO+MARKA%2C+NARKA,406,478,698152377,10311,0 +9368,BBB,553,422,1006847,7592,0 +9369,0002,597,497,699429153,10301,8 +9370,BoOmBaa..,443,391,6169408,7251,0 +9371,KIELBA+052,454,587,699342219,10290,0 +9372,%5B040%5D,592,537,848985692,10392,0 +9373,.achim.,536,411,6936607,10598,0 +9374,Wioska+0008,402,517,1804724,10185,0 +9375,%5B038%5D,593,532,848985692,10068,0 +9376,o3pO,442,564,699443920,9370,0 +9377,Sector+7Slums+Area,512,597,8199417,10083,0 +9378,0053+kA1,441,424,3909522,10430,0 +9379,.achim.,520,407,6936607,10311,0 +9380,0000,552,608,698659980,10160,0 +9381,Z01,555,582,873575,10346,0 +9382,Sparta_12,496,599,2585846,9638,0 +9383,0004.+B+-+Teirm,595,488,7125212,9761,0 +9384,Q%C5%82osek,419,556,699443920,9994,0 +9385,Szlachcic,456,414,698388578,10237,0 +9386,Monetki,469,409,699098531,10295,0 +9387,Wioska15,620,478,848935020,8804,0 +9388,1.Detroit,551,584,698215322,9980,0 +9389,%5BA%5D_%5B043%5D+Dejv.oldplyr,407,474,699380607,10444,0 +9390,Gravity,415,451,698962117,9505,0 +9391,068,587,460,699573053,10495,0 +9392,%23054,476,596,699605333,10393,0 +9393,Witam+w+wietnamie,421,556,698971484,10008,0 +9394,004,556,400,699761749,10495,0 +9395,Gravity,415,453,698962117,9506,0 +9396,-+286+-,517,597,849018239,10000,0 +9397,Wioska4%2C,492,597,8369778,10221,0 +9398,Suppi,413,539,699856962,10237,0 +9399,%5B031%5D+Kwica+YoU,597,516,848985692,10019,0 +9400,013,440,491,699510259,9761,0 +9401,A023,451,416,8740199,10229,0 +9402,Monetki,478,403,699098531,10291,0 +9403,Ni%C5%BCnie+Rysy,408,462,849013126,9580,0 +9404,CHW%23051,481,520,699781762,9315,0 +9405,020+Wioska,619,520,8323711,10495,0 +9406,A+007.,438,576,849028088,9980,0 +9407,NOT%3F,427,536,9236866,9811,0 +9408,KIELBA+057,462,587,699342219,10273,0 +9409,063+%7C,545,504,8000875,10160,0 +9410,Jehu_Kingdom_06_,593,472,8785314,9993,0 +9411,-+317+-,533,591,849018239,10000,0 +9412,0350,444,603,698659980,10019,0 +9413,Z09,550,584,873575,10144,0 +9414,Tczew,429,566,698769107,9835,0 +9416,Jaaa,579,557,698635863,10478,0 +9417,Jaaa,570,567,698635863,10955,0 +9418,B10,505,401,849093422,9737,0 +9419,001,564,400,849063849,10636,0 +9420,KR%C3%93L+PAPI+WIELKI,571,567,698191218,10000,0 +9421,-+287+-,519,594,849018239,10000,0 +9422,Weso%C5%82ych+%C5%9Awi%C4%85t,585,455,699368887,9994,0 +9423,Gattacka,596,488,699298370,9835,0 +9424,Wioska+Sekou,607,565,699737356,8723,0 +9425,Jaaa,569,560,698635863,10478,0 +9426,Nowa+Nadzieja+3,495,597,699383121,9797,0 +9427,KIELBA+063,462,589,699342219,10362,0 +9428,032,404,492,699510259,10217,9 +9429,U+Patryka,542,410,699433558,10295,0 +9430,Wioska+barbarzy%C5%84ska,572,434,699368887,7602,0 +9431,%7E%7ELataj%C4%85cyHolender%7E%7E,595,501,9174887,10160,0 +9432,K44+x012,445,422,698364331,9636,0 +9433,BBB,581,446,1006847,7116,0 +9434,A+010.,438,575,849028088,10218,0 +9435,KONFA+TO+MARKA%2C+NARKA,405,479,698152377,10311,0 +9436,0211,526,593,698659980,10019,0 +9437,AbacadA+010,562,427,699756210,9788,0 +9438,NOT,424,437,9236866,10042,0 +9439,Napewno+to+nie+jest+off,490,404,848912265,9186,0 +9440,.Cwajka+Fans,500,597,606407,10495,0 +9441,-+282+-,518,595,849018239,10000,0 +9442,001,475,512,699333701,2148,0 +9443,Jaaa,582,594,698635863,10162,0 +9444,Domek+5,558,421,849064614,9814,0 +9445,COUSINS,484,594,7976264,9596,9 +9446,F081,488,526,699189792,8944,0 +9447,006,410,541,699425709,9873,0 +9448,Wioska+REXMUNDI,491,595,7976264,10004,0 +9449,Jaaa,585,546,698635863,10484,0 +9450,0622,550,610,698659980,10495,0 +9451,Winter+is+coming,511,595,699364813,10311,0 +9453,052,555,420,7271812,10495,0 +9454,Gravity,413,453,698962117,9505,0 +9455,Wioska+455,591,538,477415,10495,0 +9456,.%3A051%3A.+Chillout,502,405,848934935,7240,0 +9457,A.011,409,578,849088243,10495,0 +9458,CALL+988,560,577,699784536,10495,8 +9460,AbacadA+006,563,424,699756210,10030,0 +9461,West+03,595,472,698702991,9819,0 +9462,Wioska+barbarzy%C5%84ska,426,561,699833171,1093,0 +9463,KONFA+TO+MARKA%2C+NARKA,402,481,698152377,10311,0 +9464,%2B44+61+Bergues,411,466,698361257,9844,0 +9465,Winter+is+coming,455,588,699364813,10068,0 +9466,Wioska+0015,404,523,1804724,10196,0 +9467,057,544,412,699761749,10495,0 +9468,Szlachcic,451,418,698388578,10237,0 +9469,Wioska+barbarzy%C5%84ska,425,435,698884287,10285,0 +9470,Wioska+barbarzy%C5%84ska,441,423,849027025,9744,0 +9471,KIELBA+019,442,576,699342219,10259,0 +9472,Wioska,508,403,3895471,1997,0 +9473,017WDZ+ZN%C3%93W+GO%C5%9ACI+W+TWOICH+SNACH,411,544,699856962,9867,0 +9474,009+Nie+ca%C5%82kiem+zgodnie+z+planem,493,380,7758085,9861,0 +9475,0000010%23,436,573,849089881,10490,0 +9476,0212,532,594,698659980,10019,0 +9477,KIELBA+021,444,581,699342219,10495,0 +9478,Winter+is+coming,466,592,699364813,10311,0 +9479,-+311+-,531,592,849018239,10000,0 +9480,BBB,581,445,1006847,9752,0 +9481,Wioska+barbarzy%C5%84ska,564,571,6818593,9835,0 +9482,%5BA%5D_%5B031%5D+Dejv.oldplyr,403,480,699380607,10495,0 +9483,ABADON+B.A.D+L.I.N.E,594,478,699347951,11321,0 +9484,005+-+Zaragoza,598,487,698342159,10019,7 +9485,Quimon,419,555,699443920,9976,0 +9486,%23063,480,596,849001572,7824,0 +9487,033,554,418,7271812,10495,0 +9488,Sector+7+Pillar,515,598,8199417,10375,0 +9489,Joms+043,553,416,699756210,9535,0 +9490,.achim.,532,410,6936607,10311,0 +9491,%5BA%5D_%5B028%5D+Dejv.oldplyr,405,487,699380607,10495,4 +9492,Yogi,489,530,2808172,9903,0 +9493,Adiyogi+Shiva,426,562,699833171,5720,0 +9494,1.Memphis,540,591,698215322,10016,0 +9495,KR%C3%93L+PAPI+WIELKI,593,535,698191218,10000,5 +9496,AAA,498,403,849093422,8567,0 +9497,Wioska+barbarzy%C5%84ska,594,529,699851345,9689,0 +9498,009,384,455,3698627,10206,0 +9499,BBB,583,445,1006847,6543,0 +9500,ChceszPokojuSzykujSi%C4%99DoWojny,467,497,699333701,12154,0 +9501,0213,524,595,698659980,10019,0 +9502,Suppi,411,536,699856962,9806,0 +9503,076,592,469,699573053,10097,0 +9504,Szlachcic,507,458,699098531,9637,0 +9505,Wioska,596,520,698845189,8969,0 +9506,Wioska+Inko,545,605,699189792,9744,0 +9507,043,551,415,849063849,8724,6 +9508,FAKE+OR+OFF,440,401,698231772,9963,0 +9509,AbacadA+008,577,439,699756210,10495,0 +9510,022,477,594,7976264,10166,0 +9511,Sparta_77,498,596,2585846,9638,0 +9512,NOT%3F,404,509,9236866,10042,0 +9513,045o,445,582,699099811,11558,0 +9514,087+MEHEHE,488,598,6116940,10019,0 +9515,025+co+ja+tu+robie,599,505,8459255,10679,0 +9516,KIELBA+017,441,575,699342219,10297,0 +9517,%C5%81akomy+majk,472,596,699364813,9860,0 +9518,Wioska+barbarzy%C5%84ska,572,431,699368887,6187,0 +9519,Jaaa,575,562,698635863,10479,9 +9520,KONFA+TO+MARKA%2C+NARKA,397,469,698152377,12154,0 +9521,.achim.,529,409,6936607,10311,0 +9522,Wioska+006,403,500,698290577,10081,0 +9523,Majin+Buu+003,438,571,699054373,9761,0 +9524,Nowa+Nadzieja+2,490,598,699383121,9301,0 +9525,%23043,537,591,849001572,10005,0 +9526,Pf+Konfederacja+p,488,513,848915730,9938,0 +9527,Stage+group+D+2,477,595,699364813,9960,0 +9528,%5BA%5D_%5B025%5D+Dejv.oldplyr,406,482,699380607,10273,0 +9529,0000014%21,446,584,849089881,10130,0 +9531,B01,500,404,849093422,9761,0 +9532,Szlachcic,453,413,698388578,10237,3 +9533,010+Powolutku,506,388,7758085,9925,0 +9534,Wioska+barbarzy%C5%84ska,427,562,699833171,2843,0 +9535,%230090,510,598,1536231,10495,0 +9536,009,411,535,699425709,9873,0 +9537,.achim.,518,404,6936607,10311,0 +9538,010,438,577,849028088,10495,0 +9539,AbacadA+003,566,427,699756210,10273,0 +9540,%7E%7ELataj%C4%85cyHolender%7E%7E,596,499,9174887,9835,0 +9541,.achim.,523,407,6936607,10311,0 +9542,066,404,508,699851427,10129,0 +9543,.achim.,527,405,6936607,10311,0 +9544,Wioska,589,543,698702991,10362,0 +9545,KIELBA+022,445,581,699342219,10262,0 +9546,-+322+-,516,596,849018239,10000,0 +9547,.achim.,528,410,6936607,10311,0 +9548,B20,497,403,8649412,9801,0 +9549,010.+Punkty+Topce,482,597,7976264,7789,0 +9550,Popas5,404,500,699265922,9752,0 +9551,KR%C3%93L+PAPI+WIELKI,571,568,698191218,10000,0 +9552,Wrzosowa,488,401,699433558,10362,8 +9553,Sinope,423,559,699833171,8903,0 +9554,Wioska+0014,404,525,1804724,10059,0 +9555,SsSs,402,491,1536625,8812,0 +9556,Wioska,504,597,8369778,10228,0 +9557,Winter+is+coming,464,593,699364813,9234,0 +9558,Gravity,413,457,698962117,9505,0 +9559,Daleko+018,481,593,699703642,7370,0 +9560,018+MASZ+KOLEJNY+TAKT,411,543,699425709,9873,0 +9561,.achim.,543,413,6936607,10634,0 +9562,Gravity,411,456,698962117,9494,0 +9563,-+268+-,533,581,849018239,10000,0 +9564,Sparta_13,498,599,2585846,9638,0 +9565,A024,446,416,8740199,10216,0 +9566,.achim.,521,406,6936607,10311,0 +9567,Monetki,474,408,699098531,9623,0 +9568,022,550,414,699761749,10495,0 +9569,JaawmG+P,583,551,8815749,10019,0 +9570,Leda,422,558,699833171,8688,0 +9571,009.+Wioska+Alstrem,593,523,8788366,10252,0 +9572,Kentin+ufam+Tobie,401,485,699783765,10000,0 +9573,092,404,514,699851427,10129,0 +9574,Domek+4,556,419,849064614,9549,0 +9575,Wioska+0032,405,517,1804724,10154,0 +9576,-+304+-,536,589,849018239,10000,0 +9577,%23057,480,598,699605333,10393,0 +9578,0014,597,494,699429153,10301,0 +9579,012.+Wioska+ruch135,594,520,8788366,10252,0 +9580,Teby_38,484,597,2585846,9638,0 +9581,Jaaa,580,559,698635863,10484,0 +9582,Gravity,419,448,698962117,9579,0 +9583,Wioska3,507,596,8369778,10220,0 +9584,%7C032%7C,570,565,6818593,9835,0 +9585,Pelplin,430,568,698769107,9835,0 +9586,%5B211%5D,570,568,8000875,1887,0 +9587,006.+Rygjafylke,426,433,699660539,10492,0 +9588,Wioska+barbarzy%C5%84ska,426,565,699833171,3333,0 +9590,-+114+-,548,586,849018239,10000,0 +9591,Z10,555,581,873575,10012,0 +9592,Winter+is+coming,478,594,699364813,9569,0 +9593,KR%C3%93L+PAPI+WIELKI,578,562,698191218,10000,0 +9594,%5BA%5D_%5B007%5D+Dejv.oldplyr,394,486,699380607,10495,0 +9595,Majin+Buu+006,434,576,699054373,9761,0 +9597,Szlachcic,467,409,698388578,10237,0 +9598,Wioska1%2C,504,599,8369778,9676,0 +9599,AbacadA+011,564,427,699756210,10273,0 +9600,%23062,520,594,849001572,9809,0 +9601,Winter+is+coming,463,593,699364813,9835,0 +9602,031,401,506,699851427,10042,0 +9603,Ho%C5%82opole,485,404,699433558,9835,0 +9604,BBB,556,423,1006847,9751,0 +9605,.%3A032%3A.+Chillout,520,449,848934935,7635,0 +9606,008,587,541,8138506,10019,0 +9607,-+105+-,544,586,849018239,10000,0 +9608,NOT,421,442,9236866,10042,0 +9609,Wioska+barbarzy%C5%84ska,577,436,699368887,9310,0 +9610,KIELBA+121,442,580,699342219,10252,0 +9612,019,553,415,699761749,10495,0 +9613,AbacadA+005,564,426,699756210,9742,0 +9614,%28030%29,407,532,699846892,9309,0 +9615,KIELBA+116,464,592,699342219,10237,0 +9616,Tank+003,401,505,698290577,9469,0 +9617,Monetki,480,406,699098531,10290,0 +9618,%23053,488,600,699605333,10728,0 +9619,.achim.,522,403,6936607,10311,0 +9620,069,597,474,699573053,10495,0 +9622,Teby_36,485,597,2585846,9638,0 +9623,Winter+is+coming,475,593,699364813,10311,0 +9624,B12,506,404,849093422,9596,0 +9625,KIELBA+087,456,587,699342219,10495,0 +9626,0214,522,597,698659980,10019,1 +9627,.%3A099%3A.+Niangmen,503,394,848934935,10544,0 +9628,%28035%29,405,528,699846892,10143,0 +9629,Suppi,413,538,699856962,10487,0 +9630,Monetki,482,402,699098531,10311,0 +9631,017,551,417,699761749,10495,0 +9632,Newbie,558,607,699567608,10144,0 +9633,%7E%7ELataj%C4%85cyHolender%7E%7E,600,502,9174887,9786,0 +9634,Joms+032,533,423,699756210,10401,0 +9635,.achim.,515,402,6936607,10311,0 +9636,070+%7C,543,521,8000875,10336,0 +9637,Osada+koczownik%C3%B3w,478,596,699364813,10311,3 +9638,015+%2A+Lady+Porto+%2A,595,521,699406750,12154,0 +9639,Wioska+sznur,403,504,699265922,8389,0 +9640,Wioska+M.04,405,522,1804724,9215,0 +9641,Czaru%C5%9B,573,599,699785935,10495,0 +9642,Ho%C5%82opole,488,405,699433558,10311,0 +9643,.achim.,537,389,6936607,10311,0 +9644,BBB,583,448,1006847,5987,0 +9645,%5BA%5D_%5B047%5D+Dejv.oldplyr,404,474,699380607,10495,0 +9646,020,589,454,699722599,10241,0 +9647,O%3AAabadon+d,593,478,699347951,12154,0 +9648,.achim.,513,402,6936607,10311,0 +9649,Wioska+0033,404,521,1804724,8759,0 +9650,Jehu_Kingdom_01_,598,481,8785314,9993,0 +9651,Wioska+barbarzy%C5%84ska,429,434,9291984,8210,0 +9652,Executive+Suite,522,608,8199417,10495,0 +9653,Winter+is+coming,478,597,699364813,10268,0 +9654,%2B44+62+Oye+Plage,427,469,698361257,9987,0 +9655,Eukalade,424,558,699833171,9357,0 +9656,056.+Isenstar,589,540,8337151,10083,8 +9657,Witam+w+wietnamie,418,553,698971484,10083,0 +9658,011+Myszy+z+dyszy,589,461,698829590,10495,0 +9659,Z11,546,584,873575,9966,0 +9660,%5B036%5D,593,538,848985692,10068,0 +9661,%28026%29,407,531,699846892,10144,0 +9662,Jaaa,584,552,698635863,10478,0 +9663,Monetki,477,405,699098531,10158,3 +9664,mehehe,523,597,699698253,9744,0 +9665,W.181%2F06,613,536,2999957,10242,0 +9666,Wioska+barbarzy%C5%84ska,409,461,699523631,10490,0 +9667,%230096,514,599,1536231,10495,0 +9668,%23054,520,596,849001572,9735,0 +9669,Dobranoc,414,543,699856962,9118,0 +9670,Dobranoc,416,547,698971484,10252,0 +9671,Szlachcic,460,413,698388578,10237,0 +9672,Monetki,479,403,699098531,10291,0 +9673,Wioska+barbarzy%C5%84ska,569,433,699368887,7500,0 +9674,Sparta_14,494,600,2585846,9638,0 +9675,-008-+Jestem+kotem,461,408,9291984,7362,4 +9676,Wioska+M...,404,520,1804724,8483,0 +9677,0000013%23,430,571,849089881,9793,0 +9678,%5BA%5D_%5B035%5D+Dejv.oldplyr,405,473,699380607,10444,0 +9679,%23024,486,599,699605333,10393,0 +9680,Z12,550,583,873575,10343,0 +9681,Gravity,416,449,698962117,9496,0 +9682,Wioska+barbarzy%C5%84ska,420,558,699833171,9223,0 +9683,Ho%C5%82opole,489,405,699433558,9835,0 +9684,Jehu_Kingdom_23_,597,509,8785314,9993,0 +9687,052,595,483,699573053,10495,0 +9688,KONFA+TO+MARKA%2C+NARKA,406,475,698152377,10311,0 +9689,%5B028%5D+Nuzudyti+tave,598,517,848985692,10057,0 +9690,KIELBA+097,463,592,699342219,10276,1 +9691,Prosecco,407,562,699443920,9878,0 +9692,Ciasny+wiesiek+222,504,600,699364813,10495,8 +9693,002,467,406,9291984,5370,0 +9694,A025,451,412,8740199,10237,0 +9695,012.+Bastion,417,556,698971484,10008,0 +9696,Wioska+barbarzy%C5%84ska,481,596,7976264,10024,0 +9698,koczownicza+03,402,515,1804724,9572,3 +9699,Wioska+%28016%29,598,511,698232227,9361,0 +9700,Quasi,418,555,699443920,5950,0 +9701,Wioska+barbarzy%C5%84ska,568,429,699368887,9491,0 +9702,z+028,564,603,699342219,10317,0 +9703,Gravity,409,457,698962117,9489,0 +9704,0215,525,594,698659980,10019,0 +9705,CALL+982,560,579,699784536,10495,0 +9706,AbacadA+007,572,430,699756210,10273,0 +9707,005-+Br%C3%B3dka+mo%C5%BCe+hmmm,455,410,9291984,6507,4 +9708,024+Ciemna+strona+mocy,590,457,698829590,6332,0 +9709,Mzm04,600,509,7142659,10252,0 +9710,Gravity,413,451,698962117,9502,0 +9712,Wioska+0028,402,521,1804724,9886,0 +9714,%23010,538,592,849001572,9740,0 +9715,Qumin,419,557,699443920,9761,0 +9716,CALL+1029,577,563,699784536,10654,0 +9717,CALL+1032,572,565,699784536,10311,0 +9718,Kulik+004,402,513,698290577,7294,0 +9719,Wioska+myszka,493,593,7976264,10047,0 +9720,Wioska+0002,406,466,698807570,9092,0 +9721,xx+006.+Bubu,400,494,698290577,8960,0 +9722,Winter+is+coming,507,599,699364813,10365,0 +9723,Szlachcic,463,409,698388578,10237,0 +9724,%7E%7ELataj%C4%85cyHolender%7E%7E,601,491,9174887,9812,0 +9725,.achim.,535,404,6936607,10109,0 +9726,0000020%23,428,571,849089881,10140,0 +9727,Joms+037,533,419,699756210,5288,0 +9728,004,490,603,7976264,10495,0 +9729,Cyk,571,432,848985692,7022,0 +9730,NOT,420,442,9236866,10042,0 +9731,Wioska+004,414,551,698971484,9336,0 +9732,Wioska,586,549,698702991,10083,0 +9733,Gravity,415,449,698962117,9503,0 +9734,%5B018%5D+Tua+Koj+MONETY,595,525,848985692,10221,3 +9735,xx+008.+Za+kilka+dolar%C3%B3w+wi%C4%99cej,401,497,698290577,9372,0 +9736,Z13,551,582,873575,10184,7 +9737,014+-+lista%2A%2A%2A,443,582,225023,10495,0 +9738,%23046,523,594,849001572,9809,0 +9739,Wioska+barbarzy%C5%84ska,421,558,699833171,8807,0 +9740,Wioska+0016,404,524,1804724,10157,0 +9741,Napewno+to+nie+jest+off,498,399,848912265,6833,0 +9742,A%23027%23,407,473,698807570,11951,0 +9743,Gravity,418,447,698962117,9491,0 +9744,KR%C3%93L+PAPI+WIELKI,571,569,698191218,10000,0 +9745,VN+Alexander+the+Great,465,381,699883079,9771,0 +9747,Szlachcic,461,409,698388578,10237,0 +9748,Kentin+ufam+Tobie,402,487,699783765,10000,0 +9749,106,550,389,849064752,10311,0 +9750,AAA,494,401,849093422,9902,0 +9751,Monetki,471,404,699098531,10290,0 +9752,0051+LZ,437,425,3909522,10484,0 +9753,Qled,416,555,699443920,6325,0 +9754,015+Gonzzollo,407,540,699425709,9873,0 +9755,Teatr,433,572,7249451,10294,0 +9756,.achim.,516,402,6936607,10311,0 +9757,%28009%29,405,531,699846892,10160,0 +9758,094,593,474,699573053,10495,0 +9759,001.,429,570,9167250,10104,0 +9760,-007-+Siemanko,462,407,9291984,10479,9 +9761,A+009.,441,576,849028088,9631,0 +9762,wioska,451,588,699364813,9129,0 +9763,013,586,450,699722599,10479,0 +9764,001,425,566,699833171,4157,0 +9765,Wish+You+Were+Here,587,545,848926293,7501,0 +9767,KIELBA+020,441,578,699342219,10273,0 +9768,won+zajente,480,403,1782523,6720,0 +9769,Kentin+ufam+Tobie,402,486,699783765,10000,0 +9770,KIELBA+100,463,591,699342219,10223,0 +9771,CALL+1030,573,564,699784536,10311,0 +9772,x+barbarzy%C5%84ska+009,400,497,698290577,8649,0 +9773,Teatr,432,570,7249451,9984,0 +9774,Wioska+barbarzy%C5%84ska,574,437,699368887,6700,0 +9775,Ho%C5%82opole,492,403,699433558,9899,0 +9776,0022,597,491,699429153,10058,0 +9777,Szlachcic,459,412,698388578,10237,0 +9778,AAA,510,402,849093422,9596,0 +9779,Wioska+%28018%29,592,538,698232227,9342,0 +9780,A026,447,415,8740199,10221,0 +9781,AbacadA+001,563,427,699756210,10273,0 +9782,Winter+is+coming,470,595,699364813,8947,0 +9784,KR%C3%93L+PAPI+WIELKI,575,564,698191218,10000,0 +9785,%7E%7ELataj%C4%85cyHolender%7E%7E,600,493,9174887,9070,0 +9786,040+Louisville,427,432,9291984,10371,0 +9787,NOT%3F,429,520,9236866,10042,0 +9788,KR%C3%93L+PAPI+WIELKI,561,578,698191218,10000,0 +9789,%28008%29,407,530,699846892,10152,0 +9790,-+112+-,548,585,849018239,9709,0 +9792,...,575,433,698867483,9288,8 +9793,00506,435,427,3909522,4931,0 +9794,Bagdad,477,383,8847546,10654,0 +9795,Feed+me+more+010,490,402,699756210,10365,0 +9796,PRO8L3M,465,497,7491093,10311,0 +9797,014,589,538,8138506,9555,0 +9798,CSA,403,518,1804724,9623,3 +9799,.achim.,523,404,6936607,10311,0 +9800,007,503,601,7976264,10028,0 +9801,Truskawkowy+Bili,471,597,699364813,9537,0 +9802,.achim.,517,403,6936607,10311,0 +9803,031,589,457,849088515,9552,0 +9804,Joms+044,555,417,699756210,6902,0 +9805,044,561,419,699761749,10495,0 +9806,Wioska+barbarzy%C5%84ska,556,579,6818593,9835,0 +9807,Kiedy%C5%9B+Wielki+Wojownik,393,457,8632462,9835,0 +9808,Szlachcic,588,456,698867446,9771,0 +9809,%7E020.,497,599,7139820,10495,0 +9810,Village,505,599,849094067,12154,0 +9811,NOT,422,440,9236866,10042,0 +9812,.achim.,513,404,6936607,10311,0 +9813,.%3A140%3A.+Niangmen,511,400,848934935,9596,0 +9814,001,399,508,698290577,3820,0 +9815,00504,433,428,3909522,8561,0 +9816,Osada+koczownik%C3%B3w2,426,563,699833171,4021,1 +9817,.achim.,515,403,6936607,10311,0 +9818,-+106+-,545,586,849018239,10000,0 +9819,.achim.,530,405,6936607,8897,0 +9820,A041,468,405,8740199,6175,0 +9821,Gryfios+020,608,556,698666810,12154,0 +9822,Metis,421,559,699833171,9321,0 +9823,BBB,583,447,1006847,6166,0 +9824,.%3A112%3A.+Niangmen,505,397,848934935,9899,0 +9825,011,509,601,7976264,9965,0 +9826,Szlachcic,465,410,698388578,8906,0 +9827,CALL+1031,572,564,699784536,10787,0 +9828,Teatr,432,572,7249451,10495,0 +9829,A027,452,411,8740199,10226,0 +9831,Winter+is+coming,450,586,699364813,9438,0 +9832,Piek%C5%82o+to+inni,486,404,848956765,10160,0 +9833,049+Bu%C5%82eczka+v4,533,406,699491076,9699,0 +9834,Wioska+barbarzy%C5%84ska,409,463,699523631,10348,0 +9835,048,560,419,699761749,10495,0 +9836,KR%C3%93L+PAPI+WIELKI,585,550,698191218,10000,0 +9837,Witam+w+wietnamie,418,552,698971484,10008,0 +9838,Nope,405,466,6258092,10083,0 +9839,050,565,423,849064752,10038,4 +9840,031,551,414,1424656,9801,0 +9841,AbacadA+013,562,424,699756210,10273,0 +9842,039,537,407,7271812,10495,6 +9843,%C5%81APANKA%21%21%21%21,395,562,9167250,9781,0 +9844,.achim.,523,406,6936607,10311,0 +9846,E.01,573,433,699368887,7923,0 +9847,Wioska+%28001%29,619,477,698232227,9316,0 +9848,Majin+Buu+017,437,573,699054373,9761,0 +9849,Kulik+005,400,511,698290577,4888,0 +9850,Lord+Arsey+KING,535,534,848956513,10285,0 +9851,%5B043%5D,594,535,848985692,10392,0 +9852,025+Austin,428,430,9291984,9792,0 +9853,093+MEHEHE,491,597,6116940,10019,0 +9854,%23055,476,597,699605333,10393,0 +9855,Wioska+barbarzy%C5%84ska,572,432,699368887,7898,0 +9856,006+-+Malaga,597,488,698342159,10019,0 +9857,009+Hokus+pokus,589,462,698829590,6546,0 +9858,A028,451,411,8740199,10217,0 +9859,01+Monety+3+p500,573,436,699368887,9994,0 +9860,DOM+4+%2A,564,403,849064614,9382,0 +9861,%7E033.,475,598,7139820,10495,0 +9862,%7E003.,506,604,7139820,10495,0 +9863,.achim.,529,404,6936607,10311,0 +9864,Wioska+wosiur12,469,405,9291984,3265,0 +9865,Winter+is+coming,462,593,699364813,10068,0 +9866,W%3D01,611,475,7142659,10636,0 +9867,Napewno+to+nie+jest+off,495,399,848912265,7436,0 +9868,Medellin,404,533,849030226,10011,0 +9869,BBB,582,442,1006847,6512,0 +9870,EKG+M13,487,599,33900,9831,0 +9871,AAAA-006-+Kotek%2C+kotek%2C+kotek,454,414,9291984,10479,9 +9872,x+Wioska+barbarzy%C5%84ska,399,496,698290577,9034,0 +9873,Popas8,402,503,699265922,10022,0 +9874,0216,521,597,698659980,10019,0 +9875,-+108+-,545,587,849018239,10000,0 +9876,Farma,404,469,698807570,12154,0 +9877,.achim.,519,402,6936607,10311,8 +9878,Napewno+to+nie+jest+off,484,403,848912265,4916,0 +9879,BBB,580,441,1006847,7467,0 +9880,SsSs,400,493,1536625,9777,0 +9881,030+Co%C5%9B+tam,592,461,698829590,7888,0 +9882,044,413,551,698971484,10083,0 +9883,%5BA%5D_%5B048%5D+Dejv.oldplyr,406,473,699380607,10495,0 +9884,yogi,490,531,2808172,8992,0 +9885,.achim.,531,391,6936607,10311,0 +9886,Wioska+barbarzy%C5%84ska,563,580,6818593,9835,0 +9888,.achim.,529,407,6936607,10311,0 +9889,Wioska+barbarzy%C5%84ska,558,581,6818593,9835,0 +9890,.achim.,514,403,6936607,10311,0 +9891,Wioska+barbarzy%C5%84ska,424,433,699660539,9918,0 +9892,SsSs,402,492,1536625,9344,0 +9893,021+Las+Vegas,429,427,9291984,10387,0 +9894,Wioska+barbarzy%C5%84ska,426,435,698884287,10285,0 +9895,Coruscant+7,506,601,699383121,9566,0 +9896,Quest,415,554,699443920,5271,0 +9897,makelovenotwar3,384,461,698807570,9717,0 +9898,z+050,550,585,699342219,10220,0 +9899,.achim.,515,397,6936607,10311,0 +9900,.achim.,535,410,6936607,10311,0 +9901,%23056,477,596,699605333,10393,0 +9902,Centrum+01,605,565,698702991,9745,0 +9903,Wioska+barbarzy%C5%84ska,400,505,698290577,5864,0 +9904,075+Wojownik,542,389,699491076,10001,0 +9905,Szlachcic,587,457,698867446,9976,0 +9906,Monetki,476,406,699098531,10290,0 +9907,033+Galfni,600,508,8337151,10160,0 +9908,CALL+1075,551,615,699784536,10495,0 +9909,Szlachcic,463,408,698388578,10237,0 +9910,Gravity,411,452,698962117,9505,0 +9911,Wioska1,503,599,8369778,10203,0 +9912,Wioska,588,545,698702991,9889,7 +9913,.achim.,521,404,6936607,10311,0 +9914,Wioska+0026,402,527,1804724,8755,0 +9915,.achim.,519,404,6936607,10311,2 +9916,B13,505,402,849093422,9566,0 +9917,A035,465,405,8740199,10221,6 +9918,Quantum,419,558,699443920,10160,0 +9919,013+OCB,590,456,698829590,10495,3 +9920,Napewno+to+nie+jest+off,486,403,848912265,7176,0 +9921,.achim.,532,408,6936607,10311,0 +9922,Radek,401,480,699523631,10495,0 +9923,x+012.+Rio+Bravo,399,499,698290577,9450,0 +9924,Gravity,419,446,698962117,9486,0 +9925,008,584,442,699722599,10495,0 +9926,%7E031.,479,596,7139820,10495,0 +9927,Sparta_02,502,599,2585846,9638,0 +9928,Wioska,596,519,698845189,6034,0 +9929,%5BA%5D_%5B026%5D+Dejv.oldplyr,400,486,699380607,10401,0 +9930,Szlachcic,466,409,698388578,10237,0 +9931,223+%7C,563,577,8000875,818,0 +9932,001+-+Barcelona,598,491,698342159,10019,0 +9933,mehehe+2,452,588,699364813,10047,0 +9934,KIELBA+061,452,585,699342219,10273,0 +9935,.%3A135%3A.+Niangmen,507,400,848934935,9847,0 +9936,NOT,421,436,9236866,10042,0 +9937,B06,507,402,849093422,9761,7 +9938,.achim.,530,402,6936607,9827,0 +9939,Part+X,536,378,698350371,10495,0 +9940,BBB,584,445,1006847,5591,0 +9941,%28036%29,408,532,699846892,10160,0 +9942,B.004,427,570,849088243,9986,0 +9943,%2A009%2A,611,497,698670524,8527,0 +9944,025.,598,483,8900955,9995,0 +9946,Popas+11,403,497,699265922,9752,0 +9947,South+K35,558,392,699146580,10042,0 +9948,-+073+-,538,594,849018239,10000,0 +9949,Kiedy%C5%9B+Wielki+Wojownik,394,458,8632462,9779,0 +9950,A+004.,439,577,849028088,9761,0 +9951,0085,440,403,699431255,9729,0 +9952,035,596,470,8459255,10336,0 +9953,Wioska+barbarzy%C5%84ska,443,416,849027025,9980,0 +9954,Lord+Arsey+KING,593,529,848956513,10285,7 +9955,062,545,410,699761749,10495,0 +9956,0000022%23,431,572,849089881,8517,0 +9958,Majin+Buu+004,435,578,699054373,9761,0 +9959,.%3A030%3A.+Chillout,521,447,848934935,10636,0 +9960,%28027%29,404,530,699846892,10155,0 +9961,Welcome+To+The+Machine,585,548,848926293,7379,0 +9962,%28028%29,404,531,699846892,7702,0 +9963,KR%C3%93L+PAPI+WIELKI,565,573,698191218,10000,0 +9964,Sparta_01,501,598,2585846,9638,0 +9965,Gravity,411,454,698962117,9488,0 +9966,Wioska+0027,400,519,1804724,7684,0 +9967,KONFA+TO+MARKA%2C+NARKA,402,478,698152377,10311,0 +9968,004+Pomalutku,591,456,698829590,10008,0 +9969,Szlachcic,458,411,698388578,10237,0 +9970,021,587,453,699722599,10244,0 +9971,FRONT,461,521,2585846,9638,0 +9972,Farma,402,474,698807570,12154,0 +9973,Gravity,417,449,698962117,9505,0 +9974,NOT%3F,469,593,9236866,9579,0 +9975,Wioska+barbarzy%C5%84ska,564,580,6818593,9835,0 +9976,.achim.,522,400,6936607,10311,0 +9977,Popas2,398,504,699265922,10228,6 +9978,%5BA%5D_%5B051%5D+Dejv.oldplyr,409,466,699380607,10495,0 +9979,084,599,566,699373599,9636,0 +9980,Wioska+barbarzy%C5%84ska,441,418,849027025,9355,0 +9981,A042,476,403,8740199,10247,0 +9982,ADEN,580,438,698588535,10023,0 +9983,A+001.,437,581,849028088,9847,0 +9984,Jaaa,580,555,698635863,10495,0 +9986,KONFA+TO+MARKA%2C+NARKA,402,472,698152377,10311,0 +9987,Zatoka+Marze%C5%84,597,486,699347951,11824,0 +9988,Wioska+barbarzy%C5%84ska,402,512,698290577,4346,0 +9989,Wioska,384,501,849084005,10178,0 +9990,071,546,412,699761749,7669,0 +9991,Wioska,513,399,849044961,9180,0 +9992,KONFA+TO+MARKA%2C+NARKA,401,479,698152377,10311,0 +9993,057.+Jezioro+Leona,590,540,8337151,10083,0 +9994,A006,467,405,8740199,10237,0 +9995,Szlachcic,474,401,698388578,10237,0 +9996,081,404,522,699851427,10042,0 +9997,%23021,527,594,849001572,9745,0 +9999,Wioska4%2C%2C,487,600,8369778,10209,0 +10000,Napewno+to+nie+jest+off,487,405,848912265,3420,0 +10001,%23063,480,597,699605333,8530,0 +10002,.achim.,529,403,6936607,8514,0 +10003,094,408,535,699851427,9548,0 +10004,Teby_41,484,599,2585846,9638,0 +10005,Ho%C5%82opole,488,399,699433558,10178,0 +10006,%5B046%5D,597,534,848985692,10495,0 +10007,%230097,514,601,1536231,10495,0 +10008,Suppi,428,456,699856962,9337,0 +10009,KR%C3%93L+PAPI+WIELKI,593,536,698191218,10000,6 +10010,071+-+Kremin,422,586,225023,9372,0 +10011,A+003.,439,578,849028088,9761,0 +10012,Szlachcic,476,402,698388578,10084,0 +10015,%5B029%5D+Boma+YoU,596,518,848985692,10237,0 +10016,%5BA%5D_%5B037%5D+Dejv.oldplyr,405,476,699380607,10444,0 +10017,A+002.,439,581,849028088,9825,0 +10018,006+Minas+Thirit,597,530,8013349,8992,0 +10019,011,409,515,699851427,10129,0 +10021,-+310+-,529,586,849018239,10008,0 +10022,Joms+045,555,419,699756210,9823,0 +10023,Wioska,385,519,849084005,10178,0 +10024,007+-+Murcia,598,486,698342159,10019,0 +10025,Wioska+0001,402,526,1804724,9978,0 +10026,014,580,562,699524362,6684,0 +10027,059+Honolulu,459,464,1497168,9761,0 +10028,0095,467,549,698659980,9082,0 +10030,-+288+-,520,597,849018239,10000,0 +10031,Wioska+0006,405,526,1804724,10199,0 +10032,Psychiatryk,504,595,699698253,9966,0 +10033,Wioska+barbarzy%C5%84ska,426,432,699660539,8207,0 +10034,Wioska2%2C,506,598,8369778,9901,0 +10035,Winter+is+coming,468,592,699364813,5733,0 +10037,Wioska2,506,597,8369778,10202,0 +10038,0065,598,515,698416970,10252,0 +10039,028,591,465,849088515,7135,0 +10040,022,551,413,7271812,10495,0 +10041,.%3A119%3A.+Niangmen,509,395,848934935,9899,0 +10042,057,402,500,699851427,10129,8 +10043,012,576,435,849063849,10503,0 +10044,%5BA%5D_%5B021%5D+Dejv.oldplyr,398,493,699380607,10495,0 +10045,Wioska+barbarzy%C5%84ska,562,581,6818593,9835,0 +10046,.achim.,518,402,6936607,10311,0 +10048,Winter+is+coming,460,592,699364813,10001,0 +10049,028+Daret,599,508,8337151,10160,0 +10050,A+008.,439,579,849028088,9761,0 +10051,AbacadA+018,567,427,699756210,9860,0 +10052,%23%23%23,516,598,699698253,9950,0 +10053,%7C049B%7C,558,583,6818593,9835,0 +10054,koczownicza+01,401,526,1804724,10179,5 +10055,This+Is+Sparta+%21%21%21,477,599,699364813,1448,0 +10056,0015+MzM,593,541,698416970,9258,0 +10057,0182,544,620,698659980,10252,0 +10058,FAKE+OR+OFF,458,407,698231772,9883,0 +10059,00381+Wioska,437,421,3909522,9444,0 +10060,AbacadA+015,564,425,699756210,9853,0 +10061,Szlachcic,461,410,698388578,10237,0 +10062,Wioska.,512,398,849044961,8229,0 +10063,-+324+-,530,593,849018239,9540,0 +10064,Wioska+0004,399,515,1804724,10242,0 +10065,x+Wioska+barbarzy%C5%84ska,400,499,698290577,9374,0 +10066,0.Minneapolis,521,587,698215322,9986,0 +10067,-+283+-,518,597,849018239,10000,0 +10069,Wioska+barbarzy%C5%84ska,405,467,699523631,10484,0 +10070,Essa+006,569,574,848987051,9578,6 +10071,033,549,415,1424656,9144,0 +10072,Wioska+barbarzy%C5%84ska,589,459,848925840,8247,0 +10073,028,556,415,699761749,10495,4 +10074,050+Bu%C5%82eczka+v5,539,405,699491076,10001,0 +10075,%230093,512,600,1536231,10495,0 +10076,K44+x003,436,404,698364331,10164,0 +10077,007,483,596,7976264,9047,0 +10078,.achim.,515,399,6936607,10311,0 +10079,027,595,462,849088515,9750,0 +10080,099,567,423,849064752,10273,0 +10081,022+San+Jose,428,427,9291984,10478,0 +10082,%7E037.,470,596,7139820,10495,0 +10083,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,605,7589468,8819,0 +10084,mam,558,584,6818593,9835,0 +10085,048+-+A03%2A%2A%2A,433,590,225023,10495,0 +10086,%5BA%5D_%5B042%5D+Dejv.oldplyr,401,493,699380607,10311,0 +10087,0339,499,621,698659980,10495,0 +10088,KONFA+TO+MARKA%2C+NARKA,403,466,698152377,12154,0 +10089,Ho%C5%82opole,480,401,699433558,10311,0 +10090,Wioska6%2C%2C%2C%2C,518,601,8369778,9883,0 +10091,021,570,427,849063849,9721,7 +10092,Wioska+0002,405,524,1804724,10164,0 +10093,Jaaa,581,556,698635863,10438,0 +10094,Monetki,479,402,699098531,10297,0 +10095,Wioska+Lord+Wasir,445,417,9291984,10495,0 +10096,AbacadA+017,566,424,699756210,9612,0 +10097,%5BA%5D_%5B046%5D+Dejv.oldplyr,406,470,699380607,10495,0 +10098,Wioska+barbarzy%C5%84ska,404,466,699523631,10495,0 +10099,095+MEHEHE+m,493,600,6116940,10019,0 +10100,Gravity,414,451,698962117,9505,0 +10101,Gravity,412,451,698962117,9496,0 +10103,007+Mordor,598,529,8013349,9846,0 +10104,.%3A007%3A.+Idea,505,398,8649412,9767,0 +10105,Centrum+02,605,564,698702991,9761,0 +10106,Wioska+morisanti,507,601,699698253,9966,0 +10107,PYZA+002+Nuke,579,566,33900,9536,1 +10108,002,587,452,699722599,10362,0 +10109,ADEN,561,417,698588535,9192,0 +10110,Tesa+14,597,524,698845189,9302,0 +10111,Gravity,410,451,698962117,9497,0 +10112,001,604,459,849088515,10019,0 +10113,011,582,562,699524362,10211,0 +10114,%23040,458,609,699605333,10971,0 +10115,NOT%3F,409,544,9236866,10042,0 +10116,NOT,418,439,9236866,10042,0 +10117,Wioska6%2C%2C%2C,519,597,8369778,10023,0 +10118,019,405,537,699425709,9873,0 +10119,NOT,421,439,9236866,10042,0 +10120,0000019%24,434,578,849089881,9663,0 +10122,Gravity,411,458,698962117,9486,0 +10123,Twierdza+016,427,566,9167250,4060,0 +10124,0010,472,598,33900,9269,0 +10125,0099,443,419,699431255,9682,0 +10126,.achim.,514,399,6936607,10311,0 +10127,Kulik+001,398,509,698290577,9093,0 +10128,Wioska+barbarzy%C5%84ska,508,399,849044961,6532,0 +10129,.achim.,515,401,6936607,10311,0 +10131,Sparta_16,497,600,2585846,9638,0 +10132,%23053,525,596,849001572,9735,0 +10133,Wioska+barbarzy%C5%84ska,576,436,699368887,8716,0 +10134,-+119+-,548,589,849018239,10000,0 +10135,%28029%29,405,532,699846892,10160,0 +10136,Gravity,412,450,698962117,9485,5 +10137,032+Stay+Alive,592,459,698829590,9486,0 +10138,KIELBA+040,456,590,699342219,10495,0 +10139,004.,488,602,7976264,10004,0 +10140,%5B045%5D,596,536,848985692,10646,0 +10142,0003,599,501,699429153,10058,0 +10143,045,548,409,699761749,10495,0 +10144,Jaaa,587,554,698635863,10481,0 +10145,.achim.,520,399,6936607,10311,0 +10146,028,572,433,699368887,9994,0 +10147,CALL+983,559,579,699784536,10495,0 +10148,Napewno+to+nie+jest+off,497,398,848912265,10495,0 +10149,Wioska+barbarzy%C5%84ska,406,464,699523631,10144,0 +10150,Wioska+barbarzy%C5%84ska,438,396,849027025,9819,0 +10151,Witam+w+wietnamie,415,552,698971484,10008,0 +10152,051,400,498,699510259,9744,0 +10153,Winter+is+coming,449,587,699364813,9426,0 +10154,jaaa,575,567,698635863,10475,0 +10155,1.Sacramento,532,596,698215322,9951,0 +10156,Szulernia,418,413,7249451,9981,0 +10157,Jaaa,590,550,698635863,10476,0 +10158,0217,533,592,698659980,10019,0 +10159,046+Bu%C5%82eczka+v1,536,405,699491076,10001,0 +10160,.%3A143%3A.+Niangmen,501,401,848934935,9761,0 +10161,K44+x007,445,414,698364331,8415,0 +10162,%23006,537,595,849001572,9545,0 +10163,0026+Wioska,428,413,3909522,10481,0 +10164,044,483,399,698739350,9795,0 +10165,A09,598,466,849093742,10019,0 +10166,Wioska+-+xd,601,517,698845189,9703,0 +10167,Winter+is+coming,470,597,699364813,9976,0 +10168,Wioska+barbarzy%C5%84ska,525,598,606407,10306,0 +10170,Wioska+barbarzy%C5%84ska,561,579,6818593,9835,0 +10171,Wioska+barbarzy%C5%84ska,406,469,699523631,10481,0 +10172,Wioska+barbarzy%C5%84ska,414,444,698884287,8758,0 +10173,Tesa+12,599,519,698845189,10019,0 +10174,Z03,515,602,2293376,10362,0 +10175,Szlachcic,472,403,698388578,10237,0 +10176,014+New+Haven,430,428,9291984,10141,0 +10177,%23020,525,599,849001572,9549,6 +10178,KR%C3%93L+PAPI+WIELKI,582,558,698191218,10000,0 +10179,009,566,425,849063849,10503,0 +10180,019+Philadelphia,431,429,9291984,9488,0 +10181,Qbek,417,554,699443920,6506,0 +10182,B18,498,401,849093422,9761,0 +10183,1.60tp+%21%21%21,500,536,849087855,9746,0 +10184,Domek+8,561,421,849064614,9827,0 +10185,029,594,466,8459255,10495,0 +10186,%230094,510,599,1536231,10495,0 +10187,Bunkier+001,587,449,698350371,10495,6 +10188,A0046,380,473,8841266,10362,0 +10189,019.,595,537,8900955,6862,0 +10190,Wioska+450,590,547,477415,10728,0 +10191,Wioska+barbarzy%C5%84ska,420,559,699833171,6718,0 +10192,BBB,583,446,1006847,9155,0 +10193,Winter+is+coming,451,589,699364813,10055,0 +10194,Pod,590,585,1715091,9644,0 +10195,EKG+.%3A%3A.+freaky97%2F2,488,605,33900,10495,0 +10196,033,597,469,8459255,10189,0 +10197,Napewno+to+nie+jest+off,493,397,848912265,10495,3 +10198,038,538,407,7271812,10495,0 +10199,%5BA%5D_%5B011%5D+Dejv.oldplyr,398,487,699380607,10495,0 +10200,004.+Wioska+Gatt,598,522,8788366,10495,0 +10201,%230098,513,601,1536231,10495,0 +10202,z+032,553,586,699342219,10237,0 +10203,020+Phoenix,430,427,9291984,9792,0 +10204,014+Jedno+albo+drugie,600,481,699272633,10487,0 +10205,0103,443,417,699431255,9587,0 +10206,A18,594,460,849093742,9656,0 +10207,018,601,506,699573053,10495,0 +10208,Jaaa,584,553,698635863,10476,0 +10210,Wioska+barbarzy%C5%84ska,596,526,699851345,9689,0 +10211,.achim.,528,401,6936607,10311,0 +10212,Szlachcic,478,401,698388578,8317,0 +10213,x+barbarzy%C5%84ska+008,397,511,698290577,9131,0 +10214,005,491,599,7976264,10315,0 +10216,Szlachcic,464,407,698388578,10237,0 +10217,013+Delaware,601,487,7092442,10495,0 +10218,%5B047%5D,598,523,848985692,10057,0 +10219,034,552,413,1424656,6574,0 +10220,043,481,398,698739350,8084,0 +10221,Szlachcic,467,404,698388578,10104,0 +10222,Joms+012,527,418,699756210,10238,0 +10223,czekoladowy+john,471,596,699364813,10311,0 +10224,%7E022.,474,598,7139820,10495,0 +10225,Brat447,386,500,699262350,10476,0 +10226,Wioska+barbarzy%C5%84ska,399,520,1804724,7897,0 +10227,%23018,544,588,849001572,9741,0 +10228,SSJ+015,520,622,699054373,9761,0 +10229,018+Houston,431,426,9291984,10495,0 +10230,006,486,598,7976264,10162,0 +10231,sony911,565,604,1415009,10222,0 +10232,%5B402%5D+Zatrzymam+to+sobie,576,431,848985692,8530,0 +10233,0000006%23,427,572,849089881,10484,0 +10234,k45+016,577,433,699368887,10393,0 +10235,%5BA%5D_%5B008%5D+Dejv.oldplyr,399,488,699380607,10444,0 +10236,%7E076.,490,607,7139820,10495,0 +10237,071,544,409,849064752,10311,0 +10238,.achim.,517,400,6936607,10311,0 +10239,099+MEHEHE+1,492,602,6116940,10019,0 +10240,A+005.,436,581,849028088,10229,0 +10241,Wioska+barbarzy%C5%84ska,442,417,849027025,9889,0 +10242,NOT%3F,410,546,9236866,10042,0 +10243,Rotrigo+3,405,535,849030226,10495,0 +10244,0075,599,496,698416970,10019,0 +10245,006+Czysta+gra,591,455,698829590,9260,0 +10246,Wioska+barbarzy%C5%84ska,578,438,699368887,9725,0 +10247,NOT%3F,409,550,9236866,10042,0 +10248,101+%2A%2A%2A1%2A%2A%2A+Arbuz,543,389,699491076,10001,0 +10249,SsSs,402,490,1536625,8779,0 +10250,.achim.,516,398,6936607,10311,0 +10251,010.+Wioska+V1p3r646,593,515,8788366,10495,0 +10252,D001,510,397,7758085,9925,0 +10253,%5BA%5D_%5B024%5D+Dejv.oldplyr,400,483,699380607,10495,0 +10254,009,557,584,6818593,9835,0 +10255,Twierdza+015,424,565,9167250,5821,0 +10256,Winter+is+coming,507,600,699364813,10495,0 +10257,Village,468,595,849094067,11618,0 +10258,002,406,541,699425709,9873,0 +10259,1.Houston,542,595,698215322,9951,0 +10260,010+-+Bilbao,602,493,698342159,10019,0 +10261,Wioska+barbarzy%C5%84ska,562,582,6818593,9835,0 +10262,018+Problemy+internetowe+dorka,591,457,698829590,10008,0 +10263,mehehe+3,462,592,699364813,10311,0 +10264,Napewno+to+nie+jest+off,493,398,848912265,7143,0 +10265,.achim.,520,385,6936607,10311,0 +10266,B07,504,400,849093422,9761,0 +10267,Stage+group+D+1,452,590,699364813,9930,0 +10268,Twierdza+011,424,568,9167250,8789,0 +10269,004+Arkansas,603,487,7092442,10495,0 +10270,%7E034.,472,599,7139820,10495,0 +10271,Fairy+Tail,485,398,699433558,10311,0 +10272,Wioska6%2C%2C%2C%2C%2C,517,601,8369778,9759,0 +10273,Szlachcic,469,403,698388578,9720,0 +10274,Napewno+to+nie+jest+off,492,399,848912265,9318,0 +10275,0000008%23,429,573,849089881,10238,0 +10276,EKG+.%3A%3A.+KOM+004+Napychaj%C4%85c,477,600,33900,10495,0 +10277,KR%C3%93L+PAPI+WIELKI,566,575,698191218,10000,0 +10278,Napewno+to+nie+jest+off,497,399,848912265,8977,0 +10279,-+123+-,543,590,849018239,10000,0 +10280,%5B042%5D,591,539,848985692,10049,0 +10281,-+315+-,533,595,849018239,10000,0 +10282,A044,479,398,8740199,5306,0 +10283,B+004.,445,583,849028088,9825,0 +10284,-+115+-,552,586,849018239,10000,0 +10285,Wioska+451,591,547,477415,10495,0 +10286,Wioska+barbarzy%C5%84ska,413,447,698884287,10285,0 +10287,023+Farma+czy+nie,591,454,698829590,6816,0 +10288,.achim.,518,403,6936607,10311,0 +10289,KIELBA+077,458,593,699342219,10365,0 +10290,.achim.,520,400,6936607,10311,0 +10291,0218,520,600,698659980,10019,0 +10292,007,409,541,699425709,9873,0 +10293,011,576,595,698999105,10311,0 +10294,015,580,565,699524362,10211,0 +10295,087,400,524,699851427,10129,5 +10296,0000012%23,431,573,849089881,10224,0 +10297,0000024%23,429,572,849089881,9147,0 +10298,KONFA+TO+MARKA%2C+NARKA,409,462,698152377,11953,0 +10299,%C5%9Aci%C4%99ty+grzyb..,582,599,699785935,10160,0 +10300,A+006.,438,578,849028088,9753,0 +10301,KIELBA+080,457,594,699342219,10495,0 +10302,Wioska+barbarzy%C5%84ska,441,419,849027025,9563,0 +10303,%5B048%5D,597,525,848985692,10054,0 +10304,NOT%21%21,467,596,9236866,10042,0 +10305,Wioska+dare,562,577,6818593,9835,0 +10306,045,601,488,699573053,10495,0 +10307,019,413,519,699851427,10129,0 +10308,C+003.,449,568,849028088,10237,0 +10309,AbacadA+004,567,425,699756210,10424,0 +10310,SsSs,397,504,1536625,10152,0 +10311,Jehu_Kingdom_24_,600,480,8785314,9993,0 +10312,013+Norwalk,430,426,9291984,10484,7 +10313,NOT%3F,411,546,9236866,10042,0 +10314,%C5%81%C3%B3d%C5%BA,593,579,1715091,8813,0 +10315,%7E%7ELataj%C4%85cyHolender%7E%7E,599,498,9174887,10052,0 +10316,0004,442,392,699431255,9966,0 +10317,Tesa+5,599,521,698845189,10005,0 +10318,N01,585,445,699368887,10400,0 +10319,.%3A114%3A.+Niangmen,504,397,848934935,9899,0 +10321,.%3A136%3A.+Niangmen,507,398,848934935,9825,0 +10322,x010.+PewnegoRazuNaDzikimZach..,394,489,698290577,7828,0 +10323,keepo,486,529,848967710,10495,0 +10324,0009,602,495,699429153,10301,0 +10325,Wioska+barbarzy%C5%84ska,563,582,6818593,9835,0 +10326,Witam+w+wietnamie,413,556,698971484,10075,0 +10327,1.Madison,541,593,698215322,8966,0 +10328,0000015%21,446,585,849089881,8775,0 +10329,.achim.,527,404,6936607,10311,0 +10330,KR%C3%93L+PAPI+WIELKI,575,570,698191218,10000,0 +10332,z+025,551,586,699342219,10221,0 +10333,Kentin+ufam+Tobie,401,486,699783765,10000,0 +10334,013,584,561,699524362,10036,0 +10335,0038+Wioska,436,420,3909522,10078,0 +10336,NOT,416,440,9236866,10042,0 +10337,Wioska+barbarzy%C5%84ska,511,599,606407,10290,0 +10338,-+072+-,536,597,849018239,10000,0 +10339,Gravity,410,450,698962117,9486,0 +10340,Suppi,422,432,699856962,9811,0 +10341,007,424,571,9167250,8633,0 +10343,0035+MzM,588,548,698416970,10495,0 +10344,Magnolia,486,398,699433558,10311,5 +10346,Wioska+0029,402,520,1804724,10145,0 +10347,kto+ananasowy+pod+wod%C4%85+ma+dom,580,564,699628084,9797,0 +10348,Wioska+barbarzy%C5%84ska,396,496,698290577,7397,0 +10349,032,588,453,699722599,10139,0 +10350,-+070+-,534,598,849018239,10000,0 +10351,Wioska+barbarzy%C5%84ska,450,413,9291984,2932,0 +10353,Wioska+barbarzy%C5%84ska,579,432,699368887,8006,0 +10354,NOT%3F,434,540,9236866,6052,0 +10355,Gravity,407,464,698962117,9505,0 +10356,KR%C3%93L+PAPI+WIELKI,582,559,698191218,10000,0 +10357,015,551,410,699761749,10495,0 +10358,00501+Essa,433,422,3909522,10259,0 +10359,Sparta_19,494,603,2585846,9544,0 +10360,051,587,414,849064752,10311,0 +10361,Ho%C5%82opole,487,400,699433558,10178,0 +10362,EKG+.%3A%3A.+KOM+005+Orkowi+%C5%81+%2B+R,482,601,33900,10495,0 +10363,008+Isengard,598,531,8013349,10003,0 +10364,004.+Ivar+Bez+Ko%C5%9Bci,588,568,699373599,10030,0 +10365,0219,520,602,698659980,10019,0 +10366,%2A029%2A,601,513,698670524,5564,0 +10367,008.+Cent,431,425,699660539,10350,0 +10368,Suppi,431,451,699856962,9580,0 +10369,0014,472,600,33900,10068,0 +10370,027,591,452,699722599,10426,0 +10371,009+Osgiliath,598,534,8013349,10011,0 +10372,022+Indiana,603,490,7092442,10495,0 +10373,Szlachcic,589,456,698867446,9976,0 +10375,-+090+-,538,582,849018239,10000,0 +10376,0027,603,505,699429153,10168,0 +10377,z+033,553,587,699342219,10220,0 +10378,Wioska+Rafraf,402,519,1804724,8601,0 +10379,Essa+007,569,576,848987051,9805,0 +10380,%23023,539,595,849001572,5369,0 +10381,NOT%3F,408,546,9236866,10042,0 +10383,042,571,424,849063849,7837,7 +10384,015.+Erlendur,585,564,699373599,10030,0 +10385,South+Blue,485,399,699433558,10521,0 +10387,022,572,426,849063849,9787,0 +10388,052,552,412,849064752,10311,9 +10389,Jaaa,586,557,698635863,10474,0 +10390,Quska,418,558,699443920,6519,0 +10391,-+121+-,546,589,849018239,10000,0 +10392,KR%C3%93L+PAPI+WIELKI,566,576,698191218,10000,0 +10393,P%C5%82ezent%3F,491,510,699785935,9835,0 +10394,KR%C3%93L+PAPI+WIELKI,572,569,698191218,10000,0 +10395,030,592,451,849088515,10019,0 +10396,029+Dauth,600,507,8337151,10362,3 +10397,xx+017.+M%C5%9Bciciel,397,507,698290577,9416,0 +10398,004.,493,603,7976264,9811,0 +10399,Piomat,416,560,699443920,9761,0 +10400,005+Barka,592,455,698829590,10189,0 +10402,Wioska+insidecomer,559,581,6818593,9835,0 +10403,Wioska+0025,402,523,1804724,10099,0 +10404,%21kuba,518,598,8779575,9886,0 +10405,017,590,451,699722599,10316,0 +10406,KIELBA+038,441,580,699342219,10237,0 +10407,Ho%C5%82opole,481,401,699433558,9976,0 +10408,085,611,505,699573053,10349,0 +10409,Wioska+0017,402,522,1804724,10362,0 +10410,So%C5%82tys+Wsi+charlie4,439,418,849027025,9592,0 +10411,008,505,601,7976264,10060,0 +10412,012,469,600,7976264,10311,0 +10413,A%23022%23,403,475,698807570,11956,0 +10414,041,553,393,699761749,10495,0 +10415,A%23028%23,403,470,698807570,11950,0 +10416,008+-+Las+Palmas,599,483,698342159,10019,0 +10417,Village,474,591,849094067,8869,0 +10418,KR%C3%93L+PAPI+WIELKI,573,572,698191218,10000,0 +10420,barba,468,599,7976264,10237,0 +10421,014+Ta%C5%84cz%C4%85cy+z+myszami,596,463,698829590,10019,0 +10422,Sparta_21,498,604,2585846,9544,0 +10423,Wioska+barbarzy%C5%84ska,434,419,849027025,9424,0 +10424,Wioska+karrrol923,600,516,699851345,9840,0 +10425,013.,601,510,8900955,6742,0 +10426,Wioska+barbarzy%C5%84ska,594,465,699573053,9376,0 +10427,0642,443,588,698659980,9811,0 +10428,.achim.,522,402,6936607,10311,0 +10429,0000016%23,424,570,849089881,10487,0 +10430,Tylko+grzeczni+ch%C5%82opcy,515,508,699785935,12154,0 +10431,FAKE+OR+OFF,453,408,698231772,9868,0 +10432,105,544,407,849064752,10311,0 +10433,D0003,438,568,8841266,9900,0 +10434,x+013.+Rio+Lobo,398,497,698290577,10209,0 +10435,0037+grosik,437,417,3909522,10495,0 +10436,021.,601,516,8900955,8919,0 +10437,Wioska+dysio923,595,512,699851345,9978,0 +10438,Monetki,474,404,699098531,9620,0 +10439,0079,550,618,698659980,10160,0 +10440,Wioska+barbarzy%C5%84ska,578,432,699368887,7429,0 +10441,%5B0492%5D,593,545,848985692,9125,0 +10442,-+078+-,537,596,849018239,10000,0 +10443,Gravity,413,449,698962117,9505,0 +10444,z+039,556,584,699342219,10478,0 +10445,022,588,452,699722599,10362,0 +10446,EKG+.%3A%3A.+KOM+003+Jajca,482,600,33900,10365,0 +10447,%23069,487,603,699605333,10728,0 +10448,041,570,424,849063849,10279,0 +10449,.1.Waszyngton,546,594,698215322,9980,0 +10450,A10,599,466,849093742,10019,0 +10451,035+Lithgow,605,501,8337151,10654,0 +10452,EKG+.%3A%3A.+KOM+001+Li%C5%BC%C4%85+%C5%81,482,602,33900,10495,0 +10453,Szlachcic,401,477,6258092,10083,0 +10454,0003,546,603,698659980,10160,0 +10455,-+075+-,539,594,849018239,10000,0 +10456,.achim.,541,395,6936607,10311,0 +10457,Wioska6%2C%2C,517,599,8369778,9886,0 +10458,Gravity,417,459,698962117,9763,0 +10460,047,548,410,699761749,10495,0 +10461,Teby_39,483,598,2585846,9638,0 +10462,KONFA+TO+MARKA%2C+NARKA,402,465,698152377,11949,0 +10463,Wioska+barbarzy%C5%84ska,424,432,699660539,8750,0 +10464,Tesa,600,520,698845189,10019,0 +10465,025,568,421,849063849,9785,0 +10466,Szlachcic,472,402,698388578,10237,0 +10467,Wioska+barbarzy%C5%84ska,576,434,699368887,8336,0 +10468,PYZA+001+Bubel,576,571,33900,6745,5 +10469,049o,442,584,699099811,10725,0 +10470,Sector+3,515,604,8199417,10041,0 +10471,Suppi,425,443,699856962,10237,0 +10472,x+014.+15%3A10+do+Yumy,398,500,698290577,9158,0 +10473,%5BA%5D_%5B030%5D+Dejv.oldplyr,402,482,699380607,10495,0 +10474,%230102,513,602,1536231,10495,0 +10476,KONFA+TO+MARKA%2C+NARKA,407,462,698152377,10311,0 +10477,BBB,583,438,1006847,7039,0 +10479,021,595,459,849088515,10019,0 +10480,Jaaa,567,579,698635863,9677,0 +10481,Skyview+Hall,527,601,8199417,10559,0 +10482,%230103,512,603,1536231,10495,0 +10483,129,550,411,849064752,10311,0 +10484,Wioska+barbarzy%C5%84ska,406,462,699523631,11119,0 +10485,Wioska+barbarzy%C5%84ska,402,466,699523631,7117,0 +10486,Wioska+barbarzy%C5%84ska,442,416,849027025,9744,0 +10487,-+062+-,538,597,849018239,10000,0 +10488,-%5B001%5D-+Mount+Everest,554,482,849092827,9934,0 +10489,010.+Yang,408,543,699856962,9825,0 +10490,Szlachcic,475,401,698388578,10237,0 +10491,054,488,398,698739350,9902,0 +10492,ADEN,573,425,698588535,9148,0 +10493,A.006,408,584,849088243,9460,0 +10494,Sparta_17,494,601,2585846,9638,0 +10495,Okradzionow,432,423,699660539,10008,0 +10496,%23051,523,590,849001572,10136,0 +10497,%230101,512,602,1536231,10495,0 +10499,NOT%3F,408,550,9236866,10042,0 +10500,-033-,452,408,9291984,10479,0 +10501,0035,616,514,6510480,10325,0 +10502,070,600,473,699573053,10559,0 +10503,%7E001.,498,606,7139820,10495,0 +10504,Szlachcic,465,406,698388578,8781,0 +10505,028+Raz+dwa+trzy,594,454,698829590,8165,0 +10506,Suppi,428,425,699856962,9886,5 +10507,z+030,554,587,699342219,10708,0 +10508,FAKE+OR+OFF,458,406,698231772,9822,0 +10509,030.+A%C5%82a,408,544,699856962,9572,0 +10510,023.,602,522,8900955,9824,0 +10511,KR%C3%93L+PAPI+WIELKI,598,536,698191218,10000,0 +10512,022+a+to+peszek,596,465,8459255,10203,0 +10513,004,498,382,698739350,9761,0 +10514,Gravity,407,455,698962117,9618,0 +10515,Jaaa,587,557,698635863,10559,8 +10516,086+MEHEHE,495,600,6116940,10019,0 +10517,KONFA+TO+MARKA%2C+NARKA,401,482,698152377,10311,0 +10518,Wioska+ferrekin,447,590,3969110,3153,0 +10519,005,596,542,6160655,10296,0 +10520,B+002.,458,594,849028088,10237,3 +10521,z+037,557,587,699342219,10495,0 +10522,Sparta_22,499,604,2585846,9638,0 +10523,Szlachcic,452,412,698388578,10237,0 +10524,Szlachcic,469,404,698388578,10237,0 +10525,NOT,417,438,9236866,10042,0 +10526,Wioska+barbarzy%C5%84ska,481,599,7976264,9992,0 +10527,002,570,575,699316421,9730,0 +10528,017,551,409,7271812,10495,0 +10529,020,548,411,699761749,10495,1 +10530,1.Cleveland,541,595,698215322,9951,0 +10531,017,403,539,699425709,9873,0 +10532,KONFA+TO+MARKA%2C+NARKA,406,461,698152377,11954,0 +10533,West+01,597,476,698702991,10162,0 +10534,KR%C3%93L+PAPI+WIELKI,568,577,698191218,10000,0 +10535,0.Lincoln,528,596,698215322,9954,0 +10536,Wioska+barbarzy%C5%84ska,385,456,3698627,9979,0 +10537,034,564,420,699761749,9269,0 +10538,Gattacka,596,489,699298370,9430,0 +10539,%5BA%5D_%5B015%5D+Dejv.oldplyr,396,490,699380607,10290,0 +10540,017.,597,542,8900955,5220,0 +10541,009,507,602,7976264,10178,0 +10542,KIELBA+053,457,591,699342219,10365,0 +10543,KONFA+TO+MARKA%2C+NARKA,401,466,698152377,12154,0 +10544,0048,596,537,698416970,10160,0 +10545,007+997+ten+numer+to+k%C5%82opoty,590,455,698829590,9535,0 +10546,.achim.,525,403,6936607,10311,0 +10547,Lord+Arsey+KING,601,527,848956513,10285,0 +10548,KR%C3%93L+PAPI+WIELKI,574,573,698191218,10000,0 +10549,014,407,539,699425709,9873,0 +10550,NOT%3F,406,543,9236866,9888,0 +10551,KONFA+TO+MARKA%2C+NARKA,400,472,698152377,12154,0 +10552,007+Zadupie,601,520,8323711,10495,0 +10553,kulik+002,399,512,698290577,8435,0 +10554,Wioska+0022,398,514,1804724,10089,0 +10555,060,546,408,699761749,10495,0 +10556,Jaaa,605,432,698635863,9534,0 +10557,A036,466,405,8740199,9589,0 +10559,NOT,419,434,9236866,10042,0 +10560,.%3A093%3A.+Chillout,506,394,848934935,8149,0 +10561,NOT,417,437,9236866,10042,0 +10562,Peverlo,415,562,699443920,10104,0 +10563,KR%C3%93L+PAPI+WIELKI,563,584,698191218,10000,0 +10564,00091,523,600,848915531,11130,0 +10565,018,404,539,699425709,9873,0 +10566,Jaaa,564,581,698635863,10222,0 +10567,036,596,469,8459255,10671,0 +10568,Gravity,406,455,698962117,9488,0 +10569,.achim.,528,400,6936607,10311,0 +10570,026,601,507,699573053,10495,0 +10571,Wioska,384,550,849084005,10178,0 +10572,001.+Marzyciel+Shrek,481,503,698290577,5764,0 +10573,Winter+is+coming,463,597,699364813,9976,0 +10574,Mako+Reactor+1+-+Connecting+Pass,520,621,8199417,10559,0 +10575,051+Bu%C5%82eczka+v6,537,404,699491076,9868,0 +10576,143+Wioska+barbarzy%C5%84ska,392,555,699382126,5011,0 +10577,007+Salt+Like+City,425,432,9291984,10495,0 +10578,Suppi,426,426,699856962,9809,0 +10579,Jehu_Kingdom_31_,600,468,8785314,9993,0 +10580,Wioska+barbarzy%C5%84ska,398,517,698290577,5175,0 +10581,Ho%C5%82opole,485,400,699433558,9976,0 +10582,NOT,420,434,9236866,10042,0 +10583,047o,446,586,699099811,11558,0 +10584,%28015%29,404,532,699846892,10143,2 +10585,mammm,562,580,6818593,9835,0 +10586,Wioska+M.02,400,516,1804724,8777,0 +10587,023+Barba,603,514,8323711,10495,0 +10588,Gravity,407,452,698962117,9485,0 +10589,Jaaa,585,554,698635863,10495,8 +10590,A037,478,398,8740199,10221,0 +10591,South+K45,571,425,699146580,5774,0 +10592,024,594,462,849088515,9750,0 +10593,.achim.,517,404,6936607,10311,0 +10594,.achim.,520,397,6936607,10311,0 +10595,%23035,532,600,849001572,10141,0 +10596,Gravity,408,452,698962117,9504,0 +10597,%7E041.,504,604,7139820,10495,0 +10598,1.Springfield,540,593,698215322,8883,0 +10599,-034-,452,407,9291984,10479,0 +10600,s181eo03,398,452,393668,9886,0 +10601,018.,600,534,6520732,9835,0 +10602,Z02,513,603,2293376,10252,0 +10603,Teatr,427,571,7249451,10223,0 +10604,011,569,421,849063849,8926,0 +10605,Kentin+ufam+Tobie,398,486,699783765,10000,0 +10606,007,599,465,8459255,10362,0 +10607,Ho%C5%82opole,491,396,699433558,9835,0 +10608,%23011,525,601,849001572,9737,0 +10609,002+Tutaj+Szlachta+Pracuje+%21%21%21,577,571,699524362,10211,0 +10610,.achim.,519,399,6936607,10311,0 +10611,Jehu_Kingdom_03_,600,475,8785314,9993,0 +10612,1.Little+Rock,531,597,698215322,9953,0 +10613,028.+Oj+Nie+%C5%81adnie,406,545,699856962,9611,0 +10614,Majin+Buu+007,433,575,699054373,9761,0 +10615,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,518,621,8980651,10019,0 +10616,NOT,420,439,9236866,10063,9 +10617,1.Manhattan,554,588,698215322,9994,0 +10618,Jaaa,566,582,698635863,10239,0 +10619,0000007%23,430,573,849089881,10342,4 +10620,Szlachcic,475,399,698388578,10237,0 +10621,Lord+Arsey+KING,600,527,848956513,10285,0 +10622,KR%C3%93L+PAPI+WIELKI,576,572,698191218,9899,0 +10623,NOT%3F,409,548,9236866,10042,0 +10624,1.San+Jose,548,591,698215322,9891,0 +10625,Tesa+3,603,519,698845189,10008,0 +10626,Winter+is+coming,452,593,699364813,8055,0 +10627,NOT,416,436,9236866,10042,0 +10628,%7E006.,502,604,7139820,10495,0 +10629,016,557,415,699761749,10495,0 +10630,001+Hyjal,599,518,698845189,10019,0 +10631,%5B030%5D+Te+bikujin,602,515,848985692,9977,0 +10632,Twierdza+003,423,568,9167250,9178,1 +10634,0040+Wioska,436,416,3909522,10348,0 +10635,0205,400,513,7085510,5607,0 +10636,barba,468,596,699364813,10311,0 +10637,046,548,408,699761749,10495,8 +10638,%5B139%5D+North,577,471,848985692,10311,0 +10639,x+Wioska+barbarzy%C5%84ska,397,496,698290577,8390,0 +10640,1.Charlotte,549,593,698215322,9983,0 +10641,150,550,413,849064752,10311,0 +10642,026+Rurki+z+kremem,593,454,698829590,9533,0 +10643,046+-+B03,435,582,849028088,10812,0 +10644,023,590,450,699722599,10235,0 +10645,KIELBA+043,463,586,699342219,10495,0 +10646,Kentin+ufam+Tobie,387,445,699783765,10000,0 +10647,Szlachcic,470,402,698388578,10237,0 +10648,00350+kole%C5%BCka,429,418,3909522,10083,0 +10649,Gravity,407,456,698962117,9544,0 +10650,NOT%3F,407,547,9236866,10042,2 +10651,Jaaa,588,553,698635863,10479,0 +10652,Wioska+barbarzy%C5%84ska,398,515,1804724,10168,0 +10653,KIELBA+107,451,593,699342219,7781,0 +10654,Jaaa,586,560,698635863,10478,5 +10656,Gravity,410,449,698962117,9486,0 +10658,Farma,402,476,698807570,12154,0 +10659,Jehu_Kingdom_02_,603,482,8785314,9993,0 +10660,Wioska+0009,397,521,1804724,10187,0 +10661,Jaaa,589,552,698635863,10478,4 +10662,038+OZDR,466,622,699336777,10083,0 +10663,Wioska+Susu,423,429,699660539,9868,0 +10664,.achim.,524,391,6936607,10365,0 +10665,KONFA+TO+MARKA%2C+NARKA,388,471,698152377,10311,0 +10666,KONFA+TO+MARKA%2C+NARKA,402,463,698152377,10300,0 +10667,008,407,585,9264752,10495,0 +10668,mehehe+1,452,591,699364813,8965,0 +10669,1.Austin,541,594,698215322,9953,0 +10670,South+K35,553,392,699146580,9873,0 +10671,B+003.,439,584,849028088,9891,0 +10672,.achim.,539,403,6936607,11137,0 +10673,Essa+005,569,575,848987051,9879,3 +10674,036,565,418,699761749,9928,0 +10675,%C5%9Amieci+Wyw%C3%B3z+5,464,596,699364813,10083,0 +10676,003+Wioska+Best+Wiedzmin,603,515,6409472,4624,0 +10677,Jaaa,569,580,698635863,10213,0 +10678,KONFA+TO+MARKA%2C+NARKA,399,469,698152377,12154,0 +10679,012,583,561,699524362,5397,0 +10680,010,477,598,699364813,10444,0 +10681,004,586,442,699722599,10478,0 +10682,KONFA+TO+MARKA%2C+NARKA,403,467,698152377,12154,0 +10683,005+Bonuuus,605,487,699272633,10490,0 +10684,NOT,419,439,9236866,10004,0 +10685,Gravity,412,449,698962117,9494,0 +10686,0039+MzM,579,567,698416970,10019,0 +10687,1.Boston,547,594,698215322,9978,0 +10688,BBB,574,425,1006847,8185,0 +10689,.%3A105%3A.+Niangmen,502,395,848934935,9899,0 +10690,Zasiedmiog%C3%B3rogr%C3%B3d,536,429,699433558,9835,0 +10691,.achim.,519,400,6936607,10311,0 +10692,Napewno+to+nie+jest+off,492,397,848912265,10495,0 +10693,KIELBA+113,448,590,699342219,8756,0 +10694,Wioska+M02,399,519,1804724,9299,0 +10695,KIELBA+081,456,596,699342219,10365,0 +10696,0220,517,603,698659980,10019,0 +10697,Piajok,415,561,699443920,9761,0 +10698,0626,445,589,698659980,10019,0 +10699,.achim.,521,401,6936607,10311,0 +10700,%2A019%2A,605,495,698670524,8501,0 +10701,Yesterday,589,567,848926293,9741,0 +10702,KIELBA+079,457,595,699342219,10273,0 +10703,.achim.,525,399,6936607,10311,0 +10704,Gattacka,539,392,699298370,9821,0 +10705,.achim.,514,398,6936607,10311,0 +10706,023+Buragh,599,477,8337151,10083,0 +10707,N07,587,448,699368887,9951,0 +10708,NOT%3F,407,549,9236866,10042,0 +10709,007+-+T_002%2A%2A%2A,439,586,225023,10495,0 +10710,Gravity,406,458,698962117,9712,0 +10711,%5B372%5D+Chor%C4%85giewka+na+wietrze,585,437,848985692,10357,3 +10712,SsSs,395,501,1536625,9369,0 +10713,Sabaody,486,397,699433558,10311,0 +10715,Teby_37,484,600,2585846,9638,0 +10716,Wioska,395,508,849084005,10178,0 +10717,Wioska+barbarzy%C5%84ska,399,510,698290577,10055,0 +10718,z+041,556,587,699342219,10495,1 +10719,xx+002.+WHL,395,499,698290577,10273,0 +10720,061,547,408,699761749,10495,0 +10721,040+Massachusetts,604,482,7092442,10495,0 +10722,Radek,400,468,699523631,10495,0 +10723,Czarna+woda,419,567,698769107,9533,0 +10724,011,586,447,699722599,10479,0 +10725,0050+Wioska,434,423,3909522,10078,0 +10726,0631,447,591,698659980,10019,0 +10727,Wioska+barbarzy%C5%84ska,410,555,698971484,10008,0 +10728,.achim.,522,397,6936607,10452,0 +10729,Essa+008,572,575,848987051,9885,0 +10730,EKG+M21,482,604,33900,10248,0 +10731,0221,520,601,698659980,10019,0 +10732,005,589,447,699722599,10346,0 +10733,007,588,447,699722599,10346,0 +10734,Taran,545,387,699170684,9379,0 +10735,Wioska+0011,401,531,1804724,10205,0 +10736,Osada+M.,400,522,1804724,10210,6 +10737,.+Chivas,424,550,8779575,8726,0 +10738,0013,503,492,698599365,9976,0 +10739,052+Bu%C5%82eczka+v7,532,400,699491076,10001,0 +10740,%7E087.,491,605,7139820,10495,0 +10741,%23025,471,619,699605333,10503,0 +10742,SsSs,394,499,1536625,6156,0 +10743,Szlachcic,469,399,698388578,10237,0 +10744,Wioska+barbarzy%C5%84ska,574,428,699368887,6515,0 +10745,D006,508,395,7758085,9925,0 +10746,-+026+-,547,595,849018239,10000,0 +10747,Gravity,405,460,698962117,9579,0 +10748,008,582,565,699524362,7544,0 +10749,051+Michigan,602,481,7092442,7569,0 +10750,NOT,417,436,9236866,10042,0 +10751,Postit,417,563,699443920,9847,0 +10752,007.+Hordafylke,423,432,699660539,10008,0 +10753,026,595,464,849088515,9824,0 +10754,K44+x019,442,413,698364331,6773,0 +10755,Osobliwie,426,558,699443920,3543,0 +10756,AAA,510,399,849093422,9761,0 +10758,Jaaa,568,575,698635863,10495,0 +10759,Twierdza+004,422,571,849084740,7992,0 +10760,Wioska+0012,400,517,1804724,9871,0 +10761,031,575,429,849063849,9851,0 +10762,Wioska+0024,397,515,1804724,10237,0 +10763,016,580,566,699524362,6924,0 +10764,Twierdza+009,423,566,9167250,6756,0 +10765,Tesa+1,604,519,698845189,10019,0 +10766,019.,598,532,6520732,9761,0 +10767,a+mo%C5%BCe+off+%3F+%3A%29,579,570,698768565,9978,9 +10768,A012,461,403,8740199,10237,0 +10769,%2A%2A%2A-035-,453,407,9291984,10083,0 +10770,005,565,579,699316421,10273,0 +10771,018,590,449,699722599,10252,0 +10772,081+PRZECIWKO+KR%C3%93LESTWU+PAKT,411,558,699382126,10478,0 +10773,033,584,443,699722599,4570,0 +10774,Wioska+barbarzy%C5%84ska,423,430,699660539,8281,0 +10775,Knowhere,395,511,699723284,9689,0 +10776,Szlachcic,505,474,699098531,9701,0 +10777,.achim.,529,399,6936607,10311,0 +10778,z+038,558,587,699342219,10221,0 +10780,071,601,471,699573053,10495,0 +10781,006+Attitude+Adjustment,581,568,699316421,9861,0 +10782,028,577,427,849063849,9885,0 +10783,x+barbarzy%C5%84ska+007,397,510,698290577,8485,0 +10784,sentyment,400,529,1804724,10140,0 +10785,.%3A135%3A.+Niangmen,508,398,848934935,9835,0 +10786,1.Dallas,551,593,698215322,9953,0 +10787,%23036,530,598,849001572,8436,0 +10788,KIELBA+055,446,578,699342219,10495,0 +10789,004.,491,602,7976264,10025,0 +10790,018+Hawaii,602,483,7092442,10495,0 +10791,033+Greene,602,526,699272880,9558,6 +10792,NOT%3F,410,547,9236866,10042,0 +10793,Brat447,395,513,699262350,9203,0 +10794,016+Georgia,604,484,7092442,10495,0 +10795,053+Bu%C5%82eczka+v8,538,402,699491076,10001,0 +10796,%23024,485,600,849001572,9761,0 +10798,Teby_40,481,598,2585846,9638,0 +10799,P.029,543,559,873575,10268,0 +10800,%23%23%23%23%23,562,599,699342219,10495,0 +10801,005,553,405,699761749,10495,0 +10802,Wioska+barbarzy%C5%84ska,395,517,698290577,6203,0 +10803,.%3A111%3A.+Niangmen,504,395,848934935,5156,0 +10804,Kentin+ufam+Tobie,401,481,699783765,10000,0 +10806,065,546,409,699761749,10495,0 +10807,-+014+-,538,599,849018239,10000,0 +10808,001,605,517,8323711,10495,0 +10809,Sparta_18,496,602,2585846,9638,0 +10810,Szlachcic,462,403,698388578,10237,0 +10811,.achim.,519,398,6936607,10311,1 +10813,KR%C3%93L+PAPI+WIELKI,575,575,698191218,10000,0 +10814,020,596,455,849088515,10019,0 +10815,z+040,557,585,699342219,10257,0 +10816,020,556,392,849063849,10636,0 +10817,%230092,512,601,1536231,10495,0 +10818,%5BA%5D_%5B018%5D+Dejv.oldplyr,395,487,699380607,10495,0 +10819,NOT%3F,408,553,9236866,9899,0 +10820,xxx,514,456,698239813,10495,0 +10821,017,580,567,699524362,6922,0 +10822,D%C4%85browa+G%C3%B3rnicza,431,423,699660539,9883,0 +10823,A029,450,412,8740199,10221,0 +10824,wojtas0114,477,601,699364813,9835,0 +10825,.achim.,523,399,6936607,10311,0 +10826,Jaaa,567,582,698635863,10219,0 +10827,Wioska+barbarzy%C5%84ska,403,463,699523631,10481,0 +10828,013+Gundabad,597,540,8013349,9371,0 +10829,KIELBA+110,448,592,699342219,5676,0 +10830,023,571,426,849063849,8607,0 +10831,007+Dakota,598,484,7092442,10252,0 +10832,ADEN,581,433,698588535,9895,0 +10834,019,578,567,699524362,6852,0 +10836,034,596,467,8459255,10146,0 +10837,DOM+13+%2A,560,413,849064614,9398,0 +10838,018,581,569,699524362,10211,0 +10839,Szlachcic,398,474,6258092,10160,0 +10840,0024,603,509,6510480,10023,0 +10841,FAKE+OR+OFF,456,405,698231772,9853,0 +10842,A+014.,436,582,849028088,9994,0 +10843,029,593,449,699722599,10495,0 +10844,Sparta_15,496,600,2585846,9638,0 +10845,039,606,506,699573053,10495,0 +10846,Gonzzollo+1,403,535,849030226,12154,0 +10847,C.001,439,599,849088243,10237,0 +10848,0019,606,503,699429153,10301,0 +10849,E005,515,396,7758085,9925,0 +10850,5.+Northumbria,425,430,699660539,10173,0 +10851,.%3A103%3A.+Niangmen,503,395,848934935,9899,0 +10852,029+Pierwsze+wybory+Konfederacji,594,455,698829590,2372,0 +10853,018.+Baba+Jaga,510,580,699703642,9367,0 +10854,KIELBA+082,457,597,699342219,10256,0 +10855,%7E032.,476,602,7139820,10495,0 +10856,054+Bu%C5%82eczka+v9,537,403,699491076,10001,0 +10857,045+Bu%C5%82eczka,535,403,699491076,10001,0 +10858,002,605,519,8323711,11550,0 +10859,Lord+Arsey+KING,599,524,848956513,10285,0 +10860,Wioska+barbarzy%C5%84ska,411,445,698884287,10285,0 +10861,Kentin+ufam+Tobie,399,485,699783765,10000,0 +10862,.%3A043%3A.+Chillout,523,445,848934935,9953,0 +10863,-+064+-,536,599,849018239,10000,0 +10864,1.Filadelfia,555,591,698215322,10018,0 +10865,025,596,462,849088515,10019,0 +10866,-+303+-,533,596,849018239,10000,0 +10867,-+117+-,549,589,849018239,10000,0 +10868,046,566,394,849063849,10595,0 +10869,CALL+991,553,616,699784536,10311,0 +10870,Wioska+barbarzy%C5%84ska,403,533,849030226,10628,0 +10871,NOT%3F,407,550,9236866,10042,0 +10872,Pjana,415,564,699443920,9761,0 +10873,016.+Ogar,412,551,698971484,10008,0 +10874,1.Los+Angeles,544,596,698215322,9956,0 +10875,CALL+911,554,606,699784536,10311,0 +10876,NOT%3F,406,546,9236866,10042,0 +10877,%7E077.,494,606,7139820,10495,0 +10878,022+Bullridge,601,475,8337151,10495,0 +10879,001,570,579,699316421,10273,0 +10880,%5BA%5D_%5B004%5D+Dejv.oldplyr,399,483,699380607,10495,0 +10881,021+Illinois,605,489,7092442,10495,3 +10882,Horyzont+zdarze%C5%84,541,614,7581876,9835,0 +10883,034+Hedarth,606,504,8337151,10654,0 +10884,006,582,567,699524362,10211,0 +10885,Jaaa,589,556,698635863,10495,0 +10886,0031+Wioska,433,418,3909522,10146,0 +10887,Sparta_65,482,575,2585846,9638,0 +10888,Wioska+barbarzy%C5%84ska,513,604,7976264,9981,0 +10889,Napewno+to+nie+jest+off,496,394,848912265,10495,0 +10890,Knowhere,396,510,699723284,10452,0 +10891,Wioska+0018,398,529,1804724,9660,0 +10893,A.181.02,599,533,2999957,10242,0 +10894,Wioska+barbarzy%C5%84ska,580,430,699368887,8396,0 +10895,Osada,496,455,699098531,9835,0 +10896,KR%C3%93L+PAPI+WIELKI,586,561,698191218,10000,0 +10897,Witam+w+wietnamie,415,550,698971484,10008,0 +10898,NOT,416,438,9236866,10042,0 +10899,00431+pawel84,430,422,3909522,8829,0 +10900,048+Viljandi,606,514,699272880,10146,0 +10901,Kentin+ufam+Tobie,397,488,699783765,10000,5 +10902,%23032,523,603,849001572,9756,0 +10903,020+Aroughs,602,473,8337151,10030,0 +10904,033,557,396,849063849,10971,0 +10905,040,571,422,849063849,9339,0 +10906,054,554,413,699761749,10495,0 +10907,Kentin+ufam+Tobie,397,484,699783765,10000,0 +10908,Wioska+barbarzy%C5%84ska,460,404,8740199,7167,0 +10909,A015,463,400,8740199,10217,0 +10910,.achim.,526,399,6936607,10311,0 +10911,KONFA+TO+MARKA%2C+NARKA,404,460,698152377,10311,0 +10912,Jaaa,588,558,698635863,10559,8 +10913,kto+ananasowy+pod+wod%C4%85+ma+dom,575,511,699628084,9797,0 +10914,0222,523,601,698659980,10019,0 +10916,A030,451,408,8740199,10096,0 +10917,.achim.,542,395,6936607,10311,0 +10918,Teatr,424,572,7249451,10295,0 +10919,0042+Wioska,431,421,3909522,9981,0 +10920,makelovenotwar4,384,462,698807570,10068,0 +10921,046o,445,586,699099811,11742,0 +10922,moneciarnia,414,438,698884287,10285,0 +10923,Wioska+barbarzy%C5%84ska,565,584,6818593,9835,0 +10924,NOT%3F,410,556,9236866,10063,0 +10925,%7E028.,476,599,7139820,10495,0 +10926,003,487,602,7976264,10232,5 +10927,NOT,419,437,9236866,10042,0 +10928,0043+Wioska,431,422,3909522,10091,0 +10929,EKG+.%3A%3A.+Siwyy8848%2F5,498,619,33900,10495,0 +10930,Plum,416,562,699443920,9825,0 +10931,149,550,408,849064752,10311,0 +10932,KIELBA+111,452,594,699342219,10229,0 +10933,002+To+nie+by%C5%82+najlepszy+pomys%C5%82,572,422,698829590,10000,6 +10934,z+036,555,587,699342219,10230,0 +10935,Winter+is+coming,505,603,699364813,10178,0 +10936,Witam+w+wietnamie,417,552,698971484,10008,0 +10937,.achim.,527,399,6936607,10290,0 +10938,FAKE+OR+OFF,460,405,698231772,9820,0 +10939,-+074+-,553,592,849018239,10000,0 +10940,Horyzont+zdarze%C5%84,531,540,7581876,9898,0 +10941,009,582,564,699524362,10211,0 +10942,.%3A115%3A.+Niangmen,504,394,848934935,9835,0 +10943,002.+Gloria+Victis,440,605,848886973,10636,0 +10944,Wioska+barbarzy%C5%84ska,578,428,699368887,9224,0 +10945,027,569,423,849063849,9701,0 +10946,K44+x030,464,401,698364331,9150,0 +10947,Wioska+Meok,543,613,2808172,10471,0 +10948,2.+Wessex,425,428,699660539,10100,0 +10949,Knowhere,394,492,699723284,10064,0 +10950,EXA,599,531,848967710,10252,0 +10951,Dobranoc,419,542,699856962,9055,0 +10952,Wioska+0021,401,525,1804724,9623,0 +10953,Knowhere,397,493,699723284,10282,0 +10954,008,474,601,699364813,9835,0 +10955,144,566,422,849064752,10311,0 +10956,Mzm44,604,524,7142659,10362,0 +10957,NOT,420,429,9236866,10042,0 +10958,%7E027.,475,599,7139820,10495,0 +10959,0057,602,512,6510480,9860,0 +10960,EKG+.%3A%3A.+freaky97%2F1,487,605,33900,10495,0 +10961,Omen+1,399,523,1804724,10104,0 +10962,Wioska+barbarzy%C5%84ska,398,530,849030226,10957,0 +10963,%5B012%5D+Vous+tuer,601,524,848985692,10292,8 +10965,Jehu_Kingdom_07_,596,460,8785314,9993,0 +10967,003,428,584,9167250,9263,0 +10968,B+005.,440,583,849028088,10221,0 +10969,0025,607,511,6510480,9916,0 +10970,A019,463,402,8740199,10237,0 +10971,Garnizon_01,512,605,2585846,9638,0 +10972,s011,409,555,698971484,10008,0 +10973,KONFA+TO+MARKA%2C+NARKA,402,468,698152377,12154,0 +10975,019+Kurczaki+i+Ziemniaki,593,455,698829590,10003,0 +10976,Gattacka,597,424,699298370,9835,0 +10977,Wioska+454,593,544,477415,10495,0 +10978,KIELBA+120,435,573,699342219,9718,0 +10979,106+Suchy+Karaluch,409,552,699382126,10476,0 +10980,0044+Wioska,438,416,3909522,10401,0 +10981,Suppi,411,547,699856962,9878,0 +10982,0041+Wioska,432,420,3909522,10130,0 +10983,Wioska,604,516,698845189,8618,0 +10984,%7E084.,475,602,7139820,10495,0 +10985,A031,450,408,8740199,10218,0 +10986,Jaaa,572,576,698635863,10476,0 +10987,024.,600,522,8900955,10072,0 +10989,x+Wioska+barbarzy%C5%84ska,398,495,698290577,7494,0 +10990,B+001.,439,585,849028088,10495,0 +10991,A04,600,465,849093742,10019,0 +10992,Jaaa,576,570,698635863,10484,0 +10993,s010,411,554,698971484,10008,0 +10994,KONFA+TO+MARKA%2C+NARKA,404,458,698152377,10311,0 +10995,NOT,418,433,9236866,10042,0 +10996,EXA,603,529,848967710,10252,0 +10997,Suppi,425,424,699856962,9977,0 +10998,Gravity,406,454,698962117,9486,0 +10999,Szlachcic,396,477,6258092,10083,0 +11000,094,569,419,849064752,10311,0 +11001,KR%C3%93L+PAPI+WIELKI,584,566,698191218,10000,0 +11002,NOT%3F,410,554,9236866,10054,0 +11003,D004,511,395,7758085,9925,0 +11004,Wioska+%2Awyrwszat,461,599,699364813,9496,0 +11005,.achim.,517,397,6936607,10311,0 +11006,K44+x018,442,414,698364331,7262,0 +11007,SSJ+006,488,596,699054373,9761,0 +11008,.%3A046%3A.Chillout,502,393,848934935,10495,0 +11009,EKG+M12,486,604,33900,10231,0 +11010,BBB,560,415,1006847,10861,0 +11011,Wioska,606,516,698845189,9330,0 +11012,019.+Mithril+Mountain,435,583,849028088,9860,0 +11013,KR%C3%93L+PAPI+WIELKI,573,571,698191218,10000,0 +11014,A002,467,401,8740199,11073,0 +11015,BBB,564,419,1006847,6920,0 +11016,Wioska+barbarzy%C5%84ska,516,606,606407,10311,0 +11017,NOT%3F,408,552,9236866,10042,0 +11018,Wioska+barbarzy%C5%84ska,607,491,699573053,8504,0 +11019,NOT%21%21,470,600,9236866,10495,0 +11020,Motywacja+%2A,396,523,1804724,7510,0 +11021,NOT%21%21,467,598,9236866,10042,0 +11022,gdzie+napisane+%C5%BCe+mo%C5%BCna+farmi%C4%87%3F,464,600,699364813,9835,0 +11023,0025,603,492,699429153,9966,0 +11024,%2A038%2A,604,498,698670524,3196,0 +11025,Pataszon,414,558,699443920,9761,0 +11027,.achim.,517,395,6936607,10311,0 +11028,Gravity,405,453,698962117,9488,0 +11029,Wioska+barbarzy%C5%84ska,400,533,849030226,10971,0 +11030,0051,461,475,848913037,8847,0 +11031,NOT%3F,405,544,9236866,5535,0 +11032,022,405,549,699425709,8903,0 +11033,Tesa+2,601,519,698845189,10019,0 +11034,011,596,459,849088515,9821,0 +11035,%C5%9Amieszki,531,617,3454753,9057,0 +11036,019.+Kalf,585,562,699373599,10030,0 +11037,KR%C3%93L+PAPI+WIELKI,572,579,698191218,10000,0 +11038,Twierdza+006,421,569,849084740,9046,0 +11039,0223,522,602,698659980,10495,1 +11040,KONFA+TO+MARKA%2C+NARKA,398,480,698152377,10311,0 +11041,020,556,411,7271812,10495,0 +11042,037,500,375,698739350,9761,0 +11043,.achim.,529,398,6936607,10311,0 +11044,-+107+-,534,599,849018239,10000,0 +11045,105+RUSZYMY+NA+ZNAK+%28BACH%29,409,553,699382126,10241,0 +11047,A11+Maroni,599,460,849093742,10019,0 +11048,0543,474,555,698659980,12154,0 +11049,001.+Kathare,564,599,873575,10444,0 +11050,Suppi,426,422,699856962,9978,0 +11051,Ho%C5%82opole,490,396,699433558,10311,0 +11053,057+Wioska+barbarzy%C5%84ska,539,404,699491076,10001,0 +11054,Jaaa,590,558,698635863,10495,0 +11055,024,402,544,699425709,9701,0 +11056,013,599,541,6160655,10223,0 +11057,051,566,416,699761749,9778,0 +11058,D003,512,396,7758085,9925,0 +11059,002,490,602,7976264,10380,0 +11060,Wioska+barbarzy%C5%84ska,580,433,699368887,9725,0 +11061,007,425,577,9167250,8602,0 +11062,Napewno+to+nie+jest+off,499,397,848912265,6832,0 +11063,FAKE+OR+OFF,457,406,698231772,9826,0 +11064,027+Dalgon,607,505,8337151,10362,0 +11065,029,397,495,699510259,10284,1 +11066,Szlachcic+%21%21%21,504,470,699098531,9637,0 +11067,Rotrigo,402,534,849030226,10503,0 +11068,Tank+004.+%2ANW%2A,398,498,698290577,9959,0 +11069,Piek%C5%82o+to+inni,486,395,848956765,10019,0 +11070,Wioska+barbarzy%C5%84ska,515,603,7976264,9994,0 +11071,%5BA%5D_%5B014%5D+Dejv.oldplyr,395,489,699380607,10444,0 +11072,Wioska+barbarzy%C5%84ska,402,531,849030226,9393,0 +11073,004,410,445,698884287,10285,0 +11074,Sector+4,513,605,8199417,10559,2 +11075,One,585,561,848926293,9267,0 +11076,%5B377%5D+Chor%C4%85giewka+na+wietrze,583,436,848985692,10397,0 +11077,072,607,508,699573053,10495,0 +11078,0015,603,497,699429153,10301,0 +11079,.achim.,531,399,6936607,10311,0 +11080,040+Charpo,627,507,8323711,10559,0 +11081,%5B373%5D+Chor%C4%85giewka+na+wietrze,586,436,848985692,10411,0 +11082,Vasperland_009,624,503,7047342,10478,0 +11083,Bucks+x+Kamiiiru,457,598,848955783,10635,0 +11085,0224,519,603,698659980,10019,0 +11086,Formouth+Garrison,527,604,8199417,10224,0 +11087,Gattacka,605,503,699298370,10160,8 +11088,Ethan+Hunt+03,601,476,698702991,9860,0 +11089,.achim.,518,398,6936607,10311,0 +11090,007+Ogr,401,541,699856962,10143,0 +11091,.achim.,530,399,6936607,10259,0 +11092,s%C5%82odziute%C5%84ka+07,599,535,8013349,3752,0 +11093,070,413,524,699851427,10042,0 +11094,%2B44+74+Saint+Bonnet+de+Mure,447,474,698361257,9669,0 +11095,048o,443,586,699099811,10178,0 +11096,Wioska+453,595,549,477415,10495,0 +11097,0038,450,593,699280514,7557,0 +11098,.achim.,529,397,6936607,10311,0 +11099,Gravity,403,458,698962117,9550,0 +11100,Knowhere,397,513,699723284,3418,0 +11101,A15,600,464,849093742,10019,0 +11102,Szlachcic,454,403,698388578,10237,8 +11103,KONFA+TO+MARKA%2C+NARKA,403,464,698152377,12154,0 +11104,%5B037%5D,594,543,848985692,10170,0 +11105,.achim.,519,397,6936607,10311,0 +11106,032+Doru+Araeba,605,502,8337151,11074,0 +11107,Gomora,509,545,848915531,12154,0 +11108,Ho%C5%82opole,490,393,699433558,10311,0 +11109,%23001,545,600,849001572,9740,0 +11110,Wioska+barbarzy%C5%84ska,402,457,699523631,10160,0 +11111,004,573,579,699316421,10273,1 +11112,0039+Wioska,437,419,3909522,10222,0 +11113,002,409,445,698884287,10285,0 +11114,mamm,569,577,6818593,9835,0 +11115,1.San+Diego,550,591,698215322,9965,0 +11116,%5BA%5D_%5B010%5D+Dejv.oldplyr,397,486,699380607,10495,0 +11117,KONFA+TO+MARKA%2C+NARKA,398,479,698152377,10311,0 +11118,Szlachcic,458,402,698388578,10237,0 +11119,Knowhere,394,494,699723284,10064,0 +11120,Wioska+Gilbert,564,582,6818593,9835,0 +11121,.achim.,516,394,6936607,10311,0 +11122,005,404,540,699425709,9873,0 +11123,D002,511,397,7758085,9925,0 +11124,NOT%3F,407,543,9236866,10042,0 +11125,Piek%C5%82o+to+inni,484,394,848956765,10083,0 +11126,004+Gusto,401,539,699856962,10143,0 +11127,Wioska+barbarzy%C5%84ska,411,444,698884287,10285,0 +11129,026,564,417,7271812,10495,0 +11130,012,405,548,699425709,9873,0 +11132,006,585,441,699722599,10345,0 +11133,%7E002.,495,606,7139820,10495,8 +11134,0077,446,408,699431255,9976,0 +11135,.achim.,525,400,6936607,10311,0 +11136,A032,449,407,8740199,10229,0 +11137,PYZA+003+Gajder,580,570,33900,10046,0 +11138,007,582,566,699524362,5778,0 +11139,Piek%C5%82o+to+inni,484,393,848956765,10019,0 +11140,0225,520,603,698659980,10083,0 +11141,00331+Wioska,431,418,3909522,9096,0 +11142,Bagdad,475,396,8847546,9835,0 +11143,010,553,412,7271812,10495,3 +11144,-002-+Psst+psst+psst,456,406,9291984,10495,0 +11145,Szlachcic,478,397,698388578,10237,0 +11146,139+s004,406,555,699382126,10838,0 +11147,140+s009,407,555,699382126,10728,0 +11149,Horyzont+zdarze%C5%84,539,596,7581876,10019,6 +11150,-+125+-,550,593,849018239,9623,0 +11151,VN+Dante+Zogriatis,475,379,699883079,9626,0 +11152,0062,606,513,6510480,10346,0 +11153,B19,499,401,849093422,9761,0 +11154,Jaaa,569,581,698635863,10194,0 +11155,Piek%C5%82o+to+inni,486,393,848956765,10019,0 +11156,Tesa+6,603,520,698845189,10019,0 +11157,%23037,482,619,699605333,10393,0 +11158,.%3A133%3A.+Niangmen,507,397,848934935,9899,0 +11159,%5BA%5D_%5B001%5D+Dejv.oldplyr,394,482,699380607,10495,0 +11160,015,592,447,699722599,10149,2 +11161,FAKE+OR+OFF,459,402,698231772,9825,0 +11162,002,584,567,698169715,3437,0 +11163,058+Wioska+%C5%81asiak17,540,404,699491076,10001,0 +11164,0628,444,591,698659980,10019,0 +11165,037,561,401,699761749,10495,0 +11166,023.+Frontier,436,586,849028088,7337,0 +11167,003.+Sussex,424,427,699660539,9924,0 +11168,-+024+-,542,598,849018239,10000,0 +11169,040,542,401,7271812,10183,0 +11170,KONFA+TO+MARKA%2C+NARKA,387,466,698152377,10311,0 +11171,Elevator+Hall,532,603,8199417,8700,0 +11172,0201,451,609,698659980,10495,0 +11173,BBB,584,440,1006847,8101,0 +11175,009.+Sztucznie,475,603,7976264,9790,0 +11176,Szlachcic,459,405,698388578,10237,0 +11177,Kentin+ufam+Tobie,396,481,699783765,10000,0 +11179,A07,599,462,849093742,10019,0 +11180,-+067+-,549,594,849018239,10000,0 +11181,012,505,606,7976264,9963,0 +11182,055+Bu%C5%82eczka+vv10,537,400,699491076,9580,0 +11183,%7E042.,481,606,7139820,10495,0 +11184,K34+x023,467,397,698364331,10495,2 +11185,%5B401%5DChwila+prawdy,578,431,848985692,7204,0 +11186,KONFA+TO+MARKA%2C+NARKA,404,457,698152377,10375,0 +11187,011,606,511,699573053,10495,0 +11188,017,606,499,699573053,10495,0 +11189,Wioska+barbarzy%C5%84ska,510,606,7976264,9965,0 +11190,D005,509,396,7758085,9925,0 +11191,0000002%24,434,579,849089881,10475,8 +11192,North+Blue,485,396,699433558,10311,0 +11193,Knowhere,396,513,699723284,10452,0 +11195,xhav,396,473,698807570,10057,0 +11196,0640,444,592,698659980,10019,0 +11197,Szlachcic,474,400,698388578,10237,0 +11198,EKG+.%3A%3A.+freaky97%2F4,485,606,33900,10495,0 +11199,.%3A102%3A.+Niangmen,504,393,848934935,9899,7 +11200,yogi,529,604,2808172,10019,0 +11201,A05,506,393,849093422,9761,3 +11202,kathare+xx,519,564,873575,10545,0 +11203,K44+x011,451,405,698364331,9194,0 +11204,D023,509,397,7758085,9861,0 +11205,019,394,515,699510259,9742,0 +11206,KONFA+TO+MARKA%2C+NARKA,401,464,698152377,12154,3 +11208,NOT%3F,403,545,9236866,10042,0 +11209,104+POCZUJE+KA%C5%BBDY+WACK,410,552,699382126,10542,0 +11210,A03,600,463,849093742,10019,0 +11212,barba,464,601,698971484,10008,0 +11213,Knowhere,392,503,699723284,10452,1 +11214,0015,472,603,33900,9372,0 +11215,Gravity,407,451,698962117,9488,0 +11216,ADEN,563,416,698588535,10898,0 +11217,003,587,442,699722599,10362,0 +11218,NOT%3F,405,551,9236866,10042,0 +11219,Ho%C5%82opole,498,394,699433558,9835,0 +11220,%5B374%5D+Chor%C4%85giewka+na+wietrze,587,438,848985692,10411,0 +11221,A08,599,461,849093742,10019,0 +11222,024,608,503,699573053,10495,0 +11224,Piek%C5%82o+to+inni,485,393,848956765,10019,0 +11225,006+Otwieraj+ryyyyjjjj,604,487,699272633,10476,0 +11226,030,565,419,699761749,10495,0 +11227,016+Denver,430,420,9291984,10476,2 +11228,0082,441,411,699431255,9585,0 +11229,%23009,537,597,849001572,9740,0 +11230,024,593,446,699722599,10048,0 +11231,B.006,415,567,849088243,10495,0 +11232,Horyzont+zdarze%C5%84,535,603,7581876,9835,0 +11233,016,557,413,7271812,10495,0 +11234,013,596,457,849088515,10019,0 +11235,Knowhere,395,488,699723284,10282,0 +11236,039+Naantali,600,530,699272880,9811,0 +11237,%23037,532,601,849001572,5481,0 +11238,Wioska+krulu+zloty,399,534,849030226,10475,0 +11239,PYRLANDIA+027,564,585,33900,10063,0 +11240,Wioska,394,506,849084005,10178,0 +11241,0627,443,589,698659980,10019,0 +11242,Wioska+barbarzy%C5%84ska,395,518,698290577,5974,0 +11243,008+Bonus+wyyymi%C4%99k%C5%82,603,481,699272633,10476,0 +11244,Z01,514,603,2293376,10252,0 +11245,003.+Bjorn,585,567,699373599,10252,2 +11246,004,552,406,7271812,10495,0 +11247,Suppi,425,423,699856962,9811,0 +11248,016,591,450,699722599,9976,0 +11249,KONFA+TO+MARKA%2C+NARKA,402,464,698152377,10291,0 +11250,Wioska+barbarzy%C5%84ska,469,398,699191449,5709,0 +11251,FAKE+OR+OFF,460,400,698231772,9834,0 +11252,013,552,408,7271812,10495,0 +11253,Szlachcic,471,398,698388578,10237,0 +11254,%5BA%5D_%5B020%5D+Dejv.oldplyr,395,490,699380607,10495,0 +11255,NOT%3F,408,549,9236866,10042,0 +11256,%3D002%3D+By%C5%82a+akcja,606,553,3781794,10145,0 +11257,.achim.,530,398,6936607,10311,0 +11258,Coruscant+3,500,605,699383121,9797,0 +11259,008,608,499,699573053,10495,0 +11260,%21Wioska+520,560,467,477415,10495,0 +11261,KR%C3%93L+PAPI+WIELKI,573,580,698191218,10000,0 +11262,.%3A008%3A.+Chillout,499,392,848934935,10268,0 +11263,Bucks+x+Kamiiiru,456,599,848955783,10971,0 +11264,%7E029.,476,601,7139820,10495,0 +11266,014,589,440,699722599,10342,0 +11267,0086,441,412,699431255,9525,0 +11268,073,607,516,699373599,6251,0 +11269,0270,527,602,698659980,10019,0 +11270,%5B039%5D,594,544,848985692,10161,0 +11271,Szlachcic,477,399,698388578,10237,9 +11272,Hojo+s+Laboratory+Sublevel,521,619,8199417,10160,0 +11273,151,573,421,849064752,10311,0 +11274,Z14,548,583,873575,10120,0 +11275,-+055+-,539,598,849018239,10000,0 +11276,%2A021%2A,606,508,698670524,8448,0 +11277,005+Wioska+barbarzy%C5%84ska,608,510,6409472,4232,0 +11278,004,515,605,8925624,7978,0 +11279,0045+Wioska,436,417,3909522,9867,0 +11280,ccc,607,524,7047342,10484,0 +11281,Wioska+barbarzy%C5%84ska,579,430,699368887,7242,0 +11282,KONFA+TO+MARKA%2C+NARKA,398,465,698152377,12154,0 +11283,00191+Wioska,437,412,3909522,10072,0 +11284,Tank+xx+Niesamowity+je%C5%BAdziec,396,512,698290577,10016,0 +11285,-+110+-,540,601,849018239,9154,0 +11286,Wioska+barbarzy%C5%84ska,408,442,698884287,10285,0 +11287,Sector+4+Slums+Area,528,602,8199417,10141,0 +11288,027,604,479,699573053,10495,0 +11289,%7E007.,503,605,7139820,10495,0 +11290,K44+x032,463,403,698364331,9006,0 +11291,0635,446,593,698659980,10019,0 +11292,KONFA+TO+MARKA%2C+NARKA,397,478,698152377,10311,0 +11293,Osada,500,446,699098531,10300,0 +11294,Drum+Island,486,396,699433558,10068,0 +11295,004,564,413,849064752,10311,4 +11296,Wioska+dabkof,604,520,698845189,10019,0 +11297,Jaaa,588,555,698635863,10481,0 +11298,moze+teraz,559,607,699567608,9622,0 +11299,Kiedy%C5%9B+Wielki+Wojownik,393,455,8632462,9835,0 +11300,016,595,455,849088515,10019,0 +11301,Gryfios+001,616,538,698666810,10495,0 +11302,Tesa+4,603,518,698845189,10019,0 +11303,181,592,527,699851345,9452,0 +11304,010,583,563,699524362,10211,0 +11305,Piek%C5%82o+to+inni,480,378,848956765,10160,0 +11306,0028+Wioska,434,413,3909522,10072,0 +11307,019+-+Edzna%2A%2A%2A,437,588,225023,10495,0 +11309,Wioska+barbarzy%C5%84ska,396,529,849030226,10551,0 +11310,%5BA%5D_%5B005%5D+Dejv.oldplyr,396,485,699380607,10495,0 +11311,NOT,416,434,9236866,10042,0 +11312,004,397,491,699510259,9761,0 +11313,NOT,416,431,9236866,10042,0 +11314,PYRLANDIA+025+pod+ce,560,588,33900,10311,0 +11315,barba,464,599,698971484,10008,0 +11316,Jaaa,571,558,698635863,10476,0 +11317,003+mucharadza,604,532,9238175,10488,0 +11318,.%3A113%3A.+Niangmen,508,396,848934935,9835,0 +11319,019.+Gloria+Victis,440,611,848886973,10461,0 +11320,.%3A130%3A.+Niangmen,509,394,848934935,9899,0 +11321,.%3A104%3A.+Niangmen,501,395,848934935,9899,0 +11322,008,438,587,849028088,10495,0 +11323,%2A006%2A,606,502,698670524,8468,0 +11324,006,599,543,6160655,10569,0 +11325,Knowhere,378,493,699723284,10452,0 +11326,x+R017,393,514,698290577,9400,0 +11327,Okonek,399,577,698769107,9365,0 +11328,Wioska+0023,394,521,1804724,9923,0 +11329,Jaaa,573,541,698635863,10479,0 +11330,Wioska+2,547,458,698881022,3554,0 +11331,Wioska+barbarzy%C5%84ska,564,584,6818593,9835,0 +11332,Knowhere,394,493,699723284,10064,0 +11333,Twierdza,421,570,699429335,9234,0 +11334,003,395,496,699510259,9761,0 +11335,Brat447,392,496,699262350,10952,0 +11336,FAKE+OR+OFF,456,401,698231772,9830,0 +11337,0032+Wioska+S,433,417,3909522,9905,0 +11338,%2ATam02%2A,525,604,606407,10311,0 +11339,015+Florida,606,478,7092442,10495,0 +11340,0638,447,594,698659980,10019,0 +11341,EKG+.%3A%3A.+freaky97%2F5,486,607,33900,10495,0 +11342,Kentin+ufam+Tobie,440,412,699783765,10000,0 +11343,%5BA%5D_%5B040%5D+Dejv.oldplyr,410,467,699380607,10495,0 +11344,%7E010.,495,605,7139820,10495,0 +11345,%7E016.,503,606,7139820,10495,0 +11346,A033,448,407,8740199,10226,0 +11347,bandzior,529,603,606407,10294,6 +11348,038,549,405,1424656,5437,0 +11349,%5B376%5D+Chor%C4%85giewka+na+wietrze%2B%2B,583,437,848985692,10411,0 +11350,BBB,554,438,1006847,6841,0 +11352,%7E063.,474,602,7139820,10027,0 +11353,003,412,445,698884287,10285,0 +11354,0041+MzM,594,554,698416970,9821,0 +11355,A009,459,400,8740199,10237,0 +11356,.%3A101%3A.+Niangmen,507,395,848934935,9899,0 +11357,Kentin+ufam+Tobie,394,481,699783765,10000,0 +11358,.%3A045%3A.+Chillout,503,393,848934935,10495,0 +11359,NOT%3F,407,548,9236866,10042,0 +11360,004+Melon944,606,519,8323711,10495,0 +11361,Wioska,392,510,849084005,10178,0 +11362,0226,521,603,698659980,10019,0 +11363,NOT%21%21,467,599,9236866,10042,0 +11364,K34+-+%5B001%5D+Before+Land,458,381,699088769,10259,0 +11365,Jaaa,590,560,698635863,10479,0 +11366,Bocianikson014,606,507,7528491,9950,0 +11367,0059,605,511,6510480,10133,0 +11368,003+Kartagina,604,530,8013349,9771,0 +11369,Sparta_20,494,604,2585846,9638,0 +11370,Wioska+barbarzy%C5%84ska,408,447,698884287,10285,0 +11371,.achim.,534,398,6936607,10311,0 +11372,-+079+-,553,591,849018239,10000,0 +11373,%5B352%5D+Chor%C4%85giewka+na+wietrze,591,441,848985692,10287,0 +11374,.%3A047%3A.+Chillout,505,393,848934935,10495,0 +11375,A045,462,400,8740199,7833,0 +11376,Wioska+barbarzy%C5%84ska,394,508,698290577,5222,0 +11377,KIELBA+095,449,595,699342219,7079,0 +11378,0005+niespodzianka,579,425,8459255,10336,0 +11379,035,545,401,7271812,10495,0 +11380,014,597,464,849088515,10019,0 +11381,Wioska+barbarzy%C5%84ska,569,584,6818593,9835,0 +11382,KONFA+TO+MARKA%2C+NARKA,397,470,698152377,12154,8 +11383,031,566,415,699761749,10007,0 +11384,009.+Lunden,424,426,699660539,10090,0 +11385,006+barbarzy%C5%84ska,603,528,9238175,10281,0 +11386,%7E004.,494,605,7139820,10495,0 +11387,%2ATytan+zerknij+w+notk%C4%99,586,434,848985692,10052,0 +11388,189,575,404,849064752,10311,0 +11389,NOT%3F,402,548,9236866,9138,0 +11390,.%3A106%3A.+Niangmen,503,392,848934935,9899,0 +11391,Brat447,394,512,699262350,4937,4 +11392,009,479,605,8925624,3656,0 +11393,Piek%C5%82o+to+inni,484,395,848956765,10160,0 +11394,EKG+.%3A%3A.+KOM+002+Sobie,478,602,33900,10273,0 +11396,-+059+-,548,594,849018239,10000,0 +11397,003a+o,430,577,9167250,6716,0 +11398,HOTEL+3,566,414,849064614,9761,0 +11399,KIELBA+078,458,595,699342219,10365,0 +11400,053,605,474,699573053,10495,0 +11401,Myk+i+do+kieszonki,379,509,9319058,9799,0 +11402,SsSs,393,500,1536625,10019,0 +11403,NOT,413,435,9236866,10042,0 +11404,025,594,446,699722599,10219,0 +11405,ZrolowanaSt%C3%B3wa,554,448,699368887,10434,0 +11406,KONFA+TO+MARKA%2C+NARKA,397,471,698152377,12154,0 +11407,Wioska+barbarzy%C5%84ska,399,533,849030226,10952,0 +11408,s%C5%82odziute%C5%84ka+05,604,534,8013349,6133,0 +11409,Sk%C5%82ad,524,605,606407,10295,0 +11411,Wioska+barbarzy%C5%84ska,399,531,849030226,10495,0 +11412,Wioska+Nya.,572,441,699368887,8561,0 +11413,Marienburg+0,527,477,699355601,9782,0 +11414,0060,604,511,6510480,10003,0 +11415,%21Sk%C5%82ad,510,607,606407,10303,0 +11416,Velen,479,374,699658023,9745,0 +11417,KR%C3%93L+PAPI+WIELKI,577,578,698191218,9899,0 +11418,Lord+Arsey+KING,577,591,848956513,10285,0 +11419,Bocianikson017,597,547,7528491,9820,0 +11420,006+-+T_001%2A%2A%2A,440,586,225023,10495,0 +11421,BBB,565,413,1006847,9855,0 +11422,Wioska+barbarzy%C5%84ska,531,603,606407,10452,0 +11423,.achim.,524,396,6936607,10311,0 +11424,KONFA+TO+MARKA%2C+NARKA,398,462,698152377,11954,0 +11425,EKG+M08+green3,483,606,33900,10055,0 +11426,Napewno+to+nie+jest+off,494,391,848912265,9636,0 +11427,Szlachcic,397,476,6258092,10160,0 +11428,028,594,450,699722599,10495,0 +11429,Brat447,392,513,699262350,10479,0 +11431,Wioska,392,504,849084005,10178,0 +11432,002,382,458,3698627,9974,0 +11433,x+Wioska+barbarzy%C5%84ska,395,507,698290577,8907,0 +11434,Ethan+Hunt+02,604,477,698702991,9766,0 +11435,Knowhere,397,514,699723284,10452,0 +11436,Szlachcic,458,403,698388578,10237,0 +11437,021,579,569,699524362,8607,0 +11438,%5B049%5D,601,533,848985692,7168,0 +11439,-+040+-,550,596,849018239,10000,0 +11440,.achim.,530,397,6936607,10311,0 +11441,0641,446,590,698659980,10019,0 +11442,Piek%C5%82o+to+inni,481,393,848956765,10160,0 +11443,%5BA%5D_%5B013%5D+Dejv.oldplyr,394,488,699380607,10444,0 +11444,Lord+Arsey+KING,579,591,848956513,10285,0 +11445,082+TO+NIE+%C5%81ADNIE,412,557,699382126,9985,0 +11446,025,402,543,699425709,9873,0 +11447,Szlachcic,468,399,698388578,8464,0 +11448,BoOmBaa..,443,394,6169408,9452,0 +11449,%7E014.,501,607,7139820,10495,0 +11450,Oxenfurt,493,392,699433558,10311,0 +11451,wola+4,480,397,849093155,7331,0 +11452,%5B0491%5D,593,548,848985692,9372,0 +11453,K44+x002,444,408,698364331,10495,5 +11454,.achim.,537,398,6936607,10311,0 +11456,002,510,609,8925624,9197,0 +11457,SsSs,394,497,1536625,9299,0 +11458,053,569,415,849063849,10595,0 +11459,Poison,592,558,848926293,9463,0 +11460,047,557,409,7271812,3024,0 +11461,Ponello,411,562,699443920,9761,0 +11462,.achim.,521,393,6936607,10311,0 +11463,Village,515,607,849094067,12154,0 +11464,A19,603,467,849093742,10019,0 +11465,NOT%21%21,472,601,9236866,10042,0 +11466,Bucks+x+Kamiiiru,456,598,848955783,10971,0 +11467,GARNIZON,513,606,2585846,9638,9 +11468,ADEN,588,436,698588535,9809,0 +11469,Enklawa,395,525,1804724,10248,0 +11470,Jaaa,568,582,698635863,9982,6 +11471,Brat447,391,502,699262350,10711,0 +11472,s%C5%82odziute%C5%84ka+12,599,538,8013349,6205,0 +11473,KR%C3%93L+PAPI+WIELKI,571,583,698191218,9949,1 +11474,041.,587,566,699373599,10068,0 +11475,017,597,455,849088515,8904,0 +11476,003.+Strzyga,509,588,699703642,10295,0 +11477,Gravity,404,455,698962117,9505,0 +11478,BBB,563,411,1006847,10791,0 +11479,%7E026.,488,609,7139820,10495,0 +11480,0000018,438,584,849089881,10063,0 +11482,%23040,485,608,849001572,9835,0 +11483,0005,607,495,699429153,10323,3 +11484,KONFA+TO+MARKA%2C+NARKA,400,462,698152377,10375,0 +11485,motywacja+00000001,395,523,1804724,10164,0 +11486,-+065+-,553,593,849018239,10000,0 +11487,K34+x010,466,399,698364331,8850,0 +11488,020+Idaho,608,491,7092442,10495,0 +11489,A014,449,404,8740199,10220,0 +11490,A0003,387,476,8841266,10362,0 +11491,.achim.,518,405,6936607,10311,0 +11492,NOT,415,437,9236866,10042,0 +11493,NOT%3F,407,553,9236866,10042,0 +11494,Galdin+Quay,528,604,8199417,10083,0 +11496,0083,442,410,699431255,9835,0 +11497,Gattacka,573,498,699298370,10501,0 +11498,120,546,402,849064752,10311,0 +11500,Ho%C5%82opole,494,393,699433558,10311,0 +11501,Brat447,389,502,699262350,10495,0 +11502,021,552,407,7271812,10495,0 +11503,Napewno+to+nie+jest+off,494,392,848912265,10495,0 +11504,4.+Strathclyde,423,426,699660539,10986,0 +11505,Wioska+Podusia+%3A%29,396,519,1804724,7272,0 +11506,A12,598,462,849093742,10019,0 +11507,028,538,401,1424656,9995,0 +11508,0078,442,407,699431255,9835,0 +11509,Z+barba+007,429,580,225023,10106,0 +11510,Piek%C5%82o+to+inni,482,395,848956765,10083,0 +11511,020,400,540,699856962,9664,0 +11512,.achim.,517,393,6936607,10178,0 +11513,Wioska+Dawidssssss,510,383,699368887,10237,0 +11514,0011,605,493,699429153,10301,0 +11515,S012,409,554,698971484,10008,7 +11516,0036+skarbnica,435,418,3909522,10004,0 +11517,Suppi,424,423,699856962,9806,0 +11518,Ho%C5%82opole,491,394,699433558,10311,0 +11519,A13,597,460,849093742,10019,0 +11520,Moje+Fantazje,397,518,1804724,10770,9 +11521,Horyzont+zdarze%C5%84,539,612,7581876,10019,0 +11522,015,599,455,849088515,10019,0 +11523,Wioska+barbarzy%C5%84ska,531,604,606407,10292,0 +11524,KONFA+TO+MARKA%2C+NARKA,396,469,698152377,12154,0 +11525,Nope,396,479,6258092,10362,0 +11526,Pobozowisko,419,592,699513260,10960,0 +11527,K44+x025,442,412,698364331,7109,0 +11529,KONFA+TO+MARKA%2C+NARKA,400,464,698152377,10311,6 +11530,0145,460,617,698659980,10083,0 +11531,Kentin+ufam+Tobie,397,479,699783765,10000,0 +11532,PRO8L3M,395,516,7491093,10365,0 +11533,KONFA+TO+MARKA%2C+NARKA,400,460,698152377,10295,0 +11534,001,490,601,7976264,10390,0 +11535,Kiedy%C5%9B+Wielki+Wojownik,401,456,8632462,9747,0 +11536,Kiedy%C5%9B+Wielki+Wojownik,397,468,8632462,9976,0 +11537,Wioska,391,504,849084005,10178,0 +11538,008,554,406,7271812,10495,0 +11539,Niespodzianka,608,504,849095240,10168,0 +11540,0000011,429,581,849089881,9425,0 +11541,Lord+Arsey+KING,500,474,848956513,10285,0 +11542,Kiedy%C5%9B+Wielki+Wojownik,400,457,8632462,9733,0 +11543,%23016,486,608,849001572,8255,0 +11544,Szlachcic,393,475,6258092,10160,0 +11545,094+MEHEHE,499,614,6116940,9922,0 +11546,Pf+Konfederacja,490,498,848915730,9539,0 +11547,-Kr%C3%B3lestwo+Szefa-,552,596,6818593,9835,0 +11548,023.xxx,479,604,8612358,10063,0 +11549,Gravity,402,454,698962117,9484,0 +11550,Szlachcic,397,477,6258092,10252,0 +11551,Ptokas,412,559,699443920,9761,0 +11552,Kentin+ufam+Tobie,392,482,699783765,10000,0 +11553,030,587,565,699373599,10068,0 +11554,Piek%C5%82o+to+inni,485,392,848956765,10160,0 +11555,Wioska+barbarzy%C5%84ska,395,520,849030226,9441,0 +11556,Another+Brick+In+The+Wall,591,555,848926293,7298,0 +11557,013.+Hvitserk,587,562,699373599,10030,0 +11558,Piek%C5%82o+to+inni,483,395,848956765,2285,0 +11559,%2A313%2A,518,608,606407,10292,0 +11560,027+California,607,490,7092442,10495,0 +11561,Coruscant+6,498,609,699383121,9139,0 +11562,%23041,487,608,849001572,9875,0 +11563,Wioska+barbarzy%C5%84ska,436,588,849028088,9118,0 +11564,Winter+is+coming,458,597,699364813,9835,0 +11565,Bagdad,476,395,8847546,10654,0 +11566,a+mo%C5%BCe+off+%3F+%3A%29,580,575,698768565,9568,9 +11567,019+Yazuac,604,473,8337151,10362,0 +11568,Napewno+to+nie+jest+off,492,391,848912265,9784,0 +11569,KR%C3%93L+PAPI+WIELKI,600,541,698191218,10000,0 +11570,EKG+M09+green4,483,607,33900,10083,0 +11571,A.181.01,601,530,2999957,10242,0 +11572,Sk%C5%82ad,525,605,606407,10294,0 +11573,%5B239%5DTasuj+Tasuj+prze%C5%82%C3%B3%C5%BC+Tasuj,598,452,848985692,10049,0 +11574,Wioska+barbarzy%C5%84ska,578,430,699368887,7233,0 +11575,xhav,395,472,698807570,10068,0 +11576,057+-+Hexiu,418,567,225023,10495,0 +11577,E001,518,395,7758085,5789,4 +11578,002+-+Zaczynamy,425,576,225023,10495,0 +11579,062+OZDR,476,621,699336777,10336,0 +11580,111,547,401,849064752,10311,0 +11581,047+%C5%9Awie%C5%BCa+Bu%C5%82eczka,533,399,699491076,4739,4 +11582,A02,599,464,849093742,10019,0 +11583,014.+Halfdan,586,563,699373599,10030,0 +11584,Village,517,606,849094067,12154,0 +11585,027.+Corduba,604,465,849091866,9026,0 +11586,Wioska+barbarzy%C5%84ska,562,586,6818593,9835,0 +11587,087+JESTE%C5%9A+Z+ULICY,409,557,699382126,10481,0 +11589,%5B371%5D+Chor%C4%85giewka+na+wietrze,585,431,848985692,10411,0 +11590,Wioska+barbarzy%C5%84ska,395,524,849030226,10955,0 +11591,080+-+Twierdza+003,422,573,225023,9453,0 +11592,dla+Ethan+Hunt,604,489,699429153,10296,0 +11593,.achim.,523,400,6936607,10311,0 +11594,0106,465,397,699431255,9500,0 +11595,001,509,607,8925624,9967,0 +11596,025,609,495,699573053,10495,0 +11598,008.+Sigi,589,563,699373599,10030,0 +11599,Wioska+0019,400,530,1804724,10164,0 +11600,Szlachcic+%21%21%21,492,466,699098531,9778,0 +11601,-+068+-,535,599,849018239,10000,0 +11602,.achim.,523,393,6936607,5024,0 +11603,NOT,419,428,9236866,10042,0 +11604,NOT,419,427,9236866,10042,0 +11605,08.+Reorganizacja.+%28Maczeta.%29,417,567,698769107,9756,5 +11606,Wioska+barbarzy%C5%84ska,397,530,849030226,9521,0 +11607,.achim.,521,398,6936607,10311,0 +11608,Knowhere,390,493,699723284,10374,0 +11609,Piek%C5%82o+to+inni,488,391,848956765,10160,0 +11610,Suppi,426,423,699856962,10084,2 +11611,%23030,467,600,849001572,7592,0 +11612,%23030+A,444,595,9037756,9835,0 +11613,D010,508,391,7758085,9925,0 +11614,KR%C3%93L+PAPI+WIELKI,570,581,698191218,10000,0 +11615,039,531,600,699189792,9745,0 +11616,FAKE+OR+OFF,441,400,698231772,9840,0 +11617,Kiedy%C5%9B+Wielki+Wojownik,399,457,8632462,9976,0 +11618,020,610,506,849006412,10271,0 +11619,A038,479,397,8740199,10358,0 +11620,Knowhere,393,492,699723284,10000,0 +11621,135+Wioska+barbarzy%C5%84ska,404,555,699382126,10478,0 +11622,009.+Helga,587,564,699373599,10030,0 +11623,0009,609,490,477415,10495,0 +11624,Knowhere,391,494,699723284,10631,0 +11625,.achim.,516,393,6936607,10311,0 +11626,Pjon,415,565,699443920,9761,0 +11627,001,588,441,699722599,10495,0 +11628,Bagdad,475,395,8847546,10068,0 +11629,077,607,507,699573053,9974,0 +11630,019,590,444,699722599,10252,0 +11631,Gravity,406,452,698962117,9486,0 +11632,%5B230%5D+WEST,600,455,848985692,10048,0 +11633,Bunkier+002,591,447,698350371,10495,0 +11634,Wioska4%2C%2C%2C,482,606,8369778,6813,0 +11635,0003+K55+and987+OZDR.,505,553,3613413,9844,0 +11636,x+R001,396,516,698290577,9630,0 +11637,Brat447,392,495,699262350,10957,0 +11638,Crown+City,529,605,8199417,10083,0 +11639,Wioska,394,509,849084005,10178,0 +11640,008+Drewno,606,517,8323711,10495,1 +11641,0007.+A+-+Nadindel,606,528,7125212,10285,0 +11642,024,551,407,849064752,10311,0 +11644,Knowhere,395,510,699723284,10452,0 +11645,Lord+Arsey+KING,570,584,848956513,10285,8 +11646,002+Alaska,608,490,7092442,10252,0 +11647,%23005,539,601,849001572,9741,0 +11648,%23026,535,601,849001572,6684,0 +11649,0001,555,406,7271812,10495,0 +11650,191,431,581,9179700,2516,0 +11651,054,607,478,699573053,10311,0 +11652,Winter+is+coming,462,599,699364813,9888,0 +11653,028,607,489,699573053,10495,0 +11654,West+05,604,470,698702991,9830,0 +11655,0077,603,523,699432672,10495,0 +11656,Lord+Arsey+KING,575,579,848956513,10285,4 +11657,195,575,419,849064752,5426,0 +11658,.achim.,517,394,6936607,10311,0 +11659,055,610,500,699573053,10158,0 +11660,Wioska+barbarzy%C5%84ska,396,528,849030226,9491,0 +11661,00361+Wioska,435,417,3909522,6333,0 +11662,020.+Kwenthrith,587,561,699373599,10030,0 +11663,Napewno+to+nie+jest+off,489,408,848912265,10068,0 +11664,NOT,417,435,9236866,10042,0 +11665,Jehu_Kingdom_32_,602,468,8785314,9993,0 +11666,%2A016%2A,605,509,698670524,8501,0 +11667,029,609,487,699573053,10495,0 +11668,04+Flary,620,507,699377151,9142,0 +11669,0016,598,507,699429153,10426,0 +11670,ADEN,576,424,698588535,10072,0 +11671,A021,465,399,8740199,10247,0 +11672,-+023+-,541,601,849018239,10000,0 +11673,k45+015,574,433,699368887,10093,0 +11674,A007,459,401,8740199,10237,0 +11675,Shimotsuki+Village,494,390,699433558,10311,0 +11676,Z+barba+005,428,579,225023,10495,0 +11677,064,585,591,698999105,10311,0 +11678,Wioska+barbarzy%C5%84ska,593,557,8742874,9724,0 +11679,A035,495,416,699299123,10042,0 +11680,0634,447,595,698659980,10160,0 +11681,18120,436,589,849028088,6817,0 +11682,SsSs,394,498,1536625,8288,0 +11683,010+To+dawaj+lufe,603,479,699272633,10475,0 +11685,005+Od+teraz+bilet+do+Bydgoszczy,503,390,7758085,9861,0 +11686,K44+-+%5B001%5D+Before+Land,466,400,699088769,10259,4 +11687,037+Petro180+-+1.,608,515,8323711,10495,0 +11688,Knowhere,391,503,699723284,10452,0 +11689,053,579,405,849064752,10311,0 +11690,KONFA+TO+MARKA%2C+NARKA,396,468,698152377,12154,0 +11691,x+Osada+koczownik%C3%B3w,390,508,698290577,9293,6 +11692,1.Denver,554,591,698215322,9994,0 +11693,Gravity,408,449,698962117,9508,0 +11694,0624,442,593,698659980,10019,0 +11695,.achim.,520,398,6936607,10311,0 +11696,Gravity,405,450,698962117,9486,0 +11697,%5B008%5D+...,393,521,849030226,10951,9 +11698,00311+Wioska,434,418,3909522,9283,0 +11699,086,610,507,699573053,10300,0 +11701,Osada+koczownik%C3%B3w,412,442,698884287,10285,1 +11702,A004,446,404,8740199,10237,0 +11703,.Huntsville,470,495,699781762,10495,0 +11704,-+022+-,540,602,849018239,10000,0 +11705,Teby_02,504,610,2585846,9638,0 +11706,%5BA%5D_%5B012%5D+Dejv.oldplyr,394,487,699380607,10444,0 +11707,010,574,423,849063849,10636,0 +11708,056,610,508,699573053,10401,0 +11709,%5B322%5D+Chor%C4%85giewka+na+wietrze,590,437,848985692,10394,0 +11710,Bagdad,471,396,8847546,9835,0 +11711,078,610,511,699573053,10495,0 +11712,044+White+Horse,466,467,1497168,9761,0 +11713,.achim.,514,392,6936607,10311,0 +11714,E002,515,392,7758085,6119,4 +11715,Gravity,404,454,698962117,9497,0 +11716,%5B371%5D+Chor%C4%85giewka+na+wietrze+D,588,433,848985692,10411,0 +11717,PYRLANDIA+033+%24,556,595,33900,10273,2 +11718,PYRLANDIA+023+s,562,589,33900,10311,0 +11719,%2A308%2A,512,609,606407,10297,0 +11720,.achim.,515,393,6936607,10311,0 +11721,%7E013.,499,605,7139820,10495,0 +11722,0629,440,593,698659980,10019,0 +11723,NOT,416,430,9236866,10042,0 +11724,kto+ananasowy+pod+wod%C4%85+ma+dom,581,573,699628084,9797,0 +11725,Naboo+4,486,610,699383121,9038,0 +11726,%2A027%2A,610,498,698670524,5861,0 +11727,119,564,412,849064752,10311,0 +11728,Riders+On+The+Storm,589,561,848926293,9581,0 +11729,ADEN,575,424,698588535,8663,0 +11730,KONFA+TO+MARKA%2C+NARKA,397,467,698152377,12154,0 +11731,037+Konfideracja,597,447,698829590,8655,0 +11733,010,597,457,849088515,10019,0 +11734,Crestholm+Channels,530,603,8199417,10019,0 +11735,007,596,547,6160655,10367,0 +11736,017,607,474,8459255,9963,0 +11737,TEBY,504,607,2585846,7060,4 +11738,007,477,607,33900,10254,0 +11739,BBB,567,416,1006847,9976,7 +11740,aaa,477,605,698971484,10008,0 +11741,0010,605,492,699429153,10301,0 +11742,Wioska+barbarzy%C5%84ska,395,532,849030226,10479,0 +11743,A14,599,459,849093742,9656,0 +11744,029,594,451,849088515,10019,0 +11745,Gravity,403,453,698962117,9489,0 +11746,Szlachcic,393,484,6258092,10362,3 +11747,%2A5502%2Aa+Dzie%C5%84+jak+codzie%C5%84,596,556,7973893,10287,0 +11748,Wioska+barbarzy%C5%84ska,397,533,849030226,10822,0 +11749,Winter+is+coming,460,601,699364813,9737,0 +11750,Konfederacja,470,384,848915730,9682,0 +11751,KONFA+TO+MARKA%2C+NARKA,402,460,698152377,10311,0 +11752,%5B320%5D+Chor%C4%85giewka+na+wietrze,589,434,848985692,10397,0 +11753,KONFA+TO+MARKA%2C+NARKA,396,465,698152377,12154,0 +11754,Suppi,427,422,699856962,9975,0 +11755,011+Pola+Pelennoru,604,526,8013349,9043,0 +11756,%5B023%5D+Tappaa+sinut,602,533,848985692,10242,0 +11757,%7E012.,501,609,7139820,10495,0 +11758,PYZA+006+brif123456789,581,574,33900,10125,0 +11759,%2ATam03%2A,523,605,606407,10290,0 +11760,.%3A090%3A.JuanPabloII,542,442,848934935,10485,0 +11761,121,548,401,849064752,10311,0 +11762,050+%C5%81%C4%85koszyn,390,556,699382126,9059,0 +11763,023,596,453,849088515,8793,0 +11764,s%C5%82odziute%C5%84ka+03,603,535,8013349,6789,0 +11765,044+Ferragus,622,529,8323711,9124,0 +11766,025,548,402,849064752,10311,0 +11767,0010,509,527,699432672,10495,0 +11768,z+051,558,591,699342219,10476,0 +11769,085+koniec,407,556,699382126,2741,0 +11770,Piek%C5%82o+to+inni,480,391,848956765,10160,0 +11771,005,542,399,849064752,10311,0 +11772,KONFA+TO+MARKA%2C+NARKA,398,469,698152377,12154,0 +11773,032,543,398,1424656,10160,0 +11774,024,558,407,699761749,10495,0 +11775,%23007,543,601,849001572,9753,0 +11776,Wioska+123Misiek,568,418,849078086,5771,0 +11777,00062,535,605,848915531,7876,0 +11778,Mako+Reactor,523,608,8199417,10559,0 +11779,Wioska+smieli,403,569,9167250,9592,0 +11780,NOT,413,433,9236866,9950,0 +11781,Tatry,507,608,606407,10311,0 +11782,A+011.,434,583,849028088,9805,0 +11783,KIELBA+112,454,595,699342219,10237,0 +11784,0004,606,500,699429153,10301,0 +11785,0095,456,400,699431255,9727,0 +11786,KONFA+TO+MARKA%2C+NARKA,400,459,698152377,10295,0 +11787,D008,511,392,7758085,9925,0 +11788,Wioska+barbarzy%C5%84ska,397,538,849030226,10479,0 +11789,Coruscant+1,499,606,699383121,9797,0 +11790,s%C5%82odziute%C5%84ka+11,602,536,8013349,9538,0 +11791,K44+x026m,434,406,698364331,6778,0 +11792,Avanti%21,379,486,698625834,9956,0 +11793,Wioska+barbarzy%C5%84ska,388,534,849030226,10495,0 +11794,0036,610,516,6510480,9790,0 +11795,%7E093.,491,606,7139820,10495,0 +11796,Piek%C5%82o+to+inni,483,391,848956765,10019,0 +11797,028,591,460,8459255,10495,0 +11798,Ggggg,420,574,225023,10495,0 +11799,%23034,522,604,849001572,9761,0 +11800,KR%C3%93L+PAPI+WIELKI,572,581,698191218,10000,0 +11801,0033,463,396,699431255,10037,0 +11802,zajad,424,577,9167250,6994,0 +11803,004+Luxx,603,532,8013349,9835,0 +11804,0027+Wioska,434,412,3909522,10305,0 +11805,0049,608,471,698416970,10362,0 +11806,Wioska+barbarzy%C5%84ska,413,436,698884287,10285,0 +11807,K44+x034,439,408,698364331,7278,0 +11808,020,583,569,699524362,8037,0 +11809,%7E%7ELataj%C4%85cyHolender%7E%7E,576,495,9174887,10149,0 +11810,057,606,477,699573053,9525,0 +11811,023,543,399,7271812,10495,3 +11812,-%3D001%3D-,567,585,6818593,9835,0 +11813,%7E025.,489,610,7139820,10495,0 +11814,TYLKO+PP,394,547,699364813,3539,0 +11816,Wioska+barbarzy%C5%84ska,413,431,698884287,10285,0 +11817,A20,604,463,849093742,10019,0 +11818,-+051+-,539,604,849018239,10000,0 +11819,Suppi,452,595,699856962,10237,0 +11820,Jaaa,609,439,698635863,10495,0 +11821,Wioska,393,506,849084005,10178,0 +11822,0003,466,605,33900,8939,0 +11823,0006,606,494,699429153,10301,0 +11824,0014.+A+-,610,510,7125212,10160,0 +11825,Kentin+ufam+Tobie,434,398,699783765,10000,0 +11826,%23017,486,609,849001572,9735,0 +11827,Wioska+%28011%29,603,542,698232227,9344,0 +11828,KR%C3%93L+PAPI+WIELKI,601,540,698191218,10000,0 +11829,FAKE+OR+OFF,453,401,698231772,9814,0 +11830,NOT,413,437,9236866,10042,0 +11831,032+Louisiana,607,472,7092442,10495,0 +11832,NOT,415,434,9236866,10042,0 +11833,Wioska+barbarzy%C5%84ska,604,521,698845189,7820,0 +11834,%7E018.,501,608,7139820,10495,0 +11835,Gravity,403,450,698962117,9489,0 +11836,NOT,418,425,9236866,10042,0 +11837,%2ATam01%2A,525,606,606407,10294,0 +11838,Winter+is+coming,460,595,699364813,8962,0 +11839,Guardian,499,389,7758085,10094,0 +11840,0035+Wioska+Sjt,430,418,3909522,10155,0 +11841,020.,600,536,8900955,5757,0 +11842,Suppi,423,422,699856962,9891,0 +11843,%5B356%5D+Chor%C4%85giewka+na+wietrze,594,442,848985692,10072,5 +11844,%23033,522,605,849001572,9737,0 +11845,003,428,580,849084740,7310,0 +11846,001+Wioska+Best+Wiedzmin,606,512,6409472,8114,0 +11847,Gravity,403,456,698962117,9494,0 +11848,%40%40%40%40%40%40%40%40,411,433,7462660,10122,0 +11849,Bagdad,474,395,8847546,10178,0 +11850,xhav,394,471,698807570,9174,0 +11851,KR%C3%93L+PAPI+WIELKI,579,578,698191218,10000,0 +11852,Bucks+x+Kamiiiru,455,596,848955783,10971,0 +11853,Beginners+Hall,467,606,8199417,9853,0 +11854,Wioska+barbarzy%C5%84ska,413,432,698884287,10285,0 +11855,007,554,405,7271812,10495,0 +11856,020.xxx,477,608,8612358,9989,0 +11857,013,544,602,699189792,9744,0 +11858,0004,467,605,33900,9313,0 +11859,B11,408,556,698971484,10008,0 +11860,0644,441,592,698659980,10019,7 +11861,006,552,403,699761749,10495,0 +11862,W+006,433,589,849084740,6295,0 +11863,PYZA+005+Zoonk,582,570,33900,9027,1 +11864,Yaima,591,564,848926293,9580,0 +11865,005,421,574,9167250,9352,0 +11866,Tank+002,393,515,698290577,10348,0 +11867,EKG+Chia+%2B+R,470,602,33900,10336,0 +11868,Zasiedmiog%C3%B3rogr%C3%B3d,529,427,699433558,10311,0 +11869,0005,602,540,477415,10495,0 +11870,177,578,423,849064752,10311,0 +11871,0092,463,399,699431255,9772,0 +11872,%2302.,527,468,848967710,10595,0 +11873,-+016+-,550,600,849018239,10000,0 +11874,%5BA%5D_%5B017%5D+Dejv.oldplyr,393,490,699380607,10495,0 +11875,Jaaa,568,585,698635863,10495,0 +11876,019,610,499,699573053,10495,0 +11877,011,608,476,8459255,10203,0 +11878,008,601,545,6160655,10560,0 +11879,FAKE+OR+OFF,439,407,698231772,9831,0 +11880,Wioska+barbarzy%C5%84ska,392,522,849030226,10952,0 +11881,0005,504,500,698599365,10019,0 +11882,Peska,413,562,699443920,9761,0 +11883,W+003,434,590,849084740,9251,0 +11884,Erem,395,527,1804724,10161,0 +11886,010,610,505,699573053,10495,0 +11887,Wioska+barbarzy%C5%84ska,399,462,699523631,10495,0 +11888,026,562,410,699761749,10495,0 +11889,KONFA+TO+MARKA%2C+NARKA,400,463,698152377,10290,0 +11890,A06,601,463,849093742,10019,0 +11891,So%C5%82tys+Twojej+Wsi,439,393,849027025,9619,0 +11892,A046,459,399,8740199,10232,0 +11893,Kentin+ufam+Tobie,394,483,699783765,10000,0 +11894,0643,440,589,698659980,10019,0 +11895,Nope,393,479,6258092,10160,0 +11896,Wioska+barbarzy%C5%84ska,398,536,849030226,10484,0 +11897,50-4+CYTADELA,584,432,699368887,6747,0 +11898,KONFA+TO+MARKA%2C+NARKA,401,455,698152377,10311,0 +11899,080,553,394,849064752,10311,0 +11900,Szlachcic,396,475,6258092,10160,0 +11901,KR%C3%93L+PAPI+WIELKI,585,572,698191218,10000,0 +11902,Knowhere,392,512,699723284,10452,0 +11903,Wioska+barbarzy%C5%84ska,610,494,699573053,10365,0 +11904,015.,599,544,8900955,5003,0 +11905,D0002,438,569,8841266,9633,0 +11906,KR%C3%93L+PAPI+WIELKI,581,576,698191218,10000,0 +11907,Osada+koczownik%C3%B3w,396,533,849030226,10954,9 +11908,Gattacka,533,394,699298370,9761,0 +11909,K44+x008,438,411,698364331,7516,0 +11910,0006,598,546,477415,10495,1 +11911,Napewno+to+nie+jest+off,497,392,848912265,10495,0 +11912,KONFA+TO+MARKA%2C+NARKA,400,461,698152377,10311,0 +11913,BBB,563,412,1006847,10116,0 +11914,01.+Pollin,395,467,699523631,6413,0 +11915,Wioska+004,598,581,848971079,9761,0 +11916,021,490,390,698739350,9761,0 +11917,009,605,522,698999105,10311,3 +11918,.achim.,536,396,6936607,10311,0 +11919,FAKE+OR+OFF,454,402,698231772,9823,0 +11920,001,603,464,8459255,10362,0 +11921,NOT,415,436,9236866,10042,0 +11922,Szlachcic,455,414,698388578,10237,0 +11923,Collapsed+Expressway+-+Old+Bypas,527,607,8199417,10559,0 +11924,Gravity,404,443,698962117,9506,0 +11925,Wioska+barbarzy%C5%84ska,568,584,6818593,9835,0 +11926,KIELBA+030,454,578,699342219,10247,0 +11927,160,572,421,849064752,10311,0 +11928,A003,445,404,8740199,10223,0 +11929,.achim.,526,395,6936607,4151,0 +11930,%C5%9Amieszki,529,607,3454753,9026,1 +11931,0003.+A+-+Uru+baen,607,525,7125212,9761,0 +11932,moneciarnia2,413,439,698884287,10285,0 +11933,NOT%3F,403,553,9236866,7271,0 +11934,Suppi,426,427,699856962,9882,0 +11935,%5B0069%5D,455,398,8630972,10495,0 +11936,Knowhere,390,497,699723284,10484,0 +11937,005.+Floki,588,566,699373599,9887,0 +11938,Wioska+KanzerSuze,409,439,7462660,9902,0 +11939,009+New+Orleans,426,417,9291984,10475,0 +11940,002+Saliva+Grey+-+Gimme+a+Sec.,407,559,9167250,9388,0 +11941,-+028+-,542,601,849018239,10000,0 +11942,FAKE+OR+OFF,453,400,698231772,9833,0 +11943,KONFA+TO+MARKA%2C+NARKA,392,474,698152377,10311,0 +11944,.%3A108%3A.+Niangmen,499,393,848934935,9976,0 +11945,%5B370%5D+Chor%C4%85giewka+na+wietrze,586,433,848985692,10068,0 +11947,0348,449,598,698659980,10019,0 +11948,0000003%23,430,569,849089881,10160,0 +11949,026,595,446,699722599,10486,0 +11950,007,470,501,699781762,10495,0 +11951,040,605,470,699573053,10495,0 +11952,Napewno+to+nie+jest+off,496,390,848912265,10495,0 +11953,KR%C3%93L+PAPI+WIELKI,578,579,698191218,9949,0 +11954,Yogi,537,604,2808172,6568,0 +11955,113,566,410,849064752,10311,0 +11956,DOM+12+%2A,561,412,849064614,9398,0 +11957,Tank+004,393,511,698290577,10343,0 +11959,Altissia,528,606,8199417,10490,0 +11960,KR%C3%93L+PAPI+WIELKI,571,585,698191218,10000,0 +11961,Brat447,391,516,699262350,10476,0 +11962,.achim.,539,401,6936607,10311,0 +11963,0006+Wioskaaa,503,499,698599365,10019,0 +11964,046,606,476,699573053,10495,0 +11965,013+Fiu+fiu,607,528,9238175,10284,0 +11966,FAKE+OR+OFF,452,401,698231772,9830,0 +11967,K44+x009,437,409,698364331,8135,0 +11968,Mniejsze+z%C5%82o+0006,374,477,699794765,9844,0 +11969,%23008,547,599,849001572,9546,0 +11970,%23004,542,600,849001572,9365,7 +11971,Zeta+Reticuli+S,417,425,699323302,10997,0 +11972,W.181%2F03,606,536,2999957,10242,0 +11973,Sparta_75,486,584,2585846,7338,0 +11974,Mori,596,551,848926293,9517,0 +11975,002,453,598,699364813,10336,8 +11976,0018,607,502,699429153,10301,0 +11977,NOT,419,431,9236866,10042,0 +11978,Szlachcic,391,479,6258092,10083,0 +11979,Wioska,391,509,849084005,10178,0 +11981,Coruscant+4,496,611,699383121,9797,0 +11982,barba,463,601,699364813,10311,0 +11983,005+Connecticut,605,475,7092442,10495,0 +11984,027.xxx,479,606,8612358,10075,0 +11985,W+samym+%C5%9Brodku+roju,571,418,848985692,10311,0 +11986,z+023,554,595,699342219,10478,0 +11987,Piek%C5%82o+to+inni,481,391,848956765,10160,9 +11988,00071+Wioska,426,414,3909522,10216,0 +11989,Wioska+barbarzy%C5%84ska,595,559,8742874,8139,0 +11990,Piek%C5%82o+to+inni,483,390,848956765,10019,0 +11991,Piek%C5%82o+to+inni,491,393,848956765,10019,0 +11992,%23034,459,604,699605333,10393,0 +11993,%7E023.,492,608,7139820,10495,0 +11994,009,601,549,848899726,4081,0 +11995,Wioska+barbarzy%C5%84ska+1,506,485,698349125,8684,0 +11996,227+Christchurch,535,445,1497168,9761,0 +11997,KONFA+TO+MARKA%2C+NARKA,399,466,698152377,12154,0 +11998,0019+K,436,411,3909522,10152,0 +11999,D013,508,389,7758085,9925,0 +12000,%2A010%2A,610,501,698670524,8640,0 +12001,Corneo+Colosseum,531,605,8199417,10559,0 +12002,0019+Japan,435,411,3909522,10278,0 +12003,Wioska+barbarzy%C5%84ska,425,419,699660539,9710,0 +12004,096+MEHEHE+m,501,611,6116940,10019,0 +12005,141+izka1611,387,551,699382126,9150,0 +12006,Osada+koczownik%C3%B3w,410,434,7462660,10068,5 +12007,127,546,406,849064752,10311,0 +12008,Szlachcic,461,400,698388578,10237,0 +12009,%5B010%5D+do+MARV+%21%21,608,522,848985692,10216,5 +12010,Jaaa,569,585,698635863,10474,0 +12011,Wioska+barbarzy%C5%84ska,398,532,849030226,10963,0 +12012,Gravity,401,450,698962117,9489,0 +12013,026.+Ogr%C3%B3d+Warzywny,528,394,7758085,9925,0 +12014,0058,605,508,6510480,10128,0 +12015,CALL+1010,523,609,699784536,10311,0 +12016,yogi,530,569,2808172,10019,0 +12017,50-3+SAMOSIERRA+AT,584,428,699368887,8348,0 +12018,Lord+Arsey+KING,570,585,848956513,10285,3 +12019,s181eo11,397,448,393668,9902,0 +12020,008,551,404,1424656,9825,0 +12021,A16,601,461,849093742,10019,0 +12022,E003,514,391,7758085,9925,0 +12023,012+SINGED+NA+ROBOCIE,596,451,698829590,10005,0 +12024,-+017+-,550,598,849018239,10000,0 +12025,%5BA%5D_%5B009%5D+Dejv.oldplyr,393,486,699380607,10495,0 +12026,028.,594,557,8900955,9547,0 +12027,019,598,543,6160655,10699,0 +12028,005+Wioska+Lecha,609,474,8337151,10083,0 +12029,%5B236%5D+WEST,597,451,848985692,10057,0 +12030,Wioska+barbarzy%C5%84ska,581,430,699368887,10135,0 +12031,023,400,544,699425709,9156,0 +12032,CALL+974,555,585,699784536,10311,0 +12033,Szlachcic,505,468,699098531,9637,0 +12034,DOM+11,565,409,849064614,9340,0 +12035,MassXxl,611,510,699379895,10495,0 +12036,barba,462,601,699364813,10311,5 +12037,Myk+i+do+kieszonki,373,502,9319058,9746,0 +12038,041,612,500,699573053,10495,0 +12039,PRO8L3M,389,515,7491093,10311,0 +12040,-+025+-,542,599,849018239,10000,0 +12041,Jaaa,569,582,698635863,10218,0 +12042,Suppi,423,423,699856962,9883,0 +12043,%7E072.,489,607,7139820,10495,0 +12044,Yogi,538,604,2808172,10019,0 +12045,-+056+-,553,596,849018239,10000,0 +12046,010,603,544,699413040,9860,0 +12047,D007,509,393,7758085,9925,0 +12048,Gravity,407,444,698962117,9491,0 +12049,KR%C3%93L+PAPI+WIELKI,575,580,698191218,10000,0 +12050,018,506,377,849010255,9497,0 +12051,092,548,404,849064752,10311,0 +12053,024,489,389,698739350,9761,0 +12054,Bagdad,473,395,8847546,10068,0 +12055,058,606,482,699573053,10495,0 +12056,Conference+Rooms,529,608,8199417,10495,0 +12057,191,572,415,849064752,10311,0 +12058,ADEN,590,435,698588535,10254,0 +12059,a+mo%C5%BCe+off+%3F+%3A%29,578,580,698768565,9024,0 +12060,NOT%3F,404,551,9236866,10042,0 +12061,0101,460,398,699431255,9746,0 +12062,Najlepszy+s%C4%85siad+013,596,446,699756210,10273,0 +12063,-+019+-,541,600,849018239,10000,0 +12064,021+Mountain+Dew,597,450,698829590,10019,0 +12065,015,559,405,7271812,10495,0 +12066,039,543,402,849064752,10311,0 +12067,a+mo%C5%BCe+off+%3F+%3A%29,582,571,698768565,9559,0 +12068,Osada+koczownik%C3%B3w,500,612,699698253,9629,6 +12069,%5B358%5D+Chor%C4%85giewka+na+wietrze,594,439,848985692,10201,0 +12070,Twierdza+010,419,571,849084740,7878,0 +12071,0002.+A+-+Tronjheim,607,527,7125212,9761,0 +12072,Wioska+barbarzy%C5%84ska,398,461,699523631,10478,0 +12073,0012,463,605,33900,10095,0 +12074,Piek%C5%82o+to+inni,483,394,848956765,10083,0 +12075,amator,526,614,848915531,12154,0 +12076,0010.+A+-+Ceunon,605,521,7125212,10469,0 +12077,%2A003%2A,614,506,698670524,8501,0 +12078,Bucks+x+Kamiiiru,454,602,848955783,10222,0 +12080,%7E008.,502,609,7139820,10495,2 +12081,PYRLANDIA+021+s,568,589,33900,10265,0 +12082,015,609,484,699573053,10495,0 +12083,Bagdad,472,393,8847546,10654,0 +12084,008,544,603,699189792,9744,0 +12085,z+019,555,598,699342219,10476,2 +12086,004,427,579,849084740,5145,0 +12087,FAKE+OR+OFF,455,403,698231772,9835,0 +12088,040+-+pi%C4%99knie,419,576,225023,10495,0 +12089,011+Minneapolis,427,415,9291984,10479,0 +12090,012.+Porunn,587,563,699373599,9983,0 +12091,Gravity,405,451,698962117,9499,0 +12092,012,409,513,699851427,9974,0 +12093,032,577,419,849063849,10636,0 +12094,E004,516,390,7758085,9925,0 +12095,TAG,621,497,699795378,10393,0 +12096,0011,465,607,33900,9977,0 +12097,009,602,462,8459255,10362,0 +12098,0013,470,606,33900,9227,0 +12099,kto+ananasowy+pod+wod%C4%85+ma+dom,582,576,699628084,9797,0 +12100,022+Znamy+si%C4%99%3F,597,448,698829590,10635,0 +12102,Teby_04,503,612,2585846,9638,0 +12104,Dusk+Till+Dawn,592,563,848926293,9523,0 +12105,Jaaa,590,559,698635863,10495,0 +12106,D021,574,417,699761749,6140,0 +12107,.achim.,519,395,6936607,10311,0 +12108,z+018,558,590,699342219,10478,0 +12109,Wioska+barbarzy%C5%84ska,393,524,849030226,10951,0 +12110,Napewno+to+nie+jest+off,496,388,848912265,10495,0 +12111,016,608,482,699573053,10495,0 +12112,%21%2A303%2A,507,610,606407,10311,0 +12113,South+K45,573,420,699146580,10042,0 +12114,Wioska+Michal+CR7,523,443,699855647,2842,0 +12115,004+619,583,570,8742874,9720,5 +12117,Balouve+Mines,528,607,8199417,10495,0 +12118,014+d%C5%82ugo+jeszcze%3F,608,527,9238175,10301,0 +12119,Jaaa,576,582,698635863,10479,0 +12120,Kentin+ufam+Tobie,390,481,699783765,10000,0 +12121,Wioska+barbarzy%C5%84ska,427,438,698884287,10285,0 +12122,NWO,392,519,849030226,11550,0 +12123,%5B380%5D+Chor%C4%85giewka+na+wietrze,586,430,848985692,10201,0 +12124,Bagdad,467,395,8847546,10654,0 +12125,%5B317%5D+Chor%C4%85giewka+na+wietrze,591,435,848985692,10403,0 +12126,NOT%3F,404,552,9236866,5472,0 +12127,Honeybee+Inn,526,604,8199417,10147,0 +12128,010+-+Wioska,415,590,225023,10197,0 +12129,Wioska+barbarzy%C5%84ska,565,590,6818593,9835,0 +12130,%5B241%5D+WEST,600,456,848985692,10400,0 +12132,NWO,395,535,849030226,10728,0 +12133,EKG+M20,482,607,33900,10033,0 +12134,Bagdad,476,392,8847546,10654,0 +12135,Wioska+barbarzy%C5%84ska,606,518,698845189,5058,0 +12136,PYZA+004+King+1,582,572,33900,10429,0 +12137,D009,508,392,7758085,9861,0 +12138,Wioska+X2,392,467,699523631,9910,0 +12139,0063,609,509,6510480,9807,0 +12140,kto+ananasowy+pod+wod%C4%85+ma+dom,585,568,699628084,9797,0 +12141,.achim.,537,396,6936607,10311,0 +12143,00351+W+3+DNI,428,418,3909522,10075,0 +12145,monetki+A,580,576,698768565,9556,0 +12146,Czyli+mo%C5%BCna+Ciebie+zaskoczyc,581,427,699368887,7678,0 +12147,023+Baraki,604,462,8459255,10077,0 +12148,A05,603,463,849093742,10019,0 +12149,Part+IV,533,382,698350371,10495,0 +12150,018,398,539,699856962,9559,0 +12151,45.+Wioska+45,427,584,849091769,8817,0 +12152,19+im+B%C5%82ochina,578,421,849037469,9809,0 +12154,026,492,388,698739350,9761,0 +12155,Jaaa,577,575,698635863,10495,0 +12156,001+Naura,405,461,698807570,10054,0 +12157,Wioska+barbarzy%C5%84ska,396,538,849030226,9693,0 +12158,Suppi,454,597,699856962,10239,5 +12159,164+Ale+mnie+g%C5%82%C3%B3wka+boli,386,547,699382126,10636,0 +12160,Wola+3,478,394,849093155,7910,0 +12161,A0036,391,474,8841266,10362,0 +12162,Knowhere,388,500,699723284,10484,9 +12163,090+OCE%C5%83+SAM+KTO+DAJE+LAK,397,557,699382126,6503,0 +12165,Knowhere,392,492,699723284,10064,0 +12166,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,438,609,1434753,10068,0 +12167,%5B321%5D+Chor%C4%85giewka+na+wietrze+PAA,591,436,848985692,10411,0 +12168,NOT%21%21,471,604,9236866,7686,0 +12169,%5B231%5D+WEST,602,454,848985692,10403,0 +12170,KR%C3%93L+PAPI+WIELKI,576,580,698191218,10000,0 +12171,079+-+Twierdza+002,418,571,225023,10495,0 +12172,001+Alabama,609,485,7092442,10495,0 +12173,A013,448,404,8740199,10216,0 +12174,%5B359%5D+Chor%C4%85giewka+na+wietrze,594,440,848985692,10093,0 +12175,003,603,456,849088515,10019,0 +12176,Puaaa,409,562,699443920,9761,0 +12177,038,537,607,699189792,9745,0 +12179,Zeta+Reticuli+S,415,426,699323302,11188,0 +12180,Wioska+barbarzy%C5%84ska,412,436,698884287,10285,0 +12181,010,539,395,849064752,10311,0 +12182,NOT,417,427,9236866,10068,0 +12184,C+016+Zederman,418,575,849084740,8642,0 +12185,006,557,408,7271812,10495,0 +12186,Wioska+C.a.,552,402,848954236,3454,0 +12187,047,610,495,699573053,10495,0 +12188,.achim.,538,397,6936607,10311,0 +12189,Barba+3,432,411,699796330,9887,5 +12190,Wioska+NTSL,395,462,699523631,3152,0 +12191,0018+Wioska,434,409,3909522,10481,0 +12192,Immigrant+Song,588,563,848926293,9485,0 +12193,Piek%C5%82o+to+inni,486,388,848956765,10160,0 +12194,Run,591,565,848926293,9318,0 +12195,Wioska+barbarzy%C5%84ska,595,558,8742874,9586,0 +12196,035,559,404,1424656,8352,0 +12197,Gravity,405,448,698962117,9505,0 +12198,122+s005,400,552,699382126,10838,0 +12199,009,608,531,699413040,9860,0 +12200,PRO8L3M,450,493,7491093,8856,0 +12201,Suppi,424,421,699856962,9974,0 +12202,034,543,401,7271812,10495,0 +12203,003,409,434,699788305,10019,0 +12204,Piek%C5%82o+to+inni,480,389,848956765,10160,0 +12205,%2A015%2A,609,498,698670524,8484,0 +12206,Osada+koczownik%C3%B3w,397,536,849030226,10714,2 +12207,Szlachcic,389,486,6258092,10083,0 +12208,Wioska+barbarzy%C5%84ska,388,515,849030226,10475,0 +12209,010,604,467,8459255,9985,0 +12210,%5B330%5D+Chor%C4%85giewka+na+wietrze,584,426,848985692,10301,0 +12211,koczownicza+02,396,531,1804724,10109,6 +12212,0108,443,405,699431255,9729,0 +12213,Land+of+Fire,399,448,698962117,9496,0 +12214,Bagdad,470,392,8847546,10654,9 +12215,Radek,395,471,699523631,10495,0 +12216,z+017,559,591,699342219,10475,0 +12217,A011,447,404,8740199,10217,0 +12218,Czersk,416,571,698769107,9835,0 +12219,013.xxx,483,611,8612358,9909,0 +12220,Szlachcic,389,488,6258092,10160,0 +12221,Kiedy%C5%9B+Wielki+Wojownik,396,458,8632462,9024,0 +12222,059,611,500,699573053,10495,0 +12223,-+018+-,549,597,849018239,10000,0 +12224,Wioska+barbarzy%C5%84ska,582,427,699368887,9664,0 +12225,Wioska+%28019%29,598,512,698232227,9434,0 +12226,031+Colorado,606,472,7092442,10495,0 +12227,020+-+Yaxchilan%2A%2A%2A,435,590,225023,10495,0 +12228,Wioska+barbarzy%C5%84ska,397,534,849030226,10700,0 +12229,%5B301%5D+West,599,453,848985692,10273,0 +12230,ADEN,588,430,698588535,10223,0 +12231,Bagdad,472,394,8847546,10787,0 +12232,%23003,544,600,849001572,9717,0 +12234,KR%C3%93L+PAPI+WIELKI,570,582,698191218,10000,0 +12235,Wioska20,620,476,848935020,9503,0 +12236,032,543,400,7271812,10495,0 +12237,002+New+York+City,425,417,9291984,10495,0 +12238,Wioska+barbarzy%C5%84ska,473,607,7976264,8427,0 +12239,s%C5%82odziute%C5%84ka+10,605,536,8013349,10059,0 +12240,002,427,580,849084740,10224,0 +12241,Brat447,392,514,699262350,10476,3 +12243,0023+Wioska,430,412,3909522,9913,0 +12244,024.+Ogr%C3%B3d+Warzywny,527,394,7758085,9925,0 +12245,0104,459,398,699431255,9824,0 +12246,004,600,546,8742874,9724,0 +12248,089+MEHEHE+3,491,608,6116940,10019,0 +12249,%5B332%5D+Chor%C4%85giewka+na+wietrze,585,425,848985692,10391,0 +12250,-+011+-,551,600,849018239,10000,0 +12251,006.+Isengard,485,612,699494488,10231,0 +12252,%23032+A,451,601,9037756,10019,0 +12253,Kaktus,375,497,699265922,10019,0 +12254,Coruscant+5,495,612,699383121,9835,0 +12255,1.Milwaukee,550,599,698215322,9973,0 +12256,Bocianikson015,600,545,7528491,9069,0 +12258,013.+G%C3%B3ry+Mgliste,485,611,699494488,10484,0 +12259,s%C5%82odziute%C5%84ka+02,602,535,8013349,6189,0 +12260,NOT,418,430,9236866,10042,0 +12261,042,609,476,699573053,10094,0 +12262,x10,410,436,698884287,10285,0 +12263,%5B364%5D+Chor%C4%85giewka+na+wietrze,594,441,848985692,10192,0 +12264,016.+Torstein,589,569,699373599,10030,0 +12265,.achim.,524,393,6936607,8825,0 +12266,0646,437,594,698659980,10495,0 +12267,085+MEHEHE+5,488,608,6116940,10019,0 +12268,Teby_05,502,613,2585846,9638,0 +12269,barba,463,602,699364813,10311,0 +12270,016+-+Legenda%2A%2A%2A,441,581,225023,10495,0 +12271,%5B232%5D+WEST,601,453,848985692,10403,0 +12273,Desperato%2A,393,526,1804724,9873,0 +12274,016,495,387,698739350,9761,0 +12275,BoOmBaa..,445,401,6169408,8617,0 +12276,C.002,444,598,849088243,10208,0 +12277,Ccccc,419,578,225023,10495,0 +12278,002,547,601,699189792,9742,0 +12279,%5B011%5D+MarV+Hondlorz,608,523,848985692,10292,9 +12280,Bagdad,475,392,8847546,10654,0 +12281,00023Dalaran,423,576,9167250,8993,0 +12282,194,568,414,849064752,8937,0 +12283,.achim.,528,391,6936607,10311,0 +12284,20029,516,533,848915531,10321,0 +12285,0007,465,606,33900,9977,0 +12286,Najlepszy+s%C4%85siad+006,592,441,699756210,10336,0 +12287,031+Santorini,611,516,8323711,9530,0 +12288,Wioska6,514,595,8369778,10291,0 +12289,Knowhere,387,511,699723284,10282,0 +12290,0625,439,590,698659980,10019,0 +12291,Gravity,404,441,698962117,9495,0 +12292,001,561,405,849064752,10311,0 +12293,008,606,535,699413040,9860,0 +12294,%5B379%5D+Chor%C4%85giewka+na+wietrze,587,432,848985692,10411,0 +12295,020,605,469,8459255,9907,0 +12296,-+089+-,549,607,849018239,10000,0 +12297,Lord+Arsey+KING,578,582,848956513,10285,0 +12298,z+013,560,595,699342219,10475,0 +12299,Jaaa,579,597,698635863,10478,0 +12301,Najlepszy+s%C4%85siad+003,597,443,699756210,9750,0 +12302,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,470,607,8201460,10237,0 +12303,Urojone+Elizjum,455,603,7249451,10237,0 +12304,010.+Aslaug,588,567,699373599,10030,0 +12305,Kiedy%C5%9B+Wielki+Wojownik,399,458,8632462,9976,0 +12306,%5B013+%5DPa+O,607,539,848985692,10284,3 +12307,.achim.,518,394,6936607,10311,0 +12308,006,425,580,849084740,10462,0 +12309,026+Cithri,610,512,8337151,10160,0 +12310,003+Los+Angeles,426,418,9291984,10475,1 +12311,NWO,392,524,849030226,10957,0 +12312,025+wje%C5%BCd%C5%BCamZczo%C5%82gami,608,514,8323711,10495,0 +12313,Bagdad,472,391,8847546,9835,0 +12314,Jaaa,583,553,698635863,10487,0 +12315,%23028+M,445,598,9037756,10311,0 +12316,009,602,545,6160655,10564,0 +12317,Mrocza,422,580,698769107,8662,0 +12318,NOT,414,424,9236866,10042,0 +12319,007+Te+pandy+takie+nie+za+mocne,504,388,7758085,9861,0 +12320,005,610,534,699413040,9860,0 +12321,Wioska+barbarzy%C5%84ska,422,420,699660539,9925,0 +12322,0003+MzM,603,562,698416970,9630,0 +12323,%5B310%5D+Chor%C4%85giewka+na+wietrze,590,434,848985692,10394,0 +12324,EKG+.%3A%3A.+Siwyy8848%2F1,496,616,33900,10495,0 +12325,0084,442,402,699431255,9835,0 +12327,%5B323%5D+Chor%C4%85giewka+na+wietrze,590,439,848985692,10400,0 +12328,002,472,507,1536625,12154,0 +12329,Wioska+barbarzy%C5%84ska,424,418,699660539,9913,0 +12330,A16,556,452,699368887,10470,0 +12331,Wioska+barbarzy%C5%84ska,595,557,8742874,9363,0 +12332,Hhhhh,420,573,225023,10495,0 +12333,ok.,389,523,849030226,10487,0 +12334,015,605,466,8459255,10186,0 +12335,025,558,405,699761749,10495,0 +12336,Mniejsze+z%C5%82o+0012,391,469,699794765,9744,0 +12337,KIELBA+086,461,601,699342219,10444,0 +12338,C+012+Niepolomice,417,573,849084740,6912,0 +12339,KONFA+TO+MARKA%2C+NARKA,403,457,698152377,10336,0 +12340,018,490,387,698739350,9902,0 +12341,.achim.,529,392,6936607,10311,9 +12342,South+K45,572,416,699146580,10042,0 +12343,Bier+sie+stad+ino+a+wartko,389,451,699711723,10019,0 +12344,1818,434,587,849028088,9565,0 +12346,Pemberley,407,561,699443920,11094,0 +12347,017.+Astrid,587,569,699373599,10030,0 +12348,0206,447,601,698659980,10252,0 +12349,PYRLANDIA+028+ni+pod+ci,566,591,33900,10351,0 +12350,0024+W,431,412,3909522,10075,0 +12351,131+B04,402,554,699382126,10559,0 +12352,Jaaa,589,562,698635863,10478,0 +12353,007+Lufa+na+le%C5%BC%C4%85co,608,486,699272633,10495,0 +12354,096,549,403,849064752,10311,0 +12355,Wioska+barbarzy%C5%84ska,397,547,699364813,3494,0 +12356,079,609,492,699573053,10490,0 +12357,013,549,401,1424656,9899,0 +12358,Piek%C5%82o+to+inni,485,389,848956765,10160,0 +12359,010,553,402,699761749,10495,0 +12360,023,398,537,699856962,9562,0 +12362,092+MEHEHE,493,608,6116940,9966,0 +12363,0020+Wioska,433,409,3909522,10160,7 +12365,138+B05,404,553,699382126,10161,0 +12366,0029+Wioska,433,414,3909522,10078,0 +12367,010+Nie+potwierdzam,598,446,698829590,4940,0 +12368,NOT%3F,404,550,9236866,10042,0 +12369,ADEN,587,431,698588535,10311,3 +12370,Wioska+JemekJankowski,391,471,699523631,10478,0 +12371,%5B244%5D+West,600,452,848985692,5582,0 +12372,asasas,398,540,699856962,9871,0 +12373,Wielki+mur+2,478,392,849093155,8734,0 +12374,Zeta+Reticuli+S,415,425,699323302,11417,0 +12375,Kentin+ufam+Tobie,436,408,699783765,10000,0 +12377,009,602,459,849088515,10019,0 +12378,037,501,610,699878511,10160,0 +12379,A0035,390,475,8841266,10362,0 +12381,K44+x013,432,410,698364331,9610,0 +12382,Wioska+barbarzy%C5%84ska,394,540,849030226,9679,0 +12383,bucks+x+kamiiiru,421,423,848955783,10971,0 +12384,011,462,604,699364813,10362,0 +12385,0645,439,594,698659980,10019,0 +12386,%23+Szymi+6,394,539,699425709,9873,0 +12388,C001,520,388,7758085,9925,0 +12389,FAKE+OR+OFF,443,403,698231772,9821,0 +12390,006.+Rollo,588,565,699373599,10030,0 +12391,020+Notfair+to+kox,599,446,698829590,10019,0 +12392,Wioska+barbarzy%C5%84ska,598,547,8742874,9721,0 +12393,137+B14,403,559,699382126,7936,0 +12394,Najlepszy+s%C4%85siad+004,597,444,699756210,10273,0 +12395,043,608,487,699573053,10478,0 +12396,Kentin+ufam+Tobie,436,407,699783765,10000,0 +12397,175,543,380,849064752,8741,0 +12398,NOT%3F,401,547,9236866,10042,0 +12399,KONFA+TO+MARKA%2C+NARKA,396,463,698152377,10311,0 +12400,002,551,400,1424656,9804,3 +12401,Brat447,391,517,699262350,10495,0 +12402,Piek%C5%82o+to+inni,487,390,848956765,10160,0 +12403,089,574,414,849064752,10311,1 +12404,078+-+Twierdza+001,418,572,225023,9489,0 +12405,kto+ananasowy+pod+wod%C4%85+ma+dom,580,573,699628084,9797,0 +12406,Lord+Arsey+KING,579,581,848956513,10285,0 +12407,Knowhere,391,514,699723284,10452,0 +12408,Knowhere,390,492,699723284,10374,0 +12409,Wioska+Bleeklos,608,533,2999957,10242,0 +12410,002+%28LukaszWspanialy%29,413,572,698769107,9835,0 +12411,Wioska+barbarzy%C5%84ska,398,451,698807570,10047,0 +12413,Gattacka,539,394,699298370,8913,0 +12414,Wioska+marekkkzzz665,388,480,699523631,10495,0 +12415,%7E011.,499,613,7139820,10495,0 +12416,x02,408,435,698884287,10285,0 +12417,078,414,512,699851427,10129,0 +12418,024.xxx,481,609,8612358,10002,0 +12419,002buuuuu,408,564,9167250,9594,0 +12420,A006,514,387,7758085,9925,0 +12421,Wioska,388,505,849084005,10178,0 +12422,.achim.,524,399,6936607,10311,0 +12423,136+S013,405,556,699382126,7787,0 +12424,%5B233%5D+WEST,600,451,848985692,10063,0 +12425,005+Helmowy+Jar,609,528,8013349,9935,0 +12426,KIELBA+085,454,601,699342219,10495,0 +12427,017,540,605,699189792,9740,0 +12428,0006,535,608,848915531,11130,0 +12429,032+Kreta,613,512,8323711,9669,0 +12430,0026+utache,427,413,3909522,9909,0 +12431,Brat447,387,513,699262350,10478,0 +12432,003,509,611,8925624,8569,0 +12434,Majin+Buu+009,441,565,699054373,8156,0 +12435,Wioska+barbarzy%C5%84ska,566,587,6818593,9835,0 +12436,%5B0088%5D,449,399,8630972,10495,0 +12437,003a+barba,428,583,9167250,9277,0 +12438,%5B306%5D+Chor%C4%85giewka+na+wietrze,590,431,848985692,10167,0 +12439,Z+barba+003,423,577,225023,10495,0 +12440,NOT,415,429,9236866,9950,0 +12441,026,545,396,849064752,10311,1 +12442,Mniejsze+z%C5%82o+0009,392,468,699794765,9847,0 +12443,%2A018%2A,609,512,698670524,8447,0 +12444,ZABAWA+-2-+Waldemar+Wielki,407,440,698884287,10285,0 +12445,yogi,537,606,2808172,10019,0 +12446,060,610,503,699573053,10495,0 +12447,0007+N,425,414,3909522,10083,0 +12448,%5B237%5D+WEST,599,452,848985692,10054,0 +12449,Wioska+barbarzy%C5%84ska,413,430,698884287,10285,0 +12450,CALL+1006,521,608,699784536,10178,0 +12451,0011+F,430,408,3909522,10160,0 +12452,009,613,499,849006412,9677,0 +12453,D01,621,479,849093742,10019,0 +12454,0016,612,520,6510480,10317,0 +12455,005+San+Francisco,427,416,9291984,10479,0 +12456,0003,601,548,477415,10495,0 +12457,Wioska,388,518,849084005,10178,0 +12458,KR%C3%93L+PAPI+WIELKI,582,574,698191218,9899,0 +12459,032+-+GKS,425,583,225023,10495,8 +12460,007a,422,579,9167250,9038,0 +12461,.achim.,525,391,6936607,10311,0 +12462,%5BA%5D_%5B016%5D+Dejv.oldplyr,392,490,699380607,10495,0 +12463,D017,505,388,7758085,9925,0 +12464,A.002,602,551,9188016,10000,8 +12465,Wioska+pchelka75,594,437,583500,3440,0 +12466,.achim.,526,393,6936607,3828,0 +12467,0232,451,598,698659980,7325,0 +12468,Mzm14,610,530,7142659,10252,0 +12469,%23002,543,602,849001572,9761,0 +12470,A008,448,403,8740199,10221,0 +12471,Teby_03,503,610,2585846,9638,0 +12472,Naboo+6,487,610,699383121,8889,0 +12473,Wioska+barbarzy%C5%84ska,390,523,849030226,9037,0 +12474,Gravity,404,442,698962117,9525,0 +12475,Kentin+ufam+Tobie,392,441,699783765,10064,0 +12476,066+-+Cenny%2A%2A%2A,436,590,225023,5991,0 +12477,006,609,470,8459255,10192,0 +12478,Wioska+barbarzy%C5%84ska,390,519,849030226,7764,0 +12479,Fresio,424,419,699660539,10128,0 +12480,16.+Barret+Wallace,521,612,8199417,10495,0 +12481,012,544,400,1424656,9976,0 +12482,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,463,607,8201460,10237,0 +12483,006+LordTrol,611,522,8323711,10495,0 +12484,107,569,411,849064752,10311,0 +12485,Yogi,540,607,2808172,10019,0 +12486,Heart+Of+Steel,593,561,848926293,9526,0 +12487,Popas1,387,500,699265922,9752,0 +12488,Wioska+barbarzy%C5%84ska,409,436,698884287,10285,0 +12489,004,610,525,699413040,9860,0 +12490,%7E089.,492,612,7139820,10495,0 +12491,055,549,397,849064752,10311,0 +12492,027,562,407,699761749,10495,0 +12493,002,604,460,849088515,10019,0 +12494,Wioska+barbarzy%C5%84ska,412,434,698884287,10285,0 +12495,%5B360%5D+Chor%C4%85giewka+na+wietrze,592,438,848985692,10068,0 +12496,-+128+-,551,596,849018239,8471,0 +12497,%7E075.,490,612,7139820,10495,0 +12498,R%C4%99cznik+do+zmiany,389,479,699697558,10495,1 +12499,025+To+by%C5%82y+czasy,596,449,698829590,10066,0 +12500,0025+Wioska,429,413,3909522,10083,0 +12501,032,603,462,849088515,8031,6 +12502,025+Ellesmera,601,504,8337151,12154,0 +12503,KONFA+TO+MARKA%2C+NARKA,393,476,698152377,10311,0 +12504,India,596,560,699737356,8663,0 +12505,Ceiling+-+Air-Conditioning+Duct,530,609,8199417,10495,0 +12506,038,589,572,699373599,10030,0 +12507,x06,410,432,698884287,10285,0 +12508,.achim.,526,391,6936607,10311,0 +12509,013,612,483,699573053,10495,9 +12510,007,407,437,698884287,10285,0 +12511,00354+Ma%C5%82ego+Franka,427,419,3909522,8790,0 +12512,007+barbarzy%C5%84ska,608,528,9238175,10318,0 +12513,007,604,457,849088515,10019,0 +12514,011.+Torvi,589,564,699373599,10030,0 +12515,EKG+M+.%3A%3A.+Paola65,480,608,33900,10495,0 +12516,%5B218%5D+WEST,606,458,848985692,10052,0 +12517,kto+ananasowy+pod+wod%C4%85+ma+dom,582,577,699628084,9797,0 +12518,.achim.,526,392,6936607,10311,0 +12519,025+Albania,593,467,7092442,10495,0 +12520,075+Minnesota,611,486,7092442,10495,1 +12521,005+Moss,602,543,699272880,10319,0 +12522,B.002,410,567,849088243,9221,0 +12523,Piek%C5%82o+to+inni,479,388,848956765,10083,0 +12524,A.020,596,559,9188016,10000,0 +12525,DOM+14,567,411,849064614,9824,0 +12526,Sk%C5%82ad,507,611,606407,10121,0 +12527,South+K45,574,416,699146580,5427,0 +12528,Baza1,408,439,698884287,10285,0 +12529,.achim.,529,393,6936607,10311,0 +12530,Wioska,389,506,849084005,10178,0 +12531,083+Missouri,611,490,7092442,10495,0 +12532,Wioska+barbarzy%C5%84ska,405,563,9167250,5439,0 +12533,014,611,527,698999105,10311,0 +12534,s181eo04,399,452,393668,9902,0 +12535,bucks+x+kamiiiru,421,421,848955783,10971,0 +12536,Wioska,388,508,849084005,10178,0 +12538,074,608,516,699373599,7952,0 +12539,006,596,558,848899726,7979,0 +12540,0005.+C+-+Aberon,623,504,7125212,9825,0 +12541,014,607,464,8459255,10192,0 +12542,Jaaa,584,545,698635863,10475,0 +12543,Wioska,387,508,849084005,10178,0 +12544,021.+Patavium,614,458,849091866,9740,0 +12545,041+Dallas,424,414,9291984,10481,0 +12546,%2A1Nocne+Harce,584,430,848985692,10052,0 +12547,0009,532,605,848915531,11824,0 +12548,terra+vista,398,541,849030226,10252,0 +12549,RUSZEK+NIE+DLA+CIEBIE,588,569,1715091,9669,0 +12550,East+Blue,494,387,699433558,10375,0 +12551,%21%2A305%2A,508,611,606407,10311,0 +12552,Wioska,380,531,849084005,10178,0 +12553,Insomnia,527,608,8199417,10495,0 +12555,%5B0036%5D,455,397,8630972,10495,0 +12556,Land+of+Fire,399,451,698962117,9497,0 +12557,Galia+3,595,442,848989855,5558,0 +12558,05+Makija%C5%BC,614,501,699377151,9097,0 +12559,031,591,568,699373599,10068,0 +12560,%2A007%2A,618,519,698670524,8805,0 +12561,024+-+B08.%2A%2A%2A,439,597,225023,10495,0 +12563,Z+barba+004,424,581,225023,8301,0 +12564,0133,461,607,698659980,10160,0 +12565,Memorial+Museum,516,613,8199417,10559,6 +12566,Soldier+Of+Fortune,595,560,848926293,9456,0 +12567,0000025%40,435,594,849089881,10160,0 +12568,Mourinho,626,516,699795378,9868,0 +12569,C004,523,388,7758085,9925,0 +12570,Grand+Line,490,394,699433558,10495,0 +12571,KR%C3%93L+PAPI+WIELKI,573,583,698191218,10000,0 +12572,005,613,500,849006412,10098,0 +12573,011,558,403,7271812,10495,0 +12574,%23010,473,610,699605333,10393,0 +12575,0037,614,513,6510480,9791,0 +12576,.achim.,536,395,6936607,10311,0 +12577,013,492,387,698739350,9902,1 +12579,Piek%C5%82o+to+inni,484,392,848956765,10019,0 +12580,030,610,486,699573053,10495,0 +12581,.achim.,536,393,6936607,10311,0 +12582,NIERAJ006,469,608,33900,10126,0 +12583,0047+MzM,601,515,698416970,9258,0 +12584,Kentin+ufam+Tobie,438,406,699783765,10000,0 +12586,-+050+-,540,604,849018239,10000,0 +12587,Vegus+to+wygra%C5%82,398,426,7462660,10122,0 +12588,A0032,389,481,8841266,10362,0 +12589,018,609,469,8459255,10001,0 +12591,Knowhere,388,511,699723284,10374,0 +12592,.%3A007%3A.Chillout,501,388,848934935,10495,0 +12593,MojeSzczytToTw%C3%B3jDno,529,389,828637,10478,0 +12594,Wioska+%28015%29,604,543,698232227,9850,0 +12595,%7E017.,500,614,7139820,10495,0 +12596,D019,504,387,7758085,9925,0 +12597,Gravity,401,446,698962117,9515,0 +12598,%23019,474,611,699605333,10393,0 +12599,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,463,608,8201460,10237,0 +12600,Wioska+barbarzy%C5%84ska,604,540,3364735,9966,0 +12601,010+Detroit,425,418,9291984,10484,0 +12602,%23031,521,604,849001572,9970,0 +12603,%5B0005%5D,454,399,8630972,10495,0 +12604,.achim.,522,391,6936607,10311,0 +12605,Jeremy,599,550,848926293,8560,0 +12606,0022+przemas1994,428,411,3909522,10132,0 +12607,Gravity,406,444,698962117,9509,0 +12608,044+-+A02%2A%2A%2A,433,588,225023,10495,0 +12609,0022,429,411,3909522,10069,0 +12610,%5B235%5D+WEST,599,449,848985692,10209,9 +12611,NOT,419,421,9236866,10042,0 +12612,004,545,395,1424656,9783,0 +12613,Kentin+ufam+Tobie,378,459,699783765,10000,0 +12614,A005,516,387,7758085,9925,0 +12616,Kentin+ufam+Tobie,438,404,699783765,10000,0 +12617,L+1,612,476,849027653,10032,5 +12618,011,546,602,699189792,9742,0 +12619,Kiedy%C5%9B+Wielki+Wojownik,395,454,8632462,9172,0 +12621,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,458,603,8201460,10237,0 +12622,017+Okinawa,614,495,7092442,10495,0 +12623,Szlachcic,391,480,6258092,10160,0 +12624,036,545,397,7271812,10495,0 +12625,Ww+005,443,599,849084740,10190,8 +12626,0323,446,601,698659980,10019,0 +12627,Gravity,405,442,698962117,9485,0 +12628,003+%7C+Lord+Axen+-+Rumbling%2C,562,552,8000875,10235,0 +12629,Kiedy%C5%9B+Wielki+Wojownik,395,460,8632462,9819,0 +12630,%5BA%5D_%5B003%5D+Dejv.oldplyr,392,478,699380607,10444,8 +12631,Wioska+barbarzy%C5%84ska,439,388,849027025,7723,0 +12632,Knowhere,389,503,699723284,10452,0 +12633,.achim.,519,387,6936607,10311,0 +12634,Wioska+barbarzy%C5%84ska,410,435,698884287,10285,0 +12635,Wa%C5%82+si%C4%99,612,511,6837266,4996,0 +12636,Lord+Arsey+KING,572,585,848956513,10285,0 +12637,015+Bez+strachu,598,448,698829590,10002,0 +12638,Bagdad,467,390,8847546,10654,0 +12639,Knowhere,388,501,699723284,10452,0 +12640,B.005,413,568,849088243,9370,0 +12641,Wioska+DETONATOR2010,506,389,3024357,5027,0 +12642,SZYMI+PALACE+14,392,538,9167250,5835,0 +12643,%2A004%2A,609,514,698670524,8600,0 +12644,093+JESTE%C5%9A+SOB%C4%84+LUB+KOGO%C5%9A+GRASZ,399,553,699382126,10475,0 +12645,Gravity,402,447,698962117,9486,0 +12646,Lord+Arsey+KING,578,583,848956513,10285,0 +12647,0032,462,393,699431255,9970,0 +12648,0347,446,610,698659980,10362,0 +12649,061,613,494,699573053,10373,0 +12650,ADEN,578,419,698588535,9730,0 +12651,A007,513,387,7758085,9925,0 +12652,Najlepszy+s%C4%85siad+014,596,445,699756210,8511,0 +12653,018,540,606,699189792,9741,0 +12654,NWO,392,523,849030226,12133,0 +12655,Podzi%C4%99kowa%C5%82+2,455,395,699796330,10303,0 +12656,s181eo18,399,455,393668,9902,0 +12657,%5B305%5D+Chor%C4%85giewka+na+wietrze,592,431,848985692,10600,0 +12658,.achim.,518,387,6936607,10311,0 +12659,SZYMI+PALACE+15,393,537,9167250,6725,0 +12660,0008,464,608,33900,8983,0 +12661,005,426,580,849084740,8003,0 +12662,Z+barba+017,410,569,225023,7436,0 +12663,Zeta+Reticuli+S,417,421,699323302,11417,0 +12664,004,610,469,8459255,10316,8 +12665,Wioska+lordtados,416,573,698526036,6647,0 +12666,016,574,406,849064752,10311,0 +12667,129+B01,402,557,699382126,6865,0 +12668,002,435,392,699783765,11130,0 +12669,0030+wolawce,430,415,3909522,10069,0 +12670,004,432,395,8740199,11130,0 +12671,%5B238%5D+WEST,601,452,848985692,10057,0 +12672,Gravity,401,444,698962117,9485,4 +12673,.003.,495,380,698489071,10595,0 +12674,W.181%2F04,607,535,2999957,10242,0 +12675,013,609,468,8459255,9910,0 +12676,PYRLANDIA+031+RYCERZ+MA%C5%81Y,562,592,33900,10153,0 +12677,A008,512,387,7758085,9925,0 +12678,009+ludki,610,517,8323711,10149,4 +12679,South+K45,573,414,699146580,10042,0 +12680,0009,430,410,3909522,9967,0 +12681,K44+x023,437,408,698364331,7641,0 +12682,001,414,574,9167250,9458,0 +12683,%2AINTERTWINED%2A%2A,509,625,698704189,9711,0 +12685,Brat447,389,511,699262350,10476,0 +12686,Wioska+Bartiii95,506,615,606407,10311,0 +12687,.013.,496,385,698489071,10316,0 +12688,027,546,395,849064752,10311,0 +12689,A.004,600,550,9188016,10000,0 +12690,K44+x006,440,404,698364331,8561,0 +12691,Najlepszy+s%C4%85siad+001,596,442,699756210,10273,3 +12692,056,545,398,849064752,10311,0 +12693,035+Witam+ponownie,605,454,698829590,10019,0 +12694,Osada+koczownik%C3%B3w,396,535,849030226,11116,1 +12695,Valhalla+Calling,598,558,848926293,9462,0 +12696,Wioska+barbarzy%C5%84ska,411,427,7462660,10068,0 +12697,%23050,448,602,699605333,10393,0 +12698,%5B349%5D+Chor%C4%85giewka+na+wietrze,583,424,848985692,10068,0 +12699,%2AINTERTWINED%2A,467,565,698704189,5880,0 +12700,Ddddd,419,579,225023,10495,0 +12701,012,609,465,849088515,9519,4 +12702,01+im+Trockiego,593,429,849037469,9809,0 +12703,z+014,558,598,699342219,10476,0 +12705,Sir+Hood+7,389,528,1804724,6846,0 +12706,ADEN,571,411,698588535,7810,0 +12707,%2A5501%2A+Everton,590,563,7973893,10287,9 +12708,Wioska,391,536,849084005,9570,0 +12709,036+Kabel+VGA,597,446,698829590,10019,0 +12711,181-004,585,575,8876551,3445,0 +12712,Szlachcic,388,475,6258092,10019,0 +12713,%5B304%5D+Chor%C4%85giewka+na+wietrze+nr2,592,432,848985692,10054,0 +12714,Coruscant+8,495,611,699383121,9528,0 +12715,Brat447,386,499,699262350,10484,0 +12716,005,563,408,849063849,10559,0 +12717,%5B313%5D+Chor%C4%85giewka+na+wietrze+-,597,438,848985692,10403,0 +12718,0079,600,517,699432672,10495,0 +12719,012.+Gloria+Victis,423,586,848886973,10449,0 +12720,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,465,608,8201460,10237,0 +12721,NOT%3F,403,552,9236866,4900,0 +12722,Kentin+ufam+Tobie,435,408,699783765,10000,0 +12723,Sir+Hood+4,388,529,1804724,10213,0 +12724,Lord+Arsey+KING,575,585,848956513,10285,0 +12725,%21Land+of+Fire,399,445,698962117,9488,9 +12727,Wioska+barbarzy%C5%84ska,567,589,6818593,9835,0 +12728,CALL+924,554,602,699784536,10311,0 +12729,PYRLANDIA+005+s+%2B+8K,568,591,33900,10495,0 +12730,026+Wioska,611,521,8323711,9958,0 +12731,152,581,418,849064752,10311,0 +12732,Suppi,418,541,699856962,10362,0 +12733,%5B225%5D+WEST,603,450,848985692,10132,0 +12734,.achim.,528,392,6936607,10311,0 +12735,021,538,606,699189792,9741,0 +12736,Wioska,385,508,849084005,10178,0 +12737,Lord+Arsey+KING,575,583,848956513,10285,0 +12738,Najlepszy+s%C4%85siad+011,600,445,699756210,9797,0 +12739,Wioska+Nevada+%28Nevada%29,415,571,698769107,9989,0 +12740,z+027,561,596,699342219,10237,0 +12741,.achim.,525,389,6936607,10311,0 +12742,DOM+8,565,408,849064614,9741,0 +12743,Mi%C4%99guszowiecki+Szczyt+Czarny,386,510,849013126,7741,0 +12744,Wioska,390,535,849084005,9441,0 +12745,019+MoonsteRR,611,511,8323711,10495,1 +12746,007,544,604,699189792,9742,0 +12747,B.003,410,566,849088243,9323,0 +12748,CALL+1008,526,611,699784536,10311,0 +12749,Ground+Level,479,612,8199417,10559,0 +12750,EKG+.%3A%3A.+Limak+x+Orlok,492,611,33900,10495,0 +12751,Maintenance+Hall,526,608,8199417,10495,0 +12752,Zeta+Reticuli+S,414,426,699323302,10997,0 +12753,0002,467,607,33900,10030,0 +12754,Gravity,400,446,698962117,9486,0 +12755,PYRLANDIA+010+S+%2B+8K,571,589,33900,10495,0 +12756,125+B13,400,554,699382126,9288,0 +12757,0096,457,398,699431255,9742,0 +12758,lo1,478,391,849093155,9967,0 +12759,020,611,480,699573053,10495,0 +12760,0017+I,435,409,3909522,10160,0 +12761,048,485,386,698739350,7266,0 +12762,Sir+Hood+2,392,531,1804724,10332,0 +12763,057,555,399,849064752,10311,0 +12764,NOT,415,427,9236866,10042,0 +12765,Prairie+Outpost,469,606,8199417,9892,0 +12766,008,607,526,698999105,10311,0 +12767,Sir+Hood+6,392,529,1804724,10178,0 +12768,Kiedy%C5%9B+Wielki+Wojownik,397,454,8632462,9791,9 +12769,Holistic+Town,504,615,699698253,9988,0 +12770,Sust4noL,613,503,699379895,10495,0 +12771,Civil+War,589,570,848926293,9608,0 +12772,042+-+A04,430,587,225023,10495,0 +12773,051.,593,441,849094609,4659,0 +12774,FAKE+OR+OFF,440,402,698231772,9821,0 +12775,Ok.,387,524,849030226,10143,5 +12776,%2A%2A+1+Czujesz+ten+dreszczyk+%3F,590,432,848985692,10469,0 +12777,007,605,538,699413040,9860,0 +12778,kto+ananasowy+pod+wod%C4%85+ma+dom,583,578,699628084,9797,0 +12779,s%C5%82odziute%C5%84ka+04,605,535,8013349,4340,0 +12780,NOT,420,422,9236866,10042,5 +12781,0087,459,396,699431255,9824,0 +12782,San+Jose,398,549,699425709,9637,0 +12783,Jezu+co+za+szpetny+ryj+mosz,399,449,699711723,9695,0 +12784,.achim.,526,390,6936607,10311,0 +12785,PYRLANDIA+011+S+%2B+C,573,590,33900,10559,0 +12786,018,606,470,849088515,10019,0 +12787,C.006,428,588,849088243,10226,0 +12788,%5B242%5D+WEST,602,456,848985692,10394,0 +12789,103,579,418,849064752,10311,0 +12790,017,569,410,849064752,10311,0 +12791,W.181%2F05,607,537,2999957,10242,0 +12792,MojeSzczytToTw%C3%B3jDno,536,390,828637,10495,0 +12793,049.+ALFI,473,564,8539216,1303,0 +12794,032.,610,470,8900955,9953,0 +12795,NOT,416,427,9236866,10042,0 +12796,Urojone+Elizjum,456,605,7249451,10223,0 +12797,FAKE+OR+OFF,438,405,698231772,9820,0 +12798,R%C4%99cznik+do+zmiany,388,483,699697558,10495,5 +12800,Teby_10,502,615,2585846,9638,0 +12801,R%C4%99cznik+do+zmiany,385,487,699697558,10495,0 +12802,013+Albo+pijesz+lufe,620,466,699272633,10474,0 +12803,Bagdad,468,394,8847546,10654,0 +12804,Lord+Arsey+KING,575,586,848956513,10285,1 +12805,.045.,472,390,698489071,10301,0 +12806,%5B302%5D+Chor%C4%85giewka+na+wietrze,592,433,848985692,10054,0 +12807,Brat447,385,504,699262350,10476,3 +12808,133+S015,402,560,699382126,7558,0 +12809,%5B365%5D+Chor%C4%85giewka+na+wietrze+%2B2,594,438,848985692,10293,0 +12810,Myk+i+do+kieszonki,379,514,9319058,9799,0 +12811,Bbbbb,419,580,225023,9810,0 +12812,Guardian,499,388,7758085,9925,0 +12813,006,606,459,849088515,10019,0 +12814,NOT,411,429,9236866,10042,0 +12815,Sir+Hood+8,389,529,1804724,10285,0 +12816,EKG,497,613,33900,10495,0 +12817,058,548,398,849064752,10311,0 +12818,Najlepszy+s%C4%85siad+008,600,443,699756210,9861,0 +12819,038+-+Barba,423,582,225023,10495,0 +12820,006+Denne+FO+181,505,389,7758085,9782,0 +12821,Bagdad,472,392,8847546,10654,0 +12822,181-002,587,575,8876551,3143,0 +12823,009+-+Mira,421,580,225023,10251,0 +12824,s181eo12,399,453,393668,9894,0 +12825,.achim.,536,394,6936607,10354,0 +12826,KR%C3%93L+PAPI+WIELKI,581,579,698191218,10000,0 +12827,012,543,603,699189792,9742,0 +12828,Wioska+barbarzy%C5%84ska,389,526,849030226,10830,0 +12829,%2A%2A%2A008+Sacramento,426,416,9291984,9507,0 +12830,NWO,388,525,849030226,10971,0 +12831,ok.,389,533,849030226,10160,0 +12832,Knowhere,373,514,699723284,10452,0 +12833,%5B0037%5D,452,398,8630972,10495,0 +12835,Piek%C5%82o+to+inni,483,388,848956765,10160,0 +12836,Teby_06,504,613,2585846,9638,0 +12837,035+O%C5%9Bka,613,517,8323711,8670,0 +12838,NWO,388,522,849030226,9850,0 +12839,C+003+Orzesze,419,582,849084740,7784,0 +12840,a+mo%C5%BCe+off+%3F+%3A%29,582,573,698768565,9560,0 +12841,Jehu_Kingdom_16_,625,471,8785314,9993,0 +12842,%2A017%2A,614,507,698670524,8383,0 +12843,010,614,550,6160655,10561,0 +12844,121+B09,402,556,699382126,8163,0 +12845,%7E024.,491,612,7139820,10495,0 +12846,00231+Wioska,430,411,3909522,10242,0 +12847,EXA,612,526,848967710,10252,0 +12848,03+Grzybek+Muchomorek,605,529,8013349,10062,0 +12849,%23+Szymi+7,393,534,699425709,9873,0 +12850,002buaa,408,565,9167250,9222,0 +12851,076+-+Kopalnia+tytanu,422,584,225023,8451,0 +12852,.achim.,535,394,6936607,10506,0 +12853,00051,533,608,848915531,9621,0 +12854,Piek%C5%82o+to+inni,490,389,848956765,10160,0 +12855,A0033,390,480,8841266,10362,0 +12856,Wioska,389,504,849084005,10178,0 +12857,006.+Ravenna,608,461,849091866,9179,0 +12858,Jaaa,586,577,698635863,9641,0 +12859,Bagdad,467,392,8847546,10654,0 +12860,Ww+006,442,600,849084740,10426,0 +12861,0324,447,600,698659980,10019,0 +12862,FAKE+OR+OFF,443,400,698231772,9816,0 +12863,018,614,493,849006412,10054,0 +12864,07+Ground+Zero,616,493,699377151,9061,0 +12865,scoti,486,613,699494488,10237,0 +12866,008+-+Majne,421,582,225023,10495,0 +12867,NOT%3F,401,548,9236866,10042,0 +12868,130+s001,402,555,699382126,10636,0 +12869,023,612,479,699573053,10495,0 +12870,z+016,559,593,699342219,10474,0 +12871,0021,446,599,699280514,9942,0 +12872,Knowhere,389,497,699723284,10000,0 +12873,020.,565,593,873575,9870,0 +12874,Napewno+to+nie+jest+off,491,391,848912265,10495,0 +12875,Piek%C5%82o+to+inni,485,394,848956765,10160,0 +12876,Wioska+barbarzy%C5%84ska,605,539,3364735,9922,0 +12877,Jigsaw,567,590,699364813,10495,0 +12878,A+001,611,476,849027653,9846,0 +12879,%5B0043%5D,457,395,8630972,10495,0 +12880,042+Vasperland,615,509,8323711,10495,6 +12881,Darma,425,398,356642,9835,0 +12882,Wioska,391,537,849084005,10178,0 +12884,Bagdad,474,391,8847546,10654,0 +12885,Wioska+barbarzy%C5%84ska,393,529,849030226,10479,0 +12886,011,546,394,1424656,9976,0 +12887,Atrium,520,612,8199417,10487,0 +12888,Wioska,388,514,849084005,10178,0 +12889,scoti,489,616,699494488,10223,0 +12890,065+-+Uxmal%2A%2A%2A,434,592,225023,6934,0 +12891,%5B361%5D+Chor%C4%85giewka+na+wietrze,593,438,848985692,10475,8 +12892,%2A026%2A,611,509,698670524,6446,0 +12893,00244+Wioska,432,412,3909522,10298,0 +12894,011.+Moria,486,612,699494488,10226,0 +12895,24.+Wioska+24,425,585,849091769,10232,0 +12896,MojeSzczytToTw%C3%B3jDno,532,389,828637,10474,0 +12897,Sir+Hood+5,388,530,1804724,9955,0 +12898,%5B309%5D+Chor%C4%85giewka+na+wietrze,589,431,848985692,10525,0 +12899,ZABAWA+-1-+Waldemar+Wielki,407,439,7462660,10122,0 +12900,019,607,468,849088515,10019,0 +12901,A039,444,405,8740199,10237,0 +12902,%23015.483%7C497,602,448,556154,9735,0 +12903,30+im+%C5%81udriego,588,431,849037469,9809,0 +12904,Wioska+X3,391,466,699523631,7731,0 +12905,004,607,467,849088515,10019,0 +12906,Bagdad,466,390,8847546,10654,0 +12907,%5B400%5D+Myszka+pod+miot%C5%82%C4%85,587,434,848985692,10068,0 +12908,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,546,699364813,7269,0 +12909,05+Przypadek,407,566,9167250,9199,0 +12910,KIELBA+093,443,600,699342219,9973,0 +12911,Combat+Simulator+Lounge,525,610,8199417,10495,0 +12912,a+mo%C5%BCe+off+%3F+%3A%29,573,587,698768565,9955,0 +12913,019,541,607,699189792,9744,0 +12914,A0007,389,482,8841266,10362,0 +12915,0632,446,591,698659980,10019,0 +12916,007.+Arpinum,609,461,849091866,10235,0 +12917,Wioska+sbbb,406,569,9167250,7799,0 +12918,%23010+A,464,610,33900,8997,0 +12919,Jaaa,608,465,698635863,10495,0 +12920,157,581,420,849064752,10311,0 +12921,Myk+i+do+kieszonki,378,511,9319058,9799,0 +12922,wielki+m,474,389,849093155,770,0 +12923,014,559,403,7271812,10495,0 +12924,A010,512,386,7758085,10002,0 +12925,.achim.,532,391,6936607,10311,0 +12926,Self+Made,577,589,699785935,10065,0 +12927,KONFA+TO+MARKA%2C+NARKA,388,473,698152377,10311,0 +12928,128+B02,400,553,699382126,9747,0 +12929,Szlachcic,389,487,6258092,10083,0 +12930,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,464,605,8201460,10237,0 +12931,CALL+1007,527,611,699784536,10375,0 +12932,153,579,420,849064752,10311,0 +12933,Bagdad,473,391,8847546,10654,0 +12934,021,555,398,699761749,10495,0 +12935,Kentin+ufam+Tobie,439,405,699783765,10000,0 +12936,South+K45,569,406,699146580,6702,0 +12937,z+021,555,596,699342219,10495,0 +12938,Wioska+barbarzy%C5%84ska,402,438,698884287,10285,0 +12939,033,614,499,849006412,10186,0 +12941,Kentin+ufam+Tobie,439,404,699783765,10000,0 +12942,K34+x003,465,394,698364331,10495,0 +12943,NIERAJ005,471,610,33900,10555,0 +12944,Najlepszy+s%C4%85siad+005,598,442,699756210,10495,0 +12945,Zeta+Reticuli+S,418,418,699323302,10887,0 +12946,Kiedy%C5%9B+Wielki+Wojownik,391,459,8632462,9835,0 +12947,Kiedy%C5%9B+Wielki+Wojownik,394,460,8632462,9086,0 +12948,nie+badz+smieszny+%3A%29,406,559,9167250,10362,0 +12949,-+006+-,552,604,849018239,10000,0 +12950,119+Wioska+barbarzy%C5%84ska,399,552,699382126,10479,0 +12951,EXA,609,524,848967710,10252,0 +12952,KONFA+TO+MARKA%2C+NARKA,389,467,698152377,10311,0 +12953,158,577,418,849064752,10311,0 +12954,bucks+x+kamiiiru,415,424,848955783,10971,0 +12955,%C5%9Amieszki,535,611,3454753,9117,0 +12956,CALL+913,557,600,699784536,10178,0 +12957,.achim.,531,390,6936607,10311,0 +12958,Jaaa,607,465,698635863,10476,0 +12959,x04,408,437,698884287,10285,0 +12960,%2A312%2A,515,612,606407,10297,0 +12961,MojeSzczytToTw%C3%B3jDno,529,388,828637,10476,0 +12962,002+Hattusa,601,557,699272880,9861,0 +12963,Taran+002,617,526,698562644,10311,0 +12964,EKG+M15,482,612,33900,8463,0 +12965,Elbl%C4%85g,513,609,606407,10311,0 +12966,118,560,400,849064752,10311,0 +12967,0005,468,607,33900,9809,6 +12968,0061,611,508,6510480,9843,0 +12969,004+U-Boot,503,387,7758085,9861,0 +12970,%C5%82uno+plus,398,521,1804724,10234,0 +12971,Piek%C5%82o+to+inni,476,390,848956765,10160,0 +12972,17.+Wioska+17,413,569,849091769,10019,0 +12973,South+K45,589,425,699146580,10042,0 +12974,ADEN,572,412,698588535,7950,0 +12975,HOTEL+1+%2A,576,414,849064614,9384,0 +12976,%2AINTERTWINED%2A,514,615,698704189,8390,0 +12977,bede+bronil+%3A%29,397,553,9167250,4743,0 +12978,A.016,415,576,849088243,10232,0 +12979,C+009+Tychy,417,580,849084740,8915,4 +12980,FAKE+OR+OFF,443,402,698231772,9821,0 +12981,Kiedy%C5%9B+Wielki+Wojownik,395,455,8632462,9976,0 +12983,ok.,389,534,849030226,10160,0 +12984,W%3D02.,611,474,7142659,10636,0 +12985,C+017+Jaworzno,416,579,849084740,8191,0 +12986,00061,535,606,848915531,10291,0 +12987,C.005,429,588,849088243,9465,0 +12988,18.+Wioska+18,426,585,849091769,10066,0 +12989,.achim.,532,393,6936607,10375,0 +12990,bucks+x+kamiiiru,421,420,848955783,10971,0 +12991,A004,515,387,7758085,9925,5 +12992,%23049,448,603,699605333,10393,0 +12993,007.+Gloria+Victis,424,588,848886973,10503,0 +12994,A04+Kross,612,488,699272880,10452,0 +12995,014,542,606,699189792,9741,0 +12996,NOT,412,428,9236866,9876,0 +12997,Mniejsze+z%C5%82o+0074,391,461,699794765,11036,0 +12998,Wioska+barbarzy%C5%84ska,411,428,7462660,10122,0 +12999,Mzm11,608,511,7142659,10495,0 +13000,Gravity,400,450,698962117,9505,0 +13001,Soldier+Side,597,558,848926293,9458,0 +13002,A0027,388,476,8841266,10362,0 +13003,General+Affairs,519,610,8199417,10495,0 +13004,FAKE+OR+OFF,442,399,698231772,9817,0 +13006,z+009,560,599,699342219,10475,0 +13007,C007,520,456,699299123,10971,0 +13008,PRO8L3M,388,513,7491093,10311,0 +13009,PYRLANDIA+030+Ramzez+s,560,594,33900,10273,0 +13010,Zeta+Reticuli+S,414,422,699323302,10997,0 +13011,PYRLANDIA+026+%2B+R,564,591,33900,10365,0 +13012,EKG+003+%2B+R,495,615,33900,10017,0 +13013,%23012,474,613,699605333,10393,0 +13014,.achim.,512,404,6936607,10311,0 +13015,128,545,389,849064752,10311,0 +13016,%5B331%5D+Chor%C4%85giewka+na+wietrze,586,428,848985692,10397,0 +13017,a+mo%C5%BCe+off+%3F+%3A%29,579,579,698768565,9771,1 +13018,PYRLANDIA+020+S,566,590,33900,10495,0 +13019,Piek%C5%82o+to+inni,476,388,848956765,10160,0 +13020,MORDOR+f,538,469,8155296,9589,0 +13021,059,555,397,849064752,10311,0 +13022,029+Carolina,608,470,7092442,10495,0 +13023,.achim.,528,390,6936607,10311,0 +13024,019,488,385,698739350,9761,0 +13025,A0161,378,475,8841266,10362,0 +13026,004+Night+Watch,390,520,849030226,10483,0 +13027,z+005,562,598,699342219,10476,0 +13028,018.+Gisela,591,569,699373599,10030,0 +13029,044+Wioska+HUSARIUS,404,564,699382126,9830,0 +13030,%5B0034%5D,450,399,8630972,10495,0 +13031,PYRLANDIA+024+s,568,588,33900,10052,9 +13032,Lord+Arsey+KING,574,585,848956513,10285,0 +13033,-+217+-,551,572,849018239,10000,0 +13034,D012,511,389,7758085,9861,0 +13036,037,599,559,699373599,10068,0 +13037,%5B335%5D+Chor%C4%85giewka+na+wietrze,588,424,848985692,10397,0 +13038,EKG+M03+%2B+KAC+T%C5%81,477,613,33900,10365,0 +13039,Z+barba+002,423,583,225023,10495,0 +13040,Piek%C5%82o+to+inni,477,387,848956765,10160,0 +13041,kto+ananasowy+pod+wod%C4%85+ma+dom,586,571,699628084,9861,0 +13042,016,608,468,8459255,10183,0 +13043,iWioska+barbarzy%C5%84ska,497,387,699368887,10237,0 +13044,0623,438,592,698659980,10019,0 +13045,bucks+x+kamiiiru,421,419,848955783,10971,0 +13046,Teby_11,501,617,2585846,9440,0 +13047,Kiedy%C5%9B+Wielki+Wojownik,393,454,8632462,9835,0 +13048,Szlachcic,458,394,698388578,10237,0 +13049,025.xxx,483,614,8612358,10078,0 +13050,ADEN,567,405,698588535,10120,0 +13051,Czekam+na+VS,534,383,698350371,10495,0 +13052,Land+of+Fire,397,446,698962117,9502,0 +13053,%5B347%5D+Chor%C4%85giewka+na+wietrze,586,423,848985692,10394,0 +13054,156,571,409,849064752,9890,0 +13055,Back+ln+Black,595,566,848926293,9493,0 +13056,Wioska,381,524,849084005,10178,0 +13057,Brat447,385,511,699262350,10083,0 +13058,Lord+Arsey+KING,580,584,848956513,10285,0 +13059,z+052,560,600,699342219,5029,0 +13061,%5B0042%5D,454,397,8630972,10495,0 +13062,R%C4%99cznik+do+zmiany,385,482,699697558,10495,0 +13063,krzysiek1293-vequ1,411,425,7462660,10122,0 +13064,Szlachcic,615,484,698867446,9802,0 +13065,132+B15,402,559,699382126,10354,0 +13066,016.+Athenae,608,463,849091866,9179,0 +13067,002,416,576,9167250,9370,0 +13068,NOT,413,427,9236866,10042,0 +13069,A0203,387,482,8841266,10362,0 +13070,011,605,548,6160655,10694,0 +13071,Bagdad,471,391,8847546,10654,0 +13072,Ww+004,442,597,849084740,10744,0 +13073,Bagdad,468,390,8847546,10178,0 +13074,047+-+A07%2A%2A%2A,434,591,225023,10495,0 +13075,Sector+7+Undercity+Station,512,595,8199417,10559,0 +13076,Wioska+barbarzy%C5%84ska1%28goodboy666%29,425,588,698769107,9976,0 +13077,Myk+i+do+kieszonki,389,512,9319058,9799,0 +13078,x14,408,430,698884287,10285,8 +13080,C.003,440,600,849088243,10228,0 +13081,Najlepszy+s%C4%85siad+009,601,441,699756210,10268,0 +13082,A0253,377,488,8841266,10362,0 +13083,Love+Bites,594,564,848926293,9541,0 +13084,059,483,389,698739350,9994,0 +13085,074+-+Znajd%C5%BAka,424,586,225023,10444,0 +13086,0005,534,609,848915531,11321,0 +13087,00111+Wioska,429,408,3909522,8440,0 +13088,Wioska,382,541,849084005,10178,0 +13089,To+moja,383,497,699265922,9816,0 +13090,Wioska+barbarzy%C5%84ska,388,468,699523631,10476,0 +13091,z+011,562,596,699342219,10476,0 +13092,W.181%2F02,608,538,2999957,10242,7 +13093,Sparta_52,482,583,2585846,9638,0 +13094,%5B362%5D+Chor%C4%85giewka+na+wietrze,595,440,848985692,10495,0 +13095,Bagdad,469,390,8847546,10178,0 +13096,K34+x006,467,393,698364331,10362,1 +13097,075,613,528,699373599,9742,0 +13098,003+Spodziewana+niespodzianka,503,388,7758085,9861,0 +13099,%230036,539,623,1536231,10495,0 +13100,Tu+powstaje+co%C5%9B+wi%C4%99kszego,428,586,849028088,9664,0 +13101,-+265+-,550,602,849018239,10000,0 +13102,032+Columbus,423,415,9291984,10479,0 +13103,Lord+Arsey+KING,580,582,848956513,10285,0 +13104,SZYMI+PALACE+3,392,541,9167250,7249,0 +13105,EKG+.%3A%3A.+Siwyy8848%2F2,499,616,33900,10495,0 +13106,Naboo+5,493,615,699383121,9835,0 +13107,004.+Syracusae,612,469,849091866,9436,0 +13108,NIERAJ004,468,611,33900,10251,0 +13109,Gravity,403,444,698962117,9489,6 +13110,062,614,482,699573053,10495,0 +13111,003,556,399,7271812,10495,4 +13112,084+MEHEHE,493,611,6116940,10019,0 +13113,Gattacka,539,390,699298370,9691,0 +13114,Wioska+barbarzy%C5%84ska,394,461,698807570,10068,0 +13115,Sk%C5%82ad,510,612,606407,10290,0 +13116,0006+R,427,410,3909522,10160,0 +13117,Bagdad,469,395,8847546,10654,0 +13118,Wioska+barbarzy%C5%84ska,412,429,7462660,10068,0 +13119,.achim.,531,394,6936607,10311,0 +13120,A.007,604,554,9188016,10000,0 +13121,Wioska+barbarzy%C5%84ska,412,431,698884287,10285,0 +13122,Brat447,388,517,699262350,4937,4 +13123,%5B367%5D+Chor%C4%85giewka+na+wietrze,589,424,848985692,5335,0 +13124,.achim.,529,391,6936607,10311,0 +13125,007.+Angband,484,613,699494488,10478,1 +13126,A.011,602,554,9188016,10000,0 +13127,ok.,390,534,849030226,10484,0 +13128,bucks+x+kamiiiru,414,423,848955783,10147,0 +13129,El+Escorial,397,551,698916948,5474,0 +13130,001+Bunia,401,542,699856962,10160,0 +13131,EKG+M01+Mavreli,477,611,33900,10495,0 +13132,036,493,617,699878511,10475,0 +13133,Urojone+Elizjum,456,609,7249451,10237,0 +13134,KONFA+TO+MARKA%2C+NARKA,390,466,698152377,10311,0 +13135,027,543,395,1424656,9835,0 +13136,Lhotse,384,499,849013126,9222,0 +13137,Teby_09,506,614,2585846,9638,0 +13138,0006,464,607,33900,9983,0 +13139,Teby_12,504,617,2585846,9638,0 +13140,Wioska,386,512,849084005,10178,0 +13141,R%C4%99cznik+do+zmiany,385,486,699697558,10252,0 +13142,0004,604,545,477415,10495,0 +13143,Szlachcic,615,488,698867446,10301,0 +13144,asd,393,543,849095014,6446,0 +13145,%23060,478,617,699605333,10393,0 +13146,%2A+IDE+po+WAS+%21,594,432,848985692,10112,0 +13148,082+Missisipi,611,488,7092442,10495,0 +13150,0017,611,523,6510480,10322,0 +13151,0624,437,593,698659980,10019,0 +13152,A008+Sylwester+z+jedynka,603,447,699722599,10487,0 +13154,Farmie+PP,568,605,8627359,9271,0 +13155,006,497,385,698739350,9761,0 +13156,13+im+Gad%C5%BCyjewa,589,428,849037469,9809,0 +13158,%5B348%5D+Chor%C4%85giewka+na+wietrze,582,420,848985692,10051,0 +13159,Cet4boN,615,503,699379895,10160,0 +13160,Bagdad,469,392,8847546,10178,9 +13161,Horyzont+zdarze%C5%84,540,608,7581876,10019,0 +13162,Piek%C5%82o+to+inni,486,386,848956765,10160,0 +13164,055+-+%C5%81atwizna,410,572,225023,10495,0 +13165,Last+Train+for+Bound+Sector+7,525,615,8199417,10495,0 +13166,Brusy,412,569,698769107,8758,0 +13167,-+003+-,552,603,849018239,10000,0 +13168,FAKE+OR+OFF,438,402,698231772,9822,0 +13169,DOM+9,564,408,849064614,9750,0 +13170,Ohara,493,387,699433558,10311,0 +13171,081+Montana,612,489,7092442,10362,7 +13172,Wioska+stary56,564,592,699364813,10495,0 +13173,Wioska,383,501,849084005,10178,0 +13174,K34+-+%5B037%5D+Before+Land,466,388,699088769,10259,0 +13175,KONFA+TO+MARKA%2C+NARKA,390,465,698152377,10311,0 +13176,0000026%25,428,591,849089881,9989,0 +13177,Bucksbarzy%C5%84sKamiiiru,385,515,848955783,9846,3 +13178,PYRLANDIA+012%24,574,591,33900,10495,0 +13179,Jaaa,587,576,698635863,10416,0 +13180,z+053,562,593,699342219,10220,0 +13181,aaaa,448,400,698231772,9833,0 +13182,0639,436,598,698659980,10019,0 +13183,Lord+Arsey+KING,579,586,848956513,10285,6 +13184,Szlachcic,463,394,698388578,10237,0 +13185,A003,514,386,7758085,9925,2 +13186,Knowhere,388,493,699723284,10000,0 +13187,003+stal,589,571,1715091,9615,3 +13188,Z+002,562,597,699342219,10474,0 +13189,%5B351%5D+Chor%C4%85giewka+na+wietrze,600,439,848985692,9114,0 +13190,0010+S,433,408,3909522,10357,0 +13191,bucks+x+kamiiiru,414,425,848955783,10971,0 +13192,ADEN,567,409,698588535,10898,0 +13193,%2AAnihilacja,592,428,848985692,10063,0 +13194,-+008+-,550,604,849018239,10000,0 +13195,Mniejsze+z%C5%82o+0073,389,462,699794765,11079,0 +13196,%5B0039%5D,454,398,8630972,10495,0 +13198,Gravity,401,443,698962117,9489,0 +13199,0349,443,602,698659980,10019,0 +13200,09+Monza,616,507,699377151,9548,0 +13201,Wioska+barbarzy%C5%84ska,420,417,699660539,9606,0 +13202,Mniejsze+z%C5%82o+0030,391,462,699794765,9146,0 +13203,0011,429,407,3909522,10021,0 +13204,%23042,451,605,699605333,10728,0 +13205,015,605,545,6160655,10396,0 +13206,Wioska+Pawe%C5%82+I+Wspanialy,417,417,699660539,9725,0 +13207,C+005+Krakow,416,574,849084740,9233,0 +13208,0329,449,606,698659980,10495,0 +13209,NOT,413,425,9236866,10042,0 +13210,%5B318%5D+Chor%C4%85giewka+na+wietrze,592,436,848985692,10394,0 +13211,.achim.,541,391,6936607,10311,0 +13212,FAKE+OR+OFF,446,399,698231772,9822,0 +13213,0008,605,549,477415,10495,0 +13215,.achim.,534,393,6936607,10311,0 +13216,W.181%2F07,611,533,2999957,10242,0 +13217,Lord+Arsey+KING,579,584,848956513,10285,0 +13218,Myk+i+do+kieszonki,386,514,9319058,9799,0 +13220,%23+Szymi+3,395,542,699425709,9685,0 +13221,031,613,481,699573053,10495,0 +13222,09+im+Watutina,591,429,849037469,9809,0 +13223,EKG+004+%2B+R,495,614,33900,10322,0 +13224,%2A011%2A,613,506,698670524,8692,0 +13225,006,568,411,849064752,10311,4 +13226,002,525,623,699336777,9825,0 +13227,%23+Szymi+1,394,544,699364813,8197,0 +13228,0132,456,604,698659980,10495,0 +13229,So%C5%82tys+Twojej+Wsi,439,391,849027025,9384,0 +13230,Teby_07,504,614,2585846,9638,0 +13231,001,616,499,849006412,9819,0 +13232,022,492,386,698739350,9825,0 +13233,Wioska,389,538,849084005,10068,0 +13234,A.008,603,553,9188016,10000,0 +13235,Ethan+Hunt+09,617,494,698702991,8536,0 +13236,NWO,387,525,849030226,10951,0 +13237,KR%C3%93L+PAPI+WIELKI,578,584,698191218,10000,0 +13238,013,614,496,849006412,10294,0 +13239,%23059,481,616,699605333,10636,0 +13240,0038,616,509,6510480,9864,0 +13241,%2A%2ANocne+%C5%82akocie,584,421,848985692,10233,0 +13242,004,408,512,699851427,10042,0 +13243,Wioska,390,537,849084005,10178,0 +13244,Kentin+ufam+Tobie,435,403,699783765,10000,0 +13245,009,545,603,699189792,9745,0 +13246,Winter+is+coming,504,574,699364813,9833,0 +13247,FAKE+OR+OFF,444,397,698231772,9814,0 +13248,%2AINTERTWINED%2A,514,614,698704189,9711,0 +13249,%5B0108%5D,453,397,8630972,10495,0 +13250,%5B219%5D+WEST,607,459,848985692,10049,0 +13251,006+Prawie+noc...,389,531,849030226,10957,0 +13252,-+009+-,550,603,849018239,10000,0 +13253,Szlachcic,582,418,699170684,9835,0 +13254,Naboo+3,489,614,699383121,8380,0 +13255,Wioska,384,506,849084005,10178,0 +13256,Naterki+003,575,415,699812571,2141,0 +13257,kto+ananasowy+pod+wod%C4%85+ma+dom,584,578,699628084,9797,0 +13258,004,607,543,6160655,10913,0 +13259,Gattacka,591,493,699298370,9372,0 +13260,118+B07,400,558,699382126,7915,0 +13261,%5B226%5D+WEST+Punch,602,453,848985692,10068,0 +13262,K34+-+%5B071%5D+Before+Land,454,392,699088769,9924,0 +13263,Glatteis,562,558,699785935,10311,0 +13264,C.004,433,597,849088243,10401,0 +13265,0009+MzM,586,578,698416970,9258,0 +13266,0093,455,439,3909522,9247,0 +13267,051,512,385,698739350,8141,0 +13268,009+-+Palma+de+Mallorca,599,495,698342159,10019,0 +13269,Szlachcic,593,508,699759128,9907,0 +13270,Bucksbarzy%C5%84sKamiiiru,384,514,848955783,5502,0 +13271,ccc,606,551,7047342,10495,0 +13272,DOM+3,564,402,849064614,9744,0 +13273,ADEN,592,430,698588535,10216,0 +13274,011,615,495,849006412,9681,0 +13275,s181eo05,394,452,393668,9902,0 +13276,Mniejsze+z%C5%82o+0022,387,488,699794765,9375,8 +13277,Zeta+Reticuli+S,416,421,699323302,11321,0 +13278,-+013+-,548,602,849018239,10000,0 +13279,.achim.,520,387,6936607,10311,0 +13280,A011,513,385,7758085,9925,0 +13282,0206,398,508,7085510,5277,0 +13283,P+Konfederacja,457,442,848915730,10325,0 +13284,%5B228%5D+WEST,606,452,848985692,10051,0 +13285,NIE+DZI%C5%9A+HEJKA,399,559,8539216,941,0 +13286,-+010+-,549,605,849018239,10000,0 +13287,kto+ananasowy+pod+wod%C4%85+ma+dom,585,579,699628084,9797,0 +13288,A.003,600,560,9188016,10000,0 +13289,Oslo+%28Mieszko+1995%29,416,578,698769107,8814,0 +13291,A0005,387,475,8841266,10362,5 +13292,Wioska,379,522,849084005,10178,0 +13293,Wioska+barbarzy%C5%84ska,406,571,9167250,6033,0 +13294,Z+barba+006,426,589,225023,10495,0 +13295,SZYMI+PALACE+13,392,544,699364813,6015,0 +13296,007,550,396,1424656,9825,0 +13297,%5B369%5D+Chor%C4%85giewka+na+wietrze,590,426,848985692,7218,0 +13298,Brat447,385,507,699262350,10066,0 +13299,0038,429,405,848913037,8712,0 +13300,South+K35,552,396,699146580,10042,0 +13301,C.008,429,592,849088243,9866,0 +13302,Bocianikson002,610,541,7528491,9952,0 +13303,035+-+lowe,421,586,225023,10283,1 +13304,A0009,382,482,8841266,10362,0 +13305,Wioska+sbb,406,572,9167250,7790,0 +13306,Gattacka,538,390,699298370,9389,0 +13307,nie+masz+wiecej+heh+dawaj+ofy,393,542,849095014,5486,0 +13308,Teby_08,506,613,2585846,9638,0 +13309,%5B366%5D+Chor%C4%85giewka+na+wietrze,596,440,848985692,10475,0 +13310,034+-+B09.%2A%2A%2A,439,598,225023,10495,0 +13311,012+Rivendell,610,533,8013349,9814,0 +13312,C+013+Be%C5%82k,420,587,849084740,10431,0 +13313,Piek%C5%82o+to+inni,483,386,848956765,10160,0 +13314,D021,505,383,7758085,9925,0 +13315,Wioska,385,518,849084005,10178,0 +13316,A.012,602,553,9188016,10000,0 +13317,010,543,607,699189792,9741,0 +13318,008+legancko,604,546,9238175,10559,0 +13319,Szlachcic,585,504,699759128,9835,0 +13320,Z+barba+018,419,585,225023,9920,0 +13321,ADEN,520,381,698588535,9737,0 +13322,scoti,487,614,699494488,10217,0 +13323,BoOmBaa..,445,395,6169408,10495,0 +13324,CALL+920,553,602,699784536,10311,0 +13325,Kentin+ufam+Tobie,435,406,699783765,10000,0 +13326,007,495,385,698739350,9761,0 +13327,BoOmBaa..,440,398,6169408,9472,0 +13328,ZABAWA+-3-+Waldemar+Wielki,405,438,698884287,10285,0 +13329,A0034,386,482,8841266,10362,0 +13330,Galia+2,599,440,848989855,7715,0 +13331,Land+of+Fire,398,445,698962117,9486,6 +13332,036+Pot%C4%99%C5%BCny+Dzban,389,554,699382126,10476,0 +13333,FAKE+OR+OFF,437,401,698231772,9822,0 +13334,002+Troja,609,530,8013349,9781,0 +13335,%2A302%2A,508,615,606407,10291,0 +13336,Wioska,386,521,849084005,10178,0 +13337,PYRLANDIA+003+S,569,592,33900,10495,0 +13338,%5B229%5D+WEST,606,453,848985692,10009,0 +13339,EKG+002+%2B+R,498,616,33900,10311,0 +13340,Wioska+barbarzy%C5%84ska,409,430,698884287,10285,0 +13341,Knowhere,385,497,699723284,10374,0 +13342,z+015,559,597,699342219,10476,0 +13343,Legion+pierwszy+upad%C5%82y,567,596,699364813,10495,0 +13344,Mniejsze+z%C5%82o+0018,390,461,699794765,8244,0 +13345,12+im+Chmyrowa,589,427,849037469,9809,0 +13346,South+K45,573,410,699146580,6332,0 +13347,Wioska+barbarzy%C5%84ska,592,574,1715091,9835,0 +13348,20.+Wioska+20,426,586,849091769,10030,0 +13349,Jaaa,603,433,698635863,10375,0 +13350,EKG+.%3A%3A.+Siwyy8848%2F3,498,617,33900,10495,0 +13351,10.+Ravus+Nox+Fleuret,520,616,8199417,10495,0 +13352,Wioska+barbarzy%C5%84ska,391,534,849030226,10484,0 +13353,014,603,545,6160655,10693,0 +13354,EKG+zderek,497,614,33900,10137,0 +13355,Fappoleon,494,388,699433558,10311,0 +13356,Wioska+barbarzy%C5%84ska,406,433,698884287,10285,0 +13357,EKG+006,496,614,33900,10143,0 +13358,007,561,402,849063849,9703,0 +13359,Piwna+09,607,430,699812007,9294,0 +13360,021.+Gloria+Victis,425,587,848886973,9924,0 +13361,A0001,384,477,8841266,10362,0 +13362,MojeSzczytToTw%C3%B3jDno,528,387,828637,10474,0 +13363,030,602,560,6160655,10580,0 +13364,021,612,480,699573053,10495,0 +13365,.achim.,538,400,6936607,11366,0 +13366,0029,389,468,6258092,10795,0 +13367,Wioska+barbarzy%C5%84ska,386,528,849030226,10971,0 +13368,%23013,473,611,699605333,10393,0 +13369,B.007,410,573,849088243,10559,0 +13370,x01,405,434,698884287,10285,0 +13371,K34+x013,466,389,698364331,7011,0 +13372,0020,602,548,477415,10495,3 +13373,74k%24+Grvvyq,548,524,699676005,10495,0 +13374,%5B0029%5D,449,397,8630972,10495,0 +13375,Najlepszy+s%C4%85siad+002,597,442,699756210,9925,0 +13376,13.+Tifa+Lockhart,520,613,8199417,10559,0 +13377,%7E057.,501,615,7139820,10495,0 +13378,Najlepszy+s%C4%85siad+007,600,442,699756210,9859,7 +13379,0002+MzM,603,557,698416970,9630,0 +13380,Land+of+Fire,397,444,698962117,9494,0 +13381,A0012,384,482,8841266,10362,0 +13383,A0020,384,481,8841266,10362,0 +13384,W.181%2F17,613,529,2999957,10242,0 +13385,Gattacka,539,391,699298370,9768,0 +13386,067+-+LG%2A%2A%2A,435,597,225023,8466,0 +13387,NOT,418,420,9236866,10042,0 +13388,A.006,601,558,9188016,10000,0 +13389,028,584,417,849064752,10311,0 +13390,023+-+B05.%2A%2A%2A,441,598,225023,10495,0 +13391,089+KO%C5%83CZY+SI%C4%98+TW%C3%93J+CZAS,395,552,699382126,10478,0 +13392,Land+of+Fire,398,444,698962117,9486,0 +13393,055.+Singidunum,603,443,849091866,8822,0 +13394,091+POZOSTAJESZ+BEZ+SZANS,399,558,699382126,10539,0 +13395,016+YouAreNext,390,557,699382126,9804,0 +13396,R%C4%99cznik+do+zmiany,384,486,699697558,10495,0 +13397,009,554,401,699761749,10495,0 +13398,Wioska,386,520,849084005,10178,0 +13399,South+K45,588,426,699146580,10042,0 +13400,003.+Byzantium,610,462,849091866,9071,1 +13401,007,493,618,699494488,10311,0 +13403,D05,617,482,849093742,10160,0 +13404,004.+Oxenfurt,562,400,699799629,10495,0 +13406,Bocianikson003,611,540,7528491,9950,0 +13408,063,476,387,698739350,9761,0 +13410,03.+Pusty+w+%C5%9Brodku,402,565,9167250,8862,0 +13411,107+ZERO+ZERO+SIEDEM,398,553,699382126,10495,0 +13412,Myk+i+do+kieszonki,385,514,9319058,9799,0 +13414,Ethan+Hunt+10,616,485,698702991,9843,0 +13415,%23030,460,607,699605333,10728,0 +13416,Kiedy%C5%9B+Wielki+Wojownik,391,455,8632462,9835,0 +13417,043.,598,561,699373599,10068,0 +13418,Optymistycznie,613,555,699501322,2946,0 +13419,Unieszewo+004,575,413,699812571,1560,0 +13420,Gravity,402,449,698962117,9494,0 +13421,.achim.,526,388,6936607,10311,0 +13422,R%C4%99cznik+do+zmiany,383,481,699697558,10495,4 +13423,057,485,383,698739350,8137,0 +13424,16+im+Jekiela,591,427,849037469,9809,0 +13425,%5B314%5D+Chor%C4%85giewka+na+wietrze,598,437,848985692,10394,0 +13426,126+B06,399,561,699382126,8047,0 +13427,-+002+-,548,603,849018239,10000,4 +13428,Sk%C5%82ad,509,614,606407,10291,0 +13429,A019,510,382,7758085,9925,0 +13430,Lord+Arsey+KING,583,582,848956513,10285,0 +13431,A0254,382,492,8841266,10362,0 +13432,KONFA+TO+MARKA%2C+NARKA,388,466,698152377,10311,0 +13433,%5B0031%5D,451,396,8630972,10495,0 +13435,Myk+i+do+kieszonki,383,515,9319058,7237,4 +13436,Stage+group+B3,421,543,699856962,9781,0 +13437,D015,509,387,7758085,9861,0 +13439,South+K45,596,431,699146580,10042,3 +13440,%2AINTERTWINED%2A,508,625,698704189,9711,0 +13441,002,404,431,699788305,10019,0 +13442,EKG+.%3A%3A.+Mat26%2F2,493,614,33900,10237,0 +13443,%23051,449,602,699605333,10393,0 +13444,Mniejsze+z%C5%82o+0076,390,462,699794765,11079,0 +13445,%23003.484%7C497,603,448,556154,9735,0 +13446,087,615,493,699573053,10103,0 +13447,Z+barba+001,422,588,225023,8732,0 +13448,D016,507,386,7758085,9861,0 +13449,A0228,377,490,8841266,10362,0 +13450,%5B368%5D+Chor%C4%85giewka+na+wietrze,590,425,848985692,10391,0 +13451,W.181%2F08,614,531,2999957,10375,0 +13452,EKG+M04+%2B+KAC+2+WZ,476,613,33900,10194,0 +13454,011,603,546,699413040,9860,0 +13455,00355+Refugia,428,419,3909522,9886,0 +13456,Konfederacja,467,387,848915730,9917,0 +13457,%5B008%5D+Dreabe+dig,602,534,848985692,10294,0 +13458,KONFA+TO+MARKA%2C+NARKA,387,464,698152377,10311,0 +13459,Zeta+Reticuli+S,417,419,699323302,11188,0 +13460,0200,453,604,698659980,10495,0 +13461,BoOmBaa..,444,396,6169408,10495,0 +13462,.achim.,521,386,6936607,10311,0 +13463,A+005,614,472,7915966,10043,0 +13464,%5B088%5D,566,557,8000875,9902,0 +13465,%2AINTERTWINED%2A,516,616,698704189,9276,0 +13466,Myk+i+do+kieszonki,373,515,9319058,9799,0 +13467,Naboo+2,492,614,699383121,9528,0 +13468,028,489,384,698739350,9761,0 +13469,Aaaaa,420,580,225023,10495,0 +13470,.achim.,542,393,6936607,9107,0 +13471,%2A307%2A,511,613,606407,10292,0 +13472,024,617,510,849006412,6130,0 +13473,C+004+Wyry,418,580,849084740,7794,0 +13474,Jaaa,598,585,698635863,10495,0 +13475,%23+Szymi+2,395,544,699364813,6689,0 +13476,W.181%2F16,610,536,2999957,10242,0 +13477,x07,406,430,698884287,10285,0 +13478,Land+of+Fire,398,443,698962117,9505,0 +13479,-+047+-,542,609,849018239,10000,0 +13480,%5B240%5D+WEST,602,451,848985692,10057,0 +13481,OSP,419,573,225023,8872,0 +13482,EKG+M16,484,612,33900,9355,0 +13483,%5B324%5D+Chor%C4%85giewka+na+wietrze,596,439,848985692,10397,0 +13484,%2A+Zagrasz+w+kotka+i+myszk%C4%99%3F,585,420,848985692,10183,0 +13485,Wioska+barbarzy%C5%84ska,419,419,699660539,10009,0 +13486,Wioska,384,519,849084005,10178,0 +13487,scoti,489,617,699494488,10237,0 +13488,a+mo%C5%BCe+off+%3F+%3A%29,575,589,698768565,9256,0 +13489,%5B0033%5D,449,395,8630972,10495,0 +13490,South+K45,595,432,699146580,10042,0 +13491,060.+Tergeste,604,442,849091866,8841,0 +13492,045+Ithilien,405,562,699382126,10475,1 +13494,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,396,545,699364813,6219,0 +13495,Bucksbarzy%C5%84sKamiiiru,436,529,848955783,10971,0 +13496,0015+Szlachcic,433,410,3909522,10083,0 +13497,0002,424,411,3909522,10495,3 +13498,0031,451,379,699431255,10544,0 +13499,Ok.,387,527,849030226,10543,3 +13500,Wioska+barbarzy%C5%84ska,402,436,698884287,10285,0 +13501,Wioska,387,503,849084005,10178,0 +13503,PowerPunch,615,511,699379895,10252,0 +13504,033,486,382,698739350,9761,0 +13505,Eeeee,420,581,225023,8453,0 +13506,Naboo+1,490,614,699383121,8794,0 +13507,Kiedy%C5%9B+Wielki+Wojownik,392,454,8632462,9835,0 +13508,012,551,399,699761749,10495,0 +13509,Zadupie,412,573,869195,2269,0 +13510,014,613,483,699573053,10495,0 +13511,Wioska+barbarzy%C5%84ska,420,418,699660539,9708,0 +13512,--003--,432,597,225023,10342,0 +13513,%C5%9Amieszki,532,614,3454753,9055,0 +13514,%5B0006%5D,449,396,8630972,10495,9 +13516,EKG+.%3A%3A.+Siwyy8848%2F7,500,617,33900,10495,2 +13517,End+of+the+Road,519,615,8199417,10559,0 +13518,Ethan+Hunt+08,617,490,698702991,9816,0 +13519,Galia,598,441,848989855,9996,0 +13521,%5B308%5D+Chor%C4%85giewka+na+wietrze,596,434,848985692,10373,0 +13522,159,578,415,849064752,10311,0 +13523,%5B363%5D+Chor%C4%85giewka+na+wietrze,596,438,848985692,10474,5 +13524,Jaaa,609,463,698635863,10269,0 +13525,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,550,699364813,5790,0 +13526,Kentin+ufam+Tobie,389,443,699783765,10000,0 +13527,Jaaa,571,593,698635863,9982,8 +13528,C+010,567,392,6384450,10362,0 +13529,Mniejsze+z%C5%82o+0077,388,459,699794765,10930,0 +13530,Lord+Arsey+KING,577,585,848956513,10285,0 +13531,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,459,612,8201460,10237,0 +13532,.001.,495,381,698489071,10316,0 +13533,KONFA+TO+MARKA%2C+NARKA,387,474,698152377,10311,0 +13534,Ethan+Hunt+05,617,485,698702991,9750,0 +13535,012+%28Popeye14%29,415,582,698769107,9835,1 +13536,Brat447,384,505,699262350,10069,0 +13537,006.+Gloria+Victis,444,600,848886973,10595,0 +13538,Wioska+barbarzy%C5%84ska,591,570,6929240,9093,0 +13539,C001+Las+Noches,608,560,8096537,9742,0 +13540,Ethan+Hunt+07,618,492,698702991,9664,0 +13541,scofield+darmiarz+mehehe,487,613,699494488,10247,0 +13542,Wioska,383,500,849084005,10178,0 +13543,0000021%40,433,598,849089881,9707,0 +13544,%23039,483,613,699605333,10393,0 +13545,FKG+01-23,424,413,356642,9835,0 +13546,%5B0007%5D,420,415,8630972,10495,0 +13547,008,618,498,849006412,9879,0 +13548,123.+Z%C5%82ote+Wzg%C3%B3rza,618,474,8337151,10083,0 +13549,Brat447+XXX,382,499,699262350,10481,2 +13550,%23+Szymi+5,391,545,699604515,5713,0 +13551,Gravity,401,445,698962117,9484,0 +13552,11+im+%C5%81ukszyna,591,428,849037469,9809,0 +13553,%5B0028%5D,449,394,8630972,10495,0 +13554,%5B350%5D+Chor%C4%85giewka+na+wietrze,588,422,848985692,10068,0 +13555,%7E073.,486,614,7139820,10495,0 +13556,08+Suuuuu,405,568,9167250,7665,0 +13557,Lord+Arsey+KING,582,585,848956513,10285,0 +13558,027+Wioska,612,521,8323711,10478,0 +13559,0008,426,411,3909522,9886,0 +13560,%5B224%5D+WEST,608,459,848985692,10159,0 +13561,072+-+Antwerpia,421,587,225023,8878,0 +13562,ww+003,443,598,849084740,9745,3 +13563,KONFA+TO+MARKA%2C+NARKA,386,465,698152377,10311,0 +13564,HOTEL+2,576,415,849064614,9742,0 +13565,%5B357%5D+Chor%C4%85giewka+na+wietrze,591,432,848985692,10479,0 +13566,033,591,576,699373599,10068,5 +13568,FAKE+OR+OFF,437,404,698231772,9823,0 +13569,043+InnyNizWszyscy,541,389,699491076,10001,0 +13570,124+Wioska+barbarzy%C5%84ska,399,562,699382126,10029,0 +13571,127+s002,400,560,699382126,7344,0 +13572,%23051.,616,486,556154,9735,0 +13574,%5B315%5D+Chor%C4%85giewka+na+wietrze,598,439,848985692,10403,0 +13575,Wioska+sb,405,572,9167250,9206,0 +13577,%2A309%2A,511,617,606407,10295,0 +13578,Horyzont+zdarze%C5%84,536,621,7581876,10019,0 +13579,MojeSzczytToTw%C3%B3jDno,526,387,828637,10476,0 +13580,003.xxx,466,611,8612358,9914,4 +13581,Bucksbarzy%C5%84sKamiiiru,380,516,848955783,9011,0 +13582,A0014,384,484,8841266,10362,0 +13583,NIERAJ007,467,609,33900,10006,0 +13584,%5B206%5D+WEST,606,448,848985692,9975,6 +13585,010+Anatol,617,519,8323711,10495,0 +13586,016+Jestem+na+tak,600,441,698829590,10479,0 +13587,Kiedy%C5%9B+Wielki+Wojownik,389,457,8632462,9835,0 +13588,Wi%C4%99cbork,416,581,698769107,10019,5 +13589,003,497,383,698739350,9761,0 +13590,Tuchola,412,575,698769107,9835,0 +13591,008.+Brundisium,611,465,849091866,9182,0 +13593,K34+-+%5B068%5D+Before+Land,457,391,699088769,10016,0 +13595,015.+Gloria+Victis,424,592,848886973,10559,0 +13596,-+020+-,546,608,849018239,10000,0 +13597,Wioska+Woki606,383,484,699523631,10474,0 +13598,A0028,388,478,8841266,10362,0 +13599,09+Tytanowy+kr%C4%99gos%C5%82up%28Maczeta.%29,417,568,698769107,9835,0 +13600,FAKE+OR+OFF,442,398,698231772,9816,0 +13601,Bucksbarzy%C5%84sKamiiiru,386,515,848955783,7778,0 +13602,%5B0008%5D+Raf,424,410,8630972,10495,0 +13603,Ethan+Hunt+06,614,492,698702991,9653,0 +13604,scoti,491,618,699494488,10217,0 +13605,South+K35,553,396,699146580,9809,0 +13606,K44+x029,433,404,698364331,6602,0 +13607,036,485,382,698739350,9761,0 +13609,NIERAJ002,469,611,33900,10215,0 +13610,060,576,411,849064752,10311,3 +13611,Szlachcic,455,392,698388578,10237,0 +13612,010.+Gloria+Victis,425,591,848886973,10441,0 +13613,095+B%C4%98D%C4%98+ICH+POZDRAWIA%C4%86,411,553,699382126,11381,0 +13614,0108,461,550,698659980,8507,0 +13615,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,547,699364813,5732,0 +13616,011+Anatol,616,518,8323711,10495,0 +13617,037,614,487,849006412,9871,0 +13618,FAKE+OR+OFF,446,400,698231772,9819,0 +13619,Wioska+wymiany+surowc%C3%B3w,609,539,2999957,10242,0 +13620,%5B316%5D+Chor%C4%85giewka+na+wietrze,597,439,848985692,10406,0 +13621,%23005.485%7C496,604,447,556154,9735,0 +13622,012.+Messana,612,468,849091866,9182,0 +13623,Kentin+ufam+Tobie,433,402,699783765,10000,0 +13624,Naboo,491,615,699383121,8380,0 +13625,%7E091.,495,616,7139820,10495,0 +13626,0004,423,412,3909522,10393,0 +13627,Land+of+Fire,398,450,698962117,9489,0 +13628,Gryfios+011,615,533,698666810,10495,0 +13629,sony911,562,610,1415009,10205,0 +13630,z+012,559,598,699342219,10479,0 +13631,A+004,596,561,8078914,10478,0 +13632,A0015,376,469,8841266,10362,0 +13633,Wioska+barbarzy%C5%84ska,586,582,1715091,9768,0 +13634,poldi+czytaj+PW,596,567,6929240,9167,0 +13635,Lord+Arsey+KING,583,585,848956513,10285,0 +13636,HOTEL+7,571,407,849064614,9761,0 +13637,Sk%C5%82ad,510,614,606407,10295,0 +13638,Wall+Market,466,610,8199417,10362,0 +13639,%C5%9Amieszki,532,612,3454753,9009,0 +13640,005,392,499,699510259,9761,0 +13641,058.+Durocorotum,602,442,849091866,8563,0 +13643,Land+of+Fire,397,450,698962117,9495,0 +13644,010+%28Popeye14%29,416,580,698769107,9637,0 +13645,%5B311%5D+Chor%C4%85giewka+na+wietrze,597,437,848985692,10400,0 +13647,Mako+Reactor+1+-+B7F,517,614,8199417,10426,0 +13649,Dhaulagiri,382,500,699265922,9692,0 +13650,080,618,494,699573053,10481,0 +13651,0014+Oz,432,408,3909522,10495,0 +13652,EKG+.%3A%3A.+Siwyy8848%2F4,494,616,33900,10495,0 +13654,FAKE+OR+OFF,444,398,698231772,9822,0 +13655,%2A306%2A,511,614,606407,10295,0 +13656,%5B0009%5D,449,398,8630972,10495,0 +13657,%C5%9Amieszki,533,614,3454753,9111,0 +13658,005.xxx,465,609,8612358,10160,0 +13659,NOT%3F,409,549,9236866,10042,0 +13660,A0024,385,474,8841266,10362,0 +13661,001.,609,536,6520732,10019,0 +13663,%23009,473,613,699605333,10393,0 +13664,022+R3MIX97,621,518,8323711,10481,0 +13665,00061+Wioska,428,410,3909522,10012,0 +13666,Osada+koczownik%C3%B3w,391,464,698807570,10057,9 +13667,Wioska+loos,411,574,9167250,9427,0 +13668,PYRLANDIA+007+POD+c,569,594,33900,10072,0 +13669,B001,509,385,7758085,9925,0 +13670,a+mo%C5%BCe+off+%3F+%3A%29,582,586,698768565,9969,0 +13671,116,583,419,849064752,10311,0 +13672,EKG+022,494,619,33900,10397,6 +13673,134+S016,402,563,699382126,7228,0 +13674,MojeSzczytToTw%C3%B3jDno,535,387,828637,10478,0 +13675,0325,445,605,698659980,10083,0 +13676,Szlachcic,613,468,7915966,9969,0 +13677,Knowhere,386,491,699723284,10374,0 +13678,Wioska+021,587,581,848971079,9761,0 +13680,06.+Aranea+Highwind,518,618,8199417,10495,0 +13681,DOM+6,565,404,849064614,10048,0 +13682,061,548,392,849064752,10311,0 +13683,%2A0013+Baraki,600,437,8459255,10195,0 +13684,%23005,470,614,699605333,10393,3 +13685,067,584,592,698999105,10311,0 +13686,015.,566,596,873575,9913,0 +13687,Sztum,511,618,606407,10303,0 +13688,%5B341%5D+Chor%C4%85giewka+na+wietrze,592,423,848985692,9696,0 +13689,%23005+S,471,614,33900,12154,3 +13690,M%C5%81ODE+OR%C5%81Y+002,576,600,33900,10083,0 +13691,Cypis,400,437,698884287,10285,0 +13692,a+mo%C5%BCe+off+%3F+%3A%29,576,590,698768565,9557,0 +13693,020,488,386,698739350,9761,0 +13694,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,462,608,8201460,10237,0 +13695,Mniejsze+z%C5%82o+0013,388,463,699794765,9556,0 +13696,00353+Nibylandia,428,420,3909522,10239,0 +13697,006,548,394,1424656,9783,0 +13698,029,488,382,698739350,9761,0 +13699,K34+-+%5B066%5D+Before+Land,464,388,699088769,10126,0 +13700,004.,563,595,873575,10254,0 +13701,00173+Wie%C5%9B,434,405,3909522,4856,0 +13702,.achim.,519,385,6936607,10311,0 +13703,Nanga+Parbat,381,498,849013126,9697,0 +13704,028+NOF+CHERCH,625,511,8323711,10495,0 +13705,D06,617,483,849093742,10083,0 +13706,00171+dziki+ogon,438,407,3909522,4799,0 +13707,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,393,545,699364813,6284,0 +13708,01+Molly,616,503,699377151,9170,0 +13709,0424,547,609,698659980,10019,0 +13711,Bagdad,471,387,8847546,10654,0 +13712,037,557,398,849063849,10061,0 +13713,A.023,412,581,849088243,10301,0 +13714,WW8,617,481,698845189,10083,0 +13715,023,562,404,699761749,10495,0 +13716,x03,406,432,698884287,10285,0 +13717,010.+G%C3%B3ry+Szare,490,619,699494488,9828,0 +13718,Teby_26,502,619,2585846,9638,0 +13719,077+-+Stronghold,421,589,225023,10495,0 +13720,022,545,391,1424656,9612,0 +13721,Twierdza,505,381,699368887,10301,0 +13722,Wioska,384,508,849084005,10178,0 +13723,Lord+Arsey+KING,582,584,848956513,10285,0 +13724,.027.,483,385,698489071,10301,0 +13725,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+13,616,511,699379895,8142,0 +13726,011,503,384,698739350,9761,0 +13727,SSJ+008,500,615,699054373,9761,0 +13728,.017.,483,383,698489071,10316,0 +13729,Horyzont+zdarze%C5%84,536,613,7581876,10019,0 +13730,Gattacka,578,498,699298370,10556,0 +13731,Z+003,563,598,699342219,10478,0 +13732,A012,513,383,7758085,9925,0 +13733,K34+-+%5B009%5D+Before+Land,458,389,699088769,10375,0 +13734,%23015,486,606,849001572,9745,0 +13736,%5B336%5D+Chor%C4%85giewka+na+wietrze,587,421,848985692,10527,0 +13737,28.+Wioska+28,409,570,849091769,10003,0 +13738,075+-+Schowek+na+bity,423,588,225023,8446,0 +13739,Abadonia+ZZZ,618,486,699347951,11111,0 +13740,ADEN,526,383,698588535,9737,0 +13741,039,591,575,699373599,10068,0 +13742,NWO,386,524,849030226,9762,0 +13743,064+-+Nuda,427,587,225023,10495,0 +13744,006,565,399,849063849,9840,0 +13745,Bucks+x+Kamiiiru,450,607,848955783,10019,0 +13747,Jaaa,609,464,698635863,10280,0 +13748,0039,615,519,6510480,9197,0 +13749,A018,518,383,7758085,10094,0 +13751,043,568,407,7271812,9886,0 +13752,A.013,596,563,9188016,10000,0 +13753,066,474,388,698739350,8274,0 +13754,K44+x005,437,403,698364331,9466,0 +13755,Kiedy%C5%9B+Wielki+Wojownik,392,456,8632462,9612,0 +13756,W+001+bombastik,431,592,849084740,9473,0 +13757,W.181%2F15,611,537,2999957,10242,0 +13758,013,612,529,698999105,10311,0 +13759,.achim.,526,385,6936607,10311,0 +13760,Wioska+MaximusGreat,529,386,1990750,10068,0 +13761,019,573,408,7271812,10495,0 +13762,029,557,394,849063849,9924,0 +13763,Knowhere,385,493,699723284,10282,0 +13764,OldTrafford,620,509,699795378,9951,0 +13765,z+004,561,599,699342219,10495,0 +13766,.achim.,522,387,6936607,10311,0 +13767,Szlachcic,486,467,699098531,10292,0 +13768,S%C4%99p%C3%B3lno+Kraje%C5%84skie,412,577,698769107,9835,1 +13769,102+Mykni%C4%99ty+jak+102,393,551,699382126,10495,0 +13770,Kentin+ufam+Tobie,402,484,699783765,10000,0 +13771,%2A003+Grenlandia,389,540,699425709,9873,0 +13772,K34+-+%5B069%5D+Before+Land,454,393,699088769,10259,0 +13774,FAKE+OR+OFF,438,400,698231772,9830,0 +13775,A001,520,368,699208929,10356,0 +13776,030+Zakyntos,614,516,8323711,10144,7 +13777,Wioska+barbarzy%C5%84ska,403,436,698884287,10285,0 +13778,Mniejsze+z%C5%82o+0075,388,460,699794765,11079,0 +13779,078,575,411,849064752,9940,5 +13780,Lord+Arsey+KING,581,584,848956513,10285,0 +13781,11+VHS,619,514,9314079,9624,0 +13782,PYRLANDIA+006,569,593,33900,9839,0 +13783,Barba+2,432,407,699796330,9928,0 +13784,A.009,602,557,9188016,10000,0 +13785,069,585,589,698999105,10311,0 +13786,0017.+A+-,616,515,7125212,6613,0 +13787,Wioska5%2C,509,592,8369778,8452,0 +13788,C+Zach+006+Pyskowice,411,572,849084740,7409,0 +13789,014,617,501,849006412,10533,0 +13790,0037,462,610,698659980,10160,5 +13791,x12,404,429,698884287,10285,0 +13792,%5B0010%5D,423,409,8630972,10495,0 +13793,%2A+1+Teraz+bedzie+Akcja+-2,595,434,848985692,10052,0 +13794,Zeta+Reticuli+S,414,419,699323302,11188,0 +13795,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,549,699364813,8397,0 +13796,Zeta+Reticuli+S,409,428,699323302,10838,0 +13797,K44+x016,433,405,698364331,8135,0 +13798,CALL+1009,525,613,699784536,10311,0 +13800,088,615,492,699573053,10095,0 +13801,z+008,560,601,699342219,10475,0 +13802,%5B0027%5D,448,393,8630972,10495,0 +13804,042,498,381,698739350,6804,0 +13805,Wioska,387,520,849084005,10178,0 +13806,Wioska,383,519,849084005,10178,0 +13807,012,605,546,6160655,10566,0 +13808,Belvedere+003,578,409,699756210,9797,0 +13809,FAKE+OR+OFF,435,401,698231772,9828,0 +13810,Runing+Up+That+Hill,596,566,848926293,9469,7 +13812,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,391,550,699364813,6385,0 +13813,Negr,381,493,699265922,9746,0 +13814,Emklan+Biedanu,516,371,828637,10495,0 +13815,ADEN,520,384,698588535,9737,0 +13816,Lord+Arsey+KING,540,532,848956513,10285,0 +13817,Chojnice,409,571,698769107,9835,0 +13819,002,567,401,849063849,10495,0 +13820,0328,449,605,698659980,10019,0 +13822,0334,447,603,698659980,10019,0 +13823,Wioska,383,521,849084005,10178,0 +13824,%3D003%3D+W+czarnym+lesie,609,550,3781794,10357,0 +13825,0203,452,610,698659980,10019,0 +13826,bucks+x+kamiiiru,413,418,848955783,10838,0 +13827,Madryt+%28Mieszko+1995%29,413,581,698769107,9835,0 +13828,Wioska+bary20006,589,576,1715091,9753,0 +13829,017,492,385,698739350,9761,0 +13830,050.,486,627,699494488,10237,0 +13831,R%C4%99cznik+do+zmiany,400,433,699697558,10160,0 +13832,.018.,482,383,698489071,10595,0 +13833,Myk+i+do+kieszonki,383,514,9319058,8414,0 +13834,B01.+obstawiona+%28Motonari%29,441,599,698769107,10375,3 +13835,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,396,549,699364813,9277,0 +13836,A0030,387,481,8841266,10362,0 +13837,003,606,545,6160655,10563,0 +13838,Piek%C5%82o+to+inni,477,388,848956765,10160,0 +13839,Oaza,380,496,699265922,9752,0 +13840,071,481,381,698739350,7065,0 +13841,Myk+i+do+kieszonki,383,513,9319058,9791,0 +13842,0012,613,524,6510480,10192,0 +13843,amator,527,613,848915531,8916,0 +13844,EKG+M07,476,615,33900,10273,0 +13845,K55,544,538,698867483,10019,0 +13846,055,546,421,7271812,10495,0 +13847,016.+Gloria+Victis,424,593,848886973,10728,0 +13848,Sk%C5%82ad,508,617,606407,8672,2 +13849,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,456,606,8201460,10237,0 +13850,23+XXX,619,493,699377151,456,0 +13851,023,499,384,698739350,9761,0 +13853,Gattacka,587,500,699298370,9744,0 +13854,NIERAJ003,469,613,33900,10215,0 +13855,Wioska+xHavajek,395,464,698807570,10068,0 +13856,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,459,613,8201460,10237,0 +13857,ADEN,521,383,698588535,10287,3 +13858,Kentin+ufam+Tobie,437,402,699783765,10000,0 +13859,bucks+x+kamiiiru,411,421,848955783,10429,0 +13860,006.,563,600,873575,10291,0 +13861,033+Lesbos,613,518,8323711,10152,0 +13862,002,581,598,698999105,10311,0 +13863,Wioska+henry113,512,384,699368887,10237,0 +13864,003,615,500,849006412,9825,0 +13865,Zulus,384,489,699265922,9804,0 +13866,Wioska,385,525,849084005,10178,0 +13867,Czako,383,493,699265922,9825,0 +13868,L+3,615,477,849027653,10019,0 +13870,Jaaa,572,551,698635863,10475,0 +13871,PYRLANDIA+004+%2B+2R,567,593,33900,10495,0 +13872,%230020,523,625,699728159,9761,0 +13873,0022,615,529,6510480,10325,0 +13874,041-+friday,409,577,225023,10495,0 +13875,Myk+i+do+kieszonki,382,512,9319058,9799,0 +13876,Myk+i+do+kieszonki,382,509,9319058,9799,0 +13877,Myk+i+do+kieszonki,382,511,9319058,9799,0 +13878,Wioska+%28007%29,620,473,698232227,9170,0 +13880,031,489,381,698739350,9761,0 +13881,40+im+Mieklina,590,427,849037469,6568,0 +13882,K34+-+%5B084%5D+Before+Land,452,391,699088769,10259,0 +13883,A020,602,444,699722599,10233,5 +13884,A-003,533,388,1990750,10068,0 +13885,-+042+-,544,609,849018239,10000,0 +13886,D020,506,384,7758085,9925,0 +13887,Myk+i+do+kieszonki,381,516,9319058,9799,0 +13888,Wioska+barbarzy%C5%84ska,586,583,1715091,9644,0 +13889,0008,387,461,698807570,10703,0 +13890,Wioska+barbarzy%C5%84ska,416,399,699402816,9835,0 +13891,Cho+Oyu,383,494,699265922,9750,0 +13892,Twierdza+%232,505,382,699368887,10042,0 +13893,Konfederacja+8,467,386,848915730,9761,0 +13895,-+012+-,548,606,849018239,10000,0 +13896,0000004%25,425,593,849089881,10160,0 +13897,K34+-+%5B109%5D+Before+Land,452,390,699088769,10259,5 +13898,0010,386,460,3698627,10447,0 +13899,.achim.,527,386,6936607,10311,0 +13900,%23061,481,617,699605333,10393,0 +13901,017,615,501,849006412,9827,0 +13902,Wioska+019,591,577,848971079,9761,0 +13903,K34+-+%5B072%5D+Before+Land,450,391,699088769,10126,0 +13904,0330,447,606,698659980,10019,0 +13905,096+Mienia+zaw%C3%B3d+Roman+Ch%C4%99do%C5%BCy,395,556,699382126,10484,0 +13906,092+PYTA%C5%83+BRAK,393,554,699382126,10495,0 +13907,-+086+-,549,608,849018239,10000,0 +13908,W.181%2F10,616,526,2999957,10242,0 +13909,FKG+01-06,421,411,356642,9835,0 +13910,%5B0074%5D,451,394,8630972,10495,0 +13911,.%3A117%3A.+Niangmen,507,396,848934935,10224,0 +13912,%2A304%2A,509,615,606407,10300,0 +13913,026,502,628,699878511,10146,0 +13914,A016,608,447,699722599,10484,0 +13915,Suppi,426,424,699856962,9745,0 +13916,Wioska,381,505,849084005,10178,0 +13917,D010,598,415,699761749,9467,0 +13918,%C5%9Amieszki,533,610,3454753,9017,0 +13920,Wioska,388,537,849084005,10178,0 +13921,bucks+x+kamiiiru,411,422,848955783,10564,0 +13922,Wioska,382,523,849084005,10178,0 +13924,%5B212%5D+WEST,609,452,848985692,10048,0 +13925,Wioska,381,502,849084005,10178,0 +13926,%C5%9Amieszki,529,616,3454753,9155,0 +13927,Kentin+ufam+Tobie,436,402,699783765,10000,0 +13928,Wioska,384,518,849084005,10178,0 +13929,K34+-+%5B088%5D+Before+Land,451,391,699088769,10259,0 +13930,JaawmG+P,617,473,698635863,9888,0 +13931,MojeSzczytToTw%C3%B3jDno,531,389,828637,10478,0 +13932,%23028,457,607,699605333,10728,0 +13933,Kiedy%C5%9B+Wielki+Wojownik,390,458,8632462,9620,0 +13934,Wioska,381,519,849084005,10178,0 +13935,Wioska+barbarzy%C5%84ska,383,526,849030226,9975,0 +13936,Wioska+015,593,576,848971079,9761,0 +13937,Kentin+ufam+Tobie,434,401,699783765,10000,0 +13938,079+FAT+FAT,581,413,699491076,10001,0 +13939,030,501,374,698739350,9761,0 +13940,Wioska,382,505,849084005,10178,0 +13941,ADEN,524,384,698588535,10154,0 +13942,Lord+Arsey+KING,580,587,848956513,10285,0 +13943,rakieta+005,612,543,848928486,9843,0 +13945,007,620,502,849006412,9709,0 +13946,%5B0110%5D,421,415,8630972,10180,0 +13947,00172,439,406,3909522,4296,0 +13948,Myk+i+do+kieszonki,380,512,9319058,8067,0 +13949,Mzm49,544,517,7142659,8690,0 +13950,FAKE+OR+OFF,434,402,698231772,9813,0 +13951,Sir+Hood+3,385,531,1804724,9335,0 +13952,z+024,560,604,699342219,10495,0 +13953,FAKE+OR+OFF,439,401,698231772,9817,0 +13954,%7E%7ELataj%C4%85cyHolender%7E%7E,598,495,9174887,10144,0 +13955,Wioska,385,535,849084005,10178,0 +13956,WB3,387,529,849030226,9400,0 +13957,A0026,384,475,8841266,10362,0 +13958,Szlachcic,587,418,699170684,9453,0 +13959,Wioska+barbarzy%C5%84ska+007%7C,575,407,6343784,9740,0 +13960,%5B0011%5D,420,414,8630972,10495,0 +13961,D022,508,382,7758085,9861,0 +13962,.achim.,523,387,6936607,10311,0 +13963,z+026,561,603,699342219,10217,0 +13964,szlachcic,385,469,698807570,10311,0 +13965,011.+Gloria+Victis,424,589,848886973,10449,0 +13966,.achim.,536,423,6936607,10311,0 +13967,%7E%7ELataj%C4%85cyHolender%7E%7E,607,499,9174887,10139,0 +13968,035,557,400,849063849,10393,0 +13969,Wioska+barbarzy%C5%84ska,600,567,6929240,8917,0 +13970,006.,612,537,6520732,9835,0 +13971,Wioska+barbarzy%C5%84ska,387,526,849030226,10475,0 +13972,%5B209%5D+WEST,609,453,848985692,10052,0 +13973,%5B081%5D,532,528,848985692,10373,0 +13974,HOTEL+6,570,407,849064614,9750,0 +13975,017,557,397,849063849,10147,0 +13976,016,617,496,849006412,9676,0 +13977,Wioska,383,528,849084005,10178,0 +13978,008,556,393,849063849,9797,0 +13979,Land+of+Fire,395,446,698962117,9515,0 +13980,Bagdad,476,383,8847546,10654,0 +13981,003+%28Popeye14%29,410,579,698769107,9899,0 +13982,W+004,431,597,849084740,8353,0 +13983,Myk+i+do+kieszonki,380,511,9319058,9799,0 +13984,In+The+End,595,567,848926293,9270,0 +13986,Gasherbrum+I,379,501,699265922,9820,0 +13987,012.+G%C3%B3ra+Gundabad,488,619,699494488,10476,0 +13988,Bagdad,473,385,8847546,10654,0 +13990,08+Crash+Test,618,509,699377151,9124,0 +13991,%5B0012%5D,453,394,8630972,10495,0 +13992,Gryfios+001a,613,539,698666810,10487,0 +13994,022+-+Lamanai,429,596,225023,10118,0 +13995,Wioska+%28042%29,618,483,698232227,9989,0 +13996,083,607,514,699373599,10093,0 +13997,MojeSzczytToTw%C3%B3jDno,534,386,828637,10479,0 +13998,002,608,542,6160655,10822,0 +13999,A.005,604,551,9188016,10000,9 +14000,005+Wioska+barbarzy%C5%84ska,529,379,699854484,10068,0 +14001,Sony+911,562,602,1415009,10205,0 +14002,Foteviken,536,383,1990750,10068,0 +14003,a+mo%C5%BCe+off+%3F+%3A%29,584,586,698768565,9774,0 +14004,006+TiZi+iZi,384,560,699382126,10495,0 +14005,a+mo%C5%BCe+off+%3F+%3A%29,574,589,698768565,9780,0 +14006,076,609,527,699373599,10093,0 +14007,002.+Orkowe+Wzg%C3%B3rze,488,618,699494488,10292,0 +14008,bucks+x+kamiiiru,413,423,848955783,10971,9 +14010,%23029,458,608,699605333,10728,0 +14011,5.+Szopienice,478,538,699781762,10394,0 +14012,Barba+4,431,404,699796330,10169,0 +14013,005,498,383,698739350,9761,9 +14014,155,549,390,849064752,10311,0 +14015,0354,445,606,698659980,10160,0 +14016,South+K35,555,395,699146580,9809,0 +14017,%23006,474,616,699605333,10393,1 +14018,Czekam+na+VS,538,384,698350371,10495,0 +14019,%230022,543,611,1536231,10495,0 +14020,D004,585,418,699761749,10311,0 +14021,Mniejsze+z%C5%82o+0015,388,462,699794765,8735,0 +14022,Taran,543,388,699170684,10104,0 +14023,scoti,492,618,699494488,10217,0 +14024,C003,521,387,7758085,9925,0 +14025,D02,614,475,849093742,10160,0 +14026,A.024,411,579,849088243,9419,0 +14027,%5B0013%5D,419,414,8630972,10495,0 +14028,066,585,597,698999105,10311,0 +14029,PYRLANDIA+013+%24,573,591,33900,10220,0 +14030,Wioska+barbarzy%C5%84ska,405,570,9167250,9758,0 +14031,-+001+-,551,604,849018239,10000,0 +14032,Wioska,388,538,849084005,10178,0 +14033,056+Trelleborg,533,385,699491076,10001,1 +14034,015+Seba,618,520,8323711,10495,0 +14035,Bocianikson006,611,547,7528491,9955,0 +14036,Avanti%21,381,487,698625834,9956,0 +14037,0002,529,617,848915531,11824,0 +14038,A0022,383,477,8841266,10362,0 +14039,A0049,382,473,8841266,10362,0 +14040,Kiedy%C5%9B+Wielki+Wojownik,391,460,8632462,9835,0 +14041,003,544,608,699189792,9761,0 +14042,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,394,550,699364813,7079,0 +14044,Wioska+barbarzy%C5%84ska,572,597,930720,4022,0 +14045,%5B216%5D+WEST,613,456,848985692,10057,0 +14046,Myk+i+do+kieszonki,381,504,9319058,9799,0 +14047,A002,515,384,7758085,10094,0 +14048,Feed+me+more+012,488,383,699756210,10465,0 +14049,s181eo13,391,452,393668,9886,0 +14050,CALL+1013,524,616,699784536,10311,0 +14051,0014+A+Wioska,432,406,3909522,10136,0 +14052,%5B0014%5D,421,414,8630972,10495,0 +14053,ADEN,517,382,698588535,10338,0 +14054,009,562,401,7271812,10495,0 +14055,Twierdza+2,613,460,848935020,10016,0 +14056,R%C4%99cznik+do+zmiany,385,483,699697558,10495,9 +14057,025.+Venetia,613,465,849091866,9179,0 +14058,014.,566,600,873575,9839,0 +14059,%2A023%2A,619,521,698670524,8462,0 +14060,A.010,605,556,9188016,10000,0 +14062,%23035,444,602,699605333,10393,0 +14063,022.,564,602,873575,9869,0 +14064,HOTEL+10,567,399,849064614,9778,0 +14065,RHUDAUR+f,534,467,8155296,11078,0 +14066,Wioska+barbarzy%C5%84ska,407,425,7462660,10068,0 +14067,CALL+917,554,607,699784536,10311,0 +14068,%23016+A,464,614,33900,10160,0 +14069,004.+Gloria+Victis,441,605,848886973,10838,0 +14070,CALL+921,556,605,699784536,10311,0 +14071,%5B0030%5D,450,394,8630972,10495,0 +14072,s181eo08,391,448,393668,9886,0 +14073,-+088+-,549,606,849018239,10000,2 +14074,Knowhere,383,502,699723284,10452,0 +14075,W+005,431,598,849084740,8002,0 +14077,FAKE+OR+OFF,437,399,698231772,9819,0 +14078,.achim.,524,385,6936607,8249,0 +14079,K34+-+%5B062%5D+Before+Land,457,388,699088769,10259,0 +14081,011,504,379,849010255,9821,0 +14083,ADEN,520,383,698588535,9737,0 +14084,s181eo07,400,444,393668,9902,0 +14085,CALL+1011,524,613,699784536,10495,0 +14086,096+Wioska+barbarzy%C5%84ska,579,415,699491076,9786,0 +14087,01.+Dzikie+Pandy,403,565,9167250,8851,0 +14088,Wioska,380,517,849084005,10178,0 +14089,Abadonia+XXX,618,489,699347951,11808,0 +14090,0552,499,620,698659980,9968,0 +14091,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,402,562,699364813,4037,0 +14092,123+S014,397,558,699382126,9534,0 +14093,015,484,620,699494488,9980,0 +14094,%23002,468,613,699605333,10393,0 +14095,PYRLANDIA+001+S,570,593,33900,10222,2 +14096,Kentin+ufam+Tobie,379,445,699783765,10000,0 +14097,%23009+A,465,613,33900,10311,0 +14098,180+Montevideo,482,479,1497168,9771,0 +14099,089,618,493,699573053,10495,0 +14100,176+Mar+Del+Plata,481,481,1497168,9761,0 +14101,R%C4%99cznik+do+zmiany,398,436,699697558,10319,0 +14102,Piek%C5%82o+to+inni,481,384,848956765,10160,0 +14103,FAKE+OR+OFF,441,397,698231772,9819,0 +14104,0003,425,411,3909522,10083,0 +14105,-007-+%28WiotrPitczak%29,416,582,698769107,9055,6 +14106,EKG+M05,478,614,33900,10247,0 +14107,043,542,613,699189792,9747,0 +14108,038,493,383,698739350,9761,0 +14109,%23041,452,608,699605333,10393,0 +14110,Westcoast.005,400,432,848918380,10178,0 +14111,018.+Gloria+Victis,432,600,848886973,10436,0 +14112,PataTaj,431,403,699796330,9887,6 +14113,001.+Gloria+Victis,436,602,699697558,6558,0 +14114,004,386,459,3698627,9963,0 +14115,Szlachcic,453,389,698388578,10237,3 +14116,dawaj+ziomek,392,543,849095014,5829,0 +14117,003+arepa,608,518,8323711,10495,0 +14118,0436,542,620,698659980,10019,0 +14119,Kiedy%C5%9B+Wielki+Wojownik,388,457,8632462,10611,0 +14120,0048,436,599,699697558,10845,0 +14121,141,545,393,849064752,10311,0 +14122,Gravity,400,452,698962117,9505,0 +14123,s181eo09,392,446,393668,9885,0 +14124,%5B325%5D+Chor%C4%85giewka+na+wietrze+RRR,599,433,848985692,10403,0 +14125,017,544,392,1424656,10460,0 +14126,0021+Ja+tu+tylko+po+gie%C5%82de,433,411,3909522,10152,0 +14127,A009,608,449,699722599,10362,0 +14128,Wioska+Wielkie+Oczy,398,564,9167250,10319,0 +14129,%23017,473,617,699605333,10393,0 +14130,ESSA+%28Kamaaam%29,419,584,698769107,9835,0 +14131,Teby_27,501,620,2585846,9638,0 +14132,7.62+mm,479,438,699777234,9510,0 +14134,Land+of+Fire,394,444,698962117,9488,0 +14135,Wioska+barbarzy%C5%84ska,595,574,6929240,8980,0 +14136,Mniejsze+z%C5%82o+0020,389,463,699794765,9712,0 +14137,019,556,394,849063849,10224,0 +14138,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,460,609,8201460,10237,0 +14139,001,581,600,698999105,10311,0 +14140,Wioska,382,517,849084005,10178,0 +14141,Szlachcic,590,418,699170684,9379,0 +14142,0041,461,610,698659980,10019,0 +14143,Najlepszy+s%C4%85siad+010,602,441,699756210,10273,0 +14144,Tylko+Tesco+JL,602,519,698845189,10019,0 +14145,A020,510,380,7758085,9925,0 +14146,Ciiichutko,590,421,848985692,10030,2 +14147,0032,425,409,848913037,9993,0 +14148,035,599,562,699373599,10068,0 +14149,Buszmen,380,492,699265922,9761,0 +14150,%5B343%5D+Chor%C4%85giewka+na+wietrze,593,424,848985692,9791,0 +14151,%5B344%5D+Chor%C4%85giewka+na+wietrze+%3F,597,431,848985692,10400,0 +14152,X04,389,535,849030226,10490,0 +14153,Kiedy%C5%9B+Wielki+Wojownik,390,455,8632462,9438,0 +14154,.64,452,605,848955783,10971,0 +14155,K34+-+%5B098%5D+Before+Land,463,387,699088769,10259,0 +14156,017.+Gloria+Victis,434,598,848886973,10636,0 +14157,026,438,599,698659980,9244,0 +14158,EKG+M06,477,615,33900,10336,0 +14159,004,435,599,699697558,11078,0 +14160,%2A5502%2Ab+Meta%3A%29,597,563,7973893,10287,0 +14161,Wioska,384,517,849084005,9477,0 +14163,014.+Gloria+Victis,442,601,848886973,10470,0 +14164,ADEN,522,383,698588535,10338,0 +14165,CALL+918,553,607,699784536,10311,0 +14166,028+Kansas,606,490,7092442,10495,0 +14167,rakieta+007,617,529,848928486,6783,0 +14168,%23066,486,602,699605333,10728,0 +14169,bucks+x+kamiiiru,412,421,848955783,10971,7 +14170,bucks+x+kamiiiru,412,419,848955783,10971,0 +14171,Feed+me+more+006,498,379,699756210,10001,0 +14172,x08,407,429,698884287,10285,0 +14173,Pobozowisko,418,590,699513260,10954,0 +14174,Wioska,382,501,849084005,10178,0 +14175,Ok.,386,525,849030226,9134,0 +14176,%5B0015%5D,418,412,8630972,10495,0 +14177,0040,619,519,6510480,9378,0 +14178,024+Kattegat,609,558,699272880,9924,0 +14179,015,619,503,849006412,11347,0 +14180,Lord+Arsey+KING,589,581,848956513,9237,0 +14181,Bucks+x+Kamiiiru,450,608,848955783,10495,0 +14182,181-003,587,577,8876551,2610,0 +14183,0136,456,612,698659980,10083,0 +14184,%23014,475,616,699605333,10393,0 +14185,Teby_16,507,617,2585846,9638,0 +14186,042,541,613,699189792,9745,0 +14187,%C5%9Amieszki,536,616,3454753,9012,0 +14189,Bocianikson004,608,544,7528491,9966,0 +14190,osada+Marian,567,598,699364813,10495,0 +14192,Wioska+barbarzy%C5%84ska,598,570,6929240,8970,0 +14193,Teby_14,505,619,2585846,9638,0 +14194,CALL+916,554,605,699784536,10311,0 +14195,CALL+989,516,620,699784536,10311,0 +14196,Brat447,384,512,699262350,10016,0 +14197,Suppi,430,441,699856962,10247,0 +14198,Teby_13,505,618,2585846,9638,0 +14199,0325,446,608,698659980,10083,0 +14200,0041,621,514,6510480,9793,0 +14201,B+006,584,415,6384450,10362,2 +14202,0005,426,408,848913037,9993,0 +14203,A014,513,379,7758085,9925,0 +14204,07.+Iris+Amicitia,522,618,8199417,10495,0 +14205,South+K35,552,393,699146580,10042,0 +14206,014+Tampa,434,469,1497168,9761,0 +14207,A0023,386,476,8841266,10362,0 +14208,Horyzont+zdarze%C5%84,538,611,7581876,9835,0 +14209,-+027+-,548,607,849018239,10000,0 +14210,Wioska+Smerf%C3%B3w,595,572,1715091,9606,0 +14212,Wioska+Karol-boss,457,579,8438707,7059,0 +14213,XXXX,492,384,849054951,10132,6 +14214,bucks+x+kamiiiru,410,421,848955783,10971,0 +14215,Highway+to+Hell,598,564,848926293,9500,0 +14216,%7B004%7D+Shuno,534,384,698350371,10495,0 +14217,CALL+912,558,601,699784536,10311,4 +14218,34+im+Duszkina,577,400,849037469,9809,0 +14219,Pobozowisko,419,590,699513260,10412,0 +14220,0425,551,607,698659980,10019,0 +14221,K34+-+%5B060%5D+Before+Land,454,388,699088769,10126,0 +14222,Westcoast.009,400,431,848918380,10178,0 +14223,048+.Maczeta,403,564,699382126,7200,0 +14224,0002,604,552,477415,10495,0 +14225,9mm,568,599,699364813,10495,0 +14226,Do+Azot+i+nazot+puliku+jeden,392,450,699711723,9669,0 +14227,006,621,499,849006412,10311,0 +14228,HOTEL+8,574,407,849064614,9636,0 +14229,%5B329%5D+Chor%C4%85giewka+na+wietrze+%2B%2B,600,432,848985692,10411,0 +14230,Wioska+barbarzy%C5%84ska,596,569,6929240,9101,0 +14231,bucks+x+kamiiiru,409,421,848955783,10744,3 +14232,Street,584,416,848985692,10049,0 +14233,AL+002,615,480,849027653,10503,6 +14234,Wola+5,478,385,849093155,8341,0 +14235,012,560,398,7271812,10495,0 +14237,022.+Barcino,616,462,849091866,9193,0 +14238,%5B205%5D+WEST,612,454,848985692,10049,0 +14239,R%C4%99cznik+do+zmiany,402,434,699697558,10495,9 +14240,Wioska+%28044%29,617,492,698232227,7950,0 +14241,%C5%9Amieszki,534,615,3454753,9058,0 +14243,%23021,472,617,699605333,10393,0 +14244,038,570,406,849064752,10311,0 +14245,Wioska+%28006%29,619,475,698232227,8622,0 +14246,Wyzima,483,373,699658023,9742,0 +14247,A002,610,450,699722599,10160,0 +14248,Mzm12,612,532,7142659,10362,0 +14249,0014,387,458,698807570,10703,0 +14250,193,571,402,849064752,9920,0 +14251,Lord+Arsey+KING,579,590,848956513,10285,0 +14252,%C5%9Amieszki,535,616,3454753,9267,2 +14253,062,492,367,698739350,8059,0 +14254,%23011,471,616,699605333,10393,0 +14255,Sector+2+Slums+Area,504,619,8199417,10559,0 +14256,bohprawdziwy,396,563,9167250,5188,0 +14257,FAKE+OR+OFF,439,400,698231772,9817,0 +14258,Wioska+barbarzy%C5%84ska,407,423,7462660,10068,0 +14259,ADEN,526,382,698588535,10287,2 +14261,sony911,565,601,1415009,10273,0 +14262,Wioska+silnypakiao,407,421,7462660,10068,0 +14263,Wioska+016,590,580,848971079,9761,0 +14264,001,532,384,698350371,10495,0 +14265,Avanti%21,380,483,698625834,9956,0 +14266,Belvedere+004,580,412,699756210,7647,0 +14267,%5B339%5D+Chor%C4%85giewka+na+wietrze,587,422,848985692,10406,0 +14268,Omn4dreN,619,507,699379895,10495,0 +14269,Wioska,381,526,849084005,10178,0 +14270,0038,461,614,698659980,10083,0 +14272,Wioska+barbarzy%C5%84ska+010%7C,573,404,6343784,9121,0 +14273,CALL+919,553,608,699784536,10311,0 +14275,-+080+-,536,582,849018239,10000,0 +14276,030,616,472,8459255,9908,0 +14277,038,618,468,8459255,8308,0 +14278,008.+Gloria+Victis,423,590,848886973,10433,0 +14279,K34+-+%5B119%5D+Before+Land,468,386,699088769,8146,0 +14280,009,502,381,698739350,9761,0 +14281,019+Kayce,604,563,699272880,10083,7 +14282,Yogi,521,615,2808172,10019,0 +14283,K34+-+%5B054%5D+Before+Land,463,386,699088769,10259,0 +14284,Wioska9,502,589,8369778,6310,0 +14285,K34+-+%5B042%5D+Before+Land,461,384,699088769,10126,0 +14286,%2AINTERTWINED%2A,515,615,698704189,9711,4 +14287,%23002+MG,465,612,33900,10971,0 +14288,Wioska+barbarzy%C5%84ska,592,573,6929240,8972,0 +14289,Sector+2,506,621,8199417,10316,0 +14290,Wioska,381,522,849084005,10178,0 +14292,A010,607,449,699722599,10362,0 +14293,0355,444,607,698659980,10083,0 +14294,%5B0016%5D,442,395,8630972,10495,0 +14295,Bucks+x+Kamiiiru,455,608,848955783,10268,0 +14296,038+France,620,523,8323711,5790,0 +14297,Lord+Arsey+KING,587,579,848956513,7198,0 +14298,Wioska,385,539,849084005,10178,0 +14299,Pobozowisko,415,584,699513260,10773,0 +14300,Bagdad,471,382,8847546,10654,0 +14301,051+-+A03.%2A%2A%2A,438,602,225023,10495,0 +14302,005+-+Zio%C5%82owo,419,581,225023,8316,0 +14303,013.+Gloria+Victis,422,591,848886973,9761,0 +14304,041,374,535,698641566,9809,0 +14305,K34+-+%5B038%5D+Before+Land,462,388,699088769,9924,0 +14306,%2A311%2A,509,617,606407,10291,0 +14307,Lord+Arsey+KING,581,585,848956513,10285,0 +14308,Dum+Spiro+Spero,496,554,848896948,9976,0 +14309,076+Kami,620,482,7092442,10495,0 +14310,Wioska,385,517,849084005,10178,0 +14311,%23014.488%7C495,607,446,556154,9735,0 +14312,0000023%40,431,599,849089881,10160,0 +14313,02.+Lunafreya+Nox+Fleuret,524,619,8199417,10495,0 +14314,0026,617,516,6510480,10001,0 +14315,Abadonia+QQQ,619,491,699347951,12154,0 +14316,A-006,531,387,1990750,10068,0 +14317,%23006+M,464,615,9037756,10311,0 +14318,B001,593,423,699722599,10487,0 +14319,%5B353%5D+Chor%C4%85giewka+na+wietrze,600,438,848985692,9123,0 +14320,Mniejsze+z%C5%82o+0078,389,461,699794765,10451,0 +14321,.005.,499,379,698489071,10595,0 +14322,Kentin+ufam+Tobie,433,399,699783765,10000,0 +14323,%2A%2A+Mysia+Trutka,598,435,848985692,10068,0 +14324,FKG+01-13,422,407,356642,9835,0 +14325,017+Valyria,606,565,699272880,10142,0 +14326,094+TO+NASZ+%C5%9AWIAT,395,557,699382126,9839,0 +14327,smiel,401,572,9167250,9178,0 +14328,073+InnyNizWszyscy,539,389,699491076,8799,0 +14329,Prabuty,508,619,606407,10306,0 +14330,kto+ananasowy+pod+wod%C4%85+ma+dom,584,583,699628084,9797,0 +14331,041.,489,628,699494488,10237,0 +14332,K34+-+%5B031%5D+Before+Land,465,382,699088769,10259,0 +14333,Wioska,388,540,849084005,10178,0 +14334,Zeta+Reticuli+S,414,414,699323302,10838,0 +14335,Mzm09,614,530,7142659,10495,0 +14336,0134,454,611,698659980,10019,0 +14337,Mniejsze+z%C5%82o+0014,389,464,699794765,9343,0 +14338,01.+Noctis+Lucis+Caelum,521,620,8199417,10495,0 +14339,Evergreen+Park,526,623,8199417,10495,0 +14340,Kentin+ufam+Tobie,429,403,699783765,10003,0 +14341,Moongoose,467,626,699443920,9994,0 +14342,%5B0017%5D,423,410,8630972,10495,0 +14343,%5B312%5D+Chor%C4%85giewka+na+wietrze,598,434,848985692,10411,0 +14344,L+2,619,479,849027653,10102,0 +14345,009.+Gloria+Victis,422,590,848886973,10296,0 +14346,0138,453,613,698659980,10019,0 +14347,004.,443,603,699695167,10267,0 +14348,13+Furioza,620,508,699377151,4858,0 +14349,0008.+A+-+Gilead,607,517,7125212,9761,0 +14350,Wioska,384,521,849084005,10178,0 +14351,ADEN,525,384,698588535,9737,3 +14352,Bocianikson005,611,543,7528491,9949,0 +14353,097+Jesie%C5%84+%C5%9Bredniowiecza,398,558,699382126,10490,0 +14354,062,563,391,849064752,10311,0 +14355,HOTEL+9,577,407,849064614,9710,0 +14356,ccc,609,554,7047342,10475,0 +14357,K34+-+%5B112%5D+Before+Land,455,386,699088769,10259,0 +14360,008+Carvahall,614,470,8337151,10083,9 +14361,FKG+01-07,417,403,356642,9835,0 +14362,Ho%C5%82opole,493,385,699433558,10311,0 +14363,K34+-+%5B039%5D+Before+Land,458,391,699088769,10259,0 +14364,B013,482,434,699299123,10059,0 +14365,048,536,615,699189792,9742,0 +14366,Szlachcic,587,417,699170684,9453,0 +14367,juz+po+ptakach,579,598,699785935,10019,0 +14368,Knowhere,373,499,699723284,7316,0 +14370,Wioska,381,523,849084005,10178,0 +14371,A.004,416,585,849088243,10401,0 +14372,0198,451,610,698659980,10040,0 +14373,BoOmBaa..,445,396,6169408,8754,0 +14374,%5B208%5D+WEST,609,454,848985692,9977,0 +14375,011+-+Yhym,421,593,225023,9386,0 +14376,%23016,466,613,699605333,10393,0 +14377,R%C4%99cznik+do+zmiany,398,433,699697558,10160,0 +14378,0009.+C+-+Sithrim,622,502,7125212,10285,0 +14379,0042,615,523,6510480,9649,0 +14380,004.xxx,461,612,8612358,10146,0 +14381,013.+Antioch,612,464,849091866,9284,0 +14383,bucks+x+kamiiiru,407,422,848955783,10971,1 +14384,Gainer,620,519,699379895,10495,0 +14385,A0019,382,481,8841266,10362,0 +14386,0001,529,615,848915531,11321,1 +14387,ADEN,525,381,698588535,9737,0 +14388,Pobozowisko,416,588,699513260,10546,0 +14389,002,532,385,1990750,10068,0 +14390,Horyzont+zdarze%C5%84,537,612,7581876,10019,0 +14391,001,547,393,1424656,9963,0 +14392,03.+Ignis+Scienta,525,618,8199417,10495,0 +14393,Wioska+elli38,558,388,3600737,9575,0 +14394,Wioska+barbarzy%C5%84ska,405,428,7462660,10122,0 +14395,WW3,621,480,849088515,9721,0 +14396,Wioska,383,538,849084005,10178,0 +14397,Szulernia,411,417,7249451,9991,0 +14398,Wioska,382,529,849084005,10178,0 +14400,Darma,428,402,356642,9835,0 +14401,%23004+A,459,614,33900,10362,0 +14402,C+Zach+007,403,575,849084740,6210,0 +14403,.RUCH+CHORZ%C3%93W,595,573,6929240,9828,0 +14404,%5B0018%5D,441,395,8630972,10495,0 +14405,A0078,383,473,8841266,10362,0 +14406,Ponad+L%C4%85d,580,590,699785935,10160,0 +14408,%2A004+Reykjavik,387,541,699425709,9757,0 +14409,029,382,533,8908002,9993,0 +14410,018,570,404,7271812,10495,0 +14411,074+OZDR,493,632,699336777,9899,0 +14412,Taran,545,386,699170684,9761,0 +14413,095,584,413,849064752,10311,0 +14414,A021,615,452,699722599,10476,0 +14415,Wioska,381,527,849084005,10178,0 +14416,D04,620,479,849093742,10019,0 +14417,Ko%C5%82obrzeg,551,391,3600737,9549,0 +14419,-+044+-,544,610,849018239,10000,0 +14421,Avanti%21,379,483,698625834,9950,0 +14422,074+InnyNizWszyscy,540,388,699491076,10001,0 +14423,Pod,587,582,1715091,9623,0 +14424,%23+Szymi+8,389,542,699425709,9873,0 +14425,Wioska+barbarzy%C5%84ska,596,574,6929240,9037,0 +14426,Piwna+05,617,438,699812007,9181,0 +14427,bucks+x+kamiiiru,411,423,848955783,10209,0 +14428,099+Ja+nie+panimajet,393,561,699382126,6658,0 +14429,Wioska+020,588,580,848971079,9761,0 +14430,-+220+-,547,568,849018239,10000,0 +14431,A0016,385,476,8841266,10362,0 +14432,South+K45,598,428,699146580,10042,0 +14433,Wioska+024,594,576,848971079,9761,0 +14434,A016,515,378,7758085,9925,0 +14435,K34+-+%5B002%5D+Before+Land,455,388,699088769,10259,0 +14436,%2AINTERTWINED%2A,516,617,698704189,9711,0 +14437,Mzm07,618,532,7142659,10362,0 +14438,ADEN,520,382,698588535,10154,0 +14439,005+Z%C5%82ap-Mnie,602,520,8323711,10495,0 +14440,3.+D%C4%99bie%C5%84sko,511,620,606407,10452,0 +14441,047,537,614,699189792,9745,0 +14442,0003,530,618,848915531,11550,0 +14443,scofield+darmiarz+mehehe,489,618,699494488,10240,0 +14444,%C5%9Amieszki,527,615,3454753,9008,0 +14445,Berlin+%28Mieszko+1995%29,411,583,698769107,9976,0 +14446,Wioska+barbarzy%C5%84ska,408,420,698971484,10008,0 +14447,W.181%2F12,615,526,2999957,10242,0 +14448,Gryfios+004,617,538,698666810,8921,0 +14449,A0021,383,476,8841266,10362,0 +14450,Osada+koczownik%C3%B3w,405,426,7462660,10160,4 +14451,%7E019.,520,617,7139820,10495,0 +14452,012+Albo+jeste%C5%9B+pizz%40,623,463,699272633,10478,0 +14453,Wioska+barbarzy%C5%84ska+009%7C,574,404,6343784,9499,0 +14454,023,437,599,698659980,10019,0 +14455,Gryfios+010,616,541,698666810,10559,0 +14456,017+Sebix,619,522,8323711,10495,0 +14457,Kentin+ufam+Tobie,399,438,699783765,10000,0 +14458,038+-+Mroczna+Osada,613,454,849035905,12154,0 +14459,%5B342%5D+Chor%C4%85giewka+na+wietrze+PAA,592,421,848985692,9264,0 +14460,Land+of+Fire,398,440,698962117,9489,0 +14461,041,541,616,699189792,9741,0 +14462,Knowhere,383,496,699723284,10000,0 +14463,Zeta+Reticuli+S,414,416,699323302,10887,0 +14464,Jaaa,607,441,698635863,10495,0 +14465,Z+barba+013,405,573,225023,10495,0 +14466,K34+-+%5B061%5D+Before+Land,460,390,699088769,10126,0 +14467,EKG+.%3A%3A.+Siwyy8848%2F6,496,619,33900,10495,0 +14468,077,618,530,699373599,9806,0 +14469,005,385,458,3698627,10203,0 +14470,EKG+.%3A%3A.+freaky97%2F3,486,605,33900,10495,0 +14471,00011,528,614,848915531,11550,0 +14472,Jaaa,601,438,698635863,10479,0 +14473,Zeta+Reticuli+S,416,419,699323302,10997,0 +14474,Myk+i+do+kieszonki,378,509,9319058,9799,0 +14475,100+St%C3%B3kwa,400,565,699382126,10487,0 +14476,%3D004%3D+O+poranku,608,553,3781794,10145,0 +14477,019,620,504,849006412,10311,0 +14478,Land+of+Fire,397,441,698962117,9494,0 +14479,Wioska,384,524,849084005,10178,0 +14480,009.xxx,465,615,8612358,10149,0 +14481,A0013,381,476,8841266,10362,0 +14482,Czekam+na+VS,532,382,698350371,10495,0 +14483,0352,442,605,698659980,10019,0 +14484,A0004,381,471,8841266,10362,5 +14485,Bobolice,397,559,698769107,9835,0 +14486,Myk+i+do+kieszonki,383,516,9319058,9338,0 +14487,033,500,618,699878511,10149,0 +14488,004,611,539,8428196,9936,0 +14489,OB%23001,507,382,699368887,10237,0 +14490,%3D005%3D+Przyjecha%C5%82o+czarne,611,550,3781794,10133,0 +14491,%23015,469,617,699605333,10393,0 +14492,Wioska,382,503,849084005,10178,0 +14493,So%C5%82tys+Twojej+Wsi,438,395,849027025,9768,0 +14494,Szlachcic,590,419,699170684,9453,0 +14495,K34+-+%5B004%5D+Before+Land,455,387,699088769,10259,0 +14496,FKG+01-09,420,408,356642,9835,0 +14497,%23058,478,620,699605333,10728,1 +14498,Wioska+barbarzy%C5%84ska,404,425,7462660,10122,0 +14499,Jaaa,585,584,698635863,10827,0 +14500,138,588,416,849064752,10311,0 +14501,Barba+1,431,405,699796330,9895,0 +14502,Pobozowisko,418,589,699513260,8561,5 +14503,ADEN,525,380,698588535,9614,0 +14504,Wioska+barbarzy%C5%84ska,403,432,698884287,10285,0 +14505,Feed+me+more+014,486,379,699756210,9938,0 +14506,Wioska,380,525,849084005,10178,5 +14507,FKG+01-02,419,413,356642,9835,0 +14508,Kentin+ufam+Tobie,402,493,699783765,10000,0 +14509,A0017,382,479,8841266,10362,0 +14510,15+im+Galicyna,595,430,849037469,9809,0 +14511,Wioska+barbarzy%C5%84ska,597,575,1715091,9633,0 +14512,020.+Gloria+Victis,441,603,848886973,10357,0 +14513,s181eo14,392,451,393668,9883,0 +14514,SantiagoBernabeu,621,508,699795378,10654,0 +14515,052,559,398,699761749,10495,0 +14516,Wioska,382,502,849084005,10178,0 +14517,010,550,392,1424656,9810,0 +14518,Zach%C3%B3d+-+007,398,565,225023,9923,0 +14519,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,459,611,8201460,10237,0 +14520,Pobozowisko,419,588,699513260,10950,0 +14521,%23018.487%7C495,606,446,556154,9735,0 +14522,Wioska+barbarzy%C5%84ska,405,423,7462660,10068,0 +14523,012.+wraca,484,618,699494488,10229,0 +14524,058,478,384,698739350,9549,0 +14525,03+Prequel,621,500,699377151,9160,0 +14526,W.181%2F22,618,522,2999957,10242,0 +14527,0205,450,610,698659980,10039,0 +14528,0014,577,406,699485250,10211,0 +14529,Ok.,388,535,849030226,9100,0 +14530,%5B217%5D+WEST,607,453,848985692,10019,0 +14531,024+Raikiri,613,459,7092442,10495,0 +14532,A011,607,448,699722599,10252,0 +14533,018+Starfall,609,557,699272880,10595,0 +14534,Land+of+Fire,399,440,698962117,9505,0 +14535,Wioska+Matz32+181.1,591,578,1715091,10560,0 +14536,023,622,506,849006412,9819,0 +14537,Konfederacja,469,386,848915730,9824,0 +14538,005,602,562,848899726,9455,0 +14539,%23032,479,621,699605333,10393,0 +14540,Wioska+barbarzy%C5%84ska,380,536,849030226,10971,0 +14541,Gryfios+012,614,535,698666810,10954,0 +14543,.014.,503,380,698489071,10316,0 +14545,Bagdad,473,381,8847546,10654,0 +14546,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+06,622,514,699379895,9656,0 +14547,003.+Gloria+Victis,440,606,848886973,9956,0 +14549,%5B345%5D+Chor%C4%85giewka+na+wietrze,597,432,848985692,10403,0 +14551,Wioska+barbarzy%C5%84ska,380,528,849030226,11550,0 +14552,Myk+i+do+kieszonki,380,507,9319058,7513,0 +14553,%23016.491%7C494,610,445,556154,9735,0 +14554,008+NABOSAKASUKA,541,522,2999957,8726,0 +14555,145,581,412,849064752,10311,0 +14556,Castle+Rock,483,622,699494488,10259,0 +14557,%3D017%3D+Nowe+pokolenie,609,549,3781794,10580,0 +14558,%23013.490%7C495,609,446,556154,9735,0 +14559,SINGED+X+SZEF,491,378,699368887,9994,0 +14560,MOTEL+4,566,400,849064614,9960,0 +14561,0088,548,611,698659980,10160,4 +14563,A+002,606,558,8078914,9590,0 +14564,Cz%C5%82uch%C3%B3w,404,574,698769107,9835,0 +14565,004.+Dol+Guldur,488,621,699494488,10273,0 +14566,Wioska+barbarzy%C5%84ska24,504,377,699368887,10237,0 +14567,%5B213%5D+WEST,608,453,848985692,10013,0 +14568,%3D006%3D+Auto%2C+od+szwagra,611,552,3781794,10580,0 +14569,%5B337%5D+Chor%C4%85giewka+na+wietrze,589,421,848985692,10406,0 +14570,MojeSzczytToTw%C3%B3jDno,523,372,828637,10476,0 +14571,0021,615,530,6510480,10162,0 +14572,064,572,424,849063849,3597,0 +14573,HMB,623,503,699379895,10252,0 +14574,002,402,431,698884287,10285,8 +14575,Mako+Reactor+1+-+B6F,522,616,8199417,10083,0 +14576,Zeta+Reticuli+S,412,418,699323302,10997,0 +14578,084,584,412,849064752,9470,0 +14579,020.+Cyrene,615,460,849091866,9177,0 +14580,Konfederacja+%2B,469,384,848915730,9699,0 +14581,Jehu_Kingdom_08_,610,460,8785314,9993,0 +14582,24+im+Proszyna,564,396,849037469,9809,0 +14583,Jaaa,575,595,698635863,10478,0 +14584,0029,427,406,848913037,9993,0 +14585,159+Ale+mnie+g%C5%82%C3%B3wka+boli,387,549,699382126,10646,0 +14586,Z+barba+011,408,576,225023,9488,0 +14587,012+Miyazaki,621,481,7092442,10495,0 +14588,K34+-+%5B046%5D+Before+Land,457,387,699088769,10016,0 +14589,%2AINTERTWINED%2A,507,623,698704189,9711,0 +14590,Darma,427,403,356642,9835,0 +14591,Land+of+Fire,394,445,698962117,9489,0 +14592,B+004,585,419,6384450,10362,3 +14593,077,475,620,699336777,10083,0 +14594,Szlachcic,578,592,930720,10280,0 +14595,C+014+Ornontowice,419,587,849084740,7343,0 +14596,%2A013%2A,622,512,698670524,8726,0 +14597,Bagdad,473,382,8847546,10654,0 +14598,015.+Carthago,615,468,849091866,9295,0 +14599,Essos,480,621,699494488,6821,0 +14600,Makalu,380,493,849013126,9656,0 +14601,K34+-+%5B093%5D+Before+Land,462,379,699088769,10259,0 +14602,102+%2A%2A%2A5a%2A%2A%2A+Wi%C5%9Bnia,540,385,699491076,10001,0 +14603,Avanti%21,380,487,698625834,9950,0 +14604,29+im+BelaPorto,594,429,849037469,9809,0 +14605,Teby_15,506,619,2585846,9638,0 +14606,0011,614,528,6510480,10322,0 +14607,037+Pot%C4%99%C5%BCny+Dzban,391,554,699382126,10478,0 +14608,166+Ale+mnie+g%C5%82%C3%B3wka+boli,388,544,699382126,9817,0 +14609,R%C4%99cznik+do+zmiany,398,432,699697558,10495,0 +14610,R%C4%99cznik+do+zmiany,401,434,699697558,10319,1 +14611,033,620,477,849088515,10019,0 +14612,Belvedere+005,579,407,699756210,10030,0 +14613,063+-+Wara%2A%2A%2A,438,605,225023,5940,0 +14614,054,568,397,849063849,10109,0 +14615,CALL+992,554,609,699784536,10311,0 +14616,s181eo29,386,456,393668,10611,0 +14617,South+K35,558,391,699146580,9809,0 +14618,Knowhere,377,501,699723284,10631,0 +14619,Wioska+barbarzy%C5%84ska,406,422,698971484,10008,0 +14621,101+Sposob%C3%B3w+na,399,566,699382126,10490,0 +14623,.achim.,538,389,6936607,9726,0 +14624,010,623,492,849091105,10160,0 +14625,011.xxx,472,618,8612358,10146,9 +14626,BoOmBaa..,444,394,6169408,10247,0 +14627,Jaaa,608,441,698635863,10239,0 +14628,Brat447,379,512,699262350,9124,4 +14629,Bagdad,474,381,8847546,10654,0 +14630,FAKE+OR+OFF,437,400,698231772,9819,0 +14631,0004,532,615,848915531,11321,7 +14634,0015,616,528,6510480,10322,0 +14635,K34+-+%5B065%5D+Before+Land,467,382,699088769,9847,0 +14636,Bocianikson007,609,547,7528491,9952,0 +14637,021+Pot%C4%99%C5%BCny+Dzban,394,561,699382126,6174,0 +14638,006,441,606,848886870,10495,0 +14639,Wioska+waldziu93,404,427,7462660,10122,0 +14640,K34+-+%5B047%5D+Before+Land,456,388,699088769,10259,0 +14641,Lord+Arsey+KING,586,584,848956513,6624,0 +14642,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+02,622,508,699379895,10495,0 +14643,%23018,477,620,699605333,10393,0 +14644,%23007+taki+agent,467,615,699605333,10393,0 +14645,CALL+923,556,604,699784536,10311,0 +14646,007+Roskilde,603,567,699272880,9994,0 +14647,Belvedere+006,580,408,699756210,10273,0 +14648,--004--,432,599,225023,10495,0 +14649,Wioska+naja1920ruch,396,555,9167250,8963,0 +14650,South+K35,558,393,699146580,10042,0 +14651,%5B328%5D+Chor%C4%85giewka+na+wietrze,601,432,848985692,10411,0 +14652,Zach%C3%B3d+-+008,399,564,225023,9796,0 +14653,005.Botew,599,571,1601917,10495,0 +14654,R%C4%99cznik+do+zmiany,397,435,699697558,10289,0 +14655,013,506,379,849010255,10019,0 +14656,Szulernia,412,415,7249451,9981,0 +14657,Konfederacja,470,383,848915730,9782,0 +14658,006,401,426,699788305,8739,0 +14659,Gattacka,599,429,699298370,10384,5 +14660,%2AINTERTWINED%2A,514,622,698704189,9614,0 +14661,%2AINTERTWINED%2A,515,617,698704189,9711,0 +14662,VN+Ishida+Mitsunari,478,382,699883079,10119,0 +14663,%23026,498,618,699605333,10393,0 +14664,Wioska,600,572,17714,10222,0 +14665,028,480,380,849010255,9816,0 +14666,R%C4%99cznik+do+zmiany,397,440,699697558,10160,7 +14667,012,620,501,849006412,10294,0 +14668,Wioska,384,540,849084005,10178,0 +14669,albo+jutro,560,607,699567608,10052,0 +14670,Wioska,599,574,17714,10222,0 +14671,Wioska+barbarzy%C5%84ska,408,426,7462660,10068,0 +14672,CALL+932,554,611,699784536,10311,0 +14673,%23+Szymi+9,388,548,699425709,9873,0 +14674,Wioska,382,526,849084005,10178,0 +14675,009.+G%C3%B3ra+Gram,488,627,699494488,10237,0 +14676,%5B340%5D+Chor%C4%85giewka+na+wietrze,588,421,848985692,10392,0 +14677,WW1,620,480,849088515,10019,0 +14678,scoti,486,617,699494488,10221,0 +14679,00978,462,434,3909522,9885,0 +14680,-Miasto+tonie,517,513,699785935,9477,0 +14681,ADEN,526,380,698588535,10287,0 +14682,003.,563,601,873575,10263,0 +14683,15+Prawdy+nie+m%C3%B3wi+nikt,620,511,699377151,3645,0 +14684,Jaaa,603,437,698635863,9851,0 +14685,K34+-+%5B086%5D+Before+Land,451,387,699088769,10259,0 +14686,A005,614,452,699722599,10146,0 +14687,Wioska+barbarzy%C5%84ska,408,419,698971484,10008,0 +14688,%230030,547,613,1536231,10495,0 +14689,0022.+C+-,621,486,7125212,10160,0 +14690,Jaaa,607,439,698635863,10495,0 +14691,%5B0019%5D,447,393,8630972,10495,0 +14692,.036.,483,380,698489071,10503,0 +14693,Land+of+Fire,397,442,698962117,9486,0 +14695,K34+-+%5B079%5D+Before+Land,464,385,699088769,10259,0 +14696,W.181%2F09,614,532,2999957,10242,0 +14697,083,471,620,699336777,9216,0 +14698,027+Nilfgaard,620,520,699272880,10263,0 +14699,Marktoberdorf,594,579,1715091,9835,0 +14700,Wioska+barbarzy%C5%84ska+008%7C,575,406,6343784,9643,0 +14701,A+003,607,562,8078914,9725,0 +14702,Wioska,384,535,849084005,10178,0 +14703,Wioska+barbarzy%C5%84ska,479,378,699658023,9659,0 +14704,s181eo10,391,445,393668,9886,0 +14705,Z+barba+014,401,565,225023,3431,0 +14706,0007,441,392,699431255,9957,0 +14707,008.xxx,469,619,8612358,10146,9 +14708,Wioska,380,527,849084005,10178,0 +14709,017.xxx,469,618,8612358,9925,0 +14710,117,581,408,849064752,10311,0 +14711,0023+Wioska+barbarzy%C5%84ska,424,597,9060641,4918,0 +14712,600%7C428+Wioska+barbarzy%C5%84ska19,600,428,6822957,9790,0 +14713,020,487,379,849010255,10019,0 +14714,Barba+5,430,403,699796330,9814,0 +14715,bucks+x+kamiiiru,408,421,848955783,10971,0 +14716,0021.+C+-,620,489,7125212,10140,0 +14717,Wioska+barbarzy%C5%84ska+012%7C,575,409,6343784,9582,0 +14718,A.014,600,566,9188016,10000,0 +14719,0001,598,426,8459255,10341,0 +14720,006,507,378,849010255,10019,1 +14721,064,475,385,698739350,9664,0 +14722,%2A005+Vestmannaeyjar,388,539,699425709,9873,0 +14723,%3F%2B44+85+Miribel,456,488,698361257,9849,0 +14724,016.,562,605,873575,9870,0 +14725,Jaaa,601,434,698635863,10495,0 +14726,0016+Bigi,428,601,9060641,8327,0 +14727,001,618,538,8428196,10055,0 +14728,0043,622,523,6510480,9638,0 +14729,%23027.490%7C494,609,445,556154,9735,0 +14730,156+Ale+mnie+g%C5%82%C3%B3wka+boli,390,550,699382126,4934,0 +14731,076.+Utgard,626,477,8337151,11678,0 +14732,003,564,399,849063849,10495,0 +14733,0012,387,459,698807570,10686,0 +14734,Gryfios+019,619,535,698666810,11888,0 +14735,Wioska+012,594,580,848971079,9761,0 +14736,%2AINTERTWINED%2A%2A,517,618,698704189,9711,0 +14737,0351,444,604,698659980,10019,9 +14738,Hojo+s+Laboratory,519,621,8199417,10083,0 +14739,149+MIKOX+025,592,418,699491076,9363,0 +14740,Taran+007,618,524,698562644,10311,0 +14741,%5B022%5D+Patayin+ka,599,517,848985692,10068,0 +14742,Kentin+ufam+Tobie,430,399,699783765,10000,0 +14743,Belvedere+024,582,408,699756210,9976,0 +14744,Avanti%21,379,482,698625834,9950,0 +14745,%2AArmagedon,591,420,848985692,10068,0 +14746,0006,444,393,699431255,9967,0 +14747,A001,624,491,9314079,9818,0 +14748,0005,388,461,698807570,10703,8 +14749,%23019+M,458,614,9037756,10971,0 +14750,Darma,423,404,356642,9835,0 +14751,0026,559,395,699485250,10211,0 +14752,0008+JacekDD,427,412,3909522,10365,0 +14753,050+-+A02.%2A%2A%2A,439,602,225023,10495,0 +14754,R%C4%99cznik+do+zmiany,401,432,699697558,10495,9 +14755,160+Ale+mnie+g%C5%82%C3%B3wka+boli,387,548,699382126,10628,0 +14756,599%7C426+012,599,426,6822957,10012,0 +14757,04.+Gladiolus+Amicitia,524,617,8199417,10495,0 +14758,0637,437,600,698659980,10019,0 +14759,Gryfios+007,617,535,698666810,10559,0 +14760,W.181%2F23,617,520,2999957,10242,0 +14761,s181eo30,390,456,393668,10595,0 +14762,Midgard,533,386,1990750,10068,0 +14764,%C5%9Amieszki,533,617,3454753,9046,0 +14765,Zeta+Reticuli+S,413,420,699323302,11188,0 +14766,FKG+01-11,422,409,356642,9835,0 +14767,Wioska+barbarzy%C5%84ska,404,426,7462660,10068,0 +14768,%2AINTERTWINED%2A,515,621,698704189,9711,0 +14769,R%C4%99cznik+do+zmiany,400,434,699697558,10160,0 +14771,A0247,379,494,8841266,10362,0 +14772,%230022,523,624,699728159,6513,0 +14773,Wioska,383,466,6258092,6927,0 +14774,085,599,567,699373599,9661,0 +14775,Zeta+Reticuli+S,412,416,699323302,11321,0 +14776,P%C5%82ocicz,412,578,698769107,7560,0 +14777,Aerith+House,520,620,8199417,10495,0 +14778,xxx,514,458,698239813,7058,0 +14779,0099,454,612,698659980,10019,7 +14780,029,539,384,849064752,10311,0 +14781,ADEN,523,378,698588535,10232,0 +14782,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+07,621,515,699379895,9509,0 +14783,Horyzont+zdarze%C5%84,536,618,7581876,10083,0 +14784,001,422,400,699402816,9835,0 +14785,Bagdad,478,380,8847546,10654,0 +14786,R%C4%99cznik+do+zmiany,399,437,699697558,10160,0 +14787,K34+-+%5B120%5D+Before+Land,449,388,699088769,10259,0 +14788,Myk+i+do+kieszonki,383,511,9319058,9799,0 +14789,Myk+i+do+kieszonki,379,507,9319058,9799,0 +14790,%5B223%5D+WEST+KA,611,453,848985692,10052,0 +14791,034.,481,618,699494488,10226,0 +14792,A0223,376,491,8841266,10362,0 +14794,14+im+Klimowa,595,427,849037469,9809,0 +14795,ADEN,521,381,698588535,10228,0 +14796,034+Pot%C4%99%C5%BCny+Dzban,391,558,699382126,10484,0 +14797,Konfederacja+%2B,463,381,848915730,10336,0 +14798,Darma,428,399,356642,9835,0 +14799,%5B210%5D+WEST,611,450,848985692,10232,7 +14800,020,431,490,699510259,9976,0 +14801,004,620,491,849006412,9819,0 +14802,A0047,381,469,8841266,10362,0 +14803,Darma,427,401,356642,9835,0 +14804,K34+-+%5B089%5D+Before+Land,457,386,699088769,10259,0 +14805,rakieta+009,619,529,848928486,5632,0 +14806,003,614,542,8428196,9937,0 +14807,31+im+Lorda+Mikiego,561,397,849037469,9809,0 +14808,Yogi,546,613,2808172,10019,0 +14809,Wioska+barbarzy%C5%84ska,390,546,699425709,8171,0 +14810,Kiedy%C5%9B+Wielki+Wojownik,389,458,8632462,10611,0 +14811,12+Vanitas,618,512,9314079,9687,0 +14812,%23023,477,621,699605333,10393,0 +14813,%230005+Kumogakure,529,621,699728159,9761,0 +14814,0006,425,407,848913037,9993,1 +14815,%2AINTERTWINED%2A,513,623,698704189,9711,0 +14816,%23001+A,460,614,9037756,10495,0 +14817,008,621,494,849091105,9986,0 +14818,A.014,416,587,849088243,10495,0 +14819,A.008,411,578,849088243,9353,0 +14820,%23004,470,616,699605333,10393,2 +14821,Szlachcic,589,419,699170684,9835,0 +14822,0135,453,612,698659980,10083,0 +14823,Kentin+ufam+Tobie,432,397,699783765,10000,0 +14824,%23007+A,464,613,33900,10495,0 +14825,008+Hokkaido,623,483,7092442,10495,0 +14826,%5B327%5D+Chor%C4%85giewka+na+wietrze,602,430,848985692,10400,0 +14827,151+MIKOX+027,591,418,699491076,9235,0 +14828,020+Pot%C4%99%C5%BCny+Dzban,393,563,699382126,10479,0 +14830,05.+Prompto+Argentum,526,618,8199417,10495,0 +14831,Bagdad,480,382,8847546,10654,0 +14832,%2AINTERTWINED%2A,507,624,698704189,9711,0 +14833,Feed+me+more+008,488,376,699756210,10348,0 +14834,Czekam+na+VS,535,382,698350371,10495,0 +14835,088+Wioska+barbarzy%C5%84ska,594,422,699491076,9380,0 +14836,010,622,501,849006412,9650,0 +14837,K34+-+%5B073%5D+Before+Land,458,388,699088769,10259,0 +14838,Jaaa,583,592,698635863,10548,0 +14839,Nope,392,479,6258092,10083,0 +14840,Wioska+barbarzy%C5%84ska,404,428,7462660,10068,0 +14841,South+K45,592,422,699146580,10042,0 +14842,Bagdad,472,380,8847546,10654,0 +14843,0082,458,616,698659980,10160,5 +14844,%5B134%5D+North,582,473,848985692,10068,0 +14845,Dextrose,624,500,699379895,10495,0 +14846,Wioska+barbarzy%C5%84ska,383,461,3698627,10078,0 +14847,So%C5%82tys+Twojej+Wsi,438,392,849027025,9627,0 +14849,A.025,406,575,849088243,9415,0 +14850,077,586,412,849064752,10311,0 +14851,R%C4%99cznik+do+zmiany,395,437,699697558,10050,0 +14852,Wioska+mateuszek1123,553,391,3600737,9013,0 +14853,078,621,530,699373599,6869,0 +14854,0020,621,527,6510480,10336,0 +14855,0044,619,512,6510480,9905,0 +14856,Wioska,385,545,849084005,10178,6 +14857,007,621,495,849091105,10160,0 +14858,z+010,561,601,699342219,10474,0 +14859,%2AINTERTWINED%2A,513,621,698704189,9711,0 +14860,Nowa+03,605,561,698702991,9824,0 +14861,Wioska+026,597,578,848971079,9761,0 +14862,072,618,529,699373599,9897,0 +14863,ADEN,522,382,698588535,9737,5 +14864,Ci%C4%99%C5%BCka+powieka,565,568,699785935,10311,0 +14865,EKG+024,486,621,33900,9992,0 +14866,Myk+i+do+kieszonki,380,509,9319058,9799,0 +14867,W.181%2F11,617,528,2999957,10242,0 +14868,Taran,555,379,699170684,9492,0 +14869,Myk+i+do+kieszonki,381,512,9319058,9799,0 +14870,%2AINTERTWINED%2A%2A,509,621,698704189,8963,0 +14871,makelovenotwar,387,462,698807570,10068,0 +14872,0027.+C+-,624,487,7125212,8601,0 +14874,103+Cvrvvus,396,560,699382126,10104,0 +14875,So%C5%82tys+Wsi+Twin1992,438,397,849027025,9293,0 +14876,0028,561,393,699485250,10211,0 +14877,Jaaa,572,601,698635863,10474,0 +14878,028+-+Manchester,407,579,225023,10495,0 +14879,020,605,435,699298370,6736,3 +14880,K34+-+%5B007%5D+Before+Land,447,380,699088769,10259,0 +14881,ADEN,522,381,698588535,10338,0 +14882,0004,593,417,8459255,10203,0 +14883,010,501,378,698739350,9761,0 +14884,Sawanna,380,490,699265922,9752,0 +14885,0011.+C+-+Belatona,624,502,7125212,10285,0 +14886,Taran+001,620,531,698562644,10311,5 +14887,Gryfios+014,617,542,698666810,12002,0 +14888,Bagdad,474,379,8847546,10654,0 +14889,%230002,517,377,7651093,9811,0 +14890,%3D007%3D+Bez+ko%C5%82a+zapasowego,612,552,3781794,10365,0 +14891,001,569,480,849070464,8969,0 +14892,Gasherbrum+II,378,490,699265922,9835,0 +14893,bucks+x+kamiiiru,409,422,848955783,10384,3 +14894,004,580,598,698999105,10311,0 +14895,Gattacka,600,427,699298370,9367,0 +14896,-+015+-,546,609,849018239,10000,0 +14897,Myk+i+do+kieszonki,376,506,9319058,9799,0 +14898,s181eo06,391,447,393668,9886,0 +14899,Ulu-mulu,437,615,699697558,9708,0 +14900,Wioska+barbarzy%C5%84ska,587,585,1715091,9628,0 +14901,Wioska+%28008%29,619,476,698232227,8531,0 +14902,%2AINTERTWINED%2A,511,623,698704189,9711,0 +14903,043.,480,618,699494488,10237,0 +14904,068,586,590,698999105,10311,0 +14906,0045,620,516,6510480,9572,0 +14907,R%C4%99cznik+do+zmiany,397,439,699697558,10160,0 +14909,072,586,587,698999105,10311,0 +14910,Wioska,382,519,849084005,10178,0 +14911,Wioska+barbarzy%C5%84ska,416,408,699402816,9835,0 +14912,Wioska+vequs,405,427,7462660,10252,0 +14913,SINGED+X+SZEF,494,377,699368887,9994,0 +14915,049+Zimny+Lehos%C5%82aw,389,552,699382126,8621,0 +14916,K34+-+%5B027%5D+Before+Land,465,383,699088769,10259,9 +14917,FAKE+OR+OFF,443,401,698231772,10025,0 +14918,Sam+goroli+ciulaja,386,452,699711723,9701,0 +14919,Ulu-mulu,432,603,699697558,9134,0 +14920,Tanjirou,574,596,699364813,10495,0 +14921,Brat447,375,494,699262350,10495,0 +14922,Land+of+Fire,394,441,698962117,9491,0 +14923,Zeta+Reticuli+S,414,411,699323302,10997,0 +14925,Avanti%21,378,487,698625834,9950,0 +14926,Malinki+1,621,521,8013349,6924,0 +14927,FKG+01-19,415,412,356642,9835,0 +14928,Wioska,388,553,849084005,5902,0 +14929,K34+-+%5B043%5D+Before+Land,462,390,699088769,10126,0 +14930,006,620,497,849091105,9922,0 +14931,K34+-+%5B057%5D+Before+Land,456,387,699088769,10126,0 +14932,Bagdad,472,383,8847546,10654,0 +14933,Sk%C5%82ad,512,618,606407,10249,0 +14934,A022,620,457,699722599,10354,0 +14935,Wioska+036,591,584,848971079,9761,0 +14936,Land+of+Fire,395,441,698962117,9491,0 +14937,Horyzont+zdarze%C5%84,540,615,7581876,10019,0 +14938,MojeSzczytToTw%C3%B3jDno,512,377,828637,10495,0 +14939,.035.,486,378,698489071,10252,0 +14941,%2A%2A%2A9ebaabc9d%2A%2A%2A+Granat,550,388,1990750,10068,0 +14942,Land+of+Fire,399,450,698962117,9485,0 +14944,Wioska+017,592,576,848971079,9761,0 +14945,A0008,378,482,8841266,10362,0 +14946,004+Wioska+barbarzy%C5%84ska,528,380,699854484,10068,0 +14947,165,557,390,849064752,10311,4 +14949,Jaaa,610,441,698635863,10476,0 +14950,0356,446,607,698659980,10083,1 +14951,%2AINTERTWINED%2A,515,622,698704189,9711,0 +14952,060+-+Ukulele,424,595,225023,4878,0 +14953,0469,449,609,698659980,10083,0 +14954,0139,454,614,698659980,10297,0 +14955,Wioska+barbarzy%C5%84ska,387,453,3698627,10073,0 +14956,VN+Aehelfaed,466,381,699883079,9651,0 +14957,Wioska+barbarzy%C5%84ska,381,533,849030226,9842,0 +14958,Wioska+barbarzy%C5%84ska,482,378,699658023,9647,0 +14959,097+Wioska+barbarzy%C5%84ska,595,422,699491076,8841,0 +14960,030,503,625,699878511,10140,0 +14961,CALL+925,508,623,699784536,10311,1 +14962,BoOmBaa..,443,392,6169408,7417,0 +14963,7.62+mm,484,378,699777234,6645,0 +14964,%230008+Kiedy%C5%9B,490,545,9272054,10005,0 +14965,%2A014%2A,609,511,698670524,8480,0 +14966,Feed+me+more+015,484,380,699756210,9818,0 +14967,Z+barba+008,405,578,225023,10495,0 +14968,Taran,548,387,699170684,9443,0 +14969,010.,564,606,873575,9923,0 +14970,012.xxx,465,617,8612358,10146,0 +14971,Wioska,601,569,17714,10222,0 +14972,008,601,574,699099811,9835,0 +14973,Nic+dwa+razy,573,597,699785935,9976,0 +14974,Gravity,404,456,698962117,9489,0 +14975,008.,565,600,873575,10150,0 +14976,Pobozowisko,408,590,699513260,10971,0 +14977,ADEN,527,381,698588535,10287,0 +14978,0426,548,610,698659980,10019,0 +14979,Jaaa,617,460,698635863,10478,0 +14980,Warzywniak+019,449,551,698290577,2662,0 +14981,Szulernia,414,413,7249451,9981,0 +14982,016.xxx,469,620,8612358,10152,0 +14983,005,401,425,699788305,9744,0 +14984,0357,444,608,698659980,10083,0 +14985,Westcoast.016,391,439,848918380,10178,6 +14986,000,613,541,8428196,9883,0 +14988,065,567,599,699373599,10030,0 +14989,Myk+i+do+kieszonki,377,509,9319058,9799,0 +14990,Wioska,383,529,849084005,8640,0 +14991,Avanti%21,376,485,698625834,9950,0 +14992,Brat447,376,517,699262350,10495,0 +14993,Jaaa,574,598,698635863,10478,0 +14994,%23022+A,458,615,9037756,10495,0 +14995,037+-+two,416,583,225023,10495,0 +14996,ADEN,528,377,698588535,9183,0 +14997,Jehu_Kingdom_33_,616,461,8785314,9993,0 +14999,Wioska+%28043%29,619,484,698232227,10026,0 +15000,Czekam+na+VS,538,382,698350371,10495,0 +15001,A.019,409,585,849088243,9535,0 +15002,018.xxx,467,618,8612358,10146,0 +15003,006.xxx,472,619,8612358,9925,0 +15004,161+Ale+mnie+g%C5%82%C3%B3wka+boli,386,548,699382126,10495,0 +15006,.achim.,529,384,6936607,9723,0 +15007,011,623,495,849091105,9854,0 +15008,08.+Cindy+Aurum,520,619,8199417,10495,0 +15009,A012,613,447,699722599,10357,0 +15010,South+K45,591,421,699146580,9257,0 +15011,P%21nk,580,591,699785935,10224,0 +15012,Wioska+barbarzy%C5%84ska,598,571,6929240,8966,0 +15013,Wioska+barbarzy%C5%84ska,610,558,7047342,10487,0 +15014,005.+Dor+Daedeloth,489,621,699494488,10233,0 +15015,068+Jokohama,620,471,7092442,10495,0 +15016,K34+-+%5B052%5D+Before+Land,454,389,699088769,10126,0 +15017,Bagdad,473,378,8847546,10654,0 +15018,0004,425,408,848913037,9993,7 +15019,%2F05+%28Mati72611%29,408,575,698769107,9835,0 +15020,008,500,379,698739350,9761,0 +15021,Z+barba+016,401,569,225023,6878,0 +15022,Gryfios+006,617,537,698666810,10495,0 +15023,ADEN,525,382,698588535,9737,0 +15024,054+-+GoldFaber,420,594,225023,9678,0 +15025,Kentin+ufam+Tobie,389,446,699783765,10000,0 +15026,Planeta+Vegeta,410,409,698971484,10008,0 +15027,Wioska+barbarzy%C5%84ska,609,560,7047342,10478,0 +15028,Taran,551,378,699170684,9452,0 +15029,Wioska+Altivo,572,442,699368887,9994,0 +15030,087,599,568,699373599,9087,0 +15031,Wioska-003-,541,385,699170684,9379,3 +15032,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,622,8201460,10237,0 +15033,%23022,467,616,699605333,10393,0 +15034,Carnagos,604,564,698702991,9761,0 +15035,Lord+Arsey+KING,582,581,848956513,8259,0 +15036,K2.,376,498,849013126,9557,0 +15037,019,613,462,8459255,10077,0 +15038,Teby_21,503,622,2585846,9638,0 +15039,Pf+Konfederacja,496,489,848915730,9938,0 +15040,SINGED+X+SZEF,488,377,699368887,9994,0 +15041,KONFA+TO+MARKA%2C+NARKA,401,463,698152377,10495,0 +15042,039-+Mroczna+Osada,612,460,849035905,12154,0 +15043,Avanti%21,378,483,698625834,9950,0 +15044,003+Sir+D%C5%BCony,390,554,699382126,10478,0 +15045,Bagdad,472,379,8847546,10375,0 +15046,Wioska,385,543,849084005,10178,0 +15047,Wioska+barbarzy%C5%84ska,402,467,699523631,10484,0 +15048,Kentin+ufam+Tobie,431,399,699783765,10078,0 +15049,Knowhere,390,502,699723284,10452,0 +15050,001,557,610,699567608,9031,0 +15051,Darma,428,400,356642,9835,0 +15052,People+Are+Strange,597,568,848926293,9501,0 +15053,150+MIKOX+026,593,418,699491076,8971,0 +15054,%2AINTERTWINED%2A,516,627,698704189,9711,0 +15055,Jaaa,580,593,698635863,10061,0 +15056,A0037,381,473,8841266,10362,0 +15057,007,505,378,849010255,10019,0 +15058,South+K35,558,390,699146580,9809,0 +15059,A021,510,378,7758085,9925,0 +15060,0048+K55+and987+OZDR,501,554,3613413,9899,0 +15061,Teby_20,505,621,2585846,9638,0 +15062,A0048,378,474,8841266,10362,0 +15063,%3D015%3D+Wioska+barbarzy%C5%84ska,612,556,3781794,10365,0 +15064,Bagdad,478,381,8847546,10654,0 +15065,Z%C5%82ote+tarasy,576,597,699785935,9899,0 +15066,kathare,548,613,873575,9872,0 +15067,WW2,621,478,849088515,9146,0 +15068,Horyzont+zdarze%C5%84,513,540,7581876,9995,0 +15069,SINGED+X+SZEF,491,375,699368887,9994,0 +15070,Wioska,383,540,849084005,10178,0 +15072,R%C4%99cznik+do+zmiany,396,439,699697558,10160,0 +15073,CALL+943,553,565,699784536,10311,0 +15074,009,623,496,849091105,9828,0 +15075,Land+of+Fire,388,451,698962117,9617,2 +15076,100,449,612,849084985,8380,0 +15077,K34+-+%5B041%5D+Before+Land,463,383,699088769,10259,0 +15078,0007,555,611,698659980,10252,0 +15079,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+03,623,514,699379895,10362,0 +15080,Feed+me+more+001,495,377,699756210,10146,0 +15081,K34+-+%5B055%5D+Before+Land,461,386,699088769,9924,0 +15082,%2A002%2A,613,504,698670524,8883,0 +15083,R-3,555,390,3600737,9013,0 +15084,038,433,392,699783765,10654,0 +15085,0005+MzM,602,567,698416970,9630,0 +15086,R%C4%99cznik+do+zmiany,399,432,699697558,10252,0 +15087,Jaaa,617,459,698635863,10261,0 +15088,Wioska+barbarzy%C5%84ska,382,464,3698627,10208,0 +15089,Jastrowie,398,580,698769107,7651,0 +15090,C002,573,401,699722599,10479,0 +15091,143+MIKOX+011,594,420,699491076,10001,0 +15092,Teby_19,504,621,2585846,9638,0 +15093,Lord+Arsey+KING,584,591,848956513,10285,0 +15094,018+Nie+mam+pomys%C5%82u,393,564,699382126,6757,3 +15095,A0031,383,474,8841266,10362,0 +15096,--005--,426,600,225023,10495,0 +15097,030+Atlanta,436,430,9291984,10495,0 +15098,A0018,382,478,8841266,10362,0 +15099,Bagdad,477,378,8847546,10654,0 +15100,Wioska+barbarzy%C5%84ska,484,379,699658023,9445,0 +15101,Kentin+ufam+Tobie,431,396,699783765,10000,0 +15102,Lord+Arsey+KING,588,586,848956513,9536,0 +15103,K34+-+%5B029%5D+Before+Land,462,382,699088769,10259,0 +15104,%23003+A,462,618,9037756,10019,4 +15105,001,397,498,699510259,9761,0 +15106,%2A%2A%2A5b%2A%2A%2A+Czere%C5%9Bnia,541,384,1990750,10068,0 +15107,Ho%C5%82opole,500,395,699433558,9976,0 +15108,Alfa,607,564,699737356,8958,0 +15109,Piek%C5%82o+to+inni,486,390,848956765,10160,0 +15110,L%C4%99dyczek,401,577,698769107,9811,0 +15111,Wyzima,497,390,699433558,10495,0 +15112,Pod,589,585,1715091,9570,0 +15113,A.016,603,568,9188016,10000,0 +15114,053+-+Mleko,423,594,225023,8638,0 +15115,Napewno+to+nie+jest+off,496,396,848912265,10495,0 +15116,0046,619,516,6510480,9712,0 +15117,Delta,608,565,699737356,8665,0 +15118,0026+XXARDASS,433,604,9060641,6628,0 +15121,014.+Lilybaeum,619,462,849091866,9179,0 +15123,C+Zach+004+%C5%81ab%C4%99dy,404,575,849084740,7664,0 +15124,A0152,379,469,8841266,10362,0 +15125,SsSs,392,500,1536625,10139,0 +15126,%2B44+60+Lyon+Montchat,408,466,698361257,9763,0 +15127,038+Pot%C4%99%C5%BCny+Dzban,391,553,699382126,5411,0 +15128,162+Ale+mnie+g%C5%82%C3%B3wka+boli,386,546,699382126,10636,0 +15129,s181eo19,383,455,393668,9886,0 +15130,%28005%29,412,533,699846892,9912,0 +15131,R%C4%99cznik+do+zmiany,393,435,699697558,10319,0 +15133,wioska+4,624,489,848935020,7871,0 +15134,Wioska+barbarzy%C5%84ska,381,535,849030226,10484,0 +15135,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,514,623,8201460,10237,0 +15136,A.015,405,575,849088243,10093,0 +15137,0122,448,388,699431255,10019,0 +15138,Ulu-mulu,436,607,699697558,11678,0 +15140,A.021,414,583,849088243,8828,0 +15141,Brat447,386,505,699262350,10479,0 +15142,Pobozowisko,415,589,699513260,10955,0 +15143,%5B113%5D,557,550,8000875,9904,0 +15144,FKG+01-21,419,404,356642,9835,0 +15145,007,400,426,699788305,10019,0 +15146,190,569,397,849064752,10311,0 +15147,%2AINTERTWINED%2A,515,623,698704189,9711,0 +15148,%230005,544,613,1536231,10495,0 +15149,A017,516,380,7758085,9925,0 +15150,Pobozowisko,417,588,699513260,10542,0 +15151,CSA,416,407,3340647,9494,0 +15152,%230003+Konohagakure,528,620,699728159,9761,0 +15153,EKG+020,494,624,33900,10336,0 +15154,Bar+Seventh+Heaven,526,621,8199417,10495,0 +15155,0027,621,526,6510480,9982,0 +15156,Wioska+julka2003,402,425,7462660,10122,0 +15157,Szlachcic,617,467,698867446,9328,0 +15158,Jedna+czerwona+kropka,500,487,848921793,11678,0 +15159,EKG+025+%2B+R+DODAT,484,622,33900,10290,0 +15160,ADEN,526,384,698588535,10154,0 +15161,Bagdad,475,382,8847546,10654,2 +15162,Wioska+barbarzy%C5%84ska,404,424,7462660,10068,0 +15163,Szlachcic,583,414,699170684,9453,0 +15164,Kiedy%C5%9B+Wielki+Wojownik,392,455,8632462,9976,0 +15165,098+Wioska+barbarzy%C5%84ska,596,420,699491076,8728,0 +15166,002,548,389,3600737,9013,0 +15167,A01,600,461,849093742,10083,0 +15168,spoceni+xD,437,608,699280514,7286,0 +15169,Black+Castel,481,619,699494488,10495,6 +15170,Wioska+Nevomex1,405,429,7462660,10068,0 +15171,bucks+x+kamiiiru,409,420,848955783,10971,0 +15172,035,495,620,699878511,10160,0 +15173,%23062,481,621,699605333,10636,0 +15174,Gravity,405,446,698962117,9488,0 +15175,032,489,380,698739350,9761,0 +15176,0437,547,615,698659980,10019,0 +15177,021.xxx,461,617,8612358,9835,0 +15178,Piek%C5%82o+to+inni,479,381,848956765,10160,0 +15179,A013,612,450,699722599,10155,0 +15180,MojeSzczytToTw%C3%B3jDno,523,379,828637,10495,0 +15181,Land+of+Fire,393,446,698962117,9485,2 +15182,z+031,547,604,699342219,10495,0 +15183,Yogi,561,619,2808172,10052,0 +15184,MojeSzczytToTw%C3%B3jDno,507,376,828637,10287,0 +15185,099+Wioska+barbarzy%C5%84ska,594,419,699491076,10001,0 +15186,Wioska+010,597,580,848971079,9761,0 +15187,Halinanium,603,564,698702991,9756,0 +15188,K34+-+%5B063%5D+Before+Land,449,390,699088769,10126,0 +15189,Mako+Reactor+1+-+B8F,518,617,8199417,10083,0 +15190,%2AINTERTWINED%2A%2A,515,624,698704189,9711,0 +15191,Myk+i+do+kieszonki,378,505,9319058,8457,0 +15192,Wioska,385,533,849084005,10178,0 +15193,%2A025%2A,623,501,698670524,5660,0 +15194,039+Pot%C4%99%C5%BCny+Dzban,390,559,699382126,10479,0 +15196,028.,486,624,699494488,10220,0 +15197,Wioska+%28022%29,623,475,698232227,8424,0 +15198,Wioska+barbarzy%C5%84ska,611,558,7047342,10478,0 +15199,uprawy,610,559,7047342,10495,0 +15200,033+Pot%C4%99%C5%BCny+Dzban,389,558,699382126,10478,0 +15201,0032,549,609,698659980,10252,0 +15202,VN+Hannibal+Barca,466,380,699883079,9626,7 +15203,CALL+1005,514,619,699784536,10311,0 +15204,059+-+Sayil,427,597,225023,4422,0 +15205,Zach%C3%B3d+-+009,396,568,225023,5532,0 +15206,Jaaa,609,437,698635863,10342,0 +15207,Piek%C5%82o+to+inni,482,391,848956765,10160,0 +15208,.006.,496,376,698489071,10595,0 +15209,008,384,456,3698627,9979,0 +15210,%5B207%5D+WEST,612,452,848985692,10221,0 +15211,001+Parostatkiem+pi%C4%99kny+rejs,502,389,698829590,10495,0 +15212,--001--,425,599,225023,9498,0 +15213,167+Ale+mnie+g%C5%82%C3%B3wka+boli,387,543,699382126,10636,0 +15214,jest+moc,557,609,699567608,9699,0 +15215,Teby_28,501,622,2585846,9638,0 +15216,010.+Antium,618,460,849091866,9073,0 +15217,015+Tarnag,624,504,8337151,10083,0 +15218,Wioska+.580,383,532,849030226,7875,0 +15219,K34+-+%5B035%5D+Before+Land,454,385,699088769,10259,0 +15221,A0040,381,467,8841266,10362,0 +15222,%5B004%5D+Siluca+Meletes,478,372,699658023,10495,0 +15223,Gryfios+005,619,541,698666810,10495,0 +15224,Bagdad,480,379,8847546,10654,0 +15225,0008+Bigi02,430,605,9060641,10544,0 +15226,Taran,544,386,699170684,9771,0 +15227,Czekam+na+VS,542,384,698350371,10495,3 +15228,K34+-+%5B034%5D+Before+Land,460,389,699088769,10259,0 +15229,s181eo26,382,457,393668,9885,4 +15231,%23033,474,619,699605333,10393,0 +15232,025.,486,623,699494488,10218,0 +15233,FKG+01-10,421,408,356642,9835,0 +15234,013.+Salon+kosmetyczny+Lalusia,566,393,699799629,10495,0 +15236,D018,580,410,699761749,10495,0 +15237,%230002,544,612,1536231,10495,8 +15238,0019,624,516,6510480,10336,0 +15239,Part+IX,534,382,698350371,10495,0 +15240,.44,410,420,848955783,10971,1 +15241,wioska+smielii,399,570,9167250,7095,0 +15242,Part+XIX,535,379,698350371,10196,0 +15243,K34+-+%5B022%5D+Before+Land,459,388,699088769,10259,0 +15244,%23036,471,622,699605333,10393,0 +15245,SINGED+X+SZEF,482,380,699368887,9643,6 +15246,006,604,497,699573053,10495,0 +15247,015+Jestem+pizz%40,619,464,699272633,10481,0 +15248,Jebalnik1,507,379,699368887,10237,0 +15249,029,481,377,849010255,10014,0 +15250,Wioska,383,543,849084005,10068,0 +15251,Wioska+Mwito,569,591,33900,10495,0 +15253,Dzie%C5%84+Dobry+%3A%29,534,380,698350371,10495,0 +15254,A002,518,370,699208929,10400,0 +15255,013+B%C4%99dzie+klinowane,391,561,699382126,10476,0 +15257,015.xxx,469,621,8612358,10069,0 +15258,Wioska,380,535,849084005,10178,0 +15259,A023,616,451,699722599,10354,0 +15260,Mniejsze+z%C5%82o+0004,376,480,699794765,9781,0 +15261,Mniejsze+z%C5%82o+0002,380,478,699794765,10249,0 +15263,%3D014%3D+P%C3%B3%C5%BAniej+szed%C5%82+taki+Zbyszek,613,554,3781794,10580,0 +15264,0342,502,622,698659980,10495,0 +15265,Darma,428,401,356642,9835,0 +15266,Wioska+spiderandsobol,397,564,9167250,7998,0 +15267,052+-+Boom,424,594,225023,9645,0 +15268,Jaaa,609,442,698635863,10223,0 +15269,K34+-+%5B064%5D+Before+Land,448,392,699088769,9924,0 +15270,Kentin+ufam+Tobie,385,449,699783765,10000,0 +15271,Collapsed+Expressway,525,620,8199417,10495,0 +15272,R-5,551,385,3600737,9013,0 +15273,Mniejsze+z%C5%82o+0007,375,481,699794765,8498,0 +15274,033+-+A09.%2A%2A%2A,439,604,225023,10495,0 +15275,Wioska,379,524,849084005,10178,0 +15276,Cypel,613,549,698702991,9835,0 +15277,Sahara,376,495,699265922,10019,0 +15278,Yogi,534,616,2808172,10495,0 +15279,%2B44+61+Neufchatel+Hardelot,413,469,698361257,10019,0 +15280,K34+-+%5B077%5D+Before+Land,456,384,699088769,9924,0 +15282,NIERAJ05,450,616,698143931,8270,0 +15283,K34+-+%5B033%5D+Before+Land,462,383,699088769,10259,0 +15284,066,570,603,699373599,10030,0 +15285,040,542,617,699189792,9761,0 +15286,0027+XXARDASS,432,601,9060641,7923,0 +15288,Bagdad,473,383,8847546,10654,0 +15289,Tank+x+007.+Dobry%2C+z%C5%82y+i+brzydki,404,499,698290577,9281,0 +15291,Wioska+5,621,473,848935020,8104,0 +15292,002+Wioska+oleska2002,530,380,699854484,10178,0 +15293,108,583,408,849064752,10311,0 +15294,K44+x033,430,400,698364331,8073,0 +15295,.010.,495,378,698489071,10485,0 +15296,Wioska+WojoKox626,435,549,699856962,2719,0 +15297,%2A006+Thorshavn,386,542,699425709,9873,0 +15298,207,569,386,849064752,9806,0 +15299,030,565,607,699316421,9744,0 +15300,01.+Wioska+mrPosel,469,586,699364813,10495,0 +15301,K34+-+%5B085%5D+Before+Land,456,382,699088769,9783,0 +15303,Wioska+barbarzy%C5%84ska+013%7C,580,404,6343784,9180,0 +15304,Osada+koczownik%C3%B3w,404,419,698971484,10008,7 +15305,%3D008%3D+Lampa+z+przodu,607,549,3781794,10365,0 +15306,Wioska+027,599,578,848971079,10019,0 +15307,Darma,424,406,356642,9835,0 +15308,%3D009%3D+By%C5%82a+w+niez%C5%82ym+stanie,610,550,3781794,10130,0 +15309,003.+Orkowa+Kopalnia,490,625,699494488,10495,8 +15310,Teby_23,504,624,2585846,9638,0 +15311,013.,623,521,6520732,9342,0 +15312,021+Driftmark,606,567,699272880,10375,0 +15313,21+XXX,619,481,699377151,7764,1 +15314,002,560,609,699567608,9633,0 +15315,Jaaa,576,596,698635863,10220,0 +15316,I+Po+Co%3F,621,483,7142659,10426,5 +15317,SPARTA,499,600,2585846,9181,0 +15319,Jaaa,609,441,698635863,10478,0 +15320,030+Lenka,633,504,2135129,9500,0 +15321,035+Izumi,625,488,7092442,10495,0 +15322,Kentin+ufam+Tobie,386,445,699783765,10000,0 +15323,Wioska,393,504,849084005,10178,0 +15324,TRR+003,407,417,698971484,10008,0 +15326,SINGED+X+SZEF,487,376,699368887,9994,0 +15327,Jaaa,590,588,698635863,10281,0 +15328,Czekam+na+VS,533,383,698350371,10495,0 +15329,20002,516,546,848915531,10636,0 +15330,Wioska,402,421,7462660,10030,7 +15331,026,456,437,9291984,10474,0 +15332,C+Zach+005+kleszczow,405,574,849084740,6414,0 +15333,ave+why%21,449,614,698143931,10192,0 +15334,004,544,615,699189792,9744,0 +15335,006.+Gloria+Victis,437,606,699697558,9520,0 +15336,K34+-+%5B040%5D+Before+Land,458,385,699088769,10259,0 +15337,018.+Pompeii,614,460,849091866,9087,0 +15338,A.017,409,586,849088243,9341,0 +15339,089,598,572,699373599,9741,9 +15340,yogi,513,545,2808172,10019,0 +15341,0008,622,524,6510480,10336,0 +15342,%2A033%2A,623,479,698670524,8596,0 +15343,Pod,591,581,1715091,9606,0 +15344,R%C4%99cznik+do+zmiany,397,433,699697558,10362,0 +15345,Vittese,402,570,9167250,9701,0 +15346,Taran,547,387,699170684,9825,0 +15347,Myk+i+do+kieszonki,374,502,9319058,9799,0 +15348,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,630,8201460,10237,0 +15349,VN+Rhya,475,376,699883079,9570,0 +15350,003,513,591,699698253,10487,0 +15351,Myk+i+do+kieszonki,378,513,9319058,9799,0 +15352,Wioska+l2adziu,390,476,699523631,10478,0 +15353,Wioska,379,519,849084005,10178,0 +15354,Gattacka,600,426,699298370,9643,0 +15355,046,539,619,699189792,9742,0 +15356,South+K35,552,387,699146580,10042,0 +15357,C+017,562,394,6384450,10362,0 +15358,030.,493,624,699494488,10481,0 +15359,27+im+Sazykina,594,417,849037469,9809,0 +15360,NOT+FOR+YOU,458,554,9236866,5616,0 +15361,Czekam+na+VS,540,382,698350371,10495,0 +15362,148,582,411,849064752,10311,0 +15363,0019+MzM,603,565,698416970,9258,0 +15364,085,574,405,849064752,10311,0 +15365,%2A032%2A,622,482,698670524,8235,0 +15366,Horyzont+zdarze%C5%84,538,618,7581876,10019,0 +15367,020,576,405,849064752,10311,0 +15368,015,476,624,699336777,9825,0 +15369,Mlask,468,622,699443920,9761,0 +15370,192,570,395,849064752,10311,0 +15371,014,581,410,849063849,10636,0 +15372,Gattacka,605,430,699298370,9296,0 +15373,Master+Carry,507,368,699368887,10237,0 +15374,Part+XXIII,531,381,698350371,10495,0 +15375,035+Pot%C4%99%C5%BCny+Dzban,390,555,699382126,10495,0 +15376,Jaaa,604,431,698635863,10481,0 +15377,074,586,408,849064752,10311,0 +15378,Ulu-mulu,428,603,699697558,10584,0 +15379,Myk+i+do+kieszonki,380,514,9319058,6540,0 +15381,Wioska,383,547,849084005,10178,0 +15382,0031+Wioska+barbarzy%C5%84ska,431,603,9060641,5350,0 +15383,110,570,398,849064752,10311,0 +15384,005.+Neapolis,614,456,849091866,9179,4 +15385,ADEN,527,382,698588535,9737,0 +15386,Knowhere,390,494,699723284,10484,0 +15387,A0248,378,495,8841266,10362,0 +15388,058+-+Brise,423,600,225023,7524,0 +15389,030,584,410,849064752,10311,0 +15390,Wioska,377,526,849084005,10178,0 +15391,010.xxx,463,617,8612358,10146,0 +15392,Kentin+ufam+Tobie,388,446,699783765,10000,0 +15393,Wioska+barbarzy%C5%84ska,612,558,7047342,10479,0 +15394,Kentin+ufam+Tobie,386,448,699783765,10000,0 +15395,Pobozowisko,416,589,699513260,10955,0 +15396,HOTEL+5,568,400,849064614,9747,0 +15397,Wioska+barbarzy%C5%84ska,406,417,698971484,10008,0 +15398,NWO,391,522,849030226,10954,0 +15399,Szlachcic+007,622,534,698562644,10311,0 +15400,ave+why%21,449,613,698143931,10213,0 +15401,wioska+smieliiii,401,571,9167250,8381,5 +15402,Wioska+barbarzy%C5%84ska,446,386,699191449,10495,0 +15403,Wioska+barbarzy%C5%84ska,405,424,7462660,10068,0 +15404,R%C4%99cznik+do+zmiany,397,437,699697558,10160,0 +15405,Brat447,374,494,699262350,10490,0 +15406,Pobozowisko,417,591,699513260,9614,0 +15407,0028+XXARDASS,433,601,9060641,9563,0 +15408,Myk+i+do+kieszonki,380,510,9319058,9799,0 +15409,061+-+Bonanza,423,593,225023,3955,0 +15410,K34+-+%5B008%5D+Before+Land,452,384,699088769,10259,0 +15411,D011,509,391,7758085,9861,0 +15412,Wioska+barbarzy%C5%84ska,447,386,699191449,9873,0 +15413,Westcoast.003,391,435,848918380,10178,0 +15414,Bagdad,477,379,8847546,9835,7 +15415,0027,555,612,698659980,10019,0 +15416,ShocK,624,510,699379895,10019,0 +15417,Avanti%21,380,482,698625834,9950,0 +15418,MojeSzczytToTw%C3%B3jDno,520,378,828637,10495,0 +15419,Vengerberg,492,395,699433558,10311,0 +15420,0008,444,389,699431255,9969,0 +15421,%23008,469,609,699605333,10393,0 +15422,Taran,545,382,699170684,9379,0 +15423,Jaaa,581,594,698635863,10228,0 +15424,Wioska+barbarzy%C5%84ska,408,414,698971484,10008,0 +15426,K34+-+%5B021%5D+Before+Land,466,384,699088769,10259,0 +15427,Jaaa,613,443,698635863,9753,0 +15428,0015.+C+-,621,506,7125212,10149,0 +15429,Jaaa,607,440,698635863,10062,0 +15430,Defensywa+III,575,399,698350371,8186,0 +15431,0024+XXARDASS,426,597,9060641,9563,0 +15432,Wioska+barbarzy%C5%84ska,380,465,3698627,10075,0 +15433,011+...,622,470,699272633,10475,3 +15434,%23048.504%7C527,623,478,556154,9735,0 +15435,Wioska,378,518,849084005,10178,0 +15436,K34+-+%5B048%5D+Before+Land,457,383,699088769,10259,0 +15437,%5BA%5D_%5B019%5D+Dejv.oldplyr,398,492,699380607,10336,0 +15438,wioska+sbbbb,403,573,9167250,6794,0 +15439,%5B222%5D+WESTsssss,613,451,848985692,10236,0 +15440,0012+Wioska+barbarzy%C5%84ska,425,602,9060641,9360,0 +15441,002.,564,605,873575,9617,5 +15442,020.,487,624,699494488,10220,0 +15443,Ulu-mulu,435,606,699697558,11077,0 +15444,PRO8L3M,466,485,7491093,9835,0 +15445,R%C4%99cznik+do+zmiany,394,434,699697558,10160,0 +15446,%3D010%3D+Grzyb%C3%B3w+Janusz,612,550,3781794,10580,0 +15447,Avanti%21,380,481,698625834,10042,0 +15448,Wioska,377,518,849084005,10178,0 +15449,Nibelheim,507,621,8199417,9194,0 +15450,Wioska+barbarzy%C5%84ska,400,570,9167250,5748,0 +15451,HOTEL+4,567,398,849064614,9747,0 +15452,Wioska,380,541,849084005,10178,0 +15453,z+054,585,603,699342219,10481,0 +15454,031,622,469,8459255,9913,0 +15455,0088,459,383,699431255,9835,0 +15456,Bagdad,475,380,8847546,10654,0 +15457,003,400,430,698884287,10285,8 +15458,Wioska+barbarzy%C5%84ska+011%7C,577,404,6343784,9606,0 +15459,Pobozowisko,416,590,699513260,10952,0 +15460,Wioska,377,525,849084005,10178,0 +15461,%2AINTERTWINED%2A%2A,507,625,698704189,9711,0 +15462,My+Immortal,580,592,699785935,10224,0 +15463,Wioska+barbarzy%C5%84ska,406,416,698971484,10008,0 +15464,AWioska+barbarzy%C5%84ska,614,552,7047342,10495,0 +15465,Myk+i+do+kieszonki,377,506,9319058,9799,0 +15466,031.,610,471,8900955,11130,0 +15467,0047,621,524,6510480,9255,0 +15468,.021.,493,375,698489071,10595,0 +15469,031,569,603,699316421,9744,0 +15470,BoOmBaa..,441,390,6169408,9003,0 +15471,043+Pot%C4%99%C5%BCny+Dzban,389,555,699382126,10481,0 +15472,604%7C541+013+legatus,604,541,6822957,10239,0 +15473,.achim.,534,392,6936607,10311,0 +15474,Myk+i+do+kieszonki,375,504,9319058,9799,0 +15475,R%C4%99cznik+do+zmiany,384,478,699697558,10495,0 +15476,Pobozowisko,411,586,699513260,10626,0 +15477,Centrum+dowodzenia,631,491,9314079,9819,0 +15478,002+To+tylko+farma,389,559,699382126,10475,8 +15479,052.,485,623,699494488,10218,0 +15480,%3D011%3D+Tego+dnia+sporo+zebra%C5%82,607,552,3781794,10447,0 +15481,0358,445,608,698659980,10019,2 +15483,111+AK+Suisited,388,555,699382126,10495,0 +15484,Jaaa,607,435,698635863,10373,0 +15485,0006,619,536,6510480,10319,0 +15486,0063+b13,457,433,3909522,6801,0 +15487,Wioska+013,597,579,848971079,9761,0 +15488,008,505,375,849010255,10019,7 +15489,s181eo20,381,457,393668,9883,0 +15490,090,583,407,849064752,10311,0 +15491,23+im+Sawickej,585,416,849037469,9809,0 +15492,R%C4%99cznik+do+zmiany,397,434,699697558,10362,0 +15493,C.007,421,596,849088243,10254,0 +15494,034+Toyama,626,489,7092442,10495,0 +15495,021,568,604,698999105,10311,0 +15497,005,616,545,8428196,9939,0 +15498,KONFA+TO+MARKA%2C+NARKA,388,474,698152377,10311,0 +15499,Hej+hoo,443,387,699191449,10132,0 +15500,makelovenotwar2,385,459,698807570,10178,0 +15501,32.+Wioska+32,393,568,849091769,10005,0 +15502,Wioska+barbarzy%C5%84ska,379,538,849030226,10481,0 +15503,011,621,536,8428196,9937,0 +15504,Osada+koczownik%C3%B3w,379,534,849030226,10971,5 +15505,A+001,606,561,8078914,9888,0 +15506,021,618,467,8459255,10203,0 +15507,003,560,610,699567608,9959,0 +15508,005.+Gloria+Victis,441,607,848886973,10280,0 +15509,%2AINTERTWINED%2A,514,626,698704189,9711,0 +15510,025,502,375,698739350,9761,0 +15511,Reco,489,545,698704189,9711,0 +15512,024+Pot%C4%99%C5%BCny+Dzban,389,561,699382126,10476,0 +15513,Czekam+na+VS,531,382,698350371,10495,0 +15514,BoOmBaa..,443,388,6169408,7803,0 +15515,SSJ+017,513,626,699054373,9761,0 +15516,XXXVIII,533,378,698350371,10345,0 +15517,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+01,623,498,699379895,10254,6 +15518,.053.,484,375,698489071,7154,0 +15519,Defensywa+II,574,400,698350371,10495,0 +15520,Pobozowisko,396,571,699513260,9947,2 +15521,20+im+Rusaka,583,405,849037469,9809,0 +15522,008+Wioska,619,469,699671454,6600,0 +15523,002.xxx,466,617,8612358,10160,0 +15524,031,584,404,849064752,10146,1 +15525,0087,554,610,698659980,10160,0 +15526,Gattacka,597,425,699298370,9744,0 +15527,054,602,587,698786826,10237,0 +15528,011.+San+Marino,619,460,849091866,10300,0 +15529,018.,489,623,699494488,10217,0 +15530,BoOmBaa..,444,403,6169408,10495,0 +15531,Kilo,610,560,699737356,8665,0 +15532,Ulu-mulu,437,607,699697558,10278,8 +15535,0014+Wioska+barbarzy%C5%84ska,422,600,9060641,10375,0 +15536,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+11,626,515,699379895,8921,0 +15537,Jaaa,603,434,698635863,10034,0 +15538,C004,571,397,699722599,10490,0 +15539,D017,580,407,699761749,10495,0 +15540,Wioska+przemomam,440,608,699697558,6284,0 +15541,010,505,379,849010255,9390,0 +15542,Szlachcic+003,617,533,698562644,10311,0 +15543,K34+-+%5B101%5D+Before+Land,455,383,699088769,10259,0 +15544,005+Sewilla,624,480,849093875,9759,0 +15545,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,444,612,8201460,10237,0 +15546,Wioska+JuanDe,536,380,698350371,10495,0 +15547,Wioska,383,546,849084005,6928,0 +15548,Darma,426,397,356642,9835,0 +15549,.achim.,535,390,6936607,7768,0 +15550,A.020,411,585,849088243,9977,0 +15551,012,496,387,698739350,9761,0 +15552,0032+Wioska+barbarzy%C5%84ska,434,609,9060641,5939,0 +15553,A0162,373,491,8841266,10362,0 +15554,-x5,501,496,848967710,10495,0 +15555,114+MikeJazz,388,551,699382126,9297,0 +15556,%2AINTERTWINED%2A,520,625,698704189,9117,0 +15557,...Just+like+that,461,488,699723284,10452,0 +15558,Myk+i+do+kieszonki,377,512,9319058,9799,0 +15559,009.,614,549,8900955,5706,0 +15560,So%C5%82tys+Twojej+Wsi,440,388,849027025,9886,0 +15561,Zach%C3%B3d+-+016,395,570,225023,10026,0 +15562,Wioska+%28005%29,621,485,698232227,9902,0 +15563,Excelsior,572,598,699364813,10495,9 +15564,004.+Zmora,508,589,699703642,9761,0 +15565,0018,471,618,33900,10358,0 +15566,%7E088.,497,603,7139820,10495,0 +15567,Gryfios+008,619,539,698666810,10273,7 +15568,0013.+C+-+Tarnag,626,503,7125212,9690,0 +15569,0046,460,618,698659980,10083,0 +15570,0018,619,526,6510480,10317,0 +15571,EKG+M10+%C5%81,479,609,33900,10559,0 +15572,0008,557,381,699485250,10211,0 +15573,Pobozowisko,410,587,699513260,10955,0 +15574,Gattacka,604,429,699298370,9372,0 +15575,039.,484,625,699494488,10226,0 +15576,0000+oko,413,408,3909522,9344,0 +15577,Jedyneczka,504,378,699368887,10470,0 +15578,Wioska+barbarzy%C5%84ska,418,408,699402816,9835,0 +15579,Piek%C5%82o+to+inni,482,394,848956765,10019,0 +15580,Jaaa,587,591,698635863,10368,0 +15581,31.+Wioska+31,393,567,849091769,8227,0 +15582,%5B211%5D+WEST,614,451,848985692,10236,7 +15583,Wioska14,619,468,848935020,10252,0 +15584,006+Wioska+barbarzy%C5%84ska,530,377,699854484,10178,0 +15585,kathare,547,614,873575,9912,0 +15586,Bagdad,478,378,8847546,10654,5 +15587,Wioska+barbarzy%C5%84ska,512,379,699368887,10237,0 +15588,K34+-+%5B126%5D+Before+Land,451,388,699088769,10259,0 +15589,011,502,627,699878511,10152,0 +15590,087,583,411,849064752,10311,0 +15592,A.009,405,576,849088243,9351,0 +15593,R%C4%99cznik+do+zmiany,401,428,699697558,10160,0 +15594,VN+Guan+Yu,469,380,699883079,9641,0 +15595,Wioska+barbarzy%C5%84ska,380,537,849030226,10484,0 +15596,Wioska13,620,468,848935020,9554,0 +15597,158+Ale+mnie+g%C5%82%C3%B3wka+boli,387,550,699382126,10487,0 +15598,Avanti%21,374,487,698625834,9950,0 +15599,MojeSzczytToTw%C3%B3jDno,511,373,828637,10495,0 +15600,Belvedere+007,585,406,699756210,10311,0 +15601,053.,484,624,699494488,9983,0 +15602,Westcoast.065,395,428,848918380,10178,0 +15603,Taran,546,386,699170684,9835,0 +15604,Myk+i+do+kieszonki,374,510,9319058,9799,0 +15605,XXXII,538,379,698350371,10495,0 +15606,Vasperland_024,623,513,7047342,10484,0 +15607,VN+Belisarius,469,381,699883079,9653,0 +15608,045.,493,625,699494488,10220,0 +15609,012,622,497,849091105,10309,0 +15610,R%C4%99cznik+do+zmiany,386,477,699697558,10495,0 +15611,Sian%C3%B3w,387,553,698769107,8017,0 +15612,bucks+x+kamiiiru,421,422,848955783,10971,0 +15613,%5B009%5D,621,541,698305474,9809,0 +15614,0003,597,421,8459255,10203,0 +15615,TRR+004,407,416,698971484,10008,0 +15616,02+im+Kirowa,588,415,849037469,9809,4 +15617,Ufam+Tobie,383,482,699265922,9782,0 +15618,Wioska,380,533,849030226,10951,0 +15619,Oeste+dos,385,554,698916948,5667,0 +15620,070,588,590,698999105,10311,0 +15621,016,483,623,699494488,9364,0 +15622,%5BA%5D_%5B002%5D+Dejv.oldplyr,393,480,699380607,10444,0 +15623,145+MIKOX+016,589,413,699491076,8543,0 +15624,A0041,378,472,8841266,10362,0 +15625,GOGOLICE,514,376,699368887,10237,0 +15626,Teby_22,506,622,2585846,9638,0 +15627,037.,482,626,699494488,10223,0 +15628,174,549,386,849064752,10311,0 +15629,Mniejsze+z%C5%82o+0019,375,483,699794765,9746,0 +15630,Ulu-mulu,432,604,699697558,4789,0 +15631,Myk+i+do+kieszonki,376,509,9319058,9799,0 +15632,EKG+026+Dawid,482,620,33900,10120,0 +15633,.53,382,514,848955783,10971,0 +15634,Twierdza+3,624,486,848935020,7565,0 +15635,CALL+914,509,626,699784536,10311,5 +15636,Szlachcic+008,619,533,698562644,10311,0 +15637,089+Wioska+barbarzy%C5%84ska,595,421,699491076,9369,0 +15638,Wioska,379,525,849084005,10178,0 +15639,znow+zawijam+lolka+z+grama,392,567,9167250,5109,0 +15640,0013,620,528,6510480,10315,0 +15641,R%C4%99cznik+do+zmiany,397,430,699697558,10160,3 +15642,Avanti%21,375,487,698625834,9950,0 +15643,026,427,395,699783765,11130,0 +15644,rakieta+010,620,529,848928486,6155,0 +15645,Czekam+na+VS,543,382,698350371,10444,0 +15646,Mniejsze+z%C5%82o+0001,379,478,699794765,10147,0 +15647,Wioska+barbarzy%C5%84ska,442,387,699191449,10495,0 +15648,079,624,497,699373599,7818,0 +15649,031,447,613,849084985,10295,0 +15650,Taran,545,383,699170684,10019,0 +15651,099,448,615,849084985,10593,0 +15653,A024,617,451,699722599,10233,0 +15654,K34+-+%5B030%5D+Before+Land,454,384,699088769,10259,0 +15655,Pustynia,377,497,699265922,9816,0 +15657,Wioska+barbarzy%C5%84ska,382,532,849030226,9574,0 +15658,Taran,549,383,699170684,9492,0 +15659,Wioska+022,595,584,848971079,9761,0 +15660,075,480,625,699336777,9899,0 +15661,Mniejsze+z%C5%82o+0033,374,485,699794765,10011,0 +15662,HORUS,517,625,7756002,9893,0 +15663,055,483,376,698739350,7878,0 +15664,B008,624,496,9314079,9819,0 +15665,Pigmej,376,488,699265922,9752,0 +15666,22+im+%C5%81orenta,583,406,849037469,9809,0 +15667,Winter+is+coming,500,576,699364813,9753,0 +15668,Darma,426,399,356642,9835,0 +15669,WW4,618,481,849088515,10019,0 +15670,Wioska+barbarzy%C5%84ska,614,554,7047342,10481,0 +15671,Knowhere,373,509,699723284,7775,0 +15672,Wioska,380,542,849084005,10178,0 +15673,012+Wioska+Crawley,622,475,699671454,8071,0 +15674,Wioska,379,516,849084005,10178,0 +15675,025+-+AAAAA,423,599,225023,10254,0 +15676,Ulu-mulu,438,610,699697558,9472,0 +15677,Gwiazda+%C5%9Amierci,541,381,698350371,10495,5 +15678,--002--,425,600,225023,10495,0 +15679,Jaaa,575,600,698635863,10479,0 +15680,Gorzelnia,622,511,699795378,10252,0 +15681,%2AINTERTWINED%2A%2A,516,622,698704189,9711,0 +15682,MojeSzczytToTw%C3%B3jDno,521,377,828637,10495,0 +15683,MojeSzczytToTw%C3%B3jDno,517,375,828637,10495,0 +15684,0048,623,520,6510480,9649,0 +15685,Wioska+barbarzy%C5%84ska,416,410,699402816,9835,0 +15686,Bocianikson013,612,549,7528491,7322,0 +15687,Gryfios+001b,621,538,698666810,11879,0 +15688,FKG+01-12,420,405,356642,9835,0 +15689,006.+Blaviken,566,392,699799629,10495,0 +15690,Westcoast.014,392,437,848918380,10178,0 +15691,Wioska,375,521,849084005,10178,0 +15692,0150,549,614,698659980,10252,0 +15693,Wioska,386,552,849084005,7303,0 +15694,14+K-PAX,622,509,699377151,6259,0 +15695,038.,483,626,699494488,10221,0 +15696,.037.,489,375,698489071,10595,0 +15697,Kentin+ufam+Tobie,384,448,699783765,10000,0 +15699,103,446,614,849084985,10078,0 +15700,%2A0006+Baraki,607,431,8459255,10362,0 +15701,Bocianikson008,613,548,7528491,9958,0 +15702,Wioska+barbarzy%C5%84ska,477,375,699658023,9650,0 +15703,0340,498,622,698659980,10495,0 +15704,FKG+01-18,419,403,356642,9835,0 +15705,003+Osada+gazela,622,467,699671454,9045,2 +15706,Piek%C5%82o+to+inni,489,395,848956765,10019,0 +15707,0157,452,616,698659980,8500,0 +15708,069+Fukuoka,619,472,7092442,10495,0 +15709,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,624,8201460,10237,0 +15710,Jaaa,606,430,698635863,10495,0 +15711,Wioska+014,595,576,848971079,9761,0 +15712,Wioska+barbarzy%C5%84ska,404,416,698971484,10008,0 +15713,C+018,564,394,6384450,10362,0 +15714,%5B220%5D+WEST,616,454,848985692,10290,0 +15715,Zach%C3%B3d+-+001,398,575,225023,10495,0 +15716,MojeSzczytToTw%C3%B3jDno,523,367,828637,10495,0 +15717,0000027%25,420,596,849089881,10160,0 +15718,078.+Vakar,626,478,8337151,11678,0 +15719,%23064,476,620,699605333,10636,0 +15720,R-6,550,384,3600737,9013,0 +15721,W.181%2F13,620,527,2999957,10242,0 +15722,0028,420,403,848913037,9993,0 +15723,A032,614,453,699722599,10481,0 +15724,wioska12,625,473,848935020,10362,8 +15725,Czarny,380,494,699265922,9835,0 +15726,VN+Tomyris,466,379,699883079,9643,0 +15727,Lord+Arsey+KING,589,584,848956513,10285,0 +15728,Kentin+ufam+Tobie,388,443,699783765,10000,4 +15729,A0124,375,489,8841266,10362,0 +15730,027+-+Birmingham,405,580,225023,10495,0 +15731,CALL+922,556,615,699784536,10311,0 +15732,Belvedere+020,588,408,699756210,10311,0 +15733,Ulu-mulu,436,610,699697558,10886,0 +15734,Gryfios+013,616,543,698666810,11805,0 +15735,Wioska+ValiossQ,558,612,699567608,10047,0 +15736,A014,612,447,699722599,10351,0 +15737,%2A042%2A,625,501,698670524,3351,0 +15738,Kentin+ufam+Tobie,387,442,699783765,10000,0 +15739,Wioska+barbarzy%C5%84ska+014%7C,581,404,6343784,9372,0 +15740,0029,537,517,699432672,10495,0 +15741,Knowhere,373,516,699723284,10452,0 +15742,069+-+Wojenka,420,583,225023,10495,0 +15743,.028.,486,373,698489071,10595,0 +15744,Kentin+ufam+Tobie,384,447,699783765,10000,0 +15745,Teby_29,505,625,2585846,9638,0 +15746,Jaaa,577,598,698635863,10476,0 +15747,Wioska+barbarzy%C5%84ska,379,528,849030226,10484,0 +15748,Jaaa,608,434,698635863,10479,0 +15749,Part+XXXI,533,379,698350371,10311,0 +15750,%2A024%2A,625,481,698670524,8108,0 +15751,Avanti%21,375,488,698625834,9962,0 +15752,Wioska+barbarzy%C5%84ska,399,463,699523631,10484,0 +15753,Nowa+04,612,557,698702991,9824,0 +15754,Ciapkowo,623,502,699795378,6905,0 +15755,014.,624,522,6520732,9573,0 +15756,MojeSzczytToTw%C3%B3jDno,521,379,828637,10495,0 +15757,Mut4ntMass,623,517,699379895,10495,0 +15758,009,401,420,699788305,7846,0 +15759,A0245,377,493,8841266,10362,0 +15760,MasterWolf12,556,391,3600737,9013,0 +15761,MojeSzczytToTw%C3%B3jDno,520,374,828637,10487,0 +15762,TRR+005,411,414,698971484,10008,4 +15763,Wioska,383,541,849084005,10178,0 +15764,004+Wolni+farmerzy,387,560,699382126,10478,8 +15765,Wioska+008,595,583,848971079,9761,0 +15766,%23018+A,461,615,9037756,10019,0 +15767,Jaaa,611,441,698635863,10478,0 +15768,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+04,625,515,699379895,10578,0 +15769,034,502,372,698739350,9761,0 +15771,Mniejsze+z%C5%82o+0041,377,465,699794765,9911,0 +15772,MojeSzczytToTw%C3%B3jDno,522,375,828637,10479,0 +15773,Ulu-mulu,429,603,699697558,10060,0 +15774,FKG+01-17,418,405,356642,9835,0 +15775,ADEN,522,377,698588535,10311,0 +15776,081+-+PATO-orki,436,604,225023,10495,0 +15777,A030,618,454,699722599,10476,0 +15778,010,400,420,699788305,7406,0 +15779,006,478,605,8925624,8513,0 +15780,Wioska,381,544,849084005,10178,0 +15781,0009,421,403,848913037,9993,0 +15782,Pi%C4%99kny+%C5%9Bwiat%2A.%2A,566,604,699785935,10160,0 +15783,Diablooo,561,387,3600737,9070,0 +15784,008.Baltoro+Sangri,603,569,1601917,10495,0 +15785,Kentin+ufam+Tobie,369,455,699783765,10000,0 +15786,Konfederacja+8,460,381,848915730,9812,0 +15787,Wioska+barbarzy%C5%84ska+015%7C,576,400,6343784,9582,0 +15788,Wioska+barbarzy%C5%84ska,611,559,7047342,10481,0 +15789,Bagdad,478,379,8847546,10654,0 +15790,%23014,485,607,849001572,10006,0 +15791,scoti,494,622,699494488,10223,0 +15792,%2B44+84+Grezieu+la+Varenne,449,485,698361257,9454,0 +15793,Wioska,599,575,17714,10222,0 +15794,008,559,613,699567608,10160,0 +15795,Wioska+barbarzy%C5%84ska,405,420,698971484,10008,0 +15796,030.,616,479,8900955,10316,0 +15797,028.+Rewir+II,398,569,9167250,7905,0 +15798,034+%7C+PALESTINA,623,467,9228039,9544,0 +15799,Szulernia,408,409,7249451,10237,0 +15800,.007.,496,377,698489071,10252,0 +15801,Taran,547,383,699170684,7189,0 +15802,Avanti%21,377,478,698625834,9852,0 +15803,Knowhere,394,504,699723284,10452,0 +15804,%230006+Iwagakure,530,620,699728159,9761,0 +15806,%230002+Kirigakure,527,621,699728159,9761,0 +15807,Osada+koczownik%C3%B3w,603,571,17714,10216,4 +15808,-036-,460,424,9291984,10479,0 +15809,FKG+01-27,413,406,356642,9835,0 +15810,Horyzont+zdarze%C5%84,540,620,7581876,9835,0 +15811,Tank+001.+Szykullo,398,499,698290577,10343,0 +15812,Wioska+barbarzy%C5%84ska,439,392,849027025,9648,0 +15813,Amnesia,397,569,9167250,8940,0 +15814,Wioska,378,519,849084005,10178,0 +15815,%2AINTERTWINED%2A,516,626,698704189,9711,7 +15816,VN+Centurion,453,384,699883079,10495,0 +15817,Wioska,403,423,7462660,10068,0 +15818,Kentin+ufam+Tobie,384,449,699783765,10000,0 +15819,R%C4%99cznik+do+zmiany,394,433,699697558,10050,0 +15820,Gattacka,599,424,699298370,9358,0 +15821,Wioska,382,535,849084005,10178,0 +15822,%3D012%3D+Lecz+Gra%C5%BCyna+zobaczy%C5%82a,612,553,3781794,10580,3 +15823,MojeSzczytToTw%C3%B3jDno,524,376,828637,10481,0 +15824,A0011,379,467,8841266,10362,0 +15825,%5B002%5D,619,543,698305474,9809,0 +15826,Darma,425,399,356642,9835,0 +15827,Avanti%21,377,483,698625834,9950,0 +15828,A015,613,446,699722599,10155,0 +15830,Teby_24,503,624,2585846,9638,0 +15831,A0029,379,473,8841266,10362,0 +15832,023,483,377,849010255,9911,0 +15833,SsSs,399,498,1536625,10160,0 +15834,South+K35,556,386,699146580,10042,0 +15835,Buk,372,513,699265922,8458,0 +15836,0025+XXARDASS,427,599,9060641,9365,0 +15837,So%C5%82tys+Twojej+Wsi,438,391,849027025,9294,5 +15838,Konfederacjan+%28LXIX%29+Gie%C5%82danu,522,370,828637,10495,0 +15839,Wioska+barbarzy%C5%84ska,613,558,7047342,10481,0 +15840,186,576,398,849064752,10311,0 +15841,Defensywa+IV,575,396,698350371,10495,0 +15842,Winter+is+coming,503,578,699364813,9935,0 +15843,krzysiek1293,412,427,7462660,10122,0 +15844,023.+Lugdunum,616,463,849091866,9185,0 +15845,026,379,532,8908002,9993,0 +15846,003,452,619,699859013,10495,0 +15847,003.Annapurna,605,569,1601917,10495,0 +15848,Mniejsze+z%C5%82o+0005,375,484,699794765,9783,0 +15849,SINGED+X+SZEF,492,375,699368887,9994,0 +15850,Skarbonka+%28cado%29,416,591,698769107,9835,0 +15851,Avanti%21,375,486,698625834,9959,0 +15852,%2A0014+Baraki,604,430,8459255,10187,0 +15853,FAKE+OR+OFF,436,395,698231772,9816,0 +15854,Lord+Arsey+KING,517,499,848956513,10285,0 +15855,002.Avicenny,604,573,1601917,10495,0 +15856,026.xxx,449,615,698143931,10045,0 +15857,002b+d,394,569,9167250,8938,0 +15858,Darma,429,399,356642,9835,0 +15859,Kraal,377,498,699265922,9761,0 +15860,050+%7C+PALESTINA,622,478,9228039,9544,0 +15861,%230022,519,626,699728159,7250,0 +15862,Wioska+003,594,581,848971079,9761,0 +15863,0013+BBBB,425,597,9060641,10539,0 +15864,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+08,622,516,699379895,9522,0 +15865,FKG+01-24,420,402,356642,9835,0 +15866,010+Wioska,625,472,699671454,6381,0 +15867,%23023+A,457,615,9037756,9835,0 +15868,147+MIKOX+021,591,411,699491076,7694,0 +15869,001+Wioska+DonSzwagreone,528,379,699854484,10068,0 +15870,0016,556,610,698659980,10252,0 +15871,Wioska,377,535,849084005,10178,0 +15872,012+Ile+typa+many,390,563,699382126,10478,4 +15873,030,381,530,8908002,9993,0 +15874,Deka,627,500,699379895,10495,0 +15875,To+co+masz+Ty,572,603,699785935,10083,0 +15876,MojeSzczytToTw%C3%B3jDno,519,376,828637,10495,0 +15877,Jaaa,606,435,698635863,10481,0 +15878,ADEN,519,383,698588535,9737,0 +15879,Part+XXIV,537,377,698350371,10495,0 +15880,MojeSzczytToTw%C3%B3jDno,527,373,828637,10495,0 +15881,Wioska+barbarzy%C5%84ska,422,398,699402816,9835,0 +15882,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,625,8201460,10237,0 +15883,VN+Wu+Zetian,468,377,699883079,9655,0 +15884,013+-+melina,416,592,225023,9110,0 +15885,HORUS...,516,624,7756002,9939,0 +15886,009,619,544,8428196,9936,0 +15887,Defensywa+I,576,402,698350371,10132,0 +15889,043+OZDR,463,623,699336777,9902,0 +15890,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,624,8201460,10237,0 +15891,Kentin+ufam+Tobie,390,442,699783765,10000,0 +15892,005,615,451,849088515,10019,0 +15893,Wioska+barbarzy%C5%84ska,381,464,3698627,10072,0 +15894,0432,543,619,698659980,10019,0 +15895,Pobozowisko,409,590,699513260,10971,0 +15896,Westcoast.011,392,435,848918380,10178,0 +15897,%230008+Kusagakure,530,621,699728159,9761,0 +15898,W.181%2F18,622,528,2999957,10242,0 +15899,xDD,439,608,699280514,6674,0 +15900,Berlin,397,574,9167250,9029,5 +15901,032,585,411,849064752,10311,0 +15902,MojeSzczytToTw%C3%B3jDno,531,376,828637,10287,0 +15903,E+007,590,591,8078914,9997,0 +15904,100+Wioska+barbarzy%C5%84ska,597,419,699491076,9319,0 +15905,XXXVI,538,377,698350371,10495,0 +15906,Bagdad,473,380,8847546,10654,0 +15907,Wioska+barbarzy%C5%84ska,529,376,828637,10365,0 +15908,C003,574,399,699722599,10495,0 +15909,015.+Winter+is+coming,481,624,848883684,10266,0 +15910,002+Hello+Moto,596,418,699491076,10001,0 +15911,Taran,548,382,699170684,9379,0 +15912,027.,491,628,699494488,10218,0 +15913,S%C5%82awno,388,552,698769107,6573,0 +15914,003,508,372,849010255,10019,0 +15916,0003,413,593,225023,10495,0 +15917,Myk+i+do+kieszonki,376,500,9319058,8208,0 +15918,%3D013%3D+Sporego+grzyba...,613,552,3781794,10580,0 +15919,0009,566,381,699485250,10211,0 +15921,C+Pld+002+Kijow,409,588,849084740,6785,0 +15922,Wioska+barbarzy%C5%84ska,484,623,699494488,9983,0 +15923,Wioska,377,517,849084005,10178,0 +15924,Sparta_09,497,598,2585846,9638,0 +15925,Zeta+Reticuli+S,405,422,699323302,11188,0 +15926,%23019.496%7C503,615,454,556154,9735,0 +15927,045,543,618,699189792,9747,0 +15928,%23002.490%7C496,609,447,556154,9735,0 +15929,014,476,625,699336777,9825,0 +15930,017.,487,626,699494488,10479,0 +15931,Jehu_Kingdom_34_,618,452,8785314,9993,0 +15932,Jaaa,614,455,698635863,10484,0 +15933,Pobozowisko,413,587,699513260,10301,0 +15934,003,381,465,3698627,9958,0 +15935,Hojo+s+Laboratory+Main+Level,521,623,8199417,10426,0 +15936,Bocianikson011,621,543,7528491,9409,0 +15937,005.,614,547,6520732,9761,5 +15939,025,429,395,699783765,10718,0 +15940,034,627,485,849006412,6666,0 +15941,Momito,468,623,699443920,9761,0 +15942,0055+w,443,426,3909522,10147,0 +15943,K34+-+%5B020%5D+Before+Land,448,382,699088769,10259,0 +15944,Stadio+Olimpico,625,516,699795378,10252,0 +15945,Wioska,606,569,17714,10259,0 +15946,%23031,468,619,699605333,10393,0 +15947,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,622,8201460,10237,0 +15948,06+im+Jegorowa,584,405,849037469,9809,0 +15949,Wioska+barbarzy%C5%84ska,593,586,1715091,9656,0 +15950,karas,376,492,699265922,8900,3 +15951,Wioska+%28024%29,622,473,698232227,9368,0 +15952,144+MIKOX+015,589,410,699491076,9209,0 +15953,x001,398,496,698290577,7165,0 +15954,Liana,372,495,699265922,9761,5 +15955,A0125,372,491,8841266,10362,0 +15956,0062,457,619,698659980,10083,0 +15957,Wioska+barbarzy%C5%84ska,376,465,3698627,9971,0 +15958,Wioska+005,595,579,848971079,9761,0 +15959,So%C5%82tys+Twojej+wsi,435,389,849027025,9481,0 +15960,A-005,417,408,8419570,10580,9 +15961,Pobozowisko,412,590,699513260,10955,0 +15962,VN+Seondeok,470,376,699883079,9636,0 +15963,DOOSAN+PUMA+2100LMS,530,568,699698253,9825,0 +15964,Yyy,497,373,699883079,10132,0 +15965,A+READY,593,414,1553947,10019,6 +15966,040+Pot%C4%99%C5%BCny+Dzban,388,557,699382126,9370,0 +15967,014.+Wraca,487,617,699494488,10229,0 +15968,Wioska+barbarzy%C5%84ska,380,461,3698627,9959,0 +15969,Jaaa,608,436,698635863,10543,0 +15970,Piwna+01,613,435,699812007,9318,0 +15971,035,503,372,698739350,9761,0 +15972,Mniejsze+z%C5%82o+0080,377,462,699794765,7207,0 +15973,007+Gr%C3%B3jec,549,388,3600737,9549,0 +15975,EKG+022+WZ,496,625,33900,10292,0 +15976,Vileda,402,524,1804724,10190,0 +15977,A.003,408,587,849088243,9362,0 +15978,A003,614,445,699722599,10362,0 +15979,MojeSzczytToTw%C3%B3jDno,507,375,828637,10495,0 +15980,Jaaa,621,457,698635863,10479,0 +15981,Kentin+ufam+Tobie,381,452,699783765,10000,0 +15982,Teby_25,505,623,2585846,9638,0 +15984,Wioska+barbarzy%C5%84ska,379,465,3698627,9965,0 +15985,Jaaa,620,458,698635863,10476,0 +15986,021,625,494,849006412,9899,0 +15987,D03,622,468,849093742,9928,0 +15988,%2A047%2A,629,495,698670524,9713,0 +15989,006,618,547,8428196,9936,0 +15990,008.+Angmar,492,627,699494488,10271,3 +15991,MojeSzczytToTw%C3%B3jDno,521,378,828637,10495,0 +15992,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,624,8201460,10237,0 +15993,Westcoast.069,394,429,848918380,10178,0 +15994,008,401,422,699788305,7729,0 +15995,Ulu-mulu,435,609,699697558,11911,0 +15996,030+-+Londyn,406,581,225023,10495,8 +15997,Wioska+barbarzy%C5%84ska,404,417,698971484,10008,0 +15998,Ulu-mulu,428,605,699697558,11678,0 +15999,012,504,375,849010255,10019,0 +16000,Taran,546,382,699170684,9374,0 +16001,Wioska+barbarzy%C5%84ska,405,421,7462660,10047,0 +16002,Westcoast.017,389,439,848918380,10178,0 +16003,%2A%2A%2A9f%2A%2A%2A,553,388,3600737,9013,0 +16004,FKG+01-34,412,409,356642,9835,0 +16005,Wioska+MoonWalk,379,475,699523631,10475,0 +16006,Wioska+barbarzy%C5%84ska,403,418,698971484,10008,0 +16007,A025,617,457,699722599,10476,0 +16008,%230007+Otogakure,531,620,699728159,9761,0 +16009,ADEN,524,379,698588535,9737,0 +16010,Westcoast.068,389,434,848918380,10178,0 +16011,Wioska+028,600,578,848971079,9761,0 +16012,113+Wioska+barbarzy%C5%84ska,387,552,699382126,10495,0 +16013,ADEN,524,380,698588535,9737,0 +16014,042+OZDR,465,624,699336777,9902,0 +16015,Pobozowisko,406,587,699513260,10172,0 +16016,Wioska+006,592,582,848971079,9761,0 +16017,Pobozowisko,417,590,699513260,10945,0 +16018,009.Baintha+Brakk,605,567,1601917,10495,0 +16019,Czekam+na+VS,539,382,698350371,10495,0 +16020,Wioska+barbarzy%C5%84ska,390,548,699425709,6557,0 +16021,Jaaa,605,434,698635863,10495,0 +16022,001,628,511,699139964,4484,0 +16023,Wioska+barbarzy%C5%84ska,479,375,699658023,9392,0 +16024,A019,616,453,699722599,10475,0 +16025,Wioska+barbarzy%C5%84ska,531,380,699869682,9761,0 +16026,Westcoast.028,397,428,848918380,10178,0 +16027,A.022,404,577,849088243,10221,0 +16028,009.,563,606,873575,10167,0 +16029,Wioska+barbarzy%C5%84ska,379,466,3698627,9962,0 +16030,Bia%C5%82a+Cerkiew,377,534,849030226,9761,0 +16031,Lagovi%C4%87,436,609,699697558,3973,0 +16032,Osada+koczownik%C3%B3w,400,424,7462660,10068,1 +16034,Myk+i+do+kieszonki,377,511,9319058,9799,0 +16036,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,445,612,8201460,10237,0 +16037,K34+-+%5B058%5D+Before+Land,457,384,699088769,10259,0 +16038,CALL+929,509,624,699784536,10311,0 +16039,051,568,394,849063849,10316,0 +16040,Kentin+ufam+Tobie,386,449,699783765,10000,4 +16041,E+001,592,593,8078914,10479,0 +16042,0053,625,520,6510480,9274,0 +16043,%2A044%2A,625,490,698670524,4828,7 +16044,Pobozowisko,410,596,699513260,10950,0 +16045,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,623,8201460,10237,0 +16046,sony911,565,605,1415009,10222,0 +16047,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,438,611,1434753,10068,6 +16048,098+Aneta+420,390,558,699382126,7190,0 +16049,188,569,398,849064752,10311,0 +16051,Karhold,481,623,699494488,10495,0 +16052,0010,422,403,848913037,9993,0 +16053,U-03,561,389,3600737,9549,0 +16054,0047,455,619,698659980,10019,0 +16055,%230003,516,373,7651093,9814,0 +16056,Wioska+barbarzy%C5%84ska,406,414,698971484,10008,0 +16057,A0305,374,508,8841266,10362,6 +16058,Jaaa,593,584,698635863,10474,0 +16059,Pobozowisko,400,581,699513260,9266,0 +16060,Wioska,381,541,849084005,10178,0 +16061,K34+x012,449,384,698364331,8348,0 +16062,MojeSzczytToTw%C3%B3jDno,530,375,828637,10495,0 +16063,A0079,374,475,8841266,10362,0 +16064,.008.,495,376,698489071,10224,0 +16065,148+MIKOX+024,592,411,699491076,9888,0 +16066,%5B005%5D,620,539,698305474,9809,0 +16067,MojeSzczytToTw%C3%B3jDno,522,373,828637,10479,0 +16068,FKG+01-14,421,405,356642,9835,0 +16069,PYRLANDIA+022+Menager+s+%2B+8k,565,587,33900,10495,0 +16070,21+im+Sierowa,583,404,849037469,9809,0 +16071,Wioska+011,596,580,848971079,9761,0 +16072,004,559,612,699567608,9988,0 +16073,%2AINTERTWINED%2A,510,626,698704189,9711,0 +16074,Darma,430,393,356642,9835,0 +16075,Wioska+barbarzy%C5%84ska,424,397,699402816,9835,0 +16076,Darma,426,400,356642,9835,0 +16077,Wioska+barbarzy%C5%84ska,614,551,7047342,10484,0 +16078,Wioska+barbarzy%C5%84ska,438,387,849027025,7347,0 +16079,007+Wioska+barbarzy%C5%84ska,532,376,699854484,10178,0 +16080,Pobozowisko,408,585,699513260,9564,0 +16081,Sfinks,375,499,699265922,10019,9 +16082,EKG+021+Broonx,490,623,33900,10090,0 +16083,C+008,580,399,6384450,10362,0 +16084,Belvedere+008,583,402,699756210,10311,0 +16085,104+%2A%2A%2A9d%2A%2A%2A+Porzeczka,553,389,699491076,10001,0 +16086,016.,488,626,699494488,10478,0 +16087,Myk+i+do+kieszonki,375,501,9319058,9799,0 +16088,005,510,373,849010255,10019,3 +16089,sie+jara+od+nocy+do+rana,399,571,9167250,6094,0 +16090,%2A0008+Baraki,609,432,8459255,10189,0 +16091,%230004+Sunagakure,529,620,699728159,9761,0 +16092,Bocianikson009,615,549,7528491,9958,0 +16093,Jaaa,615,441,698635863,10495,0 +16094,R%C4%99cznik+do+zmiany,395,435,699697558,10362,0 +16096,Horyzont+zdarze%C5%84,536,620,7581876,9835,0 +16097,019+OTW%C3%93RZ+RYJ+TEEEJ,624,466,699272633,10481,0 +16098,Vasperland_022,625,512,7047342,10376,0 +16099,Wioska+%28002%29,620,469,698232227,8531,4 +16100,020,500,627,699878511,10143,0 +16101,CALL+926,556,614,699784536,10311,0 +16102,A001,515,383,7758085,10094,0 +16103,Wioska,383,549,849084005,6916,0 +16104,029,565,608,699316421,9744,0 +16105,Wioska+Aizen-T,411,406,699402816,9835,0 +16106,0002,414,593,225023,10495,0 +16107,Wioska+%28014%29,624,475,698232227,9713,0 +16108,09.+Gentiana,523,623,8199417,10495,0 +16109,002+Plantacja+Marchewy,394,568,9167250,9234,0 +16110,Jaaa,596,586,698635863,10396,0 +16111,KR%C3%93L+PAPI+WIELKI,573,577,698191218,10000,0 +16112,Jaaa,576,602,698635863,10487,0 +16113,Lord+Arsey+KING,593,585,848956513,7301,0 +16115,Jaaa,580,596,698635863,9876,3 +16116,KR%C3%93L+PAPI+WIELKI,576,578,698191218,10000,0 +16117,MojeSzczytToTw%C3%B3jDno,515,372,828637,10495,0 +16119,Pobozowisko,403,584,699513260,10971,0 +16120,037,577,398,7271812,10495,0 +16122,Shallow,575,599,699785935,10160,0 +16123,Jaaa,622,461,698635863,10487,0 +16124,Wioska+barbarzy%C5%84ska,444,384,699191449,11130,0 +16125,BoOmBaa..,445,390,6169408,9856,0 +16126,Merin,482,624,699494488,7865,0 +16127,30.+Wioska+30,392,566,849091769,9424,0 +16128,Gattacka,601,426,699298370,9550,0 +16129,%23001.500%7C500,619,451,556154,9735,0 +16130,Wioska+barbarzy%C5%84ska,590,412,699491076,5559,0 +16131,-+087+-,552,597,849018239,10000,0 +16132,K34+-+%5B059%5D+Before+Land,455,384,699088769,10259,0 +16133,Szlachcic+P%C3%B3%C5%82noc+004,629,509,698562644,10311,0 +16134,Wioska+barbarzy%C5%84ska,614,559,7047342,10475,0 +16135,Oaza,568,603,699785935,9211,0 +16136,Konfederacja,461,379,848915730,9737,0 +16137,031+Pot%C4%99%C5%BCny+Dzban,385,557,699382126,10479,0 +16138,A0043,378,470,8841266,10362,0 +16139,E+010,587,594,8078914,9783,0 +16140,Teby_30,504,625,2585846,9638,0 +16141,A0154,373,471,8841266,10362,0 +16142,Wioska+barbarzy%C5%84ska,381,531,849030226,10551,0 +16143,037+OZDR,467,625,699336777,9899,5 +16144,%5B080%5D,560,551,8000875,9962,0 +16145,Jaaa,613,444,698635863,9902,0 +16146,Jaaa,578,597,698635863,10474,0 +16147,0028,625,531,6510480,10074,0 +16148,03+im+Berii,595,414,849037469,9809,0 +16149,Kentin+ufam+Tobie,386,441,699783765,10000,0 +16150,kkkk,425,605,699342219,10478,0 +16151,zak%C5%82ad+pogrzebowy+to+ju%C5%BC+czas,566,605,699364813,10495,4 +16152,017,503,376,849010255,10019,0 +16153,A-006,414,406,8419570,10580,9 +16154,Wioska+barbarzy%C5%84ska,417,409,699402816,9835,0 +16155,045+OZDR,464,624,699336777,9825,0 +16156,014+Wioska,621,464,699671454,7868,0 +16157,016,476,626,699336777,9825,0 +16158,Kentin+ufam+Tobie,387,446,699783765,10000,0 +16159,0150,626,487,698416970,6715,0 +16160,.012.,497,376,698489071,10316,0 +16161,Kentin+ufam+Tobie,386,442,699783765,10000,0 +16162,Pobozowisko,410,588,699513260,10971,0 +16163,Kentin+ufam+Tobie,388,441,699783765,10000,0 +16164,Bravo,609,566,699737356,8159,0 +16165,012.,564,612,873575,9966,0 +16166,Jaaa,592,585,698635863,10484,0 +16167,0001,415,593,225023,10495,0 +16169,Westcoast.051,399,422,848918380,10178,0 +16170,006,581,599,698999105,10311,0 +16171,0029,621,529,6510480,10189,0 +16172,VN+Tomoe+Gozen,451,380,699883079,10311,9 +16173,So%C5%82tys+Wsi+Filters,437,390,849027025,9718,0 +16174,VN+Hisoka,478,373,699883079,9667,0 +16175,Westcoast.002,390,435,848918380,10178,0 +16176,Pobozowisko,409,587,699513260,9635,0 +16177,Knowhere,373,501,699723284,10452,0 +16178,023+Pot%C4%99%C5%BCny+Dzban,391,562,699382126,9135,0 +16179,Wioska+Go%C5%82abek,592,584,17714,10216,0 +16180,0004,415,595,225023,10495,0 +16181,Szulernia,409,410,7249451,9738,0 +16182,A026,617,456,699722599,10348,0 +16183,A015,514,378,7758085,9925,0 +16184,So%C5%82tys+Twojej+Wsi,435,390,849027025,9378,0 +16185,029.+Aquitania,623,462,849091866,9419,0 +16186,Taran,549,381,699170684,9364,0 +16187,Kentin+ufam+Tobie,387,448,699783765,10000,0 +16188,Kokoyashi,491,390,699433558,10544,0 +16189,Westcoast.018,392,438,848918380,10178,0 +16190,Myk+i+do+kieszonki,374,500,9319058,8939,0 +16191,051+OZDR,480,628,699336777,10559,0 +16192,Jaaa,581,597,698635863,10479,0 +16193,Wioska+fikumiku111,565,611,699567608,9031,0 +16194,Pobozowisko,411,590,699513260,10873,0 +16195,Sony+911,567,609,1415009,9947,0 +16196,024,430,396,699783765,11130,0 +16197,Yyyy,499,371,699883079,10132,0 +16198,17+im+Kanukowa,587,409,849037469,9809,0 +16199,010,576,599,698999105,10311,0 +16200,Ulu-mulu,421,602,699697558,6311,0 +16201,Kentin+ufam+Tobie,433,390,699783765,10019,0 +16202,Belvedere+009,580,406,699756210,7095,0 +16203,01+Hiszpania,586,489,8925695,10426,0 +16204,Westcoast.058,390,439,848918380,10178,0 +16205,K34+-+%5B012%5D+Before+Land,457,380,699088769,10259,0 +16206,Wioska,380,549,849084005,10178,5 +16207,044,541,618,699189792,9825,0 +16208,Kentin+ufam+Tobie,381,448,699783765,10000,0 +16209,007,589,592,698999105,10311,0 +16210,MojeSzczytToTw%C3%B3jDno,531,383,828637,10495,0 +16211,Wioska+%28012%29,625,470,698232227,9694,1 +16212,mklo,537,376,828637,9737,0 +16213,A0306,372,516,8841266,10362,0 +16214,D013,586,406,699761749,10495,0 +16215,FKG+01-22,414,412,356642,9835,0 +16216,Brat447,387,506,699262350,10476,0 +16217,Wioska+barbarzy%C5%84ska,380,538,849030226,9782,0 +16218,K34+-+%5B036%5D+Before+Land,461,380,699088769,10259,0 +16219,.011.,497,375,698489071,10316,0 +16220,.026.,484,374,698489071,10301,7 +16221,Wioska,383,551,849084005,10178,0 +16222,A0081,371,487,8841266,10362,0 +16223,Ob1,599,416,8192845,9710,0 +16224,Wioska+barbarzy%C5%84ska,482,372,699658023,9121,0 +16225,072,586,403,849064752,10311,4 +16226,023,570,604,698999105,10311,0 +16227,Wioska,380,550,849084005,10178,0 +16228,Wioska,381,551,849084005,9835,0 +16229,001,482,376,1454871,1374,0 +16230,038+Inazawa,625,483,7092442,10495,0 +16231,Brat447,371,498,699262350,10479,0 +16232,Part+XV,535,378,698350371,10475,0 +16234,18+im+Dygaja,586,407,849037469,9809,0 +16235,028+Seattle,433,437,9291984,10559,0 +16236,Wioska+barbarzy%C5%84ska,593,566,8742874,5107,0 +16237,-010-+K55,591,592,8096537,9740,0 +16238,019+020,547,381,699491076,10001,0 +16239,179,548,385,849064752,10311,0 +16240,007+Wioska+Sir+Krzysztof,624,465,699671454,7041,0 +16242,012+-+ZOBACZYMY,414,596,225023,10495,0 +16243,0072,453,618,698659980,10083,0 +16244,Dzungla,373,495,699265922,9825,8 +16245,Monia,402,420,7462660,10052,0 +16246,Wioska+barbarzy%C5%84ska,398,572,9167250,6074,0 +16247,045,432,390,699783765,10879,0 +16248,032.,482,627,699494488,10237,0 +16249,Gryfios+015,618,542,698666810,11534,0 +16250,006,380,464,3698627,10206,0 +16251,035,479,626,699336777,9825,0 +16252,Suppi,432,444,699856962,10290,0 +16253,Sony+911,566,608,1415009,10274,0 +16254,014.xxx,461,621,849084985,9860,0 +16255,Wioska,377,523,849084005,10178,0 +16257,South+K35,559,386,699146580,9809,0 +16258,A008,518,368,699208929,10039,0 +16259,Part+XXVII,531,379,698350371,10495,0 +16260,FKG+01-25,414,404,356642,9835,0 +16261,susza,375,498,699265922,8038,0 +16262,Part+XII,541,380,698350371,10495,0 +16263,Charlie,611,564,699737356,7779,0 +16264,B016,629,494,9314079,9835,0 +16265,Kentin+ufam+Tobie,381,449,699783765,10000,0 +16266,MojeSzczytToTw%C3%B3jDno,511,371,828637,10495,0 +16267,SLA-03,432,437,9291984,9809,0 +16268,059,402,505,699851427,10129,0 +16269,Belvedere+010,581,405,699756210,9608,0 +16270,007,401,582,9264752,10495,0 +16271,A0249,376,494,8841266,10362,0 +16272,%5B011%5D,618,543,698305474,9809,0 +16273,Yogi,520,537,2808172,8148,0 +16274,Z+barba+009,403,579,225023,10495,0 +16275,Westcoast.052,397,429,848918380,10178,0 +16276,A0039,377,472,8841266,10362,0 +16277,RTS+16,571,609,848995242,10143,0 +16278,0065,456,618,698659980,10083,0 +16279,A0042,378,469,8841266,10362,0 +16280,091,438,613,849084985,3769,0 +16281,PRO8L3M,407,495,7491093,10559,0 +16282,K34+-+%5B087%5D+Before+Land,453,379,699088769,10259,0 +16283,040+OZDR,465,623,699336777,9825,0 +16284,VN+Eulji+Mundeok,477,366,699883079,10273,0 +16286,005+Wioska+barbarzy%C5%84ska,437,609,699280514,2012,0 +16287,MojeSzczytToTw%C3%B3jDno,530,376,828637,10068,0 +16288,018,565,609,699351301,10149,0 +16289,Napewno+to+nie+jest+off,495,394,848912265,8744,0 +16290,0023,623,540,6510480,9845,0 +16291,014,505,376,849010255,9574,0 +16292,0007,542,622,848915531,11321,0 +16293,Jaaa,622,460,698635863,10478,0 +16294,CALL+1065,556,616,699784536,10495,0 +16295,Westcoast.049,393,427,848918380,10178,0 +16297,032+jest+dobrze+w+chu1111,623,471,699272633,10476,0 +16298,Hotel,608,567,699737356,9764,0 +16299,Westcoast.045,390,434,848918380,10178,0 +16300,048.+F64D,483,631,699494488,10217,0 +16301,MojeSzczytToTw%C3%B3jDno,512,371,828637,10495,0 +16302,004,399,431,699788305,11130,0 +16303,Malinki+2,626,522,8013349,6605,0 +16304,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,434,612,1434753,9960,3 +16305,Wioska+barbarzy%C5%84ska,379,529,849030226,10484,0 +16306,Darma,427,399,356642,9835,0 +16307,%2A007+Akureyri,382,545,699425709,8298,0 +16308,031.,493,626,699494488,10217,0 +16309,%2A043%2A,627,498,698670524,9737,4 +16310,016.,626,517,6520732,7737,0 +16311,098,454,619,849084985,10059,0 +16312,011,400,419,699788305,7980,0 +16313,%23024.513%7C522,632,473,556154,9735,0 +16314,MojeSzczytToTw%C3%B3jDno,518,373,828637,10476,3 +16315,Jaaa,611,443,698635863,10239,0 +16316,012,620,548,8428196,9937,0 +16317,K34+-+%5B114%5D+Before+Land,453,380,699088769,10259,0 +16318,VN+Frederick+I,477,381,699883079,9876,0 +16319,Kentin+ufam+Tobie,379,451,699783765,10000,0 +16320,042.,493,627,699494488,10223,0 +16321,Westcoast.001,390,433,848918380,10178,0 +16322,%2A046%2A,630,504,698670524,6815,0 +16323,Part+VIII,534,379,698350371,10495,0 +16324,Knowhere,372,510,699723284,10452,0 +16325,Storm,627,499,699379895,10495,0 +16326,K34+-+%5B078%5D+Before+Land,449,383,699088769,10259,0 +16327,Szlachcic+015,626,532,698562644,10311,0 +16328,Mniejsze+z%C5%82o+0021,372,486,699794765,9396,0 +16329,VN+Ramesses,468,380,699883079,9641,0 +16330,Wioska+barbarzy%C5%84ska,402,417,698971484,10008,0 +16331,Knowhere,375,513,699723284,10452,0 +16332,015,504,376,849010255,9605,0 +16334,Myk+i+do+kieszonki,376,501,9319058,9799,0 +16335,056+-+Wiocha,412,592,225023,7903,0 +16336,012,498,629,699878511,10149,0 +16337,CampNou,624,508,699795378,10252,0 +16338,28+im+Ga%C5%82kina,593,416,849037469,9809,0 +16339,%5B0095%5D,414,397,8630972,10495,0 +16340,Avanti%21,375,485,698625834,9959,0 +16341,Kentin+ufam+Tobie,387,441,699783765,10000,0 +16342,Pobozowisko,405,588,699513260,10955,0 +16343,0007,624,525,6510480,10461,0 +16344,VN+Sun+Tzu,477,368,699883079,10239,0 +16345,003,580,600,698999105,10311,0 +16346,0049,628,519,6510480,9551,0 +16348,%2AINTERTWINED%2A,518,629,698704189,8721,0 +16349,Wioska+barbarzy%C5%84ska,563,387,699072129,10147,0 +16350,A0131,372,489,8841266,10362,0 +16351,ave+why%21,442,615,698143931,10197,9 +16352,Mniejsze+z%C5%82o+0016,372,483,699794765,9180,0 +16353,FKG+01-15,419,405,356642,9835,0 +16354,yyyy,498,372,699883079,9942,0 +16355,Pobozowisko,408,589,699513260,8265,0 +16356,Teby_41,502,625,2585846,3391,0 +16357,Wioska+%28013%29,622,481,698232227,9749,0 +16359,%230037,540,622,1536231,10495,0 +16360,Piwna+11,607,432,699812007,9379,0 +16362,0056,457,618,698659980,10019,0 +16363,A-007,413,405,8419570,10580,0 +16364,Myk+i+do+kieszonki,371,509,9319058,8801,0 +16365,Montek,468,624,699443920,9761,0 +16366,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,443,615,8201460,10237,0 +16367,Jaaa,610,442,698635863,10158,0 +16368,048,443,616,849084985,9835,0 +16369,MIKOR+001,559,389,6343784,10009,0 +16370,007,620,547,8428196,9934,0 +16371,006,434,393,699783765,11130,0 +16372,K34+-+%5B024%5D+Before+Land,462,377,699088769,10259,0 +16373,029+Pot%C4%99%C5%BCny+Dzban,384,559,699382126,10479,0 +16374,Wioska+barbarzy%C5%84ska,435,608,699697558,1563,0 +16375,Jehu_Kingdom_09_,620,453,8785314,9993,0 +16376,Kentin+ufam+Tobie,370,456,699783765,10000,0 +16377,A0219,372,496,8841266,10362,0 +16378,Land+of+Fire,385,453,698962117,9579,0 +16379,%2AINTERTWINED%2A,508,628,698704189,9711,0 +16380,%23049%23,629,506,692803,9761,0 +16381,Taran,551,381,699170684,9364,0 +16382,Jaaa,618,456,698635863,10478,0 +16383,MojeSzczytToTw%C3%B3jDno,509,372,828637,10495,0 +16384,003,503,632,699878511,10160,0 +16386,0054,624,517,6510480,9640,0 +16387,MojeSzczytToTw%C3%B3jDno,523,374,828637,10495,8 +16388,%2A041%2A,625,500,698670524,8756,0 +16389,Myk+i+do+kieszonki,374,522,9319058,6591,0 +16391,Westcoast.041,398,422,848918380,10178,0 +16392,NIERAJ01,453,620,8729672,9537,0 +16393,B002,628,491,9314079,9821,0 +16394,MojeSzczytToTw%C3%B3jDno,510,371,828637,10495,0 +16395,South+K35,578,397,699146580,9950,0 +16396,Wioska+barbarzy%C5%84ska,599,418,1990750,10068,0 +16397,003,428,395,699783765,11130,0 +16398,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,535,625,8201460,10237,0 +16399,D012,595,413,699761749,9452,0 +16400,Wioska+barbarzy%C5%84ska,378,460,3698627,9959,0 +16401,Kentin+ufam+Tobie,379,455,699783765,10000,0 +16402,Pobozowisko,410,592,699513260,10952,0 +16403,024.,489,626,699494488,10216,0 +16404,R%C4%99cznik+do+zmiany,394,431,699697558,10160,0 +16405,078,475,621,699336777,10083,0 +16406,South+K35,558,383,699146580,9809,0 +16407,610%7C431+Wioska+barbarzy%C5%84ska21,610,431,6822957,8039,0 +16408,%5B181%5D,544,518,848985692,10060,0 +16409,Kentin+ufam+Tobie,389,442,699783765,10000,0 +16410,Konfederacja+%2B,458,377,848915730,10001,4 +16411,Jaaa,582,598,698635863,10479,0 +16412,%230035,539,621,1536231,10495,0 +16413,Bagdad,469,376,8847546,10654,6 +16414,Belvedere+011,588,412,699756210,10008,0 +16415,Wioska,377,527,849084005,10178,0 +16416,Malinki+3,624,521,8013349,9017,0 +16417,018.,624,535,8900955,5623,0 +16418,VN+Moctezuma,473,371,699883079,10055,0 +16419,BARA,630,506,9314079,9818,0 +16420,0050,459,619,698659980,10083,0 +16421,Yogi,558,616,2808172,10083,0 +16422,Westcoast.012,389,437,848918380,10178,0 +16423,KONFA+TO+MARKA%2C+NARKA,381,462,698152377,10311,3 +16424,017+-+Hospitalet+de+Llobregat,632,512,698342159,10019,0 +16425,Avanti%21,376,479,698625834,9956,0 +16426,Piasek,375,496,699265922,10019,0 +16427,Tu+Deornoth+odpoczywa,626,474,699545762,3989,0 +16428,078+k45+001,589,411,699491076,10001,0 +16429,Wioska+009,596,582,848971079,9761,0 +16430,Wioska+barbarzy%C5%84ska,614,557,7047342,10474,0 +16431,South+K35,552,384,699146580,9809,0 +16432,Wioska,376,528,849084005,10178,0 +16433,Wioska+barbarzy%C5%84ska,577,395,699146580,9575,0 +16434,Kentin+ufam+Tobie,389,441,699783765,10000,0 +16435,Wioska+barbarzy%C5%84ska+019%7C,542,380,6343784,9606,0 +16436,A0050,377,482,8841266,10362,0 +16437,C+009,578,396,6384450,9367,0 +16438,Yyyy,504,371,699883079,10068,7 +16439,A0307,377,505,8841266,10362,0 +16440,Wioska+barbarzy%C5%84ska,438,385,849027025,9372,0 +16441,0089,448,405,699431255,9835,0 +16442,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,625,8201460,10237,0 +16443,Pastorlandia+2,374,530,849030226,10401,0 +16444,Sony+911,569,610,1415009,10238,0 +16445,Nowa+09,613,562,698702991,9818,0 +16446,058+Miyoshi,626,473,7092442,9468,0 +16447,009,507,371,849010255,10019,0 +16449,%2A0009+Baraki,610,432,8459255,10251,0 +16450,Taran,549,382,699170684,9379,0 +16451,0057,459,620,698659980,10083,0 +16452,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,623,8201460,10237,0 +16453,110+Murcia+tres,391,565,699382126,9911,0 +16454,092,451,619,849084985,10569,0 +16455,Mniejsze+z%C5%82o+0040,376,466,699794765,10385,0 +16456,VN+Mulan,467,377,699883079,9643,0 +16457,VN+El+Cid,466,374,699883079,9641,0 +16458,Og%C3%B3rkowy+baron,407,399,356642,9835,0 +16459,026,481,375,849010255,7471,0 +16460,VN+Charles+Martel,461,378,699883079,9961,2 +16461,.Wioska+barbarzy%C5%84ska,600,577,6929240,9601,0 +16462,004,453,619,8729672,10481,0 +16463,%2A031%2A,624,482,698670524,7492,0 +16464,Vasperland_018,629,515,7047342,10293,0 +16465,Belvedere+012,586,410,699756210,10290,0 +16466,MojeSzczytToTw%C3%B3jDno,514,375,828637,10495,0 +16467,023,378,542,6853693,5643,5 +16468,scoti,487,611,699494488,10211,0 +16469,So%C5%82tys+Twojej+Wsi,434,390,849027025,9744,0 +16470,rybak,379,490,699265922,9825,0 +16471,612%7C424+003+Stolica+Kapitana,612,424,6822957,9888,0 +16472,M%C5%81ODE+OR%C5%81Y+001,575,602,33900,10495,3 +16473,0053,459,621,698659980,10083,0 +16474,%23008+A,458,621,698143931,10947,4 +16475,Jaaa,609,434,698635863,10100,0 +16476,SINGED+X+SZEF,491,376,699368887,9994,0 +16477,A0044,375,470,8841266,10362,0 +16478,MojeSzczytToTw%C3%B3jDno,519,378,828637,10495,0 +16479,WE+ARE+READY%21,587,402,1553947,9623,0 +16480,R%C4%99cznik+do+zmiany,393,436,699697558,10160,0 +16481,%230038,540,621,1536231,10495,0 +16482,K34+x022,446,384,698364331,6527,0 +16483,105+Do%C5%9B%C4%87,595,418,699491076,10001,0 +16484,Szlachcic+013,624,539,698562644,10311,0 +16485,016,599,586,698999105,10311,0 +16486,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,445,614,8201460,10237,0 +16487,031+Zbara%C5%BC,607,581,699272880,10611,0 +16488,MojeSzczytToTw%C3%B3jDno,522,374,828637,10479,0 +16489,A018,617,454,699722599,10345,7 +16490,.047.,488,371,698489071,10492,0 +16491,sony911,575,607,1415009,10205,0 +16492,%230009,531,621,699728159,9761,0 +16493,Sony+911,564,608,1415009,10211,0 +16494,%5B005%5D,460,624,9094538,10087,0 +16495,Gattacka,610,421,699298370,9902,0 +16496,Szulernia,412,410,7249451,9998,0 +16497,Knowhere,372,514,699723284,10452,0 +16498,011.+Czo+Oju,606,570,1601917,10495,0 +16499,0052,627,519,6510480,9249,0 +16500,Konfederacja,459,378,848915730,9696,0 +16502,004+B,621,452,699718269,9711,0 +16503,Kentin+ufam+Tobie,384,445,699783765,10000,0 +16504,030,473,625,699336777,9825,0 +16505,A+READY,589,408,1553947,10019,0 +16506,032+Pot%C4%99%C5%BCny+Dzban,388,558,699382126,6560,0 +16507,0006,413,592,225023,10495,0 +16508,Brat447,386,506,699262350,10490,0 +16509,020,374,524,6853693,10495,0 +16510,Emirates+Stadium,629,499,699795378,10019,0 +16511,CALL+928,508,627,699784536,10311,0 +16512,MojeSzczytToTw%C3%B3jDno,505,371,828637,10495,0 +16513,Jaaa,617,441,698635863,10322,0 +16514,Westcoast.025,398,419,848918380,10178,0 +16515,Piwna+07,613,437,699812007,9112,9 +16516,Zach%C3%B3d+-+005,395,576,225023,10495,0 +16517,Wioska+%28009%29,622,459,698232227,8602,0 +16518,PART+XXV,537,375,698350371,10495,0 +16519,MojeSzczytToTw%C3%B3jDno,513,376,828637,10495,0 +16520,Westcoast.057,396,423,848918380,10178,0 +16521,Jaaa,610,436,698635863,10495,0 +16522,VN+Dorothy+Unsworth,464,371,699883079,9637,0 +16523,%2A045%2A,628,505,698670524,8130,0 +16525,FKG+01-30,417,400,356642,9835,0 +16526,064,427,386,849027025,5404,0 +16527,Wioska+007,596,581,848971079,9761,0 +16528,kathare,546,622,873575,10436,0 +16529,007+Hello+Moto,598,414,699491076,10001,0 +16530,%21009.498%7C496,617,447,556154,9735,3 +16531,ADEN,527,372,698588535,10311,0 +16532,031.+Wioska+barbarzy%C5%84ska,576,396,699799629,10495,0 +16533,069+OZDR,469,625,699336777,10495,0 +16534,003.+York,449,381,6169408,10141,0 +16535,Darma,429,397,356642,9835,0 +16536,0011,444,391,699431255,10000,0 +16537,VN+Yuno,475,375,699883079,9530,0 +16538,K34+-+%5B014%5D+Before+Land,447,381,699088769,10259,8 +16540,Wioska+barbarzy%C5%84ska,399,573,9167250,6655,0 +16541,VN+Genghis+Khan,467,376,699883079,9646,0 +16542,Westcoast.026,398,423,848918380,10178,0 +16543,Mount+Everest,375,500,849013126,9550,0 +16544,robie+katasy+%21%21%21,571,611,848995242,10495,0 +16545,Partia+Razem+Szpingischan,571,610,848995242,10495,0 +16546,CALL+927,555,614,699784536,10311,0 +16547,001,404,433,698884287,10285,0 +16548,006.Broad+Peak,606,572,1601917,10495,0 +16549,D016,584,406,699761749,10495,0 +16550,010+Lyon,629,491,849094609,3013,0 +16551,Kentin+ufam+Tobie,378,454,699783765,10000,0 +16552,Z+barba+015,401,576,225023,10495,0 +16553,Konfederacja,465,376,848915730,10001,0 +16554,Wioska+barbarzy%C5%84skakkkk,439,387,699191449,9558,0 +16555,A017,618,453,699722599,10152,0 +16556,Wioska+barbarzy%C5%84ska,379,531,849030226,8932,0 +16557,HORUS%2B,523,628,7756002,9886,0 +16558,FKG+01-05,417,401,356642,9835,2 +16560,018,584,397,849064752,10311,0 +16561,041+Pot%C4%99%C5%BCny+Dzban,387,558,699382126,10479,0 +16562,Wioska,381,546,849084005,7621,0 +16563,MojeSzczytToTw%C3%B3jDno,531,374,828637,9737,0 +16564,019.xxx,462,621,849084985,9458,0 +16565,%5B003%5D,619,540,698305474,9809,0 +16566,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,626,8201460,10237,0 +16567,Bocianikson016,622,538,7528491,4505,0 +16568,A027,619,456,699722599,10484,0 +16569,017.,566,619,873575,10292,0 +16570,Zeta+Reticuli+S,411,408,699323302,11417,0 +16571,015,582,406,849063849,10636,0 +16572,Zach%C3%B3d+-+002,397,576,225023,10495,0 +16573,100,628,518,849090187,2243,0 +16574,Mniejsze+z%C5%82o+0010,375,477,699794765,9589,0 +16576,Teby_31,505,626,2585846,9638,0 +16577,Sony+911,568,609,1415009,6807,0 +16578,Kentin+ufam+Tobie,379,452,699783765,10000,0 +16579,031+-+Cardiff,403,585,225023,10495,1 +16580,034,597,561,699373599,10068,0 +16581,Gattacka,584,501,699298370,9753,0 +16582,Gattacka,603,425,699298370,9761,0 +16583,010,517,633,698704189,9711,0 +16585,020.,572,391,699799629,10495,0 +16586,Brat447,371,511,699262350,10495,0 +16587,Taran+006,626,529,698562644,10311,0 +16588,Wioska+barbarzy%C5%84ska,524,627,7756002,9888,0 +16589,Wioska+barbarzy%C5%84ska,543,377,1990750,10068,0 +16590,004,406,586,9264752,10393,0 +16591,019+Pot%C4%99%C5%BCny+Dzban,393,565,699382126,10478,0 +16592,yyyy,498,371,699883079,10052,0 +16593,Jaaa,615,446,698635863,10478,0 +16594,002.+Skellige,567,389,699799629,10495,3 +16595,018,598,583,698999105,10311,0 +16596,SINGED+X+SZEF,493,372,699368887,9994,0 +16597,VN+Scipio+Africanus,474,375,699883079,10204,6 +16598,019,625,548,8428196,9761,0 +16599,Jaaa,587,596,698635863,10666,0 +16600,A0109,372,480,8841266,10362,7 +16601,ADEN,527,377,698588535,10154,0 +16602,Yyyy,499,373,699883079,10068,0 +16603,063,586,594,698999105,10311,0 +16604,K34+x005,447,383,698364331,8953,0 +16605,0098,453,616,698659980,10083,4 +16606,0104,458,619,698659980,10019,0 +16607,Myk+i+do+kieszonki,372,512,9319058,8030,0 +16608,Pobozowisko,400,583,699513260,7339,0 +16609,%230021,523,626,699728159,9761,0 +16610,Bocianikson012,610,546,7528491,9966,0 +16611,Myk+i+do+kieszonki,373,517,9319058,9148,0 +16612,007.xxx,473,622,8612358,10146,0 +16613,A028,615,453,699722599,10252,0 +16614,Oeste+tres,383,555,698916948,4889,0 +16615,023.,490,626,699494488,10217,0 +16616,Wioska+krzysiuaa,509,369,699368887,9994,0 +16617,Kentin+ufam+Tobie,378,455,699783765,10000,0 +16618,Wioska+Expezo,403,421,698971484,10008,0 +16619,Wioska+barbarzy%C5%84ska,405,418,698971484,10008,0 +16620,Myk+i+do+kieszonki,372,502,9319058,8119,0 +16621,044+OZDR,463,622,699336777,9902,0 +16622,B+003,593,410,6384450,10362,0 +16623,Wioska+barbarzy%C5%84ska,405,417,698971484,10008,0 +16624,Wioska+barbarzy%C5%84ska,618,555,7047342,10490,0 +16625,Brzoza,370,513,699265922,9835,0 +16626,056,493,370,698739350,6074,0 +16627,RTS+6,574,608,848995242,10495,0 +16628,Ulu-mulu,431,605,699697558,9408,0 +16629,z+046,579,604,699342219,10256,0 +16630,Wioska+audi80lpa,377,460,698807570,10048,0 +16631,Kentin+ufam+Tobie,390,441,699783765,10000,0 +16632,027,502,374,698739350,9761,0 +16633,053+OZDR,475,623,699336777,9825,0 +16634,009+barbarzy%C5%84ska,610,564,9238175,10367,0 +16635,Malinki+4,623,523,8013349,6566,0 +16636,Wioska+barbarzy%C5%84ska,440,385,849027025,9747,0 +16638,Jaaa,596,585,698635863,10475,0 +16639,Belvedere+013,587,406,699756210,10140,0 +16640,Taran+003,623,529,698562644,10311,0 +16641,Wioska+tomektonkiel,607,425,699351046,4525,0 +16642,0033,562,390,699485250,10347,3 +16643,0063+8+Piast,446,432,3909522,10252,0 +16644,004.Abi+Gamin,603,576,1601917,10495,0 +16645,Avanti%21,373,480,698625834,9959,0 +16646,Myk+i+do+kieszonki,371,514,9319058,8663,0 +16647,Kentin+ufam+Tobie,379,448,699783765,10000,8 +16648,Darma,418,400,356642,9835,0 +16649,022,432,393,699783765,11130,0 +16650,0151,625,487,698416970,9444,0 +16651,Szlachcic+006,623,536,698562644,10311,0 +16652,026,368,536,6853693,8128,0 +16653,Westcoast.029,396,430,848918380,10178,0 +16654,Taran,551,383,699170684,9746,0 +16655,021.,490,627,699494488,10218,0 +16656,Piwna+15,608,429,699812007,9047,0 +16657,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+05,627,495,699379895,10317,0 +16658,Zakrecona+3,573,606,8627359,9256,0 +16659,Tesa+7,627,528,698845189,10019,0 +16660,001Podbitka,455,629,698620694,9687,0 +16661,s181eo16,382,455,393668,9883,0 +16662,VN+Leonidas,469,373,699883079,9647,0 +16663,Szlachcic+005,620,535,698562644,10311,0 +16664,Jaaa,616,448,698635863,10478,0 +16665,%21011.507%7C495,626,446,556154,9735,0 +16666,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,626,8201460,10237,0 +16668,Konradzik,428,392,356642,9835,0 +16669,ADEN,525,377,698588535,10311,0 +16670,Konfederacja,456,377,848915730,9694,0 +16671,SINGED+X+SZEF,490,373,699368887,9994,0 +16672,027,476,629,699336777,9924,0 +16673,0009,444,385,699431255,10194,0 +16674,073,373,523,6853693,5904,0 +16675,Zzz,488,370,699658023,9891,0 +16676,029,474,625,699336777,9955,0 +16677,022,631,498,849006412,9821,0 +16678,0063,456,617,698659980,10019,0 +16679,0034,564,388,699485250,10503,0 +16680,%5B006%5D,622,544,698305474,9809,5 +16681,ADEN,528,378,698588535,9737,0 +16682,0055,627,520,6510480,9714,0 +16683,Wioska+barbarzy%C5%84ska,433,388,849027025,9829,0 +16684,035.,571,392,699799629,9756,2 +16685,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,440,613,8201460,6276,0 +16686,U-02,557,388,3600737,9549,0 +16688,Ulu-mulu,425,604,699697558,11678,0 +16689,006,631,528,699413040,9860,0 +16690,CALL+1076,554,613,699784536,10495,0 +16691,080,619,528,699373599,6016,0 +16692,Wioska+barbarzy%C5%84ska,617,556,7047342,10484,0 +16693,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,444,613,8201460,10237,0 +16694,Wioska+barbarzy%C5%84ska,618,550,7047342,10476,0 +16697,kathare,547,618,873575,10495,0 +16698,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,627,8201460,10237,0 +16699,FKG+01-33,412,403,356642,9835,0 +16700,Twierdza,566,612,699567608,9647,0 +16701,082.+Aler,629,476,8337151,11678,0 +16702,039,557,403,699761749,10495,0 +16703,082,437,387,849027025,7223,0 +16704,008,434,613,699859013,8502,7 +16705,Brat447,370,496,699262350,10476,0 +16706,031.+Aurelia,624,461,849091866,9422,0 +16707,Valhalla,539,375,698350371,10444,0 +16708,010,448,620,849084985,10211,0 +16709,37.+Wioska+37,394,570,849091769,10241,0 +16710,Kentin+ufam+Tobie,385,445,699783765,10000,0 +16711,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,626,1434753,10068,9 +16712,%5B002%5D+Konata+Izumi,479,371,699658023,10140,0 +16713,FKG+01-31,417,399,356642,9835,0 +16714,097,447,614,849084985,10177,0 +16715,A029,619,454,699722599,10484,0 +16716,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,625,8201460,10237,0 +16717,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,433,612,1434753,9883,0 +16718,Szlachcic,466,412,698388578,10237,0 +16719,Zach%C3%B3d+-+003,397,577,225023,9920,0 +16720,Taran,541,386,699170684,10147,0 +16721,Westcoast.073,391,427,848918380,10178,0 +16722,Konradzik,428,393,356642,9835,0 +16723,CALL+1064,555,615,699784536,10495,0 +16724,036+dudek2222,626,513,8323711,10495,0 +16725,ADEN,523,373,698588535,10311,0 +16726,Wioska+barbarzy%C5%84ska,616,553,7047342,10481,0 +16727,609%7C426+Wioska+barbarzy%C5%84ska12,609,426,6822957,9487,0 +16728,Ulu-mulu,424,607,699697558,11678,0 +16729,010+Kioto,626,476,7092442,10297,4 +16730,Wioska,603,574,17714,10222,0 +16731,009+Jokkmokk,609,567,699272880,10397,0 +16732,MojeSzczytToTw%C3%B3jDno,508,371,828637,10495,0 +16733,Wioska+050,634,497,848971079,9783,0 +16734,33.+Wioska+33,389,566,849091769,9024,0 +16736,MojeSzczytToTw%C3%B3jDno,526,373,828637,10047,0 +16737,kathare,547,621,873575,10183,0 +16738,Knowhere,363,500,699723284,3691,0 +16740,020+019,547,379,699491076,10001,0 +16741,Wioska+barbarzy%C5%84ska,507,627,606407,10291,0 +16742,szlachcic,386,467,698807570,10311,0 +16743,Wioska+barbarzy%C5%84ska,421,401,699402816,9835,0 +16744,-002-+K55,591,595,8096537,9982,0 +16745,Wioska+barbarzy%C5%84ska,376,529,849030226,10495,0 +16746,K44+x022,463,420,698364331,7621,0 +16747,084,422,384,698364331,8604,0 +16748,FKG+01-20,418,402,356642,9835,0 +16749,VN+Siren+Tium,469,372,699883079,9608,0 +16750,016,503,375,849010255,10019,0 +16751,Kentin+ufam+Tobie,380,455,699783765,10000,0 +16752,A23+Wioska+barbarzy%C5%84ska,463,625,849037407,10220,0 +16753,Horyzont+zdarze%C5%84,537,613,7581876,10019,0 +16754,031,378,531,8908002,9993,0 +16755,Wioska+barbarzy%C5%84ska,401,419,7462660,9994,0 +16756,Wioska+barbarzy%C5%84ska,618,553,7047342,10478,0 +16757,A+READY,584,399,1553947,10252,0 +16758,SINGED+X+SZEF,490,376,699368887,10104,0 +16759,Wioska,375,520,849084005,5622,0 +16760,South+K35,557,382,699146580,10042,0 +16761,Wioska,377,539,849084005,10178,0 +16762,010,620,546,8428196,9973,0 +16763,0Wioska+barbarzy%C5%84ska,470,514,699189792,4928,0 +16764,Julia,610,569,699737356,9259,0 +16765,0438,545,618,698659980,10019,0 +16766,020,471,629,699336777,9825,0 +16767,Wioska,377,546,849084005,10178,0 +16768,0063+b55,452,433,3909522,6853,0 +16769,029.+Wioska+barbarzy%C5%84ska,577,397,699799629,10495,0 +16770,030,446,615,849084985,10237,0 +16771,Wioska,381,554,849084005,9365,0 +16772,s181eo21,381,456,393668,9883,0 +16773,Lord+Arsey+KING,588,594,848956513,10285,0 +16774,025,496,631,699878511,10146,0 +16775,110,460,621,849084985,9626,0 +16776,Wioska+barbarzy%C5%84ska1,509,370,699368887,9994,0 +16777,Westcoast.019,392,436,848918380,10178,0 +16778,608%7C428+Wioska+barbarzy%C5%84ska18,608,428,6822957,9839,0 +16779,Gattacka,605,422,699298370,9740,0 +16780,Wioska+barbarzy%C5%84ska,619,552,7047342,10478,0 +16781,Westcoast.030,388,439,848918380,10178,0 +16782,Wioska+barbarzy%C5%84ska,436,386,849027025,9355,0 +16783,003,421,398,699402816,10178,0 +16784,Westcoast.072,390,428,848918380,10178,0 +16785,R%C4%99cznik+do+zmiany,389,478,699697558,10495,0 +16786,A0126,373,490,8841266,10362,0 +16787,610%7C429+Wioska+barbarzy%C5%84ska20,610,429,6822957,9809,0 +16788,Wioska,381,555,849084005,10178,0 +16789,022,481,374,849010255,8582,0 +16791,Wioska+barbarzy%C5%84ska,544,378,1990750,10068,0 +16792,0005,414,594,225023,10495,0 +16793,Wioska+barbarzy%C5%84ska,622,548,7047342,10484,0 +16794,Lord+Arsey+KING,593,597,848956513,10285,0 +16795,008,492,630,699336777,9825,0 +16796,024+Agenci,626,521,8323711,10495,0 +16797,%2AINTERTWINED%2A%2A,516,629,698704189,9711,0 +16799,WE+ARE+READY%21,591,406,1553947,9824,0 +16800,Mniejsze+z%C5%82o+0025,372,477,699794765,8875,0 +16802,Gattacka,602,423,699298370,9965,0 +16803,Mniejsze+z%C5%82o+0035,372,470,699794765,9949,0 +16804,021+022,545,379,699491076,10001,0 +16805,Gra+pozor%C3%B3w%3F,579,600,699785935,9899,0 +16806,MojeSzczytToTw%C3%B3jDno,515,369,828637,10479,0 +16807,028,509,627,699878511,10139,0 +16808,Westcoast.046,395,429,848918380,10178,0 +16809,%2A048%2A,631,500,698670524,2557,0 +16810,Konfederacja+%2B,452,379,848915730,9868,7 +16811,%2AINTERTWINED%2A%2A,511,625,698704189,9711,0 +16812,A0082,373,476,8841266,10362,0 +16813,Szlachcic+017,625,539,698562644,10311,0 +16814,005,563,609,699567608,9620,0 +16815,Wioska,604,574,17714,10222,0 +16816,%23004.505%7C509,624,460,556154,9735,0 +16817,South+K35,556,382,699146580,9809,0 +16818,Wioska+barbarzy%C5%84ska,379,463,3698627,9963,0 +16819,Piwna+08,612,432,699812007,8817,0 +16820,Pobozowisko,393,572,699513260,11130,2 +16821,%2AINTERTWINED%2A%2A,512,627,698704189,9711,0 +16822,NIERAJ03,450,622,8729672,10206,0 +16824,Jaaa,585,598,698635863,10476,0 +16825,Jaaa,597,589,698635863,10481,0 +16826,Darmowe+przeprowadzki,435,611,848935389,9809,0 +16827,Vasperland_019,629,517,7047342,10487,0 +16828,0004,584,400,699485250,10211,8 +16829,Zielona+cebulka,416,406,699402816,9835,0 +16830,A0290,370,487,8841266,10362,0 +16831,001,391,424,848921536,10104,0 +16832,VN+Saladin,468,375,699883079,9534,0 +16833,012.+Vengerberg,576,397,699799629,10495,0 +16834,Piwna+16,613,434,699812007,6208,0 +16835,013,502,629,699878511,10141,0 +16836,Village,506,588,849094067,12154,0 +16837,019,378,533,8908002,9383,0 +16838,Pobozowisko,394,574,699513260,10963,0 +16839,Pobozowisko,411,591,699513260,10954,0 +16840,031,501,623,699878511,10160,0 +16841,VN+Nobunaga+Hazama,475,374,699883079,9652,0 +16842,Murcia+cuatro,391,567,698916948,3396,0 +16843,Jaaa,608,435,698635863,10478,0 +16844,Kasztan,372,506,699265922,9825,0 +16845,B017,630,503,9314079,10051,0 +16846,Boxes+of+Shinra+Property,527,628,8199417,10495,0 +16848,Akacja,371,502,699265922,9761,0 +16849,MojeSzczytToTw%C3%B3jDno,518,375,828637,10495,0 +16850,010,371,524,6853693,10484,0 +16851,005,580,599,698999105,10311,0 +16852,%2AINTERTWINED%2A,510,630,698704189,9711,0 +16853,Wioska+barbarzy%C5%84ska,621,550,7047342,10484,0 +16854,Pobozowisko,413,598,699513260,8504,9 +16855,049,561,406,7271812,10495,0 +16856,Wioska+barbarzy%C5%84ska,600,415,8192845,3667,0 +16857,Knowhere,373,513,699723284,10452,0 +16858,A0118,368,494,8841266,10362,0 +16859,085.+Gard%C5%82o,627,468,8337151,11678,0 +16860,007+%7C+PALESTINA,625,457,9228039,9544,4 +16861,%5B004%5D,624,544,698305474,9809,0 +16862,Wioska+barbarzy%C5%84ska,374,532,849030226,10160,0 +16863,014,555,382,699761749,10495,0 +16864,Wioska+barbarzy%C5%84ska,620,554,7047342,10481,0 +16865,114,588,407,849064752,10311,0 +16866,022,378,532,8908002,9950,0 +16867,025+Pot%C4%99%C5%BCny+Dzban,387,563,699382126,10476,0 +16868,Pobozowisko,415,598,699513260,9136,0 +16869,Konradzik,427,391,356642,9835,0 +16870,Zach%C3%B3d+-+004,396,575,225023,10495,0 +16871,B001,628,494,9314079,9778,5 +16872,C+Pld+001+Kraina+kebaba,408,588,849084740,9200,0 +16873,Avanti%21,374,484,698625834,9950,0 +16874,054+OZDR,467,628,699336777,9994,0 +16875,Brat447+XXX,369,499,699262350,10487,0 +16876,Pobozowisko,411,594,699513260,10957,0 +16877,K34+-+%5B081%5D+Before+Land,451,381,699088769,10259,0 +16878,086,582,404,849064752,10146,0 +16879,072+KUZYNI+mehehehe,480,630,699336777,9902,0 +16880,Ruins+of+the+Sector+7,529,628,8199417,10495,0 +16881,%5B010%5D,621,542,698305474,9809,0 +16882,046.+F64D,485,630,699494488,10478,0 +16883,040.,485,625,699494488,10218,0 +16884,Papa,613,568,699737356,9950,0 +16885,Myk+i+do+kieszonki,373,519,9319058,8877,0 +16886,Wioska+barbarzy%C5%84ska,402,415,698971484,10008,0 +16887,Zeta+Reticuli+S,408,407,699323302,10997,0 +16888,Pobozowisko,408,593,699513260,10620,0 +16889,Westcoast.070,393,428,848918380,10178,0 +16890,K34+x011,444,380,698364331,6293,0 +16891,VN+Yi+Seong-Gye,466,376,699883079,9638,0 +16892,Myk+i+do+kieszonki,373,505,9319058,9799,0 +16893,013,630,527,699413040,9860,0 +16894,613%7C432+010+Podarta+Strona,613,432,6822957,9620,0 +16895,Konfederacja+%2B,455,380,848915730,9720,3 +16897,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,433,613,1434753,10068,0 +16898,%23010.500%7C497,619,448,556154,9735,0 +16899,Pobozowisko,397,573,699513260,10957,0 +16900,Brat447,368,508,699262350,7278,0 +16901,%5B204%5D+WEST,619,452,848985692,10306,0 +16902,South+K35,576,392,699146580,8895,0 +16903,U-5,548,377,3600737,9442,0 +16904,A003,626,497,9314079,9827,0 +16905,Ressier,510,374,699368887,9994,0 +16906,023,497,626,699878511,10144,0 +16907,017+Fasol+podzi%C4%99kowa%C5%82,389,551,699382126,10484,0 +16908,Taran+005,625,526,698562644,10311,0 +16909,Pobozowisko,411,597,699513260,10302,0 +16910,A0175,371,470,8841266,10362,0 +16911,0028,375,463,3698627,10447,0 +16912,0146,553,621,698659980,10019,0 +16913,030,491,371,849010255,7007,0 +16914,SSJ+012,515,630,699054373,9761,6 +16916,FKG+01-29,415,402,356642,9835,0 +16917,Knowhere,372,499,699723284,10452,0 +16918,Westcoast.078,386,435,848918380,10178,0 +16919,Osada+koczownik%C3%B3w,403,415,698971484,10008,6 +16920,%5B007%5D,620,540,698305474,9809,0 +16921,mklo,539,374,828637,6541,0 +16923,33+im+Or%C5%82owa,577,396,849037469,9809,0 +16924,Westcoast.053,397,423,848918380,10178,0 +16925,Pobozowisko,401,581,699513260,9464,0 +16926,40002,488,631,848915531,10838,0 +16927,C+006,579,395,6384450,9154,0 +16928,A0176,376,475,8841266,10362,0 +16929,Brat447,368,506,699262350,7069,0 +16930,C+Zach+003+Rudziniec,403,578,849084740,9608,0 +16931,Pobozowisko,395,579,699513260,8493,0 +16932,060+OZDR,465,627,699336777,9825,0 +16933,s2+Wioska+barbarzy%C5%84ska,399,415,7462660,10301,0 +16934,041,432,391,699783765,10638,0 +16935,Wioska+barbarzy%C5%84ska,479,630,699494488,10226,0 +16936,Polska,541,375,1990750,10068,0 +16937,089.,501,491,8788366,10016,0 +16938,Xyz,436,444,698884287,10285,0 +16939,001+Wioska+gazela,622,464,699671454,10343,0 +16940,073,569,607,698999105,10311,0 +16941,Osada+koczownik%C3%B3w,377,459,3698627,10008,7 +16942,C002+Yarikawa,615,556,8096537,9687,0 +16943,0011+Wioska+barbarzy%C5%84ska,423,601,9060641,10092,0 +16944,0064,457,621,698659980,10083,0 +16945,A0083,371,494,8841266,10362,0 +16946,Knowhere,374,513,699723284,10452,0 +16947,050+OZDR,469,628,699336777,9902,0 +16948,012,376,546,6853693,10478,4 +16950,009,568,391,1424656,9825,0 +16951,VN+Atylla,467,375,699883079,9558,0 +16952,Konfederacja,459,376,848915730,9741,0 +16953,Ruch135,593,572,6929240,9183,0 +16954,017,597,587,698999105,10311,0 +16955,Konfederacja+8,453,377,848915730,9976,6 +16956,047,484,370,698739350,10247,0 +16957,032,470,626,699336777,9825,0 +16958,Wioska+barbarzy%C5%84ska,543,378,1990750,10068,0 +16959,Jaaa,613,441,698635863,10106,0 +16960,40004,483,629,848915531,10971,0 +16961,A0127,369,484,8841266,10362,0 +16962,Westcoast.093,386,437,848918380,10178,0 +16963,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,432,612,1434753,10068,0 +16964,027,371,526,6853693,5465,0 +16965,005+VC+Palarnia,400,417,698971484,10008,0 +16966,014+Okayama,626,483,7092442,10495,0 +16967,Feed+me+more+016,485,380,699756210,10066,0 +16968,Kentin+ufam+Tobie,383,451,699783765,10000,0 +16969,Sector+1+Slums+Area,505,620,8199417,10224,0 +16970,011+Meereen,614,568,699272880,10249,0 +16971,Jan+Krosse,629,480,879782,6408,0 +16972,MojeSzczytToTw%C3%B3jDno,526,372,828637,10387,0 +16973,Wioska,381,549,849084005,7705,0 +16974,Jaaa,621,455,698635863,10484,0 +16976,Ulu-mulu,424,608,699697558,11678,0 +16977,Sony+911,566,610,1415009,10046,0 +16978,55.+Wioska+55,377,550,849091769,10003,0 +16979,%24%24%24,421,605,225023,10452,0 +16980,Myk+i+do+kieszonki,375,514,9319058,9799,0 +16981,ave+why%21,459,631,698143931,10300,0 +16982,002+osada+koniki,600,579,1715091,9835,6 +16983,013+KTW,621,449,848883237,10495,0 +16984,036,629,512,699413040,9860,0 +16985,Bocianikson010,618,546,7528491,9955,0 +16986,017,372,524,6853693,6141,0 +16987,A031,615,455,699722599,10495,0 +16988,0553,554,619,698659980,10019,0 +16989,%5B008%5D,626,533,698305474,9809,0 +16990,CALL+1066,555,616,699784536,10495,0 +16991,Poca%C5%82uj+mnie+prosto+w+d%2A%2Ae,630,477,849094111,2767,0 +16992,Wioska+barbarzy%C5%84ska,422,396,699402816,9835,0 +16993,CALL+930,507,628,699784536,10311,0 +16994,011,495,631,699336777,9825,0 +16995,Jaaa,577,602,698635863,10487,0 +16996,021.+Hyperporea,571,389,699799629,10495,0 +16997,Pobozowisko,399,586,699513260,10914,0 +16998,K34+-+%5B070%5D+Before+Land,462,376,699088769,10126,0 +16999,Horyzont+zdarze%C5%84,535,621,7581876,9835,1 +17000,c+000+Wioska,419,396,3909522,10083,0 +17001,Pobozowisko,393,571,699513260,10971,0 +17002,004+Wioska+Witcher,623,458,699671454,9255,0 +17003,Ulu-mulu,432,611,699697558,6794,0 +17004,Avanti%21,374,480,698625834,9950,0 +17005,024.+Primis,619,554,849091866,10252,0 +17006,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,627,7589468,8820,0 +17007,005,406,591,9264752,10495,0 +17008,Kentin+ufam+Tobie,384,442,699783765,10019,0 +17009,FKG+01-32,415,400,356642,9835,0 +17010,Westcoast.060,387,430,848918380,10178,0 +17011,015+Cailin,612,570,699272880,10030,0 +17013,yyy,494,371,699883079,10209,0 +17014,-048-,467,434,9291984,10236,0 +17015,.043.,494,369,698489071,10503,0 +17016,Part+XXIX,534,378,698350371,10495,0 +17017,007.Batura+Sar,605,571,1601917,10495,0 +17018,073+-+Ruten,422,593,225023,9519,0 +17019,XXX+Daleko,372,527,699425709,7106,0 +17020,Ulu-mulu,422,603,699697558,10241,9 +17021,0035,555,617,698659980,10083,0 +17022,Wioska+barbarzy%C5%84ska2,508,368,699368887,9994,0 +17023,011+Teufel666,389,563,699382126,10495,0 +17024,108,443,614,849084985,10237,0 +17025,Wioska,601,576,17714,10222,0 +17026,Jaaa,582,597,698635863,10476,7 +17027,Westcoast.023,390,432,848918380,10178,0 +17029,181,573,395,849064752,10311,0 +17030,Wioska,604,578,17714,10222,0 +17031,048,479,629,699336777,9825,0 +17032,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,629,8201460,10237,0 +17033,065,584,595,698999105,10311,0 +17034,Jaaa,619,446,698635863,10475,0 +17035,Pobozowisko,398,581,699513260,10960,0 +17036,0067,456,621,698659980,10083,0 +17037,Wioska+barbarzy%C5%84ska,367,504,698807570,8483,0 +17038,Ulu-mulu,422,607,699697558,10051,0 +17039,Ulu-mulu,418,601,699697558,9059,0 +17040,Piwna+04,616,439,699812007,8528,0 +17041,0550,429,608,698659980,9049,0 +17042,Gattacka,602,426,699298370,9886,0 +17043,XXXX,504,370,849054951,10068,0 +17044,006+Ystad,607,570,699272880,10551,4 +17045,030+Pot%C4%99%C5%BCny+Dzban,386,559,699382126,10478,0 +17046,009+legarda,387,557,699382126,10475,0 +17047,36+im+Diemina,584,401,849037469,9809,0 +17049,023,562,387,1424656,9825,0 +17050,0314,428,606,698659980,9717,0 +17051,Tys+je+pofirtany+mamlosie,377,466,699711723,9661,0 +17052,A0084,373,474,8841266,10362,0 +17053,.044.,497,368,698489071,10485,0 +17054,BAC%C3%93WKA+%7C016%7C,633,502,7394371,12154,0 +17055,SINGED+X+SZEF,493,371,699368887,9994,0 +17056,048,482,368,698739350,10237,0 +17057,MojeSzczytToTw%C3%B3jDno,534,375,828637,9737,0 +17058,0131,448,379,699431255,10083,0 +17059,SSJ+029,506,632,699364813,9505,0 +17060,-043-,386,567,9167250,7215,0 +17061,A0137,371,480,8841266,10362,0 +17062,Wioska+%28003%29,624,467,698232227,8529,4 +17063,Wioska+barbarzy%C5%84ska,377,530,849030226,10484,0 +17064,Westcoast.013,389,435,848918380,10178,0 +17065,K34+x004,445,380,698364331,9934,0 +17066,Wioska,375,544,849084005,10178,0 +17067,Horyzont+zdarze%C5%84,539,626,7581876,10019,0 +17068,023+%7C+PALESTINA,621,450,9228039,9544,0 +17069,Zeta+Reticuli+S2,399,414,699323302,11550,0 +17070,019,553,380,1424656,9449,0 +17071,Horyzont+zdarze%C5%84,535,622,7581876,10019,0 +17072,SINGED+X+SZEF,482,374,699368887,8896,6 +17073,Kentin+ufam+Tobie,377,456,699783765,10000,0 +17074,Po+PP,608,422,9262877,6399,0 +17075,Wioska+barbarzy%C5%84ska,546,376,1990750,10068,0 +17076,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,625,8201460,10237,0 +17077,0305,425,608,698659980,10019,0 +17078,205,573,396,849064752,8493,0 +17079,%2AINTERTWINED%2A%2A,510,629,698704189,9711,0 +17080,Bocianikson018,622,540,7528491,7392,0 +17081,A0085,372,484,8841266,10362,0 +17082,18+W+domach+z+betonu,630,519,9314079,4621,0 +17083,Westcoast.031,390,430,848918380,10178,0 +17085,010+Qarth,612,565,699272880,9808,0 +17086,%230004,519,372,7651093,9817,0 +17087,008,619,546,8428196,9975,0 +17088,0003+Wioska+barbarzy%C5%84ska,424,610,9060641,10544,0 +17089,26+im+Gribowa,581,401,849037469,9809,0 +17090,Hornvale,484,631,699494488,10495,0 +17091,Vasperland_021,627,502,7047342,10484,0 +17092,Kentin+ufam+Tobie,385,443,699783765,10000,0 +17093,Kentin+ufam+Tobie,378,450,699783765,10000,0 +17094,219+%7C,621,540,8000875,2751,0 +17095,Twierdz%C4%85+5,625,476,848935020,7332,0 +17096,Wioska+barbarzy%C5%84ska,403,412,698971484,10008,0 +17097,B010,628,490,9314079,9835,0 +17098,K34+x021,468,393,698364331,8199,0 +17099,Pobozowisko,400,582,699513260,7736,0 +17100,007,395,500,699510259,9753,0 +17101,Hel+02,613,563,698702991,9819,0 +17102,40003,488,632,848915531,10838,0 +17103,Jaaa,613,442,698635863,10484,0 +17104,VN+Illumi+Zoldyck,461,375,699883079,9632,0 +17105,Konradzik,427,394,356642,9835,0 +17107,0031,582,398,699485250,9968,0 +17108,0010+Wioska+barbarzy%C5%84ska,423,602,9060641,9434,0 +17109,Wioska+barbarzy%C5%84ska,373,464,699523631,10479,0 +17111,Westcoast.067,387,440,848918380,10178,0 +17112,South+K35,551,384,699146580,10042,6 +17113,015,600,583,698999105,10311,0 +17114,022.,489,627,699494488,10220,0 +17115,012+Asshai,611,572,699272880,10400,0 +17116,Szulernia,411,409,7249451,9995,0 +17117,Wioska,381,521,849084005,10178,0 +17118,Konradzik,428,394,356642,9835,0 +17119,Pastorlandia,374,531,849030226,10495,0 +17120,033,580,396,849064752,10311,0 +17121,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,625,8201460,10237,0 +17122,Darma,426,392,356642,9835,1 +17123,001,524,622,699336777,9825,0 +17124,-006-+K55,595,592,8096537,9750,0 +17125,Ulu-mulu,424,605,699697558,11678,0 +17126,014,497,631,699878511,10141,0 +17127,Westcoast.054,394,422,848918380,10178,9 +17128,So%C5%82tys+Twojej+Wsi,434,387,849027025,9638,0 +17129,Westcoast.047,396,428,848918380,10178,0 +17130,Essa+004,571,577,848987051,10087,0 +17131,049,475,371,698739350,10237,0 +17132,Mniejsze+z%C5%82o+0011,375,478,699794765,9508,0 +17133,VN+Pelagius,476,371,699883079,10119,2 +17134,047.+F64D,484,630,699494488,10220,0 +17135,Taran,548,381,699170684,9415,0 +17136,0152,552,621,698659980,10019,0 +17137,Gattacka,604,423,699298370,9818,0 +17138,WKS+ZAWISZA+BDG,391,566,9167250,5885,0 +17139,Ulu-mulu,431,610,699697558,10101,0 +17140,0009+Wioska+Gernot,424,602,9060641,10544,0 +17141,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,439,617,8201460,10378,0 +17142,SSJ+047,505,632,699364813,9330,0 +17143,Westcoast.034,395,423,848918380,10178,0 +17144,%23020.499%7C489,618,440,556154,9735,0 +17145,028+Pot%C4%99%C5%BCny+Dzban,385,561,699382126,10479,0 +17146,Taran,549,377,699170684,9173,0 +17147,090.+Z%C5%82y+Kraj,625,468,8337151,11678,0 +17148,ave+why%21,455,622,698143931,10213,1 +17149,PRO8L3M,470,485,7491093,9835,0 +17150,R-4,556,384,3600737,9013,0 +17152,Pobozowisko,410,591,699513260,10951,0 +17153,026.,491,627,699494488,10217,0 +17154,008,498,632,699878511,10143,0 +17155,R012,391,576,8607734,5300,0 +17156,HORUS,524,629,7756002,9885,0 +17157,Belvedere+014,580,413,699756210,9841,0 +17158,Pobozowisko,395,575,699513260,10966,0 +17159,Wioska+030,603,579,848971079,9761,0 +17160,Pobozowisko,400,587,699513260,10767,1 +17162,Kentin+ufam+Tobie,435,391,699783765,10000,0 +17163,%230001+-+CSA,520,379,7651093,10019,0 +17164,Szulernia,410,407,7249451,9981,0 +17165,Wioska+barbarzy%C5%84ska,417,598,699697558,5061,0 +17166,Jan+029+%C5%BBycz%C4%99+powodzenia+Nord+K,637,499,879782,9688,0 +17168,Knowhere,397,490,699723284,10282,0 +17169,Murcia+dos,390,567,698916948,4082,0 +17170,0147,550,622,698659980,10160,0 +17171,Westcoast.055,397,419,848918380,10178,0 +17172,Osada+koczownik%C3%B3w,572,607,1415009,10242,3 +17173,Powolutku,582,419,848985692,10252,0 +17174,Avanti%21,373,481,698625834,9950,0 +17175,0123,448,381,699431255,10019,0 +17176,Belvedere+015,588,406,699756210,9245,0 +17177,005+Hello+Moto,604,417,699491076,10001,0 +17178,VN+Takeda,466,373,699883079,9527,0 +17179,z+044,578,604,699342219,10226,0 +17180,Kentin+ufam+Tobie,381,441,699783765,10000,0 +17181,B011,598,411,699761749,7435,0 +17183,Ulu-mulu,425,607,699697558,11678,0 +17185,MojeSzczytToTw%C3%B3jDno,526,369,828637,10495,0 +17186,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,437,611,1434753,10068,3 +17187,Wioska+barbarzy%C5%84ska,487,368,699658023,8331,0 +17188,014+KTW,623,449,848883237,10495,0 +17189,HORUS,517,624,7756002,9905,0 +17190,Pobozowisko,408,594,699513260,10952,0 +17191,Wioska+barbarzy%C5%84ska,446,382,699191449,10476,0 +17192,Kentin+ufam+Tobie,384,439,699783765,10000,0 +17193,Zeta+Reticuli+S3,426,390,699323302,10795,0 +17194,Wioska,378,546,849084005,8999,0 +17195,Oeste,385,553,698916948,5301,0 +17196,K34+-+%5B074%5D+Before+Land,450,382,699088769,10259,4 +17197,Westcoast.074,399,423,848918380,10178,0 +17198,025,564,386,1424656,10252,0 +17199,Kentin+ufam+Tobie,381,450,699783765,10000,0 +17200,Wioska+barbarzy%C5%84ska,545,375,1990750,10068,0 +17201,034+%7C,622,543,8000875,10105,4 +17202,Wioska+barbarzy%C5%84ska,421,393,699402816,9835,0 +17203,0154,547,624,698659980,10083,0 +17204,FKG+01-03,414,403,356642,9835,4 +17205,A0128,369,496,8841266,10362,0 +17206,s5+Wioska+barbarzy%C5%84ska,401,416,7462660,10068,0 +17207,A0304,373,506,8841266,10362,0 +17208,0030,625,528,6510480,10319,0 +17209,012,611,579,699099811,9835,0 +17210,Kentin+ufam+Tobie,381,440,699783765,10000,0 +17211,Belvedere+016,585,410,699756210,10273,0 +17212,029,509,628,699878511,10139,0 +17213,023,470,628,699336777,9825,0 +17214,Pobozowisko,415,602,699513260,8803,0 +17215,Wioska,374,523,849084005,9697,0 +17216,0018.+C+-,627,504,7125212,6975,0 +17217,Wioska+Strange123,455,376,699191449,3784,0 +17218,Gattacka,604,425,699298370,9861,0 +17219,005,523,629,699336777,9825,0 +17220,%5B0058%5D,417,396,8630972,10495,0 +17221,K34+-+%5B067%5D+Before+Land,461,376,699088769,10259,0 +17222,146+MIKOX+019,593,413,699491076,9765,0 +17223,W.181%2F14,616,537,2999957,10242,0 +17224,012,578,602,698999105,10311,0 +17225,BossMan+%28%3D%29,561,462,699368887,10495,0 +17226,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,626,7589468,8819,0 +17227,20+Art+Brud,626,519,699377151,2435,0 +17228,055+OZDR,467,629,699336777,10365,8 +17229,068,630,524,699373599,10495,0 +17230,019,600,582,698999105,10311,0 +17231,A+READY,587,405,1553947,10252,0 +17232,026+Pot%C4%99%C5%BCny+Dzban,387,561,699382126,10475,0 +17233,010.,628,527,6520732,9835,0 +17234,Pobozowisko,393,577,699513260,10957,0 +17235,Wioska+023,594,585,848971079,9761,0 +17236,012.,628,530,6520732,9835,8 +17237,C+004,580,394,6384450,10283,0 +17238,Wioska+barbarzy%C5%84ska,378,536,849030226,9458,0 +17239,Belvedere+019,587,404,699756210,9957,0 +17240,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,630,8201460,10237,0 +17241,RTS+1,570,614,848995242,10495,5 +17242,Darma,419,400,356642,9159,0 +17243,A0119,372,493,8841266,10362,0 +17244,32+im+Naumowa,580,400,849037469,9809,7 +17246,004+Hello+Moto,602,418,699491076,10001,0 +17247,K34+x014,444,379,698364331,7778,0 +17248,Pobozowisko,396,581,699513260,10971,0 +17249,Ulu-mulu,426,605,699697558,11678,0 +17250,Belvedere+017,584,411,699756210,9809,0 +17251,025.+Thangorodrim,565,387,699799629,10495,0 +17252,CALL+931,508,629,699784536,10311,0 +17253,032+%7C,623,545,8000875,9919,4 +17254,Kentin+ufam+Tobie,382,448,699783765,10000,0 +17255,%2A0007+Baraki,609,431,8459255,10252,0 +17256,November,613,571,699737356,9983,0 +17257,Sasowy+R%C3%B3g,373,537,849030226,9411,0 +17258,Zakr%C4%99cona+2,575,604,8627359,9159,0 +17259,R-2,561,385,3600737,9013,0 +17260,B+001,586,411,6384450,10362,0 +17261,A0310,369,519,8841266,10362,0 +17262,Darma,425,395,356642,9835,0 +17263,Kentin+ufam+Tobie,381,451,699783765,10000,0 +17264,%5B215%5D+WEST,608,454,848985692,10048,0 +17265,063,563,388,849064752,10311,0 +17266,002,404,586,9264752,10495,0 +17267,029.,491,629,699494488,10218,0 +17268,Wioska,378,537,849084005,10178,0 +17269,Tank+015.+Bez+przebaczenia,396,511,698290577,9812,0 +17270,Wioska+barbarzy%C5%84ska3,506,369,699368887,9994,0 +17271,B011,630,493,9314079,9827,0 +17272,001,502,632,699878511,10141,0 +17273,Wioska+barbarzy%C5%84ska,378,465,3698627,9962,0 +17274,Kentin+ufam+Tobie,382,439,699783765,10000,0 +17275,K34+-+%5B075%5D+Before+Land,464,381,699088769,10259,0 +17276,Taran,550,382,699170684,9379,0 +17277,Kentin+ufam+Tobie,385,444,699783765,10000,1 +17279,Wioska+barbarzy%C5%84ska,372,466,699523631,10479,0 +17281,Jaaa,614,442,698635863,10479,0 +17283,maney,420,395,699402816,9835,0 +17284,Wioska+Kurji,368,484,699265922,9216,0 +17285,Wioska,611,571,17714,10222,0 +17286,Wioska,376,547,849084005,10178,0 +17287,Wioska+barbarzy%C5%84ska,615,557,7047342,10478,0 +17288,Westcoast.048,395,418,848918380,10178,0 +17289,Jaaa,617,445,698635863,10484,0 +17290,016,630,529,699413040,9860,0 +17291,006+Hello+Moto,603,418,699491076,10001,0 +17292,007.+Nilfgaard,567,388,699799629,10495,0 +17293,Belvedere+021,590,407,699756210,10273,0 +17294,030,634,520,699413040,9860,0 +17295,031+lecimy+kurv%40+tutaj,624,470,699272633,10481,0 +17296,.020.,494,372,698489071,10252,0 +17297,Wioska,375,542,849084005,10178,0 +17299,%2AINTERTWINED%2A,517,628,698704189,9711,0 +17300,South+K35,558,380,699146580,9809,0 +17301,Zach%C3%B3d+-+013,389,571,225023,7761,0 +17302,Westcoast.015,389,436,848918380,10178,1 +17303,West+06,629,477,698702991,9747,0 +17304,MojeSzczytToTw%C3%B3jDno,516,368,828637,10478,0 +17305,094,449,622,849084985,9199,0 +17306,Taran,550,376,699170684,9379,0 +17307,D020,594,407,699761749,10401,0 +17308,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,614,8201460,10237,0 +17309,MojeSzczytToTw%C3%B3jDno,529,371,828637,10060,0 +17310,Belvedere+022,588,405,699756210,9899,0 +17311,%23026+A,456,624,698143931,9204,0 +17312,001+Samotnia,497,381,698739350,9924,0 +17313,058+Pot%C4%99%C5%BCny+Dzban,384,563,699382126,10479,0 +17314,A034,450,409,8740199,10220,0 +17315,A0086,369,488,8841266,10362,0 +17316,0000,531,616,848915531,11321,0 +17317,Pobozowisko,415,597,699513260,7775,0 +17318,Byczyna,376,535,849030226,10336,0 +17319,Ulu-mulu,419,604,699697558,5579,0 +17320,028,368,522,6853693,6098,0 +17321,Pobozowisko,402,589,699513260,9215,0 +17322,029,369,521,6853693,5790,0 +17323,067,441,613,849084985,9821,5 +17324,059+Pot%C4%99%C5%BCny+Dzban,382,563,699382126,10490,0 +17326,Jaaa,623,455,698635863,10622,0 +17327,Myk+i+do+kieszonki,373,512,9319058,9845,7 +17329,%5B307%5D+Chor%C4%85giewka+na+wietrze,589,423,848985692,10068,0 +17330,Szlachcic+012,623,539,698562644,10311,0 +17331,FKG+01-26,414,405,356642,9835,0 +17332,%23027+A,454,624,698585370,9930,0 +17333,Ulu-mulu,428,612,699697558,6944,0 +17334,Ulu-mulu,436,616,699697558,8021,0 +17335,Kentin+ufam+Tobie,382,449,699783765,10000,4 +17336,008+O+rety+rety%2C+lec%C4%85+karety%21,389,569,699382126,10478,0 +17337,Wioska+barbarzy%C5%84ska,404,414,698971484,10008,0 +17338,Wioska+barbarzy%C5%84ska,396,415,7462660,9994,0 +17339,016,556,379,1424656,9735,0 +17340,001+Monety+1+p600,511,367,699368887,9994,9 +17341,Wioska+barbarzy%C5%84ska,371,467,699523631,10479,0 +17342,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,438,617,8201460,10104,0 +17343,A0132,373,488,8841266,10362,0 +17344,04+im+Owsjenki,591,414,849037469,9809,0 +17345,Wioska+barbarzy%C5%84ska,405,410,698971484,10008,0 +17346,Og%C3%B3rkowy+baron,404,408,356642,9835,9 +17347,Wioska+034,604,583,848971079,9761,0 +17348,Wioska+barbarzy%C5%84ska,546,375,1990750,10068,0 +17349,yyyy,497,371,699883079,10209,0 +17350,-+127+-,542,582,849018239,10000,0 +17351,A-001,415,405,8419570,10654,0 +17352,A+READY,589,402,1553947,10019,0 +17353,Wioska+031,602,585,848971079,9761,0 +17354,MojeSzczytToTw%C3%B3jDno,514,367,828637,10476,0 +17355,049.+F64D,482,631,699494488,10221,0 +17356,Wioska+barbarzy%C5%84ska,374,465,3698627,9866,0 +17358,%5B0090%5D,411,402,8630972,10495,0 +17359,Wioska+barbarzy%C5%84ska,367,506,698807570,6469,0 +17360,Gattacka,603,423,699298370,9761,0 +17361,023.,565,613,873575,10167,0 +17362,s181eo22,378,457,393668,9883,0 +17363,BAC%C3%93WKA+%7C018%7C,630,501,7394371,10228,0 +17364,022+021,546,379,699491076,10001,0 +17365,%23062.,622,456,556154,9222,0 +17366,Wilczek87,569,612,848995242,9765,0 +17367,Wioska,379,550,849084005,10178,0 +17368,WB+02,576,608,8627359,9159,0 +17369,0010,442,382,699431255,9983,0 +17370,0446,563,618,698659980,8432,0 +17371,D019,582,412,699761749,10444,0 +17372,MojeSzczytToTw%C3%B3jDno,527,370,828637,10474,0 +17373,South+K35,552,383,699146580,9853,0 +17374,Pobozowisko,395,573,699513260,10966,1 +17375,015,501,629,699878511,10160,0 +17376,%5B0080%5D,416,396,8630972,10365,0 +17377,Piwna+12,614,436,699812007,9633,0 +17378,Westcoast.091,388,431,848918380,10178,0 +17379,Wioska+barbarzy%C5%84ska,507,366,699368887,9994,0 +17380,016,371,523,6853693,6121,0 +17381,031,470,629,699336777,9825,0 +17382,027+Pot%C4%99%C5%BCny+Dzban,386,561,699382126,10479,0 +17383,018+Wioska,630,467,699671454,6381,0 +17384,Nowa+01,606,578,698702991,9835,0 +17385,022.+Wioska+barbarzy%C5%84ska,574,389,699799629,10495,0 +17386,Mniejsze+z%C5%82o+0031,371,476,699794765,8439,0 +17387,Wioska+.Dwukropek.,400,451,698807570,9417,0 +17388,WE+ARE+READY%21,593,406,1553947,9807,0 +17389,Piek%C5%82o+to+inni,486,389,848956765,10083,0 +17390,zZZ,488,369,699658023,9882,4 +17391,0012,578,405,699485250,10211,0 +17392,040,569,387,849064752,10311,6 +17393,016,504,630,699878511,10146,0 +17394,%230045,548,625,1536231,10495,0 +17395,Westcoast.075,389,427,848918380,10178,0 +17396,Szlachcic+014,625,533,698562644,10311,0 +17397,Sony+911,578,608,1415009,10208,0 +17398,%230018,546,626,1536231,10495,0 +17399,A0213,370,471,8841266,10362,0 +17400,Cedynia,372,536,849030226,9464,0 +17401,Wioska+yogi+1,548,609,2808172,10019,0 +17402,042+Pot%C4%99%C5%BCny+Dzban,383,561,699382126,10484,0 +17403,BARB,632,507,9314079,9816,0 +17404,Wioska+barbarzy%C5%84ska,419,395,699402816,9835,0 +17405,Wioska+Beniek+Pogromca,375,529,849030226,10346,0 +17406,Lord+Lord+Franek+.%23015,549,379,698420691,10152,0 +17407,VN+Noelle+Silva,466,372,699883079,8985,0 +17408,C+007,580,397,6384450,8650,0 +17409,Wioska,377,542,849084005,10178,0 +17410,003,404,585,9264752,9889,0 +17411,064,564,385,849064752,10311,0 +17412,009,493,630,699336777,9902,0 +17413,Kentin+ufam+Tobie,428,405,699783765,10000,0 +17414,0017+Bezimienna,420,602,9060641,9542,0 +17415,.025.,496,369,698489071,10316,0 +17416,35+im+Malkowa,583,400,849037469,9809,0 +17417,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,627,8201460,10237,0 +17418,BoOmBaa..,439,383,6169408,3377,0 +17419,Pobozowisko,408,596,699513260,10963,0 +17420,039+OZDR,466,624,699336777,9825,0 +17421,068+-+FiniteSpace,419,583,225023,10495,0 +17422,011,609,579,699099811,9835,0 +17423,A11+Wioska+barbarzy%C5%84ska,462,627,849037407,10479,0 +17424,Bagdad,472,387,8847546,10654,0 +17425,Brat447,374,492,699262350,10487,0 +17426,112,586,404,849064752,10311,0 +17428,Wioska+barbarzy%C5%84ska,375,454,3698627,9962,0 +17429,017,471,628,699336777,9955,0 +17430,Jarzebina,370,507,699265922,9825,0 +17431,154+MIKOX+056,592,410,699491076,10001,0 +17432,Kentin+ufam+Tobie,382,441,699783765,10000,0 +17433,Wiocha,471,374,699658023,9904,0 +17434,-1-,460,376,699393759,8777,0 +17435,Wioska+barbarzy%C5%84ska,484,367,699658023,9570,0 +17436,155+MIKOX+061,593,409,699491076,10001,0 +17437,Wioska+barbarzy%C5%84ska,416,599,699697558,6078,0 +17438,Pobozowisko,412,596,699513260,9415,0 +17439,VN+Lemiel+Silvamillion,462,372,699883079,9643,0 +17441,Wioska+035,605,582,848971079,9761,0 +17442,088.,635,489,849094609,9869,0 +17443,%23049.501%7C533,620,484,556154,9301,0 +17444,Taran,552,382,699170684,9364,0 +17445,Ulu-mulu,432,610,699697558,7959,0 +17446,W.181%2F25,630,523,2999957,10242,0 +17447,003+Osada+koczownik%C3%B3w,530,372,699854484,10178,2 +17448,SSJ+005,508,631,699054373,9761,0 +17449,015,629,500,849093875,3736,0 +17450,Gattacka,602,422,699298370,9681,8 +17451,Deveste+ufam+Tobie,433,617,699783765,9622,0 +17452,Sony+911,577,610,1415009,10211,0 +17453,%C5%9Amieszki,529,619,3454753,9976,0 +17454,SSJ+010,506,628,699364813,9737,3 +17455,High+Heart,483,632,699494488,10495,0 +17456,Westcoast.033,382,435,848918380,10178,0 +17457,Selonari,461,564,698704189,7353,0 +17458,A0087,369,480,8841266,10362,0 +17459,Jan+B+Nord+K,631,505,879782,9215,0 +17460,Jaaa,596,587,698635863,10478,0 +17461,Kentin+ufam+Tobie,431,402,699783765,10000,0 +17462,108+Summer+Slam,392,568,699382126,10456,0 +17463,MojeSzczytToTw%C3%B3jDno,527,369,828637,10478,0 +17464,013+Lewa+Waza,619,449,699671454,7667,0 +17465,066,367,517,6853693,10495,0 +17466,611%7C425+Wioska+barbarzy%C5%84ska,611,425,6822957,6642,0 +17467,051.,481,628,699494488,10090,0 +17468,010.,639,490,849094609,9481,0 +17469,A0308,371,508,8841266,10362,0 +17470,K34+-+%5B003%5D+Before+Land,458,376,699088769,10259,0 +17471,018,431,386,699783765,11130,0 +17472,Nowa+06,615,559,698702991,9835,0 +17473,021+Kury%C5%82%C5%82%C5%82yyhhhhaaa,626,470,699272633,10484,0 +17474,Wioska+SkanWhite09,431,435,9291984,7654,0 +17475,024,475,631,699336777,10160,0 +17476,Pobozowisko,411,595,699513260,10955,0 +17477,Pobozowisko,409,595,699513260,10621,0 +17478,0029,555,618,698659980,10160,0 +17479,Knowhere,374,495,699723284,10452,0 +17480,Wioska+Dominatorxd,508,600,699698253,9744,0 +17481,082,595,410,849064752,10311,0 +17482,Mniejsze+z%C5%82o+0042,377,461,699794765,8528,0 +17483,Knowhere,368,502,699723284,10452,0 +17484,Ulu-mulu,433,616,699697558,10446,0 +17486,A0088,370,485,8841266,10362,0 +17487,K34+-+%5B056%5D+Before+Land,458,379,699088769,10259,0 +17488,A0120,372,485,8841266,10362,0 +17489,0031,545,609,698659980,10160,0 +17490,Ulu-mulu,432,615,699697558,3706,0 +17491,208,570,386,849064752,10266,0 +17492,MojeSzczytToTw%C3%B3jDno,511,369,828637,10495,0 +17493,%2A0011+Baraki,611,428,8459255,10325,0 +17494,Wioska+barbarzy%C5%84ska,397,415,7462660,10068,0 +17495,005.,565,612,873575,9699,5 +17496,608%7C421+Wioska+barbarzy%C5%84ska13,608,421,6822957,9592,0 +17497,Szlachcic+016,630,530,698562644,10311,0 +17498,Szlachcic+P%C3%B3%C5%82noc+005,637,514,698562644,10311,0 +17499,Mike,613,572,699737356,7741,0 +17500,019,585,394,849064752,10311,0 +17501,0306,426,608,698659980,10019,0 +17502,.029.,483,368,698489071,10393,0 +17503,Mniejsze+z%C5%82o+0037,376,467,699794765,8986,0 +17504,017,502,634,699878511,10139,0 +17505,060+Pot%C4%99%C5%BCny+Dzban,380,560,699382126,10495,0 +17506,C003+Brokilon,613,566,8096537,9825,0 +17507,XXX+Daleko,370,527,699425709,7487,0 +17508,Piwna+06,616,432,699812007,7405,0 +17509,004,494,631,699336777,9825,0 +17511,01+Monety+2+p500,493,377,699368887,10365,0 +17512,Lord+Arsey+KING,596,591,848956513,9773,0 +17513,VN+Sylph,473,375,699883079,9559,0 +17514,609%7C428+Wioska+barbarzy%C5%84ska09,609,428,6822957,9304,0 +17515,yogi,541,627,2808172,10019,0 +17516,003,629,511,699139964,2460,0 +17518,A0177,372,475,8841266,10362,0 +17519,Zeta+Reticuli+S,407,403,699323302,11691,0 +17520,Darma,426,394,356642,9835,0 +17521,%3D035%3D+Wioska+barbarzy%C5%84ska,622,551,3781794,8871,0 +17523,Wioska+barbarzy%C5%84ska,375,530,849030226,10954,0 +17524,Pobozowisko,395,583,699513260,10797,0 +17525,Westcoast.032,388,436,848918380,10178,0 +17526,016Niespodziewanka,457,627,698620694,9206,0 +17527,Wioska+barbarzy%C5%84ska,632,523,6510480,7272,0 +17528,007,585,404,849064752,10311,0 +17529,Westcoast.038,395,420,848918380,10178,0 +17530,B019,631,501,9314079,9821,0 +17531,611%7C427+Wioska+barbarzy%C5%84ska06,611,427,6822957,9913,0 +17532,.TO+NIE+DLA+SOSU,414,549,698971484,9933,0 +17533,Sony+911,577,608,1415009,10206,0 +17534,A004,522,367,699208929,10292,0 +17535,yyyy,500,368,699883079,10028,0 +17536,0139,449,379,699431255,10019,0 +17537,Piwna+10,612,435,699812007,9492,0 +17538,FB001,634,494,9314079,9835,0 +17539,Zeta+Reticuli+S,401,411,699323302,11550,0 +17540,106+Wioska+barbarzy%C5%84ska,599,417,699491076,9051,0 +17542,015+Wioska,631,469,699671454,8723,0 +17543,A29+MARUDER+stolica,462,629,849037407,11321,0 +17544,Kentin+ufam+Tobie,381,439,699783765,10000,0 +17545,Kentin+ufam+Tobie,370,454,699783765,10000,0 +17546,Jaaa,616,444,698635863,10381,0 +17547,ADEN,521,382,698588535,10228,0 +17548,z+045,581,606,699342219,10262,0 +17549,.048.,496,367,698489071,10393,0 +17550,Wioska+barbarzy%C5%84ska,509,366,699368887,9994,0 +17551,063,367,512,6853693,10289,6 +17552,MojeSzczytToTw%C3%B3jDno,528,368,828637,10495,0 +17553,Part+XXX,540,373,698350371,10495,0 +17554,092.+Favianis,615,437,849091866,8587,0 +17555,G001,573,609,8627359,9337,0 +17556,034,592,405,849064752,10311,0 +17557,.046.,487,371,698489071,10503,0 +17558,B+010,594,408,6384450,10362,0 +17559,609%7C423+011+FRANKIA,609,423,6822957,9953,0 +17560,VN+Beyond+Netero,458,374,699883079,9640,0 +17561,C+005,579,394,6384450,8959,0 +17562,VN+Meruem,495,363,699883079,10375,0 +17563,027,482,373,849010255,8509,0 +17564,.000.,496,381,698489071,10301,0 +17565,yyy,495,370,699883079,10068,0 +17567,036,585,397,1424656,9269,0 +17568,A004,615,442,699722599,10362,0 +17569,Wioska+barbarzy%C5%84ska,616,556,7047342,10487,0 +17570,Wioska+barbarzy%C5%84ska,624,540,8970390,2661,0 +17571,Westcoast.087,387,427,848918380,10178,0 +17572,-042-,385,568,9167250,8572,0 +17573,Nowa+02,615,558,698702991,9818,0 +17574,SSJ+031,507,632,699054373,9761,0 +17575,Golf,611,566,699737356,9808,0 +17576,084,480,368,698739350,10237,0 +17577,017+KTW,625,452,848883237,10495,0 +17578,0141,432,384,699431255,6656,0 +17579,040-+Mroczna+Osada,616,434,849035905,12154,0 +17580,A016,474,632,699383279,9899,0 +17581,014+Harrenhal,608,571,699272880,10403,0 +17582,093,451,620,849084985,10437,0 +17583,014,374,539,6853693,5793,0 +17584,mklo,501,367,828637,10338,0 +17585,Sony+911,577,611,1415009,10212,0 +17586,Kentin+ufam+Tobie,369,459,699783765,10000,0 +17587,A31+MARUDER+XD,463,628,849037407,9805,0 +17588,001.+Wioska+Orka,489,619,699494488,10495,0 +17589,Zeta+Reticuli+S3,426,391,699323302,10887,0 +17590,A002,628,487,9314079,9835,0 +17591,0007+MzM,620,551,698416970,9258,1 +17592,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,625,8201460,10237,0 +17593,A0291,368,498,8841266,10362,0 +17594,C+021,581,394,6384450,8916,0 +17595,004,497,629,699878511,10160,0 +17596,Szlachcic,387,472,6258092,10160,0 +17597,Wioska,379,552,849084005,10178,0 +17598,Westcoast.027,389,428,848918380,10178,4 +17599,Wioska+barbarzy%C5%84ska,563,386,699072129,10094,0 +17600,Wioska+barbarzy%C5%84ska,376,462,3698627,9867,0 +17601,Szlachcic+009,624,537,698562644,10311,0 +17602,025,480,372,849010255,6643,0 +17603,007,499,630,699878511,10141,1 +17604,MojeSzczytToTw%C3%B3jDno,502,369,828637,10338,0 +17605,Jaaa,616,441,698635863,10247,0 +17606,Dewej+na+hebel+Maryla,376,450,699711723,4789,0 +17607,Wioska+barbarzy%C5%84ska,546,377,1990750,10068,0 +17608,Horyzont+zdarze%C5%84,537,610,7581876,10019,0 +17609,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,625,7589468,8825,0 +17610,aaaa,480,632,6948793,10068,0 +17611,612%7C427+Wioska+barbarzy%C5%84ska01,612,427,6822957,9882,0 +17612,amonka,525,370,828637,10476,9 +17613,012+barbarzy%C5%84ska,611,565,9238175,9853,0 +17614,Kentin+ufam+Tobie,385,446,699783765,10000,0 +17615,Pobozowisko,399,581,699513260,10957,0 +17616,PIERWSZY+KUZYN+W+KOSMOSIE,521,629,698704189,8264,0 +17617,Wioska+barbarzy%C5%84ska,440,383,849027025,9204,0 +17618,003,446,622,849084985,10211,0 +17619,015+KTW,622,449,848883237,10495,0 +17620,0005,623,527,6510480,10336,0 +17621,020+Co+si%C4%99+sta%C5%82o+z+p.+Witczakiem,628,468,699272633,10484,0 +17622,Kentin+ufam+Tobie,377,445,699783765,10000,3 +17623,Pobozowisko,399,587,699513260,10945,0 +17624,Wioska+barbarzy%C5%84ska,373,468,3698627,9971,0 +17625,Westcoast.089,385,431,848918380,10178,0 +17626,%5B046%5D,630,522,698305474,3351,0 +17628,Wioska+barbarzy%C5%84ska,573,392,3600737,8364,0 +17629,%5B0073%5D......,413,398,8630972,10495,0 +17630,VN+Yami+Sukehiro,470,373,699883079,9568,0 +17631,015,555,380,1424656,9953,0 +17632,.achim.,527,453,6936607,7199,0 +17633,WE+ARE+READY,593,405,1553947,10019,0 +17634,.achim.,515,386,6936607,10290,0 +17635,Jan+018-12+P%C5%82n+K,632,495,879782,9496,0 +17636,Knowhere,370,503,699723284,10452,0 +17637,A0121,370,478,8841266,10362,0 +17638,C019+Port+Hope,619,563,8096537,9750,0 +17639,001,505,377,849010255,10019,0 +17640,Jednak+wol%C4%99+gofry,486,633,6180190,8274,0 +17641,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,628,1434753,10068,0 +17642,048,371,540,8908002,7195,0 +17643,B021,632,498,9314079,9894,0 +17644,050,475,368,698739350,10237,0 +17645,Lord+Arsey+KING,595,591,848956513,10285,0 +17646,014+Palma+de+Mallorca,630,512,849093875,8598,0 +17647,Kentin+ufam+Tobie,383,439,699783765,10000,0 +17648,Kentin+ufam+Tobie,374,457,699783765,10000,0 +17649,096,444,620,849084985,9793,0 +17650,024,556,377,1424656,9797,0 +17651,046,479,628,699336777,9902,0 +17652,39+im+Akimowa,596,406,849037469,9809,0 +17653,028,476,630,699336777,9825,0 +17654,Piwna+02,613,438,699812007,8888,0 +17655,Jaaa,601,587,698635863,10479,0 +17656,FA001,632,491,9314079,9816,9 +17657,Pobozowisko,407,590,699513260,8277,0 +17658,Wioska+%28023%29,634,491,698232227,9411,0 +17659,s6+Wioska+barbarzy%C5%84ska,398,415,7462660,10068,0 +17660,Hel+01,613,564,698702991,9821,0 +17661,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,631,8201460,10237,0 +17662,_PUSTA,633,498,849014413,10093,0 +17663,Ulu-mulu,421,601,699697558,6203,0 +17664,.022.,486,371,698489071,10728,0 +17665,z+042,579,605,699342219,10479,0 +17666,VN+Charlotte+Roselei,469,374,699883079,9629,0 +17667,MojeSzczytToTw%C3%B3jDno,525,369,828637,10481,0 +17668,Brat447,387,499,699262350,10481,0 +17669,z+048,581,607,699342219,10385,0 +17670,A+READY,589,400,699759128,10495,0 +17671,HORUS%21,519,629,7756002,9955,0 +17672,B+005,594,404,6384450,10362,0 +17673,Wioska+barbarzy%C5%84ska,486,362,699658023,7228,0 +17674,Piwna+14,615,434,699812007,8056,0 +17675,Kaer+Morhen,478,369,699658023,9744,0 +17676,Twierdza+1,637,470,848935020,10273,0 +17677,131,592,409,849064752,10311,0 +17678,Wioska+Krz40,417,604,699657242,2932,0 +17679,Szlachcic+P%C3%B3%C5%82noc+001,632,505,698562644,10311,0 +17680,033.,615,479,8900955,10083,0 +17681,MojeSzczytToTw%C3%B3jDno,521,372,828637,10479,0 +17682,009,609,576,699099811,9835,0 +17683,012.+Chomo+Lonzo,603,580,1601917,10495,0 +17684,Jaaa,607,580,698635863,10495,0 +17685,Konfederacja,455,373,848915730,9682,0 +17686,019,372,525,6853693,5489,0 +17687,007,375,539,6853693,10559,0 +17688,012+KTW,624,448,848883237,10495,0 +17689,mklo,536,373,828637,9737,0 +17690,Wioska+barbarzy%C5%84ska,619,549,7047342,10475,0 +17691,Ulu-mulu,418,602,699697558,8637,0 +17692,007.+A-RE-SE-EY,575,527,848967710,10252,0 +17693,007,616,568,848899726,7166,0 +17694,052+OZDR,477,631,699336777,10259,0 +17695,019,472,628,699336777,9825,0 +17696,MojeSzczytToTw%C3%B3jDno,515,371,828637,10474,0 +17697,018.,633,512,849094609,9827,0 +17698,Westcoast.035,388,435,848918380,10178,0 +17699,-+325+-+RR,587,599,849018239,9712,0 +17700,Ulu-mulu,421,608,699697558,5085,0 +17701,A0201,370,473,8841266,10362,0 +17702,11.+Sarah,524,626,8199417,10495,0 +17703,007.,565,614,873575,10203,0 +17704,WE+ARE+READY%21,590,406,1553947,9771,0 +17705,Westcoast.006,384,436,848918380,10178,0 +17706,030,373,538,6853693,5843,0 +17707,Gattacka,605,421,699298370,9355,0 +17708,Dum+Spiro+Spero,494,559,848896948,12130,0 +17709,-+333+-+RR,587,601,849018239,9635,0 +17710,023.+Wioska+barbarzy%C5%84ska,569,389,699799629,10495,0 +17711,%3D019%3D+Wioska+barbarzy%C5%84ska,623,552,3781794,10580,0 +17712,Sony+911,576,611,1415009,10209,2 +17714,Pobozowisko,388,584,699513260,10801,0 +17715,Wioska+barbarzy%C5%84ska,420,394,699402816,9835,0 +17716,009,498,633,699878511,10139,0 +17717,Ulu-mulu,425,606,699697558,11678,0 +17718,%3A%3A%3A+B+%3A%3A%3A,364,474,848917570,6144,0 +17719,020,431,390,699783765,11130,0 +17720,MojeSzczytToTw%C3%B3jDno,529,375,828637,10495,0 +17721,Kentin+ufam+Tobie,377,450,699783765,10000,0 +17722,B013,596,407,699761749,10495,0 +17723,38+im+Kadyrowa,595,406,849037469,7848,0 +17724,149+Ale+mnie+g%C5%82%C3%B3wka+boli,383,565,699382126,10115,0 +17725,A0138,368,479,8841266,10362,0 +17726,Westcoast.064,387,426,848918380,10178,0 +17727,Wioska+barbarzy%C5%84ska,561,381,699072129,10223,0 +17729,B009,629,488,9314079,9819,0 +17730,Bagdad,476,379,8847546,10654,0 +17731,A0309,370,515,8841266,10362,0 +17732,s181eo27,379,457,393668,10336,0 +17734,A003,517,369,699208929,10047,0 +17735,046,369,522,6853693,10495,0 +17736,021.,568,615,873575,9913,0 +17737,005,555,619,698659980,10019,0 +17738,MojeSzczytToTw%C3%B3jDno,506,371,828637,10338,0 +17739,a+mo%C5%BCe+off+%3F+%3A%29,595,586,698768565,10211,0 +17740,018.,569,615,873575,9866,0 +17741,610%7C424+001Legatus,610,424,6822957,9882,4 +17742,Westcoast.088,385,430,848918380,10178,0 +17743,%5B025%5D,635,513,698305474,9809,0 +17744,Wioska+barbarzy%C5%84ska,483,370,699658023,9616,0 +17745,065+OZDR,461,627,699336777,9825,0 +17746,005,362,517,698641566,9809,0 +17747,Wioska,380,553,849084005,10178,0 +17748,A+READY,596,413,1553947,10160,6 +17749,Feed+me+more+009,494,374,699756210,10444,0 +17750,Wioska+barbarzy%C5%84ska,423,392,699402816,10178,0 +17751,A0204,366,479,8841266,10362,0 +17752,16+Przeb%C3%B3j+nocy,628,520,9314079,6026,0 +17753,-+326+-+RR,584,600,849018239,10045,0 +17754,Taran,552,378,699170684,9364,0 +17755,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,629,8201460,10237,0 +17756,Nowa+11,613,565,698702991,9821,0 +17757,CALL+1067,557,618,699784536,10495,8 +17758,A0159,367,476,8841266,10362,0 +17759,Brat447,368,496,699262350,10481,0 +17760,018.,573,388,699799629,10495,0 +17761,Zakrecona+4,574,605,8627359,8819,0 +17762,mklo,540,374,699869682,8319,0 +17763,065,436,618,849084985,9989,0 +17764,Brat447,369,513,699262350,9733,0 +17765,035,570,390,849064752,10311,9 +17766,008,375,537,6853693,10495,0 +17767,A+READY,590,403,1553947,10252,0 +17768,Kentin+ufam+Tobie,380,450,699783765,10000,0 +17769,044+Warszawa,633,508,7092442,10495,0 +17770,A0002,387,473,8841266,10362,0 +17771,kathare,545,621,873575,9915,0 +17772,Wioska+barbarzy%C5%84ska,618,558,7047342,10479,0 +17773,071+OZDR,469,630,699336777,10495,0 +17774,Port,578,610,8627359,9174,0 +17776,008.,626,540,6520732,9835,0 +17777,SSJ+024,511,631,699054373,9761,0 +17778,027,599,592,698999105,10311,0 +17779,Wioska+barbarzy%C5%84ska,400,416,7462660,9980,0 +17780,D029+Iwa,598,592,8096537,9745,0 +17782,Wioska+barbarzy%C5%84ska,423,391,699402816,9579,0 +17783,Vasperland_008,628,516,7047342,10954,5 +17784,Nowa+05,615,566,698702991,9815,0 +17785,South+K35,559,379,699146580,10042,0 +17786,Brat447,374,493,699262350,10495,0 +17787,007.,627,538,6520732,9761,0 +17789,017,627,545,8428196,9859,0 +17790,060,366,511,6853693,9753,0 +17792,MojeSzczytToTw%C3%B3jDno,527,371,828637,10475,0 +17793,Foxtrot,612,567,699737356,8782,0 +17794,MojeSzczytToTw%C3%B3jDno,522,369,828637,10474,0 +17795,K34+x009,443,379,698364331,8365,0 +17796,Wioska+barbarzy%C5%84ska,545,374,1990750,10068,0 +17798,011.,566,613,873575,10280,0 +17799,So%C5%82tys+Twojej+Wsi,434,388,849027025,9297,0 +17800,Wioska+barbarzy%C5%84ska,372,537,849030226,6920,0 +17801,Kentin+ufam+Tobie,369,460,699783765,10000,0 +17802,19+Na+audiencji,630,521,9314079,4035,0 +17803,Westcoast.061,387,431,848918380,10178,0 +17804,Part+XXVIII,539,373,698350371,10237,0 +17805,A0157,360,483,8841266,10362,0 +17806,013+Tyria,612,571,699272880,10391,0 +17807,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,629,8201460,10237,0 +17808,Zach%C3%B3d+-+006,395,578,225023,10495,0 +17809,07+im+Jakira,597,428,849037469,9809,0 +17810,047,368,524,6853693,5845,0 +17811,0423,562,619,698659980,8502,0 +17812,Wioska+barbarzy%C5%84ska,481,368,699658023,9647,0 +17813,Westcoast.085,386,429,848918380,10178,0 +17814,Wioska+%28017%29,619,557,698232227,9834,0 +17815,067+OZDR,458,625,699336777,9627,0 +17816,RTS,572,613,848995242,10495,0 +17817,Dawanie+w+szyje,415,605,9060641,10209,0 +17818,014.+Barbarzy%C5%84ska+Osada,568,385,699799629,10495,0 +17819,010,479,589,7976264,10100,0 +17820,036,366,520,6853693,6344,0 +17821,Wioska+syisy,483,363,699658023,9740,0 +17822,Gattacka,606,417,699298370,9745,0 +17823,Kentin+ufam+Tobie,379,440,699783765,10000,0 +17824,Nowa+10,614,563,698702991,9821,0 +17825,Knowhere,389,514,699723284,10452,0 +17826,A0089,366,490,8841266,10362,0 +17827,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,632,8201460,10237,0 +17828,Jednak+wol%C4%99+gofry,487,633,6180190,10036,0 +17830,Mzm10,628,524,7142659,10495,0 +17831,%5B0084%5D,413,401,8630972,10495,0 +17832,086,599,570,699373599,9739,0 +17833,%5B045%5D,632,522,698305474,4383,0 +17834,%2A4609%2Aa+Patagonia,634,496,7973893,10287,0 +17835,608%7C424+Wioska+barbarzy%C5%84ska15,608,424,6822957,9793,0 +17836,008+Wioska+barbarzy%C5%84ska,532,372,699854484,10178,0 +17837,Wioska+barbarzy%C5%84ska,372,469,3698627,9870,0 +17838,Westcoast.021,382,438,848918380,10178,3 +17839,C008+Yalahar,622,565,8096537,9902,0 +17840,SSJ+035,515,631,699054373,9761,0 +17841,Gravity,409,452,698962117,9758,0 +17842,Wioska+barbarzy%C5%84ska,423,394,699402816,9835,0 +17843,046+Kurka+w%C3%B3dka,411,557,699382126,9925,0 +17844,Wioska+barbarzy%C5%84ska,420,398,699402816,9835,0 +17845,022,623,542,8428196,9750,0 +17846,A0075,366,498,8841266,10362,9 +17847,Og%C3%B3rkowy+baron,403,409,356642,9835,0 +17848,SSJ+013,511,632,699364813,9737,0 +17850,Szlachcic+010,625,537,698562644,10311,0 +17851,Jaaa,598,593,698635863,10476,4 +17852,0002+Wiocha,424,612,9060641,10544,0 +17853,0018+Bezimienna,421,604,9060641,7901,0 +17854,Zach%C3%B3d+-+011,391,579,225023,7831,0 +17855,017+Wioska,632,471,699671454,8089,0 +17856,Wioska+barbarzy%C5%84ska,546,374,1990750,10068,0 +17857,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,635,6948793,10001,0 +17859,RTS+17,570,612,848995242,10342,0 +17860,Witam+w+wietnamie,415,551,698971484,10008,0 +17861,Westcoast.007,381,436,848918380,10178,0 +17862,KIELBA+092,459,626,699342219,10221,0 +17863,026,630,525,699413040,9860,0 +17864,026+%7C+PALESTINA,633,503,9228039,9544,0 +17865,005,549,394,1424656,9902,0 +17866,Jaaa,616,442,698635863,10479,0 +17867,052,433,382,698364331,5270,0 +17868,WE+ARE+READY%21,592,406,1553947,9889,0 +17869,Konfederacja+%2B,456,373,848915730,9801,7 +17870,0051,629,532,6510480,9683,0 +17871,D011,596,412,699761749,9324,0 +17872,Hel+03,614,564,698702991,9744,0 +17873,Sony+911,579,608,1415009,10214,0 +17874,MasteroN+08,567,446,699379895,10495,0 +17875,0148,551,620,698659980,10160,0 +17876,006,564,616,699189792,9804,0 +17878,012,494,630,699336777,9825,0 +17880,%23025+A,457,623,698585370,9727,0 +17881,A0178,367,477,8841266,10362,0 +17882,Deor%2C+kaj+si%C4%99+pchosz%3F,629,470,699545762,3388,0 +17883,083,438,615,849084985,8113,0 +17884,Lord+Lord+Franek+.%23016,550,378,698420691,9957,0 +17885,MojeSzczytToTw%C3%B3jDno,505,369,828637,10338,0 +17886,Pobozowisko,396,585,699513260,10955,0 +17887,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,635,6180190,9936,0 +17888,0058,560,621,698659980,10083,0 +17889,Wioska,381,552,849084005,10178,0 +17890,sony911,568,610,1415009,10218,0 +17891,Deor+czuje+dym+%3B-%29,628,474,699545762,5645,0 +17892,Kentin+ufam+Tobie,377,455,699783765,10000,0 +17894,020,555,378,1424656,9887,0 +17895,Westcoast.094,392,418,848918380,10178,0 +17896,00000A,376,461,3698627,10690,0 +17897,Westcoast.037,397,417,848918380,10178,0 +17898,NWO,376,532,849030226,10971,0 +17899,Wioska+barbarzy%C5%84ska,543,374,1990750,10068,0 +17900,A0108,363,488,8841266,10362,0 +17901,002+B,622,447,699718269,9735,0 +17902,Wioska+barbarzy%C5%84ska,373,456,3698627,9962,0 +17903,Pobozowisko,393,578,699513260,10971,0 +17904,Zeta+Reticuli+S,399,410,699323302,11321,0 +17905,0046,447,375,699431255,10311,0 +17906,Gattacka,606,424,699298370,9589,0 +17907,031,633,519,699413040,9860,0 +17908,Brat447,369,516,699262350,10134,5 +17909,.031.,489,378,698489071,10393,0 +17910,R-01,560,384,3600737,9013,0 +17911,049,371,538,8908002,5638,0 +17912,009+Wioska+barbarzy%C5%84ska,535,371,699854484,10068,0 +17913,%23+Szymi+4,390,545,699425709,9873,0 +17914,022.xxx,454,623,698143931,10045,0 +17915,MojeSzczytToTw%C3%B3jDno,521,366,828637,10495,0 +17916,C+015,579,397,6384450,9426,0 +17917,Wioska+Pog%C3%B3rze+1,628,535,698562644,10311,0 +17918,Wa%C5%82cz,394,577,698769107,9702,0 +17919,Bagdad,492,364,8847546,10040,0 +17920,%230018,520,634,699728159,7888,0 +17921,Horyzont+zdarze%C5%84,520,527,7581876,10019,0 +17922,Zeta+Reticuli+S,406,406,699323302,10728,0 +17923,.024.,485,369,698489071,10316,0 +17924,0031,625,535,6510480,9982,0 +17925,A0090,368,487,8841266,10362,0 +17926,Zeta+Reticuli+S,401,408,699323302,11188,0 +17927,013+-+Vigo,634,487,698342159,10019,0 +17928,MojeSzczytToTw%C3%B3jDno,512,365,828637,10495,0 +17929,Szlachcic+P%C3%B3%C5%82noc+003,630,510,698562644,10311,0 +17931,097.+Kirlan,626,465,8337151,11678,0 +17932,126+im+Gribowa,602,411,699491076,9379,6 +17933,Wioska,379,554,849084005,8444,0 +17934,A+READY,589,401,699759128,10252,0 +17935,Pobozowisko,407,598,699513260,9537,0 +17936,Belvedere+018,585,400,699756210,9998,0 +17937,Darmowe+przeprowadzki,435,618,848935389,8844,0 +17938,Gattacka,607,418,699298370,9042,0 +17939,%230011,549,626,1536231,10495,0 +17940,BoOmBaa..,441,382,6169408,6900,0 +17941,FB006,629,493,9314079,9827,0 +17942,A0091,364,491,8841266,10362,0 +17943,Wioska+032,604,582,848971079,9761,0 +17944,Wioska,382,527,849084005,10178,0 +17945,014+Wioska+barbarzy%C5%84ska,540,370,699854484,10178,0 +17946,089.,634,489,849094609,9229,0 +17947,004,404,542,699425709,9873,0 +17948,016+Wymi%C4%99k%C5%82em+w+hu11,626,459,699272633,10711,0 +17949,088+LUDZI+CA%C5%81A+MASA,407,557,699382126,10074,0 +17950,Wioska+%28021%29,620,440,698232227,9786,0 +17951,036%7C,622,552,8000875,10143,4 +17952,032,369,532,698641566,9809,0 +17953,007,554,400,699761749,10495,0 +17954,Wioska+barbarzy%C5%84ska,601,414,1990750,10068,0 +17955,A-002,412,397,8419570,10654,0 +17956,033,472,630,699336777,9902,0 +17957,B032,634,512,9314079,9824,0 +17958,Wioska,380,551,849084005,10178,0 +17959,018,496,630,699878511,10143,0 +17960,024,591,600,698999105,10311,0 +17961,Pobozowisko,412,599,699513260,10765,0 +17962,A+READY,586,395,699759128,10237,0 +17963,Zeta+Reticuli+S,408,402,699323302,10997,0 +17964,615%7C429+Wioska+barbarzy%C5%84ska02,615,429,6822957,9569,0 +17965,022,474,631,699336777,9825,0 +17966,Gattacka,590,492,699298370,9537,0 +17967,616%7C429+Wioska+barbarzy%C5%84ska07,616,429,6822957,9609,0 +17968,Zeta+Reticuli+S,410,406,699323302,10838,0 +17969,Nowa+07,615,570,698702991,9835,0 +17970,051,471,368,698739350,10259,0 +17971,Deor%2C+dej+na+luz,627,475,699545762,4059,0 +17973,Westcoast.039,399,419,848918380,10178,0 +17976,Kentin+ufam+Tobie,375,450,699783765,10000,0 +17977,070+OZDR,473,631,699336777,9825,0 +17978,123,493,369,699761749,10261,0 +17979,Westcoast.022,389,433,848918380,10178,0 +17980,estadio,400,414,698971484,10008,0 +17981,Darma,417,392,356642,9273,0 +17982,Wioska+barbarzy%C5%84ska,404,409,698971484,10008,0 +17983,Wioska+Czerwonacki+Magnat,423,389,699402816,10311,0 +17984,A0179,368,476,8841266,10362,0 +17985,021,628,528,699413040,10030,0 +17986,Konfederacja+%2B,457,374,848915730,9761,0 +17987,Pobozowisko,408,599,699513260,10821,0 +17988,Wioska+barbarzy%C5%84ska,372,455,3698627,10205,0 +17989,WE+ARE+READY%21,594,403,1553947,10019,0 +17990,Ulu-mulu,417,602,699697558,9077,0 +17991,s181eo28,382,459,393668,10611,0 +17992,Jaaa,595,589,698635863,10478,0 +17993,Asgard,539,372,1990750,10068,0 +17994,Wioska+barbarzy%C5%84ska,523,630,7756002,9888,0 +17995,083.+G%C3%B3ry+Dziel%C4%85ce,626,462,8337151,11911,0 +17996,Ulu-mulu,431,615,699697558,10869,0 +17997,Jaaa,617,443,698635863,10063,0 +17998,%230017,546,627,1536231,10495,0 +17999,B10,411,555,698971484,10008,0 +18000,Wioska,372,542,849084005,9383,0 +18001,Jesion,370,506,699265922,9825,0 +18002,D008,602,413,699761749,10495,0 +18003,024+aaaa+pozdro+600,630,462,699272633,9312,0 +18004,VN+Fanzell+Kruger,463,371,699883079,9599,0 +18005,BoOmBaa..,442,379,6169408,3723,0 +18006,Piwna+03,612,434,699812007,9437,3 +18007,023.,632,504,849094609,9824,0 +18008,%5B024%5D,632,514,698305474,9809,0 +18009,69.+Wioska+69,386,570,849091769,3699,0 +18010,Nowa+19,618,567,698702991,9750,0 +18011,E+003,595,593,8078914,10093,0 +18012,yyyy,495,364,699883079,10375,1 +18013,068,439,618,849084985,9847,0 +18014,614%7C426+002Legatus,614,426,6822957,9841,0 +18015,Kozio,564,383,699072129,10495,0 +18016,Rze%C5%BAnia,383,432,1746216,8615,0 +18018,Wioska+barbarzy%C5%84ska,391,572,698526036,6415,0 +18019,Novigrad,478,370,699658023,9756,0 +18020,R008,390,575,8607734,10083,0 +18021,Wioska+barbarzy%C5%84ska,372,464,699523631,10476,0 +18022,Wioska+barbarzy%C5%84ska,578,391,699146580,6678,0 +18023,010+Opowiem+Wam+bajeczk%C4%99,377,555,699382126,10475,0 +18024,Wioska,373,543,849084005,10178,0 +18025,Pobozowisko,397,588,699513260,10966,0 +18026,Westcoast.036,394,423,848918380,10178,0 +18027,Kentin+ufam+Tobie,376,446,699783765,10000,0 +18028,%5B0076%5D,417,398,8630972,10495,0 +18029,SSJ+048,505,634,699054373,9653,0 +18030,Yyyy,499,368,699883079,10132,0 +18031,061+Pot%C4%99%C5%BCny+Dzban,381,564,699382126,10476,0 +18032,E+008,592,594,8078914,9939,0 +18033,Lipa,368,507,699265922,9752,0 +18035,40001,487,631,848915531,11130,0 +18036,005,501,625,699878511,10143,0 +18037,026,595,597,698999105,10311,0 +18038,C013,578,392,699761749,6724,0 +18039,616%7C424+006+P%C5%82yta+Red%C5%82owska,616,424,6822957,9882,0 +18040,Kentin+ufam+Tobie,385,440,699783765,10000,0 +18041,K34+-+%5B082%5D+Before+Land,458,375,699088769,6316,0 +18042,056,608,583,698786826,10226,0 +18043,Zach%C3%B3d+-+010,390,572,225023,7287,0 +18044,015,442,622,849084985,9724,0 +18045,K44+x036,404,404,698364331,9150,1 +18047,WE+ARE+READY%21,587,397,699759128,10362,0 +18048,ChceszPokojuSzykujSi%C4%99DoWojny,459,513,699333701,9687,0 +18049,R001,386,574,8607734,10495,0 +18050,Pobozowisko,398,584,699513260,9995,0 +18051,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,482,634,6948793,9510,0 +18052,018,557,378,1424656,9607,0 +18053,Wioska+So%C5%82tys+ca%C5%82ej+wsi,439,394,849027025,9899,0 +18054,Wioska+Pog%C3%B3rze+2,627,535,698562644,10311,0 +18055,Westcoast.042,383,436,848918380,10178,0 +18056,042+Takaoka,629,486,7092442,10495,0 +18057,R009,389,576,8607734,10019,0 +18058,Bagdad,500,365,8847546,9976,0 +18059,0062,459,368,699431255,9972,0 +18060,012,600,590,699316421,10273,0 +18062,Wioska+033,604,587,848971079,9761,0 +18063,009.+Velen,565,383,699799629,10415,0 +18064,Wioska+barbarzy%C5%84ska,392,573,699621601,5263,0 +18065,%230007,548,627,1536231,10495,0 +18066,Kentin+ufam+Tobie,382,444,699783765,10000,0 +18067,Wioska+barbarzy%C5%84ska,520,628,7756002,9885,0 +18068,019.+Massilia,625,458,849091866,9428,0 +18069,%5B019%5D,625,543,698305474,9809,0 +18071,%5B013%5D+Akeno+Misaki,481,369,699658023,10140,0 +18072,Westcoast.071,392,423,848918380,10178,0 +18074,SSJ+003,513,631,699364813,9737,0 +18075,007+KTW,626,451,848883237,10495,0 +18076,BoOmBaa..xd,439,379,6169408,7738,0 +18077,Kentin+ufam+Tobie,376,447,699783765,10000,0 +18078,014+B,624,453,556154,9172,0 +18079,090,440,615,849084985,4152,0 +18080,082,479,367,698739350,10237,0 +18081,Wioska,376,542,849084005,10178,0 +18082,Lolita,368,528,849030226,7453,0 +18083,A+READY,588,397,699759128,10237,0 +18084,0090,444,407,699431255,9835,0 +18085,Wioska+7,634,481,848935020,6827,0 +18087,Pobozowisko,382,578,699513260,10971,0 +18088,022.,633,511,849094609,9814,0 +18090,012+B,621,447,699718269,8643,0 +18092,Bagdad,495,368,8847546,9976,0 +18093,002.+Nottingham,448,378,698364331,9898,0 +18094,050,369,534,8908002,5523,0 +18095,A08+Wioska+barbarzy%C5%84ska,467,631,849037407,10220,0 +18096,046+Krak%C3%B3w,634,509,7092442,10495,0 +18097,Kentin+ufam+Tobie,383,442,699783765,10000,0 +18098,yyyy,497,361,699883079,10108,0 +18099,A0129,371,482,8841266,10362,0 +18100,Wioska+barbarzy%C5%84ska,435,387,849027025,9554,0 +18101,Wioska+barbarzy%C5%84ska,601,415,1990750,10068,0 +18102,0039+Andrzej+speaking,414,605,9060641,8266,0 +18103,031,368,521,6853693,5607,0 +18104,Wioska+FANBOY+Krolik14,597,522,698845189,10019,0 +18105,FB005,631,492,9314079,9816,0 +18106,Westcoast.063,387,429,848918380,10178,0 +18107,Konfederacja+%2B,456,376,848915730,9737,0 +18108,A0092,367,488,8841266,10362,0 +18109,NIERAJ02,453,622,8729672,5305,0 +18110,059,434,386,698364331,6213,0 +18111,Wioska+barbarzy%C5%84ska,372,465,699523631,10484,0 +18112,.achim.,537,391,6936607,11970,0 +18113,Pobozowisko,404,595,699513260,10954,0 +18114,A0093,367,486,8841266,10362,0 +18115,VN+Minamoto,468,373,699883079,9643,0 +18116,%230017,515,633,699728159,9761,0 +18117,-008-+K55+Storm,590,599,8096537,9747,0 +18118,%2B44+72+Lyon+Sans+Souci,424,471,698361257,9749,0 +18119,010,492,633,699336777,9825,0 +18120,KONFA+TO+MARKA%2C+NARKA,427,466,698152377,10311,0 +18121,E+009,592,598,8078914,9643,0 +18122,Pobozowisko,402,595,699513260,10955,0 +18123,055,370,529,6853693,4621,0 +18124,0006+-1-,426,609,9060641,10544,0 +18125,So%C5%82tys+Wsi+craig1,439,385,849027025,9689,0 +18126,Taran,551,376,699170684,9566,0 +18127,0012,440,379,699431255,10117,0 +18128,Taran,549,374,699170684,9440,0 +18129,Wioska+permo2x,476,374,699658023,9741,0 +18130,Piwna+13,614,435,699812007,8697,0 +18131,007+New+Episode+v1,399,413,7462660,10068,0 +18132,RTS+73,569,613,848995242,10495,0 +18133,Wioska+barbarzy%C5%84ska,420,390,699402816,9835,0 +18134,AMojeSzczytToTw%C3%B3jDno,515,370,828637,10484,0 +18135,Wioska+2,558,382,3600737,9013,0 +18136,%5B0060%5D,418,398,8630972,10495,0 +18137,020+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,622,439,9228039,9346,0 +18138,A+READY,591,401,1553947,10160,0 +18139,Plate+Partition+-+Interior,525,631,8199417,10654,0 +18140,608%7C420+Wioska+barbarzy%C5%84ska11,608,420,6822957,9457,0 +18141,RTS+4,572,611,848995242,10495,0 +18142,Ulu-mulu,421,609,699697558,9108,0 +18143,022,614,585,699099811,9835,0 +18144,Zach%C3%B3d+-+012,390,579,225023,8176,0 +18145,Taran,548,374,699170684,9452,0 +18146,034,622,443,849088515,10019,0 +18148,013.,563,615,873575,10008,0 +18149,K34+x007,445,382,698364331,8607,0 +18151,A09+Wioska+barbarzy%C5%84ska,467,632,849037407,10226,0 +18152,Wioska+barbarzy%C5%84ska,620,556,7047342,10476,0 +18153,%230015,517,635,699728159,9761,0 +18154,041+Murayama,633,469,7092442,10495,0 +18155,Kiwi+Kiwi,576,613,8627359,9151,0 +18157,A0139,368,490,8841266,10362,0 +18158,064,366,513,6853693,10495,0 +18159,BAC%C3%93WKA+%7C017%7C,631,502,7394371,12046,0 +18160,MojeSzczytToTw%C3%B3jDno,528,372,828637,10479,0 +18161,069,367,523,6853693,10495,0 +18162,Sony+911,568,611,1415009,10230,0 +18163,Grab,364,501,699265922,9825,0 +18164,Jehu_Kingdom_66,626,455,8785314,9604,0 +18165,055+Kuzyn+skonfiskowa%C5%82+Stawik,380,565,699382126,10484,0 +18166,WE+ARE+READY,594,399,1553947,8205,0 +18167,Klon,367,505,699265922,9771,0 +18168,049,375,548,6853693,9064,0 +18169,SSJ+034,511,636,699054373,9761,0 +18170,0055,561,621,698659980,10252,0 +18171,037,365,521,6853693,5699,0 +18172,%23048+Upsss,446,625,699605333,10508,0 +18173,SSJ+062,520,633,699364813,9495,0 +18174,034...strazakkk,462,368,6920960,10495,0 +18175,Pobozowisko,395,581,699513260,8154,0 +18176,0427,562,616,698659980,9745,0 +18177,VN+Fuegoleon+Vermillion,460,370,699883079,9634,0 +18178,045+Gda%C5%84sk,633,506,7092442,10495,0 +18179,061,479,389,698739350,6800,0 +18180,W.10,584,606,873575,10362,0 +18181,South+K45,593,431,699146580,10042,0 +18182,021,565,384,1424656,10160,0 +18183,Wioska+barbarzy%C5%84ska,562,379,699072129,10218,0 +18184,009+Wioska,633,473,699671454,6975,0 +18185,Brat447,368,511,699262350,7470,0 +18186,Pobozowisko,387,575,699513260,8834,0 +18187,MojeSzczytToTw%C3%B3jDno,526,371,828637,10495,0 +18188,E+005,590,598,8078914,9767,0 +18189,Nowa+18,614,574,698702991,9827,0 +18190,038,365,519,6853693,6017,0 +18191,201,636,507,849088515,10019,0 +18192,%5B0085%5D,414,400,8630972,10495,0 +18193,27.+Wioska+27,375,549,849091769,10144,0 +18194,Wioska+barbarzy%C5%84ska,370,464,699523631,10478,0 +18195,0005,583,398,699485250,10211,1 +18196,%230046,549,627,1536231,10495,0 +18197,40005,488,633,848915531,10132,0 +18198,009,561,617,699567608,9709,0 +18199,Kentin+ufam+Tobie,377,447,699783765,10000,0 +18200,%2A4609%2A+Tutaj,636,495,7973893,10287,0 +18201,PoNocyPoluj+a+gryfin+zasta+nie+m,479,633,6948793,9899,0 +18202,1.+Baraki,619,566,8096537,8959,0 +18203,MojeSzczytToTw%C3%B3jDno,534,369,828637,10287,0 +18204,0050,631,530,6510480,9395,0 +18205,Westcoast.040,382,437,848918380,10178,0 +18206,Westcoast.043,381,434,848918380,10178,0 +18207,056+OZDR,465,628,699336777,9825,0 +18208,%5B0089%5D,413,399,8630972,10495,0 +18209,MojeSzczytToTw%C3%B3jDno,508,369,828637,10495,0 +18210,E+006,594,591,8078914,9724,0 +18211,A+READY,587,395,699759128,10237,0 +18212,063+OZDR,457,628,699336777,7972,0 +18213,018+KUZYNI,471,630,699336777,10122,8 +18214,066+OZDR,460,629,699336777,9462,0 +18215,0037+W%C4%99giel,416,605,9060641,10654,0 +18216,024,503,636,699878511,10155,0 +18217,%230047,547,625,1536231,10495,0 +18218,Pobozowisko,399,584,699513260,10960,7 +18219,Mako+Reactor+1+-+B4F,522,631,8199417,9270,0 +18220,Pobozowisko,410,603,699513260,9840,0 +18221,FKG+01-28,415,401,356642,9835,0 +18222,Pobozowisko,394,582,699513260,10954,0 +18223,061+OZDR,458,627,699336777,9825,6 +18224,z+022,555,597,699342219,10478,0 +18225,%5BB%5D_%5B203%5D+Dejv.oldplyr,430,382,699380607,9027,0 +18226,Whiskey+In+The+Jar,609,578,848926293,8813,0 +18227,062+Pot%C4%99%C5%BCny+Dzban,381,561,699382126,10484,0 +18228,0004,482,635,6180190,10593,0 +18229,Pobozowisko,387,574,699513260,10971,0 +18230,Wioska+Szyderczy+promil,572,615,8627359,9122,0 +18231,017.,629,529,6520732,5197,0 +18232,Mzm19,609,529,7142659,10362,0 +18233,019.,571,388,699799629,10495,0 +18234,100,553,395,849064752,10311,0 +18235,03.+Matelanka,605,424,1990750,10068,0 +18236,608%7C419+010+FRANKIA,608,419,6822957,9989,0 +18237,A+READY,589,403,1553947,10019,0 +18238,Zeta+Reticuli+S,407,402,699323302,10997,0 +18239,015,627,546,8428196,9910,0 +18240,MojeSzczytToTw%C3%B3jDno,526,368,828637,10475,0 +18241,014,623,546,8428196,9894,0 +18242,VN+Ragnar+Lodbrok,466,370,699883079,9660,0 +18243,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,536,629,7589468,8820,0 +18245,012,631,527,699413040,9860,0 +18246,Wioska+barbarzy%C5%84ska,394,415,7462660,9901,0 +18247,0114,437,379,699431255,7561,0 +18248,128,489,365,699761749,10495,0 +18249,FAKE+OR+OFF,439,402,698231772,9915,0 +18250,A04+Wioska+barbarzy%C5%84ska,466,631,849037407,10475,0 +18251,025+KTW,627,448,848883237,7048,0 +18252,001,428,385,849027025,11130,0 +18253,WE+ARE+READY%21,592,402,1553947,9435,0 +18254,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,496,633,1434753,10068,0 +18255,Part+XXVI,537,374,698350371,10495,0 +18256,008,549,404,849064752,10311,0 +18257,018,371,525,6853693,5767,0 +18258,002,559,408,7271812,10495,0 +18259,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,626,7589468,8819,0 +18260,yogi,539,607,2808172,10019,0 +18261,Jan+012+Pln+K,631,495,879782,9630,0 +18262,A0296,364,494,8841266,10362,0 +18263,SSJ+025,506,636,699054373,9761,0 +18264,SSJ+020,511,633,699054373,9761,5 +18265,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,434,614,1434753,9557,0 +18266,052,477,369,698739350,10237,0 +18267,061,365,516,6853693,9506,0 +18268,%5B0111%5D,417,393,8630972,10495,0 +18269,Kentin+ufam+Tobie,384,438,699783765,10000,0 +18270,008+KTW,627,450,848883237,10495,0 +18271,008+Hello+Moto,604,416,699491076,10001,0 +18272,039,376,541,6853693,6817,0 +18273,020,599,589,698999105,10311,0 +18274,Wioska+barbarzy%C5%84ska,621,554,7047342,10478,0 +18276,Brat447,365,500,699262350,10235,0 +18277,614%7C432+007+1+Strona,614,432,6822957,9969,0 +18278,Zulu,613,575,699737356,7987,0 +18279,%23017.506%7C495,625,446,556154,9735,0 +18280,006,501,633,699878511,10143,0 +18281,Westcoast.062,387,438,848918380,10178,0 +18282,Wioska+barbarzy%C5%84ska,630,536,7047342,10481,0 +18283,MojeSzczytToTw%C3%B3jDno,518,367,828637,10484,0 +18284,NOT%3F,416,534,9236866,10068,0 +18285,Corneo+s+Mansion,526,632,8199417,10495,0 +18286,Wioska+barbarzy%C5%84ska,633,532,7047342,10548,0 +18287,Pobozowisko,412,598,699513260,10957,0 +18288,Pobozowisko,400,590,699513260,10952,0 +18289,0017+MzM,622,561,698416970,9258,0 +18290,0063+k,452,431,3909522,10083,0 +18291,062,364,516,6853693,10495,0 +18292,026+Daevon,611,577,699272880,10393,0 +18293,Westcoast.004,388,434,848918380,10178,0 +18294,009.,628,539,6520732,9761,0 +18295,A0122,366,484,8841266,10362,0 +18296,Gattacka,610,418,699298370,9883,0 +18297,040.+Wioska,479,635,848928624,6615,0 +18298,Zeta+Reticuli+S,405,406,699323302,11321,0 +18299,019+-+Grenada,637,489,698342159,10019,0 +18301,Wioska+029,603,581,848971079,9761,0 +18302,Westcoast.077,386,433,848918380,10178,0 +18303,Kentin+ufam+Tobie,375,446,699783765,10000,0 +18304,Gattacka,610,419,699298370,9745,0 +18305,Jaaa,581,596,698635863,10495,0 +18306,067,366,518,6853693,7253,0 +18307,010,610,576,699099811,9835,0 +18308,A+READY,596,409,1553947,10160,0 +18309,Pobozowisko,402,597,699513260,10374,0 +18310,013+B,625,450,699718269,6622,0 +18311,Zeta+Reticuli+S,402,408,699323302,11417,0 +18312,Westcoast.092,389,429,848918380,10178,0 +18313,053,476,369,698739350,10237,0 +18314,126,491,364,699761749,10495,0 +18315,054,480,367,698739350,10237,0 +18316,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,496,637,6948793,9874,0 +18317,sony911,579,607,1415009,10214,0 +18318,%23067.,626,453,556154,8948,0 +18319,Jaaa,586,600,698635863,10479,0 +18320,010,429,385,849027025,11130,0 +18321,024,370,521,6853693,5444,1 +18322,KIELBA+011,447,576,699342219,10273,0 +18323,Wioska+barbarzy%C5%84ska,371,464,699523631,10479,0 +18324,Wioska+barbarzy%C5%84ska,405,409,698971484,10008,0 +18325,Westcoast.008,387,436,848918380,10178,0 +18326,063+Pot%C4%99%C5%BCny+Dzban,378,560,699382126,10478,0 +18327,006.+Requiem,627,542,254937,9788,0 +18328,Wioska+barbarzy%C5%84ska,421,396,699402816,9835,0 +18329,Pobozowisko,407,595,699513260,10487,0 +18330,A0133,371,478,8841266,10362,0 +18331,Ulu-mulu,424,614,699697558,9646,0 +18332,.049.,494,363,698489071,10503,0 +18333,043,475,367,698739350,10237,0 +18334,614%7C430+Wioska+barbarzy%C5%84ska14,614,430,6822957,9299,0 +18335,mklo,536,367,828637,10471,0 +18336,Horyzont+zdarze%C5%84,558,624,7581876,9835,0 +18337,VN+Xerx+Lugner,468,367,699883079,9380,0 +18338,Kentin+ufam+Tobie,378,437,699783765,10000,0 +18339,023,436,487,699510259,9861,0 +18340,A0212,366,495,8841266,10362,0 +18341,Kentin+ufam+Tobie,377,443,699783765,10000,9 +18342,Knowhere,364,522,699723284,10452,0 +18343,C013+Venore,622,562,8096537,9740,0 +18344,siedze+na+tronie,572,610,848995242,10495,0 +18345,Ulu-mulu,428,614,699697558,8778,0 +18346,Lima,612,574,699737356,8783,0 +18347,Kentin+ufam+Tobie,379,442,699783765,10000,0 +18348,C007+Jotunheim,619,562,8096537,7803,0 +18349,013,600,589,699316421,9011,0 +18350,Kentin+ufam+Tobie,379,447,699783765,10000,0 +18351,z+049,582,605,699342219,10481,0 +18352,%2A0033+Baraki,618,439,8459255,9048,0 +18353,VN+Secre+Swallowtail,469,371,699883079,9615,0 +18354,B+008,596,410,6384450,10362,5 +18355,Pobozowisko,391,581,699513260,10971,0 +18356,Wioska+barbarzy%C5%84ska,422,393,699402816,9835,0 +18358,25+im+Minakowa,598,409,849037469,9809,0 +18359,12.+Kr%C3%B3l+Regis+Lucis+Caelum+CXII,530,606,8199417,10495,0 +18360,Westcoast.076,391,426,848918380,10178,0 +18361,Wioska+barbarzy%C5%84ska,629,534,7047342,10484,0 +18362,%23058.,622,441,556154,9735,0 +18363,010+Wioska+barbarzy%C5%84ska,533,372,699854484,10178,0 +18364,Pobozowisko,392,581,699513260,10957,0 +18365,A0094,365,486,8841266,10362,0 +18366,A+READY,601,412,1553947,10083,0 +18367,Piwna+23,621,435,699812007,9379,0 +18368,Zeta+Reticuli+S3,425,390,699323302,10079,0 +18369,54.+Wioska+54,376,551,849091769,10003,0 +18371,Westcoast.024,396,421,848918380,10178,0 +18372,006,447,626,849084985,10285,8 +18373,%230006,545,630,1536231,10495,0 +18374,010.+Lyria,566,385,699799629,10495,0 +18375,Wioska+barbarzy%C5%84ska,618,564,7047342,10487,0 +18376,Wioska,374,538,849084005,10178,0 +18377,0005+Kiko210,426,612,9060641,10544,0 +18378,MojeSzczytToTw%C3%B3jDno,531,366,828637,9737,0 +18379,Sony+911,578,611,1415009,10211,0 +18380,10.+Wioska+10,375,558,849091769,9584,0 +18381,%3D016%3D+Lewy+nie+trafia+Karnego,622,554,3781794,10238,0 +18382,Pobozowisko,406,598,699513260,10951,0 +18383,Wioska+barbarzy%C5%84ska,564,384,699072129,9164,0 +18385,Wioska+barbarzy%C5%84ska,375,460,3698627,9887,0 +18386,003,487,634,272173,10252,0 +18387,WE+ARE+READY%21,593,401,1553947,10019,0 +18389,SSJ+036,512,637,699054373,9761,0 +18390,064+Pot%C4%99%C5%BCny+Dzban,382,562,699382126,10479,0 +18391,Konfederacja+%2B,456,374,848915730,9734,0 +18392,13.+Wioska+13,373,554,849091769,9873,0 +18393,035,630,513,699413040,9860,0 +18394,A0095,365,492,8841266,10362,0 +18395,%230039+Bagna,494,549,9272054,10019,0 +18396,006,602,592,698786826,10211,0 +18398,Konfederacja+8,454,373,848915730,9692,0 +18399,Ja+sie+nie+bije+.,567,614,848995242,10495,0 +18401,BoOmBaa..,437,383,6169408,7980,0 +18402,003%C5%81atki,456,627,698620694,9687,0 +18403,005+B,624,449,699718269,9711,0 +18404,0001,424,404,848913037,9993,0 +18405,Zeta+Reticuli+S3,423,388,699323302,10795,0 +18406,s181eo32,389,448,393668,9883,0 +18407,R010,390,576,8607734,9676,0 +18408,Wioska+3,631,482,848935020,8168,0 +18409,Gattacka,609,418,699298370,9960,0 +18410,K34+-+%5B092%5D+Before+Land,451,374,699088769,10016,0 +18411,%230020,545,626,1536231,10495,0 +18412,0008+MzM,624,557,698416970,9258,0 +18413,%5B017%5D,626,543,698305474,9809,0 +18414,Taran,551,372,699170684,9835,0 +18415,024.+Wioska+barbarzy%C5%84ska,572,387,699799629,10495,0 +18416,South+K35,559,378,699146580,9809,0 +18417,aaaa,476,635,6948793,9899,0 +18418,Ulu-mulu,430,611,699697558,11678,0 +18419,Kentin+ufam+Tobie,378,441,699783765,10000,0 +18420,F+001,638,507,8078914,10290,0 +18422,R002,385,574,8607734,10019,0 +18423,202,637,503,849088515,6039,0 +18424,011,429,386,849027025,11106,0 +18425,026.+Alexandria,624,555,849091866,9799,0 +18426,%230014,518,636,699728159,9761,0 +18427,012,443,624,849084985,10285,7 +18428,Wioska+Herosek751,565,619,848995242,10495,0 +18429,C014,578,394,699761749,7279,0 +18430,Nowa+15,616,570,698702991,9824,0 +18431,Kentin+ufam+Tobie,377,454,699783765,10000,0 +18433,SSJ+019,507,635,699054373,9761,0 +18434,033,425,388,7462660,10836,0 +18435,%5B015%5D,629,543,698305474,9809,0 +18436,0126,436,379,699431255,9750,0 +18437,BWioska+barbarzy%C5%84ska,622,550,7047342,10487,0 +18438,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,633,8201460,10237,0 +18439,019+Osaka,636,477,7092442,10495,4 +18440,609%7C422+009+FRANKIA,609,422,6822957,10083,0 +18441,084.+Wielkie+Gard%C5%82o,631,467,8337151,10845,0 +18442,008+B,625,449,699718269,9721,0 +18443,029+Seonon,620,562,699272880,10457,0 +18444,Jednak+wol%C4%99+gofry,487,637,699725436,10067,0 +18446,052,608,586,698786826,10247,0 +18447,018,632,484,849093875,2587,0 +18448,Kentin+ufam+Tobie,378,446,699783765,10000,0 +18449,A12+Wioska+barbarzy%C5%84ska,466,633,849037407,10226,0 +18451,Wioska+barbarzy%C5%84ska,624,556,7047342,10490,0 +18452,027,637,519,699413040,9860,0 +18453,VN+Nozel+Silva,467,369,699883079,9626,0 +18454,Wioska+barbarzy%C5%84ska,560,376,699072129,10223,0 +18455,Bagdad,500,362,8847546,9976,0 +18456,Wyngiel+we+wsi,566,382,699170684,5223,0 +18458,010,497,632,699878511,10140,0 +18459,057+OZDR,460,626,699336777,10104,0 +18460,A0294,365,498,8841266,10362,0 +18461,069,434,618,849084985,6963,0 +18462,VN+Julius+Novachrono,468,369,699883079,9667,0 +18463,004,447,624,849084985,10285,1 +18464,0023,504,502,698599365,8311,0 +18465,085.,635,523,849094609,4560,0 +18466,Wioska,378,550,849084005,10178,9 +18467,035,632,482,849006412,6153,0 +18468,046,369,541,8908002,4601,0 +18469,034,364,519,6853693,5711,0 +18470,05+im+Jepiszewa,593,408,849037469,7221,0 +18471,007,445,619,849084985,10243,0 +18472,Wioska+barbarzy%C5%84ska,371,466,699523631,10478,0 +18473,D001,602,409,699761749,10495,9 +18475,-055-,384,568,699097885,3764,0 +18476,W.01,585,608,873575,10178,0 +18477,Kentin+ufam+Tobie,374,449,699783765,10000,0 +18478,A0239,368,463,8841266,10362,0 +18479,Sony+911,572,614,1415009,10043,0 +18480,A0110,365,495,8841266,10362,0 +18481,059+OZDR,468,629,699336777,9902,0 +18482,009+%7C+PALESTINA,632,466,9228039,9544,0 +18483,0004+Wioska+barbarzy%C5%84ska,424,615,9060641,10544,0 +18484,A+READY,592,400,699759128,10160,7 +18485,082.,633,520,849094609,4072,0 +18486,Kentin+ufam+Tobie,371,454,699783765,10000,5 +18487,VN+Constantine,476,375,699883079,10043,0 +18488,F+002,635,503,8078914,10031,0 +18489,011,476,594,699364813,10160,0 +18490,Jan+020+%288%29+K,633,474,879782,9488,0 +18491,s181eo24,397,453,393668,9886,0 +18492,018+Jak+ja+nie+pije,626,460,699272633,10495,0 +18493,005,555,404,7271812,10495,0 +18494,KONFA+TO+MARKA%2C+NARKA,405,462,698152377,10311,0 +18495,070+Pot%C4%99%C5%BCny+Dzban,378,563,699382126,10487,0 +18496,001+Tunios%C5%82aw,390,561,699382126,10481,0 +18497,019,628,529,699413040,9860,0 +18498,0020+MzM,624,554,698416970,9258,0 +18499,K34+-+%5B091%5D+Before+Land,451,375,699088769,9924,0 +18500,R%C4%99cznik+do+zmiany,384,487,699697558,10495,0 +18501,Jednak+wol%C4%99+gofry,497,637,699725436,10311,0 +18502,063,439,622,849084985,8090,0 +18503,%230010,549,625,1536231,10495,0 +18505,002,385,426,848921536,9761,0 +18507,Wioska+barbarzy%C5%84ska,632,536,7047342,10481,0 +18508,Pobozowisko,406,593,699513260,10971,0 +18509,047g,371,532,698641566,9809,0 +18510,%C5%9Amieszkiii,477,585,3454753,10495,0 +18511,048,371,535,698641566,9809,0 +18512,B004,603,413,699761749,10495,0 +18513,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,490,636,6180190,9989,0 +18514,XXXV,542,371,698350371,10495,0 +18515,%230021,545,625,1536231,10495,0 +18516,Zeta+Reticuli+S2,397,409,699323302,10887,0 +18517,Kentin+ufam+Tobie,378,436,699783765,10000,0 +18518,027+Last+Templar,635,498,9238175,10301,0 +18519,B002,605,410,699761749,10495,0 +18520,D007,603,412,699761749,10495,0 +18521,R013,384,573,8607734,6377,0 +18522,Szlachcic+011,626,537,698562644,10311,0 +18523,091.,636,508,849094609,3346,0 +18524,Kentin+ufam+Tobie,380,446,699783765,10000,0 +18525,-050-,380,567,9167250,5757,0 +18526,Kiedy%C5%9B+Wielki+Wojownik,392,458,8632462,9756,0 +18527,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,636,1434753,10068,0 +18528,Deveste+ufam+Tobie,433,618,699783765,10362,7 +18529,Taran,549,371,699170684,9379,0 +18530,Jaaa,589,596,698635863,10475,0 +18531,R011,388,577,8607734,7073,0 +18532,Westcoast.080,398,408,848918380,10178,0 +18533,091.+Morze+Puste,627,465,8337151,11678,0 +18534,K44+x037,402,403,698364331,5889,0 +18535,Lut%C3%B3wko,412,579,698769107,6001,0 +18537,z+043,580,606,699342219,10481,0 +18539,%230024,517,634,699728159,4273,0 +18540,Taran,546,372,699170684,5491,0 +18542,075,591,402,849064752,10311,0 +18543,001,446,623,849084985,10285,0 +18544,Wioska+8,635,480,848935020,5937,0 +18545,009,373,539,6853693,9979,9 +18547,065+Pot%C4%99%C5%BCny+Dzban,384,564,699382126,10481,0 +18548,009,387,425,848921536,3469,0 +18549,016.,564,621,699695167,9823,0 +18550,Ave+Why%21,443,620,8729672,9606,1 +18553,A0217,364,497,8841266,10362,0 +18554,Kentin+ufam+Tobie,387,449,699783765,10000,0 +18555,Zeta+Reticuli+S2,408,404,699323302,11417,0 +18556,Pobozowisko,407,594,699513260,9555,0 +18559,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,626,7589468,8820,0 +18561,017.,574,388,699799629,10495,0 +18562,047,502,387,698739350,9795,0 +18563,A24+Wioska+barbarzy%C5%84ska,457,626,849037407,10220,0 +18564,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,488,634,6948793,9160,0 +18565,Ave+Why%21,450,625,8729672,9808,0 +18566,Wioska+2,635,482,848935020,7733,0 +18567,056,364,511,6853693,10495,0 +18568,041,608,584,698786826,10223,0 +18569,Wioska+barbarzy%C5%84ska,372,459,699523631,10136,0 +18570,011,600,588,699316421,9189,0 +18572,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,631,8201460,10237,0 +18573,yyyy,497,364,699883079,10068,2 +18574,Wioska+lee-1,434,616,699697558,11742,0 +18575,085+KUZYNI+mehehehe,478,632,699336777,9899,7 +18576,Konfederacja,454,370,848915730,8835,0 +18577,A13+Wioska+barbarzy%C5%84ska,462,631,849037407,10416,0 +18579,032,367,522,6853693,5700,0 +18580,Taran,554,376,699170684,9430,0 +18581,032,636,520,699413040,9860,0 +18582,Ulu-mulu,423,613,699697558,11086,0 +18583,017+Ze+mn%C4%85+wymi%C4%99k%C5%82e%C5%9B%3F,627,462,699272633,10481,0 +18584,xx+GW00,394,507,698290577,9336,0 +18585,Barba,578,614,8627359,9209,0 +18586,006,521,634,699336777,9825,0 +18587,Pobozowisko,402,598,699513260,10955,0 +18588,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,495,637,6948793,10001,5 +18589,Kentin+ufam+Tobie,373,455,699783765,10000,0 +18590,aaaa,478,633,6948793,9899,0 +18591,A26+Wioska+barbarzy%C5%84ska,470,633,849037407,10226,0 +18592,033+%7C+PALESTINA,631,465,9228039,9523,0 +18593,Dab,366,497,699265922,9761,0 +18594,Wioska+barbarzy%C5%84ska,372,461,699523631,10345,0 +18595,HORUS%21,525,630,7756002,9885,0 +18596,172,587,394,849064752,10311,0 +18597,Wioska+barbarzy%C5%84ska,617,562,7047342,10478,0 +18598,003+KTW,624,454,848883237,10495,0 +18599,0140,430,387,699431255,10362,0 +18600,aaaa,481,636,6948793,10311,0 +18601,002,501,634,699878511,10144,0 +18602,009,447,621,849084985,10295,0 +18603,614%7C423+005Legatusxi,614,423,6822957,9899,0 +18604,VN+Mereoleona+Vermillion,466,371,699883079,9610,0 +18605,Sparta_24,494,594,2585846,9638,0 +18606,124,493,368,699761749,10268,0 +18607,017,633,499,849093875,3262,0 +18608,Bronowice,378,574,8607734,9976,0 +18609,Wioska+Paradoxus,561,380,3600737,9549,0 +18610,033,443,626,849084985,10068,0 +18611,Jaaa,595,598,698635863,10479,8 +18612,000,450,619,849084985,10019,0 +18613,020,633,514,849091105,10019,0 +18614,A005,523,366,699208929,10354,0 +18615,Jan+Nie+m%C3%B3wili+P%C5%82n+K,634,495,879782,9944,0 +18616,SSJ+028,516,632,699054373,9761,0 +18617,0111,434,379,699431255,9746,0 +18619,079.+Bezmiar+P%C3%B3%C5%82nocy,630,473,8337151,11678,0 +18620,%5B0020%5D,441,398,8630972,10495,0 +18622,055,629,549,849095227,9740,0 +18623,VN+Lohar,454,380,699883079,10268,0 +18624,044,368,539,8908002,7984,0 +18625,049,444,614,849084985,9835,0 +18626,005,625,557,849095227,9757,8 +18627,055,474,369,698739350,10237,0 +18628,Nowa+17,618,565,698702991,9775,0 +18629,025+na+%C5%82azarskim+rejonie,630,460,699272633,7789,0 +18630,039+Brasil,633,510,8323711,10495,0 +18631,064,440,620,849084985,10019,0 +18632,047,371,542,8908002,6896,0 +18633,Nowa+20,618,568,698702991,9824,0 +18634,Bagdad,427,384,8847546,11130,0 +18635,Podzi%C4%99kowa%C5%82+1,457,377,699796330,10290,0 +18636,Wioska+barbarzy%C5%84ska,389,579,699621601,6551,0 +18637,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,484,637,6180190,8998,0 +18638,127,491,365,699761749,10508,0 +18639,Odrodzenie,380,432,1746216,8632,0 +18640,Wioska+barbarzy%C5%84ska,623,561,7047342,10479,0 +18641,015,374,540,6853693,5967,0 +18642,014.+Ja+tu+tylko+zbieram+PP,511,366,699368887,9994,0 +18643,%2A0015+Baraki,618,430,8459255,10192,0 +18644,%230019,517,631,699728159,9761,0 +18645,060,445,626,849084985,9899,0 +18646,Wioska+barbarzy%C5%84ska,623,551,7047342,10481,0 +18647,%2A0021+Baraki,621,433,8459255,10074,0 +18648,z+047,587,603,699342219,10495,1 +18649,003+%7C+PALESTINA,631,459,9228039,9544,0 +18650,0061,561,623,698659980,10160,0 +18651,A20+Wioska+barbarzy%C5%84ska,458,629,849037407,10218,0 +18652,%230028,553,628,1536231,10495,0 +18653,004+VC+danield83+%40,397,414,7462660,10068,0 +18654,016+KTW,623,450,848883237,10495,0 +18655,A0150,362,505,8841266,10362,9 +18656,008,626,552,849095227,9761,0 +18657,056,469,366,698739350,10237,0 +18658,.%3A036%3A.+%C5%81OBUZIK,559,375,848934935,10495,0 +18659,K34+-+%5B097%5D+Before+Land,450,373,699088769,9924,0 +18660,Ulu-mulu,430,613,699697558,9417,9 +18661,004+%7C+PALESTINA,628,453,9228039,9346,0 +18662,003,387,578,699621601,9585,0 +18664,%7E%7E008%7E%7E,599,596,7829201,9819,0 +18665,Jehu_Kingdom_37_,625,442,8785314,9993,0 +18666,Gattacka,606,415,699298370,9607,0 +18667,007,390,422,848921536,5336,0 +18668,007,434,392,699783765,11130,0 +18669,Pobozowisko,412,603,699513260,8887,0 +18670,RTS+2+.,577,613,848995242,10495,0 +18671,%23008.507%7C496,626,447,556154,9735,0 +18672,002+VC+NIC+TU+NIE+MA,394,411,3108144,9204,0 +18673,A0111,368,485,8841266,10362,0 +18674,G002,576,610,8627359,9145,0 +18675,%230023,547,630,1536231,10495,0 +18676,MojeSzczytToTw%C3%B3jDno,530,365,828637,9899,0 +18677,B003,605,413,699761749,7949,0 +18678,067,493,365,698739350,6229,0 +18679,%5B0053%5D,413,400,8630972,10495,0 +18680,Pobozowisko,410,600,699513260,10952,0 +18681,c+%C5%9Btyliwnia,417,389,3909522,8466,0 +18682,Pobozowisko,390,582,699513260,10955,6 +18683,Wioska+barbarzy%C5%84ska,488,507,848967710,10252,0 +18684,D002,604,408,699761749,10495,0 +18685,A+READY,585,395,699759128,10259,0 +18686,057+Pot%C4%99%C5%BCny+Dzban,376,557,699382126,10479,0 +18687,058+OZDR,461,626,699336777,9462,0 +18688,Westcoast.066,386,430,848918380,10178,0 +18689,021+KTW,629,454,848883237,10495,0 +18690,%5B013%5D,636,524,698305474,9809,0 +18691,B.034,639,503,9188016,9798,0 +18692,10+Ebe+ebe,601,526,8013349,9751,0 +18693,Ave+Why%21,452,623,8729672,9842,0 +18694,kathare,553,627,873575,10362,0 +18695,0013,591,396,699485250,10211,0 +18696,Zeta+Reticuli+S,408,403,699323302,10728,0 +18697,DOM+1,560,399,849064614,9835,0 +18698,A010,472,633,699383279,9808,0 +18699,Westcoast.086,385,432,848918380,10178,0 +18700,115,578,386,849064752,10311,0 +18701,B031,634,507,9314079,9835,0 +18702,FB002,633,492,9314079,9824,0 +18703,B+009,597,403,6384450,10362,3 +18704,Deveste+ufam+Tobie,432,618,699783765,9484,0 +18705,A0299,363,498,8841266,10362,0 +18706,021+Roma+Victrix,640,494,699878150,4879,0 +18708,054+Kuzyn+skonfiskowa%C5%82+Meszno,381,563,699382126,10495,0 +18709,065,592,403,849064752,10311,0 +18710,066,570,381,849064752,10311,0 +18711,R-7,556,374,3600737,9013,0 +18712,%230092+Zaluty%C5%84,475,552,9272054,8754,0 +18713,Pobozowisko,400,591,699513260,9055,0 +18714,Westcoast.056,392,420,848918380,10178,0 +18715,005%2C,488,636,8369778,6161,0 +18716,Wioska+Pog%C3%B3rze+3,631,537,698562644,10311,0 +18717,A-010,409,397,8419570,10168,0 +18718,MojeSzczytToTw%C3%B3jDno,521,367,828637,10479,0 +18719,30000,494,540,848915531,11242,0 +18720,Jednak+wol%C4%99+gofry,488,638,699725436,8595,0 +18722,z+055,586,604,699342219,10217,0 +18723,007,601,592,698786826,10211,0 +18724,019.,567,615,873575,9913,0 +18725,0013,435,383,699431255,9987,0 +18726,002,446,624,849084985,10285,0 +18727,mklo,498,367,8654156,10362,0 +18728,aaaa,475,635,6948793,9899,0 +18729,031,632,543,6160655,10229,0 +18730,A14+Wioska+barbarzy%C5%84ska,461,629,849037407,10237,0 +18731,37+im+Or%C5%82owa,597,406,849037469,8071,0 +18732,%210010,623,438,477415,12154,0 +18733,019,609,585,699099811,9835,0 +18734,Pobozowisko,405,599,699513260,10951,0 +18735,029+Lenka,633,500,2135129,9809,0 +18736,psycha+sitting,417,610,699736927,10146,0 +18737,Wioska+barbarzy%C5%84ska,371,465,699523631,10476,0 +18738,Wioska+barbarzy%C5%84ska,526,480,699355601,4166,0 +18739,%23031.515%7C502,634,453,556154,9735,0 +18740,613%7C423+Wioska+barbarzy%C5%84ska03,613,423,6822957,9644,0 +18741,610%7C426+Wioska+barbarzy%C5%84ska16,610,426,6822957,9392,0 +18742,W.09,584,607,873575,10232,0 +18743,Bulle,578,609,8627359,9110,0 +18744,Kentin+ufam+Tobie,373,450,699783765,10000,0 +18745,0000005%25,425,594,849089881,10160,0 +18746,016+Winterfell,617,564,699272880,10329,0 +18747,Ave+Why%21,450,626,8729672,9814,0 +18748,.Krakers.+002,365,481,9163140,3919,0 +18749,005,420,388,699402816,10311,0 +18750,A15+Wioska+barbarzy%C5%84ska,461,631,849037407,10226,0 +18751,Kentin+ufam+Tobie,372,456,699783765,10019,0 +18752,Szlachcic,492,479,699098531,9681,0 +18753,029,636,515,699413040,9860,0 +18754,005,486,636,8369778,9372,0 +18755,67.+Wioska+67,379,568,849091769,6960,0 +18756,Westcoast.044,380,435,848918380,10178,0 +18757,0011,571,384,699485250,10211,0 +18758,614%7C424+004+Wioska+Kapitana+%3A%29,614,424,6822957,9878,0 +18759,Wioska+barbarzy%C5%84ska,562,382,699072129,10220,0 +18760,Kentin+ufam+Tobie,378,445,699783765,10000,0 +18761,A+READY,589,398,699759128,10259,0 +18762,Pobozowisko,399,589,699513260,9589,0 +18763,%2A0017+Baraki,612,429,8459255,9913,0 +18764,c+Komarno+001,411,396,3909522,7501,0 +18765,E+004,595,594,8078914,9880,0 +18767,%5B0046%5D,412,400,8630972,10495,0 +18768,FKG+01-04,418,403,356642,9835,0 +18769,021,628,555,849095227,9796,0 +18770,Twierdza,371,536,849030226,6414,0 +18771,%230014,547,629,1536231,10495,0 +18772,VN+William+Vangeance,467,368,699883079,9563,0 +18773,001,455,599,699364813,10311,0 +18774,.006.Jababing,560,375,699072129,10223,0 +18775,006+KTW,621,451,848883237,10495,0 +18776,001+KTW,625,448,848883237,10495,0 +18777,Monetio,453,370,699191455,10495,0 +18779,A0216,366,477,8841266,10362,0 +18780,Village,500,598,849094067,12154,0 +18781,Pobozowisko,396,583,699513260,10971,0 +18782,118,490,368,699761749,10495,0 +18783,080,436,622,849084985,9060,0 +18784,Deveste+ufam+Tobie,435,622,699783765,9092,0 +18785,A32,467,635,849037407,11550,0 +18786,MojeSzczytToTw%C3%B3jDno,528,370,828637,10495,0 +18787,025,474,630,699336777,9825,0 +18788,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,483,637,6180190,9395,0 +18789,003,387,423,848921536,9761,0 +18790,002+KTW,627,451,848883237,10495,0 +18791,Ulu-mulu,422,610,699697558,11678,0 +18792,nie+zesraj+si%C4%99,635,478,8812550,2517,0 +18793,Wioska+barbarzy%C5%84ska,529,634,7756002,9918,0 +18794,%5B0077%5D.....,415,396,8630972,10495,0 +18795,036,573,385,849064752,10311,0 +18796,013,447,628,849084985,10297,0 +18798,Wioska+6,383,425,699343887,3086,0 +18800,BoOmBaa..,443,374,6169408,5717,0 +18801,043+Pozna%C5%84,627,503,7092442,10495,0 +18802,Osada+karczownik%C3%B3w+.,570,615,848995242,10495,1 +18803,%23006.505%7C491,624,442,556154,9735,0 +18806,071,365,524,6853693,7920,0 +18807,034,425,387,7462660,10560,0 +18808,027.,639,492,849094609,9819,0 +18809,A0172,369,470,8841266,10362,4 +18810,-+004+-,551,601,849018239,10000,0 +18811,0132,447,378,699431255,10083,0 +18812,024,480,373,849010255,7504,0 +18813,016,441,621,849084985,9965,0 +18814,SSJ+069,506,633,699364813,9339,0 +18815,057,470,368,698739350,10237,0 +18816,011+-+Mroczna+Osada,625,440,849035905,10616,0 +18817,%5B0001%5D,558,632,699567608,9904,0 +18818,Zeta+Reticuli+S2,396,409,699323302,10997,0 +18819,001+B,622,445,699718269,9741,2 +18820,Wioska+barbarzy%C5%84ska,367,461,699523631,10728,0 +18821,Zagroda+30+Reszt%C4%99+Burzymy,453,371,699191464,8780,1 +18822,Deveste+ufam+Tobie,430,617,699783765,7608,0 +18823,033,366,521,6853693,6214,0 +18824,095,444,622,849084985,9170,7 +18825,Za+rzeka,363,484,699265922,10252,0 +18826,kathare,557,626,873575,10123,0 +18828,121,493,362,699761749,9470,0 +18829,014+%7C+PALESTINA,632,461,9228039,9544,0 +18830,Pobozowisko,401,592,699513260,7700,0 +18831,Jan+021-12+P%C5%82n+K,635,492,879782,9534,0 +18832,002+%7C+PALESTINA,629,458,9228039,9529,0 +18833,K34+-+%5B044%5D+Before+Land,459,380,699088769,9783,0 +18834,048,607,586,698786826,9694,0 +18835,A06+Wioska+barbarzy%C5%84ska,465,632,849037407,10228,0 +18836,066+Pot%C4%99%C5%BCny+Dzban,383,564,699382126,10487,0 +18837,Jan+08_%233+K,634,474,879782,9494,0 +18838,Taran,544,369,699170684,4771,0 +18839,0036+Wioska+Jastrz%C4%85b+z+NBP,417,608,9060641,10654,0 +18840,SSJ+026,502,637,699054373,9761,0 +18841,07.+Wioska+7,373,555,849091769,10019,0 +18842,Wioska+barbarzy%C5%84ska,507,363,699368887,9994,0 +18843,0015,566,380,699485250,10168,0 +18844,609%7C420+008+FRANKIA,609,420,6822957,9989,0 +18845,Wioska+barbarzy%C5%84ska,510,364,699368887,9994,0 +18846,Boss+04,370,465,699523631,10474,0 +18847,082,366,525,6853693,5309,0 +18848,003.,635,486,849094609,9345,0 +18849,14.+Wioska+14,373,553,849091769,9950,0 +18850,024.,634,504,849094609,9818,0 +18851,R005,386,576,8607734,5736,0 +18852,002.,638,479,849094609,10011,0 +18853,011,448,622,849084985,10211,0 +18854,Pobozowisko,400,594,699513260,10952,5 +18855,0142,429,383,699431255,6572,0 +18856,049,608,585,698786826,10090,0 +18857,%230039,554,626,1536231,10495,0 +18858,%2A020%2A,635,496,698670524,9165,0 +18859,Ulu-mulu,427,612,699697558,7982,0 +18860,Jednak+wol%C4%99+gofry,496,638,699736927,10311,0 +18861,A0073,365,493,8841266,10362,0 +18862,A0289,366,496,8841266,10362,0 +18863,mklo,497,365,828637,10338,0 +18864,MojeSzczytToTw%C3%B3jDno,521,371,828637,10495,0 +18865,Sony+911,575,610,1415009,10206,0 +18866,-+334+-+RR,587,602,849018239,9552,0 +18867,Wioska+barbarzy%C5%84ska+1,371,461,699523631,10487,0 +18868,VN+Rill+Boismortier,467,366,699883079,9637,0 +18869,052,369,545,8908002,9993,0 +18870,Ulu-mulu,428,615,699697558,8045,7 +18871,Pobozowisko,396,582,699513260,10971,0 +18872,Wioska+barbarzy%C5%84ska,632,533,7047342,10620,0 +18873,VN+Gaius+Marius,440,381,699883079,10055,9 +18874,127.,509,483,8788366,10728,0 +18875,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,489,637,6180190,9415,0 +18877,Taran,553,372,699170684,9379,0 +18878,034,631,543,699351301,10160,0 +18879,Wioska+barbarzy%C5%84ska,561,379,699072129,10221,0 +18880,020+KTW,630,454,848883237,10495,0 +18881,Westcoast.050,380,436,848918380,10178,0 +18882,0341,497,623,698659980,10387,0 +18883,0045,561,622,698659980,10019,0 +18884,Wioska+barbarzy%C5%84ska,561,378,699072129,10217,0 +18885,073+KUZYNI+mehehehe,480,633,699336777,10247,0 +18886,0065,443,377,699431255,10311,0 +18887,014,613,580,699099811,9335,3 +18888,-023-,396,587,699097885,9189,0 +18889,034,632,513,699413040,9860,0 +18890,B009,600,409,699761749,10495,0 +18891,A0180,367,475,8841266,10362,0 +18892,%5B018%5D,626,542,698305474,9809,0 +18893,Wioska+barbarzy%C5%84ska,562,381,699072129,10218,0 +18894,BoOmBaa..tu,437,382,6169408,9177,0 +18895,008,600,594,698786826,10211,0 +18896,Gattacka,609,417,699298370,9742,0 +18898,A0112,368,483,8841266,10362,0 +18899,Wioska+5,383,430,699343887,3086,0 +18900,VN+Langris+Vaude,461,373,699883079,9667,0 +18901,089.+Rhenus,618,431,849091866,8284,0 +18902,%5B0021%5D,451,397,8630972,10495,0 +18903,Jehu_Kingdom_44,631,478,8785314,8114,0 +18904,021,504,636,699878511,10139,0 +18905,039+%7C+PALESTINA,635,465,9228039,5976,0 +18906,054,362,513,6853693,10495,0 +18907,Pobozowisko,391,580,699513260,10971,0 +18908,067+Pot%C4%99%C5%BCny+Dzban,380,563,699382126,10484,0 +18909,0168,551,626,698659980,10083,0 +18910,-011-,392,590,699097885,9802,0 +18911,Jaaa,587,606,698635863,10027,0 +18913,W.05,583,609,873575,10362,0 +18914,Pobozowisko,383,575,699513260,8583,0 +18915,66.+Wioska+66,385,569,849091769,5224,0 +18916,Jan+02_v+K,639,467,879782,9730,0 +18917,Twierdza+6,634,503,848935020,10617,0 +18918,Taran,553,371,699170684,9379,0 +18919,Pomoc,384,428,1746216,5139,0 +18920,na+blisko+.,568,616,848995242,10362,0 +18921,Taran,551,375,699170684,9566,0 +18922,Darma,418,392,356642,9835,0 +18923,058,471,366,698739350,10237,0 +18924,Kentin+ufam+Tobie,369,457,699783765,10000,0 +18925,c+imperium,417,388,3909522,9824,0 +18926,Wioska+2,383,429,699343887,3251,0 +18927,Nowa+08,621,566,698702991,9827,0 +18928,A16+Wioska+barbarzy%C5%84ska,460,630,849037407,10226,0 +18929,%3D042%3D+Wioska+barbarzy%C5%84ska,622,553,3781794,7910,0 +18930,Wioska+barbarzy%C5%84ska,619,560,7047342,10620,0 +18931,002,485,634,272173,10311,0 +18932,Pobozowisko,393,590,699513260,10786,0 +18933,Gattacka,608,413,699298370,9744,0 +18934,016,583,412,849063849,10636,0 +18935,P032+Adachi,636,501,8096537,9744,0 +18936,051,370,545,8908002,8579,0 +18937,Taran,545,371,699170684,4443,0 +18938,004,416,395,699402816,10311,0 +18939,Kentin+ufam+Tobie,375,442,699783765,10000,0 +18940,Konfederacja+%2B,454,375,848915730,10001,4 +18941,147+Oj+Mareczku+co%C5%9B+za+du%C5%BCo+cyfr,380,568,699382126,8551,0 +18942,152+MIKOX+042,590,416,699491076,9662,0 +18943,029+Wwwwwweeeeekkkkkkkk,636,502,9238175,10281,0 +18944,San+Piero+a+Sieve,369,539,699494480,9153,0 +18945,123,574,385,849064752,10311,0 +18946,059,474,365,698739350,10237,0 +18947,%3D018%3D+Polska+0%3A0+Meksyk,620,559,3781794,8212,0 +18948,BoOmBaa..,441,378,6169408,10495,0 +18949,074,367,518,6853693,5050,0 +18950,Wioska,370,548,849084005,10178,0 +18951,52.+Wioska+52,376,552,849091769,10000,0 +18952,Pobozowisko,412,605,699513260,8953,0 +18953,0007+Wioska+barbarzy%C5%84ska,425,615,9060641,10544,0 +18955,Brat447,367,501,699262350,10478,0 +18956,A0074,367,484,8841266,10362,9 +18957,021,630,550,8428196,9874,0 +18958,Wioska+barbarzy%C5%84ska,610,408,7915966,2374,0 +18959,030,555,372,1424656,10636,0 +18960,151+Ale+mnie+g%C5%82%C3%B3wka+boli,377,570,699382126,8923,0 +18961,Pobozowisko,411,600,699513260,7328,0 +18962,Taran,558,377,699170684,9379,2 +18963,152+Ale+mnie+g%C5%82%C3%B3wka+boli,379,566,699382126,10303,0 +18964,c+rze%C5%BAnia,416,390,3909522,10431,0 +18965,Ave+Why%21,451,630,8729672,9861,0 +18966,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,540,627,7589468,8822,0 +18967,ave+why%21,454,622,698143931,10311,0 +18968,Nowa+14,616,567,698702991,9824,0 +18969,006+Wioska+kolekjarek,566,378,699509239,6632,0 +18970,Zeta+Reticuli+S,407,400,699323302,11188,0 +18971,MojeSzczytToTw%C3%B3jDno,520,366,828637,10479,0 +18972,0016.+C+-,623,506,7125212,4321,0 +18973,028,635,517,699413040,10019,0 +18974,Pobozowisko,406,602,699513260,10954,0 +18975,045,605,585,698786826,10237,0 +18976,Konfederacja+8,453,372,848915730,9690,0 +18977,Master+Carry1,509,367,699368887,9466,0 +18978,Taran,556,376,699170684,9761,0 +18979,Kentin+ufam+Tobie,385,441,699783765,10000,0 +18980,115,488,361,699761749,10495,0 +18981,A25+Wioska+barbarzy%C5%84ska,459,629,849037407,10220,0 +18982,nic,573,618,699828685,9707,0 +18983,%230016,546,628,1536231,10495,0 +18984,HORUS%2B,525,636,7756002,9981,0 +18985,614%7C427+000+LegatusXI,614,427,6822957,10014,0 +18986,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,636,6948793,10001,0 +18987,072,369,538,698641566,9809,0 +18988,075+Lisie+g%C3%B3ry,381,568,699382126,10481,0 +18989,%7E%7E035%7E%7E,594,603,7829201,9742,0 +18990,Taran,554,374,699170684,9492,0 +18991,%230013,548,628,1536231,10495,0 +18992,.Krakers.+007,365,474,9163140,1672,0 +18993,055,606,584,698786826,10221,1 +18994,041-+Mroczna+Osada,622,437,849035905,12154,0 +18995,Deveste+ufam+Tobie,430,616,699783765,10083,0 +18996,002,387,424,9239515,8049,0 +18997,004,617,569,849095227,9761,0 +18998,052+Kuzyn+skonfiskowa%C5%82+Bull+Run,382,573,699382126,10495,0 +19000,SSJ+011,510,636,699054373,9761,0 +19001,005+TASUKA+MARAKA,538,524,7581876,9811,0 +19002,016,629,546,8428196,9814,0 +19003,KIELBA+048,461,583,699342219,10495,0 +19004,Konfederacja,448,373,848915730,8635,0 +19005,Belzebub,384,427,1746216,8569,0 +19006,Gattacka,611,419,699298370,9719,0 +19007,-052-,383,567,9167250,5737,0 +19008,Wioska,373,545,849084005,10178,0 +19009,%7E%7E043%7E%7E,591,604,7829201,9488,0 +19010,FA002,640,496,9314079,9835,0 +19011,018+-+A+Coruna,636,490,698342159,10019,0 +19012,004+KTW,629,448,848883237,10495,0 +19013,119,483,364,699761749,10495,0 +19014,sony911,580,613,1415009,10223,0 +19015,Og%C3%B3rkowy+baron,402,406,356642,9835,0 +19016,0038+Zero+zaskoczenia,418,606,9060641,10787,0 +19017,MojeSzczytToTw%C3%B3jDno,523,365,828637,10481,0 +19018,Wioska+Vexijio,381,427,8967440,7704,0 +19019,%23064.,628,452,556154,4340,0 +19020,060,470,369,698739350,10237,0 +19021,A+READY,590,396,699759128,10247,0 +19022,026+nie+jest+kolorowo,637,472,699272633,9738,0 +19023,%C5%BBuraw,624,571,849095778,9889,0 +19024,0002,481,637,6180190,10432,4 +19025,034+Phoenix,448,461,1497168,9761,0 +19026,Za+miedza,362,484,699265922,9797,0 +19027,069,596,602,699373599,10495,0 +19028,c+00445+%21%21%21,414,390,3909522,9899,0 +19029,Wioska+barbarzy%C5%84ska,368,458,3698627,10075,0 +19030,021,611,585,699099811,9835,0 +19031,K34+-+%5B090%5D+Before+Land,450,376,699088769,9162,0 +19032,023+%C5%82aaaa+naebaem+si%C4%99+w+hu11111,634,472,699272633,10295,0 +19033,A006,521,365,699208929,10038,0 +19034,040,367,519,6853693,5711,0 +19036,Wioska17,633,477,848935020,5249,0 +19037,%23065.,628,454,556154,7213,0 +19038,%230009,549,629,1536231,10495,0 +19039,PYRLANDIA+002+S,570,592,33900,10160,0 +19040,036.+Ader,629,453,849091866,9600,0 +19041,A0077,366,469,8841266,10362,3 +19042,Jaaa,586,605,698635863,10487,0 +19043,0068,636,530,6510480,8020,0 +19044,037,638,515,699413040,9948,0 +19046,0048,557,621,698659980,10160,0 +19047,xx+003.+ONI,400,502,698290577,10233,0 +19048,A+READY,590,400,699759128,10160,0 +19049,Westcoast.090,387,428,848918380,10178,0 +19050,Wioska+barbarzy%C5%84ska,515,362,699368887,9994,0 +19051,Jednak+wol%C4%99+gofry,493,639,699725436,10311,0 +19052,SINGED+X+SZEF,495,375,699368887,9994,0 +19053,A0181,361,490,8841266,10362,0 +19054,C009+South+Lake,620,564,8096537,9664,0 +19055,Wioska+barbarzy%C5%84ska,366,460,699523631,10484,0 +19056,058,433,380,6169408,7409,0 +19057,007+Bez+nazwy,382,561,699382126,10495,0 +19058,Wioska+barbarzy%C5%84ska,529,363,1990750,10068,0 +19059,Pobozowisko,409,601,699513260,10414,0 +19060,Westcoast.020,385,436,848918380,10178,0 +19061,Pobozowisko,410,599,699513260,10954,0 +19062,Kentin+ufam+Tobie,374,447,699783765,10000,0 +19063,057,364,512,6853693,10281,0 +19064,Pobozowisko,399,592,699513260,5979,0 +19065,Wioska+barbarzy%C5%84ska,631,529,7047342,10487,0 +19066,Konfederacja+%2B,449,371,848915730,9728,0 +19067,%230013,516,636,699728159,9761,0 +19068,107+Stop,605,417,699491076,8970,0 +19069,006,366,539,6853693,10479,8 +19070,VN+Shizuku+Murasaki,470,363,699883079,9448,0 +19071,MojeSzczytToTw%C3%B3jDno,514,366,828637,10476,0 +19072,s3+Osada+koczownik%C3%B3w,396,414,7462660,10068,1 +19074,072+Najwi%C4%99kszy+Dzban,377,563,699382126,10484,0 +19075,008,361,515,698641566,9809,0 +19076,022+hyhyhy+kuhw%40,631,472,699272633,9936,0 +19077,%2AINTERTWINED%2A%2A,507,634,698704189,9711,0 +19078,A018,472,635,699383279,9802,0 +19079,R-09,547,372,3600737,9013,0 +19080,D003,603,407,699761749,10495,0 +19081,c+ub,418,388,3909522,5990,0 +19082,Wioska+barbarzy%C5%84ska,577,389,699146580,10595,0 +19083,VN+Alex+Louis+Armstrong,464,365,699883079,9626,0 +19084,009+KTW,631,455,848883237,10495,0 +19086,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,637,6948793,9965,0 +19087,Kentin+ufam+Tobie,370,453,699783765,10000,0 +19088,Zeta+Reticuli+S3,424,389,699323302,10997,0 +19089,A0215,363,497,8841266,10362,0 +19090,A0224,364,468,8841266,10362,0 +19091,Wioska+barbarzy%C5%84ska,632,531,7047342,10487,0 +19092,Bagdad,430,385,8847546,10311,0 +19093,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,633,8201460,10237,0 +19094,Brat447,367,514,699262350,6005,0 +19095,Ave+Why%21,449,626,8729672,9065,0 +19096,VN+Rose,463,369,699883079,9969,1 +19097,0109,435,378,699431255,9761,0 +19098,Zeta+Reticuli+S,400,410,699323302,10887,0 +19099,013+Wioska+barbarzy%C5%84ska,538,368,699854484,9976,0 +19100,22+XXX,632,525,699377151,971,0 +19101,A0293,362,476,8841266,10362,0 +19102,055.+F64D,484,633,699494488,10218,0 +19103,Sprzedam+Drewno,452,370,699191455,6974,1 +19104,%5B012%5D,635,528,698305474,9809,0 +19105,A05+Wioska+barbarzy%C5%84ska,464,630,849037407,10217,0 +19106,A0209,366,494,8841266,10362,0 +19107,Brat447,366,508,699262350,10134,0 +19108,0023,600,503,699429153,10168,0 +19109,Wioska+barbarzy%C5%84ska,631,540,7047342,10821,0 +19110,%5B021%5D,636,529,698305474,9809,0 +19111,Manypolis,384,423,8967440,11606,0 +19112,113,489,366,699761749,10495,0 +19114,A17+Wioska+barbarzy%C5%84ska,462,630,849037407,10247,0 +19116,Wioska+barbarzy%C5%84ska,387,572,699621601,6278,0 +19117,060,589,394,7271812,9167,0 +19118,c+Robcio+80002,410,393,3909522,7817,0 +19119,020+-+Vitoria,638,486,698342159,10019,0 +19120,Bagdad,499,364,8847546,10040,0 +19121,Pobozowisko,411,604,699513260,8545,0 +19122,BETI+002,457,578,8539216,1700,0 +19123,RTS+7,574,614,848995242,10362,0 +19125,Lord+Lord+Franek+.%23206,512,362,698420691,10362,0 +19126,K34+-+%5B076%5D+Before+Land,450,372,699088769,10126,0 +19127,028+lenka,637,500,9238175,10412,4 +19129,Zeta+Reticuli+S,407,404,699323302,10887,0 +19130,Westcoast.084,389,421,848918380,10178,0 +19131,Ow+Konfederacja,599,398,848915730,9938,0 +19132,018,633,526,699413040,9924,0 +19133,A0246,370,463,8841266,10362,0 +19134,A0096,360,494,8841266,10362,0 +19135,aaaa,477,637,6948793,9899,0 +19136,012+-+Cordoba,633,485,698342159,10019,0 +19137,Wioska+barbarzy%C5%84ska,394,412,7462660,7021,0 +19138,004,600,597,698786826,10211,0 +19139,Wioska+niszczyciel1123456,528,366,1990750,10068,0 +19140,A0097,366,492,8841266,10362,0 +19141,030.,638,485,849094609,10103,0 +19142,0015+Wioska+barbarzy%C5%84ska,424,616,9060641,6726,0 +19143,.Wioska+barbarzy%C5%84ska,623,567,6929240,6181,0 +19144,0015,430,384,699431255,9966,0 +19145,Gattacka,611,417,699298370,9741,0 +19146,Pobozowisko,396,590,699513260,8836,0 +19147,Pobozowisko,393,584,699513260,10955,0 +19148,.Krakers.+005,364,479,9163140,3498,0 +19149,xkikutx,519,358,1990750,10068,0 +19150,0407,542,634,698659980,8886,0 +19151,0066,560,623,698659980,10083,0 +19152,012+Wioska+barbarzy%C5%84ska,538,370,699854484,10068,0 +19153,%23007.503%7C476,622,427,556154,9735,0 +19154,010,600,593,698786826,10211,0 +19155,Wioska+h,563,378,699072129,10237,0 +19156,0040,615,421,699429153,9825,0 +19157,0368,561,624,698659980,9516,0 +19158,Wioska+barbarzy%C5%84ska,362,501,698807570,9723,0 +19159,SSJ+027,513,638,699054373,9761,0 +19160,057,608,582,698786826,9978,0 +19162,SSJ+022,505,640,699054373,9761,0 +19163,Jednak+wol%C4%99+gofry,492,639,699725436,10178,0 +19164,Pobozowisko,397,591,699513260,9683,0 +19165,%23061.,620,436,556154,9735,0 +19166,013,429,384,849027025,11130,0 +19167,%5B0092%5D,417,394,8630972,10495,0 +19168,Myk+i+do+kieszonki,360,507,9319058,9799,0 +19169,A0098,366,488,8841266,10362,0 +19171,%5B003%5D,461,634,698585370,10530,0 +19172,023+KTW,631,457,848883237,10495,0 +19173,019,500,635,699878511,10139,0 +19174,Ulu-mulu,423,612,699697558,9609,0 +19175,067,552,394,849064752,10311,0 +19176,SSJ+030,506,639,699054373,9761,0 +19177,0374,564,624,698659980,10495,0 +19178,006,388,420,848921536,9566,0 +19179,A019,471,635,699383279,9825,0 +19180,Jednak+wol%C4%99+gofry,498,635,699725436,10108,0 +19181,Pobozowisko,388,583,699513260,10952,0 +19182,SSJ+042,508,639,699054373,9761,0 +19183,c+masarniaqqqqqqqqqqqqqqqqqqqqqq,418,387,3909522,8248,0 +19184,Myk+i+do+kieszonki,367,542,8908002,9609,1 +19185,Pobozowisko,406,595,699513260,8250,0 +19186,0063,460,367,699431255,9978,0 +19187,c+00449,412,392,3909522,10078,0 +19188,007+Legio+I+Noricorum,638,490,699878150,5934,0 +19189,A0205,365,480,8841266,10362,2 +19190,Kentin+ufam+Tobie,373,448,699783765,9860,0 +19191,0044,536,635,698659980,10083,0 +19192,B+002,596,398,6384450,10362,0 +19193,c+mordownia,416,389,3909522,7936,0 +19194,028,593,602,698999105,10311,0 +19195,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,537,630,8201460,10237,0 +19196,Kentin+ufam+Tobie,372,445,699783765,10000,0 +19197,Wioska+Apfel,601,589,849080260,1776,0 +19198,070,367,531,6853693,7782,0 +19199,Wioska+barbarzy%C5%84ska,630,537,7047342,10487,0 +19200,071+Pot%C4%99%C5%BCny+Dzban,378,562,699382126,10479,0 +19201,A0113,366,493,8841266,10362,0 +19202,kathare,554,629,873575,9867,0 +19203,A0182,359,476,8841266,10362,0 +19204,001.,639,477,849094609,9950,0 +19205,016.,571,385,699799629,10495,0 +19206,Wioska+barbarzy%C5%84ska,394,416,7462660,9978,0 +19207,041,364,520,6853693,5692,0 +19208,0005,565,620,698659980,10252,9 +19209,Wioska+barbarzy%C5%84ska,638,524,7047342,10476,0 +19210,Nowa+12,621,567,698702991,9821,0 +19211,052,411,486,699510259,9761,0 +19212,FB004,640,493,9314079,9818,0 +19214,040,364,529,698641566,9809,0 +19215,013,389,424,848921536,3154,0 +19216,Taran,555,377,699170684,10019,4 +19217,009,603,501,699573053,10495,0 +19218,B.035,640,503,9188016,10000,0 +19219,Pobozowisko,396,588,699513260,10665,0 +19220,A+READY,589,399,699759128,10495,0 +19221,B005,603,410,699761749,8045,0 +19222,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,638,1434753,10068,0 +19223,037,590,401,849064752,10311,0 +19224,Nowa+13,618,575,698702991,9821,0 +19226,Wioska+barbarzy%C5%84ska,503,360,699368887,9223,0 +19227,0244,535,635,698659980,10019,0 +19228,054,366,540,8908002,5626,0 +19229,039,364,527,698641566,9809,0 +19230,Jehu_Kingdom_43,634,463,8785314,9208,0 +19231,064+OZDR,458,628,699336777,8137,0 +19232,56.+Wioska+56,376,561,849091769,10019,0 +19233,Ave+Why%21,440,621,8729672,7836,0 +19234,%7E%7E033%7E%7E,595,600,7829201,9494,0 +19235,Aqueduct+1,528,631,8199417,10140,0 +19236,0023+MzM,630,553,698416970,9258,7 +19237,Wioska+barbarzy%C5%84ska,507,364,699368887,9994,0 +19238,011+B,627,446,699718269,9811,0 +19239,Darmowe+przeprowadzki,436,620,848935389,9058,0 +19240,Wioska+barbarzy%C5%84ska,369,465,699523631,10475,0 +19241,Westcoast.095,392,419,848918380,10178,0 +19242,010+%7C+PALESTINA,631,462,9228039,9544,0 +19244,061,481,366,698739350,10237,0 +19245,A0099,362,490,8841266,10362,0 +19246,038.+Salmantica,632,457,849091866,9661,0 +19247,Myk+i+do+kieszonki,361,507,9319058,9799,0 +19248,0373,563,624,698659980,10485,0 +19249,%2A0030+Baraki,620,439,8459255,10195,0 +19250,K34+-+%5B108%5D+Before+Land,451,372,699088769,10259,0 +19252,068,361,511,698641566,9809,0 +19253,014,389,418,848921536,4034,0 +19254,021+-+Badalona,639,486,698342159,10019,0 +19255,HORUS%2B,524,637,7756002,9883,0 +19256,Wioska+barbarzy%C5%84ska,510,361,699368887,9994,0 +19257,0001+Wioska+Koloalu,425,616,9060641,10544,0 +19258,Wioska,373,542,849084005,10178,0 +19259,015+%7C+PALESTINA,633,464,9228039,8764,0 +19260,%3A%3A%3A+C+%3A%3A%3A,365,477,848917570,4302,0 +19262,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,420,616,1434753,10068,0 +19263,088.+Messambria,619,434,849091866,8480,0 +19264,Kentin+ufam+Tobie,374,444,699783765,10000,0 +19265,029+Wioska+barbarzy%C5%84ska,540,363,699854484,10068,0 +19266,Jan+09+Wuking+K,634,464,879782,9436,0 +19267,PRO8L3M,412,494,7491093,10311,0 +19268,Wioska+barbarzy%C5%84ska,420,389,699402816,9835,0 +19269,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,638,6948793,9860,0 +19271,Wioska+Szyderczy+Promil+2,572,616,8627359,9343,0 +19272,Wioska,369,552,2443031,3081,1 +19273,015,369,533,698641566,9809,0 +19274,079,482,362,698739350,10580,0 +19275,Gattacka,609,411,699298370,10158,0 +19276,019+KTW,632,454,848883237,10495,0 +19277,Wioska+barbarzy%C5%84ska,365,505,698807570,9387,0 +19278,R007,388,573,8607734,6943,0 +19279,061,438,626,849084985,6931,0 +19280,7.62+mm,377,438,699777234,1275,0 +19281,009+Legio+I+Italica,639,491,699878150,4372,0 +19282,Wioska+barbarzy%C5%84ska,563,381,699072129,10217,0 +19283,Jednak+wol%C4%99+gofry,495,639,699725436,9835,0 +19284,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,639,2665207,10068,0 +19285,Kentin+ufam+Tobie,372,452,699783765,10000,0 +19286,A0100,361,494,8841266,10362,0 +19287,A07+Wioska+barbarzy%C5%84ska,464,631,849037407,10221,0 +19288,074.+Helgrind,624,437,8337151,10160,0 +19289,032,367,543,8908002,9237,0 +19290,BARBA,639,483,698613394,2602,0 +19291,051+Vallenar,610,578,699272880,10569,0 +19292,040,609,584,698786826,10221,0 +19293,Konfederacja,455,371,848915730,9684,0 +19294,Bagdad,426,384,8847546,11130,0 +19295,Wioska+barbarzy%C5%84ska,636,525,7047342,10478,0 +19297,036+OZDR,473,633,699336777,9825,0 +19298,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,628,8201460,10237,0 +19299,Deveste+ufam+Tobie,429,616,699783765,8899,0 +19300,Og%C3%B3rkowy+baron,406,400,356642,9835,0 +19301,Wioska+Kuba+Takine,423,383,699796330,10559,0 +19302,Dziupla+.,571,619,848995242,10362,0 +19303,Pobozowisko,396,586,699513260,8304,0 +19304,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,637,1434753,10068,0 +19305,026,472,631,699336777,9825,0 +19306,Deveste+ufam+Tobie,433,622,699783765,6948,0 +19308,sony911,580,612,1415009,10211,0 +19309,Ave+Why%21,448,626,8729672,8041,0 +19310,Molinia+coerulea,495,360,699883079,9933,0 +19312,036.,639,479,849094609,7994,0 +19313,Nowa+24,614,575,698702991,9891,0 +19314,%2A0034+Baraki,619,439,8459255,9908,0 +19315,028.,639,493,849094609,9821,0 +19316,A01+Plebania,464,632,849037407,10475,0 +19317,Wioska+barbarzy%C5%84ska,634,531,7047342,10495,0 +19318,SSJ+070,504,640,699054373,8431,0 +19319,0059,454,367,699431255,9955,0 +19320,%21Inferno,508,607,606407,10365,0 +19322,Horyzont+zdarze%C5%84,527,542,7581876,10019,0 +19323,Taran,555,371,699170684,10130,0 +19324,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,637,6948793,10001,0 +19326,D009,598,408,699761749,10495,0 +19327,yyyy,496,360,699883079,10028,0 +19328,Pobozowisko,383,578,699513260,10355,0 +19329,Brat447,369,510,699262350,10134,0 +19330,015+-+Santa+Cruz+de+Tenerife,636,487,698342159,10019,0 +19331,Kentin+ufam+Tobie,372,450,699783765,10000,0 +19332,Jednak+wol%C4%99+gofry,498,641,699725436,10311,0 +19333,025,364,534,698641566,9809,0 +19334,.007.Alvaro,559,373,699072129,10226,0 +19337,President+s+Office,524,633,8199417,11074,0 +19338,011+KTW,633,454,848883237,10495,0 +19339,034.+Mamucium,628,455,849091866,9609,0 +19340,VN+Ging+Freecss,497,362,699883079,9933,0 +19341,C+023,582,391,6384450,6685,0 +19342,Brat447,366,515,699262350,3024,0 +19343,WE+ARE+READY%21,596,397,1553947,9240,0 +19344,Monetki,477,419,699098531,10292,0 +19345,068+Pot%C4%99%C5%BCny+Dzban,378,561,699382126,10481,0 +19346,002.+Wioska+barbarzy%C5%84ska,391,419,698884287,8775,0 +19347,Pobozowisko,401,599,699513260,10957,0 +19348,Ulu-mulu,415,604,699697558,9531,0 +19349,067,360,512,698641566,9809,0 +19350,016,363,530,698641566,9809,7 +19351,Mo%C5%BCe+co%C5%9B+pogram%3F,506,606,699698253,9809,0 +19352,061,586,391,7271812,9384,0 +19353,036,425,386,7462660,10638,0 +19354,Monetki,473,426,699098531,10294,0 +19355,Ow+Konfederacja,600,405,848915730,9976,0 +19356,%5B0103%5D,410,395,8630972,10495,0 +19357,a+mo%C5%BCe+off+%3F+%3A%29,605,587,698768565,10104,0 +19358,A02,466,632,849037407,10226,0 +19359,Konfederacja,448,369,848915730,10874,0 +19360,008,624,561,848899726,8387,0 +19361,Kentin+ufam+Tobie,374,438,699783765,10000,0 +19362,090.,634,486,849094609,4837,0 +19363,K34+-+%5B018%5D+Before+Land,452,372,699088769,10259,0 +19364,B007,601,403,699761749,6196,0 +19365,0054,444,375,699431255,10067,0 +19366,%230011,515,637,699728159,9761,0 +19367,29.+Wioska+29,372,550,849091769,9472,0 +19368,Kentin+ufam+Tobie,374,437,699783765,10000,0 +19369,020,636,533,699413040,9860,3 +19370,Ulu-mulu,420,609,699697558,3576,0 +19371,%230041,545,633,1536231,10495,0 +19372,0199,453,611,698659980,10495,0 +19373,MojeSzczytToTw%C3%B3jDno,531,369,828637,10490,0 +19374,A30+MARUDER,464,629,849037407,10197,0 +19375,R004,384,575,8607734,8193,0 +19377,0127,436,376,699431255,8559,0 +19378,018,600,591,698786826,10221,0 +19379,Wioska+barbarzy%C5%84ska,511,359,699368887,9994,0 +19380,-003-,393,592,699097885,10158,0 +19381,Dzisiaj+trening+.,570,621,848995242,10495,0 +19382,Kentin+ufam+Tobie,379,439,699783765,10000,0 +19383,0370,562,627,698659980,10495,0 +19384,Horyzont+zdarze%C5%84,532,543,7581876,10019,0 +19385,sas,559,625,7581876,10019,0 +19386,No+to+hetman,368,470,6258092,10795,0 +19387,071,437,623,849084985,6280,0 +19388,037+Nadindel,625,451,8337151,10083,3 +19389,028.+Tentyra,626,558,849091866,10295,0 +19390,Wioska+barbarzy%C5%84ska,419,393,699402816,9835,0 +19391,%3D031%3D+Wioska+barbarzy%C5%84ska,624,560,3781794,8190,0 +19392,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,421,615,1434753,8075,0 +19393,15.+Wioska+15,371,556,849091769,10064,0 +19394,A0101,364,488,8841266,10362,0 +19395,A0229,367,464,8841266,10362,0 +19396,MojeSzczytToTw%C3%B3jDno,513,366,828637,10495,0 +19397,055,366,543,8908002,4981,0 +19398,Myk+i+do+kieszonki,362,508,9319058,9799,0 +19399,%5BB%5D_%5B204%5D+Dejv.oldplyr,432,382,699380607,5915,0 +19400,c+piekarnia,418,386,3909522,9213,0 +19401,Wioska+%28036%29,635,461,698232227,4975,0 +19402,Kentin+ufam+Tobie,370,448,699783765,7085,0 +19403,034,367,532,698641566,9809,0 +19404,015,389,414,848921536,3516,0 +19405,062,469,365,698739350,10237,0 +19406,090.+Toletum,617,432,849091866,9182,0 +19407,VN+Cao+Cao,462,365,699883079,10096,0 +19408,030+181,360,504,698807570,7589,0 +19409,Szlachcic+P%C3%B3%C5%82noc+002,637,512,698562644,10311,0 +19411,Ave+Why%21,464,633,698585370,8134,0 +19412,kathare,556,625,873575,10192,0 +19413,A22+Wioska+barbarzy%C5%84ska,456,630,849037407,10220,0 +19414,.Wioska+barbarzy%C5%84ska,623,566,6929240,5241,0 +19415,Wioska+barbarzy%C5%84ska,636,531,7047342,10495,0 +19416,K34+-+%5B006%5D+Before+Land,444,371,699088769,10126,0 +19417,209,577,386,849064752,5139,0 +19418,%230012,516,637,699728159,9761,0 +19420,022,362,526,698641566,9809,0 +19421,Village,529,631,849094067,9579,0 +19422,Konfederacja,457,367,848915730,9720,0 +19423,086.+Faesulae,621,436,849091866,9084,0 +19424,018,368,540,8908002,9993,0 +19425,MojeSzczytToTw%C3%B3jDno,526,363,828637,10475,0 +19426,120,494,361,699761749,9722,0 +19427,MojeSzczytToTw%C3%B3jDno,533,365,828637,9737,0 +19428,%230016,518,634,699728159,9761,0 +19429,MojeSzczytToTw%C3%B3jDno,525,365,828637,10476,0 +19430,Bagdad,499,362,8847546,9285,0 +19431,Sebo1303,617,575,7973893,6461,0 +19432,0016,568,380,699485250,10211,0 +19433,0212,421,617,699697558,9561,0 +19434,056,367,538,8908002,4400,0 +19435,Gattacka,608,410,699298370,9792,0 +19436,Kentin+ufam+Tobie,377,436,699783765,10000,0 +19437,Wioska,373,548,849084005,10178,0 +19438,%230015,546,629,1536231,10495,0 +19439,021+Belatona,625,434,8337151,10495,0 +19440,sony911,576,616,1415009,10229,0 +19441,Zach%C3%B3d+-+014,388,581,225023,9778,0 +19442,154,593,400,849064752,10311,0 +19443,Westcoast.116,376,433,848918380,10178,0 +19444,09.+Wioska+9,374,553,849091769,10002,0 +19445,030.+Chersonesus,630,449,849091866,10495,0 +19446,0129,436,374,699431255,8973,0 +19448,018,628,542,8428196,9978,0 +19449,CSA,502,361,7651093,2936,0 +19450,K34+-+%5B150%5D+Before+Land,433,383,699088769,11130,6 +19451,065,366,514,6853693,9797,0 +19452,K34+x016,445,373,698364331,6565,0 +19453,033+Y13J,639,494,2135129,9300,0 +19454,616%7C427+Wioska+barbarzy%C5%84ska04,616,427,6822957,9560,0 +19455,014,442,625,849084985,10294,2 +19456,A0220,369,467,8841266,10362,0 +19457,WB+01,576,612,8627359,9411,0 +19458,0034+Executive+Director,416,607,9060641,10544,0 +19459,A0114,365,489,8841266,10362,0 +19460,013,614,579,699099811,9620,0 +19461,0053,454,368,699431255,10067,0 +19462,c+00446,414,389,3909522,8206,0 +19463,Wioska+%28025%29,638,472,698232227,9529,0 +19464,035,426,387,7462660,10478,0 +19465,%5B0087%5D,415,394,8630972,10495,0 +19466,005,444,625,849084985,9769,6 +19467,029,589,605,698999105,10311,0 +19468,BoOmBaa..,441,379,6169408,9139,0 +19469,Jaaa,612,584,698635863,10476,0 +19470,Pobozowisko,410,601,699513260,10955,0 +19471,MojeSzczytToTw%C3%B3jDno,516,364,828637,10474,5 +19472,Ave+Why%21,451,629,8729672,9877,0 +19473,XXXIV,540,371,698350371,9627,0 +19474,%7CA22%7C+nale%C5%9Bniki+z+granatem,500,639,849006145,9447,6 +19476,Wioska+barbarzy%C5%84ska,544,373,1990750,10068,0 +19478,005.,559,621,699695167,10004,0 +19479,Pobozowisko,403,597,699513260,10955,0 +19480,Wioska+barbarzy%C5%84ska,507,362,699368887,9994,0 +19481,013,370,551,6853693,10474,0 +19482,Jednak+wol%C4%99+gofry,487,640,6948793,9811,0 +19483,003+VC+Gangsta116+%40,396,408,3108144,9366,0 +19484,Armagedon,390,419,698884287,8527,0 +19485,%2A0037+Baraki,620,433,8459255,10178,0 +19486,Zeta+Reticuli+S,406,402,699323302,11188,0 +19487,s4+Osada+koczownik%C3%B3w,395,413,7462660,10132,3 +19488,%5B002%5D,458,634,698585370,10185,0 +19489,Kentin+ufam+Tobie,372,441,699783765,10000,0 +19490,%2A0032+Baraki,623,434,8459255,9349,0 +19491,Pobozowisko,404,602,699513260,10952,0 +19492,011.+Temeria,565,380,699799629,10495,0 +19493,Wioska+barbarzy%C5%84ska,387,581,699621601,4941,0 +19494,BoOmBaa..,441,376,6169408,8169,0 +19495,Wioska+barbarzy%C5%84ska,562,376,699072129,10221,0 +19496,0131,533,634,698659980,10019,0 +19497,A0183,359,488,8841266,10362,0 +19498,076,432,624,699783765,5464,0 +19499,045,371,541,8908002,6898,0 +19500,Jehu_Kingdom_18_,636,475,8785314,9993,6 +19501,Pobozowisko,408,605,699513260,8557,0 +19502,Pobozowisko,391,582,699513260,10957,0 +19503,Westcoast.097,393,421,848918380,10135,0 +19504,116,487,360,699761749,10232,0 +19505,C+001,586,390,6384450,10229,0 +19506,South+K35,550,369,699146580,10042,0 +19507,MojeSzczytToTw%C3%B3jDno,522,363,828637,10478,0 +19508,0122,534,635,698659980,10019,0 +19509,Wioska+barbarzy%C5%84ska,514,360,699368887,9994,0 +19510,Pobozowisko,399,591,699513260,10923,0 +19511,011+-+Valladolid,635,485,698342159,10019,0 +19512,Dania,386,426,1746216,7488,0 +19513,080,482,363,698739350,10237,0 +19514,%2AAteny_36,466,521,699333701,2320,0 +19515,Pobozowisko,403,602,699513260,10951,0 +19516,022,497,627,699878511,10152,0 +19517,%230025,545,631,1536231,10495,0 +19518,0372,563,626,698659980,10495,0 +19519,aaaa,478,635,6948793,9899,0 +19520,0119,434,377,699431255,9163,0 +19521,B+007,596,403,6384450,10362,0 +19522,014.+Wi%C5%82a,510,566,699703642,9902,0 +19523,D005,605,408,699761749,10495,0 +19525,0017,569,380,699485250,10211,0 +19526,061,359,510,698641566,9809,7 +19527,RTS+5,573,614,848995242,10495,0 +19528,R-8,562,374,3600737,9013,0 +19529,087.+Iaurinum,627,437,849091866,8562,0 +19530,005,601,595,698786826,10211,0 +19531,Ateny_70,470,519,2585846,3669,0 +19532,Za+lasem,359,490,699265922,9752,0 +19533,001,471,362,699883079,8799,0 +19534,Og%C3%B3rkowy+baron,403,400,356642,9835,0 +19535,VN+Edward+Elric,496,363,699883079,9933,0 +19536,Jan+.+izi+pizi+Nord+K,639,499,879782,9635,0 +19537,Kentin+ufam+Tobie,378,440,699783765,10000,7 +19538,048,362,518,6853693,10495,0 +19539,A0184,361,478,8841266,10362,0 +19540,068+OZDR,469,631,699336777,9825,0 +19541,077+Zgierz%C4%85tka,381,567,699382126,10495,0 +19542,Yeremiah,389,416,7462660,10068,0 +19543,083,479,366,698739350,10104,0 +19544,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,639,1434753,10068,1 +19545,Wioska,373,547,849084005,10178,0 +19546,070,437,626,849084985,10068,0 +19547,117,401,553,699382126,10628,0 +19548,Kentin+ufam+Tobie,368,456,699783765,10000,0 +19549,Zeta+Reticuli+S2,403,398,699323302,11188,0 +19550,A18+Wioska+barbarzy%C5%84ska,460,631,849037407,10223,0 +19551,Horyzont+zdarze%C5%84,544,636,7581876,10019,0 +19552,Nowa+16,622,567,698702991,9756,0 +19553,Obrze%C5%BCa+01,543,633,848915531,11130,0 +19554,A0171,367,470,8841266,10362,0 +19555,A004,474,633,699383279,9824,0 +19556,015+Wioska+barbarzy%C5%84ska,537,366,699854484,10178,0 +19557,038,575,385,699761749,10495,0 +19558,kathare,555,625,873575,9921,0 +19559,Pobozowisko,411,610,699513260,8805,0 +19560,078+Wehjerowo,379,570,699382126,10495,0 +19561,002,366,533,698641566,9809,0 +19562,018+Wioska+barbarzy%C5%84ska,539,364,699854484,10068,0 +19563,%5B016%5D,637,516,698305474,9809,0 +19564,Westcoast.059,379,435,848918380,10178,0 +19565,Pobozowisko,409,606,699513260,10951,0 +19566,016+Legio+XXII+Deiotariana,638,492,699878150,5463,0 +19567,Wioska+barbarzy%C5%84ska,390,415,7462660,9091,0 +19568,066,438,621,849084985,10401,0 +19569,Deveste+ufam+Tobie,431,620,699783765,7764,6 +19570,043,606,590,698786826,10262,0 +19571,039,610,584,698786826,9575,0 +19572,%2AINTERTWINED%2A,510,638,698704189,9711,0 +19573,Ave+Why%21,453,627,698585370,9198,0 +19574,Ulu-mulu,422,611,699697558,8742,0 +19575,D015,597,402,699761749,5364,0 +19576,005+181,359,509,698807570,10495,0 +19577,Kentin+ufam+Tobie,371,456,699783765,10000,0 +19578,Wioska+barbarzy%C5%84ska,628,554,7047342,10481,0 +19579,Jehu_Kingdom_11,625,435,8785314,7779,0 +19580,Majami,543,369,1990750,10068,0 +19581,Og%C3%B3rkowy+baron,400,405,356642,9835,0 +19582,Wioska+zygmunciarz,382,423,8967440,5724,0 +19583,.Krakers.+003,362,480,9163140,3630,0 +19584,015,565,621,699189792,9741,4 +19586,Szlachcic,636,494,699098531,9629,0 +19587,Konfederacja+%2B,451,371,848915730,9692,0 +19588,Westcoast.104,379,433,848918380,10178,0 +19589,R014,384,571,8607734,5600,0 +19590,Wioska+barbarzy%C5%84ska,476,361,698739350,9761,0 +19591,027,507,637,699878511,10160,0 +19592,157+Ale+mnie+g%C5%82%C3%B3wka+boli,375,560,699382126,8635,0 +19593,Pobozowisko,406,604,699513260,7456,8 +19594,014,360,519,698641566,9809,0 +19595,063,476,364,698739350,10237,0 +19596,053,361,518,698641566,9809,0 +19597,040+%7C+PALESTINA,634,462,9228039,6231,0 +19599,068,365,513,6853693,5967,0 +19600,004.,633,480,849094609,9889,0 +19601,Jan+0xxx+%2808%29+K,636,473,879782,9450,0 +19602,SSJ+014,512,642,699054373,9761,0 +19603,003,627,557,849095227,9746,0 +19604,%230010,517,637,699728159,9761,0 +19605,057,365,540,8908002,5195,0 +19606,148+Oj+Mareczku+co%C5%9B+za+du%C5%BCo+cyfr,375,565,699382126,10490,0 +19607,%230004,548,626,1536231,10495,0 +19608,0018,547,369,699485250,10211,0 +19609,.%3A024%3A.+%C5%81OBUZIK,554,369,848934935,9889,0 +19610,%5BB%5D_%5B201%5D+Dejv.oldplyr,432,383,699380607,9218,0 +19612,c+Robcio+80003qqqqqqqqqqqqqqqqqq,415,391,3909522,10005,0 +19613,HMS+Perseus,387,416,698884287,9301,0 +19614,C012,584,387,699761749,4976,0 +19615,028,555,629,699176234,10019,0 +19616,0207,418,615,699697558,5155,0 +19617,055,360,521,698641566,9809,0 +19618,018,362,528,698641566,9809,0 +19619,kathare,552,628,873575,10495,0 +19620,MojeSzczytToTw%C3%B3jDno,518,362,828637,10479,0 +19621,%230003,546,623,1536231,10495,0 +19622,029,630,551,849095227,9740,0 +19623,%5B0070%5D,411,397,8630972,10495,0 +19624,.Krakers.+004,364,478,9163140,3626,0 +19625,F+004,639,502,8078914,10137,0 +19626,P031+Sakai,637,507,8096537,9549,0 +19627,SSJ+004,510,640,699054373,9761,0 +19628,Kentin+ufam+Tobie,375,437,699783765,10000,0 +19629,Sony+911,576,615,1415009,10230,0 +19630,Gattacka,608,417,699298370,9747,0 +19631,0254,537,631,698659980,10019,0 +19632,064,473,362,698739350,10237,0 +19633,0227,516,600,698659980,10147,0 +19634,%7E%7E012%7E%7E,596,600,7829201,9760,0 +19635,Ave+Why%21,492,644,698585370,10104,0 +19636,%5B0083%5D,414,394,8630972,10495,0 +19637,A0300,362,499,8841266,10362,0 +19638,Jednak+wol%C4%99+gofry,496,640,699736927,10311,0 +19639,A+READY,602,407,1553947,10019,0 +19640,MojeSzczytToTw%C3%B3jDno,524,364,828637,10479,0 +19641,Wioska+barbarzy%C5%84ska,525,633,7756002,9950,0 +19642,135,574,381,849064752,10311,0 +19643,VN+Vanica+Zogriatis,465,363,699883079,9638,0 +19644,58.+Wioska+58,372,552,849091769,9111,0 +19645,Pobozowisko,399,597,699513260,10954,0 +19646,Pobozowisko,403,596,699513260,10951,0 +19647,Taran,551,374,699170684,9654,0 +19648,009.,637,479,849094609,9835,0 +19649,023+024,530,363,699491076,10001,0 +19650,%5B023%5D,634,527,698305474,9809,0 +19651,Wioska+barbarzy%C5%84ska,524,363,699208929,5573,0 +19652,069+Pot%C4%99%C5%BCny+Dzban,381,565,699382126,10484,0 +19653,Wioska+orton150,371,457,699523631,5127,0 +19654,Wied%C5%BAma+-+Celebryci,385,421,698884287,7700,0 +19655,BoOmBaa..,439,377,6169408,7095,0 +19656,.052.,485,361,698489071,10503,0 +19657,Wioska+barbarzy%C5%84ska,480,365,699658023,9556,0 +19658,004,385,425,848921536,9761,0 +19659,Mniejsze+z%C5%82o+0026,363,465,699794765,7284,7 +19660,Pobozowisko,384,579,699513260,10301,0 +19661,%2A5604%2A+LuncherS,620,575,7973893,10287,0 +19662,Wioska+barbarzy%C5%84ska,631,541,7047342,10487,0 +19663,001,604,596,698786826,10211,0 +19664,A0140,362,487,8841266,10362,0 +19665,026,364,533,698641566,9701,0 +19666,Jednak+wol%C4%99+gofry,499,640,699725436,10311,0 +19667,060,494,365,698739350,5531,0 +19668,036+Pelargir,615,580,699272880,10218,0 +19669,16.+Wioska+16,369,551,849091769,10068,0 +19670,BoOmBaa..,441,377,6169408,10495,0 +19671,VN+Chrollo+Lucilfer,466,365,699883079,9657,0 +19672,Wioska+barbarzy%C5%84ska,639,530,7047342,10622,0 +19673,Wioska+barbarzy%C5%84ska,368,447,3698627,10075,0 +19675,006+VC+Wioska+barbarzy%C5%84ska,392,414,3108144,8449,0 +19676,psycha+sitting,416,614,699736927,10311,9 +19677,029+na+%C5%82azarskim+rejonie,637,467,699272633,8969,0 +19678,Gattacka,610,413,699298370,9816,0 +19679,Ryszard+ty+draniu+%2Coddaj+rower%21%21,574,619,848995242,10495,0 +19680,070.+Lindum,631,448,849091866,10495,0 +19681,%3A%3A%3A+A+%3A%3A%3A+I,363,476,848917570,5021,0 +19682,Ave+Why%21,468,638,698585370,10068,0 +19683,051+%7C+PALESTINA,626,442,9228039,9544,0 +19684,039,371,553,8908002,9993,8 +19685,042,545,399,699761749,10495,0 +19686,079+Radom,381,569,699382126,10495,0 +19687,Pobozowisko,397,592,699513260,10393,0 +19688,Pobozowisko,387,584,699513260,10892,0 +19689,Wioska+barbarzy%C5%84ska,510,362,699368887,9994,0 +19690,D006,603,405,699761749,10495,0 +19692,.KSU,638,498,6929240,8353,0 +19693,Pobozowisko,404,596,699513260,10950,0 +19694,Ksi%C4%85d%C5%BA+do+spania+dzieciaku,462,637,698585370,9557,0 +19695,.achim.,533,445,6936607,7487,0 +19696,A0102,361,492,8841266,10362,0 +19697,Konfederacja+%2B,448,375,848915730,9833,4 +19698,a+mo%C5%BCe+off+%3F+%3A%29,619,575,698768565,9347,0 +19699,Myk+i+do+kieszonki,361,508,9319058,9799,0 +19700,054+%7C+PALESTINA,628,459,9228039,4018,0 +19701,Ave+Why%21,450,623,8729672,9861,0 +19702,Ulu-mulu,415,614,699697558,3842,3 +19704,Pobozowisko,392,582,699513260,10963,0 +19705,Taran,547,368,699170684,9389,0 +19706,WE+ARE+READY%21,597,399,1553947,9408,0 +19707,ave+why%21,450,632,698143931,9761,0 +19708,173,587,392,849064752,10085,0 +19709,a+mo%C5%BCe+off+%3F+%3A%29,634,541,698768565,9967,0 +19710,W.03,583,610,873575,10232,0 +19711,A27+Wioska+barbarzy%C5%84ska,469,634,849037407,10220,0 +19712,V+002,585,390,6384450,9141,0 +19713,-021-,393,593,699097885,9172,0 +19714,59.+Wioska+59,371,552,849091769,8554,0 +19715,Jehu_Kingdom_17_,632,467,8785314,9993,9 +19716,032.,471,637,849034882,10838,0 +19717,35.+Wioska+35,381,572,849091769,9848,0 +19718,204,585,393,849064752,5450,0 +19719,210,580,384,849064752,9659,0 +19720,Wioska+barbarzy%C5%84ska,637,515,6510480,6970,0 +19721,0138,429,379,699431255,9619,0 +19722,033,367,544,8908002,8535,0 +19723,0030,367,472,6258092,10887,0 +19724,Hepatica+nobilis,493,358,699883079,9933,0 +19725,Pobozowisko,389,588,699513260,3488,0 +19726,038,365,528,698641566,9809,0 +19727,C+011,584,389,6384450,8377,0 +19728,Wioska+barbarzy%C5%84ska,561,376,699072129,10216,0 +19729,007.,640,482,849094609,9813,0 +19730,0554,564,627,698659980,10019,0 +19731,015+016,540,367,699491076,10001,7 +19732,Wioska+barbarzy%C5%84ska,564,374,699072129,10218,0 +19733,Bagdad,502,359,8847546,9976,0 +19734,0121,438,376,699431255,8357,0 +19735,A007,521,363,699208929,10064,0 +19736,So%C5%82tys+Wsi+Misinho,437,397,849027025,9835,0 +19737,01.,509,361,699368887,10237,0 +19738,617%7C429+Wioska+barbarzy%C5%84ska08,617,429,6822957,9987,0 +19739,047,443,628,849084985,7922,0 +19740,Pobozowisko,410,609,699513260,8710,0 +19741,Og%C3%B3rkowy+baron,404,403,356642,9835,0 +19742,Wioska+barbarzy%C5%84ska,388,412,698884287,8671,0 +19743,053,441,629,849084985,9835,0 +19744,014.+Minas+Morgul,488,628,699494488,10237,0 +19745,125,491,363,699761749,10495,0 +19746,004+%C5%81ysy+Las,620,425,699429153,9899,0 +19747,z+056,587,604,699342219,10484,0 +19748,015.,572,384,699799629,10495,0 +19750,%2A0010+Baraki,621,429,8459255,10198,0 +19751,K43+x001,399,407,698364331,5865,0 +19752,017,615,583,699099811,9835,0 +19753,Residential+Area,526,633,8199417,10426,0 +19754,019+Legio+I+Brittannica,642,499,699878150,5161,0 +19755,Szlachcic,636,491,699098531,9626,0 +19756,A21+Wioska+barbarzy%C5%84ska,458,631,849037407,10223,0 +19757,B001,605,407,699761749,9445,0 +19758,019,608,592,698786826,10232,0 +19759,060,358,510,698641566,9809,0 +19760,167,583,389,849064752,10311,0 +19761,0052,452,366,699431255,9649,0 +19762,A0236,363,464,8841266,10362,0 +19763,140,574,379,849064752,10311,0 +19764,142+MIKOX+010,596,416,699491076,10001,0 +19765,0005,481,635,6180190,10431,0 +19767,%C5%9Alachcic,639,497,849093742,10019,0 +19768,181,387,582,8305343,2332,0 +19769,Wioska+barbarzy%C5%84ska,363,503,698807570,8888,0 +19770,108+Wioska+barbarzy%C5%84ska,605,414,699491076,9122,0 +19771,Osada+koczownik%C3%B3w,385,576,699621601,8364,2 +19772,Wioska+barbarzy%C5%84ska,534,367,1990750,10068,0 +19773,%3D036%3D+Wioska+barbarzy%C5%84ska,631,554,3781794,9100,0 +19774,002,626,557,849095227,9761,3 +19775,Jehu_Kingdom_10_,629,449,8785314,9993,0 +19776,a+mo%C5%BCe+off+%3F+%3A%29,636,539,698768565,10074,0 +19777,Druga+Dla+MOSE,580,615,699560327,5638,0 +19778,SSJ+021,508,637,699054373,9761,0 +19779,Wioska+barbarzy%C5%84ska,621,425,699429153,9825,0 +19780,0144,431,376,699431255,5677,0 +19781,050,374,551,6853693,6906,0 +19782,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,640,1434753,10068,0 +19783,Zeta+Reticuli+S2,399,408,699323302,9929,0 +19784,HMS+Warspite,384,422,8967440,12154,0 +19785,B016,599,405,699761749,7978,7 +19786,006.,631,480,849094609,9250,0 +19787,034,610,580,698786826,10218,0 +19789,059+Wioska+barbarzy%C5%84ska,535,366,699491076,10001,0 +19790,0001,538,633,698659980,10252,8 +19791,Wioska+barbarzy%C5%84ska,421,387,699402816,9835,0 +19792,A0222,365,465,8841266,10362,0 +19793,0019+Bezimienna,416,610,9060641,11727,0 +19794,010Rolety,448,630,698620694,9740,0 +19795,Wsch%C3%B3d+Droga+004,632,544,698562644,8883,0 +19796,A+READY,592,399,1553947,10019,0 +19797,Kentin+ufam+Tobie,377,437,699783765,10000,0 +19798,.%3A134%3A.+Niangmen,506,360,848934935,9676,0 +19799,Wioska+%28027%29,637,468,698232227,9188,0 +19801,0039,538,635,698659980,10083,0 +19802,Osada,380,430,699644054,1141,6 +19804,-053-,377,571,699097885,6278,0 +19805,Ave+Why%21,465,639,698585370,9917,0 +19806,Wied%C5%BAma+-+Barbakan,384,417,698884287,6368,0 +19807,SSJ+038,515,640,699054373,9761,0 +19808,Jednak+wol%C4%99+gofry,494,639,699725436,10311,0 +19809,%230033,545,628,1536231,10495,0 +19810,0044,451,368,699431255,9957,0 +19811,A003,474,638,699383279,9796,0 +19812,Wioska+barbarzy%C5%84ska,636,527,7047342,10481,0 +19813,Bagdad,500,366,8847546,10040,0 +19814,615%7C426+Wioska+barbarzy%C5%84ska05,615,426,6822957,9534,0 +19816,Belvedere+023,586,398,699756210,7592,0 +19817,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,638,2665207,10068,0 +19818,Wied%C5%BAma+-+Ateny,386,422,698884287,10552,0 +19819,Pobozowisko,406,600,699513260,10951,0 +19820,Lord+Lord+Franek+.%23207,512,361,698420691,10362,9 +19821,Piek%C5%82o+to+inni,516,453,848956765,10160,0 +19822,Taran,542,369,699170684,5332,0 +19823,W.02,586,607,873575,10362,0 +19824,c+055d,423,385,3909522,5977,0 +19826,%2AINTERTWINED%2A%2A,509,637,698704189,9711,0 +19828,%5B027%5D,637,513,698305474,9566,0 +19829,Wioska+Pog%C3%B3rze+4,635,536,698562644,10311,0 +19831,0208,419,615,6910361,10072,0 +19832,Wioska,370,550,849084005,7591,0 +19833,%230043,546,632,1536231,10495,0 +19834,Nowa+21,622,569,698702991,9830,0 +19835,0239,537,635,698659980,9211,0 +19836,%23012.510%7C489,629,440,556154,9735,0 +19837,SSJ+039,511,642,699054373,9761,0 +19838,Pobozowisko,381,573,699513260,10971,0 +19839,A016,585,386,699761749,10117,1 +19840,013,360,516,698641566,9809,0 +19841,mys,570,625,699828685,10311,0 +19842,XXXIII,541,371,698350371,10495,3 +19843,056,360,522,698641566,9809,0 +19844,063,358,513,698641566,9809,0 +19845,Village,527,634,849094067,12154,0 +19846,Ave+Why%21,460,635,698585370,10495,0 +19847,Darma,417,390,356642,9835,0 +19848,Ow+Konfederacja,598,400,848915730,10259,0 +19849,084+KUZYNI+mehehehe,472,634,699336777,9816,0 +19850,Wioska+barbarzy%C5%84ska,416,405,699402816,9835,0 +19851,Deveste+ufam+Tobie,433,619,699783765,6486,0 +19852,Za+rogiem,357,496,699265922,9752,2 +19853,Wioska,371,546,849084005,10178,0 +19854,010,387,421,848921536,4849,0 +19856,Wioska+barbarzy%C5%84ska,636,526,6510480,7946,0 +19857,Pobozowisko,405,600,699513260,10971,0 +19858,Taran,548,366,699170684,9364,0 +19859,A+READY,592,396,699759128,9581,0 +19860,039,491,382,698739350,9377,0 +19861,MojeSzczytToTw%C3%B3jDno,513,361,828637,10495,0 +19862,Lord+Lord+Franek+.%23208,517,359,698420691,10160,0 +19864,Pobozowisko,413,612,699513260,5962,0 +19865,006.+darthmoth298,560,625,699567608,10160,0 +19866,Wioska+barbarzy%C5%84ska,629,553,7047342,10824,0 +19867,A0185,360,485,8841266,10362,0 +19868,w+kupie+si%C5%82a+.,572,619,848995242,10362,0 +19869,Zeta+Reticuli+S2,394,408,699323302,11188,0 +19870,A0230,364,466,8841266,10362,0 +19871,027+czasem+zapija+si%C4%99+smutki,638,471,699272633,8945,0 +19872,K34+-+%5B147%5D+Before+Land,446,370,699088769,11130,4 +19873,Pobozowisko,390,587,699513260,8727,0 +19874,.Elana+Toru%C5%84.,623,571,6929240,9568,0 +19875,c+00448,413,391,3909522,8783,0 +19877,Pobozowisko,391,584,699513260,10957,0 +19878,Bizy+2,499,638,698585370,10201,0 +19879,003,365,533,698641566,9809,0 +19880,%5B0102%5D,406,396,8630972,10559,0 +19881,017,442,629,849084985,10237,0 +19882,c+0044+Wioska,413,388,3909522,10072,0 +19883,B.028,642,516,9188016,10000,0 +19884,Wioska+barbarzy%C5%84ska,616,582,699800992,6057,0 +19885,0064,462,366,699431255,9740,0 +19886,MojeSzczytToTw%C3%B3jDno,520,361,828637,10474,0 +19887,c+Tva,405,394,3909522,10142,0 +19888,-+332+-+RR,591,607,849018239,9452,0 +19889,Zeta+Reticuli+S2,395,405,699323302,11550,0 +19890,Gattacka,614,414,699298370,9761,0 +19891,Taran,556,373,699170684,9389,0 +19892,032,483,362,849010255,6905,0 +19893,Westcoast.010,383,437,848918380,10178,0 +19894,Deveste+ufam+Tobie,432,622,699783765,6164,0 +19895,001%29+Filipets,533,637,7589468,8999,0 +19896,011,589,611,699567608,9505,0 +19897,012,366,534,698641566,9809,3 +19898,211,579,385,849064752,10521,0 +19899,A03,463,633,849037407,9937,9 +19900,Zeta+Reticuli+S2,394,409,699323302,10728,0 +19901,-015-,394,589,699097885,9163,0 +19902,%230032,553,626,1536231,10495,0 +19903,008+Legio+I+Flavia+Martis,639,488,699878150,6538,0 +19904,Mniejsze+z%C5%82o+0023,361,467,699794765,9835,0 +19905,Pobozowisko,412,611,699513260,10630,0 +19907,014+-+Alicante,636,483,698342159,10019,0 +19909,A0115,363,495,8841266,10362,0 +19910,049+%7C+PALESTINA,637,465,9228039,4990,0 +19911,SSJ+033,513,640,699054373,9653,0 +19912,001+Wioska+dechami+zabita,568,377,699509239,7005,0 +19913,%210011,624,438,477415,10971,0 +19914,C+020,587,387,6384450,9968,0 +19915,062,441,623,849084985,7432,0 +19916,R-10,575,382,3600737,8291,0 +19917,Zeta+Reticuli+S2,394,405,699323302,10838,0 +19918,028,367,540,8908002,9914,0 +19919,w%C5%82adca+pieczeni,571,617,848995242,10362,0 +19920,C010,586,388,699761749,8566,0 +19921,009.+Hierosolyma,614,468,849091866,9469,0 +19922,015.+Minas+Tirith,485,616,699494488,10365,0 +19924,114,488,360,699761749,10495,0 +19925,Ow+Konfederacja,600,402,848915730,9976,0 +19926,Wioska+barbarzy%C5%84ska,510,360,699368887,9994,0 +19927,0376,579,618,698659980,8407,0 +19928,Pobozowisko,401,601,699513260,10950,0 +19929,054+Konosu,639,475,7092442,10083,0 +19930,%230048,550,627,1536231,10495,0 +19931,c+077d,419,384,3909522,5426,0 +19932,W.04,585,610,873575,10362,0 +19933,Wioska+barbarzy%C5%84ska,627,563,7047342,10481,0 +19934,014+By%C5%82em+Tam+Kolego,531,363,699491076,10001,0 +19935,178,563,371,849064752,10311,0 +19936,010,466,364,699883079,9642,0 +19937,014,635,533,699413040,9860,0 +19938,A02+Rosario,642,496,699272880,10263,0 +19939,%2A0036+Baraki,620,435,8459255,10158,0 +19940,R-14,577,383,3600737,9013,0 +19941,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,634,8201460,10237,0 +19942,%230024,546,631,1536231,10495,0 +19943,073,434,622,849084985,6506,0 +19944,%23059.,627,439,556154,6992,0 +19945,020+Wioska+barbarzy%C5%84ska,542,366,699854484,10068,0 +19946,045,364,537,6853693,6655,0 +19947,Wioska+barbarzy%C5%84ska,564,378,699072129,10218,0 +19948,045,471,364,698739350,10237,0 +19949,Bagdad,500,364,8847546,9835,0 +19950,A009,513,389,7758085,10094,0 +19951,A0211,361,498,8841266,10362,0 +19952,Lord+Lord+Franek+.%23181,513,358,698420691,9976,0 +19953,011+Legio+I+Flavia+Pacis+%28D%29,637,488,699878150,4885,0 +19954,Pobozowisko,378,573,699513260,10971,0 +19955,A0123,353,495,8841266,10362,0 +19956,162,588,392,849064752,10311,0 +19957,arkach,437,621,8588789,8790,0 +19958,Wioska+barbarzy%C5%84ska,633,533,7047342,10475,0 +19959,015,551,633,873575,10362,6 +19960,Sony+911,581,614,1415009,10259,0 +19961,017,389,415,848921536,3795,0 +19963,SSJ+001,509,641,699054373,9761,0 +19964,Wioska+barbarzy%C5%84ska,619,424,699429153,9825,0 +19966,E+002,596,597,8078914,10476,0 +19967,0036,538,637,698659980,10083,0 +19968,K34+-+%5B149%5D+Before+Land,443,373,699088769,5298,0 +19969,bucks+x+kamiiiru,410,419,848955783,7049,0 +19970,nic,572,624,699828685,10311,0 +19971,107,484,358,699761749,10495,0 +19972,Jojo,392,416,7462660,9709,0 +19973,%7E%7E041%7E%7E,599,599,7829201,9741,0 +19974,A0207,365,470,8841266,10362,0 +19975,Gniazdko,579,610,8627359,9505,0 +19976,MojeDnoToWaszSzczyt,562,377,699697558,7761,0 +19977,Ave+Why%21,492,641,698585370,9842,7 +19978,Ave+Why%21,492,642,698585370,10203,0 +19979,Kentin+ufam+Tobie,368,450,699783765,10000,0 +19980,c+Kolwicz+003,409,390,3909522,10064,0 +19981,gram+w+kuchni+.,574,622,848995242,10495,0 +19982,R016,383,571,8607734,3865,0 +19983,Horyzont+zdarze%C5%84,558,625,7581876,10019,0 +19984,020,631,549,8428196,9861,0 +19985,Jan+III+Nord+K,633,458,879782,9686,0 +19986,001,589,610,699567608,9031,0 +19987,c+006+Osada,413,394,3909522,10303,6 +19988,a+mo%C5%BCe+off+%3F+%3A%29,636,541,698768565,9722,0 +19989,nic,570,622,699828685,10117,0 +19990,c+Kolwicz+001,407,391,3909522,8832,0 +19991,020,630,549,849095227,9735,0 +19992,Kentin+ufam+Tobie,371,453,699783765,10000,0 +19993,Wioska+s,507,404,849044961,4368,0 +19994,054,444,628,849084985,8598,0 +19995,077,359,519,698641566,9809,0 +19996,0125,435,376,699431255,9730,0 +19997,.achim.,532,397,6936607,10311,0 +19998,0143,432,377,699431255,7051,0 +19999,Ow+Konfederacja,606,407,848915730,10273,8 +20001,025+Rivia,612,579,699272880,10373,0 +20002,006+Legio+I+Flavia+Gallicana,640,491,699878150,8107,0 +20003,0375,565,623,698659980,10252,0 +20004,033,481,361,849010255,6542,0 +20005,U-7,578,385,3600737,7607,0 +20006,0033+Wioska+barbarzy%C5%84ska,410,610,9060641,5807,0 +20007,038+Orthiad,626,434,8337151,10030,0 +20009,Deveste+ufam+Tobie,433,620,699783765,8502,0 +20010,Konfederacja,455,369,848915730,9370,0 +20011,nic,573,622,699828685,10311,0 +20013,Ave+Why%21,468,637,699121671,9809,0 +20014,Pobozowisko,409,607,699513260,10256,0 +20015,Sony+911,582,611,1415009,10221,0 +20016,155+Ale+mnie+g%C5%82%C3%B3wka+boli,376,566,699382126,7241,0 +20017,018+KTW,632,451,848883237,10495,0 +20018,Paulina+Obro%C5%84ca+Kuwety,538,429,699433558,9835,0 +20019,Kentin+ufam+Tobie,369,442,699783765,10000,0 +20020,153+Ale+mnie+g%C5%82%C3%B3wka+boli,376,567,699382126,10444,0 +20021,008,456,366,699883079,9672,0 +20022,017+Legio+XV+Apollinaris,640,497,699878150,4194,0 +20023,Jehu_Kingdom_58,637,476,8785314,5726,0 +20025,Ave+Why%21,459,636,698585370,9029,0 +20026,084,642,511,699351301,6199,0 +20027,kathare,547,636,873575,9860,0 +20028,Kentin+ufam+Tobie,370,457,699783765,10000,0 +20029,0023,538,638,698659980,10083,0 +20030,Wioska+barbarzy%C5%84ska,638,531,7047342,10475,0 +20031,pepe,361,530,849030226,6715,0 +20032,002,384,572,699621601,8746,0 +20033,%23029.516%7C501,635,452,556154,9735,0 +20034,K34+-+%5B146%5D+Before+Land,445,371,699088769,11130,0 +20035,042,367,548,6853693,6425,0 +20036,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,491,637,6180190,9936,0 +20037,080,637,522,699351301,8140,0 +20038,MojeSzczytToTw%C3%B3jDno,522,378,828637,10495,0 +20039,027,361,531,698641566,9883,0 +20040,007,363,519,698641566,4344,4 +20041,0043,620,423,699429153,9825,0 +20042,612%7C422+Wioska+barbarzy%C5%84ska10,612,422,6822957,9827,0 +20043,Ow+Konfederacja+%2B,600,398,848915730,10311,0 +20044,A0202,365,471,8841266,10362,0 +20045,%230027,547,627,1536231,10495,0 +20046,Kentin+ufam+Tobie,366,450,699783765,10014,0 +20047,003,365,542,8908002,9993,4 +20048,009,631,547,849095227,9761,0 +20049,053,364,518,6853693,6381,0 +20050,kathare,547,620,873575,10495,0 +20051,Wioska+barbarzy%C5%84ska,625,567,6929240,8937,0 +20052,021,361,516,698641566,9809,0 +20053,Jednak+wol%C4%99+gofry,496,639,699736927,10311,0 +20054,A0221,366,472,8841266,10362,0 +20055,Westcoast.108,379,432,848918380,10178,0 +20056,XXXX,504,363,849054951,10132,0 +20057,nic,574,621,699828685,10301,0 +20058,CSA,525,362,7651093,5971,0 +20059,A33,463,635,849037407,10495,0 +20060,Pobozowisko,393,587,699513260,10971,0 +20061,Mniejsze+z%C5%82o+0027,363,470,699794765,9229,0 +20062,056+Kuzyn+skonfiskowa%C5%82+Drewnik,378,569,699382126,10487,2 +20063,No+Way,402,470,6258092,8897,0 +20064,%2A5622%2Aa+Weso%C5%82a,638,523,7973893,10287,0 +20065,0057,444,368,699431255,9981,0 +20067,019,445,629,849084985,10178,0 +20068,Westcoast.083,396,411,848918380,10178,0 +20069,Westcoast.109,378,434,848918380,10178,0 +20070,056,433,381,6169408,7725,0 +20072,011+Wioska+barbarzy%C5%84ska,535,368,699854484,10178,0 +20073,%5B168%5D,633,547,8000875,6625,0 +20074,026.,643,493,849094609,9816,0 +20075,212,577,380,849064752,10838,0 +20076,0056,449,367,699431255,9998,0 +20078,pepe,361,524,849030226,6048,0 +20079,%230032+gram+w+lig%C4%99,462,364,1238300,10178,0 +20080,051+Wioska+barbarzy%C5%84ska,543,365,699854484,10301,0 +20081,%2AINTERTWINED%2A%2A,504,643,698704189,9711,0 +20082,%C5%BBelazna,506,488,698349125,6502,0 +20083,A+READY,591,403,1553947,10160,0 +20084,kathare,556,632,873575,9983,0 +20085,Og%C3%B3rkowy+baron,401,405,356642,9835,0 +20086,Wioska+barbarzy%C5%84ska,548,365,699072129,10470,0 +20087,C012+Ankhsunamon,623,564,8096537,9747,0 +20088,Jednak+wol%C4%99+gofry,498,639,699725436,10311,0 +20089,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,536,637,7589468,8825,0 +20090,sony911,575,618,1415009,8998,0 +20091,Wied%C5%BAma+-+Dragoni,386,423,698884287,8549,1 +20092,Kentin+ufam+Tobie,367,452,699783765,10000,0 +20093,Zeta+Reticuli+S2,394,413,699323302,10997,0 +20094,%2A0018+Baraki,623,433,8459255,9645,0 +20095,A0148,356,496,8841266,10362,0 +20096,Sony+911,576,617,1415009,10268,0 +20097,003+Hello+Moto,600,419,699491076,10001,0 +20098,0074,559,624,698659980,10083,0 +20100,044,433,389,699783765,10887,0 +20101,%23021.510%7C488,629,439,556154,9735,0 +20102,Wioska+%28029%29,639,472,698232227,8907,0 +20103,Jednak+wol%C4%99+gofry,493,640,699725436,10311,0 +20104,Piek%C5%82o+to+inni,481,383,848956765,10160,0 +20105,Fresio,435,374,699660539,10106,0 +20106,B.037,642,504,9188016,10000,0 +20107,Gattacka,609,408,699298370,8844,0 +20108,Jednak+wol%C4%99+gofry,485,642,699725436,10311,0 +20109,Kentin+ufam+Tobie,365,453,699783765,10000,0 +20110,Pobozowisko,407,608,699513260,8331,0 +20111,Yogi,552,634,2808172,10019,0 +20112,012+Legio+I+Illyricorum,642,487,699878150,7816,0 +20113,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,633,8201460,10237,0 +20115,0019,548,369,699485250,10211,0 +20116,028.+Hakerrrrr,576,385,699799629,6657,0 +20117,0369,561,627,698659980,10316,0 +20119,065,465,361,698739350,10237,0 +20120,0031,508,497,698599365,9490,0 +20121,021+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,630,453,9228039,7939,0 +20122,Wioska+barbarzy%C5%84ska,508,360,699368887,9994,0 +20123,Wioska+barbarzy%C5%84ska,622,568,6929240,8986,0 +20124,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,501,643,699725436,9640,0 +20125,%23063.,622,435,556154,9735,0 +20126,Wioska+3,382,427,699343887,3086,0 +20127,a+mo%C5%BCe+off+%3F+%3A%29,634,539,698768565,10377,0 +20128,Pobozowisko,408,607,699513260,8729,0 +20130,0066,456,369,699431255,10056,0 +20132,084,365,544,6853693,6877,0 +20133,Ave+Why%21,491,643,698585370,9689,0 +20134,011,358,517,698641566,9809,3 +20135,%5B014%5D,636,536,698305474,9809,0 +20136,%2A0031+Baraki,625,437,8459255,10330,0 +20137,018+Tronjheim,626,435,8337151,10160,5 +20138,015,605,596,698786826,10220,0 +20139,25.+Wioska+25,373,552,849091769,9843,0 +20140,011,387,422,848921536,3962,0 +20141,Wioska+barbarzy%C5%84ska,506,363,699368887,9994,0 +20142,Wioska+barbarzy%C5%84ska,514,363,699368887,9994,0 +20143,020,444,631,849084985,9899,0 +20144,Wioska+barbarzy%C5%84ska,387,418,698884287,9038,0 +20145,059,363,513,6853693,9345,0 +20146,025,590,608,698999105,10311,0 +20147,066,468,360,698739350,10237,0 +20148,0046,621,422,699429153,9782,0 +20149,0021,537,638,698659980,10160,0 +20150,Ulu-mulu,415,615,699697558,3219,0 +20151,a+mo%C5%BCe+off+%3F+%3A%29,633,551,698768565,9329,0 +20152,0112,436,378,699431255,9002,0 +20153,093,584,385,849064752,10311,7 +20154,A0186,360,477,8841266,10362,0 +20155,025+Wioska+barbarzy%C5%84ska,538,365,699854484,10068,0 +20156,012+Pole+Mokotowskie,538,468,8155296,4400,0 +20157,Jednak+wol%C4%99+gofry,495,643,699725436,10311,0 +20158,122,490,362,699761749,10495,0 +20159,012,635,549,849095227,9735,3 +20160,067,471,361,698739350,9994,0 +20161,A0143,360,495,8841266,10362,0 +20162,%7CX%7C+Roguebell,467,640,698147372,9191,0 +20163,Wioska,370,547,849084005,10178,0 +20164,Ulu-mulu,420,613,699697558,9173,0 +20165,%C5%9Apij+s%C5%82odko+nale%C5%9Bniczku,483,639,6948793,9670,0 +20166,Osada+koczownik%C3%B3w,376,429,699644054,1244,5 +20167,Westcoast.098,378,430,848918380,10178,0 +20169,Ave+Why%21,470,640,699121671,9809,0 +20170,57.+Wioska+57,366,548,849091769,6757,0 +20171,Pobozowisko,386,587,699513260,9653,0 +20172,%230040,542,631,1536231,10495,0 +20173,Jednak+wol%C4%99+gofry,484,639,699725436,9266,0 +20174,Konfederacja+%2B,456,368,848915730,10001,4 +20175,0408,540,636,698659980,9384,0 +20176,034,483,360,849010255,7945,0 +20177,Kentin+ufam+Tobie,369,456,699783765,10000,0 +20178,%5BB%5D_%5B202%5D+Dejv.oldplyr,431,382,699380607,9545,0 +20179,BoOmBaa..,441,370,6169408,9450,0 +20180,0041,453,367,699431255,10311,0 +20181,05.+Wioska+5,372,556,849091769,10011,0 +20182,039....STRAZAK,459,363,6920960,10273,0 +20183,079,433,373,6169408,5806,0 +20184,Kentin+ufam+Tobie,367,446,699783765,10000,0 +20185,016,611,583,699099811,9835,0 +20186,024+023,533,362,699491076,10001,0 +20187,BoOmBaa..A,443,375,6169408,6466,0 +20188,Wioska+1,382,428,699343887,6029,0 +20189,F+003,637,508,8078914,10050,0 +20190,%7E%7E020%7E%7E,598,605,7829201,9818,0 +20191,037,366,529,698641566,9809,0 +20192,0016+MzM,621,565,698416970,9258,7 +20193,BoOmBaa..,442,370,6169408,3096,0 +20194,025+026,536,363,699491076,10001,0 +20195,012+Wioska+barbarzy%C5%84ska,567,376,699509239,6340,0 +20196,Jednak+wol%C4%99+gofry,497,640,699725436,10311,0 +20197,129,475,360,7271812,5265,0 +20198,a+mo%C5%BCe+off+%3F+%3A%29,618,579,698768565,9367,0 +20199,033...strazak,461,365,6920960,10559,0 +20200,kathare,552,629,873575,10362,0 +20201,Fresio,434,373,699660539,9924,0 +20202,%2A3+Myszki+Harcuj%C4%85,588,429,848985692,10047,0 +20203,Wioska+barbarzy%C5%84ska,505,359,699368887,7626,0 +20204,007,631,557,849095227,9761,0 +20206,Wioska+barbarzy%C5%84ska,372,554,699326171,8043,0 +20207,%7E%7E038%7E%7E,596,603,7829201,9750,0 +20208,%2A0012+Baraki,620,429,8459255,10251,0 +20209,008G%C4%85siory,450,633,698620694,9606,0 +20210,Wied%C5%BAma+-+Honolulu,381,420,698884287,9150,9 +20212,024,627,561,849095227,9721,0 +20213,Wioska+barbarzy%C5%84ska,633,537,7047342,10481,0 +20214,037,424,385,698364331,10918,0 +20215,068,476,363,698739350,10237,0 +20216,%7CX%7C+Caveham,468,639,698147372,10495,0 +20217,Kentin+ufam+Tobie,371,443,699783765,10000,0 +20218,W.08,582,614,873575,10232,0 +20219,-056-,377,569,699097885,5638,0 +20220,014+181,358,502,698807570,10049,0 +20221,Kentin+ufam+Tobie,366,452,699783765,10000,0 +20222,MojeDnoToWaszSzczyt,558,370,699697558,10495,0 +20223,A014,477,638,699383279,9858,0 +20224,015,588,609,699567608,9646,0 +20225,062,427,623,699783765,4675,0 +20226,Pobozowisko,398,593,699513260,9319,0 +20227,031+181,360,500,698807570,9160,0 +20228,a+mo%C5%BCe+off+%3F+%3A%29,618,576,698768565,9489,0 +20229,063+%23%C5%BBWMP,370,544,8908002,9400,0 +20231,Westcoast.101,376,430,848918380,10178,7 +20233,A0187,360,487,8841266,10362,0 +20234,0014+MzM,613,581,698416970,9258,0 +20235,W.181%2F19,639,529,2999957,10242,0 +20236,MojeSzczytToTw%C3%B3jDno,525,363,828637,10474,0 +20237,081,482,360,698739350,10378,0 +20238,028,360,530,698641566,9809,0 +20239,0118,434,376,699431255,9735,0 +20240,Gattacka,608,412,699298370,9751,0 +20241,38.+Wioska+38,376,569,849091769,9672,0 +20242,0055,460,366,699431255,10311,0 +20243,Gattacka,610,415,699298370,9747,0 +20244,MojeSzczytToTw%C3%B3jDno,511,361,828637,10495,0 +20245,MojeSzczytToTw%C3%B3jDno,524,365,828637,10476,0 +20246,06.+Wioska+6,371,560,849091769,8184,0 +20247,046,604,593,698786826,10216,0 +20248,023,363,534,698641566,9883,0 +20249,VN+Killua+Zoldyck,467,365,699883079,9643,0 +20250,058,364,538,8908002,3779,0 +20251,%7E%7E037%7E%7E,593,609,7829201,9745,0 +20252,Mniejsze+z%C5%82o+0028,364,461,699794765,7834,0 +20253,030+Wioska+barbarzy%C5%84ska,540,364,699854484,9976,0 +20254,Wioska+barbarzy%C5%84ska,635,543,7047342,10484,0 +20255,-040-,387,579,699097885,9428,2 +20256,002,604,597,698786826,10211,0 +20257,Jehu_Kingdom_35_,627,447,8785314,9993,0 +20258,014,588,608,699567608,9519,0 +20259,.Wioska+barbarzy%C5%84ska,626,564,6929240,6509,0 +20260,072,430,375,699796330,7065,0 +20261,A0144,358,494,8841266,10362,0 +20262,Wioska+barbarzy%C5%84ska,629,555,7047342,10487,0 +20263,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,488,637,6180190,9049,0 +20264,Ow+Konfederacja,606,403,848915730,10273,0 +20265,0053,614,412,699429153,9825,0 +20266,Pobozowisko,405,606,699513260,9650,5 +20267,Wioska+4,382,429,699343887,3086,0 +20268,Wioska+barbarzy%C5%84ska,513,362,699368887,9994,0 +20269,Astapor,466,636,6948793,10362,0 +20270,Kentin+ufam+Tobie,367,448,699783765,10000,0 +20271,A0188,364,486,8841266,10362,0 +20272,Jednak+wol%C4%99+gofry,490,641,699725436,9968,0 +20273,Og%C3%B3rkowy+baron,401,396,356642,9835,2 +20274,Knowhere,357,506,699723284,4994,0 +20275,tutaj,387,417,698884287,9251,0 +20276,005,370,546,6853693,10484,5 +20277,001.+Las+Sherwood,449,378,698364331,10362,0 +20278,WE+ARE+READY%21,593,398,699759128,9624,0 +20279,049.,469,635,849034882,10066,0 +20280,Pobozowisko,399,596,699513260,10951,4 +20281,.%3A091%3A.+%C5%81OBUZIK,553,366,848934935,5786,0 +20282,.Krakers.+006,361,479,9163140,2064,0 +20283,043,364,521,6853693,5707,0 +20284,C+022,589,391,6384450,4910,0 +20285,%3A%3A%3A+B+%3A%3A%3A+I,365,475,848917570,4155,0 +20286,0238,532,634,698659980,9847,0 +20287,.Krakers.+001,364,481,9163140,5136,0 +20288,015,610,583,699099811,10252,0 +20289,Kentin+ufam+Tobie,365,452,699783765,10000,0 +20290,018,444,629,849084985,9362,0 +20291,aaaa,474,637,6948793,9899,0 +20292,Knowhere,382,496,699723284,10484,0 +20293,%7E%7E026%7E%7E,595,605,7829201,9794,0 +20294,Ave+Why%21,455,636,698585370,7473,0 +20295,009.+Manchester,634,446,849095599,9835,0 +20296,004+Legio+I+Flavia+Constantia+R,640,488,699878150,5794,0 +20297,110,478,360,7271812,10495,0 +20298,c+0013,411,389,3909522,10237,0 +20299,%2A2%2A,580,385,849064614,10061,0 +20300,026+025,542,362,699491076,10001,0 +20301,027+028,538,363,699491076,10001,0 +20302,Westcoast.081,397,407,848918380,10178,0 +20303,Bagdad,424,383,8847546,8775,0 +20304,A0288,358,481,8841266,10362,0 +20305,0006,480,637,6180190,10359,0 +20306,213,579,387,849064752,8972,0 +20307,009+Wioska+barbarzy%C5%84ska,566,376,699509239,4773,0 +20308,021.,634,457,849094609,9830,0 +20309,016,607,595,698786826,10216,0 +20310,%3D025%3D+Wioska+barbarzy%C5%84ska,628,552,3781794,7741,0 +20311,055,439,625,849084985,7979,0 +20312,056,440,624,849084985,9835,0 +20313,019,430,622,699783765,5468,0 +20314,A015,471,641,699383279,9474,0 +20315,01.+Wioska+1,373,560,849091769,9358,0 +20316,Pobozowisko,402,604,699513260,9126,0 +20317,.%3A022%3A.+%C5%81OBUZIK,554,368,848934935,10252,0 +20318,005,384,426,848921536,9395,0 +20319,Lord+Lord+Franek+.%23203,515,358,698420691,10362,0 +20320,Jaaa,615,582,698635863,9677,0 +20321,Pobozowisko,391,587,699513260,10971,0 +20322,042,609,591,698786826,10221,0 +20323,%2AINTERTWINED%2A,510,639,698704189,9711,0 +20324,016.+Smoke,636,455,849095599,8911,0 +20325,keepo,477,513,848967710,4051,0 +20327,Salamony,626,570,849095778,6302,0 +20328,%23044,492,617,699605333,10393,0 +20329,%3A%3A%3A+A+%3A%3A%3A+II,363,475,848917570,4987,0 +20330,013+Laleczka+Chucky,539,365,699491076,10001,0 +20331,Gattacka,612,414,699298370,9745,0 +20332,Pobozowisko,399,594,699513260,10951,0 +20333,a+mo%C5%BCe+off+%3F+%3A%29,632,558,698768565,9353,0 +20334,0010+MzM,618,544,698416970,9258,0 +20335,South+K35,551,368,699146580,10042,0 +20337,.Wioska+barbarzy%C5%84ska,627,562,6929240,5788,0 +20338,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,491,639,698585370,9545,0 +20339,Lord+Lord+Franek+.%23198,514,357,698420691,10362,0 +20340,kathare,548,618,873575,10495,0 +20341,Syringa+vulgaris,494,356,699883079,9856,0 +20342,Jan+019+K,640,471,879782,9425,0 +20343,020,610,585,699099811,9835,0 +20344,c+Wioska,416,385,3909522,7166,0 +20345,170,573,378,849064752,10311,0 +20346,0381,583,617,698659980,10019,0 +20347,062,359,511,698641566,9809,0 +20348,004,360,544,8908002,9993,0 +20349,015+Legio+I+Flavia+Virtutis+%28G%29,644,489,699878150,10034,0 +20350,Mniejsze+z%C5%82o+0060,363,460,699794765,6218,0 +20351,-+330+-+RR,599,603,849018239,9878,0 +20352,Kentin+ufam+Tobie,375,438,699783765,10000,0 +20353,010+Wioska+barbarzy%C5%84ska,569,376,699509239,5348,0 +20355,030,585,609,698999105,10311,0 +20356,Taran,545,367,699170684,9364,0 +20358,%230012,550,628,1536231,10495,0 +20359,023+Legio+I+Martia,641,499,699878150,3934,0 +20360,BoOmBaa..,440,369,6169408,3553,0 +20361,Lord+Lord+Franek+.%23205,519,359,698420691,10362,0 +20362,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,640,1434753,10068,0 +20363,Pobozowisko,388,592,699513260,10863,0 +20364,0380,582,616,698659980,10019,0 +20365,lady+anima,512,573,699703642,10451,0 +20366,0039,614,418,699429153,9746,0 +20367,Gattacka,610,410,699298370,9367,0 +20368,Ave+Why%21,467,637,698585370,9320,0 +20369,Ulu-mulu,418,619,699697558,2262,0 +20370,-+331+-+RR,594,609,849018239,9817,0 +20371,a+mo%C5%BCe+off+%3F+%3A%29,636,544,698768565,8751,0 +20372,074,642,524,699351301,9761,0 +20373,%5B022%5D,635,527,698305474,9809,0 +20374,0250,535,633,698659980,10019,0 +20375,040,440,628,849084985,8784,0 +20376,069,477,363,698739350,10237,0 +20377,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,518,642,1434753,10068,0 +20378,Wioska+barbarzy%C5%84ska,625,569,6929240,9302,0 +20379,Wioska+barbarzy%C5%84ska,525,359,1990750,10068,0 +20380,Pobozowisko,390,584,699513260,8783,0 +20381,aaaa,467,636,6948793,10178,0 +20382,kathare,557,629,873575,10362,0 +20383,49.+Wioska+49,364,548,849091769,6180,0 +20384,073+Tu+si%C4%99+nie+%C5%9Bpi+harry88,382,572,699382126,10475,0 +20385,WB003,581,615,8627359,9345,0 +20386,Pobozowisko,398,601,699513260,10966,0 +20387,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,634,8201460,10237,0 +20388,094.+Zama+Regia,634,455,849091866,8365,0 +20389,0120,436,377,699431255,7887,0 +20390,Oxalis+acetosella,492,356,699883079,9513,0 +20391,MojeSzczytToTw%C3%B3jDno,521,361,828637,10475,0 +20392,Kentin+ufam+Tobie,371,446,699783765,10000,0 +20393,MojeSzczytToTw%C3%B3jDno,524,362,828637,10495,0 +20395,c+Robcio+80004,414,391,3909522,9311,0 +20396,A0163,361,477,8841266,10362,0 +20397,South+K35,550,366,699146580,10042,0 +20398,%7E%7ELataj%C4%85cyHolender%7E%7E,600,498,9174887,10143,0 +20399,0386,586,615,698659980,10019,0 +20400,001+%7C+PALESTINA,633,444,9228039,9544,0 +20401,050,612,585,698786826,9753,0 +20402,Za+sciana,359,496,699265922,9752,7 +20403,Wioska+barbarzy%C5%84ska,378,572,849095992,5777,0 +20404,Wioska+barbarzy%C5%84ska,508,359,699368887,9994,0 +20405,Jednak+wol%C4%99+gofry,499,643,699725436,10290,0 +20406,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,640,7589468,9211,0 +20407,002K%C4%85t%C3%B3wka+aku,446,631,698620694,9708,0 +20408,B006,603,409,699761749,10495,0 +20409,Gattacka,608,414,699298370,9357,5 +20410,--3.+Zadupie,390,409,698345556,10290,0 +20411,A0208,366,473,8841266,10362,0 +20412,017+-+Mroczna+Osada,626,439,849035905,10329,0 +20413,0025+MzM,638,460,698416970,9258,2 +20414,109+Wioska+barbarzy%C5%84ska,536,361,699491076,10001,0 +20415,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,636,1434753,10068,0 +20417,081,641,523,699351301,6255,0 +20419,A005,477,639,699383279,9808,0 +20420,42.+Wioska+42,374,566,849091769,7800,0 +20421,B017,607,408,699761749,10495,0 +20422,B.061,642,509,9188016,10000,0 +20423,Jehu_Kingdom_36_,628,443,8785314,9993,0 +20424,03.+Wioska+3,372,561,849091769,9643,0 +20425,.050.,483,361,698489071,10160,0 +20426,000002,584,614,873575,10362,4 +20428,Pobozowisko,398,594,699513260,10971,0 +20429,A0149,356,491,8841266,10362,0 +20430,028+Wioska+barbarzy%C5%84ska,539,367,699854484,10068,0 +20431,23.+Wioska+23,365,548,849091769,8316,0 +20432,a+mo%C5%BCe+off+%3F+%3A%29,620,577,698768565,9969,0 +20433,A0189,357,482,8841266,10362,0 +20435,102,485,359,699761749,10495,0 +20436,017+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,627,441,9228039,9544,0 +20437,032...strazak,460,363,6920960,10444,0 +20438,yyyy,492,362,699883079,10178,2 +20440,060,420,381,698160606,7542,0 +20441,%7E%7E014%7E%7E,599,602,7829201,9816,0 +20442,A0164,360,489,8841266,10362,0 +20443,017,608,593,698786826,10217,0 +20444,Wioska+barbarzy%C5%84ska,542,363,7158871,6337,0 +20445,%3A%3A%3A+A+%3A%3A%3A,364,476,848917570,6635,0 +20446,SSJ+023,512,641,699054373,9761,0 +20447,Zeta+Reticuli+S2,395,404,699323302,10795,0 +20448,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,480,638,6180190,9647,0 +20449,%7E%7E001%7E%7E,599,605,7829201,9694,8 +20450,Pobozowisko,410,608,699513260,8613,0 +20451,Zach%C3%B3d+-+015,388,580,225023,6646,0 +20452,Ave+Why%21,462,640,698585370,10362,0 +20453,Og%C3%B3rkowy+baron,401,397,356642,9835,0 +20454,0010,579,386,699485250,10168,1 +20455,0379,582,618,698659980,10019,0 +20456,A0141,356,493,8841266,10362,0 +20457,Kentin+ufam+Tobie,372,439,699783765,10014,0 +20458,Wioska+barbarzy%C5%84ska,630,556,7047342,10636,0 +20459,070,359,521,698641566,8639,0 +20460,c+002+Wioska,410,389,3909522,10300,0 +20461,Zeta+Reticuli+S2,393,409,699323302,10997,0 +20462,045.+Olisipo,636,456,849091866,9241,0 +20463,068,505,367,698739350,8426,0 +20464,Pigi+1,620,588,699778867,12154,0 +20465,Wioska+barbarzy%C5%84ska,623,569,6929240,9191,0 +20466,Kentin+ufam+Tobie,370,451,699783765,10000,0 +20468,006,367,539,8908002,9993,0 +20469,Deveste+ufam+Tobie,437,629,699783765,8366,0 +20470,006,386,578,699621601,4339,0 +20471,616%7C426+Wioska+barbarzy%C5%84ska17,616,426,6822957,9721,0 +20472,011,362,543,8908002,7617,0 +20473,Wioska+barbarzy%C5%84ska,357,509,698807570,6934,0 +20474,002+P%C5%82aska+Kotlina,623,425,699429153,9847,2 +20475,024+181,357,503,698807570,9807,0 +20476,Pobozowisko,385,586,699513260,10957,0 +20478,M181_058,371,437,393668,9886,0 +20480,030+roni21,640,499,9238175,10282,0 +20481,0003,479,640,699117178,5297,0 +20482,%5BC%5D_%5B004%5D+Dejv.oldplyr,358,474,699380607,10495,0 +20483,041,501,357,849010255,7298,0 +20484,Wioska+barbarzy%C5%84ska,630,554,7047342,10487,0 +20485,011+Miyagi,640,480,7092442,10160,3 +20486,Westcoast.107,372,432,848918380,10178,0 +20487,Pobozowisko,403,598,699513260,10957,0 +20488,A017,584,386,699761749,7071,0 +20489,Ulu-mulu,414,613,699697558,3277,0 +20490,057,441,630,849084985,10146,0 +20491,032+181,357,505,698807570,8326,0 +20492,A36,474,643,849037407,9860,0 +20493,010+KTW,625,432,848883237,10495,0 +20494,0028,537,637,698659980,10019,0 +20495,0039,449,366,699431255,10015,0 +20496,kathare,551,641,873575,10285,0 +20497,%7E%7E034%7E%7E,593,608,7829201,9491,0 +20498,0124,533,635,698659980,10083,0 +20499,089.+Zatoka+Szara,636,457,8337151,10362,0 +20500,036,365,529,698641566,9809,0 +20501,005.,638,477,849094609,9656,0 +20502,0064,639,528,6510480,9150,0 +20503,Wioska+barbarzy%C5%84ska,363,528,699425709,2287,0 +20504,033+181,360,501,698807570,8099,0 +20505,Wioska+barbarzy%C5%84ska,525,638,7756002,9924,0 +20506,MojeDnoToWaszSzczyt,557,368,699697558,10495,6 +20507,Majin+Buu+012,438,563,699054373,9357,0 +20508,072,363,523,6853693,7389,0 +20509,Kentin+ufam+Tobie,373,445,699783765,10000,5 +20511,Wioska+barbarzy%C5%84ska,394,404,6171569,2574,0 +20512,SSJ+032,510,643,699054373,9761,0 +20513,Pobozowisko,392,596,699513260,10393,0 +20514,Ow+Konfederacja,600,403,848915730,10061,0 +20515,005+Wioska+barbarzy%C5%84ska,568,376,699509239,4883,0 +20516,Skellige,529,365,1990750,10068,0 +20517,0038,615,417,699429153,8615,0 +20518,004+181,355,499,698807570,9806,0 +20519,075,366,537,6853693,6221,0 +20520,107,443,617,849084985,7772,0 +20521,%23028.517%7C500,636,451,556154,9735,0 +20522,A0076,366,468,8841266,10362,3 +20523,Kentin+ufam+Tobie,367,455,699783765,10000,0 +20524,A0190,361,487,8841266,10362,0 +20525,Wioska+barbarzy%C5%84ska,521,360,699208929,6992,0 +20526,012+181,359,500,698807570,10057,0 +20527,005,429,621,699783765,4168,0 +20528,ADEN,581,434,698588535,9730,0 +20529,ETAT+Z+PO%C5%9AREDNIAKA,423,618,848913998,7973,0 +20530,Wioska+%28035%29,637,459,698232227,6060,0 +20531,c+001+Wioskaqqqqqqqqqqqqqqqqqqqq,410,387,3909522,10083,0 +20532,ETAT+Z+PO%C5%9AREDNIAKA,426,619,848913998,7419,0 +20533,013+181,359,499,698807570,9296,0 +20534,Wioska+barbarzy%C5%84ska,622,571,6929240,8998,0 +20535,Fresio,435,373,699660539,9907,0 +20536,086,366,545,6853693,5962,0 +20537,kathare,547,637,873575,10362,0 +20538,007+181,356,501,698807570,10049,0 +20539,a+mo%C5%BCe+off+%3F+%3A%29,637,544,698768565,9348,0 +20540,SSJ+058,515,642,699054373,9281,0 +20541,A005,598,394,699761749,7502,0 +20542,B008,601,405,699761749,10164,7 +20543,030,642,523,849006412,5687,0 +20544,074+Najwi%C4%99kszy+dzban,377,564,699382126,10490,0 +20545,K34+-+%5B083%5D+Before+Land,447,367,699088769,10259,9 +20548,0103,420,618,699697558,7091,0 +20549,001+VC+Vandip,392,413,3108144,7866,0 +20550,024,448,633,849084985,10229,3 +20551,off+100+%25,367,555,849012521,8886,0 +20552,011+181,359,505,698807570,10051,0 +20553,009Wr%C3%B3bl%C3%B3wki,451,632,698620694,9358,0 +20554,Wioska+barbarzy%C5%84ska,442,369,699191455,9971,0 +20555,Kentin+ufam+Tobie,369,440,699783765,10247,0 +20557,Wioska+barbarzy%C5%84ska,624,573,6929240,8930,0 +20558,018+-+Mroczna+Osada,626,438,849035905,12146,0 +20559,021+KUZYNI,486,641,699336777,9996,0 +20560,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,640,7589468,8816,0 +20561,.%3A025%3A.+%C5%81OBUZIK,556,368,848934935,9210,0 +20562,166,580,381,849064752,10311,0 +20563,0021,414,612,9060641,6676,0 +20564,Wioska+barbarzy%C5%84ska,630,559,7047342,10487,0 +20565,WelcomeToTheJungle,621,505,699795378,10362,0 +20566,%2A0020+Baraki,620,428,8459255,10082,0 +20567,023,448,632,849084985,10218,0 +20568,06.+Nevada,407,613,9060641,10941,0 +20569,Pobozowisko,389,587,699513260,7468,0 +20570,a+mo%C5%BCe+off+%3F+%3A%29,638,545,698768565,9329,0 +20571,VN+Neferpitou,493,357,699883079,10178,0 +20572,%3D001-006-A%3D%2B%40%23-4-,569,626,699287032,10193,0 +20573,001+myself,567,636,699828685,10068,0 +20575,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,639,1434753,10068,0 +20576,a+mo%C5%BCe+off+%3F+%3A%29,625,574,698768565,9544,0 +20577,Kentin+ufam+Tobie,372,440,699783765,10000,0 +20578,Taran,544,365,699170684,9707,0 +20579,Maszlug+kolonia+XIII,370,437,848977649,5050,0 +20580,Nowa+23,614,578,698702991,9827,0 +20581,0652,567,629,698659980,9839,0 +20582,036+Nirasaki,638,475,7092442,10495,0 +20583,006,399,600,9264752,10495,0 +20584,004+Umy%C5%82em+Z%C4%85bki,534,362,699491076,10001,0 +20585,0066,638,517,6510480,8458,0 +20586,Wioska+barbarzy%C5%84ska,529,361,1990750,9976,0 +20587,024+KTW,637,455,848883237,10495,0 +20588,028+i+bywa+czila%C5%82towo,639,471,699272633,9594,0 +20589,B.039,644,502,9188016,10003,0 +20590,020+This+land+is+ours%21,643,491,699878150,9909,0 +20591,011.+Barbarian+Village,555,626,699567608,9335,0 +20592,Lord+Lord+Franek+.%23211,518,359,698420691,10362,0 +20593,Deveste+ufam+Tobie,435,627,699783765,10083,0 +20594,Westcoast.117,373,435,848918380,10178,0 +20595,%2AINTERTWINED%2A,512,623,698704189,9711,0 +20596,012,388,417,848921536,4189,0 +20597,A0155,359,486,8841266,10362,0 +20598,0409,543,637,698659980,8217,0 +20599,019+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,629,441,9228039,9544,0 +20600,0041,616,423,699429153,9825,0 +20601,A19+Wioska+barbarzy%C5%84ska,463,634,849037407,10223,0 +20602,0555,567,628,698659980,10495,0 +20603,K43+x002,393,406,698364331,4817,0 +20604,Wioska+barbarzy%C5%84ska,639,482,698613394,1638,0 +20605,022+VC+HMS+Cheshire,383,422,3108144,8648,0 +20606,Taki+Pan,520,357,698420691,10362,0 +20607,035,365,532,698641566,10031,0 +20608,049,357,517,698641566,9809,0 +20609,075.+Marna,627,435,8337151,10083,0 +20610,022%7C%7C+Leo+Minor,487,641,849035525,10019,0 +20611,017,361,540,8908002,10005,0 +20612,c+Kolwicz+002,408,390,3909522,9414,0 +20613,Pobozowisko,404,605,699513260,7884,0 +20614,Mako+Reactor+1+-+B5F,553,632,8199417,3173,0 +20615,-048-,381,575,699097885,6882,0 +20616,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,636,8201460,10237,0 +20617,c+Wioska,416,387,3909522,8301,0 +20618,062,588,391,7271812,4837,0 +20619,kathare,555,630,873575,10268,0 +20620,11.+Wioska+11,374,556,849091769,9909,0 +20621,Ow+Konfederacja+%2B,599,399,848915730,10311,0 +20623,Kentin+ufam+Tobie,369,443,699783765,10000,0 +20624,A024,585,384,699485250,10168,0 +20626,0059,535,634,698659980,10160,0 +20627,.%3A060%3A.+%C5%81OBUZIK,508,358,848934935,10311,0 +20628,kathare,555,633,873575,10203,0 +20629,017,610,407,699298370,9454,0 +20630,Pobozowisko,399,595,699513260,10950,0 +20631,009,603,592,698786826,10211,0 +20632,029,360,529,698641566,9809,0 +20633,K34+-+%5B148%5D+Before+Land,445,369,699088769,11130,0 +20634,Wioska+barbarzy%C5%84ska,629,557,7047342,10481,0 +20635,Deveste+ufam+Tobie,438,630,699783765,8646,0 +20636,025,643,522,699413040,9860,0 +20637,Jednak+wol%C4%99+gofry,492,638,699725436,9788,0 +20638,Wioska+barbarzy%C5%84ska,511,358,699368887,9994,0 +20639,%5B007%5D,455,635,8729672,8785,0 +20640,Pobozowisko,411,608,699513260,5134,0 +20641,Kentin+ufam+Tobie,368,440,699783765,10000,0 +20642,033+Ch%C5%82opaki+nie+bijcie,631,440,698829590,4767,0 +20643,kathare,549,636,873575,9851,0 +20644,0556,563,629,698659980,10362,0 +20645,Wioska+barbarzy%C5%84ska,629,437,699429153,9110,0 +20647,Wioska+barbarzy%C5%84ska,634,548,7047342,10484,0 +20649,0006,578,621,698659980,10252,8 +20650,053,614,586,698786826,6591,0 +20651,011Deszcz,450,630,698620694,9761,0 +20652,071,356,512,698641566,9809,0 +20653,Ulu-mulu,419,620,699697558,2738,0 +20654,214,576,380,849064752,7636,0 +20655,0008,572,623,698659980,10252,2 +20656,Bagdad,499,360,8847546,10096,0 +20657,%230025,542,637,699728159,9761,0 +20658,0115,434,375,699431255,10019,0 +20659,aaaa,484,642,6948793,10068,0 +20660,B%C5%82aszki,625,572,849095778,10718,0 +20661,B.036,640,504,9188016,10000,0 +20662,0557,568,627,698659980,10019,0 +20663,003,373,540,6853693,10481,0 +20664,036+%7C+PALESTINA,636,464,9228039,7414,0 +20666,Kentin+ufam+Tobie,373,442,699783765,10000,0 +20667,Karka-han+%28LazyShiro%29,413,578,698769107,9835,0 +20668,022,447,632,849084985,10285,0 +20669,Wioska+barbarzy%C5%84ska,530,360,1990750,10068,0 +20670,SSJ+046,515,644,699054373,9761,0 +20671,C+012,590,390,6384450,5382,0 +20672,070,470,365,698739350,9761,0 +20673,B.042,642,519,9188016,10000,0 +20674,SSJ+071,504,641,699054373,8184,0 +20675,113,476,358,7271812,10444,0 +20677,A0191,360,486,8841266,10362,0 +20679,Jednak+wol%C4%99+gofry,488,639,699725436,8760,0 +20680,010+181,355,503,698807570,10048,0 +20681,Westcoast.096,392,421,848918380,10178,0 +20682,jaaa,630,563,698635863,10495,0 +20683,Ave+Why%21,462,639,698585370,10471,0 +20684,MELISKA,358,469,699794765,8894,0 +20686,Z001,523,359,699208929,10089,0 +20687,0558,565,626,698659980,9756,9 +20688,%7E%7E015%7E%7E,609,595,7829201,9819,0 +20689,A0134,356,489,8841266,10362,0 +20690,A+READY,594,396,699759128,10444,6 +20691,061,615,589,698786826,5762,0 +20692,Wioska+1,384,585,849012521,10478,0 +20693,004,385,581,699621601,9593,0 +20694,Wioska+barbarzy%C5%84ska,511,360,699368887,9994,0 +20695,A013,473,641,699383279,9785,0 +20696,Wioska+barbarzy%C5%84ska,628,561,6929240,7197,0 +20697,Pobozowisko,406,610,699513260,8615,0 +20698,B005,645,494,9314079,9821,0 +20699,Gattacka,611,410,699298370,9897,0 +20700,Jaaa,570,559,698635863,10495,0 +20701,The+Game+Has+Only+Just+Begun,359,533,9280477,9976,0 +20702,Pobozowisko,387,583,699513260,10971,0 +20703,150+Ale+mnie+g%C5%82%C3%B3wka+boli,376,568,699382126,5120,0 +20704,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,638,1434753,10068,0 +20705,%230023,517,639,699728159,5859,0 +20706,Taran,557,369,699170684,9379,0 +20707,Knowhere,380,497,699723284,10452,0 +20708,kathare,556,634,873575,10495,0 +20709,%23023.511%7C491,630,442,556154,9735,0 +20710,Niegodziwo%C5%9Bci,547,364,699072129,10636,0 +20711,A0192,355,485,8841266,10362,0 +20712,%5B001%5D,459,634,699238479,12154,0 +20713,c+080d,416,383,3909522,5654,0 +20714,066,361,512,698641566,9809,0 +20715,038,371,565,8908002,9993,0 +20716,B020,645,501,9314079,9818,0 +20717,Wioska+barbarzy%C5%84ska,367,458,3698627,9962,0 +20718,021,449,631,849084985,10285,0 +20719,Nowa+22,619,571,698702991,9835,0 +20720,031,362,532,698641566,9582,0 +20721,0387,586,616,698659980,10019,0 +20722,005,458,367,699883079,9653,0 +20723,Bagdad,500,360,8847546,9976,0 +20724,001+Legio+I+Adiutrix+%28G%29,641,490,699878150,9785,0 +20725,.Wioska+.,639,537,6929240,5553,0 +20726,0559,567,623,698659980,10252,0 +20727,026+181,356,504,698807570,10495,0 +20728,A0214,364,469,8841266,10362,0 +20729,035+Y13J,644,493,2135129,9553,0 +20730,051+Kuzyn+skonfiskowa%C5%82+Eneid%C4%99,379,578,699382126,10474,0 +20731,Pobozowisko,395,598,699513260,9397,0 +20732,.%3A085%3A.+%C5%81OBUZIK,555,369,848934935,9968,0 +20733,007.+Acapulco,636,454,849095599,9835,6 +20734,a+mo%C5%BCe+off+%3F+%3A%29,625,575,698768565,9555,0 +20735,-034-,383,586,699097885,4063,0 +20736,017,544,524,699316421,9665,0 +20737,%2A%2AA+bo+co...,576,624,699443920,9761,0 +20738,Szlachcic+059,546,522,758104,5155,0 +20739,136,578,383,849064752,10311,0 +20740,069,356,518,698641566,9592,0 +20741,Wioska+barbarzy%C5%84ska,435,629,6910361,5786,0 +20742,kathare,557,627,873575,10362,6 +20743,017,635,534,699413040,9860,0 +20744,Deveste+ufam+Tobie,434,623,699783765,6519,0 +20745,005.+Maroko,638,455,849095599,9835,0 +20746,The+Game+Has+Only+Just+Begun,357,527,9280477,9976,0 +20747,kathare,557,633,873575,10268,0 +20748,180,581,618,8627359,9285,0 +20749,Ave+Why%21,469,638,698585370,4833,0 +20750,Pobozowisko,389,584,699513260,8419,0 +20751,073,356,513,698641566,9809,0 +20752,a+mo%C5%BCe+off+%3F+%3A%29,619,579,698768565,9534,0 +20753,WE+ARE+READY%21,594,397,1553947,8653,0 +20754,Lord+Lord+Franek+.%23219,518,357,698420691,10362,0 +20755,a+mo%C5%BCe+off+%3F+%3A%29,637,539,698768565,9411,0 +20756,%5B0008%5D,559,633,699567608,10253,0 +20757,R-12,582,384,3600737,8319,0 +20758,xxx,504,445,698239813,10495,0 +20759,%2A0005+Baraki,618,424,8459255,10679,0 +20760,024,639,523,699413040,9860,0 +20761,0097,539,633,698659980,10083,0 +20762,002+Legio+XXI+Rapax,643,488,699878150,7529,0 +20763,%7E%7E017%7E%7E,614,589,7829201,9814,0 +20764,018+Legio+I+Pontica,641,498,699878150,4068,0 +20765,The+Game+Has+Only+Just+Begun,359,528,9280477,5019,0 +20766,020.,640,461,849094609,10083,0 +20767,0137,439,372,699431255,8093,0 +20768,Pobozowisko,401,598,699513260,10372,0 +20769,Wioska+zielonelody,429,625,2105150,12154,0 +20770,0026+MzM,639,462,698416970,9258,0 +20771,016,428,627,699783765,4022,0 +20772,0020,414,611,9060641,6726,0 +20773,071,470,364,698739350,10237,0 +20774,0128,438,375,699431255,7887,0 +20775,Wioska+barbarzy%C5%84ska,436,369,699308637,10481,0 +20776,0024,539,639,698659980,10160,0 +20777,-001-+Celia,558,367,699072129,10220,0 +20778,jaaa,634,555,698635863,10728,0 +20779,015,361,539,8908002,9548,0 +20780,%5B0011%5D,559,629,699567608,9016,0 +20781,%2A5603%2A+KKS+Kalisz,620,574,7973893,10287,2 +20782,Wsch%C3%B3d+Droga+003,637,545,698562644,10311,0 +20783,0128,536,641,698659980,10019,0 +20784,060,427,621,699783765,5721,0 +20785,076,364,539,6853693,6671,0 +20786,MojeDnoToWaszSzczyt,559,371,699697558,10495,0 +20787,off+100+%25,382,581,849012521,10254,0 +20788,011.+Koczkodan,637,457,849095599,9860,0 +20789,035,487,361,849010255,7036,0 +20790,Jednak+wol%C4%99+gofry,486,639,6948793,9811,0 +20791,Westcoast.105,375,435,848918380,10178,0 +20792,016+181,354,501,698807570,9243,0 +20793,Bagdad,473,389,8847546,10654,0 +20794,64.+Wioska+64,369,563,849091769,7330,0 +20795,0111,419,619,699697558,1708,0 +20796,Gattacka,609,407,699298370,9720,0 +20797,Lord+Lord+Franek+.%23212,511,356,698420691,10362,0 +20798,.004.K%C5%82alaLumpur,567,372,699072129,10229,0 +20799,003+Niska+G%C3%B3ra,617,423,699429153,9899,0 +20800,.%3A118%3A.+Niangmen,506,396,848934935,9835,0 +20802,A0218,363,472,8841266,10362,0 +20803,.002.Alabastia,563,375,699072129,10232,0 +20804,019,359,524,698641566,9809,8 +20805,Pobozowisko,395,587,699513260,8762,0 +20806,%7E%7E028%7E%7E,592,607,849018239,9795,0 +20807,MojeDnoToWaszSzczyt,562,369,699697558,10495,0 +20808,Lord+Lord+Franek+.%23199,513,357,698420691,10362,0 +20809,025+Wioska,645,487,699671454,9071,0 +20810,A0173,357,478,8841266,10362,0 +20811,Pobozowisko,391,593,699513260,8480,0 +20812,020,642,475,849093875,3746,0 +20813,A0080,355,492,8841266,10362,0 +20814,039+Maryland,607,481,7092442,10495,0 +20815,.001.Xenomorf,564,370,699072129,10237,0 +20816,Tylko+nie+p%C5%82acz,457,601,699364813,9702,0 +20817,Kentin+ufam+Tobie,363,455,699783765,10000,0 +20818,Drewno,533,642,7589468,8819,1 +20819,Mniejsze+z%C5%82o+0045,364,465,699794765,6599,0 +20820,Pobozowisko,405,604,699513260,8956,0 +20821,-017-,391,589,699097885,8736,0 +20822,017+FOXX,641,494,9238175,10409,0 +20823,C007,587,385,699761749,7701,0 +20824,077,481,359,698739350,10713,0 +20825,053,369,549,8908002,9993,0 +20826,007Przeci%C4%85g,447,631,698620694,9708,0 +20827,ETAT+Z+PO%C5%9AREDNIAKA,422,618,848913998,6882,0 +20828,015,638,522,699413040,9860,0 +20829,Pobozowisko,407,611,699513260,10954,0 +20830,0061,456,362,699431255,10075,0 +20831,171,583,386,849064752,10311,0 +20832,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,636,7589468,8996,0 +20833,0051,450,367,699431255,9730,0 +20834,Ave+Why%21,454,637,698585370,10471,0 +20836,Pobozowisko,391,590,699513260,9260,0 +20837,%21Myk+i+do+kieszonki,381,582,699621601,10495,0 +20838,Szlachcic,421,378,698388578,10237,0 +20839,Ave+Why%21,453,634,698585370,7718,0 +20840,0135,430,374,699431255,9745,0 +20841,Ave+Why%21,448,627,8729672,9811,0 +20842,Wioska+barbarzy%C5%84ska,632,554,7047342,10622,0 +20843,Avanti%21,355,508,698625834,9950,0 +20844,Osada+koczownik%C3%B3w,411,385,699402816,10311,9 +20845,0052,540,635,698659980,10160,0 +20846,Deveste+ufam+Tobie,429,620,699783765,3762,0 +20848,%2A0023+Baraki,629,431,8459255,10344,0 +20849,%7E%7E006%7E%7E,597,608,7829201,9815,0 +20850,Zeta+Reticuli+S2,390,405,699323302,10477,0 +20851,%7E%7E010%7E%7E,604,601,7829201,9816,0 +20852,025,628,559,849095227,9732,0 +20853,003,588,611,699567608,9646,0 +20854,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,642,1434753,9960,0 +20855,BoOmBaa..,438,372,6169408,6867,0 +20857,033+034,531,362,699491076,10001,0 +20859,143,587,384,849064752,10311,0 +20860,kathare,546,638,873575,10362,0 +20861,60.+KaruTown,625,478,849060446,9735,0 +20862,Wioska,383,587,699621601,9587,0 +20863,B.026,643,520,9188016,10000,0 +20864,HMS+Drake,386,420,698884287,9285,0 +20865,Pobozowisko,403,606,699513260,5169,0 +20866,%2A5622%2A+Happy+happy,641,527,7973893,10287,3 +20867,kiki,375,575,849095992,4376,0 +20868,033+Wioska+barbarzy%C5%84ska,544,364,699854484,9976,0 +20869,Wioska+Kaimek,367,554,699797252,2997,0 +20870,Pobozowisko,407,606,699513260,7085,0 +20871,VN+Menthuthuyoup,492,357,699883079,10409,0 +20872,Taran,546,367,699170684,9364,0 +20873,010+Legio+I+Parthica,641,493,699878150,4101,0 +20874,003,600,598,698786826,10211,0 +20875,Chatachama,384,416,698884287,9682,8 +20877,Pobozowisko,382,574,699513260,10971,0 +20878,003+Wioska+IdzieJesien,569,372,699509239,7824,0 +20879,Ave+Why%21,494,644,698585370,10235,0 +20880,Yogi,545,634,2808172,10019,0 +20881,Wioska+barbarzy%C5%84ska,639,532,7047342,10487,0 +20882,Ave+Why%21,466,637,698585370,8990,0 +20883,Obrze%C5%BCa+06,544,632,848915531,10971,0 +20884,083,585,382,849064752,10311,0 +20885,001,403,431,699788305,9875,0 +20886,0384,584,619,698659980,10083,0 +20887,xkikutx,520,359,1990750,10068,0 +20888,042-+Mroczna+Osada,636,447,849035905,10459,0 +20889,Darmowe+przeprowadzki,479,644,848935389,10019,0 +20890,W.07,582,613,873575,10362,0 +20891,A017,583,385,699761749,3870,0 +20892,111+Wioska+barbarzy%C5%84ska,534,359,699491076,10001,0 +20893,Yogi,553,634,2808172,8458,0 +20894,0113,435,377,699431255,8616,0 +20895,Ow+Konfederacja,605,400,848915730,8251,0 +20896,%249.000+Grvvyq,635,551,699676005,10495,0 +20897,Wioska+barbarzy%C5%84sk33,387,411,698884287,10285,0 +20898,%2A0019+Baraki,621,430,8459255,10189,0 +20899,--006--,382,415,698884287,10285,0 +20900,%7E%7E005%7E%7E,600,603,7829201,9814,0 +20901,%7E%7E022%7E%7E,598,603,7829201,9816,0 +20902,36.+Wioska+36,373,569,849091769,8120,0 +20903,039,502,358,849010255,6771,0 +20904,04.+Wioska+4,374,560,849091769,10019,0 +20905,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,639,1434753,10068,7 +20906,003.,484,650,849034882,10495,0 +20907,Ulu-mulu,411,615,699697558,3251,0 +20909,a+mo%C5%BCe+off+%3F+%3A%29,617,578,698768565,9424,0 +20911,0022,537,639,698659980,10160,0 +20913,%23035.519%7C501,638,452,556154,9735,0 +20914,A0232,365,463,8841266,10362,0 +20915,%2AINTERTWINED%2A,507,645,698704189,9711,0 +20916,030,362,531,698641566,9965,0 +20917,46.+Wioska+46,366,549,849091769,7963,0 +20918,115,622,424,7085502,9697,0 +20919,0009,483,644,6180190,9814,0 +20920,Wioska+barbarzy%C5%84ska,629,561,6929240,8114,0 +20921,Bagdad,502,360,8847546,9976,0 +20922,108,485,355,699761749,10495,0 +20923,026,451,637,849084985,9899,0 +20924,Ulu-mulu,420,621,699697558,2030,0 +20925,%23060.,629,434,556154,9614,0 +20926,057+Yatomi,642,476,7092442,10495,0 +20927,A35,472,644,849037407,10241,0 +20928,%23030.516%7C502,635,453,556154,9735,0 +20931,059,358,511,698641566,8362,0 +20932,215,579,384,849064752,4951,0 +20933,Aldrajch+to+nie+Slonsk+gorolu,375,439,699711723,5590,0 +20934,Og%C3%B3rkowy+baron,400,401,356642,9835,0 +20935,%23022.518%7C500,637,451,556154,9735,0 +20936,004,362,534,698641566,9809,0 +20937,35k%24+Grvvyq,634,550,699676005,10295,0 +20938,Jan+na+kra%C5%84cu+%C5%9Bwiata,645,499,879782,8422,0 +20939,53.+Wioska+53,364,546,849091769,8390,0 +20940,%2A0027+Baraki,626,431,8459255,10057,0 +20941,0023,593,383,699485250,10211,0 +20942,RTS+12,577,621,848995242,10362,0 +20943,Wioska+barbarzy%C5%84ska,623,430,8337151,5308,0 +20944,082,641,512,699351301,6821,0 +20945,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,643,1434753,9826,0 +20946,Pobozowisko,409,613,699513260,8962,0 +20947,Jan+013+k,642,472,879782,9427,0 +20948,0371,562,628,698659980,10252,0 +20949,005,393,570,699621601,9610,0 +20950,072,469,361,698739350,9902,0 +20951,Wioska+Polanski19ooo7,453,543,699698253,2802,0 +20952,0030,535,640,698659980,10083,0 +20953,02.+Wioska+2,372,560,849091769,9783,0 +20954,122,576,382,849064752,10311,0 +20955,033,638,512,699413040,10001,0 +20956,60.+Wioska+60,370,554,849091769,10003,0 +20957,A0295,361,488,8841266,10362,0 +20958,0004,479,643,699117178,10218,5 +20959,127,475,358,7271812,6369,0 +20960,035,611,587,698786826,10237,0 +20961,Jednak+wol%C4%99+gofry,491,641,699725436,5056,0 +20962,%2A0022+Baraki,622,432,8459255,10060,0 +20963,yogi,546,635,2808172,10019,0 +20964,034,449,637,849084985,9835,0 +20965,Ulu-mulu,417,619,699697558,2805,0 +20966,Zeta+Reticuli+S2,391,405,699323302,10838,0 +20967,0042,617,421,699429153,9825,0 +20968,Gattacka,609,404,699298370,9619,0 +20969,Gattacka,607,405,699298370,9819,8 +20971,Konfederacja,449,368,848915730,9976,0 +20972,0145,430,372,699431255,6016,0 +20973,B.040,644,503,9188016,10000,0 +20974,WE+ARE+READY%21,597,391,1553947,6442,0 +20975,.%3A128%3A.+Niangmen,506,398,848934935,9825,0 +20976,Wioska+barbarzy%C5%84ska,621,419,699429153,9717,0 +20977,034+Armeria,618,585,699272880,10068,0 +20978,044,472,360,698739350,10237,0 +20979,006.Critical+2.0,632,441,699429153,10083,0 +20980,A012,474,641,699383279,9794,0 +20981,0025,539,640,698659980,10019,0 +20982,ADEN,526,379,698588535,9737,0 +20983,Zeta+Reticuli+S2,394,401,699323302,10081,0 +20984,off+100+%25,382,583,849012521,10163,0 +20985,V+001,589,390,6384450,8894,0 +20986,Jan+028+%281%29,641,469,879782,8836,0 +20987,Gattacka,611,414,699298370,9745,0 +20988,111,483,356,699761749,10273,0 +20989,a+mo%C5%BCe+off+%3F+%3A%29,622,577,698768565,9555,0 +20990,0058,448,365,699431255,9999,0 +20991,012+Dobry+Film,537,362,699491076,10001,0 +20992,Wioska+barbarzy%C5%84ska,638,527,7047342,10484,0 +20993,%5B012%5D,609,590,1715091,9835,0 +20994,024,362,527,698641566,9809,0 +20995,025,362,536,6853693,5562,7 +20996,A009,518,361,699208929,10035,0 +20997,Wied%C5%BAma,382,420,698884287,4335,0 +20999,Ave+Why%21,490,640,698585370,7944,0 +21000,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,640,1434753,10068,0 +21001,W.06,585,613,873575,10362,0 +21002,051,614,587,698786826,8870,0 +21004,103,486,356,699761749,10495,0 +21005,Wioska+barbarzy%C5%84ska,641,532,6510480,7043,0 +21006,Janxxv+01+K,642,469,879782,9694,0 +21007,Wioska,366,547,849084005,8308,0 +21008,053+Kuzyn+skonfiskowa%C5%82+Atlantyd%C4%99,378,577,699382126,10495,0 +21009,%5B026%5D,639,514,698305474,9809,0 +21010,0035,449,365,699431255,10135,6 +21011,BoOmBaa..,440,371,6169408,10495,0 +21013,Jehu_Kingdom_47,642,467,8785314,7472,0 +21014,A0193,360,481,8841266,10362,0 +21015,.3.,366,555,849012521,8175,0 +21016,Spasny,641,513,8784866,6528,0 +21017,119,471,357,7271812,10495,0 +21018,aaaa,479,642,6948793,9835,0 +21019,Westcoast.099,374,430,848918380,10178,0 +21020,016+015,537,361,699491076,10001,1 +21021,012,605,593,698786826,10211,0 +21022,091.+Byblus,626,432,849091866,9289,0 +21023,Lesne+dzbany,579,620,848995242,10495,0 +21024,Ave+Why%21,463,639,698585370,10495,0 +21025,Wioska_1,489,356,848942968,3577,0 +21026,Hey+You,625,568,848926293,7401,0 +21027,%230029+gram+w+lig%C4%99,461,363,1238300,10178,0 +21028,ave+why%21,449,634,698143931,10311,0 +21029,Kentin+ufam+Tobie,369,446,699783765,10495,0 +21030,22.+Wioska+22,366,557,849091769,10158,0 +21031,054,426,621,699783765,5585,6 +21032,A022,587,383,699485250,10035,0 +21033,Jaaa,614,581,698635863,10481,0 +21034,RTS+10,580,622,848995242,10346,0 +21035,Kentin+ufam+Tobie,366,455,699783765,10000,0 +21036,003.+Piszcza%C5%82ka,504,642,848928624,10216,0 +21037,Szlachcic,426,376,698388578,8196,0 +21038,Osada+koczownik%C3%B3w,526,638,7589468,8884,2 +21039,monetki+D,637,548,698768565,9334,0 +21040,0560,568,628,698659980,10019,0 +21041,Lord+Lord+Franek+.%23180,515,355,698420691,10144,0 +21042,006,360,517,698641566,9809,0 +21043,Wioska+barbarzy%C5%84ska,624,564,7047342,10479,0 +21044,0093,459,397,699431255,9835,0 +21045,Wioska+barbarzy%C5%84ska,386,418,698884287,8909,0 +21046,004,429,623,699783765,4213,2 +21047,B007,645,489,9314079,10890,0 +21048,.005.Mul%C4%99R%C3%B3%C5%BC,561,373,699072129,10232,0 +21049,036,612,589,698786826,9291,0 +21050,MELISKA,358,470,699794765,10369,0 +21051,psycha+sitting,454,639,699736927,10311,0 +21052,The+Game+Has+Only+Just+Begun,358,528,9280477,9976,0 +21053,052,642,532,699351301,10160,7 +21054,A-026,400,399,8419570,10168,0 +21055,Og%C3%B3rkowy+baron,404,396,356642,9835,0 +21056,008.,645,502,849094609,9925,0 +21057,A007,598,393,699761749,10011,0 +21059,014,607,592,698786826,10211,0 +21060,A011,472,641,699383279,9819,0 +21062,%23.43+Wioska+barbarzy%C5%84ska,638,482,849054582,4622,0 +21063,%5B0006%5D+Franek+154,560,629,699567608,9011,0 +21064,Gattacka,612,416,699298370,9809,0 +21065,VN+Franklin+Bordeau,455,366,699883079,8458,0 +21066,Zeta+Reticuli+S2,392,407,699323302,10095,0 +21067,Jan+6+mdomek+02+K,639,470,879782,9857,0 +21068,Westcoast.110,376,435,848918380,10178,0 +21069,Ow+Konfederacja+%2B,597,398,848915730,10140,0 +21070,0046,560,528,698416970,10019,0 +21071,%7E%7E002%7E%7E,601,602,7829201,9815,0 +21072,Idris,382,576,8607734,10019,0 +21073,K65,534,637,7589468,8816,0 +21074,Pobozowisko,399,601,699513260,10971,0 +21075,067,427,378,698388578,7497,0 +21076,Og%C3%B3rkowy+baron,405,407,356642,9835,0 +21077,Szlachcic,425,377,698388578,6481,0 +21078,A009,580,377,699485250,10211,0 +21079,065+Biedronkowo+PP,537,364,699854484,9899,0 +21080,014.+Troja,637,447,849095599,9835,0 +21081,Bogdaniec,505,390,699755859,4900,0 +21082,Myk+i+do+kieszonki,359,508,9319058,9334,0 +21083,Szlachcic,426,374,698388578,7651,0 +21084,Wioska+barbarzy%C5%84ska,526,357,1990750,10068,0 +21085,Afro,379,493,699265922,9761,0 +21086,016+Wioska,634,458,699671454,5412,0 +21087,Wioska+barbarzy%C5%84ska,399,567,9167250,9598,0 +21088,Og%C3%B3rkowy+baron,397,398,356642,9835,0 +21089,Pobozowisko,411,611,699513260,9818,0 +21090,c+061d,417,380,3909522,6850,0 +21091,K34+-+%5B023%5D+Before+Land,441,373,699088769,10259,3 +21092,A0145,360,497,8841266,10362,0 +21093,SSJ+044,512,643,699054373,9761,0 +21094,022+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,624,428,9228039,9346,0 +21095,0002,476,643,699117178,5268,0 +21096,017,429,622,699783765,4823,0 +21097,Oww+Konfederacja,606,401,848915730,9361,0 +21098,Pobozowisko,395,595,699513260,5001,0 +21099,Pobozowisko,400,598,699513260,10635,0 +21101,%2AINTERTWINED%2A,508,643,698704189,9711,0 +21103,a+mo%C5%BCe+off+%3F+%3A%29,638,550,698768565,9362,0 +21105,073,465,359,698739350,9994,0 +21106,043,370,564,8908002,9993,0 +21107,Ow+Konfederacja,602,395,848915730,10259,0 +21108,K34+-+%5B115%5D+Before+Land,450,380,699088769,10259,0 +21109,0410,541,634,698659980,8635,0 +21110,070,429,376,699796330,7776,0 +21111,Pobozowisko,410,613,699513260,8204,0 +21112,c+00447,413,390,3909522,9829,0 +21113,Lord+Lord+Franek+.%23209,518,358,698420691,10362,0 +21114,Bagdad,497,356,8847546,9976,0 +21115,Wioska+barbarzy%C5%84ska,433,628,6910361,5198,0 +21116,a+mo%C5%BCe+off+%3F+%3A%29,621,583,698768565,9534,0 +21117,JUHUUUUUUU+%3AP,381,585,849095992,4818,0 +21118,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,641,1434753,10068,0 +21119,.%3A058%3A.+%C5%81OBUZIK,552,365,848934935,3053,0 +21120,154+Ale+mnie+g%C5%82%C3%B3wka+boli,375,567,699382126,7988,0 +21121,%23003,472,611,699605333,10393,0 +21122,Szlachcic,423,376,698388578,9605,0 +21123,Gattacka,613,416,699298370,9345,0 +21124,C002,594,387,699761749,10495,0 +21125,Wioska+barbarzy%C5%84ska,491,358,848942968,3761,0 +21126,c+Fyra+3,402,394,3909522,9520,0 +21127,The+Game+Has+Only+Just+Begun,360,525,9280477,9976,0 +21128,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,419,616,1434753,10068,0 +21129,ETAT+Z+PO%C5%9AREDNIAKA,425,620,848913998,6593,0 +21130,0405,553,637,698659980,10019,0 +21131,The+Game+Has+Only+Just+Begun,357,533,9280477,8923,0 +21133,R-11,588,384,3600737,8319,0 +21134,Kentin+ufam+Tobie,369,451,699783765,10000,0 +21135,C011,584,388,699761749,6376,0 +21137,016,387,415,848921536,3142,0 +21138,a+mo%C5%BCe+off+%3F+%3A%29,638,549,698768565,9337,0 +21139,Gattacka,609,410,699298370,9559,0 +21140,013,360,546,8908002,9993,0 +21141,024,363,542,8908002,7613,0 +21142,Pobozowisko,395,596,699513260,9565,0 +21143,Kentin+ufam+Tobie,372,443,699783765,10005,0 +21144,Jednak+wol%C4%99+gofry,497,642,699725436,10311,0 +21145,ZDERZENIE+Z+BETONEM,578,393,699761749,8444,0 +21146,Wioska+%28037%29,644,479,698232227,7932,0 +21147,c+057d,422,382,3909522,6656,0 +21148,058,619,585,698786826,8554,0 +21149,001+RTS+CZW,579,624,699567608,9701,0 +21150,101,454,636,849084985,9051,0 +21151,SSJ+009,507,640,699054373,9761,0 +21152,A037,571,373,699485250,9254,0 +21155,lubie+ogie%C5%84+.,580,621,848995242,10362,0 +21156,Konfederacja,466,375,848915730,9976,0 +21157,%7CA%7C+Elderbourne,480,643,698147372,10495,0 +21158,104,477,356,7271812,9957,0 +21159,Pobozowisko,400,606,699513260,10954,0 +21160,024,610,405,699298370,7570,0 +21162,104,483,357,699761749,10495,0 +21163,A0168,354,484,8841266,10362,0 +21164,B.014,646,515,9188016,10000,0 +21165,.Wioska+barbarzy%C5%84ska,631,563,6929240,7882,0 +21166,Prawa,544,639,7589468,8884,0 +21167,a+mo%C5%BCe+off+%3F+%3A%29,635,540,698768565,9370,0 +21168,106,474,358,7271812,10311,0 +21169,Jaaa,613,583,698635863,10479,0 +21171,Wioska+Dam2314,496,356,699630110,4776,0 +21172,pepe,360,524,849030226,8940,0 +21174,Westcoast.111,378,428,848918380,10135,0 +21175,003+Legio+I+Iulia+Alpina+%28R%29,642,492,699878150,6956,0 +21176,Wioska+barbarzy%C5%84ska,388,586,699621601,2827,0 +21177,c+Kolwicz+006,408,392,3909522,10229,0 +21178,007,464,363,699883079,9569,0 +21179,019,630,555,849095227,9745,0 +21180,000,450,634,698143931,8753,0 +21181,Nowa+25,628,567,698702991,9827,0 +21182,%2A%2AAsap,576,625,699443920,9761,0 +21183,033,361,534,698641566,9809,0 +21184,Darmowe+przeprowadzki,480,645,848935389,9809,0 +21185,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,639,1434753,10068,0 +21186,Zbieram+PP,382,484,849034917,9091,0 +21187,016.+Kacundzk,641,481,849094609,9994,0 +21188,04+Twierdza+Zach%C3%B3d,544,361,849108780,7242,0 +21189,MELISKA,359,471,699794765,9380,0 +21190,-008-,390,600,699097885,9177,0 +21191,Ow+Konfederacja,601,401,848915730,10273,0 +21192,A+READY,594,390,1553947,10160,0 +21193,Og%C3%B3rkowy+baron,392,401,356642,9835,0 +21194,%7E%7E019%7E%7E,596,606,7829201,9818,0 +21195,Kovir,528,362,1990750,10068,8 +21196,Pobozowisko,408,610,699513260,9821,0 +21197,Wioska+barbarzy%C5%84ska,432,625,6910361,3417,0 +21198,MojeDnoToWaszSzczyt,563,374,699697558,9813,0 +21199,026+KTW,635,451,848883237,8683,0 +21200,MojeDnoToWaszSzczyt,563,370,699697558,10495,0 +21201,0034,614,417,699429153,9825,0 +21202,Pobozowisko,387,585,699513260,10971,0 +21203,.003.P%C4%99dziBolec,564,373,699072129,10226,0 +21204,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,499,642,699725436,10001,0 +21205,065,360,513,698641566,9809,0 +21206,001.,426,546,8779575,9588,0 +21207,A0146,357,495,8841266,10362,0 +21208,Wioska+barbarzy%C5%84ska,436,631,6910361,6925,0 +21209,078,432,373,6169408,5449,0 +21210,Lord+Lord+Franek+.%23220,509,354,698420691,9991,0 +21211,002.+Lubi%C4%99+rude,503,647,848928624,10237,0 +21212,014,364,544,8908002,7186,0 +21214,Lord+Lord+Franek+.%23200,514,358,698420691,10362,0 +21215,Za+progiem,355,494,699265922,9847,0 +21216,Mniejsze+z%C5%82o+0046,360,462,699794765,8612,0 +21217,025,452,634,849084985,10294,0 +21218,Og%C3%B3rkowy+baron,397,397,356642,9835,0 +21219,030+Wioska,647,489,699671454,8433,0 +21220,34.Sparta,353,501,698807570,9623,0 +21221,016,617,411,699429153,9899,0 +21222,0120,425,626,6910361,1644,0 +21223,0105,422,623,6910361,2758,6 +21224,-019-,387,591,699097885,9167,0 +21225,Myk+i+do+kieszonki,358,509,9319058,9818,0 +21226,a+mo%C5%BCe+off+%3F+%3A%29,622,581,698768565,9533,0 +21227,a+mo%C5%BCe+off+%3F+%3A%29,640,544,698768565,9351,0 +21228,Szlachcic,427,375,698388578,8413,0 +21229,006.+Blaviken,637,452,849095599,10019,0 +21230,006,391,497,699510259,9742,0 +21231,0044,621,417,699429153,9825,0 +21232,02+KALINA,637,453,699524891,12154,0 +21233,RTS+3,580,620,848995242,10495,0 +21234,B.066,644,509,9188016,10000,0 +21235,%2AINTERTWINED%2A,508,647,698704189,9711,0 +21236,%5BC%5D_%5B010%5D+Dejv.oldplyr,360,459,699380607,10233,0 +21237,002,549,362,699072129,8871,0 +21238,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,371,571,8004076,9880,0 +21239,066.+Gandava,631,442,849091866,10302,1 +21240,011+Grane+Blindy+125%2F250,541,361,699491076,10001,0 +21241,Wioska+barbarzy%C5%84ska,530,356,1990750,10068,0 +21242,Podzi%C4%99kowa%C5%82+4,421,377,699796330,9818,0 +21243,44.+KaruTown,614,406,699298370,9257,0 +21244,002.+Night+City,634,445,849095599,9835,1 +21246,Wioska+barbarzy%C5%84ska,424,622,6910361,1350,0 +21247,005+Legio+VI+Victrix,641,489,699878150,8515,0 +21249,Jehu_Kingdom_45,641,476,8785314,7555,0 +21250,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,510,646,1434753,10025,1 +21252,0036,619,416,699429153,9655,0 +21253,Wioska+barbarzy%C5%84ska,383,413,698884287,10285,0 +21254,023+Wioska+barbarzy%C5%84ska,544,363,699854484,10068,0 +21255,c+0011+le%C5%9Bniowice,410,388,3909522,10078,0 +21257,Pobozowisko,406,612,699513260,10971,0 +21258,Wioska+barbarzy%C5%84ska,642,531,7047342,10479,0 +21259,0137,642,462,698416970,10083,0 +21260,Za+domem,357,493,699265922,9825,0 +21261,Ave+Why%21,459,640,698585370,10495,0 +21262,Barbachama,377,423,8967440,5731,2 +21264,Avanti%21,354,507,698625834,9950,0 +21266,mys,565,632,699828685,9976,0 +21267,%2A0035+Baraki,622,430,8459255,9201,0 +21268,Jednak+wol%C4%99+gofry,475,645,699725436,9835,0 +21269,a+mo%C5%BCe+off+%3F+%3A%29,633,552,698768565,9337,0 +21270,Jednak+wol%C4%99+gofry,497,646,699725436,10204,0 +21271,079,643,531,699351301,9894,0 +21272,072.+Pisae,633,442,849091866,10252,0 +21273,A0256,354,494,8841266,10362,0 +21274,Lord+Lord+Franek+.%23213,511,354,698420691,10161,0 +21275,107,476,356,7271812,10285,0 +21276,Flinii,626,427,848883237,10019,0 +21277,%7E%7E029%7E%7E,594,610,7829201,9803,0 +21278,064,360,511,698641566,9809,0 +21279,c+Ett,405,393,3909522,10222,0 +21280,Ohne+Dich,621,573,848926293,4842,0 +21281,-022-,389,590,699097885,8131,0 +21282,%5B166%5D,631,555,8000875,8433,0 +21283,060+Wioska+barbarzy%C5%84ska,536,358,699491076,10001,0 +21284,amzi+x1,469,643,698585370,8468,0 +21285,117,487,354,699761749,10495,0 +21286,Brat447,355,509,699262350,10144,2 +21287,131+DaSilva2402,522,358,699491076,10001,0 +21288,34.+Wioska+34,373,567,849091769,9267,0 +21289,The+Game+Has+Only+Just+Begun,357,524,9280477,9976,0 +21290,kathare,553,630,873575,10428,1 +21291,68.+Wioska+68,370,562,849091769,9197,0 +21292,Wioska+barbarzy%C5%84ska,509,359,699368887,9994,0 +21293,Barbachama+II,378,423,8967440,3914,0 +21294,Wioska+barbarzy%C5%84ska,642,534,7047342,10490,0 +21295,BoOmBaa..,440,370,6169408,6415,0 +21296,The+Game+Has+Only+Just+Begun,359,529,9280477,9976,0 +21297,VN+Alphonse+Elric,464,361,699883079,9653,0 +21298,118,620,421,7085502,9616,0 +21299,Avanti%21,355,514,698625834,9950,0 +21300,101,487,358,699761749,10495,0 +21301,%2A0ST,580,624,699567608,9123,0 +21302,Mniejsze+z%C5%82o+0036,361,469,699794765,9878,0 +21303,032,592,612,698999105,10311,0 +21305,MojeDnoToWaszSzczyt,559,372,699697558,10495,0 +21306,%7E%7E053%7E%7E,596,609,7829201,9612,0 +21307,Yeremiah+2,386,415,698884287,10021,0 +21308,001,627,560,849095227,9835,0 +21309,0042,447,363,699431255,9959,0 +21310,--010--,385,411,698884287,8177,0 +21311,047,607,591,698786826,7518,0 +21312,019.,645,476,849094609,9960,6 +21313,B037,497,458,699299123,10495,0 +21314,Pobozowisko,407,610,699513260,7421,0 +21315,Wioska+%28026%29,641,477,698232227,9305,0 +21316,The+Game+Has+Only+Just+Begun,358,534,9280477,9316,0 +21317,The+Game+Has+Only+Just+Begun,356,529,9280477,9976,0 +21318,Maszlug+kolonia+IX,370,433,848977649,9099,0 +21319,%2A0024+Baraki,628,428,8459255,9947,0 +21320,od+biedy+do+pot%C4%99gi+6,370,445,699783765,2316,0 +21321,jaaa,635,558,698635863,10476,0 +21322,047...PO%C5%81UDNIE,463,360,6920960,10311,0 +21323,BoOmBaa..,439,371,6169408,8502,0 +21324,Kentin+ufam+Tobie,362,454,699783765,10000,0 +21325,przed+potoom,465,643,699736927,9048,0 +21326,017,361,533,698641566,9809,1 +21327,off+100+%25,360,556,849012521,10311,0 +21328,The+Game+Has+Only+Just+Begun,355,523,9280477,9976,0 +21329,.%3A086%3A.+%C5%81OBUZIK,558,365,848934935,10495,0 +21330,nic,573,623,699828685,10209,0 +21331,a+mo%C5%BCe+off+%3F+%3A%29,635,557,698768565,9353,0 +21332,North+Barba+033,428,371,699796330,10087,0 +21334,SSJ+037,514,641,699054373,9761,0 +21335,Pobozowisko,391,594,699513260,8973,0 +21336,010,630,562,849095227,9761,0 +21337,A0142,359,495,8841266,10362,0 +21338,0453,549,640,698659980,9051,0 +21339,Konfederacja+%2B,455,365,848915730,9720,0 +21340,Westcoast.112,372,434,848918380,10178,0 +21341,Stalker2,491,357,848942968,4065,0 +21344,Szlachcic,425,376,698388578,10237,0 +21345,%230093+barbarzy%C5%84ska,467,357,1238300,9209,0 +21346,65.+Wioska+65,374,563,849091769,9412,0 +21347,Zeta+Reticuli+S2,393,403,699323302,10728,0 +21348,43.+Wioska+43,365,546,849091769,7368,0 +21349,Osada+koczownik%C3%B3w,512,359,699368887,9063,9 +21351,020,612,595,698786826,9977,0 +21352,%7E%7E021%7E%7E,603,601,7829201,9824,0 +21353,B.068,644,510,9188016,10002,0 +21355,Deveste+ufam+Tobie,418,622,699783765,5602,0 +21357,061+Wioska+barbarzy%C5%84ska,536,357,699491076,10001,0 +21358,Kentin+ufam+Tobie,365,445,699783765,10000,0 +21359,049%7C%7C+Microscopium,469,639,849035525,9818,0 +21361,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,643,1434753,9829,0 +21362,Wioska+barbarzy%C5%84ska,364,450,3698627,10078,0 +21363,0059,620,418,699429153,9825,0 +21365,074...barbarka+centr,460,358,6920960,10226,0 +21366,XXXX,475,357,849054951,10485,0 +21367,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,640,1434753,10068,0 +21368,128,475,359,7271812,5882,0 +21369,Deveste+ufam+Tobie,435,626,699783765,9986,0 +21370,-+335+-+RR,591,609,849018239,9529,0 +21371,MELISKA,357,469,699794765,10351,0 +21372,Wioska+barbarzy%C5%84ska,555,363,699072129,10220,0 +21373,077,364,541,6853693,5821,0 +21374,Prawa,542,638,7589468,8820,0 +21375,Pobozowisko,404,609,699513260,7212,0 +21376,Avanti%21,355,507,698625834,9950,0 +21377,0012+MzM,612,592,698416970,9258,6 +21378,027+181+181,358,505,698807570,10311,0 +21379,Deveste+ufam+Tobie,436,628,699783765,6587,0 +21380,%2A5604%2Ab+Ten+mecz,622,583,7973893,10287,0 +21381,MojeDnoToWaszSzczyt,564,369,699697558,10495,0 +21382,018,613,584,699099811,9835,0 +21383,%230038+barbarzy%C5%84ska,465,358,1238300,10178,0 +21384,KONFA+TO+MARKA%2C+NARKA,398,472,698152377,11349,0 +21385,VN+Phinks+Magcub,457,361,699883079,9651,0 +21386,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,646,698585370,9371,0 +21387,c+001a,409,386,3909522,8646,0 +21388,Wioska,368,548,849084005,10178,0 +21389,Mniejsze+z%C5%82o+00100,356,472,699794765,10342,0 +21390,%2A%2AAdango,574,624,699443920,9761,0 +21391,Spa%C4%87,551,388,3600737,9549,0 +21393,Ambrela+015,571,372,698823542,10495,0 +21394,0117,424,624,6910361,1772,0 +21395,Pobozowisko,405,612,699513260,11111,0 +21396,Ave+Why%21,493,641,698585370,7678,0 +21397,003+P%C5%82aci%C5%82em+Za+Ksi%C4%85%C5%BCki,540,359,699491076,10001,5 +21398,.%3A014%3A.+Chillout,508,421,848934935,10495,0 +21399,--9.+Parzymiechy+G%C3%B3rne,386,405,698345556,7609,0 +21400,%23036.518%7C497,637,448,556154,9735,0 +21402,--005--,382,412,698884287,9097,0 +21403,125,545,360,699491076,9632,0 +21405,50.+Wioska+50,365,545,849091769,7239,0 +21406,%5B009%5D,610,591,1715091,9659,0 +21407,Lord+Lord+Franek+.%23221,523,356,698420691,10362,0 +21408,A011,579,379,699485250,10211,0 +21409,Ow+Konfederacja+%2B,607,401,848915730,9874,0 +21411,%2A%2ASIxMileLake,575,627,699443920,9761,0 +21412,008,363,544,8908002,9993,0 +21413,0206,417,615,699697558,3020,0 +21414,016,492,646,698650301,9421,0 +21415,B014,648,498,9314079,9814,0 +21416,%5BC%5D_%5B007%5D+Dejv.oldplyr,359,475,699380607,10495,0 +21417,-005-,387,593,699097885,9885,0 +21418,Wioska+barbarzy%C5%84ska,439,368,699191464,10164,0 +21419,Pobozowisko,403,611,699513260,10971,0 +21420,MojeDnoToWaszSzczyt,565,370,699697558,10495,0 +21421,003,463,375,699883079,9638,0 +21422,Szlachcic,420,378,698388578,10237,0 +21424,017.+Watykan,631,444,849095599,8990,0 +21425,011,629,562,849095227,9761,3 +21426,030+Eoam,629,433,8337151,10026,0 +21427,deff+100+%25,383,581,849012521,10251,0 +21428,Ow+Konfederacja,602,400,848915730,10273,0 +21429,Taran,557,370,699170684,10495,0 +21430,0003,489,644,6180190,10495,6 +21432,004,379,423,9239515,5293,0 +21433,Ow+Konfederacja,608,400,848915730,9890,0 +21434,%2A5603%2Aa+RKS+CHUWDU,624,576,7973893,10287,0 +21435,%230040+barbarzy%C5%84ska,462,357,1238300,10178,0 +21436,Westcoast.082,397,408,848918380,10178,0 +21437,Szlachcic,418,378,698388578,7178,0 +21438,Wioska+barbarzy%C5%84ska,622,425,699429153,9825,0 +21439,Wioska+andrzej84,391,401,6171569,5659,0 +21440,020+Wioska,639,460,699671454,6152,0 +21441,0045,619,422,699429153,9692,0 +21442,a+mo%C5%BCe+off+%3F+%3A%29,635,542,698768565,9337,0 +21443,RTS+8,580,618,848995242,10487,0 +21444,Pobozowisko,412,612,699513260,10541,0 +21445,006+181,354,505,698807570,10051,0 +21446,.%3A059%3A.+%C5%81OBUZIK,553,365,848934935,4595,0 +21447,066,426,377,698388578,6881,0 +21448,031,586,617,698999105,10311,0 +21449,009,461,359,699883079,9663,0 +21450,041.+Moguntiacum,632,437,849091866,10495,0 +21451,The+Game+Has+Only+Just+Begun,357,525,9280477,9976,0 +21453,Wied%C5%BAma+-+Imperium,384,418,698884287,12154,0 +21454,013+Wioska+barbarzy%C5%84ska,568,371,699509239,4698,0 +21455,The+Game+Has+Only+Just+Begun,353,517,9280477,9976,0 +21456,031%7C%7C+Centaurus,488,644,849035525,10083,0 +21457,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,639,1434753,10068,0 +21458,.4.,366,553,849012521,8745,0 +21459,Wioska+barbarzy%C5%84ska,364,443,699088529,6036,0 +21460,059,366,544,8908002,3704,0 +21461,A-004,397,399,8419570,10580,0 +21462,Bagdad,497,359,8847546,9976,0 +21463,034+181,355,505,698807570,6552,0 +21464,SSJ+053,502,647,699054373,9517,0 +21465,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,645,699828442,9817,0 +21466,Wioska+barbarzy%C5%84ska,381,577,699621601,2562,0 +21467,071.+Ptolemais,632,442,849091866,10068,0 +21468,044+%7C+PALESTINA,640,467,9228039,4759,0 +21470,kathare,554,632,873575,10362,0 +21471,078,366,546,6853693,6384,0 +21472,B006,647,495,9314079,9835,0 +21473,022+Wioska+barbarzy%C5%84ska,541,360,699854484,10544,0 +21474,015+Mario,560,469,849031818,8978,0 +21475,Bagdad,499,357,8847546,9976,0 +21476,Pobozowisko,395,602,699513260,10622,1 +21477,Napewno+to+nie+jest+off,486,383,848912265,5277,0 +21478,A0244,352,498,8841266,10362,0 +21479,Valhalla+A8,375,577,849097002,4902,0 +21480,020,361,545,8908002,7414,0 +21481,a+mo%C5%BCe+off+%3F+%3A%29,641,541,698768565,9351,0 +21482,005,379,420,9239515,4963,0 +21483,142,584,383,849064752,10311,0 +21484,Westcoast.106,372,435,848918380,10178,0 +21485,014.+A%C5%82a,503,643,848928624,10237,0 +21486,SSJ+041,512,644,699054373,9761,0 +21487,%230015+barbarzy%C5%84ska,464,356,1238300,10178,4 +21488,yogi,488,530,2808172,10495,0 +21490,Zeta+Reticuli+S2,395,401,699323302,10265,0 +21491,a+mo%C5%BCe+off+%3F+%3A%29,575,587,698768565,10103,0 +21492,WB02,398,395,356642,9835,0 +21493,Mniejsze+z%C5%82o+0043,361,464,699794765,9160,0 +21494,Wioska+barbarzy%C5%84ska,550,364,699072129,10220,0 +21495,183,578,622,8627359,9203,0 +21496,062+Wioska+barbarzy%C5%84ska,542,359,699491076,10001,8 +21497,Arnswalde,379,424,8967440,7262,0 +21499,-027-,389,597,699665152,7068,0 +21500,SSJ+018,511,641,699054373,9761,2 +21501,Mobil,532,639,7589468,8825,0 +21502,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,638,7589468,8820,0 +21503,077...barbarka,458,358,6920960,10116,0 +21504,Lord+Lord+Franek+.%23222,510,355,698420691,9137,0 +21505,C+013,590,391,6384450,5419,0 +21506,Wioska+barbarzy%C5%84ska,435,631,6910361,5875,0 +21507,B.038,643,505,9188016,10000,0 +21509,018,635,554,849095227,9731,0 +21510,Sweet+Child+O+Mine,629,565,848926293,7939,0 +21511,Wioska+barbarzy%C5%84ska,363,444,699088529,4592,0 +21512,Og%C3%B3rkowy+baron,398,393,356642,9835,0 +21513,080,356,463,6258092,9866,0 +21516,Lord+Lord+Franek+.%23195,516,358,698420691,10362,0 +21518,a+mo%C5%BCe+off+%3F+%3A%29,621,576,698768565,9554,0 +21519,od+biedy+do+pot%C4%99gi+4,366,446,699783765,4767,0 +21521,Bagdad,498,355,8847546,9976,0 +21522,Ow+Konfederacja,603,394,848915730,3907,0 +21523,MojeDnoToWaszSzczyt,558,369,699697558,10495,0 +21524,%21+Siwa+Wrona,492,603,606407,10685,0 +21525,A038,570,373,699485250,9174,7 +21526,AA08+Norwegia,379,417,483145,11911,0 +21527,Pobozowisko,404,612,699513260,10957,0 +21528,MojeDnoToWaszSzczyt,561,368,699697558,10495,0 +21529,Szlachcic,422,375,698388578,10237,0 +21530,B.041,641,508,9188016,10000,0 +21531,Wioska+%28031%29,644,476,698232227,8491,0 +21532,-009-,392,599,699097885,8316,0 +21533,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,639,1434753,10068,0 +21534,005,430,373,698364331,11130,0 +21535,Ave+Why%21,463,640,698585370,10495,0 +21536,-064-,376,570,699097885,4710,0 +21537,Avanti%21,355,510,698625834,9950,0 +21538,0065,642,540,6510480,9328,0 +21539,036,372,569,8908002,8160,4 +21540,c+0012,411,388,3909522,9040,0 +21541,K05..,370,577,849090130,10495,0 +21542,Jednak+wol%C4%99+gofry,500,644,699725436,10311,0 +21543,xkikutx,521,359,1990750,9885,0 +21544,A0243,362,464,8841266,10362,0 +21545,B030,643,499,9314079,9879,0 +21546,016,361,541,8908002,7413,0 +21547,164,571,378,849064752,9210,0 +21548,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,563,8004076,8406,0 +21549,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,640,1434753,10068,0 +21550,.%3A023%3A.+%C5%81OBUZIK,556,364,848934935,7368,0 +21551,%2A%2AUnexpected,573,628,699443920,9761,0 +21552,0067,640,530,6510480,7940,0 +21553,Dzikie+wsparcie,481,646,848935389,9809,7 +21554,%2A%2AAgon,575,626,699443920,9761,0 +21555,0385,585,615,698659980,10019,0 +21556,a+mo%C5%BCe+off+%3F+%3A%29,640,543,698768565,9377,0 +21557,Wioska+barbarzy%C5%84ska,527,355,1990750,10068,0 +21558,038.,645,478,849094609,8861,0 +21559,kathare,548,633,873575,10257,0 +21560,a+mo%C5%BCe+off+%3F+%3A%29,637,553,698768565,9495,0 +21561,Og%C3%B3rkowy+baron,396,399,356642,9835,0 +21562,0043,446,367,699431255,9959,0 +21563,182,580,619,8627359,9134,0 +21564,Pobozowisko,402,607,699513260,8594,0 +21565,Avanti%21,353,508,698625834,9950,0 +21566,B.015,646,518,9188016,10000,2 +21567,Kentin+ufam+Tobie,357,471,699783765,10000,0 +21568,028+027,543,361,699491076,10001,0 +21569,A035,575,373,699485250,10168,0 +21570,0130,434,374,699431255,5419,0 +21571,Pobozowisko,404,606,699513260,9863,0 +21572,Wioska+barbarzy%C5%84ska,384,584,699621601,3946,0 +21573,Wioska+barbarzy%C5%84ska,441,369,699191449,10124,0 +21575,0388,587,616,698659980,10019,0 +21576,Gattacka,610,411,699298370,9643,5 +21577,09.+Amon+Din,634,429,849060446,9735,0 +21578,Pobozowisko,406,613,699513260,9718,0 +21579,Wioska+barbarzy%C5%84ska,381,587,699621601,2178,0 +21580,Kentin+ufam+Tobie,363,447,699783765,10000,0 +21581,004,359,539,6853693,10481,0 +21582,MojeSzczytToTw%C3%B3jDno,524,372,828637,10495,0 +21583,FB003,642,493,9314079,9821,0 +21584,0259,537,644,698659980,10160,0 +21585,A34,463,637,849037407,10362,0 +21586,021%7C%7C+Pyxis,490,648,849035525,10019,0 +21587,Pobozowisko,401,605,699513260,10950,7 +21588,0382,583,620,698659980,9390,0 +21589,AA10+Anglia,377,422,483145,4856,0 +21590,0133,642,465,698416970,8078,0 +21591,Wioska+barbarzy%C5%84ska,388,405,8419570,10337,0 +21592,023,362,546,8908002,6861,0 +21594,Wioska+barbarzy%C5%84ska,640,526,7047342,10490,0 +21595,Ave+Why%21,464,641,698585370,10471,0 +21596,081,433,371,6169408,5524,0 +21597,001,464,651,848883684,10019,0 +21598,Wioska+barbarzy%C5%84ska,438,365,849017820,6505,0 +21599,c+065d,422,381,3909522,4217,0 +21600,Belek,471,647,849089459,9580,0 +21601,%5B0007%5D,561,630,699567608,9569,0 +21602,002,357,537,6853693,10474,7 +21603,Wioska+barbarzy%C5%84ska,633,549,7047342,10487,0 +21604,c+062d,415,381,3909522,7602,0 +21605,Gattacka,606,398,699298370,10160,0 +21606,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,519,642,1434753,9960,0 +21607,AA01+Polska,379,413,483145,12154,0 +21608,019+Wioska,636,459,699671454,7954,0 +21609,B01,461,640,849037407,10311,0 +21610,Szlachcic,418,377,698388578,10237,0 +21611,Pami%C4%99tasz+tamte+czasy%3F,491,359,848942968,5047,0 +21612,Ow+Konfederacja,600,395,848915730,10273,0 +21613,jaaa,642,544,698635863,10478,3 +21614,001,382,582,699621601,10019,0 +21615,kathare,549,637,873575,10292,0 +21616,037,615,591,698786826,9313,0 +21617,MojeDnoToWaszSzczyt,564,367,699697558,10495,0 +21618,%5BC%5D_%5B008%5D+Dejv.oldplyr,361,460,699380607,10205,0 +21619,c+001b,410,383,3909522,6976,0 +21620,0035,615,415,699429153,9247,0 +21621,Pobozowisko,387,595,699513260,10356,0 +21622,058,440,631,849084985,9835,0 +21623,029+Wioska,644,488,699671454,8049,0 +21624,Pobozowisko,391,591,699513260,7262,0 +21625,005%7C%7C+Leo,491,645,849035525,10019,0 +21626,c+Fyra+2,401,394,3909522,9380,0 +21627,006+Ogromny+Pag%C3%B3rek,620,422,699429153,9899,0 +21628,B.030,645,511,9188016,10000,9 +21629,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,519,641,1434753,10025,0 +21630,Darmowe+przeprowadzki,467,642,848935389,10338,0 +21631,a+mo%C5%BCe+off+%3F+%3A%29,619,582,698768565,10225,8 +21632,031,481,353,698739350,10237,0 +21633,Wioska+barbarzy%C5%84ska,540,643,7756002,9988,0 +21634,Piwna+18,627,431,699812007,7062,0 +21635,Mniejsze+z%C5%82o+0052,360,461,699794765,7676,0 +21636,D%C4%85browa+0008,384,592,849096972,3333,0 +21637,A0156,354,486,8841266,10362,0 +21638,070,601,600,699373599,8993,0 +21639,Kentin+ufam+Tobie,360,454,699783765,10000,0 +21640,North+Barba+004,430,370,699796330,10247,0 +21642,169,582,381,849064752,10311,0 +21643,0014,428,380,699431255,9715,0 +21644,Los+Santos,603,395,699298370,10116,0 +21645,027,613,404,699298370,5384,0 +21646,%21034.519%7C498,638,449,556154,9735,0 +21647,%5B+Szukam+Guza+%5D,579,619,848995242,10495,0 +21648,035.,645,482,849094609,9821,0 +21649,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,638,6180190,9915,0 +21650,011.,486,647,849034882,10495,0 +21651,Ave+Why%21,478,646,698585370,10160,0 +21652,A010,590,382,699761749,10495,0 +21653,002,428,626,699783765,4407,0 +21654,117,472,359,7271812,10484,0 +21655,Gravity,404,449,698962117,9484,0 +21656,053...barbarka,455,359,6920960,10438,0 +21657,Avanti%21,354,506,698625834,9950,0 +21658,Baa,380,488,699265922,9825,0 +21659,deff+100+%25,377,581,849012521,10243,0 +21660,The+Game+Has+Only+Just+Begun,356,530,9280477,9976,0 +21661,Szlachcic,420,375,698388578,10067,0 +21662,Busz,379,491,699265922,9761,0 +21663,MojeDnoToWaszSzczyt,566,367,699697558,10495,0 +21664,a+mo%C5%BCe+off+%3F+%3A%29,640,539,698768565,9395,0 +21665,038,445,638,849084985,9902,0 +21666,035,644,548,698999105,10311,0 +21667,Pobozowisko,386,589,699513260,10105,0 +21668,147...ksi%C4%85%C5%BC%C4%99+plemienia,452,361,6920960,8136,0 +21669,025,364,542,8908002,6190,0 +21670,a+mo%C5%BCe+off+%3F+%3A%29,639,542,698768565,9361,0 +21671,001-Mi%C5%82o%C5%9B%C4%87,433,629,6910361,3930,0 +21672,M181_057,367,437,393668,9894,0 +21673,kathare,551,636,873575,9969,0 +21674,011,606,598,698786826,10211,0 +21675,Ave+Why%21,460,642,698585370,8016,0 +21676,Cardiff,377,424,8967440,10094,0 +21677,B.064,645,506,9188016,10000,0 +21678,012,362,542,8908002,7826,0 +21679,Pobozowisko,406,611,699513260,11819,0 +21680,Kentin+ufam+Tobie,369,445,699783765,10487,0 +21682,0057,619,415,699429153,9746,0 +21683,Wioska+barbarzy%C5%84ska,528,357,1990750,10068,7 +21685,087...barbarka,455,362,6920960,10287,0 +21686,Jan+osada+03+K,639,469,879782,9400,2 +21687,zzzGranica+Bledu+03,606,602,699778867,10503,0 +21688,067.+Gesoriacum,631,439,849091866,10052,0 +21689,Wioska+barbarzy%C5%84ska,440,634,6910361,8386,0 +21690,0029,620,420,699429153,9889,0 +21691,The+Game+Has+Only+Just+Begun,356,534,9280477,9976,0 +21693,M181_056,368,438,393668,9575,0 +21694,s181eo23,393,452,393668,9912,0 +21695,kathare,551,637,873575,9978,0 +21696,Ulu-mulu,420,620,699697558,2654,0 +21697,kathare,548,637,873575,10213,0 +21698,zima,625,421,849095435,9455,0 +21699,Kentin+ufam+Tobie,363,454,699783765,10000,0 +21700,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,641,7589468,8822,0 +21701,121,615,412,7085502,10054,0 +21702,Wioska+Totenhaim,602,538,3364735,9761,0 +21703,002+Wioska+hspr1,569,374,699509239,5030,0 +21704,Ow+Konfederacja+%2B,601,397,848915730,10311,0 +21705,0113,417,617,699697558,6725,7 +21706,020%7C%7C+Monoceros,459,638,849035525,9277,0 +21707,kathare,558,635,873575,10247,0 +21708,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,496,647,698585370,9838,2 +21709,015,475,646,699238479,5282,0 +21710,Wioska+barbarzy%C5%84ska,640,527,7047342,10545,0 +21711,086,453,638,849084985,9570,0 +21712,A023,586,383,699485250,10211,0 +21713,Ave+Why%21,465,642,698585370,7773,0 +21714,MojeDnoToWaszSzczyt,558,363,699697558,10495,0 +21715,Pobozowisko,410,614,699513260,9550,0 +21716,SSJ+040,517,645,699054373,9761,0 +21717,hbmacko,600,602,7829201,9955,0 +21718,MELISKA,357,468,699794765,10036,0 +21719,Wioska+barbarzy%C5%84ska,609,406,848915730,9376,5 +21721,Wioska_2,489,358,848942968,3816,0 +21722,The+Game+Has+Only+Just+Begun,358,525,9280477,9976,0 +21723,%230035+barbarzy%C5%84ska,466,357,1238300,10178,0 +21724,Kentin+ufam+Tobie,357,459,699783765,10019,0 +21725,34k%24+Grvvyq,637,550,699676005,9736,0 +21726,Pobozowisko,405,605,699513260,7533,0 +21727,%2A1%2A,581,382,849064614,9308,0 +21728,BoOmBaa..,437,367,6169408,10838,0 +21729,A0292,355,481,8841266,10362,0 +21731,142+Nowy+pocz%C4%85tek,373,568,699382126,7375,0 +21732,%2AINTERTWINED%2A%2A,518,644,698704189,9711,0 +21733,Ow+Konfederacja,603,399,848915730,10273,0 +21734,Nowa+Nadzieja+5,494,598,699383121,9528,0 +21735,%2A5621%2A+Happy,640,525,7973893,10287,0 +21736,032,643,523,849006412,5173,0 +21737,off+100+%25,362,555,849012521,10256,0 +21738,Kentin+ufam+Tobie,364,454,699783765,10000,0 +21739,Pobozowisko,398,603,699513260,10954,0 +21740,%2A%2AAlgonquin,574,627,699443920,9761,0 +21741,0390,587,614,698659980,10019,0 +21742,0007,475,643,6180190,10637,0 +21743,001.+Wioska+Mr+Bizy,502,643,848928624,10273,0 +21744,069.+Nicaea,632,443,849091866,10236,0 +21745,Wioska+barbarzy%C5%84ska,434,631,6910361,6388,0 +21746,013,607,598,698786826,10211,0 +21747,___,378,471,699523631,10479,0 +21748,063+Wioska+barbarzy%C5%84ska,546,359,699491076,10001,0 +21749,BEZDZIETNY+KAWALER,425,627,848913998,5995,0 +21750,South+K35,552,368,699146580,10042,0 +21751,Pobozowisko,391,606,699513260,10950,0 +21752,Brat447,354,479,699262350,10476,0 +21754,Pobozowisko,400,600,699513260,10950,0 +21755,Bunkier+002,618,588,699778867,12154,0 +21756,nic,575,621,699828685,10311,0 +21757,011,621,416,699429153,9899,0 +21758,A012,599,392,699761749,10495,2 +21759,Szlachcic,422,377,698388578,10237,0 +21760,08.+Wioska+8,370,560,849091769,9648,0 +21761,So%C5%82tys+Twojej+Wsi,403,387,849027025,9747,0 +21762,069,430,376,699796330,6277,0 +21763,Reginopolis,380,431,699644054,4496,0 +21764,Ulu-mulu,410,617,699697558,3693,0 +21765,033.,643,476,849094609,9827,0 +21767,015.+Kacundzk,642,478,849094609,9819,0 +21768,%C5%82aweczka,629,427,849095435,10300,0 +21769,c+Konarskiego+2,407,388,3909522,6842,0 +21770,%2A%2AAfter,574,625,699443920,9761,0 +21771,pepe,358,526,849030226,7852,0 +21772,ARE+YOU+READY%3F,592,388,699485250,6489,0 +21773,BoOmBaa..,444,363,6169408,2624,0 +21774,%7E%7E023%7E%7E,601,607,7829201,9819,0 +21775,014.+Kacundzk,648,486,849094609,9761,0 +21776,008+Wioska+barbarzy%C5%84ska,569,375,699509239,7190,0 +21777,kathare,547,638,873575,9830,0 +21778,058,427,622,699783765,4736,7 +21779,Pigi+1+Blisko,619,589,699778867,12154,0 +21780,A0169,353,487,8841266,10362,0 +21781,zXanadu,391,595,699849210,10064,0 +21782,028,632,551,849095227,9719,0 +21783,011.,648,493,849094609,9999,0 +21784,xkikutx,520,358,1990750,10068,0 +21785,%23032.517%7C499,636,450,556154,9735,0 +21786,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,641,1434753,9829,0 +21788,A0194,356,486,8841266,10362,0 +21789,002,359,542,8908002,9993,0 +21790,xWioska,525,353,1990750,10068,0 +21791,058,357,512,698641566,9809,0 +21792,%5BC%5D_%5B001%5D+Dejv.oldplyr,358,472,699380607,10495,0 +21793,Darmowe+przeprowadzki,466,642,848935389,10471,0 +21794,074,470,361,698739350,9761,0 +21795,Ave+Why%21,465,638,699121671,9809,0 +21796,034,484,353,698739350,10237,0 +21797,WB004,585,619,8627359,9452,0 +21798,Konfederacja+%2B,456,365,848915730,9707,0 +21800,019,643,475,849093875,3811,0 +21801,Szlachcic,425,374,698388578,8283,0 +21802,A+023,600,393,6384450,7845,0 +21803,WE+ARE+READY%21,594,385,1553947,8510,0 +21804,102,476,354,7271812,10495,0 +21805,ETAT+Z+PO%C5%9AREDNIAKA,422,622,848913998,5005,0 +21806,Wioska+2,382,586,699621601,9071,0 +21807,026,613,406,699298370,3690,0 +21808,psycha+sitting,461,643,699736927,10311,0 +21809,Ow+Konfederacja,603,397,848915730,10273,0 +21810,112+Wioska+barbarzy%C5%84ska,537,357,699491076,10001,0 +21811,026+Wioska,643,486,699671454,6284,0 +21812,0031,624,421,699429153,9627,0 +21814,--4.+Pole+kalafior%C3%B3w,386,407,698345556,10336,5 +21816,Wioska+barbarzy%C5%84ska,528,358,1990750,9968,0 +21817,MojeDnoToWaszSzczyt,563,367,699697558,10495,0 +21818,%23001,605,395,7555180,10495,0 +21819,Kentin+ufam+Tobie,361,448,699783765,10014,0 +21820,A-003,388,402,8419570,10580,9 +21821,079,360,540,6853693,4882,0 +21822,0024+-+teraz+si%C4%99+obudzi%C5%82,488,645,33900,10118,0 +21823,c+Fyra+1,400,397,3909522,9137,0 +21824,025+-+Mostoles,643,481,698342159,10019,0 +21825,Wioska+barbarzy%C5%84ska,546,363,699072129,8737,0 +21826,B018,641,459,9314079,10068,0 +21827,040,644,517,699351301,6138,0 +21828,00193,440,413,3909522,5429,0 +21829,Kurczak+Po%C5%BCogi,358,473,3713020,4609,0 +21830,006%7C%7C+Virgo,487,644,849035525,10019,0 +21831,Lord+Lord+Franek+.%23196,504,352,698420691,9010,0 +21832,Ave+Why%21,456,639,698585370,10251,5 +21833,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,564,8004076,9203,0 +21834,ave+why%21,435,634,698143931,10237,0 +21835,Horyzont+zdarze%C5%84,539,644,7581876,9835,0 +21836,087,445,639,849084985,3030,0 +21837,132+DaSilva2402,517,353,699491076,10001,0 +21838,021,609,598,698786826,7013,0 +21839,%2A%2AEasy,570,631,699443920,9771,0 +21840,B.043,649,513,9188016,10019,0 +21841,0288,535,641,698659980,9582,0 +21842,027,361,547,8908002,6898,0 +21843,031...strazacki,460,362,6920960,10495,0 +21844,44.+Wioska+44,370,566,849091769,9719,0 +21845,Wioska+barbarzy%C5%84ska,374,577,849012521,5825,0 +21846,B.044,647,511,9188016,10003,0 +21847,deff+100+%25,364,557,849012521,9390,0 +21848,Ambrela+001,575,372,698823542,10495,0 +21849,%23.44+Wioska+barbarzy%C5%84ska,641,483,849054582,4060,0 +21850,Wioska+barbarzy%C5%84ska,381,580,699621601,3366,0 +21851,Pobozowisko,389,591,699513260,7351,0 +21852,a+mo%C5%BCe+off+%3F+%3A%29,639,553,698768565,9334,0 +21854,003%7C%7C+Gemini,485,645,849035525,10019,0 +21855,029+030,539,361,699491076,10001,0 +21856,BEZDZIETNY+KAWALER,418,624,848913998,5543,0 +21857,A0195,356,492,8841266,10362,0 +21858,BZioska+barbarzy%C5%84ska,638,551,7047342,10479,0 +21859,-024-,389,592,699097885,9359,2 +21860,0107,418,618,699697558,5676,0 +21861,Westcoast.113,377,426,848918380,10178,0 +21862,jaaa,641,542,698635863,10636,0 +21863,jaaa,635,563,698635863,10495,0 +21864,jaaa,631,568,698635863,10481,0 +21865,078,483,359,698739350,10713,0 +21866,114,478,356,7271812,10348,0 +21867,Wioska+barbarzy%C5%84ska,642,455,699524891,9514,0 +21868,Wioska+barbarzy%C5%84ska,372,428,699753640,4039,0 +21869,0085,531,643,698659980,10160,0 +21870,K34+-+%5B026%5D+Before+Land,443,370,699088769,10259,0 +21871,Ow+Konfederacja,608,401,848915730,10654,0 +21872,Kentin+ufam+Tobie,357,470,699783765,10000,0 +21873,Ulu-mulu,414,615,699697558,4610,0 +21874,Jehu_Kingdom_46,645,472,8785314,10167,0 +21876,c+003+j%C3%B3zefin,412,386,3909522,10072,0 +21877,106,485,353,699761749,9872,0 +21878,yyyy,500,355,699883079,10057,0 +21879,B.063,645,504,9188016,10000,0 +21880,046,469,360,698739350,10237,0 +21881,-+328+-+RR,592,615,849018239,9465,0 +21882,0001,478,643,699117178,10238,0 +21883,Kentin+ufam+Tobie,360,451,699783765,10019,0 +21884,wioska+strachu,547,361,699072129,10247,0 +21885,005,361,544,8908002,9993,0 +21886,Mniejsze+z%C5%82o+0061,363,459,699794765,6936,0 +21887,0110,436,375,699431255,9746,0 +21888,--8.+Parzymiechy+Dolne,384,407,698345556,7753,0 +21889,0036,443,367,699431255,10069,0 +21890,Westcoast.102,369,431,848918380,10178,0 +21891,068,583,379,849064752,10311,0 +21892,A0103,355,489,8841266,10362,0 +21894,Ave+Why%21,442,636,698585370,9019,0 +21895,Wioska+barbarzy%C5%84ska,552,360,699072129,10232,0 +21896,08.+Wiocha,435,630,6910361,10019,0 +21897,a+mo%C5%BCe+off+%3F+%3A%29,633,557,698768565,9340,0 +21898,mys,563,635,699828685,10068,0 +21899,012.,643,496,849094609,10019,0 +21900,a+mo%C5%BCe+off+%3F+%3A%29,642,545,698768565,9737,0 +21901,aaaa,476,641,6948793,9899,0 +21902,Jestem+Poza+Kontrol%C4%85,364,550,8004076,9148,0 +21903,%23033.518%7C499,637,450,556154,9735,0 +21904,0049,443,365,699431255,9923,5 +21905,071,643,532,699351301,10301,0 +21906,029,451,640,849084985,9626,0 +21907,Kentin+ufam+Tobie,365,449,699783765,10000,0 +21908,The+Game+Has+Only+Just+Begun,353,518,9280477,9976,0 +21909,Ave+Why%21,456,640,698585370,9239,0 +21910,Valhalla+A7,374,578,849097002,4768,0 +21911,Ow+Konfederacja,603,400,848915730,10273,2 +21912,ETAT+Z+PO%C5%9AREDNIAKA,425,619,848913998,5734,0 +21913,Wioska+barbarzy%C5%84ska,533,354,1990750,9665,0 +21914,Wioska+barbarzy%C5%84ska,528,359,1990750,10068,0 +21915,023+-+Sabadell,643,514,698342159,10019,0 +21916,ETAT+Z+PO%C5%9AREDNIAKA,424,618,848913998,10291,0 +21917,014,637,549,849095227,9761,0 +21918,VN+Shaiapouf,496,355,699883079,10375,0 +21919,SSJ+043,514,644,699054373,9761,0 +21920,145,450,361,6920960,7028,0 +21921,Wioska+raj,392,402,6171569,2445,0 +21922,Avanti%21,352,508,698625834,9950,0 +21923,%7E%7E030%7E%7E,595,610,7829201,9744,0 +21924,Deveste+ufam+Tobie,437,630,699783765,10362,8 +21925,MojeSzczytToTw%C3%B3jDno,533,387,828637,10474,0 +21926,aAa+Szlaban+4,601,601,699778867,11321,0 +21927,Og%C3%B3rkowy+baron,391,398,356642,9835,0 +21928,Bagdad,498,357,8847546,9976,0 +21929,Osada+koczownik%C3%B3w,366,443,699088529,8486,2 +21930,A021,587,382,699485250,10168,0 +21931,003,427,626,2289134,4241,0 +21932,000000000,553,633,873575,10390,9 +21933,--7.+Zimna+Dziura,386,408,698345556,8578,0 +21934,0045,445,364,699431255,9967,0 +21935,Wioska+%28010%29,627,434,698232227,8555,6 +21936,%23008,604,397,7555180,9300,0 +21937,078,647,525,699351301,9478,0 +21938,Wioska+002,389,401,6171569,3194,0 +21939,0561,568,631,698659980,10019,0 +21940,0136,437,371,699431255,8754,0 +21941,AB14+Kosowo,382,417,483145,4499,0 +21942,%2AINTERTWINED%2A,507,643,698704189,9711,0 +21943,VN+Machi+Komacine,457,362,699883079,10063,0 +21945,A0147,353,497,8841266,10362,0 +21946,Wioska+barbarzy%C5%84ska,641,536,7047342,10714,0 +21948,c+086d,413,381,3909522,5611,0 +21949,C004,596,385,699761749,6904,0 +21950,a+mo%C5%BCe+off+%3F+%3A%29,641,544,698768565,9366,0 +21951,033,585,618,698999105,10311,0 +21952,015+Wioska+barbarzy%C5%84ska,568,370,699509239,5219,0 +21953,013+%7C+PALESTINA,639,446,9228039,9544,6 +21954,BoOmBaa..,444,366,6169408,9160,0 +21955,Fto+mi+moplik+dupno%C5%82+gorole,360,453,699711723,5553,0 +21956,Gattacka,610,403,699298370,9382,0 +21957,002.+Rak%C3%B3w,495,645,848953066,10187,0 +21958,Ulu-mulu,416,619,699697558,1476,0 +21959,Wioska+barbarzy%C5%84ska,385,406,8419570,10242,0 +21960,168,573,377,849064752,10311,0 +21961,c+010+Oaza+8,414,380,3909522,9294,0 +21962,037,371,566,8908002,8358,0 +21963,a+mo%C5%BCe+off+%3F+%3A%29,623,577,698768565,10005,0 +21965,%7E%7E025%7E%7E,596,607,7829201,9488,0 +21966,cichy+oszust,588,577,1715091,9835,0 +21967,%230037+barbarzy%C5%84ska,466,358,1238300,10178,0 +21968,%230001+messi1996,468,353,1238300,10178,0 +21969,A0104,353,488,8841266,10362,0 +21970,jaaa,627,566,698635863,10476,0 +21971,Piek%C5%82o+to+inni,572,371,848956765,10495,0 +21972,050,427,624,699783765,4503,0 +21973,Bia%C5%82o%C5%82%C4%99ka,402,388,849027025,9446,0 +21974,BEZDZIETNY+KAWALER,420,627,848913998,6249,0 +21975,030+031,543,362,699491076,10001,0 +21977,Og%C3%B3rkowy+baron,398,400,356642,9835,0 +21978,111,628,424,7085502,10251,0 +21979,012+%7C+PALESTINA,633,438,9228039,9239,0 +21980,SSJ+061,521,648,699054373,9505,0 +21982,Jednak+wol%C4%99+gofry,496,646,699725436,9888,0 +21983,Jednak+wol%C4%99+gofry,429,634,699736927,10178,0 +21984,c+001c,409,382,3909522,8813,0 +21985,Mniejsze+z%C5%82o+0038,361,468,699794765,7389,0 +21986,Iluminacja,377,576,849095992,4478,0 +21987,B.008,649,511,9188016,10000,0 +21988,%5B0017%5D,555,632,699567608,9031,0 +21989,029,470,645,698650301,8464,0 +21990,%23037.520%7C496,639,447,556154,9735,0 +21991,Szlachcic,433,370,698388578,8165,0 +21992,Ulu-mulu,427,614,699697558,8198,0 +21993,014+Legio+I+Herculia+%28G%29,650,500,699878150,9165,5 +21994,105,488,354,699761749,10495,0 +21995,Wioska+barbarzy%C5%84ska,405,402,0,10019,0 +21996,-+337+-+RR,595,612,849018239,9818,0 +21997,Og%C3%B3rkowy+baron,400,391,356642,9835,0 +21998,010-Patryk,431,628,6910361,3367,0 +21999,125,505,354,7271812,6709,0 +22000,--6.+Ruska+Rafineria,388,411,698884287,10285,0 +22001,Szlachcic,424,375,698388578,9899,0 +22002,Wioska+barbarzy%C5%84ska,371,575,849012521,5311,0 +22003,A008,580,373,699485250,10211,0 +22004,The+Game+Has+Only+Just+Begun,357,528,9280477,9976,0 +22005,Avanti%21,352,513,698625834,9950,0 +22006,a+mo%C5%BCe+off+%3F+%3A%29,632,557,698768565,9334,0 +22007,Pobozowisko,375,581,699513260,9848,0 +22008,013+Legio+I+Isaura+Sagitaria,646,486,699878150,3891,0 +22009,%230020+kamilsan993,469,357,1238300,10178,0 +22010,030+Sibir,616,584,699272880,9935,0 +22011,Wioska+barbarzy%C5%84ska,390,416,7462660,10172,0 +22012,South+K35,555,366,699146580,9809,0 +22013,A0165,352,491,8841266,10362,0 +22014,046...CENTRO,455,357,6920960,10237,0 +22015,Zeta+Reticuli+S2,391,408,699323302,10265,0 +22016,Piwna+19,631,435,699812007,6165,0 +22017,Piek%C5%82o+to+inni,571,371,848956765,10495,4 +22018,Pobozowisko,396,599,699513260,10971,0 +22019,062,618,591,698786826,5194,0 +22021,0026,538,641,698659980,10083,0 +22022,Kentin+ufam+Tobie,362,452,699783765,10000,0 +22023,Jan+Nord+K,642,458,879782,9535,0 +22024,Ulu-mulu,413,620,699697558,2475,0 +22025,Daje+w+szyje+.,578,627,848995242,10495,0 +22026,Og%C3%B3rkowy+baron,403,395,356642,9835,0 +22027,BoOmBaa..,435,368,6169408,8334,0 +22028,059,438,632,849084985,8416,0 +22029,North+Barba+015,431,368,699796330,9761,0 +22030,MojeDnoToWaszSzczyt,563,366,699697558,10495,0 +22031,%2A%2AKillarney,575,629,699443920,9761,0 +22032,Pobozowisko,393,601,699513260,10945,0 +22033,081,450,638,849084985,8372,0 +22034,-003-,358,544,9253494,9798,0 +22035,019.+Winner,503,648,848928624,9796,0 +22036,Wioska+barbarzy%C5%84ska%2C,582,621,848995242,10233,0 +22037,Ow+Konfederacja,607,402,848915730,10273,0 +22038,monetki+B,621,577,698768565,9557,9 +22039,Eilonia,516,570,849066849,8759,0 +22040,BoOmBaa..,438,366,6169408,3522,0 +22041,The+Game+Has+Only+Just+Begun,353,520,9280477,9976,0 +22043,Ow+Konfederacja,602,398,848915730,10273,0 +22044,Coruscant,501,602,699383121,9797,0 +22046,c+Agnesiara,399,390,3909522,7268,0 +22047,MojeDnoToWaszSzczyt,557,367,699697558,10495,0 +22048,Wioska+barbarzy%C5%84ska,362,442,699088529,4001,0 +22049,Myk+i+do+kieszonki,358,560,9319058,9799,0 +22050,c+004+Wioska,413,387,3909522,10083,0 +22051,Mniejsze+z%C5%82o+0062,362,460,699794765,5641,0 +22052,126,508,353,7271812,6788,0 +22053,%23004+Zenit+W%C5%82adca+%C5%9Awiata,365,440,849096215,2052,0 +22054,Jan+04+K,639,457,879782,9299,0 +22055,B.045,644,520,9188016,10000,0 +22056,%7E%7E039%7E%7E,596,608,7829201,9742,0 +22057,A012,578,377,699485250,10211,0 +22058,Amsterdam,492,351,699244334,3700,0 +22059,008+181,356,500,698807570,9939,0 +22060,Ulu-mulu,415,621,699697558,3255,0 +22061,Nowa+Nadzieja+4,497,591,699383121,7307,0 +22062,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,368,567,8004076,7821,0 +22063,B006,399,605,699383279,9592,0 +22064,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,369,567,8004076,9133,0 +22065,Maszlug+kolonia,367,432,848977649,9473,0 +22066,Jestem+Poza+Kontrol%C4%85,359,548,8004076,7764,0 +22067,027,579,380,7271812,10495,9 +22068,Pobozowisko,387,596,699513260,10952,0 +22069,Mobil,539,643,7589468,8825,0 +22070,006+Robi%C4%99+Papiery,545,363,699491076,10001,0 +22071,Rohan,612,407,699298370,7211,0 +22073,MELISKA,357,466,699794765,9330,0 +22074,008+Sprz%C4%85tana+%C5%81azienka,539,362,699491076,10001,0 +22075,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,367,565,8004076,9389,0 +22077,Og%C3%B3rkowy+baron,396,397,356642,9835,0 +22078,%21%21off+100+%25,364,555,849012521,10265,0 +22079,Ulu-mulu,414,617,699697558,4257,0 +22080,Wioska+barbarzy%C5%84ska,553,363,699072129,10237,0 +22081,%7CA%7C+Nightcross,480,649,698807570,10495,0 +22082,009.,485,647,849034882,10838,0 +22083,Aleksandria,493,353,699244334,4167,0 +22085,023+Alta,617,585,699272880,10172,0 +22086,North+PataTaj,431,369,699796330,9923,6 +22087,037.,640,479,849094609,7291,0 +22088,-x4,499,499,848967710,10252,0 +22089,Pobozowisko,374,581,699513260,10971,0 +22090,od+biedy+do+pot%C4%99gi+3,366,439,849094603,3341,0 +22091,0048,451,363,699431255,10053,0 +22092,SSJ+045,514,646,699054373,9761,0 +22093,Szlachcic,423,371,698388578,10237,0 +22094,120,475,353,7271812,9967,0 +22095,Mniejsze+z%C5%82o+0047,361,463,699794765,9396,0 +22096,Ulu-mulu,412,620,699697558,2510,0 +22097,Wioska+barbarzy%C5%84ska,373,577,849012521,4564,0 +22098,022,615,592,698786826,10220,0 +22099,Konfederacja+%2B,449,369,848915730,9976,0 +22100,064+Wioska+barbarzy%C5%84ska,537,359,699491076,10001,0 +22102,Opactwo,378,582,8607734,9654,0 +22104,BEZDZIETNY+KAWALER,425,622,848913998,6360,0 +22105,065+Wioska+barbarzy%C5%84ska,544,357,699491076,10001,0 +22106,MojeDnoToWaszSzczyt,564,366,699697558,10495,0 +22107,MojeDnoToWaszSzczyt,560,369,699697558,10495,0 +22108,A008,475,641,699383279,9793,0 +22109,B022,646,502,9314079,9835,0 +22110,The+Game+Has+Only+Just+Begun,358,533,9280477,9976,0 +22111,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,647,699828442,9899,0 +22112,47.+Wioska+47,363,549,849091769,7071,0 +22113,%7E%7E047%7E%7E,600,610,7829201,9742,0 +22114,Herrmein,371,572,8607734,10019,0 +22115,Pobozowisko,392,594,699513260,7777,0 +22116,0562,567,631,698659980,10019,0 +22117,B.010,648,509,9188016,10000,0 +22118,Wioska+barbarzy%C5%84ska,364,442,699088529,7882,0 +22119,080,358,536,6853693,5375,0 +22120,Gattacka,620,414,699298370,11422,0 +22121,Pobozowisko,395,597,699513260,10884,0 +22123,Kentin+ufam+Tobie,363,451,699783765,10000,0 +22124,006,462,360,699883079,9716,0 +22125,B012,643,490,9314079,10042,0 +22126,%3D002-00%3DSzlachcic%3D%40%23-4-,564,634,699287032,6344,0 +22127,074,438,635,849084985,9994,0 +22128,087,356,540,6853693,3888,0 +22129,North+Barba+036,433,367,699796330,9761,0 +22130,023,611,596,698786826,10084,0 +22131,Hieracium+pilosella,496,352,699883079,9902,0 +22132,MojeDnoToWaszSzczyt,557,363,699697558,10495,8 +22133,Kentin+ufam+Tobie,362,451,699783765,10000,0 +22134,The+Game+Has+Only+Just+Begun,354,525,9280477,9976,2 +22135,113,624,416,7085502,11215,0 +22136,Jednak+wol%C4%99+gofry,501,647,699725436,7910,0 +22137,B004,647,493,9314079,9818,0 +22138,jaaa,631,569,698635863,10495,0 +22139,SSJ+057,514,649,699054373,9761,0 +22140,-+336+-+RR,596,613,849018239,9824,0 +22141,%2A%2AUnlikely,573,629,699443920,9761,0 +22142,005,637,557,698702991,9819,0 +22143,North+Barba+005,430,368,699796330,10290,0 +22144,%2AINTERTWINED%2A%2A,511,648,698704189,9353,0 +22145,004.+Nightmare,632,438,849095599,10019,0 +22146,Piek%C5%82o+to+inni,569,373,848956765,9481,0 +22147,027,478,352,698739350,10237,0 +22148,Brat447,461,505,699262350,10779,0 +22149,Ave+Why%21,476,645,699121671,9809,0 +22150,c+088d,412,381,3909522,5606,0 +22151,dawidek,401,387,849027025,9889,0 +22153,Westcoast.103,368,429,848918380,10178,0 +22155,Wioska+barbarzy%C5%84ska,396,394,8419570,10168,0 +22156,133+DaSilva2402,518,351,699491076,10001,0 +22157,Mexico3,458,643,699736927,10178,0 +22159,012.+Ebe+ebe,634,443,849095599,10019,0 +22161,%7CA%7C+Heartcall..,490,647,698147372,10495,0 +22162,%2A%2AJoy,571,631,699443920,9902,0 +22163,K34+-+%5B118%5D+Before+Land,446,360,699088769,10259,0 +22164,Lord+Lord+Franek+.%23201,500,352,698420691,8966,0 +22165,A0166,354,490,8841266,10362,0 +22166,jaaa,634,564,698635863,10478,0 +22167,psycha+sitting,452,642,699736927,10311,4 +22169,A011,587,386,699761749,10290,0 +22170,0055,617,412,699429153,9474,0 +22171,c+Tre1,400,392,3909522,7210,0 +22173,BoOmBaa..,442,362,6169408,4497,0 +22174,Wioska+barbarzy%C5%84ska,630,437,699429153,8171,0 +22175,Pobozowisko,399,606,699513260,9920,0 +22178,Mniejsze+z%C5%82o+0048,357,462,699794765,6450,0 +22180,126.+Agary,630,424,8337151,7140,0 +22181,A0206,357,481,8841266,10362,0 +22182,059+Koganei,640,466,7092442,10495,0 +22183,B015,647,494,9314079,9998,0 +22184,034.,577,374,699799629,2468,0 +22186,ETAT+Z+PO%C5%9AREDNIAKA,424,619,848913998,6019,0 +22187,Oww+Konfederacja,609,394,848915730,9938,0 +22188,Konfederacja+%3F,613,401,849094147,7521,0 +22189,015+Szare+%C5%BBycie,617,408,699429153,9899,0 +22190,nic,573,624,699828685,10311,0 +22191,MojeDnoToWaszSzczyt,556,367,699697558,10495,0 +22192,xOsada+koczownik%C3%B3w,530,355,1990750,10068,8 +22193,019.,486,622,699494488,10495,0 +22194,Pobozowisko,403,612,699513260,11550,0 +22195,Lord+Lord+Franek+.%23223,524,355,698420691,9614,0 +22196,Pobozowisko,405,611,699513260,10830,0 +22197,050,646,533,699351301,10160,0 +22198,017,639,552,849095227,9761,0 +22199,c+005+Wioska,403,388,3909522,10357,0 +22200,A0058,350,492,8841266,10362,8 +22202,kathare,552,638,873575,9785,0 +22203,016,639,546,849095227,9761,0 +22204,Ulu-mulu,411,618,699697558,5404,0 +22206,Ave+Why%21,455,637,698585370,6992,0 +22207,Pobozowisko,394,598,699513260,3719,0 +22208,x%3DALFA%3D,527,357,1990750,10068,0 +22209,A-022,392,396,8419570,10168,0 +22210,0563,567,630,698659980,10019,0 +22211,a+mo%C5%BCe+off+%3F+%3A%29,624,578,698768565,10211,0 +22212,B.046,649,515,9188016,10000,0 +22213,120,644,536,7038651,9873,0 +22214,AA05+Portugalia,380,416,483145,12154,0 +22215,Maszlug+kolonia+II,368,435,848977649,9137,2 +22216,%23.02+Baza+Gliwice,652,480,849054582,10019,0 +22217,-026-,388,595,699665152,7590,0 +22219,067,647,529,699351301,10141,0 +22220,Brat447,354,477,699262350,10709,0 +22221,Wioska+barbarzy%C5%84ska,366,444,699088529,7994,0 +22223,yyyy,501,350,699883079,10052,0 +22224,-+236+-+RR,590,619,849018239,10000,0 +22225,--2.+Generalne+Gubernatorstwo,385,409,698345556,10495,6 +22226,Ave+Why%21,440,637,698585370,8610,0 +22227,Pobozowisko,397,608,699513260,10952,6 +22228,BoOmBaa..,441,367,6169408,1628,0 +22229,B.067,643,508,9188016,10000,0 +22230,Barbara+002,419,623,699730998,9409,0 +22231,035+%7C+PALESTINA,635,434,9228039,5019,0 +22232,.1.,365,555,849012521,9404,0 +22233,Maszlug+kolonia+XIV,373,433,848977649,5405,0 +22234,037+Nakagawa,643,480,7092442,10495,0 +22235,Pobozowisko,382,593,699513260,10928,0 +22236,028,484,352,698739350,10237,0 +22237,024,611,597,698786826,6635,0 +22238,066,354,468,6258092,10252,0 +22239,Maszlug+kolonia+III,366,431,848977649,9541,0 +22240,Kentin+ufam+Tobie,357,454,699783765,10000,0 +22241,c+063d,415,380,3909522,6896,0 +22243,B03+radzik354,466,645,849037407,9741,0 +22244,Avanti%21,354,509,698625834,9950,0 +22245,216,573,386,849064752,10426,0 +22246,073,643,528,699351301,9750,0 +22247,a+mo%C5%BCe+off+%3F+%3A%29,639,551,698768565,9344,0 +22248,Szlachcic,406,387,699402816,9835,0 +22249,kathare,554,637,873575,9910,0 +22251,xkikutx,507,350,1990750,9976,0 +22252,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,636,6948793,10001,0 +22253,zMakadi+Bay,391,596,699849210,10077,0 +22254,034,359,544,8908002,8136,0 +22255,ETAT+Z+PO%C5%9AREDNIAKA,421,624,848913998,4968,0 +22256,A0160,356,495,8841266,10362,0 +22257,Ahmadabad,492,353,699244334,4676,0 +22258,045,441,634,849084985,9835,0 +22259,Jednak+wol%C4%99+gofry,468,646,699725436,10311,0 +22260,0040,451,362,699431255,10047,0 +22261,0030,624,420,699429153,9825,0 +22262,Maszlug+kolonia+V,368,432,848977649,9103,0 +22263,0037,450,364,699431255,10311,0 +22264,mys,562,634,699828685,9976,0 +22265,Wioska+barbarzy%C5%84ska,370,428,699753640,2429,0 +22266,0047,616,410,699429153,9825,0 +22267,%23003+Kocham+Zenita,365,441,849096215,3889,0 +22268,Tomall78,633,430,699524891,7011,0 +22269,%7CX%7C+Xenxa,469,646,698147372,10140,0 +22270,Gattacka,604,395,699298370,10059,0 +22271,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,569,8004076,8084,0 +22272,020,359,526,698641566,9809,8 +22274,Beka+z+why,488,646,699725436,9803,0 +22275,0378,581,625,698659980,7520,0 +22276,Pobozowisko,399,609,699513260,10955,0 +22277,108,354,464,6258092,9676,0 +22278,Pf+Konfederacja+%2B,494,497,848915730,10838,0 +22279,015+181,354,502,698807570,9690,0 +22280,Magiczne+koszary,482,645,848935389,9809,0 +22281,026.+Oranje,502,649,848928624,10362,0 +22282,%2B%2B002%2B%2B,382,414,698884287,9491,0 +22283,0391,588,614,698659980,10019,0 +22284,Sony+911,575,612,1415009,10209,0 +22285,BEZDZIETNY+KAWALER,416,625,848913998,5339,0 +22286,A0135,353,489,8841266,10362,0 +22287,Za+oknem,355,493,699265922,9752,0 +22288,Wioska+2,468,641,699121671,9797,0 +22289,0139,644,462,698416970,6878,0 +22290,029%7C%7C+Canis+Major,490,646,849035525,9835,0 +22291,South+K35,555,367,699146580,10042,0 +22292,a+mo%C5%BCe+off+%3F+%3A%29,641,543,698768565,9340,0 +22293,%7E%7E013%7E%7E,603,600,7829201,9815,0 +22294,MELISKA,358,465,699794765,10252,0 +22295,0112,423,624,6910361,1930,0 +22296,A044,583,380,699485250,4834,7 +22298,014+Wioska+barbarzy%C5%84ska,569,370,699509239,5303,0 +22299,Centauria,375,578,8607734,10019,3 +22300,0022,592,384,699485250,10211,0 +22301,015.+Ale+kac,634,437,849095599,10019,0 +22302,-+101+-+RR,588,621,849018239,10000,0 +22303,Jednak+wol%C4%99+gofry,476,648,699725436,9835,0 +22304,24.+Altanka+u+banana,379,588,8665783,8732,0 +22305,Wioska+barbarzy%C5%84ska.,374,427,699753640,2036,0 +22306,Jan+014+K,642,471,879782,9310,0 +22307,c+0031,412,385,3909522,10005,0 +22308,AB15+Ukraina,375,417,483145,3992,1 +22309,Ulu-mulu,430,615,699697558,3281,0 +22310,Ave+Why%21,457,638,698585370,9412,0 +22311,Alicization+6,462,647,699849210,8864,0 +22312,Pobozowisko,404,616,699513260,10971,0 +22313,psycha+sitting,452,647,699736927,10178,0 +22314,The+Game+Has+Only+Just+Begun,354,526,9280477,9976,0 +22315,010.+Benten,634,447,849095599,10019,0 +22316,The+Game+Has+Only+Just+Begun,354,522,9280477,9976,0 +22317,%245.000+Grvvyq,635,550,699676005,10495,0 +22318,--004--,381,411,698884287,10285,0 +22319,Wioska+barbarzy%C5%84ska,548,360,699072129,10237,0 +22320,%23038.520%7C498,639,449,556154,9735,0 +22321,Wioska+barbarzy%C5%84ska,382,408,698884287,10285,0 +22322,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,647,699828442,9825,0 +22324,Pobozowisko,404,610,699513260,7213,0 +22325,Pobozowisko,397,603,699513260,10951,0 +22326,10.+Hell,408,616,9060641,9184,0 +22327,AA07+Grecja,378,414,483145,12154,0 +22328,Westcoast.114,378,425,848918380,10178,0 +22329,021.+Szczupaka,507,649,848928624,9402,0 +22330,%7CA%7C+Mistrun..,484,644,698147372,10495,0 +22331,KR%C3%93L+PAPI+WIELKI,572,570,698191218,10000,0 +22332,24k%24+Grvvyq,638,554,699676005,10495,0 +22333,26.+Okuninka,379,587,8665783,7293,0 +22334,So%C5%82tys+Twojej+Wsi,403,386,849027025,9515,0 +22335,%7CA%7C+Roguehollow,480,646,698807570,10495,0 +22336,075,467,360,698739350,9902,0 +22337,Cisza+2,356,543,698769107,4806,0 +22338,017+018,537,360,699491076,10001,2 +22339,Ulu-mulu,431,607,699697558,7357,0 +22340,A0298,354,481,8841266,10362,0 +22341,Pobozowisko,397,607,699513260,10971,0 +22342,jaaa,632,567,698635863,10481,0 +22343,064,647,520,699351301,10160,0 +22344,kathare,551,634,873575,9909,0 +22345,Ulu-mulu,417,623,699697558,3605,0 +22346,CSA,521,357,7651093,9811,0 +22347,65.+KaruTown,642,450,849060446,9735,3 +22348,Jehu_Kingdom_52,638,454,8785314,3950,0 +22349,Wioska+barbarzy%C5%84ska,639,539,7047342,10495,0 +22350,Wioska+barbarzy%C5%84ska,552,361,699072129,10221,0 +22351,WW26,646,464,698845189,6847,0 +22352,The+Game+Has+Only+Just+Begun,353,533,9280477,9976,2 +22354,Kentin+ufam+Tobie,352,477,699783765,10000,0 +22355,%5BC%5D_%5B002%5D+Dejv.oldplyr,359,473,699380607,10495,0 +22356,K34+-+%5B117%5D+Before+Land,449,358,699088769,9783,0 +22357,032,647,521,699351301,10155,0 +22358,Piek%C5%82o+to+inni,569,371,848956765,8508,0 +22359,deff+100+%25,364,558,849012521,10251,0 +22360,Wioska+barbarzy%C5%84ska,528,355,1990750,9968,0 +22361,0029+Wioska+barbarzy%C5%84ska,408,615,9060641,8003,0 +22362,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,646,699828442,9811,0 +22363,c+Kolwicz+005,402,391,3909522,10224,0 +22364,0050,447,355,699431255,10311,0 +22365,025,613,593,698786826,7315,0 +22366,Godynice,625,571,849095778,7024,0 +22367,Jestem+Poza+Kontrol%C4%85,354,547,8004076,6823,0 +22368,Wioska+barbarzy%C5%84ska,643,538,7047342,10551,0 +22370,Wioska+barbarzy%C5%84ska,550,363,699072129,10237,0 +22371,%7E%7E052%7E%7E,606,606,7829201,9636,0 +22372,076,467,359,698739350,10237,0 +22373,Zeta+Reticuli+S2,391,404,699323302,10887,0 +22374,021,361,546,8908002,7366,0 +22375,%23.11+Wioska+barbarzy%C5%84ska,649,477,849054582,10019,0 +22376,0043,541,635,698659980,10083,0 +22377,a+mo%C5%BCe+off+%3F+%3A%29,624,582,698768565,9536,0 +22379,Wioska+barbarzy%C5%84ska,509,357,699368887,7826,0 +22380,111,532,355,1990750,10068,0 +22381,Owp+Konfederacja,593,386,848915730,7790,0 +22382,149+San+Cristobal,467,494,1497168,9761,0 +22384,003,388,401,6171569,1965,0 +22385,006,430,631,699783765,9128,0 +22386,Kentin+ufam+Tobie,363,453,699783765,10000,0 +22387,036,485,351,698739350,10237,0 +22388,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,641,1434753,10068,0 +22389,kathare,548,640,873575,10495,2 +22391,041,645,521,699351301,9761,0 +22392,Wioska+%28034%29,645,477,698232227,7033,0 +22393,046,441,635,849084985,10542,0 +22394,Kentin+ufam+Tobie,364,453,699783765,10000,0 +22395,202,573,376,849064752,5303,0 +22396,-004-+K56,649,503,8096537,9742,0 +22398,A043,584,380,699485250,4199,0 +22399,C+014,591,388,6384450,6904,0 +22401,R-15,601,392,3600737,6868,0 +22404,The+Game+Has+Only+Just+Begun,355,534,9280477,9976,0 +22405,035+181,355,502,698807570,7690,0 +22406,145+Wioska+01,373,579,699382126,7319,0 +22407,105,479,353,7271812,10495,0 +22408,-010-,385,595,699097885,8254,0 +22409,yogi,558,636,2808172,10019,0 +22410,.achim.,536,391,6936607,9578,0 +22411,Wojo,498,354,699883079,10237,0 +22412,Ow+Konfederacja+%2B,601,396,848915730,9938,0 +22413,Bagdad,499,351,8847546,9976,0 +22414,0389,587,615,698659980,10019,0 +22415,--007--,384,414,698884287,8086,0 +22416,-+030+-+RR,584,622,849018239,10000,0 +22417,AA09+W%C5%82ochy,376,422,483145,7495,0 +22418,zzzGranica+Bledu+04,611,602,699778867,10887,0 +22419,Gravity,417,456,698962117,9579,0 +22420,142,454,360,6920960,7345,0 +22421,0101,419,618,699697558,4894,0 +22422,Pobozowisko,385,594,699513260,7352,0 +22423,Avanti%21,351,504,698625834,9950,0 +22424,off+100+%25,361,559,849012521,10559,5 +22425,Szlachcic,426,370,698388578,7585,0 +22426,Wioska+%28020%29,637,454,698232227,9822,0 +22427,A0059,350,490,8841266,10362,8 +22429,%2A%2AKonkol,576,630,699443920,9761,0 +22430,008+Hobro,620,584,699272880,10548,0 +22431,The+Game+Has+Only+Just+Begun,352,527,9280477,9976,0 +22432,The+Game+Has+Only+Just+Begun,353,522,9280477,9976,0 +22433,122,616,412,7085502,9959,0 +22435,a+mo%C5%BCe+off+%3F+%3A%29,638,546,698768565,9995,0 +22436,0084,530,643,698659980,10160,0 +22437,Kentin+ufam+Tobie,357,460,699783765,10075,0 +22439,.2.,365,554,849012521,8527,0 +22440,0032,617,415,699429153,8615,0 +22441,K34+-+%5B099%5D+Before+Land,449,359,699088769,9744,0 +22442,Wioska+barbarzy%C5%84ska,546,357,699072129,10218,0 +22443,c+Fyra+4,403,394,3909522,9877,0 +22444,M181_059,365,437,393668,9888,7 +22445,%23.36+Wioska+barbarzy%C5%84ska,649,476,849054582,3198,0 +22446,PI3,354,460,6258092,10559,2 +22447,A020,587,381,699485250,10168,0 +22448,013.+Rumpel,508,650,848928624,10237,0 +22449,Wioska+barbarzy%C5%84ska,364,440,699088529,2729,0 +22451,Lord+Lord+Franek+.%23214,511,355,698420691,10362,0 +22452,Wioska+barbarzy%C5%84ska,623,424,699429153,9825,0 +22453,Ulu-mulu,412,615,699697558,5703,0 +22454,Deveste+ufam+Tobie,433,633,699783765,8701,0 +22455,K34+-+%5B010%5D+Before+Land,443,361,699088769,10259,5 +22456,037,642,550,849095227,9724,0 +22457,-+029+-+RR,588,622,849018239,10000,0 +22460,Wioska+barbarzy%C5%84ska,363,555,6853693,3560,0 +22461,105,439,637,849084985,2875,0 +22462,Avanti%21,355,513,698625834,9950,0 +22463,The+Game+Has+Only+Just+Begun,352,521,9280477,9976,0 +22464,%5BC%5D_%5B003%5D+Dejv.oldplyr,359,472,699380607,10495,0 +22465,112,484,356,699761749,9830,6 +22466,Ave+Why%21,471,648,699121671,9809,0 +22468,025,434,630,699783765,9597,0 +22469,217,575,377,849064752,10319,0 +22470,031+Barba,651,487,2135129,9553,0 +22471,035,641,548,849095227,9729,0 +22472,Myk+i+do+kieszonki,356,564,9319058,9799,0 +22473,%2AINTERTWINED%2A,517,647,698704189,9711,0 +22474,146,453,362,6920960,7686,0 +22475,The+Game+Has+Only+Just+Begun,356,532,9280477,9976,0 +22476,Pobozowisko,402,603,699513260,10746,0 +22477,Wioska+Hajkon,474,644,699238479,9998,0 +22478,007,375,418,848945529,3413,0 +22480,016+MONETKI,646,483,7588382,8783,0 +22481,a+mo%C5%BCe+off+%3F+%3A%29,636,552,698768565,9351,0 +22482,Avanti%21,352,507,698625834,9950,0 +22483,002.+Oto+ja%21,439,641,699736927,10203,0 +22484,43.+G%C3%B3ry+Sine,606,397,8976313,10019,0 +22485,A045,583,378,699485250,5336,0 +22486,Za+luba,354,495,699265922,9252,0 +22488,Wioska+barbarzy%C5%84ska,550,357,699072129,10229,0 +22489,A-018,391,395,8419570,10168,0 +22490,001,358,537,6853693,10474,0 +22491,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,365,568,8004076,9395,0 +22492,001.+Po%C5%82udnica,507,591,699703642,9889,0 +22493,VN+Kalluto+Zoldyck,459,359,699883079,9865,0 +22495,Szlachcic,421,375,698388578,10237,0 +22496,27.+KaruTown,615,403,699298370,9442,0 +22497,Jednak+wol%C4%99+gofry,499,645,699725436,10311,0 +22498,Wioska+RADZA121,383,588,699621601,10208,0 +22499,Pobozowisko,405,614,699513260,10449,0 +22500,%7CA%7C+Windbarrow..,481,649,698807570,10495,0 +22501,A0066,350,484,8841266,10362,0 +22502,The+Game+Has+Only+Just+Begun,353,523,9280477,9976,0 +22503,CSA,524,353,7651093,9817,0 +22504,A0130,351,498,8841266,10362,0 +22506,-+327+-+RR,591,615,849018239,9626,0 +22507,C003,591,383,699761749,9737,0 +22508,Jednak+wol%C4%99+gofry,469,650,699725436,10362,0 +22509,A+013,600,388,6384450,10362,0 +22510,mys,563,634,699828685,9976,0 +22511,kathare,554,638,873575,9882,0 +22512,074,428,374,699796330,6395,0 +22513,012,427,627,699783765,4617,0 +22514,Jan+Ii+K,644,474,879782,9570,0 +22515,070,481,385,698739350,8142,0 +22516,MojeDnoToWaszSzczyt,563,368,699697558,10495,0 +22518,020+Summerhall,621,585,699272880,9924,0 +22519,Pobozowisko,398,604,699513260,10971,0 +22520,%5BC%5D_%5B006%5D+Dejv.oldplyr,356,475,699380607,10495,0 +22521,%23057.,642,448,556154,9735,0 +22522,ave+why%21,434,633,698143931,10254,0 +22523,Wioska+barbarzy%C5%84ska,438,368,699308637,10495,0 +22524,024,434,487,699510259,9899,0 +22525,091,355,458,6258092,10019,0 +22526,MojeDnoToWaszSzczyt,562,365,699697558,10495,0 +22527,%2AINTERTWINED%2A%2A,509,648,698704189,9658,0 +22529,078,442,638,849084985,10495,0 +22530,054.+Snoob,515,651,848928624,10436,0 +22531,A10+Wioska+barbarzy%C5%84ska,466,635,849037407,10270,0 +22532,Rudy+rydz+sie+pisze+a+nie+ryc,570,372,699509239,9417,0 +22533,112,478,357,7271812,6825,0 +22534,058,648,517,699351301,10224,0 +22535,c+Fyra,402,393,3909522,9989,0 +22536,144,451,358,6920960,9766,0 +22537,A015,593,388,699761749,4167,0 +22539,The+Game+Has+Only+Just+Begun,351,526,9280477,9976,0 +22540,015+MONETKI,648,484,7588382,8840,0 +22541,024%7C%7C+Antlia,485,638,849035525,10019,0 +22542,Mobil,538,645,7589468,8831,0 +22543,080+Osada+koczownik%C3%B3w,375,574,699382126,9902,9 +22544,Maszlug+kolonia+VI,367,431,848977649,9109,0 +22545,The+Game+Has+Only+Just+Begun,352,517,9280477,9976,0 +22546,Jednak+wol%C4%99+gofry,501,645,699725436,5619,0 +22547,The+Game+Has+Only+Just+Begun,355,521,9280477,9976,0 +22548,North+Barba+016,429,367,699796330,9742,0 +22549,Wioska+barbarzy%C5%84ska,646,525,7047342,10487,0 +22550,108,476,351,7271812,9770,0 +22551,086,632,565,849095227,7720,0 +22553,101,474,353,7271812,10495,0 +22555,Kentin+ufam+Tobie,354,474,699783765,10000,0 +22556,Kentin+ufam+Tobie,355,474,699783765,10000,0 +22557,yyyy,500,353,699883079,10319,0 +22558,0025,595,385,699485250,10211,0 +22559,Podzi%C4%99kowa%C5%82+3,424,374,699796330,10495,0 +22560,Pobozowisko,391,603,699513260,10957,0 +22561,%23.42+Wioska+barbarzy%C5%84ska,651,486,849054582,4273,0 +22562,036+Wioska+barbarzy%C5%84ska,538,360,699854484,9976,0 +22563,022+Revyl,620,585,699272880,10093,0 +22564,007+Wioska+barbarzy%C5%84ska,566,371,699509239,5036,0 +22565,B.004,650,512,9188016,10000,0 +22566,Wioska+barbarzy%C5%84ska,632,562,7047342,10487,0 +22567,051%7C%7C+Pegasus,494,651,849035525,9723,0 +22568,AA06+Islandia,381,417,483145,12154,0 +22569,Wioska+barbarzy%C5%84ska,644,529,7047342,10476,0 +22570,018+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,630,434,9228039,9523,0 +22571,Szlachcic,426,371,698388578,8259,0 +22573,Wioska+barbarzy%C5%84ska,473,644,699238479,8676,0 +22574,Wioska+barbarzy%C5%84ska,639,456,699524891,9516,0 +22575,0037,618,416,699429153,9412,0 +22576,WE+ARE+READY%21,594,383,1553947,10209,5 +22577,044,446,641,849084985,9976,0 +22579,0052,618,411,699429153,9746,0 +22580,kto+ananasowy+pod+wod%C4%85+ma+dom,570,505,699628084,9797,0 +22581,Kentin+ufam+Tobie,355,473,699783765,10000,0 +22583,0002,538,640,698659980,10160,8 +22584,005+%7C+PALESTINA,639,440,9228039,9544,0 +22585,B003,648,494,9314079,9818,0 +22586,069,643,534,699351301,10160,0 +22587,a+mo%C5%BCe+off+%3F+%3A%29,637,554,698768565,9334,0 +22588,Wioska+barbarzy%C5%84ska,373,576,849012521,5841,0 +22589,Ave+Why%21,455,638,698585370,7739,0 +22590,Lord+Lord+Franek+.%23224,525,354,698420691,8694,0 +22591,Ga%C5%82ki,627,570,849095778,9404,0 +22592,%23039.519%7C496,638,447,556154,9735,0 +22593,Jan+017+K,643,465,879782,9905,0 +22594,MojeDnoToWaszSzczyt,565,365,699697558,10495,0 +22595,A007,473,634,699383279,9809,0 +22596,Br%C4%85szewice,626,576,849095778,9404,0 +22597,M181_060,365,433,393668,10592,9 +22598,020.+DePRESJA,635,443,849095599,9063,0 +22599,%23025.520%7C499,639,450,556154,9735,0 +22600,Jednak+wol%C4%99+gofry,481,644,699725436,10178,0 +22601,S181,629,568,131972,1347,0 +22602,zzzGranica+Bledu+01,607,604,699778867,11130,0 +22603,Jestem+Poza+Kontrol%C4%85,361,550,8004076,9880,7 +22605,Szlachcic,419,372,698388578,10237,0 +22606,%7E%7E018%7E%7E,606,605,7829201,9821,0 +22607,019+181,352,501,698807570,10060,0 +22608,002+Ogl%C4%85dam+Powt%C3%B3rk%C4%99+CZE+-+POR,540,358,699491076,10001,0 +22609,014,427,628,699783765,5726,0 +22610,038%7C%7C+Norma,480,650,849035525,10019,0 +22611,037,644,543,698999105,10311,0 +22612,Wioska+barbarzy%C5%84ska,551,364,699072129,10223,0 +22613,AA04+Hiszpania,378,411,483145,12154,0 +22614,Ulu-mulu,408,619,699697558,6751,0 +22615,%2AINTERTWINED%2A,509,649,698704189,9711,0 +22616,B.013,647,512,9188016,10000,0 +22618,%7E%7E007%7E%7E,603,603,7829201,9870,0 +22619,038,613,590,698786826,6018,0 +22620,Pobozowisko,396,606,699513260,10218,0 +22621,kathare,557,639,873575,9954,0 +22622,109,622,417,7085502,9899,0 +22624,The+Game+Has+Only+Just+Begun,356,523,9280477,9976,0 +22626,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,646,699828442,9808,0 +22627,a+mo%C5%BCe+off+%3F+%3A%29,638,552,698768565,9348,0 +22628,007.+Bond+James+Bond,506,646,848928624,10237,0 +22629,B013,648,496,9314079,9818,0 +22630,Ave+Why%21,477,648,698585370,9377,0 +22631,jaaa,633,572,698635863,10495,0 +22632,K34+-+%5B113%5D+Before+Land,447,361,699088769,8900,0 +22633,wioska,604,394,849061374,10032,0 +22634,WW27,645,466,698845189,5417,0 +22635,Yogi,554,647,2808172,10019,0 +22636,kathare,546,641,873575,9884,0 +22637,024,433,630,699783765,8246,0 +22638,Wioska+Barba+I,383,407,8967440,4073,0 +22639,K08,369,577,849090130,2210,0 +22640,020,489,349,698739350,10237,0 +22641,B02+wr%C3%B3ci%C5%82a%C5%9B+do+mnie+%3A%29,458,642,849037407,11109,0 +22642,BoOmBaa..,438,367,6169408,3492,0 +22643,Og%C3%B3rkowy+baron,398,394,356642,9835,0 +22644,A010,579,378,699485250,10211,0 +22645,004.,487,650,849034882,10838,0 +22646,0058,623,411,699429153,9966,0 +22647,LadyAnimavillis,596,616,699703642,7472,0 +22648,No.+1,477,653,698585370,9225,0 +22649,031+%7C+PALESTINA,631,433,9228039,9067,0 +22650,627%7C423+Wioska+barbarzy%C5%84ska22,627,423,6822957,8971,0 +22651,0047,444,365,699431255,10058,0 +22652,Jestem+Poza+Kontrol%C4%85,350,549,8004076,9880,0 +22653,yyyyy,504,354,699883079,10052,0 +22654,035,360,541,6853693,9979,0 +22655,008,428,630,699783765,5380,0 +22656,c+Kolwicz+004,403,392,3909522,10477,0 +22657,MojeDnoToWaszSzczyt,560,367,699697558,10495,0 +22658,kathare,548,639,873575,9913,0 +22659,P027+Royal+Kush,650,519,8096537,9761,0 +22660,R%C4%99cznik+do+zmiany,372,419,699697558,6989,0 +22661,Lord+Arsey+KING,526,503,848956513,10285,0 +22662,K34+-+%5B049%5D+Before+Land,445,359,699088769,7297,0 +22663,Brat447,355,478,699262350,10476,0 +22664,Jotunheim,376,576,8607734,8196,0 +22665,076....barbakra,456,359,6920960,10221,0 +22666,CSA,516,354,7651093,9811,0 +22667,018.+Rzym,632,436,849095599,9541,0 +22668,CSA,519,352,7651093,7560,0 +22669,AB11+Turcja,375,421,483145,6629,0 +22670,A0065,350,488,8841266,10362,0 +22671,Westcoast.115,373,429,848918380,10178,0 +22672,Jan+07+K,642,464,879782,9450,2 +22673,Wioska+barbarzy%C5%84ska,632,561,7047342,10475,0 +22674,Lord+Lord+Franek+.%23225,510,353,698420691,10224,0 +22675,032+VW+xyz,379,412,3108144,11188,0 +22676,The+Game+Has+Only+Just+Begun,352,531,9280477,9976,0 +22678,094+duko+3,547,357,699491076,10001,0 +22680,Monetio,444,359,699393759,10495,0 +22681,Og%C3%B3rkowy+baron,400,403,356642,9835,0 +22682,B002,396,608,699383279,9793,0 +22683,Kentin+ufam+Tobie,359,443,699783765,7117,0 +22684,M002,650,505,848899726,9730,0 +22685,Og%C3%B3rkowy+baron,400,406,356642,9835,0 +22686,Pobozowisko,385,597,699513260,9175,0 +22687,032+%7C+PALESTINA,638,437,9228039,7758,0 +22688,012,469,645,698650301,6725,0 +22689,0060,443,366,699431255,10121,0 +22690,a+mo%C5%BCe+off+%3F+%3A%29,625,583,698768565,9534,0 +22691,48.+Wioska+48,362,547,849091769,7032,0 +22692,Wioska+barbarzy%C5%84ska,534,354,1990750,9933,0 +22693,Wioska+barbarzy%C5%84ska,433,632,6910361,6456,0 +22694,002...CENTR_Jazda_D,463,353,6920960,10495,0 +22695,Wioska+barbarzy%C5%84ska,371,429,699753640,3170,0 +22696,076+Atlanda,543,358,699491076,10001,0 +22697,018,520,350,1990750,10068,0 +22698,012,613,400,699298370,9818,8 +22699,008,373,421,848945529,3596,0 +22700,The+Game+Has+Only+Just+Begun,350,519,9280477,9976,0 +22701,Kentin+ufam+Tobie,358,459,699783765,10000,0 +22702,Szlachcic,352,466,6258092,10160,8 +22704,09.+Shine+it,498,648,849100262,9812,0 +22705,off+100+%25,362,556,849012521,10265,0 +22706,Pobozowisko,388,603,699513260,10950,0 +22707,jaaa,628,576,698635863,10495,0 +22708,A0136,348,495,8841266,10362,0 +22709,A006,474,640,699383279,9852,0 +22710,040,371,567,8908002,8153,0 +22711,The+Game+Has+Only+Just+Begun,351,530,9280477,9976,0 +22712,Jednak+wol%C4%99+gofry,430,635,848913998,8792,0 +22713,Wioska+03,384,589,699621601,3422,0 +22714,043,444,640,849084985,9031,0 +22715,kropka.,601,611,699778867,11321,0 +22717,%230002+Farmer155,466,352,1238300,10178,0 +22718,%5BC%5D_%5B005%5D+Dejv.oldplyr,352,475,699380607,10495,0 +22719,CALL+987,555,550,699784536,10311,0 +22720,Lord+Lord+Franek+.%23215,500,349,698420691,8999,0 +22721,023,636,555,849095227,9809,4 +22722,A004.Wioska+barbarzy%C5%84ska,392,597,699665152,9899,0 +22723,c+087d,411,383,3909522,5185,0 +22724,Klinton,374,576,8607734,10019,0 +22725,--009--,381,408,698884287,7569,0 +22726,jaaa,632,574,698635863,10495,0 +22727,057,636,562,849095227,9721,0 +22728,Jednak+wol%C4%99+gofry,470,651,699725436,9835,0 +22729,089,355,459,6258092,10019,0 +22730,035+%23Aquel,371,569,8908002,9993,0 +22731,%7E%7E048%7E%7E,603,611,7829201,9761,0 +22732,C009,600,386,699761749,5930,0 +22733,061,364,536,8908002,4568,0 +22734,021+Barba,650,485,2135129,9010,0 +22735,Wioska+barbarzy%C5%84ska,380,587,699621601,3685,0 +22736,110,483,355,699761749,8285,0 +22737,AB12+W%C4%99gry,376,420,483145,4443,0 +22738,%5B004%5D,456,641,698585370,10191,0 +22739,A018,590,379,699485250,10211,0 +22741,%5B147%5D,636,567,8000875,9611,0 +22742,BEZDZIETNY+KAWALER,417,630,848913998,9676,0 +22743,c+kinderki,398,387,3909522,8314,0 +22744,001.+Gotham,633,447,849095599,10019,0 +22745,Gattacka,605,396,699298370,9835,0 +22746,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,643,699828442,9825,0 +22747,042.,398,618,2665207,9835,0 +22748,Lord+Lord+Franek+.%23191,505,348,698420691,5114,0 +22749,Piwna+20,638,438,699812007,5737,0 +22750,kathare,552,636,873575,9910,0 +22751,R%C4%99cznik+do+zmiany,376,413,699697558,10160,0 +22752,The+Game+Has+Only+Just+Begun,357,529,9280477,9976,0 +22753,0121,424,627,6910361,1448,0 +22754,K34+-+%5B100%5D+Before+Land,448,359,699088769,11824,0 +22755,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,643,1434753,9935,0 +22756,002+Minas+Tirith,385,401,8967440,5569,3 +22757,C+002,592,380,6384450,10362,0 +22758,Hydrawydra,426,616,849095601,7686,0 +22759,149...ksi%C4%85%C5%BC%C4%99+plemienia,453,359,6920960,8261,0 +22760,c+011+Przysta%C5%84+4,413,377,3909522,10328,0 +22761,Piek%C5%82o+to+inni,570,370,848956765,9744,0 +22762,032,479,352,698739350,10237,0 +22763,MojeDnoToWaszSzczyt,570,365,699697558,10019,0 +22764,The+Game+Has+Only+Just+Begun,357,532,9280477,8925,0 +22765,Lord+Lord+Franek+.%23226,523,355,698420691,10362,0 +22766,A034,577,372,699485250,10211,0 +22767,%7E%7E024%7E%7E,604,606,7829201,9800,0 +22768,Lord+Arsey+I,371,424,698349125,2819,5 +22770,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,641,7589468,8816,0 +22771,Kikut,515,349,1990750,10068,0 +22772,Knowhere,376,489,699723284,10374,0 +22773,Pobozowisko,385,604,699513260,10952,0 +22774,SSJ+049,515,647,699054373,9761,0 +22775,29.+KaruTown,616,403,699298370,9653,0 +22776,Ashemark,452,639,699736927,9425,0 +22777,Avanti%21,355,511,698625834,9950,0 +22778,027,451,638,849084985,10033,9 +22779,Hiszpan1,646,543,7038651,10474,0 +22780,Pobozowisko,403,614,699513260,10971,0 +22782,Wioska+9,648,468,848935020,7498,0 +22783,A-014,391,394,8419570,10168,4 +22784,0007,403,383,699402816,9899,0 +22785,od+biedy+do+pot%C4%99gi+5,362,443,849094603,3592,0 +22786,Wioska+Bochun10,346,506,7449254,9385,0 +22787,-+224+-+RR,586,620,849018239,8487,0 +22788,Wioska+barbarzy%C5%84ska,369,572,849012521,6103,0 +22790,a+mo%C5%BCe+off+%3F+%3A%29,640,545,698768565,9499,0 +22791,Pobozowisko,407,614,699513260,9320,0 +22792,%7E%7E036%7E%7E,596,610,7829201,9747,0 +22793,038,481,350,698739350,10237,0 +22794,021,488,349,698739350,10237,0 +22795,118,474,357,7271812,10230,0 +22796,066+Wioska+barbarzy%C5%84ska,537,353,699491076,10001,0 +22797,02+Forteca,548,358,849108780,8900,0 +22798,-+239+-+RR,592,618,849018239,10000,0 +22799,kathare,559,637,873575,10285,0 +22800,040,652,484,2135129,9553,0 +22801,Posterunek+002,400,613,848912772,10178,0 +22802,025+181,354,500,698807570,10019,0 +22803,a+mo%C5%BCe+off+%3F+%3A%29,622,579,698768565,9534,0 +22804,kathare,551,638,873575,9872,0 +22805,021,359,537,6853693,5749,0 +22806,--008--,382,413,698884287,9587,0 +22807,0060,623,415,699429153,9825,0 +22808,026,614,597,698786826,9694,0 +22809,0203,405,513,7085510,6151,0 +22811,BEZDZIETNY+KAWALER,414,625,848913998,3780,0 +22812,021.+Pacanowo,637,435,849095599,9413,0 +22813,027+Wioska,646,490,699671454,9082,0 +22814,The+Game+Has+Only+Just+Begun,355,524,9280477,9976,0 +22815,Wioska+7,374,580,849012521,8131,0 +22816,Jednak+wol%C4%99+gofry,498,649,699725436,10178,0 +22817,031+VW+GD+--011--,380,409,3108144,3060,0 +22818,0049,617,409,699429153,9825,0 +22819,004+Wioska+konri2008,568,372,699509239,5457,0 +22820,%2A%2ASkill,571,632,699443920,9761,0 +22821,007,377,533,8908002,9993,0 +22822,%2ALebioda,573,632,699443920,9994,0 +22823,Mexico,455,642,699736927,10311,0 +22824,0035+Wioska+barbarzy%C5%84ska,405,615,9060641,6353,0 +22825,Wioska+shokode,486,657,849037699,6430,0 +22826,Lord+Lord+Franek+.%23136,506,351,698420691,10636,0 +22827,Myk+i+do+kieszonki,361,563,9319058,9799,0 +22828,B023,649,487,9314079,9816,0 +22829,jaaa,630,569,698635863,10478,0 +22830,Piek%C5%82o+to+inni,569,366,848956765,10495,0 +22831,MELISKA,357,464,699794765,8802,0 +22832,Jaaa,622,588,698635863,10389,0 +22833,67.+KaruTown,641,450,849060446,9735,0 +22834,MojeDnoToWaszSzczyt,569,365,699697558,10019,0 +22835,%230039+barbarzy%C5%84ska,465,356,1238300,10178,0 +22836,%23.29+Wioska+barbarzy%C5%84ska,647,472,849054582,4554,0 +22837,Wioska+barbarzy%C5%84ska,646,461,699524891,9983,0 +22838,0038,450,363,699431255,10311,0 +22839,Szlachcic,426,369,698388578,8344,0 +22840,Pobozowisko,392,606,699513260,9007,0 +22841,Jestem+Poza+Kontrol%C4%85,356,547,8004076,9197,0 +22842,C+003,595,383,6384450,10362,0 +22843,WIOSKA,631,438,699429153,10224,2 +22844,A0167,353,482,8841266,10362,0 +22845,059,618,586,698786826,9497,0 +22846,Wioska+cacciatore,534,381,698350371,10495,0 +22847,0377,581,623,698659980,8922,0 +22848,054,646,537,699351301,10139,0 +22849,-007-,389,602,699097885,9881,0 +22850,%23.13+Wioska+barbarzy%C5%84ska,648,475,849054582,10019,0 +22851,A-008,400,398,8419570,10337,0 +22852,Wioska+1,390,400,6171569,4035,0 +22854,.%3A057%3A.%C5%81OBUZIK,553,364,848934935,5509,0 +22855,R%C4%99cznik+do+zmiany,376,412,699697558,10160,0 +22856,019.+Florencja,631,436,849095599,9066,0 +22857,05+Nowa+Szpica,544,359,849108780,9854,0 +22858,%7CA%7C+Lightgulch,479,650,698807570,10495,0 +22859,Pobozowisko,386,595,699513260,10223,0 +22860,Ave+Why%21,479,648,698585370,10160,0 +22861,%23040.521%7C499,640,450,556154,9735,0 +22862,Kentin+ufam+Tobie,351,472,699783765,10000,0 +22863,Horyzont+zdarze%C5%84,537,647,7581876,10019,4 +22864,MojeSzczytToTw%C3%B3jDno,510,349,828637,12138,0 +22865,116,629,425,7085502,9019,0 +22866,SSJ+051,503,645,699054373,9682,0 +22867,D+010,650,499,8078914,9542,0 +22868,Ave+Why%21,438,634,698585370,7930,1 +22869,084,441,640,849084985,10286,0 +22870,031+030,543,359,699491076,10001,0 +22871,Osada+003,400,615,848912772,10178,0 +22872,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,535,642,7589468,8822,0 +22874,So%C5%82tys+Wsi+Enaor1990,408,382,849027025,8656,0 +22875,The+Game+Has+Only+Just+Begun,352,524,9280477,9976,0 +22876,015,429,628,699783765,4590,0 +22877,Szlachcic,424,373,698388578,10237,0 +22878,115,478,354,7271812,6895,0 +22879,042,651,484,2135129,9553,0 +22881,Avanti%21,349,502,698625834,9950,0 +22882,jaaa,632,575,698635863,10495,0 +22883,42.+KaruTown,615,400,699298370,9827,0 +22884,Wioska+Barba+II,382,407,698884287,7255,0 +22885,A002,597,385,699761749,10495,0 +22886,immortale+bo+morale,511,350,9140898,5426,0 +22887,030,353,470,6258092,10252,0 +22888,Pobozowisko,392,601,699513260,10971,0 +22889,Tylos,549,363,699072129,10237,0 +22890,011,424,631,699783765,5107,0 +22891,-+329+-+RR,593,613,849018239,8851,0 +22892,30.+KaruTown,615,405,699298370,9744,0 +22893,mys,565,633,699828685,9976,0 +22894,Szlachcic,415,378,698388578,6507,0 +22895,psycha+sitting,450,644,699736927,10178,6 +22896,ETAT+Z+PO%C5%9AREDNIAKA,423,620,848913998,9491,0 +22897,054.+Gades,645,471,849091866,9174,0 +22898,%2ALajs,577,636,699443920,9761,0 +22899,100,356,462,6258092,7495,0 +22900,BEZDZIETNY+KAWALER,412,631,848913998,9922,0 +22901,%2A0025+Baraki,626,425,8459255,9924,0 +22902,Lord+Lord+Franek+.%23197,505,352,698420691,9574,0 +22903,A014,580,371,699485250,10168,0 +22905,028+VW+GD+--017--,370,422,3108144,3775,0 +22906,A007,581,374,699485250,10168,0 +22907,c+Sztum,400,389,3909522,8288,0 +22908,Lord+Lord+Franek+.%23044,533,353,698420691,9962,0 +22909,Wioska+DamianDK,416,622,849095642,3330,0 +22910,jaaa,631,578,698635863,10495,0 +22911,x012,359,567,9264752,10495,0 +22912,006.+%3AD,506,647,848928624,10444,0 +22913,103,476,355,7271812,9854,0 +22914,BAC%C3%93WKA+%7C009%7C,620,408,7394371,11989,0 +22915,120,624,417,7085502,10068,0 +22916,Wioska+Trer+Ceiri,539,385,698350371,10495,0 +22917,Lord+Lord+Franek+.%23202,504,350,698420691,10389,0 +22918,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,644,1434753,10068,0 +22919,024+Legio+I+Claudia,650,489,699878150,5272,0 +22920,Monetki,468,408,699098531,9637,0 +22921,Magiczne+koszary,483,645,848935389,9809,0 +22922,BEZDZIETNY+KAWALER,417,628,848913998,10311,0 +22924,Szcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,610,396,699368887,8352,0 +22925,Kentin+ufam+Tobie,362,439,699783765,10000,0 +22926,ave+why%21,434,636,698143931,9269,0 +22927,0118,423,625,6910361,3774,0 +22928,CSA,518,353,7651093,8592,0 +22929,Skazany+Na+Instynkt,368,575,8004076,8319,0 +22930,Szlachcic%2FTaran,619,400,699759128,10237,0 +22931,Pobozowisko,393,600,699513260,10907,0 +22932,The+Game+Has+Only+Just+Begun,352,514,9280477,9976,0 +22933,0033,623,422,699429153,9825,0 +22934,0162,537,648,698659980,10019,0 +22935,North+Barba+031,431,371,699796330,9557,0 +22936,Wioska+Smarze,386,401,8419570,10221,0 +22937,M181_055,365,431,393668,9891,0 +22938,-005,358,543,9253494,6301,0 +22939,0470,536,648,698659980,10019,0 +22940,0089,532,648,698659980,10160,5 +22941,Jednak+wol%C4%99+gofry,437,637,848913998,9835,0 +22942,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,370,569,8004076,7283,0 +22943,034.,645,481,849094609,9821,4 +22944,MojeDnoToWaszSzczyt,562,367,699697558,10495,0 +22945,Prawa,545,639,7589468,8820,0 +22946,%5B030%5D,641,528,698305474,9638,0 +22947,Wioska+barbarzy%C5%84ska,372,576,849012521,6539,0 +22948,Wioska+barbarzy%C5%84ska,482,354,698739350,6404,0 +22949,BEZDZIETNY+KAWALER,420,626,848913998,6465,0 +22950,B.006,647,507,9188016,10000,0 +22952,019,489,348,698739350,10237,0 +22953,A019,588,378,699485250,10211,0 +22954,Wyngiel+we+wsi,556,359,699072129,10484,0 +22955,%7E%7E016%7E%7E,610,596,7829201,9883,0 +22956,mys,565,634,699828685,10068,0 +22957,030,480,353,698739350,10104,0 +22958,BEZDZIETNY+KAWALER,420,629,848913998,10160,0 +22959,034,644,544,698999105,10311,0 +22960,134+DaSilva2402,518,352,699491076,10001,0 +22961,A0158,352,486,8841266,10362,0 +22962,%7E%7E009%7E%7E,600,601,7829201,9835,0 +22963,B003,400,610,699383279,9796,0 +22964,KUZYN+KUZYNOWI+KUZYNEM,429,638,848913998,6109,0 +22965,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,646,699828442,9820,0 +22966,015...P%C5%81D+WSCH,465,357,6920960,10495,0 +22967,K07,368,577,849090130,2521,0 +22968,Ambrela+014,580,378,698823542,10228,0 +22969,036,447,640,849084985,10237,0 +22970,%21%21%21off+100+%25,357,563,849012521,11321,0 +22971,So%C5%82tys+Wsi+Enaor1990,406,384,849027025,9761,0 +22972,600,645,545,7038651,10152,0 +22973,117,623,413,7085502,9619,0 +22974,042...CENTRUM_PO%C5%81UDNIE,457,356,6920960,10315,0 +22975,027,612,594,698786826,8283,0 +22976,B.032,650,515,9188016,7520,0 +22977,Wioska+barbarzy%C5%84ska+....,578,630,848995242,10495,0 +22978,D01..,364,573,849090130,10362,0 +22979,007,518,627,699336777,9825,0 +22980,Przysta%C5%84+5,405,382,699402816,9835,0 +22981,044,360,539,6853693,5951,0 +22982,Pobozowisko,408,620,699513260,10955,0 +22984,031,646,523,699351301,9421,0 +22985,Jestem+Poza+Kontrol%C4%85,353,541,8004076,9880,0 +22986,Kentin+ufam+Tobie,351,477,699783765,10000,0 +22987,Kentin+ufam+Tobie,357,447,699783765,9877,0 +22988,SSJ+054,505,648,699054373,9761,0 +22989,Makima2,460,644,699736927,10311,0 +22990,051,516,650,2293376,9993,0 +22991,039.+Bootes,597,615,699703642,10139,0 +22992,%23.23+Wioska+barbarzy%C5%84ska,649,482,849054582,7317,0 +22993,%23.30+Wioska+barbarzy%C5%84ska,647,474,849054582,4625,0 +22994,A032,579,372,699485250,10168,0 +22995,0001,487,639,6180190,10728,0 +22996,0403,549,639,698659980,10019,0 +22997,001,487,635,272173,9957,0 +22998,B.024,646,517,9188016,10000,0 +22999,Forteca,398,615,848912772,10495,0 +23000,0021,591,385,699485250,10211,2 +23001,019%7C%7C+Hydra,475,651,849035525,9153,0 +23002,Alicization+5,461,647,699849210,8292,0 +23003,B.027,650,517,9188016,10000,0 +23004,0467,383,597,698659980,9753,0 +23005,-+232+-+RR,594,618,849018239,10000,0 +23006,zzzGranica+Bledu+02,606,601,699778867,9664,0 +23007,Kentin+ufam+Tobie,362,446,699783765,10000,8 +23008,%2A%2AZabajone,574,630,699443920,9761,0 +23009,Makima,463,645,699849210,9739,7 +23010,Wioska+barbarzy%C5%84ska,634,440,699429153,8084,0 +23011,A+007,602,386,6384450,10362,0 +23012,017,564,636,699828685,9976,0 +23013,028,611,599,698786826,7498,0 +23014,The+Game+Has+Only+Just+Begun,355,528,9280477,9976,0 +23015,Charfa,522,349,699072129,10495,0 +23016,019.,491,650,849034882,10559,0 +23017,077,444,639,849084985,10495,0 +23018,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,364,568,8004076,8298,0 +23019,So%C5%82tys+Wsi+Enaor1990,407,383,849027025,9906,0 +23020,116,472,357,7271812,10495,0 +23021,029+VW+GD+--018--,371,423,3108144,3595,0 +23022,0004,544,646,698659980,10252,8 +23023,0383,584,624,698659980,9165,0 +23024,Ave+Why%21,474,647,699121671,9809,0 +23025,BoOmBaa..,436,363,6169408,4730,0 +23026,0318,541,643,698659980,8008,0 +23027,041,649,484,2135129,9553,0 +23029,deff+100+%25,378,581,849012521,10358,0 +23031,Kentin+ufam+Tobie,352,472,699783765,10000,0 +23032,Szlachcic,421,376,698388578,10237,0 +23033,Sony+911,584,626,1415009,10214,0 +23034,%23.12+Wioska+barbarzy%C5%84ska,650,479,849054582,10019,0 +23035,WW28,648,465,1715091,5850,0 +23036,03+Forteca+Zach%C3%B3d,546,360,849108780,7544,0 +23037,Caravaggio,375,587,849095992,10247,0 +23038,Jednak+wol%C4%99+gofry,430,634,699736927,10068,0 +23039,AA03+Niemcy,380,412,483145,12154,0 +23041,141,452,358,6920960,8776,0 +23042,So%C5%82tys+Wsi+Enaor1990,408,381,849027025,9394,0 +23043,WE+ARE+READY%21,595,387,1553947,8814,0 +23044,031,642,551,849095227,9721,0 +23045,Og%C3%B3rkowy+baron,396,398,356642,9835,0 +23046,143,452,357,6920960,8956,0 +23047,Kentin+ufam+Tobie,363,448,699783765,10235,0 +23048,The+Game+Has+Only+Just+Begun,356,527,9280477,9976,0 +23049,Wsp%C3%B3lna+15,404,384,849027025,6578,0 +23050,%2A%2A%2A001%2A%2A%2A,506,348,8843774,8103,0 +23051,100,646,544,7038651,10960,0 +23052,A0196,354,485,8841266,10362,0 +23053,063,518,652,2293376,10433,0 +23054,CSA,513,350,7651093,7780,0 +23055,c+Moje+kochanie,406,386,3909522,8567,7 +23056,kathare,551,642,873575,9866,0 +23057,kathare,553,641,873575,9896,0 +23058,Podzi%C4%99kowa%C5%82+5,418,376,699796330,10295,1 +23060,MojeDnoToWaszSzczyt,560,361,699697558,10495,0 +23061,029,610,599,698786826,5573,0 +23062,047%7C%7C+Lyra,469,649,849035525,10083,0 +23063,No+sory,559,562,699785935,10311,0 +23064,M007,653,507,848899726,5131,0 +23066,B.062,646,504,9188016,10000,0 +23067,Osada+koczownik%C3%B3w,548,361,699072129,10452,1 +23068,123,625,416,7085502,10661,0 +23069,A-019,388,396,8419570,10168,0 +23070,Dajanka+01,352,557,849012843,11130,0 +23071,Kentin+ufam+Tobie,358,445,699783765,7905,0 +23072,Pobozowisko,411,612,699513260,10350,0 +23073,Wioska+barbarzy%C5%84ska,552,359,699072129,10218,0 +23075,Czarodziejka+z+Marsa,430,636,849006145,7839,0 +23076,-+234+-+RR,589,617,849018239,6702,0 +23077,M181_054,363,434,393668,9902,0 +23078,A0197,352,485,8841266,10362,0 +23079,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,365,562,8004076,9752,0 +23080,B.012,649,514,9188016,10000,1 +23081,The+Game+Has+Only+Just+Begun,355,533,9280477,9976,0 +23082,A0054,348,494,8841266,10362,5 +23083,024+%7C+PALESTINA,631,449,9228039,9544,0 +23084,a+mo%C5%BCe+off+%3F+%3A%29,638,553,698768565,9403,0 +23085,Metallica,555,359,699072129,10237,0 +23086,Avanti%21,354,516,698625834,9950,0 +23087,034.+Aquarius,599,614,699703642,9761,0 +23088,Medyna,472,649,849089459,9783,0 +23089,051,646,532,699351301,10152,0 +23090,historia,617,602,699778867,12154,0 +23091,Jestem+Poza+Kontrol%C4%85,358,548,8004076,9816,0 +23092,Wioska+barbarzy%C5%84ska,651,522,6510480,6038,0 +23093,Oww+Konfederacja,606,390,848915730,9635,0 +23094,020,650,521,699351301,9430,0 +23095,BoOmBaa..,440,364,6169408,6438,0 +23096,%7E%7E011%7E%7E,600,607,7829201,10161,1 +23097,Maszlug+kolonia+XII,369,425,848977649,6900,0 +23098,Minas+Tirith,613,396,848915730,7291,3 +23099,.%3A056%3A.%C5%81OBUZIK,556,361,848934935,7927,0 +23100,062,354,541,8908002,4561,0 +23101,Ave+Why%21,458,638,698585370,10160,0 +23102,%230013+barbarzy%C5%84ska,468,350,1238300,10178,0 +23103,ave+why%21,434,632,698143931,9957,0 +23104,North+Barba+034,427,371,699796330,9845,0 +23105,Wioska+5,376,581,849012521,9929,0 +23106,010,558,613,699567608,10160,0 +23107,Wioska+barbarzy%C5%84ska,369,426,699753640,2425,0 +23108,Wioska+-STRONGHOLD-,526,352,1990750,10068,0 +23109,13.+Gargamel%C3%B3wa,617,403,699298370,9735,0 +23110,BAC%C3%93WKA+%7C010%7C,621,407,7394371,11321,0 +23111,Piek%C5%82o+to+inni,574,369,848956765,10495,0 +23112,0058,419,371,848913037,9993,0 +23113,043,652,489,2135129,9553,0 +23114,Wioska+barbarzy%C5%84ska,438,364,849017820,10433,0 +23115,067...barbarka,460,359,6920960,10320,0 +23116,%23041.520%7C502,639,453,556154,9735,0 +23117,a+mo%C5%BCe+off+%3F+%3A%29,625,584,698768565,9542,0 +23118,015,641,550,849095227,9761,8 +23119,Wioska+barbarzy%C5%84ska,650,527,7047342,10124,0 +23120,Aleppo,492,349,699244334,3404,0 +23121,stop,620,404,849060446,9735,0 +23122,MojeDnoToWaszSzczyt,562,363,699697558,10495,0 +23123,059,635,556,849095227,9721,0 +23124,zzzGranica+Bledu+05,601,614,699778867,9241,0 +23125,Pobozowisko,390,596,699513260,10971,0 +23126,jaaa,632,577,698635863,10481,0 +23127,-+005+-,553,610,849018239,10000,0 +23128,jaaa,636,570,698635863,10495,0 +23129,%2A0028+Baraki,630,429,8459255,10384,0 +23130,Tomall78,633,428,699524891,9382,0 +23131,-+238+-+RR,592,617,849018239,10000,0 +23132,Pobozowisko,404,618,699513260,10955,0 +23133,038,620,406,9148043,9818,0 +23134,%23.35+Wioska+barbarzy%C5%84ska,650,481,849054582,3748,0 +23135,Serenity,430,637,849006145,10348,0 +23136,ave+why%21,456,631,698143931,10237,0 +23137,Wioska+barbarzy%C5%84ska,436,367,699308637,9891,0 +23138,%230067+barbarzy%C5%84ska,471,353,1238300,10044,0 +23139,Lord+Lord+Franek+.%23017,536,351,698420691,10143,0 +23140,A013,594,380,699761749,10495,5 +23141,Ave+Why%21,459,639,698585370,9376,0 +23143,B05,643,447,849093742,10019,0 +23144,001,360,543,8908002,9993,0 +23145,Wioska+barbarzy%C5%84ska,356,448,6258092,7249,0 +23146,B.002,653,508,9188016,10000,1 +23147,0048,621,414,699429153,9746,0 +23148,North+Barba+038,423,369,699796330,9756,0 +23149,MEH+001,615,606,699778867,12154,0 +23150,d+001,393,400,3909522,7144,0 +23151,016+-+Gijon,641,443,698342159,10019,0 +23152,022...PO%C5%81UDNIE,456,357,6920960,10223,0 +23153,A-027,388,399,8419570,10168,0 +23154,c+085d,414,381,3909522,6084,0 +23155,Ulu-mulu,413,618,699697558,3190,0 +23156,056...+barbarka,454,354,6920960,10325,0 +23157,psycha+sitting,454,647,699736927,10311,0 +23158,0471,534,648,698659980,10362,0 +23159,%23.01+Wioska+Pompka15,650,477,849054582,10019,0 +23160,B001,397,606,699383279,9819,0 +23161,Lord+Arsey+KING,516,495,848956513,10285,0 +23162,The+Game+Has+Only+Just+Begun,350,518,9280477,9976,0 +23163,PDWB,642,451,9314079,9835,0 +23164,0051,617,410,699429153,9782,0 +23165,kathare,559,635,873575,9831,0 +23166,A0057,348,487,8841266,10362,0 +23167,Myk+i+do+kieszonki,360,559,9319058,9799,0 +23168,yyyy,502,350,699883079,10121,0 +23169,Jednak+wol%C4%99+gofry,432,632,699736927,7087,0 +23170,S_007,512,651,849049155,11191,0 +23171,019,521,351,1990750,10068,0 +23172,BoOmBaa..,437,361,6169408,8880,5 +23173,Piwna+21,638,434,699812007,4949,0 +23174,122.+Seyen,631,423,8337151,4290,0 +23175,038+Hella,624,588,699272880,10209,0 +23176,0007,582,376,699485250,10168,5 +23177,028,446,639,849084985,10237,0 +23178,0043,412,374,848913037,8388,0 +23180,kathare,550,637,873575,10203,0 +23181,0564,546,645,698659980,9821,0 +23182,The+Game+Has+Only+Just+Begun,349,520,9280477,9976,0 +23183,007+Suche+Jezioro,625,422,699429153,9825,0 +23185,Piek%C5%82o+to+inni,573,371,848956765,10362,0 +23186,MojeSzczytToTw%C3%B3jDno,521,369,828637,10495,0 +23187,Pobozowisko,402,612,699513260,9003,0 +23188,C001,521,352,699208929,10248,0 +23189,Szlachcic,354,466,6258092,10160,0 +23190,Charfa,556,357,699072129,10221,0 +23191,Wioska+Bochun10,347,506,7449254,10311,0 +23192,Piek%C5%82o+to+inni,578,369,848956765,10160,0 +23193,003,377,419,9239515,5730,0 +23194,A0053,349,494,8841266,10362,4 +23195,The+Game+Has+Only+Just+Begun,356,535,9280477,9169,0 +23196,deff+100+%25,362,559,849012521,8592,0 +23197,a+mo%C5%BCe+off+%3F+%3A%29,641,554,698768565,9329,0 +23198,R%C4%99cznik+do+zmiany,375,411,699697558,10160,0 +23199,Wioska+barbarzy%C5%84ska,644,449,699524891,9718,0 +23200,Wioska+barbarzy%C5%84ska,470,357,698739350,9089,0 +23201,Wioska+Jaro,373,420,8967440,9915,0 +23202,Wioska+barbarzy%C5%84ska,383,403,8419570,10221,0 +23203,058,635,566,849095227,9729,0 +23204,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,644,699828442,9825,0 +23205,Avanti%21,349,509,698625834,9950,0 +23206,110.+P%C3%B3%C5%82wysep+Ma%C5%82y+Dartan,630,426,8337151,5234,0 +23207,Oww+Konfederacja,609,398,848915730,8566,0 +23208,Piek%C5%82o+to+inni,568,363,848956765,10160,0 +23209,Wioska+barbarzy%C5%84ska,367,426,699753640,2658,0 +23210,006...CENTR_ogarek2,460,352,6920960,10495,0 +23211,Kentin+ufam+Tobie,358,458,699783765,10005,0 +23212,041+%7C+PALESTINA,635,435,9228039,4993,0 +23213,zzzGranica+Bledu+14,611,605,699778867,11550,0 +23214,048...CENTR,458,352,6920960,10237,0 +23215,R%C4%99cznik+do+zmiany,371,417,699697558,7390,0 +23216,178+Punta+del+Este,477,478,1497168,9825,0 +23217,a+mo%C5%BCe+off+%3F+%3A%29,626,584,698768565,9422,0 +23218,BoOmBaa..,437,363,6169408,10490,0 +23219,Alicization+1,458,647,699849210,10167,0 +23220,Wioska+barbarzy%C5%84ska,645,537,7047342,10479,0 +23221,So%C5%82tys+wsi+Agnes96,399,388,849027025,11021,0 +23222,0135,643,462,698416970,8258,0 +23223,Wioska+barbarzy%C5%84ska,556,358,699072129,10217,0 +23224,7+barba,578,628,848995242,9952,0 +23225,044,612,599,698786826,10220,6 +23226,MRF+002,630,579,118121,9085,0 +23227,A+014,600,389,6384450,9976,0 +23229,0241,543,647,698659980,10083,0 +23230,0245,541,646,698659980,10052,0 +23231,P024+Kair,652,518,8096537,9976,0 +23232,A042,586,380,699485250,6554,0 +23233,101,584,381,849064752,10311,0 +23234,DajankA+18,356,544,849012843,10083,0 +23235,Wioska+%28038%29,646,476,698232227,7277,0 +23236,Ave+Why%21,471,649,699121671,9809,0 +23237,Ave+Why%21,457,640,698585370,9569,0 +23238,025.+P%C4%99dz%C4%99,505,650,848928624,8424,0 +23239,028+Wioska,647,483,699671454,9018,0 +23240,%2A%2A%2A003%2A%2A%2A,504,351,8843774,4052,0 +23241,Gattacka,623,414,699298370,9761,0 +23242,Kentin+ufam+Tobie,356,450,699783765,9982,0 +23243,013+Deportacja+z+Polski,613,405,699298370,9959,0 +23244,A009,593,380,699761749,10495,0 +23245,Asy%C5%BC,492,350,699244334,2665,0 +23246,A+015,601,388,6384450,9413,0 +23247,Wioska+barbarzy%C5%84ska,636,440,699429153,9825,0 +23248,-002-,357,545,9253494,8137,0 +23249,016,565,637,699828685,9976,0 +23251,Szlachcic,415,377,698388578,7096,0 +23252,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,646,699828442,9811,0 +23253,I%23034,603,389,2065730,5069,0 +23254,021,424,630,699783765,4299,0 +23255,zzzGranica+Bledu+07,608,607,699778867,8651,0 +23257,013,636,558,849095227,9735,0 +23258,R%C4%99cznik+do+zmiany,375,414,699697558,10160,0 +23259,053,646,540,699351301,10160,6 +23260,B.009,651,506,9188016,10000,0 +23261,%2AINTERTWINED%2A,511,647,698704189,9711,0 +23262,Wioska+barbarzy%C5%84ska,546,361,699072129,10470,0 +23263,Westcoast.100,369,430,848918380,10178,0 +23264,WW30,650,465,1715091,3682,0 +23265,kathare,555,638,873575,9866,0 +23267,jaaa,629,579,698635863,10495,7 +23268,jestem+Boomerem+%21%21%21%21,588,626,848995242,10362,0 +23269,Pobozowisko,396,603,699513260,10950,0 +23270,psycha+sitting,455,644,699736927,10311,0 +23271,%230065+barbarzy%C5%84ska,471,352,1238300,10178,0 +23272,Wioska+barbarzy%C5%84ska,364,422,393668,9902,0 +23273,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,647,699828442,9825,0 +23274,093+duko+2,546,355,699491076,10001,6 +23275,034+Y13J,653,502,2135129,9500,0 +23276,Cladonia+arbuscula,495,352,699883079,9517,0 +23277,135+DaSilva2402,517,352,699491076,10001,0 +23278,The+Game+Has+Only+Just+Begun,355,529,9280477,9976,0 +23279,165...Kalichore,453,355,6920960,6835,0 +23280,Sony+911,580,626,1415009,10052,0 +23281,BoOmBaa..oai,441,364,6169408,10971,0 +23282,Kentin+ufam+Tobie,359,449,699783765,10000,0 +23283,WB005,589,618,8627359,9415,0 +23285,006.,482,652,849034882,10838,0 +23286,Wioska+Syriusz1,571,608,8627359,9390,0 +23287,14+Helmowy+Jar,457,644,699736927,10311,0 +23288,030,614,595,698786826,6486,0 +23289,-+233+-+RR,593,622,849018239,10000,0 +23290,c+001c,410,382,3909522,9269,0 +23292,The+Game+Has+Only+Just+Begun,354,529,9280477,9976,0 +23293,024+Ceunon,602,474,8337151,9986,0 +23294,--5.+%C5%81ysa+Polana,387,407,698345556,10559,0 +23296,Kikut,516,350,1990750,10068,0 +23297,Valhalla+A5,373,584,849097002,5962,0 +23299,032,643,552,849095227,9714,0 +23300,Jestem+Poza+Kontrol%C4%85,349,545,8004076,9880,0 +23301,kathare,558,637,873575,9779,0 +23302,So%C5%82tys+wsi+Agnes96,399,389,849027025,10309,0 +23303,kathare,546,643,873575,9957,0 +23304,%5B075%5D,639,561,8000875,10252,0 +23305,The+Game+Has+Only+Just+Begun,351,517,9280477,9976,0 +23306,A017,590,377,699485250,10211,0 +23307,0284,545,646,698659980,9861,0 +23308,Jestem+Poza+Kontrol%C4%85,351,538,8004076,8589,0 +23309,%7CA%7C+Hazelvalley,479,647,698807570,10495,0 +23310,The+Game+Has+Only+Just+Begun,348,520,9280477,9976,1 +23311,Shinra+Building+-+Perimeter,508,592,8199417,10083,0 +23312,ILO,599,617,6417987,10479,0 +23313,243...SOUTH,478,348,6920960,8380,0 +23314,%7E%7E027%7E%7E,603,608,7829201,9511,0 +23316,Oww+Konfederacja,608,392,848915730,9938,0 +23317,A0297,353,480,8841266,10362,0 +23318,Siara,537,351,849101144,3601,0 +23319,Kentin+ufam+Tobie,357,443,699783765,10147,0 +23320,c+0055+Wioska,403,389,3909522,10083,0 +23321,c+010+Oaza+9,414,379,3909522,10083,0 +23322,B.019,648,507,9188016,10000,0 +23323,Jan+011+Watergate+K,648,462,879782,9435,1 +23324,Avanti%21,349,499,698625834,9950,0 +23325,.Wioska+barbarzy%C5%84ska,637,565,6929240,6021,0 +23326,a+mo%C5%BCe+off+%3F+%3A%29,627,582,698768565,9534,0 +23327,A0062,351,488,8841266,10362,0 +23328,069,560,402,849064752,10311,0 +23329,EMERYTOWANY+KUZYN,422,632,848913998,8174,0 +23330,033,482,353,698739350,10237,0 +23331,Piek%C5%82o+to+inni,573,370,848956765,10160,0 +23332,BUNKIER+004,636,437,7588382,7643,0 +23333,029.,644,491,849094609,10346,0 +23334,A0105,350,498,8841266,10362,0 +23335,kathare,559,638,873575,9994,0 +23336,010,366,535,698641566,9809,0 +23337,BAC%C3%93WKA+%7C021%7C,628,422,7394371,7387,0 +23338,33.Or%C5%82y,379,595,8665783,10465,6 +23339,The+Game+Has+Only+Just+Begun,353,530,9280477,9976,0 +23340,006Okna,447,635,698620694,9687,0 +23341,JaawmG,645,547,8815749,10019,0 +23342,023,480,351,698739350,10237,0 +23343,yogi,572,637,2808172,7283,0 +23344,%23055.,643,448,556154,9735,0 +23345,%2B%2B001%2B%2B,381,413,698884287,10285,5 +23346,009+nie+ma+spania+na+wyjazdach,446,644,699238479,9485,0 +23347,Ave+Why%21,483,655,698585370,9847,0 +23348,A-020,390,395,8419570,10168,0 +23349,The+Game+Has+Only+Just+Begun,352,516,9280477,9976,8 +23350,050,443,642,849084985,10336,0 +23351,EMERYTOWANY+KUZYN,426,630,848913998,6315,0 +23352,Jestem+Poza+Kontrol%C4%85,355,543,8004076,8215,0 +23353,065,646,529,699351301,10144,0 +23354,A-023,386,397,8419570,10168,0 +23355,Village,520,648,849094067,12154,0 +23356,Wioska+barbarzy%C5%84ska,361,443,699088529,4607,0 +23357,063,649,527,699351301,9638,0 +23358,Pobozowisko,402,605,699513260,7122,0 +23359,jaaa,630,578,698635863,10487,0 +23360,Myk+i+do+kieszonki,364,566,9319058,9799,1 +23361,Jednak+wol%C4%99+gofry,473,650,699725436,9830,0 +23362,100,475,354,7271812,10495,0 +23363,Osada+koczownik%C3%B3w,544,355,699072129,10226,1 +23364,Punta+Cana,457,645,699736927,7680,0 +23365,Kentin+ufam+Tobie,352,478,699783765,10000,0 +23366,Jehu_Kingdom_19_,645,469,8785314,9993,0 +23367,kathare,556,637,873575,9829,0 +23368,Wioska+barbarzy%C5%84ska+M,372,423,8967440,3402,0 +23369,Jan+o8+II,641,457,879782,8755,0 +23370,123,507,347,7271812,10214,0 +23371,06+Jar+Kapitolu,546,356,849108780,2164,0 +23372,Jestem+Poza+Kontrol%C4%85,357,548,8004076,8589,0 +23373,Deveste+ufam+Tobie,437,627,699783765,10083,0 +23374,Jaaa,624,590,698635863,10484,0 +23375,A041,587,380,699485250,10201,0 +23376,017,480,349,698739350,10237,0 +23378,Oww+Konfederacja,606,392,848915730,4401,0 +23379,026+serniczek+na+urodziny,493,647,8954402,9767,0 +23380,029+181,348,499,698807570,8675,0 +23381,The+Game+Has+Only+Just+Begun,352,523,9280477,9976,3 +23383,Ulu-mulu,410,620,699697558,5246,0 +23384,Myk+i+do+kieszonki,362,562,9319058,9102,0 +23385,Wioska+barbarzy%C5%84ska+.,581,627,848995242,10362,0 +23386,Wioska+Przekl%C4%99tych,553,360,699072129,10237,0 +23387,BEZDZIETNY+KAWALER,417,626,848913998,4629,0 +23388,022,626,419,699429153,6895,0 +23389,A-028,391,397,8419570,10168,0 +23390,121,626,421,7085502,9899,0 +23391,Jestem+Poza+Kontrol%C4%85,360,548,8004076,8048,0 +23392,kathare,548,643,873575,10495,8 +23393,002+-+Mroczna+Osada,634,426,849035905,11085,0 +23394,B.017,657,508,9188016,10000,0 +23395,013,521,350,1990750,10068,0 +23396,114+Tonami,645,462,7092442,7793,0 +23397,So%C5%82tys+Wsi+Enaor1990,408,384,849027025,9761,0 +23398,Kentin+ufam+Tobie,355,455,699783765,10000,0 +23399,Ave+Why%21,472,652,698585370,10019,0 +23400,1.1,390,393,8967440,10177,0 +23401,Ulu-mulu,418,623,699697558,3562,0 +23402,M181_053,364,427,393668,9943,0 +23403,Hipnagogia,372,587,849095992,8618,0 +23404,a+mo%C5%BCe+off+%3F+%3A%29,625,578,698768565,10005,0 +23405,zz+To+nie+by%C5%82+przypadek+Magiorek,618,598,699778867,11824,0 +23406,052.+Tripolis,646,468,849091866,9548,0 +23407,012.+%C5%BBeby+k%C3%B3zka.....,508,653,848928624,10054,0 +23408,MojeDnoToWaszSzczyt,571,366,699697558,10019,0 +23409,Wioska+barbarzy%C5%84ska,622,407,699429153,9804,0 +23410,A+012,607,389,6384450,4676,0 +23411,a+mo%C5%BCe+off+%3F+%3A%29,624,583,698768565,9550,0 +23412,psycha+sitting,452,640,699736927,10311,0 +23413,029,438,639,699736927,8939,0 +23414,001,376,418,9239515,8240,0 +23415,Piek%C5%82o+to+inni,565,360,848956765,10971,0 +23416,Pobozowisko,384,601,699513260,10951,0 +23417,%23.28+Wioska+barbarzy%C5%84ska,648,472,849054582,5912,0 +23418,25.+Speluna,378,587,8665783,7444,0 +23419,008.+Hawaje,639,437,849095599,9835,0 +23420,Pobozowisko,385,601,699513260,7107,0 +23421,Wioska+barbarzy%C5%84ska,449,386,699191449,9285,0 +23422,041,623,406,9148043,9389,0 +23423,c+Boniu30,406,388,3909522,10426,0 +23424,buuu,395,567,9167250,9827,0 +23425,001+G%C3%B3rzysta+Dolina,623,423,699429153,9899,0 +23426,Wioska+barbarzy%C5%84ska,529,352,1990750,10068,0 +23427,009%7C%7C+Sagittarius,483,648,849035525,10019,0 +23428,Wioska,592,621,8627359,9343,0 +23429,93k%24+Grvvyq,645,548,699676005,4551,0 +23430,MojeSzczytToTw%C3%B3jDno,505,351,828637,9727,0 +23431,Szlachcic+%21%21%21,498,474,699098531,9178,0 +23432,Pobozowisko,385,607,699513260,10817,0 +23433,093,357,457,6258092,8917,0 +23434,jaaa,631,574,698635863,10495,0 +23435,EMERYTOWANY+KUZYN,422,633,848913998,9013,0 +23436,Pobozowisko,389,606,699513260,6836,0 +23437,jaaa,628,574,698635863,10495,0 +23438,Pobozowisko,391,604,699513260,10952,0 +23439,006+Danowiec+City,433,639,849006145,10333,0 +23440,The+Game+Has+Only+Just+Begun,347,518,9280477,9976,0 +23441,D+009,650,498,8078914,9776,0 +23442,Lord+Lord+Franek+.%23041,528,351,698420691,10795,0 +23443,106,352,463,6258092,9860,0 +23444,Jehu_Kingdom_21_,644,455,8785314,9993,0 +23445,mys,569,632,699828685,9976,0 +23446,Piek%C5%82o+to+inni,572,369,848956765,10495,6 +23447,042,443,639,849084985,9782,0 +23448,048,649,526,698999105,10311,0 +23449,M181_017,361,430,393668,9891,0 +23450,jaaa,634,571,698635863,10495,0 +23451,085,355,461,6258092,10019,0 +23452,%23.15+Wioska+barbarzy%C5%84ska,649,473,849054582,10019,0 +23453,Oww+Konfederacja,611,400,848915730,9976,4 +23454,%5BC%5D_%5B009%5D+Dejv.oldplyr,358,462,699380607,9598,0 +23455,Pobozowisko,383,594,699513260,7004,0 +23456,Pacza%C5%82kowo,427,637,849006145,10197,0 +23457,0050,618,408,699429153,9825,0 +23458,A28+Braunschweig,469,633,849037407,10484,0 +23459,Wioska+barbarzy%C5%84ska,553,355,699072129,10218,0 +23460,Wioska+barbarzy%C5%84ska,385,402,848886056,3988,0 +23461,Piek%C5%82o+to+inni,573,368,848956765,10495,0 +23462,%230008,550,646,1536231,10495,7 +23463,Myk+i+do+kieszonki,357,557,9319058,9799,0 +23464,%23.09+Wioska+barbarzy%C5%84ska,651,478,849054582,10019,0 +23465,Ave+Why%21,457,641,698585370,9012,0 +23466,004.,614,546,6520732,10019,0 +23467,025,479,350,698739350,10237,0 +23468,Pobozowisko,393,606,699513260,9138,0 +23469,0119,424,626,6910361,4590,0 +23470,EMERYTOWANY+KUZYN,425,634,848913998,5127,0 +23471,-+228+-+RR,595,619,849018239,9346,0 +23472,0015,418,369,848913037,9993,0 +23473,Sparta_76,479,583,2585846,2146,0 +23474,022,638,557,849095227,9726,0 +23475,Wioska+4,537,356,849097220,1428,0 +23476,North+Barba+025,424,366,699796330,9761,0 +23477,003,489,347,698739350,10237,0 +23478,045,571,635,699828685,9203,0 +23479,038+%7C+PALESTINA,639,442,9228039,5743,0 +23480,A0259,351,500,8841266,10362,0 +23481,RTS+71,579,626,848995242,10495,6 +23482,The+Game+Has+Only+Just+Begun,349,518,9280477,9976,0 +23483,The+Game+Has+Only+Just+Begun,347,521,9280477,9976,0 +23484,080.,489,657,849034882,10495,0 +23485,Wiocha+003,393,611,848912772,10178,0 +23486,032,428,634,849084985,10285,0 +23487,Chekku+-+meito,343,523,9280477,10178,0 +23488,LadyAnimavillis,600,616,699703642,9761,0 +23489,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,567,8004076,9816,0 +23490,Oww+Konfederacja,606,393,848915730,4411,0 +23492,The+Game+Has+Only+Just+Begun,346,512,9280477,9976,0 +23493,C002,520,352,699208929,10032,0 +23494,31k%24+Grvvyq,639,557,699676005,10495,0 +23495,048,646,524,699351301,10207,0 +23496,Mniejsze+z%C5%82o+0068,353,462,699794765,6188,0 +23497,Lord+Lord+Franek+.%23018,533,349,698420691,9956,0 +23498,The+Game+Has+Only+Just+Begun,354,534,9280477,9976,0 +23499,Avanti%21,348,516,698625834,9950,0 +23500,%23001+Mentor+Zenit,358,441,849096215,3249,0 +23501,B.047,653,516,9188016,10005,0 +23502,Pobozowisko,386,604,699513260,10952,0 +23504,Ave+Why%21,455,633,8729672,10019,0 +23505,KREV+005,638,563,848988744,9735,0 +23506,Darkheim,377,582,8607734,10019,0 +23507,Wioska+xkikutx,526,356,1990750,10068,0 +23508,A-021,393,392,8419570,10168,0 +23509,Flinii,632,421,848883237,4460,0 +23511,K04.,369,578,849090130,10495,0 +23512,So%C5%82tys+Twojej+Wsi,402,384,849027025,10220,0 +23513,So%C5%82tys+Twojej+Wsi,403,385,849027025,9559,0 +23514,001+Grudzi%C4%85dz,649,498,2135129,9756,0 +23515,The+Unforgiven,626,586,848926293,8464,0 +23516,A033,578,372,699485250,10168,0 +23517,Oww+Konfederacja,600,391,848915730,5056,0 +23518,W+01,647,451,699524891,9744,0 +23519,001,429,631,699783765,8628,0 +23520,BUNKIER+002,636,429,7588382,11215,0 +23521,A020,470,637,699383279,10479,0 +23522,B.031,648,513,9188016,10000,0 +23523,B005,397,609,699383279,9810,0 +23524,0081,532,644,698659980,10160,0 +23525,Jestem+Poza+Kontrol%C4%85,358,554,8004076,8962,0 +23526,psycha+sitting,445,644,699736927,9540,0 +23527,NOT,417,428,9236866,10042,0 +23528,038,653,523,699351301,5900,0 +23530,Piek%C5%82o+to+inni,578,370,848956765,10495,0 +23531,-+225+-+RR,589,620,849018239,7134,0 +23532,060,635,571,849095227,9723,9 +23533,Wioska+barbarzy%C5%84ska,644,452,699524891,9549,0 +23534,c+011+Przysta%C5%84+2,412,377,3909522,10297,0 +23535,Lord+Lord+Franek+.%23227,524,354,698420691,10056,0 +23536,075...barbarka+centr+-----------,462,354,6920960,10218,0 +23537,006%29+Sulistrowiczki,540,351,849097103,4203,0 +23538,Wioska+barbarzy%C5%84ska,553,357,699072129,10226,0 +23539,Avanti%21,353,513,698625834,9950,0 +23540,A0025,385,472,8841266,10362,0 +23541,Alicization8,461,645,699736927,8366,0 +23542,kathare,561,636,873575,9869,0 +23543,NOT%3F,428,543,9236866,9574,0 +23544,%230014+barbarzy%C5%84ska,464,352,1238300,10178,0 +23545,0024,594,384,699485250,10211,0 +23546,Jestem+Poza+Kontrol%C4%85,352,540,8004076,9880,0 +23547,The+Game+Has+Only+Just+Begun,352,529,9280477,9976,0 +23548,Jestem+Poza+Kontrol%C4%85,358,549,8004076,9523,0 +23549,025,653,506,849006412,7009,0 +23550,off+100+%25,359,564,849012521,10294,0 +23551,a+mo%C5%BCe+off+%3F+%3A%29,627,575,698768565,9566,0 +23552,R%C4%99cznik+do+zmiany,372,415,699697558,10160,0 +23553,BoOmBaa..,432,366,6169408,10495,0 +23554,028+-+Cartagena,640,442,698342159,10019,0 +23555,046%7C%7C+Telescopium,473,648,849035525,9634,0 +23556,%2A0026+Baraki,630,425,8459255,10088,0 +23557,Wioska+barbarzy%C5%84ska,363,557,849012521,6010,0 +23558,010,481,347,698739350,10237,0 +23559,off+100+%25,370,573,849012521,7186,0 +23560,020.+Morning,506,653,848928624,10104,0 +23561,mys,569,631,699828685,9976,0 +23562,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,650,699828442,9809,0 +23563,Pobozowisko,396,613,699513260,7566,0 +23564,010+Towar+Wydany,540,355,699491076,10001,0 +23565,Jehu_Kingdom_12_,632,422,8785314,9993,0 +23566,28.+ko%C5%82o+bila,376,587,8665783,10263,0 +23567,005+Lecia%C5%82em+Na+Hulajce,543,354,699491076,10001,0 +23568,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,497,652,698585370,9671,0 +23569,aAa+Szlaban+5,606,610,699778867,12154,0 +23570,039,652,486,2135129,9500,0 +23571,%2ALan,575,634,699443920,9761,0 +23572,MojeDnoToWaszSzczyt,563,360,699697558,10495,0 +23573,Pobozowisko,407,620,699513260,10954,0 +23574,013+MONETKI,652,488,7588382,8869,0 +23575,yyyyy,503,352,699883079,10063,1 +23576,003+181,352,495,698807570,10162,0 +23577,MojeDnoToWaszSzczyt,564,363,699697558,10495,0 +23578,Szlachcic,422,371,698388578,10237,0 +23579,AA02+Francja,378,413,483145,12154,0 +23580,Oww+Konfederacja,607,395,848915730,6901,0 +23582,Lord+Lord+Franek+.%23137,515,347,698420691,10233,0 +23583,Wioska+barbarzy%C5%84ska,371,573,849012521,5743,0 +23584,0472,533,649,698659980,10252,0 +23585,042+wioska+barbarka,391,609,6354098,9438,0 +23586,Wioska+barbarzy%C5%84ska,386,395,8419570,1952,0 +23587,057,426,631,699783765,5291,0 +23588,Wioska+Zielony2607,472,645,699238479,9816,0 +23589,SSJ+064,515,653,699054373,9761,0 +23590,-004-,358,545,9253494,9746,0 +23591,006+C3tiv,653,487,2135129,9080,0 +23592,018+Barba,654,500,2135129,9500,0 +23593,Deveste+ufam+Tobie,431,619,699783765,6545,0 +23594,Jednak+wol%C4%99+gofry,440,642,699736927,10044,0 +23595,200,645,541,7038651,10476,0 +23596,BoOmBaa..,441,362,6169408,2726,0 +23597,Ave+Why%21,496,654,698585370,10311,2 +23598,Myk+i+do+kieszonki,362,561,9319058,9799,0 +23599,%2A%2AQuetico,575,628,699443920,9761,0 +23600,0473,537,649,698659980,10495,0 +23601,Wioska+3,538,354,849097220,3049,0 +23602,Ave+Why%21,464,642,698585370,6176,0 +23603,BEZDZIETNY+KAWALER,423,632,848913998,7525,0 +23604,81k%24+Grvvyq,643,544,699676005,10495,0 +23605,%2ALoch,574,634,699443920,9761,0 +23606,Charizard,498,352,699883079,10332,0 +23607,%7E%7E004%7E%7E,605,600,7829201,9839,0 +23608,B.048,654,516,9188016,10002,0 +23609,0040+Wioska+barbarzy%C5%84ska,406,614,9060641,6453,0 +23610,7.62+mm,379,404,848886056,2177,0 +23611,020+Barba,653,492,2135129,9500,0 +23612,A0055,347,489,8841266,10362,0 +23614,074+Rozpusta4,638,430,9238175,10132,0 +23615,The+Game+Has+Only+Just+Begun,351,525,9280477,8898,0 +23616,-018-,377,587,699097885,9203,0 +23617,041,370,563,8908002,9993,0 +23618,Dajanka+13,356,555,849012843,6385,0 +23619,150...ksi%C4%85%C5%BC%C4%99+plemienia,453,360,6920960,7135,0 +23620,022,652,502,849091105,10252,0 +23621,007+-+Mroczna+Osada,628,415,849035905,11550,0 +23622,0142,536,644,698659980,10019,0 +23623,023%7C%7C+Canis+Minor,491,648,849035525,9830,0 +23624,Kentin+ufam+Tobie,351,475,699783765,10000,0 +23625,A0060,349,487,8841266,10362,0 +23626,MojeDnoToWaszSzczyt,561,365,699697558,10495,0 +23627,Kentin+ufam+Tobie,350,480,699783765,10000,0 +23628,Wioska+barbarzy%C5%84ska,395,465,698807570,10068,0 +23629,jaaa,636,573,698635863,10484,0 +23630,BEZDZIETNY+KAWALER,423,627,848913998,8204,0 +23631,SSJ+050,511,649,699054373,9761,0 +23632,-012-,378,588,699097885,9266,4 +23633,109,485,356,699761749,10495,0 +23634,North+Barba+029,430,369,699796330,9747,0 +23635,008...P%C5%81D_Ogar,456,358,6920960,10495,0 +23636,%230023+barbarzy%C5%84ska,468,355,1238300,10178,0 +23637,0012,420,368,848913037,9993,0 +23638,zzzGranica+Bledu+10,607,608,699778867,9026,0 +23639,W+02,643,455,699524891,9666,0 +23640,067,355,465,6258092,10083,0 +23641,0474,532,652,698659980,10019,0 +23642,A0225,347,499,8841266,10362,0 +23643,86k%24+Grvvyq,646,546,699676005,10436,0 +23644,B004,401,610,699383279,9808,0 +23645,036,636,564,849095227,9752,0 +23646,Jan+05+K,645,464,879782,9476,3 +23647,B.033,654,514,9188016,10000,0 +23648,115+Sagae,651,465,7092442,5712,0 +23649,Nowe+4,537,645,7589468,8820,0 +23650,-+242+-+RR,596,618,849018239,10000,0 +23651,mioduch001,585,628,698385619,2663,0 +23652,A001,599,386,699761749,9600,0 +23654,psycha+sitting,454,643,699736927,8229,0 +23655,Sque+zostaje,524,348,7181335,10160,0 +23656,K34+-+%5B110%5D+Before+Land,444,360,699088769,10259,0 +23657,A0106,352,490,8841266,10362,0 +23658,A004,405,616,848912772,7586,0 +23660,Wiocha+001,394,613,848912772,10178,0 +23661,0146,425,371,699431255,10903,0 +23662,Isengard,611,395,848915730,5949,0 +23663,Pobozowisko,395,606,699513260,10797,0 +23664,0057,620,411,699429153,9825,0 +23665,A0170,355,486,8841266,10362,0 +23666,kathare,558,643,873575,10187,0 +23667,Ave+Why%21,452,630,8729672,9922,0 +23668,A0210,368,473,8841266,10362,0 +23669,A025,585,370,699485250,10211,0 +23670,15+Gondolin,458,645,699736927,8041,0 +23671,jaaa,629,582,698635863,10484,0 +23672,0475,536,649,698659980,9693,0 +23673,MojeDnoToWaszSzczyt,572,364,699697558,10019,0 +23674,067+Wioska+barbarzy%C5%84ska,549,355,699491076,10001,0 +23675,004,649,533,699351301,12134,0 +23676,Ave+Why%21,482,659,698585370,9346,0 +23677,BoOmBaa..,435,360,6169408,10481,0 +23678,yyyy,490,345,699883079,10068,3 +23679,013.+Daro+Lew,639,441,849095599,9835,0 +23680,Charfa,517,349,699072129,10226,0 +23681,Kentin+ufam+Tobie,388,442,699783765,10000,0 +23682,Monetio,443,357,849017820,10495,0 +23683,Vataha,554,357,699072129,10311,0 +23684,A-029,383,399,8419570,10168,0 +23685,MojeDnoToWaszSzczyt,574,364,699697558,10019,0 +23687,%23.06+KWASIOR,651,467,849054582,10019,0 +23688,Jednak+wol%C4%99+gofry,439,640,699736927,7338,0 +23689,Pobozowisko,395,609,699513260,10960,0 +23690,BoOmBaa..,432,361,6169408,6982,0 +23691,MRF+001,629,580,118121,11911,0 +23692,Wioska+barbarzy%C5%84ska,637,440,699429153,9782,0 +23693,042,484,351,698739350,10237,0 +23694,%23.21+Wioska+barbarzy%C5%84ska,648,478,849054582,8063,0 +23695,Owp+Konfederacja,595,384,848915730,9278,0 +23696,017+181,352,502,698807570,10474,0 +23697,Bagdad,499,350,8847546,9976,0 +23698,A0311,346,505,8841266,10083,0 +23699,A0151,348,490,8841266,10362,0 +23700,R%C4%99cznik+do+zmiany,372,416,699697558,10160,0 +23701,131...centr,459,355,6920960,10237,0 +23702,off+100+%25,361,554,849012521,10251,0 +23703,A+READY,595,397,1553947,10160,0 +23704,AB13+Szkocja,377,417,483145,4176,0 +23705,Ave+Why%21,460,640,698585370,10495,0 +23706,XXXX,496,346,699883079,10108,0 +23707,Flinii,632,431,848883237,6303,0 +23709,075,437,636,849084985,9388,0 +23710,MojeDnoToWaszSzczyt,561,359,699697558,10083,0 +23711,003,376,415,848945529,7880,9 +23712,Dzikie+wsparcie,468,653,698807570,9694,0 +23713,DajankA+08,355,557,849012843,10362,0 +23715,A0107,352,492,8841266,10362,0 +23716,018+017,539,355,699491076,10001,7 +23717,MojeDnoToWaszSzczyt,565,363,699697558,10495,0 +23718,Ave+Why%21,472,651,698585370,10019,0 +23719,009+181,352,506,698807570,10049,6 +23720,058,651,528,698999105,9272,0 +23721,027+VW+GD+--016--,370,421,3108144,4495,0 +23722,007...P%C5%81D_Ogarniamy,456,356,6920960,10559,0 +23723,Stany,372,422,1746216,4985,0 +23724,BEZDZIETNY+KAWALER,414,626,848913998,5957,0 +23725,Lord+Lord+Franek+.%23138,518,349,698420691,10143,0 +23726,002+MONETKI,648,485,7588382,10019,2 +23727,.achim.,527,387,6936607,10311,0 +23728,Wioska+barbarzy%C5%84ska,497,347,699244334,4230,0 +23729,Ave+Why%21,497,655,698585370,8554,0 +23730,Szlachcic,349,466,6258092,10083,0 +23731,Kentin+ufam+Tobie,350,474,699783765,10000,0 +23732,009,483,348,698739350,10237,0 +23733,Maszlug+Stolica,366,432,848977649,12154,0 +23734,Mandarynki1,457,648,699736927,10311,0 +23735,Osada+koczownik%C3%B3w,557,356,699072129,10218,1 +23736,%23.03+AVEWiking,652,471,849054582,10019,0 +23737,R%C4%99cznik+do+zmiany,374,416,699697558,10160,0 +23738,Lord+Lord+Franek+.%23045,516,346,698420691,9976,0 +23739,Joker+pozdrawia+%3B%29,426,636,849006145,7213,0 +23740,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,644,7589468,8817,0 +23741,K02..,367,580,849090130,9522,0 +23742,Ulmus+glabra,503,346,699883079,8669,0 +23743,Myk+i+do+kieszonki,360,564,9319058,9799,0 +23744,B.049,650,516,9188016,10000,0 +23745,A013,581,371,699485250,10168,0 +23746,The+Game+Has+Only+Just+Begun,353,531,9280477,9976,0 +23748,Mandarynki+3,459,649,699736927,8440,0 +23749,Wioska+Don+Kargul,349,536,3529695,9060,0 +23750,0252,541,647,698659980,10160,0 +23751,KUZYN+REMONCIARZ,427,630,848913998,4553,0 +23753,Avanti%21,347,513,698625834,9950,0 +23754,Pobozowisko,388,606,699513260,10951,0 +23755,060,355,541,8908002,4696,0 +23756,Alicization+3,459,647,699849210,9673,0 +23757,045%7C%7C+Vulpecula,501,652,849035525,10160,0 +23758,B.001,651,514,9188016,10000,8 +23759,Szlachcic,582,485,699759128,10237,0 +23760,Kentin+ufam+Tobie,358,444,699783765,9440,0 +23761,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,652,699828442,9808,0 +23762,off+100+%25,359,556,849012521,8690,0 +23763,psycha+sitting,453,646,699736927,10311,0 +23764,-+227+-+RR,596,621,849018239,10000,0 +23765,North+Barba+027,428,368,699796330,9899,0 +23766,Wioska+barbarzy%C5%84ska+024,498,346,6343784,7244,0 +23767,0476,517,649,698659980,9398,0 +23768,009,357,542,8908002,9993,0 +23769,Mniejsze+z%C5%82o+0079,389,459,699794765,10887,0 +23770,900,645,539,7038651,10233,0 +23771,134,482,350,7271812,5522,0 +23772,No.+2,477,652,698585370,9201,0 +23773,Ave+Why%21,475,649,699121671,9809,0 +23774,A0226,346,499,8841266,10362,0 +23775,MojeDnoToWaszSzczyt,560,365,699697558,10495,0 +23776,010...CENTR_FOX,462,353,6920960,10218,0 +23777,Brat447,348,506,699262350,10134,8 +23778,A002,474,639,699383279,9861,0 +23779,So%C5%82tys+Twojej+Wsi,401,388,849027025,9744,0 +23780,ave+why%21,447,642,698143931,9967,0 +23781,Jehu_Kingdom_22,649,485,8785314,7900,0 +23782,%23.31+Wioska+grunwald45,653,483,849054582,10019,0 +23783,Jestem+Poza+Kontrol%C4%85,358,551,8004076,9778,0 +23784,Maszlug+kolonia+VII,366,430,848977649,9109,0 +23785,23.+Altanka+u+pompa,375,588,8665783,9179,0 +23786,003,642,557,849095963,10668,1 +23787,Jednak+wol%C4%99+gofry,442,644,699736927,8733,0 +23788,Szlachcic,353,467,6258092,10083,0 +23789,040,485,345,698739350,10237,0 +23790,R%C4%99cznik+do+zmiany,375,408,699697558,10160,0 +23791,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,365,569,8004076,9682,0 +23792,S_010,503,653,849100262,10101,0 +23793,PZ033,654,520,8096537,9745,0 +23794,0054,621,410,699429153,9717,0 +23795,%5B148%5D,633,566,8000875,9607,0 +23796,D+008,655,503,8078914,9428,0 +23797,0039,418,373,848913037,8718,0 +23799,Pobozowisko,393,605,699513260,10950,0 +23800,LadyAnimavillis,602,617,699703642,9861,0 +23801,Edirne,418,629,849089459,8246,0 +23802,Wioska+Bochun10,347,483,7449254,10495,0 +23803,Szlachcic,436,365,698388578,4355,0 +23804,The+Game+Has+Only+Just+Begun,349,529,9280477,9976,0 +23805,08+Ksi%C4%99%C5%BCyc%2C+u%C5%BCywaj%C4%85c+motyki,465,650,699121671,9462,0 +23806,A046,586,371,699485250,8111,0 +23807,Pobozowisko,403,618,699513260,10971,0 +23808,Szlachcic,355,449,6258092,9880,4 +23809,Pobozowisko,398,609,699513260,10971,0 +23810,085,439,639,849084985,9706,0 +23811,R%C4%99cznik+do+zmiany,375,412,699697558,9673,0 +23812,S_012,507,655,849100262,7326,0 +23814,MojeDnoToWaszSzczyt,571,367,699697558,10019,0 +23815,0280,546,646,698659980,9561,0 +23816,069,637,572,849095227,9714,0 +23817,Kentin+ufam+Tobie,355,444,699783765,10495,0 +23818,A006,601,386,699761749,9918,0 +23819,Pobozowisko,397,612,699513260,10951,4 +23820,031,616,598,698786826,7745,0 +23821,020,564,641,699828685,9976,0 +23822,101,429,557,8779575,3626,0 +23823,078+cevelel,638,429,9238175,10284,0 +23824,Kentin+ufam+Tobie,368,448,699783765,10000,0 +23825,Szlachcic,424,370,698388578,8055,0 +23826,089,438,637,849084985,7094,0 +23827,010,425,632,699783765,8227,0 +23828,109,475,352,7271812,7452,0 +23829,039,546,647,698659980,9188,0 +23830,Wioska+barbarzy%C5%84ska,359,453,6258092,9080,0 +23831,A0116,349,497,8841266,10362,0 +23832,0001.,475,647,848999671,10290,0 +23833,%2ALoslosos,576,633,699443920,9761,0 +23836,Posterunek+001,400,616,848912772,10178,0 +23837,007,421,631,2289134,6653,0 +23838,-+226+-+RR,591,619,849018239,8300,0 +23839,c+Wronki,396,385,3909522,7092,0 +23840,Wioska+2,538,353,849097220,4718,0 +23842,032,613,599,698786826,6083,0 +23843,Oaza+8,405,380,699402816,9925,0 +23845,BoOmBaa..hmmm,430,361,6169408,6575,0 +23846,A0051,348,488,8841266,10362,9 +23847,Wioska+barbarzy%C5%84ska,551,360,699072129,10237,0 +23848,102,351,464,6258092,10019,0 +23849,A003,597,384,699761749,7269,0 +23850,110+Wioska+barbarzy%C5%84ska,539,357,699491076,10030,0 +23851,Wioska+barbarzy%C5%84ska,551,358,699072129,10364,0 +23852,.achim.,528,447,6936607,11321,0 +23853,%23005+nazwa,374,589,8607734,10019,0 +23854,Jestem+Poza+Kontrol%C4%85,357,549,8004076,9880,0 +23855,VN+Maes+Hughes,465,373,699883079,9657,0 +23856,007.,482,653,849034882,10838,0 +23857,Grahamek,533,355,1990750,10068,0 +23858,sony911,581,629,1415009,10228,0 +23859,052+Bethesda,625,588,699272880,9388,0 +23860,%23.32+Wioska+grunwald45.2,653,482,849054582,4067,0 +23861,Pobozowisko,386,605,699513260,3998,0 +23862,32k%24+Grvvyq,639,556,699676005,10495,7 +23863,Wioska,557,362,699072129,10237,0 +23864,%23042.520%7C494,639,445,556154,9735,0 +23865,037...CENTRUM_PO%C5%81UDNIE,458,356,6920960,10247,0 +23866,Kentin+ufam+Tobie,355,452,699783765,10316,0 +23867,31.KaruTown,616,401,699298370,9267,0 +23868,71k%24+Grvvyq,639,569,699676005,9349,0 +23870,032+033,542,356,699491076,10001,0 +23871,Szlachcic,415,376,698388578,8502,0 +23872,024,487,351,698739350,10237,0 +23874,Wsch%C3%B3d+Droga+008,631,584,698562644,10311,0 +23875,030+%7C+PALESTINA,637,436,9228039,9544,0 +23876,B13,647,450,849093742,8755,0 +23877,124,474,352,7271812,3056,0 +23878,I%23002,598,381,2065730,9797,0 +23879,%5B106%5D,634,568,8000875,10143,0 +23880,009...CENTR_FOX,460,353,6920960,10495,0 +23881,Jaaa,618,595,698635863,10280,0 +23883,zzzGranica+Bledu+08,612,607,699778867,8872,0 +23884,The+Game+Has+Only+Just+Begun,350,521,9280477,9976,0 +23885,Dajanka+05,356,557,849012843,10285,0 +23886,A021+Go%C5%9B%C4%87095879+g%C5%82%C3%B3wna,653,459,113796,10224,0 +23887,North+Barba+032,423,370,699796330,9817,0 +23888,The+Game+Has+Only+Just+Begun,352,528,9280477,10040,0 +23889,kropka..,602,614,699778867,10096,0 +23890,A0238,351,481,8841266,10362,0 +23891,001,483,347,698739350,10237,0 +23892,0027,416,370,848913037,4804,0 +23893,Wioska+barbarzy%C5%84ska,384,399,698884287,6015,0 +23894,Avanti%21,347,502,698625834,9950,0 +23895,-028-,382,595,699097885,10019,0 +23896,0058,620,412,699429153,9825,0 +23897,KONFA+TO+MARKA%2C+NARKA,384,464,698152377,10311,0 +23898,007,491,349,698739350,10237,0 +23899,025,468,650,698650301,9914,0 +23900,xkikutx,507,351,1990750,10157,0 +23901,D04.,367,574,849090130,6947,0 +23902,Lord+Lord+Franek+.%23001,526,344,698420691,10235,0 +23903,Wsch%C3%B3d+Droga+001,644,549,698562644,10311,0 +23904,A-015,390,397,8419570,10168,1 +23905,S1Joker,476,656,698585370,11321,0 +23906,0477,538,649,698659980,9752,0 +23907,A-009,394,392,8419570,10245,0 +23908,%23066.,621,428,556154,9735,0 +23910,Pobozowisko,402,618,699513260,10971,0 +23911,081,356,542,6853693,6121,0 +23912,kathare,557,644,873575,10030,0 +23913,B%C4%85k+z+wanny+.,586,626,848995242,10495,0 +23915,010,651,533,699351301,8928,0 +23916,K34+-+%5B107%5D+Before+Land,443,355,699088769,10259,0 +23917,Wioska+barbarzy%C5%84ska,586,627,1415009,3773,0 +23918,So%C5%82tys+Twojej+Wsi,400,382,849027025,8977,0 +23919,Szlachcic,351,455,6258092,8945,0 +23920,Dziadostwo+Atakuje,453,651,698264828,2799,0 +23921,019,612,396,699298370,8246,0 +23922,M181_052,364,428,393668,9026,0 +23923,70k%24+Grvvyq,638,571,699676005,10495,0 +23924,Pobozowisko,386,597,699513260,9701,0 +23925,The+Game+Has+Only+Just+Begun,351,536,9280477,9976,0 +23926,Wioska+barbarzy%C5%84ska,554,360,699072129,10221,0 +23927,a+mo%C5%BCe+off+%3F+%3A%29,626,582,698768565,9333,0 +23928,U-08,586,378,3600737,5026,0 +23929,011+nica,567,638,699828685,9976,0 +23930,%23.16+Wioska+barbarzy%C5%84ska,651,475,849054582,10019,0 +23931,marcovia,372,425,8967440,8750,0 +23932,Pobozowisko,382,594,699513260,4938,0 +23933,K03..,368,579,849090130,6894,0 +23934,Posterunek+003,397,613,848912772,10178,0 +23935,M001,650,508,848899726,7208,0 +23936,Kentin+ufam+Tobie,380,439,699783765,10000,0 +23937,MojeDnoToWaszSzczyt,565,364,699697558,10495,5 +23938,001,359,530,698641566,9809,0 +23939,%2A0029+Baraki,631,427,8459255,9971,0 +23941,Lord+Lord+Franek+.%23046,535,352,698420691,9959,0 +23942,MojeSzczytToTw%C3%B3jDno,510,346,828637,10475,0 +23943,Piek%C5%82o+to+inni,580,369,848956765,10495,0 +23944,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,648,699828442,10083,0 +23945,Dajanka+03,355,556,849012843,11321,0 +23946,Avanti%21,347,504,698625834,9950,0 +23947,BEZDZIETNY+KAWALER,417,632,848913998,9263,0 +23948,0478,534,650,698659980,10252,0 +23949,030,441,638,699736927,9678,0 +23950,122,472,351,7271812,4909,0 +23951,MojeDnoToWaszSzczyt,567,362,699697558,10495,0 +23952,Lord+Lord+Franek+.%23019,532,350,698420691,9960,0 +23953,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,653,698585370,9829,3 +23954,A+016,604,388,6384450,10362,0 +23955,BAC%C3%93WKA+%7C020%7C,629,422,7394371,8472,0 +23956,A0312,345,488,8841266,10362,0 +23957,kathare,553,646,873575,10268,0 +23958,Mexico4,458,644,699736927,10311,0 +23959,Magik69,610,603,699778867,12154,0 +23960,A+003,605,388,6384450,10362,0 +23961,005.+Radomiak,501,650,848953066,9534,0 +23962,Mandarynki+2,457,649,699736927,9821,0 +23963,A003,406,620,848912772,10311,0 +23964,017.+Londinium,653,471,849091866,10311,9 +23965,Wioska+barbarzy%C5%84ska,384,398,698884287,6362,0 +23966,014,560,643,699828685,9976,0 +23967,X-01,595,377,3600737,7754,0 +23968,EMERYTOWANY+KUZYN,425,633,848913998,6730,0 +23969,Wioska+barbarzy%C5%84ska+022%7C,497,348,6343784,9989,0 +23970,Lord+Lord+Franek+.%23020,534,351,698420691,9959,0 +23971,LadyAnimavillis,601,618,699703642,9127,0 +23973,700,648,540,7038651,10149,0 +23974,psycha+sitting,446,645,699736927,10268,0 +23975,%23.22+Wioska+barbarzy%C5%84ska,649,481,849054582,8369,0 +23976,Oww+Konfederacja,609,393,848915730,4700,0 +23977,113+Wioska+barbarzy%C5%84ska,543,357,699491076,10060,0 +23979,Jednak+wol%C4%99+gofry,436,640,848913998,9835,0 +23980,BEZDZIETNY+KAWALER+%3A%29,411,628,848913998,6057,0 +23981,020+181,351,501,698807570,10634,0 +23983,Bizy+8,503,654,8954402,10213,0 +23985,050+Laval,620,590,699272880,10108,0 +23986,Wioska+barbarzy%C5%84ska,555,355,699072129,10218,0 +23987,018+181,356,507,698807570,10068,0 +23988,jaaa,636,559,698635863,10490,0 +23989,M181_051,363,431,393668,9891,0 +23990,psycha+sitting,451,645,699736927,10009,0 +23991,kathare,554,646,873575,10295,0 +23992,BEZDZIETNY+KAWALER,412,623,848913998,6355,0 +23993,Wioska+barbarzy%C5%84ska,350,456,6258092,10019,0 +23994,7.62+mm,379,402,848886056,2965,0 +23995,Wioska+barbarzy%C5%84ska,381,401,848886056,3056,3 +23996,Dajanka+11,360,555,849012843,7967,0 +23997,07.+Boi,378,594,8665783,9463,0 +23998,Owp+Konfederacja,596,384,848915730,5880,0 +23999,B04,641,439,849093742,10495,0 +24000,-+248+-+RR,593,625,849018239,5269,0 +24001,031,354,470,6258092,10252,0 +24002,MojeDnoToWaszSzczyt,560,358,699697558,10160,0 +24003,%2AINTERTWINED%2A,509,651,698704189,9711,0 +24004,043...CENTRUM+PO%C5%81,458,357,6920960,10322,0 +24005,MojeDnoToWaszSzczyt,573,364,699697558,10019,0 +24006,No.+3,478,654,698585370,9201,0 +24007,Kentin+ufam+Tobie,358,443,699783765,10495,0 +24008,001+Montuje+Plisy,541,355,699491076,10001,0 +24009,psycha+sitting,456,648,699736927,10178,0 +24010,A-016,392,393,8419570,10168,5 +24011,Kentin+ufam+Tobie,351,445,699783765,10495,0 +24012,MRF+003,629,584,118121,9109,0 +24013,Kentin+ufam+Tobie,355,448,699783765,10000,0 +24014,Kentin+ufam+Tobie,357,446,699783765,10360,0 +24015,Yogi,545,649,2808172,10019,0 +24016,148...ksi%C4%85%C5%BC%C4%99+plemienia,452,359,6920960,8104,0 +24017,Wioska+barbarzy%C5%84ska,566,640,699828685,8786,0 +24018,A-011,392,397,8419570,10168,0 +24020,%230028+barbarzy%C5%84ska,471,347,1238300,10178,0 +24021,SSJ+068,518,653,699364813,9427,0 +24022,EMERYTOWANY+KUZYN,425,635,848913998,7986,0 +24023,%230022+barbarzy%C5%84ska,470,354,1238300,10178,0 +24024,0479,519,650,698659980,10083,0 +24025,310,648,546,7038651,9704,0 +24026,Maszlug+kolonia+IV,366,433,848977649,9920,0 +24028,The+Game+Has+Only+Just+Begun,346,518,9280477,9976,0 +24029,017.+Pepe,501,651,848928624,10237,0 +24030,Kentin+ufam+Tobie,351,479,699783765,10000,0 +24031,010.+Fishing,502,650,698585370,10237,0 +24032,0460,379,598,698659980,10252,0 +24033,053,649,520,699413040,9860,0 +24034,085,642,559,849095227,9797,0 +24035,Lord+Lord+Franek+.%23216,509,348,698420691,9250,0 +24036,055,647,535,699351301,10160,0 +24037,D02..,364,574,849090130,9160,0 +24039,JawmaG+P,620,591,8815749,10019,0 +24040,jaaa,633,568,698635863,10495,0 +24041,zzz+Magiorkowy+kleks,618,599,699778867,11824,0 +24042,Valhalla+A6,373,581,849097002,5266,0 +24043,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,653,699828442,9825,0 +24045,R%C4%99cznik+do+zmiany,374,410,699697558,9948,0 +24046,North+Barba+030,425,369,699796330,10454,0 +24047,RTS+15,587,624,848995242,9833,0 +24048,Oww+Konfederacja,608,389,848915730,6800,0 +24049,B19,647,459,849093742,10019,0 +24050,Pobozowisko,382,591,699513260,7753,0 +24051,003+cho1sen,570,635,699828685,9976,0 +24052,045...Centrum+zach,457,353,6920960,10262,0 +24053,BEZDZIETNY+KAWALER,419,625,848913998,4006,0 +24054,-+053+-+RR,590,622,849018239,10000,0 +24055,makelovenotwar6,384,466,698807570,9127,0 +24056,A0069,346,490,8841266,10362,0 +24057,Wioska+barbarzy%C5%84ska,552,358,699072129,10561,0 +24058,jaaa,635,570,698635863,10495,0 +24059,038...CENTRUM,458,353,6920960,10336,0 +24060,Piek%C5%82o+to+inni,582,367,848956765,10495,0 +24061,Oww+Konfederacja,607,394,848915730,6543,0 +24062,Posterunek+004,399,616,848912772,10178,0 +24063,Wioska+barbarzy%C5%84ska,552,354,699072129,10226,0 +24064,psycha+sitting,449,648,699736927,10311,0 +24065,040,643,556,849095227,9740,0 +24066,MELISKA,358,454,699794765,1992,0 +24067,.achim.,519,388,6936607,10080,0 +24068,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,649,699828442,9875,0 +24069,Pobozowisko,392,610,699513260,9051,0 +24070,011,481,348,698739350,10237,0 +24071,0006,588,372,699485250,10211,8 +24072,R%C4%99cznik+do+zmiany,373,418,699697558,8899,0 +24073,Denger+19,368,584,698353083,9643,0 +24074,Sangeda,539,429,848986287,7277,0 +24075,A002,588,374,699485250,10168,0 +24076,Wioska+barbarzy%C5%84ska,646,460,699524891,8970,0 +24077,2.6,403,378,699402816,9899,0 +24079,M181_050,367,425,393668,10229,0 +24080,Skazany+Na+Instynkt,370,580,8004076,9880,0 +24081,I%23037,596,378,2065730,10019,0 +24082,007-Dzieci,432,630,6910361,4376,0 +24083,%230010+barbarzy%C5%84ska,464,351,1238300,10178,0 +24084,Oww+Konfederacja,608,391,848915730,10140,0 +24085,0063+9+Rak%C3%B3wqqqqqqqqqqqqqqqqqqqq,445,434,3909522,10418,0 +24086,0480,516,649,698659980,10019,0 +24087,-+250+-+RR,594,617,849018239,10000,0 +24088,061+%7C,647,551,8000875,9747,0 +24089,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,367,568,8004076,8215,0 +24090,A002,405,620,848912772,9933,0 +24091,Lord+Lord+Franek+.%23228,515,346,698420691,8214,0 +24092,044%7C%7C+Lacerta,502,653,849035525,10495,0 +24093,054,606,387,849010255,4000,0 +24094,014...P%C5%81D,455,356,6920960,10221,0 +24095,-+007+-+RR,587,622,849018239,10000,8 +24097,%230026+barbarzy%C5%84ska,471,350,1238300,10178,0 +24098,Jestem+Poza+Kontrol%C4%85,352,541,8004076,8038,0 +24099,%2ALulu,574,638,699443920,9761,0 +24101,Lord+Lord+Franek+.%23111,505,345,698420691,9962,0 +24102,EMERYTOWANY+KUZYN,434,642,848913998,7094,0 +24103,Dunharrow,500,504,849091897,7950,0 +24104,Wioska+barbarzy%C5%84ska,549,354,699072129,10221,0 +24105,058,403,506,699851427,10129,0 +24106,Wioska+004,390,390,8419570,10168,0 +24108,Brat447,347,505,699262350,10057,0 +24109,027,652,538,699351301,10149,0 +24110,The+Game+Has+Only+Just+Begun,347,528,9280477,9053,0 +24111,Pobozowisko,388,599,699513260,7743,0 +24112,011+%7C+PALESTINA,635,460,9228039,9544,0 +24113,Wioska+barbarzy%C5%84ska,363,429,393668,10362,0 +24114,028,437,639,698143931,8963,9 +24115,0481,540,649,698659980,10495,0 +24116,K34+-+%5B032%5D+Before+Land,445,356,699088769,10259,0 +24117,I%23036,605,392,2065730,9797,0 +24118,So%C5%82tys+Wsi+Enaor1990,407,382,849027025,9372,0 +24119,Wioska+Jaro2,370,419,8967440,8401,0 +24120,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,548,644,7589468,8825,0 +24121,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,654,699828442,9825,0 +24122,psycha+sitting,459,650,699736927,10178,0 +24123,Wioska+barbarzy%C5%84ska,648,458,699524891,9724,0 +24124,off+100+%25,362,571,849012521,7714,0 +24125,Lord+Lord+Franek+.%23002,528,346,698420691,10068,0 +24126,Qzuri,493,354,699883079,10311,0 +24127,Kentin+ufam+Tobie,357,451,699783765,10559,0 +24128,Winter+is+coming,505,585,699364813,10311,0 +24129,Avanti%21,344,507,698625834,9950,0 +24130,0011,581,634,698659980,10252,4 +24131,%23.37+Wioska+barbarzy%C5%84ska,651,480,849054582,2930,0 +24132,Kentin+ufam+Tobie,356,451,699783765,10559,0 +24133,jan+Dzik+I,643,435,879782,8727,0 +24134,deff+100+%25,357,560,849012521,6686,0 +24135,D+007,651,497,8078914,10236,0 +24136,0020,591,381,699485250,10211,0 +24137,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,570,8004076,8589,0 +24139,0063+b14+Wis%C5%82a,455,432,3909522,10083,0 +24140,-002-,380,590,699097885,9241,0 +24141,009,650,530,699351301,10818,0 +24142,W+04,644,451,699524891,9721,5 +24143,Ave+Why%21,475,650,699121671,9809,0 +24144,cc+spoko+pobawimy+si%C4%99+do+jutra,408,375,3909522,9045,0 +24145,Podzi%C4%99kowa%C5%82+7,417,375,699796330,9622,0 +24146,053.+Caprae,647,467,849091866,9355,0 +24147,Wioska+Bochun10,345,479,7449254,10311,0 +24148,040,624,405,9148043,9351,0 +24150,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,652,699828442,9805,0 +24151,Wioska+barbarzy%C5%84ska,354,459,6258092,4863,0 +24152,005,374,420,848945529,6583,0 +24153,078,620,603,698786826,10495,0 +24154,0011,611,610,6417987,8815,0 +24155,hed,610,611,6417987,4816,4 +24156,c+011+Oaza+7,411,378,3909522,10160,0 +24157,Myk+i+do+kieszonki,361,562,9319058,9799,0 +24158,047,654,487,2135129,9137,0 +24159,R%C4%99cznik+do+zmiany,376,406,699697558,10160,0 +24160,Obrze%C5%BCa+04,544,649,848915531,11550,0 +24161,R%C4%99cznik+do+zmiany,372,412,699697558,9858,0 +24162,4AA,357,435,7765098,9017,0 +24163,12+Kuba+3+zero+zero+7,464,649,848883684,9350,0 +24164,North+Barba+023,422,368,699796330,9761,0 +24165,Jestem+Poza+Kontrol%C4%85,353,542,8004076,7476,0 +24166,Maszlug+kolonia+X,368,423,848977649,8666,0 +24167,ladyanima,511,572,699703642,9083,0 +24168,002,643,561,849095963,10523,0 +24169,A0063,346,495,8841266,10362,0 +24170,Vasteroy135,362,431,393668,5564,8 +24171,%23043.521%7C495,640,446,556154,9735,0 +24172,A015,581,370,699485250,10211,0 +24173,x010,358,565,9264752,10495,0 +24174,M005,650,503,848899726,6638,0 +24175,A005,585,373,699485250,10168,0 +24176,sony911,579,634,1415009,10220,0 +24177,2.8,393,383,8419570,10503,0 +24178,Piek%C5%82o+to+inni,575,371,848956765,10495,0 +24179,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,647,699828442,9899,0 +24180,024,465,656,698650301,9990,0 +24181,011,652,531,699351301,10141,0 +24182,109,584,382,849064752,10311,0 +24183,116+Murayama,648,467,7092442,4800,0 +24184,024+Piwo+moje+paliwo,396,617,8268010,5593,0 +24185,300,646,542,7038651,9643,0 +24186,Swarz%C4%99dz,644,560,849095963,11548,0 +24187,Piek%C5%82o+to+inni,578,368,848956765,9309,0 +24188,%2A%2A%2A002%2A%2A%2A,503,347,8843774,6895,0 +24189,119,626,416,7085502,7807,0 +24190,Szlachcic,422,372,698388578,10237,0 +24191,K34+-+%5B144%5D+Before+Land,451,355,699088769,9783,1 +24192,027,640,557,849095227,9761,0 +24193,R%C4%99cznik+do+zmiany,372,410,699697558,10160,0 +24194,P025+Maple+Kush,655,519,8096537,9761,7 +24195,MojeDnoToWaszSzczyt,567,364,699697558,10495,0 +24196,013,428,632,699783765,8061,0 +24197,Punta+Cana+3,456,646,699736927,10311,0 +24198,Pobozowisko,387,601,699513260,7275,0 +24199,Darmowe+przeprowadzki,467,647,848935389,9553,0 +24200,006,376,405,848945529,3352,0 +24201,0079+wojs%C5%82awice,446,441,3909522,10054,0 +24202,a+mo%C5%BCe+off+%3F+%3A%29,642,554,698768565,9356,0 +24203,002+cesarok,569,634,699828685,9976,4 +24204,%5B021%5D,449,646,9094538,1969,0 +24205,-+243+-+RR,595,621,849018239,10000,0 +24206,Jaaa,606,582,698635863,10478,0 +24207,BEZDZIETNY+KAWALER,415,624,848913998,5042,0 +24208,%7CA%7C+Dimstair,481,650,698147372,10495,0 +24209,A-032,394,389,8419570,10168,0 +24210,Wioska+barbarzy%C5%84ska,511,351,9140898,2349,0 +24211,2.1,386,393,8419570,10168,0 +24212,Wioska+barbarzy%C5%84ska,364,424,393668,6267,0 +24213,DajankA+10,357,558,849012843,10160,0 +24214,074.+Mursa,624,432,849091866,10252,0 +24215,0024+MzM,624,593,698416970,9258,0 +24216,jaaa,640,569,698635863,10289,0 +24217,0482,518,649,698659980,9761,0 +24218,kathare,557,642,873575,9914,0 +24219,S_003,509,656,849100262,11965,0 +24220,035+Vattweir,623,587,699272880,10058,0 +24221,A-017,390,398,8419570,10168,7 +24223,Piek%C5%82o+to+inni,568,361,848956765,10495,0 +24224,%7CA%7C+Darkdale,479,649,698807570,10495,0 +24225,kathare,550,644,873575,10218,0 +24226,VN+Artemisia,464,377,699883079,9639,0 +24227,R%C4%99cznik+do+zmiany,372,414,699697558,10160,0 +24228,Zorg,371,588,8607734,6826,0 +24229,B.050,654,509,9188016,10000,0 +24230,0001.+HMS+Prince+Royal+%281663%29,460,652,699121671,9809,0 +24231,Sony+911,584,627,1415009,10205,0 +24232,028,655,497,7085502,10365,0 +24233,A0038,384,469,8841266,10362,0 +24234,Skazany+Na+Instynkt,367,578,8004076,9816,0 +24235,041,445,637,849084985,10401,0 +24236,jaaa,637,575,698635863,10351,0 +24237,A+006,609,387,6384450,6191,0 +24238,025,615,399,699298370,8719,0 +24239,Jednak+wol%C4%99+gofry,471,650,699725436,10559,0 +24240,Wioska+Bochun10,347,480,7449254,10311,0 +24241,33k%24+Grvvyq,639,555,699676005,10387,0 +24242,Jednak+wol%C4%99+gofry,438,641,699736927,7919,0 +24243,Pobozowisko,391,610,699513260,10092,0 +24244,008.,486,651,849034882,10559,0 +24245,The+Game+Has+Only+Just+Begun,351,537,9280477,10240,0 +24246,sony911,580,633,1415009,10228,0 +24247,Kentin+ufam+Tobie,349,474,699783765,10000,0 +24248,K34+-+%5B050%5D+Before+Land,442,356,699088769,9506,0 +24249,jaaa,630,581,698635863,10495,0 +24250,SSJ+059,511,654,699054373,9555,0 +24251,Darmowe+przeprowadzki,467,646,848935389,9656,0 +24252,Lord+Arsey+KING,583,589,848956513,10285,0 +24253,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,653,699828442,9806,0 +24254,%230021+barbarzy%C5%84ska,470,353,1238300,10178,0 +24255,Dajanka+14,358,553,849012843,6658,0 +24256,B.003,650,507,9188016,10000,2 +24257,Pobozowisko,384,604,699513260,10960,0 +24258,%2A4626%2A+Dzielnica+cesarska,640,435,7973893,10287,0 +24259,Kentin+ufam+Tobie,356,446,699783765,7352,0 +24260,Jednak+wol%C4%99+gofry,444,644,699736927,10130,0 +24261,Wioska+barbarzy%C5%84ska,555,358,699072129,10218,0 +24262,022+181,349,510,698807570,9015,6 +24263,Piwna+17,626,428,699812007,7701,0 +24264,Nahrawan,435,638,849089459,9719,0 +24265,Jednak+wol%C4%99+gofry,431,634,699736927,9835,0 +24266,Pobozowisko,384,600,699513260,5824,0 +24267,042,649,550,698999105,10311,0 +24268,Owp+Konfederacja,600,382,848915730,5782,0 +24269,Og%C3%B3rkowy+baron,405,396,356642,9835,0 +24270,kathare,552,641,873575,10224,0 +24271,046.,407,623,2665207,7900,0 +24272,West,624,406,1086351,6183,0 +24274,CSA,511,344,7651093,8736,0 +24275,%2ALeser,574,633,699443920,9761,0 +24276,0026,417,370,848913037,7731,0 +24277,011%7C%7C+Aquarius,481,645,849035525,10019,0 +24278,037+%7C+PALESTINA,643,439,9228039,5222,0 +24279,Alicization+2,455,649,699849210,9908,8 +24280,Jestem+Poza+Kontrol%C4%85,349,538,8004076,9325,0 +24281,%230003+barbarzy%C5%84ska,467,351,1238300,10178,0 +24282,Jaaa,622,592,698635863,10269,0 +24283,025+Legio+I+Claudia+Pia+Fidelis,651,488,699878150,4829,0 +24284,kathare,556,640,873575,10336,8 +24286,%2A4621%2A+Pierwszy+gol,643,444,7973893,10287,0 +24287,MojeDnoToWaszSzczyt,568,364,699697558,10495,0 +24288,Piek%C5%82o+to+inni,576,368,848956765,9764,0 +24289,The+Game+Has+Only+Just+Begun,347,533,9280477,9976,6 +24290,Z+barba+010,406,576,225023,10495,0 +24291,Lord+Lord+Franek+.%23013,520,345,698420691,9960,7 +24292,0483,538,650,698659980,10362,0 +24293,Happy+New+Year+2k23,595,375,7462660,8798,0 +24294,Mniejsze+z%C5%82o+0029,345,498,699794765,7955,0 +24295,Wioska,351,454,6258092,7737,0 +24296,001+181,356,502,698807570,10495,0 +24297,18.+A+kit+go+wie,508,656,849092769,11656,0 +24298,Pobozowisko,393,608,699513260,10952,0 +24299,Wioska+barbarzy%C5%84ska,629,417,699429153,8794,0 +24300,Jestem+Poza+Kontrol%C4%85,350,545,8004076,8962,0 +24301,K34+-+%5B053%5D+Before+Land,441,357,699088769,7299,0 +24302,Tomall78,635,427,699524891,9654,0 +24303,Lord+Lord+Franek+.%23010,535,348,698420691,10244,0 +24304,BAC%C3%93WKA+%7C022%7C,631,418,7394371,7938,0 +24305,061,648,533,699351301,10160,0 +24306,029,478,351,698739350,10237,0 +24307,0061,418,371,848913037,9993,0 +24308,A+002,610,392,6384450,10362,0 +24309,026,652,539,699351301,12154,0 +24310,Myk+i+do+kieszonki,355,561,9319058,9799,3 +24311,002+181,355,500,698807570,10476,0 +24312,Wioska+barbarzy%C5%84ska,364,426,393668,10118,0 +24313,049.+Ardwen,637,425,8337151,10595,0 +24314,Avanti%21,345,516,698625834,9950,0 +24315,The+Game+Has+Only+Just+Begun,349,511,9280477,9976,0 +24316,0077,532,647,698659980,10083,0 +24317,Lord+Lord+Franek+.%23021,523,344,698420691,9957,0 +24318,035,648,523,699351301,6589,0 +24319,008,518,346,699072129,10495,0 +24320,jaaa,637,576,698635863,10484,0 +24321,Monetio,445,354,699308637,10495,9 +24322,Ave+Why%21,464,644,698585370,9414,0 +24323,K34+-+%5B130%5D+Before+Land,440,355,699088769,10259,0 +24324,033,353,471,6258092,10362,0 +24325,Oww+Konfederacja,611,392,848915730,4502,0 +24326,Belweder,374,593,849095992,11550,0 +24327,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,651,7589468,8822,0 +24328,psycha+sitting,459,643,699736927,10311,0 +24329,7.62+mm,380,400,848886056,2604,0 +24330,093,415,374,698364331,5936,0 +24331,Pobozowisko,386,608,699513260,4988,0 +24332,%2AINTERTWINED%2A,506,649,698704189,9711,0 +24333,%23044.522%7C497,641,448,556154,9331,0 +24334,M003,651,507,848899726,10000,0 +24335,M181_049,363,428,393668,9955,0 +24336,KUZYN+NA+MALEDIWACH,419,630,848913998,9173,9 +24337,Sony911,585,631,1415009,10292,0 +24338,Avanti%21,350,516,698625834,9950,0 +24339,009+toples145,560,641,699828685,9976,0 +24341,070,652,530,699351301,6342,0 +24342,Wioska+Kaffik+VI,635,580,6136757,7481,0 +24343,019,647,524,699351301,10160,0 +24344,Pobozowisko,389,600,699513260,6141,0 +24345,MojeDnoToWaszSzczyt,564,364,699697558,10495,4 +24347,Lord+Lord+Franek+.%23022,529,346,698420691,9957,0 +24348,A016,580,370,699485250,10211,0 +24349,0033,416,371,848913037,4783,0 +24350,%7E%7E050%7E%7E,607,612,7829201,9597,0 +24351,Nowa+27,638,567,698702991,9753,0 +24352,North+glinianka,422,364,699796330,9887,2 +24354,Bizy+5,505,657,8954402,9960,0 +24355,Piek%C5%82o+to+inni,566,357,848956765,10160,0 +24356,Wioska+Pabols+1,382,396,8967440,5707,0 +24357,Taki+Pan,504,345,698739350,9084,0 +24358,137,473,351,7271812,3051,0 +24359,2.2,388,392,698364331,2737,0 +24360,M181_018,364,430,393668,9902,0 +24361,Denger+22,374,585,698353083,9145,0 +24362,S_008,506,657,849100262,11475,0 +24363,Wioska+barbarzy%C5%84ska,645,453,699524891,10104,0 +24365,Wioska+Kaffik+IV,633,581,6136757,7432,0 +24366,R%C4%99cznik+do+zmiany,371,418,699697558,7413,0 +24367,off+100+%25,355,562,849012521,10254,0 +24368,Kentin+ufam+Tobie,356,458,699783765,10000,0 +24369,Kentin+ufam+Tobie,353,453,699783765,10495,0 +24370,011.+Erwin+Domel,507,650,848928624,10237,0 +24371,019,474,653,699238479,10019,0 +24372,Piek%C5%82o+to+inni,576,370,848956765,10495,0 +24373,Sony+911,583,631,1415009,10319,0 +24374,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,651,7589468,8836,0 +24375,BoOmBaa..,428,361,6169408,7503,0 +24376,021,467,650,698650301,9445,0 +24377,Szlachcic,348,468,6258092,10019,0 +24378,Lord+Lord+Franek+.%23179,516,349,698420691,10152,0 +24379,x006,359,566,9264752,10495,0 +24380,Wioska+barbarzy%C5%84ska,370,581,0,2874,0 +24381,historia+blisko+4,614,604,699778867,11824,0 +24383,013,653,534,699351301,9556,0 +24384,The+Game+Has+Only+Just+Begun,346,508,9280477,9976,1 +24385,%7CB%7C+Avlefirr,486,655,698147372,10495,0 +24386,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,654,699828442,9825,0 +24387,%5B319%5D+Chor%C4%85giewka+na+wietrze,591,437,848985692,10395,0 +24388,043,570,639,699828685,9976,0 +24389,zzzGranica+Bledu+06,607,611,699778867,9335,0 +24391,B.007,652,514,9188016,10000,0 +24392,008,645,561,849095963,7390,0 +24393,Szlachcic%3ATaran,617,396,698241117,5095,0 +24394,Wioska+barbarzy%C5%84ska,380,401,848886056,9288,0 +24395,B03,645,439,849093742,10160,0 +24397,Epitaph,639,564,848926293,9562,0 +24398,SSJ+055,508,652,699054373,9761,0 +24399,039,446,640,849084985,10178,0 +24400,ave+why%21,445,642,698143931,8947,0 +24401,Pobozowisko,383,609,699513260,11321,0 +24402,002%7C%7C+Taurus,487,651,849035525,10019,0 +24403,BBB,561,415,1006847,8713,0 +24404,019,563,640,699828685,9976,0 +24405,Jestem+Poza+Kontrol%C4%85,354,543,8004076,6953,0 +24406,Wioska+2,589,629,8627359,9274,0 +24407,006+-+Mroczna+Osada,630,418,849035905,10114,0 +24408,R%C4%99cznik+do+zmiany,373,408,699697558,10019,0 +24409,I%23024,598,378,2065730,6302,0 +24410,BEZDZIETNY+KAWALER,416,630,848913998,4340,0 +24411,R%C4%99cznik+do+zmiany,374,406,699697558,10019,0 +24412,Jednak+wol%C4%99+gofry,440,645,699736927,9547,0 +24413,005,520,465,848967710,10252,0 +24414,EMERYTOWANY+KUZYN,429,640,848913998,10787,0 +24415,The+Game+Has+Only+Just+Begun,349,534,9280477,9976,0 +24416,Pobozowisko,407,616,699513260,8062,0 +24417,Avanti%21,350,511,698625834,9950,0 +24418,020,427,632,699783765,8680,0 +24419,SSJ+052,511,651,699054373,9517,0 +24421,The+Game+Has+Only+Just+Begun,351,527,9280477,9976,0 +24422,ladyanima,518,571,699703642,9151,0 +24423,The+sweetest+ass+in+the+world,375,591,849095992,10495,2 +24424,psycha+sitting,452,645,699736927,10311,0 +24425,Myk+i+do+kieszonki,360,563,9319058,9799,0 +24426,BAC%C3%93WKA+%7C003%7C,631,416,7394371,10795,3 +24427,Wioska+barbarzy%C5%84ska,368,572,849012521,4053,0 +24428,Wioska+Kaffik+I,633,579,6136757,6964,0 +24429,B.029,650,518,9188016,10000,0 +24430,The+Game+Has+Only+Just+Begun,350,513,9280477,10178,3 +24431,244...SOUTH,474,348,6920960,6631,0 +24432,North+Barba+003,421,366,699796330,9889,0 +24433,Ave+Why%21,459,641,698585370,9212,0 +24434,B02,647,452,849093742,10252,0 +24435,002,485,342,698739350,10237,0 +24436,Pobozowisko,387,605,699513260,4504,0 +24437,071,648,553,849095227,9747,0 +24438,jaaa,633,583,698635863,10495,0 +24439,Koszalin,384,554,698769107,9835,0 +24440,040...CENTRUM,459,354,6920960,10247,0 +24441,018%7C%7C+Camelopardalis,474,650,849035525,10019,0 +24442,Jehu_Kingdom_13,641,433,8785314,8745,0 +24443,Lord+Lord+Franek+.%23204,501,349,698420691,9583,0 +24444,037.1+mys,553,648,699828685,9249,0 +24445,073...barbarka,459,350,6920960,10223,0 +24446,Wioska+barbarzy%C5%84ska,492,343,698739350,7627,0 +24447,017...CENTR,456,352,6920960,10495,0 +24448,Kentin+ufam+Tobie,351,478,699783765,10000,0 +24449,M181_048,362,435,393668,9805,0 +24450,Terrestre,347,462,6258092,10083,0 +24451,Wioska+barbarzy%C5%84ska,645,456,699524891,9337,0 +24452,000000VN+Zenon+Zogriatis,466,369,699883079,9626,0 +24453,Taka006,474,652,848999671,8537,0 +24454,M008,653,504,848899726,4839,0 +24455,%7E005.,502,608,7139820,10495,0 +24456,011,382,401,849059457,5300,0 +24457,Raz+na+wozie%2Craz+w+nawozie,578,629,848995242,10495,0 +24458,034,570,637,699828685,9976,0 +24459,Kentin+ufam+Tobie,356,449,699783765,7380,0 +24460,A030,589,378,699485250,10168,0 +24461,kathare,554,641,873575,9831,0 +24462,037,450,641,849084985,10216,0 +24463,013...CENTR,460,351,6920960,10481,0 +24465,-033-,378,590,699097885,7132,0 +24466,Mniejsze+z%C5%82o+0044,344,497,699794765,6483,0 +24467,Piek%C5%82o+to+inni,580,368,848956765,8996,0 +24469,0008,476,651,6180190,10637,0 +24470,Quzynafide,408,625,848913998,5929,0 +24471,MojeSzczytToTw%C3%B3jDno,506,345,828637,10495,0 +24472,Kentin+ufam+Tobie,350,475,699783765,10000,0 +24473,Jestem+Poza+Kontrol%C4%85,349,541,8004076,8376,0 +24474,Flinii,635,421,848883237,8992,0 +24475,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,651,699828442,9817,0 +24476,Wioska+barbarzy%C5%84ska,347,468,6258092,9191,0 +24477,013%7C%7C+Cepheus,490,653,849035525,10019,0 +24478,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,653,698807570,10252,0 +24479,Mockingbird,374,592,849095992,10495,0 +24480,026,655,508,849006412,9147,0 +24482,MojeDnoToWaszSzczyt,575,363,699697558,10019,0 +24483,Carsultyal.,485,555,698704189,9711,0 +24484,jaaa,641,571,698635863,10636,0 +24485,B.051,657,506,9188016,5788,0 +24486,Kentin+ufam+Tobie,350,472,699783765,10064,0 +24487,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,654,699828442,9805,0 +24488,Ambroambro,614,603,699778867,12154,0 +24489,Ulu-mulu,412,622,699697558,4445,0 +24490,017.,401,623,2665207,9835,0 +24491,North+Barba+001,421,365,699796330,9887,0 +24492,088...bar,453,351,6920960,10459,0 +24493,Wioska+barbarzy%C5%84ska,491,347,699244334,2929,0 +24494,Avanti%21,349,506,698625834,9809,0 +24495,Taki+Pan,507,344,698739350,7282,0 +24496,a+mo%C5%BCe+off+%3F+%3A%29,627,584,698768565,9563,0 +24497,ave+why%21,436,636,698143931,7096,0 +24498,Lord+Lord+Franek+.%23023,526,347,698420691,9962,0 +24499,%7E%7E055%7E%7E,605,614,7829201,9505,0 +24500,0057,420,372,848913037,9993,0 +24501,Myk+i+do+kieszonki,357,567,9319058,9799,0 +24502,BUNKIER+001,635,428,7588382,11215,0 +24503,Wioska+barbarzy%C5%84ska,614,394,698241117,3706,0 +24504,A004,586,373,699485250,10168,0 +24505,EMERYTOWANY+KUZYN,424,634,848913998,5133,0 +24506,Magik69+2,609,605,699778867,10373,0 +24507,kathare,549,644,873575,9664,0 +24508,079+barbarzy%C5%84ska,640,428,9238175,8029,0 +24509,Wioska+Bochun10,348,483,7449254,10495,0 +24510,psycha+sitting,448,643,699736927,10311,0 +24511,%C5%BBUBRAWKA+A002,603,615,33900,10272,0 +24512,-+230+-+RR,591,621,849018239,10000,0 +24513,Owp+Konfederacja,601,382,848915730,6936,0 +24514,8AA,358,437,7765098,10178,0 +24515,B.052,654,517,9188016,10000,0 +24516,R%C4%99cznik+do+zmiany,370,416,699697558,9743,0 +24517,12.+Wioska+12,362,564,849091769,6898,0 +24518,kathare,554,645,873575,9913,0 +24519,Mehehehe,518,651,699494488,10487,0 +24520,CSA,512,347,7651093,9237,0 +24521,003,524,345,699072129,10495,0 +24522,Avanti%21,346,502,698625834,9950,0 +24524,%2AINTERTWINED%2A,515,650,698704189,9711,0 +24525,x002,362,572,9264752,10495,9 +24526,a+mo%C5%BCe+off+%3F+%3A%29,641,553,698768565,9720,0 +24527,022,490,349,698739350,10237,0 +24528,Macarnia,432,634,849089459,9654,0 +24529,Wiocha+5,427,360,849096544,10595,0 +24530,STOP+ZWIAD+-+GET+OFF,496,658,698585370,6100,0 +24531,Avanti%21,345,503,698625834,9950,0 +24532,Yogi,491,530,2808172,9967,0 +24533,Wioska+barbarzy%C5%84ska,352,456,6258092,8594,0 +24534,The+Game+Has+Only+Just+Begun,348,522,9280477,9976,0 +24535,047.,481,655,849034882,10495,0 +24536,0143,530,651,698659980,10019,0 +24537,070...barbarka+centr,457,351,6920960,10226,0 +24538,Lord+Lord+Franek+.%23047,534,352,698420691,9976,0 +24539,Pobozowisko,384,602,699513260,7296,0 +24540,053+Sligo,625,587,699272880,8612,0 +24541,013.,647,468,849094609,10067,0 +24542,Wioska+barbarzy%C5%84ska,648,452,699524891,9726,0 +24543,002.+Dla+flag,354,438,698630507,9888,0 +24544,D%C4%85browa+0016,377,590,849096972,7942,0 +24545,PZ038,656,522,8096537,9744,0 +24546,Wioska+barbarzy%C5%84ska+023,499,348,6343784,9594,0 +24547,020Ferdek,390,611,698620694,9716,0 +24548,Jaaa,628,588,698635863,10261,0 +24549,Wioska+barbarzy%C5%84ska,497,345,699244334,2715,0 +24550,072,646,539,699351301,10160,0 +24551,The+Game+Has+Only+Just+Begun,348,532,9280477,10117,0 +24552,Oww+Konfederacja,607,390,848915730,9938,0 +24553,014.,488,653,849034882,10636,0 +24554,Wioska+barbarzy%C5%84ska,354,455,6258092,9474,0 +24555,Piek%C5%82o+to+inni,569,360,848956765,10160,0 +24556,002,615,545,8428196,9894,0 +24557,005.+Tak+tak,502,652,8954402,10495,0 +24558,Wioska+barbarzy%C5%84ska,434,357,699308637,9130,0 +24559,majonespzn,606,611,6417987,10478,0 +24560,Wioska+Bochun10,346,479,7449254,10311,4 +24561,%23.10+Wioska+barbarzy%C5%84ska,650,473,849054582,10019,0 +24562,Kanada,372,421,1746216,2674,0 +24563,062+xyz,638,431,9238175,10375,0 +24564,017,379,399,849059457,2280,0 +24565,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,656,699828442,9806,0 +24566,kathare,553,642,873575,10216,0 +24567,BoOmBaa..tam,434,358,6169408,10495,0 +24568,C002..,368,582,849090130,10147,0 +24569,K06,369,579,849090130,2375,0 +24570,ave+why%21,448,642,698143931,10237,0 +24571,LadyAnimavillis,599,615,699703642,9761,0 +24572,033,641,561,849095227,9735,0 +24573,010+Wiatr,656,484,2135129,9500,0 +24574,Jednak+wol%C4%99+gofry,441,641,699736927,6874,0 +24575,BEZDZIETNY+KAWALER,420,628,848913998,5119,0 +24576,Dajanka+17,357,551,849012843,4746,0 +24577,%23.14+Wioska+barbarzy%C5%84ska,656,481,849054582,10019,0 +24578,Wioska+Kaffiks+XIII,631,585,6136757,5833,0 +24579,Wioska+barbarzy%C5%84ska,475,345,699433558,4516,0 +24580,C003,520,351,699208929,9970,0 +24581,003+Krotu,656,490,2135129,9553,0 +24582,15.+%C5%81o+Ci%C4%99+Krynca,512,654,849092769,10019,0 +24583,043,648,551,698999105,10311,0 +24584,016,486,347,698739350,10273,0 +24585,A006,613,457,699722599,10495,0 +24586,014+M,654,526,699351301,10971,9 +24587,Jednak+wol%C4%99+gofry,438,642,699736927,9323,0 +24588,K34+x001,446,383,698364331,10495,0 +24589,Chekku+-+meito,345,527,9280477,10319,0 +24590,North+1,420,365,699796330,10306,0 +24591,0274,544,650,698659980,10083,0 +24592,027,652,505,849006412,6322,0 +24593,Nowa+28,639,568,698702991,9398,0 +24595,001.+Dla+Flag,354,439,698630507,10027,0 +24596,c+Strzelce+Opolskie,395,386,3909522,8165,0 +24597,aaaaaaaaa,451,357,699191464,10495,0 +24598,048-+Mroczna+Osada,628,410,849035905,3586,0 +24599,Kentin+ufam+Tobie,354,453,699783765,10495,0 +24600,A0198,342,490,8841266,10362,0 +24601,Sony+911,586,630,1415009,10268,0 +24602,%5B05%5D+Huelva,354,457,6258092,9263,0 +24603,jaaa,634,570,698635863,10484,0 +24604,%5B0022%5D+Rafalek,426,409,8630972,10495,0 +24605,Jednak+wol%C4%99+gofry,436,639,699736927,10068,3 +24606,Dajanka+15,351,553,849012843,5499,0 +24607,A0072,347,486,8841266,10362,0 +24608,Wioska+barbarzy%C5%84ska,532,353,1990750,10068,0 +24609,03.+Reina+R,482,656,849100262,10336,0 +24610,kathare,547,642,873575,10164,0 +24611,c+Patole,397,384,3909522,8301,0 +24612,I%23009,599,383,2065730,9797,0 +24613,068,655,523,699351301,9147,0 +24614,810,651,542,7038651,9117,0 +24615,The+Game+Has+Only+Just+Begun,347,524,9280477,9976,0 +24616,Wioska+barbarzy%C5%84ska,598,616,699796630,2424,0 +24617,psycha+sitting,459,651,699736927,10311,0 +24618,W+08,647,458,699524891,9752,0 +24619,024+-+Terrassa,644,440,698342159,10019,0 +24620,Twierdza+8,653,464,848935020,5106,0 +24621,Darma+dla+zawodnika,511,656,699494488,10481,0 +24622,A005,404,626,848912772,9835,0 +24623,EMERYTOWANY+KUZYN,429,639,848913998,8393,0 +24624,Lord+Lord+Franek+.%23217,508,347,698420691,8834,0 +24625,017.,486,653,849034882,10728,0 +24626,W+03,646,455,699524891,9608,0 +24627,Parking,372,584,8607734,10019,0 +24628,0061,626,410,699429153,9825,0 +24629,B.018,657,505,9188016,10000,0 +24630,005,651,526,699351301,11321,0 +24631,Lord+Lord+Franek+.%23024,524,347,698420691,9960,0 +24632,054+Gwalijar,623,588,699272880,9080,0 +24633,historia+blisko+2,616,601,699778867,11824,0 +24635,Pobozowisko,384,599,699513260,9218,0 +24636,Jaaa,625,595,698635863,10559,0 +24637,A001,588,373,699485250,10211,0 +24638,2.3,391,390,8419570,10168,0 +24639,cc+089d,411,375,3909522,4118,0 +24640,Pobozowisko,384,606,699513260,5136,0 +24641,C006,599,384,699761749,9642,0 +24642,004+MONETKI,657,487,7588382,8968,0 +24643,Kentin+ufam+Tobie,348,472,699783765,10002,0 +24644,.%3A107%3A.+Niangmen,505,396,848934935,9899,0 +24646,aaaaaaaaa,450,354,699191464,10495,0 +24647,Bagienko.Anker..,380,403,699713515,8620,0 +24648,Jan+dzik+V+K,636,432,879782,9631,0 +24649,000,390,610,699513260,10971,9 +24650,%230049,551,646,1536231,8650,0 +24651,0544,517,659,698659980,10019,0 +24652,Oksywie,390,389,8419570,8860,0 +24653,008,654,530,699351301,9659,0 +24654,015,565,636,699828685,9976,0 +24655,007.Oko,344,511,1830149,9797,0 +24656,068+Wioska+barbarzy%C5%84ska,541,349,699491076,10001,0 +24657,0003,418,365,848913037,9993,3 +24658,K33+x001,396,387,698364331,4423,0 +24659,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,654,699828442,10178,0 +24660,S_009,509,652,849100262,11314,0 +24661,Taki+Pan,511,343,698739350,8061,0 +24662,Nowa+26,641,570,698702991,9753,0 +24663,093.+P%C3%B3%C5%82nocna+Granica,636,419,8337151,7721,0 +24664,039%7C%7C+Ophiuchus,480,651,849035525,10019,0 +24665,Wioska+Atillaa,350,539,2819255,4007,0 +24666,off+100+%25,361,572,849012521,5420,0 +24667,Piek%C5%82o+to+inni,568,358,848956765,10160,0 +24668,077+cybil,641,428,9238175,10355,0 +24669,I%23033,596,377,2065730,7177,0 +24671,022+-+Oviedo,641,441,698342159,10019,0 +24672,K34+-+%5B131%5D+Before+Land,433,357,699088769,9924,0 +24673,Jednak+wol%C4%99+gofry,425,638,699736927,9899,0 +24674,jaaa,632,582,698635863,10495,0 +24675,002,379,407,848945529,6978,0 +24676,0141,579,631,698659980,10083,0 +24677,005+Szcz%C4%99%C5%9Bciarz,432,641,849006145,10436,0 +24678,002.,400,622,2665207,9835,0 +24679,Kentin+ufam+Tobie,355,454,699783765,10000,0 +24680,012,653,531,699351301,9100,0 +24681,BAC%C3%93WKA+%7C004%7C,629,415,7394371,12154,0 +24682,Jehu_Kingdom_50,642,436,8785314,6135,0 +24683,Kentin+ufam+Tobie,347,473,699783765,10000,0 +24684,Wioska+barbarzy%C5%84ska+Lo,381,399,8967440,3515,0 +24685,The+Game+Has+Only+Just+Begun,347,517,9280477,9976,0 +24686,Jestem+Poza+Kontrol%C4%85,349,540,8004076,9026,0 +24687,Jestem+Poza+Kontrol%C4%85,360,545,8004076,9880,0 +24688,005.,483,652,849034882,10838,0 +24689,021+-+Mroczna+Osada,633,411,849035905,11550,0 +24691,136+DaSilva2402,520,349,699491076,10001,0 +24692,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,383,598,849097937,8147,0 +24693,M004,654,507,848899726,6080,0 +24694,North+Barba+021,424,368,699796330,9977,0 +24695,Piek%C5%82o+to+inni,513,472,848956765,8991,0 +24696,Alicization+4,460,647,699849210,9717,0 +24697,s181eo15,389,449,393668,9883,0 +24698,DW7,348,448,393668,10311,0 +24699,%2A4622%2A+Stalowy+potw%C3%B3r,644,445,7973893,10287,0 +24700,Wioska+barbarzy%C5%84ska,629,414,699429153,9704,0 +24701,wMirajane,446,646,699849210,4755,0 +24702,aAa+Szlaban+1,608,608,699778867,12154,0 +24703,Wioska+barbarzy%C5%84ska,485,343,698739350,9505,0 +24704,KUZYN+FARMACEUTA,426,638,848913998,7652,0 +24705,015,462,651,698650301,9965,0 +24706,034+033,548,351,699491076,10001,0 +24707,0007,418,367,848913037,9993,0 +24709,BAC%C3%93WKA+%7C015%7C,623,409,7394371,8237,0 +24710,P017+Gigas,655,506,8096537,9393,6 +24711,P016+Heisneberg,657,509,8096537,9747,0 +24712,Wiocha+6,424,362,849096544,10595,0 +24714,Trelis,480,345,849048216,5192,0 +24715,Piek%C5%82o+to+inni,577,370,848956765,9809,0 +24716,%5B142%5D,636,568,8000875,9886,0 +24717,BUNKIER+003,640,433,7588382,6499,0 +24718,A0199,343,491,8841266,10362,0 +24719,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,652,698585370,9643,0 +24720,aaaaaaa,439,356,699191449,10495,0 +24721,0021,414,371,848913037,9993,0 +24722,SSJ+066,514,652,699054373,9761,0 +24723,Westcoast.079,386,436,848918380,10178,0 +24724,BEZDZIETNY+KAWALER,410,630,848913998,5452,0 +24725,%230025+barbarzy%C5%84ska,467,346,1238300,10178,0 +24726,psycha+sitting,452,649,699736927,9605,0 +24727,%7CA%7C+Ironminster,480,653,698147372,10495,0 +24728,Taki+Pan,507,342,698739350,7206,0 +24729,%23001+Altdorf,375,590,8607734,9922,0 +24730,Nowa+30,636,566,698702991,9835,0 +24731,Pobozowisko,391,611,699513260,10963,0 +24732,065,623,599,698786826,7569,0 +24733,MELISKA,352,462,699794765,9398,1 +24734,Podzi%C4%99kowa%C5%82+6,417,374,699796330,10495,0 +24735,Pobozowisko,387,608,699513260,10951,0 +24736,Avanti%21,346,513,698625834,9950,0 +24737,052,639,573,698999105,9687,0 +24738,035+036,547,351,699491076,10001,0 +24739,MojeDnoToWaszSzczyt,559,353,699697558,10160,0 +24740,061,629,588,698999105,9118,0 +24741,Wioska+barbarzy%C5%84ska,607,386,699351046,3439,0 +24742,008,398,382,849027025,7818,0 +24743,P010+Banuta,657,513,8096537,9747,0 +24744,Lord+Lord+Franek+.%23139,514,349,698420691,10160,0 +24745,Piek%C5%82o+to+inni,579,368,848956765,10495,8 +24746,A0233,344,484,8841266,10362,0 +24747,Wioska+barbarzy%C5%84ska,530,350,1990750,10068,0 +24748,Piek%C5%82o+to+inni,576,369,848956765,9806,0 +24749,026+VW+GajdaDawid,369,422,3108144,8639,0 +24750,%23.33+Wioska+barbarzy%C5%84ska,657,482,849054582,4559,0 +24751,056,638,574,849095227,9724,0 +24753,M181_021,360,427,393668,9655,0 +24754,Wioska+barbarzy%C5%84ska,542,652,7756002,9935,0 +24755,015,483,345,698739350,10237,0 +24756,017+nie+ma+spania+na+wyjazdach,447,648,699238479,9835,0 +24757,Kentin+ufam+Tobie,346,474,699783765,10000,0 +24758,Kentin+ufam+Tobie,348,476,699783765,10000,0 +24759,Jaaa,626,592,698635863,10266,0 +24760,Avanti%21,343,505,698625834,9950,0 +24761,MojeDnoToWaszSzczyt,558,357,699697558,10160,0 +24762,Gattacka,611,390,699298370,10470,0 +24763,A0061,344,492,8841266,10362,1 +24764,RTS+14,586,628,699567608,9592,0 +24765,%2ALipa,575,635,699443920,9761,0 +24766,14k%24+Grvvyq,637,552,699676005,10495,0 +24767,0056,621,408,699429153,9825,0 +24768,%2ALastmoon,574,639,699443920,9761,0 +24769,050.+Geneva,650,466,849091866,9366,0 +24770,068,646,556,849095227,9745,0 +24771,Taki+Pan,500,344,698739350,5777,0 +24772,Lord+Lord+Franek+.%23025,522,347,698420691,9955,0 +24773,Lord+Lord+Franek+.%23048,517,343,698420691,9960,0 +24774,0005,404,377,699402816,9899,0 +24775,kathare,555,645,873575,9830,0 +24776,MojeDnoToWaszSzczyt,570,364,699697558,10019,0 +24777,Groovyq+P,606,613,8815749,10019,0 +24778,BEZDZIETNY+KAWALER,412,625,848913998,3436,0 +24779,039,482,349,698739350,10104,0 +24780,psycha+sitting,460,643,699736927,10311,0 +24781,I%23022,598,379,2065730,9797,0 +24782,SSJ+065,517,654,699054373,9761,0 +24784,jaaa,641,557,698635863,10495,0 +24785,BEZDZIETNY+KAWALER,415,626,848913998,4727,0 +24786,Wioska+Bochun10,344,506,7449254,10544,0 +24787,%230011+barbarzy%C5%84ska,465,351,1238300,10178,0 +24788,Piek%C5%82o+to+inni,568,360,848956765,10019,0 +24789,Ulu-mulu,423,603,699697558,7525,0 +24790,016,427,638,849089459,9835,0 +24791,off+100+%25,359,570,849012521,10291,0 +24792,0484,538,651,698659980,10160,0 +24793,022+Legio+I+Maximiana,652,483,699878150,5405,0 +24794,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,497,654,698585370,9486,0 +24795,Ave+Why%21,465,652,698585370,10019,0 +24796,Kozaki+4,615,607,699778867,11550,0 +24797,%23.26+Wioska+barbarzy%C5%84ska,653,473,849054582,5028,0 +24798,009+Karta+Nie+Idzie,550,350,699491076,10001,0 +24799,BEZDZIETNY+KAWALER,416,632,848913998,4993,0 +24800,K34+-+%5B095%5D+Before+Land,442,353,699088769,9847,0 +24801,Pobozowisko,389,605,699513260,4469,0 +24802,xyz+%23010+TerrorMachine,580,363,7555180,9378,0 +24803,002+Wioska+gazela,630,466,699671454,8010,0 +24804,K34+-+%5B051%5D+Before+Land,444,358,699088769,10016,0 +24805,Lord+Lord+Franek+.%23003,534,350,698420691,10226,0 +24806,018+MONETKI,652,490,7588382,9296,0 +24807,-+246+-+RR,596,620,849018239,10000,0 +24808,RON,652,537,698768565,8105,0 +24809,Wioska+barbarzy%C5%84ska,404,463,699523631,10354,0 +24810,037,479,347,698739350,10237,0 +24811,ave+why%21,451,626,698143931,10202,0 +24812,Wiocha+3,426,361,849096544,10426,0 +24813,%2A%2AAhtala,575,625,699443920,9761,0 +24814,005.Dla+flag,355,440,698630507,8765,0 +24815,Szlachcic,405,374,698160606,10559,0 +24816,Myk+i+do+kieszonki,362,568,9319058,9799,5 +24817,jaaa,642,567,698635863,10220,0 +24818,So%C5%82tys+Twojej+Wsi,400,383,849027025,9789,0 +24819,036+035,541,354,699491076,10001,0 +24820,036+Galust2,654,499,2135129,9500,0 +24821,BEZDZIETNY+KAWALER,414,633,848913998,8640,0 +24822,A0067,344,493,8841266,10362,0 +24823,060,630,587,698999105,9831,0 +24824,jaaa,634,577,698635863,10484,0 +24825,Lord+Lord+Franek+.%23009,525,346,698420691,10232,3 +24826,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,655,698585370,9486,0 +24827,Brat447,367,507,699262350,10134,0 +24828,018,486,348,698739350,10237,0 +24829,800,650,542,7038651,10495,0 +24830,llllllll,624,403,699429153,9889,0 +24831,M006,655,507,848899726,5662,0 +24832,014,383,396,849059457,3898,0 +24833,Lord+Lord+Franek+.%23004,535,346,698420691,10426,0 +24834,BoOmBaa..,435,357,6169408,10495,0 +24835,033,612,394,699298370,3784,0 +24836,Szatana,392,384,606706,8198,0 +24837,0466,379,597,699513260,4180,0 +24838,Wiocha+2,427,363,849096544,10887,0 +24839,015.,486,656,849034882,10495,0 +24840,off+100+%25,355,563,849012521,10253,0 +24841,Jamapet,633,425,699735020,9747,0 +24842,Wioska+barbarzy%C5%84ska,352,449,6258092,9182,0 +24843,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,657,699828442,9825,0 +24844,PDWB,651,450,9314079,9891,0 +24845,102,442,640,849084985,8893,0 +24846,I%23038,594,376,2065730,10160,0 +24847,Jestem+Poza+Kontrol%C4%85,347,542,8004076,8533,0 +24848,%230012+barbarzy%C5%84ska,465,350,1238300,10178,0 +24849,Z+005,487,342,6384450,9835,0 +24850,I%23001,599,380,2065730,9797,0 +24851,I%23005,600,380,2065730,9797,0 +24852,Lord+Lord+Franek+.%23049,531,351,698420691,9960,0 +24853,Taki+Pan,499,344,698739350,5941,0 +24854,006.,401,624,2665207,9835,0 +24855,c+Wioska+pp,399,383,3909522,6280,0 +24856,Wioska+Bochun10,345,480,7449254,10311,0 +24857,xxOsada+koczownik%C3%B3w,530,351,1990750,10068,8 +24858,-+223+-+RR,592,622,849018239,8085,0 +24859,41.+KaruTown,616,400,699298370,7658,0 +24860,Wioska+barbarzy%C5%84ska,382,403,848886056,3172,0 +24861,Hama,432,635,849089459,8002,0 +24862,Wioska+barbarzy%C5%84ska,551,357,699072129,10237,0 +24863,Osada+koczownik%C3%B3w,384,402,848886056,5586,2 +24864,PZ034,658,508,8096537,9750,0 +24865,Quzynafide,406,628,848913998,2775,0 +24867,R%C4%99cznik+do+zmiany,373,412,699697558,9489,0 +24868,001...CENTR_Czeczen,461,354,6920960,10495,0 +24869,Ave+Why%21,480,657,698585370,9493,0 +24870,Dyy,574,361,699485250,5643,0 +24871,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,651,699828442,9808,0 +24872,D+006,651,498,8078914,10034,0 +24873,022,641,522,699413040,9860,0 +24874,103,350,463,6258092,10019,0 +24875,A-030,385,398,8419570,10168,0 +24876,%5B162%5D,637,567,8000875,7736,0 +24877,Wioska+%28028%29,634,422,698232227,9778,0 +24878,A0227,345,495,8841266,10362,0 +24879,042.+Trapezus,637,431,849091866,10054,0 +24880,Wioska+barbarzy%C5%84ska,651,455,699524891,9036,0 +24881,Sony+911,586,633,1415009,10220,0 +24882,Wioska+barbarzy%C5%84ska,349,452,6258092,7704,0 +24883,012,568,639,699828685,9976,0 +24884,R%C4%99cznik+do+zmiany,374,411,699697558,10160,0 +24885,sony911,587,632,1415009,10287,0 +24886,005Kra%C5%84c%C3%B3wki,391,612,698620694,9825,1 +24887,Z+moralami+nie+wygrasz,504,341,849096594,1562,0 +24888,MotoMyszy+%3F,613,398,849094147,7556,0 +24889,MojeDnoToWaszSzczyt,562,359,699697558,10160,0 +24890,%230050,551,649,1536231,9097,0 +24891,002.AJaTamNieWiem,343,510,1830149,9818,0 +24892,Happy+New+Year+2k23,595,374,7462660,7925,0 +24893,004.+Crystal+Palace,498,657,848953066,9632,0 +24894,056,604,384,849010255,5619,0 +24895,A0056,347,496,8841266,10362,4 +24896,050KZ,484,339,849063849,7295,0 +24897,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,652,698807570,10252,0 +24898,BoOmBaa..,431,360,6169408,10495,0 +24899,063+tete,635,422,9238175,9870,0 +24900,Wioska+barbarzy%C5%84ska,648,461,699524891,9226,0 +24901,Oww+Konfederacja,610,389,848915730,9924,0 +24902,Szlachcic,502,476,699098531,10303,0 +24903,R%C4%99cznik+do+zmiany,371,412,699697558,9568,0 +24904,Wioska+barbarzy%C5%84ska,628,408,699429153,9825,0 +24905,A001,405,619,848912772,9835,0 +24906,020,637,584,6160655,9072,0 +24907,Ave+why+%21,391,615,698620694,9305,0 +24908,Zakr%C4%99t+6,410,375,699402816,9835,0 +24909,Bizy+7,500,653,8954402,8818,0 +24911,B.005,652,509,9188016,10000,0 +24912,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,654,699828442,9806,0 +24913,K34+-+%5B106%5D+Before+Land,450,353,699088769,10259,0 +24914,Ave+Why%21,485,661,698585370,9630,0 +24915,0485,541,652,698659980,10252,0 +24916,9AA,357,439,7765098,8665,0 +24917,027+-+Pamplona,641,444,698342159,9709,0 +24918,051,444,641,849084985,8865,0 +24919,Szlachcic%2FTaran,620,396,699759128,10237,0 +24920,30k%24+Grvvyq,647,561,699676005,10495,0 +24921,K01..,366,579,849090130,10495,0 +24922,0059,419,370,848913037,9993,0 +24923,004.Ciabas,342,511,1830149,9797,0 +24924,Wioska+barbarzy%C5%84ska,454,640,699736927,5347,0 +24925,Ulu-mulu,409,623,699697558,7858,0 +24926,014+MONETKI,653,495,7588382,8634,0 +24927,106,442,641,849084985,4459,0 +24928,I%23023,596,374,2065730,8544,0 +24929,B01,648,445,849093742,10019,0 +24930,STOLYCA,649,532,699351301,11109,0 +24931,610,647,547,7038651,8606,0 +24932,Wioska+barbarzy%C5%84ska,494,343,698739350,8580,0 +24933,Sony+911,591,627,1415009,10284,0 +24934,0243,538,647,698659980,10083,0 +24935,Sparta_57,488,577,2585846,9638,0 +24936,K33+x003,390,386,698364331,2875,0 +24937,36.+KaruTown,635,416,849060446,6960,0 +24938,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,657,699828442,9808,0 +24939,The+Game+Has+Only+Just+Begun,357,522,9280477,9976,0 +24940,zzzGranica+Bledu+09,607,614,699778867,9310,0 +24941,-+048+-+RR,594,623,849018239,10000,0 +24942,017%29,541,346,849097103,4799,0 +24943,Zeta+Reticuli+S2,392,406,699323302,10997,0 +24944,MojeDnoToWaszSzczyt,567,363,699697558,10495,0 +24945,A+001,603,393,6384450,10362,0 +24946,BEZDZIETNY+KAWALER,416,634,848913998,9807,0 +24947,Wioska+barbarzy%C5%84ska,344,469,6258092,10083,0 +24948,Orze%C5%82+Wyl%C4%85dowa%C5%82,466,653,698807570,10252,0 +24949,Wioska+Bochun10,344,509,7449254,7616,0 +24950,068...felus,456,353,6920960,10220,0 +24951,2.7,397,382,698364331,2906,0 +24952,XXXX,503,364,699883079,10197,0 +24953,R%C4%99cznik+do+zmiany,372,407,699697558,8776,0 +24954,BoOmBaa..,432,362,6169408,6807,0 +24955,Pobozowisko,384,608,699513260,10957,0 +24956,022,424,637,849089459,10236,2 +24957,Szlachcic,347,460,6258092,8547,0 +24958,0486,519,651,698659980,10019,0 +24959,Kumpel,348,519,699604515,8492,0 +24960,A0242,343,485,8841266,10362,0 +24961,BAC%C3%93WKA+%7C014%7C,627,407,7394371,10795,0 +24962,043,548,647,698659980,10015,0 +24963,Nowa+35,637,578,698702991,9824,0 +24964,Osada+001,399,614,848912772,10178,0 +24965,BoOmBaa..,436,361,6169408,10237,0 +24966,cc+092d,410,376,3909522,8154,0 +24967,cc+pol008,400,376,3909522,5528,0 +24968,A0052,347,491,8841266,10362,0 +24969,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,382,604,849097937,9775,0 +24970,Wioska+barbarzy%C5%84ska,551,355,699072129,10226,0 +24971,Lord+Lord+Franek+.%23218,501,346,698420691,8669,0 +24972,0240,545,647,698659980,10083,0 +24973,-+231+-+RR,596,622,849018239,9535,0 +24975,7AA,358,435,7765098,10060,0 +24976,055,651,525,698999105,9419,0 +24977,A0117,348,497,8841266,10362,0 +24979,Kentin+ufam+Tobie,349,476,699783765,10000,0 +24980,ave+why%21,448,641,698143931,10311,0 +24981,Sony+911,582,632,1415009,10206,0 +24982,Potworna,540,350,570100,8053,0 +24983,Szlachcic,349,470,6258092,10019,0 +24984,037,654,529,699351301,4501,0 +24985,Jan+010+The+White+Rabbit+K,654,468,879782,9404,1 +24986,050.+Anora,638,424,8337151,10559,0 +24987,Szlachcic,407,374,698160606,10479,0 +24988,%230034,551,647,1536231,10495,0 +24989,Cannabinol,364,580,848980237,8776,0 +24990,030,653,529,699351301,4055,0 +24991,004,523,342,699072129,10495,0 +24992,Granica,370,574,8607734,10019,0 +24993,%3F003+buRoczki+LC+%3A%29,539,654,699828685,9976,0 +24994,Jehu_Kingdom_39_,644,433,8785314,9993,0 +24995,off+100+%25,357,562,849012521,10297,0 +24996,So%C5%82tys+Wsi+danio007xd,428,386,849027025,10001,0 +24997,Taki+Pan,503,342,698739350,7673,0 +24999,Maszlug+kolonia+XI,367,423,848977649,7560,0 +25000,Jestem+Poza+Kontrol%C4%85,353,549,8004076,9880,0 +25001,049,646,554,849095227,9159,0 +25002,041+OZDR,465,622,699336777,9966,0 +25003,North+Barba+002,420,364,699796330,9885,0 +25004,%23.25+Wioska+barbarzy%C5%84ska,654,474,849054582,6667,0 +25005,Wioska+barbarzy%C5%84ska,439,360,699393759,9654,0 +25006,Tomall78,634,425,699524891,10159,0 +25007,005.Kambod%C5%BCa,344,510,1830149,9824,0 +25008,A0234,341,489,8841266,10362,0 +25009,-+060+-+RR,591,622,849018239,10000,0 +25010,Ave+Why%21,473,651,698585370,10083,0 +25011,19+Angmar,453,652,699849210,4726,2 +25012,Skazany+Na+Instynkt,365,580,8004076,9196,0 +25013,000002,557,647,873575,10495,4 +25014,Jehu_Kingdom_56,635,479,8785314,4146,0 +25015,Lord+Lord+Franek+.%23026,532,351,698420691,9962,0 +25016,Klaudek9,593,374,849092309,6361,0 +25017,19.+%23%23%23,504,653,849092769,12021,0 +25018,A040,591,374,699485250,8537,0 +25019,R%C4%99cznik+do+zmiany,372,406,699697558,10019,0 +25020,A006,584,372,699485250,10168,0 +25021,018.,487,658,849034882,10838,0 +25022,BAC%C3%93WKA+%7C019%7C,633,414,7394371,8246,0 +25023,Dzikie+wsparcie,465,648,848935389,9809,0 +25024,cc+090d,411,376,3909522,6188,0 +25025,kathare,553,649,873575,8085,0 +25026,Szlachcic%2FTaran,619,399,699759128,10237,0 +25027,040+Knykie%C4%87+Dyl,569,637,699828685,9976,0 +25028,075+hallo,639,426,9238175,10359,0 +25029,Osada,505,448,699098531,9637,0 +25030,I%23006,602,379,2065730,9797,0 +25031,Mniejsze+z%C5%82o+0003,379,479,699794765,10050,0 +25032,Avanti%21,341,502,698625834,9950,0 +25033,Wioska+Bochun10,346,481,7449254,10311,1 +25034,Myk+i+do+kieszonki,363,581,9319058,9799,0 +25035,MojeDnoToWaszSzczyt,558,352,699697558,10160,0 +25036,007+Galust1,654,498,2135129,9756,0 +25037,Wioska+barbarzy%C5%84ska,555,352,699072129,10217,0 +25038,Kentin+ufam+Tobie,347,475,699783765,10000,6 +25039,I%23035,605,390,2065730,9797,0 +25040,WWWioska+Daniels88,619,597,699778867,12154,0 +25041,C008,600,385,699761749,9914,0 +25042,Wioska+005,392,616,848912772,6801,0 +25043,A03+Mendoza,643,497,699272880,10242,0 +25044,Chekku+-+meito,342,519,9280477,9976,0 +25045,Przysta%C5%84+9,405,381,699402816,9835,0 +25046,Ave+Why%21,474,651,698585370,9645,0 +25047,0285,545,652,698659980,10081,0 +25048,Szlachcic,421,370,698388578,10237,0 +25049,052%7C%7C+Piscis+Austrinus,476,652,849035525,9504,0 +25050,BoOmBaa..,437,360,6169408,9851,0 +25052,B07,491,652,698652014,9971,0 +25053,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,384,609,849097937,8051,0 +25054,D+017,658,502,8078914,9889,0 +25055,014%7C%7C+Cassiopeia,494,652,849035525,9040,0 +25056,JaamwG+P,645,546,8815749,10019,0 +25057,Wioska+Bochun10,348,478,7449254,10495,0 +25058,420,649,539,7038651,7414,0 +25059,041,490,348,698739350,9742,0 +25061,042,621,405,9148043,9741,0 +25062,Twierdza+7,653,463,848935020,9570,0 +25063,Bizy+4,501,657,8954402,6838,0 +25064,Wioska+barbarzy%C5%84ska,502,344,699433558,8126,0 +25065,z+034,573,641,699342219,10220,0 +25066,B.065,656,507,9188016,10000,0 +25067,C003..,366,581,849090130,10495,0 +25069,Pobozowisko,401,617,699513260,10963,0 +25070,K34+-+%5B105%5D+Before+Land,441,356,699088769,10259,0 +25071,R%C4%99cznik+do+zmiany,372,411,699697558,10160,0 +25072,019...CENTR+P%C3%93%C5%81_A,464,347,6920960,10495,0 +25073,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,657,699828442,9806,0 +25074,A027,587,368,699485250,9537,0 +25075,I%23031,597,376,2065730,9797,0 +25076,0003,613,611,6417987,6819,0 +25077,002+Missisipi,477,655,699238479,9889,0 +25078,AA14,357,441,699783765,9792,0 +25079,070+Nakano,656,480,7092442,9637,0 +25080,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,650,699828442,9899,0 +25081,Dolina+Krzemu,625,401,699429153,9966,0 +25082,yyyy,492,341,699883079,10350,0 +25083,008+miliony+monet,567,643,699828685,9976,0 +25085,002%29Pieszyce,544,348,849097103,8209,0 +25086,I%23014,600,376,2065730,9797,0 +25087,Sony+911,589,632,1415009,10223,0 +25088,003.+Dla+flag,354,440,698630507,8422,0 +25089,Wioska+Bochun10,343,482,7449254,10099,0 +25091,A-036,386,388,8419570,10242,0 +25092,006+%7C+PALESTINA,645,441,9228039,9544,0 +25093,The+Game+Has+Only+Just+Begun,346,529,9280477,8999,0 +25095,OKO+ZA+OKO+ZAB+ZA+ZAB,448,353,699191464,10495,0 +25096,I%23018,597,377,2065730,6833,0 +25097,Ambrela+032,578,364,698823542,5441,0 +25098,BoOmBaa..,433,362,6169408,10481,0 +25099,Wioska+barbarzy%C5%84ska,363,423,393668,6799,0 +25100,Jednak+wol%C4%99+gofry,436,645,699736927,5394,0 +25101,ave+why%21,443,643,698143931,10223,0 +25102,041,642,558,849095227,9778,0 +25103,Wioska+barbarzy%C5%84ska,555,356,699072129,10023,0 +25104,Lord+Lord+Franek+.%23027,527,345,698420691,9987,0 +25105,110,350,468,6258092,4075,0 +25106,BAC%C3%93WKA+%7C024%7C,632,411,7394371,5425,0 +25107,Wioska+barbarzy%C5%84ska,384,400,698884287,5988,0 +25108,044,654,485,2135129,9553,0 +25109,Zb%C3%B3jnik.,391,384,606706,5444,9 +25110,039,648,555,699316421,7072,0 +25111,Klaudek2,590,371,849092309,7985,0 +25112,xxx,507,443,698239813,10495,0 +25113,MojeDnoToWaszSzczyt,572,366,699697558,10019,0 +25114,Wioska+barbarzy%C5%84ska,537,651,7589468,8825,0 +25115,015%29+Niuniu%C5%9B,536,348,849097103,4208,0 +25116,047.,407,622,699665152,9701,0 +25117,006,646,561,849095963,9488,0 +25118,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,497,653,698585370,9915,0 +25119,Kentin+ufam+Tobie,356,441,699783765,10160,0 +25120,The+Game+Has+Only+Just+Begun,350,532,9280477,9976,0 +25121,Szlachcic,404,373,698160606,10254,0 +25122,Valhalla+7,373,594,849097002,10887,0 +25123,A0068,347,490,8841266,10362,0 +25124,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,653,699828442,9994,0 +25125,The+Game+Has+Only+Just+Begun,350,538,9280477,7526,0 +25126,I%23003,599,381,2065730,9797,0 +25128,Wioska+Bochun10,345,482,7449254,10495,0 +25129,Monetki,475,418,699098531,9878,0 +25130,Cisza+2,348,542,698769107,4276,0 +25131,X001-Czarna+Strefa,360,573,9264752,10495,0 +25132,Norynberg,369,587,8607734,9860,0 +25133,X003,360,570,9264752,10495,0 +25134,Piek%C5%82o+to+inni,565,357,848956765,10160,8 +25135,004Knaki,391,614,698620694,9782,0 +25136,LadyAnimavillis,600,618,699703642,9902,0 +25137,0468,380,604,698659980,9325,0 +25138,Wioska+barbarzy%C5%84ska,554,353,699072129,9814,0 +25139,019+serniczek+z+galaretk%C4%85,503,656,8954402,10252,0 +25140,Denger+21,370,588,698353083,9654,0 +25141,R%C4%99cznik+do+zmiany,373,413,699697558,10160,0 +25142,0565,548,645,698659980,8765,0 +25143,KONFA+TO+MARKA%2C+NARKA,409,470,698152377,10638,0 +25144,016...CENTR,460,350,6920960,10220,0 +25145,Yyyyy,497,344,699883079,10044,0 +25146,B09,647,447,849093742,10019,0 +25147,Wiocha+004,393,610,848912772,10178,0 +25148,025,514,343,699072129,10226,0 +25149,K34+-+%5B028%5D+Before+Land,444,356,699088769,10259,0 +25150,096,619,604,698786826,10495,0 +25151,%23045.520%7C497,639,448,556154,9735,0 +25152,Piek%C5%82o+to+inni,578,363,848956765,10083,0 +25153,Wioska+barbarzy%C5%84ska,598,617,699796630,3758,0 +25154,32.+KaruTown,635,425,849060446,9735,0 +25155,Sony+911,584,632,1415009,10226,0 +25156,B024,655,500,9314079,10051,0 +25157,I%23019,597,374,2065730,6513,0 +25158,-006-,385,603,699097885,9189,0 +25159,Taki+Pan,504,343,698739350,7564,0 +25160,Wioska+barbarzy%C5%84ska,478,347,699433558,4937,0 +25161,042+kryzys,570,638,699828685,9976,0 +25162,Monetkownia,611,607,699759128,10237,0 +25163,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,658,699828442,9809,0 +25164,3AA,356,431,7765098,9450,0 +25165,001,645,560,849095963,10890,0 +25166,Szlachcic,583,490,699759128,10237,0 +25167,064,618,597,698786826,7905,0 +25168,MojeDnoToWaszSzczyt,561,358,699697558,10252,0 +25169,Przysta%C5%84+8,408,374,699402816,9835,0 +25170,028,652,534,699351301,10160,0 +25171,jaaa,637,571,698635863,10487,0 +25172,Lord+Lord+Franek+.%23028,524,344,698420691,9984,0 +25173,Wioska+barbarzy%C5%84ska,558,355,699072129,10444,0 +25174,023,519,344,699072129,10475,0 +25175,%23.08+Osada+koczownik%C3%B3w,651,479,849054582,10019,3 +25176,szping,596,626,848995242,10495,0 +25177,Jaaa,624,596,698635863,10490,0 +25178,W+05,647,455,699524891,9721,9 +25179,51.+Wioska+51,355,546,849091769,7195,0 +25180,jaaa,633,577,698635863,10495,0 +25181,021+MONETKI,659,495,7588382,9887,0 +25182,M181_016,361,429,393668,9886,0 +25183,BAC%C3%93WKA+%7C013%7C,626,409,7394371,9578,0 +25184,aAa+Szlaban+3,609,606,699778867,12154,0 +25185,Samana3,460,653,699736927,5433,0 +25186,037.+Pons+Aelius,651,470,849091866,9419,0 +25187,Jaaa,630,593,698635863,10272,0 +25188,Ave+Why%21,467,656,699121671,9809,0 +25189,EMERYTOWANY+KUZYN,423,636,848913998,9321,0 +25190,wez+otworz+.,577,632,848995242,10411,0 +25191,Jednak+wol%C4%99+gofry,440,643,699736927,4990,0 +25192,%3F007,541,654,699828685,9976,0 +25193,Wioska+Krycek,348,511,849060099,9097,0 +25194,Denger+23,375,589,698353083,10687,0 +25195,%230044,539,624,1536231,10971,0 +25196,.004.,493,378,698489071,10316,0 +25197,Wioska+barbarzy%C5%84ska,551,354,699072129,10237,0 +25198,06.+Lutkowszcza%C5%84scy+tubylcy,376,596,8665783,10287,0 +25199,Jednak+wol%C4%99+gofry,444,643,699736927,9134,0 +25200,Wioska+barbarzy%C5%84ska,648,446,699524891,9288,0 +25201,Roz%C5%82am,626,403,699491076,8367,0 +25202,Wioska+Bochun10,342,509,7449254,10544,0 +25203,Wioska+barbarzy%C5%84ska,489,342,698739350,9758,0 +25204,040,485,375,698739350,9761,0 +25205,SINGED+X+SZEF,495,379,699368887,10178,0 +25206,0488,532,651,698659980,10252,0 +25208,0060,420,370,848913037,9993,0 +25209,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,653,698807570,9458,0 +25210,077+Duko+1,547,355,699491076,10001,0 +25211,BAC%C3%93WKA+%7C006%7C,627,408,7394371,12154,0 +25212,044,546,650,2808172,10019,0 +25213,P006+Roshammul,658,511,8096537,9882,6 +25215,jaaa,632,573,698635863,10495,0 +25216,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,655,699828442,9809,0 +25218,007+big+girls+do+not+cry,565,643,699828685,9976,0 +25220,018...MONETKI,453,347,6920960,10495,0 +25221,037+Galust3,655,496,2135129,9500,0 +25223,R%C4%99cznik+do+zmiany,373,411,699697558,10160,0 +25224,066,654,527,699351301,10382,0 +25225,Konfederacja,461,377,848915730,9333,0 +25226,Wioska+barbarzy%C5%84ska,525,655,699828442,9761,0 +25227,---011,369,586,8607734,9448,0 +25228,009,431,640,849089459,8594,0 +25229,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,655,699828442,9806,0 +25230,Lord+Lord+Franek+.%23008,519,339,698420691,10235,0 +25231,SX001,572,640,8627359,9151,0 +25232,014,484,348,698739350,10237,0 +25233,%5B116%5D,636,574,8000875,10243,0 +25234,Wioska+5,425,641,699736927,5114,0 +25235,-004-,376,593,699097885,9755,0 +25236,131,476,345,7271812,4510,0 +25237,Wioska+Hubs1,620,601,699853308,3290,0 +25238,049.+Heliopolis,653,467,849091866,9377,0 +25239,Bergen+op+Zon,604,380,9103424,5674,0 +25240,Quzynafide,407,627,848913998,3662,0 +25241,017+MONETKI,656,496,7588382,9490,0 +25242,030,614,397,699298370,6698,0 +25243,Wioska+barbarzy%C5%84ska,645,450,699524891,7979,0 +25245,Wioska+barbarzy%C5%84ska,556,355,699072129,10220,0 +25246,04.+Monster+Machine,494,654,849100262,10019,0 +25247,Jestem+Poza+Kontrol%C4%85,355,548,8004076,9791,0 +25248,057,656,519,698999105,8722,0 +25249,213...barba,465,346,6920960,4947,0 +25250,The+Game+Has+Only+Just+Begun,342,516,9280477,9976,7 +25251,0007,402,376,699402816,9963,0 +25252,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,650,699828442,9806,0 +25253,Wioska+pit,375,594,849095992,10495,0 +25254,Pobozowisko,406,622,699513260,9744,0 +25255,%3F012+Tawern,536,656,699828685,9976,0 +25256,Wioska+barbarzy%C5%84ska,538,654,7756002,9902,0 +25257,Szlachcic,407,371,698160606,9986,0 +25258,Kentin+ufam+Tobie,351,443,699783765,7478,0 +25259,033,616,599,698786826,10217,0 +25260,K34+-+%5B025%5D+Before+Land,444,357,699088769,10039,0 +25261,jaaa,636,582,698635863,10275,0 +25262,Wioska+barbarzy%C5%84ska,363,427,393668,4687,0 +25263,Monetki,476,412,699098531,10290,0 +25264,007,384,395,849059457,6837,0 +25265,Kentin+ufam+Tobie,351,457,699783765,10000,0 +25266,011+MONETKI,657,469,7588382,8438,0 +25267,The+Game+Has+Only+Just+Begun,347,520,9280477,9976,0 +25268,002,652,533,699351301,11300,8 +25269,0034,420,369,848913037,5197,0 +25270,A016+Go%C5%9B%C4%87+%C5%BCelazo,653,456,113796,10160,3 +25271,Wioska+barbarzy%C5%84ska,378,399,848886056,3610,0 +25272,MojeDnoToWaszSzczyt,577,364,699697558,10019,0 +25273,D%C4%85browa+0015,363,577,849096972,9763,0 +25274,%230017+barbarzy%C5%84ska,467,349,1238300,10178,0 +25275,Monetio,441,352,699191449,10495,0 +25276,004,482,348,698739350,10237,4 +25277,I%23025,596,379,2065730,8970,0 +25278,The+Game+Has+Only+Just+Begun,346,533,9280477,9158,0 +25279,K34+-+%5B111%5D+Before+Land,441,358,699088769,10259,0 +25280,Wioska+barbarzy%C5%84ska,362,426,393668,7693,0 +25281,032,616,396,699298370,4101,0 +25282,Kentin+ufam+Tobie,354,454,699783765,10495,0 +25283,Village,518,655,849094067,9828,0 +25284,A008,603,387,699761749,10495,0 +25285,1.3,393,382,849095959,1819,0 +25286,Wioska+Bochun10,346,480,7449254,10311,0 +25287,Prawdziwa+Osada+koczownik%C3%B3w,614,606,699778867,12154,8 +25288,Myk+i+do+kieszonki,361,577,849012521,10240,0 +25289,Wiocha+002,393,612,848912772,10178,0 +25290,Maszlug+kolonia+XVIII,363,417,848977649,4038,0 +25291,B025,655,494,9314079,9824,0 +25292,A+020,602,381,6384450,9889,0 +25294,%230016+barbarzy%C5%84ska,467,347,1238300,10178,0 +25296,Gattacka,613,388,699298370,10470,0 +25297,Szlachcic,465,419,698388578,10237,0 +25298,off+100+%25,358,569,849012521,10242,0 +25300,PZ035,656,517,8096537,9761,0 +25301,R%C4%99cznik+do+zmiany,372,405,699697558,10019,0 +25302,KREV+004,642,565,848988744,7336,0 +25303,Jestem+Poza+Kontrol%C4%85,354,550,8004076,9880,0 +25304,wolna.,561,647,699828685,10001,7 +25305,033%7C%7C+Corvus,452,650,849035525,10019,0 +25306,deff+100+%25,357,559,849012521,7455,0 +25307,Kozaki+1,614,605,699778867,12154,0 +25308,0462,380,599,699513260,3459,0 +25309,0010+Bia%C5%82ystok,393,381,849096882,8191,0 +25310,SSJ+063,514,653,699364813,9737,0 +25311,052.,416,628,2665207,9835,0 +25312,Piek%C5%82o+to+inni,566,359,848956765,10160,0 +25313,Lord+Lord+Franek+.%23029,525,343,698420691,9984,0 +25314,A-024,387,395,8419570,10168,0 +25315,xxx+%23002%23TerrorMachine+x+Miniqo,584,364,7555180,10146,0 +25316,Myk+i+do+kieszonki,364,583,849012521,7053,0 +25317,410,649,538,7038651,8611,0 +25318,LadyAnimavillis,603,617,699703642,9138,0 +25319,Tomall78,636,426,699524891,10635,0 +25320,Kentin+ufam+Tobie,351,441,699783765,10527,0 +25321,007,626,406,699429153,10237,0 +25322,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,653,699828442,9817,0 +25323,004+Krotu2,655,488,2135129,9553,0 +25324,Lord+Lord+Franek+.%23050,519,343,698420691,10112,0 +25325,Banan%234,584,368,699485250,10211,0 +25326,Piek%C5%82o+to+inni,569,361,848956765,10160,0 +25328,SSJ+067,517,653,699364813,9737,0 +25330,A003,587,372,699485250,10211,0 +25331,Dajanka+06,354,559,849012843,8147,0 +25332,Avanti%21,346,507,698625834,9950,0 +25333,K34+-+%5B136%5D+Before+Land,433,354,699088769,9783,0 +25334,Obrze%C5%BCa+02,538,652,848915531,11550,0 +25335,35.+KaruTown,636,416,849060446,8012,0 +25336,D03.,366,574,849090130,10362,5 +25337,%C5%BBUBRAWKA+A001+rufus997,602,615,33900,10481,0 +25338,psycha+sitting,455,647,699736927,10178,0 +25339,037+038,550,351,699491076,10001,0 +25340,musze+sie+napi%C4%87+.,593,626,848995242,10362,0 +25341,Darma+Tomi77,514,383,699368887,10237,0 +25342,006+king+rysio,566,643,699828685,9976,0 +25343,Village,579,635,849094067,7572,0 +25344,0461,380,598,698659980,3695,0 +25345,Banan%232,589,369,699485250,10211,0 +25346,HORUS...,544,645,7756002,9968,0 +25347,004,341,519,1830149,9811,0 +25348,011,398,380,849027025,9358,0 +25349,AA10,358,440,7765098,8958,0 +25350,A-025,386,396,8419570,10168,0 +25351,Klaudek.1,592,371,849092309,8369,0 +25352,RON+L,656,532,698768565,6844,0 +25353,K34+-+%5B011%5D+Before+Land,445,357,699088769,10259,0 +25354,038+037,549,351,699491076,10001,0 +25355,Wioska+barbarzy%C5%84ska,647,453,699524891,9397,0 +25356,Wioska+barbarzy%C5%84ska,433,363,699191455,8737,0 +25357,003,506,654,699336777,9938,4 +25358,Samana,452,651,699849210,7107,0 +25359,Kentin+ufam+Tobie,343,467,699783765,10000,0 +25360,jaaa,639,567,698635863,10222,0 +25361,013,484,347,698739350,10054,0 +25362,off+100+%25,361,574,849012521,10031,0 +25363,Kentin+ufam+Tobie,343,479,699783765,10019,0 +25364,Szlachcic,345,460,6258092,10019,0 +25365,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,549,652,7589468,8825,0 +25366,Horyzont+zdarze%C5%84,541,650,7581876,9835,0 +25367,%3D063%3D+Wioska+barbarzy%C5%84ska,652,550,3781794,10148,0 +25368,Monetki,471,424,699098531,10291,0 +25369,105,351,461,6258092,9566,0 +25370,aaaaaaaaaaa,442,358,699191455,10495,0 +25371,A-037,384,391,8419570,10242,0 +25372,051.+Tridentum,655,468,849091866,9366,0 +25373,Maszlug+kolonia+XVII,365,418,848977649,4464,0 +25374,North+Barba+022,423,365,699796330,9805,0 +25375,008.Wioska+BenyZSZ,346,510,1830149,9816,0 +25376,Lord+Lord+Franek+.%23042,531,348,698420691,10160,0 +25377,013+so+sick,560,642,699828685,9976,0 +25378,Dzikie+wsparcie,471,657,848935389,9809,1 +25379,Monetki,483,416,699098531,10291,0 +25380,0663,379,600,698659980,10495,0 +25381,037.,397,622,2665207,9835,4 +25382,1AA,356,434,7765098,7981,0 +25383,Gr%C3%B3d+4,475,344,699204478,2799,0 +25384,Monetki,474,410,699098531,10291,0 +25385,B.025,645,512,9188016,10000,0 +25386,I%23004,598,382,2065730,9797,0 +25388,JaawmG+P,649,558,8815749,10019,0 +25389,Wioska+barbarzy%C5%84ska,380,396,848886056,3060,0 +25390,Piek%C5%82o+to+inni,570,361,848956765,10019,0 +25391,Wioska+MokryRick,624,601,699778867,12154,0 +25392,027+-+Mroczna+Osada,640,423,849035905,12143,0 +25393,Lord+Lord+Franek+.%23005,529,345,698420691,10311,0 +25394,033.+Dubris,653,470,849091866,10481,0 +25395,023+181,344,501,698807570,9008,3 +25396,Darma+dla+zawodnika,514,659,699494488,10319,0 +25397,Wioska+barbarzy%C5%84ska,578,636,848995242,10255,0 +25398,Wioska+Flip+i+Flap+%3B%5D,465,421,9291984,7721,0 +25399,%23008+Zenit+Postrach+Plemion,359,432,849096215,2268,0 +25400,%23007+Zenitu%C5%9B,360,431,849096215,1595,0 +25402,North+Barba+013,422,362,699796330,9892,0 +25403,B.011,646,512,9188016,10000,0 +25404,Szulernia,417,363,7249451,9993,0 +25405,Wioska+barbarzy%C5%84ska,630,408,699429153,8583,0 +25406,0151,546,652,698659980,10019,0 +25407,079,619,606,698786826,10495,0 +25408,7.62+mm,373,402,8967440,6208,0 +25409,Lekka+Jazda.,608,617,699778867,12154,0 +25410,No.+4,478,655,698585370,9201,0 +25411,B07,644,447,849093742,10019,0 +25412,009.,402,626,2665207,9835,0 +25413,Zakr%C4%99t+1,408,376,699402816,9835,0 +25414,%3F001,539,655,699828685,9976,0 +25415,08.+Pelc,377,594,8665783,9916,0 +25416,066,625,599,698786826,10223,0 +25417,004+Lowland,552,348,699072129,8143,0 +25418,.%3A026%3A.+%C5%81OBUZIK,555,368,848934935,10495,0 +25420,Szlachcic,403,372,698160606,10479,0 +25421,North+Barba+006,422,365,699796330,9886,0 +25422,002+Winterfell,653,484,2135129,9553,0 +25423,KREV+001,642,563,848988744,9711,0 +25424,Lord+Lord+Franek+.%23014,520,343,698420691,9956,1 +25425,073+zxc,638,427,9238175,10216,0 +25426,CHARFA,512,341,699072129,10218,0 +25427,%23.07+%2AOsada+1%2A,659,473,849054582,10019,0 +25428,066+%7C+PALESTINA,638,432,9228039,5903,0 +25430,Darma+dla+zawodnika,518,659,699494488,10484,0 +25431,Szlachcic%2FTaran,621,397,699759128,10237,0 +25432,051.+Az+Ragni,638,418,8337151,10118,0 +25433,023,641,521,699413040,9860,0 +25434,007,397,381,849027025,6564,0 +25435,004+memyselfandi,566,644,699828685,9976,8 +25437,112,629,411,7085502,9976,0 +25438,0487,532,653,698659980,10252,7 +25439,Ave+Why%21,499,656,698585370,11321,0 +25440,Lord+Lord+Franek+.%23030,520,346,698420691,9956,0 +25441,.happy2,643,529,6929240,9511,0 +25442,%3D045%3D+Wioska+barbarzy%C5%84ska,651,551,3781794,9824,0 +25443,Chekku+-+meito,345,531,9280477,7863,0 +25444,MojeDnoToWaszSzczyt,567,366,699697558,10495,0 +25445,Lord+Lord+Franek+.%23031,527,343,698420691,9982,0 +25446,082...barb,457,348,6920960,10237,0 +25447,A-038,385,397,8419570,10168,0 +25448,022+-+Mroczna+Osada,631,411,849035905,11550,0 +25449,R%C4%99cznik+do+zmiany,370,411,699697558,10160,0 +25450,BEZDZIETNY+KAWALER,413,629,848913998,5830,0 +25451,Zadupiee,366,408,8967440,7464,0 +25452,008,494,626,699494488,10311,0 +25453,004,642,561,849095963,9766,0 +25454,Pobozowisko,390,606,699513260,10971,0 +25455,0040,412,373,848913037,9993,0 +25456,Giser,435,354,849096310,9860,0 +25457,071...barbarka+centr,458,350,6920960,10231,0 +25458,Jaaa,626,591,698635863,10280,0 +25459,0036,470,652,698585370,10083,0 +25460,036,649,556,699316421,9744,0 +25461,LadyAnimavillis,606,618,699703642,8131,0 +25462,okok,627,409,849095435,9965,0 +25463,004%29+%C5%81agiewniki,542,348,849097103,6151,1 +25464,-014-,373,599,699097885,10259,0 +25465,P021+Gotham,658,503,8096537,9741,0 +25466,Monetki,475,412,699098531,10291,0 +25467,BoOmBaa..,427,358,6169408,6973,0 +25468,Kentin+ufam+Tobie,343,471,699783765,10000,0 +25469,008,446,626,849084985,10221,0 +25470,B14,652,449,849093742,7986,0 +25472,030,568,643,699828685,9976,0 +25473,0002.+HMS+Prince+%281670%29,468,654,699121671,9809,0 +25474,A-034,390,388,8419570,10168,0 +25475,K53+040+Castamere,345,509,1830149,9978,0 +25477,009,398,384,849027025,7831,0 +25478,BAC%C3%93WKA+%7C039%7C,622,403,7394371,11550,0 +25479,.023.,485,368,698489071,10728,0 +25480,D+014,662,504,8078914,9751,0 +25482,RON,656,534,698768565,9019,0 +25483,007,401,376,699402816,9835,0 +25484,C001,607,384,699485250,6738,0 +25485,016,653,544,699351301,9814,0 +25488,A031,590,369,699485250,8615,0 +25489,Orze%C5%82+Wyl%C4%85dowa%C5%82,454,657,698807570,9444,0 +25490,Krosno+10,532,343,7485877,3486,0 +25492,Ave+Why%21,490,654,849004274,9976,0 +25493,%2A055,602,624,699567608,9198,0 +25494,A006,404,627,848912772,4247,0 +25495,M181_040,356,428,393668,9682,0 +25496,MojeDnoToWaszSzczyt,566,365,699697558,10495,0 +25497,Wioska+barbarzy%C5%84ska,557,355,699072129,10042,0 +25498,sony911,586,635,1415009,10217,0 +25499,Wioska+barbarzy%C5%84ska,617,393,698241117,7256,0 +25500,028,657,495,849006412,7817,0 +25501,Kentin+ufam+Tobie,343,469,699783765,10005,0 +25502,035,659,497,7085502,9735,0 +25503,004.+Dla+flag,353,437,698630507,8521,0 +25504,Kentin+ufam+Tobie,354,444,699783765,7616,0 +25505,RE3,348,453,6258092,9764,0 +25506,Antyszczepany,599,624,848995242,10495,0 +25507,017,655,535,699351301,10141,0 +25509,Wioska+006,388,387,8419570,10242,0 +25510,0029+MzM,624,595,698416970,9258,2 +25511,C004,610,384,699485250,9761,0 +25512,Jan+015+Nord+K,650,450,879782,9633,0 +25513,Wioska+Kaffiks+X,639,579,6136757,6231,0 +25514,94k%24+Grvvyq,608,619,699676005,10495,0 +25515,Lord+Lord+Franek+.%23112,529,342,698420691,10431,0 +25516,A0064,346,491,8841266,10362,0 +25517,Jednak+wol%C4%99+gofry,438,644,699736927,10471,0 +25518,A028,586,368,699485250,10011,0 +25519,%5B019%5D,450,650,9094538,3130,0 +25520,Bizy+9,504,656,8954402,8868,0 +25521,Jestem+Poza+Kontrol%C4%85,350,552,8004076,9880,0 +25522,Wioska+barbarzy%C5%84ska,652,458,849095879,5001,0 +25523,Wioska+Lolitkaa,389,607,699007059,6536,0 +25524,Starszyzna,370,587,8607734,10019,0 +25525,Avanti%21,346,514,698625834,9950,0 +25526,Darma+dla+zawodnika,514,660,699494488,10320,0 +25527,Wioska+barbarzy%C5%84ska,655,462,113796,5692,0 +25528,%23010+Zenitek+Love,359,433,849096215,2764,0 +25529,%23009+Zenit+Pan+K43,360,434,849096215,2368,0 +25530,026.Barbara10,340,514,1830149,4790,0 +25531,Pobozowisko,392,609,699513260,9723,0 +25532,044,570,642,699828685,9933,0 +25533,%230005+ScorpioSTW,472,347,1238300,10178,0 +25534,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,652,699828442,9994,0 +25535,Yyyy,491,342,699883079,10068,0 +25536,022,655,520,699351301,8898,0 +25537,C001,365,582,849090130,6727,0 +25538,jaaa,638,576,698635863,10559,0 +25539,Bagienko.Anker...,376,398,699713515,9028,0 +25540,Wioska+barbarzy%C5%84ska,494,342,698739350,9748,0 +25541,0013,419,366,848913037,9993,0 +25542,Wioska+barbarzy%C5%84ska,491,343,698739350,10237,0 +25543,Kentin+ufam+Tobie,351,444,699783765,10495,0 +25544,Wioska+003,382,392,8419570,9899,0 +25545,North+Sochaczew,423,359,699796330,10311,0 +25546,10.+Grzybek,376,599,8665783,9381,0 +25547,%23056.,645,433,556154,9735,0 +25548,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,379,606,849097937,9802,0 +25549,MojeSzczytToTw%C3%B3jDno,507,341,828637,10495,0 +25550,Lord+Lord+Franek+.%23032,525,345,698420691,9987,0 +25551,B+019,657,537,8078914,9227,0 +25552,Wioska+Kaffik+VII,635,579,6136757,6984,0 +25553,cc+Wielka+M3,403,374,3909522,6625,0 +25554,Wioska,350,453,848946608,6016,0 +25555,0042,411,370,848913037,8478,0 +25556,BAC%C3%93WKA+%7C026%7C,632,420,7394371,5450,0 +25557,P028+Afgan+Skun,658,523,8096537,10068,0 +25558,029,647,526,699351301,9363,0 +25559,North+Barba+018,421,361,699796330,9836,0 +25560,K34+-+%5B016%5D+Before+Land,445,350,699088769,10259,0 +25561,x013,358,566,9264752,9909,0 +25562,A-046-Heffitto,389,387,8419570,10168,0 +25563,0016,416,366,848913037,9993,0 +25564,046-+Mroczna+Osada,629,413,849035905,6135,0 +25565,Ave+Why%21,491,644,698585370,10217,0 +25566,B.016,666,507,9188016,10000,0 +25567,001,645,570,699301458,1420,0 +25568,Szlachcic,408,373,698160606,10425,0 +25569,Wyngiel+we+wsi,554,348,699072129,10108,0 +25570,021,654,523,699351301,8689,5 +25572,016.,488,656,849034882,10203,0 +25573,03.+Maj+preszysz,369,593,8665783,10008,3 +25574,500,649,544,7038651,9560,0 +25575,0014,419,368,848913037,9993,0 +25577,-013-,372,598,699097885,9177,0 +25580,LadyAnimavillis,607,616,699703642,8660,0 +25582,%C5%BBUBRAWKA+003,604,623,33900,10247,0 +25583,Myk+i+do+kieszonki,365,583,849012521,10283,0 +25584,024+MONETKI,654,482,7588382,9555,0 +25585,62k%24+Grvvyq,648,563,699676005,10495,0 +25586,%3D038%3D+Wioska+barbarzy%C5%84ska,651,552,3781794,10187,0 +25587,W+06,654,455,699524891,9726,0 +25588,Chekku+-+meito,342,521,9280477,9976,0 +25589,0004,613,614,6417987,10232,0 +25590,017.,559,648,699695167,9283,0 +25591,Jednak+wol%C4%99+gofry,499,636,699725436,8380,0 +25592,B06,645,445,849093742,10019,0 +25593,Osada+koczownik%C3%B3w,550,348,699072129,10378,7 +25594,Wioska+Kaffiks+XII,632,579,6136757,4111,0 +25595,Kr%C3%B3lestwo+Pledos+ASPKTO,488,659,849004274,9835,0 +25598,off+100+%25,355,570,849012521,10243,0 +25599,BAC%C3%93WKA+%7C031%7C,625,410,7394371,5746,0 +25600,014.,341,520,1830149,9758,0 +25601,PZ036,656,520,8096537,9619,0 +25602,026+-+Elx,644,443,698342159,10019,0 +25603,%2ALo%C5%82mont,575,636,699443920,9761,6 +25604,104,442,643,849084985,4639,0 +25605,Ave+Why%21,451,628,8729672,9995,0 +25606,Piek%C5%82o+to+inni,567,359,848956765,10160,0 +25607,kathare,557,645,873575,9869,0 +25608,Lord+Lord+Franek+.%23210,508,346,698420691,9574,0 +25609,%2A252%2A,355,435,699273451,9126,0 +25610,020,514,341,699072129,10495,0 +25611,Pobozowisko,386,603,699513260,10952,0 +25613,off+100+%25,358,568,849012521,8672,0 +25614,A0237,343,487,8841266,10362,0 +25615,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,653,7589468,7626,0 +25616,Wioska+barbarzy%C5%84ska+030,501,340,6343784,7437,0 +25617,Lord+Lord+Franek+.%23051,536,343,698420691,9960,0 +25618,Wioska+Fellipe23,587,627,848995242,10362,0 +25619,A0071,346,486,8841266,10362,0 +25620,SSJ+060,506,655,699054373,9333,0 +25621,Chekku+-+meito,342,527,9280477,9425,0 +25622,North+Barba+Zeus,424,364,699796330,10456,0 +25624,off+100+%25,352,562,849012521,10242,0 +25625,R%C4%99cznik+do+zmiany,369,415,699697558,10160,0 +25626,072...barbarka+centr,457,350,6920960,10273,0 +25627,B18,647,448,849093742,7783,0 +25628,MojeSzczytToTw%C3%B3jDno,510,342,828637,9792,0 +25629,Wioska+barbarzy%C5%84ska+III,377,404,8967440,2415,0 +25631,Kentin+ufam+Tobie,351,442,699783765,10479,0 +25632,033,571,639,699828685,9976,0 +25633,Taran,664,510,699598425,10728,0 +25634,Mamm60n,375,596,849095992,10222,0 +25635,Karolina3116+%28Karolina3116%29,414,578,698769107,9835,0 +25636,038,653,489,2135129,9553,0 +25637,0464,382,601,698659980,10178,0 +25638,Kentin+ufam+Tobie,352,442,699783765,10495,0 +25639,Piek%C5%82o+to+inni,560,352,848956765,10252,0 +25640,off+100+%25,356,570,849012521,8940,0 +25641,Piek%C5%82o+to+inni,579,364,848956765,9745,0 +25642,12+Esgaroth,451,654,699849210,9825,0 +25643,a+mo%C5%BCe+off+%3F+%3A%29,626,589,698768565,9790,0 +25644,x011,353,563,9264752,10495,0 +25645,Wioska+Bochun10,344,481,7449254,10311,0 +25646,Jednak+wol%C4%99+gofry,434,646,699736927,10319,0 +25647,Wioska+011,381,392,8419570,8701,0 +25648,w%C5%82odek+%3A%29,563,646,699828685,9976,0 +25649,B06,491,654,698652014,9879,0 +25650,Myk+i+do+kieszonki,362,557,9319058,9799,0 +25651,078...barbarka+------------,458,347,6920960,10237,0 +25652,S1Joker,476,657,698585370,11213,0 +25653,off+100+%25,358,567,849012521,10311,0 +25654,Edessa,431,643,849089459,7984,0 +25655,Oww+Konfederacja,609,389,848915730,5927,0 +25656,012,484,345,698739350,10495,0 +25657,Jestem+Poza+Kontrol%C4%85,351,560,8004076,9880,0 +25658,Wioska+Kaffiks+XIV,631,586,6136757,6375,0 +25659,off+100+%25,356,571,849012521,10273,0 +25661,%3F005,537,655,699828685,9976,0 +25662,A+021,603,377,6384450,10362,0 +25663,Ronin+P,612,611,698768565,9995,0 +25664,Wioska+Bochun10,346,482,7449254,10311,0 +25665,Avanti%21,345,505,698625834,9950,0 +25666,jaaa,641,566,698635863,10545,0 +25667,MojeSzczytToTw%C3%B3jDno,508,343,828637,10478,0 +25668,023.Barbara+7,340,508,1830149,4261,0 +25669,The+Game+Has+Only+Just+Begun,347,537,9280477,10117,0 +25670,BoOmBaa..,433,358,6169408,3489,0 +25671,220,653,540,7038651,8300,0 +25672,Myk+i+do+kieszonki,360,565,9319058,9799,0 +25673,050,661,498,7085502,9732,0 +25674,0005+Warszawa,394,380,699402816,10544,0 +25675,7.62+mm,368,418,699777234,5458,0 +25677,Szlachcic,633,590,930720,6227,0 +25678,047.+Florentia,651,468,849091866,9361,0 +25679,045+Providence,634,587,699272880,5672,0 +25680,094,408,370,698364331,3904,0 +25681,069+Wioska+barbarzy%C5%84ska,546,350,699491076,10001,0 +25682,089...bar,459,345,6920960,10223,0 +25683,076,657,522,699351301,9766,0 +25684,Jestem+Poza+Kontrol%C4%85,350,546,8004076,9764,0 +25686,aaaaaaaaaa,438,358,699191455,10487,0 +25688,Jan+dzik+II,647,435,879782,7202,0 +25689,027,561,645,699828685,9976,0 +25690,B16,650,446,849093742,9058,0 +25691,Ave+Why%21,477,659,698585370,9686,0 +25692,0489,533,652,698659980,10495,0 +25693,zzzGranica+Bledu+11,609,610,699778867,8510,0 +25694,Dublin,431,642,699736927,9599,0 +25695,0545,531,658,698659980,10083,0 +25696,079,645,556,849095227,9730,6 +25697,032,658,498,7085502,9821,0 +25698,Bardzo+czy%C5%9Bciutko+tutaj,346,452,6258092,4059,0 +25699,%2ALusita,574,635,699443920,9761,0 +25700,Piek%C5%82o+to+inni,563,352,848956765,10019,0 +25701,A+004,605,387,6384450,10362,0 +25702,124+xx2,548,349,699491076,9955,0 +25704,EMERYTOWANY+KUZYN,421,634,848913998,5232,0 +25705,005+serniczek+na+zimno,503,661,8954402,10252,7 +25707,Flotsam2,484,340,849048216,3020,0 +25708,W+odwiedzinach+u+kuzyna,431,639,848913998,11369,0 +25709,jaaa,638,575,698635863,10089,0 +25710,Denger+20,368,587,698353083,9006,0 +25711,EMERYTOWANY+KUZYN,434,641,848913998,7352,0 +25712,Wioska+barbarzy%C5%84ska,487,661,8501514,8225,0 +25713,Valhalla+B0,379,605,849097002,10007,0 +25714,North+Barba+009,424,360,699796330,10294,0 +25715,Wioska+barbarzy%C5%84ska,377,398,848886056,4096,0 +25717,107,351,460,6258092,10019,0 +25718,R%C4%99cznik+do+zmiany,373,409,699697558,10160,9 +25719,lllllllllllllllll,624,401,699429153,10040,0 +25720,RON,655,537,698768565,6552,0 +25721,004...CENTR_na+prz%C3%B3d,461,352,6920960,10495,0 +25722,063,619,598,698786826,5057,0 +25723,psycha+sitting,451,649,699736927,9590,0 +25724,Belle+Fourche,619,391,699298370,9976,0 +25725,023,630,585,699099811,9587,0 +25726,0009+ah+ten+stan,504,505,698599365,10019,0 +25727,psycha+sitting,454,649,699736927,10311,0 +25728,K34+-+%5B096%5D+Before+Land,444,355,699088769,10259,0 +25729,The+Game+Has+Only+Just+Begun,348,529,9280477,9994,0 +25730,0587,542,656,698659980,8061,0 +25731,Wioska+Bochun10,345,478,7449254,10495,0 +25732,Krak%C3%B3w,375,401,848886056,5650,0 +25733,Wioska+barbarzy%C5%84ska,340,523,9280477,1888,0 +25734,032.,642,482,849094609,9821,0 +25735,A+018,605,385,6384450,8578,0 +25736,1.2,392,390,8967440,3480,0 +25737,off+100+%25,357,569,849012521,10495,0 +25738,Wioska+barbarzy%C5%84ska,489,345,698739350,10104,0 +25739,Wioska+zbiku1990,646,450,699524891,9379,0 +25740,I%23007,599,378,2065730,9423,0 +25741,Piek%C5%82o+to+inni,565,354,848956765,10160,0 +25742,tego+nie,513,656,699494488,10475,0 +25743,Kentin+ufam+Tobie,343,478,699783765,10000,0 +25744,010+lord+cesarok,562,643,699828685,9976,0 +25745,Dajanka+02,350,556,849012843,10559,0 +25746,19.+Holenderscy+likwidatorzy,369,594,8665783,8712,0 +25747,021+serniczek+kr%C3%B3lewski,511,660,8954402,10144,3 +25748,Wioska+barbarzy%C5%84ska,544,354,699072129,10223,0 +25749,026,483,344,698739350,10237,0 +25750,Klaudek3,592,369,849092309,7388,0 +25751,%2A051,590,631,699567608,9704,0 +25752,081...CENTR,454,350,6920960,10237,0 +25753,kathare,558,648,873575,9786,0 +25755,002+Halland,552,351,699072129,8313,0 +25756,A0235,342,485,8841266,10362,0 +25757,053,658,520,698999105,10311,0 +25759,D+005,659,508,8078914,9858,0 +25760,Maniek+PZGXR,491,660,849004274,9835,0 +25761,Wiocha+4,427,361,849096544,10887,0 +25762,B026,654,494,9314079,9827,0 +25763,No+way,346,456,6258092,11348,0 +25764,A+005,608,387,6384450,8933,0 +25765,007,644,558,849095963,9042,0 +25766,R%C4%99cznik+do+zmiany,372,408,699697558,10160,0 +25768,B08,649,450,849093742,10160,0 +25769,004+serniczek+z+truskawkami,502,661,8954402,10252,0 +25770,Weso%C5%82ych+%C5%9Awi%C4%85t,582,361,848915730,3970,0 +25772,Kentin+ufam+Tobie,342,466,699783765,10000,0 +25773,sony911,585,629,1415009,9842,0 +25775,Wioska+barbarzy%C5%84ska,650,455,699524891,9756,0 +25776,Avanti%21,342,503,698625834,9950,0 +25777,R%C4%99cznik+do+zmiany,370,405,699697558,10160,0 +25778,Wioska+Wstydu+i+Rozpaczy,621,393,699298370,7760,0 +25779,Jednak+wol%C4%99+gofry,470,657,699725436,10508,3 +25780,0633,377,601,698659980,10559,0 +25781,18.Wszystko+si,635,411,849060446,9735,0 +25782,020...P%C3%93%C5%81NOCKA,463,349,6920960,10495,0 +25783,Taki+Pan,499,343,698739350,6099,0 +25784,tego+nie,515,659,699494488,10495,0 +25785,Jestem+Poza+Kontrol%C4%85,352,550,8004076,8038,0 +25786,75.,622,398,849060446,9735,0 +25787,067,627,596,698786826,9457,0 +25788,Wioska+barbarzy%C5%84ska,633,412,699429153,8961,0 +25789,RE5,350,450,6258092,8518,0 +25790,021...P%C3%B3%C5%82noc,463,345,6920960,10495,0 +25791,Z+004,493,339,6384450,7471,0 +25792,Silva,523,348,699491076,8270,4 +25793,BoOmBaa..,428,360,6169408,5268,0 +25794,023...P%C3%93%C5%81NOC,461,350,6920960,10495,0 +25795,0457,379,602,699513260,4414,0 +25796,0465,376,600,699513260,3281,0 +25797,114+Wioska+barbarzy%C5%84ska,545,346,699491076,9550,0 +25798,Lord+Lord+Franek+.%23033,526,342,698420691,9957,0 +25799,Pobozowisko,388,597,699513260,9638,0 +25800,Lord+Lord+Franek+.%23052,533,343,698420691,10023,0 +25801,Wioska+barbarzy%C5%84ska,569,645,699828685,9536,0 +25802,%230263+deleted,474,346,1238300,2590,0 +25803,%230019+kamilsan993,465,343,1238300,10178,0 +25804,Wioska+barbarzy%C5%84ska,493,345,698739350,7169,0 +25806,MInas+Morgul,627,600,849096285,4411,0 +25807,049.,410,627,2665207,9835,0 +25808,097,622,605,698786826,10495,0 +25809,Szlachcic,404,371,698160606,10484,9 +25810,CSA,500,340,7651093,3916,0 +25811,cc+008,401,378,3909522,8495,0 +25812,0086,585,630,698659980,10160,6 +25813,Avanti%21,346,503,698625834,9950,0 +25814,Klaudek6,592,368,849092309,7172,0 +25815,245...SOUTH,476,347,6920960,4166,0 +25816,M181_024,357,424,393668,9888,0 +25817,MojeDnoToWaszSzczyt,561,357,699697558,10160,0 +25818,012%7C%7C+Pisces,470,636,849035525,10019,0 +25819,Wioska+Bochun10,346,478,7449254,10495,0 +25820,2AA,355,434,7765098,8449,0 +25821,Monetki,476,417,699098531,10294,0 +25822,010+nie+ma+spania+na+wyjazdach,445,650,699238479,4500,0 +25823,043+Kirkwall,629,593,699272880,7982,0 +25824,Jednak+wol%C4%99+gofry,473,658,699725436,10362,6 +25825,36.,352,548,8004076,5030,0 +25826,Piek%C5%82o+to+inni,564,354,848956765,10160,0 +25827,Banan%233,588,370,699485250,7908,3 +25828,%23001,379,395,8967440,7018,0 +25829,psycha+sitting,451,642,699736927,10311,0 +25830,EMERYTOWANY+KUZYN,432,644,848913998,4216,0 +25831,Lord+Lord+Franek+.%23034,523,347,698420691,9955,0 +25832,R%C4%99cznik+do+zmiany,374,408,699697558,10160,0 +25833,P023+Soul+Society,653,519,8096537,9949,8 +25834,wioska+Papatryk94,623,600,699778867,12154,0 +25835,BoOmBaa..,431,358,6169408,3750,0 +25836,R%C4%99cznik+do+zmiany,370,412,699697558,9568,0 +25837,0033+MzM,625,593,698416970,9128,0 +25838,Wioska+%28039%29,644,438,698232227,5022,0 +25839,025+MONETKI,657,489,7588382,9777,0 +25840,Taki+Pan,512,340,698739350,4677,0 +25841,039+kryzys,570,641,699828685,9976,0 +25842,Sony+911,587,631,1415009,10464,0 +25843,K34+-+%5B125%5D+Before+Land,439,351,699088769,10259,0 +25844,sony911,583,633,1415009,10220,0 +25845,Gattacka,618,390,699298370,10142,0 +25846,KREV+002,644,567,848988744,9585,0 +25848,Macp+3,340,512,61791,5416,0 +25849,Szlachcic%2FTaran,621,396,699759128,10237,0 +25850,Valhalla+5,381,606,849097002,8306,0 +25851,Wioska+barbarzy%C5%84ska,400,379,849027025,9833,0 +25853,Myk+i+do+kieszonki,355,565,9319058,9799,0 +25854,Wioska+barbarzy%C5%84ska,432,623,6910361,4204,0 +25855,005%29+Strzelin,545,344,849097103,5004,0 +25857,A0240,342,487,8841266,10362,0 +25858,Wioska+barbarzy%C5%84ska,533,654,529552,10317,0 +25859,085.,485,654,849034882,9341,0 +25860,Jestem+Poza+Kontrol%C4%85,343,529,8004076,9880,0 +25861,Wioska+Bochun10,345,483,7449254,10311,0 +25862,Wioska+014,392,389,8419570,10097,0 +25863,%2ANalfabet+ulic,575,643,699443920,5326,0 +25864,MojeDnoToWaszSzczyt,562,355,699697558,10160,0 +25865,K33+x002,394,387,698364331,3886,0 +25866,MInas+Ithil,626,599,849096285,4596,0 +25867,K34+-+%5B104%5D+Before+Land,442,354,699088769,9783,0 +25868,025+%7C+PALESTINA,646,444,9228039,9544,0 +25869,010.,399,626,2665207,9761,0 +25870,093,656,543,699351301,10019,0 +25871,A035+Wioska+barbarzy%C5%84ska,650,460,113796,10149,0 +25872,080,624,603,698786826,10495,0 +25873,%23.27+Wioska+barbarzy%C5%84ska,659,479,849054582,6113,0 +25874,B10,647,446,849093742,10019,0 +25875,Szlachcic,409,374,698160606,10478,0 +25876,mpiechu,652,456,113796,10139,5 +25877,Mordor,438,350,849096310,9594,0 +25878,025,564,645,699828685,9976,0 +25879,%C5%BBUBRAWKA+004,600,622,33900,10069,0 +25880,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,660,699828442,9809,0 +25881,Twierdza,618,393,699298370,8035,0 +25882,011.,400,623,2665207,9835,0 +25883,059.,391,622,2665207,9835,0 +25884,Wioska+barbarzy%C5%84ska+.,582,637,848995242,10495,0 +25886,035,481,345,698739350,10104,0 +25888,DW3,346,449,6258092,10146,0 +25889,Skazany+Na+Instynkt,366,578,8004076,8986,0 +25890,20+Osgiliath,452,653,699849210,3473,0 +25892,K34+-+%5B138%5D+Before+Land,433,353,699088769,9783,0 +25893,cofn%C4%85%C4%87,627,400,699429153,9889,0 +25894,LadyAnimavillis,601,620,699703642,9994,2 +25895,039.,398,622,2665207,9835,0 +25896,Taki+Pan,508,344,698739350,7923,0 +25897,KlikKlak,341,528,849096458,8883,0 +25898,081,625,602,698786826,10444,0 +25900,051+csodo,658,484,2135129,10147,0 +25902,BoOmBaa..,431,362,6169408,6307,0 +25903,0490,531,653,698659980,10362,0 +25905,04.+Przystanek+pod+palcem,370,595,8665783,10008,0 +25906,R%C4%99cznik+do+zmiany,368,411,699697558,10160,0 +25907,Chekku+-+meito,343,530,9280477,9650,0 +25908,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,654,699828442,9805,0 +25909,Avanti%21,346,516,698625834,9950,0 +25910,040,652,556,699316421,7495,0 +25911,016+jogurtowy+serniczek,499,655,8954402,10160,0 +25912,MojeDnoToWaszSzczyt,561,352,699697558,10160,0 +25913,Tars,420,636,849089459,12154,0 +25914,%2ANesco,572,644,699443920,8830,0 +25915,026+MONETKI,659,484,7588382,9634,0 +25916,043,651,553,699316421,5815,0 +25917,Pocz%C4%85tek,354,433,393668,6154,0 +25918,Wioska+Kaffiks+IX,636,579,6136757,4987,0 +25919,Osada+cadownik%C3%B3w,376,604,8607734,9859,9 +25920,cc+02+Wioska+barbarzy%C5%84ska,406,375,3909522,8091,0 +25921,North+Barba+008,420,363,699796330,9644,0 +25922,%23.34+Wioska+barbarzy%C5%84ska,658,478,849054582,5221,0 +25923,Piek%C5%82o+to+inni,571,356,848956765,10160,0 +25924,Oww+Konfederacja,601,390,848915730,6841,0 +25925,North+Barba+014,426,357,699796330,10220,0 +25926,BoOmBaa..,432,356,6169408,5129,0 +25927,%7E%7E051%7E%7E,607,613,7829201,9491,0 +25929,15.+Kamper,378,595,8665783,9176,0 +25930,083.,483,657,849034882,10495,9 +25931,Wioska+koliber2,541,658,529552,2163,0 +25932,004.,398,621,2665207,9835,0 +25934,038+kryzys,569,643,699828685,9976,0 +25935,Wioska+barbarzy%C5%84ska,364,423,393668,9912,0 +25936,Wioska+barbarzy%C5%84ska,648,455,699524891,9753,0 +25937,115+Wioska+barbarzy%C5%84ska,548,346,699491076,9632,0 +25938,D18,656,542,848995478,4902,0 +25940,Wioska+Kaffik+VIII,635,578,6136757,6340,0 +25941,EMERYTOWANY+KUZYN,424,636,848913998,10311,0 +25942,BAC%C3%93WKA+%7C001%7C,632,413,7394371,12154,0 +25943,Jestem+Poza+Kontrol%C4%85,346,546,8004076,9880,0 +25944,The+Game+Has+Only+Just+Begun,346,524,9280477,9976,0 +25945,%230259+deleted,479,340,1238300,2159,0 +25946,D%C4%85browa+0005,366,589,849096972,10019,0 +25947,Wioska+barbarzy%C5%84ska,442,357,699393759,6221,0 +25948,MojeDnoToWaszSzczyt,567,353,848915730,9976,0 +25949,Owp+Konfederacja,603,382,848915730,6455,0 +25950,K34+-+%5B121%5D+Before+Land,438,351,699088769,10259,0 +25951,The+Game+Has+Only+Just+Begun,345,517,9280477,9976,0 +25952,MRF+004,630,584,118121,8617,0 +25953,R%C4%99cznik+do+zmiany,370,415,699697558,10117,0 +25954,DajankA+07,353,555,849012843,10160,0 +25955,Wioska+001,390,615,848912772,10178,0 +25956,kathare,559,645,873575,10401,3 +25957,Chekku+-+meito,344,531,9280477,9976,0 +25958,xyz+%23014+TerrorMachine,580,362,7555180,6321,0 +25959,031,659,513,849006412,5482,0 +25960,B+049,660,521,8078914,7664,0 +25961,A027+Greg+Wioska+6,651,443,113796,10160,0 +25962,cc+Wioska+675,401,373,3909522,5935,0 +25963,Wioska+Barba+III,382,398,8967440,3451,0 +25964,Krosno+9,530,348,7485877,4799,0 +25965,%C5%BBUBRAWKA+002,603,620,33900,10259,0 +25966,062,655,525,699351301,9416,0 +25967,007+Jurassik+World,543,348,699491076,10001,9 +25968,Szlachcic,349,461,6258092,10160,0 +25969,%2A014+Nemeczek%2A,363,414,2415972,8931,0 +25970,Wioska+Bochun10,344,482,7449254,10311,0 +25971,Chekku+-+meito,345,524,9280477,8400,0 +25972,0458,381,602,699513260,4750,0 +25973,R%C4%99cznik+do+zmiany,371,406,699697558,10160,9 +25974,Jestem+Poza+Kontrol%C4%85,352,555,8004076,9880,0 +25975,BoOmBaa..,428,357,6169408,6116,0 +25976,2.03,344,454,6258092,4649,0 +25977,Aulas,420,639,849089459,9016,0 +25978,Chekku+-+meito,342,525,9280477,8914,0 +25979,PZ037,657,515,8096537,9687,0 +25980,B027,655,490,9314079,9819,0 +25981,Architekci+Plac%C3%B3w+Boju,344,543,8004076,9880,0 +25982,028+MONETKI,661,480,7588382,9711,0 +25983,7.62+mm,367,408,699777234,5405,0 +25984,%23004+Grunburg,374,590,8607734,10019,0 +25985,20.+Czuwaj,627,410,849060446,9735,0 +25986,05.+Wiadukt+na+dopko,376,595,8665783,10377,0 +25987,005...ZACH_A,454,347,6920960,10495,3 +25988,A0231,343,497,8841266,10362,0 +25989,Ave+Why%21,438,636,698585370,10019,0 +25990,%5B0009%5D,560,630,699567608,9981,0 +25991,R%C4%99cznik+do+zmiany,371,405,699697558,9717,0 +25993,%2A4624%2A+Piko,648,437,7973893,10287,0 +25994,%28%2B%29%28%2B%29,587,636,1415009,10228,0 +25995,035,570,645,699828685,10209,0 +25996,Wioska+barbarzy%C5%84ska,632,414,699429153,6044,0 +25997,068,620,598,698786826,7808,0 +25998,Wioska+Bochun10,341,507,7449254,5985,0 +25999,Jestem+Poza+Kontrol%C4%85,348,539,8004076,9880,0 +26000,0078,628,599,698416970,10252,0 +26001,stop,618,403,849060446,9735,0 +26002,046.+Oea,658,467,849091866,10004,0 +26003,D+019,658,501,8078914,3865,0 +26004,BoOmBaa..,431,357,6169408,6581,0 +26005,0121,581,633,698659980,10019,0 +26006,Wioska+Bochun10,339,495,7449254,10311,0 +26007,16.+Wiejskie+potupanki,368,592,8665783,9166,0 +26008,023+-+Mroczna+Osada,636,418,849035905,11130,0 +26009,%23002+Zenit+to+KR%C3%93L,353,441,849096215,8577,0 +26010,CSA,502,340,7651093,3036,0 +26012,%7C024%7C+Faliraki,498,662,699393742,9881,0 +26013,Kentin+ufam+Tobie,340,477,699783765,10000,0 +26014,A-035,387,387,8419570,10332,0 +26015,05.+Yellowbird,495,661,849100262,9447,0 +26016,M181_044,360,432,393668,10611,4 +26017,005+Mekka,379,394,849059457,8969,0 +26018,0152,630,596,698416970,5185,0 +26019,Wioska+barbarzy%C5%84ska,344,551,0,893,0 +26020,Jehu_Kingdom_20,650,461,8785314,8333,6 +26021,011+Deiren,642,422,9238175,10375,0 +26022,Dajanka+16,352,551,849012843,5080,0 +26023,041+VANITAS,388,611,6354098,10160,0 +26024,Szlachcic,346,464,6258092,10083,0 +26025,A+008,606,379,6384450,10362,0 +26026,Dajanka+12,350,554,849012843,7421,0 +26027,17.+G%C3%B3rna+Wilda,506,660,849092769,11526,0 +26028,CHARFA,516,342,699072129,10220,0 +26029,Wioska+Bochun10,339,499,7449254,10311,0 +26030,Wioska+barbarzy%C5%84ska,631,408,699429153,9825,0 +26031,070+Wioska+barbarzy%C5%84ska,542,351,699491076,10001,0 +26032,039,651,549,849095227,9761,0 +26033,029+%7C+PALESTINA,643,440,9228039,7803,0 +26034,BoOmBaa..,431,356,6169408,6188,0 +26035,018+nie+ma+spania+na+wyjazdach,444,645,699238479,5443,0 +26036,0491,536,658,698659980,10019,0 +26037,The+Game+Has+Only+Just+Begun,346,538,9280477,9976,0 +26038,089,658,549,699351301,3131,0 +26039,036,658,496,7085502,9726,0 +26040,off+100+%25,352,565,849012521,10257,0 +26041,a+mo%C5%BCe+off+%3F+%3A%29,627,594,698768565,9870,4 +26042,%5B028%5D,642,530,698305474,8122,0 +26043,North+Barba+012,421,367,699796330,9886,0 +26044,Dodowo,345,529,849096458,9323,0 +26045,Denger+16,364,587,698353083,9136,0 +26046,Kentin+ufam+Tobie,342,465,699783765,10011,6 +26047,%23.38+Wioska+barbarzy%C5%84ska,658,476,849054582,3160,0 +26048,%230027+barbarzy%C5%84ska,467,345,1238300,10178,0 +26049,003+MONETKI,656,464,7588382,9710,1 +26050,004,491,661,698650301,8494,0 +26051,037,650,561,699316421,9744,0 +26053,Skowronek,338,499,699265922,9860,0 +26056,A0241,340,492,8841266,10362,0 +26057,Jednak+wol%C4%99+gofry,435,648,699736927,10178,0 +26059,Chekku+-+meito,340,522,9280477,9976,0 +26060,048.,406,630,2665207,8077,0 +26061,003,655,534,699351301,11803,8 +26062,106,650,442,849088515,10019,0 +26063,013%29+Jordan%C3%B3w+%C5%9Al%C4%85ski,540,348,849097103,5673,0 +26064,070+%7C+PALESTINA,635,420,9228039,9544,0 +26065,BAC%C3%93WKA+%7C007%7C,627,405,7394371,12154,0 +26066,historia+blisko+3,619,601,699778867,11550,0 +26067,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,647,1434753,10068,0 +26068,Jestem+Poza+Kontrol%C4%85,351,550,8004076,9797,0 +26069,072+rest,641,429,9238175,10216,0 +26070,Zbira,394,383,606706,5815,0 +26071,deff+100%25,358,573,849012521,5577,0 +26072,036+barbarzy%C5%84ska,641,427,9238175,6705,0 +26073,Czarodziejka+z+Wenus,425,637,849006145,5621,0 +26074,%3F002,539,656,699828685,9976,0 +26075,%230008+barbarzy%C5%84ska,464,350,1238300,10178,0 +26076,Monetio,445,352,699191464,10495,0 +26077,Jan+dzik+IV,643,436,879782,7536,0 +26078,Bagienko.Anker...,380,397,699713515,8443,2 +26079,012+Eldorado,657,491,2135129,9500,0 +26080,%3F008,541,657,699828685,9976,0 +26081,012.+Dla+flag,352,440,698630507,2309,0 +26082,llllllllll,624,400,699429153,9825,0 +26083,MojeDnoToWaszSzczyt,562,353,699697558,10160,0 +26084,027,662,500,7085502,9740,0 +26085,Chekku+-+meito,341,515,9280477,10216,0 +26086,Piek%C5%82o+to+inni,564,355,848956765,10160,0 +26087,Darma+dla+zawodnika,510,660,849004274,10261,0 +26088,044,651,547,698999105,10311,0 +26089,079,440,638,849084985,12154,0 +26090,BoOmBaa..,437,358,6169408,6086,0 +26091,020+Ellander,458,655,699834004,7452,0 +26092,Szlachcic,344,458,6258092,7457,0 +26094,M181_041,358,429,393668,8885,0 +26095,Wioska+barbarzy%C5%84ska,626,407,699429153,9825,0 +26096,North+Barba+017,423,360,699796330,9750,0 +26098,Bagdad,501,338,8847546,10068,0 +26099,B028,657,493,9314079,10052,0 +26100,kathare,556,638,873575,10256,0 +26101,Wioska+barbarzy%C5%84ska,557,353,699072129,10220,0 +26102,%7E%7ELataj%C4%85cyHolender%7E%7E,576,505,9174887,10160,0 +26103,Jednak+wol%C4%99+gofry,436,644,699736927,9331,0 +26104,C005,610,386,699485250,10211,0 +26105,Taran+016,600,372,7462660,9761,0 +26106,Osada+koczownik%C3%B3w,552,346,699072129,10220,4 +26108,R%C4%99cznik+do+zmiany,371,408,699697558,10160,0 +26109,DW1,347,448,393668,10311,0 +26110,Jestem+Poza+Kontrol%C4%85,351,552,8004076,9880,4 +26111,078,629,591,698999105,6390,0 +26112,Pobozowisko,385,612,699513260,8881,0 +26113,Myk+i+do+kieszonki,357,566,9319058,9799,0 +26114,Jednak+wol%C4%99+gofry,435,646,699736927,5579,0 +26115,A019+go%C5%9B%C4%87+KamilToJa,651,458,113796,10224,0 +26116,Jestem+Poza+Kontrol%C4%85,350,548,8004076,9880,0 +26117,012.zbyszek,341,518,1830149,9794,0 +26118,R%C4%99cznik+do+zmiany,369,410,699697558,10160,0 +26120,Krosno+2,534,341,7485877,6562,0 +26121,R%C4%99cznik+do+zmiany,369,406,699697558,10160,0 +26123,062,630,589,698999105,8669,0 +26124,off+100+%25,356,569,849012521,10273,0 +26125,1v9+machine,390,619,699697558,10019,0 +26126,Darma+dla+zawodnika,516,662,699494488,10476,1 +26127,ADEN,516,374,698588535,10144,0 +26128,Obrze%C5%BCa+093,555,652,848915531,5251,0 +26129,MojeDnoToWaszSzczyt,561,355,699697558,10160,0 +26130,R%C4%99cznik+do+zmiany,373,403,699697558,10019,0 +26131,Pobozowisko,385,606,699513260,5704,0 +26132,004%7C%7C+Cancer,479,658,849035525,10019,0 +26133,Szlachcic,348,460,6258092,8968,0 +26134,036,653,533,699351301,8107,0 +26135,Wioska+barbarzy%C5%84ska,537,657,7756002,9904,0 +26136,North+Barba+011,419,363,699796330,9889,0 +26137,The+Game+Has+Only+Just+Begun,343,517,9280477,9976,0 +26138,jaaa,639,574,698635863,10495,0 +26139,%23.24+Wioska+barbarzy%C5%84ska,655,474,849054582,6183,0 +26140,%230045+barbarzy%C5%84ska,469,344,1238300,10178,0 +26141,0134,429,375,699431255,10019,0 +26142,011+VW+Wioska+barbarzy%C5%84ska,366,409,3108144,5936,0 +26143,I%23013,601,377,2065730,9797,0 +26144,DW10,345,446,393668,10375,0 +26145,Szlachcic,404,370,698160606,10478,0 +26146,Czarodziejka+z+Merkurego,426,637,849006145,9089,0 +26147,Polanie,480,341,849048216,5322,0 +26148,Wioska+barbarzy%C5%84ska,479,344,699244334,1702,0 +26149,K34+-+%5B103%5D+Before+Land,450,351,699088769,10259,0 +26151,Wioska+Kaffik+V,634,583,6136757,7025,0 +26152,A-012,393,387,8419570,10245,0 +26153,A-031,392,387,8419570,10168,0 +26154,021,510,657,2293376,9914,0 +26155,14.+Altanka+u+ple%C5%9Bni,377,595,8665783,8393,0 +26156,A023+Ateny,653,458,113796,10160,0 +26157,Pobozowisko,388,608,699513260,6608,0 +26158,C004..,366,582,849090130,10495,0 +26159,Malinki+5,657,518,8013349,6125,0 +26160,Monia+i+Ruch,594,566,8742874,9344,0 +26161,Dajanka+04,355,559,849012843,11550,0 +26162,0011,387,382,8419570,10204,0 +26163,044.+Valentia,653,469,849091866,9641,0 +26165,04+Wioska,443,651,698993706,9740,0 +26166,Wioska+Bochun10,342,506,7449254,8682,0 +26167,Taki+Pan,506,338,698739350,6286,0 +26168,kathare,557,648,873575,10183,0 +26169,psycha+sitting,457,650,699736927,10178,0 +26170,Krab,434,353,849096310,9202,0 +26171,Gattacka,614,387,699298370,10470,0 +26172,Jednak+wol%C4%99+gofry,473,655,699725436,10178,0 +26174,Jednak+wol%C4%99+gofry,436,649,699736927,9191,0 +26175,NI4,345,459,6258092,10495,0 +26176,Dajanka+35,356,576,849012843,2092,0 +26177,.najazd+zrobiony,550,652,7589468,9827,6 +26178,Zero+Stresu,445,536,698971484,9887,0 +26179,Jestem+Poza+Kontrol%C4%85,353,551,8004076,8659,0 +26183,002+Elizjum,378,393,849059457,8505,0 +26184,Igneum+Castrum,631,594,8337151,9083,0 +26185,013.,395,623,2665207,9835,0 +26186,095+duko+4,549,353,699491076,10001,0 +26187,Bunkier+001,614,607,699778867,10002,0 +26188,Ave+Why%21,477,654,698585370,10116,0 +26189,Wioska+barbarzy%C5%84ska,488,343,698739350,8401,0 +26190,BEZDZIETNY+KAWALER,416,631,848913998,5121,8 +26191,02.02.02,371,594,8665783,10195,0 +26192,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,392,620,849097937,9772,4 +26194,008.+Dla+flag,356,440,698630507,6669,0 +26195,Szulernia,410,365,7249451,9981,1 +26196,Sexxy,606,621,8815749,10019,0 +26197,0492,530,658,698659980,9750,0 +26198,007,659,526,699351301,11550,0 +26199,017%7C%7C+Ursa+Major,500,659,849035525,10019,0 +26200,Jednak+wol%C4%99+gofry,436,647,699736927,6622,0 +26201,044%2Cxxx,512,660,849004274,10328,0 +26202,015+barbarzy%C5%84ska,642,421,9238175,10281,0 +26203,Lord+Lord+Franek+.%23053,528,343,698420691,9962,0 +26204,KR%C3%93L+PAPI+WIELKI,600,624,698191218,7168,0 +26205,041,659,492,7085502,9596,0 +26206,Piek%C5%82o+to+inni,563,355,848956765,10160,0 +26207,%230094+barbarzy%C5%84ska,460,343,1238300,8511,0 +26208,Wioska+barbarzy%C5%84ska,535,344,698350371,4660,0 +26209,Chekku+-+meito,343,526,9280477,8932,0 +26210,035+barbarzy%C5%84ska,643,425,9238175,6153,0 +26211,015,425,639,849089459,9022,0 +26212,D+011,661,503,8078914,9668,0 +26213,Architekci+Plac%C3%B3w+Boju,343,539,8004076,8986,0 +26214,019.,400,625,2665207,9835,0 +26216,BAC%C3%93WKA+%7C044%7C,627,401,7394371,10109,0 +26217,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,660,699828442,9825,0 +26218,0008,417,366,848913037,9993,0 +26219,061.+Ariminium,645,468,849091866,8586,0 +26220,211...barba,465,348,6920960,4562,0 +26221,North+Barba+026,422,361,699796330,9747,0 +26222,BEZDZIETNY+KAWALER,415,635,848913998,8538,0 +26223,Wioska+pdw78,472,650,698585370,9164,0 +26224,K34+-+%5B102%5D+Before+Land,443,351,699088769,10259,0 +26225,%23.41+Wioska+barbarzy%C5%84ska,648,470,849054582,2773,0 +26226,Wioska+barbarzy%C5%84ska,653,453,699524891,9554,0 +26227,K34+-+%5B013%5D+Before+Land,447,349,699088769,10259,0 +26228,Myk+i+do+kieszonki,359,581,9319058,10104,0 +26229,013.+Dla+flag,349,442,698630507,8082,0 +26230,D%C4%85browa+0014,364,576,849096972,10718,0 +26231,%230004+BigKnaga,467,343,1238300,10178,0 +26232,A007,405,625,848912772,4253,0 +26234,Bagienko.Anker...,377,399,699713515,8711,0 +26235,015+VW+Wioska+barbarzy%C5%84ska,363,415,3108144,5305,0 +26236,BAC%C3%93WKA+%7C008%7C,632,412,7394371,12154,0 +26237,Piek%C5%82o+to+inni,577,361,848956765,10160,0 +26240,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,377,607,849097937,9854,0 +26241,%7CA%7C+Capitol,480,648,698807570,10495,0 +26243,MojeDnoToWaszSzczyt,568,353,848915730,9938,0 +26244,0009,612,610,6417987,7168,0 +26245,North+Barba+020,425,355,699796330,9971,0 +26247,qqq,628,400,699429153,9966,0 +26248,007+MONETKI,654,469,7588382,8401,0 +26249,Jestem+Poza+Kontrol%C4%85,348,560,8004076,9880,0 +26251,20.+%C5%81owcza%C5%84skie+wygibasy,370,593,8665783,8487,0 +26252,Aboard+na,489,659,849004274,9835,0 +26253,Avanti%21,345,513,698625834,9950,0 +26254,Jehu_Kingdom_59,644,437,8785314,4470,0 +26255,098,618,607,698786826,10495,0 +26257,The+Game+Has+Only+Just+Begun,344,522,9280477,9933,0 +26259,%2A036%2A,631,590,698670524,8289,0 +26260,099,620,606,698786826,10495,0 +26261,Valhalla+A2,376,603,849097002,7758,0 +26262,A029+La+Mata,655,457,113796,10160,0 +26263,%2ALister,576,638,699443920,9994,0 +26264,The+Game+Has+Only+Just+Begun,348,536,9280477,9976,6 +26265,skev,636,421,9228039,10287,0 +26266,Hibana,372,590,849095992,8636,0 +26267,Krzychu+%2C+kadetem+tera+.,588,630,848995242,10362,7 +26268,%2ANomad,578,642,699443920,9761,0 +26269,Szlachcic,346,461,6258092,10019,0 +26270,032,569,641,699828685,9976,0 +26271,Wioska+Tomek+z+Tyyrra+X+Adam547,371,400,610196,398,0 +26272,Wioska+Bochun10,337,501,7449254,8202,0 +26274,0588,544,656,698659980,9821,0 +26275,off+100+%25,361,575,849012521,10248,0 +26276,Taras,590,365,699485250,10211,5 +26278,024,656,526,699351301,9840,0 +26279,%2ANonsens,577,643,699443920,9761,0 +26280,Wioska+barbarzy%C5%84ska,347,446,393668,6347,0 +26281,Chekku+-+meito,339,525,9280477,10066,0 +26282,MojeSzczytToTw%C3%B3jDno,510,338,828637,10720,0 +26284,079...barbarka,460,346,6920960,10226,0 +26285,034,659,490,7085502,9439,9 +26287,Piek%C5%82o+to+inni,570,358,848956765,10160,0 +26288,Wioska+majonespzn,614,613,6417987,10495,0 +26289,98k%24+Grvvyq,652,559,699676005,10495,0 +26290,c+Wioska+015,395,387,3909522,8671,0 +26291,Nowa+31,646,567,698702991,9824,0 +26292,No+Way,345,451,6258092,10495,0 +26293,109,348,459,6258092,10019,0 +26294,The+Game+Has+Only+Just+Begun,345,515,9280477,9976,0 +26295,Battery,630,595,848926293,4783,0 +26296,Maszlug+kolonia+XVI,364,420,848977649,5129,0 +26297,079,628,597,698999105,3441,0 +26298,083,653,556,849095227,9761,0 +26299,064...barbarka,456,346,6920960,10237,0 +26300,Wioska+002,388,614,848912772,10178,0 +26301,024.barbara+8,339,508,1830149,4328,0 +26302,0630,379,601,698659980,10559,0 +26303,JawwmG+P,651,561,698635863,9574,0 +26304,A047,587,365,699485250,7656,0 +26305,16.+Trumienka,637,412,699298370,9711,0 +26306,Wioska+Bochun10,339,500,7449254,8754,0 +26307,041,649,552,698999105,10311,0 +26308,Ave+Why%21,497,658,698585370,9818,0 +26309,Jaaa,623,596,698635863,10479,0 +26310,EMERYTOWANY+KUZYN,428,639,848913998,4267,0 +26311,O22+Inari,660,523,699272880,10016,0 +26313,045,655,547,698999105,10311,0 +26314,Wioska+barbarzy%C5%84ska,612,609,6417987,5470,0 +26315,0023,413,366,848913037,8032,0 +26316,.030.,486,370,698489071,10393,0 +26317,0293,533,659,698659980,10019,0 +26318,Lord+Lord+Franek+.%23054,532,344,698420691,9968,0 +26319,Jestem+Poza+Kontrol%C4%85,349,550,8004076,8653,0 +26320,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,656,699828442,9808,0 +26321,kulik+000,400,508,698290577,9877,0 +26322,Wioska+barbarzy%C5%84ska,649,567,0,1963,0 +26324,A0250,338,488,8841266,10362,0 +26325,KUZYN,413,637,848913998,10160,0 +26326,082,617,606,698786826,10495,0 +26327,Macp+4,339,514,61791,4009,0 +26329,ona,389,386,8419570,10168,0 +26330,K34+-+%5B019%5D+Before+Land,450,355,699088769,10259,0 +26331,K34+-+%5B127%5D+Before+Land,444,347,699088769,10016,0 +26334,Darmowe+przeprowadzki,474,660,848935389,11321,0 +26335,037+mys,556,648,699828685,9976,0 +26336,M181_043,358,425,393668,9043,0 +26337,Wioska+003,388,613,848912772,10178,0 +26338,090...bar,457,343,6920960,10301,0 +26339,Wioska+barbarzy%C5%84ska,483,369,699658023,9645,0 +26340,0456,378,602,698659980,3893,0 +26341,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,658,699828442,9825,0 +26342,23.+KaruTown,638,413,849060446,9735,0 +26343,%23.18+XXX,661,475,849054582,10019,0 +26345,Szulernia,410,364,7249451,9989,0 +26346,010.+Fulham,484,657,848953066,11130,0 +26347,Wiocha,426,363,849096544,10728,0 +26348,KREV+003,644,564,848988744,9188,0 +26349,0193,556,650,698659980,10019,0 +26350,%C5%BBUBRAWKA+009,600,629,33900,10005,0 +26351,MojeSzczytToTw%C3%B3jDno,511,342,828637,10474,0 +26352,%2A040,590,635,699567608,9387,0 +26353,Lord+Lord+Franek+.%23035,521,344,698420691,10047,0 +26354,psycha+sitting,448,649,699736927,10311,0 +26355,Wioska+Bochun10,338,497,7449254,10495,3 +26356,038,654,545,849095227,9797,0 +26357,%230060+barbarzy%C5%84ska,468,341,1238300,10178,0 +26358,NI2,347,458,6258092,10495,0 +26359,0024,415,369,848913037,8702,0 +26360,Szlachcic,347,465,6258092,10393,0 +26361,Lord+Lord+Franek+.%23055,534,343,698420691,9960,0 +26362,Dzielnica+handlowa,481,341,849048216,4918,0 +26363,off+100+%25,355,572,849012521,10256,0 +26364,016%29+Pustk%C3%B3w+Wilczkowski,538,348,849097103,2807,0 +26365,Krosno+11,532,341,7485877,4281,0 +26366,041...ZACH%C3%93D,453,345,6920960,10220,0 +26367,I%23021,598,372,2065730,8150,0 +26368,0024,418,358,699431255,9958,0 +26369,Lord+Lord+Franek+.%23056,537,343,698420691,10029,0 +26370,So%C5%82tys+Wsi+Legionistars,396,377,849027025,7586,0 +26371,yogi+czysta,546,651,2808172,6469,0 +26372,022+Pot%C4%99%C5%BCny+Dzban,392,561,699382126,10474,0 +26373,049,638,532,699351301,10160,0 +26374,011.+Millwall,484,663,848953066,9197,0 +26376,Wioska+barbarzy%C5%84ska+II,377,402,8967440,2861,0 +26377,Jestem+Poza+Kontrol%C4%85,345,540,8004076,9764,0 +26378,Sony+911,639,585,1415009,7857,0 +26379,BoOmBaa..,436,358,6169408,10247,0 +26380,D+004,659,503,8078914,9244,0 +26382,014,458,652,698650301,7148,0 +26383,M181_020,359,429,393668,9547,0 +26384,troja4,560,350,698290319,9955,0 +26385,K34+x033,409,367,698364331,10705,0 +26386,Wioska+barbarzy%C5%84ska,618,389,698241117,6980,0 +26387,cc+Sqnowqqqqqqqqqqqqqqqqqqq,409,376,3909522,10160,0 +26388,Szlachcic,345,461,6258092,10019,0 +26389,005+Mikrus+V,392,619,8268010,9835,0 +26390,Piek%C5%82o+to+inni,574,360,848956765,10160,0 +26391,110,630,410,7085502,9899,0 +26392,12.+Danucha,372,600,8665783,10273,0 +26393,x005,357,568,9264752,10495,0 +26394,Z%C5%82a,540,349,570100,4595,0 +26395,cc+pol006qqqqqqqqqqqqqqqqqqqqq,398,376,3909522,5194,0 +26396,MojeSzczytToTw%C3%B3jDno,511,340,828637,10476,0 +26397,008%29+S%C5%82upiec,545,350,849097103,2574,0 +26398,Weso%C5%82ych+%C5%9Awi%C4%85t,572,354,848915730,10066,0 +26399,cc+Wielka+Mqqqqqqqqqqqqqqq,407,376,3909522,10155,0 +26400,Darma+dla+zawodnika,514,656,699494488,10475,0 +26401,%3D037%3D+Wioska+barbarzy%C5%84ska,655,552,3781794,8759,0 +26402,Janusz+biznesu,590,627,848995242,10495,0 +26403,017+bounce+xD,589,365,1018357,10019,0 +26404,026,564,646,699828685,9976,0 +26405,MojeDnoToWaszSzczyt,559,352,699697558,10160,0 +26406,BEZDZIETNY+KAWALER,418,635,848913998,8848,0 +26408,Wioska+barbarzy%C5%84ska,659,469,699574408,8646,0 +26409,Dzikie+wsparcie,470,658,848935389,9809,0 +26410,Myk+i+do+kieszonki,359,578,9319058,9799,0 +26411,018+koczownik%C3%B3w,641,424,9238175,10282,9 +26412,Obrze%C5%BCa+092,551,652,848915531,7597,0 +26413,Jaaa,660,489,698635863,10322,0 +26414,JEDNOR%C4%98KI+BANDYTA,411,634,848913998,9648,0 +26415,Wioska+037,632,591,848971079,9761,0 +26416,MojeSzczytToTw%C3%B3jDno,508,340,828637,10495,0 +26417,044...P%C3%93%C5%81NOC,461,344,6920960,10265,0 +26418,0041,417,367,848913037,9993,8 +26419,017,424,642,699736927,3605,0 +26420,Wioska+NePtuNn998,465,660,698807570,9952,0 +26421,DW9,346,446,393668,10223,0 +26422,0197,557,650,698659980,10083,0 +26423,A017+go%C5%9B%C4%87+D0dG3r3k,657,465,113796,10301,0 +26424,Wioska+barbarzy%C5%84ska,379,398,848886056,3387,0 +26425,Wioska+barbarzy%C5%84ska,346,445,393668,7469,0 +26426,cc+Wioska+M6,403,375,3909522,8201,0 +26427,sony911,586,639,1415009,10226,0 +26428,Chekku+-+meito,344,528,9280477,8993,0 +26429,BEZDZIETNY+KAWALER,414,632,848913998,6682,0 +26430,067+%7C+PALESTINA,642,427,9228039,3469,0 +26431,North+P%C5%82o%C5%84sk,426,356,699796330,9898,0 +26432,Szlachcic,405,372,698160606,10487,0 +26433,Chekku+-+meito,343,533,9280477,9072,0 +26434,0002,412,370,848913037,9993,0 +26435,049,645,565,699316421,9425,0 +26436,Wioska+barbarzy%C5%84ska,399,371,698160606,7367,0 +26437,%2A034%2A,633,588,698670524,7205,0 +26438,Pobozowisko,384,613,699513260,10957,2 +26439,019+VW+Wioska+barbarzy%C5%84ska,368,421,3108144,6142,0 +26440,08.+Maximum+Acceleration,495,657,849100262,9811,0 +26441,psycha+sitting,457,651,699736927,5018,0 +26442,033+NePtuNn998,468,658,699834004,9976,0 +26443,029,660,495,849006412,7619,0 +26444,028+%7C+PALESTINA,638,425,9228039,9544,0 +26445,z+035,587,639,699342219,10220,0 +26446,Piek%C5%82o+to+inni,568,359,848956765,10160,0 +26447,Wioska+barbarzy%C5%84ska,394,393,698364331,1491,0 +26448,Wioska+barbarzy%C5%84ska,342,541,8004076,3210,0 +26451,A0302,340,487,8841266,10362,0 +26452,0011,418,363,848913037,9993,7 +26453,O27+Valga,660,512,699272880,10066,0 +26454,Wioska+007,387,388,8419570,10168,0 +26455,Bagdad,499,337,8847546,10068,0 +26456,100,624,605,698786826,10495,0 +26458,Wioska+000,659,530,2999957,6870,0 +26460,Skazany+Na+Instynkt,367,583,8004076,9621,0 +26461,Kentin+ufam+Tobie,340,476,699783765,10000,0 +26462,0015+centrum,389,380,8419570,10168,0 +26463,FKG+01-08,415,415,356642,9835,0 +26464,.14.+Limoges+a,370,600,9021920,10026,0 +26465,Wioska+4,423,638,699736927,8790,0 +26466,0459,379,599,699513260,3815,0 +26467,A0251,340,491,8841266,10362,0 +26468,021+Wioska,656,465,699671454,6079,0 +26469,wCana,444,652,699849210,4959,0 +26470,Jaaa,629,592,698635863,10263,0 +26471,Wioska+barbarzy%C5%84ska,415,638,699736927,5154,0 +26472,A020+darek+jackr1,659,452,113796,10301,0 +26473,Monetkownia,608,616,699759128,10237,0 +26474,Lord+Lord+Franek+.%23012,535,347,698420691,10252,0 +26475,B+012,658,529,8078914,9801,0 +26476,045,647,554,699316421,8235,0 +26477,005.,402,627,2665207,9835,0 +26478,076,622,599,698786826,8416,0 +26479,0017,415,366,848913037,9993,0 +26480,B+044,654,531,8078914,9579,0 +26481,Lord+Lord+Franek+.%23057,521,340,698420691,9959,0 +26482,Wioska+barbarzy%C5%84ska,338,519,699262350,5683,0 +26483,004+Eden,380,393,849059457,10205,0 +26484,0493,541,653,698659980,10252,0 +26485,Kentin+ufam+Tobie,340,481,699783765,10000,0 +26487,Szlachcic,348,451,6258092,10495,0 +26488,Darmowe+przeprowadzki,471,656,848935389,9809,0 +26489,022.,401,630,2665207,9835,0 +26490,Lord+Lord+Franek+.%23036,530,346,698420691,9984,0 +26491,016,381,395,849059457,2427,0 +26492,011...ZACH_O,454,352,6920960,10495,0 +26493,A0070,343,493,8841266,10362,0 +26495,0025,413,367,848913037,6296,0 +26496,039+040,550,346,699491076,10001,0 +26497,XXXX,496,342,699883079,10036,0 +26498,039,663,505,7085502,9229,0 +26499,%3D046%3D+Wioska+barbarzy%C5%84ska,655,548,3781794,10580,0 +26500,A026,587,369,699485250,10211,0 +26501,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,389,619,849097937,8278,0 +26502,cc+Osada+11,400,374,3909522,5636,7 +26503,jaaa,634,581,698635863,10495,0 +26504,No.+8,479,662,849089459,9276,0 +26505,022,358,540,6853693,10487,0 +26506,Piek%C5%82o+to+inni,576,360,848956765,10019,0 +26507,025,419,639,849089459,8425,0 +26508,2.10,345,455,6258092,9188,0 +26509,BEZDZIETNY+KAWALER,413,635,848913998,10160,0 +26510,Wioska+barbarzy%C5%84ska,549,345,699072129,10226,0 +26511,Pobozowisko,385,611,699513260,10806,0 +26512,%230047+barbarzy%C5%84ska,473,340,1238300,10178,0 +26513,sony911,588,633,1415009,10226,0 +26514,042,651,544,849095227,9740,0 +26515,20.+Morasko,508,658,849092769,11946,0 +26516,B11,647,444,849093742,10083,0 +26517,B+045,661,528,8078914,9256,0 +26518,Lord+Lord+Franek+.%23151,503,340,698420691,9959,0 +26519,044,649,562,699316421,6006,0 +26520,2.06,342,455,3502565,7770,0 +26521,BEZDZIETNY+KAWALER,415,632,848913998,6237,0 +26522,A+010,603,376,6384450,10362,0 +26524,Jestem+Poza+Kontrol%C4%85,349,558,8004076,9742,0 +26525,Alicization7,461,646,699736927,10311,0 +26526,%2ANoname,576,642,699443920,8802,0 +26527,005+Oxenfurt,467,659,699834004,7765,0 +26528,Krakowskie+Przedmie%C5%9Bcie+CXSP%C5%BB,489,662,849004274,9782,0 +26529,01.+Jamajka,637,413,849060446,9735,0 +26530,Szlachcic,345,464,6258092,10083,0 +26531,0012,386,384,8419570,9837,0 +26533,Wioska+Conana,383,395,8967440,3956,0 +26534,Marshmike,493,335,849096592,5414,0 +26535,Myk+i+do+kieszonki,354,572,9319058,9799,0 +26536,Kentin+ufam+Tobie,345,475,699783765,10064,1 +26538,Darmowe+przeprowadzki,473,663,848935389,11041,0 +26539,0094,622,395,698416970,6984,0 +26540,Postarajcie+si%C4%99+bardziej+%3B%2A,600,371,7462660,10122,0 +26541,Bagdad,503,338,8847546,10068,0 +26542,Piek%C5%82o+to+inni,581,361,848956765,10160,3 +26543,%230006+deleted,474,339,1238300,10178,0 +26544,032+Barba,657,488,2135129,9553,0 +26545,Chekku+-+meito,345,522,9280477,9976,0 +26546,KR%C3%93L+PAPI+WIELKI,607,624,698191218,10000,0 +26547,Bagienko.Anker...,376,394,699713515,7175,0 +26548,043,660,531,699351301,9761,0 +26549,009%29+Wi%C4%85z%C3%B3w,545,343,849097103,2910,0 +26550,056.+Metis,658,468,849091866,9193,0 +26551,0495,517,658,698659980,10083,0 +26552,009+Niuniuniuniu,539,346,849108623,10426,0 +26553,lllllllll,623,399,699429153,10224,0 +26554,Wioska,374,545,849084005,10178,0 +26555,023+MONETKI,661,495,7588382,9544,0 +26556,Wyngiel+we+wsi,552,347,699072129,8402,0 +26557,O17+Caripito,661,526,699272880,10006,0 +26558,kathare,555,648,873575,9801,0 +26559,030+MONETKI,661,482,7588382,9544,0 +26560,kathare,560,651,873575,9225,0 +26561,001.+A-RE-SE-EY,590,528,848967710,10252,0 +26562,Wioska+barbarzy%C5%84ska,485,662,698585370,8843,0 +26563,Nowa+wioska,448,346,699088769,10535,0 +26565,Mordor,623,397,699759128,8246,0 +26567,008,492,656,698650301,10160,0 +26568,022+Harry+Potter,394,618,8268010,7086,0 +26569,%2A4623%2A+Ko%C5%84+mechaniczny,649,437,7973893,10287,9 +26570,I%23020,597,372,2065730,9797,0 +26571,010,593,632,699316421,6404,0 +26572,aAa+Szlaban+2,607,615,699778867,12154,0 +26573,Piek%C5%82o+to+inni,573,357,848956765,10160,0 +26575,Wioska+106,640,583,848971079,10016,0 +26576,W+07,646,437,699524891,9771,0 +26577,Aleje+Jerozolimskie+BO,494,664,849004274,9835,0 +26578,0496,534,657,698659980,10019,0 +26579,023,564,643,699828685,9976,0 +26580,z+006,574,640,699342219,10476,8 +26581,0662,380,602,698659980,10559,0 +26582,BEZDZIETNY+KAWALER,417,633,848913998,9449,0 +26583,PUSTA,634,590,6929240,7044,0 +26584,Szulernia,411,365,7249451,9993,0 +26585,0497,526,661,698659980,10160,0 +26586,041,570,640,699828685,9976,0 +26587,Valevag+140,357,434,393668,2741,0 +26588,Gattacka,613,386,699298370,10890,0 +26589,Wioska,340,535,849096458,9043,0 +26590,053.,408,633,2665207,9835,0 +26592,Oman,482,338,849048216,4566,0 +26593,006,456,342,2502956,10019,0 +26594,MojeDnoToWaszSzczyt,559,355,699697558,10160,0 +26595,101,623,604,698786826,10495,8 +26596,Wioska,597,520,698845189,7389,0 +26597,No.+5,476,658,698826986,8969,0 +26598,Wioska+barbarzy%C5%84ska,489,341,698739350,9761,0 +26599,040.,397,619,2665207,9835,0 +26600,Gattacka,617,387,699298370,10470,4 +26601,002.,484,654,849034882,10838,0 +26602,Darma+dla+zawodnika,514,663,699494488,10566,0 +26603,Szczytno,542,343,849108784,2696,0 +26604,Wioska+barbarzy%C5%84ska,657,451,113796,8052,0 +26605,Lord+Lord+Franek+.%23058,521,338,698420691,9976,0 +26606,%2A085%2A,359,416,699273451,10211,0 +26607,116...centr,457,342,6920960,10229,0 +26608,046,612,381,849010255,10039,0 +26609,Jednak+wol%C4%99+gofry,423,644,699736927,2670,0 +26610,Wioska+Bochun10,338,515,7449254,8192,6 +26612,Kentin+ufam+Tobie,352,443,699783765,9611,0 +26613,Maradona,611,613,8815749,10019,0 +26614,Mniejsze+z%C5%82o+0034,342,499,699794765,7722,0 +26615,Gorgoneion,382,393,8419570,9448,0 +26616,off+100+%25,353,567,849012521,10257,0 +26617,Wioska+barbarzy%C5%84ska+029,500,339,6343784,4634,0 +26618,021+Straszne+jaskinie,394,615,8268010,7230,0 +26619,harley,620,391,699298370,10311,0 +26620,Wioska+barbarzy%C5%84ska,615,394,0,2340,0 +26621,PIERWSZA,363,585,698353083,10971,0 +26622,070,629,595,698786826,9462,0 +26623,%230090+barbarzy%C5%84ska,478,337,1238300,9739,0 +26624,Piek%C5%82o+to+inni,585,361,848956765,10160,0 +26625,Wioska+013,381,388,8419570,8236,0 +26626,Myk+i+do+kieszonki,356,567,9319058,9799,0 +26627,Lessie,663,510,699851345,9691,4 +26628,116+Wioska+barbarzy%C5%84ska,544,349,699491076,9877,0 +26629,045,661,497,7085502,7463,0 +26630,Charfa,518,343,699072129,10495,0 +26631,%23011+W%C5%82adca+Piekie%C5%82+ZENIT,350,438,849096215,1982,0 +26632,BEZDZIETNY+KAWALER,416,635,848913998,10160,0 +26633,Bagienko.Anker...,377,393,699713515,5945,0 +26634,Myk+i+do+kieszonki,357,581,9319058,9799,0 +26635,0246,558,652,698659980,10160,0 +26636,Wioska+Bochun10,337,493,7449254,10311,0 +26637,Maradona,610,614,8815749,10019,0 +26638,A004,612,380,699761749,10401,0 +26639,25.+KaruTown,634,412,849060446,8474,0 +26640,001.,491,662,849034882,10728,0 +26641,Dzikie+wsparcie,473,657,848935389,9809,0 +26642,051,661,521,698999105,9828,0 +26643,Chekku+-+Meito,343,509,9280477,10268,2 +26644,003...CENTR,457,352,6920960,10495,0 +26645,BETON+004,621,610,699277039,10495,0 +26646,Jaaa,662,489,698635863,10169,0 +26647,029,567,648,699828685,9976,0 +26648,004+Wioska+barbarzy%C5%84ska,336,508,915113,4063,0 +26649,Free+Stevie%21,500,505,699785935,9835,0 +26650,_2_,490,336,9113064,2651,0 +26652,016+barbarzy%C5%84ska,643,422,9238175,10285,0 +26653,Piek%C5%82o+to+inni,573,360,848956765,10019,0 +26654,Jehu_Kingdom_15_,651,437,8785314,9993,0 +26655,MojeSzczytToTw%C3%B3jDno,509,340,828637,10478,1 +26656,Okropna,542,349,570100,3655,0 +26657,Wioska+barbarzy%C5%84ska,588,637,848995242,10478,0 +26658,004+Azyl,641,422,9238175,10097,0 +26659,The+Game+Has+Only+Just+Begun,347,536,9280477,9976,5 +26660,tego+nie,516,657,699494488,10474,0 +26661,KUZYN,413,639,848913998,4552,0 +26662,%2ANewbee,577,642,699443920,9761,0 +26663,Weso%C5%82ych+%C5%9Awi%C4%85t,555,348,848915730,5564,0 +26664,038.,399,621,2665207,9835,0 +26665,Szulernia,406,366,7249451,9964,1 +26666,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,659,699828442,9994,0 +26667,Jestem+Poza+Kontrol%C4%85,352,553,8004076,9127,0 +26668,046,658,539,698999105,10311,0 +26669,K34+-+%5B122%5D+Before+Land,434,350,699088769,10400,0 +26670,Mobil,537,652,7589468,8819,0 +26671,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,652,699828442,9994,0 +26672,68k%24+Grvvyq,641,572,699676005,7353,0 +26673,0404,548,635,698659980,10160,0 +26674,Wioska+barbarzy%C5%84ska+Krrr,370,404,8967440,3065,0 +26675,040+039,549,350,699491076,10001,0 +26676,Myk+i+do+kieszonki,354,570,9319058,9799,0 +26677,K34+-+%5B015%5D+Before+Land,444,350,699088769,10259,0 +26678,O23+Kiruna,662,514,699272880,10520,0 +26679,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,650,699828442,9825,0 +26680,Village,520,655,849094067,8479,0 +26681,B+013,660,536,8078914,9692,9 +26682,%2A011+Nemeczek%2A,362,411,2415972,9097,0 +26683,amator,554,652,848915531,9694,0 +26684,%3D040%3D+Wioska+barbarzy%C5%84ska,653,553,3781794,8293,0 +26685,Bizy+1,499,657,698585370,10186,0 +26686,M181_047,358,428,393668,6838,0 +26687,%5B154%5D,638,581,8000875,9561,0 +26688,06+Wioska,441,651,698993706,9525,0 +26689,%3D043%3D+Wioska+barbarzy%C5%84ska,651,550,3781794,10580,0 +26690,Kentin+ufam+Tobie,340,475,699783765,10000,5 +26691,cc+pol005qqqqqqqqqqqqqqqqqqqqqqq,395,381,3909522,6008,0 +26692,013+Wioska+zwiadowcza,551,347,699072129,4674,0 +26693,Darmowe+przeprowadzki,468,656,698807570,9706,0 +26694,Wioska+barbarzy%C5%84ska,663,509,699598425,10728,0 +26695,083,619,613,698786826,10495,0 +26696,Jestem+Poza+Kontrol%C4%85,347,547,8004076,9880,0 +26697,jaaa,637,580,698635863,9656,0 +26698,Darma+dla+zawodnika,524,662,7860453,10226,0 +26699,%230007+SnniKeer,473,341,1238300,10178,0 +26700,Psycha+Siada,459,659,698807570,10209,0 +26701,007,589,631,699316421,10099,0 +26702,Obrze%C5%BCa+094,556,649,848915531,6484,0 +26703,Seljukia,422,638,849089459,7015,0 +26704,Wioska+barbarzy%C5%84ska+%2C,603,626,848995242,10351,0 +26705,NI5,346,458,6258092,10495,0 +26706,R%C4%99cznik+do+zmiany,374,407,699697558,10160,0 +26707,51.+KaruTown,642,434,849091866,9711,0 +26708,Jeruzalem,419,641,699736927,6824,0 +26710,050,662,520,698999105,10311,0 +26711,I%23015,603,379,2065730,8773,0 +26712,Jan+dzik+III,644,439,879782,8671,0 +26713,111,653,439,849088515,8755,0 +26714,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,645,699828442,9825,0 +26715,Szlachcic,409,372,698160606,10476,0 +26716,M181_026,360,421,393668,9883,9 +26717,.019.,492,374,698489071,10316,0 +26718,Myk+i+do+kieszonki,366,585,849012521,10654,0 +26719,O06+Alicante,661,518,699272880,10234,0 +26720,043.+Malaca,645,438,849091866,9226,7 +26721,Weso%C5%82ych+%C5%9Awi%C4%85t,585,362,848915730,10019,0 +26722,K44+x010,431,413,698364331,10495,0 +26723,xyz+%23006+TerrorMachine,581,363,7555180,10152,0 +26724,018.,402,631,2665207,9835,0 +26725,004+RVW+Wioska+barbarzy%C5%84ska,364,408,3108144,6119,0 +26726,028+serniczkowe+lody,511,664,8954402,9729,0 +26727,Myk+i+do+kieszonki,350,570,849012521,9035,0 +26728,Frombork,541,342,849108784,4101,0 +26730,%230009+BudzikRide,469,339,1238300,10178,0 +26731,%3D058%3D+Wioska+barbarzy%C5%84ska,654,548,3781794,8533,0 +26732,130,473,346,7271812,4303,0 +26733,A+022,607,375,6384450,8601,0 +26734,A030+Sierpc,656,458,113796,10160,0 +26735,amator,555,654,848915531,10130,0 +26736,014%29+%C5%BB%C3%B3rawina,540,342,849097103,4001,0 +26737,2.02,344,453,3502565,7638,0 +26738,Wioska+barbarzy%C5%84ska,337,518,699262350,4938,0 +26740,EMERYTOWANY+KUZYN,430,645,848913998,10178,0 +26741,Tunis,414,641,699736927,8844,0 +26743,Taki+Pan,497,340,698739350,6176,0 +26744,035.+Luguvalium,655,472,849091866,9597,0 +26745,Dek,575,361,699485250,9735,0 +26746,Wioska+barbarzy%C5%84ska,349,445,393668,6125,0 +26747,Wioska+barbarzy%C5%84ska,350,451,6258092,7448,0 +26748,013+Blocksberg,661,484,2135129,9500,0 +26749,wLevy,445,655,699849210,3894,0 +26750,025+pawelk95,664,486,2135129,9044,0 +26751,Klaudek8,594,368,849092309,7754,0 +26752,--Polan222,619,386,8096537,10114,0 +26753,MojeDnoToWaszSzczyt,568,352,848915730,9938,0 +26754,Kentin+ufam+Tobie,341,462,699783765,10233,0 +26755,Hej+hoo,438,355,699191455,10495,0 +26756,A0252,340,488,8841266,10362,0 +26757,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,658,699828442,9809,0 +26758,Piek%C5%82o+to+inni,572,358,848956765,10019,0 +26759,Szlachcic%2FTaran,629,409,699759128,10237,2 +26760,Terrolowelove,590,366,699485250,10211,0 +26761,034,616,392,699298370,3663,0 +26762,cc+Radom,396,375,3909522,9633,0 +26763,Wioska+barbarzy%C5%84ska,345,448,393668,10301,0 +26764,Piek%C5%82o+to+inni,557,350,848956765,9555,0 +26765,Wioska+Bochun10,339,486,7449254,10311,0 +26766,013+Brugge,466,658,699834004,10104,0 +26767,52k%24+Grvvyq,647,571,699676005,7184,0 +26768,%C5%BBUBRAWKA+008,600,628,33900,9970,0 +26769,K34+-+%5B116%5D+Before+Land,451,351,699088769,9797,0 +26770,019,664,494,7085502,9740,0 +26771,083...TOM,483,337,6920960,9304,0 +26772,Brzoz%C3%B3wka,343,457,6258092,10362,0 +26773,Orze%C5%82+Wyl%C4%85dowa%C5%82,453,655,698807570,10252,0 +26774,Wioska+3,420,640,699736927,9976,0 +26775,Wioska+barbarzy%C5%84ska,664,509,699598425,10728,0 +26776,Village,517,657,849094067,12154,0 +26777,0392,559,654,698659980,9727,0 +26778,Wioska+barbarzy%C5%84ska,399,373,3484132,7769,0 +26780,wBisca,449,655,699849210,8251,0 +26781,%230058+barbarzy%C5%84ska,471,339,1238300,10178,0 +26782,pol003,395,378,849027025,6600,0 +26783,%2A117%2A,360,419,699273451,10211,0 +26784,005+always+remember+LC,565,644,699828685,9976,8 +26785,_4_,493,336,9113064,2536,0 +26786,B+020,659,527,8078914,9634,0 +26788,S_011,512,662,849049155,7740,0 +26789,Szulernia,413,362,7249451,9991,0 +26790,Tere+fere+hihihi,372,404,8967440,9354,4 +26791,So%C5%82tys+Wsi+Legionistars,397,377,849027025,9783,0 +26792,A036+Wioska+barbarzy%C5%84ska,655,459,113796,10160,0 +26793,J02.,364,593,849090130,8137,0 +26794,Lord+Lord+Franek+.%23059,534,345,698420691,10141,0 +26795,00503Ciapek,435,430,3909522,9916,0 +26796,psycha+sitting,446,654,699736927,9072,0 +26797,039,665,497,699351301,7911,0 +26798,A+019,604,376,6384450,10362,0 +26799,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,659,698807570,4725,0 +26800,083,605,378,2502956,8325,0 +26801,Charfa,513,343,699072129,10232,0 +26802,EMERYTOWANY+KUZYN,428,640,848913998,6144,0 +26803,Grvvyq+115k%24,633,595,699676005,4682,0 +26804,0498,532,655,698659980,10019,0 +26805,121,625,424,7085502,9824,0 +26806,%3D067%3D+Wioska+barbarzy%C5%84ska,653,551,3781794,9572,0 +26807,024,565,645,699828685,9976,0 +26808,Wioska+Ysiek,656,551,699739523,2750,0 +26809,2.01,343,451,3502565,5681,0 +26810,049+Mallaig,629,594,699272880,8838,6 +26811,016%7C%7C+Draco,497,661,849035525,10019,0 +26812,MojeDnoToWaszSzczyt,561,354,699697558,10160,0 +26813,0157,391,623,7085510,9003,0 +26814,041+040,551,349,699491076,10001,0 +26816,off+100+%25,350,566,849012521,10265,0 +26817,%23.40+Wioska+barbarzy%C5%84ska,661,469,849054582,3672,0 +26818,074+Kofu,655,454,7092442,10297,0 +26819,B+017,658,530,8078914,9771,0 +26820,O05+Ourense,660,518,699272880,10030,0 +26821,Obrze%C5%BCa+095,556,652,848915531,4201,0 +26822,So%C5%82tys+Wsi+Enaor1990,398,378,849027025,9725,0 +26823,Wioska+barbarzy%C5%84ska,651,454,699524891,9252,0 +26824,Klaudek11,595,372,849092309,7168,0 +26825,Monetkownia,617,608,699759128,10237,0 +26826,016+nie+ma+spania+na+wyjazdach,443,647,699238479,4333,0 +26828,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,659,699828442,9825,0 +26829,Piek%C5%82o+to+inni,560,347,848956765,10160,0 +26830,cc+Gorzk%C3%B3wqqqqqqqqqqqqq,397,376,3909522,7834,0 +26831,A0255,340,490,8841266,10362,0 +26832,034+Buongiorno,606,455,698829590,10083,0 +26833,Ave+Why%21,476,663,698585370,9175,0 +26834,O13+Stokkseyri,661,523,699272880,10030,0 +26835,Myk+i+do+kieszonki,365,584,849012521,5767,0 +26836,040%7C%7C+Lupus,482,660,849035525,9761,0 +26837,15.+Budujemy+mosty,636,412,849060446,9735,0 +26838,Chekku+-+meito,341,526,9280477,9976,0 +26839,115...center,451,345,6920960,9143,0 +26840,Szulernia,410,363,7249451,9967,0 +26841,O02+Pyke,660,519,699272880,10122,0 +26843,0196,556,654,698659980,10019,0 +26844,P022+Karakura,655,512,8096537,9761,0 +26845,North+Barba+040,420,358,699796330,9455,0 +26846,015+M,651,520,699351301,10207,0 +26847,psycha+sitting,429,647,699736927,4911,0 +26848,Wioska+barbarzy%C5%84ska,651,449,699524891,9169,0 +26849,D+015,661,504,8078914,8961,0 +26850,Wioska+barbarzy%C5%84ska,347,443,393668,10281,0 +26852,D+013,664,506,8078914,9655,0 +26853,Weso%C5%82ych+%C5%9Awi%C4%85t,561,353,848915730,10636,0 +26854,Wioska+barbarzy%C5%84ska+021%7C,546,343,6343784,9619,0 +26855,004+Czarna+pantera,392,621,8268010,9835,0 +26856,0499,531,660,698659980,8979,0 +26857,Wioska+Ukryta+w+Li%C5%9Bciach,373,603,8607734,9368,0 +26858,026+Legio+I+Traiana+Fortis,643,489,699878150,10971,0 +26859,051.,407,635,2665207,8719,0 +26860,067,656,550,849095227,9745,0 +26861,%3F004,538,656,699828685,9976,0 +26862,A039,594,374,699485250,10211,5 +26863,%7CB%7C+Claywood,485,660,698147372,10495,0 +26864,BAC%C3%93WKA+%7C027%7C,633,415,7394371,4817,0 +26865,Jednak+wol%C4%99+gofry,425,646,699736927,6315,0 +26866,Wioska,403,422,7462660,10122,0 +26867,Sony+911,582,641,1415009,10278,0 +26869,Szlachcic%2FTaran,622,397,699759128,9086,0 +26870,Gattacka,618,388,699298370,10470,0 +26871,--Rapid+City,623,393,8096537,9376,0 +26872,Jestem+Poza+Kontrol%C4%85,346,555,8004076,9880,0 +26873,Wioska+barbarzy%C5%84ska,400,371,698160606,7465,0 +26874,Wioska+Bochun10,337,491,7449254,10311,0 +26875,kathare,561,649,873575,10232,0 +26876,609%7C373,606,377,699580120,9570,0 +26877,16.+Cytadela,506,661,849092769,10299,0 +26878,0500,535,660,698659980,8399,0 +26879,Piek%C5%82o+to+inni,588,363,848956765,10160,0 +26880,%2ALubicz,575,638,699443920,9761,0 +26881,Mniejsze+z%C5%82o+0070,340,505,699794765,6624,0 +26882,wolna,563,649,699828685,9976,0 +26883,026,515,341,699072129,10221,0 +26884,057.+Liburnum,654,471,849091866,9207,0 +26885,cc+Wioska,402,377,3909522,7837,0 +26886,007,390,457,3698627,10104,0 +26887,Kentin+ufam+Tobie,338,474,699783765,10008,0 +26888,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,626,1434753,10068,0 +26889,0002,615,612,6417987,10019,0 +26890,%2A4626%2Aa+Czas+przyspiesza,646,430,7973893,10075,0 +26891,Wioska+barbarzy%C5%84ska,350,435,393668,6243,0 +26892,North+Barba+039,421,358,699796330,9668,0 +26893,027+%7C+PALESTINA,639,424,9228039,9544,0 +26894,North+Barba+010,421,363,699796330,9887,0 +26895,071+Shimada,659,476,7092442,8883,0 +26896,Nowa+Aleksandria,415,640,699736927,6683,0 +26897,.%3A137%3A.+Niangmen,500,342,848934935,6029,0 +26898,Gattacka,613,391,699298370,9824,0 +26899,%2A266%2A,353,428,699273451,2397,0 +26900,Darmowe+przeprowadzki,471,662,848935389,11218,0 +26901,031,571,643,699828685,9976,0 +26902,%2ALupita,573,643,699443920,9761,0 +26903,%242.000+Grvvyq,648,571,699676005,10495,5 +26904,amator+czysta,544,653,848915531,7468,0 +26906,039.+Durnovaria,657,474,849091866,10128,0 +26907,C003,609,383,699485250,10211,0 +26908,Yyyy,502,371,699883079,10178,0 +26909,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,378,607,849097937,9575,0 +26910,Kentin+ufam+Tobie,341,468,699783765,10000,0 +26911,Polanie2,482,340,849048216,2481,0 +26912,Pr%C4%99dzej+martwy+ni%C5%BC+za+kratkami,663,512,699851345,9689,0 +26913,Szlachcic,344,460,6258092,10160,0 +26914,035,650,558,699316421,9744,0 +26915,J03,365,594,849090130,6418,0 +26916,Szlachcic,409,371,698160606,10475,0 +26917,%230018+kamilsan993,464,346,1238300,10178,0 +26918,--custer,624,395,8096537,10311,0 +26919,007+YNO+ROW,388,618,8268010,9835,0 +26920,61.+KaruTown,629,405,7394371,6209,0 +26922,Wioska+Bochun10,335,486,7449254,10311,0 +26923,%230135+barbarzy%C5%84ska,467,340,1238300,6566,0 +26924,B.053,659,506,9188016,9682,0 +26925,Wioska+barbarzy%C5%84ska,350,443,393668,8522,0 +26926,121.+Seneletta,644,422,8337151,10147,1 +26927,%23.17+Wioska+SmackHQ,660,474,849054582,10019,0 +26928,037,615,392,699298370,2651,0 +26929,0153,548,654,698659980,11074,0 +26930,sony911,588,638,1415009,10223,0 +26931,Myk+i+do+kieszonki,361,584,9319058,9799,0 +26932,101,654,442,849088515,10019,0 +26933,Wetlina,338,532,849096458,8953,0 +26934,021.Barbara+5,337,507,1830149,4923,0 +26935,Tesa+9,661,530,698845189,10019,0 +26936,%C5%BBUBRAWKA+012,604,625,33900,9713,0 +26937,034.,406,635,2665207,9835,0 +26938,O25+Tijuana,660,515,699272880,9977,0 +26939,D+003,663,506,8078914,10042,0 +26940,011,459,655,698650301,9106,0 +26941,033,662,495,7085502,9724,0 +26942,Szlachcic,407,369,698160606,10495,0 +26943,084,623,607,698786826,10495,0 +26944,deff+100+%25,351,567,849012521,10245,0 +26945,.%3A138%3A.+Niangmen,498,341,848934935,5864,0 +26946,Architekci+Plac%C3%B3w+Boju,341,537,8004076,9880,0 +26947,Szulernia,415,361,7249451,9988,0 +26948,Kentin+ufam+Tobie,340,478,699783765,10000,0 +26949,%2ALust,574,643,699443920,9628,0 +26950,09.+chrubiesz%C3%B3w,374,599,8665783,9069,0 +26951,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,659,699828442,9806,0 +26952,c+Zagna%C5%84ska+155,406,389,3909522,8432,0 +26953,%23.20+ZZZ,659,471,849054582,9285,0 +26954,30.+%C5%81opuszka+wielka,376,602,8665783,8594,0 +26955,Elsche+x+Astaroth+Smacznego+x3,455,645,699736927,7867,0 +26956,0194,548,655,698659980,10019,0 +26957,Piek%C5%82o+to+inni,575,358,848956765,10147,2 +26958,MojeDnoToWaszSzczyt,564,348,848915730,9976,0 +26959,bbb,486,660,848999671,8969,0 +26960,088,436,637,849084985,8054,0 +26961,102,623,602,698786826,10495,0 +26963,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,655,699828442,9804,0 +26964,Wioska+barbarzy%C5%84ska,348,452,6258092,9409,0 +26965,Mniejsze+z%C5%82o+0072,340,507,699794765,6568,0 +26966,%2ANo+%C5%BCesz...,579,640,699443920,9761,0 +26967,P011+Hawkins,657,512,8096537,9348,0 +26968,cofn%C4%85%C4%87,624,402,699429153,9825,0 +26969,012.+Charlton,486,659,848953066,8691,0 +26970,Nowy+%C5%9Bwiat+A,347,553,849084005,5623,0 +26971,003+Kirkjubour,552,350,699072129,6605,0 +26972,0001,614,614,6417987,10149,0 +26973,J0091.,373,602,849090130,9807,0 +26974,Pa%C5%84stfa+Pu%C5%82nocy,583,362,699433558,6517,0 +26975,Wioska+barbarzy%C5%84ska,361,426,393668,6732,0 +26976,BAC%C3%93WKA+%7C005%7C,631,407,7394371,12154,0 +26977,026+-+Mroczna+Osada,637,415,849035905,12154,0 +26978,041+Lazarevac,628,594,699272880,7185,0 +26979,052-+Mroczna+Osada,629,397,849035905,10609,0 +26980,Wioska+barbarzy%C5%84ska+030+a,504,338,6343784,4677,0 +26981,015,378,394,849059457,2793,0 +26982,025.,612,620,6520732,9835,0 +26983,Wioska+barbarzy%C5%84ska,373,397,610196,380,0 +26984,Jednak+wol%C4%99+gofry,495,638,699725436,9835,0 +26985,kopi%C4%99+pr%C4%85dem+.,584,634,848995242,10495,0 +26986,041,650,554,699316421,7574,0 +26987,%2A082%2A,360,413,699273451,10211,0 +26988,020.Avalon,369,404,3108144,8087,0 +26989,K44+x024,433,413,698364331,10396,0 +26990,MojeSzczytToTw%C3%B3jDno,506,339,828637,10481,0 +26991,017+VW.Low+Key,362,409,3108144,6459,0 +26992,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,655,698807570,8516,5 +26993,Wioska+Kaffiks+XV,635,584,6136757,5677,0 +26994,Piek%C5%82o+to+inni,569,358,848956765,10160,0 +26996,013.Wioska+barbarzy%C5%84ska,341,517,1830149,7224,0 +26997,%3D075%3D+Darm%C4%99+dosta%C5%82em+xD,654,547,3781794,10787,0 +26998,Pobozowisko,381,615,699513260,9900,0 +26999,Jednak+wol%C4%99+gofry,445,651,699736927,9835,0 +27000,011+Amaterasu,661,501,2135129,9553,0 +27001,Chekku+-+meito,342,520,9280477,9976,0 +27002,085,622,604,698786826,10495,0 +27003,67k%24+Grvvyq,642,571,699676005,10495,0 +27004,001,348,439,393668,4660,0 +27005,%2A035%2A,633,585,698670524,9368,0 +27006,004,641,578,699301458,1358,0 +27007,Jaaa,665,485,698635863,9946,0 +27008,%23.05+Wioska+jelonqqq,657,477,849054582,10019,0 +27009,%5B020%5D,449,649,9094538,2913,0 +27010,Gumi,558,341,699072129,10237,0 +27011,6AA,352,431,7765098,9277,0 +27012,0362,545,658,698659980,10224,0 +27013,Wioska+barbarzy%C5%84ska,595,365,849041192,5303,0 +27014,%230073+barbarzy%C5%84ska,468,338,1238300,9548,0 +27015,Architekci+Plac%C3%B3w+Boju,342,539,8004076,9880,0 +27016,Samana+2,454,652,699849210,6314,0 +27017,012.,397,627,2665207,9835,0 +27018,Wioska+barbarzy%C5%84ska,361,424,393668,8195,0 +27019,009+Wioska+na+gwarancji,481,660,698650301,9771,0 +27020,049+BOBI+3,663,486,2135129,9553,0 +27022,%3F006,538,658,699828685,9976,0 +27023,mys,573,648,699828685,9976,0 +27024,Kentin+ufam+Tobie,337,474,699783765,10000,0 +27025,086,621,611,698786826,10495,0 +27026,038,658,495,7085502,9245,0 +27027,Wioska+barbarzy%C5%84ska,570,644,699828685,9425,0 +27028,006.Dla+flag,352,437,698630507,7603,0 +27029,%3D049%3D+Wioska+barbarzy%C5%84ska,644,578,3781794,9606,0 +27030,Patatajnia,345,452,6258092,3905,0 +27031,CHARFA,511,339,699072129,10218,0 +27032,%7C015%7C+Gazi,498,660,699393742,9835,0 +27033,Uwa%C5%BCaj+Jurkowski,349,435,393668,6539,0 +27034,BAC%C3%93WKA+%7C002%7C,635,407,7394371,11130,0 +27035,Pobozowisko,384,618,699513260,7242,0 +27036,M181_039,354,429,393668,8428,0 +27037,Wioska+barbarzy%C5%84ska,657,523,6510480,6537,0 +27038,Wioska+Bochun10,340,496,7449254,10311,0 +27039,Myk+i+do+kieszonki,360,578,9319058,9886,0 +27040,001,545,341,849087786,7285,0 +27041,Lord+Lord+Franek+.%23037,524,340,698420691,9955,0 +27042,018%29,538,345,849097103,3214,0 +27043,Wioska+Bochun10,340,498,7449254,10311,9 +27044,049,660,490,7085502,8214,0 +27045,001%7C%7C+Aries,487,645,849035525,10019,0 +27046,Wioska+barbarzy%C5%84ska,379,396,848886056,3727,0 +27047,Pobozowisko,387,603,699513260,10971,0 +27048,I%23011,603,380,2065730,9797,2 +27049,P026+Alfheim,658,517,8096537,9761,0 +27050,Kentin+ufam+Tobie,342,471,699783765,10000,0 +27052,Wioska+Kaffiks+XI,643,578,6136757,5998,0 +27053,072,603,370,2502956,10019,0 +27054,BoOmBaa..,433,356,6169408,3695,0 +27055,Szlachcic,495,466,699098531,9879,0 +27056,g%C3%B3ra,434,351,849096310,9247,0 +27057,O29+Struer,661,519,699272880,10195,0 +27058,36k%24+Grvvyq,648,574,699676005,10495,0 +27059,011,376,525,6853693,10474,0 +27060,Kentin+ufam+Tobie,339,482,699783765,10000,0 +27061,Myk+i+do+kieszonki,353,574,9319058,9902,0 +27062,Darmowe+przeprowadzki,471,655,848935389,9676,0 +27064,071,629,597,698786826,9423,0 +27065,14.+tego+nie,509,659,849100262,10002,0 +27066,Darma+dla+zawodnika,517,663,699494488,10221,0 +27067,044+Qarinus,633,587,699272880,10028,6 +27068,001+Syjon,480,664,698650301,9234,0 +27069,Piek%C5%82o+to+inni,579,358,848956765,10019,0 +27070,mys,564,649,699828685,9976,0 +27071,Sony+911,585,639,1415009,10248,0 +27072,Obrze%C5%BCa+07,554,651,848915531,8263,0 +27073,B15,649,447,849093742,8012,0 +27074,%2A4624%2Aa+Bawaria,649,436,7973893,10287,0 +27075,North+Barba+041,423,357,699796330,9699,0 +27077,Saturn,547,343,699797805,4179,0 +27078,1v9+machine,387,618,699697558,10083,0 +27079,Myk+i+do+kieszonki,358,582,9319058,9430,0 +27080,Gattacka,615,387,699298370,10470,0 +27081,Myk+i+do+kieszonki,357,580,9319058,9799,0 +27083,x+Wioska+grzegorz1806,398,510,698290577,10233,0 +27084,058.,392,623,2665207,9835,0 +27085,Sony+911,586,636,1415009,5890,0 +27086,B+021,660,529,8078914,9499,0 +27087,Szlachcic+Siedmiomilowy,617,379,848924219,7718,0 +27088,11.+Remiza,373,600,8665783,9312,0 +27089,Szulernia,416,363,7249451,9993,0 +27090,Li%C5%9Bciaste+Rozstaje,345,453,6258092,3542,0 +27091,022.+Barbara+6,338,505,1830149,6621,0 +27092,Wioska+barbarzy%C5%84ska,649,571,0,2536,3 +27093,Ave+Why%21,473,649,699121671,9809,0 +27094,Wioska+barbarzy%C5%84ska,662,509,699851345,6702,0 +27096,0006,611,614,6417987,9206,0 +27097,Weso%C5%82ych+%C5%9Awi%C4%85t,580,351,848915730,10160,0 +27098,Chamabuda,366,403,8967440,4270,0 +27099,008+%7C+PALESTINA,648,429,9228039,9544,0 +27100,Lord+Lord+Franek+.%23152,505,337,698420691,10149,0 +27101,cc+Wioska+jqqqqqqqqqqqqqqqqqqq,397,375,3909522,5959,0 +27102,Sony+911,589,635,1415009,10206,0 +27103,B12,649,446,849093742,10019,0 +27105,K34+-+%5B128%5D+Before+Land,438,352,699088769,9783,0 +27106,Sony+911,583,642,1415009,10203,0 +27108,039,655,544,698999105,10311,0 +27109,012.,483,658,849034882,10728,0 +27110,Jednak+wol%C4%99+gofry,443,649,699736927,9899,0 +27111,016+%7C+PALESTINA,649,428,9228039,9544,0 +27112,%2ANie+ma+to+jak...,577,644,699443920,9761,4 +27113,%230046+barbarzy%C5%84ska,466,341,1238300,10178,0 +27114,Szlachcic,408,371,698160606,10476,0 +27115,0501,535,659,698659980,10083,0 +27116,DajankA+09,352,560,849012843,9511,0 +27117,%2A041,593,637,699567608,9717,0 +27118,01.Czekam+Na,457,654,361125,4546,0 +27119,077,630,594,698786826,10229,0 +27120,5..,432,648,699736927,7724,0 +27121,Wioska+Bochun10,338,490,7449254,10311,0 +27122,63k%24+Grvvyq,649,563,699676005,10495,2 +27124,091...bar,455,342,6920960,10237,0 +27125,MojeDnoToWaszSzczyt,566,352,848915730,9976,0 +27126,A028+Hurghada,654,460,113796,10160,0 +27127,Nowa+wioska,449,350,699088769,10471,0 +27128,Myk+i+do+kieszonki,362,578,849012521,9924,0 +27129,Denger+14,362,590,698353083,9648,0 +27130,007.+Dla+flag,353,438,698630507,6822,0 +27131,0502,533,655,698659980,10252,0 +27132,%3D047%3D+Wioska+barbarzy%C5%84ska,653,550,3781794,8057,0 +27133,%3D061%3D+Wioska+barbarzy%C5%84ska,652,553,3781794,10580,0 +27134,042,656,529,699351301,9255,0 +27135,Wioska+barbarzy%C5%84ska,648,572,0,1651,0 +27136,ladyanima,605,621,699703642,6418,0 +27137,%230055+barbarzy%C5%84ska,470,340,1238300,10178,0 +27138,Abdoulxx,473,660,849089459,11321,0 +27139,Lord+Lord+Franek+.%23153,510,340,698420691,9960,0 +27140,%C5%BBUBRAWKA+005,604,627,33900,10495,0 +27141,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,660,698807570,6132,0 +27142,105,654,443,849088515,10019,0 +27143,036...Zachodzik,452,343,6920960,10294,0 +27144,Mroczne+Rozlewisko,366,405,848886056,5013,0 +27145,Wioska+barbarzy%C5%84ska,356,425,393668,6562,0 +27146,Lord+Lord+Franek+.%23113,514,335,698420691,10009,0 +27147,Niger1,362,403,848886056,9883,0 +27148,M181_023,360,425,393668,9897,2 +27150,Wiocha+7,426,359,849096544,9819,0 +27151,Jehu_Kingdom_49,651,432,8785314,4763,0 +27152,Wioska+006,386,616,848912772,9899,0 +27153,068+front,600,368,2502956,9408,0 +27154,llllllllll,627,399,699429153,9825,0 +27155,0008,390,382,8419570,10242,0 +27157,Dajanka+20,342,550,849012843,1721,0 +27158,Wioska+barbarzy%C5%84ska,400,370,698160606,6225,0 +27159,%230084+barbarzy%C5%84ska,471,337,1238300,8076,0 +27160,Mobil,537,653,7589468,8817,0 +27161,Wioska+barbarzy%C5%84ska,348,434,849097716,2859,0 +27162,Szulernia,394,375,7249451,6169,4 +27163,...,486,661,848999671,8111,0 +27164,036,568,645,699828685,9976,0 +27165,MojeDnoToWaszSzczyt,573,352,848915730,9938,0 +27166,Piek%C5%82o+to+inni,565,355,848956765,10160,0 +27167,Kentin+ufam+Tobie,344,465,699783765,10011,0 +27168,North+Barba+049,423,353,699796330,9427,0 +27169,0454,377,602,699513260,4530,0 +27170,Wioska+barbarzy%C5%84ska,349,441,393668,4803,0 +27171,M181_045,349,436,393668,8377,0 +27172,010%29+Borek+Strzeli%C5%84ski,543,344,849097103,2166,0 +27173,The+Game+Has+Only+Just+Begun,354,530,9280477,9976,0 +27174,g%C5%82ow%C4%85+bigos+mieszam+.,580,640,848995242,10362,0 +27175,Kentin+ufam+Tobie,344,468,699783765,10005,0 +27176,kathare,560,648,873575,9937,0 +27177,012%29+Ole%C5%9Bnica+Ma%C5%82a,545,342,849097103,1829,0 +27178,S%C5%82oneczna+63,374,597,849095992,10290,0 +27179,Wsch%C3%B3d+Droga+002,647,559,698562644,10311,0 +27180,019,451,655,698650301,9662,0 +27182,910,653,546,7038651,9999,0 +27183,Wioska+barbarzy%C5%84ska,353,427,393668,6550,0 +27184,Sony+911,641,583,1415009,10259,0 +27185,M181_042,358,427,393668,8673,0 +27186,1.+Kattegat,426,428,699660539,10204,0 +27187,0661,546,657,698659980,9080,0 +27188,003+-+Mroczna+Osada,640,425,849035905,11550,5 +27189,Wioska+barbarzy%C5%84ska,382,384,8419570,2656,0 +27190,%23012+AUUUUUUUUU,350,439,849096215,2061,0 +27191,Wioska+barbarzy%C5%84ska,599,627,848995242,10351,0 +27192,North+Barba+019,421,360,699796330,10262,0 +27193,%C5%BBUBRAWKA+021+tiriolenin,596,631,33900,10495,0 +27194,Macp+2,339,513,61791,8364,0 +27196,003%29+Bielawa,545,347,849097103,7166,0 +27197,Village,568,646,849094067,9007,0 +27198,BAC%C3%93WKA+%7C028%7C,632,405,7394371,6849,0 +27199,%5BB%5D_%5B021%5D+Dejv.oldplyr,430,353,699380607,10495,9 +27200,MojeDnoToWaszSzczyt,567,351,848915730,9938,0 +27201,Chekku+-+meito,343,527,9280477,9976,0 +27202,Wioska+barbarzy%C5%84ska,551,348,699072129,10285,0 +27203,%C5%BBUBRAWKA+023,594,635,33900,10201,0 +27204,SX002,575,648,8627359,9204,0 +27205,Orlando%2C+Floryda,602,375,7462660,10068,0 +27206,0503,534,655,698659980,10019,0 +27207,092...bar,459,344,6920960,9740,0 +27208,%C5%BBUBRAWKA+007,602,626,33900,9943,0 +27209,06.+GT-R,494,662,849100262,9812,0 +27210,Wioska+barbarzy%C5%84ska,661,468,699574408,9348,0 +27211,OhhhnOoo,625,392,699759128,8255,0 +27212,010,645,574,849095963,5072,0 +27213,006,464,657,698650301,9349,0 +27214,North+Barba+028,427,354,699796330,10047,0 +27215,026,647,562,849095227,9761,4 +27216,%23110%23,636,594,692803,9761,0 +27217,Wioska+Bochun10,339,509,7449254,5710,0 +27218,170...monlib,451,346,6920960,6462,0 +27219,Jehu_Kingdom_53,649,429,8785314,6106,0 +27220,K34+-+%5B145%5D+Before+Land,437,348,699088769,9783,0 +27221,O04+Toledo,661,517,699272880,9994,0 +27222,Maszlug+kolonia+XX,367,414,848977649,3607,0 +27223,133,475,342,7271812,8561,0 +27224,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,657,698807570,10252,0 +27225,-11-,334,499,765188,6034,0 +27226,A-033,383,393,8419570,10168,0 +27227,Klaudek.4,591,368,849092309,8573,0 +27228,Wioska+Bochun10,343,473,7449254,10311,3 +27229,Jestem+Poza+Kontrol%C4%85,349,552,8004076,9880,0 +27230,The+Game+Has+Only+Just+Begun,346,539,9280477,9976,0 +27232,007%29+Nowa+Ruda,546,349,849097103,3191,0 +27233,C005,611,380,699761749,10495,0 +27234,MojeDnoToWaszSzczyt,565,350,848915730,9976,0 +27235,Grvvyq+110k%24,652,563,699676005,3895,0 +27236,The+Game+Has+Only+Just+Begun,345,535,9280477,8915,0 +27237,Valhalla+A4,377,606,849097002,7298,0 +27238,Wioska+barbarzy%C5%84ska,502,337,698739350,5284,0 +27239,608%7C375,606,373,699580120,8340,0 +27240,Ave+Why%21,485,659,698585370,9525,8 +27242,%230031+GL01N,469,338,1238300,10178,0 +27243,Gattacka,617,382,699298370,9372,0 +27245,I%23016,605,381,2065730,9797,0 +27246,Tight+OB,495,665,849004274,9782,0 +27247,Wioska+Bochun10,336,494,7449254,10311,0 +27248,Pobozowisko,382,617,699513260,8300,0 +27249,MojeDnoToWaszSzczyt,574,353,848915730,9938,0 +27250,%2A037%2A,633,593,698670524,8308,0 +27251,Sir+develes,618,613,698786826,10471,0 +27252,A020+Darek+sxdf,656,449,113796,10160,0 +27253,Wioska+%C5%9Amiechu,380,394,8967440,3277,0 +27254,Wioska+barbarzy%C5%84ska,448,653,699849210,3334,0 +27255,Jestem+Poza+Kontrol%C4%85,348,550,8004076,9880,0 +27256,011+serniczek+z+niespodziank%C4%85,501,661,8954402,9733,0 +27257,Darmowe+przeprowadzki,476,661,698807570,11278,0 +27258,Sir+develes,625,606,698786826,9327,0 +27259,Wioska+barbarzy%C5%84ska,660,468,699574408,8510,0 +27260,%7E%7E076%7E%7E,614,618,7829201,7082,0 +27261,013+Weso%C5%82y+Cyrk,392,618,8268010,9835,0 +27262,Myk+i+do+kieszonki,354,565,9319058,9799,0 +27263,003+Vengerberg,469,660,699834004,10168,0 +27264,Wioska+Bochun10,335,482,7449254,10311,0 +27266,K34+x032,410,368,698364331,6066,0 +27267,B+022,662,529,8078914,9631,0 +27268,22.+Przybud%C3%B3wka+u+sebcia,369,599,8665783,8668,0 +27269,006.+Lider,499,660,848953066,6341,0 +27270,020+serniczek+na+biszkopcie,509,664,8954402,10252,0 +27271,KUZYN,411,638,848913998,10160,0 +27272,057+xxx,640,426,9238175,10545,6 +27273,053,529,577,699189792,10052,0 +27274,North+Barba+043,427,352,699796330,9894,0 +27275,Wioska+barbarzy%C5%84ska,347,439,393668,2242,0 +27276,Wioska+Bochun10,339,460,7449254,6083,0 +27277,080,656,554,849095227,9825,0 +27278,0546,531,659,698659980,10019,0 +27279,Weso%C5%82ych+%C5%9Awi%C4%85t,576,356,848915730,6806,4 +27280,Wioska+Bochun10,337,488,7449254,10311,0 +27281,054.,390,625,2665207,9835,0 +27282,cc+44,400,375,3909522,4038,0 +27283,Lord+Lord+Franek+.%23154,504,334,698420691,10141,0 +27284,Architekci+Plac%C3%B3w+Boju,339,532,8004076,8828,5 +27285,Ave+Why%21,471,652,699121671,9809,0 +27286,Psycha+Siada+i+sie+nie+podnosi,466,656,698807570,10252,0 +27287,072,444,635,849084985,10311,0 +27288,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,659,698807570,10252,0 +27289,016+Neapol,380,385,8419570,10221,0 +27290,%230079+barbarzy%C5%84ska,475,336,1238300,10178,0 +27291,Bagienko.Anker...,375,392,699713515,8505,0 +27292,aaaa,476,636,6948793,9899,0 +27293,BAC%C3%93WKA+%7C029%7C,631,406,7394371,7939,0 +27294,Jehu_Kingdom_38,644,435,8785314,6945,0 +27295,Lord+Lord+Franek+.%23114,517,338,698420691,10119,0 +27296,021.,400,627,2665207,9835,0 +27297,MojeDnoToWaszSzczyt,568,350,848915730,9976,0 +27298,xxx+-+04,605,629,699778867,10318,0 +27299,Wyngiel+we+wsi,556,347,699072129,10064,0 +27300,Kentin+ufam+Tobie,339,472,699783765,8975,0 +27301,094,619,611,698786826,10365,0 +27302,001+MONETKI,659,467,7588382,9108,0 +27303,Klaudek12,592,365,849092309,4566,0 +27304,A+011,604,377,6384450,8674,0 +27305,Elevation+WY,490,663,849004274,9835,0 +27306,028+-+Mroczna+Osada,639,416,849035905,8245,0 +27307,Nowy+%C5%9Bwiat+A,344,553,849084005,2853,0 +27308,006+MONETKI,660,467,7588382,9828,0 +27309,Myk+i+do+kieszonki,362,582,9319058,9799,0 +27310,017.+Barbara1,335,506,1830149,2753,0 +27311,011%29+Radk%C3%B3w,548,348,849097103,2137,0 +27312,005,646,562,849095963,9236,0 +27313,020+Psycha+Siad%C5%82a+%3AD,460,655,698650301,4177,0 +27314,deff+100+%25,351,569,849012521,9104,0 +27315,041.,394,622,2665207,9835,5 +27316,Wioska+barbarzy%C5%84ska,631,602,848993505,2228,0 +27317,Wioska+Bochun10,341,496,7449254,10311,0 +27318,Gra+o+Tron,614,617,8815749,10019,0 +27320,Wioska+barbarzy%C5%84ska,662,463,113796,5236,0 +27321,023,660,524,699351301,10067,2 +27322,Szulernia,407,363,7249451,10638,0 +27323,Lord+Lord+Franek+.%23115,515,336,698420691,9729,0 +27325,Wie%C5%9Bmak,334,529,849096458,8426,0 +27326,amator+czysto,544,654,848915531,7733,0 +27327,Wioska+barbarzy%C5%84ska,600,626,848995242,10252,0 +27328,D%C4%85browa+0006,367,590,849096972,9966,0 +27329,%230097+barbarzy%C5%84ska,460,342,1238300,8869,0 +27330,Kirkus,422,639,849089459,11911,0 +27331,Kentin+ufam+Tobie,339,475,699783765,10000,0 +27332,132,473,343,7271812,7901,0 +27333,Lord+Lord+Franek+.%23038,524,343,698420691,10141,0 +27334,009+MONETKI,662,465,7588382,8903,0 +27335,Maszlug+kolonia+XV,367,407,848977649,5831,0 +27336,B+046,657,531,8078914,9057,0 +27337,001+-+Mroczna+Osada,639,418,849035905,9306,0 +27338,Wioska+002,383,391,8419570,10168,0 +27339,Soltys+Waszych+Wsi,398,377,849027025,8095,0 +27340,Wioska+barbarzy%C5%84ska,658,454,113796,6139,0 +27341,Bagienko.Anker...,376,395,699713515,6824,0 +27342,Wioska+barbarzy%C5%84ska,416,641,699736927,7373,0 +27343,003+Arkadia,378,392,849059457,8478,0 +27344,Piek%C5%82o+to+inni,582,359,848956765,10160,0 +27345,025.,404,632,2665207,9835,0 +27346,112,347,452,6258092,4802,0 +27347,BAC%C3%93WKA+%7C033%7C,625,397,7394371,8925,0 +27348,Jestem+Poza+Kontrol%C4%85,347,543,8004076,9880,8 +27349,0141,625,592,698416970,10173,0 +27350,Mniejsze+z%C5%82o+0071,338,502,699794765,4879,0 +27351,095,622,602,698786826,10495,0 +27352,Weso%C5%82ych+%C5%9Awi%C4%85t,574,354,848915730,10109,0 +27353,Piek%C5%82o+to+inni,565,353,848956765,10160,0 +27354,Kentin+ufam+Tobie,338,477,699783765,10000,0 +27355,010,377,391,849059457,5407,0 +27356,Chekku+-+meito,338,523,9280477,9976,0 +27357,29k%24+Grvvyq,647,563,699676005,10495,0 +27358,Szulernia,412,362,7249451,10259,8 +27359,Jednak+wol%C4%99+gofry,436,648,699736927,10890,0 +27360,Wioska+barbarzy%C5%84ska,663,513,699851345,5863,0 +27361,Architekci+Plac%C3%B3w+Boju,341,549,8004076,9880,1 +27363,MojeSzczytToTw%C3%B3jDno,507,337,828637,10495,0 +27365,034+barbarzy%C5%84ska,642,425,9238175,7993,0 +27366,076+terror,640,422,9238175,9557,0 +27367,North+Wyszk%C3%B3w,427,357,699796330,10297,0 +27368,Lord+Lord+Franek+.%23060,521,335,698420691,9976,0 +27370,A+003,643,463,849027653,10287,0 +27371,Charfa,514,339,699072129,10223,0 +27373,0504,534,660,698659980,10160,0 +27374,Lord+Lord+Franek+.%23099,513,335,698420691,10089,2 +27375,002,643,572,699301458,1612,0 +27376,668%7C371,608,375,699580120,5494,0 +27377,0019,412,358,699431255,10046,0 +27378,Wioska+004,387,615,848912772,10068,0 +27380,LortMort__1__,381,398,8967440,6774,0 +27381,%2ANo+i+po...,574,646,699443920,8277,0 +27382,001+Roma,378,406,848945529,7270,0 +27383,Ma%C5%82omice,372,599,849095992,10365,0 +27384,014.+Dla+flag,350,441,698630507,3745,0 +27385,Pobozowisko,385,618,699513260,8322,0 +27386,Wied%C5%BAma+-+Gwiazda,385,416,698884287,5929,0 +27387,Darmowe+przeprowadzki,464,648,848935389,9704,0 +27388,0191,546,654,698659980,10019,0 +27389,006,629,554,849095227,9783,0 +27390,4.02,346,443,393668,9976,0 +27391,I%23008,599,375,2065730,9692,0 +27392,Macp+1,339,512,61791,9152,0 +27393,Kentin+ufam+Tobie,342,468,699783765,10000,0 +27394,08+Wioska,441,649,698993706,9768,0 +27395,myself,562,647,699828685,9976,0 +27396,Nowa+32,650,569,698702991,10178,0 +27397,Osada+koczownik%C3%B3w,542,340,699066118,6857,3 +27398,046,570,648,699828685,8868,0 +27399,0025,419,358,699431255,9961,0 +27400,Wioska+Bochun10,336,488,7449254,10311,0 +27401,B.054,665,504,9188016,10008,0 +27402,cc+Zo%C5%9Bka,399,370,3909522,10067,1 +27403,Piek%C5%82o+to+inni,561,349,848956765,9938,0 +27404,Wioska+barbarzy%C5%84ska,631,596,8337151,5473,0 +27405,Wioska+semunus,626,392,699758688,1269,0 +27406,Wioska+Bochun10,339,496,7449254,10311,0 +27407,012+serniczek+na+ciep%C5%82o,500,664,8954402,9964,0 +27408,Kentin+ufam+Tobie,342,472,699783765,10000,0 +27409,Wioska+barbarzy%C5%84ska+Krr,368,402,8967440,3184,0 +27410,Szulernia,415,362,7249451,9983,0 +27411,Kozaki+2,629,604,699778867,12154,2 +27413,0044,409,370,848913037,9356,0 +27414,Denger+18,366,587,698353083,9654,0 +27415,066,665,484,7085502,8742,0 +27416,0002,394,382,8419570,10480,0 +27417,Sparta_26,488,591,2585846,9638,0 +27418,17.solidna+tama,367,592,8665783,9133,0 +27419,Lece+bokiem,463,651,698807570,10252,0 +27420,MojeSzczytToTw%C3%B3jDno,508,341,828637,10559,0 +27421,--1.+Chatka+Wielkiego+W%C5%82adka,388,409,698345556,10495,0 +27422,Bagienko.Anker...,376,393,699713515,9058,0 +27423,%230063+barbarzy%C5%84ska,468,343,1238300,10178,0 +27424,Jehu_Kingdom_60,649,431,8785314,4665,0 +27425,102,653,442,849088515,10019,0 +27427,Szczebel,631,597,8337151,8107,0 +27428,lupi,374,395,699842853,1289,0 +27429,MojeDnoToWaszSzczyt,569,353,848915730,9938,0 +27430,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,657,699828442,10016,0 +27431,013+serniczek+zag%C5%82ady,504,663,8954402,9745,0 +27432,001+D%C5%BCinek,391,618,8268010,9835,0 +27433,KUZYN,412,642,848913998,2961,0 +27434,Krosno+1,533,341,7485877,4815,0 +27435,Weso%C5%82ych+%C5%9Awi%C4%85t,592,361,848915730,5209,0 +27436,Gattacka,613,382,699298370,9488,0 +27437,Jestem+Poza+Kontrol%C4%85,346,551,8004076,9880,9 +27438,J006,366,605,849090130,10160,0 +27439,Wioska+barbarzy%C5%84ska,662,470,699574408,8822,0 +27440,A-013,385,399,8419570,10319,0 +27441,005+VW+AreKing,364,410,3108144,8266,4 +27442,Gattacka,619,385,699298370,9367,0 +27443,Dajanka+34,352,576,849012843,1450,0 +27444,053,609,380,849010255,3089,0 +27445,Gattacka,615,384,699298370,9382,0 +27446,Wioska+barbarzy%C5%84ska,342,449,393668,6962,0 +27447,%3F010+barbarzy%C5%84ska,539,659,699828685,9976,0 +27448,SSJ+007,510,631,699054373,9761,0 +27449,0005,612,614,6417987,9442,0 +27450,A33,472,664,698652014,9835,0 +27451,607%7C369,605,379,699580120,6292,0 +27452,107,655,440,849088515,9620,0 +27453,042,660,484,7085502,8748,0 +27454,Valhalla+B1,378,605,849097002,11130,0 +27455,Z+001,487,338,6384450,7295,0 +27456,Piek%C5%82o+to+inni,578,354,848956765,10160,0 +27457,Wioska+barbarzy%C5%84ska,556,344,699072129,10237,0 +27459,Wioska+barbarzy%C5%84ska,403,368,698160606,5726,0 +27460,X009,352,564,9264752,9462,0 +27461,012Wybuch+gazu,389,615,698620694,9127,0 +27462,Weso%C5%82ych+%C5%9Awi%C4%85t,577,352,848915730,10160,6 +27463,Wioska+barbarzy%C5%84ska,428,350,699191455,8857,0 +27464,%7C001%7C+Chania,496,670,699393742,10063,0 +27465,012+MONETKI,661,467,7588382,8514,0 +27466,086...barba+centr,457,347,6920960,10229,0 +27467,%2ANontendo,575,644,699443920,9761,0 +27468,ADEN,572,350,698588535,10053,0 +27470,666%7C375,609,375,699580120,9570,0 +27471,Gattacka,618,385,699298370,9358,0 +27472,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,393,627,1434753,10068,0 +27473,001+Gex1992,336,511,915113,9258,0 +27474,I%23010,602,378,2065730,9797,9 +27475,029+-+Mroczna+Osada,642,417,849035905,6441,0 +27476,O09+Almada,665,523,699272880,10132,0 +27477,%7CB%7C+Silentshear,487,665,698147372,9954,0 +27478,65k%24+Grvvyq,650,562,699676005,9046,0 +27479,059.+Puteoli,657,466,849091866,9177,0 +27480,Wioska+barbarzy%C5%84ska,380,386,8419570,5734,0 +27481,.%3A072%3A.+Chillout,506,395,848934935,3937,0 +27482,Pobozowisko,384,614,699513260,6650,0 +27483,0013,536,662,698659980,10252,1 +27484,%23105%23,633,601,692803,9761,0 +27485,Ludzikowo,338,534,849096458,8643,0 +27487,.055.,467,341,698489071,7150,0 +27488,Wioska+barbarzy%C5%84ska,401,371,698160606,7033,0 +27489,Pobozowisko,389,618,699513260,5653,0 +27490,Zygmunciarz+2,380,425,8967440,4108,0 +27491,off+100+%25,361,576,849012521,10495,0 +27493,Wioska+barbarzy%C5%84ska,664,508,699851345,8270,0 +27495,Lord+Lord+Franek+.%23155,505,336,698420691,9839,0 +27496,31.+Sko%C5%82osz%C3%B3w+skrzy%C5%BCowanie,373,606,8665783,10971,0 +27497,Taki+Pan,513,336,698739350,5970,0 +27498,006+serniczek+z+kaw%C4%85,504,660,8954402,10160,0 +27499,017,460,656,698650301,9825,0 +27500,Grvvyq+117k%24,613,618,699676005,10160,0 +27501,D+001,663,504,8078914,9976,0 +27502,-04-,333,502,765188,10062,0 +27503,%230044+barbarzy%C5%84ska,470,344,1238300,10178,0 +27504,Wioska+barbarzy%C5%84ska,344,448,393668,8281,0 +27505,01Wioska,368,598,8607734,9291,0 +27506,029+weekend+z+serniczkiem,506,664,8954402,9730,0 +27507,%3D064%3D+Wioska+barbarzy%C5%84ska,657,552,3781794,10139,0 +27508,Maszlug+kolonia+XXI,362,415,848977649,3697,0 +27509,mys,573,649,699828685,9594,0 +27510,%3D050%3D+Wioska+barbarzy%C5%84ska,644,579,3781794,10580,0 +27511,022,450,651,698650301,3878,2 +27512,B+038,662,532,8078914,8674,0 +27513,%230081+barbarzy%C5%84ska,471,336,1238300,10178,0 +27514,0010,534,662,698659980,10252,1 +27515,Jestem+Poza+Kontrol%C4%85,345,545,8004076,9880,0 +27516,087,621,605,698786826,10495,0 +27517,Wioska+barbarzy%C5%84ska,346,544,8004076,3454,0 +27518,Architekci+Plac%C3%B3w+Boju,339,544,8004076,7647,0 +27519,%C5%81ajka,663,507,699851345,9730,0 +27521,-08-,334,498,765188,6188,0 +27522,Lord+Lord+Franek+.%23039,522,343,698420691,10141,0 +27523,B+023,663,534,8078914,9505,0 +27524,Tylko+pp+%2F,620,392,7559093,5667,0 +27525,050,662,542,849095227,9721,0 +27526,Kentin+ufam+Tobie,393,481,699783765,10000,0 +27527,%5B160%5D,566,555,8000875,9024,0 +27528,Urged+nal,510,661,849004274,9835,0 +27529,%230077+barbarzy%C5%84ska,473,335,1238300,9764,0 +27530,xyz+%23004+TerrorMachine,580,361,7555180,9740,0 +27531,008.,400,630,2665207,9835,3 +27532,Wioska+barbarzy%C5%84ska,339,515,9280477,936,0 +27533,Pobozowisko,378,613,699513260,10645,0 +27535,MojeSzczytToTw%C3%B3jDno,503,369,828637,10338,0 +27536,5AA,355,432,7765098,8594,0 +27537,Szlachcic+%21%21%21,506,475,699098531,9681,0 +27538,B+047,657,530,8078914,8992,0 +27539,North+Barba+044,424,356,699796330,9289,0 +27541,048,664,496,7085502,9968,0 +27542,KUZYN,417,641,848913998,3230,0 +27543,Wioska+barbarzy%C5%84ska,344,445,393668,2152,0 +27544,05+Wioska,442,653,698993706,7455,0 +27545,Weso%C5%82ych+%C5%9Awi%C4%85t,591,362,848915730,6359,7 +27546,Bagdad,495,339,8847546,10303,0 +27547,Szulernia,409,363,7249451,10169,0 +27548,Darmowe+przeprowadzki,476,662,698807570,11254,0 +27549,sas,557,622,7581876,9835,0 +27550,Szulernia,411,361,7249451,9989,0 +27551,Myk+i+do+kieszonki,357,583,9319058,9799,4 +27552,003.,397,626,2665207,9761,0 +27553,0463,380,605,698659980,9883,0 +27554,038,649,561,699316421,9744,7 +27555,MojeSzczytToTw%C3%B3jDno,507,340,828637,10495,0 +27556,Szlachcic,406,368,698160606,10253,0 +27557,Gattacka,617,388,699298370,10470,0 +27558,068+xyz013,644,427,9238175,10132,0 +27559,13+-+Osada,376,610,8607734,10495,4 +27561,Osada+koczownik%C3%B3w,557,343,699072129,10220,2 +27562,Gattacka,615,386,699298370,10470,0 +27563,%5B170%5D,641,576,8000875,7175,0 +27564,Ronin+P,611,620,8815749,10019,0 +27565,083,661,525,699351301,5460,0 +27566,Myk+i+do+kieszonki,379,511,9319058,9799,0 +27567,North+Kutno,420,356,699796330,10292,0 +27568,024.,401,633,2665207,9835,0 +27569,Erebor+1,501,592,699383121,10471,0 +27570,012...P%C5%81D_O,455,358,6920960,10495,0 +27571,Wioska+barbarzy%C5%84ska,379,386,8419570,3397,0 +27572,026,664,499,7085502,9937,0 +27573,004Wioska,463,656,698807570,10051,0 +27574,%230072+barbarzy%C5%84ska,469,337,1238300,9203,7 +27575,M181_025,359,423,393668,9902,0 +27576,045.xxx,512,661,849004274,10103,0 +27577,024+Boston,430,434,9291984,10319,0 +27578,Lord+Lord+Franek+.%23116,519,340,698420691,9880,0 +27579,0008+Gda%C5%84sk,377,381,849096882,6525,0 +27580,0505,533,657,698659980,10019,0 +27582,0000,618,382,848924219,2772,0 +27583,Grvvyq+102k%24,653,558,699676005,10495,0 +27584,Bagdad,502,338,8847546,10068,5 +27585,Pobozowisko,409,589,699513260,10952,0 +27586,xyz+%23012+TerrorMachine,583,364,7555180,6806,0 +27587,Piek%C5%82o+to+inni,581,359,848956765,10160,0 +27588,%230034+barbarzy%C5%84ska,464,343,1238300,10178,0 +27589,Jestem+Poza+Kontrol%C4%85,346,559,8004076,9880,0 +27590,wErza,449,654,699849210,5482,0 +27591,026...+Zach%C3%B3d,434,349,6920960,10559,6 +27592,%7CA%7C+Timberfrost,478,649,698147372,10495,0 +27593,012+VW+Wioska+barbarzy%C5%84ska,365,412,3108144,4174,0 +27594,cc+01+Wioska+barbarzy%C5%84ska,402,370,3909522,10503,0 +27595,0088,606,628,699432672,10495,0 +27596,%2A056,602,625,699567608,9615,0 +27597,O08+Sintra,665,522,699272880,10157,0 +27598,0506,532,661,698659980,9747,0 +27599,010+barbarzy%C5%84ska,642,423,9238175,10290,0 +27600,Wioska+barbarzy%C5%84ska,348,444,393668,10178,0 +27601,Szlachcic,403,371,698160606,10495,0 +27602,%230074+barbarzy%C5%84ska,472,335,1238300,10178,0 +27604,Akra,418,643,699736927,9067,0 +27605,002,599,366,1018357,10019,0 +27606,BETON+024,623,605,699277039,10495,0 +27607,Piek%C5%82o+to+inni,564,351,848956765,10160,0 +27608,Wioska+barbarzy%C5%84ska,385,382,8419570,1848,0 +27609,030,663,484,7085502,9893,0 +27610,Krosno+3,537,338,7485877,5807,0 +27611,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,663,699828442,9825,0 +27612,Wioska+barbarzy%C5%84ska,558,347,699072129,10370,0 +27613,Obrze%C5%BCa+09,552,655,848915531,5983,0 +27614,Wioska+Bochun10,335,497,7449254,7780,0 +27615,A0301,340,486,8841266,10362,0 +27616,0536,562,659,698659980,10426,0 +27617,Bagdad,496,334,8847546,10311,0 +27618,32.+Na+Wa%C5%82brzych,373,598,8665783,10728,0 +27619,D+002,660,505,8078914,10479,0 +27620,Jaaa,665,486,698635863,10555,0 +27621,Rabsztyn,378,407,848945529,8906,0 +27622,O15+Alftanes,664,517,699272880,10006,0 +27623,A007,617,453,699722599,10362,0 +27624,Lord+Lord+Franek+.%23061,535,342,698420691,10023,0 +27625,BEZDZIETNY+KAWALER,412,635,848913998,10160,0 +27626,R%C4%99cznik+do+zmiany,369,407,699697558,10160,0 +27627,Szulernia,409,365,7249451,10237,0 +27628,O26+Songdo,664,524,699272880,9852,0 +27629,%2A052,593,631,699567608,9728,0 +27630,0507,519,660,698659980,10160,0 +27631,010+MONETKI,656,466,7588382,8757,0 +27633,Pobozowisko,383,615,699513260,6687,0 +27634,off+100+%25,352,566,849012521,10245,0 +27635,102...tomecz,483,335,6920960,9529,0 +27636,wJuvia,447,656,699849210,4849,0 +27637,Myk+i+do+kieszonki,348,564,9319058,9799,0 +27638,Gattacka,617,386,699298370,10470,0 +27639,K34+-+%5B132%5D+Before+Land,437,353,699088769,9783,0 +27640,North+Barba+047,425,357,699796330,8981,0 +27641,111,473,352,7271812,10495,0 +27642,Selawi,344,456,6258092,8697,0 +27643,B+030,660,535,8078914,9509,0 +27644,0023,417,355,699431255,10069,0 +27645,utopia,365,415,8967440,8506,0 +27646,Myk+i+do+kieszonki,362,581,9319058,9799,0 +27647,059,665,518,698999105,8404,0 +27648,025+-+Mroczna+Osada,636,410,849035905,10728,0 +27649,Sexxy,609,617,8815749,10019,5 +27650,Nowa+34,646,572,698702991,9819,0 +27651,Myk+i+do+kieszonki,358,583,9319058,9980,0 +27652,BEZDZIETNY+KAWALER,412,634,848913998,10066,0 +27653,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,662,698807570,6892,0 +27654,%3D041%3D+Wioska+barbarzy%C5%84ska,650,555,3781794,10110,0 +27655,North+Brze%C5%9B%C4%87+Kujawski,418,355,699796330,9887,0 +27656,24.+KaruTown,634,405,849060446,9735,0 +27657,J004.,367,601,849090130,10083,0 +27658,0012,612,616,6417987,7756,0 +27659,Zapora,391,380,606706,2492,0 +27660,cc+pol004,400,373,3909522,5999,0 +27661,Wioska+barbarzy%C5%84ska,570,646,6818593,9835,0 +27662,0001+Krak%C3%B3w,391,378,699402816,10634,0 +27663,CC+Choroszcz,395,372,3909522,9888,0 +27664,J06,365,596,849090130,3047,0 +27665,%2A244%2A,351,437,699273451,10430,0 +27666,Wioska+Tomek85,388,496,699265922,9761,0 +27667,Sir+develes,622,608,698786826,10471,0 +27668,POMIDOR,662,471,699598425,10728,0 +27669,Wioska+barbarzy%C5%84ska,338,521,8004076,8312,0 +27670,psycha+sitting,425,655,699736927,10311,0 +27671,%230089+barbarzy%C5%84ska,471,343,1238300,9557,0 +27672,001+Teneesse,476,655,699238479,9835,0 +27673,Jestem+Poza+Kontrol%C4%85,349,560,8004076,8803,0 +27674,048.+Hispalis,630,455,849091866,10252,0 +27675,Szlachcic,403,373,698160606,10475,0 +27676,027.+Propaganda,512,666,848928624,9904,0 +27677,Minneapolis%2C+Minnesota,602,371,7462660,10068,0 +27678,Wioska+barbarzy%C5%84ska,402,365,8419570,7439,0 +27679,Osada+koczownik%C3%B3w,586,638,1415009,10481,6 +27680,Monetkownia,616,616,699759128,10237,0 +27681,Nowa+29,644,569,698702991,9960,0 +27682,Wioska+barbarzy%C5%84ska,540,338,699066118,5330,0 +27683,Szulernia,409,364,7249451,9981,0 +27684,J007.,369,601,849090130,10019,0 +27685,psycha+sitting,442,657,699736927,10311,0 +27686,0547,528,663,698659980,9860,0 +27687,Szlachcic,456,416,698388578,10025,0 +27688,BAC%C3%93WKA+%7C023%7C,640,410,7394371,7047,0 +27689,02+tonieostatnieslowo,606,371,699861004,9554,0 +27690,BAC%C3%93WKA+%7C037%7C,633,403,7394371,5667,0 +27692,020,661,490,7085502,9783,0 +27693,015.,396,624,2665207,9835,0 +27695,Wioska+Bochun10,336,493,7449254,10336,0 +27696,609%7C372,607,374,699580120,5311,0 +27697,Architekci+Plac%C3%B3w+Boju,340,543,8004076,3400,7 +27698,Ave+Why%21,456,638,698585370,9924,0 +27699,008,595,635,849097799,8264,0 +27700,0015,556,656,698659980,10252,1 +27701,008,380,392,849059457,4490,0 +27702,Stawiamy+p%C5%82otek,347,451,6258092,2013,0 +27703,Jestem+Poza+Kontrol%C4%85,348,554,8004076,9880,0 +27704,Wioska+Bochun10,337,498,7449254,10569,0 +27705,0089,614,623,699432672,10495,0 +27706,cc+Tworki,396,371,3909522,10027,0 +27707,117+Wioska+barbarzy%C5%84ska,548,344,699491076,9756,0 +27708,Pobozowisko,377,611,699513260,7998,0 +27709,012,662,492,7085502,9740,0 +27710,%2ANeptek,580,646,699443920,9761,0 +27711,%2A095%2A,359,413,699273451,10211,0 +27712,084,654,556,849095227,9806,9 +27713,Banan%231,593,367,699485250,10211,0 +27714,Myk+i+do+kieszonki,359,576,9319058,9799,0 +27715,049,657,553,698999105,9708,0 +27716,Wioska+001,384,388,8419570,9610,0 +27717,014.,403,628,2665207,9835,0 +27718,023+pawelk95,661,487,2135129,9500,0 +27719,26.+KaruTown,635,405,849060446,9735,0 +27720,A001,472,639,699383279,9805,0 +27721,Kuku+na+Muniu,344,536,849096458,8652,0 +27722,Chekku+-+meito,336,525,9280477,10068,0 +27723,18+Belegost,458,649,699736927,6788,0 +27724,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,658,699828442,9809,0 +27725,-007-,344,446,393668,10136,0 +27726,MojeDnoToWaszSzczyt,566,350,848915730,9924,0 +27727,076+komornicy,341,544,699510259,2501,0 +27729,Jednak+wol%C4%99+gofry,424,644,699736927,7828,0 +27730,Kozaki+3,616,609,699778867,12154,0 +27731,006+Speyside,554,345,699072129,6081,0 +27732,%3D051%3D+Wioska+barbarzy%C5%84ska,642,575,3781794,8878,0 +27733,--keystone,623,390,8096537,10311,0 +27734,040,655,543,698999105,10311,0 +27735,135,475,335,7271812,6593,0 +27737,BAC%C3%93WKA+%7C030%7C,631,405,7394371,5878,0 +27738,I009,664,450,699722599,10140,0 +27739,0086,609,625,699432672,10495,0 +27740,088,622,603,698786826,10401,0 +27741,07+Wioska,440,651,698993706,6548,0 +27742,Darmowe+przeprowadzki,467,657,848935389,9809,0 +27743,Wioska+barbarzy%C5%84ska,664,526,6510480,6874,0 +27746,Dodowo+mniejsze,339,533,849096458,8998,0 +27747,0030,612,625,699432672,10495,0 +27748,003,650,565,699301458,1563,0 +27749,005+Jeszcze+%C5%BCyje,337,508,915113,5551,0 +27750,007+serniczek+z+czekolad%C4%85,504,662,8954402,10160,0 +27751,072,627,598,698786826,8892,0 +27752,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,655,698807570,10093,0 +27753,0195,546,656,698659980,10019,0 +27754,%3D048%3D+Wioska+barbarzy%C5%84ska,657,550,3781794,10526,0 +27755,%23%23+Nieznana+%23%23,630,602,699778867,10094,0 +27756,Krosno+6,538,341,7485877,5263,0 +27757,MojeSzczytToTw%C3%B3jDno,508,338,828637,10490,0 +27758,006.Lille,336,507,1830149,9792,0 +27759,Pobozowisko,381,616,699513260,9364,0 +27760,011.,624,524,6520732,10019,0 +27761,023+M%C5%82odzie%C5%84cza+rado%C5%9B%C4%87,391,620,8268010,8603,0 +27762,B.08,667,510,699737356,9566,0 +27763,Lord+Lord+Franek+.%23062,527,341,698420691,9965,0 +27764,%C5%BBUBRAWKA+001,603,622,33900,10452,6 +27765,004,423,641,849089459,9835,0 +27766,Myk+i+do+kieszonki,348,565,9319058,9799,0 +27767,Ave+Why%21,477,666,698585370,9194,0 +27768,Samarkanda,426,644,849089459,9452,0 +27770,Grvvyq+100k%24,653,559,699676005,10495,0 +27772,0283,554,657,698659980,9354,0 +27773,NI1,346,457,6258092,10495,5 +27774,Wioska+Bochun10,333,492,7449254,10336,0 +27775,Piek%C5%82o+to+inni,564,353,848956765,10019,0 +27776,Obrze%C5%BCa+03,554,655,848915531,10838,4 +27777,Fifon%C5%BC,339,529,849096458,9459,0 +27778,012,602,368,1018357,9797,0 +27779,%2ANic+nowego...,578,646,699443920,9761,0 +27780,Architekci+Plac%C3%B3w+Boju,338,541,8004076,4589,0 +27781,Jamachama,367,398,8967440,6965,0 +27782,12k%24+Grvvyq,657,567,699676005,10495,0 +27783,-01-,332,497,765188,10728,0 +27784,Jednak+wol%C4%99+gofry,422,644,699736927,5060,0 +27786,%3D052%3D+Wioska+barbarzy%C5%84ska,644,576,3781794,10580,0 +27787,Chekku+-+meito,334,519,9280477,8141,0 +27788,003+Wioska+barbarzy%C5%84ska,335,515,915113,8623,0 +27789,Gattacka,612,385,699298370,9372,0 +27790,Monetkownia,617,615,699759128,10237,0 +27791,Osi%C4%99ciny-morra12311,650,425,7340529,10534,0 +27792,z+057,583,640,699342219,10495,0 +27793,A033+Wioska+7,657,443,113796,9497,0 +27794,001,422,640,849089459,9995,0 +27795,%C5%BBUBRAWKA+B002,618,617,33900,9149,0 +27797,%5B172%5D,637,586,8000875,6972,0 +27798,Obrze%C5%BCa+05,554,653,848915531,11550,0 +27799,DW5,347,449,6258092,10495,0 +27801,026+barbarzy%C5%84ska,643,418,9238175,9879,0 +27802,Darmowe+przeprowadzki,466,659,848935389,11143,0 +27803,Wioska+Bochun10,336,518,7449254,4469,0 +27804,0028,416,357,699431255,9546,0 +27805,Valhalla+8.,375,602,849097002,9078,0 +27806,056.,392,624,2665207,9835,0 +27807,North+Barba+045,426,353,699796330,9714,0 +27808,SPOCENI+KUZYNI,416,645,848913998,9248,0 +27809,Gattacka,618,383,699298370,10470,0 +27810,0508,541,662,698659980,10019,0 +27811,North+Barba+037,421,357,699796330,9983,0 +27812,Lord+Lord+Franek+.%23156,503,339,698420691,9976,0 +27813,B+058,664,531,8078914,5759,0 +27814,073,629,596,698786826,8761,0 +27816,Obrze%C5%BCa+091,553,655,848915531,5641,0 +27817,Taran,544,385,699170684,9379,0 +27818,A034+Wioska+8,654,452,113796,10140,0 +27819,%2A142%2A,358,416,699273451,8743,7 +27820,Valhalla+9,374,603,849097002,9970,0 +27821,Taki+Pan,501,336,698739350,6213,0 +27822,79k%24+Grvvyq,655,564,699676005,10495,0 +27823,2.05,343,456,3502565,6910,0 +27825,Krosno+5,538,339,7485877,4926,0 +27826,0006,424,643,699736927,3763,0 +27827,Darma+dla+zawodnika,518,667,699494488,10229,7 +27828,Zachodnie+skrzydlo,614,383,848924219,4174,0 +27829,Wioska+barbarzy%C5%84ska,633,407,699429153,9825,0 +27830,Lord+Lord+Franek+.%23157,501,332,698420691,9971,0 +27831,Ave+Why%21,480,666,698585370,9387,0 +27832,Lord+Lord+Franek+.%23007,525,335,698420691,10294,0 +27833,023,452,655,698650301,10019,0 +27834,Avanti%21,381,485,698625834,9950,0 +27835,O12+Barbosa,662,519,699272880,10006,0 +27836,10+im+Mironowa,591,430,849037469,9809,0 +27837,Bagdad,498,337,8847546,10132,0 +27838,%3D068%3D+Wioska+barbarzy%C5%84ska,659,550,3781794,10380,0 +27839,Wioska+barbarzy%C5%84ska,573,647,6818593,9835,0 +27840,113.+Morze+Garyjskie,634,600,8337151,7968,0 +27841,024+pawelk95,663,483,2135129,9000,0 +27842,030+-+Mroczna+Osada,642,414,849035905,6848,0 +27843,Dajanka+30,353,575,849012843,365,0 +27844,%7C016%7C+Kato+Zakros,493,662,699393742,10252,0 +27845,130...centr,447,344,6920960,9740,0 +27846,Piek%C5%82o+to+inni,583,360,848956765,10160,0 +27847,Taki+Pan,513,333,698739350,5208,0 +27848,wStyx,447,658,699849210,5960,0 +27849,%7C019%7C+Gialos,499,668,699393742,10160,0 +27850,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,664,698807570,8806,0 +27851,000000,415,583,225023,10495,0 +27852,D+016,662,499,8078914,9820,0 +27853,Maszlug+kolonia+XIX,361,419,848977649,4416,0 +27854,0087,610,627,699432672,10495,0 +27855,027.,406,636,2665207,9835,0 +27856,Lord+Lord+Franek+.%23063,535,343,698420691,10144,0 +27857,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,619,1434753,10068,0 +27858,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,661,699828442,9817,0 +27859,K34+-+%5B129%5D+Before+Land,441,349,699088769,9783,0 +27860,%23113%23,638,592,692803,8180,0 +27861,A22,476,667,698652014,10842,0 +27862,Obrze%C5%BCa+08,553,651,848915531,6706,0 +27863,A029,595,370,699485250,9170,0 +27864,Wioska+Bochun10,337,475,7449254,10444,0 +27865,llllllllllllllll,626,400,699429153,10224,0 +27866,104,654,445,849088515,10019,0 +27867,Wioska+Bochun10,340,464,7449254,10311,0 +27868,13.+Stara+uje%C5%BCd%C5%BCalnia,371,596,8665783,8984,0 +27870,SPOCENI+KUZYNI,421,647,848913998,10109,0 +27871,%5BB%5D_%5B027%5D+Dejv.oldplyr,434,345,699380607,9441,0 +27872,Architekci+Plac%C3%B3w+Boju,342,538,8004076,7700,0 +27874,002,423,640,849089459,9340,0 +27875,005+MONETKI,657,467,7588382,8911,0 +27877,MojeDnoToWaszSzczyt,565,347,848915730,9938,0 +27878,0022,414,363,848913037,9993,0 +27879,Ave+Why%21,476,660,698585370,11297,0 +27880,Piwna+26,648,426,699812007,7418,0 +27882,Bagdad,499,336,8847546,9766,0 +27883,Lord+Lord+Franek+.%23178,531,337,698420691,10160,0 +27884,Chekku+-+meito,343,531,9280477,8555,0 +27885,--Lead,623,386,8096537,10104,0 +27887,Szlachcic%2FTaran,613,376,699759128,10237,0 +27888,Lord+Lord+Franek+.%23064,525,337,698420691,9957,0 +27889,009,646,570,849095963,5705,0 +27890,Psycha+Siada,457,661,698807570,9126,0 +27891,Lech+Pozna%C5%84+NWR,491,668,849004274,9835,0 +27892,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,656,698807570,10252,0 +27893,Kentin+ufam+Tobie,338,480,699783765,10000,0 +27894,029+MONETKI,662,476,7588382,9581,0 +27895,052,663,537,849095227,9377,0 +27896,Wioska+Bochun10,338,501,7449254,8457,0 +27897,Nowy+%C5%9Awiat+RCxD,487,660,849004274,9835,0 +27899,xyz+%23016+TerrorMachine,583,363,7555180,5753,0 +27900,639%7C410+Wioska+barbarzy%C5%84ska,639,410,6822957,7018,0 +27901,Ave+Why%21,477,665,698585370,9385,0 +27902,Kentin+ufam+Tobie,337,478,699783765,10000,0 +27903,I%23030,598,368,2065730,8022,0 +27904,Dajanka+29,353,580,849012843,2153,0 +27905,North+P%C5%82ock,426,355,699796330,9906,0 +27906,039+Attre,468,663,699834004,9976,0 +27907,Architekci+Plac%C3%B3w+Boju,341,543,8004076,9795,0 +27908,WKS,332,506,849097614,9405,0 +27909,Jednak+wol%C4%99+gofry,473,652,699725436,10083,0 +27910,%2ANess,576,645,699443920,9761,0 +27912,50k%24+Grvvyq,650,570,699676005,7856,0 +27913,Wioska+065,640,590,848971079,9761,0 +27914,%2A245%2A,353,431,699273451,9104,0 +27915,002+serniczek+z+rodzynkami,500,668,8954402,10160,1 +27917,yogi,531,543,2808172,10393,0 +27918,KUZYN,415,642,848913998,2813,0 +27919,Wioska+barbarzy%C5%84ska,577,649,6818593,9835,0 +27920,18.+Podlascy+inwigilatorzy,373,605,8665783,9166,0 +27921,127+Village+Name+2,598,365,699491076,10001,0 +27922,032+barbarzy%C5%84ska,644,419,9238175,8151,0 +27923,Taki+Pan,499,339,698739350,5937,0 +27924,Wioska+barbarzy%C5%84ska,379,385,8419570,7141,0 +27925,%3D059%3D+Wioska+barbarzy%C5%84ska,645,581,3781794,10473,0 +27926,Wioska+barbarzy%C5%84ska,556,343,699072129,10217,0 +27927,Mexico2,455,643,699736927,9428,0 +27928,0566,567,653,698659980,10019,0 +27930,ADEN,576,352,698588535,10311,0 +27931,020,627,610,699567608,9525,0 +27932,B+016,662,535,8078914,10458,0 +27933,wWendy,448,655,699849210,7087,0 +27934,mys,565,650,699828685,9976,0 +27935,Lord+Lord+Franek+.%23065,532,337,698420691,10152,0 +27936,Pobozowisko,385,613,699513260,8337,0 +27937,0161,535,667,698659980,10160,0 +27938,I%23029,597,368,2065730,5768,0 +27939,Taran,667,491,699598425,10728,0 +27940,Ziemia,549,341,699797805,3374,0 +27941,Grab%C3%B3wek,387,386,8419570,10168,0 +27942,Wioska+Bochun10,334,504,7449254,10495,0 +27943,Sony+911,582,645,1415009,10208,0 +27944,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,393,626,1434753,10068,0 +27945,D+012,666,504,8078914,9746,0 +27946,%5B157%5D,642,587,8000875,8038,0 +27947,%230091+barbarzy%C5%84ska,479,337,1238300,9203,0 +27948,K34+-+%5B134%5D+Before+Land,432,353,699088769,10126,3 +27950,B.055,665,507,9188016,10000,0 +27951,Ave+Why%21,476,665,698585370,9465,9 +27952,Weso%C5%82ych+%C5%9Awi%C4%85t,588,361,848915730,5397,0 +27953,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,664,698807570,10158,0 +27954,0509,521,665,698659980,10495,0 +27956,030...Ob,453,344,6920960,10220,0 +27957,Jestem+Poza+Kontrol%C4%85,349,554,8004076,8369,0 +27958,Lord+Lord+Franek+.%23040,525,342,698420691,9960,0 +27959,021+Anor+Londo,487,671,699834004,10787,0 +27960,029...OPELEK,441,345,6920960,10233,0 +27961,Piek%C5%82o+to+inni,580,353,848956765,4293,0 +27962,Rework,366,592,849095992,9156,0 +27963,MojeDnoToWaszSzczyt,565,348,848915730,9938,0 +27964,Lord+Lord+Franek+.%23066,534,337,698420691,9962,0 +27966,Lord+Lord+Franek+.%23117,509,332,698420691,9960,0 +27967,Wioska+klez+017,335,511,698295651,6865,0 +27968,Gattacka,613,378,699298370,9809,0 +27969,036+Thurn,442,655,699834004,3426,0 +27970,Wioska+barbarzy%C5%84ska,554,342,699072129,10220,0 +27971,-0003-,543,339,2972329,9761,0 +27972,Valhalla+3,369,603,849097002,9218,0 +27973,011,433,651,849089459,9811,0 +27974,121...centr,457,341,6920960,7474,0 +27976,Wioska+barbarzy%C5%84ska,553,343,699072129,10378,0 +27977,134...barba,458,338,6920960,8959,0 +27978,--wall+drug,624,387,8096537,9761,0 +27980,Wioska+Bochun10,337,516,7449254,4471,0 +27981,Ave+Why%21,479,661,698585370,11297,0 +27982,MojeSzczytToTw%C3%B3jDno,510,337,828637,10478,0 +27983,004+nazwa,363,597,8607734,10019,0 +27984,Wioska+barbarzy%C5%84ska,379,384,8419570,6185,0 +27985,026%7C%7C+Puppis,490,638,849035525,10019,0 +27986,%C5%BBUBRAWKA+024,592,636,33900,9849,0 +27987,Darmowe+przeprowadzki,461,656,848935389,11321,0 +27988,02Wioska,367,599,8607734,7313,0 +27989,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F1,597,630,33900,6812,0 +27990,118+Wioska+barbarzy%C5%84ska,548,345,699491076,9997,0 +27991,Dajanka+21,341,542,849012843,1878,0 +27992,0019,625,388,699857387,6173,0 +27993,D%C4%85browa+0001,359,592,849096972,10083,0 +27994,Jowisz,550,341,699797805,4202,0 +27995,CHARFA,512,339,699072129,10218,5 +27996,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,659,699828442,9817,0 +27997,%23.19+YYY,659,472,849054582,10019,0 +27998,%5B0023%5D,419,415,8630972,10495,0 +27999,Szlachcic+%21%21%21,496,471,699098531,8983,0 +28000,%C5%BBUBRAWKA+014,602,628,33900,9606,0 +28001,009,593,640,699316421,7767,0 +28002,Piek%C5%82o+to+inni,580,357,848956765,10160,0 +28003,023+VW+Wioska+barbarzy%C5%84ska,362,407,3108144,3363,0 +28005,Szlachcic%2FTaran,622,394,699759128,8914,0 +28006,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,662,698807570,9491,0 +28007,047,661,536,698999105,10173,0 +28008,34.+Lutkow+litra+na+%C5%82ep,378,575,8665783,7284,0 +28009,Wioska,386,380,8419570,9559,0 +28011,Krosno,533,339,7485877,7335,0 +28012,%5B0024%5D,416,413,8630972,10495,0 +28013,Monetkownia,619,617,699759128,10237,0 +28015,Jaaa,666,498,698635863,9398,0 +28016,%2A007,591,639,699567608,10144,4 +28017,Wioska+barbarzy%C5%84ska,351,428,393668,6310,0 +28018,77.,634,401,7394371,6539,0 +28019,Itself+SA,511,666,849004274,9835,0 +28020,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,661,699828442,9825,0 +28021,Piek%C5%82o+to+inni,561,345,848956765,10160,0 +28022,%3D053%3D+Wioska+barbarzy%C5%84ska,645,579,3781794,9609,0 +28024,Taki+Pan,513,337,698739350,6167,0 +28025,Monetkownia,617,610,699759128,10237,0 +28026,001.,398,624,2665207,9835,0 +28027,Mniejsze+z%C5%82o+0085,339,505,699794765,5031,0 +28028,060,656,541,699351301,10160,0 +28029,deff+100+%25,347,568,849012521,8982,0 +28030,001.Wioska+zbyszek2609,333,506,1830149,9814,0 +28031,016,454,339,2502956,10019,0 +28032,009.+Dla+flag,348,437,698630507,7188,0 +28033,015,667,488,7085502,9746,0 +28034,Jestem+Poza+Kontrol%C4%85,348,552,8004076,9587,0 +28035,03+Wioska,442,652,698993706,9485,0 +28036,Wioska+009,386,387,8419570,10061,0 +28037,nosze+klapki+marki+Kubota,581,639,848995242,10346,0 +28038,E%23001,634,406,2065730,5829,0 +28039,Darma+dla+zawodnika,515,660,699494488,10424,0 +28040,%C5%BBUBRAWKA+015,596,629,33900,8000,0 +28041,Jaaa,668,496,698635863,10495,0 +28042,zzzRezygnacja+01,631,606,699778867,11550,0 +28043,112,652,439,849088515,7144,0 +28044,cc+Kobierzynqqqqqqqqqqqqqqqqq,394,373,3909522,10144,0 +28045,Ave+Why%21,481,665,698585370,9632,4 +28046,%230098+barbarzy%C5%84ska,460,344,1238300,7776,0 +28047,Lord+Lord+Franek+.%23067,523,335,698420691,10032,0 +28049,A032+Wioska+3,658,445,113796,10143,0 +28050,Hej+hoo,436,350,699393759,10495,0 +28051,Jestem+Poza+Kontrol%C4%85,349,561,8004076,9880,0 +28052,.achim.,490,334,6936607,9980,0 +28053,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,630,1434753,10068,0 +28054,-016-,371,598,699097885,9899,0 +28055,%5BA%5D013,430,650,849097175,3335,0 +28056,A01,472,666,698652014,10019,0 +28057,050.,406,634,2665207,9583,0 +28058,031,667,484,7085502,10158,0 +28059,Nowy+%C5%9Bwiat+3,344,560,849084005,6812,0 +28060,8047,375,605,8607734,8480,0 +28061,Aila,419,646,699736927,7441,0 +28062,Chekku+-+meito,335,526,9280477,9976,0 +28063,Lord+Lord+Franek+.%23158,509,333,698420691,10299,0 +28064,089,623,609,698786826,10401,0 +28065,Valhalla+A3,374,602,849097002,7206,0 +28066,Wioska+barbarzy%C5%84ska,661,463,113796,3884,0 +28067,A036,574,372,699485250,10211,0 +28068,SPOCENI+KUZYNI,413,644,848913998,3731,0 +28069,66.+KaruTown,631,402,7394371,10080,9 +28070,042+%7C+PALESTINA,645,421,9228039,9544,0 +28071,Darmowe+przeprowadzki,468,661,848935389,10753,0 +28072,xxx+-+06,609,620,699778867,10654,0 +28073,009,598,632,849097799,8203,0 +28074,008+serniczek+z+karmelem,502,664,8954402,9984,0 +28075,psycha+sitting,428,651,699736927,7314,0 +28076,M181_022,356,427,393668,9902,0 +28077,023.,401,629,2665207,9835,0 +28078,Denger+13,360,589,698353083,9239,0 +28079,0510,533,661,698659980,10083,0 +28080,040,662,498,7085502,9735,0 +28081,%2ANo+i+co+z+tego...,575,645,699443920,9761,1 +28082,Wioska+Bochun10,333,487,7449254,10311,0 +28083,003,545,340,849087786,3356,0 +28084,016.,403,629,2665207,9835,0 +28085,025,653,538,699351301,11321,0 +28086,Lord+Lord+Franek+.%23118,518,333,698420691,8096,0 +28087,008+Gors+Velen,466,660,699834004,10104,0 +28088,052KZ,486,332,849063849,7350,0 +28089,Wioska+barbarzy%C5%84ska,540,337,699066118,5053,0 +28090,070,602,372,2502956,10019,0 +28091,022,603,367,1018357,10019,9 +28092,0297,568,654,698659980,10083,0 +28093,002,547,341,849087786,5150,2 +28094,093...bar,453,339,6920960,9287,0 +28095,Darma+dla+zawodnika,527,663,7860453,9804,0 +28096,%23.39+Wioska+barbarzy%C5%84ska,662,474,849054582,4058,0 +28097,019+-+Mroczna+Osada,635,410,849035905,10320,2 +28098,025...+P%C3%B3%C5%82+zach,450,344,6920960,10495,0 +28099,B.09,663,495,699737356,7274,0 +28100,---010,375,612,8607734,9432,0 +28101,026.,401,632,2665207,9835,0 +28102,Myk+i+do+kieszonki,358,578,9319058,9799,5 +28103,42k%24+Grvvyq,649,578,699676005,10333,0 +28104,%7CB%7C+Crystalshell.,488,667,698147372,10495,0 +28106,072,659,551,849095227,7755,0 +28107,%2A4625%2Aa+Remont,646,429,7973893,9658,0 +28108,Wioska+barbarzy%C5%84ska,576,648,6818593,9727,0 +28109,27.+W+buszu,360,592,8665783,8007,0 +28110,J009,365,601,849090130,6391,0 +28111,009+serniczek+z+makrel%C4%85,502,663,8954402,10062,0 +28112,B.056,668,506,9188016,10000,0 +28113,Valhalla+1,369,605,849097002,12154,0 +28114,zzzRezygnacja+04,627,601,699778867,10495,0 +28115,045KZ,483,334,849063849,8307,0 +28116,%2A025,600,635,699567608,9712,0 +28117,Weso%C5%82ych+%C5%9Awi%C4%85t,591,360,848915730,5429,0 +28118,027+MONETKI,663,482,7588382,9544,0 +28119,Wioska+Kaffik+II,634,582,6136757,6733,0 +28120,Wioska+barbarzy%C5%84ska,384,386,8419570,6945,0 +28122,090,622,609,698786826,10495,0 +28123,0233,540,661,698659980,10083,7 +28124,113...centr,453,346,6920960,8474,0 +28125,0235,558,656,698659980,10083,0 +28126,%2A01+Nemeczek%2A,362,412,2415972,10177,0 +28127,Klan+Wilka,346,435,849097716,8035,0 +28128,Kasyno,449,512,7249451,9491,0 +28129,Lord+Lord+Franek+.%23106,516,339,698420691,9957,0 +28130,X008,351,563,9264752,10008,0 +28131,Gattacka,615,383,699298370,9372,0 +28132,Wioska+barbarzy%C5%84ska,543,343,698350371,4142,0 +28133,--Lyon,619,384,8096537,10703,0 +28134,Dzielnica+klasztorna,481,340,849048216,5120,0 +28135,Twierdz%C4%85+4,660,464,848935020,7670,0 +28136,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,627,1434753,10068,0 +28137,Valhalla+A1,374,604,849097002,7449,0 +28138,0067,424,352,699431255,9473,0 +28140,048+BOBI+4,662,481,2135129,9309,0 +28141,cc+Z0000000000000,393,377,3909522,5922,0 +28142,022,470,661,699238479,7667,0 +28143,046+Essex,632,592,699272880,7800,0 +28144,Wuwuzela,340,534,849096458,8703,0 +28145,B+018,661,537,8078914,9789,0 +28146,Lord+Lord+Franek+.%23159,503,334,698420691,9925,0 +28147,76.,634,404,849060446,5498,0 +28148,O33+Florida,667,522,699272880,10006,0 +28149,Myk+i+do+kieszonki,353,571,9319058,9799,0 +28150,Wioska+barbarzy%C5%84ska,371,399,848886056,3768,0 +28151,Wioska+barbarzy%C5%84ska,384,383,8419570,3940,0 +28152,1v9+machine,391,619,699697558,10019,0 +28153,054,356,517,698641566,9809,0 +28154,014+serniczek+z+posypk%C4%85,504,661,8954402,9806,0 +28155,012+Beauclair,460,658,699834004,10311,0 +28156,53.+KaruTown,636,405,849060446,4854,0 +28157,Bagdad,498,334,8847546,10311,0 +28158,Wioska+Bochun10,337,462,7449254,10452,0 +28159,chata+z+basenem,594,637,848995242,10362,0 +28160,deff+100+%25,349,570,849012521,9790,0 +28161,Lord+Lord+Franek+.%23068,526,335,698420691,9962,0 +28162,%5BB%5D_%5B003%5D+Dejv.oldplyr,429,351,699380607,10495,0 +28163,016.Barbara,335,507,1830149,4655,0 +28164,Orze%C5%82+Wyl%C4%85dowa%C5%82,466,663,698807570,10160,0 +28165,North+Barba+048,423,351,699796330,9674,0 +28166,kto+ananasowy+pod+wod%C4%85+ma+dom,661,539,699628084,9938,0 +28167,008+MONETKI,663,477,7588382,9828,0 +28168,013W-B%C4%99dzin,558,510,8323711,10495,0 +28169,Lord+Lord+Franek+.%23069,517,336,698420691,9976,0 +28170,nie+budzi%C4%87+%21%21%21,582,646,848995242,10268,0 +28172,K34+-+%5B139%5D+Before+Land,442,347,699088769,9783,0 +28173,0030+MzM,634,592,698416970,8788,3 +28174,010+-+Mroczna+Osada,640,421,849035905,10602,0 +28175,Wioska+barbarzy%C5%84ska,632,604,2269943,3390,0 +28176,Lord+Lord+Franek+.%23070,526,338,698420691,9955,0 +28177,Myk+i+do+kieszonki,347,562,9319058,9799,0 +28178,Szulernia,383,378,7249451,10898,0 +28179,Budal,620,390,699298370,10259,0 +28180,Wioska+barbarzy%C5%84ska,350,430,393668,6833,0 +28181,Sony+911,588,636,1415009,10257,0 +28182,MojeDnoToWaszSzczyt,566,347,848915730,9938,0 +28183,Lord+Lord+Franek+.%23119,511,333,698420691,9933,0 +28184,X007,352,563,9264752,10495,0 +28185,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,628,1434753,10068,0 +28186,Architekci+Plac%C3%B3w+Boju,341,551,8004076,4042,0 +28187,Architekci+Plac%C3%B3w+Boju,338,538,8004076,9778,0 +28188,136,476,337,7271812,7275,0 +28189,%230042+barbarzy%C5%84ska,470,338,1238300,10178,0 +28190,amator,554,654,848915531,8811,0 +28191,Klaudek,591,370,849092309,9994,0 +28192,Wioska+Bochun10,336,463,7449254,8238,0 +28193,043,660,539,849095227,9790,0 +28195,Grvvyq+116k%24,612,617,699676005,10252,0 +28196,%2A080%2A,358,413,699273451,10211,0 +28197,Z+002,488,338,6384450,6546,0 +28198,004+-+Mroczna+Osada,642,419,849035905,11321,0 +28199,089,658,556,849095227,9753,0 +28200,Lord+Lord+Franek+.%23160,505,334,698420691,10029,0 +28201,02.+Stra%C5%BC+miejska+na+Zawadach,505,668,849092769,9986,0 +28202,020+MONETKI,662,479,7588382,9380,0 +28203,Valhalla+A0,372,603,849097002,9629,0 +28204,Cezaria,408,637,849096944,8598,0 +28205,%3A%3A%3A%3A35%3A%3A%3A,447,657,699849210,8179,0 +28207,033+serniczek+rosa,515,667,8954402,10970,0 +28208,%2A013+Nemeczek%2A,363,413,2415972,9274,0 +28209,%2A064%2A,356,416,699273451,10211,0 +28210,0653,539,667,698659980,9747,0 +28211,Klaudek7,594,369,849092309,7160,0 +28212,%5BA%5D001,425,651,699736927,7561,0 +28213,A022+Alicante,658,459,113796,10160,0 +28214,BAC%C3%93WKA+%7C036%7C,631,399,7394371,12154,0 +28215,Z+003,488,339,6384450,9023,0 +28216,Orze%C5%82+Wyl%C4%85dowa%C5%82,451,660,698807570,8739,0 +28217,Lord+Lord+Franek+.%23161,501,334,698420691,9881,0 +28218,%5BB%5D_%5B007%5D+Dejv.oldplyr,424,350,699380607,10728,0 +28219,Wioska+barbarzy%C5%84ska,349,444,393668,5674,0 +28220,Wioska+Bochun10,338,462,7449254,10311,0 +28221,Lord+Lord+Franek+.%23120,516,332,698420691,8155,0 +28222,Wioska+barbarzy%C5%84ska,422,653,699736927,7109,0 +28223,A+009,608,378,6384450,10362,0 +28224,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,390,628,849097937,9190,0 +28225,005.Coma,366,404,8967440,8158,0 +28226,%5BB%5D_%5B013%5D+Dejv.oldplyr,428,349,699380607,10636,0 +28227,C005,361,588,8607734,10160,9 +28228,005+fristajloo,595,363,1018357,10019,0 +28229,A026+Gradac,660,458,113796,10160,0 +28230,0026,413,355,699431255,9813,0 +28231,.achim.,532,399,6936607,10311,0 +28232,Architekci+Plac%C3%B3w+Boju,339,538,8004076,7700,0 +28233,%25+2+%25+spocone+dziadki,582,638,848995242,10426,0 +28234,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,397,634,1434753,10068,0 +28235,Jehu_Kingdom_14,650,431,8785314,7368,0 +28236,005,546,339,849087786,1629,0 +28237,.achim.,526,386,6936607,8636,0 +28238,Weso%C5%82ych+%C5%9Awi%C4%85t,597,363,848915730,7147,0 +28239,North+Barba+050,426,349,699796330,9278,0 +28240,Szlachcic%2FTaran,625,390,699759128,10237,0 +28241,0171,546,662,698659980,10019,0 +28242,%7C023%7C+Rodos,498,664,699393742,9976,0 +28243,Krosno+7,535,341,7485877,2964,0 +28245,Wioska+barbarzy%C5%84ska+C,365,404,8967440,2819,0 +28246,Wioska+Foxter,473,647,698585370,9347,0 +28247,Wioska+Bochun10,334,492,7449254,10311,0 +28248,-0004-,540,340,2972329,9761,0 +28249,48k%24+Grvvyq,652,571,699676005,9760,0 +28250,028.,404,637,2665207,9835,0 +28251,Weso%C5%82ych+%C5%9Awi%C4%85t,589,357,848915730,8089,0 +28252,012,435,652,699246032,9226,4 +28253,Sexxy,614,619,8815749,10019,0 +28254,%2A131%2A,354,416,699273451,10211,0 +28255,kto+ananasowy+pod+wod%C4%85+ma+dom,664,538,699628084,9571,0 +28256,%230101+barbarzy%C5%84ska,478,339,1238300,9551,0 +28257,%3D033%3D+Wioska+barbarzy%C5%84ska,655,554,3781794,8043,0 +28258,Wioska+Bochun10,334,513,7449254,3928,0 +28259,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,663,698807570,10252,1 +28260,030+serniczek+z+budyniem,510,666,8954402,9735,0 +28261,Cz%C4%99stochowa,669,498,699737356,8488,0 +28262,Wioska+barbarzy%C5%84ska,441,655,699736927,4263,0 +28263,0511,536,659,698659980,10083,0 +28264,Chekku+-+meito,336,524,9280477,9976,0 +28265,CRESOVIA,336,513,849097614,9086,0 +28266,cc+Bimbrownia,397,368,3909522,8982,0 +28268,%2ANokturn,577,641,699443920,9761,0 +28269,Izbica+Kujawska-morra12311,650,427,7340529,10654,0 +28270,081,659,555,849095227,9835,0 +28271,%2A157%2A,357,412,699273451,7657,0 +28273,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,661,698807570,9483,0 +28274,Wioska+barbarzy%C5%84ska,445,344,699308637,9051,0 +28275,066...barbarka,441,343,6920960,10229,0 +28276,005,596,636,849097799,8872,3 +28277,O03+Isengard,661,516,699272880,10436,0 +28278,MojeDnoToWaszSzczyt,570,351,848915730,9938,0 +28279,A+READY,595,399,1553947,10019,0 +28280,%2A012+Nemeczek%2A,361,413,2415972,8806,0 +28281,Piek%C5%82o+to+inni,579,353,848956765,10019,0 +28282,Jestem+Poza+Kontrol%C4%85,348,559,8004076,9880,0 +28283,Bagdad,497,338,8847546,10278,0 +28284,Wioska+barbarzy%C5%84ska,384,384,8419570,7836,0 +28285,042,653,555,699316421,9744,0 +28286,Ave+Why%21,475,660,698585370,10863,0 +28287,031+serniczek+z+owocami,507,665,8954402,9729,0 +28288,Denger+17,364,590,698353083,9651,0 +28289,I002+uuuu,663,457,699722599,10387,9 +28290,%C5%BBUBRAWKA+022+wioska+123,595,633,33900,10052,0 +28292,Wioska+barbarzy%C5%84ska,551,344,699072129,10229,0 +28293,001+serniczek,501,664,8954402,10160,0 +28294,Chekku+-+meito,334,534,9280477,9976,0 +28296,Orze%C5%82+Wyl%C4%85dowa%C5%82,452,659,698807570,6815,0 +28297,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,664,699828442,9811,0 +28298,Chamachata,378,390,8967440,4562,5 +28299,Pa%C5%84stfa+Pu%C5%82nocy,581,352,699433558,10444,0 +28300,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F1,621,616,33900,10140,0 +28301,Architekci+Plac%C3%B3w+Boju,342,560,8004076,9880,0 +28302,005,477,352,698739350,10237,0 +28303,047,664,540,699351301,10143,0 +28304,K34+-+%5B123%5D+Before+Land,444,346,699088769,9924,0 +28305,Myk+i+do+kieszonki,357,579,9319058,4283,4 +28306,No.+7,481,662,698826986,9182,0 +28307,Lord+Lord+Franek+.%23071,526,339,698420691,9965,0 +28308,Szulernia,417,361,7249451,9981,0 +28309,048,649,566,699316421,8034,0 +28310,Orze%C5%82+Wyl%C4%85dowa%C5%82,450,660,698807570,5375,0 +28311,DW4,341,448,393668,10311,8 +28312,Wioska+Kaffik+III,642,578,6136757,8060,0 +28313,Modesto%2C+Kalifornia,603,373,7462660,10122,0 +28314,O11+Logrono,660,520,699272880,9989,0 +28315,Wioska+barbarzy%C5%84ska,664,468,699574408,8708,0 +28316,%C5%BBUBRAWKA+016,604,630,33900,9845,0 +28317,Wioska+barbarzy%C5%84ska,554,660,7756002,9370,0 +28318,020+-+Mroczna+Osada,636,408,849035905,10830,0 +28319,Myk+i+do+kieszonki,349,566,9319058,9050,0 +28320,A20,474,664,698652014,11078,0 +28321,0081,628,604,698416970,8549,0 +28323,Xray,671,504,699737356,8745,0 +28324,0172,545,663,698659980,10083,0 +28325,Faring,347,435,849097716,4073,0 +28326,Nordson,352,428,393668,6636,0 +28327,ADEN,571,348,698588535,10311,0 +28328,Szulernia,392,377,7249451,2547,0 +28329,1.08,339,454,3502565,4284,0 +28330,055+Shinsoo,627,589,699272880,6948,0 +28331,Myk+i+do+kieszonki,358,579,9319058,9799,0 +28332,Wioska+VEGE+2,657,559,87575,6033,0 +28333,B.057,667,504,9188016,10000,0 +28334,Jestem+Przest%C4%99pc%C4%85,663,511,699851345,10141,0 +28335,Denger+10,360,584,698353083,10386,0 +28337,B+048,662,528,8078914,9281,0 +28338,cc+Cedron,391,373,3909522,10152,1 +28339,Wioska+Bochun10,335,503,7449254,5334,0 +28340,030.,401,636,2665207,9835,0 +28342,nowa+parcela,580,641,848995242,10362,0 +28343,008,595,631,699316421,10273,0 +28345,%C5%BBUBRAWKA+005+kuba,600,625,33900,10037,0 +28346,Lord+Lord+Franek+.%23072,532,335,698420691,9976,0 +28347,Wioska+Bochun10,332,482,7449254,6290,0 +28348,Klaudek5,591,365,849092309,3599,0 +28349,%230080+barbarzy%C5%84ska,474,338,1238300,8307,0 +28350,TORPEDA,331,510,849097614,9212,0 +28351,37k%24+Grvvyq,649,574,699676005,9980,0 +28352,M181_035,348,427,393668,9551,0 +28354,031.,403,636,2665207,9835,0 +28355,021,625,613,699567608,10495,0 +28356,049,649,569,699316421,6706,0 +28357,002.,609,538,6520732,10019,0 +28358,%3D044%3D+Osada+koczownik%C3%B3w,656,549,3781794,10580,9 +28359,001+Arcadia+Bay,468,660,699834004,10160,0 +28360,B+024,661,535,8078914,9580,0 +28361,049KZ,487,331,849063849,5720,0 +28362,aaaaaaaaa,435,349,699308637,10559,0 +28363,Weso%C5%82ych+%C5%9Awi%C4%85t,586,362,848915730,8615,0 +28364,055.,389,623,2665207,9835,0 +28365,Szlachcic%2FTaran,627,389,699759128,10104,0 +28366,Wioska+barbarzy%C5%84ska,594,359,849041192,5228,0 +28367,%243.000+Grvvyq,644,574,699676005,10495,8 +28368,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,629,1434753,10068,0 +28369,%7C004%7C+Retimno,496,665,699393742,10063,0 +28370,Piek%C5%82o+to+inni,586,361,848956765,9635,0 +28371,%3D054%3D+Wioska+barbarzy%C5%84ska,644,577,3781794,10580,0 +28372,-09-,333,496,765188,5542,0 +28373,SPOCENI+KUZYNI,420,646,848913998,2083,0 +28374,001+nazwa,362,603,8607734,10252,0 +28375,Wioska+barbarzy%C5%84ska,397,367,3484132,7205,0 +28377,I010+Stado+Pingwin%C3%B3w,661,454,699722599,10144,0 +28379,%C5%BBUBRAWKA+018,609,626,33900,4877,0 +28380,Jednak+wol%C4%99+gofry,428,648,699736927,9584,0 +28381,MojeDnoToWaszSzczyt,567,349,848915730,9976,0 +28382,Jehu_Kingdom_40,649,434,8785314,7456,0 +28383,Kentin+ufam+Tobie,357,452,699783765,10000,0 +28384,P014+Balacha,667,505,8096537,9741,0 +28385,Didus+P,655,562,849070946,10160,0 +28387,Gattacka,614,384,699298370,9408,0 +28388,Moria,372,396,848886056,6055,0 +28389,.2.,600,370,7462660,10485,0 +28390,Dzikie+wsparcie,469,659,848935389,9809,0 +28391,%C5%BBUBRAWKA+010,601,629,33900,9941,0 +28393,114...centr,451,343,6920960,6700,0 +28394,060.+ALFI,464,562,8539216,864,0 +28395,Taka001,479,664,848999671,9594,0 +28396,17.+%C5%81ysy+ekipa,636,411,849060446,9747,0 +28397,nowa+parcelaa,582,639,848995242,10426,0 +28399,Weso%C5%82ych+%C5%9Awi%C4%85t,588,358,848915730,9902,0 +28400,%C5%BBUBRAWKA+006+Kantero,602,629,33900,10203,0 +28401,Wioska+barbarzy%C5%84ska,556,659,7756002,9902,0 +28402,.achim.,525,412,6936607,10311,0 +28403,Wioska+barbarzy%C5%84ska+032,490,339,6343784,6590,0 +28404,044.,389,626,2665207,9835,0 +28405,14.+Palce+w+Natalce,637,408,849060446,9750,0 +28407,Dzie%C5%84+s%C4%85du+nadszed%C5%82,511,661,849004274,10059,0 +28408,Jednak+wol%C4%99+gofry,424,645,699736927,8093,0 +28409,Wioska+Bochun10,336,482,7449254,10311,6 +28410,Wioska+Bochun10,336,484,7449254,10336,0 +28411,BAC%C3%93WKA+%7C045%7C,631,401,7394371,7313,0 +28412,016,427,649,699736927,8042,0 +28413,Wioska+Bochun10,338,471,7449254,10311,0 +28414,jedziemy+dalej,347,441,849098784,2676,0 +28415,Szulernia,408,359,7249451,9981,0 +28417,Wioska+b21,495,332,698239813,8263,0 +28418,133...centr+barb,449,345,6920960,8300,0 +28419,Szulernia,410,360,7249451,10010,0 +28421,SPOCENI+KUZYNI,417,646,848913998,2722,0 +28422,JEDNOR%C4%98KI+BANDYTA,411,635,848913998,10160,0 +28423,%230088+barbarzy%C5%84ska,477,337,1238300,9542,0 +28424,%2A141%2A,358,415,699273451,10130,0 +28426,%5BB%5D_%5B012%5D+Dejv.oldplyr,425,349,699380607,10495,0 +28427,021,457,344,2502956,10019,0 +28428,DMN+003,650,421,698998882,5316,0 +28429,%5BB%5D%5B04%5D+Bottom+Lounge,433,344,699380621,9973,7 +28430,Wioska+Kora,395,468,699523631,10476,0 +28432,%7CC18%7C+Nale%C5%9Bniki+z+ramen,450,662,8966820,10160,0 +28434,Szlachcic%2FTaran,612,373,699759128,10237,0 +28435,008,482,352,698739350,10247,0 +28436,58k%24+Grvvyq,646,581,699676005,7442,0 +28438,010+VW+Wioska+barbarzy%C5%84ska,363,408,3108144,6440,0 +28439,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,381,609,849097937,8971,0 +28440,0512,520,668,698659980,9827,0 +28441,0017,415,356,699431255,9946,1 +28442,Ow+Konfederacja+%2B,595,402,848915730,10079,0 +28443,Wioska+barbarzy%C5%84ska,345,547,8004076,2818,0 +28445,Piek%C5%82o+to+inni,577,357,848956765,10160,0 +28446,018,597,634,849097799,7627,0 +28447,Jaaa,664,487,698635863,10618,0 +28448,Szulernia,408,362,7249451,9981,0 +28449,Bagdad,496,337,8847546,10068,0 +28450,Darmowe+przeprowadzki,474,662,848935389,11065,0 +28451,001.Phantom+Menace,361,409,8967440,8876,0 +28453,043.,388,626,2665207,9835,0 +28454,Pobozowisko,380,619,699513260,10971,0 +28455,034+plemienny+serniczek,517,665,8954402,10664,0 +28456,cc+Zarabie,394,372,3909522,10052,3 +28457,009.Wioska+jedyny1taki,333,510,1830149,9824,0 +28458,158...wSCHODDD,493,331,6920960,8565,0 +28459,Lord+Lord+Franek+.%23006,525,333,698420691,10178,0 +28460,Zamek+Drakenhof,428,647,699736927,10311,0 +28461,Piek%C5%82o+to+inni,583,359,848956765,10160,0 +28462,Weso%C5%82ych+%C5%9Awi%C4%85t,590,362,848915730,5505,0 +28463,MELISKA,340,466,699794765,8756,0 +28465,J001.,364,602,849090130,10361,0 +28466,Ob+Konfederacja,437,344,848915730,6484,0 +28467,1v9+machine,387,620,699697558,10040,0 +28468,B.058,668,508,9188016,7830,0 +28469,0513,530,665,698659980,9289,0 +28471,Wioska+barbarzy%C5%84ska,400,363,8419570,7888,0 +28472,0567,564,653,698659980,9745,0 +28473,Jehu_Kingdom_41,647,427,8785314,7489,0 +28474,Wioska+barbarzy%C5%84ska,596,630,0,450,0 +28475,Taran,665,477,699598425,10728,0 +28477,074,630,598,698786826,10226,0 +28478,001%29+Dzier%C5%BConi%C3%B3w,544,347,849097103,9291,0 +28479,Pobozowisko,381,619,699513260,10951,0 +28480,062+%7C+PALESTINA,648,428,9228039,2804,0 +28481,deff+100+%25,350,568,849012521,9353,0 +28482,Lord+Lord+Franek+.%23121,527,336,698420691,7746,0 +28483,B+025,661,533,8078914,9460,0 +28485,Myk+i+do+kieszonki,359,583,9319058,9799,0 +28486,Taka007,477,664,848999671,9594,0 +28487,Denger+11,360,586,698353083,9648,0 +28488,Abdoulxx,474,657,849089459,11321,0 +28489,Jaaa,665,493,698635863,9214,0 +28491,028,627,612,699567608,10365,0 +28492,0010,621,523,6510480,10322,0 +28493,020.,402,634,2665207,9835,0 +28494,A-039,403,361,8419570,10795,0 +28495,Lord+Lord+Franek+.%23162,508,335,698420691,9960,0 +28496,O18+Temuco,663,521,699272880,10001,0 +28498,Piek%C5%82o+to+inni,562,350,848956765,10160,0 +28499,Nowy+%C5%9Bwiat+A,345,554,849084005,5325,0 +28500,I004,663,458,699722599,10140,0 +28501,sony911,584,646,1415009,9949,0 +28502,Monetkownia,620,619,699759128,10237,0 +28503,46k%24+Grvvyq,650,571,699676005,9430,0 +28504,Nowy+%C5%9Bwiat+A,340,556,849084005,5094,0 +28507,O21+Valdivia,664,532,699272880,10373,0 +28508,Wioska+barbarzy%C5%84ska,492,340,849054951,8198,0 +28510,Darma+dla+zawodnika,517,666,699494488,10047,0 +28511,009+Cidaris,469,663,699834004,10104,0 +28512,--one+eye+jack,622,390,8096537,9495,0 +28513,%2A268%2A,353,429,699273451,2172,0 +28514,Dajanka+19,343,549,849012843,1279,0 +28515,078,654,558,849095227,9767,0 +28516,0256,561,655,698659980,10160,0 +28517,2.04,343,453,3502565,3648,0 +28518,SPOCENI+KUZYNI,416,646,848913998,4915,0 +28519,004,550,340,849087786,6039,0 +28520,%2A002,596,638,699567608,8862,0 +28521,Pobozowisko,380,609,699513260,7956,0 +28522,I070,662,455,699722599,9971,0 +28523,drewutnia,385,375,8419570,9408,0 +28524,046,662,508,699351301,4821,0 +28526,180,579,421,849064752,10311,0 +28527,M181_036,347,425,393668,9535,0 +28528,0514,537,660,698659980,10019,0 +28529,026,628,607,699567608,9851,0 +28530,0541,563,655,698659980,5670,0 +28531,057,667,523,699413040,6386,0 +28532,%230075+barbarzy%C5%84ska,473,336,1238300,8307,6 +28533,Lord+Lord+Franek+.%23163,499,333,698420691,9976,0 +28534,%230179+MiBM,490,331,1238300,7184,0 +28535,Wioska+10,378,384,849096544,3657,0 +28536,%2C%2C%2C,348,443,849098784,2137,0 +28537,M181_003,345,431,393668,9912,0 +28538,039+Boru1996+%233,386,625,6354098,9808,0 +28539,Myk+i+do+kieszonki,350,576,849012521,8321,7 +28540,0088,612,627,698416970,8911,0 +28541,046,658,547,849095227,9867,0 +28542,A018+go%C5%9B%C4%87+fabianello,660,463,113796,10301,0 +28543,I028+3+W+Nocy,659,440,699722599,10108,0 +28545,A34,472,663,698652014,9835,0 +28546,North+Barba+024,426,354,699796330,10087,0 +28548,.%3A004%3A.,374,610,7417116,12154,0 +28549,KUZYN,416,642,848913998,7993,0 +28550,018.Barbara2,334,509,1830149,3641,0 +28551,Myk+i+do+kieszonki,360,582,9319058,9799,0 +28552,%2A138%2A,357,417,699273451,10104,0 +28553,.%3A027%3A.+%C5%81OBUZIK,553,370,848934935,8971,0 +28554,119+Wioska+barbarzy%C5%84ska,555,345,699491076,10001,0 +28555,024...+FELEK_P%C3%B3%C5%82noc,461,348,6920960,10495,0 +28556,%3D055%3D+Wioska+barbarzy%C5%84ska,645,583,3781794,8561,0 +28557,zzzRezygnacja+02,630,607,699778867,10131,0 +28558,0234,535,662,698659980,10083,0 +28559,Wioska+TakaTo,476,654,848999671,9783,0 +28560,046,668,519,699413040,9171,0 +28561,Kiedy%C5%9B+Wielki+Wojownik,394,465,8632462,9312,0 +28562,Khorinis,343,436,849097716,9887,0 +28563,Valhalla+4.,371,604,849097002,9774,0 +28565,0568,568,655,698659980,9797,0 +28566,Pustostan,635,603,2269943,6601,0 +28567,Psycha+Siada,457,660,698807570,8260,0 +28568,sony911,583,646,1415009,9995,0 +28569,Bagdad,499,335,8847546,10068,0 +28570,Piek%C5%82o+to+inni,562,345,848956765,10160,0 +28571,K34+-+%5B137%5D+Before+Land,441,348,699088769,10259,0 +28572,43.+KaruTown,641,410,6822957,9365,0 +28573,A09,469,664,698652014,10019,0 +28574,010.,485,648,849034882,10495,0 +28577,B+026,659,537,8078914,10114,0 +28578,0016,414,356,699431255,10162,0 +28579,%230100+barbarzy%C5%84ska,463,336,1238300,9725,0 +28580,%7C008%7C+Elunda+%21%21%21%21%21%21%21%21%21%21%21%21%21%21%21%21,490,668,699393742,9782,9 +28581,004+Cintra,471,661,699834004,9997,0 +28583,031+MONETKI,665,482,7588382,9311,0 +28584,DW6,346,448,393668,10311,0 +28585,Chekku+-+meito,334,518,9280477,9976,0 +28587,Wioska+barbarzy%C5%84ska,428,653,699736927,4565,0 +28588,Nowy+%C5%9Bwiat+A,341,556,849084005,6353,0 +28589,Klaudek23,595,364,849092309,4100,0 +28590,R%C4%99cznik+do+zmiany,361,404,699697558,10019,0 +28591,Wioska+barbarzy%C5%84ska,665,469,699574408,9357,0 +28592,Szlachcic%2FTaran,627,388,699759128,10237,0 +28593,Stanowisko+lepienia+pierog%C3%B3w,427,646,849006145,7144,0 +28594,Popas12,406,498,699265922,9191,0 +28595,%5BB%5D_%5B017%5D+Dejv.oldplyr,430,349,699380607,10495,0 +28597,Weso%C5%82ych+%C5%9Awi%C4%85t,590,361,848915730,3023,0 +28598,054,661,534,698999105,10311,0 +28599,%2ANantek,572,646,699443920,9761,0 +28600,A30,478,669,698652014,3398,0 +28601,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,399,634,1434753,10068,0 +28602,kon+trojanski,561,350,698290319,9744,0 +28603,J008.,367,600,849090130,10160,0 +28604,0022,417,354,699431255,10005,0 +28605,1.10,340,444,3502565,4603,0 +28606,Wioska+Krnik,604,626,101074,5557,0 +28607,Architekci+Plac%C3%B3w+Boju,336,538,8004076,8800,0 +28608,Monetkownia,618,616,699759128,10237,5 +28609,027...JEDZIEMY,452,338,6920960,10479,0 +28610,22k%24+Grvvyq,651,577,699676005,10495,0 +28611,Wioska+barbarzy%C5%84ska,557,341,699072129,10237,0 +28612,%3D020%3D+Wioska+barbarzy%C5%84ska,646,579,3781794,10580,0 +28613,%2ANadeptane+z%C4%99bem+czasu...,579,645,699443920,9761,8 +28614,Valhalla+6.,369,604,849097002,8189,0 +28615,103,654,441,849088515,10019,0 +28616,Dajanka+36,355,575,849012843,729,0 +28617,001+Ruda.,593,565,699099811,10019,0 +28618,033.,407,636,2665207,9530,0 +28619,_3_,495,334,9113064,2723,0 +28620,07tonieostatnieslowo,605,370,699861004,7506,0 +28621,I012,664,461,699722599,10144,0 +28623,C01,439,652,698652014,3570,0 +28624,Weso%C5%82ych+%C5%9Awi%C4%85t,585,354,848915730,8711,0 +28626,Weso%C5%82ych+%C5%9Awi%C4%85t,580,355,848915730,9924,0 +28627,Lord+Lord+Franek+.%23073,537,336,698420691,10144,5 +28628,%241.000+Wioska+Groovyq,650,577,699676005,10495,0 +28629,Wioska+barbarzy%C5%84ska,665,479,699598425,10728,0 +28630,Guardian+Star,427,636,849006145,11348,0 +28631,075,629,599,698786826,9198,0 +28632,026.,630,393,699491076,10611,0 +28633,Veni+vidi+kici+kici,340,459,6258092,5829,0 +28634,045,663,547,699351301,10160,0 +28635,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,663,699828442,9806,0 +28637,%23108%23,639,596,692803,9761,0 +28639,Ave+Why%21,492,666,698585370,3478,0 +28640,0021,413,358,699431255,9979,0 +28641,055KZ,489,336,849063849,4593,0 +28642,012,367,397,849059457,4614,0 +28643,Wioska+KKK,371,402,8967440,10203,0 +28644,Wioska+Bochun10,337,497,7449254,10311,0 +28646,075,660,541,699351301,6651,0 +28647,KUZYNEIRO,407,641,848913998,8577,9 +28648,MojeSzczytToTw%C3%B3jDno,509,337,828637,10146,0 +28649,0540,564,655,698659980,6110,0 +28650,013,483,665,698650301,8137,0 +28651,1.09,340,445,3502565,7762,0 +28652,Taran,667,475,699598425,10728,0 +28653,D%C4%85browa+0017,359,591,849096972,7033,0 +28654,Lululu955,374,401,848886056,4637,0 +28655,001+Eldorado,379,392,849059457,10037,0 +28656,035+Rivia,469,662,699834004,9835,0 +28657,Wioska+Bochun10,334,494,7449254,10452,0 +28658,A16,455,662,698652014,10134,0 +28659,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,384,620,849097937,9791,0 +28660,Malbork,539,340,849108784,5354,0 +28661,Szulernia,408,363,7249451,9981,0 +28662,B+004,665,533,8078914,9809,0 +28663,Wioska+barbarzy%C5%84ska,349,565,7333216,9598,0 +28665,Wioska+Bochun10,335,491,7449254,7899,0 +28666,Yellow,489,660,849004274,9835,0 +28667,0264,548,662,698659980,10147,0 +28668,Lord+Lord+Franek+.%23074,521,337,698420691,9965,0 +28669,Architekci+Plac%C3%B3w+Boju,342,544,8004076,9880,0 +28670,Wioska+barbarzy%C5%84ska+D,364,405,8967440,2885,0 +28671,deff+100+%25,348,568,849012521,8637,0 +28672,KAMIOKA,349,572,7318949,4899,0 +28673,Grand+Hill,649,418,1086351,5527,0 +28674,Wioska+yen3,456,663,950985,3897,0 +28675,O10+Goiania,666,520,699272880,10848,0 +28676,ADEN,573,347,698588535,10052,0 +28677,Psycha+Siada,457,663,698807570,10093,0 +28678,017+najlepszy+serniczek,507,663,8954402,11130,0 +28679,Myk+i+do+kieszonki,358,580,9319058,9756,0 +28680,005+Czerwona+Twierdza,332,481,699823490,7130,0 +28681,13k%24+Grvvyq,657,565,699676005,10495,6 +28682,Architekci+Plac%C3%B3w+Boju,341,538,8004076,8445,0 +28683,108...centr,454,342,6920960,10111,0 +28684,E004,657,558,8428196,8856,0 +28685,Wioska+barbarzy%C5%84ska,606,370,699861004,4811,0 +28686,Valhalla+2.,371,606,849097002,9607,0 +28688,Weso%C5%82ych+%C5%9Awi%C4%85t,573,355,848915730,10160,0 +28689,Wioska+066,638,587,848971079,9761,0 +28690,%230146+Thorus5,473,332,1238300,6170,0 +28691,Gromkowie+5,370,609,7417116,8986,0 +28692,sony911,586,647,1415009,9999,0 +28693,Architekci+Plac%C3%B3w+Boju,337,541,8004076,9880,0 +28694,Lord+Lord+Franek+.%23164,502,334,698420691,9960,0 +28695,Piek%C5%82o+to+inni,581,351,848956765,10160,0 +28697,Architekci+Plac%C3%B3w+Boju,341,535,8004076,8163,0 +28698,Darma+dla+zawodnika,518,662,699494488,9888,0 +28699,Wioska+Bochun10,330,503,7449254,9496,0 +28700,39.+KaruTown,637,405,849060446,6937,0 +28701,Pudelko,633,604,2269943,5555,0 +28702,ADEN,573,349,698588535,10139,0 +28703,MojeDnoToWaszSzczyt,569,352,848915730,9938,0 +28704,Szulernia,387,377,7249451,10380,0 +28705,Zeta+Reticuli+W,371,392,699323302,3995,0 +28706,North+Grudzi%C4%85dz,422,352,699796330,9961,0 +28707,029.,402,636,2665207,9835,0 +28708,Witam,452,656,698807570,10048,2 +28710,012+Glen+Moray,550,339,699072129,12154,0 +28711,Psycha+Siada,455,664,698807570,8586,0 +28712,Taka004,475,661,848999671,9530,0 +28713,KUZYN,415,641,848913998,5148,0 +28714,Wioska+barbarzy%C5%84ska,438,346,699308637,8424,0 +28715,003.+Wiocha,630,441,849095599,10019,0 +28716,Gra+o+Tron,614,616,8815749,10019,0 +28718,Myk+i+do+kieszonki,347,564,9319058,9799,0 +28719,K34+-+%5B140%5D+Before+Land,441,347,699088769,9783,0 +28720,Wioska+barbarzy%C5%84ska,658,458,113796,7234,0 +28721,I%23026,597,369,2065730,8343,0 +28723,aaaaaaaaaaa,440,345,699308637,10636,0 +28724,109...centr,460,339,6920960,10090,0 +28725,Architekci+Plac%C3%B3w+Boju,344,548,8004076,9880,0 +28726,091,623,610,698786826,10495,0 +28727,07.+Wangan+Midnight,494,663,849100262,9811,0 +28728,x+Wioska+Lord+CrazY,404,505,698290577,9959,0 +28729,MojeDnoToWaszSzczyt,568,351,848915730,9938,0 +28730,a+mo%C5%BCe+off%3F+%3A%29,646,578,698768565,9494,4 +28731,007.,394,632,2665207,9835,0 +28732,%2A151%2A,357,411,699273451,10271,0 +28733,0115,627,396,698416970,12154,0 +28734,I011,662,458,699722599,10051,0 +28735,Wioska+Bochun10,330,502,7449254,9314,0 +28736,%3D056%3D+Wioska+barbarzy%C5%84ska,646,580,3781794,9767,0 +28737,Dajanka+27,354,583,849012843,1537,0 +28738,028.,628,392,699491076,6965,0 +28739,012,455,338,2502956,10019,0 +28740,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,664,698807570,9267,7 +28741,Weso%C5%82ych+%C5%9Awi%C4%85t,583,355,848915730,7395,0 +28743,0014,390,379,8419570,10168,0 +28744,Jehu_Kingdom_42,654,438,8785314,6267,0 +28745,Jaaa,670,498,698635863,8902,0 +28746,061,662,486,7085502,8745,0 +28747,0008,436,654,849097175,4304,0 +28748,wLucy,449,658,699849210,5604,0 +28749,028,563,650,699828685,9976,0 +28750,57.+KaruTown,655,431,9238175,9711,0 +28751,Marvila,354,587,699494480,9497,0 +28752,Orze%C5%82+Wyl%C4%85dowa%C5%82,447,661,698807570,8180,0 +28753,Orze%C5%82+Wyl%C4%85dowa%C5%82,448,661,698807570,8376,0 +28754,%230106+tomek791103,480,333,1238300,10178,0 +28755,I014+Jamnik,662,450,699722599,10241,0 +28757,A025+Flap+1,661,445,113796,6536,0 +28758,Architekci+Plac%C3%B3w+Boju,337,540,8004076,9880,0 +28759,Wioska+barbarzy%C5%84ska,595,360,849041192,5262,0 +28760,013+-+Mroczna+Osada,650,423,849035905,10817,0 +28761,V003,350,423,849097737,7395,0 +28762,029,528,667,2293376,9993,0 +28763,Wioska+barbarzy%C5%84ska,666,482,699598425,9699,0 +28764,M181_005,346,428,393668,9885,4 +28765,007,463,340,2502956,10019,0 +28766,4.01,347,444,3502565,7663,0 +28767,Myk+i+do+kieszonki,348,571,849012521,8594,0 +28768,051,658,537,849095227,8460,0 +28769,042+Isparta,631,592,699272880,10276,0 +28770,Architekci+Plac%C3%B3w+Boju,336,541,8004076,9880,0 +28771,0589,545,657,698659980,9745,0 +28772,Szulernia,410,361,7249451,9989,0 +28773,KR%C3%93L+PAPI+WIELKI,610,630,698191218,10000,0 +28774,0535,561,658,698659980,5829,0 +28775,115,655,448,849088515,8284,0 +28776,%2A096%2A,353,416,699273451,10211,0 +28777,116,652,424,849088515,7207,0 +28778,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,658,699828442,9825,0 +28779,Wioska+Bochun10,337,502,7449254,8406,0 +28780,007,599,639,849097799,8314,0 +28781,TAJFUN,333,507,849097614,9959,0 +28782,%230061+Disco1Panda,476,339,1238300,10178,0 +28783,Gattacka,616,375,699298370,10160,0 +28784,Sk010,443,661,8954402,8148,0 +28785,Tu+tak+troch%C4%99+s%C5%82abo+grzane+by%C5%82o,445,660,8954402,9835,0 +28786,Wioska+barbarzy%C5%84ska,393,368,3484132,7366,0 +28788,Wi005,497,329,698239813,9013,0 +28789,cc+Lipinki+obokqqqqqqqqqqqqqqqqq,392,370,3909522,8134,0 +28790,Myk+i+do+kieszonki,354,578,9319058,9975,0 +28791,Wioska+barbarzy%C5%84ska,552,339,699072129,9418,0 +28792,0515,536,660,698659980,10160,0 +28793,17k%24+Grvvyq,653,574,699676005,10495,6 +28794,001+Ronaldinho,456,335,2502956,10019,0 +28795,%247.000+Grvvyq,651,578,699676005,10495,0 +28796,KUZYN,412,638,848913998,10160,0 +28797,Chekku+-+meito,332,524,9280477,9976,0 +28798,Wioska+Bochun10,334,490,7449254,10311,0 +28799,057.,391,624,2665207,9835,0 +28800,125...centr,460,336,6920960,10229,0 +28801,Psycha+Siada,458,659,698807570,10209,0 +28802,Grvvyq+120k%24,609,629,699676005,10019,0 +28803,Wioska+Bochun10,333,490,7449254,9954,0 +28804,Wioska+barbarzy%C5%84ska,588,643,1415009,9171,0 +28805,Wioska+barbarzy%C5%84ska,556,346,699072129,10122,0 +28806,Architekci+Plac%C3%B3w+Boju,343,548,8004076,9880,0 +28807,KUZYNEIRO,405,639,848913998,6620,0 +28808,069...jaka,448,350,6920960,11063,0 +28809,0289,539,662,698659980,10083,0 +28810,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,662,698807570,7631,0 +28811,%3D060%3D+Wioska+barbarzy%C5%84ska,646,582,3781794,10454,0 +28813,%2A079%2A,355,419,699273451,10211,0 +28814,181,402,637,698383417,8694,0 +28815,Wioska+barbarzy%C5%84ska,552,341,699072129,10237,0 +28816,Myk+i+do+kieszonki,362,589,9319058,9799,0 +28818,%23118%23,618,622,692803,8547,0 +28819,Pobozowisko,380,616,699513260,5109,0 +28820,Wioska+barbarzy%C5%84ska,552,343,699072129,10217,0 +28821,Rodzinne+historie,336,529,698338524,5853,0 +28822,--spearfish,622,392,8096537,10068,0 +28823,Konfederacja,459,370,848915730,9737,0 +28824,021,605,633,849097799,8268,0 +28825,Myk+i+do+kieszonki,353,576,9319058,10087,2 +28826,Sony+911,639,590,1415009,10476,0 +28827,%230136+Thorus5,474,332,1238300,8318,0 +28828,Wioska+067,639,592,848971079,9761,0 +28830,0516,534,661,698659980,10160,0 +28831,111...centr,452,340,6920960,9143,0 +28832,Wioska+barbarzy%C5%84ska,530,340,698350371,5449,0 +28834,B.04,669,502,699737356,7327,0 +28835,006+Tretogor,476,659,699834004,10231,0 +28836,Psycha+Siada,456,661,698807570,10252,0 +28837,Lord+Lord+Franek+.%23075,527,335,698420691,10224,0 +28838,PUSTA,631,600,6929240,4858,0 +28839,Jehu_Kingdom_51,653,434,8785314,5574,0 +28840,Myk+i+do+kieszonki,350,578,9319058,9799,0 +28841,Wioska+barbarzy%C5%84ska,436,436,9291984,7718,0 +28842,%2A140%2A,355,412,699273451,10211,0 +28843,080...barbarka----------,475,333,6920960,9550,0 +28844,015,602,632,849097799,8088,0 +28845,Taki+Pan,505,332,698739350,4525,0 +28846,Wrath+011,567,346,699756210,10273,0 +28847,003,475,657,698650301,8104,0 +28848,Trelis,343,435,849097716,6265,0 +28849,--DOBRA+MAC,622,385,8096537,10104,0 +28850,wie%C5%9B+2,347,429,393668,9886,0 +28852,Nowy+%C5%9BwiatA,342,558,849084005,4226,0 +28854,Chekku+-+meito,335,535,9280477,9976,0 +28855,008+-+Mroczna+Osada,647,417,849035905,11824,0 +28856,Wioska+sobie+016,403,638,7349282,9969,0 +28857,Taran,662,472,699598425,10728,8 +28858,031+-+Mroczna+Osada,641,418,849035905,7450,0 +28859,greeece,635,398,698290319,9476,0 +28860,4+barb,584,645,848995242,10016,0 +28862,%3D065%3D+Wioska+barbarzy%C5%84ska,656,556,3781794,10580,0 +28863,%2A213%2A,364,404,699273451,9701,0 +28864,Grvvyq+109k%24,656,566,699676005,3460,0 +28865,-0001-,542,335,2972329,12154,0 +28866,035+-+Mroczna+Osada,645,412,849035905,6733,0 +28867,troja2,563,346,698290319,8933,0 +28868,asd,669,479,699598425,10626,0 +28869,Wioska+barbarzy%C5%84ska,576,650,6818593,9835,0 +28870,KARTAGINA+..6,455,579,8438707,8698,0 +28871,Wioska+barbarzy%C5%84ska,546,337,699066118,7775,0 +28872,%2A144%2A,355,411,699273451,8297,0 +28873,berkuza+3,591,356,7340529,10887,0 +28874,%23007%23,619,615,692803,9761,0 +28875,0105,409,356,699431255,4602,0 +28876,000,344,572,7333216,9711,0 +28877,Wioska+barbarzy%C5%84ska,493,332,6118079,3699,0 +28878,0517,531,661,698659980,9747,0 +28879,psycha+sitting,429,654,699736927,5143,0 +28881,MojeDnoToWaszSzczyt,565,351,848915730,9412,0 +28882,KUZYN,417,642,848913998,5499,0 +28883,MojeDnoToWaszSzczyt,566,351,848915730,9938,0 +28884,110,652,441,849088515,7870,0 +28885,Wioska+barbarzy%C5%84ska,663,467,699574408,9092,0 +28886,016,667,497,7085502,9740,0 +28887,SPOCENI+KUZYNI,414,647,848913998,9869,0 +28888,Zulu,375,389,699842853,1273,0 +28889,DW8,343,446,393668,10311,0 +28890,J05,365,595,849090130,3201,0 +28891,Wioska+barbarzy%C5%84ska,632,596,8337151,5041,0 +28892,Wrath+001,570,346,699756210,10362,0 +28893,%230124+tomek791103,484,333,1238300,9719,0 +28894,Wioska+Bochun10,335,461,7449254,10311,0 +28895,Zach%C3%B3d,431,350,849096310,8224,0 +28896,049...CLIO,444,340,6920960,10495,0 +28897,Obrze%C5%BCa+098,553,662,848915531,6437,0 +28898,Vasco+da+Gama,356,586,699494480,9415,0 +28899,mys,567,650,699828685,9498,0 +28900,1.01,339,449,3502565,9361,0 +28901,0569,566,652,698659980,10019,0 +28902,Fajna+036,456,576,8539216,8839,0 +28903,Szulernia,383,376,7249451,10484,0 +28904,025,604,634,849097799,7793,0 +28906,Gattacka,614,382,699298370,9367,0 +28907,021,665,490,7085502,9732,0 +28908,57k%24+Grvvyq,655,568,699676005,7123,0 +28909,Wioska+Bochun10,337,459,7449254,4983,0 +28910,1.05,338,447,3502565,6666,0 +28911,D+018,664,505,8078914,9233,0 +28912,085+%C5%9Awi%C4%99ta+Bo%C5%BCego+Narodzenia,599,364,699491076,10001,0 +28913,Wioska+barbarzy%C5%84ska,559,341,699072129,10216,0 +28914,Wioska+barbarzy%C5%84ska,663,508,699851345,4638,0 +28915,DO6orze%C5%82+z+po%C5%82amanymi+skrzyd%C5%82ami,459,665,849037407,10319,0 +28916,D%C4%85browa+0002,357,591,849096972,10083,0 +28917,Wioska+barbarzy%C5%84ska,400,362,8419570,7236,0 +28919,Wioska+1,539,352,849097220,8911,0 +28920,%230096+barbarzy%C5%84ska,461,342,1238300,8067,0 +28921,0068,417,351,699431255,9519,0 +28922,%230099+barbarzy%C5%84ska,463,335,1238300,10178,0 +28923,0290,557,653,698659980,9013,0 +28924,Ave+Why%21,499,667,698585370,9569,0 +28925,Szlachcic,392,368,698160606,7194,0 +28926,Wioska+barbarzy%C5%84ska,631,393,699759128,4266,0 +28927,Taka002,480,665,848999671,9594,0 +28928,Lord+Lord+Franek+.%23076,535,333,698420691,10144,0 +28929,O40+Fethiye,662,536,699272880,10154,0 +28930,030+PAKOL+TI+VI,658,448,699272633,9238,0 +28931,%C5%9Amieszki,534,614,3454753,9100,0 +28932,009,379,387,849059457,7488,0 +28933,Wioska+02,596,362,849041192,2852,0 +28934,Dajanka+25,354,582,849012843,2168,0 +28935,Myk+i+do+kieszonki,354,577,9319058,9799,0 +28936,Zeta+Reticuli+W,360,406,699323302,5363,0 +28938,Psycha+Siada,454,663,698807570,10252,0 +28939,-02-,333,497,765188,10654,0 +28940,Piek%C5%82o+to+inni,585,359,848956765,10160,0 +28941,050+BOBI+2,664,484,2135129,10135,9 +28942,035.,408,636,2665207,9835,0 +28943,Szlachcic%2FTaran,626,388,699759128,10237,0 +28944,psycha+sitting,430,651,699736927,9405,0 +28945,SPOCENI+KUZYNI,418,648,848913998,10122,0 +28946,%3D069%3D+Wioska+barbarzy%C5%84ska,657,549,3781794,8695,0 +28947,068+%7C+PALESTINA,646,418,9228039,5473,0 +28948,007,433,643,849089459,9803,0 +28949,034+Rakverelin,469,667,699834004,8316,0 +28950,033+lecimy+tutaj,659,450,699272633,8884,0 +28951,Wioska+barbarzy%C5%84ska,382,382,8419570,3082,0 +28953,Gr%C3%B3d+3,474,333,699204478,4288,0 +28954,%7CB%7C+Arrowgrove,489,664,698147372,10495,0 +28955,1.04,338,451,3502565,6121,0 +28956,003,347,440,393668,3501,0 +28957,058,546,405,699761749,10495,0 +28958,A014,612,379,699761749,4455,0 +28959,MAKS,555,343,699072129,10378,0 +28960,%230235+Segadorr+dar,466,333,1238300,10178,0 +28962,Wrath+002,572,345,699756210,10273,3 +28963,008,388,426,848921536,3149,0 +28964,Wioska+Bochun10,340,463,7449254,10311,0 +28965,Jaaa,669,495,698635863,9900,0 +28966,SPOCENI+KUZYNI,416,647,848913998,4900,0 +28967,O16+Talca,663,526,699272880,10044,0 +28968,0248,559,653,698659980,10160,0 +28969,AAA,533,332,1006847,9641,0 +28970,Bagdad,489,331,8847546,10838,0 +28971,Krosno+4,537,337,7485877,6700,0 +28972,WKRA,334,508,849097614,9646,0 +28973,006,483,352,698739350,10237,0 +28974,xxx+-+08,614,624,699778867,10110,0 +28975,022+serniczek+z+oreo,505,671,8954402,10252,0 +28976,036.,408,635,2665207,9835,0 +28978,Jaaa,663,491,698635863,9435,0 +28979,44k%24+Grvvyq,649,579,699676005,7114,0 +28980,Wioska+barbarzy%C5%84ska,575,649,6818593,9835,0 +28982,%2AAteny_11,475,536,698971484,9766,0 +28983,N003,343,568,272173,5593,0 +28984,Ave+Why%21,497,669,698585370,8976,5 +28985,SPOCENI+KUZYNI,415,648,848913998,9934,0 +28986,108,655,446,849088515,8916,0 +28987,O49+Lendava,660,551,699272880,12154,0 +28988,082,440,635,849084985,9601,0 +28989,Wrath+012,571,345,699756210,10273,2 +28990,M181_014,344,432,393668,9165,0 +28992,A010+Jospe+D,664,452,113796,10160,0 +28993,On+average+%C5%9AR,493,669,849004274,9835,0 +28995,15.+Rezerwacja+w+Pachy,520,667,698659980,8559,0 +28996,BAC%C3%93WKA+%7C035%7C,632,397,7394371,5630,0 +28997,1v9+machine,385,617,699697558,10019,0 +28998,%7CC%7C+Swampforest,505,669,698147372,10495,0 +28999,ADEN,572,347,698588535,10056,0 +29001,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,617,849097937,9754,0 +29002,Akaria,418,649,849089459,9761,0 +29003,045,670,517,699413040,8366,0 +29004,3..,421,651,6910361,10011,0 +29005,8068,376,607,8607734,10019,0 +29006,%230026,546,625,1536231,10495,0 +29007,K34+x030,409,357,698364331,6170,0 +29009,V009,352,424,849097737,4370,0 +29011,Alice+Rose,546,663,849106383,3414,0 +29012,0031,616,623,699432672,10495,0 +29013,Architekci+Plac%C3%B3w+Boju,341,546,8004076,9880,0 +29014,10k%24+Grvvyq,649,575,699676005,10495,9 +29015,181+Zulu+Gula+%21,521,332,2571407,3879,0 +29016,%7E%7E075%7E%7E,616,618,7829201,7386,0 +29017,Wioska+Bochun10,334,515,7449254,5671,0 +29018,B+027,668,535,8078914,9170,0 +29019,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,658,698807570,5221,0 +29020,A21,473,664,698652014,10887,0 +29021,021+VW+Wioska+barbarzy%C5%84ska,365,397,3108144,3700,0 +29022,A003+Thais+2,660,448,113796,7462,0 +29024,017+Szachy+-+Skoczek,366,606,8268010,7245,0 +29025,%230068+tomek791103,477,331,1238300,10178,0 +29026,%2A011,594,641,699567608,9031,0 +29027,Myk+i+do+kieszonki,353,579,9319058,9799,0 +29028,Wioska+barbarzy%C5%84ska,651,574,0,2951,0 +29029,Uran,549,336,699797805,2636,0 +29031,Wrath+014,569,343,699756210,9803,0 +29032,Piek%C5%82o+to+inni,591,364,848956765,9159,0 +29033,Lord+Lord+Franek+.%23165,511,332,698420691,10205,0 +29035,03+tonieostatnieslowo,607,370,699861004,9780,0 +29036,Szulernia,398,367,7249451,10483,0 +29037,%5BA%5D008,423,651,699736927,6937,0 +29038,I005,663,456,699722599,10149,0 +29039,028...OPELEK,446,341,6920960,10279,0 +29040,Myk+i+do+kieszonki,355,582,9319058,9799,0 +29041,SIR+DEVELES,620,611,698786826,10471,0 +29042,K34+-+%5B142%5D+Before+Land,437,345,699088769,9783,0 +29043,052...qashqai,442,342,6920960,10559,0 +29044,Zeta+Reticuli+S2,364,400,699323302,8353,0 +29045,0103,634,399,698416970,3422,0 +29046,%2A134%2A,355,414,699273451,10211,0 +29047,%23103%23,631,605,692803,9761,0 +29048,Ave+Why%21,498,667,698585370,9202,0 +29049,%7CB%7C+Newmouth,484,664,698147372,6077,0 +29050,W%C4%85%C5%BC+z+g%C5%82ow%C4%85+%C5%9Blimaka,365,399,849096182,2072,0 +29051,%230180+MiBM,487,330,1238300,8527,0 +29052,E010,660,553,8428196,7368,0 +29053,059,658,544,699351301,10149,5 +29054,%7C005%7C+Kissamos,493,667,699393742,10063,0 +29055,0018,412,356,699431255,9949,0 +29056,Wioska+099,647,587,848971079,9761,0 +29057,%230086+barbarzy%C5%84ska,472,334,1238300,10178,0 +29058,%23.04+Wioska+Natalka69,649,472,849054582,10019,0 +29059,Wioska+barbarzy%C5%84ska,442,344,699191449,9252,0 +29060,Szlachcic%2FTaran,613,374,699759128,10237,0 +29061,Wioska+klez+014,333,509,698295651,7170,0 +29062,Architekci+Plac%C3%B3w+Boju,340,557,8004076,9880,0 +29063,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,630,1434753,10068,0 +29064,032+serniczek+na+%C5%9Bniadanie,511,665,8954402,9729,0 +29065,Wioska+Bochun10,336,516,7449254,9511,5 +29067,Wioska+barbarzy%C5%84ska,579,650,6818593,8544,0 +29068,032+MONETKI,666,480,7588382,9761,0 +29069,Szlachcic%2FTaran,612,372,699759128,10237,0 +29070,Westfold.010,347,424,848918380,10178,9 +29071,%3F013,540,658,699828685,8412,0 +29072,06.+Ofir,337,458,848910122,1372,0 +29073,008+Campbeltown,555,346,699072129,9971,0 +29074,Architekci+Plac%C3%B3w+Boju,342,545,8004076,4843,0 +29075,Omo%C5%BCe,432,560,699443920,9183,0 +29076,080...s%C5%82%C4%85biak,433,349,699308637,10479,0 +29077,%2A042,597,636,699567608,9712,0 +29078,CC+Wioska+z,389,373,3909522,4951,0 +29079,Jestem+Poza+Kontrol%C4%85,345,557,8004076,9160,0 +29081,Myk+i+do+kieszonki,382,579,849012521,10495,0 +29082,112...center,450,342,6920960,8731,0 +29083,0003+Zakopane,388,379,849096882,8955,1 +29084,Kentin+ufam+Tobie,338,479,699783765,10000,0 +29085,A013+darekdd,658,450,113796,10160,0 +29086,Lord+Lord+Franek+.%23122,519,334,698420691,7471,0 +29087,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,662,698807570,9360,0 +29088,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F10,625,617,33900,10192,0 +29089,North+Barba+051,425,350,699796330,9725,0 +29090,asd,670,478,699598425,10728,0 +29091,M181_004,345,430,393668,9883,0 +29092,Lord+Lord+Franek+.%23123,527,331,698420691,7746,0 +29093,054,665,489,7085502,9123,0 +29094,%2ANaturalna+kolej+rzeczy...,576,646,699443920,9761,0 +29095,Darmowe+przeprowadzki,453,665,848935389,9809,4 +29096,%230083+barbarzy%C5%84ska,475,337,1238300,9209,0 +29097,Ave+Why%21,481,669,699121671,9809,0 +29098,Myk+i+do+kieszonki,346,567,9319058,9799,0 +29099,%7C003%7C+Agia+Pelagia,492,668,699393742,9738,0 +29100,A03,469,669,698652014,10160,0 +29101,Wioska+klez+008,332,513,698295651,8710,0 +29102,Wioska+104,647,588,848971079,9783,0 +29103,0393,551,661,698659980,10019,0 +29104,Valhalla+5,371,609,7417116,10053,0 +29105,041+Orze%C5%82+Wyl%C4%85dowa%C5%82,460,661,699834004,10160,0 +29106,Myk+i+do+kieszonki,369,611,9319058,11824,0 +29107,Jestem+Poza+Kontrol%C4%85,343,554,8004076,9880,0 +29108,Osada+koczownik%C3%B3w,551,342,699072129,10217,9 +29109,%2A5610%2A+Brudki+Stare,650,583,7973893,10287,0 +29110,002,341,458,6258092,5537,0 +29112,Piek%C5%82o+to+inni,560,348,848956765,10160,0 +29113,Wioska+barbarzy%C5%84ska,451,336,699308637,9070,0 +29114,Piek%C5%82o+to+inni,577,353,848956765,10160,0 +29115,aaaaaaaaa,439,347,699308637,10495,0 +29116,Szlachcic%2FTaran,625,393,699759128,6670,0 +29117,A002+La+La+Laggerx,663,451,113796,10146,0 +29118,Wioska+063,639,599,848971079,9761,0 +29119,%230109+tomek791103,482,330,1238300,10178,0 +29120,WB+05,634,605,2269943,8307,0 +29121,053+%7C+PALESTINA,648,424,9228039,4220,0 +29122,%5B12%5D,431,657,699698079,3305,0 +29123,A12,469,668,698652014,9835,7 +29124,Warownia+3,431,654,849089459,9639,0 +29125,Twferdza+Nie+do+zfobycia,518,665,9314153,3781,0 +29126,Chekku+-+meito,335,533,9280477,9976,0 +29127,%7C009%7C+Malia,499,666,699393742,10063,0 +29128,Wioska+barbarzy%C5%84ska,558,343,699072129,10221,0 +29129,0267,552,659,698659980,10160,0 +29130,029.,632,394,699491076,6834,0 +29131,092,620,613,698786826,10495,0 +29132,Pomost,335,544,699265922,7827,0 +29133,PUSTA,630,604,6929240,5407,0 +29134,A29,478,668,698652014,9453,0 +29135,Tyr,419,649,849089459,9828,0 +29136,Myk+i+do+kieszonki,347,573,9319058,9799,0 +29137,Architekci+Plac%C3%B3w+Boju,340,538,8004076,6635,0 +29138,B+006,663,529,8078914,10072,0 +29139,scofield,525,665,699494488,10237,0 +29140,0009+Szczecin,372,376,849096882,4460,0 +29141,Taran,667,476,699598425,10728,0 +29142,SPOCENI+KUZYNI,415,649,848913998,8091,0 +29143,Kentin+ufam+Tobie,434,399,699783765,10000,0 +29144,005+Highlands,554,346,699072129,9021,0 +29145,Wioska+Bochun10,329,497,7449254,10311,0 +29146,011.+Dla+flag,351,432,698630507,8317,1 +29147,%2A090%2A,359,417,699273451,10211,0 +29148,047,516,671,2293376,9993,0 +29149,046,654,557,699316421,9532,0 +29150,Myk+i+do+kieszonki,345,566,7333216,9711,0 +29151,Grvvyq+119k%24,615,620,699676005,10083,0 +29152,WIS%C5%81A,332,504,849097614,10201,0 +29153,Delaware,668,521,8096537,9761,0 +29154,Szlachcic%2FTaran,618,378,699759128,10237,0 +29155,Warownia,431,655,849006145,4800,0 +29156,004,604,635,849097799,9765,0 +29157,O14+Warzazat,666,525,699272880,10209,0 +29158,Sony+911,640,589,1415009,7276,1 +29159,K34+-+%5B154%5D+Before+Land,439,346,699088769,10365,0 +29160,Jaaa,666,494,698635863,10134,0 +29161,Lord+Lord+Franek+.%23166,508,334,698420691,10026,0 +29162,28.+KaruTown,638,403,849060446,6988,0 +29163,Sk_019,438,653,8954402,3917,0 +29164,0014,627,384,848915730,9938,0 +29165,BUNKIER+005,643,427,7588382,10019,0 +29166,Monetkownia,621,621,699759128,10237,0 +29167,jaskinia,388,375,8419570,9716,0 +29168,021+Radom,402,360,698364331,9283,0 +29169,O30+Konoha,662,531,699272880,10411,0 +29170,Wioska+Bochun10,336,467,7449254,9124,0 +29171,042,666,517,699413040,10283,0 +29172,I036,656,437,699722599,10490,0 +29173,Nowy+%C5%9Bwiat+6,342,566,849084005,4906,0 +29174,Jaaa,667,495,698635863,9538,0 +29175,Szulernia,410,362,7249451,9979,0 +29176,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,663,698807570,8141,0 +29177,Wioska+barbarzy%C5%84ska,556,345,699072129,9239,0 +29178,Flotsam,481,337,849048216,3307,0 +29179,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,615,849097937,9409,0 +29180,Dal,612,624,849091897,10019,0 +29181,%230087+barbarzy%C5%84ska,474,334,1238300,10017,0 +29182,J003.,366,603,849090130,10019,0 +29183,E002,659,559,8428196,6300,0 +29184,B.059,668,507,9188016,10000,0 +29185,063...Agent+Pumba,443,346,6920960,10220,0 +29186,D%C4%85browa+0018,353,589,849096972,4621,0 +29187,Nowy+%C5%9Bwiat+5,342,565,849084005,4971,0 +29188,%5B161%5D,642,583,8000875,6175,0 +29190,Wioska+barbarzy%C5%84ska,371,397,848886056,3709,0 +29191,Wioska+Bochun10,339,469,7449254,10311,0 +29192,0001,626,385,848915730,9938,0 +29193,Wioska+Bochun10,329,500,7449254,9978,0 +29195,pierwsza+gwiazdka,442,659,8954402,9640,0 +29196,084...TOM-----------,475,334,6920960,10282,0 +29197,Wioska+Ewelina1809,593,583,1715091,9835,0 +29198,Monetkownia,618,625,699759128,10237,0 +29199,%230029,564,657,1536231,10495,0 +29200,Myk+i+do+kieszonki,355,577,9319058,10088,0 +29201,%230141+barbarzy%C5%84ska,469,334,1238300,6072,0 +29202,Wioska+%28040%29,667,463,698232227,7153,0 +29203,Pa%C5%84stfa+Pu%C5%82nocy,582,353,699433558,9689,0 +29204,Weso%C5%82ych+%C5%9Awi%C4%85t,592,356,848915730,5570,0 +29205,Hiszpania,340,457,1746216,4713,0 +29206,018+VW.King+Tulip,364,407,3108144,7010,0 +29207,032.,404,636,2665207,9835,0 +29208,Sony+911,583,648,1415009,10206,0 +29209,Jaaa,670,491,698635863,10487,0 +29210,-06-,330,494,765188,7057,0 +29211,Pa%C5%84stfa+Pu%C5%82nocy,583,353,699433558,9638,0 +29213,45k%24+Grvvyq,649,577,699676005,9366,0 +29214,003+serniczek+z+brzoskwiniami,505,672,8954402,10160,5 +29216,%2A003,598,637,699567608,9033,0 +29217,Jestem+Poza+Kontrol%C4%85,347,559,8004076,9880,8 +29218,047,660,546,849095227,9366,0 +29220,%2A264%2A,351,430,699273451,2546,0 +29221,%230085+barbarzy%C5%84ska,470,337,1238300,9209,0 +29222,wie%C5%9B2,590,356,7340529,9296,0 +29223,Wioska+Bochun10,340,465,7449254,10311,0 +29224,%5BB%5D_%5B014%5D+Dejv.oldplyr,429,350,699380607,10636,0 +29225,%230052+geryk,468,331,1238300,10178,0 +29226,%23112%23,635,597,692803,9761,0 +29227,SPOCENI+KUZYNI,412,645,848913998,7388,0 +29228,%2A063%2A,355,416,699273451,10211,0 +29229,pusta,386,378,8419570,10168,0 +29230,Pobozowisko,376,614,699513260,9450,0 +29231,04.+Maroko,640,402,699491076,9570,0 +29232,Wioska+Bochun10,334,517,7449254,9739,0 +29233,05.+Kolumbia,640,404,699491076,9735,0 +29234,0548,531,662,698659980,9756,0 +29235,Dajanka+23,351,581,849012843,2065,0 +29236,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F2,608,630,33900,10364,0 +29237,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,663,698807570,8266,0 +29238,--badlands,622,387,8096537,8503,0 +29239,071+Wioska+barbarzy%C5%84ska,546,348,699491076,10001,0 +29240,Weso%C5%82ych+%C5%9Awi%C4%85t,588,356,848915730,5682,0 +29241,1v9+machine,388,621,699697558,10083,0 +29242,Pobozowisko,384,622,699513260,7252,0 +29243,%7C030%7C+Lindos,501,670,699393742,9528,0 +29244,4.02,344,444,3502565,5017,0 +29245,Wioska+11,499,329,951823,10068,0 +29246,%230104+tomek791103,480,330,1238300,10178,0 +29247,Puszcza,638,601,2269943,5764,0 +29248,024+-+Mroczna+Osada,642,411,849035905,11130,0 +29249,Ave+Why%21,501,669,698585370,4741,0 +29251,Myk+i+do+kieszonki,350,567,9319058,9799,0 +29252,Pobozowisko,377,608,699513260,10705,0 +29253,%3D074%3D+Wioska+0,655,553,3781794,8774,0 +29254,zaraz+bede+.,583,643,848995242,10157,0 +29255,043,559,384,699761749,10495,0 +29256,023,629,612,699567608,10311,0 +29257,A04,473,669,698652014,10019,0 +29258,Wioska+barbarzy%C5%84ska,348,580,3990066,2351,0 +29259,%2A132%2A,354,417,699273451,10211,0 +29260,Sony+911,587,642,1415009,10035,0 +29261,D%C4%85browa+0009,362,597,849096972,10083,0 +29262,pomi%C4%99dzy,628,396,699832463,12154,0 +29263,S_013,514,668,849049155,6945,0 +29264,6+barba,584,643,848995242,9804,0 +29265,V006,350,417,849097737,4099,0 +29266,%3D070%3D+Wioska+barbarzy%C5%84ska,658,552,3781794,10580,0 +29267,007+Aldersberg,466,662,699834004,10178,0 +29269,Sony+911,587,643,1415009,10206,0 +29270,050...JUKE,451,342,6920960,10495,0 +29271,Wioska+Bochun10,336,471,7449254,10311,0 +29272,Wioska+Bochun10,328,501,7449254,10311,0 +29273,xxx,641,587,1415009,10237,0 +29274,Forza+12,438,652,849100323,4875,0 +29276,Wioska+barbarzy%C5%84ska,668,470,699574408,9999,0 +29277,wLisanna,446,659,699849210,2793,0 +29278,I037,661,441,699722599,9973,0 +29279,075,650,567,849095227,9068,0 +29280,Szlachcic%2FTaran,635,396,699759128,10237,0 +29281,psycha+sitting,425,656,699736927,9899,0 +29282,BETON+026,622,610,699277039,10495,0 +29283,Chekku+-+meito,340,527,9280477,10296,0 +29284,Wioska+barbarzy%C5%84ska,511,329,698350371,4678,0 +29285,Lord+Lord+Franek+.%23077,520,334,698420691,9957,0 +29286,Po+%C5%9Bwi%C4%99tach,604,369,848915730,9924,0 +29287,Wioska+12,496,333,951823,9515,0 +29288,--hill+city,622,388,8096537,7955,0 +29289,Szlachcic%2FTaran,612,374,699759128,10237,6 +29290,Szlachcic,505,458,699098531,9637,0 +29291,017,668,497,7085502,9740,0 +29292,.%3A001%3A.,373,611,7417116,12154,0 +29293,Lord+Lord+Franek+.%23078,517,333,698420691,10299,0 +29294,Wioska+barbarzy%C5%84ska,572,652,6818593,9835,0 +29295,%2A078%2A,357,418,699273451,10211,0 +29296,Wigor,577,650,849097386,3559,0 +29297,Myk+i+do+kieszonki,348,578,9319058,9799,0 +29298,%230160+deleted,470,331,1238300,8564,0 +29299,049-+Mroczna+Osada,630,397,849035905,11824,0 +29300,025.+barbara9,333,501,1830149,3537,0 +29301,055...barbarka,449,341,6920960,10237,0 +29302,%C5%BBUBRAWKA+039,609,633,33900,10495,3 +29303,018,424,641,849089459,2999,0 +29304,0533,559,659,698659980,5587,0 +29305,Piek%C5%82o+to+inni,590,353,848956765,8930,0 +29306,014,454,341,2502956,10019,0 +29307,Wioska+Bochun10,333,462,7449254,4005,0 +29308,%2A010,594,640,699567608,9073,0 +29309,%2A043,600,634,699567608,9720,0 +29310,M181_007,345,425,393668,10373,0 +29311,Kentin+ufam+Tobie,335,458,699783765,10000,0 +29312,Szlachcic%2FTaran,612,371,699759128,10237,0 +29313,Y+%7C+Forest+Cyaaaanku,329,504,699213622,10000,0 +29314,I013+Solnik,664,460,699722599,10285,0 +29315,Zeta+Reticuli+W,364,397,699323302,9506,0 +29316,Architekci+Plac%C3%B3w+Boju,338,553,8004076,9880,0 +29317,Piek%C5%82o+to+inni,586,356,848956765,10160,0 +29318,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,518,664,699828442,9966,0 +29319,Szlachcic%2FTaran,613,371,699759128,10237,0 +29321,014+-+Mroczna+Osada,643,409,849035905,10318,0 +29322,K34+x034,406,356,698364331,4129,0 +29323,Jehu_Kingdom_57,656,428,8785314,5282,0 +29324,North+Barba+007,419,364,699796330,9887,0 +29325,Wioska+sobie+015,402,640,7349282,10393,0 +29326,%C5%BBUBRAWKA+017,605,630,33900,9794,0 +29327,SOKzGUMIjag%C3%B3d,595,357,849059491,4394,0 +29328,%230111+tomek791103,483,331,1238300,10178,2 +29329,Jaaa,670,490,698635863,10476,0 +29330,cc+110+7,375,384,3909522,7535,0 +29331,%5BB%5D_%5B044%5D+Dejv.oldplyr,419,350,699380607,10495,5 +29332,119...centr,459,341,6920960,8089,0 +29333,B+037,663,531,8078914,8660,0 +29334,%2A135%2A,353,413,699273451,10211,2 +29335,1.14,335,452,3502565,3251,0 +29336,Szlachcic%2FTaran,636,395,699759128,10237,0 +29337,A-041,402,363,8419570,10375,0 +29338,Chekku+-+meito,331,522,9280477,10311,0 +29339,--buffalo+chip,624,393,8096537,9114,0 +29340,022.+Madzikostwo+Wielkie,510,664,849004274,10116,0 +29341,0271,543,666,698659980,10160,0 +29342,xxx+%23013%23TerrorMachine+x+Miniqo,586,355,7340529,11130,0 +29343,014,600,364,1018357,9761,0 +29344,%5BB%5D_%5B011%5D+Dejv.oldplyr,428,346,699380607,10636,0 +29345,002+Maribour,459,660,699834004,10521,8 +29346,3.02,344,440,393668,6957,0 +29347,19k%24+Grvvyq,654,570,699676005,10495,0 +29348,wNatsu,450,658,699849210,7233,0 +29349,Wioska+119,671,520,848971079,9761,0 +29350,Wioska+Bochun10,331,491,7449254,9626,0 +29351,Denger+12,360,588,698353083,10311,0 +29352,Parque+das+Nacoes,356,587,699494480,7266,0 +29354,Skrzypas+en,360,601,849014147,5033,0 +29355,greeece2,636,398,698290319,10164,0 +29356,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,662,698807570,10019,0 +29357,Szulernia,393,376,7249451,10173,3 +29358,010+kocham+serniczek,502,666,8954402,9954,0 +29359,M181_038,345,426,393668,9854,0 +29360,%2A044,599,634,699567608,9397,0 +29361,Avalon,573,656,699567608,8075,0 +29363,Mi%C4%99guszowiecki+Szczyt+Po%C5%9Bredni,332,483,849013126,5962,0 +29364,Wioska+barbarzy%C5%84ska,342,445,393668,6417,0 +29365,Wioska+barbarzy%C5%84ska,556,340,699072129,10218,0 +29366,E009,661,554,8428196,8530,0 +29367,MojeDnoToWaszSzczyt,570,350,848915730,9938,9 +29368,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,663,699828442,9806,0 +29370,Darma+dla+zawodnika,520,665,699494488,10495,0 +29371,-008-,538,332,698588812,2987,0 +29372,Jestem+Poza+Kontrol%C4%85,345,532,8004076,8638,0 +29373,O20+Quillota,666,539,699272880,10006,0 +29374,Chekku+-+meito,344,526,9280477,9756,0 +29375,Architekci+Plac%C3%B3w+Boju,340,548,8004076,6086,0 +29377,M181_034,348,430,393668,9802,0 +29378,002,667,489,7085502,9721,4 +29381,025+Rzym,383,385,848978297,7396,0 +29383,Wioska+barbarzy%C5%84ska,381,382,8419570,6044,0 +29385,Chekku+-+meito,332,530,9280477,9976,0 +29386,mys,571,651,699828685,9792,0 +29387,Chekku+-+meito,333,538,9280477,9976,9 +29389,-0010-,540,334,2972329,7990,0 +29390,Lord+Lord+Franek+.%23124,512,333,698420691,9747,0 +29391,G01,347,426,393668,5433,0 +29392,%5BB%5D_%5B042%5D+Dejv.oldplyr,423,350,699380607,10495,6 +29393,Wioska+008,381,387,8419570,8840,0 +29394,011+nazwa,364,597,8607734,10019,0 +29395,I038+Kaszanka+na+zimno,658,438,699722599,10202,0 +29396,C0138,330,523,8841266,10362,0 +29398,%3D062%3D+Wioska+barbarzy%C5%84ska,645,578,3781794,8326,0 +29399,0360,551,663,698659980,7512,7 +29400,001,336,531,699265922,9747,0 +29401,053,665,542,849095227,9602,0 +29402,A06,476,666,698652014,9968,6 +29403,Wioska+Pigula1983,445,657,699828338,5589,0 +29404,KAMIONKA+1,349,573,7318949,3091,0 +29405,Bagienko.Anker...,373,386,699713515,2764,0 +29408,006,547,340,849087786,2069,0 +29410,Ceres,548,342,699797805,3321,0 +29412,%23%23+Nieznana+%23%23,627,605,699778867,7957,0 +29413,Chekku+-+meito,339,535,9280477,9976,0 +29414,Rodziny+si%C4%99+nie+wybiera,337,530,698338524,6556,0 +29415,Forza+06,433,658,699849210,9438,0 +29416,Chekku+-+meito,332,536,9280477,9976,0 +29417,Szarak+%3F,336,526,698338524,9213,0 +29418,054-+Mroczna+Osada,629,396,849035905,12154,0 +29419,10+-+Wioska,373,608,8607734,10495,0 +29420,Wioska+barbarzy%C5%84ska,554,341,699072129,10221,0 +29421,007,482,667,698650301,9172,6 +29422,0298,569,658,698659980,9663,0 +29423,23k%24+Grvvyq,650,575,699676005,10495,0 +29424,-0002-,542,338,2972329,9761,0 +29425,Wioska+klez+006,330,511,698295651,7425,0 +29426,04+tonieostatnieslowo,605,371,699861004,10160,0 +29427,Wioska+barbarzy%C5%84ska,553,341,699072129,10218,0 +29428,006,592,642,699316421,10273,0 +29429,%2A136%2A,357,416,699273451,9968,0 +29430,B+014,667,536,8078914,10083,0 +29431,Lord+Lord+Franek+.%23125,508,331,698420691,9992,0 +29432,Jaaa,669,488,698635863,10476,0 +29433,Architekci+Plac%C3%B3w+Boju,339,540,8004076,5373,0 +29434,Baixa,349,588,699494480,9899,0 +29435,032+-+Mroczna+Osada,644,415,849035905,9126,0 +29436,O48+Bovec,663,548,699272880,9718,0 +29437,I015,665,450,699722599,10144,0 +29438,Szlachcic%2FTaran,625,389,699759128,9566,0 +29439,109,656,439,849088515,7914,0 +29440,A015+Barba+2,666,454,113796,9037,0 +29441,cc+Wioska+pqqqqqqqqqqqqqqq,390,372,3909522,5983,0 +29442,093,620,612,698786826,10495,0 +29443,Weso%C5%82ych+%C5%9Awi%C4%85t,579,351,848915730,8891,0 +29444,Piorunek1996,572,656,699567608,9160,0 +29445,Pobozowisko,368,608,699513260,4870,0 +29446,cc+Walercia,391,370,3909522,8046,0 +29447,Wioska+Bochun10,334,505,7449254,10311,0 +29448,Zeta+Reticuli+W,363,398,699323302,8933,0 +29449,006,605,636,849097799,9076,0 +29450,Ave+Why%21,497,671,698585370,5747,0 +29451,Wyspa+012,619,380,699756210,10273,0 +29452,0003,626,384,848915730,12154,0 +29453,Taka005,477,663,848999671,9542,0 +29454,045,628,383,849010255,10495,0 +29455,I016+Gwiezdny+Patrol,662,451,699722599,10149,0 +29458,51k%24+Grvvyq,654,578,699676005,9728,0 +29459,.%3A017%3A.+kr,629,386,849098782,9653,0 +29460,wHappy,446,656,699849210,5649,0 +29461,--Silver+Haze,625,382,8096537,10273,0 +29462,Wioska+barbarzy%C5%84ska,387,378,8419570,9604,0 +29463,Nowy+%C5%9Bwiat+4,349,567,849084005,6292,0 +29464,I029,658,441,699722599,10190,0 +29465,Wioska+barbarzy%C5%84ska,646,573,0,6707,0 +29466,kto+ananasowy+pod+wod%C4%85+ma+dom,662,541,699628084,10140,0 +29467,Wioska+tomiwet,544,336,699066118,7672,0 +29468,%2ANull+nic+nie+znaczy...,580,647,699443920,9761,3 +29469,046,669,501,2135129,10453,0 +29470,020+barbarzy%C5%84ska,645,417,9238175,10301,0 +29472,Weso%C5%82ych+%C5%9Awi%C4%85t,582,356,848915730,7395,0 +29473,Wioska+barbarzy%C5%84ska,553,342,699072129,10221,0 +29474,%230041+GL01N,469,330,1238300,10178,0 +29475,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,662,698807570,10252,0 +29476,Zeta+Reticuli+W,367,391,699323302,6604,0 +29477,016+Szachy+-+Wie%C5%BCa,367,605,8268010,8986,0 +29479,Wioska+barbarzy%C5%84ska,664,525,6510480,7293,0 +29480,DW2,342,448,393668,10178,0 +29481,ADEN,574,347,698588535,10064,0 +29482,101...tomecz,482,335,6920960,10221,7 +29483,Taurogi,574,653,6818593,9835,0 +29484,026,603,638,849097799,7627,0 +29485,0094,418,350,699431255,4101,0 +29486,0417,552,661,698659980,10019,0 +29487,Wioska+barbarzy%C5%84ska,402,359,8419570,8166,0 +29489,Weso%C5%82ych+%C5%9Awi%C4%85t,583,350,848915730,7448,0 +29491,0016+centurm,390,378,8419570,9397,0 +29492,035...P%C3%93%C5%81NOC+VIS,462,337,6920960,10495,0 +29493,047,563,652,699828685,8863,0 +29494,017+Kto+mnie+ten+z%C5%82om+zap%C5%82aci%3F,385,628,6354098,10141,0 +29495,Wioska+barbarzy%C5%84ska,624,391,698241117,6396,0 +29496,0034,415,358,699431255,9489,0 +29497,Zeta+Reticuli+W,364,396,699323302,8275,0 +29498,%7C006%7C+Gramvousa,493,665,699393742,10061,0 +29499,Chekku+-+meito,332,519,9280477,9976,0 +29500,Lord+Lord+Franek+.%23110,511,328,698420691,10538,0 +29501,%23Sk_016,436,660,699849210,3462,0 +29502,Dajanka+31,349,575,849012843,608,0 +29503,014+Anchor,464,660,699834004,7565,0 +29504,Co+to+by%C5%82o,598,360,849041192,6221,0 +29505,104.+Wyspy+Przybrze%C5%BCne,634,602,8337151,8788,0 +29506,Jestem+Poza+Kontrol%C4%85,345,561,8004076,9515,0 +29507,Szlachcic%2FTaran,615,378,699759128,10237,0 +29508,Sony+911,588,640,1415009,10208,0 +29509,Darmowe+przeprowadzki,439,659,848935389,8491,3 +29510,0518,521,664,698659980,10160,0 +29511,027+serniczek+z+bez%C4%85,507,668,8954402,9802,0 +29512,Wioska+Bochun10,335,480,7449254,10311,0 +29513,O19+Iquique,666,541,699272880,10544,0 +29514,045.,389,627,2665207,9835,0 +29515,0519,533,662,698659980,8270,0 +29516,Wioska+ba3,498,329,6118079,7703,0 +29517,SPOCENI+KUZYNI,416,648,848913998,5712,0 +29518,082,659,554,849095227,9761,0 +29519,ADEN,575,348,698588535,9979,0 +29520,217...barba,461,332,6920960,8180,0 +29521,Wioska+Bochun10,330,471,7449254,6894,0 +29522,Ave+Why%21,498,668,698585370,9235,0 +29523,B.05,667,501,699737356,7282,0 +29524,Wioska+barbarzy%C5%84ska,349,427,393668,8151,0 +29525,103.+Szczyty+Ksi%C4%85%C5%BC%C4%99ce,644,594,8337151,7647,0 +29526,SPOCENI+KUZYNI,421,646,848913998,3168,0 +29527,025,524,670,2293376,9993,0 +29528,015,456,340,2502956,10019,0 +29529,Lord+Lord+Franek+.%23167,510,332,698420691,10160,0 +29530,Yankee,670,499,699737356,10001,0 +29532,Wioska+barbarzy%C5%84ska,416,651,699736927,1747,0 +29533,121,472,354,7271812,10220,0 +29534,Rzym,585,356,848915730,10160,0 +29535,kto+ananasowy+pod+wod%C4%85+ma+dom,669,536,699628084,8226,0 +29536,Wioska+barbarzy%C5%84ska,384,382,8419570,2960,0 +29537,A02,471,667,698652014,10019,2 +29538,Piek%C5%82o+to+inni,577,354,848956765,10160,0 +29539,D02+A+jednak+uda%C5%82o+si%C4%99+.,459,666,849037407,10160,0 +29541,Wioska+barbarzy%C5%84ska,671,480,699598425,10728,0 +29542,%2A%2A20%2A%2A,630,391,849098782,10154,0 +29543,Lord+Lord+Franek+.%23126,517,334,698420691,10143,0 +29544,048+front,601,367,2502956,10019,0 +29545,Wioska+barbarzy%C5%84ska,652,573,0,2617,0 +29546,Weso%C5%82ych+%C5%9Awi%C4%85t,572,352,848915730,10066,0 +29547,Wioska+Mayweather+7,597,640,699567608,10301,0 +29548,008,602,364,1018357,10019,0 +29549,Chekku+-+meito,331,518,9280477,9976,0 +29550,Ave+Why%21,496,666,698585370,6175,0 +29551,Pobozowisko,380,614,699513260,11130,0 +29552,%2A%2A30%2A%2A,661,440,849098782,9350,0 +29553,troja,562,341,698290319,7240,0 +29554,Valhalla+A9,369,613,849097002,2664,0 +29555,Wioska+barbarzy%C5%84ska,516,329,698350371,6350,0 +29556,Orle,655,584,849039310,7846,0 +29557,I041,659,436,699722599,10049,0 +29558,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,664,698807570,8406,0 +29559,Wioska+barbarzy%C5%84ska,667,469,699574408,10028,0 +29560,berkuza+2,588,355,7340529,8869,0 +29561,A26,470,666,698652014,1786,0 +29562,The+Game+Has+Only+Just+Begun,354,513,9280477,9976,0 +29565,Wioska+barbarzy%C5%84ska,539,336,699066118,5661,0 +29566,Plutosea+026,330,534,699523631,10143,0 +29567,0279,547,659,698659980,10160,0 +29568,Architekci+Plac%C3%B3w+Boju,335,550,8004076,9880,0 +29569,157+Nocny+Jastrz%C4%85b+002,643,406,699491076,8443,0 +29570,Wioska+Bochun10,332,475,7449254,10311,6 +29571,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,621,1434753,10019,0 +29572,79.,632,401,699429153,7066,0 +29573,.achim.,490,335,6936607,9691,0 +29574,Lord+Lord+Franek+.%23079,530,334,698420691,10144,0 +29576,%23101+C,531,669,9037756,10311,0 +29577,tylna,627,614,6417987,10140,8 +29578,%248.000+Grvvyq,658,568,699676005,10495,0 +29579,1.011,338,444,3502565,9018,0 +29580,Chekku+-+meito,329,524,9280477,9976,0 +29581,.%3A003%3A.,373,610,7417116,10971,0 +29583,B+031,667,531,8078914,8406,0 +29584,VADER,655,573,699845400,7157,0 +29585,057...barbarka,451,341,6920960,9616,0 +29586,Weso%C5%82ych+%C5%9Awi%C4%85t,596,363,848915730,6344,0 +29587,Chekku+-+meito,333,513,9280477,9976,0 +29588,Architekci+Plac%C3%B3w+Boju,340,539,8004076,9880,0 +29589,Wioska+barbarzy%C5%84ska,497,330,6118079,6369,0 +29590,Wioska+Bochun10,331,481,7449254,5627,0 +29591,003.Bordeaux,332,501,1830149,9718,2 +29592,Bagdad,493,328,8847546,10068,0 +29593,D+020,671,511,8078914,10495,0 +29594,I042,657,437,699722599,9905,0 +29595,Y+%7C+Forest+Cyaaaanku,328,498,699213622,10000,0 +29596,07.+DMN,651,417,9238175,9711,0 +29597,%2A143%2A,357,415,699273451,10211,0 +29598,%5BB%5D%5B03%5D+Avondale,429,344,699380621,8792,0 +29599,sony911,589,639,1415009,10050,0 +29600,Deveste+ufam+Tobie,399,638,699783765,10000,0 +29602,--Deadwood,622,389,8096537,10178,0 +29603,Kiedy%C5%9B+Wielki+Wojownik,568,342,848915730,9976,0 +29604,Weso%C5%82ych+%C5%9Awi%C4%85t,581,357,848915730,9938,0 +29605,Wioska+barbarzy%C5%84ska,441,344,699191449,8986,0 +29607,kto+ananasowy+pod+wod%C4%85+ma+dom,658,548,699628084,9797,0 +29608,0537,562,655,698659980,6020,0 +29609,Piek%C5%82o+to+inni,581,356,848956765,10083,0 +29610,Francuzik,337,528,698338524,2019,0 +29611,Psycha+Siada,457,664,698807570,10252,0 +29612,Gattacka,620,376,699298370,9451,0 +29613,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,635,1434753,10068,0 +29614,010,336,533,699265922,5982,0 +29615,015+Szachy+-+Kr%C3%B3l,364,606,8268010,9835,0 +29616,Sony+911,583,651,1415009,10214,0 +29618,BETON+053,623,618,699277039,7105,0 +29619,Lord+Lord+Franek+.%23080,532,338,698420691,9956,0 +29620,Szlachcic%3Btaran%21,635,394,849092309,10178,0 +29621,psycha+sitting,441,657,699736927,7010,5 +29623,Szarlatan,389,381,606706,4909,0 +29624,0570,565,652,698659980,10019,0 +29625,Cyk,341,524,698338524,5836,0 +29626,V002,350,420,849097737,7281,0 +29627,110...tomcz,482,328,6920960,10223,0 +29628,026.,612,621,6520732,9835,0 +29629,Jaaa,670,489,698635863,10484,0 +29630,0140,536,666,698659980,10083,0 +29631,025+VW+Wioska+barbarzy%C5%84ska,362,406,3108144,3832,0 +29632,Deff+robi+brrr,348,573,7333216,9735,4 +29633,Wioska+Yator11,616,617,699778867,12154,0 +29634,Jednak+wol%C4%99+gofry,434,651,699736927,4089,0 +29635,0520,531,663,698659980,9747,0 +29636,106.+Wyspy+Ko%C5%84ca,644,591,8337151,8139,0 +29637,psycha+sitting,423,656,699736927,9976,0 +29638,Architekci+Plac%C3%B3w+Boju,340,542,8004076,3963,0 +29639,D%C4%85browa+0022,355,590,849096972,3250,0 +29640,Nowy+%C5%9Bwiat+5,343,562,849084005,5258,0 +29641,Nowy+%C5%9Bwiat,345,564,849084005,10178,0 +29642,Szlachcic,391,365,698160606,10322,0 +29643,WB+08,635,606,2269943,8316,0 +29644,Jehu_Kingdom_62,651,421,8785314,5577,0 +29645,Master+Od+Puppets,633,598,848926293,4484,0 +29646,Oeste+cuatro,383,556,698916948,4797,0 +29647,-006-,537,334,698588812,4688,0 +29648,Wioska+barbarzy%C5%84ska,670,479,699598425,10728,0 +29649,M181_002,344,431,393668,9902,0 +29650,Myk+i+do+kieszonki,347,563,9319058,9799,0 +29651,Piwna+24,653,418,699812007,4549,0 +29652,033+-+Mroczna+Osada,645,413,849035905,8815,0 +29653,I%23012,613,370,2065730,9797,0 +29654,Chekku+-+meito,337,525,9280477,9976,1 +29655,Rowerowo,361,599,8607734,9966,0 +29656,Jaaa,666,489,698635863,8830,0 +29657,Wioska+barbarzy%C5%84ska+Kr,368,400,8967440,3915,0 +29658,Wioska+klez+002,330,513,698295651,9637,0 +29659,deff+100+%25,345,569,849012521,9240,0 +29660,K44+x038,465,400,698364331,6446,0 +29661,Wyspa+018,620,377,699756210,6926,0 +29662,0149,541,665,698659980,10160,0 +29663,.%3A010%3A.,374,616,7417116,10005,0 +29664,0363,552,663,698659980,9382,0 +29665,030,625,614,699567608,10160,0 +29666,Ave+Why%21,482,671,699121671,9809,0 +29667,Wioska+Bochun10,334,475,7449254,7513,0 +29668,0286,552,658,698659980,9203,0 +29669,085,667,515,699351301,5818,0 +29670,deff+100+%25,344,569,849012521,10254,0 +29671,Pobozowisko,378,614,699513260,12154,2 +29672,Grvvyq+112k%24,633,596,699676005,9711,0 +29673,Wioska+Bochun10,332,485,7449254,10311,0 +29674,Esfarajen,431,658,849089459,5212,0 +29675,Szulernia,385,371,7249451,3425,0 +29676,SOKzGUMIjag%C3%B3d,652,427,849059491,8312,0 +29677,Wioska+Bochun10,330,498,7449254,6965,0 +29678,001,663,549,6929240,8000,0 +29679,Myk+i+do+kieszonki,351,586,9319058,9799,0 +29680,%2A006,594,646,699567608,9031,0 +29681,014Rozw%C3%B3d,433,653,698620694,9761,0 +29682,B+008,666,531,8078914,10019,0 +29683,Wioska+barbarzy%C5%84ska,558,661,7756002,9883,0 +29684,019,434,652,699246032,2927,0 +29685,Wioska+Bochun10,335,498,7449254,6994,0 +29686,%7E005%7E,356,595,849014147,7422,0 +29687,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,664,698807570,7107,0 +29688,0007,624,388,699857387,5285,0 +29689,Wioska+Bochun10,333,491,7449254,10300,0 +29692,Taran,672,485,699598425,10728,0 +29693,AAA,531,331,1006847,9398,0 +29694,%7CC%7C+Lagoonwatch,510,669,698147372,10636,0 +29696,Jehu_Kingdom_54,659,433,8785314,5539,0 +29697,Taran+005,615,373,699298370,10947,0 +29698,Kr%C3%B3lestwo,645,405,1086351,7598,0 +29699,%23106%23,636,596,692803,9761,0 +29700,048,666,550,849095227,9735,0 +29701,002+Rasiak,453,336,2502956,10019,0 +29702,081+komornicy,340,547,699510259,2720,0 +29703,034.,638,395,699491076,10522,0 +29704,011+Kabelki+to+jest+%C5%BCycie...,384,625,6354098,9868,0 +29705,Wioska+barbarzy%C5%84ska,611,369,310729,2533,0 +29706,---009,374,611,8607734,10199,9 +29707,S+AKUKU,596,361,699491076,9759,0 +29708,Wioska+barbarzy%C5%84ska,664,479,699598425,10728,0 +29709,011+Aedd+Gynvael,465,659,699834004,6174,0 +29710,ADEN,595,358,698588535,6516,0 +29711,A27,477,669,698652014,9504,0 +29712,xqq,656,572,699845400,5421,0 +29713,016+-+Mroczna+Osada,643,410,849035905,11807,0 +29714,Piek%C5%82o+to+inni,563,353,848956765,10160,0 +29715,Psycha+Siada,451,662,698807570,10252,0 +29716,013,667,496,7085502,9746,0 +29717,006+Polibuda,390,629,8268010,9835,0 +29718,RADOM,339,549,699794765,6757,0 +29719,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,390,630,1434753,10068,1 +29720,016+Tyranus2,671,496,2135129,9553,0 +29721,45.+KaruTown,641,401,699491076,5057,0 +29722,Taran,665,475,699598425,10728,0 +29723,03Wioska+barbarzy%C5%84ska,387,630,699704542,8679,0 +29724,0521,537,668,698659980,10495,0 +29725,Sony+911,643,588,1415009,10220,0 +29727,Szulernia,382,379,7249451,6739,0 +29728,AZBUD,331,509,849097614,9254,0 +29729,%5BB%5D_%5B016%5D+Dejv.oldplyr,429,349,699380607,10326,0 +29730,wiosna,660,549,849097445,653,0 +29731,Architekci+Plac%C3%B3w+Boju,338,550,8004076,9880,0 +29732,0522,525,671,698659980,10160,0 +29733,E006,659,560,8428196,5999,0 +29734,Weso%C5%82ych+%C5%9Awi%C4%85t,581,355,848915730,10160,0 +29735,095...TOMECZEK,477,334,6920960,10226,0 +29736,I017,658,442,699722599,10001,0 +29737,0011,626,386,848915730,9955,0 +29738,pa+tera,463,655,698807570,10252,0 +29739,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,393,635,1434753,10068,0 +29740,Ave+Why%21,496,668,698585370,4847,0 +29741,%230076+barbarzy%C5%84ska,474,335,1238300,9625,0 +29742,%21%2135+59+xxx,596,356,698361257,10267,0 +29743,227...barba,460,332,6920960,5851,0 +29745,Szlachcic%2FTaran,611,375,699759128,10237,0 +29746,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F7,627,618,33900,9903,0 +29747,--sturgis,621,385,8096537,9563,0 +29748,Wioska+barbarzy%C5%84ska,428,650,699736927,6626,0 +29749,2+barba+%2A,581,645,848995242,10109,0 +29750,Chop+Suey,641,589,848926293,5730,0 +29751,tego+nie,519,665,699494488,10229,0 +29752,Sony+911,586,642,1415009,10270,0 +29753,wkonfitura+groo+xdd,654,574,699845400,6615,0 +29754,Architekci+Plac%C3%B3w+Boju,338,547,8004076,9880,0 +29755,039,534,665,2293376,8104,0 +29756,B.07,667,503,699737356,9366,0 +29757,Wioska+barbarzy%C5%84ska,396,366,3484132,7363,0 +29758,deff+100+%25,346,568,849012521,9711,0 +29759,Wioska+odyn123,633,603,848993505,8420,0 +29760,Gromkowie+4,370,614,7417116,5663,0 +29761,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,396,634,1434753,10068,0 +29762,1barba,585,648,848995242,10252,0 +29763,Mniejsze+z%C5%82o+0081,333,542,699794765,5590,0 +29764,BETON+038,628,611,699567608,8296,0 +29765,-004-,335,448,8184383,9768,0 +29766,005,636,401,699429153,7844,0 +29767,0265,545,665,698659980,10083,0 +29768,Weso%C5%82ych+%C5%9Awi%C4%85t,590,358,848915730,10030,0 +29769,K34+x028,408,356,698364331,6596,0 +29770,%2AINTERTWINED%2A,510,623,698704189,9711,0 +29771,Wioska+barbarzy%C5%84ska,504,673,699781762,10495,0 +29772,Chekku+-+meito,337,531,9280477,9976,0 +29773,A011+Jospe+2,663,452,113796,10140,0 +29774,Pobozowisko,378,615,699513260,9284,0 +29775,Westfold.014,348,424,848918380,9276,0 +29776,Myk+i+do+kieszonki,348,575,849012521,10311,0 +29777,FanBednar,588,357,849034666,3137,0 +29778,38k%24+Grvvyq,648,576,699676005,9736,0 +29779,kto+ananasowy+pod+wod%C4%85+ma+dom,668,537,699628084,8370,0 +29780,Lord+Lord+Franek+.%23168,505,330,698420691,9868,0 +29781,0534,561,659,698659980,8930,0 +29782,Szulernia,381,379,7249451,10288,3 +29783,0523,540,664,698659980,9750,0 +29784,111.+Morze+Zwarte,632,602,8337151,8467,0 +29786,Wioska+barbarzy%C5%84ska+Ph,361,408,8967440,3259,0 +29787,Wyspa+011,622,380,699756210,9587,0 +29788,%23009%23,626,625,692803,9761,0 +29789,%2A%2ASorrow,572,627,699443920,9994,0 +29791,034+-+Mroczna+Osada,642,412,849035905,6929,0 +29792,Wioska+barbarzy%C5%84ska,379,378,699711706,1880,0 +29793,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,633,1434753,10068,0 +29794,Weso%C5%82ych+%C5%9Awi%C4%85t,590,360,848915730,5891,0 +29795,Wioska+Bochun10,329,490,7449254,10946,0 +29796,Architekci+Plac%C3%B3w+Boju,338,549,8004076,9880,0 +29797,Piek%C5%82o+to+inni,586,357,848956765,10160,5 +29798,000+Plutosea,333,539,9280477,9976,0 +29799,emoriar,663,442,699574408,5438,0 +29800,032.,636,396,699491076,10795,0 +29801,Wioska+barbarzy%C5%84ska,549,334,699066118,5177,0 +29802,Wioska+zomo,498,328,6118079,6897,0 +29804,Bagienko.Anker...,374,386,699713515,4865,0 +29805,Taran,669,485,699598425,10728,0 +29806,031,628,612,699567608,10365,0 +29807,0014,542,661,698659980,10160,3 +29808,%23Mareleona,437,657,699849210,9456,0 +29809,Wioska+klez+005,328,510,698295651,9632,0 +29810,Lord+Lord+Franek+.%23104,523,330,698420691,10160,0 +29811,Wioska+barbarzy%C5%84ska,381,383,8419570,2272,0 +29812,010.Wioska+wachul9,337,504,1830149,9815,0 +29813,022,626,611,699567608,10311,0 +29814,Wioska+barbarzy%C5%84ska,396,365,3484132,7242,0 +29816,Weso%C5%82ych+%C5%9Awi%C4%85t,587,358,848915730,7054,0 +29817,A0280,328,482,8841266,10362,0 +29818,Szlachcic%2FTaran,614,377,699759128,10237,0 +29820,0237,543,667,698659980,9637,0 +29821,%230043+GL01N,466,330,1238300,10178,0 +29822,Wioska+barbarzy%C5%84ska,553,335,699072129,10223,0 +29823,Myk+i+do+kieszonki,348,577,9319058,9799,2 +29825,Wioska+Bochun10,330,490,7449254,9625,0 +29826,Taki+Pan,508,333,698739350,5322,0 +29827,0102,543,668,698659980,10083,0 +29828,027,627,608,699567608,9877,0 +29829,%23Leopold,437,662,699849210,7637,5 +29830,Wioska+Bochun10,337,470,7449254,10365,0 +29831,%230078+barbarzy%C5%84ska,469,333,1238300,9982,0 +29832,D05,665,554,848995478,11824,0 +29833,%5B167%5D,650,582,8000875,6153,0 +29834,North+FiFa+3,435,342,699796330,9744,6 +29835,017,465,328,2502956,10019,0 +29836,%230102+barbarzy%C5%84ska,461,338,1238300,10178,0 +29837,%C5%BBUBRAWKA+040,607,633,33900,10257,0 +29838,127...centr,449,343,6920960,8583,0 +29839,Wyspa+019,624,381,699756210,7191,0 +29840,Lord+Lord+Franek+.%23088,517,327,698420691,9976,0 +29841,0029,412,353,699431255,9999,0 +29842,D%C4%85browa+0024,354,585,849096972,2907,0 +29843,A0287,328,484,8841266,10289,0 +29844,0144,633,605,698416970,7298,0 +29845,015+-+Mroczna+Osada,644,408,849035905,12134,0 +29846,Wioska+08,501,328,951823,5582,0 +29847,%5BA%5D012,429,649,849097175,4247,0 +29848,017,599,635,849097799,7923,0 +29849,The+Game+Has+Only+Just+Begun,347,535,9280477,9976,0 +29850,Gra+o+Tron,617,617,8815749,10019,0 +29851,Kentin+ufam+Tobie,334,455,699783765,11348,0 +29852,Psycha+Siada,449,664,698807570,6542,0 +29853,R+011+%7ESzaikan%7E,485,671,699195358,9911,0 +29854,001,602,638,849097799,9885,0 +29855,Weso%C5%82ych+%C5%9Awi%C4%85t,578,351,848915730,9924,0 +29856,Bunkier+003,619,623,699778867,7846,0 +29857,Monetkownia,618,623,699759128,10237,0 +29858,%2A4623%2Ac+Cymbalowo,653,433,7973893,10287,0 +29859,Chekku+-+meito,332,525,9280477,9976,0 +29860,Blackhaven,670,471,699574408,10019,0 +29861,Taran,343,573,6180190,9960,0 +29862,Wioska+110,642,606,848971079,8759,0 +29863,B.060,668,505,9188016,10005,0 +29864,%23Vangeance,436,655,699849210,7369,0 +29865,Wioska+barbarzy%C5%84ska+028,512,330,6343784,6292,0 +29866,%2A152%2A,353,419,699273451,7981,0 +29867,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,391,627,849097937,9465,0 +29868,North+Fifa+2,437,341,699796330,9745,0 +29869,Sony+911,644,589,1415009,10476,0 +29870,wie%C5%9B,346,430,393668,9902,0 +29871,come+on,332,531,699523631,10224,0 +29872,043+%7C+PALESTINA,654,422,9228039,7716,0 +29873,deff+100+%25,348,569,849012521,8913,7 +29874,02.+California,637,409,849060446,9735,0 +29875,SPOCENI+KUZYNI,414,650,848913998,2658,0 +29876,%230119+tomek791103,478,333,1238300,8298,0 +29877,amator+czysto,558,663,848915531,6181,0 +29878,033,666,488,699351301,9843,0 +29879,Wioska+barbarzy%C5%84ska,357,406,699323302,2614,0 +29880,027+pawelk95,666,477,2135129,9372,8 +29881,A05,472,667,698652014,10019,0 +29882,Wioska+ba11,499,331,6118079,6789,0 +29884,A0281,327,488,8841266,10362,0 +29885,0016,625,383,848915730,9561,0 +29886,Orze%C5%82+Wyl%C4%85dowa%C5%82,450,659,698807570,9208,9 +29887,Knowhere,382,510,699723284,10452,0 +29888,AAA,534,331,1006847,9417,0 +29889,asd,664,476,699598425,10728,0 +29890,0019,568,658,698659980,10252,2 +29891,cc+Bia%C5%82ystok,392,369,3909522,7875,0 +29892,Wioska+barbarzy%C5%84ska,370,394,848886056,3523,0 +29893,Dajanka+22,354,581,849012843,1105,0 +29894,1.5,367,390,849095959,4149,0 +29895,231...CENTR,458,332,6920960,5979,0 +29896,J01,363,595,849090130,3805,0 +29897,Wioska+apysia,658,571,699845400,6560,0 +29898,ADEN,575,347,698588535,10154,0 +29899,CHARFA,514,342,699072129,10441,0 +29900,Lord+Lord+Franek+.%23081,528,332,698420691,9957,0 +29901,0186,545,659,698659980,10019,0 +29902,216...barba,463,333,6920960,5042,0 +29903,Wioska+barbarzy%C5%84ska,545,333,699066118,2841,0 +29904,K34+-+%5B124%5D+Before+Land,438,345,699088769,9783,0 +29905,%2A130%2A,369,393,699273451,10025,1 +29906,%21+Stark+Tower,629,384,699723284,5303,0 +29907,050-+Mroczna+Osada,629,394,849035905,9277,0 +29908,Wioska+barbarzy%C5%84ska,530,332,698350371,1653,0 +29909,.%3A018%3A.,372,606,7417116,6712,0 +29911,1.4,376,383,849095959,5055,0 +29912,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,665,698807570,10252,4 +29913,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,663,698807570,10252,0 +29915,_6_,493,333,9113064,2900,0 +29916,045,521,671,2293376,9993,0 +29917,038,422,647,699736927,5683,0 +29918,North+Barba+042,432,348,699796330,9433,0 +29919,Dana+Point,615,625,848932879,10971,0 +29920,BEZDZIETNY+KAWALER,418,632,848913998,6179,0 +29921,V007,352,423,849097737,5826,0 +29922,Pobozowisko,372,607,699513260,8334,0 +29923,%23029+A,444,596,9037756,10311,0 +29924,---012,361,600,8607734,7503,0 +29926,KR%C3%93L+PAPI+WIELKI,636,606,698191218,10000,0 +29927,TROJA.12,455,576,8438707,7467,0 +29928,Wioska+barbarzy%C5%84ska,620,378,848924219,2336,0 +29929,mys,570,650,699828685,9976,0 +29930,Wioska+barbarzy%C5%84ska,451,337,699308637,7496,0 +29931,031.+Night+Raid-,476,670,699684062,11041,0 +29932,0524,543,664,698659980,10495,0 +29933,Zeta+Reticuli+W,362,400,699323302,7648,0 +29934,%5BB%5D_%5B046%5D+Dejv.oldplyr,417,353,699380607,10495,0 +29935,%7CC%7C+Northreach,506,668,698147372,10495,0 +29936,0004+Pozna%C5%84,377,377,849096882,9971,0 +29937,054...barbarka,449,342,6920960,10479,0 +29938,103.+Brigetio,648,416,849091866,5338,0 +29939,Zeta+Reticuli+W,356,402,699323302,3956,0 +29940,O41+Sharjila,663,541,699272880,10797,0 +29941,I018,669,464,699722599,10342,0 +29942,Wioska+Bochun10,334,503,7449254,4456,0 +29943,PUSTO,642,584,1415009,10237,0 +29944,Piek%C5%82o+to+inni,587,355,848956765,2839,0 +29945,Pobozowisko,368,609,699513260,10838,0 +29946,A024+FlapFactor,660,445,113796,10160,0 +29947,I043,665,461,699722599,10236,0 +29949,3+barba,584,649,848995242,10018,0 +29950,Wioska+108,642,588,848971079,7387,0 +29951,Sony+911,586,644,1415009,10217,0 +29952,113,655,428,849088515,6700,0 +29953,Wioska+064,638,594,848971079,9771,0 +29954,Ob+Konfederacja+%2B,436,339,848915730,8159,0 +29955,Zeta+Reticuli+W,368,397,699323302,5954,0 +29956,Zeta+Reticuli+W,367,392,699323302,6169,0 +29958,K34+-+%5B141%5D+Before+Land,436,346,699088769,9158,0 +29959,%7C032%7C+Prasonisi,496,667,699393742,10107,0 +29960,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,669,698807570,9656,0 +29961,%23Sk_014,438,663,699849210,2668,0 +29962,0571,568,660,698659980,9756,0 +29963,%230030+GL01N,465,336,1238300,10178,0 +29964,Wioska+barbarzy%C5%84ska,560,339,699072129,10220,0 +29965,North+Olsztyn,425,347,699796330,9930,0 +29966,E007,660,557,8428196,8233,0 +29967,Wioska+barbarzy%C5%84ska,503,674,699781762,9837,0 +29968,ADEN,576,348,698588535,10107,0 +29969,Wioska+Bochun10,331,474,7449254,6434,0 +29970,1v9+machine,388,625,699697558,10019,0 +29971,Gattacka,621,378,699298370,9372,0 +29972,024+imprezowy+serniczek,511,668,8954402,9899,0 +29973,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,634,1434753,10068,0 +29974,0257,555,661,698659980,10019,0 +29975,%C5%9Amierdzi+potem+x,352,590,7318415,4405,0 +29976,MojeDnoToWaszSzczyt,567,345,848915730,9938,0 +29977,Witoszyn-morra12311,654,426,7340529,8998,0 +29978,137...barb,446,338,6920960,6403,0 +29979,Wiocha+8,377,384,849096544,7458,0 +29980,Szulernia,385,372,7249451,4304,0 +29981,07.+Pi%C4%99kny+rynek,509,669,849092769,9688,0 +29982,Monetkownia,621,619,699759128,10237,0 +29983,08+im+Riutina,607,428,849037469,9809,0 +29984,KUZYNEIRO,405,642,848913998,6813,0 +29986,R%C4%99cznik+do+zmiany,358,402,699697558,10019,0 +29987,0073,413,350,699431255,6050,0 +29988,000+Plutosea,334,540,9280477,10068,0 +29989,014,364,603,699083129,9599,0 +29991,Wioska+barbarzy%C5%84ska,561,340,699072129,10216,0 +29992,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,379,621,1434753,9593,0 +29993,Pa%C5%84stfa+Pu%C5%82nocy,583,357,699433558,10268,0 +29994,Mora+Sul,344,435,849097716,6653,0 +29995,Ave+Why%21,480,670,699121671,9206,0 +29996,5+barba,585,650,848995242,10018,0 +29997,126...TOMCZ,479,335,6920960,10322,0 +29998,Lord+Arsey+KING,572,595,848956513,10285,0 +29999,%2A%2A13%2A%2A,632,389,849098782,9937,0 +30000,Lord+Lord+Franek+.%23011,519,332,698420691,10252,0 +30001,015+Tyranus1,669,496,2135129,9231,0 +30002,Zeta+Reticuli+W,365,398,699323302,8437,0 +30003,Gromkowie+3,370,613,7417116,9351,9 +30004,North+W%C5%82oc%C5%82awek,420,354,699796330,10294,0 +30005,D03+Brown+gubisz+si%C4%99,458,666,849037407,10838,0 +30006,NAREW,332,509,849097614,8483,0 +30007,Wioska+barbarzy%C5%84ska,555,665,7756002,9882,0 +30008,%7CB%7C+Madmoor,490,667,698147372,9455,0 +30009,SPOCENI+KUZYNI,414,648,848913998,9536,0 +30010,0167,549,664,698659980,10019,0 +30011,troja3,562,342,698290319,8708,0 +30012,Chekku+-+meito,328,524,9280477,7960,0 +30013,23.+WHY%21,513,670,849092769,4711,0 +30014,Wioska+barbarzy%C5%84ska,670,484,699598425,10728,0 +30015,%3A%3A%3A2%3A%3A%3AKoniki,456,664,699827112,9960,0 +30016,D%C4%85browa+0011,356,592,849096972,8452,0 +30017,%230051+geryk,467,330,1238300,10178,1 +30018,KR%C3%93L+PAPI+WIELKI,631,601,698191218,10000,0 +30019,53k%24+Grvvyq,655,576,699676005,7686,0 +30020,Piek%C5%82o+to+inni,331,535,848956765,10160,0 +30021,024.+Mazgajkiewo+Ma%C5%82e,513,666,848928624,10160,0 +30022,Wioska+barbarzy%C5%84ska,401,357,8419570,5929,0 +30023,Chekku+-+meito,331,524,9280477,9976,0 +30025,03.+Meksyk,637,403,849060446,9735,0 +30026,%2A202%2A,356,407,699273451,7523,0 +30027,607%7C374,609,372,699580120,3884,0 +30028,Szlachcic%2FTaran,636,392,699491076,10028,0 +30029,%2A012,598,641,699567608,10140,3 +30030,1.15,341,442,3502565,3348,0 +30031,scofield,525,666,699494488,9805,0 +30032,%7CB%7C+Darkcoast,488,668,698147372,10495,0 +30033,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,629,1434753,10068,0 +30034,A+049,371,617,699342219,8290,6 +30035,Lord+Lord+Franek+.%23127,513,326,698420691,7642,0 +30036,Architekci+Plac%C3%B3w+Boju,339,554,8004076,9880,0 +30037,xxx+-+11,615,630,699778867,10362,0 +30038,077,664,527,699351301,9780,0 +30039,0143,629,598,698416970,7974,0 +30040,Szlachcic%2FTaran,610,374,699759128,7094,0 +30041,G%C3%93RNIK,331,505,849097614,9835,0 +30042,Lord+Lord+Franek+.%23090,517,328,698420691,9976,0 +30043,%2A026,593,646,699567608,9720,0 +30044,%5B022%5D+Wioska+barbarzy%C5%84ska,661,438,849095068,9312,0 +30045,%2A%2A1234%2A%2A,634,385,849098782,11422,0 +30046,BAC%C3%93WKA+%7C032%7C,641,408,7394371,5149,0 +30047,Chekku+-+meito,334,524,9280477,9976,0 +30048,Piek%C5%82o+to+inni,589,352,848956765,9761,1 +30049,026+pawelk95,667,477,2135129,9500,0 +30050,%2A226%2A,378,376,699273451,8936,0 +30052,%7CB%7C+Oakenview,487,668,698147372,10362,0 +30053,Architekci+Plac%C3%B3w+Boju,340,549,8004076,9880,0 +30054,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,611,849097937,9584,0 +30055,010+Unternehmen+Barbarossa,604,362,849091899,4581,0 +30056,Jaaa,667,487,698635863,8702,0 +30057,Wioska+barbarzy%C5%84ska,561,343,699072129,10217,0 +30058,Ob+Konfederacja,433,340,848915730,9168,0 +30059,sony911,589,648,1415009,10053,0 +30060,051,565,410,7271812,10495,0 +30061,Lord+Lord+Franek+.%23128,523,334,698420691,7831,0 +30062,Cary+k+Tampa,597,355,849061374,10104,0 +30063,Chekku+-+meito,337,533,9280477,8272,0 +30064,181..,351,590,849090130,6199,0 +30065,Westfold.003,347,416,848918380,10178,0 +30066,Wioska+II,581,347,698200480,6964,0 +30067,%230105+tomek791103,478,327,1238300,10178,0 +30068,-015-,339,560,8004076,7323,0 +30069,030.+Night+Raid-,476,673,699684062,10909,0 +30070,KUZYNEIRO,407,643,848913998,8001,0 +30071,A0286,329,482,8841266,10362,0 +30072,%230070+tomek791103,478,329,1238300,10178,6 +30073,Wioska+barbarzy%C5%84ska,668,525,6510480,6306,0 +30074,I019,661,459,699722599,9662,0 +30075,Lord+Lord+Franek+.%23082,526,334,698420691,10436,0 +30076,Gromkowie+2,369,612,7417116,12001,0 +30077,Bagdad,493,326,8847546,10068,0 +30078,057,536,670,2293376,9993,0 +30079,1.12,340,446,3502565,3856,0 +30080,B+032,670,530,8078914,10061,0 +30081,Wioska+barbarzy%C5%84ska,496,386,699433558,9174,0 +30082,Wrath+007,574,343,699756210,10273,0 +30083,Monetkownia,619,624,699759128,10237,0 +30084,Architekci+Plac%C3%B3w+Boju,342,564,8004076,9880,0 +30085,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,632,1434753,10068,0 +30086,Wioska+Bochun10,327,517,7449254,10300,0 +30087,011,516,670,2293376,9993,0 +30088,Szulernia,383,372,7249451,9981,0 +30089,%2A169%2A,349,415,699273451,10211,0 +30090,%5BB%5D_%5B048%5D+Dejv.oldplyr,427,348,699380607,10287,0 +30091,104.+Egara,647,411,849091866,9604,0 +30092,North+Barba+055,407,355,699796330,6826,0 +30093,Moczy+kij,331,541,699265922,9761,0 +30094,Szulernia,408,364,7249451,10045,0 +30095,Chekku+-+meito,333,521,9280477,9976,0 +30096,KUZYNEIRO,407,642,848913998,10160,0 +30097,%230182+MiBM,489,328,1238300,6561,0 +30098,Radek,398,470,699523631,10474,0 +30099,.achim.,491,333,6936607,10946,0 +30100,03Wioska+barbarzy%C5%84ska,390,633,699704542,8682,0 +30101,MojeDnoToWaszSzczyt,565,346,848915730,9924,0 +30102,%5BA%5D009,424,651,699736927,6110,0 +30103,Deveste+ufam+Tobie,406,647,699783765,10000,8 +30104,A0263,330,487,8841266,10362,0 +30105,Wioska+barbarzy%C5%84ska,561,342,699072129,10218,0 +30106,Zeta+Reticuli+W,362,394,699323302,7595,0 +30107,D%C4%85browa+0012,354,588,849096972,9584,0 +30108,Szulernia,407,362,7249451,10017,6 +30109,Jednak+wol%C4%99+gofry,410,649,848913998,9811,0 +30111,Oddej+te+ko%C5%82o+bo+ci+ciulna,329,464,699711723,3107,0 +30112,Bagdad,497,334,8847546,9608,0 +30113,%21off+100+%25,348,570,849012521,10495,0 +30114,WB6,651,413,1086351,2917,0 +30115,005+Wioska+FredS,626,467,699671454,7672,0 +30116,Ave+Why%21,496,669,698585370,4550,0 +30117,K34+-+%5B143%5D+Before+Land,439,344,699088769,9924,0 +30118,Muaq,675,477,699574408,9551,0 +30119,660%7C387,609,373,699580120,7497,0 +30120,Wioska+Bochun10,335,465,7449254,9783,0 +30121,047+%7C+PALESTINA,655,423,9228039,6495,0 +30122,Gattacka,603,424,699298370,9041,0 +30123,%2A014,595,641,699567608,8862,0 +30124,06.+Dubaj,647,414,849060446,9735,0 +30125,Wioska+barbarzy%C5%84ska,406,415,698971484,10008,0 +30126,022+Raya+Lucaria,486,672,699834004,10104,0 +30127,KR%C3%93L+PAPI+WIELKI,637,600,698191218,9402,0 +30128,%5B326%5D+Chor%C4%85giewka+na+wietrze,595,439,848985692,10397,0 +30129,Nowy+%C5%9Bwiat+2,345,563,849084005,10178,0 +30130,003,456,329,2502956,10019,0 +30131,120...tomcz,485,331,6920960,9725,0 +30132,Pobozowisko,386,586,699513260,10714,0 +30133,Wioska+barbarzy%C5%84ska,556,335,699072129,10218,0 +30134,0010,614,611,6417987,8055,0 +30135,Monetkownia,620,616,699759128,10237,0 +30136,D%C4%85browa+0003,360,595,849096972,10083,0 +30137,Wioska+barbarzy%C5%84ska,557,664,7756002,10229,0 +30138,2.5,373,385,849095959,5171,0 +30139,%5BA%5D002,424,650,699736927,7992,0 +30140,Lord+Lord+Franek+.%23101,524,328,698420691,10160,0 +30141,040,672,516,699413040,9996,0 +30142,Wioska+Bochun10,334,460,7449254,4833,0 +30143,Jaaa,671,488,698635863,10402,0 +30144,Wioska+barbarzy%C5%84ska,597,362,849041192,3393,0 +30145,Myk+i+do+kieszonki,346,570,849012521,7406,0 +30146,Sony+911,590,649,1415009,10208,0 +30147,%5BB%5D%5B02%5D+Aragon+Ballroom,434,344,699380621,9948,0 +30148,Westfold.020,346,423,848918380,8789,0 +30149,Adasko22,631,613,2269943,4570,0 +30150,Oscar,673,507,699737356,8026,0 +30151,Jehu_Kingdom_55,648,425,8785314,6796,0 +30152,-0009-,540,333,2972329,6536,0 +30153,cz+10+4,367,389,3909522,9926,0 +30154,Architekci+Plac%C3%B3w+Boju,335,557,8004076,6577,0 +30155,Wioska+barbarzy%C5%84ska,401,360,8419570,7236,0 +30156,Wioska+barbarzy%C5%84ska,555,339,699072129,9813,0 +30157,Wyspa+006,625,381,699756210,10273,0 +30158,A003+Thais,661,448,113796,10160,0 +30159,cz+Wioska+15,367,388,3909522,4212,0 +30160,Grvvyq+118k%24,614,627,699676005,9691,0 +30161,Nowy+%C5%9Bwiat+A,341,557,849084005,2057,0 +30162,S%C5%82o%C5%84ce,546,338,699797805,3881,0 +30163,Nawet+przytulnie+tutaj,444,659,8954402,9860,0 +30164,128...centr,445,343,6920960,8591,0 +30165,Kiedy%C5%9B+Wielki+Wojownik,566,341,848915730,9976,0 +30166,012,343,571,8839171,3504,0 +30167,Szlachcic%2FTaran,639,397,699759128,7998,0 +30168,%3D057%3D+Wioska+barbarzy%C5%84ska,647,584,3781794,10371,0 +30169,Zeta+Reticuli+W,364,399,699323302,10542,0 +30170,81+.%C5%9Aroda.,521,331,2571407,2611,0 +30171,81+Wtorek,522,332,2571407,3955,0 +30172,645%7C411+Wioska+barbarzy%C5%84ska,645,411,6822957,5075,0 +30173,Wioska+barbarzy%C5%84ska,553,340,699072129,10293,0 +30174,%2A%2A41%2A%2A,664,440,849098782,9441,0 +30175,032.+Night+Raid-,477,673,699684062,10686,0 +30176,0266,538,664,698659980,10224,0 +30177,%2A%2A24%2A%2A,633,395,849098782,10878,0 +30178,Vccc-2,414,645,699736927,6884,0 +30180,A0264,329,487,8841266,10495,0 +30181,Salt+Lake+City,599,360,699491076,9755,0 +30182,KR%C3%93L+PAPI+WIELKI,638,605,698191218,10000,0 +30183,Jestem+Poza+Kontrol%C4%85,342,555,8004076,9880,0 +30184,Wioska+barbarzy%C5%84ska,552,340,699072129,10232,0 +30185,%2A007,600,640,699567608,9031,0 +30186,B+029,663,535,8078914,9296,0 +30187,Architekci+Plac%C3%B3w+Boju,339,553,8004076,9880,0 +30188,%230059+barbarzy%C5%84ska,471,329,1238300,10178,0 +30189,Gattacka,619,378,699298370,10470,0 +30190,%2A263%2A,336,445,699273451,9892,0 +30191,B+007,673,540,8078914,10189,0 +30192,Deveste+ufam+Tobie,409,642,699783765,10000,6 +30193,Grvvyq+111k%24,655,565,699676005,5394,0 +30194,Wioska+barbarzy%C5%84ska,580,649,6818593,9835,0 +30195,%2A077%2A,356,414,699273451,10211,0 +30196,Ave+Why%21,498,670,698585370,4547,0 +30197,%5B021%5D+Audi+A+szczy,662,438,849095068,9312,0 +30198,Samotna+wioska+8,355,592,698353083,9994,0 +30199,KUZYN,410,640,848913998,4031,9 +30200,-007-,539,331,698588812,3529,0 +30201,Zeta+Reticuli+W,363,397,699323302,9951,0 +30202,Wyspa+004,623,381,699756210,10273,6 +30203,%C5%81o%C5%9B+z+g%C5%82ow%C4%85+%C5%9Blimaka,373,391,848886056,6523,0 +30204,0159,556,655,698659980,10019,0 +30205,Wioska+barbarzy%C5%84ska,350,412,849096547,2174,0 +30206,008,455,334,2502956,10019,0 +30207,%230178+MiBM,488,330,1238300,8133,0 +30208,047.,389,628,2665207,6067,0 +30209,Wiocha+9,378,385,849096544,6487,0 +30210,Village,649,417,1086351,7742,0 +30211,O32+Alaska,669,523,699272880,10452,3 +30212,015%7C%7C+Ursa+Minor,496,672,849035525,10019,0 +30213,010,483,667,698650301,9583,0 +30214,Szlachcic,393,363,698160606,9861,0 +30215,...,564,339,699072129,10303,0 +30217,wokalista+zespo%C5%82u%2C%2C%2C+Leszcze,594,638,848995242,9836,0 +30218,cc+Lanckorona,391,372,3909522,9888,0 +30219,Chekku+-+meito,329,522,9280477,9976,0 +30220,010+Aberlou,557,337,699072129,5157,0 +30221,%2A%2A22%2A%2A,633,394,849098782,5549,0 +30222,Architekci+Plac%C3%B3w+Boju,337,557,8004076,7244,6 +30223,Kentin+ufam+Tobie,434,404,699783765,10000,0 +30224,03Wioska+barbarzy%C5%84ska,389,630,699704542,8497,0 +30225,1.02,337,446,3502565,8672,4 +30227,AAA,528,328,1006847,9673,0 +30228,021.,651,585,6520732,9835,0 +30229,Szulernia,390,368,7249451,9710,0 +30230,%5BB%5D_%5B036%5D+Dejv.oldplyr,421,345,699380607,10495,0 +30231,Wioska+Bochun10,336,472,7449254,7822,0 +30232,Wioska+TakiKris,386,379,8419570,9105,0 +30233,28k%24+Grvvyq,656,576,699676005,10495,0 +30234,A0045,377,473,8841266,10362,0 +30235,%C5%BBUBRAWKA+041,609,635,33900,6745,0 +30236,Kentin+ufam+Tobie,353,457,699783765,10000,0 +30237,%7C037%7C+Chalki,493,673,698152377,10160,0 +30239,I%23017,618,368,2065730,9797,0 +30240,Wioska+barbarzy%C5%84ska+026,512,331,6343784,8733,0 +30241,053,532,669,2293376,9993,0 +30242,0160,548,664,698659980,10019,0 +30243,psycha+sitting,417,653,699736927,10013,0 +30244,KR%C3%93L+PAPI+WIELKI,636,600,698191218,8899,5 +30245,Wioska+barbarzy%C5%84ska,342,447,393668,7852,0 +30246,Ave+Why%21,479,672,699121671,9809,0 +30247,A0265,333,480,8841266,10362,0 +30248,V005,346,420,849097737,6237,0 +30249,0049,553,618,698659980,10083,0 +30250,Wonderwall,333,547,698962117,9515,0 +30251,Jestem+Poza+Kontrol%C4%85,343,556,8004076,9316,0 +30252,E008,661,562,8428196,6860,0 +30255,0654,566,659,698659980,9825,0 +30256,Wioska+Bochun10,325,491,7449254,10311,0 +30257,%2A005,594,645,699567608,9031,0 +30258,Taran,665,476,699598425,10728,0 +30259,Taran,672,482,699598425,10728,0 +30260,Szulernia,386,370,7249451,9630,0 +30261,Szlachcic%2FTaran,610,368,699759128,10237,0 +30262,Zeta+Reticuli+W,364,401,699323302,7048,0 +30263,117...tomcz,482,329,6920960,10311,0 +30264,ZiOm2311Gacek,442,577,849028088,10256,0 +30265,Gotha,345,438,849097716,3912,0 +30266,0247,540,662,698659980,10160,0 +30267,Wioska+barbarzy%C5%84ska,439,661,699849210,1987,0 +30268,103...tomcz,479,333,6920960,10495,0 +30269,Ave+Why%21,474,672,699121671,9730,0 +30270,008+Stromy+P%C5%82askowy%C5%BC,626,424,699429153,9899,0 +30271,%5B042%5D,644,586,698305474,7046,0 +30272,Skocz+po+Deff+do+OZDR,348,572,7333216,9711,0 +30273,Kaj+jo+je%2C+sam+ino+gorole+sa,330,466,699711723,4736,0 +30274,%230064+Saturennr,472,353,1238300,10178,0 +30275,psycha+sitting,428,655,699736927,10311,9 +30276,Wyspa+008,623,383,699756210,9363,0 +30277,Jehu_Kingdom_63,659,431,8785314,6347,0 +30280,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F4,625,618,33900,10053,0 +30281,029,631,611,699567608,9092,0 +30282,Wioska+Bochun10,327,493,7449254,10495,0 +30283,V004,350,411,849097737,6134,0 +30284,0069,417,349,699431255,7158,0 +30285,%7CC%7C+Northgarde,510,668,698147372,11321,0 +30286,Wioska+barbarzy%C5%84ska,672,468,699574408,9989,0 +30287,%23045,493,612,699605333,10393,0 +30288,Wioska+ba13,499,327,6118079,6898,0 +30289,Szlachcic,390,366,698160606,8630,0 +30291,Mosul,430,654,849089459,5345,0 +30292,%2A223%2A,380,382,699273451,6276,0 +30293,O39+Katmandu,664,545,699272880,10546,5 +30294,Wioska+barbarzy%C5%84ska,438,656,699849210,2601,0 +30295,_5_,494,333,9113064,3311,0 +30296,Bagdad,485,328,8847546,10068,0 +30297,N005,342,569,272173,3574,0 +30298,cc+Wioska+prince,396,362,3909522,3825,0 +30299,R%C4%99cznik+do+zmiany,361,405,699697558,10019,0 +30300,%23111%23,638,600,692803,9761,0 +30301,0142,631,610,698416970,9235,0 +30302,%5BB%5D_%5B005%5D+Dejv.oldplyr,429,354,699380607,10495,0 +30303,010,603,365,1018357,10019,0 +30304,81+.%3A5%3A.,522,329,2571407,4017,0 +30305,030,478,672,698650301,9810,0 +30306,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,669,698807570,7653,4 +30307,Szulernia,378,379,7249451,9454,0 +30308,Szulernia,379,379,7249451,7691,0 +30309,Grvvyq+107k%24,655,570,699676005,3678,0 +30310,Chekku+-+meito,334,522,9280477,9485,0 +30311,Wioska+005,383,388,8419570,10301,0 +30312,Chekku+-+meito,334,535,9280477,9976,0 +30314,Wioska+barbarzy%C5%84ska,575,656,6818593,9835,0 +30315,%230048+geryk,469,329,1238300,10178,0 +30316,Szlachcic,667,500,699098531,8047,0 +30317,Lord+Lord+Franek+.%23169,509,325,698420691,10160,0 +30318,Wioska+059,647,593,848971079,9761,0 +30319,%230145+Thorus5,474,331,1238300,6256,0 +30320,102.+P%C3%B3%C5%82wysep+Akara,642,598,8337151,10160,0 +30321,A-040,401,365,8419570,10332,2 +30322,Ko%C5%84sko,354,596,849014147,9064,0 +30323,SPOCENI+KUZYNI,413,647,848913998,7845,0 +30325,Wioska+klez+004,330,514,698295651,8172,0 +30326,Wyspa+017,625,380,699756210,7578,0 +30327,046,457,333,2502956,10014,0 +30328,KR%C3%93L+PAPI+WIELKI,639,601,698191218,6912,0 +30329,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F3,607,632,33900,10231,0 +30330,Wioska+Bochun10,327,495,7449254,7048,0 +30331,Chekku+-+meito,332,518,9280477,9976,0 +30332,%2ANobo,578,647,699443920,9761,0 +30333,Chekku+-+meito,331,527,9280477,8206,0 +30334,D%C4%85browa+0004,359,596,849096972,10083,0 +30335,0262,555,658,698659980,10160,0 +30336,%7C027%7C+Archangelos,506,672,699393742,9859,0 +30337,A0279,326,485,8841266,10362,0 +30338,Obrze%C5%BCa+099,553,663,848915531,5660,0 +30339,KR%C3%93L+PAPI+WIELKI,637,603,698191218,6575,0 +30340,KUZYNEIRO,407,640,848913998,9364,0 +30341,Deff+robi+brrr,346,573,7333216,9735,4 +30342,002,592,357,7340529,11824,0 +30343,226...barba,462,333,6920960,4885,0 +30344,Szulernia,388,370,7249451,9270,5 +30345,1v9+machine,386,632,699697558,10019,0 +30346,233...CENTR,461,331,6920960,4296,0 +30348,Lord+Lord+Franek+.%23129,517,329,698420691,8036,0 +30349,Ave+Why%21,491,642,698585370,9978,0 +30350,.%3A012%3A.,371,616,7417116,9902,0 +30351,Szulernia,389,370,7249451,10055,0 +30352,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F4,609,631,33900,7968,0 +30353,Darmowe+przeprowadzki,452,664,848935389,9597,0 +30354,Szulernia,383,370,7249451,9353,0 +30355,Architekci+Plac%C3%B3w+Boju,341,545,8004076,8832,0 +30356,Wioska+barbarzy%C5%84ska,347,434,849097716,3629,0 +30357,O37+Bator,664,539,699272880,10963,2 +30358,M181_006,344,426,393668,9894,0 +30359,I030,660,441,699722599,10148,0 +30360,016,605,632,849097799,7003,0 +30361,S1Joker,479,666,698585370,10962,0 +30362,Architekci+Plac%C3%B3w+Boju,334,549,8004076,9880,0 +30363,Normandiz+en,359,603,849014147,3803,0 +30364,Kentin+ufam+Tobie,335,456,699783765,10000,0 +30365,045,668,500,2135129,10444,0 +30366,Taran,666,475,699598425,10728,0 +30367,Architekci+Plac%C3%B3w+Boju,339,545,8004076,9880,0 +30368,-012-,540,331,698588812,3774,0 +30369,%7C012%7C+Zaros,498,675,699393742,9835,0 +30370,przeprawa,601,641,699567608,9200,0 +30371,%230062+barbarzy%C5%84ska,467,337,1238300,10178,0 +30372,027.,629,393,699491076,10654,0 +30373,Westfold.022,345,424,848918380,10070,0 +30374,Jaaa,673,493,698635863,10435,0 +30375,Ave+Why%21,482,672,699121671,9094,0 +30376,Wioska+barbarzy%C5%84ska,451,335,849017820,9230,0 +30377,R%C4%99cznik+do+zmiany,355,403,699697558,10019,0 +30378,Miasys+1,350,574,849090130,5461,7 +30379,Architekci+Plac%C3%B3w+Boju,340,551,8004076,9880,0 +30380,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,633,1434753,10068,0 +30381,%230033+GL01N,469,332,1238300,10178,0 +30382,Lord+Lord+Franek+.%23043,517,331,698420691,10498,7 +30383,Cape+Dun,342,435,849097716,11322,0 +30384,Muchomor+%2A020%2A,515,672,606407,10215,0 +30385,%2A%2A19%2A%2A,630,390,849098782,9592,0 +30386,Myk+i+do+kieszonki,367,609,9319058,10290,0 +30387,Villaggio,362,593,8607734,7319,0 +30388,Grupka+7+wiosek+7,358,604,698353083,10425,0 +30389,cycedoziemi,629,392,698281649,8500,0 +30390,%5BA%5D010,422,650,699736927,7672,0 +30391,Miasys+2,348,581,849090130,4017,0 +30392,Wioska+barbarzy%C5%84ska,439,660,699849210,1746,0 +30393,Wioska+barbarzy%C5%84ska,346,442,393668,5945,0 +30394,Bagienko.Anker...,371,388,699713515,6392,0 +30395,nowa,600,361,1990750,6605,0 +30396,DejMon3,371,619,699805839,8989,0 +30397,Gra+o+Tron,620,627,8815749,10019,0 +30398,54.+KaruTown,656,427,849060446,9692,0 +30400,Wioska+Bochun10,334,465,7449254,8462,0 +30401,Wioska+Bochun10,334,469,7449254,7174,0 +30404,North+FiFa+1,436,342,699796330,10311,0 +30405,Wioska+ba22,500,331,6118079,8136,0 +30406,Deveste+ufam+Tobie,398,640,699783765,10000,0 +30407,Gamma,624,382,848924219,3951,0 +30408,%7C013%7C+Jerapetra,492,669,699393742,10063,0 +30409,KR%C3%93L+PAPI+WIELKI,632,611,698191218,8590,0 +30410,011,457,334,2502956,10019,0 +30411,-003-,540,332,698588812,8349,7 +30412,Wioska+barbarzy%C5%84ska,505,331,698739350,3114,0 +30413,O24+Puebla,669,534,699272880,10006,0 +30414,Szlachcic%2FTaran,615,368,699759128,10237,0 +30415,094...bar,442,335,6920960,10352,0 +30416,%5BB%5D_%5B009%5D+Dejv.oldplyr,428,345,699380607,10444,0 +30417,005+Kocz,670,469,2135129,9553,8 +30418,Chiado,350,587,699494480,6680,0 +30419,%2A237%2A,335,444,699273451,9608,0 +30420,Szlachcic,393,364,698160606,9816,0 +30421,Lord+Lord+Franek+.%23130,518,328,698420691,7686,0 +30422,022+To+nie+s%C4%85+tanie+rzeczy,386,626,6354098,10140,0 +30423,%7CC%7C+Scorchhallow,502,669,698147372,10495,0 +30424,RUCH,333,505,849097614,10079,0 +30425,Wioska+Bochun10,327,477,7449254,9327,0 +30426,Bagienko.Anker...,378,383,699713515,7260,0 +30427,Bagienko.Anker...,375,386,699713515,2988,0 +30428,Daruj+sobie,647,408,1086351,3589,0 +30429,%230173+Asmo17,485,332,1238300,8142,0 +30430,008+Thriller,387,624,8268010,9835,0 +30431,056,668,513,698999105,9898,0 +30433,Wioska+2,504,325,698680806,7574,0 +30434,Wioska+barbarzy%C5%84ska,390,515,698290577,5707,0 +30435,wie%C5%9B+3,345,428,393668,9885,0 +30436,Wioska+ba16,495,325,698239813,7971,0 +30437,Lord+Lord+Franek+.%23170,512,332,698420691,10141,0 +30438,A+004,370,617,699342219,10452,0 +30439,Ob+Konfederacja,432,336,848915730,9682,0 +30440,Wioska+Bochun10,332,478,7449254,3547,0 +30441,North+Suwa%C5%82ki,433,336,699796330,9980,0 +30443,%2A004,594,644,699567608,9031,0 +30444,%2A021,597,637,699567608,9704,0 +30445,%230171+Asmo17,486,328,1238300,9441,0 +30446,The+Game+Has+Only+Just+Begun,355,535,9280477,9976,0 +30447,%23106+C,529,669,9037756,7896,0 +30448,kto+ananasowy+pod+wod%C4%85+ma+dom,669,538,699628084,9600,0 +30449,Gattacka,619,376,699298370,10146,4 +30450,Piek%C5%82o+to+inni,588,352,848956765,9761,0 +30451,SPOCENI+KUZYNI,415,647,848913998,8806,0 +30452,Wioska+Bochun10,334,471,7449254,10311,0 +30453,Wioska+barbarzy%C5%84ska,346,581,6180190,2392,0 +30455,Lord+Lord+Franek+.%23095,510,326,698420691,9956,0 +30456,Taki+Pan,514,333,698739350,6428,0 +30457,O55+Orzammar,673,530,699272880,10132,0 +30458,Mashhad,431,659,849089459,9825,0 +30459,Wioska+barbarzy%C5%84ska,343,444,393668,6584,0 +30460,Szulernia,390,370,7249451,9919,0 +30461,024,629,609,699567608,9849,0 +30462,Pf+Konfederacja,489,505,848915730,9938,0 +30463,off+100+%25,343,575,849012521,9581,0 +30464,M181_046,339,434,393668,9902,0 +30465,052,448,650,849084985,10311,0 +30466,001+Wioska+Mia%C5%82a+By%C4%87+Pusta,381,627,6354098,9953,0 +30467,0590,550,659,698659980,8667,0 +30468,A0285,328,483,8841266,10362,0 +30469,%5BB%5D%5B05%5D+Ashbarys,428,347,699380621,10311,0 +30470,%7E%7E092%7E%7E,632,616,699567608,9989,9 +30471,Wrath+003,572,343,699756210,10273,0 +30472,%2A009,600,643,699567608,8869,0 +30473,Zeta+Reticuli+W,361,399,699323302,7284,0 +30474,Monetkownia,619,620,699759128,10087,0 +30475,Monetkownia,622,624,699759128,10237,0 +30476,Grupka+7+wiosek+7%2B,359,601,698353083,9876,0 +30477,013+Akoooord%21,377,624,6354098,10143,0 +30478,berkuza,587,356,7340529,11130,0 +30479,Taran,342,573,6180190,9956,0 +30480,XXXX,494,331,849054951,10068,0 +30481,A23,475,666,698652014,11321,0 +30482,Horyzont+zdarze%C5%84,524,672,7581876,9835,3 +30483,tego+nie,528,671,699494488,10481,0 +30484,Dajanka+32,350,575,849012843,1123,0 +30485,Gattacka,619,375,699298370,10001,0 +30486,Kreskowo_5,591,649,699567608,8174,0 +30487,%23011%23,629,616,692803,9761,0 +30488,%2A%2A16%2A%2A,635,388,849098782,9915,0 +30489,043,670,514,699413040,8640,0 +30490,Wioska+Bochun10,335,468,7449254,9668,0 +30491,B+028,670,531,8078914,9545,0 +30492,Chekku+-+meito,332,527,9280477,10495,0 +30493,Graca,349,587,699494480,9049,0 +30495,tarka,497,325,6118079,7364,0 +30496,0525,534,666,698659980,9645,0 +30497,O42+Georgia,668,524,699272880,8583,0 +30498,Jestem+Poza+Kontrol%C4%85,342,556,8004076,8988,0 +30499,Wioska+barbarzy%C5%84ska,550,336,699066118,4548,0 +30500,Jednak+wol%C4%99+gofry,425,645,699736927,8482,0 +30501,D%C4%85browa+0007,359,600,849096972,10019,0 +30502,A18,467,668,698652014,11188,0 +30503,Chekku+-+meito,328,528,9280477,9976,0 +30504,Pobozowisko,381,621,699513260,7550,0 +30505,030,601,638,849097799,7282,0 +30506,Szulernia,383,380,7249451,10158,0 +30507,64k%24+Grvvyq,659,569,699676005,8523,0 +30508,Kholinar,667,470,699574408,10336,0 +30510,%2A247%2A,333,452,699273451,9765,0 +30511,%2A241%2A,336,443,699273451,9939,0 +30512,Szlachcic,396,359,3484132,9504,0 +30513,0299,539,663,698659980,10019,0 +30514,0433,558,659,698659980,10019,0 +30515,Warzywniak+012,447,545,698290577,1254,0 +30516,Dewej+ta+frela+bo+ci+ciulna,328,466,699711723,3920,0 +30517,024,610,635,849097799,8081,0 +30518,N004,341,566,272173,3770,0 +30520,006,365,608,699083129,9022,0 +30522,Szlachcic%2FTaran,611,365,699759128,10237,0 +30523,Westfold.011,345,418,848918380,10178,0 +30524,xvc,653,572,699845400,5585,0 +30525,Zeta+Reticuli+W,369,391,699323302,4387,0 +30526,0166,553,659,698659980,10362,0 +30527,A25+Night+Raid-,475,667,698652014,10019,0 +30528,01.+Na+%C5%9Ar%C3%B3dce+znow+wypadek,507,667,849092769,9710,0 +30529,Szlachcic,392,364,698160606,10365,0 +30530,psycha+sitting,424,657,699736927,10311,0 +30531,deff+100%25,348,586,849012521,5172,0 +30532,D.008,404,645,849088243,8742,0 +30533,Jaaa,668,490,698635863,9457,0 +30534,Westfold.018,347,422,848918380,9603,0 +30535,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,377,616,849097937,9361,0 +30536,Roger,674,501,699737356,9531,0 +30537,M181_037,346,426,393668,9691,0 +30538,R%C4%99cznik+do+zmiany,353,406,699697558,10019,0 +30539,Y+%7C+Forest+Cyaaaanku,326,500,699213622,10000,0 +30540,D%C4%85browa+0013,359,590,849096972,8258,0 +30541,Szulernia,387,370,7249451,8977,7 +30542,BAC%C3%93WKA+%7C011%7C,615,404,7394371,12154,0 +30543,041,674,516,699413040,11583,0 +30544,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,618,1434753,9792,0 +30545,Wioska+barbarzy%C5%84ska,447,336,699308637,8287,0 +30546,Szlachcic%2FTaran,633,392,699759128,10237,0 +30547,Laguna+Niguel,616,624,848932879,10838,0 +30548,1.012,337,447,3502565,9182,0 +30550,012,522,671,2293376,9993,0 +30551,042,579,400,7271812,10495,0 +30552,Gattacka,618,375,699298370,9466,0 +30553,80.+KaruTown,661,432,849060446,9735,0 +30554,%23199+C,530,671,9037756,10495,0 +30555,Wioska+kr%C3%B3lowej+2,512,667,849096977,3787,0 +30557,047,671,512,699413040,7677,0 +30558,0pe%C5%82nalod%C3%B3wka,470,512,699189792,4477,0 +30559,S1Joker,480,667,698585370,11297,0 +30560,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,666,698807570,9465,0 +30561,Architekci+Plac%C3%B3w+Boju,338,551,8004076,9880,0 +30563,Sk_009,442,660,8954402,6506,0 +30564,Kot+z+g%C5%82ow%C4%85+%C5%9Blimaka,366,387,849096182,2949,3 +30565,.%3A013%3A.,363,606,7417116,12154,0 +30566,019,603,639,849097799,7362,0 +30567,1v9+machine,387,632,699697558,10019,9 +30568,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,669,698807570,5373,0 +30569,-001-+H%C4%99%3F,541,332,698588812,9114,0 +30570,Wioska+barbarzy%C5%84ska,421,652,699736927,5530,0 +30571,Wioska+118,674,523,848971079,9761,3 +30572,0572,567,659,698659980,10083,0 +30573,D%C5%BCokej77,444,660,8954402,7731,0 +30574,O50+Apatin,663,540,699272880,8875,0 +30575,1.07,337,453,3502565,4583,0 +30576,Chekku+-+meito,331,534,9280477,9976,0 +30577,Wioska+klez+011,326,520,698295651,6626,0 +30578,%230184+MiBM,489,329,1238300,6518,0 +30579,0027,415,354,699431255,9957,0 +30580,poludnie1,598,644,699567608,9701,8 +30581,%5BB%5D_%5B006%5D+Dejv.oldplyr,413,351,699380607,10495,0 +30582,NoeyPL+3,334,557,849000135,1773,0 +30583,0539,565,655,698659980,7120,0 +30584,Mniejsze+z%C5%82o+0086,335,539,699794765,4212,0 +30585,Tokio,655,566,849070946,3511,0 +30586,056+komornicy,332,544,699510259,7068,0 +30587,A005+Legionas+Racuchy,667,454,113796,10160,0 +30588,%2A058,604,642,699567608,10001,0 +30589,SOKzGUMIjag%C3%B3d,594,352,849059491,9861,4 +30590,C0135,331,520,8841266,10362,0 +30591,Szcz%C4%99%C5%9Bliwego+Nowego+Roku,626,380,699088769,6111,0 +30592,045,665,548,849095227,9207,0 +30593,%25+6+%25+SOPLICA,586,656,699567608,9628,0 +30594,ADEN,572,348,698588535,10053,0 +30595,0291,565,660,698659980,9498,0 +30596,scofield,524,669,699494488,9886,0 +30598,greeece3,636,397,698290319,10247,0 +30599,R%C4%99cznik+do+zmiany,356,404,699697558,10019,0 +30601,Myk+i+do+kieszonki,364,610,9319058,8615,0 +30602,107,620,373,7085502,7328,0 +30603,%23102+C,530,668,9037756,10190,0 +30604,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,667,698807570,4855,0 +30605,Shinso,342,440,699800377,2362,0 +30606,Taran,672,484,699598425,10728,0 +30607,Lord+Lord+Franek+.%23098,509,326,698420691,9960,0 +30608,D.018,404,647,849088243,4673,0 +30609,Taran+017,608,366,699098531,9961,0 +30610,Monetkownia,620,625,699759128,10104,0 +30611,%2A236%2A,336,444,699273451,10194,0 +30612,061,525,670,2293376,8948,0 +30613,Zr%C4%85b+%236,349,424,393668,3837,0 +30614,%7C018%7C+Aija+Rumeli,496,671,699393742,9879,0 +30615,021+echo,655,430,9238175,10446,5 +30616,psycha+sitting,427,658,699736927,5736,0 +30617,off+100+%25,343,576,849012521,7933,0 +30618,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,385,627,1434753,10068,0 +30619,fff,485,324,698239813,10495,0 +30620,018+Waldemar+Etykietyyyy%21,376,624,6354098,9589,0 +30621,%7CC%7C+Grassfrost.,504,672,698147372,10495,0 +30622,%7CC%7C+Oldfort,501,672,698147372,5207,0 +30623,E001,659,558,8428196,9957,0 +30624,036+...+i+zami%C5%82owanie,661,450,699272633,5591,0 +30625,011,363,604,699083129,9516,0 +30626,Ciapek+97,344,436,1746216,5909,0 +30627,%230181+MiBM,490,330,1238300,6698,0 +30628,Szlachcic%2FTaran,610,371,699759128,10237,0 +30629,03Wioska+barbarzy%C5%84ska,390,635,699704542,9225,0 +30630,0014,435,655,849097175,1924,0 +30631,Architekci+Plac%C3%B3w+Boju,337,565,8004076,9342,0 +30633,Amsterdam,667,499,699737356,8774,0 +30634,88k%24+Grvvyq,655,578,699676005,7300,0 +30635,D%C4%85browa+0010,358,596,849096972,9489,0 +30636,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,664,698807570,6343,0 +30637,Wioska+107,639,603,848971079,9761,0 +30638,Wioska+RATRYK,595,647,699567608,10063,0 +30639,D07,667,550,848995478,8390,0 +30640,Chekku+-+meito,329,527,9280477,9976,0 +30641,Szulernia,400,358,7249451,10080,0 +30642,0253,553,666,698659980,10040,0 +30643,I001,666,449,699722599,10495,9 +30644,034,494,617,699878511,10232,0 +30645,Wioska+057,648,591,848971079,9761,0 +30646,052+%7C+PALESTINA,617,439,9228039,9544,0 +30647,Plotka,330,543,699265922,8545,0 +30648,Lord+Lord+Franek+.%23131,512,326,698420691,7464,0 +30649,Sk_010,440,659,8954402,4194,0 +30650,Ob+Konfederacja,442,337,848915730,5499,0 +30651,008,535,672,2293376,9993,0 +30652,B+005,670,538,8078914,10083,0 +30653,Y+%7C+Forest+Cyaaaanku,326,503,699213622,10000,0 +30654,%2A201%2A,353,409,699273451,10363,0 +30655,0020,412,357,699431255,9947,0 +30656,WARSZAWA,348,423,849097681,4773,0 +30657,Robi+wra%C5%BCenie...,584,654,848995242,10236,0 +30658,North+Barba+056,395,363,699796330,2726,0 +30659,Deveste+ufam+Tobie,393,637,699783765,9841,0 +30660,K34+x015,407,356,698364331,9423,0 +30661,033.+Night+Raid-,476,672,699684062,10909,0 +30662,060+Wioska+006,659,430,9238175,10311,0 +30663,0077,639,600,698416970,9821,0 +30664,Bagdad,490,325,8847546,10068,3 +30665,K34+x029,401,356,698364331,4625,0 +30666,Gattacka,621,375,699298370,9422,0 +30667,Wioska+barbarzy%C5%84ska,450,332,849017820,6188,0 +30668,O36+Irkuck,672,531,699272880,10971,1 +30669,Szlachcic%2FTaran,631,394,699759128,10237,0 +30670,Architekci+Plac%C3%B3w+Boju,337,538,8004076,9523,0 +30671,T.M,651,406,1086351,7230,0 +30672,.%3A007%3A.,373,612,7417116,11824,0 +30673,%2A127%2A,363,391,699273451,10104,0 +30674,Wioska,329,457,848946608,6267,0 +30675,Wioska+barbarzy%C5%84ska,668,478,699598425,10728,0 +30676,%2A218%2A,379,380,699273451,6441,0 +30677,Wioska,500,324,951823,8723,0 +30678,Wioska+barbarzy%C5%84ska,345,584,849046232,6083,0 +30679,Monrera,342,438,849097716,5616,0 +30681,Wioska+barbarzy%C5%84ska,343,430,0,2056,0 +30683,%C5%BBUBRAWKA+A003+NeXi,607,610,33900,9613,0 +30684,Wioska+barbarzy%C5%84ska,672,473,699574408,8029,0 +30685,Mars,552,338,699797805,3775,0 +30686,018+Schwere+Panzer-Abteilung+501,601,361,849091899,7371,0 +30687,deff+100+%25,347,574,849012521,5226,0 +30688,Wioska+barbarzy%C5%84ska,556,663,7756002,10057,0 +30689,0032+MzM,630,610,698416970,9258,6 +30690,Architekci+Plac%C3%B3w+Boju,335,552,8004076,8533,0 +30691,Zeta+Reticuli+W,359,404,699323302,6069,0 +30692,%5B019%5D+Skoda+Ka%C5%82szkaj,664,438,849095068,9312,0 +30693,%230196+Segadorr+dar,460,329,1238300,10178,0 +30694,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,667,698807570,7652,0 +30695,Wioska+barbarzy%C5%84ska,558,338,699072129,10218,0 +30696,SPOCENI+KUZYNI,415,650,848913998,10311,4 +30697,Deveste+ufam+Tobie,396,638,699783765,10143,0 +30698,I040,665,455,699722599,9976,0 +30699,Wioska+Szwonik,586,649,848995242,1716,0 +30700,Architekci+Plac%C3%B3w+Boju,333,554,8004076,9132,0 +30701,061...SKRZYP+PO%C5%81UDNIE,439,343,6920960,10495,2 +30702,%230019,545,627,1536231,10495,0 +30703,0249,551,666,698659980,8250,0 +30704,Stanly,606,638,699567608,9959,0 +30705,Cais+do+Sodre,351,588,699494480,9223,0 +30706,%5B08%5D,428,660,699698079,6093,0 +30707,0032,604,629,699432672,10495,0 +30708,045+%7C+PALESTINA,656,419,9228039,9544,0 +30710,012+Jaaaadu+Jaduuuu,377,626,6354098,10144,0 +30711,%25+8+%25,590,650,699567608,9032,0 +30712,43k%24+Grvvyq,650,578,699676005,9736,0 +30713,POMIDOR,663,472,699598425,10728,0 +30714,Szulernia,381,372,7249451,5123,0 +30715,Piwna+22,649,416,699812007,5403,0 +30716,wie%C5%9B3,591,352,7340529,8417,0 +30717,Muchomor+%2A015%2A,515,673,606407,10306,0 +30718,Wioska+r+12,553,668,848915531,6909,0 +30719,Pobozowisko,377,614,699513260,10136,0 +30721,022,605,635,849097799,7901,0 +30722,34.+KaruTown,642,410,6822957,6989,0 +30723,%25+7+%25,579,656,699567608,9105,0 +30724,005.+Barry,480,669,848999671,9530,0 +30725,%7CC%7C+Knightwater,502,671,698147372,10495,0 +30726,J005.,365,602,849090130,10252,0 +30727,Szulernia,387,368,7249451,9280,0 +30728,051+Wioska,660,429,9238175,10042,0 +30729,028+%2A+Lady+Porto+%2A,643,398,699406750,5830,0 +30730,Wioska+barbarzy%C5%84ska,505,673,699781762,9937,0 +30731,D01,666,555,848995478,9871,0 +30732,Z%7C012%7C+Mordor,469,671,699393742,10160,4 +30733,Szlachcic%2FTaran,615,369,699759128,10237,0 +30734,1.06,337,448,3502565,6588,0 +30735,16k%24+Grvvyq,654,579,699676005,10495,5 +30737,Qmple,566,566,699785935,10311,0 +30738,Bagdad,488,333,8847546,10068,2 +30739,%2A053,571,658,699567608,9770,0 +30740,Architekci+Plac%C3%B3w+Boju,335,559,8004076,5728,0 +30741,Pretoria+2,555,333,699072129,10228,0 +30742,04.+Stadion+Miejski,495,669,849092769,7785,0 +30744,Sekou,672,508,699737356,10224,0 +30745,028+%C5%BBelazko,674,499,2135129,9553,3 +30746,Szulernia,391,368,7249451,9054,0 +30747,Chekku+-+meito,330,518,9280477,9976,0 +30748,006+nazwa,362,602,8607734,10019,2 +30749,203,583,377,849064752,10362,0 +30750,Wioska+VEGE+3,659,563,87575,4680,0 +30752,2%3A0,420,651,699736927,5246,0 +30754,cz+Wioska+77,369,384,3909522,5392,0 +30755,%230057+barbarzy%C5%84ska,468,332,1238300,10178,0 +30756,0655,531,665,698659980,10160,0 +30757,M181_008,338,435,393668,9908,0 +30758,_PUSTA,649,590,698768565,7732,0 +30760,Wioska+05,499,325,951823,5340,0 +30761,%2A030,604,641,699567608,9711,0 +30762,003,673,496,699737356,6889,0 +30763,012+-+Mroczna+Osada,653,424,849035905,10705,0 +30764,Psycha+Siada,453,666,698807570,10019,0 +30765,Chekku+-+meito,333,524,9280477,9976,0 +30766,Architekci+Plac%C3%B3w+Boju,336,544,8004076,9139,0 +30767,Wioska+barbarzy%C5%84ska,376,378,699711706,3565,0 +30768,M181_009,338,436,393668,9912,9 +30769,.%3A016%3A.+kr,632,387,849098782,10535,0 +30770,zzzGranica+Bledu+12,635,609,699778867,7772,0 +30771,%2A125%2A,361,392,699273451,10211,0 +30772,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,667,698807570,7018,0 +30773,Bagienko.Anker...,375,387,699713515,5991,0 +30774,KR%C3%93L+PAPI+WIELKI,637,606,698191218,10000,0 +30775,Pobozowisko,373,616,699513260,12154,0 +30776,005+-+Mroczna+Osada,644,410,849035905,11550,0 +30778,Szulernia,388,367,7249451,11137,0 +30779,043,527,671,2293376,9993,0 +30781,Gattacka,622,373,699298370,10470,0 +30782,Zeta+Reticuli+W,357,399,699323302,4157,0 +30784,SPOCENI+KUZYNI,415,651,848913998,6643,0 +30785,003,532,673,2293376,9993,0 +30786,Lord+Lord+Franek+.%23085,518,325,698420691,12154,0 +30787,-0005-,542,334,2972329,8638,0 +30788,Wioska+barbarzy%C5%84ska,504,676,699781762,9947,0 +30789,47k%24+Grvvyq,656,578,699676005,9966,0 +30790,Vengard,344,437,849097716,10958,0 +30791,Kentin+ufam+Tobie,329,462,699783765,10000,0 +30792,I044,667,461,699722599,10297,0 +30793,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,668,698807570,7763,0 +30794,C0277,327,506,8841266,9900,9 +30795,018,564,638,699828685,9976,0 +30796,Ob+Konfederacja,439,336,848915730,8630,0 +30797,Wioska+barbarzy%C5%84ska,348,426,393668,7459,0 +30798,Architekci+Plac%C3%B3w+Boju,336,562,8004076,9880,0 +30799,Wioska+barbarzy%C5%84ska,502,676,699781762,10315,0 +30801,Leszcz,333,549,699265922,10495,0 +30802,0004.+HMS+Charles+%281668%29,483,674,699121671,9676,0 +30803,Barcelona,672,497,699737356,7897,0 +30804,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,665,698807570,10252,1 +30805,Ave+Why%21,483,670,699121671,7043,0 +30806,Wioska+barbarzy%C5%84ska,671,479,699598425,10728,0 +30807,007+Wioska+barbarzy%C5%84ska,383,626,6354098,10063,0 +30808,Wioska+barbarzy%C5%84ska,451,334,699393759,9264,0 +30809,R+017+%7EBia%C5%82a+Gra%C5%84%7E,483,677,699195358,10019,0 +30810,Wioska+barbarzy%C5%84ska,329,494,699823490,3906,0 +30811,006,669,493,7085502,9721,3 +30812,M181_001,342,432,393668,9902,0 +30813,%2A%2A21%2A%2A,633,393,849098782,10437,0 +30814,107...tomcz,476,331,6920960,10239,0 +30815,085...TOM+D----------,476,338,6920960,10590,0 +30816,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F2,623,617,33900,10251,0 +30817,B+001,668,533,8078914,9942,4 +30818,%23053.,663,434,556154,7242,0 +30819,Dejmon7,372,622,699805839,5224,0 +30820,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,372,615,849097937,9885,0 +30821,002+Wioska+barbarzy%C5%84ska,382,627,6354098,9806,0 +30822,0100,413,347,699431255,4588,0 +30823,Myk+i+do+kieszonki,369,608,9319058,10499,0 +30824,KR%C3%93L+PAPI+WIELKI,635,607,698191218,10000,0 +30825,%7C011%7C+Agios+Nikolaos,499,676,699393742,9975,0 +30826,%5BB%5D_%5B037%5D+Dejv.oldplyr,420,343,699380607,6392,0 +30827,Wioska+barbarzy%C5%84ska,399,364,8419570,8590,0 +30828,009+Barbara,673,497,2135129,9500,0 +30829,Wioska+barbarzy%C5%84ska,555,662,7756002,9918,0 +30830,105.+Wyspy+Okr%C4%85g%C5%82e,642,593,8337151,7040,0 +30831,kto+ananasowy+pod+wod%C4%85+ma+dom,671,535,699628084,9861,0 +30832,Jaaa,569,561,698635863,10495,0 +30833,Wioska+III,584,347,698200480,5556,0 +30834,005,667,548,6929240,1678,0 +30835,Piek%C5%82o+to+inni,599,359,848956765,10235,0 +30836,Wioska+barbarzy%C5%84ska+025,504,329,6343784,8674,0 +30837,wioska,607,366,848915730,1488,0 +30838,Darma+dla+zawodnika,527,672,699494488,10311,0 +30839,29.+Pod+chat%C4%85,356,590,8665783,7921,0 +30840,%7C043%7C+Saranda,494,673,698152377,9738,0 +30841,Wioska+barbarzy%C5%84ska,507,673,699781762,9561,0 +30842,D+021,671,509,8078914,10083,0 +30843,Ave+Why%21,494,669,698585370,6036,0 +30844,Muchomor+%2A021%2A,523,674,606407,10291,0 +30845,%7C031%7C+Kiotari,497,670,699393742,10107,0 +30846,WB+06,638,607,2269943,8455,0 +30847,DMN+004,649,421,698998882,5762,0 +30848,V001,350,421,849097737,10218,0 +30849,Jehu_Kingdom_48,655,433,8785314,6256,0 +30850,013,602,637,849097799,7824,5 +30851,Springfield%2C+Massachusetts,600,357,849061374,10214,0 +30853,Mniejsze+z%C5%82o+0069,331,538,699794765,7178,0 +30854,123...tomcz,477,332,6920960,10495,0 +30855,J002.,364,601,849090130,8991,0 +30856,%230170+Kamil0ss1,489,325,1238300,10178,0 +30857,A0266,327,487,8841266,10362,0 +30858,Weso%C5%82ych+%C5%9Awi%C4%85t,592,355,848915730,6644,0 +30859,Taran,673,485,699598425,10728,0 +30860,Sierra,675,498,699737356,9469,0 +30861,Wioska+Bochun10,335,459,7449254,4279,0 +30862,kto+ananasowy+pod+wod%C4%85+ma+dom,670,535,699628084,9627,0 +30863,SOKzGUMIjag%C3%B3d,596,358,849059491,4989,0 +30864,Bagdad,484,328,8847546,10068,0 +30865,Zeta+Reticuli+W,362,395,699323302,8639,0 +30866,0439,539,672,698659980,10362,0 +30867,A031+Wioska+2,659,445,113796,10141,0 +30868,.051.,501,381,698489071,10316,0 +30869,%7C038%7C+Alimia,492,674,698152377,9738,0 +30870,Chekku+-+meito,326,527,9280477,9976,0 +30871,010+Welen.V2,464,668,699834004,9426,0 +30872,034,632,552,849095227,9761,0 +30873,%230183+MiBM,488,326,1238300,6492,0 +30874,056+Goku,641,596,699272880,9490,0 +30875,-0012-,545,332,2972329,3971,0 +30876,%246.000+Grvvyq,656,577,699676005,10495,0 +30877,Po+%C5%9Bwi%C4%99tach,606,365,848915730,10400,0 +30878,025.+Night+Raid-,472,672,699684062,9911,6 +30879,Westfold.002,346,415,848918380,10178,0 +30880,Szulernia,386,368,7249451,9691,0 +30881,Echo,676,505,699737356,9614,2 +30882,Wioska+barbarzy%C5%84ska,513,332,698739350,5017,0 +30883,Szlachcic,389,365,698160606,9863,0 +30884,023+To+Ty+nic+nie+umiesz%3F,383,630,6354098,10143,0 +30885,Wioska+070,646,592,848971079,9761,0 +30886,deff+100+%25,343,577,849012521,10243,1 +30887,Chekku+-+meito,343,528,9280477,9976,0 +30888,Wioska+barbarzy%C5%84ska,519,325,698350371,8106,0 +30889,011,606,641,849097799,8286,0 +30890,041,448,336,2502956,10019,0 +30891,027,609,634,849097799,7419,0 +30892,E003,658,558,8428196,9753,0 +30893,Wioska+Bochun10,326,472,7449254,10311,0 +30894,Bukowy+Las,652,586,849039310,7123,0 +30895,010,608,643,849097799,8213,0 +30896,Wioska+barbarzy%C5%84ska,451,332,699191455,4701,0 +30897,Wioska+barbarzy%C5%84ska,508,328,698680806,3567,0 +30898,Bagienko.Anker...,372,387,699713515,8550,0 +30899,Klan+M%C5%82ota,343,437,849097716,7140,0 +30900,118...tomcz,479,332,6920960,10478,0 +30901,D16,666,543,848995478,4345,0 +30903,Wioska,333,457,848946608,2586,0 +30904,006+Schwere+Panzer-Abteilung+507,605,363,849091899,9440,0 +30905,Ave+Why%21,484,670,699121671,9809,0 +30906,Myk+i+do+kieszonki,342,568,7333216,9711,0 +30907,Wioska+barbarzy%C5%84ska,427,625,6910361,1729,0 +30908,%5BB%5D_%5B010%5D+Dejv.oldplyr,421,346,699380607,10495,0 +30909,1v9+machine,389,636,699697558,10019,0 +30910,Ulu-mulu,433,615,699697558,9217,0 +30911,Wioska+barbarzy%C5%84ska,674,482,699598425,10728,0 +30912,BEZDZIETNY+KAWALER,418,625,848913998,5922,0 +30913,03Wioska+barbarzy%C5%84ska,390,632,699704542,8653,0 +30914,0183,549,655,698659980,10252,0 +30915,O58+Halland,668,547,699272880,8776,0 +30916,R%C4%99cznik+do+zmiany,356,405,699697558,10019,0 +30917,104...tommcz,476,330,6920960,10336,0 +30918,%230103+tomek791103,479,328,1238300,10178,2 +30919,FLAGI,324,482,699780873,6192,0 +30920,0100,548,667,698659980,10160,0 +30921,Coimbra,354,592,699494480,6872,0 +30922,J%23025,576,343,2065730,10223,0 +30923,%5B039%5D,650,590,698305474,9111,0 +30925,Centrum+6,649,411,1086351,3876,0 +30926,Deveste+ufam+Tobie,404,643,699783765,10000,4 +30927,%2A054,583,654,699567608,9369,0 +30928,Wioska+001,674,528,2999957,9432,0 +30929,69k%24+Grvvyq,640,570,699676005,10495,0 +30930,A0267,330,477,8841266,10362,0 +30931,Taran,678,493,699598425,10728,0 +30932,Braga,342,436,849097716,6942,0 +30933,002.,578,658,1270916,9045,0 +30934,darkmike01,516,668,8954402,5772,0 +30935,027.Barbara11,331,501,1830149,4459,0 +30936,%2A5614%2A+Nowy+Targ,660,566,7973893,10287,0 +30937,Y+%7C+Forest+Cyaaaanku,325,507,699213622,6255,0 +30938,emoriar,666,442,699574408,6745,0 +30939,08+Rivendell,434,664,699736927,8484,0 +30940,%5BB%5D_%5B015%5D+Dejv.oldplyr,428,348,699380607,10495,0 +30941,Wioska+Bochun10,327,471,7449254,10311,0 +30942,Jednak+wol%C4%99+gofry,420,653,699736927,9485,0 +30943,Wioska+barbarzy%C5%84ska,448,339,699308637,6655,0 +30944,%23067%23,624,624,692803,9761,0 +30945,SPOCENI+KUZYNI,410,648,848913998,5021,0 +30946,Wioska+barbarzy%C5%84ska,575,657,6818593,9835,0 +30947,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,377,620,1434753,10068,2 +30948,Architekci+Plac%C3%B3w+Boju,337,556,8004076,4710,0 +30949,AAA,535,328,1006847,7071,0 +30950,Wioska+barbarzy%C5%84ska,662,445,113796,2914,0 +30951,%7C062%7C+Osiedle+Zielone,513,682,699393742,9112,0 +30952,661%7C559+Wioska+barbarzy%C5%84ska,661,559,6822957,7545,0 +30953,095.+Kanaza,618,480,8337151,12154,0 +30954,129...OPELU,442,333,6920960,9693,0 +30955,Gattacka,620,381,699298370,9372,0 +30956,A+011,369,615,699342219,5765,0 +30957,Grupka+7+wiosek+3,355,598,698353083,8048,0 +30958,Szlachcic%2FTaran,640,398,699759128,9935,0 +30959,Wioska+barbarzy%C5%84ska,449,331,699191455,9070,0 +30960,009+-+Mroczna+Osada,646,407,849035905,11130,0 +30961,Wioska+Westor,358,395,699530673,6049,0 +30962,Wioska+barbarzy%C5%84ska,514,328,698350371,4571,0 +30963,Szlachcic,593,500,699759128,9934,0 +30964,Architekci+Plac%C3%B3w+Boju,336,557,8004076,5103,0 +30965,039,671,515,699413040,10442,0 +30966,I049,657,436,699722599,9998,0 +30967,B03,490,676,698652014,9835,0 +30968,O01+Dunharrow,667,520,699272880,10671,0 +30969,Wioska+barbarzy%C5%84ska,506,676,699781762,9927,0 +30971,Wioska+klez+001,329,512,698295651,9701,0 +30973,027%7C%7C+Lynx,498,672,849035525,10019,0 +30974,Minas,675,494,699737356,8715,0 +30975,074,662,562,849095227,8272,0 +30977,I007,665,447,699722599,10040,0 +30978,Wioska+Bochun10,331,490,7449254,7359,0 +30979,0295,569,657,698659980,8956,0 +30980,038,669,514,699413040,9860,0 +30981,%7C007%7C+Balos,482,670,699393742,10063,0 +30982,D04+orze%C5%82+nie+wyl%C4%85duje+tu.,459,667,849037407,7878,0 +30983,25k%24+Grvvyq,663,566,699676005,10495,0 +30984,A10,468,670,698652014,5275,0 +30985,049,676,515,699413040,9948,0 +30986,Wioska+051,644,596,848971079,9761,0 +30987,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F3,625,616,33900,10311,0 +30988,Myk+i+do+kieszonki,343,567,9319058,9799,0 +30989,Deveste+ufam+Tobie,395,638,699783765,7287,0 +30990,Deveste+ufam+Tobie,399,644,699783765,10000,9 +30991,%21%2135+59+xyx,598,354,698361257,10093,0 +30992,%23Yamiiiii,434,660,699849210,4339,0 +30993,Wioska+barbarzy%C5%84ska,503,675,699781762,9845,0 +30994,Centrum+5,649,408,1086351,5321,0 +30995,060...Skrzyp+Centr,445,339,6920960,10728,0 +30996,08.+Vengerberg,330,456,848910122,955,0 +30997,%2A251%2A,336,446,699273451,5752,0 +30998,%5B023%5D+Wioska+barbarzy%C5%84ska,660,439,849095068,9312,0 +30999,Napewno+to+nie+jest+off,485,397,848912265,10495,0 +31000,Pobozowisko,373,619,699513260,11278,0 +31002,Muchomor+%2A016%2A,517,671,606407,10292,0 +31003,Szulernia,381,371,7249451,10048,0 +31004,Surprise%2C+Arizona,600,360,1990750,9581,0 +31005,I034,665,458,699722599,10241,0 +31006,003+Cha%C5%82upa+na+wzg%C3%B3rzu,372,618,8268010,9835,0 +31007,0179,548,658,698659980,10019,0 +31008,Wioska+barbarzy%C5%84ska,676,492,699598425,10728,0 +31009,D+022,669,513,8078914,10083,8 +31010,1.03,336,449,3502565,7199,0 +31011,Kentin+ufam+Tobie,328,460,699783765,10067,0 +31012,Wrath+004,573,343,699756210,10273,2 +31013,A32,479,671,698652014,7148,0 +31014,Nowy+%C5%9Bwiat,333,555,849084005,10178,0 +31015,Wioska+barbarzy%C5%84ska,449,334,849017820,9072,0 +31016,333,634,393,849092309,5621,0 +31017,Plutosea+Barbarzy%C5%84ska,330,545,699402816,9835,0 +31018,Deveste+ufam+Tobie,392,638,699783765,10000,5 +31019,Wioska+K+A+J+T+E+K,625,604,699778867,12154,0 +31020,Y+%7C+Forest+Cyaaaanku,329,501,699213622,10000,0 +31021,Wioska+094,642,601,848971079,9761,0 +31022,C.04,675,524,699737356,8738,0 +31023,R%C4%99cznik+do+zmiany,352,406,699697558,10019,2 +31024,444,634,394,849092309,5023,0 +31025,Wonderwall,331,547,698962117,9500,0 +31026,Szulernia,379,382,7249451,3024,7 +31027,0263,544,669,698659980,10160,0 +31028,%5B040%5D,648,588,698305474,7622,0 +31029,Tu+te%C5%BC+przytulnie,443,659,8954402,10160,0 +31030,Wioska+barbarzy%C5%84ska+027,514,330,6343784,8510,0 +31031,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,659,699828442,9805,0 +31032,Bagdad,486,330,8847546,10068,0 +31033,%7C026%7C+Kolymbia,504,674,699781762,8807,0 +31034,Zeta+Reticuli+W,359,405,699323302,5627,0 +31035,20k%24+Grvvyq,657,572,699676005,10495,0 +31036,%5BB%5D_%5B041%5D+Dejv.oldplyr,425,346,699380607,10495,0 +31037,Chekku+-+meito,330,531,9280477,9976,0 +31038,%7C014%7C+Knossos,493,674,698152377,10612,1 +31039,Wioska+P1ter+1,598,647,699567608,9937,0 +31040,Wioska+klez+013,326,510,698295651,6717,0 +31041,K34+x027,403,353,698364331,5550,0 +31042,Wioska+ba,498,323,6118079,7250,0 +31043,Awaryjne+%C5%9Bwiat%C5%82a%21,498,504,699785935,9638,0 +31044,0573,564,661,698659980,8644,0 +31045,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,631,1434753,8781,0 +31047,%23%23+Nieznana+%23%23,635,605,699778867,9106,0 +31048,020.,486,658,849034882,10838,0 +31049,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,661,698807570,8956,0 +31050,Za+darmo,361,597,8607734,2193,0 +31051,%7C041%7C+Tirana,496,675,699393742,9738,0 +31052,Szlachcic%2FTaran,612,369,699759128,8947,0 +31053,%7C002%7C+Heraklion,495,671,699393742,10160,0 +31054,.%3A007%3A.+gr,635,386,849078297,6806,0 +31055,022+Wioska,659,429,699671454,5222,0 +31056,__28__+Setarrif,376,620,6354098,4120,0 +31057,B+033,667,529,8078914,9197,0 +31058,Wyspa+007,624,383,699756210,9783,0 +31059,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,672,698807570,7614,0 +31060,Wioska+03,503,327,951823,8186,0 +31061,Piek%C5%82o+to+inni,601,359,848956765,10160,0 +31062,Mallutka,634,603,2269943,4087,0 +31063,046,518,672,2293376,7814,0 +31064,-+DragonD,548,334,699825236,8492,0 +31065,Zeta+Reticuli+W,356,403,699323302,3840,0 +31066,Szlachcic%2FTaran,642,398,699759128,10237,0 +31067,Grvvyq+114k%24,630,613,699676005,7688,0 +31068,Zeta+Reticuli+W,366,390,699323302,5182,0 +31069,Wiocha+11,378,382,849096544,4584,0 +31070,%7E%7E086%7E%7E,634,613,7829201,9756,0 +31071,AAA,674,479,699574408,9787,0 +31072,Wioska+barbarzy%C5%84ska,326,514,61791,3665,0 +31073,0440,537,672,698659980,10083,0 +31074,Nowy+%C5%9Bwiat+7,342,562,849084005,5218,0 +31075,020+Jo+ni+ma+Fasola,381,624,6354098,10143,0 +31076,Gattacka,619,373,699298370,9711,0 +31077,0304,574,661,698659980,9531,0 +31078,Wioska+IV,577,346,698200480,7749,0 +31079,crackhouse,582,652,848995242,3255,0 +31080,%230110+tomek791103,482,331,1238300,10178,3 +31081,01.+kololand,374,596,8665783,11271,0 +31082,D12,665,551,848995478,2991,0 +31083,Szlachcic%2FTaran,616,377,699759128,10237,0 +31084,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,653,699828442,9761,0 +31085,070,663,552,849095227,9755,0 +31086,03Wioska+barbarzy%C5%84ska,388,630,699704542,9742,0 +31088,0073,554,664,698659980,10083,0 +31090,-010-,334,452,8184383,7303,0 +31091,Piek%C5%82o+to+inni,584,346,848956765,4950,0 +31093,Wioska+Bochun10,332,469,7449254,7832,0 +31094,ADEN,575,349,698588535,10268,0 +31095,A001+Mpiechu+2,670,451,113796,9804,0 +31096,Wioska+barbarzy%C5%84ska,381,370,698160606,7432,0 +31097,Jednak+wol%C4%99+gofry,420,655,699736927,7127,0 +31098,Wioska+barbarzy%C5%84ska,674,481,699598425,10728,0 +31099,yyyy,500,369,699883079,10132,0 +31100,052,339,570,6853693,10490,0 +31101,Asaret,650,593,699611673,12021,0 +31102,Cleveland,601,354,1990750,10068,0 +31103,E012,661,560,8428196,4111,0 +31104,002,662,549,6929240,4276,0 +31105,184..,350,592,849090130,6298,6 +31106,Lord+Lord+Franek+.%23096,511,324,698420691,10252,0 +31107,ASD,680,490,699598425,10728,0 +31108,Wioska+barbarzy%C5%84ska,342,428,393668,8159,0 +31109,Didi,654,584,849070946,10971,0 +31110,Wioska+barbarzy%C5%84ska,672,480,699598425,10728,0 +31111,168...LordRDW,443,336,6920960,6611,0 +31113,0292,570,654,698659980,9625,0 +31114,Wioska+barbarzy%C5%84ska,453,334,699191455,5488,0 +31115,Wioska+barbarzy%C5%84ska,522,326,698350371,9232,0 +31116,Szlachcic,394,358,3484132,10495,0 +31117,Amur,329,545,699265922,7261,0 +31118,Chekku+-+meito,327,523,9280477,9976,0 +31120,58.+KaruTown,662,431,9238175,9711,0 +31121,%2A5612%2Ae+Nasza+szansa,657,580,7973893,10287,3 +31122,-013-,339,559,8004076,9814,0 +31123,%2A%2A15%2A%2A,634,387,849098782,9013,0 +31124,Wioska+Bochun10,329,516,7449254,10311,0 +31125,014+Z%C5%82oty+dziewi%C4%99%C4%87dziesi%C4%85t+pi%C4%99%C4%87,386,629,6354098,10144,0 +31126,Pobozowisko,375,620,699513260,10971,0 +31127,Wioska+102,649,586,848971079,8231,0 +31128,Erebor+5,498,590,699383121,8874,0 +31129,Po+%C5%9Bwi%C4%99tach,607,365,848915730,10066,0 +31130,Wioska+barbarzy%C5%84ska,507,676,699781762,9379,0 +31131,Jaaa,670,494,698635863,9460,0 +31132,52.+KaruTown,642,402,849091866,5987,0 +31133,Krosno+8,534,333,7485877,2819,0 +31134,-+DragonA,547,329,699825236,9145,0 +31135,Weso%C5%82ych+%C5%9Awi%C4%85t,563,335,848915730,4947,0 +31136,%23Bakasta,436,661,699849210,8494,0 +31137,027+Pont+Vanis,467,671,699834004,6433,0 +31139,02+Zamek,539,674,849097981,8454,0 +31140,136...barb,444,336,6920960,6565,0 +31141,SPOCENI+KUZYNI,417,647,848913998,9302,5 +31142,Wioska+barbarzy%C5%84ska,452,330,699393759,8275,0 +31143,Myk+i+do+kieszonki,347,572,849012521,5949,0 +31144,0165,544,665,698659980,10019,0 +31145,Bocianikson019,660,568,7528491,5022,0 +31146,Sony+911,616,632,1415009,9886,0 +31147,%21+Stark+Tower,627,385,699723284,10452,0 +31148,WB+04,637,608,2269943,8307,0 +31149,M181_030,340,432,393668,9649,0 +31150,009,362,604,699083129,9284,0 +31151,Wyspa+014,624,379,699756210,9489,0 +31152,%23Sk_015,437,664,699849210,3140,0 +31153,.achim.,485,325,6936607,10311,0 +31154,%2A4601%2A+Ostra+gra,675,484,7973893,10287,0 +31155,Orze%C5%82+Wyl%C4%85dowa%C5%82,458,664,698807570,6766,0 +31156,Wioska+barbarzy%C5%84ska,556,336,699072129,10223,0 +31157,KR%C3%93L+PAPI+WIELKI,639,604,698191218,10000,5 +31158,Wioska+047,646,597,848971079,9761,0 +31159,C0273,325,513,8841266,9250,0 +31160,Wioska+barbarzy%C5%84ska,544,337,699066118,7523,0 +31161,41k%24+Grvvyq,652,578,699676005,9422,0 +31162,-+DragonF,548,332,699825236,7321,0 +31163,Deveste+ufam+Tobie,393,638,699783765,10000,0 +31164,Merkury,547,337,699797805,4241,0 +31165,017+Bremervoord,468,669,699834004,8524,0 +31166,Jednak+wol%C4%99+gofry,418,656,699736927,10030,0 +31167,Wioska+barbarzy%C5%84ska,582,656,6818593,9835,0 +31168,Gattacka,617,374,699298370,9860,0 +31169,Architekci+Plac%C3%B3w+Boju,336,554,8004076,9370,0 +31170,49k%24+Grvvyq,655,577,699676005,7238,0 +31171,Wioska+121,672,524,848971079,9039,0 +31172,%7CC%7C+Southgulf,508,669,698147372,10636,5 +31173,Wioska+Bochun10,332,461,7449254,4317,0 +31174,deff+100+%25,346,569,849012521,8747,0 +31175,Wioska+barbarzy%C5%84ska,448,333,699393759,8429,0 +31176,Wioska+Bochun10,330,517,7449254,10311,0 +31177,%2A174%2A,347,414,699273451,10211,0 +31178,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F6,626,619,33900,10065,0 +31179,Wrath+008,574,344,699756210,9771,0 +31180,028,477,670,698650301,9842,0 +31181,Westfold.015,346,419,848918380,7192,0 +31182,Wallie,647,413,1086351,4020,0 +31183,%C5%BBUBR+.%3A%3A.Adaczu%2F01,608,631,33900,7039,0 +31184,Taran,675,499,699598425,10728,9 +31185,Szlachcic%2FTaran,610,369,699759128,7094,0 +31186,%2A128%2A,365,391,699273451,10211,0 +31187,O35+Akita,671,519,699272880,8044,0 +31188,Gra+o+Tron,612,631,8815749,10019,0 +31189,_PUSTA%2B,669,552,699628084,10160,0 +31190,Ow+Konfederacja,601,395,848915730,9787,0 +31191,R%C4%99cznik+do+zmiany,354,406,699697558,10019,8 +31192,A001+mpiechu,669,450,113796,10208,0 +31193,A0268,328,487,8841266,10362,0 +31194,Wioska+barbarzy%C5%84ska,400,357,8419570,8723,0 +31195,Chekku+-+meito,325,526,9280477,9976,0 +31196,Bagdad,487,328,8847546,10068,0 +31197,%2A022,602,643,699567608,9700,0 +31200,zzzRezygnacja+03,630,608,699778867,9141,0 +31201,139...barba,443,341,6920960,5984,0 +31202,%2A056%2A,360,392,699273451,10211,0 +31203,%230092+barbarzy%C5%84ska,467,329,1238300,9557,0 +31204,Kiedy%C5%9B+Wielki+Wojownik,590,349,8632462,6477,0 +31205,%23114%23,639,597,692803,8354,0 +31207,%5BB%5D_%5B019%5D+Dejv.oldplyr,422,341,699380607,10636,0 +31208,Taran,340,577,6180190,9957,0 +31209,%230053+geryk,469,326,1238300,10178,0 +31210,Jaaa,676,488,698635863,10484,0 +31211,0148,635,611,698416970,6074,0 +31213,sony911,619,630,1415009,9967,0 +31214,%230069+tomek791103,479,331,1238300,10178,0 +31215,A014+Barba,663,445,113796,10379,0 +31216,Kentin+ufam+Tobie,334,458,699783765,11074,0 +31217,Psycha+Siada,449,668,698807570,7470,0 +31218,Wioska+barbarzy%C5%84ska,351,594,849014147,2330,0 +31219,Chekku+-+meito,330,540,9280477,9976,0 +31220,J%23018,574,339,2065730,9797,0 +31221,-+DragonE,548,333,699825236,7760,0 +31222,C0068,324,517,8841266,10362,0 +31223,Kiedy%C5%9B+Wielki+Wojownik,564,338,848915730,9976,0 +31224,%2A249%2A,337,442,699273451,10209,0 +31225,Taran,672,483,699598425,10728,0 +31226,Happy+station,643,401,1086351,3636,0 +31227,deff+100+%25,344,570,849012521,8864,0 +31228,%7E046.,473,596,7139820,10495,0 +31229,Sony+911,619,628,1415009,9754,0 +31230,Szlachcic,395,486,6258092,10160,0 +31231,%230107+tomek791103,481,331,1238300,10178,0 +31232,J%23022,573,340,2065730,9692,0 +31233,%2A%2A11%2A%2A,633,388,849098782,9925,0 +31234,Szlachcic,397,359,3484132,10241,0 +31235,Inny+plan,629,378,7555180,10160,0 +31236,Wioska+barbarzy%C5%84ska,608,561,7047342,10474,0 +31237,ABC,652,419,1086351,8989,0 +31238,Taran,677,492,699598425,10728,0 +31239,SOKzGUMIjag%C3%B3d,595,350,849059491,4927,0 +31240,%2A016,595,642,699567608,9016,0 +31241,Ob+Konfederacja,435,340,848915730,5669,0 +31242,078.+Ambracia,653,412,849091866,9539,0 +31243,%2A001,598,643,699567608,9016,2 +31244,0230,555,663,698659980,10083,0 +31245,%5B192%5D,539,513,8000875,9761,0 +31246,156+Nocny+Jastrz%C4%85b+001,645,400,699491076,9070,0 +31247,D05+Macko+wi%C4%99cej+deffa.,459,668,849037407,7084,0 +31248,Klen,330,542,699265922,9398,0 +31250,PUSTO,637,604,698191218,4404,0 +31251,Qadros,675,475,699574408,10151,0 +31252,008+Wioska+barbarzy%C5%84ska,383,627,6354098,8859,0 +31253,North+Barba+046,423,349,699796330,9396,0 +31254,%2A%2A43%2A%2A,665,442,849098782,8956,0 +31255,1v9+machine,389,635,699697558,10019,0 +31256,C0164,328,539,8841266,10362,0 +31257,Bagienko.Anker...,372,386,699713515,4010,0 +31258,Bagdad,483,326,8847546,10068,0 +31259,sony911,589,650,1415009,10203,0 +31260,I050,668,452,699722599,9738,0 +31261,Be+patient,509,676,849004274,9835,0 +31262,0072,409,350,699431255,6569,0 +31263,B.021,677,502,9188016,10000,0 +31264,Osada+koczownik%C3%B3w,549,662,848915531,10495,8 +31265,%2A214%2A,350,415,699273451,5207,0 +31266,Kentin+ufam+Tobie,328,459,699783765,10000,3 +31267,073,661,565,849095227,9860,0 +31268,Taran,673,490,699598425,10728,0 +31269,56k%24+Grvvyq,653,575,699676005,8513,0 +31270,Wioska+barbarzy%C5%84ska,544,335,699066118,7171,0 +31271,Weso%C5%82ych+%C5%9Awi%C4%85t,578,350,848915730,9924,3 +31272,%5B171%5D,649,581,8000875,8117,0 +31273,%2A126%2A,363,389,699273451,10211,0 +31274,003+%C5%81uk+Kurski,608,361,849091899,11281,0 +31275,Lord+Lord+Franek+.%23171,507,327,698420691,10144,0 +31276,064,677,501,699413040,6767,0 +31277,Szlachcic,396,360,3484132,7595,0 +31278,Dark+hill,647,409,1086351,3648,0 +31279,Wioska+bada,494,329,6118079,6085,0 +31280,Pobozowisko,364,609,699513260,9543,0 +31281,%2A248%2A,335,440,699273451,6465,0 +31282,R%C4%99cznik+do+zmiany,355,404,699697558,10019,0 +31283,Wioska+barbarzy%C5%84ska,596,646,699567608,9706,0 +31284,Wioska+barbarzy%C5%84ska,578,655,6818593,9835,0 +31285,044,665,545,849095227,9363,7 +31286,Bairro+Alto,348,587,699494480,7772,0 +31287,Wioska+barbarzy%C5%84ska,510,674,699781762,9862,0 +31288,002,601,636,849097799,8414,0 +31289,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,384,631,1434753,10068,0 +31291,0276,555,666,698659980,9818,0 +31292,Lord+Lord+Franek+.%23182,543,330,698420691,12154,0 +31293,0428,551,668,698659980,10019,0 +31294,Wioska+barbarzy%C5%84ska,561,341,699072129,10216,0 +31295,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F5,607,634,33900,9719,0 +31296,KR%C3%93L+PAPI+WIELKI,640,607,698191218,10000,0 +31297,81+Ta+ostatnia+Niedziela+%3A%29998%28%3A,523,332,2571407,5650,0 +31298,00571+Wioska,446,425,3909522,9248,0 +31299,Wioska+barbarzy%C5%84ska,558,340,699072129,10218,0 +31300,E013,660,560,8428196,7598,0 +31301,Psycha+Siada,447,668,698807570,7455,0 +31302,Village,506,569,849094067,11466,0 +31303,Taran+033,620,374,699098531,9835,0 +31304,EKG+.%3A%3A.+Mat26%2F1,496,615,33900,10495,0 +31305,Wioska+barbarzy%C5%84ska,579,655,6818593,9835,0 +31306,Ave+Why%21,500,670,698585370,4309,0 +31307,Wioska+barbarzy%C5%84ska,677,485,699598425,8343,0 +31308,Deveste+ufam+Tobie,398,639,699783765,10000,0 +31309,Zeta+Reticuli+W,360,398,699323302,6575,0 +31310,Sk_006,438,660,8954402,9835,0 +31311,Wioska+barbarzy%C5%84ska,352,597,849014147,6754,0 +31313,%2A051%2A,356,396,699273451,10211,0 +31314,%230051,541,628,1536231,10495,0 +31315,Wioska+barbarzy%C5%84ska,602,362,849041192,4270,0 +31317,Wioska+barbarzy%C5%84ska,672,477,699574408,8450,0 +31318,0615,478,675,698650301,9780,0 +31319,Szulernia,387,366,7249451,9983,0 +31320,C0276,326,508,8841266,7801,0 +31321,Jednak+wol%C4%99+gofry,419,657,699736927,8027,0 +31322,%5BB%5D_%5B020%5D+Dejv.oldplyr,422,342,699380607,10233,0 +31323,Kiedy%C5%9B+Wielki+Wojownik,562,343,848915730,9976,0 +31324,Forza+11,440,663,8954402,9507,0 +31325,120,652,422,849088515,4298,0 +31326,0074,416,344,699431255,6482,0 +31328,C004,361,598,8607734,10160,9 +31330,001.,557,334,699797805,2347,0 +31331,Wioska+barbarzy%C5%84ska,673,471,699574408,10158,0 +31332,014+Szachy+-+Hetman,364,607,8268010,9835,0 +31333,Plls2,654,412,1086351,3914,0 +31334,Wioska+Westor+5,358,398,699530673,4629,0 +31335,krytl11,514,324,1990750,10068,0 +31336,0442,534,671,698659980,7836,0 +31337,Bezimienni+Bytom,585,651,848995242,9528,0 +31338,A+002,367,618,699342219,10259,0 +31339,Wioska+103,648,590,848971079,6964,0 +31340,AAA,529,327,1006847,9656,0 +31341,59k%24+Grvvyq,654,575,699676005,7615,0 +31342,108,616,367,7085502,5700,0 +31344,Kentin+ufam+Tobie,330,454,699783765,10000,2 +31345,0574,565,658,698659980,10019,0 +31346,029,602,640,849097799,7512,0 +31347,011+Tr%C3%B3jmiasto+2%2F3,388,628,8268010,9835,0 +31348,0075,545,668,698659980,10083,7 +31349,Horyzont+zdarze%C5%84,526,545,7581876,10019,0 +31350,Jaaa,672,489,698635863,10476,0 +31351,City,655,408,1086351,4865,0 +31352,Wioska+barbarzy%C5%84ska,575,661,6818593,9835,0 +31353,I045+Czy+ten+Pan+i+Pani,670,458,699722599,10160,0 +31354,I020,665,451,699722599,10346,0 +31355,Bagdad,487,327,8847546,10068,0 +31356,%7CC%7C+Oflashoot,500,672,698147372,6297,0 +31357,D%C4%85browa+0019,359,597,849096972,4346,0 +31358,strych,379,373,848905770,3289,0 +31359,Piek%C5%82o+to+inni,603,357,848956765,10160,0 +31360,C0283,324,512,8841266,5578,0 +31361,Berlin,548,355,699072129,10216,0 +31362,Wioska+097,644,601,848971079,8389,0 +31363,.9.,610,361,1990750,8117,0 +31364,002,651,407,1086351,8450,0 +31365,%7C039%7C+Symi,490,671,699393742,9858,0 +31367,Zero+Stresu,447,535,698971484,10008,0 +31368,A0269,329,476,8841266,10362,0 +31369,Lord+Arsey+KING,582,582,848956513,10285,0 +31370,Wioska+barbarzy%C5%84ska,670,467,699574408,8759,0 +31371,Piek%C5%82o+to+inni,514,425,848956765,10083,0 +31372,AAA,532,327,1006847,9667,0 +31373,Monetkownia,628,624,699759128,10237,0 +31374,234...cENTR,463,332,6920960,3983,0 +31375,Lord+Lord+Franek+.%23132,519,331,698420691,7619,0 +31376,AAA,538,329,1006847,9478,0 +31377,024+idea,660,430,9238175,10151,0 +31378,M181_027,338,437,393668,9673,0 +31379,Kentin+ufam+Tobie,330,461,699783765,10000,2 +31380,%7C021%7C+Samaria,501,676,699781762,8983,0 +31381,%2A061%2A,354,399,699273451,10211,0 +31383,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,671,698807570,10087,0 +31384,B004,470,674,8954402,10898,0 +31385,%2A189%2A,374,375,699273451,9484,0 +31386,%2A024,602,642,699567608,9711,0 +31387,SOKzGUMIjag%C3%B3d,600,352,849059491,9896,0 +31388,006+Avalon,374,381,849059457,6682,0 +31389,Wioska+barbarzy%C5%84ska,546,335,699066118,6137,0 +31390,Szulernia,380,371,7249451,2784,0 +31391,Westfold.005,348,421,848918380,10178,0 +31392,Wioska+Westor+3,358,396,699530673,4735,0 +31393,016+.10.+Infanterie-Division,597,358,849091899,2239,0 +31394,0062,671,460,698416970,6434,0 +31395,1.11,339,446,3502565,5111,0 +31396,A+010,371,618,699342219,5894,0 +31397,.%3A001%3A.+gr,635,384,849078297,10241,0 +31398,C0262,323,515,8841266,8900,0 +31399,fff,491,323,698239813,8580,0 +31400,Kiedy%C5%9B+Wielki+Wojownik,564,342,848915730,9976,0 +31402,%2A%2A18%2A%2A,630,389,849098782,9057,0 +31403,Dajanka+33,347,575,849012843,1031,0 +31404,Wioska+barbarzy%C5%84ska,669,519,6510480,6316,0 +31405,%2A007%2A,355,400,699273451,10211,0 +31406,%2A150%2A,351,417,699273451,10211,0 +31407,Deveste+ufam+Tobie,399,639,699783765,10000,3 +31408,Wioska+r+1,555,668,848915531,4657,0 +31409,Osada+koczownik%C3%B3w,655,586,849039310,8758,7 +31410,Wioska+06,499,323,951823,7747,0 +31411,A24,473,670,698652014,11321,0 +31412,Gilonia,513,556,849066849,7688,0 +31413,017,518,670,2293376,9993,0 +31414,012+Tr%C3%B3jmiasto+3%2F3,385,635,8268010,9835,0 +31415,%2A129%2A,365,392,699273451,10211,0 +31416,Wioska+Bochun10,325,519,7449254,10311,0 +31417,Kreskowo_4,594,649,699567608,9799,0 +31418,Wioska+Bochun10,326,470,7449254,10452,0 +31419,Z%7C001%7C+Mediolan,471,673,699393742,9250,0 +31420,OSADA+II,677,499,699598425,7803,0 +31421,Szulernia,382,368,7249451,7759,0 +31422,21k%24+Grvvyq,657,568,699676005,10495,0 +31423,D%C4%85browa+0021,356,591,849096972,4928,0 +31424,002,335,441,699800377,2764,0 +31425,%5B020%5D+VW+Klupo,663,436,849095068,9312,0 +31426,ADEN,602,355,698588535,9769,0 +31427,Szulernia,387,369,7249451,9209,0 +31428,Monetkownia,625,625,699759128,10237,0 +31429,I051,670,455,699722599,9603,0 +31430,Wioska+barbarzy%C5%84ska,569,337,0,8505,0 +31431,Bunkier+004,621,627,699778867,7631,0 +31432,Wioska+barbarzy%C5%84ska,677,490,699598425,10728,0 +31433,Architekci+Plac%C3%B3w+Boju,335,555,8004076,7393,0 +31434,Warkoczynka+2,611,611,699778867,12154,0 +31435,Lord+Lord+Franek+.%23086,517,325,698420691,9976,0 +31436,040+Rabka+Zdr%C3%B3j+Akademia,371,375,848978297,2946,0 +31437,026+%2A+Lady+Porto+%2A,644,397,699406750,10503,0 +31438,.%3A004%3A.+gr,636,385,849078297,9324,0 +31439,BETON,634,611,2269943,7944,0 +31440,B+034,667,534,8078914,9305,0 +31441,001.+Wioska+Krugal+02,577,658,1270916,8833,0 +31442,030.+Upss,514,670,848928624,7110,0 +31443,09.+Cintra,331,457,848910122,612,0 +31444,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,378,620,1434753,10068,0 +31445,cc+%C5%BBor,391,369,3909522,9350,9 +31447,BoOmBaa..,441,363,6169408,3648,0 +31448,Wioska+barbarzy%C5%84ska,553,336,699072129,10034,0 +31451,009,604,365,1018357,10019,0 +31452,%C5%82%C3%B3dka,329,549,699265922,9761,0 +31453,Wioska+barbarzy%C5%84ska,611,363,310729,5618,0 +31454,055,676,502,699413040,10336,0 +31455,Adidas+2,417,652,9191031,5055,0 +31456,029+-+Jerez+de+la+Frontera,676,519,698342159,10019,0 +31457,001,611,360,1990750,10795,0 +31458,027,477,671,698650301,9584,0 +31460,Szlachcic%2FTaran,613,366,699759128,10237,0 +31461,-005-,544,331,698588812,5363,3 +31462,cz+Wioska+16,365,386,3909522,4256,0 +31463,M181_033,339,430,393668,10231,0 +31464,-004-+Amazonia,578,586,699111651,10290,0 +31465,Centrum+2,652,412,1086351,4256,0 +31466,Wioska+01,502,324,951823,7822,4 +31467,O+tutaj,601,362,849041192,9291,0 +31468,%2A139%2A,356,410,699273451,10211,0 +31469,229+%7C,644,605,8000875,7207,0 +31470,Jaaa,671,486,698635863,10351,0 +31471,OFF,670,524,1563417,8809,9 +31472,Wioska+Bochun10,325,476,7449254,7701,0 +31473,Nowy+%C5%9Bwiat+A,340,562,849084005,4755,0 +31474,0287,545,671,698659980,9888,0 +31475,WB2,654,410,1086351,6295,0 +31476,070+-+woli,426,582,225023,10495,0 +31477,Whiskey,674,496,699737356,8902,0 +31478,007,359,606,699083129,9462,9 +31479,Wioska+9,531,517,699385139,7677,0 +31480,002,675,495,699737356,7303,0 +31481,Jaaa,671,498,698635863,9024,0 +31482,Wioska+Bochun10,325,473,7449254,10311,0 +31483,Szulernia,378,370,7249451,4062,0 +31484,Wioska+barbarzy%C5%84ska,669,448,113796,4282,0 +31485,Kentin+ufam+Tobie,327,462,699783765,10000,6 +31486,deff+100+%25,342,578,849012521,10319,0 +31487,golisz+nogi+%3F,592,652,848995242,10595,0 +31488,Paranoje,344,581,7318415,9486,0 +31489,054,669,545,849095227,9284,0 +31490,Szlachcic%2FTaran,619,366,699759128,9604,0 +31491,1.13,335,450,3502565,4326,0 +31492,O43+Trabzon,671,543,699272880,9003,0 +31493,071,601,358,2502956,10019,0 +31494,Wioska+barbarzy%C5%84ska,331,452,7012651,2095,0 +31495,010,456,332,2502956,10019,0 +31496,Stamford%2C+Connecticut,598,359,699491076,10047,0 +31497,psycha+sitting,426,657,699736927,2772,0 +31498,AAA,535,329,1006847,6700,0 +31499,B+060,671,541,8078914,6893,0 +31500,-012-,336,453,8184383,5544,0 +31501,Bunkier+005,623,624,699778867,6559,0 +31502,0526,534,672,698659980,10495,5 +31503,Taran+001,606,362,699098531,10971,0 +31504,%230128+Thorus5,474,329,1238300,9996,0 +31506,222,373,381,699711706,5493,0 +31507,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,371,611,849097937,7547,0 +31508,Wioska+barbarzy%C5%84ska,677,498,699598425,10728,0 +31509,0268,542,670,698659980,9121,0 +31510,Grupka+7+wiosek+5,356,601,698353083,9662,0 +31511,Wioska+barbarzy%C5%84ska,551,338,699072129,9242,0 +31512,060+%7C+PALESTINA,655,417,9228039,5980,0 +31513,Nie+fulaj+dewej+na+halba+mamyjo,328,461,699711723,3371,0 +31514,Castle,652,410,1086351,9240,0 +31515,Chekku+-+meito,326,529,9280477,10040,0 +31516,Orze%C5%82+Wyl%C4%85dowa%C5%82,467,673,698807570,6965,0 +31517,kto+ananasowy+pod+wod%C4%85+ma+dom,669,539,699628084,9555,0 +31518,Wioska+sobie+028,401,639,7349282,8777,0 +31519,C0142,329,520,8841266,9466,0 +31520,Winna,574,659,6818593,5344,2 +31521,%2A010%2A,324,546,8630972,10495,0 +31522,055,459,327,2502956,10083,0 +31523,0275,540,669,698659980,8184,0 +31524,Wioska+barbarzy%C5%84ska,451,329,849017820,8424,0 +31525,371%7C619+Wioska+barbarzy%C5%84ska,619,371,6822957,6499,0 +31526,BETON+065,634,616,699277039,5216,0 +31527,001Marcinmesi,379,371,848978297,9177,0 +31528,Myk+i+do+kieszonki,347,578,9319058,9799,0 +31529,AAA,536,327,1006847,9132,0 +31530,Ave+Why%21,475,673,699121671,9429,0 +31531,019,527,675,2293376,9993,0 +31532,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,669,698807570,7869,0 +31533,Osada+koczownik%C3%B3w,550,329,699797805,2572,7 +31534,Lubieszyn,656,587,849039310,8467,0 +31535,Wioska+barbarzy%C5%84ska,385,369,698160606,5498,0 +31536,%3F009,542,655,699828685,9781,0 +31537,Adidas+3,415,652,9191031,3857,0 +31538,Szlachcic,380,368,698160606,10300,0 +31539,_PUSTA+%21,674,525,1563417,6777,6 +31540,Wonderwall,332,546,698962117,9761,0 +31541,Wioska+044,646,598,848971079,9761,0 +31542,Jehu_Kingdom_64,661,427,8785314,5536,0 +31543,%7C071%7C+BlackBird+6,473,675,699393742,10909,0 +31545,Wioska+barbarzy%C5%84ska,672,467,699574408,10054,0 +31546,%2A057,604,637,699567608,8920,0 +31547,Wioska+barbarzy%C5%84ska,578,657,6818593,9835,0 +31548,Jednak+wol%C4%99+gofry,426,662,699736927,7467,0 +31549,.%3A013%3A.,631,383,849078297,4657,0 +31550,Wioska+barbarzy%C5%84ska,672,461,699574408,9005,0 +31551,060+komornicy,335,545,699510259,6168,0 +31552,%5BB%5D_%5B040%5D+Dejv.oldplyr,430,343,699380607,10495,0 +31553,bandzior,520,671,606407,10303,0 +31555,040+Szkoda+mi+Pe+Pe+na+mur+%3Bc,387,628,6354098,9478,0 +31556,Wioska+barbarzy%C5%84ska,440,662,699849210,1812,0 +31557,Szlachcic%2FTaran,641,396,699759128,10061,0 +31558,Wioska+r+8,555,667,848915531,5623,0 +31559,.%3A002%3A.,632,384,849098782,10233,7 +31560,R+019+%7EWichrowy+Tron%7E,485,674,699195358,9213,0 +31561,Wioska+barbarzy%C5%84ska,454,330,699393759,7103,0 +31562,Witam+S%C4%85siedzie+%3A%29%29,339,441,699800377,1245,0 +31563,004.,579,657,1270916,7315,0 +31564,I%23027,616,365,2065730,9797,0 +31565,Jad%C4%99+na+mopie+%21%21,587,654,848995242,10362,0 +31566,%5BB%5D_%5B031%5D+Dejv.oldplyr,418,342,699380607,10046,0 +31567,Silver+dream,648,403,1086351,3356,0 +31568,011+Unternehmen+Seelowe,605,362,849091899,4810,0 +31569,625%7C336,607,369,699580120,9835,0 +31570,psycha+sitting,436,664,699736927,3408,0 +31571,002+Stalingrad,605,360,849091899,11678,7 +31573,ADEN,578,347,698588535,9452,5 +31574,Wioska+klez+015,324,513,698295651,6127,0 +31575,Wioska+Bochun10,325,493,7449254,10311,0 +31576,087,664,569,849095227,9727,0 +31577,001,603,364,1018357,10019,0 +31578,Deveste+ufam+Tobie,399,646,699783765,10000,0 +31579,%2A076%2A,362,388,699273451,10211,0 +31580,Wioska+barbarzy%C5%84ska,338,561,849012521,2800,0 +31581,06+tonieostatnieslowo,610,364,699861004,9976,0 +31582,Wioska+barbarzy%C5%84ska,570,660,6818593,9835,0 +31583,023,469,670,699238479,8801,0 +31584,%230056+barbarzy%C5%84ska,469,328,1238300,10178,0 +31585,Wioska+plls,652,409,1086351,8218,0 +31586,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,375,618,849097937,9752,0 +31587,%2A183%2A,378,374,699273451,10211,0 +31588,Bagdad,491,325,8847546,10178,0 +31589,Wioska+barbarzy%C5%84ska,571,660,6818593,9835,0 +31590,Jednak+wol%C4%99+gofry,421,658,699736927,4051,0 +31591,Nowa+49,662,576,698702991,7589,0 +31592,%5BB%5D_%5B028%5D+Dejv.oldplyr,434,336,699380607,10273,0 +31593,013,373,384,849059457,3672,0 +31594,Lord+Lord+Franek+.%23089,520,325,698420691,10301,0 +31595,R%C4%99cznik+do+zmiany,353,404,699697558,10019,0 +31596,Wioska+barbarzy%C5%84ska,555,338,699072129,10220,0 +31597,B+056,675,536,8078914,9515,0 +31598,Centrum,653,410,1086351,5903,0 +31599,deff+100+%25,338,572,849012521,6806,0 +31600,Wioska+klez+016,330,507,698295651,6659,0 +31601,Monetkownia,620,622,699759128,10237,0 +31602,114,658,430,849088515,6633,0 +31603,Wioska+V,581,348,698200480,7588,0 +31604,Wioska+r+15,559,667,848915531,3516,0 +31605,07.+Rivia,333,453,848910122,1173,0 +31606,B+009,668,531,8078914,10064,9 +31607,Deveste+ufam+Tobie,395,640,699783765,10019,0 +31608,B.06,670,506,699737356,9356,0 +31610,.%3A008%3A.,635,383,849078297,5586,0 +31611,018+Szachy+-+Goniec,361,603,8268010,5245,0 +31612,Wioska+barbarzy%C5%84ska,367,614,698908184,5927,0 +31613,A28,475,670,698652014,8453,0 +31614,B+002,667,535,8078914,10273,1 +31616,Wioska+barbarzy%C5%84ska,673,472,699574408,10018,0 +31617,Wioska+Bochun10,328,469,7449254,9689,0 +31618,210,668,550,7038651,8471,0 +31619,A+001,369,618,699342219,10946,0 +31620,Chekku+-+meito,328,521,9280477,9976,0 +31621,Wypizdow+dolny,673,467,699574408,10237,0 +31622,Kiedy%C5%9B+Wielki+Wojownik,567,343,848915730,9976,0 +31623,A+007,368,616,699342219,10237,0 +31624,Piek%C5%82o+to+inni,588,351,848956765,6480,0 +31625,Ob+Konfederacja,443,335,848915730,8620,0 +31626,I031,665,456,699722599,10064,0 +31627,025,631,612,699567608,9812,0 +31628,%2A137%2A,352,413,699273451,10211,0 +31629,13.+Metinna,333,456,848910122,295,0 +31630,053+Arkansas,675,518,2135129,9500,0 +31631,Ob+Konfederacja,437,334,848915730,9039,0 +31632,%23003%23,625,619,692803,9761,0 +31633,Bagienko.Anker...,374,385,699713515,3135,0 +31634,%2A133%2A,353,414,699273451,10211,0 +31635,Gr%C3%B3d+2,471,325,699204478,7387,0 +31636,055+%7C+PALESTINA,652,423,9228039,4098,0 +31637,AAA,531,329,1006847,9573,9 +31638,03.Mordo+%3A%29,448,662,361125,3182,0 +31639,065,452,331,2502956,9976,0 +31640,Wioska+barbarzy%C5%84ska,631,379,7555180,349,0 +31641,Sekou,676,509,699737356,9688,0 +31642,%3D%7C29%7C%3D,641,393,9101574,10495,0 +31643,Ruska+onuca,588,652,848995242,10495,0 +31644,WB3,650,413,1086351,6551,9 +31645,Jaaa,672,487,698635863,10478,0 +31646,010,363,605,699083129,9647,0 +31647,Wioska+barbarzy%C5%84ska,338,562,849012521,2342,0 +31648,K34+x026,402,356,698364331,7084,0 +31649,025+przepis+na+serniczek,506,675,8954402,10160,0 +31650,11k%24+Grvvyq,663,568,699676005,10495,8 +31651,2.Santander,562,667,698215322,6668,0 +31652,Darmowe+przeprowadzki,461,672,848935389,9809,0 +31653,%23054%23,627,625,692803,9761,0 +31654,Lord+Lord+Franek+.%23107,507,323,698420691,10316,0 +31655,A0270,328,475,8841266,10362,0 +31656,057+komornicy,331,539,699510259,9835,0 +31657,fff,488,322,698239813,10268,0 +31658,Wioska+117,670,526,848971079,9878,0 +31659,Wioska+barbarzy%C5%84ska,673,464,699574408,9419,0 +31660,I021,668,464,699722599,10476,0 +31661,0617,475,674,698659980,10019,0 +31662,Wioska+Bochun10,323,492,7449254,3551,0 +31663,%2A192%2A,378,371,699273451,10211,0 +31664,Architekci+Plac%C3%B3w+Boju,337,552,8004076,8329,0 +31665,Wioska+barbarzy%C5%84ska,571,659,6818593,9835,0 +31666,C0272,325,515,8841266,8956,0 +31667,069,451,330,2502956,10019,0 +31668,Deveste+ufam+Tobie,396,640,699783765,10000,9 +31669,018,533,673,2293376,9993,0 +31670,023,664,557,8428196,6987,0 +31671,psycha+sitting,426,658,699736927,10311,0 +31672,C0281,325,508,8841266,10362,0 +31673,03Wioska+barbarzy%C5%84ska,388,631,699704542,8581,0 +31674,%5B020%5D,582,348,848915730,9445,0 +31675,080.+Napoca,655,413,849091866,9542,0 +31676,A+028,368,615,699342219,6066,7 +31677,%23.45+Wioska+barbarzy%C5%84ska,670,463,849054582,4338,0 +31678,Ob+Konfederacja,440,336,848915730,9682,0 +31679,psycha+sitting,452,643,699736927,9948,0 +31680,059+komornicy,331,542,699510259,9747,0 +31681,Wioska+Bochun10,338,514,7449254,12154,0 +31682,cz+Wioska+78,367,383,3909522,4409,0 +31683,Deveste+ufam+Tobie,391,640,699783765,8311,0 +31684,Kampaj%C3%B3wka,324,529,698338524,6782,0 +31685,I022+Ty+masz+ten+idealny+stan,667,462,699722599,9978,0 +31686,Szlachcic,390,359,3484132,10495,0 +31687,1v9+machine,390,638,699697558,10019,0 +31688,KR%C3%93L+PAPI+WIELKI,637,611,698191218,10000,6 +31689,001+Kuba,675,489,699737356,8448,0 +31690,Wioska+105,642,602,848971079,9761,0 +31691,Wioska+barbarzy%C5%84ska,662,446,113796,6557,0 +31692,off+100+%25,340,570,849012521,9762,0 +31693,%2A068%2A,361,388,699273451,10211,4 +31694,A005,491,678,8954402,9948,0 +31695,KNATIGOR,678,500,699598425,10728,0 +31696,020,605,643,849097799,7627,0 +31697,Arka+Noego,383,375,8419570,9344,0 +31698,005,363,609,699083129,8955,0 +31699,069,620,599,698786826,7652,0 +31700,Myk+i+do+kieszonki,347,577,9319058,9799,0 +31701,Komornik+004,329,540,698290577,5222,0 +31702,Kentin+ufam+Tobie,332,457,699783765,10000,0 +31703,Monetkownia,616,626,699759128,10040,0 +31704,AAA,519,323,1006847,8760,0 +31705,Wioska+010,384,385,8419570,10168,0 +31706,K34+x018,410,352,698364331,9732,0 +31707,0012+Podole,386,376,849096882,6443,0 +31708,C0052,326,519,8841266,10362,0 +31709,020+Krak%C3%B3w,405,354,848978297,9448,0 +31710,%2A055%2A,356,397,699273451,10211,0 +31711,Wioska+barbarzy%C5%84ska,373,383,699711706,2571,0 +31712,%2A167%2A,348,411,699273451,9959,0 +31713,0007,616,613,6417987,9579,0 +31714,A-042-Heffito,404,347,8419570,10178,0 +31715,Wioska+barbarzy%C5%84ska,503,673,699781762,10495,0 +31716,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,633,1434753,10068,2 +31717,%7E%7E090%7E%7E,635,617,7829201,7956,0 +31718,Zeta+Reticuli+W,362,399,699323302,8400,0 +31719,.%3A002%3A.,372,620,7417116,12154,0 +31720,0538,563,664,698659980,5575,0 +31721,Jaaa,672,491,698635863,9632,0 +31722,Muchomor+%2A014%2A,517,675,606407,10433,0 +31723,Wyspa+002,623,380,699756210,10140,0 +31724,Wioska+barbarzy%C5%84ska,503,672,699781762,10495,0 +31725,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,670,698807570,9541,3 +31726,Lord+Lord+Franek+.%23149,507,324,698420691,7829,0 +31727,Ow+Konfederacja,612,402,848915730,10290,0 +31729,%2A%2A14%2A%2A,633,389,849098782,9573,0 +31730,D%C4%85browa+0020,357,594,849096972,5283,0 +31731,-014-,337,561,8004076,9880,1 +31732,007,332,458,699879556,3118,0 +31733,Jaaa,675,492,698635863,10487,0 +31734,Wioska+barbarzy%C5%84ska,462,329,849017820,5753,0 +31735,wioska,409,348,699854830,6942,0 +31736,364%7C616Osada+koczownik%C3%B3w1,616,364,6822957,10078,7 +31737,660%7C426+Wioska+barbarzy%C5%84ska,660,426,6822957,4345,0 +31738,Sekou,674,507,699737356,9899,0 +31739,%23Fuegoleon,436,659,699849210,10247,0 +31740,012%23+Angelina,472,673,3933666,9179,0 +31741,Wioska+Bochun10,324,472,7449254,10311,0 +31742,Szlachcic,395,357,3484132,10495,0 +31743,0394,556,665,698659980,10252,0 +31744,Lord+Lord+Franek+.%23102,524,329,698420691,10160,0 +31745,SOKzGUMIjag%C3%B3d,596,352,849059491,6277,0 +31746,Monetkownia,626,624,699759128,10237,0 +31747,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,618,849097937,9752,0 +31748,%2A216%2A,371,377,699273451,6056,0 +31749,Szlachcic,384,362,3484132,10478,0 +31750,-013-,339,440,8184383,5232,0 +31751,%230108+tomek791103,477,328,1238300,10178,0 +31752,0272,541,670,698659980,9394,0 +31753,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F9,629,621,33900,9868,0 +31754,%2A%2A35%2A%2A,668,432,849098782,10220,0 +31755,Wioska+02,500,327,951823,7144,0 +31756,%2A190%2A,372,375,699273451,10104,0 +31757,Wioska+Bochun10,323,489,7449254,10232,0 +31758,22.+Las+Venturas,497,673,849092769,7431,0 +31759,Lord+Lord+Franek+.%23185,544,330,698420691,10319,0 +31760,%2A196%2A,364,389,699273451,6146,0 +31761,B.020,677,500,9188016,10000,1 +31762,Orze%C5%82+Wyl%C4%85dowa%C5%82,447,662,698807570,7634,0 +31763,0614,478,674,698650301,9834,0 +31764,Wioska+Bochun10,329,495,7449254,10495,0 +31765,Myk+i+do+kieszonki,346,580,849012521,10245,0 +31766,0050,567,327,699485250,10401,0 +31767,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,381,623,849097937,9512,0 +31768,0083,543,525,699432672,10495,0 +31769,%7C042%7C+Berat,495,674,698152377,9714,0 +31770,1.013,335,451,3502565,9031,6 +31772,080+tulpa,650,417,9238175,10275,0 +31773,Wie%C5%9B+11,353,600,849014147,9085,0 +31774,Wioska+ma%C5%82a,503,322,6118079,7682,0 +31775,R+012+%7EGwiazda+Zaranna%7E,487,674,699195358,9507,0 +31776,Sekou,672,507,699737356,9701,0 +31777,009+Panzergruppe+Afrika,606,361,849091899,5420,0 +31778,M181_029,337,431,393668,9651,0 +31779,0091,412,351,699431255,3567,0 +31780,Moja,541,353,570100,8823,0 +31781,Po+sasiedzku,615,372,848924219,7496,0 +31782,M181_028,338,432,393668,9667,0 +31783,%23038%23,625,622,692803,9761,0 +31784,%244.000+Grvvyq,658,576,699676005,10495,0 +31785,Wioska+XV,576,344,698200480,9000,0 +31786,AAA,534,328,1006847,9032,0 +31787,Osada+koczownik%C3%B3w,676,467,699574408,9473,1 +31788,Wioska+barbarzy%C5%84ska,511,677,699781762,10088,0 +31789,Deveste+ufam+Tobie,397,637,699783765,10000,6 +31790,Mosty,352,587,8607734,10019,0 +31791,008,409,651,699246032,9835,0 +31792,Wioska+barbarzy%C5%84ska,673,463,699574408,9382,0 +31793,South+K35,556,395,699146580,9950,0 +31794,SOKzGUMIjag%C3%B3d,595,352,849059491,4222,0 +31795,Szulernia,387,367,7249451,9832,0 +31796,MojeDnoToWaszSzczyt,561,363,699697558,10495,0 +31797,0610,480,674,698650301,10019,0 +31798,%7C010%7C+Agia+Meriadia,495,679,699393742,10053,4 +31799,Lord+Arsey+KING,580,580,848956513,10285,0 +31801,Wioska+klez+010,329,519,698295651,6709,0 +31802,003+Osada+koczownik%C3%B3w,378,624,6354098,8904,4 +31803,KR%C3%93L+PAPI+WIELKI,578,569,698191218,10000,0 +31804,Wioska+barbarzy%C5%84ska,558,337,699072129,10218,0 +31805,004+Kabul,585,592,699524362,9989,0 +31806,%2A207%2A,346,412,699273451,6800,0 +31807,Wioska+Bochun10,329,491,7449254,7779,3 +31808,1v9+machine,388,640,699697558,10019,0 +31809,Jaaa,675,487,698635863,10487,0 +31810,Wioska+barbarzy%C5%84ska,338,430,393668,8127,0 +31811,Szlachcic,395,356,3484132,10484,0 +31812,Dajanka+28,349,580,849012843,1090,0 +31813,O53+Bildudalur,675,533,699272880,9475,0 +31814,Y+%7C+Forest+Cyaaaanku,321,497,699213622,9462,0 +31815,D+023,671,510,8078914,9908,0 +31816,054,523,677,2293376,9129,0 +31817,%2A215%2A,349,413,699273451,6326,0 +31818,Wioska+barbarzy%C5%84ska,608,365,848915730,1883,0 +31820,Wioska+Bochun10,327,469,7449254,8771,7 +31821,AAA,532,328,1006847,10233,0 +31822,Wioska+Bochun10,328,495,7449254,6484,0 +31823,%5BB%5D_%5B033%5D+Dejv.oldplyr,416,342,699380607,6463,0 +31824,61k%24+Grvvyq,655,575,699676005,6958,0 +31825,DejMon2,370,623,699805839,9587,0 +31826,Monetki,475,419,699098531,9637,0 +31827,Dijon,677,496,699737356,8610,0 +31828,Wioska+04,498,326,951823,6051,0 +31829,Deveste+ufam+Tobie,392,639,699783765,9809,0 +31830,.%3A003%3A.+kr,630,385,849098782,9474,7 +31831,Wioska+barbarzy%C5%84ska,575,655,6818593,9835,0 +31832,063+%7C+PALESTINA,655,419,9228039,6614,0 +31834,Lord+Lord+Franek+.%23105,526,329,698420691,10160,0 +31835,037+troll7,664,431,9238175,10388,0 +31836,%23SecreSwallowtail,434,657,699849210,4274,0 +31837,026,479,674,698650301,9449,4 +31838,M181_032,340,430,393668,9157,0 +31839,Architekci+Plac%C3%B3w+Boju,336,556,8004076,8049,0 +31840,034+yhyyy,669,446,699272633,8157,0 +31841,008+Mord,678,512,2135129,9756,0 +31842,kto+ananasowy+pod+wod%C4%85+ma+dom,674,539,699628084,9129,0 +31843,A+003,366,618,699342219,10237,0 +31844,AAA,530,326,1006847,9484,0 +31845,%3D%7C28%7C%3D,640,392,9101574,10495,0 +31846,001.,622,370,699098531,10654,0 +31847,Kiedy%C5%9B+Wielki+Wojownik,563,341,848915730,9976,0 +31848,%5B07%5D,428,664,699849210,8326,0 +31849,Westfold.004,344,421,848918380,10178,0 +31850,Komornik+003,330,537,698290577,8361,0 +31851,Wyspa+016,619,377,699756210,10399,0 +31852,B003,468,673,8954402,9952,0 +31853,Westfold.012,338,425,848918380,10178,0 +31854,N001,340,574,272173,9814,0 +31855,15k%24+Grvvyq,662,573,699676005,10495,1 +31856,B001,469,672,8954402,9569,0 +31857,368%7C617+Wioska+barbarzy%C5%84ska,617,368,6822957,10016,0 +31858,Wioska+barbarzy%C5%84ska,431,662,699736927,2692,0 +31859,Wioska+barbarzy%C5%84ska,337,562,849012521,2221,0 +31860,A07,468,671,698652014,10019,7 +31861,Szlachcic%2FTaran,633,391,699759128,10237,0 +31862,022+pawelk95,661,483,2135129,9500,0 +31863,Wioska+barbarzy%C5%84ska,430,337,699393759,8415,0 +31864,Wioska+barbarzy%C5%84ska,675,464,699574408,8758,0 +31865,017+.11.+Infanterie-Division,597,356,849091899,3416,0 +31866,historia+blisko+1,617,603,699778867,12154,0 +31867,Sony+911,621,630,1415009,10223,0 +31868,Lord+Lord+Franek+.%23097,511,325,698420691,10051,0 +31869,K34+-+%5B153%5D+Before+Land,428,337,699088769,7363,0 +31870,0411,544,635,698659980,10019,0 +31871,%23%5B10%5D,431,661,699849210,4647,0 +31872,Premium,410,650,699736927,10178,0 +31873,Ob+Konfederacja,441,335,848915730,6991,0 +31874,I046+Sa+w+sobie+zakochani,667,457,699722599,10044,0 +31875,ABB,657,416,1086351,5295,0 +31876,K34+x024,405,356,698364331,7485,0 +31877,Psycha+Siada,443,666,698807570,5109,0 +31878,xdd,679,496,699598425,10728,0 +31879,NAPLETON,351,599,7183372,10294,0 +31880,Jednak+wol%C4%99+gofry,427,661,699736927,6362,0 +31882,psycha+sitting,433,664,699736927,4611,0 +31883,1000,620,365,699150527,10146,0 +31884,Wioska+barbarzy%C5%84ska,376,375,0,3731,0 +31885,Wioska+barbarzy%C5%84ska,409,650,699736927,2902,0 +31886,Wioska+5,504,326,698680806,5401,0 +31887,%2A023,604,640,699567608,9031,0 +31889,Odprysk+Ksi%C4%99%C5%BCyca01,675,474,699574408,9592,0 +31890,Psycha+Siada,442,669,698807570,10411,0 +31891,Szulernia,380,380,7249451,7621,0 +31892,Lord+Lord+Franek+.%23093,517,322,698420691,9976,0 +31893,Pomidorowy+dzem,674,514,699598425,10728,0 +31894,Kiedy%C5%9B+Wielki+Wojownik,567,342,848915730,9976,2 +31895,216,433,335,7271812,6833,0 +31896,Ob+Konfederacja,434,338,848915730,8298,0 +31897,Wioska+barbarzy%C5%84ska,346,410,8503255,2580,0 +31898,Taran,340,576,6180190,9721,0 +31899,A0260,329,479,8841266,10362,0 +31900,Wrath+013,570,344,699756210,10273,0 +31901,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,629,1434753,6835,0 +31902,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F5,626,618,33900,10073,0 +31903,Wioska+barbarzy%C5%84ska,575,662,6818593,9835,0 +31904,ADEN,598,356,698588535,7108,0 +31905,cz+10+9,371,383,3909522,8185,0 +31906,%2A%2A34%2A%2A,664,441,849098782,9691,0 +31907,Wyspa+001,624,380,699756210,10273,0 +31908,019,361,604,699083129,5512,0 +31909,032.+Alesia,652,421,849091866,10479,7 +31910,032,607,641,849097799,6840,0 +31911,DOM+10,564,409,849064614,9815,0 +31912,%230189+Segadorr+dar,463,327,1238300,10178,0 +31913,Wioska+barbarzy%C5%84ska,677,468,699574408,8494,0 +31914,Chekku+-+meito,327,524,9280477,9976,0 +31915,Chekku+-+meito,326,530,9280477,9976,0 +31916,Wioska+Bochun10,324,471,7449254,9274,0 +31917,017+Wioska+Kolegi,613,362,6822957,10203,0 +31918,369%7C621+Wioska+barbarzy%C5%84ska,621,369,6822957,6705,0 +31919,Lord+Lord+Franek+.%23133,523,326,698420691,9798,0 +31920,Makemake,551,335,699797805,3591,0 +31921,WB+07,636,609,2269943,8283,0 +31922,%3D%7C31%7C%3D,647,398,9101574,10087,0 +31923,%2A219%2A,379,377,699273451,6159,0 +31924,oriental,454,665,8980651,9030,0 +31925,Wioska+barbarzy%C5%84ska,555,332,699072129,10220,0 +31926,cz+Wioska+76,370,385,3909522,4391,0 +31927,Wioska+barbarzy%C5%84ska,559,339,699072129,10216,0 +31928,024+Waldu%C5%9B+dzia%C5%82ej%21,375,623,6354098,10149,0 +31930,Wioska+barbarzy%C5%84ska,342,571,849012521,7445,0 +31932,Wioska+barbarzy%C5%84ska,566,661,6818593,9702,0 +31933,-+Arbos,551,326,699825236,6717,0 +31934,-+DragonC,547,333,699825236,8966,0 +31935,Wonderwall,334,541,698962117,9036,0 +31936,Kentin+ufam+Tobie,328,453,699783765,10000,0 +31937,A.08+sp%C3%B3%C5%82dzielnia+gryzoni,561,334,699072129,9095,0 +31938,.%3A005%3A.,634,384,849078297,9034,0 +31939,Wioska+barbarzy%C5%84ska,672,469,699574408,10012,0 +31940,Grupka+7+wiosek+1,354,600,698353083,9654,0 +31941,-004-,539,326,698588812,7601,6 +31942,Taran,674,491,699598425,10728,0 +31943,025+Mom+to+gdzie%C5%9B+ida+do+dom,374,623,6354098,8730,0 +31944,Wioska+barbarzy%C5%84ska,555,336,699072129,10220,0 +31945,fff,489,322,698239813,10229,0 +31946,AAA,528,323,1006847,9666,0 +31947,NoeyPL,331,557,849000135,4781,0 +31948,0612,482,673,698650301,10019,0 +31949,Wrath+005,573,344,699756210,10273,0 +31950,Drakonia,551,329,699825236,5234,0 +31951,051,341,573,6853693,9771,0 +31952,03Wioska+barbarzy%C5%84ska,389,634,699704542,8398,0 +31953,D+024,673,513,8078914,10495,0 +31954,Wioska+Bochun10,327,516,7449254,10303,0 +31955,M181_031,340,431,393668,9461,0 +31956,BETON+055,624,618,699277039,6441,0 +31957,Ajuda,347,589,699494480,9658,0 +31958,Wioska+Bochun10,324,490,7449254,10495,2 +31959,SPOCENI+KUZYNI,411,650,848913998,3876,0 +31960,N002,341,570,272173,10208,0 +31961,Architekci+Plac%C3%B3w+Boju,330,552,8004076,9880,0 +31962,Sony+911,581,658,1415009,9774,0 +31963,Wioska+039,648,601,848971079,9761,0 +31964,020+toni,678,465,849098769,11321,0 +31965,Wioska+barbarzy%C5%84ska,450,330,699308637,8556,0 +31966,Sony+911,618,632,1415009,9841,0 +31967,023+serniczek+z+napojem,506,673,8954402,9783,0 +31968,Wioska+054,642,599,848971079,9761,0 +31969,Sam+fridhof+u%C5%82omow+i+pofirtnacow,328,465,699711723,4051,0 +31970,off+100+%25,339,571,849012521,8318,0 +31971,Gattacka,623,372,699298370,9449,0 +31972,B+035,671,531,8078914,9566,0 +31973,Wioska+042,649,599,848971079,9761,0 +31974,014.,636,393,699491076,9785,6 +31976,%5B017%5D+Kr%C3%B3lowie+klozet%C3%B3w,665,435,849095068,9312,0 +31977,%230143+Thorus5,470,324,1238300,6616,7 +31978,Wioska+barbarzy%C5%84ska,670,476,699574408,10022,0 +31979,Piek%C5%82o+to+inni,588,348,848956765,8712,0 +31981,045+Toporowa+cyrhla+II,378,377,848978297,2781,0 +31982,XDX,624,371,699098531,10822,0 +31983,Deveste+ufam+Tobie,394,638,699783765,9844,0 +31984,C0167,327,537,8841266,10362,0 +31985,Wioska+VI,584,342,698200480,6391,0 +31987,01+Kapitol,539,675,849097981,11321,0 +31988,%23019.+Wstyd+za+Artura,453,673,848896948,8649,0 +31989,emoriar,664,442,699574408,6088,0 +31990,Monetkownia,627,622,699759128,10237,0 +31991,Architekci+Plac%C3%B3w+Boju,335,556,8004076,9483,0 +31992,%23001%23,627,623,692803,9761,0 +31993,rotes+idz+spac+misiu,456,674,698807570,9623,0 +31994,21.+KaruTown,650,416,9238175,9711,0 +31995,E011,664,552,8428196,6902,0 +31996,Wioska+Bochun10,323,494,7449254,10311,0 +31997,01+tonieostatnieslowo,609,364,699861004,9593,0 +31998,055+komornicy,333,543,699510259,9221,0 +31999,V012,341,420,849097737,3379,0 +32000,Wioska+r+9,556,671,848915531,5887,0 +32001,%5B165%5D,649,585,8000875,8248,0 +32002,O62+Makeb,675,511,699272880,10402,8 +32003,Architekci+Plac%C3%B3w+Boju,333,553,8004076,8180,0 +32004,Wioska+barbarzy%C5%84ska,675,478,699574408,9277,0 +32005,Wioska+r+18,559,668,848915531,3160,0 +32006,%5BB%5D_%5B004%5D+Dejv.oldplyr,428,340,699380607,10495,0 +32007,Deveste+ufam+Tobie,398,641,699783765,10000,0 +32008,I023+Dzisiaj+spisz+w+szafie,666,463,699722599,10155,0 +32009,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,673,698807570,10252,0 +32010,%5BB%5D_%5B008%5D+Dejv.oldplyr,426,344,699380607,10495,3 +32011,B+055,673,531,8078914,9738,0 +32012,Sony+911,618,631,1415009,10183,0 +32013,03Wioska+barbarzy%C5%84ska,389,632,699704542,8153,0 +32014,Bunkier+006,624,625,699778867,7628,0 +32015,090,662,559,699351301,1696,0 +32016,R+003+%7EAlisia%7E,488,678,699195358,10019,0 +32017,sony911,617,632,1415009,10228,0 +32018,Monetkownia,623,622,699759128,10237,0 +32019,Krytl13,509,321,1990750,9352,0 +32020,0043,675,465,698416970,8227,6 +32021,%24AtlantaHawks,677,523,699795378,7086,0 +32022,Centrum+3,651,405,1086351,5926,0 +32023,370%7C618+Wioska+barbarzy%C5%84ska,618,370,6822957,7805,0 +32025,Szlachcic,394,361,3484132,10484,0 +32026,Hello+hello,437,667,8966820,4124,0 +32027,%7C035%7C+Mandriko,495,678,699393742,10252,0 +32028,Wioska+Ida+Madame,578,344,698200480,5521,0 +32029,%2A234%2A,331,445,699273451,9668,0 +32030,Szlachcic,378,369,698160606,10481,1 +32031,Kreskowo+_1,592,646,699567608,9774,0 +32032,Wioska+barbarzy%C5%84ska,495,324,698239813,5654,0 +32033,1v9+machine,388,642,699697558,10019,0 +32034,%2A233%2A,332,443,699273451,9879,0 +32035,Szlachcic%2FTaran,638,396,699759128,10237,0 +32036,Osada+koczownik%C3%B3w,594,647,699567608,9243,2 +32037,Wioska+barbarzy%C5%84ska,485,366,699658023,9513,0 +32038,%2A041%2A,356,394,699273451,10211,0 +32039,Wioska+Bochun10,325,495,7449254,10311,0 +32040,C0048,322,521,8841266,10362,0 +32041,Wioska+DANIEL48,340,421,849073314,1192,0 +32042,Wioska+barbarzy%C5%84ska,504,679,699781762,10452,0 +32043,A007+Dumel,671,447,113796,10141,0 +32044,Wioska+barbarzy%C5%84ska,467,326,699191455,7076,0 +32045,SOKzGUMIjag%C3%B3d,594,353,849059491,10728,0 +32046,Ani+przed%2C+ani+po,609,365,699478692,5346,0 +32047,Wioska+malaula,374,377,699711706,9535,0 +32048,Wioska+Bochun10,329,473,7449254,10311,0 +32049,%2A240%2A,331,444,699273451,9628,0 +32050,Szlachcic,379,370,698160606,10476,0 +32051,044,456,333,2502956,9911,0 +32052,W%C4%85ski,541,351,849101144,4632,0 +32053,Wioska+Bochun10,331,473,7449254,10311,4 +32054,Y+%7C+Forest+Cyaaaanku,328,499,699213622,10000,0 +32055,006,535,673,2293376,9993,0 +32057,Deveste+ufam+Tobie,400,646,699783765,10000,0 +32058,Szale+%24%24%24,444,669,8966820,6922,0 +32059,016+Przerwa+na+szpuli%21,379,630,6354098,10143,0 +32060,Grupka+7+wiosek+Koszary,357,598,698353083,9808,5 +32061,XXXX,491,329,849054951,10161,0 +32062,050+Wioska,658,422,9238175,9568,0 +32063,-+290+-+SS,542,672,849018239,10000,7 +32064,Wioska+barbarzy%C5%84ska,661,580,478956,1427,0 +32065,014,606,635,849097799,8175,0 +32066,%2A229%2A,333,438,699273451,10211,0 +32067,A041,607,643,9023703,7901,0 +32068,Pomidorowy+dzem,676,516,699598425,9075,0 +32069,Westfold.007,345,422,848918380,10178,0 +32070,03Wioska+barbarzy%C5%84ska,386,631,699704542,8407,0 +32071,106,617,369,7085502,8011,0 +32072,%2A203%2A,344,412,699273451,7911,0 +32073,Ave+Why%21,470,655,699121671,9809,0 +32074,059+%7C+PALESTINA,657,414,9228039,6701,0 +32075,Y+%7C+Forest+Cyaaaanku,326,499,699213622,5605,0 +32076,AAA,536,330,1006847,9205,0 +32077,0575,552,671,698659980,9390,0 +32078,Wioska+conradox,473,654,848999671,9758,0 +32079,Bagienko.Anker...,371,386,699713515,3963,0 +32080,%5BB%5D_%5B002%5D+Dejv.oldplyr,420,346,699380607,10495,0 +32081,Psycha+Siada,441,669,698807570,10019,0 +32082,Wioska+Bochun10,328,492,7449254,7136,0 +32083,026,538,670,2293376,9993,0 +32084,Lord+Arsey+III,339,421,698349125,2768,0 +32085,81+Czwartek,522,330,2571407,3362,0 +32086,Bagdad,483,325,8847546,10068,0 +32087,Wioska+2,571,335,7560474,4723,0 +32088,Klan+Ognia,341,435,393668,6501,0 +32089,Piek%C5%82o+to+inni,586,348,848956765,5784,0 +32090,SOKzGUMIjag%C3%B3d,595,349,849059491,10838,0 +32091,Chekku+-+meito,325,531,9280477,10040,0 +32092,024,449,330,2502956,10019,0 +32094,218...barba,460,331,6920960,4051,0 +32095,%7C029%7C+Charaki,496,676,699393742,10001,0 +32096,Wioska+barbarzy%C5%84ska,522,325,698350371,9235,0 +32097,Monetkownia,621,626,699759128,10237,0 +32098,niespodzianka+%3A%29,364,614,698908184,11874,9 +32099,Wioska+002,676,528,2999957,7859,0 +32100,Wioska+095,641,602,848971079,9761,0 +32101,Wioska+barbarzy%C5%84ska,680,496,699598425,10728,0 +32102,Wioska+klez+018,321,506,698295651,4389,0 +32103,026+Jo+Cie+dupia.exe,374,622,6354098,10146,0 +32104,Szlachcic%2FTaran,614,369,699759128,7242,0 +32105,Ob+Konfederacja,434,339,848915730,9836,4 +32106,027+minus+pi%C4%99%C4%87set,374,624,6354098,9497,0 +32107,BOTLEY,402,350,8123790,1704,0 +32108,A012+Dla+mpiechu+Killeros,671,456,113796,10160,0 +32109,.%3A020%3A.+kr,632,385,849098782,8782,0 +32110,ZUBRAWKA+050,615,631,33900,9982,0 +32111,Chekku+-+meito,332,535,9280477,9976,0 +32112,Wioska+043,647,598,848971079,9761,0 +32113,Osada+koczownik%C3%B3w,511,678,699781762,9927,8 +32115,NoeyPL+2,329,555,849000135,5237,0 +32116,D.024,395,645,849088243,3755,0 +32117,%2A031,596,650,699567608,9709,0 +32118,thats+not+gonna+be+easy,330,532,699523631,10141,0 +32119,Wioska+barbarzy%C5%84ska,568,659,6818593,9835,0 +32120,C0285,322,508,8841266,5838,0 +32121,A0261,324,483,8841266,10362,0 +32122,Nowa+33,660,579,698702991,10054,0 +32123,kto+ananasowy+pod+wod%C4%85+ma+dom,672,536,699628084,10030,0 +32124,AAA,539,327,1006847,9454,0 +32125,Wioska+klez+007,328,516,698295651,7879,0 +32126,Jednak+wol%C4%99+gofry,417,656,699736927,6001,0 +32127,090+Tomek,679,513,2135129,6998,0 +32128,Komornik+002,330,536,698290577,6451,0 +32129,Centrum+4,649,410,1086351,5708,0 +32130,27k%24+Grvvyq,657,576,699676005,10495,0 +32131,Wioska+Bochun10,327,474,7449254,10311,0 +32132,The+Game+Has+Only+Just+Begun,350,524,9280477,9976,0 +32133,Wioska+barbarzy%C5%84ska,370,395,848886056,7281,0 +32134,0071,418,347,699431255,6067,0 +32135,Deveste+ufam+Tobie,397,640,699783765,10000,0 +32136,Sin+City,563,334,8908544,5624,0 +32137,P%C3%B3%C5%82nocny+Bagdad,627,383,8847546,9835,0 +32138,O44+Derinkuyu,669,542,699272880,6501,0 +32139,Szlachcic,322,529,698388578,7425,0 +32140,000+Plutosea,328,540,9280477,9976,0 +32141,0075,420,348,699431255,6052,0 +32142,Wioska+Bochun10,323,473,7449254,7056,0 +32143,183.,352,592,849090130,7438,0 +32144,Lord+Lord+Franek+.%23172,516,321,698420691,12154,0 +32145,Bagdad,492,336,8847546,10068,0 +32146,007,536,673,2293376,9993,0 +32147,Bagdad,482,322,8847546,10068,0 +32148,I032,667,445,699722599,9775,0 +32150,%5B043%5D,650,587,698305474,3831,0 +32151,Ob+Konfederacja,446,337,848915730,7363,0 +32152,wioska+dla+myszy+nie+tyka%C4%87,591,583,8742874,9746,0 +32153,witojcie+pamponie+%2C,592,651,848995242,10426,0 +32154,.%3A010%3A.+ma,636,384,849078297,3466,0 +32155,A009+%C5%BBelazo,670,441,113796,10141,3 +32156,psycha+sitting,422,657,699736927,5664,0 +32157,Wioska+barbarzy%C5%84ska,404,652,699736927,6069,0 +32158,Architekci+Plac%C3%B3w+Boju,330,560,8004076,9646,0 +32159,k36,602,361,7340529,10654,0 +32160,%2A032,598,650,699567608,9717,0 +32161,Psycha+Siada,454,668,698807570,6994,0 +32162,Szulernia,386,365,7249451,2130,0 +32163,070+Wioska+010,659,428,9238175,9239,0 +32164,szkolna+17,353,604,849014147,2600,0 +32165,Wioska+barbarzy%C5%84ska,571,334,0,5498,0 +32166,052+Wioska+005,658,419,9238175,10323,0 +32167,08+Klasztor,539,673,849097981,8300,0 +32168,%3D%7C26%7C%3D,639,387,9101574,6019,0 +32169,%2A208%2A,343,414,699273451,10211,0 +32170,Wyspa+005,626,381,699756210,9120,0 +32171,AAA,528,324,1006847,9891,0 +32172,Wyspa+023,628,378,699756210,3377,0 +32173,067+komornicy,335,547,699510259,7587,0 +32174,%23%5B09%5D,430,662,699849210,4907,0 +32175,deff+100+%25,341,572,849012521,7919,0 +32176,A0271,327,475,8841266,9466,0 +32177,Wioska+barbarzy%C5%84ska,552,329,699797805,2596,0 +32178,Wioska+Bochun10,323,471,7449254,6975,0 +32179,%230193+Segadorr+dar,464,324,1238300,10178,0 +32181,nie+wolno,438,668,8966820,2453,0 +32182,0576,551,671,698659980,10019,0 +32183,Wioska+klez+003,328,513,698295651,9419,0 +32184,Wioska+Bochun10,327,491,7449254,10311,4 +32185,kathare,551,628,873575,10362,0 +32186,Wonderwall,333,548,698962117,9763,0 +32187,%2A%2A39%2A%2A,670,442,849098782,10195,0 +32188,%2A250%2A,334,448,699273451,7470,0 +32189,Myk+i+do+kieszonki,362,615,9319058,10104,0 +32190,Stolica,652,408,1086351,3706,0 +32192,Myk+i+do+kieszonki,365,615,9319058,7193,0 +32193,%23054.,666,432,556154,7142,0 +32194,Taran+010,622,360,2600387,10971,0 +32195,Kentin+ufam+Tobie,330,462,699783765,10069,0 +32196,R+001+%7EMicz%7E,488,677,699195358,10019,0 +32197,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,668,698807570,8481,0 +32198,%7E%7E088%7E%7E,630,616,7829201,8614,0 +32199,Gattacka,618,372,699298370,9769,1 +32200,-0007-,544,327,2972329,8720,0 +32201,Sony+911,581,657,1415009,7559,0 +32202,%2A%2A06%2A%2A,667,439,849098782,11954,0 +32203,B.01,675,496,699737356,10050,0 +32204,R+024,486,676,699195358,9390,0 +32205,marchewka,364,616,698908184,11781,0 +32206,%2A060%2A,349,411,699273451,10211,0 +32207,%2A232%2A,332,441,699273451,10211,0 +32209,Wioska+barbarzy%C5%84ska,429,335,699191464,8256,0 +32210,Wioska+Ukryta+w+Li%C5%9Bciach,360,603,8607734,7465,0 +32211,Wioska+barbarzy%C5%84ska,341,428,393668,6478,0 +32213,Tango,679,500,699737356,9282,0 +32215,V015,340,423,849097737,8793,0 +32216,Lord+Lord+Franek+.%23145,515,322,698420691,9882,0 +32217,Adidsa+4,412,652,9191031,3874,0 +32218,BETON+076,630,617,699277039,4662,0 +32219,O45+Fatsa,671,526,699272880,8588,0 +32220,AAA,519,322,1006847,9008,0 +32221,002,347,601,7183372,10476,0 +32222,054+California,674,519,2135129,9500,0 +32223,R+027,489,677,699195358,9677,0 +32224,UltraInstynkt-%2F%3D,577,338,699710633,9902,0 +32225,Wioska+barbarzy%C5%84ska,538,671,7589468,8836,0 +32226,Miasys+5,344,583,849090130,9953,0 +32227,002,675,490,699598425,8104,0 +32228,%2A059,585,659,699567608,9167,0 +32229,Garczyn,654,582,849039310,4144,0 +32230,031,611,633,849097799,7534,0 +32231,WB+01,638,617,2269943,8160,0 +32232,Y+%7C+Forest+Cyaaaanku,325,505,699213622,5282,0 +32233,__29__+Thorniara,377,622,6354098,3273,0 +32234,002,528,675,2293376,9993,0 +32235,A+008,368,619,699342219,6091,0 +32236,K34+x017,403,354,698364331,9496,0 +32237,Chekku+-+meito,327,525,9280477,9976,0 +32238,B+003,670,533,8078914,9924,6 +32239,005+Wioska+Plemienna,377,630,6354098,9787,0 +32240,123,477,675,9003698,10373,0 +32241,Wioska+barbarzy%C5%84ska,612,370,699759128,6404,0 +32242,Wrath+006,572,342,699756210,10401,0 +32243,Quattro,407,345,699854830,9727,0 +32244,Architekci+Plac%C3%B3w+Boju,336,553,8004076,9744,0 +32245,008+Alianz+Arena,673,458,849098769,9834,0 +32246,Wioska+barbarzy%C5%84ska,557,339,699072129,10221,0 +32247,Wioska+Bochun10,326,480,7449254,4802,0 +32248,Wioska1,581,655,699567608,7632,6 +32249,Wioska+barbarzy%C5%84ska,391,639,0,751,0 +32250,Piek%C5%82o+to+inni,593,346,848956765,4990,0 +32251,K34+x031,404,352,698364331,5612,0 +32252,008.,624,370,699098531,9954,0 +32253,Kiedy%C5%9B+Wielki+Wojownik,595,347,8632462,9725,0 +32254,Bagdad,490,326,8847546,9853,0 +32255,Kiedy%C5%9B+Wielki+Wojownik,568,339,848915730,9976,0 +32256,Wioska+barbarzy%C5%84ska,521,327,698350371,8027,0 +32257,Wioska+barbarzy%C5%84ska,678,483,699598425,10728,0 +32258,169...lord+rdw,450,327,6920960,6835,0 +32259,Neptun,552,335,699797805,3991,0 +32260,Wonderwall,333,545,698962117,9486,0 +32261,Piczki,648,410,1086351,3617,0 +32262,Nowa+41,664,571,698702991,9761,0 +32263,%230116+tomek791103,478,326,1238300,10178,0 +32264,kto+ananasowy+pod+wod%C4%85+ma+dom,667,540,699628084,8561,0 +32265,Wioska+038,650,596,848971079,9994,0 +32266,M181_013,339,436,393668,9885,0 +32267,Psycha+Siada,453,667,698807570,8547,0 +32268,%2A4602%2A+Du%C5%BCe+k%C5%82opoty,676,485,7973893,10287,2 +32269,I087,671,448,699722599,10227,0 +32270,Wioska+barbarzy%C5%84ska,341,426,393668,7977,0 +32271,%2A032,595,652,699567608,9706,0 +32272,Wioska+barbarzy%C5%84ska,554,333,699072129,10232,0 +32273,rotes+idz+spac+misiu,466,676,698807570,8516,0 +32274,AAA,531,323,1006847,6679,0 +32275,Wioska+Bochun10,331,470,7449254,6596,0 +32276,%23052.,665,430,556154,7459,0 +32277,Bromberg,352,595,849014147,8874,0 +32279,B005,472,674,8954402,10966,0 +32280,%23Sewa%23005,671,445,113796,9926,0 +32281,039+Brzezinki+akademia,377,376,848978297,3901,0 +32282,%2A164%2A,348,409,699273451,10211,0 +32283,%7C022%7C+Goudouras,494,680,699393742,9740,0 +32284,Orze%C5%82+Wyl%C4%85dowa%C5%82,466,673,698807570,10252,0 +32285,I024,665,445,699722599,9896,0 +32286,Myk+i+do+kieszonki,362,614,9319058,10838,0 +32287,028+Pa%C5%82a+na+hali%21,385,629,6354098,9798,0 +32288,Szlachcic%2FTaran,616,368,699759128,10237,0 +32289,Connecticut,676,522,699851345,6173,0 +32290,Wioska+barbarzy%C5%84ska,618,365,699857387,7117,0 +32291,.%3A011%3A.,635,381,849078297,3448,0 +32292,%23107+C,527,673,9037756,8356,0 +32293,Wioska+055,642,597,848971079,9761,0 +32294,Dejmon6,370,620,699805839,6037,0 +32295,Wioska+barbarzy%C5%84ska,675,466,699574408,9639,0 +32296,Piek%C5%82o+to+inni,564,357,848956765,10019,0 +32297,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,635,1434753,6481,0 +32298,Didek,666,562,849070946,10487,0 +32299,Wioska+barbarzy%C5%84ska,410,345,699380607,2397,0 +32300,105...tomcz,484,323,6920960,10425,0 +32301,R+006+%7EKsi%C4%85%C5%BC%C4%99%7E,487,679,699195358,9854,0 +32302,0097,411,352,699431255,2145,0 +32303,Wioska+barbarzy%C5%84ska,327,464,699823490,4125,0 +32304,Szlachcic,385,364,698160606,7795,0 +32306,031,478,671,698650301,10019,0 +32307,Homs,417,651,849089459,7673,0 +32308,D11,667,544,848995478,3481,0 +32309,003,655,592,699251542,4408,0 +32310,.%3A110%3A.+Niangmen,509,327,848934935,4195,0 +32311,013,359,605,699083129,8180,0 +32312,Piek%C5%82o+to+inni,588,349,848956765,9183,0 +32313,038+Assengard,475,677,699834004,11024,0 +32314,Wioska+barbarzy%C5%84ska,418,654,699736927,2032,0 +32315,63.+KaruTown,661,420,9238175,9741,0 +32316,A.09+sp%C3%B3%C5%82dzielnia+gryzoni,564,332,699072129,5647,0 +32317,015+Ard+Carraigh,467,669,699834004,9566,0 +32318,Bagdad,484,326,8847546,9897,0 +32319,Suppi,470,540,699856962,9623,0 +32320,665%7C552+Wioska+barbarzy%C5%84ska,665,552,6822957,6168,0 +32321,Istanbul,419,633,849089459,9628,0 +32322,Monetkownia,632,622,699759128,10237,0 +32323,Weso%C5%82ych+%C5%9Awi%C4%85t,564,336,848915730,5611,0 +32324,%7C020%7C+Livadia,496,673,699393742,10063,4 +32325,off+100+%25,337,568,849012521,10110,0 +32327,0611,484,674,698659980,9858,1 +32328,Wioska+P1ter,597,647,699567608,9431,0 +32329,Wioska+056,643,595,848971079,9761,0 +32330,Wioska+barbarzy%C5%84ska,322,502,7098955,7900,0 +32331,Ob+Konfederacja,430,334,848915730,7924,0 +32332,%2A191%2A,378,372,699273451,10211,0 +32333,C0163,328,538,8841266,10362,0 +32334,%5B008%5D+Zas%C5%82a%C5%82em+%C5%82%C3%B3%C5%BCko,669,436,849095068,10237,0 +32335,138...barba,444,338,6920960,6400,0 +32336,%2A168%2A,342,415,699273451,9890,0 +32337,B12,476,677,698652014,5802,0 +32339,M181_015,344,428,393668,9239,0 +32340,Szulernia,398,360,7249451,10000,0 +32341,AAA,530,329,1006847,9384,0 +32342,Wioska+Czesieekk,674,475,699574408,8956,0 +32343,Szlachcic,394,364,698160606,10393,0 +32344,Jednak+wol%C4%99+gofry,418,659,699736927,8168,0 +32345,D.017,402,650,849088243,5837,0 +32346,42+G%C3%B3ry+Smocze,620,368,8976313,6496,2 +32347,North+Savek,420,339,699796330,424,0 +32348,KR%C3%93L+PAPI+WIELKI,614,634,698191218,7397,0 +32349,%23081%23,622,633,692803,9761,0 +32350,024,361,607,699083129,8069,0 +32351,Po+%C5%9Bwi%C4%99tach,604,366,848915730,10503,0 +32352,Gattacka,619,374,699298370,9482,0 +32353,amator,560,666,848915531,5132,0 +32354,GuRu18.1,337,428,393668,4812,0 +32355,A-043-Hefitto,404,350,8419570,10168,0 +32356,C0056,321,525,8841266,10362,0 +32357,Sekou,675,512,699737356,10059,0 +32358,Brat+bierz,327,500,699262350,5358,0 +32359,Jednak+wol%C4%99+gofry,425,661,699736927,6886,0 +32360,Jednak+wol%C4%99+gofry,415,659,699736927,9650,0 +32361,Wioska+barbarzy%C5%84ska,338,423,2418002,3549,0 +32362,A.01+sp%C3%B3%C5%82dzielnia+gryzoni,565,335,699072129,10365,0 +32363,-+259+-+SS,536,677,849018239,7441,0 +32364,fff,492,322,698239813,9325,7 +32365,132...opelu,442,331,6920960,10470,0 +32366,Wioska+barbarzy%C5%84ska,502,673,699781762,9927,0 +32367,Sk_001,441,663,8954402,10728,0 +32368,ADEN,576,425,698588535,10203,0 +32369,064+Wioska+009,660,428,9238175,9598,0 +32370,Darma+dla+zawodnika,526,678,699494488,9340,0 +32371,%2A238%2A,334,445,699273451,9425,0 +32372,Darma+dla+zawodnika,523,679,699494488,10495,0 +32373,Wioska+Bochun10,330,474,7449254,7640,0 +32374,Magdalenakwa82,359,392,849084920,4129,2 +32375,A007,601,648,9023703,10237,0 +32376,223,424,338,7271812,7933,0 +32379,216,449,327,698365960,7693,0 +32381,Wioska+barbarzy%C5%84ska,573,659,6818593,9835,0 +32382,B+011,660,533,8078914,9924,0 +32383,Wioska+barbarzy%C5%84ska,333,439,393668,5753,0 +32384,081.+Pentele,654,408,849091866,9614,0 +32385,B.023,678,501,9188016,10000,5 +32386,Wioska+Bochun10,324,468,7449254,4928,0 +32387,11.+Tretogor,334,456,848910122,395,0 +32388,Wioska+r+19,554,669,848915531,11130,0 +32389,004,486,634,272173,9650,0 +32390,A001,600,646,9023703,10237,0 +32391,KR%C3%93L+PAPI+WIELKI,640,603,698191218,10000,0 +32392,%5B036%5D,667,549,698305474,8308,0 +32393,072.+Nia,644,614,8337151,10083,0 +32394,2.Getafe,563,669,698215322,7548,0 +32395,Svaneke,337,571,849098387,11678,0 +32396,003.+Arsenal,496,632,848953066,10002,0 +32397,218,448,328,698365960,7239,0 +32398,Deveste+ufam+Tobie,397,642,699783765,10000,0 +32399,B+050,677,533,8078914,6858,0 +32401,C0042,323,520,8841266,10362,0 +32402,032%7C%7C+Hercules,486,644,849035525,10019,0 +32403,Szlachcic,397,352,3484132,10479,0 +32405,0070,412,349,699431255,8418,0 +32406,Przewidzia%C5%82e%C5%9B+%C5%BCe+ja+oddasz%3F,481,638,6948793,10068,0 +32407,Wioska+barbarzy%C5%84ska,519,327,698350371,8187,0 +32408,Jednak+wol%C4%99+gofry,499,641,699725436,10311,0 +32409,A.14+sp%C3%B3%C5%82dzielnia+gryzoni,561,332,699072129,8080,0 +32410,015,610,363,6822957,8807,0 +32411,%230197+Segadorr+dar,463,325,1238300,10178,0 +32412,D%C4%85browa+0023,349,591,849096972,3774,0 +32413,Wioska+VII,585,343,698200480,4679,0 +32414,Niszapur,430,658,849089459,3978,0 +32415,158+Nocny+Jastrz%C4%85b+003,644,403,699491076,10492,0 +32416,Architekci+Plac%C3%B3w+Boju,335,562,8004076,9880,0 +32417,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F8,630,621,33900,10118,0 +32418,Sandacz,328,552,699265922,9888,0 +32419,025,360,608,699083129,7721,0 +32420,049,478,631,699336777,9902,0 +32421,Wioska+barbarzy%C5%84ska,511,674,699781762,9771,0 +32422,I%23028,620,363,2065730,9797,0 +32423,Wioska+07,501,322,951823,6875,0 +32424,070.+Parlim,645,612,8337151,10147,0 +32425,Wioska+barbarzy%C5%84ska,559,335,699072129,10221,0 +32426,002+Ceg%C5%82owa+wioska,367,619,8268010,9835,0 +32428,AAA,535,323,1006847,9561,3 +32429,003,608,642,849097799,9088,0 +32430,Grupka+7+wiosek+2,354,602,698353083,9646,0 +32431,Kiedy%C5%9B+Wielki+Wojownik,563,337,848915730,9976,0 +32432,K34+-+%5B155%5D+Before+Land,432,337,699088769,9063,0 +32433,C120,365,620,699383279,11984,2 +32434,Szlachcic,396,353,3484132,10475,0 +32435,Taran,341,585,6180190,9965,0 +32436,K34+x019,403,356,698364331,8715,0 +32437,Pstrag,326,546,699265922,7727,0 +32438,Architekci+Plac%C3%B3w+Boju,331,554,8004076,9880,0 +32439,K34+-+%5B156%5D+Before+Land,431,335,699088769,7636,0 +32440,Chekku+-+meito,322,527,9280477,9976,0 +32441,R+004+%7EKaprys%7E,490,679,699195358,10019,4 +32442,Y+%7C+Forest+Cyaaaanku,322,495,699213622,10000,0 +32443,K34+x020,404,355,698364331,8467,0 +32444,%5BB%5D_%5B045%5D+Dejv.oldplyr,431,340,699380607,10495,0 +32445,Ave+Why%21,481,673,699121671,9809,0 +32446,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,490,637,6180190,9445,0 +32447,Wioska+barbarzy%C5%84ska,677,489,699598425,10728,0 +32449,1v9+machine,392,642,699697558,10019,0 +32450,I052,672,457,699722599,9956,0 +32451,Wioska+Bochun10,323,474,7449254,7961,0 +32452,%2A%2A12%2A%2A,632,388,849098782,9956,0 +32453,%2A%2A08%2A%2A,670,431,849098782,12154,0 +32454,Kentin+ufam+Tobie,328,454,699783765,10000,0 +32455,109.Stradi,447,327,698365960,8518,0 +32456,Wioska+barbarzy%C5%84ska,337,564,849012521,2391,0 +32457,101.+Camulodunum,656,412,849091866,9969,4 +32460,Jednak+wol%C4%99+gofry,419,659,699736927,6397,0 +32461,007%7C%7C+Libra,488,647,849035525,10019,0 +32462,Wioska+Bochun10,323,465,7449254,4189,0 +32463,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,674,698807570,9918,0 +32464,Wioska,328,457,848946608,3614,0 +32465,C+013,677,516,8078914,10495,0 +32466,aaaa,483,641,6948793,9976,0 +32467,cz+Wioska+79,366,381,3909522,4669,0 +32469,AJJ,345,585,7318415,2670,0 +32470,%2A255%2A,337,438,699273451,9672,0 +32471,Szulernia,379,366,7249451,3356,0 +32472,Taran,678,497,699598425,10728,0 +32473,A0272,323,485,8841266,10362,0 +32476,Szlachcic,392,360,3484132,10475,0 +32477,xdd,491,636,6180190,9936,0 +32478,Wioska+048,645,597,848971079,9761,0 +32479,057+%7C+PALESTINA,662,426,9228039,5110,0 +32480,Wyspa+003,627,381,699756210,9925,0 +32482,%230130+Thorus5,477,325,1238300,10178,0 +32483,Gattacka,621,373,699298370,10224,0 +32484,%2A044%2A,352,399,699273451,10211,0 +32485,004,677,487,7085502,9729,0 +32486,New+World,436,669,698152377,10295,0 +32488,Komornicy+023,353,603,699336777,6807,0 +32489,%7CA%7C+Farmeadow,482,646,698807570,10495,0 +32490,%230125+korniczeks,476,324,1238300,10178,0 +32491,A+012,368,620,699342219,6062,0 +32493,Barba2,651,408,1086351,4487,0 +32494,Jednak+wol%C4%99+gofry,489,640,699725436,9830,0 +32495,Jednak+wol%C4%99+gofry,486,640,699725436,9835,0 +32496,A0273,323,484,8841266,10362,0 +32497,0130,543,673,698659980,10019,0 +32498,X+%7C+Forest+Cyaaaanku,323,479,699213622,9792,0 +32499,R+010+%7EThe+end%7E,486,678,699195358,10019,0 +32500,Lord+Lord+Franek+.%23103,523,329,698420691,10160,0 +32501,019+Lux+robota%21,379,631,6354098,10141,0 +32502,O56+Fano,675,534,699272880,10234,0 +32503,Osada+koczownik%C3%B3w,625,630,1415009,10487,3 +32504,0412,533,672,698659980,8108,0 +32505,Wioska+barbarzy%C5%84ska,338,576,6180190,3941,0 +32506,005,322,466,848895676,2063,0 +32507,Wioska+barbarzy%C5%84ska,466,323,699191449,5487,0 +32508,%C5%BBUBR+PSYCHIATRYK+001,611,643,33900,8278,0 +32509,Wioska+barbarzy%C5%84ska,347,581,6180190,2427,0 +32510,bromberg,352,605,849014147,7700,6 +32511,12+%C5%81otwa,593,491,8925695,10341,0 +32512,Ave+Why%21,454,673,698585370,8053,0 +32513,Wioska+bprog,642,610,699432672,8018,0 +32514,Szulernia,382,367,7249451,8424,0 +32516,%5BB%5D_%5B030%5D+Dejv.oldplyr,424,344,699380607,9595,0 +32517,A+015,362,612,699342219,10237,0 +32518,Wioska+100,646,588,848971079,10418,0 +32520,B+051,674,542,8078914,6586,0 +32521,Szulernia,388,368,7249451,8562,0 +32522,008+.10.Panzergrenadier+Division,605,359,849091899,6162,0 +32523,Wioska+barbarzy%C5%84ska,509,674,699781762,9937,0 +32524,Deveste+ufam+Tobie,395,643,699783765,10000,5 +32525,Taran+004,622,375,699098531,10971,0 +32526,Ave+Why%21,446,669,698585370,9623,0 +32527,Wioska+r+2,555,669,848915531,5218,0 +32528,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,671,698807570,6919,0 +32529,0361,559,666,698659980,10160,0 +32530,sony911,615,632,1415009,10188,0 +32532,029+Firma+na+Pana+liczy%21,374,627,6354098,9713,0 +32533,C0192,322,531,8841266,7192,0 +32534,Wioska+barbarzy%C5%84ska,588,651,848995242,10238,0 +32536,0105,543,669,698659980,10160,0 +32537,66k%24+Grvvyq,658,569,699676005,7241,0 +32538,_PUSTA,672,552,699628084,10495,7 +32539,amator+czysta,557,665,848915531,5621,0 +32540,%2A242%2A,332,448,699273451,10559,0 +32541,Wioska+barbarzy%C5%84ska,350,598,7183372,6207,0 +32542,Wioska+barbarzy%C5%84ska,673,468,699574408,10029,0 +32543,%2A057%2A,354,400,699273451,10211,0 +32544,fff,493,321,698239813,9709,0 +32545,krytl09,515,320,1990750,10068,0 +32546,.009.+Love+Hate,501,377,698489071,10316,0 +32547,%2311,432,661,699849210,3830,0 +32548,Sekou+1,676,508,699737356,10083,0 +32549,Miasys+4,344,584,849090130,5967,0 +32550,AAA,531,322,1006847,6791,0 +32551,%230121+tomek791103,479,320,1238300,8301,0 +32552,%7C057%7C+Barba,498,679,699393742,8621,0 +32553,%230115+tomek791103,478,322,1238300,9765,0 +32554,K34+-+%5B157%5D+Before+Land,431,338,699088769,8578,0 +32555,V013,338,419,849097737,2264,0 +32556,Wioska+barbarzy%C5%84ska,670,452,113796,2024,0 +32557,012,357,607,699083129,7829,0 +32558,067,675,491,7085502,9725,0 +32559,%28006%29Rall+Elorim,334,567,849098695,10311,0 +32560,Wioska+Natka1968_05,526,324,699644852,1633,0 +32561,Myk+i+do+kieszonki,360,615,9319058,9799,0 +32563,Chekku+-+meito,326,528,9280477,9976,0 +32564,Wioska+barbarzy%C5%84ska,506,680,699781762,9821,0 +32565,%3A%3A%3A2%3A%3A%3AKoniki,450,666,699827112,10004,6 +32566,Grupka+7+wiosek+4,355,599,698353083,10025,0 +32567,%2A054%2A,353,400,699273451,10211,0 +32568,B+036,674,522,8078914,8703,0 +32569,052+Arizona,674,521,2135129,9553,0 +32570,%3D%7C25%7C%3D,637,388,9101574,10311,0 +32571,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,386,637,1434753,10068,0 +32572,%23Sk_011,438,662,699849210,3308,0 +32573,%23103+C,530,672,9037756,8193,0 +32574,w%C4%85chaj+wora+%21%21%21,589,654,848995242,10362,0 +32575,Wzdr%C4%99ga,329,550,699265922,9825,0 +32576,amator+czysta,552,665,848915531,5424,0 +32577,TWIERDZA+%232,587,343,849063793,4365,0 +32578,030,600,355,2502956,10019,0 +32579,O34+Sendai,676,523,699272880,9458,0 +32580,Taran,344,574,6180190,9957,0 +32581,C0043,323,519,8841266,10362,0 +32583,Kentin+ufam+Tobie,330,453,699783765,10019,0 +32584,1v9+machine,389,640,699697558,10019,0 +32585,Wioska+barbarzy%C5%84ska,461,326,699191449,8278,0 +32586,J04,365,597,849090130,6379,0 +32587,Parole,350,403,699595556,5850,2 +32588,018,361,606,699083129,4715,0 +32589,Wioska+Bochun10,328,517,7449254,10311,0 +32590,117,659,426,849088515,6756,0 +32591,Wioska+barbarzy%C5%84ska,552,333,699072129,10183,0 +32592,Weso%C5%82ych+%C5%9Awi%C4%85t,562,334,848915730,5062,0 +32593,008,356,606,699083129,9740,0 +32594,005+Schwere+Panzer-Abteilung+502,604,360,849091899,9797,0 +32596,Piek%C5%82o+to+inni,599,358,848956765,10160,0 +32597,polska,351,595,849014147,2292,0 +32598,witam+somsiadow,587,659,848995242,10170,0 +32599,A13,463,675,698652014,9889,3 +32600,XXXX,489,326,849054951,10162,0 +32601,Taran,338,573,6180190,9959,0 +32602,I088,672,448,699722599,8220,0 +32603,Komornicy+021,353,606,699336777,12154,0 +32604,D.028,395,647,849088243,3181,0 +32605,C.01,681,515,699737356,10143,0 +32606,Szlachcic%2FTaran,635,380,699759128,10237,0 +32607,0542,562,663,698659980,6334,0 +32608,Piek%C5%82o+to+inni,327,538,848956765,10160,0 +32609,Wrath+010,575,342,699756210,9814,0 +32610,A-051-Heffitto,401,348,8419570,10168,0 +32611,021+%2A+Lady+Porto+%2A,645,394,699406750,12154,0 +32612,182.,352,591,849090130,7537,0 +32613,%7E%7E094%7E%7E,630,615,699567608,10361,0 +32614,AAA,528,329,1006847,4647,0 +32615,Psycha+Siada,448,666,698807570,8430,0 +32616,1v9+machine,386,641,699697558,10019,0 +32617,030%7C%7C+Vela,468,679,849035525,10019,0 +32618,%2A239%2A,333,444,699273451,10211,0 +32619,Komornik+001,329,536,698290577,8249,0 +32620,Alfama,350,588,699494480,6873,0 +32621,001,362,610,699083129,9924,0 +32622,A0277,321,483,8841266,9253,0 +32623,UltraInstynkt%2B%2B,585,341,699710633,10068,0 +32624,Out+of+Touch,331,437,698962117,3826,0 +32625,Szale,463,676,698807570,10019,1 +32626,C0035,321,520,8841266,10362,0 +32627,M181_012,338,434,393668,9173,0 +32628,O64+Miryang,674,552,699272880,10351,0 +32629,Wioska+barbarzy%C5%84ska,557,328,699072129,10229,0 +32630,Wioska+barbarzy%C5%84ska,677,471,699574408,8157,0 +32631,A003,487,680,8954402,10083,0 +32632,Osada+koczownik%C3%B3w,623,628,1415009,10320,7 +32633,Taran,681,498,699598425,10728,0 +32634,%23079%23,618,636,692803,9761,0 +32635,146+Oj+Mareczku+co%C5%9B+za+du%C5%BCo+cyfr,372,580,699382126,6043,0 +32636,Sony+911,580,657,1415009,7024,0 +32637,Wie%C5%9B+Arhibitsusa,549,325,849098136,12154,0 +32639,Lord+Lord+Franek+.%23148,508,319,698420691,8212,0 +32640,%3D%7C10%7C%3D,638,387,9101574,10495,0 +32641,Wioska+barbarzy%C5%84ska,370,375,0,2028,0 +32642,Ave+Why%21,452,672,698585370,6001,0 +32643,025.,618,374,9048764,10654,0 +32644,%230126+korniczeks,474,323,1238300,10242,0 +32645,-+DragonB,547,327,699825236,6591,0 +32646,Ave+Why%21,478,679,699121671,9809,0 +32647,Normalnie+nie,575,569,699785935,10311,0 +32648,A+005,369,616,699342219,10237,0 +32649,Ob+Konfederacja,440,337,848915730,9763,0 +32650,002,668,564,699493750,7773,0 +32651,012,319,502,7097727,4242,0 +32652,Taran+009,623,367,699098531,10971,0 +32653,Architekci+Plac%C3%B3w+Boju,333,560,8004076,9880,0 +32654,064,452,332,2502956,10019,0 +32655,Pobozowisko,367,610,699513260,4791,0 +32656,Wsch%C3%B3d+Droga+007,665,559,698562644,5120,0 +32657,%23013.+Nobody+Like+Me,457,676,848896948,8590,0 +32658,016,614,360,6822957,8901,0 +32659,Wioska+Westor+2,358,394,699530673,4380,0 +32660,Wioska+barbarzy%C5%84ska,348,596,7183372,6469,0 +32661,Psycha+Siada,448,672,698807570,4932,0 +32662,Wioska+Cray123,373,380,699711706,1117,0 +32663,I025,667,447,699722599,9983,0 +32665,.%3A015%3A.,634,378,849078297,4626,0 +32666,-0006-,543,326,2972329,9750,0 +32667,AAA,532,322,1006847,9685,0 +32668,C0241,327,521,8841266,10362,0 +32669,Wioska+XIV,577,345,698200480,7784,0 +32670,Ob+Konfederacja,428,335,848915730,9791,0 +32671,%2A032,595,650,699567608,9004,0 +32672,Taran,342,581,6180190,9897,0 +32673,Psycha+Siada,462,670,8099868,730,0 +32674,044,673,511,699413040,9763,0 +32676,%5B025%5D+Wioska+barbarzy%C5%84ska,667,436,849095068,9312,0 +32678,%2A230%2A,332,438,699273451,10211,0 +32679,Ob+Konfederacja,437,335,848915730,9816,0 +32680,%2A008,598,646,699567608,9129,0 +32681,Wioska+barbarzy%C5%84ska,384,371,698160606,7368,0 +32682,%7C025%7C+RIO,499,680,699781762,8692,0 +32683,Szlachcic%2FTaran,634,391,699759128,10104,0 +32684,097...tomecz,480,326,6920960,10217,0 +32685,-+Apokalipto181,547,328,699825236,9349,0 +32686,Lord+Lord+Franek+.%23092,515,324,698420691,9976,0 +32687,KR%C3%93L+PAPI+WIELKI,634,614,698191218,10000,0 +32688,SOKzGUMIjag%C3%B3d,594,347,849059491,9089,0 +32689,Kentin+ufam+Tobie,335,455,699783765,10005,0 +32690,Wioska+barbarzy%C5%84ska,343,424,393668,6397,0 +32691,014+zs+1,675,503,2135129,9586,0 +32692,Wioska+090,659,587,848971079,9761,0 +32693,053+komornicy,332,545,699510259,9761,0 +32694,Szlachcic,393,358,3484132,10476,0 +32695,Monetkownia,621,631,699759128,10009,0 +32696,106.Stradi,454,328,698365960,10244,0 +32697,Certa,333,552,699265922,10297,4 +32698,217,433,332,7271812,10287,0 +32699,A+018,363,619,699342219,10749,0 +32700,UltraInstynkt%3D,579,338,699710633,10068,0 +32701,Wioska+barbarzy%C5%84ska,672,475,699574408,9405,0 +32703,%230199+Segadorr+dar,458,325,1238300,10178,0 +32704,A.03+sp%C3%B3%C5%82dzielnia+gryzoni,560,333,699072129,9640,0 +32705,Wioska+barbarzy%C5%84ska,465,325,699191455,5926,0 +32706,-24-,629,376,699837826,2471,0 +32707,J%23011,569,333,2065730,8637,0 +32708,Wioska+barbarzy%C5%84ska,554,336,699072129,10119,0 +32709,2.4,371,382,849095959,1941,0 +32710,Wioska+barbarzy%C5%84ska,355,603,849014147,2365,0 +32711,Muchomor+%2A017%2A,520,674,606407,10300,0 +32712,013,457,329,2502956,10019,0 +32713,Bania+u+Cygana,342,412,849098299,3396,0 +32714,Szlachcic%2FTaran,641,395,699759128,10237,0 +32715,Wioska+barbarzy%C5%84ska,630,378,7555180,5998,0 +32716,A004,493,679,8954402,8547,0 +32717,Wioska+Sir+Zordon+002,666,574,478956,6251,0 +32718,%24MinnesotaTimberwolves,680,519,699795378,6661,0 +32719,Niby+01,357,605,8607734,5918,0 +32720,0441,537,669,698659980,8507,0 +32721,Sekou,674,509,699737356,10059,0 +32722,077.+Acyra,653,409,849091866,10057,7 +32723,S-F.+Elektryczna+Mysz,662,579,849098693,6617,0 +32724,Chekku+-+meito,326,525,9280477,9976,0 +32725,%230071+tomek791103,478,331,1238300,10178,0 +32726,Deveste+ufam+Tobie,400,643,699783765,10000,0 +32727,hell,649,406,1086351,7930,8 +32728,018,460,327,2502956,10019,0 +32729,080+%C5%9Awi%C4%85teczna+Bombka,649,399,699491076,10001,0 +32730,0294,547,671,698659980,10160,0 +32731,V011,338,417,849097737,4114,0 +32732,Wioska+XIII,582,343,698200480,7794,0 +32733,Pretoria+1,558,331,699072129,10252,0 +32734,A0282,325,484,8841266,10362,0 +32735,Nie,441,666,8966820,2235,0 +32736,Szlachcic,381,369,698160606,7487,0 +32737,083+Ludzie+tu+nikogo+nie+ma,332,571,699382126,10495,0 +32738,AAA,531,326,1006847,9766,0 +32739,%2A002%2A,357,388,699273451,10211,0 +32740,%230114+tomek791103,479,323,1238300,10178,0 +32741,Brown,492,675,849004274,9835,0 +32742,SOKzGUMIjag%C3%B3d,594,346,849059491,4312,0 +32743,Horyzont+zdarze%C5%84,514,680,7581876,10019,0 +32744,%5B026%5D+Wioska+barbarzy%C5%84ska,667,434,849095068,9312,0 +32745,Wioska+Samuraj,500,320,698680806,8791,0 +32746,Wioska+barbarzy%C5%84ska,436,331,699308637,9799,0 +32747,002+Po%C5%BCarski+na+wynos,479,660,698650301,8803,0 +32748,Taran,337,575,6180190,9959,0 +32750,Piek%C5%82o+to+inni,591,350,848956765,8694,0 +32751,%C5%BBUBRAWKA+057+.%3A%3A.nic+tu+nie+ma,613,643,33900,10247,0 +32752,Gudhjem,335,569,849098387,8341,0 +32753,%23005%23,619,636,692803,9761,0 +32754,059,534,670,2293376,9993,0 +32755,Myk+i+do+kieszonki,363,615,9319058,7538,0 +32756,AAA,528,321,1006847,9295,0 +32758,Redemption+Song,645,604,2269943,8367,0 +32759,Setubal,349,590,699494480,9560,2 +32760,V010,340,418,849097737,4415,0 +32761,037,530,677,2293376,9993,0 +32762,Wyspa+010,628,376,699756210,10273,0 +32763,%23065%23,624,623,692803,9761,0 +32764,B05,476,679,698652014,9835,0 +32765,052,675,515,699413040,6749,0 +32766,%23004%23,629,632,692803,9761,0 +32767,R%C4%99cznik+do+zmiany,355,405,699697558,10019,0 +32768,Miami%2C+Floryda,603,371,7462660,10444,0 +32769,B.02,675,493,699737356,8748,0 +32770,1v9+machine,391,642,699697558,10019,0 +32771,lolo,625,628,849092639,2334,0 +32772,R%C4%99cznik+do+zmiany,354,403,699697558,10019,0 +32773,025+Nowy+rok,356,611,8268010,4641,0 +32774,084,627,373,2502956,6871,0 +32775,%2A%2A36%2A%2A,668,441,849098782,10643,0 +32776,SJ3,327,449,6258092,10495,0 +32777,Wioska+barbarzy%C5%84ska,382,370,698160606,7379,0 +32778,Barbababarba,345,409,849098299,2703,0 +32779,Kentin+ufam+Tobie,323,461,699783765,10000,0 +32782,AAA,540,325,1006847,4344,0 +32783,Jehu_Kingdom_69,664,436,8785314,645,0 +32784,Wioska+barbarzy%C5%84ska,680,482,699598425,10728,0 +32785,125.+Bezmiar+Wschodni+Daleki,644,400,8337151,6841,0 +32786,Westfold.016,338,427,848918380,8068,0 +32787,%5BB%5D_%5B029%5D+Dejv.oldplyr,424,343,699380607,10233,0 +32788,Taran+022,639,381,699098531,10728,0 +32789,WB+02,639,611,2269943,8295,0 +32790,A004+PASTOR,663,449,113796,10160,0 +32791,46.+KaruTown,641,400,849091866,6789,0 +32792,Szlachcic,387,361,698160606,10476,0 +32793,042,522,680,2293376,9993,0 +32794,0017,628,389,848924219,4835,0 +32795,122...tomcz,477,321,6920960,10273,0 +32796,%5B02%5D,428,662,699849210,7955,3 +32797,Wioska+barbarzy%C5%84ska,663,560,849045915,8013,0 +32798,0656,551,670,698659980,9505,7 +32799,009,525,673,2293376,8525,0 +32800,Taran,342,583,6180190,9968,0 +32801,%7C061%7C+Id%C4%85+%C5%9Awi%C4%99ta,509,681,699781762,9811,0 +32802,%3D%7C37%7C%3D,640,390,9101574,10495,0 +32803,AJY,343,586,7318415,3663,0 +32804,Lord+Lord+Franek+.%23147,508,323,698420691,9968,0 +32805,Szulernia,374,374,7249451,3102,0 +32806,0124,411,347,699431255,5082,0 +32807,A0262,328,476,8841266,10362,2 +32809,C0148,324,532,8841266,9355,0 +32810,26.+335i,552,326,699072129,10697,0 +32812,Wioska+barbarzy%C5%84ska,630,380,7555180,9027,0 +32814,Wioska+barbarzy%C5%84ska,675,470,699574408,9950,0 +32815,Lord+Lord+Franek+.%23134,519,328,698420691,7143,0 +32817,012,591,351,7340529,9783,0 +32818,0444,559,670,698659980,8578,0 +32819,%28011%29Panatham,332,567,849098695,8946,0 +32820,_PUSTA,650,591,698768565,10237,0 +32821,002+Rabarbarum,592,343,699576407,7290,0 +32822,Brat447,391,499,699262350,10971,0 +32823,006,322,476,7127455,7530,0 +32824,025+g%C3%B3ra,661,433,9238175,10508,0 +32825,%230122+tomek791103,480,319,1238300,9206,0 +32826,Zach%C3%B3d+002,369,387,8967440,3516,0 +32827,%230113+tomek791103,477,322,1238300,10178,0 +32828,Wioska+Sir+Zordon,665,574,478956,8909,0 +32829,krytl01,510,319,1990750,9821,0 +32830,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,673,698807570,9854,6 +32831,Wioska+JasJ,573,341,7560474,11083,0 +32832,kto+ananasowy+pod+wod%C4%85+ma+dom,675,538,699628084,8150,0 +32833,%2A059%2A,350,410,699273451,10211,0 +32834,Wioska+r+10,557,671,848915531,4257,0 +32835,-+295+-+SS,544,677,849018239,8330,0 +32836,Wioska+barbarzy%C5%84ska,353,402,699323302,2326,0 +32837,-+291-+SS,544,675,849018239,9417,0 +32838,Wioska+Sir+Zordon+003,664,576,478956,7266,0 +32839,Szlachcic%2FTaran,640,394,699759128,10237,0 +32840,AAA,530,321,1006847,7040,0 +32841,32.+Sophisticated,557,330,699072129,10220,0 +32842,A+052,369,625,699342219,9279,0 +32843,Wioska+barbarzy%C5%84ska,554,332,699072129,10221,0 +32844,054.+Eldor,657,590,8337151,10083,0 +32845,X+%7C+Forest+Cyaaaanku,322,477,699213622,8526,0 +32846,Freytaga+II,641,609,2269943,8124,0 +32847,2.Leganes,563,668,698215322,4867,0 +32848,Szlachcic%2FTaran,640,397,699759128,10104,0 +32849,Wioska+barbarzy%C5%84ska,629,380,699837826,3403,0 +32850,Wioska+barbarzy%C5%84ska,350,603,7183372,7109,0 +32851,MMMMMM,490,324,698239813,10340,0 +32852,Grvvyq+108k%24,680,530,699676005,10096,0 +32853,D.005,403,648,849088243,8305,0 +32854,046+%7C+PALESTINA,657,419,9228039,9544,0 +32855,Taran,344,580,6180190,9223,0 +32857,Westfold.019,336,428,848918380,8371,0 +32858,R+018+%7EMorthal%7E,487,675,699195358,9717,0 +32859,102,593,649,849097799,8357,0 +32860,Pikachu,550,327,849098136,5708,0 +32862,Wioska+barbarzy%C5%84ska,675,476,699574408,9934,0 +32863,A001,492,678,8954402,10495,0 +32864,%230095+barbarzy%C5%84ska,472,329,1238300,9356,0 +32865,Tykocin,576,658,6818593,9835,0 +32866,Jednak+wol%C4%99+gofry,419,656,699736927,7473,0 +32867,Wioska+Brzydal+3-5,669,553,9151549,3250,0 +32868,DejMon4,366,622,699805839,9715,0 +32869,Szlachcic,383,366,698160606,9853,0 +32870,DejMon,371,620,699805839,9182,0 +32871,Wioska,327,454,848946608,2846,0 +32872,Kentin+ufam+Tobie,329,454,699783765,10000,0 +32873,Ave+Why%21,445,672,698585370,9085,0 +32874,%2AINTERTWINED%2A,517,679,698704189,7042,0 +32875,Szlachcic,398,355,3484132,10348,0 +32876,Wioska+b1,503,317,6118079,7616,0 +32877,004+Wioska+barbarzy%C5%84ska,606,505,6409472,4488,0 +32878,02.Twoje+Offy,448,670,361125,3706,0 +32879,TAKE+It,578,338,699710633,9994,0 +32880,A+006,366,619,699342219,8530,0 +32881,SPOCENI+KUZYNI,408,649,848913998,5902,0 +32882,Niby+02,355,602,8607734,10019,0 +32883,-+255+-+SS,537,676,849018239,7802,0 +32884,Szlachcic,382,366,698160606,10513,0 +32885,038+Boru1996+%232,375,630,6354098,10143,0 +32886,Wioska+barbarzy%C5%84ska,460,325,849017820,5026,0 +32887,AAA,536,324,1006847,9246,0 +32888,BB1,650,409,1086351,4535,0 +32889,%3A%3A%3A2%3A%3A%3AKoniki,450,667,699827112,7863,0 +32890,%23104+C,529,672,9037756,8348,0 +32891,053,458,329,2502956,9677,0 +32892,224,420,337,7271812,7179,0 +32893,Wioska+3,574,334,7560474,6088,0 +32894,004+LordDaymon,378,630,6354098,9330,0 +32895,-009-,541,325,698588812,3305,0 +32896,Darma+dla+zawodnika,521,678,699494488,9005,0 +32897,Wioska+%231,589,344,849063793,3759,0 +32899,Zeta+Reticuli+W,359,398,699323302,6051,0 +32900,%2A062%2A,349,412,699273451,10211,0 +32901,030.,633,378,698361257,3855,0 +32902,%230049+geryk,470,329,1238300,10178,0 +32903,Brickstone,647,404,1086351,2592,0 +32904,Wioska+Bochun10,325,471,7449254,10311,0 +32905,Wioska+barbarzy%C5%84ska,351,603,7183372,7558,0 +32906,Wioska+barbarzy%C5%84ska,639,383,7340529,10654,0 +32907,Adam%C3%B3w,568,665,698723158,8066,0 +32908,Maradonna,623,625,699778867,12154,0 +32909,I006,666,448,699722599,9841,0 +32910,Psycha+Siada,445,669,698807570,5414,0 +32911,Wioska+ba15,496,324,6118079,6906,0 +32912,Guru18,332,431,849098192,6610,0 +32913,Wioska+barbarzy%C5%84ska,376,374,699711706,3728,0 +32914,Wioska+Bochun10,322,469,7449254,6696,0 +32916,02.+Novigrad,331,449,848910122,10539,0 +32917,Barba,414,660,849089459,3574,0 +32918,R%C4%99cznik+do+zmiany,351,407,699697558,10019,0 +32919,021,483,372,849010255,8696,0 +32920,030+Maaooooo%21,383,633,6354098,10144,0 +32921,Szlachcic,392,353,3484132,10476,0 +32922,A14,466,674,698652014,9906,0 +32923,Osada+koczownik%C3%B3w,675,479,699574408,9722,2 +32924,Pretoria+3,558,332,699072129,10229,0 +32925,043,449,548,698290577,868,0 +32926,C0027,320,515,8841266,10362,0 +32927,046+Numer,658,420,9238175,10157,0 +32928,Lord+Arsey+KING,518,490,848956513,10285,0 +32930,Wioska+barbarzy%C5%84ska,342,424,393668,6465,0 +32932,056+Wioska+001,659,418,9238175,10400,0 +32933,Wioska+barbarzy%C5%84ska,557,331,699072129,10217,0 +32934,060,530,679,2293376,9514,0 +32935,C0071,322,514,8841266,10362,0 +32936,Y+%7C+Forest+Cyaaaanku,320,489,699213622,10000,0 +32937,Komornik+005,326,537,698290577,6168,0 +32939,Szlachcic,383,362,698160606,10476,0 +32941,Lord+Lord+Franek+.%23135,527,321,698420691,7882,0 +32942,0011+MzM,614,556,698416970,9258,0 +32943,New+World,438,671,698152377,10290,0 +32945,Lin,330,550,699265922,7538,0 +32946,Osada+koczownik%C3%B3w,403,654,699736927,6184,7 +32947,Did,669,562,849070946,10971,0 +32948,0307,552,675,698659980,9015,0 +32949,ZUBRAWKA+052+pinkolinka,615,637,33900,10222,0 +32950,New+Land+23,344,413,849064752,2394,0 +32951,Piek%C5%82o+to+inni,589,351,848956765,9761,0 +32952,Wioska+barbarzy%C5%84ska,639,526,7047342,10484,0 +32953,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F6,610,637,33900,8131,0 +32954,%230185+KacperII,466,322,1238300,5641,3 +32955,%2A220%2A,370,376,699273451,5497,0 +32956,188...Segador+M,445,329,6920960,9337,0 +32957,029.xxx,494,677,699393742,7783,0 +32958,%5B020%5D,635,529,698305474,9809,0 +32959,X+%7C+Forest+Cyaaaanku,325,499,699213622,4963,0 +32960,Wioska+barbarzy%C5%84ska,620,366,699857387,6662,0 +32961,Wioska+barbarzy%C5%84ska,344,592,7183372,7376,0 +32962,Wioska+barbarzy%C5%84ska,503,678,699781762,10495,0 +32963,005,676,486,7085502,9726,0 +32964,Wioska+060,652,595,848971079,9761,0 +32965,Centrum+7,648,408,1086351,2925,0 +32966,Wioska+barbarzy%C5%84ska,641,531,7047342,10617,0 +32968,Y+%7C+Forest+Cyaaaanku,318,488,699213622,10000,0 +32969,TWIERDZA+%234,584,341,849063793,3931,0 +32970,100...tomecz,481,322,6920960,10474,0 +32971,DejMon8,366,623,699805839,4298,0 +32972,Szlachcic%2FTaran,633,380,699759128,9914,0 +32973,Psycha+Siada,440,669,698807570,10122,0 +32974,J%23021,582,339,2065730,9797,0 +32975,%2A049%2A,350,400,699273451,10211,0 +32976,%2A050%2A,360,393,699273451,10211,0 +32977,104.Stradi,455,327,698365960,9729,0 +32978,A042,609,645,9023703,8593,0 +32979,%2A042%2A,359,390,699273451,10211,0 +32980,Wioska+barbarzy%C5%84ska,495,326,6118079,4157,0 +32981,Wioska+barbarzy%C5%84ska+x,650,602,1900364,9547,0 +32982,Out+of+Touch,329,444,698962117,9505,0 +32984,Lord+Lord+Franek+.%23194,611,358,698420691,9761,0 +32985,Mekka,475,656,849089459,11078,0 +32986,%2A217%2A,370,377,699273451,6235,0 +32987,Didek,667,559,849070946,10160,0 +32988,AAA,536,326,1006847,7430,0 +32989,Wioska+barbarzy%C5%84ska,351,600,7183372,6672,0 +32990,Wioska+r+6,560,668,848915531,5474,0 +32991,New+World,431,671,698152377,10294,0 +32992,AAA,537,323,1006847,6512,0 +32993,023,609,639,849097799,7478,0 +32994,020,411,657,699736927,6365,0 +32995,%5B018%5D+Hans+Klop+s,665,438,849095068,9312,0 +32996,Jednak+wol%C4%99+gofry,419,661,699736927,7697,0 +32997,Vanaheim,626,377,699837826,10310,0 +32998,%2A163%2A,345,411,699273451,10211,0 +32999,Wioska+barbarzy%C5%84ska,523,320,698350371,7405,0 +33000,Mroczny+Zamek+019,384,640,699269923,10239,0 +33001,cz+110+3,369,379,3909522,8093,0 +33002,zachod+002,369,383,8967440,10393,0 +33003,Monetkownia,622,629,699759128,10237,0 +33004,0006,673,465,699574408,9391,0 +33005,59.+KaruTown,662,433,849060446,9735,0 +33006,Jaaa,676,489,698635863,10479,0 +33008,Bunkier+007,621,625,699778867,6253,0 +33009,Liniewo,656,589,849039310,12154,0 +33010,Gold+dream,647,403,1086351,4052,0 +33012,Wioska+barbarzy%C5%84ska,518,324,698350371,7794,0 +33013,%3D%7C27%7C%3D,641,389,9101574,10495,9 +33014,056,676,501,699413040,8723,0 +33015,041,535,671,2293376,9993,0 +33016,Wsch%C3%B3d+Droga+009,673,556,698562644,4393,0 +33017,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,673,698807570,10252,0 +33018,Wioska+barbarzy%C5%84ska,505,680,699781762,9927,0 +33019,Lord+Lord+Franek+.%23186,545,330,698420691,11489,0 +33020,I039,669,454,699722599,9811,0 +33021,%5BB%5D_%5B018%5D+Dejv.oldplyr,421,342,699380607,10495,0 +33022,220,427,336,7271812,6336,0 +33024,Wioska+barbarzy%C5%84ska,430,335,699308637,9079,0 +33027,J%23023,573,338,2065730,10030,5 +33029,Osada+koczownik%C3%B3w,503,676,699781762,10495,3 +33030,%23046.521%7C496,640,447,556154,9735,0 +33031,%230190+Segadorr+dar,460,328,1238300,10178,0 +33032,05+Bor%C3%B3wka,646,605,8224678,1818,0 +33034,A-049-Heffitto,403,348,8419570,10168,0 +33035,Wioska+VIII,582,346,698200480,6874,0 +33036,%C5%BBUBRAWKA+054,612,643,33900,9791,0 +33037,BAC%C3%93WKA+%7C038%7C,634,395,7394371,11307,0 +33038,Wioska0,578,659,699567608,9584,0 +33039,A+013,369,620,699342219,6395,0 +33041,Wonderwall,325,550,698962117,9486,0 +33042,Szlachcic,396,356,3484132,10478,0 +33043,Szlachcic%2FTaran,639,393,699759128,10237,0 +33044,071+komornicy,326,547,699510259,6698,0 +33045,X+%7C+Forest+Cyaaaanku,323,478,699213622,9941,0 +33046,Wioska+barbarzy%C5%84ska,679,472,699574408,9737,0 +33048,Ob+Konfederacja,436,336,848915730,8298,0 +33049,A002,491,677,8954402,9861,0 +33050,Psycha+Siada,449,667,698807570,8089,0 +33051,Pluszaki,325,536,698338524,5828,0 +33052,Ave+Why%21,449,674,698585370,4975,0 +33053,48.+KaruTown,642,400,699491076,7971,0 +33054,020+%2A+Lady+Porto+%2A,646,394,699406750,12154,0 +33055,%2A071%2A,360,387,699273451,10211,0 +33056,Deveste+ufam+Tobie,396,645,699783765,10000,0 +33057,%2A%2A42%2A%2A,672,443,849098782,8347,0 +33058,098.+Heraclea,657,409,849091866,5099,0 +33059,%2A058%2A,357,400,699273451,10211,0 +33060,Taran,342,575,6180190,9206,0 +33061,Szlachcic,391,356,3484132,10475,0 +33062,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,672,698807570,5164,9 +33063,Wioska+Bochun10,323,472,7449254,6283,0 +33064,X+%7C+Forest+Cyaaaanku,320,474,699213622,10000,0 +33065,Wioska+barbarzy%C5%84ska,513,676,699781762,10495,0 +33066,030.xxx,493,675,698152377,10136,0 +33067,%23053%23,626,626,692803,9761,0 +33068,AAA,535,321,1006847,6720,0 +33069,--19--,348,591,8877156,7382,0 +33070,014+.2.+Infanterie-Division,606,354,849091899,3878,0 +33071,D03,667,553,848995478,9993,0 +33072,Wioska+barbarzy%C5%84ska,679,471,699574408,8896,0 +33073,dalej+nie+id%C4%99+%21%21%21,590,655,848995242,10492,0 +33074,Jednak+wol%C4%99+gofry,419,663,699736927,5908,0 +33075,031+Czemu+mnie+maszyna+stoi%3F,383,632,6354098,10160,0 +33076,Lord+Lord+Franek+.%23108,512,325,698420691,10559,0 +33077,0607,481,678,698659980,10019,0 +33078,ABD,660,412,1086351,4181,0 +33079,037+Boru1996,374,630,6354098,10141,0 +33081,R+016+%7ESamotnia%7E,483,678,699195358,10019,0 +33082,%5B334%5D+Mroczna+Myszka+ZBUD,584,424,848985692,10530,0 +33083,029.+Night+Raid-,471,675,699684062,10845,0 +33084,%5BB%5D_%5B001%5D+Dejv.oldplyr,422,344,699380607,10495,0 +33085,011,592,351,7340529,8855,0 +33086,tego+nie,528,674,699494488,9744,0 +33087,096.+Naissus,656,409,849091866,5409,0 +33088,044+rychuzdk002,659,420,9238175,10470,0 +33089,%2A260%2A,333,437,699273451,4150,0 +33090,0609,480,675,698650301,10019,0 +33091,TWIERDZA+.%3A052%3A.,668,561,7154207,10787,0 +33092,%7E%7E089%7E%7E,634,618,7829201,8672,0 +33093,Theoden+King,460,676,848896948,9999,2 +33094,Taran,681,490,699598425,10728,0 +33095,BETON+070,630,618,699277039,4366,0 +33096,%7C033%7C+Macheria,497,676,699393742,10107,0 +33097,C0274,325,512,8841266,7509,0 +33098,Naggaroth,413,653,699736927,8506,0 +33099,022,430,491,699510259,9861,0 +33100,Wioska+barbarzy%C5%84ska,402,653,699736927,4775,0 +33101,Mietus,324,547,699265922,9761,0 +33102,22.+Szeksox+1,678,478,699804790,10237,0 +33103,Lord+Lord+Franek+.%23187,542,331,698420691,9727,0 +33104,p%C4%99czek+drutu,612,359,1990750,9593,0 +33105,A011,607,647,9023703,10311,0 +33107,%2A158%2A,340,412,699273451,10211,0 +33108,K36+-+%5B004%5D+Before+Land,625,370,699088769,9925,0 +33110,O31+Kumogakure,673,542,699272880,9270,0 +33111,%5B041%5D,654,587,698305474,8110,0 +33112,099.+Drobeta,656,410,849091866,8074,0 +33113,Kentin+ufam+Tobie,328,463,699783765,10064,0 +33114,367%7C617+Wioska+barbarzy%C5%84ska,617,367,6822957,9805,0 +33115,xxx,626,369,6625437,9687,0 +33116,Wioska+barbarzy%C5%84ska,461,329,699191455,6394,0 +33117,XDX,610,358,699098531,10544,0 +33118,Wioska+barbarzy%C5%84ska,335,424,2418002,6696,0 +33119,Wioska+Misiaczki,612,366,699759128,7688,0 +33120,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,672,698807570,9717,0 +33121,998+Stoch,665,423,699491076,9459,0 +33122,O54+Aasiaat,674,535,699272880,9694,0 +33123,P.P.,593,568,8742874,4650,0 +33124,psycha+sitting,425,658,699736927,6191,0 +33125,051...OPEL,441,329,6920960,10495,0 +33126,C+004,681,521,8078914,6662,0 +33127,%21XXX,337,563,849012521,10259,0 +33128,--20--,349,598,8877156,7004,0 +33129,Wioska+barbarzy%C5%84ska,515,536,7581876,6945,0 +33130,Szulernia,376,376,7249451,10090,9 +33131,Wioska+Bochun10,327,472,7449254,9089,0 +33132,Wioska+barbarzy%C5%84ska,603,348,1990750,8306,0 +33133,X+%7C+Forest+Cyaaaanku,320,471,1536625,9976,1 +33134,038,643,545,698999105,10311,0 +33135,New+World,434,666,698807570,10063,0 +33136,Taran,674,490,699598425,10728,0 +33137,J%23026,577,342,2065730,10025,0 +33138,Wioska+barbarzy%C5%84ska,679,466,699574408,9391,0 +33140,096...tomeczek,476,325,6920960,10247,0 +33142,007+.3.Panzergrenadier+Division,604,359,849091899,6682,0 +33143,R+002+%7EWaleriana%7E,485,676,699195358,10019,0 +33144,R+007+%7E%C5%BBona%7E,487,678,699195358,10019,0 +33145,059+Wioska+011,660,418,9238175,9508,0 +33146,Wioska+001,573,339,699703295,8650,0 +33147,077.Stradi,446,326,698365960,10299,0 +33148,%21XXX,607,353,698361257,6801,0 +33149,Lord+Lord+Franek+.%23087,517,321,698420691,10160,2 +33151,Wioska+barbarzy%C5%84ska,680,467,699574408,9024,0 +33152,ADEN,599,356,698588535,9855,0 +33153,I026,674,452,699722599,9586,0 +33154,Wioska+barbarzy%C5%84ska,495,319,698239813,5510,0 +33155,Wioska+barbarzy%C5%84ska,562,329,699072129,10221,0 +33156,North+Barba+052,406,352,699796330,8078,0 +33157,Wioska+barbarzy%C5%84ska,370,374,699711706,2194,0 +33158,010+Solary+%3D+Dolary,378,632,6354098,10141,0 +33159,O47+Tuzla,678,530,699272880,7787,0 +33160,Andrzej,609,354,849056744,7777,0 +33161,Lord+Lord+Franek+.%23100,525,328,698420691,10160,8 +33162,UltraInstynkt-,579,335,699710633,10068,0 +33163,DejMon9,367,623,699805839,4092,0 +33164,Wioska+Kr%C3%B3l+Ja%C5%9B,649,607,1900364,9750,0 +33165,084.+Perusia,649,405,849091866,9090,0 +33166,Ogonek,613,356,698420691,9650,0 +33167,Muchomor+%2A023%2A,517,680,606407,8204,0 +33168,Wioska+r+4,558,670,848915531,5956,0 +33169,Ruda+Dolno%C5%9Bl%C4%85ska,551,333,849110711,2444,0 +33170,%2A002%2A+CSA-Zaiwania%C4%87,625,367,849095068,10311,0 +33171,%23Keep+Calm,459,676,848896948,6357,0 +33172,Gr%C3%B3d,474,324,699204478,11360,0 +33173,TRAILER+PARK+BOYS,551,346,699072129,9682,0 +33174,Jestem+Poza+Kontrol%C4%85,341,558,8004076,9880,0 +33175,devils+tower,639,384,7340529,10887,0 +33176,C0165,329,542,8841266,10362,0 +33177,021+Tu+ci%C4%85gle+nie+ma+miejsca...,379,623,6354098,7431,0 +33178,Wioska+P1ter+2,598,648,699567608,9325,0 +33179,UltraInstynkt-,589,341,699710633,10068,0 +33180,krytl05,513,321,1990750,10311,0 +33181,135...opelu,443,333,6920960,7893,0 +33182,ASre,649,592,699611673,3641,0 +33183,Savi2,676,504,848899726,10019,0 +33184,%2A001%2A+CSA+si%C4%99+by%C5%82o+uczy%C4%87%21,604,350,849095068,10230,0 +33185,Jaaa,675,486,698635863,10481,0 +33186,%23016%23,628,623,692803,9761,0 +33187,%5B03%5D,428,667,699827112,7172,0 +33188,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,375,608,849097937,10019,0 +33189,Wioska+barbarzy%C5%84ska,504,677,699781762,9927,0 +33190,%7C017%7C+Fajstos,490,672,699393742,10063,0 +33191,Sony+911,620,630,1415009,10206,0 +33193,1002,621,362,699150527,9899,0 +33194,Ob+Konfederacja,436,337,848915730,5697,0 +33195,Taran,337,577,6180190,9212,0 +33196,Wioska+barbarzy%C5%84ska,560,330,699072129,10226,0 +33197,Komornicy+019,352,607,699336777,8586,0 +33198,Brrzana,329,546,699265922,9963,0 +33199,Wyspa+022,625,374,699756210,10365,0 +33200,GerHIs,650,595,699611673,3837,0 +33201,001,531,675,2293376,9993,0 +33203,Nowa+40,662,585,698702991,9745,0 +33205,Szlachcic%2FTaran,613,367,699759128,10237,0 +33206,R+009+%7ENami%7E,486,677,699195358,10019,0 +33207,J%23015,578,336,2065730,9797,0 +33208,Y+%7C+Forest+Cyaaaanku,325,503,699213622,10000,8 +33209,%23014%23,631,625,692803,9761,0 +33210,reco,508,682,698704189,9382,0 +33211,Wioska+barbarzy%C5%84ska,508,678,699781762,10014,0 +33212,053.+Flam,658,589,8337151,9751,0 +33213,Taran,682,486,699598425,10728,4 +33214,%28031%29Iri,335,567,849098695,2974,0 +33215,123,477,674,9003698,10373,0 +33216,1006,614,364,699150527,9910,0 +33217,001,343,594,7183372,10346,0 +33218,Wioska+046,646,603,848971079,9761,0 +33219,657%7C422+Wioska+barbarzy%C5%84ska,657,422,6822957,2466,0 +33220,B+064,678,532,8078914,8476,0 +33221,026%23Sewa%23002,671,444,849098769,10094,0 +33222,Psycha+Siada,444,665,698807570,5630,0 +33223,Z%7C010%7C+Rzym,461,678,699393742,10063,0 +33224,C0154,321,528,8841266,10109,0 +33225,C0271,323,507,8841266,10362,0 +33226,Wioska+barbarzy%C5%84ska+031,460,322,6343784,6470,0 +33227,Szlachcic,398,356,3484132,10481,0 +33228,010,526,675,2293376,7109,0 +33229,Chekku+-+meito,325,528,9280477,9976,0 +33230,Ronne,329,562,849098387,9978,0 +33231,rotes+idz+spac+misiu,454,674,698807570,6671,0 +33232,KR%C3%93L+PAPI+WIELKI,638,614,698191218,10000,0 +33233,Wioska+r+14,553,667,848915531,4069,0 +33234,-013-,541,329,698588812,3312,0 +33235,Brakuje+drewna+m%C3%B3j+panie,441,665,8954402,10203,0 +33236,Wioska+kamilatak,641,617,848942587,6104,0 +33237,Psycha+Siada,441,667,698807570,5964,0 +33238,%24Curry,679,526,699795378,5615,0 +33239,Wioska+3,500,323,698680806,7386,0 +33240,Muchomor+%2A012%2A,518,676,606407,10527,0 +33241,Wioska+barbarzy%C5%84ska,404,656,699516268,9596,0 +33242,New+World,445,675,698152377,10297,0 +33244,0429,551,667,698659980,10019,0 +33245,050,677,515,699413040,5888,0 +33246,Myk+i+do+kieszonki,364,611,9319058,10401,0 +33247,%3D%7C36%7C%3D,644,392,9101574,4496,0 +33248,137.Stradi,451,326,698365960,3011,0 +33249,Wioska+barbarzy%C5%84ska,674,473,699574408,7310,0 +33250,028+Zakopane+akademia,379,374,848978297,3616,0 +33251,032+Toffifeeeeee%21,372,630,6354098,10141,0 +33252,Monetkownia,622,626,699759128,10237,0 +33254,SOKzGUMIjag%C3%B3d,601,352,849059491,5321,0 +33255,AAA,533,324,1006847,7024,0 +33256,033,670,459,7588382,7448,0 +33257,Wioska+barbarzy%C5%84ska,407,651,699516268,7159,0 +33258,SOKzGUMIjag%C3%B3d,596,349,849059491,6908,0 +33259,C.03,680,518,699737356,8378,0 +33260,Psycha+Siada,444,670,698807570,9623,0 +33261,A004,603,647,9023703,10237,0 +33262,B+052,673,541,8078914,6347,0 +33263,New+World,443,674,698152377,10311,0 +33264,008,319,477,7127455,5808,0 +33265,015+530i,615,360,698361257,11130,0 +33267,Wioska+barbarzy%C5%84ska,677,486,699598425,10728,0 +33268,Gabsaw,641,611,2269943,8046,0 +33269,Wioska+4,503,326,698680806,6935,0 +33270,%23022.+Ster%2C+%C5%BBeglarz+i+Okr%C4%99t,441,671,848896948,9047,6 +33272,Wioska+gal%C3%B3w,351,601,849014147,3264,0 +33273,Wioska+barbarzy%C5%84ska,476,318,0,7577,0 +33274,%5B044%5D,661,577,698305474,4271,0 +33275,R+013+%7EFalkret%7E,485,681,699195358,10019,0 +33276,krytl15,508,318,1990750,9226,0 +33277,60k%24+Grvvyq,659,574,699676005,7856,0 +33278,B.022,675,502,9188016,10000,0 +33279,Miasys+3,343,583,849090130,10160,0 +33280,Bagdad,426,661,849089459,9835,0 +33281,Szlachcic,393,360,3484132,10474,0 +33282,Westfold.001,342,417,848918380,10178,0 +33283,AAA,547,323,1006847,8040,0 +33284,_PUSTA,654,599,698768565,10199,0 +33285,076,476,616,699336777,10083,0 +33286,217,447,328,698365960,6875,0 +33287,019+%2A+Lady+Porto+%2A,644,396,699406750,5967,0 +33288,Wioska+barbarzy%C5%84ska,408,652,699516268,4321,0 +33289,124...OPELU,442,334,6920960,10569,0 +33290,I047,669,449,699722599,9883,0 +33292,Szulernia,368,373,7249451,3613,0 +33294,Wioska+barbarzy%C5%84ska,342,418,848918380,5032,0 +33295,002,650,592,699251542,5354,0 +33296,D.032,390,640,849088243,2874,0 +33298,Wioska+Natka1968_02,526,323,699644852,2830,0 +33299,Psycha+Siada,446,670,698807570,6491,0 +33300,Restelo,346,589,699494480,9132,0 +33301,Forza+7,435,662,699849210,3298,0 +33302,0651,574,662,698659980,5625,0 +33303,I027,676,452,699722599,10093,0 +33304,Lord+Lord+Franek+.%23173,518,321,698420691,9976,2 +33305,Wyspa+009,628,381,699756210,10362,0 +33306,szpiegula,505,324,6118079,8123,0 +33308,055,527,680,2293376,7952,0 +33309,Wioska+barbarzy%C5%84ska,505,317,6118079,4432,0 +33310,SZYNCHIL,400,351,3484132,5663,0 +33311,027+%2A+Lady+Porto+%2A,645,397,699406750,12154,0 +33312,Szulernia,372,369,7249451,2284,0 +33313,Wioska+6,520,327,698680806,6375,0 +33314,044,676,529,699351301,7099,0 +33315,yankes6,588,656,699567608,7313,0 +33316,Out+of+Touch,328,441,698962117,9061,0 +33317,Hard2,366,624,699805839,2170,0 +33318,051,676,513,699413040,9567,0 +33319,Out+of+Touch,328,439,698962117,2427,0 +33320,Wioska+barbarzy%C5%84ska,321,487,849013126,3522,0 +33321,Wioska+barbarzy%C5%84ska,378,402,848886056,8277,0 +33322,Szlachcic,385,362,698160606,10475,0 +33323,Wioska+barbarzy%C5%84ska,348,600,7183372,6180,0 +33324,Wioska+Bochun10,325,467,7449254,4385,0 +33325,Wioska+13,318,489,849075836,4419,0 +33326,-21-,631,373,699837826,5729,0 +33328,%230176+Kamil0ss1,488,318,1238300,10178,0 +33329,C0156,320,527,8841266,9384,0 +33330,A15,466,679,698652014,4573,0 +33331,a+mo%C5%BCe+off+%3F+%3A%29,637,619,698768565,9334,0 +33332,Wioska+barbarzy%C5%84ska,339,587,3990066,2319,0 +33333,Wioska+barbarzy%C5%84ska,501,681,699781762,9927,0 +33334,%2A176%2A,345,412,699273451,10211,5 +33335,Wioska+barbarzy%C5%84ska,372,380,699711706,5532,0 +33336,D02,673,550,848995478,10495,0 +33337,Wioska+barbarzy%C5%84ska,502,682,699781762,9927,0 +33338,A17,597,467,849093742,10019,0 +33339,Wioska+XVII,574,336,698200480,3556,0 +33340,0413,533,677,698659980,8499,0 +33341,Taran,342,584,6180190,9957,3 +33342,0395,564,667,698659980,10252,0 +33343,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,674,7589468,8817,0 +33345,Deveste+ufam+Tobie,394,640,699783765,8387,0 +33347,0449,533,675,698659980,8705,0 +33348,Wioska+barbarzy%C5%84ska,679,463,699574408,10211,0 +33349,A002,601,646,9023703,10237,0 +33350,Defolij+1,554,327,849098136,4102,0 +33351,Radomice-Hubix,663,422,8675636,5887,0 +33352,057,453,323,2502956,10019,0 +33353,0308,574,663,698659980,9202,0 +33354,Wyspa+024,628,374,699756210,4202,0 +33355,Jednak+wol%C4%99+gofry,418,662,699736927,9835,0 +33356,%2A162%2A,345,410,699273451,10211,0 +33357,%2A047%2A,351,397,699273451,10211,0 +33358,Jednak+wol%C4%99+gofry,414,653,699736927,10068,0 +33359,ADEN,578,343,698588535,10177,0 +33361,Adidas+5,410,651,9191031,3109,0 +33362,010,408,659,699246032,9814,0 +33363,%230132+Thorus5,472,327,1238300,9220,0 +33364,0045,677,457,698416970,9258,0 +33365,Y+%7C+Forest+Cyaaaanku,318,486,699213622,10000,0 +33366,009+Twardy+Sen,380,633,8268010,9835,0 +33367,Hi%C5%84czowa+Turnia,318,480,849013126,3719,0 +33368,Wioska+barbarzy%C5%84ska,670,453,113796,3971,0 +33369,deff+100+%25,337,573,849012521,7673,0 +33370,Wioska+r+17,552,670,848915531,4141,0 +33371,Kingdom,680,503,699598425,10728,0 +33372,AAA,537,324,1006847,9013,0 +33373,Najpi%C4%99kniejsza,627,375,7555180,10144,0 +33374,Wioska+barbarzy%C5%84ska,678,488,699598425,10728,0 +33375,-009-,334,573,8710047,9761,0 +33376,Wioska+Bochun10,326,473,7449254,10311,0 +33378,Freytaga+I,640,609,2269943,8099,0 +33379,cz+013+CORSA,367,378,3909522,7154,0 +33380,%230138+Kamil0ss1,479,318,1238300,10178,0 +33381,X+%7C+Forest+Cyaaaanku,319,473,1536625,9976,0 +33382,056,454,325,2502956,10019,0 +33383,Wrath+015,574,335,699756210,8742,0 +33384,%2A027,598,651,699567608,9916,0 +33385,%5BB%5D_%5B043%5D+Dejv.oldplyr,425,334,699380607,10495,0 +33386,B+010,673,532,8078914,9872,6 +33387,56.+KaruTown,644,399,849091866,6470,0 +33388,Lubieszynek,655,591,849039310,7526,0 +33389,Szlachcic,383,361,698160606,9915,0 +33390,A008,602,649,9023703,10237,0 +33391,Wioska+barbarzy%C5%84ska,643,390,698241117,3876,0 +33392,Y+%7C+Forest+Cyaaaanku,318,491,699213622,8494,0 +33393,Kiedy%C5%9B+Wielki+Wojownik,599,348,8632462,8092,0 +33394,Wioska+Bochun10,319,494,7449254,6241,0 +33395,Kreskowo_3,594,652,699567608,9853,0 +33396,025%7C%7C+Crater,467,679,849035525,9925,0 +33397,Didiek,669,567,849070946,6437,0 +33398,M181_011,337,435,393668,9103,0 +33399,%21%2136+94+Adancata,649,395,698361257,6310,0 +33401,%5B011%5D,423,659,9094538,8109,0 +33403,R+014+%7EMarkart%7E,485,680,699195358,10019,0 +33404,024,530,681,2293376,9993,0 +33405,Pparkerowska,355,387,849098299,6446,0 +33406,Wioska+barbarzy%C5%84ska,346,598,7183372,8391,0 +33407,%23026.548%7C482,667,433,556154,9735,4 +33408,Taran,339,584,6180190,7033,0 +33409,%7E%7E087%7E%7E,631,617,699567608,9721,0 +33410,Wioska+Bochun10,321,493,7449254,6986,0 +33411,Wioska+IX,580,340,698200480,6904,0 +33412,079,472,616,699336777,10083,0 +33413,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,637,1434753,10044,0 +33415,ADEN,603,350,698588535,9761,0 +33416,Ob+Konfederacja+%2B,436,334,848915730,7139,0 +33417,Barbakasia,344,410,849098299,2743,0 +33418,Wioska+109,638,608,848971079,7219,0 +33419,Wioska+123,682,523,848971079,7041,0 +33420,B002,468,672,8954402,9564,0 +33421,059,455,324,2502956,10019,0 +33422,Mniejsze+z%C5%82o+0093,322,540,699794765,6100,7 +33423,-04-,623,371,699837826,10495,0 +33424,Wioska+barbarzy%C5%84ska,348,599,8877156,7722,0 +33425,Osada+koczownik%C3%B3w,591,650,1415009,10257,7 +33426,AG16,590,659,699876345,6073,0 +33427,%23050.,666,429,556154,8789,0 +33428,Out+of+Touch,329,447,698962117,2786,0 +33429,058+%7C+PALESTINA,656,417,9228039,8050,0 +33430,Wioska+barbarzy%C5%84ska,475,319,0,4703,0 +33431,%23052%23,625,631,692803,9761,0 +33432,098...tomecz,479,325,6920960,10231,0 +33433,004,668,569,699493750,6239,0 +33434,AAA,533,321,1006847,6677,0 +33435,Wioska+125,680,525,848971079,8021,0 +33436,%2A045,590,651,699567608,9704,0 +33437,%5BB%5D_%5B022%5D+Dejv.oldplyr,419,342,699380607,10559,0 +33438,A.04+sp%C3%B3%C5%82dzielnia+gryzoni,564,334,699072129,4881,0 +33439,B+053,671,540,8078914,5925,0 +33440,O51+Saloniki,675,535,699272880,10301,0 +33441,I%23032,621,363,2065730,7378,0 +33442,060,451,331,2502956,10019,0 +33443,Wioska+Bochun10,324,492,7449254,10311,2 +33444,Taran,683,498,699598425,10728,0 +33445,Szlachcic,394,354,3484132,10474,0 +33446,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,389,642,1434753,10025,0 +33447,E.01,679,505,699737356,9202,0 +33448,Szlachcic%2FTaran,642,395,699759128,8155,0 +33449,%7C036%7C+Kalavarda,494,679,699393742,10056,0 +33450,%3F011+Lowruks,541,659,699828685,10109,0 +33451,Wioska+1,573,335,7560474,7654,0 +33452,%2A075%2A,360,390,699273451,10211,0 +33453,ADEN,579,343,698588535,10292,0 +33454,177...Segadorr-m,443,325,6920960,10713,0 +33455,Wioska+barbarzy%C5%84ska,620,639,699567608,9700,0 +33456,D.021,393,643,849088243,8303,0 +33457,Wioska+barbarzy%C5%84ska+2,502,482,698349125,6614,0 +33458,wioska,350,599,7183372,10083,0 +33459,Jednak+wol%C4%99+gofry,420,663,699736927,5669,0 +33460,080.Stradi,446,329,698365960,9834,0 +33461,-005-,347,400,1693936,3487,0 +33462,%230194+Segadorr+dar,462,323,1238300,10178,0 +33463,.achim.,486,317,6936607,6957,0 +33464,Nowa+52,669,560,698702991,7539,0 +33465,XXDe,326,557,849096458,6869,0 +33466,Out+of+Touch,327,442,698962117,9643,0 +33467,Duolingo,647,396,7973893,7601,0 +33468,O60+Roslagen,672,556,699272880,5286,0 +33469,Lady+Madelaine,644,608,2269943,7008,0 +33470,Z%7C007%7C+Bari,466,683,699393742,7415,0 +33471,C0267,317,506,8841266,6867,0 +33472,City,645,402,699491076,5088,0 +33473,111,637,381,849092309,5578,0 +33474,Wioska+barbarzy%C5%84ska,511,675,699781762,9937,0 +33475,A+096,377,635,7085510,8447,9 +33476,KR%C3%93L+PAPI+WIELKI,564,563,698191218,10000,0 +33477,Nexo,329,564,849098387,5914,0 +33478,K36+-+%5B006%5D+Before+Land,625,368,699088769,10654,0 +33479,%23Sewa%23004,669,442,113796,10141,0 +33480,Kiedy%C5%9B+Wielki+Wojownik,565,334,8632462,6978,0 +33481,033+Dawaj+dawaj+Pomagaj+pomagaj%21,380,634,6354098,10143,0 +33482,Jednak+wol%C4%99+gofry,414,654,699736927,9792,0 +33483,Wioska+barbarzy%C5%84ska,558,330,699072129,10220,0 +33484,AAA,528,319,1006847,8149,0 +33485,New+World,444,674,698152377,10303,0 +33486,Wioska+Westor+4,357,395,699530673,4249,0 +33487,%23097%23,627,630,692803,9761,0 +33489,0129,549,674,698659980,10083,0 +33490,Ob+Konfederacja,433,329,848915730,10132,0 +33491,106,319,505,7098955,9504,0 +33492,021+toni,677,462,849098769,11188,0 +33493,Wioska+barbarzy%C5%84ska,678,544,7038651,4157,0 +33494,039+Mucharadza,664,418,9238175,10284,0 +33495,Oww+Konfederacja,611,401,848915730,10273,0 +33496,Didi,671,558,849070946,8991,0 +33497,%7C046%7C+Wioska+Mikimixx,502,679,699781762,9727,0 +33498,Chekku+-+meito,323,525,9280477,9976,0 +33500,02.+Mamy+To%21,589,660,699423167,3936,0 +33501,D.004,401,654,849088243,9345,0 +33502,017,355,611,699083129,5340,0 +33503,Mniejsze+z%C5%82o+0099,323,541,699794765,8093,0 +33504,Wedkarz,330,546,699265922,9761,0 +33505,X+%7C+Forest+Cyaaaanku,320,472,1536625,9976,0 +33506,Wioska+barbarzy%C5%84ska,505,681,699781762,9927,0 +33507,00631+Wioska+xxxxxxxxxxx,446,426,3909522,7333,0 +33508,022+%3A%29,658,418,9238175,10465,0 +33509,%2A258%2A,342,414,699273451,2595,0 +33510,Monetkownia,621,629,699759128,10237,0 +33511,XDX,610,352,699098531,10160,0 +33512,ZUBRAWKA+051,614,635,33900,10362,0 +33513,081+%C5%9Awi%C4%85teczna+Bombka,653,399,699491076,9539,0 +33514,SOKzGUMIjag%C3%B3d,596,351,849059491,5497,0 +33515,Szlachcic,384,366,698160606,9093,0 +33516,Wioska+barbarzy%C5%84ska,430,336,699191455,6707,0 +33517,%2A003%2A,352,391,699273451,10211,0 +33518,0251,534,678,698659980,10160,0 +33519,Wioska+barbarzy%C5%84ska,355,402,699323302,2955,0 +33520,065+Wioska+014,663,415,9238175,8992,0 +33521,SJ1,322,457,6258092,10495,0 +33522,048+%7C+PALESTINA,662,419,9228039,9544,0 +33523,Wioska+barbarzy%C5%84ska,677,459,699574408,9108,0 +33524,%2A246%2A,335,437,699273451,10099,0 +33525,Szlachcic,395,354,3484132,10495,0 +33526,Opol,357,613,699864013,4125,0 +33527,Suppi,595,348,7462660,9783,0 +33528,Komornik+006,325,537,698290577,8171,0 +33529,Kentin+ufam+Tobie,329,455,699783765,10000,0 +33531,0300,569,662,698659980,9861,0 +33532,amator,561,666,848915531,5548,0 +33533,%23051%23,628,632,692803,9761,0 +33534,A+033,370,625,699342219,5903,0 +33535,%2A254%2A,339,412,699273451,2914,0 +33536,B+039,675,530,8078914,7104,0 +33537,.%3A006%3A.,632,383,849078297,7307,0 +33539,Wioska+barbarzy%C5%84ska,673,459,699574408,9453,0 +33540,%21Wszystkie+rybki+maj%C4%85+...%3F,331,567,849012521,9670,6 +33541,Victor,678,499,699737356,10005,0 +33542,D.003,401,652,849088243,9348,0 +33543,Taran,336,579,6180190,9962,0 +33544,Architekci+Plac%C3%B3w+Boju,334,561,8004076,9880,0 +33545,C0160,324,535,8841266,9782,0 +33546,Iskierka,677,550,848932879,1766,0 +33547,Y+%7C+Forest+Cyaaaanku,324,498,699213622,10000,0 +33548,Wioska+096,645,603,848971079,9825,0 +33549,Sony+911,617,631,1415009,9898,0 +33550,WB+03,638,611,2269943,8295,0 +33551,Szlachcic,391,353,3484132,10478,0 +33552,045,466,681,699834004,10134,0 +33553,%7C034%7C+Kamiros+Skala,497,679,699393742,9976,0 +33554,Darud%C5%BCystan181,674,470,699574408,10481,0 +33555,Muchomor+%2A011%2A,518,678,606407,10300,0 +33556,Szlachcic,382,359,698160606,10290,0 +33557,0003.+HMS+St+Andrew+96+%281670%29,473,676,699121671,7408,0 +33558,Jaaa,675,488,698635863,10117,0 +33559,055.+Gaena,659,590,8337151,10160,0 +33560,off+100+%25,338,571,849012521,9304,0 +33561,Most,327,549,699265922,6717,0 +33562,12.+Lyria,330,450,848910122,389,0 +33563,000+Plutosea,327,554,9280477,11307,0 +33564,023+%2A+Lady+Porto+%2A,646,393,699406750,12154,0 +33565,Architekci+Plac%C3%B3w+Boju,331,556,8004076,5569,0 +33566,03+Twierdza,539,676,849097981,6119,0 +33567,Psycha+Siada,451,668,698807570,9989,0 +33568,%2A025%2A,357,389,699273451,10211,0 +33569,Out+of+Touch,327,441,698962117,7848,0 +33570,Partyzantka+ludowa,674,464,699574408,10010,0 +33571,Szlachcic,493,479,699098531,9879,0 +33572,Didi,667,564,849070946,7475,0 +33573,04+Bastion,541,673,849097981,8300,0 +33574,Chrztowo,656,583,849039310,6977,0 +33575,%5B007%5D+Kupa+po+pachy,673,437,849095068,10237,1 +33576,%28014%29Frostlands,334,564,849098695,6393,0 +33577,Mroczny+Zamek+030,384,639,699699601,6018,0 +33578,-0008-,544,328,2972329,6339,0 +33579,AAA,532,320,1006847,6549,0 +33580,Out+of+Touch,328,437,698962117,3560,0 +33581,B+040,680,534,8078914,7621,0 +33583,%2A269%2A,345,407,699273451,2032,0 +33584,Wioska+barbarzy%C5%84ska,672,451,113796,4045,0 +33585,Sparta,503,323,698680806,8914,0 +33586,015+Dajesz+Pan+rad%C4%99%3F,376,625,6354098,9850,0 +33588,fff,473,321,698239813,10495,0 +33589,022,355,607,699083129,4455,0 +33590,Szlachcic,395,358,3484132,10481,0 +33591,_PUSTA,653,594,698768565,10080,0 +33592,POOL,401,351,8123790,1340,0 +33593,%2A231%2A,361,386,699273451,10211,0 +33594,New+World,435,670,698152377,10294,0 +33595,Lord+Lord+Franek+.%23174,519,321,698420691,12154,0 +33596,SOKzGUMIjag%C3%B3d,612,360,849059491,10224,0 +33597,Wioska+barbarzy%C5%84ska,338,424,2418002,4337,0 +33598,014+Wirginia,491,683,699238479,5386,0 +33600,061+%7C+PALESTINA,656,416,9228039,4159,0 +33601,079.+Hadrianopolis,654,414,849091866,8640,0 +33602,X+%7C+Forest+Cyaaaanku,322,478,699213622,8289,0 +33603,013,443,668,8966820,10178,0 +33604,005,531,679,2293376,9993,0 +33605,Wioska+Bochun10,338,500,7449254,10311,0 +33606,C0173,317,514,8841266,9914,0 +33607,Wioska+Luk160,618,366,699857387,9968,0 +33608,Wioska+Sir+Zordon+007,660,580,478956,3731,0 +33609,New+World,444,672,698152377,10311,0 +33610,D10,667,556,848995478,3292,0 +33611,005,408,655,699246032,9835,0 +33612,Wioska+barbarzy%C5%84ska,520,319,698350371,8743,0 +33613,Nowa+50,657,581,698702991,6914,0 +33614,Chekku+-+meito,324,527,9280477,9976,0 +33615,Wioska+10,496,323,951823,10242,0 +33616,Architekci+Plac%C3%B3w+Boju,330,558,8004076,6975,0 +33617,Miejsce,489,668,849004274,9835,0 +33618,12.,631,371,699562182,5056,0 +33619,Bona+Mediolan,344,409,849098299,6203,0 +33620,097+invidia,523,676,849093426,9263,0 +33621,139+Dolina+Trzciny,649,398,699491076,6438,0 +33622,...Just+like+that,466,470,699723284,7602,0 +33623,Colorado+Springs,603,355,1990750,9339,0 +33624,C0258,317,508,8841266,7525,0 +33625,O59+Uppland,673,547,699272880,4967,0 +33626,R+005+%7ESamanta%7E,488,675,699195358,9854,0 +33627,%2A178%2A,373,373,699273451,10211,0 +33628,%2A104%2A,363,380,699273451,10211,0 +33629,-14-,625,377,699837826,2989,0 +33630,Wioska+barbarzy%C5%84ska,679,470,699574408,8987,0 +33631,%5BB%5D_%5B039%5D+Dejv.oldplyr,419,343,699380607,4168,0 +33632,Wioska+dziwas2,525,536,7581876,10019,0 +33633,085.+Raphae,656,413,849091866,8837,0 +33634,Architekci+Plac%C3%B3w+Boju,330,559,8004076,9695,6 +33635,Allinge,335,571,849098387,11417,0 +33636,225,422,338,7271812,10401,0 +33637,UltraInstynkt,578,333,699710633,10068,0 +33638,SJ4,324,453,6258092,10495,8 +33640,Wioska+Markus2008,334,422,2418002,10034,0 +33641,_PUSTA,654,595,698768565,10065,0 +33642,102.+Aenus,659,410,849091866,5246,0 +33643,%230191+Segadorr+dar,458,327,1238300,10178,0 +33644,Komornicy+007,355,608,699336777,7405,0 +33645,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,641,1434753,9790,0 +33646,-+Astana,552,327,699825236,6318,0 +33647,Wioska+002,648,600,848971079,9761,8 +33648,005+KTW,635,456,848883237,10495,0 +33649,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,385,634,1434753,10068,0 +33650,Wioska+Bochun10,316,499,7449254,6451,0 +33651,Szulernia,376,368,7249451,9961,0 +33652,Rubiez16,321,463,699265922,3964,0 +33653,SOKzGUMIjag%C3%B3d,594,344,849059491,4506,0 +33654,0527,532,658,698659980,10019,0 +33655,Szlachcic,388,356,698160606,9963,0 +33656,-002-,542,324,698588812,7960,4 +33657,A+029,368,624,699342219,7651,0 +33658,C0083,319,510,8841266,10362,0 +33659,025+Ho%C5%82opole,465,675,699834004,9724,0 +33660,Bukowe+Pole,653,586,849039310,7203,0 +33661,Szlachcic,397,348,3484132,10821,0 +33662,Wioska+barbarzy%C5%84ska,502,681,699781762,9943,0 +33663,C0157,320,528,8841266,10362,0 +33664,Szlachcic,322,539,698388578,7549,0 +33665,X+%7C+Forest+Cyaaaanku,320,468,699213622,10000,5 +33666,%23Finral,427,666,699849210,5353,0 +33667,095.+Vitudurum,652,405,849091866,7078,0 +33668,Muchomor+%2A022%2A,524,675,606407,9271,0 +33669,%C5%BBUBRAWKA+054,616,640,33900,9464,0 +33670,A.11+sp%C3%B3%C5%82dzielnia+gryzoni,563,332,699072129,7991,0 +33671,BETON+078,635,614,699277039,4220,0 +33672,Kair,412,660,849089459,9722,8 +33673,A+009,367,616,699342219,10237,0 +33674,Wioska+barbarzy%C5%84ska,428,338,699191455,7199,0 +33675,Wrath+009,571,339,699756210,10030,0 +33676,%C5%BBUBR+PSYCHIATRYK+005,612,641,33900,7156,5 +33677,Ob+Konfederacja,428,334,848915730,10065,0 +33678,Psycha+Siada,445,670,698807570,8316,0 +33679,Szlachcic,394,359,3484132,10487,0 +33680,Ob+Konfederacja,430,333,848915730,6884,0 +33681,cz+Kielce,366,377,3909522,5707,0 +33682,G%C5%82odowo,668,575,849039310,3757,0 +33683,Auu+02,578,667,699567608,9720,0 +33684,997+%C5%BBy%C5%82a,666,424,699491076,9856,0 +33685,J%23002,571,330,2065730,9797,4 +33686,Piek%C5%82o+to+inni,590,348,848956765,8496,0 +33687,004+Leningrad,607,358,849091899,10652,0 +33688,06+Posterunek,541,676,849097981,8300,0 +33689,K36+-+%5B005%5D+Before+Land,625,373,699088769,10654,0 +33690,Out+of+Touch,330,436,698962117,7742,0 +33691,Architekci+Plac%C3%B3w+Boju,330,561,8004076,7674,0 +33692,-001-,328,565,849012521,10178,0 +33693,Szlachcic,395,352,3484132,10474,0 +33694,%7E%7E093%7E%7E,635,616,7829201,8825,9 +33695,0013,680,464,699574408,9093,0 +33696,%5BB%5D_%5B047%5D+Dejv.oldplyr,425,337,699380607,10287,0 +33697,%C5%9Awiat+fistaszk%C3%B3w,555,327,849098136,6947,3 +33698,C0107,318,522,8841266,10362,0 +33699,Wioska+barbarzy%C5%84ska,551,330,699072129,9811,0 +33700,Wioska+barbarzy%C5%84ska,522,324,698350371,6930,0 +33701,Modzerowo-Hubix,664,422,8675636,10019,0 +33702,R%C3%B3wne,657,583,849039310,5027,0 +33703,040+Ban+Ard,474,677,699834004,7155,0 +33704,Wioska+barbarzy%C5%84ska,473,319,8630972,5972,1 +33705,Westfold.017,337,425,848918380,7550,0 +33706,%2A103,579,663,699567608,9704,0 +33708,Szulernia,378,368,7249451,9964,0 +33709,Kingdom+4,682,503,699598425,10728,0 +33710,Utah,678,502,699737356,10144,0 +33711,Wioska+barbarzy%C5%84ska,348,405,0,2020,0 +33712,Wioska+barbarzy%C5%84ska,620,367,699857387,4275,0 +33713,0156,412,343,699431255,4679,0 +33715,A056,607,649,9023703,10223,0 +33716,Bagdad,485,317,8847546,10068,0 +33717,Wioska+barbarzy%C5%84ska,340,428,393668,8048,0 +33718,Hard,365,622,699805839,2706,0 +33719,Jednak+wol%C4%99+gofry,418,664,699736927,9792,1 +33721,-006-,346,400,1693936,3541,0 +33722,fff,489,319,698239813,8556,0 +33723,%2A111%2A,362,382,699273451,9617,0 +33724,XDX,610,354,699098531,10019,0 +33725,067,542,678,2293376,8445,0 +33726,%23Forza+01,437,668,699849210,6842,0 +33727,015+ksieciunio68,324,506,926823,9746,0 +33728,deff+100+%25,347,586,849012521,8153,0 +33729,J%23001,572,331,2065730,9797,4 +33730,Wioska+barbarzy%C5%84ska,577,660,6818593,9835,0 +33731,014,348,602,7183372,10107,0 +33732,Kentin+ufam+Tobie,326,459,699783765,10000,0 +33733,Wioska+barbarzy%C5%84ska,373,376,699711706,7679,0 +33734,Wesolych+%C5%9Awi%C4%85t,626,368,699088769,8691,0 +33735,%2A060,584,660,699567608,7883,0 +33736,034+Pu%C5%9Bcisz+to+dzisio%3F,372,629,6354098,9252,0 +33737,Wioska+barbarzy%C5%84ska,679,465,699574408,8568,0 +33739,Wioska+barbarzy%C5%84ska,341,414,8503255,3102,0 +33740,003,356,612,699083129,9886,0 +33741,Wioska+7,499,322,698680806,10375,0 +33742,Wioska+barbarzy%C5%84ska,675,462,699574408,9898,0 +33743,Wioska+barbarzy%C5%84ska,402,352,3484132,7820,0 +33744,-22-,633,375,699837826,3769,0 +33745,Wyspa+021,631,374,699756210,10140,6 +33746,sarnow,610,373,698290319,10054,0 +33747,K34+-+%5B135%5D+Before+Land,431,336,699088769,9436,0 +33748,-+271+-+SS,539,679,849018239,7563,0 +33749,07+Fort,540,677,849097981,8300,0 +33750,070+komornicy,329,552,699510259,10481,6 +33751,I090,672,445,699722599,10495,0 +33752,Wioska+6,575,336,7560474,4758,0 +33754,014+Glina+Wykopana,614,407,699298370,9794,0 +33755,010+Tr%C3%B3jmiasto+1%2F3,386,635,8268010,9835,0 +33756,0157,408,342,699431255,4979,0 +33757,%3F%3F%3F,485,318,698489071,8290,0 +33758,%230192+Segadorr+dar,458,324,1238300,10178,0 +33760,Kentin+ufam+Tobie,326,462,699783765,10000,0 +33761,025Sewa%23001,670,444,849098769,10068,0 +33762,%23019%23,627,634,692803,9761,0 +33763,%2A5612%2Ad+Kraina+przepowiedni,663,586,7973893,10287,2 +33764,OFF,647,600,849014413,10159,0 +33765,Westfold.021,337,426,848918380,8838,0 +33766,0415,534,673,698659980,8449,0 +33767,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,632,1434753,10068,2 +33769,AAA,539,325,1006847,9693,0 +33770,C0049,324,519,8841266,10362,0 +33771,%5B16%5D,434,663,8966820,3308,0 +33772,Szlachcic,380,360,698160606,9572,0 +33773,A006+Drewno,673,446,113796,10141,1 +33774,044,527,674,2293376,9993,0 +33775,Wioska+barbarzy%C5%84ska,350,407,849064752,2118,0 +33776,065+komornicy,324,534,699510259,5263,0 +33777,Lord+Lord+Franek+.%23091,512,324,698420691,9976,4 +33779,A0278,322,483,8841266,9352,0 +33780,Szulernia,380,365,7249451,10470,0 +33781,Osada+koczownik%C3%B3w,511,676,699781762,9837,8 +33782,Szlachcic%2FTaran,637,389,699759128,10237,0 +33783,Architekci+Plac%C3%B3w+Boju,332,552,8004076,9880,0 +33784,032,536,681,2293376,9993,0 +33785,Jednak+wol%C4%99+gofry,416,656,699736927,2620,0 +33786,C0058,325,523,8841266,10362,4 +33787,%23024%23,627,629,692803,9761,0 +33788,New+World,437,672,698152377,10297,0 +33789,006+Kr%C3%B3lestwo+RickyKeki,378,627,6354098,8944,0 +33791,012,614,645,849097799,7965,0 +33793,%23Finesse,427,665,699849210,8759,0 +33794,034+Wioska+barbarzy%C5%84ska,678,462,849098769,6718,0 +33795,A+016,369,621,699342219,5894,0 +33796,Wioska+barbarzy%C5%84ska,623,364,6625437,9580,0 +33797,B+062,677,528,8078914,10273,0 +33798,1v9+machine,390,642,699697558,10019,0 +33799,000,675,558,1715091,10362,0 +33800,Ulu-mulu,431,609,699697558,3013,0 +33801,C0158,318,529,8841266,9374,0 +33802,016,357,612,699083129,5790,0 +33803,Wioska+barbarzy%C5%84ska,624,364,6625437,5876,0 +33804,Szulernia,376,371,7249451,9981,0 +33805,Wioska+barbarzy%C5%84ska,431,331,849017820,8777,0 +33806,Monetkownia,620,631,699759128,9737,0 +33807,Wied%C5%BAma,557,327,570100,2771,0 +33808,North+Barba+035,405,349,699796330,10245,0 +33809,Szlachcic,389,361,698160606,9822,0 +33810,0094,572,665,698659980,10160,2 +33811,0315,560,670,698659980,9884,0 +33812,Wioska+barbarzy%C5%84ska,405,652,699736927,3912,0 +33813,004,332,563,849012521,6959,6 +33814,B+054,677,536,8078914,5840,0 +33815,Wioska+barbarzy%C5%84ska,676,464,699574408,9196,0 +33816,A.03+sp%C3%B3%C5%82dzielnia+gryzoni,564,327,849026145,3189,0 +33817,Wioska+barbarzy%C5%84ska,475,318,0,2921,0 +33818,Wioska+Zoodix,652,592,699251542,9810,0 +33819,fff,490,319,698239813,8913,0 +33820,V014,339,416,849097737,2544,0 +33821,Wioska+barbarzy%C5%84ska,647,389,6986891,1583,0 +33822,173...Segadorr,442,326,6920960,10616,0 +33823,%2A008%2A,353,388,699273451,10211,0 +33824,23.+Szeksox+2,678,477,699804790,9362,0 +33825,Lord+Lord+Franek+.%23188,543,329,698420691,10285,0 +33826,I065,680,461,699722599,10081,0 +33827,012+.1.+Infanterie-Division,604,354,1990750,6990,0 +33829,004+Winterfel,321,486,699823490,8134,0 +33830,Sekou+2,677,511,699737356,8071,0 +33831,0016,681,464,699574408,8234,0 +33832,-002-,334,578,7183372,10178,8 +33833,Midgard,628,373,9291984,10495,0 +33834,tuaj,459,681,8966820,7855,0 +33835,Wioska+barbarzy%C5%84ska,585,662,848995242,10208,0 +33836,Wioska+brabarzy%C5%84c%C3%B3w,652,610,8224678,10971,0 +33837,R+021,485,684,699195358,9717,0 +33839,Belem,345,588,699494480,9178,0 +33840,05+Baza,542,674,849097981,8300,0 +33841,Szlachcic,602,346,1990750,8165,0 +33842,OFF,680,532,1563417,7389,0 +33843,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,631,7589468,8816,0 +33844,%3D%7C30%7C%3D,644,387,9101574,7806,0 +33845,-+08+-+Zadupie,462,320,848902744,5133,0 +33846,24.+Szeksox+3,680,478,699804790,9540,0 +33847,120+Wioska+barbarzy%C5%84ska,537,378,699491076,10001,0 +33848,061,455,330,2502956,10019,0 +33849,Westfold.009,335,431,848918380,10178,8 +33850,Taran,338,575,6180190,9959,0 +33852,C0176,325,540,8841266,10362,0 +33853,AAA,537,322,1006847,6176,0 +33854,Kentin+ufam+Tobie,329,453,699783765,10014,0 +33855,Wioska+barbarzy%C5%84ska,401,353,3484132,7160,0 +33856,C0186,320,531,8841266,8189,0 +33858,Piek%C5%82o+to+inni,604,356,848956765,7430,0 +33859,Jednak+wol%C4%99+gofry,420,662,699736927,10311,0 +33860,Wioska+Natka1968,525,322,699644852,3764,0 +33861,052.+Edda,660,591,8337151,10252,0 +33862,ADEN,580,343,698588535,10292,1 +33863,%23%23%231,486,323,849064614,8973,0 +33864,364%7C615+Ma%C5%82y+Gr%C3%B3d,615,364,6822957,9805,0 +33865,%23045%23,635,624,692803,10019,0 +33866,0657,549,669,698659980,9590,6 +33868,O46+Drvenik,683,519,699272880,8930,0 +33869,off+100+%25,336,570,849012521,9983,0 +33870,0549,477,676,698650301,9761,0 +33871,A+014,368,622,699342219,10158,0 +33872,Muchomor+%2A019%2A,515,679,606407,10300,0 +33874,Lord+Lord+Franek+.%23183,611,356,698420691,7440,0 +33875,183...segador,437,330,6920960,7541,0 +33876,%2A102,581,664,699567608,9963,0 +33877,Ob+Konfederacja,441,333,848915730,8431,0 +33878,Didi,669,573,849070946,10160,0 +33879,Avelorn,405,654,699736927,9922,3 +33880,X+%7C+Forest+Cyaaaanku,324,477,699213622,10000,0 +33881,067+Wioska+012,661,417,9238175,9488,0 +33882,Wioska,514,677,3264534,10698,0 +33883,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,640,699269923,9788,0 +33884,011.,633,379,698361257,9925,0 +33885,%5B033%5D,663,582,698305474,7974,0 +33887,AAA,545,323,1006847,6151,0 +33888,I081+Nie+trzeba+t%C4%99gich+g%C5%82ow,672,447,699722599,9663,0 +33889,A.01+sp%C3%B3%C5%82dzielnia+gryzoni,567,331,849026145,5937,0 +33890,004,532,680,2293376,9993,0 +33891,Ob+Konfederacja,435,330,848915730,6602,0 +33892,%5BB%5D_%5B032%5D+Dejv.oldplyr,418,343,699380607,8178,0 +33893,Na+Skraju+Raju,324,542,8004076,9880,0 +33894,C0185,320,533,8841266,7619,0 +33895,%2A012%2A,356,388,699273451,10211,0 +33896,031.,623,369,699098531,10654,0 +33897,Muchomor+%2A010%2A,516,682,606407,10300,0 +33898,AAA,548,323,1006847,11898,0 +33899,wioska,353,605,849014147,7492,0 +33900,-007-,348,403,1693936,2070,0 +33901,A044,611,646,9023703,8409,0 +33902,C0171,318,514,8841266,8496,0 +33903,019+MONETKI,678,472,7588382,9724,0 +33904,LONDON,403,351,8123790,1113,0 +33905,%230169+yasoke19,491,316,1238300,9162,0 +33906,k36+2,612,354,7340529,11130,0 +33907,A008+Glina,668,440,113796,10141,2 +33908,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,635,1434753,10069,0 +33909,Szlachcic,384,360,698160606,9986,0 +33910,001.+Bordeaux,573,602,8627359,9149,0 +33911,0009,430,332,2321390,5303,0 +33913,fff,489,323,698239813,10229,0 +33914,KRAKPOLIS,403,656,699516268,9627,0 +33915,019,449,329,2502956,10019,0 +33916,Szlachcic,388,362,698160606,10559,0 +33917,Szulernia,382,369,7249451,7248,0 +33918,108,592,657,849097799,3725,0 +33919,Wioska+barbarzy%C5%84ska01,670,545,7973893,2585,0 +33920,Barba,415,658,849089459,2843,0 +33921,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,637,1434753,9967,0 +33922,%5B243%5D+Arrivederci,607,456,848985692,10158,0 +33923,Out+of+Touch,328,431,698962117,3971,0 +33924,%5BB%5D_%5B023%5D+Dejv.oldplyr,416,338,699380607,10495,1 +33925,Wierzbica,572,669,698723158,6048,0 +33926,%2A179%2A,339,414,699273451,10211,0 +33927,FILIPOWO+BRODWINO,345,591,7183372,9391,0 +33928,A0274,323,483,8841266,10362,0 +33929,107,593,656,849097799,4565,0 +33930,psycha+sitting,435,664,699736927,4998,0 +33931,A003,602,646,9023703,10237,0 +33932,Szlachcic%2FTaran,640,389,699759128,10237,0 +33933,.%3A018%3A.,635,382,849098782,11130,0 +33934,ADEN,600,348,698588535,9503,0 +33935,Architekci+Plac%C3%B3w+Boju,332,561,8004076,6794,0 +33936,%28019%29Marat,329,565,849098695,5652,0 +33937,Szulernia,383,368,7249451,10311,0 +33938,Wioska+barbarzy%C5%84ska,622,365,6625437,7837,0 +33939,C0175,316,508,8841266,10362,0 +33940,-008-,328,561,8004076,9481,0 +33941,Wioska+Bochun10,322,471,7449254,7342,0 +33942,031.xxx,498,681,699393742,3945,0 +33943,002,318,476,7127455,7012,0 +33944,Wioska+09,496,318,951823,6627,0 +33945,035+tutaj+pierwsza+mi%C5%82o%C5%9B%C4%87,670,446,699272633,7103,0 +33946,Wioska+barbarzy%C5%84ska,461,327,849017820,7347,0 +33947,003+Alaska,489,682,699238479,9889,0 +33948,Jednak+wol%C4%99+gofry,417,662,699736927,9357,0 +33949,A043,610,646,9023703,8552,0 +33950,B+041,671,542,8078914,8135,0 +33951,AAA,532,325,1006847,7371,0 +33952,%5BB%5D_%5B038%5D+Dejv.oldplyr,417,339,699380607,4466,0 +33953,A038,607,645,9023703,10031,0 +33954,Lord+Lord+Franek+.%23184,611,357,698420691,8993,0 +33955,A.02+sp%C3%B3%C5%82dzielnia+gryzoni,564,331,849026145,3137,0 +33956,088,664,567,849095227,9835,0 +33957,Jednak+wol%C4%99+gofry,424,661,699736927,7902,0 +33958,009+%C5%9Aw181%2A%2A001+kubu%C5%9B,376,626,6354098,10001,0 +33959,%230133+DannyQ,474,325,1238300,10178,0 +33960,%2A039%2A,353,395,699273451,10211,0 +33961,New+World,449,677,698152377,10294,0 +33962,Wioska+barbarzy%C5%84ska,341,416,849096547,2260,0 +33963,1v9+machine,393,642,699697558,9557,7 +33964,-011-,543,321,698588812,2831,0 +33965,Karp,326,539,699265922,8280,0 +33966,023,527,682,2293376,9993,0 +33967,020,354,613,699083129,5246,0 +33968,-%3D+011+%3D-,445,518,698971484,10008,0 +33969,kto+ananasowy+pod+wod%C4%85+ma+dom,676,538,699628084,6721,0 +33970,065+%7C+PALESTINA,656,415,9228039,3228,0 +33971,Wioska+Bochun10,322,500,7449254,5247,0 +33972,0018,530,680,698659980,10252,2 +33973,131,392,649,699269923,5367,0 +33974,Wioska+barbarzy%C5%84ska,585,657,8627359,3937,0 +33975,Jesiotr,326,550,699265922,6300,0 +33976,059.Stradi,452,323,698365960,10373,0 +33977,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,636,1434753,10025,0 +33978,0577,568,667,698659980,7837,0 +33979,%2A%2A23%2A%2A,637,386,849098782,10248,0 +33980,Wsch%C3%B3d+Droga+006,670,571,698562644,10311,0 +33981,%2A%2A17%2A%2A,631,389,849098782,10252,0 +33982,Didek,669,565,849070946,10111,0 +33983,Pomidorowy+dzem,682,511,699598425,10728,0 +33984,%230172+yasoke19,490,316,1238300,6249,0 +33985,%7C044%7C+Durres,493,685,699393742,9150,0 +33986,%28004%29Kholinar,331,566,849098695,8639,0 +33987,011.+Bemowo,685,475,7494497,9902,0 +33988,Jednak+wol%C4%99+gofry,421,663,699736927,6452,0 +33989,La+Burdello+III,507,683,8501514,3321,0 +33990,Wioska+6,331,428,699821755,7073,0 +33991,01+Banan,641,613,8224678,10414,0 +33992,Szlachcic,394,353,3484132,10474,0 +33993,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,434,672,8980651,9978,1 +33994,Gwoli+%C5%9Acis%C5%82o%C5%9Bci,342,406,849098299,6083,0 +33995,110,674,560,7038651,7308,0 +33996,028,612,636,849097799,7388,0 +33997,008,345,601,7183372,10362,0 +33998,043+Mucharadza,663,420,9238175,9708,0 +33999,AAA,530,319,1006847,9494,2 +34000,Wioska+085,646,612,848971079,9825,0 +34001,a+mo%C5%BCe+off+%3F+%3A%29,635,626,698768565,9349,0 +34002,Wioska+barbarzy%C5%84ska,349,606,7183372,5991,0 +34003,Szlachcic,391,358,3484132,10160,0 +34004,018.,557,620,699695167,7991,0 +34005,A039,608,647,9023703,10226,0 +34006,A+090,374,635,699269923,10030,0 +34008,Wioska+barbarzy%C5%84ska,324,454,6258092,5267,0 +34009,SJ2,322,455,6258092,10495,5 +34010,004+Arizona,490,683,699238479,9821,0 +34011,Auu+05,582,662,699567608,9709,0 +34013,062...skrzyp+p%C3%B3%C5%82noc,439,329,6920960,10273,0 +34014,043,469,677,699834004,9294,0 +34015,052.,458,678,849034882,10362,0 +34016,_PUSTA,657,601,698768565,10082,0 +34017,Taran,336,576,6180190,9957,0 +34018,191...segador,456,323,6920960,10301,0 +34019,Jaaa,676,490,698635863,10479,0 +34020,Damietta,412,658,849089459,8555,0 +34021,Jednak+wol%C4%99+gofry,419,658,699736927,5970,0 +34023,0296,573,664,698659980,10160,0 +34024,10.+Netflix+and+chill,555,326,699072129,10290,0 +34025,G%C3%B3ra+%C5%9Bw+Anny,675,551,848932879,10559,0 +34026,019+Barba,684,497,2135129,9553,0 +34027,4+Vienna,621,366,699857387,4554,0 +34028,ADEN,599,347,698588535,6903,0 +34029,Wioska+arek1s,457,679,1578509,8119,0 +34030,wreszcie+moja,651,401,1086351,8115,0 +34031,Wyspa_32,505,684,2585846,9689,0 +34032,Jednak+wol%C4%99+gofry,403,657,699736927,9835,0 +34033,A037,598,657,9023703,10237,0 +34034,26.+Siedlik12345,678,473,699804790,8691,0 +34035,Wioska+004,678,531,2999957,7771,0 +34037,006,410,659,699246032,8950,0 +34038,%5B01%5D,430,668,699849210,10636,0 +34039,036,529,680,2293376,7072,0 +34040,Sony+911,621,637,1415009,8759,0 +34041,C+014,678,517,8078914,10083,0 +34042,X+%7C+Forest+Cyaaaanku,325,479,699213622,8799,0 +34043,Venlo,607,357,9103424,4394,0 +34044,New+World,437,673,698152377,10297,0 +34045,0153,410,341,699431255,2665,0 +34046,%7C063%7C+Ponton,508,679,699781762,8670,0 +34047,0414,544,634,698659980,10019,0 +34048,.%3A009%3A.,633,383,849078297,5180,0 +34049,Wioska+Sir+Zordon+001,663,574,478956,8886,0 +34050,TK2,651,602,1900364,4101,0 +34051,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,641,1434753,9875,0 +34052,C0023,316,514,8841266,10362,0 +34053,Wonderwall,328,549,698962117,9761,0 +34054,Wioska+Bochun10,318,496,7449254,4966,0 +34055,%25+10+%25+spocone+dziadki,587,656,848995242,1592,0 +34056,Szulernia,375,374,7249451,4202,0 +34057,Mniejsze+z%C5%82o+0097,324,541,699794765,8284,0 +34058,1v9+machine,390,639,699697558,10019,0 +34059,A-050-Heffitto,403,349,8419570,10168,0 +34060,cz+110+8,367,375,3909522,5796,0 +34061,082+%C5%9Awi%C4%85teczna+Bombka,650,399,699491076,7997,0 +34062,100.+Aquae+Sextiae,658,409,849091866,10042,0 +34063,C0284,322,506,8841266,6415,0 +34064,J%23006,571,332,2065730,9797,0 +34065,-+292+-+SS,548,673,849018239,10000,0 +34066,%23014.+NightWalk,456,676,848896948,9009,0 +34067,Auu+03,577,667,848995242,9623,0 +34068,Nadolice,355,614,699864013,5410,0 +34069,Wioska+barbarzy%C5%84ska,623,365,6625437,8963,0 +34070,Szulernia,380,366,7249451,10084,0 +34071,J%23016,579,334,2065730,5795,0 +34072,Szulernia,375,371,7249451,10102,0 +34073,Pomidorowy+dzem,681,512,699598425,10008,0 +34074,007+Haty,347,454,6258092,9783,0 +34075,Po%C5%82udnie.009,555,671,873575,10044,0 +34076,Szlachcic,396,349,3484132,10479,0 +34077,Winterhome.037,494,315,848918380,10178,0 +34078,Wioska+barbarzy%C5%84ska,526,317,1990750,10068,0 +34079,Jaksi%C4%99maszkochaniefilllaarako,343,410,849098299,8455,0 +34080,%2A048%2A,358,391,699273451,10211,0 +34081,Wioska+barbarzy%C5%84ska,674,462,699574408,7385,0 +34082,Wioska+barbarzy%C5%84ska,641,383,7340529,9124,0 +34083,001,318,478,7127455,9593,0 +34084,I055,677,452,699722599,9944,0 +34085,058,513,683,2293376,9993,0 +34086,%5B036%5D+Wioska+barbarzy%C5%84ska,674,443,849095068,9288,0 +34087,Sony+911,620,632,1415009,9840,0 +34088,Wioska+V,456,675,848896948,7846,0 +34090,Wioska+barbarzy%C5%84ska,680,486,699598425,10728,0 +34091,Szlachcic,386,359,698160606,10475,0 +34092,Napewno+to+nie+jest+off,584,340,848912265,3761,0 +34093,Weso%C5%82ych+%C5%9Awi%C4%85t+2,639,380,7340529,10636,0 +34094,A+091,375,635,699342219,9560,0 +34095,A+074,368,629,699342219,2969,0 +34096,DejMon5,371,622,699805839,7720,0 +34097,Po%C5%82udnie.010,556,673,873575,10011,0 +34098,Szlachcic,392,358,3484132,10484,0 +34099,I%C5%82ownica,667,574,849039310,3946,0 +34100,083.+Utinum,656,406,849091866,8306,0 +34101,Wioska+barbarzy%C5%84ska,577,662,6818593,6441,0 +34102,.4.,606,356,1990750,10068,0 +34103,Wioska+barbarzy%C5%84ska,495,321,698239813,5786,0 +34104,A.10+sp%C3%B3%C5%82dzielnia+gryzoni,563,333,699072129,7602,0 +34105,189...barba,439,325,6920960,5157,0 +34106,003,347,602,7183372,10495,0 +34107,Out+of+Touch,327,439,698962117,3389,0 +34108,C0062,321,523,8841266,10362,0 +34109,fff,491,318,698239813,9116,0 +34110,A-045-Heffitto,402,347,8419570,10470,4 +34111,0084,609,351,848913037,9993,0 +34112,Wioska+barbarzy%C5%84ska,506,319,6118079,3673,0 +34113,060+pfennig,682,508,2135129,8272,0 +34114,003,608,350,1990750,10316,0 +34115,%23015.+Tony+Hawk,451,678,848896948,9702,0 +34116,Darma+dla+zawodnika,526,682,699494488,10247,0 +34117,Wioska+barbarzy%C5%84ska,679,483,699598425,10728,0 +34118,New+World,444,675,698152377,10303,0 +34119,-001-,375,637,849096354,4127,0 +34120,%2A124%2A,364,383,699273451,10211,0 +34121,B+057,678,535,8078914,8060,0 +34123,Szulernia,376,370,7249451,10362,0 +34124,073.Stradi,454,322,698365960,9861,0 +34125,cz+Wo%C5%82%C3%B3w,365,383,3909522,3928,0 +34126,Wioska+lejto27,680,469,699574408,10123,0 +34127,%28032%29Rira,336,567,849012521,9436,0 +34128,Szulernia,370,371,7249451,9646,0 +34129,Y+%7C+Forest+Cyaaaanku,320,490,699213622,10000,0 +34130,010.+Dla+flag,354,435,698630507,8556,0 +34131,Sob%C4%85cz,653,589,849039310,6687,0 +34132,Wyspa+015,631,380,699756210,8542,0 +34133,0260,555,653,698659980,10019,0 +34134,Wioska+barbarzy%C5%84ska,316,495,699823490,3333,0 +34135,Szlachcic,391,352,3484132,10495,0 +34136,%23064%23,629,625,692803,9761,0 +34137,008,550,407,699761749,10495,0 +34138,%5BB%5D_%5B035%5D+Dejv.oldplyr,417,344,699380607,8736,0 +34139,Ob+Konfederacja,437,331,848915730,6455,0 +34140,0002,625,384,848915730,9938,0 +34142,P%C5%82achty,659,583,849039310,5783,0 +34143,Wioska+barbarzy%C5%84ska,320,485,849013126,3715,0 +34144,0616,475,676,698659980,9783,0 +34145,Ob+Konfederacja,429,333,848915730,6729,0 +34146,O57+Winnipeg,670,554,699272880,7363,0 +34147,%2A066%2A,356,386,699273451,10211,0 +34148,%C5%BBUBR+PSYCHIATRYK+003,612,639,33900,8529,0 +34149,003,680,506,699598425,10416,0 +34150,Wioska+Bochun10,315,490,7449254,10311,0 +34151,A015,611,649,9023703,10229,0 +34152,fff,488,319,698239813,8653,0 +34153,J%23019,571,337,2065730,9797,0 +34154,Wioska+barbarzy%C5%84ska,684,496,699598425,10728,0 +34155,2.Badalona,565,672,698215322,5391,0 +34156,035+Brak+do%C5%9Bwiadczenia+na+maszyn,373,628,6354098,8225,0 +34157,Out+of+Touch,327,443,698962117,9838,0 +34158,-+296+-+SS,549,673,849018239,10000,0 +34159,Wioska+barbarzy%C5%84ska,622,363,6625437,6943,0 +34160,No.19,478,682,698826986,2378,0 +34161,002.+Brwin%C3%B3w,322,447,849098966,7339,0 +34162,055+Wioska+015,660,421,9238175,8203,0 +34163,New+World,446,678,698152377,10294,0 +34164,Zeta+Reticuli+O,415,337,699323302,10052,0 +34165,1v9+machine,382,641,699697558,10019,0 +34166,%2A261%2A,339,415,699273451,2781,0 +34167,Muchomor+%2A007%2A,511,685,606407,10311,0 +34168,-+06+-+Brzeziny,460,321,848902744,6816,0 +34170,094.+Zatoka+Kr%C3%B3lewska,665,583,8337151,10160,6 +34171,LordAlamar,636,615,699797508,6739,0 +34172,%28007%29Thaylen+City,328,568,849098695,9948,0 +34173,Wyspa+027,636,374,699756210,6078,0 +34174,_PUSTA,660,592,698768565,10069,0 +34175,Wyspa+020,629,375,699756210,10273,0 +34176,B006,473,679,8954402,9340,0 +34177,TWIERDZA+.%3A047%3A.,667,562,7154207,10838,0 +34178,BAC%C3%93WKA+%7C040%7C,661,408,7394371,7142,0 +34179,019+Czarnoksi%C4%99%C5%BCnik,366,627,8268010,6455,0 +34180,042,471,678,699834004,9653,0 +34181,Wioska+barbarzy%C5%84ska,630,377,7555180,4936,0 +34182,.%3A012%3A.,637,380,849078297,4379,0 +34184,-+293+-+SS,544,674,849018239,10000,0 +34185,Szulernia,374,373,7249451,5874,4 +34186,C0025,320,520,8841266,10362,0 +34187,021,412,657,699736927,6475,0 +34188,028%23+Lajrra,457,680,3933666,10268,0 +34189,Wioska+barbarzy%C5%84ska,343,589,7183372,7374,0 +34190,Gattacka,622,372,699298370,9852,0 +34191,Lord+Lord+Franek+.%23143,514,322,698420691,10026,0 +34192,037,677,479,7085502,9719,0 +34193,034.xxx,479,684,699393742,4082,0 +34194,007+Islay,557,325,699072129,6541,0 +34195,75k%24+Grvvyq,673,566,699676005,10495,0 +34196,Wioska+barbarzy%C5%84ska,628,368,6625437,4965,0 +34197,200+km,408,344,699854830,3851,0 +34198,%5B014%5D+Klocuchowo,673,435,849095068,9312,0 +34199,rotes+idz+spac+misiu,462,675,698807570,8525,0 +34200,106,595,656,849097799,5077,0 +34201,SJ5,330,448,6258092,10252,6 +34202,-003-,346,396,1693936,3934,0 +34203,001+Northampton,605,347,849057572,10252,0 +34204,209,422,333,7271812,3496,0 +34205,X+%7C+Forest+Cyaaaanku,318,474,1536625,5886,5 +34206,0578,566,665,698659980,8598,0 +34207,Chekku+-+meito,324,524,9280477,9976,0 +34208,Piek%C5%82o+to+inni,592,347,848956765,3857,0 +34209,0020,546,671,698659980,10160,0 +34210,080,474,614,699336777,10083,0 +34211,A0283,321,485,8841266,8970,0 +34212,New+World,442,676,698152377,10294,0 +34213,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,641,699269923,9832,0 +34214,Wioska+4,575,333,7560474,6853,0 +34215,A057,606,651,9023703,10221,0 +34216,0154,411,343,699431255,2210,0 +34217,village+2,650,402,1086351,9507,0 +34219,%230134+golek95,477,319,1238300,8081,0 +34220,Kiedy%C5%9B+Wielki+Wojownik,598,348,8632462,4838,0 +34221,047-+Mroczna+Osada,651,394,849035905,9387,0 +34222,OSADA+III,679,499,699598425,10411,0 +34223,Psycha+Siada,441,668,698807570,10068,0 +34224,Wioska+Bochun10,323,470,7449254,6429,0 +34225,I056,681,461,699722599,10235,0 +34226,Almere,603,353,1990750,9406,0 +34227,%2A%2A38%2A%2A,672,439,849098782,9995,0 +34228,%2A235%2A,333,445,699273451,10827,0 +34229,C0072,320,512,8841266,10362,0 +34230,%2A243%2A,336,437,699273451,9841,0 +34231,Wioska+barbarzy%C5%84ska,628,375,7555180,3668,0 +34232,A+030,368,628,699342219,8916,0 +34233,138+Dolina+Konopii,648,399,699491076,8250,0 +34234,012+Mordor,456,677,698585370,9739,0 +34235,0608,476,683,698659980,10019,0 +34236,XXX,461,676,699827112,8662,0 +34237,Westfold.008,331,422,848918380,10178,0 +34238,C0084,319,511,8841266,10362,0 +34239,Wioska+barbarzy%C5%84ska,460,324,849017820,6703,0 +34240,001,324,557,849012521,10495,8 +34241,%3D%7C38%7C%3D,645,391,9101574,4236,0 +34242,Wioska+barbarzy%C5%84ska,321,452,6258092,3857,0 +34244,Pomidorowy+dzem,679,516,699598425,10728,0 +34245,Farcik,660,585,2269943,6215,0 +34246,Toru%C5%84,555,323,849108784,3162,0 +34247,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,384,633,1434753,9029,0 +34248,%230165+yasoke19,490,318,1238300,10178,0 +34249,Krytl07,512,320,1990750,10311,0 +34250,C004+Liskota,591,661,9023703,9994,0 +34251,0052,602,353,848913037,9993,0 +34252,Mirzec,572,667,698723158,5805,0 +34253,S1Joker+pozdrawia+%3B%29,333,570,849098695,6757,0 +34254,Wioska+barbarzy%C5%84ska,318,506,7098955,8730,0 +34255,Ob+Konfederacja,427,331,848915730,3680,0 +34256,No.17,473,678,698826986,1713,0 +34257,New+World,435,668,698152377,10297,0 +34258,KONFA+TO+MARKA%2C+NARKA,319,458,698152377,10292,0 +34259,%2A030%2A,349,393,699273451,10211,0 +34260,J%23017,576,337,2065730,9797,0 +34261,%2A009%2A,354,387,699273451,10211,0 +34262,%23086%23,633,625,692803,9125,0 +34263,155...hubertw25,441,326,6920960,10237,0 +34264,-10-,624,373,699837826,6835,0 +34265,Szlachcic,379,359,698160606,10476,4 +34266,Wioska+barbarzy%C5%84ska,332,422,2418002,8334,0 +34267,140+Dolina+Wilk%C3%B3w,649,397,699491076,5283,0 +34268,Twierdza+%28GETTO%29,477,636,0,6873,32 +34269,016+Claremont,476,678,699834004,9925,0 +34270,003+Desant,480,682,699745265,9424,0 +34271,Wioska+Rublow,650,601,1900364,9745,0 +34272,Pomidorowy+dzem,685,512,699598425,7637,0 +34274,cz+zachod+005,364,377,3909522,3285,0 +34275,0003,677,465,699574408,10008,0 +34276,C0057,319,515,8841266,10362,0 +34277,Wioska+045,647,603,848971079,9761,0 +34278,%23Forza+03,434,667,699849210,6677,0 +34279,Dlaczego..%3F,413,667,699684693,9124,0 +34280,Wioska+barbarzy%C5%84ska,679,497,699598425,10728,0 +34281,KR%C3%93L+PAPI+WIELKI,642,617,698191218,9439,0 +34282,Wioska+Kr%C3%B3lowo+Z%C5%82ota+3,328,433,7012651,4071,2 +34283,_PUSTA,658,592,698768565,10338,0 +34284,Ten+tego,565,333,699710633,9134,0 +34285,Po%C5%82udnie.006,555,675,873575,10297,0 +34286,021,358,606,699083129,4223,0 +34287,006+Liberty+Stadium,675,445,849098769,10065,0 +34288,Wioska+barbarzy%C5%84ska,344,591,7183372,8300,0 +34290,Out+of+Touch,327,431,698962117,8677,0 +34291,J%23007,572,332,2065730,9797,0 +34292,007+Nebraska,487,684,699238479,4285,0 +34293,080.+Morze+Eniwetty,666,579,8337151,7600,0 +34294,Out+of+Touch,330,431,698962117,2586,0 +34295,A37,471,644,849037407,9804,0 +34296,076,663,573,849095227,9319,0 +34298,Wioska+Bochun10,325,472,7449254,10311,0 +34299,0397,564,669,698659980,10252,0 +34300,New+Land+24,337,412,849064752,2220,0 +34301,097.+Italica,658,407,849091866,9352,0 +34302,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,674,698807570,10252,0 +34304,016art,605,348,1990750,10116,8 +34305,Kamyk,320,454,849098400,3972,0 +34306,002+FF,314,504,7097727,6569,0 +34307,019+Schwere+Panzer-Abteilung+504,605,356,849091899,3884,0 +34308,0236,533,680,698659980,9885,0 +34309,1001,622,361,699150527,10160,0 +34310,Wioska,324,456,848946608,3824,0 +34311,Wioska+barbarzy%C5%84ska,685,492,699598425,10011,0 +34312,%2AINTERTWINED%2A,511,680,698704189,3789,0 +34314,Lord+Lord+Franek+.%23146,509,322,698420691,9943,0 +34315,092+Tomek,685,510,2135129,6417,1 +34316,015+arena,678,448,849098769,9835,0 +34317,Wioska+barbarzy%C5%84ska,343,599,7183372,10216,0 +34318,_PUSTA,656,596,698768565,10061,0 +34319,Taran,682,498,699598425,10728,0 +34321,07+Cytadela+P%C3%B3%C5%82nocna,564,330,849108780,10362,0 +34322,C0149,320,526,8841266,10362,0 +34323,089+Tomek,680,512,2135129,7862,0 +34325,New+World,432,670,698152377,10292,0 +34326,Wioska+barbarzy%C5%84ska,344,589,7183372,3922,0 +34327,No.15,477,677,698826986,1237,0 +34328,OFF,654,598,849014413,10159,0 +34329,KONFA+TO+MARKA%2C+NARKA,318,462,698152377,10294,0 +34330,ORLE,356,616,699864013,12154,0 +34331,081.Stradi,447,326,698365960,10171,0 +34332,R+026,486,680,699195358,8813,0 +34333,KR%C3%93L+PAPI+WIELKI,636,624,698191218,10215,0 +34334,Wioska+J,572,338,7560474,3655,0 +34335,510,676,554,7038651,8314,0 +34336,Wieniec-Hubix,660,423,8675636,10019,0 +34337,059+pfennig,684,509,2135129,7917,0 +34338,.achim.,484,312,6936607,7868,0 +34339,%2A045%2A,344,398,699273451,10211,0 +34340,OFF,654,594,849014413,9585,0 +34341,Nowa+39,662,587,698702991,9455,0 +34342,C0177,325,541,8841266,10362,0 +34343,Auu+07,578,668,848995242,7096,0 +34344,Wioska+Sir+Zordon+004,664,574,478956,5899,0 +34345,Wioska+Bochun10,320,495,7449254,7569,0 +34346,195...Segadro,456,325,6920960,10650,0 +34347,Mayans,649,392,7973893,9122,0 +34348,R+015+%7EP%C4%99knina%7E,484,678,699195358,10019,0 +34349,Didek,671,561,849070946,10066,0 +34350,214,433,331,7271812,9801,0 +34351,Sekou+3,679,509,699737356,10059,0 +34352,C0044,323,521,8841266,10362,0 +34353,Out+of+Touch,324,443,698962117,9384,0 +34354,Wioska+X,580,339,698200480,7234,0 +34355,C0169,319,519,8841266,10362,0 +34356,%2A228%2A,331,438,699273451,8000,0 +34357,0044,678,463,698416970,10019,0 +34358,Wioska+r+3,558,668,848915531,5286,0 +34359,Taran+008,607,360,699098531,10971,0 +34360,22.+Dayz,555,325,699072129,9258,0 +34361,016+Wioska+barbarzy%C5%84ska,679,450,849098769,8388,0 +34362,%C5%BBUBR+PSYCHIATRYK+004,616,642,33900,8218,0 +34363,B+015,675,550,8078914,9770,0 +34364,C0031,316,522,8841266,10362,0 +34365,016+%2A+Lady+Porto+%2A,646,396,699406750,12154,0 +34366,New+Land+17,342,403,849064752,3697,0 +34367,Szlachcic%2FTaran,634,375,699759128,10237,7 +34369,Chekku+-+meito,321,526,9280477,9976,0 +34370,B+059,677,534,8078914,6956,0 +34371,109+And+another+one,334,571,699382126,10476,0 +34372,%5BB%5D_%5B026%5D+Dejv.oldplyr,416,336,699380607,10495,9 +34373,-05-,322,516,765188,8127,0 +34374,Winterhome.069,504,314,848918380,10045,0 +34375,%230198+Segadorr+dar,460,319,1238300,7578,0 +34376,019+Mucharadza,663,426,9238175,10559,0 +34378,999+Kubacki,669,421,699491076,5830,0 +34379,Prosto+do+nieba+czw%C3%B3rkami+szli..,449,328,699590236,3029,0 +34380,058+Wioska+004,663,416,9238175,9963,0 +34381,Jednak+wol%C4%99+gofry,416,660,699736927,2648,0 +34382,172...Segadorr,438,329,6920960,10330,0 +34383,009,678,495,7085502,9735,4 +34384,Nowa+47,664,568,698702991,7416,0 +34385,Winterhome.042,493,314,848918380,10178,0 +34386,Hiszpan2,672,551,7038651,10389,0 +34387,Wsch%C3%B3d+X1,684,529,698562644,7687,0 +34389,Taran,341,583,6180190,9957,0 +34390,022+toni,683,457,849098769,9963,0 +34391,A064,603,654,9023703,8392,0 +34393,007,315,505,7097727,6486,0 +34394,Wioska+barbarzy%C5%84ska,467,325,699191449,6100,0 +34395,208,421,331,7271812,3739,0 +34396,184...skrzyp,444,325,6920960,7504,0 +34397,.015.,503,379,698489071,10595,0 +34398,Wioska+barbarzy%C5%84ska,506,683,699781762,9927,0 +34399,START+06,574,670,698723158,3294,0 +34400,C+005,682,514,8078914,7468,0 +34401,Metalchem,682,539,848932879,10971,8 +34403,Wioska+r+11,556,672,848915531,3949,0 +34404,%230292+nt,466,318,1238300,7620,0 +34405,Jaz,322,551,699265922,6167,0 +34406,%2A001%2A,353,392,699273451,10211,0 +34407,sony911,621,642,1415009,10560,0 +34408,%2A094%2A,360,380,699273451,10211,0 +34409,Architekci+Plac%C3%B3w+Boju,334,562,8004076,9880,0 +34410,%2A100%2A,360,381,699273451,10211,9 +34411,Wioska+barbarzy%C5%84ska,553,331,699072129,9412,0 +34412,Weso%C5%82ych+%C5%9Awi%C4%85t,638,377,848924219,3541,0 +34413,Z%7C006%7C+Foggia,474,684,699393742,8720,0 +34414,Helms+Deep,459,679,849004274,9835,0 +34416,%7C065%7C+Ostry,488,682,699393742,10252,0 +34417,%23023%23,620,634,692803,9761,0 +34418,0601,488,680,698659980,10083,0 +34419,sundance,640,383,7340529,10887,0 +34420,Wioska+barbarzy%C5%84ska,345,596,7183372,5717,0 +34421,niemanieba,502,519,699785935,9976,0 +34422,Wioska+Barbarzy%C5%84ska,339,586,3990066,5035,0 +34423,Adidas,418,658,9191031,8029,0 +34424,%230118+tomek791103,473,320,1238300,8244,0 +34425,182...segador+M,443,327,6920960,8336,0 +34426,Proposal+WN,496,683,849004274,9835,0 +34427,Wyspa_33,506,684,2585846,9638,0 +34428,Kuzyn+B%C5%82a%C5%BCej,545,678,849098628,10322,0 +34429,0322,446,605,698659980,10252,0 +34430,%23017%23,630,631,692803,9761,0 +34431,C113,368,631,699383279,9500,0 +34432,Szulernia,368,369,7249451,3180,0 +34433,014,320,501,7097727,4782,0 +34434,020,535,677,2293376,9993,0 +34435,011+Montana,495,684,699238479,7473,0 +34436,A0276,322,484,8841266,10495,0 +34438,005+Emirates+Stadium,677,448,849098769,9879,0 +34439,1v9+machine,389,645,699697558,10019,0 +34440,-004-,347,398,1693936,3812,0 +34441,A034,599,655,9023703,10237,0 +34442,%231+Imperium,659,586,699778867,12154,0 +34443,Wioska+barbarzy%C5%84ska,683,470,849098769,6310,0 +34444,008+I+myk+pierwsza+darma,499,390,7758085,9861,0 +34445,Dolina+Rze%C5%BAnik%C3%B3w,646,390,7973893,6906,0 +34446,Taran,338,583,6180190,6948,7 +34447,Barbabasia,343,412,849098299,2410,0 +34448,Y+%7C+Forest+Cyaaaanku,319,487,699213622,10101,0 +34449,%23006%23,631,632,692803,9761,0 +34450,KR%C3%93L+PAPI+WIELKI,642,619,698191218,10232,0 +34451,Kiedy%C5%9B+Wielki+Wojownik,592,348,8632462,7964,0 +34452,B+061,677,531,8078914,9831,0 +34453,017+%2A+Lady+Porto+%2A,646,395,699406750,6022,0 +34454,083+%C5%9Awi%C4%85teczna+Bombka,653,400,699491076,9266,0 +34455,Ronin,641,629,8815749,10019,0 +34456,Wioska+barbarzy%C5%84ska,672,455,113796,4070,0 +34457,%3D%7C48%7C%3D,650,394,9101574,9843,0 +34458,Jednak+wol%C4%99+gofry,424,663,699736927,8380,0 +34459,Po%C5%82udnie.018,552,677,873575,9964,0 +34460,-010-,543,324,698588812,2352,0 +34462,%234+Centrum,661,586,699778867,9556,0 +34463,016+Teirm,658,590,8337151,10083,0 +34464,Szlachcic%2FTaran,642,394,699759128,10237,0 +34466,Nowa+wioska,429,330,699088769,8254,0 +34467,210,423,333,7271812,5383,0 +34468,003,314,502,7097727,8189,0 +34469,%2A116%2A,361,381,699273451,10211,0 +34470,%2A%2A33%2A%2A,666,434,849098782,10913,0 +34471,%23094%23,622,634,692803,9761,0 +34472,%5BB%5D_%5B025%5D+Dejv.oldplyr,428,336,699380607,9499,0 +34473,%23012%23,623,630,692803,9761,0 +34474,psycha+sitting,409,661,699736927,6206,0 +34475,X+%7C+Forest+Cyaaaanku,318,468,1536625,10000,0 +34476,0008,615,610,6417987,9789,0 +34477,009,345,602,7183372,10015,0 +34478,002,361,610,699083129,10222,2 +34479,Ma%C5%82yszyn,573,667,698723158,6824,0 +34480,Wioska+barbarzy%C5%84ska,498,682,699781762,10452,0 +34481,_PUSTA,656,598,698768565,10063,0 +34482,Romeo,684,490,699737356,10152,0 +34483,Nowa+45,665,570,698702991,9283,0 +34484,038+Mucharadza,664,419,9238175,10559,0 +34485,0302,571,665,698659980,9950,0 +34486,0579,550,671,698659980,9745,0 +34487,%28015%29Herdaz,329,567,849098695,7327,0 +34488,710,675,559,7038651,8245,0 +34490,%2A%2A44%2A%2A,676,442,849098782,7745,0 +34491,MojeSzczytToTw%C3%B3jDno,516,372,828637,11321,0 +34492,Grvvyq+101k%24,679,539,699676005,8923,0 +34493,xxx,643,619,692803,9902,0 +34494,%2AINTERTWINED%2A,510,683,698704189,8722,0 +34495,B+042,684,530,8078914,6924,0 +34497,Wioska+barbarzy%C5%84ska,462,325,699191464,6657,0 +34498,0416,546,634,698659980,8063,0 +34499,Taran,598,342,1990750,7600,0 +34500,--Tinka,620,385,8096537,10104,0 +34501,sony911,624,639,1415009,9991,0 +34502,A031,602,655,9023703,10237,0 +34503,Wioska+002,572,336,699703295,4227,0 +34504,004,314,499,7097727,7196,0 +34505,FILIPOWO+Aga2201199+Z%C5%81O,345,581,6180190,9976,0 +34506,Sullivanum+%5B3%5D,336,588,1606425,11875,0 +34507,022+GypsyLand,615,355,849057572,6549,0 +34508,%2A046%2A,348,396,699273451,10211,0 +34509,Darma+dla+zawodnika,524,682,699494488,8764,0 +34510,0604,488,683,698659980,10160,0 +34511,Wioska+barbarzy%C5%84ska,521,318,698350371,6469,0 +34512,-+245+-+SS,537,682,849018239,10000,5 +34513,A040,444,402,8740199,10217,0 +34514,Liniewko,656,588,849039310,12154,0 +34515,123,469,681,9003698,10373,0 +34516,KR%C3%93L+PAPI+WIELKI,647,614,698191218,10257,0 +34517,Wioska+%28004%29,673,456,698232227,3143,0 +34518,%2A%2A51%2A%2A,670,424,849098782,7979,0 +34519,Wioska+barbarzy%C5%84ska,678,466,699574408,10000,0 +34520,Wioska+barbarzy%C5%84ska,517,686,606407,8428,0 +34521,Taran,337,583,6180190,9965,0 +34522,.%3A019%3A.,635,378,849078297,6292,0 +34523,%230117+tomek791103,479,322,1238300,10178,0 +34524,048,672,513,699413040,9807,0 +34525,320,674,557,7038651,8827,0 +34526,082.+Vicentia,654,409,849091866,7341,0 +34527,4.Lipovka,412,336,849098648,7055,0 +34528,Szlachcic,383,359,698160606,10380,0 +34529,B.15+duchy+serca+puszczy,551,321,849026145,3256,0 +34531,A+050,368,623,699342219,3131,0 +34532,218,427,337,7271812,7375,0 +34533,C0033,321,517,8841266,10362,7 +34534,psycha+sitting,422,668,699736927,10146,0 +34535,AAA,529,322,1006847,6877,0 +34536,016,670,570,6160655,8937,0 +34537,C0266,314,508,8841266,5251,0 +34538,Wioska+barbarzy%C5%84ska,680,485,699598425,10728,0 +34539,OFF,683,527,1563417,8150,0 +34540,Osada+koczownik%C3%B3w,500,681,699781762,9963,3 +34541,Szale,460,682,698807570,9792,0 +34542,C+006,681,519,8078914,8602,0 +34543,058+pfennig,680,509,2135129,7684,0 +34544,Kariko+Village,478,318,849048216,1906,0 +34545,xddd,468,320,699393759,4914,0 +34547,%28016%29Tu+Bayla,331,569,849098695,9491,0 +34548,New+World,433,671,698152377,10290,0 +34549,1v9+machine,390,641,699697558,10019,0 +34550,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,370,630,849097937,10061,0 +34551,%2AINTERTWINED%2A,514,681,698704189,7143,0 +34553,Piek%C5%82o+to+inni,596,347,848956765,3651,0 +34554,A+019,365,621,699342219,6799,0 +34557,Wioska+003,680,527,2999957,7730,0 +34558,007.+QPR,491,684,848953066,4352,0 +34559,Ajjj,343,588,7318415,6018,0 +34560,048,540,680,2293376,9993,0 +34561,Wioska+barbarzy%C5%84ska,373,363,849027025,8249,0 +34562,%2A%2A32%2A%2A,675,436,849098782,10436,0 +34563,Wioska+barbarzy%C5%84ska,646,609,1900364,5146,0 +34564,V008,337,419,849097737,8357,0 +34565,New+World,437,676,698152377,10300,7 +34566,ups+pomy%C5%82ka,333,433,7012651,7247,0 +34567,Thuzal+5,358,616,699699601,12021,0 +34568,ZULA,400,343,8123790,4492,0 +34569,Czarny+8,603,351,1990750,10068,5 +34570,New+Land+29,345,403,849064752,2512,0 +34571,Staw,320,543,699265922,6124,0 +34572,KR%C3%93L+PAPI+WIELKI,640,617,698191218,10013,0 +34573,066,452,329,2502956,8652,0 +34574,Szlachcic,631,372,848924219,6821,2 +34575,Wioska+Go%C5%9B%C4%87098607,326,543,849098607,2021,0 +34576,Wioska+barbarzy%C5%84ska,568,669,6818593,7852,0 +34577,017+arena,678,447,849098769,9847,0 +34578,KR%C3%93L+PAPI+WIELKI,638,618,698191218,10085,0 +34579,AAA,540,320,1006847,6722,0 +34580,Wioska+barbarzy%C5%84ska,624,368,6625437,6107,0 +34581,%C5%BBUBR+PSYCHIATRYK+002,611,642,33900,7814,0 +34582,%5BB%5D%5B01%5D+House+of+Blues,426,339,699380621,10644,0 +34583,Psycha+Siada,440,671,698807570,6828,0 +34584,%2A257%2A,355,386,699273451,2044,0 +34585,A+022,365,629,699342219,5642,0 +34586,-+269+-+SS,539,678,849018239,7268,0 +34587,Tolpyga,324,550,699265922,5996,0 +34588,Osada+koczownik%C3%B3w,340,596,7183372,10139,7 +34589,Komornicy+011,350,609,699336777,5458,0 +34590,fff,488,323,698239813,10337,0 +34591,Wioska+barbarzy%C5%84ska%2C,590,653,848995242,10146,0 +34592,Wioska+barbarzy%C5%84ska,544,322,699244334,2247,0 +34593,Nowa+44,662,578,698702991,9177,0 +34594,Na+Skraju+Raju,320,547,8004076,7995,0 +34595,%2A160,342,409,699273451,10211,0 +34596,Stanisko,581,659,1415009,3223,3 +34597,Wioska+Tomko119,387,646,699269923,9625,0 +34598,Ob+Konfederacja,441,332,848915730,7149,0 +34599,39k%24+Grvvyq,674,563,699676005,10495,2 +34600,%C5%BBUBRAWKA+011,603,630,33900,10259,0 +34601,Zeta+Reticuli+O,420,336,699323302,10887,0 +34602,Ronin+P,598,618,698768565,9995,0 +34603,C0170,327,541,8841266,10416,0 +34604,Wioska+barbarzy%C5%84ska,336,418,2418002,3054,0 +34605,%3D%7C18%7C%3D,642,381,9101574,6271,0 +34606,026+Stormveil+Castle,514,315,1990750,10068,0 +34607,C0102,319,521,8841266,10495,0 +34608,Wioska+pawel1980r,387,648,699269923,9994,0 +34609,New+World,442,675,698152377,10292,0 +34610,Z%7C005%7C+Neapol,470,678,699393742,9421,0 +34611,Kentin+ufam+Tobie,323,460,699783765,10000,0 +34612,New+World,436,673,698152377,10303,0 +34613,%5B003%5D+Revenge+33333,569,334,699710633,10178,0 +34614,036+Wioska+barbarzy%C5%84ska,672,452,849098769,7270,0 +34615,Rakieta,328,432,849098727,2902,0 +34616,Out+of+Touch,327,446,698962117,2356,0 +34617,Wioska+barbarzy%C5%84ska,575,325,7563943,2572,0 +34618,%3D%7C32%7C%3D,646,398,9101574,7129,0 +34619,RADOM,323,537,699794765,5892,0 +34620,0309,570,668,698659980,8128,0 +34621,16.+Denver,685,481,699804790,9362,0 +34622,Wioska+7,315,486,849075836,8399,0 +34623,cz+Agnes,365,379,3909522,9851,0 +34624,-+294+-+SS,544,676,849018239,9965,0 +34625,Wioska+barbarzy%C5%84ska,559,329,699072129,10281,0 +34626,03+Broku%C5%82,642,615,8224678,9113,0 +34627,C0280,321,504,8841266,10197,0 +34628,AG18,585,666,699876345,8026,0 +34630,13.+Roch,682,482,699804790,9362,0 +34631,2.Burgos,562,670,698215322,4999,0 +34632,Wioska+Kr%C3%B3lowo+Z%C5%82ota+2,334,434,7012651,5883,0 +34633,400,675,555,7038651,10348,0 +34634,Wioska+kimic19,344,590,7183372,2904,0 +34635,Ob+Konfederacja,435,332,848915730,10067,3 +34636,R+020+%7EZimowa+Twierdza%7E,484,684,699195358,9519,0 +34637,B02,476,681,698652014,8375,0 +34638,-03-,322,504,765188,6055,0 +34639,Kingdom+2,680,504,699598425,10728,0 +34640,C01,678,542,848995478,10776,1 +34642,%2A017%2A,358,389,699273451,10211,0 +34643,Wioska+barbarzy%C5%84ska,506,679,699781762,9943,0 +34644,066.Stradi,454,323,698365960,9818,0 +34645,rotes+idz+spac+misiu,453,674,698807570,6567,0 +34646,0605,490,686,698659980,10019,0 +34647,Wioska+NATSONI+I,679,498,699598425,10014,0 +34648,Wioska+barbarzy%C5%84ska,433,326,699393759,9086,0 +34649,Szlachcic%3Btaran,618,363,1990750,10160,0 +34650,Ob+Konfederacja,432,333,848915730,10075,2 +34651,Wioska+6,315,487,849075836,7921,0 +34652,Wioska+barbarzy%C5%84ska,344,405,849096547,2467,0 +34653,psycha+sitting,407,662,699736927,10146,0 +34654,Napewno+to+nie+jest+off,585,338,848912265,6662,0 +34655,015,357,608,699083129,4837,0 +34656,%5B006%5D+Pierdziszewo,675,437,849095068,10237,8 +34657,Po%C5%82udnie.019,554,675,873575,9975,0 +34658,-+DragonI,543,323,699825236,6238,0 +34659,I080,676,441,699722599,9271,0 +34660,Muchomor+%2A013%2A,518,679,606407,10094,0 +34661,0155,411,342,699431255,2762,0 +34662,Lord+Lord+Franek+.%23142,513,320,698420691,10146,0 +34663,GRIGOR-2007,623,363,6625437,9782,0 +34664,Sony+911,590,654,1415009,10849,0 +34665,Minas+Ithil,624,363,699857387,10019,0 +34666,092+Nowy+Rok,656,402,699491076,9594,0 +34667,Kielb,325,547,699265922,10160,3 +34668,K36+-+%5B002%5D+Before+Land,626,371,699088769,4719,0 +34669,057,645,522,699351301,10140,0 +34670,C0051,323,523,8841266,10362,0 +34671,020.,649,610,6520732,8017,0 +34672,%23044%23,635,629,692803,9761,0 +34673,F01,685,525,848995478,6759,0 +34674,Wioska+barbarzy%C5%84ska,686,492,699598425,10728,0 +34675,Deveste+ufam+Tobie,431,635,699783765,10009,0 +34676,035+Wioska+barbarzy%C5%84ska,673,449,849098769,7262,0 +34677,003+Wanda+Metropolitano,676,453,849098769,10728,0 +34678,%2A046,598,653,699567608,9713,0 +34679,Napewno+to+nie+jest+off,587,337,848912265,8856,0 +34680,Wioska+barbarzy%C5%84ska,560,325,570100,3258,0 +34681,Komornicy+004,349,607,699336777,8264,0 +34682,159...lord+rdw,440,330,6920960,10290,0 +34683,%230009+%C5%81obuz+kocha+najbardziej,499,556,9272054,10019,0 +34684,222,636,378,849092309,5836,0 +34685,Ob+Konfederacja+%2B,434,330,848915730,6932,0 +34686,%23017.+Polska+Gola,451,676,848896948,8395,0 +34687,C0151,319,526,8841266,8836,0 +34688,Jednak+wol%C4%99+gofry,417,661,699736927,8407,0 +34689,027Wioska+barbarzy%C5%84ska,679,448,849098769,8336,0 +34690,xDD,673,562,849045915,8601,0 +34691,Jezioro,325,553,699265922,9761,0 +34692,O61+Cesvaine,674,559,699272880,11534,0 +34693,ADEN,603,346,698588535,9643,0 +34694,024+toni,676,457,849098769,8381,1 +34695,Wioska+12,319,486,849075836,5584,0 +34696,I057,675,450,699722599,9802,0 +34697,Lis+z+g%C5%82ow%C4%85+%C5%9Blimaka,361,387,849096182,2752,0 +34699,Szlachcic,396,355,3484132,10495,0 +34700,Gniezno,553,323,849108784,4938,0 +34701,Wioska+barbarzy%C5%84ska,570,333,0,4721,0 +34702,Jednak+wol%C4%99+gofry,416,662,699736927,7621,0 +34703,Taran,680,488,699598425,10728,0 +34704,Zeta+Reticuli+O,417,341,699323302,10569,0 +34705,011,348,603,7183372,10362,0 +34706,Y+%7C+Forest+Cyaaaanku,317,488,699213622,9984,0 +34707,12.+Grzesiu,684,481,699804790,9362,0 +34708,003,682,538,699829916,3006,0 +34709,049+zzz012,664,415,9238175,10293,0 +34710,A31,462,677,698652014,9866,0 +34711,Lord+Arsey+II,341,421,698349125,3233,0 +34712,%5B028%5D+Wioska+barbarzy%C5%84ska,671,436,849095068,9288,0 +34713,wounded+knee,638,385,7340529,7172,0 +34714,a+mo%C5%BCe+off+%3F+%3A%29,637,625,698768565,9342,0 +34715,Wioska+barbarzy%C5%84ska,581,333,699710633,3209,0 +34716,%3D%7C50%7C%3D,650,390,9101574,2621,0 +34717,LAST+%21%21%21,646,601,849014413,10084,0 +34718,krytl17,508,316,1990750,7291,0 +34719,%2A%2A07%2A%2A,666,435,849098782,11752,0 +34720,006,642,379,699738350,7790,0 +34721,cz+10qqqqqqqqqqqqqqqqqqqqqq,368,380,3909522,11489,0 +34722,Szulernia,368,375,7249451,3589,0 +34725,019+Daevon,477,682,699834004,7233,0 +34726,024+Wioska,681,467,699671454,2631,0 +34727,%3F%3F%3F,483,319,698489071,10083,0 +34728,Wioska+bar+k04,381,363,849098423,3013,0 +34729,071,542,680,2293376,5351,0 +34730,Peryferie,328,564,849096458,5432,0 +34731,C0093,319,525,8841266,10362,0 +34732,Kentin+ufam+Tobie,325,459,699783765,10000,0 +34733,%28025%29Aimia,329,574,849098695,6238,0 +34734,0149,408,339,699431255,8083,0 +34735,Wioska+041,649,602,848971079,9761,0 +34736,Wioska+Bochun10,319,495,7449254,10311,6 +34738,AGA3,685,502,699598425,9673,0 +34739,Muchomor+%2A018%2A,518,680,606407,10297,0 +34740,Wioska+barbarzy%C5%84ska,332,423,2418002,6508,0 +34741,Szlachcic%2FTaran,634,380,699759128,9765,0 +34742,%2AINTERTWINED%2A,502,686,698704189,9711,0 +34743,%5B011%5D+B%C4%85kolice,668,431,849095068,10187,0 +34744,Out+of+Touch,325,438,698962117,9757,0 +34745,062+komornicy,324,543,699510259,9745,0 +34746,%23Sewa%23003,671,441,113796,10143,0 +34747,A.13+sp%C3%B3%C5%82dzielnia+gryzoni,564,326,699072129,8239,0 +34748,Gattacka,679,437,699298370,9811,0 +34749,012+MasRolSplawie,678,445,849098769,10316,0 +34750,Czosnk%C3%B3w,358,613,849014147,7575,0 +34751,%2A%2A05%2A%2A,671,439,849098782,11877,0 +34753,%2A038%2A,348,395,699273451,10211,0 +34754,0150,407,343,699431255,7923,0 +34755,Wioska+10,316,486,849075836,6875,0 +34756,%5B005%5D+Tato%2C+tato%2C+kupa%21,675,433,849095068,10237,0 +34757,New+World,432,673,698152377,10292,0 +34758,Taran,336,580,6180190,9976,0 +34759,Napewno+to+nie+jest+off,587,344,848912265,6679,0 +34760,Wioska+dzikich+%C5%BCuli,577,664,699567608,9202,0 +34761,Klaudek18,631,370,849092309,5205,0 +34762,%2A065%2A,356,385,699273451,10211,0 +34763,Zeta+Reticuli+O,416,341,699323302,10477,0 +34764,IluMinatii,593,339,8963720,6253,0 +34765,psycha+sitting,409,658,699736927,6140,0 +34766,_PUSTA,658,591,698768565,10229,0 +34767,C0256,315,507,8841266,7723,0 +34768,Chances+Are,644,607,2269943,7857,0 +34769,_PUSTA%2B,672,548,699628084,9889,0 +34770,1v9+machine,388,644,699697558,10019,0 +34771,C0265,317,504,8841266,6740,0 +34772,SOKzGUMIjag%C3%B3d,635,379,849059491,8267,0 +34773,231,413,337,7271812,3704,0 +34774,Wioska+barbarzy%C5%84ska,648,603,1900364,9978,0 +34775,No.18,479,679,698826986,7192,0 +34776,C+007,688,514,8078914,8010,0 +34777,Polesie,685,480,849100246,4060,0 +34778,Wioska+barbarzy%C5%84ska,623,637,1415009,7683,0 +34779,0602,487,681,698659980,10019,0 +34780,%7E%7E091%7E%7E,634,619,7829201,9382,0 +34781,AAA,533,317,1006847,9383,0 +34782,1.Primorsk,415,331,849098648,9476,0 +34783,0580,552,672,698659980,9747,0 +34784,Wioska+barbarzy%C5%84ska,450,335,849017820,5278,0 +34785,K36+-+%5B003%5D+Before+Land,628,369,699088769,3817,0 +34786,Wioska+barbarzy%C5%84ska,405,343,699380607,1967,0 +34787,-17-,629,370,699837826,5472,0 +34788,084+One,332,570,699382126,8324,0 +34789,179...Segadorr+M,439,328,6920960,6930,0 +34790,Ob+Konfederacja,437,333,848915730,5831,0 +34791,Out+of+Touch,328,440,698962117,8294,0 +34792,Ave+Why%21,450,673,698585370,9476,0 +34793,A010,602,648,9023703,10237,0 +34794,%3D%7C40%7C%3D,643,393,9101574,3638,0 +34795,%2A5612%2A+Uk%C5%82ad+przestrzenny,669,581,7973893,10287,0 +34796,103,596,653,849097799,8182,0 +34797,psycha+sitting,401,658,699736927,5738,0 +34798,A005,604,646,9023703,10237,0 +34799,fff,492,319,698239813,9690,0 +34800,cz+K10+5,363,385,3909522,7229,0 +34801,AAA,548,324,1006847,6480,0 +34802,C0145,323,534,8841266,10362,0 +34803,C0029,320,516,8841266,10362,0 +34804,0120,392,647,7085510,7983,7 +34805,A063,604,653,9023703,10223,0 +34806,098.+Sar+Soa,668,577,8337151,9419,0 +34807,%2A%2A47%2A%2A,669,431,849098782,5111,0 +34808,AG19,584,667,699876345,5581,0 +34809,D20,676,551,848995478,3194,0 +34810,.%3A005%3A.,353,614,7417116,11441,0 +34812,armata,333,430,849098727,3205,0 +34813,Wioska+barbarzy%C5%84ska,331,421,2418002,6333,0 +34814,Wioska+barbarzy%C5%84ska,682,487,699598425,10728,0 +34815,Wioska+barbarzy%C5%84ska,501,683,699781762,10239,0 +34816,a+mo%C5%BCe+off+%3F+%3A%29,632,625,698768565,9354,7 +34817,101,593,658,849097799,9807,0 +34818,015.,625,371,699098531,7430,0 +34819,%3D%7C34%7C%3D,645,389,9101574,5698,0 +34820,Vanaheim+VI,591,337,699478692,2469,0 +34821,AG12,590,665,699876345,9747,0 +34822,KR%C3%93L+PAPI+WIELKI,639,619,698191218,10232,0 +34823,Wioska+barbarzy%C5%84ska,324,451,6258092,4517,0 +34824,New+Land+25,339,406,849064752,2375,0 +34825,Lord+Lord+Franek+.%23150,509,316,698420691,7408,0 +34826,A009,608,648,9023703,10237,0 +34827,xxx,643,620,692803,10104,0 +34828,%23047%23,634,624,692803,9761,0 +34829,005,314,503,7097727,6835,0 +34830,215,448,326,698365960,8767,0 +34831,0277,559,673,698659980,8636,0 +34832,023+toni,678,461,849098769,8575,7 +34833,%5B037%5D+Wioska+barbarzy%C5%84ska,676,444,849095068,9288,0 +34834,.%3A016%3A.,352,613,7417116,8653,0 +34835,C22,680,540,848995478,4009,0 +34836,156...hubertw25,438,330,6920960,10130,0 +34837,%2A%2A04%2A%2A,674,436,849098782,12000,0 +34838,Upa01,328,562,849098695,5150,0 +34839,Auu,581,667,699567608,9712,0 +34840,Wioska+barbarzy%C5%84ska,427,333,699308637,9899,0 +34842,N.+C.+Con+air,664,584,849098693,5527,0 +34843,%230202+Segadorr+dar,464,317,1238300,10178,0 +34844,Wioska+barbarzy%C5%84ska,558,329,699072129,10223,0 +34845,psycha+sitting,422,667,699736927,8765,0 +34847,Wioska+barbarzy%C5%84ska+%2C,587,658,848995242,10418,0 +34848,030+-+Santander,683,521,698342159,9179,0 +34849,Kazimierz+Dolny,322,555,699364813,9073,0 +34850,%5B008%5D,472,319,849099160,10036,0 +34851,Grvvyq+105k%24,681,531,699676005,10401,0 +34852,Wioska+barbarzy%C5%84ska,554,328,699072129,10694,0 +34853,O52+Grindavik,677,535,699272880,8236,0 +34854,%7E%7E079%7E%7E,614,648,7829201,8619,0 +34855,%2A029%2A,349,394,699273451,9880,0 +34856,Wioska+barbarzy%C5%84ska,423,665,699736927,7525,0 +34857,Wioska+barbarzy%C5%84ska,332,419,2418002,6696,0 +34858,Kocpo%C5%82uch+2,334,580,848949597,6754,0 +34859,Wioska+barbarzy%C5%84ska,401,657,699516268,8803,0 +34861,084+Nowy+Rok,655,402,699491076,7238,0 +34862,Out+of+Touch,328,425,698962117,9744,0 +34863,%2A006%2A,358,388,699273451,10211,0 +34864,Jan+WILCZY+SZANIEC+II+K,678,436,879782,9494,0 +34865,Wioska+barbarzy%C5%84ska,325,454,6258092,4355,0 +34866,Zeta+Reticuli+O,419,334,699323302,10636,0 +34867,Wioska+barbarzy%C5%84ska,653,607,1900364,4210,0 +34868,AAA,547,322,1006847,11231,6 +34869,0603,484,683,698659980,10083,0 +34870,004+Crypto+Arena,672,450,849098769,11348,0 +34871,Wioska+barbarz,499,320,6118079,7681,0 +34872,Wioska+barbarzy%C5%84ska,354,608,7183372,4347,0 +34873,%2A036%2A,347,397,699273451,10211,0 +34874,005a+Wy+mnie+chcecie+wyko%C5%84czy%C4%87%21,378,631,6354098,11558,0 +34875,064+%7C+PALESTINA,658,414,9228039,3733,0 +34876,%23056%23,633,629,692803,9761,0 +34877,Wonderwall,326,552,698962117,9503,0 +34878,A+068,369,627,699342219,9566,3 +34879,R+008+%7EZyra%7E,483,683,699195358,9854,0 +34880,Grodk%C3%B3w,676,558,848932879,10636,0 +34881,Taran+002,607,355,2600387,10971,0 +34882,%23Charmy,431,665,699849210,10001,0 +34883,0261,551,679,698659980,10019,0 +34884,psycha+sitting,412,664,699736927,10025,0 +34885,005,318,475,7127455,6221,0 +34886,A012,602,652,9023703,10237,0 +34887,%2A5612%2Aaaa+Omaticaya,666,582,7973893,10287,0 +34888,IdA,428,554,8779575,3324,0 +34889,AAA,535,317,1006847,9222,0 +34890,Wioska+barbarzy%C5%84ska,577,331,9291984,8868,0 +34891,Wioska+barbarzy%C5%84ska,449,333,699191464,8278,0 +34892,%2A%2A03%2A%2A,673,432,849098782,11862,0 +34893,Wioska+RyBssoN,656,403,699738350,9761,0 +34894,Out+of+Touch,321,436,698962117,9505,0 +34895,Out+of+Touch,324,435,698962117,3368,0 +34896,WJE%C5%BBD%C5%BBAM+I+ROZJE%C5%BBD%C5%BBAM,613,357,698420691,10160,0 +34897,073+donkretos5,684,516,2135129,6718,0 +34899,Po%C5%82udnie.013,552,680,873575,9963,0 +34900,A030,599,659,9023703,9294,2 +34901,9.Prison,413,334,849098648,3953,0 +34902,Wioska+barbarzy%C5%84ska,318,471,699780873,694,0 +34904,Bizy+3,496,661,698585370,3188,0 +34905,Y+%7C+Forest+Cyaaaanku,320,488,699213622,9000,0 +34906,monetki+C,637,623,698768565,9652,0 +34907,Wioska+barbarzy%C5%84ska,334,423,2418002,7781,0 +34908,I079,678,442,699722599,9654,0 +34909,%230177+yasoke19,487,318,1238300,10178,0 +34910,Wioska+r+7,560,671,848915531,6329,0 +34911,C0022,314,514,8841266,10362,0 +34912,002.,632,368,699088769,10654,0 +34913,D.022,392,645,849088243,8280,0 +34914,09+Szpica+P%C3%B3%C5%82nocna,564,329,849108780,9922,0 +34915,Sandvig,336,571,849098387,9491,0 +34916,%2A115%2A,360,382,699273451,10028,0 +34917,Out+of+Touch,328,426,698962117,9744,0 +34918,%2A%2A02%2A%2A,672,433,849098782,11317,0 +34919,Wioska+barbarzy%C5%84ska,428,332,699308637,9638,0 +34921,Out+of+Touch,329,441,698962117,5909,0 +34922,X+%7C+Forest+Cyaaaanku,323,477,699213622,10049,0 +34923,BIRMA,402,344,8123790,4691,0 +34924,Napewno+to+nie+jest+off,586,338,848912265,6242,0 +34925,%2A5612%2Ac+Jak+to+mo%C5%BCliwe,666,578,7973893,10287,1 +34926,Out+of+Touch,323,443,698962117,6167,0 +34927,Szlachcic,390,355,3484132,10957,0 +34928,Dream+on,311,494,698962117,9544,0 +34929,020.+Taka+te%C5%BC+nie,686,475,7494497,9888,0 +34930,--04--,343,601,8877156,9741,0 +34931,0418,561,677,698659980,10019,0 +34932,002,323,558,849012521,4541,0 +34933,%23082%23,631,628,692803,9520,0 +34934,%3D%7C13%7C%3D,642,385,9101574,6042,0 +34935,C0168,321,532,8841266,10362,3 +34936,z+Wioska+barbarzy%C5%84ska+11,356,382,3909522,8037,0 +34937,014,604,345,1990750,8764,0 +34938,%C5%9Acis%C5%82o+go+i+poszed%C5%82,344,407,849098299,6217,0 +34939,A032,600,655,9023703,10221,0 +34940,Wioska+barbarzy%C5%84ska,321,479,699823490,5042,0 +34941,Wioska+barbarzy%C5%84ska,341,594,7183372,10139,0 +34942,%3D%7C03%7C%3D,647,391,9101574,10495,9 +34943,Sullivanum+%5B1%5D,337,591,7183372,10362,0 +34944,Pomidorowy+dzem,680,517,699598425,9193,0 +34945,%230140+Kamil0ss1,481,316,1238300,7973,0 +34946,%23062%23,623,631,692803,9761,0 +34947,001,340,598,7183372,10252,0 +34948,AAA,532,316,1006847,9614,0 +34949,C0181,318,540,8841266,9020,0 +34950,Kraszew,341,595,7183372,10231,0 +34951,005+Zacznij+od+Nowa+%21%21%21,579,583,699524362,10211,0 +34952,%23059%23,631,626,692803,9761,0 +34953,0398,558,678,698659980,10083,0 +34954,a+mo%C5%BCe+off+%3F+%3A%29,639,624,698768565,9349,0 +34955,Out+of+Touch,329,440,698962117,9763,0 +34956,Wioska+barbarzy%C5%84ska,335,412,849096547,2364,0 +34957,Wioska+Stickman.,597,666,9023703,9621,0 +34958,%24LeBron,684,523,699795378,5547,0 +34959,OFF,677,532,1563417,9985,0 +34960,New+World,435,674,698152377,10213,0 +34961,Vvv,589,662,699567608,9720,0 +34962,psycha+sitting,422,666,699736927,9387,0 +34963,%2AINTERTWINED%2A,501,685,698704189,9711,0 +34965,Dalsza,463,323,849096310,5599,0 +34966,A036,598,656,9023703,10247,0 +34967,Didek,659,584,849070946,12154,2 +34968,No.25,470,685,698826986,1161,0 +34969,%2A112%2A,357,382,699273451,9293,0 +34970,Ave+Why%21,455,682,698585370,9345,2 +34971,C0077,319,522,8841266,10362,0 +34972,Wioska+barbarzy%C5%84ska,339,596,7183372,10212,0 +34973,Wioska+Raguel888,372,427,699753640,8151,0 +34974,%5B015%5D+Bobkowo,673,436,849095068,9312,0 +34976,160+Nocny+Jastrz%C4%85b+005,655,399,699491076,7717,0 +34977,0047+K55+and987+OZDR,503,555,3613413,9989,0 +34978,023+Fen+Aspra,479,682,699834004,8744,0 +34979,027,534,679,2293376,9993,0 +34980,Wawa+%3BD,324,446,8184383,4874,0 +34981,Szlachcic,386,353,698160606,8875,0 +34982,Wioska+barbarzy%C5%84ska,681,479,699598425,10419,0 +34983,%2A%2A26%2A%2A,674,434,849098782,10615,0 +34984,203,424,333,7271812,8840,0 +34985,C0073,320,511,8841266,10362,0 +34986,Dum+Spiro+Spero,492,555,848896948,9981,0 +34987,Parole,339,408,699595556,3150,0 +34989,028Wioska+barbarzy%C5%84ska,674,455,849098769,6895,0 +34990,%23038,476,614,699605333,10393,0 +34991,Hiszpan5,672,550,7038651,10047,0 +34992,wysypisko+%C5%9Bmieci,324,564,849012521,5241,0 +34994,Muchomor+%2A005%2A,512,687,606407,10300,0 +34995,Zbytkowo-Hubix,663,421,8675636,10019,0 +34996,OSADA,575,666,699567608,9718,7 +34997,-20-,632,375,699837826,3144,0 +34998,Nowa+42,661,579,698702991,9806,0 +34999,0443,554,676,698659980,7856,0 +35000,New+Land+09,358,384,849064752,3399,0 +35001,2.Fuenlabrada,564,668,698215322,5786,0 +35002,A0275,321,482,8841266,10387,0 +35003,1kornik83,666,586,849098693,11018,0 +35004,zakr%C4%99cona,574,606,8627359,9203,0 +35005,Y+%7C+Forest+Cyaaaanku,321,491,699213622,8656,0 +35006,Wioska+Gum23,402,349,849067216,3982,0 +35007,099...tomecz,480,320,6920960,9995,0 +35008,%23021.+Sieeee+Rrrrozkr%C4%99cam,455,677,848896948,5505,0 +35009,0161,405,341,699431255,3316,0 +35010,Wioska+barbarzy%C5%84ska,421,667,699736927,9185,0 +35011,0014+Cytadela,332,428,699304554,9675,0 +35012,Didek,671,565,849070946,10252,0 +35013,0019+K55+and987+OZDR.,505,555,3613413,9861,0 +35014,0494,573,666,698659980,8559,0 +35015,066,537,684,2293376,9544,0 +35016,%2A5616%2A+Odwaga,675,556,7973893,10287,0 +35018,C0064,322,523,8841266,10362,0 +35019,%28001%29Urithiru,330,567,849098695,8314,0 +35020,Wioska+NOWA+OBRONNA,590,343,849063793,4089,0 +35021,ABE,659,411,1086351,2775,0 +35022,%23005.+Dreadford,452,681,848896948,9667,0 +35023,Wioska+barbarzy%C5%84ska,647,609,1900364,9426,0 +35024,020+Tak+blisko,365,627,8268010,5731,0 +35025,Wioska+barbarzy%C5%84ska,384,644,849095992,3949,0 +35026,%23036%23,629,635,692803,9761,0 +35027,%2A171%2A,340,411,699273451,10211,0 +35028,S%C5%82u%C5%BCewiec2,374,364,849099434,8087,0 +35029,cz+Polska,365,378,3909522,4372,0 +35030,%23061%23,636,626,692803,9493,0 +35031,000+Plutosea,324,553,9280477,11911,0 +35032,Manieczki,354,611,849014147,4848,0 +35033,Wioska,330,423,2418002,8165,0 +35034,Out+of+Touch,326,439,698962117,6005,0 +35035,%5B034%5D,664,582,698305474,8424,0 +35036,033+Surowy,681,452,849098769,5274,0 +35037,Wioska+barbarzy%C5%84ska,668,418,8675636,9054,0 +35038,Pa%C5%84stfa+Pu%C5%82nocy,582,335,699433558,9756,0 +35039,%2A%2A40%2A%2A,674,439,849098782,10066,0 +35040,Tripoli,424,664,849089459,9648,1 +35041,Taran,683,499,699598425,10728,0 +35042,OFF,677,530,1563417,9704,0 +35043,Ave+Why%21,447,672,698585370,9632,0 +35045,AAA,538,318,1006847,6992,0 +35046,%23048%23,631,633,692803,9761,0 +35047,C0108,316,528,8841266,9732,0 +35048,J%23004,574,331,2065730,9797,0 +35049,Wioska+14,316,492,849075836,4321,0 +35050,Wioska+barbarzy%C5%84ska,679,485,699598425,10728,0 +35051,C0032,321,515,8841266,10362,0 +35052,J%23013,574,329,2065730,5421,0 +35053,009,320,476,7127455,2623,2 +35054,K65,561,669,7589468,8820,0 +35055,%23%23%232,490,321,849064614,5447,0 +35056,psycha+sitting,407,663,699736927,10178,0 +35057,003,317,476,7127455,6607,0 +35058,KIELBA+131,453,568,699342219,10218,0 +35059,%24Lakers,685,506,699795378,8258,0 +35060,C0020,317,518,8841266,10362,0 +35061,0159,405,339,699431255,3820,0 +35062,K36+-+%5B001%5D+Before+Land,626,370,699088769,5013,0 +35063,C117,370,628,699383279,6323,0 +35064,Wioska+barbarzy%C5%84ska,354,610,9199885,4865,0 +35065,067,450,319,2502956,9892,0 +35066,0301,572,666,698659980,9761,0 +35067,Wioska+barbarzy%C5%84ska,521,320,698350371,6792,0 +35068,056+%7C+PALESTINA,662,423,9228039,5640,0 +35069,061,683,530,2135129,6812,0 +35070,Lord+Lord+Franek+.%23141,514,319,698420691,10300,2 +35071,A-044-Heffitto,402,348,8419570,10460,0 +35072,0163,402,340,699431255,4195,0 +35073,001+Arnhem,607,361,849091899,11742,0 +35074,%2A043%2A,351,398,699273451,10211,0 +35075,%C5%BBUBRAWKA+056,613,644,33900,9838,0 +35076,.achim.,483,316,6936607,9366,0 +35077,Elfheim+X,598,344,699478692,5385,0 +35078,Wioska+dzikich+narkoman%C3%B3w,576,664,699567608,6578,0 +35079,%2AINTERTWINED%2A,502,687,698704189,9711,0 +35080,26k%24+Grvvyq,666,567,699676005,10495,0 +35081,Pomidorowy+dzem,683,514,699598425,10728,2 +35082,BRZEG+JORDANU+%7C+001,687,518,9228039,9346,0 +35083,I098,682,463,699722599,7894,0 +35085,%2A265%2A,334,413,699273451,2666,0 +35086,C001+Liskowa,596,662,9023703,6820,0 +35087,Wioska+Natka1968_03,523,321,699644852,3136,0 +35088,psycha+sitting,421,671,699736927,10311,0 +35089,Wioska+barbarzy%C5%84ska,651,604,1900364,9699,0 +35090,UltraInstynkt%2B,591,342,699710633,9737,0 +35091,003+Kalabala,593,344,699576407,7445,0 +35092,Ave+Why%21,450,672,698585370,5958,0 +35093,Komornicy+010,351,608,699336777,9462,0 +35094,AG10,587,667,699876345,8526,0 +35095,%23022%23,621,634,692803,9761,0 +35096,I094,674,448,699722599,8180,0 +35098,C0159,317,527,8841266,8972,0 +35099,B+043,674,545,8078914,6983,0 +35100,Winterhome.041,495,313,848918380,10178,0 +35101,Pobozowisko,395,605,699513260,10955,0 +35102,N.C.+Bez+twarzy,665,588,849098693,7167,0 +35103,Wioska+barbarzy%C5%84ska,651,388,7973893,7308,0 +35104,Ave+Why%21,462,654,698585370,9848,0 +35105,R+023,485,683,699195358,8899,0 +35106,Wioska+barbarzy%C5%84ska,685,493,699598425,9499,0 +35107,0310,559,679,698659980,9162,0 +35108,Wioska+barbarzy%C5%84ska,669,419,8675636,9664,0 +35109,Wioska+barbarzy%C5%84ska,652,606,1900364,5007,0 +35110,Nowa+Nadzieja+8,493,598,699383121,6466,0 +35111,011+Kalal,588,341,699576407,4813,0 +35112,Wasza+nowa+ulubiona+s%C4%85siadka,628,372,9291984,8224,0 +35113,%28024%29Liafor,331,576,849098695,8566,0 +35114,%23087%23,633,628,692803,8903,0 +35115,Wioska+Sir+Zordon+005,663,577,478956,5364,0 +35116,043,594,340,849010255,7112,0 +35117,psycha+sitting,421,669,699736927,9948,0 +35118,A+083,369,635,699342219,6814,0 +35119,Nowa+48,665,572,698702991,7650,0 +35120,C0016,314,518,8841266,10362,0 +35121,%2A180%2A,335,418,699273451,10211,0 +35122,Szymon9409,397,655,699269923,7706,0 +35123,00401+Ppp,436,415,3909522,10069,0 +35124,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,635,1434753,9824,0 +35125,.%3A014%3A.,353,611,7417116,9724,0 +35126,Wioska+barbarzy%C5%84ska,686,491,699429153,9966,0 +35127,-016-,338,560,8004076,9192,0 +35128,%5B009%5D,471,319,849099160,10016,0 +35129,Pa%C5%84stfa+Pu%C5%82nocy,589,334,699433558,8831,0 +35130,%23031%23,628,637,692803,9761,0 +35131,Wioska+barbarzy%C5%84ska,362,628,272173,4112,0 +35132,Rzeczka,319,544,699265922,6296,0 +35133,070,544,682,2293376,7635,4 +35135,Klemensker,328,560,849098387,5609,0 +35136,New+Land+06,356,383,849064752,3732,0 +35137,1v9+machine,387,642,699697558,10019,0 +35138,I033+Co+si%C4%99+sta%C5%82o%3F,682,462,699722599,10636,0 +35139,KR%C3%93L+PAPI+WIELKI,645,618,698191218,10374,0 +35140,A013,609,651,9023703,10237,0 +35141,Danzig,333,573,849098387,6928,0 +35142,C+016,690,526,8078914,10481,0 +35143,Tro%C4%87,321,543,699265922,9481,0 +35144,%3D%7C16%7C%3D,646,383,9101574,6248,0 +35146,Weso%C5%82ych+%C5%9Awi%C4%85t,568,334,848915730,5183,0 +35149,Wioska+kamilobr,640,618,848942587,3993,0 +35150,175...Segadorr,443,330,6920960,10090,0 +35151,058.,634,371,849094609,10224,0 +35152,Nie+b%C3%B3j+si%C4%99+odzyska%C4%87+siebie%21,472,317,849099965,4780,0 +35153,%2A253%2A,341,405,699273451,2799,0 +35154,%2A093%2A,359,381,699273451,10211,0 +35155,Granat,331,434,849098727,4718,0 +35156,Wioska+barbarzy%C5%84ska,495,317,6118079,5555,0 +35157,Wioska+barbarzy%C5%84ska,647,611,1900364,8905,9 +35158,Ave+Why%21,450,674,698585370,3001,0 +35159,--21--,347,593,8877156,7202,0 +35160,004,316,479,7127455,7224,0 +35162,Wioska,573,334,7560474,7869,0 +35163,%3D%7C14%7C%3D,643,384,9101574,6449,0 +35164,Osada+koczownik%C3%B3w,406,656,699736927,4879,7 +35165,NOT%3F,459,551,9236866,2208,0 +35166,011+Mordor,454,682,698585370,9133,0 +35167,ZUBRAWKA+053+Victoria+%3F%3F%3F,617,640,33900,10008,0 +35168,J%23020,575,334,2065730,9797,0 +35169,Zgol,357,615,699864013,9850,9 +35170,065-+Mroczna+Osada,595,340,849035905,11099,0 +35171,Klaudek13,630,365,849092309,5897,0 +35172,007.+Grodzisk+Mazowiecki,326,447,849098966,3474,0 +35173,New+World,436,676,698152377,10294,0 +35174,Napewno+to+nie+jest+off,590,337,848912265,9621,0 +35175,Wioska+barbarzy%C5%84ska,384,648,849095992,2076,0 +35176,D01+maribast,450,680,849037407,9067,0 +35177,Monetkownia,631,623,699759128,9666,0 +35178,Wioska+Sir+Zordon+006,663,580,478956,4386,0 +35179,081+KaruTown,661,419,9238175,10275,0 +35180,Sony+911,619,641,1415009,7123,0 +35181,104,594,657,849097799,7804,0 +35182,Wioska+barbarzy%C5%84ska,403,652,699736927,6214,0 +35183,Bogat,357,619,699864013,9014,0 +35184,EO+EO,313,522,699697558,10495,0 +35185,Winterhome.051,496,313,848918380,10178,0 +35186,9.7+Oby+tak+dalej,551,439,8444356,9603,0 +35187,Moya,666,585,849098693,9173,0 +35188,AAA,542,318,1006847,9775,0 +35189,Wioska+11,313,482,849075836,8089,0 +35190,0396,567,668,698659980,10083,0 +35191,016.,640,378,699098531,7236,0 +35192,Za+mostem,353,494,699265922,9744,0 +35193,%230112+tomek791103,475,322,1238300,10178,8 +35195,New+World,444,676,698152377,10295,0 +35196,%2AINTERTWINED%2A,508,685,698704189,9711,4 +35197,Vanaheim+IV,592,340,699478692,2821,0 +35198,X+%7C+Forest+Cyaaaanku,316,468,699213622,10000,0 +35199,Odprysk+Ksi%C4%99%C5%BCyca02,668,468,699574408,9866,0 +35200,Wioska+barbarzy%C5%84ska,508,681,699781762,10495,0 +35201,Village,491,688,849094067,6417,0 +35202,Parole,342,408,699595556,3292,0 +35203,XDX,610,350,699098531,9637,0 +35204,C0085,317,511,8841266,10362,0 +35205,Didek,668,573,849070946,3954,0 +35206,%2A3604%2Ab+Yuma,653,397,7973893,9968,0 +35207,Gnojno-Hubix,665,426,8675636,10019,0 +35208,A058,606,652,9023703,9885,0 +35209,%2A004%2A+WARto+pomaga%C4%87%21,601,343,849095068,10237,0 +35210,%2A155%2A,345,396,699273451,6582,0 +35211,psycha+sitting,413,665,699736927,9310,0 +35212,wysypisko+%C5%9Bmieci,323,557,849012521,3294,0 +35213,0170,377,640,7085510,8617,0 +35214,Humnisie,675,467,699574408,10231,0 +35215,Wioska+XI,581,339,698200480,3793,0 +35216,Out+of+Touch,323,434,698962117,10000,0 +35217,1v9+machine,390,646,699697558,10019,0 +35218,New+World,441,677,698152377,10295,0 +35219,C0103,315,522,8841266,10362,0 +35220,I082,676,446,699722599,7659,0 +35221,Napewno+to+nie+jest+off,588,337,848912265,9088,0 +35222,KR%C3%93L+PAPI+WIELKI,637,617,698191218,10623,0 +35223,Darmowe+przeprowadzki,466,655,698807570,9674,0 +35224,Wioska+barbarzy%C5%84ska,620,637,1415009,7982,0 +35225,%5B012%5D+Zasrajdo%C5%82ek,679,441,849095068,9312,5 +35226,Out+of+Touch,325,440,698962117,8299,0 +35227,Szlachcic,381,360,698160606,10474,0 +35228,Wroc,357,617,699864013,9014,0 +35229,088+Tomek,688,512,2135129,10083,0 +35230,Wiocha,649,615,849066044,8949,0 +35231,KONFA+TO+MARKA%2C+NARKA,316,461,698152377,10290,0 +35232,Winterhome.039,497,312,848918380,10178,0 +35233,%5B031%5D,664,587,698305474,7767,0 +35234,Kentin+ufam+Tobie,324,458,699783765,10000,0 +35235,AG17,590,660,699876345,9017,0 +35236,Taran,682,500,699598425,10728,0 +35237,Szale,457,682,698585370,8537,0 +35238,tutaj,466,685,8966820,8028,0 +35239,New+World,430,674,698152377,10297,0 +35240,TWIERDZA,591,345,849063793,4166,0 +35241,psycha+sitting,414,665,699736927,10311,0 +35243,Wioska+122,680,526,848971079,7715,0 +35244,Canopus,406,657,849089459,4189,0 +35245,Jelec,325,554,699265922,9732,0 +35246,FTS,640,385,7340529,10887,0 +35247,Wioska+r+5,557,670,848915531,4157,0 +35248,Darma+dla+zawodnika,528,683,699494488,6515,0 +35249,Ma%C5%82e+Liniewo,656,590,849039310,9719,0 +35250,Wioska+barbarzy%C5%84ska,331,417,2418002,3303,0 +35251,070.Stradi,452,321,698365960,10275,0 +35252,Kocpo%C5%82uch+1,333,578,848949597,9074,0 +35253,Taran,680,489,699598425,10728,0 +35254,196...Segador,458,320,6920960,8271,0 +35255,%7C058%7C+Barba,493,687,699393742,8631,0 +35256,A.12+sp%C3%B3%C5%82dzielnia+gryzoni,563,331,699072129,9277,0 +35257,27.+m5+v10,558,321,849099696,7245,0 +35258,Szlachcic,394,349,3484132,10487,0 +35259,Wyspa+025,632,377,699756210,10654,2 +35261,AG06,588,665,699876345,9747,0 +35262,047,466,684,699834004,8314,4 +35263,1011,623,358,699150527,6961,0 +35264,%7C050%7C+Dubrownik,495,680,699393742,9527,0 +35265,%28028%29Alm,328,557,849098695,3502,0 +35267,Sony+911,619,645,1415009,10090,0 +35268,Szlachcic,401,346,698160606,10728,0 +35269,A035,599,656,9023703,10026,0 +35270,Didi,666,577,849070946,10362,0 +35271,Wioska+groove,503,318,6118079,8207,1 +35272,%5B001%5D+Wioska+zakl%C4%99tych,672,435,849095068,10495,0 +35273,Szlachcic,387,360,698160606,10476,0 +35274,%230289+nie+wiem,467,318,1238300,9802,2 +35275,-016-,324,449,8184383,7841,0 +35276,C0015,313,518,8841266,10362,0 +35277,Piek%C5%82o+to+inni,592,345,848956765,9761,4 +35278,X+%7C+Forest+Cyaaaanku,316,467,699213622,10000,0 +35279,%5B024%5D+Wioska+barbarzy%C5%84ska,668,428,849095068,9312,0 +35280,C118,368,634,699383279,9051,2 +35281,New+World,430,671,698152377,10292,0 +35282,%230294+Don+Noobas,466,317,1238300,7607,0 +35283,%5B378%5D+Chor%C4%85giewka+na+wietrze,598,431,848985692,9696,0 +35284,A052,615,649,9023703,9759,0 +35285,%2A%2A46%2A%2A,665,440,849098782,7065,0 +35286,004,359,615,699083129,9696,0 +35287,Wioska+r+13,561,672,848915531,4296,0 +35289,%3F%3F%3F,486,318,698489071,5934,0 +35290,Wioska+barbarzy%C5%84ska,574,672,6818593,9835,0 +35291,Wioska+barbarzy%C5%84ska,465,322,849017820,5905,0 +35292,2.Lleida,566,668,698215322,6415,0 +35293,Wioska+Bochun10,317,495,7449254,5175,0 +35294,B+063,678,533,8078914,9861,0 +35295,%3F%3F%3F,493,312,698489071,10160,0 +35296,%230161+Kamil0ss1,467,316,1238300,10178,0 +35297,%7E%7E066%7E%7E,626,640,7829201,7196,0 +35298,%2AINTERTWINED%2A,503,688,698704189,9711,0 +35299,Nie+ma+r%C4%85czek%2C+nie+ma+wiosek,418,668,699736927,10311,0 +35300,Wioska+Annomymus,680,487,699598425,10728,0 +35301,Didek,670,566,849070946,10362,0 +35302,%3D%7C09%7C%3D,642,386,9101574,9260,0 +35303,Didek,671,570,849070946,10415,0 +35304,222,422,337,7271812,6808,0 +35305,Piek%C5%82o+to+inni,608,347,848956765,10160,4 +35307,AAA,549,320,1006847,7594,0 +35310,O66+Jayang,679,560,699272880,10201,0 +35311,%2A119%2A,363,371,699273451,10211,0 +35312,Quebec,682,494,699737356,8751,2 +35313,amator-ada,522,574,848915531,10475,0 +35315,Szale,465,686,8966820,8390,0 +35316,Racecourse,606,347,1018357,9771,0 +35317,Ave+Why%21,446,672,698585370,8277,8 +35320,xxx,645,616,692803,9994,0 +35321,C0041,319,517,8841266,10362,0 +35322,%2A033,599,653,699567608,9093,0 +35323,001+Koniec+Burzy,314,490,699823490,8825,0 +35324,Wrzoski,681,551,848932879,10065,0 +35325,psycha+sitting,407,660,699736927,10232,0 +35326,Jednak+wol%C4%99+gofry,419,665,699736927,9792,0 +35327,024+%2A+Lady+Porto+%2A,647,392,699406750,10117,0 +35328,FILIPOWO+tata,342,588,7183372,5552,0 +35330,I063,684,470,699722599,10320,0 +35331,A+034,370,626,699342219,6086,0 +35332,033,608,644,849097799,6897,0 +35333,140.Stradi,458,318,698365960,803,0 +35334,Westfold.013,335,423,848918380,10178,0 +35335,A014+Gold,610,651,9023703,10230,0 +35336,J%23008,577,335,2065730,9797,0 +35337,Taran+035,640,376,699098531,10971,0 +35338,J%23024,580,336,2065730,10068,0 +35339,036+Co+za+turbo+przyg%C5%82up...,375,633,6354098,7934,0 +35340,Klaudek21,633,371,849092309,4352,0 +35341,%C5%BBUBR+.%3A%3A.Adaczu%2F02,618,646,33900,6069,0 +35342,%C5%BBUBR+PSYCHIATRYK+006,613,646,33900,6957,1 +35343,New+World,445,677,698152377,10294,0 +35344,063,686,514,2135129,9976,0 +35345,%7C060%7C+Ciapciarapcia,503,680,699393742,9220,0 +35346,New+World,428,673,698152377,10292,0 +35347,-021-,332,585,8710047,10083,0 +35348,Out+of+Touch,327,430,698962117,9084,0 +35349,023,354,607,699083129,8437,0 +35350,Taran,337,576,6180190,9815,0 +35351,080+Migda%C5%82,544,466,7092442,10362,0 +35352,018+serniczek+od+babci,509,671,8954402,10141,0 +35353,D.001,400,652,849088243,10217,8 +35354,001+Cicha+6,680,452,849098769,11824,0 +35356,%2A224%2A,372,370,699273451,6486,0 +35357,The+Game+Has+Only+Just+Begun,354,524,9280477,10311,0 +35358,067.Stradi,450,323,698365960,9869,0 +35359,1003,620,362,699150527,9821,0 +35360,WhoWillBeNext,601,344,1990750,5064,0 +35361,Szlachcic,394,344,3484132,9960,0 +35362,A-047-Heffitto,405,347,8419570,8860,0 +35363,Devano2,336,591,7183372,10345,0 +35364,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,654,698807570,9642,0 +35365,0017,557,674,698659980,10160,2 +35366,%23060%23,632,629,692803,9761,0 +35367,-+262+-+SS,537,677,849018239,8281,0 +35368,BEMA,404,344,8123790,890,0 +35369,stry,560,678,6121024,5443,0 +35370,Niemodlin,674,551,848932879,10023,0 +35371,WUUDLI,403,343,8123790,2274,0 +35372,Z%7C003%7C+Wenecja,468,683,698152377,9855,0 +35373,Szlachcic,395,343,3484132,10484,0 +35374,Nowa+38,666,571,698702991,9819,0 +35375,Wioska+barbarzy%C5%84ska+D%C3%B3%C5%82,627,362,699857387,9771,0 +35377,Szlachcic%2FTaran,640,387,699759128,10237,0 +35378,Winterhome.036,491,313,848918380,10178,1 +35379,Jaaa,603,438,698635863,9403,0 +35380,Out+of+Touch,323,440,698962117,4787,0 +35381,205,426,329,7271812,6993,0 +35382,A+089,367,630,699342219,3734,0 +35383,Wioska+barbarzy%C5%84ska,476,314,6936607,3024,0 +35384,Lord+Lord+Franek+.%23144,515,318,698420691,10342,0 +35385,Aleksandria,405,658,849089459,9814,8 +35386,Szlachcic,382,352,698160606,10559,0 +35387,A8.,320,551,849095482,5653,0 +35388,Barbababcia,342,410,849098299,2568,0 +35389,Kraszew+3,339,593,7183372,10232,5 +35390,ADEN,611,349,698588535,7266,0 +35391,Osada+koczownik%C3%B3w,583,669,699567608,10189,5 +35392,014,472,679,8827094,9238,0 +35393,020,456,318,2502956,10019,0 +35394,000+Plutosea,323,554,9280477,10434,0 +35395,Szlachcic,379,360,698160606,9602,0 +35396,%23001.+Ko%C5%84+Troja%C5%84ski,443,679,848896948,9959,5 +35397,okon,326,544,699265922,9816,0 +35398,000+Plutosea,321,558,9280477,10117,0 +35399,%5B029%5D,664,586,698305474,9809,0 +35400,O38+Midyat,678,543,699272880,10295,0 +35401,1v9+machine,385,645,699697558,9104,0 +35402,058.Stradi,453,318,698365960,10495,0 +35403,Chr%C3%B3%C5%9Bcina+Opolska,679,558,848932879,10242,0 +35404,%2A4692%2Aa+%C5%BBycie,661,403,7973893,10287,0 +35405,033.xxx,497,682,699781762,4051,0 +35406,Auu+09,569,672,529552,2602,0 +35407,Kentin+ufam+Tobie,323,462,699783765,10000,0 +35408,10.+Maribor,331,458,848910122,489,0 +35409,New+World,438,676,698152377,10292,0 +35410,fff,489,317,698239813,8376,0 +35411,2.Terrassa,562,677,698215322,5529,0 +35412,%2A121%2A,365,373,699273451,10211,0 +35413,%2A4691%2Aa+Jak+jest,662,403,7973893,9835,0 +35414,%230225+deleted,491,314,1238300,10178,0 +35415,New+World,446,676,698152377,10294,0 +35416,PYRLANDIA+008,568,596,33900,10083,0 +35417,Out+of+Touch,327,428,698962117,9744,0 +35418,009.+Brentford,485,656,848953066,10019,0 +35419,Wioska+barbarzy%C5%84ska,521,686,745946,3926,0 +35420,Szlachcic,318,536,698388578,8284,0 +35421,D.037,394,647,849088243,7809,2 +35422,Wioska+Sir+Zordon+008,665,577,478956,3708,0 +35423,C13,682,541,848995478,2716,0 +35424,A017,613,651,9023703,10221,0 +35425,039+Osilon,658,600,8337151,10252,0 +35426,Po%C5%82udnie.001,555,679,873575,10294,0 +35427,002+Wioska+barbarzy%C5%84ska,326,569,849012521,2958,0 +35428,AG14,590,661,699876345,6763,0 +35429,W%C5%82adcy+P%C3%B3%C5%82nocy+03,685,504,699379895,5550,0 +35430,Wioska+barbarzy%C5%84ska,594,572,1715091,9628,0 +35432,D.009,394,656,849088243,8337,0 +35433,D.002,399,651,849088243,9119,0 +35434,001+Firelink,519,316,1990750,10495,0 +35435,076.Stradi,446,327,698365960,10389,0 +35437,Szlachcic+008,559,535,758104,8275,0 +35438,017+Barba,683,525,2135129,9803,0 +35439,013+Yharnam,516,316,1990750,10068,0 +35440,%2A156%2A,341,400,699273451,10211,0 +35441,%2A165%2A,337,409,699273451,6460,0 +35443,Szlachcic%3Btaran,615,359,1990750,9821,0 +35444,Osada+koczownik%C3%B3w,464,323,699191464,6194,3 +35445,0450,553,680,698659980,7544,0 +35446,FENDI,318,464,699794765,2581,0 +35447,ADEN,599,345,698588535,9078,0 +35448,teraz+to+juz...,584,668,699567608,8604,0 +35449,Wioska+barbarzy%C5%84ska,401,339,699406776,2835,0 +35450,%2A145%2A,344,396,699273451,6117,0 +35451,Winterhome.001,502,312,848918380,10178,4 +35452,%C5%9Arodek..,349,443,1746216,5825,0 +35453,Ave+Why%21,452,675,698585370,4320,0 +35454,A+079,372,636,699269923,9497,0 +35455,C0050,315,523,8841266,10362,0 +35456,AG13,588,663,699876345,9747,2 +35457,Komornicy+017,351,613,699336777,9825,0 +35458,%23076%23,631,635,692803,9761,0 +35459,%2A262%2A,343,406,699273451,2678,0 +35460,069,619,355,849010255,5165,0 +35461,Westfold.006,336,425,848918380,10178,0 +35462,Ave+Why%21,480,681,699121671,9809,0 +35463,078.Stradi,444,328,698365960,9691,0 +35464,Paczk%C3%B3w,677,556,848932879,10634,0 +35465,wioska+murzyna,314,480,8048374,8743,0 +35466,Magkw,363,384,849084920,2404,0 +35467,Y+%7C+Forest+Cyaaaanku,318,493,699213622,8354,7 +35468,%2A083%2A,358,381,699273451,10211,0 +35469,007+Braveheart-,660,598,8337151,10083,0 +35470,Ave+Why%21,454,681,698585370,6261,0 +35471,Wioska+Michal1888000,650,611,8224678,10100,0 +35472,%7C054%7C+Trogir,497,689,699393742,8932,0 +35473,Rotterdam,608,354,698290577,10362,8 +35474,005,474,656,698650301,8157,0 +35475,Wioska+barbarzy%C5%84ska,650,605,1900364,4115,0 +35476,Wioska+barbarzy%C5%84ska,598,655,699567608,9190,0 +35477,.Osada+koczownik%C3%B3w,507,681,699781762,10495,2 +35478,Strzelba+potokowa,321,552,699265922,3898,0 +35479,%7B56%7D+Pot%C4%99gowo,382,646,849096945,9418,0 +35480,Turbo,409,345,699854830,10135,0 +35481,a+mo%C5%BCe+off+%3F+%3A%29,638,623,698768565,9566,0 +35482,140+invidia,521,680,849093426,9675,0 +35483,Wioska+barbarzy%C5%84ska,513,316,8400180,8459,0 +35484,004.+Konstantynopol,341,399,849098299,6666,0 +35485,%23004.+Good+Night%21,445,676,848896948,9399,0 +35486,%230120+tomek791103,476,321,1238300,6935,0 +35487,C0150,319,528,8841266,10362,0 +35488,034,535,686,2293376,9993,0 +35489,Monetkownia,632,623,699759128,9594,0 +35490,OFF,685,531,1563417,9976,0 +35491,C14,684,536,848995478,11130,0 +35492,I067,684,467,699722599,9877,0 +35493,Szymon9406,390,651,699269923,10259,0 +35494,New+Land+26,344,401,849064752,2869,0 +35495,New+World,445,681,698152377,10295,0 +35496,Wioska+barbarzy%C5%84ska,519,320,698350371,6944,0 +35497,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,636,1434753,9340,0 +35498,Mordor3,317,541,848978903,9804,0 +35499,015+Hohoho,605,344,1018357,5062,0 +35500,-012-,334,590,7183372,10203,0 +35501,New+World,447,678,698152377,10178,0 +35502,1v9+machine,386,643,699697558,10019,0 +35503,Zalew,323,555,699265922,3724,0 +35504,%23095%23,649,609,692803,9761,5 +35505,New+Land+07,359,385,849064752,3611,0 +35506,072.Stradi,450,321,698365960,9852,0 +35507,%2A267%2A,336,412,699273451,2218,0 +35508,Wioska+Natka1968_04,526,321,699644852,1820,0 +35509,A+087,371,636,6948793,5815,0 +35510,New+World,435,676,698152377,10292,0 +35511,030.,330,583,3475079,2245,0 +35512,B01,471,679,698652014,6258,0 +35513,Taran+025,637,377,699098531,9023,0 +35514,Wioska+barbarzy%C5%84ska,369,367,849027025,5767,0 +35515,000+Plutosea,317,547,9280477,9976,0 +35516,Szlachcic,377,359,698160606,10315,0 +35517,013art,603,345,1990750,10408,0 +35518,212,431,330,7271812,9628,0 +35519,Szlachcic,385,354,698160606,10474,0 +35520,-0011-,543,325,2972329,8457,0 +35521,Out+of+Touch,327,435,698962117,4415,0 +35522,123,469,686,9003698,10373,0 +35523,Muchomor+%2A004%2A,513,687,606407,9436,0 +35524,Wioska+016,661,405,1715091,7607,0 +35525,ADEN,606,353,698588535,7130,0 +35526,Taran,336,575,6180190,9883,0 +35527,019.+Kochanka,562,324,699072129,9367,3 +35528,A048,614,646,9023703,8258,0 +35529,C0155,318,527,8841266,9414,0 +35530,Osada+koczownik%C3%B3w,512,688,699781762,10040,8 +35531,Wioska+barbarzy%C5%84ska,545,325,849087581,2052,0 +35532,101,319,507,7098955,9348,0 +35533,Islanders+05,684,518,7973893,9034,0 +35534,Komornicy+008,352,609,699336777,9825,0 +35535,%23039%23,636,630,692803,9761,0 +35537,%232+Europa,660,587,699778867,12154,0 +35538,062.+Ramr,665,591,8337151,10160,0 +35539,Wie%C5%9B+Kupolandia,546,323,849098136,8188,0 +35540,Out+of+Touch,325,432,698962117,2573,0 +35541,Wiocha,604,353,1990750,10068,0 +35542,Dream+on,311,499,698962117,9497,0 +35543,A006,606,646,9023703,10237,0 +35544,093+Tomek,688,509,2135129,4932,0 +35545,Kingdom+3,681,504,699598425,10728,0 +35546,JGA,360,621,699864013,8665,0 +35547,A+085,372,635,699342219,4487,0 +35548,2.Vigo,561,676,698215322,6517,0 +35549,D%C4%85br%C3%B3wka+Pod%C5%82%C4%99%C5%BCna,570,670,698723158,6587,0 +35550,010,317,500,7097727,4918,0 +35551,Wioska+053,652,604,848971079,9761,0 +35552,C0024,316,515,8841266,10362,0 +35553,02+Bak%C5%82a%C5%BCan,641,614,8224678,9898,0 +35554,Wioska+barbarzy%C5%84ska,368,368,849101962,2247,0 +35555,0160,406,336,699431255,3342,0 +35556,068,542,679,2293376,8291,0 +35557,Szulernia,377,367,7249451,3046,0 +35558,001,605,345,1990750,10831,0 +35559,New+Land+19,343,403,849064752,3297,0 +35560,0311,559,672,698659980,8190,0 +35561,Hard4,363,626,699805839,2262,0 +35562,Didek,666,573,849070946,10292,9 +35563,cc+pol009,391,367,3909522,6153,0 +35564,%2A004%2A,351,390,699273451,10211,0 +35565,%2A037%2A,346,393,699273451,10211,0 +35566,C0316,320,542,8841266,3553,0 +35567,I062,683,466,699722599,10495,0 +35568,Suppi,329,421,699856962,9550,0 +35570,Smacznej+kawusi,590,342,699710633,9753,5 +35571,New+World,442,674,698152377,9640,0 +35572,Wioska+barbarzy%C5%84ska,625,639,1415009,8113,0 +35573,Wioska+barbarzy%C5%84ska,574,327,699710633,3141,0 +35574,Wioska+barbarzy%C5%84ska,323,451,6258092,4679,0 +35575,Wioska+9,315,485,849075836,6171,0 +35576,Wioska+barbarzy%C5%84ska,412,341,699380607,2287,0 +35577,%23009.+Troja,442,677,848896948,9860,0 +35578,006,315,506,7097727,7371,0 +35579,Osada,506,455,699098531,9632,0 +35580,Jednak+wol%C4%99+gofry,418,661,699736927,7203,0 +35581,058.+Jezioro+Woadark,664,593,8337151,10301,0 +35582,Chekku+-+meito,322,538,9280477,9976,0 +35583,091+Nowy+Rok,655,407,699491076,8194,0 +35584,025+%2A+Lady+Porto+%2A,646,392,699406750,10595,0 +35585,KR%C3%93L+PAPI+WIELKI,641,620,698191218,9973,0 +35586,A047,609,648,9023703,8347,0 +35587,Szlachcic,396,343,3484132,10003,0 +35588,Wioska+barbarzy%C5%84ska,338,592,7183372,10141,0 +35589,New+World,434,677,698152377,10292,0 +35590,_PUSTA%2B,685,541,699628084,9797,0 +35591,0581,567,667,698659980,9808,0 +35592,%230212+Segadorr+dar,451,318,1238300,5717,6 +35593,AAA,532,319,1006847,9409,0 +35594,8.Yasnaya+Polyana,419,331,849098648,5562,0 +35595,0093,648,389,698416970,7538,0 +35596,C.02,682,515,699737356,9214,0 +35597,Wsch%C3%B3d+X3,685,530,698562644,10311,0 +35598,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,379,645,699697558,4378,0 +35599,002.,565,327,699072129,4726,0 +35600,0335,570,673,698659980,7208,0 +35601,Z%7C002%7C+Turyn,472,686,699393742,9976,0 +35602,-001-,373,638,849096354,5053,0 +35603,021.+G%C3%B3rki%3F,642,623,849100994,7108,0 +35604,C0172,317,513,8841266,10362,5 +35605,Wioska+barbarzy%C5%84ska,680,470,699574408,5682,0 +35606,049,541,679,2293376,6984,0 +35607,Krzy%C5%BC%C3%B3wki-hubix,667,415,8675636,9797,0 +35608,-sioux+falls,649,388,8096537,7249,0 +35609,Szlachcic,387,356,698160606,9757,0 +35611,--02--,341,601,8877156,10351,0 +35612,Wioska+barbarzy%C5%84ska,512,681,8501514,9398,0 +35613,C0268,312,507,8841266,7082,0 +35614,-004-+Chwa%C5%82a+Imperium,621,357,849099276,9036,0 +35615,New+World,434,674,698152377,10294,0 +35616,psycha+sitting,398,659,699736927,6839,0 +35617,Monetkownia,624,631,699759128,9431,0 +35618,Szlachcic,391,354,3484132,10476,0 +35619,New+World,432,672,698152377,10295,0 +35620,Muchomor+%2A006%2A,511,686,606407,10295,0 +35621,reco,496,685,699393742,3095,0 +35622,Winterhome.073,509,313,848918380,9282,0 +35623,086+%C5%9Awi%C4%99ta+Bo%C5%BCego+Narodzenia,595,346,699491076,9891,0 +35624,%2A008%2A,315,536,8630972,10169,0 +35625,AAA,548,321,1006847,6021,0 +35626,Wioska+barbarzy%C5%84ska,623,366,699098531,6483,0 +35627,C1.,317,544,849095482,7645,0 +35628,213,430,330,7271812,9245,0 +35629,-+187+-+SS,535,681,849018239,7326,0 +35630,123,472,683,9003698,10373,0 +35631,006+Texas,490,684,699238479,9755,0 +35632,043-+Mroczna+Osada,649,389,849035905,12154,0 +35634,F054,494,521,699189792,9675,0 +35635,Cytadela+Rick%C3%B3w,645,621,849098822,6430,0 +35636,Na+Kra%C5%84cu+%C5%9Awiata+006,577,328,9291984,10252,0 +35637,New+World,444,678,698152377,10300,0 +35638,Wioska+barbarzy%C5%84ska,627,364,6625437,3728,0 +35639,A+099,370,637,7085510,5516,0 +35640,Wow22,373,368,699730714,2275,0 +35641,013,349,603,7183372,10342,0 +35642,%2A013%2A,352,386,699273451,10211,0 +35643,Wioska+barbarzy%C5%84ska,572,670,6818593,7263,0 +35644,%2A%2A01%2A%2A,672,434,849098782,12154,0 +35645,B.A.R.B.A.R.K.A,314,478,8048374,8258,0 +35646,Ob+Konfederacja,429,327,848915730,4937,0 +35647,040+Mucharadza,666,416,9238175,9127,0 +35648,AAA,525,314,1006847,8832,0 +35649,%23057%23,638,630,692803,9761,0 +35650,emoriar,681,448,699574408,6625,6 +35651,Sony+911,622,639,1415009,10212,0 +35652,Wioska+Vll,324,568,699671197,10398,0 +35653,Didus+P,667,575,849070946,5728,0 +35654,Pomidorowy+dzem,683,507,699598425,9900,0 +35655,Szulernia,370,370,7249451,9981,0 +35656,%C5%BBUBR+.%3A%3A.Adaczu%2F03,618,647,33900,6662,0 +35657,058,453,324,2502956,10019,0 +35658,008.+Wola,688,476,7494497,10223,0 +35659,033+-+Alcala+de+Henares,688,523,698342159,4967,0 +35660,048+Halemba,663,412,9238175,10301,0 +35661,126,547,398,849064752,10311,0 +35662,Wioska+barbarzy%C5%84ska,475,316,6936607,3936,0 +35663,%5B031%5D+Wioska+barbarzy%C5%84ska,672,425,849095068,9312,0 +35664,%2A187%2A,331,415,699273451,7251,0 +35665,%2A084%2A,360,375,699273451,10211,0 +35666,021+Cardiff,615,353,849057572,7536,0 +35667,-+07+-+D%C4%85br%C3%B3wka,461,322,848902744,4278,7 +35668,A+046,366,634,699342219,5794,0 +35669,%5B032%5D,662,583,698305474,8149,0 +35670,-+155+-+SS,540,683,849018239,9803,0 +35671,A061,605,654,9023703,10237,0 +35672,C0105,317,522,8841266,10046,0 +35673,Widzew,683,477,849100246,5467,0 +35674,Taran+028,638,371,699098531,5249,0 +35675,Wioska+barbarzy%C5%84ska,323,452,6258092,4023,0 +35676,i+co+z+tego,651,386,849041192,4399,0 +35677,OFF,645,619,849014413,9725,0 +35678,105.Stradi,458,321,698365960,9318,0 +35679,Winterhome.045,492,312,848918380,10178,0 +35680,014,511,673,2293376,9993,0 +35681,A+021,363,627,699342219,5048,0 +35683,%3D%7C33%7C%3D,644,386,9101574,10495,5 +35684,Wioska+wilku1000,328,556,1568700,2775,0 +35685,%2A021%2A,352,385,699273451,10211,0 +35686,%23003+Ma%C5%82pi+Gaj,440,679,848896948,9976,0 +35687,Wioska+barbarzy%C5%84ska,404,658,699736927,3871,0 +35688,023+Wioska,680,466,699671454,3171,0 +35689,Psycha+Siada,445,673,698807570,7588,0 +35690,Wioska+barbarzy%C5%84ska,655,607,1900364,3569,0 +35691,Szlachcic,386,354,698160606,9694,0 +35692,0168,376,638,7085510,10216,0 +35693,x000,632,369,6625437,9782,0 +35694,Wioska+5,574,333,7560474,5402,0 +35695,057,334,589,7183372,10157,0 +35696,XC1,311,495,849040194,10365,0 +35697,Komornicy+020,353,607,699336777,9642,0 +35698,AGA7,687,500,699598425,9371,0 +35699,XDX,623,368,699098531,10838,0 +35700,Ziemniak,322,443,699821629,6389,0 +35701,Pomidorowy+dzem,682,510,699598425,8507,0 +35702,Rijen,609,352,9103424,7630,0 +35703,019+Wioska+barbarzy%C5%84ska,682,455,849098769,7662,0 +35704,New+World,431,670,698152377,10290,0 +35705,.achim.,485,313,6936607,9779,0 +35706,Wioska+barbarzy%C5%84ska,526,313,698350371,7263,0 +35708,%2A5611%2A+YME3,669,582,7973893,10287,0 +35709,0148,409,340,699431255,9934,0 +35710,Muchomor+%2A026%2A,522,686,606407,9278,0 +35711,%23043%23,629,633,692803,9761,0 +35712,Wioska+barbarzy%C5%84ska,331,419,2418002,3241,0 +35714,248,424,328,7271812,4988,0 +35715,EO+EO,311,512,699697558,10495,0 +35716,Szlachcic,393,345,3484132,10476,0 +35717,070+donkretos2,687,516,2135129,9455,0 +35718,%2A256%2A,335,410,699273451,2759,0 +35719,0591,539,660,698659980,7413,0 +35720,008.Stradi,443,320,698365960,10495,0 +35721,129+Bajerka+Bajerka+I+Blok%3F,660,399,699491076,8029,0 +35722,psycha+sitting,423,673,699736927,10178,0 +35723,OFF,647,619,849014413,10362,0 +35724,C0257,318,509,8841266,7213,0 +35726,%2A221,374,370,699273451,6356,0 +35727,Taran,550,381,699170684,9761,0 +35728,Out+of+Touch,330,433,698962117,2796,0 +35729,Wioska+barbarzy%C5%84ska,653,608,1900364,1227,0 +35730,008.+B%C5%82onie,325,448,849098966,5737,0 +35731,Wioska+barbarzy%C5%84ska,597,657,699567608,9112,0 +35732,%2A172%2A,335,409,699273451,7799,0 +35733,Szlachcic,385,359,698160606,7227,0 +35734,Wioska+barbarzy%C5%84ska,597,658,699567608,9267,0 +35735,%230302+sliwatojo,465,318,1238300,7241,0 +35736,Szulernia,371,369,7249451,10099,0 +35737,%23035%23,628,635,692803,9761,0 +35738,AAA,537,317,1006847,9883,0 +35739,Wioska+kamilpo4,641,618,848942587,11388,0 +35740,I095,675,446,699722599,7463,0 +35741,07.+Soldier,553,326,699072129,9557,0 +35742,8+barba,588,661,848995242,10157,0 +35743,HITA,403,344,8123790,4350,0 +35744,Szulernia,380,364,7249451,5992,0 +35745,Szlachcic,389,469,6258092,10019,0 +35746,KONFA+TO+MARKA%2C+NARKA,318,457,698152377,10290,0 +35747,%23002.+Welcome+In+My+Night%21,444,677,848896948,9899,0 +35748,AAA,541,319,1006847,8444,0 +35749,C+015,680,515,8078914,9778,0 +35750,051.,460,677,849034882,10559,0 +35751,Didi,669,568,849070946,10818,0 +35752,Loca+1,634,632,699778867,11824,0 +35753,1005,622,359,699150527,9821,0 +35755,99k%24+Grvvyq,684,537,699676005,10495,0 +35756,Gattacka,677,433,699298370,9192,0 +35757,krytl03,513,319,1990750,9503,0 +35758,Kingdom+7,682,502,699598425,10408,0 +35759,%3D%7C15%7C%3D,647,384,9101574,7798,0 +35760,007.,569,324,699072129,8066,0 +35761,Out+of+Touch,329,430,698962117,2439,0 +35762,Wioska+r+16,558,673,848915531,3913,0 +35763,Przyczajony,617,353,7340529,9948,0 +35764,002.+%C5%BBoliborz-Maciusiowa+zagroda,688,475,7494497,10104,0 +35765,555,636,369,849092309,7689,0 +35766,%3D%7C04%7C%3D,652,393,9101574,10495,1 +35767,Wioska+barbarzy%C5%84ska,569,676,7756002,9983,0 +35768,%C5%BBelazny+deff,362,623,699805839,5753,0 +35769,062,451,321,2502956,9644,0 +35770,Wioska+barbarzy%C5%84ska,516,687,606407,8456,0 +35771,Architekci+Plac%C3%B3w+Boju,331,559,8004076,9880,0 +35772,066+Wioska+018,663,409,9238175,9447,0 +35773,002+Smocza+Ska%C5%82a,316,488,699823490,8527,0 +35774,%2A086%2A,360,372,699273451,10211,0 +35775,018+%2A+Lady+Porto+%2A,648,393,699406750,12154,0 +35776,%5B030%5D+Wioska+barbarzy%C5%84ska,671,427,849095068,9312,0 +35777,036+Melian,658,601,8337151,10083,0 +35778,z+181-A003,357,379,3909522,8848,0 +35779,005+Desant,483,689,699745265,9608,0 +35780,003+Kirtan,661,598,8337151,10197,0 +35781,Wioska+barbarzy%C5%84ska,605,342,699098531,3200,0 +35782,%2A147%2A,344,399,699273451,7703,0 +35783,New+World,447,679,698152377,10311,0 +35784,KONFA+TO+MARKA%2C+NARKA,318,450,698152377,10291,0 +35785,Psycha+Siada,442,670,698807570,9230,0 +35786,Pa%C5%84stfa+Pu%C5%82nocy,583,335,699433558,9355,0 +35787,%28023%29Yulay,324,569,849098695,5566,0 +35788,010%7C%7C+Capricornus,480,652,849035525,10019,0 +35789,A+026,364,630,699342219,5560,0 +35790,014+Mieyet+wb,678,443,849098769,9899,0 +35791,Dolina+%C5%9Awi%C4%85ty%C5%84,651,399,7973893,7892,0 +35792,Taran,682,489,699598425,10728,0 +35794,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,642,1434753,10044,0 +35795,022+%2A+Lady+Porto+%2A,647,393,699406750,12154,0 +35796,Komornicy+016,351,612,699336777,3454,0 +35797,%28020%29Tukar,325,561,849098695,4355,0 +35798,%230195+Segadorr+dar,461,323,1238300,10178,6 +35799,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,638,1434753,9853,0 +35800,A018,609,653,9023703,10237,0 +35803,kamilkaze135+%2308,658,395,699705601,8974,0 +35804,Wioska+barbarzy%C5%84ska,339,599,7183372,10159,0 +35805,Szlachcic,318,532,698388578,7689,0 +35806,214,448,327,698365960,12154,0 +35807,KONFA+TO+MARKA%2C+NARKA,317,458,698152377,10291,0 +35808,Lord+Lord+Franek+.%23193,617,356,698420691,10495,9 +35809,Lubraniec-Hubix,666,411,8675636,10019,0 +35810,Nowa+43,667,578,698702991,9751,0 +35811,UltraInstynkt,604,341,699710633,9977,0 +35812,Szlachcic,390,348,3484132,10476,0 +35814,Ave+Why%21,493,686,699121671,9196,0 +35815,006,656,518,699351301,10559,0 +35816,Wioska+barbarzy%C5%84ska,403,341,699406776,1827,0 +35817,C0060,312,526,8841266,10362,0 +35818,Nie%2C+prosz%C4%99+nie...,414,664,699684693,8717,0 +35819,%23074%23,634,631,692803,9761,0 +35820,B025,517,313,699208929,9359,0 +35821,Wstr%C4%99tna,559,325,570100,3586,0 +35822,0048,569,325,699485250,4630,0 +35823,--05--,346,601,8877156,6233,0 +35824,02.wiocha,332,589,7183372,5856,0 +35825,%C5%BBUBRAWKA+055,616,641,33900,9458,0 +35826,Winterhome.047,497,313,848918380,10178,0 +35827,%7C049%7C+Makarska,494,681,699393742,9226,0 +35828,START+05,579,669,699567608,9703,0 +35829,Wioska+barbarzy%C5%84ska,683,491,699598425,10728,0 +35830,Wioska+barbarzy%C5%84ska,573,328,0,5046,0 +35831,063,450,317,2502956,10019,0 +35832,-002-,350,399,1693936,5466,0 +35833,0169,374,641,7085510,10216,0 +35834,Wioska+barbarzy%C5%84ska,476,317,6936607,3147,0 +35835,000+Plutosea,316,543,9280477,10068,0 +35836,%23071%23,636,628,692803,9761,0 +35837,97k%24+Grvvyq,681,537,699676005,10495,0 +35838,%2A110%2A,363,379,699273451,10211,0 +35839,022,538,686,2293376,9656,0 +35840,Wioska+2,311,489,849075836,8839,0 +35841,Komornicy+026,348,614,699336777,2910,0 +35843,Weso%C5%82ych+%C5%9Awi%C4%85t,641,377,7340529,10426,0 +35844,001,591,353,7340529,12154,0 +35845,Tu+jest+przysz%C5%82o%C5%9B%C4%87,659,400,699491076,8021,0 +35847,-+163+-+SS,545,682,849018239,9528,0 +35848,Weso%C5%82ych+%C5%9Awi%C4%85t,581,358,848915730,9938,0 +35849,A065,601,653,9023703,10237,0 +35850,Wioska+barbarzy%C5%84ska,404,654,699736927,5910,0 +35851,001,315,503,7097727,8995,0 +35852,Szlachcic,387,349,3484132,10487,0 +35853,OFF,685,522,1563417,7761,0 +35854,Nowa+37,673,561,698702991,9816,0 +35855,Wioska+margo0229,606,515,698845189,10495,0 +35856,Szlachcic%3Btaran,636,368,849092309,7410,0 +35857,017+NAWRA,653,614,849048867,10138,0 +35858,Szlachcic,390,347,3484132,10478,0 +35859,Grvvyq+104k%24,679,535,699676005,10102,0 +35860,I048,682,458,699722599,9919,0 +35861,%2A177%2A,333,413,699273451,8485,0 +35862,%28036%29Kadrix,327,568,849098695,9511,0 +35863,Wioska+barbarzy%C5%84ska,578,332,699710633,4039,0 +35864,Bongos,582,671,698723158,7647,0 +35865,Komornicy+009,353,609,699336777,9240,0 +35866,Wioska+ta+nowa,583,338,849063793,4263,0 +35867,Vanaheim+III,594,342,699478692,3313,0 +35868,045+gubin,664,412,9238175,10347,0 +35869,A049,615,647,9023703,8561,0 +35870,AAA,547,317,1006847,7325,0 +35871,130+Brzustowa-Hofek,659,401,699491076,9835,0 +35872,D.013,391,655,849088243,8249,0 +35873,A+097,370,632,699342219,3984,0 +35874,%2A047,595,655,699567608,9706,0 +35875,Ameryczka,619,354,7340529,10252,0 +35877,070KK,586,337,849063849,9247,0 +35878,132,392,650,699269923,5600,0 +35879,Winterhome.006,498,314,848918380,10178,0 +35880,Barka,584,670,699567608,8552,0 +35881,%28005%29Narak,324,567,849098695,9948,0 +35883,Wioska+barbarzy%C5%84ska,335,582,849046232,9104,0 +35884,-+DragonJ,542,323,699825236,4178,0 +35885,.achim.,486,315,6936607,7645,0 +35886,%2A092%2A,358,376,699273451,10211,1 +35887,20.+Madryt,685,486,699804790,9362,0 +35888,123,466,686,9003698,10373,0 +35889,%23040%23,628,636,692803,9761,0 +35890,%2A109%2A,359,376,699273451,10211,0 +35891,0167,370,638,7085510,4312,0 +35892,%2A040%2A,667,416,698670524,2217,0 +35893,Wioska+barbarzy%C5%84ska,576,328,9291984,4710,0 +35894,Optyk,678,548,848932879,7323,0 +35895,024+Hengfors,478,686,699834004,3364,0 +35896,Napewno+to+nie+jest+off,587,336,848912265,6214,0 +35897,Marudernia,371,360,849027025,9524,0 +35898,KONFA+TO+MARKA%2C+NARKA,317,460,698152377,10290,0 +35900,031,535,680,2293376,8456,0 +35901,%2A091%2A,361,372,699273451,10211,0 +35902,%C5%9Amieszki,537,615,3454753,9024,0 +35903,Out+of+Touch,328,429,698962117,10076,0 +35904,Wioska+barbarzy%C5%84ska,515,685,8501514,5999,0 +35905,Out+of+Touch,326,431,698962117,7909,0 +35906,Wioska+barbarzy%C5%84ska,688,492,699429153,9825,0 +35907,065,674,555,849095227,5828,0 +35908,W%C5%9Bciek%C5%82a+Pyra,325,442,699821629,6845,0 +35909,Wioska+barbarzy%C5%84ska,579,329,9291984,4181,0 +35910,Pomidorowy+dzem,684,512,699598425,10728,0 +35911,A+098,371,634,699342219,5378,0 +35912,Komornicy+006,351,609,699336777,9825,0 +35913,Wioska+barbarzy%C5%84ska,345,599,7183372,10075,0 +35914,%2A%2AINTERTWINED%2A,499,684,698704189,8087,0 +35915,Podgrodzie,578,672,698723158,3783,0 +35916,Wioska+01,349,387,3372959,3687,0 +35917,%2A5612%2Acc+Najd%C5%82u%C5%BCszy+zasi%C4%99g,671,581,7973893,10048,0 +35918,%2A073%2A,347,394,699273451,10211,0 +35919,W%C5%82oc%C5%82awek-Hubix,666,421,8675636,9024,0 +35920,Pomidorowy+dzem,683,512,699598425,10728,0 +35921,Wioska+barbarzy%C5%84ska,668,576,478956,3130,0 +35922,035,334,587,7183372,10362,0 +35923,0312,547,677,698659980,9354,0 +35924,Osada+koczownik%C3%B3w,512,684,699781762,9190,5 +35925,%230123+tomek791103,478,320,1238300,7932,0 +35926,AG04,592,665,699876345,9747,0 +35927,Wioska+Bochun10,315,483,7449254,10311,0 +35928,Wioska+barbarzy%C5%84ska,517,687,745946,7566,0 +35929,Upa,328,563,849012521,4632,0 +35930,ehhh+no,396,556,9167250,6019,0 +35931,105,592,662,849097799,8423,0 +35932,005,672,564,699493750,4094,0 +35933,Wioska+barbarzy%C5%84ska,681,486,699598425,10728,0 +35934,%23069%23,637,629,692803,9761,0 +35935,Ob+Konfederacja,432,329,848915730,9924,0 +35936,-+185+-+SS,550,682,849018239,6852,0 +35937,013,608,352,1990750,7894,0 +35938,Szlachcic,396,350,3484132,10481,0 +35939,Pd+01,361,629,272173,6730,0 +35940,Winterhome.018,501,312,848918380,10178,0 +35941,010+Lothric,521,312,1990750,10495,0 +35942,Aa+to+co+%3F,344,605,7183372,10066,0 +35943,%2A146%2A,341,396,699273451,10311,0 +35944,%2A%2A10%2A%2A,669,430,849098782,10998,0 +35945,063,682,547,849095227,6374,0 +35946,Piskorz,322,552,699265922,4150,0 +35947,Dream+on,311,497,698962117,8897,0 +35948,%2A148%2A,345,399,699273451,6664,0 +35949,Dream+on,310,497,698962117,9489,7 +35950,R%C3%B3d+smoka,690,511,8096537,9053,0 +35951,Out+of+Touch,324,437,698962117,9766,5 +35952,Wioska+barbarzy%C5%84ska,521,688,745946,6596,0 +35953,%3D%7C05%7C%3D,645,386,9101574,10495,0 +35954,C02,687,537,848995478,4556,0 +35955,KR%C3%93L+PAPI+WIELKI,638,619,698191218,10224,0 +35956,Wioska+072,662,598,848971079,9761,0 +35957,wysypisko+%C5%9Bmieci,321,551,699364813,8521,0 +35958,052.Stradi,453,317,698365960,10495,0 +35959,Y+%7C+Forest+Cyaaaanku,318,487,699213622,10000,7 +35960,Out+of+Touch,323,436,698962117,2917,0 +35961,%24BostonCeltics,690,509,699795378,7754,0 +35962,.achim.,536,392,6936607,10375,0 +35963,%5B013%5D+B%C4%85kopierdy,671,437,849095068,9312,0 +35964,Opole%21,680,553,848932879,11321,0 +35965,KR%C3%93L+PAPI+WIELKI,648,611,698191218,9706,0 +35966,kto+ananasowy+pod+wod%C4%85+ma+dom,677,542,699628084,8188,0 +35967,%2A035%2A,346,397,699273451,10211,0 +35968,C0039,310,513,8841266,10362,0 +35969,X+%7C+Forest+Cyaaaanku,318,469,699213622,10000,0 +35970,Szlachcic,506,473,699098531,8709,0 +35971,BSK1,650,613,849066044,9098,0 +35972,0166,376,640,7085510,10216,9 +35973,002+Ceris,661,591,8337151,10083,0 +35974,Wioska+068,652,611,848971079,9761,0 +35975,Muchomor+%2A001%2A,516,688,606407,8878,0 +35976,040,538,684,2293376,9993,0 +35977,Out+of+Touch,322,442,698962117,4634,0 +35978,Darma+dla+zawodnika,523,682,699494488,8430,0 +35979,--06--,346,604,8877156,7202,0 +35980,Winterhome.046,492,311,848918380,10178,0 +35981,%28029%29Desh,322,560,849098695,3345,7 +35982,Wioska+Lisseks,663,597,8337151,10083,0 +35983,Wioska+barbarzy%C5%84ska,519,312,1990750,10068,0 +35984,Wioska+barbarzy%C5%84ska,604,343,0,7280,0 +35985,-+203+-+SS,536,682,849018239,6812,0 +35986,Rosetta,408,657,849089459,2869,0 +35987,Suppi,602,350,7462660,9912,0 +35988,Didek,674,567,849070946,5901,0 +35989,%230159+Kamil0ss1,482,317,1238300,10178,0 +35990,Szymon9410,391,656,699269923,8082,0 +35991,%2A027%2A,348,392,699273451,10211,1 +35992,%5B123%5D+North23,575,473,848985692,10049,0 +35993,Winterhome.014,510,313,848918380,10178,0 +35994,08.+Oslo,687,483,699804790,9362,0 +35995,X+%7C+Forest+Cyaaaanku,319,470,1536625,9976,0 +35996,%21%2136+50+xxx,607,354,698361257,10008,0 +35997,Jednak+wol%C4%99+gofry,419,664,699736927,8395,0 +35998,%230127+korniczeks,470,319,1238300,10178,0 +35999,Wioska+barbarzy%C5%84ska,322,456,6258092,5174,0 +36000,228,421,335,7271812,3350,0 +36001,AAA,543,319,1006847,9684,0 +36002,095+Tomek,683,517,2135129,4591,0 +36003,Wioska+barbarzy%C5%84ska,507,317,6118079,5009,0 +36004,.achim.,535,392,6936607,10946,0 +36005,%23020%23,626,634,692803,9761,0 +36006,A+024,366,629,699342219,4007,0 +36007,006+Aberon,660,595,8337151,10083,0 +36008,Rubiez14,313,481,699265922,7277,0 +36009,071+Chybik+tu+by%C5%82,586,589,699373599,10195,0 +36010,215,430,325,7271812,6760,0 +36011,Kocpo%C5%82uch+4,329,578,848949597,3882,0 +36012,OFF,655,600,849014413,10343,0 +36013,BoOmBaa..,432,360,6169408,10242,0 +36014,003,601,348,1018357,10019,4 +36016,%28013%29Jah+Keved,327,569,849098695,8900,0 +36017,-+188+-+SS,549,681,849018239,7431,0 +36019,002,342,598,7183372,10236,0 +36020,013,531,680,2293376,9379,0 +36021,_PUSTA+%21,678,547,699628084,10495,0 +36022,Z%7C011%7C+Wioska+VIIII,455,679,699393742,7676,0 +36023,RTS+13,578,620,848995242,10146,0 +36024,Po%C5%82udnie.008,554,682,873575,10300,0 +36025,Szlachcic,395,346,3484132,10484,0 +36026,AAA,542,315,1006847,9455,0 +36027,Zeta+Reticuli+O,420,335,699323302,9560,0 +36028,069+Wioska+020,661,414,9238175,8180,0 +36029,-+194+-+SS,530,687,849018239,6644,0 +36030,Darma+dla+zawodnika,524,680,699494488,6492,0 +36031,25.+F-H-X,682,478,699804790,8292,0 +36032,%2A005%2A,353,391,699273451,10211,0 +36033,Wioska+barbarzy%C5%84ska,313,479,699823490,6989,0 +36034,Wioska+barbarzy%C5%84ska,603,344,0,5229,0 +36035,%7C028%7C+Nowa+Zelandia,508,686,2585846,9782,0 +36036,060.,651,393,849094609,10019,4 +36037,C0059,315,510,8841266,10362,0 +36038,KONFA+TO+MARKA%2C+NARKA,318,451,698152377,10290,0 +36039,C+003,682,519,8078914,10426,0 +36040,174...Segadorr_M,443,323,6920960,10602,0 +36041,Sony+911,623,639,1415009,10221,0 +36042,Szlachcic,388,351,3484132,10478,0 +36044,Wioska+Zorro+011,664,583,849080702,9710,0 +36045,P015+Svargrond,660,508,8096537,9761,0 +36046,%7B37%7D+Wie%C5%9B+Gli%C5%84sk,368,636,849096945,2713,0 +36047,%23055%23,638,629,692803,9761,9 +36048,-005-+Chwa%C5%82a+Imperium,618,358,849099276,6766,0 +36049,%5B034%5D+Wioska+barbarzy%C5%84ska,673,419,849095068,9288,0 +36050,C03,687,535,848995478,6149,0 +36051,W%C5%82adcy+P%C3%B3%C5%82nocy+04,690,497,699379895,6889,0 +36052,2.Ronda,567,673,698215322,4480,0 +36053,003,324,560,849097898,9589,0 +36054,AAA,526,320,1006847,10503,0 +36055,C04,685,537,848995478,3013,0 +36056,Wioska+barbarzy%C5%84ska1a,394,657,699269923,9554,0 +36058,TWIERDZA+%233,583,337,849063793,2843,0 +36059,Wioska+barbarzy%C5%84ska,410,658,699736927,2054,0 +36060,09.+Berlin,684,483,699804790,9362,0 +36062,Taran+036,641,380,699098531,7530,0 +36063,%7E+MIED%C5%B9Y%C5%83+%7E,320,445,698540331,10103,0 +36064,%7C059%7C+Barba,496,682,699393742,6788,0 +36065,Taran+014,644,379,699098531,10971,0 +36067,002+Choroszcz,529,316,849099054,10083,0 +36068,0273,559,677,698659980,10019,0 +36069,Jednak+wol%C4%99+gofry,417,664,699736927,9792,0 +36070,%23068%23,633,631,692803,9761,0 +36071,Szlachcic,385,348,3484132,10487,0 +36072,AG09,588,667,699876345,9157,0 +36073,z+181-A004,353,380,3909522,8470,0 +36074,Piechy,354,618,699864013,6244,0 +36075,%23013%23,629,640,692803,9761,0 +36076,Pa%C5%84stfa+Pu%C5%82nocy,585,331,699433558,9803,0 +36077,.achim.,487,315,6936607,8944,0 +36078,006.+Malce,339,402,698807570,10068,0 +36079,001+Du+Weldenvarden,662,595,8337151,9969,8 +36080,123,472,682,9003698,10373,0 +36082,%23%21+Szlachcic,383,352,698160606,10478,0 +36083,Brze%C5%BAno,666,408,7973893,7697,0 +36084,005+Maka+Paka,594,341,699576407,1679,0 +36085,%C5%BBUBR+.%3A%3A.Adaczu%2F04,620,646,33900,6632,0 +36086,Wioska+barbarzy%C5%84ska,326,426,699856962,8020,0 +36087,%2A%2A27%2A%2A,675,434,849098782,10480,0 +36088,Szlachcic,391,349,3484132,10495,0 +36089,Out+of+Touch,323,433,698962117,2685,0 +36090,X+%7C+Forest+Cyaaaanku,319,466,699213622,10000,0 +36091,%2A114%2A,361,382,699273451,10026,0 +36092,-+DragonH,546,324,699825236,6828,0 +36093,Wioska+barbarzy%C5%84ska,688,466,699574408,9054,0 +36094,%2A031%2A,348,393,699273451,10211,0 +36095,TWIERDZA+.%3A073%3A.,676,560,7154207,8983,0 +36096,C0182,320,532,8841266,9130,0 +36097,AAA,529,320,1006847,9835,0 +36098,005.+Trop,562,322,699072129,10311,0 +36099,Wioska+barbarzy%C5%84ska,338,584,3990066,3997,0 +36100,013+FF,318,501,7097727,1717,0 +36101,Taran,342,604,6180190,10115,0 +36102,Wioska+barbarzy%C5%84ska,685,494,699598425,10728,0 +36103,035,529,687,2293376,9384,0 +36104,012.,639,376,699098531,9431,0 +36105,049.Stradi,447,322,698365960,10495,0 +36106,002,310,505,698356304,5956,0 +36107,I092,682,446,699722599,8392,0 +36108,KONFA+TO+MARKA%2C+NARKA,314,460,698152377,10290,0 +36109,Szlachcic,398,345,698160606,8021,0 +36110,1004,617,359,699150527,9821,0 +36111,O28+Elva,677,547,699272880,10812,0 +36112,%2A122%2A,361,379,699273451,9001,0 +36115,008.+Spurs,485,690,848953066,4875,0 +36116,Szlachcic,383,355,698160606,10365,0 +36117,New+World,428,675,698152377,10294,0 +36118,BULWAR,399,349,3484132,6398,0 +36119,New+Land+22,340,413,849064752,2493,0 +36120,C0270,318,508,8841266,5739,0 +36121,Ave+Why%21,481,686,699121671,3610,0 +36122,0401,561,681,698659980,10019,0 +36123,Lord+Lord+Franek+.%23175,519,319,698420691,10160,0 +36124,Tesa+13,605,516,698845189,7100,0 +36125,%3F%3F%3F,475,312,698489071,8353,0 +36126,_PUSTA,660,603,698768565,10213,0 +36127,009+Kingsthorpe,604,344,699580120,7647,0 +36128,%5B042%5D+Wioska+barbarzy%C5%84ska,674,435,849095068,8839,0 +36129,Grvvyq+113k%24,682,534,699676005,7208,0 +36130,X+%7C+Forest+Cyaaaanku,314,469,699213622,10000,4 +36131,Sekou,681,516,699737356,9888,0 +36132,cos+cos,436,679,8966820,9835,0 +36133,008+Utah,489,684,699238479,4058,0 +36134,Den+Bosch,620,359,9103424,10030,2 +36135,psycha+sitting,425,673,699736927,8704,0 +36136,Male%C5%84stwo,386,650,699269923,9865,0 +36137,14.+Aeris+Gainsborough,524,614,8199417,10495,0 +36138,Chekku+-+meito,321,538,9280477,9976,0 +36139,Wioska+barbarzy%C5%84ska,686,493,699598425,10728,0 +36140,029Wioska+barbarzy%C5%84ska,682,452,849098769,7099,0 +36141,053+Wioska+002,663,413,9238175,10358,0 +36142,Wioska+barbarzy%C5%84ska,348,605,7183372,6002,0 +36143,Wyj%C5%9Bcie+Awaryjne,682,552,848932879,10316,0 +36144,Ronin+P,637,627,698768565,9995,0 +36145,AGA2,684,504,699598425,7770,0 +36146,AAA,549,323,1006847,11156,0 +36147,Winterhome.021,498,313,848918380,10178,0 +36148,0192,474,545,698971484,7376,0 +36149,31.+Nawzajem,557,320,849099696,6087,0 +36150,Lord+Arsey+KING,576,591,848956513,10285,0 +36151,J%23012,576,331,2065730,4833,0 +36152,Wioska+Bochun10,319,485,7449254,10311,0 +36153,AAA,542,321,1006847,9778,0 +36154,04+Batat,642,614,8224678,6194,0 +36155,Wegorz,318,547,699265922,3818,0 +36156,%2AINTERTWINED%2A,504,687,698704189,9711,0 +36157,Winterhome.017,500,314,848918380,10178,8 +36158,Winterhome.019,503,312,848918380,10178,0 +36159,%23042%23,629,634,692803,9761,0 +36160,40k%24+Grvvyq,673,564,699676005,10495,5 +36161,AAA,525,318,1006847,7584,0 +36162,0040,569,322,699485250,10211,0 +36163,10+Nowa+Cytadela,561,326,849108780,9630,0 +36164,%23008%23,621,645,692803,9761,0 +36165,START+01,579,671,699567608,9700,0 +36166,005,325,558,849012521,4788,0 +36167,Wioska+barbarzy%C5%84ska,653,603,1900364,5072,0 +36168,AAA,531,318,1006847,9899,3 +36170,I064,687,468,699722599,9958,0 +36171,Ob+Konfederacja,433,327,848915730,10079,0 +36172,%2AINTERTWINED%2A,500,686,698704189,8276,0 +36173,KR%C3%93L+PAPI+WIELKI,571,576,698191218,10000,0 +36174,_PUSTA%2B,675,549,699628084,10495,0 +36175,%2A170%2A,334,409,699273451,8975,0 +36176,Minas+Tirith,629,362,699857387,10019,0 +36177,Parole,337,410,699595556,3674,0 +36178,08+Twierdza+P%C3%B3%C5%82nocna,565,328,849108780,4191,0 +36179,KONFA+TO+MARKA%2C+NARKA,319,460,698152377,10292,0 +36180,Wioska+barbarzy%C5%84ska,563,326,849106785,2051,0 +36181,kathare,550,645,873575,9804,0 +36182,Wioska+barbarzy%C5%84ska,476,315,0,2930,0 +36183,%C5%BBelazny+deff,361,625,699805839,10040,0 +36184,002+Desant,482,689,699745265,8725,0 +36185,6.Novorepnoye,422,325,849098648,6242,0 +36186,Architekci+Plac%C3%B3w+Boju,340,553,8004076,9880,0 +36187,Darma+dla+zawodnika,527,685,699494488,4724,0 +36188,Didek,676,565,849070946,7297,0 +36189,Wsch%C3%B3d+Droga+005,673,570,698562644,10311,0 +36190,Szlachcic,395,344,3484132,9336,0 +36191,%23070%23,634,628,692803,9761,0 +36192,Szlachcic,377,354,698160606,10487,0 +36193,Muchomor+%2A008%2A,515,684,606407,10292,0 +36194,Zeta+Reticuli+O,421,336,699323302,10728,0 +36195,No.24,477,683,698826986,5861,0 +36196,C+017,689,522,8078914,7009,0 +36197,-+159+-+SS,544,685,849018239,10000,0 +36198,AAA,540,319,1006847,7071,0 +36199,A020,607,657,9023703,10237,0 +36200,Lord+Nc3dyh+1,320,442,699509284,5687,0 +36201,%21%23Szlachcic,380,352,698160606,10838,0 +36202,AAA,549,317,1006847,8545,0 +36203,C+008,686,516,8078914,7014,0 +36204,Komornicy+012,351,611,699336777,4600,0 +36205,Out+of+Touch,326,434,698962117,10000,0 +36206,Wioska+Bochun10,315,489,7449254,7508,0 +36207,%2A5615%2A+Winchester,673,558,7973893,10287,8 +36208,%230082+barbarzy%C5%84ska,465,342,1238300,10061,0 +36209,New+Land+20,345,401,849064752,3235,0 +36210,B024,517,312,699208929,5318,0 +36211,.achim.,487,317,6936607,6706,0 +36212,O65+Yongan,676,556,699272880,10548,0 +36213,.achim.,485,315,6936607,9844,0 +36214,Ob+Konfederacja,431,324,848915730,9816,1 +36215,Dream+on,309,500,698962117,9488,0 +36216,Zadupie,634,365,848924219,1923,0 +36218,Cmentarz+Wroc%C5%82awska,682,548,848932879,6284,0 +36219,%7C070%7C+BlackBird+5,492,690,699393742,8128,0 +36220,Ave+Why%21,450,682,698585370,10503,1 +36221,.%3A014%3A.+ma,641,381,849078297,2716,0 +36222,TWIERDZA+.%3A023%3A.,679,563,7154207,10299,0 +36223,Wioska+barbarzy%C5%84ska,436,445,9291984,3150,0 +36224,159+Nocny+Jastrz%C4%85b+004,656,398,699491076,7936,0 +36225,Zamek+Kurowej,654,607,1900364,2878,0 +36227,%230236+deleted,474,343,1238300,10178,0 +36228,017+Byrgenwerth,522,311,1990750,10068,0 +36229,Szlachcic,395,350,3484132,10478,0 +36231,%28035%29Kharbranth,332,575,849098695,5272,0 +36232,Kentin+ufam+Tobie,321,462,699783765,10141,0 +36233,C06,685,536,848995478,4314,0 +36234,18.+Moskwa,683,481,699804790,9362,0 +36235,Wioska+dzikich+zwierz%C4%85t,580,664,699567608,10204,0 +36236,Wioska+2,331,425,2418002,8843,0 +36237,Szlachcic,385,353,698160606,10401,0 +36238,%2A024%2A,356,387,699273451,10211,0 +36239,BAC%C3%93WKA+%7C043%7C,667,411,7394371,5875,0 +36240,AGA4,687,497,699598425,10107,0 +36241,Koza,322,550,699265922,4607,0 +36242,Szlachcic,381,352,698160606,9939,0 +36243,Napewno+to+nie+jest+off,590,335,848912265,4707,0 +36244,PYRLANDIA+029+sobex510,564,588,33900,9707,0 +36245,%5B029%5D+Wioska+barbarzy%C5%84ska,673,438,849095068,9312,0 +36246,233,422,329,7271812,3967,0 +36247,New+World,432,678,698152377,10292,0 +36248,%2A026%2A,348,391,699273451,10211,0 +36249,Wioska+barbarzy%C5%84ska,319,549,8004076,6556,0 +36250,z+internacionale+33,355,378,3909522,10160,0 +36251,R%C3%B3zanka,322,553,699265922,1997,0 +36252,Napewno+to+nie+jest+off,586,336,848912265,5237,0 +36253,LordFrotto2,563,327,849106785,6355,0 +36254,Twierdza+013,316,550,7563185,2582,0 +36255,Dream+on,310,492,698962117,9744,6 +36256,25.+Wioska+Raukodel,650,383,9320272,2906,0 +36258,%2A5612%2Aa+Wycieczka,668,581,7973893,10287,0 +36259,Sieja,321,548,699265922,2488,0 +36260,Wioska+barbarzy%C5%84ska,681,470,699574408,9896,0 +36262,064,535,682,2293376,7915,0 +36263,New+World,429,672,698152377,10294,0 +36264,%2A005%2A.+Rivia,314,536,699402816,9835,0 +36265,Wioska+Vintorez,372,359,849068108,8621,0 +36266,z+internacionale+08,358,380,3909522,9746,0 +36267,C+001,689,511,8078914,10144,6 +36268,W%C5%82adcy+P%C3%B3%C5%82nocy+05,688,506,699379895,6153,0 +36269,Upa02,327,564,849012521,5180,0 +36270,Wioska+Barbarzy%C5%84ska,544,481,698867483,10019,0 +36271,063.+Rona,665,596,8337151,10083,0 +36272,Wioska+barbarzy%C5%84ska,597,340,0,3359,0 +36273,010+Desant,481,687,698620694,9164,0 +36274,I063,685,464,699722599,10495,0 +36275,Szlachcic,387,350,3484132,10476,0 +36276,Wsch%C3%B3d+X4,688,530,698562644,10375,0 +36278,Szlachcic,394,352,3484132,10478,0 +36279,200...Segador,457,314,6920960,10654,0 +36280,%2AINTERTWINED%2A,507,686,698704189,9711,0 +36281,Wioska+Bochun10,317,498,7449254,7908,0 +36282,Wioska+086,656,609,848971079,7074,0 +36283,Out+of+Touch,320,437,698962117,5481,0 +36285,Zeta+Reticuli+O,418,334,699323302,10997,0 +36286,%2A%2A31%2A%2A,668,425,849098782,9769,0 +36287,041.+nie+zgadniesz+jaka+wioska,688,473,7494497,10462,0 +36288,069,543,685,2293376,6734,0 +36289,Wioska+Zorro+014,666,595,849080702,8724,0 +36290,Winterhome.035,495,312,848918380,10178,0 +36291,BIRMINGAM,397,349,3484132,7160,0 +36292,-+189+-+SS,533,683,849018239,8514,0 +36293,B023,518,311,699208929,7721,0 +36294,Amon+Sul,460,679,849004274,10132,0 +36295,%2A182%2A,340,407,699273451,10211,0 +36296,014,609,353,8649412,7335,0 +36297,AAA,525,311,1006847,5164,0 +36298,a+mo%C5%BCe+off+%3F+%3A%29,638,620,698768565,9358,0 +36299,001.+Milan%C3%B3wek,316,450,849098966,7116,0 +36300,KR%C3%93L+PAPI+WIELKI,646,619,698191218,9955,0 +36301,_PUSTA+%21,686,541,699628084,9727,0 +36302,Osada+koczownik%C3%B3w,622,643,1415009,10306,3 +36303,R+025,485,686,699195358,9309,0 +36304,fff,490,317,698239813,10680,0 +36305,Wodogrzmoty+Ma%C5%82e,654,608,1900364,9771,0 +36306,090+Nowy+Rok,655,403,699491076,9878,0 +36307,%230203+Segadorr+dar,461,315,1238300,8760,0 +36308,%2A089%2A,359,382,699273451,10211,8 +36309,Chekku+-+meito,337,534,9280477,9976,0 +36310,Gattacka,680,435,699298370,9570,0 +36311,X+%7C+Forest+Cyaaaanku,319,468,699213622,10000,0 +36312,061+Wioska+013,663,411,9238175,9697,0 +36313,Szlachcic,392,351,3484132,10495,0 +36314,Wioska+barbarzy%C5%84ska,587,332,0,9202,0 +36315,181...SEGADOR,442,320,6920960,8011,0 +36316,I058,682,456,699722599,9987,0 +36317,Szlachcic,386,349,3484132,10478,0 +36318,%2A101,581,663,699567608,9779,0 +36320,A+037,366,631,699342219,3261,0 +36321,%28021%29Emul,326,561,849098695,4275,0 +36322,007,310,508,698356304,3206,0 +36323,zzzGranica+Bledu+13,642,616,699778867,6920,0 +36324,z+181-A001+skasowano,350,378,3909522,9842,0 +36325,Wioska+barbarzy%C5%84ska,523,312,1990750,9136,0 +36326,Auu+08,576,667,848995242,4984,0 +36327,025+Haligtree,517,311,699208929,10119,0 +36328,0167,378,641,1434753,6669,0 +36329,Wioska+barbarzy%C5%84ska,326,424,699856962,7756,0 +36330,Szlachcic,320,541,698388578,7389,0 +36331,%5B002%5D+Kleksowo,675,426,849095068,10495,0 +36332,W.O.S,312,482,8048374,6215,0 +36333,%230282+olcixx,467,312,1238300,7472,0 +36334,Walwaijk,616,350,9103424,7263,0 +36335,Out+of+Touch,330,432,698962117,3934,0 +36336,psycha+sitting,420,672,699736927,10178,0 +36337,Winterhome.049,494,309,848918380,10178,0 +36338,psycha+sitting,405,663,699736927,10311,0 +36339,AG01,591,665,699876345,9747,0 +36340,Jednak+wol%C4%99+gofry,415,662,699736927,9820,0 +36341,AAA,541,320,1006847,7067,0 +36342,Dream+on,312,503,698962117,9485,9 +36343,Klaudek19,631,362,849092309,3626,0 +36344,Eindhoven,618,352,9103424,10398,3 +36345,%C5%BBUBR+PSYCHIATRYK+010,616,644,33900,5464,0 +36346,110,591,668,849097799,7420,0 +36347,03.+Helsinki,685,484,699804790,9362,5 +36348,009,313,507,7097727,6538,0 +36349,%7E071.,529,689,7139820,7202,0 +36351,%5B027%5D+Wioska+barbarzy%C5%84ska,672,436,849095068,9288,0 +36352,A006,496,691,8954402,10144,0 +36353,B02,688,552,848995478,11321,0 +36354,Wioska+barbarzy%C5%84ska,647,612,1900364,3075,0 +36355,Osada+koczownik%C3%B3w+xxx,658,606,1900364,9742,4 +36356,186...Segador,456,322,6920960,10787,0 +36357,Szlachcic,387,345,3484132,10478,0 +36358,Ilonka,597,338,849061374,9505,0 +36359,Wonderwall,325,551,698962117,9488,0 +36360,Wioska+Bochun10,336,477,7449254,10311,0 +36361,013+Kalifornia,495,683,699238479,7832,0 +36362,007Wioska+barbarzy%C5%84ska,400,337,699406776,10301,0 +36363,Wyspa_11,508,689,2585846,9638,0 +36364,O0016,499,687,699781762,9929,0 +36365,Troch%C4%99+tego+b%C4%99dzie,651,387,849041192,3285,0 +36366,Wioska+barbarzy%C5%84ska+G%C3%B3ra,627,361,699857387,9199,0 +36367,Ob+Konfederacja,430,331,848915730,9871,1 +36368,007,525,316,1990750,10068,0 +36369,psycha+sitting,402,660,699736927,5388,0 +36370,171...Segadorr,441,325,6920960,10971,0 +36371,%C5%BBUBRAWKA+055,612,644,33900,10451,0 +36372,C0166,317,510,8841266,10362,8 +36374,New+Land+21,337,402,849064752,3218,0 +36375,K34+-+%5B151%5D+Before+Land,473,316,699088769,9226,3 +36376,Winterhome.013,498,312,848918380,10178,0 +36377,Wioska+jo%C5%82,627,369,849061374,8391,0 +36378,Lord+Nc3dyh,319,442,699509284,9292,0 +36379,Wioska+barbarzy%C5%84ska,567,679,7756002,9747,0 +36380,2.Sabadell,582,672,698215322,4932,0 +36381,%5B052%5D+Malzahar+2,676,433,849095068,6115,0 +36382,Nowa+46,665,579,698702991,7936,0 +36383,B-01,384,350,698160606,7417,0 +36384,%23Forza+02,436,668,699849210,9672,0 +36385,0269,548,678,698659980,9368,0 +36386,Ujek,655,398,1086351,7829,0 +36387,Taran,340,605,6180190,10051,0 +36388,Pr%C3%B3szk%C3%B3w1,371,364,849099434,12021,9 +36389,Out+of+Touch,324,438,698962117,5896,0 +36390,Ave+Why%21,489,686,699121671,4473,0 +36391,%230139+Rose,631,589,9272054,5199,0 +36392,Dream+on,310,501,698962117,9485,0 +36393,A016,612,652,9023703,10237,0 +36394,Wioska+5,332,427,2418002,5556,0 +36395,015,317,496,7097727,3890,0 +36396,Wyspa+013,620,379,699756210,10728,0 +36397,Wioska+barbarzy%C5%84ska,372,361,849027025,6595,0 +36398,29.+Legacy,558,319,849099696,7047,0 +36399,psycha+sitting,425,670,699736927,9876,0 +36400,Pd+09,362,630,272173,8746,2 +36401,016.,606,555,8900955,5286,0 +36402,052,494,379,698739350,7182,0 +36403,%230201+Segadorr+dar,458,314,1238300,10178,0 +36404,176...Segador-M,442,327,6920960,9012,0 +36405,KR%C3%93L+PAPI+WIELKI,649,611,698191218,9973,0 +36406,221,421,330,7271812,3896,0 +36407,D09,682,555,848995478,11191,0 +36408,.achim.,487,314,6936607,10411,0 +36409,1.01,428,676,699827112,9771,0 +36410,032,676,571,6160655,10237,0 +36411,Wioska+barbarzy%C5%84ska,576,330,9291984,4421,0 +36412,xxx,643,618,692803,9909,0 +36413,AAA,545,314,1006847,8362,0 +36414,Wioska+080,659,606,848971079,8914,0 +36415,Dream+on,311,502,698962117,9519,0 +36416,Darma+dla+zawodnika,519,667,699494488,9352,0 +36417,Wioska+Biboj94,682,472,699574408,9263,0 +36418,Wioska+b,558,677,6121024,5551,0 +36419,Koloryzowane,326,573,698338524,5436,0 +36420,C0109,314,532,8841266,10362,0 +36421,No.20,473,682,698826986,1448,0 +36422,069.+Illium,661,587,8337151,9689,0 +36423,0151,405,336,699431255,9181,0 +36425,Taran,344,609,6180190,10057,0 +36427,%7B53%7D+Cewice,383,646,849096945,2387,0 +36428,11+Nowa+Forteca,561,325,849108780,9318,0 +36429,Grvvyq+106k%24,681,530,699676005,7614,0 +36430,I068,685,469,699722599,9923,0 +36431,ZZZ,463,692,8980651,8975,0 +36432,%2A016%2A,351,386,699273451,10211,0 +36434,%7C055%7C+Szybenik,499,691,2585846,9482,0 +36435,Ob+Konfederacja,432,322,848915730,6701,0 +36436,005,339,598,7183372,10141,5 +36437,OFF,650,618,849014413,10104,0 +36438,201,424,331,7271812,9205,0 +36440,_PUSTA,654,600,698768565,10085,0 +36441,0.24,463,685,699827112,7099,0 +36442,Jan+AquaForce+Ost+K,683,452,879782,9594,0 +36443,Barbara+001,420,623,699730998,6602,0 +36444,041+Mucharadza,664,416,9238175,10285,0 +36445,Zeta+Reticuli+O,416,331,699323302,9616,0 +36446,%21%2136+95+Grigoresti,650,395,698361257,6380,0 +36447,-001-,351,394,1693936,7552,0 +36449,-+145+-+SS,541,686,849018239,9570,0 +36450,%23080%23,635,625,692803,9718,0 +36451,Out+of+Touch,324,433,698962117,8741,0 +36452,.04.+Lorien+e,354,624,272173,7781,0 +36453,Darma+dla+zawodnika,527,683,699494488,4172,0 +36454,Bagdad,465,390,8847546,10654,0 +36455,Wioska+X,670,417,8675636,10252,0 +36456,Wioska+barbarzy%C5%84ska,338,596,7183372,10064,0 +36457,013.+bum-ta-rara-rara,689,474,7494497,9949,0 +36458,102+-+Nowy+Pocz%C4%85tek...,377,646,7540891,8907,0 +36459,KONFA+TO+MARKA%2C+NARKA,315,454,698152377,10290,3 +36460,I003+Co+Ty+tutaj+robisz,683,460,699722599,10495,0 +36461,5.Severny,413,336,849098648,6830,0 +36462,118.+Dalonory,669,590,8337151,10083,0 +36463,%2A4691%2A+Grand,659,402,7973893,10075,0 +36464,Wsch%C3%B3d+X5,690,534,698562644,10544,0 +36465,Wano,489,388,699433558,10311,0 +36466,Cast+Away+003,452,493,698290577,5917,0 +36467,Ronin,642,626,8815749,10252,8 +36468,MojeDnoToWaszSzczyt,507,309,9299539,9958,0 +36469,C0144,319,535,8841266,10362,0 +36470,%7C067%7C+BlackBird+2,493,690,699393742,10974,0 +36471,Ulu-mulu,422,616,699697558,10463,0 +36472,009.+%C5%BB%C3%B3%C5%82win,324,448,849098966,6186,0 +36473,EO+EO,310,517,699697558,10019,0 +36474,Didiek,671,566,849070946,10362,0 +36475,Szlachcic%3Btaran,657,399,699738350,9809,0 +36476,Pa%C5%84stfa+Pu%C5%82nocy,584,330,699433558,9874,0 +36477,094.,505,484,8788366,9999,0 +36478,Wioska+MATTI,419,624,699730998,5769,0 +36479,Pyra2,326,441,699821629,6456,0 +36481,023,429,627,2289134,3204,0 +36482,-+02+-+Stare,468,314,848902744,8009,0 +36483,%3F%3F%3F,476,313,698489071,8564,0 +36484,X+%7C+Forest+Cyaaaanku,319,472,1536625,9976,0 +36485,C0066,312,529,8841266,10362,0 +36486,Didi,672,563,849070946,3983,0 +36487,040,327,579,7183372,10595,0 +36488,ADEN,524,377,698588535,10051,0 +36489,Wioska+barbarzy%C5%84ska,621,640,1415009,7510,0 +36490,011+Duncan,556,325,849108623,2827,0 +36491,%3D%7C19%7C%3D,616,351,9101574,10495,0 +36492,X+%7C+Forest+Cyaaaanku,314,465,699213622,10000,5 +36493,D.014,396,652,849088243,6868,0 +36494,%2A102%2A,362,369,699273451,10211,0 +36495,Dream+on,311,503,698962117,9555,0 +36496,%2A188%2A,375,373,699273451,10168,0 +36497,Weso%C5%82ych+%C5%9Awi%C4%85t,637,379,7340529,10887,0 +36498,Wioska+barbarzy%C5%84ska,521,687,745946,3842,0 +36499,1008,626,358,699150527,7084,0 +36500,Wioska+052,644,603,848971079,9761,0 +36501,226,417,334,7271812,5043,0 +36502,kamilkaze135+%2312,655,388,699705601,7891,0 +36503,Taran,336,599,6180190,9960,0 +36504,Taran,683,490,699598425,10728,1 +36505,Wioska+barbarzy%C5%84ska,385,646,0,533,0 +36506,Szlachcic,386,348,3484132,10484,0 +36507,Hiszpan4,673,559,7038651,10484,0 +36508,%2A107%2A,364,369,699273451,10211,0 +36510,psycha+sitting,419,668,699736927,10311,0 +36511,C0137,313,514,8841266,10362,0 +36512,Wioska+barbarzy%C5%84ska,687,493,699598425,10728,0 +36513,I089,687,457,699722599,8917,0 +36514,0049,573,325,699485250,5165,0 +36515,199,586,393,849064752,3228,0 +36516,Piek%C5%82o+to+inni,597,343,848956765,8118,0 +36517,Wioska+barbarzy%C5%84ska,333,594,7183372,7936,0 +36518,Mordor4,315,541,848978903,5791,0 +36520,psycha+sitting,412,669,699736927,9111,0 +36521,BRZEG+JORDANU+%7C+002,692,521,9228039,9346,0 +36522,R+022,485,685,699195358,9295,0 +36523,ZZZ,464,685,849014922,10787,9 +36524,Wioska+barbarzy%C5%84ska,372,365,849027025,6248,0 +36525,%23108+C,529,682,9037756,6187,0 +36526,Kingdom+9,689,500,699598425,10296,0 +36527,002,325,557,849099463,9347,0 +36528,Wioska+barbarzy%C5%84ska,659,602,1900364,2454,0 +36529,.achim.,482,312,6936607,8558,0 +36530,.12.+Occitane+b,368,632,699342219,9009,0 +36531,235,426,326,7271812,5231,0 +36532,005.+Kanie,320,448,849098966,6386,0 +36533,064,432,619,699783765,3703,0 +36535,Moja+Wioska,666,588,849098693,7885,0 +36536,Wioska+barbarzy%C5%84ska,431,624,6910361,4680,0 +36537,%2A022%2A,348,386,699273451,10211,0 +36538,022,425,630,699783765,5573,0 +36539,Wioska+barbarzy%C5%84ska,339,395,698807570,8714,0 +36540,%7E%7E064%7E%7E,632,638,7829201,7009,0 +36541,Muchomor+%2A028%2A,521,683,606407,9011,0 +36542,C005+Kuchnia+Mannekenpixa,586,664,9023703,4149,0 +36543,050,543,680,2293376,7750,0 +36544,Brzeg,680,554,848932879,10362,0 +36545,KR%C3%93L+PAPI+WIELKI,651,612,698191218,10444,0 +36546,EMERYTOWANY+KUZYN,420,634,848913998,4951,0 +36548,Wioska+barbarzy%C5%84ska,652,608,1900364,3037,0 +36549,Wioska+krzysiu1969,314,488,2491724,1750,0 +36550,Taran+031,637,372,699098531,6303,0 +36552,036%23+Cristina,487,690,3933666,4098,0 +36554,%23002%23,634,626,692803,9761,8 +36555,1007,620,361,699150527,9885,0 +36556,Sony+911,621,639,1415009,7994,0 +36558,Akwen,319,550,699265922,2241,0 +36559,z+A01+Toru%C5%84,348,379,3909522,9363,0 +36560,WJE%C5%BBD%C5%BBAM+I+ROZJE%C5%BBD%C5%BBAM,614,356,698420691,7767,0 +36562,0162,406,343,699431255,5331,0 +36563,KR%C3%93L+PAPI+WIELKI,644,618,698191218,9499,0 +36564,--07--,346,607,8877156,8724,0 +36565,Wioska+Bochun10,317,484,7449254,10311,9 +36566,%7C052%7C+Zadar,494,687,699393742,9738,0 +36568,Wioska+AsconX,335,585,3990066,5920,0 +36569,New+World,428,670,698152377,10295,0 +36570,XXX,544,678,7098955,8066,0 +36571,psycha+sitting,405,665,699736927,8868,0 +36572,Osada+koczownik%C3%B3w,622,644,1415009,10233,2 +36573,%5B051%5D+Wioska+barbarzy%C5%84ska,675,424,849095068,7457,0 +36574,New+World,446,684,698152377,10452,0 +36575,Zeta+Reticuli+O,418,330,699323302,10728,0 +36578,A045,609,647,9023703,8323,0 +36580,Defolij+2,553,325,849098136,2803,0 +36581,Wioska+Maxwell+3,643,378,526350,2364,0 +36582,C0269,317,507,8841266,5461,0 +36583,065,533,681,2293376,7188,0 +36584,-+180+-+SS,551,683,849018239,7914,0 +36585,AG08,593,663,699876345,9549,0 +36586,Taran,345,604,6180190,10297,0 +36587,%23073%23,633,634,692803,9761,0 +36588,194...Segador,456,317,6920960,10787,0 +36589,Wioska+barbarzy%C5%84ska,326,421,699856962,7690,0 +36590,%2A149%2A,347,395,699273451,7903,0 +36591,05.wiocha,332,593,7183372,5949,0 +36592,Wioska+barbarzy%C5%84ska,410,661,699736927,3926,0 +36593,psycha+sitting,420,674,699736927,10311,0 +36594,%2A%2A09%2A%2A,674,428,849098782,11913,0 +36595,0056,422,405,848913037,9993,0 +36596,F03,686,525,848995478,3608,0 +36597,Didus+P,672,575,849070946,8497,0 +36598,Wioska+barbarzy%C5%84ska,517,688,745946,4350,0 +36599,C0110,316,529,8841266,10362,0 +36600,psycha+sitting,399,659,699736927,10311,6 +36601,kamilkaze135+%2301.3,658,392,699705601,8709,0 +36602,Szlachcic,690,515,8096537,7576,0 +36603,Didi,676,587,849070946,10005,0 +36604,.17.+Izmir+b,363,630,699342219,8925,0 +36605,psycha+sitting,406,660,699736927,4933,0 +36606,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,379,642,1434753,10068,6 +36607,Wioska+barbarzy%C5%84ska,682,485,699598425,10728,0 +36609,%23050%23,637,633,692803,9761,0 +36610,Kazumasa+Sakai,691,514,8096537,9167,0 +36611,X+%7C+Forest+Cyaaaanku,311,465,699213622,9990,0 +36612,Wyspa+028,632,373,699756210,8115,0 +36613,1.1,639,394,698241117,10148,0 +36614,Out+of+Touch,322,433,698962117,2690,0 +36615,psycha+sitting,406,665,699736927,9903,0 +36616,Wioska+120,683,528,848971079,9835,0 +36617,%7E+KiZiA+MiZiA+%7E,315,447,698540331,2923,0 +36618,Jehu_Kingdom_65,666,409,8785314,4055,0 +36619,-006-+Chwa%C5%82a+Imperium,616,349,8675636,8901,0 +36620,BRZEG+JORDANU+%7C+004,692,527,9228039,9544,0 +36621,I059,677,454,699722599,9972,0 +36622,Spogl%C4%85dam+w+przysz%C5%82o%C5%9B%C4%87,660,396,8582487,10544,0 +36623,Dream+on,308,500,698962117,9499,0 +36624,Selonari.,460,557,698704189,9711,0 +36625,OFF,694,527,1563417,10311,0 +36626,%5B010%5D,477,313,849099160,9906,0 +36627,Wioska+barbarzy%C5%84ska,580,335,699710633,4151,0 +36628,2.Tazones,567,675,698215322,10068,0 +36629,X+%7C+Forest+Cyaaaanku,319,471,1536625,9976,0 +36630,046,449,685,849099876,10495,0 +36631,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,642,1434753,9473,0 +36632,Ob+Konfederacja,428,322,848915730,10178,4 +36634,Wioska+barbarzy%C5%84ska,530,314,1990750,10252,0 +36635,tutaj,458,683,698585370,9081,0 +36636,Wioska+barbarzy%C5%84ska,471,687,698152377,7135,0 +36637,_PUSTA,659,591,698768565,10064,0 +36638,psycha+sitting,421,672,699736927,10311,0 +36639,Szlachcic,384,348,3484132,9177,0 +36640,Kiedy%C5%9B+Wielki+Wojownik,597,344,8632462,4884,0 +36641,18.+Los+Santos,557,326,699072129,9816,0 +36642,North+Barba+054,413,331,699796330,6420,0 +36643,%7E038.,497,616,7139820,10495,0 +36644,SOKzGUMIjag%C3%B3d,642,378,849059491,10311,0 +36645,034+invidia,527,687,849093426,10237,0 +36646,A050,617,651,9023703,7597,0 +36647,Aakirkeby,328,575,849098387,7010,6 +36648,Wioska+donkretos,690,516,8096537,9220,0 +36649,Wioska+barbarzy%C5%84ska,366,370,849027025,4974,0 +36650,Wrzoski+13+Ulica,681,555,848932879,6767,0 +36651,-+190+-+SS,534,683,849018239,9157,0 +36652,the+Amityville+001,660,602,758104,7001,0 +36653,0014,682,461,699574408,10202,0 +36654,3.Pochinki,413,333,849098648,8580,0 +36655,A059,607,652,9023703,10220,0 +36656,Wioska+barbarzy%C5%84ska,518,688,745946,6929,0 +36657,xxx,313,540,698388578,9782,0 +36658,Wioska+barbarzy%C5%84ska,496,684,699781762,9927,0 +36659,X+%7C+Forest+Cyaaaanku,313,466,699213622,10000,0 +36660,062,685,529,2135129,7737,0 +36662,Wioska+barbarzy%C5%84ska,558,323,570100,2133,0 +36663,Wyspa_02,508,688,2585846,9638,0 +36664,%23020.+Resident+Slepper,455,678,848896948,6832,0 +36665,071+barbarzy%C5%84ska,665,414,9238175,5363,0 +36666,Muchomor+%2A027%2A,522,685,606407,9180,0 +36667,Wioska+barbarzy%C5%84ska,522,315,698350371,7539,0 +36669,Wioska+barbarzy%C5%84ska,557,324,570100,2667,0 +36670,-Sioux+city,649,387,8096537,6435,0 +36671,05.+Alan,682,483,699804790,9362,0 +36673,%2A153%2A,342,399,699273451,8379,0 +36674,PUSTA,673,572,3739202,4809,0 +36675,Szlachcic,376,358,698160606,10317,0 +36676,%23014+-+Wioska,495,526,848967710,9205,0 +36677,%23063%23,639,630,692803,9761,0 +36678,......,518,687,745946,7523,0 +36679,Obora+Augiasza,583,671,699567608,8054,6 +36680,Wioska+barbarzy%C5%84ska,602,342,699098531,3534,0 +36681,030Wioska+barbarzy%C5%84ska,679,445,849098769,6373,0 +36682,0419,567,676,698659980,10019,0 +36683,Piek%C5%82o+to+inni,609,345,848956765,10160,0 +36684,004,309,507,698356304,4976,0 +36685,054.Stradi,447,323,698365960,10495,0 +36686,Wioska+barbarzy%C5%84ska,685,544,6929240,4054,0 +36687,065...+Wioska+RandomHero,438,328,6920960,10484,0 +36688,--08--,343,606,8877156,10221,0 +36689,0044,572,322,699485250,4775,0 +36690,Wenecja,687,486,2392791,6273,0 +36692,%23008.+Crew,450,683,848896948,8818,0 +36693,%2136+74+Zvoristea,644,377,698361257,10224,0 +36694,C0017,312,518,8841266,10362,0 +36695,164...Kalichore,455,354,6920960,9932,0 +36696,0400,562,680,698659980,8943,0 +36697,%230129+korniczeks,479,317,1238300,10178,0 +36698,Winterhome.071,490,308,848918380,10178,0 +36699,A5.,314,547,849095482,3993,0 +36700,D04,676,559,848995478,11417,0 +36702,K35+-+%5B023%5D+Before+Land,580,328,699088769,9783,0 +36703,001+szkolna+17,528,316,849099054,10083,0 +36704,%5B016%5D+Cienka+br%C4%85zowa+linia,674,437,849095068,9312,0 +36705,I084,684,450,699722599,8352,0 +36706,Wioska+4,331,427,699821755,5945,0 +36707,013+Stategiczna+wioska,490,634,699336777,9825,0 +36708,K35+-+%5B004%5D+Before+Land,577,326,699088769,9847,0 +36709,Nirvos,682,473,699574408,9515,0 +36710,%2A3604%2A+Bell,663,399,7973893,10287,0 +36711,W%C5%82adcy+P%C3%B3%C5%82nocy+06,690,496,699379895,7231,0 +36712,SSJ+016,487,638,6180190,9064,0 +36713,219,424,324,7271812,3022,0 +36714,Out+of+Touch,325,431,698962117,8752,0 +36715,malo+defa,478,637,6948793,9142,0 +36716,Krapkowice,681,546,848932879,8805,0 +36717,%23098%23,636,633,692803,8681,0 +36718,Wioska+barbarzy%C5%84ska,669,420,8675636,8860,0 +36720,AG20,593,668,699876345,3489,0 +36721,008%7C%7C+Scorpio,484,643,849035525,10019,0 +36722,love,475,311,849099965,3962,0 +36723,Hard3,364,624,699805839,2948,0 +36724,039+invidia,523,688,849093426,9507,0 +36725,%7E%7E061%7E%7E,624,640,7829201,8448,0 +36726,2.Barcelona,573,674,698215322,9978,0 +36727,Ave+Why%21,454,684,698585370,8578,0 +36729,%7E068.,528,688,7139820,7504,0 +36730,Dream+on,310,493,698962117,9505,0 +36731,-+149+-+SS,540,688,849018239,8328,0 +36732,%C5%BBelazny+deff,359,626,699805839,8008,0 +36733,Szulernia,369,370,7249451,8685,0 +36735,z+001031,363,367,3909522,8837,0 +36736,006+Desant,481,689,699745265,9827,0 +36737,A019,608,655,9023703,10237,0 +36738,0000aaaa,480,636,6948793,9976,0 +36739,Ave+Why%21,481,682,699121671,9809,0 +36740,KONFA+TO+MARKA%2C+NARKA,319,461,698152377,10291,7 +36741,North+Barba+053,411,332,699796330,6069,0 +36742,042+Mucharadza,664,417,9238175,10281,0 +36743,Taran+034,639,369,2600387,5896,0 +36744,AG02,591,664,699876345,9747,0 +36745,A2.,315,545,849095482,4726,0 +36746,C20,685,540,848995478,3736,0 +36747,Suppi,329,420,699856962,9551,0 +36748,Borubar+1,682,471,699413581,3332,0 +36749,KR%C3%93L+PAPI+WIELKI,639,629,698191218,10215,0 +36750,Jednak+wol%C4%99+gofry,483,643,699725436,9555,0 +36751,z+001025,357,374,3909522,9313,0 +36752,koczo,591,332,7340529,10654,9 +36754,000+Plutosea,319,558,9280477,7518,0 +36755,044.,486,625,699494488,10216,0 +36756,Marysia,622,353,698420691,7473,0 +36757,%2AINTERTWINED%2A,509,685,698704189,7422,0 +36758,028.+Wioska+barbarzy%C5%84ska,689,469,7494497,9680,0 +36759,Jednak+wol%C4%99+gofry,482,638,699725436,10311,0 +36760,MojeSzczytToTw%C3%B3jDno,517,317,828637,10495,0 +36761,Winterhome.048,496,312,848918380,10178,8 +36762,%2A5611%2Aa+Brzeg+Ameryki,669,580,7973893,10287,0 +36763,007+RIP+magnats,484,686,699745265,10221,1 +36764,A051,616,652,9023703,6831,0 +36765,Berun,417,327,849072873,6597,0 +36766,%2A033%2A,346,395,699273451,10211,0 +36767,A009,475,640,699383279,9806,0 +36768,A021,607,659,9023703,10237,0 +36769,%2A097%2A,360,370,699273451,10211,0 +36770,Praga1,369,359,849099434,9689,0 +36771,Hiszpan3,677,559,7038651,11530,2 +36772,064,679,543,849095227,6237,0 +36773,Groch%C3%B3w1,365,363,849099434,5940,0 +36774,psycha+sitting,406,666,699736927,10135,0 +36775,Out+of+Touch,322,432,698962117,5415,4 +36776,CSA,527,311,7651093,2207,0 +36777,B.14+duchy+serca+puszczy,552,320,849026145,3066,0 +36779,031.+Devil+on+my+shoulder,455,681,698585370,6103,0 +36780,Wioska+barbarzy%C5%84ska,321,564,849099258,3834,0 +36781,074-+Mroczna+Osada,599,336,849035905,6544,0 +36782,START+03+22+19,579,672,698723158,4311,0 +36783,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,438,680,8980651,9353,9 +36784,Suppi,324,421,699856962,9747,0 +36785,Szlachcic,388,345,3484132,10476,0 +36786,Wyspa,384,653,698769107,2548,0 +36787,003.+Wojenna+%C5%9Acie%C5%BCka,561,320,699072129,10237,0 +36788,020%23+Ariana,486,690,3933666,10114,0 +36789,%7C064%7C+Hejhej,491,689,699393742,7979,0 +36790,LD0040+Lucid+Dream,638,627,8096537,9828,0 +36791,Sliz,321,550,699265922,5352,0 +36792,C+018,690,527,8078914,10495,0 +36793,Wioska+5,642,630,1647052,4357,0 +36795,Topornik+2,647,378,7340529,11130,0 +36796,%C5%BBUBR+.%3A%3A.Adaczu%2F05,624,647,33900,3327,0 +36797,011,312,506,7097727,4938,0 +36798,Koszary,577,668,698723158,6383,0 +36800,Osada+koczownik%C3%B3w,602,338,699548295,5402,1 +36801,13+Ciudad+Real,382,650,698837993,1560,0 +36802,Sullivanum+%5B5%5D,341,591,1606425,7677,0 +36803,Wioska+barbarzy%C5%84ska,403,339,699406776,2406,0 +36804,Wioska+barbarzy%C5%84ska,579,675,698215322,7109,0 +36805,0059,644,613,698416970,9483,0 +36806,cos+cos,433,676,8966820,10362,0 +36807,002+Ugernum,559,682,849099558,2940,0 +36808,200,425,331,7271812,10495,0 +36809,J%23003,573,331,2065730,9797,2 +36811,Winterhome.059,488,308,848918380,10178,0 +36812,Wioska+barbarzy%C5%84ska,369,366,849027025,6161,0 +36813,Muchomor+%2A009%2A,517,683,606407,10294,0 +36814,J%23009,571,329,2065730,9797,0 +36815,BAC%C3%93WKA+%7C012%7C,661,406,7394371,12154,6 +36816,Suppi,329,418,699856962,9549,0 +36817,0002+Cytadela,317,442,393668,9668,0 +36818,028,524,316,1990750,10068,0 +36819,Zaczynamy,618,364,6625437,9614,0 +36820,Paris,358,621,699864013,7174,0 +36822,211,422,332,7271812,3876,0 +36823,psycha+sitting,425,669,699736927,9499,0 +36824,Wie%C5%9B+nieopodal,551,324,849098136,7843,0 +36826,Wioska+barbarzy%C5%84ska,563,320,699658023,4108,0 +36827,psycha+sitting,414,666,699736927,10311,0 +36828,Wioska+barbarzy%C5%84ska,579,332,0,3222,0 +36829,Ob+Konfederacja,433,328,848915730,6620,0 +36830,psycha+sitting,410,670,699736927,10067,0 +36831,Babolewo+3.0,592,339,849098791,5561,0 +36832,%24LAClippers,683,516,699795378,6318,0 +36833,Wioska+barbarzy%C5%84ska,484,364,699658023,8067,0 +36834,006+RubinGraffitiKrk,310,507,926823,10495,0 +36836,AGA1,684,503,699598425,10636,0 +36837,B1.,313,548,849095482,3918,0 +36838,.28.+Kannas+e,353,624,272173,6195,0 +36839,Wioska+barbarzy%C5%84ska,526,314,698350371,7285,0 +36840,A026,602,661,9023703,10237,0 +36841,C0111,310,530,8841266,10495,0 +36842,Wsiora+MCX,537,312,849044705,10636,0 +36843,TWIERDZA+.%3A019%3A.,679,571,7154207,10225,0 +36844,%7C068%7C+BlackBird+3,495,691,699393742,9962,0 +36845,SOKzGUMIjag%C3%B3d,648,380,849059491,10016,0 +36846,072-+Mroczna+Osada,598,336,849035905,7411,0 +36847,Pastwiska,574,671,698723158,5616,0 +36849,040.+Wioska+barbarzy%C5%84ska,686,473,7494497,10370,0 +36850,112+And+another+one,332,576,699382126,9741,0 +36851,006,532,310,849099054,4300,0 +36852,%7E%7E067%7E%7E,629,642,7829201,6094,0 +36853,KONFA+TO+MARKA%2C+NARKA,313,458,698152377,10292,0 +36854,A046,610,647,9023703,7713,0 +36855,005,309,508,698356304,4634,0 +36856,Jaaa,668,494,698635863,9749,0 +36857,Out+of+Touch,321,439,698962117,6644,0 +36858,Wioska+Zorro+009,667,595,849080702,11130,0 +36859,004+Ilia+Feon,664,599,8337151,10083,0 +36860,059,333,587,7183372,9934,0 +36862,%3D%7C35%7C%3D,643,380,9101574,8842,0 +36863,.01.Osgiliath+e,352,622,272173,8906,0 +36864,0278,549,678,698659980,7850,0 +36866,New+World,443,675,698152377,10291,0 +36867,Wioska+Bochun10,331,483,7449254,5781,0 +36868,Wioska+barbarzy%C5%84ska+2,325,581,3475079,4572,0 +36869,044,465,681,699834004,9688,0 +36870,%5B004%5D,470,312,849099160,11417,0 +36871,%28002%29Azimir,329,570,849098695,10375,2 +36872,Metropolia+20RivaL00,584,669,699567608,9754,0 +36873,Kamieniec+Podolski,570,326,849108784,3637,0 +36874,z+Wioska+barbarzy%C5%84ska+12,356,380,3909522,7743,0 +36875,SOKzGUMIjag%C3%B3d,599,340,849059491,7645,0 +36876,Muchomor+%2A003%2A,519,689,606407,10294,0 +36877,Orze%C5%82+12,690,493,699413581,8161,0 +36878,C08,687,536,848995478,5561,0 +36879,UltraInstynkt%2B,605,341,699710633,9608,0 +36880,1010,620,357,699150527,7506,0 +36881,New+World,440,675,698152377,10295,0 +36882,%3D%7C01%7C%3D,643,385,9101574,10495,0 +36883,Szlachcic,397,347,698160606,10543,0 +36884,034,686,466,7588382,5596,0 +36885,_PUSTA,658,595,698768565,10452,0 +36886,030,544,680,2293376,8939,0 +36887,112.+Wyspy+Barierowe,644,621,8337151,7590,0 +36888,%2A006%2A,317,532,8630972,10559,0 +36889,%28012%29Alethkar,320,562,849098695,10184,0 +36890,Wyspa_10,505,689,2585846,9638,0 +36891,Taran,341,604,6180190,10159,3 +36892,Tu+jest+przysz%C5%82o%C5%9B%C4%87,655,394,699491076,6746,0 +36893,I069,687,460,699722599,9402,0 +36894,KONFA+TO+MARKA%2C+NARKA,317,459,698152377,10290,0 +36895,KR%C3%93L+PAPI+WIELKI,651,619,698191218,9970,0 +36896,Wioska+barbarzy%C5%84ska,636,365,7555180,4297,0 +36897,061.+Ninora,664,594,8337151,10362,0 +36898,005+chata+Gumowego+Adasia,531,310,849099054,4275,0 +36899,Wioska+barbarzy%C5%84ska,601,337,1990750,4707,0 +36900,%2A200%2A,363,375,699273451,6036,0 +36901,011+Wioska,626,456,699671454,6675,0 +36902,Dream+on,309,502,698962117,9499,0 +36904,.achim.,490,313,6936607,10659,0 +36905,C0174,318,538,8841266,10362,0 +36906,Po%C5%82udnie.014,551,680,873575,10300,0 +36907,stickman+1111,598,665,9023703,9895,0 +36908,%2A023%2A,351,385,699273451,10211,0 +36909,By%C5%82e%C5%9B+w+porz%C4%85dku+002,373,644,699269923,10145,0 +36910,Lord+Lord+Franek+.%23094,519,310,698420691,9976,0 +36911,%2A020%2A,347,387,699273451,10211,0 +36912,Parole,337,408,699595556,5392,0 +36914,KONFA+TO+MARKA%2C+NARKA,318,452,698152377,10292,0 +36915,Osada+koczownik%C3%B3w+x,651,606,1900364,9744,7 +36916,Ob+Konfederacja,434,325,848915730,8174,0 +36917,Highlander,680,551,848932879,6106,0 +36918,BBB,574,426,1006847,9228,0 +36919,fff,480,311,698239813,9285,0 +36921,Taran+037,641,376,699098531,10971,0 +36922,0005+Krasnodar,474,688,699656989,9914,0 +36923,D06,677,553,848995478,10997,2 +36924,%2A186%2A,343,405,699273451,10211,0 +36925,K%C4%99ty,540,314,7139853,8547,0 +36926,z+001032,355,374,3909522,7707,0 +36927,Wioska+barbarzy%C5%84ska,445,683,848896948,2244,0 +36929,C05,686,535,848995478,11321,0 +36930,krytl21,511,316,1990750,6342,0 +36931,D001,610,656,9023703,9902,0 +36932,Wioska+V,675,581,849099955,2770,0 +36933,EO+EO,312,516,699697558,10495,0 +36934,cz+110+6,371,385,3909522,6838,0 +36935,C0045,312,523,8841266,10362,0 +36936,-010-,326,570,849012521,10016,3 +36937,Szlachcic,382,355,698160606,10300,0 +36938,Out+of+Touch,322,438,698962117,4708,0 +36939,013,687,456,699150527,9835,0 +36940,Wioska+barbarzy%C5%84ska,579,333,0,3624,0 +36941,001.+Wehrmacht,339,399,698807570,10887,0 +36942,Wioska+barbarzy%C5%84ska,329,417,699856962,7081,0 +36943,Winterhome.027,502,309,848918380,10178,0 +36944,008,309,480,2418364,5853,0 +36945,FP003,490,691,699605333,10393,0 +36947,Szlachcic,395,345,3484132,10155,0 +36948,Wioska+barbarzy%C5%84ska,334,415,2418002,3505,0 +36949,X+%7C+Forest+Cyaaaanku,319,465,699213622,10000,0 +36950,Wonderwall,324,556,698962117,4915,0 +36951,Wioska,608,340,699548295,5523,0 +36952,C003,595,661,9023703,7619,0 +36953,.06.+Lindon+b,364,629,699342219,10378,0 +36954,Muchomor+%2A002%2A,517,689,606407,9541,0 +36955,Wioska+barbarzy%C5%84ska,371,362,849027025,6653,0 +36956,D.034,393,651,849088243,9998,0 +36957,C0021,309,510,8841266,10362,0 +36958,Wioska+barbarzy%C5%84ska,682,464,699574408,10084,0 +36959,Wioska+barbarzy%C5%84ska,396,395,8419570,10168,0 +36960,C0153,317,534,8841266,10290,0 +36961,Dworek+Drzewiarza,650,610,8224678,10692,0 +36962,Wioska+barbarzy%C5%84ska,669,409,699738350,6745,0 +36964,X+%7C+Forest+Cyaaaanku,314,464,699213622,10000,0 +36965,Brat447,312,536,699262350,10495,0 +36966,087.+Lond,647,620,8337151,5510,0 +36967,Winterhome.003,510,311,848918380,10178,0 +36968,%2A%2AINTERTWINED%2A,510,687,698704189,9711,0 +36969,%7C047%7C+Eldorado,506,690,2585846,9833,0 +36970,New+World,431,680,698152377,5936,0 +36971,Wioska+barbarzy%C5%84ska,347,605,7183372,7700,0 +36972,psycha+sitting,410,666,699736927,9659,0 +36973,UltraInstynkt,607,346,699710633,10178,0 +36974,009.+Night+Raid%2A,430,673,699684062,10160,8 +36976,Hofek+28,592,332,699433558,2972,0 +36977,C0112,314,530,8841266,10362,0 +36978,Wioska+barbarzy%C5%84ska,562,678,7756002,9965,0 +36979,Wioska+003,666,410,849098769,10365,0 +36980,Winterhome.050,493,310,848918380,10178,0 +36981,KR%C3%93L+PAPI+WIELKI,647,613,698191218,10360,2 +36982,KR%C3%93L+PAPI+WIELKI,648,623,698191218,10085,0 +36983,Darma+dla+zawodnika,524,684,699494488,7251,0 +36984,Wioska+3,310,489,849075836,9407,0 +36985,EO+EO,311,521,699697558,10083,0 +36986,a+mo%C5%BCe+off+%3F+%3A%29,639,626,698768565,9355,0 +36987,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,655,699828442,9988,0 +36988,%3F%3F%3F,480,310,698489071,9562,0 +36989,0124,377,642,7085510,10216,5 +36990,TFU+WD,681,556,848915032,7192,0 +36992,008.+New+place+-+new+friends,601,339,699098531,8295,0 +36994,%23007.+King+of+the+Hill,451,680,848896948,9458,0 +36995,%5B047%5D+Wioska+barbarzy%C5%84ska,674,421,849095068,7884,0 +36996,OFF,687,521,1563417,8535,0 +36997,D.010,393,657,849088243,9139,0 +36998,Muchomor+%2A025%2A,522,689,606407,8650,0 +36999,049.,331,587,7183372,1924,0 +37000,%5B033%5D+Wioska+barbarzy%C5%84ska,673,420,849095068,9288,0 +37001,%2A105%2A,359,378,699273451,10211,4 +37002,KR%C3%93L+PAPI+WIELKI,568,578,698191218,9949,0 +37003,%5B010%5D+GunWO,676,438,849095068,10187,0 +37004,Wioska+5,314,487,849075836,8436,0 +37005,Kocpo%C5%82uch+5,327,573,848949597,2742,0 +37006,Wioska+barbarzy%C5%84ska,575,332,7560474,4036,0 +37007,kamilkaze135+%2303,656,389,699705601,8473,0 +37008,KONFA+TO+MARKA%2C+NARKA,312,458,698152377,10290,0 +37009,Wioska+barbarzy%C5%84ska,578,675,698215322,5969,0 +37010,001,347,604,7183372,10341,0 +37011,%23058%23,631,639,692803,9761,0 +37012,-+198+-+SS,539,682,849018239,7879,0 +37013,BAC%C3%93WKA+%7C041%7C,668,411,7394371,4244,0 +37014,I105,680,442,699722599,7015,0 +37016,0031+MzM,627,597,698416970,9258,0 +37017,%2136+74+Plopeni,643,370,698361257,7220,0 +37018,z+181-A002qqqqqqqqqqqqqqq,353,377,3909522,10108,9 +37019,Taran,342,608,6180190,10294,0 +37020,Zeta+Reticuli+O,415,328,699323302,10997,0 +37021,Wioska+barbarzy%C5%84ska,501,339,698739350,4094,0 +37022,004+Dom+Mexicano,527,315,849099054,10160,0 +37023,Wioska+barbarzy%C5%84ska,405,333,699406776,3939,0 +37024,0091,615,345,848913037,9993,0 +37025,041.Stradi,447,320,698365960,10495,0 +37026,Suppi,328,414,699856962,9549,1 +37027,AAA,546,312,1006847,8593,0 +37028,0041,570,322,699485250,6129,2 +37029,Postawie,631,598,8337151,6699,0 +37030,psycha+sitting,419,669,699736927,10311,0 +37031,Szlachcic,397,341,3484132,9925,0 +37032,Ob+Konfederacja,430,324,848915730,8296,0 +37033,Pd+03,362,631,272173,7828,0 +37034,Szale,458,680,8966820,9835,0 +37035,073+Nagoja,678,452,7092442,7609,6 +37036,psycha+sitting,406,664,699736927,10311,0 +37037,180...Segador+M,439,326,6920960,8053,0 +37038,Winterhome.064,511,312,848918380,10008,0 +37039,Dolina+Czarownic,651,391,7973893,6832,0 +37041,%2A5612%2Abb+Instytucja,667,581,7973893,10287,0 +37042,%C5%9Aniadowo,687,480,849100082,9306,0 +37043,086.+Rahgar,646,625,8337151,12154,0 +37044,EMERYTOWANY+KUZYN,430,642,848913998,9976,0 +37045,008+Desant,482,690,698620694,9186,0 +37046,%239+Dzikowo,630,591,8000875,4901,0 +37047,EO+EO,313,516,699697558,10252,0 +37048,A+093,371,640,6948793,9092,0 +37049,Eberland,652,607,1900364,9282,0 +37050,Komornicy+022,349,611,699336777,9825,0 +37051,psycha+sitting,408,664,699736927,10009,0 +37052,Wioska+barbarzy%C5%84ska,431,328,699191455,8486,0 +37053,Wioska+Vl,321,572,699671197,11319,0 +37054,Horyzont+zdarze%C5%84,515,541,7581876,10019,0 +37055,Wioska+barbarzy%C5%84ska,660,606,1900364,2978,0 +37056,B069,470,473,699299123,10495,0 +37057,_PUSTA%2B,682,544,699628084,10495,0 +37058,TWIERDZA+.%3A069%3A.,679,567,7154207,8984,0 +37059,003+Casterly+Rock,315,492,699823490,7568,0 +37060,Wioska+barbarzy%C5%84ska,654,388,7973893,8637,0 +37061,%5B055%5D+Wioska+barbarzy%C5%84ska,672,428,849095068,4273,0 +37062,Grvvyq+103k%24,683,533,699676005,10495,0 +37063,004.+Owczarnia,318,447,849098966,6436,0 +37064,2.Mostoles,579,676,698215322,11411,0 +37065,%5B023%5D+Wioska+Kreynoss,461,689,9094538,2381,0 +37066,Winterhome.011,509,310,848918380,10178,0 +37067,B%23018,677,430,2065730,9797,0 +37068,New+Land+10,343,389,849064752,3749,0 +37069,003.,566,326,849101311,4075,0 +37070,XDX,604,355,699098531,10971,0 +37071,Wioska+barbarzy%C5%84ska,316,463,699823490,3585,0 +37072,Makowiec,674,574,7973893,7326,0 +37073,%7E%7E078%7E%7E,610,648,7829201,7844,0 +37074,02.+SOSna,686,483,699804790,10237,0 +37077,049.+Wioska+barbarzy%C5%84ska,689,467,7494497,9717,0 +37078,075.Stradi,449,322,698365960,9296,0 +37079,SOKzGUMIjag%C3%B3d,601,342,849059491,7489,0 +37080,nowa+3,463,314,849104546,5517,0 +37082,Wioska+barbarzy%C5%84ska,337,594,7183372,10068,0 +37083,Lord+Arsey+KING,572,592,848956513,10285,0 +37084,I060,679,454,699722599,9625,0 +37085,A+058,359,636,698908184,8863,0 +37086,%2A5612%2Aaa+Bez+ko%C5%84ca,669,578,7973893,10287,0 +37087,Wioska+barbarzy%C5%84ska,595,339,0,9247,0 +37088,Wioska+barbarzy%C5%84ska,536,313,849044705,6471,0 +37089,Wioska+barbarzy%C5%84ska,335,583,849046232,9299,0 +37090,003,672,574,699493750,5312,0 +37091,.26.+Tithilon+d,362,624,272173,5285,0 +37092,Wioska+barbarzy%C5%84ska,657,607,1900364,5179,0 +37093,KONFA+TO+MARKA%2C+NARKA,315,459,698152377,10292,0 +37094,Monetki,474,426,699098531,10291,0 +37095,0003,425,323,2321390,4105,0 +37096,psycha+sitting,415,668,699736927,4785,0 +37097,Goirle,621,354,9103424,5561,0 +37098,015.+Do+%C5%9Bwi%C4%85t+si%C4%99+wyrobisz+%3F,355,438,698630507,4789,0 +37099,C0018,311,518,8841266,10362,0 +37101,Pot%C4%99%C5%BCny+Gaj,582,673,698723158,4363,0 +37102,Gryfios+022,684,556,698666810,11880,0 +37104,-+152+-+SS,542,684,849018239,9377,0 +37105,New+Land+11,342,400,849064752,3657,0 +37106,096+Tomek,684,508,2135129,3722,0 +37107,0.18+Wioska+honoru,463,683,699827112,9316,0 +37108,Ob+Konfederacja,429,323,848915730,9354,0 +37109,Pallad,681,438,8459255,10495,0 +37110,016,613,350,698290577,6912,0 +37111,Wioska+Mergio,400,338,698749311,1489,0 +37112,Out+of+Touch,324,430,698962117,9486,0 +37113,Winterhome.009,501,311,848918380,10178,2 +37114,069+%7C+PALESTINA,672,427,9228039,9003,0 +37115,TWIERDZA+.%3A088%3A.,680,567,7154207,7706,0 +37116,Ob+Konfederacja,432,325,848915730,8630,0 +37117,Somsiory,662,400,699491076,7535,0 +37118,Orze%C5%82+3,691,485,699413581,9976,0 +37119,AAA,542,314,1006847,9956,0 +37120,--09--,340,606,8877156,10223,0 +37121,-07-,563,683,7860453,5469,0 +37122,043.+Canes+Venatici,614,655,699703642,7966,0 +37123,Co+ja+robi%C4%99+tutaj,668,405,699785935,6569,0 +37124,Wioska+barbarzy%C5%84ska,313,476,6258092,8283,0 +37125,C0113,313,529,8841266,10362,0 +37126,014,686,449,699150527,9835,0 +37127,A027,602,660,9023703,10237,0 +37128,EO+EO,313,515,699697558,10083,0 +37129,Sony+911,622,642,1415009,10175,0 +37130,WB19,332,406,356642,5626,0 +37131,%23072%23,637,628,692803,9761,0 +37132,%3D%7C12%7C%3D,648,391,9101574,9566,0 +37133,Wioska+Boliston,672,415,699738350,8976,0 +37134,Wyspa,383,653,698769107,2581,0 +37135,Devano1,335,592,7183372,10728,0 +37136,Wioska+barbarzy%C5%84ska,372,362,849027025,6842,0 +37137,X+%7C+Forest+Cyaaaanku,316,465,699213622,10000,0 +37138,A+094,371,637,6948793,9900,0 +37139,.%3A011%3A.,359,628,272173,8424,6 +37140,A023,605,661,9023703,10908,0 +37141,Wioska+barbarzy%C5%84ska,669,416,8675636,9037,0 +37142,002.+Wehrmacht,340,400,698807570,10436,0 +37143,%3D%7C11%7C%3D,647,387,9101574,8245,0 +37145,266...EMERSON,462,311,6920960,6117,0 +37147,130,391,651,699269923,10207,0 +37148,-+164+-+SS,537,688,849018239,10000,0 +37149,%2A011%2A,353,387,699273451,10211,0 +37150,KONFA+TO+MARKA%2C+NARKA,314,458,698152377,10290,0 +37151,Dream+on,309,497,698962117,9479,1 +37152,Out+of+Touch,323,425,698962117,9742,0 +37153,C0104,320,522,8841266,10362,0 +37154,-07-,333,498,765188,8506,0 +37155,%2AINTERTWINED%2A,506,687,698704189,9711,0 +37156,Out+of+Touch,322,427,698962117,8240,0 +37157,073+komornicy,323,559,699510259,5194,0 +37159,230,413,330,7271812,2197,0 +37160,O0019,498,685,699781762,9970,0 +37161,UltraInstynkt%2B,586,328,699710633,10311,0 +37162,Szale,459,687,698585370,8066,0 +37163,W%C5%82adcy+P%C3%B3%C5%82nocy+08,689,524,699379895,6509,0 +37164,Wioska+barbarzy%C5%84ska,687,539,6510480,7357,0 +37166,--03--,342,602,8877156,10217,0 +37167,-+150+-+SS,541,687,849018239,9638,0 +37168,Wioska+barbarzy%C5%84ska,692,477,699429153,9825,0 +37169,KONFA+TO+MARKA%2C+NARKA,318,454,698152377,10295,0 +37170,-+182+-+SS,534,687,849018239,7764,0 +37171,%28010%29Kurth,326,563,849098695,7219,0 +37172,Vanaheim+V,595,336,699478692,1825,0 +37173,%24Sochan,686,505,699795378,9382,0 +37174,Szlachcic,398,341,3484132,9292,0 +37176,B%23016,683,449,2065730,9797,0 +37177,Ob+Konfederacja,432,323,848915730,9976,0 +37178,0.16+Jolo,464,687,699827112,9740,0 +37179,0004+Cytadela,318,441,393668,9902,0 +37180,Wioska+Bochun10,316,483,7449254,7530,0 +37181,%2AINTERTWINED%2A,503,686,698704189,9711,0 +37182,I063,685,463,699722599,10098,0 +37183,Kreskowo_2,594,661,699567608,9904,0 +37184,Wioska+Halny,453,682,698757487,2345,0 +37185,KONFA+TO+MARKA%2C+NARKA,320,455,698152377,10292,0 +37186,Wioska+barbarzy%C5%84ska,410,662,699736927,3550,0 +37188,Wioska+Jarl+P%C4%99kniny,661,400,8582487,6004,0 +37189,Village+A,667,403,1086351,2638,0 +37190,0089,611,344,848913037,6107,0 +37191,0430,564,678,698659980,10019,0 +37192,%28026%29Yezier,328,577,849098695,10146,0 +37193,.%3A088%3A.+%C5%81OBUZIK,553,359,848934935,5925,0 +37194,A033,600,656,9023703,8822,0 +37197,Wioska+barbarzy%C5%84ska,521,309,698350371,7297,0 +37198,Wioska+Abo+co,376,397,848886056,5839,0 +37200,064.Stradi,450,320,698365960,9858,0 +37202,C0114,314,528,8841266,10362,0 +37203,Wioska+Rychu0890,574,582,33900,10559,0 +37204,0.12+Night%21,467,689,699827112,9744,0 +37205,Wioska+barbarzy%C5%84ska,356,545,9253494,1920,0 +37206,%230308+deleted,478,312,1238300,2399,0 +37208,J%23005,572,330,2065730,9797,0 +37209,007.+%C5%82,326,582,698704189,3655,0 +37210,Didi,669,584,849070946,10476,4 +37211,Zatonie,353,617,699864013,5351,0 +37212,Wioska+barbarzy%C5%84ska,687,525,699379895,5548,0 +37213,Wioska+2,578,327,7563943,4028,0 +37214,Gattacka,679,435,699298370,9785,0 +37215,Out+of+Touch,320,431,698962117,3117,0 +37216,Wyspa_04,507,690,2585846,9638,0 +37217,%2A175%2A,336,410,699273451,10211,0 +37218,B11+jaki+zn%C3%B3w+honor%3F,460,685,698652014,9634,0 +37219,%2A069%2A,350,383,699273451,10211,0 +37220,2.Ibiza,573,675,698215322,6652,0 +37221,Wioska+076,667,597,848971079,9761,0 +37222,AAA,526,315,1006847,5858,0 +37223,%7E053.,516,618,7139820,10495,0 +37224,%230216+Segadorr+dar,457,312,1238300,10178,0 +37226,C0028,310,522,8841266,10362,0 +37228,krecik+03+e,347,618,272173,2008,0 +37229,%230210+Segadorr+dar,455,312,1238300,10178,0 +37230,Jedlanka+Nowa,577,671,698723158,5876,0 +37231,007.,639,375,699098531,10439,0 +37232,Komornicy+018,348,620,699336777,3098,0 +37233,%2A113%2A,358,370,699273451,10211,0 +37234,06+Puerto+Lapice,381,652,699269923,6888,0 +37235,xxx,648,617,692803,6967,0 +37236,%C5%BBUBR+.%3A%3A.Adaczu%2F06,618,652,33900,3695,0 +37237,%5B001%5D,472,312,849099160,11581,0 +37238,Szymon9408,397,656,699269923,8114,0 +37239,McGregor,606,343,699548295,6470,0 +37240,069+donkretos1,690,514,2135129,9304,0 +37241,C115,368,630,699383279,8055,0 +37242,036+invidia,526,691,849093426,10237,0 +37243,Didek,670,572,849070946,6657,0 +37244,Lord+Nc3dyh+3,323,441,699509284,2417,0 +37245,Wyspa+026,637,373,699756210,6050,0 +37246,SOKzGUMIjag%C3%B3d,597,342,849059491,9791,0 +37247,Wioska+barbarzy%C5%84ska,528,309,849044705,6689,0 +37248,-+237+-+RR,588,617,849018239,10000,0 +37249,Wioska+1,575,327,7563943,2605,0 +37250,-+201+-+SS,538,681,849018239,8285,0 +37251,A+086,373,636,699269923,8577,0 +37252,%230206+Segadorr+dar,460,315,1238300,5684,0 +37253,Wioska+barbarzy%C5%84ska,325,426,699856962,7579,0 +37254,002+Pi%C5%82sudskiego+138,682,449,849098769,10845,0 +37255,031+RAW,589,451,698829590,9483,0 +37256,04.+Wioska+Raukodel,649,376,7340529,11130,0 +37257,Szlachcic,693,512,8096537,9233,0 +37258,%230208+Segadorr+dar,458,312,1238300,8066,0 +37259,Wioska+8,645,625,1647052,7339,0 +37260,Wioska+Bochun10,312,490,7449254,10311,0 +37262,Wioska+Zdobyta,591,334,849063793,3287,0 +37264,Neapol,686,489,2392791,12154,0 +37266,AAA,546,316,1006847,3249,0 +37267,J%23010,572,329,2065730,9797,0 +37268,Klaudek14,631,364,849092309,5741,0 +37269,0353,444,605,698659980,10160,0 +37270,Wioska+Bochun10,313,490,7449254,10311,0 +37271,0606,488,688,698659980,10019,0 +37273,%2AINTERTWINED%2A,502,685,698704189,9711,0 +37274,Twierdza+2,512,307,699208929,10003,0 +37275,Wioska+barbarzy%C5%84ska,621,641,1415009,8421,0 +37276,Wioska+barbarzy%C5%84ska,371,365,849027025,4982,0 +37277,Winterhome.024,501,308,848918380,10178,0 +37278,060.,323,579,698704189,3641,0 +37279,Pd+04,360,632,698908184,4599,0 +37281,056+BanaN,688,529,2135129,9191,0 +37282,Wioska,644,604,699797508,8119,0 +37283,2.Huelva,560,675,698215322,5791,0 +37284,Wioska+071,662,600,848971079,9902,0 +37285,Wioska+barbarzy%C5%84ska,341,389,698807570,10052,0 +37286,Zbrodniczy+Re%C5%BCim,654,606,1900364,11073,0 +37287,038,530,683,2293376,7087,0 +37288,079,465,313,2502956,10019,0 +37289,04+Smoczy+Dw%C3%B3r,461,310,699393759,11824,0 +37292,Klaudek16,633,366,849092309,5138,0 +37293,%5B009%5D+Kupa+zabawy%21,674,423,849095068,10237,2 +37294,wysypisko+%C5%9Bmieci,322,558,699364813,3556,0 +37295,C09,691,531,848995478,3924,0 +37296,D013,613,656,9023703,7346,0 +37297,060.+Nied%C5%BAwiedzi+Z%C4%85b,666,591,8337151,10160,0 +37298,%C5%BBUBR+.%3A%3A.Adaczu%2F07,617,648,33900,6440,0 +37300,nie+tym+razem+M%C5%82ody...,330,584,7183372,6103,0 +37301,043.+Wioska+barbarzy%C5%84ska,686,472,7494497,10088,0 +37302,%7B52%7D+%C5%81ugi,383,643,849096945,1643,0 +37303,03+Campo,382,652,699269923,9418,0 +37304,Wioska+barbarzy%C5%84ska,673,417,849095068,8836,0 +37305,C0115,313,530,8841266,10495,0 +37306,%5B0063%5D,443,315,8630972,10495,0 +37307,Wioska+barbarzy%C5%84ska,682,559,7038651,4904,0 +37308,XDX,618,349,699098531,8245,0 +37309,Wioska+barbarzy%C5%84ska,475,692,8966820,6529,0 +37310,Out+of+Touch,326,429,698962117,9744,0 +37311,K34+-+%5B094%5D+Before+Land,448,355,699088769,10259,0 +37312,Out+of+Touch,318,434,698962117,9527,0 +37313,B.05+duchy+serca+puszczy,555,318,849026145,4477,0 +37314,D.033,379,649,849088243,4281,0 +37315,Wioska+Flydy,683,448,849098769,7867,0 +37316,WSP,682,554,848932879,6422,0 +37317,%2A5611%2Af+Mordor,673,583,7973893,10287,0 +37318,a+mo%C5%BCe+off+%3F+%3A%29,669,405,698768565,5669,0 +37319,B06,683,540,848995478,3485,0 +37320,075-+Mroczna+Osada,597,336,849035905,8245,0 +37321,%5B035%5D,663,588,698305474,6679,0 +37322,Osada+koczownik%C3%B3w,517,685,699781762,10040,4 +37323,C10,686,537,848995478,3427,0 +37324,%2A101%2A,365,372,699273451,10211,0 +37325,Wioska+barbarzy%C5%84ska,585,329,0,9143,0 +37326,R+033,497,693,699195358,8635,0 +37327,%2A099%2A,365,366,699273451,10211,0 +37328,ADEN,609,350,698588535,10758,0 +37329,Wyspa_06,501,694,2585846,9638,0 +37330,Zanzibar,340,595,7183372,10144,0 +37331,%2A%2A29%2A%2A,678,428,849098782,8974,0 +37332,OFF,644,619,849014413,9604,2 +37333,M181_010,334,433,393668,9902,0 +37334,Ob+Konfederacja,426,322,848915730,9562,0 +37335,0.25,464,682,699827112,8858,0 +37336,Twierdza+014,315,550,7563185,2387,0 +37337,009,590,447,699722599,10474,0 +37338,Szulernia,370,367,7249451,9646,0 +37339,START+04,579,668,699567608,6142,0 +37340,Mordor5,314,540,698388578,8347,0 +37341,%24SanAntonioSpurs,686,511,699795378,10083,0 +37342,034%23+Sacannah,483,691,3933666,4698,0 +37343,Out+of+Touch,325,434,698962117,9669,0 +37344,Wioska+barbarzy%C5%84ska,690,525,699379895,4386,0 +37345,Kolno,688,472,849100082,7753,0 +37346,z+181-A005,355,377,3909522,8581,0 +37347,Komornicy+002,350,610,699336777,9761,0 +37348,123,471,689,9003698,10373,0 +37349,%3D001%3D+Winterfell,609,552,3781794,10410,0 +37350,Dream+on,310,500,698962117,9484,0 +37351,A+023,365,628,699342219,5503,0 +37352,z+Chocapic,364,367,3909522,8190,0 +37353,emoriar,687,453,699574408,7927,6 +37355,Ob+Konfederacja,425,324,848915730,9723,0 +37356,Memfis,411,662,849089459,8216,0 +37357,Cubryna,310,481,849013126,5199,0 +37358,%2A003%2A,314,538,8630972,10559,0 +37359,stickman7777,595,668,9023703,8629,0 +37360,X+%7C+Forest+Cyaaaanku,315,468,699213622,10000,0 +37361,Vanaheim+I,594,338,699478692,7190,0 +37362,074KK,586,334,849063849,5950,0 +37364,C0309,319,543,8841266,4689,0 +37365,--10--,338,606,8877156,10220,0 +37366,000+Plutosea,315,543,9280477,9976,0 +37367,K35+-+%5B005%5D+Before+Land,575,322,699088769,9783,0 +37368,AAA,548,317,1006847,9893,0 +37369,Napewno+to+nie+jest+off,587,335,848912265,9835,0 +37370,Wioska+barbarzy%C5%84ska,686,545,6929240,4200,0 +37371,Wioska+02,350,385,3372959,3667,0 +37372,Topornik+5,649,378,7340529,10795,0 +37373,%5B0065%5D,440,316,8630972,10495,0 +37374,A+027,365,631,699342219,5076,0 +37375,Pomidorowy+dzem,687,510,699598425,9965,0 +37376,035+-+Nowy+Pocz%C4%85tek...,375,645,699269923,9676,0 +37377,10.+Evil+Demon,498,650,849100262,9741,0 +37378,%2A%2A49%2A%2A,671,421,849098782,7586,0 +37379,%2A161%2A,340,401,699273451,10211,0 +37380,-+184+-+SS,533,686,849018239,8299,0 +37381,AAA,545,317,1006847,6412,0 +37382,013.,639,374,699098531,9208,0 +37383,C001,674,585,8138506,5806,0 +37384,%23010%23,627,635,692803,9761,0 +37385,Wioska+058,651,607,848971079,9761,0 +37386,Wioska+new,591,331,849063793,2731,0 +37387,%2A159%2A,336,409,699273451,10211,0 +37388,A029,600,659,9023703,9216,0 +37389,10.+Plac+Wilsona,486,692,849092769,7114,0 +37390,ADEN,610,349,698588535,6389,0 +37391,%5B040%5D+Wioska+barbarzy%C5%84ska,677,443,849095068,9288,0 +37392,06.wiocha,330,592,7183372,5722,0 +37393,%3D%7C49%7C%3D,651,389,9101574,4572,0 +37394,Middle+K35,598,338,699146580,8470,0 +37395,Dream+on,310,503,698962117,9485,0 +37396,034,335,589,7183372,10495,8 +37397,Wioska+barbarzy%C5%84ska,575,328,9291984,4356,0 +37398,-026-BBB,616,347,8675636,10019,0 +37399,C0046,312,524,8841266,10362,0 +37400,Wioska+078,665,595,848971079,9124,0 +37401,099+invidia,525,692,849093426,7225,0 +37402,C0005,307,519,8841266,10362,0 +37403,HORUS+...,572,675,7756002,10088,7 +37404,Wioska+barbarzy%C5%84ska,561,324,698350371,1703,0 +37405,a+mo%C5%BCe+off+%3F+%3A%29,639,622,698768565,9360,0 +37406,Wioska+barbarzy%C5%84ska,388,655,699269923,9469,0 +37407,I066,686,464,699722599,9959,0 +37408,D.011,393,659,849088243,5926,0 +37409,AGA5,687,498,699598425,8853,0 +37410,A+067,363,637,272173,9676,3 +37411,X+%7C+Forest+Cyaaaanku,314,462,699213622,9649,0 +37412,Wioska+barbarzy%C5%84ska,595,658,699567608,9704,0 +37413,SsSs,395,498,1536625,10141,0 +37414,178...Segadorr,442,321,6920960,10713,0 +37415,Wioska+barbarzy%C5%84ska,312,542,698388578,5298,0 +37416,Wioska+Bonaro,647,376,8760124,4359,0 +37417,Wioska+barbarzy%C5%84ska,339,597,7183372,9971,0 +37418,%5B0075%5D,442,315,8630972,10495,0 +37419,Didus+P,671,575,849070946,7739,0 +37421,New+World,433,677,698152377,10294,0 +37422,-06-,639,365,698361257,10495,5 +37423,Pd+07,361,633,272173,3868,0 +37424,Wioska+5,524,506,699385139,8677,0 +37425,Szale,469,690,8966820,9579,0 +37426,yyy%3F+Lucky+Men,604,339,8963720,6643,0 +37427,Pa%C5%84stfa+Pu%C5%82nocy,584,331,699433558,9742,0 +37428,psycha+sitting,422,674,699736927,4075,0 +37429,%28034%29Bavland,323,565,849098695,9836,0 +37430,Wioska+barbarzy%C5%84ska,324,565,699671197,2663,0 +37431,SOKzGUMIjag%C3%B3d,598,352,849059491,10393,0 +37432,Wioska+barbarzy%C5%84ska,692,501,699429153,9781,0 +37433,000+Plutosea,320,558,9280477,10117,0 +37434,Didus+P,672,576,849070946,6835,0 +37435,Ob+Konfederacja,437,326,848915730,8637,0 +37436,%2A005%2A,315,534,8630972,10559,0 +37437,EO+EO,307,521,699697558,10019,0 +37438,Wioska+barbarzy%C5%84ska,389,657,699269923,7262,0 +37439,007.+Wioska+%C5%81YsY52,326,584,698704189,9711,0 +37440,Wyspa_07,502,694,2585846,9638,0 +37441,Gattacka,681,433,699298370,9717,0 +37442,%2A154%2A,344,400,699273451,6614,0 +37443,Wioska+Lebera,333,597,7183372,10341,0 +37444,Out+of+Touch,322,426,698962117,9741,0 +37445,%230284+Don+Noobas,474,309,1238300,10148,0 +37446,AAA,323,448,8184383,2811,0 +37447,A08,475,668,698652014,9562,0 +37448,Szlachcic,318,533,698388578,7637,0 +37449,ADEN,519,384,698588535,9737,0 +37450,%C5%BBUBR+PSYCHIATRYK+018,621,648,33900,8402,0 +37451,X+%7C+Forest+Cyaaaanku,311,468,699213622,10000,0 +37453,Gattacka,679,432,699298370,9711,0 +37454,ula887,619,357,698420691,7889,0 +37455,%5B003%5D,474,313,849099160,11417,0 +37456,2.Murcja,576,677,698215322,4990,0 +37457,psycha+sitting,401,664,699736927,9170,0 +37458,Taran,340,609,6180190,9965,0 +37459,Wioska+barbarzy%C5%84ska,545,321,699244334,3400,0 +37460,2.Merida,581,678,698215322,11099,0 +37461,2.Toledo,575,673,698215322,4472,0 +37462,X+003,593,330,6384450,7988,0 +37463,New+World,432,674,698152377,10292,0 +37464,035+Barba+12,317,540,926823,2879,0 +37465,2.Bilbao,574,679,698215322,10060,0 +37466,040+Petrovya,663,600,8337151,10845,0 +37467,C0019,314,516,8841266,10362,0 +37468,Wioska+barbarzy%C5%84ska,684,553,698666810,11293,0 +37469,C0140,310,535,8841266,10362,3 +37470,HOOC,399,343,8123790,1277,0 +37471,047.+Reavstone,661,599,8337151,10160,0 +37472,Piek%C5%82o+to+inni,526,426,848956765,9753,0 +37473,%5B035%5D+Wioska+barbarzy%C5%84ska,674,422,849095068,9288,0 +37474,%5B0025%5D+XXX,446,315,8630972,10495,0 +37475,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,656,698807570,10252,0 +37476,Wioska+2,626,357,849056744,5648,0 +37478,xxx,687,550,699316421,7020,0 +37479,08.+Wioska+Raukodel,650,376,7340529,11130,0 +37481,-+137+-+SS,537,689,849018239,10000,0 +37482,Wioska+dekunka2,554,684,699167148,1853,0 +37483,202,423,331,7271812,8840,0 +37484,Wioska+barbarzy%C5%84ska,644,380,7973893,7618,0 +37485,004,468,685,9003698,10373,0 +37486,AAA,534,318,1006847,9033,0 +37487,045-+Mroczna+Osada,653,392,849035905,12154,0 +37488,New+World,438,679,698152377,10295,0 +37489,TARAN,550,683,7860453,9835,0 +37490,0013,364,363,699644448,2633,0 +37491,020+jako%C5%9B+to+b%C4%99dzie,515,691,849093426,10237,0 +37492,TWIERDZA+.%3A032%3A.,680,571,7154207,10370,0 +37493,050,359,518,698641566,8316,0 +37494,A022,607,661,9023703,10217,0 +37495,Wioska+barbarzy%C5%84ska,564,323,699658023,3640,0 +37496,Wioska+barbarzy%C5%84ska,527,310,849044705,7731,0 +37497,z+internacionale+018+ttttttttttt,352,382,3909522,9674,0 +37498,052.+Wioska+barbarzy%C5%84ska,691,467,7494497,9255,0 +37500,027.,331,584,7183372,2095,0 +37502,Winterhome.038,495,310,848918380,10178,0 +37503,....,649,603,1900364,9761,0 +37504,stickman222222,596,665,9023703,8590,0 +37505,B.16+duchy+serca+puszczy,561,317,849026145,3235,0 +37506,-+166+-+SS,546,685,849018239,9644,0 +37507,Wioska+barbarzy%C5%84ska,574,328,0,5836,0 +37508,-Akuku-,343,607,7183372,9381,0 +37509,KONFA+TO+MARKA%2C+NARKA,316,449,698152377,10290,9 +37511,Komornicy+003,348,606,699336777,8764,0 +37512,Szlachcic,379,353,698160606,10475,0 +37513,Out+of+Touch,323,428,698962117,9745,5 +37514,Jednak+wol%C4%99+gofry,495,640,699725436,9835,0 +37515,A1.,315,546,849095482,12154,0 +37516,%2A106%2A,359,370,699273451,10168,0 +37517,OFF,662,606,849014413,9588,0 +37518,--11--,345,606,8877156,6620,0 +37519,Out+of+Touch,323,432,698962117,8122,0 +37520,Wioska+barbarzy%C5%84ska001,335,584,849046232,9667,0 +37521,089,450,685,849099876,10495,0 +37522,Skunik,411,336,699854830,2917,0 +37523,Wioska+barbarzy%C5%84ska,519,307,698350371,7909,0 +37525,Winterhome.005,508,312,848918380,10178,0 +37526,-022-,332,584,7183372,9977,6 +37527,034+-+Nowy+Pocz%C4%85tek...,374,646,699269923,9492,0 +37528,%C5%BBelazny+deff,359,624,699805839,8017,0 +37530,z+00101Fajnie,357,371,3909522,10237,0 +37532,wysypisko+%C5%9Bmieci,320,552,699265922,5566,0 +37533,2.Valencia,571,674,698215322,9869,0 +37534,xxx,647,618,692803,9761,0 +37535,New+Land+12,342,390,849064752,3653,0 +37536,081.+Ziemia+Niczyja,648,620,8337151,8160,0 +37537,A+101,369,638,7085510,6395,0 +37538,004+Anor+Londo,518,315,1990750,10068,0 +37539,Ciepiel%C3%B3w,576,670,698723158,10595,0 +37540,Kielce,560,317,7139853,2824,0 +37541,W07,335,415,849096547,9539,0 +37542,Out+of+Touch,323,421,698962117,6165,0 +37543,Wioska+098,643,605,848971079,9761,0 +37544,-+154+-+SS,535,684,849018239,9957,0 +37545,Szlachcic,388,350,3484132,10495,0 +37546,New+Land+14,342,388,849064752,3597,0 +37547,Dark+hell,661,401,1086351,10282,0 +37548,New+World,440,684,698152377,10294,0 +37549,-+165+-+SS,546,683,849018239,9070,0 +37550,012,319,551,849098628,12154,0 +37551,%24ClevelandCavaliers,692,509,699795378,6353,0 +37552,psycha+sitting,407,664,699736927,10311,0 +37553,C.007,691,492,9188016,10002,0 +37554,%5B003%5D+Pruty,673,421,849095068,10495,0 +37555,Inowroc%C5%82aw,666,403,7973893,6349,0 +37556,047+Stumilowy+Las,665,412,9238175,9098,0 +37557,Topornik+6,652,382,7340529,10087,0 +37558,KONFA+TO+MARKA%2C+NARKA,316,452,698152377,10290,0 +37559,psycha+sitting,418,673,699736927,10178,0 +37560,Rubiez6,306,486,699265922,9814,0 +37561,Czysta+%3B-%29,383,349,698160606,8297,0 +37562,Taran,679,481,699598425,10728,0 +37563,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,646,699269923,4915,0 +37565,Wioska+barbarzy%C5%84ska,337,596,7183372,10184,0 +37566,Pd+08,360,634,698908184,9793,9 +37567,New+World,433,673,698152377,10291,0 +37568,014.+za+oknami+noc,686,474,7494497,9858,0 +37569,068.+Beirland,662,592,8337151,8509,0 +37570,Wioska+barbarzy%C5%84ska,367,364,849027025,6491,0 +37571,A028,601,660,9023703,10237,0 +37572,xxxxxxxxxxx,549,680,873575,10297,0 +37573,Out+of+Touch,323,424,698962117,9505,0 +37574,z+181-A006,356,377,3909522,8636,0 +37575,%5B0138%5D,453,313,8630972,9337,0 +37576,Sullivanum+%5B4%5D,337,588,1606425,10585,0 +37577,035,556,402,699761749,10495,0 +37578,C07,688,536,848995478,5502,0 +37579,%2A%2A45%2A%2A,674,424,849098782,7839,0 +37580,JAN+NEW3+Ost,689,454,879782,8433,0 +37581,037,333,586,7183372,8317,0 +37582,KR%C3%93L+PAPI+WIELKI,652,620,698191218,9975,0 +37583,C0038,313,512,8841266,10362,0 +37584,C0063,314,509,8841266,10362,0 +37585,%3D%7C47%7C%3D,654,389,9101574,10495,0 +37586,TWIERDZA+.%3A080%3A.,675,569,7154207,7991,0 +37587,C0055,310,527,8841266,10362,0 +37588,C0116,315,528,8841266,10342,0 +37589,017.,640,370,699098531,6059,0 +37592,X+%7C+Forest+Cyaaaanku,315,472,699213622,10000,0 +37593,Wyspa_14,501,691,2585846,9638,0 +37594,Ave+Why%21,453,685,698585370,8137,0 +37595,0043,568,321,699485250,4804,0 +37597,036,654,619,699099811,5290,0 +37598,Feed+me+more+017,492,382,699756210,10084,0 +37599,123,465,690,9003698,10373,0 +37600,0092,570,675,698659980,10252,1 +37601,SOKzGUMIjag%C3%B3d,648,377,849059491,11130,0 +37602,Wsch%C3%B3d+X2,685,526,698562644,10311,8 +37603,Wioska+barbarzy%C5%84ska,626,362,6625437,5195,0 +37604,z+011+EV6,360,378,3909522,7866,0 +37605,%230290+Marass,463,317,1238300,4551,0 +37606,Szlachcic,397,343,3484132,9723,0 +37607,05.+Suzi+Rivers,557,318,699072129,10311,0 +37608,Out+of+Touch,319,439,698962117,3364,0 +37609,Sielawa,329,548,699265922,9747,0 +37611,Wioska+barbarzy%C5%84ska,619,351,699098531,3154,0 +37613,067-+Mroczna+Osada,597,337,849035905,7777,0 +37614,Zeta+Reticuli+W,363,399,699323302,9014,0 +37615,%5B0066%5D,437,318,8630972,10495,0 +37616,TARAN,548,689,7860453,9439,0 +37617,EO+EO,312,517,699697558,10495,0 +37618,psycha+sitting,416,674,699736927,10311,0 +37619,Topornik+7,653,382,7340529,10164,0 +37620,%5B007%5D,473,314,849099160,10467,0 +37621,C.008,691,494,9188016,10000,0 +37622,Po%C5%82udnie.005,552,682,873575,10102,0 +37623,KONFA+TO+MARKA%2C+NARKA,317,461,698152377,10290,6 +37624,psycha+sitting,406,670,699736927,9644,0 +37625,Wioska+barbarzy%C5%84ska,346,616,9199885,5364,0 +37627,%2A185%2A,329,412,699273451,10211,0 +37628,Wioska+barbarzy%C5%84ska,564,319,699658023,4007,0 +37629,z.+Lecimy+tu+22,354,374,3909522,4523,0 +37630,2.Sevilla,570,680,698215322,7741,0 +37631,Szlachcic,393,348,3484132,10475,0 +37632,Lord+Lord+Franek+.%23192,618,357,698420691,7446,0 +37633,C+019,690,523,8078914,10920,7 +37634,Wioska+4,643,625,1647052,2833,0 +37635,Z+005,332,597,849084740,5636,0 +37636,Obok+s%C4%85siada+2,384,651,699269923,9630,0 +37637,Out+of+Touch,325,436,698962117,2454,0 +37638,%2A014%2A,353,386,699273451,10211,0 +37639,-003-+Chwa%C5%82a+Imperium,617,345,8675636,9448,0 +37640,C+009,689,514,8078914,6192,0 +37641,%28008%29Shinovar,330,575,849098695,10311,0 +37642,056.Stradi,453,315,698365960,10495,0 +37643,036,485,364,849010255,5918,0 +37644,Napewno+to+nie+jest+off,590,334,848912265,4509,0 +37645,New+Land+16,338,394,849064752,3741,0 +37646,C110,368,633,699383279,8886,0 +37647,C0187,310,534,8841266,8425,0 +37648,D003,611,657,9023703,10220,0 +37649,%23032%23,627,636,692803,9761,0 +37650,C18,684,542,848995478,3240,0 +37651,Szlachcic,389,342,3484132,10011,0 +37652,%7E%7E058%7E%7E,631,640,7829201,8817,0 +37654,Z002,516,310,699208929,6900,0 +37655,033,529,686,2293376,7159,0 +37656,Kingdom+8,689,502,699598425,10481,0 +37657,Muchomor,515,688,606407,10294,0 +37658,072+donkretos4,689,517,2135129,6317,0 +37659,AAA,551,315,1006847,9996,0 +37660,Rubiez2,310,485,699265922,9752,6 +37661,New+World,426,677,698152377,10291,0 +37662,%5B005%5D,470,310,849099160,11216,0 +37663,003,324,558,849012521,3539,0 +37664,AAA,539,318,1006847,7524,0 +37666,-+162+-+SS,555,683,849018239,10000,0 +37667,KR%C3%93L+PAPI+WIELKI,648,613,698191218,10215,0 +37668,psycha+sitting,419,674,699736927,10311,6 +37669,Taran,339,603,6180190,9956,0 +37670,009,342,387,848945529,3180,0 +37671,018+Osada+koczownik%C3%B3w,682,453,849098769,8400,7 +37672,Village,318,567,849099258,8715,0 +37673,Out+of+Touch,321,425,698962117,9745,0 +37674,036.+Lady+elo320,688,471,7494497,10311,0 +37675,Winterhome.053,498,308,848918380,10178,0 +37676,Niesko%C5%84czono%C5%9B%C4%87,665,407,699785935,12154,0 +37677,080,464,313,2502956,10019,6 +37678,Wyspa_24,514,692,2585846,9638,0 +37679,Komornicy+013,350,618,699336777,3685,0 +37680,%2A173%2A,332,414,699273451,10211,0 +37681,057g,316,555,698641566,9809,8 +37682,Wilamowice,541,313,7139853,3071,0 +37683,Winterhome.033,502,313,848918380,10178,0 +37684,0.22+Druga+gwiazdka,464,683,699827112,9792,0 +37685,z+00101+Czarna+magia,357,369,3909522,10311,0 +37686,_PUSTA,663,606,698768565,9356,0 +37687,Co+przyniesie+czas,666,407,699785935,7940,0 +37688,psycha+sitting,422,672,699736927,9187,0 +37689,Moldor+10,632,358,849049045,8833,0 +37690,Out+of+Touch,324,439,698962117,6583,0 +37691,Po%C5%82udnie.020,558,682,873575,10183,6 +37692,0047,570,324,699485250,4440,0 +37693,-+04+-+Miasto,469,311,848902744,6897,0 +37694,%7E%7E080%7E%7E,633,641,7829201,4456,0 +37695,BRZEG+JORDANU+%7C+005,686,518,9228039,5948,0 +37696,%2A184%2A,335,408,699273451,10211,0 +37697,Wyspa_09,504,694,2585846,9638,0 +37698,C0013,307,520,8841266,10362,0 +37699,Wyspa_15,501,692,2585846,9638,0 +37701,%3F%3F%3F,487,308,698489071,9637,0 +37702,Dream+on,306,487,698962117,9741,5 +37703,Out+of+Touch,321,431,698962117,9485,0 +37704,A060,606,653,9023703,10220,0 +37705,Po%C5%82udnie.007,556,681,873575,10300,0 +37707,Wioska+barbarzy%C5%84ska,395,656,699736927,5543,0 +37709,007,531,312,849099054,4278,0 +37710,TWIERDZA+.%3A025%3A.,679,565,7154207,10182,0 +37712,Po%C5%82udnie.004,556,680,873575,10025,0 +37713,054+Wioska+007,664,409,9238175,10323,8 +37715,Wioska+4,506,306,849099342,5018,0 +37717,%2A5618%2A+Pig,675,573,7973893,10287,0 +37718,%2A%2A48%2A%2A,677,421,849098782,6428,0 +37719,081,467,308,2502956,10845,0 +37720,Retkinia,687,481,849100246,5548,0 +37721,Szlachcic,394,343,3484132,10478,0 +37722,-001-+Chwa%C5%82a+Imperium,617,346,8675636,10019,0 +37723,Szlachcic,384,349,3484132,10495,0 +37724,114,623,417,7085502,9957,0 +37725,%230277+olcixx,460,310,1238300,9265,0 +37726,Baruchowo,664,403,7973893,6341,0 +37727,%5B002%5D,471,313,849099160,11581,0 +37728,Wioska+barbarzy%C5%84ska,343,615,9199885,6909,0 +37729,-025-+BBB,618,348,8675636,10160,0 +37730,Suppi,328,421,699856962,9553,0 +37731,wysypisko+%C5%9Bmieci,322,549,699364813,9866,0 +37732,AAA,549,321,1006847,11898,0 +37733,%2A009%2A,324,545,8630972,10495,0 +37735,%2A039%2A,665,396,698670524,9744,0 +37736,-+160+-+SS,556,684,849018239,10000,0 +37737,007,315,479,7127455,9774,2 +37738,%5B0079%5D,434,319,8630972,10495,0 +37739,B.06+duchy+serca+puszczy,555,316,849026145,2973,0 +37740,%5B037%5D,663,589,698305474,5907,0 +37741,0158,406,339,699431255,3124,0 +37742,%2A%2AINTERTWINED%2A,498,686,698704189,9711,0 +37743,1+Bargly,311,479,8048374,5278,0 +37744,kamilkaze135+%2310,656,386,699705601,8067,0 +37745,KR%C3%93L+PAPI+WIELKI,654,620,698191218,9435,0 +37746,I035+Ndst+siadaj%21,683,463,699722599,10495,0 +37747,Winterhome.040,496,311,848918380,10178,0 +37748,Wioska+barbarzy%C5%84ska,358,623,272173,3839,0 +37749,A+039,364,633,699342219,7388,0 +37751,C0199,310,533,8841266,9729,0 +37752,Wioska+barbarzy%C5%84ska,392,340,3484132,9847,0 +37753,AG07,593,667,699876345,8839,0 +37754,Wioska+barbarzy%C5%84ska,561,315,699072129,4093,0 +37755,046.+Wioska+barbarzy%C5%84ska,689,468,7494497,9887,0 +37756,Komornicy+001,352,621,699336777,9825,3 +37757,z+15+.,366,365,3909522,7584,0 +37758,kks,620,642,699567608,9936,0 +37759,Komornicy+024,349,612,699336777,9825,0 +37760,A04+Krak%C3%B3w,347,383,7462660,4723,0 +37761,NOT%3F,409,538,9236866,6727,0 +37762,002,310,477,848895676,4326,0 +37763,103.Stradi,457,318,698365960,9861,0 +37764,B.11+duchy+serca+puszczy,551,320,849026145,4450,0 +37765,000+Plutosea,321,557,9280477,6958,0 +37766,Komornicy+025,348,610,699336777,2069,0 +37767,bucksbarzy%C5%84skamiiiru,332,404,848955783,6630,0 +37768,X+%7C+Forest+Cyaaaanku,315,471,699213622,6143,0 +37769,New+World,428,677,698152377,10303,0 +37770,036,645,542,698999105,10311,0 +37771,%3F%3F%3F,466,309,698489071,6204,0 +37772,005+tylko+fejk,529,694,849093426,10237,0 +37773,New+World,437,683,698152377,10291,0 +37774,--12--,341,606,8877156,10221,0 +37775,-23-,636,363,698361257,3118,0 +37776,%2A067%2A,349,385,699273451,10211,0 +37777,Szlachcic,383,344,698160606,9949,0 +37779,21.+Porto,686,484,699804790,9362,0 +37780,Z+004,329,593,849084740,7709,0 +37782,Winterhome.008,509,312,848918380,10178,0 +37784,Psycho+to+Marka%2C+Narka+%21,320,573,849040142,9414,0 +37785,032.xxx,494,688,8612358,4113,0 +37786,-+151+-+SS,547,688,849018239,9020,0 +37787,029+Maecht,476,692,699834004,4980,0 +37788,012.+Pruszk%C3%B3w,316,448,849098966,5604,0 +37789,Taran,341,611,6180190,9965,0 +37790,.02.+Moria+e,353,618,272173,8292,5 +37792,Zeta+Reticuli+O,414,331,699323302,9614,0 +37793,New+Land+13,351,383,849064752,3490,0 +37794,.2.Madryt,571,680,698215322,9975,1 +37795,088.+ALFI,473,574,8539216,1242,0 +37796,-028-+BBB,617,348,849099276,4603,0 +37797,%2A032%2A,344,392,699273451,10211,0 +37798,Dream+on,307,486,698962117,9699,0 +37799,psycha+sitting,408,667,699736927,8597,0 +37800,Wioska+05,508,307,849099342,6260,0 +37802,KONFA+TO+MARKA%2C+NARKA,313,461,698152377,10290,0 +37803,Wioska+harry213,633,369,6625437,9923,0 +37804,Mordor6,312,539,848978903,6390,0 +37805,Wioska+3,643,626,1647052,6526,0 +37806,%7C069%7C+BlackBird+4,493,689,699393742,6935,0 +37807,002+Wioska+Best+Wiedzmin,607,513,6409472,4024,0 +37808,Darma+dla+zawodnika,526,685,699494488,7661,0 +37809,psycha+sitting,405,668,699736927,10178,0 +37810,%23002,664,402,849099391,2246,0 +37811,Wyspa_19,512,690,2585846,9638,0 +37812,Wioska+barbarzy%C5%84ska,563,323,699658023,3930,0 +37813,.03.Minas+Tirith+e,351,624,272173,8709,6 +37814,Bagdad,499,363,8847546,9835,0 +37815,Wioska+barbarzy%C5%84ska,367,363,849027025,6159,0 +37816,%4018%40,405,330,699483429,2843,0 +37817,007.+Wioska+barbarzy%C5%84ska,624,350,2873154,10237,0 +37818,Wyspa_44,509,695,2585846,5452,0 +37819,0012,687,467,699574408,8402,6 +37820,EO+EO,311,509,699697558,10160,0 +37821,New+World,430,682,698152377,9038,0 +37822,Wioska+zimny+11,601,338,699548295,10316,0 +37823,Wioska+barbarzy%C5%84ska,687,494,699598425,10728,0 +37824,Wow2,372,355,698160606,11699,0 +37825,073,689,545,699316421,9150,0 +37826,%C5%BBUBR+PSYCHIATRYK+008,618,651,33900,6472,0 +37827,Wioska+Ennoble,599,583,6929240,9141,0 +37828,Wiejska8,600,664,6528152,8058,0 +37829,Hard5,360,625,699805839,1690,0 +37830,%2A074%2A,354,386,699273451,10211,0 +37831,New+World,435,680,698152377,10294,0 +37832,X+006,595,335,6384450,7477,0 +37833,Lord+Nc3dyh+4,323,439,699509284,2613,0 +37834,207,423,329,7271812,3107,0 +37835,123,479,687,9003698,10373,0 +37836,%C5%BBUBR+PSYCHIATRYK+007,620,651,33900,7156,0 +37837,Jestem+Poza+Kontrol%C4%85,345,528,8004076,9401,0 +37838,Wyspa_12,503,692,2585846,9638,0 +37839,bucksbarzy%C5%84skamiiiru,337,403,848955783,2279,0 +37840,Mandarynian,342,533,849096458,9799,0 +37841,stickman+8888,595,670,849032059,8681,0 +37842,Szlachcic,387,352,3484132,10479,0 +37843,O63+Aldeigjuborg,685,524,699272880,5478,0 +37845,%5B060%5D+Wioska+barbarzy%C5%84ska,680,426,849095068,5700,0 +37846,Moldor+3,632,360,849049045,11078,0 +37847,%5B032%5D+Wioska+barbarzy%C5%84ska,677,423,849095068,9288,0 +37848,Osada+koczownik%C3%B3w,660,610,1900364,9360,6 +37849,The+Game+Has+Only+Just+Begun,352,522,9280477,9976,0 +37850,018.,639,370,699098531,5373,0 +37851,005+La+Jonquera,648,375,9029928,10728,0 +37852,Chekku+-+meito,341,527,9280477,9976,0 +37853,W%C5%82adcy+P%C3%B3%C5%82nocy+10,688,503,699379895,6366,0 +37854,Wioska+barbarzy%C5%84ska,611,340,1990750,4282,0 +37855,Wioska+barbarzy%C5%84ska,617,350,699098531,5624,0 +37856,%28033%29Babatharnam,323,567,849098695,8134,6 +37857,z+181-A007,354,381,3909522,6765,0 +37858,A+064,370,645,699269923,8702,0 +37859,%2A103%2A,362,372,699273451,10211,0 +37860,Wioska+barbarzy%C5%84ska,388,659,699269923,9478,0 +37861,KR%C3%93L+PAPI+WIELKI,649,619,698191218,9880,0 +37862,stickman6666,595,667,849032059,8477,0 +37863,z+00103+To+nie%C5%BAle+byczkuqqqqqqqq,356,369,3909522,10083,0 +37864,Wioska+barbarzy%C5%84ska,673,579,7973893,6119,0 +37865,C0001,308,514,8841266,10362,0 +37867,Semen,619,356,698420691,6490,0 +37868,Wioska+barbarzy%C5%84ska,694,490,699429153,9419,0 +37869,021Plecy,473,693,698620694,9716,0 +37870,%5B048%5D+Wioska+barbarzy%C5%84ska,674,419,849095068,8403,0 +37873,KONFA+TO+MARKA%2C+NARKA,313,449,698152377,10290,0 +37874,%2A205%2A,326,414,699273451,6297,0 +37875,Taran,339,604,6180190,9955,0 +37876,C0040,309,520,8841266,10362,0 +37877,014+za+5,510,694,849093426,10400,0 +37878,Wioska+barbarzy%C5%84ska,325,571,848949597,3181,0 +37880,017.+TARZAAANA%21%21%21,694,483,7494497,9902,0 +37881,043+invidia,524,689,849093426,9529,0 +37882,WB4,662,394,1086351,6932,0 +37883,I061+Z+archiwum+X,685,456,699722599,9380,0 +37884,Wioska+barbarzy%C5%84ska,357,624,272173,4192,0 +37885,KR%C3%93L+PAPI+WIELKI,639,635,698191218,9952,0 +37887,Wioska+087,656,605,848971079,7069,0 +37889,023+getto,676,421,9238175,9882,0 +37890,Out+of+Touch,318,433,698962117,6903,0 +37891,04.+Vertis,693,480,699804790,9362,0 +37892,.achim.,483,312,6936607,9251,0 +37893,Wioska+26,677,580,849101162,3723,0 +37894,Twierdza+012,316,548,7563185,2857,0 +37895,026,466,316,2502956,10019,0 +37896,088.+Riks,647,625,8337151,7610,0 +37898,2.Grenada,569,679,698215322,4764,0 +37899,Mordor,316,544,848978903,9778,0 +37900,Out+of+Touch,317,432,698962117,9744,0 +37901,Szulernia,369,368,7249451,3656,0 +37902,Wioska+barbarzy%C5%84ska,655,610,1900364,9365,0 +37903,017,676,570,6160655,7186,0 +37904,D.019,388,656,849088243,5040,0 +37905,Winterhome.025,503,308,848918380,10178,0 +37906,Muchomor+%2A024%2A,524,693,606407,7575,0 +37907,Dream+on,306,499,698962117,9671,0 +37908,Wioska+Bochun10,315,467,7449254,10311,0 +37909,10.+Karol,688,488,699804790,10247,0 +37910,Szlachcic,668,589,698867446,7655,0 +37911,Ob+Konfederacja,425,325,848915730,9617,0 +37912,C.009,693,494,9188016,10002,0 +37913,Ko%C5%82obrzeg,545,312,7139853,3385,0 +37914,038+Wioska+barbarzy%C5%84ska,679,443,849098769,5217,0 +37915,AG05,594,665,699876345,9747,0 +37916,Winterhome.016,512,309,8400180,10010,9 +37917,z+Sir+zombiqqqqqqqqqqqqqqqqqqqqq,358,379,3909522,8148,0 +37918,036.xxx,473,691,8612358,4189,0 +37919,040,651,623,699099811,10311,0 +37920,Szlachcic%2FTaran,641,392,699759128,10237,0 +37921,Mefedron+06,394,341,3484132,5985,0 +37922,%2A010%2A,343,392,699273451,10211,0 +37923,076-+Mroczna+Osada,599,337,849035905,8564,0 +37924,Winterhome.012,503,313,848918380,10178,0 +37925,064.+Wioska+barbarzy%C5%84ska,692,470,7494497,8852,0 +37926,z+0010+to+ju%C5%BC+wszystko,356,370,3909522,10083,5 +37929,0024+Wioska+barbarzy%C5%84ska,450,688,849037407,10216,0 +37930,%5B0072%5D,437,320,8630972,10495,0 +37931,Wioska+barbarzy%C5%84ska,373,351,698160606,5216,0 +37932,057.,323,576,3475079,2127,0 +37933,%7E+SYSUNIA+%7E,316,447,698540331,1823,0 +37934,Wioska+barbarzy%C5%84ska,576,679,7756002,9704,0 +37935,z+A02+Lublin,349,381,3909522,10196,0 +37936,Czarna+002,381,653,699269923,8309,0 +37937,Wow,371,355,698160606,12154,0 +37939,034+-+Leganes,693,525,698342159,6854,0 +37940,044g,315,557,698641566,9809,0 +37941,Pa%C5%84stfa+Pu%C5%82nocy,583,333,699433558,9619,0 +37942,%2A%2AINTERTWINED%2A,501,687,698704189,9240,0 +37943,psycha+sitting,424,678,699736927,10311,0 +37944,6.DEWALT,521,306,7758085,4325,0 +37945,Taran+018,639,372,699098531,10971,0 +37946,128+33.+KaruTown,644,401,699491076,9912,0 +37947,Winterhome.067,491,305,848918380,10045,0 +37948,BSK2,652,615,849066044,8989,0 +37949,_PUSTA+%21,684,541,699628084,10495,0 +37950,Wioska+barbarzy%C5%84ska,341,600,7183372,10078,0 +37951,Cieplice,358,622,699864013,6568,0 +37952,%230207+Segadorr+dar,458,311,1238300,10178,0 +37954,-+140+-+SS,545,689,849018239,10235,0 +37955,z+internacionale+007,351,378,3909522,12021,0 +37956,No.22,473,685,698826986,2560,0 +37957,Klaudek22,634,368,849092309,2483,0 +37958,%3F%3F%3F,482,309,698489071,8978,0 +37959,042.+Cancer,613,655,699703642,9761,6 +37960,Winterhome.055,499,307,848918380,10178,0 +37961,003+Bar+Zodiak,528,314,849099054,7670,0 +37963,MELISKA,338,465,699794765,6884,0 +37964,TWIERDZA+.%3A027%3A.,685,559,7154207,10222,0 +37965,Wioska+barbarzy%C5%84ska,557,321,699072129,5758,0 +37966,C+010,688,513,8078914,9526,5 +37970,%230269+olcixx,459,310,1238300,6785,0 +37971,-+247+-+SS,535,690,849018239,10000,5 +37972,XDX,601,333,699098531,6826,0 +37973,Gattacka,680,439,699298370,9551,0 +37974,_PUSTA,660,600,698768565,9379,0 +37975,Wyspa_08,503,694,2585846,9638,0 +37976,Szale,464,689,698585370,8458,0 +37977,006.Osada+koczownik%C3%B3w,399,334,699406776,9623,2 +37978,Wioska+barbarzy%C5%84ska,680,563,7038651,3589,0 +37979,Wioska+barbarzy%C5%84ska,548,681,873575,9839,0 +37980,psycha+sitting,408,665,699736927,6084,0 +37981,%7E070.,527,689,7139820,5847,0 +37982,006.+Otr%C4%99busy,317,449,849098966,5969,0 +37983,057.,636,370,849094609,8440,0 +37984,Wioska+Zorro+004,671,590,849080702,12154,0 +37985,Didus+P,672,573,849070946,5728,0 +37986,nr4,584,676,364126,7301,0 +37987,006+Apeldoorn,643,372,9029928,6933,0 +37988,B.04+duchy+serca+puszczy,553,318,849026145,3786,0 +37989,TARAN,538,685,7860453,8167,0 +37990,KONFA+TO+MARKA%2C+NARKA,314,461,698152377,10291,0 +37991,011.+Chrzan%C3%B3w+Ma%C5%82y,319,452,849098966,5184,0 +37992,A053,615,650,9023703,10221,0 +37993,Winterhome.060,495,306,848918380,10178,0 +37994,Didu%C5%9B_Powr%C3%B3ci%C5%82,678,576,849070946,10475,0 +37995,0281,469,550,699856962,8472,0 +37996,Wioska+Wiki+8,520,691,849100354,8058,0 +37997,%23015%23,628,631,692803,9761,0 +37998,Winterhome.044,497,310,848918380,10178,0 +37999,Szlachcic,381,346,3484132,9906,0 +38000,Wioska+barbarzy%C5%84ska,330,596,7183372,10342,0 +38001,szkoda+gada%C4%87,598,347,849041192,11480,0 +38002,D.006,394,654,849088243,8878,0 +38003,New+World,439,680,698152377,10290,0 +38004,008,314,500,7097727,5956,0 +38005,113,592,670,849097799,10044,0 +38006,psycha+sitting,423,674,699736927,9870,0 +38008,Gryfios+023,685,556,698666810,11710,0 +38009,z+001024+X,359,372,3909522,8624,0 +38010,O70+Oaxaca,681,562,699272880,10082,0 +38011,I071,684,468,699722599,9605,0 +38012,%5B0062%5D,436,318,8630972,10495,0 +38014,Wioska+barbarzy%C5%84ska+b,357,627,272173,3261,0 +38015,Gattacka,620,375,699298370,7430,0 +38016,Ob+Konfederacja,439,321,848915730,9720,7 +38017,Michalxj6,501,309,849099342,9835,0 +38018,Wioska+3,329,426,699821755,8181,0 +38019,-wisc+dells,653,389,8096537,6468,0 +38020,KONFA+TO+MARKA%2C+NARKA,314,448,698152377,10291,0 +38021,C0263,311,507,8841266,8927,0 +38022,%230271+Don+Noobas,475,308,1238300,8687,0 +38023,Wioska+barbarzy%C5%84ska,398,333,699406776,4245,0 +38024,B.08+duchy+serca+puszczy,556,315,849026145,2487,0 +38025,P%7C001%7C,454,689,699393742,5270,0 +38026,.23.+Oxenfurt+b,355,627,272173,6170,0 +38027,%230234+Kamileq69+dar,472,307,1238300,10178,0 +38028,.09.+Sigint+e,352,623,272173,8934,0 +38029,Dream+on,308,493,698962117,9505,0 +38030,%C5%BBUBR+.%3A%3A.Adaczu%2F08,618,648,33900,3918,0 +38031,Ronin+P,635,640,698768565,9995,0 +38032,Taran,343,608,6180190,7443,0 +38033,%5B0098%5D,435,318,8630972,10495,0 +38034,058,333,588,7183372,10257,6 +38035,%23018%23,637,630,692803,9761,0 +38036,Winterhome.054,497,308,848918380,10178,0 +38037,Out+of+Touch,323,419,698962117,7797,0 +38038,016.Stradi,440,320,698365960,10495,0 +38039,_PUSTA+%21,691,537,699316421,9176,0 +38040,Wioska+barbarzy%C5%84ska,524,308,849044705,2928,0 +38041,%3F%3F%3F,476,312,698489071,8612,0 +38042,-+161+-+SS,544,683,849018239,7909,7 +38043,%3F%3F%3F,491,309,698489071,10503,0 +38044,Wioska+barbarzy%C5%84ska,327,422,699856962,7174,0 +38046,New+World,427,679,698152377,10292,0 +38047,2.Salamanka,574,675,698215322,5791,0 +38048,%5B011%5D+Uszanowanko+nr2,581,329,699710633,7856,0 +38049,Psycho+to+Marka%2C+Narka+%21,320,576,849040142,3813,0 +38050,%5B0051%5D,434,318,8630972,10495,0 +38051,%2A072%2A,344,397,699273451,10211,0 +38052,%2AINTERTWINED%2A,512,686,698704189,9711,0 +38053,C0036,309,513,8841266,10362,0 +38054,073.+Dolina+Palancar,615,476,8337151,9924,0 +38055,%2A053%2A,345,395,699273451,9999,0 +38056,Wioska+barbarzy%C5%84ska,532,311,849044705,8943,0 +38057,W%C5%82adcy+P%C3%B3%C5%82nocy,687,504,699379895,10252,8 +38058,Taran,327,591,6180190,8979,0 +38060,Pd+02,359,631,272173,3635,0 +38061,181,323,582,699697136,5871,0 +38062,Wioska+barbarzy%C5%84ska,331,595,7183372,10088,0 +38063,%23078%23,635,631,692803,9761,0 +38064,I053+Fotobudka,684,463,699722599,10136,0 +38065,%C5%BBUBR+.%3A%3A.Adaczu%2F09,623,649,33900,3849,0 +38066,022+irirjeueu,523,692,849093426,10237,0 +38067,Wioska,549,687,7860453,5438,0 +38068,AAA,538,317,1006847,9131,0 +38069,%4014%40,406,332,699483429,4543,0 +38070,2.Elx,563,679,698215322,5141,0 +38071,C0152,316,534,8841266,10310,6 +38072,.%3A006%3A.,359,630,272173,8953,0 +38073,067.+Rekini+Z%C4%85b,666,590,8337151,9418,0 +38074,koczo+2,591,335,7340529,9570,0 +38075,Winterhome.070,492,307,848918380,8838,0 +38076,082,461,309,2502956,11570,1 +38077,Didi,673,580,849070946,10476,0 +38078,A+041,365,635,272173,5051,0 +38079,.%3A094%3A.+JuanPabloII,541,445,848934935,10362,0 +38080,004,310,478,2418364,6564,0 +38081,Wioska+barbarzy%C5%84ska,520,310,1990750,8105,0 +38082,C0030,313,511,8841266,10362,0 +38083,KINGSAIS,399,342,3484132,4915,0 +38084,0528,543,663,698659980,10495,0 +38085,Wioska+barbarzy%C5%84ska,535,311,849044705,8042,0 +38089,-002-+Chwa%C5%82a+Imperium,620,348,8675636,10019,0 +38090,102,657,616,3589487,11678,0 +38091,0422,564,683,698659980,10019,0 +38092,%7C051%7C+Split,497,691,699393742,9237,0 +38093,AG03,592,664,699876345,9747,0 +38094,W%C5%82adcy+P%C3%B3%C5%82nocy+11,693,504,699379895,5328,0 +38095,WB20,328,412,356642,4723,0 +38096,ADEN,607,345,698588535,4341,0 +38097,Wioska+1,312,489,849075836,9410,0 +38098,009,309,479,2418364,3882,0 +38099,Dream+on,308,489,698962117,9484,0 +38100,I085,688,461,699722599,8398,0 +38101,Wioska+barbarzy%C5%84ska,671,416,849095068,9001,0 +38102,%7E%7E056%7E%7E,631,644,7829201,9216,0 +38103,%28037%29Arak,322,567,849098695,9857,0 +38104,A062,604,656,9023703,10226,0 +38105,1.C.,453,689,699777372,9791,0 +38106,EO+EO,314,524,699697558,10019,0 +38107,021+syegdvdj,534,685,849093426,10237,0 +38108,Kamionka+1-maja,681,547,848932879,9739,0 +38109,20.+Wioska+Raukodel,652,379,7340529,8686,7 +38110,Wioska+w%C5%82adca+Tw%C3%B3j,623,394,699758688,5865,0 +38111,029,627,649,699373599,3448,0 +38112,Ave+Why%21,452,685,698585370,11188,5 +38113,Wioska+082,667,602,848971079,8557,0 +38114,021+Panewa,644,368,9029928,2322,0 +38115,s%C5%82odziute%C5%84ka+08,601,537,8013349,8063,0 +38116,K35+-+%5B018%5D+Before+Land,574,321,699088769,9924,0 +38117,004,642,634,849099544,5228,0 +38118,%7E%7E062%7E%7E,627,642,7829201,9340,0 +38119,U-4,553,379,3600737,9549,0 +38120,Wioska+barbarzy%C5%84ska,536,311,849044705,7489,0 +38121,Wyspa_31,508,687,2585846,9638,0 +38122,KR%C3%93L+PAPI+WIELKI,642,633,698191218,9434,0 +38123,New+Land+15,341,402,849064752,3589,0 +38124,Wioska+barbarzy%C5%84ska,670,409,699738350,6855,0 +38125,Szlachcic,377,350,698160606,9495,0 +38126,204,424,329,7271812,4098,0 +38127,%C5%BBUBR+PSYCHIATRYK+015,618,644,33900,9883,7 +38128,0012,422,324,2321390,8785,0 +38129,%23%23%23051%23%23%23,594,671,698285444,10636,0 +38130,TARAN,539,686,7860453,9835,0 +38131,BRICKLEBERRY,559,314,699072129,5380,0 +38132,%230164+Kamil0ss1,471,308,1238300,10178,0 +38133,boh81%2F0200,308,473,848889556,9617,1 +38134,236,414,326,7271812,3780,0 +38135,Pz39,689,513,8096537,6029,0 +38136,Dream+on,305,509,698962117,9835,0 +38137,wiocha,317,564,849099258,6421,0 +38138,Out+of+Touch,320,423,698962117,9541,0 +38139,_PUSTA%2B,688,544,699628084,9797,0 +38140,-001-+r,380,649,849096354,9215,0 +38141,Taran,338,600,6180190,9957,0 +38143,psycha+sitting,414,674,699736927,10311,0 +38145,Czarna,383,656,699269923,7400,0 +38146,001,307,477,2418364,9570,0 +38147,059.,635,369,849094609,9771,0 +38148,KONFA+TO+MARKA%2C+NARKA,312,460,698152377,10290,0 +38149,Wioska+Zorro+013,669,594,849080702,8020,0 +38150,X+%7C+Forest+Cyaaaanku,316,470,699213622,10000,0 +38151,0313,567,681,698659980,7897,0 +38152,Szlachcic,376,350,698160606,9897,0 +38153,Ob+Konfederacja,427,326,848915730,10025,3 +38154,Wioska+barbarzy%C5%84ska,398,660,699736927,3825,0 +38155,048.+Silthrim,663,602,8337151,10083,0 +38156,%2A081%2A,313,535,699273451,10211,0 +38158,%28018%29Triax,326,568,849098695,6983,0 +38159,Wioska+barbarzy%C5%84ska,479,314,0,3732,0 +38160,%23075%23,635,632,692803,9761,0 +38161,I054,684,458,699722599,9850,0 +38162,Dream+on,311,493,698962117,9486,0 +38163,-+136+-+SS,536,687,849018239,10000,0 +38164,_PUSTA%2B,684,544,699628084,10393,0 +38165,Mroczny+Zamek+021,354,629,698908184,4225,0 +38166,%24UtahJazz,690,508,699795378,8897,0 +38167,-001-,375,647,699269923,6058,0 +38168,Orze%C5%82+4,692,488,699413581,7086,0 +38169,Dream+on,310,495,698962117,9611,0 +38170,Wioska+barbarzy%C5%84ska,398,338,699406776,3515,0 +38171,%23037%23,629,637,692803,9761,0 +38172,019.,525,546,699695167,8708,0 +38173,AAA,523,310,1006847,7105,0 +38174,R+030,494,695,699195358,9664,0 +38175,Wioska+barbarzy%C5%84ska,521,311,1990750,10068,0 +38177,005.DUPGRZMOTY,399,335,699406776,9568,0 +38178,%230200+Segadorr+dar,460,316,1238300,10178,0 +38179,X+004,595,334,6384450,8131,0 +38180,Wioska+Szezeger,329,591,849025558,2762,0 +38181,O72,681,563,699272880,10135,0 +38182,I086,691,457,699722599,7873,0 +38183,Wioska+barbarzy%C5%84ska,569,675,7756002,9885,0 +38184,064.+Toark,666,593,8337151,10252,0 +38185,kamilkaze135+%2311,656,387,699705601,8788,0 +38186,%7C053%7C+Zagrzeb,498,692,699393742,9114,0 +38188,Wioska+barbarzy%C5%84ska,311,450,0,2348,0 +38189,Komornicy+028,348,609,699336777,3127,0 +38190,K35+-+%5B026%5D+Before+Land,581,324,699088769,8092,0 +38191,Wioska+barbarzy%C5%84ska,386,649,699269923,9471,0 +38192,045.+Wioska+barbarzy%C5%84ska,685,472,7494497,9989,0 +38193,%2A%2A50%2A%2A,675,415,849098782,8017,0 +38194,Sernik+z+Andzynkami,694,497,699126484,7002,0 +38195,Punta+Cana+2,455,646,699736927,7817,0 +38196,TWIERDZA+.%3A087%3A.,680,569,7154207,6102,0 +38197,Wioska+barbarzy%C5%84ska+b,357,628,272173,3838,0 +38198,Wyspa_18,513,690,2585846,9638,0 +38199,X+%7C+Forest+Cyaaaanku,315,461,699213622,10000,0 +38200,14+Poblete,390,654,698837993,2287,0 +38202,%2A%2A52%2A%2A,670,423,849098782,5778,0 +38203,0029,486,693,699280514,4661,0 +38204,040.Stradi,446,321,698365960,10495,0 +38205,Sernik+z+Andzynkami,695,488,699126484,9744,0 +38206,AAA,546,313,1006847,9064,6 +38207,2.Kadyks,574,674,698215322,5793,0 +38208,%3F%3F%3F,479,310,698489071,8793,0 +38209,Out+of+Touch,321,424,698962117,9740,0 +38210,Wyspa_28,503,695,2585846,9638,0 +38211,003.+Mokot%C3%B3w,690,486,7494497,10256,0 +38212,z+001035,361,365,3909522,8154,0 +38213,KONFA+TO+MARKA%2C+NARKA,316,460,698152377,10290,0 +38214,Odbudowa+Roterdam+%3A%29,628,355,9103424,4200,0 +38215,ManieK,344,614,9199885,9172,0 +38216,KONFA+TO+MARKA%2C+NARKA,314,457,698152377,10292,2 +38218,%7C056%7C+Barba,479,688,699393742,9738,0 +38219,Ett,409,385,699402816,9835,0 +38220,Out+of+Touch,319,434,698962117,6519,0 +38222,.achim.,484,314,6936607,10654,0 +38224,-+183+-+SS,560,685,849018239,8690,0 +38225,065.,328,582,3475079,2644,0 +38226,%7E+SZWEDEROWO+%7E,317,446,698540331,2796,0 +38227,TWIERDZA+.%3A026%3A.,676,567,7154207,10359,0 +38228,048.+Wioska+barbarzy%C5%84ska,689,466,7494497,9501,0 +38229,Kombinat,588,673,699567608,9936,0 +38230,%28030%29Marabethia,323,569,849098695,8789,0 +38231,Szlachcic,390,345,3484132,10478,0 +38232,Dream+on,308,488,698962117,9741,0 +38233,Wioska+barbarzy%C5%84ska,532,315,849044705,3497,7 +38234,BAC%C3%93WKA+%7C034%7C,668,412,7394371,5871,0 +38235,Szlachcic,391,347,3484132,10476,0 +38236,Zakopane,544,314,7139853,3214,0 +38237,Wioska+barbarzy%C5%84ska,337,393,698807570,10047,0 +38238,Winterhome.004,508,311,848918380,10178,9 +38239,Out+of+Touch,322,420,698962117,9098,0 +38240,Wiejska2,606,664,6528152,8465,0 +38241,006.Stradi,439,318,698365960,10495,0 +38242,018,343,605,7183372,10595,0 +38243,Wioska+barbarzy%C5%84ska,401,333,699406776,3474,0 +38244,013+co+ja+robi%C4%99+czasem,531,686,849093426,10247,0 +38245,Po%C5%82udnie.002,554,680,873575,10105,0 +38246,Winterhome.058,495,307,848918380,10178,0 +38247,bucksbarzy%C5%84skamiiiru,335,394,848955783,8752,0 +38248,043g,313,559,698641566,9809,0 +38249,006+NAWRA,658,611,849048867,10365,0 +38250,X+%7C+Forest+Cyaaaanku,319,467,699213622,10000,0 +38251,.05.+Kaer+Morhen+e,346,619,272173,9528,0 +38252,004.,565,324,699072129,5009,0 +38253,Szlachcic,691,516,8096537,6396,0 +38254,Out+of+Touch,327,424,698962117,9486,0 +38255,-+147+-+SS,543,689,849018239,8630,0 +38256,KR%C3%93L+PAPI+WIELKI,637,639,698191218,9795,0 +38257,Osada+koczownik%C3%B3w,672,418,849095068,10013,9 +38258,Out+of+Touch,322,418,698962117,2566,0 +38259,006+%2A+Lady+Porto+%2A,696,508,699406750,10285,0 +38260,I100,686,459,699722599,8096,0 +38261,Szlachcic,382,343,3484132,9957,0 +38262,019+Christmasss,607,343,699098531,5007,0 +38263,-+144+-+SS,537,686,849018239,9195,0 +38264,%7C045%7C+Mordownia,499,690,2585846,9471,0 +38265,New+World,426,680,698152377,10294,0 +38266,K35+-+%5B019%5D+Before+Land,578,326,699088769,9510,0 +38267,Ma%C5%82pi+Gaj,683,551,848932879,7377,0 +38268,Wonderwall,331,545,698962117,9541,0 +38269,I099,686,462,699722599,8495,0 +38270,%2A007%2A,313,533,8630972,10166,0 +38271,TWIERDZA+.%3A071%3A.,677,570,7154207,8375,0 +38272,Kingdom+6,689,499,699598425,10728,0 +38273,%C5%BBUBR+.%3A%3A.Adaczu%2F10,621,647,33900,4559,0 +38274,000+Plutosea,314,537,9280477,9976,0 +38275,%23001,664,397,849099391,6460,0 +38276,Taran,337,604,6180190,9956,0 +38277,nr3,585,675,364126,9235,0 +38278,012+Mhmm,601,341,699098531,4455,0 +38279,029%23+Janette,491,695,3933666,5492,7 +38280,Stawiski,687,476,849100082,4964,0 +38281,-+191+-+SS,560,686,849018239,6920,0 +38282,104,656,616,3589487,5515,0 +38283,054.+Wioska+barbarzy%C5%84ska,689,464,7494497,9446,0 +38284,Morty+Town,644,622,849098822,6665,0 +38285,KR%C3%93L+PAPI+WIELKI,695,514,698191218,7659,0 +38286,Wioska+barbarzy%C5%84ska,567,320,699658023,3446,0 +38287,KR%C3%93L+PAPI+WIELKI,636,635,698191218,9976,0 +38288,071.+Uden,649,617,8337151,10160,0 +38289,KONFA+TO+MARKA%2C+NARKA,310,460,698152377,10292,0 +38290,AG11,589,665,699876345,9747,0 +38291,Forteca%2A009%2A,531,694,1078121,4337,0 +38292,%7E%7E074%7E%7E,629,639,7829201,5791,0 +38293,Wioska+Zorro+016,679,590,849080702,10495,0 +38294,Wioska+barbarzy%C5%84ska,524,313,698350371,6360,0 +38295,005.+Praga+Po%C5%82udnie,695,482,7494497,9902,0 +38296,Wioska+barbarzy%C5%84ska,685,549,7038651,4812,0 +38297,XDX,603,333,699098531,7930,0 +38298,-13-,639,364,698361257,6524,0 +38299,011.Stradi,448,313,698365960,10495,0 +38300,W%C5%82adcy+P%C3%B3%C5%82nocy+12,686,526,699379895,5606,0 +38302,Vanaheim+II,594,337,699478692,3076,0 +38303,kamilkaze135+%2301,659,390,699705601,10081,0 +38304,blablabla,625,355,9103424,2937,0 +38305,bucksbarzy%C5%84skamiiiru,332,403,848955783,10575,0 +38306,%7E%7E065%7E%7E,632,642,7829201,7522,0 +38307,2.C.,457,688,699777372,9700,0 +38308,Wioska+barbarzy%C5%84ska,695,475,699429153,9825,0 +38309,KR%C3%93L+PAPI+WIELKI,648,619,698191218,9973,0 +38310,%24Doncic,688,519,699795378,5178,0 +38311,2.Vitoria,572,677,698215322,5131,0 +38312,206,426,328,7271812,4238,0 +38313,197...segador,455,317,6920960,8630,0 +38314,018+NAWRA,661,610,849048867,3644,0 +38315,%230158+Kamil0ss1,470,315,1238300,10178,0 +38316,KR%C3%93L+PAPI+WIELKI,639,631,698191218,10216,0 +38317,Wyspa_16,504,689,2585846,9526,0 +38318,Wioska+8,313,485,849075836,7909,0 +38319,C0034,312,511,8841266,10362,0 +38320,0026+Wioska+barbarzy%C5%84ska,451,688,849037407,9693,0 +38321,C0161,317,515,8841266,10362,0 +38323,Mefedron+04,394,342,3484132,8405,0 +38324,Kocpo%C5%82uch+3,331,580,848949597,3829,0 +38326,032%23+Roe,481,692,3933666,7692,0 +38327,%5BF%5D+004,385,342,3484132,6421,0 +38328,-+143+-+SS,543,686,849018239,9929,0 +38329,UltraInstynkt,582,329,699710633,10311,0 +38330,I072,685,465,699722599,10348,0 +38331,Szlachcic,692,514,8096537,8061,0 +38332,AAA,545,309,1006847,6009,0 +38333,Wioska+101,648,598,848971079,9761,0 +38334,New+World,426,675,698152377,10292,0 +38335,.27.+Cinoda+e,353,619,272173,6420,0 +38336,006342+Miedziany1,440,433,3909522,10520,0 +38337,XDX,589,328,699098531,4228,0 +38338,Wioska+ricki19634,604,515,698845189,6464,0 +38339,Wioska+barbarzy%C5%84ska,695,491,699429153,9412,0 +38340,W%C5%82adcy+P%C3%B3%C5%82nocy+07,690,501,699379895,6152,0 +38342,%23077%23,629,636,692803,9761,0 +38343,New+World,439,679,698152377,10311,0 +38344,0004+Krwawa+Prze%C5%82%C4%99cz+II,477,693,699656989,9916,0 +38345,KR%C3%93L+PAPI+WIELKI,662,609,698191218,9275,0 +38346,%23006.+Bank+Robber,451,681,848896948,9611,0 +38347,03.wiocha,331,589,7183372,4992,0 +38348,013+Argentina+Out,620,349,8675636,10019,0 +38349,-+171+-+SS,557,687,849018239,8240,0 +38350,-+174+-+SS,550,687,849018239,7328,0 +38351,Dolina+Czarnych+Mag%C3%B3w,650,389,7973893,8559,0 +38352,KR%C3%93L+PAPI+WIELKI,695,521,698191218,7869,0 +38353,Wioska+075,662,601,848971079,8944,0 +38354,-+181+-+SS,534,688,849018239,8783,0 +38355,Komornicy+029,347,610,699336777,5400,0 +38356,%24Zion,687,512,699795378,4345,0 +38357,psycha+sitting,420,671,699736927,10311,0 +38358,%2A108%2A,362,367,699273451,10211,0 +38359,Winterhome.007,508,313,848918380,10178,0 +38360,X+%7C+Forest+Cyaaaanku,314,466,699213622,10000,9 +38361,013+mordownia,684,444,849098769,9464,0 +38362,065.Stradi,450,312,698365960,10073,0 +38363,002,620,346,9060885,4995,0 +38364,0.23,466,687,699725436,9607,0 +38365,Wioska+4,499,305,849050849,4411,0 +38366,7.Mylta,420,323,849098648,5472,0 +38367,Wioska+barbarzy%C5%84ska,353,627,272173,2862,0 +38369,015%23+Natalie,486,696,699605333,10056,0 +38370,023,687,454,7085502,9814,0 +38371,Didek,678,577,849070946,8396,0 +38372,Wioska+barbarzy%C5%84ska,397,657,699736927,4347,0 +38373,Wioska+barbarzy%C5%84ska,683,568,7038651,3456,0 +38374,KRASZEW+2,337,597,7183372,10231,0 +38375,Wioska,344,383,7462660,9752,0 +38376,007+Stadio+Alberto+Picco,684,455,849098769,10222,0 +38377,Szlachcic,374,356,698160606,10495,0 +38378,Winterhome.057,496,307,848918380,10178,2 +38379,Dream+on,306,498,698962117,9505,0 +38380,C002,597,661,9023703,6420,0 +38381,psycha+sitting,404,670,699736927,10311,0 +38382,046,461,685,699834004,9545,0 +38383,%230285+Gwen1,477,308,1238300,4084,0 +38384,Wioska+barbarzy%C5%84ska,375,350,698160606,8268,0 +38385,RTS+9,581,624,848995242,10495,0 +38386,Wioska+barbarzy%C5%84ska,564,320,699658023,3702,0 +38387,SOKzGUMIjag%C3%B3d,648,376,849059491,11130,0 +38388,%2136+74+Hurjuieni,646,370,698361257,9860,0 +38389,.achim.,481,311,6936607,8601,0 +38390,K35+-+%5B034%5D+Before+Land,577,325,699088769,9925,0 +38391,New+World,430,680,698152377,10297,0 +38392,KR%C3%93L+PAPI+WIELKI,641,632,698191218,9711,0 +38393,Out+of+Touch,322,419,698962117,8140,0 +38394,Dream+on,304,495,698962117,8894,0 +38395,001,589,675,699567608,7347,0 +38396,Sernik+z+Andzynkami,696,495,699126484,9744,0 +38398,-+DragonG,545,326,699825236,7380,0 +38399,%2A3604%2Aa+Dolina+Bia%C5%82ych+Mag%C3%B3w,661,397,7973893,10287,0 +38400,Beznazwa,618,354,7340529,10495,0 +38401,Taran,335,600,6180190,9962,0 +38402,X+005,598,335,6384450,8541,0 +38403,AGA6,687,499,699598425,7723,0 +38404,a+mo%C5%BCe+off+%3F+%3A%29,670,402,698768565,5070,0 +38405,050,649,627,699099811,2699,0 +38406,2.Kordoba,574,678,698215322,4893,0 +38407,Dream+on,307,496,698962117,8741,0 +38408,New+World,429,677,698152377,10292,0 +38409,.achim.,485,309,6936607,9453,0 +38410,Stolikland,319,572,699671197,12154,0 +38411,07+Las+Labores,383,651,699269923,4771,0 +38412,%C5%BBoliborz,367,356,849099434,12154,0 +38413,MojeDnoToWaszSzczyt,506,307,9299539,9984,0 +38414,042,650,626,699099811,9185,0 +38415,A024,608,661,9023703,10221,0 +38416,psycha+sitting,399,663,699736927,10178,0 +38417,BAC%C3%93WKA+%7C042%7C,668,414,7394371,10495,0 +38418,Wioska+barbarzy%C5%84ska+3,325,580,3475079,6666,0 +38419,031,455,310,2502956,10019,0 +38420,Dream+on,307,494,698962117,9494,0 +38421,WB5,666,395,1086351,8392,0 +38422,0026.+Y+-,692,536,7125212,3815,0 +38423,Wioska+barbarzy%C5%84ska,368,360,849027025,6601,0 +38424,Gattacka,613,381,699298370,10470,0 +38425,Plantacja+Granatnik%C3%B3w,581,672,698723158,7576,0 +38426,Out+of+Touch,318,432,698962117,7009,0 +38427,002,647,629,698234770,9929,0 +38429,057.Stradi,449,314,698365960,10495,0 +38430,048,462,684,699834004,9358,0 +38432,Piek%C5%82o+to+inni,594,330,848956765,6338,0 +38433,Odbudowa+Hagi%3A%29,627,352,9103424,3882,0 +38434,Wioska+barbarzy%C5%84ska,325,424,699856962,8675,0 +38435,Rze%C5%BCucha+%C5%81%C4%85kowa,582,679,698723158,6038,0 +38437,003,335,605,7183372,10343,0 +38438,.%3A002%3A.,668,592,849039310,3900,0 +38439,074,690,547,699316421,10362,0 +38440,Wioska+marcinnn19922,648,610,8224678,11314,0 +38441,%2A%2A37%2A%2A,675,432,849098782,10030,0 +38442,037+tutaj+pierwsza+mi%C5%82o%C5%9B%C4%87+jest..,680,448,699272633,6548,0 +38443,psycha+sitting,417,669,699736927,10135,0 +38444,KONFA+TO+MARKA%2C+NARKA,312,452,698152377,5987,0 +38445,KONFA+TO+MARKA%2C+NARKA,312,453,698152377,10291,0 +38446,B%23011,692,459,2065730,9797,0 +38447,Wioska+barbarzy%C5%84ska,390,657,699269923,9470,0 +38448,-+195+-+SS,530,686,849018239,8231,0 +38449,Rubiez4,308,483,699265922,8749,0 +38450,cos+cos,437,682,8966820,9968,3 +38451,0014,423,321,2321390,7240,0 +38452,A+078,364,641,699269923,3784,0 +38453,I101,687,463,699722599,7566,0 +38454,%5B0040%5D,437,321,8630972,10495,0 +38456,004.,642,376,699098531,10654,0 +38457,psycha+sitting,410,665,699736927,10311,0 +38458,042.,330,587,7183372,1742,0 +38459,020+New+Yorkshire,621,355,698420691,8324,0 +38460,Wyspa_17,502,691,2585846,9638,0 +38461,XDX,604,334,699098531,7889,0 +38462,Devano4,335,590,7183372,10343,0 +38463,A+044,363,632,699342219,5341,0 +38464,New+World,427,681,698152377,10295,0 +38465,%24MiamiHeat,691,507,699795378,8702,0 +38466,Monetki,485,415,699098531,10291,0 +38467,Piekarnia,678,440,849093742,7775,0 +38469,walaszczyki,306,479,8048374,7877,0 +38470,Wioska+barbarzy%C5%84ska,635,366,7555180,9803,0 +38471,X+%7C+Forest+Cyaaaanku,310,469,699213622,10000,0 +38472,Wioska+Tomcio+Rycerz,665,601,3467919,10019,0 +38474,psycha+sitting,407,669,699736927,10268,0 +38478,_PUSTA%2B,687,544,699628084,9797,0 +38479,z+A03+Rzesz%C3%B3w,349,382,3909522,9574,0 +38480,006,318,557,8153179,4665,0 +38481,%2A087%2A,362,371,699273451,10211,0 +38482,psycha+sitting,408,671,699736927,10178,0 +38483,Sullivanum+%5B2%5D,337,593,1606425,11875,0 +38484,%5B0035%5D,443,313,8630972,10495,0 +38485,Wioska+barbarzy%C5%84ska,328,406,2418002,4907,0 +38487,019+NAWRA,663,609,849048867,5483,0 +38488,%2A098%2A,357,368,699273451,10211,0 +38489,psycha+sitting,421,680,699736927,10311,0 +38490,Hoog,315,440,393668,9185,0 +38492,bucksbarzy%C5%84skamiiiru,331,406,848955783,10654,0 +38493,%7E%7E059%7E%7E,626,644,7829201,9539,0 +38494,A055,614,651,9023703,10220,0 +38495,Rubiez7,305,485,699265922,8230,0 +38496,Winterhome.072,492,310,848918380,8355,0 +38497,%230205+Segadorr+dar,460,314,1238300,7645,0 +38498,XDX,604,338,699098531,4895,0 +38499,045.Stradi,446,319,698365960,10495,0 +38500,_PUSTA%2B,687,543,699628084,7668,0 +38501,102+invidia,526,694,849093426,8275,0 +38502,WYSPA,508,691,2585846,8758,4 +38503,103+%2A%2A%2A8%2A%2A%2A+Agrest,536,386,699491076,10001,0 +38504,003,309,506,698356304,5263,0 +38505,Osada+koczownik%C3%B3w,617,349,8675636,10019,5 +38506,076,690,537,699316421,9475,0 +38507,0090,612,346,848913037,4873,0 +38508,046.,327,588,3475079,2682,0 +38509,%7E006%7E+MmM,352,598,849014147,9334,0 +38510,Wioska+barbarzy%C5%84ska,400,332,699406776,4594,0 +38511,%5B062%5D+Wioska+barbarzy%C5%84ska,669,415,849095068,2529,0 +38512,%7E%7E060%7E%7E,625,644,7829201,7294,0 +38513,D.012,392,663,849088243,7219,0 +38514,Nie+rozp%C4%99dzacie+si%C4%99%3F+XD,476,306,698489071,10971,0 +38515,Kopalnia,305,480,8048374,8540,0 +38516,%C5%BBUBR+.%3A%3A.Adaczu%2F017,624,652,33900,2177,0 +38517,Wioska+069,657,611,848971079,9761,0 +38519,boh81%2F500,305,473,848889556,9617,2 +38520,1.02,428,678,699827112,8533,0 +38521,Out+of+Touch,319,446,698962117,9166,0 +38522,%5B214%5D,571,564,8000875,4958,0 +38523,%230286+Don+Noobas,475,310,1238300,4851,0 +38524,%4011%40,404,328,699483429,5604,0 +38525,009g,314,563,698641566,9702,6 +38526,%23021%23,616,654,692803,9761,0 +38527,143+invidia,539,693,849093426,5506,0 +38530,Taran,338,604,6180190,9957,0 +38531,%5B050%5D+Wioska+barbarzy%C5%84ska,680,422,849095068,8467,0 +38532,W%C5%82adcy+P%C3%B3%C5%82nocy+09,694,522,699379895,6176,0 +38533,%5B0038%5D,439,320,8630972,10495,0 +38534,%5B159%5D,566,556,8000875,8682,0 +38535,039%23+Ola,487,689,3933666,3217,0 +38536,K35+-+%5B006%5D+Before+Land,576,320,699088769,9847,0 +38537,New+World,443,681,698152377,10294,0 +38538,026+Lan+Exeter,472,688,699834004,4810,0 +38539,AAA,524,310,1006847,8960,0 +38540,003.+Podkowa+Le%C5%9Bna,320,447,849098966,6357,0 +38541,New+World,434,676,698152377,10290,0 +38542,Wioska+ziomeka4,645,376,7629036,2408,0 +38543,Jan+NIE+PR%C3%93BUJ+%21%21,685,439,879782,6073,0 +38544,Wioska+barbarzy%C5%84ska,671,582,7973893,2026,0 +38545,Wioska+barbarzy%C5%84ska,522,310,1990750,8772,0 +38546,No+Surprises,678,564,848926293,9581,0 +38547,Wioska+barbarzy%C5%84ska,350,444,393668,10365,0 +38548,Gattacka,682,433,699298370,9711,0 +38549,Wioska+barbarzy%C5%84ska,334,596,7183372,7339,0 +38550,021,696,514,699150527,9962,0 +38551,Wioska+079,660,607,848971079,8925,0 +38552,Wioska+barbarzy%C5%84ska,321,568,699671197,6008,0 +38553,WB21,334,405,356642,3515,0 +38554,X+%7C+Forest+Cyaaaanku,314,471,699213622,10000,0 +38555,Wioska+barbarzy%C5%84ska,346,617,9199885,9178,0 +38556,kto+ananasowy+pod+wod%C4%85+ma+dom,580,568,699628084,9797,0 +38557,38.+KaruTown,691,454,849060446,9735,0 +38558,Por%C4%85bka,543,310,7139853,5756,0 +38559,Jestem+Poza+Kontrol%C4%85,353,559,8004076,9816,0 +38560,Wioska+barbarzy%C5%84ska,691,476,699429153,9825,0 +38561,SOKzGUMIjag%C3%B3d,600,339,849059491,5533,0 +38562,%2A003%2A+CSA-Yecha%C4%87%21,607,340,849095068,9716,0 +38563,0023+Wioska+barbarzy%C5%84ska,449,688,849037407,9636,0 +38564,000+Plutosea,317,569,9280477,10311,0 +38565,JokeR,606,342,8963720,4953,0 +38566,Moldor+8,633,360,849049045,9002,0 +38567,z+001028qqqqqqqqqqqqqqqqqqqqqqqq,360,368,3909522,7573,0 +38568,Didek,673,582,849070946,6817,0 +38569,Wyspa_36,509,688,2585846,2274,0 +38570,%2A028%2A,347,390,699273451,10211,2 +38571,Wioska+barbarzy%C5%84ska,328,409,2418002,2773,0 +38572,Wyspa_35,509,694,2585846,9638,0 +38573,0.11+Szale%3F,468,692,699725436,8120,0 +38575,054.,324,578,3475079,2657,0 +38576,Wioska+03,567,316,849067192,7949,4 +38577,xxx,689,537,699316421,10495,0 +38578,bucksbarzy%C5%84skamiiiru,335,395,848955783,7076,0 +38579,Mordor+2,314,543,698388578,8063,0 +38580,New+World,443,686,698152377,10294,0 +38581,Wioska+barbarzy%C5%84ska,330,409,2418002,3344,0 +38582,%230280+Don+Noobas,475,309,1238300,6133,0 +38583,010,343,387,848945529,3042,0 +38584,Orze%C5%82+1,692,489,699413581,10636,0 +38585,Wioska+074,663,603,848971079,9761,0 +38586,TWIERDZA+.%3A093%3A.,680,573,7154207,8785,0 +38587,Wyspa_03,507,689,2585846,9638,0 +38588,001.+%C5%9Ar%C3%B3dmie%C5%9Bcie,691,481,7494497,11130,0 +38589,%5B0086%5D,442,317,8630972,10559,0 +38590,z181_08,311,443,393668,9883,0 +38592,ZWM,685,547,848932879,8909,0 +38593,Wioska+Lady+evee.,588,330,849086074,4440,0 +38594,%7E+CZY%C5%BBK%C3%93WKO+%7E,321,445,698540331,9004,0 +38595,%4010%40,406,329,699483429,5261,0 +38596,I073,690,467,699722599,10083,0 +38597,Gryfios+0010,686,556,698666810,10636,9 +38598,Sernik+z+Andzynkami,695,498,699126484,9744,0 +38599,%5B061%5D+Wioska+barbarzy%C5%84ska,681,424,849095068,5918,0 +38600,050.Stradi,446,320,698365960,10495,0 +38601,skiba,611,661,848909464,10242,0 +38602,Sernik+z+Andzynkami,696,499,699126484,9847,2 +38603,%24MemphisGrizzlies,692,508,699795378,7106,0 +38604,096.+Donar,650,623,8337151,6868,0 +38605,Dream+on,305,482,698962117,9498,7 +38606,Jan+ko%C5%82o+NEW+2+Ost,689,456,879782,7463,0 +38607,092.+W%C4%85skie+g%C3%B3ry,651,622,8337151,9792,0 +38608,KR%C3%93L+PAPI+WIELKI,649,626,698191218,10000,0 +38609,C0106,311,530,8841266,10362,0 +38610,%23%23+Nieznana+%23%23,635,604,699778867,8815,0 +38611,B.03+duchy+serca+puszczy,553,315,849026145,4688,0 +38612,134+invidia,531,688,849093426,5957,0 +38613,Wioska+barbarzy%C5%84ska,665,403,1715091,3296,0 +38614,053.,325,588,3475079,1505,0 +38615,Wo%C5%82f,513,309,8400180,4811,0 +38616,Wioska+barbarzy%C5%84ska,533,309,849044705,3151,0 +38617,Wioska+Wiki+3,519,695,849100354,10697,0 +38618,Mechnice,692,542,848932879,7895,0 +38619,015.Stradi,447,313,698365960,10495,0 +38620,Gryfios+026,690,554,698666810,11877,0 +38621,okplls,664,395,1086351,5163,0 +38622,Wioska+2,644,630,1647052,8363,0 +38623,071+donkretos3,688,516,2135129,7464,0 +38624,Wioska+barbarzy%C5%84ska,559,316,699072129,6766,0 +38625,2.Majorka,574,680,698215322,6289,0 +38626,Taran+039,645,379,699098531,3440,0 +38627,psycha+sitting,410,667,699736927,9894,0 +38628,Shh,315,439,393668,10342,0 +38629,--13--,339,605,8877156,10218,0 +38630,%2A070%2A,341,398,699273451,10211,2 +38631,Sernik+z+Andzynkami,696,498,699126484,9744,0 +38632,Szlachcic,388,343,3484132,10478,0 +38633,EO+EO,307,509,699697558,10019,0 +38635,Out+of+Touch,324,427,698962117,8746,0 +38636,Deveste+ufam+Tobie,395,639,699783765,10005,0 +38637,KR%C3%93L+PAPI+WIELKI,658,609,698191218,9369,0 +38638,Wielki+2,500,305,849050849,7680,0 +38639,%C5%BBera%C5%84,368,359,849099434,8142,0 +38640,-001-,372,639,849096354,5789,0 +38641,Wioska+barbarzy%C5%84ska,665,605,3467919,9469,0 +38642,Jan+xX3+ost+K,687,441,879782,9577,0 +38644,%5B039%5D+Wioska+barbarzy%C5%84ska,673,416,849095068,9288,0 +38645,%5B0057%5D,447,317,8630972,10495,0 +38647,0030,489,693,699280514,3812,0 +38648,002.+Rynsztok,561,321,699072129,10281,3 +38650,Gattacka,680,431,699298370,9556,0 +38651,KR%C3%93L+PAPI+WIELKI,637,631,698191218,9868,0 +38652,Rubiez5,308,469,699265922,8691,0 +38653,A+025,365,630,699342219,5021,0 +38654,XDX,613,343,699098531,5940,0 +38655,.16.+Tillmar+e,351,623,272173,8499,0 +38656,Wioska+barbarzy%C5%84ska,655,390,7973893,7973,0 +38657,KR%C3%93L+PAPI+WIELKI,650,624,698191218,10294,0 +38658,Wioska+barbarzy%C5%84ska,374,350,698160606,5354,0 +38659,Wioska+barbarzy%C5%84ska,599,662,699567608,9622,0 +38660,007.+OchotA,690,482,7494497,9508,0 +38661,Moldor+001,632,354,849049045,11215,0 +38662,%7E%7E057%7E%7E,631,642,7829201,9626,0 +38663,%5B0032%5D,432,316,8630972,10495,0 +38664,%23083%23,632,648,692803,9761,0 +38665,070-+Mroczna+Osada,596,337,849035905,8010,0 +38667,Ob+Konfederacja,427,321,848915730,9545,0 +38668,nowa+4,468,311,849104546,4328,0 +38669,123,470,690,9003698,10373,0 +38670,-+178+-+SS,533,689,849018239,9956,0 +38671,Zaleszczyki+001,619,648,33900,10226,3 +38672,-001-,374,639,849096354,5657,0 +38673,Forteca%2A002%2A,534,693,1078121,9378,0 +38674,Ciepielowice,688,533,848932879,10429,0 +38675,%23%23%23052%23%23%23,586,677,698285444,10495,0 +38676,%5B049%5D+Wioska+barbarzy%C5%84ska,677,422,849095068,7600,0 +38677,Florencja,686,488,2392791,12154,0 +38678,-+138+-+SS,537,692,849018239,9050,0 +38679,007.+Andziejek,562,320,699072129,10223,0 +38680,Wioska+barbarzy%C5%84ska,307,508,699510045,2545,0 +38681,Chocznia,541,307,7139853,6390,0 +38682,Darma+dla+zawodnika,318,584,6180190,2657,0 +38683,C0146,313,536,8841266,10362,0 +38685,Wioska+barbarzy%C5%84ska,520,687,745946,6482,0 +38686,Mako+Reactor+1+-+B2F,546,620,8199417,5179,0 +38687,Mefedron+12,395,339,3484132,3333,0 +38688,Wioska+barbarzy%C5%84ska,689,547,17714,7741,0 +38689,Wioska+barbarzy%C5%84ska,570,679,7756002,10171,0 +38690,Mefedron+10,391,337,3484132,3741,0 +38691,Darma+dla+zawodnika,555,689,7860453,10476,6 +38692,%2136+63+Parhauti,633,363,698361257,8309,0 +38693,wioska,620,350,8675636,10146,0 +38695,%2A118%2A,363,364,699273451,9017,0 +38696,092+Litwa,576,464,7092442,10495,0 +38697,KR%C3%93L+PAPI+WIELKI,641,630,698191218,9981,0 +38698,Wioska+barbarzy%C5%84ska,629,646,698346318,6251,0 +38699,Le+Coq,560,315,699072129,5799,0 +38700,%230232+Kamileq69+dar,475,306,1238300,10178,0 +38702,B%23010,691,458,2065730,9797,0 +38703,--14--,345,607,8877156,7286,0 +38704,I106,688,446,699722599,6596,0 +38705,%2A3603%2Aa+Tu+jest+przysz%C5%82o%C5%9B%C4%87,658,398,7973893,10180,0 +38706,-005-,321,574,698704189,9711,0 +38707,psycha+sitting,409,674,699736927,10178,0 +38708,006+3+dni%3F,524,692,849093426,10237,0 +38709,3.Pineapple+Express,522,304,699208929,4148,0 +38710,A+102,368,639,699269923,7418,0 +38711,Bulbulator,587,674,699567608,9634,0 +38712,%2A088%2A,361,371,699273451,10211,0 +38713,Rubiez3,309,469,699265922,9847,0 +38714,HULA,399,339,8123790,1583,0 +38715,Obok+s%C4%85siada+3,383,648,699269923,9549,0 +38716,045g,314,557,698641566,9702,0 +38718,Wow21,369,355,698160606,2890,0 +38719,Rubiez10,309,470,699265922,8060,0 +38720,%230088,562,681,1536231,4006,0 +38721,psycha+sitting,401,666,699736927,10178,0 +38722,FP008,488,696,699605333,10393,0 +38723,15.+Rio,688,483,699804790,9362,0 +38724,Winterhome.074,491,308,848918380,6830,0 +38725,Gattacka,678,426,699298370,9286,0 +38726,%23096%23,626,641,692803,8181,0 +38727,Komornicy+005,348,619,699336777,4935,0 +38728,%23%23%23053%23%23%23,581,679,698285444,10495,0 +38729,nowa+2,465,308,849104546,6871,0 +38730,C0061,310,529,8841266,10362,6 +38731,%23%23%23054%23%23%23,591,674,698285444,10495,0 +38732,%C5%BBUBR+PSYCHIATRYK+023,625,651,33900,6451,0 +38733,.29.+Olanda+m,359,629,7417116,3485,0 +38734,FAKE+OR+OFF,411,325,698231772,9817,0 +38735,010+Hades,693,462,849098769,9027,0 +38736,002,588,674,699567608,3672,0 +38737,%2A018%2A,347,389,699273451,10211,0 +38738,141+Fabianki-Hofek,661,393,699491076,9601,0 +38740,New+World,441,681,698152377,10294,0 +38741,Nicolas+Cage,670,586,849098693,7380,0 +38742,%5B0067%5D,444,313,8630972,10495,0 +38743,K35+-+%5B007%5D+Before+Land,575,319,699088769,9783,0 +38744,Wioska+barbarzy%C5%84ska,391,664,699269923,8216,0 +38745,Didek,666,589,849070946,10481,0 +38746,New+World,447,684,698152377,10139,0 +38747,Gattacka,680,427,699298370,9551,0 +38748,Wioska+barbarzy%C5%84ska,332,415,2418002,4089,0 +38749,Wioska+barbarzy%C5%84ska,420,320,698231772,6482,0 +38750,008,636,636,849099544,9885,0 +38751,psycha+sitting,408,669,699736927,10178,0 +38752,066.+Vroengard,667,589,8337151,10252,0 +38753,Wioska+barbarzy%C5%84ska,311,448,393668,4921,0 +38754,Chata+Hermana,685,555,848932879,10636,9 +38755,Winterhome.043,495,309,848918380,10178,0 +38756,%2A040%2A,345,393,699273451,10211,0 +38757,%4002%40,408,324,699483429,10160,0 +38758,Midgard,616,352,699478692,3925,0 +38759,Wioska+barbarzy%C5%84ska,334,593,7183372,6258,0 +38760,Domi,698,476,849002796,8980,0 +38761,Obok+s%C4%85siada+4,382,648,699269923,9408,0 +38762,%230050+geryk,470,330,1238300,10178,0 +38763,2.Gij%C3%B3n,573,677,698215322,4456,0 +38764,C0054,313,520,8841266,10362,0 +38765,C03+Pozna%C5%84,346,380,3909522,6400,0 +38766,011+tak+o,510,691,849093426,10237,0 +38767,AAA,543,308,1006847,6246,0 +38768,%230243+Kamileq69+dar,476,311,1238300,6995,0 +38769,021,397,335,8153941,7237,0 +38770,Plelinia+wracaj,512,312,8400180,9555,0 +38771,W%C5%82adcy+P%C3%B3%C5%82nocy+13,691,509,699379895,5951,0 +38773,Didus+P,674,575,849070946,5652,0 +38774,Wioska+barbarzy%C5%84ska,401,336,195249,7124,0 +38775,C+002,688,518,8078914,7048,0 +38776,0258,552,678,698659980,10019,0 +38777,D012,613,658,9023703,7649,0 +38778,K%C4%99dzierzyn+Ko%C5%BAle,685,552,848932879,10636,0 +38779,xxx,650,619,692803,9997,0 +38780,MojeDnoToWaszSzczyt,502,307,9299539,10029,0 +38781,Psycho+to+Marka%2C+Narka+%21,317,573,849040142,9475,0 +38782,009+Desant,482,687,699745265,9353,0 +38783,-Yy-,346,605,7183372,10070,0 +38784,Wioska+Zorro+025,672,595,849080702,5543,0 +38785,Gryfios+028,688,558,698666810,11720,0 +38786,W%C5%82adcy+P%C3%B3%C5%82nocy+14,691,529,699379895,5119,0 +38788,065.+Tudosten,667,590,8337151,10362,0 +38789,0152,405,338,699431255,8770,0 +38790,016+NAWRA,659,610,849048867,8405,0 +38791,%C5%81ucznik+na+koniu,682,439,849093742,6256,0 +38792,018Sylwek,471,694,698620694,9761,0 +38793,%23091%23,638,628,692803,9761,0 +38794,Wyspa_13,502,692,2585846,9638,0 +38795,Pitus,501,304,849050849,9422,0 +38796,001,474,690,9003698,10373,0 +38797,031+Metinna,475,690,699834004,4757,0 +38798,Dream+on,307,488,698962117,9744,0 +38799,B012,596,405,699761749,5206,0 +38800,Wioska+barbarzy%C5%84ska,341,393,698807570,8856,0 +38802,Taran,338,599,6180190,10295,0 +38803,085,641,373,2502956,9778,0 +38805,z+001030,359,367,3909522,6305,0 +38806,Indowy+gr%C3%B3d,324,415,699377401,9820,0 +38807,C0188,308,538,8841266,7373,0 +38808,025,448,312,2502956,9940,5 +38809,Pd+06,360,633,698908184,5343,0 +38810,Wioska+barbarzy%C5%84ska,542,690,7860453,6228,0 +38811,Moldor+2,630,355,849049045,11138,0 +38812,%3D%7C20%7C%3D,615,350,9101574,9443,0 +38813,Osada+koczownik%C3%B3w,389,662,699269923,9470,7 +38814,063.,327,587,3475079,2895,0 +38815,psycha+sitting,406,673,699736927,10178,9 +38816,061,614,483,849095227,9827,0 +38817,1009,622,356,699150527,5588,0 +38818,013+Isengard,470,693,698620694,4566,0 +38819,X+%7C+Forest+Cyaaaanku,311,471,699213622,10000,0 +38820,%23085%23,634,642,692803,9761,0 +38821,Swoja4,603,665,6528152,8530,0 +38822,%5B001%5D+Uszanowanko,609,337,699710633,9147,0 +38823,Kentin+ufam+Tobie,329,452,699783765,10000,0 +38824,z181_04,314,442,393668,9881,0 +38825,CSA,526,310,7651093,5747,0 +38826,-+141+-+SS,544,688,849018239,9246,0 +38827,088,682,577,699373599,4043,0 +38828,%7C066%7C+BlackBird,492,688,699393742,10123,0 +38829,Koszyka,685,551,848932879,6825,0 +38830,2.Teneryfa,573,673,698215322,5002,0 +38831,038+invidia,520,693,849093426,10099,0 +38832,bucksbarzy%C5%84skamiiiru,334,396,848955783,5919,0 +38833,004,465,576,848886870,10495,0 +38834,New+World,442,682,698152377,8735,0 +38835,003.,639,371,699098531,10630,0 +38836,037+-+Burgos,690,545,698342159,4329,0 +38837,Chojny,693,470,849100246,2388,0 +38838,C+020,692,512,8078914,6397,0 +38839,New+World,429,683,698152377,10311,0 +38840,Devano3,335,591,7183372,10343,0 +38841,TWIERDZA+.%3A067%3A.,677,568,7154207,9078,0 +38842,051,644,634,699099811,4437,0 +38843,041,652,623,699099811,7237,5 +38844,Chekku+-+meito,332,533,9280477,7240,0 +38845,%C5%BBUBR+.%3A%3A.Adaczu%2F11,627,650,33900,4046,0 +38846,K35+-+%5B008%5D+Before+Land,575,320,699088769,9847,0 +38847,609%7C375,660,387,699580120,9570,5 +38848,KR%C3%93L+PAPI+WIELKI,644,631,698191218,9363,0 +38849,C0037,309,515,8841266,10362,0 +38851,B%23013,690,449,2065730,9797,0 +38852,%236%23,500,483,699098531,7141,0 +38853,051-+Mroczna+Osada,659,398,849035905,8540,0 +38854,O103,347,620,272173,9946,0 +38855,006,311,505,698356304,3163,0 +38856,Hofek+27.,667,400,699491076,3672,0 +38857,Z%C5%82oty+%C5%9Awit,593,329,699883079,4148,0 +38858,%5B012%5D,455,688,699777372,7768,0 +38859,Jan+XX2+Ost+K,690,445,879782,9771,0 +38860,Wioska+barbarzy%C5%84ska,325,419,699856962,7716,0 +38861,%C5%BBUBR+PSYCHIATRYK+021,625,653,33900,6680,0 +38862,z+181-A008,354,382,3909522,6690,0 +38863,001,658,383,698635863,9616,0 +38864,Architekci+Plac%C3%B3w+Boju,337,539,8004076,8752,0 +38865,018,457,656,698650301,4976,0 +38866,Przypa%C5%82ownia,578,679,698723158,3387,0 +38867,Wioska+barbarzy%C5%84ska,347,619,9199885,3388,0 +38868,038,656,620,699099811,10636,0 +38869,.achim.,487,311,6936607,7541,0 +38870,Jestem+Poza+Kontrol%C4%85,345,543,8004076,9880,0 +38871,Out+of+Touch,318,424,698962117,8726,0 +38872,By%C5%82e%C5%9B+w+porz%C4%85dku+008,374,652,699269923,8135,0 +38873,cebul23,369,352,849027025,9825,0 +38874,520,683,559,7038651,5858,0 +38875,Wyspa_23,511,692,2585846,9638,0 +38876,Szale,461,690,699777372,6790,0 +38877,Wow7,369,353,849027025,11989,0 +38878,Winterhome.015,510,310,848918380,10178,0 +38880,Wioska+081,659,604,848971079,8833,0 +38881,Wie%C5%9B+01,338,612,6180190,9976,0 +38882,14.+Metavers,554,311,699072129,9418,0 +38883,051.Stradi,429,318,698365960,10495,0 +38884,C0003,310,515,8841266,10362,0 +38885,O68+Blackburn,681,561,699272880,10300,0 +38886,009+internacionale,348,374,7462660,9761,0 +38887,Wioska+01,569,316,849067192,4659,0 +38888,O042,346,622,272173,9976,0 +38889,Wioska+1,644,627,1647052,9358,0 +38890,Po%C5%82udnie.012,555,681,873575,9963,0 +38891,Taran,340,604,6180190,9956,0 +38892,nowa,607,341,1990750,5178,0 +38893,Rubiez1,307,483,699265922,9816,6 +38894,009.Stradi,435,314,698365960,10411,0 +38895,103,657,617,3589487,11083,0 +38896,123+Wioska-015-,542,392,699491076,10001,0 +38897,007+%2A+Lady+Porto+%2A,694,508,699406750,9493,0 +38899,A+045,362,636,698908184,8087,0 +38900,FAKE+OR+OFF,423,319,698231772,9833,0 +38901,-09-,553,684,7860453,6832,0 +38902,Sony+911,619,646,1415009,8511,0 +38903,a+mo%C5%BCe+off+%3F+%3A%29,672,410,698768565,4580,0 +38904,_PUSTA%2B,687,541,699628084,10362,0 +38905,059.+Jiet,666,592,8337151,10083,0 +38907,Jan+VALLHALLA,684,433,879782,7920,0 +38908,Fajna+080,459,565,699868002,4805,0 +38909,Mrkime,639,368,849099541,4308,0 +38910,Zeta+Reticuli+O,419,324,699323302,10997,0 +38911,B%23026,679,421,2065730,5505,0 +38912,Przyczajony+Tygrys,615,349,7340529,9803,0 +38913,X+%7C+Forest+Cyaaaanku,312,468,699213622,10000,0 +38914,Moldor+9,634,355,849049045,9074,0 +38915,C12,692,531,848995478,3699,0 +38916,Wioska+V,325,585,699671197,10551,0 +38917,038,691,453,699272633,5909,0 +38918,062-+Mroczna+Osada,596,336,849035905,10126,0 +38919,%C5%9Awinka,318,552,699265922,2358,0 +38920,001,640,634,849099544,9664,0 +38921,Wioska+barbarzy%C5%84ska,578,673,698215322,3257,0 +38922,sad+frog,587,672,699567608,10479,0 +38923,D014,614,658,9023703,7024,0 +38924,077,693,519,849095227,9973,1 +38925,Nowy+Pocz%C4%85tek%21+001,338,597,698926585,9905,0 +38926,003+%2A+Lady+Porto+%2A,694,506,699406750,12154,0 +38927,Wioska,321,565,849099258,6712,0 +38928,020+NAWRA,656,611,849048867,5601,0 +38929,015+NAWRA,655,613,849048867,7553,0 +38930,Skarbisz%C3%B3w,682,550,848932879,10728,0 +38931,Wioska+barbarzy%C5%84ska,521,310,1990750,10068,0 +38932,123,470,689,9003698,10373,0 +38933,KHORINIS+02,377,649,849099924,2579,0 +38934,Wioska+barbarzy%C5%84ska,689,492,699429153,9825,0 +38935,Pobozowisko,414,584,699513260,5516,0 +38936,Ob+Konfederacja,429,320,848915730,9690,0 +38937,Szulernia,383,369,7249451,6973,0 +38938,New+World,448,685,698152377,10294,0 +38939,FP035,474,696,699605333,5968,0 +38940,%2A120%2A,350,386,699273451,9196,0 +38941,Winterhome.022,500,312,848918380,10178,0 +38942,%23005+Zenitobiusz,366,440,849096215,4076,0 +38943,FAKE+OR+OFF,412,324,698231772,9830,0 +38944,%23028%23,621,653,692803,9902,0 +38945,nr2,584,675,364126,9098,0 +38946,Orze%C5%82+10,696,486,699413581,4905,0 +38947,Orze%C5%82+9,697,485,849099640,6739,0 +38948,KONFA+TO+MARKA%2C+NARKA,315,453,698152377,10291,0 +38949,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,453,692,8980651,8034,0 +38950,Gold+Experience,589,671,699567608,10564,9 +38951,Wonderwall,310,553,698962117,9579,0 +38952,%2A193%2A,366,362,699273451,10211,0 +38953,Swoja6,606,666,6528152,8631,0 +38954,Wioska+peres5130,536,307,849044705,6405,0 +38955,New+World,448,683,698152377,10292,0 +38956,1.03,432,676,699827112,9168,0 +38957,Szale,463,687,698585370,9404,0 +38958,%2A198%2A,364,357,699273451,10211,0 +38959,D.007,392,656,849088243,8354,0 +38960,Wsch%C3%B3d+X6,693,537,698562644,10125,0 +38961,%230272+Gwen1,474,307,1238300,5184,0 +38962,C002,676,582,8138506,6544,0 +38963,04.wiocha,332,591,7183372,6430,0 +38964,z+181-A009,355,379,3909522,7521,0 +38965,0042,569,321,699485250,4137,0 +38966,035.xxx,483,690,699393742,4068,0 +38967,001,629,647,698346318,8330,0 +38968,S005,598,671,8627359,9225,0 +38969,046.+Warkoczynka,664,600,8337151,10083,4 +38970,%2A181%2A,324,412,699273451,10211,0 +38971,%C5%BBUBR+PSYCHIATRYK+009,621,652,33900,6427,0 +38972,0421,561,685,698659980,10019,0 +38973,Mordor,646,624,849098822,4840,0 +38974,004+NAWRA,663,611,849048867,10164,2 +38975,0420,555,684,698659980,10019,0 +38976,C0065,307,528,8841266,10362,0 +38977,000+Plutosea,318,561,9280477,10452,0 +38978,009.SIEMANO,680,443,849098769,10135,0 +38979,%2A%2A28%2A%2A,677,431,849098782,9431,0 +38980,0.09+Noli+timere,467,692,699725436,8710,0 +38982,A+072,360,640,272173,4234,0 +38984,%5B0068%5D,438,315,8630972,10495,0 +38985,062,515,696,2293376,4292,0 +38986,141+invidia,541,693,849093426,6040,0 +38987,Iskra,598,334,849061374,9761,6 +38989,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,645,699269923,8988,0 +38990,Bucksbarzy%C5%84sKamiiiru,429,509,848955783,6148,0 +38991,Ozimek,675,552,848932879,10838,0 +38992,123,472,687,9003698,10373,0 +38993,Nargothrond,634,362,849086491,9835,0 +38994,C108,366,641,699383279,4644,0 +38995,Wioska+barbarzy%C5%84ska,308,547,5997814,5798,0 +38996,Wioska+barbarzy%C5%84ska,387,662,699269923,6929,0 +38997,%C5%BBUBR+.%3A%3A.Adaczu%2F12,625,646,33900,2893,0 +38998,z+001026,353,372,3909522,9126,0 +38999,Rubiez15,307,484,699265922,3877,0 +39000,psycha+sitting,421,679,699736927,10311,0 +39001,Szlachcic,388,348,3484132,10487,0 +39002,Wioska+barbarzy%C5%84ska,397,334,699406776,3508,0 +39003,New+World,436,683,698152377,10291,0 +39004,010,602,332,8842936,9763,0 +39005,B009,516,308,699208929,7375,0 +39006,%23025%23,620,654,692803,9761,0 +39007,TWIERDZA+.%3A028%3A.,685,566,7154207,10356,0 +39008,Sok%C3%B3%C5%82ka,650,616,849066044,9494,0 +39009,094+Tomek,689,509,2135129,4769,0 +39010,%5B013%5D,455,686,699777372,4995,0 +39011,New+World,426,679,698152377,10311,0 +39012,015,512,675,2293376,9993,0 +39013,%2AINTERTWINED%2A,498,689,698704189,6745,0 +39014,647%7C410+Wioska+barbarzy%C5%84ska,647,410,6822957,4625,0 +39015,Wioska+barbarzy%C5%84ska,559,319,699072129,3980,0 +39016,041,324,581,849098688,6050,0 +39018,_PUSTA+%21,686,540,699628084,9595,0 +39019,Wioska+barbarzy%C5%84ska,338,388,698807570,10047,0 +39020,000+Plutosea,320,559,9280477,9976,0 +39022,Klaudek15,632,364,849092309,5151,0 +39023,-+01+-+JFK,467,313,848902744,8992,0 +39024,I083,681,442,699722599,8662,0 +39025,Wioska+barbarzy%C5%84ska,398,339,699406776,6120,0 +39026,Szlachcic,377,356,698160606,10420,0 +39027,lala,586,676,699567608,9768,0 +39028,Dream+on,311,492,698962117,9497,0 +39029,Wioska+barbarzy%C5%84ska,627,348,9291984,3837,0 +39031,Z%7C004%7C+Florencja,474,693,699393742,9034,0 +39032,Wyspa_47,502,697,2585846,6945,0 +39033,Szlachcic,378,353,698160606,9356,0 +39034,%3A%3A%3A+W+%3A%3A%3A,302,500,848917570,2515,0 +39035,Forteca%2A003%2A,533,694,1078121,9211,0 +39036,.18.+Colomier+m,360,630,272173,6999,0 +39037,Out+of+Touch,323,429,698962117,8739,0 +39038,Out+of+Touch,313,435,698962117,6187,0 +39039,Wioska+barbarzy%C5%84ska,691,474,699429153,9825,0 +39040,%3D%7C02%7C%3D,650,384,9101574,10495,0 +39041,XDX,610,337,699098531,7215,0 +39042,Wioska+barbarzy%C5%84ska,681,560,7038651,3555,0 +39043,Dream+on,306,502,698962117,8074,0 +39044,psycha+sitting,400,661,699736927,10311,0 +39045,K35+-+%5B041%5D+Before+Land,572,321,699088769,4276,0 +39046,01+La+Mancha,382,651,699269923,9324,0 +39047,029+invidia,529,691,849093426,9788,0 +39048,Wioska+1,545,458,698881022,3212,0 +39049,Osada+koczownik%C3%B3wxx,336,399,698807570,10049,4 +39050,%2A%2AINTERTWINED%2A,504,693,698704189,9711,0 +39051,Out+of+Touch,322,421,698962117,9742,0 +39052,%C4%86m%C3%B3w,586,670,699567608,8544,0 +39053,%23092%23,626,642,692803,9761,0 +39054,A007,639,373,699520575,7994,0 +39055,Jan+AirForce+Ost+K,687,449,879782,9789,9 +39056,Taran,335,608,6180190,9956,0 +39057,META,580,672,699567608,8149,0 +39058,O048,346,624,272173,9876,0 +39059,Wioska+barbarzy%C5%84ska,541,315,849044705,3646,0 +39060,000+Plutosea,318,560,9280477,10068,0 +39061,%23Yamakashi%23,317,557,849099601,3324,0 +39062,Mefedron+11,395,338,3484132,4183,0 +39063,Sernik+z+Andzynkami,697,495,699126484,9744,0 +39064,KONFA+TO+MARKA%2C+NARKA,312,450,698152377,10290,0 +39065,bucksbarzy%C5%84skamiiiru,333,393,848955783,4824,0 +39066,BRICKLEBERRY,556,310,699072129,3897,0 +39067,006,646,631,849099544,7300,0 +39068,Out+of+Touch,321,427,698962117,8754,0 +39070,048.,327,590,6180190,4304,0 +39071,D14,683,556,848995478,11130,3 +39072,Gryfios+025,685,558,698666810,11876,0 +39073,CSA,525,310,7651093,3758,0 +39074,Moldor,629,356,849049045,7761,0 +39075,TWIERDZA+.%3A054%3A.,684,573,7154207,7937,0 +39076,Wioska+Zorro+027,658,616,849080702,11922,0 +39077,012,635,638,849099544,5618,0 +39078,Wioska+barbarzy%C5%84ska,336,394,698807570,9501,0 +39079,Bandi+si%C4%99+rozbija+%3B%2F,307,538,926823,9753,0 +39080,Wioska+barbarzy%C5%84ska,342,385,699541376,2316,0 +39081,%23%23+Nieznana+%23%23,638,642,699778867,6868,0 +39082,Wioska+barbarzy%C5%84ska,503,596,606407,10291,0 +39083,stickman+10,595,669,9023703,8123,0 +39084,070.,321,582,3475079,2152,0 +39085,C0290,311,508,8841266,5915,0 +39086,New+World,432,682,698152377,6100,0 +39087,-+186+-+SS,532,686,849018239,7434,0 +39088,%C5%BBUBR+.%3A%3A.Adaczu%2F13,621,649,33900,2706,0 +39089,%5B0081%5D,444,312,8630972,10495,0 +39090,Ave+Why%21,500,693,699121671,4101,0 +39091,14.+Wioska+Raukodel,646,374,699738350,10543,0 +39092,Po%C5%82udnie.017,550,685,873575,10251,0 +39093,027,630,648,699373599,5675,0 +39094,Po%C5%82udnie.003,554,678,873575,9985,0 +39095,008+%2A+Lady+Porto+%2A,695,507,699406750,7960,0 +39096,0023.+Y+-,690,533,7125212,4313,0 +39097,Wioska+Wiki+6,520,696,849100354,7137,0 +39098,%2136+63+Patrauti,632,363,698361257,9860,5 +39099,Psycho+to+Marka%2C+Narka+%21,319,573,849040142,10016,0 +39100,038.xxx,479,693,8612358,3221,0 +39101,039,655,621,699099811,9976,0 +39102,Wioska+barbarzy%C5%84ska,396,339,3484132,2397,0 +39103,Wioska+020,675,592,7999103,5696,0 +39104,KR%C3%93L+PAPI+WIELKI,662,613,698191218,10000,6 +39106,Topornik,648,379,7340529,11130,0 +39107,Szlachcic,690,512,8096537,5703,0 +39108,0036+Wioska+barbarzy%C5%84ska,449,691,849037407,9353,0 +39109,Osada,321,566,849099258,7273,7 +39110,Szlachcic,389,345,3484132,10474,0 +39111,2.Oviedo,575,681,698215322,4467,0 +39112,Wioska+barbarzy%C5%84ska,403,334,699406776,8264,0 +39114,Wow5,370,356,699730714,9436,0 +39115,Xanz,313,475,6258092,10316,0 +39116,B%C4%85kowa,573,679,698723158,10316,0 +39117,Out+of+Touch,320,433,698962117,5884,0 +39118,C0117,308,533,8841266,10229,0 +39119,Wyspa_46,500,696,2585846,9638,0 +39120,Wioska+barbarzy%C5%84ska,404,333,699406776,4154,0 +39121,%2A001%2A,313,537,8630972,10495,0 +39122,Warkoczynka+3,667,599,699778867,8952,0 +39124,KR%C3%93L+PAPI+WIELKI,649,629,698191218,10444,0 +39125,Psycho+to+Marka%2C+Narka+%21,319,576,849040142,9761,0 +39126,Seba1234567,672,589,849099689,2451,0 +39127,042g,312,562,698641566,9809,0 +39128,Wioska+barbarzy%C5%84ska,531,305,8606809,3565,0 +39129,Szale,469,691,699725436,9898,0 +39130,4.Podziemny+Klimat,521,304,699208929,4091,0 +39131,Klaudek26,635,356,849092309,1973,0 +39132,O087,345,621,272173,9819,0 +39133,%230229+Segadorr+dar,456,307,1238300,7401,0 +39134,kamilkaze135+%2301.1,658,391,699705601,9805,0 +39135,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,478,693,8980651,9783,0 +39136,xxx,651,620,692803,9909,0 +39137,I093,685,445,699722599,6725,0 +39138,C003,674,584,8138506,6260,0 +39139,040,691,455,699272633,5284,0 +39140,Psycho+to+Marka%2C+Narka+%21,317,574,849040142,5193,0 +39141,C0147,313,539,8841266,10362,1 +39142,035,656,617,699099811,12154,0 +39143,229,421,323,7271812,3178,0 +39144,B.13+duchy+serca+puszczy,559,313,849026145,2006,0 +39145,021+NAWRA,658,615,849048867,5850,0 +39146,%23hakutatu%23,317,556,849099601,4041,0 +39147,Dream+on,311,504,698962117,9505,0 +39148,Dream+on,306,509,698962117,9740,0 +39149,D.016,395,664,849088243,5279,0 +39150,C4.,312,549,849095482,2245,0 +39151,psycha+sitting,410,674,699736927,10311,0 +39152,111,590,670,849097799,4578,0 +39153,057+BanaN,691,524,2135129,9661,0 +39154,26.+Wioska+Raukodel,652,381,9320272,3144,0 +39155,012+Missouri,474,645,699238479,9815,0 +39156,AAA,549,315,1006847,9428,0 +39157,Jan+i+co+dalej+Ost+K,683,445,879782,9547,0 +39158,Obok+s%C4%85siada+1,384,650,699269923,9611,0 +39159,Swoja5,605,667,6528152,8530,0 +39160,Wioska+barbarzy%C5%84ska,386,659,699269923,9473,0 +39162,Devano6,333,590,7183372,10247,0 +39163,Komornicy+027,348,613,699336777,9825,0 +39164,A+047,363,636,698908184,6188,0 +39165,%2F003%2FFTP%2F,315,539,698388578,10237,0 +39166,-+132+-+SS,545,693,849018239,10000,0 +39167,Merida.waleczna2,592,334,849083294,1850,0 +39168,TWIERDZA+.%3A029%3A.,692,561,7154207,10222,0 +39169,Domek+JOJO-+2+%2B%2B+Tadek,362,640,699269923,9913,0 +39170,N.C.+Zapowied%C5%BA,668,588,849098693,4152,0 +39171,Out+of+Touch,322,425,698962117,9744,0 +39172,Gattacka,609,412,699298370,9535,0 +39173,2.Las+Palmas,570,683,698215322,5003,0 +39174,A0200,383,475,8841266,10362,0 +39175,AAA,546,315,1006847,5852,0 +39176,-003-+Domek+%C5%BBelazny,658,620,849096631,9115,3 +39178,Mordor7,315,548,848978903,5564,0 +39179,z+001027,353,370,3909522,6490,0 +39180,0303,564,681,698659980,8104,0 +39181,z181_01,312,440,393668,9882,9 +39182,Dream+on,308,492,698962117,9761,0 +39183,psycha+sitting,414,678,699736927,10178,0 +39184,115+SansPL,326,576,699382126,10319,5 +39185,014+Wincanton,619,348,8675636,10252,0 +39186,Wioska+barbarzy%C5%84ska,695,526,699379895,4832,0 +39188,Wyspa_20,514,690,2585846,9638,0 +39189,ZZZ,459,692,8980651,7810,0 +39190,056.,323,584,3475079,2636,0 +39191,marmag81%2F02,307,471,1096254,7948,0 +39192,Wioska+02,568,316,849067192,2552,0 +39194,%23Samarama%23,314,555,849099601,2567,0 +39195,K35+-+%5B040%5D+Before+Land,576,318,699088769,6504,0 +39196,Szlachcic,385,341,3484132,10296,0 +39197,Dream+on,305,487,698962117,9505,0 +39198,New+Land+08,340,397,849064752,3753,0 +39199,137+Dolina+Gliny,665,395,699491076,10083,2 +39200,047.,327,589,3475079,1728,0 +39201,007+NAWRA,663,608,849048867,10031,0 +39202,Szlachcic,397,342,3484132,10476,0 +39203,-25-,641,366,698361257,2519,0 +39205,031+-+Nowy+Pocz%C4%85tek...,376,648,699269923,9497,0 +39206,_PUSTA,662,607,698768565,6572,0 +39207,Wioska+barbarzy%C5%84ska,396,667,699736927,3261,0 +39208,Szlachcic,378,345,698160606,7279,0 +39209,009,634,635,849099544,6355,0 +39210,.achim.,485,306,6936607,7276,0 +39211,Sernik+z+Andzynkami,697,500,699126484,9797,0 +39212,Wyspa_22,509,693,2585846,9638,0 +39213,O71,683,561,699272880,10294,0 +39214,B17,688,551,848995478,10798,0 +39215,D005,611,659,9023703,7159,0 +39217,a+mo%C5%BCe+off+%3F+%3A%29,670,407,698768565,4870,0 +39218,011+NIE+RUSZAJ,688,448,849098769,9717,0 +39219,022+wlodas62+%3A%29,562,642,699828685,10117,0 +39220,%2136+64+Zamostea,646,368,698361257,8774,0 +39221,%23093%23,650,630,692803,9761,5 +39222,D010,612,660,9023703,7165,0 +39223,010+NAWRA,663,613,849048867,8538,0 +39224,Wioska+milupa3+and+IdziPR,416,416,117208,6898,0 +39225,%3F%3F%3F,484,307,698489071,9225,0 +39226,Wioska+barbarzy%C5%84ska,691,540,848946700,6727,0 +39227,Wioska+barbarzy%C5%84ska,518,310,698350371,7000,0 +39228,Osada+koczownik%C3%B3w,364,356,849101962,3916,7 +39229,TWIERDZA+.%3A021%3A.,683,569,7154207,10223,0 +39230,szlachcic%3Btaran+2,590,324,7340529,10654,0 +39231,Winterhome.056,499,308,848918380,10178,7 +39232,FAKE+OR+OFF,413,323,698231772,9819,0 +39233,Taran,336,608,6180190,9956,0 +39234,Wioska+barbarzy%C5%84ska,520,308,698350371,8327,0 +39235,ZZZ,460,694,8980651,8087,0 +39236,Dream+on,309,493,698962117,9491,0 +39237,%7C048%7C+Bobrek,497,690,699393742,9750,0 +39238,014,633,636,849099544,5599,0 +39239,Ob+Konfederacja,427,322,848915730,9291,0 +39240,Wioska+barbarzy%C5%84ska,311,447,393668,9148,0 +39241,Szlachcic,383,345,3484132,9623,0 +39242,BRZEG+JORDANU+%7C+009,694,523,9228039,4309,0 +39243,004,648,631,698234770,8656,0 +39244,-+146+-+SS,545,686,849018239,9830,0 +39245,Gryfios+027,685,557,698666810,11880,0 +39246,024,606,339,849057572,3713,0 +39247,CALL+1053,653,626,699784536,10311,0 +39248,Didek,676,581,849070946,10495,0 +39249,Wioska+barbarzy%C5%84ska,332,601,7183372,7509,0 +39250,Wioska+barbarzy%C5%84ska,640,368,699837826,1522,0 +39251,%2AINTERTWINED%2A,505,696,698704189,7263,0 +39252,%2136+64+Bilca,648,367,698361257,9653,0 +39253,%5B0167%5D,456,308,8630972,7959,0 +39254,XDX,610,336,699098531,5767,0 +39255,bucks+x+kamiiiru,418,431,848955783,10164,0 +39256,001,646,630,698234770,9929,0 +39257,KONFA+TO+MARKA%2C+NARKA,312,457,698152377,10291,0 +39258,AAA,527,307,1006847,5516,0 +39259,Wioska+barbarzy%C5%84ska,387,652,699269923,8450,0 +39260,KR%C3%93L+PAPI+WIELKI,635,645,698191218,10436,0 +39261,Wioska,626,356,849056744,5772,0 +39263,Gattacka,685,432,699298370,9064,0 +39264,122,683,424,849088515,4834,0 +39265,MM001,698,494,848899726,7524,0 +39266,OFF,656,602,849014413,10345,0 +39267,%7E%7E063%7E%7E,628,645,7829201,8223,0 +39268,%23029%23,624,651,692803,9761,0 +39269,Psycho+to+Marka%2C+Narka+%21,320,570,849040142,4695,0 +39270,C0053,306,524,8841266,10362,0 +39271,Jan+WAFFEN,686,438,879782,7054,0 +39272,psycha+sitting,411,677,699736927,10311,0 +39273,B4.,312,546,849095482,3357,0 +39274,A+042,364,635,6948793,6457,0 +39275,274...gulden,460,306,6920960,10309,0 +39276,%2A199%2A,367,373,699273451,5812,0 +39277,TWIERDZA+.%3A083%3A.,679,570,7154207,6513,0 +39278,Ave+Why%21,493,697,699121671,6083,0 +39279,D018,616,655,9023703,6450,0 +39280,042.+barbarzy%C5%84ska%2C+ha%2C+ha+-_-,696,466,7494497,10285,0 +39281,Dream+on,309,505,698962117,9750,0 +39282,Szlachcic,390,340,3484132,10952,0 +39283,K35+-+%5B009%5D+Before+Land,580,324,699088769,9783,0 +39284,Wioska+barbarzy%C5%84ska,400,333,699406776,4556,0 +39285,Wioska+barbarzy%C5%84ska,687,559,7038651,2145,0 +39286,C.006,696,492,9188016,10000,0 +39287,Wioska+barbarzy%C5%84ska,588,323,699402816,9835,0 +39288,023+Borg,629,648,699373599,7807,0 +39289,Ronin+P,601,628,698768565,9995,0 +39290,nowa+1,464,309,849104546,6742,0 +39291,Orze%C5%82+5,691,491,699413581,8314,0 +39292,Winterhome.032,511,310,848918380,10178,0 +39293,kamilkaze135+%2302,657,393,699705601,9071,0 +39294,Taran,611,343,1990750,6789,0 +39295,%5B0056%5D,447,314,8630972,10495,0 +39296,z+00102,358,372,3909522,10222,0 +39298,Ob+Konfederacja,427,323,848915730,9021,0 +39300,007,319,569,849099463,9020,0 +39301,%7E+B%C5%81ONIE+%7E,316,446,393668,3433,0 +39302,Zwardo%C5%84,539,313,7139853,2670,0 +39303,Wow4,372,356,698160606,11077,7 +39304,A+059,360,637,698908184,8641,0 +39305,Wioska+barbarzy%C5%84ska,534,313,849044705,2816,0 +39306,002+NAWRA,661,614,849048867,10845,0 +39307,Rubiez13,306,462,699265922,6859,0 +39308,0021+Wioska+barbarzy%C5%84ska,449,689,849037407,10085,0 +39309,Wioska+barbarzy%C5%84ska,684,547,7038651,5590,0 +39310,%23010.+Roast+Steak+Burger,438,685,848896948,9999,3 +39311,z+001033qqqqqqqqqqqqqqqqqq,355,367,3909522,10393,0 +39312,.achim.,521,412,6936607,10276,0 +39313,XDX,611,338,699098531,8328,0 +39314,C+011,689,512,8078914,7249,0 +39315,Wioska+barbarzy%C5%84ska,642,364,698361257,4782,0 +39316,123,466,688,9003698,10373,0 +39317,-+139+-+SS,538,688,849018239,10000,0 +39319,Wioska+Gusman,655,606,8224678,4859,0 +39320,psycha+sitting,416,676,699736927,10178,0 +39321,044+-+Nowy+Pocz%C4%85tek...,374,653,699269923,7966,0 +39322,N.C.+Historia+zemsty,672,587,849098693,5933,0 +39323,004+normalny+ch%C5%82opak,525,691,849093426,10273,0 +39324,0004,423,322,2321390,4897,0 +39325,%3F%3F%3F,481,310,698489071,8360,0 +39326,Suppi,324,422,699856962,9550,0 +39327,Wioska+barbarzy%C5%84ska,590,320,828637,9889,0 +39328,%23099%23,631,638,692803,8514,0 +39329,Po%C5%82udnie.011,553,687,873575,10020,0 +39330,006.+Gw%C3%B3%C5%BAd%C5%BA+do+trumny,557,319,699072129,10221,0 +39331,Winterhome.023,503,311,848918380,10178,0 +39332,087+Wioska+barbarzy%C5%84ska,606,425,699491076,10001,0 +39333,N.C.+Nieweso%C5%82e+miasteczko,671,584,849098693,5345,0 +39334,kamilkaze135+%2307,659,396,699705601,10311,0 +39335,031+-+San+Sebastian,693,526,698342159,8089,0 +39336,118,684,431,849088515,7564,0 +39337,XDX,589,327,699098531,3982,0 +39338,-+135+-+SS,541,691,849018239,10000,0 +39339,C0183,305,537,8841266,7881,0 +39340,O%C5%82owiany+gr%C3%B3d,319,418,699377401,4860,0 +39342,2.Kartagena,575,682,698215322,4253,0 +39343,-+142+-+SS,538,689,849018239,9815,0 +39344,0314,559,681,698659980,8541,0 +39346,%5B046%5D+Wioska+barbarzy%C5%84ska,675,420,849095068,9470,0 +39347,FP023,479,695,699605333,10393,0 +39348,0005,422,322,2321390,5493,0 +39349,KR%C3%93L+PAPI+WIELKI,640,632,698191218,9361,0 +39350,Gryfios+024,686,554,698666810,11712,0 +39352,Zeta+Reticuli+O,418,323,699323302,11321,0 +39353,Wioska+barbarzy%C5%84ska,341,612,9199885,3050,0 +39354,%5B038%5D+Wioska+barbarzy%C5%84ska,672,417,849095068,9288,0 +39355,Dream+on,310,504,698962117,9496,0 +39356,New+World,430,681,698152377,8745,0 +39357,Wioska+007,694,529,2999957,3873,0 +39358,D.026,389,655,849088243,2928,0 +39359,%5B0148%5D,451,310,8630972,8951,0 +39360,AAA,550,308,1006847,9168,0 +39361,%7E083.,469,693,7139820,5542,0 +39362,B%23017,678,431,2065730,9797,0 +39363,kamilkaze135+%2309,656,388,699705601,9022,0 +39364,%230231+Kamileq69+dar,472,306,1238300,9707,0 +39365,023.,643,375,698361257,9162,0 +39366,Wioska+2,500,310,849099342,9124,0 +39367,Rubiez12,307,464,699265922,6250,0 +39368,C0118,311,531,8841266,10342,0 +39369,%C5%BBUBRAWKA+B001+marko91,622,617,33900,10087,0 +39370,Wioska+barbarzy%C5%84ska,563,318,699072129,5706,0 +39371,poludnie+9,587,671,699567608,8607,0 +39372,Dream+on,302,491,698962117,9276,0 +39373,Argon,678,418,699738350,9668,0 +39374,MojeDnoToWaszSzczyt,498,305,9299539,9967,0 +39375,0116,394,665,7085510,9194,5 +39376,008,671,402,699738350,9472,0 +39377,xzc,496,696,8827094,8630,0 +39378,001,682,419,699738350,9969,0 +39379,Szlachcic,384,345,698160606,8150,0 +39380,KR%C3%93L+PAPI+WIELKI,645,635,698191218,10212,0 +39381,016.+ja+wiem,695,483,7494497,9417,0 +39382,KR%C3%93L+PAPI+WIELKI,693,533,698191218,7883,0 +39383,C0047,312,522,8841266,10362,0 +39384,03.+Wioska+Raukodel,653,379,7340529,11130,0 +39385,Szale,458,691,699777372,7585,0 +39386,FAKE+OR+OFF,411,324,698231772,9816,0 +39387,kamilkaze135+%2310.1,655,385,699705601,6954,0 +39388,Szlachcic,387,347,3484132,10478,0 +39389,ManieK,340,615,9199885,9172,4 +39390,003+NAWRA,664,610,849048867,10442,0 +39391,Wo%C5%82owa+Turnia,311,482,849013126,7351,0 +39392,kamilex,681,420,849095435,3548,0 +39393,%3F%3F%3F,479,306,698489071,10083,0 +39394,Wioska+barbarzy%C5%84ska,326,423,699856962,7786,0 +39395,Wioska+barbarzy%C5%84ska,626,649,1415009,9863,0 +39396,Wie%C5%9B+barbarzy%C5%84c%C3%B3w,582,680,698215322,8371,0 +39397,A054,612,654,9023703,6295,0 +39398,Szale,459,686,698585370,7637,0 +39399,Wyspa_01,515,694,2585846,7589,4 +39400,Out+of+Touch,326,446,698962117,9968,0 +39401,X+%7C+Forest+Cyaaaanku,311,464,699213622,10000,0 +39402,Dream+on,309,487,698962117,9744,0 +39403,Za%C5%82om,700,482,849099640,11122,0 +39404,-+177+-+SS,549,691,849018239,6920,0 +39405,%2A019%2A,346,389,699273451,10211,0 +39406,-002,362,639,699269923,10144,0 +39407,K-F+002,551,692,7860453,4122,0 +39408,-06-,554,693,7860453,8557,0 +39409,BRICKLEBERRY,548,307,699072129,5836,0 +39410,C5.,311,550,849095482,1974,0 +39411,005.,566,320,699072129,4900,0 +39412,Wioska+barbarzy%C5%84ska,309,547,5997814,5112,0 +39413,Wioska+barbarzy%C5%84ska,342,614,9199885,8980,0 +39414,Bulowice,542,312,7139853,8542,0 +39415,Wioska+barbarzy%C5%84ska,694,458,849098769,4354,0 +39416,SOKzGUMIjag%C3%B3d,648,378,849059491,9499,0 +39417,Wioska+barbarzy%C5%84ska,581,320,828637,10475,0 +39418,C+012,693,510,8078914,5342,0 +39419,Jan+NEW1+Ost+K,688,454,879782,9688,0 +39420,Wioska+barbarzy%C5%84ska,331,600,7183372,6405,0 +39421,KR%C3%93L+PAPI+WIELKI,659,619,698191218,10000,0 +39422,227,414,330,7271812,6452,0 +39423,Szlachcic,696,476,699429153,9924,8 +39424,046+invidia,521,692,849093426,9472,0 +39425,003,629,352,9060885,3086,0 +39426,SOKzGUMIjag%C3%B3d,647,380,849059491,10497,0 +39427,By%C5%82e%C5%9B+w+porz%C4%85dku+007,373,651,699269923,9848,0 +39428,Out+of+Touch,316,425,698962117,9203,0 +39429,%3D01%3D,582,681,9266092,2120,0 +39430,041.,322,584,3475079,1587,0 +39431,Wioska+dragonk6,392,661,699269923,9515,0 +39432,Dream+on,305,508,698962117,3302,0 +39433,Domi+7,697,471,849002796,7789,0 +39434,010.+Natolin,315,449,849098966,5564,0 +39435,D004,611,658,9023703,10229,0 +39436,AAA,625,345,7555180,10495,0 +39437,02.+George+Flinston,550,310,699072129,10311,0 +39438,%230295+mastaw,471,307,1238300,5533,0 +39439,g%C3%B3rska+forteca,682,426,699738350,9570,8 +39440,I091,683,443,699722599,8865,0 +39441,Obok+s%C4%85siada+5,382,649,699269923,9575,0 +39442,Dream+on,305,489,698962117,9742,0 +39443,Wioska+barbarzy%C5%84ska,343,614,9199885,9167,0 +39444,Wioska+barbarzy%C5%84ska,526,309,7758085,8043,5 +39445,KR%C3%93L+PAPI+WIELKI,640,629,698191218,9369,0 +39446,xxxx,428,685,849037407,10435,0 +39447,Wioska+barbarzy%C5%84ska,583,327,698200480,2167,0 +39448,C02+Gniezno,347,379,3909522,6287,0 +39449,Wioska+barbarzy%C5%84ska,305,510,699510045,2442,0 +39450,Osada+koczownik%C3%B3w,515,697,699781762,10495,1 +39452,Wioska+barbarzy%C5%84ska,638,357,848973715,2445,0 +39453,Wioska+barbarzy%C5%84ska,329,598,7183372,6466,0 +39454,Wioska+barbarzy%C5%84ska,390,663,699269923,9003,0 +39455,%5B28%5D+barbarzy%C5%84ska,679,418,699785935,4745,0 +39456,TARAN,542,686,7860453,9248,0 +39457,Wyspa_25,512,693,2585846,9638,0 +39458,EO+EO,305,512,699697558,10252,0 +39459,START+01,584,673,848887199,6537,0 +39460,03.Jerry,335,398,698807570,8963,0 +39461,Dream+on,303,492,698962117,9559,0 +39462,%2136+64+Tautesti,647,367,698361257,8763,0 +39463,B002,518,302,699208929,10136,0 +39464,Pd+10,363,631,272173,7021,0 +39465,Wioska+barbarzy%C5%84ska,565,316,699072129,8257,0 +39466,2.Jaen,568,680,698215322,10051,0 +39467,Ave+Why%21,488,695,699121671,9030,0 +39468,Taran,333,608,6180190,10189,0 +39469,046g,315,558,698641566,9809,0 +39470,%3F%3F%3F,481,306,698489071,10224,0 +39471,0000,696,516,112401,2840,0 +39472,002.Stradi,439,314,698365960,10495,2 +39474,Daleko,649,373,7340529,9885,0 +39475,C0074,305,518,8841266,10362,0 +39476,skiba,613,661,848909464,10242,0 +39477,z181_20,311,437,393668,8378,0 +39478,Dream+on,301,495,698962117,9486,0 +39479,%5B0071%5D,446,316,8630972,10495,0 +39480,Padre,671,591,849099955,3527,0 +39481,KONFA+TO+MARKA%2C+NARKA,306,455,698152377,10290,6 +39482,TARAN,542,689,7860453,9623,0 +39483,0.14+Szale,466,691,699827112,9744,0 +39484,bucksbarzy%C5%84skamiiiru,339,385,848955783,2442,0 +39485,podgrzybek,665,600,1715091,9744,0 +39486,Winterhome.077,487,309,848918380,7357,0 +39487,%C5%BBUBR+.%3A%3A.Adaczu%2F14,619,649,33900,3305,0 +39489,045+-+Nowy+Pocz%C4%85tek...,375,654,699269923,7684,0 +39490,060.Stradi,453,316,698365960,10346,0 +39491,Wioska+barbarzy%C5%84ska,342,389,698807570,9135,0 +39492,Szale,458,686,698585370,9684,0 +39493,KONFA+TO+MARKA%2C+NARKA,311,453,698152377,10291,0 +39494,011,617,337,8842936,10418,0 +39496,FAKE+OR+OFF,411,322,698231772,9838,0 +39497,K35+-+%5B010%5D+Before+Land,582,321,699088769,9429,0 +39498,062.Stradi,454,317,698365960,10064,0 +39499,Taran,334,604,6180190,9959,0 +39500,Winterhome.010,515,305,848918380,10178,8 +39501,049,485,401,698739350,6178,0 +39502,002,631,647,698346318,7808,0 +39503,Wsch%C3%B3d+X9,692,537,698562644,8893,0 +39504,Po%C5%82udnie.016,554,683,873575,9961,0 +39505,Wioska+barbarzy%C5%84ska,524,311,698350371,4584,0 +39506,Twierdza+3,513,301,699208929,10232,0 +39507,C2.,312,547,849095482,5679,6 +39509,--15--,330,600,8877156,9747,0 +39510,ProCzacha,516,305,699208929,9063,0 +39511,037,655,619,699099811,10559,0 +39512,Wioska+barbarzy%C5%84ska,698,488,699429153,8871,0 +39513,TARAN,548,691,7860453,9623,2 +39514,MARTU%C5%9A,649,633,699639122,4440,0 +39515,Wioska+barbarzy%C5%84ska,390,660,699269923,9538,0 +39516,Dream+on,307,493,698962117,9488,0 +39517,O107,348,623,272173,9717,0 +39518,%230204+Segadorr+dar,459,312,1238300,6583,0 +39519,BRZEG+JORDANU+%7C+010,696,524,9228039,4094,0 +39520,New+World,448,684,698152377,10291,0 +39521,stickman5555,597,669,9023703,8627,0 +39522,269...gulden,460,308,6920960,9398,0 +39523,009,316,570,849099463,9345,0 +39525,%3D%7C24%7C%3D,663,386,9101574,8630,0 +39527,ZA17,321,412,356642,9835,0 +39528,TWIERDZA+.%3A066%3A.,684,571,7154207,8493,0 +39529,AG21,592,669,699876345,9350,0 +39530,Out+of+Touch,318,428,698962117,5993,0 +39531,Wioska+deEdion,364,586,6243588,9777,0 +39532,C0002,306,517,8841266,10362,0 +39534,005+Racecourse,608,343,1018357,7173,0 +39535,Wioska+barbarzy%C5%84ska,318,573,699671197,5327,0 +39536,0042,565,683,698659980,10083,2 +39537,053.+Lhotse,688,549,1601917,6349,0 +39538,Olsztyn,546,310,7139853,4251,0 +39539,Taran,341,609,6180190,10311,0 +39540,Narnia,587,324,8963720,5029,0 +39541,Suppi,328,417,699856962,9740,9 +39542,Kleinfeld,379,656,849100352,2382,0 +39543,A+081,350,629,272173,3618,0 +39545,Zeta+Reticuli+O,417,323,699323302,11188,7 +39546,%5B0177%5D,459,315,8630972,8486,0 +39547,I096,687,443,699722599,7168,0 +39549,Wow20,365,357,698160606,3125,0 +39550,%23101%23,633,632,692803,8427,0 +39551,KR%C3%93L+PAPI+WIELKI,638,643,698191218,9599,2 +39552,Ravka%C5%84czycy,673,405,8675636,10019,0 +39553,024+LittleVenecia,644,372,9029928,2049,0 +39554,Szlachcic,381,343,698160606,9405,0 +39555,%5B011%5D,472,309,849099160,7071,0 +39556,0.13+Night%3F,466,690,699827112,9742,0 +39558,.15.+Guerret+e,353,625,272173,7692,0 +39559,%23BJK,697,491,699126484,9861,0 +39560,067,632,355,849010255,11611,0 +39561,Wioska+barbarzy%C5%84ska,695,480,699429153,9825,0 +39562,C0086,305,529,8841266,10191,0 +39563,z+001029,360,369,3909522,9405,0 +39564,DaSpeDa,701,486,849099640,8115,0 +39565,%5B0045%5D,433,316,8630972,10495,0 +39566,PRO8L3M,466,492,7491093,6106,0 +39567,%2AINTERTWINED%2A,507,697,698704189,6363,0 +39568,Swoja8,606,668,6528152,8577,0 +39569,B%23003,693,449,2065730,9797,0 +39570,%3F%3F%3F,480,307,698489071,10503,0 +39571,009+%2A+Lady+Porto+%2A,697,506,699406750,7876,0 +39572,%3F%3F%3F,467,306,698489071,11494,0 +39573,031+invidia,528,691,849093426,9994,0 +39574,Wioska+4,310,487,849075836,8438,0 +39575,%5B045%5D+Wioska+barbarzy%C5%84ska,676,420,849095068,9681,0 +39576,C0264,324,514,8841266,9310,0 +39577,Bocianikson020,682,561,7528491,4406,0 +39578,%5B0078%5D,442,316,8630972,10495,0 +39579,Wioska+barbarzy%C5%84ska,338,392,698807570,10048,0 +39580,EO+EO,308,516,699697558,10019,0 +39581,TWIERDZA+.%3A091%3A.,680,577,7154207,9430,0 +39582,Dream+on,299,496,698962117,9488,0 +39583,06.+Santiago,690,478,699804790,9362,0 +39584,109,590,668,849097799,9084,0 +39585,Wioska+Plls,666,399,1086351,2845,0 +39586,001,310,506,698356304,8464,0 +39587,AAA,542,313,1006847,9065,0 +39588,XDX,608,334,699098531,6829,0 +39590,079+invidia,526,695,849093426,7732,0 +39592,Out+of+Touch,321,422,698962117,9745,0 +39594,C0069,308,522,8841266,10362,0 +39595,%C5%BBUBR+.%3A%3A.Adaczu%2F15,624,649,33900,2293,0 +39596,.08.+Silver+Gate+b,356,625,272173,9700,0 +39598,A+069,362,643,699269923,5706,0 +39599,Dream+on,301,498,698962117,9750,0 +39600,XDX,613,338,699098531,6163,0 +39601,Walhalla,564,315,699072129,9694,0 +39602,C0006,309,517,8841266,10362,0 +39603,AAA,536,305,1006847,9126,7 +39604,z+181-A010,353,379,3909522,7943,0 +39605,TWIERDZA+.%3A072%3A.,681,576,7154207,7139,0 +39606,New+World,431,682,698152377,10297,0 +39607,WB22,327,414,356642,3605,0 +39608,-+167+-+SS,549,692,849018239,9179,0 +39609,Szlachcic,388,341,3484132,10083,0 +39610,C0070,306,523,8841266,10362,0 +39612,C0119,301,510,8841266,10362,0 +39614,Wioska+barbarzy%C5%84ska,691,477,699429153,9825,0 +39615,bitwa+pod+grunwaldem,515,302,699208929,3662,0 +39616,s181,555,686,7691817,2706,0 +39617,Suppi,324,420,699856962,9551,4 +39618,Szlachcic,383,343,698160606,10495,0 +39619,000+Plutosea,316,565,9280477,7125,0 +39620,Didek,680,583,849070946,10495,0 +39621,08.+Kolorowy+Jacu%C5%9B,485,691,849092769,6883,0 +39623,ostoja,514,303,699208929,3905,0 +39624,C0067,306,526,8841266,10362,0 +39626,001,622,347,9060885,7061,0 +39627,Aleksandria,305,474,8048374,8499,0 +39628,Wioska+Seba1234567,674,593,849099689,7629,0 +39629,psycha+sitting,408,676,699736927,10178,0 +39630,Wioska+barbarzy%C5%84ska,628,643,698346318,5272,0 +39631,D007,610,660,9023703,3604,0 +39632,011+Feinster,663,604,8337151,10083,0 +39633,Klaudek.17,634,364,849092309,4843,0 +39634,Wioska+Zorro+018,676,592,849080702,9656,0 +39636,006,304,473,2418364,6467,0 +39637,Piek%C5%82o+to+inni,590,329,848956765,2863,0 +39638,Taran,334,603,6180190,9955,0 +39639,Szlachcic,379,342,3484132,10487,0 +39640,Wioska+barbarzy%C5%84ska,667,405,1715091,5175,0 +39641,Ardea,344,441,393668,12130,0 +39642,EO+EO,303,513,699697558,10160,7 +39643,Wioska+barbarzy%C5%84ska,539,314,849044705,10028,0 +39644,Wioska+barbarzy%C5%84ska,581,318,828637,10476,0 +39645,55.+KaruTown,694,455,849060446,8086,0 +39646,Wioska+barbarzy%C5%84ska+2,599,328,849006385,6357,0 +39648,Wioska+barbarzy%C5%84ska,378,346,3698627,6239,0 +39649,Sernik+z+Andzynkami,696,501,699126484,9744,0 +39650,szlon+2,302,483,8048374,10111,0 +39651,Dream+on,303,486,698962117,8461,0 +39652,B.00+duchy+serca+puszczy,554,312,849026145,9976,0 +39653,0006,424,319,2321390,9268,0 +39654,Wioska+barbarzy%C5%84ska,695,479,699429153,8813,0 +39655,Wioska+barbarzy%C5%84ska,579,678,698215322,3616,0 +39656,Wioska+barbarzy%C5%84ska,464,696,699725436,6631,0 +39657,33.Termopile,352,503,698807570,10201,0 +39658,Jedna+Jedyna+%3AD,635,354,9291984,10495,2 +39659,%7E080.,468,694,7139820,3069,0 +39660,KR%C3%93L+PAPI+WIELKI,655,622,698191218,10000,0 +39661,%23100%23,630,638,692803,8058,0 +39662,Taran,342,609,6180190,10311,0 +39663,023,398,332,8153941,3483,0 +39664,-+130+-+SS,541,692,849018239,10000,3 +39665,Wioska+barbarzy%C5%84ska,629,644,698346318,4560,0 +39666,New+Land+05,337,397,849064752,3821,0 +39667,%4009%40,409,326,699483429,4924,0 +39668,056.+Ursyn%C3%B3w,695,476,7494497,10252,0 +39670,-+Bracadabra+-,661,618,849009623,7481,0 +39671,Szulernia,379,364,7249451,4243,0 +39672,MojeDnoToWaszSzczyt,496,303,9299539,9987,0 +39673,New+World,435,683,698152377,7323,0 +39674,By%C5%82e%C5%9B+w+porz%C4%85dku+004,370,650,699269923,10310,0 +39675,psycha+sitting,424,680,699736927,10178,0 +39676,Bekon,624,353,698420691,7146,0 +39677,Dream+on,308,507,698962117,6635,0 +39678,komandos48,500,697,7976264,3710,0 +39679,Wioska+PavloGS,648,632,699639122,4135,0 +39680,D011,613,659,9023703,9420,0 +39681,Wioska+barbarzy%C5%84ska,395,332,699406776,1859,0 +39682,a+mo%C5%BCe+off+%3F+%3A%29,674,404,698768565,8251,0 +39683,Jan+002%2F%23%23%23+Ost,690,454,879782,8331,0 +39684,-+170+-+SS,554,689,849018239,8994,0 +39685,boh81%2F111,305,468,848889556,9601,0 +39686,Wioska+barbarzy%C5%84ska,395,337,699406776,4938,0 +39687,--16--,337,606,8877156,10220,0 +39688,R+032+%7EKr%C3%B3lestwo+Polskie%7E,496,694,699195358,8652,0 +39689,Out+of+Touch,324,426,698962117,8750,0 +39690,New+World,433,685,698152377,10297,0 +39691,Ob+Konfederacja,424,316,848915730,9774,0 +39692,Not+2+Day,477,307,698489071,9782,6 +39693,Szlachcic,380,343,698160606,10495,0 +39694,bucksbarzy%C5%84skamiiiru,330,404,848955783,8697,0 +39695,003.+Wehrmacht,335,399,698807570,10411,0 +39696,%3F%3F%3F,490,303,698489071,9837,0 +39697,%230163+Kamil0ss1,469,312,1238300,9860,0 +39698,bucksbarzy%C5%84skamiiiru,335,393,848955783,2169,0 +39699,z+internacionale+01qqqqqqqqqqqqq,354,377,3909522,9972,0 +39700,KR%C3%93L+PAPI+WIELKI,649,623,698191218,9881,0 +39701,01.+Tokio,690,479,699804790,11063,0 +39703,Gattacka,679,431,699298370,9169,0 +39704,0046,570,323,699485250,3865,0 +39705,002,659,381,698635863,9188,0 +39707,%7E069.,528,689,7139820,6737,0 +39708,Wioska+Zorro+008,668,594,849080702,12154,0 +39709,A7.,310,544,849095482,4338,0 +39710,TWIERDZA+.%3A044%3A.,683,567,7154207,10359,0 +39711,A000,472,697,699725436,11321,6 +39712,Wyspa_39,501,699,2585846,9638,0 +39713,003,590,674,9023703,2774,0 +39714,D.035,393,661,849088243,3860,0 +39715,psycha+sitting,456,644,699736927,10311,0 +39716,psycha+sitting,399,669,699736927,6398,0 +39717,Wyspa_21,507,693,2585846,9638,0 +39718,036+-+Nowy+Pocz%C4%85tek...,376,646,699269923,9604,0 +39719,Wioska+barbarzy%C5%84ska,351,368,7462660,6296,0 +39720,North+zeuswielki65,412,327,699796330,2624,0 +39721,Wioska+barbarzy%C5%84ska,327,408,2418002,3717,0 +39722,002,685,430,699738350,9828,0 +39723,K35+-+%5B011%5D+Before+Land,582,322,699088769,9783,0 +39724,%7E%7E049%7E%7E,606,614,7829201,9569,0 +39725,010,690,452,699150527,9835,0 +39726,18.NCT,682,422,9180206,9821,0 +39727,Forteca%2A006%2A,532,696,1078121,7566,0 +39728,K35+-+%5B039%5D+Before+Land,583,325,699088769,5784,0 +39729,0025.+Y+-,695,535,7125212,4214,0 +39730,Wioska+barbarzy%C5%84ska,592,326,699098531,5920,0 +39731,2.Matar%C3%B3,564,684,698215322,6476,0 +39732,Taran,339,615,6180190,10300,0 +39733,Sernik+z+Andzynkami,696,494,699126484,9825,0 +39734,psycha+sitting,405,675,699736927,10178,0 +39735,ZZZ,455,691,8980651,4066,0 +39736,psycha+sitting,406,675,699736927,10311,0 +39737,%2A015%2A,346,388,699273451,10211,0 +39738,KONFA+TO+MARKA%2C+NARKA,314,455,698152377,10311,8 +39739,Dream+on,303,510,698962117,9747,0 +39740,Swoja9,605,668,6528152,8621,0 +39741,Niklowy+gr%C3%B3d,320,421,699377401,7601,0 +39742,I102,684,451,699722599,7861,0 +39743,%4001%40,407,326,699483429,10026,0 +39744,Wioska+barbarzy%C5%84ska,311,554,848901396,3649,0 +39745,Winterhome.061,492,301,848918380,10099,0 +39746,--17--,328,600,8877156,9128,0 +39747,a+mo%C5%BCe+off+%3F+%3A%29,673,403,698768565,7971,0 +39748,D019,622,661,9023703,985,0 +39749,2.Leon,571,677,698215322,3780,0 +39750,Osada+002,400,619,848912772,10178,0 +39751,003,659,382,698635863,9661,0 +39752,%C5%BBUBR+.%3A%3A.Adaczu%2F16,624,650,33900,3442,0 +39753,%2A022%2A,686,441,698670524,9108,0 +39754,D008,611,663,9023703,10056,0 +39755,Wioska+barbarzy%C5%84ska,334,600,7183372,7273,0 +39756,C0091,302,522,8841266,10362,0 +39757,Wioska+barbarzy%C5%84ska,651,369,7340529,4871,0 +39758,Wioska+barbarzy%C5%84skam+dol,394,669,6948793,9899,0 +39759,0006+Sir+JuriGagarin,442,691,849037407,10495,4 +39760,004,697,516,699150527,10297,0 +39761,%5B0061%5D,447,316,8630972,10495,0 +39762,%230166+Kamil0ss1,471,309,1238300,10178,0 +39763,Kobior,418,328,849072873,8529,0 +39764,-+03+-+Nowe,467,311,848902744,8154,0 +39765,daleko,664,386,699491076,8631,0 +39766,1+CZ%C4%98STOCHOWA,303,478,8048374,9704,0 +39767,033,456,309,2502956,10019,0 +39768,%28027%29Steen,322,568,849098695,3721,0 +39769,Wioska+barbarzy%C5%84ska,476,691,8966820,5565,0 +39770,New+World,425,680,698152377,10292,0 +39771,WioSTa+barbarzy%C5%84ska,691,517,8096537,7136,0 +39772,%3F%3F%3F,484,302,698489071,10160,0 +39773,New+World,432,683,698152377,6303,0 +39774,nr1,584,677,364126,11077,0 +39775,AAA,560,310,1006847,3152,0 +39776,MojeDnoToWaszSzczyt,505,304,9299539,9714,0 +39777,%230266+Gwen1,474,306,1238300,6211,0 +39778,Kokosanka,678,570,7973893,5479,0 +39779,C0007,309,521,8841266,10362,0 +39780,Rubiez11,310,467,699265922,6883,0 +39781,Darma+dla+zawodnika,515,699,8980651,9805,0 +39782,B%23004,690,453,2065730,9797,0 +39783,40.+KaruTown,692,454,849060446,9735,0 +39784,Sernik+z+Andzynkami,696,500,699126484,9797,0 +39785,Ramdzis12,683,420,699738350,7639,4 +39786,010,309,475,2418364,3160,0 +39787,%23016.+Christmas+Tree,445,684,848896948,9448,9 +39788,A+043,365,636,272173,4729,0 +39789,Didek,677,582,849070946,5585,0 +39790,006,696,493,699150527,10311,0 +39791,019%23+Serena,481,695,699605333,10028,0 +39792,Bogine,676,418,699738350,9556,0 +39793,Z+002+Dzier%C5%BConi%C3%B3w,328,596,849084740,9654,0 +39795,Merida.waleczna,593,341,849083294,5802,0 +39796,000+Plutosea,318,569,9280477,10068,0 +39797,%3F%3F%3F,486,301,698489071,10160,0 +39798,01.wiocha,332,590,7183372,10203,0 +39799,022,698,514,699150527,9655,0 +39801,6.C,453,688,699777372,9161,0 +39802,Wioska+l,321,579,699671197,12154,0 +39803,C0120,307,536,8841266,10490,0 +39804,001,585,678,699567608,10063,0 +39805,Wioska+barbarzy%C5%84ska,634,351,9291984,4208,0 +39806,B7.,311,545,849095482,2712,0 +39807,C.014,700,490,9188016,4346,0 +39808,027+Barba+9,306,539,926823,3614,0 +39809,C0139,312,531,8841266,10362,0 +39810,1+Ignac%C3%B3w,302,479,8048374,8535,0 +39811,bucksbarzy%C5%84skamiiiru,333,405,848955783,7362,0 +39812,Wioska+barbarzy%C5%84ska,396,668,699736927,4182,0 +39813,0171,372,641,7085510,10216,0 +39814,Gattacka,689,434,699298370,9741,0 +39815,Ziomek+Vampirki%3A%29,681,579,849070946,10495,0 +39816,FAKE+OR+OFF,409,328,698231772,10068,4 +39817,D002,610,657,9023703,10226,0 +39818,%4007%40,407,328,699483429,7068,0 +39819,C0078,303,525,8841266,10362,0 +39820,KR%C3%93L+PAPI+WIELKI,695,517,698191218,6294,0 +39821,Wioska+barbarzy%C5%84ska,581,328,699710633,2497,0 +39822,Komornicy+015,349,621,699336777,4023,0 +39823,Wioska+barbarzy%C5%84ska,457,694,8966820,5323,0 +39824,056,514,699,2293376,8810,0 +39825,kamilkaze135+%2306,661,390,699705601,9805,0 +39826,C0141,313,534,8841266,10362,0 +39827,123+invidia,514,698,849093426,7349,0 +39828,A+035,363,641,699269923,8422,0 +39829,Wioska+barbarzy%C5%84ska,338,387,698807570,10048,0 +39830,Poiuytrewas,566,316,699733098,12154,0 +39831,AAA,546,306,1006847,9721,0 +39832,C.010,700,488,9188016,10003,0 +39834,Wioska+barbarzy%C5%84ska,327,598,7183372,6544,0 +39835,z.+Lecimy+tu,355,373,3909522,10165,0 +39836,022+Fervex,644,369,9029928,1700,0 +39837,Oslandia,379,345,849099864,5592,0 +39838,Mroczny+Zamek+018,352,630,272173,10058,0 +39839,Moldor+6,633,356,849049045,11215,0 +39840,z+internacionale+008,351,379,3909522,12154,0 +39841,AAA,538,307,1006847,9112,0 +39842,Szale,462,691,698585370,9770,0 +39843,Wioska+barbarzy%C5%84ska,698,479,699429153,9825,0 +39844,001,383,661,699269923,6670,0 +39845,%23090%23,631,643,692803,9386,0 +39846,Wioska+barbarzy%C5%84ska,309,555,5997814,3786,0 +39847,B.07+duchy+serca+puszczy,554,317,849026145,3210,0 +39848,007,313,553,8153179,5654,0 +39849,BRZEG+JORDANU+%7C+003,694,525,9228039,6406,6 +39850,Twierdza+5,509,301,699208929,7080,0 +39851,005,698,509,7418168,9761,0 +39852,Zimowe+Majtki,310,465,849074508,2727,0 +39853,%5B001%5D%5BChec+IT%5D,606,331,699710633,9896,0 +39854,Wioska+barbarzy%C5%84ska,400,336,699406776,745,0 +39855,021,679,582,6160655,6648,0 +39857,%5B0041%5D+XXX,437,317,8630972,10495,0 +39858,Psycho+to+Marka%2C+Narka+%21,318,575,698704189,9711,0 +39859,z+181-A011,353,375,3909522,6073,0 +39860,-+Dracabra+-,657,618,849009623,6512,0 +39861,Wioska+barbarzy%C5%84ska,655,611,1900364,2826,0 +39863,Tu+jest+przysz%C5%82o%C5%9B%C4%87,661,398,699491076,7539,0 +39865,psycha+sitting,397,669,699736927,8129,0 +39867,KR%C3%93L+PAPI+WIELKI,639,642,698191218,9849,0 +39868,038.+Wioska+barbarzy%C5%84ska,696,467,7494497,10237,0 +39869,036Teatr,476,693,698620694,6045,0 +39870,%2A%2A%2A%2A%2A+%2A%2A%2A,564,682,9091557,3085,0 +39871,komandos48,499,698,7976264,5079,0 +39872,8_Franekkimono510_8,364,359,849099422,3822,0 +39873,032,453,306,2502956,9911,0 +39874,KONFA+TO+MARKA%2C+NARKA,305,455,698152377,10290,0 +39875,Dream+on,306,475,698962117,9744,0 +39876,Wioska+barbarzy%C5%84ska,671,600,3467919,6190,0 +39877,Wyspa_34,506,693,2585846,9638,0 +39878,AAA,551,314,1006847,8941,0 +39879,%2A030%2A,684,442,698670524,5071,0 +39880,B026,514,305,699208929,7111,0 +39881,001,700,508,7418168,10019,0 +39882,Ananasowy+Gr%C3%B3d,627,349,699580120,4412,0 +39883,Out+of+Touch,315,435,698962117,1439,0 +39884,z+181-A012,353,378,3909522,7775,0 +39885,Wioska+orkakk,335,606,7183372,10097,0 +39886,Barbara,613,336,849056744,6348,0 +39887,016,309,542,849098688,9522,0 +39888,Zeta+Reticuli+O,415,324,699323302,10997,0 +39889,Zeta+Reticuli+O,413,329,699323302,10465,0 +39890,Wioska+barbarzy%C5%84ska,587,325,828637,9066,0 +39891,Wioska+barbarzy%C5%84ska,672,407,8675636,9102,0 +39892,014+%2A+Lady+Porto+%2A,692,505,699406750,6178,0 +39893,Czaniec,541,308,7139853,4409,0 +39894,Osada+koczownik%C3%B3w,329,586,7183372,5577,6 +39896,bucksbarzy%C5%84skamiiiru,331,401,848955783,5694,0 +39897,015+nie+wiem+czy+bylo+warto,513,691,849093426,10237,0 +39898,A000,470,696,699725436,9473,0 +39899,054.+F64D,486,632,699494488,9206,0 +39900,Wioska+barbarzy%C5%84ska,459,690,699777372,4517,0 +39901,%5B056%5D+%3F%3F%3F%3F,683,426,849095068,7027,0 +39902,Wioska,548,686,7860453,4960,0 +39903,P%7C002%7C,454,688,699393742,7421,0 +39904,z181_02,313,440,393668,9882,0 +39905,0282,567,685,698659980,9124,0 +39906,034,478,629,699336777,9825,0 +39907,Mroczny+Zamek+024,353,633,698908184,5967,0 +39908,%5B0113%5D,438,309,8630972,10290,0 +39909,014+NAWRA,660,608,849048867,8339,0 +39910,%3F%3F%3F,464,307,698489071,5590,0 +39911,%3A%3A%3A+WEST+%3A%3A%3A,305,491,848917570,4156,0 +39912,004+%2A+Lady+Porto+%2A,691,504,699406750,12154,0 +39913,psycha+sitting,415,673,699736927,10311,0 +39915,Dream+on,305,503,698962117,4374,0 +39916,kamilkaze135+%2302.1,657,392,699705601,6617,0 +39917,003,700,505,7418168,10008,0 +39918,047,477,626,699336777,9902,0 +39919,Taran,325,591,6180190,10291,0 +39920,%23%23%23055%23%23%23,590,673,698285444,10495,0 +39921,C109,366,639,699383279,4250,0 +39923,011,634,636,849099544,6650,0 +39924,%23027%23,616,657,692803,9761,0 +39925,XDX,609,339,699098531,7729,0 +39926,Wioska+barbarzy%C5%84ska,390,666,699269923,9355,0 +39927,B.01+duchy+serca+puszczy,554,316,849026145,7772,0 +39929,SOKzGUMIjag%C3%B3d,647,379,849059491,9568,0 +39930,010+%2A+Lady+Porto+%2A,695,504,699406750,7673,0 +39931,New+World,436,674,698152377,10291,0 +39932,KR%C3%93L+PAPI+WIELKI,637,645,698191218,9853,0 +39933,033,312,566,849098688,3729,0 +39934,Wioska+Sir+Lewan,663,615,2362058,9069,0 +39935,005+%2A+Lady+Porto+%2A,695,506,699406750,12135,3 +39936,Gattacka,688,432,699298370,9160,0 +39938,044+InnyNizWszyscy,536,387,699491076,10001,0 +39939,Szlachcic,397,356,3484132,10481,0 +39940,Szlachcic+%21%21%21,506,476,699098531,9621,0 +39941,Wioska+barbarzy%C5%84ska,631,351,9291984,3951,0 +39942,TWIERDZA+.%3A020%3A.,684,572,7154207,10355,0 +39943,%2136+63+Nicani,636,364,698361257,10336,6 +39944,033+barbarzy%C5%84ska,638,422,9238175,7821,0 +39945,Zagroda,603,671,6528152,8419,0 +39946,Wioska+barbarzy%C5%84ska,651,383,849041192,3195,0 +39947,okk,654,398,699738350,9800,0 +39948,Taran,335,612,6180190,9956,0 +39949,Orze%C5%82+7,696,485,699413581,6272,0 +39950,%5B004%5D+Shitstorm%21,686,428,849095068,10495,0 +39951,%2136+74+Costisa,648,371,698361257,9860,0 +39952,Wioska+barbarzy%C5%84ska,691,495,699429153,8895,0 +39953,Szlachcic,377,352,698160606,6468,0 +39954,FENDI,311,462,699794765,5582,0 +39955,Zeta+Reticuli+O,418,327,699323302,10997,0 +39956,Andrych%C3%B3w,541,311,7139853,6861,0 +39957,FP012,479,696,699605333,10201,0 +39958,B003,518,303,699208929,10019,0 +39959,B.09+duchy+serca+puszczy,552,314,849026145,2276,0 +39960,Wioska+barbarzy%C5%84ska,387,656,699269923,9485,0 +39961,009.+Bia%C5%82o%C5%82%C4%99ka,693,472,7494497,10237,0 +39963,%3D%7C21%7C%3D,666,390,9101574,10495,0 +39964,%21%2136+85+Dumbravei,658,389,698361257,8782,0 +39965,Wioska+073,663,601,848971079,9761,0 +39966,0.15+Szale,468,693,699725436,9462,0 +39967,Wioska+barbarzy%C5%84ska,530,306,7758085,8454,0 +39968,%23%23%23056%23%23%23,595,672,698285444,10495,0 +39969,C0193,302,528,8841266,6565,0 +39970,KR%C3%93L+PAPI+WIELKI,654,621,698191218,10566,0 +39971,005.Stradi,441,314,698365960,10495,0 +39972,089+invidia,516,698,849093426,8252,0 +39973,Wioska+barbarzy%C5%84ska,309,559,5997814,3463,0 +39974,psycha+sitting,401,668,699736927,10311,0 +39975,050.+Wioska+barbarzy%C5%84ska,691,468,7494497,9850,0 +39976,Wioska+Wiki+7,527,696,849100354,7042,0 +39977,Boh81%2F01s,306,469,848889556,9198,0 +39978,Wioska+barbarzy%C5%84ska,684,563,7038651,4014,0 +39979,008,687,446,699150527,9885,0 +39980,Forteca%2A005%2A,534,695,1078121,9192,0 +39981,043.+Night+Raid,489,700,699684062,7083,0 +39982,%23088%23,619,659,692803,9761,0 +39983,023%23+Xenia,488,700,3933666,5237,0 +39984,011+%2A+Lady+Porto+%2A,691,505,699406750,5653,0 +39985,042.+Night+Raid,489,701,699684062,5058,0 +39986,R+029+%7ERivendell%7E,495,694,699195358,10019,0 +39987,033%23+Zoe,483,692,3933666,4230,0 +39988,WB10,323,412,356642,6333,0 +39989,xzc,498,698,8827094,8484,0 +39990,Wioska+barbarzy%C5%84ska,316,579,699671197,8899,0 +39991,Wioska+Adam19955,444,683,849048562,8612,0 +39992,023,699,516,699150527,9014,0 +39993,Wow3,372,357,698160606,12154,0 +39994,052.+Kaczendzonga,691,548,1601917,7724,0 +39995,Kotlarka,574,685,698723158,8285,0 +39996,Wioska+barbarzy%C5%84ska,409,331,699406776,1978,0 +39997,Wioska+KATOZAUR,495,696,8827094,10452,0 +39998,Wioska+barbarzy%C5%84ska,689,549,17714,8205,0 +39999,0013,423,323,2321390,7919,0 +40000,Dream+on,304,503,698962117,4008,0 +40001,Darma+dla+zawodnika,513,697,848928624,6243,0 +40002,054.+Likawitos,690,552,1601917,7205,0 +40003,BRZEG+JORDANU+%7C+007,692,520,9228039,4360,0 +40004,030+-+Nowy+Pocz%C4%85tek...,375,648,699269923,9947,0 +40005,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,472,694,8980651,9835,0 +40006,004,657,386,698635863,9214,0 +40007,R+031,494,696,699195358,8850,0 +40008,A+075,362,638,272173,4525,0 +40009,village+2,646,364,7340529,8819,0 +40010,%3A%3A%3A+W+%3A%3A%3A+II,304,501,848917570,2871,0 +40011,%23Hiroszima,315,560,849099601,2313,0 +40012,New+World,441,684,698152377,10295,0 +40013,Wioska+7,643,638,1647052,1915,0 +40014,008+NAWRA,659,612,849048867,8921,0 +40015,051.+Wioska+barbarzy%C5%84ska,694,472,7494497,9777,0 +40016,Stegny,369,361,849099434,7206,0 +40017,MojeDnoToWaszSzczyt,500,297,9299539,9972,0 +40018,KR%C3%93L+PAPI+WIELKI,655,623,698191218,10000,0 +40019,MojeDnoToWaszSzczyt,498,303,9299539,9957,0 +40020,Dream+on,300,498,698962117,4331,0 +40021,Wioska+barbarzy%C5%84ska,673,600,3467919,3582,0 +40022,Wioska+barbarzy%C5%84ska,329,410,2418002,3194,0 +40023,061.,660,395,849094609,10019,4 +40024,011,688,453,699150527,9821,0 +40025,005,662,383,698635863,9958,0 +40026,%23026%23,620,653,692803,9761,0 +40027,ZA26,321,414,356642,9835,0 +40028,%230112+Zapiecek,478,540,698704189,8417,0 +40029,136+invidia,539,692,849093426,8625,0 +40030,Wioska+barbarzy%C5%84ska,390,659,699269923,9469,0 +40031,Taran,330,589,6180190,6797,0 +40032,30.+Lets+go,559,318,849099696,6390,0 +40033,O036,344,626,272173,9955,0 +40034,A+101,361,637,698908184,4253,0 +40035,013.Stradi,429,317,698365960,10273,0 +40036,2.Pampeluna,574,682,698215322,5037,0 +40037,%230281+Marass,473,303,1238300,10410,0 +40038,Swoja,603,667,6528152,8004,0 +40039,Pd+05,359,633,698908184,4306,0 +40040,Darma+dla+zawodnika,324,588,6180190,3382,0 +40041,%5B0097%5D,433,319,8630972,10495,0 +40042,0011+mackobl14,440,689,849037407,9907,0 +40043,ZZZ,514,700,8980651,9745,0 +40044,Wyspa_30,507,695,2585846,9638,0 +40045,Wie%C5%9B+05,339,612,9199885,4196,0 +40046,bucksbarzy%C5%84skamiiiru,331,400,848955783,10142,0 +40047,Dream+on,304,498,698962117,9505,0 +40048,wioska,622,343,848967422,10611,0 +40049,Moldor+12,635,353,849049045,10503,0 +40050,%5B0134%5D,451,306,8630972,9410,0 +40051,Wioska+holajza,563,688,698723158,6013,0 +40052,002.,321,589,3475079,10580,4 +40053,001,389,665,8839403,9867,0 +40054,bucksbarzy%C5%84skamiiiru,335,397,848955783,5531,0 +40056,New+World,427,682,698152377,10294,0 +40057,009,695,464,699150527,9889,0 +40058,ZZZ,455,694,8980651,4792,0 +40059,K35+-+%5B028%5D+Before+Land,573,322,699088769,7230,0 +40060,Winterhome.062,490,301,848918380,10070,0 +40061,C05+Che%C5%82mno,348,377,3909522,3626,0 +40062,Klaudek20,635,363,849092309,3280,0 +40063,bucksbarzy%C5%84skamiiiru,335,396,848955783,6534,0 +40064,KR%C3%93L+PAPI+WIELKI,656,624,698191218,10000,0 +40065,019.+Taka+wioska+nie+istnieje,694,469,7494497,10259,0 +40066,O098,347,623,272173,9613,0 +40067,%23011.+Ulryk+von+Junningen,431,687,848896948,10030,0 +40068,006,661,381,698635863,9656,0 +40069,001,699,509,699150527,10311,0 +40070,MojeDnoToWaszSzczyt,500,307,9299539,9958,0 +40071,Wyspa_43,510,696,2585846,9638,0 +40072,Gattacka,678,424,699298370,9254,0 +40073,%C5%BBUBR+PSYCHIATRYK+014,625,656,33900,5884,0 +40074,Rubiez9,309,483,699265922,8468,0 +40075,Wioska+barbarzy%C5%84ska,652,373,7340529,9056,0 +40077,%2A194%2A,367,359,699273451,10211,0 +40078,C005,672,586,8138506,9140,0 +40079,001+%2A+Lady+Porto+%2A,696,507,699406750,12154,0 +40080,psycha+sitting,400,674,699736927,10178,0 +40081,bucksbarzy%C5%84skamiiiru,332,392,848955783,1721,0 +40082,2.Saragossa,573,682,698215322,5962,0 +40083,FAKE+OR+OFF,413,321,698231772,9837,0 +40084,042+invidia,529,692,849093426,10237,0 +40085,Szlachcic,377,353,698160606,5541,0 +40086,Wioska+barbarzy%C5%84ska,669,399,8675636,9631,0 +40087,002,639,634,849099544,9145,0 +40088,Wioska+barbarzy%C5%84ska,532,306,849044705,2399,0 +40089,Wonderwall,325,552,698962117,9484,0 +40090,KR%C3%93L+PAPI+WIELKI,658,619,698191218,10000,0 +40091,Osada,506,456,699098531,9637,0 +40092,Jan+Stuttgart+K,690,458,879782,9670,0 +40093,Sok%C3%B3%C5%82,703,481,849099640,2745,0 +40094,FENDI,307,459,699794765,4500,0 +40095,039.+Wioska+barbarzy%C5%84ska,694,467,7494497,10223,0 +40096,%23qatar,313,554,849099601,4441,0 +40097,Osada+koczownik%C3%B3w,533,308,849044705,8521,2 +40098,Twierdza+4,518,307,699208929,9498,0 +40099,032+-+Nowy+Pocz%C4%85tek...,373,646,699269923,9950,0 +40100,Wioska+barbarzy%C5%84ska,529,306,7758085,9421,0 +40101,Bridge,666,400,1086351,4073,0 +40102,bucksbarzy%C5%84skamiiiru,326,401,848955783,5238,0 +40103,Wioska+barbarzy%C5%84ska,541,312,849044705,2358,0 +40104,%3F%3F%3F,483,302,698489071,10160,0 +40105,K35+-+%5B012%5D+Before+Land,576,321,699088769,9783,0 +40106,Wioska+barbarzy%C5%84ska,343,612,9199885,5840,0 +40107,xzc,502,703,8827094,9687,0 +40108,Na+Kra%C5%84cu+%C5%9Awiata+008,629,347,9291984,10495,0 +40109,Napewno+to+nie+jest+off,592,325,848912265,2436,0 +40110,O139,348,624,272173,6439,0 +40111,z181_17,308,445,393668,9547,0 +40112,Wioska+Lord+Sir+szok,389,660,8868716,3412,0 +40113,%230211+Segadorr+dar,457,309,1238300,7065,0 +40114,Z+003,328,595,849084740,7008,0 +40115,023+Drwal,648,372,9029928,1612,0 +40116,%2136+75+Fratauti+Vechi,652,372,698361257,9882,0 +40117,%2A%2AINTERTWINED%2A,503,693,698704189,9711,0 +40118,044,631,353,849010255,10019,0 +40119,KR%C3%93L+PAPI+WIELKI,640,639,698191218,10192,0 +40120,D016,617,659,9023703,7837,0 +40121,Killer+Queen,582,674,698723158,3778,0 +40122,-002-+sz,356,640,698908184,9998,0 +40123,023.+Night+Raid,474,698,699684062,10011,0 +40124,Rubiez+8,308,484,699265922,6894,0 +40125,K35+-+%5B024%5D+Before+Land,582,323,699088769,11130,0 +40126,Wioska+barbarzy%C5%84ska,336,391,698807570,10049,0 +40127,Darma+dla+zawodnika,515,700,8980651,6379,0 +40128,A+056,362,641,699269923,9308,0 +40129,7.62+mm,490,426,699777234,10019,0 +40130,Szale,468,690,699725436,9344,0 +40131,Twierdza,604,666,6528152,9419,0 +40132,TWIERDZA+.%3A017%3A.,688,564,7154207,10406,0 +40133,Wioska+barbarzy%C5%84ska,563,317,699072129,4846,0 +40134,001+sadeg,518,698,849093426,10237,0 +40135,100+Konan,687,437,7092442,7596,0 +40137,%23%23%23001%23%23%23,593,685,698285444,10495,0 +40138,061.+W%C5%82ochy,694,476,7494497,9580,0 +40139,Bydlak777,648,439,7973893,2690,0 +40140,XDX,607,334,699098531,8652,0 +40141,AAA,551,306,1006847,8994,1 +40142,Wioska+6,642,631,1647052,3515,0 +40143,-001-,376,647,699269923,9864,0 +40144,Out+of+Touch,316,429,698962117,6309,0 +40145,Wioska+barbarzy%C5%84ska,658,387,699580120,6456,0 +40146,boh81%2F52,300,472,848889556,6685,0 +40148,Abdoulxx,474,654,849089459,10795,0 +40149,016,396,329,8153941,3397,0 +40150,-+241+-+SS,562,682,849018239,8271,0 +40151,Szlachcic,374,353,698160606,5170,0 +40152,Wioska+barbarzy%C5%84ska,329,415,699856962,7783,0 +40153,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,477,695,8980651,3769,0 +40154,kamilkaze135+%2305,662,389,699705601,9022,0 +40155,Out+of+Touch,320,419,698962117,2415,0 +40156,%3D%7C22%7C%3D,668,392,9101574,4089,0 +40157,psycha+sitting,416,678,699736927,10178,0 +40158,Didusia+ziom,678,585,3652727,2383,0 +40159,048+invidia,527,697,849093426,9345,0 +40161,012+%2A+Lady+Porto+%2A,697,505,699406750,8180,0 +40162,07.+Piek%C5%82o,690,477,699804790,9362,0 +40163,Darma+dla+zawodnika,318,578,6180190,9818,8 +40164,C0011,302,520,8841266,10362,0 +40165,048.+K2,692,540,1601917,7464,0 +40166,047,447,686,849099876,10495,0 +40167,Sernik+z+Andzynkami,697,502,699126484,9744,0 +40168,0399,572,679,698659980,10019,0 +40169,A025,603,662,9023703,10042,0 +40170,psycha+sitting,421,683,699736927,10311,0 +40171,Szlachcic,377,343,698160606,7974,0 +40172,005+NAWRA,665,611,849048867,10362,0 +40173,C106,365,643,699383279,3905,0 +40174,Wioska+barbarzy%C5%84ska,652,384,849041192,2126,0 +40175,114,593,671,849097799,7734,0 +40176,022+Sigurd,629,650,699373599,10728,8 +40177,Winterhome.052,497,307,848918380,10178,0 +40178,Out+of+Touch,322,428,698962117,9630,0 +40179,Winterhome.034,495,311,848918380,10178,0 +40180,Darma+dla+zawodnika,315,578,699671197,5051,0 +40181,Ob+Konfederacja,434,316,848915730,10072,2 +40182,B021,526,305,699208929,10204,0 +40183,wioska,623,345,849102068,9971,0 +40184,0012,361,362,699644448,2770,0 +40185,Winterhome.020,492,309,848918380,10178,0 +40186,022+MONETKI,666,485,7588382,9803,0 +40187,Wioska+barbarzy%C5%84ska,383,663,699269923,9306,0 +40188,C0121,306,533,8841266,10362,0 +40189,004.+Wawer%7BNANI%3F%21%7D,700,485,7494497,10237,0 +40190,Winterhome.066,492,303,848918380,10178,0 +40191,%5B0047%5D,435,315,8630972,10495,0 +40192,Wioska+barbarzy%C5%84ska,308,553,5997814,5431,0 +40193,Szlachcic,383,341,698160606,8009,0 +40194,%5B0048%5D,443,312,8630972,10495,0 +40195,Wyspa_36,508,696,2585846,6358,0 +40196,C105,367,645,699383279,9556,0 +40197,123,473,690,9003698,10373,0 +40198,WP2,327,415,849096547,2641,0 +40199,Gracze,689,531,848932879,10598,0 +40200,Wieliczka,582,678,849099505,2041,0 +40201,CALL+1052,651,627,699784536,10311,0 +40202,Wioska+barbarzy%C5%84ska,645,373,7973893,5511,0 +40203,%C5%BBUBR+PSYCHIATRYK+022,621,654,33900,5694,0 +40204,10_Franekkimono510_10,367,352,849099422,3191,0 +40205,Gattacka,688,437,699298370,9353,0 +40206,C004,673,585,8138506,5345,0 +40207,Hofek+25.,668,398,699491076,5071,0 +40208,BRICKLEBERRY,550,309,699072129,7258,0 +40209,B10,466,698,698652014,5385,0 +40210,FAKE+OR+OFF,419,316,698231772,9822,0 +40211,B06,688,550,848995478,5956,0 +40212,Out+of+Touch,320,424,698962117,8749,0 +40213,055+BanaN,692,525,2135129,10161,0 +40214,B04,505,695,698652014,9835,0 +40215,MojeDnoToWaszSzczyt,506,305,9299539,9957,0 +40216,z181_05,314,439,393668,9882,0 +40217,X+002,596,331,6384450,7143,7 +40218,I074,692,457,699722599,9161,0 +40219,Zeta+Reticuli+O,417,326,699323302,11417,0 +40220,kamilkaze135+%2304,661,396,699705601,9805,0 +40221,Wioska+barbarzy%C5%84ska,627,351,7555180,3876,0 +40222,Mefedron+05,393,338,3484132,7569,0 +40223,Wioska+barbarzy%C5%84ska,647,365,6625437,3978,0 +40224,A3.,314,545,849095482,4672,0 +40225,Wioska+6,507,304,849099342,4606,0 +40226,075g,312,557,698641566,8126,0 +40227,XXXXXXXXXXXXXX,368,651,699269923,10068,9 +40228,-022-+S,618,344,849099276,3044,0 +40229,A4.+Puk...+Puk...+Komornik,308,543,849095482,9711,3 +40230,FAKE+OR+OFF,407,322,698231772,9814,0 +40231,B027,514,302,699208929,8989,0 +40232,KR%C3%93L+PAPI+WIELKI,699,526,698191218,8349,0 +40233,SOKzGUMIjag%C3%B3d,603,338,849059491,5935,9 +40234,z181_29,310,436,393668,7831,0 +40235,KR%C3%93L+PAPI+WIELKI,652,621,698191218,9881,0 +40236,Wioska+barbarzy%C5%84ska,533,304,8606809,2339,0 +40237,EO+EO,301,515,699697558,10019,0 +40238,%23089%23,630,644,692803,9761,0 +40239,Katwaijk,624,343,9103424,4410,0 +40240,Taran,338,610,6180190,9962,0 +40241,Gattacka,688,435,699298370,9711,0 +40242,029,305,545,9280477,7043,0 +40243,D006,610,659,9023703,5555,0 +40244,B007,516,307,699208929,10161,0 +40245,bucksbarzy%C5%84skamiiiru,328,404,848955783,10654,0 +40246,-28-,642,359,699837826,2859,0 +40247,New+World,425,679,698152377,10292,0 +40248,TWIERDZA+.%3A010%3A.,688,570,7154207,10140,0 +40249,Wioska+Totomoose+2,315,414,849100744,6555,0 +40250,032+-+Fuenlabrada,693,527,698342159,8963,0 +40251,A+076,364,640,699269923,4381,0 +40252,193,455,696,849099876,3449,0 +40253,Wioska+barbarzy%C5%84ska,308,546,5997814,5627,0 +40254,psycha+sitting,398,672,699736927,6152,0 +40255,Wioska+barbarzy%C5%84ska,336,389,698807570,8800,0 +40256,Rubiez,307,482,699265922,9816,2 +40257,bucksbarzy%C5%84skamiiiru,329,398,848955783,9957,0 +40258,670%7C372,658,388,699580120,4467,0 +40259,009+NAWRA,666,608,849048867,10311,0 +40260,%C5%BBUBR+PSYCHIATRYK+016,622,650,33900,7619,0 +40261,Wioska+Vallias,475,366,699883079,6001,0 +40262,KR%C3%93L+PAPI+WIELKI,651,630,698191218,10000,0 +40263,FAKE+OR+OFF,419,320,698231772,9814,0 +40264,Out+of+Touch,322,429,698962117,9867,0 +40265,Moldor+002,631,355,849049045,10654,1 +40266,Szlachcic,384,340,3484132,10559,0 +40267,055+invidia,520,698,849093426,7720,0 +40268,%23Tokyo%23,317,555,849099601,3112,0 +40269,0sada+Cegielnia,567,310,699883079,8788,2 +40270,psycha+sitting,402,674,699736927,10178,0 +40271,Wioska+barbarzy%C5%84ska,621,341,8740199,11130,0 +40272,006.+Praga+P%C3%B3%C5%82noc,699,478,7494497,9894,1 +40273,007.+%C5%81,325,583,698704189,3589,0 +40274,Darma+dla+zawodnika,318,583,6180190,3013,0 +40275,%23030%23,617,652,692803,9761,0 +40276,2.Marbella,579,677,698215322,9464,0 +40278,Forteca%2A007%2A,533,697,1078121,5846,0 +40279,Swoja3,603,668,6528152,8379,0 +40280,%3F%3F%3F,486,302,698489071,10083,0 +40281,%7E+OZESEK+%7E,315,446,698540331,2246,0 +40282,036,307,555,5997814,7442,0 +40283,035.+Aquila,613,641,699703642,9502,0 +40284,psycha+sitting,412,673,699736927,10178,0 +40285,%3F%3F%3F,485,308,698489071,8903,0 +40286,Winterhome.065,491,312,848918380,8838,0 +40287,%3F%3F%3F,479,304,698489071,4848,0 +40288,Wioska+barbarzy%C5%84ska,687,560,698666810,11370,0 +40289,Wioska+barbarzy%C5%84ska,583,321,828637,10495,0 +40290,Osada+koczownik%C3%B3w,529,304,8606809,7139,1 +40291,Ma%C5%82y+M%C4%99dromierz,410,578,698769107,8398,0 +40292,Wioska+barbarzy%C5%84ska,695,487,699429153,9825,0 +40293,Szlachcic,389,341,3484132,9711,0 +40294,I075+Wakacje+w+Lesbos,688,460,699722599,9975,0 +40296,bucksbarzy%C5%84skamiiiru,335,386,848955783,5457,0 +40297,S001,599,675,8627359,9203,0 +40298,001,478,696,699639005,2287,0 +40299,Didek,683,583,849070946,1345,0 +40300,057,630,353,849010255,10160,8 +40301,01Gato,603,337,699548295,8507,0 +40302,Wioska+Zorro+002,674,598,849080702,12154,0 +40303,%23waj,483,699,699605333,9501,0 +40304,Wioska+04,571,315,849067192,3112,0 +40306,Winterhome.068,487,307,848918380,9223,0 +40307,Osada+koczownik%C3%B3w,651,625,6417987,10474,8 +40308,OFF,661,604,849014413,10418,0 +40309,076g,315,559,698641566,6548,0 +40310,C+021,691,522,8078914,6172,0 +40312,Wioska+barbarzy%C5%84ska,534,304,849044705,4819,0 +40313,-+199+-+SS,559,692,849018239,8797,0 +40314,Out+of+Touch,314,424,698962117,8593,0 +40315,EE01,620,658,8627359,9231,0 +40316,C0075,307,523,8841266,10362,0 +40317,Wioska+2,342,383,699541376,3339,0 +40318,Twierdza+Modlin,302,480,849095376,10304,0 +40319,Szale,468,691,8966820,9579,0 +40320,psycha+sitting,405,667,699736927,7528,0 +40321,Wioska+6,503,304,849050849,4168,0 +40322,KR%C3%93L+PAPI+WIELKI,637,644,698191218,10073,7 +40323,WB07,324,406,356642,6255,0 +40324,%3D%7C23%7C%3D,668,390,9101574,10495,0 +40325,Opuszczona+Wioska,692,543,848932879,2516,0 +40326,Wielgie,573,687,698723158,8994,0 +40327,R+028+%7EAnarchia%7E,496,695,699195358,10019,0 +40328,Taran,343,610,6180190,6947,0 +40329,Radek,677,419,699738350,9714,0 +40330,A+088,364,644,6948793,2701,0 +40331,035+invidia,529,697,849093426,10237,0 +40332,Gattacka,679,430,699298370,9163,0 +40333,-+148+-+SS,541,688,849018239,9815,0 +40334,005%23+Guba,485,701,3933666,10114,0 +40335,Sernik+z+Andzynkami,699,501,699126484,9797,0 +40336,-+173+-+SS+xDDDDDD,549,694,849018239,9957,0 +40337,KR%C3%93L+PAPI+WIELKI,696,529,698191218,7872,0 +40339,Wioska+lV,317,579,699671197,9277,0 +40342,KR%C3%93L+PAPI+WIELKI,620,661,698191218,9351,0 +40344,Hofek+24.,665,398,699491076,6310,0 +40345,_PUSTA%2B,688,543,699628084,8744,0 +40346,D08,666,556,848995478,10776,0 +40347,37.+KaruTown,692,455,849060446,9735,0 +40348,Wiejska7,601,663,6528152,8742,0 +40349,taran+4,592,321,7340529,8918,0 +40350,Darma+dla+zawodnika,319,583,6180190,8528,0 +40351,bucksbarzy%C5%84skamiiiru,329,394,848955783,9855,0 +40352,KR%C3%93L+PAPI+WIELKI,653,621,698191218,10083,7 +40353,012,608,336,8842936,10541,0 +40354,Wiejska6,602,672,6528152,8609,0 +40355,New+World,430,685,698152377,10292,0 +40356,MojeDnoToWaszSzczyt,510,302,9299539,6620,0 +40357,z181_09,310,443,393668,9882,0 +40358,0115,700,499,699429153,9966,0 +40359,%5B0216%5D,301,508,8630972,6957,0 +40360,Wioska+2,341,381,7462660,7457,0 +40361,004,613,334,8842936,10432,0 +40363,015.+czego+chcesz+dziewczyno,692,472,7494497,9888,0 +40364,075,581,620,698999105,8667,0 +40365,wiocha,617,664,848909464,10319,0 +40366,Wioska+barbarzy%C5%84ska,371,653,699269923,9082,0 +40367,Osada+koczownik%C3%B3w,307,547,5997814,5605,7 +40368,New+World,428,683,698152377,10290,0 +40369,%23008,313,568,849097898,4063,0 +40370,Klaudek27,637,353,9291984,3384,0 +40371,yyy,689,539,699316421,9425,0 +40372,Zasiedmiog%C3%B3rogr%C3%B3d,536,424,699433558,6790,0 +40373,%23%23%23057%23%23%23,587,680,698285444,10495,0 +40374,Dream+on,303,493,698962117,9497,0 +40375,Old+Trafford,665,616,849096631,9125,0 +40376,C0095,300,519,8841266,10362,0 +40377,By%C5%82e%C5%9B+w+porz%C4%85dku,366,651,699269923,10078,0 +40378,Sernik+z+Andzynkami,698,495,699126484,9744,0 +40379,D_2,529,305,3377827,8280,0 +40380,stickman4444,598,668,9023703,8716,0 +40381,Wioska+ShOcK,419,321,591733,10021,0 +40382,Mefedron+08,392,338,3484132,5843,0 +40383,Sernik+z+Andzynkami,698,499,699126484,9754,0 +40384,%23066%23,619,656,692803,9761,0 +40385,Wioska+barbarzy%C5%84ska,548,310,699072129,4866,0 +40386,001+NAWRA,659,609,849048867,10395,0 +40387,024,627,644,699373599,10030,0 +40388,-+Cradabra+-,661,615,849009623,5185,0 +40389,X+%7C+Forest+Cyaaaanku,307,466,699213622,10000,0 +40390,.achim.,480,304,6936607,10032,0 +40391,115,594,669,849097799,6285,0 +40392,Darma+dla+zawodnika,319,584,6180190,4913,0 +40393,Wioska+barbarzy%C5%84ska,564,312,699072129,7799,0 +40394,KR%C3%93L+PAPI+WIELKI,648,635,698191218,10215,0 +40395,003,383,660,699269923,9545,0 +40396,Taran,341,607,6180190,10303,0 +40397,Bolusiowo,307,480,8048374,6616,0 +40400,055.+Wioska+barbarzy%C5%84ska,690,469,7494497,8842,0 +40401,B%23014,695,453,2065730,9797,0 +40402,a+mo%C5%BCe+off+%3F+%3A%29,670,403,698768565,5562,0 +40403,%2A021+GAWRA%2A,312,428,2415972,9006,0 +40404,TWIERDZA+.%3A031%3A.,684,564,699272880,10198,0 +40406,Wioska+barbarzy%C5%84ska,393,668,6948793,9820,0 +40407,Wioska+barbarzy%C5%84ska,616,341,699433558,4663,0 +40408,%2302,555,307,699072129,9488,0 +40409,Gattacka,617,385,699298370,9372,0 +40410,Dream+on,301,490,698962117,9506,2 +40411,Wioska+Wodzu002,552,693,7860453,6680,0 +40412,.achim.,483,296,6936607,10838,0 +40413,Dreamland,669,403,1086351,3409,0 +40414,Darma+dla+zawodnika,315,577,6180190,9821,8 +40415,142+invidia,541,694,849093426,5675,0 +40416,005,306,478,2418364,6028,0 +40417,New+World,435,687,698152377,5810,0 +40418,TWIERDZA+.%3A065%3A.,682,572,7154207,9949,0 +40419,K35+-+%5B001%5D+Before+Land,579,319,699088769,10259,9 +40420,%5B0100%5D+xxx,450,308,8630972,10838,0 +40421,B011,519,304,699208929,6395,0 +40422,Wioska+2,676,411,699738350,8736,0 +40423,008,489,304,698489071,6060,0 +40424,---0000,388,660,699269923,6671,9 +40425,XDX,600,330,699098531,7946,0 +40426,Wioska+barbarzy%C5%84ska,385,658,699269923,8659,0 +40428,New+World,443,688,698152377,9882,0 +40429,New+World,433,682,698152377,6420,0 +40430,Wioska+Totomoose+6,314,426,849100744,293,0 +40431,Wioska+barbarzy%C5%84ska,607,330,699098531,3351,9 +40432,Zimowa+Twierdza,538,695,7860453,4189,0 +40433,Sernik+z+Andzynkami,695,497,699126484,9797,0 +40434,C002,538,697,698599365,9955,0 +40435,Wioska+barbarzy%C5%84ska,578,314,828637,10218,0 +40436,058,364,517,6853693,6443,0 +40437,5.CAMEL,521,305,699208929,4744,0 +40438,Life,625,352,849056744,6048,0 +40439,New+World,447,685,698152377,8559,0 +40440,%2136+75+Vicsani,653,370,698361257,10083,0 +40441,psycha+sitting,402,661,699736927,10311,0 +40442,%5B0099%5D,436,319,8630972,10495,0 +40443,Dream+on,307,489,698962117,9485,0 +40444,psycha+sitting,414,673,699736927,10311,0 +40445,-+Ecabra+-,655,617,849009623,4469,0 +40446,FENDI,305,462,699794765,2743,0 +40448,D%C4%85browa+0025,316,562,849096972,2799,0 +40449,-+179+-+SS,550,694,849018239,6982,0 +40450,KR%C3%93L+PAPI+WIELKI,635,644,698191218,9978,0 +40451,105,660,615,3589487,7015,0 +40452,0016,422,323,2321390,4406,0 +40453,%5B015%5D,454,687,699777372,5410,0 +40454,%5B016%5D,455,692,699777372,4999,0 +40455,Dream+on,307,499,698962117,9755,0 +40456,kamilex,682,424,849095435,4200,0 +40457,a+mo%C5%BCe+off+%3F+%3A%29,671,413,698768565,4785,0 +40458,Wioska+barbarzy%C5%84ska,565,310,828637,8070,0 +40459,Tarchomin,365,358,849099434,4568,0 +40460,Parole,348,404,699595556,7041,0 +40461,psycha+sitting,416,680,699736927,10311,0 +40462,Taran,337,610,6180190,9956,0 +40463,%3F%3F%3F,479,303,698489071,10503,8 +40464,Wioska+barbarzy%C5%84ska,640,363,699837826,2187,0 +40465,bucksbarzy%C5%84skamiiiru,333,390,848955783,3155,0 +40466,017,309,540,849098688,8753,0 +40467,044.+Wioska+barbarzy%C5%84ska,694,468,7494497,10287,0 +40468,New+World,437,689,698152377,10290,0 +40469,%4016%40,402,325,699483429,3616,0 +40470,Wioska+SeroElo,538,311,849044705,11094,0 +40471,004,701,498,942959,4075,0 +40472,Mroczny+Zamek+022,356,631,698908184,4812,0 +40473,Kruczy+R%C3%B3g,588,672,699567608,10337,0 +40474,Wioska+barbarzy%C5%84ska,532,305,8606809,8097,0 +40475,psycha+sitting,399,664,699736927,6689,0 +40476,KONFA+TO+MARKA%2C+NARKA,310,453,698152377,10290,0 +40477,Szlachcic,384,343,3484132,10213,0 +40478,003.Stradi,438,314,698365960,10495,0 +40479,Wioska+barbarzy%C5%84ska,524,536,7581876,9797,0 +40480,Wioska+barbarzy%C5%84ska,395,665,699736927,4394,0 +40481,120.Stradi,442,314,698365960,10495,8 +40482,Wioska+Bbartek97,617,339,849097312,5348,0 +40483,0013,648,627,6417987,7105,0 +40484,psycha+sitting,421,678,699736927,6819,0 +40485,D.020,394,664,849088243,3623,0 +40486,KONFA+TO+MARKA%2C+NARKA,308,456,698152377,10295,0 +40487,a+mo%C5%BCe+off+%3F+%3A%29,671,410,698768565,5110,0 +40488,003,308,471,848895676,2276,0 +40489,Wioska+barbarzy%C5%84ska,617,341,699433558,4679,0 +40490,B008,516,306,699208929,9073,0 +40491,%23%23%23058%23%23%23,581,684,698285444,10495,0 +40492,Wioska+barbarzy%C5%84ska,386,654,699269923,7967,0 +40493,Didek,676,589,849070946,7430,7 +40494,Wioska+anibella,651,610,8224678,10679,0 +40495,%23%23%23059%23%23%23,594,676,698285444,10495,0 +40496,Jedziemy,363,648,6948793,10173,0 +40497,%23%23%23060%23%23%23,600,675,698285444,10495,0 +40498,Dream+on,307,506,698962117,6722,0 +40499,FP006,482,697,699605333,10393,0 +40500,Wioska+barbarzy%C5%84ska,323,581,7183372,7872,0 +40501,Wioska+barbarzy%C5%84ska,676,412,699738350,6929,0 +40502,z+Goscia099859,355,361,3909522,8488,0 +40503,TWIERDZA+.%3A012%3A.,685,571,7154207,10406,0 +40504,Wioska+barbarzy%C5%84ska,342,375,7462660,5838,0 +40505,K35+-+%5B013%5D+Before+Land,580,321,699088769,9783,0 +40506,Didek,681,588,849070946,4669,0 +40507,Wioska+barbarzy%C5%84ska,345,385,699541376,2717,0 +40508,Wioska+03,349,384,3372959,3745,0 +40509,Wioska+mnich-124,336,393,698807570,9662,0 +40510,Wioska+barbarzy%C5%84ska,349,426,393668,6036,0 +40511,MojeDnoToWaszSzczyt,496,300,9299539,9960,0 +40512,Lilka+%3D%2A,554,690,7860453,3212,0 +40513,Gogolin,686,551,848932879,9095,0 +40514,Szlachcic,379,349,698160606,10838,0 +40515,%23084%23,634,643,692803,9546,0 +40516,000+Plutosea,312,567,9280477,8042,0 +40517,Wioska+barbarzy%C5%84ska,462,695,699725436,3365,0 +40518,Wonderwall,310,554,698962117,10470,0 +40519,0052+Dzikusy,447,692,849037407,6449,0 +40520,25.+Bremervoord,694,539,8976313,6995,0 +40521,Ko%C5%82obrzeg,506,299,7758085,5365,0 +40522,031.+nie+czytaj+tego,693,468,7494497,9902,0 +40523,-+196+-+SS,539,698,849018239,7003,0 +40524,%230274+EmersonJr,459,308,1238300,7833,0 +40525,Wioska+Zorro+026,675,591,849080702,4159,0 +40526,Dream+on,302,490,698962117,9494,0 +40527,Prowincja,314,569,849096458,7181,0 +40528,2.A+Coruna,576,676,698215322,3790,0 +40529,psycha+sitting,419,677,699736927,10178,0 +40530,022,395,333,8153941,2959,0 +40531,%5B053%5D+%3F%3F%3F%3F,684,426,849095068,9288,0 +40532,045,302,537,9280477,4762,0 +40533,ZZZ,460,693,699827112,9473,0 +40534,Bobolo,686,431,699738350,8722,0 +40535,TWIERDZA+.%3A050%3A.,692,553,7154207,10356,0 +40536,Hello+there,323,593,6180190,9835,0 +40537,Didek,677,574,849070946,8451,0 +40538,Wioska+barbarzy%C5%84ska,686,549,17714,6040,0 +40539,KR%C3%93L+PAPI+WIELKI,651,621,698191218,9972,0 +40540,C0008,303,518,8841266,10362,0 +40541,Wioska+barbarzy%C5%84ska,550,313,698350371,2946,0 +40543,kamilex,681,421,849095435,4543,0 +40544,TARAN,553,693,7860453,5540,0 +40545,Darma+dla+zawodnika,514,697,848928624,6967,0 +40546,%23whaj2,484,698,699605333,9812,0 +40547,090+invidia,518,700,849093426,6381,0 +40548,050,452,305,2502956,9243,0 +40549,121+Wioska+barbarzy%C5%84ska,545,356,699491076,10001,0 +40550,Sernik+z+Andzynkami,696,489,699126484,9808,0 +40551,%230167+yasoke19,493,317,1238300,10178,0 +40552,035%23+Renei,480,692,3933666,4705,0 +40553,O063,342,621,272173,9824,0 +40554,psycha+sitting,405,671,699736927,10178,0 +40555,%3F%3F%3F,480,308,698489071,9877,0 +40556,Wyspa_45,510,697,2585846,9638,0 +40557,A+073,363,639,699269923,7947,0 +40558,Wow11,366,357,699730714,7886,0 +40560,Wyspa_05,515,693,2585846,9638,0 +40561,Dream+on,302,504,698962117,9486,7 +40562,A+066,363,645,6948793,9327,0 +40563,C0184,305,538,8841266,7403,0 +40564,Wioska+barbarzy%C5%84ska,532,301,698350371,7270,1 +40565,Wioska+061,646,593,848971079,9761,0 +40566,Jednak+wol%C4%99+gofry,474,695,699725436,8804,0 +40567,.achim.,487,313,6936607,8449,0 +40568,%3F%3F%3F%3F,492,297,698489071,8660,0 +40569,061.,324,595,7183372,8163,0 +40570,Wioska+barbarzy%C5%84ska,625,349,699580120,9761,0 +40572,%5B0217%5D,300,507,8630972,7577,0 +40573,%23%23%23061%23%23%23,594,674,698285444,10495,0 +40574,KR%C3%93L+PAPI+WIELKI,631,653,698191218,9536,0 +40575,Wioska+barbarzy%C5%84ska,693,487,699429153,8895,0 +40576,Z%C5%82oty+%C5%9Awit,593,328,699883079,4144,0 +40577,Didek,684,582,849070946,893,0 +40578,-+134+-+SS,543,693,849018239,10000,0 +40579,B03+S%C5%82upsk,345,375,7462660,4582,0 +40580,C0014,306,519,8841266,10362,0 +40581,006,699,506,7418168,10019,0 +40582,KR%C3%93L+PAPI+WIELKI,649,628,698191218,10000,0 +40583,-+Fracadabra+-,662,615,849009623,4684,0 +40584,Wioska+barbarzy%C5%84ska,331,597,7183372,7898,0 +40585,New+World,441,688,698152377,10294,0 +40586,Twierdza+%28bula90%29,356,563,0,6873,32 +40588,Gattacka,687,431,699298370,8843,0 +40590,B%23008,695,460,2065730,9797,0 +40591,Child+In+Time,639,587,848926293,4960,0 +40592,D009,612,661,9023703,5797,0 +40593,Hofek+19,667,398,699491076,7600,0 +40595,skiba,613,663,848909464,10319,0 +40596,074g,310,557,698641566,7495,4 +40597,Wioska+barbarzy%C5%84ska,334,387,698807570,10057,0 +40598,%3F%3F%3F,494,299,698489071,10636,0 +40601,KR%C3%93L+PAPI+WIELKI,694,521,698191218,7757,0 +40602,-+192+-+SS,560,690,849018239,7337,0 +40603,Wioska+barbarzy%C5%84ska,653,615,849066044,5787,0 +40604,FP025,476,699,699605333,10393,0 +40605,004,305,550,5997814,5416,0 +40606,029,698,533,699150527,7764,0 +40607,011,308,474,2418364,2779,0 +40608,psycha+sitting,410,676,699736927,10311,0 +40609,psycha+sitting,416,675,699736927,6394,0 +40610,Wioska+barbarzy%C5%84ska,672,404,8675636,8848,0 +40611,East7,657,375,1086351,3700,0 +40612,023+LUCKY+SHOT,619,349,8675636,10019,0 +40613,Angie,639,588,848926293,4121,0 +40614,XDX,604,330,699098531,6869,0 +40615,Wioska+3,503,307,849099342,6931,0 +40616,-26-,642,358,699837826,2189,0 +40617,097,699,528,2135129,3865,0 +40619,a+mo%C5%BCe+off+%3F+%3A%29,672,411,698768565,4330,0 +40620,EO+EO,299,510,699697558,10083,0 +40621,%7E082.,465,697,7139820,3311,0 +40622,psycha+sitting,412,676,699736927,9359,0 +40623,0.10+Szale%21,467,690,699827112,9741,0 +40624,-+168+-+SS,548,692,849018239,8740,0 +40625,027.+Kopalnia,690,461,7494497,9926,8 +40626,032.+nie+ma+tu+nic+ciekawego,692,466,7494497,9894,0 +40627,Taran,335,603,6180190,9959,0 +40628,psycha+sitting,456,647,699736927,10178,0 +40629,Wioska+barbarzy%C5%84ska,683,564,7038651,4219,0 +40631,061,631,348,849010255,5999,0 +40632,%230148+Kamil0ss1,476,319,1238300,10178,0 +40633,Dream+on,302,489,698962117,9515,0 +40636,Piwna+25,679,416,699812007,4205,0 +40638,Dream+on,304,494,698962117,9497,0 +40639,.24.+Ilion+e,351,626,272173,6253,0 +40640,Wioska+barbarzy%C5%84ska,691,440,1715091,8768,0 +40641,037+-+Mroczna+Osada,689,453,849035905,12154,0 +40642,z+001034,360,365,3909522,7331,0 +40643,FAKE+OR+OFF,418,317,698231772,9812,0 +40644,Didek,680,575,849070946,4626,0 +40645,psycha+sitting,421,682,699736927,5434,0 +40646,B.10+duchy+serca+puszczy,557,315,849026145,2369,0 +40647,MojeDnoToWaszSzczyt,496,299,9299539,9957,0 +40648,Wioska+Lord+Deemer,324,600,7183372,10343,0 +40649,Wioska+bukai,578,324,7563943,9723,0 +40650,MojeDnoToWaszSzczyt,504,307,9299539,9726,0 +40651,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+12,624,515,699379895,8625,0 +40652,%23whaj4,482,699,699605333,7933,0 +40653,B13,698,538,848995478,10702,8 +40655,R+034,497,696,699195358,9717,0 +40656,%5BB%5D_%5B024%5D+Dejv.oldplyr,419,339,699380607,10259,0 +40657,bucksbarzy%C5%84skamiiiru,338,381,848955783,3677,0 +40658,%230106+Krokodyl,484,542,9272054,8725,0 +40659,Wioska+barbarzy%C5%84ska,390,668,699269923,8355,0 +40660,KONFA+TO+MARKA%2C+NARKA,309,456,698152377,6220,0 +40661,%3F%3F%3F,479,300,698489071,9966,0 +40662,Elo+Elo+17,314,579,699016994,6620,0 +40664,LD041+Out+Of+Body+Experiance,635,643,8096537,9761,0 +40665,Wioska+barbarzy%C5%84ska,663,383,699580120,9027,0 +40666,Sernik+z+Andzynkami,697,498,699126484,9766,0 +40667,TWIERDZA+.%3A089%3A.,681,570,7154207,7503,0 +40668,%230278+Marass,473,306,1238300,9662,0 +40669,0008+Sir+JuriGagarin,441,689,849037407,10495,0 +40670,Szale,464,690,698585370,9502,0 +40671,psycha+sitting,415,680,699736927,10311,0 +40672,EO+EO,302,507,699697558,10019,0 +40673,0012+mackobl14,442,690,849037407,9371,0 +40674,013+Alabama,645,370,9029928,5876,0 +40675,Wioska+Alx18,669,393,8675636,10019,0 +40676,C.003,701,492,9188016,10000,0 +40677,22.GFRIEND,685,418,9180206,6775,0 +40678,Wioska+barbarzy%C5%84ska,668,603,3467919,5990,0 +40680,B02+Gda%C5%84sk,349,374,7462660,4684,0 +40681,051g,311,556,698641566,9809,0 +40682,D018,358,632,272173,7393,0 +40683,Wioska+barbarzy%C5%84ska,352,633,272173,5188,0 +40684,.achim.,471,302,6936607,4198,0 +40686,Wioska+barbarzy%C5%84ska,528,304,8606809,4108,0 +40687,New+Land+04,337,395,849064752,3724,0 +40688,Klaudek24,640,356,849092309,3170,0 +40689,013,700,507,7418168,10019,0 +40690,018.Stradi,434,310,698365960,10495,0 +40691,ZA28,320,409,356642,9835,0 +40692,D015,615,659,9023703,10218,0 +40693,C.004,697,492,9188016,10000,0 +40694,Forteca%2A008%2A,531,696,1078121,6442,0 +40695,Rogatki+5,314,560,699265922,3774,0 +40697,RTS+75,573,625,848995242,10183,0 +40698,Jan+NEW2+Ost+K,688,455,879782,9883,0 +40699,wojo,396,330,698231772,10083,3 +40700,Wioska+Rychont,378,340,1668965,1091,0 +40701,Wioska+barbarzy%C5%84ska,314,573,699671197,4065,0 +40702,Wioska+barbarzy%C5%84ska,355,632,272173,4361,0 +40703,016+VWF+Wioska+barbarzy%C5%84ska,311,428,3108144,6151,0 +40704,2.Rozhok,412,334,849098648,9976,0 +40705,Wioska+barbarzy%C5%84ska,403,363,8419570,8016,0 +40706,007,698,506,7418168,10019,0 +40707,P%C3%B3%C5%82nocny+Bagdad,615,336,8847546,9835,0 +40708,Wioska+barbarzy%C5%84ska,308,555,5997814,5815,0 +40709,Wioska+barbarzy%C5%84ska,341,621,9199885,8003,0 +40710,203...segador,450,305,6920960,10654,6 +40711,X+007,596,324,6384450,2550,0 +40712,FAKE+OR+OFF,421,318,698231772,9833,0 +40713,ZA09,322,407,356642,9772,0 +40714,005,641,635,849099544,4298,0 +40715,B%23027,680,421,2065730,4442,0 +40716,%5B0049%5D,432,315,8630972,10495,0 +40717,Gattacka,687,439,699298370,9551,1 +40719,%23%23%23062%23%23%23,594,675,698285444,10495,0 +40721,Wow9,366,354,698160606,8591,0 +40722,%23%23%23063%23%23%23,580,683,698285444,10495,0 +40724,Na+Kra%C5%84cu+%C5%9Awiata+011,630,352,9291984,6061,0 +40725,Wioska+barbarzy%C5%84ska,654,371,7340529,9113,0 +40726,psycha+sitting,410,679,699736927,10311,0 +40728,Jan+Ost,690,443,879782,8837,0 +40729,040,449,311,2502956,10019,0 +40730,Szlachcic,380,341,698160606,6974,0 +40731,Wioska+barbarzy%C5%84ska,630,349,9291984,3471,0 +40732,TWIERDZA+.%3A082%3A.,687,564,7154207,8208,0 +40733,B006,515,304,699208929,9985,0 +40734,D.015,394,668,849088243,6722,0 +40736,No.26,457,692,698826986,1575,0 +40737,Twierdza+1,511,301,699208929,10971,0 +40738,%7E081.,469,694,7139820,3946,0 +40739,012.+Snotinghamscire,377,340,699660539,6611,0 +40742,080+invidia,518,699,849093426,8783,0 +40743,Didek,687,577,849070946,10336,0 +40744,z181_16,312,444,393668,9520,0 +40745,008,701,509,7418168,10019,0 +40746,034+E+Tenerife,700,530,8323711,10143,1 +40747,Orze%C5%82+11,692,484,699413581,4354,0 +40748,025,630,651,699373599,6689,0 +40749,003,677,416,699738350,9653,3 +40750,-05-,555,690,7860453,6526,0 +40752,003,306,474,2418364,6537,0 +40753,B3.,310,548,849095482,3753,0 +40754,Taran,323,591,6180190,7532,0 +40755,Gattacka,688,429,699298370,9004,0 +40756,005,588,324,7340529,10654,0 +40757,Winterhome.076,513,306,848918380,8854,0 +40758,%2A197%2A,361,358,699273451,10211,0 +40759,B2.,310,543,849095482,3666,0 +40760,Na+Kra%C5%84cu+%C5%9Awiata+010,627,344,9291984,6722,0 +40762,Wioska+ll,319,580,699671197,12154,0 +40763,EO+EO,306,521,699697558,10495,9 +40764,Wrzoski+Bida,687,554,848932879,8671,0 +40765,Twierdza+6zzz,510,300,699208929,5895,0 +40766,psycha+sitting,421,676,699736927,10178,0 +40767,Wioska+6,340,376,7462660,4920,0 +40768,Osada+koczownik%C3%B3w,356,629,272173,2809,7 +40769,A6.,313,544,849095482,4534,0 +40770,Wioska+barbarzy%C5%84ska1,392,660,699269923,9276,0 +40771,Szale,462,696,699725436,8615,0 +40772,027+invidia,530,695,849093426,10104,0 +40773,Po+ma%C5%82pce%3F,700,498,699126484,9815,0 +40774,-4-,325,596,7183372,10401,2 +40775,4.C,456,693,699777372,8615,0 +40776,Wioska+barbarzy%C5%84ska,682,565,7038651,3614,0 +40777,BRICKLEBERRY,554,305,699072129,10311,0 +40778,Wioska+barbarzy%C5%84ska,354,628,272173,4568,0 +40779,O099,347,627,272173,9227,0 +40780,000+Plutosea,317,567,9280477,6871,0 +40781,S007,600,673,8627359,9204,0 +40782,F4T4L,702,510,699150527,9962,0 +40783,019,475,698,848896948,9482,0 +40784,C04+Grudzi%C4%85dz,348,376,7462660,5252,0 +40785,Kasia+xd,703,497,942959,10495,0 +40786,C0261,303,546,8841266,10495,0 +40787,Lord+Lord+Franek+.%23140,511,320,698420691,10523,0 +40788,Out+of+Touch,321,428,698962117,9059,0 +40789,a+mo%C5%BCe+off+%3F+%3A%29,678,406,698768565,5393,0 +40790,039.+Night+Raid,486,701,699684062,9908,0 +40791,C0122,300,510,8841266,10452,0 +40792,TWIERDZA+.%3A081%3A.,685,561,7154207,9550,0 +40793,Taran,328,604,6180190,8768,0 +40794,024,701,511,699150527,8705,0 +40795,267...gulden,460,304,6920960,10283,0 +40797,New+World,445,687,698152377,10294,0 +40798,Z02,317,415,356642,9835,1 +40799,Wioska+barbarzy%C5%84ska,342,376,7462660,2412,0 +40800,Wioska+barbarzy%C5%84ska,681,568,7038651,3604,0 +40801,KHORINIS,372,656,849099924,5506,0 +40802,Out+of+Touch,315,420,698962117,9486,0 +40803,002,472,685,9003698,10373,0 +40804,Dream+on,300,483,698962117,9697,0 +40805,C.005,702,492,9188016,10000,0 +40806,psycha+sitting,410,673,699736927,10178,0 +40807,K35+-+%5B025%5D+Before+Land,587,321,699088769,9570,0 +40808,C.001,699,490,9188016,10000,8 +40809,TWIERDZA+.%3A053%3A.,681,566,7154207,9427,0 +40810,C0096,305,531,8841266,10362,0 +40811,-+222+-+SS,555,695,849018239,4231,0 +40812,RTS+11,576,636,848995242,10495,0 +40813,033,700,521,699150527,7269,0 +40814,wie%C5%9B5,657,378,7340529,7161,0 +40815,Wioska+barbarzy%C5%84ska,690,548,17714,6179,0 +40817,Visca+Barca,666,599,3467919,9761,0 +40818,%5B0050%5D,442,309,8630972,10495,0 +40819,AAA,529,308,1006847,10922,0 +40820,Wioska+barbarzy%C5%84ska,674,408,8675636,8854,0 +40821,015.+Northwic,381,340,7775311,6876,0 +40822,17.+Awangarda+Post%C4%99pu,688,493,699804790,9362,0 +40823,0002,424,322,2321390,4897,0 +40824,C0092,301,522,8841266,10362,0 +40825,Dream+on,303,496,698962117,9515,0 +40826,0007+Vibrus,474,697,699656989,10025,0 +40827,000+Plutosea,314,565,9280477,5518,0 +40828,Wioska+25,679,579,849101162,5917,0 +40830,No.23,469,679,698826986,5084,0 +40831,D%C4%85browa+0026,317,562,849096972,2177,0 +40832,Wioska+barbarzy%C5%84ska2o,394,666,699736927,7730,0 +40833,skiba,613,662,848909464,10319,0 +40834,C0082,300,524,8841266,10362,0 +40835,Wioska+barbarzy%C5%84ska,666,606,3467919,7749,0 +40836,Dream+on,305,501,698962117,9075,0 +40837,Wioska+barbarzy%C5%84ska,687,548,17714,6441,0 +40838,14.+Karol+II,689,488,699804790,9362,0 +40839,Wioska+barbarzy%C5%84ska,384,659,699269923,8102,0 +40840,Sernik+z+Andzynkami,696,496,699126484,9744,0 +40841,Wioska+barbarzy%C5%84ska,674,407,8675636,9062,0 +40842,SOKzGUMIjag%C3%B3d,645,372,849059491,8128,0 +40843,Dream+on,306,491,698962117,9539,0 +40844,psycha+sitting,419,676,699736927,10178,0 +40845,New+World,427,688,698152377,10292,0 +40846,0024.+Y+-,694,532,7125212,4483,0 +40847,C0123,303,528,8841266,10362,0 +40848,%230233+Kamileq69+dar,471,303,1238300,10178,0 +40849,Rogatki4,312,560,699265922,3892,0 +40850,Topornik+3,649,375,7340529,11130,0 +40851,031,305,543,9280477,6389,0 +40852,146,550,397,849064752,10311,0 +40853,psycha+sitting,410,672,699736927,9936,0 +40854,Paruwland,584,674,849099505,3075,0 +40855,%2AINTERTWINED%2A,504,696,698704189,6085,0 +40856,0045,571,320,699485250,4557,0 +40857,046,301,535,9280477,5764,0 +40858,a+mo%C5%BCe+off+%3F+%3A%29,679,405,698768565,5084,0 +40859,015+serniczek+forever,504,665,8954402,10139,0 +40860,019,395,331,8153941,9135,0 +40861,035,697,513,699150527,7488,0 +40862,030.+Alzenau,695,465,7494497,10284,0 +40863,Wioska+barbarzy%C5%84ska,625,351,7555180,3368,0 +40864,%5B038%5D,651,584,698305474,5097,0 +40867,Wioska+barbarzy%C5%84ska,504,698,7976264,6225,0 +40868,BSK3,653,620,849066044,7667,0 +40869,Wioska+mikolajjacek,329,595,7183372,10362,0 +40870,WB18,329,404,356642,6802,0 +40871,%23%23%23064%23%23%23,592,675,698285444,10495,0 +40872,TARAN,547,693,7860453,8711,0 +40873,Swoja2,602,666,6528152,8494,0 +40875,psycha+sitting,399,672,699736927,6858,0 +40876,021,402,677,849099876,10495,0 +40877,Wioska+barbarzy%C5%84ska,695,459,849098769,6317,0 +40879,C0097,306,531,8841266,10362,0 +40880,Wioska+040,646,600,848971079,9761,0 +40881,Sosnowiec,549,308,7139853,2330,0 +40882,New+World,424,685,698152377,10292,0 +40883,Dream+on,302,509,698962117,9488,0 +40884,KR%C3%93L+PAPI+WIELKI,647,634,698191218,10187,0 +40885,%4006%40,407,323,699483429,7545,0 +40886,044-+Mroczna+Osada,657,388,849035905,12154,0 +40887,024+NAWRA,665,614,849048867,5379,0 +40888,Wioska+barbarzy%C5%84ska,669,391,8675636,8863,0 +40889,-001-,374,647,699269923,9318,0 +40890,Wioska+barbarzy%C5%84ska,326,408,2418002,4043,0 +40891,marmag81%2F03a,303,468,1096254,6165,0 +40892,Antoni%C3%B3w,571,684,698723158,7116,0 +40893,%5B0054%5D,445,312,8630972,10495,0 +40894,Wioska+barbarzy%C5%84ska,395,672,698650509,2918,0 +40895,Wioska+Zorro+022,677,592,849080702,4120,0 +40896,psycha+sitting,406,671,699736927,10178,0 +40897,D_1,530,304,3377827,6763,0 +40898,C002,608,384,699485250,9735,0 +40899,%5B169%5D,644,585,8000875,8028,0 +40900,KR%C3%93L+PAPI+WIELKI,646,640,698191218,9408,0 +40901,065.+hehehe3,699,463,7494497,10247,0 +40902,Wioska+barbarzy%C5%84ska,338,618,9199885,5374,0 +40903,%5B0091%5D,436,308,8630972,10495,0 +40904,Psycho+to+Marka%2C+Narka+%21,319,571,849040142,4562,0 +40905,018+Azkaban,635,352,9291984,10559,0 +40906,a+mo%C5%BCe+off+%3F+%3A%29,678,410,698768565,7528,0 +40907,--01--,342,601,8877156,10474,0 +40908,Nalesnik+ES,493,701,699684062,9439,2 +40909,A06+Praga,342,384,7462660,6799,0 +40910,psycha+sitting,418,678,699736927,6832,0 +40911,003,703,507,699150527,10311,0 +40912,16.+hossa+incoming,555,311,699072129,9403,0 +40913,Wioska+barbarzy%C5%84ska,617,336,0,1825,0 +40914,zzz,688,545,699316421,5864,0 +40915,UltraInstynkt,612,337,699710633,9745,0 +40916,KONFA+TO+MARKA%2C+NARKA,305,452,698152377,10290,0 +40917,Szlachcic,311,542,698388578,5298,0 +40918,BuNKeR+EAST,617,335,8963720,9835,0 +40919,Wioska+barbarzy%C5%84ska,383,665,699269923,8675,0 +40920,Dream+on,301,497,698962117,9745,0 +40921,a+mo%C5%BCe+off+%3F+%3A%29,673,413,698768565,5076,0 +40922,C0026,308,524,8841266,10362,8 +40923,B020,523,305,699208929,10356,0 +40924,Wioska+barbarzy%C5%84ska,586,319,828637,10290,0 +40925,275...gulden,458,306,6920960,10028,0 +40926,KR%C3%93L+PAPI+WIELKI,631,652,698191218,9664,0 +40927,psycha+sitting,404,673,699736927,10311,0 +40928,Dream+on,301,496,698962117,9489,0 +40929,025,701,513,699150527,8846,0 +40930,Jan+My+City+2,691,434,879782,6629,0 +40932,Wioska+barbarzy%C5%84ska,348,369,7462660,6807,0 +40933,Wioska+Bochun10,335,517,7449254,9965,0 +40934,Z%C5%82oty+%C5%9Awit,570,313,699883079,8200,0 +40936,-002-+sz,359,634,272173,2952,0 +40937,001.Stradi,439,312,698365960,10495,0 +40938,Z%C5%82oty+%C5%9Awit,586,325,699883079,3533,0 +40939,040+Vranje,628,593,699272880,7726,0 +40940,0025+Wioska+barbarzy%C5%84ska,450,689,849037407,9895,0 +40941,Tyskie,299,476,849095376,9951,0 +40942,K35+-+%5B014%5D+Before+Land,578,317,699088769,9783,0 +40943,Wioska+Marcio7,400,328,195249,10002,0 +40944,Wie%C5%9B+02,338,614,9199885,4180,0 +40946,B016,518,301,699208929,6896,0 +40947,Biskupice,343,381,7462660,11581,0 +40948,AAA,540,307,1006847,7955,0 +40949,-+131+-+SS,542,692,849018239,9566,0 +40950,%230275+Gwen1,470,306,1238300,3641,0 +40951,Wyspa_46,510,702,2585846,6930,0 +40952,Wioska+barbarzy%C5%84ska+1,598,330,849006385,5017,0 +40953,Didi,680,587,849070946,10495,0 +40954,062.,317,588,3475079,2106,0 +40955,%C5%9Alimak+5,605,334,849061374,7010,0 +40956,Hello+there,322,591,6180190,3443,0 +40957,0076,533,691,698659980,10252,9 +40958,Wioska+barbarzy%C5%84ska+I,577,316,848958556,4521,0 +40959,XDX,610,335,699098531,8968,0 +40960,X+001,596,330,6384450,10362,8 +40961,Wioska+018,672,594,7999103,7950,0 +40962,Wioska+barbarzy%C5%84ska,556,686,849099280,4028,0 +40963,066,633,352,849010255,2337,0 +40964,Taran,326,594,6180190,10064,0 +40965,bucksbarzy%C5%84skamiiiru,324,401,848955783,9374,0 +40966,Wyspa_29,503,696,2585846,9638,0 +40967,Dzik,699,482,849099640,4488,0 +40968,Szlachcic,389,337,3484132,9852,0 +40969,O137,347,631,272173,9835,0 +40970,-+193+-+SS,561,687,849018239,9195,0 +40971,Didi,677,598,849070946,10728,0 +40972,z181_13,308,438,393668,9891,0 +40973,0040+Wioska+barbarzy%C5%84ska,450,692,849037407,9582,0 +40974,037+Elverum,623,586,699272880,10186,0 +40975,008,396,328,8153941,9071,0 +40976,009,700,509,7418168,10019,0 +40977,Wioska+barbarzy%C5%84ska,645,633,698234770,5618,0 +40978,Wioska+barbarzy%C5%84ska,582,315,828637,10481,0 +40979,a+mo%C5%BCe+off+%3F+%3A%29,673,404,698768565,7165,0 +40980,0051,568,686,698659980,10160,1 +40981,Wioska+1,342,374,7462660,10040,0 +40982,037+invidia,529,695,849093426,9620,0 +40983,Jan+STALINGRAD+88+K,684,437,879782,9673,0 +40984,Czarna+001,383,657,699269923,9031,0 +40985,Pallad,689,443,8459255,5255,0 +40986,Wie%C5%9B+09,336,613,9199885,3118,0 +40987,046.,627,653,699373599,4791,0 +40989,Na+Kra%C5%84cu+%C5%9Awiata+009,628,345,9291984,6890,0 +40990,Out+of+Touch,322,424,698962117,9742,5 +40991,209...segador,457,305,6920960,8728,0 +40992,C.011,695,492,9188016,10005,0 +40993,-+204+-+SS,560,692,849018239,8631,0 +40994,I097,689,446,699722599,7551,0 +40995,Taran,327,603,6180190,9934,0 +40996,%23%23%23017%23%23%23,585,680,698285444,10495,0 +40997,Moldor+13,635,355,849049045,7648,0 +40998,16.+Zerrikania,696,550,8976313,9616,0 +40999,Wioska+barbarzy%C5%84ska,693,440,1715091,8644,0 +41000,%23%23%23065%23%23%23,593,673,698285444,10495,0 +41001,TWIERDZA+.%3A024%3A.,686,558,7154207,10355,0 +41002,Wioska+barbarzy%C5%84ska,464,695,699725436,4235,0 +41003,wie%C5%9B6,655,378,7340529,8730,0 +41004,%3D0006%3D,402,323,698231772,10077,0 +41005,Dream+on,306,497,698962117,8986,0 +41006,19.IVE,682,421,9180206,8769,6 +41007,Wioska+barbarzy%C5%84ska,668,395,8675636,9938,0 +41008,z181_14,307,437,393668,9886,0 +41009,Out+of+Touch,321,423,698962117,9740,8 +41010,Wioska+barbarzy%C5%84ska,400,330,195249,2487,0 +41011,-+240+-+SS,546,689,849018239,6505,0 +41012,Sernik+z+Andzynkami,705,501,699126484,9797,0 +41013,Wioska+barbarzy%C5%84ska,348,370,7462660,9661,0 +41014,Cogito+Ergo+Sum,474,312,849017820,9269,0 +41015,o02,616,665,699189792,9742,0 +41016,Bimbrovnik,690,431,8675636,10019,0 +41017,Winterhome.075,513,305,848918380,8173,0 +41018,Zeta+Reticuli+O,416,322,699323302,11188,5 +41020,Konin,663,387,699491076,7512,0 +41021,%23%23%23066%23%23%23,597,673,698285444,10495,0 +41022,BRZEG+JORDANU+%7C+008,693,521,9228039,4755,0 +41023,Sta%C5%82ka+1,350,625,699864013,3730,0 +41024,022.,324,602,7183372,9310,0 +41025,K66,628,646,7038651,9032,0 +41026,AAA,545,305,1006847,5023,0 +41028,040.,318,585,3475079,2188,0 +41029,%3F%3F%3F%3F,466,305,698489071,12154,0 +41030,%2A209%2A,336,388,699273451,5910,0 +41031,psycha+sitting,422,677,699736927,10311,0 +41032,010,637,640,849099544,9922,0 +41033,Wioska+barbarzy%C5%84ska,338,615,9199885,6082,0 +41034,Jan+WILCZY+SZANIEC,683,435,879782,7311,0 +41035,105+invidia,513,701,849093426,7025,0 +41036,Wioska+barbarzy%C5%84ska,673,395,698768565,7906,0 +41037,030,697,532,699150527,8325,0 +41038,Sernik+z+Andzynkami,698,493,699126484,9730,0 +41039,XDX,613,340,699098531,7014,0 +41040,Wioska+barbarzy%C5%84ska,313,565,698290577,3090,0 +41041,Wioska+barbarzy%C5%84ska,349,367,7462660,8113,0 +41042,Wioska+3,344,381,7462660,7262,0 +41043,Wioska+barbarzy%C5%84ska,370,652,699269923,8675,0 +41044,D017,618,658,9023703,7699,0 +41045,Szlachcic,385,340,3484132,9493,0 +41046,MojeDnoToWaszSzczyt,503,301,9299539,9959,0 +41047,A08,692,562,848995478,10405,0 +41048,KR%C3%93L+PAPI+WIELKI,638,645,698191218,9949,0 +41049,Wioska+barbarzy%C5%84ska,667,613,849048867,2685,0 +41050,013.+Jorvik,377,339,699660539,6170,0 +41051,Osada+koczownik%C3%B3w,387,661,699269923,9470,2 +41052,009,640,358,9148043,9792,0 +41053,W%C5%82adcy+P%C3%B3%C5%82nocy+15,694,505,699379895,5712,0 +41054,MojeDnoToWaszSzczyt,499,298,9299539,9959,0 +41055,Dream+on,302,510,698962117,9488,0 +41056,EO+EO,306,506,699697558,10083,0 +41057,New+World,436,687,698152377,9558,0 +41058,D014,596,404,699761749,7751,0 +41059,z+181-A013,350,377,3909522,6799,0 +41060,Nikolau,419,328,849072873,9561,0 +41061,Okocim,299,479,849095376,8185,0 +41063,057,666,386,698635863,4600,0 +41065,Wioska+barbarzy%C5%84ska+II,575,315,848958556,4334,0 +41066,C.03+a+panicz+to+dok%C4%85d%3F,548,303,849026145,6960,0 +41067,bananowa+plantacja,686,425,699738350,7331,0 +41069,Dream+on,302,485,698962117,9403,3 +41071,AAA,545,311,1006847,6915,0 +41072,%2136+76+Luncusoara,660,374,698361257,4869,0 +41073,Cz+hwiah,404,326,699854830,2777,0 +41074,041+invidia,521,698,849093426,9626,0 +41075,004+barbarzy%C5%84ska,405,323,698258283,5263,0 +41076,%23%23%23067%23%23%23,583,680,698285444,10495,0 +41077,WB+09,636,604,2269943,4378,0 +41079,%23%23%23068%23%23%23,596,671,698285444,10495,0 +41080,Wioska+barbarzy%C5%84ska,697,482,699429153,7987,0 +41081,Wioska+barbarzy%C5%84ska,695,522,699573053,10150,0 +41082,0060,568,688,698659980,10160,3 +41083,Hutki,304,481,8048374,8063,0 +41084,Z%7C009%7C+Udine,460,699,699393742,7788,0 +41085,%23K66+0005,613,667,699728159,9761,0 +41086,Odbudowa+Tilburga+%3A%29,632,347,9291984,4359,0 +41087,Wioska+barbarzy%C5%84ska,700,468,699574408,7137,0 +41088,Wadowice,546,311,7139853,4825,0 +41091,FP002,480,698,699605333,10393,0 +41092,2.Alicante,570,681,698215322,9951,0 +41093,CALL+1070,658,625,699784536,10495,0 +41094,Ob+Konfederacja,429,332,848915730,9938,0 +41095,B018,519,300,699208929,6732,0 +41096,028.,328,588,3475079,8773,0 +41097,007,660,379,698635863,9761,0 +41098,Sibeliusa,479,299,698848373,3231,0 +41099,0002,356,357,699644448,8393,0 +41101,%5B0218%5D,300,499,8630972,7048,0 +41102,Wioska+Zorro+023,675,594,849080702,9372,0 +41103,psycha+sitting,422,680,699736927,10311,0 +41104,%2AINTERTWINED%2A,507,696,698704189,4635,0 +41105,B04+Ko%C5%9Bcierzyna,347,375,7462660,4506,0 +41106,Wioska+Wiki+5,525,698,849100354,8204,0 +41107,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,492,703,8980651,9382,0 +41108,Wioska+Wodzu004,551,696,699201278,8665,0 +41109,004+Nie+bij%2C+dzidzia+ucieka,680,415,699576407,3781,0 +41110,008,307,559,5997814,9740,0 +41111,B5.,311,547,849095482,2837,0 +41112,FAKE+OR+OFF,408,321,698231772,9813,0 +41113,KR%C3%93L+PAPI+WIELKI,646,642,698191218,9946,0 +41114,Halford+John+Mackinder,355,641,849096649,9229,0 +41115,Out+of+Touch,314,421,698962117,8984,0 +41117,007,629,353,849086491,7862,0 +41119,C0079,304,517,8841266,10362,0 +41121,Wioska+barbarzy%C5%84ska,581,319,828637,10476,0 +41123,Wioska+barbarzy%C5%84ska,394,672,6948793,9766,0 +41127,%3F%3F%3F,485,301,698489071,10503,0 +41128,A07+Wiede%C5%84,341,384,7462660,4710,0 +41129,259...Gulden,458,302,6920960,10306,7 +41131,KONFA+TO+MARKA%2C+NARKA,310,458,698152377,10290,0 +41133,Wioska+barbarzy%C5%84ska,356,362,7462660,9501,0 +41135,Mroczny+Zamek+025,353,632,698908184,5180,0 +41137,Wioska+barbarzy%C5%84ska,699,523,7047342,9927,0 +41139,18.+Nazair,697,549,8976313,7476,0 +41141,KONFA+TO+MARKA%2C+NARKA,311,457,698152377,10292,0 +41143,psycha+sitting,407,680,699736927,6908,0 +41144,Mako+Reactor+1+-+B3F,552,627,8199417,4334,0 +41145,Wioska+barbarzy%C5%84ska,533,302,7758085,6679,0 +41147,%23%23%23069%23%23%23,579,683,698285444,10495,0 +41148,Wioska+089,667,605,848971079,7935,0 +41149,Wioska+27,678,579,849101162,3439,0 +41150,008g,309,553,5997814,9299,4 +41151,147,577,426,849064752,10311,0 +41152,002,304,474,2418364,9368,0 +41153,Wioska+barbarzy%C5%84ska,515,298,699208929,4207,0 +41154,XDX,612,331,699098531,9629,0 +41155,022.,323,595,3475079,8839,0 +41156,%3A%3A%3A+W+%3A%3A%3A+I,303,500,848917570,2565,0 +41158,psycha+sitting,396,675,699736927,5534,0 +41159,Boh81%2F222,305,471,848889556,9638,6 +41160,C0197,302,527,8841266,6297,0 +41161,Twierdza+9zz,513,300,699208929,6424,0 +41163,K35+-+%5B015%5D+Before+Land,577,320,699088769,9924,0 +41165,Moldor+7,631,354,849049045,8919,0 +41166,A+040,361,643,6948793,5767,0 +41167,004,391,670,6948793,9899,0 +41168,EO+EO,298,509,699697558,10019,0 +41169,Dream+on,297,485,698962117,7805,0 +41170,East+5,657,383,1086351,4451,0 +41172,047+-+Nowy+Pocz%C4%85tek...,358,646,6948793,6797,0 +41173,Mefedron+07,387,340,3484132,7863,0 +41174,C103,365,645,699383279,5287,0 +41175,%2136+76+Poiana+Miculi,660,378,698361257,9755,0 +41176,33.+The+Riddle,558,315,849099696,5356,0 +41177,psycha+sitting,412,681,699736927,10311,0 +41178,Wioska+barbarzy%C5%84ska,689,553,698666810,11288,0 +41179,Sernik+z+Andzynkami,698,497,699126484,9718,0 +41180,O104,348,626,272173,9233,0 +41181,005.+G%C3%B3rki+Niezbyt+Ma%C5%82e,648,636,849100994,6331,4 +41182,Wioska+-GPR-,337,619,9199885,5501,0 +41183,FP028,475,695,699605333,9919,0 +41184,039,689,451,699272633,6108,0 +41185,FAKE+OR+OFF,422,316,698231772,10089,0 +41186,009,451,307,2502956,10019,9 +41187,001,667,565,699493750,8414,0 +41188,Wioska+barbarzy%C5%84ska,697,538,848946700,5075,0 +41190,z+001039,353,367,3909522,7357,0 +41191,%4017%40,406,330,699483429,2634,0 +41192,psycha+sitting,397,675,699736927,6564,0 +41193,bucksbarzy%C5%84skamiiiru,331,392,848955783,10598,2 +41195,New+World,426,689,698152377,10311,0 +41196,%5B054%5D+%3F%3F%3F%3F,684,430,849095068,9271,0 +41197,Szlachcic,389,340,3484132,10072,0 +41198,007+wysokie+szcz%C4%99%C5%9Bcie,525,701,849093426,10237,0 +41199,032+Surowy1,692,443,849098769,5577,0 +41200,Gattacka,687,436,699298370,9355,0 +41201,Napewno+to+nie+jest+off,593,322,848912265,2500,0 +41202,B%23022,691,448,2065730,9797,0 +41203,0022+Wioska+barbarzy%C5%84ska,450,687,849037407,10201,0 +41204,Wioska+barbarzy%C5%84ska,625,342,7555180,3103,0 +41205,xxx,692,544,699316421,10495,0 +41206,Wioska+barbarzy%C5%84ska,348,368,7462660,9812,0 +41207,%3F%3F%3F,479,301,698489071,10503,0 +41208,B04,695,550,848995478,11130,5 +41209,Wioska+barbarzy%C5%84ska,477,649,848999671,7885,0 +41210,Komornicy+014,349,622,699336777,7615,0 +41211,Mniejsze+z%C5%82o+0017,438,312,699794765,9487,8 +41212,C0076,305,514,8841266,10362,0 +41213,Wroc%C5%82aw+001,589,681,699176234,10160,8 +41214,%23%23%23070%23%23%23,579,682,698285444,10495,0 +41215,Wioska+barbarzy%C5%84ska,670,397,8675636,9079,0 +41216,Orze%C5%82+2,693,486,699413581,10452,1 +41217,Wioska+barbarzy%C5%84ska,692,440,1715091,5529,0 +41218,boh81%2F01g,304,467,848889556,9617,0 +41219,B%23002,694,448,2065730,9797,0 +41220,-02-,566,687,7860453,10470,0 +41221,XIRON,670,611,849048867,1457,0 +41222,Wioska+062,654,605,848971079,9761,0 +41223,Wioska+barbarzy%C5%84ska,313,569,849098688,2641,0 +41224,KONFA+TO+MARKA%2C+NARKA,309,451,698152377,4970,0 +41225,102,309,568,699736959,4162,0 +41226,ManieK,344,615,9199885,9173,7 +41227,0001,425,320,2321390,10838,0 +41228,bucksbarzy%C5%84skamiiiru,330,406,848955783,7450,0 +41230,AAA,547,321,1006847,7765,0 +41231,010,700,510,7418168,10019,0 +41232,Gryfios+021,687,555,698666810,11717,0 +41233,Atlantyda,371,343,849068108,5500,0 +41234,%2136+64+Bancesti,646,369,698361257,10224,2 +41235,B.12+duchy+serca+puszczy,558,312,849026145,2488,0 +41236,Kluczbork,683,554,848932879,10728,0 +41237,psycha+sitting,400,673,699736927,10178,0 +41238,K-F+001,551,688,7860453,4953,0 +41239,%5B173%5D,564,556,8000875,7912,0 +41240,005,680,417,699738350,6181,0 +41241,%2A022+GAWRA%2A,310,428,2415972,8610,0 +41242,%23whaj3,480,699,699605333,10121,0 +41243,Wioska+barbarzy%C5%84ska,647,364,9029928,1988,0 +41245,Wioska+barbarzy%C5%84ska,312,448,393668,6802,0 +41246,Myszk%C3%B3w,305,481,8048374,7387,0 +41247,TWIERDZA+.%3A037%3A.,692,563,7154207,10226,0 +41248,003%23+Kate,484,695,699605333,10015,0 +41249,Wyspa_27,507,694,2585846,9638,0 +41250,%4012%40,404,325,699483429,4924,0 +41251,12.+Just+beginning,552,311,699072129,9901,0 +41252,Dream+on,303,495,698962117,9484,0 +41253,%3F%3F%3F,464,305,698489071,11405,0 +41254,Wiejska1,603,670,6528152,8440,0 +41255,Gdynia,480,299,698848373,5302,0 +41256,SIEDLISKA,494,297,849100406,8842,0 +41257,003,479,690,9003698,10373,0 +41258,Bankowa,468,308,698489071,5546,0 +41259,063.,697,459,849094609,2484,0 +41260,FAKE+OR+OFF,409,318,698231772,9841,0 +41261,-+Abracadabra+-,661,617,849009623,7433,0 +41262,By%C5%82e%C5%9B+w+porz%C4%85dku+006,373,649,699269923,9598,0 +41263,047.,623,654,699373599,3334,0 +41264,Wied%C5%BAma+-+Z+014,309,434,9239515,3232,0 +41265,Dream+on,306,496,698962117,9497,6 +41266,Tr%C4%99kusek,558,694,7860453,5369,0 +41267,Dream+on,297,504,698962117,9505,0 +41268,K%C5%82obuck,302,473,8048374,6337,0 +41270,Wioska+barbarzy%C5%84ska,349,632,272173,9690,0 +41272,008,656,381,698635863,8201,0 +41273,Wioska+barbarzy%C5%84ska,642,361,6625437,4311,0 +41274,a+mo%C5%BCe+off+%3F+%3A%29,680,406,698768565,6417,0 +41275,Wioska+barbarzy%C5%84ska,341,614,9199885,9172,0 +41276,B19,687,552,848995478,10728,0 +41277,Taran,336,610,6180190,9965,0 +41278,Hello+there,324,593,6180190,8964,0 +41280,bucksbarzy%C5%84skamiiiru,330,400,848955783,10299,2 +41281,Orze%C5%82+8,694,487,699413581,4885,0 +41282,130+invidia,503,703,849093426,9300,0 +41283,Zadupie,671,597,849048867,4897,0 +41284,B004,517,303,699208929,9955,0 +41285,Czerwona+R%C3%B3%C5%BCa,350,373,849100006,3499,0 +41286,z+001041,359,364,3909522,9114,2 +41287,%2AINTERTWINED%2A,512,703,698704189,7062,0 +41288,K35+-+%5B031%5D+Before+Land,573,320,699088769,6377,0 +41290,K35+-+%5B020%5D+Before+Land,583,322,699088769,9035,0 +41292,AAA,541,304,1006847,10311,0 +41293,Wioska+barbarzy%C5%84ska,615,333,0,577,0 +41294,Wioska+barbarzy%C5%84ska,701,477,699429153,8813,0 +41295,Wioska+barbarzy%C5%84ska,671,598,3467919,3478,0 +41296,Wioska+barbarzy%C5%84ska,536,699,8980651,9744,0 +41297,A05+Wroc%C5%82aw,345,382,7462660,4986,0 +41299,C0009,304,521,8841266,10362,0 +41300,Wioska+barbarzy%C5%84ska,642,363,699837826,2061,0 +41301,z181_15,306,439,393668,9883,5 +41302,Wioska+barbarzy%C5%84ska,550,312,698350371,4578,0 +41303,TWIERDZA+.%3A045%3A.,687,570,7154207,10228,0 +41304,Kiedy%C5%9B+Wielki+Wojownik,592,349,8632462,7185,0 +41305,Z%C5%82oty+%C5%9Awit,568,312,699883079,6115,0 +41306,0006.+A+-+Carvahall,616,525,7125212,10285,0 +41307,FAKE+OR+OFF,420,315,698231772,9820,0 +41309,Jan+Stuttgart+Ost,694,460,879782,7341,0 +41310,UltraInstynkt-,585,326,699710633,7565,0 +41311,008.+G%C3%B3rki+P%C5%82askie,650,634,849100994,6317,0 +41312,Wioska+barbarzy%C5%84ska,353,363,7462660,9383,0 +41313,STRA%C5%BBAK+1,605,328,849006385,4495,0 +41314,013+G%C3%B3rki+Mag%C3%B3rki,645,643,849100994,6120,3 +41315,029.Stradi,427,312,698365960,10495,0 +41316,KR%C3%93L+PAPI+WIELKI,649,632,698191218,10000,0 +41317,0014,649,625,6417987,4738,0 +41318,5.C,453,690,699777372,9126,0 +41320,Out+of+Touch,316,431,698962117,6021,0 +41322,Zagroda7,604,673,6528152,6153,0 +41323,MSWO-1,465,303,849017820,12075,0 +41324,20.+Metinna,698,536,8976313,8051,0 +41325,New+World,434,684,698152377,8847,0 +41326,Wyspa_37,501,698,2585846,9638,0 +41328,Didek,680,584,849070946,5635,0 +41329,053+onek666,614,667,699346280,10160,0 +41330,AAA,534,300,1006847,8573,0 +41331,037.Stradi,434,312,698365960,10495,0 +41332,086+invidia,517,702,849093426,9716,0 +41333,%230270+Gwen1,474,304,1238300,6472,0 +41334,Taran,334,613,6180190,9965,0 +41335,%230213+Segadorr+dar,448,309,1238300,10178,0 +41336,2.Malaga,572,681,698215322,5943,0 +41338,Wow12,362,350,698160606,7035,0 +41339,psycha+sitting,423,654,699736927,10268,0 +41340,O062,346,629,272173,9882,0 +41341,FP032,474,692,699605333,10122,0 +41342,Wioska+barbarzy%C5%84ska,695,455,849098769,5474,0 +41343,026.Stradi,429,313,698365960,10495,0 +41344,%23018.+Marco+Polo,451,677,848896948,8410,0 +41345,-+202+-+SS,535,696,849018239,6906,0 +41346,008+internacionale,347,372,7462660,10068,0 +41347,FAKE+OR+OFF,410,318,698231772,9812,0 +41348,Wioska+barbarzy%C5%84ska,525,544,7581876,6612,0 +41349,Wioska+barbarzy%C5%84ska,338,616,9199885,3506,0 +41350,Kiedy%C5%9B+Wielki+Wojownik,592,350,8632462,10838,0 +41351,%23%23%23071%23%23%23,596,676,698285444,10495,0 +41353,Mir%C3%B3w,571,690,698723158,7206,0 +41354,0255,544,662,698659980,10083,0 +41356,C0194,302,531,8841266,10072,0 +41357,Wioska+barbarzy%C5%84ska,382,660,699269923,7684,0 +41358,08.+Kaedwen,695,540,8976313,9849,0 +41359,New+World,433,692,698152377,9880,0 +41360,036.Stradi,427,310,698365960,10479,0 +41361,068,628,354,849010255,3223,0 +41363,Ave+Why%21,314,583,6180190,1684,0 +41364,Wioska+barbarzy%C5%84ska,696,504,699429153,7974,0 +41365,11.STAYC,687,422,9180206,8510,0 +41368,Wioska+barbarzy%C5%84ska,530,299,7758085,10002,0 +41369,Wyspa_26,508,694,2585846,9638,0 +41371,Wioska+barbarzy%C5%84ska,668,606,3467919,4969,0 +41372,Wioska+barbarzy%C5%84ska,309,548,5997814,3851,0 +41373,101+invidia,519,696,849093426,7304,0 +41374,072,692,545,699316421,9549,0 +41375,002,380,665,699269923,9533,0 +41376,017+Kettering+Road,609,330,699098531,7708,0 +41377,Tr%C4%99kus,557,693,7581876,4801,0 +41378,KR%C3%93L+PAPI+WIELKI,650,637,698191218,10427,0 +41379,A+020,364,622,699342219,8101,0 +41380,%23%23%23018%23%23%23,591,680,698285444,10495,0 +41381,Wioska+barbarzy%C5%84ska,696,503,699379895,2847,0 +41382,Oslo,516,297,7758085,2030,0 +41383,028.Stradi,435,308,698365960,10495,0 +41384,KONFA+TO+MARKA%2C+NARKA,301,457,698152377,10290,0 +41385,0008,422,314,2321390,6871,0 +41386,Wilk,698,481,849099640,7225,0 +41387,Wioska+barbarzy%C5%84ska,377,338,699660539,9849,0 +41388,Wioska+barbarzy%C5%84ska,587,315,828637,10495,0 +41389,OSADA02,603,331,849006385,4899,0 +41390,0114,374,660,7085510,7984,3 +41391,Wachowiaka,479,298,698848373,2858,0 +41392,Osada+koczownik%C3%B3w,326,604,7183372,10186,6 +41393,%23%23%23009%23%23%23,592,679,698285444,10495,0 +41394,Wioska+barbarzy%C5%84ska,579,679,698215322,3032,0 +41395,Wie%C5%9B+03,333,610,6180190,8870,0 +41396,ZA13,319,411,356642,9835,0 +41397,Wioska+barbarzy%C5%84ska,526,299,7758085,10337,0 +41398,025,303,543,9280477,7636,0 +41399,New+World,446,687,698152377,10294,0 +41400,Wioska+Zorro+012,678,595,849080702,5516,0 +41401,004.Stradi,440,313,698365960,10495,0 +41402,Wanda+Metropolitano,667,615,849096631,5653,0 +41403,%4003%40,406,324,699483429,9619,0 +41404,KONFA+TO+MARKA%2C+NARKA,305,456,698152377,10291,0 +41405,Dream+on,304,492,698962117,9488,0 +41406,FP010,478,699,699605333,10393,0 +41407,Wioska+barbarzy%C5%84ska,402,330,195249,8227,0 +41408,Wioska+barbarzy%C5%84ska,690,438,1715091,8439,0 +41409,08.+Nie+pyskuj,553,310,699072129,9105,0 +41410,D_3,531,304,849099797,1523,0 +41411,Wioska+barbarzy%C5%84ska,693,434,1715091,9560,0 +41412,Kryptonowy+gr%C3%B3d,314,419,699377401,3379,0 +41414,K35+-+%5B021%5D+Before+Land,584,322,699088769,8982,0 +41415,Szlachcic,372,350,698160606,4981,0 +41416,212,431,309,8630972,9033,0 +41417,028+Barba+10,309,541,926823,2634,0 +41419,034,700,524,699150527,8335,0 +41420,z+Wioska+9,362,359,3909522,5166,0 +41421,Jan+PowerForce+K,687,445,879782,9630,0 +41422,Taran,325,604,6180190,10654,0 +41423,%230214+Segadorr+dar,451,303,1238300,10178,0 +41424,Wioska+barbarzy%C5%84ska,329,599,7183372,5943,0 +41425,-+172+-+SS,537,696,849018239,8981,0 +41426,Szlachcic,381,345,3484132,10495,0 +41427,016+Komorniki,674,399,698768565,6989,0 +41428,ZZZ,500,694,8980651,9705,0 +41429,KONFA+TO+MARKA%2C+NARKA,308,454,698152377,10290,0 +41430,D%C4%85br%C3%B3wka+Nag%C3%B3rna,564,690,698723158,9482,0 +41431,ZZZ,512,701,8980651,6912,0 +41432,-03-,567,687,7860453,8461,0 +41433,%5B0052%5D,436,314,8630972,10495,0 +41435,C0124,300,512,8841266,10495,0 +41436,psycha+sitting,424,684,699736927,9778,0 +41437,277...gulden,461,300,6920960,10590,0 +41438,Wioska+barbarzy%C5%84ska,469,303,849093576,2047,0 +41439,0007,424,318,2321390,7963,0 +41441,Balbina,524,703,699733501,4783,0 +41442,Wsch%C3%B3d+X7,694,537,698562644,9836,0 +41443,033+Maine,610,480,7092442,10268,0 +41444,Wioska+barbarzy%C5%84ska,525,303,7758085,9408,0 +41445,Wioska+BLACK+SOLDI+LP,305,507,699510045,8855,0 +41446,023.,322,595,3475079,3095,0 +41447,Wioska+barbarzy%C5%84ska,349,373,7462660,6397,0 +41449,Wioska,670,596,849048867,1966,0 +41450,%2AINTERTWINED%2A,520,702,698704189,5344,0 +41451,Wioska+barbarzy%C5%84ska,693,437,1715091,7851,0 +41452,114.+Dran,632,603,8337151,6691,0 +41453,FAKE+OR+OFF,422,318,698231772,9919,0 +41454,AAA,539,303,1006847,10068,0 +41455,Wioska+barbarzy%C5%84ska,690,450,849098769,4853,0 +41456,AAA,542,303,1006847,9669,0 +41457,Wied%C5%BAma+-+Z+016,309,446,9239515,2309,0 +41458,bucksbarzy%C5%84skamiiiru,336,378,848955783,2347,0 +41459,KR%C3%93L+PAPI+WIELKI,661,624,698191218,10000,0 +41461,029.+LooK,697,473,7494497,9966,0 +41462,z181_27,305,443,393668,9756,0 +41463,Timbuktu,402,672,699736927,10311,8 +41465,MojeDnoToWaszSzczyt,504,302,9299539,9960,0 +41466,73.,321,575,698704189,3668,0 +41467,psycha+sitting,408,674,699736927,10178,0 +41468,038.,324,583,3475079,1521,0 +41469,szlachcic%3Btaran+3,593,320,7340529,10362,0 +41470,z+C01+Bydgoszcz,347,378,3909522,9345,0 +41471,Wioska+barbarzy%C5%84ska,340,388,698807570,10051,0 +41472,K34+-+%5B158%5D+Before+Land,466,303,699088769,7059,0 +41473,B019,521,298,699208929,7099,0 +41474,Z%C5%82oty+%C5%9Awit,568,311,699883079,7747,0 +41475,C16,694,531,848995478,2637,0 +41476,015,316,574,849099463,4661,0 +41477,%2136+75+Fratauti+Noi,651,374,698361257,9458,0 +41478,007+RVWF+Wioska+barbarzy%C5%84ska,315,431,3108144,4172,0 +41479,012+NAWRA,667,609,849048867,7002,0 +41480,Mastowis,673,393,699738350,9885,0 +41481,AAA,540,304,1006847,9650,0 +41483,BRICKLEBERRY,553,303,699072129,8975,0 +41484,a+mo%C5%BCe+off+%3F+%3A%29,675,397,698768565,4857,0 +41485,032+invidia,519,701,849093426,10104,0 +41486,C0087,299,522,8841266,10362,0 +41487,Topornik+4,654,380,7340529,10654,0 +41488,035.+hehehe,697,465,7494497,10364,0 +41492,Wioska+barbarzy%C5%84ska,348,372,7462660,10311,0 +41493,Taran,328,606,6180190,9962,0 +41494,A%2A%2A%2A,694,549,848995478,2367,0 +41495,Wioska+barbarzy%C5%84ska,368,652,699269923,9740,0 +41496,psycha+sitting,404,671,699736927,10311,0 +41497,069-+Mroczna+Osada,618,333,849035905,8908,0 +41498,C0010,304,516,8841266,10362,0 +41499,P%C3%B3%C5%82nocny+Bagdad,614,335,8847546,10311,0 +41500,KONFA+TO+MARKA%2C+NARKA,300,460,698152377,7678,0 +41501,b%C5%82otna,429,561,699833171,3794,0 +41502,Wioska+kwiatek7777,334,602,7183372,10362,0 +41503,040+invidia,521,695,849093426,9874,0 +41504,Taran,336,607,6180190,10433,0 +41505,A+063,358,638,272173,4022,0 +41506,Nysa,679,546,848932879,11321,0 +41507,009,658,378,698635863,9442,0 +41508,psycha+sitting,420,684,699736927,10311,0 +41509,psycha+sitting,401,672,699736927,10178,0 +41510,Forteca%2A001%2A,534,692,1078121,9521,0 +41511,Out+of+Touch,321,421,698962117,9742,0 +41512,Lord+Lord+Franek+.%23176,516,317,698420691,12154,0 +41513,TARAN,537,695,7860453,8494,0 +41514,psycha+sitting,415,678,699736927,10178,0 +41515,023+Osada+koczownik%C3%B3w,610,668,699346280,10160,3 +41516,036,696,515,699150527,7488,0 +41517,Marmag81,305,476,1096254,9638,0 +41518,%5B0109%5D,445,304,8630972,10495,0 +41519,Domi+9,702,478,849002796,5315,0 +41520,C107,363,643,699383279,3305,0 +41521,KONFA+TO+MARKA%2C+NARKA,300,463,698152377,8672,0 +41522,Wsch%C3%B3d+X8,699,531,698562644,10431,0 +41523,Wioska+barbarzy%C5%84ska,701,530,8323711,5240,0 +41524,Strzelce+Opolskie,677,555,848932879,10393,0 +41525,004+The+Gold+Tower,350,363,7462660,9678,0 +41526,C0195,300,528,8841266,8896,0 +41527,C0203,302,535,8841266,10145,0 +41528,FAKE+OR+OFF,413,318,698231772,9812,8 +41529,ZZZ,461,691,699827112,9701,0 +41530,Wioska+barbarzy%C5%84ska,626,342,699580120,6380,0 +41531,%2136+64+Sfantu+Ilie,646,367,698361257,8320,0 +41532,Wioska+barbarzy%C5%84ska,531,298,7758085,9925,0 +41533,007,676,408,699738350,10280,0 +41534,Wioska+barbarzy%C5%84ska,348,364,7462660,10044,0 +41536,Wioska+Wodzu003,551,695,699201278,6754,0 +41537,Piek%C5%82o+to+inni,591,328,848956765,4246,0 +41538,A000,461,698,699725436,3680,0 +41539,z+001040,352,368,3909522,7827,0 +41540,Wioska+barbarzy%C5%84ska,308,548,5997814,3792,0 +41541,Osada+koczownik%C3%B3w,618,339,849097312,2764,7 +41542,Wow6,369,356,698160606,10039,0 +41543,001+VLV,560,305,849100656,4628,0 +41544,Wioska+barbarzy%C5%84ska,577,313,828637,10478,0 +41545,Wioska+barbarzy%C5%84ska,624,659,848909464,9494,0 +41547,EO+EO,296,512,699697558,10224,0 +41548,%5B044%5D+Wioska+barbarzy%C5%84ska,685,429,849095068,9211,0 +41549,005,524,298,699208929,10469,0 +41550,093,688,579,699373599,3018,0 +41551,002+%2A+Lady+Porto+%2A,695,502,699406750,12154,0 +41552,%5B0129%5D,452,306,8630972,9413,0 +41553,Bu%C5%BCka+Mleczaku+%3A%29,351,634,698908184,7392,0 +41554,Zeta+Reticuli+O,417,322,699323302,11188,0 +41555,Waganiec,667,387,699491076,5036,0 +41557,stickman+9,596,669,9023703,8164,0 +41558,wielki+myk,589,676,699567608,9976,3 +41559,Szlachcic,399,355,3484132,10284,0 +41560,Wioska+barbarzy%C5%84ska,304,455,699706955,2014,0 +41561,Wioska+barbarzy%C5%84ska,384,332,699660539,9955,0 +41562,Woytkowizna,558,691,7860453,7258,0 +41563,Wioska+barbarzy%C5%84ska,699,529,8323711,3506,0 +41564,A000,470,698,699725436,9924,5 +41565,AAA,532,303,1006847,9029,0 +41566,023,451,308,2502956,10019,0 +41567,Bessa+019,636,651,848987051,10177,0 +41568,FAKE+OR+OFF,411,319,698231772,9813,8 +41570,P%C5%82ynie+defik+p%C5%82ynie+po+polskiej,358,635,698908184,4499,0 +41571,Szlachcic,388,338,3484132,10066,0 +41572,Wow16,366,356,698160606,5090,0 +41573,Z001,526,300,7758085,10337,5 +41574,%230209+Segadorr+dar,451,313,1238300,10178,0 +41575,Wioska+barbarzy%C5%84ska,693,441,1715091,6346,0 +41576,Wioska+Wodzu001,553,694,7860453,9835,0 +41577,B01,692,559,848995478,10362,0 +41578,Forteca%2A010%2A,531,697,1078121,4415,0 +41579,TUUU,607,329,699098531,10311,0 +41580,014+VWF+Wioska+barbarzy%C5%84ska,310,427,3108144,5118,0 +41581,035+Night+Raid,493,702,699684062,8495,6 +41582,112+invidia,516,699,849093426,8988,0 +41583,Melon7,313,434,699659708,3515,0 +41584,I107,694,444,699722599,5952,0 +41585,-27-,638,358,699837826,2620,0 +41586,Dream+on,296,488,698962117,8347,0 +41587,A04,695,554,848995478,10702,0 +41588,EO+EO,299,515,699697558,10252,9 +41589,Wioska+barbarzy%C5%84ska,581,315,828637,10474,0 +41590,039Mrozy,477,699,699605333,6261,0 +41591,C0125,301,512,8841266,10495,0 +41592,055.+Likawitos,691,541,1601917,6432,0 +41593,%C5%BBUBR+PSYCHIATRYK+012,620,655,33900,6210,0 +41594,Wioska+barbarzy%C5%84ska,673,407,8675636,9065,0 +41595,003,389,664,8839403,6325,0 +41596,12+Kambr,398,326,195249,8979,0 +41597,ZA03,321,405,356642,9835,0 +41598,Szlachcic,375,349,698160606,10495,0 +41599,KR%C3%93L+PAPI+WIELKI,633,644,698191218,8886,0 +41600,Z+01,418,313,6884492,12154,0 +41601,Wioska+barbarzy%C5%84ska,650,370,7340529,5252,0 +41602,Mroczny+Zamek+026,353,631,698908184,4805,0 +41603,Wioska+barbarzy%C5%84ska,310,448,699285160,2451,0 +41604,0008,354,357,699644448,3691,0 +41605,007,702,518,699150527,10361,0 +41606,010,666,385,698635863,6670,0 +41607,Wioska+barbarzy%C5%84ska,697,455,1715091,8822,0 +41608,psycha+sitting,397,672,699736927,6887,0 +41609,036,459,299,2502956,9544,0 +41610,Bessa+020,636,652,848987051,10223,0 +41611,Wyzima,557,311,699072129,9822,0 +41612,B014,520,301,699208929,8069,0 +41613,Wioska+Zorro+019,674,591,849080702,9160,0 +41614,Z%7C008%7C+Genua,458,696,699393742,6592,0 +41615,%C5%81om%C5%BCa,688,478,849100082,10627,0 +41616,Wioska+004,675,596,7999103,10061,7 +41617,Wygwizdowa+002,636,653,698562644,10311,0 +41618,%5B0124%5D,447,305,8630972,9579,0 +41619,012,423,685,849099876,10495,9 +41620,2.SYNDYKATOR,523,304,699208929,4269,0 +41621,08+Villarrubia,378,657,699269923,6546,0 +41624,002,390,665,8839403,6701,0 +41625,XDX,606,330,699098531,4515,0 +41626,Manama,512,302,699208929,9911,0 +41627,Szlachcic,382,341,3484132,10005,0 +41628,201...segador,453,310,6920960,10787,0 +41629,Wioska+barbarzy%C5%84ska,387,330,699660539,9793,0 +41630,Dingo,672,393,699738350,9966,0 +41632,Szlachcic,677,588,698867446,9583,0 +41633,Wioska+barbarzy%C5%84ska,389,669,6948793,7699,0 +41634,New+World,430,683,698152377,7360,0 +41635,Ave+Why%21,468,695,699121671,1117,0 +41636,z+000+Wioska+12,352,361,3909522,8538,0 +41637,B013,521,301,699208929,6472,0 +41638,Wioska+barbarzy%C5%84ska,576,313,828637,10237,0 +41639,B%23012,701,461,2065730,9797,0 +41640,psycha+sitting,424,682,699736927,10178,0 +41641,036+-+Mroczna+Osada,690,456,849035905,11933,0 +41642,007+Wioska+barbarzy%C5%84ska,613,671,699346280,10160,0 +41643,Dream+on,304,491,698962117,9485,0 +41644,%5B0064%5D,438,316,8630972,10495,0 +41645,BRICKLEBERRY,547,304,699072129,10311,0 +41646,.33,327,393,848955783,10971,0 +41647,MojeDnoToWaszSzczyt,504,305,9299539,9964,0 +41648,Oww+Konfederacja,607,392,848915730,5567,0 +41649,%3F%3F%3F%3F,487,298,698489071,8732,0 +41650,KR%C3%93L+PAPI+WIELKI,664,621,698191218,10000,2 +41651,B11,695,544,848995478,8967,0 +41652,ZZZ,533,701,8980651,10237,0 +41653,ZACHOD+008,352,364,7462660,8114,0 +41654,-+175+-+SS,548,690,849018239,7305,0 +41655,CALL+1069,654,626,699784536,10495,0 +41656,%2136+65+Tibeni,652,368,698361257,5302,0 +41657,%2136+75+Iaslovat,657,372,698361257,8513,0 +41658,B%23005,698,454,2065730,9797,0 +41659,psycha+sitting,409,681,699736927,10178,0 +41660,009.,645,358,9048764,9869,0 +41661,D.025,391,667,849088243,3589,0 +41662,Jan+My+City+1,691,433,879782,10198,0 +41663,Wioska+barbarzy%C5%84ska,700,487,699429153,8820,0 +41664,KR%C3%93L+PAPI+WIELKI,640,641,698191218,10625,0 +41665,psycha+sitting,407,676,699736927,10311,6 +41666,Wioska+barbarzy%C5%84ska,537,699,8980651,9747,0 +41667,002,699,508,7418168,10019,0 +41668,Nowa+51,683,574,698702991,9462,0 +41669,Wioska+8,361,357,3342690,2892,0 +41670,007,595,320,8842936,8230,0 +41671,Wioska+barbarzy%C5%84ska,685,562,7038651,3897,0 +41672,-010-+Chwa%C5%82a+Imperium+XXX,629,348,849099276,10178,1 +41674,psycha+sitting,399,673,699736927,10311,0 +41675,Z%C5%82oty+%C5%9Awit,573,313,699883079,7450,0 +41676,-08-,562,694,7860453,6280,0 +41677,088+invidia,517,699,849093426,8171,0 +41678,Tu+jest+przysz%C5%82o%C5%9B%C4%87,662,392,699491076,6755,0 +41679,FENDI,306,436,699794765,2760,0 +41680,...06+am,670,613,848921861,10495,0 +41681,Swoja7,607,669,6528152,8867,0 +41682,psycha+sitting,414,680,699736927,10311,0 +41683,Ny+ny,704,497,942959,10559,0 +41684,047,300,532,9280477,4765,0 +41685,O088,344,620,272173,9867,0 +41686,TWIERDZA+.%3A086%3A.,694,562,7154207,8992,0 +41687,012.+Targ%C3%B3wek,699,472,7494497,10728,0 +41688,a+mo%C5%BCe+off+%3F+%3A%29,674,403,698768565,9227,0 +41689,009b,312,424,8259895,5442,0 +41690,XDX,613,330,699098531,9050,0 +41691,202...segador,456,306,6920960,10787,0 +41692,z181_07,311,440,393668,9885,0 +41693,New+World,470,701,698152377,10178,0 +41694,-+133+-+SS,544,691,849018239,10000,0 +41695,CALL+1050,653,628,699784536,10365,0 +41696,C0088,303,524,8841266,10362,0 +41697,bucksbarzy%C5%84skamiiiru,339,379,848955783,2434,0 +41698,0147,678,408,698416970,2637,0 +41700,Wioska+barbarzy%C5%84ska,308,557,5997814,3776,0 +41701,052,534,674,2293376,9993,0 +41702,033+invidia,515,703,849093426,10237,0 +41703,Marcule,572,686,698723158,6027,0 +41704,016+Kuzyn+kami,342,606,7183372,10341,0 +41705,legit_scam.,552,690,7860453,6849,0 +41706,Wioska+barbarzy%C5%84ska,553,697,7581876,7791,0 +41707,%2136+74+Sucevita,648,370,698361257,10181,0 +41708,S004,599,671,8627359,9231,0 +41710,Mefedron+09,393,337,3484132,5184,0 +41711,marmag81%2F03www,297,472,1096254,9503,0 +41712,030,419,685,849099876,10495,0 +41713,Warkoczynka+1,680,596,699778867,11188,0 +41714,Wioska+Kugiel102,506,682,8501514,10019,0 +41715,Wioska+barbarzy%C5%84ska,702,514,254937,9787,0 +41716,Wioska+barbarzy%C5%84ska,575,314,828637,10495,0 +41717,%2A023+GAWRA%2A,309,428,2415972,8893,0 +41718,%21--,647,366,698361257,2562,0 +41719,084,698,490,2135129,4193,0 +41720,%2136+64+Cojocareni,647,368,698361257,9571,0 +41721,C0207,300,537,8841266,10362,0 +41722,Domi+2,699,476,849002796,8628,0 +41724,011,656,380,698635863,9216,0 +41725,B.02+duchy+serca+puszczy,555,308,849026145,4094,0 +41726,%C5%BBUBR+PSYCHIATRYK+013,622,656,33900,6843,0 +41727,-04-,557,690,7860453,7575,0 +41729,Wioska+barbarzy%C5%84ska,694,560,6929240,4720,0 +41730,Didek,681,587,849070946,10426,0 +41731,XDX,603,329,699098531,7066,0 +41732,029,456,301,2502956,9652,0 +41733,Wioska+barbarzy%C5%84ska,698,453,849098769,4718,0 +41734,001,408,319,698258283,10495,0 +41735,014.+Sherwood,377,341,699660539,6090,0 +41736,TWIERDZA+.%3A008%3A.,686,574,7154207,10275,1 +41737,AAA,548,308,1006847,6588,0 +41738,aAa+Szlaban+6,634,647,699778867,6709,0 +41739,Pierwsza+Nemora,563,316,699072129,8328,0 +41740,015,614,336,8842936,9997,0 +41741,%23%23%23072%23%23%23,595,678,698285444,10495,0 +41742,Alojz%C3%B3w,571,685,698723158,7227,0 +41743,Wioska+barbarzy%C5%84ska,594,324,699098531,3732,0 +41744,%5B041%5D+Wioska+barbarzy%C5%84ska,687,427,849095068,9288,0 +41745,C.04+a+panicz+to+dok%C4%85d%3F,546,301,849026145,4197,0 +41746,062.+Wioska+barbarzy%C5%84ska,701,465,7494497,8700,0 +41747,FENDI,301,465,699794765,10591,0 +41748,K35+-+%5B029%5D+Before+Land,575,310,699088769,10016,0 +41749,%3F%3F%3F,489,301,698489071,7546,0 +41750,144+invidia,539,694,849093426,6588,0 +41751,Gattacka,688,433,699298370,9718,4 +41752,010.+Canterbury,387,336,699660539,10007,0 +41753,005,702,494,942959,10495,0 +41754,EO+EO,301,521,699697558,10019,0 +41755,013,644,644,849099544,9303,0 +41756,Szlachcic,678,593,698867446,9282,0 +41757,z181_03,313,441,393668,9888,0 +41758,BRICKLEBERRY,554,307,699072129,5264,0 +41759,Szlachcic,389,338,3484132,10393,0 +41760,Zychowicz,358,642,849096649,6504,0 +41761,Wioska+barbarzy%C5%84ska,688,562,7038651,4551,0 +41762,KR%C3%93L+PAPI+WIELKI,646,635,698191218,5931,0 +41763,komandos48,500,698,7976264,5070,0 +41764,KONFA+TO+MARKA%2C+NARKA,301,456,698152377,10292,0 +41765,%2304,557,306,699072129,9107,0 +41766,Winneburg,553,307,699072129,10220,0 +41767,K35+-+%5B036%5D+Before+Land,576,312,699088769,12154,0 +41769,New+World,424,687,698152377,10292,0 +41770,0003+Wioska+barbarzy%C5%84ska,443,695,849037407,10481,0 +41771,ZZ15,322,410,356642,9835,0 +41772,C0098,302,516,8841266,10362,0 +41773,Wioska+barbarzy%C5%84ska,655,372,7340529,8839,0 +41774,%C5%BBUBR+PSYCHIATRYK+020,625,652,33900,9993,0 +41775,017+samob%C3%B3j,542,700,849093426,10237,1 +41776,Wioska+barbarzy%C5%84ska,379,335,3698627,9876,0 +41777,%2136+65+Bivolaria,653,368,698361257,6514,0 +41779,bucksbarzy%C5%84skamiiiru,338,380,848955783,2173,0 +41780,Bu%C5%82garska,667,614,849096631,3271,0 +41781,Wioska+barbarzy%C5%84ska,683,411,699598425,6432,0 +41783,psycha+sitting,407,677,699736927,10311,0 +41785,C0100,301,517,8841266,10362,0 +41786,0049+Wioska+barbarzy%C5%84ska,449,695,849037407,9537,0 +41787,Wioska+barbarzy%C5%84ska,657,380,849041192,4036,0 +41788,Wioska+barbarzy%C5%84ska,676,600,3467919,2451,0 +41789,Twierdza+02,671,393,8379871,3662,0 +41790,Osada+koczownik%C3%B3wx,338,391,698807570,9626,6 +41792,%7E079.,467,695,7139820,5097,0 +41793,C0126,298,514,8841266,10362,0 +41794,Wied%C5%BAma+-+Z+012,308,432,9239515,4686,0 +41795,Wioska+barbarzy%C5%84ska,315,569,699671197,4894,0 +41796,KONFA+TO+MARKA%2C+NARKA,300,462,698152377,6801,0 +41797,Seba1234567,673,594,849099689,1516,0 +41798,002,302,539,849098628,10838,0 +41799,049.+Kilimand%C5%BCaro,694,547,1601917,7747,0 +41800,043,650,628,699099811,10495,0 +41801,Not+2+morrow,472,299,698489071,10301,0 +41802,Gattacka,686,432,699298370,9191,0 +41803,Wioska+barbarzy%C5%84ska,364,649,699269923,9898,0 +41804,AAA,542,308,1006847,10311,0 +41805,a+mo%C5%BCe+off+%3F+%3A%29,670,399,698768565,5362,0 +41806,Wioska+barbarzy%C5%84ska,394,328,3484132,10971,0 +41807,KR%C3%93L+PAPI+WIELKI,658,622,698191218,9428,0 +41808,psycha+sitting,402,671,699736927,10178,0 +41809,%5B0120%5D,447,304,8630972,9890,0 +41810,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,498,706,8980651,5560,0 +41811,012,660,380,698635863,9675,0 +41812,ZZ01,323,408,356642,9702,0 +41813,%2ALonta,574,636,699443920,9761,0 +41814,A01,695,555,848995478,11550,0 +41815,C002,472,701,8954402,9592,0 +41816,020,393,331,8153941,7025,0 +41817,spanko,681,426,699738350,7766,0 +41818,Wioska+barbarzy%C5%84ska,697,486,699429153,7624,0 +41819,...02+am,671,613,848921861,10495,0 +41820,Wioska+Paprykk777,428,665,849100134,1899,0 +41821,Wioska+barbarzy%C5%84ska,626,349,699580120,6193,0 +41822,071,696,548,699316421,10495,0 +41823,Wioska+005,701,527,2999957,5210,0 +41824,HAPERT,627,655,848909464,9911,0 +41825,Wioska+barbarzy%C5%84ska,590,317,828637,10315,0 +41826,Wie%C5%9B+10,340,612,9199885,4141,0 +41828,boh81%2F33,300,471,848889556,8165,0 +41829,Wioska+barbarzy%C5%84ska,568,313,849054951,4567,0 +41830,Szlachcic,677,589,698867446,9638,0 +41832,Out+of+Touch,317,423,698962117,9570,9 +41833,Nowa+36,628,569,698702991,9134,0 +41834,Szlachcic,384,341,698160606,10475,0 +41835,Dream+on,300,493,698962117,9491,0 +41836,XDX,616,336,699098531,8164,0 +41837,Wioska11,630,480,848935020,10495,0 +41838,%23%23%23073%23%23%23,592,677,698285444,10495,0 +41840,026%23+Malvine,491,697,3933666,6083,0 +41841,%2AINTERTWINED%2A,503,702,698704189,5730,0 +41842,bucksbarzy%C5%84skamiiiru,327,402,848955783,7255,0 +41843,003181,628,656,699872616,7525,0 +41844,Dream+on,299,494,698962117,9505,8 +41845,Wioska+Fatality51,324,594,699792747,5653,0 +41846,KR%C3%93L+PAPI+WIELKI,624,662,698191218,6761,0 +41847,Didek,682,583,849070946,10342,0 +41848,Wioska+barbarzy%C5%84ska,689,430,8675636,9096,0 +41849,Szlachcic,386,339,3484132,9490,0 +41851,032,308,571,849098688,10160,0 +41852,Wioska+barbarzy%C5%84ska,662,376,7758085,2834,0 +41853,Wioska+barbarzy%C5%84ska,388,335,699660539,6557,0 +41854,Jan+016+Ost+K,694,445,879782,9782,0 +41855,Wioska+05,569,313,849067192,3155,0 +41856,008.+plebi,323,586,3475079,2475,0 +41857,-002-+sz,356,637,272173,5407,0 +41858,038,310,568,849098688,9835,0 +41859,Gda%C5%84sk,511,297,699208929,8883,0 +41860,003+troch%C4%99+czasu+min%C4%99%C5%82o,525,695,849093426,10237,0 +41861,013+%2A+Lady+Porto+%2A,698,503,699406750,7083,0 +41862,Wioska+barbarzy%C5%84ska,644,355,849092309,3297,0 +41863,Brody,565,693,698723158,5768,0 +41864,Wioska+077,651,592,848971079,9032,0 +41865,129+invidia,504,702,849093426,10268,0 +41866,Wioska+barbarzy%C5%84ska,392,336,699406776,2588,0 +41867,066-+Mroczna+Osada,609,338,849035905,10496,0 +41868,045.+Night+Raid,485,703,699684062,9811,0 +41869,asi,649,593,699611673,4967,0 +41870,B6.,310,545,849095482,2375,0 +41871,076,631,591,698999105,6682,0 +41872,%23K66+0006,610,672,699728159,4506,0 +41873,011,672,605,849095963,3030,0 +41874,-002-+sz,357,634,272173,4617,0 +41875,Taran,325,602,6180190,10200,0 +41876,Wioska+barbarzy%C5%84ska,614,331,0,4402,0 +41878,--18--,328,601,8877156,9627,0 +41879,marmag81%2F03g,302,467,1096254,6561,0 +41880,boh81,306,468,848889556,9617,0 +41881,bucksbarzy%C5%84skamiiiru,328,393,848955783,9551,0 +41882,0016+Wioska+barbarzy%C5%84ska,439,695,849037407,9589,0 +41883,Dream+on,304,507,698962117,8816,0 +41884,207...segador,446,308,6920960,10787,6 +41886,B8.,310,546,849095482,2902,0 +41887,%3F%3F%3F,485,305,698489071,10160,5 +41888,EE+001,694,580,849100149,9540,0 +41889,Wioska+barbarzy%C5%84ska,524,303,7758085,9607,0 +41890,z+rondalek,358,359,3909522,10210,0 +41891,Wioska+barbarzy%C5%84ska,680,413,699598425,6908,0 +41892,Tuchomie,469,298,849101116,4088,0 +41893,XDX,597,321,699098531,5010,0 +41894,Saska+K%C4%99pa1,367,357,849099434,4364,0 +41895,Dream+on,297,495,698962117,9587,3 +41896,Wioska+barbarzy%C5%84ska,585,319,828637,10475,0 +41897,.achim.,489,298,6936607,6050,3 +41898,002+VLV,559,304,849100656,9782,0 +41899,XDX,594,327,699098531,4521,0 +41900,Dream+on,299,482,698962117,8449,0 +41901,KR%C3%93L+PAPI+WIELKI,646,632,698191218,10227,0 +41902,TWIERDZA+.%3A079%3A.,686,573,7154207,9634,0 +41903,Wioska+barbarzy%C5%84ska,339,373,7462660,5997,0 +41904,Wioska+barbarzy%C5%84ska,670,606,3467919,3357,0 +41905,028,456,304,2502956,10019,0 +41906,013+NAWRA,664,615,849048867,5900,0 +41907,234,416,313,7271812,1194,0 +41908,Cisowa,479,297,698848373,2170,0 +41909,C062,376,654,699383279,8685,0 +41910,bucksbarzy%C5%84skamiiiru,338,384,848955783,2222,0 +41911,O138,355,643,272173,7238,0 +41912,%2136+65+Badeuti,654,368,698361257,6930,0 +41913,108.Stradi,439,309,698365960,8619,0 +41914,Taran,336,609,6180190,9959,0 +41915,O100,335,618,272173,9167,0 +41916,Jan+Ost+nord,696,461,879782,9838,0 +41917,C020,375,662,699383279,9963,0 +41918,Wioska+barbarzy%C5%84ska,563,314,699072129,6771,0 +41919,%23%23%23074%23%23%23,581,681,698285444,10495,0 +41920,Wioska+barbarzy%C5%84ska,392,673,6948793,8764,0 +41921,FENDI,306,435,699794765,6545,0 +41922,%23109%23,637,596,692803,9761,0 +41923,B005+Zos,516,304,699208929,10033,0 +41924,KONFA+TO+MARKA%2C+NARKA,303,459,698152377,5645,0 +41925,023+NAWRA,668,612,849048867,8390,0 +41926,Out+of+Touch,316,432,698962117,5731,0 +41927,Wioska+barbarzy%C5%84ska,306,556,5997814,4084,0 +41928,East+4,656,376,1086351,3903,0 +41930,.achim.,471,299,6936607,4923,0 +41931,TWIERDZA+.%3A048%3A.,695,564,7154207,10112,0 +41932,C11,693,531,848995478,3553,0 +41933,0190,475,544,698659980,10019,0 +41934,0046+Utopia1,439,696,849037407,9572,0 +41935,Didek,680,578,849070946,10475,0 +41936,Wioska+barbarzy%C5%84ska,343,377,7462660,3233,0 +41937,FAKE+OR+OFF,405,325,698231772,10073,4 +41938,ZA18,320,414,356642,9835,0 +41939,Wow15,362,351,698160606,4242,0 +41940,Ania,310,430,2415972,9917,0 +41941,Wioska+016,672,606,7999103,3789,0 +41942,051,631,349,849010255,3045,0 +41943,-10-,567,693,698723158,5748,0 +41944,Wioska+barbarzy%C5%84ska,346,369,7462660,6675,0 +41945,%23%23%23019%23%23%23,588,685,698285444,10495,0 +41946,Wioska+barbarzy%C5%84ska,690,544,17714,7217,0 +41947,077,636,586,698999105,5719,0 +41948,097+Saitama,690,448,7092442,6596,0 +41949,Forteca%2A004%2A,532,694,1078121,9167,0 +41950,Wioska+barbarzy%C5%84ska,587,319,828637,10971,0 +41951,CALL+1074,653,630,699784536,10508,0 +41952,TWIERDZA+.%3A041%3A.,691,563,7154207,10299,0 +41953,050,638,350,849010255,2197,0 +41954,131+invidia,526,696,849093426,6546,0 +41955,C003,470,703,8954402,9522,0 +41956,TUUU,603,332,699098531,7826,5 +41957,003+-+Nowy+Pocz%C4%85tek...,369,652,699269923,10874,0 +41958,Wioska+barbarzy%C5%84ska,661,373,7973893,3443,0 +41959,Wioska+barbarzy%C5%84ska,535,298,698350371,8890,0 +41960,Wioska,477,650,848999671,9556,0 +41961,Nowa+53,681,575,698702991,6571,0 +41962,KR%C3%93L+PAPI+WIELKI,645,642,698191218,9711,5 +41963,Wioska,548,687,7860453,9115,0 +41964,z181_12,308,443,393668,9886,0 +41965,Wioska+barbarzy%C5%84ska,344,382,7462660,1898,0 +41966,09.SNSD,686,420,9180206,8700,0 +41967,Chotcza,567,692,698723158,4975,0 +41968,011+NAWRA,660,613,849048867,7154,0 +41969,%230228+Segadorr+dar,443,304,1238300,10178,0 +41970,035.Stradi,431,308,698365960,10495,0 +41971,Miasto,338,611,6180190,9835,0 +41972,%C5%BBUBR+PSYCHIATRYK+011,624,655,33900,6976,0 +41973,B006+ZieNciu,699,457,113796,10160,0 +41974,C0191,302,534,8841266,8189,0 +41975,Wioska+klez+019,324,510,698295651,4681,0 +41976,C.015,702,487,9188016,7084,0 +41977,Didek,681,584,849070946,10160,0 +41978,027,455,303,2502956,10019,0 +41979,Hofek+29.,672,401,849095068,3144,0 +41981,Didi,681,586,849070946,10346,0 +41982,D.023,394,670,849088243,3928,0 +41983,Wioska+04,567,314,849067192,4637,0 +41984,ZA20,314,414,356642,9835,0 +41985,Nie+mam+pomys%C5%82u+na+nazw%C4%99+wioski,326,591,849100162,2775,0 +41986,KR%C3%93L+PAPI+WIELKI,642,647,698191218,9978,0 +41987,%230215+Segadorr+dar,456,305,1238300,10194,0 +41988,Wioska+barbarzy%C5%84ska,592,318,828637,10495,0 +41989,042,303,539,9280477,5426,0 +41990,Wioska+barbarzy%C5%84ska,696,482,699429153,8950,0 +41991,010+D,420,685,849099876,10495,0 +41992,a+mo%C5%BCe+off+%3F+%3A%29,678,409,698768565,6201,0 +41993,Didek,688,583,849070946,5196,0 +41994,Xenonowy+gr%C3%B3d,314,418,699377401,4008,0 +41995,Wioska+barbarzy%C5%84ska,672,399,698768565,2203,0 +41996,033.Stradi,426,314,698365960,10495,0 +41997,045.,325,590,3475079,2947,0 +41999,Ave+Why%21,313,580,6180190,4700,0 +42000,Wioska+barbarzy%C5%84ska,589,320,828637,10559,0 +42001,037,303,544,9280477,5805,0 +42002,0001+Osada+koczownik%C3%B3w,442,697,849037407,10475,8 +42003,C0127,298,513,8841266,10362,0 +42004,BRZEG+JORDANU+%7C+006,695,525,9228039,7845,0 +42005,Wioska+barbarzy%C5%84ska,528,302,7758085,9861,0 +42006,New+World,428,682,698152377,10294,0 +42007,Jednak+wol%C4%99+gofry,494,645,699725436,5886,0 +42008,Out+of+Touch,315,430,698962117,6836,0 +42009,010,300,545,9280477,12154,3 +42010,%230036+barbarzy%C5%84ska,464,345,1238300,10178,0 +42011,Wioska+barbarzy%C5%84ska,345,365,7462660,10068,0 +42012,C0094,300,523,8841266,10362,0 +42013,Moldor+11,635,359,849049045,8961,0 +42014,Winterhome.063,495,299,848918380,10178,0 +42016,%2AW003,663,379,7758085,9861,0 +42017,Wioska+barbarzy%C5%84ska,614,663,6818593,6352,0 +42018,bucksbarzy%C5%84skamiiiru,335,390,848955783,5861,0 +42019,019+B,402,678,849099876,10495,0 +42020,Wioska+barbarzy%C5%84ska,311,426,8259895,3096,0 +42021,009,311,425,8259895,6052,0 +42022,FAKE+OR+OFF,409,317,698231772,9834,0 +42023,%5B0214%5D,298,498,8630972,7263,0 +42024,Dream+on,298,503,698962117,9753,0 +42025,O07+Evora,660,514,699272880,10068,0 +42026,%5B0159%5D,450,302,8630972,8617,0 +42027,Melon4,310,433,699659708,4044,0 +42028,Ranczo2,303,455,699706955,12154,0 +42029,Borowy+gr%C3%B3d,320,416,699377401,6081,0 +42031,Domek+JOJO-+3,362,642,699269923,9835,0 +42032,037,457,300,2502956,10019,0 +42033,008,639,353,9291984,4787,0 +42034,Wioska+barbarzy%C5%84ska,701,541,848946700,5491,0 +42035,010.+Bielany,692,473,7494497,10080,0 +42036,%2136+65+Voitinel,655,366,698361257,8007,0 +42037,Kaplica,298,478,8048374,5453,0 +42038,Szlachcic,381,344,3484132,9914,0 +42039,017.+Lincoln,381,341,7775311,5333,0 +42040,Ziemianka+Ruskich,359,642,6948793,9791,0 +42041,O035,345,628,272173,9962,0 +42042,Daleko,651,372,7340529,10654,0 +42043,Wioska+barbarzy%C5%84ska,702,467,699574408,6940,0 +42044,%5B0093%5D,441,307,8630972,10495,0 +42045,Wioska+barbarzy%C5%84ska,695,437,1715091,6865,0 +42046,AAA,550,303,1006847,6094,0 +42047,O096,333,618,272173,9453,0 +42049,Darma+dla+zawodnika,323,588,6180190,4217,0 +42050,Dream+on,302,494,698962117,9497,0 +42051,z181_22,309,437,393668,9886,0 +42052,Zajkdn,546,698,849098688,9211,0 +42053,042.+Lekcje,453,699,848928624,3805,0 +42054,%3F%3F%3F,484,301,698489071,10160,0 +42055,Wonderwall,311,555,698962117,9494,0 +42056,004,701,506,7418168,10008,0 +42057,KR%C3%93L+PAPI+WIELKI,664,618,698191218,10000,0 +42058,037+Wioska+barbarzy%C5%84ska,693,443,849098769,6383,0 +42059,%23%23%23075%23%23%23,600,677,698285444,10495,0 +42060,Taran,333,605,6180190,9959,0 +42061,Jezioro+Turawskie,693,546,848932879,9798,0 +42062,EO+EO,301,518,699697558,10160,0 +42063,bucksbarzy%C5%84skamiiiru,337,386,848955783,2409,0 +42064,psycha+sitting,413,678,699736927,10178,0 +42065,Wiejska4,606,670,6528152,8621,0 +42066,%5B0211%5D,298,504,8630972,7651,0 +42067,Wioska+barbarzy%C5%84ska,302,552,5997814,1858,0 +42068,Wioska+barbarzy%C5%84ska,344,367,7462660,10068,0 +42069,0336,563,695,698659980,9454,0 +42070,Wyspa_40,506,700,2585846,9638,0 +42071,%2AINTERTWINED%2A,505,702,698704189,5641,0 +42072,bucksbarzy%C5%84skamiiiru,335,379,848955783,2292,6 +42073,Wioska+barbarzy%C5%84ska,643,361,6625437,2979,0 +42074,%3F%3F%3F,483,303,698489071,10503,0 +42075,009.+Xin+trea,325,593,3475079,10580,0 +42076,Bartosiak+prof.,355,642,272173,5630,0 +42078,Wioska+barbarzy%C5%84ska,379,337,699660539,10145,0 +42079,Wioska+barbarzy%C5%84ska,371,657,699269923,9677,0 +42080,055,631,345,849010255,3552,0 +42081,FAKE+OR+OFF,418,316,698231772,9830,0 +42082,bucksbarzy%C5%84skamiiiru,328,389,848955783,4743,0 +42083,So%C5%82tys+Wsi+WojTool,365,352,849027025,9741,0 +42084,0015,423,316,2321390,5127,0 +42085,000+Plutosea,310,573,9280477,9976,0 +42086,C0212,299,527,8841266,10362,0 +42087,Podgrodzie,479,345,849048216,3544,0 +42088,FAKE+OR+OFF,416,316,698231772,9827,9 +42089,C0204,299,529,8841266,9466,0 +42090,KR%C3%93L+PAPI+WIELKI,657,631,698191218,10000,0 +42091,0064,687,419,698416970,5236,0 +42092,Wioska+barbarzy%C5%84ska,692,434,1715091,9630,0 +42093,Wioska+eli-sa,331,616,6180190,9381,0 +42094,0015+Wioska+barbarzy%C5%84ska,448,689,849037407,10348,0 +42095,So%C5%82ty+Wsi+WojTool,369,349,849027025,9460,0 +42096,Wioska+barbarzy%C5%84ska,538,701,8980651,9747,0 +42097,003,702,498,942959,10495,5 +42099,KOS,675,608,848890012,1804,0 +42100,Ranczo5,304,448,699706955,2747,0 +42101,Z03,317,416,356642,9835,0 +42102,MojeDnoToWaszSzczyt,498,295,9299539,9970,0 +42103,A+017,352,629,272173,7868,0 +42104,XDX,612,332,699098531,8443,0 +42105,Wioska+Miczenso,556,334,849096123,4733,0 +42106,038.+Night+Raid,486,702,699684062,9215,0 +42107,.Y.,645,366,7340529,9355,0 +42108,bucksbarzy%C5%84skamiiiru,328,398,848955783,6087,0 +42109,z%C5%82oto+Ink%C3%B3w,370,358,849068108,8732,0 +42110,Bocianikson021,689,563,7528491,3364,0 +42111,08-oss,671,614,848921861,9239,0 +42112,XDX,604,326,699098531,9637,0 +42113,%23%23%23076%23%23%23,583,683,698285444,10495,0 +42114,013,670,387,698635863,9185,0 +42115,KR%C3%93L+PAPI+WIELKI,648,633,698191218,10192,0 +42116,Osada+koczownik%C3%B3w,698,478,699429153,9861,9 +42117,Borubar+3,705,483,699413581,3632,0 +42118,0014,358,353,699644448,3290,0 +42119,016+pechowiec,540,701,849093426,10311,0 +42120,FAKE+OR+OFF,414,313,698231772,9813,0 +42121,Wioska+barbarzy%C5%84ska,310,552,5997814,3332,0 +42122,Kamionka+Silesia,695,529,848932879,10971,0 +42123,wioska,633,347,9291984,8128,0 +42124,HAPERT,624,660,848909464,10654,0 +42125,%2AINTERTWINED%2A,508,699,698704189,6432,0 +42126,HAPERT,627,659,848909464,10521,0 +42127,%4005%40,406,327,699483429,8227,0 +42128,Z+001+Wroc%C5%82aw,328,594,849084740,10280,8 +42129,Morska,486,295,698848373,3490,0 +42130,082+invidia,516,696,849093426,6085,0 +42131,KR%C3%93L+PAPI+WIELKI,658,623,698191218,10000,0 +42132,CALL+1068,656,627,699784536,10495,3 +42134,Wioska+barbarzy%C5%84ska,397,332,699406776,2353,0 +42135,Chata+Pustelnika,375,351,848903690,4255,0 +42137,Z003,528,301,7758085,10094,0 +42138,Wioska+barbarzy%C5%84ska,704,486,699429153,8535,0 +42139,A+031,351,629,272173,3538,0 +42140,Dream+on,299,506,698962117,4704,0 +42141,Bocianikson023,693,560,7528491,4127,0 +42142,Dream+on,299,491,698962117,6718,0 +42143,Wioska+barbarzy%C5%84ska,387,334,699660539,6165,0 +42144,BRICKLEBERRY,562,313,699072129,7660,0 +42145,Wioska+22,679,591,849101162,5833,0 +42146,Wioska+barbarzy%C5%84ska,662,384,0,9113,0 +42147,Polesie,586,679,849100612,4265,0 +42148,021.+Weso%C5%82a,700,476,7494497,9902,0 +42149,Wioska+podbita,590,326,849063793,2826,0 +42150,bucksbarzy%C5%84skamiiiru,336,384,848955783,10344,0 +42151,C0189,303,533,8841266,7240,0 +42152,Z002,527,299,7758085,10094,0 +42153,21.+Another+love,554,310,849099696,8616,0 +42154,Wioska+barbarzy%C5%84ska,523,298,7758085,9925,0 +42155,067+ZieloneOczko1,705,514,2135129,9500,0 +42156,003.,322,589,3475079,10237,0 +42157,038.Stradi,435,310,698365960,10495,0 +42158,Wiejska5,605,671,6528152,8615,0 +42159,%5B0219%5D,295,512,8630972,6525,0 +42160,C0080,301,519,8841266,10362,0 +42161,AAA,535,303,1006847,5200,0 +42162,Gattacka,690,428,699298370,9065,0 +42163,A06,697,555,848995478,7814,0 +42164,Elo+elo+4,311,580,699016994,9679,0 +42165,000+Plutosea,312,570,9280477,9976,0 +42166,0321,566,690,698659980,9190,0 +42167,Taran,330,602,6180190,6389,0 +42169,C102,366,646,699383279,9799,0 +42170,Huracane,564,306,849100680,6421,0 +42171,C0090,306,530,8841266,10362,0 +42172,ruiny,632,650,7038651,2529,0 +42173,C0004,304,522,8841266,10362,0 +42174,Gattacka,599,428,699298370,9606,0 +42175,%23%23%23012%23%23%23,594,683,698285444,10495,0 +42176,003.,579,658,1270916,7499,0 +42177,z181_21,310,437,393668,8876,0 +42179,Wioska+barbarzy%C5%84ska,696,454,849098769,4923,0 +42180,KR%C3%93L+PAPI+WIELKI,626,662,698191218,6265,0 +42181,014,658,379,698635863,9410,0 +42182,050,565,403,7271812,9133,0 +42183,027.Stradi,430,308,698365960,10495,0 +42184,Wadowice,509,297,699208929,3400,0 +42185,MojeDnoToWaszSzczyt,492,295,9299539,9967,0 +42186,100,651,370,7340529,10887,5 +42187,Wioska+barbarzy%C5%84ska,671,390,8675636,9038,0 +42188,B08,692,551,848995478,10702,0 +42189,Wioska+barbarzy%C5%84ska,348,365,7462660,9898,0 +42190,Borsuk,703,484,849099640,4205,0 +42191,C0136,307,533,8841266,10362,0 +42192,Zaplecze+Barba+030,375,347,699796330,4628,0 +42193,15.+Blockchain,553,311,699072129,8688,0 +42194,%230131+Thorus5,476,326,1238300,10178,0 +42195,XXXX,564,305,849054951,9853,0 +42196,-023-+XXX,628,349,9291984,3574,0 +42197,Nierada,296,475,8048374,5641,0 +42199,village,641,361,7340529,10654,0 +42200,Machnacz,667,385,699491076,3297,0 +42201,Szlachcic,384,339,3484132,9547,0 +42202,FFF,643,353,8675636,7571,0 +42203,Wioska+barbarzy%C5%84ska,693,432,1715091,8659,0 +42204,wioska,633,348,9291984,10997,0 +42205,EO+EO,298,500,699697558,7472,0 +42206,0147,410,343,699431255,5575,0 +42207,Hofek+26.,666,397,699491076,5840,0 +42208,Wioska+barbarzy%C5%84ska,681,413,699598425,7388,0 +42209,Didek,689,577,849070946,10160,0 +42210,7.C,453,693,699777372,8497,0 +42211,krecik+02+e,343,618,272173,4116,0 +42212,Zbij%C3%B3w+Du%C5%BCy,569,691,698723158,6216,0 +42213,Dzik+8,305,434,8366045,7016,0 +42214,Wioska+barbarzy%C5%84ska,305,556,5997814,4386,0 +42215,Wioska+barbarzy%C5%84ska,585,316,828637,10495,0 +42216,-002-+sz,357,636,272173,2514,0 +42217,032.Stradi,427,309,698365960,10495,0 +42218,psycha+sitting,403,673,699736927,9605,0 +42219,Dream+on,295,496,698962117,9742,0 +42220,Familia+Kuzyni,379,665,7349282,2900,0 +42221,Szlachcic,384,338,3484132,10008,0 +42222,Osada+8,679,407,8675636,10083,0 +42223,%23K66+0014,608,675,699728159,5200,0 +42224,063.+hehehe2,701,467,7494497,9794,0 +42225,psycha+sitting,400,675,699736927,10178,0 +42226,Wioska+barbarzy%C5%84ska,331,617,6180190,6563,0 +42227,Wioska+barbarzy%C5%84ska,695,562,6929240,4799,0 +42228,XDX,598,327,699098531,6984,6 +42229,B%23009,690,457,2065730,9797,0 +42230,040+-+Nowy+Pocz%C4%85tek...,364,645,6948793,10946,3 +42232,Ewa,523,703,699733501,6834,0 +42233,KR%C3%93L+PAPI+WIELKI,660,628,698191218,8479,9 +42235,%3F%3F%3F%3F,486,299,698489071,7899,3 +42237,%C5%81o+baben%21,706,501,8418489,9797,0 +42238,KR%C3%93L+PAPI+WIELKI,655,632,698191218,10000,0 +42239,A+070,364,646,6948793,9236,0 +42240,030.Stradi,433,306,698365960,10495,0 +42241,Didek,684,583,849070946,1748,0 +42243,D.031,381,658,849088243,2884,0 +42244,Darma+dla+zawodnika,322,593,6180190,3220,0 +42245,%2136+65+Frumosu,653,369,698361257,9860,0 +42246,tomek016,690,566,8811880,4904,0 +42247,Wioska+barbarzy%C5%84ska,528,298,7758085,9861,0 +42248,Wie%C5%9B+06,339,613,9199885,3357,0 +42249,Wuuuu,298,488,848981726,1695,0 +42250,Wioska+barbarzy%C5%84ska,589,319,828637,10787,0 +42252,%2136+65+Milisauti,656,368,698361257,8272,0 +42253,Hello+there,322,592,6180190,3148,0 +42254,XDX,613,331,699098531,9976,0 +42255,%230220+Segadorr+dar,457,303,1238300,10178,0 +42256,B015,519,301,699208929,8291,0 +42257,098+Kobe,688,440,7092442,6596,0 +42258,Wioska+barbarzy%C5%84ska,378,336,3698627,9931,0 +42260,Tak2,532,300,699208929,4271,0 +42261,Dream+on,297,500,698962117,9752,0 +42263,17.+Mahakam,699,536,8976313,8199,0 +42264,Z01,316,411,356642,9835,4 +42265,056.+Lodowy+Szczyt,698,554,1601917,8697,0 +42266,Komornik+F001,313,563,698290577,4441,0 +42267,Wow10,364,351,698160606,7571,0 +42268,TWIERDZA+.%3A030%3A.,685,576,7154207,10226,0 +42269,040,305,541,9280477,6017,0 +42270,New+Land+01,330,388,849064752,10311,0 +42271,057.+Latrun,690,551,1601917,5922,0 +42272,014,639,350,9148043,5868,0 +42274,024,417,685,849099876,10495,0 +42275,Wioska+barbarzy%C5%84ska,683,582,7154207,1605,0 +42277,O092,340,627,272173,9962,0 +42278,BRICKLEBERRY,559,312,699072129,8697,0 +42279,10.+Wioska+Raukodel,653,377,7340529,10795,0 +42280,-+208+-+SS,549,698,849018239,7625,0 +42281,Wioska+Zorro+015,677,595,849080702,10495,6 +42282,Camp+Nou,665,618,849096631,12021,0 +42283,009,388,670,6948793,6767,0 +42284,S008,602,676,8627359,8100,0 +42285,DALEKO,531,703,699827112,8670,0 +42286,psycha+sitting,412,682,699736927,10178,0 +42287,0019,399,322,2321390,4270,0 +42288,%5B0215%5D,296,504,8630972,7212,0 +42289,marmag81%2F03d,301,471,1096254,7376,0 +42290,A+062,362,646,699269923,8510,0 +42291,031,305,563,849098688,7477,0 +42292,Koziarowo,503,297,849100228,11911,0 +42293,xzc,496,701,8827094,9140,0 +42294,A10,695,556,848995478,4898,0 +42295,HAPERT,625,662,848909464,10319,0 +42297,Wioska+barbarzy%C5%84ska,674,603,8224678,8447,0 +42298,Barnab,604,323,699098531,8732,0 +42299,0003,357,357,699644448,7305,0 +42300,D.027,385,668,849088243,3884,0 +42301,KR%C3%93L+PAPI+WIELKI,636,648,698191218,9380,0 +42302,ono11,357,362,7462660,10009,0 +42303,KR%C3%93L+PAPI+WIELKI,664,619,698191218,10000,0 +42304,003.+G%C3%B3rki+%C5%9Arednie,656,630,849100994,10164,0 +42305,Namys%C5%82%C3%B3w,697,553,848932879,10636,0 +42306,-+253+-+SS,552,697,849018239,6505,0 +42307,Ob+Konfederacja,433,314,848915730,10096,2 +42308,ZA11,319,415,356642,9835,0 +42309,.achim.,475,298,6936607,8042,0 +42310,Osada+koczownik%C3%B3w,386,663,699269923,6754,7 +42311,%2AINTERTWINED%2A,476,544,698704189,4310,0 +42312,Wioska+barbarzy%C5%84ska,402,329,195249,2925,0 +42313,0028.+Y+-,695,534,7125212,3589,0 +42314,Taran,333,609,6180190,10432,0 +42315,075,417,686,849099876,10495,0 +42316,059.+Wioska+barbarzy%C5%84ska,696,464,7494497,8582,0 +42317,O033,342,630,272173,9976,0 +42318,.achim.,472,300,6936607,3971,0 +42319,Wioska+barbarzy%C5%84ska,385,332,699660539,8808,0 +42320,Wioska+019,678,594,7999103,1927,0 +42321,X+008,595,324,6384450,2979,0 +42322,BRICKLEBERRY,554,302,699072129,7772,0 +42323,Wioska+barbarzy%C5%84ska,327,597,7183372,8388,0 +42324,035+-+Castellon+de+la+Plana,694,528,698342159,6490,0 +42325,A000,471,703,699725436,9521,0 +42326,Jestem+Poza+Kontrol%C4%85,348,540,8004076,7837,0 +42327,057.+Wioska+barbarzy%C5%84ska,700,467,7494497,8579,0 +42328,Wioska+barbarzy%C5%84ska,660,381,698361257,8269,0 +42329,Wioska+barbarzy%C5%84ska,631,342,9291984,4078,0 +42330,psycha+sitting,406,678,699736927,10311,0 +42331,Wioska+barbarzy%C5%84ska,342,367,7462660,10068,0 +42332,KIELBA+122,462,579,699342219,7788,0 +42333,037,695,445,699150527,7559,0 +42334,013.+Wioska+barbarzy%C5%84ska,348,636,698908184,9285,0 +42335,005,308,561,849097898,6000,0 +42336,%23001,307,558,849097898,9612,0 +42337,Wioska+barbarzy%C5%84ska,354,354,849027025,8773,0 +42338,16.BTS,684,422,9180206,8084,0 +42339,10%2C5,296,476,849095376,4564,0 +42340,005,648,362,9148043,9998,6 +42341,A12,692,556,848995478,6281,0 +42342,Wioska+barbarzy%C5%84ska,703,469,699574408,8398,0 +42343,036+-+Almeria,696,520,698342159,4312,0 +42344,Wioska+barbarzy%C5%84ska,386,330,699660539,9957,0 +42345,Szlon,303,479,8048374,9593,0 +42346,Arczi997+02,297,515,849055181,4310,0 +42347,bucksbarzy%C5%84skamiiiru,323,399,848955783,7012,0 +42348,Rogatki,311,559,699265922,9854,0 +42349,kto+ananasowy+pod+wod%C4%85+ma+dom,677,544,699628084,7353,0 +42350,KR%C3%93L+PAPI+WIELKI,661,628,698191218,10000,0 +42351,038,304,543,9280477,6072,0 +42352,a+mo%C5%BCe+off+%3F+%3A%29,675,402,698768565,6812,0 +42353,005.+Night+Raid,490,704,699684062,9309,0 +42354,FP004,493,704,699605333,10393,0 +42355,B010,517,304,699208929,6494,0 +42356,-01-,562,693,7860453,11188,0 +42357,%3D0001%3D,403,319,698231772,10119,0 +42358,026+invidia,541,700,849093426,10237,0 +42359,C001,468,699,8954402,9721,0 +42360,psycha+sitting,422,685,699736927,10311,0 +42361,%C5%BBubr,297,477,849095376,8634,0 +42362,z181_18,307,443,393668,8364,0 +42363,034,454,306,2502956,9552,0 +42364,BRICKLEBERRY,559,305,699072129,3498,0 +42365,O091,338,627,272173,9819,0 +42366,psycha+sitting,411,681,699736927,10178,0 +42367,Dream+on,300,487,698962117,8870,0 +42368,AAA,539,308,1006847,10178,0 +42369,FAKE+OR+OFF,405,318,698231772,10000,0 +42370,%2AINTERTWINED%2A,519,704,698704189,6263,0 +42371,A+017,608,388,6384450,10362,0 +42373,031,418,688,849099876,10495,0 +42374,AAA,562,312,1006847,7374,0 +42375,Krak%C3%B3w,507,299,699208929,9033,0 +42376,La+Cabana,519,297,3298902,4680,0 +42377,00979,463,432,3909522,10072,0 +42378,Taran,330,612,6180190,10098,0 +42379,zabola%C5%82o+%3F,639,484,698613394,5476,0 +42380,21.2NE1,684,421,9180206,7613,0 +42381,Wioska18,633,478,848935020,5626,0 +42382,FP001,480,701,699605333,10728,0 +42383,Ba%C5%82uty,689,478,849100246,11824,0 +42384,%23%23%23020%23%23%23,597,680,698285444,10495,0 +42385,01.BIGBANG,684,417,9180206,9959,0 +42386,Wioska+barbarzy%C5%84ska,667,391,8675636,8925,0 +42387,Wygwizdowa+001,641,645,698562644,10311,0 +42388,Wioska+barbarzy%C5%84ska,336,620,9199885,2052,0 +42390,bucksbarzy%C5%84skamiiiru,338,385,848955783,2146,0 +42391,SrebrnaHata,676,400,699738350,9384,0 +42392,%2136+65+Balaceana,657,369,698361257,8496,0 +42393,K66+2,630,652,7038651,3870,0 +42394,%3F%3F%3F%3F,470,296,698489071,10503,0 +42395,TWIERDZA+.%3A015%3A.,693,565,7154207,10343,0 +42396,110+invidia,509,702,849093426,9994,0 +42397,003,631,648,698346318,8559,0 +42398,016.+Klasztor+Brimclif,381,339,7775311,6616,0 +42399,-HRN-,551,690,7860453,3382,0 +42400,KR%C3%93L+PAPI+WIELKI,638,646,698191218,10490,0 +42401,Wiejska9,607,670,6528152,8566,0 +42402,Wioska+barbarzy%C5%84ska,685,578,7154207,3283,0 +42403,003,300,536,848886200,6308,0 +42404,Wioska+barbarzy%C5%84ska,688,560,698666810,11368,0 +42405,AAA,535,299,1006847,8079,0 +42406,003,687,562,7085502,9723,9 +42407,Didek,680,581,849070946,4054,0 +42408,Wioska+barbarzy%C5%84ska,625,347,699580120,5138,0 +42409,%2A052%2A,340,386,699273451,10211,0 +42410,C0201,300,533,8841266,8903,0 +42411,Wioska+barbarzy%C5%84ska,686,572,7038651,3333,0 +42412,0030+Kasko14,449,693,849037407,10218,0 +42414,0091,676,394,698416970,7303,0 +42415,.%3A109%3A.+Niangmen,501,392,848934935,8876,0 +42416,XDX,594,317,699098531,10160,0 +42417,I108,696,447,699722599,6373,0 +42418,%23102%23,623,656,692803,8333,0 +42419,047.+Wioska+barbarzy%C5%84ska,696,465,7494497,9755,0 +42420,B%23007,699,448,2065730,9797,0 +42421,BRICKLEBERRY,553,309,699072129,5693,0 +42422,Wioska+Turystyczna+001,705,486,7588382,9735,0 +42423,%5B0220%5D,299,501,8630972,7363,0 +42424,011.+G%C3%B3rki+Piaszczyste,648,643,849100994,9494,0 +42425,Bessa+021,637,654,848987051,10223,0 +42426,Wielki+1,498,301,849050849,8636,0 +42427,MojeDnoToWaszSzczyt,493,296,9299539,9964,0 +42428,Osada+12,691,423,699488108,8811,0 +42429,Wioska+krumlow+3,595,317,699098531,3312,0 +42430,Domi+6,698,471,849002796,7984,0 +42431,O142,348,631,272173,7233,0 +42432,Jan+Os+koc-16+Ost+K,693,444,879782,9195,3 +42434,Wioska+barbarzy%C5%84ska,677,601,3467919,7777,0 +42435,088,414,686,849099876,9571,0 +42436,Wioska+barbarzy%C5%84ska,385,335,699660539,8599,0 +42437,AAA,525,300,1006847,9686,0 +42438,Wioska+XII,579,344,698200480,7788,0 +42439,D%C4%85br%C3%B3wka+Za%C5%82%C4%99%C5%BCna,563,691,698723158,5392,0 +42440,1+R%C4%99krzowice,304,477,8048374,6968,0 +42441,Wioska+barbarzy%C5%84ska,647,356,0,4700,0 +42442,%5B0026%5D+XXX,442,310,8630972,10495,8 +42443,%3F%3F%3F,489,303,698489071,6804,0 +42444,003,593,318,699098531,2396,0 +42446,Out+of+Touch,315,421,698962117,5099,0 +42447,0005+xXx+Grypsuj%C4%85cy+xXx,441,695,849037407,10476,5 +42448,003,648,359,9148043,8974,0 +42449,EO+EO,294,519,699697558,10019,0 +42450,EO+EO,304,514,699697558,10495,9 +42451,Wioska+barbarzy%C5%84ska,620,339,1990750,8795,0 +42452,008,601,329,8842936,7706,0 +42453,255...Emerson,464,300,6920960,7283,0 +42454,Didi,687,579,849070946,10957,0 +42455,0000017%25,426,595,849089881,9789,0 +42456,01.+Devil+Z,482,650,849100262,9668,0 +42457,Z%C5%82oty+%C5%9Awit,577,309,699883079,5773,0 +42458,Osada+koczownik%C3%B3w,702,474,699574408,10216,9 +42459,002.+Good+Night,489,703,699684062,9711,0 +42460,%5B0221%5D,300,504,8630972,6946,0 +42461,By%C5%82e%C5%9B+w+porz%C4%85dku+003,369,650,699269923,9991,0 +42462,Pallad,687,440,8459255,7626,0 +42463,0039+Osada+koczownik%C3%B3w,447,698,849037407,10478,7 +42465,A+071,360,639,699269923,7782,0 +42466,CALL+1051,652,627,699784536,10365,0 +42467,TWIERDZA+.%3A013%3A.,694,566,7154207,10343,0 +42468,MojeDnoToWaszSzczyt,498,298,9299539,9621,0 +42469,New+World,430,688,698152377,10292,0 +42470,%23%23%23077%23%23%23,598,680,698285444,10495,0 +42471,Wioska+barbarzy%C5%84ska,630,341,7555180,5273,0 +42473,FAKE+OR+OFF,413,320,698231772,9824,0 +42474,tomek016+IV,693,571,8811880,1943,0 +42475,Wioska+barbarzy%C5%84ska,670,394,8675636,8883,0 +42476,z+000+Wioska+13,352,357,3909522,6345,0 +42477,KR%C3%93L+PAPI+WIELKI,657,629,698191218,10000,0 +42478,marmag81%2F03ww,298,471,1096254,5309,0 +42479,Out+of+Touch,317,429,698962117,6157,0 +42480,FP033,468,703,699605333,9185,0 +42481,05.+Betonoza,483,705,849092769,10019,0 +42482,Zaplecze+Barba+017,372,340,699796330,7595,0 +42483,Dream+on,301,499,698962117,4598,0 +42484,020,303,561,849098688,9738,0 +42485,psycha+sitting,417,683,699736927,10178,0 +42487,264...EMERSON,464,298,6920960,8062,0 +42488,Dream+on,304,504,698962117,9742,0 +42489,TWIERDZA+.%3A018%3A.,688,565,7154207,10354,0 +42491,New+World,431,688,698152377,10297,0 +42492,Wioska+zzzz,514,299,699208929,3231,0 +42493,Darma+dla+zawodnika,316,580,699671197,6982,0 +42494,psycha+sitting,404,677,699736927,6730,0 +42495,Ry%C5%9B,701,483,849099640,6245,0 +42496,A000,463,700,699725436,9274,0 +42497,z181_10,309,442,393668,9885,0 +42499,KR%C3%93L+PAPI+WIELKI,659,630,698191218,7754,0 +42500,Dream+on,298,483,698962117,8887,0 +42501,Mordor,414,317,698231772,11898,0 +42502,0005,357,358,699644448,5890,0 +42503,C3.,307,544,849095482,7030,0 +42504,New+World,430,694,698152377,10300,0 +42506,KONFA+TO+MARKA%2C+NARKA,305,453,698152377,10290,0 +42507,B001,519,302,699208929,10354,4 +42508,Wyspa_47,509,704,2585846,8152,0 +42509,Winterhome.029,493,295,848918380,10178,0 +42511,Wioska+barbarzy%C5%84ska,301,446,699706955,2800,0 +42513,C0338,297,538,8841266,4328,0 +42515,Z04,316,410,356642,9835,0 +42517,New+World,436,689,698152377,10303,0 +42519,%23%23%23078%23%23%23,584,679,698285444,10495,0 +42521,Wioska+barbarzy%C5%84ska,341,383,699541376,3471,0 +42522,ZA12,319,414,356642,9835,7 +42523,066,700,538,849095227,4753,0 +42524,HAPERT,624,661,848909464,10319,0 +42525,052g,311,557,698641566,9809,0 +42526,015,669,382,698635863,10495,0 +42527,17.+Stwho,552,313,699072129,8585,0 +42528,bucksbarzy%C5%84skamiiiru,331,391,848955783,4488,0 +42529,EO+EO,298,518,699697558,10083,0 +42530,aaaa,390,673,6948793,9899,0 +42531,08.ITZY,687,423,9180206,8918,0 +42533,Doha,516,299,699208929,8183,0 +42534,%C5%81oszyngton,608,330,699098531,9644,0 +42535,008,470,700,699725436,9555,0 +42536,0098,677,393,698416970,5681,0 +42538,bucksbarzy%C5%84skamiiiru,330,397,848955783,10065,0 +42540,Racib%C3%B3rz,694,543,848932879,1974,0 +42541,Wioska+pentoschijska,696,437,848976034,9580,0 +42543,041.+Night+Raid,489,704,699684062,10019,0 +42544,%5B0044%5D+xxx,445,303,8630972,10495,0 +42545,O143,347,628,272173,9821,0 +42547,001,308,475,848895676,5541,0 +42548,07.+Temeria,697,537,8976313,9663,0 +42550,KR%C3%93L+PAPI+WIELKI,645,639,698191218,9370,0 +42551,018.+Night+Raid%2A,433,693,699684062,9828,0 +42552,MojeDnoToWaszSzczyt,499,295,9299539,9949,0 +42553,Grubasy+7+papa,304,441,634848,3158,0 +42554,031+Kopa,691,450,849098769,6666,0 +42555,Z09,317,407,356642,9835,0 +42556,026,629,649,699373599,5950,0 +42557,11.+Memes,686,485,699804790,10237,0 +42558,B09,692,552,848995478,2631,0 +42559,bucksbarzy%C5%84skamiiiru,322,400,848955783,7206,0 +42560,ZA23,320,415,356642,9835,0 +42561,016,669,386,698635863,9370,0 +42562,053,559,407,7271812,10495,0 +42563,Posterunek,685,424,699738350,9158,0 +42564,%2AW002,662,378,7758085,9847,0 +42565,0114,679,397,698416970,9717,0 +42566,O144,346,631,272173,9814,0 +42567,MSWO-4,469,302,698489071,3630,0 +42568,O049,344,629,272173,9876,0 +42570,017,649,357,698635863,6908,0 +42571,zachod+003,357,363,7462660,10201,0 +42572,0004,356,355,699644448,5615,0 +42573,Psajdak.,352,494,699265922,9924,0 +42574,Zaplecze+Barba+9,372,341,699796330,9745,0 +42576,Wioska+barbarzy%C5%84ska,526,298,7758085,9925,0 +42577,EO+EO,299,516,699697558,10362,7 +42578,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,672,698807570,7565,0 +42579,XXXX,563,307,849054951,10178,0 +42580,Winterhome.026,491,297,848918380,10178,9 +42581,%C5%BBUBEREK+020+pit71,607,676,33900,10302,0 +42582,Z+Wioska+2,358,358,3909522,8355,0 +42583,Wioska+barbarzy%C5%84ska,304,446,699706955,2385,0 +42584,%5B0130%5D,440,305,8630972,9403,0 +42585,Zakrzewo,665,384,699491076,5254,0 +42586,Dream+on,296,483,698962117,9479,0 +42587,KR%C3%93L+PAPI+WIELKI,646,641,698191218,9373,0 +42588,ZZZ,502,696,8980651,9974,0 +42589,XDX,615,331,699098531,8993,0 +42590,MojeDnoToWaszSzczyt,506,296,9299539,9723,0 +42591,O037,344,628,272173,9960,0 +42592,xzc,498,708,699429335,10495,0 +42593,Wioska+barbarzy%C5%84ska,386,333,699660539,6423,0 +42594,Wawelno,686,542,848932879,10542,0 +42595,041+Wioska+barbarzy%C5%84ska,608,669,699346280,9115,0 +42598,%C5%BBUBR+PSYCHIATRYK+019,626,653,33900,4753,3 +42599,%2A212%2A,332,386,699273451,10211,0 +42600,S010,686,586,8428196,7094,0 +42601,%23%23%23007%23%23%23,582,683,698285444,10495,5 +42602,New+World,439,690,698152377,10294,0 +42603,C0081,302,524,8841266,10362,0 +42604,Wioska+barbarzy%C5%84ska,588,317,828637,10475,0 +42605,2.Logrono,574,683,698215322,3520,0 +42607,14.EXO,687,416,9180206,8142,0 +42608,%23%23%23021%23%23%23,589,682,698285444,10495,0 +42609,M181+...bil...,628,350,6517003,1064,0 +42610,036+Night+Raid,486,703,699684062,8490,0 +42611,D001,363,638,272173,10365,0 +42612,A%23037,705,480,2065730,9797,0 +42613,%5B057%5D+Wioska+barbarzy%C5%84ska,685,421,849095068,4197,0 +42614,Zzzz+-+Kasztelania+002,641,351,699733098,4198,0 +42615,z+001043,354,366,3909522,4501,0 +42616,O093,336,621,272173,9549,0 +42617,003,641,641,849099544,7302,0 +42618,C037,375,661,699383279,9741,0 +42619,TWIERDZA+.%3A061%3A.,690,574,7154207,7652,0 +42620,Babilon,386,334,699660539,9763,0 +42621,KR%C3%93L+PAPI+WIELKI,649,638,698191218,9973,0 +42622,Wioska+barbarzy%C5%84ska,370,342,3698627,7717,0 +42623,Wioska+barbarzy%C5%84ska,698,541,848946700,6179,0 +42624,KR%C3%93L+PAPI+WIELKI,654,631,698191218,10000,0 +42625,.achim.,468,296,6936607,10052,0 +42626,KR%C3%93L+PAPI+WIELKI,697,520,698191218,8186,0 +42627,Wioska+barbarzy%C5%84ska,373,349,698160606,3957,0 +42628,005.+Wioska+barbarzy%C5%84ska,346,635,698908184,9806,0 +42629,Owsiana,482,297,698848373,2159,0 +42630,O001,342,633,272173,9957,8 +42631,Ave+Why%21,308,574,6180190,3498,0 +42632,z181_06,312,441,393668,9883,0 +42633,Wied%C5%BAma+-+Z+002,307,431,9239515,5456,0 +42634,04.MINUTE,684,416,9180206,7460,0 +42635,XXXX,567,306,849054951,10068,0 +42636,%23%23%23079%23%23%23,582,684,698285444,10495,0 +42637,Fear+Of+The+Dark,692,555,848926293,4624,0 +42638,A+080,364,642,6948793,2402,0 +42639,Atlantyda+I,370,344,849068108,3644,0 +42640,Kuwejt,515,299,699208929,9911,0 +42641,018,660,382,698635863,8596,0 +42642,12.EVERGLOW,689,419,9180206,8520,0 +42643,Domi+5,701,473,849002796,8978,0 +42644,B01+Sopot,348,373,7462660,8684,0 +42645,119,695,454,849088515,6213,0 +42646,BRICKLEBERRY,560,312,699072129,6946,0 +42647,030+Malleore,454,691,699834004,4530,0 +42648,%23006,311,563,849097898,4279,0 +42649,Wioska+barbarzy%C5%84ska,703,515,254937,9786,0 +42650,Wioska+barbarzy%C5%84ska,518,320,698350371,7704,0 +42651,Wioska+barbarzy%C5%84ska,584,312,828637,10475,0 +42652,008e,308,425,8259895,9674,0 +42653,TARAN,547,692,7860453,9458,0 +42655,Wioska+barbarzy%C5%84ska,687,561,698666810,11293,0 +42656,O057,343,627,272173,9821,0 +42657,30.Girls+Day,690,426,9180206,3797,0 +42658,Wioska+Hrabia+mol,319,594,699697136,9692,0 +42659,Wioska+barbarzy%C5%84ska,697,561,8742874,3451,0 +42660,KR%C3%93L+PAPI+WIELKI,650,640,698191218,10000,1 +42661,Go%C5%84+Si%C4%99+Dildu%C5%9B97+%3B%5D+huehuehue+%40,494,294,848918262,9706,0 +42662,ZA25,316,417,356642,9835,0 +42663,Wioska+barbarzy%C5%84ska,607,331,699548295,1704,0 +42664,boh81%2F500,299,470,848889556,7064,0 +42665,Wioska+barbarzy%C5%84ska,580,310,828637,10160,0 +42666,0146,678,401,698416970,7054,0 +42668,Wioska+barbarzy%C5%84ska,626,345,7555180,6322,0 +42669,EO+EO,292,515,699697558,10083,0 +42670,052,452,301,2502956,8099,0 +42671,Osada+koczownik%C3%B3w,343,367,7462660,10068,2 +42672,Wy%C5%82om,700,483,849099640,7678,0 +42673,C068,358,650,699383279,10070,0 +42674,Wioska+barbarzy%C5%84ska,313,576,3475079,2721,0 +42675,Wied%C5%BAma+-+Z+004,307,434,9239515,5276,0 +42676,022,401,677,849099876,10495,0 +42677,Stamford+Bridge,665,617,849096631,10538,0 +42678,023.+Wilan%C3%B3w,705,472,7494497,10237,0 +42679,EO+EO,298,515,699697558,10019,0 +42680,Out+of+Touch,314,432,698962117,6573,0 +42681,Chabry,695,530,848932879,10971,0 +42682,KR%C3%93L+PAPI+WIELKI,649,637,698191218,9969,0 +42684,Wioska+barbarzy%C5%84ska,339,617,9199885,5053,0 +42685,MojeDnoToWaszSzczyt,500,299,9299539,9962,0 +42686,Gaworzyna,564,689,698723158,6448,0 +42687,AAA,543,307,1006847,7221,0 +42689,Wioska+barbarzy%C5%84ska,399,326,195249,3190,0 +42690,Hongkong,513,296,699208929,1605,0 +42691,%5B0082%5D+Potrzeba,436,309,8630972,10495,0 +42692,0000.q,471,300,849099342,3862,0 +42693,MojeDnoToWaszSzczyt,506,295,9299539,10022,0 +42694,C001,587,388,699761749,10495,0 +42695,KR%C3%93L+PAPI+WIELKI,642,646,698191218,10075,0 +42696,003,647,631,698234770,9929,0 +42697,bucksbarzy%C5%84skamiiiru,335,391,848955783,10621,0 +42698,bucksbarzy%C5%84skamiiiru,327,389,848955783,4498,0 +42699,By%C5%82e%C5%9B+w+porz%C4%85dku+001,365,651,699269923,9715,7 +42701,Wioska+barbarzy%C5%84ska,348,363,7462660,9643,0 +42702,Wioska+barbarzy%C5%84ska,394,675,6948793,6884,0 +42703,KR%C3%93L+PAPI+WIELKI,639,644,698191218,9372,0 +42704,AAA,544,304,1006847,8663,0 +42705,048+-+Nowy+Pocz%C4%85tek...,359,646,6948793,6535,0 +42706,002.+Tak,347,368,7462660,10122,0 +42707,Wioska+barbarzy%C5%84ska,349,363,7462660,10068,0 +42708,%3F%3F%3F,489,300,698489071,5356,0 +42709,EO+EO,297,519,699697558,10083,0 +42710,FAKE+OR+OFF,407,321,698231772,9825,0 +42711,009%23+Melissa,485,699,699605333,9891,0 +42712,048,454,696,849099876,10495,0 +42713,Ranczo1,304,447,699706955,11590,0 +42714,0018,400,323,2321390,4619,0 +42715,%2136+65+Radauti,655,365,698361257,10495,0 +42716,xxx,693,547,699316421,9425,0 +42717,%23Charlotte,431,666,699849210,9892,0 +42718,021%23+Sophia,488,698,3933666,8008,0 +42719,Wioska+Zorro+005,679,600,849080702,12154,2 +42720,Wioska+Wielki+Wezyr,321,397,3185732,2431,0 +42721,MojeDnoToWaszSzczyt,496,301,9299539,9969,0 +42722,XDX,606,329,699098531,9620,0 +42724,%5B0222%5D,293,506,8630972,7150,0 +42725,019,668,384,698635863,9198,0 +42726,02.+Whitebird,481,653,849100262,10002,0 +42727,Wioska+barbarzy%C5%84ska,694,441,1715091,6372,0 +42729,003.+0.Ver%24,704,514,254937,9786,3 +42730,%5B0096%5D,442,308,8630972,10495,0 +42731,KR%C3%93L+PAPI+WIELKI,644,643,698191218,9998,0 +42733,KR%C3%93L+PAPI+WIELKI,633,655,698191218,9355,0 +42734,085+invidia,520,701,849093426,8608,0 +42736,606%7C377,625,336,699580120,9570,0 +42737,O140,346,632,272173,6799,0 +42738,Szlachcic,685,589,698867446,7710,0 +42739,Wioska+barbarzy%C5%84ska,561,330,699072129,10226,0 +42740,Wioska+barbarzy%C5%84ska,388,329,699660539,6740,0 +42741,045,627,657,699373599,4762,0 +42742,1..,645,353,9291984,2931,0 +42743,%23%23%23081%23%23%23,585,688,698285444,10495,0 +42744,Wioska+barbarzy%C5%84ska,702,517,254937,10024,0 +42745,Dream+on,295,491,698962117,9742,6 +42746,Mocarna+wioska,684,592,849101652,7764,0 +42747,Wioska+barbarzy%C5%84ska,541,695,7860453,5439,0 +42748,Elo+Elo+2,310,583,699016994,9672,0 +42749,Melon2,310,431,699659708,5559,0 +42750,139+invidia,535,695,849093426,8155,0 +42751,aaaa,412,315,698231772,9812,1 +42752,bucksbarzy%C5%84skamiiiru,327,390,848955783,5060,0 +42753,A14,698,555,848995478,4179,0 +42754,HAPERT,623,662,848909464,10319,0 +42755,Z%C5%82oty+%C5%9Awit,572,312,699883079,6937,0 +42756,Wioska+barbarzy%C5%84ska,343,376,7462660,4299,0 +42757,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,496,704,8980651,3988,0 +42758,O058,344,630,272173,9819,0 +42759,New+World,438,689,698152377,10295,0 +42760,.achim.,489,299,6936607,5588,0 +42761,FENDI,299,466,699794765,2194,0 +42762,MojeDnoToWaszSzczyt,561,364,699697558,10495,0 +42763,x001,353,643,6948793,6736,0 +42764,NiePyskuj,624,656,848909464,8669,0 +42765,Wioska+barbarzy%C5%84ska,362,651,6948793,9140,0 +42766,Modrzejowice,575,696,698723158,9153,0 +42767,TWIERDZA+.%3A003%3A.,694,572,7154207,10050,5 +42768,Wioska+barbarzy%C5%84ska,666,378,699580120,4001,0 +42769,The+Game+Has+Only+Just+Begun,356,536,9280477,9976,0 +42770,Wioska+Wiki+4,523,698,849100354,9113,0 +42771,%23K66+0002,610,674,699728159,9761,0 +42772,075,693,548,699316421,9475,0 +42773,0100,676,395,698416970,4868,0 +42774,Winterhome.028,502,294,848918380,10178,0 +42775,WS+03,697,441,699524891,9626,5 +42776,C0196,303,529,8841266,6735,0 +42777,New+World,423,692,698152377,10294,0 +42778,aaaa,386,675,6948793,9899,0 +42779,Wioska+barbarzy%C5%84ska,696,457,849098769,4349,0 +42780,z181_24,304,437,393668,9842,0 +42781,Wioska+barbarzy%C5%84ska,558,322,699072129,3516,0 +42782,FAKE+OR+OFF,418,320,698231772,9813,0 +42783,006.+Cicha,320,587,3475079,7753,0 +42784,Wioska+Zorro+024,675,595,849080702,5026,0 +42785,Wow8,367,348,699730714,7870,0 +42786,0009,359,356,699644448,2914,0 +42788,Wioska+Totomoose+5,313,427,849100744,726,0 +42789,EO+EO,294,499,699697558,8749,0 +42790,%5B0144%5D,440,302,8630972,9129,0 +42791,Wioska+Totomoose+4,314,427,849100744,2577,0 +42792,Retkinia,585,684,849100612,3070,0 +42793,Wioska+barbarzy%C5%84ska,697,438,848976034,3764,0 +42794,C053,379,657,699383279,9425,0 +42795,Wioska+barbarzy%C5%84ska,694,437,1715091,5915,0 +42796,%2A%2A25%2A%2A,643,357,849098782,5054,0 +42797,Didek,688,585,849070946,7052,0 +42798,083+invidia,518,703,849093426,5454,0 +42799,Wioska+barbarzy%C5%84ska,384,333,699660539,9961,0 +42801,%2A123%2A,355,357,699273451,10211,0 +42802,-024-+S,619,343,849099276,2020,0 +42803,030,311,567,849098688,10224,0 +42804,MojeDnoToWaszSzczyt,507,297,9299539,8034,0 +42805,a+mo%C5%BCe+off+%3F+%3A%29,674,412,698768565,6625,0 +42806,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,496,703,8980651,4877,0 +42807,Wioska+barbarzy%C5%84ska,389,668,6948793,6656,0 +42809,%5B0223%5D,294,506,8630972,6745,0 +42810,Spontan,339,442,393668,7383,0 +42811,Cezowy+gr%C3%B3d,319,421,699377401,3397,0 +42812,%23%23%23006%23%23%23,583,689,698285444,10495,2 +42813,018+G%C3%B3rki+Rozbi%C3%B3rki,647,645,849100994,9537,0 +42814,Wioska+barbarzy%C5%84ska,388,331,699660539,7546,0 +42815,28.+ZBARA%C5%BB,696,470,699804790,5427,0 +42816,Darma+dla+zawodnika,323,589,6180190,10311,0 +42818,New+World,428,686,698152377,10294,0 +42819,010.+G%C3%B3rki+Kamienne,647,643,849100994,9660,0 +42820,Dream+on,302,496,698962117,9488,0 +42821,Dream+on,296,479,698962117,5921,6 +42822,WB09,325,405,356642,4825,0 +42823,Wioska+barbarzy%C5%84ska,398,330,195249,7280,0 +42824,0017+Wioska+barbarzy%C5%84ska,443,699,849037407,10476,0 +42825,psycha+sitting,422,684,699736927,10311,0 +42826,bucksbarzy%C5%84skamiiiru,333,386,848955783,11550,0 +42828,%2A%2A%2A%2A%2A+%2A%2A%2A,420,311,699694284,8477,0 +42829,%3F%3F%3F,485,300,698489071,10728,0 +42830,055+-+Nowy+Pocz%C4%85tek...,353,642,698908184,6972,0 +42831,%5B0224%5D,299,509,8630972,7953,0 +42832,0073,682,418,698416970,4641,0 +42833,C.016,699,485,9188016,5185,0 +42834,Osada+koczownik%C3%B3w,694,432,1715091,9576,7 +42835,Wioska+barbarzy%C5%84ska,554,301,698350371,3539,0 +42836,a+mo%C5%BCe+off+%3F+%3A%29,674,406,698768565,6146,0 +42837,%C5%BBelazowy+gr%C3%B3d,317,414,699377401,10444,0 +42838,Helowy+gr%C3%B3d,317,419,699377401,4410,0 +42839,bucksbarzy%C5%84skamiiiru,323,397,848955783,9854,0 +42840,17.SEVENTEEN,685,415,9180206,8847,0 +42842,Wygwizdowa+004,640,648,698562644,10311,0 +42843,barbarzy%C5%84ska,314,566,849099258,2949,0 +42844,0001,375,340,699660539,10183,0 +42845,KONFA+TO+MARKA%2C+NARKA,300,461,698152377,7808,0 +42846,C051,367,657,699383279,9842,0 +42847,%C5%9Alimak+11,606,333,699098531,9277,0 +42848,O050,346,626,272173,9894,0 +42849,New+Land+02,332,383,849064752,5760,0 +42850,Wioska+barbarzy%C5%84ska,634,344,9291984,1780,0 +42851,Wioska+Wiki,521,696,849100354,12154,0 +42852,KR%C3%93L+PAPI+WIELKI,650,629,698191218,10000,0 +42853,K35+-+%5B030%5D+Before+Land,575,311,699088769,9783,0 +42855,AAA,544,306,1006847,4596,0 +42856,%23105+C,530,673,9037756,6892,0 +42857,011,523,297,699208929,8182,0 +42858,KR%C3%93L+PAPI+WIELKI,655,634,698191218,10000,0 +42859,265...Gulden,459,304,6920960,4575,0 +42860,psycha+sitting,399,679,699736927,6626,0 +42861,E.02,677,505,699737356,9442,0 +42862,KONOPISKA,303,477,8048374,9901,0 +42863,1.Ernesto+Hoosta,524,304,7758085,5459,0 +42864,Wioska+barbarzy%C5%84ska,561,698,6870350,8530,0 +42865,Wioska+barbarzy%C5%84ska,309,447,393668,6338,0 +42866,0087,675,394,698416970,8384,0 +42868,bucksbarzy%C5%84skamiiiru,323,394,848955783,10971,2 +42869,AAA,544,303,1006847,10544,0 +42870,Wioska+barbarzy%C5%84ska,372,343,3698627,7322,0 +42871,AAA,541,302,1006847,9751,0 +42872,081.,455,702,849034882,9216,0 +42873,001,698,559,301602,9740,0 +42874,Wioska+barbarzy%C5%84ska,630,340,7555180,4049,0 +42875,58+ggggggg,295,474,849018442,3311,0 +42876,Wow18,364,352,849027025,3181,0 +42878,O147,352,644,272173,9728,0 +42879,BRICKLEBERRY,559,311,699072129,5363,0 +42880,%2AINTERTWINED%2A,517,705,698704189,5721,0 +42881,Anfield,668,617,849096631,9377,0 +42882,Zagroda8,609,669,6528152,5879,0 +42883,Kuna,704,483,849099640,6877,0 +42884,Barbi,566,309,849054951,10068,0 +42885,Wioska+barbarzy%C5%84ska,363,651,699269923,9893,0 +42886,%3F%3F%3F,478,300,698489071,9924,0 +42887,031,703,519,699150527,7306,0 +42888,005,647,633,698234770,6925,0 +42889,KR%C3%93L+PAPI+WIELKI,651,636,698191218,9370,0 +42890,TWIERDZA+.%3A043%3A.,692,570,7154207,10226,0 +42891,Wygwizdowa+003,638,648,698562644,10311,0 +42892,Rafaleks,636,352,9291984,10495,0 +42893,po+do%C5%BCynkach,706,519,699150527,5680,0 +42894,XDX,599,324,699098531,7393,0 +42895,%23%23%23002%23%23%23,592,687,698285444,10495,0 +42896,Zagroda3,604,674,6528152,8600,0 +42897,-+254+-+SS,552,698,849018239,5973,0 +42898,%3F%3F%3F%3F,466,298,698489071,4539,0 +42899,O124,334,622,272173,9899,0 +42900,Wioska+5,502,300,849050849,6850,0 +42901,Wioska+Ania12345,647,632,698234770,9929,0 +42902,0031+Kasko14,450,695,849037407,9800,0 +42904,048KP,486,293,849063849,6288,0 +42905,virginRiver,571,623,699828685,9368,0 +42906,New+World,436,690,698152377,10294,0 +42907,Wioska+krumlow+15,597,322,699098531,2254,0 +42908,Wioska+barbarzy%C5%84ska,698,542,848946700,5295,0 +42909,O011,342,634,272173,9956,0 +42910,Darma+dla+zawodnika,317,583,6180190,3037,0 +42911,psycha+sitting,409,677,699736927,10311,0 +42912,KR%C3%93L+PAPI+WIELKI,656,633,698191218,10000,0 +42913,KR%C3%93L+PAPI+WIELKI,661,627,698191218,10000,0 +42914,Wioska+barbarzy%C5%84ska,638,355,848973715,2660,0 +42916,044,650,631,699099811,8599,0 +42917,Kagusiowo+11,301,442,849101268,3744,0 +42918,New+World,432,691,698152377,9942,0 +42919,East+3,663,372,1086351,5368,0 +42920,B.03,670,502,699737356,9623,0 +42921,Wioska+barbarzy%C5%84ska,701,521,7047342,9831,0 +42923,2.Caceres,583,681,698215322,10605,0 +42924,Wioska+barbarzy%C5%84ska,669,604,3467919,7961,0 +42925,CALL+1049,655,628,699784536,10495,0 +42926,Szlachcic,387,338,3484132,10136,0 +42927,205...segador,458,303,6920960,10654,0 +42928,.achim.,471,296,6936607,6528,0 +42929,%23104%23,621,658,692803,8482,0 +42930,Wioska+barbarzy%C5%84ska,382,661,699269923,9484,0 +42931,Rogatki2,309,561,699265922,6218,0 +42932,065,409,683,849099876,11824,0 +42933,0018+Wioska+barbarzy%C5%84ska,439,698,849037407,10479,0 +42934,Wioska+barbarzy%C5%84ska,344,371,7462660,8875,0 +42935,Dream+on,293,493,698962117,9750,9 +42936,TWIERDZA+.%3A078%3A.,690,582,7154207,8737,0 +42937,TWIERDZA+.%3A038%3A.,691,574,7154207,10231,0 +42938,Wioska+barbarzy%C5%84ska,582,312,828637,10474,0 +42939,008+s%C5%82aby+jestem,530,701,849093426,10237,0 +42940,C0200,298,526,8841266,9341,0 +42941,KONFA+TO+MARKA%2C+NARKA,302,460,698152377,9296,0 +42942,Z%C5%82oty+%C5%9Awit,571,308,699883079,7819,0 +42943,Wioska+lll,316,581,699671197,9334,0 +42944,Ziemianka+Ruskich+3,360,643,6948793,8912,0 +42945,020.+Wioska+barbarzy%C5%84ska,351,639,698908184,8365,0 +42946,a+mo%C5%BCe+off+%3F+%3A%29,674,405,698768565,6363,0 +42947,FAKE+OR+OFF,410,321,698231772,9822,0 +42948,ZA10,320,412,356642,9835,3 +42949,FP019,475,704,699605333,10393,0 +42950,-+258+-+SS,560,697,849018239,8107,0 +42951,Wioska+R.R.,547,301,699072129,6217,0 +42952,BRICKLEBERRY,548,304,699072129,8970,0 +42953,Wioska+barbarzy%C5%84ska,611,664,6818593,4183,0 +42954,%5B%2A%5D+z%C5%82yy+banan+%5B%2A%5D,629,346,9291984,8930,0 +42955,Dream+on,294,487,698962117,6437,2 +42956,B%23025,695,435,2065730,8963,0 +42957,096,524,505,699351301,8359,0 +42958,Wioska+barbarzy%C5%84ska,425,312,849100399,6373,0 +42959,%4004%40,406,326,699483429,7604,0 +42960,006,706,487,942959,3269,0 +42961,Wioska+barbarzy%C5%84ska,469,296,699393759,4690,0 +42962,val2,586,322,7340529,9664,0 +42963,Na+Kra%C5%84cu+%C5%9Awiata+014,636,348,9291984,4052,0 +42964,008.+Night+Raid,491,706,699684062,9564,0 +42965,B005+Wioska+FUZA,703,460,113796,10224,0 +42966,TWIERDZA+.%3A014%3A.,686,566,7154207,10539,0 +42968,005,698,560,301602,5532,0 +42969,Wioska+006,701,522,2999957,4458,0 +42970,psycha+sitting,415,681,699736927,10311,0 +42973,%3F%3F%3F%3F,489,295,698489071,6090,0 +42974,007,297,480,2418364,9686,0 +42975,Szlachcic,384,337,3484132,9917,0 +42976,Osada+koczownik%C3%B3w,305,447,393668,6516,1 +42978,A16,693,558,848995478,6079,0 +42979,KIELBA+088,447,573,699342219,10253,0 +42980,018,421,687,849099876,10495,0 +42982,Wioska+barbarzy%C5%84ska,301,460,699706955,2979,0 +42983,Wioska+Zorro+006,674,597,849080702,10971,0 +42984,Wioska+barbarzy%C5%84ska,685,412,699598425,6232,0 +42985,033,304,560,9280477,6011,0 +42986,Miedziany+gr%C3%B3d,320,417,699377401,10298,0 +42987,C114,364,648,699383279,10193,0 +42988,Wioska+barbarzy%C5%84ska,646,365,6625437,3837,0 +42990,TWIERDZA+.%3A011%3A.,688,572,7154207,10159,0 +42991,B%23001,694,452,2065730,9797,0 +42992,Wioska+barbarzy%C5%84ska,693,561,6929240,5949,0 +42993,Wioska+barbarzy%C5%84ska,669,394,8675636,10083,0 +42994,Nowy+rozdzia%C5%82%3F,697,433,699785935,10252,0 +42995,026.+U%C5%9Bmiech+%3A%29,701,471,7494497,10237,0 +42996,EO+EO,295,517,699697558,10019,4 +42997,Out+of+Touch,316,422,698962117,9485,0 +42998,%5B0156%5D,450,304,8630972,8841,0 +42999,XDX,611,330,699098531,9701,3 +43000,Wioska+barbarzy%C5%84ska,306,446,699706955,1288,0 +43001,bucksbarzy%C5%84skamiiiru,324,392,848955783,9556,0 +43002,Gazun,644,645,848903260,3428,6 +43004,020,666,382,698635863,9692,0 +43006,%2136+85+Putna,658,381,698361257,7190,0 +43007,.achim.,476,295,6936607,10311,2 +43008,015+G%C3%B3rki+Marmurki,652,632,849100994,11130,0 +43009,Winterhome.030,501,292,848918380,10178,0 +43010,B12,699,533,848995478,3928,7 +43011,S005,682,587,8428196,7617,0 +43012,Wioska+barbarzy%C5%84ska,704,524,7047342,9180,0 +43015,-+Gracadabra+-,669,617,849009623,2499,0 +43016,Wioska+24,681,585,849101162,2761,0 +43017,KONFA+TO+MARKA%2C+NARKA,298,457,698152377,10292,0 +43018,%3F%3F%3F%3F,481,298,698489071,10582,0 +43019,Elo+Elo+6,313,579,699016994,7936,0 +43021,Wioska+karte%C5%84ska,695,439,848976034,3433,0 +43022,037+Night+Raid,485,707,699684062,7389,0 +43023,0037+Kasko14,448,698,849037407,10342,0 +43024,Osada+koczownik%C3%B3w,699,502,3364735,6591,1 +43025,%23%23%23082%23%23%23,581,688,698285444,10495,0 +43026,0106,706,503,699429153,9782,0 +43027,Tarkos,651,603,1900364,8910,0 +43028,XXXX,560,302,849054951,10068,0 +43029,New+World,433,696,698152377,10295,0 +43030,KR%C3%93L+PAPI+WIELKI,656,623,698191218,10436,0 +43031,026,304,545,9280477,7044,0 +43032,FAKE+OR+OFF,413,313,698231772,9816,6 +43033,Wioska+barbarzy%C5%84ska,303,438,393668,5862,0 +43034,Olesno,693,545,848932879,2174,0 +43035,Pierdolnik,423,308,849100399,12154,0 +43036,A000,467,698,699725436,9379,0 +43037,%23%23%23083%23%23%23,593,675,698285444,10495,0 +43038,068+ZieloneOczko4,705,511,2135129,6527,0 +43039,Hello+there,319,591,6180190,4332,0 +43040,Ksi%C4%99%C5%BCyc,551,334,699797805,3883,0 +43041,Elo+Elo+5,312,582,699016994,9186,0 +43042,Wioska+Turystyczna+010,701,512,7588382,1678,0 +43043,012.Stradi,426,311,698365960,10452,0 +43044,012.+G%C3%B3rki+%C5%BBwirowe,648,642,849100994,7354,9 +43045,058.+%C5%81omnica,699,548,1601917,7514,0 +43046,Wioska+barbarzy%C5%84ska,342,366,7462660,9999,0 +43047,002,696,561,301602,8703,0 +43048,C0128,302,526,8841266,10362,0 +43049,034.+Night+Raid,488,703,699684062,9017,0 +43050,Jan+ost+daleko,698,468,879782,7918,0 +43051,XDX,611,336,699098531,6544,0 +43053,039,447,308,2502956,10019,0 +43054,BRICKLEBERRY,548,306,699072129,5790,0 +43055,Psycho+to+Marka%2C+Narka+%21,317,578,849040142,7465,0 +43056,New+World,436,693,698152377,9746,0 +43058,Wioska+barbarzy%C5%84ska,308,448,634848,4051,0 +43059,05.TREASURE,687,420,9180206,9956,8 +43060,PRZEMY%C5%9AL,493,300,849100406,9858,0 +43061,014.Stradi,433,311,698365960,10495,0 +43062,007.+G%C3%B3rki+Pag%C3%B3rki,659,632,849100994,10362,0 +43064,Wioska+barbarzy%C5%84ska,382,338,3698627,10085,0 +43065,O051,333,623,272173,9818,0 +43066,-+197+-+SS,561,690,849018239,6936,0 +43067,KR%C3%93L+PAPI+WIELKI,632,655,698191218,9367,0 +43068,015,637,646,849099544,5827,0 +43069,C0099,300,516,8841266,10362,0 +43070,%2A002%2A,328,546,8630972,10495,0 +43071,AAA,549,306,1006847,8363,0 +43072,0021,514,525,699432672,10495,0 +43073,ZA04,321,406,356642,9835,0 +43074,0108,705,504,699429153,8796,0 +43075,Niepokonany+Albatros%21,567,309,828637,9722,0 +43076,Z16,313,410,356642,9835,0 +43077,%23%23%23022%23%23%23,591,683,698285444,10495,0 +43078,Wioska+barbarzy%C5%84ska,362,346,849027025,9587,0 +43079,Domek+kapcia+KURY,359,641,6948793,8702,0 +43080,004,456,300,2502956,10019,8 +43081,z+Wioska+4,359,358,3909522,3457,0 +43082,XDX,606,324,699098531,10052,0 +43083,z181_23,305,436,393668,8378,0 +43084,I+lost+you,702,512,699785935,9576,0 +43085,z+0000+Osada,348,360,3909522,10083,9 +43086,007.,350,636,698908184,9713,0 +43087,0007+Sir+JuriGagarin,442,692,849037407,10003,0 +43089,%23%23%23084%23%23%23,580,685,698285444,10495,0 +43091,064,408,683,849099876,10495,0 +43092,029.,323,594,3475079,3408,0 +43093,AAA,559,309,1006847,8987,0 +43094,z181_11,309,441,393668,9881,0 +43095,046.Stradi,429,315,698365960,10495,0 +43096,Wioska+barbarzy%C5%84ska,675,395,698768565,6294,0 +43098,002,395,325,8153941,8405,0 +43099,Wioska+barbarzy%C5%84ska,628,338,849102068,1926,0 +43100,133.Stradi,431,307,698365960,2524,0 +43101,0013+mackobl14,442,694,849037407,10476,0 +43102,011,302,546,9280477,7466,0 +43103,005,592,317,699098531,4052,0 +43104,marmag81%2F03,302,468,1096254,5569,2 +43105,Wuhan,629,342,699580120,9570,0 +43106,KR%C3%93L+PAPI+WIELKI,657,635,698191218,10000,0 +43107,025+NAWRA,664,611,849048867,2922,0 +43108,Wioska+barbarzy%C5%84ska,355,647,6948793,9976,5 +43109,Didi,688,577,849070946,9051,0 +43110,ZZZ,513,700,8980651,6503,0 +43111,Pi%C4%85tnica,689,477,849100082,11678,0 +43112,Wioska+barbarzy%C5%84ska,532,700,8980651,9753,0 +43113,.achim.,468,295,6936607,7359,0 +43114,C.012,699,487,9188016,10000,0 +43115,Nowa+56,685,580,698702991,7579,0 +43116,AAA,542,305,1006847,8684,0 +43117,.achim.,467,295,6936607,6823,0 +43118,-035-,364,650,699097885,9899,0 +43119,ZA08,323,403,356642,9835,0 +43120,%23%23%23023%23%23%23,597,683,698285444,10495,0 +43121,S003,682,590,8428196,7823,0 +43122,bucksbarzy%C5%84skamiiiru,330,391,848955783,11130,0 +43123,Rogatki1,310,561,699265922,5062,0 +43124,B%C5%82aziny+Dolne,571,686,698723158,10301,0 +43125,O126,332,620,272173,5975,0 +43126,018,307,556,849098688,10160,0 +43127,HAPERT,626,664,848909464,10319,0 +43128,058-+Maroczna+Osada,649,360,849035905,3671,0 +43129,021,667,384,698635863,9741,0 +43130,Wioska+barbarzy%C5%84ska,703,546,8742874,3599,0 +43131,MELISKA,359,457,699794765,8991,0 +43132,%23%23%23008%23%23%23,590,678,698285444,10495,0 +43133,-+267+-+SS,549,702,849018239,7424,0 +43134,Kagusiowo+12,303,443,849101268,3307,0 +43135,%23%23%23011%23%23%23,593,683,698285444,10495,0 +43136,004,388,326,699660539,7449,0 +43137,FAKE+OR+OFF,415,319,698231772,9824,0 +43138,Marmag81%2F12,305,464,1096254,9299,0 +43139,%C5%BBywiec,297,476,849095376,6260,0 +43140,2.Algeciras,576,683,698215322,4360,0 +43141,AAA,562,310,1006847,6406,0 +43142,%5B0151%5D,453,299,8630972,9007,0 +43143,bucksbarzy%C5%84skamiiiru,331,397,848955783,10971,0 +43144,ZA24,318,417,356642,9835,0 +43145,.achim.,474,299,6936607,3672,0 +43146,Wioska+barbarzy%C5%84ska,694,459,849098769,5150,0 +43147,Osada+koczownik%C3%B3w,384,334,699660539,10019,1 +43148,Zaplecze+Barba+028,363,347,699796330,6016,0 +43149,Wioska+barbarzy%C5%84ska,385,673,6948793,7527,0 +43150,Wioska+barbarzy%C5%84ska,579,311,828637,10290,0 +43151,Bessa+022,630,657,848987051,8522,0 +43152,0.06+Raz,464,700,699725436,8338,0 +43153,Wioska+7,362,356,3342690,2902,0 +43154,C0340,298,538,8841266,3221,0 +43155,Wioska+klez+020,310,563,698295651,5638,0 +43156,KR%C3%93L+PAPI+WIELKI,657,621,698191218,10082,0 +43158,Wied%C5%BAma+-+Z+006,306,428,9239515,5124,0 +43159,Klaudiczek,644,356,849092309,2722,0 +43160,054+invidia,520,699,849093426,10301,0 +43161,ADEN,612,356,698588535,9522,0 +43162,Wioska+barbarzy%C5%84ska+0,314,580,699016994,5594,0 +43163,26+barbarzy%C5%84ska...,301,466,849018442,10495,0 +43164,marmag81%2F03w,300,469,1096254,6013,0 +43166,Wioska+barbarzy%C5%84ska,685,409,699598425,7209,0 +43167,%C5%9Api%C4%85cy+Szaman,318,587,849100439,1543,0 +43168,Psycho+to+Marka%2C+Narka+%21,316,573,849040142,4091,0 +43169,022,455,304,2502956,10005,7 +43170,abc,492,296,1493696,3883,0 +43171,XDX,606,322,699098531,10290,0 +43172,wioska,631,346,849086693,4659,0 +43173,0110,704,493,699429153,8763,0 +43174,Wielki+3,499,301,849050849,8099,0 +43175,%23%23%23024%23%23%23,592,680,698285444,10495,0 +43176,XDX,607,327,699098531,9616,0 +43177,%5B0106%5D,445,309,8630972,10495,0 +43178,C0198,299,526,8841266,7368,0 +43179,Wioska+barbarzy%C5%84ska,371,340,3698627,7894,0 +43180,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,493,705,8980651,9883,0 +43181,Wioska+barbarzy%C5%84ska,647,357,6625437,3087,0 +43182,Taran,327,612,6180190,9962,0 +43183,FAKE+OR+OFF,414,315,698231772,9953,0 +43185,Wioska+barbarzy%C5%84ska,706,488,699429153,7718,0 +43187,FAKE+OR+OFF,408,315,698231772,9812,0 +43188,BRICKLEBERRY,554,303,699072129,10178,0 +43189,ZA02,320,405,356642,9835,0 +43190,HURKO,480,295,849100406,9269,0 +43191,0105,704,502,699429153,9825,0 +43192,XDX,595,316,699098531,9219,0 +43193,%23%23%23010%23%23%23,592,683,698285444,10495,0 +43194,022,665,382,698635863,9742,0 +43195,013,315,585,6180190,9318,0 +43196,Wioska+astaporska,696,439,848976034,3021,0 +43197,Wioska+barbarzy%C5%84ska,622,665,6818593,5173,0 +43198,605%7C379,666,375,699580120,9570,0 +43199,Taran,332,606,6180190,9955,0 +43200,bucksbarzy%C5%84skamiiiru,337,378,848955783,3089,0 +43201,014%23+Evelyn,486,700,3933666,9667,0 +43202,Wioska+barbarzy%C5%84ska,528,299,7758085,9861,0 +43203,0034+Kasko14,449,694,849037407,10452,0 +43204,000+Plutosea,315,561,9280477,6170,0 +43205,Wioska+barbarzy%C5%84ska,453,697,698178312,1657,0 +43206,KONFA+TO+MARKA%2C+NARKA,304,457,698152377,10290,1 +43207,New+World,430,690,698152377,10297,0 +43208,04.+Rivia,704,539,8976313,9553,0 +43209,XDX,610,325,699098531,8317,0 +43210,Wioska+barbarzy%C5%84ska,369,658,699269923,8967,0 +43211,W%C4%99gorzewo,509,296,699208929,10213,9 +43213,C0245,303,523,8841266,10362,0 +43214,zajazd+%231,354,352,849027025,9046,0 +43215,0114,706,496,699429153,10301,0 +43216,Co+ona+wam+biedna+zrobi%C5%82a+xd,392,329,3484132,2930,0 +43217,Wioska+barbarzy%C5%84ska,620,667,6818593,7092,0 +43218,%3F%3F%3F%3F,487,295,698489071,7193,0 +43219,-+297+-+SS,557,697,849018239,7000,0 +43220,0.03+albo+wcale%21,460,704,699725436,9461,0 +43221,FP017,482,706,699605333,10069,0 +43222,ZZZ,463,705,8980651,7705,0 +43223,011.+Night+Raid,493,703,699684062,9305,0 +43224,Wioska+barbarzy%C5%84ska,380,333,699660539,4877,0 +43225,KR%C3%93L+PAPI+WIELKI,652,642,698191218,9943,0 +43226,Loca+2,643,645,699778867,8130,0 +43227,%2A210%2A,331,389,699273451,10211,0 +43228,New+World,452,695,698152377,9359,4 +43229,Pontypridd,672,607,1205898,5056,0 +43230,Wioska+barbarzy%C5%84ska,382,333,699660539,9807,0 +43231,%3F%3F%3F,480,300,698489071,10160,0 +43232,Osada+koczownik%C3%B3w,621,668,848909464,8320,7 +43234,Wioska+barbarzy%C5%84ska,706,470,699574408,8124,0 +43235,%2136+65+Cacica,655,368,698361257,10093,0 +43236,FAKE+OR+OFF,407,315,698231772,9824,0 +43237,Zagroda5,601,672,6528152,6719,0 +43238,FAKE+OR+OFF,413,314,698231772,9830,0 +43239,009a,311,424,8259895,3683,0 +43240,Sernik+z+Andzynkami,704,501,699126484,9806,0 +43241,Wioska+barbarzy%C5%84ska,653,371,7340529,8673,0 +43242,ZA16,313,416,356642,9835,7 +43243,011+plejor,615,672,699346280,10019,0 +43244,0100,704,496,699429153,10301,0 +43245,Wioska+barbarzy%C5%84ska,499,700,7976264,9941,0 +43246,Kabaty,360,353,849099434,4664,0 +43248,Rogatki3,311,562,699265922,5105,0 +43249,065,634,350,849010255,2073,0 +43251,%4013%40,403,327,699483429,5642,0 +43253,Wioska+barbarzy%C5%84ska,700,478,699429153,9045,0 +43255,O061,335,626,272173,9871,0 +43256,117+invidia,504,705,849093426,9957,0 +43257,0041+Qukaqu.,445,698,849037407,10478,0 +43258,Puerto+Riko,518,296,3298902,3798,0 +43259,BRZEG+JORDANU+%7C+011,698,519,9228039,3557,0 +43260,Wioska+barbarzy%C5%84ska,385,328,3698627,9782,0 +43262,A%23010,707,490,2065730,9797,0 +43263,Dream+on,298,484,698962117,8289,0 +43264,Wioska+barbarzy%C5%84ska,591,311,828637,10047,0 +43265,bucksbarzy%C5%84skamiiiru,321,398,848955783,10971,0 +43266,Jan+felek1987+Ost+K,696,458,879782,9611,0 +43267,Kasztelan,301,480,849095376,9801,0 +43268,Tego+typu%21,707,503,8418489,9746,0 +43269,KR%C3%93L+PAPI+WIELKI,666,623,698191218,10000,2 +43272,0102,700,503,699429153,9889,0 +43273,007,705,523,7085502,9799,0 +43274,0048+Utopia2,439,692,849037407,10478,0 +43275,Wioska+barbarzy%C5%84ska,620,664,6818593,4188,0 +43276,Wioska+barbarzy%C5%84ska,707,525,2135129,2807,0 +43277,009+BORA7,609,671,699346280,10019,0 +43278,Wied%C5%BAma+-+Z+005,304,434,9239515,5500,0 +43279,Taran,329,605,6180190,9976,0 +43280,KONFA+TO+MARKA%2C+NARKA,297,454,698152377,10290,0 +43281,24.+Kerack,698,549,8976313,8845,0 +43282,Wioska+017,673,608,7999103,7523,0 +43283,042,449,301,2502956,10019,0 +43284,z+000+Wioska+11+tttttttt,351,360,3909522,7713,0 +43285,psycha+sitting,413,680,699736927,10178,0 +43287,Wioska+barbarzy%C5%84ska,352,643,698908184,5114,0 +43289,Wioska+barbarzy%C5%84ska,675,601,8224678,4003,0 +43290,Taran,324,612,6180190,9976,0 +43292,psycha+sitting,413,681,699736927,10178,0 +43293,064,634,345,849010255,10019,0 +43294,Wioska+brabarzy%C5%84c%C3%B3w,674,601,8224678,6513,0 +43296,034,304,561,849098688,4926,0 +43297,XDX,608,325,699098531,10290,0 +43298,%2136+75+Brasca,658,370,698361257,7572,0 +43301,bucksbarzy%C5%84skamiiiru,334,389,848955783,5306,0 +43306,%2AINTERTWINED%2A,515,705,698704189,2998,0 +43307,Wioska+barbarzy%C5%84ska,386,671,6948793,6739,0 +43308,Lipnica,457,297,849101116,7189,0 +43310,Wioska+Zorro+001,676,595,849080702,12154,0 +43311,Dream+on,299,495,698962117,9530,0 +43312,z+Wioska+3,358,361,3909522,8429,3 +43314,Zagroda2,605,674,6528152,8325,0 +43315,Wioska+barbarzy%C5%84ska,392,672,6948793,6985,0 +43316,MojeDnoToWaszSzczyt,501,293,9299539,9964,0 +43318,FAKE+OR+OFF,414,312,698231772,9812,0 +43319,O059,339,628,272173,9819,0 +43320,Taran,332,609,6180190,10433,0 +43321,068.+Wioska+barbarzy%C5%84ska,697,462,7494497,8328,0 +43322,Dream+on,300,503,698962117,3908,0 +43323,0056,451,701,849037407,10795,0 +43324,262...Gulden,457,298,6920960,5317,0 +43325,%5B0209%5D,299,498,8630972,7494,0 +43326,Wioska+barbarzy%C5%84ska,584,313,828637,10475,0 +43328,S003,600,672,8627359,9400,0 +43329,020.Stradi,428,308,698365960,10444,0 +43331,Bessa+011,640,653,848987051,10221,0 +43332,New+World,431,693,698152377,10294,0 +43334,Wioska+barbarzy%C5%84ska,656,372,0,2041,0 +43335,D023,561,305,699299123,4875,0 +43336,003+The+Silver+Tower,353,364,7462660,10201,0 +43337,047+invidia,541,703,849093426,10237,0 +43339,C0259,304,548,8841266,10362,0 +43340,Nowa+54,684,577,698702991,7369,0 +43341,Didek,679,586,849070946,6545,0 +43342,Taran,331,607,6180190,10020,0 +43343,psycha+sitting,398,675,699736927,6504,0 +43344,WS+01,698,439,699524891,9720,4 +43346,XDX,607,325,699098531,10292,0 +43348,Spec3,545,298,699569800,4074,0 +43349,037.xxx,490,687,8612358,3304,0 +43350,Wioska+barbarzy%C5%84ska,676,393,698768565,3979,0 +43351,002,698,511,699150527,10164,1 +43352,21+barbarzy%C5%84ska...,299,465,849018442,9440,0 +43353,0019+Wioska+barbarzy%C5%84ska,440,698,849037407,10072,0 +43354,Dream+on,299,490,698962117,9505,0 +43355,%230293+Don+Noobas,467,294,1238300,1976,0 +43356,A000,467,706,699725436,9818,0 +43357,Grab%C3%B3wek,480,297,698848373,2519,0 +43358,Dream+on,297,496,698962117,9744,0 +43359,043+Chora%C5%BCy+Torpeda,598,678,699346280,9452,0 +43360,Arczi997+06,296,519,849055181,1960,0 +43362,Dream+on,300,488,698962117,7062,0 +43363,0011,416,319,2321390,8753,0 +43364,002+Hamburg,409,322,698231772,10495,0 +43365,Wioska+DZ4L,441,443,9291984,4060,0 +43367,C0345,298,540,8841266,2433,0 +43369,TWIERDZA+.%3A035%3A.,691,575,7154207,10225,0 +43372,AAA,539,301,1006847,9712,0 +43373,007,703,494,942959,9522,0 +43374,.achim.,477,293,6936607,5745,0 +43375,003,413,689,849099876,10495,2 +43376,041.+Zach%C3%B3d,463,697,848928624,2631,0 +43377,eee,368,659,699269923,9891,0 +43378,Didi,687,581,849070946,9609,0 +43379,I103,698,451,699722599,7439,0 +43380,0010,352,355,699644448,2527,0 +43381,-+279+-+SS,553,699,8501514,4466,0 +43382,FFF,661,374,8675636,9075,0 +43383,%23K66+0004,611,673,699728159,6338,0 +43384,Wiejska3,608,667,6528152,8796,0 +43385,Jedlanka+Stara,568,697,698723158,5826,0 +43386,O127,330,618,272173,6567,0 +43387,Dream+on,298,506,698962117,9747,0 +43388,002%23+Gwen,485,700,3933666,10093,0 +43389,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,494,705,8980651,9372,0 +43390,Psycho+to+Marka%2C+Narka+%21,313,574,849040142,6564,0 +43391,New+World,469,689,698152377,10132,0 +43392,C0222,298,544,8841266,10362,0 +43393,150,401,683,849099876,8787,0 +43394,062,638,352,849010255,2427,0 +43395,ZZZ,534,699,8980651,9761,0 +43396,bucksbarzy%C5%84skamiiiru,333,380,848955783,2637,0 +43397,034,419,688,849099876,10495,0 +43398,02.TWICE,686,409,9180206,7042,5 +43399,%23K66+0009,613,675,699728159,6351,0 +43400,Dream+on,297,490,698962117,9588,0 +43402,-+205+-+SS,545,698,849018239,6957,0 +43403,016+Wioska+barbarzy%C5%84ska,603,680,699346280,10160,0 +43404,023,658,380,698635863,8469,0 +43405,016.+Far+far+away,500,708,848928624,10273,0 +43406,FP034,473,706,699605333,9320,0 +43407,merhet,576,686,698215322,5526,0 +43408,bucksbarzy%C5%84skamiiiru,328,383,848955783,2961,0 +43409,CALL+1071,658,627,699784536,10495,0 +43410,24.+Wioska+Raukodel,648,360,9320272,6153,0 +43411,KR%C3%93L+PAPI+WIELKI,713,516,698191218,6505,0 +43412,Wioska+barbarzy%C5%84ska,581,314,828637,10478,0 +43413,%3F%3F%3F%3F,466,296,698489071,5071,0 +43414,003,299,550,849098688,7374,0 +43415,BRICKLEBERRY,557,304,699072129,4168,0 +43416,Wioska+barbarzy%C5%84ska,580,314,828637,10476,4 +43418,Wioska+barbarzy%C5%84ska,696,540,848946700,3949,0 +43419,C072,378,659,699383279,5708,0 +43420,%C5%9Ar%C3%B3dmie%C5%9Bcie,587,679,849100612,2449,0 +43421,036.+Howerla,702,552,1601917,7524,0 +43422,wiocha,618,664,848909464,10242,0 +43423,KHORINIS+03,371,660,849099924,1625,0 +43424,Didek,681,583,849070946,1944,0 +43425,XDX,599,317,699098531,7044,0 +43426,Wioska+barbarzy%C5%84ska,645,354,1715091,2560,0 +43428,%5B0094%5D,443,307,8630972,10495,0 +43429,Wyzima,333,375,7462660,5780,0 +43430,bucksbarzy%C5%84skamiiiru,328,392,848955783,10971,5 +43431,Wioska+4,337,375,7462660,7340,0 +43432,XDX,605,327,699098531,9618,0 +43433,%5B0105%5D,445,305,8630972,10495,0 +43435,Wioska+083,677,605,848971079,8299,0 +43436,%2A02+GAWRA%2A,311,429,2415972,8797,6 +43437,ZA06,319,407,356642,9835,0 +43438,FP018,475,703,699605333,10393,0 +43439,Wioska+barbarzy%C5%84ska,371,656,699269923,9667,0 +43441,C0219,294,531,8841266,7713,0 +43443,036,306,544,9280477,6222,0 +43444,004.+Marzyciel+Shrek,465,494,698290577,8264,0 +43445,B%23019,700,453,2065730,9797,0 +43447,%2136+76+Marginea,661,371,698361257,9400,0 +43448,Ob+Konfederacja,423,314,848915730,3229,0 +43449,Wioska+Wiki+2,524,700,849100354,12154,0 +43450,Taran,332,610,6180190,9956,0 +43451,006.+Wioska+barbarzy%C5%84ska,346,636,698908184,9804,0 +43452,%7E078.,497,699,7139820,5549,0 +43453,038.+Auriga,506,596,699703642,9471,0 +43455,ZZZ,458,703,8980651,4140,0 +43456,EO+EO,300,521,699697558,10083,8 +43457,028+Lyria,467,676,699834004,6763,0 +43458,New+World,437,699,698152377,10294,0 +43459,Taran,331,613,6180190,9956,0 +43460,Wioska+Pawlo101,637,355,848973715,5626,0 +43461,Wioska+barbarzy%C5%84ska,696,539,848946700,6134,0 +43462,bucksbarzy%C5%84skamiiiru,316,398,848955783,8964,0 +43463,%23%23%23025%23%23%23,589,680,698285444,10495,0 +43465,Wioska+barbarzy%C5%84ska,380,331,3698627,10069,0 +43466,Taran,321,603,6180190,9130,0 +43468,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,494,708,8980651,5025,0 +43469,Haiti,509,295,699208929,10067,0 +43470,Wioska+barbarzy%C5%84ska,379,669,699269923,9000,0 +43471,0316,566,688,698659980,9525,0 +43472,0097,674,396,698416970,8068,0 +43473,Dream+on,299,507,698962117,9740,0 +43474,%23%23%23026%23%23%23,599,682,698285444,10495,0 +43475,Dream+on,293,483,698962117,9489,0 +43476,Wow17,362,355,699730714,2995,0 +43477,Taran,329,614,6180190,9968,0 +43478,Wioska+barbarzy%C5%84ska,517,296,7758085,9734,0 +43479,EO+EO,293,501,699697558,11078,3 +43481,Wioska+krumlow+4,597,318,699098531,2774,0 +43482,%5B0139%5D,459,298,8630972,9122,0 +43483,Wioska+barbarzy%C5%84ska,662,625,698191218,1886,0 +43484,Wioska+barbarzy%C5%84ska,358,348,849027025,5936,0 +43485,A05,700,558,848995478,11550,4 +43486,Gattacka,690,432,699298370,8651,0 +43487,Wioska+barbarzy%C5%84ska,376,333,3698627,9793,0 +43489,%3D0009%3D,405,317,698231772,9822,0 +43490,050.+Korab,698,551,1601917,6723,0 +43491,Wioska+barbarzy%C5%84ska,577,315,0,1419,0 +43492,A000,469,700,699725436,9283,0 +43493,a+mo%C5%BCe+off+%3F+%3A%29,676,407,698768565,5009,0 +43494,Wioska+barbarzy%C5%84ska,692,569,7038651,3692,0 +43495,013%23+Gamora,512,704,3933666,7660,0 +43496,15+Ca%C5%84ada,378,658,698837993,1232,0 +43497,Wioska+barbarzy%C5%84ska,352,353,849027025,7650,0 +43498,monetki+E,674,402,698768565,10205,4 +43499,Wioska+Turystyczna+002,705,479,7588382,9828,0 +43500,026,704,505,699150527,8925,0 +43501,Wioska+barbarzy%C5%84ska,588,311,828637,10479,0 +43502,Tzarski707,642,649,699783063,7652,0 +43503,a+mo%C5%BCe+off+%3F+%3A%29,678,402,698768565,6538,0 +43504,010.Stradi,436,302,698365960,10495,0 +43505,005.+Cintra,665,375,849086491,10052,1 +43506,A+060,363,649,6948793,10495,0 +43507,Na+Kra%C5%84cu+%C5%9Awiata+013,636,351,9291984,6181,0 +43508,-+274+-+SS,554,700,849018239,7178,0 +43509,%2AINTERTWINED%2A,503,699,698704189,8337,0 +43510,Didek,678,600,849070946,1264,0 +43511,Little+Pony,690,437,1715091,8278,0 +43512,a+mo%C5%BCe+off+%3F+%3A%29,672,397,698768565,5629,0 +43513,007,303,551,5997814,8375,0 +43514,026,404,681,849099876,10495,0 +43515,B%23021,699,449,2065730,9797,0 +43516,044.+Night+Raid,488,701,699684062,7889,0 +43517,.achim.,489,296,6936607,4625,0 +43518,027.+Brauer92,670,381,2873154,10237,8 +43520,%3F%3F%3F%3F,478,299,698489071,9135,0 +43521,0431,546,676,698659980,10083,0 +43522,Zbij%C3%B3w+Ma%C5%82y,570,687,698723158,6546,0 +43523,268...gulden,458,300,6920960,8366,0 +43524,wiocha,618,662,848909464,10319,0 +43525,270...gulden,463,304,6920960,7237,0 +43526,238,398,320,7271812,2194,0 +43527,C0180,302,533,8841266,10362,0 +43528,Wioska+barbarzy%C5%84ska,517,294,7758085,8979,0 +43529,Kotarwice,570,691,698723158,5181,0 +43530,Komandos,630,659,7976264,7560,0 +43531,S008,683,586,8428196,6648,0 +43532,XXXX,561,303,849054951,10068,0 +43533,23+barbarzy%C5%84ska..,300,444,849018442,9420,0 +43534,aaaa,391,672,6948793,9899,2 +43535,06-oss,677,608,848921861,9302,0 +43536,Obrze%C5%BCe,575,692,7589468,8822,0 +43538,O038,342,627,272173,9885,0 +43539,%5B0163%5D,448,307,8630972,8506,0 +43540,009,640,353,849086491,3628,0 +43541,z181_19,306,442,393668,9950,0 +43542,Bessa+023,635,652,848987051,9834,0 +43543,Lipno,665,387,699491076,5676,0 +43544,Gattacka,690,429,699298370,8838,0 +43545,EO+EO,297,510,699697558,7881,0 +43546,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,492,712,8980651,9741,0 +43547,008,299,554,9280477,9976,0 +43548,%230224+Segadorr+dar,442,303,1238300,10178,6 +43549,komandos,632,665,7976264,9235,0 +43550,O009,341,633,272173,9955,0 +43551,Wioska+barbarzy%C5%84ska,628,337,699580120,5065,0 +43552,ZZZ,428,693,8980651,9012,0 +43553,FENDI,304,461,699794765,4495,0 +43554,0020+Wioska+barbarzy%C5%84ska,441,699,849037407,9540,0 +43555,03.+Na+garbarach+korek,485,706,849092769,9548,0 +43556,Wioska+barbarzy%C5%84ska,704,531,848946700,2634,0 +43557,Wioska+barbarzy%C5%84ska,535,295,698350371,4721,0 +43558,Kamizela,355,638,272173,5059,0 +43559,036,405,681,849099876,10495,0 +43560,024,668,383,698635863,7610,0 +43561,Wioska+barbarzy%C5%84ska,367,654,699269923,9668,0 +43562,052.,704,462,849094609,6230,0 +43563,Wioska+barbarzy%C5%84ska,620,338,0,1791,0 +43564,psycha+sitting,405,680,699736927,10311,7 +43565,024.Stradi,436,301,698365960,10495,0 +43566,Na+Kra%C5%84cu+%C5%9Awiata+012,634,352,9291984,4431,0 +43567,%5B0119%5D,442,304,8630972,10043,0 +43568,Taran,326,615,6180190,9960,0 +43569,%5B0180%5D,290,496,8630972,7977,0 +43570,%2A222%2A,334,384,699273451,10211,0 +43571,022,305,566,849098688,5847,0 +43572,Wyspa_38,512,699,2585846,9638,0 +43573,0117,709,502,699429153,9825,0 +43574,EO+EO,295,520,699697558,10495,0 +43575,KR%C3%93L+PAPI+WIELKI,653,632,698191218,10000,9 +43576,B10,703,548,848995478,11130,0 +43577,Wioska+barbarzy%C5%84ska,700,544,848946700,6363,0 +43578,Bior%C4%85+pa%C5%82y+co+nie+spa%C5%82y...,622,406,849050191,5703,0 +43579,%5B194%5D,677,389,8000875,8845,0 +43580,a+mo%C5%BCe+off+%3F+%3A%29,675,400,698768565,5677,0 +43581,MojeSzczytToTw%C3%B3jDno,595,318,828637,8056,0 +43582,Wioska+Zorro+007,680,599,849080702,10971,3 +43583,Wioska+barbarzy%C5%84ska,682,410,699598425,6495,0 +43584,Osada+koczownik%C3%B3w,553,695,7581876,10019,5 +43585,Kentin+ufam+Tobie,401,492,699783765,10000,0 +43587,010,697,563,301602,8955,0 +43588,%2136+65+Humor,659,367,698361257,9846,0 +43589,AAA,541,298,1006847,9976,7 +43590,0042+Qukaqu.,449,696,849037407,10474,0 +43591,Bia%C5%82ka,571,694,698723158,11130,0 +43592,0009+Wioska+barbarzy%C5%84ska,443,693,849037407,10069,0 +43593,%23%23%23004%23%23%23,588,690,698285444,10495,4 +43594,Wioska+barbarzy%C5%84ska,702,453,699150527,8134,0 +43595,004,305,565,849097898,6215,0 +43597,049+invidia,548,702,849093426,10104,0 +43598,C004,472,698,8954402,9665,0 +43599,Mniejsze+z%C5%82o+0082,470,293,699794765,4656,0 +43601,Wioska+Turystyczna+003,708,478,7588382,8941,0 +43602,Psycho+to+Marka%2C+Narka+%21,305,573,849040142,3226,0 +43603,Osada+koczownik%C3%B3w,318,598,7183372,10474,8 +43604,181+izo,299,449,634848,11550,0 +43605,XDX,600,318,699098531,11164,3 +43606,XXXX,567,307,849054951,10311,0 +43607,Wioska+barbarzy%C5%84ska,532,296,699818726,5044,0 +43608,Wioska+barbarzy%C5%84ska,696,433,1715091,9761,0 +43609,PIROTECHNIK+003,360,347,849101083,8072,0 +43610,087+invidia,517,701,849093426,8255,0 +43611,Wioska+barbarzy%C5%84ska,694,436,1715091,8250,0 +43612,z181_25,306,444,393668,8884,0 +43613,TWIERDZA+.%3A005%3A.,692,580,7154207,10119,2 +43614,KR%C3%93L+PAPI+WIELKI,628,657,698191218,7875,0 +43616,New+WorldA,294,525,849084005,6449,0 +43617,012,389,327,8153941,3695,0 +43618,BRICKLEBERRY,555,305,699072129,4792,0 +43619,KR%C3%93L+PAPI+WIELKI,646,637,698191218,9933,0 +43620,Wioska+barbarzy%C5%84ska+2,309,582,699016994,9893,0 +43621,043,709,512,7085502,8751,0 +43622,TWIERDZA+.%3A056%3A.,689,576,7154207,9514,0 +43623,0028+Wioska+barbarzy%C5%84ska,444,697,849037407,10067,0 +43624,006,299,555,9280477,10311,1 +43626,C0210,297,533,8841266,10362,0 +43627,%23%23%23027%23%23%23,589,684,698285444,10495,0 +43629,C003,541,705,698599365,7433,0 +43630,%23%23%23085%23%23%23,579,690,698285444,10495,0 +43631,O080,337,626,272173,9887,0 +43632,009+Kaiserslautern,647,355,7340529,10654,9 +43633,%3F%3F%3F,484,300,698489071,10356,0 +43634,06.+Skellige,700,537,8976313,9828,0 +43635,014,300,554,9280477,9715,0 +43636,Wioska+barbarzy%C5%84ska,338,371,7462660,5080,0 +43637,TUUU,602,322,699098531,9629,0 +43638,%3F%3F%3F%3F,473,295,698489071,10671,0 +43639,C0190,303,532,8841266,8016,0 +43640,029,311,575,849098688,10160,0 +43641,Wioska+barbarzy%C5%84ska,377,333,3698627,9965,0 +43642,0070,369,337,848913037,6166,0 +43643,013+Wolfsschanze,610,353,849091899,6048,0 +43644,C0129,298,517,8841266,10148,0 +43645,Wioska+barbarzy%C5%84ska,617,668,6818593,8346,0 +43646,klops3,626,666,848909464,10319,0 +43647,-+157+-+SS,538,696,849018239,9307,0 +43648,Dream+on,294,491,698962117,9494,0 +43649,MojeDnoToWaszSzczyt,502,301,9299539,9732,0 +43650,Wioska+barbarzy%C5%84ska,703,470,699574408,8004,0 +43651,AAA,536,299,1006847,10154,2 +43652,002.+G%C3%B3rki+Ma%C5%82e,655,637,849100994,10438,0 +43653,AAA,551,305,1006847,6243,0 +43654,J%23014,573,333,2065730,9797,0 +43655,Z22,316,413,356642,9835,0 +43656,Dream+on,293,480,698962117,4506,0 +43657,208...segador,458,297,6920960,10877,0 +43658,Wioska+brabarzy%C5%84c%C3%B3w,673,601,8224678,4537,0 +43659,Wioska,359,346,849027025,9971,0 +43660,0038+Wioska+barbarzy%C5%84ska,445,697,849037407,9603,0 +43661,XDX,616,332,699098531,7051,0 +43662,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,498,709,8980651,9994,0 +43663,Wioska+barbarzy%C5%84ska,375,339,699660539,8144,0 +43664,019,707,511,699150527,7815,0 +43665,%3F%3F%3F%3F,472,295,698489071,6953,0 +43666,059.+Mount+Everest,701,556,1601917,8458,0 +43667,018S,478,698,848896948,9360,0 +43668,%23%23%23013%23%23%23,595,684,698285444,10495,0 +43670,121+invidia,505,707,849093426,9885,0 +43671,Szlachcic,496,477,699098531,9682,0 +43672,%5B156%5DSzcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,580,474,848985692,9877,0 +43673,Wioska+barbarzy%C5%84ska,702,542,848946700,6780,0 +43675,AAA,537,296,1006847,8132,0 +43676,025.,703,464,849094609,9752,0 +43677,%23%23%23086%23%23%23,582,686,698285444,10495,0 +43678,Cynowy+gr%C3%B3d,319,416,699377401,8445,0 +43679,New+World,427,692,698152377,10294,0 +43680,004,593,315,1767876,7950,0 +43681,Wioska+X08,294,468,698701911,2375,0 +43682,026,640,349,9148043,4050,0 +43683,bucksbarzy%C5%84skamiiiru,321,395,848955783,12154,0 +43684,%23%23%23087%23%23%23,593,677,698285444,10495,0 +43685,Wioska+116,691,582,848971079,1115,0 +43686,Wioska+barbarzy%C5%84ska,708,490,699429153,8591,0 +43687,Taran,323,602,6180190,8550,0 +43688,Wioska+barbarzy%C5%84ska,337,615,9199885,3466,0 +43689,O135,342,628,272173,9821,0 +43690,TWIERDZA+.%3A046%3A.,694,574,7154207,10225,0 +43691,Wioska+X12,295,468,698701911,6986,0 +43693,Aniela,528,705,699733501,9726,0 +43694,%23%23%23028%23%23%23,590,681,698285444,10495,0 +43695,TWIERDZA+.%3A042%3A.,693,563,7154207,10225,0 +43696,028,708,488,849091105,8192,5 +43697,bucksbarzy%C5%84skamiiiru,326,391,848955783,3655,0 +43698,psycha+sitting,408,680,699736927,10178,0 +43699,Bessa+015,637,657,848987051,10183,0 +43700,Wioska+barbarzy%C5%84ska,699,541,848946700,6270,0 +43701,Gibonowo,293,489,849100877,11347,2 +43702,%5B0115%5D,441,306,8630972,10160,0 +43703,051.+Kamerun,695,551,1601917,7344,0 +43704,116+invidia,505,709,849093426,9888,0 +43705,Wioska+barbarzy%C5%84ska,688,412,8675636,9126,0 +43706,Wioska+Zorro+021,676,593,849080702,4005,0 +43707,Wioska+Espel132,305,457,698630140,7265,0 +43708,XDX,594,322,699098531,5480,0 +43709,Szlachcic,380,339,698160606,8036,0 +43710,C064,376,657,699383279,5820,0 +43711,%23K66+0008,612,674,699728159,5332,0 +43712,Forteca%2A011%2A,532,698,1078121,3677,0 +43713,ZzZzZ+OdlotowoNAimprezie+Sylwka,694,571,699778867,12154,0 +43714,004.+Wioska+barbarzy%C5%84ska,345,636,698908184,9804,0 +43715,%23046%23,637,637,692803,9761,0 +43716,%23%23%23088%23%23%23,598,677,698285444,10495,0 +43717,037,421,686,849099876,10495,0 +43718,Wioska+barbarzy%C5%84ska,302,555,5997814,9741,0 +43719,062.+Manaslu,706,540,1601917,5134,0 +43721,004,300,466,848895676,2565,0 +43722,06.SHINee,688,418,9180206,7781,4 +43723,Z17,312,409,356642,9835,0 +43724,Gdynia,514,300,699208929,1838,0 +43725,061.+Monte+Cassino,704,534,1601917,5210,0 +43726,013,641,347,9291984,6415,0 +43727,Dream+on,302,498,698962117,9505,0 +43728,Wygwizdowa+005,636,655,698562644,10311,0 +43729,024.+Wioska+barbarzy%C5%84ska,347,639,698908184,6812,0 +43730,016,512,707,2293376,4047,0 +43731,Osada+koczownik%C3%B3w,382,329,699660539,10021,2 +43732,%230219+Segadorr+dar,451,304,1238300,10178,0 +43733,013Wigilijka,470,706,698620694,9716,0 +43734,034,308,570,849098688,9835,0 +43735,Wioska+barbarzy%C5%84ska,626,343,849062920,1701,0 +43736,Taran,330,607,6180190,9956,0 +43737,001,526,296,699208929,10469,0 +43738,New+World,418,692,698152377,10294,0 +43739,bucksbarzy%C5%84skamiiiru,333,381,848955783,2434,0 +43740,Kurnik,483,706,699603116,10231,0 +43742,025+Wioska+barbarzy%C5%84ska,603,677,699346280,9566,0 +43743,Wioska+zbrzeziu44,452,697,849098827,1651,0 +43744,Wioska+barbarzy%C5%84ska,701,481,699429153,7988,0 +43745,Wioska+barbarzy%C5%84ska,707,534,848946700,8466,0 +43746,Dukaj,354,635,272173,7814,0 +43747,Ciawar+Jaguar+X300,566,312,699072129,9222,0 +43749,AAA,534,301,1006847,7369,0 +43750,059-Mroczna+Osada,651,360,849035905,3021,0 +43751,%5B043%5D+Wioska+barbarzy%C5%84ska,686,426,849095068,9657,0 +43752,%5B0196%5D,295,500,8630972,9618,0 +43753,A+038,361,645,6948793,5618,0 +43755,010,313,591,6180190,7272,0 +43756,192,454,697,849099876,2256,0 +43757,Neonowy+gr%C3%B3d,316,419,699377401,3062,0 +43758,XXXX,562,306,849054951,10268,0 +43759,047.+Janikulum,699,547,1601917,8855,0 +43760,-+200+-+SS,533,698,849018239,7462,0 +43761,%23%23%23029%23%23%23,588,687,698285444,10495,0 +43762,Wioska+rosiu56,332,613,6180190,9821,0 +43763,bucksbarzy%C5%84skamiiiru,327,399,848955783,5514,0 +43764,Didi,684,590,849070946,10728,0 +43765,bucksbarzy%C5%84skamiiiru,337,381,848955783,2168,0 +43766,032.+ALFI,479,574,8539216,2006,0 +43767,Veracruz,626,335,849061374,9541,0 +43768,B03,699,551,848995478,9865,6 +43769,Ger6,708,520,2246711,4526,0 +43770,60+go%C5%9B%C4%872,296,474,849018442,8436,0 +43771,bucksbarzy%C5%84skamiiiru,320,399,848955783,10297,0 +43772,007,395,329,8153941,5834,0 +43773,Melon5,307,428,699659708,3177,0 +43774,071.+Wioska+barbarzy%C5%84ska,700,466,7494497,7619,0 +43775,klops3,625,667,848909464,10319,0 +43776,Osada+koczownik%C3%B3w,401,325,195249,3299,7 +43777,Wioska+barbarzy%C5%84ska,500,701,7976264,6207,0 +43778,060,666,384,698635863,4828,0 +43779,Wioska+barbarzy%C5%84ska,360,345,849027025,7028,0 +43780,045+sebaseba1991,619,668,699346280,10160,0 +43781,Wioska+barbarzy%C5%84ska,382,331,699660539,9857,0 +43782,Domi+3,698,475,849002796,8682,0 +43783,Z19,312,411,356642,9835,0 +43784,099+Isehara,696,445,7092442,6064,0 +43785,wioska,630,336,849102068,8957,0 +43786,ZA21,324,404,356642,9742,0 +43787,C0344,297,540,8841266,2081,0 +43788,A+048,357,639,272173,4595,0 +43789,Wioska+barbarzy%C5%84ska,503,705,7976264,4887,0 +43790,-+249+-+SS,551,699,849018239,6182,0 +43791,005,626,657,699872616,890,0 +43792,Wioska+barbarzy%C5%84ska,380,670,699269923,8136,0 +43793,Dream+on,297,505,698962117,9744,0 +43794,KR%C3%93L+PAPI+WIELKI,650,646,698191218,9561,0 +43795,%5B0116%5D,449,303,8630972,10375,7 +43797,Z11,314,407,356642,9835,0 +43798,Osada+koczownik%C3%B3w,552,694,7581876,9835,3 +43799,Otak,437,559,699443920,3360,0 +43800,0011,351,356,699644448,3261,0 +43801,0069,563,697,698659980,10252,1 +43802,049,634,348,849010255,3965,0 +43804,051+invidia,512,702,849093426,9618,0 +43805,Wioska+adrianh3,709,508,8418489,4009,0 +43806,025,671,379,698635863,9401,0 +43807,ZZZ,452,699,8980651,10130,0 +43808,C041,376,661,699383279,7919,0 +43809,C0143,316,535,8841266,10362,0 +43810,B012,521,302,699208929,7592,0 +43811,Wioska+barbarzy%C5%84ska,306,547,5997814,4350,0 +43812,013+tylko+farma,532,706,6116940,5275,0 +43813,Wioska+barbarzy%C5%84ska,627,335,0,2800,0 +43814,%2AW004,668,377,7758085,9861,0 +43815,AAA,545,304,1006847,7291,0 +43816,KR%C3%93L+PAPI+WIELKI,631,651,698191218,9366,0 +43817,Bessa+013,641,653,848987051,10221,7 +43818,wioska,633,339,849102068,4242,0 +43820,022,474,699,848896948,8624,0 +43821,MojeDnoToWaszSzczyt,490,293,9299539,9714,0 +43822,asd,621,331,8675636,9752,0 +43823,C0130,296,522,8841266,9895,0 +43824,XDX,603,324,699098531,9962,0 +43825,%3D0010%3D,400,318,698231772,9834,0 +43826,%2136+65+Stramtura,658,369,698361257,7650,0 +43827,%3F%3F%3F%3F,470,300,698489071,3753,0 +43828,San+Siro,662,623,849096631,11489,0 +43829,074.Stradi,439,306,698365960,9862,0 +43831,060.+Wioska+barbarzy%C5%84ska,700,470,7494497,7616,0 +43833,%2136+65+Iaz,657,362,698361257,6435,0 +43834,Wioska+barbarzy%C5%84ska,374,664,699269923,8853,0 +43835,005,354,353,849101205,6073,0 +43836,%3D0005%3D,402,321,698231772,9870,0 +43838,ZA22,312,414,356642,9835,0 +43839,008,701,496,942959,8058,0 +43840,Wioska+barbarzy%C5%84ska,703,506,699150527,9131,0 +43841,B%23020,704,452,2065730,9797,0 +43842,0113,705,502,699429153,9825,0 +43843,KR%C3%93L+PAPI+WIELKI,643,644,698191218,9590,0 +43844,B009+Tajna+Bro%C5%84+3xxx,706,467,113796,8915,0 +43845,EO+EO,294,520,699697558,10019,0 +43846,138+invidia,542,698,849093426,6058,0 +43847,Wioska+barbarzy%C5%84ska,373,337,3698627,10075,0 +43848,FP027,474,704,699605333,9470,0 +43849,026,669,385,698635863,9694,0 +43850,Wioska+barbarzy%C5%84ska,650,354,0,2915,0 +43851,081+invidia,521,700,849093426,7192,0 +43852,A+MOBIL+STOP,614,326,849061374,9797,3 +43853,KR%C3%93L+PAPI+WIELKI,647,637,698191218,6409,0 +43854,Wioska+barbarzy%C5%84ska,694,443,1715091,6821,0 +43855,Na+Kra%C5%84cu+%C5%9Awiata+015,640,345,9291984,3930,0 +43856,ZA19,320,408,356642,9835,0 +43857,Wioska+barbarzy%C5%84ska,305,553,5997814,7383,0 +43858,WB01,318,410,356642,5007,0 +43859,C104,365,647,699383279,9709,0 +43860,Wioska+chudyn,531,293,699818726,9753,0 +43861,Wioska+krumlow+8,598,320,699098531,2308,0 +43862,0.08+Brek%3F,467,701,699725436,9481,0 +43863,Wioska+barbarzy%C5%84ska,651,366,698361257,3887,0 +43865,060.+Mount+Blanc,695,549,1601917,7729,0 +43866,EO+EO,297,501,699697558,9258,0 +43867,017.Stradi,430,312,698365960,10495,0 +43869,psycha+sitting,398,679,699736927,6551,0 +43870,%23%23%23030%23%23%23,598,682,698285444,10495,0 +43871,017.,702,463,849094609,9835,3 +43872,036,642,354,9148043,8976,0 +43873,TWIERDZA+.%3A085%3A.,685,577,7154207,8992,0 +43874,018.+F+P%C5%81N,612,327,849061374,9754,0 +43875,tomek016+V,692,566,8811880,1009,0 +43876,Wioska+barbarzy%C5%84ska,393,679,0,652,0 +43877,Kolonia+003,388,666,699269923,7003,8 +43878,AAA,561,310,1006847,5623,0 +43879,S013,683,597,8428196,6990,0 +43880,XXXX,566,302,849054951,10132,8 +43881,Komandos+p%C3%B3%C5%BAniej,634,661,7976264,10322,0 +43882,%5B0104%5D,441,304,8630972,10495,0 +43883,027,675,385,698635863,9370,0 +43884,wioska,636,344,9291984,5913,0 +43885,EO+EO,292,523,699697558,10252,0 +43886,%23%23%23031%23%23%23,592,688,698285444,10495,0 +43887,005.+Soundscape,708,511,254937,9790,2 +43888,Wioska+barbarzy%C5%84ska,621,336,0,1534,0 +43889,%23%23%23032%23%23%23,589,685,698285444,10495,0 +43890,%2A206%2A,335,384,699273451,10211,0 +43891,103,310,566,849098688,4203,0 +43892,SZYBKA+ZMY%C5%81KA,629,656,699872616,8521,0 +43893,O043,342,622,272173,9870,0 +43894,014+G%C3%B3rki-O-G%C3%B3rki,661,631,849100994,8165,0 +43895,%3F%3F%3F%3F,474,293,698489071,6476,0 +43897,bucksbarzy%C5%84skamiiiru,329,390,848955783,6190,0 +43898,014+Wioska+barbarzy%C5%84ska,604,681,699346280,10053,0 +43899,Wyspa,380,662,698769107,2484,0 +43900,018,708,510,699150527,7933,0 +43901,Ba%C5%82uty,586,681,849100612,7013,0 +43902,%5B178%5D,678,604,8000875,6138,0 +43903,Wioska+barbarzy%C5%84ska,591,313,1767876,2404,0 +43904,BRICKLEBERRY,556,307,699072129,3023,0 +43905,ZOSTAJE,542,703,9016560,8669,0 +43906,Jan+Ost+skrajny+III,705,442,879782,5334,0 +43907,bucksbarzy%C5%84skamiiiru,326,389,848955783,5738,0 +43908,0319,562,698,698659980,8249,0 +43909,Wioska+barbarzy%C5%84ska,332,375,849027025,2422,0 +43910,%23%23%23089%23%23%23,597,678,698285444,10495,0 +43911,Rossberg,372,660,849100352,4619,0 +43912,Suppi,317,418,699856962,9549,5 +43913,So%C5%82tys+Wsi+Maciekp011,353,354,849027025,9761,0 +43914,TARAN,547,691,7860453,9835,0 +43915,Wioska+barbarzy%C5%84ska,697,562,8742874,3646,0 +43916,Zaplecze+Barba+024,366,343,699796330,5905,0 +43917,010,649,362,849086491,3900,0 +43918,024,302,565,849098688,10160,0 +43919,024,303,562,9280477,7644,0 +43920,bucksbarzy%C5%84skamiiiru,329,386,848955783,10130,1 +43921,1+LESTAT+SKI,346,355,6315553,5371,0 +43922,S006,681,596,8428196,6875,0 +43923,Wied%C5%BAma+-+Z+003,304,439,9239515,6210,0 +43924,Wioska+Zorro+010,678,590,849080702,6329,0 +43925,Wioska+barbarzy%C5%84ska,374,665,699269923,8717,0 +43926,Wioska+barbarzy%C5%84ska,538,704,8980651,5184,0 +43927,KR%C3%93L+PAPI+WIELKI,662,624,698191218,10000,0 +43928,ZzZzZ+Sylwek3,695,573,699778867,6939,0 +43929,Psycho+to+Marka%2C+Narka+%21,302,570,849040142,4629,0 +43930,C.028,705,482,9188016,4885,0 +43931,KR%C3%93L+PAPI+WIELKI,656,629,698191218,10000,0 +43932,Wioska+barbarzy%C5%84ska,592,311,828637,9140,0 +43933,Hope,672,380,1086351,4403,0 +43934,TWIERDZA+.%3A068%3A.,687,580,7154207,8133,0 +43935,001,586,314,1767876,10220,0 +43936,022+NAWRA,668,611,849048867,4486,0 +43937,TWIERDZA+.%3A077%3A.,685,579,7154207,9962,0 +43938,WB14,309,416,356642,3915,0 +43939,Komson,364,340,849027025,9761,0 +43940,KR%C3%93L+PAPI+WIELKI,653,631,698191218,10000,0 +43941,MojeDnoToWaszSzczyt,508,292,9299539,9967,0 +43942,EO+EO,298,520,699697558,8810,0 +43943,Taran,329,610,6180190,9955,0 +43944,%3F%3F%3F,483,301,698489071,10503,0 +43945,028,670,382,698635863,9622,0 +43946,077,395,681,849099876,9629,0 +43947,%23012.+Dance+With+My+Hands,435,690,848896948,9819,6 +43948,Kaborno,560,695,7581876,5636,0 +43949,008a,306,424,8259895,4459,0 +43951,Wioska+barbarzy%C5%84ska,382,672,699269923,9577,0 +43952,C0208,297,530,8841266,9897,0 +43953,Wioska+barbarzy%C5%84ska,356,348,849027025,5718,0 +43954,z+fryzjer81,348,361,3909522,8270,0 +43956,bucksbarzy%C5%84skamiiiru,327,385,848955783,2282,0 +43957,Mniejsze+z%C5%82o+0053,439,308,699794765,7576,0 +43959,KR%C3%93L+PAPI+WIELKI,663,621,698191218,10000,0 +43960,091+invidia,522,707,849093426,9194,0 +43961,Jan+May+City+K,692,433,879782,10533,0 +43962,XDX,611,332,699098531,8904,0 +43963,101,308,568,699736959,4238,0 +43964,263...Kaban,463,295,6920960,4234,0 +43965,DALEKO,529,703,699827112,9824,0 +43966,marmag81%2F0333,301,468,1096254,6307,0 +43967,Wioska,550,706,7860453,6359,0 +43968,002,294,537,848886200,5343,0 +43969,11.+Sodden,704,545,8976313,9477,0 +43970,KONFA+TO+MARKA%2C+NARKA,297,449,698152377,10291,0 +43972,0582,575,693,698659980,8927,0 +43974,O013,340,636,272173,9956,0 +43976,AAA,551,300,1006847,8282,0 +43977,001,438,301,699562874,8908,2 +43978,D014,557,300,699299123,4669,0 +43979,011,702,505,7418168,10019,0 +43980,A18,695,546,848995478,2495,0 +43981,Wioska+barbarzy%C5%84ska,575,312,828637,10495,0 +43983,Portland,510,299,699208929,4365,0 +43984,%230218+Segadorr+dar,454,303,1238300,10178,0 +43985,aaaa,389,673,6948793,9899,0 +43986,Wioska+barbarzy%C5%84ska+005,561,699,6870350,8267,0 +43987,052,637,348,849010255,4075,0 +43988,Wioska+barbarzy%C5%84ska+%28noomouse%29,381,665,698769107,2863,0 +43989,Domi+4,700,475,849002796,8986,0 +43991,140,396,683,849099876,10495,0 +43992,bucksbarzy%C5%84skamiiiru,326,397,848955783,5623,0 +43993,Wioska+barbarzy%C5%84ska,371,655,699269923,9666,0 +43994,0044+Qukaku.,457,698,849037407,10292,5 +43995,FP022,481,709,699605333,10122,0 +43996,Wioska+barbarzy%C5%84ska,692,435,1715091,6158,0 +43997,0035+Kasko14,448,697,849037407,10066,0 +43998,027,700,456,849031818,4415,0 +43999,Wioska+barbarzy%C5%84ska,578,315,828637,10474,0 +44000,Taran,325,612,6180190,9959,0 +44001,-+270+-+SS,556,700,849018239,6618,0 +44002,Szlachcic,616,473,698867446,9902,0 +44003,W22,685,417,699524362,2486,0 +44004,Wioska+barbarzy%C5%84ska,681,411,699598425,6813,0 +44005,Wioska+barbarzy%C5%84ska,338,375,7462660,5257,0 +44006,018.+Rembert%C3%B3w,702,475,7494497,10559,0 +44007,a+mo%C5%BCe+off+%3F+%3A%29,677,398,698768565,5895,0 +44008,002,645,652,849101148,8237,0 +44009,KR%C3%93L+PAPI+WIELKI,657,638,698191218,10000,0 +44010,008,422,686,849099876,10495,0 +44011,P%C3%B3%C5%82nocny+Bagdad,617,328,8847546,10311,0 +44012,Wioska+dudus1992,681,400,849095068,1577,0 +44013,Wioska+barbarzy%C5%84ska,375,664,699269923,8214,0 +44014,104+invidia,511,709,849093426,9745,0 +44015,XDX,594,314,699098531,5667,0 +44016,0006,354,356,699644448,4864,0 +44017,203,429,303,698365960,9749,0 +44019,Wioska+barbarzy%C5%84ska,699,525,7047342,10634,0 +44020,027,306,564,849098688,10160,5 +44022,Wioska+barbarzy%C5%84ska,326,599,7183372,7863,0 +44023,Wioska+barbarzy%C5%84ska,582,310,828637,11321,0 +44024,KR%C3%93L+PAPI+WIELKI,654,629,698191218,10000,0 +44025,MojeDnoToWaszSzczyt,491,296,9299539,9703,0 +44026,psycha+sitting,411,680,699736927,10311,0 +44027,ZZZZZ,659,629,698191218,10000,8 +44028,wioska,636,346,9291984,12154,0 +44029,O128,328,619,272173,8306,0 +44030,New+World,430,698,698152377,10295,0 +44031,Wioska+barbarzy%C5%84ska,375,665,699269923,9092,0 +44032,0084,683,397,698416970,9139,0 +44033,047.Stradi,427,306,698365960,10495,0 +44034,Z+0003+Wioska,348,358,3909522,10208,0 +44035,EO+EO,289,522,699697558,10636,0 +44036,011,696,559,301602,3276,0 +44037,030+Wioska+barbarzy%C5%84ska,602,679,699346280,9566,0 +44038,Z12,315,406,356642,9835,0 +44039,Siedziba+Komornika,359,611,849014147,8889,0 +44040,B017,518,300,699208929,6313,0 +44041,Didek,686,583,849070946,1870,0 +44042,Bessa+024,637,653,848987051,10220,0 +44043,004,421,306,699694284,8615,0 +44044,K35+-+%5B037%5D+Before+Land,583,308,699088769,4436,0 +44045,C042,376,662,699383279,9544,0 +44046,aaaa,390,672,6948793,9899,6 +44047,XDX,614,334,699098531,9019,0 +44048,Kurwidolek,423,310,849100399,8557,0 +44049,021+Wioska+barbarzy%C5%84ska,602,678,699346280,9224,0 +44050,KR%C3%93L+PAPI+WIELKI,667,623,698191218,10000,0 +44051,O066,341,622,272173,9868,0 +44052,043.Stradi,437,301,698365960,10495,0 +44053,048%7C%7C+Cygnus,457,706,849035525,4085,0 +44054,010,534,289,699208929,10474,0 +44055,z+Wioska+Ankosqqqqqqqqqqqqqqqqqq,354,361,3909522,10160,0 +44056,Wioska+barbarzy%C5%84ska,393,675,6948793,7554,0 +44057,073,396,681,849099876,10311,0 +44058,021.Stradi,429,308,698365960,10495,0 +44059,028,403,681,849099876,10495,0 +44060,Wioska+barbarzy%C5%84ska,705,512,254937,9355,0 +44061,a-9,678,610,848921861,10636,0 +44062,%23%23%23033%23%23%23,598,681,698285444,10495,0 +44063,24+barbarzy%C5%84ska..,299,445,849018442,9697,0 +44064,psycha+sitting,398,678,699736927,6524,0 +44065,Wioska+barbarzy%C5%84ska,646,357,849086491,3474,0 +44066,Taran,328,605,6180190,9956,0 +44067,TWIERDZA+.%3A016%3A.,688,582,7154207,10406,0 +44068,z+Elys1,347,360,3909522,6952,0 +44069,Wioska+barbarzy%C5%84ska,383,670,699269923,7895,0 +44070,Ursyn%C3%B3w,363,353,849099434,10035,0 +44071,%2AINTERTWINED%2A,515,708,698704189,6921,0 +44072,010.,323,599,7183372,10838,0 +44073,O145,352,647,272173,5788,0 +44074,%2136+65+Patrauti,654,365,698361257,8371,0 +44075,Wioska+barbarzy%C5%84ska,629,334,7555180,8446,0 +44076,012.+Night+Raid,493,709,699684062,8951,0 +44077,119,417,693,849099876,10252,0 +44078,007,358,350,849101205,6593,0 +44079,XDX,599,316,699098531,8887,0 +44080,023,404,685,849099876,10495,0 +44081,%2AINTERTWINED%2A%2A,510,701,698704189,9711,0 +44082,039,299,541,9280477,6015,0 +44083,S012,687,591,8428196,6224,0 +44084,064.+Nanga+Parbat,703,534,1601917,6467,0 +44086,0317,578,694,698659980,7576,0 +44087,063,634,343,849010255,9852,5 +44088,Wioska+barbarzy%C5%84ska,385,666,699269923,8199,0 +44089,Wioska+barbarzy%C5%84ska,701,555,17714,7665,0 +44092,.achim.,488,297,6936607,5449,0 +44093,FAKE+OR+OFF,406,314,698231772,9624,0 +44094,0007,358,356,699644448,4093,0 +44095,004,522,295,849088101,9972,5 +44096,025.+WiesioShowPl,689,465,7494497,10323,0 +44097,Wioska+barbarzy%C5%84ska,500,482,699098531,5804,0 +44098,C058,362,657,699383279,9949,0 +44099,KR%C3%93L+PAPI+WIELKI,652,633,698191218,9606,0 +44100,C0131,297,523,8841266,10452,0 +44101,FP007,482,702,699605333,10265,0 +44102,Burito,552,703,699443920,7121,0 +44103,008,297,547,849098688,10160,0 +44104,.achim.,487,293,6936607,9870,0 +44105,TWIERDZA+.%3A060%3A.,692,574,7154207,9432,0 +44106,Wioska+barbarzy%C5%84ska,306,554,5997814,5490,0 +44107,Wioska+barbarzy%C5%84ska,697,434,1715091,8162,0 +44108,Wioska+barbarzy%C5%84ska,374,337,3698627,9965,0 +44109,KR%C3%93L+PAPI+WIELKI,661,629,698191218,10000,0 +44110,085,409,688,849099876,9951,0 +44111,%5B058%5D+Wioska+barbarzy%C5%84ska,688,423,849095068,1600,0 +44112,027,418,685,849099876,10495,0 +44113,Wioska+barbarzy%C5%84ska,693,438,1715091,5673,0 +44114,-+260+-+SS,552,700,849018239,5178,0 +44115,Wioska+barbarzy%C5%84ska,531,300,7758085,9861,0 +44116,019.+Frutti+di+mare,331,378,849102092,3775,0 +44117,006.+Night+Raid,491,710,699684062,10003,0 +44118,%5B195%5D,678,390,8000875,7404,0 +44119,Osada+koczownik%C3%B3w,660,624,1900364,9195,4 +44120,P%C3%B3%C5%82nocny+Bagdad,611,321,8847546,9835,0 +44121,2..,645,352,849056744,2195,0 +44122,002+Wioska+barbarzy%C5%84ska,603,681,699346280,10019,0 +44123,Taran,330,608,6180190,9955,0 +44124,klops3,628,664,848909464,10319,0 +44125,z+0020+Wioska,344,368,3909522,10095,0 +44126,Z%C5%82oty+%C5%9Awit,573,308,699883079,6697,0 +44127,13+Ordowik,397,324,698231772,10040,1 +44128,New+World,429,690,698152377,10294,0 +44129,bucksbarzy%C5%84skamiiiru,332,390,848955783,2518,0 +44130,MojeDnoToWaszSzczyt,510,293,9299539,9958,0 +44131,New+World,429,693,698152377,10303,0 +44132,C0132,296,513,8841266,10452,0 +44133,034.+W%C5%82oc%C5%82awek,705,473,7494497,10273,0 +44134,133+invidia,503,704,849093426,8593,0 +44135,Wioska+dawszz2,294,529,849094688,4987,0 +44136,059,665,385,698635863,7046,0 +44138,0068+Wioska+barbarzy%C5%84ska,448,701,849037407,6980,0 +44139,D010,559,301,699299123,6870,0 +44140,O039,338,626,272173,9957,0 +44141,Wioska+X02,296,465,698701911,3891,0 +44142,Wioska+barbarzy%C5%84ska,511,296,8400975,1928,0 +44143,020,403,679,849099876,10495,0 +44144,z181_26,305,444,393668,8835,2 +44145,TUROWNIA,622,664,848909464,10319,0 +44146,029,650,357,698635863,7975,0 +44147,Rivendell,414,311,698231772,11874,0 +44148,EO+EO,296,499,699697558,7932,0 +44149,03.+Mediolan,705,534,848946700,10495,0 +44150,Genowefa,528,703,6116940,5054,0 +44151,Osada+koczownik%C3%B3w,358,345,849027025,9351,4 +44152,FAKE+OR+OFF,412,318,698231772,9828,0 +44153,069.+Wioska+barbarzy%C5%84ska,700,463,7494497,8443,0 +44154,A%23029,710,513,2065730,9797,0 +44155,Wioska+barbarzy%C5%84ska,334,375,849027025,3590,0 +44156,AAA,551,303,1006847,8699,0 +44157,Dream+on,295,492,698962117,9489,0 +44158,O085,337,624,272173,9814,0 +44159,O007,341,635,272173,9955,0 +44160,psycha+sitting,417,682,699736927,10178,0 +44161,Wioska+barbarzy%C5%84ska,508,703,698704189,6080,0 +44162,TUROWNIA,621,665,848909464,10319,0 +44163,...07+am,669,615,848921861,9343,0 +44164,Wioska+barbarzy%C5%84ska,394,674,6948793,6150,0 +44165,037.+Wioska+barbarzy%C5%84ska,704,476,7494497,9761,0 +44166,C0206,296,526,8841266,9267,0 +44167,006+ZO,528,294,699208929,10209,0 +44168,Dream+on,296,489,698962117,9486,0 +44169,205,429,306,698365960,8123,0 +44170,Wioska+barbarzy%C5%84ska,666,387,699491076,2985,0 +44171,Melon6,310,432,699659708,3480,0 +44172,O017,339,634,272173,9955,0 +44173,020.,623,669,699695167,5697,0 +44174,Wioska+09,690,591,849101162,5362,0 +44175,psycha+sitting,426,655,699736927,9568,0 +44176,Wioska+barbarzy%C5%84ska,380,667,699730998,1865,0 +44177,Bytow,487,291,698489071,6595,0 +44178,Osada+koczownik%C3%B3w,387,329,699660539,9968,6 +44179,033.+bbbarteqqq,699,466,7494497,10495,0 +44180,Wioska+barbarzy%C5%84ska,636,337,849005829,2764,0 +44181,Taran,329,615,6180190,9959,0 +44182,023,301,563,849098688,9835,0 +44183,CALL+1073,656,631,699784536,10311,0 +44184,KR%C3%93L+PAPI+WIELKI,654,630,698191218,10000,0 +44185,Wioska+barbarzy%C5%84ska,344,365,7462660,10000,0 +44186,Bessa+025,634,659,848987051,10226,0 +44187,%3D0011%3D,401,318,698231772,10146,0 +44188,Psycho+to+Marka%2C+Narka+%21,306,574,849040142,3233,0 +44189,G%C3%B3rnik+3+zydzew+0+%3B%29,603,573,8742874,9746,0 +44190,New+World,431,694,698152377,10303,0 +44191,Wioska+barbarzy%C5%84ska,697,440,1715091,9750,0 +44192,KR%C3%93L+PAPI+WIELKI,665,628,698191218,10000,0 +44193,Wioska+barbarzy%C5%84ska,629,661,848909464,8572,0 +44194,Parking,616,667,6528152,6617,0 +44195,222,423,304,698365960,5306,0 +44196,Wied%C5%BAma+-+Z+015,306,434,9239515,3049,0 +44197,O090,340,628,272173,9814,0 +44198,004,301,531,848886200,4271,0 +44199,185...L,394,319,6920960,5018,0 +44200,Dzik+9,303,439,8366045,8972,1 +44201,%23%23%23090%23%23%23,599,679,698285444,10495,0 +44202,Elo+Elo+10,306,575,699016994,5244,0 +44203,So%C5%82tys+Twojej+Wsi,359,345,849027025,9644,0 +44205,Wioska+barbarzy%C5%84ska,646,355,849086491,2090,0 +44206,O019,340,630,272173,9956,0 +44207,bucksbarzy%C5%84skamiiiru,329,395,848955783,10971,0 +44208,Wioska+barbarzy%C5%84ska,684,408,699598425,6827,0 +44209,11.+Grubo+by%C5%82o+ale+si%C4%99+sko%C5%84czy%C5%82o,557,299,849054951,9946,0 +44210,0101,705,500,699429153,10301,0 +44211,001+VLV,558,307,849026145,4414,0 +44212,O089,339,627,272173,9814,0 +44213,TWIERDZA+.%3A049%3A.,695,576,7154207,7851,0 +44214,bucksbarzy%C5%84skamiiiru,330,393,848955783,9603,0 +44215,257...Emerson,464,302,6920960,11312,0 +44216,STREFA+GAZY+%7C+004,706,474,9228039,9544,0 +44217,010,641,346,9291984,8003,0 +44218,Osada+koczownik%C3%B3w,660,621,1900364,8202,9 +44219,008+VWF+Wioska+barbarzy%C5%84ska,306,429,3108144,8998,0 +44220,035,454,302,2502956,10019,0 +44221,bucksbarzy%C5%84skamiiiru,321,399,848955783,10971,3 +44222,Dream+on,297,482,698962117,8289,0 +44223,10-oss,672,612,848921861,6910,0 +44224,Wioska+barbarzy%C5%84ska,643,350,1715091,2861,0 +44225,KR%C3%93L+PAPI+WIELKI,662,630,698191218,10000,0 +44227,MojeDnoToWaszSzczyt,503,292,9299539,9964,0 +44228,R+035+%7ETristram%7E,496,709,699195358,9390,0 +44230,Wioska+tyroschijska,699,438,848976034,9454,0 +44231,001,300,551,849098688,10795,0 +44232,KR%C3%93L+PAPI+WIELKI,669,624,698191218,10000,0 +44233,002,383,672,699269923,7350,0 +44234,O022,336,630,272173,9907,0 +44235,K34+x035,446,365,698364331,6912,0 +44236,001,304,549,849098628,12154,0 +44237,%3D0002%3D,401,316,698231772,9863,6 +44238,idziemy+dalej,533,711,6116940,9374,0 +44239,Wioska+barbarzy%C5%84ska,682,395,698768565,6663,0 +44240,Obrze%C5%BCe,577,694,7589468,8764,0 +44241,KR%C3%93L+PAPI+WIELKI,656,628,698191218,10000,0 +44242,Elo+Elo+16,305,575,699016994,4980,0 +44243,P%C3%B3%C5%82nocny+Bagdad,618,329,8847546,9835,0 +44244,Wioska+barbarzy%C5%84ska,355,349,849027025,6002,0 +44245,009+VWF+Wioska+razav,311,427,3108144,7828,0 +44247,030,674,389,698635863,9447,0 +44248,Darma+dla+zawodnika,321,597,6180190,3957,0 +44249,C0215,296,533,8841266,10107,0 +44250,New+World,431,695,698152377,10295,0 +44251,Wyspa,380,661,698769107,2706,0 +44252,KR%C3%93L+PAPI+WIELKI,664,626,698191218,10000,0 +44253,Wioska001,384,328,699660539,4994,0 +44254,Wioska+barbarzy%C5%84ska,459,697,8966820,8599,0 +44255,Wioska+barbarzy%C5%84ska,389,675,6948793,7536,0 +44256,B08,468,702,698652014,9670,0 +44257,0364,570,690,698659980,9457,0 +44258,EO+EO,290,500,699697558,9096,0 +44259,HAPERT,626,663,848909464,10319,0 +44260,019+Wioska+barbarzy%C5%84ska,601,678,699346280,10160,0 +44261,057+invidia,548,703,849093426,6088,0 +44262,Darma+dla+zawodnika,321,595,6180190,6798,0 +44263,Osada+koczownik%C3%B3w,344,364,7462660,10160,4 +44264,Wygwizdowa+009,638,651,698562644,5858,0 +44265,C.06+a+panicz+to+dok%C4%85d%3F,552,298,849026145,6830,0 +44266,FAKE+OR+OFF,404,315,698231772,9625,0 +44267,0029+Kasko14,446,693,849037407,9771,0 +44268,%2136+66+Horodnic+de+Sus,660,365,698361257,9347,0 +44269,Florencja,547,703,698723158,7042,0 +44270,Wioska+klez+022,309,565,698295651,3262,0 +44271,Grazula,681,396,699738350,9649,0 +44272,%23%23%23034%23%23%23,595,688,698285444,10495,0 +44273,009,700,491,942959,5895,0 +44274,psycha+sitting,397,673,699736927,6852,0 +44275,D012,354,640,272173,9818,0 +44276,Wioska+barbarzy%C5%84ska,386,670,6948793,2785,0 +44277,AAA,544,300,1006847,3360,0 +44278,Wioska+barbarzy%C5%84ska,412,310,698231772,4312,0 +44280,Wioska+barbarzy%C5%84ska,329,617,6180190,8361,0 +44281,Kagusiowo+8,300,440,849101268,3966,0 +44282,016,530,296,7758085,6713,0 +44283,New+World,428,692,698152377,10295,0 +44284,C.02+a+panicz+to+dok%C4%85d%3F,555,298,849026145,6554,0 +44285,AAA,551,296,1006847,8881,0 +44287,C0101,300,518,8841266,10362,0 +44288,XXXX,563,298,849054951,10068,0 +44289,New+World,436,692,698152377,10295,0 +44290,%3F%3F%3F,486,309,698489071,5907,0 +44291,Wioska+barbarzy%C5%84ska,705,531,848946700,4025,0 +44292,Daleko,565,305,849098136,9243,0 +44293,%3F%3F%3F%3F,488,293,698489071,6300,0 +44294,-+235+-+SS,536,685,849018239,8631,0 +44295,033+Wioska+barbarzy%C5%84ska,602,682,699346280,10053,0 +44296,C.017,708,482,9188016,4680,0 +44297,025%23+Samantha,449,698,3933666,5571,0 +44298,KR%C3%93L+PAPI+WIELKI,656,637,698191218,7062,0 +44299,0032+Kasko14,450,696,849037407,10000,0 +44300,Wioska+Koticzak,346,356,699841959,3627,0 +44301,164,416,693,849099876,9279,0 +44302,Taran,330,611,6180190,9955,0 +44303,tomek016+II,690,567,8811880,977,0 +44304,Wioska+barbarzy%C5%84ska,535,301,698350371,3061,0 +44305,%2136+66+Gura+Humorului,663,369,698361257,9860,0 +44306,Architekci+Plac%C3%B3w+Boju,344,549,8004076,9880,0 +44307,006,297,551,849098688,10068,0 +44308,bucksbarzy%C5%84skamiiiru,327,397,848955783,6853,0 +44309,Szlachcic%3ATaran,615,325,698241117,8036,0 +44310,Wioska+barbarzy%C5%84ska,562,699,6870350,9444,0 +44311,001,410,684,849099876,10495,0 +44314,wioska,631,340,849102068,3901,0 +44315,Wygwizdowa+010,627,656,698562644,5958,0 +44316,071.,314,582,3475079,2717,0 +44317,Wioska+barbarzy%C5%84ska,692,586,7154207,2672,0 +44319,C011,371,667,699383279,9845,0 +44320,Wioska+barbarzy%C5%84ska,704,523,1895081,3495,0 +44321,O018,337,630,272173,9956,0 +44322,TWIERDZA+.%3A055%3A.,686,575,7154207,8633,0 +44323,Wioska+Frejas933,303,553,5997814,8903,0 +44325,080,394,682,849099876,9643,0 +44326,Psycho+to+Marka%2C+Narka+%21,315,579,849040142,8558,8 +44327,bucksbarzy%C5%84skamiiiru,331,388,848955783,6442,0 +44328,Argonowy+gr%C3%B3d,315,419,699377401,4953,0 +44329,%5B0225%5D+xxx,290,506,8630972,6229,0 +44330,Wyspa_52,497,701,2585846,5595,0 +44331,030,643,348,9148043,2883,0 +44333,Wioska+barbarzy%C5%84ska,336,377,7462660,3088,0 +44334,005%3AWioska+Florson1916,377,334,8772425,10139,0 +44336,Wioska+bravoska,700,439,848976034,2765,0 +44337,Wioska+barbarzy%C5%84ska,580,309,828637,10474,0 +44338,Bessa+026,635,653,848987051,10284,0 +44339,%5B0173%5D,289,493,8630972,8996,0 +44340,Z.08,696,576,699737356,3975,0 +44341,.achim.,483,293,6936607,7461,7 +44342,bucksbarzy%C5%84skamiiiru,334,380,848955783,10971,0 +44343,Wioska+barbarzy%C5%84ska,709,490,699429153,6393,0 +44344,Wioska+23,680,592,849101162,1912,0 +44345,016,708,508,699150527,9486,0 +44346,Wioska+barbarzy%C5%84ska,585,318,828637,10291,0 +44347,.achim.,478,290,6936607,7008,0 +44348,022.Stradi,426,306,698365960,10495,0 +44349,bucksbarzy%C5%84skamiiiru,334,381,848955783,2708,0 +44350,Wyspa_50,499,701,2585846,9638,0 +44351,Winterhome.002,500,295,848918380,10178,6 +44352,060,615,586,698786826,9120,0 +44353,%2136+66+Voronet,661,366,698361257,9600,0 +44354,D.029,382,663,849088243,3215,0 +44355,201,369,662,699269923,9036,0 +44356,%3F%3F%3F%3F,489,291,698489071,9564,0 +44357,017Moment,457,703,698620694,3689,0 +44358,AAA,544,296,1006847,6517,0 +44359,AAA,322,604,6180190,10055,0 +44360,002,408,689,849099876,10495,0 +44361,Wioska+barbarzy%C5%84ska,331,620,272173,5776,0 +44362,AlaKlaudia3,382,326,848966521,3787,0 +44363,psycha+sitting,400,676,699736927,9380,0 +44364,Wioska+brabarzy%C5%84c%C3%B3w,673,602,8224678,7254,0 +44365,0337,561,696,698659980,9098,0 +44366,%2A023,667,371,7758085,9861,0 +44367,0148,389,679,7085510,4519,0 +44368,066.+hehehe4,703,457,7494497,10247,0 +44369,O054,336,626,272173,9871,0 +44370,Taran,327,604,6180190,10167,0 +44371,027%23+Jadzia,450,701,3933666,2596,0 +44372,004,699,558,301602,7930,0 +44373,TWIERDZA+.%3A074%3A.,685,587,7154207,8957,0 +44374,KR%C3%93L+PAPI+WIELKI,662,633,698191218,10000,0 +44375,Wioska+barbarzy%C5%84ska,345,366,7462660,10085,0 +44376,-+278+-+SS,552,702,849018239,7138,0 +44377,ZZ02,310,410,356642,9367,0 +44378,KONFA+TO+MARKA%2C+NARKA,298,456,698152377,10292,3 +44379,O125,333,621,272173,9728,0 +44380,Wioska+barbarzy%C5%84ska,293,516,849101647,3484,0 +44381,007,529,293,699208929,10242,0 +44382,008,711,526,7085502,9726,0 +44383,0021,396,318,2321390,4176,0 +44384,Wioska+barbarzy%C5%84ska,474,298,699191455,2955,0 +44385,a+mo%C5%BCe+off+%3F+%3A%29,678,399,698768565,4856,0 +44386,Wioska+barbarzy%C5%84ska,651,358,0,2423,0 +44388,Taran,314,598,6180190,5858,0 +44389,KR%C3%93L+PAPI+WIELKI,664,622,698191218,10000,0 +44390,EO+EO,302,523,699697558,10083,0 +44391,...01+am,673,613,848921861,10495,0 +44392,Dream+on,297,493,698962117,9497,0 +44393,Zaplecze+Barba+018,373,341,699796330,7465,0 +44394,%5B0210%5D,298,497,8630972,7448,0 +44395,Sahara,371,345,849068108,5286,0 +44396,O012,341,634,272173,9956,0 +44397,070.+Wioska+barbarzy%C5%84ska,699,462,7494497,8263,0 +44399,A+053,361,647,6948793,10232,0 +44401,Wioska+barbarzy%C5%84ska,295,524,7530708,3515,0 +44402,psycha+sitting,408,679,699736927,4129,0 +44403,Ranczo3,303,450,699706955,7071,0 +44404,011,342,386,848945529,1426,0 +44405,S004,683,590,8428196,7394,0 +44406,Na+SsSskraju,300,557,1536625,10503,0 +44407,Peuro+Bello,519,296,3298902,9670,0 +44408,004,644,653,849101148,8475,0 +44410,042.Stradi,438,300,698365960,10495,0 +44411,MojeDnoToWaszSzczyt,494,295,9299539,9724,0 +44412,EO+EO,294,521,699697558,10019,0 +44413,14.+Aedirn,705,550,8976313,10061,0 +44414,Beauclair,340,369,7462660,10068,0 +44415,Wioska+barbarzy%C5%84ska,620,663,6818593,4400,0 +44416,bucksbarzy%C5%84skamiiiru,328,395,848955783,6453,0 +44417,AAA,546,297,1006847,7320,0 +44418,-+176+-+SS,558,687,849018239,8076,0 +44419,EO+EO,291,525,699697558,7629,0 +44420,024%23+Agnes,483,700,3933666,4038,0 +44421,060,637,340,849010255,3699,0 +44422,C030,375,660,699383279,10065,0 +44423,MojeDnoToWaszSzczyt,493,289,9299539,9960,0 +44424,Dream+on,299,484,698962117,9615,0 +44425,-+251+-+SS,551,694,849018239,3616,0 +44426,Wioska+barbarzy%C5%84ska,702,513,254937,8006,0 +44428,KR%C3%93L+PAPI+WIELKI,663,633,698191218,10000,0 +44430,0365,567,698,698659980,7778,0 +44431,New+WorldA,290,522,849084005,6865,0 +44432,0010+Wioska+barbarzy%C5%84ska,443,694,849037407,10069,0 +44433,bucksbarzy%C5%84skamiiiru,326,392,848955783,6554,0 +44434,%3F%3F%3F%3F,489,292,698489071,6648,0 +44435,Aladin,684,403,699785935,10252,0 +44436,Wioska+barbarzy%C5%84ska,705,525,699150527,6682,0 +44437,EO+EO,295,498,699697558,9707,0 +44438,komandos,630,658,7976264,10311,0 +44439,Na+Kra%C5%84cu+%C5%9Awiata+016,639,344,9291984,4144,0 +44440,124+invidia,501,709,849093426,8910,0 +44441,078+invidia,508,709,849093426,8380,0 +44442,008.+Verdure,326,382,849102092,8563,0 +44443,Wioska+barbarzy%C5%84ska,710,495,699429153,9994,0 +44444,C101,357,652,699383279,7449,2 +44445,0116,710,498,699429153,9889,0 +44446,Szlachcic,368,348,698388578,5018,0 +44447,15.B2ST,686,416,9180206,8847,0 +44449,034,304,563,9280477,5997,0 +44450,0001,356,356,699644448,9068,0 +44451,Sernik+z+Andzynkami,711,505,699126484,8756,0 +44452,Osada+koczownik%C3%B3w,623,668,848909464,10319,3 +44453,SI%C5%81OWNIA,383,675,849097837,2573,0 +44454,Wioska+barbarzy%C5%84ska,304,552,5997814,8978,0 +44455,XDX,606,323,699098531,10290,0 +44456,Wioska+barbarzy%C5%84ska,571,698,7756002,8530,0 +44457,ZA15,313,414,356642,9835,0 +44458,Wioska+barbarzy%C5%84ska,537,705,8980651,9183,0 +44459,004+VLV,557,303,849100656,10539,0 +44460,Taran,320,601,6180190,9167,0 +44461,Wioska+barbarzy%C5%84ska,698,441,699524891,7179,0 +44462,XXXX,562,303,849054951,10068,0 +44463,008d,307,426,8259895,4129,0 +44464,P%C3%B3%C5%82nocny+Bagdad,619,327,8847546,9835,0 +44465,Taran,327,614,6180190,9960,0 +44466,rek16%2F02.1215,681,609,3986807,4861,0 +44467,Wioska+dawszz,293,530,849094688,10290,0 +44468,%5B0155%5D,440,301,8630972,8688,0 +44469,107+invidia,509,703,849093426,10495,0 +44470,089,707,515,7085502,7467,0 +44471,0086,679,392,698416970,4199,0 +44472,011.+Maeldun,389,332,699660539,9837,0 +44473,272...gulden,455,299,6920960,5709,0 +44474,Shisha+Pangma,380,485,699265922,9752,0 +44475,256...Kaban1998,460,296,6920960,8194,0 +44476,151,401,686,849099876,4389,0 +44477,C05,704,453,849093742,6240,0 +44478,FARKA,583,314,828637,10292,9 +44479,034+Wioska+barbarzy%C5%84ska,614,674,699346280,9566,0 +44480,New+World,427,687,698152377,10291,0 +44481,Wioska+barbarzy%C5%84ska,454,698,698178312,2868,0 +44482,TWIERDZA+.%3A070%3A.,694,573,7154207,8768,0 +44483,014,411,684,849099876,10495,0 +44484,C066,358,652,699383279,10202,0 +44486,Wioska+barbarzy%C5%84ska,391,676,6948793,6900,0 +44487,Babilons,680,397,699738350,9828,0 +44489,09.+Kozio%C5%82ki,473,709,849092769,6058,0 +44491,Zaplecze+Barba+4,370,339,699796330,9745,0 +44492,B013,623,332,8740199,2910,0 +44493,Kurnik,484,708,699603116,9860,0 +44494,021.,627,667,699695167,4564,0 +44495,XDX,602,317,699098531,9623,0 +44496,Wioska+barbarzy%C5%84ska,687,407,699598425,5584,0 +44497,a-6,679,610,848921861,8573,0 +44498,Dzik+6,300,438,8366045,8000,0 +44499,004.+Night+Raid,491,707,699684062,9541,0 +44500,New+World,426,692,698152377,10295,0 +44501,North+006,502,290,849064752,10268,0 +44502,Gehenna,689,406,699785935,10019,0 +44503,0002+Wioska+barbarzy%C5%84ska,442,696,849037407,10476,0 +44504,K35+-+%5B027%5D+Before+Land,574,320,699088769,10259,0 +44505,0071,366,340,848913037,4907,0 +44507,Taran,683,402,699598425,10728,0 +44508,XDX,607,323,699098531,9878,0 +44509,%23%23%23035%23%23%23,588,686,698285444,10495,0 +44510,017+ZO,530,295,699208929,5799,0 +44511,Taran,319,603,6180190,9835,0 +44512,FP013,482,701,699605333,9111,0 +44513,New+World,435,692,698152377,10297,0 +44514,193...segador,439,300,6920960,10654,0 +44515,Ranczo4,301,451,699706955,4267,0 +44516,7.62+mm,485,426,699777234,10019,0 +44518,%23K66+0012,606,675,699728159,5186,0 +44519,%3D030%3D+Owca+Tu+by%C5%82a,703,565,3781794,10580,0 +44520,Mniejsze+z%C5%82o+0089,321,389,699794765,6075,0 +44522,%2AINTERTWINED%2A,509,707,698704189,6334,0 +44523,A%23015,711,509,2065730,9797,0 +44524,%2AINTERTWINED%2A,507,707,698704189,5746,0 +44525,C0089,297,513,8841266,10362,7 +44526,O040,332,627,272173,10109,0 +44527,Wioska+barbarzy%C5%84ska,318,600,6180190,3990,0 +44528,WS+05,698,436,699524891,9835,0 +44529,Wioska+volante%C5%84ska,699,439,848976034,3933,0 +44530,Wioska+InnosensQ,365,659,849020212,26,0 +44531,067,406,685,849099876,10495,0 +44532,002,300,544,9280477,10040,0 +44533,001,299,544,9280477,10160,0 +44534,Wioska+barbarzy%C5%84ska,676,391,698768565,5145,0 +44535,z+0001+Wioska,349,360,3909522,10279,0 +44536,C0205,299,530,8841266,7725,0 +44537,Wioska+barbarzy%C5%84ska,554,697,7581876,6648,0 +44538,FENDI,306,433,699794765,2060,0 +44539,0055+Wioska+paul,447,699,849037407,5462,0 +44540,019+zamro%C5%BCony,513,709,849093426,10237,0 +44541,Tebowizna,463,296,849101116,3873,0 +44542,KONFA+TO+MARKA%2C+NARKA,303,458,698152377,10291,9 +44543,Wioska+barbarzy%C5%84ska,704,444,699524891,7138,0 +44544,3.+Wysypisko+%C5%BBycia,386,326,699660539,10479,0 +44545,%3D0008%3D,402,322,698231772,9828,0 +44546,C061,362,656,699383279,10011,0 +44547,A02,696,557,848995478,4318,0 +44548,WS+04,700,437,699524891,9571,0 +44549,C0224,298,545,8841266,4892,0 +44550,Wioska+barbarzy%C5%84ska,373,334,3698627,9760,0 +44551,%2AW005,665,379,7758085,9899,5 +44552,%2AW001,665,377,7758085,9861,0 +44553,016,397,682,849099876,10495,0 +44554,K34+-+%5B152%5D+Before+Land,464,301,699088769,7592,0 +44555,Wroc%C5%82aw+003,579,689,699176234,9643,6 +44556,Wioska+Najemnik+full+light,706,527,1895081,8640,0 +44557,024+koniec+%C5%9Bwiata,617,673,849093426,10237,0 +44558,O123,330,622,272173,7605,6 +44559,Wioska+barbarzy%C5%84ska,590,311,828637,10401,0 +44560,0090,679,394,698416970,7433,0 +44561,B%C5%82aziny+G%C3%B3rne,573,698,698723158,10393,0 +44562,Wioska+barbarzy%C5%84ska,336,370,849027025,4176,0 +44563,Taran,326,609,6180190,9956,0 +44564,%5B044%5D,600,537,848985692,10394,0 +44565,Wioska+barbarzy%C5%84skan,701,462,849098769,3766,0 +44566,032,706,518,699150527,6214,0 +44567,KR%C3%93L+PAPI+WIELKI,709,523,698191218,8029,0 +44568,AAA,540,303,1006847,10311,1 +44570,143,398,683,849099876,9610,0 +44571,015+Wioska+barbarzy%C5%84ska,605,682,699346280,10160,0 +44572,Arczi997+04,296,515,849055181,2167,0 +44573,New+World,425,690,698152377,10294,0 +44574,FP005,495,703,699605333,9497,0 +44575,030+invidia,513,702,849093426,10237,0 +44576,Sernik+z+Andzynkami,701,488,699126484,9938,0 +44577,015,396,327,8153941,6535,0 +44578,chata+Toma,380,503,699265922,9761,0 +44579,O044,340,624,272173,9873,0 +44580,0043+Qukaqu,446,698,849037407,10476,0 +44581,061-Mroczna+Osada,653,360,849035905,2414,0 +44582,0086,364,339,848913037,5597,0 +44583,TWIERDZA+.%3A063%3A.,696,570,7154207,10032,0 +44584,Wioska+andrux,380,404,6186491,7715,0 +44585,Zapce%C5%84,462,294,849101116,6049,0 +44587,Wioska+barbarzy%C5%84ska,573,690,7756002,8497,0 +44588,019+G%C3%B3rrki+Ze-Zbi%C3%B3rki,648,647,849100994,6960,0 +44589,033,403,680,849099876,10495,0 +44590,048.Stradi,439,305,698365960,10495,0 +44591,XXXX,567,304,849054951,10068,0 +44592,O136,351,645,272173,6196,0 +44593,%2AINTERTWINED%2A,506,703,698704189,6232,0 +44594,003,645,653,849101148,8273,0 +44595,Wioska+X07,296,461,698701911,2405,0 +44596,Wioska+barbarzy%C5%84ska,697,540,848946700,5139,0 +44597,A07,702,554,848995478,11130,0 +44598,C054,373,659,699383279,6834,0 +44599,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,494,706,8980651,9883,0 +44600,S007,679,597,8428196,8089,0 +44601,248...Gulden,457,299,6920960,7552,0 +44602,Wioska+barbarzy%C5%84ska,708,486,699429153,6977,0 +44604,Koziarowo+2,502,297,849100228,9259,0 +44605,bucksbarzy%C5%84skamiiiru,324,400,848955783,10928,0 +44607,KR%C3%93L+PAPI+WIELKI,650,641,698191218,10080,6 +44608,Wioska+barbarzy%C5%84ska,686,410,699598425,6195,0 +44609,%23%23%23091%23%23%23,583,692,698285444,10495,0 +44610,%3D084%3D+Oraibi,700,570,3781794,7396,0 +44611,Zagroda4,603,675,6528152,8783,0 +44612,A%23008,709,494,2065730,9797,0 +44613,AAA,552,300,1006847,8698,0 +44616,Gattacka,691,432,699298370,9443,7 +44617,079.,458,700,849034882,9918,0 +44618,New+World,427,697,698152377,10306,0 +44619,013,348,643,698908184,7369,0 +44621,000+Plutosea,312,575,9280477,9976,0 +44622,Sernik+z+Andzynkami,710,504,699126484,8410,0 +44623,12.Kovir,707,539,8976313,9905,0 +44624,Wow14,361,349,849027025,4585,0 +44625,03.+Nilfgaard,701,539,8976313,9828,0 +44626,050.,439,702,699827112,10814,0 +44627,K35+-+%5B035%5D+Before+Land,583,306,699088769,6378,0 +44628,DALEKO,533,703,699827112,10471,0 +44629,026,299,567,849098688,10224,0 +44630,084+invidia,516,704,849093426,5005,0 +44631,Wioska+Strojgniew,670,622,1049851,7139,0 +44632,Kagusiowo+4,298,442,849101268,4723,0 +44633,022+G%C3%B3ry,653,645,849100994,4091,0 +44634,NISIROS,674,609,7999103,7439,0 +44635,031.,701,464,849094609,9244,0 +44636,XDX,605,320,699098531,10290,5 +44637,Wioska+Totomoose,314,415,849100744,4537,0 +44638,New+World,435,701,698152377,10292,0 +44639,Wioska+barbarzy%C5%84ska,691,570,7038651,3723,0 +44640,Po%C5%82udniowy+Wsch%C3%B3d+001,684,601,699778867,3563,0 +44641,Wioska+barbarzy%C5%84ska,621,662,6818593,7274,0 +44643,XXXX,562,302,849054951,10017,0 +44644,North+009,505,290,849064752,10311,0 +44645,XDX,610,320,699098531,8104,0 +44646,Wioska+barbarzy%C5%84ska,573,689,7756002,9642,0 +44647,%23%23%23005%23%23%23,587,687,698285444,10495,0 +44648,ROZWOD+GAME+OER,704,526,1895081,3971,0 +44649,Weso%C5%82ych+%C5%9Awi%C4%85t,585,434,699368887,7705,0 +44650,EO+EO,295,513,699697558,7144,0 +44651,A09,694,561,848995478,10971,4 +44652,K24+-+%5B003%5D+Before+Land,467,299,699088769,7549,0 +44653,pusta,569,304,828637,10044,0 +44654,KR%C3%93L+PAPI+WIELKI,661,626,698191218,10000,0 +44655,AAA,536,297,1006847,7902,0 +44656,Gondor,365,346,849027025,9817,0 +44657,Wioska+barbarzy%C5%84ska,574,306,828637,10838,0 +44658,Pocz%C4%85tek,304,580,7842579,8607,0 +44659,aaaaWioska+barbarzy%C5%84ska,705,524,7047342,10484,0 +44660,XDX,628,336,699098531,9093,0 +44661,152,397,685,849099876,10495,0 +44662,Wioska+X09,296,468,698701911,1970,0 +44663,Wioska+barbarzy%C5%84ska,371,658,699269923,9670,0 +44664,032+Neunreuth,463,698,699834004,3967,0 +44665,14+barbarzy%C5%84ska..,296,447,849018442,9811,0 +44666,022.,624,668,699695167,4843,0 +44667,Adamo+6,585,693,849096768,6135,0 +44668,Dzik+12,300,431,8366045,6192,0 +44669,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,496,706,8980651,9753,0 +44670,221,424,306,698365960,5292,0 +44672,046.+Jannu,699,554,1601917,7712,0 +44674,KR%C3%93L+PAPI+WIELKI,665,626,698191218,10000,0 +44675,%230226+Segadorr+dar,447,302,1238300,10178,0 +44676,0107,706,504,699429153,9325,0 +44677,New+Land+27,322,391,849064752,2056,0 +44678,Wioska+barbarzy%C5%84ska,335,376,7462660,3096,0 +44679,Taran,329,622,6180190,10178,5 +44680,Wioska+barbarzy%C5%84ska,710,477,8925695,2345,0 +44681,D007,354,645,272173,8830,0 +44682,bucksbarzy%C5%84skamiiiru,334,378,848955783,1958,0 +44683,%3D076%3D+B%2A030%2A,701,564,3781794,7094,9 +44684,Wioska+barbarzy%C5%84ska,618,334,0,1543,0 +44685,K35+-+%5B002%5D+Before+Land,584,311,699088769,10016,6 +44686,007.Stradi,435,302,698365960,10495,0 +44687,C.018,703,480,9188016,7331,0 +44688,066+ZieloneOczko2,705,513,2135129,10117,0 +44689,EE+014,699,571,849100149,2130,0 +44690,a+mo%C5%BCe+off+%3F+%3A%29,682,396,698768565,5720,0 +44691,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,561,703,699828442,9825,0 +44692,a10,677,612,848921861,4620,0 +44693,010+zadupie,534,708,6116940,6258,0 +44694,%23K75+0027,516,709,699728159,5338,0 +44695,Z+0004,346,359,3909522,10212,0 +44696,S015,684,594,8428196,4943,0 +44697,Wioska+barbarzy%C5%84ska,306,557,5997814,3576,0 +44698,matey,693,562,848977203,6632,0 +44699,017,708,507,699150527,6380,0 +44700,K35+-+%5B032%5D+Before+Land,590,318,699088769,9783,0 +44701,Wioska+barbarzy%C5%84ska,703,522,7047342,9562,0 +44702,XDX,606,328,699098531,8717,0 +44703,Wioska+barbarzy%C5%84ska,667,617,849048867,1357,0 +44704,Wioska+barbarzy%C5%84ska,587,313,828637,10157,0 +44705,Jednak+wol%C4%99+gofry,418,657,699736927,5248,0 +44706,%230054+geryk,464,292,1238300,10178,0 +44707,Wioska+barbarzy%C5%84ska,362,347,699796330,1959,0 +44708,055,710,514,7085502,6277,0 +44709,New+World,446,694,698152377,9530,0 +44710,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,498,705,8980651,10114,0 +44711,aaaaaaa,293,473,848889556,6861,0 +44712,Taran+008,626,525,698562644,7660,0 +44713,29.BLACKPINK,692,419,9180206,4197,0 +44715,FENDI,300,464,699794765,5464,0 +44716,C0178,301,529,8841266,10495,0 +44717,013.+Night+Raid,492,708,699684062,8848,0 +44718,Osada+koczownik%C3%B3w,690,414,699598425,6847,7 +44719,kraina+mlekiem+i+miodem+p%C5%82yn%C4%85ca,367,659,849100760,949,0 +44720,Zielony+3,295,451,699876746,3201,0 +44721,Nestville,625,341,849062920,4151,0 +44722,eee,367,658,699269923,9450,0 +44723,Dream+on,298,485,698962117,8526,0 +44724,Wow19,363,352,699730714,2363,0 +44725,KONFA+TO+MARKA%2C+NARKA,294,451,698152377,10290,0 +44726,AAA,540,300,1006847,10311,1 +44727,Na+Kra%C5%84cu+%C5%9Awiata+020,642,343,9291984,3945,0 +44728,116.+Bagba,634,596,8337151,6623,0 +44729,%3F%3F%3F%3F,469,299,698489071,6918,0 +44730,A%23028,708,489,2065730,9797,0 +44731,Wioska+barbarzy%C5%84ska,296,518,7530708,3162,0 +44732,Wioska+barbarzy%C5%84ska,382,330,699660539,9842,0 +44733,0065,370,335,848913037,6180,0 +44734,Sernik+z+Andzynkami,710,506,699126484,8868,0 +44735,21.+Verden,700,535,8976313,7918,0 +44736,Wioska+barbarzy%C5%84ska,574,698,7756002,8076,0 +44737,Marco,382,668,699269923,7349,0 +44738,KONFA+TO+MARKA%2C+NARKA,298,447,698152377,10294,0 +44740,Kurnik,476,707,699603116,8131,0 +44741,Osada+1,693,425,8675636,9697,1 +44742,053+invidia,511,710,849093426,10126,0 +44743,%3F%3F%3F%3F,468,292,698489071,11678,0 +44744,%23%23%23036%23%23%23,590,689,698285444,10495,0 +44745,%2A211%2A,332,382,699273451,10211,0 +44746,Taran,326,612,6180190,9959,0 +44748,KR%C3%93L+PAPI+WIELKI,648,638,698191218,9978,0 +44749,KONFA+TO+MARKA%2C+NARKA,299,457,698152377,10290,0 +44750,037.+Himalchuli,699,553,1601917,8705,0 +44751,063-+Mroczna+Osada,617,332,849035905,10703,6 +44752,ElMajkelos+I,413,307,849085160,9347,0 +44753,Wioska+barbarzy%C5%84ska,291,474,2893211,396,0 +44754,XXXX,561,302,849054951,10068,0 +44755,XDX,598,316,699098531,9834,0 +44756,56+ggggg,295,473,849018442,8333,0 +44757,Pakos%C5%82aw,566,698,698723158,10019,0 +44758,004,300,548,849098688,7614,0 +44759,0004+Wioska+barbarzy%C5%84ska,440,696,849037407,10478,0 +44761,028+invidia,521,704,849093426,9994,0 +44762,PYRLANDIA+039,564,574,33900,8674,0 +44763,EO+EO,292,498,699697558,8284,0 +44764,Wioska+czarna+per%C5%82a,289,506,8369657,1175,0 +44765,Kurnik,469,706,699603116,6365,0 +44766,Wioska+barbarzy%C5%84ska,633,345,9291984,2987,0 +44767,Wioska+barbarzy%C5%84ska,369,342,3698627,7061,0 +44768,Wygwizdowa+007,643,651,698562644,9398,0 +44769,%3D0012%3D,399,318,698231772,9841,0 +44770,W23,686,415,699524362,1754,0 +44772,%2136+65+Dragomirna,657,364,698361257,6538,0 +44773,%5B0128%5D,456,296,8630972,9580,0 +44774,Wioska+barbarzy%C5%84ska,516,295,7758085,9861,0 +44775,sebastianxxx19,624,667,848909464,10242,0 +44776,Wioska+bruno+60,711,512,3647086,6935,0 +44777,Arczi997+03,296,516,849055181,3323,0 +44778,Wioska+barbarzy%C5%84ska,586,316,828637,9627,0 +44779,bucksbarzy%C5%84skamiiiru,321,400,848955783,9924,0 +44780,XDX,596,315,699098531,6300,0 +44781,1.06,436,699,699827112,9740,1 +44782,Aaaaaa,611,355,698420691,10141,0 +44783,Taran,320,609,6180190,9835,0 +44784,031%23+Arianna,465,709,3933666,7456,0 +44785,067.+Wioska+barbarzy%C5%84ska,703,472,7494497,7880,0 +44786,19.+Ottawa,686,480,699804790,9362,0 +44787,031.Stradi,434,302,698365960,10495,0 +44789,Wioska+barbarzy%C5%84ska,619,336,8842936,4747,0 +44790,a+mo%C5%BCe+off+%3F+%3A%29,676,399,698768565,6470,0 +44791,bucksbarzy%C5%84skamiiiru,323,401,848955783,5367,0 +44792,Wioska+barbarzy%C5%84ska,375,668,699269923,7923,0 +44793,%5B196%5D,675,388,8000875,3934,0 +44794,0053+Wioska+barbarzy%C5%84ska,448,703,849037407,5229,0 +44795,A000,461,705,699725436,10595,8 +44796,Elo+elo+13,305,581,699016994,5137,0 +44797,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,497,706,8980651,4523,0 +44799,044+invidia,516,708,849093426,10039,0 +44800,10.+Cintra,706,544,8976313,9570,0 +44801,Zaplecze+barba+2,375,330,699796330,9744,0 +44802,Zadupie,646,359,7340529,7686,0 +44803,247...Kaban1998,459,296,6920960,4838,0 +44804,C0209,296,529,8841266,7406,0 +44805,Wioska+barbarzy%C5%84ska,653,359,0,1909,0 +44806,012,702,509,7418168,10019,0 +44808,A11,696,555,848995478,5174,0 +44809,027+zadupie,529,701,6116940,10083,0 +44810,208,430,304,698365960,9273,0 +44811,Zaplecze+Barba+010,372,334,699796330,9223,0 +44812,%3D0003%3D,403,320,698231772,9850,0 +44813,182,416,694,849099876,4544,0 +44814,087+Twierdza,709,468,2135129,4542,0 +44815,XDX,613,333,699098531,8654,0 +44816,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,560,703,699828442,9809,0 +44817,--001--,569,302,542253,10769,0 +44818,D.036,380,671,849088243,2326,0 +44819,przejecia,614,673,6818593,9835,1 +44820,015+ZO,526,293,699208929,6286,0 +44821,FP026,473,702,699605333,10393,0 +44822,Wioska+barbarzy%C5%84ska,390,329,699660539,5868,0 +44823,181..,651,647,699039013,4962,0 +44824,.achim.,474,297,6936607,6466,0 +44825,C0260,302,547,8841266,10362,0 +44826,Wioska+Majsmen,348,566,7333216,9711,0 +44827,O055,333,624,272173,9887,0 +44828,200,429,304,698365960,9950,1 +44829,12+Maszynowa,705,445,849101845,9661,0 +44830,B008+Gilead,705,466,113796,10152,0 +44831,S002,603,676,8627359,9151,0 +44832,%3D0013%3D,401,320,698231772,9839,0 +44833,Ciagle+pada,684,400,699785935,5028,0 +44834,Wioska+barbarzy%C5%84ska,337,369,849027025,4919,0 +44835,S009,686,587,8428196,6833,0 +44836,Didek,687,582,849070946,3616,0 +44837,Wioska+barbarzy%C5%84ska,621,671,848909464,10242,0 +44838,TUTAJ+NA+PEWNO+PRZETRWAM,378,666,848913998,7077,0 +44839,Piek%C5%82o+to+inni,640,337,848956765,4444,0 +44840,Grubasy+2,300,449,634848,8243,0 +44841,004.+G%C3%B3rki+Niezbyt+Wielkie,655,641,849100994,10728,2 +44842,Wioska+barbarzy%C5%84ska,634,336,7555180,2497,0 +44843,I109,698,449,699722599,6382,0 +44844,King,634,339,849100782,4655,0 +44845,008,530,292,699208929,10099,0 +44846,028,640,348,9148043,4007,0 +44847,050+invidia,545,700,849093426,10237,0 +44848,North+010,507,291,849064752,10232,0 +44849,Wioska+barbarzy%C5%84ska,454,705,698178312,1809,0 +44850,Wioska+barbarzy%C5%84ska,583,311,828637,10475,0 +44851,Wioska+1,635,481,848935020,10362,0 +44852,016,657,643,2323859,8128,0 +44853,Wioska+barbarzy%C5%84ska,708,467,699574408,6462,0 +44854,0059,452,702,849037407,9563,0 +44855,%3F%3F%3F%3F,475,291,698489071,9602,0 +44857,Wichura,648,652,2371436,6736,0 +44858,Wioska+barbarzy%C5%84ska,643,349,1715091,2671,0 +44859,Wioska+barbarzy%C5%84ska,694,433,1715091,9383,0 +44860,%2A024+GAWRA%2A,309,427,2415972,5650,0 +44861,%230089,559,698,1536231,3857,0 +44862,029.+Wioska+barbarzy%C5%84ska,347,641,698908184,6454,7 +44863,%5B197%5D,677,603,8000875,4228,0 +44864,Wioska+barbarzy%C5%84ska,620,670,6818593,6461,0 +44865,Wioska+barbarzy%C5%84ska,382,324,699660539,6690,0 +44866,004+Ostr%C3%B3w+Tumski,293,527,9235561,6154,0 +44867,EO+EO,315,524,699697558,10019,0 +44868,New+World,434,693,698152377,10097,0 +44869,FAKE+OR+OFF,409,316,698231772,9814,0 +44870,%4015%40,405,320,699483429,4121,0 +44871,Gondor,410,313,698231772,11898,0 +44872,Wioska+barbarzy%C5%84ska,357,346,849027025,9570,0 +44874,Ave+Why%21,313,586,6180190,3619,0 +44875,0109,703,500,699429153,9007,0 +44876,C0133,298,523,8841266,10416,0 +44877,Wioska+barbarzy%C5%84ska,304,449,699706955,1203,0 +44878,-+276+-+SS,555,701,849018239,7769,0 +44879,Didi,688,593,849070946,6848,0 +44880,KR%C3%93L+PAPI+WIELKI,661,630,698191218,10000,0 +44881,C0220,298,536,8841266,7189,0 +44882,Wioska+barbarzy%C5%84ska,330,376,849027025,1516,0 +44883,051,452,302,2502956,9143,0 +44884,...05+am,673,617,848921861,10495,0 +44885,XDX,599,322,699098531,4331,0 +44886,261..emerson,467,300,6920960,7184,0 +44887,Wioska+barbarzy%C5%84ska,650,351,1715091,2988,0 +44888,%C5%82%C3%B3d%C5%BA,290,512,699862278,2443,0 +44889,bucksbarzy%C5%84skamiiiru,317,401,848955783,5876,0 +44890,Kagusiowo+3,303,441,849101268,7556,0 +44891,Z+02,417,310,6884492,12154,0 +44892,Wioska+barbarzy%C5%84ska,626,338,699580120,7454,0 +44893,Centrum,290,470,848977600,8867,0 +44894,005,454,295,2502956,10019,4 +44895,FP009,479,703,699605333,10393,0 +44896,Wioska+barbarzy%C5%84ska,291,472,2893211,323,0 +44897,KONFA+TO+MARKA%2C+NARKA,299,456,698152377,10290,0 +44898,Wioska+barbarzy%C5%84ska,501,702,7976264,6450,0 +44899,Pogromca,385,331,699660539,6002,0 +44900,081,416,685,849099876,10495,0 +44901,Wioska+Melon944,309,430,699659708,7687,0 +44903,Taran,321,612,6180190,7221,0 +44904,Daleki+Gr%C3%B3d,632,335,7555180,9998,9 +44905,XDX,601,320,699098531,8962,0 +44906,%23%23%23037%23%23%23,593,681,698285444,10495,0 +44907,B032,624,329,8740199,5319,0 +44908,Wioska+barbarzy%C5%84ska,688,580,7154207,1534,0 +44909,Wioska+barbarzy%C5%84ska,308,418,0,223,0 +44910,Wioska+barbarzy%C5%84ska,311,420,0,878,0 +44911,Wioska+barbarzy%C5%84ska,297,525,7530708,3112,0 +44912,027+Wioska+barbarzy%C5%84ska,614,672,699346280,9630,0 +44913,Prze%C5%82om,702,481,849099640,9106,0 +44914,New+World,426,691,698152377,10294,0 +44915,031,671,382,698635863,7738,0 +44916,New+World,419,695,698152377,10297,0 +44917,014.+Night+Raid,491,709,699684062,8090,0 +44918,KONFA+TO+MARKA%2C+NARKA,298,446,698152377,9777,0 +44919,Sernik+z+Andzynkami,711,502,699126484,7963,0 +44920,B05,703,551,848995478,10151,0 +44921,002,300,550,849098688,10224,0 +44922,Wioska+barbarzy%C5%84ska,586,313,828637,10159,2 +44923,FAKE+OR+OFF,406,317,698231772,10119,0 +44924,New+WorldA,294,527,849084005,6539,0 +44925,Sukcesu+droga,685,403,699785935,10362,0 +44926,009,696,560,301602,2914,0 +44927,Osada+koczownik%C3%B3w,381,331,699660539,9856,4 +44928,%23%23%23038%23%23%23,594,689,698285444,10495,0 +44929,024.+Wioska+barabarzy%C5%84ska,703,476,7494497,10367,0 +44930,FP024,482,709,699605333,9620,0 +44931,Z+03,420,310,6884492,12154,0 +44932,038.+Haramosh,707,541,1601917,8846,0 +44933,Zalesice,567,697,698723158,6817,0 +44934,200,369,663,699269923,9771,8 +44935,Didek,688,584,849070946,3837,0 +44936,Taran,323,608,6180190,7314,0 +44937,Taran,311,596,6180190,5990,0 +44938,MojeDnoToWaszSzczyt,502,292,9299539,9950,0 +44939,101+-+Nowy+Pocz%C4%85tek...,348,642,7540891,5551,0 +44941,Wioska+barbarzy%C5%84ska,705,533,848946700,2366,0 +44943,Wioska+barbarzy%C5%84ska,365,656,699269923,9883,0 +44944,MojeDnoToWaszSzczyt,496,292,9299539,9774,0 +44945,Wioska+barbarzy%C5%84ska,632,344,9291984,4791,0 +44946,Wioska+barbarzy%C5%84ska,368,346,3698627,6489,0 +44947,XDX,605,326,699098531,9618,0 +44948,K07,356,650,6948793,8471,0 +44949,0366,567,694,698659980,7669,0 +44950,G004,515,289,699208929,9422,0 +44951,001+Ostr%C3%B3w+Lednicki,289,530,9235561,7935,0 +44952,Wioska+barbarzy%C5%84ska,701,441,699524891,8098,0 +44953,Wioska+zosiek00,375,670,699269923,7033,0 +44954,Szlachcic,360,342,698388578,6802,0 +44955,AAAAAAAAAAAAAAAAAAAAAAA,321,609,6180190,9835,0 +44956,Starcza,298,475,8048374,5471,0 +44957,B001+Osada+Wsch%C3%B3d,709,463,113796,10141,9 +44958,AlaKlaudia2,384,325,699660539,5079,0 +44959,Wioska+barbarzy%C5%84ska,699,549,17714,6235,0 +44960,FAKE+OR+OFF,407,312,698231772,9629,0 +44961,Wioska+barbarzy%C5%84ska,579,308,828637,10476,6 +44962,Wioska+barbarzy%C5%84ska,336,375,849027025,3855,0 +44963,bucksbarzy%C5%84skamiiiru,324,384,848955783,2310,0 +44964,Winterfell.005,461,296,848918380,10178,5 +44965,No+chyba+nie,364,651,699269923,10006,0 +44966,ZA01,320,403,356642,9835,0 +44967,Wioska+barbarzy%C5%84ska,305,557,5997814,2656,0 +44968,C.05+a+panicz+to+dok%C4%85d%3F,548,295,849026145,2251,0 +44969,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,426,694,8980651,9761,0 +44970,Wioska+barbarzy%C5%84ska,569,700,7756002,9905,0 +44971,030,631,550,849095227,9835,0 +44972,032,667,381,698635863,9364,0 +44973,009,404,682,849099876,10495,0 +44975,S006,604,675,8627359,9049,0 +44976,K33,322,390,699794765,2165,0 +44977,Jarza071,677,391,699738350,9700,0 +44978,O006,341,636,272173,9955,0 +44979,0050+Utopia3,447,696,849037407,10309,2 +44980,08.+Pompeje,704,532,848946700,10252,0 +44981,777,343,641,698908184,8642,0 +44983,wioska,632,346,9291984,7330,0 +44984,053.,629,658,699373599,3542,0 +44985,%23K66+0003,610,673,699728159,7377,0 +44986,031,642,347,9291984,1760,0 +44987,%3F%3F%3F%3F,475,290,698489071,9590,0 +44988,0112,705,494,699429153,8708,0 +44989,XDX,607,318,699098531,10297,0 +44990,034.Stradi,425,311,698365960,10495,0 +44991,%23%23%23092%23%23%23,578,688,698285444,10495,0 +44992,Z%C5%82oty+%C5%9Awit,579,304,699883079,6793,0 +44993,EO+EO,290,498,699697558,9976,0 +44994,002,387,669,6948793,9684,0 +44995,041,300,540,9280477,6130,0 +44996,Wioska+barbarzy%C5%84ska,510,298,8400975,1482,0 +44997,Patryk611,676,397,7973893,5885,0 +44998,S002,683,599,8428196,8898,0 +44999,bucksbarzy%C5%84skamiiiru,321,396,848955783,9443,0 +45000,Psycho+to+Marka%2C+Narka+%21,306,572,849040142,1910,0 +45001,yks,535,705,8980651,10237,0 +45002,eee,370,659,699269923,9666,0 +45003,MojeDnoToWaszSzczyt,503,293,9299539,9958,0 +45004,Wioska+barbarzy%C5%84ska,711,497,699429153,6911,0 +45005,O056,334,628,272173,9819,0 +45006,Adamo+5,585,694,849096768,4821,0 +45007,KR%C3%93L+PAPI+WIELKI,643,648,698191218,9381,0 +45008,019.+Night+Raid%2A,432,692,699684062,9807,0 +45009,Bessa+027,644,656,848987051,9564,0 +45010,016,711,495,849091105,9663,3 +45011,EO+EO,293,500,699697558,8863,0 +45012,Kurnik,471,705,699603116,4338,0 +45013,Wioska+barbarzy%C5%84ska,317,596,7183372,5662,0 +45014,ZA07,322,403,356642,9835,0 +45015,2.+Pusia+420,473,294,699368887,9319,0 +45016,pusta,573,303,828637,4440,0 +45017,ZZ10,308,410,356642,9373,0 +45018,O004,341,632,272173,10291,9 +45019,102,405,690,849099876,9449,0 +45021,025.+Fitz+Roy,709,531,1601917,10362,0 +45022,Wioska+barbarzy%C5%84ska,589,318,828637,10262,0 +45024,051+sebaseba1991,617,676,699346280,9965,0 +45026,XDX,612,325,699098531,9957,0 +45027,E005,657,557,8428196,6019,0 +45028,202,432,302,698365960,8808,0 +45029,EO+EO,297,497,699697558,7655,0 +45030,009c,311,423,8259895,4042,0 +45031,Wioska+barbarzy%C5%84ska,316,596,7183372,6143,0 +45032,023.,628,666,699695167,4564,0 +45033,psycha+sitting,412,684,699736927,10311,0 +45034,003+VLV,560,306,849100656,8524,0 +45035,Osiny,572,691,698723158,8591,0 +45036,Ger3,709,524,2246711,4899,0 +45037,Bessa+028,635,658,848987051,10232,0 +45039,009.+Painful,703,513,699785935,9501,0 +45040,Wioska+Totomoose+3,313,413,849100744,2870,0 +45041,.achim.,482,295,6936607,4598,0 +45042,ZZZ,542,706,8980651,10237,8 +45043,006,390,321,699660539,6360,0 +45044,New+World,425,693,698152377,10297,0 +45045,028+zadupie1,530,711,6116940,10019,0 +45046,Z07,317,409,356642,9835,0 +45047,007.+Night+Raid,491,703,699684062,9754,0 +45048,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,497,702,8980651,9741,0 +45049,Ranczo,302,449,699706955,12154,0 +45050,Wioska+barbarzy%C5%84ska,639,651,698191218,3866,0 +45051,psycha+sitting,399,677,699736927,6689,0 +45052,001,646,648,849101148,5978,0 +45053,Wioska+barbarzy%C5%84ska,688,414,699598425,7169,0 +45055,%230152+barbarzy%C5%84ska,484,289,1238300,7273,0 +45056,%7E%7ELataj%C4%85cyHolender%7E%7E,590,495,9174887,10140,0 +45057,Wioska+barbarzy%C5%84ska,385,325,699660539,6517,0 +45058,13.+Poviss,706,538,8976313,9684,0 +45059,004,392,327,8153941,8180,0 +45060,North+012,506,289,849064752,10311,9 +45062,Na+Kra%C5%84cu+%C5%9Awiata+019,641,341,9291984,4092,0 +45063,008,699,557,301602,4918,0 +45064,Grubasy+4,297,450,634848,5438,0 +45065,AAA,321,607,6180190,10101,0 +45066,S025,686,601,8428196,5049,0 +45067,Didi,684,587,849070946,4718,1 +45068,A000,466,707,699725436,9275,0 +45069,011,351,350,849101205,3361,0 +45070,Osada+koczownik%C3%B3w,382,325,699660539,10139,8 +45071,Dream+on,295,487,698962117,6623,0 +45072,Taran,319,608,6180190,9721,0 +45073,New+World,425,689,698152377,10559,0 +45074,z+zajazd+%2F2,353,359,3909522,6755,0 +45075,W24,693,412,699524362,1864,0 +45076,022.+Night+Raid%2A,429,700,699684062,10838,0 +45077,S018,688,595,8428196,5050,0 +45078,%23%23%23093%23%23%23,582,690,698285444,10495,0 +45079,FAKE+OR+OFF,407,320,698231772,9828,2 +45080,%230291+Don+Noobas,465,294,1238300,2502,0 +45081,KONFA+TO+MARKA%2C+NARKA,294,461,698152377,7555,0 +45082,239,398,318,7271812,2840,0 +45083,053.,705,465,849094609,5761,0 +45084,Didek,684,588,849070946,7268,0 +45085,C059,363,656,699383279,10431,0 +45086,MojeDnoToWaszSzczyt,495,292,9299539,9966,0 +45087,Taran,322,611,6180190,9835,0 +45088,Wioska+barbarzy%C5%84ska,588,314,828637,9962,0 +45089,.achim.,482,288,6936607,7794,0 +45090,BRICKLEBERRY,518,289,7758085,9963,0 +45091,0017,400,322,2321390,4932,0 +45093,%5B0212%5D,297,503,8630972,7661,0 +45094,GULASZ,707,530,1895081,866,0 +45095,033,667,382,698635863,9171,0 +45097,CastAway+%21032,686,603,9314079,4632,0 +45098,Wioska+barbarzy%C5%84ska,365,653,699269923,9491,0 +45099,Wioska+barbarzy%C5%84ska,587,317,1767876,5318,0 +45100,Dream+on,292,486,698962117,4378,0 +45101,003,296,558,9280477,9976,0 +45103,Borubar+5,711,486,699413581,4637,0 +45104,D015,353,647,272173,6369,0 +45105,Domi+8,700,471,849002796,7287,0 +45106,Wioska+barbarzy%C5%84ska,383,671,699269923,8212,0 +45108,%5B0147%5D,442,300,8630972,8951,0 +45109,KR%C3%93L+PAPI+WIELKI,651,643,698191218,9973,0 +45110,TWIERDZA+.%3A009%3A.,698,567,7154207,10182,5 +45111,012+ledwo+co,508,702,849093426,10237,0 +45112,201,427,302,698365960,10298,0 +45113,WB13,308,416,356642,3703,0 +45114,Wioska+barbarzy%C5%84ska,594,310,828637,9905,0 +45115,010,709,484,942959,3245,0 +45116,Taran,320,605,6180190,9727,0 +45117,126+invidia,502,709,849093426,10495,0 +45118,%23%23%23094%23%23%23,581,690,698285444,10495,0 +45119,C011,544,706,698599365,3287,0 +45120,Taran,317,602,6180190,10311,0 +45121,Mydlana+ba%C5%84ka,687,402,699785935,9045,0 +45122,B005+Szaleniczki,706,462,113796,10160,0 +45123,%5B0136%5D,456,295,8630972,9353,0 +45124,Wioska+barbarzy%C5%84ska,692,424,699488108,5133,0 +45126,Wioska+21,687,600,849101162,5921,0 +45128,Wyspa_48,507,704,2585846,3895,0 +45129,005,389,670,6948793,9899,0 +45130,Wioska+barbarzy%C5%84ska,358,346,849027025,9550,0 +45131,AAA,550,304,1006847,8593,0 +45132,043,463,300,2502956,10019,0 +45133,B028,623,326,8740199,5123,0 +45134,Wioska+barbarzy%C5%84ska,698,457,849098769,5715,0 +45135,Lusia,527,704,699733501,7923,0 +45137,Wioska013,686,398,698768565,4285,0 +45138,wioska,630,335,849102068,9772,0 +45139,31.Creyden,707,546,8976313,7424,0 +45140,Wioska+001,689,411,8675636,10019,0 +45141,Wioska+barbarzy%C5%84ska,704,490,942959,5073,0 +45143,0035,329,378,2321390,2552,0 +45144,%23K66+0007,609,673,699728159,4635,0 +45145,KR%C3%93L+PAPI+WIELKI,667,628,698191218,10000,5 +45146,Sodoma,417,313,699694284,8568,0 +45148,New+World,438,699,698152377,10294,0 +45149,Nad+ranem,684,401,699785935,4176,0 +45150,34.+Kufe+1,705,457,699804790,8025,0 +45151,Wioska+barbarzy%C5%84ska,688,408,699598425,6468,0 +45152,001+szukam,533,707,6116940,5319,0 +45153,0063,707,451,698416970,5199,0 +45154,052+Karolo1,618,672,699346280,9401,2 +45155,W25,694,412,699524362,4387,0 +45156,Grubasy+3,299,450,634848,6609,0 +45157,Spec2,544,298,699569800,5695,0 +45158,EO+EO,293,505,699697558,10019,0 +45159,Zbo%C5%BCowa,483,294,698848373,2575,0 +45160,C057,364,657,699383279,10713,0 +45161,0067,706,448,698416970,5556,0 +45162,Wioska+barbarzy%C5%84ska,530,293,699818726,6659,0 +45163,Mniejsze+z%C5%82o+0094,320,388,699794765,5365,0 +45164,001,386,668,699269923,9498,0 +45165,039.+Izera,706,543,1601917,7615,0 +45167,Wioska+barbarzy%C5%84ska,496,707,7976264,5207,0 +45168,C005,468,701,8954402,9726,0 +45169,Obrze%C5%BCe,577,692,7589468,8883,0 +45170,--004--,568,300,542253,10244,0 +45171,Wioska+barbarzy%C5%84ska,319,604,8699429,5516,0 +45173,025,711,511,7085502,9726,0 +45174,Wioska+barbarzy%C5%84ska,330,615,6180190,7364,0 +45175,Obrze%C5%BCe,575,697,7589468,8820,0 +45176,Orze%C5%82+6,688,490,699413581,7620,0 +45177,W27,684,399,699524362,2243,0 +45178,Didi,686,582,849070946,9516,0 +45179,0014+mackobl14,437,695,849037407,10478,0 +45180,003+Barba,406,318,698231772,8145,0 +45181,%5B0117%5D,444,301,8630972,10048,0 +45182,bucksbarzy%C5%84skamiiiru,325,386,848955783,7295,0 +45183,Wioska+barbarzy%C5%84ska,424,302,698231772,7520,0 +45184,New+WorldA,297,527,849084005,6044,0 +45185,bucksbarzy%C5%84skamiiiru,321,390,848955783,5380,0 +45186,Wioska+barbarzy%C5%84ska,639,402,699429153,7686,0 +45187,%5B198%5D,676,388,8000875,3665,0 +45189,Wioska+barbarzy%C5%84ska,388,319,699660539,3440,0 +45191,Virginia+Beach,626,333,8740199,10085,0 +45192,014.+Wioska+barbarzy%C5%84ska,344,638,698908184,8091,0 +45193,Wioska+13kris,565,702,6870350,9854,0 +45194,.achim.,481,294,6936607,4330,0 +45195,BAC%C3%93WKA+%7C025%7C,634,407,7394371,5978,0 +45196,025,301,566,849098688,10083,4 +45197,027,705,507,699150527,8017,0 +45198,Bessa+003,639,659,848987051,10087,0 +45199,Wioska+barbarzy%C5%84ska,530,298,7758085,9925,0 +45200,Wioska+barbarzy%C5%84ska,361,650,6948793,9835,0 +45201,006,355,350,849101205,6748,0 +45202,Wioska+barbarzy%C5%84ska,341,374,7462660,3681,0 +45203,Taran,325,618,6180190,9301,0 +45204,AAA,549,294,1006847,6177,0 +45205,komandos,633,662,7976264,8661,0 +45206,Szlachcic,362,342,698388578,7561,0 +45207,035,616,395,699298370,3035,0 +45208,Aberdeen+1,302,426,699852080,891,0 +45209,0054+Wioska+Nie%C5%9Bmiertelny97,447,704,849037407,5106,0 +45210,S020,685,584,8428196,4588,0 +45211,wioska,633,338,849102068,4232,0 +45212,Ostro%C5%BCanka,571,697,698723158,6894,0 +45213,EO+EO,294,495,699697558,8157,0 +45214,Wioska+barbarzy%C5%84ska,358,343,849027025,1603,0 +45215,0128,393,684,7085510,8587,0 +45216,XDX,603,320,699098531,10158,0 +45217,Wioska+barbarzy%C5%84ska,631,660,848987051,10096,0 +45218,Dream+on,293,494,698962117,9488,0 +45219,Wioska+barbarzy%C5%84ska,500,703,7976264,7100,0 +45220,East1,681,383,1086351,7874,0 +45221,099.+Mruva,619,478,8337151,12154,0 +45222,Dantyszka,477,297,698848373,2728,0 +45223,Wioska+barbarzy%C5%84ska1,291,508,698879638,2575,0 +45224,KR%C3%93L+PAPI+WIELKI,657,640,698191218,10000,0 +45225,091+Tomek,680,513,2135129,6590,0 +45226,DDDQ,289,475,848889556,9160,0 +45227,tomek016+VI,693,569,8811880,1888,0 +45228,0159,386,678,7085510,5147,0 +45229,FP020,472,705,699605333,10265,0 +45230,%2AINTERTWINED%2A,506,705,698704189,5625,0 +45231,P%C3%B3%C5%82nocny+Bagdad,618,330,8847546,9835,0 +45232,%C5%BBUBEREK+018,607,679,33900,6057,0 +45233,DZIADZIOR,309,407,699127156,5484,0 +45234,%23003+Los+Angeles,319,611,849101276,5836,0 +45235,%5B0131%5D,443,297,8630972,9347,0 +45237,FAKE+OR+OFF,408,308,698231772,9817,0 +45238,I008,672,446,699722599,10252,0 +45239,C0211,298,534,8841266,10362,0 +45241,Wioska+barbarzy%C5%84ska,384,326,699660539,6931,0 +45242,Dust+in+the+wind.,289,480,849001277,6457,0 +45243,Wioska+Zawodnika+2,580,694,698655859,6443,0 +45244,Chwa%C5%82owice,568,696,698723158,10301,0 +45245,%7E085.,468,700,7139820,2970,0 +45246,New+Land+18,331,374,849064752,3476,0 +45247,Wiadrowo+G%C3%B3rne,287,489,849100877,11819,0 +45248,Z06,315,409,356642,9835,0 +45249,bucksbarzy%C5%84skamiiiru,315,401,848955783,5573,0 +45250,%5B199%5D,679,391,8000875,6756,0 +45251,bucksbarzy%C5%84skamiiiru,329,391,848955783,9882,1 +45252,Fio%C5%82kowe+Pole,694,428,699785935,7814,0 +45255,0037,462,708,699280514,8374,0 +45256,.achim.,483,290,6936607,7570,3 +45257,0.07+Pse%C5%82fe%C5%82,467,705,699725436,9491,0 +45258,015,409,689,849099876,10495,0 +45259,246...Kaban1998,457,293,6920960,9603,0 +45260,Wioska+barbarzy%C5%84ska,637,660,848987051,9851,0 +45261,%2AW006,666,377,7758085,5631,0 +45262,Angella+x,652,352,699875213,2209,0 +45263,Z%C5%82oty+%C5%9Awit,576,303,699883079,9288,4 +45264,064.,320,592,3475079,2289,0 +45265,wioska,635,341,9291984,7614,0 +45266,004181,631,658,699872616,5062,0 +45267,Edda,587,676,699567608,9172,0 +45268,046.,443,706,849034882,10838,0 +45269,Wioska+barbarzy%C5%84ska,548,302,699072129,3429,0 +45270,%5B0107%5D,441,301,8630972,10495,0 +45271,Wygwizdowa+006,634,656,698562644,10311,0 +45272,009,298,553,9280477,9976,0 +45273,S024,685,600,8428196,2269,0 +45274,FAKE+OR+OFF,405,311,698231772,9819,0 +45275,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,425,697,8980651,9543,5 +45277,KONFA+TO+MARKA%2C+NARKA,300,433,698152377,7824,0 +45278,%5BD%5D_%5B003%5D+Dejv.oldplyr,287,504,699380607,10365,8 +45279,C0202,298,529,8841266,7613,0 +45280,Sernik+z+Andzynkami,710,503,699126484,7569,0 +45281,FAKE+OR+OFF,408,310,698231772,9885,0 +45282,024.,631,668,699695167,4761,0 +45283,Ob+Konfederacja,428,325,848915730,6455,0 +45284,136.Stradi,430,309,698365960,3093,0 +45285,0034,324,381,2321390,2260,0 +45286,Aaaaxxx,292,464,848981726,5209,0 +45287,Dream+on,294,479,698962117,9260,4 +45288,Vanaheim,670,612,849096631,1756,0 +45289,KR%C3%93L+PAPI+WIELKI,650,648,698191218,7292,0 +45290,Z10,315,407,356642,9835,0 +45291,EE+003,695,580,849100149,9502,0 +45292,bucksbarzy%C5%84skamiiiru,327,392,848955783,6819,0 +45293,Wioska+barbarzy%C5%84ska,343,366,7462660,10068,0 +45294,C07,705,448,849093742,5898,0 +45295,22+Perm,396,317,698231772,10072,7 +45296,014,316,595,6180190,6206,0 +45297,komandos,636,660,7976264,8909,2 +45298,ostro%C5%82%C4%99ka,686,476,849100082,6983,0 +45299,Wioska+haga,291,512,698368493,3628,0 +45301,Wioska+barbarzy%C5%84ska,697,443,1715091,5757,0 +45302,EO+EO,290,526,699697558,6858,0 +45303,016+G%C3%B3rki+Minimalistyczne,653,638,849100994,4003,0 +45305,013+VWF+Wioska+barbarzy%C5%84ska,309,422,3108144,3509,4 +45306,C089,362,662,699383279,8016,0 +45307,New+World,435,693,698152377,10297,0 +45308,Wioska+barbarzy%C5%84ska,364,343,849027025,7139,0 +45309,%230265+olcixx,463,292,1238300,4714,0 +45310,C111,354,654,699383279,5958,0 +45311,.achim.,478,297,6936607,3632,0 +45312,%3F%3F%3F%3F,494,292,698489071,10160,5 +45313,006,297,469,848895676,3867,0 +45314,258...Karki98,453,294,6920960,4718,0 +45315,045,452,299,2502956,9524,0 +45316,Wioska+Zorro+017,678,611,849080702,6385,0 +45317,%230268+olcixx,465,297,1238300,6589,0 +45318,yks,536,704,8980651,10237,0 +45319,KONFA+TO+MARKA%2C+NARKA,301,437,698152377,6824,0 +45320,001+Zaczynamy,344,635,698908184,9713,0 +45321,%23%23%23095%23%23%23,592,692,698285444,10495,0 +45322,New+World,421,695,698152377,10295,0 +45323,Wioska+barbarzy%C5%84ska,368,654,699269923,9891,0 +45324,Wioska+barbarzy%C5%84ska,632,342,849102068,2111,0 +45325,026,679,599,6160655,7884,0 +45326,IQ155,551,452,699368887,6067,0 +45327,Ubijam,690,404,699785935,4850,0 +45329,040.+Night+Raid,485,711,699684062,5749,0 +45330,Wioska+barbarzy%C5%84ska,683,412,699598425,6839,0 +45331,Wioska+barbarzy%C5%84ska,707,469,699574408,6965,0 +45332,Wioska+barbarzy%C5%84ska+4,453,703,698178312,4529,0 +45333,001+yuri09,605,681,699346280,10160,0 +45334,bucksbarzy%C5%84skamiiiru,328,391,848955783,10040,0 +45337,C.020,707,480,9188016,5007,0 +45338,007,295,551,849098688,10393,0 +45340,KR%C3%93L+PAPI+WIELKI,649,651,698191218,7366,0 +45341,%2136+65+Horodnic+de+Jos,653,362,698361257,9993,0 +45342,KR%C3%93L+PAPI+WIELKI,657,639,698191218,10000,0 +45343,034,673,381,698635863,9390,0 +45344,068,406,683,849099876,10495,0 +45345,Osada+koczownik%C3%B3w,383,332,699660539,9931,2 +45346,%2136+66+Varfu+Deaulului,664,365,698361257,9841,0 +45348,Abu+zabi,514,297,699208929,8779,0 +45349,%23%23%23003%23%23%23,592,691,698285444,10495,2 +45350,D%C5%BCejd%C5%BCej+1,665,632,849098326,12154,0 +45351,Ave+Why%21,310,593,6180190,4003,0 +45352,Hodges+Gen.,353,641,272173,4902,0 +45353,005,712,499,699150527,10297,0 +45354,I110,697,448,699722599,6503,0 +45355,zajazd+%2F3,352,352,849027025,9351,0 +45356,Wioska+barbarzy%C5%84ska,508,713,698704189,1921,0 +45357,Wioska+barbarzy%C5%84ska,650,352,0,2927,0 +45358,20.2PM,686,419,9180206,7837,0 +45359,C0346,297,537,8841266,1553,0 +45360,006,308,422,8259895,4776,0 +45361,Wioska+barbarzy%C5%84ska,655,359,698361257,2947,0 +45362,Wioska+barbarzy%C5%84ska,361,653,849014922,9835,0 +45363,0039,477,711,699280514,2874,0 +45364,018+telimena,615,676,699346280,10160,0 +45365,C060,356,656,699383279,10236,2 +45366,039,652,351,9148043,5639,0 +45367,091,410,693,849099876,7633,0 +45368,Dzik+10,302,439,8366045,6477,0 +45369,Wioska+barbarzy%C5%84ska,625,333,8740199,9531,7 +45370,C0134,298,524,8841266,9378,0 +45371,Borcuchy,565,696,698723158,5415,0 +45372,9_Franekkimono510_9,361,342,849099422,4268,0 +45373,009+Kruszwica,292,529,9235561,5167,0 +45374,psycha+sitting,396,676,699736927,4331,0 +45375,25+Wiocha+5..+...,303,437,849018442,9059,0 +45376,%23%23%23096%23%23%23,586,687,698285444,10495,0 +45377,C055,365,657,699383279,10030,0 +45378,Zielony2,295,447,699876746,3478,0 +45380,Wioska+barbarzy%C5%84ska,358,344,849027025,9352,0 +45382,Wioska+barbarzy%C5%84ska,705,539,848946700,7514,0 +45383,New+World,421,691,698152377,10291,0 +45384,120,417,695,849099876,9835,0 +45385,Wydzia%C5%82+zamiejscowy+2,301,424,699821629,5008,0 +45386,bucksbarzy%C5%84skamiiiru,320,392,848955783,10171,0 +45387,XDX,609,318,699098531,10092,0 +45388,KONFA+TO+MARKA%2C+NARKA,293,452,698152377,10291,0 +45389,A000,466,702,699725436,9685,0 +45390,Obok+my%C5%9Bli,691,403,699785935,10019,0 +45391,Wiadro11,673,624,8677963,6646,0 +45392,Wioska+Duszkowsky+005,359,657,849101579,5712,0 +45393,KR%C3%93L+PAPI+WIELKI,666,621,698191218,9365,0 +45394,Wioska+barbarzy%C5%84ska,394,315,698231772,8588,0 +45396,Z24,311,412,356642,9835,0 +45397,Tzarski-02,646,654,699783063,2489,0 +45398,Flowers,696,565,848926293,2744,0 +45399,2+RAMMSTEIN,346,354,6315553,2393,2 +45400,%23%23%23039%23%23%23,596,684,698285444,10495,0 +45401,03.SUJU,689,417,9180206,8603,1 +45402,EO+EO,291,520,699697558,8929,0 +45403,%23%23%23040%23%23%23,598,686,698285444,10495,0 +45404,Wioska+barbarzy%C5%84ska,582,313,828637,10476,0 +45405,014,716,514,7085502,9871,0 +45406,%230303+LAROX,458,294,1238300,9951,0 +45407,Wioska+barbarzy%C5%84ska,337,370,849027025,4737,5 +45408,Wioska+X04,298,466,698701911,2761,0 +45409,044,293,538,9280477,5394,0 +45410,032,300,561,9280477,5411,0 +45411,Parking4,619,676,6528152,5469,0 +45412,%2136+65+Voievodeasa,656,365,698361257,9771,0 +45413,Wioska+barbarzy%C5%84ska,633,661,848987051,10194,0 +45414,XXX,290,476,848977600,8720,3 +45415,--048--,564,302,542253,1670,0 +45416,Rakow,298,474,8048374,5741,0 +45417,A03,701,557,848995478,7497,0 +45418,35+Paleocen,396,315,698231772,4914,0 +45419,670%7C374,670,374,699580120,5018,0 +45420,bucksbarzy%C5%84skamiiiru,316,393,848955783,9508,0 +45421,%23047,506,635,699605333,10122,0 +45422,Wioska+barbarzy%C5%84ska,521,289,7758085,9685,0 +45423,1.04,436,700,699827112,9777,0 +45424,144,400,682,849099876,10495,0 +45425,Avanti%21,292,483,698625834,6419,0 +45426,C.029,708,481,9188016,4338,0 +45427,%5B0226%5D,296,509,8630972,5958,0 +45428,MojeDnoToWaszSzczyt,507,294,9299539,9954,0 +45429,S019,689,591,8428196,3767,0 +45430,068+-+Nowy+Pocz%C4%85tek...,345,645,698908184,7839,0 +45431,New+World,427,694,698152377,10290,0 +45432,Wioska+Mogok,580,686,698723158,1450,0 +45433,23.+Cidaris,702,535,8976313,7904,0 +45434,Nic+ju%C5%BC+nie+musz%C4%99,701,434,699785935,8567,0 +45435,157...E,398,313,6920960,6398,0 +45436,Wioska+barbarzy%C5%84ska,395,317,698231772,8097,0 +45437,komandos,633,664,7976264,8600,0 +45438,0101,676,390,698416970,5224,0 +45439,Wioska+barbarzy%C5%84ska,564,702,7756002,4288,0 +45440,047,455,296,2502956,9779,0 +45441,022.+Ursus,704,475,7494497,10237,1 +45442,-009-+Chwa%C5%82a+Imperium,622,333,8675636,10019,0 +45443,053.Stradi,448,296,698365960,10495,0 +45444,006,394,323,8153941,6029,0 +45445,06+Pali+si%C4%99+moja+Panno,706,446,849101845,9965,0 +45446,048.+ALFI,479,572,8539216,1460,0 +45447,KONFA+TO+MARKA%2C+NARKA,298,435,698152377,7474,0 +45448,Wioska+X03,297,466,698701911,3974,0 +45450,Wioska+barbarzy%C5%84ska,302,446,699706955,1594,0 +45451,044,712,513,7085502,8739,0 +45453,D016,560,298,699299123,4226,0 +45454,%5B0121%5D,445,294,8630972,9678,0 +45455,025+invidia,520,707,849093426,10237,0 +45456,Psycho+to+Marka%2C+Narka+%21,305,571,849040142,3110,0 +45457,B%C5%BAdzi%C4%85gwa,556,706,699443920,9761,4 +45458,0.04+Kazio+i+syndrom+LEGII,465,704,699725436,9462,0 +45459,046.+Night+Raid,485,709,699684062,3432,0 +45460,_1_,493,334,9113064,4358,0 +45461,P%C3%B3%C5%82nocny+Bagdad,618,323,8847546,9835,0 +45462,TWIERDZA+.%3A001%3A.,692,578,7154207,10120,0 +45463,0051+181.01,449,704,849037407,11130,0 +45464,Dream+on,296,487,698962117,4319,0 +45465,Siebie+zapytasz,692,402,699785935,10252,0 +45466,%5B0158%5D,446,302,8630972,8723,0 +45467,New+World,428,698,698152377,9204,0 +45469,psycha+sitting,411,683,699736927,9782,0 +45470,C03,706,451,849093742,5931,0 +45471,003b,304,412,8259895,4475,0 +45472,13.TXT,690,419,9180206,8572,0 +45473,WB04,309,411,356642,5821,0 +45474,Gattacka,691,431,699298370,8020,0 +45475,ZA05,316,406,356642,9835,0 +45476,075.,454,708,699827112,7368,0 +45477,004c,305,419,8259895,8646,0 +45478,Wioska+barbarzy%C5%84ska,713,485,699429153,4908,0 +45479,Wioska+barbarzy%C5%84ska,389,330,699660539,6367,0 +45480,-+206+-+SS,545,699,849018239,7499,0 +45482,%23K66+0001,610,675,699728159,9761,0 +45483,012.+137dominik,343,638,698908184,9495,0 +45484,006,699,559,301602,4825,0 +45485,C023,372,670,699383279,9785,0 +45486,0064,368,336,848913037,7939,0 +45487,Wioska+barbarzy%C5%84ska,372,330,3698627,9766,0 +45488,G006,507,288,699208929,10400,0 +45490,Lech,298,477,849095376,3178,0 +45491,Wioska+barbarzy%C5%84ska,338,522,699262350,2693,0 +45492,0022,321,386,2321390,8578,0 +45493,Taran,326,621,6180190,9843,0 +45494,Wioska+barbarzy%C5%84ska,633,333,7555180,9635,0 +45495,014+Narda,684,602,8337151,10083,0 +45496,024,710,511,7085502,8745,0 +45497,XDDD,346,642,698908184,6868,0 +45498,Wioska+barbarzy%C5%84ska,388,674,6948793,6142,0 +45499,-+209+-+SS,558,696,849018239,7189,0 +45500,012+.1.+Infanterie-Division,604,361,849091899,3026,0 +45501,0083,676,392,698416970,5280,0 +45502,Kurnik,478,711,699603116,8461,0 +45503,Zaplecze+Barba+015,369,339,699796330,9132,0 +45504,KONFA+TO+MARKA%2C+NARKA,294,460,698152377,2308,0 +45505,Wioska+barbarzy%C5%84ska,393,673,6948793,6143,0 +45506,058.+%2B%5BAmarant%5D%2B,703,467,7494497,10237,0 +45507,Wioska+barbarzy%C5%84ska,589,316,828637,10475,0 +45508,Wioska+barbarzy%C5%84ska,316,591,6180190,4200,0 +45509,001,530,289,699818726,8653,0 +45510,035,672,377,698635863,10495,0 +45511,Sernik+z+Andzynkami,712,504,699126484,9607,0 +45512,Wioska+barbarzy%C5%84ska,368,344,3698627,7219,0 +45513,0320,574,689,698659980,7527,0 +45514,Kagusiowo+6,304,444,849101268,5127,0 +45515,KR%C3%93L+PAPI+WIELKI,711,524,698191218,7879,0 +45516,Wioska+dawszz3,294,526,849094688,5838,0 +45517,015+-+Nowy+Pocz%C4%85tek...,354,647,6948793,6612,0 +45518,Elo+Elo+18,313,582,699016994,3164,0 +45519,010+Heerenveen,645,356,7340529,10654,1 +45520,Z%C5%82oty+%C5%9Awit,572,310,699883079,9659,0 +45521,Sernik+z+Andzynkami,711,506,699126484,8082,0 +45522,004,296,555,9280477,9976,0 +45523,Wioska+barbarzy%C5%84ska,539,292,698350371,7968,0 +45524,115+invidia,502,710,849093426,10401,1 +45525,Dream+on,299,492,698962117,4490,0 +45526,122+invidia,504,706,849093426,9582,0 +45527,%23%23%23041%23%23%23,584,687,698285444,10495,0 +45528,KONFA+TO+MARKA%2C+NARKA,298,449,698152377,10291,0 +45529,XXXX,562,300,849054951,10361,8 +45531,Avanti%21,288,484,698625834,6198,0 +45532,Wioska+barbarzy%C5%84ska,422,304,698231772,9066,0 +45533,C006,539,700,698599365,6529,0 +45534,EO+EO,292,502,699697558,8863,0 +45535,C.030,711,481,9188016,4471,0 +45536,036,669,380,698635863,9611,0 +45537,198...segador,438,297,6920960,10787,0 +45538,-+272+-+SS,550,701,849018239,5438,0 +45539,aaaa,388,672,6948793,9432,0 +45540,New+World,436,703,698152377,9717,0 +45542,P%C3%B3%C5%82nocny+Bagdad,618,331,8847546,9835,0 +45543,O094,334,619,272173,9684,0 +45544,3.C.,452,694,699777372,8893,0 +45545,04-oss,674,617,848921861,10187,0 +45546,MojeDnoToWaszSzczyt,502,293,9299539,9961,0 +45547,-+277+-+SS,553,702,849018239,10000,0 +45548,BRICKLEBERRY,511,288,7758085,10375,0 +45549,FAKE+OR+OFF,415,315,698231772,9812,0 +45550,New+World,423,694,698152377,10297,7 +45551,boh81%2F50w,298,470,848889556,7973,0 +45552,D.030,385,669,849088243,3531,0 +45553,C009,542,704,698599365,6421,0 +45554,%2AINTERTWINED%2A,512,711,698704189,6440,0 +45555,C021,365,666,699383279,9804,0 +45556,%230222+Segadorr+dar,451,302,1238300,10178,0 +45557,Z%C5%82oty+%C5%9Awit,577,308,699883079,7363,0 +45559,%23%23%23097%23%23%23,584,693,698285444,10495,0 +45560,076+Volantis,702,432,2135129,8059,0 +45561,Wioska012,686,396,698768565,5505,0 +45562,Cisza,300,539,698769107,2922,0 +45563,C0231,294,547,8841266,6855,0 +45564,37.+Kufe+4,706,456,699804790,2770,0 +45565,P%C3%B3%C5%82nocny+Bagdad,619,329,8847546,10068,0 +45566,%230307+sliwatojo,465,295,1238300,2122,0 +45567,o03,609,682,699189792,9747,0 +45568,Wioska+barbarzy%C5%84ska,395,678,699736927,2185,0 +45569,C081,360,658,699383279,9047,0 +45570,Jaaa,622,590,698635863,10266,0 +45572,EO+EO,295,501,699697558,8280,0 +45575,bucksbarzy%C5%84skamiiiru,322,395,848955783,9924,0 +45576,%23%238,349,355,2800032,5612,0 +45577,C029,367,666,699383279,6307,0 +45578,asd,621,330,8675636,10019,0 +45579,Avanti%21,292,487,698625834,3141,0 +45580,Wioska+barbarzy%C5%84ska,712,498,699429153,7844,0 +45581,KR%C3%93L+PAPI+WIELKI,668,621,698191218,9884,0 +45582,Na+Kra%C5%84cu+%C5%9Awiata+017,639,343,9291984,4010,0 +45583,002,589,309,1767876,6588,0 +45584,%5B200%5D,680,385,8000875,3184,0 +45585,%2136+56+Stulpicani,658,357,698361257,7804,0 +45586,XDX,597,311,699098531,9259,0 +45587,Kurnik,507,712,699603116,11321,0 +45588,bucksbarzy%C5%84skamiiiru,324,386,848955783,4391,0 +45589,B014,623,330,8740199,8561,0 +45590,Wioska+barbarzy%C5%84ska,692,408,699598425,8833,0 +45591,A%23035,710,487,2065730,9797,0 +45592,Wioska+barbarzy%C5%84ska,331,375,849027025,2016,0 +45593,C0223,290,535,8841266,5637,0 +45594,005,393,323,8153941,7460,0 +45595,FP031,471,708,699605333,9325,0 +45596,Dream+on,294,490,698962117,9534,0 +45597,Bessa+010,640,655,848987051,10218,0 +45598,S02A,604,676,8627359,4788,0 +45599,Wioska+barbarzy%C5%84ska,708,480,8925695,2647,0 +45600,Tego+typu%21,708,503,8418489,8063,0 +45601,AAA,543,301,1006847,7999,0 +45602,31+Jura,396,316,698231772,9699,0 +45603,056-+Mroczna+Osada,651,362,849035905,3451,0 +45604,%2A022,668,370,7758085,6550,0 +45605,KR%C3%93L+PAPI+WIELKI,667,618,698191218,9369,0 +45606,0067,366,336,848913037,6533,0 +45607,%2136+65+Bucsoaia,659,363,698361257,9695,0 +45608,Winterfell.018,446,293,848918380,10178,0 +45609,KONFA+TO+MARKA%2C+NARKA,298,450,698152377,10294,0 +45610,011,407,691,849099876,10495,0 +45611,032+Wioska+barbarzy%C5%84ska,604,686,699346280,10160,0 +45613,%3D0016%3D,405,319,698231772,9207,0 +45614,Lord+Arsey+KING,658,641,848956513,8608,0 +45615,klops33,625,668,848909464,10242,0 +45616,XDX,609,322,699098531,10290,0 +45617,025.,628,667,699695167,4215,0 +45619,Wioska+barbarzy%C5%84ska,423,303,698231772,9409,0 +45620,AAA,550,294,1006847,9846,3 +45622,273...gulden,462,295,6920960,4693,0 +45623,komandos,639,662,7976264,10238,0 +45624,MojeDnoToWaszSzczyt,496,291,9299539,9962,0 +45625,MojeDnoToWaszSzczyt,510,296,9299539,9845,0 +45626,S001,683,592,8428196,9825,0 +45627,Ryan+-+Problem,650,643,1106220,1472,0 +45628,35.+Kufe+2,704,458,699804790,5800,0 +45629,D%C5%BCejd%C5%BCej+2,665,629,849098326,9577,0 +45630,069,406,689,849099876,10495,0 +45631,022Szyja,469,707,698620694,9761,0 +45632,Kurnik,476,712,699603116,9593,0 +45633,FP011,475,707,699605333,10105,0 +45634,0062+%7E22%7E,439,438,3909522,8230,0 +45635,41+Ho%C5%82opole,704,536,8976313,3747,0 +45636,So%C5%82tys+Wsi+WojTool,361,346,849027025,9751,0 +45637,0033+Kasko14,449,697,849037407,10229,0 +45638,Zzzz+-+Kasztelania+004,642,352,9291984,4458,0 +45639,KONFA+TO+MARKA%2C+NARKA,298,448,698152377,10291,9 +45640,Bessa+012,641,655,848987051,10223,0 +45641,45.+Rowan,709,527,8976313,3241,0 +45642,MojeDnoToWaszSzczyt,498,290,9299539,9764,0 +45643,EO+EO,289,521,699697558,10362,0 +45644,204,366,662,699269923,6791,0 +45645,Osada+2,694,426,8675636,10019,0 +45646,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,495,707,8980651,9378,2 +45647,Wioska+barbarzy%C5%84ska,568,698,7756002,7368,0 +45648,C.031,709,477,9188016,4686,0 +45649,Ciemnogr%C3%B3d+%233,337,363,849096958,8850,0 +45650,C0216,297,528,8841266,7942,0 +45651,008,385,323,699660539,9201,0 +45652,0058+181.11,447,701,849037407,5130,0 +45654,004a,303,418,8259895,5230,0 +45655,012+Gilead,662,640,8337151,10495,8 +45656,Ave+Why%21,309,589,6180190,8264,0 +45657,komandos+.....00,632,664,7976264,9925,0 +45658,KR%C3%93L+PAPI+WIELKI,646,649,698191218,7003,0 +45660,045+invidia,521,707,849093426,9733,0 +45661,KR%C3%93L+PAPI+WIELKI,651,640,698191218,6318,0 +45662,New+WorldA,288,525,849084005,5772,0 +45663,005,300,549,849098688,5988,0 +45664,New+World,418,697,698152377,9320,0 +45665,%23%23%23042%23%23%23,585,687,698285444,10495,0 +45666,Wioska+barbarzy%C5%84ska,622,672,848909464,10242,0 +45667,C.013,698,492,9188016,10000,0 +45668,%3D024%3D+Szlachta,705,572,3781794,10580,0 +45669,Angella+xxx,654,352,1715091,2725,0 +45670,Yogi,514,545,2808172,5848,0 +45671,Wioska+003,644,353,9291984,2005,0 +45673,KONFA+TO+MARKA%2C+NARKA,295,457,698152377,10294,0 +45674,010,293,541,849098688,9835,3 +45676,S014,686,592,8428196,6607,0 +45677,A%23018,713,473,2065730,9797,0 +45678,Cisza,294,550,698769107,5948,0 +45679,023,305,560,9280477,8985,0 +45680,P%C3%B3%C5%82nocny+Bagdad,612,322,8847546,10068,0 +45681,Pocz%C4%85tek,302,576,7842579,4299,0 +45682,New+Land+03,329,384,849064752,4936,0 +45683,008+szymaan,604,680,699346280,10160,0 +45684,30.+Tolkiny,713,486,699804790,5219,0 +45686,Szlachcic,363,342,698388578,6986,0 +45687,058...barbarka,434,303,6920960,10495,3 +45689,P%C3%B3%C5%82nocny+Bagdad,618,324,8847546,9976,0 +45690,C063,359,651,699383279,10216,9 +45691,Wioska+barbarzy%C5%84ska,711,494,699429153,5982,0 +45692,010+Edek6969,609,679,699346280,10160,0 +45693,Obrze%C5%BCe,583,693,7589468,8817,9 +45694,HAPERT,627,663,848909464,9434,0 +45695,Szlachcic,364,334,698388578,6861,0 +45697,MojeDnoToWaszSzczyt,493,287,9299539,9958,0 +45698,New+World,430,692,698152377,10292,0 +45699,Z08,316,408,356642,9835,0 +45700,Winterfell.007,446,298,848918380,10178,2 +45701,09-oss,671,612,848921861,8168,0 +45703,...,338,365,699657450,5622,0 +45704,So%C5%82tys+wsi+XTOskar,358,342,849027025,9361,0 +45706,002%3AWioska+MFJZZ,375,329,8772425,10160,0 +45707,%23%23%23043%23%23%23,588,688,698285444,10495,0 +45708,Pocz%C4%85tek,312,587,7842579,9955,0 +45709,Wioska+barbarzy%C5%84ska+004,562,704,6870350,8636,0 +45711,066,408,685,849099876,10495,0 +45712,New+World,427,696,698152377,10292,0 +45713,XXXX,566,304,849054951,10068,0 +45715,C0217,297,535,8841266,9571,0 +45716,AAA,551,293,1006847,8475,0 +45717,Taran,325,614,6180190,9959,0 +45718,5+QUEEN,345,358,6315553,2361,0 +45719,Criminal,700,426,699785935,6477,0 +45720,XDX,600,314,699098531,9957,0 +45721,055.Stradi,435,303,698365960,10495,0 +45722,BRICKLEBERRY,552,301,699072129,10311,0 +45723,109,413,695,849099876,9841,0 +45724,%5BD%5D_%5B004%5D+Dejv.oldplyr,289,500,699380607,7902,0 +45725,Wioska+084,675,606,848971079,8773,0 +45726,AAA,540,298,1006847,9347,0 +45727,029+Wioska+barbarzy%C5%84ska,601,686,699346280,9401,0 +45728,0092,678,391,698416970,8615,0 +45729,ZA14,318,411,356642,9612,0 +45730,204...segador,444,295,6920960,10654,5 +45732,Wioska+barbarzy%C5%84ska,649,355,0,1542,0 +45733,009.+Kusy,348,637,698908184,9825,0 +45734,C052,378,663,699383279,7679,0 +45735,%3D073%3D+Na+wschodzie+Zima,708,564,3781794,10580,0 +45736,%23%23%23044%23%23%23,597,688,698285444,10495,0 +45737,Wioska+barbarzy%C5%84ska,704,474,699574408,8465,0 +45738,Wioska+barbarzy%C5%84ska,624,664,6818593,6274,0 +45740,Wioska+barbarzy%C5%84ska,695,559,6929240,4743,0 +45741,0020,515,527,699432672,10495,0 +45742,040.+Iczy%C5%84ska+Sopka,702,556,1601917,7621,0 +45743,Wioska+barbarzy%C5%84ska,317,594,7183372,5247,0 +45744,Wioska+barbarzy%C5%84ska,538,294,698350371,6142,0 +45745,Taran,326,623,6180190,9976,3 +45746,%5B0182%5D,288,495,8630972,7751,0 +45747,wioska,631,337,849102068,12154,0 +45748,komandos,632,661,7976264,8556,0 +45749,017,529,708,698996782,9033,0 +45750,bucksbarzy%C5%84skamiiiru,335,380,848955783,4695,0 +45752,Wioska+barbarzy%C5%84ska,671,388,8675636,9779,0 +45753,0029,323,386,2321390,2602,0 +45754,Wioska+barbarzy%C5%84ska,559,703,699828442,8557,0 +45755,007,648,651,849101148,7909,0 +45756,%5B0114%5D,440,312,8630972,10078,0 +45757,KONFA+TO+MARKA%2C+NARKA,295,445,698152377,10290,0 +45758,0017,500,495,698599365,9778,0 +45760,%3F%3F%3F%3F,469,293,698489071,7227,0 +45762,%2AINTERTWINED%2A,511,704,698704189,9520,0 +45763,Wiadro06,670,629,8677963,8273,0 +45764,%23K75+0001,520,715,699728159,9761,0 +45765,005,295,558,9280477,9679,0 +45766,Wow13,359,350,849027025,4421,0 +45767,0047+village,438,694,849037407,10490,0 +45768,017,648,348,9148043,5650,7 +45769,009+-+Nowy+Pocz%C4%85tek...,358,649,6948793,10375,0 +45770,014+Angers,612,361,6822957,10534,0 +45771,Wioska+barbarzy%C5%84ska,580,311,828637,10291,0 +45772,Gomora,418,312,699694284,8932,0 +45774,Wioska+barbarzy%C5%84ska,631,336,7555180,6515,0 +45775,Wioska+barbarzy%C5%84ska,376,669,699269923,7853,0 +45776,Wioska+barbarzy%C5%84ska,333,373,849027025,2556,0 +45777,001.+G%C3%B3rki+Wielkie,653,637,849100994,10845,0 +45778,037,674,386,698635863,7639,0 +45779,049+sebaseba1991,619,675,699346280,10160,0 +45780,New+WorldA,294,523,849084005,8547,0 +45781,010.+Wioska+barbarzy%C5%84ska,342,638,698908184,9806,0 +45782,Wioska+barbarzy%C5%84ska+3,307,585,699016994,9733,0 +45783,Wioska+barbarzy%C5%84ska,710,489,699429153,7355,0 +45784,Verka,626,336,849061374,7161,0 +45785,005,593,308,1767876,2660,0 +45786,Wioska+barbarzy%C5%84ska,686,606,3589487,2658,0 +45787,C.002,704,494,9188016,10000,6 +45788,Wioska+barbarzy%C5%84ska,537,294,698350371,8853,0 +45789,017.+Pomodoro+e+basilico,330,379,849102092,4715,0 +45790,211,431,306,8630972,5975,0 +45791,Piek%C5%82o+to+inni,638,341,848956765,4474,0 +45792,MojeDnoToWaszSzczyt,503,289,9299539,9962,0 +45793,New+World,421,694,698152377,10294,0 +45794,047+Austria,577,465,7092442,10495,0 +45795,KR%C3%93L+PAPI+WIELKI,662,635,698191218,10000,0 +45796,007.+Stories,712,508,254937,9788,3 +45798,C0342,295,539,8841266,2439,0 +45799,014,391,325,8153941,2895,0 +45800,Wioska+barbarzy%C5%84ska,553,698,7589468,8097,0 +45801,MojeDnoToWaszSzczyt,505,294,9299539,9964,0 +45802,C0244,293,528,8841266,4700,0 +45803,asd,622,331,8675636,8576,0 +45804,%3D115%3D+Albany,700,568,3781794,7021,0 +45805,Wioska+barbarzy%C5%84ska,573,701,7756002,5469,0 +45806,-+273+-+SS,553,700,849018239,6756,0 +45807,O041,334,627,272173,10068,0 +45808,Wioska+barbarzy%C5%84ska,636,657,848987051,9843,0 +45809,Wioska+barbarzy%C5%84ska,618,677,6818593,4310,0 +45810,%23%23%23098%23%23%23,580,692,698285444,10495,0 +45811,D008,353,645,272173,9714,0 +45812,O122,332,622,272173,9824,0 +45813,Osada+4,699,423,8675636,9560,0 +45814,Didi,682,568,849070946,10141,0 +45815,Wioska+barbarzy%C5%84ska,689,589,7038651,1362,0 +45816,Wioska+barbarzy%C5%84ska,518,292,7758085,8368,0 +45817,Wioska+barbarzy%C5%84ska,709,488,699429153,7155,0 +45818,Wioska+barbarzy%C5%84ska,336,376,7462660,2779,0 +45820,059,714,514,7085502,7865,0 +45821,Wioska+barbarzy%C5%84ska,384,323,699660539,3537,0 +45822,Wioska+barbarzy%C5%84ska,376,672,699269923,8172,0 +45823,Wioska+barbarzy%C5%84ska,362,654,849014922,9835,0 +45824,%23%23%23045%23%23%23,599,687,698285444,10495,0 +45825,015.+Wioska+barbarzy%C5%84ska,345,637,698908184,8086,0 +45826,KATTEGARD,494,288,763529,5189,0 +45827,237,405,316,7271812,2799,0 +45828,%5B0266%5D,290,514,8630972,5573,0 +45829,Wioska+barbarzy%C5%84ska,708,524,7047342,8742,0 +45830,Elo+Elo+14,313,583,699016994,5992,0 +45831,023.Stradi,434,305,698365960,10495,0 +45832,A%23009,712,500,2065730,9797,0 +45833,Bytom,487,288,699278528,8753,0 +45834,%5B0227%5D,289,505,8630972,4631,0 +45836,041,305,577,926823,1754,0 +45837,NBT+2,593,693,849047044,6665,0 +45838,C084,358,653,699383279,9907,0 +45839,C.021,709,480,9188016,4678,0 +45840,Wioska+barbarzy%C5%84ska,576,308,828637,9982,0 +45841,Wied%C5%BAma+-+Z+011,303,434,9239515,3233,0 +45842,014.+Changtse,707,552,1601917,10495,0 +45844,Wydzia%C5%82+zamiejscowy,300,424,699821629,7658,0 +45846,Z25,311,406,356642,9835,0 +45847,Taran,684,402,699598425,10728,0 +45848,.achim.,482,290,6936607,6156,0 +45849,04.+Konstantynopol,710,537,848946700,10481,0 +45850,007,304,422,8259895,4429,0 +45851,Wioska+barbarzy%C5%84ska,593,311,698350371,3159,0 +45852,%C5%BBUBEREK+019+Dawaj+grube+majster%21,608,677,33900,10585,0 +45853,018,656,643,2323859,8531,0 +45854,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,657,698807570,6867,0 +45855,kto+ananasowy+pod+wod%C4%85+ma+dom,708,450,699628084,9938,0 +45856,54+nie+barbarzy%C5%84ska,296,458,849018442,4931,0 +45857,005,591,312,1767876,4229,0 +45860,EO+EO,294,502,699697558,8281,0 +45861,Winterfell.009,454,299,848918380,10178,3 +45863,0020,394,318,2321390,5106,0 +45864,001+IIIIIIIIIIIII,394,326,8153941,9885,0 +45865,Koziarowo+4,505,295,849100228,8619,0 +45867,Angella+xx,653,353,699875213,2330,0 +45868,271...emerson,461,297,6920960,6849,0 +45869,Taran,327,625,6180190,8713,0 +45871,Monte+Christo,703,435,699785935,7368,0 +45872,Z15,315,405,356642,9835,0 +45873,Wioska+WITWIC,696,423,699488108,9965,0 +45874,Pocz%C4%85tek,308,581,7842579,10040,0 +45875,Wied%C5%BAma+-+Z+010,299,434,9239515,2255,0 +45876,043.,450,708,849034882,10426,0 +45877,%5B0183%5D,287,498,8630972,8486,0 +45878,Dzik+14,300,428,8366045,3670,0 +45880,079,412,687,849099876,8886,0 +45882,Wioska,385,320,2268889,6105,0 +45884,006,594,318,699098531,3843,0 +45885,027Porz%C4%85dki,463,710,698620694,6090,0 +45886,Kurnik,483,708,699603116,10137,0 +45887,O014,337,634,272173,9956,0 +45888,%23%23%23014%23%23%23,600,682,698285444,10495,9 +45890,Jednak+wol%C4%99+gofry,464,704,699725436,9624,0 +45891,KR%C3%93L+PAPI+WIELKI,644,646,698191218,9621,0 +45892,krytl19,511,317,1990750,7326,0 +45893,KONFA+TO+MARKA%2C+NARKA,295,437,698152377,7608,0 +45894,007a,304,423,8259895,5273,0 +45895,Z21,317,403,356642,9835,0 +45896,Wioska+barbarzy%C5%84ska,689,422,699488108,4788,0 +45897,%23043,549,292,849064614,4480,0 +45898,051,712,511,7085502,6608,0 +45899,C08,705,447,849093742,6060,0 +45901,Wioska+barbarzy%C5%84ska,671,622,1049851,4015,0 +45902,014,389,319,699660539,3251,0 +45903,Wioska+barbarzy%C5%84ska,560,700,7860453,4633,0 +45904,Na+SsSskraju,299,557,1536625,9170,6 +45905,Wioska+barbarzy%C5%84ska,374,666,699269923,7671,0 +45906,sebastianxxx19,623,667,848909464,10319,0 +45907,0031,322,385,2321390,2535,0 +45908,026.,622,670,699695167,4282,0 +45909,Wioska+barbarzy%C5%84ska11,291,522,698879638,2221,0 +45910,bucksbarzy%C5%84skamiiiru,319,398,848955783,8965,0 +45911,B008,626,328,8740199,9974,0 +45912,Wioska+barbarzy%C5%84ska,650,353,1715091,2781,0 +45913,10.BTOB,692,416,9180206,8657,0 +45914,021,302,561,849098688,9835,0 +45915,Wioska+barbarzy%C5%84ska,517,318,698350371,5596,0 +45916,C.022,710,486,9188016,5199,0 +45917,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,487,710,8980651,6999,0 +45918,Blob,551,706,699443920,8684,0 +45919,Wioska+barbarzy%C5%84ska,381,328,3698627,9915,0 +45920,59+Go%C5%9B%C4%871,295,475,849018442,8292,2 +45921,Wioska+Staszek+M,568,694,698723158,5401,0 +45922,-+207+-+SS,544,699,849018239,7644,0 +45923,048.+Jastrz%C4%99bia+Turnia,700,549,1601917,7721,0 +45924,%2AW000,663,376,7758085,9377,0 +45925,Melon3,308,429,699659708,3882,0 +45926,Wioska+barbarzy%C5%84ska,642,651,848987051,10237,0 +45927,Tzarski+-+o3,646,652,699783063,5202,0 +45928,%3D077%3D+BORSUCZEK,699,566,3781794,9211,0 +45929,.achim.,479,289,6936607,9549,0 +45930,013+telimena,615,680,699346280,10160,0 +45931,Wioska+barbarzy%C5%84ska,397,315,698231772,8088,0 +45932,Nie+Teraz,710,456,699785935,8328,0 +45933,Wioska+barbarzy%C5%84ska,579,307,828637,9908,0 +45935,Wulfenit,704,553,17714,10222,0 +45936,018,293,463,2418364,4061,0 +45937,012,699,468,699150527,10040,0 +45938,064-+Mroczna+Osada,654,360,849035905,2449,0 +45941,C11,702,448,849093742,4653,0 +45942,Czekaj%2C+chwila%21,688,399,699785935,6484,0 +45943,C0214,292,533,8841266,8849,0 +45944,%3D088%3D+Wioska+barbarzy%C5%84ska,703,561,3781794,9357,0 +45945,.achim.,481,287,6936607,8611,3 +45946,B%23023,703,455,2065730,9797,0 +45947,Wioska+barbarzy%C5%84ska,652,354,1715091,2979,0 +45948,%5B201%5D,678,602,8000875,4000,0 +45949,Wioska+barbarzy%C5%84ska,696,562,6929240,6054,0 +45950,Wioska+barbarzy%C5%84ska,303,582,698663855,3552,0 +45951,071-+Mroczna+Osada,621,333,849035905,2386,0 +45952,B%23006,700,450,2065730,9797,0 +45953,Wioska+barbarzy%C5%84ska,598,689,0,2032,0 +45954,MojeDnoToWaszSzczyt,495,294,9299539,9980,0 +45955,Wioska+G,541,295,1867161,3152,0 +45956,Wioska+barbarzy%C5%84ska,504,709,698704189,4949,0 +45958,New+World,420,694,698152377,10295,0 +45959,Pocz%C4%85tek,307,583,7842579,9648,0 +45960,0057+181.04,449,701,849037407,5016,0 +45962,C116,360,653,699383279,9549,0 +45963,202,368,663,699269923,9564,0 +45964,153,399,687,849099876,10495,0 +45965,206...segador,454,301,6920960,10744,0 +45966,Jednak+wol%C4%99+gofry,425,648,699736927,6328,0 +45967,007b,303,421,8259895,5743,0 +45968,pozew,703,527,1895081,2225,0 +45969,005+VLV,560,304,849100656,9181,0 +45970,C077,359,661,699383279,4334,0 +45971,A%23023,711,504,2065730,9797,0 +45972,4+KORN,345,357,6315553,2931,0 +45973,Wioska+barbarzy%C5%84ska,631,341,849102068,2519,0 +45974,030.+G%C5%82owa+Cukru,708,539,1601917,8194,0 +45975,Horyzont+zdarze%C5%84,517,551,7581876,10019,0 +45976,Wioska+przembarca20,286,505,9148439,8120,0 +45977,Joanna,526,708,699733501,9441,0 +45978,Wioska+barbarzy%C5%84ska,379,331,3698627,9137,0 +45979,So%C5%82tys+Wsi+Maciekp011,353,348,849027025,9553,0 +45980,bucksbarzy%C5%84skamiiiru,317,400,848955783,6847,0 +45981,C0221,291,533,8841266,5927,0 +45982,0069+Wioska+barbarzy%C5%84ska,446,704,849037407,8513,0 +45983,%2A225%2A,333,382,699273451,10211,4 +45984,Wioska+barbarzy%C5%84ska,695,433,1715091,9365,0 +45986,C065,359,653,699383279,10194,0 +45987,232,422,330,7271812,4521,0 +45988,017.+Wioska+barbarzy%C5%84ska,349,636,698908184,7613,0 +45989,Vedette,553,293,699072129,10362,0 +45990,Wioska+barbarzy%C5%84ska,711,491,699429153,5237,0 +45991,%5B0126%5D,447,299,8630972,9331,0 +45992,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,487,709,8980651,10220,0 +45993,Wioska+barbarzy%C5%84ska,633,657,848987051,9868,0 +45994,05.+Kaer+Moren,709,541,8976313,9808,0 +45995,Z20,316,404,356642,9835,0 +45996,010,324,378,7386358,2982,0 +45997,Wioska+barbarzy%C5%84ska,303,556,5997814,4428,0 +45998,Wioska+barbarzy%C5%84ska,588,309,828637,10474,0 +45999,TWIERDZA+.%3A004%3A.,694,577,7154207,10275,0 +46000,0027+Wioska+barbarzy%C5%84ska,442,700,849037407,10476,0 +46001,O081,333,628,272173,9887,0 +46003,002,528,288,699818726,8584,0 +46004,AAA,534,298,1006847,8921,0 +46005,K33,320,384,699794765,2908,0 +46006,003,521,296,699208929,10469,4 +46008,Avanti%21,286,485,698625834,8738,0 +46009,Mniejsze+z%C5%82o+0024,318,391,699794765,7920,8 +46010,B15,695,545,848995478,10640,0 +46011,0111,395,675,7085510,8565,6 +46012,D010,350,649,272173,8651,0 +46013,120+invidia,499,711,849093426,8384,0 +46014,G001,515,291,699208929,9912,0 +46015,Akademia+Sztuk+Pi%C4%99knych,701,431,699785935,6317,0 +46016,New+World,435,697,698152377,10297,0 +46017,Bagno+23,486,713,848883684,7188,0 +46018,New+World,422,691,698152377,10294,0 +46020,FAKE+OR+OFF,408,311,698231772,9706,0 +46021,026,704,468,849091105,8581,5 +46022,XXX,292,474,699794765,9282,0 +46023,bucksbarzy%C5%84skamiiiru,318,395,848955783,10001,0 +46024,Kagusiowo+2,298,439,849101268,5964,0 +46025,A-001,324,379,699406247,9299,0 +46026,%5B0140%5D,447,295,8630972,9346,0 +46028,Taran,312,597,6180190,6258,0 +46029,Wioska+barbarzy%C5%84ska,511,711,698704189,1773,0 +46030,EEE+Barba+2,464,289,699796330,9140,0 +46031,Psycho+to+Marka%2C+Narka+%21,303,570,698167138,6300,0 +46032,Wioska+barbarzy%C5%84ska,534,295,698350371,8715,0 +46033,WB17,311,418,356642,6215,0 +46034,%7C%7CUzbekistan,289,532,699697558,7921,0 +46035,109+invidia,504,711,849093426,10362,8 +46036,Deeee,289,474,848981726,10083,0 +46037,Wioska+barbarzy%C5%84ska,341,367,7462660,9621,0 +46038,EO+EO,288,521,699697558,9064,0 +46039,Zeta+Reticuli+OO,471,287,699323302,10728,0 +46040,bucksbarzy%C5%84skamiiiru,328,382,848955783,2668,0 +46041,0154,387,679,7085510,4530,0 +46042,Zermatyzm,297,439,848970357,1350,0 +46043,C0347,298,537,8841266,2147,0 +46044,0062,365,339,848913037,9993,0 +46045,Wioska+barbarzy%C5%84ska,382,671,699269923,8033,0 +46046,KR%C3%93L+PAPI+WIELKI,661,637,698191218,10000,0 +46047,020,298,561,9280477,7651,0 +46048,Wioska+C,540,291,1867161,5120,1 +46049,Bessa+004,641,659,848987051,10010,0 +46050,MojeDnoToWaszSzczyt,498,287,9299539,9973,0 +46051,%23041%23,626,635,692803,9761,0 +46052,G003,515,296,699208929,8118,0 +46053,Wioska+barbarzy%C5%84ska,389,674,6948793,7516,0 +46054,019,509,282,849010255,9828,0 +46055,002,438,298,699562874,8836,1 +46057,026+Wioska+barbarzy%C5%84ska,604,677,699346280,9224,0 +46058,003,313,593,6180190,9815,6 +46059,O070,328,626,272173,9868,0 +46060,013,466,709,848896948,9582,0 +46061,028,701,459,849031818,4145,0 +46062,Szlachcic,361,339,698388578,5706,0 +46063,085+Ard+Carraigh,545,292,699854484,9899,0 +46065,Jednak+wol%C4%99+gofry,465,702,699725436,8988,0 +46067,Wioska+barbarzy%C5%84ska,303,584,698663855,4099,0 +46068,FAKE+OR+OFF,423,302,698231772,9960,0 +46069,Co+masz+w+%C5%9Brodku%3F,689,403,699785935,7170,0 +46070,Wioska+barbarzy%C5%84ska,569,696,698723158,4418,0 +46071,Wiadrowo+Dolne,288,490,849100877,4965,0 +46072,053.+Wioska+barbarzy%C5%84ska,706,472,7494497,8386,0 +46073,W26,690,416,699524362,3078,0 +46074,%2136+65+Todiresti,659,369,698361257,9749,0 +46075,--007--,570,297,542253,7433,0 +46076,012,312,589,6180190,7882,0 +46077,Wioska+barbarzy%C5%84ska,422,302,698231772,8533,0 +46078,Wioska+barbarzy%C5%84ska,704,515,254937,8234,0 +46079,%3D071%3D+Wioska+barbarzy%C5%84ska,701,562,3781794,9072,0 +46080,Wioska+barbarzy%C5%84ska,652,358,1715091,2756,0 +46081,Wioska+barbarzy%C5%84ska,533,289,849088639,5901,0 +46082,Osada+5,699,425,8675636,9494,0 +46083,Osada+10,695,432,699524891,9737,0 +46084,Wioska+barbarzy%C5%84ska,706,557,17714,9799,0 +46085,017+G%C3%B3rki+G%C3%B3reczki,653,640,849100994,3532,0 +46086,Bessa+014,642,653,848987051,10115,0 +46087,031.+Girowa,710,534,1601917,10207,0 +46088,0072+Wioska+barbarzy%C5%84ska,447,690,849037407,3988,0 +46089,WB15,309,414,356642,4570,0 +46090,Wioska+barbarzy%C5%84ska,337,368,7462660,4409,0 +46091,KONFA+TO+MARKA%2C+NARKA,301,445,698152377,7680,0 +46092,TWIERDZA+.%3A002%3A.,692,577,7154207,10311,0 +46093,0111,708,500,699429153,9584,0 +46094,007,297,557,9280477,9976,4 +46095,a-7,677,610,848921861,6722,0 +46096,06.+Val+Dorcia,708,540,848946700,10495,0 +46097,%23%237,347,352,2800032,6824,0 +46098,FP030,470,707,699605333,8913,0 +46099,New+World,434,698,698152377,10306,0 +46100,Taran,324,621,6180190,9424,0 +46101,Wioska+barbarzy%C5%84ska+003,562,705,6870350,9738,0 +46102,098.Stradi,441,293,698365960,9443,0 +46103,Wioska+barbarzy%C5%84ska,532,297,699818726,4482,0 +46104,Wioska+barbarzy%C5%84ska,707,531,848946700,1976,0 +46105,%2136+66+Partesti+de+Sus,660,366,698361257,9950,0 +46106,%3F%3F%3F%3F,476,288,698489071,9344,0 +46107,Dream+on,290,474,698962117,6358,0 +46108,Kurnik,474,709,699603116,7002,0 +46109,O065,335,625,272173,9867,0 +46110,i+na+co+to,378,677,849097837,8465,0 +46111,Wioska+barbarzy%C5%84ska,714,500,8418489,3375,0 +46112,03-oss,677,619,848921861,10187,0 +46113,KR%C3%93L+PAPI+WIELKI,658,631,698191218,10000,9 +46114,041,410,689,849099876,10495,0 +46115,O129,331,621,272173,6304,0 +46116,a-4,676,613,848921861,10495,0 +46117,Wioska+barbarzy%C5%84ska,318,594,7183372,5626,0 +46118,Bessa+002,642,656,848987051,9993,1 +46119,016.+Wioska+barbarzy%C5%84ska,343,639,698908184,8370,0 +46120,017.,665,376,699580120,7790,0 +46121,17+Adamuswielki2..,292,451,849018442,9386,0 +46122,Wioska+barbarzy%C5%84ska,576,306,828637,9880,0 +46123,003,395,324,8153941,8177,0 +46124,%2AINTERTWINED%2A,508,706,698704189,6061,0 +46125,New+WorldA,295,548,849084005,6279,0 +46126,004,467,373,699883079,8394,0 +46127,XXXX,561,298,849054951,9746,0 +46128,Zielony+4,299,452,699876746,4001,0 +46129,Wioska+barbarzy%C5%84ska,686,411,699598425,6453,0 +46130,KR%C3%93L+PAPI+WIELKI,643,646,698191218,9943,0 +46131,S011,688,591,8428196,7454,0 +46132,035+Wioska+barbarzy%C5%84ska,606,685,699346280,9726,0 +46133,New+WorldA,288,523,849084005,6058,0 +46134,018,396,321,8153941,3729,0 +46135,Wioska+Bipi,625,338,699126490,2769,0 +46136,Wyspa,383,674,698769107,2207,0 +46137,01-oss,677,617,848921861,10187,0 +46138,-+256+-+SS,557,698,849018239,6165,0 +46139,Wioska+barbarzy%C5%84ska,650,356,0,1586,0 +46140,Wioska+barbarzy%C5%84ska,334,526,9280477,263,0 +46141,Wioska+barbarzy%C5%84ska,629,664,848909464,9189,0 +46142,141,395,682,849099876,10495,0 +46143,New+World,418,694,698152377,10300,0 +46144,Wioska+barbarzy%C5%84ska,312,554,848901396,2737,0 +46145,Bongo+Wielkie,292,490,849100877,954,0 +46146,FAKE+OR+OFF,402,311,698231772,9813,0 +46147,098,403,695,849099876,7775,0 +46148,%5B0135%5D,446,300,8630972,9337,0 +46149,53+nie+barbarzy%C5%84ska,292,454,849018442,4865,0 +46150,P%C3%B3%C5%82nocny+Bagdad,617,321,8847546,9899,0 +46151,--002--,567,300,542253,7267,0 +46152,I104,684,456,699722599,8023,0 +46153,KR%C3%93L+PAPI+WIELKI,712,523,698191218,7773,0 +46154,KONFA+TO+MARKA%2C+NARKA,300,446,698152377,6700,2 +46155,Tylko+dla+Vampirki%21,687,403,699785935,10160,0 +46156,Wioska+barbarzy%C5%84ska,536,289,849088639,5912,0 +46157,Elo+Elo,309,583,699016994,10241,0 +46158,Wiadro09,673,627,8677963,7271,0 +46159,%2136+66+Granicesti,664,361,698361257,6312,0 +46160,Wioska+barbarzy%C5%84ska,706,524,2135129,3320,0 +46161,Aaa,570,704,849055425,6669,0 +46162,Zaplecze+Barba+6,368,332,699796330,9747,0 +46163,Wioska+barbarzy%C5%84ska,708,469,699574408,7176,0 +46164,XDX,607,321,699098531,10093,0 +46165,Lord+Arsey+KING,659,644,848956513,8469,0 +46166,A%23036,710,491,2065730,9797,0 +46167,CastAway+%21033,687,605,9314079,5202,0 +46168,%2136+65+Calafindesti,658,361,698361257,5667,0 +46170,0085,682,393,698416970,5111,0 +46172,ZZ08,310,411,356642,8365,0 +46173,Taran,324,608,6180190,8553,0 +46174,Wioska+barbarzy%C5%84ska+1,311,582,699016994,9790,0 +46175,046+sebaseba1991,621,675,699346280,10160,0 +46176,Wancki,515,288,7758085,9861,0 +46177,XDX,597,315,699098531,5899,0 +46178,%2136+65+Mitocu+Dragomirnei,654,366,698361257,6005,0 +46179,020+G%C3%B3rki+Krajobrazowe,646,645,849100994,6745,0 +46180,C09,703,451,849093742,5857,0 +46182,bucksbarzy%C5%84skamiiiru,319,392,848955783,9579,0 +46183,ChceszPokojuSzykujSi%C4%99DoWojny,485,710,699333701,9745,0 +46184,tylko+pp,509,286,8240677,7173,0 +46185,Wioska+barbarzy%C5%84ska+3,452,703,698178312,4635,0 +46186,%3D0021%3D,402,316,698231772,9299,0 +46187,New+World,419,698,698152377,9292,0 +46188,C10,703,448,849093742,4832,0 +46189,Obrze%C5%BCe,578,695,7589468,8820,0 +46190,0.17b,459,709,699827112,9546,0 +46191,xxx,318,610,849100811,2546,0 +46192,Bur%C5%82ak,551,701,699443920,9761,5 +46193,Wioska+barbarzy%C5%84ska,535,706,9016560,3097,0 +46194,Wioska+barbarzy%C5%84ska,703,542,848946700,5834,0 +46195,%23%23%23099%23%23%23,579,692,698285444,10495,0 +46196,-+229+-+SS,549,699,849018239,4845,0 +46197,New+World,421,697,698152377,6460,0 +46198,A%23021,712,507,2065730,9797,0 +46199,%2A03+GAWRA%2A,304,427,2415972,9402,5 +46200,BORSUK,458,293,7518529,9525,0 +46201,XDX,600,321,699098531,6273,0 +46202,Dream+on,291,484,698962117,3194,0 +46203,Wioska+barbarzy%C5%84ska,308,419,0,290,0 +46204,PIROTECHNIK+001,353,346,849101083,9637,0 +46205,004,645,351,9291984,9627,0 +46206,WANADYNIT,703,550,17714,10363,0 +46207,003+super+hero,603,687,699346280,10160,0 +46208,009,296,548,849098688,8022,0 +46209,017.+Night+Raid,494,707,699684062,6316,0 +46210,wioska,635,338,849102068,3235,0 +46211,Kagusiowo+10,303,444,849101268,4476,0 +46212,KR%C3%93L+PAPI+WIELKI,711,508,698191218,5931,0 +46213,Kurnik,471,711,699603116,9252,0 +46215,019.Stradi,432,306,698365960,10495,0 +46216,czeska+gura,567,703,849055425,9124,0 +46217,0118,705,505,699429153,9825,0 +46219,28.BlockB,690,424,9180206,4490,0 +46221,Zaplecze+drewniane+2,371,339,699796330,9887,1 +46222,082+Hjubal,713,505,2135129,4417,0 +46223,044,662,359,9148043,6652,0 +46225,027,294,561,9280477,6992,0 +46226,Zagroda6,609,674,6528152,6304,6 +46228,New+WorldA,289,535,849084005,6571,0 +46229,Sandomierz,297,560,849101092,7943,0 +46231,4...,647,353,9291984,2321,0 +46232,014,526,292,699208929,6438,0 +46233,North+015,501,287,849064752,9650,0 +46234,Polandia,519,294,3298902,4680,0 +46236,Wioska+X06,297,460,698701911,3906,0 +46237,XDX,611,324,699098531,9623,0 +46238,Wioska+barbarzy%C5%84ska,371,330,3698627,9968,0 +46239,New+WorldA,287,523,849084005,5802,0 +46240,002,347,650,849101293,2733,0 +46241,1.05,438,703,699827112,9741,8 +46242,Wioska+barbarzy%C5%84ska,341,370,7462660,6106,0 +46243,%3D072%3D+Wioska+barbarzy%C5%84ska,700,563,3781794,9174,0 +46244,204,426,302,698365960,6586,0 +46245,Wioska+barbarzy%C5%84ska,377,672,699269923,9448,0 +46246,Wioska+barbarzy%C5%84ska,631,657,848987051,10223,0 +46247,FAKE+OR+OFF,408,309,698231772,9707,0 +46248,ElMajkelos+III,416,304,849085160,9633,0 +46249,bucksbarzy%C5%84skamiiiru,326,384,848955783,3512,0 +46250,017+Therinsford,690,597,8337151,10083,0 +46251,Z%C5%82oty+%C5%9Awit,591,315,699883079,3445,0 +46252,KR%C3%93L+PAPI+WIELKI,630,662,698191218,7860,0 +46253,Wioska+barbarzy%C5%84ska,620,672,6818593,6184,0 +46254,Pocz%C4%85tek,311,592,6180190,10040,0 +46255,0079,683,391,698416970,10019,0 +46256,Wioska+barbarzy%C5%84ska,699,443,699524891,7163,0 +46258,C0341,295,538,8841266,2550,0 +46259,a-8,679,611,848921861,5135,0 +46260,Pocz%C4%85tek,312,591,6180190,8415,0 +46261,MojeDnoToWaszSzczyt,497,293,9299539,9559,7 +46262,O111,332,623,272173,7617,0 +46263,Ger1,712,524,2246711,7610,0 +46265,012.+Arrabiata,320,383,849102092,7538,0 +46266,C.032,713,474,9188016,4475,0 +46267,Osada+9,703,426,8675636,10019,0 +46268,13+Pid%C5%BCama,712,467,849101845,9413,0 +46269,Melina,626,658,849101104,3898,0 +46270,C086,366,661,699383279,7226,0 +46271,004b,305,416,8259895,4878,0 +46272,Komandos,633,663,7976264,10495,0 +46273,096+invidia,544,710,849093426,5130,0 +46274,Wioska+barbarzy%C5%84ska,693,406,8675636,9043,0 +46275,ChceszPokojuSzykujSi%C4%99DoWojny,494,715,699333701,4982,0 +46276,predator,342,643,698908184,9049,2 +46277,EE+013,693,583,849100149,5669,0 +46278,C0240,294,546,8841266,10362,6 +46279,EO+EO,291,496,699697558,10019,0 +46280,041.+Inowiec,708,531,1601917,9413,0 +46281,%7C%7CIrak,291,531,699697558,10495,0 +46282,Wioska+barbarzy%C5%84ska,336,369,849027025,3108,0 +46283,Wioska+barbarzy%C5%84ska,707,517,699150527,7803,0 +46284,East2,677,378,1086351,6957,1 +46285,O086,334,626,272173,9938,0 +46286,New+WorldA,288,535,849084005,6106,0 +46287,rafisonik2,511,713,849101108,12154,0 +46288,Z%C5%82oty+%C5%9Awit,577,305,699883079,7231,0 +46289,bucksbarzy%C5%84skamiiiru,323,388,848955783,4951,0 +46290,Tiger+districk,659,358,699875213,3214,0 +46291,005,312,588,6180190,9899,0 +46292,Dream+on,294,484,698962117,8467,0 +46293,013,390,319,699660539,6770,0 +46294,Zzzz+-+Kasztelania+005,641,350,699733098,4208,0 +46295,D017,354,649,272173,5718,0 +46296,Wioska+0022,348,652,9186126,8461,0 +46298,Gattacka,614,386,699298370,7536,0 +46299,Wioska+barbarzy%C5%84ska,715,492,699429153,7267,0 +46300,%23%23%23100%23%23%23,585,697,698285444,10495,0 +46301,Wioska+barbarzy%C5%84ska,714,493,699429153,7145,0 +46303,038,673,383,698635863,9026,0 +46304,Wioska+08,691,589,849101162,5627,0 +46306,klops33,628,671,848909464,10242,0 +46308,%3F%3F%3F%3F,473,291,698489071,9921,0 +46309,komandos,636,665,7976264,10495,0 +46310,klops3,626,667,848909464,10242,0 +46311,Wioska+mygos,454,700,698178312,12154,0 +46312,Taran,325,625,6180190,9211,0 +46313,HAPERT,624,663,848909464,11891,0 +46314,...04+am,673,619,848921861,10495,0 +46315,KONFA+TO+MARKA%2C+NARKA,296,445,698152377,6100,0 +46316,.achim.,484,292,6936607,5201,0 +46317,010,389,321,8153941,3661,0 +46318,C.01+a+panicz+to+dok%C4%85d%3F,550,298,849026145,8995,0 +46319,B002+ZieNciu+Glina,706,463,113796,10160,2 +46320,Kurnik,517,708,699603116,8627,0 +46321,Elo+elo+3,310,585,699016994,9298,0 +46322,029,664,637,2323859,4384,0 +46323,Wioska+barbarzy%C5%84ska,336,367,849027025,4341,0 +46324,Kolorowo,686,397,699785935,6299,0 +46325,Wioska+barbarzy%C5%84ska,572,304,828637,4903,0 +46326,149,400,683,849099876,7103,0 +46327,%2AINTERTWINED%2A,514,712,698704189,3634,0 +46328,02.+Oxenfurt,705,541,8976313,9372,0 +46329,Szlachcic,363,338,698388578,6477,0 +46330,Brze%C5%BAno+Szlacheckie,459,294,849101116,9155,0 +46331,PIROTECHNIK+004,352,345,849101083,5624,0 +46332,070.,707,463,849094609,3298,0 +46333,004,303,417,8259895,4930,0 +46334,%230153+barbarzy%C5%84ska,488,292,1238300,6683,0 +46335,BOSS+S,353,344,849101604,7752,0 +46336,FAKE+OR+OFF,404,311,698231772,9825,0 +46337,Didiek,689,585,849070946,3314,0 +46338,NBT,595,690,849047044,9736,0 +46339,14.+Go%C5%82e+BABY,477,709,849092769,7126,0 +46340,002+mo%C5%BCe+si%C4%99+uda,512,709,849093426,10237,3 +46342,Wioska+barbarzy%C5%84ska,578,691,7756002,5633,0 +46343,0070+Wioska+barbarzy%C5%84ska,447,705,849037407,8689,0 +46344,Pontarfynach,352,653,849092685,4254,0 +46345,.achim.,482,286,6936607,6343,0 +46346,Wioska+barbarzy%C5%84ska,327,374,849064752,2425,3 +46347,Wioska+barbarzy%C5%84ska,393,319,698231772,4911,0 +46348,Szlachcic,361,340,698388578,7488,0 +46349,Wioska+A,542,293,1867161,6649,0 +46350,C0243,292,548,8841266,6449,0 +46351,FP016,477,704,699605333,10342,0 +46352,B%23024,705,460,2065730,9797,0 +46353,AAA,552,294,1006847,9083,0 +46354,Wioska+barbarzy%C5%84ska,641,339,9291984,3906,0 +46355,%2136+66+Plutonita,663,366,698361257,9860,0 +46356,%23K75+0010,522,713,699728159,5344,0 +46357,Wioska+barbarzy%C5%84ska,685,410,699598425,6265,0 +46358,Wioska+barbarzy%C5%84ska,373,668,699269923,7906,0 +46359,0142,391,680,7085510,4946,0 +46360,Pochodnie,704,439,849101378,3994,0 +46361,XDX,602,315,699098531,11164,0 +46362,Husaria+Blisko+1,682,600,699778867,3047,0 +46363,0134,391,682,7085510,4529,0 +46364,Wioska+barbarzy%C5%84ska,710,544,17714,6806,0 +46365,Taran,329,613,6180190,9957,0 +46366,%5B014%5D,445,707,9094538,4121,0 +46367,Bessa+009,641,658,848987051,9979,0 +46368,32+Kreda,395,316,698231772,9829,0 +46369,-16-,572,702,849032414,7887,0 +46370,025.Stradi,433,303,698365960,10495,0 +46371,059...barbarka,439,296,6920960,10311,6 +46372,%2AINTERTWINED%2A,512,705,698704189,6315,0 +46374,306,441,297,7271812,4464,0 +46375,Wioska+barbarzy%C5%84ska,711,492,699429153,7262,0 +46376,%230187+grabarz22,469,288,1238300,4136,0 +46377,002.+Diavola,321,381,849102092,9746,0 +46378,Wioska+barbarzy%C5%84ska,513,288,7758085,9737,0 +46379,New+World,423,696,698152377,8003,0 +46380,046,662,358,9148043,5626,0 +46381,XDX,594,311,699098531,4464,0 +46382,059,404,692,849099876,10495,0 +46383,040.,451,709,849034882,10838,0 +46384,Pocz%C4%85tek,302,578,7842579,9738,0 +46385,z181_28,304,436,393668,8200,0 +46386,%23K75+0016,518,710,699728159,4916,0 +46387,Sta%C5%82o+si%C4%99,689,400,699785935,8139,0 +46388,AAA,319,606,6180190,8762,0 +46389,%2136+66+Solonetu+Nou,665,368,698361257,10317,8 +46390,%5BD%5D_%5B007%5D+Dejv.oldplyr,286,506,699380607,5701,0 +46391,38.+Pan+Maszynista,711,460,699804790,6221,0 +46392,%2AINTERTWINED%2A,510,710,698704189,6318,0 +46393,%2136+75+Botosanita+Mare,659,370,698361257,6241,0 +46394,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,549,709,7589468,7466,0 +46395,Wioska+barbarzy%C5%84ska,389,328,699660539,6255,0 +46396,Maszlug+kolonia+VIII,364,431,848977649,8075,0 +46397,C.033,708,476,9188016,4486,0 +46399,Wioska+X11,296,469,698701911,4479,0 +46400,0.05+CWKS,460,702,699827112,9713,0 +46401,KR%C3%93L+PAPI+WIELKI,662,637,698191218,10000,0 +46402,asdert,531,292,699818726,8789,0 +46403,-05-,577,700,849032414,9472,0 +46404,B14,704,542,848995478,11550,2 +46405,014,350,641,698908184,4240,0 +46406,KONFA+TO+MARKA%2C+NARKA,298,458,698152377,10291,0 +46407,009,391,318,8153941,6087,0 +46408,%23%23%23101%23%23%23,581,694,698285444,10495,0 +46410,Familia+Kuzyni,379,666,7349282,3079,0 +46411,AAA,314,606,6180190,10162,3 +46412,Taran,316,611,6180190,8295,0 +46413,006,684,606,3589487,3706,0 +46414,O132,324,620,272173,9899,0 +46415,Taran,323,620,6180190,8547,0 +46416,C.023,714,481,9188016,4677,0 +46417,Z00,672,384,849055553,5951,0 +46418,Wioska+KaszczuJ+3,700,575,849104356,9761,0 +46419,55+nie+barbarzy%C5%84ska,297,456,849018442,6397,0 +46420,Ave+Why%21,308,590,6180190,10358,0 +46421,Taran,319,610,6180190,9835,0 +46422,089.Stradi,436,298,698365960,9437,0 +46423,Wioska+barbarzy%C5%84ska,309,595,8699429,3118,0 +46424,%5B0176%5D,449,291,8630972,9189,0 +46425,0105,386,681,7085510,10216,0 +46426,KR%C3%93L+PAPI+WIELKI,670,620,698191218,9580,0 +46427,Z13,313,406,356642,9835,1 +46428,179,384,679,849099876,7600,0 +46429,XXXX,563,300,849054951,10068,0 +46430,D006,355,645,272173,8142,0 +46431,018,298,559,9280477,7616,0 +46432,a-1,677,618,848921861,10495,0 +46434,%23K75+0015,515,712,699728159,5232,0 +46435,013,395,323,8153941,3554,0 +46436,R+036,495,710,699195358,6742,0 +46437,O021,336,632,272173,9959,0 +46438,Wioska+barbarzy%C5%84ska,708,448,699628084,7027,0 +46439,Wioska-011-,634,335,7675610,2363,0 +46440,%230137+deleted,471,288,1238300,10178,0 +46441,TWIERDZA+.%3A062%3A.,692,581,7154207,6815,0 +46442,ZK+Wronki,548,705,7581876,6001,0 +46443,0032,324,387,2321390,2434,0 +46444,Mmmvvvv,289,476,848981726,8853,0 +46445,FP014,481,708,699605333,10393,0 +46446,Pocz%C4%85tek,311,591,6180190,6803,0 +46447,Dream+on,294,486,698962117,3246,0 +46448,Lipinki+%C5%81u%C5%BCyckie,539,350,849101144,8510,0 +46449,Wioska+barbarzy%C5%84ska,423,300,698231772,8667,0 +46450,Wioska+barbarzy%C5%84ska,374,334,3698627,9514,0 +46451,%5B0244%5D,287,514,8630972,5884,0 +46452,O060,332,624,272173,9876,0 +46453,Wioska+brutal29,709,535,1601917,3613,0 +46454,-+263+-+SS,549,705,849018239,5093,0 +46455,KR%C3%93L+PAPI+WIELKI,658,632,698191218,10000,0 +46456,C0250,289,533,8841266,5080,0 +46457,0143,390,682,7085510,5135,0 +46458,sh01,511,285,7064954,6618,0 +46459,028,302,558,9280477,7261,0 +46460,Wioska+k01,699,437,848976034,10184,0 +46461,%2136+66+Cajvana,664,364,698361257,9275,0 +46462,%3D087%3D+St.+Augustine,701,571,3781794,10580,0 +46463,606%7C373,668,371,699580120,9239,9 +46464,Cisza,293,547,698769107,5623,0 +46465,Taran,316,608,6180190,7716,0 +46466,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,633,1434753,8939,0 +46467,Komandos,639,663,7976264,9569,0 +46468,039,672,382,698635863,8459,0 +46470,ElMajkelos+XII,417,307,849085160,3555,0 +46471,Kagusiowo+5,301,439,849101268,3399,0 +46473,007,685,607,3589487,4333,0 +46474,Wioska+barbarzy%C5%84ska,705,474,699574408,7035,0 +46475,EO+EO,289,503,699697558,8446,0 +46477,015,297,428,6131106,3879,0 +46478,Wioska+barbarzy%C5%84ska,538,703,8980651,9761,0 +46479,027.,633,668,699695167,4013,0 +46481,New+World,434,705,698152377,8809,0 +46482,003c,305,412,8259895,4826,7 +46483,%5B059%5D+Wioska+barbarzy%C5%84ska,691,424,849095068,3857,0 +46485,--033--,573,301,542253,6209,0 +46487,C019,371,668,699383279,9681,0 +46488,%2AINTERTWINED%2A,505,704,698704189,6938,0 +46489,New+World,435,699,698152377,10297,0 +46490,01.+Rome,712,538,848946700,10495,0 +46491,C007,537,702,698599365,4925,0 +46492,055.,316,597,7183372,6992,0 +46493,015.+Diran,710,550,1601917,10495,0 +46494,XDX,611,316,699098531,10290,0 +46496,0138,681,391,698416970,2627,0 +46497,BRICKLEBERRY,553,300,699072129,9681,5 +46499,FAKE+OR+OFF,407,314,698231772,9821,0 +46501,001+nie+chc%C4%99,534,711,6116940,5884,0 +46502,B027,624,326,8740199,8341,0 +46503,komands,638,663,7976264,9789,0 +46504,035,295,544,9280477,5569,0 +46505,Blessed,552,704,699443920,7139,0 +46506,092,414,688,849099876,9075,0 +46507,002+jakie%C5%9B+preferencje%3F,533,708,6116940,7130,0 +46508,%3D089%3D+Wioska+barbarzy%C5%84ska,701,563,3781794,6942,0 +46509,Wioska+barbarzy%C5%84ska,372,333,3698627,9790,0 +46510,Osada+koczownik%C3%B3w,299,424,699856962,7382,2 +46511,Wioska+01,692,591,849101162,9153,0 +46512,Borubar+6,710,485,699413581,4013,0 +46513,Wioska+barbarzy%C5%84ska,295,439,8366045,4173,0 +46514,Dream+on,292,485,698962117,5690,0 +46515,Bandalina,552,705,699443920,9761,0 +46516,Wioska+barbarzy%C5%84ska,711,496,699429153,9966,0 +46517,0071+Wioska+barbarzy%C5%84ska,444,705,849037407,4381,0 +46518,MojeDnoToWaszSzczyt,508,285,9299539,9952,0 +46519,%230217+Segadorr+dar,441,302,1238300,10178,4 +46520,011+Cedynia,287,533,9235561,3070,0 +46521,Bez+emocji+II,352,655,849092685,7938,0 +46522,C001,538,702,698599365,9595,0 +46523,Wioska+15,689,588,849101162,3742,0 +46524,Wioska+barbarzy%C5%84ska,645,654,848987051,9875,0 +46525,XDX,608,323,699098531,10048,0 +46527,Bosco,558,706,699443920,9761,0 +46528,Gotowa+odpowiedz,690,400,699785935,6705,0 +46529,WAVELLIT,708,551,17714,10216,0 +46530,Elo+elo+8,307,576,699016994,5202,0 +46531,20+Karbon,393,320,698231772,10083,5 +46532,New+World,420,693,698152377,5141,0 +46534,Wioska+barbarzy%C5%84ska,355,352,849027025,6263,0 +46535,Na+Kra%C5%84cu+%C5%9Awiata+018,640,343,9291984,4170,0 +46536,004,464,706,699725436,9555,0 +46537,%5B822%5D+Odludzie,706,439,848985692,6698,0 +46538,Wioska+barbarzy%C5%84ska,619,672,6818593,6654,0 +46539,a11,683,613,848921861,5439,0 +46540,Dream+on,293,478,698962117,3192,0 +46541,New+World,428,695,698152377,10291,0 +46542,Gites%21,389,322,8553904,2140,0 +46543,TWIERDZA+.%3A090%3A.,698,568,7154207,8581,0 +46544,B025,624,325,8740199,9500,0 +46545,Zzzz+-+Kasztelania+001,642,348,9291984,4562,0 +46546,Wioska+smurf%C3%B3w,525,287,699818726,9310,0 +46547,Ave+Why%21,502,715,699121671,5188,0 +46548,Wioska+barbarzy%C5%84ska,547,707,7581876,5697,0 +46549,XDX,609,323,699098531,10292,0 +46550,042.+Ihrowiec,701,552,1601917,7713,0 +46551,Jan+Ost+N+II,702,460,879782,5138,0 +46552,Taran,325,624,6180190,10068,0 +46553,Lord+Arsey+KING,650,653,848956513,8274,0 +46554,Osada+koczownik%C3%B3w,688,410,699598425,6395,7 +46555,Wioska+barbarzy%C5%84ska,373,666,699269923,8003,0 +46556,013.,627,668,699695167,9976,0 +46557,Z14,314,406,356642,9835,0 +46558,029+tu+b%C4%99dzie+raj,534,713,6116940,6752,0 +46559,Avanti%21,287,479,698625834,6116,0 +46560,Bunkier+u+Mariana,325,390,849101177,8264,0 +46562,Wioska+barbarzy%C5%84ska,701,544,848946700,6558,0 +46563,031.+Wioska+Lord+%C5%81ukasz1997,349,642,698908184,10795,0 +46564,%2A012%2A,681,615,1205898,8141,0 +46566,054.,704,464,849094609,5942,0 +46568,Ave+Why%21,310,590,6180190,1826,0 +46569,KONFA+TO+MARKA%2C+NARKA,293,444,698152377,7305,0 +46570,B%23015,698,445,2065730,9797,0 +46571,rafisonik5,511,715,849101108,8694,0 +46572,Wioska+barbarzy%C5%84ska,703,541,848946700,2194,0 +46573,Avanti%21,290,485,698625834,6697,0 +46574,Wioska+Wojtka,587,309,8609713,3406,0 +46575,0144,390,681,7085510,7607,0 +46576,%2136+76+Deleni,667,370,698361257,10203,0 +46577,086,396,680,849099876,10365,0 +46578,Grubasy+5,295,450,634848,3815,0 +46579,Apollo,699,428,699785935,7769,0 +46580,KR%C3%93L+PAPI+WIELKI,629,662,698191218,8351,0 +46581,Wioska+17,691,587,849101162,3984,0 +46582,017,393,322,8153941,3697,0 +46583,Z%C5%82oty+%C5%9Awit,577,299,699883079,6361,0 +46584,STREFA+GAZY+%7C+003,714,478,9228039,8983,0 +46585,Cisza,293,546,698769107,5292,0 +46586,054,462,297,2502956,8952,0 +46587,002,525,296,699208929,10469,5 +46588,%2136+66+Botosana,663,368,698361257,9843,0 +46589,Bessa+001,640,656,848987051,10216,9 +46590,B015,624,333,8740199,2878,0 +46591,%2136+66+Ciprian+Porumbescu,662,366,698361257,9875,0 +46592,C01,705,450,849093742,9066,0 +46593,O008,339,638,272173,9955,0 +46594,Wioska+barbarzy%C5%84ska,423,305,698231772,9239,0 +46595,090,383,679,849099876,9895,0 +46596,North+055,511,283,849064752,9082,0 +46597,020+Wioska+barbarzy%C5%84ska,600,689,699346280,9891,0 +46598,Wyspa_41,520,706,2585846,9638,9 +46600,%23%23%23102%23%23%23,582,692,698285444,10495,0 +46601,New+World,437,702,698152377,10311,0 +46602,251...Karki98,453,293,6920960,11420,0 +46603,Ave+Why%21,312,590,6180190,4311,0 +46604,093,411,688,849099876,10559,0 +46605,030,661,639,2323859,9573,0 +46606,052,712,512,7085502,7774,0 +46607,004%3AOsada+koczownik%C3%B3w,378,327,8772425,8499,4 +46608,XDX,612,316,699098531,10113,0 +46609,Wioska+barbarzy%C5%84ska,360,344,849027025,3221,0 +46611,KEFALOS,675,609,848890012,1739,0 +46612,komandos,639,665,7976264,10043,0 +46613,I%C5%82%C5%BCa,570,696,698723158,10063,0 +46614,07-oss,671,618,848921861,8269,0 +46615,022,524,712,698996782,9432,0 +46616,%5B0118%5D,442,297,8630972,10012,0 +46617,%23%23%23103%23%23%23,599,690,698285444,10495,0 +46618,Oww+Konfederacja,614,385,848915730,4550,0 +46619,Wioska+barbarzy%C5%84ska,520,288,7758085,9756,0 +46620,Zloty+%C5%9Awit,579,300,699883079,7187,0 +46621,Wioska+barbarzy%C5%84ska,358,349,849027025,6058,0 +46622,Wioska+barbarzy%C5%84ska,705,520,2135129,2282,0 +46623,%2A000%2A,713,512,698191218,9954,0 +46624,%23K75+0022,515,714,699728159,5132,0 +46625,0030,323,385,2321390,2800,0 +46626,Wioska+barbarzy%C5%84ska,651,648,699039013,2420,0 +46627,005,288,537,848886200,4894,0 +46628,010,313,397,8724192,2466,0 +46629,New+WorldA,292,546,849084005,4994,0 +46630,Taran,321,605,6180190,6564,0 +46631,Wioska+barbarzy%C5%84ska,380,322,699660539,10021,0 +46632,%5B0245%5D,285,514,8630972,6944,0 +46633,...,340,359,699657450,9036,0 +46635,Wioska+barbarzy%C5%84ska,699,436,1715091,7749,0 +46636,A%23031,714,492,2065730,9797,0 +46637,Wioska+barbarzy%C5%84ska,533,293,698350371,7922,0 +46638,Wioska+MMario,496,289,763529,7268,0 +46639,008b,305,424,8259895,4579,0 +46640,009,351,347,849101205,5801,0 +46641,Wioska+barbarzy%C5%84ska,640,339,9291984,4292,0 +46642,Wioska+barbarzy%C5%84ska,712,494,699429153,7083,0 +46643,%3F%3F%3F%3F,472,291,698489071,6878,0 +46644,C.024,711,488,9188016,7804,0 +46645,Star,339,369,7462660,9024,0 +46646,Dream+on,294,494,698962117,9497,0 +46647,Witten,568,704,6870350,7660,0 +46648,Wioska+barbarzy%C5%84ska,646,651,848987051,8946,0 +46649,Obrze%C5%BCe,580,693,7589468,8817,0 +46651,007,699,560,301602,4638,0 +46652,...03+am,673,618,848921861,10495,0 +46653,BOSS+S1,354,344,849101604,5391,0 +46654,027,663,638,2323859,4256,0 +46655,Wioska+barbarzy%C5%84ska,547,705,7581876,5721,0 +46656,EO+EO,287,494,699697558,10083,0 +46658,Wioska+Turystyczna+005,712,473,7588382,7639,0 +46659,%21--,658,358,698361257,2638,0 +46660,040,672,381,698635863,9050,0 +46661,XDX,597,310,699098531,9022,0 +46662,C079,354,653,699383279,9965,0 +46663,Ave+Why%21,307,593,6180190,4735,0 +46664,O097,331,623,272173,8569,0 +46665,--025--,573,300,542253,4866,0 +46666,010+G%C3%B3ry+Beorskie,670,619,8337151,10252,8 +46667,151...A,396,311,6920960,6723,0 +46668,Wioska+barbarzy%C5%84ska,317,595,7183372,6276,0 +46670,Z05,316,409,356642,9835,0 +46671,Wioska+dixon15pl,539,705,7860453,6362,0 +46672,Kurnik,469,711,699603116,9408,0 +46673,Wyspa+010,296,564,225023,7685,0 +46674,Z+0002,347,359,3909522,10221,0 +46676,028+Wioska+barbarzy%C5%84ska,600,686,699346280,9077,0 +46677,Wioska+barbarzy%C5%84ska,587,311,828637,10380,0 +46678,%230142+barbarzy%C5%84ska,483,287,1238300,6709,0 +46679,FAKE+OR+OFF,410,304,698231772,9813,0 +46680,002,469,367,699883079,9653,0 +46681,%2136+76+Romanesti,662,371,698361257,7829,0 +46682,%230276+Don+Noobas,466,295,1238300,5836,0 +46683,Taran,327,624,6180190,10300,0 +46684,Wioska+barbarzy%C5%84ska,298,423,699856962,7350,0 +46686,XDX,609,315,699098531,9680,0 +46687,Wioska+Zorro+020,676,612,849080702,8350,0 +46688,016,293,555,9280477,9379,0 +46689,Elo+elo+11,305,579,699016994,5819,0 +46690,New+World,420,697,698152377,10297,0 +46691,wioska,637,334,9291984,9483,0 +46692,001,349,347,849101205,8346,0 +46693,%23%23%23104%23%23%23,591,696,698285444,10495,0 +46694,031+Wioska+barbarzy%C5%84ska,602,686,699346280,10160,0 +46695,022,651,346,9148043,5491,0 +46696,Wioska+barbarzy%C5%84ska,495,709,7976264,5278,0 +46697,024Flanki,467,707,698620694,9592,0 +46698,776,345,641,698908184,8810,0 +46699,Wioska+barbarzy%C5%84ska,395,318,698231772,5022,0 +46700,Wioska+barbarzy%C5%84ska,377,326,3698627,9239,0 +46701,148,399,685,849099876,7636,0 +46702,Taran,686,405,699524362,10127,0 +46703,Wioska+barbarzy%C5%84ska,712,492,699429153,5731,0 +46704,C.034,714,474,9188016,4784,0 +46705,068+invidia,545,704,849093426,5509,0 +46706,Wioska+001,563,698,6870350,6688,0 +46707,Taran,324,619,6180190,8411,0 +46708,068.,312,600,6180190,5026,0 +46709,EE+010,698,572,849100149,5734,0 +46710,043%7C%7C+Indus,461,711,849035525,9039,0 +46711,028.,626,671,699695167,4048,0 +46712,Wioska+barbarzy%C5%84ska,697,417,8675636,8732,0 +46713,Wioska+barbarzy%C5%84ska,694,405,8675636,8018,0 +46714,029.,624,675,699695167,4047,0 +46715,New+WorldA,290,546,849084005,8937,0 +46716,%5B0228%5D,284,505,8630972,7278,0 +46717,New+World,423,699,698152377,10183,0 +46718,Wioska+barbarzy%C5%84ska+2x2,571,701,849055425,5632,0 +46719,Harmonia,703,436,699785935,7889,0 +46720,%5B0142%5D,449,295,8630972,8958,0 +46721,MojeDnoToWaszSzczyt,505,289,9299539,9751,0 +46722,Osada+3,699,420,8675636,9570,0 +46723,XDX,595,310,699098531,6538,0 +46724,Seredzice,572,696,698723158,10030,0 +46725,ElMajkelos+VI,413,308,849085160,10545,0 +46726,030.,625,671,699695167,3432,0 +46727,Taran,313,603,6180190,5701,0 +46728,0073,367,337,848913037,4965,0 +46729,Wioska+barbarzy%C5%84ska,583,309,698350371,454,0 +46730,043.+Istor-o-Nal,704,548,1601917,8651,0 +46732,FAKE+OR+OFF,412,311,698231772,9820,0 +46733,Wiadro12,674,624,8677963,9747,0 +46734,048,473,289,849010255,6186,0 +46735,Familia+Kuzyni,375,666,7349282,2996,0 +46736,039,683,395,849091105,9409,0 +46738,--010--,572,299,542253,7297,0 +46739,%3F%3F%3F%3F,477,292,698489071,10393,0 +46740,ZZ07,310,405,356642,9739,0 +46741,Mniejsze+z%C5%82o+0087,470,295,699794765,6894,0 +46742,D001,562,293,699299123,7138,0 +46743,Bessa+005,640,659,848987051,9985,0 +46744,C0228,293,544,8841266,7607,0 +46746,003,527,289,699818726,8587,0 +46748,DALEKO,532,704,699827112,10471,0 +46749,TWIERDZA+.%3A006%3A.,697,574,7154207,10405,4 +46750,Wioska+barbarzy%C5%84ska,342,365,7462660,9683,0 +46751,KONFA+TO+MARKA%2C+NARKA,297,457,698152377,10291,0 +46752,003,387,318,699660539,9406,0 +46753,Wiadro10,674,625,8677963,6828,0 +46754,%5B0157%5D,446,297,8630972,8677,0 +46755,A%23040,712,470,2065730,9797,0 +46756,Wioska+barbarzy%C5%84ska,344,361,7462660,8828,0 +46757,ZA27,310,416,356642,9394,0 +46758,Wioska+barbarzy%C5%84ska,369,331,3698627,9778,0 +46759,Taran,314,605,6180190,8413,0 +46760,Singularity,468,294,849099965,47,0 +46761,New+World,434,703,698152377,10294,0 +46762,%2136+66+Partesti+de+Jos,660,367,698361257,9653,0 +46763,DALEKO,530,704,699827112,7801,0 +46764,Kurnik,469,712,699603116,8060,0 +46765,0.17a,456,709,699827112,9472,0 +46766,070+invidia,541,711,849093426,5711,0 +46767,%23%23%23105%23%23%23,582,691,698285444,10495,0 +46768,219,418,309,698365960,11417,0 +46769,New+World,436,706,698152377,10291,0 +46770,FAKE+OR+OFF,403,312,698231772,9726,0 +46771,Niezabyszewo,465,283,849101116,9768,0 +46772,Wioska+barbarzy%C5%84ska,705,475,699574408,7078,0 +46773,Bagno+2,484,714,848883684,9433,0 +46774,213,427,303,698365960,5506,0 +46775,031.,627,673,699695167,3749,0 +46776,29.+P%C5%82utniki,711,485,699804790,11215,0 +46777,%23%23%23106%23%23%23,598,692,698285444,10495,0 +46778,Wioska+barbarzy%C5%84ska,696,435,1715091,9411,0 +46779,Wied%C5%BAma+-+Z+013,310,420,9239515,381,0 +46780,Wioska+barbarzy%C5%84ska,552,709,699828442,9294,0 +46781,015,707,508,699150527,5965,0 +46782,140...centr,449,347,6920960,7414,0 +46783,EE+009,701,578,849100149,6247,0 +46784,078,716,508,7085502,7000,0 +46785,New+World,433,703,698152377,9707,0 +46786,defik,683,454,849098769,2446,0 +46787,06.+Je%C5%BCyce,510,665,849092769,9690,0 +46788,FAKE+OR+OFF,409,310,698231772,9816,0 +46789,Wioska+barbarzy%C5%84ska,535,296,698350371,3495,0 +46790,B007+Twierdza+3,711,463,113796,7353,0 +46791,169,379,674,849099876,8906,0 +46792,%2A001%2A,680,618,1205898,8954,0 +46793,K35+-+%5B016%5D+Before+Land,587,305,699088769,10126,0 +46794,190...segador,428,296,6920960,10920,0 +46795,023.,469,713,849034882,9924,0 +46796,0074,683,392,698416970,10019,0 +46797,W28,694,416,699524362,2714,0 +46798,Wioska+barbarzy%C5%84ska,714,488,699429153,7855,0 +46799,009,679,395,699738350,9828,0 +46800,Chocim,311,603,698167138,5522,0 +46801,Z%C5%82oty+%C5%9Awit,579,303,699883079,6730,0 +46802,Elo+Elo+9,306,576,699016994,6466,0 +46804,Wioska+barbarzy%C5%84ska,334,370,849027025,5565,0 +46805,New+WorldA,297,546,849084005,5432,0 +46806,050,400,690,849099876,10495,0 +46808,Wioska04,301,427,8259895,5527,0 +46809,157,392,681,849099876,7548,0 +46810,Komandos,643,661,7976264,10495,0 +46811,Adamo2,582,697,849096768,9690,0 +46812,Wyspa+021,298,566,225023,3815,0 +46813,Taran,308,598,6180190,7209,0 +46814,Wioska+barbarzy%C5%84ska,285,511,849101647,3990,0 +46815,Avanti%21,291,488,698625834,4060,0 +46816,206,366,660,699269923,8301,0 +46817,0133,392,686,7085510,7815,0 +46818,%5B0146%5D,441,295,8630972,9125,0 +46820,172,382,680,849099876,8172,0 +46821,Lord+Arsey+KING,657,642,848956513,9014,0 +46822,komandos48,642,663,7976264,5381,0 +46823,056,709,515,7085502,7972,0 +46824,014.+Wioska+barbarzy%C5%84ska,675,373,2873154,8742,0 +46826,Wioska+barbarzy%C5%84ska,568,702,849055425,8883,0 +46827,006b,307,420,8259895,5579,0 +46828,A%23045,706,522,2065730,9744,0 +46829,Pocz%C4%85tek,308,580,7842579,9584,0 +46830,Wioska+barbarzy%C5%84ska,301,418,699856962,7784,0 +46831,Kurnik,466,713,699603116,10495,0 +46832,%2A%2ADzikos%2A%2A,296,430,8366045,9818,0 +46833,Wioska,711,530,699034094,3594,0 +46834,006a,309,421,8259895,4970,0 +46835,Wioska+barbarzy%C5%84ska,705,529,2135129,2287,0 +46836,Kolonia+01,305,591,6180190,9814,0 +46837,Szlachcic,364,337,698388578,6207,0 +46838,010,661,642,2323859,6965,0 +46840,044.Stradi,434,301,698365960,10495,0 +46841,%23%23%23046%23%23%23,594,692,698285444,10495,0 +46842,013,295,554,9280477,7882,0 +46843,Taran,321,619,6180190,8213,0 +46844,Wioska+barbarzy%C5%84ska,282,481,698879638,2440,0 +46845,O083,329,630,272173,9816,0 +46846,Lord+Arsey+KING,658,647,848956513,8829,0 +46847,042.,450,709,849034882,10503,0 +46848,Avanti%21,285,477,698625834,7132,0 +46850,02.+Ostia,712,537,848946700,10215,0 +46851,Z.05,700,578,699737356,4961,0 +46852,D016,354,650,272173,5810,0 +46853,Wioska+111,496,288,763529,3778,0 +46854,B07,704,551,848995478,11321,1 +46856,%23%23%23047%23%23%23,590,690,698285444,10495,0 +46857,D003,560,293,699299123,5695,0 +46858,KONFA+TO+MARKA%2C+NARKA,296,444,698152377,10291,0 +46859,%5BD%5D_%5B005%5D+Dejv.oldplyr,285,507,699380607,5329,0 +46860,Tak+ZO,526,295,699208929,12021,0 +46861,FAKE+OR+OFF,413,311,698231772,9814,0 +46862,077+invidia,533,713,849093426,5269,0 +46863,Wioska+barbarzy%C5%84ska,356,345,849027025,6212,0 +46864,Po+jednej+tabletce,688,400,699785935,6657,0 +46865,KR%C3%93L+PAPI+WIELKI,660,630,698191218,10000,0 +46866,A%23043,706,521,2065730,9744,0 +46867,FAKE+OR+OFF,408,307,698231772,9825,0 +46868,O69+Texcoco,696,571,699272880,10475,8 +46869,bucksbarzy%C5%84skamiiiru,313,396,848955783,8087,0 +46870,B029,626,325,8740199,10311,4 +46871,TWIERDZA+.%3A051%3A.,694,575,7154207,7587,0 +46872,147,401,684,849099876,7202,0 +46873,MojeDnoToWaszSzczyt,498,293,9299539,9955,0 +46874,Village,501,594,849094067,12154,0 +46875,New+World,430,703,698152377,10230,0 +46877,Ave+Why%21,449,619,8729672,9925,0 +46878,EE+002,701,573,849100149,9290,0 +46879,%5B0184%5D,288,499,8630972,7990,0 +46880,Z%C5%82oty+%C5%9Awit,590,303,699883079,10127,0 +46881,A%23002,714,519,2065730,9797,1 +46883,D011,352,648,272173,9566,0 +46884,Zaplecze+Barba+014,370,336,699796330,8567,0 +46885,Wioska+Adamol,583,698,849096768,10795,0 +46886,Wioska+barbarzy%C5%84ska,635,339,849100782,2086,0 +46887,043,657,352,9148043,6315,2 +46888,Wioska+barbarzy%C5%84ska,639,652,848987051,8698,0 +46889,007c,305,421,8259895,4431,0 +46890,028,706,525,699150527,4753,0 +46892,FP015,479,705,699605333,10201,0 +46893,O146,351,646,272173,4763,0 +46895,Familia+Kuzyni,377,669,7349282,2578,0 +46896,Henia,526,707,699733501,8969,0 +46897,008,306,425,8259895,6251,0 +46898,Wioska+barbarzy%C5%84ska+001,563,704,6870350,9966,0 +46899,123,704,447,849088515,4291,0 +46900,Bessa+006,639,660,848987051,9989,0 +46901,5..,646,353,849056744,1003,0 +46902,NBT+C,595,689,849047044,9232,0 +46903,%2A04+GAWRA%2A,302,427,2415972,9121,0 +46904,%23K75+0008,519,713,699728159,5088,0 +46905,110,410,696,849099876,8840,0 +46906,SKORPION%3A%29,455,297,7518529,3349,0 +46907,%2136+65+Mihoveni,659,364,698361257,7324,0 +46908,O130,331,622,272173,6428,0 +46909,--003--,571,301,542253,8310,0 +46910,Wiadro14,673,625,8677963,5318,0 +46911,Suppi,302,416,699856962,9549,8 +46913,bucksbarzy%C5%84skamiiiru,318,400,848955783,9551,0 +46914,WIOSKA+AZGARD,706,532,848946700,7515,0 +46915,Wioska+barbarzy%C5%84ska,357,350,849027025,5135,0 +46916,008.+Amnesia,707,514,254937,9787,1 +46918,Bastion+Stra%C5%BCnik%C3%B3w,705,435,849101378,8198,0 +46919,249...Kaban1998,460,294,6920960,9573,0 +46920,AAA,320,606,6180190,9815,0 +46922,U.007,293,557,849088243,5638,0 +46923,041,675,381,698635863,9386,0 +46924,Flap,607,313,699098531,8901,0 +46925,MojeDnoToWaszSzczyt,498,285,9299539,9947,0 +46926,008c,307,424,8259895,4803,0 +46927,203,367,664,699269923,7687,0 +46928,bastion,690,408,8675636,10019,0 +46929,-06-,576,700,849032414,9472,0 +46930,035.+Hradczany,708,559,1601917,10495,0 +46931,KR%C3%93L+PAPI+WIELKI,650,644,698191218,9361,0 +46932,C.040,715,478,9188016,4337,0 +46933,Wiadro03,671,632,8677963,9067,0 +46934,57+ggggg,294,475,849018442,8969,0 +46935,.achim.,481,293,6936607,3414,0 +46936,a-2,674,619,848921861,10495,1 +46937,T-Killa,694,427,699785935,7976,0 +46938,Taran,328,615,6180190,10049,0 +46939,%5B0133%5D,442,299,8630972,9339,0 +46940,008,392,676,6948793,10153,0 +46941,FAKE+OR+OFF,400,310,698231772,9813,0 +46942,005+WUEM+ENCEHA,612,673,699346280,10160,0 +46943,0068,368,338,848913037,6105,0 +46944,006.+G%C3%B3rki+G%C3%B3rzyste,652,646,849100994,9747,0 +46945,042,675,375,698635863,7316,0 +46946,Kagusiowo+1,299,441,849101268,10684,0 +46947,Wioska+Zorro+003,681,604,849080702,12154,0 +46948,Dream+on,294,478,698962117,4495,0 +46949,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,497,707,8980651,9747,0 +46950,Wioska+barbarzy%C5%84ska,342,363,7462660,9742,0 +46951,02-oss,671,620,848921861,10187,0 +46952,%2AINTERTWINED%2A,508,708,698704189,6696,0 +46953,Winterfell.013,451,299,848918380,10178,0 +46954,Gross+Stein,345,650,849092685,2789,0 +46955,Z%C5%82oty+%C5%9Awit,578,298,699883079,10119,5 +46956,Wioska+barbarzy%C5%84ska,666,376,699580120,3850,0 +46957,Icemark,706,436,849101378,8060,0 +46958,Kagusiowo+9,301,440,849101268,3725,0 +46959,P%C3%B3%C5%82nocny+Bagdad,615,322,8847546,10068,0 +46960,%5BB%5D_%5B034%5D+Dejv.oldplyr,428,351,699380607,8993,0 +46961,Dzik+13,297,431,8366045,4820,0 +46962,O024,337,636,272173,9976,0 +46963,023,651,348,9148043,3141,0 +46964,D014,349,655,272173,9624,0 +46965,Zaplecze+Barba+013,369,328,699796330,8837,0 +46966,stickman3333,597,668,9023703,8733,0 +46967,G002+zzz,514,293,699208929,10066,0 +46969,%5B0246%5D,285,512,8630972,5668,0 +46971,O082,335,635,272173,9761,0 +46972,%23%23%23107%23%23%23,588,691,698285444,10495,0 +46973,0583,577,693,698659980,7821,0 +46974,Shire,413,312,698231772,11898,0 +46975,Taran,320,602,6180190,9888,0 +46976,19+Adamuswielki2..,294,448,849018442,9811,0 +46977,018,648,350,9148043,4217,0 +46978,D005,345,646,272173,7717,0 +46979,%3D090%3D+Wioska+barbarzy%C5%84ska,704,562,3781794,9324,0 +46980,Nowa+55,695,585,698702991,7434,0 +46981,a001,683,608,3986807,1315,0 +46982,kto+ananasowy+pod+wod%C4%85+ma+dom,710,452,699628084,9479,0 +46983,Wioska+barbarzy%C5%84ska,510,709,698704189,6898,0 +46984,Wioska+barbarzy%C5%84ska,381,323,698160606,3605,0 +46985,Kamienne+Drzwi,706,435,849101378,8900,0 +46986,036.+Domek+na+wodzie,500,716,848928624,2611,0 +46987,Taran,323,616,6180190,10049,0 +46989,%21--,656,363,698361257,4351,0 +46990,%21--,657,357,698361257,2156,0 +46991,228...M,398,314,6920960,4957,0 +46992,--011--,572,298,542253,7357,0 +46993,Wioska+dawszz4,293,532,849094688,3734,0 +46994,EO+EO,286,524,699697558,10083,0 +46995,Wioska+barbarzy%C5%84ska,305,594,6180190,3643,0 +46996,004+Twierdza,626,674,849104328,8683,0 +46997,Winterfell.020,456,298,848918380,10178,0 +46998,005,653,349,849020094,5634,0 +46999,%23037,554,291,849064614,2688,0 +47000,%2136+65+Dragosa,658,360,698361257,9841,0 +47001,032.,626,673,699695167,3432,0 +47002,p0pppp,291,476,848977600,9613,0 +47003,North+K25,535,288,699146580,2694,0 +47005,%230273+olcixx,465,296,1238300,6017,0 +47006,Wioska+barbarzy%C5%84ska,692,410,699598425,9134,0 +47007,Jednak+wol%C4%99+gofry,459,704,699725436,9376,0 +47008,KR%C3%93L+PAPI+WIELKI,663,631,698191218,10000,0 +47009,Wioska+ZWIADOWCA+2,287,535,8370183,771,0 +47010,C0251,292,552,8841266,5452,0 +47011,13+barbarzy%C5%84ska..,297,445,849018442,9198,0 +47012,O084,338,636,272173,9882,0 +47013,015.Night+Raid,491,711,699684062,6739,0 +47014,komandos,640,662,7976264,9219,0 +47015,O020,335,633,272173,9962,0 +47016,Wioska+barbarzy%C5%84ska,650,349,1715091,2912,0 +47017,Wioska+barbarzy%C5%84ska,390,313,699660539,3724,0 +47018,Wioska+barbarzy%C5%84ska,700,420,8675636,8851,0 +47019,C083,356,653,699383279,9602,0 +47020,%5B0197%5D,288,500,8630972,7675,0 +47021,0088,613,348,848913037,9993,0 +47022,066+invidia,546,707,849093426,6335,0 +47023,Taran,324,616,6180190,9964,0 +47024,a+mo%C5%BCe+off+%3F+%3A%29,682,397,698768565,5639,0 +47025,Wioska+barbarzy%C5%84ska,635,659,848987051,9905,0 +47026,Id%C4%99+po+swoje,687,400,699785935,6805,0 +47027,Z%C5%82omowisko,607,681,569790,7515,0 +47028,StatekMatka,478,713,848995291,5028,0 +47029,EO+EO,287,519,699697558,7625,0 +47030,Bzyk,293,470,848977600,5087,0 +47031,Bounty,554,703,699443920,9761,0 +47032,037%7C%7C+Serpens,461,712,849035525,6352,0 +47033,004,525,288,699818726,8087,0 +47034,007d,302,422,8259895,4611,0 +47035,Wioska+barbarzy%C5%84ska,392,320,698231772,6291,0 +47037,043,679,378,698635863,6704,0 +47038,XDX,607,322,699098531,9389,0 +47039,-15-,573,702,849032414,8042,0 +47040,0445,557,708,698659980,10019,0 +47041,Wioska+krumlow+7,595,315,699098531,2897,0 +47042,%23138%23,643,654,692803,8902,0 +47043,%5B0247%5D,285,510,8630972,6333,0 +47044,210...segador,451,293,6920960,10877,0 +47045,BRICKLEBERRY,514,288,7758085,9899,0 +47046,Wioska+Hubix,694,407,8675636,10083,0 +47047,FP029,474,713,699605333,8838,0 +47048,Wioska+barbarzy%C5%84ska,658,359,698361257,3657,0 +47049,001+Texas,348,650,849101293,5769,0 +47050,S017,689,594,8428196,5464,0 +47051,UltraInstynkt,614,316,699710633,9994,3 +47053,ZzZzZ+Sylwek,697,571,699778867,7910,0 +47054,Wied%C5%BAma+-+Z+007,303,431,9239515,1900,0 +47055,059+invidia,543,709,849093426,6176,0 +47056,ZA29,313,411,356642,9835,0 +47058,Aleppppp,291,477,848977600,4487,0 +47060,C0339,296,538,8841266,3697,0 +47061,011,621,332,9148043,7202,0 +47062,New+World,422,701,698152377,10295,0 +47063,W.181%2F20,615,531,2999957,10242,0 +47064,Zaplecze+barba+3,364,335,699796330,9809,0 +47065,0104,709,503,699429153,8909,0 +47066,bucksbarzy%C5%84skamiiiru,325,382,848955783,6685,0 +47067,S023,685,598,8428196,3524,0 +47068,ChceszPokojuSzykujSi%C4%99DoWojny,486,710,699333701,9825,0 +47069,008,356,351,849101205,5423,0 +47070,113+invidia,504,712,849093426,10401,2 +47071,EO+EO,290,504,699697558,10019,0 +47072,Cieszyn,488,284,699278528,9857,0 +47074,Wancki,512,293,7758085,9861,9 +47075,B002,622,321,8740199,8456,0 +47076,0076+Z003,445,706,849037407,5428,0 +47078,017+Wioska+barbarzy%C5%84ska,603,688,699346280,9891,0 +47079,Z%C5%82oty+%C5%9Awit,574,298,699883079,10184,0 +47080,Wioska+12,693,587,849101162,5433,0 +47081,0sada+koczownik%C3%B3w,691,404,699488108,9597,0 +47082,001,385,316,699660539,9470,0 +47083,132+invidia,498,717,849093426,9373,0 +47084,Grubasy+6,296,450,634848,3563,0 +47085,005,387,319,699660539,7027,0 +47086,D002,349,647,272173,9818,0 +47087,Wioska+barbarzy%C5%84ska,619,671,6818593,5612,0 +47088,New+World,438,705,698152377,7602,0 +47089,Szlachcic,394,355,3484132,10479,0 +47090,New+WorldA,293,522,849084005,6135,0 +47092,%5B0137%5D,449,297,8630972,9195,0 +47093,Bez+emocji,352,656,849092685,8157,0 +47094,XXXX,566,301,849054951,10025,0 +47095,0054,579,691,698659980,10252,9 +47096,%3F%3F%3F%3F,472,296,698489071,10503,0 +47097,%3D0014%3D,404,317,698231772,8411,0 +47098,XDX,602,313,699098531,11164,0 +47099,Wioska+barbarzy%C5%84ska,714,494,699429153,7900,0 +47100,Wioska+Arystek,526,712,7590135,9476,0 +47101,Wioska+barbarzy%C5%84ska,644,350,1715091,3613,0 +47103,Wioska+barbarzy%C5%84ska,375,676,699269923,8249,0 +47104,%5B0229%5D,287,506,8630972,6776,0 +47105,P%C3%B3%C5%82nocny+Bagdad,618,325,8847546,9899,0 +47106,Taran,314,597,6180190,6262,0 +47107,Winterfell.002,447,298,848918380,10178,8 +47108,W29,693,417,699524362,1762,0 +47109,022%23+Cassandrav2,443,703,3933666,6945,0 +47110,Wioska+barbarzy%C5%84ska,660,354,848924219,1413,0 +47111,042+Wioska+barbarzy%C5%84ska,612,682,699346280,5853,0 +47112,001.,565,326,699072129,10385,0 +47113,%23%23%23048%23%23%23,599,683,698285444,10495,0 +47114,Krowodrza,690,398,699598425,10200,5 +47116,209,425,300,698365960,7627,0 +47117,137,403,683,849099876,6798,0 +47118,FAKE+OR+OFF,407,309,698231772,9707,0 +47119,029,655,351,9148043,3637,0 +47120,bucksbarzy%C5%84skamiiiru,326,385,848955783,2229,0 +47121,012,290,539,849098688,8658,0 +47122,043,412,688,849099876,10495,0 +47123,Wioska+Kaczerki,375,674,699269923,8093,0 +47124,Ciemnogr%C3%B3d+%238,332,363,849096958,6797,0 +47125,STREFA+GAZY+%7C+001,712,479,9228039,9544,8 +47127,Lord+Arsey+KING,656,649,848956513,9889,0 +47128,Wioska+Kosiu461,710,516,254937,9807,0 +47129,%21--,656,364,698361257,5174,0 +47131,Pocz%C4%85tek,303,578,7842579,6220,0 +47132,Wioska+barbarzy%C5%84ska,385,326,699660539,8787,0 +47133,Pocz%C4%85tek,301,579,7842579,5034,0 +47134,039.Stradi,433,304,698365960,10495,0 +47135,Wioska+barbarzy%C5%84ska,306,413,0,346,0 +47136,%C5%9Awi%C4%99toja%C5%84ska,483,298,698848373,2620,0 +47137,Wioska+barbarzy%C5%84ska,353,352,849027025,5670,0 +47138,Daleko+od+domu,658,354,848924219,6594,1 +47139,Wioska,693,594,7999103,10061,0 +47140,STREFA+GAZY+%7C+002,707,471,9228039,9544,9 +47142,%2136+66+Dragoiesti,665,364,698361257,9650,0 +47143,Wioska+barbarzy%C5%84ska,466,293,699191464,4081,0 +47144,075,717,508,7085502,7884,0 +47145,0147,386,684,7085510,7339,0 +47147,%230139+barbarzy%C5%84ska,484,287,1238300,7865,0 +47148,ZZZ,535,702,8980651,9761,0 +47149,bucksbarzy%C5%84skamiiiru,315,395,848955783,8306,0 +47150,052+invidia,521,710,849093426,10414,0 +47151,Wioska+barbarzy%C5%84ska,710,493,699429153,7014,0 +47153,Wioska+barbarzy%C5%84ska,541,291,698350371,4064,0 +47154,%3D080%3D+drago+7,707,559,3781794,10501,0 +47155,XXXX,565,296,849054951,10178,0 +47156,Wioska+barbarzy%C5%84ska,391,688,849014922,5283,0 +47157,KONFA+TO+MARKA%2C+NARKA,294,457,698152377,10291,0 +47158,09.+Toussaint,709,548,8976313,9526,0 +47159,Wioska+barbarzy%C5%84ska,559,706,699828442,8568,0 +47160,Wioska,712,528,699034094,8390,0 +47161,New+World,435,698,698152377,10290,0 +47162,015Roztopy,471,709,698620694,9716,0 +47164,%23%231,349,354,2800032,9059,0 +47165,013.,470,714,849034882,10838,0 +47166,022+Wioska+barbarzy%C5%84ska,600,688,699346280,9566,0 +47167,Z%C5%82oty+%C5%9Awit,585,301,699883079,10119,0 +47168,D003,350,644,272173,9220,4 +47169,%5B0230%5D,292,505,8630972,5585,0 +47170,Didi,689,586,849070946,1638,0 +47171,037,660,640,2323859,2403,0 +47172,050.,637,668,699373599,3722,0 +47173,Zzzz+-+Kasztelania+003,642,349,9291984,3901,0 +47174,%2AINTERTWINED%2A,509,709,698704189,7098,0 +47176,Piek%C5%82o+to+inni,643,338,848956765,7472,0 +47178,007,310,397,8724192,3629,0 +47179,W31,696,409,699524362,1895,0 +47180,Wioska+001,688,597,7999103,10061,0 +47181,C085,361,655,699383279,7440,0 +47182,KONFA+TO+MARKA%2C+NARKA,294,450,698152377,10290,0 +47183,23.B.A.P,692,421,9180206,6319,0 +47184,PIROTECHNIK+006,351,345,849101083,3001,0 +47185,Szlachcic,381,321,698160606,10116,0 +47186,152...B,397,311,6920960,6453,0 +47187,%3D112%3D+Wioska+wyncel,703,558,3781794,7038,0 +47188,%23%23%23108%23%23%23,586,691,698285444,10495,0 +47189,Kr%C3%B3lowy+Most,704,428,849102464,10409,0 +47190,-02-,579,701,849032414,9472,0 +47191,--035--,569,295,542253,4138,0 +47192,031,510,283,849010255,6535,0 +47193,024.+Fud%C5%BCi,713,530,1601917,10495,0 +47194,Wioska+barbarzy%C5%84ska,444,703,849037407,5379,0 +47195,Wioska+15,524,504,699385139,7517,0 +47196,MojeDnoToWaszSzczyt,498,284,9299539,9958,0 +47198,011,391,324,8153941,2976,0 +47199,W30,697,412,699524362,1591,0 +47200,240,391,312,7271812,958,0 +47201,Castel+Ravello,558,291,849054951,9876,0 +47202,%5B0141%5D,441,299,8630972,9334,0 +47203,Zaplecze+drewniane+1,374,330,699796330,10217,1 +47204,%23K75+0018,519,709,699728159,5075,0 +47205,05-oss,677,614,848921861,10187,0 +47207,Prawie+zmieni%C5%82em+podej%C5%9Bcie,688,402,699785935,8595,0 +47209,Wyspa_43,505,712,2585846,9653,0 +47210,KR%C3%93L+PAPI+WIELKI,662,636,698191218,10000,0 +47211,Taran,326,622,6180190,8891,0 +47212,O074,330,623,272173,9871,0 +47213,Ultimate+Farming+Simulator+1,416,303,699872032,12154,0 +47214,CSA,527,309,7651093,3555,0 +47215,Wioska+barbarzy%C5%84ska,381,327,699660539,4893,0 +47216,004,713,498,849091105,10301,4 +47217,%23K66+0013,614,678,699728159,6560,0 +47218,Suppi,304,418,699856962,9549,4 +47219,36.+Kufe+3,703,454,699804790,2574,0 +47220,KONFA+TO+MARKA%2C+NARKA,303,433,698152377,9214,0 +47221,A22,550,458,699368887,10201,0 +47222,XXXX,568,298,849054951,10068,0 +47223,0072,366,338,848913037,7776,0 +47224,%2136+66+Capu+Codrului,660,363,698361257,9242,0 +47226,Ave+Why%21,311,585,6180190,5748,0 +47227,wioska,639,342,849102068,5791,0 +47228,%23K75+0014,519,711,699728159,4637,0 +47229,Winterfell.006,450,291,848918380,10178,2 +47230,A%23024,711,498,2065730,9797,0 +47231,%2A05+GAWRA%2A,301,428,2415972,7961,0 +47232,C14,704,446,849093742,6017,0 +47233,033.,628,670,699695167,5547,0 +47234,005,644,652,849101148,8529,0 +47235,O077,334,637,272173,9899,0 +47236,Taran,313,609,6180190,6905,0 +47237,%3F%3F%3F%3F,473,290,698489071,10019,0 +47238,KONFA+TO+MARKA%2C+NARKA,292,442,698152377,10290,0 +47239,016.+Night+Raid%2A,432,698,699684062,9807,6 +47240,Zaplecze+Barba+019,368,329,699796330,8260,0 +47241,Wioska+barbarzy%C5%84ska,416,649,699736927,3170,0 +47242,XXXX,566,303,849054951,10178,0 +47243,%2AINTERTWINED%2A,511,708,698704189,3992,0 +47244,012,387,316,699660539,6282,0 +47246,ZzZzZ+Sylwek2,696,568,699778867,7285,0 +47248,Wioska+barbarzy%C5%84ska,645,661,848987051,8619,0 +47250,Wioska+barbarzy%C5%84ska,347,642,698908184,6706,0 +47251,S027,687,603,8428196,9740,0 +47252,CastAway+%21030,688,601,9314079,6139,0 +47253,Wied%C5%BAma+-+Z+009,305,431,9239515,1362,0 +47254,KR%C3%93L+PAPI+WIELKI,661,638,698191218,10000,0 +47255,KR%C3%93L+PAPI+WIELKI,668,633,698191218,10000,9 +47256,Taran,317,613,6180190,9526,0 +47257,Wioska+barbarzy%C5%84ska,434,293,699308637,7176,0 +47258,012+ZO,537,291,699208929,10247,0 +47259,%2AINTERTWINED%2A,514,707,698704189,5628,0 +47260,Z%C5%82oty+%C5%9Awit,576,307,699883079,7813,0 +47261,%23%23%23049%23%23%23,599,686,698285444,10495,0 +47262,010,391,319,699660539,4771,0 +47263,XDX,595,308,699098531,6822,0 +47264,Dzik+7,303,435,8366045,7525,0 +47265,009,664,640,2323859,7928,0 +47266,Wioska+barbarzy%C5%84ska,590,313,828637,10478,0 +47267,New+World,437,706,698152377,10295,0 +47268,065+ZieloneOczko3,707,518,2135129,8721,0 +47269,0.17+Jadom,458,706,699725436,9467,0 +47270,.achim.,482,287,6936607,7271,0 +47271,KR%C3%93L+PAPI+WIELKI,650,650,698191218,7113,0 +47273,Wioska+barbarzy%C5%84ska,535,294,698350371,8978,0 +47274,North+042,513,283,849064752,9252,0 +47275,Wioska+barbarzy%C5%84ska,696,432,1715091,9741,0 +47276,002,323,376,7386358,6294,5 +47277,Z%C5%82oty+%C5%9Awit,582,304,699883079,7124,0 +47278,Kagusiowo+7,299,440,849101268,4818,0 +47279,035,651,354,9148043,9835,1 +47280,C087,364,664,699383279,8240,0 +47281,019,299,560,9280477,7782,0 +47282,058,668,378,698635863,4734,0 +47283,%2A009%2A,683,616,1205898,8087,0 +47284,Wioska+04,695,589,849101162,6249,0 +47285,Psycha+Siada,340,647,8099868,10019,0 +47286,Osada+13,699,430,699524891,10059,0 +47287,Z%C5%82oty+%C5%9Awit,579,305,699883079,7068,0 +47288,Avanti%21,285,485,698625834,9882,0 +47289,Na+Kra%C5%84cu+%C5%9Awiata+001,645,343,9291984,10476,0 +47290,EO+EO,293,514,699697558,6844,0 +47291,Wioska+005,696,591,7999103,9969,0 +47292,Wioska+barbarzy%C5%84ska,300,420,699856962,8539,0 +47293,Grud,293,542,699284822,3398,0 +47294,BOSS2,354,341,849101604,8472,0 +47295,Wioska-012-,629,330,7675610,1464,0 +47296,042,513,289,849010255,7822,0 +47297,0045+Apt3czka,448,704,849037407,10474,6 +47298,Lord+Arsey+KING,648,655,848956513,6301,0 +47299,ElMajkelos+VII,412,306,849085160,9456,0 +47300,Piszkawa,297,562,849101092,5513,0 +47301,005+Wioska+barbarzy%C5%84ska,405,315,698258283,4138,0 +47302,Avanti%21,286,484,698625834,9713,4 +47304,044,676,378,698635863,6974,0 +47305,Wioska+barbarzy%C5%84ska,692,406,8675636,9017,0 +47306,005,441,702,849101309,1684,0 +47307,0532,557,706,698659980,10495,0 +47308,%23%23%23109%23%23%23,597,694,698285444,10495,0 +47309,106...,473,285,6920960,10105,0 +47310,WS+02,701,440,699524891,9721,4 +47311,A11,464,659,698652014,9889,0 +47312,CastAway+%23007,700,584,9314079,7713,0 +47313,BETI+012,462,569,8539216,1719,0 +47314,Wioska+barbarzy%C5%84ska,501,708,7976264,5046,0 +47315,New+WorldA,289,508,849084005,4278,0 +47316,Taran,310,599,6180190,9835,0 +47317,Avanti%21,286,474,698625834,6959,0 +47318,Taran,319,616,6180190,9265,0 +47320,Z%C5%82oty+%C5%9Awit,588,303,699883079,9747,0 +47321,ElMajkelos+XI,420,302,849085160,3432,0 +47322,Wioska+19,693,598,849101162,2110,0 +47323,Suppi,297,425,699856962,9549,8 +47324,046,715,516,7085502,7763,0 +47325,030+zadupie,532,710,6116940,10019,5 +47326,MojeDnoToWaszSzczyt,506,286,9299539,9735,0 +47327,0125,393,686,7085510,9764,0 +47329,097.Stradi,439,293,698365960,9293,0 +47331,Kurnik,474,714,699603116,9077,0 +47332,095,403,692,849099876,8996,0 +47333,075+invidia,557,707,849093426,5660,0 +47334,wioska,637,332,9291984,9927,0 +47335,MENSPHYSIQUE,378,672,849097837,2171,0 +47336,01.+Novigrad,704,541,8976313,9737,0 +47337,Dubno,690,409,699488108,9924,0 +47338,%23%23%23110%23%23%23,583,690,698285444,10495,0 +47339,108+invidia,511,716,849093426,10401,0 +47340,Wioska+barbarzy%C5%84ska,520,291,7758085,9655,0 +47341,Wioska+barbarzy%C5%84ska,302,458,699706955,4210,0 +47342,R+040+%7EWybacz+Ribeska%7E,500,717,699195358,7756,0 +47343,Taran,314,612,6180190,9835,0 +47344,0069,713,461,698416970,4918,0 +47345,Wioska+barbarzy%C5%84ska,319,384,699794765,1304,0 +47346,Wioska+006,696,593,7999103,8982,0 +47347,Taran,315,608,6180190,9835,0 +47348,KR%C3%93L+PAPI+WIELKI,669,632,698191218,9970,0 +47349,07+Banga+Banga,705,452,849101845,9484,0 +47350,Z+0005,349,358,3909522,10033,0 +47351,012,296,553,9280477,7507,0 +47352,Syjon+01,343,646,698908184,7941,0 +47354,0584,576,695,698659980,8851,0 +47355,Dzik+2,294,432,8366045,10887,0 +47356,Wioska+barbarzy%C5%84ska,647,659,848987051,8522,0 +47357,00000B,376,331,3698627,9975,4 +47358,EE+008,699,582,849100149,8707,0 +47359,D004,347,646,272173,9151,0 +47360,007,666,640,2323859,9814,0 +47362,SOS,702,425,699785935,7661,0 +47363,New+World,447,687,698152377,9424,0 +47364,wioska,639,335,849102068,7681,0 +47366,P%C3%B3%C5%82nocny+Bagdad,613,320,8847546,10311,0 +47367,Avanti%21,286,483,698625834,6251,0 +47368,EO+EO,292,512,699697558,8981,0 +47369,2_Franekkimono510_2,374,325,849099422,8164,0 +47370,Osada+7,696,421,8675636,9570,0 +47371,045,673,374,698635863,9847,0 +47372,0073+Wioska+barbarzy%C5%84ska,445,701,849037407,8459,0 +47373,klops33,629,668,848909464,10242,0 +47374,Winterfell.003,441,291,848918380,10178,9 +47375,004,532,716,698996782,8346,0 +47376,Wioska+barbarzy%C5%84ska,370,333,3698627,9238,0 +47377,New+World,439,707,698152377,8481,0 +47379,0034,489,714,699684062,3858,0 +47380,Cisza,288,551,698769107,6001,0 +47381,023+zadupie,531,713,6116940,9859,0 +47382,ElMajkelos+X,416,305,849085160,3778,0 +47383,ZZ03,313,402,356642,9406,0 +47385,007+Moulton+Park,620,319,699098531,8664,0 +47386,0096,680,394,698416970,3162,0 +47387,New+World,421,693,698152377,10294,0 +47388,Klejnot+nr1,589,696,699837483,4053,0 +47389,.achim.,482,284,6936607,7159,0 +47390,sh05,513,291,7758085,5714,0 +47391,003a,302,412,8259895,5230,0 +47392,189,417,697,849099876,9282,0 +47393,EO+EO,284,524,699697558,7432,0 +47394,...,337,360,699657450,3833,0 +47395,002,697,408,849085371,4212,0 +47396,RPM+CUSTOM+2,553,289,849102094,4373,0 +47397,009.+G%C3%B3rki+Wyboiste,655,648,849100994,7248,0 +47398,Wioska+barbarzy%C5%84ska,573,304,828637,5636,0 +47399,W32,695,418,699524362,2038,0 +47400,Z%C5%82oty+%C5%9Awit,582,301,699883079,9521,0 +47401,Ave+Why%21,309,593,6180190,9644,0 +47402,C015,366,668,699383279,9892,0 +47403,XDX,599,308,699098531,7432,0 +47404,%23K75+0023,514,716,699728159,5198,0 +47406,Lord+Arsey+KING,650,652,848956513,10285,0 +47407,Ger4,715,526,2246711,4454,0 +47408,O002,337,637,272173,9955,8 +47410,XDX,595,313,699098531,7384,0 +47411,005a,305,408,8259895,4755,0 +47412,New+WorldA,291,545,849084005,3414,0 +47413,0066,692,420,698416970,5143,0 +47414,C.035,708,475,9188016,4678,0 +47415,Kurnik,481,710,699603116,9486,0 +47416,002+co%C5%9B+ciekawego%3F,530,709,6116940,4015,0 +47417,Wioska+14,694,588,849101162,3628,0 +47418,058,639,345,849010255,2038,0 +47419,Wioska008,345,350,699711926,9514,0 +47421,BOSS3,353,342,849101604,7855,0 +47422,Z%C5%82oty+%C5%9Awit,577,304,699883079,7405,0 +47423,wpadam+do+Ciebie+do+swiat,623,342,698457392,1413,0 +47424,Lewa,497,710,7589468,8418,0 +47425,Na+ch%C5%82odno,682,402,699785935,10252,0 +47426,%2A227%2A+pozdro+po%C4%87wicz,325,376,699273451,10211,0 +47427,0069,369,335,848913037,6080,0 +47428,Czarny+Zamek,708,436,849101378,10971,0 +47429,ElMajkelos+II,419,302,849085160,9262,2 +47430,022.,470,713,849034882,10838,0 +47431,Wioska+barbarzy%C5%84ska,350,653,6354098,8551,2 +47432,C.036,715,482,9188016,4732,0 +47433,081+Wioska+barbarzy%C5%84ska,536,288,699854484,8635,0 +47434,New+World,425,694,698152377,10291,0 +47435,bucksbarzy%C5%84skamiiiru,332,379,848955783,2353,0 +47436,Wioska+barbarzy%C5%84ska,293,524,7530708,2421,0 +47437,002,322,378,7919620,4815,0 +47438,%5B0248%5D,287,513,8630972,6567,0 +47439,Wioska+barbarzy%C5%84ska,630,329,0,2438,0 +47440,KONFA+TO+MARKA%2C+NARKA,293,445,698152377,6403,0 +47441,001,442,703,849101309,9571,0 +47442,chwile+zabawy,421,701,849100814,5310,0 +47443,Wioska+barbarzy%C5%84ska,496,708,7976264,6925,0 +47444,Wioska+barbarzy%C5%84ska,629,335,7555180,2957,0 +47445,Wioska+X05,296,460,698701911,3074,0 +47446,bucksbarzy%C5%84skamiiiru,330,380,848955783,2155,0 +47447,XXXX,563,297,849054951,10068,0 +47448,Wioska+ewaa,506,719,849101382,6335,0 +47449,Taran,315,611,6180190,8803,0 +47451,%5B0125%5D,444,292,8630972,9587,0 +47452,wioska+barbarzy%C5%84ska,621,672,848909464,8187,0 +47454,Wioska,713,529,699034094,4183,0 +47456,Wioska+07,695,592,849101162,6169,0 +47457,O023,331,637,272173,9957,0 +47458,Wioska+06,692,593,849101162,7172,5 +47459,Wied%C5%BAma+-+Z+001,304,430,9239515,9383,0 +47460,Wioska+barbarzy%C5%84ska,335,370,849027025,7738,0 +47461,Wioska+barbarzy%C5%84ska,691,411,699598425,6317,0 +47463,%5B0249%5D,286,511,8630972,6605,0 +47464,18+Dewon,395,315,698231772,10083,8 +47465,139,399,693,849099876,9132,0 +47466,TWIERDZA+.%3A075%3A.,697,583,7154207,7879,0 +47467,%2A019,672,368,7758085,6968,0 +47468,%5B0132%5D,444,299,8630972,9334,0 +47469,Szlachcic,359,338,698388578,5440,0 +47470,Wioska+D,541,293,1867161,3325,0 +47471,Wioska+barbarzy%C5%84ska,703,443,699524891,5995,0 +47472,Wioska+E,543,293,1867161,2869,0 +47473,Wioska+barbarzy%C5%84ska,698,563,8742874,2993,0 +47474,220,418,308,698365960,7047,0 +47475,Wioska+Motliiu,691,397,699738350,6029,0 +47476,Soltys+Wsi+Maciekp011,349,344,849027025,9356,0 +47477,Lord+Arsey+KING,658,649,848956513,8700,0 +47478,012+JJ,330,368,9120206,3501,0 +47479,16+Cezarleon.,290,446,849018442,9976,0 +47480,Nowa+Nadzieja+6,501,596,699383121,8120,0 +47482,034.,622,675,699695167,4050,0 +47483,062+-+misslolaxo,424,587,225023,7926,0 +47484,%5B0190%5D,284,494,8630972,8755,0 +47485,19+Achttung%2C+Herman,710,469,849101845,4006,0 +47486,Wioska+barbarzy%C5%84ska,632,334,7555180,7666,0 +47487,C025,359,660,699383279,9419,0 +47488,0108,400,691,7085510,10216,1 +47489,1919ccc,681,611,3986807,1440,0 +47490,...,338,355,699657450,6874,0 +47491,060,714,518,7085502,8380,0 +47492,Barabara,288,470,848977600,6362,0 +47493,Bessa+008,640,658,848987051,9986,0 +47494,Wioska+barbarzy%C5%84ska,660,353,848924219,3180,0 +47495,%5B0174%5D,287,496,8630972,8822,0 +47497,%5B823%5D+Odludzie,705,438,848985692,6319,0 +47498,Onono+nono,287,457,698652171,7339,0 +47499,Wioska+Sir+Olmek,642,655,848987051,9583,0 +47500,004+dark.lady,609,686,699346280,10019,0 +47501,Klatka,621,677,6528152,6392,0 +47502,036,721,500,849091105,8585,0 +47503,002,442,702,849101309,5877,0 +47504,Wioska+barbarzy%C5%84ska,716,477,699429153,7322,0 +47505,0158,393,690,7085510,5714,0 +47506,Wioska+barbarzy%C5%84ska,647,656,848987051,8331,0 +47508,K35+-+%5B022%5D+Before+Land,584,305,699088769,9783,0 +47509,FAKE+OR+OFF,401,312,698231772,9825,0 +47510,%23%23%23%23,699,416,849101881,4883,0 +47512,022,298,562,9280477,7471,0 +47513,207,425,298,698365960,6423,0 +47515,rafisonik6,510,714,849101108,4370,0 +47516,0151,393,687,7085510,3902,0 +47517,Wioska+barbarzy%C5%84ska,334,369,849027025,8753,0 +47518,-020-+P,620,329,8675636,5314,0 +47519,B003,621,321,8740199,6198,0 +47520,Wioska+03,694,590,849101162,6963,0 +47521,-027-+WWW,649,351,849099276,1444,0 +47522,Osada+koczownik%C3%B3w,618,682,849096972,7879,4 +47523,xzc,501,703,8827094,8592,0 +47524,%C5%BBUBEREK+002,612,685,33900,10479,3 +47525,Kurnik,452,711,699603116,10252,0 +47526,Wioska+barbarzy%C5%84ska,694,584,7154207,1383,0 +47527,%2AINTERTWINED%2A,512,710,698704189,5647,0 +47528,New+World,429,704,698152377,10290,0 +47529,011,647,351,849020094,2942,0 +47530,026.+Minas+Morgul,567,396,699799629,10495,0 +47531,Bennet,554,711,699443920,8892,0 +47532,Coraz+bli%C5%BCej+%C5%9Bwi%C4%99ta,685,401,699785935,8768,0 +47533,New+World,437,704,698152377,10294,0 +47534,Starosiedlice,576,702,698723158,8386,0 +47535,%23%23%23111%23%23%23,598,690,698285444,10495,0 +47536,Wioska+barbarzy%C5%84ska,281,488,699846892,5331,0 +47537,Wioska+barbarzy%C5%84ska,698,573,699737356,2403,7 +47538,177,383,680,849099876,6786,0 +47539,Jasieniec,572,697,698723158,5522,0 +47540,Wioska+teduniook,600,308,9106690,4304,0 +47541,025+zadupie,533,710,6116940,10019,0 +47542,Wioska+barbarzy%C5%84ska,705,433,1715091,3124,0 +47543,%2A003%2A,680,623,1205898,9075,0 +47544,C0242,291,534,8841266,10310,0 +47545,EO+EO,288,502,699697558,10019,0 +47546,XDX,605,318,699098531,10290,0 +47547,0106,393,678,7085510,10216,2 +47548,Hubix,697,409,8675636,10019,0 +47549,MojeDnoToWaszSzczyt,498,283,9299539,9966,0 +47550,C0213,294,532,8841266,8730,0 +47551,Avanti%21,288,480,698625834,6023,0 +47552,042,410,691,849099876,10495,0 +47553,Wancki,517,289,7758085,9861,0 +47554,Rigel,285,519,849101647,5309,0 +47555,Wioska+barbarzy%C5%84ska,549,712,699828442,6943,0 +47556,048.,637,667,699373599,4846,0 +47557,Arczi997+05,291,517,849055181,1116,0 +47558,005,304,408,8259895,6251,0 +47559,C0247,292,532,8841266,5167,0 +47560,%23%23%23112%23%23%23,591,693,698285444,10495,0 +47561,003+Gniezno,290,529,9235561,6498,0 +47562,Ultimate+Farming+Simulator+5,415,305,699872032,7332,0 +47563,013.+Chogolisa,710,552,1601917,10495,0 +47564,D005,561,294,699299123,5550,0 +47565,Taran,310,597,6180190,6757,0 +47566,--013--,572,295,542253,8521,0 +47567,W33,692,399,699524362,1887,0 +47569,W34,698,410,699524362,3222,0 +47570,023,655,647,2323859,5538,0 +47571,Szlachcic,363,339,698388578,5761,0 +47572,0161,391,678,7085510,3072,0 +47573,Kurnik,472,710,699603116,7929,0 +47574,Klatka7,626,678,6528152,3419,0 +47575,C06,705,451,849093742,8066,0 +47576,KONFA+TO+MARKA%2C+NARKA,294,452,698152377,7273,0 +47577,P%C3%B3%C5%82nocny+Bagdad,619,326,8847546,9899,0 +47578,FP021,482,707,699605333,8375,0 +47579,0041,478,712,699280514,3304,0 +47580,Bagno+20,484,713,848883684,8293,0 +47581,Wioska+barbarzy%C5%84ska,716,487,699429153,7514,0 +47583,MojeDnoToWaszSzczyt,497,282,9299539,9949,0 +47584,Wioska+barbarzy%C5%84ska,697,573,699737356,1963,0 +47585,AAA,541,289,1006847,8876,0 +47586,0103,708,505,699429153,9627,0 +47587,R+039,495,717,699195358,6098,0 +47588,0132,392,683,7085510,6531,0 +47589,Wioska+barbarzy%C5%84ska,655,353,1715091,5027,0 +47590,Ciemnogr%C3%B3d+%239,333,365,849096958,6660,0 +47591,New+WorldA,286,536,849084005,4743,0 +47592,Wioska+barbarzy%C5%84ska,546,703,7581876,5260,0 +47593,%5B0181%5D,289,494,8630972,8715,0 +47594,Wioska+barbarzy%C5%84ska,522,708,7590135,4639,0 +47595,O025,333,636,272173,9959,0 +47596,New+World,426,697,698152377,10292,7 +47597,Wioska+barbarzy%C5%84ska,382,673,699269923,8177,0 +47598,O075,329,625,272173,9818,0 +47599,138,402,691,849099876,10252,0 +47601,032,656,349,9148043,9819,0 +47604,XDX,610,315,699098531,10048,0 +47605,Ars,718,494,699379895,9894,0 +47606,Dzik+3,295,434,8366045,9476,0 +47607,250...Kaban1998,461,294,6920960,9781,0 +47608,nasa,706,528,1895081,2567,0 +47609,019.+Wioska+barbarzy%C5%84ska,343,637,698908184,8499,0 +47610,FAKE+OR+OFF,400,305,698231772,9830,0 +47611,0.17d,465,711,699725436,9464,0 +47613,%23%23%23113%23%23%23,600,693,698285444,10495,0 +47614,FAKE+OR+OFF,402,314,698231772,9813,0 +47615,Pocz%C4%85tek,297,575,7842579,3782,0 +47616,077+Wioska+barbarzy%C5%84ska,537,286,699854484,10178,0 +47617,Saran2,407,308,848937248,4261,0 +47618,008,647,647,849101148,5952,0 +47619,Zaplecze+barba+1,377,332,699796330,10216,0 +47620,Szlachcic,580,505,699759128,10093,0 +47621,Pocz%C4%85tek,313,592,6180190,5049,0 +47622,EEE+Barba+1,464,291,699796330,9762,0 +47623,Lord+Arsey+KING,650,656,848956513,10158,0 +47624,Z18,312,408,356642,9835,0 +47625,001+mo%C5%BCe+by%C4%87,529,716,6116940,5307,0 +47626,020,655,644,2323859,3114,0 +47627,North+020,499,292,849064752,8243,0 +47628,%2C%2C%2C%2C,702,419,849101881,4172,0 +47629,180,383,678,849099876,8172,0 +47630,Wioska+13,692,594,849101162,3632,0 +47631,ZZZ,455,707,8980651,3954,0 +47633,165,412,692,849099876,8704,0 +47634,Wioska+barbarzy%C5%84ska,326,629,698908184,9806,0 +47635,048+sebaseba1991,616,684,699346280,10160,0 +47636,080+Hjubal,709,506,2135129,5004,0 +47637,D003,348,646,272173,8881,0 +47638,Adamo+4,586,694,849096768,3465,0 +47639,Legenda,378,676,849097837,8221,0 +47640,AlaKlaudia4,381,322,848966521,2760,0 +47641,...,341,362,699657450,4279,0 +47642,Wioska+barbarzy%C5%84ska,553,297,698350371,3638,0 +47644,002+JJ,331,368,9120206,4556,0 +47645,Taran,321,613,6180190,8295,0 +47646,Wioska+barbarzy%C5%84ska,379,324,3698627,10203,0 +47647,Osada+koczownik%C3%B3w,421,303,698231772,9820,5 +47648,Szlachcic%2FTaran,615,367,699759128,10237,0 +47649,Wioska003,346,348,699711926,9741,0 +47650,KR%C3%93L+PAPI+WIELKI,710,508,698191218,6565,0 +47651,Inny+ni%C5%BC+oni,703,433,699785935,6038,0 +47653,Bagno+3,482,713,848883684,9427,0 +47654,0585,578,696,698659980,10019,8 +47655,Pitulice,381,590,849095992,6951,0 +47656,%23K75+0009,520,712,699728159,5232,0 +47657,New+World,430,700,698152377,10294,0 +47658,Familia+Kuzyni,376,667,7349282,2318,0 +47659,Wioska+barbarzy%C5%84ska,569,704,849055425,8440,0 +47660,t009,663,355,2262902,8173,0 +47661,Avanti%21,287,485,698625834,6313,0 +47662,C016,371,670,699383279,9472,0 +47663,1-OB,688,611,1205898,3115,0 +47664,024,663,640,2323859,2979,0 +47666,Wioska+barbarzy%C5%84ska,703,421,848902592,5549,0 +47667,07+CHATA,631,328,6517826,3797,0 +47668,C005,540,707,698599365,7020,0 +47669,Klejnoty,589,689,699837483,2755,0 +47670,049+Wioska+barbarzy%C5%84ska,544,288,699854484,9835,0 +47671,KONFA+TO+MARKA%2C+NARKA,298,443,698152377,7138,0 +47672,053-+Mroczna+Osada,660,355,849035905,4543,0 +47673,3.+Blaviken,604,692,849102573,5281,0 +47674,Wioska+barbarzy%C5%84ska,520,293,7758085,8548,0 +47675,%23K66+0010,609,677,699728159,6340,0 +47676,%3D116%3D+Hopewell,706,570,3781794,6394,0 +47677,%23%23%23016%23%23%23,593,689,698285444,10495,0 +47678,Montecalvo,551,298,698789253,2927,0 +47679,Na+Kra%C5%84cu+%C5%9Awiata+021,646,344,9291984,4074,0 +47680,20+barbarzy%C5%84ska...,286,465,849018442,9126,0 +47681,020,526,716,698996782,11896,3 +47682,XXXX,566,296,849054951,10025,0 +47683,%C5%BBUBEREK+018+.%3A%3A.+Gazun,608,682,33900,8157,6 +47684,018.+Ortolana,314,388,849102092,6690,0 +47685,wioska,638,332,9291984,12154,0 +47686,Wioska+wioska,709,551,17714,9775,0 +47687,Cisza,294,544,698769107,5993,0 +47688,%23%23%23114%23%23%23,601,691,698285444,10495,0 +47689,MojeDnoToWaszSzczyt,496,285,9299539,9950,0 +47690,North+016,504,285,849064752,10311,0 +47691,Wioska+barbarzy%C5%84ska,664,372,699580120,2618,0 +47692,Wioska+piwkoo,291,470,848977600,9319,0 +47693,Kurnik,468,709,699603116,8596,0 +47694,asd,685,404,699598425,10728,3 +47695,Kocio%C5%82+Gromoszcz%C4%99ka,328,628,698908184,9525,0 +47696,Wioska+barbarzy%C5%84ska,427,295,698231772,6346,0 +47697,North+008,504,284,849064752,10311,0 +47698,S016,686,597,8428196,4556,0 +47699,MojeDnoToWaszSzczyt,501,294,9299539,9999,0 +47700,Wioska001,685,385,698768565,7266,0 +47702,FAKE+OR+OFF,410,306,698231772,9817,0 +47703,Zaplecze+miedziane,375,321,699796330,9643,3 +47704,MojeDnoToWaszSzczyt,502,291,9299539,9981,0 +47705,Lord+Arsey+KING,654,646,848956513,7850,0 +47706,ElMajkelos+V,413,305,849085160,10160,0 +47707,010,711,551,7085502,9723,2 +47708,Wioska+Duszkowsky+012,355,656,272173,5099,0 +47709,ZZ06,308,408,356642,9713,0 +47710,09+Dzi%C4%99ki+Motorowiec10+%3B%29..,296,448,849018442,9899,0 +47711,Wioska+barbarzy%C5%84ska,697,567,7528491,2778,0 +47712,004+C,401,694,849099876,10495,8 +47713,W35,696,411,699524362,1707,0 +47714,%5B0195%5D,286,500,8630972,7487,0 +47715,Wioska+barbarzy%C5%84ska,573,302,828637,9722,6 +47716,Komandos,635,663,7976264,10290,0 +47717,Wioska+barbarzy%C5%84ska,702,559,17714,6079,0 +47718,Avanti%21,293,484,698625834,5786,0 +47719,Zaplecze+Barba+016,365,329,699796330,9185,0 +47720,088+Wioska+barbarzy%C5%84ska,546,291,699854484,7648,0 +47721,Wioska+barbarzy%C5%84ska,377,670,699269923,8341,0 +47722,.achim.,474,288,6936607,6659,2 +47723,Wyspa+009,295,566,225023,5418,0 +47724,Pozamykani+w+o%C5%9Brodkach,711,457,699785935,6954,0 +47725,B030,626,324,8740199,6009,0 +47727,MJ23,683,381,8669398,6194,0 +47728,%230300+LAROX,460,290,1238300,5532,0 +47729,Lord+Arsey+KING,648,656,848956513,3995,0 +47730,0164,386,680,7085510,3496,0 +47731,0076,689,397,698416970,10083,0 +47732,Flap,608,315,699098531,10290,0 +47733,Wioska+barbarzy%C5%84ska,572,699,7589468,6531,0 +47734,%2A014%2A,679,624,1205898,7382,0 +47735,komandso,636,664,7976264,10040,0 +47736,C097,362,667,699383279,9777,0 +47738,019,653,350,9148043,4292,0 +47739,007,539,714,8925624,1644,0 +47740,pusta,572,303,828637,4565,0 +47742,Wioska+Sportowiec73,321,623,8696132,3606,0 +47743,%3D118%3D+Wioska+barbarzy%C5%84ska,701,568,3781794,6206,0 +47744,%2A005%2A,679,618,1205898,8793,0 +47745,001.+Good+Night,491,704,699684062,10019,0 +47746,Wioska+barbarzy%C5%84ska,317,383,699794765,2117,0 +47747,%2A016,674,370,7758085,7180,0 +47748,005,403,688,849099876,10495,8 +47749,0085,611,346,848913037,9968,0 +47750,069.,312,602,698167138,2200,0 +47751,035,624,671,699695167,3351,0 +47752,Saran1,411,301,848937248,4553,0 +47753,%23%232,348,353,2800032,9080,0 +47754,Lord+Arsey+KING,660,645,848956513,10285,6 +47755,Osterwijk,626,334,9103424,7896,0 +47756,wioska,635,332,699738350,12154,0 +47757,Wioska+barbarzy%C5%84ska,679,383,849095068,4735,0 +47758,SkalpeR+2,290,493,849108007,3325,0 +47759,B026,625,326,8740199,6769,0 +47760,C.025,710,482,9188016,4472,0 +47761,Wyspa+020,297,572,225023,1999,0 +47762,C002,369,670,699383279,9841,6 +47763,Wioska+barbarzy%C5%84ska,588,308,828637,10474,0 +47764,Husaria,689,598,699778867,9303,6 +47765,010+ma%C5%82a+pomy%C5%82ka,521,713,849093426,10259,0 +47766,Wioska+barbarzy%C5%84ska,298,424,699856962,8303,0 +47767,C012,545,705,698599365,3103,0 +47768,001.,626,670,699695167,8223,0 +47769,O005,338,638,272173,9955,5 +47771,067+-+Nowy+Pocz%C4%85tek...,347,644,698908184,7870,0 +47772,Wioska+KaszczuJ+2,699,574,849104356,9835,0 +47773,071,713,513,7085502,7764,0 +47774,%5B179%5D,677,387,8000875,9902,0 +47775,Wioska+barbarzy%C5%84ska,582,307,828637,10476,0 +47776,004,326,376,7919620,2599,0 +47777,New+World,439,708,698152377,9145,0 +47778,029+Novigrad,469,708,698620694,9842,0 +47779,Wioska+barbarzy%C5%84ska,313,608,6180190,6220,0 +47780,0060+Wioska+barbarzy%C5%84ska,449,703,849037407,6027,0 +47782,Cisza,290,550,698769107,4651,0 +47783,Wioska+barbarzy%C5%84ska,687,608,3589487,2085,0 +47784,084+Anchor,544,290,699854484,9835,0 +47786,004,445,703,849101309,3818,0 +47787,Ciemnogr%C3%B3d+%236,333,364,849096958,7629,0 +47788,FAKE+OR+OFF,408,305,698231772,9712,0 +47789,Wioska+majku+4,414,700,363280,3093,0 +47790,Na+Kra%C5%84cu+%C5%9Awiata+003,645,340,9291984,10475,0 +47792,D004,562,294,699299123,5902,0 +47793,Winterfell.008,445,296,848918380,10178,3 +47794,Wioska014,346,347,699711926,9654,0 +47796,EO+EO,284,520,699697558,10160,0 +47797,023.+El+Toro,713,544,1601917,10495,0 +47798,EO+EO,290,517,699697558,10019,4 +47799,C012,370,670,699383279,9790,0 +47800,Asgard,304,404,8724192,9105,0 +47801,C0225,291,549,8841266,6716,0 +47802,Wioska+barbarzy%C5%84ska,522,293,7758085,9507,0 +47803,North+002,515,284,849064752,10311,0 +47804,Wioska+barbarzy%C5%84ska,694,423,699488108,5265,0 +47805,North+007,510,291,849064752,10311,0 +47806,xxx,404,693,849014922,10495,0 +47807,Maltic,293,453,698652171,1383,0 +47808,MojeDnoToWaszSzczyt,500,290,9299539,9960,0 +47809,Wioska008,691,395,698768565,9288,0 +47810,O016,338,635,272173,9955,0 +47811,021,524,711,698996782,11157,0 +47812,Wioska+barbarzy%C5%84ska,678,481,699598425,10728,0 +47813,0040,581,693,698659980,10252,9 +47814,MojeDnoToWaszSzczyt,501,283,9299539,9945,0 +47815,Zeta+Reticuli+OO,471,286,699323302,10728,0 +47816,035.,458,714,849034882,10838,0 +47817,0107,394,685,7085510,10216,2 +47818,%2136+65+Arbore,658,363,698361257,9860,0 +47819,Z%C5%82oty+%C5%9Awit,581,299,699883079,6456,0 +47820,%2136+66+Plesa,666,367,698361257,9841,0 +47821,barbarzy%C5%84skaaaa,713,554,17714,10222,0 +47822,a002,681,608,3986807,1459,0 +47823,%2A008%2A,680,615,1205898,8029,0 +47824,K33,317,384,699794765,2577,0 +47825,xxx,322,610,6180190,8659,0 +47826,Wioska+barbarzy%C5%84ska,287,547,849085605,3031,0 +47827,Flap,604,313,699098531,10692,0 +47828,Ciemnogr%C3%B3d,333,363,849096958,9939,0 +47829,Dobrawa,572,700,698723158,5540,0 +47830,Kurnik,456,707,699603116,3965,0 +47831,071.Stradi,429,295,698365960,9869,0 +47832,019.+Elbrus,711,554,1601917,9182,0 +47833,Lord+Arsey+KING,657,645,848956513,9014,0 +47834,O003,338,633,272173,9955,8 +47835,EO+EO,293,515,699697558,9177,0 +47836,015,325,381,7386358,2752,0 +47837,Ob+Konfederacja,438,336,848915730,9682,0 +47838,BRICKLEBERRY,515,287,7758085,10242,0 +47839,Wioska+X10,296,459,698701911,1560,0 +47840,C13,706,449,849093742,3513,0 +47841,003,444,704,849101309,4087,0 +47842,Wioska+barbarzy%C5%84ska,336,435,393668,5937,0 +47843,188,416,692,849099876,9209,0 +47844,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,560,704,699828442,9825,0 +47846,Elo+elo+15,304,577,699016994,4855,0 +47847,090+Wioska+barbarzy%C5%84ska,542,288,699854484,6794,0 +47849,Taran,311,608,6180190,7708,0 +47850,Brugge,555,291,849054951,9171,0 +47851,%2136+65+Manastioara,657,361,698361257,6389,0 +47853,Wyspa_51,495,718,2585846,9638,9 +47854,Wioska+barbarzy%C5%84ska,416,298,698231772,6803,0 +47855,czorny,698,576,849101814,1379,0 +47856,18+Adamuswielki2..,298,444,849018442,9114,0 +47857,%2A006,668,368,7758085,8864,0 +47858,Amsterdam+Holandia,290,513,698368493,1732,0 +47859,AAA,549,293,1006847,10377,0 +47860,C004,539,706,698599365,5398,0 +47861,komandos,633,665,7976264,10178,0 +47862,Wioska+krumlow+14,593,316,699098531,2372,0 +47863,Wioska+barbarzy%C5%84ska,637,658,848987051,9755,0 +47864,006,401,690,849099876,10495,4 +47865,0032,485,712,699684062,3993,0 +47866,036.,630,665,699695167,3283,0 +47867,001,301,414,8259895,5949,0 +47868,026.+Forela,712,532,1601917,10152,0 +47869,Wiocha+V,337,359,849106316,2400,0 +47871,Wioska+barbarzy%C5%84ska,553,711,699828442,9166,0 +47872,%23%23%23050%23%23%23,593,687,698285444,10495,0 +47873,Taran,320,604,6180190,8163,0 +47874,001,323,369,7386358,12154,0 +47875,Wioska+barbarzy%C5%84ska,707,524,7047342,10269,0 +47876,%3F%3F%3F%3F,476,291,698489071,10503,0 +47877,046,674,382,698635863,9239,0 +47878,Bagno+1,481,716,848883684,9731,9 +47880,Wypijmy+zdrowie,690,406,699785935,5949,0 +47882,%23%23%23115%23%23%23,585,691,698285444,10495,0 +47883,%230279+Don+Noobas,465,293,1238300,3813,0 +47884,Lord+Arsey+KING,655,654,848956513,9014,0 +47885,0074+Wioska+barbarzy%C5%84ska,445,704,849037407,6648,0 +47886,Wioska+0021,351,651,9186126,6656,0 +47887,Wioska+barbarzy%C5%84ska,380,681,6821136,2810,0 +47888,Winona,531,707,6116940,5440,0 +47889,Wioska+barbarzy%C5%84ska,592,307,698350371,2819,0 +47890,0529,532,664,698659980,9753,0 +47891,B009,629,326,8740199,7129,0 +47892,KONFA+TO+MARKA%2C+NARKA,289,450,698152377,7829,0 +47893,Wioska+barbarzy%C5%84ska,282,486,699846892,2239,0 +47894,Wiadro05,674,626,8677963,9444,0 +47895,%21%21%21Wioska+barbarzy%C5%84ska,642,346,9291984,4954,0 +47896,NBT+J,596,689,849047044,9233,0 +47897,Wioska+barbarzy%C5%84ska,571,302,828637,10287,0 +47898,206,427,298,698365960,10483,7 +47899,013,290,541,849098688,6424,0 +47900,Wioska+barbarzy%C5%84ska,710,492,699429153,8235,7 +47901,Wioska+barbarzy%C5%84ska,655,357,1715091,3282,0 +47902,167...K,395,308,6920960,4952,0 +47904,%23K75+0003,521,715,699728159,6835,0 +47905,Wioska+0011,346,653,9186126,10311,0 +47906,The+Game+Has+Only+Just+Begun,353,521,9280477,9976,0 +47907,Zaplecze+Barba+011,368,331,699796330,8741,0 +47908,Wioska+barbarzy%C5%84ska,709,547,17714,9780,0 +47909,10+Dzi%C4%99ki+Lord+Lord+Dexter+%3B%29..,294,449,849018442,9835,0 +47910,%23K75+0025,517,709,699728159,5881,0 +47911,a-3,678,616,848921861,10495,0 +47912,Wioska+barbarzy%C5%84ska,647,653,848987051,8935,0 +47913,034%7C%7C+Ara,459,710,849035525,6361,0 +47914,Szlachcic,359,335,698388578,6949,0 +47915,Wioska10,705,576,699266530,6940,0 +47916,AAA,550,296,1006847,6704,0 +47917,C088,362,663,699383279,8397,0 +47918,%23%23%23116%23%23%23,583,696,698285444,10495,0 +47919,037.,626,668,699695167,3879,0 +47920,Wioska+barbarzy%C5%84ska,380,329,699660539,9225,0 +47921,XXXX,564,301,849054951,10178,0 +47922,Lord+Arsey+KING,661,647,848956513,9377,0 +47923,Jan+Ost+skrajny+II,709,440,879782,5637,0 +47924,09+Sytuacja,704,445,849101845,9754,0 +47925,Wioska+002,694,595,7999103,10061,0 +47926,047,509,283,849010255,7114,0 +47927,KONFA+TO+MARKA%2C+NARKA,291,462,698152377,8031,0 +47928,3.Coventry,548,714,698215322,5457,0 +47929,012+Dziekanowice,285,534,9235561,2963,0 +47930,KR%C3%93L+PAPI+WIELKI,670,625,698191218,10000,0 +47931,0145,391,686,7085510,4571,0 +47932,012,303,404,8724192,1162,0 +47933,112,408,699,849099876,10495,0 +47934,New+WorldA,284,519,849084005,4805,0 +47935,054,406,695,849099876,10495,0 +47936,xzc,488,692,5997814,10084,0 +47937,Pocz%C4%85tek,307,586,6180190,5886,0 +47938,Wioska+barbarzy%C5%84ska,474,283,699196829,9138,1 +47939,001b,302,414,8259895,5230,0 +47940,Cisza,289,551,698769107,5330,0 +47941,Wioska+barbarzy%C5%84ska,386,316,699660539,2433,0 +47942,Magiczne+koszary,462,715,848935389,9809,0 +47943,%5B0122%5D,439,299,8630972,9885,0 +47944,Wioska+barbarzy%C5%84ska,304,587,698663855,4797,0 +47945,C006,372,674,699383279,9880,4 +47946,XDX,606,335,699098531,7427,0 +47947,XDX,608,311,699098531,10585,0 +47948,Wioska+barbarzy%C5%84ska,508,716,698704189,1526,0 +47949,WS+06,703,437,699524891,6848,0 +47950,KONFA+TO+MARKA%2C+NARKA,293,461,698152377,8420,0 +47951,Wioska+barbarzy%C5%84ska,302,418,699856962,7391,0 +47952,Wioska+witold2129,700,574,699471829,4734,0 +47953,037+Vattweir,472,712,699834004,10838,0 +47954,Ciemnogr%C3%B3d+%237,334,363,849096958,7797,0 +47955,KONFA+TO+MARKA%2C+NARKA,299,438,698152377,7207,0 +47956,39.Jamurlak,710,538,8976313,4979,0 +47957,047,673,382,698635863,8505,0 +47958,%C5%BBUBEREK+001,608,687,33900,10778,3 +47959,WooWoo+zim%C4%85+chodzi+w+sanda%C5%82ach,616,366,699857387,9122,0 +47960,005,699,408,849085371,3631,0 +47961,...,583,697,7985956,8462,0 +47962,Wioska+barbarzy%C5%84ska,705,561,17714,3652,0 +47963,Wioska+barbarzy%C5%84ska,709,486,942959,3934,0 +47964,BRICKLEBERRY,518,288,7758085,10040,0 +47965,Brama+Kr%C3%B3lowej,707,439,849101378,9098,0 +47966,P%C3%B3%C5%82nocny+Bagdad,618,319,8847546,9835,0 +47967,komandos,646,662,7976264,10053,5 +47969,014,289,557,849098688,10636,0 +47970,%23K75+0028,513,712,699728159,4403,0 +47971,Wioska+Jopo32,527,708,699733501,8227,0 +47972,Osada+6,698,426,8675636,9560,0 +47973,Avanti%21,283,473,698625834,9525,4 +47974,Szlachcic,362,336,698388578,9806,0 +47975,KR%C3%93L+PAPI+WIELKI,715,521,698191218,6242,0 +47976,%5B006%5D,460,633,698585370,8851,0 +47977,%23%23%23117%23%23%23,594,694,698285444,10495,0 +47978,Wioska+barbarzy%C5%84ska,476,285,849054951,9226,0 +47979,...,341,360,699657450,9229,0 +47980,023,528,712,698996782,11731,0 +47981,Wioska+barbarzy%C5%84ska,684,385,8675636,8202,0 +47982,008+KW,702,417,699488108,9957,0 +47983,Taran,323,619,6180190,5189,4 +47984,Wioska+barbarzy%C5%84ska,703,429,8675636,8851,0 +47985,New+WorldA,285,525,849084005,4087,0 +47986,%3F%3F%3F%3F,470,294,698489071,5098,0 +47987,063.Stradi,433,300,698365960,10073,0 +47988,20+Dwie+dychy,711,446,849101845,4530,0 +47989,Wioska+B,540,295,1867161,4687,0 +47990,Sernik+z+Andzynkami,709,505,699126484,7841,0 +47991,004+Abinghton,619,320,699098531,10143,1 +47992,ChceszPokojuSzykujSi%C4%99DoWojny,487,715,699333701,9828,0 +47993,...,339,361,699657450,6073,0 +47994,Wioska+maks,374,667,699269923,8890,0 +47995,%2A007%2A,683,617,1205898,8171,0 +47996,038.,631,673,699695167,3253,0 +47997,142,402,687,849099876,6764,0 +47998,033,659,637,2323859,9783,0 +47999,%5B202%5D,678,387,8000875,6641,0 +48000,KONFA+TO+MARKA%2C+NARKA,289,443,698152377,10053,0 +48001,Maribor,556,294,849054951,10068,0 +48002,Wioska+barbarzy%C5%84ska,305,597,698167138,2142,0 +48004,C0238,290,548,8841266,8241,0 +48005,WB08,307,403,356642,4606,0 +48006,Las+Palmas,379,681,7085510,6202,0 +48008,FAKE+OR+OFF,403,308,698231772,9822,0 +48009,Wioska+barbarzy%C5%84ska,450,385,699191449,5061,0 +48010,Cisza,289,554,698769107,6921,0 +48011,005+xd+elo,309,606,6180190,9835,0 +48012,KONFA+TO+MARKA%2C+NARKA,288,455,698152377,7296,0 +48013,0011+W%C4%99gorzewo,462,284,849096882,5265,9 +48014,002+Twierdza,630,668,849104328,10019,0 +48015,Z%C5%82oty+%C5%9Awit,579,301,699883079,7154,0 +48016,KONFA+TO+MARKA%2C+NARKA,291,456,698152377,10294,0 +48017,Orion,284,516,849101647,5646,0 +48018,Wioska+barbarzy%C5%84ska,327,375,849027025,2052,0 +48019,Wyspa+018,298,569,225023,5716,0 +48020,Wioska+barbarzy%C5%84ska,508,718,698704189,6322,0 +48021,.achim.,482,289,6936607,9150,0 +48022,039.,627,670,699695167,4460,0 +48023,Wioska+barbarzy%C5%84ska,638,660,848987051,8880,0 +48024,Bessa+007,639,658,848987051,9996,0 +48025,Kurnik,442,710,699603116,1322,0 +48026,C.041,711,475,9188016,4346,0 +48027,%23%23%23015%23%23%23,607,690,698285444,10495,9 +48028,Szlachcic,360,334,698388578,4266,0 +48029,G005,511,290,699208929,9566,0 +48030,S009,596,687,8627359,7468,0 +48031,002+potrzeby%3F,534,710,6116940,6793,0 +48032,NOT%3F,434,545,9236866,1748,0 +48033,Taran,323,617,6180190,8411,0 +48034,044.+Jaworowy,711,542,1601917,8306,0 +48035,015,718,497,849091105,9792,2 +48036,047,663,358,9148043,6059,0 +48037,KONFA+TO+MARKA%2C+NARKA,291,452,698152377,10290,0 +48038,Parque+de+Santa+Catalina,376,678,7085510,2588,0 +48039,030%23+Karla,448,706,3933666,2902,0 +48041,Z%C5%82oty+%C5%9Awit,583,302,699883079,10055,0 +48042,Wioska+barbarzy%C5%84ska,365,671,0,1567,0 +48043,ZZ05,310,408,356642,9648,0 +48044,TWIERDZA+.%3A076%3A.,703,574,7154207,6021,0 +48045,1.+basket,310,594,6180190,4116,0 +48047,New+WorldA,290,523,849084005,6360,0 +48048,Nabatene,458,711,849089459,8219,0 +48049,XDX,607,314,699098531,9681,0 +48050,Pocz%C4%85tek,299,577,7842579,3643,0 +48051,186,415,690,849099876,9585,0 +48052,Wioska+barbarzy%C5%84ska,305,599,698167138,1580,0 +48055,Wioska+barbarzy%C5%84ska,372,325,3698627,9535,0 +48057,173,380,677,849099876,7434,0 +48058,D%C5%BCejd%C5%BCej+6,669,637,849098326,1283,0 +48059,wioska,637,338,849102068,3583,0 +48061,Wioska+barbarzy%C5%84ska,385,675,6948793,6585,0 +48062,099.Stradi,439,292,698365960,8905,0 +48063,037,510,289,849010255,6440,0 +48064,036,665,637,2323859,3601,0 +48065,020,648,351,9148043,5435,0 +48067,002,349,348,849101205,8890,0 +48068,Wioska+barbarzy%C5%84ska,557,711,699828442,9284,0 +48069,bucksbarzy%C5%84skamiiiru,328,380,848955783,2290,0 +48070,cc+091d,410,373,3909522,7054,0 +48071,036.,454,711,849034882,10503,0 +48072,Wioska+barbarzy%C5%84ska,332,373,849027025,3610,0 +48073,4_Franekkimono510_4,369,325,849099422,6281,0 +48074,004,683,609,3589487,5139,0 +48075,10.+Vindobona,711,539,848946700,10479,0 +48076,%3F%3F%3F%3F,472,292,698489071,7511,0 +48078,Wioska+barbarzy%C5%84ska,323,629,698908184,9765,0 +48079,--024--,572,296,542253,6128,0 +48080,%230024+barbarzy%C5%84ska,489,287,1238300,10178,8 +48081,015.+Pollo+alla+cacciatore,329,367,849102092,9782,0 +48082,Podbitek+4,689,606,849101652,3453,0 +48083,pusta,557,290,828637,10024,0 +48084,005,611,311,699117992,6528,0 +48086,775,345,642,698908184,7143,0 +48087,044KP,486,289,849063849,8481,0 +48088,Ostatnia+Noc,696,425,699785935,6868,0 +48089,%3D085%3D+Plymouth,700,567,3781794,6914,0 +48090,Wioska006,344,349,699711926,9041,0 +48091,Wioska+barbarzy%C5%84ska,375,672,699269923,8325,0 +48092,XDX,595,309,699098531,5962,0 +48093,Avanti%21,282,491,698625834,6771,0 +48094,Bolonia,302,425,699852080,1395,0 +48095,%230296+LAROX,461,291,1238300,7545,0 +48096,0141,390,679,7085510,5077,0 +48097,W36,694,413,699524362,3235,0 +48098,D%C5%BCejd%C5%BCej+3,668,634,849098326,8745,0 +48099,Lord+Arsey+KING,658,651,848956513,8274,0 +48100,%5B0250%5D,283,508,8630972,5576,0 +48101,Jan+III+Sobieski,713,502,8418489,3421,0 +48102,039.+Pig,509,716,848928624,4206,0 +48103,Wielka+Lechia,294,439,848970357,4103,0 +48104,Wioska+barbarzy%C5%84ska+2x3,570,702,849055425,8790,0 +48105,Avanti%21,285,492,698625834,6280,0 +48106,New+World+1,289,523,849084005,10178,0 +48107,Wioska011,689,399,698768565,7085,2 +48108,New+WorldA,284,523,849084005,4442,0 +48109,34.+Szalom,558,289,849054951,7429,0 +48111,New+World,428,706,698152377,10294,0 +48112,Na+SsSskraju,298,556,1536625,6896,7 +48113,O079,335,637,272173,9870,0 +48114,3.+Syrax,301,583,849089499,4426,0 +48115,C047,369,671,699383279,8589,0 +48116,Wioska+barbarzy%C5%84ska,534,292,698350371,7467,0 +48117,O131,319,622,272173,7961,0 +48118,013,615,314,699117992,1969,0 +48119,Ultimate+Farming+Simulator+2,417,304,699872032,9534,0 +48120,FAKE+OR+OFF,406,306,698231772,9816,0 +48121,028,296,567,849098688,10160,0 +48122,Wioska+008,693,596,7999103,6968,0 +48123,O064,332,633,272173,9868,0 +48124,Wioska+barbarzy%C5%84ska,703,428,8675636,8723,0 +48125,121,701,445,849088515,5874,0 +48126,New+WorldA,291,544,849084005,6749,0 +48127,.achim.,563,290,6936607,6589,0 +48129,P%C3%B3%C5%82nocny+Bagdad,616,320,8847546,9976,0 +48130,Senne,286,457,848981726,6205,9 +48131,Avanti%21,283,490,698625834,6939,0 +48132,Avanti%21,287,475,698625834,6919,0 +48133,Mamy+sporo+za+sob%C4%85,701,421,699785935,6057,0 +48134,Wioska+barbarzy%C5%84ska,358,341,849027025,9863,0 +48136,Wioska+barbarzy%C5%84ska,419,298,849102150,2857,0 +48137,Osada+koczownik%C3%B3w,383,325,699660539,9934,8 +48138,016+-+Budowanko%21,485,714,7540891,7305,0 +48139,Saran4,412,302,848937248,3739,0 +48140,New+Land+28,330,375,849064752,2869,0 +48141,Holandia100,289,512,698368493,3014,0 +48142,%5B0161%5D,450,295,8630972,8491,0 +48143,.achim.,477,282,6936607,3495,0 +48145,Kolonia+03,304,593,6180190,8447,0 +48147,006+Wioska+barbarzy%C5%84ska,603,686,699346280,10019,0 +48148,Wioska2.,705,577,699266530,9525,0 +48149,%5BB%5D001,417,702,9195661,9828,8 +48152,Klatka5,623,680,6528152,2819,0 +48153,023Nowy+Rok,474,707,698620694,8014,0 +48154,MojeDnoToWaszSzczyt,493,284,9299539,9957,0 +48155,005,531,715,698996782,6857,0 +48156,...,340,355,699657450,5569,0 +48157,ZZ16,307,411,356642,8198,0 +48158,Wioska+G%C5%82az,386,425,848917401,1083,0 +48159,Wioska+barbarzy%C5%84ska,705,548,17714,5929,0 +48160,068.Stradi,431,302,698365960,10064,0 +48161,Avanti%21,285,487,698625834,6180,0 +48162,Wioska+barbarzy%C5%84ska,647,344,9291984,4068,0 +48163,bbb,682,610,3986807,1388,0 +48164,.achim.,481,286,6936607,8302,0 +48165,EE+004,693,581,849100149,9643,0 +48166,HOLENDER+5,322,627,698908184,4905,0 +48167,Wioska+barbarzy%C5%84ska,335,369,849027025,4345,0 +48168,Borys%C3%B3wka+ma%C5%82a,305,601,698167138,4043,0 +48169,T%C5%82okowo+kolonia,285,501,849100877,8365,1 +48170,R+037,496,712,699195358,6806,0 +48171,York,567,707,849055425,7194,0 +48172,Z%C5%82oty+%C5%9Awit,586,300,699883079,9998,0 +48173,Barba,289,471,848977600,8590,0 +48174,Adamo3,585,696,849096768,8645,0 +48176,NBT+D,594,691,849047044,9238,0 +48177,023,714,473,849091105,10160,3 +48178,C014,543,706,698599365,9767,0 +48179,Beteo,553,705,699443920,9761,4 +48180,Wioska+barbarzy%C5%84ska,616,387,0,406,0 +48181,%2A006%2A,685,617,1205898,7989,0 +48182,New+WorldA,286,508,849084005,3056,1 +48183,075+Wioska+barbarzy%C5%84ska,539,284,699854484,9752,0 +48184,O010,339,633,272173,9956,0 +48186,Taran,326,619,6180190,9934,0 +48187,B_3,296,419,699728266,4281,2 +48188,Wiba,285,457,698652171,2307,0 +48189,Wioska+barbarzy%C5%84ska,328,373,0,2719,0 +48190,028.+Night+Raid%2A,426,707,699684062,10471,0 +48191,Szlachcic,358,339,698388578,5987,0 +48192,%23%235,348,351,2800032,9080,0 +48193,...,341,356,699657450,5234,0 +48194,Zzz+03+wejd%C5%BA+a+nie+wyjdziesz,293,572,849084740,4149,0 +48195,Wioska+barbarzy%C5%84ska,421,304,849085160,4161,0 +48196,Lord+Arsey+IV,325,384,698349125,3005,0 +48197,-+279+-+SS,554,702,849018239,7361,0 +48198,Taran,687,405,699598425,10728,0 +48199,096.Stradi,438,296,698365960,8690,0 +48200,Wioska+barbarzy%C5%84ska,529,287,699818726,7193,0 +48201,A-002,323,377,699406247,6320,9 +48202,Bestan,558,708,699443920,9761,0 +48203,FAKE+OR+OFF,410,308,698231772,9824,0 +48204,032+Lavaridge+Town,717,480,699441366,5034,0 +48205,%2A003,668,365,7758085,9847,0 +48206,-07-,577,701,849032414,9472,0 +48207,ChceszPokojuSzykujSi%C4%99DoWojny,488,715,699333701,9761,0 +48208,New+World,438,702,698152377,10295,0 +48209,118+invidia,503,711,849093426,9546,0 +48210,040.,631,675,699695167,3250,0 +48211,Wioska+barbarzy%C5%84ska,417,299,698231772,6453,0 +48212,009+ukrad%C5%82em+darm%C4%99,521,708,849093426,10237,0 +48213,Wioska+Felicjan,528,289,699818726,10160,0 +48214,Wioska+barbarzy%C5%84ska,712,446,699628084,4101,0 +48215,Wioska+barbarzy%C5%84ska,559,710,699828442,5454,0 +48216,Wioska+barbarzy%C5%84ska,717,488,699429153,6034,0 +48217,Wioska,685,384,8675636,10160,0 +48218,O029,334,636,272173,9907,0 +48219,C080,357,654,699383279,9597,0 +48220,O052,331,630,272173,9871,0 +48221,%3DTestudo%3D,344,641,849101581,4103,0 +48222,New+World,424,695,698152377,10290,0 +48223,Wioska+0023,348,651,9186126,7731,0 +48224,WIOSKA+DO+ODDANIA+Z+BONUSAMI,462,714,849101578,1017,0 +48225,Wied%C5%BAma+-+Z+008,301,432,9239515,2656,0 +48226,EO+EO,281,499,699697558,10019,0 +48227,Wioska+barbarzy%C5%84ska,305,588,698663855,5001,0 +48229,Poziom+emocji%3A+0,353,654,849092685,7951,0 +48230,Wioska+%2Aworm%2A,292,561,2811353,3477,0 +48231,055+Wioska+barbarzy%C5%84ska,549,288,699854484,9976,0 +48232,%23.46+Wioska+barbarzy%C5%84ska,706,458,849054582,1722,0 +48233,088,711,520,7085502,7074,0 +48234,FAKE+OR+OFF,410,309,698231772,9822,0 +48235,C078,355,659,699383279,5037,0 +48236,Pocz%C4%85tek,302,579,7842579,9674,0 +48237,Tyle+co+nic,693,603,849101652,2321,0 +48238,rafisonik4,511,714,849101108,9657,0 +48239,North+004,517,282,849064752,10311,0 +48240,%2A015%2A%2A,680,619,1205898,6765,0 +48241,Wiadro07,673,629,8677963,8096,0 +48242,Wioska+barbarzy%C5%84ska,307,418,0,287,0 +48243,005,538,713,8925624,2596,0 +48244,Z%C5%82oty+%C5%9Awit,580,301,699883079,9643,0 +48245,Wioska+barbarzy%C5%84ska+006,379,321,849068662,9722,0 +48246,0075+Wioska+barbarzy%C5%84ska,448,705,849037407,6798,0 +48247,New+World,433,700,698152377,10294,6 +48248,007+%C5%BBnin,286,528,9235561,4179,0 +48249,001+-+Budowanko%21,488,714,7540891,11130,0 +48251,Wioska+ba,281,501,849101674,4191,0 +48252,Taran,324,622,6180190,7699,0 +48253,073,626,323,2502956,5246,0 +48255,087,717,503,7085502,5952,0 +48257,XDX,603,306,699098531,6310,0 +48258,Wioska+5,655,347,849101945,1702,0 +48259,Wioska+barbarzy%C5%84ska,715,505,8418489,5830,0 +48260,Wioska+barbarzy%C5%84ska,708,547,17714,3766,0 +48261,041.,630,667,699695167,4066,0 +48262,stalingrad+1,541,712,7860453,3777,0 +48264,Wioska+19F06,438,709,698152377,7262,0 +48265,Kurnik,444,711,699603116,2662,0 +48266,C070,358,664,699383279,4397,0 +48267,Taran,315,602,6180190,6228,0 +48268,Wyspa+026,292,565,225023,4563,0 +48269,C.026,709,481,9188016,4680,0 +48271,002,696,402,7409475,7876,0 +48272,0080,681,394,698416970,9912,7 +48274,037,716,468,849091105,8844,0 +48275,0001+Wioska+Hubixon,494,722,699656989,9707,0 +48276,MojeDnoToWaszSzczyt,496,286,9299539,9971,0 +48277,AAA,555,295,1006847,7327,0 +48278,-04-,579,702,849032414,9472,0 +48281,002+Giecz,290,530,9235561,6994,0 +48282,%230186+grabarz22,465,287,1238300,7114,0 +48283,C04,707,444,849093742,7090,0 +48284,Kurnik,548,711,699603116,9070,0 +48285,006,388,677,6948793,9428,0 +48286,Architekci+Plac%C3%B3w+Boju,338,554,8004076,9880,0 +48287,C071,358,661,699383279,5609,0 +48288,15+Tam+gdzie+Zawsze,706,445,849101845,8462,0 +48289,0434,560,708,698659980,10019,0 +48290,C010,537,711,698599365,5798,0 +48291,%23%23%23118%23%23%23,587,696,698285444,10495,0 +48292,253...Karki98,452,294,6920960,5661,0 +48293,015,663,646,2323859,4574,0 +48294,Wioska+barbarzy%C5%84ska,371,328,3698627,9310,0 +48295,Wioska+barbarzy%C5%84ska,426,295,698231772,7158,0 +48296,004+-+Budowanko%21,490,719,7540891,8910,0 +48297,13.+PST,477,714,849092769,4135,0 +48298,XDX,608,316,699098531,10290,0 +48299,MojeDnoToWaszSzczyt,502,283,9299539,9706,0 +48300,069,712,509,7085502,8275,0 +48302,Taran,323,623,6180190,9869,0 +48303,073+Wioska+barbarzy%C5%84ska,543,288,699854484,9835,0 +48304,C0246,288,544,8841266,4870,0 +48305,BossLand,353,341,849101604,10120,0 +48306,Piek%C5%82o+to+inni,643,337,848956765,5835,0 +48307,...,342,358,699657450,3917,0 +48308,Wioska+bar,285,529,699805379,1928,0 +48309,007,384,319,699660539,6907,0 +48310,005,420,307,699694284,8434,0 +48311,Szlachcic,360,336,698388578,6772,0 +48312,024,646,348,9148043,4122,0 +48313,%5BD%5D_%5B002%5D+Dejv.oldplyr,285,498,699380607,8749,0 +48314,0126,386,687,7085510,7460,0 +48315,%5B0231%5D,290,505,8630972,7549,0 +48316,006%3AWioska+Huel,374,333,8772425,10301,0 +48318,%23K66+0011,609,678,699728159,4914,0 +48319,Wioska+barbarzy%C5%84ska,385,676,6948793,8082,0 +48320,008+Biskupin,286,534,9235561,7374,0 +48321,%23K75+0011,521,712,699728159,5091,0 +48322,087,394,683,849099876,10026,0 +48323,043,293,543,9280477,5011,0 +48324,%5B203%5D,678,388,8000875,6024,0 +48325,114,683,606,3589487,4052,0 +48327,039.,451,710,849034882,9681,0 +48329,New+World,435,703,698152377,10291,0 +48330,Komandos,638,665,7976264,10495,4 +48331,Woof,701,429,699785935,7263,0 +48332,016,386,319,699660539,4242,0 +48333,Wioska+barbarzy%C5%84ska,687,610,3589487,2777,0 +48334,XDX,600,306,699098531,6115,0 +48335,002,663,642,2323859,9783,0 +48336,D012,560,292,699299123,5533,0 +48337,Wyspa+017,299,571,225023,6680,0 +48338,-+289+-+SS,559,704,849018239,6484,0 +48339,006.+xHavajek,681,379,2873154,10237,0 +48340,029+Slateport+City,713,482,699441366,4766,0 +48342,Obrze%C5%BCe,582,694,7589468,8817,0 +48343,SkalpeR+4,281,502,849101674,2764,0 +48344,Lord+Arsey+KING,653,652,848956513,10285,0 +48345,05.+Rawenna,709,538,848946700,10382,0 +48346,FAKE+OR+OFF,403,309,698231772,9813,0 +48347,Cisza,289,558,698769107,7385,0 +48348,Kurnik,446,713,699603116,2204,0 +48349,A+036,362,644,699269923,8254,0 +48350,MJ45,683,382,8669398,6100,0 +48351,AlaKlaudia1,383,324,848966521,5825,0 +48352,Daleko+od+domu.,659,354,848924219,1680,0 +48354,O067,331,629,272173,9868,0 +48355,162...H,392,312,6920960,5548,0 +48356,010.+Night+Raid%2A,433,698,699684062,10362,0 +48357,049.,637,671,699373599,4455,0 +48359,018,525,717,698996782,6332,0 +48360,028.+Brauer92,674,381,2873154,7157,0 +48361,Pocz%C4%85tek,297,574,7842579,9924,9 +48362,%C5%81o+baben%21,712,501,8418489,9797,0 +48363,Wioska+003,689,595,7999103,10304,0 +48365,003,701,560,301602,8716,0 +48366,Ger5,716,524,2246711,3970,0 +48367,181,383,317,2268889,4771,0 +48368,Wioska009,694,390,698768565,4286,0 +48369,060,401,696,849099876,10495,0 +48370,artnow,618,678,6818593,1960,0 +48371,008,311,398,8724192,3161,0 +48372,010,695,394,699738350,10171,0 +48373,Wioska+do+czasu,352,651,2725721,4366,0 +48375,FAKE+OR+OFF,403,307,698231772,9822,0 +48376,Wioska+barbarzy%C5%84ska,709,540,17714,3860,0 +48377,New+World,421,705,698152377,10297,0 +48378,Wancki,517,287,7758085,9861,6 +48379,%23K75+0017,520,710,699728159,4882,0 +48380,Szlachcic,362,343,698388578,6260,0 +48381,Wiadro15,666,637,8677963,10147,0 +48382,KONFA+TO+MARKA%2C+NARKA,296,434,698152377,7668,0 +48383,028%7C%7C+Sextans,488,643,849035525,10019,0 +48384,166,413,693,849099876,9206,0 +48385,U.004,291,558,849088243,7159,0 +48386,New+World,432,699,698152377,7471,0 +48387,%230042,545,629,1536231,10495,0 +48388,058,401,693,849099876,10495,0 +48389,0033,326,381,2321390,2603,0 +48390,085,719,514,7085502,6007,0 +48391,%3F%3F%3F%3F,490,281,698489071,10503,6 +48392,Wioska+Vlo4,586,307,8609713,8931,0 +48393,KONFA+TO+MARKA%2C+NARKA,290,452,698152377,6897,0 +48394,...,336,359,699657450,1652,0 +48395,004,308,400,8724192,5365,0 +48396,004,353,349,849101205,7938,0 +48397,0042,473,715,699280514,3745,0 +48398,Z%C5%82oty+%C5%9Awit,596,300,699883079,7896,0 +48399,Kurnik,477,712,699603116,7644,0 +48400,C.042,715,466,9188016,4517,0 +48402,Wioska+barbarzy%C5%84ska,694,598,6921135,7015,0 +48403,Z%C5%82oty+%C5%9Awit,580,298,699883079,10119,0 +48404,Babidi+%233,373,324,849101962,7450,0 +48405,0089,685,399,698416970,9435,6 +48406,Wioska+barbarzy%C5%84ska,534,290,698350371,8229,0 +48407,Lord+Arsey+KING,654,655,848956513,9870,0 +48409,115,687,616,3589487,4350,0 +48410,Kurnik,467,711,699603116,9201,0 +48411,Bagno+4,485,719,848883684,9452,0 +48412,IV.+Krzyczki-%C5%BBabiczki,364,333,849101893,4784,0 +48413,012,657,644,2323859,5912,0 +48415,bucksbarzy%C5%84skamiiiru,316,394,848955783,6973,0 +48417,rafisonik3,510,713,849101108,12154,0 +48418,Blask,701,433,699785935,7696,0 +48419,%2A028%2A,688,614,1205898,3309,0 +48420,Hoofdorp,282,519,699830255,1871,0 +48422,Wioska+barbarzy%C5%84ska,636,339,8740199,3550,0 +48423,065+invidia,546,708,849093426,6235,0 +48424,%2136+66+Runcu,663,362,698361257,9483,0 +48425,Moldor+5,633,362,849049045,11078,0 +48426,XDX,599,314,699098531,6620,0 +48427,Taran,314,615,6180190,9789,0 +48428,Wioska+barbarzy%C5%84ska,431,294,698231772,8565,0 +48429,XDX,598,313,699098531,9759,0 +48430,042,625,675,699695167,3535,0 +48431,%23K75+0019,519,718,699728159,4227,0 +48432,New+World,436,709,698152377,10291,0 +48433,Wioska+barbarzy%C5%84ska,573,646,6818593,6185,0 +48434,0024,317,382,2321390,3169,0 +48435,Wioska+Z%C5%82ylos,380,317,849068662,11495,0 +48436,...,338,358,699657450,8502,0 +48437,R+038,497,709,699195358,7625,0 +48438,Z23,313,403,356642,9835,0 +48439,Muspelheim,667,627,849096631,2176,0 +48440,EE+005,697,581,849100149,9570,0 +48441,kamilkaze135+%2313,688,387,699705601,4415,0 +48442,%28NieTymRazem%29,701,419,849101881,6801,0 +48443,North+K25,535,286,699146580,2067,0 +48444,005.+Prosciutto+e+rucola,327,379,849102092,4447,0 +48445,Blumak,551,711,699443920,9761,1 +48446,Procyon,291,518,849101647,9213,0 +48447,New+WorldA,281,515,849084005,2531,0 +48448,Wioska+barbarzy%C5%84ska,719,500,6510480,5529,0 +48449,%23%23%23119%23%23%23,592,695,698285444,10495,0 +48450,Wioska009,344,346,699711926,9732,0 +48451,Wioska+barbarzy%C5%84ska,573,705,7756002,6992,0 +48452,EO+EO,283,519,699697558,10019,5 +48453,Avanti%21,286,476,698625834,5963,0 +48454,Wioska+barbarzy%C5%84ska,705,551,8742874,5549,0 +48455,BRICKLEBERRY,518,286,7758085,9395,4 +48456,Wioska+Mursilis,508,290,9260447,2540,0 +48458,Stefan+Batory,714,501,8418489,7720,0 +48459,Wioska+barbarzy%C5%84ska,373,326,3698627,8389,0 +48460,EO+EO,287,500,699697558,10083,0 +48461,C074,355,663,699383279,4790,0 +48462,HOLENDER+3,318,624,698908184,5557,0 +48463,068.+Aeminium,713,455,849091866,8063,0 +48464,Ultimate+Farming+Simulator+3,414,304,699872032,9232,0 +48465,Szlachcic,363,332,698388578,6022,0 +48466,072,715,513,7085502,6414,0 +48467,Bagno+13,482,719,848883684,9468,0 +48468,Wioska+barbarzy%C5%84ska+002,564,704,6870350,9418,0 +48469,%5B0232%5D,287,507,8630972,6257,0 +48470,New+WorldA,285,536,849084005,1937,0 +48471,zbytowa,296,562,849101092,5608,0 +48472,Nic,695,602,849101652,10019,0 +48473,T%C5%82okowo+Wielkie,283,489,849100877,7665,0 +48474,Borubar+4,715,473,699413581,4439,0 +48475,Crystal+Gardens,383,685,849105463,2140,0 +48476,043.,629,667,699695167,3315,0 +48477,Wioska+barbarzy%C5%84ska,449,290,699393759,7251,0 +48478,Z%C5%82oty+%C5%9Awit,593,306,699883079,7397,0 +48479,%3D039%3D+Wioska+barbarzy%C5%84ska,705,563,3781794,10017,0 +48480,016.+Demawend,711,549,1601917,10495,0 +48481,049,664,356,9148043,8122,0 +48482,W37,699,407,699524362,1477,0 +48483,146,397,692,849099876,8937,0 +48484,Wioska+007,697,595,7999103,7430,0 +48485,18%2B,329,371,9240154,2498,0 +48486,Wioska+Kanut,289,466,356642,3346,0 +48487,%7CA%7C+Ghostfort.,481,648,698807570,10495,0 +48488,Avanti%21,284,479,698625834,7314,0 +48489,MojeDnoToWaszSzczyt,508,283,9299539,9827,0 +48490,EO+EO,290,521,699697558,10019,0 +48491,P%C3%B3%C5%82nocny+Bagdad,619,317,8847546,9835,0 +48492,017,298,558,9280477,8148,0 +48493,XXXX,566,298,849054951,10068,0 +48494,Wioska+barbarzy%C5%84ska,585,306,828637,10476,0 +48495,054.,633,674,699373599,3855,0 +48496,006,647,652,849101148,8089,0 +48498,Wioska+barbarzy%C5%84ska,711,465,113796,1874,0 +48499,Marchewkowe+pole,354,657,2725721,7213,0 +48500,C.037,718,478,9188016,4689,0 +48501,015,297,555,9280477,7655,0 +48502,New+World,420,702,698152377,10187,0 +48503,035,670,637,2323859,3159,0 +48504,Taran,316,612,6180190,7843,0 +48505,Wyspa+013,297,563,225023,5820,0 +48506,Wioska+barbarzy%C5%84ska+008,560,707,6870350,6410,0 +48508,Wioska+4,386,321,2268889,2289,0 +48509,Wioska,706,428,849102464,5749,0 +48510,%2A013%2A,684,617,1205898,7817,0 +48511,135+invidia,540,708,849093426,10661,0 +48512,Wioska+barbarzy%C5%84ska,379,327,3698627,9307,0 +48514,Jaaa,627,591,698635863,10263,0 +48515,027+Night+Raid%2A,424,706,699684062,8708,0 +48517,154,395,687,849099876,7202,0 +48519,%23%23%23120%23%23%23,589,699,698285444,10495,0 +48520,Rawa+Mazowiecka,630,646,698346318,12154,0 +48521,Wioska+barbarzy%C5%84ska,716,493,699429153,7074,0 +48522,XDX,610,311,699098531,7892,0 +48523,013,528,291,699818726,6736,0 +48524,%23Kresy,627,677,2665207,2543,0 +48525,033,654,350,9148043,6393,0 +48526,025,667,640,2323859,1967,0 +48527,260...Karki98,455,290,6920960,4464,0 +48528,Wioska+01,717,515,8408007,1987,0 +48529,O028,333,635,272173,9957,0 +48530,0000029Z,288,560,849089881,10144,0 +48531,Wioska+barbarzy%C5%84ska,312,611,6180190,6078,0 +48532,Zzz+02+ale+oco+chodzi,294,571,849084740,5381,0 +48533,Wioska+0014,346,652,9186126,9963,0 +48534,psycha+sitting,405,677,699736927,10311,0 +48535,Avanti%21,288,474,698625834,5432,0 +48536,K33,312,392,699794765,9121,0 +48537,MJ2,684,382,8669398,6052,0 +48539,Bocian,431,292,947923,3409,0 +48540,111+invidia,514,715,849093426,10001,0 +48541,Wioska+barbarzy%C5%84ska,699,433,1715091,9750,0 +48542,New+World,427,704,698152377,10290,0 +48543,Wiadro08,671,629,8677963,7341,0 +48544,113,408,698,849099876,10106,0 +48545,001,625,331,849010865,2376,0 +48546,New+WorldA,286,526,849084005,2079,0 +48547,%5B0123%5D,442,295,8630972,9590,0 +48549,BRICKLEBERRY,516,287,7758085,10132,0 +48550,001e,300,413,8259895,5230,0 +48551,Piek%C5%82o+to+inni,643,336,848956765,8549,0 +48552,Wioska+10,691,592,849101162,4917,0 +48553,104,506,486,8788366,9479,0 +48554,Kolonia+04,304,589,6180190,5991,0 +48555,167,380,674,849099876,7443,0 +48556,Szara+Warta,707,441,849101378,7347,0 +48557,Wioska,404,304,849094789,6782,0 +48558,W38,694,414,699524362,1931,0 +48559,%23K75+0013,517,711,699728159,7130,0 +48560,sh03,512,285,7064954,5892,0 +48561,%5B821%5D+Odludzie,710,443,848985692,6792,0 +48562,New+WorldA,291,523,849084005,6015,0 +48563,052+Wioska+barbarzy%C5%84ska,548,288,699854484,9835,0 +48564,bucksbarzy%C5%84skamiiiru,317,387,848955783,5257,0 +48565,Szlachcic,394,356,3484132,10476,0 +48566,%5B0251%5D,284,510,8630972,6293,0 +48568,003+JJ,329,365,9120206,8218,0 +48569,Vvv,285,531,699805379,2485,1 +48570,003,583,319,1767876,9741,0 +48571,New+WorldA,289,542,849084005,5387,0 +48572,Bestia,553,704,699443920,9761,0 +48573,038,510,287,849010255,6444,0 +48574,016%23+Anetha,478,717,3933666,6836,0 +48575,X003+Gwiezdna+flota,709,430,699722599,7795,0 +48576,Wioska+barbarzy%C5%84ska,329,376,849027025,2310,0 +48577,A%23030,716,503,2065730,9797,0 +48578,basonia,282,501,849101674,8221,0 +48579,KONFA+TO+MARKA%2C+NARKA,289,449,698152377,10290,0 +48580,020.+Ebal,713,556,1601917,10495,0 +48582,Wioska+Zoso2000o,632,485,849093875,4045,0 +48583,Wioska+Pawel1992,693,416,699738350,9732,0 +48584,B005,622,320,8740199,5835,0 +48585,Wyspa+012,294,566,225023,3674,0 +48586,KR%C3%93L+PAPI+WIELKI,670,627,698191218,7058,0 +48587,CastAway+%23002,703,585,9314079,9815,6 +48588,MERHET,583,704,698215322,9476,0 +48589,079,718,512,7085502,6125,0 +48590,Wioska+barbarzy%C5%84ska,497,281,763529,6733,0 +48591,New+WorldA,284,526,849084005,6246,0 +48592,ZZ04,309,408,356642,9365,0 +48593,C0244,287,546,8841266,4798,0 +48594,Raqmu,457,712,849089459,9553,0 +48595,052,405,693,849099876,10495,0 +48596,101.Stradi,441,288,698365960,9082,0 +48597,048,677,377,698635863,7269,0 +48598,Wioska+barbarzy%C5%84ska+III,628,321,848958556,2912,0 +48599,Wioska+barbarzy%C5%84ska,574,303,828637,4282,0 +48601,33.+Wioska+barbarzy%C5%84ska05,714,469,699804790,3219,0 +48602,%3D081%3D+Hampton,703,571,3781794,10590,0 +48603,Wioska+barbarzy%C5%84ska,426,293,849017820,7724,0 +48604,Taran,325,627,6180190,9572,0 +48605,PIROTECHNIK+009,350,352,849101083,3190,0 +48606,Wyspa+003,293,566,225023,10495,0 +48607,qqqqq4,283,482,1095489,2205,0 +48608,020+Cianwood+City,716,488,699441366,11109,0 +48609,002,308,401,8724192,6668,0 +48610,FAKE+OR+OFF,426,290,698231772,10072,0 +48611,Avanti%21,284,487,698625834,6462,0 +48612,B024,625,330,8740199,10006,0 +48613,Mniejsze+z%C5%82o+0090,311,392,699794765,5079,0 +48614,Psycho+to+Marka%2C+Narka+%21,302,569,849040142,9091,9 +48616,O030,336,637,272173,9959,0 +48617,KR%C3%93L+PAPI+WIELKI,710,531,698191218,6381,0 +48618,Wioska+barbarzy%C5%84ska,616,685,6818593,5307,0 +48619,023+szcz%C4%99%C5%9Bciarz,543,704,849093426,10237,0 +48620,Ultimate+Farming+Simulator+4,414,301,699872032,8530,0 +48621,K35+-+%5B017%5D+Before+Land,587,304,699088769,9429,0 +48622,O071,328,630,272173,9871,0 +48623,192...segador,431,293,6920960,10744,0 +48624,3.Birmingham,549,715,698215322,8862,0 +48625,C014,370,669,699383279,9663,0 +48626,Z.06,700,579,699737356,3664,0 +48627,%3F%3F%3F%3F,472,282,698489071,8302,0 +48628,Wioska+Turystyczna+009,701,507,7588382,2865,0 +48629,New+WorldA,292,539,849084005,7364,0 +48630,Sosonowiec,532,709,6116940,6195,0 +48631,Wioska+barbarzy%C5%84ska,630,333,849005829,2434,0 +48633,006,298,428,6131106,6174,5 +48634,069.,715,472,849094609,3528,0 +48635,Wioska+barbarzy%C5%84ska,713,548,17714,10055,0 +48637,Wioska+Turystyczna+008,709,476,7588382,4686,0 +48638,Pax,351,340,849101694,10802,0 +48639,Lord+Arsey+KING,660,650,848956513,7673,0 +48640,36.+Nice,559,289,849054951,7146,0 +48641,CastAway+%21008,702,582,9314079,9270,0 +48643,%2A010%2A,680,622,1205898,7584,0 +48644,FAKE+OR+OFF,404,310,698231772,9816,0 +48645,010,352,349,849101205,4127,0 +48648,007+A,410,690,849099876,10495,9 +48650,FAKE+OR+OFF,408,304,698231772,9709,0 +48651,4.+Vermithor,302,584,849089499,2645,0 +48652,-26-,567,710,849032414,4179,0 +48654,Po%C5%82udnie.015,551,686,873575,10012,0 +48655,Z%C5%82oty+%C5%9Awit,592,302,699883079,8187,0 +48656,--022--,575,297,542253,6589,0 +48657,KONFA+TO+MARKA%2C+NARKA,291,458,698152377,9623,0 +48658,Wioska+barbarzy%C5%84ska,707,555,17714,6059,0 +48659,045.+Jacksona,703,556,1601917,8702,0 +48660,O069,329,632,272173,9870,0 +48661,Wioska+0009,344,654,9186126,10375,0 +48662,wancki+i+gustlikk,502,282,7758085,9726,0 +48663,Sernik+z+Andzynkami,710,502,699126484,7762,0 +48665,BANG,310,407,699127156,1931,0 +48666,Gombao+33,701,438,699785935,7946,0 +48667,NBT+P,595,692,849047044,8588,0 +48668,Bydgoszcz,499,285,699278528,9765,0 +48669,Borubar+2,710,465,113796,1955,0 +48670,C090,361,662,699383279,6888,0 +48672,Psycha+Siada,337,647,8099868,9099,0 +48673,0129,389,685,7085510,5187,0 +48674,%3F%3F%3F%3F,493,281,698489071,10160,5 +48675,Psycha+Siada,338,646,8099868,9835,0 +48677,Wioska+Turystyczna+004,715,464,7588382,7044,0 +48678,%2A016%2A,675,621,1205898,5805,0 +48679,O015,338,634,272173,9955,0 +48680,.achim.,487,287,6936607,7977,0 +48681,024+Littleroot+Town,719,483,699441366,7247,0 +48682,Wioska+barbarzy%C5%84ska,589,701,699837483,4669,0 +48684,Wioska+011,696,595,7999103,3193,0 +48685,D002,561,297,699299123,7923,0 +48686,Wioska+0002,342,650,9186126,10237,0 +48687,Taran,318,617,6180190,9014,0 +48688,Wioska+barbarzy%C5%84ska,418,296,698231772,9023,0 +48689,Kiedy%C5%9B+Wielki+Wojownik,333,356,8632462,8130,0 +48690,Wioska+barbarzy%C5%84skaaaa,716,535,17714,9278,0 +48691,Wioska-014-,631,331,7675610,1415,0 +48692,bucksbarzy%C5%84skamiiiru,315,399,848955783,6855,0 +48693,EE+007,698,582,849100149,9115,0 +48694,Winterfell.014,468,285,848918380,8062,0 +48695,psycha+sitting,415,676,699736927,10311,0 +48696,Wioska+barbarzy%C5%84ska,355,346,849027025,7167,0 +48697,Taran,320,620,6180190,8003,0 +48698,Wioska+barbarzy%C5%84ska,506,715,698704189,2190,0 +48700,%5BD%5D_%5B006%5D+Dejv.oldplyr,285,506,699380607,5615,0 +48701,EO+EO,288,519,699697558,10252,0 +48702,Wioska+barbarzy%C5%84ska+011,382,314,849068662,4894,0 +48703,114+invidia,507,716,849093426,10290,2 +48704,Wioska+barbarzy%C5%84ska,712,540,848946700,3957,0 +48705,wancki+i+gustlikk,506,280,7758085,9737,0 +48706,Wioska+barbarzy%C5%84ska,368,330,3698627,9074,0 +48707,Wiadro13,677,629,8677963,6159,0 +48710,Wioska+barbarzy%C5%84ska,393,692,0,1740,0 +48711,111,683,612,3589487,7196,0 +48712,061.Stradi,427,296,698365960,10060,0 +48713,O053,331,634,272173,9867,0 +48714,Wioska+MrZibo,310,596,7695659,1129,0 +48715,K24+-+%5B004%5D+Before+Land,435,291,699088769,6016,0 +48716,A%23039,713,491,2065730,9797,0 +48717,C005,369,667,699383279,9808,5 +48718,MojeDnoToWaszSzczyt,501,284,9299539,9960,0 +48720,1.+Wioska+barbarzy%C5%84ska,684,622,1049851,3127,0 +48722,Vvvvvv,282,533,699805379,1707,0 +48723,Kurnik,549,708,699603116,8883,0 +48725,001a,301,415,8259895,4773,0 +48726,Wioska+barbarzy%C5%84ska,614,684,6818593,4516,0 +48727,yks,542,708,9016560,10449,0 +48728,Z%C5%82oty+%C5%9Awit,582,300,699883079,10049,0 +48729,C007,350,660,699383279,9804,0 +48730,223,421,305,698365960,4645,0 +48731,Z%C5%82oty+%C5%9Awit,596,302,699883079,6980,0 +48732,Wioska+barbarzy%C5%84ska,646,653,848987051,8626,0 +48733,Wioska+barbarzy%C5%84ska,328,625,698908184,8348,0 +48734,006,532,715,698996782,8640,0 +48735,Ciemnogr%C3%B3d+%235,335,363,849096958,7821,0 +48736,Wioska+barbarzy%C5%84ska,550,708,699828442,5176,0 +48737,New+World,439,705,698152377,9132,0 +48738,Wioska+barbarzy%C5%84ska,639,661,848987051,9924,0 +48739,Wioska+barbarzy%C5%84ska,557,712,6299408,7727,0 +48740,C.043,711,471,9188016,4346,0 +48741,002g,302,407,8259895,5230,0 +48742,081+Hjubal,711,507,2135129,3505,0 +48743,Bac%C3%B3wka,308,602,698167138,1962,0 +48745,002c,299,410,8259895,5141,0 +48746,KR%C3%93L+PAPI+WIELKI,716,525,698191218,6210,0 +48747,069+invidia,538,715,849093426,6179,0 +48748,Wioska+barbarzy%C5%84ska,514,719,699728159,9638,0 +48749,Wancki,517,286,7758085,9861,0 +48753,The+Unforgiven,701,411,699785935,3447,0 +48755,O045,327,636,272173,9871,0 +48757,New+WorldA,281,511,849084005,2990,0 +48759,Z%C5%82oty+%C5%9Awit,577,301,699883079,6563,0 +48762,010+Kalisz,288,532,9235561,3702,0 +48764,Wioska+barbarzy%C5%84ska,445,292,699308637,5663,0 +48766,Bagno+5,480,717,848883684,9433,0 +48768,%3DLM%3D,700,419,849101881,3830,0 +48770,Sp%C3%B3%C5%BAnienie,306,396,849076515,8403,0 +48772,Z%C5%82oty+%C5%9Awit,571,297,699883079,9050,0 +48773,009.,624,676,699695167,3642,3 +48775,ChceszPokojuSzykujSi%C4%99DoWojny,486,712,699333701,4859,0 +48776,Wioska+barbarzy%C5%84ska,303,593,6180190,3988,0 +48777,Wyspa+033,292,563,225023,1470,0 +48778,Wioska+barbarzy%C5%84ska,716,536,848946700,4282,0 +48779,01+go%C5%9B%C4%87018443.,287,446,849018442,9835,0 +48780,A%23016,710,490,2065730,9797,0 +48781,Wioska010,343,347,699711926,8389,0 +48782,304,450,289,7271812,6333,0 +48783,Bialystok,487,281,699278528,9814,1 +48784,%2A029%2A,681,624,1205898,2176,0 +48785,%23153%23,649,660,692803,2585,0 +48787,Pocz%C4%85tek,305,582,7842579,4964,0 +48789,Wioska+barbarzy%C5%84ska,658,352,1715091,4008,0 +48790,A%23001,718,520,2065730,9797,0 +48791,Kurnik,464,714,699603116,9778,0 +48792,%23K75+0024,513,714,699728159,4358,0 +48793,08+Winko,706,454,849101845,9361,0 +48794,wancki+i+gustlikk,507,283,7758085,9797,0 +48795,Wioska+barbarzy%C5%84ska,434,295,699191455,4251,0 +48796,Wioska+barbarzy%C5%84ska,282,485,699846892,3361,0 +48797,...,340,362,699657450,3536,0 +48798,A%23003,712,514,2065730,9797,8 +48799,002,652,342,848889850,3479,0 +48800,Wioska+barbarzy%C5%84ska,280,481,699846892,3609,0 +48801,111,413,696,849099876,8999,0 +48802,Manowce,690,405,699785935,5537,0 +48803,Szlachcic,381,315,698160606,9570,5 +48805,%2A011%2A,680,624,1205898,8293,0 +48807,Pocz%C4%85tek,299,579,7842579,9468,0 +48808,komandos48,648,661,7976264,10252,0 +48809,024+Wioska+barbarzy%C5%84ska,600,687,699346280,7515,0 +48810,166...J,397,313,6920960,5291,0 +48811,a-5,677,615,848921861,10495,0 +48812,002+-+Budowanko%21,488,716,7540891,9803,0 +48813,Wioska6,707,575,699266530,8315,0 +48814,154...D,399,309,6920960,7550,0 +48815,009.+Boscaiola,313,391,849102092,5158,0 +48816,Kolorowe+Jarmarki,700,425,699785935,5866,0 +48817,MADAGASKAR+02,341,347,698757439,7668,0 +48818,wy...nic,600,697,699828685,9976,0 +48819,%3D021%3D+Wioska+barbarzy%C5%84ska,709,565,3781794,8486,0 +48820,Nocny+Fort,705,434,849101378,9069,0 +48821,003,303,412,8259895,5230,0 +48822,New+World,433,708,698152377,9910,0 +48823,044,634,668,699695167,3034,0 +48824,Wie%C5%BCa+Cieni,709,437,849101378,9037,0 +48825,O031,332,637,272173,9959,0 +48826,Piek%C5%82o+to+inni,632,324,848956765,5435,0 +48827,Wioska+barbarzy%C5%84ska,713,540,848946700,6931,0 +48828,Wioska+franka,294,576,849101771,4961,0 +48829,Wioska+barbarzy%C5%84ska,421,300,698231772,9222,0 +48830,%230079,573,706,1536231,4070,0 +48831,Lord+Arsey+KING,652,654,848956513,10096,0 +48832,Wioska+barbarzy%C5%84ska,280,501,849101674,5385,0 +48833,%3D130%3D+Mascov,702,566,3781794,10946,0 +48834,%2A024,676,372,7758085,4051,0 +48835,Bigosowy2,678,370,849095800,4110,0 +48836,%23%23%23121%23%23%23,596,693,698285444,10495,0 +48838,Cisza,290,551,698769107,5716,0 +48840,wioska,635,329,849102068,10353,0 +48841,037.,453,710,849034882,8944,0 +48842,Ciemnogr%C3%B3d+%2310,335,361,849096958,4757,0 +48843,020.+Gorgonzola+e+noci,323,379,849102092,1976,0 +48844,Z%C5%82oty+%C5%9Awit,594,301,699883079,10119,5 +48845,New+WorldA,288,550,849084005,4576,0 +48846,Piek%C5%82o+to+inni,633,327,848956765,5291,0 +48847,Wioska+barbarzy%C5%84ska,594,309,699098531,5393,0 +48848,XXXX,567,295,849054951,9236,0 +48849,145,403,689,849099876,9489,0 +48850,--006--,568,295,542253,9377,0 +48851,072,398,691,849099876,10495,0 +48852,Piek%C5%82o+to+inni,642,334,848956765,5651,0 +48853,Psycha+Siada,339,645,8099868,9222,0 +48854,Wioska+barbarzy%C5%84ska,281,482,699846892,3755,0 +48856,PP030+Suna,718,491,8096537,9356,0 +48858,New+WorldA,290,534,849084005,9095,0 +48859,Wioska+barbarzy%C5%84ska,280,483,699846892,2589,0 +48860,Wioska+barbarzy%C5%84ska,421,296,849102150,2725,0 +48861,A-003,323,370,699406247,7470,0 +48863,kathare,537,716,873575,9966,0 +48864,komandos,641,668,7976264,9308,0 +48865,Rivia,557,294,849054951,10051,2 +48866,KR%C3%93L+PAPI+WIELKI,662,634,698191218,10000,0 +48867,044+sebaseba1991,624,679,699346280,9494,4 +48869,Jeszcze+stoj%C4%99+xd,647,345,9291984,3874,0 +48870,077+Astapor,706,424,2135129,9720,0 +48872,Avanti%21,287,476,698625834,7407,0 +48873,Wioska+barbarzy%C5%84ska,713,539,848946700,10154,0 +48874,Wioska+barbarzy%C5%84ska,429,294,698231772,6997,0 +48875,009,386,317,699660539,4030,6 +48876,CastAway+%23006,702,586,9314079,7637,0 +48878,New+WorldA,288,522,849084005,5477,0 +48879,Kurnik,443,710,699603116,5942,0 +48880,%3D0020%3D,389,310,698231772,8134,0 +48881,-20-,573,704,849032414,5969,0 +48882,Wioska+barbarzy%C5%84ska,418,299,698231772,6491,0 +48883,...,341,353,699657450,3117,0 +48884,Z%C5%82oty+%C5%9Awit,583,304,699883079,9940,0 +48885,Wioska+barbarzy%C5%84ska,706,421,848902592,7244,0 +48886,ewaa+vol.2,504,721,849101382,3537,0 +48888,%23%236,349,351,2800032,9080,0 +48889,New+World,438,707,698152377,6607,0 +48890,KR%C3%93L+PAPI+WIELKI,717,532,698191218,6930,0 +48891,...,337,354,699657450,9969,0 +48892,AAA,538,293,1006847,7360,0 +48893,022.+Salmone+affumicato,317,377,849102092,5606,0 +48894,5_Franekkimono510_5,368,325,849099422,6479,0 +48895,C082,361,659,699383279,8563,0 +48896,%23%23%23122%23%23%23,601,690,698285444,10495,0 +48897,045.,626,672,699695167,3148,0 +48898,079.Stradi,430,301,698365960,9199,0 +48899,Osada+koczownik%C3%B3w,710,520,2246711,3537,7 +48900,Doberek,689,401,699785935,10083,0 +48901,%23%23%23123%23%23%23,606,694,698285444,10495,0 +48902,U.006,292,556,849088243,3600,0 +48903,Wioska+barbarzy%C5%84ska,532,388,698350371,9786,0 +48905,Z%C5%82oty+%C5%9Awit,575,298,699883079,9019,0 +48906,FAKE+OR+OFF,407,301,698231772,9871,4 +48907,MJ1,684,379,8669398,6210,0 +48908,Z%C5%82oty+%C5%9Awit,588,301,699883079,10052,0 +48909,Pocz%C4%85tek,302,573,7842579,3990,0 +48910,Bia%C5%82a+Podlaska,590,698,699837483,6528,0 +48912,Psycho+to+Marka%2C+Narka+%21,300,570,849040142,4597,0 +48913,C.038,715,479,9188016,4686,0 +48914,Cisza,289,541,698769107,4848,0 +48915,FAKE+OR+OFF,405,305,698231772,9705,0 +48916,Taran,314,608,6180190,7183,0 +48917,Kapral16A,463,714,849096891,5577,0 +48918,161...G,393,311,6920960,5407,0 +48919,019,718,499,849091105,10019,0 +48920,EO+EO,287,511,699697558,9063,1 +48921,D%C5%BCejd%C5%BCej+5,669,636,849098326,2603,0 +48922,Wioska,285,533,699805379,1475,0 +48923,KONFA+TO+MARKA%2C+NARKA,288,454,698152377,8070,0 +48924,Osada+koczownik%C3%B3w,672,622,1049851,4557,7 +48925,bucksbarzy%C5%84skamiiiru,318,392,848955783,8652,0 +48926,KR%C3%93L+PAPI+WIELKI,668,629,698191218,7066,0 +48927,049,673,377,698635863,10495,0 +48928,0104,385,683,7085510,9764,0 +48929,%2A002%2A,676,621,1205898,8957,0 +48930,Satyra,306,398,849076515,8077,0 +48931,145+invidia,541,715,849093426,6653,0 +48932,Bagno+17,483,711,848883684,8946,0 +48935,Wioska+barbarzy%C5%84ska,350,340,849101694,4451,0 +48936,Avanti%21,286,471,698625834,9996,0 +48937,XDX,604,315,699098531,9879,0 +48938,Avanti%21,285,476,698625834,10311,4 +48939,%5B0185%5D,287,495,8630972,7454,0 +48940,Bagno+19,485,713,848883684,8747,0 +48941,Wioska+0008,343,654,9186126,10375,0 +48942,105,412,695,849099876,9449,0 +48943,Wioska+barbarzy%C5%84ska,295,440,8366045,9966,0 +48944,Wioska+barbarzy%C5%84ska,478,284,7758085,6183,0 +48945,Podbitek+3,685,615,849101652,7633,0 +48946,Lord+Arsey+KING,661,645,848956513,10087,0 +48947,Tretogor,558,294,849054951,10054,0 +48948,%5B176%5D,698,595,8000875,7272,0 +48949,%23%234,350,350,2800032,9109,0 +48950,Wiadro16,667,637,8677963,8439,0 +48951,WARYSCYT,706,552,17714,10222,0 +48952,013,657,355,849020094,2228,0 +48953,024+zadupie,532,712,6116940,10019,0 +48954,FAKE+OR+OFF,404,308,698231772,9825,0 +48955,Wioska+barbarzy%C5%84ska,547,710,7581876,6115,6 +48956,P%C3%B3%C5%82nocny+Bagdad,616,316,8847546,9835,0 +48957,083.Stradi,429,300,698365960,9525,0 +48959,MERHET+04%2F02,587,703,698215322,7507,0 +48960,%5BD%5D_%5B001%5D+Dejv.oldplyr,287,493,699380607,10444,1 +48961,KONFA+TO+MARKA%2C+NARKA,286,451,698152377,10311,0 +48962,Ave+Why%21,503,713,699121671,1248,0 +48963,Wioska+czorny,698,579,849101814,7645,0 +48964,Wioska+barbarzy%C5%84ska+--,566,705,849055425,8151,0 +48965,0043,490,714,699684062,4467,0 +48966,009,324,372,7386358,2884,0 +48967,a+mo%C5%BCe+off+%3F+%3A%29,687,394,698768565,5705,0 +48968,%3F%3F%3F%3F,480,283,698489071,10083,0 +48969,Mniejsze+z%C5%82o+0098,312,390,699794765,4806,0 +48970,063,716,515,699413040,9752,0 +48971,barbarzy%C5%84ska,513,718,849101102,9397,0 +48972,136,391,692,849099876,7087,0 +48973,Kagusiowo+13,297,440,849101268,3592,0 +48974,004+Chc%C4%99+Remont,428,707,699745265,9736,5 +48975,001,466,714,699725436,9619,0 +48976,084.Stradi,431,299,698365960,9850,0 +48977,-+252+-+SS,570,707,849018239,10000,5 +48978,Wyspa+006,290,568,225023,10495,0 +48980,Wioska+Ares25,490,690,5997814,9704,0 +48981,019,525,716,698996782,10311,0 +48982,Taran,331,631,6180190,10311,0 +48983,003,665,645,2323859,7971,0 +48984,Wioska+barbarzy%C5%84ska,498,711,7976264,5054,0 +48985,Wygwizdowa+012,643,669,698562644,3311,0 +48986,C095,365,665,699383279,9808,0 +48987,Wioska+barbarzy%C5%84ska,521,286,7758085,9326,0 +48988,Lord+Arsey+KING,652,653,848956513,8829,0 +48989,049,405,692,849099876,10495,0 +48990,Avanti%21,281,472,698625834,4391,0 +48991,Wioska+barbarzy%C5%84ska,313,611,6180190,6113,0 +48992,005,310,401,8724192,3483,0 +48993,Smardz%C3%B3w,297,566,849101092,4860,0 +48994,Wioska+-+005+-,536,282,848982634,1787,0 +48995,3+ACDC,347,354,6315553,1234,0 +48996,C050,358,660,699383279,7874,0 +48997,005,526,287,699818726,8238,0 +48998,088.Stradi,434,298,698365960,9544,0 +48999,XDX,601,304,699098531,9768,0 +49000,Gladsheim,307,405,8724192,9835,4 +49001,C010,371,676,699383279,9825,0 +49002,New+World,437,703,698152377,10295,0 +49003,Ave+Why%21,506,717,699121671,2475,0 +49004,009,294,542,849098688,9835,0 +49005,Wioska+barbarzy%C5%84ska,376,328,3698627,9827,0 +49006,0600,489,681,698659980,10252,0 +49007,Wioska+barbarzy%C5%84ska,300,587,698167138,2038,0 +49008,C0218,293,539,8841266,10362,0 +49009,O046,328,635,272173,9868,0 +49010,C098,358,669,699383279,8051,0 +49011,011,292,541,849098688,9835,0 +49012,KR%C3%93L+PAPI+WIELKI,650,651,698191218,7051,0 +49013,XDX,604,309,699098531,8310,0 +49014,Wioska+2,301,423,699821629,5014,0 +49015,Ave+Why%21,305,585,6180190,8629,3 +49016,komandos48,635,673,7976264,6380,0 +49017,090.Stradi,438,290,698365960,9440,0 +49018,Komamdos,641,664,7976264,9729,0 +49019,106,409,694,849099876,8842,0 +49020,New+World,429,705,698152377,10292,0 +49021,XDX,609,308,699098531,6318,0 +49022,100.Stradi,441,292,698365960,9082,0 +49023,Wioska15,343,350,699711926,5271,0 +49024,027,648,346,9148043,1149,0 +49025,013.+Amatriciana,302,401,849102092,9788,0 +49026,059,639,338,849010255,2584,0 +49027,XDX,608,318,699098531,9681,0 +49028,Wioska+barbarzy%C5%84ska,656,352,1715091,3056,0 +49029,A%23014,713,492,2065730,9797,0 +49030,O026,331,638,272173,9955,0 +49031,Wioska-013-,630,331,7675610,1323,0 +49032,ZZZ+.%3A%3A.+cinek3456%2F02,585,702,33900,10191,0 +49033,Saran9,410,298,848937248,3520,0 +49034,006,664,638,2323859,9783,0 +49035,Wioska+barbarzy%C5%84ska,366,671,0,1685,0 +49036,C0226,288,545,8841266,5046,0 +49037,001,653,344,9148043,9998,0 +49038,Psycha+Siada,334,640,8099868,9968,0 +49039,024,688,617,699099811,3938,0 +49040,Las+Canteras,377,679,7085510,5838,0 +49041,KR%C3%93L+PAPI+WIELKI,713,477,698191218,6255,0 +49042,Wioska+barbarzy%C5%84ska,639,670,7976264,5180,0 +49043,030.+Ceterum+censeo,467,710,848896948,9260,0 +49044,New+World,431,708,698152377,10295,0 +49045,PIROTECHNIK+002,354,346,849101083,6699,0 +49046,%230147+deleted,480,279,1238300,10178,0 +49047,Wioska005,346,349,699711926,9732,0 +49048,Osada+koczownik%C3%B3w,464,283,698350371,7355,6 +49049,081,719,507,7085502,4797,0 +49050,%5B0127%5D,281,497,8630972,9414,0 +49051,o04,610,680,699189792,6981,0 +49052,W39,694,417,699524362,3254,0 +49053,A-1,670,359,849095509,7537,0 +49054,%3D026%3D+Wioska+barbarzy%C5%84ska,709,567,3781794,10566,0 +49055,Bagno+6,482,715,848883684,9520,0 +49056,39.+Pan+Maszynista+2,707,457,699804790,2875,0 +49057,01+Fiko,713,456,849101845,9475,0 +49058,Wioska+barbarzy%C5%84ska,684,388,8675636,9094,0 +49061,062.+Diocletianopolis,712,455,849091866,8381,0 +49062,063+invidia,542,711,849093426,6132,0 +49063,%2A017%2A,679,627,1205898,5948,0 +49065,Magiczne+koszary,463,717,848935389,9809,0 +49066,Szlachcic,373,319,698160606,5260,0 +49067,Wioska+barbarzy%C5%84ska+IV,627,321,848958556,2457,0 +49068,Wioska+barbarzy%C5%84ska,720,493,6510480,5848,0 +49069,Elo%3A%29,703,419,849101881,4964,0 +49070,C032,365,670,699383279,7495,0 +49071,7_Franekkimono510_7,370,325,849099422,4113,0 +49072,004,666,642,2323859,9797,0 +49074,%3D0015%3D,396,306,698231772,9884,0 +49075,Na+Kra%C5%84cu+%C5%9Awiata+002,645,342,9291984,10474,0 +49076,Z%C5%82oty+%C5%9Awit,582,297,699883079,10119,0 +49077,A%23004,717,517,2065730,9797,5 +49078,bucksbarzy%C5%84skamiiiru,314,393,848955783,7625,0 +49079,005,295,582,698663855,9877,0 +49080,Wioska+Gigako,557,287,849054951,7846,7 +49081,Wioska+barbarzy%C5%84ska,534,288,849088639,5557,0 +49082,North+011,512,284,849064752,10311,0 +49083,774,343,643,698908184,8314,0 +49084,C026,369,668,699383279,9719,0 +49085,Barcin,486,281,699278528,9524,0 +49086,%23%23%23124%23%23%23,599,689,698285444,10495,0 +49087,FAKE+OR+OFF,401,313,698231772,9833,0 +49088,Avanti%21,280,477,698625834,8643,0 +49089,31.+Saduny,714,482,699804790,3175,0 +49090,Wyspa_48,503,714,606407,10375,0 +49091,Wioska+barbarzy%C5%84ska,692,601,6921135,2920,0 +49093,174,379,677,849099876,6707,0 +49095,Mniejsze+z%C5%82o+0091,315,382,699794765,6384,0 +49096,.achim.,477,294,6936607,10232,0 +49097,Avanti%21,283,485,698625834,9117,0 +49098,EE+006,698,581,849100149,9113,0 +49099,P%7C003%7C,460,714,699393742,9738,0 +49100,Po%C5%82udniowy+Wsch%C3%B3d+002,691,605,699778867,2630,0 +49101,C008,543,707,698599365,6344,0 +49103,Wioska+barbarzy%C5%84ska,714,450,699628084,6100,0 +49104,Bez+emocji+III,354,655,849092685,4837,0 +49105,0153,388,679,7085510,4406,0 +49107,Z%C5%82oty+%C5%9Awit,572,297,699883079,6888,0 +49108,Wioska+030,665,356,7226782,9523,5 +49109,Etitek+3,721,502,848999448,2989,0 +49110,024+Osada+koczownik%C3%B3w,544,286,699854484,9899,7 +49111,010,404,299,9283775,1862,0 +49112,Wioska+barbarzy%C5%84ska,300,425,699856962,7397,0 +49113,North+001,505,284,849064752,10311,0 +49114,039,406,699,849099876,10495,0 +49115,C02,707,442,849093742,8312,0 +49116,Wioska+barbarzy%C5%84ska,477,285,7758085,8358,8 +49117,0030+Wioska+barbarzy%C5%84ska,409,615,9060641,6322,0 +49118,001,653,340,848889850,5374,0 +49119,Elo+elo+7,303,580,699016994,9186,3 +49120,KONFA+TO+MARKA%2C+NARKA,288,463,698152377,1699,0 +49121,Ban+Gleann,554,292,849054951,9970,0 +49122,B010,627,324,8740199,12024,0 +49123,Wioska+barbarzy%C5%84ska,394,313,698231772,4980,0 +49124,Poletko,649,654,2371436,8577,0 +49125,S04,719,473,113796,3611,0 +49126,K33,320,385,699794765,2539,0 +49127,153...C,398,312,6920960,6947,0 +49128,AAA,553,294,1006847,6676,0 +49129,Kiedy%C5%9B+Wielki+Wojownik,334,355,8632462,9835,0 +49130,C009,356,660,699383279,9785,0 +49131,%230298+mastaw,462,291,1238300,1855,0 +49132,013,294,430,6131106,4809,0 +49133,BLANCA,698,417,849101881,7103,0 +49134,Eldorado,687,604,849101652,3414,5 +49135,Bagno+22,477,720,848883684,8741,0 +49136,C.044,711,470,9188016,4491,0 +49137,09.+Sirmium,709,544,848946700,10495,0 +49138,Klatka6,625,679,6528152,3829,0 +49139,...,338,363,699657450,2863,0 +49140,Wioska+majku,415,704,9195661,7739,0 +49141,%3D066%3D+Wioska+barbarzy%C5%84ska,702,563,3781794,9558,0 +49142,Wioska+Wojdiking,424,707,849100814,6652,0 +49143,Parking7,623,681,6528152,3977,0 +49144,Wioska+barbarzy%C5%84ska,384,525,849030226,7159,0 +49145,kkk,422,705,849100814,1831,0 +49146,O034,337,639,272173,9955,0 +49147,Kurnik,477,710,699603116,10160,0 +49148,Parking5,621,678,6528152,5798,0 +49149,Zzz+04+pije+se+kawe,294,568,849084740,7025,0 +49150,Wioska+barbarzy%C5%84ska,643,655,848987051,9870,0 +49151,Blasco,556,707,699443920,9761,0 +49152,190,412,698,849099876,9925,0 +49153,Wioska+barbarzy%C5%84ska,331,373,849027025,3449,0 +49154,004,691,396,699738350,9611,0 +49155,Wioska+barbarzy%C5%84ska,301,593,0,2578,0 +49156,.achim.,478,285,6936607,10495,0 +49158,New+World,418,695,698152377,10297,0 +49159,0102,386,686,7085510,10216,0 +49160,G007,506,285,699208929,10041,0 +49161,10+Kaseta,713,448,849101845,9670,0 +49162,sh02,511,286,7064954,5169,0 +49163,011,715,510,7085502,9720,0 +49164,Wioska+barbarzy%C5%84ska,530,287,699818726,7421,0 +49165,Wioska+barbarzy%C5%84ska,306,417,0,347,0 +49166,Room+service,701,425,699785935,7949,0 +49167,Lisse,282,520,699830255,9708,0 +49168,006,307,606,699356968,5958,0 +49169,KONFA+TO+MARKA%2C+NARKA,284,451,698152377,9801,0 +49170,070,713,511,7085502,5544,0 +49171,Cisza,290,556,698769107,6107,0 +49172,013.+Reakcja,561,322,699072129,10301,0 +49173,Z%C5%82oty+%C5%9Awit,586,301,699883079,9996,0 +49174,C12,705,446,849093742,2740,0 +49175,0118,386,682,7085510,4998,0 +49176,Wioska+barbarzy%C5%84ska,284,504,849101674,2063,0 +49177,EE+012,707,573,849100149,9549,0 +49178,0406,561,704,698659980,10160,0 +49179,%3F%3F%3F%3F,474,290,698489071,9435,0 +49180,Kiedy%C5%9B+Wielki+Wojownik,331,360,8632462,9467,6 +49181,%28%28PYSIA%29%29,701,417,8675636,10019,0 +49182,Wioska+barbarzy%C5%84ska,709,446,699628084,7731,0 +49183,Moja+wioska,636,675,849101884,12154,0 +49184,bucksbarzy%C5%84skamiiiru,315,396,848955783,8709,0 +49185,CastAway+%23003,704,586,9314079,9976,0 +49186,%5B204%5D,684,393,8000875,4624,0 +49187,C.027,716,480,9188016,4678,0 +49188,048+Wioska+barbarzy%C5%84ska,549,285,699854484,9976,0 +49189,MojeDnoToWaszSzczyt,497,287,9299539,9716,0 +49190,001%3AWioska+FilozofMiejski,374,329,8772425,10139,0 +49191,Lord+Arsey+KING,656,657,848956513,7214,0 +49192,107.Stradi,440,293,698365960,9869,0 +49193,016,289,464,2418364,2688,0 +49194,Wioska+barbarzy%C5%84ska,545,711,7581876,6760,0 +49195,116,395,695,849099876,9305,0 +49196,015,650,346,9148043,5828,0 +49197,C027,360,659,699383279,9825,0 +49198,NewWorldA,290,533,849084005,5190,0 +49199,050,678,376,698635863,10971,0 +49200,Komandos,648,664,7976264,4380,0 +49201,FAKE+OR+OFF,409,321,698231772,9823,0 +49202,wioska,636,332,9291984,11304,0 +49203,Kiedy%C5%9B+Wielki+Wojownik,334,358,8632462,9976,4 +49204,M.O.S.T.,318,613,7929731,4267,0 +49205,%5B0175%5D,286,493,8630972,8841,0 +49206,003,698,405,849085371,4522,0 +49207,Ave+Why%21,500,714,699121671,2413,0 +49209,02+barbarzy%C5%84ska.,288,446,849018442,8743,0 +49210,Wioska+barbarzy%C5%84ska,322,369,0,6635,0 +49211,8516,375,607,8607734,11550,0 +49212,021.+Salsiccia+e+funghi,318,381,849102092,5239,0 +49213,Wioska+barbarzy%C5%84ska,693,604,6921135,5081,0 +49214,P%C5%81D,717,462,699347951,4276,0 +49215,P%C3%B3%C5%82nocny+Bagdad,616,317,8847546,9835,0 +49216,076.,458,716,849034882,9419,0 +49217,Babidi+%236,366,326,849101962,5652,0 +49218,komandos,641,667,7976264,9989,0 +49219,New+World,426,701,698152377,10292,0 +49220,%230299+kawskole,437,288,1238300,6158,0 +49221,013,528,716,698996782,5100,0 +49222,%5B0252%5D,279,511,8630972,5535,0 +49223,MojeDnoToWaszSzczyt,492,284,9299539,9712,0 +49224,035,718,471,849091105,9581,0 +49225,035%7C%7C+Canes+Venatici,458,710,849035525,8093,0 +49226,XDX,607,307,699098531,10045,0 +49227,Wioska+barbarzy%C5%84ska,300,427,699856962,7105,0 +49228,I.+Oszczywilk,364,329,849101893,7538,0 +49229,Wioska+barbarzy%C5%84ska,523,289,7758085,9641,0 +49230,Wioska+2,655,344,849101945,8587,0 +49231,komandos+czysta,642,662,7976264,10059,0 +49232,MojeDnoToWaszSzczyt,490,279,9299539,9710,0 +49233,Avanti%21,280,482,698625834,10042,0 +49234,Op+Konfederacja,472,284,848915730,7132,0 +49236,New+WorldA,289,538,849084005,5529,0 +49238,Wioska+barbarzy%C5%84ska,382,315,698160606,2884,0 +49239,W40,695,399,699524362,2070,0 +49240,%23%23%23125%23%23%23,591,698,698285444,10495,0 +49241,029,683,621,699099811,5234,0 +49242,TWIERDZA+.%3A084%3A.,699,577,7154207,8893,7 +49243,Avanti%21,283,488,698625834,7213,0 +49244,069.Stradi,430,291,698365960,9727,0 +49245,C112,358,659,699383279,7730,0 +49246,Wioska+barbarzy%C5%84ska,298,437,8366045,2617,0 +49247,024.+Night+Raid,486,705,699684062,7815,0 +49248,Wioska,302,424,699821629,6095,0 +49249,MojeDnoToWaszSzczyt,489,280,9299539,6441,0 +49250,Osada,384,316,2268889,4044,0 +49251,Wiadro18,674,633,8677963,4336,0 +49252,019+Z,715,480,699718269,4599,0 +49253,Wioska+barbarzy%C5%84ska,425,295,698231772,6991,0 +49254,Wioska+barbarzy%C5%84ska,439,294,849017820,5546,0 +49255,%23K75+0005,521,714,699728159,5664,0 +49256,C076,356,661,699383279,4258,0 +49257,5.+Gors+Velen,604,694,849102573,3844,0 +49258,Wioska+KaszczuJ+4,701,576,849104356,9735,0 +49259,Babilon+01,345,649,698908184,9864,0 +49260,302,447,290,7271812,6069,0 +49261,D009,349,651,272173,8667,0 +49262,Wioska+barbarzy%C5%84ska,311,604,6180190,3455,0 +49263,U.001,288,563,849088243,8672,0 +49264,Taran,314,617,6180190,8888,0 +49265,Wiadrowo+Kolonia,288,489,849100877,4749,0 +49266,Taran,310,607,6180190,7086,0 +49267,Wioska+barbarzy%C5%84ska,376,675,699269923,8462,0 +49268,012,322,375,7386358,2130,0 +49269,005,664,644,2323859,8677,0 +49270,Wioska002,347,345,699711926,9726,0 +49271,%3D032%3D+Wioska+barbarzy%C5%84ska,705,565,3781794,8389,0 +49272,VII.+Stare+Juchy,366,329,849101893,3062,0 +49273,Pocz%C4%85tek,300,573,7842579,4920,0 +49274,Wioska+barbarzy%C5%84ska,329,370,0,2709,5 +49275,021.,471,713,849034882,10838,0 +49276,Komandos,640,664,7976264,9723,0 +49277,04+Tr%C4%85bek+B%C4%85bek,715,450,849101845,9512,0 +49278,003,612,310,699117992,7573,0 +49279,Taran,317,612,6180190,10291,2 +49280,Wioska+Destination1,493,283,763529,6053,0 +49281,005,294,424,6131106,3772,0 +49282,Wioska+barbarzy%C5%84ska+007,560,706,6870350,7765,0 +49284,%2AINTERTWINED%2A,515,711,698704189,5743,0 +49285,KR%C3%93L+PAPI+WIELKI,717,534,698191218,6329,0 +49286,EO+EO,288,518,699697558,10083,0 +49287,O%C5%82awa,678,633,848932879,6850,9 +49288,%23K75+0002,520,716,699728159,6734,0 +49289,B001,613,321,8740199,10216,0 +49290,Oxenfurt,311,387,849101377,5434,0 +49291,Nowe+IMPERIUM+2,617,688,698353083,4555,0 +49292,Wy...+c,600,695,699828685,10495,0 +49293,Wioska+barbarzy%C5%84ska,572,301,828637,10439,0 +49294,Wioska+barbarzy%C5%84ska,281,480,699846892,3433,0 +49295,051,670,368,698635863,9285,0 +49296,Wioska+barbarzy%C5%84ska,717,493,699429153,7174,0 +49297,009+Octoginta,670,643,849102108,6484,0 +49298,Z%C5%82oty+%C5%9Awit,585,304,699883079,9777,0 +49299,New+WorldA,289,526,849084005,5916,0 +49300,New+WorldA,287,518,849084005,4707,0 +49301,Wioska+F,543,292,1867161,3166,0 +49302,Bagno+43,475,717,848883684,3956,0 +49303,Parking8,620,682,6528152,4153,0 +49304,053,711,513,7085502,6102,0 +49305,Wioska,713,528,699034094,5017,0 +49306,%3D101%3D+Wioska+barbarzy%C5%84ska,704,563,3781794,5687,0 +49307,Wioska+barbarzy%C5%84ska,524,282,698350371,7164,0 +49308,056,405,696,849099876,10495,0 +49309,Podbitek+5,689,603,849101652,8056,0 +49310,Wioska+barbarzy%C5%84ska,297,436,8366045,2844,0 +49311,Menng,281,470,848981726,8731,0 +49312,Raskip,350,338,849021566,10953,0 +49313,U.005,292,557,849088243,6965,0 +49314,Zaplecze+Patataj,355,335,699796330,9741,6 +49316,176,384,683,849099876,7622,0 +49317,007,651,345,9148043,9741,9 +49318,atakuje+plemie3,680,372,849105232,2321,0 +49319,082.Stradi,431,295,698365960,10067,0 +49320,006,297,587,698663855,8449,0 +49321,005+Pozna%C5%84,287,527,9235561,4092,0 +49322,Wioska+barbarzy%C5%84ska,699,572,699737356,3678,0 +49323,Wyspa+022,294,573,225023,5822,0 +49324,Wioska+barbarzy%C5%84ska,690,407,8675636,8848,0 +49325,Zaplecze+gliniane,367,334,699796330,9885,2 +49327,CastAway+%21009,706,583,9314079,9092,0 +49328,068,719,539,7085502,10019,0 +49329,016.+Bolognese,322,379,849102092,3868,0 +49330,032+Wioska+barbarzy%C5%84ska,546,286,699854484,9835,0 +49331,Taran,321,618,6180190,9209,0 +49332,%2A018,675,369,7758085,7478,0 +49333,KONFA+TO+MARKA%2C+NARKA,296,436,698152377,6430,0 +49334,komandsos,633,666,7976264,9981,0 +49335,Kurnik,484,716,699603116,10047,0 +49336,Wioska+barbarzy%C5%84ska,330,370,0,1584,0 +49337,Wioska+barbarzy%C5%84ska,714,540,848946700,6153,0 +49338,Wioska+barbarzy%C5%84ska,326,370,0,6393,0 +49339,Bagno+7,482,712,848883684,9428,0 +49340,MJ8,682,381,8669398,5693,0 +49341,New+WorldA,281,521,849084005,4980,0 +49342,Cisza,292,543,698769107,4764,0 +49343,C013,371,669,699383279,9805,0 +49344,-11-,567,704,849055425,6765,0 +49345,032.+Gaszerbrum,709,558,1601917,8920,0 +49346,ZZ09,309,405,356642,8414,0 +49347,Wioska+barbarzy%C5%84ska,306,407,8724192,348,0 +49348,P%C3%B3%C5%82nocny+Bagdad,613,317,8847546,9835,0 +49349,Wioska+barbarzy%C5%84ska,716,546,17714,6083,0 +49350,Winterfell.015,467,283,848918380,6935,0 +49351,Kurnik,444,712,699603116,8170,0 +49352,KONFA+TO+MARKA%2C+NARKA,289,460,698152377,4815,0 +49354,033.+Garizim,709,536,1601917,10066,0 +49355,0.02+Szale%21,463,708,699725436,9462,0 +49356,Lord+Arsey+KING,654,654,848956513,9014,0 +49357,Wioska+barbarzy%C5%84ska,722,497,6510480,5103,0 +49358,03+barbarzy%C5%84ska.,286,448,849018442,9114,0 +49359,008+Perfectio,672,639,849102108,4433,0 +49360,Wioska+barbarzy%C5%84ska,708,423,848902592,4285,0 +49361,BIMBER,450,286,6857973,4074,0 +49362,o01,605,689,699189792,10216,2 +49363,017.+Dhaulagiri,710,549,1601917,10495,0 +49364,026,668,638,2323859,2670,0 +49365,Wioska+0016,343,650,9186126,8645,0 +49366,Panopticon+Ave,381,685,849105463,645,0 +49367,Wiocha,408,300,849094789,6000,0 +49368,Pocz%C4%85tek,296,578,7842579,4861,0 +49369,094.Stradi,437,290,698365960,8848,0 +49370,ElMajkelos+IV,413,304,849085160,10224,0 +49371,Psycha+Siada,336,642,8099868,9835,0 +49372,XDX,609,310,699098531,7312,0 +49373,Wioska+barbarzy%C5%84ska,692,604,6921135,1499,0 +49374,6.+Tretogor,604,695,849102573,4247,0 +49375,Flap,600,303,699098531,7740,0 +49376,Wioska+barbarzy%C5%84ska,713,551,17714,5634,0 +49377,Wioska+barbarzy%C5%84ska+018,386,309,849068662,3088,0 +49378,0002+Kr%C3%B3l+Fabio,496,721,699656989,9745,0 +49379,KONFA+TO+MARKA%2C+NARKA,294,441,698152377,10290,0 +49380,Taran,319,609,6180190,8671,0 +49381,Zasiedmiogorogrodzie+001,695,397,698278542,3345,0 +49382,C008,357,660,699383279,9790,0 +49383,Po%C5%82udniowy+Wsch%C3%B3d+003,694,604,699778867,2913,0 +49385,Mniejsze+z%C5%82o+0083,313,381,699794765,10012,0 +49386,t019,664,354,2262902,7191,0 +49387,New+World,435,705,698152377,10290,0 +49388,--031--,567,294,542253,6166,0 +49389,04.SHIBA,711,561,698905177,4298,0 +49390,Wioska+barbarzy%C5%84ska,649,339,9291984,3436,0 +49391,.achim.,567,288,6936607,6171,0 +49392,KONFA+TO+MARKA%2C+NARKA,289,434,698152377,7683,0 +49393,New+World,424,700,698152377,10291,0 +49395,basonia2,284,506,849101674,6102,2 +49396,S05,720,473,113796,1909,0 +49397,017,716,498,849091105,10495,0 +49398,%3D027%3D+Wioska+barbarzy%C5%84ska,704,566,3781794,9600,0 +49399,0010+Wioska+barbarzy%C5%84ska,495,721,699656989,5673,0 +49400,EO+EO,284,518,699697558,10019,6 +49401,007+Draconia,308,607,699356968,5430,0 +49403,-13-,574,702,849032414,8445,0 +49404,KWB,463,719,9003698,8346,5 +49405,C017,364,670,699383279,9701,0 +49406,Bagno+8,481,714,848883684,9427,0 +49407,C018,367,669,699383279,8297,0 +49408,popki,445,286,6857973,5271,0 +49409,B_6,295,422,699728266,3143,0 +49410,Wioska+barbarzy%C5%84ska,716,491,699429153,5395,0 +49411,057,399,690,849099876,10495,0 +49412,Oawek+1,654,346,849101945,9305,0 +49413,Wioska+barbarzy%C5%84ska,321,630,698908184,7154,0 +49414,Zaplecze+miedziane+3,356,336,699796330,9886,3 +49415,Wioska+barbarzy%C5%84ska,294,580,698663855,1762,0 +49416,Wioska+barbarzy%C5%84ska,282,462,699213622,5773,0 +49417,TARAN,547,708,7860453,7154,0 +49418,Wyspa+015,296,569,225023,3360,0 +49420,komandos,642,668,7976264,10176,0 +49421,Wioska+barbarzy%C5%84ska,558,712,699828442,7279,0 +49423,Avanti%21,284,473,698625834,7065,0 +49424,New+World,424,698,698152377,10290,8 +49425,Wioska+05,694,592,849101162,6359,0 +49427,007,611,310,699117992,5478,0 +49428,CSA+-+Konfederacja,668,363,7758085,9861,0 +49429,%23%23%23126%23%23%23,590,693,698285444,10495,0 +49430,wioska,642,335,9291984,10635,0 +49431,Lord+Arsey+KING,662,647,848956513,8274,0 +49432,008+Twierdza,627,682,849104328,10019,0 +49433,%23%23%23127%23%23%23,586,696,698285444,10495,0 +49434,047+sebaseba1991,620,675,699346280,10160,0 +49435,Wioska+barbarzy%C5%84ska,713,452,699628084,8564,0 +49436,0101,387,685,7085510,10216,2 +49437,--032--,567,298,542253,3773,0 +49438,komandos,643,670,7976264,9838,0 +49439,MERHET,581,706,698215322,9953,0 +49441,S026,686,604,8428196,7341,0 +49442,Wioska+0000,342,654,9186126,10040,0 +49443,018.+Wioska+barbarzy%C5%84ska,681,377,2873154,7691,0 +49444,07.+Zucchabar,712,546,848946700,10495,0 +49445,Wyspa+005,291,568,225023,10495,0 +49446,%23Kresy,628,676,2665207,5990,0 +49447,Wioska004,345,348,699711926,9732,0 +49448,themonk,636,335,849005829,5598,0 +49449,C003,369,673,699383279,9805,5 +49450,101,397,695,849099876,10130,0 +49451,Wyspa+016,298,570,225023,3649,0 +49452,Mniejsze+z%C5%82o+0092,312,382,699794765,4663,0 +49453,Pocz%C4%85tek,294,578,7842579,4197,0 +49454,Szlachcic,364,332,698388578,6250,0 +49455,021,295,562,9280477,7324,0 +49456,187,381,687,849099876,7164,0 +49457,%23%23%23128%23%23%23,610,691,698285444,10495,0 +49458,Wiadro17,672,630,8677963,3736,0 +49459,Wioska,715,525,699034094,4073,0 +49460,KR%C3%93L+PAPI+WIELKI,711,517,698191218,5155,0 +49461,...,338,362,699657450,5449,0 +49462,Wioska+barbarzy%C5%84ska,345,360,7462660,8544,0 +49463,Wioska+barbarzy%C5%84ska+2x1,571,702,849055425,7654,0 +49464,%5B0253%5D,281,514,8630972,7065,0 +49465,New+WorldA,288,524,849084005,6863,0 +49466,S02,718,473,113796,10143,5 +49467,Mandarynka,359,330,698906190,2161,0 +49468,Wioska+barbarzy%C5%84ska,448,294,699191464,5067,0 +49469,Z%C5%82oty+%C5%9Awit,584,308,699883079,6877,0 +49470,Zaplecze+Barba+020,367,323,699796330,6950,0 +49472,3.Derby,578,704,698215322,4996,0 +49473,XDX,598,304,699098531,7151,0 +49474,Wioska+barbarzy%C5%84ska,302,587,698663855,4753,0 +49475,%2A026%2A,689,612,1205898,2972,0 +49476,093.Stradi,439,289,698365960,9858,0 +49477,EO+EO,280,503,699697558,10160,0 +49478,008,321,375,7386358,2600,0 +49480,096,400,695,849099876,10495,0 +49481,057KP,481,284,849063849,4592,4 +49482,Z.04,700,577,699737356,4647,0 +49483,083,405,698,849099876,9627,0 +49484,MJ12,682,380,8669398,5749,0 +49485,%2A004,669,363,7758085,9399,0 +49487,001,725,528,7085502,9719,0 +49488,Wioska+barbarzy%C5%84ska+001,379,317,849068662,11625,0 +49489,Babidi+%231,374,321,849101962,9787,0 +49490,Ave+Why%21,507,714,699121671,3508,0 +49491,004d,300,418,8259895,4408,0 +49492,Tomekrol+4,697,590,849096334,5379,0 +49493,-14-,575,701,849032414,7985,0 +49495,New+World,428,703,698152377,10290,0 +49497,3_Franekkimono510_3,371,320,849099422,7112,0 +49498,O027,340,639,272173,9957,0 +49499,028,666,638,2323859,4251,0 +49500,007,440,705,849101309,1284,0 +49501,Wioska+barbarzy%C5%84ska,515,722,0,4797,0 +49502,0037,323,375,2321390,1561,0 +49503,076,716,507,7085502,7158,0 +49505,3.Doncaster,548,717,698215322,5456,0 +49506,014+Twierdza,631,677,849104328,7689,0 +49507,Czarna+Dziura,360,330,698906190,6277,0 +49508,B029,635,490,9314079,9815,0 +49509,040,409,691,849099876,10495,0 +49510,%2A017,673,369,7758085,7617,0 +49511,Bagno+15,486,719,848883684,8739,0 +49512,Wioska+barbarzy%C5%84ska,645,664,848987051,8663,0 +49513,Wioska8,707,577,699266530,6975,0 +49514,017+Osada+koczownik%C3%B3w,544,282,699854484,10178,2 +49516,027.+Faber,712,533,1601917,9095,0 +49517,044,410,692,849099876,10495,0 +49518,002d,301,408,8259895,4776,0 +49519,Wioska+barbarzy%C5%84ska,457,324,849096310,4231,0 +49520,czorny,698,578,849101814,1506,0 +49521,Z%C5%82oty+%C5%9Awit,598,302,699883079,9450,7 +49522,kontra+2,680,371,849105232,2628,0 +49523,Wioska+barbarzy%C5%84ska,716,548,17714,9499,0 +49524,SawTower,283,465,698652171,7292,0 +49525,Z%C5%82oty+%C5%9Awit,585,302,699883079,9764,0 +49526,Kurnik,473,712,699603116,3454,0 +49527,Wioska+Czamba%C5%81amba,326,366,699875650,559,0 +49528,001,307,407,8724192,6953,0 +49529,026+zadupie+2,534,712,6116940,10083,0 +49530,Klatka2,619,681,6528152,3192,0 +49531,011,308,395,8724192,2315,0 +49532,Taran,320,617,6180190,10047,6 +49533,658%7C388,670,372,699580120,9570,0 +49534,Wioska+barbarzy%C5%84ska,336,646,0,697,0 +49535,Wioska011,346,340,699711926,9017,0 +49536,0137,367,674,7085510,4843,0 +49537,C0234,285,544,8841266,9968,0 +49538,Wioska+barbarzy%C5%84ska,299,425,699856962,7255,0 +49539,D%C5%BCejd%C5%BCej+4,669,634,849098326,6645,0 +49541,2023,375,677,849097837,4260,0 +49542,005,592,312,1767876,2966,0 +49543,Wyspa_42,500,721,2585846,7604,4 +49544,%5B805%5D+Odludzie,712,433,848985692,7007,0 +49546,Psycha+Siada,339,650,8099868,8553,0 +49548,031+Furnost,601,502,8337151,10083,0 +49549,0006,576,707,698723158,9160,0 +49550,Wioska+barbarzy%C5%84ska,524,287,699818726,3821,0 +49551,KONFA+TO+MARKA%2C+NARKA,293,438,698152377,8051,0 +49552,Wioska+barbarzy%C5%84ska,355,447,6258092,8902,0 +49553,C0236,282,541,8841266,7192,0 +49554,Wioska+barbarzy%C5%84ska,429,293,698231772,1540,0 +49555,XDX,603,315,699098531,9880,0 +49556,009,536,291,699208929,10242,1 +49557,0149,389,684,7085510,5345,0 +49558,112,688,613,3589487,7707,0 +49559,KONFA+TO+MARKA%2C+NARKA,286,439,698152377,10300,0 +49560,Avanti%21,285,474,698625834,7189,0 +49561,018,283,463,6131106,7995,0 +49563,O068,331,628,272173,9873,0 +49564,New+WorldA,289,539,849084005,4923,0 +49565,Wioska+barbarzy%C5%84ska,425,294,698231772,5733,0 +49566,Szlachcic,382,317,698160606,10474,8 +49567,barabara,284,532,699805379,1033,0 +49568,Wioska+barbarzy%C5%84ska,706,561,17714,7155,0 +49569,171,379,676,849099876,7618,0 +49570,W002,306,391,849082154,8702,0 +49571,--023--,572,293,542253,6002,3 +49573,029.+Gerlach,715,544,1601917,8699,0 +49574,Mniejsze+z%C5%82o+0039,312,388,699794765,8484,2 +49575,KONFA+TO+MARKA%2C+NARKA,292,423,698152377,4686,0 +49576,Playa+del+Confital,376,679,7085510,6342,0 +49577,%230254+Taki+Pan+dar,469,289,1238300,5189,0 +49578,1+Nowy+vequs,341,350,7462660,6423,0 +49579,Wioska+%C5%BB%C3%B3%C5%82wi+Ninja,712,432,849102480,8456,0 +49580,C043,351,663,699383279,9202,0 +49581,Wioska+barbarzy%C5%84ska,649,336,849048734,4080,0 +49582,Wioska+031,670,360,7226782,10495,1 +49583,004+JJ,327,367,9120206,3699,0 +49584,Wioska+barbarzy%C5%84ska,462,282,849104286,6393,0 +49585,Psycha+Siada,345,648,8099868,7569,0 +49586,MojeDnoToWaszSzczyt,488,287,9299539,4950,0 +49587,0031+drama,324,635,698908184,9805,0 +49588,Wioska+%28045%29,714,463,698232227,2062,0 +49589,.4.%21,301,406,762975,2327,0 +49590,-+219+-,547,561,849018239,6528,0 +49591,Ghostmane2,716,445,848896434,2759,0 +49592,Wioska+barbarzy%C5%84ska,721,509,6510480,5449,0 +49593,046,632,672,699695167,3326,0 +49594,0.17c,459,708,699827112,9744,0 +49596,Caldera+de+Bandama,378,680,7085510,5788,0 +49597,MojeDnoToWaszSzczyt,494,283,9299539,9961,0 +49598,003,291,425,6131106,5946,0 +49599,%5B0187%5D,285,496,8630972,8587,0 +49600,Taran,311,605,6180190,5630,0 +49601,New+WorldA,284,537,849084005,4979,0 +49602,aaa,682,609,3986807,1317,0 +49603,Pocz%C4%85tek,301,575,7842579,3643,0 +49604,BIMBER+2,446,287,6857973,5456,0 +49606,...,377,683,849097837,8282,0 +49607,R+041,500,719,699195358,6493,0 +49608,Osada+Wandali+x,658,351,699875213,4145,6 +49609,BRICKLEBERRY,521,284,7758085,8566,0 +49610,Wioska-010-,635,331,7675610,2725,0 +49611,0435,559,705,698659980,10019,0 +49612,Wioska+003,316,378,699424741,8375,0 +49613,Winterfell.010,454,283,848918380,10178,3 +49614,.%3A+SPARTA+%3A.,720,509,699734445,5059,0 +49615,Rikitiki,290,468,848977600,4047,0 +49616,Wioska+barbarzy%C5%84ska,492,722,699656989,3090,0 +49617,Winterfell.019,458,290,848918380,10178,0 +49618,031,686,621,699099811,6520,0 +49619,.achim.,485,281,6936607,5282,0 +49620,%C5%BC+internacionale+0002Fresio,316,375,3909522,10062,0 +49621,D007,562,288,699299123,5103,0 +49622,Zaplecze+Barba+012,366,332,699796330,9088,0 +49623,EO+EO,281,495,699697558,10019,0 +49624,001d,302,415,8259895,7915,0 +49625,.Krakers.+008,319,620,9163140,1531,9 +49626,Avanti%21,285,475,698625834,6473,0 +49627,aaaa,421,294,698231772,9817,8 +49629,New+WorldA,281,522,849084005,3642,0 +49630,Mniejsze+z%C5%82o+0095,317,390,699794765,5283,0 +49631,P%C3%B3%C5%82nocny+Bagdad,621,315,8847546,6866,0 +49632,Bagno+28,475,721,848883684,6811,0 +49633,033,717,470,849091105,10160,0 +49635,Parking6,625,681,6528152,4215,0 +49636,%23%23%23129%23%23%23,609,689,698285444,10495,0 +49637,.achim.,566,292,6936607,7211,0 +49638,%230055,575,709,1536231,10495,0 +49639,027.,472,720,849034882,10838,0 +49640,Lord+Arsey+KING,655,652,848956513,8274,0 +49641,MJ13,681,380,8669398,4567,0 +49642,Z%C5%82oty+%C5%9Awit,591,300,699883079,7430,0 +49643,Jan+Ost+skrajny,705,440,879782,6424,0 +49644,Wioska+barbarzy%C5%84ska,378,326,3698627,9069,0 +49645,MojeDnoToWaszSzczyt,508,286,9299539,9622,0 +49646,027,456,717,8268010,5985,0 +49647,Denver,283,468,698652171,4391,0 +49649,Wioska+barbarzy%C5%84ska,423,301,698231772,9566,0 +49650,021,665,647,2323859,2799,0 +49651,%2A018%2A,682,627,1205898,4737,0 +49652,Osada+koczownik%C3%B3w,638,333,7555180,9986,4 +49653,o05,612,684,699189792,9744,0 +49654,Zaplecze+barba+5,365,333,699796330,9811,0 +49655,009+JJ,325,364,9120206,3302,0 +49656,--027--,568,291,542253,4803,0 +49657,ZZ11,308,404,356642,9044,0 +49658,Wioska+barbarzy%C5%84ska,396,304,698231772,4805,0 +49659,MojeSzczytToTw%C3%B3jDno,514,368,828637,10971,0 +49660,R+042,499,720,699195358,5813,0 +49661,Z%C5%82oty+%C5%9Awit,575,299,699883079,7988,0 +49663,%23%23%23130%23%23%23,607,691,698285444,10495,0 +49664,FAKE+OR+OFF,407,306,698231772,9813,9 +49665,Wioska+barbarzy%C5%84ska,443,708,849037407,3574,0 +49666,C069,358,663,699383279,6692,0 +49667,o008,605,694,699189792,6462,0 +49668,049.+Lindor,442,707,848928624,3312,0 +49669,%23%23%23131%23%23%23,610,693,698285444,10495,0 +49670,137+invidia,496,715,849093426,10083,6 +49671,300,446,288,7271812,10495,0 +49672,04+barbarzy%C5%84ska.,287,443,849018442,8050,0 +49673,EO+EO,279,521,699697558,10160,3 +49674,Wioska+majku+5,414,701,363280,1632,0 +49675,Szlachcic,382,311,698160606,7688,0 +49676,P002,514,278,699208929,9981,0 +49677,%23%233,348,352,2800032,9080,0 +49678,Wioska+-+008+-,535,284,848982634,1989,0 +49679,--005--,571,300,542253,7704,0 +49680,Legnica,678,628,848932879,4475,0 +49681,New+WorldA,292,545,849084005,4788,0 +49682,122,407,698,849099876,8543,0 +49683,Ger2,715,522,2246711,5778,0 +49685,%5B0165%5D,439,295,8630972,7889,0 +49686,002f,301,411,8259895,4185,0 +49688,%2A004%2A,277,501,8630972,11321,0 +49689,C028,364,667,699383279,8056,0 +49690,015,531,719,698996782,4539,0 +49691,045,408,693,849099876,10495,0 +49692,B003Mordor,712,463,113796,10393,0 +49693,168,382,676,849099876,8436,0 +49694,0070,580,707,698659980,10252,3 +49695,Vvvv,284,531,699805379,3773,0 +49696,005+JJ,331,364,9120206,4309,0 +49697,Wioska+barbarzy%C5%84ska,551,713,699828442,7268,0 +49698,%5B0194%5D,279,496,8630972,9135,0 +49699,%3D0019%3D,389,311,698231772,8529,7 +49700,Wioska+barbarzy%C5%84ska,310,602,698167138,1612,0 +49701,Wioska+jurger,716,523,2246711,9755,0 +49702,090,722,507,7085502,4173,0 +49703,Szlachcic,357,334,698388578,6299,0 +49704,C038,355,667,699383279,7835,0 +49705,062,714,510,7085502,8215,0 +49707,ZZ14,309,403,356642,9597,0 +49709,012.,632,669,699695167,4940,0 +49710,B_5,294,423,699728266,2848,0 +49711,OFF,653,654,849014413,10343,4 +49712,XDX,599,312,699098531,10290,0 +49713,XDX,599,307,699098531,7729,0 +49714,023.+Aglio+e+olio,319,378,849102092,4697,0 +49716,002,656,344,849020094,7573,0 +49717,099,407,695,849099876,8554,0 +49718,Wioska+barbarzy%C5%84ska,693,599,6921135,1460,0 +49719,%3D091%3D+Wioska+barbarzy%C5%84ska,700,591,3781794,5893,0 +49720,MojeDnoToWaszSzczyt,485,287,9299539,6244,0 +49721,C001,353,661,699383279,9879,9 +49723,Wioska+barbarzy%C5%84ska,702,406,698462285,1500,0 +49724,Wioska+barbarzy%C5%84ska,279,495,699846892,3045,0 +49725,025,527,720,698996782,4741,0 +49726,Wioska+barbarzy%C5%84ska,351,339,849101694,4908,0 +49727,Pocz%C4%85tek,297,582,7842579,9811,0 +49728,bucksbarzy%C5%84skamiiiru,315,394,848955783,6643,0 +49729,KONFA+TO+MARKA%2C+NARKA,286,446,698152377,10248,0 +49730,Mroczny+Zamek+OZDR+01,624,682,699372829,10559,0 +49731,EO+EO,284,515,699697558,9701,0 +49732,021+Safari+Zone+Gate,721,483,699441366,10388,0 +49733,...,337,361,699657450,3126,0 +49734,Dorka+na+malediwy,294,415,699856962,10611,9 +49735,0.17e,460,711,699827112,9413,0 +49736,%5B0198%5D,283,497,8630972,7489,0 +49737,%24007%24+Paradise,304,584,699550876,7420,0 +49738,KONFA+TO+MARKA%2C+NARKA,290,448,698152377,6720,0 +49739,058,711,564,7085502,7665,0 +49740,055,407,696,849099876,10495,0 +49741,-17-,577,703,849032414,7858,0 +49742,A%23006,717,533,2065730,9797,9 +49743,Testarossa,704,412,699785935,4718,0 +49744,BRICKLEBERRY,557,295,699072129,8149,0 +49745,058KP,485,279,849063849,4245,0 +49746,B004,621,322,8740199,5653,0 +49747,009,309,396,8724192,2683,0 +49748,Cisza,299,574,698769107,2578,0 +49749,Avanti%21,286,469,698625834,10119,0 +49750,Wioska+barbarzy%C5%84ska,527,287,699818726,5670,0 +49751,040,509,285,849010255,6230,0 +49752,Chojnice,485,284,699278528,9362,0 +49754,Taran,318,621,6180190,9645,0 +49755,Bia%C5%82a+Podlaska+2,439,714,849100787,1981,0 +49756,--009--,571,295,542253,8696,0 +49757,Wioska+barbarzy%C5%84ska,696,408,8675636,8860,0 +49758,B016,625,323,8740199,3102,0 +49759,Barba,325,634,698908184,8289,0 +49761,39.+Wioska+39,289,562,849091769,8404,0 +49762,Taka.,484,721,848999671,5864,0 +49763,6+M+MANSON,346,353,6315553,2363,0 +49764,052,676,381,698635863,8832,0 +49765,Wioska+barbarzy%C5%84ska,307,591,6180190,2182,0 +49766,XDX,604,304,699098531,3769,0 +49767,%5BB%5D003,418,703,9195661,8126,0 +49768,D008,563,289,699299123,4661,0 +49769,Psycha+Siada,334,641,8099868,10019,0 +49770,063,717,514,7085502,7252,0 +49771,P%C3%B3%C5%82nocny+Bagdad,620,315,8847546,7517,0 +49772,ZZ12,307,410,356642,9049,0 +49774,091+Wioska+barbarzy%C5%84ska,542,289,699854484,6109,0 +49776,C075,354,663,699383279,5688,0 +49777,Po%C5%82udniowy+Wsch%C3%B3d+013,695,601,699778867,1407,0 +49778,Wiocha+IV,337,352,849106316,2591,0 +49779,Bagno+9,479,716,848883684,9400,0 +49780,Wyspa+011,296,563,225023,7727,0 +49781,OFF,658,655,849014413,11078,0 +49782,wioska,638,329,849102068,12154,0 +49783,051,406,692,849099876,10495,0 +49785,%5B0143%5D,458,284,8630972,8951,0 +49786,--037--,574,295,542253,3957,0 +49787,Wioska+barbarzy%C5%84ska+006,564,709,6870350,7485,0 +49788,Avanti%21,283,494,698625834,4586,0 +49789,Yoyio,285,460,698652171,5932,0 +49790,1_Franekkimono510_1,374,323,849099422,12154,0 +49791,Wioska+0005,346,656,9186126,10311,0 +49792,Taran,319,617,6180190,9509,0 +49793,KONFA+TO+MARKA%2C+NARKA,290,437,698152377,10295,0 +49794,Wioska+021,661,349,7226782,11352,0 +49795,O072,329,631,272173,9827,0 +49796,Wioska+barbarzy%C5%84ska,461,284,699393759,2221,0 +49797,Psycha+Siada,335,642,8099868,9968,0 +49798,00321,434,416,3909522,5814,0 +49799,Wioska+barbarzy%C5%84ska,693,405,8675636,8860,0 +49800,Wioska+barbarzy%C5%84ska,711,570,2453888,10019,0 +49801,New+World,427,705,698152377,10292,0 +49802,C022,356,668,699383279,9957,0 +49803,Wioska+barbarzy%C5%84ska,305,405,0,293,0 +49804,038,670,638,2323859,1770,0 +49805,001,593,702,849097370,5976,0 +49806,Wioska+barbarzy%C5%84ska,281,518,7530708,2556,0 +49807,Amsterdam,282,522,699830255,4106,0 +49808,002,288,430,6131106,6826,0 +49809,067.+Nansena,720,523,1601917,3381,0 +49810,New+World,428,711,698152377,10291,0 +49811,Wioska+barbarzy%C5%84ska,291,577,498483,2443,0 +49812,001,288,549,849085605,6171,0 +49813,Z.01,701,579,699737356,10056,0 +49814,KONFA+TO+MARKA%2C+NARKA,297,424,698152377,2908,0 +49815,001.+Pepperoni,320,381,849102092,8473,0 +49816,Wioska19,707,574,699266530,3063,0 +49817,005+-+Budowanko%21,487,721,7540891,7354,0 +49818,Vvvvv,281,531,699805379,1763,0 +49819,%3D113%3D+Wioska+barbarzy%C5%84ska-01-,703,569,3781794,6093,0 +49820,Wioska+barbarzy%C5%84ska,687,529,699379895,3760,0 +49821,W41,693,402,699524362,1722,0 +49822,086.Stradi,429,297,698365960,8622,0 +49824,Szlachcic,373,318,698160606,7302,0 +49825,KONFA+TO+MARKA%2C+NARKA,287,449,698152377,8674,0 +49826,Wioska+barbarzy%C5%84ska,709,424,848902592,4290,0 +49827,osada+1,663,350,7357503,7423,0 +49828,Wioska+barbarzy%C5%84ska,353,337,698817235,3134,0 +49829,Wioska+barbarzy%C5%84ska,650,661,6167751,1391,0 +49830,004+Thargourm,671,637,849102108,6002,0 +49831,Pocz%C4%85tek,299,584,7842579,9955,9 +49832,Wioska+JAN1234,299,572,699075351,4233,0 +49833,%3D092%3D+Wioska+barbarzy%C5%84ska,699,595,3781794,5662,0 +49834,XDX,600,307,699098531,6347,0 +49835,Mroczny+Zamek+OZDR+03,621,683,699699601,5080,0 +49836,Taran,321,617,6180190,9349,0 +49837,Kurnik,468,719,699603116,9253,0 +49838,007+-+Budowanko%21,492,718,7540891,8382,0 +49839,Wioska,283,455,8792844,5322,0 +49840,%23%23%23132%23%23%23,598,693,698285444,10495,0 +49841,Wioska+barbarzy%C5%84ska,519,288,7758085,9719,0 +49842,C031,359,665,699383279,7858,0 +49843,Wioska+barbarzy%C5%84ska,390,309,698231772,4113,0 +49844,Po%C5%82udniowy+Wsch%C3%B3d+006,690,601,699778867,1577,0 +49845,Szlachcic,382,312,698160606,8098,6 +49846,Wioska+przemek2707,285,538,8853146,7662,0 +49847,%3D119%3D+Wioska+barbarzy%C5%84ska,704,558,3781794,2279,0 +49848,--038--,574,293,542253,3901,0 +49849,-+275+-+SS,571,708,849018239,2991,0 +49850,004.+Osada+koczownik%C3%B3w,686,387,2873154,10237,3 +49851,XDX,607,305,699098531,9281,0 +49853,001+Mortalis,671,638,849102108,10292,0 +49854,Wioska12,707,581,699266530,7269,0 +49855,R+044,495,722,699195358,4456,0 +49856,012+telimena,616,681,699346280,10160,0 +49857,%230306+kawskole,445,285,1238300,4466,5 +49859,C035,352,665,699383279,9692,0 +49860,C.045,714,466,9188016,4354,0 +49862,Wioska4.,707,579,699266530,9315,0 +49863,Taran,323,618,6180190,9899,0 +49864,3.Ipswich,579,705,698215322,4873,0 +49865,Kiedy%C5%9B+Wielki+Wojownik,333,354,8632462,5023,0 +49866,Wioska+barbarzy%C5%84ska,368,322,3698627,4651,0 +49867,037+Wioska+barbarzy%C5%84ska,606,686,699346280,8812,0 +49868,%5B0150%5D,440,294,8630972,9130,0 +49869,Bilo,558,707,699443920,4362,0 +49870,KONFA+TO+MARKA%2C+NARKA,289,448,698152377,10291,0 +49871,074+Stopnie,705,431,2135129,9553,0 +49872,EO+EO,282,513,699697558,10160,9 +49873,038.+Brunet+wieczorow%C4%85+por%C4%85,502,718,848928624,4538,0 +49874,003,532,281,698736778,1442,0 +49875,Wioska+barbarzy%C5%84ska,524,288,7758085,5781,0 +49876,005,721,497,849091105,10019,8 +49877,Zielona+Warta,707,435,849101378,7951,0 +49878,%5B0213%5D,277,504,8630972,7414,0 +49879,New+World,429,710,698152377,10291,0 +49880,060+invidia,542,715,849093426,6647,0 +49882,Nowa+01,302,598,699321518,8370,0 +49884,K33,316,390,699794765,2119,0 +49885,C073,355,662,699383279,5863,0 +49887,Jefferson,383,684,849105463,608,0 +49888,CastAway+%23010,706,584,9314079,9265,1 +49889,KONFA+TO+MARKA%2C+NARKA,285,447,698152377,10291,0 +49890,%7E%7E077%7E%7E,679,632,7829201,6190,0 +49891,0113,366,675,7085510,10216,8 +49892,MojeDnoToWaszSzczyt,500,281,9299539,9946,0 +49893,Po%C5%82udniowy+Wsch%C3%B3d+010,690,612,699778867,1951,0 +49894,New+World,280,518,849084005,6404,0 +49895,Wioska+barbarzy%C5%84ska,562,714,6299408,3991,0 +49896,Wioska+Turystyczna+007,716,470,7588382,5474,0 +49897,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,717,699828442,9811,0 +49898,084,715,520,7085502,6317,0 +49899,C0249,287,548,8841266,8038,0 +49900,%5B808%5D+Odludzie,708,430,848985692,8166,0 +49901,%3D086%3D+Santa+Fe,701,572,3781794,10385,0 +49902,Wioska+-+007+-,534,283,848982634,1702,0 +49903,Nowa+57,701,588,698702991,6826,0 +49904,Winterfell.001,454,289,848918380,10178,9 +49905,Wioska+barbarzy%C5%84ska,713,430,699628084,6092,0 +49906,Wioska+barbarzy%C5%84ska,305,586,698663855,4902,0 +49907,komandos48,639,667,7976264,10495,0 +49908,Wioska+klez+021,315,564,698295651,2725,0 +49910,0068,693,394,698416970,4993,0 +49911,Wyspa+008,289,567,225023,10495,0 +49912,MojeDnoToWaszSzczyt,508,277,9299539,9952,0 +49914,0131,388,682,7085510,4761,0 +49915,tomek016+III,690,568,8811880,2199,0 +49916,Wioska+barbarzy%C5%84ska+003,378,318,849068662,10641,0 +49917,Asgard,659,344,849101947,4979,0 +49918,003+po%C4%87wiczone+byq,324,373,7386358,6666,0 +49919,B_9,298,420,699728266,1347,0 +49920,%230267+EmersonJr,468,290,1238300,5755,0 +49922,s181+krzysiek1293,404,418,7462660,10132,0 +49923,Z%C5%82oty+%C5%9Awit,574,299,699883079,8280,0 +49924,xxx,536,714,873575,8511,0 +49925,013+zbieranie,532,713,6116940,4947,0 +49926,Wioska+barbarzy%C5%84ska,646,333,849048734,3020,0 +49927,Wygwizdowa+008,637,663,698562644,7180,0 +49928,Wioska+barbarzy%C5%84ska,710,547,17714,6964,0 +49929,199...Segador,441,294,6920960,10787,0 +49930,001,321,376,7919620,9271,0 +49931,Wioska+barbarzy%C5%84ska,721,503,6510480,5547,0 +49932,Wioska03,297,420,8259895,4580,0 +49933,FAKE+OR+OFF,401,305,698231772,9843,0 +49934,Wioska+02,694,591,849101162,6926,0 +49936,C.046,711,469,9188016,4851,0 +49937,005,464,712,699725436,9555,0 +49938,New+WorldA,282,534,849084005,4279,0 +49939,Wioska+barbarzy%C5%84ska,695,607,6921135,1823,0 +49940,A%23005,716,504,2065730,9797,4 +49941,New+World,415,701,698152377,10292,0 +49943,006,287,538,848886200,3399,0 +49944,002.+Osada+koczownik%C3%B3w,681,375,2873154,10237,8 +49945,05.CHZ,712,565,698905177,5717,0 +49946,EO+EO,294,515,699697558,10147,0 +49947,Taka.,487,723,848999671,3210,0 +49948,Wioska+Lord+Mariusso,522,528,7581876,8119,0 +49949,K33,318,388,699794765,3493,0 +49950,Taran,319,621,6180190,8005,0 +49951,025,654,348,9148043,5111,0 +49952,080,719,510,7085502,5011,0 +49953,002e,302,409,8259895,4211,0 +49954,Bartek,362,330,6416213,6791,0 +49955,-005-,723,502,7418168,5439,0 +49957,%3D093%3D+Wioska+barbarzy%C5%84ska,701,589,3781794,5699,0 +49958,Amaranth.,283,479,849001277,2406,3 +49960,%5B0267%5D,286,516,8630972,5993,0 +49961,Sicario,715,446,848896434,1663,0 +49962,Wioska+barbarzy%C5%84ska,520,284,7758085,8715,0 +49963,C01+Qukaku.,450,715,849037407,10817,4 +49964,Wioska+barbarzy%C5%84ska,643,405,7973893,6334,0 +49965,%23%23%23146%23%23%23,597,693,698285444,10495,0 +49966,011,307,594,849099463,5202,0 +49967,WEZUWIAN,707,551,17714,10222,0 +49968,001+Desant,482,688,699745265,9736,0 +49969,C048,354,669,699383279,7015,0 +49970,0000030Z,286,560,849089881,6563,0 +49971,Lord+Arsey+KING,661,649,848956513,9179,0 +49972,rynko,683,610,3986807,1348,0 +49973,xxx,537,714,873575,10136,0 +49974,B20,646,445,849093742,7339,0 +49975,Wioska+barbarzy%C5%84ska,713,495,699429153,6990,0 +49977,%3D079%3D+BORSUKA+NORA,707,570,3781794,3731,0 +49978,Wioska+Boonkol,528,720,6116940,6684,0 +49979,333,417,294,849089654,2960,0 +49980,Wioska+grzegorzzdw,312,608,849098132,2343,0 +49981,Wioska+11,695,591,849101162,5006,0 +49983,178,384,682,849099876,6928,0 +49984,XDX,605,354,699098531,9222,0 +49985,New+World,411,703,698152377,10292,0 +49986,Na+Kra%C5%84cu+%C5%9Awiata+007,647,339,9291984,6448,0 +49987,014,545,394,1424656,9922,0 +49988,MojeDnoToWaszSzczyt,509,281,9299539,9958,0 +49990,Wioska+16,694,587,849101162,2656,0 +49991,106+invidia,522,720,849093426,10311,5 +49992,Saran7,399,303,848937248,2752,0 +49993,New+WorldA,279,509,849084005,4131,0 +49994,Walhalla,310,403,8724192,9453,0 +49995,B_2,295,420,699728266,4204,0 +49996,Taran,318,616,6180190,8304,0 +49997,045,661,357,9148043,5149,0 +49998,Wioska+hajza,406,305,378757,4338,0 +49999,C.047,720,478,9188016,4340,0 +50000,B017,626,322,8740199,2201,0 +50001,041.,451,708,849034882,10838,0 +50002,001+Twierdza,630,676,849104328,10019,0 +50003,Wioska+Chudy19,351,344,849101694,7217,0 +50004,063+Wioska+barbarzy%C5%84ska,343,659,6354098,6044,0 +50006,6_Franekkimono510_6,370,319,849099422,4184,0 +50007,XDX,615,309,699098531,5342,0 +50008,000,306,476,2418364,9570,0 +50009,Dream+on,303,506,698962117,9697,0 +50010,Kurnik,476,714,699603116,10160,0 +50011,057+Wioska+barbarzy%C5%84ska,550,287,699854484,9976,0 +50012,Polska,379,682,849097837,6548,0 +50013,bucksbarzy%C5%84skamiiiru,314,394,848955783,1882,0 +50014,B001+OSADA+2,710,463,113796,3863,0 +50015,019Szalowanie+Czapki,503,716,698620694,8185,0 +50016,%2A009,674,367,7758085,9861,0 +50017,Winterfell.004,465,289,848918380,10178,9 +50019,072.,710,462,849094609,4364,0 +50020,04Osada+koczownik%C3%B3w,363,675,699704542,9817,3 +50021,002,647,346,9148043,9662,0 +50022,038,398,698,849099876,10495,0 +50023,22+kolonia016..,290,456,849018442,10311,0 +50024,Wiadro01,675,632,8677963,8199,0 +50026,Wioska,636,336,849005829,2504,0 +50027,wioska,636,333,9291984,12154,0 +50028,Wioska+barbarzy%C5%84ska,377,686,849030086,4656,0 +50029,C093,360,672,699383279,9912,0 +50030,%23%23%23133%23%23%23,610,689,698285444,10388,0 +50031,K33,315,383,699794765,2165,0 +50032,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,716,699828442,9744,0 +50034,Wioska+barbarzy%C5%84ska,277,490,699846892,3015,0 +50035,Wioska+barbarzy%C5%84ska,526,288,699818726,5652,0 +50036,Z%C5%82oty+%C5%9Awit,606,306,699883079,10086,6 +50038,Wioska+barbarzy%C5%84ska,720,492,942959,3319,0 +50039,0595,475,546,698971484,8975,0 +50040,CastAway+%21034,689,605,9314079,5740,0 +50041,001,402,590,9264752,10495,0 +50042,KONFA+TO+MARKA%2C+NARKA,291,449,698152377,10290,0 +50044,Wioska+barbarzy%C5%84ska,398,308,698231772,4112,0 +50045,P%C3%B3%C5%82nocny+Bagdad,614,317,8847546,9541,0 +50046,%3A...+2+...%3A+-,512,717,849051976,8012,0 +50047,W001,307,390,849082154,6774,0 +50048,Wioska+barbarzy%C5%84ska,509,713,698704189,2367,0 +50050,Wioska+majku+3,414,702,9195661,4630,0 +50051,Wioska+barbarzy%C5%84ska,555,287,698350371,1439,0 +50052,022,285,459,6131106,2603,0 +50053,.achim.,481,288,6936607,8325,0 +50054,Wioska+barbarzy%C5%84ska,414,298,698231772,6827,0 +50055,Wioska+barbarzy%C5%84ska,645,659,848987051,8684,0 +50056,Deor%2C+przeginasz,627,476,699545762,2856,0 +50057,New+World,438,708,698152377,5130,0 +50058,002,386,318,699660539,8235,0 +50059,%230154+barbarzy%C5%84ska,478,279,1238300,5568,0 +50060,048.,449,710,849034882,10313,9 +50061,Taka.,484,722,848999671,6671,0 +50062,North+013,513,287,849064752,10311,0 +50063,%5B820%5D+Odludzie,714,442,848985692,6104,0 +50064,%230070,572,711,1536231,7605,0 +50065,Wioska+0001,343,655,9186126,10237,0 +50066,Wioska+barbarzy%C5%84ska,391,306,698231772,9833,0 +50067,Kurnik,448,709,699603116,7952,2 +50068,Baloo,552,706,699443920,5080,0 +50069,Wioska+barbarzy%C5%84ska,435,293,698231772,8856,0 +50070,Klejnot+nr3,592,693,699837483,2145,0 +50071,Wioska+barbarzy%C5%84ska,559,715,6299408,6802,0 +50073,%23K75+0012,517,713,699728159,4501,0 +50074,Bastion,704,588,849088199,3769,0 +50075,006+gruba,283,552,197581,2214,0 +50076,B_4,297,412,699728266,2544,0 +50078,017,666,639,2323859,3822,0 +50080,Wioska+barbarzy%C5%84ska,324,630,698908184,9043,0 +50081,New+WorldA,282,527,849084005,3909,0 +50082,Wioska007,688,392,698768565,8262,0 +50083,W42,693,409,699524362,1901,0 +50084,Wioska007,343,348,699711926,9735,0 +50085,II.+Niemyje-Z%C4%85bki,364,328,849101893,5320,0 +50086,0036,324,380,2321390,2410,0 +50087,Minas+Tirith,704,427,8675636,10160,0 +50088,Z%C5%82oty+%C5%9Awit,585,298,699883079,10127,0 +50089,008,299,595,698663855,5127,0 +50090,Avanti%21,282,470,698625834,6673,0 +50091,Wiadro02,672,631,8677963,9008,0 +50092,%23035,553,291,849064614,3861,0 +50093,Wioska+barbarzy%C5%84ska,722,502,6510480,4500,0 +50094,001+koparka,527,719,6116940,5319,0 +50095,Wioska+borat1986,498,286,763529,8109,0 +50096,229...P%C3%93%C5%82noc,436,288,6920960,7514,0 +50097,%5BJ%5Da%C5%BA,285,547,849106971,2280,0 +50098,Dream+on,306,500,698962117,9508,0 +50099,Wyspa_53,496,719,2585846,2854,0 +50100,Wioska+barbarzy%C5%84ska,553,714,699828442,9750,0 +50101,WAKKRA,708,556,17714,10222,0 +50102,Wioska+Karyagina,715,432,849102480,8789,0 +50103,Ch%C4%99ciny,305,600,698167138,2312,0 +50104,Out+of+Touch,325,443,698962117,6926,0 +50105,012,341,349,849101205,3728,0 +50106,...,336,361,699657450,4071,0 +50107,Lord+Arsey+KING,655,660,848956513,4235,0 +50108,Komandos,653,657,7976264,4468,0 +50109,Not+2+day,483,278,698489071,5447,0 +50111,ZZ13,311,401,356642,9368,0 +50112,Piek%C5%82o+to+inni,643,329,848956765,6300,0 +50113,%3D028%3D+Wioska+barbarzy%C5%84ska,708,566,3781794,9603,0 +50114,Wioska+barbarzy%C5%84ska,506,718,698704189,5720,0 +50115,HWILA,626,317,849006385,5174,0 +50116,Lord+Arsey+KING,658,645,848956513,10285,0 +50118,EO+EO,286,523,699697558,7800,0 +50119,Wioska+barbarzy%C5%84ska,278,489,699846892,3887,0 +50120,076+Wioska+barbarzy%C5%84ska,539,287,699854484,9756,0 +50121,0140,368,675,7085510,4443,0 +50122,%3F%3F%3F%3F,477,281,698489071,9059,0 +50123,067+invidia,542,718,849093426,5621,0 +50124,Wioska+032,665,355,7226782,8783,0 +50125,JJay+House,328,361,9120206,8243,0 +50126,%5B0254%5D,288,513,8630972,5639,0 +50127,052+Wioska+barbarzy%C5%84ska,347,662,6354098,7080,0 +50128,005b,305,409,8259895,4943,7 +50129,%4008%40,405,326,699483429,6926,0 +50130,Psycha+Siada,339,649,8099868,9835,0 +50131,%3D0018%3D,389,307,698231772,9864,0 +50132,New+WorldA,288,540,849084005,5917,0 +50133,Wioska+barbarzy%C5%84ska,303,594,6180190,4652,0 +50134,%23K75+0006,521,716,699728159,6066,0 +50135,Z+04,384,312,6884492,3289,0 +50136,C0232,283,539,8841266,7498,0 +50137,wancki+i+gustlikk,504,279,7758085,9720,0 +50138,Wioska11,709,576,699266530,6753,0 +50139,Zaplecze+Deadshot,358,336,699796330,2765,0 +50140,028.+Falakro,713,543,1601917,8917,0 +50141,0109,369,680,7085510,10216,2 +50142,Bagno+25,477,721,848883684,7565,0 +50143,-03-,579,700,849032414,9472,0 +50145,.004.+Zanzibar,720,460,849095599,7732,0 +50146,3.Nottingham,549,713,698215322,3756,0 +50147,K33,310,389,699794765,3953,0 +50148,047+Wioska+barbarzy%C5%84ska,547,287,699854484,9835,0 +50149,062+invidia,540,713,849093426,5153,0 +50150,004,699,410,849085371,3953,0 +50151,Wioska+dzbanek54321,693,397,698187023,4472,0 +50152,037,655,352,9148043,7696,0 +50153,%23%23%23134%23%23%23,606,689,698285444,10495,0 +50154,Saran6,401,303,848937248,3322,0 +50155,Wioska+barbarzy%C5%84ska,278,490,699846892,1999,0 +50156,Taka.,485,721,848999671,5853,0 +50157,030.,467,719,849034882,10165,0 +50158,C0229,282,539,8841266,10362,3 +50159,X002,707,426,699722599,10485,0 +50160,C040,354,665,699383279,8478,0 +50161,040,667,647,2323859,1045,0 +50162,Z+05,384,313,6884492,6278,0 +50163,Wioska+barbarzy%C5%84ska,461,283,699863708,4180,0 +50164,krisa,304,397,849089601,5643,0 +50165,Wioska+barbarzy%C5%84ska,327,559,8004076,5176,0 +50166,Wioska+barbarzy%C5%84ska,548,712,699828442,7067,0 +50167,003.+Osada+koczownik%C3%B3w,675,374,2873154,10237,1 +50168,Wioska+krzysztof+wspania%C5%82y,675,371,6111938,4068,0 +50169,C033,369,676,699383279,9436,0 +50170,%230149+barbarzy%C5%84ska,474,282,1238300,7729,0 +50171,Wioska_10oo,647,663,6795280,3945,0 +50172,FAKE+OR+OFF,399,305,698231772,9819,0 +50173,MojeDnoToWaszSzczyt,490,283,9299539,4887,0 +50174,004+N,303,606,699356968,5892,0 +50175,006,441,707,849101309,1515,0 +50176,Wioska+barbarzy%C5%84ska,397,698,849014922,4775,0 +50177,MojeDnoToWaszSzczyt,489,283,9299539,6304,0 +50178,002,527,279,698736778,2600,0 +50179,...,338,357,699657450,1870,0 +50180,181+Katastrofa%2C+panie+rexanty+XD,715,545,698693697,3992,0 +50181,011,308,606,699356968,4676,0 +50182,Na+Kra%C5%84cu+%C5%9Awiata+023,646,338,9291984,4278,0 +50184,Psycha+Siada,337,646,8099868,10019,0 +50185,1v9+machine,389,639,699697558,10019,0 +50186,Piek%C5%82o+to+inni,633,328,848956765,5046,0 +50187,1.+Rivia,602,693,849102573,9590,0 +50188,Wioska+barbarzy%C5%84ska,575,704,7756002,8058,0 +50189,%3D082%3D+Jamestown,704,571,3781794,10580,0 +50190,0.01+Good+Night%21,460,707,699725436,9166,0 +50191,%5B0145%5D,456,283,8630972,9125,0 +50192,.achim.,480,284,6936607,7112,0 +50193,Wioska+barbarzy%C5%84ska,277,489,699846892,3862,0 +50194,073,717,509,7085502,6446,0 +50195,Wioska+barbarzy%C5%84ska,711,574,2453888,9094,0 +50196,FP037,471,714,699605333,5752,0 +50197,160...F,397,307,6920960,7021,0 +50198,002,288,467,698652171,9230,0 +50199,Wioska+barbarzy%C5%84ska,290,572,498483,3447,0 +50200,Lord+Arsey+KING,652,655,848956513,4694,0 +50201,Avanti%21,282,494,698625834,8341,0 +50202,115.+Dorona,640,599,8337151,8262,0 +50203,New+World,432,711,698152377,10295,0 +50204,o07,610,683,699189792,9745,0 +50205,pulapka+plemie,681,373,849105232,2265,0 +50206,Barba,322,633,698908184,9825,0 +50207,006,309,399,8724192,3560,0 +50209,018,711,565,7085502,9994,0 +50210,Wioska+barbarzy%C5%84ska,699,600,6921135,3703,0 +50211,%5B0268%5D,286,517,8630972,5354,0 +50212,Wioska+barbarzy%C5%84ska,526,713,7590135,6191,0 +50213,076,442,628,849084985,9668,0 +50214,New+WorldA,280,505,849084005,3704,0 +50216,Bigosowy1,679,370,849095800,10546,0 +50217,XDX,596,307,699098531,6620,0 +50218,Wioska+barbarzy%C5%84ska,399,310,698231772,5210,0 +50219,%3F%3F%3F%3F,478,293,698489071,9889,0 +50220,Z%C5%82oty+%C5%9Awit,581,298,699883079,8623,0 +50221,Psycha+Siada,335,650,8099868,7185,0 +50222,Z%C5%82oty+%C5%9Awit,582,302,699883079,8663,0 +50224,048,663,357,9148043,8312,9 +50225,Wioska+barbarzy%C5%84ska,322,366,0,5672,0 +50226,Prawie+jak+o%C5%9Bka,702,424,699785935,6066,0 +50227,%230297+LAROX,462,290,1238300,5466,0 +50228,Wioska+barbarzy%C5%84ska,713,496,699429153,5756,0 +50229,076,403,698,849099876,10495,0 +50231,W43,695,411,699524362,1951,0 +50233,Wioska+barbarzy%C5%84ska,315,627,698908184,5687,0 +50234,Wioska+juventino1988,360,668,699665031,150,0 +50235,.002.+Malediwy,717,456,849095599,6300,0 +50236,084,403,700,849099876,9948,0 +50237,005,295,579,698663855,10068,0 +50238,komandos48,653,656,7976264,8747,0 +50239,Szlachcic,364,330,698388578,6185,0 +50240,UltraInstynkt,615,315,699710633,10063,0 +50241,009+bymp,284,548,197581,1771,0 +50242,Komandos,649,666,7976264,10017,0 +50243,Wioska3,706,578,699266530,8589,0 +50245,Ubrudzona0,624,683,8607734,5885,0 +50246,Pocz%C4%85tek,299,585,7842579,9374,9 +50247,Doba,697,397,849088882,3817,0 +50248,...,339,359,699657450,8792,0 +50249,Wioska+KRIS+74+PL,526,720,6116940,3692,0 +50250,C092,362,668,699383279,9285,0 +50251,056+invidia,548,709,849093426,7007,0 +50252,PP020+Liberty+Bay,719,491,8096537,9741,0 +50253,001,663,643,2323859,9783,0 +50254,044.,457,715,849034882,10838,0 +50255,050%7C%7C+Aquila,459,717,849035525,5247,0 +50256,Saran3,409,301,848937248,3598,0 +50257,0138,367,673,7085510,3042,0 +50258,C013,537,717,698599365,6957,0 +50259,Lord+Arsey+KING,654,659,848956513,5041,0 +50260,Wioska+barbarzy%C5%84ska,326,633,698908184,5492,0 +50261,005,654,345,848889850,4533,0 +50262,Adamo+1,581,699,849096768,9382,0 +50263,041%7C%7C+Bootes,463,712,849035525,3182,0 +50264,Magiczne+koszary,480,644,848935389,9809,0 +50265,074,718,513,7085502,7769,0 +50266,Wioska+barbarzy%C5%84ska,321,628,698908184,7427,0 +50267,Market,379,684,849105463,963,0 +50268,Wioska+mateuszek15517,710,557,7914131,5067,0 +50269,077.+Alalea,691,597,8337151,8241,0 +50270,KONFA+TO+MARKA%2C+NARKA,289,458,698152377,5259,0 +50271,KONFA+TO+MARKA%2C+NARKA,290,436,698152377,10297,0 +50272,%5B812%5D+Odludzie,713,432,848985692,6792,0 +50273,Mm02,631,326,698442418,5271,0 +50274,050+sebaseba1991,618,687,699346280,10160,0 +50275,MERHET,586,705,698215322,9953,0 +50276,--020--,574,296,542253,7626,0 +50277,004,653,338,848889850,5673,0 +50278,053,677,375,698635863,7073,0 +50279,Osada+koczownik%C3%B3w,425,291,698231772,7089,7 +50280,-+126+-,546,605,849018239,7148,0 +50281,02.ETH,712,566,698905177,12154,0 +50282,156,389,692,849099876,4775,0 +50283,Wioska+barbarzy%C5%84ska,526,285,699818726,6045,0 +50284,Kurnik,452,712,699603116,6198,0 +50286,003%3AOsada+koczownik%C3%B3w,372,328,8772425,10615,4 +50287,Old+Town,701,424,699785935,5549,0 +50288,Wioska+barbarzy%C5%84ska,325,630,698908184,9808,0 +50290,K42+ADAMUS+003,287,432,6212605,9563,0 +50291,KONFA+TO+MARKA%2C+NARKA,294,437,698152377,7332,3 +50292,Wioska+barbarzy%C5%84ska,301,588,698663855,4345,0 +50293,009,298,590,698663855,4098,0 +50294,Lord+Arsey+KING,656,652,848956513,8913,0 +50295,%23%23%23135%23%23%23,611,690,698285444,10495,0 +50296,027,529,720,698996782,4634,0 +50297,017,290,464,2418364,3094,0 +50299,094,401,692,849099876,10495,0 +50302,kww02,719,543,8976313,5415,0 +50303,Lord+Arsey+KING,653,653,848956513,8758,7 +50304,Avanti%21,286,472,698625834,6615,0 +50307,%5B0255%5D,281,513,8630972,5729,0 +50308,B-002,308,385,1267913,4255,0 +50309,KONFA+TO+MARKA%2C+NARKA,294,445,698152377,10290,0 +50310,Twierdza+%28WZ%29,376,534,0,6873,32 +50311,MojeDnoToWaszSzczyt,486,287,9299539,6336,0 +50312,184,410,699,849099876,8881,0 +50313,KONFA+TO+MARKA%2C+NARKA,290,435,698152377,10290,0 +50314,Taran,310,616,6180190,7949,0 +50315,North+026,496,278,849064752,8182,0 +50316,035+Lilycove+City,722,493,699441366,5200,0 +50318,Z%C5%82oty+%C5%9Awit,579,295,699883079,8550,0 +50319,025+Oldale+Town,713,483,699441366,11109,0 +50320,C0278,284,543,8841266,4414,0 +50321,010+Twierdza,628,681,849104328,10019,0 +50322,%C5%9Aciernisko,301,401,849076515,1055,0 +50323,Hillegom,281,520,699830255,5806,0 +50324,011,317,371,7386358,4896,2 +50325,Wioska+Tomtrik,326,635,698908184,10358,0 +50327,Wiosk,448,716,6955809,4982,0 +50328,Wioska+barbarzy%C5%84ska,694,613,3589487,2441,0 +50329,181,722,524,8541236,9488,0 +50330,03+Punks+Not+Dead,716,452,849101845,9447,1 +50331,065.,718,461,849094609,3913,0 +50332,Taka.,483,722,848999671,9287,0 +50333,Cisza,288,553,698769107,7190,0 +50334,Wioska+3,655,346,849101945,6506,0 +50335,Mniejsze+z%C5%82o+0088,312,381,699794765,5545,0 +50336,wancki+i+gustlikk,504,280,7758085,9737,0 +50337,Wioska+barbarzy%C5%84ska,655,342,849101945,187,0 +50338,Zaplecze+Barba+031,350,336,699796330,4809,0 +50339,HOLENDER+4,320,623,698908184,5434,0 +50340,OFF,651,656,849014413,10440,0 +50341,305,469,282,7271812,9414,0 +50342,Wioska+barbarzy%C5%84ska,720,476,113796,1618,0 +50343,009,293,426,6131106,5625,0 +50344,086,719,516,7085502,6271,0 +50345,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,550,707,7589468,8817,0 +50346,Wioska+mateusz16180,370,674,6554011,101,0 +50347,ElMajkelos+VIII,421,301,849085160,4872,0 +50348,Wioska+barbarzy%C5%84ska,591,307,698350371,2619,0 +50349,3.Leeds,545,717,698215322,7015,0 +50350,003,654,343,848889850,3147,0 +50352,%23K75+0020,522,718,699728159,4794,0 +50353,B006,620,323,8740199,6257,0 +50354,CastAway+%23004,704,585,9314079,10054,0 +50355,034.+Istota+wody,501,717,848928624,2621,0 +50356,Wioska+barbarzy%C5%84ska,688,390,1715091,4353,0 +50357,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,550,715,699828442,9744,0 +50358,0044,464,710,699280514,2820,0 +50359,Z001,500,723,8153179,8035,0 +50360,Osada+koczownik%C3%B3w,702,409,8459255,10178,3 +50361,0447,579,622,698659980,9740,0 +50362,KONFA+TO+MARKA%2C+NARKA,287,462,698152377,8319,0 +50363,047,633,670,699695167,3433,0 +50364,%5B814%5D+Odludzie,707,443,848985692,7360,0 +50365,038+Wioska+barbarzy%C5%84ska,608,684,699346280,8731,0 +50366,Wioska13,706,582,699266530,7066,0 +50367,009+-+Budowanko%21,493,723,7540891,7587,0 +50368,Wioska+barbarzy%C5%84ska,715,465,113796,1221,0 +50369,085.Stradi,430,298,698365960,10072,0 +50370,015,287,556,849098688,8988,6 +50371,Lord+Arsey+KING,659,651,848956513,6651,0 +50372,.achim.,486,282,6936607,6830,5 +50374,Wioska+barbarzy%C5%84ska,422,709,849100814,1773,0 +50375,KR%C3%93L+PAPI+WIELKI,689,530,698191218,6314,0 +50376,FAKE+OR+OFF,405,307,698231772,9822,0 +50377,Szlachcic,357,341,698388578,5789,0 +50378,Wyspa+034,290,563,225023,2156,0 +50379,KR%C3%93L+PAPI+WIELKI,649,664,698191218,8022,0 +50380,Wioska+barbarzy%C5%84ska,717,461,113796,1507,0 +50381,Wioska+jajoasia,632,326,8720321,782,0 +50382,005+G%C4%85sawa,286,527,9235561,4801,0 +50383,Wioska+barbarzy%C5%84ska,279,482,699846892,2373,0 +50384,1x2+Wioska+barbarzy%C5%84ska,569,712,849055425,7013,0 +50385,%230075,571,710,1536231,4310,0 +50386,%3D078%3D+BORSUK+MEGA,706,566,3781794,7963,0 +50387,ZZZ,459,714,8980651,6279,0 +50388,Wioseczka0,622,683,8607734,5731,0 +50389,Incursio,697,402,699488108,9979,0 +50390,Z%C5%82oty+%C5%9Awit,581,293,699883079,7139,0 +50392,19.+Brokilon,720,538,8976313,9642,0 +50393,Wioska+barbarzy%C5%84ska,518,283,8240677,7232,0 +50394,EO+EO,294,514,699697558,10083,0 +50395,D009,559,291,699299123,4305,0 +50397,Kurnik,463,713,699603116,10064,0 +50398,K35+-+%5B003%5D+Before+Land,590,301,699088769,9783,1 +50399,Wioska+majku+2,416,704,9195661,3407,0 +50400,0072,701,413,698416970,5466,0 +50401,EO+EO,285,515,699697558,10495,0 +50402,%5B802%5D+Odludzie,713,434,848985692,9036,0 +50403,MojeDnoToWaszSzczyt,500,284,9299539,9955,0 +50404,Pocz%C4%85tek,298,584,7842579,2505,0 +50405,037+Wioska+barbarzy%C5%84ska,544,280,699854484,9835,0 +50406,FAKE+OR+OFF,434,288,698231772,10390,0 +50407,C.039,716,479,9188016,4678,0 +50408,014,305,611,699356968,3601,0 +50409,095.Stradi,440,289,698365960,9738,0 +50410,C0279,283,543,8841266,4192,0 +50411,ZZZ+.%3A%3A.+cinek3456%2F01,585,701,33900,9984,0 +50412,Wyspa+014,292,559,225023,2746,0 +50413,Szlachcic,364,336,698388578,6606,0 +50414,C0162,323,538,8841266,9487,0 +50415,Uklejka,331,546,699265922,7608,0 +50416,061,403,697,849099876,10495,0 +50417,Taran,311,607,6180190,7079,0 +50418,003+czekam+na+odp,535,714,6116940,4720,0 +50419,0008+Wioska+kosiarziii,495,715,699656989,9933,0 +50420,KR%C3%93L+PAPI+WIELKI,719,527,698191218,6677,0 +50421,100.+Bana,625,477,8337151,8713,0 +50422,Wioska+0006,342,652,9186126,10311,0 +50423,025,688,618,699099811,3674,0 +50424,Wioska+barbarzy%C5%84ska,724,504,6510480,5606,0 +50425,001,534,719,698996782,10311,0 +50426,Tomekrol+3,698,588,849096334,5890,0 +50427,.achim.,484,278,6936607,5140,0 +50428,Wioska+barbarzy%C5%84ska,717,494,699429153,9110,0 +50429,003,590,703,849097370,4658,0 +50430,036+Osada+koczownik%C3%B3w,606,688,699346280,10053,7 +50431,Podbitek,690,605,849101652,8011,0 +50432,Ave+Why%21,506,713,699121671,2839,0 +50433,002,466,712,699725436,9555,5 +50434,Wioska+barbarzy%C5%84ska,711,453,699628084,7109,0 +50435,%5B0256%5D,284,509,8630972,5856,0 +50436,-12-,580,700,849032414,8982,0 +50437,Wioska+barbarzy%C5%84ska,321,629,698908184,7429,0 +50438,035,401,700,849099876,10495,0 +50439,New+World,422,700,698152377,10291,0 +50440,%5B806%5D+Odludzie,712,437,848985692,8334,0 +50441,komandos,619,678,7976264,10032,2 +50442,013,306,610,699356968,9852,0 +50443,MojeDnoToWaszSzczyt,492,285,9299539,9850,0 +50444,_PUSTA,655,603,698768565,7150,0 +50445,Z%C5%82oty+%C5%9Awit,594,297,699883079,9918,0 +50446,Wioska+barbarzy%C5%84ska,576,586,6818593,9638,0 +50447,O032,333,637,272173,9907,0 +50448,Gran+Canaria,372,683,947564,3840,0 +50449,Kurnik,448,713,699603116,1972,0 +50450,wioska,637,345,9291984,6936,0 +50451,K42+ADAMUS+002,287,431,6212605,9172,0 +50452,WOLA0002,680,369,6956104,5955,0 +50453,Wioska+barbarzy%C5%84ska,650,338,9291984,4149,0 +50454,010,659,352,849020094,3579,0 +50456,003.+Capricciosa,322,381,849102092,3675,0 +50457,001,696,404,7409475,12154,0 +50458,bnnnn,278,471,848981726,2023,0 +50459,Brak+nazwy,357,335,698906190,12154,0 +50460,Wioska+barbarzy%C5%84ska,669,370,699580120,2590,0 +50461,Kurnik,450,713,699603116,8162,0 +50462,HWILA+%2F1%2F,629,319,849006385,6471,0 +50463,FP036,473,716,699605333,5751,0 +50464,Wioska+barbarzy%C5%84ska,690,604,3589487,2246,0 +50465,Trollsonix,335,345,849103148,8597,0 +50466,Zaplecze+Barba+025,351,333,699796330,6316,0 +50467,BRICKLEBERRY,526,282,7758085,10375,5 +50468,008+-+Budowanko%21,492,720,7540891,6614,0 +50469,%3D114%3D+Acoma+Pueblo,705,573,3781794,4107,0 +50470,Wioska+barbarzy%C5%84ska,709,448,699628084,6678,0 +50471,Wioska+barbarzy%C5%84ska,617,679,6818593,4383,0 +50472,Wioska+Szaniec,515,721,698934729,2199,0 +50473,Kurnik,468,712,699603116,10252,0 +50474,Wioska+Bochun10,337,494,7449254,11130,0 +50475,Z%C5%82oty+%C5%9Awit,597,299,699883079,9629,0 +50477,C067,359,663,699383279,4941,0 +50478,%2A004%2A,686,617,1205898,8994,0 +50479,komandos,667,650,7976264,5530,0 +50480,W44,698,411,699524362,1304,0 +50481,North+K25,530,279,699146580,2702,0 +50483,Wioska+barbarzy%C5%84ska,682,383,8675636,8714,0 +50484,W45,688,391,699524362,2139,0 +50485,o008,611,685,699189792,9744,0 +50486,017,306,608,699356968,10484,2 +50488,Wioska+barbarzy%C5%84ska,714,498,699429153,7397,0 +50489,187...Segador,431,297,6920960,10787,0 +50490,021,563,642,699828685,9976,0 +50491,Wioska+barbarzy%C5%84ska,421,292,698231772,5961,0 +50492,303,471,281,7271812,7377,5 +50493,HWILA+%5B3%5D,629,318,849006385,4420,0 +50494,Wioska+barbarzy%C5%84ska,319,628,698908184,5411,0 +50495,308,448,284,7271812,6309,0 +50496,011,663,641,2323859,2745,0 +50497,Wioska+Daria+201,535,289,3027589,5935,0 +50498,Avanti%21,284,484,698625834,6455,0 +50499,New+WorldA,280,508,849084005,3918,0 +50500,EO+EO,283,501,699697558,10019,0 +50501,xxx,538,716,873575,8782,0 +50502,Wioska+barbarzy%C5%84ska,642,670,848909464,5084,0 +50503,Didek,685,583,849070946,10475,0 +50504,Wioska+4,652,350,849101945,3899,0 +50505,1v9+machine,384,645,699697558,10019,0 +50506,014,525,718,698996782,6801,0 +50507,Wioska+Adamek95,375,683,849097837,8944,0 +50508,Wioska+barbarzy%C5%84ska,709,453,699628084,8496,0 +50509,Osada+11,700,423,8675636,10845,0 +50510,023+A,685,616,699099811,3479,0 +50511,KONFA+TO+MARKA%2C+NARKA,291,443,698152377,10290,0 +50512,003+Eudona,672,635,849102108,8522,6 +50513,074,633,329,2502956,3969,0 +50514,005,526,281,698736778,1932,0 +50515,Wioska+pinokio,433,714,849097373,3375,0 +50516,Taran,313,616,6180190,9348,0 +50517,016+Osada+koczownik%C3%B3w,545,285,699854484,10068,8 +50520,14+W%C5%81AM,718,468,849101845,9660,0 +50521,MojeDnoToWaszSzczyt,510,276,9299539,9824,0 +50522,Wioska+barbarzy%C5%84ska,375,325,3698627,9006,0 +50524,Avanti%21,279,470,698625834,3356,0 +50525,No+Way,350,462,6258092,6729,0 +50526,0007,576,709,698723158,6115,0 +50527,B17,646,446,849093742,7739,0 +50528,%23%23%23136%23%23%23,595,695,698285444,10495,0 +50529,002,406,304,9283775,5065,0 +50530,--028--,571,288,542253,6595,0 +50531,Wioska+barbarzy%C5%84ska,688,608,3589487,1188,0 +50532,MojeDnoToWaszSzczyt,497,280,9299539,9966,0 +50533,064+invidia,542,712,849093426,6236,0 +50534,028,533,671,2293376,9447,0 +50535,Zachodnia+Stra%C5%BCnica,704,437,849101378,7062,0 +50536,P%C3%B3%C5%82nocny+Bagdad,620,316,8847546,8971,0 +50537,082,717,505,7085502,7156,0 +50538,0082,692,384,698416970,2829,0 +50539,Piek%C5%82o+to+inni,638,328,848956765,5645,0 +50540,Lord+Arsey+KING,655,649,848956513,9014,0 +50541,qqqqq3,284,522,849084005,3233,0 +50542,014,722,498,849091105,10160,1 +50543,0009+Marysin,496,722,699656989,9820,0 +50544,%5B0257%5D,280,513,8630972,5806,0 +50545,X010,710,422,699722599,6634,0 +50546,C039,355,669,699383279,7812,0 +50547,XDX,612,314,699098531,7002,0 +50548,Trzebiatkowa,461,289,849101116,2785,0 +50549,LENI%2A%2A%2A,700,415,849101881,6494,0 +50550,Flange+9000,354,658,849092685,6127,0 +50552,023.+elli38,685,375,2873154,6718,0 +50553,Sernik+z+Andzynkami,714,507,699126484,10107,4 +50554,Bagno+44,476,723,848883684,5975,0 +50555,Wioska+barbarzy%C5%84ska,705,422,848902592,4597,0 +50556,Wioska+barbarzy%C5%84ska+017,386,308,849068662,6328,0 +50557,.achim.,535,396,6936607,9382,0 +50558,New+WorldA,288,534,849084005,1997,0 +50559,%5B0164%5D,458,285,8630972,8105,0 +50560,Wioska+barbarzy%C5%84ska,387,315,699660539,3299,0 +50561,Wioska+barbarzy%C5%84ska,545,710,7581876,2823,0 +50562,Zzz+01+jem+%C5%9Bniadanie,295,570,849084740,4635,0 +50563,Wioska+barbarzy%C5%84ska,304,595,6180190,3241,0 +50564,Wioska+MrPaullus,529,288,699818726,8968,0 +50565,XDX,599,309,699098531,5717,0 +50566,Wancki,526,280,7758085,9899,4 +50567,wy...m,598,700,699828685,4742,0 +50568,Taran,317,624,6180190,7080,0 +50569,2.+Ellander,603,693,849102573,6543,0 +50570,komandos48,640,666,7976264,9802,0 +50571,Wioska+barbarzy%C5%84ska,724,500,6510480,4135,0 +50572,Wioska+Pracz+9,311,620,8916982,2435,0 +50573,Flap,601,303,699098531,7429,0 +50574,...,337,362,699657450,2432,0 +50575,%5B0152%5D,280,497,8630972,8692,0 +50576,054,717,513,699413040,10318,1 +50577,Taran,309,615,6180190,8796,0 +50578,Wioska+barbarzy%C5%84ska,697,416,8675636,9017,0 +50579,sh04,513,286,7064954,5500,0 +50580,001,611,308,699117992,9489,0 +50581,C094,359,666,699383279,7406,0 +50582,Wioska-009-,634,332,7675610,4051,0 +50583,Bagno+30,479,721,848883684,7253,0 +50584,Psycha+Siada,335,644,8099868,8180,0 +50585,089.+ALFI,470,575,8539216,494,0 +50586,StatePchelka,283,458,698652171,7040,0 +50587,Albus+Lepus,524,722,849102336,8693,0 +50588,Piek%C5%82o+to+inni,642,337,848956765,7243,0 +50589,06+wioska,633,323,6517826,2536,0 +50590,001,290,431,6131106,7626,0 +50591,112,593,670,849097799,5719,0 +50592,KR%C3%93L+PAPI+WIELKI,718,524,698191218,6305,0 +50594,%C5%BBUBEREK+007,614,693,33900,6409,0 +50595,181,581,619,8627359,9337,0 +50597,048,629,673,699695167,3201,0 +50598,QQQQ,283,522,849047233,4790,0 +50599,009,606,304,699117992,6326,0 +50600,001f,299,412,8259895,7717,0 +50601,%5B010%5D,456,713,849089459,6953,0 +50602,012,651,339,849020094,480,2 +50603,--043--,577,291,542253,9783,0 +50604,005,299,587,698663855,8598,0 +50605,Jehu_Kingdom_61,628,480,8785314,2784,0 +50606,Wioska+barbarzy%C5%84ska,705,421,848902592,4255,0 +50607,03.XRP,713,561,698905177,12154,0 +50608,Klaudek25,633,361,849092309,951,0 +50609,070,399,692,849099876,10026,0 +50610,KONFA+TO+MARKA%2C+NARKA,291,434,698152377,6836,0 +50612,Wioska+barbarzy%C5%84ska,416,295,698231772,5638,0 +50614,Yoto0,621,686,8607734,4314,0 +50615,OFF,655,661,849014413,10343,4 +50619,B007,627,327,8740199,9740,0 +50621,012+pogromca+barbak%C3%B3w,532,714,6116940,5566,0 +50623,Wioska+barbarzy%C5%84ska,398,306,698231772,5128,0 +50624,175,381,679,849099876,7612,0 +50625,%3D094%3D+Wioska+barbarzy%C5%84ska,701,598,3781794,3430,0 +50626,008,616,309,699117992,5034,0 +50627,Z%C5%82oty+%C5%9Awit,594,303,699883079,10405,0 +50628,Wioska+barbarzy%C5%84ska,431,290,698231772,8060,0 +50629,Wioska+barbarzy%C5%84ska,338,656,6910361,699,0 +50630,Wioska001,346,344,699711926,9724,0 +50631,Bremervoord,555,292,849054951,9829,0 +50632,Sekunda,705,426,699785935,5689,0 +50633,Avanti%21,287,480,698625834,6532,0 +50634,121,392,697,849099876,8335,0 +50635,o08,613,683,699189792,9547,0 +50636,rafisonik11,516,721,849101108,5454,0 +50637,Z%C5%82oty+%C5%9Awit,605,307,699883079,10634,0 +50638,Psycha+Siada,339,646,8099868,7848,0 +50639,Lord+Arsey+KING,658,650,848956513,7116,0 +50640,Bagno+10,484,718,848883684,9401,0 +50641,Wioska+barbarzy%C5%84ska,324,631,698908184,9742,0 +50642,163...I,391,315,6920960,5617,0 +50643,Wyspa+019,298,571,225023,4318,0 +50644,061+invidia,541,714,849093426,6079,0 +50645,New+World,420,710,698152377,9354,0 +50646,AAA,541,288,1006847,9356,0 +50648,Wioska+barbarzy%C5%84ska,391,310,698231772,3907,0 +50649,Wioska+barbarzy%C5%84ska+013,386,310,849068662,4840,0 +50650,009+Twierdza,631,682,849104328,10019,0 +50651,Betelgeza,284,511,849101647,6157,0 +50652,%5B801%5D+Odludzie,709,432,848985692,8578,0 +50653,016.+Wioska+barbarzy%C5%84ska,683,376,2873154,8032,0 +50654,P%C3%B3%C5%82nocny+Bagdad,617,316,8847546,9835,0 +50655,%5B0258%5D,280,512,8630972,5762,0 +50656,elisea,644,336,849048734,2327,0 +50657,034.+Hermon,711,559,1601917,7350,0 +50658,bucksbarzy%C5%84skamiiiru,325,368,848955783,4308,0 +50659,Wioska+Aga22011993,331,639,698908184,6677,0 +50660,003+-+Budowanko%21,491,718,7540891,10207,0 +50661,North+014,504,282,849064752,10126,0 +50662,New+World,436,713,698152377,7459,0 +50664,Wyspa+004,292,562,225023,10495,0 +50666,Wioska+barbarzy%C5%84ska,411,298,698231772,7292,0 +50667,BETI+014,456,566,8539216,2033,0 +50668,--021--,575,294,542253,6916,0 +50669,K42+ADAMUS+001,287,430,6212605,9326,0 +50670,%23K75+0032,520,721,699728159,5868,0 +50671,Wioska+barbarzy%C5%84ska,564,707,6870350,3002,0 +50672,XDX,613,312,699098531,6722,0 +50673,Komandos,646,664,7976264,5617,0 +50674,Mniejsze+z%C5%82o+0084,316,389,699794765,5160,0 +50676,Bagno+16,485,717,848883684,8595,0 +50677,181.01,365,674,848931321,10986,0 +50678,%3D095%3D+Wioska+barbarzy%C5%84ska,699,596,3781794,5573,0 +50679,3.Newcastle+upon+Tyne,549,714,698215322,5621,0 +50680,Wioska+barbarzy%C5%84ska,576,705,7756002,6422,0 +50681,Na+Kra%C5%84cu+%C5%9Awiata+005,643,340,9291984,10252,0 +50682,117,394,693,849099876,8138,0 +50684,Barba,323,635,698908184,8292,0 +50685,%5B177%5D,699,594,8000875,4988,0 +50686,KONFA+TO+MARKA%2C+NARKA,285,452,698152377,9364,0 +50687,Wioska+Misiaczka69,551,709,849085293,3621,0 +50688,Wioska+barbarzy%C5%84ska,708,420,848902592,4639,0 +50689,Wancki,515,286,7758085,9861,0 +50690,Cisza,288,555,698769107,2520,0 +50691,D026,565,286,699299123,7375,0 +50692,%3DHB%3D,699,418,849101881,4441,0 +50694,Bagno+21,483,718,848883684,7895,0 +50695,%23%23%23137%23%23%23,607,689,698285444,10495,0 +50696,029,576,386,1424656,10160,0 +50697,Wioska+x,658,353,699875213,2284,0 +50698,Podworko,659,355,848924219,2899,5 +50699,Wioska,712,527,699034094,1334,0 +50700,036%7C%7C+Coma+Berenices,457,714,849035525,3500,0 +50701,Zaplecze+Barba+021,370,324,699796330,6805,0 +50702,0010,576,708,698723158,6362,0 +50703,Wioska+7,652,348,849101945,4226,0 +50705,014,294,427,6131106,4418,0 +50706,181,673,357,609384,9544,0 +50707,AAA,312,613,6180190,8891,0 +50708,Parking3,631,681,6528152,8967,0 +50709,%230252+Taki+Pan+dar,468,288,1238300,5571,0 +50710,Wioska+barbarzy%C5%84ska,367,320,3484132,5286,0 +50711,Wioska+barbarzy%C5%84ska,291,574,498483,3444,0 +50712,Didek,676,566,849070946,9855,0 +50713,Wioska+barbarzy%C5%84ska,524,284,699818726,2127,0 +50714,004,324,377,7386358,6280,0 +50715,Zeta+Reticuli+O,416,326,699323302,9245,0 +50716,FAKE+OR+OFF,409,307,698231772,9817,0 +50717,001,282,463,698652171,10559,0 +50718,097,543,503,699351301,9918,0 +50719,082+Wioska+barbarzy%C5%84ska,537,287,699854484,8783,0 +50720,11+HerrMrozio..,294,443,849018442,10287,0 +50721,Wioska3+barbarzy%C5%84ska,703,408,8459255,5132,0 +50722,Wioska+barbarzy%C5%84ska,565,288,849054951,7168,5 +50723,013,664,642,2323859,3830,0 +50725,Wioska+barbarzy%C5%84ska+II,277,528,849047233,5812,0 +50726,Wioska+barbarzy%C5%84ska,423,299,698231772,8351,0 +50727,P%C3%B3%C5%82nocny+Bagdad,618,316,8847546,9835,0 +50728,MaraczxD,354,333,698906190,12154,0 +50729,049,633,672,699695167,3557,0 +50730,K33,313,387,699794765,1599,0 +50731,Szlachcic,362,334,698388578,5233,0 +50732,Osada+koczownik%C3%B3w,722,529,848946700,9932,1 +50734,Kurnik,442,713,699603116,5677,0 +50735,A-3,672,357,849095509,3639,0 +50736,087.Stradi,435,296,698365960,9563,0 +50737,Wioska+-+001+-,535,279,848982634,3688,0 +50738,Wioska+barbarzy%C5%84ska,721,460,849095599,4236,0 +50739,1x3+Wioska+barbarzy%C5%84ska,570,713,849055425,6687,0 +50740,0136,366,676,7085510,5608,0 +50741,KUKA,285,436,6127190,4851,0 +50742,092+Wioska+barbarzy%C5%84ska,542,290,699854484,6103,0 +50743,%5B0259%5D,284,512,8630972,5546,0 +50744,Harsz,697,398,699488108,10624,0 +50745,Wioska+barbarzy%C5%84ska,276,490,699846892,3761,0 +50746,038+Wioska+barbarzy%C5%84ska,542,285,699854484,9899,0 +50747,%3D029%3D+Wioska+barbarzy%C5%84ska,707,565,3781794,9626,0 +50748,040+Wioska+barbarzy%C5%84ska,604,690,699346280,8142,0 +50749,064,715,511,7085502,7256,0 +50750,FAKE+OR+OFF,409,303,698231772,9812,4 +50751,III.+Sucha+Psina,366,325,849101893,4795,0 +50752,Zakazany+las,485,723,848999671,1397,0 +50753,Wioska+barbarzy%C5%84ska,431,286,698231772,9710,0 +50754,KONFA+TO+MARKA%2C+NARKA,291,435,698152377,5487,0 +50755,A%23042,721,494,2065730,7388,0 +50756,Barba,322,637,698908184,9825,0 +50757,113,691,615,3589487,5617,0 +50758,%230304+kawskole,443,283,1238300,3942,5 +50759,New+WorldA,284,538,849084005,2678,0 +50760,Chcia%C5%82abym,351,334,698906190,2361,0 +50761,003,695,403,7409475,4382,0 +50762,Avanti%21,285,486,698625834,5440,0 +50763,Wioska+barbarzy%C5%84ska,427,292,698231772,6443,0 +50764,Z%C5%82oty+%C5%9Awit,587,295,699883079,9812,0 +50765,MojeDnoToWaszSzczyt,487,284,9299539,5727,0 +50766,%3A+%28,280,487,699846892,6835,0 +50767,Wioska+barbarzy%C5%84ska,365,326,3698627,6959,0 +50768,Wioska+barbarzy%C5%84ska,496,717,699429335,7826,0 +50769,018,716,500,849091105,10595,0 +50770,...%3A%3A181+07%3A%3A...,277,515,699641777,4061,0 +50771,Wioska+barbarzy%C5%84ska,315,626,698908184,6395,0 +50772,0130,387,688,7085510,4867,0 +50773,KR%C3%93L+PAPI+WIELKI,721,528,698191218,7998,0 +50774,Wioska+barbarzy%C5%84ska,397,302,698231772,5167,0 +50775,Wioska1.,706,577,699266530,9302,0 +50776,Wioska+5,542,284,7427966,3102,0 +50777,SPEC+HOME,543,298,699569800,9189,0 +50778,%23297+C,519,724,9037756,4982,0 +50779,%23K75+0004,520,714,699728159,7031,0 +50780,Taran,315,619,6180190,9956,5 +50781,Pocz%C4%85tek,299,580,7842579,5721,0 +50782,Wioska+VestoreI,365,677,9292037,1581,0 +50783,XDX,609,313,699098531,8510,0 +50784,%230242+colt9,436,286,1238300,5415,0 +50785,%C5%9Aw181%2A001+robi%C4%99+hetmana+.,660,344,959179,7348,0 +50786,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,540,719,8201460,10237,0 +50787,MojeDnoToWaszSzczyt,493,276,9299539,9984,0 +50788,Motorola+01,365,321,698806018,9685,0 +50789,%232+Wioska+barbarzy%C5%84ska,633,320,849099517,8686,0 +50790,Mamtamtam,285,458,698652171,7444,0 +50791,%2A027%2A,689,614,1205898,3183,0 +50792,Wioska+-+003+-,539,280,848982634,1991,0 +50793,%3D083%3D+Jersey+City,704,570,3781794,7191,0 +50794,003,405,304,9283775,4233,0 +50795,05+barbarzy%C5%84ska.,285,443,849018442,8807,0 +50796,A002,334,649,849105102,8124,0 +50797,Psycha+Siada,330,644,8099868,9835,0 +50798,KONFA+TO+MARKA%2C+NARKA,286,437,698152377,9182,0 +50799,Wioska+barbarzy%C5%84ska,711,426,699722599,4279,0 +50800,Wioska+barbarzy%C5%84ska,400,360,8419570,10178,0 +50801,ZPP+Vill,724,487,8096537,5366,0 +50802,KONFA+TO+MARKA%2C+NARKA,290,438,698152377,10311,0 +50803,Osada+koczownik%C3%B3w,694,403,699488108,9963,7 +50805,Wioska+010,693,595,7999103,3763,0 +50806,3.Cambridge,546,717,698215322,8067,9 +50807,32.+Gemmera,721,540,8976313,4320,0 +50808,Taka.,483,724,848999671,7356,0 +50809,021,716,486,849091105,10147,1 +50810,%2A019%2A,686,618,1205898,3886,0 +50811,Wioska18,704,575,699266530,3040,0 +50812,004,610,307,699117992,6999,0 +50813,t016,666,351,2262902,7567,0 +50814,018.+Distaghil+Sar,711,550,1601917,10495,0 +50815,011,524,716,698996782,3841,0 +50816,KR%C3%93L+PAPI+WIELKI,722,523,698191218,6325,0 +50817,Wioska+barbarzy%C5%84ska,400,467,699523631,6010,0 +50818,Wioska+barbarzy%C5%84ska,390,311,699660539,4060,0 +50819,%5B0233%5D,286,495,8630972,4012,0 +50820,EKOLERNA,673,358,3957237,10583,0 +50821,...,336,353,699657450,9893,0 +50822,--015--,574,297,542253,7194,0 +50823,KONFA+TO+MARKA%2C+NARKA,285,441,698152377,10161,0 +50824,MJ43,684,378,8669398,6215,0 +50825,Lord+Arsey+KING,654,656,848956513,10285,5 +50826,Rohan,702,420,849101881,8191,0 +50827,ElMajkelos+IX,412,303,849085160,3536,0 +50828,Wioska+barbarzy%C5%84ska,361,668,0,197,0 +50829,Wioska+barbarzy%C5%84ska,277,483,699846892,2514,0 +50831,061+Wioska+barbarzy%C5%84ska,344,660,6354098,6067,0 +50832,003+AAAAA,281,549,197581,6266,0 +50833,KONFA+TO+MARKA%2C+NARKA,285,440,698152377,10291,0 +50834,New+WorldA,280,507,849084005,5974,0 +50835,078,398,692,849099876,10025,0 +50836,107,410,695,849099876,8840,0 +50837,Lord+Arsey+KING,654,658,848956513,9532,0 +50838,051+Wioska+barbarzy%C5%84ska,346,662,6354098,7125,0 +50839,Wioska+barbarzy%C5%84ska+002,379,318,849068662,10453,0 +50840,New+World,439,712,698152377,8619,0 +50841,.achim.,570,286,6936607,6893,0 +50843,XDX,608,308,699098531,10692,0 +50844,%5B0234%5D,284,502,8630972,5928,0 +50845,Samob%C3%B3j,308,396,849076515,2404,0 +50847,New+World,418,705,698152377,10294,0 +50848,%230288+kaban1988,460,288,1238300,10160,0 +50849,Wioska+barbarzy%C5%84ska,511,720,849051976,5789,0 +50850,Granit+19,360,328,698906190,11691,0 +50851,Klatka4,622,679,6528152,4473,3 +50852,North+K25,525,281,699146580,3594,0 +50853,Wioska+%5B2%5D,723,510,699858313,3228,0 +50854,012+Krayana,673,642,849102108,3945,0 +50855,Kiedy%C5%9B+Wielki+Wojownik,332,358,8632462,6904,0 +50856,110.Stradi,438,295,698365960,8729,0 +50857,PIROTECHNIK+007,348,341,849101083,3699,0 +50858,056KP,489,277,849063849,10557,0 +50859,W46,686,390,699524362,2637,0 +50860,KR%C3%93L+PAPI+WIELKI,659,631,698191218,10317,0 +50861,0038,330,366,2321390,1669,0 +50863,1.+Vhagar,298,583,849089499,7891,0 +50864,Wioska+barbarzy%C5%84ska,712,569,2453888,9885,0 +50865,003,468,717,8966820,9603,5 +50866,003,657,346,849020094,8528,0 +50867,Wioska+barbarzy%C5%84ska,435,292,698231772,8578,0 +50868,%230144+deleted,474,285,1238300,9535,0 +50869,Wioska+barbarzy%C5%84ska,301,420,699856962,7653,0 +50870,XDX,613,308,699098531,6458,0 +50871,2+Nowy+vequs,341,351,7462660,5808,0 +50872,nysa,480,724,848999671,1822,0 +50873,008,301,592,698663855,4794,0 +50874,KONFA+TO+MARKA%2C+NARKA,288,448,698152377,7190,0 +50875,MojeDnoToWaszSzczyt,495,284,9299539,9949,0 +50876,FAKE+OR+OFF,412,299,698231772,9812,9 +50877,RPM+CUSTOM,550,286,849102094,7411,0 +50878,%230150+barbarzy%C5%84ska,481,278,1238300,5499,0 +50879,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,718,8201460,5703,0 +50880,CastAway+%21005,705,585,9314079,10311,0 +50881,0150,368,681,7085510,4241,0 +50883,160,387,689,849099876,10495,0 +50884,Wioska+barbarzy%C5%84ska,699,605,6921135,2785,0 +50885,Wioska+barbarzy%C5%84ska,328,637,698908184,5418,0 +50886,D%C5%BCejd%C5%BCej+7,675,638,849098326,1400,0 +50887,Wioska+barbarzy%C5%84ska,650,336,9291984,8717,0 +50888,108,409,695,849099876,9300,0 +50889,%5B0153%5D,453,287,8630972,8817,0 +50890,Psycha+Siada,331,646,8099868,9141,0 +50891,Wioska+barbarzy%C5%84ska,719,509,6510480,5528,0 +50892,komandos,636,667,7976264,10242,0 +50893,054,679,381,698635863,7654,0 +50894,Wioska+barbarzy%C5%84ska,525,285,699818726,5054,0 +50895,Z%C5%82oty+%C5%9Awit,595,300,699883079,6859,0 +50896,XDX,605,302,699098531,4642,0 +50897,Wioska+barbarzy%C5%84ska,705,418,848902592,10636,0 +50898,azi6,461,722,849094759,2413,0 +50899,New+World,414,707,698152377,10311,0 +50900,Winterfell.016,468,282,848918380,7566,0 +50901,02+%C5%9Aruba,720,455,849101845,9710,0 +50902,Winterfell.017,466,287,848918380,7552,0 +50903,Piek%C5%82o+to+inni,639,328,848956765,4030,0 +50904,003,686,615,3589487,6530,7 +50905,Wioska+barbarzy%C5%84ska,305,402,3298564,1843,0 +50906,Wioska+024,666,360,7226782,4278,0 +50907,Taka..,482,723,848999671,9573,0 +50908,EO+EO,295,514,699697558,10083,0 +50909,Przezorny+zawsze+ubezpieczony,390,310,698231772,8889,0 +50910,026.,473,721,849034882,10508,0 +50911,Wioska002,687,386,698768565,10223,0 +50912,155,396,689,849099876,4734,0 +50913,KONFA+TO+MARKA%2C+NARKA,289,441,698152377,10294,0 +50914,%5B0154%5D,458,286,8630972,8688,0 +50915,K33,319,385,699794765,2256,0 +50916,0011,577,707,698723158,6111,0 +50917,BETI+013,455,566,8539216,1134,0 +50918,%23%23%23138%23%23%23,612,689,698285444,10495,0 +50919,Wioska+barbarzy%C5%84ska,311,618,6180190,5200,0 +50920,Wioska+0010,342,653,9186126,10311,0 +50921,0127,387,684,7085510,5365,0 +50922,%3F%3F%3F%3F,491,291,698489071,8720,0 +50923,083+Wioska+barbarzy%C5%84ska,539,288,699854484,9049,0 +50925,...%3A%3A181+02%3A%3A...,276,512,699641777,5337,0 +50926,Wioska+barbarzy%C5%84ska,394,694,849014922,3052,0 +50927,Kurnik,467,715,699603116,9492,0 +50928,Wioska+Aloxx,320,628,698908184,6288,0 +50929,Wioska+barbarzy%C5%84ska,711,544,17714,6266,0 +50930,50-1+MASZOPERIA,575,427,699368887,7898,0 +50931,Wioska+barbarzy%C5%84ska,303,583,698663855,3240,0 +50932,--034--,575,292,542253,4123,0 +50934,007+Twierdza,631,680,849104328,10019,0 +50935,%23K75+0033,516,720,699728159,3734,0 +50936,BOSS+Z1,350,341,849101604,3257,0 +50938,018+Olivine+City,720,486,699441366,10866,0 +50939,Z%C5%82oty+%C5%9Awit,595,304,699883079,5847,0 +50940,Du%C5%BCe+Oczy,709,454,699785935,8305,0 +50942,Niezbyt+WIELKI+KAZIO%21,460,722,699429335,10495,0 +50943,Wioska+barbarzy%C5%84ska,278,522,849047233,4822,0 +50944,Wioska+barbarzy%C5%84ska,390,307,698231772,4565,0 +50945,C004,365,667,699383279,9805,9 +50946,058,719,517,699413040,3191,0 +50947,WY...m,600,700,699828685,10495,0 +50948,t017,668,352,2262902,4315,0 +50949,050,625,676,699695167,2963,0 +50950,Wioska012,345,341,699711926,8750,0 +50951,North+003,516,284,849064752,10311,0 +50952,BRICKLEBERRY,556,292,699072129,9042,0 +50953,Wyspa+029,294,569,225023,4680,0 +50954,%23%23%23139%23%23%23,598,699,698285444,10495,0 +50955,New+World,435,712,698152377,10292,0 +50956,0149,695,396,698416970,3040,0 +50957,053,406,693,849099876,10495,0 +50958,Szcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,561,457,699368887,5512,0 +50959,Wioska+barbarzy%C5%84ska,618,683,6818593,5428,0 +50961,Wioska+barbarzy%C5%84ska,645,663,848987051,8654,0 +50962,Wioska+barbarzy%C5%84ska,394,304,698231772,7980,0 +50963,031.,468,721,849034882,10838,0 +50964,Nowe+Dobra+-+budowa,684,629,699759128,9860,2 +50965,U.003,287,562,849088243,8466,0 +50966,Avanti%21,276,476,698625834,6239,0 +50967,091.Stradi,434,296,698365960,9738,0 +50968,-+264+-+SS,570,708,849018239,4453,0 +50969,116.Stradi,419,290,698365960,10362,0 +50971,Wioska+barbarzy%C5%84ska,325,367,0,2906,0 +50973,021.+Night+Raid,492,707,699684062,9843,0 +50974,Z%C5%82oty+%C5%9Awit,590,299,699883079,9851,0 +50975,Wioska+barbarzy%C5%84ska,278,495,699846892,2238,0 +50976,Wioska+barbarzy%C5%84ska,719,459,849095599,3822,0 +50977,EO+EO,283,491,699697558,8697,9 +50978,Wioska+barbarzy%C5%84ska,420,290,698231772,5457,0 +50979,Saran5,410,300,848937248,3821,0 +50980,%2A195%2A,367,381,699273451,10211,0 +50981,KR%C3%93L+PAPI+WIELKI,723,519,698191218,6346,0 +50982,X012,711,427,699722599,6808,0 +50983,Wioska+barbarzy%C5%84ska,423,706,849100814,878,0 +50984,053%7C%7C+Sagitta,461,714,849035525,9727,0 +50985,WB11,306,403,356642,4036,0 +50986,Wioska+tor1,574,708,698723158,9922,0 +50987,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,719,8201460,10237,0 +50988,002,306,565,849097898,9638,0 +50989,%5B0205%5D,278,502,8630972,6444,0 +50990,.achim.,568,288,6936607,7490,0 +50991,Borys%C3%B3wka,306,602,698167138,6683,0 +50992,komandos,640,668,7976264,9600,0 +50993,KONFA+TO+MARKA%2C+NARKA,285,439,698152377,10292,0 +50995,Wroc%C5%82aw,680,629,848932879,10175,2 +50997,162,383,688,849099876,4453,0 +50998,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,552,718,699828442,9809,0 +51000,kathare,537,719,873575,9963,0 +51001,034,717,469,849091105,10160,0 +51003,C044,361,672,699383279,7671,0 +51004,EO+EO,278,503,699697558,10224,8 +51006,005+Payana,671,639,849102108,5775,0 +51007,FP038,476,716,699605333,4709,0 +51008,KONFA+TO+MARKA%2C+NARKA,290,454,698152377,10292,0 +51009,XXXX,564,294,849054951,10057,0 +51010,%C5%9Aroda+%C5%9Al%C4%85ska,673,636,848932879,3850,0 +51011,Wyspa+001,293,563,225023,10495,0 +51012,Wioska+barbarzy%C5%84ska,537,629,7589468,8819,0 +51013,Wioska+barbarzy%C5%84ska,324,628,698908184,9806,0 +51014,xxx,644,616,692803,3290,0 +51015,Wioska+barbarzy%C5%84ska,711,573,2453888,8856,0 +51016,NP+02,303,391,849076810,4975,0 +51017,Wioska+barbarzy%C5%84ska,427,294,699393759,5414,0 +51018,Twierdza+2,690,606,3467919,920,2 +51019,New+WorldA,286,529,849084005,4992,0 +51020,Orze%C5%82+01+wyl%C4%85dowa%C5%82,336,416,849098299,7226,0 +51021,114,408,701,849099876,9308,0 +51022,Psycha+Siada,332,645,8099868,8669,0 +51023,.achim.,567,290,6936607,6399,0 +51024,Avanti%21,279,475,698625834,5294,0 +51025,Wioska+barbarzy%C5%84ska,612,686,6818593,5043,0 +51026,Kurnik,422,703,699603116,7348,0 +51027,%5B0199%5D,276,499,8630972,6738,0 +51028,Tomekrol+5,701,597,849096334,5939,0 +51029,Wioska+spartacus699111,314,626,698908184,10178,0 +51030,Wioska+barbarzy%C5%84ska,646,658,848987051,8548,1 +51031,Wioska+barbarzy%C5%84ska,720,507,6510480,5428,0 +51032,004,295,586,698663855,10068,0 +51033,0448,570,714,698659980,9398,0 +51034,%23%23%23140%23%23%23,600,691,698285444,10495,0 +51035,New+World,412,705,698152377,10122,0 +51036,C0350,278,534,8841266,4195,0 +51037,%2A010,675,361,7758085,8291,0 +51038,Wioska+barbarzy%C5%84ska,497,724,849066849,2059,0 +51039,Kartoflisko,348,661,2725721,2999,0 +51040,Wioska+barbarzy%C5%84ska,527,285,699818726,4064,0 +51041,30.+Caingorn,721,537,8976313,5079,0 +51042,Wioska+barbarzy%C5%84ska,322,373,0,4663,0 +51043,0152,366,673,7085510,4449,0 +51044,Pobozowisko,398,605,699513260,10971,0 +51045,HWILA+%2F2%2F,630,319,849006385,3168,0 +51047,Drobne,358,330,6416213,5395,0 +51048,MojeDnoToWaszSzczyt,487,285,9299539,5135,0 +51049,New+World,426,710,698152377,10291,0 +51050,Z%C5%82oty+%C5%9Awit,593,296,699883079,9702,0 +51051,%5B804%5D+Odludzie,710,432,848985692,8527,0 +51052,Wioska+barbarzy%C5%84ska,320,366,0,1681,0 +51053,Pocz%C4%85tek,294,579,7842579,3470,0 +51055,Wioska+barbarzy%C5%84ska,718,487,699429153,3692,0 +51056,Wioska+barbarzy%C5%84ska,282,484,699846892,2589,0 +51057,Wiadro00,671,631,8677963,9576,0 +51058,New+World,410,703,698152377,10297,0 +51059,0018+Wioska+barbarzy%C5%84ska,494,725,699656989,5149,0 +51060,.achim.,576,288,6936607,4591,0 +51061,Wioska+MISTRZU77,495,283,763529,4994,0 +51062,kathare,535,720,873575,9961,0 +51063,O108,313,625,272173,8112,0 +51064,019+Osada+koczownik%C3%B3w,536,278,699854484,10068,3 +51065,%23K75+0026,513,715,699728159,4450,0 +51066,rafisonik9,511,718,849101108,4039,0 +51067,ZZZ+.%3A%3A.+cinek3456%2F06,581,702,33900,10195,0 +51070,Wioska+barbarzy%C5%84ska,719,550,698666810,11363,0 +51071,Wioska+028,666,354,7226782,5619,0 +51072,HAPERT,625,663,848909464,10344,0 +51073,New+World,435,710,698152377,10294,0 +51074,%23K75+0030,521,720,699728159,3941,0 +51075,New+World,428,713,698152377,10290,0 +51076,-+257+-+SS,571,707,849018239,5082,0 +51077,Wioska+P-406-04,554,335,6654098,1360,0 +51078,056+Wioska+barbarzy%C5%84ska,549,289,699854484,9702,0 +51079,o014,605,696,699189792,7447,0 +51080,wancki+i+gustlikk,505,277,7758085,9721,0 +51082,Wioska+barbarzy%C5%84ska,472,277,699196829,9787,0 +51083,0586,586,707,698659980,10019,1 +51084,005,593,704,849097370,3354,0 +51085,%C5%BC+internacionale+0001,316,374,3909522,10228,1 +51087,P%7C004%7C,460,715,699393742,8819,0 +51088,Wioska+barbarzy%C5%84ska,313,388,699794765,1357,0 +51089,034,655,348,9148043,5785,0 +51090,%2A020%2A,685,618,1205898,5241,0 +51091,Wioska+barbarzy%C5%84ska,715,543,17714,6336,0 +51092,0083,455,279,848913037,5411,0 +51093,KR%C3%93L+PAPI+WIELKI,672,636,698191218,6280,0 +51094,055,676,376,698635863,9825,0 +51095,B011,630,323,8740199,10813,4 +51096,Wioska+Mammbeppe,715,443,849102480,8818,0 +51097,Wioska+LadyMauritius,501,278,699278528,9734,0 +51098,039+Wioska+barbarzy%C5%84ska,542,283,699854484,9835,0 +51099,Bagno+12,483,717,848883684,9423,0 +51100,027+Wioska+barbarzy%C5%84ska,544,283,699854484,10068,0 +51101,Wioska+barbarzy%C5%84ska,417,297,698231772,5293,0 +51102,%2136+65+Prisaca+Dornei,665,361,698361257,10019,0 +51103,%5B0200%5D,275,498,8630972,7446,0 +51104,005c,305,410,8259895,4162,6 +51105,W47,691,394,699524362,2149,0 +51106,New+World,438,716,698152377,7454,0 +51107,003,344,347,849101205,8460,8 +51108,KUKA+VIII,291,433,6127190,1513,0 +51109,Koczowisko,306,607,698167138,4998,0 +51110,Wioska+barbarzy%C5%84ska,388,482,6258092,6929,0 +51111,%2A015,676,362,7758085,9268,0 +51112,%230240+colt9,437,284,1238300,6310,0 +51113,07+barbarzy%C5%84ska0,283,444,849018442,9835,0 +51115,Wioska+025,668,361,7226782,4357,0 +51116,Zaplecze+miedziane+2,360,333,699796330,9744,3 +51117,Wioska+barbarzy%C5%84ska,718,459,849095599,3097,0 +51118,P%C3%B3%C5%82nocny+Bagdad,620,314,8847546,7010,0 +51119,C091,361,666,699383279,8569,0 +51120,KR%C3%93L+PAPI+WIELKI,691,617,698191218,6215,0 +51121,12+desdemona24.,284,449,849018442,9835,0 +51122,W48,693,393,699524362,1800,0 +51123,%23Kresy,629,678,2665207,7264,0 +51124,039+Wioska+barbarzy%C5%84ska,604,691,699346280,10160,0 +51125,Psycha+Siada,326,640,8099868,9925,0 +51126,Wioska+barbarzy%C5%84ska,364,325,3698627,5041,0 +51127,Z%C5%82oty+%C5%9Awit,597,301,699883079,10055,3 +51128,Bia%C5%82a+Podlaska+3,440,716,849100787,991,0 +51129,MojeDnoToWaszSzczyt,507,277,9299539,9946,0 +51130,K33,315,381,699794765,2529,0 +51131,Wioska+barbarzy%C5%84ska,716,490,699429153,6231,0 +51132,Wioska+mk2014,412,701,698431574,2186,0 +51133,KONFA+TO+MARKA%2C+NARKA,285,442,698152377,10295,0 +51134,Wioska+barbarzy%C5%84ska,327,633,698908184,5680,0 +51135,254...,464,285,6920960,4670,0 +51136,New+WorldA,281,505,849084005,2831,7 +51137,Zzz+00+CebulaVillage,295,571,849084740,2884,0 +51138,Wioska+barbarzy%C5%84ska,711,558,17714,5087,0 +51139,008+JJ,327,365,9120206,9379,0 +51140,Wioska+barbarzy%C5%84ska,651,336,9291984,3354,0 +51141,FAKE+OR+OFF,417,298,698231772,9814,4 +51142,Wioska+barbarzy%C5%84ska,420,294,698231772,2936,0 +51143,MJ3,685,380,8669398,5776,0 +51144,Nowy+Pocz%C4%85tek,303,390,849076810,9555,0 +51145,-001-,357,544,9253494,9740,0 +51146,Bagno+26,475,719,848883684,7294,0 +51147,Trunks+Super+Saiyan+002,518,724,699054373,5354,0 +51148,020,707,509,699150527,8459,0 +51150,Wioska+009,697,591,7999103,3181,0 +51151,New+World,431,714,698152377,10291,9 +51152,KONFA+TO+MARKA%2C+NARKA,292,436,698152377,10292,0 +51153,%230301+Piotr-B,435,288,1238300,8258,0 +51154,003+PPP,529,715,6116940,4890,0 +51155,Zasiedmiogorogrodzie+002,696,398,698278542,3152,0 +51156,063,403,694,849099876,10495,0 +51157,ZZZ+.%3A%3A.+cinek3456%2F05,581,701,33900,10195,0 +51158,Wioska+barbarzy%C5%84ska,711,579,699266530,5111,0 +51159,05+GHOL,722,458,849101845,9539,0 +51160,o09,614,686,699189792,7631,0 +51161,%5B817%5D+Odludzie,713,443,848985692,7325,0 +51162,Twierdza+%28SV%29,351,549,0,6873,32 +51163,Demacia,347,335,698817235,11502,0 +51164,022+Mahogany+Town,721,485,699441366,11109,2 +51165,Wioska+barbarzy%C5%84ska,507,720,849066849,5185,0 +51166,Aksjo+1,560,285,849099696,2017,0 +51167,Bernabeum,642,336,9291984,5796,0 +51168,011+Twierdza,629,681,849104328,9053,0 +51169,006,676,360,9148043,5169,0 +51170,030+Mauville+City,714,483,699441366,5328,0 +51171,kathare,535,719,873575,10182,8 +51172,Wioska010,696,390,698768565,9596,0 +51173,UTAPAU+1,541,722,699383121,4057,0 +51174,Wioska+barbarzy%C5%84ska,715,486,699429153,4246,0 +51175,Avanti%21,284,477,698625834,6468,0 +51176,017,280,464,6131106,9637,5 +51177,C-003,323,361,699406247,3894,0 +51178,MojeDnoToWaszSzczyt,509,275,9299539,9822,0 +51179,Wioska+barbarzy%C5%84ska,686,383,8675636,8851,0 +51180,A-004,323,368,699406247,6028,0 +51181,005.+Seiyouwasabi,697,391,2873154,10237,4 +51182,010+JJ,332,364,9120206,3624,0 +51183,Wioska+barbarzy%C5%84ska,688,385,1715091,3066,0 +51184,Kapitol_04,505,722,606407,5225,0 +51185,Kamienio%C5%82om,348,662,2725721,3123,0 +51186,.achim.,564,284,6936607,2548,0 +51187,NP+04,304,392,849076810,6746,0 +51189,Psycha+Siada,339,651,8099868,8980,0 +51190,0367,566,696,698659980,8109,0 +51191,Wioska+barbarzy%C5%84ska,363,328,6416213,3250,0 +51192,%3D096%3D+Wioska+barbarzy%C5%84ska,706,568,3781794,5993,0 +51193,Finne,279,463,848981726,8041,1 +51194,Blanco+Conejo,522,722,849102336,7134,0 +51195,Na+Kra%C5%84cu+%C5%9Awiata+004,645,341,9291984,10475,0 +51196,002,422,711,849100814,5097,1 +51197,Wioska+barbarzy%C5%84ska,318,370,0,1204,0 +51198,074+invidia,537,718,849093426,5181,0 +51199,071,399,691,849099876,10495,0 +51200,Wioska+barbarzy%C5%84ska,328,368,9240154,1969,0 +51201,Barlinek,487,280,699278528,7213,0 +51202,New+World,413,700,698152377,9886,0 +51204,mufinka,381,689,849030086,9804,0 +51205,0139,367,676,7085510,3866,0 +51206,007,635,636,849099544,6922,0 +51207,%2A005,671,364,7758085,9663,0 +51208,North+049,512,281,849064752,6140,0 +51209,%23K75+0007,518,714,699728159,5353,0 +51210,Choment%C3%B3w,580,709,698723158,10160,0 +51211,033,685,622,699099811,3898,0 +51212,Kapitol_02,506,725,606407,5960,0 +51213,014.,634,669,699695167,10158,0 +51214,018,303,609,699356968,5417,0 +51215,WOLA0102,680,366,6956104,6587,0 +51216,New+WorldA,278,505,849084005,4199,0 +51217,0066,458,280,848913037,9993,0 +51218,Wioska+barbarzy%C5%84ska,318,629,698908184,5269,0 +51219,072+Wioska+barbarzy%C5%84ska,540,286,699854484,9899,0 +51220,North+040,516,282,849064752,7027,0 +51221,Wioska+1,512,723,849100615,3577,0 +51222,komandos,669,649,7976264,4979,0 +51223,Wiiiiiii,287,469,848981726,1964,0 +51225,Op+Konfederacja,472,285,848915730,7344,0 +51226,No+to+jedziemy+%3AD,495,714,699333701,7399,0 +51227,075+Kr%C3%B3lewska+Przysta%C5%84,705,429,2135129,9565,0 +51228,Wioska7,708,576,699266530,8092,0 +51229,%2A002,669,364,7758085,10337,3 +51230,P004,511,275,699208929,5482,0 +51231,17+Wioska+wolna+od+pisu,721,458,849101845,7237,0 +51232,B_10,296,411,699728266,2513,0 +51233,Wioska+KaszczuJ+1,700,573,849104356,10160,0 +51234,New+World,432,709,698152377,10291,0 +51235,103,399,695,849099876,9951,0 +51236,Motorola+02,364,321,698806018,9145,0 +51237,Xxxx,722,501,6510480,9786,8 +51238,K24+-+%5B002%5D+Before+Land,462,287,699088769,6524,0 +51239,Kurnik,451,716,699603116,9521,0 +51241,Wioska+013,700,588,7999103,2400,0 +51242,Wioska+barbarzy%C5%84ska+001,703,404,7588382,1868,0 +51243,B012,631,324,8740199,11328,0 +51244,012+Twierdza,629,682,849104328,8155,0 +51245,04Wioska+barbarzy%C5%84ska,363,673,699704542,3370,0 +51246,Z%C5%82oty+%C5%9Awit,595,302,699883079,6731,0 +51247,Wioska,476,284,7758085,6551,0 +51248,W49,694,402,699524362,2070,0 +51250,%23%23%23141%23%23%23,602,696,698285444,10495,0 +51251,AAA,555,289,1006847,8459,2 +51253,%23034,557,283,849064614,2771,0 +51254,Pcim+Dolny,463,280,849100083,4818,0 +51255,%23%23%23142%23%23%23,598,695,698285444,10495,0 +51256,Wioska+barbarzy%C5%84ska,702,577,7154207,1521,0 +51257,KR%C3%93L+PAPI+WIELKI,725,522,698191218,5793,0 +51258,AAA,528,318,1006847,4215,0 +51259,Wioska+barbarzy%C5%84ska,350,339,849101694,2674,0 +51260,Wioska+barbarzy%C5%84ska,459,284,699863708,4096,0 +51261,Wioska+kjs12,301,606,698687597,628,0 +51262,Wioska+jo1,296,405,699763225,3762,0 +51263,002+Quatra,670,640,849102108,8036,1 +51264,Bagno+18,483,716,848883684,7442,0 +51265,123,404,699,849099876,9368,0 +51266,MojeDnoToWaszSzczyt,499,277,9299539,9946,0 +51267,0104,681,378,698416970,4377,0 +51268,Wioska+Kristoffs,699,399,698416970,9995,0 +51269,Psycha+Siada,327,642,8099868,10019,0 +51270,Zaplecze+Barba+7,372,319,699796330,9742,0 +51271,wancki+i+gustlikk,503,282,7758085,9132,0 +51272,008,308,605,699356968,4784,0 +51273,Piek%C5%82o+to+inni,647,333,848956765,5885,0 +51274,C099,357,672,699383279,9704,0 +51275,%3D0017%3D,391,308,698231772,9851,0 +51276,222,413,293,849089654,2961,0 +51277,023,289,420,6131106,3151,0 +51278,%23%23%23143%23%23%23,592,697,698285444,10495,0 +51279,New+WorldA,281,528,849084005,3251,0 +51280,015,309,392,8724192,1252,0 +51281,04Wioska+barbarzy%C5%84ska,364,675,699704542,9524,0 +51282,BOSS+SW,350,346,849101604,7399,0 +51283,Nowa+03,302,600,699321518,3089,0 +51284,Wioska+adekkolt1,651,333,9257513,26,0 +51286,wancki+i+gustlikk,503,279,7758085,9737,0 +51288,North+074,518,278,849064752,4004,0 +51289,0012+Wioska+sos1234,471,716,699656989,9756,0 +51290,065,716,511,7085502,7380,0 +51291,010.+Tonno+e+cipolla,307,385,849102092,8878,0 +51292,012,290,425,6131106,5644,1 +51293,%2A014,678,365,7758085,7097,0 +51295,--026--,570,292,542253,7790,0 +51296,MojeDnoToWaszSzczyt,498,280,9299539,9955,0 +51297,054+Wioska+barbarzy%C5%84ska,347,664,6354098,5498,0 +51298,Wioska+barbarzy%C5%84ska,418,293,698231772,5561,0 +51300,056,680,379,698635863,10290,0 +51301,003,284,461,698652171,8470,0 +51302,Podbitek+2,685,610,849101652,7352,0 +51303,009,658,348,849020094,4328,0 +51304,MERHET,583,708,698215322,7346,0 +51305,018+Twierdza,636,680,849104328,2631,0 +51306,014,667,641,2323859,5090,0 +51307,044,663,645,2323859,1244,0 +51308,Magiczne+koszary,462,718,848935389,6418,0 +51309,Wiocha+2,556,717,849045675,11737,0 +51310,Trawiasta0,623,684,8607734,9655,4 +51311,Z%C5%82oty+%C5%9Awit,597,300,699883079,6201,0 +51312,2.+Caraxes,299,583,849089499,2574,0 +51313,002,300,409,8259895,4792,0 +51314,06.LUNA,710,561,698905177,3756,0 +51315,Lord+Arsey+KING,656,650,848956513,9014,0 +51316,118,391,695,849099876,8073,0 +51317,--044--,572,289,542253,1943,0 +51318,008,297,594,698663855,5774,0 +51319,Po%C5%82udniowy+Wsch%C3%B3d+014,690,609,699778867,1012,0 +51320,Haga,280,520,699830255,4299,0 +51321,Piek%C5%82o+to+inni,638,326,848956765,6715,0 +51323,028,683,620,699099811,3353,0 +51324,%5B0149%5D,444,291,8630972,8943,0 +51325,Wioska+barbarzy%C5%84ska,717,543,1601917,3242,0 +51326,%230072,572,713,1536231,7385,0 +51327,Kolonia+02,304,592,6180190,7919,0 +51328,KR%C3%93L+PAPI+WIELKI,692,619,698191218,6318,0 +51329,Winterfell.021,455,283,848918380,3693,0 +51330,Motorola+06,364,324,698806018,4642,0 +51331,Cisza,291,550,698769107,3354,0 +51332,3.Oksford,545,715,698215322,6458,0 +51333,46.+Ellander,718,541,8976313,4345,0 +51334,SP+2201,353,657,849092685,5176,0 +51335,FAKE+OR+OFF,400,304,698231772,9836,0 +51337,Wioska+barbarzy%C5%84ska,594,705,8991696,4776,0 +51338,Ave+Night,457,711,849089459,7023,0 +51339,Psycha+Siada,332,640,8099868,10019,0 +51341,Piek%C5%82o+to+inni,654,335,848956765,3016,0 +51342,.achim.,566,291,6936607,5610,0 +51343,C045,372,676,699383279,7791,0 +51344,7.+Maribor,602,699,849102573,5358,0 +51345,o011,615,686,699189792,9959,1 +51346,Psycha+Siada,338,651,8099868,8533,0 +51347,04Wioska+barbarzy%C5%84ska,362,675,699704542,9128,0 +51348,008+%7C+North,374,685,699511295,5999,0 +51349,008,659,348,849020094,3682,0 +51350,%23%23%23144%23%23%23,607,694,698285444,10495,0 +51351,Avanti%21,278,494,698625834,8390,0 +51352,Wioska005,688,389,698768565,10113,0 +51354,Wioska+barbarzy%C5%84ska,714,543,17714,5827,0 +51355,osada,418,709,849100814,1550,2 +51356,DZIMMMIi,335,641,849101135,9724,0 +51357,No.27,475,722,698826986,769,0 +51358,029.,466,722,849034882,10838,0 +51360,0140,690,390,698416970,2539,0 +51361,006,298,587,698663855,6242,0 +51362,Wioska+barbarzy%C5%84ska,474,715,699280514,3440,0 +51363,0070,697,393,698416970,4887,0 +51364,Wioska+barbarzy%C5%84ska,720,497,699429153,2090,0 +51365,azi1,460,719,849094759,7839,0 +51366,Nowy+pocz%C4%85tek,463,308,849104546,11622,0 +51367,Wioska+barbarzy%C5%84ska,712,570,2453888,10019,0 +51368,-08-,582,709,849032414,9472,0 +51369,Z%C5%82oty+%C5%9Awit,579,297,699883079,5885,0 +51370,059.,628,673,699695167,2847,0 +51371,Wioska4+barbarzy%C5%84ska,697,413,8459255,5043,0 +51372,Wioska+barbarzy%C5%84ska,714,443,699628084,6441,0 +51373,MANUO,619,691,698353083,9561,0 +51374,%3D%7C17%7C%3D,651,382,9101574,10495,0 +51375,Wioska+barbarzy%C5%84ska,718,549,698666810,11283,0 +51376,ZZZ+.%3A%3A.+cinek3456%2F04,582,701,33900,10200,0 +51377,weiBer+Hase,527,723,849102336,4351,0 +51378,Wioska+barbarzy%C5%84ska,722,471,699574408,4672,0 +51379,O078,333,639,272173,9887,0 +51380,Psycha+Siada,446,665,698807570,5429,0 +51381,003,321,379,7919620,2793,9 +51382,XDe,326,555,849096458,5992,0 +51383,Wioska+tomnado,674,360,2976468,9830,0 +51384,Wioska+006,670,352,7226782,4281,0 +51385,%C5%BBUBEREK+005+rt27,617,690,33900,10242,0 +51386,071.,715,463,849094609,3190,0 +51387,t015,667,352,2262902,7752,0 +51388,Avanti%21,281,471,698625834,6770,7 +51389,New+WorldA,280,506,849084005,5061,0 +51390,MojeDnoToWaszSzczyt,509,277,9299539,9947,0 +51392,Wioska+barbarzy%C5%84ska,396,300,698231772,5418,0 +51393,016,655,356,9148043,5845,0 +51394,%2136+65+Corocaiesti,652,361,698361257,4478,0 +51395,WOLA0101,679,368,6956104,7297,0 +51398,%2A021%2A,683,627,1205898,3621,0 +51399,0061.,450,710,849037407,7169,0 +51400,119+invidia,507,723,849093426,10236,4 +51403,Wioska+barbarzy%C5%84ska,279,466,699812351,2192,0 +51404,Lord+Arsey+KING,653,660,848956513,10285,6 +51405,Wioska+barbarzy%C5%84ska,411,293,698231772,7081,0 +51406,Wioska+023,667,359,7226782,3827,0 +51407,New+World,418,708,698152377,9799,0 +51408,.achim.,471,280,6936607,8600,0 +51409,rafisonik7,510,717,849101108,4685,0 +51410,001,659,343,849020094,10795,0 +51411,Wioska+barbarzy%C5%84ska,293,431,8366045,3662,0 +51412,185,384,687,849099876,6937,0 +51413,P%C3%B3%C5%82nocny+Bagdad,616,319,8847546,9835,0 +51414,Recreational+Facility,515,608,8199417,6364,0 +51415,Taran,322,625,6180190,7172,0 +51416,Gryfios+098,720,551,698666810,11460,0 +51417,Wioska+barbarzy%C5%84ska,301,586,698663855,3697,0 +51418,%230305+wancki+i+gustlikk+dar,482,279,1238300,6446,0 +51419,%3D097%3D+Wioska+barbarzy%C5%84ska,700,596,3781794,7080,9 +51420,Avanti%21,278,480,698625834,5552,0 +51421,15+Cezarleon.,290,445,849018442,9811,0 +51422,MojeDnoToWaszSzczyt,488,276,9299539,9812,0 +51423,Bagno,354,332,698906190,4578,0 +51424,WBar,285,456,698652171,6359,0 +51426,Ow+Konfederacja,604,396,848915730,4775,0 +51427,032,677,641,2323859,2762,0 +51428,Wioska+EmilPraski,618,367,699857387,8604,0 +51429,C0230,279,546,8841266,8717,6 +51432,-18-,577,702,849032414,6182,0 +51433,8.+Sunfyre,297,591,849089499,226,0 +51435,C024,356,664,699383279,8874,0 +51436,Komandos,643,665,7976264,10054,5 +51437,Ko%C5%9Bci%C3%B3%C5%82+na+g%C3%B3rce,681,545,848932879,8917,0 +51438,KONFA+TO+MARKA%2C+NARKA,288,438,698152377,10306,0 +51439,Wioska+barbarzy%C5%84ska,392,302,698231772,8319,0 +51440,KONFA+TO+MARKA%2C+NARKA,289,446,698152377,10291,0 +51441,Psycha+Siada,336,643,8099868,10019,0 +51444,Wioska+18,692,599,849101162,2602,0 +51445,Bagno+29,481,718,848883684,8178,0 +51446,%3D034%3D+Wioska+barbarzy%C5%84ska,708,568,3781794,10575,0 +51447,Zzz+07+koniec+blisko,290,570,849084740,7470,0 +51448,K24+-+%5B001%5D+Before+Land,470,283,699088769,4973,0 +51449,Wioska+barbarzy%C5%84ska,323,632,698908184,3922,0 +51450,Avanti%21,279,473,698625834,7016,0 +51451,013,725,494,849091105,9966,1 +51452,ZZZ+.%3A%3A.+cinek3456%2F03,584,703,33900,10194,0 +51453,4.+Wyzima,606,693,849102573,6043,0 +51454,Avanti%21,281,478,698625834,5523,0 +51455,Magiczne+koszary,462,720,848935389,9809,0 +51457,Lord+Arsey+KING,654,662,848956513,9478,0 +51458,XXXX,561,292,849054951,10311,6 +51459,Winter+is+coming,463,604,699364813,4682,0 +51460,Motorola+04,366,320,698806018,7772,0 +51461,0062,450,704,849037407,9292,0 +51462,Wioska+barbarzy%C5%84ska,726,485,698191218,3578,0 +51463,Wioska+1,546,279,7427966,3716,0 +51464,Ludzka+przypad%C5%82o%C5%9B%C4%87,694,401,699785935,2372,0 +51465,030,301,554,9280477,4191,0 +51466,005,695,390,849057764,3403,0 +51468,089+Wioska+barbarzy%C5%84ska,544,289,699854484,7376,0 +51469,38.+Hakland,714,534,8976313,9196,0 +51470,KONFA+TO+MARKA%2C+NARKA,284,453,698152377,9601,0 +51471,007+Victoria,671,641,849102108,10065,0 +51472,Wioska+barbarzy%C5%84ska,317,370,0,1515,0 +51473,3.Leicester,566,716,698215322,9949,1 +51474,wioska+wilka+01,717,562,6786449,10809,0 +51475,New+World,413,707,698152377,10291,7 +51476,%3D0027%3D,395,311,698231772,8303,0 +51477,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,553,719,699828442,9808,0 +51478,020,482,651,699238479,8870,0 +51479,Z%C5%82oty+%C5%9Awit,579,294,699883079,8057,0 +51480,Kurnik,466,723,699603116,10481,0 +51481,X006,713,426,699722599,7199,0 +51482,Orgetoryks,329,356,848998530,9577,0 +51483,Avanti%21,284,480,698625834,5970,0 +51484,%23Kresy,629,677,2665207,5726,0 +51485,O073,330,632,272173,9871,0 +51486,North+005,516,281,849064752,10311,0 +51487,%3D023%3D+Osada+koczownik%C3%B3w,709,573,3781794,8560,1 +51488,Tomekrol,702,597,849096334,7517,0 +51489,002a,300,410,8259895,4475,0 +51490,B004+Osada+%C5%BBelazo,713,460,113796,9346,3 +51491,Wioska+wilka+03,717,559,6786449,9790,0 +51492,Wioska+barbarzy%C5%84ska,559,717,6299408,6925,0 +51493,Zzz+09+kom,287,568,849084740,3609,2 +51494,0112,374,677,7085510,10216,0 +51495,Wioska+barbarzy%C5%84ska,294,428,8366045,3654,0 +51496,024,715,471,849091105,10160,0 +51497,Wioska+barbarzy%C5%84ska,425,297,698231772,5569,0 +51498,%230156+lukas041,479,276,1238300,3813,0 +51499,W50,694,392,699524362,2069,0 +51500,%23%23%23145%23%23%23,590,696,698285444,10495,0 +51501,000,612,306,699117992,10495,0 +51502,007+crisyss,526,284,698736778,3303,0 +51503,022.+Gloria+Victis,284,562,848886973,11130,0 +51504,%3D098%3D+Wioska+barbarzy%C5%84ska,708,569,3781794,3768,0 +51505,Wioska+barbarzy%C5%84ska,703,420,8675636,8852,0 +51506,Wioska+barbarzy%C5%84ska,714,550,698666810,7564,0 +51507,S021,691,599,8428196,4386,0 +51508,%230123+Gaj,480,536,9272054,6319,0 +51509,A-005,319,373,699406247,5189,0 +51510,Wioska+barbarzy%C5%84ska,280,485,699846892,2162,0 +51511,11_Franekkimono510_11,368,319,849099422,1121,0 +51512,Wioska+barbarzy%C5%84ska,473,282,699196829,6634,0 +51513,Wioska+%3DWilku%3D,717,561,6786449,11898,0 +51514,062,402,696,849099876,10495,0 +51515,Zeta+Reticuli+W,361,407,699323302,3952,0 +51516,Mordownia+5,703,593,849101029,7933,0 +51517,Trunks+Super+Saiyan+001,520,725,699054373,8464,0 +51518,%3A...+1+...%3A,514,717,849051976,8029,0 +51519,%23%23%23146%23%23%23,608,688,698285444,10495,0 +51520,Gattacka,612,420,699298370,9549,0 +51521,%5B816%5D+Odludzie,710,444,848985692,6913,0 +51522,000,395,303,698231772,7174,0 +51523,New+World,426,709,698152377,10292,0 +51524,161,383,687,849099876,5890,0 +51525,WOLA0001,679,367,6956104,9488,0 +51526,Wioska+barbarzy%C5%84ska,375,356,698160606,4648,0 +51527,Piek%C5%82o+to+inni,637,325,848956765,4508,0 +51528,Koala0o1,364,320,698806018,9592,0 +51529,Wioska+barbarzy%C5%84ska,553,710,699828442,5751,0 +51530,xxx,400,699,849014922,9283,0 +51531,006+%7C+North,374,687,699511295,10019,0 +51532,KONFA+TO+MARKA%2C+NARKA,285,449,698152377,10252,0 +51533,010,609,311,699117992,4749,0 +51534,Osada+14,711,420,699488108,8364,0 +51535,Avanti%21,282,478,698625834,6204,0 +51537,Nowe+Dobra+-+budowa,687,628,699759128,7300,1 +51538,Wioska+barbarzy%C5%84ska,723,496,698191218,4428,0 +51539,Kurnik,420,711,699603116,7511,0 +51540,077,694,546,699316421,10548,0 +51541,%230237+colt9,436,285,1238300,9335,0 +51542,rycho100,695,408,699488108,9025,0 +51543,MojeDnoToWaszSzczyt,497,277,9299539,9954,0 +51544,309,448,280,7271812,2328,0 +51545,%233+Wioska+barbarzy%C5%84ska,635,322,849099517,5039,0 +51546,MojeDnoToWaszSzczyt,491,277,9299539,9959,0 +51547,.Sajonaura,472,501,699781762,10495,0 +51548,Klatka3,620,681,6528152,3986,0 +51549,0451,556,612,698659980,10083,0 +51550,022,666,647,2323859,2857,0 +51551,101.+Armekt,673,646,8337151,12001,0 +51552,Szlachcic,354,336,698388578,4468,0 +51553,001.+Chelsea,494,646,848953066,10495,0 +51554,061,690,621,699099811,1101,0 +51555,D021,560,291,699299123,3526,0 +51556,Piek%C5%82o+to+inni,652,338,848956765,5263,0 +51557,Wioska+Luk10iD,680,360,2976468,2668,0 +51558,065+Wioska+barbarzy%C5%84ska,347,658,6354098,4208,0 +51559,Ciemnogr%C3%B3d+%232,331,363,849096958,8293,2 +51560,P%C3%B3%C5%82nocny+Bagdad,622,316,8847546,6479,0 +51561,X001+Wehiku%C5%82+czasu,709,428,699722599,8951,0 +51562,Bida,304,601,698167138,1912,0 +51563,Zapl%C4%85tany.,283,478,849001277,5185,0 +51564,Wioska+barbarzy%C5%84ska,546,721,699828442,9744,0 +51565,Wioska+barbarzy%C5%84ska,710,583,698845189,7277,9 +51566,...,335,354,699657450,7251,0 +51567,Ghostmane5,719,445,848896434,2490,0 +51568,Mordownia,705,594,849101029,11713,0 +51569,C.054,724,482,9188016,3684,0 +51570,Wioska+barbarzy%C5%84ska,429,292,698231772,6990,0 +51571,00000Z%C5%82oty+%C5%9Bwit,586,297,699883079,10119,0 +51572,Po%C5%82udniowy+Wsch%C3%B3d+007,691,602,699778867,1721,0 +51573,Wioska+barbarzy%C5%84ska,324,637,698908184,9651,0 +51574,Pocz%C4%85tek,298,578,7842579,3191,0 +51575,Avanti%21,283,476,698625834,2639,0 +51577,Wioska+barbarzy%C5%84ska,716,545,17714,6820,0 +51578,Wioska+barbarzy%C5%84ska,658,350,1715091,1109,0 +51579,B002,521,280,699485250,9384,0 +51580,013,400,693,849099876,10495,3 +51581,086+rexanty2,715,546,2135129,4918,0 +51582,Wioska+barbarzy%C5%84ska,301,596,0,8297,0 +51583,Wioska+barbarzy%C5%84ska,722,467,699574408,4649,0 +51584,035+Wioska+barbarzy%C5%84ska,543,282,699854484,9899,0 +51585,Wioska+barbarzy%C5%84ska,717,498,699429153,5836,0 +51586,Flap,601,298,699098531,3109,0 +51587,C046,364,669,699383279,5394,0 +51589,020,290,422,6131106,3364,0 +51590,Wioska+majku+6,412,704,9195661,3758,0 +51591,New+World,432,715,698152377,10294,0 +51592,Ciemnogr%C3%B3d+%234,334,361,849096958,7723,0 +51593,016,303,403,8724192,653,0 +51594,%7CD%7C+Baywell,456,722,698147372,4534,0 +51595,Jupi,279,468,848981726,1335,0 +51596,Piek%C5%82o+to+inni,657,345,848956765,2357,0 +51597,C.055,722,478,9188016,4381,0 +51598,Zielonka,465,306,699308637,9474,0 +51599,Arehukas,379,690,849030086,10247,0 +51600,New+World,423,705,698152377,7710,0 +51601,Wioska006,689,383,698768565,5641,0 +51602,Wioska+denver72,296,583,699671197,5948,0 +51603,sami+swoi+2,411,704,9195661,5017,0 +51604,Wioska+barbarzy%C5%84ska,490,722,699744012,2296,0 +51605,Wioska+Miko6,286,531,699805379,1547,0 +51606,119.Stradi,443,285,698365960,10495,0 +51607,Motorola+07,364,319,698806018,3751,0 +51608,%23001,553,280,849064614,9398,0 +51609,Osada+koczownik%C3%B3w,624,321,7555180,9630,8 +51611,036+KTW,720,447,848883237,3022,0 +51612,115,396,696,849099876,9143,0 +51613,Wioska+katoryjcias,726,524,8541236,9408,0 +51614,MojeDnoToWaszSzczyt,501,276,9299539,9963,0 +51615,EKG+M11+sebastia,484,606,33900,10354,0 +51616,Kiedy%C5%9B+Wielki+Wojownik,327,359,8632462,1264,0 +51617,074+Wioska+barbarzy%C5%84ska,540,285,699854484,10178,0 +51618,%230250+colt9,439,283,1238300,6055,0 +51619,Wioska+barbarzy%C5%84ska,625,684,699699601,2980,0 +51620,Wioska+barbarzy%C5%84ska,368,318,8772425,3994,0 +51621,0011+Wioska+Kaczorek69,501,722,699656989,9737,0 +51622,KONFA+TO+MARKA%2C+NARKA,289,442,698152377,10294,0 +51623,xxx2,701,601,6921135,5254,0 +51624,%230241+colt9,437,286,1238300,5978,0 +51625,BOA5,307,618,699829494,2851,0 +51626,024.,469,714,849034882,10838,0 +51627,Wioska+barbarzy%C5%84ska,430,289,698231772,6995,0 +51629,044+Wioska+barbarzy%C5%84ska,540,282,699854484,9835,0 +51630,KONFA+TO+MARKA%2C+NARKA,285,454,698152377,10294,0 +51631,-29-,565,708,849032414,3162,0 +51632,Wiocha+II,335,350,849106316,3028,0 +51633,Wioska+barbarzy%C5%84ska+V,627,320,848958556,1843,0 +51634,Wioska+3dychy,380,682,6821136,4727,0 +51635,%23K75+0029,523,719,699728159,4987,0 +51637,005+E,306,606,699356968,4766,0 +51638,U.008,289,561,849088243,6164,0 +51639,085+rexanty1,714,545,2135129,4920,0 +51640,Wioska+barbarzy%C5%84ska,293,580,698663855,2204,0 +51641,Wioska+AlfaCentauri,306,402,849036055,30,0 +51642,Wioska15,709,579,699266530,4808,0 +51643,2.+Obj.268D,496,535,849087855,5494,0 +51644,P3Kasik,281,456,699627771,2090,0 +51645,0035,491,719,699684062,5086,0 +51646,Wioska+barbarzy%C5%84ska,712,571,2453888,10019,0 +51647,133,386,691,849099876,7842,0 +51649,--045--,576,298,542253,3152,0 +51650,030.+Gloria+Victis,288,572,848886973,6926,0 +51651,Piek%C5%82o+to+inni,645,333,848956765,6188,0 +51652,Wioska+-+006+-,534,281,848982634,1373,0 +51653,Tabasko,708,411,699785935,6646,0 +51654,010.+Vaclav+the+Prague,463,720,848896948,10345,5 +51655,MANUO+2,617,693,698353083,4309,0 +51656,KR%C3%93L+PAPI+WIELKI,723,480,698191218,6218,0 +51658,KR%C3%93L+PAPI+WIELKI,673,637,698191218,6250,0 +51659,073+invidia,548,715,849093426,5826,0 +51660,Kurnik,448,720,699603116,9440,0 +51661,Tyko+tyle,693,404,699785935,1119,0 +51662,Flap,607,301,699098531,4057,0 +51663,053+Wioska+barbarzy%C5%84ska,550,283,699854484,9835,0 +51665,Wioska+barbarzy%C5%84ska+010,564,706,6870350,4822,0 +51666,003,304,608,699356968,4580,0 +51667,%230239+colt9,438,285,1238300,6113,0 +51668,FP040,469,724,699605333,5080,0 +51669,003,297,408,8724192,6372,0 +51670,Wioska+barbarzy%C5%84ska,277,535,8841266,2011,0 +51671,UTAPAU,540,723,699383121,4157,0 +51673,Wioska+barbarzy%C5%84ska,418,291,698231772,5020,0 +51675,KONFA+TO+MARKA%2C+NARKA,291,441,698152377,7327,0 +51676,22.+Brugge,722,539,8976313,7192,7 +51677,Wincy94,649,333,849048734,8108,0 +51678,Wioska+BenyZSZ,277,506,699614027,989,0 +51679,New+WorldA,282,542,849084005,4052,0 +51680,Wioska+barbarzy%C5%84ska,311,612,6180190,5196,0 +51681,SPOCENI+KUZYNI,423,648,848913998,2455,0 +51682,Zzz+06+tu+nic+nie+ma,292,570,849084740,5754,0 +51683,North+K25,524,280,699146580,5384,0 +51684,P%C3%B3%C5%82nocny+Bagdad,624,313,8847546,7000,0 +51685,0026,292,416,2321390,2627,0 +51686,Wioska+barbarzy%C5%84ska,347,338,849101604,1849,0 +51687,006+Autara,671,645,849102108,8886,0 +51688,%2A001,676,361,7758085,10337,0 +51689,xxx,644,615,692803,9422,0 +51690,010+-+Budowanko%21,490,725,7540891,6564,0 +51691,6.F,531,277,699146580,2749,0 +51692,Wioska+barbarzy%C5%84ska,320,632,698908184,5215,0 +51694,Wioska+0012,343,652,9186126,10375,0 +51695,EMERYTOWANY+KUZYN,433,644,848913998,3120,0 +51696,shizior+006,424,639,849089459,3242,0 +51697,058+Wioska+barbarzy%C5%84ska,553,284,699854484,9835,0 +51698,C056,371,678,699383279,6924,0 +51699,%230077,570,710,1536231,4996,0 +51700,Wioska+barbarzy%C5%84ska,395,304,698231772,4440,0 +51701,Motorola+08,363,324,698806018,4222,0 +51702,Wioska+barbarzy%C5%84ska,726,490,698191218,4221,0 +51703,017,303,402,8724192,527,0 +51704,055+Wioska+barbarzy%C5%84ska,347,665,6354098,4296,0 +51706,Klatka8,627,678,6528152,5445,0 +51707,MojeDnoToWaszSzczyt,486,284,9299539,6059,0 +51708,%230151+barbarzy%C5%84ska,480,278,1238300,4945,0 +51709,15.+Lyria,698,550,8976313,9814,0 +51710,EO+EO,277,492,699697558,9066,4 +51711,Wiadro04,676,628,8677963,9048,0 +51713,001,367,679,698182935,7120,0 +51714,Avanti%21,282,489,698625834,5894,0 +51715,A-008,318,369,699406247,3735,0 +51716,Wioska+Dominator2014,380,310,698160606,333,0 +51717,Parking9,620,683,6528152,3892,0 +51718,FORTONI,673,356,3957237,10583,0 +51719,wyjazd,704,406,698462285,3393,0 +51720,Kurnik,447,716,699603116,6053,0 +51721,Wioska+barbarzy%C5%84ska,712,456,699628084,7851,0 +51723,Zzz+05+niesp%C5%82acam+d%C5%82ug%C3%B3w,293,569,849084740,5072,0 +51724,North+061,512,277,849064752,5866,0 +51725,Wioska+-+004+-,536,281,848982634,2611,0 +51726,M%C5%81ODE+OR%C5%81Y+003+zakr%C4%99cona,576,605,33900,9385,0 +51727,012,526,715,698996782,4019,0 +51729,Wioska+barbarzy%C5%84ska,632,317,8740199,8637,0 +51730,Nowy+%C5%9Bwiat+A,281,516,849084005,516,0 +51731,Nagato+-+B+001,315,371,849094586,3758,0 +51733,Psycha+Siada,329,641,8099868,9835,0 +51734,Wioska+barbarzy%C5%84ska,318,366,0,2049,0 +51735,Wioska+barbarzy%C5%84ska,713,445,699628084,7118,0 +51736,021+Osada+koczownik%C3%B3w,548,285,699854484,9899,6 +51737,Taran,313,610,6180190,6500,0 +51738,Mordownia+4,706,594,849101029,9426,0 +51739,mjrbordo,562,711,6870350,5613,0 +51740,Babidi+%234,375,319,849101962,4601,0 +51741,Wioska+barbarzy%C5%84ska,283,456,8792844,3539,0 +51742,Wioska+barbarzy%C5%84ska,691,391,8622901,1566,0 +51744,Wioska+Ma%C5%82a,277,481,960100,2125,0 +51745,0103,386,683,7085510,10216,3 +51746,Wioska+Player,277,493,8630972,3682,0 +51747,0076,460,281,848913037,6090,0 +51748,Wioska+karlitos+MMz,279,491,849062546,4432,0 +51749,%230053,574,709,698723158,8851,0 +51750,Wioska+barbarzy%C5%84ska,722,512,6510480,3996,0 +51751,Avanti%21,279,478,698625834,6326,0 +51752,Barba,322,635,698908184,10083,0 +51754,S022,693,597,8428196,4135,0 +51755,A%23019,723,505,2065730,9797,0 +51756,fajnie+tu+jest,526,717,6116940,4352,0 +51757,Wioska+myrcin,537,277,849105071,8320,0 +51758,New+World,420,707,698152377,9913,0 +51759,Wioska+Kendal,327,611,849105072,7865,0 +51760,Wioska+barbarzy%C5%84ska,307,604,698167138,1868,0 +51761,Kurnik,444,714,699603116,6983,4 +51762,0016,681,629,6417987,2186,0 +51763,078,703,423,2135129,3725,0 +51764,Wole%C5%84cy,370,323,849027025,9449,0 +51765,Wioska+barbarzy%C5%84ska,477,284,7758085,6177,0 +51766,0109,693,385,698416970,1967,0 +51767,Orgetoryks,330,356,848998530,4691,0 +51768,-25-,569,706,849032414,3841,0 +51769,Lord+Arsey+KING,655,657,848956513,4404,0 +51770,005+Twierdza,622,689,849104328,10019,0 +51771,062+Wioska+barbarzy%C5%84ska,541,278,699854484,9835,0 +51772,%230168+darmuwa,470,281,1238300,6253,0 +51773,35.+Hannu,722,543,8976313,6129,0 +51774,POCZ%C4%84TEK,692,390,8622901,8905,0 +51775,006,291,583,698663855,5344,0 +51776,040+-+Budowanko%21,470,723,7540891,5555,0 +51777,Psycha+Siada,329,640,8099868,10019,0 +51779,022.+Eagle+Cap,712,554,1601917,10232,0 +51780,Wioska+barbarzy%C5%84ska+III,277,529,849047233,2572,0 +51781,Uaaaa,310,555,848901396,6481,0 +51782,X-Doom0,623,682,8607734,6823,0 +51783,Lord+Arsey+KING,651,659,848956513,4453,0 +51784,Wioska+Lepsi5,654,349,7440474,3009,0 +51785,Wioska+barbarzy%C5%84ska,723,465,699574408,5076,0 +51786,Wioska14.,708,579,699266530,5484,0 +51787,Flen,295,403,7259690,3263,0 +51788,Po%C5%82udniowy+Wsch%C3%B3d+004,696,612,699778867,2601,0 +51789,Wioska+0025,341,650,9186126,1001,0 +51790,Wioska+barbarzy%C5%84ska,314,386,699794765,1510,0 +51791,MADAGASKAR+01,340,345,698757439,7627,5 +51792,C034,372,675,699383279,8147,0 +51793,031+Legio+XI+Securis,714,572,699878150,7417,0 +51794,nowa+1,626,686,699372829,2142,0 +51795,barbarzy%C5%84ska,281,455,8792844,1600,0 +51796,024.+Fettuccine+Alfredo.,316,379,849102092,6486,0 +51797,087+jagger23,544,278,699854484,10661,0 +51798,KIELBA+117,464,583,699342219,5962,0 +51799,010,293,425,6131106,9609,0 +51800,Psycha+Siada,331,650,8099868,7401,0 +51801,HWILA+%5B5%5D,632,318,849006385,2461,0 +51802,Wioska+damiano3106,630,317,849006385,3460,0 +51803,Wioska+biosiekiery,513,724,698934729,3738,0 +51804,W51,693,396,699524362,1951,0 +51805,%5B0260%5D,280,511,8630972,5537,0 +51806,%2A020,676,370,7758085,4974,0 +51807,025.,472,722,849034882,9739,0 +51809,Wioska+barbarzy%C5%84ska,556,288,698350371,1507,0 +51810,Nowa+Baza+10,616,693,698353083,6980,0 +51811,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,628,8201460,10237,0 +51812,Wioska+barbarzy%C5%84ska,279,483,699846892,2898,0 +51813,%23005+New+York,316,627,849101276,3818,0 +51814,Psycha+Siada,335,643,8099868,8203,0 +51815,%234+Wioska+barbarzy%C5%84ska,632,319,849099517,7145,0 +51816,New+WorldA,277,519,849084005,2306,0 +51817,019.+t%C5%82uszczyk,694,383,2873154,10237,8 +51818,Wioska+barbarzy%C5%84ska,283,527,699425709,2827,0 +51819,Wioska+barbarzy%C5%84ska,718,452,849095599,3893,0 +51820,Wioska+barbarzy%C5%84ska,374,688,849096945,508,0 +51821,072+invidia,541,717,849093426,5781,0 +51822,C119,356,671,699383279,8563,0 +51824,009,301,607,699356968,4150,0 +51825,35.+Na+rowerek,370,571,8665783,1557,0 +51826,Lord+Arsey+KING,660,656,848956513,3286,0 +51827,North+039,513,284,849064752,8074,0 +51828,Z%C5%82oty+%C5%9Awit,590,298,699883079,10114,0 +51829,Lord+Arsey+KING,659,656,848956513,10595,0 +51830,SOKzGUMIjag%C3%B3d,638,366,849059491,9805,0 +51831,P%7C005%7C,457,713,699393742,4561,0 +51832,Wioska+Pracz+5,311,625,8916982,5664,0 +51833,Chojnik,303,600,698167138,2354,0 +51834,Wioska+barbarzy%C5%84ska,684,454,699272633,1449,0 +51835,ZZZ+.%3A%3A.+cinek3456%2F07,585,705,33900,9971,0 +51836,002,365,682,698182935,2925,0 +51837,MERHET,586,704,698215322,9951,0 +51839,.achim.,567,289,6936607,6328,0 +51841,Psycha+Siada,342,648,8099868,7763,0 +51842,NP+07,306,393,849076810,2188,0 +51843,Wioska19,334,347,699711926,4993,0 +51844,KONFA+TO+MARKA%2C+NARKA,287,458,698152377,2237,0 +51845,08+barbarzy%C5%84ska0,283,446,849018442,9811,0 +51847,004.+Funghi,318,373,849102092,8620,8 +51848,027+Legio+X+Augusta,710,570,699878150,7361,0 +51849,Lord+Arsey+KING,660,654,848956513,8666,0 +51850,Wioska+barbarzy%C5%84ska,390,695,849014922,3102,0 +51851,Aksjo+2,559,290,849099696,1826,0 +51852,0165,385,679,7085510,2626,0 +51853,KONFA+TO+MARKA%2C+NARKA,284,440,698152377,6929,0 +51855,Wioska16,333,346,699711926,8302,0 +51857,%230087,578,712,1536231,5510,0 +51858,Szlachcic,355,334,698388578,5649,0 +51859,006+Twierdza,621,689,849104328,10019,0 +51860,Wioska+Gigako,557,288,849054951,8400,0 +51861,%23116%23,643,673,692803,5942,0 +51862,007,533,724,698996782,8424,0 +51863,Wioska+barbarzy%C5%84ska,462,281,699191455,3207,0 +51864,40.+Wioska+40,288,566,849091769,7564,0 +51865,Avanti%21,284,489,698625834,6869,0 +51866,%7E%7E082%7E%7E,682,635,7829201,2738,0 +51867,%5B0261%5D,281,512,8630972,5820,0 +51868,073.+Pola,714,456,849091866,4495,0 +51869,CastAway+%23011,699,588,9314079,9818,0 +51870,Kurnik,462,719,699603116,9054,0 +51871,Wioska+barbarzy%C5%84ska,376,345,3698627,3692,0 +51872,006+JJ,324,363,9120206,7229,0 +51873,MojeDnoToWaszSzczyt,500,274,9299539,9953,0 +51874,Dzie%C5%84+dobry+wiecz%C3%B3r,471,283,699756210,8428,0 +51875,Wioska+barbarzy%C5%84ska,708,574,2453888,7929,0 +51876,013+JJ,329,363,9120206,1735,0 +51877,.1.,297,402,762975,4786,0 +51878,%5BB%5D002,417,703,9195661,9115,0 +51879,Ave+Why%21,466,650,699121671,859,0 +51880,Wioska+barbarzy%C5%84ska,712,452,699628084,8209,0 +51881,Wioska+barbarzy%C5%84ska+012,378,314,849068662,7602,0 +51882,P%C3%B3%C5%82nocny+Bagdad,620,309,8847546,4958,0 +51883,C018,546,711,698599365,6293,0 +51884,...%3A%3A181+04%3A%3A...,276,514,699641777,4613,0 +51885,Wioska+barbarzy%C5%84ska,302,604,698167138,1523,0 +51886,307,392,313,7271812,1705,0 +51887,New+WorldA,281,519,849084005,4352,0 +51888,Wioska+barbarzy%C5%84ska,409,295,698231772,7285,0 +51889,Wioska+Bochun10,322,494,7449254,6700,0 +51890,058+invidia,543,715,849093426,6882,0 +51891,Wioska+barbarzy%C5%84ska,306,566,849098688,1140,0 +51892,Wioska+barbarzy%C5%84ska,593,699,7756002,3861,0 +51893,Kastet,347,661,2725721,3276,0 +51894,Nowa+02,298,600,699321518,6731,0 +51895,Mniejsze+z%C5%82o+0096,310,381,699794765,4721,0 +51897,.achim.,487,282,6936607,5786,0 +51898,Wioska+barbarzy%C5%84ska,424,289,698231772,6154,0 +51900,301,446,290,7271812,5980,0 +51901,004,293,590,698663855,10068,0 +51902,004+Wioska+C,284,563,6240801,4321,0 +51904,Wioska+z+Pracza+9,314,622,8916982,1949,0 +51905,friendship,703,411,699785935,5840,0 +51906,Wroc%C5%82aw,407,295,3411571,4887,0 +51907,074,397,691,849099876,10113,0 +51908,EO+EO,284,503,699697558,10083,0 +51909,Wioska+barbarzy%C5%84ska,717,452,699628084,6601,0 +51910,Batalion,437,291,947923,4562,0 +51911,Wioska+barbarzy%C5%84ska,458,277,699191449,4992,0 +51912,KONFA+TO+MARKA%2C+NARKA,283,439,698152377,7354,0 +51913,BIMBER+1,450,285,6857973,5065,0 +51914,Wioska+SirCzoper,278,488,698162357,1974,0 +51915,Z%C5%82oty+%C5%9Awit,586,294,699883079,10087,0 +51916,Wioska+barbarzy%C5%84ska,409,296,698231772,7290,0 +51917,040+Twinleaf+Town,724,496,699441366,2364,0 +51918,EO+EO,275,501,699697558,10019,0 +51919,KONFA+TO+MARKA%2C+NARKA,292,429,698152377,4706,0 +51920,New+WorldA,281,532,849084005,3241,0 +51921,Manuo3,619,689,698353083,4060,0 +51922,D025,565,283,699299123,8515,0 +51923,-10.+Wygwizd%C3%B3w,379,310,698345556,5508,0 +51924,009+%7C+North,372,687,699511295,7407,0 +51925,Piek%C5%82o+to+inni,653,339,848956765,3241,0 +51926,Wioska+barbarzy%C5%84ska,387,314,849084066,2671,0 +51927,Wioska+bogdan0811,602,303,699323781,4498,0 +51928,077,718,510,7085502,4898,0 +51929,Wioska+barbarzy%C5%84ska,428,286,698231772,8020,0 +51930,002,592,703,849097370,4616,0 +51931,WB16,305,401,356642,4444,0 +51932,Wioska+%5B4%5D,724,512,699858313,807,0 +51933,Horyzont+zdarze%C5%84,542,603,7581876,10019,0 +51934,Z%C5%82oty+%C5%9Awit,594,296,699883079,9872,0 +51935,GuaGua,372,681,7085510,6332,0 +51936,XDX,616,308,699098531,6461,0 +51937,Bierut%C3%B3w,294,572,849101092,7072,0 +51938,Wioska+barbarzy%C5%84ska,377,684,849030086,3851,0 +51939,0028,310,377,2321390,1555,0 +51940,026.+Gloria+Victis,280,558,848886973,6676,0 +51941,27.+Morfeusz+4x,691,482,699804790,7105,0 +51942,KONFA+TO+MARKA%2C+NARKA,287,456,698152377,10295,9 +51943,%2A034%2A,359,388,699273451,10211,0 +51944,Wioska+barbarzy%C5%84ska,724,534,17714,3871,0 +51945,Piek%C5%82o+to+inni,653,332,848956765,4252,7 +51946,068.+Newtona,719,531,1601917,4615,0 +51947,Lipien,326,545,699265922,4523,0 +51948,Psycha+Siada,337,643,8099868,9968,0 +51949,Z.02,708,584,699737356,3995,0 +51950,066+Wioska+barbarzy%C5%84ska,541,277,699854484,9835,0 +51951,Wioska+barbarzy%C5%84ska,708,422,848902592,3208,0 +51952,050+Wioska+barbarzy%C5%84ska,549,286,699854484,9835,0 +51953,...%3A%3A181+01%3A%3A...bomb.najazd,275,513,699641777,9145,0 +51954,KUKA+VI,287,427,6127190,1360,0 +51955,Wioska+0004,344,653,9186126,10311,0 +51956,011+JJ,329,366,9120206,2597,0 +51957,New+World,409,705,698152377,10291,0 +51958,Gryfios+097,719,553,698666810,11285,0 +51959,Buzka9395,296,420,699728266,8209,0 +51960,%23%23%23147%23%23%23,591,700,698285444,10495,0 +51961,Wioska+barbarzy%C5%84ska,302,594,6180190,3047,0 +51962,Wioska+barbarzy%C5%84ska,726,494,6510480,4797,0 +51963,%23039,554,290,849064614,1988,0 +51964,Wioska+barbarzy%C5%84ska,309,381,1267913,1940,0 +51965,Wioska+barbarzy%C5%84ska,308,380,1267913,2303,0 +51966,Wioska+barbarzy%C5%84ska,713,447,699628084,4704,0 +51967,004,403,298,9283775,4125,0 +51968,Wioska+barbarzy%C5%84ska,382,522,849030226,9810,0 +51969,Nowe+Dobra+-+budowa,685,628,699759128,6957,0 +51970,008+Wioska+G,287,565,6240801,2828,0 +51971,Wiosk,283,532,699805379,1188,0 +51972,MJ16,687,378,8669398,3629,0 +51973,000,286,443,6131106,5853,0 +51974,Taka.,484,720,848999671,5989,0 +51975,%2A023%2A%2A,686,616,1205898,6500,0 +51976,Wioska+barbarzy%C5%84ska,326,628,698908184,6922,0 +51977,Gryfios+095,718,554,698666810,11460,0 +51978,Kiedy%C5%9B+Wielki+Wojownik,329,351,8632462,8940,9 +51979,071+invidia,536,716,849093426,5811,0 +51980,XDX,602,300,699098531,3239,0 +51981,006.+Quattro+formaggi,312,394,849102092,4081,0 +51982,Blanc+Lapin,526,722,849102336,6015,0 +51983,Wioska+barbarzy%C5%84ska,403,702,849014922,3375,0 +51984,KR%C3%93L+PAPI+WIELKI,723,535,698191218,6428,0 +51985,Komandos,653,664,7976264,8005,0 +51986,230+Casablanca,437,472,1497168,9761,0 +51987,Wioska+lo+2,297,407,699763225,2896,0 +51988,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,552,719,699828442,9808,0 +51989,11+Patatajnia,721,454,849101845,9489,0 +51990,Wioska003,687,385,698768565,5255,0 +51991,Wioska+6,653,347,849101945,1769,0 +51992,078+Wioska+barbarzy%C5%84ska,538,281,699854484,7632,0 +51993,Eldorado,709,587,849098724,1770,0 +51994,04Osada+koczownik%C3%B3w,364,678,699704542,9742,2 +51995,Piek%C5%82o+to+inni,644,337,848956765,5876,0 +51996,W52,689,393,699524362,2034,0 +51997,New+World,421,712,698152377,9356,0 +51998,Wygwizdowa+011,644,671,698562644,4743,0 +51999,Wioska+barbarzy%C5%84ska,725,489,699573053,7886,0 +52000,Wioska+Black+Priest,423,298,3411571,9685,0 +52001,kryniu+niebko+centrum,677,367,849105232,5408,0 +52002,81.,294,406,699763225,7638,0 +52003,019,667,642,2323859,2848,0 +52004,XDX,606,303,699098531,3998,0 +52005,Wioska+barbarzy%C5%84ska,714,554,17714,7002,0 +52006,A%23007,720,534,2065730,9797,4 +52007,gory+szare,296,410,698677650,2648,0 +52008,005,321,368,7386358,4718,0 +52009,Saran8,398,303,848937248,2248,0 +52010,.003.+Madagaskar,719,458,849095599,5907,0 +52011,%3D099%3D+Wioska+barbarzy%C5%84ska,702,594,3781794,4010,0 +52012,Kharkov,400,301,699588526,9258,0 +52013,Wioska+barbarzy%C5%84ska+009,563,714,6870350,5000,0 +52014,Wioska+DontCry,599,540,7220989,3807,0 +52015,Wioska18,333,348,699711926,4990,0 +52016,Wioska+barbarzy%C5%84ska,692,385,0,2602,0 +52017,127,382,691,849099876,8332,0 +52018,FAKE+OR+OFF,392,306,698231772,9917,0 +52019,Piek%C5%82o+to+inni,650,337,848956765,6076,0 +52020,-24-,578,708,849032414,5353,0 +52021,Trunks+Super+Saiyan+005,517,724,699054373,5496,0 +52022,New+World,425,705,698152377,4717,0 +52023,Nowa+baza+3,614,694,698353083,7255,0 +52024,Bagno+32,474,725,848883684,5571,0 +52025,.achim.,578,290,6936607,5351,0 +52026,wioska+XX,675,356,9314079,9283,1 +52027,Wioska+barbarzy%C5%84ska,327,631,698908184,8885,0 +52028,Trunks+Super+Saiyan+004,515,725,699054373,5806,0 +52029,012,307,607,699356968,6471,0 +52030,Wioska+barbarzy%C5%84ska,698,392,1715091,4727,0 +52032,0145,693,399,698416970,2648,0 +52033,Kurnik,470,718,699603116,8116,0 +52034,Glinnn,285,470,848981726,2368,0 +52035,Wioska+barbarzy%C5%84ska,717,486,699429153,3553,0 +52036,Wioska+z+Pracza+4,312,627,8916982,2707,0 +52037,Wioska+barbarzy%C5%84ska,658,349,1715091,1482,0 +52038,Z%C5%82oty+%C5%9Awit,589,300,699883079,9568,0 +52039,SIO%C5%81O,654,667,2371436,3472,0 +52040,Wioska+Zidanee0390,583,292,8609713,9176,0 +52041,BOSS+D1,352,339,849101604,4086,0 +52042,Bianco+Coniglio,525,722,849102336,9572,0 +52043,Nowa+Wie%C5%9B,369,314,849027025,5825,0 +52044,014,320,375,7386358,6799,2 +52045,101.+Wioska+martwy+dzik,722,477,7494497,2933,0 +52046,%5B0202%5D,277,502,8630972,6927,0 +52047,.achim.,486,278,6936607,8033,0 +52048,04Wioska+barbarzy%C5%84ska,363,680,699704542,9742,0 +52049,Wioska+015,695,594,7999103,561,0 +52050,Wioska+Pracz+3,311,623,8916982,7563,0 +52052,KR%C3%93L+PAPI+WIELKI,724,536,698191218,6242,0 +52053,Wioska+barbarzy%C5%84ska,323,373,0,62,0 +52054,O101,318,630,272173,7773,0 +52055,Wioska+barbarzy%C5%84ska,281,481,699846892,2225,0 +52056,Mason+Street,382,685,849105463,4771,0 +52057,Bryzgiel,300,598,1276665,5089,0 +52058,Wioska+barbarzy%C5%84ska,483,275,8630972,9250,0 +52059,New+World,412,703,698152377,10027,0 +52060,043,704,402,849091105,5715,0 +52062,Wioska+20,698,593,849101162,2429,0 +52063,zawodnik,593,695,698215322,10023,2 +52064,004,293,592,698663855,8064,0 +52065,Wioska+barbarzy%C5%84ska,706,419,848902592,5327,0 +52066,kathare,537,721,873575,9961,2 +52067,Wioska,346,346,699711926,10090,0 +52068,%5BO%5Dko%C5%84,281,547,849106971,3190,0 +52070,Avanti%21,280,478,698625834,6141,0 +52071,V.+K%C5%82opoty-Stanis%C5%82awy,360,325,849101893,5244,0 +52072,Wioska+barbarzy%C5%84ska,327,634,698908184,9806,0 +52073,Wioska+barbarzy%C5%84ska,326,357,8632462,2491,0 +52074,MikolajOSK6,441,285,6857973,2551,0 +52075,Wioska+barbarzy%C5%84ska,455,714,849037407,1426,0 +52076,051,634,670,699695167,3658,0 +52077,Wyspa+002,292,564,225023,10495,0 +52078,012,611,306,699117992,1930,0 +52079,Makowa+02,388,690,849014922,3874,0 +52080,C049,356,667,699383279,7667,0 +52081,098.+Anio%C5%82ki,716,473,7494497,2839,0 +52082,Wioska+barbarzy%C5%84ska,292,577,849101771,1144,0 +52083,North+K25,524,281,699146580,3530,0 +52084,Gryfios+096,716,551,698666810,11574,2 +52085,komandos48,643,663,7976264,9113,0 +52086,020.+elli38,684,373,2873154,6400,0 +52087,O076,331,636,272173,9866,0 +52088,Wioska+skuzmi,516,727,849101102,9907,0 +52089,KR%C3%93L+PAPI+WIELKI,720,475,698191218,5817,0 +52090,Wioska+barbarzy%C5%84ska,320,635,698908184,5208,0 +52091,Wioska+002,677,359,2976468,7976,0 +52092,Wioska+wtkc,688,381,8669398,1810,0 +52093,Wioska+barbarzy%C5%84ska+15,336,343,698757439,7293,0 +52094,0028,509,500,698599365,10019,0 +52095,Nowa+04,301,598,699321518,4007,0 +52096,w+myself,601,700,699828685,1605,0 +52097,06+barbarzy%C5%84ska.,286,449,849018442,8762,0 +52098,Wioska+barbarzy%C5%84ska,712,447,699628084,3947,0 +52099,%2306%21,636,677,849101884,3388,0 +52100,Wioska+Putabarca28,697,610,6921135,3346,0 +52101,Nie+popusc,409,706,9195661,7869,0 +52102,Wioska+barbarzy%C5%84ska,433,289,698231772,9008,0 +52103,032,724,473,849091105,10160,0 +52104,016,304,612,699356968,4114,0 +52105,Z%C5%82oty+%C5%9Awit,598,299,699883079,6162,0 +52106,Z%C5%82oty+%C5%9Awit,588,298,699883079,10056,0 +52107,038.,464,721,849034882,10838,0 +52108,031,667,638,2323859,3125,0 +52109,Z%C5%82oty+%C5%9Awit,587,290,699883079,6664,0 +52110,%23K75+0031,524,719,699728159,4290,0 +52112,P%C3%B3%C5%82nocny+Bagdad,622,308,8847546,7240,0 +52113,Psycha+Siada,333,647,8099868,9968,0 +52114,Poema+del+Mar+Aquarium,374,680,7085510,4582,0 +52116,Flap,607,308,699098531,6032,0 +52118,NP+01,301,389,849076810,8047,0 +52119,New+WorldA,280,535,849084005,3945,0 +52120,W53,699,409,699524362,1833,0 +52121,%C5%9Arodowisko+miejskie,714,461,699785935,7767,7 +52122,Wioska+barbarzy%C5%84ska,392,301,698231772,4062,0 +52123,%5B818%5D+Odludzie,709,442,848985692,7078,0 +52124,Wioska+barbarzy%C5%84ska,400,296,698231772,3938,0 +52125,Wioska+barbarzy%C5%84ska,434,291,698231772,8042,0 +52126,%23K75+0034,518,722,699728159,5349,0 +52127,Wioska+barbarzy%C5%84ska,715,552,698666810,8157,0 +52128,Kurnik,468,718,699603116,9687,0 +52129,Nienack,694,397,698278542,11566,0 +52130,KR%C3%93L+PAPI+WIELKI,695,615,698191218,6239,0 +52131,Wioska+barbarzy%C5%84ska,424,297,698231772,5360,0 +52132,040+Wioska+barbarzy%C5%84ska,545,287,699854484,9835,0 +52134,X007,713,424,699722599,6508,0 +52135,Wioska+barbarzy%C5%84ska,566,707,849055425,4308,0 +52136,Wioska+marianos1994,663,353,848936229,689,0 +52137,0173,366,672,7085510,8075,0 +52138,Wioska+barbarzy%C5%84ska,710,446,699628084,7367,0 +52139,%7CD%7C+Sunfort,455,721,698147372,3809,0 +52140,029+KTW,721,453,848883237,4609,0 +52141,XDX,614,310,699098531,4635,0 +52142,Wioska+Kl0Ns,490,726,848999671,2190,0 +52143,Taka.,484,725,848999671,5494,0 +52144,Warszawa,290,415,699856962,9644,0 +52145,HWILA+%5B4%5D,630,318,849006385,2268,0 +52146,Wioska+Lord+Lord+Giza,651,342,698946155,2596,0 +52147,04Wioska+barbarzy%C5%84ska,364,682,699704542,9170,0 +52148,Madera,712,552,1601917,7404,0 +52149,Blueberry,381,683,849105463,426,0 +52150,067+Wioska+barbarzy%C5%84ska,342,657,6354098,3052,0 +52151,Szlachcic,374,317,698160606,5271,0 +52152,C0227,282,540,8841266,10362,4 +52153,%230162+darmuwa,470,282,1238300,6561,0 +52154,Wioska+barbarzy%C5%84ska,552,712,699828442,5179,0 +52155,wancki+i+gustlikk,504,278,7758085,9205,0 +52157,C.048,715,475,9188016,3370,0 +52158,0172,371,682,7085510,10216,0 +52159,KONFA+TO+MARKA%2C+NARKA,289,435,698152377,7371,0 +52161,Wioska+barbarzy%C5%84ska,336,346,849103148,4283,0 +52162,Albatros,432,293,947923,6298,0 +52163,Zaplecze+Barba+022,368,323,699796330,6339,0 +52164,wioska+psa+nie+dotyka%C4%87,684,565,849102143,6323,0 +52165,%2A008,674,365,7758085,9861,0 +52166,007,289,425,6131106,5531,0 +52167,045+Wioska+barbarzy%C5%84ska,541,282,699854484,9835,0 +52168,04Wioska+barbarzy%C5%84ska,355,674,699704542,8661,0 +52169,Wioska+barbarzy%C5%84ska,391,302,698231772,8159,0 +52171,--036--,568,294,542253,3918,0 +52172,007.+Napoletana,306,389,849102092,8753,0 +52173,B001,520,281,699485250,10078,0 +52174,0163,391,687,7085510,2656,0 +52175,Wioska+barbarzy%C5%84ska,396,698,849014922,5665,0 +52177,024,529,724,698996782,5060,0 +52178,026+Petalburg+City,719,485,699441366,11109,0 +52179,%5B0235%5D,282,504,8630972,5867,0 +52181,0095,680,378,698416970,4684,0 +52182,Po%C5%82udniowy+Wsch%C3%B3d+011,695,608,699778867,1641,0 +52183,--040--,572,291,542253,3649,0 +52184,022.+Wioska+barbarzy%C5%84ska,681,381,2873154,5674,0 +52185,%5B0206%5D,276,502,8630972,6790,0 +52186,New+WorldA,275,533,849084005,1822,0 +52187,Wioska10,624,477,848935020,3908,0 +52188,KONFA+TO+MARKA%2C+NARKA,295,416,698152377,2444,0 +52189,%2136+65+Botosanita+Mica,659,365,698361257,6148,0 +52190,Wioska+barbarzy%C5%84ska,404,702,849014922,4712,0 +52191,Osada+koczownik%C3%B3w,307,380,1267913,2871,2 +52192,Szlachcic,371,316,698160606,5170,0 +52193,Zzz+08+zaraz+si%C4%99+zacznie,290,569,849084740,6564,0 +52194,Pocz%C4%85tek,292,580,7842579,9265,1 +52196,0115,346,665,698908184,7988,9 +52197,t026,667,346,2262902,800,0 +52198,%230080,569,709,1536231,4097,0 +52199,Wioska+barbarzy%C5%84ska,374,311,3484132,5131,0 +52200,059KP,487,273,849063849,2665,0 +52201,008,402,302,9283775,2233,0 +52202,Zaplecze+Barba+8,369,327,699796330,9741,0 +52203,kww03,720,543,8976313,4321,0 +52204,Wioska+barbarzy%C5%84ska,484,276,698365960,2077,0 +52205,Wioska+barbarzy%C5%84ska,610,302,1775957,816,0 +52206,Wioska+barbarzy%C5%84ska,395,699,849014922,5330,0 +52208,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,722,8201460,10237,0 +52209,031+Wioska+barbarzy%C5%84ska,543,286,699854484,9835,0 +52210,Wioska+RR+01,370,326,849023212,7790,0 +52211,Wioska+Zawodnika,536,633,698655859,6921,0 +52212,D01,441,717,698652014,2900,0 +52213,Monetki,482,421,699098531,7926,0 +52214,%7E%7E083%7E%7E,677,638,7829201,3713,0 +52216,Wioska02,298,416,8259895,3929,0 +52217,014,338,349,849101205,1734,0 +52218,%5B0262%5D,279,510,8630972,5372,0 +52219,X013,709,425,699722599,5807,0 +52220,t012,670,350,2262902,8196,0 +52221,07.APT,713,562,698905177,3408,0 +52222,Wioska+super+hero,309,622,699438389,4082,0 +52223,032,399,703,849099876,10495,0 +52224,P%C3%B3%C5%82nocny+Bagdad,616,306,8847546,4597,0 +52225,.achim.,569,287,6936607,5190,0 +52226,%5B0201%5D,283,495,8630972,6883,0 +52227,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,493,718,8980651,7555,4 +52228,079+hasacz,705,518,2135129,5550,0 +52229,Eden,706,410,699785935,5015,0 +52230,Wioska+barbarzy%C5%84ska,324,636,698908184,8296,0 +52231,%5B810%5D+Odludzie,713,431,848985692,7456,0 +52232,232...P%C3%93%C5%81NOC,436,287,6920960,4635,0 +52233,Wioska+gooomis,435,559,699364813,602,0 +52234,Wioska+barbarzy%C5%84ska,426,289,698231772,5465,0 +52235,091,724,506,7085502,4446,0 +52236,Nowa+Baza+11,616,694,698353083,7705,0 +52237,Witam%3A%29,701,418,849101881,10019,0 +52238,092.Stradi,438,289,698365960,8877,0 +52239,Wioska+barbarzy%C5%84ska,463,282,699863708,2198,0 +52240,azi3,458,718,849094759,2271,0 +52241,AG15,590,663,699876345,9747,0 +52242,P%C3%B3%C5%82nocny+Bagdad,620,310,8847546,7243,0 +52243,Mm01,630,326,698442418,8984,0 +52244,KONFA+TO+MARKA%2C+NARKA,280,449,698152377,7234,0 +52245,wje%C5%BCd%C5%BCam+na+dzielnie,677,628,6417987,1631,0 +52246,0075,458,279,848913037,4686,0 +52247,Kiedy%C5%9B+Wielki+Wojownik,331,356,8632462,6506,0 +52248,18.,702,402,699562182,2755,0 +52249,Wioska+barbarzy%C5%84ska,723,494,942959,4046,0 +52250,Kurnik,445,717,699603116,7320,0 +52251,Wioska+4,296,403,699763225,1742,0 +52252,041+Wioska+barbarzy%C5%84ska,546,283,699854484,9835,0 +52253,Wioska+Turystyczna+006,724,461,7588382,6927,0 +52254,%5B0162%5D,455,286,8630972,8494,0 +52255,sony911,672,645,1415009,9456,0 +52256,15.,702,401,699562182,4007,0 +52257,04Wioska+barbarzy%C5%84ska,364,677,699704542,8807,0 +52258,MojeDnoToWaszSzczyt,473,275,9299539,9517,0 +52259,Fourth,448,287,849048216,1004,0 +52260,azi4,453,716,849094759,2956,0 +52261,Pocz%C4%85tek,297,581,7842579,9461,0 +52263,04Wioska+barbarzy%C5%84ska,361,680,699704542,9747,0 +52264,067+Wioska+barbarzy%C5%84ska,537,276,699854484,9835,0 +52265,Wioska+2,298,404,699763225,1714,0 +52266,%C5%BBUBEREK+008+MENAGO.EXE,618,688,33900,7217,0 +52267,Wioska+barbarzy%C5%84ska,643,664,848987051,7613,0 +52268,021.+Eskwilin,712,553,1601917,10341,0 +52269,075.+Acrae,721,461,849091866,4788,0 +52270,Wioska+007,672,352,7226782,2871,0 +52271,Wioska+barbarzy%C5%84ska,555,712,699828442,6047,0 +52272,Piek%C5%82o+to+inni,651,340,848956765,3413,0 +52273,007+eQNares,478,572,2585846,10478,0 +52274,D006,562,286,699299123,4370,0 +52275,Werid,467,717,849004274,9473,0 +52276,aaaa,700,394,699598425,10728,0 +52277,Wioska+z+Pracza+8,311,626,8916982,200,0 +52278,Wioska+barbarzy%C5%84ska,709,557,17714,5367,0 +52280,Wyspa+030,295,573,225023,2294,0 +52281,CastAway+%23001,702,585,9314079,9815,6 +52282,083,720,511,7085502,4443,0 +52283,078+Wioska+barbarzy%C5%84ska,350,666,6354098,5279,0 +52285,%5B800%5D+Odludzie,711,434,848985692,10047,9 +52286,056+Wioska+barbarzy%C5%84ska,343,664,6354098,6748,0 +52288,Wioska+barbarzy%C5%84ska,503,719,698704189,2150,0 +52289,Wioska+Kepczyk,318,642,698908184,6547,0 +52290,Wioska+barbarzy%C5%84ska,311,386,699794765,1891,0 +52291,Wioska+kapittan,316,625,699456288,679,0 +52292,Wioska+barbarzy%C5%84ska,644,664,848987051,7559,0 +52293,U_U,351,433,699088529,3777,0 +52294,Wioska+bulkas9999333,319,633,849098993,532,0 +52295,%23%23%23148%23%23%23,602,694,698285444,10495,0 +52296,Kiedy%C5%9B+Wielki+Wojownik,327,356,8632462,1870,0 +52297,--047--,578,292,542253,1541,0 +52298,014+-+Budowanko%21,494,723,7540891,6674,0 +52299,Wioska+olko666,724,522,8541236,9333,0 +52300,Wioska+krzucha2037,722,530,8541236,9606,0 +52301,Wioska+barbarzy%C5%84ska,710,574,2453888,7727,0 +52302,Osada+koczownik%C3%B3w,704,407,8675636,9803,1 +52303,013,327,371,7386358,3586,0 +52304,%2A011,677,362,7758085,8425,0 +52305,Wioska01,297,417,8259895,5879,0 +52306,100,395,697,849099876,9450,0 +52307,Wioska+barbarzy%C5%84ska,724,478,113796,1835,0 +52308,017.+Wioska+barbarzy%C5%84ska,682,375,2873154,6718,0 +52309,Wioska+barbarzy%C5%84ska,546,720,699828442,8370,0 +52310,BOA.,311,624,699829494,6338,0 +52311,093,725,504,7085502,4223,0 +52312,082,406,697,849099876,9835,0 +52313,roksi,302,400,849089601,5257,0 +52314,%235+Wioska+barbarzy%C5%84ska,637,322,849099517,6516,0 +52315,002+Kazik,282,551,197581,8259,0 +52316,KONFA+TO+MARKA%2C+NARKA,278,449,698152377,7587,0 +52317,KONFA+TO+MARKA%2C+NARKA,279,446,698152377,9723,0 +52318,Walec,354,670,2725721,1416,0 +52319,243,387,311,7271812,2764,6 +52320,Bestleevatican+Twitch+TV,714,502,8418489,9797,0 +52321,Wioska+barbarzy%C5%84ska,379,689,849030086,6788,0 +52322,XDX,611,313,699098531,7082,0 +52323,New+World,438,711,698152377,7114,0 +52324,Tartak,712,440,849088515,4782,1 +52325,Wioska+barbarzy%C5%84ska+-,563,709,849055425,4112,0 +52326,KR%C3%93L+PAPI+WIELKI,718,521,698191218,5654,0 +52327,New+World,423,707,698152377,8664,0 +52328,backstage+2,705,402,849099696,4557,0 +52329,Ave+Why%21,547,700,699121671,942,0 +52330,Wioska+0017,339,655,9186126,7613,0 +52331,Wioska+barbarzy%C5%84ska,483,276,8630972,7074,0 +52332,New+WorldA,280,541,849084005,3885,0 +52333,KONFA+TO+MARKA%2C+NARKA,296,429,698152377,2746,0 +52335,Wioska+barbarzy%C5%84ska,722,505,6510480,4531,0 +52336,wioska+barba,406,573,9167250,9904,0 +52337,xxx4,694,611,6921135,9335,0 +52338,32.+Wioska+barbarzy%C5%84ska,715,469,699804790,3078,0 +52340,C096,359,672,699383279,6562,0 +52341,039,664,649,2323859,5362,0 +52342,004,530,281,698736778,2111,0 +52343,KONFA+TO+MARKA%2C+NARKA,295,409,698152377,2322,0 +52344,Wioska+barbarzy%C5%84ska,368,326,3698627,5053,0 +52345,001,406,303,9283775,7756,0 +52346,%230155+barbarzy%C5%84ska,479,277,1238300,4826,0 +52347,New+WorldA,283,528,849084005,4875,0 +52348,BOA4,305,618,699829494,3387,0 +52349,BIMBER+3,452,283,6857973,2531,0 +52350,Maestro,713,457,699785935,8201,6 +52351,Nowa+Era,717,566,2723244,4460,0 +52352,006,289,585,698663855,5753,0 +52353,AVERSA+city,495,366,3762475,4441,0 +52354,%23003,552,280,849064614,9326,0 +52355,wie%C5%9Bmen,637,320,849094006,7351,0 +52356,Bagno+27,475,720,848883684,6231,0 +52357,Wioska+klogan,695,405,699884788,6261,0 +52358,07.GOT7,710,434,9180206,8740,5 +52359,076+invidia,543,721,849093426,5993,0 +52360,03+brutal29,638,322,6517826,2576,0 +52361,Wioska+barbarzy%C5%84ska,404,701,849014922,4115,0 +52362,Wioska+barbarzy%C5%84ska,505,717,698704189,3674,0 +52363,0108,692,392,698416970,2050,0 +52364,142.Stradi,482,276,848952566,1660,0 +52365,Nowa+58,712,581,698702991,5677,0 +52366,XDX,616,311,699098531,5941,0 +52367,017,397,699,849099876,10495,5 +52368,Wioska+dawszz5,284,534,849094688,1651,0 +52369,Z%C5%82oty+%C5%9Awit,591,301,699883079,7083,3 +52370,Wioska+016,669,354,7226782,10580,0 +52371,.achim.,570,288,6936607,6238,0 +52372,wioska,636,331,9291984,10040,0 +52373,%3D022%3D+Wioska+barbarzy%C5%84ska,708,565,3781794,10580,0 +52374,Wioska+barbarzy%C5%84ska,371,675,0,1704,0 +52375,X008,714,424,699722599,6399,0 +52377,KONFA+TO+MARKA%2C+NARKA,281,444,698152377,8234,0 +52378,008,665,643,2323859,8010,0 +52379,B-001,307,381,1267913,7020,0 +52380,SkalpeR3,283,499,849101674,2192,0 +52381,P%C3%B3%C5%82nocny+Bagdad,623,310,8847546,6757,0 +52382,029Sta%C5%82ka,532,717,6116940,4896,0 +52383,Wioska+barbarzy%C5%84ska,392,688,849014922,7603,0 +52384,134+%23007,625,686,2467370,4876,0 +52385,010,524,717,698996782,3710,0 +52386,001,384,401,6647535,1007,0 +52387,%23%23%23149%23%23%23,607,697,698285444,10495,0 +52388,%3F%3F%3F%3F,494,281,698489071,6798,0 +52389,Wioska+barbarzy%C5%84ska,518,280,8240677,7232,0 +52390,Wioska+Gazel699,494,724,699656989,4901,0 +52391,007,294,585,698663855,3010,0 +52392,WMA,721,475,113796,2366,0 +52393,%3D100%3D+Wioska+barbarzy%C5%84ska,701,596,3781794,3459,0 +52394,Wioska+barbarzy%C5%84ska,390,303,698231772,7578,0 +52395,076+Wioska+barbarzy%C5%84ska,347,667,6354098,6193,0 +52397,%230052,573,710,1536231,9953,0 +52398,PPF-01,521,274,1424656,9808,0 +52399,KONFA+TO+MARKA%2C+NARKA,288,453,698152377,7231,0 +52400,104,399,696,849099876,10311,0 +52401,Wioska+4,552,281,7427966,2284,0 +52402,Wioska+barbarzy%C5%84ska,704,417,699488108,4406,0 +52403,Wioska+026,667,358,7226782,4374,0 +52404,XDX,602,305,699098531,6218,0 +52405,Piek%C5%82o+to+inni,643,335,848956765,4038,0 +52406,666,277,470,849081869,12021,0 +52407,Wioska+013,668,357,7226782,2516,0 +52408,016,279,462,6131106,10160,0 +52409,Wioska+barbarzy%C5%84ska,354,672,0,1043,0 +52410,Piorunek1996+Wie%C5%9B+..1..,528,275,6118079,7187,0 +52411,%23%23%23150%23%23%23,596,699,698285444,10495,0 +52412,019+Frontier+Access,720,485,699441366,9751,3 +52414,D02,441,714,698652014,3384,0 +52415,New+WorldA,276,541,849084005,1899,0 +52416,komandos,672,650,7976264,4178,0 +52417,Tu+sie+pracuje,592,702,849097370,9209,0 +52418,35.+Openbar,558,288,849099696,9640,0 +52419,New+World,417,712,698152377,9931,0 +52420,Cisza,289,556,698769107,6565,0 +52422,White+Rabbit,524,724,849102336,4638,0 +52424,Wioska+barbarzy%C5%84ska,715,447,699628084,6609,0 +52427,MojeDnoToWaszSzczyt,499,281,9299539,9366,0 +52428,Wioska+barbarzy%C5%84ska,416,293,698231772,5124,0 +52430,Wioska+barbarzy%C5%84ska,274,519,8841266,1653,0 +52431,New+World,430,714,698152377,10294,5 +52433,Wioska9,710,575,699266530,9854,0 +52434,004,292,592,698663855,10360,0 +52435,081+Wioska+barbarzy%C5%84ska,348,668,6354098,4677,0 +52436,WOJSKO,474,284,699814283,8266,0 +52437,059+Wioska+barbarzy%C5%84ska,552,285,699854484,9835,0 +52438,0042+K55+and987+OZDR.,508,541,3613413,9841,0 +52439,28.+Attre,717,540,8976313,5764,0 +52440,Mordownia+2,703,594,849101029,9788,0 +52441,0160,388,688,7085510,3152,0 +52442,039.xxx,476,695,8612358,2677,0 +52443,Lord+Arsey+KING,654,660,848956513,4987,0 +52444,062,700,602,849095227,8237,0 +52445,komandos,664,655,7976264,4765,0 +52446,A%23046,724,538,2065730,9287,0 +52447,061.,639,681,699373599,1980,0 +52448,KWB2,470,717,9003698,2890,0 +52449,066+-+Budowanko%21,508,727,7540891,4658,0 +52450,Atlantyk,690,379,7973893,5955,0 +52451,Wioska+barbarzy%C5%84ska+%2B,563,708,849055425,3110,0 +52452,Wioska+022,673,354,7226782,6105,4 +52455,Cisza,289,553,698769107,6896,0 +52456,Wioska+barbarzy%C5%84ska,357,664,699199084,436,0 +52457,003,275,535,698353083,6348,0 +52458,Wioska+barbarzy%C5%84ska,625,689,6818593,2070,0 +52459,t013,669,350,2262902,6382,0 +52460,Kaer+Morhen,318,385,849101377,5368,0 +52461,cyklop,370,314,849068108,3015,0 +52462,New+World,410,708,698152377,10290,0 +52463,Architekci+Plac%C3%B3w+Boju,340,550,8004076,6488,0 +52464,Nowe+Dobra+-+budowa,684,627,699759128,3696,0 +52465,North+073,503,274,849064752,6219,0 +52466,035+KTW,722,454,848883237,3152,0 +52467,Bagno+11,482,717,848883684,9424,0 +52468,Gibonowo+Kolonia,280,488,849100877,1022,5 +52469,0000043Z,285,560,849089881,1191,0 +52470,Wioska+barbarzy%C5%84ska,274,506,0,6775,0 +52471,%230283+kaban1988,462,286,1238300,10242,0 +52472,Wioska,650,662,6167751,5559,0 +52473,Taka.,487,724,848999671,5692,0 +52474,Piek%C5%82o+to+inni,645,325,848956765,3643,0 +52475,Wioska+barbarzy%C5%84ska+008,377,312,849068662,5999,0 +52476,0155,369,679,7085510,4744,0 +52477,Avanti%21,275,482,698625834,6457,0 +52478,Avanti%21,273,485,698625834,6336,0 +52479,Babidi+%235,373,321,849101962,4523,0 +52480,KONFA+TO+MARKA%2C+NARKA,286,444,698152377,10291,0 +52481,M001,474,275,699208929,8886,0 +52482,Bagno,589,708,849040194,4137,7 +52483,Dzik+5,293,432,8366045,9490,0 +52484,Kiedy%C5%9B+Wielki+Wojownik,332,355,8632462,4533,0 +52485,XDX,612,312,699098531,6186,0 +52486,001+Lady+mysza89100,529,281,698736778,4438,0 +52487,01Wioska+barbarzy%C5%84ska,361,678,699443920,9761,0 +52488,Avanti%21,277,471,698625834,2667,0 +52489,%230245+colt9,440,282,1238300,5100,0 +52490,1.A,534,280,849100611,4878,0 +52491,003+Wioska+B,285,564,6240801,4434,0 +52492,New+World,408,704,698152377,9290,0 +52493,0027,310,376,2321390,1994,0 +52494,stachowo,595,293,849101409,3227,0 +52495,KR%C3%93L+PAPI+WIELKI,652,666,698191218,8135,0 +52496,007+%7C+North,387,698,699511295,6935,0 +52497,Wioska+barbarzy%C5%84ska,519,283,8240677,7281,0 +52498,-10-,582,710,849032414,8976,0 +52499,zk+potulice+krynius,678,372,849105232,2482,0 +52500,Wioska+barbarzy%C5%84ska,371,322,3698627,5643,0 +52501,027,690,619,699099811,3420,0 +52502,002+Wioska+A,286,564,6240801,6346,0 +52505,nie+grasz+obok+mnie%3F,527,718,6116940,3857,0 +52506,Nowe+Dobra+-+budowa,681,627,699759128,6777,0 +52507,%23165%23,654,664,692803,4718,0 +52508,C0275,287,545,8841266,4374,0 +52509,241...NORTH,444,279,6920960,2148,0 +52510,069+Wioska+barbarzy%C5%84ska,540,277,699854484,8780,0 +52512,Azyl+8,631,686,849096354,2296,0 +52513,BOSS+NW,345,334,849101604,7852,0 +52514,B008,518,276,699485250,10211,0 +52515,Piek%C5%82o+to+inni,652,336,848956765,5321,0 +52516,MojeDnoToWaszSzczyt,509,274,9299539,9704,0 +52517,BOA1,308,620,699829494,6552,0 +52518,066.,717,463,849094609,2641,0 +52519,Wioska+barbarzy%C5%84ska+03,344,335,698757439,10495,0 +52520,AAA,535,332,1006847,7337,0 +52521,015+Schwere+Panzer-Abteilung+503,606,357,849091899,2437,0 +52522,WOLA0000,678,363,6956104,10495,0 +52523,New+World,429,716,698152377,10249,0 +52524,New+World,406,707,698152377,10294,0 +52525,C036,354,673,699383279,9806,5 +52526,Wioska+barbarzy%C5%84ska,367,322,3698627,3956,0 +52527,%23Kresy,629,680,2665207,6103,0 +52528,Wioska+wilka+04,715,559,699878150,7406,0 +52529,Wioska+Sindbad00,415,316,698231772,5097,0 +52530,Wioska+barbarzy%C5%84ska,403,701,849014922,7908,0 +52531,034,668,646,2323859,1946,0 +52532,015+Twierdza,633,680,849104328,5993,0 +52533,KONFA+TO+MARKA%2C+NARKA,289,447,698152377,7051,0 +52534,komandos.+Ddddddd,669,651,7976264,5182,0 +52535,Piek%C5%82o+to+inni,650,331,848956765,3602,0 +52536,S03,718,474,113796,5360,0 +52537,Wioska19,623,476,848935020,1280,0 +52538,Magiczne+koszary,450,722,848935389,9809,0 +52539,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,554,721,699828442,9805,0 +52540,KONFA+TO+MARKA%2C+NARKA,281,448,698152377,7391,0 +52541,MJ14,686,375,8669398,3881,0 +52542,075+Wioska+barbarzy%C5%84ska,346,667,6354098,3987,0 +52543,MERHET,590,706,698215322,1196,0 +52544,Wioska+barbarzy%C5%84ska,366,316,3484132,6403,0 +52546,NP+06,304,393,849076810,6441,0 +52547,Wioska+0013,338,654,9186126,10375,0 +52548,R+045+%7EKurast%7E,492,728,699195358,7555,0 +52549,Wioska+barbarzy%C5%84ska,314,377,699660539,2469,0 +52550,027.,622,546,8900955,9189,0 +52551,P%C3%B3%C5%82nocny+Bagdad,614,305,8847546,7008,0 +52553,%5B0204%5D,276,498,8630972,7604,0 +52554,-1-,631,319,849105420,9464,0 +52555,015,304,615,699356968,9418,6 +52556,KONFA+TO+MARKA%2C+NARKA,292,428,698152377,4569,0 +52557,004,275,537,698353083,10280,5 +52558,.2.,297,403,762975,1763,0 +52559,Avanti%21,275,483,698625834,7368,0 +52560,%230142+Befsztyk,487,548,9272054,3143,0 +52561,%C5%BBUBEREK+101+-+jak+tak+to+tak,608,701,33900,9388,0 +52562,112+Wioska+General+Kaczor,545,277,699854484,7608,0 +52563,UTAPAU+3,543,719,699383121,529,0 +52564,04Wioska+barbarzy%C5%84ska,356,675,699704542,7953,0 +52565,Wincy94+1,648,328,849048734,8266,0 +52566,001,566,286,6925574,1857,0 +52567,Wioska+Pitter82,545,283,7427966,5075,0 +52568,001c,301,413,8259895,4590,0 +52569,z+058,547,715,699342219,10220,5 +52570,Wiocha+III,337,348,849106316,2391,0 +52571,Kurnik,442,715,699603116,6060,0 +52573,EE+011,706,573,849100149,4651,0 +52574,Alicante,648,673,747422,3319,2 +52576,Wioska+2,550,278,7427966,3030,0 +52577,057,713,563,7085502,7336,0 +52579,%230054,576,711,1536231,10495,3 +52580,--029--,572,287,542253,8815,0 +52581,C.049,716,475,9188016,4237,0 +52582,021,652,333,9148043,9740,8 +52583,xxx3,702,605,6921135,7086,0 +52584,XDX,611,309,699098531,5002,0 +52586,083,713,419,2135129,3894,0 +52587,18k%24+Grvvyq,700,601,699676005,10495,0 +52588,KONFA+TO+MARKA%2C+NARKA,282,441,698152377,7587,0 +52589,New+WorldA,282,521,849084005,3956,0 +52590,Wioska+barbarzy%C5%84ska,421,297,849102150,2807,0 +52592,47.+%C5%81ukomorze,722,541,8976313,3015,0 +52593,Psycha+Siada,330,646,8099868,10019,0 +52594,D020,560,287,699299123,3924,0 +52595,C015,540,721,698599365,3696,0 +52596,003+Twierdza,634,680,849104328,10019,0 +52597,%230238+colt9,435,285,1238300,5495,0 +52598,059+Wioska+barbarzy%C5%84ska,342,662,6354098,4084,0 +52599,Wioska+barbarzy%C5%84ska+020,595,404,6343784,8616,0 +52600,North+092,505,283,849064752,3672,0 +52601,WZ02,700,607,7142659,9420,0 +52602,Nowy+0003,299,601,849096972,1375,0 +52603,PPF-19,532,276,1424656,3951,0 +52604,Wioska+barbarzy%C5%84ska,463,281,849017820,3679,0 +52605,Wioska+kosmo1972,424,714,7499430,5843,0 +52606,Nowa+Baza+6,615,695,698353083,6365,0 +52607,P%C3%B3%C5%82nocny+Bagdad,622,307,8847546,9143,0 +52608,053+Wioska+barbarzy%C5%84ska,345,664,6354098,3944,0 +52609,Lipa,671,359,849095509,9814,0 +52610,Szlachcic,362,332,698388578,4337,0 +52611,Osada+koczownik%C3%B3w,717,547,848946700,9319,3 +52612,007,287,575,849097898,9751,0 +52613,Wiocha,336,350,849106316,6858,0 +52614,Efekty+specjalne,361,328,6416213,4708,0 +52615,04Wioska+barbarzy%C5%84ska,358,675,699704542,9351,0 +52616,013,341,348,849101205,3083,0 +52617,A%23012,723,491,2065730,9797,4 +52618,MojeDnoToWaszSzczyt,510,280,9299539,9612,0 +52619,Avanti%21,283,480,698625834,5786,0 +52621,Pocz%C4%85tek,289,581,7842579,9739,0 +52622,Wioska+barbarzy%C5%84ska+010,377,320,849068662,4014,0 +52623,Wyspa+032,291,562,225023,4411,0 +52624,t011,671,349,2262902,7975,0 +52625,Arczi997,297,516,849055181,8688,0 +52626,12.+Remont+na+%C5%9Aw.+Marcin,462,723,849092769,5331,0 +52627,024+Z,718,480,699718269,986,0 +52628,...%3A%3A181+10%3A%3A...,273,514,699641777,3213,0 +52629,E01,306,385,6301789,4739,0 +52630,Wioska+barbarzy%C5%84ska,614,688,8292737,909,0 +52631,Wioska+saba13,368,674,3101080,638,0 +52633,o06,612,699,699189792,9744,0 +52635,Tequila,705,411,699785935,7053,0 +52636,0006+Wioska+oracz1,496,725,699656989,9739,0 +52637,Wioska+barbarzy%C5%84ska,593,705,8991696,3859,0 +52638,Wioska+%5B3%5D,723,511,699858313,2250,0 +52639,wancki+i+gustlikk,506,281,7758085,8880,0 +52640,%231+MatWa,635,321,849099517,10197,0 +52641,--030--,575,296,542253,3728,0 +52642,Wioska+barbarzy%C5%84ska+016,375,313,849068662,9018,0 +52643,R0se69,543,665,849106383,9976,0 +52644,wancki+i+gustlikk,505,282,7758085,8948,0 +52645,%24004%24+OXY,308,621,699550876,8055,0 +52646,New+World,434,712,698152377,10290,0 +52647,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,555,721,699828442,9804,0 +52648,Wioska+barbarzy%C5%84ska,703,403,699598425,3266,0 +52649,0110,374,684,7085510,7608,6 +52651,Wioska+barbarzy%C5%84ska,725,525,698191218,2250,0 +52652,Wioska+proof333,391,477,698783754,7960,0 +52653,006+-+Budowanko%21,489,722,7540891,7463,0 +52654,Szlachcic,364,316,3484132,10476,9 +52655,Wioska+barbarzy%C5%84ska,392,698,2308351,948,0 +52656,New+WorldA,279,537,849084005,1834,0 +52657,Wioska+barbarzy%C5%84ska,709,421,848902592,3252,0 +52658,Klatka9,628,678,6528152,2165,0 +52659,North+041,515,282,849064752,7030,0 +52660,Khorinis,325,642,698908184,9847,0 +52661,Flap,617,309,699098531,5752,0 +52662,Avanti%21,281,479,698625834,4827,0 +52664,Nowe+IMPERIUM+4,617,695,698353083,5776,0 +52665,CastAway+%21016,710,589,9314079,6270,0 +52666,TOLCIA+2,639,320,699868739,5818,0 +52667,045.,463,721,849034882,9869,0 +52668,%5B0186%5D,277,494,8630972,7325,0 +52669,CastAway+%23017,712,585,9314079,5727,0 +52670,Azyl+5,632,685,849096354,2181,0 +52671,KONFA+TO+MARKA%2C+NARKA,283,438,698152377,8288,0 +52672,Wioska+barbarzy%C5%84ska,410,291,3411571,2525,0 +52673,029,723,475,849091105,10160,0 +52674,065.+Noszak,720,529,1601917,5145,0 +52675,New+World,430,717,698152377,10291,0 +52676,Wioska,700,599,6921135,6074,0 +52677,000,653,342,848889850,9200,0 +52678,Wioska,516,725,849101102,5759,0 +52679,158,392,690,849099876,10495,0 +52680,C0351,276,519,8841266,2038,0 +52682,Nagato+-+B+002,316,364,849094586,3842,0 +52683,Wioska+barbarzy%C5%84ska,327,629,698908184,6755,0 +52684,Wioska+barbarzy%C5%84ska,422,286,698231772,5160,0 +52685,0077,460,280,848913037,4312,0 +52686,Wioska+barbarzy%C5%84ska,464,278,699308637,2427,0 +52688,Op+Konfederacja,467,279,848915730,3307,0 +52689,Dzik+4,295,425,8366045,7988,0 +52690,NP+08,306,394,849076810,2944,0 +52692,Wioska+barbarzy%C5%84ska+015,386,312,849068662,2658,0 +52693,W00,324,641,698908184,7754,0 +52694,WOLA0003,682,363,6956104,5233,0 +52695,New+World,429,708,698152377,10291,0 +52696,%5B0263%5D,279,512,8630972,5352,0 +52697,%2A021,674,369,7758085,5797,0 +52698,005,293,586,698663855,8893,0 +52699,%23034%23,638,674,692803,9761,4 +52700,Wioska+barbarzy%C5%84ska,483,274,8630972,4743,0 +52701,Wioska+barbarzy%C5%84ska,380,689,849030086,5664,0 +52702,C0286,281,548,8841266,3882,0 +52703,Piek%C5%82o+to+inni,647,332,848956765,4358,0 +52704,Wioska+barbarzy%C5%84ska,555,711,699828442,5595,0 +52705,-09-,583,709,849032414,9472,0 +52706,P1Kasik,277,452,699627771,7178,0 +52707,Wioska+barbarzy%C5%84ska,388,303,698231772,4559,0 +52708,Wioska+Sir+dziadekk19,612,695,698353083,676,0 +52709,001,279,458,699844314,3303,0 +52710,Wioska+barbarzy%C5%84ska,380,688,849030086,3535,0 +52711,%5B0178%5D,455,281,8630972,7909,0 +52712,Wioska+barbarzy%C5%84ska,719,542,1601917,3126,0 +52713,Wioska+1,295,407,699763225,5806,0 +52714,016,532,726,698996782,4502,0 +52716,Kurnik,443,714,699603116,4063,0 +52717,Piek%C5%82o+to+inni,648,329,848956765,4735,0 +52718,Gryfios+094,720,545,698666810,11365,2 +52719,Po%C5%82udniowy+Wsch%C3%B3d+008,695,610,699778867,1718,0 +52720,KO%C5%81O,656,664,2371436,2689,0 +52721,%23298+C,508,725,9037756,3823,0 +52722,0000028Z,289,560,849089881,9309,0 +52723,New+World,426,706,698152377,10291,0 +52724,010+%7C+North,383,694,699511295,4187,0 +52725,BRAWO+%5B01%5D,629,321,849006385,1722,0 +52726,Wioska+Kostek33,713,449,849095599,3348,0 +52727,U.002,288,564,849088243,8072,0 +52728,Wioska+barbarzy%C5%84ska,725,481,699429153,4729,0 +52729,Wioska+barbarzy%C5%84ska,420,292,698231772,5497,0 +52730,%2136+55+Negostina,657,359,698361257,4732,0 +52731,Wioska+barbarzy%C5%84ska,373,313,698160606,6815,0 +52733,Szlachcic,361,330,698388578,4720,0 +52734,000+Plutosea,317,561,9280477,8495,0 +52735,-01-,580,705,849032414,9472,0 +52736,Wioska+RROO,389,305,849084066,7460,0 +52737,006,469,274,699562874,4167,0 +52738,A%23011,724,492,2065730,9797,4 +52739,MojeDnoToWaszSzczyt,506,276,9299539,9812,0 +52741,Kiedy%C5%9B+Wielki+Wojownik,333,353,8632462,4474,0 +52742,0003+Osada+koczownik%C3%B3w,505,724,699656989,9735,8 +52743,-19-,579,706,849032414,5446,0 +52744,024.+Wioska+barbarzy%C5%84ska,683,369,2873154,5415,0 +52745,Wschodnia+Stra%C5%BCnica,711,437,849101378,9119,0 +52746,Wioska+barbarzy%C5%84ska,370,686,849096945,1314,0 +52747,TYLOS,559,714,6299408,8821,0 +52748,Wioska+barbarzy%C5%84ska,630,322,849102068,2370,0 +52749,jlkllklll,665,343,7646152,6670,0 +52750,Psycha+Siada,335,649,8099868,9835,0 +52751,Z%C5%82oty+%C5%9Awit,585,292,699883079,4583,0 +52752,Avanti%21,273,486,698625834,6321,0 +52753,%23%23%23151%23%23%23,580,681,698285444,10495,0 +52754,Wawel,324,355,849098731,3153,0 +52755,Wioska+b,281,530,699805379,1254,0 +52756,New+World,421,714,698152377,10291,0 +52757,wy...m,597,699,699828685,4157,0 +52758,Wioska+barbarzy%C5%84ska,715,550,698666810,11284,0 +52759,0009,573,707,698723158,5730,0 +52761,%3DSAwars%3D02%3D,565,281,849106420,6461,0 +52763,066.+Nebo,713,546,1601917,5143,0 +52764,Piek%C5%82o+to+inni,657,342,848956765,2366,0 +52765,%230086,576,713,1536231,6073,0 +52766,Wioska+barbarzy%C5%84ska,703,407,8459255,4102,0 +52767,032+Legio+IX+Tempestas,713,579,699878150,1738,0 +52768,Wioska+barbarzy%C5%84ska,274,532,0,1268,0 +52770,Piek%C5%82o+to+inni,644,331,848956765,4215,0 +52771,Wioska+barbarzy%C5%84ska,310,609,6180190,5415,0 +52772,UTAPAU+2,542,722,699383121,388,0 +52773,Wioska+barbarzy%C5%84ska,379,307,698160606,788,0 +52774,%C5%BByleta,681,360,699875213,2311,0 +52775,%2A012,676,364,7758085,8368,0 +52776,PIROTECHNIK+008,349,341,849101083,2318,0 +52777,9.P,461,725,699777372,4740,0 +52778,0156,366,680,7085510,3735,0 +52779,BOSS+N,353,336,849101604,5943,0 +52780,Wioska+barbarzy%C5%84ska,535,283,8240677,6192,0 +52782,Wioska+barbarzy%C5%84ska,400,300,698231772,3462,0 +52783,052.,640,670,699373599,4277,0 +52784,Lord+Arsey+KING,508,527,848956513,8274,0 +52785,Osada+koczownik%C3%B3w,278,519,7530708,2589,7 +52786,0125,696,387,698416970,464,0 +52787,KONFA+TO+MARKA%2C+NARKA,292,435,698152377,10297,0 +52788,Wioska+janusz6161,465,282,699863708,6967,0 +52789,%C5%BBUBEREK+004,613,686,33900,8784,7 +52790,159,389,691,849099876,8242,0 +52791,Wioska+barbarzy%C5%84ska,380,687,849030086,4190,0 +52793,Z%C5%82oty+%C5%9Awit,593,295,699883079,9921,0 +52794,37.,350,581,3990066,1336,0 +52795,KR%C3%93L+PAPI+WIELKI,670,644,698191218,4783,0 +52796,Wioska+barbarzy%C5%84ska,724,474,113796,925,0 +52797,%230082,574,715,1536231,4031,0 +52798,11.+Porsche,463,724,849100262,5550,0 +52799,Osada+koczownik%C3%B3w,344,344,698817235,4660,7 +52800,Wioska+barbarzy%C5%84ska,394,516,698290577,1138,0 +52801,030+VFF+Wioska+barbarzy%C5%84ska,320,365,3108144,1865,0 +52802,Wioska+barbarzy%C5%84ska,326,637,698908184,9725,0 +52803,%230157+barbarzy%C5%84ska,480,275,1238300,5839,0 +52804,%3DSAwars%3D01%3D,565,282,849106420,8512,0 +52805,019+-+Budowanko%21,484,727,7540891,6577,0 +52806,Avanti%21,276,482,698625834,6456,0 +52807,066+Wioska+barbarzy%C5%84ska,340,661,6354098,3266,0 +52808,183,410,700,849099876,9889,2 +52809,001,699,406,849085371,9002,0 +52810,K42+ADAMUS+018,284,425,6212605,4571,0 +52811,%C5%BBUBRAWKA+013,606,625,33900,5581,0 +52812,Wioska+barbarzy%C5%84ska,279,505,8630972,9210,0 +52813,%5B0160%5D,452,285,8630972,8624,0 +52814,wioska+prezesa,304,400,849089601,2129,0 +52815,Piek%C5%82o+to+inni,645,324,848956765,3686,0 +52817,Domek+Miniuka+02,480,726,848999671,4715,0 +52818,New+WorldA,283,525,849084005,1865,0 +52819,Wioska+barbarzy%C5%84ska,670,639,698191218,4380,0 +52820,0020+Wioska+piratwoj,492,725,699656989,9161,0 +52821,New+World,415,708,698152377,5463,0 +52822,Wioska+barbarzy%C5%84ska,395,693,849014922,2771,0 +52823,%5B813%5D+Odludzie,712,430,848985692,6559,0 +52824,Raskipek,349,339,849021566,1636,0 +52825,Hacperek,361,329,698906190,5000,0 +52826,010,304,610,699356968,4612,0 +52827,%230053,579,714,1536231,6339,0 +52828,Kapitol_03,505,723,606407,7908,0 +52829,sh05,512,278,7064954,4264,0 +52830,%23155%23,656,666,692803,6152,0 +52831,komandos,662,651,7976264,4192,0 +52832,3.Bristol,593,700,698215322,9949,9 +52833,027,726,467,849091105,9922,0 +52834,FP0001%2C5,469,723,699605333,10838,0 +52835,WZ04,701,605,7142659,5336,0 +52836,CastAway+%23013,705,588,9314079,3995,0 +52838,Wioska+SirPatryk22,563,713,6870350,8856,0 +52839,W01,319,638,698908184,5033,0 +52840,kww01,722,545,8976313,5318,0 +52842,Gryfios+099,720,552,698666810,11876,0 +52843,036.+HiiimsNest,684,369,2873154,4204,0 +52844,North+090,601,296,849064752,3635,0 +52845,Wioska+barbarzy%C5%84ska,274,503,0,1683,0 +52846,Nie+wiesz+w+co+si%C4%99+pchasz+%3AD,273,508,849105417,1926,0 +52847,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,553,720,699828442,9806,0 +52848,019,300,478,2418364,1557,0 +52849,Psycha+Siada,334,650,8099868,8958,0 +52850,Piek%C5%82o+to+inni,639,327,848956765,4238,0 +52851,B005,521,278,699485250,7850,0 +52852,Mordownia+6,705,595,849101029,6204,0 +52854,Wioska+barbarzy%C5%84ska,301,599,698167138,1601,0 +52855,023+Bluethorn+City,722,484,699441366,8238,0 +52856,Wioska+barbarzy%C5%84ska,725,490,698191218,3610,0 +52857,Psycha+Siada,332,651,8099868,9835,0 +52858,FP039,479,725,699605333,5013,0 +52859,Wioska+-+002+-,533,279,848982634,2453,0 +52860,067.,717,465,849094609,3341,0 +52862,komandos,668,652,7976264,3976,0 +52863,%C5%81%C3%B3d%C5%BA,535,657,529552,12154,0 +52864,X011,711,425,699722599,6039,0 +52865,Dalej+nic,691,610,849101652,9528,0 +52866,Grzejdas+1,698,387,849057764,9955,0 +52867,Zaplecze+Barba+023,358,329,699796330,5722,0 +52868,K33,311,389,699794765,2454,7 +52869,Wioska+barbarzy%C5%84ska,715,537,848946700,1944,0 +52870,Avanti%21,275,492,698625834,5432,0 +52871,083,367,546,6853693,10495,0 +52872,Wioska+barbarzy%C5%84ska,371,311,3484132,5686,0 +52873,Po%C5%82udniowy+Wsch%C3%B3d+009,694,607,699778867,1533,0 +52874,.achim.,650,329,6936607,4046,0 +52875,nasza+plemie.rezerw.,678,371,849105232,1056,0 +52876,%7B54%7D+Siemirowice,373,688,849096945,873,0 +52877,Wioska+barbarzy%C5%84ska,380,307,195249,2397,0 +52878,022+Z,728,499,699718269,2578,0 +52879,Szlachcic,372,317,698160606,9509,0 +52880,Psycha+Siada,334,653,8099868,9835,0 +52882,New+World,412,707,698152377,10291,0 +52883,Bekas,431,285,947923,5454,0 +52884,Smrodowo,715,433,849102480,8169,8 +52885,019+%7C+North,372,686,699511295,1764,0 +52886,.achim.,567,285,6936607,3979,0 +52887,Plaza+de+Santa+Ana,375,679,7085510,3030,0 +52888,No.28,474,718,698826986,758,0 +52889,P%C3%B3%C5%82nocny+Bagdad,623,312,8847546,6883,0 +52890,Z%C5%82oty+%C5%9Awit,586,302,699883079,8485,0 +52891,Magiczne+koszary,447,722,848935389,9809,0 +52893,B007,523,278,699485250,9056,0 +52894,Piek%C5%82o+to+inni,655,335,848956765,3059,0 +52895,Wioska+barbarzy%C5%84ska,415,290,698231772,6884,0 +52896,%3D102%3D+Wioska+barbarzy%C5%84ska,705,597,3781794,1448,0 +52897,kamilkaze135+%2314,687,387,699705601,4144,0 +52898,Cisza,282,554,698769107,2738,0 +52899,013+Twierdza,632,680,849104328,8430,0 +52900,A%23013,721,515,2065730,9797,8 +52902,006+Wioska+E,281,565,6240801,3232,0 +52903,XDX,610,305,699098531,4313,0 +52905,Wioska+barbarzy%C5%84ska,692,380,7973893,6594,0 +52907,A-2,672,359,849095509,5483,0 +52908,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,552,721,699828442,9805,0 +52909,Wioska+niki63,488,722,2730335,6828,0 +52910,Psycha+Siada,334,654,8099868,8760,0 +52911,nowe,626,688,699372829,1616,0 +52912,028+KTW,719,439,848883237,4193,0 +52913,29.+Zangwebar,717,541,8976313,5268,0 +52914,MojeDnoToWaszSzczyt,489,273,9299539,4952,0 +52915,KONFA+TO+MARKA%2C+NARKA,293,416,698152377,2242,0 +52916,KONFA+TO+MARKA%2C+NARKA,278,450,698152377,4539,0 +52917,Kurnik,443,713,699603116,5011,0 +52918,065,519,386,698739350,4936,0 +52919,Wioska+LordFrotto,562,332,849106785,7253,0 +52920,014,304,403,8724192,842,0 +52921,XDX,615,311,699098531,3520,0 +52922,104+Wioska,540,278,699854484,9899,0 +52923,Psycha+Siada,332,650,8099868,9728,0 +52924,%3D103%3D+Wioska+barbarzy%C5%84ska,702,598,3781794,2688,0 +52925,001+%C5%BBelazna+Twierdza,550,723,8015775,9707,0 +52926,Wioska+barbarzy%C5%84ska+014,385,310,849068662,2747,0 +52927,Wioska+barbarzy%C5%84ska,705,419,848902592,7712,0 +52928,21.+Wioska+21,279,561,849091769,4172,0 +52929,%3D104%3D+Wioska+barbarzy%C5%84ska,708,575,3781794,3247,0 +52930,Wioska+HENRYK321,415,299,849089654,1063,0 +52931,Wioska+barbarzy%C5%84ska,396,701,849014922,6486,0 +52932,Zata%C5%84czymy+Poloneza+%3B%5D,493,272,848918262,7799,0 +52933,KONFA+TO+MARKA%2C+NARKA,282,436,698152377,7188,0 +52934,34.+Ebbing,718,539,8976313,6503,0 +52935,013,307,399,8724192,739,0 +52936,New+World,278,509,849084005,6196,0 +52937,Kurnik,448,718,699603116,9463,0 +52938,002,689,611,3589487,7399,8 +52939,wy...,602,704,699828685,7208,0 +52940,Wioska+grek159,296,592,1646837,2326,0 +52941,Wioska+barbarzy%C5%84ska,325,360,0,939,0 +52942,Kurnik,453,719,699603116,8680,0 +52943,Beyaz+Tavsan,525,725,849102336,3899,0 +52944,P2Kasik,277,450,699627771,1873,5 +52945,North+023,511,273,849064752,7798,0 +52946,ABC,579,289,849112029,2550,0 +52947,0000031Z,279,555,849089881,5598,0 +52948,Po%C5%82udniowy+Wsch%C3%B3d+012,690,610,699778867,1958,0 +52949,Wioska+Maliniak77,635,336,7428666,4696,0 +52950,Wioska+barbarzy%C5%84ska,409,298,698231772,7634,0 +52951,Wiocha+8,557,722,849045675,3483,0 +52953,Wioska+0020,341,651,9186126,7617,0 +52954,Avanti%21,278,476,698625834,5584,0 +52955,Wioska+barbarzy%C5%84ska+13,337,342,698757439,6932,0 +52956,%3D105%3D+Wioska+barbarzy%C5%84ska,707,591,3781794,3030,0 +52957,Nowe+Dobra+-+budowa,690,624,699759128,5733,0 +52958,Kapitol_06,503,724,606407,5697,0 +52959,KONFA+TO+MARKA%2C+NARKA,286,445,698152377,10300,0 +52960,jeziora+dlugie,297,411,698677650,1772,0 +52961,Wioska+barbarzy%C5%84ska,550,721,699828442,9744,0 +52962,026,467,725,8268010,5728,0 +52963,BRAWO+%5B02%5D,630,320,849006385,1679,0 +52964,%7CD%7C+IS,458,725,698147372,2583,0 +52965,%23038,557,286,849064614,2308,0 +52966,Wioska+barbarzy%C5%84ska,661,338,699072129,4198,0 +52967,Wioska+barbarzy%C5%84ska+004,379,316,849068662,9277,0 +52968,Psycha+Siada,325,645,8099868,9138,0 +52969,R+043,501,720,699195358,4024,0 +52970,002b,299,409,8259895,3769,0 +52971,Wioska5,705,580,699266530,9242,0 +52972,017+Twierdza,633,679,849104328,5149,0 +52973,.7.,699,400,699562182,5848,1 +52974,Podzamcze,299,603,1276665,2336,0 +52975,%5B0203%5D,278,500,8630972,6810,0 +52976,024+VFF+IJN+Nagato,315,367,3108144,5700,8 +52977,Z01,704,602,3986807,1273,0 +52978,K33,311,380,699794765,2329,0 +52979,Gubernia+03+Barbarzy%C5%84ska,368,313,849107532,1829,0 +52980,Wioska+barbarzy%C5%84ska,429,288,698231772,4439,0 +52981,%3D117%3D+Ramboq123,711,575,3781794,4880,0 +52982,Zygfryd,379,691,849030086,7065,0 +52983,%23018+NOWE+IMPERIUM+STRONG,617,696,698353083,10292,4 +52984,Wioska+Vi-vali,523,272,6118079,3860,0 +52985,Wioska+029,668,359,7226782,3672,0 +52986,KONFA+TO+MARKA%2C+NARKA,287,423,698152377,2534,0 +52987,Wioska+barbarzy%C5%84ska,649,663,848987051,7318,0 +52988,PPF-23,533,273,1424656,3004,0 +52989,Banicja+01,348,329,698757439,9758,0 +52990,034,684,624,699099811,3595,0 +52991,Wioska+Kiubi5,710,586,3692413,4390,0 +52992,%5BB%5D004,416,702,9195661,2267,0 +52993,037+KTW,720,448,848883237,2824,0 +52994,024,287,417,6131106,2395,0 +52995,Wioska+barbarzy%C5%84ska,448,277,699191449,1766,0 +52996,%230246+colt9,432,283,1238300,5271,0 +52997,Wioska+a3,431,282,6343784,2814,0 +52998,K42+ADAMUS+009,286,431,6212605,8111,0 +52999,C-004,325,361,699406247,3608,0 +53000,Bagno+14,480,718,848883684,8261,0 +53001,Ghostmane,720,445,848896434,5912,0 +53002,Wioska+barbarzy%C5%84ska,293,576,849101771,2249,0 +53003,009,524,715,698996782,10237,0 +53004,Wioska+barbarzy%C5%84ska,659,336,849111196,5646,0 +53005,XDX,615,310,699098531,6258,0 +53006,8.P,458,723,699777372,4844,0 +53007,%3F%3F%3F%3F,480,280,698489071,5610,0 +53008,Z%C5%82oty+%C5%9Awit,585,297,699883079,6613,0 +53009,Wioska+barbarzy%C5%84ska,314,628,698908184,5463,0 +53010,%5B0188%5D,291,498,8630972,6596,0 +53012,Bilbao,645,671,747422,2494,0 +53013,olchowa,589,702,6870350,6312,0 +53014,wioska+XVI,680,377,698635863,6233,0 +53015,058+Osada+koczownik%C3%B3w,342,663,6354098,4404,7 +53017,Wioska+barbarzy%C5%84ska,725,470,699574408,3884,0 +53018,02+Mario+76,636,325,6517826,2963,0 +53019,%C5%9Aw181%2A002,661,343,959179,4137,0 +53020,008,524,714,698996782,10409,0 +53021,Flap,612,301,699098531,7043,0 +53022,MojeDnoToWaszSzczyt,494,276,9299539,9949,0 +53023,Wioska+barbarzy%C5%84ska,369,317,8772425,2450,0 +53024,Wioska+barbarzy%C5%84ska+14,337,339,698757439,6387,0 +53025,Wioska+barbarzy%C5%84ska,359,327,6416213,1088,0 +53026,Wioska+049,701,606,848971079,9761,0 +53027,000+Dioda,607,504,849095240,9260,0 +53028,Wioska+barbarzy%C5%84ska,725,509,6510480,4708,0 +53029,Wioska+005,671,352,7226782,5010,0 +53030,131,386,698,849099876,9278,0 +53031,Wioska+barbarzy%C5%84ska,727,493,698191218,3845,0 +53032,128,381,691,849099876,9279,0 +53033,Inia+City,298,413,849104818,4160,0 +53034,002,280,456,699844314,2228,0 +53035,M002,475,275,699208929,7366,0 +53036,0146,367,675,7085510,5306,0 +53037,Wioska+barbarzy%C5%84ska,326,636,698908184,9697,0 +53038,Wioska+barbarzy%C5%84ska+04,343,338,698757439,10495,0 +53039,Piek%C5%82o+to+inni,640,331,848956765,3964,0 +53041,KONFA+TO+MARKA%2C+NARKA,288,414,698152377,2427,0 +53042,Wioska+barbarzy%C5%84ska,691,385,698702991,3133,0 +53043,.achim.,567,287,6936607,3612,0 +53044,Psycha+Siada,330,641,8099868,9835,7 +53045,0402,573,714,698659980,9811,0 +53046,Piek%C5%82o+to+inni,649,335,848956765,4722,0 +53047,Wioska+Fermer,292,571,849105408,2183,0 +53048,047,667,651,2323859,1725,0 +53049,Wywia%C5%82o+daleko,710,416,699785935,4322,0 +53050,WOLA0004,681,361,6956104,4825,0 +53051,kathare,534,718,873575,9960,0 +53052,Wioska+008,673,350,7226782,3540,0 +53053,wy...,601,704,699828685,8705,0 +53054,Osada+koczownik%C3%B3w,368,321,3698627,5226,7 +53055,003,279,456,699844314,2177,0 +53056,%230066,573,715,1536231,5126,0 +53057,%5BS%5Dzczupak,276,548,849106971,6332,0 +53058,Lord+Arsey+KING,655,658,848956513,4418,0 +53059,031+Wioska,690,387,699671454,1940,0 +53060,052,695,619,699099811,2529,0 +53061,027+Rustboro+City,727,488,699441366,11109,0 +53062,Kapitol_07,502,722,606407,5832,0 +53063,011+Garkonia,672,640,849102108,1452,0 +53064,CastAway+%21019,710,591,9314079,5833,0 +53065,A-4,672,361,849095509,2439,0 +53066,006,327,644,8752714,2655,0 +53067,%23Kresy,628,686,2665207,2142,0 +53068,KONFA+TO+MARKA%2C+NARKA,283,441,698152377,8287,0 +53069,053,693,618,699099811,1849,0 +53070,026%C5%9Anieg,470,720,698620694,5152,0 +53071,o010,609,699,699189792,7079,0 +53072,242...NORTH,444,282,6920960,2927,0 +53073,%230071,572,714,1536231,4351,0 +53075,Wioska+barbarzy%C5%84ska,320,631,698908184,5220,0 +53076,Wioska+barbarzy%C5%84ska,322,363,0,1093,0 +53077,Wioska+barbarzy%C5%84ska,538,726,6116940,5240,0 +53078,Wioska,284,575,849097123,8026,0 +53079,Wioska24,332,350,699711926,4526,0 +53080,0452,565,710,698659980,9146,0 +53081,029,400,706,849099876,10495,0 +53082,006,664,340,849020094,5130,0 +53083,Orgetoryks,329,354,848998530,3508,0 +53084,003,536,722,698996782,5480,0 +53085,Wiocha,690,376,699803189,2275,0 +53086,bagienko_02,567,281,849093353,5036,0 +53087,_002_,419,291,9283142,6354,0 +53088,BOA3,310,620,699829494,4775,7 +53089,mija,303,396,849089601,1174,0 +53090,Amogus,724,537,17714,1351,0 +53092,C0287,279,539,8841266,4396,0 +53093,Wioska+barbarzy%C5%84ska,298,605,699604515,523,0 +53094,Nowe+Dobra+-+budowa,689,627,699759128,5136,0 +53095,Wioska+barbarzy%C5%84ska,336,659,6910361,1043,0 +53096,KR%C3%93L+PAPI+WIELKI,725,517,698191218,6245,0 +53097,.achim.,488,278,6936607,8947,9 +53098,Piek%C5%82o+to+inni,651,327,848956765,4313,0 +53099,Wioska+barbarzy%C5%84ska,724,532,17714,4301,0 +53100,Winterhome.031,513,312,8400180,10075,0 +53101,Kuzyn+B%C5%82a%C5%BCej,580,715,849098628,6049,0 +53102,komandos,663,652,7976264,4147,0 +53103,030+KTW,724,452,848883237,3338,0 +53104,3.Londyn,579,704,698215322,9974,8 +53105,wwwb,598,707,699828685,3298,0 +53106,Taran,313,619,6180190,8006,0 +53107,Nowe+IMPERIUM+1,617,686,698353083,3485,0 +53108,0150,703,601,699429153,8818,0 +53109,002,533,719,698996782,10237,0 +53110,azi5,461,717,849094759,2129,0 +53111,egon,440,567,8438707,7211,0 +53112,%2A204%2A,291,407,699273451,9968,0 +53113,Wioska+barbarzy%C5%84ska,717,458,849095599,2872,0 +53114,Piek%C5%82o+to+inni,648,331,848956765,5226,0 +53115,Zaplecze+Barba+027,356,332,699796330,5027,0 +53116,071+Wioska+barbarzy%C5%84ska,540,276,699854484,9386,0 +53117,210,397,296,698365960,8449,0 +53118,C0310,279,536,8841266,3005,0 +53119,%5B829%5D+Odludzie,720,435,848985692,6237,0 +53120,Wioska+barbarzy%C5%84ska,552,722,699828442,9632,0 +53121,Chile,724,542,848946700,6382,0 +53122,063+Wioska+barbarzy%C5%84ska,548,279,699854484,9835,0 +53123,WZ01,700,606,7142659,10362,0 +53124,Zaplecze+drewniane+3,369,323,699796330,9744,1 +53125,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,718,699828442,9805,0 +53126,North+062,539,275,849064752,5149,0 +53127,Osada+koczownik%C3%B3w+01,343,335,698757439,10495,3 +53128,Wioska+Wojka,584,288,8609713,5690,0 +53129,B018,625,319,8740199,1950,0 +53130,%23004,550,277,849064614,9063,0 +53131,055.,639,674,699373599,3042,0 +53132,Wioska+Gregor20-90,514,721,698934729,6526,0 +53133,B031,632,314,8740199,10227,8 +53134,Wioska+barbarzy%C5%84ska,306,382,1267913,4880,0 +53135,%23K75+0021,521,718,699728159,4003,0 +53136,C0233,282,537,8841266,7563,0 +53137,181,388,689,849099876,10019,0 +53138,z+Wioska+barbarzy%C5%84ska+15,358,362,3909522,5833,0 +53139,4.D,532,277,699146580,1623,0 +53140,Wioska+barbarzy%C5%84ska,435,628,6910361,3926,0 +53141,Mordownia+7,705,596,849101029,6525,0 +53142,Wioska+Grucha125,285,574,498483,8245,0 +53143,Wioska+b,516,726,849101102,7441,0 +53144,Wioska+barbarzy%C5%84ska,698,395,699598425,4062,0 +53145,Lord+Arsey+KING,659,650,848956513,7301,0 +53146,0015,468,726,699656989,7784,0 +53147,Wioska+barbarzy%C5%84ska,312,374,699660539,1559,0 +53148,Avanti%21,275,472,698625834,2618,0 +53149,%24002%24+MSI,303,623,699550876,9828,0 +53150,011,606,305,699117992,2832,0 +53151,A%23033,719,528,2065730,9797,2 +53152,004+maniu%C5%9B,284,552,197581,6772,0 +53153,026+Wioska+barbarzy%C5%84ska,544,284,699854484,10068,0 +53155,080+Wioska+barbarzy%C5%84ska,347,668,6354098,4278,0 +53156,New+World,431,715,698152377,4023,0 +53157,WZ03,700,605,7142659,7630,0 +53158,Wioska+barbarzy%C5%84ska,414,295,698231772,6383,0 +53159,Wioska+%5B1%5D,724,511,699858313,6399,0 +53160,%3F%3F%3F%3F,472,274,698489071,4530,0 +53161,a+Kraken121,563,718,849038985,2059,0 +53162,Avanti%21,276,471,698625834,4279,0 +53163,011,284,424,6131106,7570,0 +53164,C0282,281,543,8841266,4353,0 +53165,C0239,272,524,8841266,10416,1 +53166,Wioska+barbarzy%C5%84ska+05,341,336,698757439,10349,0 +53167,Psycha+Siada,332,641,8099868,8564,0 +53168,Wioska+LOLA1982,502,279,2569868,1176,0 +53169,Psycha+Siada,333,653,8099868,8867,0 +53170,Wioska+barbarzy%C5%84ska,277,457,699213622,3531,0 +53171,%2A024%2At,683,624,1205898,7714,0 +53172,Avanti%21,274,480,698625834,5987,0 +53173,Wioska+barbarzy%C5%84ska,661,337,699072129,4595,0 +53174,Nowe+Dobra+-+budowa,686,627,699759128,5897,0 +53175,SALEM,293,401,7259690,1208,0 +53176,Wioska+005,315,378,699424741,4485,0 +53177,%5B819%5D+Odludzie,710,441,848985692,6542,0 +53178,Wioska+barbarzy%C5%84ska,276,464,699213622,4554,0 +53179,--039--,573,288,542253,5736,0 +53180,Wioska+barbarzy%C5%84ska,413,292,698231772,7281,0 +53181,26.+Maecht,724,547,8976313,9875,0 +53182,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,719,8201460,4543,0 +53184,-006-,723,499,7418168,8614,0 +53185,C0295,274,530,8841266,4139,0 +53186,Wiadro19,675,631,8677963,2441,0 +53187,NP+05,305,392,849076810,4132,0 +53188,Kobylany,588,701,699837483,2728,0 +53189,KONFA+TO+MARKA%2C+NARKA,285,433,698152377,6178,0 +53190,North+050,512,272,849064752,9199,0 +53191,P%C3%B3%C5%82nocny+Bagdad,628,318,8847546,2766,0 +53192,rafisonik10,513,720,849101108,4213,0 +53193,C0300,278,537,8841266,4184,0 +53194,Wioska+barbarzy%C5%84ska,727,465,699574408,8000,0 +53195,0017,681,631,6417987,1807,0 +53196,Motorola+03,363,318,698806018,8373,0 +53197,Wioska+barbarzy%C5%84ska,571,284,6936607,1880,0 +53198,Wioska+barbarzy%C5%84ska,367,324,3698627,4087,0 +53200,Wolgast,338,655,849092685,2341,0 +53201,New+World,433,718,698152377,10294,6 +53202,031+Verdanturf+Town,721,480,699441366,7485,0 +53203,Wioska+barbarzy%C5%84ska,714,574,2453888,4827,0 +53204,nowy+pocz%C4%85tek+%3A%29,392,700,2308351,3859,0 +53205,Wioska+barbarzy%C5%84ska+007,376,314,849068662,6205,0 +53207,High+commissioner,303,400,849089601,6007,0 +53208,%3D106%3D+Wioska+barbarzy%C5%84ska,707,572,3781794,2283,0 +53209,7.62+mm,423,396,699777234,3460,0 +53210,C.050,718,470,9188016,4154,0 +53212,Wioska+3,550,279,7427966,2481,0 +53213,Wioska+barbarzy%C5%84ska,724,463,699574408,2605,0 +53214,Wioska004,690,386,698768565,8167,0 +53215,Wioska+barbarzy%C5%84ska+005,378,315,849068662,7813,0 +53216,xxx,697,600,6921135,9323,0 +53217,Wioska+barbarzy%C5%84ska,331,653,849097175,353,0 +53218,Wioska+barbarzy%C5%84ska,725,465,699574408,3249,0 +53219,046+Wioska+barbarzy%C5%84ska,547,281,699854484,9835,0 +53220,077+Wioska+barbarzy%C5%84ska,349,667,6354098,5334,0 +53221,--019--,575,293,542253,8059,0 +53222,%2307%21,637,677,849101884,2780,0 +53223,FAKE+OR+OFF,400,299,698231772,9812,3 +53224,Wioska+STALLON327,475,272,1553481,2065,0 +53225,Rze%C5%BAnia+2,708,590,849101029,7426,0 +53226,Wioska+Pracz+4,307,622,8916982,6332,0 +53227,azi7,460,723,849094759,2084,0 +53228,%5B0166%5D,456,286,8630972,8484,0 +53229,Wioska+barbarzy%C5%84ska,427,289,698231772,3705,0 +53230,Wioska+Kristoffs,341,337,698757439,10971,0 +53231,Wioska+barbarzy%C5%84ska,370,318,8772425,2539,0 +53233,Krak%C3%B3w,408,293,3411571,3016,0 +53234,Wioska+barbarzy%C5%84ska,725,535,17714,2975,0 +53235,Wioska+barbarzy%C5%84ska,705,400,699598425,3316,0 +53236,Wioska+barbarzy%C5%84ska,723,534,17714,2695,0 +53237,Wioska+barbarzy%C5%84ska,283,573,849097123,1157,0 +53240,134,386,690,849099876,7454,0 +53241,Wioska+barbarzy%C5%84ska,298,614,698167138,1477,0 +53242,Brzeg+Dolny,677,640,848932879,2995,0 +53243,rafisonik8,514,720,849101108,3293,0 +53244,PPF-21,533,275,1424656,3753,0 +53245,Osada+koczownik%C3%B3w,425,714,849100814,2835,2 +53246,komandos,668,649,7976264,4203,0 +53247,New+WorldA,280,531,849084005,3928,0 +53248,K42+ADAMUS+012,281,430,6212605,6512,0 +53249,054,695,618,699099811,2481,0 +53250,E02,305,387,6301789,2716,0 +53251,New+World,431,713,698152377,10290,0 +53252,Psycha+Siada,327,647,8099868,4715,0 +53253,BIMBER+7,444,286,6857973,2063,0 +53254,komandos,662,655,7976264,5168,0 +53255,Wioska+002,671,347,7226782,5266,0 +53257,K42+ADAMUS+008,282,433,6212605,8474,0 +53258,001,609,300,1775957,2637,0 +53259,Wioska+barbarzy%C5%84ska,533,283,8240677,6593,0 +53260,K67+28,703,607,698867483,2842,0 +53261,Babidi+%232,375,318,849101962,6954,0 +53262,Kapitol_10,505,726,606407,5966,0 +53263,Wioska+Vocare,603,341,849083293,3603,0 +53264,Wioska+barbarzy%C5%84ska,706,422,848902592,2747,0 +53265,Szlachcic,373,316,698160606,6137,0 +53266,_003_,420,288,9283142,4390,0 +53267,New+World,437,714,698152377,8757,0 +53268,C0296+%28Bandii.%29,285,550,698769107,1917,0 +53269,Wioska+barbarzy%C5%84ska,698,393,699598425,4421,0 +53270,050.,595,454,849094609,2593,0 +53271,komandos,669,654,7976264,3875,0 +53272,New+World,428,708,698152377,10292,0 +53273,102.Stradi,422,285,698365960,9726,0 +53274,KASHYYYK+2,568,719,699383121,1909,0 +53275,Wioska+Myszka21,337,662,849064087,401,0 +53276,zzz,595,701,8773967,3514,0 +53277,%230256+barbarzy%C5%84ska,444,278,1238300,1738,0 +53278,Wioska+barbarzy%C5%84ska,383,304,698231772,3226,0 +53279,Wioska+011,673,352,7226782,3442,0 +53280,kathare,529,727,873575,9557,5 +53281,komandos,667,656,7976264,6772,0 +53282,Kiedy%C5%9B+Wielki+Wojownik,331,355,8632462,4933,0 +53284,%23201+C,512,733,9037756,4435,0 +53285,Branco+coelho,523,723,849102336,6088,0 +53288,%230076,572,718,1536231,4215,0 +53290,Atlantyda,706,413,699785935,3928,0 +53291,095,725,507,7085502,2752,0 +53293,Bombai,291,580,2717161,3171,0 +53294,Lord+Arsey+KING,656,660,848956513,6079,0 +53295,Barcelona,646,674,747422,3195,0 +53296,Wioska+barbarzy%C5%84ska,412,288,698231772,7044,0 +53297,096,726,506,7085502,2752,0 +53298,Taran,321,626,6180190,8105,0 +53299,Wioska+barbarzy%C5%84ska,403,293,698231772,6760,0 +53300,EO+EO,273,502,699697558,8107,1 +53301,Wioska+janush4,648,674,747422,5045,0 +53302,wioska,643,323,849102068,10200,2 +53303,Wioska+wodzu+22s,613,692,8292737,6928,0 +53305,0162,385,689,7085510,3261,0 +53306,osada+3,662,349,7357503,3610,0 +53307,Wioska+barbarzy%C5%84ska,368,315,3484132,5402,0 +53308,zenon,376,687,849030086,9686,0 +53309,KONFA+TO+MARKA%2C+NARKA,277,449,698152377,4303,0 +53310,BETON+090.......,664,651,7976264,7404,0 +53311,059.,638,679,699373599,2458,0 +53312,005+Wioska+D,285,569,6240801,4022,0 +53313,Wioska17,332,345,699711926,5373,0 +53314,Ghostmane1,721,444,848896434,2806,0 +53315,Wioska+barbarzy%C5%84ska,325,631,698908184,7095,0 +53316,Wioska+forestrr,598,301,8852026,7463,0 +53317,Kapitol_14,502,726,606407,4373,0 +53318,Kurnik,452,716,699603116,8238,0 +53319,097,386,697,849099876,10495,2 +53321,C100,355,665,699383279,5264,0 +53322,7.62+mm,466,426,699777234,3891,0 +53323,Z%C5%82oty+%C5%9Awit,593,298,699883079,8605,0 +53324,027+KTW,722,441,848883237,6199,0 +53325,Ghostmane8,720,442,848896434,1654,0 +53326,K42+ADAMUS+014,284,428,6212605,5384,0 +53327,Wyspa+007,290,567,225023,10495,0 +53328,41.+Wioska+41,282,563,849091769,8545,0 +53329,New+World,422,707,698152377,10290,0 +53330,mmutla+o+mosweu,521,721,849102336,1758,0 +53331,Taka.,483,726,848999671,4522,0 +53332,Wioska+barbarzy%C5%84ska,373,312,698160606,9898,0 +53333,Little+thing,694,617,849101652,6558,5 +53334,%2A022%2A,687,626,1205898,6119,0 +53335,Wioska+barbarzy%C5%84ska,717,427,699524891,3400,0 +53336,cypel,527,275,6118079,5007,0 +53337,farma+to+darma,528,722,6116940,1787,0 +53338,New+World,428,709,698152377,10290,0 +53339,-32-,585,706,849032414,5649,0 +53340,Wioska+barbarzy%C5%84ska,589,709,7756002,4542,0 +53341,027.+Gloria+Victis,280,557,848886973,6201,0 +53342,Wioska+Kuzniakers,722,519,699734445,3102,0 +53343,New+World,433,720,698152377,10294,0 +53344,Wioska+barbarzy%C5%84ska,718,571,2453888,5477,0 +53345,%5B809%5D+Odludzie,713,437,848985692,6145,0 +53346,Wioska+barbarzy%C5%84ska,276,461,699213622,3703,0 +53348,Wioska+Teletubisi%C3%B3w,716,428,849102480,3961,0 +53349,%23033%23,652,665,692803,9761,4 +53350,032,454,719,8268010,1497,0 +53352,stachod%C5%BCons+2,594,291,849101409,3531,0 +53353,5-Wioska+-AC-OB,693,613,1205898,1623,0 +53354,Wioska+barbarzy%C5%84ska,320,363,0,658,0 +53355,16+ta,720,474,849101845,9811,0 +53356,Wioska+barbarzy%C5%84ska,726,496,698191218,4034,0 +53357,NoeyPL+4,333,558,849000135,5286,0 +53358,O153,299,612,272173,2138,0 +53359,Osada+koczownik%C3%B3w,271,490,699697558,7004,4 +53360,KONFA+TO+MARKA%2C+NARKA,276,447,698152377,6784,0 +53361,Wioska+barbarzy%C5%84ska,718,465,699574408,3389,0 +53362,C.051,718,469,9188016,3001,0 +53363,KONFA+TO+MARKA%2C+NARKA,292,427,698152377,4276,0 +53364,Wioska+barbarzy%C5%84ska,408,294,849102150,1384,0 +53365,Wioska+barbarzy%C5%84ska,648,665,848987051,7126,0 +53366,komandos,663,656,7976264,6357,0 +53367,tomek016+VII,691,566,8811880,460,0 +53368,015+-+Budowanko%21,493,724,7540891,6766,0 +53369,Wioska+barbarzy%C5%84ska,284,578,848988401,2773,0 +53370,kamilkaze135+%2317,685,369,699705601,3008,0 +53371,Wioska+barbarzy%C5%84ska,713,423,848902592,2485,3 +53372,Wioska+barbarzy%C5%84ska,414,296,698231772,5535,0 +53373,002,300,394,849109795,3741,0 +53374,0119,377,694,7085510,8518,9 +53375,Szulernia,392,375,7249451,1806,0 +53376,Wioska+barbarzy%C5%84ska,563,721,699828442,4566,0 +53377,Wioska+SHIZA,318,376,698766369,1957,0 +53378,Wioska+barbarzy%C5%84ska,721,549,698666810,11116,0 +53379,276...DEL,462,308,6920960,11781,0 +53380,069.+Napier,718,529,1601917,4391,0 +53381,028.+Gloria+Victis,282,556,848886973,5882,0 +53382,Wioska,328,636,698908184,5947,0 +53383,Wioska+barbarzy%C5%84ska,540,726,699878511,6657,0 +53384,Wioska+barbarzy%C5%84sko,579,712,7756002,6869,0 +53385,Wioska+barbarzy%C5%84ska,720,466,699574408,2907,0 +53386,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,718,8201460,10237,0 +53387,P%C3%B3%C5%82nocny+Bagdad,625,310,8847546,6978,0 +53388,Rosa,577,712,6882236,8715,0 +53389,%230174+darmuwa,475,278,1238300,5896,0 +53390,Wioska+barbarzy%C5%84ska,725,527,698191218,3814,0 +53391,B006,522,278,699485250,7520,0 +53392,New+World,425,712,698152377,9983,0 +53393,0016,471,726,699656989,8554,0 +53394,001,295,534,848886200,7267,0 +53395,Kapitol_19,502,730,606407,5135,0 +53396,Wioska+barbarzy%C5%84ska,410,293,849089654,470,0 +53397,.achim.,486,274,6936607,7868,2 +53399,Wioska+barbarzy%C5%84ska+02,339,337,698757439,10495,0 +53400,Wioska+0015,340,654,9186126,8990,0 +53401,Ghostmane4,727,452,848896434,3043,0 +53402,Zaplecze+Barba+026,355,336,699796330,5740,0 +53403,Wioska+barbarzy%C5%84ska,319,363,0,5140,0 +53404,North+076,519,275,849064752,4245,0 +53405,074+Wioska+barbarzy%C5%84ska,344,667,6354098,3593,0 +53406,%23115%23,652,670,692803,5236,0 +53407,Z%C5%82oty+%C5%9Awit,596,294,699883079,8873,1 +53408,Bia%C5%82a+Podlaska+1,438,713,849100787,6913,0 +53410,062,692,621,699099811,655,0 +53411,Wioska+barbarzy%C5%84ska,415,666,699736927,1416,0 +53412,Wioska+wilka+02,716,562,6786449,9582,0 +53413,Lord+Arsey+KING,663,648,848956513,6951,0 +53414,kww04,718,544,8976313,4188,0 +53415,005,302,393,849109795,1377,0 +53416,%5B811%5D+Odludzie,714,436,848985692,7224,0 +53417,KONFA+TO+MARKA%2C+NARKA,287,422,698152377,3467,0 +53418,Wioska+barbarzy%C5%84ska,691,607,699778867,826,0 +53419,Avanti%21,279,474,698625834,5997,0 +53421,New+WorldA,277,540,849084005,1571,0 +53422,Wioska+barbarzy%C5%84ska,714,568,2453888,9708,0 +53423,-+169+-+SS,548,688,849018239,9264,0 +53424,osada+2,663,347,7357503,4923,0 +53426,040.xxx,522,725,8612358,2049,0 +53427,Wioska+dla+gie%C5%82dy,437,718,1406042,8318,0 +53428,Wioska+barbarzy%C5%84ska,727,512,6510480,3875,0 +53429,Wioska+Sessue,512,676,8501514,4175,0 +53430,kamilkaze135+%2315,691,374,699705601,3768,0 +53431,Wioska+barbarzy%C5%84ska,706,420,848902592,5623,0 +53432,.achim.,575,286,6936607,5485,0 +53433,Osada+koczownik%C3%B3w+02,339,339,698757439,10495,2 +53434,WZ06,699,608,7142659,4226,0 +53435,Wioska+barbarzy%C5%84ska,699,395,699429153,5457,0 +53436,Twierdza+%28Why%3F%29,474,648,0,6873,32 +53437,Twierdza+%28-LM-%29,533,450,0,2608,25 +53438,014.+Carbonara,315,379,849102092,5689,0 +53439,Wioska+barbarzy%C5%84ska+11,347,334,698757439,6888,0 +53440,C-005,322,356,699406247,4132,0 +53441,Wioska+barbarzy%C5%84ska,644,679,848987051,5910,0 +53442,Betoniarnia,276,455,848907771,1898,0 +53443,Darma+MOOSELOOSE,577,622,699560327,9255,0 +53444,Wioska+barbarzy%C5%84ska,404,291,698231772,6957,0 +53445,011+%7C+North,380,693,699511295,4973,0 +53446,04Wioska+barbarzy%C5%84ska,362,672,699704542,4154,0 +53447,KONFA+TO+MARKA%2C+NARKA,285,450,698152377,10290,0 +53448,Wioska+barbarzy%C5%84ska,690,628,849092827,1032,0 +53449,Alamo,718,566,2723244,2773,0 +53450,023+Z,729,500,699718269,4345,0 +53452,025,398,706,849099876,10495,0 +53453,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,721,8201460,3930,0 +53454,Wioska+barbarzy%C5%84ska,324,632,698908184,9076,0 +53455,%C5%BBUBEREK+003,611,691,33900,9988,5 +53456,Kurnik,451,720,699603116,9068,0 +53457,%5B836%5D+Odludzie,720,438,848985692,5182,0 +53458,The+Game+Has+Only+Just+Begun,356,525,9280477,4674,0 +53459,ZPP+Atleti,727,478,8096537,2952,0 +53460,New+World,411,700,698152377,6740,0 +53461,Ghostmane7,719,450,848896434,2667,0 +53462,3.+Redania,603,698,849101526,1682,0 +53463,058+-+Budowanko%21,506,722,7540891,4190,0 +53464,%2A007,673,365,7758085,6732,0 +53465,Wioska+barbarzy%C5%84ska,324,639,698908184,7553,0 +53466,Wioska+barbarzy%C5%84ska,382,688,849030086,3663,0 +53467,0013+Dziewczyna+z+Poci%C4%85gu,458,726,699656989,9511,0 +53468,1+na+100,709,411,699785935,5574,0 +53470,Wioska+barbarzy%C5%84ska,390,299,3842862,816,0 +53471,K67+04,700,614,698867483,4734,0 +53472,Wioska+barbarzy%C5%84ska,353,665,0,928,0 +53473,Wioska+barbarzy%C5%84ska,322,632,698908184,5526,0 +53474,27.U-KISS,694,421,9180206,7168,0 +53475,020.+Night+Raid,489,729,699684062,5343,0 +53476,K42+ADAMUS+017,282,430,6212605,5757,0 +53477,KONFA+TO+MARKA%2C+NARKA,289,423,698152377,2468,0 +53478,Trunks+Super+Saiyan+003,519,725,699054373,5107,0 +53479,Wioska+3,623,359,849056744,3998,0 +53480,%23011,555,278,849064614,8806,0 +53481,Piek%C5%82o+to+inni,657,338,848956765,2818,0 +53482,Wioska+barbarzy%C5%84ska,367,316,3484132,5788,0 +53483,%7E%7E085%7E%7E,678,636,7829201,2747,0 +53484,-11-,582,708,849032414,8925,0 +53485,028+Legio+IV+Flavia+Felix,713,559,699878150,1578,0 +53486,Wioska+barbarzy%C5%84ska,714,429,699272633,1817,0 +53487,Psycha+Siada,333,645,8099868,9079,0 +53488,E01,723,549,848995478,8650,0 +53489,Kapitol_11,513,722,606407,5954,0 +53491,Wioska+barbarzy%C5%84ska,395,698,849014922,4619,0 +53492,%5B0172%5D,450,282,8630972,7230,0 +53493,Zaplecze+Barba+035,349,335,699796330,3895,0 +53494,009,298,595,698663855,4490,0 +53495,%230056,580,713,1536231,4855,0 +53496,5.E,536,276,699146580,1252,0 +53497,%23006+Zenitizm+to+styl+%C5%BCycia,279,444,849096215,1104,0 +53498,Wioska+diabel19,724,523,8541236,9394,0 +53499,Kurczaczek,628,691,698338524,1574,0 +53500,New+World,429,714,698152377,10290,0 +53501,Wiocha+VI,335,353,849106316,963,0 +53502,B_7,295,421,699728266,1478,0 +53503,Winterfell.011,455,280,848918380,10178,9 +53504,lorus,527,727,699878511,5727,0 +53505,128+invidia,504,727,849093426,9459,3 +53506,Wioska+MamTegoDo%C5%9B%C4%87,351,676,698592907,5928,0 +53507,163,399,697,849099876,9278,0 +53508,Nekropolis,707,584,849088199,8790,0 +53509,Semantyka,307,393,849076515,2218,0 +53510,Bagno+31,474,723,848883684,5841,0 +53511,Stachod%C5%BCons,594,292,849101409,6758,0 +53512,Mordownia+8,707,595,849101029,5661,0 +53513,New+World,435,715,698152377,10291,0 +53514,063.+Maszerbrum,718,528,1601917,4612,0 +53515,CastAway+%21031,715,580,9314079,4029,0 +53516,Wioska+Xerez,295,466,698701911,3677,0 +53517,Wioska+barbarzy%C5%84ska,713,415,0,1486,0 +53518,Artur+Boruc+V2,707,405,699146876,2450,0 +53519,013.+Wimbledon,507,726,848953066,5355,0 +53520,Wioska+barbarzy%C5%84ska,402,702,849014922,4359,0 +53521,Cisza,286,565,698769107,1291,0 +53522,--051--,580,288,542253,3008,0 +53523,C-001,321,356,699406247,5900,0 +53524,Rze%C5%BAnia,708,591,849101029,4624,0 +53525,Osada+koczownik%C3%B3w,691,628,849092827,1109,6 +53526,092,722,513,7085502,4086,0 +53527,%23107%23,656,668,692803,5507,0 +53528,Wioska+Wojtaka,585,288,8609713,2647,0 +53529,Avanti%21,272,469,698625834,3974,0 +53530,O047,315,629,272173,9866,9 +53531,Liverpool,293,418,848993769,359,0 +53532,xxx1,696,601,6921135,5316,0 +53533,%5B824%5D+Odludzie,718,431,848985692,6271,0 +53534,XDX,617,308,699098531,3960,0 +53535,Flap,600,295,699098531,5233,0 +53536,MERHET,590,704,698215322,2451,0 +53537,KRONOSIK8,679,562,849107703,6307,0 +53538,Wioska+barbarzy%C5%84ska,403,707,849014922,6059,0 +53540,Laguna,278,544,848930898,2846,0 +53542,K42+ADAMUS+015,289,429,6212605,5471,0 +53544,007,401,292,699694284,8261,0 +53545,1.+Kear+Morhen,606,697,849101526,6512,0 +53546,%3F%3F%3F%3F,477,271,698489071,5212,0 +53547,Wioska+dziadek1974,593,707,8991696,6717,0 +53548,Wioska+barbarzy%C5%84ska,697,614,3589487,2197,0 +53549,New+World,439,716,698152377,6762,0 +53550,Nowa+60,711,580,698702991,4278,0 +53551,%7CD%7C+IS,459,724,698147372,2673,0 +53552,San+Escobar,291,590,2717161,6682,0 +53553,B-1,672,360,849095509,3932,0 +53554,111,414,294,849089654,3875,0 +53555,129,391,699,849099876,7253,0 +53556,%7CD%7C+Riverfrost,455,720,698147372,4697,0 +53557,K42+ADAMUS+024,283,425,6212605,2036,0 +53558,Wioska+barbarzy%C5%84ska,352,668,0,762,0 +53559,Wioska+barbarzy%C5%84ska,729,513,698191218,4349,0 +53560,0121,348,672,7085510,6472,3 +53561,111,420,298,849102150,3430,0 +53562,Piek%C5%82o+to+inni,649,330,848956765,3633,0 +53563,Wygwizdowa+014,653,665,698562644,3489,0 +53564,059,723,514,699413040,3310,0 +53565,%3D%7C07%7C%3D,690,383,9101574,9882,9 +53566,A004,334,658,849105102,2787,0 +53567,Osada+koczownik%C3%B3w,419,296,698231772,5224,6 +53568,102+Zushi,635,473,7092442,3670,0 +53569,Cisza,285,561,698769107,3078,0 +53570,W003,307,389,849082154,1907,0 +53571,101+Sanuki,641,475,7092442,3984,0 +53572,New+World,411,710,698152377,4638,0 +53573,--046--,577,292,542253,3145,0 +53574,Wioska29,334,341,699711926,2452,0 +53575,Dzik+11,288,426,8366045,9441,0 +53576,A17,465,644,698652014,3629,0 +53577,Wioska+barbarzy%C5%84ska,355,324,8772425,2748,0 +53579,%3D%7C06%7C%3D,690,385,9101574,10004,6 +53580,ups,508,729,849101102,8989,0 +53581,P%C3%B3%C5%82nocny+Bagdad,626,311,8847546,7031,0 +53582,Wioska+barbarzy%C5%84ska,355,327,8772425,2478,0 +53583,%7E%7E068%7E%7E,683,634,7829201,6283,0 +53584,%230057,571,715,1536231,4321,0 +53585,04Wioska+barbarzy%C5%84ska,358,674,699704542,8593,0 +53586,Wioska+barbarzy%C5%84ska,493,725,699744012,1632,0 +53587,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,720,8201460,8200,0 +53588,021.+Wioska+barbarzy%C5%84ska,683,375,2873154,4846,0 +53589,Wioska+barbarzy%C5%84ska,459,275,699191464,2713,0 +53590,Wioska+barbarzy%C5%84ska,455,719,849037407,1327,0 +53591,K44+x035,441,406,698364331,6529,0 +53592,Cisza,283,579,698769107,1040,0 +53593,New+WorldA,280,530,849084005,4628,0 +53594,Osada+koczownik%C3%B3w,714,573,2453888,9596,6 +53595,Wioska+PeKamon,438,409,698364331,7399,0 +53597,FAKE+OR+OFF,398,300,698231772,9814,9 +53599,Wioska+barbarzy%C5%84ska,718,547,698666810,9429,0 +53600,A-007,318,371,699406247,3226,0 +53601,Wioska+barbarzy%C5%84ska,329,652,8175236,1015,0 +53602,KONFA+TO+MARKA%2C+NARKA,288,415,698152377,2062,0 +53603,Palirura,353,331,698906190,2342,0 +53604,osada+5,661,350,7357503,1741,0 +53605,Wioska+Mekambe,713,428,849102480,7911,0 +53606,135,388,692,849099876,6575,0 +53607,Wioska+Pracz+8,312,624,8916982,2986,0 +53608,North+047,541,274,849064752,5292,0 +53609,Wioska+barbarzy%C5%84ska,393,700,849014922,1714,0 +53610,Wioska+barbarzy%C5%84ska,397,703,849014922,5270,0 +53611,komandos,666,659,7976264,4344,0 +53612,0117,376,692,7085510,8004,6 +53613,A.018,606,556,9188016,7389,0 +53614,C0248,272,526,8841266,4806,0 +53615,103.+Wioska+barbarzy%C5%84ska,724,464,7494497,2506,0 +53616,Wioska+012,667,356,7226782,3230,0 +53617,Wiocha+1,556,719,849045675,12154,0 +53618,lorus,531,721,699878511,5856,0 +53620,New+World,432,718,698152377,10290,0 +53621,MojeSzczytToTw%C3%B3jDno,511,381,828637,9001,0 +53622,Wioska+barbarzy%C5%84ska,719,548,698666810,9769,0 +53623,Wioska+zicher,538,275,6032352,850,0 +53625,Saran10,409,291,848937248,857,0 +53626,009,296,598,698663855,3708,0 +53627,Kapitol_16,508,724,606407,5133,0 +53628,%5B0170%5D,453,281,8630972,7489,0 +53629,o015,609,702,699189792,4624,0 +53631,Wioska+barbarzy%C5%84ska,660,335,699072129,4733,0 +53632,Gubernia,364,314,849107532,6654,0 +53633,Sexxy+P,694,622,8815749,3551,0 +53634,WOLA0100,677,363,6956104,9779,0 +53635,04Wioska+barbarzy%C5%84ska,366,687,699704542,6464,0 +53636,Parking2,615,667,6528152,5891,0 +53637,Azylek+1,628,687,849096354,1524,0 +53639,Avanti%21,277,495,698625834,3775,0 +53640,K33,310,385,699794765,1326,0 +53641,Z%C5%82oty+%C5%9Awit,582,295,699883079,10035,0 +53642,111+Wioska+beziuleq,548,277,699854484,519,0 +53643,Bia%C5%82y+Kr%C3%B3lik,524,723,849102336,4243,0 +53645,komandos,668,655,7976264,4321,7 +53646,Rumia,409,708,8425594,7987,0 +53647,PODSTAWA,692,389,8622901,1669,0 +53648,004,594,704,849097370,3806,0 +53649,KONFA+TO+MARKA%2C+NARKA,286,441,698152377,10294,0 +53650,E005,636,319,699299123,2024,0 +53651,Ebe+ebe,711,413,699785935,4003,0 +53652,Osada+koczownik%C3%B3w,670,653,1415009,9647,6 +53653,A%23051,728,470,2065730,6367,0 +53654,056.,636,673,699373599,2220,0 +53655,%5B0169%5D,447,281,8630972,7753,0 +53656,A-5,672,355,849095509,1442,0 +53657,-KDK-,497,495,698349125,7744,0 +53658,Wioska+barbarzy%C5%84ska,727,525,698191218,5133,0 +53659,K67+08,702,610,698867483,3543,0 +53660,Bagno+24,487,719,848883684,6815,0 +53661,0135,342,666,7085510,8785,8 +53662,Wioska+barbarzy%C5%84ska,529,729,699878511,3776,0 +53663,Wioska+barbarzy%C5%84ska,302,595,6180190,2936,0 +53665,K42+ADAMUS+006,286,430,6212605,9172,0 +53666,Wioska+barbarzy%C5%84ska,413,291,698231772,6346,0 +53667,Kapitol_09,499,725,606407,5952,0 +53668,Wioska,273,483,699795698,4985,0 +53669,E004,632,316,699299123,1955,0 +53670,New+WorldA,273,539,849084005,1750,0 +53671,KONFA+TO+MARKA%2C+NARKA,283,440,698152377,7231,0 +53672,008,280,432,6131106,5803,6 +53673,Wioska,718,457,849095599,3209,0 +53674,Wioska+barbarzy%C5%84ska,731,495,942959,1602,0 +53675,Avanti%21,272,490,698625834,5348,0 +53676,Avanti%21,276,492,698625834,5699,0 +53677,034+Osada+koczownik%C3%B3w,533,276,699854484,9835,1 +53678,%3F%3F%3F%3F,473,281,698489071,2526,0 +53679,Wioska+010,671,346,7226782,3994,0 +53681,%3D%7C46%7C%3D,686,372,9101574,1319,0 +53682,057+-+Budowanko%21,527,717,7540891,2564,0 +53683,MojeDnoToWaszSzczyt,510,275,9299539,9702,0 +53684,0107,698,391,698416970,2433,0 +53685,Wioska+barbarzy%C5%84ska,724,486,698191218,3601,0 +53686,Piek%C5%82o+to+inni,651,335,848956765,2959,0 +53687,Wioska+barbarzy%C5%84ska,692,391,8622901,1132,0 +53688,Wioska+barbarzy%C5%84ska,718,453,699628084,5360,0 +53689,041,669,645,2323859,987,0 +53690,Wioska+barbarzy%C5%84ska+01,343,333,698757439,10495,0 +53691,Avanti%21,275,478,698625834,6033,0 +53692,Wioska+Pracz+1,308,625,8916982,7718,0 +53693,057.,635,674,699373599,2467,0 +53694,KUKA+II,281,437,6127190,3115,0 +53695,komandos,674,651,7976264,3614,0 +53696,Wioska+PysioSsie,273,494,8947705,286,0 +53697,Taran,315,624,6180190,8025,0 +53698,%5B830%5D+Odludzie,711,430,848985692,5800,0 +53699,Etitek+4,725,498,848999448,2311,0 +53700,Wioska+kajko1962+-,664,348,7357503,10908,0 +53701,KONFA+TO+MARKA%2C+NARKA,292,426,698152377,7095,1 +53702,028+Dewford+Town,725,486,699441366,9243,0 +53703,006,294,586,698663855,5212,0 +53704,%2302%21,640,681,849101884,9617,0 +53705,wioska+XIX,671,361,849101889,3274,0 +53706,Wioska+barbarzy%C5%84ska,281,427,0,39,0 +53707,029.,609,481,8900955,10987,0 +53708,D022,560,288,699299123,3473,0 +53709,MojeDnoToWaszSzczyt,499,270,9299539,9946,0 +53710,Wioska+arkowa,653,671,563544,1438,0 +53711,132,383,691,849099876,8223,0 +53712,023+-+Budowanko%21,710,566,7540891,4275,0 +53713,10.DASH,712,561,698905177,1331,0 +53714,Wioska+Wieslaw+2,504,275,699794421,3755,0 +53715,Wioska+barbarzy%C5%84ska,645,667,848987051,7309,0 +53717,Wioska+bezludna,598,694,699828685,2001,0 +53718,Kapitol_18,500,729,606407,5132,0 +53719,North+031,516,270,849064752,6679,0 +53720,024.,698,601,6520732,2508,0 +53721,068,721,519,699413040,1852,0 +53722,Wioska+barbarzy%C5%84ska,388,309,698231772,3102,0 +53723,Wioska+barbarzy%C5%84ska,464,282,699863708,3337,0 +53724,023,302,613,699356968,2094,0 +53725,komandos,674,650,7976264,3372,0 +53726,%23Kresy,629,679,2665207,8307,0 +53727,004,293,597,698663855,10068,0 +53728,04Wioska+barbarzy%C5%84ska,359,680,699704542,7356,0 +53729,Wioska+barbarzy%C5%84ska,469,277,699196829,1962,0 +53730,Piek%C5%82o+to+inni,647,329,848956765,5295,0 +53731,Wioska+MalinowaZaba,497,723,699656989,5119,0 +53732,P%C3%B3%C5%82nocny+Bagdad,619,305,8847546,2748,0 +53733,Wioska+Mr.SoLo,721,539,8541236,9592,0 +53734,A%23017,719,565,2065730,9797,8 +53735,060,724,516,699413040,3434,0 +53736,Wioska+barbarzy%C5%84ska,359,317,3484132,5060,0 +53737,SkalpeR1337,288,492,849108007,5947,0 +53738,BOSS+W,335,339,849101604,1296,0 +53739,Wioska+0018,342,655,9186126,6752,0 +53740,KIELBA+108,465,601,699342219,7749,0 +53741,Wioska+barbarzy%C5%84ska,299,406,6186491,4787,0 +53742,Wioska+ASYSTORIA,601,702,699828685,2604,0 +53743,Wioska+barbarzy%C5%84ska,275,465,699213622,5512,0 +53744,KUKA+I,285,435,6127190,5325,0 +53745,Wioska+barbarzy%C5%84ska,697,383,849057764,1592,0 +53746,MERHET,582,707,698215322,5290,0 +53747,Wioska+barbarzy%C5%84ska,711,428,699722599,4195,0 +53748,Wioska+barbarzy%C5%84ska,730,501,698191218,3785,0 +53749,Wioska+barbarzy%C5%84ska,375,691,849030086,1836,0 +53750,%230247+colt9,439,281,1238300,5080,0 +53751,Sony+911,673,649,1415009,3623,0 +53752,Wioska+barbarzy%C5%84ska,378,688,849096945,565,0 +53753,%23124%23,655,667,692803,3625,0 +53754,Winterfell.012,449,284,848918380,10008,2 +53755,Wioska+arobest,700,399,849096041,1110,0 +53756,XDX,611,302,699098531,4454,0 +53757,Wioska+0003,342,656,9186126,10311,4 +53758,%230260+mrufki,441,281,1238300,1818,0 +53759,KONFA+TO+MARKA%2C+NARKA,292,414,698152377,2544,0 +53760,Rze%C5%BAnia+3,710,590,849101029,5373,0 +53761,Village,571,718,849094067,2318,0 +53762,Wioska+Olczi,484,280,849108053,1207,0 +53763,New+WorldA,283,536,849084005,4328,0 +53764,Wioska+barbarzy%C5%84ska,563,716,6299408,4891,0 +53765,006,405,296,9283775,3595,0 +53766,Piek%C5%82o+to+inni,641,331,848956765,4061,0 +53767,Wioska+barbarzy%C5%84ska,538,273,849044705,1685,0 +53768,Wioska+001,674,358,2976468,3780,0 +53769,191,402,703,849099876,9142,0 +53770,%23030,543,275,849064614,2305,0 +53771,005,282,459,699844314,1671,0 +53772,New+WorldA,281,536,849084005,3805,0 +53773,%5B0179%5D,454,282,8630972,7411,0 +53774,181+Okrutny+Pogromca+Szlachty,534,725,698667255,733,0 +53775,Avanti%21,274,494,698625834,4633,0 +53776,R+046,493,728,699195358,5365,0 +53777,.achim.,579,284,6936607,2180,0 +53778,Wioska+barbarzy%C5%84ska,347,327,8772425,1526,0 +53779,Wioska+barbarzy%C5%84ska,540,727,699878511,6823,0 +53780,P%C5%81D2,722,456,699347951,1438,0 +53782,033+Fallarbor+Town,722,480,699441366,4174,0 +53783,170,416,686,849099876,5376,0 +53784,0000047Z,278,557,849089881,1183,0 +53785,0102,672,351,698416970,7659,3 +53786,ZPP+Haran,729,458,8096537,5825,0 +53787,Wioska+barbarzy%C5%84ska,386,305,698231772,4090,0 +53788,.001.+Wyspa,723,449,849095599,6128,0 +53789,Wioska+barbarzy%C5%84ska,700,404,699598425,3136,0 +53790,Wioska+Inergio,358,678,849098766,2851,0 +53791,010+Bradina,671,640,849102108,2415,0 +53792,C0352,279,534,8841266,8498,0 +53793,C0312,275,527,8841266,2422,0 +53794,XDX,610,303,699098531,5968,0 +53796,Wioska013,344,343,699711926,7185,0 +53797,TOLCIA+1,641,318,699868739,9250,0 +53798,Wioska+barbarzy%C5%84ska,367,314,3484132,6398,0 +53799,Nowa+66,691,629,698702991,2914,0 +53800,Wioska+barbarzy%C5%84ska,720,533,17714,3224,0 +53801,Wioska+Zephyr+II,351,329,1347385,4186,0 +53802,025Kacor,470,722,698620694,9716,0 +53803,wy...,602,702,699828685,6463,0 +53804,Wioska+barbarzy%C5%84ska,623,687,6818593,2304,0 +53805,Motorola+05,365,319,698806018,4564,0 +53806,A01,427,282,849038597,8952,0 +53807,Z%C5%82oty+%C5%9Awit,597,295,699883079,5587,0 +53808,Wioska+pinek321,288,586,849103947,10437,0 +53809,Puck,300,597,1276665,3642,0 +53810,Nowe+IMPERIUM+12,622,692,698353083,5090,0 +53811,Lord+Arsey+KING,653,661,848956513,5364,0 +53812,Wioska+joannaniel,543,725,3560281,7024,0 +53813,Wioska+barbarzy%C5%84ska,557,713,699828442,5004,0 +53814,bagienko_04,564,280,849093353,4668,0 +53815,025,283,461,6131106,1715,0 +53816,.achim.,564,283,6936607,3188,0 +53817,Wioska+barbarzy%C5%84ska,548,723,699828442,9389,0 +53818,Wioska+fan+zmijki,519,728,769293,7638,0 +53819,P001,513,277,699208929,7463,0 +53820,C.056,726,480,9188016,3682,0 +53821,080+Wioska+barbarzy%C5%84ska,540,279,699854484,8759,0 +53823,029+Legio+IX+Ulpia+Victrix,709,569,699878150,1229,0 +53824,New+World,431,716,698152377,10294,0 +53825,Wioska+streak2k12,629,689,699356102,2159,0 +53826,New+World,439,719,698152377,5025,0 +53827,Wioska+barbarzy%C5%84ska,689,367,609384,2797,0 +53828,%230257+Yomikuri,435,281,1238300,7461,0 +53829,Wioska+barbarzy%C5%84ska,405,291,698231772,6228,0 +53830,.achim.,571,290,6936607,3973,0 +53831,023.,697,602,6520732,2801,0 +53832,Lord+Arsey+KING,662,649,848956513,7850,0 +53833,.achim.,485,280,6936607,5357,0 +53834,Z%C5%82oty+%C5%9Awit,582,296,699883079,10119,0 +53835,Wioska+barbarzy%C5%84ska,539,724,699878511,6430,0 +53836,KWB3,462,728,9003698,6013,0 +53837,Wioska+Karl+132,283,538,1861962,5054,0 +53838,Nowe+IMPERIUM+5,617,697,698353083,5864,0 +53839,Wioska+barbarzy%C5%84ska,328,653,8175236,1577,0 +53840,iepure+alb,526,723,849102336,2824,0 +53841,Wioska+chudyn,595,702,8773967,11050,0 +53842,Wioska+barbarzy%C5%84ska,727,489,698191218,3615,0 +53844,02181,632,659,699872616,7769,0 +53845,Wioska+barbarzy%C5%84ska+16,337,343,698757439,6167,0 +53846,Wioska+barbarzy%C5%84ska,682,638,698191218,3240,0 +53847,MojeDnoToWaszSzczyt,499,274,9299539,9945,0 +53848,Wioska+barbarzy%C5%84ska,383,306,698160606,2582,0 +53849,%7E%7E081%7E%7E,683,635,7829201,4637,0 +53850,Tomekrol+2,703,597,849096334,6632,3 +53851,A0258,385,475,8841266,10362,0 +53852,060.,641,678,699373599,2142,0 +53853,K33,310,390,699794765,3193,0 +53854,Nowe+Dobra+-+budowa,681,626,699759128,6783,0 +53855,009,400,303,9283775,3175,0 +53857,%5B815%5D+Odludzie,713,441,848985692,7020,0 +53858,Taran,315,621,6180190,7691,0 +53859,Wioska+barbarzy%C5%84ska+009,376,313,849068662,3719,0 +53860,Wioska+barbarzy%C5%84ska,683,372,699794720,1586,0 +53861,.achim.,562,289,6936607,4073,0 +53862,Wioska+barbarzy%C5%84ska,722,560,698666810,6442,0 +53863,--042--,574,289,542253,4853,0 +53864,%230067,573,711,1536231,4400,0 +53865,wioska+XX,674,352,9314079,1648,0 +53866,075.+Wioska+barbarzy%C5%84ska,722,460,7494497,5506,0 +53867,Wioska+barbarzy%C5%84ska,326,364,0,1076,0 +53868,0151,707,601,699429153,8717,0 +53869,North+027,511,270,849064752,7918,0 +53870,080.+Wioska+barbarzy%C5%84ska,729,471,7494497,4756,0 +53871,PPF-11,518,270,1424656,2445,0 +53872,Wioska+barbarzy%C5%84ska,282,468,699812351,1429,0 +53873,04Wioska+barbarzy%C5%84ska,364,680,699704542,8202,0 +53874,Wioska+barbarzy%C5%84ska,717,453,699628084,4121,0 +53875,%5B833%5D+Odludzie,723,440,848985692,5579,0 +53876,KONFA+TO+MARKA%2C+NARKA,278,452,698152377,5072,0 +53877,Wioska+monitor123aa,517,302,699208929,5213,0 +53878,Azyl+9,630,687,849096354,1830,0 +53879,Oww+Konfederacja,607,391,848915730,10117,0 +53880,mordor,299,394,698677650,3662,0 +53881,027,636,585,6160655,7629,0 +53882,Wioska+barbarzy%C5%84ska,430,285,698231772,5224,0 +53883,Piek%C5%82o+to+inni,653,333,848956765,3423,0 +53884,XDX,608,298,699098531,3743,0 +53885,Wioska+REXMUNDI,725,459,6249486,3881,0 +53886,komandos,675,651,699277039,314,0 +53887,Wioska+barbarzy%C5%84ska,292,576,849101771,1326,0 +53888,Wioska+barbarzy%C5%84ska,718,551,698666810,10881,0 +53889,Gors+Velen,565,289,849054951,10051,8 +53891,Z%C5%82oty+%C5%9Awit,589,292,699883079,6537,0 +53892,%23K75+0035,525,719,699728159,4874,0 +53893,Wioska+Lost+im+Wald,613,699,848914120,1164,0 +53894,Wiocha+3,558,721,849045675,10879,0 +53895,%23004,332,647,698908184,7815,0 +53897,Wioska+barbarzy%C5%84ska,533,729,699878511,6433,0 +53899,041.xxx,513,727,8612358,1189,0 +53900,Wioska+barbarzy%C5%84ska,625,690,699567608,8275,0 +53902,%24006%24+Papuga,303,619,699550876,7083,0 +53903,mysza,315,374,849089601,3983,0 +53904,0598,477,545,698659980,8038,0 +53905,%23007,547,275,849064614,7343,0 +53906,Wioska+barbarzy%C5%84ska,376,688,849096945,470,0 +53907,P%C3%B3%C5%82nocny+Bagdad,626,309,8847546,9835,0 +53908,Wioska+barbarzy%C5%84ska,321,633,698908184,6309,0 +53909,jooo,538,277,849105071,2638,0 +53910,Wioska+barbarzy%C5%84ska,305,378,699660539,2239,0 +53911,Wioska+niedzwiedz8807,295,604,3319611,2955,0 +53912,230...NORTH,448,278,6920960,1992,0 +53913,Wioska+barbarzy%C5%84ska,307,614,0,1039,0 +53914,Wioska+bob+25,366,683,281866,2969,0 +53915,Wioska+Beny604,458,717,698738810,432,0 +53916,Wioska+lis+1,335,651,849056475,1273,0 +53917,051.,638,672,699373599,2926,0 +53918,0122,376,684,7085510,5818,2 +53919,Walgind,301,403,8724192,8114,0 +53920,Agonia,727,524,8541236,9549,0 +53921,Wolgast+Wald,341,656,849092685,1558,0 +53922,%C5%9Aw181%2A004,663,345,959179,2986,0 +53923,Wioska+Kayohix,615,694,698647624,6230,0 +53924,026,306,616,699356968,1371,0 +53925,--049--,581,288,542253,1405,0 +53926,Kirholm,302,615,698167138,3167,0 +53927,North+032,510,270,849064752,6675,0 +53928,%3D120%3D+Wioska+barbarzy%C5%84ska,715,565,3781794,1956,0 +53929,maniek+01,271,477,849095814,6248,0 +53930,Psycha+Siada,321,643,8099868,6672,0 +53931,Twierdza+%28NBW%29,374,379,0,2608,25 +53933,New+World,431,718,698152377,10294,0 +53934,D013,341,653,272173,6660,0 +53935,MojeDnoToWaszSzczyt,491,274,9299539,9945,0 +53936,warszawa,716,422,849042461,2077,0 +53937,B_8,294,421,699728266,1688,0 +53938,01+Sztab+Generalny,730,485,849104855,8008,0 +53939,%23%23%23152%23%23%23,610,695,698285444,10495,0 +53940,Kaufbeuren,646,668,7976264,6937,0 +53941,025.+Gloria+Victis,286,558,848886973,6713,0 +53942,Wioska+bartek145972,479,720,848999671,2105,0 +53943,komandos,672,649,7976264,3737,0 +53944,Z01,285,418,6258092,2189,0 +53945,043.+Rezerwacja,499,728,848928624,3152,0 +53946,Kiedy%C5%9B+Wielki+Wojownik,329,358,8632462,2780,0 +53947,wioska,642,318,849102068,11995,1 +53948,%230287+mirabelik,443,277,1238300,5799,0 +53949,%7B55%7D+Pogorzelice,373,689,849096945,942,0 +53950,O141,345,634,272173,5130,0 +53951,C0289,280,547,8841266,3867,0 +53952,002.Mo%C5%BCe+si%C4%99+uda,457,275,602408,3510,0 +53953,Wioska+barbarzy%C5%84ska,424,292,698231772,4908,0 +53954,New+World,417,711,698152377,9695,0 +53955,Wioska+barbarzy%C5%84ska,726,532,17714,3125,0 +53956,%23002,305,375,849110743,2618,0 +53957,%5B826%5D+Odludzie,716,430,848985692,6396,0 +53958,C0291,283,549,8841266,3816,0 +53959,Mordownia+3,706,595,849101029,9870,0 +53960,Wioska+barbarzy%C5%84ska,313,375,699660539,1844,0 +53961,Wioska+barbarzy%C5%84ska,670,357,609384,2609,0 +53962,056.,455,726,849034882,9384,0 +53963,001+Paluszkowo,593,343,699576407,10283,0 +53964,Wioska+barbarzy%C5%84ska,596,709,699828685,3558,0 +53965,Wioska+barbarzy%C5%84ska,567,717,849078942,3406,0 +53966,002,612,303,699117992,9651,0 +53967,X009,710,424,699722599,6053,0 +53968,C0255,270,524,8841266,4208,0 +53969,120.+Dartan,677,642,8337151,10083,0 +53970,Wa%C5%82,353,670,2725721,1331,0 +53971,KONFA+TO+MARKA%2C+NARKA,289,414,698152377,2627,0 +53972,Wioska+barbarzy%C5%84ska+07,345,335,698757439,7066,0 +53973,Psycha+Siada,329,648,8099868,4902,0 +53974,060+-+Budowanko%21,547,722,7540891,2021,0 +53975,.achim.,568,290,6936607,5623,0 +53976,Wioska+biesta,296,415,6276208,463,0 +53977,%23006,547,276,849064614,8971,0 +53978,New+World,420,709,698152377,9957,0 +53979,0078,456,278,848913037,4595,0 +53980,0014+Village,486,723,699656989,8354,0 +53981,Wioska+barbarzy%C5%84skaB,295,607,698178312,2235,0 +53982,.achim.,576,290,6936607,1800,0 +53983,lorus,527,724,699878511,5854,0 +53985,C.052,719,468,9188016,3304,0 +53986,Wioska+barbarzy%C5%84ska,725,485,699573053,2440,0 +53988,New+World,415,710,698152377,10292,0 +53989,Wioska+mondo96,688,629,6472706,6405,0 +53990,Wioska+barbarzy%C5%84ska,621,684,6818593,3195,0 +53991,064.,717,460,849094609,2324,0 +53992,Z%C5%82oty+%C5%9Awit,589,294,699883079,10035,0 +53993,Cisza,289,576,698769107,704,0 +53994,Kiedy%C5%9B+Wielki+Wojownik,331,358,8632462,3165,0 +53995,%230062,577,713,1536231,9648,3 +53996,001+Wioska+York,281,567,6240801,9214,0 +53997,Wioska+barbarzy%C5%84ska,349,338,849101604,2568,0 +53998,So%C5%9Bnica,290,582,848892804,3238,0 +53999,Wioska+NoeyPl,332,554,849000135,8632,0 +54000,KONFA+TO+MARKA%2C+NARKA,292,424,698152377,4128,0 +54001,O134,315,630,272173,4480,0 +54002,Wioska+barbarzy%C5%84ska,724,525,698191218,3872,0 +54003,Wioska+barbarzy%C5%84ska,325,635,698908184,7148,0 +54004,003,526,729,699730998,773,0 +54005,Wioska+barbarzy%C5%84ska,723,531,17714,2802,0 +54006,Wioska+barbarzy%C5%84ska,319,636,698908184,5270,0 +54007,Wioska+barbarzy%C5%84ska,384,310,698160606,2624,0 +54008,Wioska+bercik53,676,363,9136062,1453,0 +54009,Ghostmane6,718,446,848896434,1748,0 +54010,North+021,511,278,849064752,7174,0 +54011,226+%7C,530,544,8000875,7565,0 +54013,%7E%7E073%7E%7E,682,634,7829201,5241,0 +54014,060+Wioska+barbarzy%C5%84ska,551,283,699854484,9835,0 +54015,B%C5%82%C4%99kitna+g%C5%82%C4%99bia,281,541,848930898,2040,0 +54016,Allianz+Arena,678,634,849096631,3722,0 +54017,.achim.,580,293,6936607,3889,0 +54018,Z%C5%82omowisko,710,584,849098724,5518,0 +54019,082+Wioska+barbarzy%C5%84ska,346,669,6354098,4766,0 +54020,Zzz+15+lubie+laseczki,278,564,849084740,1895,0 +54021,%5B0236%5D,273,505,8630972,4314,0 +54022,New+World,437,721,698152377,7960,0 +54023,Zaplecze+Barba+032,352,334,699796330,4695,0 +54024,Wioska+barbarzy%C5%84ska,290,576,498483,2110,0 +54025,Wioska+181,585,563,848981244,4147,0 +54026,034+Fortree+City,727,492,699441366,2747,0 +54027,D019,560,286,699299123,2784,0 +54028,Infantino,604,296,848983660,7062,0 +54029,Kicha,301,615,698167138,1896,0 +54030,072+obrze%C5%BCa,277,559,699510259,5334,0 +54031,KONFA+TO+MARKA%2C+NARKA,274,456,698152377,2087,0 +54032,007+JJ,327,362,9120206,4288,0 +54034,Piek%C5%82o+to+inni,647,321,848956765,3356,0 +54035,Wioska+barbarzy%C5%84ska,719,573,2453888,8425,0 +54036,Wioska+barbarzy%C5%84ska,399,299,698231772,3571,0 +54037,Wioska+barbarzy%C5%84ska,567,613,699567608,2898,0 +54038,Wioska+maybe-later,385,306,8097158,1467,0 +54039,P%C3%B3%C5%82nocny+Bagdad,627,319,8847546,3226,0 +54040,11.+Kaer+Morhen,607,699,849102573,873,0 +54041,Z%C5%82oty+%C5%9Awit,586,291,699883079,4328,0 +54042,B019,630,311,8740199,4434,0 +54043,A%23020,723,504,2065730,9797,9 +54044,ZPP+United,727,487,8096537,1950,0 +54045,Poznan+001,413,288,1924718,1221,0 +54046,Z+06,384,311,6884492,2109,0 +54047,New+WorldA,276,517,849084005,1244,1 +54048,08.AVAX,715,561,698905177,6600,0 +54049,018+daleko,552,715,849093426,10237,5 +54050,%5B835%5D+Odludzie,720,441,848985692,5464,0 +54051,Nowe+Dobra+-+budowa,689,626,699759128,5475,0 +54052,B009,529,275,699485250,3820,0 +54053,Artur+Boruc,708,405,699146876,6726,0 +54054,wioska,634,334,849102068,3873,0 +54055,Lord+Arsey+KING,665,648,848956513,8200,0 +54056,Piek%C5%82o+to+inni,649,326,848956765,3392,0 +54057,KONFA+TO+MARKA%2C+NARKA,284,445,698152377,10292,0 +54058,Wioska+Wieslaw+4,498,272,699794421,2188,0 +54059,Wioska+barbarzy%C5%84ska,325,638,698908184,9808,0 +54060,w+oczekiwaniu+na+nazw%C4%99+docelow%C4%85,518,728,849102336,524,0 +54061,.achim.,483,279,6936607,5996,0 +54062,Feed+me+more+018,501,369,699756210,9742,0 +54063,004,301,396,849109795,1825,0 +54064,Wioska+181,296,517,1164249,9761,0 +54065,Wioska+barbarzy%C5%84ska,724,559,698666810,5805,0 +54066,Nowa+Baza+5,614,698,698353083,5964,0 +54068,Wioska+barbarzy%C5%84ska,395,302,698231772,4630,0 +54070,Peru,724,543,848946700,6622,0 +54071,New+WorldA,275,544,849084005,1758,0 +54072,nr9,643,678,364126,1925,0 +54073,Wioska+barbarzy%C5%84ska,679,353,2976468,3809,0 +54074,Wioska+jar-11,273,491,698384662,1611,0 +54075,Wioska+kwiatek7777,529,279,7337110,1162,0 +54076,Flap,614,300,699098531,6320,0 +54077,%3D107%3D+Wioska+barbarzy%C5%84ska,701,593,3781794,3240,0 +54078,01+maki5b,637,326,6517826,9752,0 +54079,016.+Tak+o,295,396,698630507,3623,0 +54080,Anty+C+-+ovid+%21,655,670,6046743,2319,0 +54081,Malaga,645,676,747422,3440,0 +54082,048,669,653,2323859,1606,0 +54083,063.,639,685,699373599,1774,0 +54084,United,292,420,848993769,3070,0 +54086,Avanti%21,274,484,698625834,6031,0 +54087,FAKE+OR+OFF,392,303,698231772,9812,9 +54088,A001,334,659,849105102,9891,0 +54089,%5B0191%5D,275,496,8630972,6861,0 +54090,K67+02,700,616,698867483,8133,0 +54091,B003,521,279,699485250,8518,0 +54092,050,671,651,2323859,1188,0 +54093,Flap,615,301,699098531,6365,0 +54094,%2303%21,639,680,849101884,5239,0 +54095,130,393,701,849099876,9204,6 +54096,36.Geso,723,542,8976313,5374,0 +54097,North+028,514,269,849064752,7135,0 +54098,026,688,619,699099811,3237,0 +54099,BETON+104,662,664,699277039,975,0 +54100,aaaaaa,678,362,2976468,7605,0 +54101,%230244+colt9,438,284,1238300,5971,0 +54102,042+-+Budowanko%21,501,726,7540891,6514,0 +54103,North+024,510,272,849064752,7384,0 +54104,63%2F1,328,650,8175236,3001,0 +54105,Kurnik,449,716,699603116,7685,0 +54106,770,538,274,849087149,655,0 +54107,Wioska+barbarzy%C5%84ska,592,707,8991696,3137,0 +54108,030+-+Budowanko%21,481,725,7540891,4892,0 +54109,%5B0192%5D,273,496,8630972,7023,0 +54111,Wioska+barbarzy%C5%84ska,337,345,849103148,1652,0 +54112,024,458,651,699736927,2982,0 +54113,001+wolno%C5%9B%C4%87,336,654,6910361,1143,0 +54114,jarekamyk,351,677,699875132,3524,0 +54116,Wa%C5%82brzych,677,631,848932879,4475,0 +54117,Wioska+Pieguss,469,647,698855681,162,0 +54118,Wioska+barbarzy%C5%84ska,721,473,698191218,2161,0 +54119,Wioska+barbarzy%C5%84ska,589,712,7756002,4741,0 +54120,125,385,695,849099876,8288,0 +54121,Wioska16,633,486,848935020,1970,0 +54122,%23119%23,641,673,692803,5141,0 +54123,03+Dywizja,728,491,849104855,7164,0 +54124,%5B0168%5D,472,271,8630972,7911,0 +54125,0015,683,631,6417987,1604,0 +54126,029.+Gloria+Victis,279,560,848886973,5637,0 +54127,Wioska+barbarzy%C5%84ska,278,460,699213622,4000,0 +54128,04Wioska+barbarzy%C5%84ska,363,682,699704542,7645,0 +54129,Wioska+barbarzy%C5%84ska,463,273,699308637,1693,0 +54130,001+Kattegat,552,352,699072129,10362,0 +54131,063,696,623,699099811,4480,0 +54132,KUKA+IV,282,428,6127190,1953,0 +54133,Wioska+barbarzy%C5%84ska,687,367,609384,1473,0 +54134,MWITO,590,708,33900,1460,0 +54135,Wioska+barbarzy%C5%84ska,363,674,699704542,1447,0 +54136,%23%23%23153%23%23%23,603,695,698285444,10495,0 +54137,049,671,642,2323859,875,0 +54138,O120,309,629,272173,6562,0 +54139,MERHET,581,705,698215322,4564,0 +54140,Wioska+barbarzy%C5%84ska,692,377,698702991,3305,0 +54141,C0297,277,530,8841266,3726,0 +54142,misiek1393,383,301,849027025,7739,0 +54143,Wioska+barbarzy%C5%84ska,364,315,3484132,6401,0 +54144,Wioska+Steven,686,370,699375903,2154,0 +54145,079+Wioska+barbarzy%C5%84ska,350,665,6354098,2723,0 +54146,P%C3%B3%C5%82nocny+Bagdad,625,307,8847546,5962,0 +54147,Wioska+barbarzy%C5%84ska,715,560,1601917,2109,0 +54148,Wioska+barbarzy%C5%84ska,298,613,698167138,612,0 +54149,Gubernia+01,364,313,849107532,2086,0 +54150,Wioska+barbarzy%C5%84ska,583,716,698723158,2236,0 +54151,0065,448,725,849037407,10343,0 +54152,%5B0207%5D,274,501,8630972,6378,0 +54153,Zaplecze+Barba+036,348,333,699796330,3220,0 +54154,126,384,695,849099876,8881,0 +54155,Op+Konfederacja,468,279,848915730,7037,0 +54156,Wioska+gazolek123,367,685,7242969,79,0 +54157,Wioska+xbarbarzy%C5%84ska,603,299,9106690,205,0 +54158,Wioska+Dnabuk,651,663,6167751,112,0 +54159,002,313,636,8752714,3568,0 +54160,24.VIXX,692,388,9180206,3435,0 +54161,Wioska+barbarzy%C5%84ska,677,353,2976468,4080,0 +54162,K42+ADAMUS+004,283,432,6212605,9172,2 +54163,%2A%2A%2A%2A+Niko+%2A%2A%2A%2A,486,345,1510264,4104,0 +54164,Wioska+111,686,639,848971079,2717,0 +54165,%3D108%3D+Wioska+barbarzy%C5%84ska,702,591,3781794,2585,0 +54166,Wakat,354,671,2725721,939,0 +54167,Wioska+Knykie%C4%87+Dyl,280,455,7927374,196,0 +54168,%3D109%3D+Wioska+barbarzy%C5%84ska,704,596,3781794,2525,0 +54169,Wioska+barbarzy%C5%84ska,386,303,698231772,3103,0 +54170,Wioska+barbarzy%C5%84ska,722,491,698191218,3473,0 +54171,%3D%7C08%7C%3D,692,375,9101574,8900,5 +54172,Warszawa,337,346,849103148,6909,0 +54173,MojeDnoToWaszSzczyt,494,269,9299539,9945,0 +54174,030+Legio+IX+Equites,723,559,699878150,1428,0 +54175,Wioska+barbarzy%C5%84ska,723,521,698191218,3621,0 +54177,Kapitol_05,505,721,606407,5206,0 +54178,%23047,559,285,849064614,1662,0 +54179,037.+5spajk5,689,378,2873154,1889,0 +54180,046+-+Strata,414,582,225023,6002,0 +54181,Wioska+jarko123,273,501,699448843,1083,0 +54182,Avanti%21,275,491,698625834,6288,0 +54183,X.07,725,450,699737356,2587,0 +54184,220...NORTH,426,286,6920960,2113,0 +54185,Cisza,284,553,698769107,2347,0 +54186,Wioska+Pokemon%C3%B3w,720,436,849102480,7274,0 +54187,Wioska+barbarzy%C5%84ska,682,641,698191218,3790,0 +54188,MojeDnoToWaszSzczyt,494,270,9299539,4963,0 +54189,Wioska+barbarzy%C5%84ska,697,400,699562182,1847,0 +54191,New+WorldA,277,539,849084005,3142,0 +54192,Wioska+barbarzy%C5%84ska,296,601,0,3033,0 +54193,201+.40.+Infanterie-Division,691,376,849091899,3166,0 +54194,North+K25,523,277,699146580,5416,0 +54195,001+%7C+North,381,696,699511295,10019,0 +54196,MojeDnoToWaszSzczyt,496,272,9299539,9945,0 +54197,Wioska+gall,272,473,699598396,5478,0 +54198,0123,370,691,7085510,7534,9 +54199,Nowe+Dobra+-+budowa,688,631,699759128,4879,0 +54200,%23129%23,658,666,692803,3774,0 +54201,007,273,453,698652171,3925,4 +54202,W004,301,384,849082154,530,0 +54203,Wioska+barbarzy%C5%84ska,554,715,699828442,9699,0 +54204,020,302,606,699356968,1895,0 +54205,Darlowo,469,272,699278528,5571,0 +54206,Wioska+bzyku195,336,651,849089512,426,0 +54207,Wioska+barbarzy%C5%84ska,548,718,699828442,9639,0 +54208,013.+Wioska+barbarzy%C5%84ska,700,388,2873154,6912,0 +54209,C0303,282,536,8841266,3620,0 +54210,North+078,598,292,849064752,4332,0 +54211,Www,505,394,849044961,2768,0 +54212,Wioska+barbarzy%C5%84ska,554,694,849099280,803,0 +54213,E001,635,313,699299123,4405,0 +54214,A-006,321,366,699406247,4349,0 +54215,022,698,620,7085502,7601,4 +54216,020+%7C+North,376,693,699511295,1598,0 +54217,wy...,597,700,699828685,3946,0 +54218,Lee%C5%9Bnica,297,597,1276665,8279,0 +54219,New+WorldA,282,543,849084005,5220,0 +54220,%3D110%3D+Wioska+barbarzy%C5%84ska,704,592,3781794,1984,0 +54222,komandos48,648,676,7976264,7085,0 +54223,Wioska+emilek,633,318,849040462,4559,0 +54224,Kandydat,691,372,7973893,1402,0 +54225,Osada+koczownik%C3%B3w,321,358,0,815,7 +54227,P%C3%B3%C5%82nocny+Bagdad,625,312,8847546,6647,0 +54228,Wioska+barbarzy%C5%84ska,299,594,0,4030,0 +54229,04Wioska+barbarzy%C5%84ska,362,685,699704542,6837,0 +54230,44.Ymlac,723,532,8976313,3060,0 +54231,P%C3%B3%C5%82nocny+Bagdad,616,303,8847546,7103,0 +54232,Wioska+barbarzy%C5%84ska,537,279,849105071,2549,0 +54233,0045,476,730,699280514,1245,0 +54234,Wioska+barbarzy%C5%84ska,595,290,849101409,1242,0 +54235,Op+Konfederacja,465,280,848915730,1221,0 +54236,%C5%9Aw181%2A003,661,345,959179,3045,0 +54237,001+bam,280,552,197581,9511,0 +54238,Grzejdas+4,695,387,849057764,3114,0 +54240,Wioska26,332,344,699711926,4001,0 +54241,Dhabfba,634,686,849102985,1633,0 +54242,kww06,717,544,8541236,2745,0 +54243,Z%C5%82oty+%C5%9Awit,585,295,699883079,7549,0 +54244,Far+far+away,284,580,849096458,2530,0 +54245,181+Wioska+Chmielu,716,509,848975192,2354,0 +54246,Wioska+barbarzy%C5%84ska,407,288,698231772,2560,0 +54247,Wioska+barbarzy%C5%84ska,416,287,3411571,9788,0 +54248,K33,309,390,699794765,1537,0 +54250,Wioska+barbarzy%C5%84ska,316,634,698908184,2189,0 +54251,komandos,660,662,7976264,3302,0 +54252,042+Wioska+barbarzy%C5%84ska,545,281,699854484,9835,0 +54253,Wioska+wieslaw1,502,276,699794421,5360,0 +54254,New+World,416,716,698152377,9687,0 +54255,New+World,433,717,698152377,10290,4 +54256,Wioska+barbarzy%C5%84ska+019,382,313,849068662,2852,0 +54257,...%3A%3A181+09%3A%3A...,276,510,699641777,3184,0 +54258,Wioska+barbarzy%C5%84ska,724,554,698666810,10066,0 +54259,A%23022,724,540,2065730,9797,9 +54261,Taka.,483,723,848999671,5989,0 +54262,3.Sheffield,567,719,698215322,7886,1 +54264,125+invidia,493,730,849093426,9547,5 +54266,070+Wioska+barbarzy%C5%84ska,542,282,699854484,8643,0 +54267,Kapitol_01,509,722,606407,4377,0 +54268,01+Kapitol,547,359,849108780,11487,0 +54269,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,720,8201460,9370,0 +54270,Stolica+Berciaka,540,341,849108784,7300,0 +54271,04Wioska+barbarzy%C5%84ska,361,681,699704542,8373,0 +54272,Piek%C5%82o+to+inni,638,325,848956765,2998,0 +54273,Wioska+barbarzy%C5%84ska,643,379,7973893,5582,0 +54274,064.,635,687,699373599,1639,0 +54275,New+WorldA,275,541,849084005,3375,0 +54276,komandos,661,663,7976264,2545,0 +54277,Wioska+Lord+Pynio,662,336,849018778,6964,0 +54278,Sony+911,716,583,1415009,5323,0 +54279,016.+Way+of+Blond,463,723,848896948,9043,5 +54280,K42+ADAMUS+005,281,433,6212605,9172,0 +54281,Wioska+barbarzy%C5%84ska,707,403,699598425,3486,0 +54282,Wioska+Bosman7,564,714,6948,209,0 +54283,Wioska+barbarzy%C5%84ska,311,367,699660539,1855,0 +54284,Wioska+barbarzy%C5%84ska,303,601,698167138,1673,0 +54285,C0307,278,536,8841266,2930,0 +54286,Wioska+barbarzy%C5%84ska,369,688,849030086,1783,0 +54287,ZZZ+.%3A%3A.+cinek3456%2F13,587,712,33900,1275,0 +54288,bandzior,498,729,606407,6388,0 +54289,%3D121%3D+Wioska+barbarzy%C5%84ska,714,564,3781794,2173,0 +54290,Po%C5%82udniowy+Wsch%C3%B3d+015,694,610,699778867,825,0 +54291,MP4%2F1B,405,299,8429484,2003,0 +54292,0000038Z,278,562,849089881,3200,0 +54293,R+049,492,729,699195358,3190,0 +54294,.achim.,568,289,6936607,5579,0 +54295,K33,318,386,699794765,3638,0 +54296,Wioska+barbarzy%C5%84ska,427,291,698231772,3878,0 +54297,Wioska+Lodar93,604,707,699828685,888,0 +54298,%C5%9Aw181%2A006,663,341,959179,1799,0 +54299,Grunwald+001,660,334,698290577,3450,0 +54300,Lord+Arsey+KING,664,648,848956513,7673,0 +54301,054+Wioska+barbarzy%C5%84ska,549,280,699854484,9835,0 +54302,-11.+Las+Grzybas,379,308,698345556,2254,0 +54303,Wioska+barbarzy%C5%84ska,401,702,849014922,3878,0 +54304,K42+ADAMUS+019,281,429,6212605,3679,0 +54305,Kapitol_08,499,723,606407,5817,0 +54306,27.+Ofir,722,533,8976313,7266,0 +54307,Wioska+barbarzy%C5%84ska,399,705,849014922,5658,0 +54308,...%3A%3A181+11%3A%3A...,273,511,699641777,2856,0 +54309,Wioska+barbarzy%C5%84ska,624,685,699699601,1177,0 +54310,Wioska+barbarzy%C5%84ska,350,672,0,738,0 +54311,0067,454,726,849037407,10183,0 +54312,127+invidia,493,731,849093426,8896,5 +54313,091,699,612,699373599,411,0 +54314,Wioska+barbarzy%C5%84ska,316,376,699660539,2475,0 +54315,Wioska+barbarzy%C5%84ska,704,393,699598425,1948,0 +54316,Wioska+barbarzy%C5%84ska+12,346,331,698757439,6439,0 +54317,BOA2,305,621,699829494,5176,0 +54318,Wioska+barbarzy%C5%84ska,713,573,2453888,9135,0 +54319,C0313,278,525,8841266,2493,0 +54320,007,408,298,9283775,2870,0 +54321,Warszawa,407,294,3411571,8103,0 +54322,Wioska+ziutek+1,517,274,7787254,7559,0 +54323,Wioska+barbarzy%C5%84ska,497,722,699429335,5884,0 +54324,D+%7C+Forest+Cyaaaanku,277,465,699213622,8502,9 +54325,Wioska+badadi+97,722,506,1043028,3240,0 +54326,072.+Wioska+barbarzy%C5%84ska,728,462,7494497,5575,0 +54327,051,668,656,2323859,3384,0 +54328,Wioska+barbarzy%C5%84ska,729,485,698191218,2260,0 +54329,062.,643,679,699373599,2339,0 +54330,Wioska+barbarzy%C5%84ska,716,417,698191218,1003,0 +54331,Mordownia+9,707,593,849101029,4287,0 +54332,XDX,613,301,699098531,5158,0 +54333,Zaplecze+ludzik%C3%B3w,354,322,699796330,9804,4 +54335,%230264+colt9,432,280,1238300,1299,0 +54336,O133,313,633,272173,4486,0 +54337,Wioska+barbarzy%C5%84ska,527,721,6116940,2297,0 +54338,Wioska+barbarzy%C5%84ska,679,629,6417987,1699,0 +54339,-001-,729,491,7418168,9725,0 +54340,Kiedy%C5%9B+Wielki+Wojownik,329,360,8632462,1815,0 +54341,082.+Wioska+barbarzy%C5%84ska,730,472,7494497,3866,0 +54342,Orgetoryks,327,358,848998530,1935,0 +54343,008.+Osada+koczownik%C3%B3w,706,395,2873154,10237,2 +54344,C016,545,718,698599365,1505,0 +54345,Wioska+barbarzy%C5%84ska,645,681,848987051,6728,0 +54347,No.3,326,346,849106612,1845,0 +54349,Piek%C5%82o+to+inni,650,328,848956765,3942,0 +54350,Wioska+Ozilo,686,367,699794720,5229,0 +54351,%7E%7E084%7E%7E,680,637,7829201,4646,0 +54352,KONFA+TO+MARKA%2C+NARKA,278,441,698152377,6778,0 +54353,North+033,518,272,849064752,6784,0 +54355,Kapitol_25,505,729,606407,3769,0 +54356,0174,370,683,7085510,2486,0 +54357,ZZZ+.%3A%3A.+cinek3456%2F09,586,709,33900,1769,0 +54358,KONFA+TO+MARKA%2C+NARKA,283,453,698152377,4274,0 +54360,Wioska+9,681,645,1647052,866,0 +54361,%23005,550,276,849064614,8599,0 +54362,Wioska+barbarzy%C5%84ska,353,668,0,484,0 +54363,Kiedy%C5%9B+Wielki+Wojownik,328,349,8632462,1361,0 +54364,Motorola+09,365,318,698806018,3682,0 +54365,003+%7C+North,383,697,699511295,8796,7 +54366,Wiadro24,680,642,8677963,3317,0 +54367,KONFA+TO+MARKA%2C+NARKA,276,446,698152377,7957,0 +54368,Wioska+barbarzy%C5%84ska,274,551,1095489,733,0 +54369,Wioska+017,669,356,7226782,4786,0 +54370,okk,697,623,848928486,409,0 +54371,Zzz+10+Vetiuss,281,570,849084740,5335,0 +54372,KONFA+TO+MARKA%2C+NARKA,292,418,698152377,2482,0 +54373,Kapitol_22,510,731,606407,4074,0 +54374,PPF-02,520,274,1424656,5849,0 +54375,O105,314,625,272173,7662,0 +54376,KONFA+TO+MARKA%2C+NARKA,281,441,698152377,5896,0 +54377,013+-+Budowanko%21,489,728,7540891,6553,0 +54379,C0288,280,546,8841266,4375,0 +54380,Wioska+barbarzy%C5%84ska,716,419,699722599,4514,0 +54381,%5B0237%5D,271,499,8630972,4604,0 +54383,Piek%C5%82o+to+inni,652,325,848956765,1648,0 +54384,Wioska+barbarzy%C5%84ska,629,688,6818593,1406,0 +54385,70.+Wioska+70,277,563,849091769,6784,6 +54386,O095,313,637,272173,7736,0 +54388,064+Wioska+barbarzy%C5%84ska,345,659,6354098,3402,0 +54389,.achim.,570,289,6936607,4299,0 +54390,011+-+Budowanko%21,489,726,7540891,6614,0 +54391,New+WorldA,271,536,849084005,1926,0 +54392,Wioska+barbarzy%C5%84ska,376,306,699191449,1394,0 +54393,04Wioska+barbarzy%C5%84ska,364,684,699704542,7567,0 +54394,Wioska+barbarzy%C5%84ska,732,509,6510480,5669,0 +54395,New+World,429,712,698152377,10290,0 +54396,Zadupie,680,358,699875213,2818,6 +54398,Wioska+barbarzy%C5%84ska,729,529,848946700,2864,0 +54399,Nowe+Dobra+-+budowa,684,625,699759128,5202,0 +54400,0047,478,728,699280514,1463,0 +54401,Wioska+Lord+Jack+Carver,324,646,8752714,5002,0 +54402,033.+Brauer92,702,394,2873154,10237,0 +54403,%5B807%5D+Odludzie,712,434,848985692,7450,0 +54405,%24001%24+Isengard,305,624,699550876,10019,0 +54406,061.,447,725,849034882,9393,0 +54408,022+KTW,724,446,848883237,10971,2 +54409,Wioska+barbarzy%C5%84ska,388,300,3842862,571,0 +54410,%23032,557,280,849064614,2225,0 +54411,Wioska+barbarzy%C5%84ska,602,302,0,144,0 +54412,%230188+barbarzy%C5%84ska,661,336,1238300,5413,0 +54413,Wioska+Soldier2020,622,693,699883836,8895,0 +54414,XDX,608,305,699098531,3914,0 +54415,O154,316,629,272173,792,0 +54416,Wioska+barbarzy%C5%84ska,319,630,698908184,5283,0 +54417,Wioska28,334,345,699711926,1957,0 +54418,KONFA+TO+MARKA%2C+NARKA,283,435,698152377,8290,0 +54419,Wioska+barbarzy%C5%84ska,278,527,699425709,1317,0 +54420,North+093,596,292,849064752,4289,0 +54422,076.+Acci,723,460,849091866,4197,0 +54423,005,295,593,698663855,10068,0 +54424,044Bagno,468,723,698620694,7113,0 +54425,Z01,374,695,698652014,1623,0 +54426,-27-,584,710,849032414,3141,0 +54427,021,290,424,6131106,2345,0 +54428,030Boli+g%C5%82owa,501,715,698620694,2665,0 +54429,0106,691,379,698416970,2436,0 +54430,Wioska+barbarzy%C5%84ska,353,329,8772425,1697,0 +54431,Szarowki,601,709,848912937,4985,0 +54432,Psycha+Siada,324,648,8099868,4807,0 +54434,Wioska+barbarzy%C5%84ska,553,716,699828442,8561,0 +54435,%3D111%3D+Wioska+barbarzy%C5%84ska,709,578,3781794,4318,0 +54436,71.+Wioska+71,277,564,849091769,2774,0 +54437,PPF-40,537,275,1424656,743,0 +54439,04Wioska+barbarzy%C5%84ska,357,674,699704542,6990,0 +54440,Spoko%2C+nie+szkodzi,711,407,699785935,2426,0 +54441,MERHEt,588,705,698215322,3530,0 +54442,012+%7C+North,375,686,699511295,4955,0 +54443,%23002,553,279,849064614,9187,0 +54444,Wioska+barbarzy%C5%84ska,561,715,699712422,772,0 +54445,071+Wioska+barbarzy%C5%84ska,340,665,6354098,2419,0 +54446,Wioska+003,670,347,7226782,5889,0 +54447,KONFA+TO+MARKA%2C+NARKA,287,413,698152377,2699,0 +54448,016+Twierdza,633,677,849104328,7143,0 +54449,Wioska+004,673,353,7226782,3424,0 +54450,t010,671,348,2262902,7208,8 +54451,002+wolno%C5%9B%C4%87,335,659,6910361,812,0 +54452,04Wioska+barbarzy%C5%84ska,364,679,699704542,6801,0 +54453,%23%23%23154%23%23%23,610,694,698285444,10388,0 +54454,CastAway+%23018,710,585,9314079,3585,0 +54455,Wiadro20,686,636,8677963,1275,0 +54456,C.057,723,481,9188016,1358,0 +54457,MojeDnoToWaszSzczyt,507,272,9299539,9945,0 +54459,Wioska+barbarzy%C5%84ska,450,276,699308637,1764,0 +54460,003,306,374,849109795,5942,4 +54461,33.+Vicovaro,724,527,8976313,5876,0 +54462,Wioska+barbarzy%C5%84ska,722,475,113796,906,0 +54463,039+Ever+Grande+City,730,483,699441366,4770,0 +54464,Wioska+barbarzy%C5%84ska,658,334,699072129,7139,0 +54465,Wioska17,704,579,699266530,4471,0 +54466,Osada+koczownik%C3%B3w,459,281,699393759,3730,3 +54467,C.053,720,477,9188016,4491,0 +54468,011.+Calzone,316,371,849102092,8450,0 +54469,110+Takahashi,636,471,7092442,3111,0 +54470,szymek2,280,426,1323424,3849,0 +54471,Wioska+barbarzy%C5%84ska,458,275,699191464,3160,0 +54472,2+lozi20,726,456,849095599,2193,0 +54473,Wioska+barbarzy%C5%84ska,712,427,699722599,3683,0 +54474,%23010,548,273,849064614,6453,0 +54475,Zaplecze+Barba+037,356,331,699796330,4632,0 +54477,Wioska+barbarzy%C5%84ska,550,718,699828442,9741,0 +54478,Avanti%21,273,476,698625834,3412,0 +54479,moria,295,391,698677650,4133,0 +54480,New+WorldA,279,518,849084005,1238,0 +54481,%230261+c%C5%82opciec,478,278,1238300,953,0 +54482,045Cacu%C5%9B-Lion,471,728,698620694,4442,0 +54483,%23022,544,274,849064614,2513,0 +54484,181,518,279,849107799,980,0 +54485,North+K25,535,272,699146580,5607,0 +54486,Wioska+barbarzy%C5%84ska,726,544,848946700,2132,0 +54487,Wioska+barbarzy%C5%84ska,371,691,849096945,872,0 +54488,124,386,695,849099876,8432,6 +54490,P%C3%B3%C5%82nocny+Bagdad,630,316,8847546,3421,0 +54491,Wioska+barbarzy%C5%84ska,297,607,699604515,292,0 +54492,086+Wioska+barbarzy%C5%84ska,475,280,699854484,9799,0 +54493,Wioska+2,270,511,849114265,3439,3 +54494,Wioska+Go%C5%82abek,595,298,849070736,5870,0 +54495,129.Stradi,398,296,698365960,2702,0 +54496,-28-,577,709,849032414,8098,0 +54497,Wioska27,331,343,699711926,4482,0 +54498,Wioska+barbarzy%C5%84ska,386,694,849014922,1943,0 +54499,.achim.,571,286,6936607,4985,0 +54500,XDX,614,306,699098531,4926,0 +54501,Nowe+Dobra+-+budowa,689,629,699759128,5736,0 +54502,Wioska,706,587,3692413,576,0 +54503,Wioska+barbarzy%C5%84ska,709,419,699722599,4105,0 +54504,029.+Brauer92,700,395,2873154,6808,0 +54505,038+Pacifidlog+Town,728,483,699441366,3477,0 +54506,Ghostmane3,717,449,848896434,2430,0 +54507,New+World,413,711,698152377,9984,0 +54508,014,606,301,699117992,1082,0 +54509,%23015,555,276,849064614,5034,0 +54510,055,666,649,2323859,758,0 +54511,058.,640,673,699373599,1956,0 +54512,...%3A%3A181+06%3A%3A...,274,516,699641777,3539,3 +54513,Wioska+barbarzy%C5%84ska,692,612,6160655,792,0 +54514,MojeDnoToWaszSzczyt,504,272,9299539,9947,0 +54515,Wioska+barbarzy%C5%84ska,724,493,6510480,1277,0 +54516,064,695,623,699099811,288,0 +54517,MojeDnoToWaszSzczyt,497,270,9299539,9946,0 +54518,006,609,303,699117992,8812,8 +54519,094,724,508,7085502,3361,0 +54520,KONFA+TO+MARKA%2C+NARKA,281,428,698152377,4344,0 +54521,Xardas,625,317,848974611,5543,0 +54522,002+%7C+North,382,695,699511295,10019,0 +54523,P%C3%B3%C5%82nocny+Bagdad,628,317,8847546,2699,0 +54524,Wioska+barbarzy%C5%84ska,396,697,849014922,3969,0 +54525,Wioska+barbarzy%C5%84ska,394,706,849014922,5658,0 +54526,060KP,484,273,849063849,2504,0 +54527,Wioska+barbarzy%C5%84ska,724,555,698666810,8474,0 +54528,So%C5%9Bnica+3,286,578,848892804,623,0 +54529,Wioska+Lisu79,279,464,699812351,3977,0 +54530,Z%C5%82oty+%C5%9Awit,598,297,699883079,5589,0 +54531,Wioska21,331,346,699711926,4142,0 +54532,063KP,480,271,849063849,2183,0 +54533,Wioska+001,670,348,7226782,9693,0 +54534,wy...m,599,700,699828685,3860,0 +54535,0018,681,632,6417987,1429,0 +54536,Wioska+Pracz+7,308,622,8916982,6714,0 +54537,Wioska+barbarzy%C5%84ska,564,716,7756002,5570,0 +54538,Psycha+Siada,323,647,8099868,6796,0 +54539,019,294,606,699356968,6329,0 +54541,BB2,269,516,849110365,1717,0 +54542,04Wioska+barbarzy%C5%84ska,358,671,699704542,6169,0 +54543,North+034,515,269,849064752,5892,0 +54544,K%C5%82odzko,674,637,848932879,2198,0 +54545,WOLA0005,675,360,6956104,3558,0 +54546,MojeDnoToWaszSzczyt,505,275,9299539,9945,0 +54548,016,339,343,849101205,1282,0 +54550,Wioska+barbarzy%C5%84ska,730,522,698191218,3142,0 +54551,Wioska+mily546,646,675,747422,775,0 +54552,Kartagina,691,620,7550472,9604,0 +54553,%23205+C,509,732,9037756,4520,0 +54554,033.+Gloria+Victis,281,572,848886973,4415,0 +54555,Wioska+Waldemark,703,611,6921135,4553,0 +54557,Nowa+61,723,564,698702991,3497,0 +54558,008,273,450,698652171,3021,1 +54559,Wioska+Boginysa,312,625,2324569,3210,0 +54560,t014,668,351,2262902,7340,0 +54561,Wioska+barbarzy%C5%84ska,319,370,0,606,0 +54562,Wioska+barbarzy%C5%84ska,681,637,698191218,3200,0 +54563,Sony+911,672,655,1415009,6111,0 +54564,O149,314,630,272173,2271,0 +54565,Kurnik,447,719,699603116,7628,0 +54567,W00,323,636,698908184,5693,0 +54568,007+Wioska+F,285,570,6240801,2755,0 +54569,Avanti%21,275,468,698625834,2416,0 +54570,Wioska+barbarzy%C5%84ska,638,680,848987051,4870,0 +54571,Wioska+wilka+05,719,563,6786449,8067,0 +54572,Wioska32,336,349,699711926,1310,0 +54573,Wioska+a,426,283,6343784,6493,0 +54574,North+109,509,271,849064752,1174,0 +54576,Kapitol_15,498,731,606407,4359,0 +54577,R+050,497,732,699195358,2336,0 +54578,Wioska+barbarzy%C5%84ska,729,541,8323711,843,0 +54579,KONFA+TO+MARKA%2C+NARKA,286,440,698152377,10295,0 +54580,Wioska+barbarzy%C5%84ska,553,726,699828442,4550,0 +54581,4-Wioska+-OB,692,611,1205898,1392,0 +54582,038+KTW,723,453,848883237,1989,7 +54583,Wioska+barbarzy%C5%84ska,725,464,699574408,2477,0 +54584,0017+Domek+Miniuka+01,479,727,699656989,8543,0 +54585,B004,520,278,699485250,7520,0 +54586,A%23048,706,406,2065730,6702,0 +54587,Piek%C5%82o+to+inni,643,324,848956765,3937,0 +54588,TRENER,373,682,849097837,706,0 +54589,Obrze%C5%BCe,603,707,7589468,3196,0 +54590,.achim.,578,289,6936607,2274,0 +54591,113.Stradi,424,282,698365960,7236,0 +54592,065,692,623,699099811,3080,0 +54593,%24003%24+XMAS,305,626,699550876,9039,0 +54594,021,302,612,699356968,1605,0 +54595,--041--,575,291,542253,2914,0 +54596,053,655,666,2323859,2001,0 +54598,Wioska+Pracz+2,309,625,8916982,7241,0 +54599,Z%C5%82oty+%C5%9Awit,593,297,699883079,1315,0 +54600,A+co+Gazet+nie+czytasz+%3F,271,510,849105417,1038,0 +54601,Wioska+barbarzy%C5%84ska,691,627,849092827,471,0 +54602,%23041,557,284,849064614,1293,0 +54603,Flap,615,298,699098531,6080,0 +54604,Tomek+II,384,490,699265922,8138,0 +54605,Wioska22,330,347,699711926,4649,0 +54606,Wioska+barbarzy%C5%84ska,385,702,849014922,5658,0 +54607,Piek%C5%82o+to+inni,642,328,848956765,3349,0 +54608,Lord+Arsey+KING,665,649,848956513,4730,0 +54609,CZARNA+PER%C5%81A,279,544,848930898,7808,0 +54610,Wioska+barbarzy%C5%84ska,397,704,849014922,6349,0 +54611,Wioska+027,672,354,7226782,799,0 +54612,New+World,432,712,698152377,7425,0 +54613,ATYPOWY,292,602,699774694,3012,0 +54614,B014,530,270,699485250,4966,0 +54615,Wioska+barbarzy%C5%84ska,302,602,698167138,516,0 +54616,Wioska+barbarzy%C5%84ska,531,727,849066849,1220,0 +54617,Wioska+MGryglak95,291,599,849108971,2476,0 +54618,Wioska+barbarzy%C5%84ska,394,705,849014922,6276,0 +54619,KONFA+TO+MARKA%2C+NARKA,294,416,698152377,2228,0 +54620,North+035,511,268,849064752,6855,0 +54621,XDX,617,305,699098531,3556,0 +54622,Wioska+barbarzy%C5%84ska,407,290,698231772,3091,0 +54624,Kurnik,451,719,699603116,8541,0 +54625,04+Tabaluga1922,636,322,6517826,1809,0 +54626,Wioska+0026,341,659,9186126,649,0 +54627,Wioska+M2,549,718,849085293,230,0 +54628,U-09,653,323,3600737,2325,0 +54629,North+094,600,294,849064752,4438,0 +54630,%7CD%7C+Wolffall,456,720,698147372,3809,0 +54631,%230058,578,711,1536231,4079,0 +54632,XDX,606,302,699098531,3604,0 +54633,050+Osada+koczownik%C3%B3w,345,662,6354098,6334,9 +54634,Wioska+014,673,346,7226782,1822,0 +54635,Wioska+barbarzy%C5%84ska,729,490,698191218,2886,0 +54636,004,292,590,698663855,10068,0 +54637,005,404,297,9283775,2836,0 +54638,Pcim+G%C3%B3rny,466,277,849100083,3295,0 +54639,New+World,433,719,698152377,10290,0 +54640,Wioska+barbarzy%C5%84ska+002,718,434,7588382,3603,0 +54641,komandos,667,652,7976264,4060,0 +54642,nowa+3,626,687,699372829,812,0 +54643,Wioska+barbarzy%C5%84ska,364,318,3484132,4767,0 +54644,K42+ADAMUS+013,280,429,6212605,5614,0 +54645,PPF-29,568,279,1424656,1456,0 +54646,Avanti%21,273,468,698625834,2280,0 +54647,Wioska+morogram,463,276,848952566,4319,0 +54648,Wioska+maciusw,395,696,699747504,154,0 +54649,Wioska+barbarzy%C5%84ska,301,612,0,965,0 +54650,Wioska+henior123,380,309,698160606,433,0 +54651,MojeDnoToWaszSzczyt,488,273,9299539,9945,0 +54652,zzosa,704,603,3986807,1257,5 +54653,New+World,437,720,698152377,2081,0 +54654,XDX,611,297,699098531,3674,0 +54655,008,682,359,9148043,6984,4 +54656,North+036,509,270,849064752,6784,0 +54657,Wioska+barbarzy%C5%84ska,412,293,698231772,4825,0 +54658,P%C3%B3%C5%82nocny+Bagdad,618,303,8847546,6497,0 +54659,Wioska+runiczna,409,300,698231772,4355,10 +54660,Wioska+runiczna,421,302,698231772,4355,10 +54661,Wioska+runiczna,446,313,8630972,10495,10 +54662,XDD,474,316,698489071,10618,10 +54663,magiczna+flet,496,308,848918380,10178,10 +54664,Runy+na+runy,414,329,699796330,9740,10 +54665,XDDD,431,323,698489071,2354,10 +54666,Wioska+barbarzy%C5%84ska,440,329,0,6598,10 +54667,%230066+runiczna,474,336,1238300,10178,10 +54668,XDD,481,321,698489071,9513,10 +54669,10002+runiczna,418,354,699431255,9512,10 +54670,Runy+zn%C3%B3w+Runy,433,343,699796330,9740,10 +54671,K34+-+%5B080%5D+Before+Land,442,355,699088769,9192,10 +54672,Gr%C3%B3d+5,463,343,699204478,8746,10 +54673,Wioska+runiczna,491,340,698739350,9761,10 +54674,A-048-Heffitto,402,367,8419570,10168,10 +54675,Wioska+runiczna,425,378,699796330,10460,10 +54676,10001+runiczna,441,371,699431255,8984,10 +54677,VN+Feitan+Portor,464,369,699883079,9672,10 +54678,.039.,492,377,698489071,9712,10 +54679,Wioska+runiczna,411,386,699402816,9835,10 +54680,Kentin+ufam+Tobie,431,389,699783765,10000,10 +54681,K34+x008+Wioska+Runiczna,444,390,698364331,9331,10 +54682,.041.,471,390,698489071,10001,10 +54683,Napewno+to+nie+jest+off,494,397,848912265,7632,10 +54684,magiczna+flet,508,303,848918380,10178,10 +54685,AAA,539,317,1006847,6942,10 +54686,BRICKLEBERRY,554,304,699072129,5738,10 +54687,Wioska+runiczna,568,303,849054951,10047,10 +54688,Wioska+krumlow+13,592,308,699098531,1767,10 +54689,Lord+Lord+Franek+.%23177,518,330,698420691,9393,10 +54690,Lord+Lord+Franek+.%23083,523,336,698420691,9955,10 +54691,Wioska+runiczna,542,337,2972329,4668,10 +54692,K35+-+%5B033%5D+Before+Land,576,322,699088769,4579,10 +54693,K35+-+%5B038%5D+Before+Land,585,320,699088769,3696,10 +54694,Lord+Lord+Franek+.%23109,510,344,698420691,9955,10 +54695,Lord+Lord+Franek+.%23084,534,344,698420691,9955,10 +54696,Wioska+runiczna,550,349,699072129,8680,10 +54697,Wioska+XVI,577,347,698200480,3668,10 +54698,020+Schwere+Panzer-Abteilung+505,597,357,849091899,2540,10 +54699,.040.,509,371,698489071,10030,10 +54700,000,529,360,1990750,10068,10 +54701,.%3A050%3A.+%C5%81OBUZIK,549,370,848934935,7097,10 +54702,Wioska+runiczna,561,362,699072129,10216,10 +54703,Weso%C5%82ych+%C5%9Awi%C4%85t,591,363,848915730,5608,10 +54704,.038.,503,381,698489071,9989,10 +54705,000,527,390,1990750,10068,10 +54706,Taran,547,386,699170684,9426,10 +54707,077R,573,397,849063849,6384,10 +54708,C+019,597,393,6384450,9311,10 +54709,Sruniczna,314,416,356642,9821,10 +54710,Sruniczna,321,404,356642,9835,10 +54711,%2A166%2A,348,408,699273451,8116,10 +54712,R%C4%99cznik+do+zmiany,373,406,699697558,9854,10 +54713,012,379,405,848945529,9995,10 +54714,Wioska+runiczna,309,429,849099859,3686,10 +54715,magiczna+flet,336,427,848918380,10178,10 +54716,magiczna+flet,346,422,848918380,10178,10 +54717,M181_019,359,434,393668,8811,10 +54718,magiczna+flet,390,427,848918380,10178,10 +54719,KONFA+TO+MARKA%2C+NARKA,310,454,698152377,10290,10 +54720,Wioska+runiczna,329,445,849096547,4092,10 +54721,Wioska+runiczna,340,452,393668,1501,10 +54722,Kentin+ufam+Tobie,370,452,699783765,10000,10 +54723,s181eo25,396,451,393668,7531,10 +54724,KONFA+TO+MARKA%2C+NARKA,303,460,698152377,10290,10 +54725,Wioska+Bochuniczna10,331,475,7449254,8549,10 +54726,Kentin+ufam+Tobie,340,470,699783765,10000,10 +54727,A0257,378,473,8841266,10362,10 +54728,Wioska+runiczna,384,460,698807570,10047,10 +54729,Dream+on,304,486,698962117,9697,10 +54730,A0284,330,484,8841266,10362,10 +54731,Kentin+ufam+Tobie,342,480,699783765,10000,10 +54732,Mniejsze+z%C5%82o+0054,378,484,699794765,7726,10 +54733,Wioska+runiczna,393,497,698290577,6871,10 +54734,zupe%C5%82nie+normalna+wioska,413,414,699323302,10997,10 +54735,0000,433,419,3909522,9348,10 +54736,10003+runiczna,444,417,699431255,9512,10 +54737,Monetki,477,410,699098531,9814,10 +54738,Uwaga+b%C4%99d%C4%99+broni%C4%87%21+-+Roman+kaza%C5%82,487,409,699433558,10178,10 +54739,Wioska+runiczna,403,429,7462660,10093,10 +54740,Wioska+runiczna,428,428,9291984,7726,10 +54741,Wioska+runiczna,456,426,9291984,9188,10 +54742,Monetki,471,421,699098531,9814,10 +54743,7.62+mm,486,439,699777234,10019,10 +54744,KONFA+TO+MARKA%2C+NARKA,408,459,698152377,10290,10 +54745,Suppi,437,450,699856962,9549,10 +54746,Wioska+runiczna,446,458,699660539,8696,10 +54747,Os+Konfederacja,469,449,848915730,9682,10 +54748,BR01,487,448,699299123,9503,10 +54749,Kentin+ufam+Tobie,404,478,699783765,10000,10 +54750,KONFA+TO+MARKA%2C+NARKA,422,459,698152377,10290,10 +54751,%2B44+74+Lyon+Fourviere,446,473,698361257,9705,10 +54752,BR02,476,470,699299123,10269,10 +54753,124+Culiacan,481,459,1497168,9761,10 +54754,PRO8L3M,411,492,7491093,7651,10 +54755,SsSs,423,487,1536625,10139,10 +54756,035,442,491,699510259,9741,10 +54757,123+Mazatlan,477,480,1497168,9761,10 +54758,Pf+Konfederacja,486,483,848915730,9786,10 +54759,.%3A000%3A.+Chillout,500,405,848934935,9389,10 +54760,Wioska+runiczna,535,402,7758085,9498,10 +54761,Hhh,540,409,7271812,10495,10 +54762,133,559,413,849064752,10311,10 +54763,South+K45,582,400,699146580,8188,10 +54764,Wioska+runiczna,501,421,699658023,8378,10 +54765,Piek%C5%82o+to+inni,525,431,848956765,10160,10 +54766,.%3A095%3A.+Chillout,542,437,848934935,4769,10 +54767,ADEN,570,425,698588535,9140,10 +54768,%5B354%5D+Chor%C4%85giewka+na+wietrze,585,436,848985692,9659,10 +54769,.%3A052%3A.+Chillout,519,443,848934935,3092,10 +54770,229+Jakarta,536,446,1497168,7840,10 +54771,Wioska+runiczna,544,448,0,2196,10 +54772,.....yhj,576,446,699368887,4871,10 +54773,056.+Runa,580,457,849094609,5063,10 +54774,Szlachcic,506,466,699098531,6048,10 +54775,SINGAPUR,537,472,8155296,6579,10 +54776,016,547,470,699194766,8403,10 +54777,%21+Wioska+runiczna,562,461,477415,8914,10 +54778,087.+Runa,587,459,849094609,2670,10 +54779,126.,512,486,8788366,6896,10 +54780,%5B087%5D,539,491,848985692,9476,10 +54781,0061,544,487,698416970,8091,10 +54782,%7E%7ELataj%C4%85cyHolender%7E%7E,563,494,9174887,9555,10 +54783,%7E%7ELataj%C4%85cyHolender%7E%7E,581,489,9174887,9141,10 +54784,Wioska+runiczna,614,400,0,2281,10 +54785,Wioska+runiczna,628,411,699429153,9825,10 +54786,073-+Mroczna+Osada,641,406,849035905,3047,10 +54787,Wioska+barbarzy%C5%84ska,663,407,0,3845,10 +54788,Wioska+barbarzy%C5%84ska,698,400,8675636,10019,10 +54789,%23047.495%7C486,614,437,556154,9735,10 +54790,%2A0016+co+to+jest,633,421,8459255,10315,10 +54791,I076+Potrzymaj+mi+piwo,658,439,699722599,10113,10 +54792,Jehu_Kingdom_99,664,426,8785314,6045,10 +54793,Wioska+runiczna,684,425,699738350,7452,10 +54794,055.+Runa,603,445,849094609,4889,10 +54795,0051,631,453,698416970,9258,10 +54796,Wioska+runiczna,643,446,849088515,10019,10 +54797,I077,660,446,699722599,10050,10 +54798,I078,686,453,699722599,9326,10 +54799,041.+Wioska+runiczna,608,469,8337151,9868,10 +54800,040.+Avennio,625,463,849091866,10231,10 +54801,Wioska+runiczna,656,462,849088515,7610,10 +54802,072+Shimoda,668,474,7092442,10054,10 +54803,%2A028%2A,679,464,698670524,8630,10 +54804,Wioska+runiczna,600,482,699573053,10380,10 +54805,031+runiczna,632,494,9238175,10280,10 +54806,Jehu_Kingdom_98,658,492,8785314,4003,10 +54807,062.+Runa,670,485,849094609,5066,10 +54808,0119,692,491,699429153,9825,10 +54809,C0012,306,518,8841266,10362,10 +54810,015.Wioska+runiczna,334,506,1830149,4334,10 +54811,The+Game+Has+Only+Just+Begun,348,512,9280477,9976,10 +54812,Wioska+runiczna,369,503,699265922,3483,10 +54813,Wioska,392,502,849084005,10178,10 +54814,C0179,301,526,8841266,10362,10 +54815,Chekku+-+meito,339,521,9280477,9976,10 +54816,Chekku+-+meito,342,529,9280477,9976,10 +54817,Wioska+runiczna,362,521,698641566,8766,10 +54818,Wioska,384,538,849084005,10178,10 +54819,Wioska+barbarzy%C5%84ska,304,558,0,3780,10 +54820,Wioska+barbarzy%C5%84ska,322,547,0,1867,10 +54821,Jestem+Poza+Kontrol%C4%85,356,548,8004076,8221,10 +54822,042,362,541,8908002,9032,10 +54823,Wioska,384,543,849084005,10178,10 +54824,Psycho+to+Marka%2C+Narka+%21,319,575,698704189,6083,10 +54825,%28017%29Shattered+Plains,326,567,849098695,8149,10 +54826,x004,357,565,9264752,8569,10 +54827,076+Wioska+runiczna,373,575,699382126,9540,10 +54828,Wioska+runiczna,398,563,9167250,9362,10 +54829,Wioska+runiczna,317,593,0,2537,10 +54830,Wioska+runiczna,339,583,0,2537,10 +54831,Myk+i+do+kieszonki,351,583,9319058,9032,10 +54832,21.+Gara%C5%BC+u+bory%C5%82y,372,597,8665783,8957,10 +54833,Pobozowisko,386,583,699513260,10242,10 +54834,093,402,514,699851427,10129,10 +54835,Zdecydowanie+nie+Wioska+runiczna,422,512,9236866,10042,10 +54836,Wioska+runiczna,450,501,698290577,5013,10 +54837,232+Kair,467,503,1497168,2868,10 +54838,Wioska+runiczna,482,510,0,2537,10 +54839,Wioska+runiczna,411,533,699425709,9410,10 +54840,Suppi,439,523,699856962,9549,10 +54841,Winter+is+coming,445,537,698971484,9533,10 +54842,Wioska+runiczna,467,538,0,2537,10 +54843,Wioska+runiczna,494,520,848967710,8921,10 +54844,144+Wioska+runiczna,401,550,699382126,8655,10 +54845,Zdecydowanie+nie+Wioska+runiczna,429,543,9236866,4494,10 +54846,NOT%3F,444,553,699443920,4149,10 +54847,0343,469,559,698659980,8351,10 +54848,%230083+Runa,490,559,9272054,9488,10 +54849,Wioska+runiczna,403,574,849084740,6152,10 +54850,IIIIIII,427,577,225023,10495,10 +54851,Nuniczna,457,569,699443920,9088,10 +54852,Wioska+runiczna,478,570,8539216,1514,10 +54853,Wioska+runiczna,487,572,8539216,2105,10 +54854,Pobozowisko,405,594,699513260,6724,10 +54855,JJJJJ,429,586,225023,10495,10 +54856,0551,442,588,698659980,5726,10 +54857,Madzia,469,582,2585846,8567,10 +54858,Wioska+runiczna,489,586,699364813,8784,10 +54859,Lord+Arsey+KING,517,506,848956513,10285,10 +54860,Wioska+14,526,511,699385139,8441,10 +54861,%5B129%5D,541,500,8000875,9489,10 +54862,Nitro,569,503,699379895,10450,10 +54863,%5B032%5D+Te+occidere,582,511,848985692,10633,10 +54864,0071+runiczna,517,531,699432672,10495,10 +54865,JaamMwG+026,526,528,848987051,9881,10 +54866,Lord+Arsey+KING,546,532,848956513,10285,10 +54867,%5B127%5D,567,534,8000875,9881,10 +54868,%5B033%5D+Nogalinat+tevi,580,530,848985692,10390,10 +54869,Yogi,511,554,2808172,8550,10 +54870,Wioska+runiczna,530,543,7581876,8724,10 +54871,%5B123%5D,558,556,8000875,9740,10 +54872,%5B130%5D,563,550,8000875,9183,10 +54873,Let+It+Be,591,558,848926293,9445,10 +54874,Wioska+runiczna,501,560,3613413,9840,10 +54875,Wioska+runiczna,521,565,699189792,9740,10 +54876,%5B150%5D,555,576,8000875,9106,10 +54877,Runiczny+Ronin%3F,561,563,699785935,10311,10 +54878,0028+MzM,597,559,698416970,9258,10 +54879,%230100,500,594,1536231,10495,10 +54880,-+153+-,535,581,849018239,10000,10 +54881,Wioska+runiczna,554,586,699784536,10311,10 +54882,Lord+Arsey+KING,572,591,848956513,10285,10 +54883,0037+MzM,597,593,698416970,9060,10 +54884,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+09,611,513,699379895,10362,10 +54885,056+%C5%81%C3%B3d%C5%BA,638,514,7092442,10297,10 +54886,Wioska+runiczna,651,517,6510480,9279,10 +54887,Wioska+runiczna,670,509,6510480,9097,10 +54888,W%C5%82adcy+P%C3%B3%C5%82nocy+02,685,503,699379895,10474,10 +54889,Wioska+runiczna,614,527,6510480,9786,10 +54890,Wioska+runiczna,622,533,6510480,9786,10 +54891,Wioska+runiczna,641,534,6510480,9068,10 +54892,Wioska+runiczna,677,537,848995478,4544,10 +54893,LAST+%21%21%21,686,527,1563417,7414,10 +54894,0027+MzM,604,557,698416970,9258,10 +54895,Wioska+runiczna,629,552,8742874,7883,10 +54896,TWIERDZA+.%3A064%3A.,655,559,7154207,10019,10 +54897,TWIERDZA+.%3A058%3A.,663,555,7154207,9326,10 +54898,Wioska+runiczna,697,543,848995478,4222,10 +54899,Wioska+runiczna,616,565,698702991,9740,10 +54900,Wioska+runiczna,630,564,8742874,7665,10 +54901,TWIERDZA+.%3A059%3A.,659,561,7154207,9430,10 +54902,044.+Wioska+runiczna,667,577,8337151,10083,10 +54903,TWIERDZA+.%3A057%3A.,695,569,7154207,9709,10 +54904,0042+MzM,604,592,698416970,9151,10 +54905,PUSTO,624,584,698768565,6158,10 +54906,042.+Wioska+runiczna,642,595,8337151,10083,10 +54907,043.+Wioska+runiczna,670,583,8337151,10083,10 +54908,045.+Wioska+runiczna,693,579,8337151,10083,10 +54909,Pobozowisko,409,608,699513260,9008,10 +54910,Wioska+runiczna,431,617,6910361,3602,10 +54911,035,442,619,849084985,10311,10 +54912,081,468,617,699336777,7507,10 +54913,Wioska+runiczna,491,617,699494488,9740,10 +54914,Wioska+sobie+014,402,639,7349282,10301,10 +54915,0022+Wioska+runiczna,424,635,9060641,2881,10 +54916,Wioska+runiczna,457,624,699342219,7352,10 +54917,082,469,624,699336777,5947,10 +54918,Wioska+runiczna,486,628,699494488,9577,10 +54919,Wioska+runiczna,409,656,0,2494,10 +54920,Wioska+runiczna,429,658,0,2537,10 +54921,Wioska+runiczna,440,656,0,2537,10 +54922,042%7C%7C+Delphinus,475,652,849035525,9761,10 +54923,Ave+Why%21,495,642,698585370,9772,10 +54924,Wioska+runiczna,411,659,0,2537,10 +54925,Wioska+runiczna,426,668,699736927,8111,10 +54926,Wioska+runiczna,440,660,0,2537,10 +54927,018+Wioska+runiczna,474,665,699834004,5326,10 +54928,%7C040%7C+Wioska+runiczna+K64,494,672,699393742,10160,10 +54929,Wioska+runiczna,410,681,699736927,9551,10 +54930,New+World,438,682,698152377,10315,10 +54931,A19,447,694,698652014,4051,10 +54932,B09,460,686,698652014,5046,10 +54933,A007+RUN,491,680,8954402,10824,10 +54934,0344,519,601,698659980,9911,10 +54935,Mako+Reactor+1+-+B1F,525,612,8199417,9885,10 +54936,Wioska+runiczna,559,601,699342219,10238,10 +54937,Wioska+runiczna,573,619,0,2281,10 +54938,Wioska+runiczna,583,606,699342219,9853,10 +54939,SSJ+056,505,630,699364813,9761,10 +54940,Lower+Level+-+Corporate+Archives,521,621,8199417,10224,10 +54941,0345,541,624,698659980,9911,10 +54942,Yogi,576,639,2808172,8366,10 +54943,0099,589,630,698416970,8097,10 +54944,0530,519,658,698659980,10362,10 +54945,0346,535,644,698659980,10019,10 +54946,yogi,556,641,2808172,8036,10 +54947,Yogi,562,640,2808172,8899,10 +54948,Sony+911,590,643,1415009,10201,10 +54949,029.+Wioska+runiczna,518,668,848928624,6092,10 +54950,0531,521,666,698659980,10362,10 +54951,Wioska+runiczna,556,669,848915531,10238,10 +54952,005.+Wioska+runiczna,574,664,1270916,4380,10 +54953,Wioska+runiczna,585,670,849031846,4235,10 +54954,031.+Wioska+runiczna,507,685,848928624,9199,10 +54955,-+156+-+SS,538,693,849018239,10000,10 +54956,-+158+-+SS,545,695,849018239,10000,10 +54957,nr5,576,680,364126,7631,10 +54958,nr6,588,692,364126,2787,10 +54959,C0253,273,522,8841266,4263,0 +54960,Bunu1,310,366,849050087,1433,0 +54961,New+WorldA,281,540,849084005,2439,0 +54962,KONFA+TO+MARKA%2C+NARKA,292,415,698152377,3355,0 +54963,042.xxx,486,611,8612358,1158,0 +54964,Psycha+Siada,331,651,8099868,4681,0 +54965,New+WorldA,272,502,849084005,1364,0 +54967,Wioska+barbarzy%C5%84ska,400,710,849014922,2469,0 +54968,Wioska+barbarzy%C5%84ska,691,381,7973893,5129,0 +54969,%7CD%7C+IS,458,724,698147372,1857,0 +54970,C0292,277,551,8841266,3733,0 +54971,017+-+Budowanko%21,492,726,7540891,6569,0 +54972,Nowa+62,698,602,698702991,3393,0 +54973,Wioska+barbarzy%C5%84ska,407,296,3411571,127,0 +54974,Wiocha+4,555,724,849045675,8325,0 +54975,181%2A6,696,426,849101881,3763,0 +54976,New+WorldA,276,540,849084005,2370,0 +54977,Wioska+pinkolinka,375,312,849035447,5708,0 +54978,KASHYYYK+1,568,722,699383121,2132,0 +54979,ostr,391,297,3842862,4563,0 +54980,004,291,422,6131106,9740,8 +54981,Zwolin,285,586,699754856,5603,0 +54982,%C5%BBaneta,682,356,699875213,4244,0 +54983,D015,563,279,699299123,3154,0 +54984,062+Wioska+barbarzy%C5%84ska,346,660,6354098,2987,0 +54985,Wioska+LastWish,382,699,698785538,645,0 +54986,komandos,664,656,7976264,5428,0 +54987,236...NORTH,437,287,6920960,4263,0 +54988,%23008,554,282,849064614,6584,0 +54989,030,685,621,699099811,2272,0 +54990,Wioska+gall1,271,473,699598396,3187,0 +54991,Obrze%C5%BCe,603,708,7589468,8815,2 +54992,Aa5,589,714,849097614,1282,0 +54993,Wioska+barbarzy%C5%84ska,536,271,7758085,2761,0 +54994,05+bukai,634,322,6517826,2350,9 +54995,Wioska+skubana123,709,398,699598425,571,0 +54996,Wioska+dextermorgan,698,388,849057764,609,0 +54997,%3F%3F%3F%3F,473,271,698489071,4481,0 +54998,104.+Wioska+pawelec123,731,479,7494497,1210,0 +54999,0063.,454,724,849037407,10345,0 +55000,New+World,427,714,698152377,6926,0 +55001,Wioska+barbarzy%C5%84ska,666,338,699072129,4384,0 +55002,Henryk%C3%B3w,585,708,6674092,2104,0 +55003,ZZZ+.%3A%3A.+cinek3456%2F11,586,711,33900,2058,0 +55004,Wioska+z+Pracza+5,307,625,8916982,1293,0 +55005,Wioska+barbarzy%C5%84ska,729,542,848946700,1852,0 +55006,Wilczy+Szaniec,460,721,698738810,4717,0 +55007,04Wioska+barbarzy%C5%84ska,359,675,699704542,7786,0 +55008,Nowe+Dobra+-+budowa,685,626,699759128,5404,0 +55009,Kapitol_12,495,725,606407,5823,0 +55010,Wioska+Jori,326,435,289542,5970,0 +55011,B013,530,271,699485250,3542,0 +55012,Wioska+barbarzy%C5%84ska,683,359,6956104,1191,0 +55013,%23132%23,661,666,692803,3021,0 +55014,FP044,464,726,699605333,4112,0 +55015,X.01,727,447,699737356,8475,0 +55016,Nowy+0004,284,587,849096972,1164,1 +55017,Wioska+barbarzy%C5%84ska,723,547,698666810,6012,0 +55018,MojeDnoToWaszSzczyt,505,269,9299539,9945,0 +55019,Wioska+barbarzy%C5%84ska,343,669,0,781,0 +55020,K67+Polis,701,613,698867483,5687,0 +55021,Wioska+barbarzy%C5%84ska,724,495,698191218,3250,0 +55022,Wioska+bart1234,724,526,1536231,226,0 +55023,Z%C5%82oty+%C5%9Awit,591,293,699883079,5156,0 +55024,K67+29,706,607,698867483,2867,0 +55025,Wioska+barbarzy%C5%84ska,715,418,699722599,3589,0 +55027,XDX,601,289,699098531,3777,0 +55028,C-002,324,359,699406247,4939,0 +55029,Wioska+barbarzy%C5%84ska,372,316,698160606,4852,0 +55030,Wioska+barbarzy%C5%84ska,718,580,2453888,3449,0 +55032,Wioska+barbarzy%C5%84ska,683,637,698191218,3129,0 +55033,Minas+Tirith,300,613,849100796,8983,0 +55034,008+olk,276,552,197581,2740,0 +55035,wyb...,604,702,699828685,3639,0 +55037,Wioska+barbarzy%C5%84ska,379,362,0,169,0 +55038,Wioska+barbarzy%C5%84ska,684,368,6956104,1759,0 +55039,%5B839%5D+Odludzie,719,444,848985692,5106,0 +55040,Wioska+barbarzy%C5%84ska,651,678,848987051,6351,0 +55041,0658,588,714,698659980,4497,0 +55042,Nowa+59,713,592,698702991,4061,0 +55043,Zorza,708,414,699785935,3905,0 +55044,Poznan+002,412,285,1924718,985,7 +55045,KONFA+TO+MARKA%2C+NARKA,282,424,698152377,4197,0 +55046,034.Gloria+Victis,280,571,848886973,4305,0 +55047,Wioska+barbarzy%C5%84ska,320,359,6343784,881,0 +55048,%C5%9Awierad%C3%B3w,296,604,1276665,1006,0 +55049,B001,680,644,9023703,3679,0 +55050,Wioska+barbarzy%C5%84ska,596,290,849101409,780,0 +55051,Wioska+barbarzy%C5%84ska,578,718,7581876,1880,0 +55052,Wioska+barbarzy%C5%84ska,319,367,0,398,0 +55053,Wioska+barbarzy%C5%84skaE,292,605,698178312,857,0 +55054,%230078,572,719,1536231,3833,0 +55055,Odour+de+camembert,614,297,849109116,5180,0 +55056,I001A,692,382,9314079,1944,0 +55057,Wioska+barbarzy%C5%84ska,375,688,849096945,563,0 +55059,B020,629,307,8740199,4078,0 +55060,0019+Wioska+barbarzy%C5%84ska,489,733,699656989,905,0 +55061,New+WorldA,270,530,849084005,2008,0 +55062,Osada+koczownik%C3%B3w,404,289,698231772,3671,7 +55063,Wioska+barbarzy%C5%84ska,717,550,698666810,9362,0 +55065,Wiocha+5,559,725,849045675,8818,0 +55066,Wioska+barbarzy%C5%84ska,439,587,849028088,7240,0 +55067,t025,666,350,2262902,2090,0 +55068,Jehu_Kingdom_68,714,428,8785314,908,0 +55069,%C5%9Aw181%2A005,663,342,959179,1844,0 +55070,O106,309,635,272173,1092,0 +55071,Wioska+barbarzy%C5%84ska,391,299,698231772,2559,0 +55072,Wioska+barbarzy%C5%84ska+%28malwin%29,278,553,698769107,1722,0 +55073,osada+4,663,348,7357503,2184,0 +55074,40.+EZETH,680,497,699804790,3624,0 +55075,Wioska+barbarzy%C5%84ska,731,521,698191218,3102,0 +55076,02Wioska+barbarzy%C5%84ska,360,678,699443920,7464,0 +55077,XDX,603,293,699098531,3692,0 +55078,%23202+C,515,733,9037756,4158,0 +55080,-22-,590,705,849032414,3880,0 +55081,Wioska+a6,432,277,6343784,1817,0 +55082,101+Wioska+barbarzy%C5%84ska,576,284,699854484,4327,0 +55083,41.+Justys3828,673,489,699804790,2280,0 +55084,PPF-22,536,275,1424656,2774,0 +55086,Avanti%21,275,467,698625834,2594,0 +55088,Wioska+oracz1,480,276,260666,8435,0 +55089,043+Wioska+barbarzy%C5%84ska,544,281,699854484,9835,0 +55090,Wioska+barbarzy%C5%84ska,327,648,8175236,394,0 +55091,Wioska+barbarzy%C5%84ska,720,555,698666810,9429,0 +55092,073.+Wioska+barbarzy%C5%84ska,730,463,7494497,4956,0 +55094,002,292,579,848892804,920,0 +55095,Nowa+Baza+13,616,697,698353083,5898,0 +55097,Wioska+barbarzy%C5%84ska,542,727,699878511,9011,0 +55098,wy...,598,703,699828685,4010,0 +55099,o.o+2,442,277,6857973,1344,0 +55100,Wioska+barbarzy%C5%84ska,723,528,698191218,3583,0 +55101,%24015%24+Dirty+dancer,305,627,699550876,432,0 +55102,Hejka,453,656,848883684,2835,0 +55103,Wioska+barbarzy%C5%84ska,473,278,699196829,2010,0 +55104,NBT+1,596,694,849047044,5602,0 +55105,NOT%3F,314,362,9236866,1340,0 +55106,MORDOR,565,716,849082580,3169,0 +55107,komandos,668,660,7976264,2977,0 +55108,Wioska+barbarzy%C5%84ska,277,533,8841266,1421,0 +55109,.achim.,566,287,6936607,4711,0 +55110,mirron,299,396,849089601,5015,0 +55111,Z+07,383,310,6884492,2141,0 +55112,Wioska+barbarzy%C5%84ska,707,404,699598425,3420,0 +55114,Wioska+barbarzy%C5%84ska,695,388,849057764,1444,0 +55115,New+World,423,717,698152377,4419,0 +55116,092,696,619,699373599,817,0 +55117,Z%C5%82oty+%C5%9Awit,597,297,699883079,4947,0 +55118,Z%C5%82oty+%C5%9Awit,593,288,699883079,2090,0 +55119,K67+11,701,610,698867483,4454,0 +55120,%23167%23,659,668,692803,836,0 +55121,Wioska+barbarzy%C5%84ska,718,548,698666810,6486,0 +55122,060+Wioska+barbarzy%C5%84ska,343,662,6354098,3804,0 +55124,Wioska23,330,349,699711926,4635,0 +55125,181,504,726,849065606,1109,0 +55126,Wiocha+2,689,376,699803189,1316,0 +55127,075+-+Budowanko%21,496,729,7540891,903,0 +55128,Wioska+barbarzy%C5%84ska,692,378,698702991,3876,0 +55129,181+001,720,560,7272223,9379,0 +55130,Wioska+barbarzy%C5%84ska,722,553,698666810,11283,0 +55131,marus1000,296,455,878961,8752,0 +55132,Wilcza+Wolno%C5%9B%C4%87,318,358,848888787,197,0 +55133,budowa+07,610,705,7139820,4339,0 +55134,New+World,434,716,698152377,10290,0 +55135,baska,296,400,849089601,1181,0 +55136,%2A025%2A,685,627,1205898,2706,0 +55137,63.+Wioska+63,279,563,849091769,3385,0 +55138,Wioska+barbarzy%C5%84ska,277,479,699846892,4310,0 +55139,Bunu+2,311,364,849050087,975,0 +55140,O150,317,627,272173,2139,0 +55141,B021,630,310,8740199,3229,0 +55142,015,339,342,849101205,1357,0 +55143,%23%23+114,583,718,849087855,2505,0 +55144,%23206+C,514,733,9037756,1600,0 +55145,%40%403,269,506,849113546,1209,0 +55146,CastAway+%23021,711,592,9314079,3523,0 +55147,Wioska+barbarzy%C5%84ska,444,720,698620694,4413,0 +55148,rivendell,290,401,698677650,868,0 +55149,Wioska+barbarzy%C5%84ska,368,689,849030086,4346,0 +55150,C0293,275,521,8841266,4084,0 +55151,-33-,587,708,849032414,740,0 +55152,Wioska+Mad+World,327,657,699635774,26,0 +55153,04Wioska+barbarzy%C5%84ska,357,681,699704542,5751,0 +55154,Wioska+barbarzy%C5%84ska,307,387,0,1054,0 +55155,Wioska+barbarzy%C5%84ska,602,294,699098531,1711,0 +55156,070+Wioska+barbarzy%C5%84ska,340,664,6354098,5216,0 +55157,Wioska+barbarzy%C5%84ska,323,645,698908184,2874,0 +55158,Zaplecze+Barba+039,349,330,699796330,2993,0 +55159,Pcim,464,280,849100083,9524,0 +55160,072+Wioska+barbarzy%C5%84ska,338,668,6354098,3482,0 +55161,Wyspa+023,282,566,225023,1165,0 +55162,CastAway+%23014,709,586,9314079,5592,0 +55163,Wioska+Deff,348,330,698913618,2494,0 +55164,Wioska+barbarzy%C5%84ska,338,332,6169408,1172,0 +55165,FP049,444,725,699605333,5427,0 +55166,X005,712,426,699722599,6127,0 +55167,-31-,575,718,849032414,1487,0 +55168,Wioska+barbarzy%C5%84ska,312,372,699660539,2280,0 +55169,Wioska+barbarzy%C5%84ska,714,406,699598425,3282,0 +55170,Piek%C5%82o+to+inni,651,326,848956765,4887,0 +55171,0136,689,377,698416970,929,0 +55172,Wioska+b+001,421,284,6343784,1552,0 +55173,Wioska+barbarzy%C5%84ska,280,465,699812351,1198,0 +55174,wy...,596,703,699828685,3753,0 +55176,Wsch%C3%B3d+001,699,620,698562644,4731,2 +55177,Granica,270,462,848977600,2104,0 +55178,074.+Wioska+barbarzy%C5%84ska,730,461,7494497,4970,0 +55179,BETON+107,667,661,699277039,456,0 +55180,Wioska+Lord+dankos,682,633,698315881,3433,0 +55181,ZZZ+.%3A%3A.+cinek3456%2F08,585,707,33900,5123,0 +55182,074+-+Budowanko%21,477,727,7540891,329,0 +55183,079+Wioska+barbarzy%C5%84ska,540,280,699854484,7229,0 +55184,Kapitol_20,506,729,606407,5136,0 +55185,090,690,632,699373599,1158,0 +55186,C0298,274,552,8841266,3663,0 +55187,025,304,617,699356968,1447,7 +55188,KWB,445,719,9003698,10534,0 +55189,Wioska+barbarzy%C5%84ska,324,357,849100289,1457,0 +55190,Avanti%21,274,487,698625834,6144,6 +55191,TOLCIA+3,643,317,699868739,1260,0 +55192,Wioska+kondzio95rrr,723,451,849095599,1344,0 +55193,Wioska014,693,387,698768565,7173,0 +55194,Ave+Why%21,523,731,699121671,2751,0 +55195,Dumnoryks,290,400,848998530,1420,0 +55196,Z%C5%82oty+%C5%9Awit,592,292,699883079,5160,0 +55197,Cisza,287,571,698769107,1562,0 +55198,Wioska+Johnny+B,723,434,9282669,4663,0 +55199,Osada+myself+i+tylko+jej+%3A%29,597,712,699828685,5671,0 +55200,Kiedy%C5%9B+Wielki+Wojownik,323,350,8632462,6403,0 +55201,odek+181,292,445,699285160,5585,0 +55202,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,723,8201460,3138,0 +55203,aaaaaa,665,345,7646152,1707,0 +55204,Wioska+barbarzy%C5%84ska,724,479,113796,1834,0 +55205,Wioska+barbarzy%C5%84ska,300,384,0,589,0 +55206,Psycha+Siada,330,650,8099868,4057,0 +55207,Brat447,369,520,699262350,1716,0 +55208,KONFA+TO+MARKA%2C+NARKA,290,412,698152377,2274,0 +55209,Wioska+Martin1991,484,731,699027000,5600,0 +55210,Wioska+barbarzy%C5%84ska,669,339,699072129,3867,0 +55211,Wioska+009,670,342,7226782,2925,0 +55212,Pobozowisko,406,596,699513260,69,0 +55213,Telimena+2.,307,632,699037086,1889,0 +55214,KONFA+TO+MARKA%2C+NARKA,286,418,698152377,2383,0 +55215,Wioska+miromistrz,487,725,848999671,8284,0 +55216,Avanti%21,271,481,698625834,5813,0 +55217,Wioska+barbarzy%C5%84ska,720,426,699628084,1666,0 +55218,Wioska+barbarzy%C5%84ska,547,725,699828442,4552,0 +55219,Sony+911,660,670,1415009,795,0 +55220,PPF-26,534,278,1424656,2118,0 +55221,Wioska+barbarzy%C5%84ska,717,553,698666810,6202,0 +55222,Wioska+krzy%C5%BCak1,367,689,699826996,1086,0 +55223,Nagato+-+B+003,315,369,849094586,2018,0 +55225,%2A013,678,364,7758085,4874,4 +55226,Wioska+barbarzy%C5%84ska,296,607,699604515,351,0 +55227,E002,665,335,699299123,4062,0 +55228,0659,587,715,698659980,5225,0 +55229,Wioska+barbarzy%C5%84ska,723,476,113796,1558,0 +55230,%5B0189%5D,275,495,8630972,6595,0 +55231,--054--,578,288,542253,979,0 +55232,%5B0171%5D,446,283,8630972,7211,0 +55233,Wioska+barbarzy%C5%84ska,628,312,699679662,1534,0 +55234,.achim.,581,282,6936607,2520,0 +55235,A040,606,645,9023703,2969,0 +55236,kamilkaze135+%2316,686,371,699705601,2674,0 +55237,Wioska+Vasqu,415,714,8616713,206,0 +55238,Wioska+barbarzy%C5%84ska,702,382,7340529,2821,0 +55239,P%C3%B3%C5%82nocny+Bagdad,617,298,8847546,7009,1 +55240,04Wioska+barbarzy%C5%84ska,356,680,699704542,5275,0 +55241,%230074,578,710,1536231,4698,0 +55243,9.+Nowy+%C5%9Awiat,606,699,699828685,1320,0 +55244,097,732,506,7085502,3696,0 +55245,Wioska+acer123,297,602,848969160,1243,0 +55246,MojeDnoToWaszSzczyt,490,273,9299539,4263,0 +55247,C0235,281,542,8841266,6239,6 +55248,Wioska+barbarzy%C5%84ska,320,634,0,65,0 +55249,Wioska+barbarzy%C5%84ska,277,463,699213622,4233,0 +55250,224...NORTH,453,280,6920960,2374,0 +55251,064+-+Budowanko%21,499,731,7540891,5042,0 +55252,Wioska+z+Pracza+1,312,620,8916982,2683,0 +55253,New+WorldA,274,544,849084005,2499,0 +55254,Wioska+barbarzy%C5%84ska,718,427,848976034,1632,0 +55255,zzz03,711,598,3986807,794,0 +55256,New+World,431,717,698152377,10290,0 +55257,Wioska+dabek,269,486,699795698,8556,0 +55258,Wioska+barbarzy%C5%84ska,306,376,0,472,0 +55259,045,678,648,2323859,1797,0 +55260,Wioska+barbarzy%C5%84ska,410,286,698231772,2451,0 +55261,--056--,588,287,542253,837,0 +55262,018+-+Budowanko%21,488,728,7540891,6614,0 +55263,Sqn,706,396,699598425,2683,0 +55264,szymek5,283,417,1323424,1419,0 +55265,Wioska+barbarzy%C5%84ska,712,412,8459255,3451,0 +55266,%230248+colt9,433,281,1238300,5109,0 +55267,201,570,409,849064752,2400,0 +55268,backstage+1,706,401,849099696,3312,0 +55269,New+World,427,719,698152377,10290,0 +55270,Bagno+39,460,729,848883684,3249,0 +55271,Wioska+DZiki250,275,455,848907771,6429,0 +55272,Za+lasami,283,413,699821629,2330,0 +55273,MojeDnoToWaszSzczyt,488,271,9299539,4679,0 +55275,New+World,421,717,698152377,7869,0 +55276,Wioska+barbarzy%C5%84ska,389,700,849014922,1396,0 +55277,Kiedy%C5%9B+Wielki+Wojownik,322,351,8632462,5620,4 +55278,K67+05,702,618,698867483,4471,0 +55279,Avanti%21,270,468,698625834,2502,0 +55280,Gr%C3%B3d+Br%C3%B3dno,536,279,1568908,291,0 +55281,New+WorldA,272,542,849084005,2553,0 +55282,Wioska+barbarzy%C5%84ska,310,368,0,418,0 +55283,Wioska+barbarzy%C5%84ska,684,362,7758085,2648,0 +55284,02%23+Wioska+barbarzy%C5%84ska,680,643,8444698,1594,0 +55285,wy...,600,704,699828685,4353,0 +55286,Wioska+barbarzy%C5%84ska,729,453,699347951,1025,0 +55287,Wioska+barbarzy%C5%84ska,271,476,849095814,3187,0 +55288,Wioska+barbarzy%C5%84ska,323,364,0,408,0 +55289,%230073,572,720,1536231,3891,0 +55290,seafighter1,683,367,7899232,7751,0 +55291,Piorunek1996+Wie%C5%9B+..2..,531,274,6118079,1551,0 +55292,%23012,546,271,849064614,5673,0 +55293,North+037,512,273,849064752,6785,0 +55294,Avanti%21,276,475,698625834,5831,0 +55295,%5B825%5D+Odludzie,716,436,848985692,6237,0 +55296,0113,695,383,698416970,1179,0 +55297,Wioska+barbarzy%C5%84ska,724,459,699347951,837,0 +55298,031+KTW,723,445,848883237,2730,0 +55299,Wyzima,378,305,849103688,4277,0 +55300,New+World,418,717,698152377,10238,0 +55301,Rze%C5%BAnia+4,706,591,849101029,1493,0 +55302,Nowa+Baza+8,615,701,698353083,5459,0 +55303,Wioska+barbarzy%C5%84ska,541,730,699878511,8585,0 +55304,Wioska+Lewkowskyyyy,682,636,698315881,2905,0 +55305,Wioska+ba,515,727,849101102,5169,0 +55306,036+Mossdeep+City,723,490,699441366,976,0 +55307,No.29,569,721,698826986,822,0 +55308,Wioska+MAXIMUS-1,348,674,8644299,26,0 +55309,Wioska+barbarzy%C5%84ska,495,726,699429335,4004,0 +55310,Wioska+barbarzy%C5%84ska,470,276,699196829,6667,0 +55311,Dwutakt,708,417,699785935,2817,0 +55312,.achim.,570,287,6936607,4428,0 +55313,%C5%BBUBEREK+006,623,692,33900,9976,3 +55314,311,451,277,7271812,741,0 +55315,Wioska+a2,422,280,6343784,2806,0 +55316,New+World,410,710,698152377,9643,0 +55317,0074,459,280,848913037,3575,0 +55318,Avanti%21,273,479,698625834,5523,0 +55319,Wioska+barbarzy%C5%84ska,360,315,3484132,5294,0 +55320,KASHYYYK,569,720,699383121,4012,0 +55321,Z.03,710,581,699737356,4269,0 +55322,Dajanka+24,291,604,849012843,829,0 +55323,26.+Wioska+26,287,570,849091769,3736,0 +55324,Wioska+barbarzy%C5%84ska,377,689,849096945,229,0 +55325,%23026,543,277,849064614,2307,0 +55326,001,441,724,699069151,947,0 +55327,Wioska+barbarzy%C5%84ska,568,723,699828442,1761,0 +55328,Wioska+marek123,691,369,849090846,8161,0 +55329,Nowa+64,720,563,698702991,3898,0 +55330,Wioska+Gigako,562,284,849054951,10324,4 +55331,Wioska+barbarzy%C5%84ska,703,398,699598425,3024,0 +55332,KWB4,485,728,9003698,4871,0 +55333,O114,317,635,272173,7181,0 +55334,Wioska+barbarzy%C5%84ska,716,444,848896434,1087,0 +55335,P003,512,276,699208929,4304,0 +55336,009,297,596,698663855,3577,0 +55337,Wioska+barbarzy%C5%84ska,416,288,698231772,8031,0 +55338,%23036,560,276,849064614,2772,0 +55339,BIMBER+5,441,277,6857973,1374,0 +55340,Wioska+barbarzy%C5%84ska,727,505,698191218,3438,0 +55341,New+World,413,713,698152377,5143,0 +55342,szymek1,280,422,1323424,7637,0 +55343,P%C3%B3%C5%82nocny+Bagdad,618,299,8847546,7013,0 +55344,bagienko_01,570,281,849093353,7098,0 +55345,o013,607,708,699189792,6508,0 +55346,CapriSun,689,369,849055553,1121,0 +55347,Wioska+barbarzy%C5%84ska,315,373,699660539,1854,0 +55348,024,301,609,699356968,1012,0 +55349,NP+09,303,393,849076810,1342,0 +55350,Zaplecze+Barba+040,347,328,699796330,3132,0 +55351,CastAway+%21036,711,595,9314079,3241,0 +55352,.achim.,573,287,6936607,2647,0 +55353,Wioska+barbarzy%C5%84ska,282,584,698663855,491,0 +55354,Mordor,697,588,849109935,1226,0 +55355,KONFA+TO+MARKA%2C+NARKA,286,434,698152377,7997,0 +55356,Osada+koczownik%C3%B3w,593,290,698350371,1426,7 +55357,Kurnik,445,716,699603116,1182,0 +55358,XDX,598,290,699098531,3787,0 +55359,000,281,457,699844314,5071,0 +55360,Piek%C5%82o+to+inni,645,327,848956765,4238,0 +55361,Wioska+Lubie%C5%BCny+Mietek,582,281,6326324,26,0 +55362,...%3A%3A181+05%3A%3A...,275,514,699641777,3486,0 +55363,Wioska+barbarzy%C5%84ska,370,690,0,589,0 +55364,Vetiuss3,282,570,849096399,626,0 +55365,%23%239,346,337,2800032,1710,0 +55366,Wiede%C5%84,294,589,2717161,8019,0 +55367,Wioska+ewciamariusz2,300,391,9014108,1131,0 +55368,ToHellAndBack.,444,724,699069151,6626,0 +55369,Wioska16.,713,575,699266530,3249,0 +55370,Wioska+barbarzy%C5%84ska,350,464,6258092,4207,0 +55371,Osada+koczownik%C3%B3w,267,491,699795698,3898,2 +55372,Kapitol_13,510,723,606407,4501,0 +55373,%3F%3F%3F%3F,461,275,698489071,4085,0 +55374,021+-+Budowanko%21,496,723,7540891,5513,0 +55375,005,293,588,698663855,9691,0 +55376,Wioska,418,288,3411571,5434,0 +55377,01%23+Wioska+Menager86,681,643,8444698,4684,0 +55378,North+063,540,274,849064752,4810,0 +55379,Aa1,592,713,849097614,5393,0 +55380,%23%23%23155%23%23%23,602,710,698285444,10495,0 +55381,Wioska+barbarzy%C5%84ska,713,422,699722599,3870,0 +55382,Wioska+barbarzy%C5%84ska,380,305,699308637,1074,0 +55383,Tuturutu,281,577,849096458,3090,0 +55384,%5B828%5D+Odludzie,717,441,848985692,6040,0 +55385,XXX,400,678,698650509,4963,0 +55386,PPF-27,535,275,1424656,2152,0 +55387,Nowe+Dobra+-+budowa,686,625,699759128,5606,0 +55389,Po%C5%82udniowy+Wsch%C3%B3d+005,698,612,699778867,1116,0 +55390,Wioska+barbarzy%C5%84ska,295,605,0,785,0 +55391,Tumba,296,401,7259690,1854,0 +55393,002,303,607,699356968,4901,0 +55395,A%23025,729,510,2065730,9797,5 +55396,P%C3%B3%C5%82nocny+Bagdad,621,310,8847546,6915,0 +55397,Wioska+barbarzy%C5%84ska,386,298,698231772,3193,0 +55398,Wioska+rafalzak+01,269,514,6083448,1122,0 +55399,Wioska20,332,347,699711926,4139,0 +55400,Wioska+barbarzy%C5%84ska,357,327,8772425,1814,0 +55401,Wioska+barbarzy%C5%84ska,633,692,699576978,847,0 +55402,-002-,728,492,7418168,4334,0 +55403,04Wioska+barbarzy%C5%84ska,365,686,699704542,3199,0 +55404,KONFA+TO+MARKA%2C+NARKA,290,416,698152377,2646,0 +55405,014,398,292,699694284,4710,0 +55406,Wioska+barbarzy%C5%84ska,276,489,699846892,1684,0 +55407,Zaplecze+Barba+041,347,329,699796330,2523,0 +55408,181.03,328,344,7221139,881,0 +55409,Wioska+barbarzy%C5%84ska,519,732,769293,3294,0 +55410,North+K25,524,276,699146580,2607,0 +55411,Wioska+maniek38,434,722,9213654,26,0 +55412,0064,453,727,849037407,10290,0 +55413,Wioska+TheKingDestroyer,696,628,699812869,3257,0 +55414,Wioska+barbarzy%C5%84ska,624,688,6818593,2681,0 +55415,Wioska+barbarzy%C5%84ska+06,342,338,698757439,6966,0 +55416,Wioska+barbarzy%C5%84ska,730,490,698191218,3136,0 +55417,Nowa+Baza+4,614,696,698353083,4902,0 +55418,014+%7C+North,378,694,699511295,2895,0 +55419,Wioska+barbarzy%C5%84ska,314,367,0,358,0 +55420,Wioska+barbarzy%C5%84ska,276,462,699213622,4230,0 +55422,Wioska+barbarzy%C5%84ska,367,692,699704542,2897,0 +55423,%3F%3F%3F%3F,462,277,698489071,3878,7 +55425,Wioska+barbarzy%C5%84ska,372,312,3484132,4543,0 +55426,.achim.,575,284,6936607,2826,0 +55427,011.+Wioska+barbarzy%C5%84ska,700,390,2873154,7504,0 +55428,%23499+F,441,721,9037756,5250,0 +55429,%3F%3F%3F%3F,477,273,698489071,4816,0 +55430,Avanti%21,270,466,698625834,4258,0 +55431,029,730,531,7085502,9641,9 +55432,AZGARD+2.,295,609,6651072,462,0 +55433,081.+Wioska+barbarzy%C5%84ska,732,469,7494497,4680,0 +55434,Wioska+barbarzy%C5%84ska,387,705,849014922,1425,0 +55435,C0254,269,526,8841266,4375,0 +55436,Wioska+R%C3%B3%C5%BCalXDD,343,673,699639001,1110,0 +55437,O117,314,637,272173,6845,0 +55438,Wioska+barbarzy%C5%84ska,711,400,699598425,2875,0 +55439,%5B017%5D,462,726,9094538,2713,0 +55440,098,731,514,7085502,2271,0 +55441,0081,457,278,848913037,4386,0 +55442,Wioska+obywateldb,287,590,699396429,6246,0 +55443,Rewa,296,603,1276665,1897,0 +55444,Ale+Urwa%C5%82,270,512,849105417,6938,0 +55445,004,277,458,699844314,1377,0 +55446,Wioska+barbarzy%C5%84ska,608,708,7589468,1796,0 +55447,ZZZ+.%3A%3A.+cinek3456%2F14,590,714,33900,1644,0 +55448,KONFA+TO+MARKA%2C+NARKA,288,418,698152377,2164,0 +55449,04Wioska+barbarzy%C5%84ska,361,677,699704542,7601,0 +55450,Wioska+IAmChaozu,572,279,849080011,6108,0 +55452,42.+JeGrzegorz,672,474,699804790,1206,0 +55453,sh06,514,274,7064954,2573,0 +55454,Wioska+barbarzy%C5%84ska,318,364,0,1344,0 +55455,%5B0276%5D,266,495,8630972,3787,0 +55456,Wioska+marko91,497,268,849070812,1301,0 +55457,237...NORTH,432,279,6920960,4753,0 +55458,%5B217%5D,721,422,8000875,1138,0 +55459,Wioska+barbarzy%C5%84ska,724,490,698191218,3191,0 +55460,Wioska+Gollum18,409,286,8947021,3252,0 +55461,Z%C5%82oty+%C5%9Awit,586,288,699883079,5101,0 +55462,Wioska+barbarzy%C5%84ska,319,365,0,504,0 +55463,C0294,277,523,8841266,3807,0 +55464,KONFA+TO+MARKA%2C+NARKA,277,438,698152377,7407,0 +55465,BETON+115,663,665,699277039,81,0 +55466,006,531,278,698736778,1164,0 +55467,Utumno,328,356,849100288,2696,0 +55468,.achim.,568,287,6936607,4672,0 +55469,P%C3%B3%C5%82nocny+Bagdad,633,309,8847546,2818,0 +55470,Taka.,484,728,848999671,2039,0 +55471,Wioska+rufus997,270,525,849047233,4572,0 +55472,1x1+Wioska+barbarzy%C5%84ska,570,712,849055425,5601,0 +55473,107+Wioska+barbarzy%C5%84ska,584,283,699854484,828,0 +55474,061+Wioska+barbarzy%C5%84ska,551,282,699854484,9835,0 +55475,MojeDnoToWaszSzczyt,494,267,9299539,4675,0 +55476,100.+Wioska+barbarzy%C5%84ska,695,373,7494497,2858,0 +55477,Osada+koczownik%C3%B3w,725,561,698666810,10881,7 +55478,erebor,292,395,698677650,6098,0 +55479,MojeDnoToWaszSzczyt,498,266,9299539,9471,0 +55480,Odludek,701,609,849101652,3273,0 +55481,Wioska+barbarzy%C5%84ska,356,317,3698627,2390,0 +55482,TOLCIA+4,640,313,699868739,1154,0 +55483,Wioska+kosiarziii,657,672,8856821,7354,0 +55484,Wioska+barbarzy%C5%84ska,639,683,848987051,4591,0 +55485,Hindenburg,270,494,699662232,4336,0 +55486,KONFA+TO+MARKA%2C+NARKA,270,456,698152377,2318,0 +55487,Wioska+barbarzy%C5%84ska,595,705,8991696,2668,0 +55488,PATOLOGIA,288,598,699774694,6227,0 +55489,Wioska+124,706,588,848971079,191,0 +55490,Sony+911,697,613,1415009,6209,0 +55491,XDX,613,303,699098531,3976,0 +55492,2.+Novigrad,609,697,849101526,2336,0 +55493,Wioska+barbarzy%C5%84ska,525,268,699799629,2625,0 +55494,P%C3%B3%C5%82nocny+Bagdad,621,303,8847546,9249,9 +55495,Wioska+barbarzy%C5%84ska,721,571,698666810,3724,0 +55496,Wyspa,394,667,698769107,788,0 +55497,Wioska+barbarzy%C5%84ska,371,689,849096945,428,0 +55498,...%3A%3A181+08%3A%3A...,277,514,699641777,3213,0 +55499,Avanti%21,271,485,698625834,6019,0 +55500,4.+Skellige+Nowe+IMPERIUM,614,699,698353083,4159,0 +55501,XDX,604,297,699098531,3476,0 +55502,Wioska+0007,349,665,9186126,10311,4 +55503,C0314,276,525,8841266,2458,0 +55504,Wz08,698,605,7142659,2721,0 +55505,0000034Z,275,563,849089881,5515,0 +55506,Wioska+barbarzy%C5%84ska,303,381,1267913,949,0 +55507,055-+Mroczna+Osada,704,386,849035905,5711,0 +55508,%5B827%5D+Odludzie,719,440,848985692,6235,0 +55509,Wioska+barbarzy%C5%84ska,317,358,0,234,0 +55510,Wioska+a1,421,280,6343784,4026,0 +55511,KONFA+TO+MARKA%2C+NARKA,275,444,698152377,4168,7 +55512,Wioska+barbarzy%C5%84ska,300,397,762975,444,0 +55513,Zaplecze+Barba+029,360,321,699796330,4637,0 +55514,Wioska+barbarzy%C5%84ska,503,277,7758085,3370,0 +55515,Wioska+barbarzy%C5%84ska,310,625,698908184,5582,0 +55516,Wioska+barbarzy%C5%84ska,722,556,698666810,9468,0 +55517,004.+niespodzianka,457,274,602408,1286,0 +55518,Wioska+barbarzy%C5%84ska,537,731,699878511,7909,0 +55519,K67+03,702,613,698867483,7569,0 +55520,Aa7,594,711,849097614,3468,0 +55521,112.Stradi,427,279,698365960,6450,0 +55522,KONFA+TO+MARKA%2C+NARKA,293,412,698152377,1529,0 +55524,Wioska+barbarzy%C5%84ska,690,368,849090846,2237,0 +55525,MojeDnoToWaszSzczyt,486,269,9299539,4478,0 +55527,Wioska+barbarzy%C5%84ska,658,340,699072129,4179,0 +55528,New+World,418,714,698152377,4529,0 +55529,Wioska+DAJWIDOS17,320,351,848913252,1256,0 +55530,006,313,376,7919620,7185,0 +55531,MojeDnoToWaszSzczyt,475,267,9299539,4593,0 +55532,...%3A%3A181+12%3A%3A...,272,511,699641777,2117,0 +55534,Wioska+barbarzy%C5%84ska,685,637,698191218,3057,0 +55535,Wioska+barbarzy%C5%84ska,602,299,699098531,2345,0 +55536,Wioska+barbarzy%C5%84ska,727,544,848946700,1697,0 +55537,003,292,591,698663855,10544,0 +55538,KONFA+TO+MARKA%2C+NARKA,289,426,698152377,2346,0 +55539,Wioska+barbarzy%C5%84ska,270,492,699846892,3726,0 +55540,%3F%3F%3F%3F,461,274,698489071,1488,0 +55541,Wygwizdowa+013,638,676,698562644,2966,0 +55544,S177+K64,415,686,849055309,772,0 +55545,%230064,577,718,1536231,3777,0 +55546,Wioska+Karakan13,727,502,849096936,26,0 +55547,Psycha+Siada,320,646,8099868,6806,0 +55549,23+Blacha,721,433,849101845,2257,0 +55550,Bagno+34,475,726,848883684,5046,0 +55552,...%3A%3A181+03%3A%3A...,276,513,699641777,3121,0 +55553,Wioska+barbarzy%C5%84ska,271,513,0,283,0 +55554,Wioska+barbarzy%C5%84ska,381,699,7494178,317,0 +55555,027,305,616,699356968,816,0 +55556,25.TEEN+TOP,694,384,9180206,2781,0 +55557,KONFA+TO+MARKA%2C+NARKA,292,417,698152377,2590,0 +55558,007,291,593,698663855,6042,0 +55559,%230059,575,713,1536231,3689,0 +55561,New+World,418,710,698152377,9619,0 +55562,Wioska+dafffciu,362,679,848984022,9391,0 +55563,Wioska+barbarzy%C5%84ska,317,366,0,709,0 +55564,001+Oazis,304,607,699356968,10104,0 +55565,-003-,730,492,7418168,4482,0 +55566,%7CD%7C+IS,453,721,698147372,1494,0 +55567,Gorzow,466,270,699278528,3969,0 +55568,078g,318,553,698641566,6556,0 +55569,KONFA+TO+MARKA%2C+NARKA,279,425,698152377,4274,0 +55570,Wygwizdowa+016,625,688,698562644,728,0 +55571,C0308,274,520,8841266,3268,0 +55572,Wioska+bercion,383,704,699490365,1764,0 +55573,Kiedy%C5%9B+Wielki+Wojownik,322,353,8632462,1131,0 +55574,K42+ADAMUS+016,287,428,6212605,5088,0 +55575,KONFA+TO+MARKA%2C+NARKA,289,424,698152377,2494,0 +55576,Piek%C5%82o+to+inni,651,332,848956765,4213,0 +55577,Osada+koczownik%C3%B3w,546,728,699878511,4300,7 +55578,Wioska+barbarzy%C5%84ska,352,321,3698627,3271,0 +55579,Wioska+barbarzy%C5%84ska,689,634,698191218,2252,0 +55580,Piek%C5%82o+to+inni,660,331,848956765,3144,0 +55581,Kapitol_31,497,734,606407,3741,0 +55582,ADAMM,536,455,699409420,721,0 +55583,New+World,429,723,698152377,8133,0 +55584,Sony+911,676,655,1415009,1612,0 +55585,Wioska+7,534,268,7427966,1003,0 +55586,Wioska+barbarzy%C5%84ska,373,308,3484132,4535,0 +55587,001,312,636,8752714,3773,0 +55588,MojeDnoToWaszSzczyt,463,269,9299539,3230,0 +55589,002.,698,379,7557683,1452,0 +55590,Wioska+buuu,734,509,849048241,5178,0 +55591,003+wolno%C5%9B%C4%87,332,655,6910361,746,0 +55592,111.Stradi,426,279,698365960,7123,0 +55593,Wioska+barbarzy%C5%84ska,317,632,698908184,4908,0 +55594,P%C3%B3%C5%82nocny+Bagdad,618,302,8847546,7002,7 +55595,New+World,432,714,698152377,3698,0 +55596,26.WINNER,696,383,9180206,3104,0 +55597,%3DSAwars%3D04%3D,566,282,849106420,3612,0 +55598,North+038,510,268,849064752,6864,0 +55599,......,300,387,699595556,7495,0 +55600,Wioska+barbarzy%C5%84ska,355,328,8772425,2061,0 +55601,Wioska+Maverick1,734,516,699618326,3993,0 +55602,012+-+Budowanko%21,489,724,7540891,6690,0 +55603,Bocianikson022,714,582,7528491,1592,7 +55604,037+Sootopolis+City,729,484,699441366,8653,0 +55605,Wioska+091,697,617,848971079,5511,0 +55606,Kapitol_26_O,504,725,606407,5152,0 +55607,Wioska+barbarzy%C5%84ska,714,583,7528491,1495,0 +55608,Wioska+nsplus,667,658,849048856,6035,0 +55609,Sqn,707,395,699598425,2587,0 +55610,Wiadro21,688,636,8677963,1216,0 +55611,Wi%C5%9Bniowe+wzg%C3%B3rza,444,723,7526090,3617,0 +55612,Wioska+barbarzy%C5%84ska,268,470,0,906,0 +55614,004+%7C+North,379,701,699511295,9235,0 +55615,Wioska+SAGITTARIUS70,293,398,7259690,5862,0 +55616,MojeDnoToWaszSzczyt,473,268,9299539,5348,0 +55618,Wioska+barbarzy%C5%84ska,297,389,0,681,0 +55619,BB1,270,514,849110365,6221,0 +55620,Wioska+barbarzy%C5%84ska,352,324,8772425,1723,0 +55621,Wioska+barbarzy%C5%84ska,313,372,699660539,1794,0 +55622,12.+GT,464,724,849100262,3447,0 +55623,Wioska+katarzyna2012,543,276,7427966,3912,0 +55624,235...NORTH,433,279,6920960,5174,0 +55625,%3F%3F%3F%3F,491,266,698489071,5155,0 +55626,0066%2C,445,724,849037407,10298,0 +55627,Wioska+Mantvel,270,482,699795698,6445,0 +55628,Wioska+barbarzy%C5%84ska,603,709,7589468,2734,0 +55629,NOT%3F,314,361,9236866,1174,0 +55630,%24013%24+Interesting...,299,621,699550876,1233,0 +55631,Wioska+brzydko.1,613,615,699511370,7408,0 +55632,bandzior,499,730,606407,4622,0 +55633,sony911,600,651,1415009,4091,0 +55634,shire,294,396,698677650,7511,0 +55636,Wioska+barbarzy%C5%84ska,595,706,849097370,1078,0 +55637,wwwb,601,708,699828685,2749,0 +55638,%7CD%7C+IS,459,723,698147372,1842,0 +55639,Wioska+barbarzy%C5%84skaC,295,606,698178312,661,0 +55640,017.+Tak+o,295,395,698630507,1223,0 +55642,Osada+koczownik%C3%B3w,722,549,698666810,7612,7 +55643,Wioska+leslawos,267,513,1227918,9331,0 +55644,Wioska+barbarzy%C5%84ska,313,626,698908184,5349,0 +55645,Wioska+barbarzy%C5%84ska,303,380,0,749,0 +55646,Psycha+Siada,320,643,8099868,7114,0 +55647,016+%7C+North,371,686,699511295,2787,0 +55648,Wioska+barbarzy%C5%84ska,610,701,8627359,4626,0 +55649,025,725,491,849091105,8602,3 +55650,%2305%21,643,680,849101884,3074,0 +55651,ZZZ+.%3A%3A.+cinek3456%2F10,586,710,33900,2240,0 +55652,Wioska+barbarzy%C5%84ska,729,520,698191218,2098,0 +55653,Wioska+barbarzy%C5%84ska,731,537,17714,2332,0 +55654,xxx,270,542,699510045,4244,0 +55655,Wioska+barbarzy%C5%84ska,283,588,698663855,457,0 +55656,Gocza%C5%82kowice,316,575,698589866,2005,0 +55657,Taka.,484,732,848999671,1957,0 +55658,%23K75+0037,524,727,699728159,4611,0 +55659,Wioska+barbarzy%C5%84ska,322,348,0,627,0 +55660,Wioska+barbarzy%C5%84ska,340,328,698388578,1019,0 +55661,%23122%23,651,669,692803,4320,0 +55662,Wioska+barbarzy%C5%84ska,730,536,17714,1313,0 +55663,Wioska+barbarzy%C5%84ska,395,707,849014922,1773,0 +55664,Wioska+barbarzy%C5%84ska,353,669,0,794,0 +55665,%24010%24+KEN,307,620,699550876,1751,0 +55666,Wioska+barbarzy%C5%84ska,724,564,698666810,1890,0 +55667,Republic+Of+Rukahs,724,440,699789609,2274,0 +55668,Wioska+barbarzy%C5%84ska,683,638,698191218,2233,0 +55669,Wioska+NiedzwiedzWampyr,643,674,849099887,1281,0 +55670,075+obrze%C5%BCa,277,560,699510259,2518,0 +55671,Flap,608,296,699098531,4171,0 +55672,Piek%C5%82o+to+inni,648,318,848956765,2750,0 +55673,New+World,436,717,698152377,5333,4 +55674,Wioska+barbarzy%C5%84ska,709,409,0,1805,0 +55675,068+Wioska+barbarzy%C5%84ska,339,659,6354098,4414,0 +55676,A%23054,707,409,2065730,3713,0 +55677,Wioska+barbarzy%C5%84ska,459,271,699191449,1705,0 +55678,Osada+koczownik%C3%B3w,299,381,356642,9356,8 +55679,Wioska+ddd121,416,291,849089654,1844,0 +55680,Wioska+barbarzy%C5%84ska,731,474,113796,719,0 +55681,.achim.,569,282,6936607,4130,0 +55682,O155,304,629,272173,1422,0 +55683,019,270,455,6131106,5100,6 +55684,Wioska+barbarzy%C5%84ska,713,574,2453888,4721,0 +55685,Nowe+IMPERIUM+7,618,702,698353083,2954,0 +55686,Wioska+borek102,562,398,6606543,5458,0 +55687,Wioska+miki11,275,439,50930,151,0 +55688,Osada+koczownik%C3%B3w,417,713,849014922,7598,4 +55689,Wioska+Wieslaw+3,499,269,699794421,2576,0 +55690,Wioska+barbarzy%C5%84ska,720,553,698666810,5777,0 +55691,PPF-60,572,276,849080011,5044,0 +55692,031.+Gloria+Victis,285,572,848886973,4666,0 +55693,%230068,575,717,1536231,3131,0 +55694,wy...,602,705,699828685,3830,0 +55695,Wioska+gall6,269,475,699598396,2706,0 +55696,Wioska+barbarzy%C5%84ska,723,472,699574408,2108,0 +55697,Wioska+dam111,552,726,3345943,50,0 +55698,MojeDnoToWaszSzczyt,487,271,9299539,6166,0 +55700,Gdansk,449,271,699278528,3132,0 +55701,Wioska+Farmer155,275,523,849095594,909,0 +55702,Wioska+093,699,618,848971079,5276,0 +55703,Wioska+black,416,290,3411571,4864,0 +55704,Wioska+barbarzy%C5%84ska,530,733,699878511,5002,0 +55705,Piek%C5%82o+to+inni,650,327,848956765,4238,0 +55707,Wioska+SharpWaldek,504,276,849108352,114,0 +55708,KONFA+TO+MARKA%2C+NARKA,288,425,698152377,2154,0 +55709,%5B832%5D+Odludzie,722,430,848985692,5910,0 +55710,Wioska+barbarzy%C5%84ska,686,643,698786826,3083,0 +55712,Wioska+barbarzy%C5%84ska,734,510,6510480,1317,0 +55713,MojeDnoToWaszSzczyt,487,272,9299539,5848,7 +55714,Piek%C5%82o+to+inni,643,320,848956765,3317,0 +55715,Wioska+barbarzy%C5%84ska,728,523,698191218,2235,0 +55716,Gubernia+04+Barbarzy%C5%84ska,373,310,849107532,3893,0 +55717,Avanti%21,271,470,698625834,2618,0 +55718,Kiedy%C5%9B+Wielki+Wojownik,324,350,8632462,3411,0 +55719,094.+Wioska+barbarzy%C5%84ska,728,468,7494497,3462,0 +55720,Wioska+Smerf%C3%B3w,716,437,849102480,4629,0 +55721,Wioska+z+Pracza+2,311,622,8916982,1639,0 +55722,Wioska+barbarzy%C5%84ska,282,577,848988401,1270,0 +55723,New+World,408,705,698152377,10157,0 +55724,Wioska+barbarzy%C5%84ska,642,679,848987051,5160,0 +55726,Wioska+%28046%29,725,461,698232227,801,0 +55727,Wioska+E,401,287,3411571,4618,0 +55728,Wioska+Abis,515,734,698934729,1165,0 +55729,Wioska+barbarzy%C5%84ska,684,406,699598425,3007,0 +55730,KONFA+TO+MARKA%2C+NARKA,279,426,698152377,3840,0 +55731,Wioska+barbarzy%C5%84ska,383,297,699191464,1423,0 +55732,117,563,473,7092442,4388,0 +55733,Taka.,488,725,848999671,3242,0 +55734,Lipa,323,653,8175236,5209,5 +55736,006,401,290,699694284,7724,0 +55737,KONFA+TO+MARKA%2C+NARKA,287,409,698152377,1825,0 +55738,Piek%C5%82o+to+inni,653,327,848956765,3880,0 +55739,Wioska+lechman,716,586,8997874,4698,0 +55740,Wioska+barbarzy%C5%84ska,727,466,699574408,2128,0 +55741,B011,527,272,699485250,3809,0 +55742,Wioska+utache,407,710,848965531,209,0 +55743,Wioska+barbarzy%C5%84ska,714,579,7038651,941,0 +55744,Wioska+barbarzy%C5%84ska,336,332,6169408,1050,0 +55745,Wioska+barbarzy%C5%84ska,326,653,8175236,368,0 +55746,Wioska+DrJointtt,599,294,8609713,3307,0 +55747,Wioska+barbarzy%C5%84ska,665,339,699072129,3719,0 +55748,Wioska+Mr+Dymer,326,593,7865511,3622,0 +55749,Nowy+0001,285,595,849096972,5204,6 +55750,Wioska+Ywozdreiwt+Nyzuk,311,373,849110571,2552,0 +55751,Maszlug+kolonia+XXIII,317,361,848977649,1101,0 +55752,PIROTECHNIK+005,336,336,849101083,6436,0 +55753,PPF-04,518,274,1424656,4551,0 +55754,K42+ADAMUS+011,280,431,6212605,7445,0 +55755,%23117%23,651,667,692803,4260,0 +55756,069,476,502,699510259,3249,0 +55757,%230175+darmuwa,476,277,1238300,5403,0 +55758,Wioska+barbarzy%C5%84ska,356,672,0,534,0 +55759,Wioska+barbarzy%C5%84ska,270,477,849095814,2404,0 +55760,%C5%9Arednia+osada,419,280,3411571,3850,0 +55761,t027,667,345,2262902,780,0 +55762,Wyspa+024,280,567,225023,1126,0 +55763,039+-+Budowanko%21,469,726,7540891,5481,0 +55764,Bombaj+City.,688,376,699803189,4302,0 +55765,005,294,587,698663855,10068,0 +55766,Wiocha+6,547,720,849045675,6706,0 +55767,Wioska+barbarzy%C5%84ska,682,358,6956104,816,0 +55768,Wioska+Totalnie+Mocarny+Go%C5%9Bciu,647,319,8924845,136,0 +55769,Wioska+barbarzy%C5%84ska,300,388,0,441,9 +55770,Dina,583,717,6882236,3064,0 +55771,Wioska+barbarzy%C5%84ska,356,326,8772425,1974,0 +55772,Piek%C5%82o+to+inni,640,319,848956765,3472,0 +55773,OV1+Neath,713,594,699272880,3953,9 +55774,Wioska+barbarzy%C5%84ska,401,298,698231772,3490,0 +55775,Na+SsSskraju,276,569,1536625,4236,0 +55776,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,721,8201460,5275,0 +55777,007,655,339,849020094,6652,0 +55778,W81,442,718,7661091,7345,0 +55779,Flap,616,304,699098531,4408,0 +55780,39zzz005,709,599,3986807,591,0 +55781,New+World,414,710,698152377,8098,0 +55782,w+myself,598,706,699828685,3415,0 +55783,Nowe+IMPERIUM+3,617,692,698353083,5735,0 +55784,Opal,667,659,849048856,7777,0 +55785,R+048,491,729,699195358,3488,0 +55786,%230069,574,717,1536231,2860,0 +55787,Wioska+barbarzy%C5%84ska,633,686,849096354,1071,0 +55788,Wioska+Jatutuptup,703,614,1044760,524,0 +55789,Wioska+barbarzy%C5%84ska,728,511,698191218,2276,0 +55790,085.+Wioska+barbarzy%C5%84ska,729,469,7494497,3386,0 +55791,Wioska+barbarzy%C5%84ska,400,707,849014922,5857,0 +55792,KONFA+TO+MARKA%2C+NARKA,286,410,698152377,1420,0 +55794,Kapitol_30,504,732,606407,3717,0 +55795,005+Rom,278,543,197581,4294,0 +55796,North+K25,533,271,699146580,1581,0 +55797,0660,588,717,698659980,9542,9 +55798,181,525,723,699614821,127,0 +55799,Wioska+barbarzy%C5%84ska,322,359,0,837,0 +55801,Piek%C5%82o+to+inni,642,326,848956765,3553,0 +55802,New+World,413,717,698152377,10290,8 +55803,231+Kalkuta,476,495,1497168,4210,0 +55804,004,331,662,8752714,2017,2 +55805,Wioska+ACFT,276,442,848906441,26,0 +55806,%23154%23,652,671,692803,1285,0 +55807,%230083,577,715,1536231,2562,0 +55808,Wioska+barbarzy%C5%84ska,289,577,498483,930,0 +55810,083.+Wioska+barbarzy%C5%84ska,731,470,7494497,3973,0 +55811,Wioska+POMPIARZ+12,274,522,849107881,4835,0 +55812,Wioska+barbarzy%C5%84ska,678,353,609384,1450,0 +55813,Wioska+barbarzy%C5%84ska,387,296,698231772,2620,0 +55814,Wioska+barbarzy%C5%84ska,381,298,699191464,1461,0 +55815,KONFA+TO+MARKA%2C+NARKA,286,413,698152377,2260,0 +55816,komandos,675,654,7976264,3446,0 +55817,KUKA+IX,285,422,6127190,603,0 +55818,New+WorldA,268,511,849084005,958,0 +55819,A%23026,732,472,2065730,9797,4 +55820,Kapitol_21,505,725,606407,4058,0 +55821,%23123%23,653,677,692803,4285,0 +55823,Wioska+barbarzy%C5%84ska,734,522,254937,1926,0 +55825,BETON+114,668,663,699277039,164,0 +55826,Gwenville+013,451,270,848986638,2785,0 +55827,007,290,587,698663855,4486,0 +55828,FP046,454,725,699605333,4493,0 +55829,%230227+barbarzy%C5%84ska,664,331,1238300,3000,0 +55830,Napewno+to+nie+jest+off,592,324,848912265,2198,0 +55831,szymek3+OCB,281,422,1323424,2404,0 +55832,Wioska+b+002,428,284,6343784,1524,0 +55833,Wioska+barbarzy%C5%84ska,721,548,698666810,9331,0 +55834,%23001,444,728,849042480,5301,0 +55835,Wioska+barbarzy%C5%84skaD,293,608,698178312,666,0 +55836,Psycha+Siada,317,640,8099868,7350,0 +55837,Avanti%21,272,485,698625834,4440,0 +55838,Wioska+barbarzy%C5%84ska,274,464,699213622,3998,0 +55839,Wioska+MIREK2222222,706,425,6927748,3072,0 +55840,Wioska+barbarzy%C5%84ska,399,700,849014922,6171,0 +55841,Wioska+barbarzy%C5%84skaA,293,609,698178312,4330,0 +55842,.achim.,572,284,6936607,3783,0 +55843,Wioska+barbarzy%C5%84ska,305,630,272173,1125,0 +55844,Wioska+barbarzy%C5%84ska,414,281,698231772,2408,0 +55845,North+064,541,273,849064752,4896,0 +55846,042,674,647,2323859,1249,0 +55847,Wioska+barbarzy%C5%84ska,365,317,3484132,4860,0 +55848,NOT%3F,314,360,9236866,2330,0 +55849,039+KTW,724,454,848883237,1726,7 +55850,Sony+911,661,670,1415009,3054,0 +55851,Z.07,709,580,699737356,2736,0 +55853,Wioska+barbarzy%C5%84ska,366,306,3484132,5069,0 +55854,Nie+atakuje+robi%C4%99+flagi,651,330,3365981,1598,0 +55855,X.03,728,443,699737356,3199,0 +55857,Wioska+barbarzy%C5%84ska,349,675,699704542,2116,0 +55858,Wioska+barbarzy%C5%84ska,676,350,609384,525,0 +55859,backstage+3,705,399,849099696,3259,0 +55860,Wiocha+zabita+dechami,549,338,849110711,4503,0 +55861,Wioska+barbarzy%C5%84ska,362,321,3698627,3182,0 +55862,MojeDnoToWaszSzczyt,475,266,9299539,5595,0 +55863,%3DSAwars%3D03%3D,563,277,849106420,5288,0 +55864,Myk,424,569,849022649,2927,0 +55865,002,288,594,698663855,10544,0 +55866,181,268,460,698941586,1550,0 +55867,Wioska+barbarzy%C5%84ska,705,401,699598425,2633,0 +55868,Wioska+ZYXW,563,715,698331388,3759,0 +55869,PPF-24,533,272,1424656,1797,0 +55870,Wioska+kacper10ciupek,549,274,8015955,6996,0 +55871,Wioska+barbarzy%C5%84ska,284,586,698663855,498,0 +55872,Wioska+Zielony+Zielony+Zielony,297,447,699876746,5341,0 +55873,Wioska+barbarzy%C5%84ska,685,358,7758085,2535,0 +55874,bagienko_03,562,278,849093353,3932,0 +55875,krainy+zachodu,285,406,698677650,3290,0 +55876,Wioska+barbarzy%C5%84ska,369,318,8772425,2066,0 +55877,Wioska+barbarzy%C5%84ska,538,729,699878511,6932,0 +55878,CastAway+%23015,707,588,9314079,3618,0 +55879,Wioska+Donek94,303,383,699841905,3464,0 +55880,--053--,583,284,542253,855,0 +55882,Wioska+barbarzy%C5%84ska,394,708,849014922,1538,0 +55883,Wioska+barbarzy%C5%84ska,731,531,17714,1575,0 +55884,Wioska+barbarzy%C5%84ska,354,324,8772425,1663,0 +55885,New+World,421,719,698152377,9973,0 +55886,Jack+69,326,344,699622781,2736,0 +55887,Wioska+barbarzy%C5%84ska,728,503,698191218,2187,0 +55888,04Wioska+barbarzy%C5%84ska,354,679,699704542,3079,0 +55889,065,726,511,699413040,3079,0 +55890,C0299,275,551,8841266,3954,0 +55891,Mroz%C3%B3w,300,593,1276665,1046,0 +55892,P%C3%B3%C5%82nocny+Bagdad,630,315,8847546,3206,0 +55893,P%7C006%7C,449,728,699393742,6085,0 +55894,No.2,327,343,849106612,2317,0 +55895,Wioska+Frolunda,630,693,8379825,536,0 +55896,Nowe+IMPERIUM+8,620,698,698353083,4548,0 +55897,Ow+Konfederacja,608,399,848915730,7219,0 +55898,Flap,610,296,699098531,4110,0 +55899,%3D%7C45%7C%3D,692,372,9101574,464,0 +55900,Wsch%C3%B3d+003,695,622,698562644,2040,0 +55901,.achim.,579,283,6936607,2971,8 +55902,Twierdza+%28Ald%29,331,609,0,6873,32 +55903,Wioska+barbarzy%C5%84ska,722,577,2453888,4064,0 +55904,Wioska+barbarzy%C5%84ska,324,633,698908184,6029,0 +55905,Grzejdas+2,698,385,849057764,6323,0 +55906,Wioska+barbarzy%C5%84ska,726,554,17714,341,0 +55907,Wioska+barbarzy%C5%84ska,732,484,698191218,1819,0 +55908,Wioska+barbarzy%C5%84ska,647,684,848987051,5137,0 +55910,zwiedle+wrzosowiska,291,393,698677650,6082,0 +55911,%7CD%7C+IS,457,725,698147372,2632,0 +55912,003,698,375,699832463,1946,0 +55913,Wioska,723,471,699765601,1537,0 +55914,Wioska+wojtek1435,541,271,6032352,4572,0 +55915,Flap,610,300,699098531,4669,0 +55916,Wioska+barbarzy%C5%84ska,697,612,699778867,466,0 +55917,Wioska+barbarzy%C5%84ska,560,726,699828442,1441,0 +55918,Wioska+ElitoPogero,446,673,8827094,3844,0 +55919,003,291,596,698663855,7432,0 +55920,049,473,269,2502956,8326,6 +55921,055,671,650,699099811,4220,0 +55922,New+World,435,717,698152377,6464,0 +55924,Wioska+barbarzy%C5%84ska,540,728,699878511,8182,0 +55925,Australia+D,296,425,699852080,4629,0 +55926,D017,562,279,699299123,2431,0 +55927,060-Mroczna+Osada,701,379,849035905,908,0 +55928,P%C3%B3%C5%82nocny+Bagdad,623,304,8847546,7013,0 +55929,Wioska+polotny33,732,464,8776452,307,0 +55930,61.+Wioska+61,281,566,849091769,7525,0 +55931,North+022,509,273,849064752,7106,0 +55932,Gubernia+02+Robsona,365,314,849107532,4133,0 +55933,Przyl%C4%85dek,270,459,848977600,1947,0 +55934,023.+Gloria+Victis,282,564,848886973,7427,0 +55935,C0252,268,526,8841266,4949,0 +55936,Wioska+barbarzy%C5%84ska,548,719,699828442,3258,0 +55937,Wioska+barbarzy%C5%84ska,353,682,699704542,2418,0 +55938,Piek%C5%82o+to+inni,654,322,848956765,3220,0 +55939,C007,466,732,8954402,2407,0 +55940,Wioska+barbarzy%C5%84ska,334,336,699304554,1165,0 +55941,C0305,276,529,8841266,3538,0 +55942,KUKA+V,279,436,6127190,1070,0 +55943,ble,623,697,848909464,1370,0 +55944,%23204+C,509,733,9037756,4022,0 +55945,Wioska+niko30,285,577,848988401,9581,0 +55946,szymek4,281,418,1323424,1363,0 +55947,Wioska+barbarzy%C5%84ska,569,284,699854484,85,0 +55948,007,290,586,698663855,4624,0 +55949,North+017,508,270,849064752,7902,4 +55950,067,724,520,699413040,2309,0 +55951,akuku,555,726,6425087,1182,0 +55952,%23K75+0036,523,726,699728159,5036,0 +55953,Wioska+barbarzy%C5%84ska,318,356,0,335,0 +55954,Wioska+barbarzy%C5%84ska,334,655,6910361,726,0 +55955,Wioska+barbarzy%C5%84ska,337,661,6354098,390,0 +55956,63%2F2,328,654,8175236,2559,0 +55958,Wioska+barbarzy%C5%84ska,724,549,698666810,5735,0 +55959,012,395,292,699694284,4987,6 +55960,Artur+Boruc+v3,711,405,699146876,2339,0 +55961,04Wioska+barbarzy%C5%84ska,362,688,699704542,5346,0 +55962,Wioska+Volf102,413,282,698202162,138,0 +55963,Osada+koczownik%C3%B3w,730,523,254937,4121,3 +55964,KERTO+01,709,602,7474527,3925,0 +55965,MojeDnoToWaszSzczyt,479,271,9299539,5535,0 +55966,North+113,512,274,849064752,1597,0 +55967,Bagno+37,471,729,848883684,4117,0 +55968,Wioska+barbarzy%C5%84ska,733,492,1601917,3340,0 +55969,Wioska+barbarzy%C5%84ska,393,706,849014922,5564,0 +55970,102+Wioska+barbarzy%C5%84ska,536,272,699854484,3649,0 +55971,%3F%3F%3F%3F,477,274,698489071,4307,0 +55972,wybuduj%C4%99+sobie+pa%C5%82ac...,602,703,699828685,10178,9 +55973,114.Stradi,425,281,698365960,6214,0 +55974,%24005%24+JBL,304,627,699550876,8470,0 +55975,Wioska+muflon1922,297,388,1827485,335,0 +55976,.achim.,578,285,6936607,2849,0 +55977,092+koniec+%C5%9Bwiata,634,693,849093426,3336,0 +55978,Wioska+barbarzy%C5%84ska,726,474,113796,781,0 +55979,A%23027,735,500,2065730,9797,4 +55980,KONFA+TO+MARKA%2C+NARKA,271,444,698152377,4243,0 +55981,londyn,299,395,849089601,1070,0 +55982,Wioska+barbarzy%C5%84ska,268,502,6186491,411,0 +55983,Wioska+barbarzy%C5%84ska,716,572,2453888,4419,0 +55984,005,327,645,8752714,2231,3 +55985,Wioska+barbarzy%C5%84ska,582,720,7589468,152,0 +55986,Wioska+barbarzy%C5%84ska,272,488,698625834,722,0 +55987,B%C4%99dzie+zadyma%3F,623,474,699545762,756,0 +55988,%230230+barbarzy%C5%84ska,662,335,1238300,2972,0 +55989,Wioska+leolen+n,731,498,849104855,8051,0 +55990,kamilkaze135+%2319,685,364,699705601,1446,0 +55991,Wioska+Arda26+and+Azdro,499,715,699429335,10160,0 +55992,Piek%C5%82o+to+inni,646,323,848956765,3254,0 +55993,%23001,304,374,849110743,6528,0 +55994,Blaviken,323,356,849098731,963,0 +55995,New+World,431,724,698152377,6914,0 +55996,071,730,519,699413040,1751,0 +55997,Wioska+barbarzy%C5%84ska,723,455,698191218,1163,0 +55998,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,722,8201460,3575,0 +55999,Osada+koczownik%C3%B3w,560,721,699828442,9496,4 +56000,Ave+Why%21,498,728,699121671,693,0 +56001,XDX,601,292,699098531,4106,0 +56002,Wioska+barbarzy%C5%84ska,521,726,849066849,537,0 +56003,%230060,579,711,1536231,3488,0 +56004,0001,654,326,8890346,7203,0 +56005,Wioska+barbarzy%C5%84ska,719,425,699628084,1218,0 +56006,Nie+gram+tu,294,426,849061417,437,0 +56007,CastAway+%23022,713,589,9314079,3420,0 +56008,Freedom,648,324,699518384,689,0 +56009,North+K25,562,273,699146580,1826,0 +56010,K67+...........................,702,614,698867483,7326,3 +56011,WIOSKA+OD+BIG+PAPA+MZM.,614,480,699117865,9633,0 +56012,samotna+gora,293,392,698677650,7611,0 +56013,052+-+Budowanko%21,503,731,7540891,3371,0 +56014,Granica1,272,467,848977600,2332,7 +56015,Wioska+barbarzy%C5%84ska,728,540,17714,1632,0 +56016,No.1,329,339,849106612,2450,0 +56017,Wioska+barbarzy%C5%84ska,335,658,0,319,0 +56018,%23120%23,649,669,692803,4036,0 +56019,Wioska+barbarzy%C5%84ska,322,358,849098731,434,0 +56020,%230249+colt9,438,281,1238300,4470,0 +56021,Wioska+mevest,549,275,9067168,42,0 +56022,102.+Wioska+barbarzy%C5%84ska,723,462,7494497,6106,0 +56023,Wioska+barbarzy%C5%84ska,280,585,849097937,2889,0 +56025,Wioska+barbarzy%C5%84ska,735,498,698191218,3161,0 +56027,Wioska+barbarzy%C5%84ska,347,678,699704542,2275,0 +56028,Wioska+barbarzy%C5%84ska,460,268,699191449,1232,0 +56029,Wioska+012,710,595,7999103,8064,0 +56030,1+oo.oo,441,273,848933470,731,0 +56031,Wioska+barbarzy%C5%84ska,727,554,698666810,5719,0 +56032,North+K25,561,280,699146580,1395,0 +56033,Wioska+barbarzy%C5%84ska,285,587,698663855,563,0 +56035,XDX,613,298,699098531,3707,0 +56036,nowa+4,631,694,699372829,975,0 +56037,Bessa+016,649,679,848987051,8499,9 +56038,013+Satoma,676,647,849102108,4509,0 +56039,118.Stradi,423,278,698365960,4743,0 +56040,058,637,687,699695167,2239,9 +56041,NieMacieSzans,501,731,849110688,3147,0 +56042,Wioska+barbarzy%C5%84ska,396,703,849014922,5563,0 +56043,Wioska+barbarzy%C5%84ska,714,431,699574408,1518,0 +56044,Wioska+Herkuless,694,633,6472706,5843,0 +56045,010.+Osada+koczownik%C3%B3w,690,374,2873154,6197,2 +56046,%C5%81akaMakaF%C4%85,563,270,849096341,2881,0 +56047,NP+03,304,390,849076810,1461,0 +56048,093+Wioska+barbarzy%C5%84ska,540,271,699854484,4645,0 +56049,Nowe+Dobra+-+budowa,689,625,699759128,4872,0 +56050,paawlo13,417,410,698848067,7425,0 +56051,No+to+jedziemy+%3AD,474,733,699333701,1864,0 +56053,zelazne+wzgorza,291,399,698677650,2346,0 +56054,Wioska+oliwer1996,489,723,699075613,5997,0 +56055,Nowa+63,723,567,698702991,4191,0 +56056,Wioska+Morgan578,277,527,849047233,6435,0 +56057,%3D%7C43%7C%3D,692,374,9101574,711,0 +56058,Wioska+klejmon,648,332,849095771,705,0 +56059,%23Kresy,632,692,2665207,7142,8 +56060,Sony+911,672,654,1415009,5118,0 +56061,%C5%BBubr,681,356,699875213,1810,0 +56062,RAMZES,532,272,8082376,2887,0 +56063,%23207+C,517,729,9037756,1416,0 +56064,XDX,616,299,699098531,3264,0 +56065,Gwenville+014,453,270,848986638,1090,0 +56066,Wioska+barbarzy%C5%84ska,658,333,699072129,2648,0 +56067,Zaplecze+Barba+038,348,331,699796330,2661,0 +56068,CastAway+%21037,713,582,9314079,2524,0 +56069,Wioska+barbarzy%C5%84ska,726,452,699347951,829,0 +56070,New+World,432,719,698152377,10094,0 +56071,Wioska+barbarzy%C5%84ska,558,720,699828442,3671,0 +56073,CastAway+%21023,710,593,9314079,5417,0 +56074,-12.+Skandynawska+huta,317,365,698345556,1931,3 +56075,Wioska+barbarzy%C5%84ska,398,708,849014922,2469,0 +56076,032,691,621,699099811,1476,0 +56077,Marysin,599,710,823987,2720,0 +56078,Wioska+barbarzy%C5%84ska,385,704,849014922,1481,0 +56080,Wioska+barbarzy%C5%84ska,342,327,6169408,949,0 +56081,Wioska+Krzych0007,280,428,699682780,3204,0 +56082,Wioska+Mietusek22,399,710,6001174,7348,0 +56083,Alamo2,716,569,2723244,2133,0 +56084,077.+Wioska+barbarzy%C5%84ska,732,465,7494497,4947,0 +56085,KUKA+III,285,434,6127190,3487,0 +56086,Wioska+barbarzy%C5%84ska,726,550,698666810,8383,0 +56087,New+World,408,710,698152377,1633,0 +56088,New+World,437,715,698152377,6641,0 +56089,040+KTW,723,444,848883237,1840,0 +56090,Wioska+Boski222,563,720,6299408,8206,0 +56091,Wioska+barbarzy%C5%84ska,460,276,699308637,2157,0 +56092,Diduuu,560,397,849108339,2194,0 +56093,wwwb,599,707,699828685,3257,0 +56094,Wioska+saladyn89.,669,337,7346797,5793,0 +56095,003,333,656,8752714,2644,2 +56096,--050--,583,290,542253,1916,0 +56097,Wioska+barbarzy%C5%84ska,727,550,698666810,8215,0 +56098,O115,313,638,272173,6461,0 +56099,B022,627,309,8740199,2429,0 +56100,Osada+koczownik%C3%B3w+03,340,336,698757439,10028,6 +56101,Twierdza+%28MA%C5%81YSZ%29,331,610,0,6873,32 +56103,Twierdza+%28Zaj%C4%99nc%29,331,611,0,6873,32 +56104,Maryna,268,458,699650981,4052,0 +56105,Wioska+barbarzy%C5%84ska,312,368,699660539,1299,0 +56106,Wioska+Cypis666,274,460,699730399,5440,0 +56107,Wioska+barbarzy%C5%84ska,631,690,6818593,1484,0 +56109,002,289,594,698663855,10544,0 +56110,Psycha+Siada,322,641,8099868,6456,0 +56111,0000042Z,275,566,849089881,925,0 +56112,MojeDnoToWaszSzczyt,492,267,9299539,6129,0 +56113,Wioska+barbarzy%C5%84ska,365,690,0,273,0 +56114,Wioska+barbarzy%C5%84ska,675,351,2976468,2481,0 +56115,wwwb,605,710,699828685,2648,0 +56116,BIMBER+6,438,280,6857973,996,0 +56117,Wioska+barbarzy%C5%84ska,731,545,254937,3306,0 +56118,KONFA+TO+MARKA%2C+NARKA,284,419,698152377,2233,0 +56119,Wioska+Mihalina,735,514,698849979,509,0 +56120,Wioska+019,674,345,7226782,929,0 +56121,K67+07,702,607,698867483,4186,3 +56122,Wioska+igrane5000,557,272,7427966,3286,0 +56123,New+World,439,725,698152377,2710,0 +56124,43.,333,660,8665783,498,0 +56125,Wioska25,333,347,699711926,3824,0 +56126,115.Stradi,425,278,698365960,5325,0 +56127,Wioska+barbarzy%C5%84ska,660,339,699072129,3570,0 +56128,028,713,590,6160655,2763,0 +56129,035.+marcopolo1324,688,362,2873154,2679,0 +56130,New+World,430,723,698152377,7230,0 +56131,037.+Small+Town,496,735,848928624,2499,0 +56132,KONFA+TO+MARKA%2C+NARKA,289,399,698152377,1533,0 +56133,Wioska+barbarzy%C5%84ska,597,293,698350371,719,0 +56134,pRoFiCe+II,362,678,698712383,4844,0 +56135,Wioska+asiulkaaa23,417,288,3411571,6035,0 +56136,%3F%3F%3F%3F,469,273,698489071,3642,0 +56137,Wioska+barbarzy%C5%84ska,298,619,2289134,633,0 +56138,New+World,409,710,698152377,3540,0 +56139,%3D122%3D+Wioska+barbarzy%C5%84ska,720,565,3781794,1676,0 +56140,0000039Z,276,558,849089881,2045,0 +56141,042+KTW,727,444,848883237,1471,0 +56142,K42+ADAMUS+007,279,432,6212605,9172,8 +56143,Sony+911,683,648,1415009,1543,0 +56144,004,666,333,849020094,4789,3 +56145,Wioska+cobra2ooo,708,587,699734795,628,0 +56146,Zeta+pi%C4%99%C4%87,573,277,849080011,1164,0 +56147,RPM+CUSTOM+3,556,282,849102094,3023,0 +56148,Wioska+barbarzy%C5%84ska,390,704,849014922,1428,0 +56149,Poznan+003,411,287,1924718,494,0 +56150,All+heil+CSA,592,284,699448276,509,0 +56151,Wioska+barbarzy%C5%84ska,275,464,699213622,3533,0 +56152,Wioska+hiszpan78,277,534,699721590,409,0 +56153,Kuzyn+B%C5%82a%C5%BCej,583,714,849098628,5328,1 +56154,Wioska+oleska2002,593,283,6296228,2963,0 +56155,BETON+111,663,662,699277039,232,0 +56156,Sony+911,699,394,1415009,2296,0 +56157,Wioska+barbarzy%C5%84ska,357,318,3698627,2849,0 +56159,062,725,511,699413040,3342,0 +56160,North+103,484,265,849064752,2347,0 +56161,Flap,603,298,699098531,3009,0 +56162,M001,278,440,1669587,998,0 +56163,Piek%C5%82o+to+inni,651,320,848956765,3389,0 +56164,Wioska+szaikan96,620,697,3860614,26,0 +56165,Wioska+barbarzy%C5%84ska,535,269,7758085,2106,0 +56166,%23044,560,283,849064614,1050,0 +56167,007,318,377,7919620,5071,0 +56168,Alamo1,718,565,2723244,2773,8 +56169,bagienko_06,559,283,849093353,2936,0 +56170,Piek%C5%82o+to+inni,647,325,848956765,3257,0 +56171,131.Stradi,394,294,698365960,3170,0 +56172,%5B840%5D+Odludzie,723,441,848985692,5032,0 +56174,%5B0269%5D,266,493,8630972,3715,0 +56175,PPF-03,521,272,1424656,4986,0 +56177,Cadiz,649,673,747422,2813,0 +56178,Wioska+Lord+%C5%81ukasz05,726,472,8816336,2371,0 +56179,Nowa+Baza+2,613,697,698353083,4924,0 +56180,247,451,280,7271812,464,0 +56181,Wioska+bartekwach,266,517,849107507,4275,0 +56182,Wioska+barbarzy%C5%84ska,318,368,0,427,0 +56183,B015,529,269,699485250,3613,0 +56184,223...NORTH,437,283,6920960,1639,0 +56185,Flap,609,291,699098531,4511,0 +56186,Wioska+XXARDASS,546,272,1015528,4417,0 +56187,MojeDnoToWaszSzczyt,498,269,9299539,4250,0 +56188,Wioska+AreYouHorny%3F,720,440,849067079,3620,0 +56189,008,398,290,699694284,8100,0 +56190,C0237,277,552,8841266,9020,9 +56191,C.058,725,479,9188016,1172,0 +56192,Wioska+barbarzy%C5%84ska,298,608,699604515,317,0 +56193,Wioska+agjao,500,734,849070220,874,0 +56194,04Wioska+barbarzy%C5%84ska,354,676,699704542,4449,0 +56195,009,293,589,698663855,4210,0 +56196,0048,478,732,699280514,980,0 +56197,%2A001%2A,275,433,699791054,3270,0 +56198,%3A%29+%3A%29,268,464,3972413,3385,0 +56199,Ave+Why%21,472,728,699121671,1231,0 +56200,C017,535,724,698599365,1754,0 +56201,Wioska+barbarzy%C5%84ska,731,482,698191218,2058,0 +56202,%3F%3F%3F%3F,490,265,698489071,5241,0 +56203,Wioska+barbarzy%C5%84ska,387,700,849014922,1498,0 +56204,%21Wioska+barbarzy%C5%84ska+2,584,720,8779575,3190,0 +56205,Wioska+Stefal-S22,556,271,2764337,792,0 +56206,osgiliath,291,392,698677650,6696,0 +56207,Mohicans,727,538,6002527,5329,0 +56208,Wioska+barczi1979,400,701,698692141,3445,0 +56209,Wioska35,325,345,699711926,1358,0 +56210,R+047,491,728,699195358,3596,0 +56211,mroczna+puszcza,294,391,698677650,1065,0 +56212,Piek%C5%82o+to+inni,652,332,848956765,3578,0 +56213,Wioska+MannyKing97,440,277,849111244,4481,0 +56214,FP041,469,727,699605333,5139,0 +56216,%7CD%7C+Cavemere,455,722,698147372,6146,9 +56217,K42+ADAMUS+022,279,430,6212605,2748,0 +56218,P%C3%B3%C5%82nocny+Bagdad,628,313,8847546,6521,7 +56219,Las+Vegas,659,335,849111196,8602,0 +56220,A003,336,656,849105102,3369,0 +56221,Wioska+barbarzy%C5%84ska,678,640,698191218,2051,0 +56222,Wioska+Grisza10,653,321,896355,6093,0 +56223,Wioska+barbarzy%C5%84ska,336,339,849101604,469,0 +56224,%5BS%5Dandacza,274,549,849106971,4073,0 +56225,KONFA+TO+MARKA%2C+NARKA,288,422,698152377,2395,0 +56226,Wioska+barbarzy%C5%84ska,356,315,3698627,2701,0 +56227,New+WorldA,274,507,849084005,512,0 +56228,Master,274,545,849052289,8403,0 +56229,Wioska+Kurji,496,266,698324343,7434,0 +56230,%24008%24+Lordzik,300,622,699550876,7376,0 +56231,gory+mgliste,288,395,698677650,5000,0 +56232,Wioska+nortos17,336,337,699428898,126,0 +56233,Wioska+Wu7ek,701,616,849108157,3220,0 +56234,Sony+911,678,653,1415009,4845,0 +56235,Wioska+barbarzy%C5%84ska,349,323,8772425,1276,0 +56236,Wioska+barbarzy%C5%84ska,534,729,699878511,6418,0 +56237,CastAway+%21024,711,591,9314079,4839,0 +56238,C.059,726,482,9188016,2794,0 +56240,North+029,508,269,849064752,6994,0 +56241,Wioska+piro78,578,714,699840189,3534,0 +56242,Spajki,681,351,7973893,1111,0 +56243,Wioska+barbarzy%C5%84ska,552,271,699854484,390,0 +56244,C.060,729,478,9188016,3193,0 +56245,Arczi997+08,266,512,849055181,359,0 +56246,Bagno+33,475,724,848883684,4626,0 +56247,Wioska+barbarzy%C5%84ska,370,689,0,607,0 +56248,Wioska+barbarzy%C5%84ska,705,389,699598425,2139,0 +56249,P%C3%B3%C5%82nocny+Bagdad,629,304,8847546,6206,0 +56250,44+barbarzy%C5%84ska,273,435,849018442,3099,0 +56251,Wioska+barbarzy%C5%84ska,721,456,699347951,986,0 +56252,Wioska+barbarzy%C5%84ska,418,285,3411571,1619,0 +56253,Z%C5%82oty+%C5%9Awit,598,298,699883079,622,0 +56254,New+World,434,727,698152377,6996,0 +56255,Wioska+barbarzy%C5%84ska,532,724,699878511,3442,0 +56256,103+Wioska+barbarzy%C5%84ska,585,280,699854484,2926,0 +56257,Winterthur+II,694,367,849109637,1644,0 +56258,Wioska36,325,346,699711926,1392,0 +56259,Wioska+bartek696,367,688,6968280,26,0 +56260,Z02,371,694,698652014,2216,0 +56261,Wioska+barbarzy%C5%84ska,362,681,0,119,0 +56262,Wioska,734,483,849084474,1402,0 +56263,Wioska+barbarzy%C5%84ska,724,455,699347951,1056,0 +56264,37.Etolia,727,527,8976313,2831,0 +56265,Wioska+Henryk+IV,674,658,699421735,6361,0 +56266,0012zznowuk,707,598,3986807,878,0 +56267,XDX,615,306,699098531,3264,0 +56268,005+%7C+North,383,695,699511295,7668,0 +56269,%5B0208%5D,273,493,8630972,6028,0 +56270,Alamo3,723,563,2723244,2148,7 +56271,Kheled-Zaram,407,285,3411571,6032,0 +56272,069+Wioska+barbarzy%C5%84ska,338,661,6354098,3785,0 +56273,041+-+Budowanko%21,535,725,7540891,5496,9 +56274,2%3A32%3A57+496+198+99+66,286,589,3800097,4745,0 +56275,Wioska+bastekx,720,418,699855277,26,0 +56276,Avanti%21,268,468,698625834,1763,0 +56277,No.30,574,723,698826986,606,0 +56278,Wioska+Natalii,618,304,849076678,285,0 +56279,Wioska+barbarzy%C5%84ska,462,278,699191455,1186,0 +56280,001Godziwa+Wioska,455,274,602408,7744,0 +56282,PPF-28,537,269,1424656,1547,0 +56283,001,274,446,699282717,4381,0 +56284,Wioska+barbarzy%C5%84ska,371,304,699191464,1091,0 +56285,Wioska+barbarzy%C5%84ska,366,688,0,293,0 +56286,001,301,394,849109795,4939,0 +56287,O151,309,631,272173,2395,0 +56288,Wioska+webi,537,482,849058207,183,0 +56289,Wioska+gall2,272,474,699598396,1752,0 +56291,Wioska+barbarzy%C5%84ska,353,322,8772425,1622,0 +56292,Wioska+barbarzy%C5%84ska,599,296,0,333,0 +56293,Wioska+tomaszek74,685,642,698151302,2045,0 +56294,New+World,418,718,698152377,3693,0 +56295,Wioska+barbarzy%C5%84ska,722,576,2453888,4627,0 +56296,Wioska+2,664,661,849111050,1376,0 +56298,Wioska+tedy1,660,667,3631404,393,0 +56299,%230085,579,720,1536231,2712,0 +56300,Wioska+Fieffe,609,302,8968520,76,0 +56301,Wioska+barbarzy%C5%84ska,617,694,698353083,616,0 +56302,Wioska+ArturLublin,609,298,698906643,1083,0 +56303,Enter+Sandman,685,564,848926293,523,0 +56304,O121,306,628,272173,5785,0 +56305,Wioska+008,731,505,2999957,2631,0 +56306,Piek%C5%82o+to+inni,657,337,848956765,2269,0 +56307,C0315,273,554,8841266,2410,0 +56308,New+World,411,707,698152377,4257,0 +56309,Vetiuss2,281,571,849096399,1647,0 +56310,wwwb,600,709,699828685,2632,0 +56311,Wioska+barbarzy%C5%84ska,643,687,848987051,4947,0 +56312,Wioska+MORUSGRIN,536,733,7590275,7252,0 +56313,72.+Wioska+72,278,563,849091769,2528,0 +56314,047,718,563,7085502,6046,8 +56315,ble,622,699,848909464,3758,0 +56316,004,294,594,698663855,10068,0 +56317,B016,531,269,699485250,3762,0 +56318,Wioska+barbarzy%C5%84ska,543,732,699878511,4919,0 +56319,%23158%23,654,674,692803,1064,0 +56320,Belweder,281,416,699854312,785,0 +56321,Psycha+Siada,315,640,6910361,8346,8 +56322,%23131%23,661,664,692803,2855,0 +56323,Wioska+barbarzy%C5%84ska,729,512,698191218,2214,0 +56324,K67+26,706,609,698867483,1802,0 +56325,Winterthur,693,364,849109637,3843,0 +56326,%5B831%5D+Odludzie,723,433,848985692,6157,0 +56327,Wioska+Aragorn+Stra%C5%BCnik+P%C3%B3%C5%82nocy,342,673,2051721,1364,0 +56328,%5B838%5D+Odludzie,721,440,848985692,5380,0 +56329,003,449,273,699562874,7137,8 +56330,Wioska+barbarzy%C5%84ska,723,429,699628084,1058,0 +56331,Wioska+wertywer,543,726,699469600,1031,0 +56332,X.02,727,448,699737356,2641,0 +56333,DEMON-SRT,462,273,849098667,678,0 +56334,024.+Gloria+Victis,285,567,848886973,6194,0 +56335,Wioska+Hary666,728,488,849104855,7110,0 +56336,Nowe+IMPERIUM+9,620,699,698353083,2907,0 +56337,62.+Wioska+62,276,568,849091769,4593,0 +56338,o018,613,706,699189792,4211,0 +56339,Odwierty,688,372,7973893,670,0 +56340,P%C3%B3%C5%82nocny+Bagdad,626,308,8847546,6531,0 +56341,MojeDnoToWaszSzczyt,495,270,9299539,4458,0 +56342,%7CD%7C+IS,455,723,698147372,2241,0 +56343,Wioska+barbarzy%C5%84ska,628,690,6818593,1680,0 +56344,SmokeCity,725,516,849111487,4782,0 +56345,Wioska+barbarzy%C5%84ska,608,709,699828685,2407,0 +56346,Wioska+barbarzy%C5%84ska,685,361,7758085,2424,0 +56347,Wioska+barbarzy%C5%84ska,706,402,699598425,2682,0 +56348,Wioska+Szrek5,449,722,849020667,3784,0 +56349,wojo,694,370,849054951,2239,0 +56350,Wioska+barbarzy%C5%84ska,404,465,6258092,3349,0 +56351,038.+5spajk5,675,349,2873154,1276,0 +56352,KONFA+TO+MARKA%2C+NARKA,274,449,698152377,4503,0 +56353,C-006,321,357,699406247,3003,0 +56354,012.+Osada+koczownik%C3%B3w,685,367,2873154,5726,9 +56355,Wioska+barbarzy%C5%84ska,278,461,699213622,3225,0 +56356,Wioska+barbarzy%C5%84ska,536,730,699878511,6421,0 +56357,Wioska+Gebels25,291,410,848942618,158,0 +56358,zielona2,364,693,2105150,3662,0 +56359,%3D%7C51%7C%3D,687,374,9101574,273,0 +56360,Wioska+barbarzy%C5%84ska,735,488,698191218,2201,0 +56361,Wioska+wilka+06,719,562,6786449,3247,0 +56362,%5B0270%5D,265,495,8630972,3971,0 +56363,002,366,685,281866,254,0 +56364,Avanti%21,267,485,698625834,5339,0 +56365,Wioska2+barbarzy%C5%84ska,709,414,8459255,3221,0 +56366,%3F%3F%3F%3F,456,269,698489071,3638,0 +56367,Wioska+barbarzy%C5%84ska,542,386,0,2942,0 +56368,Kapitol_24,506,730,606407,4229,0 +56369,Wioska+barbarzy%C5%84ska,388,296,699191449,688,0 +56370,Motorola+l10,363,319,698806018,3061,0 +56371,ZZZ+.%3A%3A.+cinek3456%2F12,585,712,33900,1244,0 +56372,Wioska+MauritiusMagnus,393,301,7508390,138,0 +56373,K67+06,702,622,698867483,3817,0 +56374,Wioska+3,295,401,699763225,375,0 +56375,Psycha+Siada,319,647,8099868,6824,0 +56376,Wioska+014,683,633,7999103,5055,0 +56377,Wioska+barbarzy%C5%84ska,590,294,699799629,569,0 +56378,Wioska+001,692,630,6472706,3889,0 +56379,Wioska+barbarzy%C5%84ska,307,373,0,625,0 +56380,Wioska+barbarzy%C5%84ska,634,684,0,1028,0 +56381,.achim.,571,282,6936607,2087,0 +56382,A%23034,724,529,2065730,9037,6 +56383,Wioska+DRAGONMIR,271,506,698171150,1274,0 +56385,sh08,514,273,7064954,2237,0 +56386,Wioska+barbarzy%C5%84ska,687,643,698786826,2419,0 +56387,Wioska+Jackob666,726,478,849104855,6979,0 +56388,North+030,517,273,849064752,6888,0 +56389,Bessa+017,642,680,848987051,5039,7 +56390,069,727,516,699413040,1647,0 +56391,isengard,295,390,698677650,3716,0 +56392,Wioska+barbarzy%C5%84ska,538,278,7758085,1949,0 +56393,New+WorldA,272,539,849084005,1102,0 +56394,Wioska+barbarzy%C5%84ska,642,684,848987051,4865,0 +56395,%2304%21,640,685,849101884,8821,0 +56396,Wioska+barbarzy%C5%84ska,365,313,3484132,4939,0 +56397,Wioska+Zero+1.,437,273,7150939,2136,0 +56398,Wioska+barbarzy%C5%84ska,681,482,699598425,3628,0 +56399,New+World,413,716,698152377,6396,0 +56400,Wioska+barbarzy%C5%84ska,724,456,699347951,674,0 +56401,Wioska+barbarzy%C5%84ska,536,269,7758085,2590,0 +56402,P%C3%B3%C5%82nocny+Bagdad,624,307,8847546,3164,0 +56403,C0304,275,550,8841266,3307,0 +56404,www,602,706,699828685,4034,0 +56405,Wioska+barbarzy%C5%84ska,729,547,698666810,8664,0 +56407,New+World,434,717,698152377,7891,0 +56409,Wioska+Aritian1,547,269,7492426,7448,0 +56410,D011,565,279,699299123,2828,4 +56411,Wioska+agawy,727,497,7259218,1229,0 +56412,X.04,731,448,699737356,3039,0 +56413,Osada+koczownik%C3%B3w,639,314,1018357,1149,4 +56414,Wioska+barbarzy%C5%84ska,415,283,698231772,1909,0 +56416,A%23032,708,407,2065730,9797,4 +56417,Wioska1,549,720,849085293,743,0 +56418,Avanti%21,271,468,698625834,2007,0 +56419,New+World,414,709,698152377,3820,0 +56420,E003,634,312,699299123,2036,0 +56421,P4Kasik,275,452,699627771,1442,0 +56422,Wioska+barbarzy%C5%84ska,341,675,0,605,0 +56423,Wioska+barbarzy%C5%84ska,732,513,698191218,2063,0 +56424,Avanti%21,268,485,698625834,5261,0 +56425,New+WorldA,271,537,849084005,1123,0 +56426,Wioska+010,687,639,1647052,773,0 +56428,Kapitol_17,500,727,606407,4133,0 +56429,New+World,424,715,698152377,6559,0 +56430,Wioska+barbarzy%C5%84ska,344,663,6354098,789,0 +56431,Wioska+dalesz1212,387,303,8217130,947,0 +56432,KONFA+TO+MARKA%2C+NARKA,273,443,698152377,4298,0 +56433,Zak%C4%85tek,271,461,848977600,2967,3 +56434,atol+6,277,544,848930898,948,0 +56435,36.,328,663,8665783,1105,0 +56436,Wioska+barbarzy%C5%84ska,371,306,698160606,2624,0 +56437,Wioska+barbarzy%C5%84ska,646,375,7973893,2229,0 +56438,Avanti%21,265,482,698625834,5296,0 +56439,064+Osada+koczownik%C3%B3w,539,277,699854484,9792,2 +56441,Dajanka+26,290,604,849012843,646,0 +56443,Wioska+barbarzy%C5%84ska,347,679,699704542,2768,0 +56445,Wioska+barbarzy%C5%84ska,320,347,0,870,0 +56446,Nowe+Dobra+-+budowa,686,632,699759128,3987,0 +56447,Wioska+barbarzy%C5%84ska,421,278,698231772,2473,0 +56448,srodziemie,285,401,698677650,2129,0 +56449,Wioska+barbarzy%C5%84ska,427,277,849017820,721,0 +56450,001+Osada+koczownik%C3%B3w+tu+%C5%9Blij,292,594,698663855,10544,9 +56451,Wioska+Lady+elo320,264,480,699632387,3480,0 +56452,Wioska+barbarzy%C5%84ska,389,704,849014922,5270,0 +56453,Ma%C5%82y,726,501,699724603,262,0 +56455,UlanyKaplanisko,544,271,849111632,524,0 +56456,Wioska+barbarzy%C5%84ska,413,281,698231772,1920,0 +56457,Wioska+barbarzy%C5%84ska,374,696,849030086,544,0 +56458,084+obrze%C5%BCa,272,559,699510259,910,0 +56459,Poznan+000,414,289,1924718,3924,0 +56460,072a+Wioska+barbarzy%C5%84ska,339,669,6354098,4037,0 +56462,Wioska+bolek13241,724,567,849064084,2648,0 +56463,Wioska+barbarzy%C5%84ska,720,429,699524891,2507,0 +56464,O112,298,617,272173,7685,6 +56465,Wioska+barbarzy%C5%84ska,315,370,0,447,0 +56466,budowa+04,601,710,7139820,2183,0 +56467,New+World,414,717,698152377,6612,0 +56468,Wioska+barbarzy%C5%84ska,398,713,849014922,1249,0 +56469,Emilian%C3%B3w,272,460,849116221,911,0 +56471,New+World,412,717,698152377,6519,0 +56473,Wioska+barbarzy%C5%84skaG,293,611,698178312,457,0 +56474,Wioska+barbarzy%C5%84ska,716,426,699524891,2215,0 +56475,Wioska+barbarzy%C5%84ska,705,406,699598425,2420,0 +56476,Urz%C4%99dowa+2,323,343,699802012,815,0 +56477,Wioska+Puma79,323,654,848882397,2045,0 +56478,Wioska+barbarzy%C5%84ska,704,380,1767876,2193,0 +56479,Kapitol_27,500,732,606407,2558,0 +56480,P%C3%B3%C5%82nocny+Bagdad,622,309,8847546,3435,0 +56481,Nowe+Dobra+-+budowa,686,631,699759128,5043,0 +56483,North+K25,532,270,699146580,2157,7 +56485,Z%C5%82oty+%C5%9Awit,595,288,698350371,930,0 +56486,03+Wioska+barbarzy%C5%84ska,726,434,8785003,1884,0 +56487,043,677,643,2323859,982,0 +56488,Wioska+barbarzy%C5%84ska,725,436,699524891,2940,0 +56489,KONFA+TO+MARKA%2C+NARKA,271,443,698152377,6914,0 +56490,Wioska+barbarzy%C5%84ska,711,403,0,827,0 +56491,nr7,637,692,364126,1319,0 +56492,Wioska+barbarzy%C5%84ska,389,293,698231772,6266,0 +56493,PPF-16,522,267,1424656,2936,0 +56494,Wioska+Pawe%C5%82+I+Wspanialy,319,634,470266,1643,0 +56495,B012,528,271,699485250,3569,0 +56496,Wioska+sos1234,646,682,7150683,1258,0 +56497,Wioska+barbarzy%C5%84ska,367,690,0,488,0 +56498,Wioska+ajno%C5%82,308,633,6647642,3035,0 +56499,Wioska+barbarzy%C5%84ska,651,319,698895940,6504,0 +56500,.achim.,578,287,6936607,2109,0 +56501,%230063,573,713,1536231,2791,0 +56502,011,403,295,9283775,934,0 +56503,Wioska+015,680,348,7226782,2783,8 +56504,Wioska+seba3333,520,273,849110382,1796,0 +56505,073+Wioska+barbarzy%C5%84ska,341,668,6354098,2566,0 +56506,GRABARNIA,692,366,3957237,3784,0 +56507,New+World,427,724,698152377,8287,0 +56508,Osada+koczownik%C3%B3w,723,579,2453888,7406,8 +56509,Wioska+SzopPracz93,402,714,849099131,450,0 +56510,Maryna+3,269,458,699650981,1025,0 +56511,Wioska+Developer1994,686,605,3467919,4147,0 +56512,Wioska+barbarzy%C5%84ska,639,684,848987051,4671,0 +56513,C0317,271,557,8841266,2427,0 +56514,061,725,513,699413040,2291,0 +56515,Wioska+barbarzy%C5%84ska,276,466,699213622,3509,0 +56516,Wioska+Dragonics1991,336,342,849111732,1549,0 +56517,C0296,273,524,8841266,3470,0 +56518,backstage+5,707,401,849099696,2867,0 +56520,37.,333,668,8665783,2197,0 +56521,Azgeda,629,315,849048455,1754,0 +56522,Wioska+Jabolek,727,437,698654164,3119,0 +56523,Wioska+barbarzy%C5%84ska,702,397,699598425,3382,0 +56524,BB3,270,510,849110365,1661,0 +56525,Wioska+barbarzy%C5%84ska,313,644,2289134,519,0 +56526,.3.%21,287,411,762975,2168,0 +56527,kww09,728,544,699831860,1856,0 +56528,Wioska+Mr.ElCzapo,511,733,849096990,3303,0 +56529,Wioska+barbarzy%C5%84ska,687,644,698786826,2786,0 +56530,Wioska+alexwpr,323,342,699802012,3853,0 +56531,king-pin,300,396,849089601,7717,0 +56532,059.,445,730,849034882,9850,0 +56533,Wioska+barbarzy%C5%84ska,343,677,0,554,0 +56534,Wioska+barbarzy%C5%84ska,598,709,0,317,0 +56535,PPF-25,534,276,1424656,1908,0 +56536,Nowa+baza+1,597,707,698353083,6085,9 +56537,Wioska+2,514,724,849100615,1693,0 +56538,North+K25,527,274,699146580,2681,0 +56539,Wioska+barbarzy%C5%84ska,729,517,698191218,2855,0 +56540,Wioska+barbarzy%C5%84ska,312,373,699660539,1749,0 +56541,Wioska+barbarzy%C5%84ska,390,709,849014922,3482,0 +56542,Wioska+kilolo,267,470,699844880,321,0 +56543,056,691,619,699099811,1113,0 +56544,Wioska+misiek650,339,668,849022063,189,0 +56545,%5B0238%5D,270,493,8630972,4095,0 +56546,Saran11,408,291,848937248,350,0 +56547,022,302,614,699356968,1463,7 +56548,Wioska+barbarzy%C5%84ska,591,292,699799629,720,0 +56549,Wioska+barbarzy%C5%84ska,601,294,699098531,2259,0 +56550,Wioska+Iceeman,621,703,584989,381,0 +56551,.achim.,569,285,6936607,3442,0 +56552,017,396,292,699694284,1771,0 +56553,070,729,518,699413040,1836,0 +56554,181.02,329,346,7221139,887,0 +56555,Wioska+barbarzy%C5%84ska,734,515,698191218,2081,0 +56556,004+Rohan+II,525,266,849100383,6858,0 +56557,%23020,546,269,849064614,2665,0 +56558,Wioska+barbarzy%C5%84ska,304,377,0,622,0 +56559,znam+ostropesta+2,460,733,699777372,2426,0 +56560,Hardex,519,271,849110382,5469,0 +56561,%23021,548,269,849064614,2552,0 +56562,Wioska+barbarzy%C5%84ska,705,391,699598425,1251,0 +56563,0126,694,377,698416970,1120,0 +56564,Wioska+barbarzy%C5%84ska,568,274,849010386,1574,0 +56565,Wioska+barbarzy%C5%84ska,331,655,8175236,410,0 +56566,031.+Brauer92,694,382,2873154,5732,5 +56567,Wioska+Pracz+6,309,626,8916982,6348,0 +56568,New+World,420,714,698152377,6995,0 +56569,Wioska+barbarzy%C5%84ska,352,326,8772425,1514,0 +56570,Wyspa+025,280,576,225023,1817,0 +56572,Wioska+barbarzy%C5%84ska,730,452,699347951,932,0 +56573,001,699,393,8019812,5940,0 +56574,CastAway+%21020,711,589,9314079,5351,0 +56575,Wioska+z+Pracza+3,303,629,8916982,2194,0 +56576,Taran,545,378,699170684,2387,0 +56577,108.+Akala,695,626,8337151,2527,0 +56578,Wioska+barbarzy%C5%84ska,333,666,6354098,424,0 +56579,%C5%9Aw181%2A008,674,342,959179,818,0 +56580,Wioska+Glapy+1.,440,271,7150939,2858,0 +56581,Ave+Why%21,508,736,699121671,1069,0 +56582,062KP,482,273,849063849,2017,0 +56583,Wioska+barbarzy%C5%84ska,691,633,699664910,1505,0 +56584,Wioska+barbarzy%C5%84ska,395,297,698231772,2940,0 +56586,Osada+koczownik%C3%B3w,658,330,849111196,4094,6 +56587,Wioska+XXXRETARDION,719,580,848924648,716,0 +56588,O116,314,639,272173,6274,0 +56589,P+181,715,583,8997874,1691,0 +56590,Wioska+barbarzy%C5%84ska,302,377,0,552,0 +56591,%23027,547,274,849064614,1467,0 +56592,Wioska+barbarzy%C5%84ska,735,522,698191218,2237,0 +56593,North+072,502,270,849064752,3154,0 +56594,Wioska+barbarzy%C5%84ska+17,344,334,698757439,3190,0 +56595,Wioska+barbarzy%C5%84ska,316,366,0,208,0 +56596,P%C3%B3%C5%82nocny+Bagdad,631,315,8847546,2994,0 +56597,Wioska+pebloss,317,639,849111911,3975,0 +56598,K67+24,708,611,698867483,2199,0 +56599,079.+Wioska+barbarzy%C5%84ska,732,459,7494497,3900,0 +56600,%3F%3F%3F%3F,491,263,698489071,5551,9 +56601,Wioska+barbarzy%C5%84ska,398,295,698231772,2422,0 +56602,Wioska+barbarzy%C5%84ska,368,695,0,368,0 +56603,D024,563,280,699299123,3652,0 +56605,Z%C5%82oty+%C5%9Awit,592,291,699883079,1236,0 +56606,Wioska+ZiomekWafla,459,273,849090573,4262,0 +56607,Wioska+barbarzy%C5%84ska,271,494,699662232,669,0 +56608,Wioska+kowala,726,548,849106923,4362,0 +56609,Osada+koczownik%C3%B3w,386,706,849014922,7932,8 +56610,New+WorldA,269,547,849084005,1381,0 +56611,Wioska+barbarzy%C5%84ska,542,728,699878511,8179,0 +56612,Ave+Why%21,521,729,699121671,554,0 +56613,E03,305,384,6301789,528,0 +56614,020+-+Budowanko%21,478,727,7540891,5513,0 +56615,Wioska+5,294,402,699763225,266,0 +56616,Nowa+67,712,595,698702991,2345,0 +56617,%23033,559,273,849064614,1616,0 +56618,Wioska+018,670,346,7226782,1344,4 +56619,Jask%C3%B3%C5%82cze+Gniazdo,721,415,9095581,5281,0 +56620,3lobit,482,366,1581890,847,0 +56621,Wioska+barbarzy%C5%84ska,633,685,849096354,1051,0 +56622,macqu,582,278,849112029,4337,0 +56623,Wioska+Paxon,580,277,849112033,4031,0 +56624,Wioska+barbarzy%C5%84ska,350,677,699704542,1766,0 +56625,K42+ADAMUS+020,275,429,6212605,3695,0 +56626,wwwb,598,708,699828685,2153,0 +56627,Wioska+barbarzy%C5%84ska,526,734,699878511,3890,0 +56628,Etitek+6,728,496,848999448,778,0 +56629,Gnoj%C3%B3wa,711,411,848902592,4198,1 +56630,Gdynia,447,269,699278528,1941,0 +56631,009.+Osada+koczownik%C3%B3w,697,382,2873154,5810,1 +56632,bagienko_05,574,279,849093353,2698,0 +56633,%230223+barbarzy%C5%84ska,661,334,1238300,2921,0 +56634,New+World,413,715,698152377,3320,0 +56635,Wioska+barbarzy%C5%84ska,391,290,6186491,1821,0 +56636,0000035Z,280,556,849089881,2139,0 +56637,P%C3%B3%C5%82nocny+Bagdad,629,302,8847546,6621,0 +56638,Nowy+0002,294,603,849096972,1155,3 +56639,0000033Z,277,556,849089881,2841,0 +56640,Avanti%21,271,489,698625834,5095,0 +56641,Wioska+Lord+kongo,733,481,8877886,7132,0 +56642,%24012%24+Volcano,302,619,699550876,1170,0 +56643,Wioska+herqers,338,333,849112094,3431,0 +56644,Wioska+Rozbi%C3%B3rka,669,664,699040431,80,0 +56645,New+World,425,713,698152377,7124,0 +56646,Sony+911,671,662,1415009,3170,0 +56647,Na+SsSskraju,278,572,1536625,699,0 +56648,Karl%C3%B3wek,724,557,849111792,7165,0 +56649,Wioska+barbarzy%C5%84ska,389,707,2105150,3177,0 +56651,Wioska+barbarzy%C5%84ska,646,684,848987051,5628,0 +56652,sony911,675,645,1415009,1834,0 +56653,061KP,491,275,849063849,1895,0 +56654,Wioska+barbarzy%C5%84ska,326,658,0,329,0 +56655,Wioska+barbarzy%C5%84ska,374,305,699191464,758,0 +56656,004,448,272,699562874,4657,4 +56657,AGITER,339,665,849108762,400,0 +56658,Wioska+barbarzy%C5%84ska,363,314,3484132,3520,0 +56659,%23031,556,273,849064614,1761,0 +56660,Wioska+barbarzy%C5%84ska,322,653,0,341,0 +56661,Nowe+IMPERIUM+6,617,701,698353083,5485,0 +56662,Wioska+barbarzy%C5%84ska,390,706,849014922,1660,0 +56663,K67+22,709,606,698867483,3232,0 +56664,MojeDnoToWaszSzczyt,481,267,9299539,5442,0 +56665,SZczytno,526,731,698934729,932,0 +56666,Wioska+barbarzy%C5%84ska,640,683,848987051,4870,0 +56667,Wioska+Puchencjusz+I+Wspania%C5%82y,735,472,849107188,2008,0 +56669,04Wioska+barbarzy%C5%84ska,358,676,699704542,4485,0 +56670,Wioska+barbarzy%C5%84ska,264,510,0,267,0 +56671,035+-+Budowanko%21,476,732,7540891,5513,0 +56672,%23134%23,664,667,692803,2016,0 +56673,MojeDnoToWaszSzczyt,490,271,9299539,4449,0 +56674,Wioska+barbarzy%C5%84ska,387,702,0,2770,0 +56675,Wioska+barbarzy%C5%84ska,269,455,699213622,1263,0 +56676,MojeDnoToWaszSzczyt,482,269,9299539,5070,0 +56677,WZ14,696,613,7142659,1081,0 +56678,Wioska+barbarzy%C5%84ska,731,487,698191218,2035,0 +56679,Wioska+barbarzy%C5%84ska,705,390,699598425,1951,0 +56680,Taka.,484,730,848999671,2052,0 +56681,Wioska+barbarzy%C5%84ska,722,450,849095599,1259,0 +56682,Wioska+Zawodnik+4,565,725,698655859,2347,0 +56683,New+World,422,713,698152377,7762,0 +56684,kww08,723,541,8976313,1194,0 +56685,WZ12,695,613,7142659,1721,0 +56686,Wioska+barbarzy%C5%84ska,670,664,699277039,80,0 +56687,Wioska+barbarzy%C5%84ska,629,695,6818593,1083,0 +56688,066,726,510,699413040,2302,0 +56689,J%2A%2A%2A%2A+P%2A%2A,489,732,849096435,1315,0 +56690,Wioska+barbarzy%C5%84ska,721,578,2453888,4389,0 +56691,0112,704,381,698416970,963,0 +56692,Wioska+020,672,349,7226782,967,0 +56693,Alamo6,716,577,2723244,1110,0 +56694,108+Wioska+barbarzy%C5%84ska,584,280,699854484,761,0 +56695,Wioska+barbarzy%C5%84ska,585,279,849112033,1075,0 +56696,Wioska+barbarzy%C5%84ska,715,406,699598425,3020,0 +56697,MojeDnoToWaszSzczyt,495,265,9299539,5840,0 +56699,Wioska+barbarzy%C5%84ska,344,322,698160606,3437,0 +56700,Wioska+Lord+Jack+Carver,273,535,9231765,3949,0 +56701,Wioska+barbarzy%C5%84ska,734,484,698191218,1802,0 +56702,Wioska+barbarzy%C5%84ska,384,701,849014922,1375,0 +56703,Tytanik,370,307,849068108,1336,0 +56704,Sony+911,670,661,1415009,3200,0 +56705,094+Wioska+barbarzy%C5%84ska,539,270,699854484,4635,0 +56706,08+Wioska,637,319,6517826,842,0 +56707,003.,700,382,7557683,781,0 +56708,-21-,580,717,849032414,4295,0 +56710,wioska+002,687,630,6472706,3076,0 +56711,C0301,272,528,8841266,3496,0 +56712,Wioska+barbarzy%C5%84ska,335,660,6910361,898,0 +56713,Wioska+barbarzy%C5%84ska,424,287,849102150,410,0 +56714,KONFA+TO+MARKA%2C+NARKA,290,409,698152377,1801,0 +56715,zzz02,703,605,3986807,993,0 +56716,WB03,297,380,356642,4175,0 +56717,Wioska+barbarzy%C5%84ska,653,679,848987051,5898,0 +56718,MojeDnoToWaszSzczyt,492,264,9299539,4970,0 +56719,037+-+Budowanko%21,480,731,7540891,5513,0 +56720,Rozlewnia+browaru+%C5%BBuberka,445,269,849110622,2157,0 +56721,130.Stradi,395,294,698365960,2831,0 +56722,001,724,584,3409028,2796,0 +56723,KONFA+TO+MARKA%2C+NARKA,272,456,698152377,2335,0 +56724,Wioska+barbarzy%C5%84ska,632,684,8627359,4224,0 +56725,No+to+jedziemy+%3AD,472,735,699333701,1540,0 +56726,Sony+911,665,655,1415009,1454,0 +56727,181%7E%7E%7E%7E+wiewioreczkavivat,446,706,7365299,3767,0 +56728,Wioska+barbarzy%C5%84ska,628,694,6818593,1612,0 +56729,ble,622,700,848909464,4417,0 +56730,Wioska+barbarzy%C5%84ska,604,299,699098531,1977,0 +56731,%24011%24+Arm+Town,302,622,699550876,1235,0 +56732,MojeDnoToWaszSzczyt,476,270,9299539,5429,0 +56733,KONFA+TO+MARKA%2C+NARKA,274,451,698152377,4654,0 +56734,%23017,557,275,849064614,2972,0 +56735,Wioska+Isabella,373,546,698519133,2197,0 +56736,001,366,684,281866,516,0 +56737,Wioska+Szyszka77,333,522,8004076,4840,0 +56738,%5B205%5D,721,419,8000875,1599,0 +56739,Wioska+barbarzy%C5%84ska,721,555,1601917,1079,0 +56740,%3DSAwars%3D06%3D,574,276,849106420,2180,0 +56742,Bajka,399,713,849111819,3177,0 +56743,Wioska+barbarzy%C5%84ska,596,714,699828685,1442,0 +56744,Wioska+Your+Nightmare,565,275,8766033,46,0 +56745,%3F%3F%3F%3F,463,271,698489071,3860,0 +56746,21+Pszczo%C5%82y+i+Wr%C3%B3ble,725,447,849101845,2255,0 +56747,001.,699,377,7557683,5080,0 +56748,Wioska+barbarzy%C5%84ska,590,281,849010386,755,0 +56749,PPF-34,576,279,1424656,1079,0 +56750,Wioska+z+Pracza+6,308,629,8916982,926,0 +56751,MojeDnoToWaszSzczyt,485,264,9299539,5681,0 +56752,Xxx,430,586,225023,988,0 +56753,KUKA+VII,280,433,6127190,847,0 +56754,Wioska+barbarzy%C5%84ska,440,584,849028088,2446,0 +56755,Wioska+barbarzy%C5%84ska,735,526,698191218,2036,0 +56757,Wioska+barbarzy%C5%84ska,271,463,699213622,2525,0 +56758,077+obrze%C5%BCa,276,560,699510259,1532,0 +56759,MojeDnoToWaszSzczyt,487,268,9299539,3532,0 +56760,Wioska+Luftwafel,626,305,848922958,4604,0 +56761,%23023,546,268,849064614,2365,0 +56762,North+K25,554,271,699146580,2680,9 +56763,%5B018%5D,461,728,9094538,2921,0 +56764,Piek%C5%82o+to+inni,650,326,848956765,3164,0 +56765,106.+Wioska+barbarzy%C5%84ska,689,455,7494497,538,0 +56766,Piek%C5%82o+to+inni,650,323,848956765,3793,0 +56767,181,679,651,8922870,774,0 +56768,Wiadro23,681,641,8677963,498,0 +56769,PiotrekPazzi,326,436,289542,500,0 +56770,Wioska+barbarzy%C5%84ska,727,484,6510480,792,0 +56771,premka+nie+tu,567,718,6299408,3200,0 +56772,095+Wioska+barbarzy%C5%84ska,541,267,699854484,4297,0 +56773,New+World,420,721,698152377,7230,2 +56774,Wioska+Aneta517,373,544,2591538,426,0 +56775,Nowe+IMPERIUM+13,623,698,698353083,5672,0 +56776,052.+Witek,444,706,848928624,845,0 +56777,Wioska+barbarzy%C5%84ska,369,309,849068108,1091,0 +56778,%5B206%5D,721,418,8000875,1503,0 +56780,Flap,598,284,699098531,4152,0 +56781,Rosnocha%C5%82,560,724,849112312,2357,0 +56782,MojeDnoToWaszSzczyt,463,267,9299539,4258,0 +56783,Wioska+barbarzy%C5%84ska,403,291,698231772,1500,0 +56784,Wioska+barbarzy%C5%84ska,729,483,698191218,1809,0 +56785,Wioska+barbarzy%C5%84ska,390,710,849014922,3366,0 +56786,Wioska+barbarzy%C5%84ska,667,337,699072129,2849,0 +56787,Wioska+martin1181,354,321,7287342,4885,0 +56788,Wioska+barbarzy%C5%84ska,381,308,698160606,2826,0 +56789,Brat447,364,515,699262350,2772,0 +56790,074+obrze%C5%BCa,276,559,699510259,1797,0 +56791,Wioska+peres5130,309,366,849019785,761,0 +56792,Wioska+barbarzy%C5%84ska,462,274,849017820,1322,0 +56793,002-81,283,595,699396429,1593,0 +56794,007,294,592,698663855,4787,0 +56795,Wioska+barbarzy%C5%84ska,300,619,0,40,0 +56796,Krasnolandia,525,315,3377827,7485,0 +56797,Wioska+superpuszka,730,556,6677893,276,0 +56798,P%C3%B3%C5%82nocny+Bagdad,619,297,8847546,6456,0 +56799,Wioska+barbarzy%C5%84ska,665,338,699072129,3461,0 +56800,Wioska+barbarzy%C5%84ska,283,590,698663855,398,0 +56801,Sony+911,681,647,1415009,1465,0 +56802,Wioska+HORTON,514,731,6035425,96,0 +56803,K42+ADAMUS+010,285,430,6212605,7504,0 +56804,New+World,424,724,698152377,4156,0 +56805,KONFA+TO+MARKA%2C+NARKA,273,442,698152377,4005,0 +56806,%23014,547,272,849064614,4289,0 +56807,096+Wioska+barbarzy%C5%84ska,540,270,699854484,4632,0 +56808,001,704,410,2837080,1959,0 +56809,057+Wioska+barbarzy%C5%84ska,346,666,6354098,3966,0 +56810,Mordex,706,400,7023110,1326,0 +56811,Wioska+barbarzy%C5%84ska,398,704,849014922,5190,0 +56813,%230065,572,721,1536231,2644,0 +56814,-002-,730,491,7418168,4335,0 +56815,068+Osada+koczownik%C3%B3w,543,271,699854484,8900,9 +56816,Wioska+Bociek80,669,349,545152,572,0 +56817,%23299+C,515,731,9037756,10971,3 +56818,Wioska,604,295,8698728,3372,0 +56819,Wioska+barbarzy%C5%84ska,631,697,699372829,536,0 +56820,%3DSILDEN%3D,481,731,849112368,2274,0 +56821,Osada+koczownik%C3%B3w,379,702,849014922,5132,6 +56822,0000037Z,276,555,849089881,2087,0 +56823,Wioska+barbarzy%C5%84ska,733,524,698191218,2073,0 +56824,Wioska+barbarzy%C5%84ska,361,316,3484132,3735,0 +56825,Wioska+dadan2,653,329,849086357,2741,0 +56826,067,591,560,699373599,5225,0 +56827,Wioska+barbarzy%C5%84ska+08,344,333,698757439,6989,0 +56828,Wioska+monkeyy,450,724,848923754,55,0 +56829,Wioska+barbarzy%C5%84ska,391,701,849014922,1629,0 +56830,Wioska+b+010,408,283,6343784,274,0 +56831,Wioska+barbarzy%C5%84ska,626,689,6818593,1857,0 +56832,Wioska+barbarzy%C5%84ska,714,415,0,1614,0 +56833,O109,317,637,272173,7328,0 +56834,Wioska+barbarzy%C5%84ska,399,708,849014922,1660,0 +56835,R+056,491,734,699195358,1660,0 +56837,P%C3%B3%C5%82nocny+Bagdad,633,312,8847546,2950,0 +56838,Wioska+barbarzy%C5%84ska,302,617,698167138,446,0 +56839,Wioska+barbarzy%C5%84ska,535,733,699878511,5590,0 +56840,A04,423,275,849038597,1113,0 +56841,HANDEN,294,399,7259690,717,0 +56842,Wioska+barbarzy%C5%84ska,358,322,8772425,1037,0 +56843,WB02,297,383,356642,5004,0 +56844,Wioska+LORDHerkules13,540,731,699522257,4379,0 +56845,Wioska+barbarzy%C5%84ska,689,642,698786826,201,0 +56846,KONFA+TO+MARKA%2C+NARKA,286,407,698152377,1905,0 +56847,Wioska+Lisq12,301,381,849111408,3200,0 +56848,01+Wioska+ignacy,727,434,8785003,5431,0 +56849,K66+%C5%BBelazo,698,626,698867483,2493,3 +56850,Wioska+%C5%9AMIERCI,719,590,849096102,1954,0 +56851,C.061,729,479,9188016,2781,0 +56852,%23498+F,442,723,9037756,703,0 +56853,Wioska+3,267,511,849114265,341,0 +56854,Wioska+barbarzy%C5%84ska,541,723,3560281,987,0 +56856,Wioska+barbarzy%C5%84ska,303,369,0,641,0 +56857,001,276,465,698511920,2716,0 +56858,%23016,557,276,849064614,2689,0 +56859,0664,585,721,698659980,5118,9 +56860,%24009%24+Paka%C5%BCu,303,622,699550876,3112,0 +56861,009,393,290,699694284,5511,0 +56862,KWB5,479,735,9003698,2639,0 +56863,Wioska+barbarzy%C5%84ska,318,357,0,414,0 +56864,Sony+911,677,650,1415009,498,0 +56865,Wioska+barbarzy%C5%84ska,641,679,848987051,4939,0 +56866,Wioska+z+Pracza+7,308,628,8916982,527,0 +56867,Wioska+barbarzy%C5%84ska,640,679,848987051,4657,0 +56868,B020,535,266,699485250,2746,0 +56869,%5B0193%5D,274,497,8630972,6017,0 +56870,Avanti%21,269,485,698625834,2262,0 +56871,Wioska+gall5,267,472,699598396,1006,0 +56872,Osada+koczownik%C3%B3w,537,733,698704189,7199,1 +56873,Piek%C5%82o+to+inni,661,332,848956765,2322,0 +56874,west,296,378,849089601,6517,0 +56875,81+skorbyk.,549,278,8015955,2337,0 +56876,B023,629,306,8740199,2082,0 +56877,Wioska+Miltonia,671,340,849088414,146,0 +56878,Bagno+35,474,728,848883684,4463,0 +56879,Wioska+barbarzy%C5%84ska,529,730,0,614,0 +56880,Wioska+brodatykebab,633,689,849112443,26,0 +56881,%5B0264%5D,270,491,8630972,4179,0 +56882,%230081,580,714,1536231,2180,0 +56883,Wioska+barbarzy%C5%84ska,728,485,6510480,768,0 +56884,117.Stradi,421,287,698365960,5261,0 +56885,050,693,373,6160655,525,0 +56887,Wioska+barbarzy%C5%84ska,690,375,698702991,2304,0 +56888,Pf+Konfederacja,493,497,848915730,3773,0 +56889,%230061,578,713,1536231,2722,0 +56890,--055--,588,284,542253,431,0 +56891,PPF-05,507,264,1424656,3982,6 +56892,Wioska+barbarzy%C5%84ska,724,460,699347951,709,0 +56893,New+World,412,709,698152377,8309,0 +56894,Wioska+Lorda+Posejdona,270,519,699878443,387,0 +56895,Wioska+barbarzy%C5%84ska+10,343,330,698757439,6297,0 +56897,Wioska+barbarzy%C5%84ska,731,483,698191218,1729,0 +56898,%23128%23,656,676,692803,2827,0 +56899,KONFA+TO+MARKA%2C+NARKA,269,446,698152377,4707,0 +56900,Wioska+Vebo,727,508,848969313,4427,0 +56901,No+to+jedziemy+%3AD,468,732,699333701,1450,0 +56902,P%C3%B3%C5%82nocny+Bagdad,619,300,8847546,7851,0 +56903,044+-+Budowanko%21,504,728,7540891,5053,0 +56904,Wioska+barbarzy%C5%84ska,314,643,8877156,2604,0 +56905,%5B0239%5D+xxx,271,498,8630972,4472,0 +56906,%23024,554,277,849064614,2216,0 +56907,K67+12,700,622,698867483,3449,0 +56908,CAP001,352,320,698661697,266,0 +56909,0000032Z,278,555,849089881,4614,0 +56910,Wioska+1,668,338,7346797,3043,0 +56911,Zak%C5%82ad+1,264,474,848977600,592,0 +56912,Wioska+barbarzy%C5%84ska,412,544,699846892,3385,0 +56913,Wioska+barbarzy%C5%84ska,324,657,8175236,570,0 +56914,Wioska+ligedman92,713,420,698676788,1792,0 +56915,Wioska+barbarzy%C5%84ska,676,656,1415009,2302,0 +56916,Flap,601,286,699098531,3319,0 +56917,Wioska+w00han,658,326,849111332,3959,0 +56918,C006,460,732,8954402,1629,0 +56919,Wioska+barbarzy%C5%84ska,724,425,699628084,845,0 +56920,Wioska+barbarzy%C5%84ska,324,358,0,360,0 +56921,FP051,446,731,699605333,3119,0 +56922,Wioska+barbarzy%C5%84ska,320,638,698908184,5115,0 +56923,04Wioska+barbarzy%C5%84ska,363,686,699704542,3097,0 +56924,Cisza,278,581,698769107,360,0 +56925,048.+Wioska+barbarzy%C5%84ska,678,354,2873154,1634,0 +56926,Wioska+barbarzy%C5%84ska,736,483,698191218,1808,0 +56927,Allara,713,598,8994199,1838,0 +56928,D018,563,278,699299123,2283,0 +56929,wioska+XX,678,347,9314079,1684,0 +56930,mc01,706,388,848939131,3351,0 +56931,Sony+911,677,653,1415009,3650,0 +56932,124.Stradi,451,273,698365960,1839,0 +56933,NOT%3F,312,356,9236866,3695,0 +56934,ASony+911,687,645,1415009,6832,0 +56935,%5B0271%5D,265,489,8630972,4063,0 +56936,Wioska+barbarzy%C5%84ska,397,708,849014922,1535,0 +56937,Wioska+barbarzy%C5%84ska,265,502,699846892,564,0 +56938,Wioska+barbarzy%C5%84ska,680,645,698191218,1116,0 +56939,%23018,556,274,849064614,2145,0 +56940,Wioska+alanbebz,576,283,698938264,894,0 +56941,New+World,422,716,698152377,3951,0 +56942,P%C3%B3%C5%82nocny+Bagdad,620,301,8847546,6910,0 +56943,015.+Osada+koczownik%C3%B3w,696,379,2873154,6042,5 +56944,sp%C3%B3%C5%82ka+z+o.o.,286,424,1700145,1969,0 +56945,New+World,432,720,698152377,4072,0 +56946,Y+Hy+y+Hy+JESTEM+HORY,287,600,699774694,3139,0 +56947,Wioska+003,687,635,6472706,2435,0 +56948,Z%C5%82oty+%C5%9Awit,587,289,699883079,4076,0 +56949,KERTO+02,709,605,7474527,743,0 +56950,034+KTW,729,443,848883237,3942,0 +56951,032.+Gloria+Victis,282,572,848886973,4436,0 +56952,Komaros1992,628,309,699679662,6007,0 +56953,Wsch%C3%B3d+002,699,619,698562644,2495,0 +56954,Wioska+barbarzy%C5%84ska,415,296,849089654,567,0 +56955,Wioska+barbarzy%C5%84ska,733,540,17714,914,0 +56956,Wioska+DAJWIDOS16,319,351,848913252,2533,0 +56957,Wioska+barbarzy%C5%84ska,400,295,698231772,3001,0 +56958,E03,722,548,848995478,3363,4 +56959,Wioska+NewBetterSatan,309,466,1021709,1609,0 +56960,Wioska+BANAN+22,731,523,2357773,5955,0 +56961,Wioska+barbarzy%C5%84ska,536,724,699878511,3443,0 +56962,Wioska+anatol2619,264,476,849106828,463,0 +56963,SirNiuchniuch,447,270,849109010,4109,0 +56964,Wioska+barbarzy%C5%84ska,374,310,3484132,4591,0 +56965,CastAway+%21040,711,596,9314079,2440,0 +56966,%5B842%5D+Odludzie,727,431,848985692,3559,0 +56967,AZGARD,295,608,6651072,3751,0 +56968,017+%7C+North,381,693,699511295,2675,0 +56969,Wioska+barbarzy%C5%84ska,353,683,0,205,0 +56970,Wioska+barbarzy%C5%84ska,452,273,699191455,904,0 +56971,Melogo,699,374,849112369,4362,0 +56972,11.+%C5%9Awiat%C5%82a+na+Ratajach,459,729,849092769,5704,8 +56973,Wioska+barbarzy%C5%84ska,716,420,699722599,2745,0 +56974,PPF-32,570,274,1424656,1090,0 +56975,-34-,575,719,849032414,1506,0 +56976,Wioska+barbarzy%C5%84ska,363,687,0,257,0 +56977,XDX,605,290,699098531,4028,0 +56978,PIROTECHNIK+013,337,338,849101083,146,0 +56980,MojeDnoToWaszSzczyt,481,263,9299539,4112,0 +56981,614%7C415+Wioska+barbarzy%C5%84ska,614,415,6822957,2433,0 +56982,Avanti%21,267,480,698625834,2175,0 +56983,Chwaliszew,692,634,6472706,3352,0 +56984,Wioska+barbarzy%C5%84ska,364,309,3484132,4397,0 +56985,Twierdza+%28MzM.%29,594,518,0,4017,30 +56986,Wio,445,666,698152498,2453,0 +56987,Wioska+Spekulant951,334,663,849038195,170,0 +56988,K67+18,711,607,698867483,2515,0 +56989,Wioska+barbarzy%C5%84ska,300,627,2289134,333,0 +56990,FP042,462,732,699605333,3973,0 +56991,Adijen+2,348,670,699688180,3194,0 +56992,P%C3%B3%C5%82nocny+Bagdad,616,297,8847546,6947,0 +56993,Avanti%21,270,481,698625834,4867,3 +56995,Nowe+IMPERIUM+10,620,702,698353083,5495,0 +56996,...Just+like+that,461,478,699723284,3116,0 +56997,Wioska+barbarzy%C5%84ska,314,363,848945529,455,0 +56998,087+obrze%C5%BCa,271,559,699510259,863,0 +56999,New+World,422,725,698152377,8250,0 +57000,Grudziadz,458,269,699278528,408,0 +57001,Wioska+barbarzy%C5%84ska,725,563,698666810,1799,0 +57002,Kapitol_28,509,729,606407,2055,0 +57003,Kiedy%C5%9B+Wielki+Wojownik,327,352,8632462,1157,0 +57004,t029,670,343,2262902,379,0 +57005,215...NORTH,416,283,6920960,2101,0 +57006,New+WorldA,265,523,849084005,898,0 +57007,Wioska+Karolinka6868,576,717,849094355,26,0 +57008,Sqn,713,395,699598425,1527,0 +57009,7.+Vermax,279,580,849089499,1008,0 +57010,Wioska+Adijen,348,676,699688180,7357,0 +57011,Zaplecze+Barba+047,342,328,699796330,1557,0 +57012,Wioska+barbarzy%C5%84ska,401,714,849014922,2363,0 +57013,0128,703,380,698416970,741,0 +57014,Wioska+barbarzy%C5%84ska,355,326,8772425,1566,0 +57015,FP056,444,730,699605333,6782,0 +57016,Wioska+barbarzy%C5%84ska,285,398,0,387,0 +57017,%230258+barbarzy%C5%84ska,445,277,1238300,869,0 +57018,011+R2+D2,275,543,197581,4510,0 +57019,017,338,342,849101205,403,0 +57020,Wioska+dla+mklo12,521,373,8678008,9103,0 +57021,FP043,465,732,699605333,4028,0 +57022,045+-+Budowanko%21,538,728,7540891,5513,0 +57023,078.+Wioska+barbarzy%C5%84ska,734,460,7494497,4319,0 +57024,024+-+Budowanko%21,486,730,7540891,4892,0 +57025,220+%7C,724,423,8000875,866,0 +57026,TikTok,487,265,849051731,3288,0 +57027,Wioska+knoxville5,444,280,849110747,26,0 +57028,znam+ostropesta,461,733,699777372,3255,0 +57029,001-181,468,273,2297431,722,0 +57030,052,665,670,2323859,972,0 +57031,%3D%7C43%7C%3D,689,374,6160655,2077,0 +57032,Wioska+barbarzy%C5%84ska,726,489,699573053,1188,0 +57033,%230251+barbarzy%C5%84ska,443,278,1238300,720,0 +57034,Z%C5%82oty+%C5%9Awit,594,293,699883079,4960,0 +57035,Wioska+barbarzy%C5%84ska,461,276,699191449,1448,0 +57036,--052--,585,285,542253,1140,0 +57037,Wioska+barbarzy%C5%84ska,318,649,8175236,465,0 +57038,%3F%3F%3F%3F,496,273,698489071,4518,0 +57039,Wioska+barbarzy%C5%84ska,278,585,699396429,1086,0 +57040,Hajn%C3%B3wka,726,545,698548451,3060,0 +57041,Wioska+113,686,648,848971079,2000,0 +57042,Lord+Lord+Franek+.%23189,692,360,698420691,2521,0 +57043,P%C3%B3%C5%82nocny+Bagdad,625,303,8847546,6946,3 +57044,Wioska+patrix01,727,570,849092978,3698,0 +57045,001,447,706,849080197,2606,0 +57046,Spajk,680,349,7973893,1085,0 +57048,087.+Wioska+barbarzy%C5%84ska,733,474,7494497,3051,0 +57049,Alamo7,717,576,2723244,936,0 +57050,Wioska+BabciaZosia,267,537,849110781,59,0 +57051,Wioska+barbarzy%C5%84ska,646,316,0,330,0 +57052,Wioska+barbarzy%C5%84ska,733,502,6510480,1189,0 +57053,C0302,274,550,8841266,3420,0 +57054,New+World,432,724,698152377,7310,0 +57055,181,399,293,699829975,26,0 +57056,HAREDON,692,364,3957237,2510,0 +57057,40+barbarzy%C5%84ska+3A,269,451,849018442,1879,0 +57058,Wioska+barbarzy%C5%84ska,270,476,849095814,1683,0 +57059,Z%C5%82oty+%C5%9Awit,591,291,699883079,1249,2 +57060,K67+13,702,608,698867483,3455,0 +57061,MojeDnoToWaszSzczyt,466,266,9299539,5290,0 +57062,Belmondo77,642,483,699058253,1584,0 +57063,Wioska+barbarzy%C5%84ska,520,727,769293,4852,0 +57064,Wioska+Stresik,656,669,699820572,129,0 +57065,Wioska+barbarzy%C5%84ska,333,332,699304554,1297,0 +57066,Wioska+Bo%C5%BCa,279,417,699854312,4596,0 +57067,O106,303,632,2289134,8476,0 +57068,Wioska+barbarzy%C5%84ska,634,307,7139853,1069,0 +57069,Wioska+barbarzy%C5%84ska,731,484,698191218,1868,0 +57070,Crezys,643,478,699057459,1525,0 +57071,yuyuyuyu,666,342,7646152,2044,0 +57072,0001,525,726,848987695,3321,0 +57073,Kurnik,450,721,699603116,7183,0 +57074,Wioska+barbarzy%C5%84ska,587,717,848995242,463,0 +57075,%5B0281%5D,265,488,8630972,3723,0 +57076,Tomekrol+6,705,598,849096334,3940,0 +57077,P%C3%B3%C5%82nocny+Bagdad,628,301,8847546,3850,0 +57078,Wioska+Aga22011993,265,465,849098592,327,0 +57079,0000036Z,278,556,849089881,2224,0 +57080,Wioska+barbarzy%C5%84ska,607,298,699098531,1660,0 +57081,Wioska+barbarzy%C5%84ska,394,707,849014922,1386,0 +57082,Sony+911,682,648,1415009,1547,0 +57083,Domek+Miniuka+03,479,726,699373225,2979,0 +57084,Wioska+ladio,365,311,698472522,225,0 +57085,Wioska+barbarzy%C5%84ska,549,727,8015775,575,0 +57086,No.0,328,338,849106612,4001,0 +57087,New+WorldA,269,511,849084005,627,0 +57088,Monia18,651,477,698776998,1772,0 +57089,245,369,303,7271812,223,0 +57090,wioska+XX,683,352,9314079,1387,0 +57092,Wioska+barbarzy%C5%84ska,711,601,8323711,1502,0 +57093,Wioska+XVIII,586,345,698200480,1509,0 +57094,Wioska+barbarzy%C5%84ska,270,506,699425709,759,0 +57095,Wioska+Gosia99,732,463,849075298,4633,0 +57096,Wioska+barbarzy%C5%84ska,669,334,699072129,3003,0 +57097,Tycia+%2A,492,733,698748891,1702,0 +57098,North+110,597,292,849064752,657,0 +57099,Wioska+barbarzy%C5%84ska,331,333,699304554,2819,0 +57100,Wioska+barbarzy%C5%84ska,704,388,699598425,2016,0 +57101,North+079,533,267,849064752,4099,0 +57102,o012,611,698,699189792,5821,0 +57104,K67+09,701,619,698867483,3245,0 +57105,093.+Wioska+barbarzy%C5%84ska,730,471,7494497,3083,0 +57106,Piek%C5%82o+to+inni,654,324,848956765,3222,0 +57107,%3D%7C39%7C%3D,692,376,9101574,2650,5 +57108,Wioska+Nevada,267,544,699693687,3411,0 +57109,New+WorldA,268,541,849084005,1145,0 +57110,Wioska+sznur,478,273,699832431,351,0 +57111,%5B0240%5D,272,497,8630972,4276,0 +57112,Janapola01,333,338,698806018,816,0 +57114,Wioska+barbarzy%C5%84ska,395,708,849014922,2441,0 +57115,MojeDnoToWaszSzczyt,501,270,9299539,5329,0 +57116,Osada+koczownik%C3%B3w,711,599,8323711,1713,5 +57117,WZ13,701,607,7142659,1524,0 +57118,Wioska+barbarzy%C5%84ska,640,311,3600737,996,0 +57119,Avanti%21,268,466,698625834,1306,0 +57120,Piek%C5%82o+to+inni,654,333,848956765,3387,0 +57121,%5B0241%5D,272,504,8630972,4032,0 +57122,Wioska+barbarzy%C5%84ska,331,656,6910361,788,0 +57123,Wioska+barbarzy%C5%84ska,311,366,699660539,1111,0 +57124,%3F%3F%3F%3F,493,266,698489071,4700,0 +57125,Wioska+barbarzy%C5%84ska,561,720,699828442,3683,0 +57126,%3D123%3D+Wioska+barbarzy%C5%84ska,726,568,3781794,1500,0 +57127,-003-+Wioska+barbarzy%C5%84ska,684,351,849095068,1327,0 +57128,Sony+911,680,653,1415009,1842,0 +57129,Wioska+bambinos66,716,416,8325700,6911,0 +57130,Piek%C5%82o+to+inni,657,323,848956765,1877,0 +57131,Wioska+barbarzy%C5%84ska,335,331,699304554,361,0 +57132,Wioska+barbarzy%C5%84ska,403,294,698231772,2599,0 +57133,K67+15,705,619,698867483,2541,0 +57134,Wioska+barbarzy%C5%84ska,655,320,698895940,3279,0 +57135,Wioska+barbarzy%C5%84ska,724,560,698666810,5279,0 +57136,komandos,673,655,7976264,3528,0 +57137,Harem,627,311,848882577,5847,0 +57138,Wioska+barbarzy%C5%84ska,674,346,7973893,3271,0 +57139,CastAway+%21035,716,582,9314079,2145,0 +57140,04Wioska+barbarzy%C5%84ska,354,683,699704542,3127,0 +57141,Wioska+Harmozabal,676,343,1675628,53,0 +57142,wuju1,381,702,849101224,925,0 +57143,babababab,668,343,7646152,1046,0 +57144,18+Spedd+Box,729,447,849101845,4971,0 +57145,Wioska+barbarzy%C5%84ska,267,464,699213622,937,0 +57146,Wioska+MARCINEK+GRO%C5%BBNY,726,477,849069010,270,0 +57147,%C5%B9rebi%C4%99,572,281,849080011,737,0 +57148,%3DSAwars%3D07%3D,566,275,849106420,1490,0 +57149,Wioska+barbarzy%C5%84ska,367,694,3933666,730,0 +57150,Wioska+barbarzy%C5%84ska,602,295,699098531,2428,0 +57151,Betka,669,656,849048856,766,0 +57152,Wioska+warkoczynka,610,607,698580310,844,0 +57153,043+KTW,728,442,848883237,850,0 +57154,Wioska+barbarzy%C5%84ska,378,303,698160606,2048,0 +57155,MojeDnoToWaszSzczyt,503,269,9299539,5897,0 +57156,D013,564,281,699299123,3348,9 +57157,Wioska+touchmeboy,716,575,849043776,430,0 +57158,Wioska+barbarzy%C5%84ska,401,706,849014922,2629,0 +57159,Wioska+Quattro+only,301,628,849112435,6050,0 +57160,Wioska+barbarzy%C5%84ska,640,688,848987051,4200,0 +57161,New+World,418,723,698152377,4350,0 +57162,Wioska+greenapple,727,536,698604229,26,0 +57163,backstage+4,706,399,849099696,2651,0 +57164,Na+SsSskraju,276,570,1536625,5647,8 +57165,Wioska+PACYFICA,520,736,1450352,590,0 +57166,MojeDnoToWaszSzczyt,478,263,9299539,5442,0 +57167,New+World,427,720,698152377,3624,0 +57168,001,299,614,849100796,4943,0 +57169,Wioska+barbarzy%C5%84ska,537,732,699878511,3333,0 +57170,Osada+koczownik%C3%B3w,737,518,849082848,4607,7 +57171,nowa+6,631,689,699372829,477,0 +57172,moczary,280,434,699880701,889,0 +57173,Wioska+daro1974,400,292,3773216,222,0 +57174,Spy,682,352,7973893,951,0 +57175,%C5%81atwy+cel,380,303,699419851,6135,0 +57176,015+%7C+North,371,687,699511295,3000,0 +57177,038+-+Budowanko%21,485,733,7540891,5053,0 +57178,Nowa+Baza+7,615,697,698353083,3537,0 +57179,New+World,425,719,698152377,6428,7 +57180,Wioska+barbarzy%C5%84ska,716,408,699598425,3149,0 +57181,Ks+Konfederacja,692,362,848915730,5140,0 +57182,Wioska+SiwyStaruszek,516,269,848937780,1308,0 +57183,013+%7C+North,378,695,699511295,2843,0 +57184,Wioska+Pimpu%C5%9B,459,734,849057655,52,0 +57185,Wioska+barbarzy%C5%84ska,274,466,699213622,2924,0 +57186,KONFA+TO+MARKA%2C+NARKA,287,420,698152377,2034,0 +57187,Wioska+barbarzy%C5%84ska,544,728,699878511,1459,0 +57188,Wioska+barbarzy%C5%84ska,305,366,0,461,0 +57189,Wioska+Damian098po,544,275,849088880,311,0 +57190,Wioska+Stefek7,376,703,849108934,801,0 +57191,Wioska+barbarzy%C5%84ska,589,289,849064614,383,0 +57192,Osada+koczownik%C3%B3w,321,349,8632462,523,3 +57193,Wioska+barbarzy%C5%84ska,386,705,0,362,0 +57194,Osada+1,278,415,848936053,2537,0 +57195,099,732,507,7085502,1933,0 +57196,WZ05,713,600,7142659,3256,0 +57197,C008,463,735,8954402,1536,0 +57198,Piek%C5%82o+to+inni,654,330,848956765,3262,0 +57200,KONFA+TO+MARKA%2C+NARKA,271,445,698152377,3768,0 +57201,Wioska+barbarzy%C5%84ska,649,327,849048734,196,0 +57202,Wioska+barbarzy%C5%84ska,731,440,698191218,208,0 +57203,gondor,290,396,698677650,2116,0 +57204,o016,613,700,699189792,3513,0 +57205,Wioska+barbarzy%C5%84ska,343,676,0,399,0 +57206,005+Barad+Dur,505,270,849100383,7045,0 +57207,105+Wioska+barbarzy%C5%84ska,567,276,699854484,1022,0 +57208,P%7C007%7C,439,730,699393742,4936,0 +57209,%3DSAwars%3D05%3D,564,277,849106420,2981,0 +57210,Wioska+barbarzy%C5%84ska,347,669,6354098,339,0 +57212,Arczi997+07,270,507,849055181,278,0 +57213,%23019,558,274,849064614,2079,0 +57214,Wioska+elgordo,716,505,1079223,1599,0 +57215,Wioska+barbarzy%C5%84ska,346,677,0,422,0 +57216,Wioska+barbarzy%C5%84ska,298,615,0,204,0 +57217,Wioska+barbarzy%C5%84ska,530,725,699878511,3332,0 +57218,Wioska+domin964,730,535,849112725,2064,0 +57219,BETON+112,667,662,699277039,175,0 +57221,.%3A080%3A.+Takmahal,522,446,848934935,3384,0 +57222,Wioska+mrozzo,663,340,849048112,26,0 +57223,Wioska+barbarzy%C5%84ska,295,613,0,599,0 +57224,O158,310,630,272173,786,0 +57225,Bagno+38,461,730,848883684,3981,0 +57226,Osada+koczownik%C3%B3w,406,286,698231772,3905,5 +57228,New+WorldA,271,517,849084005,1158,0 +57229,.5.,289,391,762975,1827,0 +57230,Wiadro25,679,640,8677963,593,0 +57231,marekkkzzz665,402,717,9195661,5565,0 +57232,Wioska+barbarzy%C5%84ska,648,682,848987051,5911,0 +57234,Wioska+barbarzy%C5%84ska,726,559,698666810,5270,0 +57235,KONFA+TO+MARKA%2C+NARKA,289,409,698152377,1540,0 +57236,P%C3%B3%C5%82nocny+Bagdad,621,297,8847546,6341,0 +57237,MojeDnoToWaszSzczyt,483,265,9299539,3979,0 +57238,North+K25,560,275,699146580,1504,0 +57239,P%C3%B3%C5%82nocny+Bagdad,625,308,8847546,5072,0 +57240,Wioska+092,697,616,848971079,4834,0 +57241,...,685,636,849108991,1068,0 +57242,Nowa+Baza+9,615,702,698353083,4637,0 +57243,C.062,731,478,9188016,914,0 +57244,New+World,423,725,698152377,4178,0 +57245,Wioska+barbarzy%C5%84ska,306,380,0,400,0 +57246,Wioska+barbarzy%C5%84ska,291,591,0,127,0 +57247,New+World,272,543,849084005,8098,0 +57248,Aa2,593,714,849097614,5144,0 +57249,Wioska+barbarzy%C5%84ska,727,441,699347951,746,0 +57250,0029zzz006,708,601,3986807,482,0 +57252,Wioska+barbarzy%C5%84ska,319,358,0,571,0 +57253,.achim.,573,285,6936607,862,0 +57254,Wioska+barbarzy%C5%84ska,712,417,699722599,2778,0 +57255,Waldus,521,269,849110382,3680,0 +57256,PPF-09,519,270,1424656,1389,0 +57257,KONFA+TO+MARKA%2C+NARKA,277,444,698152377,5693,0 +57258,Wioska+Mega+Niepokorny,399,287,699741694,3937,0 +57259,%23009,553,274,849064614,6221,3 +57260,mog%C5%82em+wbi%C4%87+kolejnego+klina,622,697,698353083,371,0 +57261,Wioska+barbarzy%C5%84ska,727,558,698666810,5416,0 +57262,Wioska+0019,340,662,9186126,6294,0 +57263,Wiocha+Zochy+2,361,689,8838462,282,0 +57264,o%2Co+3,445,270,848933470,296,7 +57265,Wioska+Zawodnika+3,569,723,698655859,3480,0 +57266,KONFA+TO+MARKA%2C+NARKA,281,424,698152377,7603,0 +57267,Sony+911,678,647,1415009,1851,0 +57268,PPF-12,522,269,1424656,1704,0 +57269,068.,452,731,849034882,9397,0 +57270,Wioska+barbarzy%C5%84ska,281,589,0,145,0 +57271,Wioska+barbarzy%C5%84ska,526,735,699878511,5347,0 +57272,Wioska+Crift,358,690,848887366,1622,0 +57273,Wioska+barbarzy%C5%84ska,727,494,942959,896,0 +57274,Wioska+barbarzy%C5%84ska,686,359,7758085,2001,0 +57275,046,675,647,2323859,569,0 +57276,Wioska+barbarzy%C5%84ska,632,693,849096354,985,0 +57277,Osada+koczownik%C3%B3w,347,670,2725721,965,1 +57278,Sony+911,671,649,1415009,1912,0 +57279,KONFA+TO+MARKA%2C+NARKA,276,443,698152377,4134,0 +57280,Wioska+Sylwiaa1234,571,283,849048552,68,0 +57281,Wioska+barbarzy%C5%84ska+09,343,331,698757439,6752,9 +57282,Wioska+amon201,320,353,7262049,926,0 +57283,068KP,473,266,849063849,598,0 +57284,Wioska+barbarzy%C5%84ska,324,340,849098400,514,0 +57286,Wioska+barbarzy%C5%84ska,294,613,0,576,0 +57287,Wioska+barbarzy%C5%84ska,292,398,0,251,0 +57288,Wioska+112,687,641,848971079,2677,0 +57289,Wioska+barbarzy%C5%84ska,723,558,1601917,1801,0 +57290,Wioska+barbarzy%C5%84ska,712,408,699598425,2676,0 +57292,Wioska+barbarzy%C5%84ska,385,299,698231772,3461,0 +57293,Ciapolos,446,270,849111231,3047,0 +57294,Wioska+Pazuros,449,265,849111316,3090,0 +57295,KONFA+TO+MARKA%2C+NARKA,275,443,698152377,3735,0 +57296,Wioska+barbarzy%C5%84ska,664,339,699072129,2800,0 +57297,%3F%3F%3F%3F,461,272,698489071,3615,0 +57298,Osada+koczownik%C3%B3w,376,298,849017820,980,3 +57299,.6.,287,410,762975,2398,0 +57300,K42+ADAMUS+021,279,431,6212605,3301,0 +57301,Wioska+barbarzy%C5%84ska,730,498,6510480,798,0 +57302,%23149%23,649,671,692803,913,0 +57303,102,738,492,7085502,1800,0 +57304,Wioska+Breisse,546,404,849093771,743,0 +57305,Wioska+barbarzy%C5%84ska,551,728,699878511,2617,0 +57306,%3D124%3D+Wioska+barbarzy%C5%84ska,717,573,3781794,1434,0 +57307,Wioska+KrzysztofBerg95,274,468,699712243,463,0 +57308,P%C3%B3%C5%82nocny+Bagdad,634,310,8847546,2970,0 +57309,Wioska+barbarzy%C5%84ska,341,329,6169408,377,0 +57310,033.+Syria,524,265,699799629,4739,0 +57311,%3D125%3D+Wioska+barbarzy%C5%84ska,727,571,3781794,1246,0 +57312,Wioska+barbarzy%C5%84ska,355,686,699704542,2767,0 +57313,Wioska+barbarzy%C5%84ska,730,459,849095599,535,0 +57314,Wioska+barbarzy%C5%84ska,648,685,848987051,5860,0 +57315,nr8,638,692,364126,802,0 +57316,KONFA+TO+MARKA%2C+NARKA,276,422,698152377,2274,0 +57317,ma%C5%82y+raj,272,447,699401083,2074,0 +57318,Wioska+barbarzy%C5%84ska,298,606,699604515,135,0 +57319,0130,714,416,698416970,429,0 +57320,Wioska+barbarzy%C5%84ska,321,645,8175236,668,0 +57321,Wioska+barbarzy%C5%84ska,402,713,849014922,3969,0 +57322,Wioska+barbarzy%C5%84ska,566,725,699828442,963,0 +57323,New+WorldA,267,517,849084005,669,0 +57324,Wioska+Hektor888.,723,590,8434727,886,0 +57325,B010,529,274,699485250,3603,0 +57326,Wioska+barbarzy%C5%84ska,682,364,6956104,2474,0 +57327,Wioska+barbarzy%C5%84ska,321,652,8175236,938,0 +57328,Zaplecze+Barba+043,352,317,699796330,1548,0 +57329,Zaplecze+Barba+044,346,329,699796330,1608,0 +57330,Maszlug+kolonia+XXII,318,361,848977649,818,0 +57331,Wioska+1edc,698,623,7007969,26,0 +57332,%23135%23,664,666,692803,2088,0 +57333,Kombinat,281,586,699396429,1263,0 +57334,KONFA+TO+MARKA%2C+NARKA,274,436,698152377,3550,0 +57335,Wioska+Kaczoland,289,608,6323735,213,0 +57336,Wioska+barbarzy%C5%84ska,444,727,9037756,353,0 +57337,Wioska+barbarzy%C5%84ska,269,459,699213622,910,0 +57338,%5B207%5D,720,420,8000875,1702,0 +57340,B018,531,268,699485250,3439,0 +57341,Wioska+barbarzy%C5%84ska,720,557,698666810,2111,0 +57342,Wioska+barbarzy%C5%84ska,730,502,942959,986,0 +57343,Wioska+barbarzy%C5%84ska,719,435,698191218,987,0 +57344,O118,311,636,272173,6412,0 +57345,North+057,528,266,849064752,4918,0 +57346,Wioska+barbarzy%C5%84ska,713,578,7038651,660,0 +57347,KONFA+TO+MARKA%2C+NARKA,271,454,698152377,2083,0 +57348,Wioska+barbarzy%C5%84ska,392,701,849014922,1340,0 +57349,008,263,507,698356304,728,0 +57350,Zzz+12+troch%C4%99+daleko,282,581,849084740,524,0 +57351,New+World,410,718,698152377,6538,0 +57353,001%3A%3A,352,685,699730998,1723,0 +57354,Wioska+barbarzy%C5%84ska,732,449,698702991,431,0 +57355,Wioska+barbarzy%C5%84ska,269,482,698625834,563,0 +57357,New+WorldA,273,538,849084005,1354,0 +57358,North+065,515,270,849064752,5172,0 +57359,North+K25,566,274,699146580,1721,0 +57360,.achim.,580,282,6936607,1476,0 +57361,Pozna%C5%84,559,271,699872401,3516,0 +57362,PPF-06,508,265,1424656,3170,0 +57364,001+Mordor,521,263,849100383,8544,0 +57365,Wioska+barbarzy%C5%84ska,713,407,699598425,2686,0 +57366,Wioska+gajawa,589,287,7781236,634,0 +57367,009,273,465,698652171,2427,2 +57369,Wioska+wjadr0,604,712,699711334,26,0 +57370,PPF-08,518,271,1424656,3019,0 +57372,009,284,595,698663855,4209,0 +57373,Saran12,407,284,848937248,302,0 +57374,Wioska+barbarzy%C5%84ska,305,376,0,376,0 +57375,PPF-35,573,276,1424656,879,0 +57376,Wioska+barbarzy%C5%84ska,733,496,6510480,887,0 +57377,Flap,607,290,699098531,3936,0 +57378,Wioska+barbarzy%C5%84ska,731,522,698191218,2029,0 +57379,New+WorldA,273,545,849084005,1600,0 +57380,Wioska+barbarzy%C5%84ska,286,590,699396429,731,0 +57381,44.,331,660,8665783,650,0 +57383,Wioska+barbarzy%C5%84ska,318,353,698364331,1489,0 +57384,Baligr%C3%B3d,626,303,848922958,1894,0 +57385,KONFA+TO+MARKA%2C+NARKA,288,416,698152377,2291,0 +57386,Wioska+barbarzy%C5%84ska,354,681,0,185,0 +57387,bandzior+na+ko%C5%84cu,506,738,849065697,3533,0 +57388,Wioska+barbarzy%C5%84ska,318,350,0,246,0 +57389,Wioska+barbarzy%C5%84ska,681,359,2976468,1408,0 +57390,P%C3%B3%C5%82nocny+Bagdad,635,311,8847546,2200,0 +57391,Wioska1+barbarzy%C5%84ska,710,412,8459255,3430,0 +57392,Wioska+barbarzy%C5%84ska,722,582,2453888,4694,0 +57393,%23126%23,654,669,692803,2410,0 +57394,Wioska+mlodyfacetkosmita,333,593,849081284,41,0 +57395,Wioska+barbarzy%C5%84ska,589,286,849064614,1840,0 +57396,Wioska+Alchemika,342,325,849068108,640,0 +57397,New+WorldA,267,532,849084005,1010,0 +57398,NOT%2A,312,354,9236866,8039,9 +57399,-23-,578,726,849032414,3089,0 +57400,Avanti%21,270,490,698625834,2334,1 +57401,O156,308,632,272173,1406,0 +57402,002+Moria,519,264,849100383,3825,0 +57403,New+World,427,722,698152377,7236,0 +57404,Wiadro22,682,651,8677963,1823,0 +57405,Wioska+Wied%C5%BAma,304,628,849106698,194,0 +57406,North+K25,562,280,699146580,1781,0 +57407,001,316,395,1809943,867,0 +57408,Wioska+barbarzy%C5%84ska,528,265,699799629,1981,0 +57409,Wioska,303,371,9185931,5995,0 +57410,%3F%3F%3F%3F,489,268,698489071,2801,0 +57411,Wioska+gall4,268,475,699598396,1178,0 +57412,005,465,271,699562874,4249,3 +57413,Piek%C5%82o+to+inni,655,333,848956765,2719,0 +57414,Alamo4,714,578,2723244,1755,0 +57415,P%C3%B3%C5%82nocny+Bagdad,604,289,8847546,1112,0 +57416,076.+Wioska+barbarzy%C5%84ska,729,464,7494497,4435,0 +57417,%40%402,266,499,849113546,1223,0 +57418,Wioska+Deylor,291,605,849032741,453,0 +57419,WB41,302,368,356642,758,0 +57420,Wioska+Baat,397,298,699709160,872,0 +57421,Wioska+barbarzy%C5%84ska,724,550,1601917,2559,0 +57422,Wioska+barbarzy%C5%84ska,309,365,0,466,0 +57423,KONFA+TO+MARKA%2C+NARKA,275,446,698152377,3732,0 +57424,Osada+koczownik%C3%B3w,317,645,8877156,5383,2 +57425,Wioska+barbarzy%C5%84ska,349,321,8772425,610,0 +57426,Wioska+barbarzy%C5%84ska,574,601,848995242,355,0 +57427,Wioska+barbarzy%C5%84ska,384,294,699191464,820,0 +57428,Wioska+barbarzy%C5%84ska,270,474,849095814,551,0 +57429,Wioska+barbarzy%C5%84ska,352,682,699704542,2776,0 +57430,KONFA+TO+MARKA%2C+NARKA,282,422,698152377,3772,0 +57431,Wioska+b+003,423,277,6343784,2012,0 +57432,New+World,414,716,698152377,4832,0 +57433,New+World,422,714,698152377,4000,0 +57434,068.,706,466,849094609,1155,0 +57435,Madagascar,322,659,7707390,6843,0 +57436,K67+20,705,611,698867483,2307,0 +57437,Wioska+barbarzy%C5%84ska,722,551,1601917,187,0 +57438,...%3A%3A181+13%3A%3A...,272,510,699641777,1724,0 +57439,P%C3%B3%C5%82nocny+Bagdad,624,301,8847546,7002,2 +57440,%2A01%2A,685,632,1284796,665,0 +57441,P%C3%B3%C5%82+1,438,279,849096310,1220,0 +57442,Wioska+barbarzy%C5%84ska,363,681,699704542,1049,0 +57443,R+054,488,736,699195358,1745,0 +57444,P%C3%B3%C5%82nocny+Bagdad,616,300,8847546,2077,0 +57445,Wioska+barbarzy%C5%84ska,310,364,0,466,0 +57446,Wioska+barbarzy%C5%84ska,318,359,0,460,0 +57447,Oaza,348,669,2725721,402,0 +57448,New+World,404,706,698152377,4657,0 +57449,Wioska+barbarzy%C5%84ska,546,730,699878511,2328,0 +57450,KONFA+TO+MARKA%2C+NARKA,285,408,698152377,1800,0 +57451,Wioska+Tabaluga1922,501,263,848950255,844,0 +57452,%C5%BBywio%C5%82,680,356,699875213,273,0 +57453,Wioska+barbarzy%C5%84ska,693,379,698702991,1385,0 +57454,Wioska+barbarzy%C5%84ska,720,576,2453888,3161,0 +57455,04Osada+koczownik%C3%B3w,362,690,699704542,7979,1 +57457,MojeDnoToWaszSzczyt,467,271,9299539,2381,0 +57458,097+Wioska+barbarzy%C5%84ska,541,270,699854484,4765,0 +57460,O119,306,635,272173,5851,0 +57461,Z%C4%99by+Smoka,412,281,849037354,5485,0 +57462,XDX,614,298,699098531,3743,4 +57464,011,394,288,699694284,4536,0 +57466,Wioska+barbarzy%C5%84ska,736,508,6510480,1162,0 +57468,KONFA+TO+MARKA%2C+NARKA,277,424,698152377,4782,0 +57469,New+World,416,723,698152377,2537,0 +57470,Kiedy%C5%9B+Wielki+Wojownik,328,351,8632462,1094,0 +57471,031,704,399,849091105,7215,2 +57472,Wioska,603,703,849113078,1402,0 +57473,%21Wioska+barbarzy%C5%84ska+22,583,721,8779575,3122,0 +57474,Wioska+pepus1971,607,289,699238678,3441,0 +57475,Wioska+barbarzy%C5%84ska,647,686,848987051,5450,0 +57476,magazyn+PP+xxx,664,338,849111196,1553,0 +57477,Wioska+mysza,274,478,849110852,417,0 +57478,Wioska+barbarzy%C5%84ska,317,650,0,385,0 +57479,Wioska+Trzepak7,405,712,849103237,249,0 +57480,Wioska+barbarzy%C5%84ska,460,275,699191464,1197,0 +57481,Wioska+barbarzy%C5%84ska,300,377,0,232,0 +57482,Wioska+barbarzy%C5%84ska,626,693,6818593,1691,0 +57483,Wioska+Mlody165,471,270,849113055,2293,0 +57485,Wioska+barbarzy%C5%84ska,403,706,849014922,2579,0 +57486,Wioska+barbarzy%C5%84ska,547,724,699828442,3671,0 +57487,Wioska+Astecki,291,394,849112733,52,0 +57488,PPF-13,510,262,1424656,3030,0 +57490,Wioska+barbarzy%C5%84ska,592,286,849064614,156,0 +57491,009,286,592,698663855,4787,0 +57493,Wioska+barbarzy%C5%84ska,732,518,698191218,2036,0 +57494,Wioska+barbarzy%C5%84ska,706,393,699598425,2012,0 +57495,Wioska+barbarzy%C5%84ska,641,319,849102068,1338,0 +57496,010,397,288,699694284,5246,2 +57497,Wioska+xmox,722,571,6822085,626,0 +57498,Sony+912,705,392,1415009,2931,0 +57499,Wioska+barbarzy%C5%84ska,362,317,3484132,4285,0 +57500,O160,313,645,272173,756,6 +57502,Wioska+mrugowal,691,373,849104474,71,0 +57503,0027zzz04,708,602,3986807,468,0 +57505,%23002+Las+Vegas,331,666,849101276,1091,0 +57506,Wioska+barbarzy%C5%84ska,377,308,698160606,2649,0 +57507,Wioska+rafi041072,416,722,1511101,522,0 +57508,Wioska+barbarzy%C5%84ska,443,270,699191449,1057,0 +57509,%3F%3F%3F%3F,484,272,698489071,3501,0 +57511,Pan+P%C4%85czek,271,508,849105417,2028,0 +57512,PPF-07,510,265,1424656,3181,0 +57513,Wioska+Koc+M%C5%9Bciwy,279,573,849083725,129,0 +57514,221...NORTH,431,281,6920960,1955,0 +57515,Wioska+barbarzy%C5%84ska,425,277,699308637,600,0 +57516,Wioska+barbarzy%C5%84ska,356,319,3698627,3006,0 +57517,Wioska+Piotr-Wielki2,727,432,849110021,2167,0 +57518,New+World,408,716,698152377,5026,0 +57519,Wioska+barbarzy%C5%84ska,728,436,699524891,2330,0 +57521,KONFA+TO+MARKA%2C+NARKA,285,397,698152377,1293,0 +57522,Gwenville+016,455,271,848986638,457,0 +57523,MojeDnoToWaszSzczyt,466,264,9299539,4474,0 +57524,MojeDnoToWaszSzczyt,483,263,9299539,3090,0 +57525,Flap,597,283,699098531,4320,0 +57526,Wioska+barbarzy%C5%84ska,308,368,0,327,0 +57527,Wioska+088,715,600,848971079,5552,0 +57528,Nibylandia,555,344,849110711,693,0 +57530,C0311,272,551,8841266,2385,0 +57531,001,732,482,849078498,5933,0 +57532,Wioska+barbarzy%C5%84ska,735,505,6510480,851,0 +57533,026,529,719,698996782,2810,0 +57534,Kami+2,736,476,849002796,1885,0 +57535,Wioska+Raissa,273,510,699336679,499,0 +57536,Snippet+FR,482,734,849004274,5871,0 +57537,Sony+911,678,646,1415009,1340,0 +57538,.achim.,575,283,6936607,1181,0 +57539,North+080,516,271,849064752,2890,0 +57540,Wioska+telimena,306,633,699037086,5291,0 +57541,%2B.75000...-4,546,727,8320319,4176,0 +57542,B017,529,268,699485250,3640,0 +57543,Wioska+barbarzy%C5%84ska,661,676,0,118,0 +57544,Wioska+barbarzy%C5%84ska,680,354,609384,794,0 +57545,North+066,511,272,849064752,5593,4 +57547,A%23038,734,480,2065730,8451,1 +57549,Wioska+barbarzy%C5%84ska,369,310,698160606,3271,0 +57550,kamilkaze135+%2318,689,372,699705601,1488,0 +57551,sw+181,360,683,100452,2861,0 +57552,Wioska+M1,696,606,6046368,2313,0 +57553,117.+Archipelag+Po%C5%82udniowy,694,625,8337151,1981,0 +57555,Wioska+barbarzy%C5%84ska,732,499,6510480,877,0 +57556,Sony+911,673,663,1415009,2504,0 +57557,086.+Wioska+barbarzy%C5%84ska,735,466,7494497,2939,0 +57558,Wioska+misiu12193,433,282,9129046,339,0 +57559,Qqqqqq,272,470,848981726,1225,0 +57560,Wioska+barbarzy%C5%84ska,645,680,848987051,4855,0 +57561,MojeDnoToWaszSzczyt,460,265,9299539,3362,0 +57562,ZK+Wronki,272,437,698279195,1595,0 +57563,NOT%3F,311,360,9236866,2878,0 +57564,PPF-43,586,281,1424656,582,0 +57565,kurwistaw8808,369,305,848963521,1633,0 +57566,018,713,591,6160655,2508,4 +57567,Wioska+DZ4L4,621,298,849100496,128,0 +57568,Hi+Bady,303,375,848943145,3442,0 +57569,Na+SsSskraju,275,572,1536625,653,0 +57570,North+019,517,270,849064752,6733,1 +57571,Wioska+barbarzy%C5%84ska,725,560,698666810,1593,0 +57572,O110,295,612,272173,7743,4 +57573,%23125%23,651,672,692803,2603,0 +57574,Wow23,351,328,699730714,369,0 +57575,Groch%C3%B3w,284,408,699854312,449,0 +57576,Wioska+chopek1,384,291,8855679,2776,0 +57577,Nowe+Dobra+-+budowa,693,629,699759128,2984,0 +57578,Du%C5%BCa+osada,419,282,3411571,7508,2 +57579,Wioska+graf72,286,583,849109885,1746,0 +57580,%3D126%3D+Wioska+barbarzy%C5%84ska,729,568,3781794,1019,0 +57581,Wioska+barbarzy%C5%84ska,735,479,6510480,194,0 +57582,nowa+5,630,689,699372829,441,0 +57583,Wioska+Somalija,560,274,699794286,80,0 +57584,Wioska+barbarzy%C5%84ska,362,682,699704542,2482,0 +57585,Wioska+barbarzy%C5%84ska,360,687,0,176,0 +57586,028+-+Budowanko%21,473,736,7540891,4892,0 +57587,North+095,496,263,849064752,4020,0 +57588,Wioska+barbarzy%C5%84ska,366,308,3484132,4868,0 +57589,NieLubieRudzielc%C3%B3w,296,394,849076515,274,0 +57590,38.,330,668,8665783,1132,0 +57591,Wioska+MistycznaParowa,636,674,9096738,188,0 +57592,KONFA+TO+MARKA%2C+NARKA,272,446,698152377,3701,0 +57593,Wioska+barbarzy%C5%84ska,712,415,699722599,3368,0 +57594,North+067,511,262,849064752,4940,0 +57595,KONFA+TO+MARKA%2C+NARKA,274,427,698152377,2180,0 +57596,Wyspa+027,280,577,225023,1079,0 +57599,elo,430,276,849085160,494,0 +57600,%23042,556,272,849064614,897,0 +57601,O102,293,620,272173,7576,0 +57602,Wioska+barbarzy%C5%84ska,734,535,17714,725,0 +57603,Wioska+gracforfun,704,624,699751562,1111,0 +57604,Wioska+barbarzy%C5%84ska,610,706,699828685,2255,0 +57605,Wioska+barbarzy%C5%84ska,271,504,8630972,246,0 +57606,KONFA+TO+MARKA%2C+NARKA,287,418,698152377,2187,0 +57607,Wioska+barbarzy%C5%84ska,267,460,699213622,704,0 +57608,Wioska+barbarzy%C5%84ska,316,640,2289134,326,0 +57609,Saragossa,649,674,747422,1065,0 +57610,Domek+Miniuka+04,478,726,699373225,2258,0 +57611,Wioska+Machoneyy,296,386,848949517,977,0 +57612,R+051,491,731,699195358,2734,0 +57613,New+World,409,714,698152377,4783,0 +57614,Wioska+barbarzy%C5%84ska,739,494,6510480,1105,0 +57615,Wioska+ociek123,269,470,699860418,2969,0 +57616,Wioska+lukempire,651,681,9247737,26,0 +57617,Na+SsSskraju,275,571,1536625,754,0 +57618,Wioska+Marcelinka,298,611,849060357,2111,0 +57619,Wioska+barbarzy%C5%84ska,592,708,7756002,3454,0 +57621,Wioska+barbarzy%C5%84ska,384,707,849014922,1087,0 +57622,Nowe+IMPERIUM+11+Warksztat,621,699,698353083,5082,7 +57623,New+WorldA,266,516,849084005,1112,0 +57624,%5B0282%5D,266,498,8630972,3475,0 +57625,Wioska+Sir+SilverBaron,316,350,699678801,2552,0 +57626,41.,333,663,8665783,762,0 +57628,Wioska+barbarzy%C5%84ska,306,366,0,440,0 +57629,CastAway+%21039,708,596,9314079,1725,0 +57630,Wioska+rkot,468,728,699449946,3295,0 +57631,Flap,601,290,699098531,3783,0 +57632,Wioska+KKS+Rakieta,501,738,849066808,618,0 +57634,P%C3%B3%C5%82nocny+Bagdad,613,290,8847546,2046,0 +57635,Sony+911,685,652,1415009,1201,0 +57637,P%C3%B3%C5%82nocny+Bagdad,628,311,8847546,6512,0 +57638,080+-+Budowanko%21,498,737,7540891,407,0 +57639,009,287,594,698663855,4787,0 +57640,%5B0265%5D,262,499,8630972,3560,5 +57641,Wioska+barbarzy%C5%84ska,676,352,609384,777,0 +57642,R+052,492,732,699195358,2476,0 +57643,Wioska+Krukuu,371,312,699699422,989,0 +57644,046+-+Budowanko%21,566,728,7540891,4417,0 +57645,zk+kryniu,684,364,849105232,1250,1 +57646,%3F%3F%3F%3F,455,268,698489071,2806,0 +57647,Wioska+barbarzy%C5%84ska,721,426,699628084,793,0 +57648,Wioska+barbarzy%C5%84ska,708,398,699598425,2568,0 +57649,Wioska+barbarzy%C5%84ska,737,532,1601917,1463,0 +57650,Wioska+Lord+%C5%81oszo,269,557,698207545,696,0 +57651,Maryna+4,267,459,699650981,570,0 +57652,Wioska+szabla32,472,498,8128478,560,0 +57653,A%23041,730,517,2065730,6542,1 +57654,PPF-48,552,267,1424656,329,0 +57655,Avanti%21,271,482,698625834,2239,0 +57656,Wioska+barbarzy%C5%84ska,727,539,17714,117,0 +57657,Wioska30,330,345,699711926,1646,0 +57658,karmelon,353,318,849099804,2453,0 +57659,adam,337,330,6618608,5297,0 +57660,Wioska+Kozio%C5%82,293,615,849109966,344,0 +57661,NOT%3F,308,362,9236866,660,0 +57662,taka+malutka,531,710,6116940,2434,0 +57664,Wioska,622,298,7140413,901,0 +57665,hobbiton,289,395,698677650,607,0 +57666,Wioska+barbarzy%C5%84ska,307,376,0,298,0 +57667,032.+Ateny,523,264,699799629,4229,3 +57669,%5B0284%5D,266,500,8630972,3180,0 +57670,CastAway+%23026,716,596,9314079,2465,0 +57671,KASHYYYK+3,573,721,699383121,1052,0 +57672,040,715,411,849091105,1727,0 +57673,Wioska+barbarzy%C5%84ska,667,333,699072129,2300,0 +57674,%5B837%5D+Odludzie,720,437,848985692,4918,0 +57675,Wioska+barbarzy%C5%84ska,685,356,2976468,431,0 +57676,095.+Wioska+barbarzy%C5%84ska,727,469,7494497,2993,0 +57677,Wioska+barbarzy%C5%84ska,607,710,0,321,0 +57678,o022,631,700,699189792,2425,0 +57679,Grzejdas+3,705,378,849057764,3990,8 +57680,Wioska+barbarzy%C5%84ska,575,716,7756002,3143,0 +57681,%23163%23,657,677,692803,1130,0 +57682,057,683,636,699099811,572,0 +57683,Wygwizdowa+015,662,662,698562644,467,0 +57684,R+055,491,732,699195358,1010,0 +57685,Wioska+barbarzy%C5%84ska,723,557,698666810,6880,0 +57686,Wioska+Chora%C5%BCy,607,288,849098374,4474,0 +57687,Resist+And+Bite%21,447,724,699069151,2176,0 +57688,Wioska+barbarzy%C5%84ska,724,575,2453888,3618,0 +57689,Wioska+gall3,267,476,699598396,2440,1 +57690,Wioska+barbarzy%C5%84ska,610,289,849064614,293,0 +57691,Wioska+barbarzy%C5%84ska,288,389,0,79,0 +57692,Wioska+barbarzy%C5%84ska,334,337,699304554,459,0 +57693,Wioska+barbarzy%C5%84ska,618,295,849037469,3587,0 +57694,Ma%C5%82a+osada,417,277,3411571,7603,8 +57695,FP045,460,731,699605333,3777,0 +57696,Wioska31,330,340,699711926,1617,0 +57697,Wioska+barbarzy%C5%84ska,293,614,0,181,0 +57698,098+Wioska+barbarzy%C5%84ska,541,275,699854484,4785,0 +57699,Wioska+181,733,490,2363165,414,0 +57700,Sqn,715,397,699598425,2014,0 +57701,WB05,298,384,356642,4272,7 +57702,001,661,665,849111050,2601,0 +57703,PSYHOSOCIAL,292,600,699774694,1450,1 +57704,Wioska+EpSi1,589,716,6516085,893,0 +57705,Wioska+barbarzy%C5%84ska,736,501,6510480,958,0 +57706,Wioska+Maja40,670,349,8483719,1856,0 +57707,Wioska+barbarzy%C5%84ska,521,737,849066849,367,0 +57708,Wioska+barbarzy%C5%84ska,401,705,849014922,1622,0 +57709,KONFA+TO+MARKA%2C+NARKA,275,428,698152377,2107,0 +57710,C0332,262,518,8841266,1482,0 +57711,Wioska+barbarzy%C5%84ska,265,503,849013126,437,0 +57712,KWB6,448,728,9003698,4045,0 +57713,Wioska+barbarzy%C5%84ska,507,739,849066849,898,0 +57714,132.Stradi,396,293,698365960,3610,5 +57715,Praven,344,331,699716785,2273,0 +57716,P%C3%B3%C5%82nocny+Bagdad,621,304,8847546,6945,0 +57718,Wioska+barbarzy%C5%84ska,329,334,699304554,2327,0 +57719,Kami+4,734,472,849002796,1321,0 +57721,Wioska+barbarzy%C5%84ska,715,576,2453888,1268,0 +57722,King+Arkadius+1,542,731,699812653,1055,0 +57723,008,290,595,698663855,4787,4 +57724,Wioska+Pi%C5%BAdzichlapica,533,737,849038572,191,0 +57725,022+-+Budowanko%21,478,730,7540891,5991,0 +57727,084.+Wioska+barbarzy%C5%84ska,731,465,7494497,2998,0 +57728,65+barbarzy%C5%84ska,276,457,849018442,96,0 +57729,030.+elli38,698,366,2873154,3422,0 +57730,Osada+koczownik%C3%B3w,669,345,7973893,5408,2 +57731,Wioska+Sir+sernik,425,720,849113300,313,0 +57732,Wioska+real124,624,306,848956537,26,0 +57733,North+018,516,265,849064752,7345,8 +57734,New+World,426,720,698152377,3354,0 +57736,Avanti%21,269,488,698625834,2516,0 +57737,Wioska+KOSMACZ1,732,447,848926070,439,0 +57738,New+World,417,722,698152377,5412,0 +57739,Wioska+%C5%81ukasz80,632,308,1227022,1019,0 +57741,Sony+911,669,662,1415009,2596,0 +57742,No+na+pewno,402,288,699854830,565,7 +57743,Stryszawa+City+v9,264,538,699729211,483,0 +57744,KONFA+TO+MARKA%2C+NARKA,291,398,698152377,968,0 +57745,WWWWWW,264,532,1095489,864,0 +57746,%23151%23,656,675,692803,848,0 +57747,FP054,447,730,699605333,3090,0 +57748,Wioska+barbarzy%C5%84ska,373,697,0,265,0 +57749,MojeDnoToWaszSzczyt,474,262,9299539,5015,0 +57750,Wioska+barbarzy%C5%84ska,366,313,3484132,3520,0 +57751,0110,701,378,698416970,1157,0 +57752,New+World,435,723,698152377,3596,0 +57753,C0320,267,524,8841266,2382,0 +57754,BOA6,306,623,699829494,2317,0 +57755,Wioska+barbarzy%C5%84ska,553,724,699828442,3897,0 +57756,Zaplecze+Osada+1,361,315,699796330,6729,8 +57757,Wioska+jurek15,507,735,699144886,1267,0 +57758,Cisza,278,582,698769107,590,0 +57759,Wioska+Skols998,733,529,849005658,2720,0 +57760,O67+Daeyami,687,566,699272880,629,0 +57761,Wioska+barbarzy%C5%84ska,585,720,849087855,379,0 +57762,Wioska+uks13,644,318,8411874,771,0 +57763,rzeka+anduina,292,391,698677650,519,0 +57764,Tylko+FALUBAZ,470,268,9277642,5319,0 +57765,MojeDnoToWaszSzczyt,501,262,9299539,5268,0 +57766,New+World,412,722,698152377,3012,0 +57767,PPF-30,566,279,1424656,1424,0 +57768,001,711,394,699832463,2839,0 +57769,Sony+911,707,618,1415009,1113,0 +57770,Wioska+barbarzy%C5%84ska,732,493,942959,912,0 +57771,Wioska+Warkilia,708,402,3668212,2002,0 +57772,Wioska+barbarzy%C5%84ska,667,332,699072129,2410,0 +57774,%23137%23,666,665,692803,1978,0 +57775,Wioska+rhodos77,689,640,7230689,3689,0 +57776,C0318,271,521,8841266,2428,0 +57777,049+-+Budowanko%21,520,737,7540891,3914,0 +57778,Wioska+barbarzy%C5%84ska,267,550,0,305,0 +57779,Wioska+barbarzy%C5%84ska,557,727,699828442,1373,0 +57780,jebacwas,263,490,849110380,225,0 +57781,%5B834%5D+Odludzie,722,434,848985692,5310,0 +57782,Wioska+barbarzy%C5%84ska,301,374,0,600,0 +57784,041+-+Alcorcon,716,598,698342159,728,0 +57785,Wioska+barbarzy%C5%84ska,380,293,699191449,795,0 +57786,New+World,413,723,698152377,4203,2 +57788,Wioska+barbarzy%C5%84ska,313,643,8877156,1977,0 +57790,Wioska+barbarzy%C5%84ska,498,736,606407,2029,0 +57791,Wioska+barbarzy%C5%84ska,635,694,699372829,134,0 +57792,New+World,429,727,698152377,4814,0 +57793,IGNESJA,695,366,3957237,1629,0 +57795,lesna+brama,286,395,698677650,1355,0 +57796,Wioska+mamcos98,298,620,9057880,26,0 +57797,-10-,516,737,765188,3765,0 +57798,Wioska+barbarzy%C5%84ska,729,531,17714,144,0 +57799,Wioska+barbarzy%C5%84ska,726,536,17714,1618,0 +57800,%2310,342,335,2800032,391,0 +57801,WB48,294,384,356642,121,0 +57802,Wioska+barbarzy%C5%84ska,554,730,699828442,1743,0 +57804,WB34,296,385,356642,1274,0 +57805,45+barbarzy%C5%84ska,271,438,849018442,1157,0 +57806,078,675,339,2502956,1312,0 +57808,Wioska+barbarzy%C5%84ska,287,393,0,421,0 +57809,%40%401,267,500,849113546,3964,0 +57810,shadow+%231,260,493,1034117,3969,0 +57811,P%C3%B3%C5%82nocny+Bagdad,617,296,8847546,6511,0 +57812,Naboo,735,503,160513,4251,0 +57813,%C5%BB%C5%BBanetta,681,355,699875213,540,0 +57814,CastAway+%21012,715,596,9314079,5979,9 +57815,050,733,447,849091105,279,0 +57816,Piek%C5%82o+to+inni,652,324,848956765,2216,0 +57817,lorien,294,390,698677650,424,0 +57820,Avanti%21,267,479,698625834,1940,0 +57821,Wioska+barbarzy%C5%84ska,364,306,698160606,1947,0 +57822,Wioska+115,688,642,848971079,1870,0 +57823,%3D127%3D+Wioska+barbarzy%C5%84ska,725,568,3781794,1378,0 +57824,%5B0283%5D,263,500,8630972,3363,0 +57825,Wioska+%C5%BBulionerka,501,495,849066125,254,0 +57826,Bagno+36,473,729,848883684,4123,0 +57827,Wioska+Sir+Moon+Knight,711,402,849094972,143,0 +57828,Wioska+barbarzy%C5%84ska,579,723,849098628,1428,0 +57829,adam3,338,328,6618608,239,0 +57830,.achim.,577,285,6936607,1524,0 +57831,%23203+C,517,737,9037756,784,0 +57832,Wioska+barbarzy%C5%84ska,394,714,849014922,3969,0 +57833,Gwenville+018,450,270,848986638,462,0 +57834,009,264,504,698356304,608,0 +57836,Wioska+barbarzy%C5%84ska,359,690,699704542,2337,0 +57837,Wioska+barbarzy%C5%84ska,730,525,698191218,1748,0 +57838,Wioska+barbarzy%C5%84ska,293,616,3896657,462,0 +57839,018+%7C+North,380,697,699511295,2837,0 +57840,Wioska+barbarzy%C5%84ska,671,333,699072129,2071,0 +57841,.achim.,573,281,6936607,2254,0 +57842,Wioska+Kielce,735,454,849065829,202,0 +57843,Wioska%3F%3F%3F,285,603,699774694,470,0 +57844,New+World,409,717,698152377,3877,0 +57845,0132,698,381,698416970,759,0 +57846,Wioska+barbarzy%C5%84ska,266,460,699213622,620,0 +57847,Wioska+barbarzy%C5%84ska,674,339,699072129,1968,0 +57848,Delaware,730,534,6002527,1231,0 +57849,Wioska+barbarzy%C5%84ska,348,316,3698627,2852,0 +57850,42.,329,665,8665783,1227,0 +57851,North+K25,565,273,699146580,1567,0 +57852,Wioska+macp1,657,668,3750922,2267,0 +57853,Wioska+barbarzy%C5%84ska,318,643,698908184,1467,0 +57854,ChceszPokojuSzykujSi%C4%99DoWojny,472,733,699333701,1031,0 +57855,O113,305,629,272173,6895,1 +57856,P%C3%B3%C5%82nocny+Bagdad,645,313,8847546,667,0 +57857,007+baba,273,544,197581,4201,0 +57858,Wioska+barbarzy%C5%84ska,528,731,699878511,4919,0 +57859,P%C3%B3%C5%82nocny+Bagdad,632,302,8847546,1055,0 +57860,36+barbarzy%C5%84ska+2A,269,447,849018442,2357,0 +57861,Wioska+barbarzy%C5%84ska,642,319,849102068,1160,0 +57862,Wioska+grzesiek576,517,530,7844370,299,0 +57863,Avanti%21,267,468,698625834,827,0 +57864,Wioska+TCH1,265,480,7749444,3988,0 +57865,Avanti%21,271,469,698625834,2230,0 +57866,Opalenica,630,304,849113595,1320,0 +57867,Bunkier,344,674,699805839,2077,0 +57868,Leszno,621,311,849113597,1741,0 +57869,Wioska+barbarzy%C5%84ska,609,704,699828685,2302,0 +57870,PIROTECHNIK+012,339,336,849101083,298,0 +57871,Osada+koczownik%C3%B3w,263,517,698388578,745,7 +57873,Wioska+barbarzy%C5%84ska,425,276,699308637,679,0 +57874,JW94,736,515,849113603,802,0 +57875,MojeDnoToWaszSzczyt,491,267,9299539,5465,0 +57876,Maroko,323,661,7707390,400,0 +57877,%23121%23,655,671,692803,3448,0 +57878,Wioska+barbarzy%C5%84ska,312,352,0,60,0 +57879,Wioska+barbarzy%C5%84ska,385,302,698231772,2437,0 +57880,Sony+911,682,646,1415009,1707,0 +57881,Wioska+barbarzy%C5%84ska,728,532,17714,1082,0 +57882,Zaplecze+Barba+048,341,325,699796330,915,0 +57883,KASHYYYK+4,574,722,699383121,867,0 +57884,225...NORTH,437,279,6920960,1581,0 +57885,K67+17,716,602,698867483,2893,0 +57886,Wioska+pyari,297,393,1371998,2031,0 +57887,CastAway+%23028,709,598,9314079,2589,0 +57889,Kami,738,474,849002796,2205,0 +57890,Wioska+barbarzy%C5%84ska,620,293,849037469,1685,0 +57891,North+058,529,267,849064752,4561,0 +57892,Wioska+barbarzy%C5%84ska,662,338,699072129,3448,0 +57893,Wioska+barbarzy%C5%84ska,556,728,699828442,1737,0 +57894,032+-+Budowanko%21,500,740,7540891,4669,0 +57895,P%C3%B3%C5%82nocny+Bagdad,629,303,8847546,6590,0 +57896,Wioska+barbarzy%C5%84ska,727,552,698666810,2516,0 +57897,PPF-33,570,276,1424656,1224,0 +57899,%21Wioska+barbarzy%C5%84ska+3,582,723,8779575,2830,0 +57900,North+K25,561,272,699146580,1746,0 +57901,Wioska+barbarzy%C5%84ska,326,659,0,328,0 +57902,Wioska+brt007,263,487,699131849,172,0 +57903,Wioska+H+Cezar,275,540,7135037,3701,0 +57904,MojeDnoToWaszSzczyt,458,265,9299539,2379,0 +57905,Wioska+lord+zbyszek1960,528,732,8741336,3207,0 +57906,033,722,584,6160655,1278,0 +57907,Wioska+FreestylerWLKW,608,710,6135387,1320,0 +57908,P%C3%B3%C5%82nocny+Bagdad,639,311,8847546,730,0 +57909,xxx1,537,268,7427966,1225,0 +57910,Wioska+665783847,402,711,699339594,5293,0 +57911,093.+Sufetula,728,455,849091866,4045,0 +57912,KWB7,486,734,9003698,3831,0 +57913,P%C3%B3%C5%82nocny+Bagdad,622,305,8847546,6998,0 +57914,Jannapol,333,342,698806018,1313,0 +57915,Wioska+barbarzy%C5%84ska,618,705,699189792,1281,0 +57916,004,574,726,699730998,275,0 +57918,103+koniec+%C5%9Bwiata,615,705,849093426,1913,0 +57919,038%23+Yaka,488,739,3933666,1179,0 +57920,No+to+jedziemy+%3AD,470,736,699333701,2671,4 +57921,Wioska+b+004,420,274,6343784,900,0 +57922,Osada+koczownik%C3%B3w,716,594,2453888,3547,5 +57923,Wioska+barbarzy%C5%84ska,397,711,849014922,1534,0 +57924,New+WorldA,272,532,849084005,776,0 +57925,033+-+Budowanko%21,494,737,7540891,4472,0 +57926,C0324,268,553,8841266,1852,0 +57927,Wioska+barbarzy%C5%84ska,380,300,699308637,997,0 +57928,%3F%3F%3F%3F,480,272,698489071,2626,0 +57929,Wioska+barbarzy%C5%84ska,730,555,1601917,2237,0 +57930,Wioska+barbarzy%C5%84ska,731,518,698191218,1748,0 +57931,Wioska+barbarzy%C5%84ska,307,377,0,251,0 +57932,%23208+C,507,738,9037756,2145,0 +57933,Wioska+barbarzy%C5%84ska,731,512,698191218,1748,0 +57934,%21Wioska+barbarzy%C5%84ska+1,594,720,8779575,4386,0 +57937,Wioska+Domino00155,736,459,849030062,704,0 +57939,C0321,270,555,8841266,2398,0 +57940,Wioska+barbarzy%C5%84ska,373,694,0,218,0 +57941,091.+Wioska+barbarzy%C5%84ska,730,462,7494497,2792,0 +57942,Wioska+Avgan,329,342,8877462,116,0 +57943,%23127%23,656,682,692803,3059,0 +57944,003+Rohan,523,263,849100383,2522,0 +57945,K67+27,700,619,698867483,1843,0 +57946,Wioska+barbarzy%C5%84ska,317,642,698908184,1643,0 +57947,%3F%3F%3F%3F,460,269,698489071,2626,0 +57948,Wioska+Koza,315,366,849092868,26,0 +57949,%3D%7C44%7C%3D,696,372,9101574,444,0 +57950,Wioska+barbarzy%C5%84ska,303,631,699037086,467,0 +57951,Wioska+barbarzy%C5%84ska,330,657,0,234,0 +57952,PPF-15,523,268,1424656,2309,0 +57953,Dam-Daj,488,270,8062053,1765,0 +57954,Wioska+barbarzy%C5%84ska,318,352,0,329,0 +57955,035Bethlechem,452,727,698620694,3084,0 +57956,Lord+Nc3dyh+6,324,339,699509284,701,0 +57957,Wioska+barbarzy%C5%84ska,346,670,0,278,0 +57958,MojeDnoToWaszSzczyt,503,262,9299539,5448,0 +57959,Avanti%21,268,479,698625834,1519,0 +57960,U-10,643,311,3600737,1850,0 +57961,Wioska+barbarzy%C5%84ska,577,724,849098628,774,0 +57962,%23130%23,663,666,692803,2905,0 +57963,RETURN,725,564,849024152,1121,0 +57964,Wioska,279,586,849086777,327,0 +57965,Wiocha,666,658,849048856,5381,0 +57966,WB12,299,379,356642,2989,0 +57967,%3D%7C41%7C%3D,693,369,9101574,947,0 +57968,Ooo,581,725,849089323,1926,0 +57969,CastAway+%21029,715,599,9314079,3548,0 +57970,Swojak,697,637,8185721,1918,0 +57971,Wioska+barbarzy%C5%84ska,726,424,699628084,6655,6 +57972,TWIERDZA+DAMIK+1,578,277,6143689,4330,0 +57973,Ave+Why%21,510,735,699121671,966,0 +57974,Wioska+robert72,668,664,126954,4824,0 +57975,New+World,436,724,698152377,4749,0 +57976,Wioska+barbarzy%C5%84ska,313,368,699660539,549,0 +57977,New+WorldA,267,540,849084005,745,0 +57978,Wioska+barbarzy%C5%84ska,734,492,6510480,208,0 +57979,Wioska+SirSin+X,481,265,699390457,134,0 +57980,Wioska+barbarzy%C5%84ska,340,332,0,43,0 +57981,Wioska+barbarzy%C5%84ska,321,355,0,318,0 +57982,075,665,333,2502956,2562,0 +57983,Wioska+barbarzy%C5%84ska,356,318,3698627,2505,0 +57984,shadow+%233,262,498,1034117,620,0 +57985,Wioska+barbarzy%C5%84ska,716,409,699598425,2418,0 +57986,gosiaczek,725,551,848977412,3405,0 +57987,Wioska+barbarzy%C5%84ska,301,387,0,436,0 +57988,Wioska+Kubaa333,556,276,849068436,639,0 +57989,CastAway+%21038,728,565,9314079,1859,0 +57990,053+-+Budowanko%21,510,739,7540891,2989,0 +57991,KERTO+03,710,604,7474527,510,0 +57993,Wioska+barbarzy%C5%84ska,308,638,2289134,240,0 +57994,Wioska+barbarzy%C5%84ska,266,465,699213622,923,0 +57995,Wioska+barbarzy%C5%84ska,628,695,6818593,565,0 +57996,Wioska+barbarzy%C5%84ska,396,704,849014922,1659,0 +57997,Wioska+barbarzy%C5%84ska,650,680,0,334,0 +57998,New+World,425,726,698152377,3773,0 +57999,Wioska+barbarzy%C5%84ska,346,321,6169408,434,0 +58000,Wioska+barbarzy%C5%84ska,312,371,699660539,1095,0 +58001,7.62+mm,442,393,699777234,1350,0 +58002,214...NORTH,416,282,6920960,2143,0 +58003,Wioska+barbarzy%C5%84ska,326,650,8175236,348,0 +58004,7.62+mm,437,396,699777234,2474,0 +58005,Telimena+3.,306,631,699037086,890,0 +58006,Wioska+barbarzy%C5%84ska,477,739,699656989,1555,0 +58007,Wioska+barbarzy%C5%84ska,545,725,699878511,3082,0 +58008,Wioska+Driata,281,588,699866271,763,0 +58010,MojeDnoToWaszSzczyt,503,270,9299539,5465,0 +58011,078+obrze%C5%BCa,273,559,699510259,1183,0 +58012,Wioska+barbarzy%C5%84ska,658,322,849111332,929,0 +58013,Wioska+barbarzy%C5%84ska,317,345,0,374,0 +58014,London,418,284,699325506,2711,0 +58015,082+obrze%C5%BCa,273,563,699510259,1150,0 +58016,Wioska+barbarzy%C5%84ska,557,730,699828442,1140,0 +58017,027+-+Budowanko%21,483,733,7540891,4669,0 +58018,Wioska+barbarzy%C5%84ska,605,712,699828685,2790,0 +58019,Wioska+barbarzy%C5%84ska,702,393,699598425,1215,0 +58020,Wioska+barbarzy%C5%84ska,564,723,699828442,1165,0 +58021,KWB9.2,457,734,9003698,1207,0 +58022,Dream+on,296,485,698962117,4136,0 +58023,30+barbarzy%C5%84ska,272,434,849018442,2731,0 +58025,Wioska+barbarzy%C5%84ska,262,505,698356304,126,0 +58026,Wioska+barbarzy%C5%84ska,507,734,849066849,655,0 +58027,Farma,697,366,699867743,1014,0 +58028,RODZYNEK,270,553,6892517,1092,0 +58029,%23013,547,271,849064614,5090,1 +58030,Wioska+a4,425,282,6343784,1479,0 +58031,K67+10,702,619,698867483,3234,0 +58032,Wioska+barbarzy%C5%84ska,306,615,0,315,0 +58033,New+World,422,723,698152377,3967,0 +58034,PIROTECHNIK+010,337,336,849101083,376,0 +58035,Wioska+barbarzy%C5%84ska,407,281,699393759,821,0 +58036,030,733,493,849091105,7761,4 +58038,Wioska+barbarzy%C5%84ska,529,731,699878511,4919,0 +58039,Bzyk,561,725,699443920,3296,0 +58040,Wioska+barbarzy%C5%84ska,534,733,699878511,4999,0 +58041,K67+30,716,601,698867483,1039,0 +58042,Zzz+11+troch%C4%99+za+daleko,280,579,849084740,615,0 +58043,Wioska+barbarzy%C5%84ska,550,724,8015775,436,0 +58044,001+Drewno,266,527,698353083,4809,1 +58047,New+WorldA,269,541,849084005,1549,7 +58049,Wioska+barbarzy%C5%84ska,727,528,698191218,2029,0 +58051,Wioska+Cheltenham,336,340,849106820,690,0 +58052,Wioska+barbarzy%C5%84ska,282,587,698663855,148,0 +58053,083+obrze%C5%BCa,274,557,699510259,1121,0 +58054,009,283,596,698663855,4094,0 +58056,Wioska+barbarzy%C5%84ska,371,699,849014922,338,0 +58057,006,275,459,699844314,325,0 +58058,Wioska+barbarzy%C5%84ska,364,304,698160606,2522,0 +58059,Wioska+MegaMocny,581,724,8806145,2208,0 +58060,NOT%3F,308,358,9236866,2549,0 +58061,Osada+koczownik%C3%B3w,284,603,849047233,3410,2 +58062,Wioska+Arash1,287,587,3462813,195,0 +58063,budowa+06,613,710,7139820,1098,0 +58064,Wioska+ddd121,523,733,2575842,493,0 +58065,%5B0272%5D,262,500,8630972,3381,0 +58066,234+Asuan,469,498,1497168,5867,0 +58067,051+-+Budowanko%21,513,739,7540891,3362,0 +58068,A02,428,282,849038597,1507,0 +58069,Flap,615,292,699098531,4182,0 +58070,Wioska+sebastianxxx19,346,345,849101018,2979,0 +58071,K67+21,704,620,698867483,2248,0 +58072,Wioska+barbarzy%C5%84ska,295,617,2289134,206,0 +58073,Ave+Why%21,518,739,699121671,749,0 +58074,Kami+5,736,471,849002796,837,0 +58075,Wioska+klez+030,263,531,698295651,1531,1 +58076,Wioska+Yeta,288,402,7259690,1770,0 +58077,Ave+Why%21,525,728,699121671,633,0 +58078,Wioska+barbarzy%C5%84ska,372,306,699191449,672,0 +58079,NOT%3F,311,355,9236866,2431,0 +58080,Wioska+fafex,383,700,108256,471,0 +58081,Wioska+barbarzy%C5%84ska,345,317,6169408,720,0 +58082,elo,431,272,849085160,650,0 +58083,Wioska+barbarzy%C5%84ska,284,604,849096972,545,0 +58084,Wioska+barbarzy%C5%84ska,650,677,848987051,5897,0 +58085,02+Wioska+barbarzy%C5%84ska,725,434,8785003,2080,0 +58086,Wioska+barbarzy%C5%84ska,348,678,0,253,0 +58087,Wioska+barbarzy%C5%84ska,292,617,2289134,395,0 +58088,Wioska+barbarzy%C5%84ska,615,300,699098531,1960,0 +58089,North+051,518,264,849064752,4218,0 +58090,033+KTW,731,443,848883237,1918,0 +58091,K42+ADAMUS+023,279,433,6212605,2396,0 +58092,New+WorldA,274,537,849084005,1200,0 +58093,Wioska+gmaciejwagner,726,551,849114022,846,0 +58094,047+-+Budowanko%21,571,729,7540891,3777,0 +58095,%230221+barbarzy%C5%84ska,663,335,1238300,2886,0 +58096,042.+Wioska+barbarzy%C5%84ska,684,348,2873154,588,0 +58097,Wioska+diabolllo,669,341,7982117,1043,0 +58098,Flap,600,283,699098531,3572,0 +58099,-30-,576,719,849032414,2835,1 +58100,C0330,267,549,8841266,1570,0 +58101,Wioska+barbarzy%C5%84ska,322,347,0,464,0 +58102,Wioska+barbarzy%C5%84ska,535,736,699878511,1981,0 +58103,Paris,276,587,2717161,1997,0 +58104,Wioska+barbarzy%C5%84ska,734,505,698191218,1654,0 +58105,O159,314,640,272173,684,0 +58107,%5B0277%5D,264,495,8630972,3697,0 +58108,002,297,614,849100796,3951,0 +58109,North+068,514,262,849064752,4778,0 +58111,Bagno+40,466,736,848883684,2633,0 +58112,Wioska+Artok,289,403,849097477,1418,0 +58113,Wioska+barbarzy%C5%84ska,728,537,698191218,822,0 +58114,Wioska+Moddark,645,678,6670484,26,0 +58115,XDX,611,295,699098531,3391,0 +58116,Wyspa+031,297,565,225023,1149,0 +58117,Wioska+barbarzy%C5%84ska,372,307,698160606,2575,6 +58118,Wioska+barbarzy%C5%84ska,739,513,698191218,563,0 +58119,North+025,511,267,849064752,6803,7 +58120,Wioska+barbarzy%C5%84ska,669,332,699072129,1950,0 +58121,103,737,488,7085502,1989,0 +58122,Wioska+barbarzy%C5%84ska,540,736,0,279,0 +58123,Wioska+barbarzy%C5%84ska,685,348,849095068,287,0 +58124,Wioska+korek62,338,664,7422002,1373,0 +58125,Wioska+Addamus,306,441,371910,1874,0 +58126,%5B0273%5D,263,491,8630972,3773,0 +58127,Wioska+barbarzy%C5%84ska,674,343,7973893,2427,0 +58128,Polna,415,294,2801913,612,0 +58129,13.+Ford,460,736,849100262,3006,0 +58130,Junak,471,267,849114085,1951,0 +58131,WZ09,702,624,7142659,1939,0 +58132,Piorunek1996+Wie%C5%9B+..3..+PPF-28,524,266,849066618,1279,0 +58133,Wioska+barbarzy%C5%84ska,565,724,699828442,1138,0 +58134,elo,432,271,849085160,975,6 +58136,Wioska+barbarzy%C5%84ska,540,733,699878511,2639,0 +58137,-004-,731,490,7418168,3825,0 +58138,Wioska+Sir+Christopher+Last,629,483,699781390,792,0 +58139,Wioska+barbarzy%C5%84ska,298,621,2289134,362,0 +58140,X.05,729,449,699737356,1516,0 +58141,P%C3%B3%C5%82nocny+Bagdad,623,306,8847546,3821,0 +58142,%5B216%5D,723,423,8000875,693,0 +58143,Kami+3,736,475,849002796,1505,0 +58144,ROBI%C4%98+HETMANA,726,566,849018780,1211,0 +58145,ble,621,700,848909464,4132,0 +58146,Wioska+Geamel,421,725,9282974,26,0 +58147,Na+SsSskraju,276,573,1536625,307,0 +58148,Bunkier,344,676,699805839,363,0 +58149,Zaplecze+Barba+033,356,321,699796330,4076,0 +58150,089.+Wioska+barbarzy%C5%84ska,735,459,7494497,2796,0 +58151,127.Stradi,439,275,698365960,1236,0 +58152,P%C3%B3%C5%82nocny+Bagdad,639,313,8847546,1058,0 +58153,%23001+Chicago,332,664,849101276,2205,0 +58154,Wioska+barbarzy%C5%84ska,728,476,698191218,1021,0 +58155,P%C3%B3%C5%82nocny+Bagdad,630,302,8847546,6342,0 +58156,%5DZachowek%5B,536,737,192947,2376,0 +58157,Wioska+barbarzy%C5%84ska,539,731,699878511,3216,0 +58158,Wioska+skwr85,723,551,849104121,1977,0 +58159,Wioska+barbarzy%C5%84ska,269,505,0,235,0 +58160,Na+SsSskraju,276,571,1536625,775,0 +58161,39.,331,668,8665783,705,0 +58162,New+World,435,728,698152377,3110,9 +58163,Wioska+barbarzy%C5%84ska,261,489,0,149,0 +58164,Wioska+gall7,266,471,699598396,733,0 +58165,Maryna+2,268,457,699650981,1863,0 +58166,Sony+911,673,653,1415009,4068,0 +58167,Wioska+barbarzy%C5%84ska,730,443,699347951,540,0 +58168,North+081,487,262,849064752,4177,0 +58170,Wioska+barbarzy%C5%84ska,543,266,849010386,924,0 +58171,Gandalf,680,641,849112504,3099,0 +58172,Wioska+krycha9867,690,361,6995252,278,0 +58173,Wioska+lord+leoni,272,459,8897100,884,0 +58175,Wioska+barbarzy%C5%84ska,732,557,1601917,1817,0 +58176,Zak%C5%82ad,262,474,848977600,1963,2 +58177,Wioska+lukaszking2,271,512,128353,129,0 +58178,Wioska+Lord+%C5%81ukasz1997,512,739,9097545,2092,0 +58179,rohan,293,396,698677650,1410,0 +58180,PPF-44,500,263,1424656,385,0 +58181,Wioska+barbarzy%C5%84ska,381,703,849014922,1254,0 +58182,Elo+Elo+20,280,584,699016994,930,0 +58183,Wioska+barbarzy%C5%84ska,597,718,7589468,1550,0 +58184,Wiocha+7,559,723,849045675,2354,0 +58185,XDX,606,286,699098531,3641,0 +58186,Wioska+Robert+Nowakowski+Jan,429,277,849101396,26,0 +58187,Wioska+barbarzy%C5%84ska,301,380,0,421,0 +58188,Wioska+1,266,510,849114265,8219,0 +58189,MojeDnoToWaszSzczyt,464,268,9299539,2825,0 +58190,Wioska+exim,714,607,699858532,502,0 +58191,Wioska+barbarzy%C5%84ska,729,528,8323711,488,0 +58192,%23401+F,445,723,9037756,1568,0 +58193,Wioska+barbara,419,285,3411571,4090,0 +58194,Wioska+marq135,293,605,699598671,1160,0 +58195,Nowe+Dobra+-+budowa,690,629,699759128,3513,0 +58196,080+obrze%C5%BCa,273,562,699510259,990,0 +58197,C0322,268,554,8841266,2141,0 +58198,Sony+911,677,658,1415009,2243,0 +58199,Wioska+maniu%C5%9B1968,272,468,7575174,1084,0 +58200,Wioska+barbarzy%C5%84ska,333,337,0,350,0 +58201,Wioska+barbarzy%C5%84ska,733,548,17714,431,0 +58202,Wioska+Marczelok5,564,730,849065742,270,0 +58203,089+obrze%C5%BCa,270,563,699510259,632,0 +58204,sony911,691,639,1415009,1193,0 +58205,Avanti%21,265,479,698625834,1215,0 +58206,Wioska+bunu,308,369,849050087,3707,0 +58207,Wioska+barbarzy%C5%84ska,723,412,6510480,275,0 +58208,Wioska+barbarzy%C5%84ska,592,712,848909464,2271,0 +58209,Wioska+barbarzy%C5%84ska,404,717,849014922,3752,0 +58210,DCS,725,446,699687328,2399,0 +58211,032.+Brauer92,704,376,2873154,4042,5 +58212,Wioska+barbarzy%C5%84ska,739,522,698191218,1748,0 +58213,P%C3%B3%C5%82nocny+Bagdad,625,305,8847546,3427,0 +58214,035.+Gloria+Victis,282,571,848886973,4008,0 +58215,Wioska+przemomam,697,632,9147518,2253,0 +58216,SKUTE+BO+BO,288,603,699774694,1035,0 +58217,Wioska+barbarzy%C5%84ska,579,280,699146580,785,0 +58218,Wioska+barbarzy%C5%84ska,540,735,699878511,4292,0 +58219,%5B001%5D+Wiesz+nie,662,323,699477624,4752,0 +58220,Sony+911,687,646,1415009,3824,0 +58221,Wioska+barbarzy%C5%84ska,345,325,8772425,455,0 +58222,ChceszPokojuSzykujSi%C4%99DoWojny,470,734,699333701,1732,7 +58223,ble,623,700,848909464,2995,0 +58224,095+koniec+%C5%9Bwiata,622,705,849093426,2992,0 +58225,238...North,445,276,6920960,1123,0 +58226,FP047,469,733,699605333,3980,0 +58227,088.+Wioska+barbarzy%C5%84ska,731,471,7494497,2741,0 +58228,C0319,272,522,8841266,2361,0 +58229,Taka.,484,729,848999671,979,0 +58230,%5B001%5D+Sqaza,269,456,6692351,1381,0 +58231,Wioska+II,313,651,849095948,497,0 +58232,XDX,599,282,699098531,3673,6 +58233,Wioska+barbarzy%C5%84ska,401,719,849014922,1659,0 +58234,%40%40%40%40,264,523,698879638,1130,0 +58235,P%C3%B3%C5%82nocny+Bagdad,609,292,8847546,1720,0 +58236,Wioska+barbarzy%C5%84ska,532,729,699878511,3449,0 +58237,Wioska+barbarzy%C5%84ska,321,656,0,231,0 +58238,Wioska+barbarzy%C5%84ska,662,328,699072129,2522,0 +58239,Wioska+barbarzy%C5%84ska,674,336,699072129,1498,0 +58240,Wioska+barbarzy%C5%84ska,727,543,848946700,958,0 +58241,Twierdza+%28PRS%29,704,434,0,2608,25 +58242,Wioska+barbarzy%C5%84ska,293,399,0,99,0 +58243,Wioska+barbarzy%C5%84ska,331,663,0,131,0 +58244,0000044Z,267,558,849089881,683,0 +58245,Experience,656,573,848926293,651,0 +58246,PPF-17,517,266,1424656,2046,0 +58247,181+Wioska,494,266,3499467,347,0 +58248,Zaplecze+Barba+049,341,328,699796330,1068,0 +58249,Osada+koczownik%C3%B3w,327,654,8175236,717,2 +58250,Wioska+barbarzy%C5%84ska,718,411,0,2693,0 +58251,Wioska+barbarzy%C5%84ska,315,360,0,266,0 +58252,Ghostmane9,726,455,848896434,530,0 +58253,KONFA+TO+MARKA%2C+NARKA,269,445,698152377,3464,0 +58254,Wioska+Arlosik,514,261,849112960,1394,0 +58256,Wioska+barbarzy%C5%84ska,681,346,848932879,336,0 +58257,Wz07,706,602,7142659,2334,0 +58258,Wioska+barbarzy%C5%84ska,548,730,699878511,2638,0 +58259,%23142%23,649,676,692803,1223,0 +58260,MojeDnoToWaszSzczyt,506,267,9299539,5385,0 +58261,Osada+koczownik%C3%B3w,655,325,849092309,853,4 +58262,Wioska+AP1997,720,422,9095581,2212,0 +58264,%23025,552,268,849064614,2215,0 +58265,Wioska+barbarzy%C5%84ska,586,346,698200480,895,0 +58266,Osada+koczownik%C3%B3w,302,375,0,269,2 +58267,Wioska+barbarzy%C5%84ska,643,308,3600737,972,0 +58268,0119,702,377,698416970,711,0 +58269,A%23047,738,469,2065730,5393,6 +58270,Wioska+Ragnarok+76,592,287,849114408,1027,0 +58271,Wioska+barbarzy%C5%84ska,538,737,699878511,2445,0 +58272,Wioska+barbarzy%C5%84ska,328,657,0,251,0 +58273,Wioska+slawekx28,619,708,6766467,255,0 +58274,North+052,514,260,849064752,4270,0 +58276,Wioska+001,731,552,7751626,508,0 +58277,PPF-31,566,277,1424656,1066,0 +58278,Twierdza+%28KOMY%29,386,600,0,6873,32 +58279,Kolonia,384,303,699588526,469,0 +58280,235+Bombaj,483,510,1497168,1850,0 +58281,093+koniec+%C5%9Bwiata,614,701,849093426,2273,0 +58282,Wioska+barbarzy%C5%84ska,367,695,0,382,0 +58283,Wioska+barbarzy%C5%84ska,370,300,849017820,668,0 +58284,X.06,728,438,699737356,1616,0 +58285,Wioska+barbarzy%C5%84ska,424,274,699191455,684,0 +58286,WZ15,688,633,7142659,791,0 +58287,Defini,444,268,699308637,585,0 +58288,Wioska+barbarzy%C5%84ska,375,703,849014922,314,0 +58289,adam1,336,330,6618608,929,0 +58290,o017,625,702,699189792,3506,0 +58291,056,687,355,849091105,328,0 +58292,MojeDnoToWaszSzczyt,478,261,9299539,4277,5 +58295,Zaplecze+Barba+050,346,328,699796330,1338,0 +58297,North+K25,555,272,699146580,1963,0 +58298,C0335,265,528,8841266,981,0 +58299,009,286,591,698663855,3979,0 +58300,Wioska+Ale+AHMED,319,640,7687862,338,0 +58301,PPF-14,517,271,1424656,2510,0 +58302,Wioska+barbarzy%C5%84ska,302,367,0,300,0 +58303,%23028,554,266,849064614,1984,0 +58304,40.,332,666,8665783,771,0 +58305,o019,629,699,699189792,3092,0 +58306,Wioska+barbarzy%C5%84ska,496,733,848999671,901,0 +58307,Taka.,479,736,848999671,1535,0 +58309,%3F%3F%3F%3F,491,264,698489071,4898,0 +58310,Wioska+barbarzy%C5%84ska,459,272,849090573,286,0 +58311,%23141%23,669,669,692803,1213,0 +58312,Wioska+barbarzy%C5%84ska,348,679,0,330,0 +58313,Wioska+barbarzy%C5%84ska,376,702,849014922,344,0 +58314,Wioska+barbarzy%C5%84ska,380,704,849014922,1020,0 +58315,rycho+13,739,495,2819768,1827,0 +58316,Wioska+barbarzy%C5%84ska,738,511,6510480,869,0 +58317,Wioska+barbarzy%C5%84ska,603,290,699098531,1533,0 +58318,PPF-18,525,270,1424656,1828,0 +58319,Wioska+barbarzy%C5%84ska,314,649,2289134,232,0 +58320,P%C3%B3%C5%82nocny+Bagdad,610,287,8847546,1884,0 +58321,Wioska+barbarzy%C5%84ska,424,272,699191449,572,0 +58322,Wioska+Stefan+Escobar,366,312,699399386,26,0 +58323,Wioska+barbarzy%C5%84ska,733,468,699524891,1794,0 +58324,Wioska+barbarzy%C5%84ska,268,516,0,336,0 +58325,A10,715,586,3692413,857,0 +58326,Wioska+barbarzy%C5%84ska,689,358,848915730,704,0 +58327,North+K25,566,278,699146580,1493,0 +58328,BIMBER+4,441,278,6857973,941,0 +58330,K67+14,702,623,698867483,3434,0 +58332,%23209+C,516,730,9037756,1289,0 +58333,Kapitol_29,510,729,606407,1069,7 +58334,Wioska+barbarzy%C5%84ska,314,636,0,219,0 +58335,Wioska+barbarzy%C5%84ska,638,684,848987051,4081,0 +58336,Wioska+barbarzy%C5%84ska,653,676,848987051,3223,0 +58337,Wioska+barbarzy%C5%84ska,320,356,0,342,0 +58338,Wioska+barbarzy%C5%84ska,725,422,699628084,442,0 +58339,Wioska+barbarzy%C5%84ska,736,538,17714,787,0 +58340,Wioska+barbarzy%C5%84ska,383,703,0,505,0 +58341,Flap,598,286,699098531,3779,0 +58342,Wioska+CrazyJack,599,281,699835178,182,0 +58344,U-11,647,310,3600737,2066,0 +58346,Bar,668,662,849048856,3731,0 +58347,New+WorldA,276,545,849084005,713,0 +58348,0-16,696,360,3600737,1645,0 +58349,Wioska+barbarzy%C5%84ska,289,592,849103947,190,0 +58350,Alamo5,719,569,2723244,1405,0 +58351,28+barbarzy%C5%84ska,271,437,849018442,2619,0 +58352,Wioska+Zoso2000o,277,413,3639628,2115,0 +58353,Wioska+009,732,503,2999957,2516,0 +58354,04+Wioska+barbarzy%C5%84ska,725,435,8785003,847,0 +58355,37barbarzy%C5%84ska+2B,273,431,849018442,2191,0 +58357,Wioska+barbarzy%C5%84ska,348,326,8772425,544,0 +58358,128.Stradi,395,295,698365960,2485,0 +58359,Wioska+Wieslaw+5,512,270,699794421,1194,0 +58360,Wioska+barbarzy%C5%84ska,531,728,699878511,2363,0 +58361,Wioska+semunus,319,353,699776412,26,0 +58362,002,276,585,699730998,478,0 +58363,Wioska+barbarzy%C5%84ska,406,713,849014922,539,0 +58364,Taka.,482,735,848999671,1441,0 +58365,Wioska+Ksi%C4%99%C5%BCnaAnna,378,302,699491827,743,0 +58366,138.Stradi,401,293,698365960,860,0 +58367,godziwa,268,476,1095271,1960,0 +58368,Wioska+barbarzy%C5%84ska,382,700,849014922,499,0 +58369,Wioska+barbarzy%C5%84ska,452,272,699308637,444,0 +58370,New+World,420,724,698152377,3642,0 +58371,Osada+koczownik%C3%B3w,622,696,698353083,799,8 +58372,043.+Mercel,681,344,2873154,385,0 +58374,Sony+911,672,659,1415009,3372,0 +58375,Wioska+KRIS+74+PL,298,377,9029627,26,0 +58376,Wioska+barbarzy%C5%84ska,702,380,698702991,1192,0 +58378,Wioska+barbarzy%C5%84ska,523,736,699878511,3270,0 +58379,FENIX,389,296,9016464,3491,0 +58380,adam2,337,327,6618608,728,0 +58381,Wioska+robosm3352,267,516,1684948,108,0 +58382,Elo+Elo+19,279,584,699016994,1173,0 +58383,akuku,549,730,6425087,5130,0 +58384,New+WorldA,267,530,849084005,868,0 +58386,098+koniec+%C5%9Bwiata,626,702,849093426,1934,0 +58387,%2B01,397,291,699741694,1739,0 +58388,Wioska+barbarzy%C5%84ska,675,341,699072129,1451,0 +58389,Osada+koczownik%C3%B3w,530,263,699799629,2163,9 +58390,Wioska+Banan123,565,270,849112887,1214,0 +58391,%5BJ%5Desiotr,275,546,849106971,471,0 +58392,Wioska+barbarzy%C5%84ska,471,733,848999671,379,0 +58393,WB49,303,365,356642,363,0 +58394,Wioska+barbarzy%C5%84ska,429,271,699191464,718,0 +58395,Wioska+barbarzy%C5%84ska,377,306,698160606,2388,0 +58396,Wioska+jaworbog,712,392,2256843,701,0 +58397,Wioska+b+005,404,292,6343784,865,0 +58398,KONFA+TO+MARKA%2C+NARKA,275,430,698152377,2029,0 +58399,%5B0242%5D,268,495,8630972,3785,0 +58400,Piek%C5%82o+to+inni,655,323,848956765,1664,0 +58401,Bunkier,343,675,699805839,356,0 +58402,Wioska+barbarzy%C5%84ska,306,640,2289134,203,0 +58403,6.+Meleys,273,578,849089499,644,0 +58404,Wioska+barbarzy%C5%84ska,314,635,2289134,198,0 +58405,0-17,644,308,3600737,1478,0 +58406,Wioska+barbarzy%C5%84ska,712,411,8459255,3339,0 +58407,Wioska+barbarzy%C5%84ska,405,290,698231772,1655,0 +58408,Wioska+barbarzy%C5%84ska,281,598,699396429,412,0 +58409,North+096,487,261,849064752,4238,0 +58410,Wioska+barbarzy%C5%84ska,298,610,0,411,0 +58411,%23045,552,272,849064614,492,0 +58412,Wioska+barbarzy%C5%84ska,264,543,699065686,133,0 +58413,A03,425,283,849038597,2110,0 +58414,Wioska+barbarzy%C5%84ska,706,397,699598425,2667,0 +58415,099.+Wioska+barbarzy%C5%84ska,728,465,7494497,1827,0 +58416,099+Wioska+barbarzy%C5%84ska,541,269,699854484,4136,0 +58417,Wioska+robertos1,597,287,699148121,1627,0 +58418,%23400+F,446,723,9037756,2162,0 +58419,041,709,405,849091105,1216,0 +58420,Wioska+barbarzy%C5%84ska,638,690,848987051,4501,0 +58421,%230255+barbarzy%C5%84ska,442,276,1238300,702,0 +58422,CastAway+%21027,716,592,9314079,4010,0 +58423,Wioska+barbarzy%C5%84ska,357,307,3484132,2247,0 +58424,%230084,582,718,1536231,2118,0 +58425,Wioska+Sir+zombi,684,637,848964811,792,0 +58426,41+barbarzy%C5%84ska+3B,272,442,849018442,1959,0 +58427,%23133%23,673,667,692803,1954,0 +58428,New+World,425,723,698152377,3335,0 +58429,181.01,329,347,7221139,5283,0 +58430,Wioska+barbarzy%C5%84ska,728,453,699347951,766,0 +58431,054,739,526,849091105,157,0 +58432,Wioska+barbarzy%C5%84ska,326,656,0,344,0 +58433,Wioska+sasa,531,615,2613743,4593,0 +58434,%23143%23,668,671,692803,1216,0 +58435,%C5%9Aw181%2A007,666,341,959179,726,0 +58436,Wioska+barbarzy%C5%84ska,267,509,1227918,228,0 +58437,Wioska+barbarzy%C5%84ska,656,320,698895940,1101,0 +58438,Wioska+markam27,408,714,8651917,1452,0 +58439,Wioska+barbarzy%C5%84ska,527,266,699799629,1635,0 +58440,Wioska+barbarzy%C5%84ska,579,273,699146580,578,0 +58442,Wioska+barbarzy%C5%84ska,621,293,849037469,2636,0 +58443,065KP,472,266,849063849,866,0 +58444,X.08,727,451,699737356,1061,0 +58446,%23046,550,270,849064614,869,0 +58447,003.+Czysta,454,274,602408,2490,0 +58448,Wioska+BiiLii,265,468,849110726,162,0 +58449,Wioska+malwina1,326,651,9053254,976,0 +58450,025,709,595,6160655,1235,0 +58452,0116,708,384,698416970,1273,0 +58453,NOT%3F,310,353,9236866,3518,7 +58454,Wioska+Ar%C4%85Staro,389,288,848935732,2032,0 +58455,Wioska+barbarzy%C5%84ska,379,293,698160606,2013,0 +58456,North+K25,537,272,699146580,1346,0 +58457,Wioska+barbarzy%C5%84ska,365,303,698160606,2543,0 +58458,Wioska+barbarzy%C5%84ska,647,689,848987051,3291,0 +58459,Wioska+barbarzy%C5%84ska,299,610,0,378,0 +58460,013,401,286,699694284,4328,2 +58461,085+obrze%C5%BCa,274,564,699510259,949,0 +58462,Wioska+barbarzy%C5%84ska,731,551,1601917,2105,0 +58463,04Osada+koczownik%C3%B3w,356,683,699704542,5564,2 +58465,Wioska+barbarzy%C5%84ska,673,342,7973893,1171,0 +58466,Wioska+barbarzy%C5%84ska,325,336,0,71,0 +58467,Wioska+barbarzy%C5%84ska,339,333,0,240,0 +58468,Zaplecze+Barba+034,363,316,699796330,2578,0 +58469,Wioska+barbarzy%C5%84ska,365,688,0,178,0 +58470,KONFA+TO+MARKA%2C+NARKA,275,423,698152377,2022,0 +58471,Wioska+barbarzy%C5%84ska,644,681,848987051,4856,0 +58472,Zb%C4%85szynek,676,658,7520280,4046,0 +58473,%5B215%5D,722,423,8000875,742,0 +58474,Katowice,677,343,848932879,760,0 +58475,Wioska+Monczi29i,677,662,849114477,198,0 +58476,Wioska+barbarzy%C5%84ska,733,517,698191218,2000,0 +58477,Wioska+barbarzy%C5%84ska,317,348,0,149,0 +58478,Za+dolinami,283,412,699821629,1599,0 +58480,KONFA+TO+MARKA%2C+NARKA,286,397,698152377,1364,0 +58481,046,717,403,849091105,566,0 +58482,twoja+stara,719,416,9095581,972,0 +58483,Wioska+barbarzy%C5%84sko,604,713,7756002,1447,0 +58484,Wioska+barbarzy%C5%84ska,355,315,3698627,2107,0 +58485,46+barbarzy%C5%84ska,271,452,849018442,869,0 +58486,Wioska+barbarzy%C5%84ska,352,687,0,312,0 +58487,P%C3%B3%C5%82+2,438,277,849096310,466,0 +58488,C0306,275,549,8841266,3216,0 +58490,WZ10,713,609,7142659,1702,0 +58491,Wioska+barbarzy%C5%84ska,264,535,1095489,358,0 +58492,%23144%23,650,674,692803,1047,0 +58493,North+059,513,266,849064752,5271,0 +58494,o024,626,700,699189792,2027,0 +58495,Flap,599,289,699098531,3425,0 +58496,Wioska+perfekcja,653,684,1286008,3836,0 +58497,067KP,464,274,849063849,735,0 +58498,Wioska+barbarzy%C5%84ska,633,307,0,108,0 +58499,Wioska+barbarzy%C5%84ska,612,704,699828685,1528,0 +58500,Wiriatus+BD84,366,686,9021037,1979,0 +58501,Osada+koczownik%C3%B3w,577,720,7581876,1880,4 +58502,Wioska+barbarzy%C5%84ska,544,727,699878511,2102,0 +58503,Wioska+barbarzy%C5%84ska,602,293,699098531,1357,0 +58504,Wioska+barbarzy%C5%84ska,732,444,849095435,440,0 +58505,North+K25,554,267,699146580,1491,0 +58506,Wioska+barbarzy%C5%84ska,314,652,6892517,314,0 +58507,Osada+koczownik%C3%B3w,690,362,609384,1048,3 +58508,%23139%23,671,665,692803,1216,0 +58510,Wioska+barbarzy%C5%84ska,295,623,2289134,534,0 +58511,Wioska+barbarzy%C5%84ska,651,680,848987051,3291,0 +58512,%7CD%7C+IS,455,725,698147372,1771,0 +58513,Wioska+czarekpol,725,417,849103644,99,0 +58514,Morelowy+Sad,444,729,7526090,1036,0 +58515,090.+Wioska+barbarzy%C5%84ska,736,462,7494497,2708,0 +58516,Wioska+Sir+dziadekk19,724,432,849032027,761,0 +58517,%23029,555,268,849064614,2018,0 +58518,Wioska+Nadav,553,728,849083534,2056,0 +58519,Wioska+klez+031,284,606,698295651,379,0 +58520,38+barbarzy%C5%84ska+2A,269,444,849018442,1630,0 +58521,Wioska+barbarzy%C5%84ska,680,341,699072129,1247,0 +58522,61+barbarzy%C5%84ska,271,440,849018442,555,0 +58523,Wioska+barbarzy%C5%84ska,733,557,1601917,757,0 +58524,Wioska+oisaj-org,358,683,7067846,26,0 +58525,034,729,564,6160655,642,0 +58526,bandzior,506,737,606407,4191,0 +58527,Wioska+barbarzy%C5%84ska,740,487,698191218,925,0 +58528,Wioska+siedlik12345,419,722,849098477,1362,0 +58529,043.xxx,521,736,8612358,1096,0 +58531,Wioska+barbarzy%C5%84ska,321,649,0,337,0 +58532,Wioska+barbarzy%C5%84ska,337,668,0,241,0 +58533,Wioska+barbarzy%C5%84ska,385,701,849014922,1355,0 +58534,Wioska+barbarzy%C5%84ska,735,551,1601917,1131,0 +58535,Wioska+barbarzy%C5%84ska,602,292,699098531,1165,0 +58536,0000046Z,270,568,849089881,483,0 +58537,Wioska+barbarzy%C5%84ska,484,737,848999671,642,0 +58538,bla+bla,260,511,849091084,520,0 +58539,Wioska+game777,689,632,849071883,94,0 +58540,KONFA+TO+MARKA%2C+NARKA,274,418,698152377,2116,0 +58541,Wioska+bbbarteqqq,389,289,699589540,324,0 +58542,%5B0243%5D,268,498,8630972,4005,0 +58543,Wioska+Sessue,739,493,699099385,43,0 +58544,Wioska+barbarzy%C5%84ska,733,555,1601917,864,0 +58545,050+-+Budowanko%21,510,736,7540891,3045,0 +58546,Wioska+barbarzy%C5%84ska,280,598,0,177,0 +58547,Gruszczyn,499,263,849115431,686,0 +58548,Wioska+Kross+x+Smerf,545,270,9280679,26,0 +58549,034.+Charfa,693,368,2873154,2686,0 +58550,Wioska+barbarzy%C5%84ska,729,534,17714,570,0 +58551,Wioska+barbarzy%C5%84ska,662,671,0,598,0 +58552,Wioska+barbarzy%C5%84ska,548,732,699878511,3299,0 +58553,Wioska+barbarzy%C5%84ska,685,638,1415009,138,0 +58554,Wioska+barbarzy%C5%84ska,302,635,2289134,445,0 +58555,ONR+1,657,318,9090040,5144,0 +58556,XDX,616,298,699098531,3424,0 +58557,%23147%23,662,669,692803,1048,0 +58558,Wioska+barbarzy%C5%84ska,563,268,699146580,994,0 +58559,0002,556,396,7271812,2822,0 +58560,%C5%81OPALENICA,628,306,848922958,199,0 +58561,Wioska+barbarzy%C5%84ska,274,584,849097937,1274,0 +58563,Kapitol_23,508,730,606407,920,5 +58564,North+K25,568,273,699146580,1491,0 +58565,Wioska+barbarzy%C5%84ska,359,691,0,230,0 +58566,CSA+forever,593,282,699448276,2490,0 +58567,29+barbarzy%C5%84ska,270,437,849018442,2315,0 +58568,Osada+koczownik%C3%B3w,400,719,849014922,4494,8 +58569,flagi,365,687,603968,2040,0 +58570,0006,679,351,849101889,317,0 +58572,021+Z,735,495,699718269,1800,6 +58574,0117,704,379,698416970,953,0 +58576,Wioska+barbarzy%C5%84ska,274,574,1536625,426,0 +58577,Avanti%21,265,481,698625834,1246,0 +58578,0x01,576,656,439825,1560,0 +58579,Wioska+robsona,294,616,3896657,3159,0 +58580,New+World,431,728,698152377,3494,0 +58581,Gwenville+015,453,265,848986638,627,0 +58582,Wioska+AndrewwXYZ,561,730,698897472,1310,0 +58583,Wioska+barbarzy%C5%84ska,729,428,699628084,633,0 +58584,Wioska+barbarzy%C5%84ska,302,627,2289134,481,0 +58585,021+%7C+North,375,693,699511295,1152,0 +58586,Wioska+114,685,645,848971079,1771,0 +58587,Wioska+barbarzy%C5%84ska,378,297,849017820,665,0 +58588,Wioska+barbarzy%C5%84ska,313,360,0,135,0 +58589,C.063,730,479,9188016,940,0 +58590,Wioska+pit71,267,534,6395848,3436,0 +58591,Wioska+barbarzy%C5%84ska,339,667,0,372,0 +58592,rt27+o,497,733,698623373,1262,0 +58593,124,730,451,849088515,3488,0 +58594,028,460,728,8268010,1189,0 +58595,5.+Seasmoke,276,581,849089499,902,0 +58597,..1,690,363,698420691,5363,0 +58598,Wioska+Velsaniq,269,502,849083942,26,0 +58599,FP055,450,727,699605333,2812,0 +58600,North+097,491,268,849064752,3475,0 +58601,Wioska+blatio,731,569,699518454,3307,0 +58602,%3F%3F%3F%3F,462,272,698489071,3501,0 +58603,Zaplecze+Barba+045,353,313,699796330,1215,0 +58604,Wioska+barbarzy%C5%84ska,531,738,699878511,3202,0 +58605,Wioska+barbarzy%C5%84ska,702,391,699598425,1880,0 +58606,Wioska+barbarzy%C5%84ska,352,676,0,372,0 +58607,TOLCIA+6,644,319,699868739,51,0 +58608,XDX,606,292,699098531,3304,0 +58609,North+K25,577,279,699146580,1266,0 +58610,Wioska+Unknown,514,739,9124682,150,0 +58611,109+Wioska+barbarzy%C5%84ska,587,280,699854484,787,0 +58613,KONFA+TO+MARKA%2C+NARKA,277,423,698152377,4353,5 +58614,Wioska+KiepLach,741,505,699705910,26,0 +58615,109.+Rollayna,694,628,8337151,2264,0 +58616,%23150%23,644,690,692803,975,0 +58617,Wioska+barbarzy%C5%84ska,561,724,699828442,1138,0 +58618,North+102,477,262,849064752,2373,0 +58619,Zarezerwowana.,723,416,8478874,5802,0 +58621,%23136%23,665,668,692803,1833,0 +58622,Monkey,305,361,699803939,908,0 +58623,Wioska+barbarzy%C5%84ska,739,506,6510480,833,0 +58625,%3D128%3D+Wioska+barbarzy%C5%84ska,727,569,3781794,893,0 +58626,K67+39,700,618,698867483,298,0 +58627,Wioska+barbarzy%C5%84ska,667,338,699072129,3237,0 +58628,FP053,438,732,699605333,2450,0 +58629,Wioska+barbarzy%C5%84ska,731,565,7528491,723,0 +58630,Jelenia+G%C3%B3ra,674,655,848932879,2776,3 +58631,Wioska+20,731,568,2999957,1245,0 +58632,Wioska+b+006,403,288,6343784,516,0 +58633,Osada+koczownik%C3%B3w,728,557,698666810,5270,1 +58634,Wioska+Seylito,342,332,699283869,1884,0 +58635,33+barbarzy%C5%84ska+A,268,449,849018442,2591,0 +58636,025.+Osada+koczownik%C3%B3w,690,354,2873154,4110,4 +58637,Wioska+Firau,381,295,849105613,557,0 +58638,Wioska+barbarzy%C5%84ska,315,639,2289134,242,0 +58639,Wioska+mirmyn,276,436,698190039,1355,0 +58640,Wioska+barbarzy%C5%84ska,377,707,849014922,2362,0 +58641,Wioska+GeraltV47,710,613,699850967,351,0 +58642,Wioska+barbarzy%C5%84ska,267,502,0,253,0 +58644,C0325,265,518,8841266,1872,0 +58645,Bessa+018,651,683,848987051,5897,9 +58647,North+082,514,270,849064752,3169,0 +58648,Wioska+barbarzy%C5%84ska,727,578,2453888,2663,0 +58651,Zadaleko,281,412,699821629,1368,0 +58652,Wioska+WiktorTraktor,736,469,849095430,4049,0 +58653,Wioska+barbarzy%C5%84ska,729,543,8323711,489,0 +58654,K67+31,717,604,698867483,1259,0 +58655,sony911,688,644,1415009,1204,0 +58656,Wioska+falat030,633,700,698542183,59,0 +58657,%23210+C,507,737,9037756,1140,0 +58658,Wioska+Lord+lukis2012,306,639,698931404,1718,0 +58659,K67+19,716,605,698867483,1801,0 +58660,elo,434,275,849085160,263,0 +58661,Wioska+barbarzy%C5%84ska,626,704,699372829,214,0 +58662,Wioska+Paveulon,734,463,849075298,1190,0 +58663,Piek%C5%82o+to+inni,656,322,848956765,942,0 +58664,Wioska+KOMANDOR+PIERWSZY,384,711,796977,492,0 +58665,83Krzysiek83,564,278,849072703,869,0 +58666,%230262+colt9,433,277,1238300,653,0 +58667,212...NORTH,420,276,6920960,2262,0 +58668,Wioska+Terada,525,739,849052488,358,0 +58669,MojeDnoToWaszSzczyt,479,267,9299539,4111,0 +58670,A%23044,728,469,2065730,6553,5 +58671,123.Stradi,448,273,698365960,1753,0 +58672,North+060,512,260,849064752,4391,0 +58673,Wioska+Szujski+Mastess+Team,721,406,3487933,429,0 +58674,KONFA+TO+MARKA%2C+NARKA,274,435,698152377,3597,0 +58675,Wioska+Antoni93,567,720,87825,41,0 +58676,C0323,267,523,8841266,2137,0 +58678,Wioska+barbarzy%C5%84ska,740,507,6510480,869,0 +58681,Za+g%C3%B3rami,282,412,699821629,2901,0 +58682,Sony+911,686,652,1415009,515,0 +58683,Wioska+barbarzy%C5%84ska,692,357,3600737,990,0 +58685,Wioska+barbarzy%C5%84ska,376,385,0,287,0 +58686,Wioska+barbarzy%C5%84ska,392,296,699393759,728,0 +58688,%3F%3F%3F%3F,488,264,698489071,4284,0 +58689,Wioska+E+W+A,535,267,3743817,66,0 +58690,K67+47,711,606,698867483,181,0 +58691,Wioska+barbarzy%C5%84ska,648,683,848987051,4935,0 +58692,LordFallus,691,637,849112876,188,0 +58693,Wioska+barbarzy%C5%84ska,715,582,7528491,1006,0 +58694,Sony+911,684,643,1415009,1392,0 +58695,budowa+02,601,714,7139820,1515,0 +58696,Wioska+barbarzy%C5%84ska,681,358,7973893,1564,0 +58697,Sony+911,670,667,1415009,687,0 +58698,45.,335,665,8665783,445,0 +58699,Wioska+barbarzy%C5%84ska,731,555,1601917,405,0 +58700,029,714,590,6160655,1365,0 +58702,Wioska+barbarzy%C5%84ska,370,697,0,175,0 +58703,Wioska+Stadar,727,564,698203538,26,0 +58704,053,689,351,849091105,440,0 +58705,%3F%3F%3F%3F,285,599,699774694,575,0 +58706,Wioska+Rafi43,682,355,849099141,556,0 +58707,100+koniec+%C5%9Bwiata,625,703,849093426,864,0 +58708,adi+judo+honor,333,658,699163285,26,0 +58709,239...North,435,274,6920960,1320,0 +58710,Wioska+barbarzy%C5%84ska,408,280,699308637,611,0 +58711,Wioska+barbarzy%C5%84ska,554,734,699828442,838,0 +58712,Wyspa+028,279,577,225023,695,0 +58713,057-+Mroczna+Osada,702,378,849035905,1510,0 +58714,KONFA+TO+MARKA%2C+NARKA,271,458,698152377,2161,0 +58715,Wioska+Pirdek999,732,540,849103156,2477,0 +58716,Wioska+barbarzy%C5%84ska,676,651,1415009,2577,0 +58717,%23048,559,272,849064614,756,0 +58718,Wioska+barbarzy%C5%84ska,285,606,0,272,0 +58719,D%C5%BCejd%C5%BCej+8,690,639,849098326,349,0 +58720,Wioska+barbarzy%C5%84ska,709,382,699574408,1317,0 +58721,Wioska+barbarzy%C5%84ska,534,732,699878511,227,0 +58722,PPF-37,580,276,1424656,857,0 +58723,LONGOBARDIA,644,680,699711996,390,0 +58724,%3F%3F%3F%3F,460,271,698489071,3501,0 +58725,Osada+koczownik%C3%B3w,312,635,8877156,4270,9 +58726,Wioska+barbarzy%C5%84ska,342,672,0,96,0 +58727,222...NORTH,408,285,6920960,1552,0 +58728,033,463,733,8268010,814,0 +58729,059,688,637,699099811,387,0 +58730,310,375,294,7271812,1520,0 +58731,Wioska+CorAngar96,318,348,849115256,44,0 +58732,North+069,533,268,849064752,4098,0 +58733,Wioska+Struma1,298,623,849115994,212,0 +58734,New+World,425,727,698152377,3633,0 +58735,Wioska+Afterparty,285,581,699598764,1144,0 +58736,Wioska+barbarzy%C5%84ska,639,686,848987051,4326,0 +58737,Wioska+M+A+S+S+A+C+R+E,730,545,848914661,26,0 +58738,K67+18,701,631,698867483,2054,0 +58739,Wioska+011,734,519,2999957,1850,0 +58740,Na+SsSskraju,273,571,1536625,297,0 +58741,Wioska+daria519,376,700,699831193,1530,0 +58742,Wioska+barbarzy%C5%84ska,725,437,699524891,3074,0 +58743,Wioska+dixon15pl,645,307,849086132,149,0 +58744,Gniezno,448,269,699278528,1337,0 +58745,Wioska+Tohsaka+Rin,648,323,9114562,394,0 +58746,-13.+Koniec+%C5%9Bwiata,316,359,698345556,1042,6 +58747,Wioska+SkyForce2,364,686,849099138,2384,0 +58748,%23003,304,379,849110743,1804,0 +58749,budowa+01,600,719,7139820,2183,1 +58750,KONFA+TO+MARKA%2C+NARKA,274,416,698152377,2035,0 +58752,P%C3%B3%C5%82nocny+Bagdad,624,304,8847546,2023,0 +58753,0000041Z,279,567,849089881,1942,0 +58754,041+KTW,725,443,848883237,995,0 +58755,Wioska+barbarzy%C5%84ska,650,316,698895940,811,0 +58756,092.+Wioska+barbarzy%C5%84ska,737,461,7494497,2563,0 +58757,Wioska+Mateuszek0330,267,465,849079977,192,0 +58758,New+World,418,720,698152377,3744,0 +58759,zakr%C4%99cona,578,725,6658016,1887,0 +58760,032+KTW,725,444,848883237,1657,0 +58761,Wioska+barbarzy%C5%84ska,731,556,1601917,667,0 +58762,Wioska+barbarzy%C5%84ska,728,552,698666810,2192,0 +58763,Bor%C3%B3w,272,463,849116221,4293,0 +58764,No.4,328,337,849106612,406,0 +58765,001,690,645,1609607,619,0 +58766,Wioska+katarzyna2012,609,289,698931998,1733,0 +58767,FP050,446,732,699605333,2538,2 +58768,Poznan+004,408,282,1924718,443,0 +58769,Osada+koczownik%C3%B3w,534,731,699878511,2722,1 +58770,New+WorldA,274,543,849084005,647,0 +58771,elo,432,274,849085160,621,0 +58773,Wioska+barbarzy%C5%84ska,551,731,699878511,833,0 +58774,Wioska+barbarzy%C5%84ska,573,730,849098628,648,0 +58775,WB36,289,385,356642,922,0 +58776,Osada+koczownik%C3%B3w,464,733,849037407,781,5 +58778,0111,710,386,698416970,855,0 +58779,Wioska+barbarzy%C5%84ska,411,531,699425709,1307,0 +58780,Wioska+barbarzy%C5%84ska,733,475,699347951,539,0 +58781,029,473,740,8268010,1066,0 +58782,New+World,406,711,698152377,3619,0 +58783,Wioska+barbarzy%C5%84ska,430,728,698152377,1110,0 +58784,051.+Cukiereczek,451,736,848928624,384,0 +58785,Wioska+barbarzy%C5%84ska,399,707,849014922,1205,0 +58786,MojeDnoToWaszSzczyt,478,266,9299539,4110,0 +58788,New+World,422,721,698152377,2187,0 +58789,Wioska+barbarzy%C5%84ska,586,721,849098628,999,0 +58790,MojeDnoToWaszSzczyt,473,261,9299539,4051,5 +58791,Wioska+barbarzy%C5%84ska,553,733,699878511,240,0 +58792,Wioska+b+007,416,280,6343784,873,0 +58793,Wioska+wabos,684,357,698485268,128,0 +58794,Wioska+1,652,686,849114445,1686,0 +58795,015,397,285,699694284,3273,0 +58796,bystra+rzeka,292,396,698677650,347,0 +58797,Wioska+barbarzy%C5%84ska,648,684,848987051,3176,0 +58798,Etitek+7,730,495,848999448,1389,0 +58799,241,374,297,7271812,1601,0 +58800,P%C3%B3%C5%82nocny+Bagdad,614,291,8847546,2325,0 +58801,WB38,294,385,356642,691,0 +58802,Wioska+barbarzy%C5%84ska,664,323,699072129,1642,0 +58803,XDX,599,291,699098531,3331,6 +58804,Wioska+barbarzy%C5%84ska,350,318,6169408,2096,0 +58805,budowa+03,600,713,7139820,1515,0 +58806,Wioska+Loca,741,506,848927262,54,0 +58808,32+barbarzy%C5%84ska,266,447,849018442,2247,0 +58809,026.+Osada+koczownik%C3%B3w,699,385,2873154,4073,4 +58810,Wioska+znek8,670,663,7866994,1015,0 +58811,Wioska+pierszak,367,693,6379173,549,0 +58812,Wioska+Szymkowiak,370,304,849100089,26,0 +58813,Wioska+barbarzy%C5%84ska,658,320,699072129,1809,0 +58814,Wioska+natofp,733,489,849116251,101,0 +58815,WB28,297,371,356642,1484,0 +58817,Wioska+Bicoss,712,400,699609445,1026,0 +58818,hope,439,269,849099965,2735,0 +58819,030,464,735,8268010,978,0 +58820,Wioska+barbarzy%C5%84ska,662,329,699072129,1978,0 +58821,Wioska+barbarzy%C5%84ska,415,286,3411571,2023,0 +58822,New+WorldA,264,550,849084005,714,0 +58823,Wioska+barbarzy%C5%84ska,726,446,6510480,232,0 +58824,Wioska+barbarzy%C5%84ska,342,317,3698627,1854,0 +58825,Wioska+barbarzy%C5%84ska,564,725,0,32,0 +58826,0121,707,376,698416970,633,0 +58827,Wioska+prezes+naczelny,393,711,698696420,3494,0 +58828,Wioska+AjuZGora,680,648,699696740,210,0 +58829,047.+Wioska+barbarzy%C5%84ska,688,355,2873154,122,0 +58830,Wioska+barbarzy%C5%84ska,372,700,849014922,480,0 +58831,Wioska+rafaltz,282,578,849116416,250,0 +58832,C0333,261,515,8841266,1039,0 +58834,Wioska+barbarzy%C5%84ska,350,312,3698627,1868,0 +58835,Wioska+barbarzy%C5%84ska,607,296,699098531,1133,0 +58836,0118,706,376,698416970,563,0 +58837,KONFA+TO+MARKA%2C+NARKA,284,403,698152377,1495,7 +58838,Wioska+LO%C5%81KICK,543,733,849004461,1879,0 +58839,Wioska+barbarzy%C5%84ska,341,320,0,275,0 +58840,Wioska+barbarzy%C5%84ska,586,719,849098628,260,0 +58841,MojeDnoToWaszSzczyt,492,261,9299539,3530,0 +58842,Wioska+VillaSHL,615,293,849116310,2327,0 +58843,Wioska+b+1,260,508,1164249,1240,0 +58844,135.Stradi,445,272,698365960,603,0 +58845,Gwenville+012,454,264,848986638,1415,0 +58846,New+World,434,721,698152377,585,0 +58847,139.Stradi,398,293,698365960,947,0 +58848,Pan+Kebab,268,512,849105417,442,5 +58849,Wioska+izka1611,698,631,2232973,239,0 +58850,%2A002%2A,275,432,699791054,231,0 +58851,Wioska+barbarzy%C5%84ska,301,370,0,293,0 +58852,North+091,487,267,849064752,2764,0 +58853,Wioska+barbarzy%C5%84ska,592,719,7589468,537,0 +58854,Wioska+barbarzy%C5%84ska,309,369,0,125,0 +58855,Wioska+barbarzy%C5%84ska,736,537,698191218,1748,0 +58856,K66+Drewno,699,627,698867483,1968,1 +58858,Wioska+barbarzy%C5%84ska,297,630,2289134,352,0 +58859,Crazy+Pig,725,567,848932879,654,0 +58860,Wioska+barbarzy%C5%84ska,704,391,699598425,2014,0 +58861,%23169%23,642,689,692803,396,0 +58862,028Kawik,466,731,698620694,3994,0 +58863,0134,702,376,698416970,560,0 +58864,samotna+skala,288,393,698677650,298,0 +58866,044+KTW,733,452,848883237,623,0 +58867,Wioska+barbarzy%C5%84ska,525,263,3027589,503,0 +58868,jeszcze+dalej,731,431,849095435,1621,0 +58869,040+-+Albacete,727,416,698342159,858,0 +58870,Wioska+Jozin321,589,720,849116287,234,0 +58871,Wioska+barbarzy%C5%84ska,367,700,849014922,387,0 +58872,Wioska+barbarzy%C5%84ska,629,700,6818593,523,0 +58873,Zasiedmiogorogrodzie+004,691,366,698278542,1151,0 +58874,Osada+koczownik%C3%B3w,593,277,849100406,3573,5 +58875,sh07,513,269,7064954,718,0 +58876,Wioska+barbarzy%C5%84ska,263,523,849084005,264,0 +58877,Wioska+marcinmista,372,701,849112879,2631,0 +58878,K67+16,703,617,698867483,2540,0 +58879,Brzydgoszcz,625,306,848922958,890,0 +58880,North+098,482,270,849064752,2730,0 +58881,%5B002%5D+Czemu+nie,662,326,699477624,1924,0 +58882,Wioska+barbarzy%C5%84ska,341,679,0,284,0 +58883,ble,632,702,848909464,798,0 +58884,-002-+Wioska+barbarzy%C5%84ska,684,346,849095068,1092,0 +58885,WB44,300,366,356642,537,2 +58886,o020,614,705,699189792,3088,0 +58887,Piek%C5%82o+to+inni,649,323,848956765,2556,0 +58888,Wioska+Butcher%2A,268,558,1153934,32,0 +58889,Wsch%C3%B3d+005,720,599,698562644,529,0 +58890,Wioska+barbarzy%C5%84ska,411,281,698231772,1426,0 +58892,Wioska+barbarzy%C5%84ska,390,287,699393759,936,0 +58893,Warszawka,699,632,699843389,482,0 +58894,Wioska+barbarzy%C5%84ska,740,525,698191218,957,0 +58895,Imperium,695,361,849116419,2251,0 +58896,Wioska+barbarzy%C5%84ska,667,335,699072129,2800,0 +58897,Szlachcic,638,542,930720,6266,0 +58898,Wioska+barbarzy%C5%84ska,732,497,6510480,730,0 +58899,018,394,292,699694284,1569,0 +58900,Elo+Elo+12,281,583,699016994,1282,2 +58901,Wioska+xxxbestiaxxx,472,732,6545206,97,0 +58902,P%C3%B3%C5%82nocny+Bagdad,637,315,8847546,934,0 +58903,Wioska+Swiechu,574,278,698845107,102,0 +58905,Wioska+barbarzy%C5%84ska,517,739,849066849,416,0 +58906,Wioska+dynamit666,527,265,8552893,2421,0 +58907,A%23049,732,535,2065730,5090,1 +58909,Wioska+barbarzy%C5%84ska,521,260,0,284,0 +58910,Wioska+barbarzy%C5%84ska,348,687,0,336,0 +58911,jagger23,519,741,2646397,2887,0 +58912,P%C3%B3%C5%82nocny+Bagdad,597,289,8847546,504,0 +58913,Wioska+HAPPYxxx,350,683,6643002,61,0 +58914,Wioska+barbarzy%C5%84ska,720,580,2453888,1342,0 +58915,Zaplecze+Barba+051,344,327,699796330,763,0 +58916,R+053,490,733,699195358,1548,0 +58917,NIe+Bij+Chce+tylko+grac,676,657,9312528,3883,0 +58918,New+WorldA,267,529,849084005,697,0 +58919,Wioska+Makoo,546,525,848913030,26,0 +58920,Wioska+barbarzy%C5%84ska,296,390,0,315,0 +58921,Sony+911,682,649,1415009,614,0 +58922,122.Stradi,449,274,698365960,1862,0 +58923,Wioska+barbarzy%C5%84ska,703,379,698702991,1102,0 +58924,Wioska+barbarzy%C5%84ska,630,691,6818593,667,0 +58925,Wioska+Gimi7777,349,686,849091972,930,0 +58926,t028,669,343,2262902,251,0 +58927,Dzia%C5%82ka,322,337,849098557,346,0 +58928,KONFA+TO+MARKA%2C+NARKA,274,447,698152377,4026,3 +58929,Wioska+blady14,642,308,849106210,1881,0 +58930,Wioska+barbarzy%C5%84ska,285,597,698663855,64,0 +58931,Wioska+barbarzy%C5%84ska,677,340,699072129,1010,0 +58932,Wioska+7homasbaN1,322,662,699600855,277,0 +58933,052,733,478,849091105,221,0 +58934,Wioska+barbarzy%C5%84ska,312,651,2289134,272,0 +58935,040.+5spajk5,681,349,2873154,484,0 +58936,221+%7C,725,416,8000875,479,0 +58937,Wioska+vodka442,503,740,8708728,301,0 +58938,Cisza,267,563,698769107,581,0 +58939,Wioska+Don+Kalion,544,516,699552859,26,0 +58940,Wioska+Gilutyna,736,460,849108933,33,0 +58941,KONFA+TO+MARKA%2C+NARKA,270,440,698152377,4083,2 +58943,Wioska+barbarzy%C5%84ska,543,727,699878511,2865,0 +58944,PPF-10,510,263,1424656,2749,3 +58945,Wioska+Ulanyksiadz,696,633,699673236,354,0 +58946,Wioska+barbarzy%C5%84ska,714,391,699598425,1727,0 +58947,Wioska+barbarzy%C5%84ska,727,460,699524891,430,0 +58948,Wioska+barbarzy%C5%84ska,285,399,0,159,0 +58949,044,701,371,849091105,850,0 +58950,Wioska+Pij%C4%99Murzyniank%C4%99,392,714,9302748,69,0 +58951,%5B0278%5D,263,496,8630972,3431,0 +58952,Wioska+I,336,616,849095948,3251,0 +58953,C0349,267,527,8841266,168,0 +58954,Wioska+barbarzy%C5%84ska,714,409,699524891,198,0 +58955,Sony+911,686,645,1415009,3855,0 +58956,Wioska+barbarzy%C5%84ska,458,272,849090573,142,0 +58957,04%23+Wioska+barbarzy%C5%84ska,681,644,8444698,528,0 +58958,097.+Wioska+barbarzy%C5%84ska,737,454,7494497,2307,0 +58959,Wioska+barbarzy%C5%84ska,649,683,848987051,4735,0 +58960,Wioska+szewa432,740,482,849090890,164,0 +58961,Wioska+barbarzy%C5%84ska,360,684,0,255,0 +58962,105.+Wioska+barbarzy%C5%84ska,727,455,7494497,351,0 +58963,Wioska+barbarzy%C5%84ska,452,274,699191455,489,0 +58964,Wioska+barbarzy%C5%84ska,313,647,2289134,152,0 +58965,Wioska+barbarzy%C5%84ska,719,594,2453888,3031,0 +58966,NOT%3F,303,362,9236866,507,0 +58967,Wioska+barbarzy%C5%84ska,652,684,8627359,1898,0 +58968,Osada+koczownik%C3%B3w,371,698,849014922,2296,4 +58969,WB32,295,379,356642,844,0 +58970,005,458,271,602408,393,0 +58971,New+World,420,719,698152377,2827,0 +58972,Wioska+barbarzy%C5%84ska,689,635,1415009,97,0 +58973,Szlachcic,544,514,698867446,688,0 +58974,%5B003%5D+Dobra+nie,661,323,699477624,1338,0 +58976,%5B843%5D+Odludzie,725,430,848985692,2408,0 +58977,Wioska+Kerakein,683,640,849116357,277,0 +58978,Wioska+barbarzy%C5%84ska,385,293,699191455,664,0 +58979,056+-+Budowanko%21,483,731,7540891,2299,0 +58980,Wioska+barbarzy%C5%84ska,722,573,698191218,876,0 +58981,Wioska+Harpun98vos,626,295,848942734,512,0 +58982,Wioska+Marcinho10,545,514,699844727,2040,0 +58983,31+barbarzy%C5%84ska,268,447,849018442,2516,0 +58984,Wioska+pele+z+zar,677,656,724621,198,0 +58986,Wioska+barbarzy%C5%84ska,269,504,0,127,0 +58987,Wioska+barbarzy%C5%84ska,701,383,7340529,1450,0 +58988,Wioska+jareczek951,655,682,849114683,1034,0 +58989,Wioska+barbarzy%C5%84ska,727,440,699347951,673,0 +58990,Wioska+miki021,598,713,699785141,793,0 +58991,Wioska+barbarzy%C5%84ska,621,294,849037469,1081,0 +58992,P%C3%B3%C5%82nocny+Bagdad,626,306,8847546,1909,0 +58993,KONFA+TO+MARKA%2C+NARKA,277,414,698152377,2009,0 +58994,Wioska+Perszing125,413,277,848922118,393,0 +58995,Wioska+barbarzy%C5%84ska,359,311,3484132,3493,0 +58996,Wioska+barbarzy%C5%84ska,329,656,0,120,0 +58997,Wioska+barbarzy%C5%84ska,545,732,699878511,2328,0 +58998,Wioska+Hejhej,666,325,699751062,308,0 +58999,PIROTECHNIK+011,338,337,849101083,441,0 +59000,Wioska+bunu4,305,368,849050087,1411,0 +59001,KREV+006,723,593,848988744,248,0 +59002,Maryna+5,268,459,699650981,233,0 +59003,34+barbarzy%C5%84ska+B,266,449,849018442,3065,0 +59004,Wioska+barbarzy%C5%84ska,659,330,699072129,320,0 +59005,Wioska+barbarzy%C5%84ska,355,308,3484132,3519,0 +59006,North+104,481,264,849064752,2640,0 +59007,Wioska+barbarzy%C5%84ska,289,605,0,213,0 +59008,Wioska+Raff+Tierro,350,676,848932115,260,0 +59009,Wioska+barbarzy%C5%84ska,606,712,699828685,2681,0 +59010,Wioska+miro75,641,316,699825089,32,0 +59011,Odyseja,284,395,849076810,429,2 +59012,Wioska+barbarzy%C5%84ska,374,306,3484132,495,0 +59013,WB25,294,374,356642,1389,0 +59014,C0329,263,518,8841266,1747,0 +59015,Wioska+barbarzy%C5%84ska,670,339,7346797,766,0 +59016,004,712,399,699832463,1069,0 +59017,Wioska+SzymonMF6465,521,731,849114579,7901,0 +59018,Wioska+czorny-81,415,724,1260088,498,0 +59019,%5B841%5D+Odludzie,725,432,848985692,3492,0 +59020,Wioska+Power76,383,381,849096454,51,0 +59021,Wioska+Kacperr12,668,672,849112264,47,0 +59022,036+-+Budowanko%21,482,733,7540891,5053,0 +59023,Wioska+YenSu,689,644,698363063,1809,0 +59024,Wioska+barbarzy%C5%84ska,681,342,698895940,971,0 +59025,WB06,297,379,356642,4439,0 +59026,252...NORTH,433,273,6920960,840,0 +59027,%2311,342,333,2800032,360,0 +59028,JAK,302,636,7083877,1999,0 +59029,FP058,447,731,699605333,1911,0 +59030,Zabardzo,284,412,699821629,966,0 +59031,Sony+911,683,656,1415009,1996,0 +59032,Wioska+barbarzy%C5%84ska,346,680,6354098,130,0 +59033,025+-+Budowanko%21,505,733,7540891,4669,0 +59034,Wioska+barbarzy%C5%84ska,732,537,17714,227,0 +59036,Wioska+barbarzy%C5%84ska,716,406,699598425,2419,0 +59037,Wioska+OneGiet,429,280,849108600,173,0 +59038,Szlachcic,707,610,698867446,3048,0 +59039,Wioska+1kip7,674,338,7346797,917,0 +59040,Cisza,282,575,698769107,211,0 +59041,Wioska+barbarzy%C5%84ska,591,277,849100406,1792,0 +59042,Wioska+barbarzy%C5%84ska,710,599,698191218,564,0 +59043,%23049,558,271,849064614,877,0 +59044,Sony+911,718,599,1415009,198,0 +59045,CastAway+%21025,711,593,9314079,3856,0 +59046,1.Hanolulu,389,291,849117143,2034,0 +59048,Wioska+barbarzy%C5%84ska,674,337,699072129,1065,0 +59049,PIROTECHNIK+014,336,338,849101083,283,0 +59051,Wioska+Olek96,290,387,849113480,1858,0 +59052,Wioska+barbarzy%C5%84ska,363,307,3484132,3417,0 +59053,Wioska+barbarzy%C5%84ska,316,345,0,152,0 +59054,121.Stradi,449,272,698365960,2059,0 +59055,Rheinmetall,732,556,849086925,308,0 +59056,Wioska+barbarzy%C5%84ska,659,321,698895940,989,0 +59058,Wioska+botlike,335,335,7970506,26,0 +59059,KONFA+TO+MARKA%2C+NARKA,269,438,698152377,4843,0 +59060,Tupot+ma%C5%82ych+n%C3%B3%C5%BCek,261,484,7012651,117,0 +59061,Wioska+barbarzy%C5%84ska,589,285,698350371,251,0 +59062,Wioska+Sindbad00,414,325,546458,592,0 +59063,Wioska+barbarzy%C5%84ska,602,709,699828685,841,0 +59064,Wioska+barbarzy%C5%84ska,352,318,3698627,2518,0 +59065,NOT%3F,309,359,9236866,143,0 +59066,Wioska+barbarzy%C5%84ska,693,643,698786826,210,0 +59067,Wioska+barbarzy%C5%84ska,604,714,699828685,820,0 +59068,Wioska+barbarzy%C5%84ska,589,455,0,65,0 +59069,Wioska+barbarzy%C5%84ska,343,671,0,72,0 +59070,KONFA+TO+MARKA%2C+NARKA,277,422,698152377,5011,0 +59071,New+WorldA,261,539,849084005,652,0 +59072,Wioska+barbarzy%C5%84ska,724,436,699524891,3277,0 +59073,%5B0275%5D,258,502,8630972,2902,7 +59074,Wioska+010,741,511,2999957,1759,0 +59075,%23166%23,652,679,692803,338,0 +59076,072KP,467,270,849063849,384,0 +59077,B021,535,265,699485250,2578,0 +59078,Wioska+b+008,417,279,6343784,455,0 +59079,C0336,266,529,8841266,902,0 +59080,KONFA+TO+MARKA%2C+NARKA,273,441,698152377,3424,0 +59081,Wioska+barbarzy%C5%84ska,345,680,6354098,116,0 +59082,%23161%23,661,680,692803,653,0 +59083,Wioska+barbarzy%C5%84ska,727,453,699347951,709,0 +59085,Wioska+dezert8,336,329,2411854,1442,0 +59086,MojeDnoToWaszSzczyt,483,260,9299539,2085,0 +59087,Wioska+torys666,566,729,7210775,3501,0 +59088,096.+Wioska+barbarzy%C5%84ska,733,464,7494497,2401,0 +59089,Wioska+morfeusz37,505,260,849097357,364,0 +59090,Wioska+barbarzy%C5%84ska,316,360,0,281,0 +59091,Wioska+barbarzy%C5%84ska,589,282,849064614,320,0 +59092,Wioska+barbarzy%C5%84ska,367,311,3484132,3464,0 +59093,Wioska+Matz32,586,625,848883542,506,0 +59094,Wioska+barbarzy%C5%84ska,582,279,699146580,521,0 +59095,Wioska+Deyna10,591,285,3518623,194,0 +59096,Wioska+barbarzy%C5%84ska,349,326,8772425,1087,0 +59097,Wioska+barbarzy%C5%84ska,301,632,2289134,415,0 +59098,Wioska+barbarzy%C5%84ska,316,653,0,240,0 +59099,budowa+05,558,732,7139820,869,5 +59100,040Kret+Orkuf,506,732,698620694,1816,0 +59101,Wioska+barbarzy%C5%84ska,391,710,849014922,870,0 +59102,%3F%3F%3F%3F,494,263,698489071,4018,0 +59103,107.+Puszcza+Bukowa,695,627,8337151,4154,1 +59104,Wioska+barbarzy%C5%84ska,335,673,0,106,0 +59105,0131,731,451,698416970,355,0 +59106,PPF-20,504,260,1424656,1312,0 +59107,KWB8,528,740,9003698,585,0 +59108,026+-+Budowanko%21,474,736,7540891,4669,0 +59109,ALAMO,607,716,699025262,989,0 +59110,Wioska+Mateusz400,542,264,849117427,573,0 +59111,Wioska+barbarzy%C5%84ska,262,503,0,251,0 +59112,Wioska+Monsio,452,269,699813587,194,0 +59113,ONR+2,656,317,9090040,1369,0 +59114,Wioska+HENRYK321,615,288,5989306,367,0 +59115,Bimber123,272,461,849117454,776,0 +59116,Wioska+barbarzy%C5%84ska,630,699,6818593,755,0 +59117,PPF-55,554,265,1424656,176,0 +59118,O152,307,646,272173,1246,0 +59119,Wioska+aitseb,296,372,699870267,3337,0 +59120,Wioska+nsplus,262,489,6557824,191,0 +59121,Wioska+Piwna,316,344,849107104,1952,0 +59122,Wioska+barbarzy%C5%84ska,722,427,699628084,564,0 +59123,Wioska+noidea,278,573,699011415,458,0 +59124,Wioska+barbarzy%C5%84ska,717,402,699598425,2418,0 +59125,shadow+%232,259,495,1034117,1352,0 +59126,KONFA+TO+MARKA%2C+NARKA,271,459,698152377,1996,0 +59127,043+-+Budowanko%21,518,730,7540891,4892,1 +59128,Wioska+barbarzy%C5%84ska,312,633,2289134,73,0 +59129,Wioska+barbarzy%C5%84ska,677,652,1415009,437,0 +59130,110+Wioska+barbarzy%C5%84ska,586,282,699854484,685,0 +59131,Wioska+barbarzy%C5%84ska,698,376,698702991,48,0 +59132,Wioska+barbarzy%C5%84ska,319,654,0,329,0 +59133,Wioska+barbarzy%C5%84ska,315,647,2289134,161,0 +59134,Wioska+barbarzy%C5%84ska,374,698,0,227,0 +59135,Wioska+barbarzy%C5%84ska,374,697,849014922,405,0 +59136,27+barbarzy%C5%84ska,267,435,849018442,2115,0 +59137,A%23050,729,454,2065730,4780,1 +59138,P%C3%B3%C5%82nocny+Bagdad,621,295,8847546,1123,0 +59139,KONFA+TO+MARKA%2C+NARKA,286,404,698152377,1294,0 +59140,Wioska+Biegacz1,377,304,848978052,171,0 +59141,0000045Z,266,558,849089881,456,0 +59142,Wioska+Marecki2222,733,518,699843936,50,0 +59144,Sony+911,678,664,1415009,1084,0 +59145,Wioska+barbarzy%C5%84ska,359,688,0,140,0 +59146,%5B208%5D,721,420,8000875,1298,0 +59147,068+-+Budowanko%21,509,736,7540891,944,0 +59148,Wioska+mruva,653,629,2245160,347,0 +59149,KONFA+TO+MARKA%2C+NARKA,273,451,698152377,3729,0 +59150,PP+POLSKIE+POLA+81,372,296,849107571,1309,0 +59151,C0334,265,542,8841266,1388,0 +59152,C0337,265,526,8841266,729,0 +59153,Nowa,638,301,3600737,1207,0 +59155,Wioska+Szczerbatka,329,338,848939203,1468,0 +59156,NOT%3F,308,360,9236866,2690,0 +59157,Wioska+barbarzy%C5%84ska,369,704,849014922,497,0 +59158,0120,703,383,698416970,786,0 +59159,227+%7C,722,426,8000875,151,0 +59160,001,654,336,8006209,692,0 +59161,Wioska+barbarzy%C5%84ska,394,715,849014922,1376,0 +59162,Wioska+zuzel,382,294,335509,1553,0 +59163,Wioska+a5,423,281,6343784,1335,0 +59164,ziutek,453,274,849117622,1308,0 +59165,%5B0274%5D,267,493,8630972,3491,0 +59166,038,701,374,849091105,3738,4 +59168,Wioska+barbarzy%C5%84ska,616,301,699098531,1960,0 +59169,Wioska+barbarzy%C5%84ska,735,465,698702991,104,0 +59170,%230253+barbarzy%C5%84ska,442,275,1238300,815,0 +59171,Ks+Konfederacja,691,362,848915730,2853,2 +59172,242,377,293,7271812,488,0 +59173,P%C3%B3%C5%82nocny+Bagdad,598,287,8847546,1204,0 +59174,K67+34,714,601,698867483,718,0 +59175,100,736,533,7085502,1339,0 +59176,Wioska+Arco87,261,535,848974774,249,0 +59177,K67+23,715,605,698867483,1662,0 +59178,Wioska+sada2,363,698,849114502,3943,0 +59179,002,275,445,699282717,955,0 +59180,Wioska+0024,337,679,9186126,2491,0 +59181,FP048,448,733,699605333,2255,0 +59182,My+City,296,605,944147,2653,0 +59183,C0327,268,527,8841266,1782,0 +59184,Wioska+Kaminski95,521,259,849106303,1115,0 +59185,Wioska+Alderos,684,651,849117035,26,0 +59186,Wioska+barbarzy%C5%84ska,727,546,698666810,1591,0 +59187,Wioska+barbarzy%C5%84ska,650,318,698895940,905,0 +59188,094+koniec+%C5%9Bwiata,616,702,849093426,3017,0 +59190,%3F%3F%3F%3F,491,262,698489071,4036,0 +59191,Wioska+PrawdziwyIlveron,493,734,699698873,68,0 +59192,Piek%C5%82o+to+inni,657,326,848956765,2572,0 +59193,koniec,625,700,699883836,193,0 +59194,Osada+koczownik%C3%B3w,313,648,2289134,295,6 +59195,Wioska+barbarzy%C5%84ska,387,295,0,60,0 +59196,Piek%C5%82o+to+inni,649,324,848956765,2105,0 +59197,Karolo1,566,655,848960061,388,0 +59198,Wioska+b+009,426,280,6343784,992,0 +59199,Wioska40,324,341,699711926,159,0 +59200,%23040,554,273,849064614,895,0 +59202,Wioska+barbarzy%C5%84ska,527,738,699878511,2917,0 +59203,%21Wioska+barbarzy%C5%84ska,599,717,8779575,222,0 +59204,Nast%C4%99pna,633,299,3600737,1180,0 +59205,Wioska+Gacek565,474,263,8978080,2745,0 +59206,003-81,287,592,699396429,2686,0 +59207,Wioska+DrXE7,438,270,849106601,253,0 +59208,Wioska+barbarzy%C5%84ska,454,268,9299539,971,0 +59209,Chlewnik,731,547,699685533,988,0 +59210,002+Zagroda,272,538,698353083,1266,4 +59211,PPF-50,572,275,1424656,501,0 +59212,Wioska+barbarzy%C5%84ska,626,696,6818593,502,0 +59213,Wioska+ksi%C4%85%C5%BC%C4%99+plemienia,306,373,699816699,834,0 +59214,%5B0279%5D,269,494,8630972,2853,0 +59215,Osada+koczownik%C3%B3w,596,283,699098531,2349,7 +59216,Wioska+barbarzy%C5%84ska,647,687,0,205,0 +59217,Ultimate+Farming+Simulator+6,433,268,699872032,198,0 +59218,Wioska+barbarzy%C5%84ska,359,303,3484132,2305,0 +59219,Wioska+barbarzy%C5%84ska,738,520,698191218,1750,0 +59220,Wioska+miniorek,532,260,849072919,26,0 +59221,C0328,270,547,8841266,1839,0 +59222,Osada+koczownik%C3%B3w,687,637,3467919,348,7 +59223,Wioska+barbarzy%C5%84ska,267,528,0,144,0 +59224,S%C4%85siad+buduj%C4%99+Ci+wiosk%C4%99+%3A%29,385,703,3647080,1713,0 +59225,Piek%C5%82o+to+inni,660,332,848956765,2599,0 +59226,0129,704,378,698416970,433,0 +59227,%3D129%3D+Wioska+barbarzy%C5%84ska,729,567,3781794,956,0 +59229,Wioska+barbarzy%C5%84ska,282,601,699396429,330,0 +59230,Wioska+barbarzy%C5%84ska,473,263,0,677,0 +59231,North+K25,563,269,699146580,1329,0 +59232,Wioska+Tombar76,490,739,2162471,583,0 +59233,Wioska+barbarzy%C5%84ska,267,565,698290577,918,0 +59234,Wioska+Ferox-1,718,576,849113673,223,0 +59235,Wioska+barbarzy%C5%84ska,317,655,0,203,0 +59236,Bracket,401,285,699741694,344,0 +59237,Wioska+barbarzy%C5%84ska,277,587,0,263,0 +59238,Zasiedmiogorogrodzie+003,698,363,698278542,427,0 +59239,Wioska+barbarzy%C5%84ska,320,647,0,230,0 +59240,%3F%3F%3F%3F,467,268,698489071,3011,2 +59241,Wioska+chips03,297,615,849096346,26,0 +59242,WB45,303,363,356642,409,0 +59243,Wioska+Querto,715,392,698854238,237,0 +59244,029+-+Budowanko%21,491,740,7540891,4652,0 +59246,007,441,267,699562874,1843,4 +59247,liliput81,484,741,698321130,1665,0 +59248,Wioska+barbarzy%C5%84ska,558,272,849064614,493,0 +59249,Krasnal,653,315,8583185,1131,0 +59250,WB37,298,387,356642,621,0 +59251,New+World,438,722,698152377,1770,0 +59252,Wioska+Banan001,263,528,699765971,26,0 +59253,Wioska+Szy.mek,691,634,849116679,842,0 +59255,CO+TAM+%3F%3F%3F%3F,289,604,699774694,130,0 +59256,Wioska+barbarzy%C5%84ska,680,355,6956104,343,0 +59257,Wioska+Bozydar666,735,482,848959422,217,0 +59258,KONFA+TO+MARKA%2C+NARKA,279,421,698152377,2153,8 +59259,Wioska+barbarzy%C5%84ska,374,294,3484132,417,0 +59260,%21Wioska+barbarzy%C5%84ska+4,583,725,8779575,2958,0 +59261,endriu1990%2F181,440,274,698795589,633,0 +59262,Wioska+barbarzy%C5%84ska,596,716,7589468,364,0 +59263,Wioska+Galactus,287,388,698488800,237,0 +59264,Wioska+barbarzy%C5%84ska,533,736,699878511,1748,0 +59265,Wioska+sarab,458,266,6474323,1176,0 +59266,Wioska+Klaudia121,479,266,849112850,102,0 +59267,Wioska+barbarzy%C5%84ska,358,695,0,274,0 +59268,Wioska+krzok14,733,526,698984562,71,0 +59269,Na+SsSskraju,270,572,1536625,1089,4 +59270,Wioska+King2000,617,301,849101871,296,0 +59271,Wioska+barbarzy%C5%84ska,571,273,849064614,391,0 +59272,North+053,529,264,849064752,4008,0 +59273,North+111,474,260,849064752,1503,0 +59274,FEEDBACK,287,598,699774694,1993,0 +59275,106+Wioska+barbarzy%C5%84ska,568,276,699854484,817,0 +59276,North+056,550,264,849064752,4204,0 +59277,21.+Tama,352,689,849092769,166,0 +59278,North+054,536,262,849064752,4189,0 +59279,K67+37,714,609,698867483,444,0 +59280,Wioska+b+012,406,279,6343784,187,0 +59281,P%C3%B3%C5%82nocny+Bagdad,616,294,8847546,2350,0 +59282,Wioska+Simon93,274,569,849115254,1546,0 +59283,Wioska+barbarzy%C5%84ska,665,328,699072129,1916,0 +59285,035,725,588,6160655,757,0 +59286,001Vixa,346,320,8819990,361,0 +59287,MojeDnoToWaszSzczyt,468,263,9299539,1322,0 +59288,North+048,559,269,849064752,3505,6 +59289,Wioska+barbarzy%C5%84ska,636,699,699189792,1583,0 +59290,Wioska+barbarzy%C5%84ska,321,657,0,174,0 +59291,Wioska+barbarzy%C5%84ska,300,620,2289134,162,0 +59292,North+070,507,263,849064752,4383,0 +59293,Osada+koczownik%C3%B3w,295,618,2289134,310,3 +59294,Wioska+Uparty1,385,295,699471024,634,0 +59295,Wioska+barbarzy%C5%84ska,552,727,699878511,1500,0 +59296,Wioska+Squander,649,687,698915069,219,0 +59298,New+World,425,725,698152377,3103,0 +59299,Wioska+barbarzy%C5%84ska,731,541,1601917,263,0 +59300,WB33,293,382,356642,972,0 +59301,Wioska+barbarzy%C5%84ska,269,546,0,42,0 +59302,znam+ostropesta+3,434,732,699777372,2244,0 +59303,Wioska+Nogger14,285,415,3923887,750,0 +59304,Piek%C5%82o+to+inni,656,323,848956765,1677,0 +59305,Wioska+barbarzy%C5%84ska,653,322,896355,300,0 +59306,P%C3%B3%C5%82nocny+Bagdad,611,293,8847546,1860,0 +59307,Flap,604,281,699098531,1823,8 +59309,Avanti%21,267,481,698625834,1434,0 +59310,wu2ek,703,616,849108157,851,0 +59311,P%C3%B3%C5%82nocny+Bagdad,632,303,8847546,2050,0 +59312,Wioska+Szymon9405,276,453,849099145,4011,0 +59313,101,735,529,7085502,1260,0 +59314,Wioska+Cegla+x+DrTaxi,517,736,7951206,41,0 +59315,Wioska+gall8,265,470,699598396,293,0 +59316,Wioska+Gruby0905,433,274,1384222,515,0 +59317,WB24,298,367,356642,1270,0 +59318,Wioska+barbarzy%C5%84ska,737,450,699574408,525,0 +59319,Wioska33,328,341,699711926,1224,0 +59320,Wioska+barbarzy%C5%84ska,737,502,1601917,233,0 +59321,P%C3%B3%C5%82nocny+Bagdad,630,307,8847546,1453,0 +59322,A%23052,737,464,2065730,4426,3 +59324,Wioska+barbarzy%C5%84ska,670,332,699072129,725,0 +59327,222+%7C,718,416,8000875,270,0 +59328,North+099,548,263,849064752,4202,0 +59330,Wioska+barbarzy%C5%84ska,738,514,1601917,1399,0 +59332,041.+Wioska+barbarzy%C5%84ska,685,349,2873154,468,0 +59333,088+obrze%C5%BCa,272,561,699510259,457,0 +59334,Wioska+181,284,401,382222,1353,0 +59335,KWB9,467,734,9003698,4889,0 +59336,New+World,434,725,698152377,1578,0 +59337,031+-+Budowanko%21,495,742,7540891,4417,0 +59338,Wioska+lukas1980,501,260,2213632,1258,0 +59339,42+barbarzy%C5%84ska+3A,268,451,849018442,2002,0 +59340,Wioska+181,345,346,82782,1646,0 +59341,Wioska+barbarzy%C5%84ska,335,324,698388578,156,0 +59342,Wioska+barbarzy%C5%84ska,350,680,0,222,0 +59343,Wioska+barbarzy%C5%84ska,263,472,0,75,0 +59344,K67+25,704,611,698867483,1737,0 +59345,Wioska+barbarzy%C5%84ska,329,330,699304554,410,0 +59346,Wioska+Koza2021,279,579,849106741,68,0 +59348,P%C3%B3%C5%82nocny+Bagdad,632,310,8847546,2789,0 +59349,B019,534,266,699485250,2881,6 +59350,071+-+Budowanko%21,514,735,7540891,633,0 +59351,Kancelaria+1,715,598,849104468,1157,0 +59352,Bunkier,344,675,699805839,458,0 +59353,Wioska+apokalipsa25,733,485,9135525,26,0 +59354,Wioska+barbarzy%C5%84ska,600,292,0,228,0 +59355,Wioska+Adrianzaq12wsx,721,424,1945202,26,0 +59356,K66,698,627,698867483,1331,0 +59357,Wioska+barbarzy%C5%84ska,290,402,0,121,0 +59358,%3F%3F%3F%3F,486,259,698489071,2625,0 +59359,002+Carlin,692,645,699516250,2434,0 +59360,Wioska+Kr%C3%B3l+Mieszko1,265,527,849110674,670,0 +59361,%5B209%5D,722,417,8000875,1126,0 +59362,Wioska+Pty%C5%9BTurbo,386,295,849095825,138,0 +59363,Wioska+barbarzy%C5%84ska,553,734,699878511,1693,0 +59364,KONFA+TO+MARKA%2C+NARKA,273,423,698152377,1201,0 +59365,0123,711,384,698416970,541,0 +59366,Wioska+221719123,695,631,849050410,26,0 +59367,Wioska+vasper123,616,296,848980727,671,0 +59368,Wioska+barbarzy%C5%84ska,418,277,3411571,2926,0 +59369,Wioska+barbarzy%C5%84ska,266,473,0,77,0 +59370,Zaplecze+Barba+042,358,312,699796330,1907,0 +59371,124.+Bezmiar+Wschodni+Bliski,663,679,8337151,274,0 +59372,North+083,554,269,849064752,4006,0 +59373,Wioska+barbarzy%C5%84ska,672,338,0,338,0 +59375,Wioska+barbarzy%C5%84ska,379,703,849014922,934,0 +59376,sobiska,439,268,849118259,1496,0 +59377,Wioska+barbarzy%C5%84ska,739,523,698191218,1748,0 +59378,Flex+1,375,701,849114033,1126,0 +59380,PPF-47,518,268,1424656,396,0 +59381,Wioska+barbarzy%C5%84ska,457,265,9299539,956,0 +59382,Wioska+samolot11,527,261,849105201,139,0 +59383,Osada+koczownik%C3%B3w,678,337,699072129,1477,3 +59384,Wioska+OgnistaOwca,616,295,699868448,54,0 +59385,P%C3%B3%C5%82nocny+Bagdad,648,316,8847546,765,6 +59386,Wioska+barbarzy%C5%84ska,739,503,1601917,268,0 +59387,Wioska+barbarzy%C5%84ska,737,547,698191218,1480,0 +59388,ponger19955,692,371,849031759,489,0 +59389,Wioska+barbarzy%C5%84ska,386,713,849014922,1355,0 +59390,Wioska+Blak+widow,684,356,698916256,237,0 +59391,Wioska+ABE+1,269,524,7964548,181,0 +59392,Wioska+barbarzy%C5%84ska,316,642,698908184,1477,0 +59393,Wioska+dziwas2,296,606,8760563,1899,0 +59394,045+KTW,733,448,848883237,500,0 +59395,Wioska+barbarzy%C5%84ska,281,466,699812351,313,0 +59396,Wioska+bleta+spz,728,571,699811133,275,0 +59397,Wioska+barbarzy%C5%84ska,729,427,699628084,330,0 +59398,Wioska+koka17,372,297,848901822,952,0 +59399,Wioska+barbarzy%C5%84ska,649,688,848987051,4325,0 +59400,Wioska+barbarzy%C5%84ska,739,531,0,402,0 +59401,Wioska+xarans,410,723,849044724,1146,0 +59402,WZ11,697,621,7142659,1722,0 +59403,Wioska+barbarzy%C5%84ska,679,657,1415009,318,0 +59404,Wioska+barbarzy%C5%84ska,595,280,3600737,392,0 +59405,Wioska+Pheniks2009,452,729,6541079,122,0 +59406,Wioska+barbarzy%C5%84ska,740,464,848946700,684,0 +59407,Wioska+slawomirec,627,697,2345447,294,0 +59408,Wioska+Piorun000,290,380,699865716,333,0 +59409,%5B0280%5D,266,496,8630972,3491,0 +59410,pl181+n1g3r,268,478,6354962,2259,0 +59411,Wioska+barbarzy%C5%84ska,558,735,699878511,1693,0 +59412,Odrodzenie,280,543,848952556,783,0 +59413,KONFA+TO+MARKA%2C+NARKA,276,409,698152377,1827,0 +59414,Bagno+41,457,731,848883684,1879,9 +59415,Wioska+Alibaba420,737,448,848942565,425,0 +59416,Wioska+barbarzy%C5%84ska,613,704,699828685,1254,0 +59417,Wioska+barbarzy%C5%84ska,476,735,698620694,771,0 +59418,Osada+koczownik%C3%B3w,739,539,1601917,2188,2 +59419,Wioska+snajpiradlo,396,284,2980670,150,0 +59420,Wioska+barbarzy%C5%84ska,656,684,0,42,0 +59421,Wioska+barbarzy%C5%84ska,341,330,0,272,0 +59422,Magnes,271,462,849116221,192,0 +59423,62+barbarzy%C5%84ska,276,432,849018442,443,0 +59424,PPF-51,544,268,1424656,227,0 +59425,Wioska+barbarzy%C5%84ska,382,701,849014922,689,0 +59426,Wioska+to+tylko+hastrat,346,687,42635,26,0 +59427,Wioska+barbarzy%C5%84ska,290,605,699321518,159,0 +59428,North+071,497,258,849064752,4375,0 +59429,Wioska+Love4evere3,297,611,849117240,349,0 +59430,Wioska+barbarzy%C5%84ska,375,698,0,175,0 +59432,Wioska+barbarzy%C5%84ska,735,524,698191218,1748,0 +59433,Wioska+wlodek1404,580,272,849118462,793,0 +59434,Wioska+barbarzy%C5%84ska,269,478,849095814,501,0 +59435,Wioska+drrakox,282,415,699851001,26,0 +59436,Wioska+barbarzy%C5%84ska,348,319,6169408,472,0 +59437,181,517,260,699147813,376,0 +59438,042,720,403,849091105,916,0 +59439,Wioska+BOMBA+NA+BANIIE,636,302,849029559,26,0 +59440,Wioska+Jaayzik,688,639,699762118,26,0 +59441,Wioska+barbarzy%C5%84ska,599,715,7589468,226,0 +59442,Wioska+AdaSobieraj,264,525,849118441,565,0 +59443,Wioska+barbarzy%C5%84ska,384,712,849014922,1396,0 +59444,Wioska+barbarzy%C5%84ska,737,460,699524891,772,0 +59445,Osada+koczownik%C3%B3w,421,272,3411571,3451,2 +59446,qwerty,579,275,849117830,2016,0 +59447,Wioska+barbarzy%C5%84ska,296,613,0,68,0 +59448,Wioska+Error%3F,578,723,698897841,227,0 +59449,46.,333,667,8665783,219,0 +59451,Wioska+barbarzy%C5%84ska,579,726,849098628,768,0 +59452,Wioska+barbarzy%C5%84skaF,289,607,698178312,586,0 +59453,Wioska+barbarzy%C5%84ska,689,360,848915730,1907,0 +59454,Osada+koczownik%C3%B3w,632,690,699372829,235,2 +59456,Wioska+barbarzy%C5%84ska,288,392,698677650,124,0 +59457,034+-+Budowanko%21,470,731,7540891,4402,0 +59458,Wioska+barbarzy%C5%84ska,637,700,698191218,172,0 +59459,Wioska+barbarzy%C5%84ska,350,690,0,194,0 +59460,Wioska+palkoneti,689,362,2602575,326,0 +59461,WB30,292,377,356642,1168,0 +59462,WB42,291,385,356642,127,0 +59463,Wioska+frolunda63,557,729,699391409,243,0 +59464,Wioska+2+die+4,259,488,2512219,232,0 +59465,Wioska+barbarzy%C5%84ska,732,560,698191218,133,0 +59466,Wioska+barbarzy%C5%84ska,267,546,0,311,0 +59467,Wioska+barbarzy%C5%84ska,343,678,0,239,0 +59468,Wioska+pluton1,446,264,662253,209,0 +59469,Wioska+barbarzy%C5%84ska,577,729,849098628,907,0 +59470,VASTO+2,345,681,849100016,1695,0 +59471,-001-+Wioska+barbarzy%C5%84ska,687,347,849095068,2516,0 +59472,Wioska+dziki71,403,286,3667722,1398,0 +59473,C0326,269,519,8841266,1780,0 +59474,Wioska+leolen,331,326,6617912,2509,0 +59475,%23140%23,664,663,692803,1201,0 +59476,K67+38,710,615,698867483,345,0 +59477,Babylon,340,325,3377503,296,0 +59478,Wioska+barbarzy%C5%84ska,371,700,0,373,0 +59479,Wioska+barbarzy%C5%84ska,718,579,7528491,571,0 +59480,Wioska+marlis1992,351,685,849098159,26,0 +59481,026+Z,737,468,699718269,125,0 +59482,A%23053,724,412,2065730,3863,8 +59483,Wioska+Kafaro,405,564,698911639,460,0 +59484,Wioska+barbarzy%C5%84ska,526,738,699878511,1693,0 +59485,Wioska+barbarzy%C5%84ska,740,494,699524891,214,0 +59486,Wioska+barbarzy%C5%84ska,338,670,0,237,0 +59487,mo%C5%BCna+farmi%C4%87+-+zapraszam,724,556,699600167,143,0 +59488,Wioska+barbarzy%C5%84ska,741,485,698191218,882,0 +59489,Wioska+barbarzy%C5%84ska,618,300,0,128,0 +59490,Wioska+barbarzy%C5%84ska,651,684,848987051,3291,0 +59491,Wioska+barbarzy%C5%84ska,337,675,0,88,0 +59492,%3D%7C42%7C%3D,693,367,9101574,509,0 +59493,Osada+koczownik%C3%B3w,274,575,699321518,1141,5 +59494,Wioska+pilkowski,660,678,849096856,101,0 +59495,Wioska+barbarzy%C5%84ska,657,682,848987051,3176,0 +59496,Wioska+barbarzy%C5%84ska,302,628,2289134,216,0 +59497,gracjan1995,720,427,698631190,1811,0 +59498,240...north,435,272,6920960,1290,0 +59499,Wioska+rycerzrzyk2000,705,379,6021542,26,0 +59500,Zaplecze+Barba+046,355,318,699796330,1821,0 +59501,Wioska+barbarzy%C5%84ska,729,430,0,56,0 +59502,North+K25,560,269,699146580,1359,0 +59503,Wioska+barbarzy%C5%84ska,609,286,0,54,0 +59504,Wioska+barbarzy%C5%84ska,365,307,698160606,1855,0 +59505,PPF-49,553,268,1424656,333,0 +59506,Wioska+Bober5180,424,719,849106576,126,0 +59507,Wioska+barbarzy%C5%84ska,269,480,698625834,90,0 +59508,Wioska+barbarzy%C5%84ska,317,651,0,201,0 +59509,Zaplecze+Barba+052,344,323,699796330,508,0 +59510,Wioska+barbarzy%C5%84ska,267,461,0,81,0 +59511,045.+Wioska+barbarzy%C5%84ska,687,352,2873154,530,0 +59512,Wioska+barbarzy%C5%84ska,523,741,699878511,1451,0 +59513,049,691,352,849091105,691,2 +59514,Wioska+Shadow39,704,382,849073939,1208,0 +59515,Wioska+JuanPabloII,414,285,849091060,26,0 +59516,P%C3%B3%C5%82nocny+Bagdad,621,302,8847546,2134,0 +59517,2Pac,467,266,849117242,1146,0 +59518,003+Venore,695,642,699516250,1492,0 +59520,New+World,433,731,698152377,3139,0 +59521,Wioska+barbarzy%C5%84ska,646,313,0,147,0 +59522,Nowa+65,722,595,698702991,2413,0 +59523,Wioska+Vokhar,334,334,849118478,26,0 +59524,New+World,427,723,698152377,3513,0 +59525,Wioska+bylo21,307,366,1132842,199,0 +59526,086+obrze%C5%BCa,274,565,699510259,838,0 +59527,Osada+koczownik%C3%B3w,331,334,699304554,876,3 +59529,Wioska+b+011,407,277,6343784,268,0 +59530,%21Wioska+barbarzy%C5%84ska+33,583,723,8779575,2810,0 +59531,Sony+911,706,625,1415009,211,0 +59532,Wioska+barbarzy%C5%84ska,625,708,101074,1056,0 +59533,Wioska+Carlos75,510,738,337137,26,0 +59534,North+100,507,259,849064752,2628,0 +59535,Wioska+barbarzy%C5%84ska,662,675,692803,554,0 +59536,Wioska+barbarzy%C5%84ska,659,322,699072129,1570,0 +59537,Mega+kox,658,328,848919959,527,0 +59538,Wioska+barbarzy%C5%84ska,663,321,699072129,74,0 +59539,036.+Gloria+Victis,269,576,848886973,1324,0 +59540,Wioska+hair12345.,702,390,849118786,761,0 +59541,WB39,289,386,356642,580,0 +59543,Wioska+barbarzy%C5%84ska,714,413,698702991,108,0 +59544,Wioska+barbarzy%C5%84ska,640,308,3600737,856,0 +59545,069+-+Budowanko%21,513,735,7540891,670,0 +59546,002,716,390,699832463,2008,0 +59547,Wioska+MARCINEK+GRO%C5%BBNY,445,264,6174010,358,0 +59548,Wioska+barbarzy%C5%84ska,342,320,699191464,604,0 +59549,181,730,438,698957176,311,0 +59550,Melissa+monet,573,274,698936852,1777,0 +59551,KONFA+TO+MARKA%2C+NARKA,272,422,698152377,2084,0 +59552,Wioska+plazmi,392,716,2177410,650,0 +59553,Wioska+barbarzy%C5%84ska,337,333,0,190,0 +59554,ONR+3,662,319,9090040,184,0 +59555,Wioska+barbarzy%C5%84ska,638,302,3600737,893,0 +59556,Wioska+Pysia.,334,666,849062706,26,0 +59557,Wioska+NurseJK,285,611,849113819,1446,0 +59558,Twierdza+%28Cadia%29,401,288,0,2511,23 +59559,035,470,738,8268010,83,0 +59560,Wioska+barbarzy%C5%84ska,346,679,0,206,0 +59562,Wioska+barbarzy%C5%84ska,469,732,0,26,0 +59563,Wioska+dominik121,274,424,698639278,194,0 +59564,North+084,488,261,849064752,3852,0 +59565,Wioska+marek46aa,398,720,698346954,454,0 +59566,Wioska+barbarzy%C5%84ska,720,577,699493750,185,0 +59567,Wioska+barbarzy%C5%84ska,741,488,6510480,208,0 +59568,Wioska+barbarzy%C5%84ska,258,501,0,76,0 +59569,Sony+911,687,642,1415009,1346,0 +59570,Wioska+barbarzy%C5%84ska,732,552,0,93,0 +59571,Wioska+cycu269,573,728,7913305,1871,0 +59572,Wioska+Mistrzunio229,309,362,699545975,195,0 +59573,Wioska+barbarzy%C5%84ska,445,728,699280514,82,0 +59574,Wioska+artur1488,711,611,7024597,764,0 +59575,03%23+Wioska+barbarzy%C5%84ska,682,642,8444698,458,0 +59576,Wioska+barbarzy%C5%84ska,648,690,0,229,0 +59577,WB43,300,363,356642,369,0 +59578,Wioska+Xpace67,267,543,849112774,26,0 +59579,Wioska+barbarzy%C5%84ska,701,381,7340529,1771,0 +59580,Wioska+Pati999,622,302,849115365,196,0 +59581,036,736,553,6160655,624,0 +59582,Wioska+Minister123,287,403,849118999,1768,0 +59584,North+K25,572,270,699146580,1289,0 +59585,Wioska+barbarzy%C5%84ska,497,263,0,26,0 +59586,Wioska+tomekjasko,736,522,849101646,144,0 +59587,Wioska+ceru,531,265,699254631,112,0 +59588,Wioska+barbarzy%C5%84ska,262,501,8630972,269,0 +59589,Wioska+barbarzy%C5%84ska,551,735,699878511,33,0 +59590,WB27,299,375,356642,1221,0 +59591,%23002,446,725,849042480,854,0 +59592,Xxx,509,740,7098955,2126,0 +59593,Wioska+barbarzy%C5%84ska,311,646,2289134,87,0 +59594,244,366,299,7271812,436,0 +59595,Wioska+ascend,486,267,698830638,2705,0 +59596,Wioska+barbarzy%C5%84ska,334,327,699304554,141,0 +59597,Wioska+CebulowyRycerz,467,731,699492817,94,0 +59598,%5B210%5D,722,419,8000875,852,0 +59599,KONFA+TO+MARKA%2C+NARKA,280,405,698152377,722,0 +59600,Wioska+barbarzy%C5%84ska,611,294,699098531,1640,0 +59602,002+Wioska+barbarzy%C5%84ska,259,515,915113,188,0 +59603,Dworek,297,632,8502135,1189,0 +59604,Wioska+barbarzy%C5%84ska,279,599,0,139,0 +59605,PPF-58,544,277,1424656,272,0 +59606,%23148%23,658,671,692803,1023,0 +59607,057,740,498,849091105,81,0 +59608,KREV+007,721,591,848988744,217,0 +59609,Wioska+miodzik9669,697,375,2422415,340,0 +59610,Wioska+barbarzy%C5%84ska,368,299,698160606,1667,0 +59611,Wioska+spiki2009.,357,304,6468217,569,0 +59612,New+WorldA,270,536,849084005,1102,0 +59613,sony911,674,662,1415009,185,0 +59614,Wioska+barbarzy%C5%84ska,668,324,699072129,1421,0 +59615,Wioska+barbarzy%C5%84ska,733,439,698702991,284,0 +59616,Aa3,592,720,849097614,1650,0 +59617,Wioska+barbarzy%C5%84ska,375,702,0,48,0 +59618,066KP,482,266,849063849,644,0 +59619,Wioska+barbarzy%C5%84ska,732,561,0,198,0 +59620,Tupot+ma%C5%82ych+n%C3%B3%C5%BCek+2,259,478,7012651,203,0 +59621,Wioska+xKratz,272,420,849096954,41,0 +59622,Wioska+barbarzy%C5%84ska,297,626,2289134,261,0 +59623,Wioska+Lejlu,619,293,699491924,245,0 +59624,045,695,371,849091105,775,0 +59625,Wioska+barbarzy%C5%84ska,611,286,0,136,0 +59626,Wioska+013,735,496,2999957,433,0 +59627,Wioska+barbarzy%C5%84ska,639,695,699189792,1737,0 +59628,181,589,725,849119121,664,0 +59629,048+-+Budowanko%21,513,741,7540891,3137,0 +59630,Valhalla,718,591,949279,803,0 +59631,North+085,512,265,849064752,3662,0 +59632,181.Nie+%C5%9Bwiruj%C4%99,358,313,6284929,1096,0 +59633,Wioska+barbarzy%C5%84ska,328,670,0,165,0 +59634,Wioska+43,579,729,3022364,343,0 +59635,43+barbarzy%C5%84ska+3B,271,430,849018442,2029,0 +59637,Peter,280,589,698766178,408,0 +59638,Wioska+Kamilooo97,596,723,848882446,694,0 +59639,KONFA+TO+MARKA%2C+NARKA,273,414,698152377,1719,0 +59640,Wioska+Koziok,725,562,849094319,26,0 +59641,Wioska+barbarzy%C5%84ska,431,273,699191464,645,0 +59643,100+Wioska+barbarzy%C5%84ska,547,263,699854484,3124,0 +59644,Wioska+kafejtor,714,614,849119173,227,0 +59645,025+Z,733,470,699718269,273,0 +59646,SHIR,680,660,8134135,468,0 +59648,219...NORTH,415,284,6920960,1268,0 +59649,Wioska+Decku%C5%9B+oddaj+rower,710,396,699624570,77,0 +59650,Wioska+barbarzy%C5%84ska,384,703,849014922,993,0 +59651,SHAKARA,332,674,699056677,478,0 +59652,Tupot+ma%C5%82ych+n%C3%B3%C5%BCek+1,258,477,7012651,307,0 +59653,Osada+koczownik%C3%B3w,630,700,6818593,598,2 +59654,Wioska+lubiszT0,739,508,3295619,162,0 +59655,Wioska+barbarzy%C5%84ska,362,311,3484132,731,0 +59656,KONFA+TO+MARKA%2C+NARKA,281,421,698152377,2077,0 +59657,Wioska+PEPUS,606,287,699238678,146,0 +59658,Wioska+barbarzy%C5%84ska,332,333,699304554,256,0 +59659,Wioska+barbarzy%C5%84ska,730,532,17714,104,0 +59660,016,396,285,699694284,1894,0 +59661,0105,706,379,698416970,923,5 +59662,Arczi997+09,266,511,849055181,84,0 +59663,Malgagovo,701,372,849112369,249,0 +59664,Wioska+barbarzy%C5%84ska,266,469,0,65,0 +59665,K66,699,637,698867483,636,0 +59666,Wioska+dami991,348,686,699777556,2036,0 +59667,Twierdza+%28CSA-X%29,435,404,0,5136,31 +59668,Twierdza+%28CSA-Z%29,435,405,0,6873,32 +59669,Wioska+li%C5%9Bcia,501,732,849076953,1005,0 +59670,Wioska+sadomaso,332,514,849117695,350,0 +59671,Wioska+Bacik1906,487,263,849116980,26,0 +59672,Wioska+barbarzy%C5%84ska,710,399,699598425,1814,0 +59673,Wioska+kizak1,640,694,848953472,1372,0 +59674,Wioska,335,337,8758298,1578,0 +59675,Wioska+barbarzy%C5%84ska,264,530,0,77,0 +59676,Wioska+barbarzy%C5%84ska,728,559,17714,300,0 +59677,North+089,512,269,849064752,3757,8 +59678,Wioska+BedsideBrick477,454,272,849107391,104,0 +59679,Wioska+barbarzy%C5%84ska,740,518,1601917,1193,0 +59680,Wioska+barbarzy%C5%84ska,661,672,0,60,0 +59681,%24014%24+Ramzes,300,623,699550876,465,0 +59682,Wioska+barbarzy%C5%84ska,339,322,699796330,335,0 +59683,P%C3%B3%C5%82nocny+Bagdad,639,312,8847546,2111,0 +59684,K67+41,704,614,698867483,213,0 +59685,Wioska+barbarzy%C5%84ska,390,713,849014922,1169,0 +59687,PPF-36,575,276,1424656,847,0 +59688,Wioska+barbarzy%C5%84ska,568,728,6425087,84,0 +59689,Wioska+barbarzy%C5%84ska,372,299,698160606,2472,0 +59690,Wioska+bestleevatican,318,349,849073156,1428,0 +59691,PPF-53,520,268,1424656,157,0 +59692,Wioska+zbawiciel4,497,735,699751887,64,0 +59693,Wioska+barbarzy%C5%84ska,327,667,0,207,0 +59694,001,691,635,98294,500,0 +59695,Wioska+barbarzy%C5%84ska,407,282,699393759,604,0 +59696,Meh,612,715,848883791,553,0 +59698,Wioska+barbarzy%C5%84ska,708,390,699598425,1814,0 +59700,Wioska+barbarzy%C5%84ska,589,717,848995242,434,0 +59701,Wioska+Mikkerland,737,504,762859,269,0 +59702,104,736,466,7085502,687,0 +59704,Wioska+barbarzy%C5%84ska,740,514,1601917,151,0 +59705,Twierdza+%28MzM%29,595,564,0,3041,28 +59706,miglanc06,350,314,849119328,682,0 +59707,Spi%C5%BC,279,598,849049288,2688,0 +59708,Wioska+barbarzy%C5%84ska,656,314,698895940,416,0 +59710,budowa+08,600,712,7139820,545,0 +59711,Wioska+balkres1,263,453,849118998,237,0 +59712,Wioska+barbarzy%C5%84ska,607,714,0,101,0 +59713,Wioska+kuba987,679,348,699622958,97,0 +59714,Wioska+barbarzy%C5%84ska,734,495,6510480,184,0 +59716,Wioska+barbarzy%C5%84ska,392,706,849014922,1019,0 +59717,046.+tomnado,679,349,2873154,273,0 +59718,Osada+koczownik%C3%B3w,644,692,848987051,3142,5 +59719,Wioska+WhiteMuffin,658,316,699812824,32,0 +59720,Wioska+barbarzy%C5%84ska,360,689,0,161,0 +59722,%23146%23,676,659,692803,1055,0 +59723,Wioska+barbarzy%C5%84ska,597,723,699189792,578,0 +59724,Wioska38,327,345,699711926,764,0 +59725,Wioska+Pan+%C5%9Awirusek,271,538,699831524,26,0 +59726,105,713,599,7085502,967,0 +59727,Bolszewo,338,335,699852606,72,0 +59728,Wioska+Krzysztofeks16,355,691,6298409,182,0 +59729,Wioska+barbarzy%C5%84ska,288,396,0,165,0 +59730,Wioska+naja1920ruch,261,491,849088923,26,0 +59731,Wioska+szymoniasty2740,286,597,849008396,352,0 +59732,WB23,297,367,356642,1244,0 +59733,Wioska+maciejasz3k,719,587,699699563,974,0 +59734,Wioska+cyaaaa2,324,494,7560085,134,0 +59735,Osada+koczownik%C3%B3w,292,603,699321518,577,9 +59736,141.Stradi,413,274,698365960,215,0 +59737,Wioska+barbarzy%C5%84ska,328,658,0,139,0 +59738,Wioska+barbarzy%C5%84ska,461,267,0,43,0 +59739,WB35,289,383,356642,835,0 +59740,Wioska+barbarzy%C5%84ska,267,483,698625834,148,0 +59741,Wioska+Omikronmen,609,506,849095448,1733,0 +59742,35+koczownik%C3%B3w+A,273,433,849018442,1895,3 +59743,Wioska+Chronek09,282,597,849110916,658,0 +59744,Wioska+barbarzy%C5%84ska,351,323,8772425,544,0 +59745,Wioska+Mc+Fly,728,444,849118930,128,0 +59746,WB26,299,368,356642,1243,0 +59747,Wioska+Rewson,735,553,849084911,26,0 +59748,Jehu_Kingdom_67,716,398,8785314,997,0 +59749,Osada+koczownik%C3%B3w,344,681,6354098,919,5 +59750,Wioska+Zelmer,418,271,849117551,484,0 +59751,P%C3%B3%C5%82nocny+Bagdad,615,291,8847546,2237,7 +59752,GOAT,289,380,699535590,208,0 +59753,Wioska+barbarzy%C5%84ska,334,324,698388578,754,0 +59754,Wioska+Future+Traveler,262,523,8399822,26,0 +59755,PPF-41,582,276,1424656,650,0 +59756,O148,311,641,272173,1236,4 +59757,Wioska+barbarzy%C5%84ska,290,602,0,26,0 +59758,Wioska+barbarzy%C5%84ska,737,449,698191218,844,0 +59760,K66,697,628,698867483,598,0 +59762,Wioska+barbarzy%C5%84ska,397,710,849014922,1168,0 +59763,WB40,292,387,356642,427,1 +59764,Wioska+Minikod,471,735,849082839,26,0 +59765,Wioska+barbarzy%C5%84ska,403,723,849014922,1168,0 +59766,Wioska+piter787878,742,494,848982635,153,0 +59767,Wioska+barbarzy%C5%84ska,729,570,1601917,556,0 +59768,181+002,730,562,7272223,144,0 +59770,Wioska+sabaciorz,402,716,849101403,26,0 +59771,Wioska+t0m45,264,548,849111121,192,0 +59772,Wioska+barbarzy%C5%84ska,590,715,849098628,678,0 +59773,Wioska+barbarzy%C5%84ska,375,704,849014922,127,0 +59774,%5B844%5D+Odludzie,726,431,848985692,2659,0 +59775,Orzechowa+United,586,275,849112050,1108,0 +59776,Wioska+barbarzy%C5%84ska,368,309,698160606,1252,0 +59777,Wioska+MalinowaZaba,738,543,699677277,812,0 +59778,Wioska+barbarzy%C5%84ska,734,539,17714,471,0 +59779,Wioska+barbarzy%C5%84ska,269,481,698625834,47,0 +59780,P%C3%B3%C5%82nocny+Bagdad,623,292,8847546,1729,0 +59782,Wioska+Strusiek,735,536,699749184,422,0 +59783,Osada+koczownik%C3%B3w,257,503,699425709,344,1 +59784,K67+46,703,631,698867483,132,0 +59785,051,688,353,849091105,482,0 +59786,Wioska+Adison+II+%C5%9Amia%C5%82y,365,308,849113226,478,0 +59787,Wioska+barbarzy%C5%84ska,707,381,699574408,818,0 +59788,Wioska+Adikson16,730,566,849114112,143,0 +59789,P%C3%B3%C5%82nocny+Bagdad,599,287,8847546,963,0 +59790,%C5%81%C3%B3d%C5%BA,708,382,698248308,1279,0 +59791,North+086,488,257,849064752,3356,0 +59792,Wioska+jaromirek,530,261,7516892,764,0 +59793,Wioska+barbarzy%C5%84ska,547,731,699878511,806,0 +59794,Wioska+goodvibegoodman,631,695,848909292,1284,0 +59795,Wioska+Akantos,556,729,698262808,50,0 +59797,KADRONGE,693,363,3957237,1194,0 +59798,Wioska+nawi4,393,713,7802435,1070,0 +59799,%23152%23,645,688,692803,871,0 +59800,Wioska+slawekkrasulak,735,485,699876653,26,0 +59801,%23156%23,621,711,692803,1776,0 +59802,Wioska+barbarzy%C5%84ska,658,680,0,44,0 +59803,%23145%23,675,663,692803,1006,0 +59806,Wioska+barbarzy%C5%84ska,259,521,698388578,368,0 +59807,Osada+koczownik%C3%B3w,561,266,699146580,845,1 +59808,Wioska+Poranna+Gwiazda,605,711,699753863,212,0 +59809,Wioska+barbarzy%C5%84ska,728,562,1601917,719,0 +59811,Wioska+barbarzy%C5%84ska,534,736,699878511,637,0 +59812,Wioska+barbarzy%C5%84ska,275,583,0,144,0 +59813,%C5%BBelaza+Pot%C4%99ga,614,299,849052195,226,0 +59814,Spray,680,352,7973893,724,0 +59815,Wioska+szalony+iwan,734,551,8772923,531,0 +59816,Wioska+orko3,718,601,7069895,167,0 +59817,031Luchowski,508,737,698620694,1631,0 +59818,Wioska+barbarzy%C5%84ska,549,732,0,79,0 +59819,39+barbarzy%C5%84ska+2B,264,444,849018442,1879,0 +59821,Wioska+barbarzy%C5%84ska,330,662,0,160,0 +59822,Osada+koczownik%C3%B3w,580,723,6299408,829,6 +59823,Wioska+barbarzy%C5%84ska,373,699,0,48,0 +59824,Zaplecze+Gubernia,354,316,699796330,1757,0 +59825,AKIKU,666,326,2315542,866,0 +59826,Wioska+barbarzy%C5%84ska,267,496,8630972,1355,0 +59827,PPF-59,562,275,1424656,53,0 +59828,Wioska+barbarzy%C5%84ska,598,278,3600737,360,0 +59829,Wioska+epstein.,742,491,848905784,123,0 +59830,Kami+6,741,469,849002796,568,0 +59831,Wioska+RED87,735,447,699836388,97,0 +59832,Wioska+barbarzy%C5%84ska,361,313,698160606,1837,0 +59833,Wypizdowo,676,662,849119631,189,0 +59834,Wioska+sendzia555,264,450,6294942,128,0 +59835,No.31,473,735,698826986,363,3 +59836,Wioska+drewniak,719,408,849119848,176,0 +59837,Wioska+barbarzy%C5%84ska,594,275,849100406,802,0 +59838,078KP,489,264,849063849,80,0 +59839,Wioska+barbarzy%C5%84ska,670,327,699072129,1355,0 +59840,Wioska+solek4321,260,461,699808655,1059,0 +59841,Wioska+barbarzy%C5%84ska,645,316,0,94,0 +59842,Wioska+bartki37,267,539,849016844,102,0 +59843,Sony+911,683,654,1415009,809,0 +59845,Wioska+barbarzy%C5%84ska,728,575,2453888,748,0 +59846,Wioska+barbarzy%C5%84ska,270,551,0,189,0 +59847,039.+Gloria+Victis,276,578,848886973,868,0 +59849,Wioska+barbarzy%C5%84ska,259,487,0,52,0 +59851,Wioska+WitoldWolski,629,697,849119432,153,0 +59852,Wioska+barbarzy%C5%84ska,733,500,942959,453,0 +59853,Wioska+barbarzy%C5%84ska,564,275,0,70,0 +59854,P%C3%B3%C5%82nocny+Bagdad,618,294,8847546,2017,0 +59855,Wioska+Chwedi,388,288,848958005,1011,0 +59856,Wioska+barbarzy%C5%84ska,673,338,699072129,1072,0 +59857,Osada+koczownik%C3%B3w,730,560,848995478,939,6 +59858,079+-+Budowanko%21,510,742,7540891,150,0 +59859,Wioska+..Tomek..,585,590,849004759,2214,0 +59860,Wioska+barbarzy%C5%84ska,261,463,699213622,412,0 +59861,Wioska+festher,459,739,849117362,1219,0 +59862,Wioska+bielacz,275,582,849096265,845,0 +59863,Sony+911,692,642,1415009,1024,0 +59864,Wioska+beast01,464,262,699853286,26,0 +59865,032Drewno,481,732,698620694,2485,0 +59866,Wioska+marekwalczyk,624,292,699155679,214,0 +59867,054+-+Budowanko%21,508,733,7540891,2438,1 +59868,BORKOS,721,398,3487721,1606,0 +59870,Wioska+barbarzy%C5%84ska,301,631,2289134,36,0 +59871,Wioska+barbarzy%C5%84ska,635,692,848987051,568,0 +59872,hyniu+2112,265,549,849094061,288,0 +59873,073KP,466,269,849063849,320,0 +59874,Wioska+barbarzy%C5%84ska,372,695,0,70,0 +59875,Radiowa,723,565,848932879,1032,0 +59876,Wioska+BastianCHW,728,417,849061406,26,0 +59877,Wioska+Varendial+x+Visyq,338,681,848977748,26,0 +59878,0124,721,421,698416970,519,6 +59879,akuku,551,729,6425087,589,0 +59880,Wioska+barbarzy%C5%84ska,320,651,0,120,0 +59881,Wioska+Damian0704,293,394,849075744,1976,0 +59882,Wioska+Maniek.W,639,692,699831603,26,0 +59883,Wioska+barbarzy%C5%84ska,727,421,699628084,242,0 +59884,181,732,457,565043,572,0 +59885,KASHYYYK+5,573,732,699383121,246,0 +59886,Wioska+SzCzAkUs,338,669,2684175,503,0 +59887,Wioska+barbarzy%C5%84ska,735,439,699524891,882,0 +59888,0000040Z,277,568,849089881,3722,1 +59889,Wioska+Exodus303,614,503,849119994,998,0 +59890,0122,701,384,698416970,489,0 +59891,Wioska+barbarzy%C5%84ska,737,525,8742874,61,0 +59892,X.10,726,440,699737356,461,0 +59893,81+Calimera+%2B747.000%2B-102,717,413,2571536,206,0 +59894,Albiorix,383,298,3377503,307,0 +59895,Wioska+barbarzy%C5%84ska,621,708,699189792,124,0 +59896,Witten,596,724,849057450,1813,0 +59897,039+-+Salamanca,720,600,698342159,932,0 +59898,Wioska+kijek,710,377,849115304,38,0 +59899,Wioska+barbarzy%C5%84ska,703,382,1415009,62,0 +59900,Wioska+Beast+Palladin,733,433,3362925,967,0 +59901,Zzz+13+troch%C4%99+bardzo+daleko,283,582,849084740,358,0 +59902,Wioska+Dominoo1,734,560,699748916,373,0 +59903,Wioska+mustanq123,441,733,6851059,86,0 +59904,K67+32,714,602,698867483,653,0 +59905,081+-+Budowanko%21,495,733,7540891,49,0 +59906,Wioska+marcinpaluch0211,729,429,849120093,69,0 +59907,Wioska+barbarzy%C5%84ska,335,676,0,149,0 +59908,Wioska+barbarzy%C5%84ska,439,273,1238300,42,0 +59909,Wioska+barbarzy%C5%84ska,396,712,849014922,35,0 +59910,Wioska+barbarzy%C5%84ska,348,685,0,35,0 +59911,North+075,502,266,849064752,3243,0 +59912,Wioska+wiNo,412,727,849095756,26,0 +59913,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,573,729,7589468,75,0 +59914,Wioska+Segadorr,717,594,8083365,26,0 +59915,Osada+koczownik%C3%B3w,622,711,7589468,112,2 +59916,082+-+Budowanko%21,531,740,7540891,50,0 +59917,O161,321,660,272173,899,9 +59919,Wioska+barbarzy%C5%84ska,348,675,0,176,0 +59920,Wioska+bzdenio,733,562,867191,82,0 +59921,228+%7C,727,415,8000875,211,0 +59922,Wioska+onek666,588,281,849032413,379,0 +59923,047,725,410,849091105,560,0 +59924,Wioska+barbarzy%C5%84ska,454,270,0,32,0 +59925,North+087,498,265,849064752,2920,0 +59926,SERWAR,287,383,849119528,1574,0 +59927,Wioska+barbarzy%C5%84ska,386,289,0,45,0 +59928,Wioska+japacz,273,570,7809316,26,0 +59929,Wioska+barbarzy%C5%84ska,630,294,3600737,519,0 +59930,055+-+Budowanko%21,477,732,7540891,2414,2 +59931,Wioska+pol992,667,334,8468862,121,0 +59932,Wioska+barbarzy%C5%84ska,580,718,849098628,547,0 +59933,Wioska+Lego.,526,740,699778684,215,0 +59934,Wioska+Pietrasfryzjer,693,632,699866225,590,0 +59935,Wioska+barbarzy%C5%84ska,328,665,0,41,0 +59936,Wioska+barbarzy%C5%84ska,667,326,699072129,1212,0 +59938,o023,601,720,699189792,2605,0 +59939,Wioska+barbarzy%C5%84ska,283,404,0,34,0 +59940,0127,699,381,698416970,505,0 +59941,NO.+00,268,474,849118262,424,0 +59942,Wioska+barbarzy%C5%84ska,381,700,849014922,539,0 +59943,Wioska+damiano3106,396,288,848940223,129,0 +59944,Wioska+barbarzy%C5%84ska,358,686,0,136,0 +59945,Wioska+barbarzy%C5%84ska,599,279,0,198,0 +59946,Wioska+barbarzy%C5%84ska,457,263,699191455,278,0 +59947,Wioska+barbarzy%C5%84ska,656,327,0,50,0 +59948,Wioska+barbarzy%C5%84ska,718,392,699598425,1289,0 +59949,Pomiot+ob%C5%82%C4%99du,617,290,849118709,317,0 +59950,Wioska+barbarzy%C5%84ska,626,294,3600737,523,0 +59951,Wioska+barbarzy%C5%84ska,445,273,0,44,0 +59952,P%C3%B3%C5%82nocny+Bagdad,623,296,8847546,1865,0 +59953,81+kybb.,577,278,122492,825,0 +59954,Wioska+barbarzy%C5%84ska,357,311,3484132,1650,0 +59955,Wioska+barbarzy%C5%84ska,717,415,8325700,613,1 +59957,Wioska+barbarzy%C5%84ska,735,443,698191218,803,0 +59958,Wioska+barbarzy%C5%84ska,303,367,0,39,0 +59959,Gwenville+017,453,271,848986638,474,0 +59960,Wioska+Mufferr,617,297,698455203,120,0 +59961,033Nawisy+lodowe,472,734,698620694,2183,0 +59962,001+Thais,695,646,699516250,4942,0 +59963,North+101,476,264,849064752,2351,0 +59965,Wioska+barbarzy%C5%84ska,605,708,0,78,0 +59966,Wioska+adamzagi,393,717,849103914,380,0 +59967,Wioska+barbarzy%C5%84ska,487,741,0,37,0 +59968,Dark+Place,417,280,699797065,330,0 +59969,Wioska+barbarzy%C5%84ska,302,359,698388578,114,0 +59970,Apollo8,737,467,6590149,403,0 +59971,Wioska+damianslipiec,296,371,699865603,26,0 +59972,Wioska+DomiNio,290,377,849109705,357,0 +59973,Wioska+barbarzy%C5%84ska,575,731,7589468,100,0 +59974,001,280,587,8617889,1669,0 +59975,Wioska+justyna010114,724,413,849118261,446,0 +59976,Wioska+barbarzy%C5%84ska,377,697,849014922,571,0 +59977,P%C3%B3%C5%82nocny+Bagdad,613,289,8847546,1896,8 +59978,Wioska+mjk105,732,528,849103876,26,0 +59979,Wioska+barbarzy%C5%84ska,395,716,849014922,658,0 +59980,81+Dorian888,499,268,6423275,514,0 +59981,031,470,737,8268010,942,0 +59982,nic+tu+po+mnie,482,268,849119862,466,0 +59983,WB31,291,381,356642,974,8 +59984,Trundugl,290,619,849117196,958,0 +59985,Wioska+barbarzy%C5%84ska,716,405,699598425,1143,0 +59986,079+obrze%C5%BCa,265,560,699510259,1323,8 +59987,Wioska+barbarzy%C5%84ska,271,549,0,32,0 +59988,Wioska+barbarzy%C5%84ska,464,739,0,26,0 +59989,Wioska+barbarzy%C5%84ska,359,692,0,172,0 +59990,Wioska+barbarzy%C5%84ska,350,317,0,81,0 +59993,North+088,501,268,849064752,2915,0 +59995,Wioska+pisior18,610,290,699551148,62,0 +59996,Wioska+jaro513,555,733,849118128,228,0 +59997,Wioska+barbarzy%C5%84ska,312,346,0,116,0 +59998,Wioska+pogromca+xcc,660,674,8926516,176,0 +59999,034Dendystka,474,740,698620694,2279,0 +60000,Ks+Konfederacja,695,360,848915730,1643,5 +60001,Wioska+jozin4don,292,613,849106548,500,0 +60002,Wioska+barbarzy%C5%84ska,353,689,0,158,0 +60004,New+World,425,724,698152377,1974,0 +60005,Wioska+skwarol888,398,281,699741694,630,0 +60006,P%C3%B3%C5%82nocny+Bagdad,605,289,8847546,909,0 +60007,Wioska+Jacymir15,538,735,849117536,68,0 +60008,Wioska+barbarzy%C5%84ska,724,566,0,26,0 +60009,Melina,276,416,699854312,391,0 +60010,Wioska+Sir+fojerman,690,366,698885960,97,0 +60011,Moja1,724,422,849114119,1027,0 +60012,Wioska+barbarzy%C5%84ska,315,652,2289134,137,0 +60013,Wioska+lukasz111,576,730,849066035,237,0 +60014,Wioska+barbarzy%C5%84ska,446,728,0,27,0 +60015,Wioska+barbarzy%C5%84ska,522,736,699878511,479,0 +60016,Wioska+gnom1,627,699,849119476,301,0 +60017,Wioska+barbarzy%C5%84ska,598,716,849098628,414,0 +60018,zenek12,685,656,849118820,289,0 +60019,47+barbarzy%C5%84ska,268,429,849018442,645,0 +60020,Pallet+Town,268,542,849119423,514,0 +60021,Wioska+ADiKxD,403,720,6504658,55,0 +60022,Alator,391,287,3377503,393,0 +60023,Wioska+bartek145972,662,325,8942143,339,0 +60024,Wioska+barbarzy%C5%84ska,284,611,0,101,0 +60025,Osada+koczownik%C3%B3w,406,287,6343784,809,5 +60026,Wioska+rutej123,284,591,699720374,116,0 +60027,Zzz+14+dalej+ni%C5%BC+daleko,280,586,849084740,197,0 +60028,Wioska+Chmielu94,649,686,849105187,115,0 +60029,Wioska+barbarzy%C5%84ska,334,667,0,88,0 +60031,Wioska+barbarzy%C5%84ska,728,586,699493750,268,0 +60032,Wioska+Kampffliege,585,282,849120421,112,0 +60033,Wioska+badidek,702,374,9002278,26,0 +60034,Wioska+borowka73,732,567,2811568,400,0 +60035,Wioska+barbarzy%C5%84ska,371,704,849014922,394,0 +60036,Wioska+Tomaszer12,670,662,849119407,525,0 +60037,Wioska+Wanderwoman,697,410,849120438,500,0 +60038,Wioska+181,410,717,849120129,849,0 +60039,Wioska+barbarzy%C5%84ska,266,545,0,48,0 +60040,P%C3%B3%C5%82nocny+Bagdad,608,288,8847546,719,0 +60042,019,394,283,699694284,1227,0 +60044,Wioska+barbarzy%C5%84ska,546,737,699878511,445,0 +60045,Wioska+barbarzy%C5%84ska,714,385,0,83,0 +60046,Wioska+smerfy+22,384,293,849116819,52,0 +60047,Wioska+barbarzy%C5%84ska,304,636,2289134,187,0 +60049,CastAway+%21041,718,592,9314079,423,0 +60050,Wioska+barbarzy%C5%84ska,738,465,0,32,0 +60051,Wioska+barbarzy%C5%84ska,721,425,849095599,362,0 +60052,Osada+koczownik%C3%B3w,725,587,699493750,408,3 +60053,Wioska+bonktrzmiel+I,627,304,849120488,255,0 +60054,PPF-38,529,259,1424656,635,0 +60055,Wioska+barbarzy%C5%84ska,719,406,0,57,0 +60056,010+x,273,557,197581,1106,5 +60057,Miasteczko,636,299,849046206,1011,0 +60058,Wioska+barbarzy%C5%84ska,344,315,699191464,465,0 +60059,Wioska+Przemko+duch,317,341,849119975,627,0 +60060,Wioska+barbarzy%C5%84ska,708,392,0,156,0 +60061,40+Dol+Blathanna,740,469,8976313,472,0 +60062,North+077,486,264,849064752,2913,6 +60063,TuRawka,597,716,849120285,165,0 +60064,%23159%23,662,674,692803,653,0 +60065,Wioska+v3n1s,644,307,849109875,180,0 +60066,X.09,726,447,699737356,456,0 +60068,PPF-42,536,260,1424656,571,0 +60069,Wioska+Mandrysi,605,715,849116044,295,0 +60070,Osada+koczownik%C3%B3w,608,715,699828685,816,6 +60071,Wioska+coreslaw,668,666,699564303,200,0 +60072,Wioska+barbarzy%C5%84ska,594,714,699828685,437,0 +60073,Wioska+Sir+Pazdan,266,462,9270302,1281,0 +60074,076,666,332,2502956,285,5 +60075,Wioska+polska222,647,683,849102833,228,0 +60076,Wioska+barbarzy%C5%84ska,376,710,0,44,0 +60077,Wioska+barbarzy%C5%84ska,300,636,2289134,206,0 +60078,Wioska+fikumiku111,741,526,849055527,179,0 +60079,%23157%23,609,718,692803,613,0 +60081,FP057,446,730,699605333,1328,0 +60082,Wioska+barbarzy%C5%84ska,394,281,0,26,0 +60083,K67+33,718,603,698867483,639,0 +60084,Wioska+miro2558,669,670,1170102,196,0 +60085,Wioska+barbarzy%C5%84ska,725,427,698191218,598,0 +60086,Wioska+barbarzy%C5%84ska,265,564,0,26,0 +60087,PPF-39,521,267,1424656,623,0 +60088,NOT%3F,310,348,9236866,998,4 +60089,Wioska+dorkness,700,620,849055096,136,0 +60090,Wioska+barbarzy%C5%84ska,266,494,8630972,390,0 +60091,Wioska+barbarzy%C5%84ska,580,280,0,27,0 +60092,kww10,728,547,699831860,486,0 +60093,Wioska+barbarzy%C5%84ska,742,497,0,131,0 +60094,Wioska+Zdrowa+Pi%C4%99ta+Achillesa,280,406,699699650,26,0 +60095,Zaplecze+Osada+2,357,312,699796330,1839,2 +60096,Wioska,723,568,2516620,298,0 +60097,48+barbarzy%C5%84ska,271,448,849018442,646,0 +60098,048,733,442,849091105,511,1 +60099,Wioska+apysia,739,456,1322622,200,0 +60100,oliwka.+1,290,600,849078119,373,0 +60101,Wioska+jjaare,392,290,7013660,802,0 +60102,Wioska+Miko6,732,525,6704738,307,0 +60103,Osada+koczownik%C3%B3w,579,271,849064614,787,8 +60104,Wioska+Sir+kamil+1999,374,572,9182487,119,0 +60105,koniec,626,698,699883836,136,0 +60106,5%2C56mm+Grot,486,256,3430969,974,0 +60107,Wioska+barbarzy%C5%84ska,378,701,849014922,274,0 +60108,Wioska+Mario+76,453,733,699672060,620,0 +60109,Wioska+barbarzy%C5%84ska,737,534,8742874,308,0 +60110,Wioska+adahin,387,413,7995033,487,0 +60111,Wioska+Kapral161,418,730,849098217,276,0 +60112,Wioska+barbarzy%C5%84ska,727,549,17714,264,0 +60113,Wioska+rere1995,271,456,1020792,834,0 +60114,Wioska+barbarzy%C5%84ska,730,578,2453888,470,0 +60115,Wioska+adamcx91,406,723,849111418,1323,0 +60116,North+105,492,258,849064752,2591,0 +60117,Wioska+JungleBoyz,616,408,7915966,5778,0 +60118,Wioska+barbarzy%C5%84ska,736,559,848995478,1664,0 +60120,Wioska+barbarzy%C5%84ska,618,711,849104491,364,0 +60121,Wioska+Latino,286,593,848893447,26,0 +60122,Wioska+barbarzy%C5%84ska,360,694,0,113,0 +60123,Wioska+Noto+Wojsko,307,635,849120051,26,0 +60124,Wioska+Krzysiek12,419,271,849117533,73,0 +60125,KONFA+TO+MARKA%2C+NARKA,276,410,698152377,1946,0 +60126,Wioska+LOCODEMACONHA,294,370,699832737,26,0 +60127,%23162%23,659,676,692803,520,0 +60128,Wioska+Micha%C5%82+z%C5%82o%C5%9Bliwy,295,615,849107426,310,0 +60129,039.+5spajk5,678,349,2873154,494,0 +60131,Wsch%C3%B3d+004,708,616,698562644,432,0 +60133,Wioska+barbarzy%C5%84ska,725,420,699524891,839,0 +60134,181,656,328,8890346,449,0 +60135,Wioska+barbarzy%C5%84ska,308,640,2289134,125,0 +60136,Wioska+hubal3,419,273,849030481,45,0 +60137,Wioska+barbarzy%C5%84ska,620,712,849104491,356,0 +60139,o021,628,702,699189792,2307,0 +60140,Wioska+iSeAtakuj,712,402,8095505,26,0 +60141,Wioska+barbarzy%C5%84ska,371,702,849014922,407,0 +60142,Wioska+ptomptom,523,261,699780721,615,0 +60143,C0331,268,547,8841266,1507,0 +60144,Wioska+Ankalagon+Czarny,348,313,1517450,268,0 +60145,Wioska+ERAS,712,387,849120791,26,0 +60146,Wioska+barbarzy%C5%84ska,378,711,849014922,540,0 +60147,Wioska+Kolekcjon,365,299,849120526,140,0 +60148,Wioska+barbarzy%C5%84ska,376,705,849014922,407,0 +60149,Wioska+matipo321,274,580,849114450,113,0 +60150,Lord+Lord+Franek+.%23190,698,359,698420691,896,0 +60151,Wioska+Rommel,260,516,698983867,371,0 +60152,Wioska+Krejv95,286,600,699554427,26,0 +60153,Wioska+barbarzy%C5%84ska,295,630,2289134,220,0 +60154,Stopy,279,407,849108891,303,0 +60155,125.Stradi,449,268,698365960,1617,0 +60156,Wioska+Lodar93,346,688,9138661,26,0 +60157,Wioska+barbarzy%C5%84ska,450,268,699644852,145,0 +60159,041Szaraki,476,736,698620694,1827,0 +60160,Wioska+KamykosXD,272,426,9128606,70,0 +60161,059+-+Budowanko%21,518,735,7540891,1635,0 +60162,New+World,416,728,698152377,1863,3 +60163,111,354,306,698384726,295,0 +60164,Wioska+barbarzy%C5%84ska,566,732,699878511,445,0 +60165,Wioska+rozyczka,493,742,849120698,705,0 +60166,Wioska+Herkuless,413,725,699642954,808,0 +60167,Wioska+barbarzy%C5%84ska,406,719,849014922,394,0 +60168,Wioska+Martynka2010,348,683,849120865,66,0 +60169,042Ko%C5%84c%C3%B3wka,466,741,698620694,1488,0 +60170,Wioska+kamien335,738,522,8886999,54,0 +60171,P%C3%B3%C5%82nocny+Bagdad,610,285,8847546,726,0 +60172,Wioska+Zachariasz+Grundbaum,435,732,849096979,26,0 +60173,Wioska+paviks,313,649,849119486,26,0 +60174,Aa4,589,715,849097614,1436,0 +60175,Wioska+Knoxpl,705,617,849108157,425,0 +60177,juVe,676,653,698167153,1124,0 +60178,119.+Lida+Aye,675,668,8337151,1099,0 +60179,Wioska+piotrus507,353,692,3973432,26,0 +60180,YYY,476,742,2293376,1918,0 +60181,Wioska+patrykoss93,264,544,3428961,26,0 +60182,znam+ostropesta+4,436,732,699777372,648,0 +60183,wilcza+wioska,643,310,848976720,412,0 +60184,Wioska+barbarzy%C5%84ska,298,629,2289134,173,0 +60185,Wioska+igrane5000,730,437,699655364,26,0 +60186,090+obrze%C5%BCa,266,561,699510259,286,0 +60188,Wioska+barbarzy%C5%84ska,732,456,699524891,1211,0 +60189,Wioska+skowron,565,498,8831977,168,0 +60190,KONFA+TO+MARKA%2C+NARKA,277,407,698152377,1577,0 +60191,Wioska+smagi007,259,508,6193337,853,0 +60192,Wioska+tinki,329,670,849120855,26,0 +60193,037.+Gloria+Victis,268,575,848886973,1058,0 +60194,Wioska+kokso420,732,445,3734803,26,0 +60195,Wioska+Nowicjusz1,560,729,849113063,64,0 +60196,Wioska+Wolin,263,470,849100891,550,0 +60197,Wioska+barbarzy%C5%84ska,263,499,8630972,97,0 +60198,Wioska+tribal766,671,666,849116089,26,0 +60199,%23160%23,667,678,692803,565,0 +60200,Wioska+wuener,360,311,8889781,462,0 +60201,Wioska+barbarzy%C5%84ska,721,586,698191218,439,0 +60202,Wioska+thor13,322,349,849103113,375,0 +60203,Wioska+barbarzy%C5%84ska,267,453,699213622,341,0 +60204,Wioska+Mr.SoLo,511,737,699366937,551,0 +60205,Wioska+Pongo,302,633,849116225,46,0 +60206,Wioska+barbarzy%C5%84ska,283,604,0,125,0 +60207,Wioska+jekord,609,284,849031779,26,0 +60208,Wioska+PiotrBiznes,670,335,849105032,114,0 +60209,Wioska+lech3838,610,708,6078176,120,0 +60210,Wioska+Impro,484,262,699875086,26,0 +60211,Wioska+sebo1303,547,735,848949271,135,0 +60212,P%C3%B3%C5%82nocny+Bagdad,594,287,8847546,657,0 +60213,Wioska+Dzymek10,543,274,2514219,146,0 +60214,063+-+Budowanko%21,535,734,7540891,1085,0 +60215,Wioska+Elendila,459,265,699345087,26,0 +60216,062+-+Budowanko%21,468,738,7540891,1068,0 +60217,Wioska+NajlepszyZiomekWeWsi,509,735,699360521,135,0 +60218,49+barbarzy%C5%84ska,267,443,849018442,602,0 +60219,Wioska+Huayna+Capac,339,678,848964085,26,0 +60220,058,694,638,699099811,331,0 +60221,Wioska+Smerf%C3%B3w,462,261,8239348,128,0 +60222,Wioska+Kamileq69,277,597,849099785,26,0 +60223,Wioska+barbarzy%C5%84ska,557,735,699878511,361,0 +60224,Wioska+DzikiDzik,275,568,699405877,132,0 +60225,Wioska+WillyBilly,715,603,849117644,26,0 +60226,Wioska+barbarzy%C5%84ska,728,457,849095435,195,0 +60227,Autopsja,735,501,7313287,1043,0 +60228,Wioska+barbarzy%C5%84ska,737,476,699524891,1142,0 +60229,Wioska+akamee,354,687,699767482,26,0 +60230,Wioska+barbarzy%C5%84ska,450,264,699644852,130,0 +60231,Wioska+Rejku30,310,647,699648975,71,0 +60232,KONFA+TO+MARKA%2C+NARKA,274,411,698152377,1707,0 +60233,Wioska+GrubySponsor,327,331,849119078,141,0 +60234,K67+36,711,621,698867483,403,0 +60235,Wioska+jankes630,594,284,3264281,73,0 +60236,O157,294,631,272173,549,0 +60238,Wioska+barbarzy%C5%84ska,536,738,7590135,219,0 +60239,Wioska+rainyday,565,729,7180447,371,0 +60240,Wioska+barbarzy%C5%84ska,738,452,849095599,171,0 +60241,Wioska+LodowyPty%C5%9B,464,263,699870923,26,0 +60242,PPF-45,546,261,1424656,512,0 +60243,Osada+koczownik%C3%B3w,328,327,699304554,264,1 +60244,Wioska+Kilmonn,602,289,849101656,72,0 +60245,KONFA+TO+MARKA%2C+NARKA,276,426,698152377,1750,0 +60246,Osada+koczownik%C3%B3w,581,270,699146580,288,3 +60248,North+107,487,257,849064752,1991,0 +60249,KOIEC+NIC+NIE+ROBI%C4%86,288,600,849110289,603,0 +60250,Wioska+barbarzy%C5%84ska,666,330,699072129,1022,0 +60251,Wioska+kamillo220,326,668,698403524,26,0 +60252,Wioska+barbarzy%C5%84ska,373,301,849017820,383,0 +60253,Wioska+I,400,288,699798847,133,0 +60254,C0343,259,532,8841266,383,3 +60255,neo328,638,308,7114815,158,0 +60257,Wioska+miki0412,676,663,9219778,166,0 +60258,Wioska+barbarzy%C5%84ska,733,520,1601917,329,0 +60259,C0348,262,520,8841266,295,0 +60260,Wioska+Jack+Daniels,429,731,849090289,126,0 +60261,Wioska+barbarzy%C5%84ska,386,716,849014922,394,0 +60263,Wioska+stopercool,286,617,8366849,133,0 +60264,K67+35,704,615,698867483,574,0 +60265,Wioska+Hwastu,569,732,849004338,26,0 +60266,Wioska+barbarzy%C5%84ska,670,340,699072129,619,0 +60267,Polska,366,704,849099425,641,0 +60268,Wioska+VaniaMay,262,495,849109701,360,0 +60269,TWIERDZA+DAMIK+2,579,274,6143689,396,0 +60270,Wioska+Ludwik+3,538,269,1757722,175,0 +60271,Wioska+barbarzy%C5%84ska,266,565,6892517,249,0 +60272,Wioska+leon1214,696,625,849109152,111,0 +60273,KONFA+TO+MARKA%2C+NARKA,280,403,698152377,1213,0 +60274,Wioska+Michal1614,338,321,849120966,26,0 +60275,mc02,708,387,848939131,306,0 +60276,Wioska+De+Integro,593,280,7431759,32,0 +60277,061+-+Budowanko%21,479,737,7540891,1086,0 +60278,Wioska+Danielo3,265,461,849092875,26,0 +60279,Wioska+barbarzy%C5%84ska,301,638,2289134,117,0 +60280,Wioska+Rychu0890,328,659,849024208,441,0 +60281,Wioska+Mizerkaa,571,731,849001388,26,0 +60282,50+barbarzy%C5%84ska,276,437,849018442,601,0 +60283,Wioska+adrianh3,737,480,2083273,26,0 +60284,Wioska+Lord+patban177,697,630,849109232,448,0 +60285,034,442,732,8268010,226,0 +60286,-001-+Osada,337,319,699406101,742,0 +60287,Wioska+AP1997,419,730,848973968,249,0 +60288,51+barbarzy%C5%84ska,265,443,849018442,874,0 +60289,Wioska+EpsHunT,496,741,849109601,26,0 +60290,067+-+Budowanko%21,533,732,7540891,765,0 +60291,Wioska+Timb3r,580,270,698298333,26,0 +60292,Wioska+Anko+Itosu,278,429,699855469,26,0 +60293,Wioska+barbarzy%C5%84ska,585,724,849098628,314,0 +60294,Wioska+kozielniak,488,266,849118827,141,0 +60295,%23170%23,639,693,692803,101,0 +60296,Wioska+Terror+x+Miniqo,542,260,9154293,26,0 +60297,Wioska+Kwiatuu,457,266,699264947,26,0 +60298,Wioska+barbarzy%C5%84ska,737,540,17714,165,0 +60299,Wioska+wtkc,259,512,148405,26,0 +60300,Wioska+marekttt,703,636,848893520,26,0 +60301,Wioska+barbarzy%C5%84ska,329,666,0,112,0 +60302,Starogr%C3%B3d,296,629,849063605,291,0 +60303,071KP,471,260,849063849,290,0 +60304,Wioska+Kulfix,279,605,849114040,521,0 +60305,Wioska+barbarzy%C5%84ska,290,603,0,54,0 +60307,Wioska+Nicosta,309,636,8984336,26,0 +60308,Wioska+barbarzy%C5%84ska,279,582,699016994,245,0 +60309,043+Ave+WHY,487,733,698620694,1272,5 +60311,Wioska+ARENTHAI,564,266,849121036,70,0 +60312,069KP,469,266,849063849,290,0 +60313,Wioska+Saladyn+Pustyny,289,613,8043286,26,0 +60315,North+106,522,266,849064752,1899,0 +60316,Twierdza,319,341,699795301,1478,0 +60317,Wsch%C3%B3d+006,705,624,698562644,265,0 +60318,Wioska+Ppfarmer,287,404,849121337,26,0 +60319,Wioska+barbarzy%C5%84ska,686,345,699072129,860,0 +60321,K66,697,627,698867483,366,0 +60322,Wioska+sajmon117,642,685,2727535,26,0 +60323,Wioska+barbarzy%C5%84ska,350,686,0,114,0 +60324,Wioska+Patryk95,688,358,849114664,26,0 +60325,North+112,492,260,849064752,1499,0 +60326,Bexaaa,455,569,698698087,1129,0 +60328,Wioska+Jar0o,703,367,1610267,115,0 +60330,038.+Gloria+Victis,278,575,848886973,882,0 +60331,Wioska+Lord+Dan+1,403,287,849121331,512,0 +60332,Wioska+barbarzy%C5%84ska,329,672,0,114,0 +60333,Wioska+aghjs5,419,278,849113556,257,0 +60334,North+108,511,261,849064752,1971,0 +60335,Wioska+PiotrekPazzi,336,328,848917127,158,0 +60336,Wioska37,325,342,699711926,790,0 +60338,Wioska+barbarzy%C5%84ska,340,329,6169408,168,0 +60339,Osada+koczownik%C3%B3w,368,702,849014922,345,6 +60340,Wioska+OcHnIK,314,647,40666,26,0 +60341,bla+bla+2,256,504,849091084,119,0 +60342,Wioska+Ksi%C4%99ga+przyrodniczo,730,421,7495050,102,0 +60343,%3DSAwars%3D08%3D,596,276,849106420,346,0 +60344,Wioska+Hilwoz,256,497,671516,26,0 +60345,Wioska+barbarzy%C5%84ska,505,734,698620694,957,0 +60346,Osada+koczownik%C3%B3w,461,264,699191449,241,2 +60347,Wioska+afibatin,664,320,6326215,58,0 +60348,Wioska+barbarzy%C5%84ska,339,681,0,59,0 +60350,Osada+koczownik%C3%B3w,603,289,699146580,140,7 +60351,Wioska+KATOZAUR,520,738,699156456,77,0 +60352,TOLCIA+5,640,314,699868739,272,0 +60353,Wioska+ekopark,270,561,848993903,52,0 +60354,Wioska+barbarzy%C5%84ska,331,328,699304554,179,0 +60355,Wioska+Habibi+Malik,301,369,849090243,85,0 +60356,New+World,428,723,698152377,1354,0 +60357,Wioska+golem6,654,316,1085802,26,0 +60359,224+%7C,722,404,8000875,94,0 +60360,Wioska+xLyn,678,338,849121483,555,0 +60361,Wioska+cwaniaczek25,273,421,848930996,26,0 +60362,Gliwice,679,346,848932879,328,0 +60363,Wioska+mani4884,264,529,848923646,26,0 +60364,52+barbarzy%C5%84ska,267,429,849018442,758,0 +60365,Barbakan,509,339,7803631,869,0 +60366,Wioska+barbarzy%C5%84ska,260,536,0,92,0 +60367,Wioska+huzar28,425,273,849121389,26,0 +60368,Napewno+to+nie+jest+off,637,298,848912265,298,1 +60369,Wioska+moskittt,738,476,8204028,307,0 +60370,Wioska+barbarzy%C5%84ska,285,392,0,105,0 +60371,FARMA+nie+przejmowac,641,310,699492120,168,0 +60372,Wioska+Feruell,738,530,699825977,133,0 +60373,Kiszyni%C3%B3w,406,278,699588526,411,0 +60374,Wioska+tomek-gt,721,603,699867390,435,0 +60375,KONFA+TO+MARKA%2C+NARKA,270,417,698152377,1225,0 +60376,Wioska+Maniek28a,649,309,2942206,639,0 +60377,Wioska+barbarzy%C5%84ska,718,583,2453888,217,0 +60378,Wioska+faraon1981,642,477,849006011,437,0 +60379,Na+SsSskraju,270,571,1536625,256,0 +60380,Wioska+ProCzacha,299,378,849099660,26,0 +60381,New+World,414,719,698152377,1208,0 +60382,Wioska+mikos,590,277,849109072,291,0 +60383,Wygwizd%C3%B3w,279,593,849096458,572,0 +60384,Wioska+RYSIO+E46,264,509,699812828,26,0 +60385,Wioska+barbarzy%C5%84ska,735,486,699574408,464,0 +60387,Wioska+barbarzy%C5%84ska,486,742,698620694,987,0 +60388,Wioska+justyna1234,366,665,849103595,50,0 +60389,246,366,298,7271812,231,0 +60390,Wioska+ten+kt%C3%B3ry+kroczy,268,467,1794060,121,0 +60391,Wsch%C3%B3d+007,714,597,698562644,210,0 +60392,Wioska+barca35fcb,739,489,849118043,26,0 +60393,Wioska+barbarzy%C5%84ska,712,598,8323711,122,0 +60394,Wioska+Dziobson266,683,651,699617524,203,0 +60395,Wioska+barbarzy%C5%84ska,422,277,849038597,711,0 +60396,Wioska+marart2,320,341,699380730,53,0 +60397,G%C3%B3ra+3,440,269,849096310,309,0 +60398,Wioska+Sir+Wiking,269,543,8790027,109,0 +60399,Wioska+rewox,701,361,849119017,26,0 +60400,Wioska+barbarzy%C5%84ska,603,284,849064614,94,0 +60401,PPF-46,543,270,1424656,319,4 +60402,Wioska+Sir+NoToKredki,643,693,699560963,56,0 +60403,Wioska+owen10,737,483,366938,26,0 +60404,Wioska+aegalionkak,291,607,848912151,26,0 +60405,Wioska+barbarzy%C5%84ska,363,311,3484132,1210,0 +60406,Wioska+gis1969b,507,258,7096208,26,0 +60407,Wioska+tomas289,659,682,849099255,26,0 +60408,%23164%23,641,700,692803,346,0 +60410,Wioska+barbarzy%C5%84ska,734,548,1601917,335,0 +60411,Wioska+Angelina2013,266,535,849097729,132,0 +60412,Wioska+ivanov66,739,532,2559569,376,0 +60414,Wioska+barbarzy%C5%84ska,553,736,699878511,283,0 +60415,Wioska+grzeg,277,580,699826312,371,0 +60416,Wioska34,329,340,699711926,1054,0 +60417,Wioska+TheZeNiT,697,360,849009945,26,0 +60419,Wioska+barbarzy%C5%84ska,636,306,0,90,0 +60420,Wioska+Khorstes,722,586,8709940,26,0 +60421,Wioska+barbarzy%C5%84ska,742,468,699524891,338,0 +60422,Osada+koczownik%C3%B3w,391,708,849014922,235,3 +60423,Wioska+drzyzga123,517,257,849121725,26,0 +60424,Wioska+barbarzy%C5%84ska,310,653,0,72,0 +60425,Wioska+-umino-,626,293,8662264,26,0 +60426,Wioska+-+V+-,726,581,9153430,235,0 +60427,KONFA+TO+MARKA%2C+NARKA,284,398,698152377,862,0 +60429,Wioska+jaktoon,475,743,848997058,78,0 +60430,060,681,656,699099811,71,0 +60431,Wioska+METALCORE,311,637,849110644,121,0 +60432,Wioska+ManchesterKing,651,309,849002486,79,0 +60433,Wioska+Tomus+01011973,729,550,849051363,323,0 +60434,Mat05usz,733,438,849088515,1511,0 +60435,Wioska+robotykjakinny,561,275,849121746,26,0 +60436,_001_+Wioska+barbarzy%C5%84ska,708,388,849095068,761,0 +60437,Wioska+muchaPG,706,369,698866770,457,0 +60438,Wioska+012,743,510,2999957,911,0 +60440,Wioska+Deadshot,551,270,921888,26,0 +60441,Wioska+barbarzy%C5%84ska,648,315,0,63,0 +60442,Wioska+%2AKaziu%2A,462,260,848966404,47,0 +60443,Wioska+Zaba12,601,280,699760696,26,0 +60444,Wioska+barbarzy%C5%84ska,643,685,698191218,133,0 +60445,Wioska+Chubi,638,299,8290773,26,0 +60446,Wioska+barbarzy%C5%84ska,277,598,849096458,56,0 +60447,KONFA+TO+MARKA%2C+NARKA,274,423,698152377,1201,8 +60448,Wioska+floraI,740,468,566379,235,0 +60449,Aa6,603,721,849097614,1161,0 +60450,Wioska+tyskie323,501,733,849093724,129,0 +60451,Wioska+barbarzy%C5%84ska,609,719,849098628,143,0 +60452,Wioska+Abazur,596,275,849028040,80,0 +60453,Vivek,290,617,849114603,222,0 +60454,Wioska+barbarzy%C5%84ska,327,664,0,47,0 +60455,Wioska+xFacHoWieCx,597,713,9073704,26,0 +60456,KONFA+TO+MARKA%2C+NARKA,287,396,698152377,463,0 +60457,Wioska,256,495,699860651,381,0 +60458,Wioska+barbarzy%C5%84ska,357,684,0,76,0 +60459,Wioska+MarcinMazury+1,294,605,849081641,256,0 +60460,Sony+911,689,652,1415009,508,0 +60461,Polandia,644,310,849121570,240,0 +60462,Wioska+barbarzy%C5%84ska,579,725,849098628,201,0 +60463,Wioska+mati997,423,269,849121835,424,0 +60464,Wioska+solidna,310,643,9098296,182,0 +60466,Wioska+barbarzy%C5%84ska,731,578,2453888,351,0 +60467,Osada+koczownik%C3%B3w,740,485,699524891,336,8 +60468,Wioska+Yomikuri,264,531,849108148,201,0 +60469,065+-+Budowanko%21,502,745,7540891,821,0 +60470,Wioska+Danka+Ch,292,388,7605446,475,0 +60471,Wioska+barbarzy%C5%84ska,381,704,849014922,214,0 +60472,Wioska+Wysypisko+%C5%BBycia,403,321,698147969,99,0 +60473,Wioska+barbarzy%C5%84ska,542,737,849078942,196,0 +60475,Wioska+barbarzy%C5%84ska,320,335,698388578,40,0 +60476,032+Wioska,736,455,699671454,439,7 +60477,Wioska+trend,710,375,849118806,338,0 +60478,Wioska+barbarzy%C5%84ska,342,675,0,90,0 +60479,Wioska+yaruciak1,704,617,699346267,26,0 +60480,077+-+Budowanko%21,519,742,7540891,190,0 +60481,Wioska+Malfoja,261,458,849121811,158,0 +60482,Wioska+barbarzy%C5%84ska,386,703,849014922,191,0 +60483,Wioska+RudnikDagger,285,615,699577663,26,0 +60484,Wioska+barbarzy%C5%84ska,263,511,0,67,0 +60485,Wioska+niunia+wredna,298,395,8423835,484,0 +60486,Wioska+barbarzy%C5%84ska,733,480,8877886,262,0 +60487,%23001+-+Zamek+Wartburg,353,319,8595633,284,0 +60488,Wioska+barbarzy%C5%84ska,281,594,0,65,0 +60489,Wioska+AzER,387,290,8704709,26,0 +60490,63+barbarzy%C5%84ska,267,450,849018442,380,0 +60491,Wioska+QdamianQ,392,281,848965205,93,0 +60492,126.Stradi,429,275,698365960,896,0 +60493,Wioska+Sonomi,407,717,7322865,26,0 +60494,055,711,383,849091105,111,0 +60495,Wioska+5dych,411,721,848930498,140,0 +60496,Wioska+barbarzy%C5%84ska,578,270,849064614,309,0 +60497,Wioska+rambo3423,415,726,849110479,115,0 +60498,Wioska+olimpijska,638,309,849040462,186,0 +60499,Wioska+Limited23,277,592,848963694,241,0 +60500,Wioska+barbarzy%C5%84ska,266,515,0,69,0 +60501,Wioska+shakeit1,608,285,6178803,26,0 +60502,North+114,495,262,849064752,873,0 +60503,Wioska+kristoferix,402,392,849073486,26,0 +60504,Wioska+barbarzy%C5%84ska,440,264,699191449,209,0 +60505,Wioska+Marian1960,345,312,699714935,177,0 +60506,Wioska+barbarzy%C5%84ska,586,727,8627359,850,0 +60507,81skorbyk.,269,564,129795,531,0 +60508,KONFA+TO+MARKA%2C+NARKA,279,409,698152377,1072,0 +60509,Wioska+Dj-saken,708,393,848995262,429,0 +60510,Wioska+barbarzy%C5%84ska,268,473,849095814,220,0 +60511,HotChrum,317,652,849012219,219,0 +60512,Osada+koczownik%C3%B3w,655,315,698895940,621,7 +60513,Wioska+Mishkkk,437,269,849119827,317,0 +60514,Wioska+barbarzy%C5%84ska,714,617,0,65,0 +60515,Krzysiek933,385,294,699603033,102,0 +60516,Wioska+barbarzy%C5%84ska,262,534,1861962,212,0 +60517,Wioska+mrufki+komandoski,363,701,1525273,197,0 +60518,Wioska+anita,733,556,849121975,264,0 +60519,Wsch%C3%B3d+008,704,627,698562644,186,0 +60520,Wioska+Laduu,297,375,848887011,95,0 +60521,Wioska+jack2,260,492,849104310,182,0 +60522,068-+Mroczna+Oada,701,382,849035905,566,0 +60523,Wioska+Dziwny+As,596,721,848897333,119,0 +60524,Sony+911,681,662,1415009,71,0 +60525,Merilly-Tivis+Prze%3AKupa,292,379,849098324,449,0 +60526,Wioska+barbarzy%C5%84ska,743,513,0,86,0 +60527,Wioska+Kira+Motyl,289,614,699282793,26,0 +60528,Wioska+barbarzy%C5%84ska,314,642,2289134,95,0 +60529,181,456,260,699853526,530,0 +60530,Wioska+barbarzy%C5%84ska,462,731,698620694,829,0 +60531,Osada+koczownik%C3%B3w,625,298,0,89,7 +60532,Wioska+saulgoodman,374,301,849120075,124,0 +60533,Wioska+barbarzy%C5%84ska,648,317,0,54,0 +60534,Wioska+mefisom13,304,645,699749530,368,0 +60535,020,394,280,699694284,711,0 +60536,Wioska+Alpinista,620,287,849096543,26,0 +60537,Wioska+barbarzy%C5%84ska,319,657,0,61,0 +60538,Wioska+Time+Traveler,434,268,699811844,26,0 +60539,Wioska+barbarzy%C5%84ska,738,457,849095599,97,0 +60540,Wioska+Seledynowy+skuter+wodny,298,370,849109351,183,0 +60541,1+Doniel,690,352,698766454,222,0 +60542,Wioska+barbarzy%C5%84ska,675,338,698290577,158,0 +60543,Wioska+grzesiek9522,737,506,849122047,66,0 +60544,Wioska+peter3131,727,443,128346,321,0 +60545,Wioska+barbarzy%C5%84ska,726,418,699628084,133,0 +60546,.001.+A,664,679,699877413,329,0 +60547,PPF-52,513,263,1424656,310,0 +60548,WB29,292,373,356642,697,1 +60549,Wioska+Soro,478,744,848963696,26,0 +60550,070+-+Budowanko%21,504,738,7540891,414,9 +60551,jop,337,328,849121762,377,0 +60552,73.+Wioska+73,288,611,849091769,988,4 +60553,Wioska+Grzaegorz1122,337,325,849118954,268,0 +60554,Wioska+barbarzy%C5%84ska,388,710,849014922,201,0 +60555,Wioska+Maarri91,477,264,699762681,26,0 +60556,%23168%23,657,676,692803,193,0 +60557,Wioska+Rangiku+Matsumoto,659,681,9300026,26,0 +60558,Wioska+barbarzy%C5%84ska,712,401,699598425,430,0 +60559,001+gerf,740,488,849109036,239,0 +60560,Wioska+barbarzy%C5%84ska,707,624,1415009,223,0 +60561,Wioska+MoistVonLipwing,606,718,6270765,26,0 +60562,Wioska+kolejne+multikonto,694,358,8975453,26,0 +60563,R+057,491,735,699195358,197,0 +60564,Wioska+Nooowka07,563,736,699548922,26,0 +60565,Wioska+poweju56,281,419,2140084,189,0 +60566,Wioska+barbarzy%C5%84ska,371,293,3484132,731,0 +60568,Wioska+barbarzy%C5%84ska,736,444,699524891,585,0 +60569,Wioska+TraktorWiktor,463,737,849101284,334,0 +60570,K67+40,718,602,698867483,248,0 +60571,Wioska+Kupidynek,289,609,7906167,26,0 +60572,Wioska+Sebko70,270,574,699546317,224,0 +60574,Wioska+barbarzy%C5%84ska,318,336,0,68,0 +60575,Gda%C5%84sk%2A,599,280,1889913,224,0 +60576,Wioska+Rebel1995,311,358,2692494,26,0 +60577,073+-+Budowanko%21,519,735,7540891,315,0 +60578,BobiLIVE,287,380,699807296,318,0 +60579,Wioska+joaopaulo98,700,635,849118769,26,0 +60580,%21Wioska+barbarzy%C5%84ska+11,597,721,8779575,559,0 +60581,Wioska+pawe%C5%82dante,280,601,849112178,52,0 +60582,Wioska+Ed3kMonster,722,585,849023540,226,0 +60583,A%23055,732,475,2065730,400,0 +60584,SunSun,404,715,849117087,566,0 +60585,K67+42,711,603,698867483,189,0 +60586,Wioska+iminlove,595,724,8621570,173,0 +60587,Wioska+Myanmar,501,265,699508363,26,0 +60588,Wioska+zniszczywacz,264,522,699858423,187,0 +60589,134.Stradi,413,271,698365960,704,8 +60590,Wioska+Chuja,723,585,849114028,395,0 +60591,Wioska+peniozdw,672,665,9294339,26,0 +60592,Wioska+Vintrax,342,683,849097793,26,0 +60593,Wioska+karplop123,687,653,849119842,66,0 +60594,072+-+Budowanko%21,495,737,7540891,344,0 +60595,Wioska+Dawid4321,324,667,849098197,26,0 +60596,Wioska+barbarzy%C5%84ska,725,425,0,61,0 +60597,Wioska+SIR+UNITED,276,593,9031705,44,0 +60598,Wioska+Maxi+Montana,309,355,849121846,286,0 +60599,Wioska+barbarzy%C5%84ska,335,321,698388578,46,0 +60600,Wioska+Hakal93,709,383,849116911,26,0 +60601,Wioska+barbarzy%C5%84ska,685,647,1415009,253,0 +60602,Wioska+Mistrz+99,278,588,849089207,170,0 +60603,Wioska+barbarzy%C5%84ska,395,712,849014922,178,0 +60604,Wioska+Czadamm,308,356,849104100,80,0 +60605,Wioska+barbarzy%C5%84ska,271,575,1536625,131,0 +60606,Leszek1964,291,391,849122297,566,0 +60607,Wioska+hornet9,452,268,6249524,26,0 +60608,Wioska+barbarzy%C5%84ska,461,266,0,59,0 +60609,Wioska+QiczikJP,267,426,8662634,278,0 +60610,Wioska+barbarzy%C5%84ska,713,391,699598425,466,0 +60611,Wioska+nocna1993,440,733,698798180,26,0 +60612,Wioska+Jestem+Pogromca+z+TOPu,372,696,698388041,249,0 +60613,Wioska+barbarzy%C5%84ska,668,334,699072129,325,0 +60614,Wioska+Marcin+Marci,579,721,849113580,26,0 +60615,Wioska+barbarzy%C5%84ska,685,659,0,51,0 +60616,Wioska+JaaMwG+1,725,594,2593568,347,0 +60617,KONFA+TO+MARKA%2C+NARKA,280,421,698152377,153,0 +60618,Wioska+Cinse,258,537,849111109,117,0 +60619,Wioska+Kadar,678,344,849104297,284,0 +60620,Wioska+barbarzy%C5%84ska,467,265,0,64,0 +60621,Wioska+Hasha,345,324,849097006,392,0 +60622,Wioska+wozny1020,342,680,848981523,250,0 +60623,Wioska+barbarzy%C5%84ska,264,547,0,52,0 +60624,Wioska+polska652,276,565,849122318,112,0 +60625,Wioska+barbarzy%C5%84ska,342,324,699796330,195,0 +60626,Wioska+tomek22863,590,718,6066254,93,0 +60627,Wioska+barbarzy%C5%84ska,637,303,0,64,0 +60628,Osada+koczownik%C3%B3w,674,331,699072129,348,6 +60629,Wioska+CccC2,307,358,848999518,140,0 +60630,042+-+Logrono,720,597,698342159,165,0 +60631,Wioska+Karki98,264,463,849101186,312,0 +60632,Wioska+barbarzy%C5%84ska,290,623,2289134,150,0 +60633,Wioska+LokiPLN,322,654,699431590,224,0 +60634,Wioska+Jacaxxx,678,332,699451338,136,0 +60635,Wioska+barbarzy%C5%84ska,743,521,8742874,107,0 +60636,Wioska+Fezzoo,734,488,6557487,26,0 +60637,Wioska+barbarzy%C5%84ska,258,479,698625834,51,0 +60638,Wioska+Black+Bird,727,593,699778028,875,0 +60639,Wioska+barbarzy%C5%84ska,299,623,2289134,150,0 +60640,Wioska+Lord+Magik77,667,667,698162153,75,0 +60641,Wioska+barbarzy%C5%84ska,438,271,849096310,199,0 +60642,Wioska+halooogan,381,297,698676429,26,0 +60643,Wioska+barbarzy%C5%84ska,372,704,849014922,141,0 +60644,Wioska+lordlewy10,720,414,698380048,26,0 +60645,Wioska+barbarzy%C5%84ska,282,390,0,53,0 +60646,Wioska+Norane,736,540,8956715,212,0 +60647,Wioska+barbarzy%C5%84ska,439,267,0,81,0 +60648,Aqua,581,730,3395817,437,0 +60649,Wioska+Jamson,609,717,205821,128,0 +60650,Wioska+barbarzy%C5%84ska,257,489,698625834,52,0 +60651,Wioska+Davcio1994,416,727,848916779,26,0 +60652,Osada+koczownik%C3%B3w,475,260,849063849,71,6 +60653,Wioska+Bliskoznaczny,686,355,699698745,26,0 +60654,lozi20,269,545,8362886,174,0 +60656,Wioska+Lilit,360,700,849109045,403,0 +60657,Osio%C5%82+troja%C5%84ski,384,288,698162312,405,0 +60658,Wioska+Helios874,636,485,7733128,230,0 +60659,MALBORK,646,304,848944534,226,0 +60660,113+Wioska+barbarzy%C5%84ska,546,267,699854484,105,0 +60661,Wioska+gggg1989,553,729,699397280,26,0 +60662,Wioska+barbarzy%C5%84ska,264,545,0,49,0 +60663,Wioska+Patryczekk,320,340,848955756,229,0 +60664,Wioska+AllAdin,735,570,698826217,333,0 +60665,Wioska+barbarzy%C5%84ska,385,710,849014922,120,0 +60666,Wioska+%2AZasad%C5%BAca%2A,284,600,699062337,105,0 +60667,Wioska+b+013,430,269,6343784,110,0 +60668,Queen+A,605,720,848944455,344,0 +60669,Wioska+barbarzy%C5%84ska,558,734,699878511,124,0 +60670,Wioska+SteamUser1675976894,511,265,849122450,88,0 +60671,Wioska+barbarzy%C5%84ska,340,316,698388578,46,0 +60672,Wioska+zewlakow6,292,612,698379979,26,0 +60673,Wioska+014,739,490,2999957,438,0 +60674,Wioska+Przechy%C5%82y+i+przechy%C5%82y...,482,259,698167413,26,0 +60675,Wioska+Destruktorix+I,671,341,7539223,124,0 +60676,Wioska+barbarzy%C5%84ska,737,510,1601917,121,0 +60677,Wioska+Jaruga007,724,568,1350456,192,0 +60678,225+%7C,719,419,8000875,93,0 +60679,Wioska+snake7,548,731,698556600,130,0 +60680,KWB9.3,506,736,9003698,144,0 +60681,Wioska+Stupid,522,737,699480768,45,0 +60682,K67+43,700,623,698867483,193,0 +60683,Wioska+alexxdize,727,433,849107860,136,0 +60684,Wioska+barbarzy%C5%84ska,348,312,3484132,630,0 +60685,Wioska+adrianww13,606,280,8907258,312,0 +60686,Wioska,266,501,2365630,169,0 +60687,KONFA+TO+MARKA%2C+NARKA,275,438,698152377,235,0 +60688,Wioska+bino666,492,739,6310214,365,0 +60689,114+Wioska+barbarzy%C5%84ska,565,266,699854484,108,0 +60690,Wioska+kamilek6969,407,715,849122487,259,0 +60691,64+barbarzy%C5%84ska,269,454,849018442,351,0 +60692,Wioska+Genotypek,609,281,698281635,132,0 +60693,Wioska39,324,345,699711926,813,0 +60694,Wioska+Bernhard+Roth%2A,311,344,9186877,206,0 +60695,Wioska+barbarzy%C5%84ska,738,557,848946700,149,0 +60696,Wioska+NikoMat,739,469,699820969,53,0 +60697,033+Wioska,737,512,699671454,164,0 +60698,Wioska+Hasyp,375,710,1304915,487,0 +60699,0092,283,389,848913037,95,0 +60700,Wioska+King+Grzes,294,621,8746112,47,0 +60701,Wioska+barbarzy%C5%84ska,283,399,0,52,0 +60702,Wioska+S1mple...,717,599,849033395,26,0 +60703,Wioska+zielonyjohn,261,507,848978169,26,0 +60704,Wioska+barbarzy%C5%84ska,408,715,698152377,215,0 +60705,Osada+koczownik%C3%B3w,597,719,849098628,107,8 +60706,181,509,257,3760848,158,0 +60707,Wioska+barbarzy%C5%84ska,614,294,0,74,0 +60708,Wioska+PetC,586,665,6300771,298,0 +60709,Wioska+barbarzy%C5%84ska,361,311,3484132,589,0 +60710,Wioska+Fontowcy+Dual+i+Ma%C5%82piake,494,733,698526500,26,0 +60711,Wioska+barbarzy%C5%84ska,677,336,698290577,43,0 +60712,Wioska+Jakub+J%C3%B3%C5%BAwiak,546,262,699294577,26,0 +60713,091+obrze%C5%BCa,265,561,699510259,157,0 +60714,Wioska+kcys2,664,325,8907069,47,0 +60715,Wioska+barbarzy%C5%84ska,737,489,699524891,180,0 +60716,Wioska+Czaki995,263,476,849120088,185,0 +60717,Wioska+KOYE,735,546,849120311,26,0 +60718,Wioska+EvilTwin,630,465,699866510,55,0 +60719,Wioska+cinek1998,575,726,849084699,26,0 +60720,K67+45,713,602,698867483,134,0 +60721,Wioska+prosiaczek,580,719,849121623,301,0 +60722,Gwenville+019,454,271,848986638,90,0 +60723,Wioska+Szalejot3,622,704,849121329,294,0 +60724,Wioska+Itadakimasu,736,472,849049864,26,0 +60725,Sony+911,667,666,1415009,209,0 +60726,Wioska+kojak14,622,708,9201946,26,0 +60727,Wioska+barbarzy%C5%84ska,627,709,848887199,98,0 +60728,Wioska+Simon118,693,358,2210946,26,0 +60729,Wioska+barbarzy%C5%84ska,567,724,7756002,1455,0 +60730,Wioska+Feii,645,303,849097274,26,0 +60731,Wioska+Frodo1,267,456,849108034,26,0 +60732,Wioska+barbarzy%C5%84ska,709,628,0,51,0 +60733,Wioska+Damian2023,525,743,849115920,121,0 +60734,021,389,285,699694284,249,0 +60735,Wioska+AndrzejJ96,268,567,848995446,269,0 +60736,Wioska+riki30.1976,511,744,2426019,198,0 +60737,022,397,289,699694284,300,0 +60738,Wioska+Budrys2000,471,734,849118435,26,0 +60739,Wioska+barbarzy%C5%84ska,739,467,0,54,0 +60740,Wioska+Choroszcz,592,725,849121269,34,0 +60741,Wioska+barbarzy%C5%84ska,276,417,698152377,159,0 +60742,044.+Osada+koczownik%C3%B3w,679,343,2873154,194,3 +60743,Wioska+LeadyBoo,473,739,849121536,26,0 +60744,Wioska+Kr%C3%B3l+Mieszko+I,352,688,698648691,122,0 +60745,Wioska+barbarzy%C5%84ska,735,567,7038651,37,0 +60747,Wioska+patryczekpyrka96,493,739,849100836,26,0 +60748,Wioska+danek,338,326,849121686,26,0 +60749,K67+44,704,635,698867483,171,0 +60750,Wioska+Sir+Alano1,575,729,698206922,86,0 +60751,_002_+Wioska+barbarzy%C5%84ska,708,373,849095068,90,0 +60752,Wioska+etrusk,742,495,848963634,26,0 +60753,Wioska+barbarzy%C5%84ska,364,698,0,43,0 +60754,Wioska+sweetdream,577,728,849122658,26,0 +60755,076+-+Budowanko%21,482,742,7540891,182,0 +60756,Wioska+PROboszczz,726,438,699845927,74,0 +60757,Wioska+barbarzy%C5%84ska,435,266,849085160,30,0 +60758,Wioska+J3bacTo,306,352,849001762,225,0 +60759,Wioska+barbarzy%C5%84ska,312,358,0,80,0 +60760,Wioska+mmarcinho,669,323,699557165,26,0 +60761,Wioska+barbarzy%C5%84ska,553,271,699854484,79,0 +60762,Wioska+marianoitaliuano,667,677,9043233,26,0 +60763,22+No+Future,734,447,849101845,568,0 +60764,Wioska+Szpadyzor,726,423,849121691,133,0 +60765,Wioska+barbarzy%C5%84ska,731,428,699628084,85,0 +60766,Wioska+colt9,672,339,6242167,26,0 +60767,Wioska+barbarzy%C5%84ska,361,698,0,52,0 +60768,Wioska+mariuszf,644,697,9004337,98,0 +60769,Wioska+barbarzy%C5%84ska,296,636,2289134,53,0 +60770,Wioska+ewazeth,432,723,849109507,26,0 +60771,Wioska+wolf1982,327,673,849039766,26,0 +60772,Wioska+Paveulon,701,623,849110304,97,0 +60773,%23004+Las+Palmas,335,667,849101276,98,8 +60774,Wioska+artnow,697,355,8061953,119,0 +60775,PPF-56,524,262,1424656,108,0 +60776,Xxx+2,511,738,7098955,157,2 +60777,Wioska+czaka222,571,728,849120467,198,0 +60778,Wioska+Lady+Basia408,272,560,699330765,125,0 +60779,Wioska+barbarzy%C5%84ska,378,712,849014922,84,0 +60780,Wioska+Saladyn92t,370,436,849122738,386,0 +60781,078+-+Budowanko%21,503,736,7540891,135,0 +60782,Wioska+yam1,486,739,8218433,169,0 +60783,Wioska+bs160,382,285,2812197,261,0 +60784,Wioska+barbarzy%C5%84ska,338,676,0,50,0 +60785,Wioska+hmc.,258,467,699355948,38,0 +60786,Wioska+barbarzy%C5%84ska,405,716,0,35,0 +60787,Wioska+S3b3k1999,584,282,849121697,26,0 +60788,Wiocha,284,584,849122768,336,0 +60789,Wioska+barbarzy%C5%84ska,672,670,0,37,0 +60790,Wioska+Adrianxl95.,742,521,699707057,26,0 +60791,Wioska+barbarzy%C5%84ska,712,394,699598425,301,0 +60792,Wioska+Arto135,729,556,3840616,74,0 +60793,Wioska+MANTOQ,459,733,8309492,204,0 +60794,Wioska+LukaseQxxD,294,377,2130659,312,0 +60795,Wioska+barbarzy%C5%84ska,737,551,848995478,274,0 +60796,Wikingogr%C3%B3d,727,430,848939434,233,0 +60797,Wioska+--KEMPA--,271,565,6070734,26,0 +60798,Wioska+barbarzy%C5%84ska,522,257,849064752,134,0 +60799,Grzelakb,723,425,849119223,339,0 +60800,North+115,514,265,849064752,426,0 +60801,Wioska+BELOZ,259,459,849122819,95,0 +60802,Wioska+SzefPatry%C5%9B,512,741,849122821,64,0 +60803,Wioska+barbarzy%C5%84ska,639,308,0,43,0 +60804,Wioska+Sharkox,716,608,8728202,26,0 +60805,Wioska+jmz41922,278,417,849122822,162,0 +60806,Osada+koczownik%C3%B3w,443,732,8268010,47,7 +60807,Wioska+Agamemnon,731,561,699737563,26,0 +60808,Wioska+barbarzy%C5%84ska,737,507,0,42,0 +60809,Wioska+frrrantic,520,260,698747719,243,0 +60810,Wioska+Mogok,613,711,7820575,173,0 +60811,Wioska+barbarzy%C5%84ska,377,298,3484132,153,0 +60812,Wioska+Lord+Zabijaka1999,509,256,8773151,47,0 +60813,Wioska+Chudy19,738,449,699856830,321,0 +60814,Wioska+barbarzy%C5%84ska,267,473,0,37,0 +60815,Wioska+miodek1143143,671,673,849031197,26,0 +60816,092+obrze%C5%BCa,268,560,699510259,78,0 +60817,Wioska+mayald,326,331,699873141,127,0 +60818,Wioska+barbarzy%C5%84ska,651,313,698895940,232,0 +60819,Osada+koczownik%C3%B3w,557,736,699878511,39,7 +60820,Wioska+rafixiem,266,453,699752776,236,0 +60821,Wioska+barbarzy%C5%84ska,297,624,2289134,40,0 +60822,Wioska+KAUN,661,674,849006194,180,0 +60823,Wioska+barbarzy%C5%84ska,440,267,698365960,37,0 +60824,Wioska+Santa+aka+Dziadzia,288,619,698754087,26,0 +60825,Wioska+barbarzy%C5%84ska,703,364,0,40,0 +60826,Osada+koczownik%C3%B3w,675,336,0,34,7 +60827,Wioska+Kokeszko94,736,510,849118761,26,0 +60828,PPF-57,527,259,1424656,77,0 +60829,Wioska+Treon,740,451,849115010,53,0 +60830,Wioska+barbarzy%C5%84ska,626,301,0,55,0 +60831,Osada+koczownik%C3%B3w,611,712,698191218,33,7 +60832,Wioska+Patrz+Ale+Nie+Zjadaj,580,730,698850319,26,0 +60833,WB47,298,374,356642,50,0 +60834,Osada+koczownik%C3%B3w,388,715,849014922,91,2 +60835,Wioska+Brauer92,626,365,849098265,26,0 +60836,Wioska+barbarzy%C5%84ska,521,257,849064752,49,0 +60837,Wioska+adhd,601,717,849025839,68,0 +60838,Wioska+kamera,271,451,849046397,52,0 +60839,Wioska+barbarzy%C5%84ska,420,270,6343784,55,0 +60840,PPF-54,529,260,1424656,88,8 +60841,Wioska+%C5%82ysy97,493,256,849023337,26,0 +60842,Wioska+barbarzy%C5%84ska,666,675,0,37,0 +60843,Wioska+extor98,739,470,849095446,26,0 +60844,Wioska+heroarek,325,667,849117513,26,0 +60845,Wioska+barbarzy%C5%84ska,621,701,698353083,358,0 +60846,Wioska+Czaq1,492,735,849118231,111,0 +60847,Wioska+barbarzy%C5%84ska,737,441,2999957,46,0 +60848,Wioska+Arletta82,731,579,3112100,104,0 +60849,Wioska+barbarzy%C5%84ska,741,504,0,38,0 +60850,Wioska+Wigerek,531,264,7910501,271,0 +60851,107.+Wioska+barbarzy%C5%84ska,733,465,7494497,84,0 +60852,181,376,294,848977118,388,0 +60853,Wioska+barbarzy%C5%84ska,702,639,1415009,59,0 +60854,Wioska+Albertini,729,563,848922517,26,0 +60855,Wioska+barbarzy%C5%84ska,284,384,0,42,0 +60856,Melina,315,348,848909122,220,0 +60857,Wioska+barbarzy%C5%84ska,733,458,698191218,36,0 +60858,Wioska+Botty,316,347,8055581,228,0 +60859,Wioska+barbarzy%C5%84ska,283,406,634848,155,0 +60860,Wioska+DonArturo,665,320,849108673,26,0 +60861,Wioska+barbarzy%C5%84ska,697,361,0,34,0 +60862,Wioska+przemekagatki,594,715,699802009,26,0 +60863,001,654,686,698410946,48,0 +60864,Wioska+barbarzy%C5%84ska,663,668,8627359,100,0 +60865,Wioska+Lech798,288,384,698743511,241,0 +60866,Wioska+barbarzy%C5%84ska,561,726,0,42,0 +60867,Wioska+brutal29,258,482,698655576,56,0 +60868,Wioska+barbarzy%C5%84ska,717,589,848946700,87,0 +60869,Wioska+Andragon21,324,660,8197987,61,0 +60870,Wioska+barbarzy%C5%84ska,738,519,0,41,0 +60871,Wioska+Dawidoxil96,337,673,849119163,227,0 +60872,A%23056,734,479,2065730,157,0 +60873,Wioska+Savek,310,648,699868399,26,0 +60874,Wioska+barbarzy%C5%84ska,262,535,0,41,0 +60875,Wioska+Szymonos420,488,324,849121196,238,0 +60876,Wioska+Bellu,299,377,849061418,26,0 +60877,Wioska+barbarzy%C5%84ska,259,518,0,44,0 +60878,Wioska+stefek+alibaba,487,736,849010955,101,0 +60879,058,714,383,849091105,50,0 +60880,Wioska+KESHIK,274,439,9006528,48,0 +60881,Wioska+MiczMicz,491,672,699630393,104,0 +60882,Wioska+barbarzy%C5%84ska,258,470,0,29,0 +60883,Wioska+boyka8721,730,577,848888394,45,0 +60884,Wioska+barbarzy%C5%84ska,263,562,699510259,34,0 +60885,Wioska+KeymilLoveOrHate,435,736,849022907,26,0 +60886,Wioska+Sir+Hood,568,729,7663945,26,0 +60887,W+kontakcie,735,559,848932879,66,0 +60888,Wioska+Krasnoludek.M%C4%99drek,268,562,849009059,26,0 +60889,Wioska+barbarzy%C5%84ska,714,398,699598425,171,0 +60890,Wioska+KARY1988,255,517,3824463,26,0 +60891,Wioska+barbarzy%C5%84ska,552,728,0,46,0 +60892,Wioska+xMario25x,316,663,848910971,26,0 +60893,Jehu_Kingdom_70,722,409,8785314,71,0 +60894,Wioska+VencedorPL,744,473,699842078,26,0 +60895,Wioska+barbarzy%C5%84ska,305,369,0,36,0 +60896,Wioska+merty,380,708,699847354,235,0 +60897,Wioska+barbarzy%C5%84ska,297,637,2289134,31,0 +60898,Wioska+Mroczne+Elfy+1,620,706,849113868,102,0 +60899,Wioska+zapomnia%C5%82em+has%C5%82a,446,735,848911863,248,0 +60900,Wioska+ndse,474,737,848980119,26,0 +60901,Wioska+bsju,732,549,848980120,26,0 +60902,WB46,291,378,356642,61,0 +60903,Wioska+gsno,504,257,848980456,26,0 +60904,Wioska+barbarzy%C5%84ska,401,280,849085160,32,0 +60905,Wioska+khiu,302,371,848980458,26,0 +60906,Wioska+cvde,709,372,848980459,26,0 +60907,Wioska+fswq,588,272,848980460,26,0 +60908,Wioska+nipki,673,335,848980461,26,0 +60909,Wioska+veru,316,647,848980492,26,0 +60910,Wioska+tews,731,425,848980493,26,0 +60911,Wioska+laszc,323,341,848980494,26,0 +60912,Wioska+nmih,349,312,848980495,26,0 +60913,Wioska+barbarzy%C5%84ska,278,592,0,41,0 +60914,Wioska+afad,412,719,848980496,26,0 +60915,Wioska+barbarzy%C5%84ska,418,731,0,46,0 +60916,Wioska+freaky97,436,274,699011096,26,0 +60917,Wioska+barbarzy%C5%84ska,473,264,0,32,0 +60918,Wioska+vosd,740,447,848980497,26,0 +60919,Wioska+barbarzy%C5%84ska,651,687,0,36,0 +60920,Wioska+amlk,269,582,848980498,26,0 +60921,Wioska+filip9399,659,327,698592565,26,0 +60922,Wioska+warmonger,393,718,849065566,43,0 +60923,Wioska+barbarzy%C5%84ska,695,357,0,44,0 +60924,Wioska+Lady+K8,392,280,699668392,26,0 +60925,Wioska+barbarzy%C5%84ska,346,691,0,48,0 +60926,Twierdza+%28ANS%29,293,420,0,1202,22 +60927,Wioska+lucko5,700,626,699756403,26,0 +60928,Lukaczka,265,491,849123125,196,0 +60929,Wioska+barbarzy%C5%84ska,391,282,0,46,0 +60930,Osada+koczownik%C3%B3w,464,264,0,35,6 +60931,Wioska+farmerzestoczka,262,483,849123128,75,0 +60933,Wioska+barbarzy%C5%84ska,672,336,0,42,0 +60934,Wioska+Ljuboja1916,531,260,849123135,43,0 +60935,%21Wioska+barbarzy%C5%84ska,584,718,8779575,229,0 +60936,Osada+koczownik%C3%B3w,271,572,849089881,76,8 +60937,Wioska+Kox12344,374,302,849115509,153,0 +60938,Wioska+pawka283,539,741,849121320,44,0 +60939,Wioska+barbarzy%C5%84ska,655,310,0,30,0 +60940,Wioska+kondzio95rrr,732,555,699054327,155,0 +60941,Wioska+Co+biedaa,606,716,849003332,26,0 +60942,Wioska+jesslexuwuowo,725,412,849123162,80,0 +60943,Wioska+barbarzy%C5%84ska,259,543,0,38,0 +60944,Wioska+Marass,469,741,849100349,151,0 +60945,Wioska+126,705,631,848971079,59,0 +60946,Flagi,273,415,699633365,443,0 +60947,Wioska+barbarzy%C5%84ska,261,461,0,44,0 +60948,Wioska+Bombelnik,700,375,849016425,134,0 +60949,%21Wioska+barbarzy%C5%84ska,581,722,8779575,79,0 +60950,Wioska+Kanut,426,398,698791053,200,0 +60951,Wioska+Vi-vali,274,570,1867410,218,0 +60952,Wioska+barbarzy%C5%84ska,688,351,0,33,0 +60953,Osada+koczownik%C3%B3w,740,522,0,35,2 +60954,Wioska+Szp4Q,281,417,848951699,129,0 +60955,Wioska+barbarzy%C5%84ska,585,727,0,33,0 +60956,Wioska+100dni,505,742,699878952,26,0 +60957,Wioska+barbarzy%C5%84ska,696,364,0,35,0 +60958,Wioska+gumis111,454,260,849122931,26,0 +60959,Wioska+barbarzy%C5%84ska,585,729,0,44,0 +60960,Wioska+prince+rudeboy,617,711,9234594,136,0 +60961,Wioska+Lis44,567,736,699773770,64,0 +60962,Wioska+barbarzy%C5%84ska,404,725,849014922,28,0 +60963,Wioska+SwwQ,687,341,8312412,26,0 +60964,Wioska+barbarzy%C5%84ska,737,521,0,50,0 +60965,Wioska+jordonjbe,614,709,849108915,180,0 +60966,Wioska+barbarzy%C5%84ska,468,264,0,30,0 +60967,Wioska+B.E.R.S.E.R.,447,268,698645802,26,0 +60968,Wioska+Forwalls,470,266,849064715,126,0 +60969,Wioska+barbarzy%C5%84ska,260,459,0,35,0 +60970,Wioska+playbackp,267,425,698226224,26,0 +60971,Wioska+barbarzy%C5%84ska,350,319,0,35,0 +60972,Wioska+Saintros,686,357,699788972,26,0 +60973,Wioska+barbarzy%C5%84ska,447,267,0,38,0 +60974,Wioska+zdzi%C5%9B123,365,304,849123002,26,0 +60975,Wioska+JeGrzegorz,726,570,2620389,62,0 +60976,Wioska+barbarzy%C5%84ska,725,589,0,35,0 +60977,Wioska+Dom+Kichot,704,383,849028071,26,0 +60978,Wioska+barbarzy%C5%84ska,704,369,0,34,0 +60979,Wioska+NeXi,719,412,698850251,26,0 +60980,Wioska+barbarzy%C5%84ska,578,274,0,38,0 +60981,Wioska+Kluha+Jo,277,579,849029077,141,0 +60982,Wioska+gsxr600k2,720,590,699084064,178,0 +60983,Wioska+techniq,501,740,698658087,67,0 +60984,Wioska+barbarzy%C5%84ska,369,703,0,32,0 +60985,Wioska+vaksso,379,291,8551316,113,0 +60986,Wioska+barbarzy%C5%84ska,731,462,849101845,58,0 +60987,AAA+1,306,651,1809381,251,0 +60988,Wioska+barbarzy%C5%84ska,260,537,0,33,0 +60989,ja+tylko+na+moment+xD,706,387,699825797,172,0 +60990,Wioska+barbarzy%C5%84ska,601,287,0,32,0 +60991,Wioska+lukaku,526,256,849040332,65,0 +60992,Wioska+barbarzy%C5%84ska,693,644,0,36,0 +60993,Wioska+Chwaliszew2008,350,315,849112510,106,0 +60994,Wioska+barbarzy%C5%84ska,732,438,0,40,0 +60995,Wioska+Mateo1315,379,710,849052549,26,0 +60996,Wioska+barbarzy%C5%84ska,334,671,0,37,0 +60997,Wioska+dragon622,416,294,7831811,219,0 +60998,Wioska+barbarzy%C5%84ska,301,644,2289134,36,0 +60999,Wioska+Knoxpl,735,428,849113485,48,0 +61000,Wioska+D%C5%BCejd%C5%BCejj,710,627,849046647,26,0 +61001,Camelot,331,672,5999909,101,0 +61002,Wioska+barbarzy%C5%84ska,315,352,0,27,0 +61003,Wioska+donpabloone,399,712,699618066,26,0 +61004,Wioska+barbarzy%C5%84ska,716,613,0,26,0 +61005,Wioska+TheMooon,288,621,849054606,138,0 +61006,Wioska+wojtas0112,615,284,8106333,213,0 +61007,Wioska+barbarzy%C5%84ska,725,403,0,32,0 +61008,Wioska+marekkkzzz665,631,696,699798611,190,0 +61009,Wioska+Luu123,338,684,849072855,93,0 +61010,Wioska+barbarzy%C5%84ska,480,743,0,26,0 +61011,Wioska+Stefan+Batory+V,268,579,849112561,26,0 +61012,Wioska+barbarzy%C5%84ska,620,292,0,38,0 +61013,Wioska+Gumaty,320,336,849108350,75,0 +61014,Wioska+DiscoZenon,259,482,849112666,102,0 +61015,Wioska+barbarzy%C5%84ska,411,282,0,26,0 +61016,Wioska+Sewo2137,311,645,849123267,95,0 +61017,Wioska+Harasi,270,443,8890611,47,0 +61018,Wioska+Mozzie,734,497,849088429,26,0 +61019,Wioska+barbarzy%C5%84ska,499,259,0,26,0 +61020,Wioska+Layton,691,365,849120889,47,0 +61021,Wioska+barbarzy%C5%84ska,566,271,0,26,0 +61022,Osada+koczownik%C3%B3w,335,682,0,26,5 +61023,Wioska+maciej55413,497,255,9012894,68,0 +61024,Wioska+barbarzy%C5%84ska,669,671,0,32,0 +61025,Metropolia,430,736,849041557,91,0 +61026,Wioska+barbarzy%C5%84ska,736,449,0,32,0 +61027,Wioska+xFeFe,481,262,699700007,26,0 +61028,Wioska+barbarzy%C5%84ska,736,509,0,26,0 +61029,Wioska+Tomasz+Stanek,702,362,849083705,26,0 +61030,Wioska+barbarzy%C5%84ska,334,329,0,28,0 +61031,Wioska+HinduKush,564,733,849121504,94,0 +61032,Wioska+barbarzy%C5%84ska,724,569,0,45,0 +61033,Wioska+TeroXer+s,577,730,6577211,26,0 +61034,Wioska+barbarzy%C5%84ska,618,298,0,26,0 +61035,Wioska+champion271,670,329,699864609,81,0 +61036,Wioska+Pokraczny850,440,272,699790202,26,0 +61037,Wioska+jedyny1taki,323,657,1626626,32,0 +61038,Wioska+barbarzy%C5%84ska,609,714,0,27,0 +61039,Wioska+Kolodzij,723,417,849118616,94,0 +61040,Wioska+barbarzy%C5%84ska,491,259,0,26,0 +61041,Wioska+FAST+ROTHMANS,637,690,849111052,26,0 +61042,Wioska+barbarzy%C5%84ska,293,628,0,26,0 +61043,Wioska+spokojnaba%C5%9Bka123,739,536,849120763,64,0 +61044,Wioska+barbarzy%C5%84ska,400,722,0,32,0 +61045,Wioska+GrubsonSzczecin,674,670,7286392,26,0 diff --git a/internal/service/testdata/syncdata/stage1/www.plemiona.pl/backend/get_servers.php b/internal/service/testdata/syncdata/stage1/www.plemiona.pl/backend/get_servers.php new file mode 100644 index 0000000..ef8c2e2 --- /dev/null +++ b/internal/service/testdata/syncdata/stage1/www.plemiona.pl/backend/get_servers.php @@ -0,0 +1 @@ +a:1:{s:5:"pl181";s:25:"https://pl181.plemiona.pl";} \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage2/default/backend/get_servers.php b/internal/service/testdata/syncdata/stage2/default/backend/get_servers.php new file mode 100644 index 0000000..c856afc --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/default/backend/get_servers.php @@ -0,0 +1 @@ +a:0:{} \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage2/expected/players.json b/internal/service/testdata/syncdata/stage2/expected/players.json new file mode 100644 index 0000000..5a5ae5a --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/expected/players.json @@ -0,0 +1 @@ +[{"RankAtt":0,"ScoreAtt":0,"RankDef":1256,"ScoreDef":61670,"RankSup":703,"ScoreSup":48733,"RankTotal":1354,"ScoreTotal":110403,"ID":6948,"Name":"Bosman7","NumVillages":1,"Points":209,"Rank":2253,"TribeID":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6948","BestRank":2253,"BestRankAt":"2023-02-16T05:25:56.199101Z","MostPoints":209,"MostPointsAt":"2023-02-16T05:25:48.910799Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910799Z","LastActivityAt":"2023-02-16T05:25:48.910799Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911218Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":593,"ScoreAtt":222346,"RankDef":1809,"ScoreDef":11560,"RankSup":449,"ScoreSup":230726,"RankTotal":865,"ScoreTotal":464632,"ID":17714,"Name":"skobol","NumVillages":81,"Points":478566,"Rank":275,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=17714","BestRank":275,"BestRankAt":"2023-02-16T05:25:56.199102Z","MostPoints":478566,"MostPointsAt":"2023-02-16T05:25:56.199102Z","MostVillages":81,"MostVillagesAt":"2023-02-16T05:25:48.9108Z","LastActivityAt":"2023-02-16T05:25:56.199102Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911231Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":88,"ScoreAtt":3695799,"RankDef":410,"ScoreDef":720218,"RankSup":36,"ScoreSup":4381045,"RankTotal":87,"ScoreTotal":8797062,"ID":33900,"Name":"Mwito","NumVillages":255,"Points":2320084,"Rank":34,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=33900","BestRank":33,"BestRankAt":"2023-02-16T05:25:48.910801Z","MostPoints":2320084,"MostPointsAt":"2023-02-16T05:25:56.199103Z","MostVillages":255,"MostVillagesAt":"2023-02-16T05:25:56.199103Z","LastActivityAt":"2023-02-16T05:25:56.199103Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911236Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":40666,"Name":"OcHnIK","NumVillages":1,"Points":26,"Rank":2590,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=40666","BestRank":2590,"BestRankAt":"2023-02-16T05:25:56.199103Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910802Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910802Z","LastActivityAt":"2023-02-16T05:25:48.910802Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911242Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":42635,"Name":"to tylko hastrat","NumVillages":1,"Points":26,"Rank":2591,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=42635","BestRank":2591,"BestRankAt":"2023-02-16T05:25:56.199104Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910802Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910802Z","LastActivityAt":"2023-02-16T05:25:48.910802Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911243Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":741,"ScoreAtt":108523,"RankDef":1842,"ScoreDef":10080,"RankSup":668,"ScoreSup":61991,"RankTotal":1185,"ScoreTotal":180594,"ID":50930,"Name":"miki11","NumVillages":1,"Points":151,"Rank":2351,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=50930","BestRank":2351,"BestRankAt":"2023-02-16T05:25:56.199104Z","MostPoints":151,"MostPointsAt":"2023-02-16T05:25:48.910803Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910803Z","LastActivityAt":"2023-02-16T05:25:48.910803Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911247Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":538,"ScoreDef":469152,"RankSup":965,"ScoreSup":6330,"RankTotal":858,"ScoreTotal":475482,"ID":61791,"Name":"Macp","NumVillages":5,"Points":30899,"Rank":814,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=61791","BestRank":810,"BestRankAt":"2023-02-16T05:25:48.910803Z","MostPoints":30899,"MostPointsAt":"2023-02-16T05:25:56.199105Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.910803Z","LastActivityAt":"2023-02-16T05:25:56.199105Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911252Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":790,"ScoreAtt":84826,"RankDef":375,"ScoreDef":804093,"RankSup":996,"ScoreSup":5051,"RankTotal":656,"ScoreTotal":893970,"ID":82782,"Name":"pinkiola","NumVillages":1,"Points":1731,"Rank":1699,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=82782","BestRank":1699,"BestRankAt":"2023-02-16T05:25:56.199105Z","MostPoints":1731,"MostPointsAt":"2023-02-16T05:25:56.199106Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910804Z","LastActivityAt":"2023-02-16T05:25:56.199106Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911257Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":442,"ScoreDef":637385,"RankSup":977,"ScoreSup":5983,"RankTotal":761,"ScoreTotal":643368,"ID":87575,"Name":"VEGE","NumVillages":2,"Points":10828,"Rank":1061,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=87575","BestRank":1061,"BestRankAt":"2023-02-16T05:25:56.199106Z","MostPoints":10828,"MostPointsAt":"2023-02-16T05:25:56.199106Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910805Z","LastActivityAt":"2023-02-16T05:25:56.199106Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911257Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":87825,"Name":"Antoni93","NumVillages":1,"Points":41,"Rank":2607,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=87825","BestRank":2607,"BestRankAt":"2023-02-16T05:25:48.910805Z","MostPoints":41,"MostPointsAt":"2023-02-16T05:25:48.910805Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910805Z","LastActivityAt":"2023-02-16T05:25:48.910805Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911266Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1395,"ScoreAtt":4149,"RankDef":568,"ScoreDef":409283,"RankSup":927,"ScoreSup":9160,"RankTotal":894,"ScoreTotal":422592,"ID":89637,"Name":"Mabes","NumVillages":0,"Points":0,"Rank":2855,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=89637","BestRank":2855,"BestRankAt":"2023-02-16T05:25:56.199107Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910806Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910806Z","LastActivityAt":"2023-02-16T05:25:48.910806Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911272Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":98294,"Name":"Antek93","NumVillages":1,"Points":524,"Rank":1995,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=98294","BestRank":1995,"BestRankAt":"2023-02-16T05:25:56.199107Z","MostPoints":524,"MostPointsAt":"2023-02-16T05:25:56.199107Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910806Z","LastActivityAt":"2023-02-16T05:25:56.199107Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911272Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1864,"ScoreAtt":88,"RankDef":473,"ScoreDef":564853,"RankSup":0,"ScoreSup":0,"RankTotal":792,"ScoreTotal":564941,"ID":100452,"Name":"hirek 58","NumVillages":1,"Points":2927,"Rank":1523,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=100452","BestRank":1523,"BestRankAt":"2023-02-16T05:25:56.199108Z","MostPoints":2927,"MostPointsAt":"2023-02-16T05:25:56.199108Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910807Z","LastActivityAt":"2023-02-16T05:25:56.199108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911279Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1903,"ScoreDef":7522,"RankSup":0,"ScoreSup":0,"RankTotal":2044,"ScoreTotal":7522,"ID":101074,"Name":"Krnik","NumVillages":2,"Points":6647,"Rank":1226,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=101074","BestRank":1226,"BestRankAt":"2023-02-16T05:25:56.199108Z","MostPoints":6647,"MostPointsAt":"2023-02-16T05:25:56.199108Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910807Z","LastActivityAt":"2023-02-16T05:25:56.199108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911284Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2467,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2541,"ScoreTotal":4,"ID":108256,"Name":"fafex","NumVillages":1,"Points":471,"Rank":2026,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=108256","BestRank":2026,"BestRankAt":"2023-02-16T05:25:56.199109Z","MostPoints":471,"MostPointsAt":"2023-02-16T05:25:48.910808Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910808Z","LastActivityAt":"2023-02-16T05:25:48.910808Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91129Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1266,"ScoreAtt":7325,"RankDef":1921,"ScoreDef":6880,"RankSup":0,"ScoreSup":0,"RankTotal":1933,"ScoreTotal":14205,"ID":112401,"Name":"*Trilesto*","NumVillages":1,"Points":2840,"Rank":1539,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=112401","BestRank":1539,"BestRankAt":"2023-02-16T05:25:56.199109Z","MostPoints":2840,"MostPointsAt":"2023-02-16T05:25:48.910809Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910809Z","LastActivityAt":"2023-02-16T05:25:48.910809Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91129Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":383,"ScoreAtt":613398,"RankDef":1111,"ScoreDef":91973,"RankSup":852,"ScoreSup":16088,"RankTotal":716,"ScoreTotal":721459,"ID":113796,"Name":"mpiechu","NumVillages":84,"Points":639178,"Rank":222,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=113796","BestRank":222,"BestRankAt":"2023-02-16T05:25:56.19911Z","MostPoints":639178,"MostPointsAt":"2023-02-16T05:25:56.19911Z","MostVillages":84,"MostVillagesAt":"2023-02-16T05:25:48.91081Z","LastActivityAt":"2023-02-16T05:25:56.19911Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1977,"ScoreDef":5371,"RankSup":0,"ScoreSup":0,"RankTotal":2105,"ScoreTotal":5371,"ID":117208,"Name":"milupa3 and IdziPR","NumVillages":1,"Points":6898,"Rank":1213,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=117208","BestRank":1213,"BestRankAt":"2023-02-16T05:25:56.19911Z","MostPoints":6898,"MostPointsAt":"2023-02-16T05:25:48.91081Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91081Z","LastActivityAt":"2023-02-16T05:25:48.91081Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911304Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1671,"ScoreAtt":695,"RankDef":784,"ScoreDef":225152,"RankSup":1125,"ScoreSup":1361,"RankTotal":1095,"ScoreTotal":227208,"ID":118121,"Name":"MRFELEK","NumVillages":4,"Points":38887,"Rank":745,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=118121","BestRank":745,"BestRankAt":"2023-02-16T05:25:56.199111Z","MostPoints":38887,"MostPointsAt":"2023-02-16T05:25:56.199111Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910811Z","LastActivityAt":"2023-02-16T05:25:56.199111Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1917,"ScoreAtt":32,"RankDef":720,"ScoreDef":263474,"RankSup":0,"ScoreSup":0,"RankTotal":1041,"ScoreTotal":263506,"ID":122492,"Name":"kybb","NumVillages":1,"Points":878,"Rank":1880,"TribeID":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=122492","BestRank":1880,"BestRankAt":"2023-02-16T05:25:56.199111Z","MostPoints":878,"MostPointsAt":"2023-02-16T05:25:56.199112Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910811Z","LastActivityAt":"2023-02-16T05:25:56.199112Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91131Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1580,"ScoreAtt":1416,"RankDef":2351,"ScoreDef":43,"RankSup":0,"ScoreSup":0,"RankTotal":2263,"ScoreTotal":1459,"ID":126954,"Name":"robert72","NumVillages":2,"Points":5068,"Rank":1313,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=126954","BestRank":1313,"BestRankAt":"2023-02-16T05:25:56.199112Z","MostPoints":5068,"MostPointsAt":"2023-02-16T05:25:56.199112Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:56.199112Z","LastActivityAt":"2023-02-16T05:25:56.199112Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":128346,"Name":"peter3131","NumVillages":1,"Points":333,"Rank":2124,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=128346","BestRank":2124,"BestRankAt":"2023-02-16T05:25:56.199113Z","MostPoints":333,"MostPointsAt":"2023-02-16T05:25:56.199113Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910812Z","LastActivityAt":"2023-02-16T05:25:56.199113Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911335Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2072,"ScoreDef":2947,"RankSup":0,"ScoreSup":0,"RankTotal":2189,"ScoreTotal":2947,"ID":128353,"Name":"lukaszking2","NumVillages":1,"Points":129,"Rank":2397,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=128353","BestRank":2397,"BestRankAt":"2023-02-16T05:25:56.199113Z","MostPoints":129,"MostPointsAt":"2023-02-16T05:25:48.910813Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910813Z","LastActivityAt":"2023-02-16T05:25:48.910813Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1280,"ScoreDef":59293,"RankSup":0,"ScoreSup":0,"RankTotal":1554,"ScoreTotal":59293,"ID":129795,"Name":"skorbyk","NumVillages":1,"Points":560,"Rank":1985,"TribeID":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=129795","BestRank":1985,"BestRankAt":"2023-02-16T05:25:56.199114Z","MostPoints":560,"MostPointsAt":"2023-02-16T05:25:56.199114Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910813Z","LastActivityAt":"2023-02-16T05:25:56.199114Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2113,"ScoreDef":2247,"RankSup":0,"ScoreSup":0,"RankTotal":2215,"ScoreTotal":2247,"ID":131972,"Name":"Ares85","NumVillages":1,"Points":1438,"Rank":1751,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=131972","BestRank":1751,"BestRankAt":"2023-02-16T05:25:56.199114Z","MostPoints":1438,"MostPointsAt":"2023-02-16T05:25:56.199114Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910814Z","LastActivityAt":"2023-02-16T05:25:56.199114Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2222,"ScoreDef":748,"RankSup":0,"ScoreSup":0,"RankTotal":2308,"ScoreTotal":748,"ID":148405,"Name":"wtkc","NumVillages":1,"Points":26,"Rank":2592,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=148405","BestRank":2592,"BestRankAt":"2023-02-16T05:25:56.199115Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910815Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910814Z","LastActivityAt":"2023-02-16T05:25:48.910815Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1721,"ScoreAtt":395,"RankDef":778,"ScoreDef":231436,"RankSup":0,"ScoreSup":0,"RankTotal":1085,"ScoreTotal":231831,"ID":160513,"Name":"obi van kenobi","NumVillages":1,"Points":4395,"Rank":1368,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=160513","BestRank":1368,"BestRankAt":"2023-02-16T05:25:56.199115Z","MostPoints":4395,"MostPointsAt":"2023-02-16T05:25:56.199115Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910815Z","LastActivityAt":"2023-02-16T05:25:56.199115Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1045,"ScoreAtt":23281,"RankDef":531,"ScoreDef":481038,"RankSup":869,"ScoreSup":14414,"RankTotal":826,"ScoreTotal":518733,"ID":192947,"Name":"Jedrol","NumVillages":1,"Points":2431,"Rank":1582,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=192947","BestRank":1582,"BestRankAt":"2023-02-16T05:25:56.199116Z","MostPoints":2431,"MostPointsAt":"2023-02-16T05:25:56.199116Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910816Z","LastActivityAt":"2023-02-16T05:25:56.199116Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911354Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":961,"ScoreAtt":36942,"RankDef":1773,"ScoreDef":13558,"RankSup":899,"ScoreSup":11494,"RankTotal":1533,"ScoreTotal":61994,"ID":195249,"Name":"Marcio7","NumVillages":10,"Points":57536,"Rank":663,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=195249","BestRank":663,"BestRankAt":"2023-02-16T05:25:56.199116Z","MostPoints":57536,"MostPointsAt":"2023-02-16T05:25:56.199117Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.910817Z","LastActivityAt":"2023-02-16T05:25:56.199117Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":661,"ScoreAtt":151562,"RankDef":1151,"ScoreDef":83073,"RankSup":1203,"ScoreSup":345,"RankTotal":1077,"ScoreTotal":234980,"ID":197581,"Name":"malwin","NumVillages":11,"Points":52117,"Rank":681,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=197581","BestRank":679,"BestRankAt":"2023-02-16T05:25:48.910817Z","MostPoints":52117,"MostPointsAt":"2023-02-16T05:25:56.199117Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910817Z","LastActivityAt":"2023-02-16T05:25:56.199117Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1843,"ScoreAtt":118,"RankDef":2106,"ScoreDef":2374,"RankSup":1112,"ScoreSup":1551,"RankTotal":2152,"ScoreTotal":4043,"ID":205821,"Name":"Jamson","NumVillages":1,"Points":128,"Rank":2403,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=205821","BestRank":2403,"BestRankAt":"2023-02-16T05:25:56.199118Z","MostPoints":128,"MostPointsAt":"2023-02-16T05:25:48.910818Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910818Z","LastActivityAt":"2023-02-16T05:25:48.910818Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911368Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":129,"ScoreAtt":2344650,"RankDef":14,"ScoreDef":18438597,"RankSup":58,"ScoreSup":3108663,"RankTotal":21,"ScoreTotal":23891910,"ID":225023,"Name":"GKS TYCHY","NumVillages":173,"Points":1526969,"Rank":79,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=225023","BestRank":78,"BestRankAt":"2023-02-16T05:25:48.910818Z","MostPoints":1526969,"MostPointsAt":"2023-02-16T05:25:56.199118Z","MostVillages":173,"MostVillagesAt":"2023-02-16T05:25:48.910818Z","LastActivityAt":"2023-02-16T05:25:56.199118Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1149,"ScoreAtt":13636,"RankDef":1662,"ScoreDef":21198,"RankSup":504,"ScoreSup":171203,"RankTotal":1127,"ScoreTotal":206037,"ID":254937,"Name":"ilia55","NumVillages":12,"Points":96487,"Rank":547,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=254937","BestRank":487,"BestRankAt":"2023-02-16T05:25:48.910819Z","MostPoints":133357,"MostPointsAt":"2023-02-16T05:25:48.910819Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:48.910819Z","LastActivityAt":"2023-02-16T05:25:48.910819Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1545,"ScoreDef":29387,"RankSup":0,"ScoreSup":0,"RankTotal":1771,"ScoreTotal":29387,"ID":260666,"Name":"oracz1","NumVillages":1,"Points":8435,"Rank":1136,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=260666","BestRank":1136,"BestRankAt":"2023-02-16T05:25:56.199119Z","MostPoints":8435,"MostPointsAt":"2023-02-16T05:25:48.91082Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91082Z","LastActivityAt":"2023-02-16T05:25:48.91082Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":54,"ScoreAtt":4736418,"RankDef":89,"ScoreDef":3814217,"RankSup":92,"ScoreSup":2371312,"RankTotal":70,"ScoreTotal":10921947,"ID":272173,"Name":"dracodarco","NumVillages":249,"Points":1961019,"Rank":52,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=272173","BestRank":50,"BestRankAt":"2023-02-16T05:25:48.91082Z","MostPoints":1961019,"MostPointsAt":"2023-02-16T05:25:56.19912Z","MostVillages":249,"MostVillagesAt":"2023-02-16T05:25:56.19912Z","LastActivityAt":"2023-02-16T05:25:56.19912Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1741,"ScoreAtt":326,"RankDef":1732,"ScoreDef":16574,"RankSup":1332,"ScoreSup":10,"RankTotal":1900,"ScoreTotal":16910,"ID":281866,"Name":"bob 25","NumVillages":3,"Points":3739,"Rank":1424,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=281866","BestRank":1424,"BestRankAt":"2023-02-16T05:25:56.19912Z","MostPoints":3739,"MostPointsAt":"2023-02-16T05:25:48.910821Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910821Z","LastActivityAt":"2023-02-16T05:25:48.910821Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1334,"ScoreAtt":5480,"RankDef":872,"ScoreDef":181301,"RankSup":1115,"ScoreSup":1530,"RankTotal":1165,"ScoreTotal":188311,"ID":289542,"Name":"Jori","NumVillages":2,"Points":6780,"Rank":1220,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=289542","BestRank":1220,"BestRankAt":"2023-02-16T05:25:56.199121Z","MostPoints":6780,"MostPointsAt":"2023-02-16T05:25:56.199121Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910821Z","LastActivityAt":"2023-02-16T05:25:56.199121Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":792,"ScoreAtt":83768,"RankDef":517,"ScoreDef":494705,"RankSup":1052,"ScoreSup":2740,"RankTotal":784,"ScoreTotal":581213,"ID":301602,"Name":"Luki80","NumVillages":11,"Points":70147,"Rank":613,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=301602","BestRank":613,"BestRankAt":"2023-02-16T05:25:56.199121Z","MostPoints":70147,"MostPointsAt":"2023-02-16T05:25:48.910822Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910822Z","LastActivityAt":"2023-02-16T05:25:48.910822Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1295,"ScoreAtt":6540,"RankDef":751,"ScoreDef":243705,"RankSup":607,"ScoreSup":96237,"RankTotal":962,"ScoreTotal":346482,"ID":310729,"Name":"Wilczekhehe","NumVillages":2,"Points":8151,"Rank":1147,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=310729","BestRank":1147,"BestRankAt":"2023-02-16T05:25:56.199122Z","MostPoints":8151,"MostPointsAt":"2023-02-16T05:25:48.910822Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910822Z","LastActivityAt":"2023-02-16T05:25:48.910822Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1663,"ScoreDef":20650,"RankSup":0,"ScoreSup":0,"RankTotal":1856,"ScoreTotal":20650,"ID":325491,"Name":"Zbyszko ZbogdaƄca","NumVillages":0,"Points":0,"Rank":2856,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=325491","BestRank":2856,"BestRankAt":"2023-02-16T05:25:56.199122Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910823Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910823Z","LastActivityAt":"2023-02-16T05:25:48.910823Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9114Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1819,"ScoreAtt":147,"RankDef":277,"ScoreDef":1318402,"RankSup":617,"ScoreSup":89881,"RankTotal":518,"ScoreTotal":1408430,"ID":335509,"Name":"zuzel","NumVillages":1,"Points":1606,"Rank":1716,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=335509","BestRank":1716,"BestRankAt":"2023-02-16T05:25:56.199123Z","MostPoints":1606,"MostPointsAt":"2023-02-16T05:25:56.199123Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910823Z","LastActivityAt":"2023-02-16T05:25:56.199123Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1539,"ScoreAtt":1910,"RankDef":1423,"ScoreDef":40415,"RankSup":1308,"ScoreSup":19,"RankTotal":1657,"ScoreTotal":42344,"ID":337137,"Name":"Carlos75","NumVillages":1,"Points":26,"Rank":2593,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=337137","BestRank":2593,"BestRankAt":"2023-02-16T05:25:56.199123Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910824Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910824Z","LastActivityAt":"2023-02-16T05:25:48.910824Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":114,"ScoreAtt":2666299,"RankDef":847,"ScoreDef":188304,"RankSup":120,"ScoreSup":1860486,"RankTotal":200,"ScoreTotal":4715089,"ID":356642,"Name":"FKG007","NumVillages":224,"Points":1821919,"Rank":60,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=356642","BestRank":59,"BestRankAt":"2023-02-16T05:25:48.910824Z","MostPoints":1821919,"MostPointsAt":"2023-02-16T05:25:56.199124Z","MostVillages":224,"MostVillagesAt":"2023-02-16T05:25:56.199124Z","LastActivityAt":"2023-02-16T05:25:56.199124Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91141Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1133,"ScoreAtt":15088,"RankDef":595,"ScoreDef":385441,"RankSup":1150,"ScoreSup":923,"RankTotal":915,"ScoreTotal":401452,"ID":361125,"Name":"max-94","NumVillages":3,"Points":11514,"Rank":1050,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=361125","BestRank":1050,"BestRankAt":"2023-02-16T05:25:56.199124Z","MostPoints":11514,"MostPointsAt":"2023-02-16T05:25:56.199124Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910825Z","LastActivityAt":"2023-02-16T05:25:56.199125Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91141Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1164,"ScoreDef":80352,"RankSup":0,"ScoreSup":0,"RankTotal":1456,"ScoreTotal":80352,"ID":363280,"Name":"majku","NumVillages":2,"Points":4725,"Rank":1347,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=363280","BestRank":1347,"BestRankAt":"2023-02-16T05:25:56.199125Z","MostPoints":4725,"MostPointsAt":"2023-02-16T05:25:48.910826Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910826Z","LastActivityAt":"2023-02-16T05:25:48.910826Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1669,"ScoreAtt":704,"RankDef":1102,"ScoreDef":93807,"RankSup":1195,"ScoreSup":381,"RankTotal":1406,"ScoreTotal":94892,"ID":364126,"Name":"Borys35","NumVillages":9,"Points":52263,"Rank":680,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=364126","BestRank":680,"BestRankAt":"2023-02-16T05:25:56.199125Z","MostPoints":52263,"MostPointsAt":"2023-02-16T05:25:56.199126Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.910826Z","LastActivityAt":"2023-02-16T05:25:56.199126Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91142Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":366938,"Name":"owen10","NumVillages":1,"Points":26,"Rank":2594,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=366938","BestRank":2594,"BestRankAt":"2023-02-16T05:25:56.199126Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910827Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910827Z","LastActivityAt":"2023-02-16T05:25:48.910827Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911426Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2456,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2519,"ScoreTotal":10,"ID":371910,"Name":"Addamus","NumVillages":1,"Points":1903,"Rank":1671,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=371910","BestRank":1671,"BestRankAt":"2023-02-16T05:25:56.199127Z","MostPoints":1903,"MostPointsAt":"2023-02-16T05:25:56.199127Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910827Z","LastActivityAt":"2023-02-16T05:25:56.199127Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":973,"ScoreDef":136306,"RankSup":0,"ScoreSup":0,"RankTotal":1279,"ScoreTotal":136306,"ID":378757,"Name":"hajza","NumVillages":1,"Points":4338,"Rank":1372,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=378757","BestRank":1372,"BestRankAt":"2023-02-16T05:25:56.199127Z","MostPoints":4338,"MostPointsAt":"2023-02-16T05:25:48.910828Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910828Z","LastActivityAt":"2023-02-16T05:25:48.910828Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911431Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1704,"ScoreAtt":500,"RankDef":235,"ScoreDef":1631288,"RankSup":0,"ScoreSup":0,"RankTotal":472,"ScoreTotal":1631788,"ID":382222,"Name":"lechu33","NumVillages":1,"Points":1473,"Rank":1739,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=382222","BestRank":1739,"BestRankAt":"2023-02-16T05:25:56.199128Z","MostPoints":1473,"MostPointsAt":"2023-02-16T05:25:56.199128Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910829Z","LastActivityAt":"2023-02-16T05:25:56.199128Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":140,"ScoreAtt":2217050,"RankDef":308,"ScoreDef":1133980,"RankSup":129,"ScoreSup":1667843,"RankTotal":185,"ScoreTotal":5018873,"ID":393668,"Name":"Bonnie i Clyde","NumVillages":206,"Points":1810647,"Rank":61,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=393668","BestRank":61,"BestRankAt":"2023-02-16T05:25:48.91083Z","MostPoints":1810647,"MostPointsAt":"2023-02-16T05:25:56.199129Z","MostVillages":206,"MostVillagesAt":"2023-02-16T05:25:56.199129Z","LastActivityAt":"2023-02-16T05:25:56.199129Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1827,"ScoreAtt":137,"RankDef":1426,"ScoreDef":39884,"RankSup":0,"ScoreSup":0,"RankTotal":1678,"ScoreTotal":40021,"ID":412571,"Name":"bomba1","NumVillages":0,"Points":0,"Rank":2857,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=412571","BestRank":2857,"BestRankAt":"2023-02-16T05:25:56.199129Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910831Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.91083Z","LastActivityAt":"2023-02-16T05:25:48.910831Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911445Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1460,"ScoreDef":37047,"RankSup":0,"ScoreSup":0,"RankTotal":1704,"ScoreTotal":37047,"ID":439825,"Name":"Pawelstryju","NumVillages":1,"Points":1641,"Rank":1709,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=439825","BestRank":1709,"BestRankAt":"2023-02-16T05:25:56.19913Z","MostPoints":1641,"MostPointsAt":"2023-02-16T05:25:56.19913Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910831Z","LastActivityAt":"2023-02-16T05:25:56.19913Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91145Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2101,"ScoreDef":2424,"RankSup":495,"ScoreSup":176701,"RankTotal":1190,"ScoreTotal":179125,"ID":466800,"Name":"leito2","NumVillages":1,"Points":3854,"Rank":1414,"TribeID":1602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=466800","BestRank":1414,"BestRankAt":"2023-02-16T05:25:56.199131Z","MostPoints":3854,"MostPointsAt":"2023-02-16T05:25:48.910832Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910832Z","LastActivityAt":"2023-02-16T05:25:48.910832Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1649,"ScoreDef":21915,"RankSup":0,"ScoreSup":0,"RankTotal":1844,"ScoreTotal":21915,"ID":470266,"Name":"PaweƂ I Wspanialy","NumVillages":1,"Points":1674,"Rank":1704,"TribeID":1421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=470266","BestRank":1704,"BestRankAt":"2023-02-16T05:25:56.199131Z","MostPoints":1674,"MostPointsAt":"2023-02-16T05:25:56.199131Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910832Z","LastActivityAt":"2023-02-16T05:25:56.199132Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":121,"ScoreAtt":2498636,"RankDef":334,"ScoreDef":961975,"RankSup":752,"ScoreSup":34997,"RankTotal":257,"ScoreTotal":3495608,"ID":477415,"Name":"dudas1","NumVillages":89,"Points":921882,"Rank":158,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=477415","BestRank":158,"BestRankAt":"2023-02-16T05:25:56.199132Z","MostPoints":921882,"MostPointsAt":"2023-02-16T05:25:56.199132Z","MostVillages":89,"MostVillagesAt":"2023-02-16T05:25:48.910833Z","LastActivityAt":"2023-02-16T05:25:56.199132Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911461Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1569,"ScoreAtt":1534,"RankDef":800,"ScoreDef":216220,"RankSup":0,"ScoreSup":0,"RankTotal":1112,"ScoreTotal":217754,"ID":478956,"Name":"Sir Zordon","NumVillages":11,"Points":59367,"Rank":658,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=478956","BestRank":657,"BestRankAt":"2023-02-16T05:25:48.910833Z","MostPoints":59367,"MostPointsAt":"2023-02-16T05:25:56.199133Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910833Z","LastActivityAt":"2023-02-16T05:25:56.199133Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":708,"ScoreAtt":123243,"RankDef":867,"ScoreDef":182868,"RankSup":1336,"ScoreSup":9,"RankTotal":1001,"ScoreTotal":306120,"ID":483145,"Name":"Krzysztof1215","NumVillages":15,"Points":134562,"Rank":486,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=483145","BestRank":486,"BestRankAt":"2023-02-16T05:25:56.199133Z","MostPoints":134562,"MostPointsAt":"2023-02-16T05:25:56.199133Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.910834Z","LastActivityAt":"2023-02-16T05:25:56.199133Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1550,"ScoreAtt":1784,"RankDef":1467,"ScoreDef":36326,"RankSup":0,"ScoreSup":0,"RankTotal":1695,"ScoreTotal":38110,"ID":498483,"Name":"Grucha125","NumVillages":6,"Points":21159,"Rank":903,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=498483","BestRank":903,"BestRankAt":"2023-02-16T05:25:56.199134Z","MostPoints":21159,"MostPointsAt":"2023-02-16T05:25:56.199134Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.910834Z","LastActivityAt":"2023-02-16T05:25:56.199134Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1391,"ScoreDef":44990,"RankSup":0,"ScoreSup":0,"RankTotal":1640,"ScoreTotal":44990,"ID":526350,"Name":"Maxwell 3","NumVillages":1,"Points":2448,"Rank":1579,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=526350","BestRank":1579,"BestRankAt":"2023-02-16T05:25:56.199134Z","MostPoints":2448,"MostPointsAt":"2023-02-16T05:25:56.199134Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910835Z","LastActivityAt":"2023-02-16T05:25:56.199135Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":959,"ScoreAtt":37346,"RankDef":2198,"ScoreDef":1017,"RankSup":0,"ScoreSup":0,"RankTotal":1693,"ScoreTotal":38363,"ID":529552,"Name":"matekstryju","NumVillages":4,"Points":27236,"Rank":837,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=529552","BestRank":835,"BestRankAt":"2023-02-16T05:25:48.910835Z","MostPoints":27236,"MostPointsAt":"2023-02-16T05:25:48.910835Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910835Z","LastActivityAt":"2023-02-16T05:25:48.910836Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":367,"ScoreAtt":655274,"RankDef":132,"ScoreDef":2962395,"RankSup":0,"ScoreSup":0,"RankTotal":251,"ScoreTotal":3617669,"ID":542253,"Name":"Tomek 7","NumVillages":46,"Points":237644,"Rank":387,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=542253","BestRank":373,"BestRankAt":"2023-02-16T05:25:48.910836Z","MostPoints":263228,"MostPointsAt":"2023-02-16T05:25:48.910836Z","MostVillages":50,"MostVillagesAt":"2023-02-16T05:25:48.910836Z","LastActivityAt":"2023-02-16T05:25:48.910836Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1762,"ScoreAtt":273,"RankDef":2240,"ScoreDef":549,"RankSup":1159,"ScoreSup":839,"RankTotal":2253,"ScoreTotal":1661,"ID":545152,"Name":"Bociek80","NumVillages":1,"Points":596,"Rank":1972,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=545152","BestRank":1972,"BestRankAt":"2023-02-16T05:25:56.199136Z","MostPoints":596,"MostPointsAt":"2023-02-16T05:25:56.199136Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910836Z","LastActivityAt":"2023-02-16T05:25:56.199136Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1781,"ScoreDef":13365,"RankSup":0,"ScoreSup":0,"RankTotal":1942,"ScoreTotal":13365,"ID":546458,"Name":"Sindbad00","NumVillages":1,"Points":592,"Rank":1973,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=546458","BestRank":1973,"BestRankAt":"2023-02-16T05:25:56.199136Z","MostPoints":592,"MostPointsAt":"2023-02-16T05:25:48.910837Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910837Z","LastActivityAt":"2023-02-16T05:25:48.910837Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":206,"ScoreAtt":1531071,"RankDef":385,"ScoreDef":787408,"RankSup":503,"ScoreSup":171219,"RankTotal":349,"ScoreTotal":2489698,"ID":556154,"Name":"SweetKimo","NumVillages":80,"Points":745810,"Rank":192,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=556154","BestRank":192,"BestRankAt":"2023-02-16T05:25:56.199137Z","MostPoints":745810,"MostPointsAt":"2023-02-16T05:25:56.199137Z","MostVillages":80,"MostVillagesAt":"2023-02-16T05:25:56.199137Z","LastActivityAt":"2023-02-16T05:25:56.199137Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":514,"ScoreDef":498350,"RankSup":0,"ScoreSup":0,"RankTotal":842,"ScoreTotal":498350,"ID":563544,"Name":"arkow","NumVillages":1,"Points":1497,"Rank":1736,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=563544","BestRank":1736,"BestRankAt":"2023-02-16T05:25:56.199137Z","MostPoints":1497,"MostPointsAt":"2023-02-16T05:25:56.199138Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910838Z","LastActivityAt":"2023-02-16T05:25:56.199138Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":565043,"Name":"nikita.11","NumVillages":1,"Points":640,"Rank":1953,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=565043","BestRank":1953,"BestRankAt":"2023-02-16T05:25:56.199138Z","MostPoints":640,"MostPointsAt":"2023-02-16T05:25:56.199138Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910839Z","LastActivityAt":"2023-02-16T05:25:56.199138Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911515Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1837,"ScoreDef":10283,"RankSup":0,"ScoreSup":0,"RankTotal":1987,"ScoreTotal":10283,"ID":566379,"Name":"floraI","NumVillages":1,"Points":252,"Rank":2205,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=566379","BestRank":2205,"BestRankAt":"2023-02-16T05:25:56.199139Z","MostPoints":252,"MostPointsAt":"2023-02-16T05:25:56.199139Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910839Z","LastActivityAt":"2023-02-16T05:25:56.199139Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91152Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1007,"ScoreDef":124391,"RankSup":0,"ScoreSup":0,"RankTotal":1313,"ScoreTotal":124391,"ID":569790,"Name":"relag06","NumVillages":1,"Points":7515,"Rank":1183,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=569790","BestRank":1183,"BestRankAt":"2023-02-16T05:25:56.199139Z","MostPoints":7515,"MostPointsAt":"2023-02-16T05:25:48.91084Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91084Z","LastActivityAt":"2023-02-16T05:25:48.91084Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911521Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1691,"ScoreAtt":581,"RankDef":1879,"ScoreDef":8378,"RankSup":0,"ScoreSup":0,"RankTotal":2011,"ScoreTotal":8959,"ID":570100,"Name":"kazek- 15","NumVillages":9,"Points":39958,"Rank":740,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=570100","BestRank":740,"BestRankAt":"2023-02-16T05:25:56.19914Z","MostPoints":39958,"MostPointsAt":"2023-02-16T05:25:56.19914Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.91084Z","LastActivityAt":"2023-02-16T05:25:56.19914Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1991,"ScoreDef":5000,"RankSup":1328,"ScoreSup":11,"RankTotal":2120,"ScoreTotal":5011,"ID":583500,"Name":"pchelka75","NumVillages":1,"Points":3440,"Rank":1461,"TribeID":1728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=583500","BestRank":1461,"BestRankAt":"2023-02-16T05:25:56.19914Z","MostPoints":3440,"MostPointsAt":"2023-02-16T05:25:48.910841Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910841Z","LastActivityAt":"2023-02-16T05:25:48.910841Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911526Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1636,"ScoreAtt":868,"RankDef":725,"ScoreDef":261994,"RankSup":0,"ScoreSup":0,"RankTotal":1045,"ScoreTotal":262862,"ID":584989,"Name":"Iceeman","NumVillages":1,"Points":381,"Rank":2086,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=584989","BestRank":2086,"BestRankAt":"2023-02-16T05:25:56.199141Z","MostPoints":381,"MostPointsAt":"2023-02-16T05:25:48.910842Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910841Z","LastActivityAt":"2023-02-16T05:25:48.910842Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911532Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":478,"ScoreDef":562496,"RankSup":1396,"ScoreSup":2,"RankTotal":793,"ScoreTotal":562498,"ID":591733,"Name":"ShOcK","NumVillages":1,"Points":10021,"Rank":1079,"TribeID":1058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=591733","BestRank":1079,"BestRankAt":"2023-02-16T05:25:56.199141Z","MostPoints":10021,"MostPointsAt":"2023-02-16T05:25:48.910842Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910842Z","LastActivityAt":"2023-02-16T05:25:48.910842Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911533Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1689,"ScoreAtt":584,"RankDef":1940,"ScoreDef":6351,"RankSup":1417,"ScoreSup":1,"RankTotal":2060,"ScoreTotal":6936,"ID":602408,"Name":"dracart","NumVillages":5,"Points":16540,"Rank":975,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=602408","BestRank":975,"BestRankAt":"2023-02-16T05:25:56.199142Z","MostPoints":16540,"MostPointsAt":"2023-02-16T05:25:56.199142Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.910843Z","LastActivityAt":"2023-02-16T05:25:56.199142Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911538Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2417,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2528,"ScoreTotal":10,"ID":603968,"Name":"Dreddenoth","NumVillages":1,"Points":2114,"Rank":1632,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=603968","BestRank":1632,"BestRankAt":"2023-02-16T05:25:56.199142Z","MostPoints":2114,"MostPointsAt":"2023-02-16T05:25:56.199142Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910843Z","LastActivityAt":"2023-02-16T05:25:56.199142Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911543Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":230,"ScoreAtt":1303914,"RankDef":1201,"ScoreDef":72428,"RankSup":70,"ScoreSup":2837286,"RankTotal":226,"ScoreTotal":4213628,"ID":606407,"Name":"BaNdzi0r","NumVillages":123,"Points":1054941,"Rank":135,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=606407","BestRank":134,"BestRankAt":"2023-02-16T05:25:48.910844Z","MostPoints":1054941,"MostPointsAt":"2023-02-16T05:25:56.199143Z","MostVillages":123,"MostVillagesAt":"2023-02-16T05:25:48.910844Z","LastActivityAt":"2023-02-16T05:25:56.199143Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911548Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":930,"ScoreAtt":44391,"RankDef":981,"ScoreDef":131662,"RankSup":1291,"ScoreSup":33,"RankTotal":1197,"ScoreTotal":176086,"ID":606706,"Name":"adam1961","NumVillages":5,"Points":26953,"Rank":840,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=606706","BestRank":839,"BestRankAt":"2023-02-16T05:25:48.910844Z","MostPoints":26953,"MostPointsAt":"2023-02-16T05:25:56.199143Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.910844Z","LastActivityAt":"2023-02-16T05:25:56.199143Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911548Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1200,"ScoreAtt":10514,"RankDef":1347,"ScoreDef":50800,"RankSup":0,"ScoreSup":0,"RankTotal":1539,"ScoreTotal":61314,"ID":609384,"Name":"Brbi","NumVillages":9,"Points":21701,"Rank":894,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=609384","BestRank":894,"BestRankAt":"2023-02-16T05:25:56.199144Z","MostPoints":21701,"MostPointsAt":"2023-02-16T05:25:56.199144Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.910845Z","LastActivityAt":"2023-02-16T05:25:56.199144Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1751,"ScoreAtt":291,"RankDef":1621,"ScoreDef":24360,"RankSup":0,"ScoreSup":0,"RankTotal":1818,"ScoreTotal":24651,"ID":610196,"Name":"Tomek z Tyyrra X Adam547","NumVillages":2,"Points":778,"Rank":1908,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=610196","BestRank":1908,"BestRankAt":"2023-02-16T05:25:56.199144Z","MostPoints":778,"MostPointsAt":"2023-02-16T05:25:48.910845Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910845Z","LastActivityAt":"2023-02-16T05:25:48.910845Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1417,"ScoreAtt":3636,"RankDef":814,"ScoreDef":207069,"RankSup":1387,"ScoreSup":2,"RankTotal":1121,"ScoreTotal":210707,"ID":634848,"Name":"izolator","NumVillages":9,"Points":47710,"Rank":702,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=634848","BestRank":702,"BestRankAt":"2023-02-16T05:25:56.199145Z","MostPoints":47710,"MostPointsAt":"2023-02-16T05:25:56.199145Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.910846Z","LastActivityAt":"2023-02-16T05:25:56.199145Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911574Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2488,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2553,"ScoreTotal":1,"ID":662253,"Name":"pluton1","NumVillages":1,"Points":209,"Rank":2254,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=662253","BestRank":2254,"BestRankAt":"2023-02-16T05:25:56.199145Z","MostPoints":209,"MostPointsAt":"2023-02-16T05:25:48.910846Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910846Z","LastActivityAt":"2023-02-16T05:25:48.910847Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911579Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":458,"ScoreAtt":433457,"RankDef":1711,"ScoreDef":17534,"RankSup":0,"ScoreSup":0,"RankTotal":874,"ScoreTotal":450991,"ID":671516,"Name":"Hilwoz","NumVillages":1,"Points":26,"Rank":2595,"TribeID":1275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=671516","BestRank":2595,"BestRankAt":"2023-02-16T05:25:56.199146Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910847Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910847Z","LastActivityAt":"2023-02-16T05:25:48.910847Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":185,"ScoreAtt":1692015,"RankDef":948,"ScoreDef":146676,"RankSup":517,"ScoreSup":155210,"RankTotal":411,"ScoreTotal":1993901,"ID":692803,"Name":"maradona1006","NumVillages":183,"Points":1325583,"Rank":94,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=692803","BestRank":94,"BestRankAt":"2023-02-16T05:25:56.199146Z","MostPoints":1325583,"MostPointsAt":"2023-02-16T05:25:56.199146Z","MostVillages":183,"MostVillagesAt":"2023-02-16T05:25:56.199146Z","LastActivityAt":"2023-02-16T05:25:56.199146Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91159Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1752,"ScoreAtt":291,"RankDef":619,"ScoreDef":359347,"RankSup":0,"ScoreSup":0,"RankTotal":949,"ScoreTotal":359638,"ID":712216,"Name":"toreno1","NumVillages":1,"Points":2203,"Rank":1616,"TribeID":382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=712216","BestRank":1616,"BestRankAt":"2023-02-16T05:25:56.199147Z","MostPoints":2203,"MostPointsAt":"2023-02-16T05:25:48.910848Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910848Z","LastActivityAt":"2023-02-16T05:25:48.910848Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911591Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1242,"ScoreAtt":8189,"RankDef":545,"ScoreDef":455189,"RankSup":678,"ScoreSup":58698,"RankTotal":822,"ScoreTotal":522076,"ID":724621,"Name":"pele z zar","NumVillages":1,"Points":198,"Rank":2273,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=724621","BestRank":2273,"BestRankAt":"2023-02-16T05:25:56.199147Z","MostPoints":198,"MostPointsAt":"2023-02-16T05:25:48.910849Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910849Z","LastActivityAt":"2023-02-16T05:25:48.910849Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1132,"ScoreAtt":15103,"RankDef":519,"ScoreDef":493346,"RankSup":1249,"ScoreSup":105,"RankTotal":834,"ScoreTotal":508554,"ID":745946,"Name":"kazio73","NumVillages":8,"Points":47441,"Rank":703,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=745946","BestRank":703,"BestRankAt":"2023-02-16T05:25:56.199148Z","MostPoints":47441,"MostPointsAt":"2023-02-16T05:25:56.199148Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.910849Z","LastActivityAt":"2023-02-16T05:25:56.199148Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":819,"ScoreAtt":72427,"RankDef":1534,"ScoreDef":30197,"RankSup":0,"ScoreSup":0,"RankTotal":1377,"ScoreTotal":102624,"ID":747422,"Name":"janush4","NumVillages":8,"Points":22924,"Rank":885,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=747422","BestRank":885,"BestRankAt":"2023-02-16T05:25:56.199148Z","MostPoints":22924,"MostPointsAt":"2023-02-16T05:25:56.199148Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.91085Z","LastActivityAt":"2023-02-16T05:25:56.199148Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911603Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":190,"ScoreAtt":1639319,"RankDef":359,"ScoreDef":852830,"RankSup":629,"ScoreSup":82443,"RankTotal":341,"ScoreTotal":2574592,"ID":758104,"Name":"kaszak10","NumVillages":68,"Points":598014,"Rank":240,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=758104","BestRank":240,"BestRankAt":"2023-02-16T05:25:56.199149Z","MostPoints":598014,"MostPointsAt":"2023-02-16T05:25:56.199149Z","MostVillages":68,"MostVillagesAt":"2023-02-16T05:25:48.91085Z","LastActivityAt":"2023-02-16T05:25:56.199149Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1944,"ScoreAtt":17,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2487,"ScoreTotal":17,"ID":762859,"Name":"Mikkerland","NumVillages":1,"Points":269,"Rank":2190,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=762859","BestRank":2190,"BestRankAt":"2023-02-16T05:25:56.199149Z","MostPoints":269,"MostPointsAt":"2023-02-16T05:25:48.910851Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910851Z","LastActivityAt":"2023-02-16T05:25:48.910851Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911613Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1284,"ScoreAtt":6746,"RankDef":1735,"ScoreDef":16460,"RankSup":1280,"ScoreSup":45,"RankTotal":1832,"ScoreTotal":23251,"ID":762975,"Name":"xxczesiaxx","NumVillages":7,"Points":16066,"Rank":983,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=762975","BestRank":983,"BestRankAt":"2023-02-16T05:25:56.19915Z","MostPoints":16066,"MostPointsAt":"2023-02-16T05:25:56.19915Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.910851Z","LastActivityAt":"2023-02-16T05:25:56.19915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":754,"ScoreAtt":98048,"RankDef":2380,"ScoreDef":21,"RankSup":0,"ScoreSup":0,"RankTotal":1394,"ScoreTotal":98069,"ID":763529,"Name":"Destination1","NumVillages":7,"Points":42322,"Rank":730,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=763529","BestRank":730,"BestRankAt":"2023-02-16T05:25:56.19915Z","MostPoints":42322,"MostPointsAt":"2023-02-16T05:25:56.199151Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.910852Z","LastActivityAt":"2023-02-16T05:25:56.199151Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":852,"ScoreAtt":62873,"RankDef":260,"ScoreDef":1430770,"RankSup":681,"ScoreSup":57474,"RankTotal":484,"ScoreTotal":1551117,"ID":765188,"Name":"pablo99999","NumVillages":11,"Points":83261,"Rank":575,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=765188","BestRank":575,"BestRankAt":"2023-02-16T05:25:56.199151Z","MostPoints":83261,"MostPointsAt":"2023-02-16T05:25:56.199151Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910852Z","LastActivityAt":"2023-02-16T05:25:56.199151Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1905,"ScoreAtt":39,"RankDef":850,"ScoreDef":186838,"RankSup":0,"ScoreSup":0,"RankTotal":1169,"ScoreTotal":186877,"ID":769293,"Name":"fan zmijki","NumVillages":3,"Points":16247,"Rank":980,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=769293","BestRank":980,"BestRankAt":"2023-02-16T05:25:56.199151Z","MostPoints":16247,"MostPointsAt":"2023-02-16T05:25:56.199152Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910853Z","LastActivityAt":"2023-02-16T05:25:56.199152Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1174,"ScoreDef":77868,"RankSup":1293,"ScoreSup":31,"RankTotal":1469,"ScoreTotal":77899,"ID":796977,"Name":"KOMANDOR PIERWSZY","NumVillages":1,"Points":508,"Rank":2008,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=796977","BestRank":2008,"BestRankAt":"2023-02-16T05:25:56.199152Z","MostPoints":508,"MostPointsAt":"2023-02-16T05:25:56.199152Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910854Z","LastActivityAt":"2023-02-16T05:25:56.199152Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1626,"ScoreDef":23953,"RankSup":0,"ScoreSup":0,"RankTotal":1827,"ScoreTotal":23953,"ID":823987,"Name":"Pietrucha2","NumVillages":1,"Points":2843,"Rank":1535,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=823987","BestRank":1535,"BestRankAt":"2023-02-16T05:25:56.199153Z","MostPoints":2843,"MostPointsAt":"2023-02-16T05:25:56.199153Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910854Z","LastActivityAt":"2023-02-16T05:25:56.199153Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":38,"ScoreAtt":6062596,"RankDef":315,"ScoreDef":1073816,"RankSup":151,"ScoreSup":1502240,"RankTotal":92,"ScoreTotal":8638652,"ID":828637,"Name":"mklo12","NumVillages":221,"Points":2254486,"Rank":40,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=828637","BestRank":40,"BestRankAt":"2023-02-16T05:25:48.910855Z","MostPoints":2254486,"MostPointsAt":"2023-02-16T05:25:56.199153Z","MostVillages":221,"MostVillagesAt":"2023-02-16T05:25:56.199153Z","LastActivityAt":"2023-02-16T05:25:56.199153Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":867191,"Name":"bzdenio","NumVillages":1,"Points":82,"Rank":2509,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=867191","BestRank":2509,"BestRankAt":"2023-02-16T05:25:48.910855Z","MostPoints":82,"MostPointsAt":"2023-02-16T05:25:48.910855Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910855Z","LastActivityAt":"2023-02-16T05:25:48.910855Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911642Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1775,"ScoreAtt":247,"RankDef":1369,"ScoreDef":47984,"RankSup":0,"ScoreSup":0,"RankTotal":1618,"ScoreTotal":48231,"ID":869195,"Name":"Lord Siekier","NumVillages":1,"Points":2357,"Rank":1593,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=869195","BestRank":1593,"BestRankAt":"2023-02-16T05:25:56.199154Z","MostPoints":2357,"MostPointsAt":"2023-02-16T05:25:56.199154Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910856Z","LastActivityAt":"2023-02-16T05:25:56.199154Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":60,"ScoreAtt":4419223,"RankDef":1264,"ScoreDef":60748,"RankSup":4,"ScoreSup":11278909,"RankTotal":42,"ScoreTotal":15758880,"ID":873575,"Name":"kathare","NumVillages":240,"Points":2432343,"Rank":29,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=873575","BestRank":29,"BestRankAt":"2023-02-16T05:25:48.910858Z","MostPoints":2432343,"MostPointsAt":"2023-02-16T05:25:56.199154Z","MostVillages":240,"MostVillagesAt":"2023-02-16T05:25:48.910858Z","LastActivityAt":"2023-02-16T05:25:56.199154Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1686,"ScoreAtt":598,"RankDef":1189,"ScoreDef":74918,"RankSup":847,"ScoreSup":16678,"RankTotal":1420,"ScoreTotal":92194,"ID":878961,"Name":"marus1000","NumVillages":1,"Points":8752,"Rank":1123,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=878961","BestRank":1123,"BestRankAt":"2023-02-16T05:25:56.199155Z","MostPoints":8752,"MostPointsAt":"2023-02-16T05:25:48.910858Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910858Z","LastActivityAt":"2023-02-16T05:25:48.910858Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":238,"ScoreAtt":1210248,"RankDef":1482,"ScoreDef":35329,"RankSup":736,"ScoreSup":38847,"RankTotal":546,"ScoreTotal":1284424,"ID":879782,"Name":"Janxxv","NumVillages":69,"Points":616981,"Rank":232,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=879782","BestRank":232,"BestRankAt":"2023-02-16T05:25:48.910859Z","MostPoints":616981,"MostPointsAt":"2023-02-16T05:25:56.199155Z","MostVillages":69,"MostVillagesAt":"2023-02-16T05:25:48.910859Z","LastActivityAt":"2023-02-16T05:25:56.199155Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1930,"ScoreAtt":26,"RankDef":1080,"ScoreDef":98822,"RankSup":0,"ScoreSup":0,"RankTotal":1393,"ScoreTotal":98848,"ID":881782,"Name":"szymon12-95","NumVillages":0,"Points":0,"Rank":2858,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=881782","BestRank":2858,"BestRankAt":"2023-02-16T05:25:56.199156Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910859Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910859Z","LastActivityAt":"2023-02-16T05:25:48.910859Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":894,"ScoreDef":170018,"RankSup":1372,"ScoreSup":3,"RankTotal":1209,"ScoreTotal":170021,"ID":896355,"Name":"Grisza10","NumVillages":2,"Points":6531,"Rank":1230,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=896355","BestRank":1230,"BestRankAt":"2023-02-16T05:25:56.199156Z","MostPoints":6531,"MostPointsAt":"2023-02-16T05:25:56.199156Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.91086Z","LastActivityAt":"2023-02-16T05:25:56.199156Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1208,"ScoreAtt":10216,"RankDef":732,"ScoreDef":258250,"RankSup":609,"ScoreSup":93378,"RankTotal":947,"ScoreTotal":361844,"ID":915113,"Name":"gex1992","NumVillages":5,"Points":28304,"Rank":830,"TribeID":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=915113","BestRank":830,"BestRankAt":"2023-02-16T05:25:56.199157Z","MostPoints":28304,"MostPointsAt":"2023-02-16T05:25:56.199157Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.91086Z","LastActivityAt":"2023-02-16T05:25:56.199157Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1299,"ScoreDef":57725,"RankSup":0,"ScoreSup":0,"RankTotal":1571,"ScoreTotal":57725,"ID":919882,"Name":"Kostek33","NumVillages":0,"Points":0,"Rank":2886,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=919882","BestRank":2886,"BestRankAt":"2023-02-16T05:25:48.910861Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910861Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910861Z","LastActivityAt":"2023-02-16T05:25:48.910861Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911668Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1568,"ScoreAtt":1537,"RankDef":2094,"ScoreDef":2579,"RankSup":1357,"ScoreSup":5,"RankTotal":2147,"ScoreTotal":4121,"ID":921888,"Name":"Deadshot","NumVillages":1,"Points":26,"Rank":2596,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=921888","BestRank":2596,"BestRankAt":"2023-02-16T05:25:56.199157Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910862Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910861Z","LastActivityAt":"2023-02-16T05:25:48.910862Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":599,"ScoreAtt":215355,"RankDef":47,"ScoreDef":6789703,"RankSup":452,"ScoreSup":222853,"RankTotal":119,"ScoreTotal":7227911,"ID":926823,"Name":"luki0911","NumVillages":7,"Points":40875,"Rank":735,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=926823","BestRank":735,"BestRankAt":"2023-02-16T05:25:56.199158Z","MostPoints":40875,"MostPointsAt":"2023-02-16T05:25:48.910862Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.910862Z","LastActivityAt":"2023-02-16T05:25:48.910862Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1879,"ScoreAtt":59,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2436,"ScoreTotal":59,"ID":930720,"Name":"Susdam","NumVillages":4,"Points":26795,"Rank":844,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=930720","BestRank":840,"BestRankAt":"2023-02-16T05:25:48.910862Z","MostPoints":26795,"MostPointsAt":"2023-02-16T05:25:48.910863Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910863Z","LastActivityAt":"2023-02-16T05:25:48.910863Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":562,"ScoreAtt":260753,"RankDef":293,"ScoreDef":1217975,"RankSup":533,"ScoreSup":142122,"RankTotal":474,"ScoreTotal":1620850,"ID":940693,"Name":"Kartes90","NumVillages":0,"Points":0,"Rank":2859,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=940693","BestRank":2859,"BestRankAt":"2023-02-16T05:25:56.199159Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910863Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910863Z","LastActivityAt":"2023-02-16T05:25:48.910863Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":538,"ScoreAtt":299012,"RankDef":1905,"ScoreDef":7504,"RankSup":817,"ScoreSup":21555,"RankTotal":980,"ScoreTotal":328071,"ID":942959,"Name":"D.E.M.O.N","NumVillages":19,"Points":98801,"Rank":542,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=942959","BestRank":542,"BestRankAt":"2023-02-16T05:25:56.199159Z","MostPoints":98801,"MostPointsAt":"2023-02-16T05:25:56.199159Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:48.910864Z","LastActivityAt":"2023-02-16T05:25:56.199159Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1882,"ScoreAtt":54,"RankDef":777,"ScoreDef":232379,"RankSup":0,"ScoreSup":0,"RankTotal":1084,"ScoreTotal":232433,"ID":944147,"Name":"klos111","NumVillages":1,"Points":2828,"Rank":1542,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=944147","BestRank":1542,"BestRankAt":"2023-02-16T05:25:56.19916Z","MostPoints":2828,"MostPointsAt":"2023-02-16T05:25:56.19916Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910864Z","LastActivityAt":"2023-02-16T05:25:56.19916Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1624,"ScoreDef":24145,"RankSup":0,"ScoreSup":0,"RankTotal":1824,"ScoreTotal":24145,"ID":947564,"Name":"matusia300","NumVillages":1,"Points":3986,"Rank":1402,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=947564","BestRank":1402,"BestRankAt":"2023-02-16T05:25:56.19916Z","MostPoints":3986,"MostPointsAt":"2023-02-16T05:25:56.19916Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910865Z","LastActivityAt":"2023-02-16T05:25:56.19916Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":830,"ScoreAtt":70422,"RankDef":781,"ScoreDef":227492,"RankSup":0,"ScoreSup":0,"RankTotal":1006,"ScoreTotal":297914,"ID":947923,"Name":"Piotr-B","NumVillages":4,"Points":19487,"Rank":926,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=947923","BestRank":924,"BestRankAt":"2023-02-16T05:25:48.910865Z","MostPoints":19723,"MostPointsAt":"2023-02-16T05:25:48.910865Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910865Z","LastActivityAt":"2023-02-16T05:25:48.910866Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2483,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2562,"ScoreTotal":1,"ID":949279,"Name":"niupiro","NumVillages":1,"Points":890,"Rank":1870,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=949279","BestRank":1870,"BestRankAt":"2023-02-16T05:25:56.199161Z","MostPoints":890,"MostPointsAt":"2023-02-16T05:25:56.199161Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910866Z","LastActivityAt":"2023-02-16T05:25:56.199161Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1720,"ScoreAtt":402,"RankDef":620,"ScoreDef":358643,"RankSup":0,"ScoreSup":0,"RankTotal":950,"ScoreTotal":359045,"ID":950985,"Name":"yen3","NumVillages":1,"Points":3897,"Rank":1408,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=950985","BestRank":1408,"BestRankAt":"2023-02-16T05:25:56.199162Z","MostPoints":3897,"MostPointsAt":"2023-02-16T05:25:48.910867Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910866Z","LastActivityAt":"2023-02-16T05:25:48.910867Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":876,"ScoreAtt":55882,"RankDef":1153,"ScoreDef":82606,"RankSup":749,"ScoreSup":36224,"RankTotal":1199,"ScoreTotal":174712,"ID":951823,"Name":"PawJag","NumVillages":13,"Points":100479,"Rank":538,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=951823","BestRank":538,"BestRankAt":"2023-02-16T05:25:56.199162Z","MostPoints":100479,"MostPointsAt":"2023-02-16T05:25:56.199162Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:48.910867Z","LastActivityAt":"2023-02-16T05:25:56.199162Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1384,"ScoreAtt":4387,"RankDef":1631,"ScoreDef":23440,"RankSup":723,"ScoreSup":42282,"RankTotal":1500,"ScoreTotal":70109,"ID":959179,"Name":"mirkos44","NumVillages":8,"Points":23308,"Rank":879,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=959179","BestRank":879,"BestRankAt":"2023-02-16T05:25:56.199163Z","MostPoints":23308,"MostPointsAt":"2023-02-16T05:25:56.199163Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.910868Z","LastActivityAt":"2023-02-16T05:25:56.199163Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1644,"ScoreAtt":819,"RankDef":1017,"ScoreDef":122269,"RankSup":1154,"ScoreSup":884,"RankTotal":1314,"ScoreTotal":123972,"ID":960100,"Name":"Konstansja","NumVillages":2,"Points":9572,"Rank":1100,"TribeID":1672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=960100","BestRank":1100,"BestRankAt":"2023-02-16T05:25:56.199163Z","MostPoints":9572,"MostPointsAt":"2023-02-16T05:25:48.910868Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910868Z","LastActivityAt":"2023-02-16T05:25:48.910868Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":36,"ScoreAtt":6078359,"RankDef":43,"ScoreDef":7578926,"RankSup":59,"ScoreSup":3075398,"RankTotal":38,"ScoreTotal":16732683,"ID":1006847,"Name":"niezwyciÄ™ĆŒony","NumVillages":217,"Points":1784943,"Rank":63,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1006847","BestRank":63,"BestRankAt":"2023-02-16T05:25:48.910869Z","MostPoints":1784943,"MostPointsAt":"2023-02-16T05:25:56.199164Z","MostVillages":217,"MostVillagesAt":"2023-02-16T05:25:56.199164Z","LastActivityAt":"2023-02-16T05:25:56.199164Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1003,"ScoreAtt":28962,"RankDef":463,"ScoreDef":586710,"RankSup":1407,"ScoreSup":1,"RankTotal":773,"ScoreTotal":615673,"ID":1015528,"Name":"XXARDASS","NumVillages":1,"Points":126,"Rank":2410,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1015528","BestRank":1380,"BestRankAt":"2023-02-16T05:25:48.910869Z","MostPoints":4417,"MostPointsAt":"2023-02-16T05:25:48.910869Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910869Z","LastActivityAt":"2023-02-16T05:25:48.910869Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911734Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":282,"ScoreAtt":994878,"RankDef":55,"ScoreDef":6197210,"RankSup":436,"ScoreSup":247556,"RankTotal":114,"ScoreTotal":7439644,"ID":1018357,"Name":"Wujek WƂadek","NumVillages":15,"Points":132884,"Rank":487,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1018357","BestRank":487,"BestRankAt":"2023-02-16T05:25:56.199165Z","MostPoints":132884,"MostPointsAt":"2023-02-16T05:25:48.91087Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.91087Z","LastActivityAt":"2023-02-16T05:25:48.91087Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911741Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":590,"ScoreDef":390101,"RankSup":1238,"ScoreSup":157,"RankTotal":928,"ScoreTotal":390258,"ID":1020792,"Name":"rere1995","NumVillages":1,"Points":885,"Rank":1877,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1020792","BestRank":1877,"BestRankAt":"2023-02-16T05:25:56.199165Z","MostPoints":885,"MostPointsAt":"2023-02-16T05:25:56.199166Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91087Z","LastActivityAt":"2023-02-16T05:25:56.199166Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91175Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1468,"ScoreAtt":2754,"RankDef":638,"ScoreDef":338682,"RankSup":1117,"ScoreSup":1498,"RankTotal":966,"ScoreTotal":342934,"ID":1021709,"Name":"NewBetterSatan","NumVillages":1,"Points":1671,"Rank":1706,"TribeID":1705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1021709","BestRank":1706,"BestRankAt":"2023-02-16T05:25:56.199166Z","MostPoints":1671,"MostPointsAt":"2023-02-16T05:25:56.199166Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910871Z","LastActivityAt":"2023-02-16T05:25:56.199166Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91175Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1264,"ScoreAtt":7390,"RankDef":2299,"ScoreDef":222,"RankSup":0,"ScoreSup":0,"RankTotal":2043,"ScoreTotal":7612,"ID":1034117,"Name":"Splendid606","NumVillages":4,"Points":6525,"Rank":1232,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1034117","BestRank":1232,"BestRankAt":"2023-02-16T05:25:56.199167Z","MostPoints":6525,"MostPointsAt":"2023-02-16T05:25:56.199167Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:56.199167Z","LastActivityAt":"2023-02-16T05:25:56.199167Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911754Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":985,"ScoreDef":130875,"RankSup":0,"ScoreSup":0,"RankTotal":1293,"ScoreTotal":130875,"ID":1043028,"Name":"badadi 97","NumVillages":1,"Points":3283,"Rank":1482,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1043028","BestRank":1482,"BestRankAt":"2023-02-16T05:25:56.199167Z","MostPoints":3283,"MostPointsAt":"2023-02-16T05:25:56.199167Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910872Z","LastActivityAt":"2023-02-16T05:25:56.199167Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911757Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1483,"ScoreDef":35302,"RankSup":0,"ScoreSup":0,"RankTotal":1720,"ScoreTotal":35302,"ID":1044760,"Name":"Jatutuptup","NumVillages":1,"Points":400,"Rank":2071,"TribeID":159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1044760","BestRank":2015,"BestRankAt":"2023-02-16T05:25:48.910872Z","MostPoints":524,"MostPointsAt":"2023-02-16T05:25:48.910873Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910872Z","LastActivityAt":"2023-02-16T05:25:48.910873Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911761Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1453,"ScoreAtt":3043,"RankDef":1789,"ScoreDef":12582,"RankSup":1061,"ScoreSup":2601,"RankTotal":1882,"ScoreTotal":18226,"ID":1049851,"Name":"Strojgniew","NumVillages":4,"Points":18838,"Rank":936,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1049851","BestRank":936,"BestRankAt":"2023-02-16T05:25:56.199168Z","MostPoints":18838,"MostPointsAt":"2023-02-16T05:25:48.910873Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910873Z","LastActivityAt":"2023-02-16T05:25:48.910873Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911762Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":654,"ScoreAtt":156288,"RankDef":349,"ScoreDef":885260,"RankSup":0,"ScoreSup":0,"RankTotal":605,"ScoreTotal":1041548,"ID":1078121,"Name":"Damian283","NumVillages":11,"Points":79159,"Rank":586,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1078121","BestRank":586,"BestRankAt":"2023-02-16T05:25:56.199169Z","MostPoints":79159,"MostPointsAt":"2023-02-16T05:25:56.199169Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910874Z","LastActivityAt":"2023-02-16T05:25:56.199169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911765Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1846,"ScoreAtt":111,"RankDef":1219,"ScoreDef":68604,"RankSup":1053,"ScoreSup":2732,"RankTotal":1491,"ScoreTotal":71447,"ID":1079223,"Name":"elgordo","NumVillages":1,"Points":1708,"Rank":1701,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1079223","BestRank":1701,"BestRankAt":"2023-02-16T05:25:56.199169Z","MostPoints":1708,"MostPointsAt":"2023-02-16T05:25:56.199169Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910874Z","LastActivityAt":"2023-02-16T05:25:56.199169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91177Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1085802,"Name":"golem6","NumVillages":1,"Points":26,"Rank":2597,"TribeID":1791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1085802","BestRank":2597,"BestRankAt":"2023-02-16T05:25:56.19917Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910875Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910875Z","LastActivityAt":"2023-02-16T05:25:48.910875Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911771Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":404,"ScoreAtt":578456,"RankDef":184,"ScoreDef":2050440,"RankSup":202,"ScoreSup":926550,"RankTotal":252,"ScoreTotal":3555446,"ID":1086351,"Name":"plls","NumVillages":54,"Points":296518,"Rank":356,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1086351","BestRank":356,"BestRankAt":"2023-02-16T05:25:56.19917Z","MostPoints":296518,"MostPointsAt":"2023-02-16T05:25:56.19917Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:48.910875Z","LastActivityAt":"2023-02-16T05:25:56.19917Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911774Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1323,"ScoreAtt":5724,"RankDef":1075,"ScoreDef":100624,"RankSup":973,"ScoreSup":6161,"RankTotal":1346,"ScoreTotal":112509,"ID":1095271,"Name":"HUBERTS111","NumVillages":1,"Points":2022,"Rank":1649,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1095271","BestRank":1649,"BestRankAt":"2023-02-16T05:25:56.199171Z","MostPoints":2022,"MostPointsAt":"2023-02-16T05:25:56.199171Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910876Z","LastActivityAt":"2023-02-16T05:25:56.199171Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911777Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":620,"ScoreAtt":190423,"RankDef":156,"ScoreDef":2481698,"RankSup":470,"ScoreSup":198215,"RankTotal":305,"ScoreTotal":2870336,"ID":1095489,"Name":"Mikares","NumVillages":4,"Points":4207,"Rank":1383,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1095489","BestRank":1383,"BestRankAt":"2023-02-16T05:25:56.199171Z","MostPoints":4207,"MostPointsAt":"2023-02-16T05:25:56.199171Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910876Z","LastActivityAt":"2023-02-16T05:25:56.199171Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91178Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":724,"ScoreAtt":112842,"RankDef":1170,"ScoreDef":79117,"RankSup":500,"ScoreSup":173244,"RankTotal":944,"ScoreTotal":365203,"ID":1096254,"Name":"marmag","NumVillages":11,"Points":81183,"Rank":578,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1096254","BestRank":578,"BestRankAt":"2023-02-16T05:25:56.199172Z","MostPoints":81183,"MostPointsAt":"2023-02-16T05:25:56.199172Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910877Z","LastActivityAt":"2023-02-16T05:25:56.199172Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911781Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1964,"ScoreDef":5729,"RankSup":0,"ScoreSup":0,"RankTotal":2095,"ScoreTotal":5729,"ID":1106220,"Name":"mon-men","NumVillages":1,"Points":1472,"Rank":1740,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1106220","BestRank":1740,"BestRankAt":"2023-02-16T05:25:56.199172Z","MostPoints":1472,"MostPointsAt":"2023-02-16T05:25:48.910877Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910877Z","LastActivityAt":"2023-02-16T05:25:48.910878Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911784Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2344,"ScoreDef":52,"RankSup":0,"ScoreSup":0,"RankTotal":2437,"ScoreTotal":52,"ID":1132842,"Name":"bylo21","NumVillages":1,"Points":199,"Rank":2272,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1132842","BestRank":2272,"BestRankAt":"2023-02-16T05:25:56.199173Z","MostPoints":199,"MostPointsAt":"2023-02-16T05:25:48.910878Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910878Z","LastActivityAt":"2023-02-16T05:25:48.910878Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911787Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1153934,"Name":"Butcher*","NumVillages":1,"Points":32,"Rank":2584,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1153934","BestRank":2584,"BestRankAt":"2023-02-16T05:25:56.199173Z","MostPoints":32,"MostPointsAt":"2023-02-16T05:25:48.910879Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910878Z","LastActivityAt":"2023-02-16T05:25:48.910879Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91179Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1273,"ScoreAtt":7102,"RankDef":1604,"ScoreDef":25384,"RankSup":0,"ScoreSup":0,"RankTotal":1747,"ScoreTotal":32486,"ID":1164249,"Name":"kukiz70","NumVillages":3,"Points":11249,"Rank":1053,"TribeID":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1164249","BestRank":1053,"BestRankAt":"2023-02-16T05:25:56.199174Z","MostPoints":11249,"MostPointsAt":"2023-02-16T05:25:56.199174Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:56.199174Z","LastActivityAt":"2023-02-16T05:25:56.199174Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1910,"ScoreAtt":36,"RankDef":1290,"ScoreDef":58461,"RankSup":0,"ScoreSup":0,"RankTotal":1560,"ScoreTotal":58497,"ID":1170102,"Name":"miro2558","NumVillages":1,"Points":204,"Rank":2265,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1170102","BestRank":2265,"BestRankAt":"2023-02-16T05:25:56.199174Z","MostPoints":204,"MostPointsAt":"2023-02-16T05:25:56.199174Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91088Z","LastActivityAt":"2023-02-16T05:25:56.199175Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911795Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":652,"ScoreAtt":156438,"RankDef":1625,"ScoreDef":24100,"RankSup":1413,"ScoreSup":1,"RankTotal":1186,"ScoreTotal":180539,"ID":1205898,"Name":"bolopb","NumVillages":33,"Points":201999,"Rank":415,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1205898","BestRank":415,"BestRankAt":"2023-02-16T05:25:48.91088Z","MostPoints":201999,"MostPointsAt":"2023-02-16T05:25:56.199175Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:48.91088Z","LastActivityAt":"2023-02-16T05:25:56.199175Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1920,"ScoreDef":6898,"RankSup":0,"ScoreSup":0,"RankTotal":2061,"ScoreTotal":6898,"ID":1227022,"Name":"Ɓukasz80","NumVillages":1,"Points":1055,"Rank":1833,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1227022","BestRank":1833,"BestRankAt":"2023-02-16T05:25:56.199175Z","MostPoints":1055,"MostPointsAt":"2023-02-16T05:25:56.199176Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910881Z","LastActivityAt":"2023-02-16T05:25:56.199176Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1594,"ScoreAtt":1273,"RankDef":1698,"ScoreDef":18722,"RankSup":1215,"ScoreSup":287,"RankTotal":1864,"ScoreTotal":20282,"ID":1227918,"Name":"leslawos","NumVillages":2,"Points":9789,"Rank":1089,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1227918","BestRank":1089,"BestRankAt":"2023-02-16T05:25:56.199176Z","MostPoints":9789,"MostPointsAt":"2023-02-16T05:25:56.199176Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910881Z","LastActivityAt":"2023-02-16T05:25:56.199176Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911804Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":66,"ScoreAtt":4330135,"RankDef":467,"ScoreDef":579861,"RankSup":43,"ScoreSup":3695279,"RankTotal":93,"ScoreTotal":8605275,"ID":1238300,"Name":"messi1996","NumVillages":314,"Points":2617826,"Rank":21,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1238300","BestRank":21,"BestRankAt":"2023-02-16T05:25:48.910882Z","MostPoints":2617826,"MostPointsAt":"2023-02-16T05:25:56.199177Z","MostVillages":314,"MostVillagesAt":"2023-02-16T05:25:56.199177Z","LastActivityAt":"2023-02-16T05:25:56.199177Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1657,"ScoreAtt":753,"RankDef":1375,"ScoreDef":47680,"RankSup":0,"ScoreSup":0,"RankTotal":1617,"ScoreTotal":48433,"ID":1260088,"Name":"czorny-81","NumVillages":1,"Points":513,"Rank":2006,"TribeID":1657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1260088","BestRank":2006,"BestRankAt":"2023-02-16T05:25:56.199177Z","MostPoints":513,"MostPointsAt":"2023-02-16T05:25:56.199177Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910882Z","LastActivityAt":"2023-02-16T05:25:56.199177Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911813Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":563,"ScoreAtt":258364,"RankDef":490,"ScoreDef":544257,"RankSup":538,"ScoreSup":137355,"RankTotal":639,"ScoreTotal":939976,"ID":1267913,"Name":"19Adrian90","NumVillages":8,"Points":25018,"Rank":862,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1267913","BestRank":862,"BestRankAt":"2023-02-16T05:25:56.199178Z","MostPoints":25018,"MostPointsAt":"2023-02-16T05:25:56.199178Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:56.199178Z","LastActivityAt":"2023-02-16T05:25:56.199178Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911814Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1275,"ScoreAtt":6987,"RankDef":803,"ScoreDef":212998,"RankSup":1231,"ScoreSup":207,"RankTotal":1108,"ScoreTotal":220192,"ID":1270916,"Name":"*Walkiria","NumVillages":5,"Points":37773,"Rank":755,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1270916","BestRank":755,"BestRankAt":"2023-02-16T05:25:56.199178Z","MostPoints":37773,"MostPointsAt":"2023-02-16T05:25:56.199178Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.910883Z","LastActivityAt":"2023-02-16T05:25:56.199178Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911818Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1478,"ScoreAtt":2578,"RankDef":1284,"ScoreDef":58951,"RankSup":1390,"ScoreSup":2,"RankTotal":1536,"ScoreTotal":61531,"ID":1276665,"Name":"krowabojowa","NumVillages":7,"Points":24253,"Rank":874,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1276665","BestRank":874,"BestRankAt":"2023-02-16T05:25:56.199179Z","MostPoints":24253,"MostPointsAt":"2023-02-16T05:25:56.199179Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.910884Z","LastActivityAt":"2023-02-16T05:25:56.199179Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911822Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1524,"ScoreAtt":2083,"RankDef":1427,"ScoreDef":39858,"RankSup":0,"ScoreSup":0,"RankTotal":1661,"ScoreTotal":41941,"ID":1284796,"Name":"joybook","NumVillages":1,"Points":681,"Rank":1937,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1284796","BestRank":1937,"BestRankAt":"2023-02-16T05:25:56.199179Z","MostPoints":681,"MostPointsAt":"2023-02-16T05:25:56.199179Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910885Z","LastActivityAt":"2023-02-16T05:25:56.19918Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911824Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1475,"ScoreAtt":2647,"RankDef":792,"ScoreDef":220862,"RankSup":0,"ScoreSup":0,"RankTotal":1104,"ScoreTotal":223509,"ID":1285441,"Name":"markus72","NumVillages":0,"Points":0,"Rank":2860,"TribeID":1431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1285441","BestRank":2860,"BestRankAt":"2023-02-16T05:25:56.19918Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910885Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910885Z","LastActivityAt":"2023-02-16T05:25:48.910885Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911829Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1613,"ScoreAtt":1081,"RankDef":1155,"ScoreDef":81894,"RankSup":912,"ScoreSup":10264,"RankTotal":1414,"ScoreTotal":93239,"ID":1286008,"Name":"perfekcja","NumVillages":1,"Points":4000,"Rank":1400,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1286008","BestRank":1400,"BestRankAt":"2023-02-16T05:25:56.19918Z","MostPoints":4000,"MostPointsAt":"2023-02-16T05:25:56.19918Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910886Z","LastActivityAt":"2023-02-16T05:25:56.199181Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911833Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1304915,"Name":"Hasyp","NumVillages":1,"Points":532,"Rank":1991,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1304915","BestRank":1991,"BestRankAt":"2023-02-16T05:25:56.199181Z","MostPoints":532,"MostPointsAt":"2023-02-16T05:25:56.199181Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910886Z","LastActivityAt":"2023-02-16T05:25:56.199181Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911837Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1961,"ScoreDef":5796,"RankSup":0,"ScoreSup":0,"RankTotal":2093,"ScoreTotal":5796,"ID":1322622,"Name":"apysia","NumVillages":1,"Points":200,"Rank":2270,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1322622","BestRank":2270,"BestRankAt":"2023-02-16T05:25:56.199181Z","MostPoints":200,"MostPointsAt":"2023-02-16T05:25:48.910887Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910887Z","LastActivityAt":"2023-02-16T05:25:48.910887Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1350,"ScoreAtt":5193,"RankDef":1547,"ScoreDef":29353,"RankSup":0,"ScoreSup":0,"RankTotal":1724,"ScoreTotal":34546,"ID":1323424,"Name":"szymekXIV","NumVillages":5,"Points":17074,"Rank":967,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1323424","BestRank":967,"BestRankAt":"2023-02-16T05:25:56.199182Z","MostPoints":17074,"MostPointsAt":"2023-02-16T05:25:56.199182Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.910887Z","LastActivityAt":"2023-02-16T05:25:56.199182Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":342,"ScoreDef":901713,"RankSup":0,"ScoreSup":0,"RankTotal":652,"ScoreTotal":901713,"ID":1347385,"Name":"Zephyr II","NumVillages":1,"Points":4323,"Rank":1374,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1347385","BestRank":1374,"BestRankAt":"2023-02-16T05:25:56.199182Z","MostPoints":4323,"MostPointsAt":"2023-02-16T05:25:56.199183Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910888Z","LastActivityAt":"2023-02-16T05:25:56.199183Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1583,"ScoreAtt":1342,"RankDef":1605,"ScoreDef":25361,"RankSup":1167,"ScoreSup":681,"RankTotal":1794,"ScoreTotal":27384,"ID":1350456,"Name":"Jaruga007","NumVillages":1,"Points":198,"Rank":2274,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1350456","BestRank":2274,"BestRankAt":"2023-02-16T05:25:56.199183Z","MostPoints":198,"MostPointsAt":"2023-02-16T05:25:56.199183Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910888Z","LastActivityAt":"2023-02-16T05:25:56.199183Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1906,"ScoreDef":7469,"RankSup":1392,"ScoreSup":2,"RankTotal":2050,"ScoreTotal":7471,"ID":1371998,"Name":"pyari","NumVillages":1,"Points":2059,"Rank":1645,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1371998","BestRank":1645,"BestRankAt":"2023-02-16T05:25:56.199184Z","MostPoints":2059,"MostPointsAt":"2023-02-16T05:25:56.199184Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910889Z","LastActivityAt":"2023-02-16T05:25:56.199184Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1384222,"Name":"Gruby0905","NumVillages":1,"Points":515,"Rank":2004,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1384222","BestRank":2004,"BestRankAt":"2023-02-16T05:25:56.199184Z","MostPoints":515,"MostPointsAt":"2023-02-16T05:25:48.91089Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91089Z","LastActivityAt":"2023-02-16T05:25:48.91089Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1340,"ScoreDef":52241,"RankSup":0,"ScoreSup":0,"RankTotal":1593,"ScoreTotal":52241,"ID":1406042,"Name":"erielle","NumVillages":1,"Points":8516,"Rank":1131,"TribeID":365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1406042","BestRank":1131,"BestRankAt":"2023-02-16T05:25:56.199185Z","MostPoints":8516,"MostPointsAt":"2023-02-16T05:25:56.199185Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91089Z","LastActivityAt":"2023-02-16T05:25:56.199185Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":215,"ScoreAtt":1430195,"RankDef":1205,"ScoreDef":71681,"RankSup":787,"ScoreSup":27577,"RankTotal":491,"ScoreTotal":1529453,"ID":1415009,"Name":"sony911","NumVillages":195,"Points":1395801,"Rank":85,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1415009","BestRank":85,"BestRankAt":"2023-02-16T05:25:56.199185Z","MostPoints":1395801,"MostPointsAt":"2023-02-16T05:25:56.199185Z","MostVillages":195,"MostVillagesAt":"2023-02-16T05:25:56.199185Z","LastActivityAt":"2023-02-16T05:25:56.199185Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":960,"ScoreAtt":37085,"RankDef":1738,"ScoreDef":16413,"RankSup":1304,"ScoreSup":21,"RankTotal":1589,"ScoreTotal":53519,"ID":1415665,"Name":"White_Lady88","NumVillages":0,"Points":0,"Rank":2861,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1415665","BestRank":2861,"BestRankAt":"2023-02-16T05:25:56.199186Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910891Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910891Z","LastActivityAt":"2023-02-16T05:25:48.910891Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":390,"ScoreAtt":605341,"RankDef":493,"ScoreDef":536312,"RankSup":299,"ScoreSup":529314,"RankTotal":466,"ScoreTotal":1670967,"ID":1424656,"Name":"Vecci","NumVillages":98,"Points":475967,"Rank":276,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1424656","BestRank":276,"BestRankAt":"2023-02-16T05:25:56.199186Z","MostPoints":475967,"MostPointsAt":"2023-02-16T05:25:56.199186Z","MostVillages":98,"MostVillagesAt":"2023-02-16T05:25:56.199186Z","LastActivityAt":"2023-02-16T05:25:56.199187Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":24,"ScoreAtt":7421869,"RankDef":71,"ScoreDef":4848432,"RankSup":113,"ScoreSup":1968371,"RankTotal":57,"ScoreTotal":14238672,"ID":1434753,"Name":"Ryba9431 x Diil3r","NumVillages":87,"Points":855455,"Rank":170,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1434753","BestRank":161,"BestRankAt":"2023-02-16T05:25:48.910892Z","MostPoints":915411,"MostPointsAt":"2023-02-16T05:25:48.910892Z","MostVillages":93,"MostVillagesAt":"2023-02-16T05:25:48.910892Z","LastActivityAt":"2023-02-16T05:25:56.199187Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1576,"ScoreAtt":1454,"RankDef":666,"ScoreDef":303399,"RankSup":1021,"ScoreSup":3811,"RankTotal":998,"ScoreTotal":308664,"ID":1450352,"Name":"PACYFICA","NumVillages":1,"Points":629,"Rank":1960,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1450352","BestRank":1960,"BestRankAt":"2023-02-16T05:25:56.199187Z","MostPoints":629,"MostPointsAt":"2023-02-16T05:25:56.199188Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910893Z","LastActivityAt":"2023-02-16T05:25:56.199188Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":876,"ScoreDef":179391,"RankSup":0,"ScoreSup":0,"RankTotal":1189,"ScoreTotal":179391,"ID":1454871,"Name":"gandalffa","NumVillages":1,"Points":1374,"Rank":1760,"TribeID":413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1454871","BestRank":1760,"BestRankAt":"2023-02-16T05:25:56.199188Z","MostPoints":1374,"MostPointsAt":"2023-02-16T05:25:48.910893Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910893Z","LastActivityAt":"2023-02-16T05:25:48.910894Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1975,"ScoreDef":5389,"RankSup":0,"ScoreSup":0,"RankTotal":2103,"ScoreTotal":5389,"ID":1493696,"Name":"roooob","NumVillages":1,"Points":3883,"Rank":1410,"TribeID":1786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1493696","BestRank":1410,"BestRankAt":"2023-02-16T05:25:56.199188Z","MostPoints":3883,"MostPointsAt":"2023-02-16T05:25:48.910894Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910894Z","LastActivityAt":"2023-02-16T05:25:48.910894Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":6,"ScoreAtt":15229986,"RankDef":98,"ScoreDef":3572946,"RankSup":28,"ScoreSup":4780202,"RankTotal":22,"ScoreTotal":23583134,"ID":1497168,"Name":"Krulowiec Wielki","NumVillages":236,"Points":2268558,"Rank":38,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1497168","BestRank":37,"BestRankAt":"2023-02-16T05:25:48.910894Z","MostPoints":2268558,"MostPointsAt":"2023-02-16T05:25:56.199189Z","MostVillages":236,"MostVillagesAt":"2023-02-16T05:25:48.910894Z","LastActivityAt":"2023-02-16T05:25:56.199189Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":836,"ScoreDef":194017,"RankSup":1082,"ScoreSup":2161,"RankTotal":1141,"ScoreTotal":196178,"ID":1510264,"Name":"Ɓokietek II","NumVillages":1,"Points":4104,"Rank":1391,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1510264","BestRank":1391,"BestRankAt":"2023-02-16T05:25:56.199189Z","MostPoints":4104,"MostPointsAt":"2023-02-16T05:25:48.910895Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910895Z","LastActivityAt":"2023-02-16T05:25:48.910895Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2294,"ScoreDef":231,"RankSup":0,"ScoreSup":0,"RankTotal":2376,"ScoreTotal":231,"ID":1511101,"Name":"rafi041072","NumVillages":1,"Points":559,"Rank":1987,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1511101","BestRank":1987,"BestRankAt":"2023-02-16T05:25:56.19919Z","MostPoints":559,"MostPointsAt":"2023-02-16T05:25:56.19919Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910896Z","LastActivityAt":"2023-02-16T05:25:56.19919Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1517450,"Name":"Ankalagon Czarny","NumVillages":1,"Points":280,"Rank":2179,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1517450","BestRank":2179,"BestRankAt":"2023-02-16T05:25:56.19919Z","MostPoints":280,"MostPointsAt":"2023-02-16T05:25:56.199191Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910896Z","LastActivityAt":"2023-02-16T05:25:56.199191Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1886,"ScoreAtt":51,"RankDef":1286,"ScoreDef":58753,"RankSup":0,"ScoreSup":0,"RankTotal":1558,"ScoreTotal":58804,"ID":1525273,"Name":"mrufki komandoski","NumVillages":1,"Points":197,"Rank":2279,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1525273","BestRank":2279,"BestRankAt":"2023-02-16T05:25:56.199191Z","MostPoints":197,"MostPointsAt":"2023-02-16T05:25:48.910897Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910897Z","LastActivityAt":"2023-02-16T05:25:48.910897Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":220,"ScoreAtt":1343958,"RankDef":1437,"ScoreDef":38943,"RankSup":68,"ScoreSup":2861273,"RankTotal":222,"ScoreTotal":4244174,"ID":1536231,"Name":"vip999","NumVillages":103,"Points":855860,"Rank":169,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1536231","BestRank":169,"BestRankAt":"2023-02-16T05:25:56.199191Z","MostPoints":855860,"MostPointsAt":"2023-02-16T05:25:56.199192Z","MostVillages":103,"MostVillagesAt":"2023-02-16T05:25:48.910897Z","LastActivityAt":"2023-02-16T05:25:56.199192Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91193Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":79,"ScoreAtt":3985176,"RankDef":356,"ScoreDef":873016,"RankSup":226,"ScoreSup":785349,"RankTotal":162,"ScoreTotal":5643541,"ID":1536625,"Name":"Spojler201","NumVillages":108,"Points":884241,"Rank":165,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1536625","BestRank":165,"BestRankAt":"2023-02-16T05:25:56.199192Z","MostPoints":884241,"MostPointsAt":"2023-02-16T05:25:56.199192Z","MostVillages":108,"MostVillagesAt":"2023-02-16T05:25:56.199192Z","LastActivityAt":"2023-02-16T05:25:56.199192Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2028,"ScoreDef":3966,"RankSup":0,"ScoreSup":0,"RankTotal":2156,"ScoreTotal":3966,"ID":1553481,"Name":"STALLON327","NumVillages":1,"Points":2112,"Rank":1633,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1553481","BestRank":1633,"BestRankAt":"2023-02-16T05:25:56.199193Z","MostPoints":2112,"MostPointsAt":"2023-02-16T05:25:56.199193Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910898Z","LastActivityAt":"2023-02-16T05:25:56.199193Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":201,"ScoreAtt":1567485,"RankDef":177,"ScoreDef":2082119,"RankSup":219,"ScoreSup":817343,"RankTotal":214,"ScoreTotal":4466947,"ID":1553947,"Name":"Tryfi","NumVillages":31,"Points":299146,"Rank":354,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1553947","BestRank":340,"BestRankAt":"2023-02-16T05:25:48.910899Z","MostPoints":329819,"MostPointsAt":"2023-02-16T05:25:48.910899Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:48.910899Z","LastActivityAt":"2023-02-16T05:25:48.910899Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":365,"ScoreAtt":658662,"RankDef":759,"ScoreDef":237156,"RankSup":400,"ScoreSup":316564,"RankTotal":562,"ScoreTotal":1212382,"ID":1563417,"Name":"DilerPL","NumVillages":11,"Points":94811,"Rank":549,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1563417","BestRank":549,"BestRankAt":"2023-02-16T05:25:56.199194Z","MostPoints":94811,"MostPointsAt":"2023-02-16T05:25:48.9109Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910899Z","LastActivityAt":"2023-02-16T05:25:48.9109Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1972,"ScoreDef":5461,"RankSup":0,"ScoreSup":0,"RankTotal":2101,"ScoreTotal":5461,"ID":1568700,"Name":"wilku1000","NumVillages":1,"Points":2804,"Rank":1545,"TribeID":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1568700","BestRank":1545,"BestRankAt":"2023-02-16T05:25:56.199194Z","MostPoints":2804,"MostPointsAt":"2023-02-16T05:25:56.199194Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.9109Z","LastActivityAt":"2023-02-16T05:25:56.199194Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2125,"ScoreDef":2078,"RankSup":0,"ScoreSup":0,"RankTotal":2222,"ScoreTotal":2078,"ID":1568908,"Name":"MIRLEON","NumVillages":1,"Points":291,"Rank":2162,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1568908","BestRank":2162,"BestRankAt":"2023-02-16T05:25:56.199195Z","MostPoints":291,"MostPointsAt":"2023-02-16T05:25:48.910901Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910901Z","LastActivityAt":"2023-02-16T05:25:48.910901Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1922,"ScoreAtt":29,"RankDef":1310,"ScoreDef":55835,"RankSup":0,"ScoreSup":0,"RankTotal":1571,"ScoreTotal":55864,"ID":1578509,"Name":"arek1s","NumVillages":1,"Points":8119,"Rank":1150,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1578509","BestRank":1150,"BestRankAt":"2023-02-16T05:25:56.199195Z","MostPoints":8119,"MostPointsAt":"2023-02-16T05:25:48.910901Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910901Z","LastActivityAt":"2023-02-16T05:25:48.910901Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2259,"ScoreDef":434,"RankSup":0,"ScoreSup":0,"RankTotal":2343,"ScoreTotal":434,"ID":1581890,"Name":"Argeen","NumVillages":1,"Points":847,"Rank":1888,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1581890","BestRank":1888,"BestRankAt":"2023-02-16T05:25:56.199196Z","MostPoints":847,"MostPointsAt":"2023-02-16T05:25:48.910902Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910902Z","LastActivityAt":"2023-02-16T05:25:48.910902Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91195Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":527,"ScoreAtt":313184,"RankDef":1496,"ScoreDef":33997,"RankSup":416,"ScoreSup":283904,"RankTotal":766,"ScoreTotal":631085,"ID":1601917,"Name":"asiok79","NumVillages":103,"Points":653348,"Rank":217,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1601917","BestRank":217,"BestRankAt":"2023-02-16T05:25:56.199196Z","MostPoints":653348,"MostPointsAt":"2023-02-16T05:25:56.199196Z","MostVillages":103,"MostVillagesAt":"2023-02-16T05:25:56.199196Z","LastActivityAt":"2023-02-16T05:25:56.199196Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1448,"ScoreAtt":3112,"RankDef":991,"ScoreDef":128503,"RankSup":588,"ScoreSup":103635,"RankTotal":1075,"ScoreTotal":235250,"ID":1606425,"Name":"Sullivan IV","NumVillages":4,"Points":42012,"Rank":732,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1606425","BestRank":732,"BestRankAt":"2023-02-16T05:25:48.910903Z","MostPoints":42012,"MostPointsAt":"2023-02-16T05:25:48.910903Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910903Z","LastActivityAt":"2023-02-16T05:25:48.910903Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":638,"ScoreAtt":170636,"RankDef":465,"ScoreDef":582629,"RankSup":1193,"ScoreSup":398,"RankTotal":699,"ScoreTotal":753663,"ID":1608563,"Name":"loj99","NumVillages":0,"Points":0,"Rank":2862,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1608563","BestRank":2862,"BestRankAt":"2023-02-16T05:25:56.199197Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910903Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910903Z","LastActivityAt":"2023-02-16T05:25:48.910903Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1154,"ScoreAtt":13065,"RankDef":926,"ScoreDef":154613,"RankSup":842,"ScoreSup":16885,"RankTotal":1177,"ScoreTotal":184563,"ID":1609607,"Name":"hydra","NumVillages":1,"Points":642,"Rank":1952,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1609607","BestRank":1952,"BestRankAt":"2023-02-16T05:25:56.199198Z","MostPoints":642,"MostPointsAt":"2023-02-16T05:25:56.199198Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910904Z","LastActivityAt":"2023-02-16T05:25:56.199198Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1377,"ScoreAtt":4538,"RankDef":1221,"ScoreDef":68381,"RankSup":0,"ScoreSup":0,"RankTotal":1480,"ScoreTotal":72919,"ID":1610267,"Name":"Jar0o","NumVillages":1,"Points":115,"Rank":2434,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1610267","BestRank":2434,"BestRankAt":"2023-02-16T05:25:56.199198Z","MostPoints":115,"MostPointsAt":"2023-02-16T05:25:48.910904Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910904Z","LastActivityAt":"2023-02-16T05:25:48.910905Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1626626,"Name":"jedyny1taki","NumVillages":1,"Points":32,"Rank":2585,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1626626","BestRank":2585,"BestRankAt":"2023-02-16T05:25:56.199199Z","MostPoints":32,"MostPointsAt":"2023-02-16T05:25:48.910905Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910905Z","LastActivityAt":"2023-02-16T05:25:48.910905Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1179,"ScoreDef":76709,"RankSup":0,"ScoreSup":0,"RankTotal":1471,"ScoreTotal":76709,"ID":1631690,"Name":"kukus1946","NumVillages":1,"Points":2284,"Rank":1603,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1631690","BestRank":1603,"BestRankAt":"2023-02-16T05:25:56.199199Z","MostPoints":2284,"MostPointsAt":"2023-02-16T05:25:48.910906Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910905Z","LastActivityAt":"2023-02-16T05:25:48.910906Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2132,"ScoreDef":1946,"RankSup":0,"ScoreSup":0,"RankTotal":2232,"ScoreTotal":1946,"ID":1645835,"Name":"cƂopciec","NumVillages":0,"Points":0,"Rank":2863,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1645835","BestRank":2863,"BestRankAt":"2023-02-16T05:25:56.1992Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910906Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910906Z","LastActivityAt":"2023-02-16T05:25:48.910906Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1203,"ScoreDef":72134,"RankSup":0,"ScoreSup":0,"RankTotal":1487,"ScoreTotal":72134,"ID":1646837,"Name":"grek159","NumVillages":1,"Points":2492,"Rank":1577,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1646837","BestRank":1577,"BestRankAt":"2023-02-16T05:25:56.1992Z","MostPoints":2492,"MostPointsAt":"2023-02-16T05:25:56.1992Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910907Z","LastActivityAt":"2023-02-16T05:25:56.1992Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":895,"ScoreAtt":51827,"RankDef":1070,"ScoreDef":102226,"RankSup":1034,"ScoreSup":3286,"RankTotal":1234,"ScoreTotal":157339,"ID":1647052,"Name":"Peny25","NumVillages":10,"Points":45879,"Rank":711,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1647052","BestRank":710,"BestRankAt":"2023-02-16T05:25:48.910907Z","MostPoints":45879,"MostPointsAt":"2023-02-16T05:25:56.199201Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.910907Z","LastActivityAt":"2023-02-16T05:25:56.199201Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1665,"ScoreDef":20296,"RankSup":0,"ScoreSup":0,"RankTotal":1863,"ScoreTotal":20296,"ID":1668965,"Name":"Rychont","NumVillages":1,"Points":1091,"Rank":1823,"TribeID":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1668965","BestRank":1823,"BestRankAt":"2023-02-16T05:25:56.199201Z","MostPoints":1091,"MostPointsAt":"2023-02-16T05:25:48.910908Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910908Z","LastActivityAt":"2023-02-16T05:25:48.910908Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1173,"ScoreDef":78351,"RankSup":0,"ScoreSup":0,"RankTotal":1466,"ScoreTotal":78351,"ID":1669587,"Name":"Mateuszek023","NumVillages":1,"Points":998,"Rank":1848,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1669587","BestRank":1848,"BestRankAt":"2023-02-16T05:25:56.199202Z","MostPoints":998,"MostPointsAt":"2023-02-16T05:25:48.910908Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910908Z","LastActivityAt":"2023-02-16T05:25:48.910908Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2300,"ScoreDef":212,"RankSup":1140,"ScoreSup":1074,"RankTotal":2272,"ScoreTotal":1286,"ID":1675628,"Name":"Harmozabal","NumVillages":1,"Points":53,"Rank":2539,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1675628","BestRank":2539,"BestRankAt":"2023-02-16T05:25:56.199202Z","MostPoints":53,"MostPointsAt":"2023-02-16T05:25:48.910909Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910909Z","LastActivityAt":"2023-02-16T05:25:48.910909Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1684948,"Name":"robosm3352","NumVillages":1,"Points":108,"Rank":2445,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1684948","BestRank":2445,"BestRankAt":"2023-02-16T05:25:56.199203Z","MostPoints":108,"MostPointsAt":"2023-02-16T05:25:48.910909Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910909Z","LastActivityAt":"2023-02-16T05:25:48.910909Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1040,"ScoreDef":112417,"RankSup":0,"ScoreSup":0,"RankTotal":1347,"ScoreTotal":112417,"ID":1693936,"Name":"Bukson","NumVillages":7,"Points":29862,"Rank":819,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1693936","BestRank":815,"BestRankAt":"2023-02-16T05:25:48.91091Z","MostPoints":29862,"MostPointsAt":"2023-02-16T05:25:48.91091Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.91091Z","LastActivityAt":"2023-02-16T05:25:48.91091Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":863,"ScoreDef":183686,"RankSup":697,"ScoreSup":51277,"RankTotal":1078,"ScoreTotal":234963,"ID":1700145,"Name":"elew","NumVillages":1,"Points":2056,"Rank":1647,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1700145","BestRank":1647,"BestRankAt":"2023-02-16T05:25:56.199203Z","MostPoints":2056,"MostPointsAt":"2023-02-16T05:25:56.199204Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91091Z","LastActivityAt":"2023-02-16T05:25:56.199204Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.911998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":385,"ScoreAtt":611831,"RankDef":1336,"ScoreDef":52577,"RankSup":725,"ScoreSup":42124,"RankTotal":728,"ScoreTotal":706532,"ID":1715091,"Name":"podgrzybek brunatny","NumVillages":92,"Points":691782,"Rank":207,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1715091","BestRank":207,"BestRankAt":"2023-02-16T05:25:56.199204Z","MostPoints":691782,"MostPointsAt":"2023-02-16T05:25:56.199204Z","MostVillages":92,"MostVillagesAt":"2023-02-16T05:25:56.199204Z","LastActivityAt":"2023-02-16T05:25:56.199204Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":983,"ScoreAtt":33246,"RankDef":256,"ScoreDef":1455179,"RankSup":421,"ScoreSup":276081,"RankTotal":454,"ScoreTotal":1764506,"ID":1746216,"Name":"SzakuƂ23","NumVillages":10,"Points":63788,"Rank":639,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1746216","BestRank":639,"BestRankAt":"2023-02-16T05:25:56.199205Z","MostPoints":63788,"MostPointsAt":"2023-02-16T05:25:56.199205Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.910914Z","LastActivityAt":"2023-02-16T05:25:56.199205Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":882,"ScoreAtt":54675,"RankDef":1097,"ScoreDef":94275,"RankSup":0,"ScoreSup":0,"RankTotal":1247,"ScoreTotal":148950,"ID":1748180,"Name":"Mistrz444","NumVillages":0,"Points":0,"Rank":2864,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1748180","BestRank":2864,"BestRankAt":"2023-02-16T05:25:56.199205Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910915Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910914Z","LastActivityAt":"2023-02-16T05:25:48.910915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1748,"ScoreDef":15483,"RankSup":0,"ScoreSup":0,"RankTotal":1920,"ScoreTotal":15483,"ID":1757722,"Name":"Ludwik 3","NumVillages":1,"Points":175,"Rank":2320,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1757722","BestRank":2320,"BestRankAt":"2023-02-16T05:25:56.199206Z","MostPoints":175,"MostPointsAt":"2023-02-16T05:25:48.910915Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910915Z","LastActivityAt":"2023-02-16T05:25:48.910915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":464,"ScoreAtt":424257,"RankDef":161,"ScoreDef":2399236,"RankSup":802,"ScoreSup":24304,"RankTotal":308,"ScoreTotal":2847797,"ID":1767876,"Name":"Kenshipl","NumVillages":10,"Points":54269,"Rank":671,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1767876","BestRank":670,"BestRankAt":"2023-02-16T05:25:48.910915Z","MostPoints":54269,"MostPointsAt":"2023-02-16T05:25:48.910916Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.910916Z","LastActivityAt":"2023-02-16T05:25:48.910916Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1342,"ScoreAtt":5313,"RankDef":1411,"ScoreDef":41712,"RankSup":0,"ScoreSup":0,"RankTotal":1627,"ScoreTotal":47025,"ID":1775957,"Name":"Szczepan 1954","NumVillages":1,"Points":2637,"Rank":1562,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1775957","BestRank":1471,"BestRankAt":"2023-02-16T05:25:48.910916Z","MostPoints":3453,"MostPointsAt":"2023-02-16T05:25:48.910916Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910916Z","LastActivityAt":"2023-02-16T05:25:48.910916Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":333,"ScoreDef":974769,"RankSup":1315,"ScoreSup":16,"RankTotal":625,"ScoreTotal":974785,"ID":1782523,"Name":"piter357","NumVillages":1,"Points":6720,"Rank":1223,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1782523","BestRank":1223,"BestRankAt":"2023-02-16T05:25:56.199207Z","MostPoints":6720,"MostPointsAt":"2023-02-16T05:25:48.910917Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910917Z","LastActivityAt":"2023-02-16T05:25:48.910917Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2310,"ScoreDef":169,"RankSup":0,"ScoreSup":0,"RankTotal":2390,"ScoreTotal":169,"ID":1794060,"Name":"ten ktĂłry kroczy","NumVillages":1,"Points":121,"Rank":2419,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1794060","BestRank":2419,"BestRankAt":"2023-02-16T05:25:56.199207Z","MostPoints":121,"MostPointsAt":"2023-02-16T05:25:48.910917Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910917Z","LastActivityAt":"2023-02-16T05:25:48.910917Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":127,"ScoreAtt":2408774,"RankDef":886,"ScoreDef":174840,"RankSup":72,"ScoreSup":2822735,"RankTotal":171,"ScoreTotal":5406349,"ID":1804724,"Name":"szyymekk","NumVillages":72,"Points":702566,"Rank":205,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1804724","BestRank":205,"BestRankAt":"2023-02-16T05:25:56.199208Z","MostPoints":702566,"MostPointsAt":"2023-02-16T05:25:56.199208Z","MostVillages":72,"MostVillagesAt":"2023-02-16T05:25:48.910918Z","LastActivityAt":"2023-02-16T05:25:56.199208Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91202Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1038,"ScoreAtt":24601,"RankDef":368,"ScoreDef":823822,"RankSup":1161,"ScoreSup":792,"RankTotal":668,"ScoreTotal":849215,"ID":1809381,"Name":"Wiesiek19","NumVillages":1,"Points":368,"Rank":2099,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1809381","BestRank":2099,"BestRankAt":"2023-02-16T05:25:56.199209Z","MostPoints":368,"MostPointsAt":"2023-02-16T05:25:56.199209Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910918Z","LastActivityAt":"2023-02-16T05:25:56.199209Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1380,"ScoreAtt":4520,"RankDef":1243,"ScoreDef":63986,"RankSup":1345,"ScoreSup":6,"RankTotal":1505,"ScoreTotal":68512,"ID":1809943,"Name":"wiech17","NumVillages":1,"Points":867,"Rank":1885,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1809943","BestRank":1885,"BestRankAt":"2023-02-16T05:25:56.199209Z","MostPoints":867,"MostPointsAt":"2023-02-16T05:25:48.910919Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910919Z","LastActivityAt":"2023-02-16T05:25:48.910919Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912023Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":735,"ScoreAtt":109095,"RankDef":1812,"ScoreDef":11450,"RankSup":1101,"ScoreSup":1777,"RankTotal":1319,"ScoreTotal":122322,"ID":1827485,"Name":"muflon1922","NumVillages":1,"Points":376,"Rank":2093,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1827485","BestRank":2093,"BestRankAt":"2023-02-16T05:25:56.19921Z","MostPoints":376,"MostPointsAt":"2023-02-16T05:25:56.19921Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910919Z","LastActivityAt":"2023-02-16T05:25:56.19921Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912026Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":310,"ScoreAtt":883860,"RankDef":124,"ScoreDef":3119376,"RankSup":424,"ScoreSup":261766,"RankTotal":221,"ScoreTotal":4265002,"ID":1830149,"Name":"zbyszek2609","NumVillages":26,"Points":194317,"Rank":422,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1830149","BestRank":422,"BestRankAt":"2023-02-16T05:25:48.91092Z","MostPoints":194317,"MostPointsAt":"2023-02-16T05:25:56.19921Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:48.91092Z","LastActivityAt":"2023-02-16T05:25:56.19921Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1464,"ScoreDef":36775,"RankSup":0,"ScoreSup":0,"RankTotal":1708,"ScoreTotal":36775,"ID":1831874,"Name":"denver72","NumVillages":0,"Points":0,"Rank":2865,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1831874","BestRank":2865,"BestRankAt":"2023-02-16T05:25:56.199211Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910921Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910921Z","LastActivityAt":"2023-02-16T05:25:48.910921Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912029Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1851,"ScoreAtt":100,"RankDef":1636,"ScoreDef":23222,"RankSup":1321,"ScoreSup":14,"RankTotal":1830,"ScoreTotal":23336,"ID":1861962,"Name":"Karl 132","NumVillages":2,"Points":5266,"Rank":1306,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1861962","BestRank":1306,"BestRankAt":"2023-02-16T05:25:56.199211Z","MostPoints":5266,"MostPointsAt":"2023-02-16T05:25:48.910921Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910921Z","LastActivityAt":"2023-02-16T05:25:48.910921Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1566,"ScoreAtt":1565,"RankDef":1709,"ScoreDef":17648,"RankSup":1303,"ScoreSup":21,"RankTotal":1874,"ScoreTotal":19234,"ID":1867161,"Name":"snake0","NumVillages":7,"Points":29065,"Rank":828,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1867161","BestRank":824,"BestRankAt":"2023-02-16T05:25:48.910922Z","MostPoints":29065,"MostPointsAt":"2023-02-16T05:25:56.199212Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.910922Z","LastActivityAt":"2023-02-16T05:25:56.199212Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":953,"ScoreDef":144074,"RankSup":0,"ScoreSup":0,"RankTotal":1257,"ScoreTotal":144074,"ID":1867410,"Name":"Vi-vali","NumVillages":1,"Points":236,"Rank":2225,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1867410","BestRank":2225,"BestRankAt":"2023-02-16T05:25:56.199212Z","MostPoints":236,"MostPointsAt":"2023-02-16T05:25:56.199212Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910922Z","LastActivityAt":"2023-02-16T05:25:56.199212Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1234,"ScoreAtt":8679,"RankDef":1468,"ScoreDef":36313,"RankSup":1313,"ScoreSup":17,"RankTotal":1639,"ScoreTotal":45009,"ID":1889913,"Name":"Hanah1","NumVillages":1,"Points":230,"Rank":2230,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1889913","BestRank":2230,"BestRankAt":"2023-02-16T05:25:56.199213Z","MostPoints":230,"MostPointsAt":"2023-02-16T05:25:56.199213Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910923Z","LastActivityAt":"2023-02-16T05:25:56.199213Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912039Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1312,"ScoreAtt":6017,"RankDef":425,"ScoreDef":674775,"RankSup":1121,"ScoreSup":1384,"RankTotal":737,"ScoreTotal":682176,"ID":1895081,"Name":"Najemnik full light","NumVillages":6,"Points":21274,"Rank":902,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1895081","BestRank":893,"BestRankAt":"2023-02-16T05:25:48.910923Z","MostPoints":21764,"MostPointsAt":"2023-02-16T05:25:48.910923Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.910923Z","LastActivityAt":"2023-02-16T05:25:48.910923Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":573,"ScoreAtt":247673,"RankDef":1149,"ScoreDef":84449,"RankSup":341,"ScoreSup":426037,"RankTotal":697,"ScoreTotal":758159,"ID":1900364,"Name":"Rublow","NumVillages":33,"Points":226329,"Rank":398,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1900364","BestRank":395,"BestRankAt":"2023-02-16T05:25:48.910924Z","MostPoints":226329,"MostPointsAt":"2023-02-16T05:25:48.910924Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:48.910924Z","LastActivityAt":"2023-02-16T05:25:48.910924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":974,"ScoreAtt":34008,"RankDef":2058,"ScoreDef":3356,"RankSup":0,"ScoreSup":0,"RankTotal":1701,"ScoreTotal":37364,"ID":1924718,"Name":".o0krychu0o.","NumVillages":5,"Points":7067,"Rank":1205,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1924718","BestRank":1205,"BestRankAt":"2023-02-16T05:25:56.199214Z","MostPoints":7067,"MostPointsAt":"2023-02-16T05:25:48.910924Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.910924Z","LastActivityAt":"2023-02-16T05:25:48.910925Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912045Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":675,"ScoreDef":296058,"RankSup":0,"ScoreSup":0,"RankTotal":1008,"ScoreTotal":296058,"ID":1945202,"Name":"Adrianzaq12wsx","NumVillages":1,"Points":26,"Rank":2598,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1945202","BestRank":2598,"BestRankAt":"2023-02-16T05:25:56.199215Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910925Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910925Z","LastActivityAt":"2023-02-16T05:25:48.910925Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912048Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1465,"ScoreAtt":2788,"RankDef":1442,"ScoreDef":38756,"RankSup":0,"ScoreSup":0,"RankTotal":1663,"ScoreTotal":41544,"ID":1957280,"Name":"zulus72","NumVillages":1,"Points":4166,"Rank":1388,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1957280","BestRank":1388,"BestRankAt":"2023-02-16T05:25:56.199215Z","MostPoints":4166,"MostPointsAt":"2023-02-16T05:25:56.199215Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910925Z","LastActivityAt":"2023-02-16T05:25:56.199215Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":56,"ScoreAtt":4729013,"RankDef":220,"ScoreDef":1734659,"RankSup":360,"ScoreSup":392780,"RankTotal":129,"ScoreTotal":6856452,"ID":1990750,"Name":"xkikutx","NumVillages":126,"Points":1211057,"Rank":110,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=1990750","BestRank":110,"BestRankAt":"2023-02-16T05:25:56.199216Z","MostPoints":1211057,"MostPointsAt":"2023-02-16T05:25:56.199216Z","MostVillages":126,"MostVillagesAt":"2023-02-16T05:25:56.199216Z","LastActivityAt":"2023-02-16T05:25:56.199216Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":480,"ScoreAtt":393851,"RankDef":358,"ScoreDef":860174,"RankSup":0,"ScoreSup":0,"RankTotal":552,"ScoreTotal":1254025,"ID":2020935,"Name":"tunks","NumVillages":0,"Points":0,"Rank":2866,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2020935","BestRank":2866,"BestRankAt":"2023-02-16T05:25:56.199216Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910927Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910927Z","LastActivityAt":"2023-02-16T05:25:48.910927Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":340,"ScoreAtt":752647,"RankDef":194,"ScoreDef":1969425,"RankSup":271,"ScoreSup":607889,"RankTotal":264,"ScoreTotal":3329961,"ID":2044462,"Name":"Diablo 90","NumVillages":0,"Points":0,"Rank":2867,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2044462","BestRank":2867,"BestRankAt":"2023-02-16T05:25:56.199217Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910927Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910927Z","LastActivityAt":"2023-02-16T05:25:48.910927Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912062Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1146,"ScoreAtt":13785,"RankDef":1820,"ScoreDef":10990,"RankSup":1209,"ScoreSup":318,"RankTotal":1816,"ScoreTotal":25093,"ID":2051721,"Name":"Aragorn StraĆŒnik PóƂnocy","NumVillages":1,"Points":1364,"Rank":1764,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2051721","BestRank":1764,"BestRankAt":"2023-02-16T05:25:56.199217Z","MostPoints":1364,"MostPointsAt":"2023-02-16T05:25:48.910928Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910928Z","LastActivityAt":"2023-02-16T05:25:48.910928Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912065Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1609,"ScoreDef":25166,"RankSup":0,"ScoreSup":0,"RankTotal":1813,"ScoreTotal":25166,"ID":2061701,"Name":"pablo1912","NumVillages":0,"Points":0,"Rank":2868,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2061701","BestRank":2868,"BestRankAt":"2023-02-16T05:25:56.199218Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910928Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910928Z","LastActivityAt":"2023-02-16T05:25:48.910928Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912066Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":237,"ScoreAtt":1238622,"RankDef":372,"ScoreDef":817769,"RankSup":383,"ScoreSup":346824,"RankTotal":358,"ScoreTotal":2403215,"ID":2065730,"Name":"Farmie Kombajnem","NumVillages":148,"Points":1329082,"Rank":93,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2065730","BestRank":93,"BestRankAt":"2023-02-16T05:25:48.910929Z","MostPoints":1329082,"MostPointsAt":"2023-02-16T05:25:56.199218Z","MostVillages":148,"MostVillagesAt":"2023-02-16T05:25:48.910929Z","LastActivityAt":"2023-02-16T05:25:56.199218Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1870,"ScoreAtt":75,"RankDef":1395,"ScoreDef":44204,"RankSup":549,"ScoreSup":131111,"RankTotal":1198,"ScoreTotal":175390,"ID":2083273,"Name":"adrianh3","NumVillages":1,"Points":26,"Rank":2599,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2083273","BestRank":2599,"BestRankAt":"2023-02-16T05:25:56.199219Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910929Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910929Z","LastActivityAt":"2023-02-16T05:25:48.91093Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912073Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":721,"ScoreDef":263088,"RankSup":0,"ScoreSup":0,"RankTotal":1044,"ScoreTotal":263088,"ID":2087251,"Name":"kondziu.27x","NumVillages":0,"Points":0,"Rank":2869,"TribeID":991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2087251","BestRank":2869,"BestRankAt":"2023-02-16T05:25:56.199219Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.91093Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.91093Z","LastActivityAt":"2023-02-16T05:25:48.91093Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1729,"ScoreAtt":365,"RankDef":1819,"ScoreDef":11063,"RankSup":0,"ScoreSup":0,"RankTotal":1974,"ScoreTotal":11428,"ID":2105150,"Name":"zielonelody","NumVillages":3,"Points":19291,"Rank":932,"TribeID":1166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2105150","BestRank":932,"BestRankAt":"2023-02-16T05:25:56.19922Z","MostPoints":19291,"MostPointsAt":"2023-02-16T05:25:56.19922Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.91093Z","LastActivityAt":"2023-02-16T05:25:56.19922Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912076Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2130659,"Name":"LukaseQxxD","NumVillages":1,"Points":374,"Rank":2095,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2130659","BestRank":2095,"BestRankAt":"2023-02-16T05:25:56.19922Z","MostPoints":374,"MostPointsAt":"2023-02-16T05:25:56.19922Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910931Z","LastActivityAt":"2023-02-16T05:25:56.19922Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":120,"ScoreAtt":2501108,"RankDef":1775,"ScoreDef":13548,"RankSup":600,"ScoreSup":99122,"RankTotal":337,"ScoreTotal":2613778,"ID":2135129,"Name":"ADAMCZYCY","NumVillages":101,"Points":832333,"Rank":176,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2135129","BestRank":175,"BestRankAt":"2023-02-16T05:25:48.910931Z","MostPoints":832333,"MostPointsAt":"2023-02-16T05:25:56.199221Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:48.910932Z","LastActivityAt":"2023-02-16T05:25:56.199221Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2140084,"Name":"poweju56","NumVillages":1,"Points":189,"Rank":2300,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2140084","BestRank":2300,"BestRankAt":"2023-02-16T05:25:56.199221Z","MostPoints":189,"MostPointsAt":"2023-02-16T05:25:48.910932Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910932Z","LastActivityAt":"2023-02-16T05:25:48.910932Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1233,"ScoreAtt":8954,"RankDef":1246,"ScoreDef":63990,"RankSup":0,"ScoreSup":0,"RankTotal":1488,"ScoreTotal":72944,"ID":2151163,"Name":"kabast","NumVillages":0,"Points":0,"Rank":2898,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2151163","BestRank":2898,"BestRankAt":"2023-02-16T05:25:48.910933Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910933Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910933Z","LastActivityAt":"2023-02-16T05:25:48.910933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912085Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1551,"ScoreDef":29029,"RankSup":0,"ScoreSup":0,"RankTotal":1774,"ScoreTotal":29029,"ID":2162471,"Name":"Tombar76","NumVillages":1,"Points":626,"Rank":1965,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2162471","BestRank":1965,"BestRankAt":"2023-02-16T05:25:56.199222Z","MostPoints":626,"MostPointsAt":"2023-02-16T05:25:56.199222Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910933Z","LastActivityAt":"2023-02-16T05:25:56.199222Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912088Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1495,"ScoreDef":34097,"RankSup":0,"ScoreSup":0,"RankTotal":1727,"ScoreTotal":34097,"ID":2177410,"Name":"plazmi","NumVillages":1,"Points":691,"Rank":1933,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2177410","BestRank":1933,"BestRankAt":"2023-02-16T05:25:56.199222Z","MostPoints":691,"MostPointsAt":"2023-02-16T05:25:56.199222Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910934Z","LastActivityAt":"2023-02-16T05:25:56.199222Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91209Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2210946,"Name":"Simon118","NumVillages":1,"Points":26,"Rank":2600,"TribeID":1799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2210946","BestRank":2600,"BestRankAt":"2023-02-16T05:25:56.199223Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910934Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910934Z","LastActivityAt":"2023-02-16T05:25:48.910934Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912091Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1761,"ScoreDef":14380,"RankSup":0,"ScoreSup":0,"RankTotal":1931,"ScoreTotal":14380,"ID":2213632,"Name":"lukas1980","NumVillages":1,"Points":1317,"Rank":1771,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2213632","BestRank":1771,"BestRankAt":"2023-02-16T05:25:56.199223Z","MostPoints":1317,"MostPointsAt":"2023-02-16T05:25:56.199223Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910935Z","LastActivityAt":"2023-02-16T05:25:56.199223Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912094Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":688,"ScoreDef":285338,"RankSup":1418,"ScoreSup":1,"RankTotal":1018,"ScoreTotal":285339,"ID":2232973,"Name":"izka1611","NumVillages":1,"Points":260,"Rank":2199,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2232973","BestRank":2199,"BestRankAt":"2023-02-16T05:25:56.199224Z","MostPoints":260,"MostPointsAt":"2023-02-16T05:25:56.199224Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910935Z","LastActivityAt":"2023-02-16T05:25:56.199224Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":916,"ScoreAtt":47577,"RankDef":1780,"ScoreDef":13426,"RankSup":0,"ScoreSup":0,"RankTotal":1544,"ScoreTotal":61003,"ID":2245160,"Name":"mruva","NumVillages":1,"Points":347,"Rank":2113,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2245160","BestRank":2113,"BestRankAt":"2023-02-16T05:25:56.199224Z","MostPoints":347,"MostPointsAt":"2023-02-16T05:25:48.910936Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910936Z","LastActivityAt":"2023-02-16T05:25:48.910936Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912098Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":626,"ScoreAtt":184258,"RankDef":1009,"ScoreDef":123999,"RankSup":0,"ScoreSup":0,"RankTotal":999,"ScoreTotal":308257,"ID":2246711,"Name":"jurger","NumVillages":8,"Points":45523,"Rank":715,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2246711","BestRank":715,"BestRankAt":"2023-02-16T05:25:56.199225Z","MostPoints":45523,"MostPointsAt":"2023-02-16T05:25:56.199225Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.910936Z","LastActivityAt":"2023-02-16T05:25:56.199225Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9121Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1749,"ScoreDef":15439,"RankSup":0,"ScoreSup":0,"RankTotal":1921,"ScoreTotal":15439,"ID":2256843,"Name":"jaworbog","NumVillages":1,"Points":758,"Rank":1914,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2256843","BestRank":1914,"BestRankAt":"2023-02-16T05:25:56.199225Z","MostPoints":758,"MostPointsAt":"2023-02-16T05:25:56.199225Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910937Z","LastActivityAt":"2023-02-16T05:25:56.199226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912103Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":736,"ScoreAtt":109040,"RankDef":163,"ScoreDef":2386143,"RankSup":568,"ScoreSup":120110,"RankTotal":336,"ScoreTotal":2615293,"ID":2262902,"Name":"totmes21","NumVillages":14,"Points":68919,"Rank":619,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2262902","BestRank":597,"BestRankAt":"2023-02-16T05:25:48.910937Z","MostPoints":76399,"MostPointsAt":"2023-02-16T05:25:48.910938Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.910938Z","LastActivityAt":"2023-02-16T05:25:48.910938Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912105Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2266562,"Name":"K@Ts","NumVillages":1,"Points":198,"Rank":2275,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2266562","BestRank":2275,"BestRankAt":"2023-02-16T05:25:56.199226Z","MostPoints":198,"MostPointsAt":"2023-02-16T05:25:56.199227Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.199226Z","LastActivityAt":"2023-02-16T05:25:56.199227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.200362Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1192,"ScoreAtt":10833,"RankDef":1462,"ScoreDef":36902,"RankSup":0,"ScoreSup":0,"RankTotal":1624,"ScoreTotal":47735,"ID":2268889,"Name":"dj.B.M.P.","NumVillages":4,"Points":17399,"Rank":963,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2268889","BestRank":963,"BestRankAt":"2023-02-16T05:25:56.199227Z","MostPoints":17399,"MostPointsAt":"2023-02-16T05:25:56.199227Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910938Z","LastActivityAt":"2023-02-16T05:25:56.199227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912106Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":650,"ScoreAtt":157821,"RankDef":1381,"ScoreDef":46929,"RankSup":1412,"ScoreSup":1,"RankTotal":1131,"ScoreTotal":204751,"ID":2269943,"Name":"gabsaw","NumVillages":23,"Points":163715,"Rank":448,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2269943","BestRank":446,"BestRankAt":"2023-02-16T05:25:48.910939Z","MostPoints":163715,"MostPointsAt":"2023-02-16T05:25:56.199228Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:48.910939Z","LastActivityAt":"2023-02-16T05:25:56.199228Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912108Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":240,"ScoreAtt":1196348,"RankDef":36,"ScoreDef":9256722,"RankSup":191,"ScoreSup":1011820,"RankTotal":67,"ScoreTotal":11464890,"ID":2289134,"Name":"Julixx","NumVillages":52,"Points":42706,"Rank":728,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2289134","BestRank":728,"BestRankAt":"2023-02-16T05:25:56.199228Z","MostPoints":42706,"MostPointsAt":"2023-02-16T05:25:56.199228Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:56.199228Z","LastActivityAt":"2023-02-16T05:25:56.199228Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912111Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":307,"ScoreAtt":903889,"RankDef":1104,"ScoreDef":93212,"RankSup":197,"ScoreSup":941883,"RankTotal":416,"ScoreTotal":1938984,"ID":2293376,"Name":"szkiel1552","NumVillages":77,"Points":702240,"Rank":206,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2293376","BestRank":206,"BestRankAt":"2023-02-16T05:25:56.199229Z","MostPoints":702240,"MostPointsAt":"2023-02-16T05:25:56.199229Z","MostVillages":77,"MostVillagesAt":"2023-02-16T05:25:56.199229Z","LastActivityAt":"2023-02-16T05:25:56.199229Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912113Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1758,"ScoreAtt":281,"RankDef":1745,"ScoreDef":15815,"RankSup":1364,"ScoreSup":4,"RankTotal":1913,"ScoreTotal":16100,"ID":2297431,"Name":"BANKMAN","NumVillages":1,"Points":744,"Rank":1916,"TribeID":1585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2297431","BestRank":1916,"BestRankAt":"2023-02-16T05:25:56.199229Z","MostPoints":744,"MostPointsAt":"2023-02-16T05:25:56.199229Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91094Z","LastActivityAt":"2023-02-16T05:25:56.199229Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912114Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1463,"ScoreAtt":2838,"RankDef":2011,"ScoreDef":4392,"RankSup":1016,"ScoreSup":4000,"RankTotal":1978,"ScoreTotal":11230,"ID":2308351,"Name":"markoz73","NumVillages":2,"Points":4882,"Rank":1331,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2308351","BestRank":1331,"BestRankAt":"2023-02-16T05:25:56.19923Z","MostPoints":4882,"MostPointsAt":"2023-02-16T05:25:56.19923Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910941Z","LastActivityAt":"2023-02-16T05:25:56.19923Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912117Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1361,"ScoreAtt":4826,"RankDef":155,"ScoreDef":2504451,"RankSup":0,"ScoreSup":0,"RankTotal":347,"ScoreTotal":2509277,"ID":2315542,"Name":"AKIKU","NumVillages":1,"Points":886,"Rank":1875,"TribeID":517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2315542","BestRank":1875,"BestRankAt":"2023-02-16T05:25:56.19923Z","MostPoints":886,"MostPointsAt":"2023-02-16T05:25:56.19923Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910941Z","LastActivityAt":"2023-02-16T05:25:56.199231Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912121Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":701,"ScoreAtt":126514,"RankDef":321,"ScoreDef":1046840,"RankSup":0,"ScoreSup":0,"RankTotal":574,"ScoreTotal":1173354,"ID":2321390,"Name":"RED54","NumVillages":34,"Points":164171,"Rank":447,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2321390","BestRank":444,"BestRankAt":"2023-02-16T05:25:48.910942Z","MostPoints":166317,"MostPointsAt":"2023-02-16T05:25:48.910942Z","MostVillages":35,"MostVillagesAt":"2023-02-16T05:25:48.910942Z","LastActivityAt":"2023-02-16T05:25:48.910942Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912123Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":717,"ScoreAtt":115381,"RankDef":1387,"ScoreDef":46023,"RankSup":695,"ScoreSup":51537,"RankTotal":1117,"ScoreTotal":212941,"ID":2323859,"Name":"alexiej","NumVillages":54,"Points":235843,"Rank":391,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2323859","BestRank":391,"BestRankAt":"2023-02-16T05:25:56.199231Z","MostPoints":235843,"MostPointsAt":"2023-02-16T05:25:56.199231Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:48.910943Z","LastActivityAt":"2023-02-16T05:25:56.199232Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912124Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":891,"ScoreAtt":52642,"RankDef":1133,"ScoreDef":87502,"RankSup":0,"ScoreSup":0,"RankTotal":1270,"ScoreTotal":140144,"ID":2324569,"Name":"Boginysa","NumVillages":1,"Points":3265,"Rank":1484,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2324569","BestRank":1484,"BestRankAt":"2023-02-16T05:25:56.199232Z","MostPoints":3265,"MostPointsAt":"2023-02-16T05:25:56.199232Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910943Z","LastActivityAt":"2023-02-16T05:25:56.199232Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912126Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1016,"ScoreDef":122522,"RankSup":1190,"ScoreSup":432,"RankTotal":1317,"ScoreTotal":122954,"ID":2345447,"Name":"slawomirec","NumVillages":1,"Points":302,"Rank":2152,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2345447","BestRank":2152,"BestRankAt":"2023-02-16T05:25:56.199232Z","MostPoints":302,"MostPointsAt":"2023-02-16T05:25:56.199233Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910944Z","LastActivityAt":"2023-02-16T05:25:56.199233Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912129Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1404,"ScoreAtt":3999,"RankDef":710,"ScoreDef":267962,"RankSup":1242,"ScoreSup":135,"RankTotal":1032,"ScoreTotal":272096,"ID":2357773,"Name":"BANAN 22","NumVillages":1,"Points":6050,"Rank":1263,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2357773","BestRank":1263,"BestRankAt":"2023-02-16T05:25:56.199233Z","MostPoints":6050,"MostPointsAt":"2023-02-16T05:25:56.199233Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910944Z","LastActivityAt":"2023-02-16T05:25:56.199233Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912129Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1412,"ScoreAtt":3767,"RankDef":1351,"ScoreDef":50009,"RankSup":1416,"ScoreSup":1,"RankTotal":1586,"ScoreTotal":53777,"ID":2362058,"Name":"Sir Lewan","NumVillages":1,"Points":9069,"Rank":1116,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2362058","BestRank":1116,"BestRankAt":"2023-02-16T05:25:56.199233Z","MostPoints":9069,"MostPointsAt":"2023-02-16T05:25:48.910945Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910945Z","LastActivityAt":"2023-02-16T05:25:48.910945Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912132Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1330,"ScoreDef":53585,"RankSup":0,"ScoreSup":0,"RankTotal":1588,"ScoreTotal":53585,"ID":2363165,"Name":"puciaa","NumVillages":1,"Points":447,"Rank":2042,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2363165","BestRank":2042,"BestRankAt":"2023-02-16T05:25:56.199234Z","MostPoints":447,"MostPointsAt":"2023-02-16T05:25:56.199234Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910945Z","LastActivityAt":"2023-02-16T05:25:56.199234Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912134Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":845,"ScoreDef":188672,"RankSup":0,"ScoreSup":0,"RankTotal":1163,"ScoreTotal":188672,"ID":2365630,"Name":"zkiw","NumVillages":1,"Points":173,"Rank":2323,"TribeID":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2365630","BestRank":2323,"BestRankAt":"2023-02-16T05:25:56.199235Z","MostPoints":173,"MostPointsAt":"2023-02-16T05:25:56.199235Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910946Z","LastActivityAt":"2023-02-16T05:25:56.199235Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912138Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1667,"ScoreAtt":707,"RankDef":1643,"ScoreDef":22527,"RankSup":1148,"ScoreSup":934,"RankTotal":1823,"ScoreTotal":24168,"ID":2371436,"Name":"jedrzej152","NumVillages":4,"Points":21917,"Rank":892,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2371436","BestRank":892,"BestRankAt":"2023-02-16T05:25:56.199235Z","MostPoints":21917,"MostPointsAt":"2023-02-16T05:25:56.199235Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.910946Z","LastActivityAt":"2023-02-16T05:25:56.199235Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912139Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1885,"ScoreAtt":52,"RankDef":2112,"ScoreDef":2251,"RankSup":451,"ScoreSup":224550,"RankTotal":1096,"ScoreTotal":226853,"ID":2392791,"Name":"artur3416","NumVillages":3,"Points":30581,"Rank":817,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2392791","BestRank":811,"BestRankAt":"2023-02-16T05:25:48.910947Z","MostPoints":30581,"MostPointsAt":"2023-02-16T05:25:48.910947Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910947Z","LastActivityAt":"2023-02-16T05:25:48.910947Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912141Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":817,"ScoreAtt":72830,"RankDef":183,"ScoreDef":2052512,"RankSup":215,"ScoreSup":857060,"RankTotal":292,"ScoreTotal":2982402,"ID":2411854,"Name":"dezert8","NumVillages":1,"Points":1442,"Rank":1750,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2411854","BestRank":1750,"BestRankAt":"2023-02-16T05:25:56.199236Z","MostPoints":1442,"MostPointsAt":"2023-02-16T05:25:48.910948Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910947Z","LastActivityAt":"2023-02-16T05:25:48.910948Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912144Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1438,"ScoreAtt":3262,"RankDef":676,"ScoreDef":295378,"RankSup":170,"ScoreSup":1288252,"RankTotal":478,"ScoreTotal":1586892,"ID":2415972,"Name":"Quelus","NumVillages":14,"Points":124165,"Rank":497,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2415972","BestRank":497,"BestRankAt":"2023-02-16T05:25:56.199237Z","MostPoints":124165,"MostPointsAt":"2023-02-16T05:25:56.199237Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:48.910948Z","LastActivityAt":"2023-02-16T05:25:56.199237Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912144Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":864,"ScoreAtt":59356,"RankDef":896,"ScoreDef":169554,"RankSup":593,"ScoreSup":102757,"RankTotal":974,"ScoreTotal":331667,"ID":2418002,"Name":"Markus2008","NumVillages":23,"Points":125081,"Rank":496,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2418002","BestRank":496,"BestRankAt":"2023-02-16T05:25:56.199237Z","MostPoints":125081,"MostPointsAt":"2023-02-16T05:25:56.199237Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:48.910949Z","LastActivityAt":"2023-02-16T05:25:56.199237Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912147Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":648,"ScoreAtt":158284,"RankDef":397,"ScoreDef":754818,"RankSup":885,"ScoreSup":12897,"RankTotal":644,"ScoreTotal":925999,"ID":2418364,"Name":"Artifoks","NumVillages":16,"Points":91405,"Rank":559,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2418364","BestRank":556,"BestRankAt":"2023-02-16T05:25:48.910949Z","MostPoints":91405,"MostPointsAt":"2023-02-16T05:25:56.199238Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:48.910949Z","LastActivityAt":"2023-02-16T05:25:56.199238Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912149Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1251,"ScoreAtt":7815,"RankDef":1184,"ScoreDef":76112,"RankSup":1176,"ScoreSup":581,"RankTotal":1445,"ScoreTotal":84508,"ID":2422415,"Name":"miodzik9669","NumVillages":1,"Points":380,"Rank":2087,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2422415","BestRank":2087,"BestRankAt":"2023-02-16T05:25:56.199238Z","MostPoints":380,"MostPointsAt":"2023-02-16T05:25:56.199238Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91095Z","LastActivityAt":"2023-02-16T05:25:56.199238Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912152Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1970,"ScoreAtt":4,"RankDef":1202,"ScoreDef":72148,"RankSup":0,"ScoreSup":0,"RankTotal":1486,"ScoreTotal":72152,"ID":2426019,"Name":"riki30.1976","NumVillages":1,"Points":205,"Rank":2263,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2426019","BestRank":2263,"BestRankAt":"2023-02-16T05:25:56.199239Z","MostPoints":205,"MostPointsAt":"2023-02-16T05:25:56.199239Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910951Z","LastActivityAt":"2023-02-16T05:25:56.199239Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912152Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1615,"ScoreAtt":1069,"RankDef":1415,"ScoreDef":41129,"RankSup":0,"ScoreSup":0,"RankTotal":1658,"ScoreTotal":42198,"ID":2443031,"Name":"HOST999","NumVillages":1,"Points":3081,"Rank":1501,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2443031","BestRank":1501,"BestRankAt":"2023-02-16T05:25:56.199239Z","MostPoints":3081,"MostPointsAt":"2023-02-16T05:25:48.910952Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910951Z","LastActivityAt":"2023-02-16T05:25:48.910952Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912156Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":766,"ScoreAtt":93738,"RankDef":230,"ScoreDef":1672543,"RankSup":550,"ScoreSup":130479,"RankTotal":422,"ScoreTotal":1896760,"ID":2453888,"Name":"MatikB87","NumVillages":34,"Points":181828,"Rank":434,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2453888","BestRank":434,"BestRankAt":"2023-02-16T05:25:48.910952Z","MostPoints":181828,"MostPointsAt":"2023-02-16T05:25:56.19924Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:56.19924Z","LastActivityAt":"2023-02-16T05:25:56.19924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912159Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":748,"ScoreAtt":102048,"RankDef":553,"ScoreDef":437865,"RankSup":1095,"ScoreSup":1876,"RankTotal":810,"ScoreTotal":541789,"ID":2467370,"Name":"marciniok1","NumVillages":1,"Points":5013,"Rank":1319,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2467370","BestRank":1319,"BestRankAt":"2023-02-16T05:25:56.19924Z","MostPoints":5013,"MostPointsAt":"2023-02-16T05:25:56.19924Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910953Z","LastActivityAt":"2023-02-16T05:25:56.199241Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912159Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2312,"ScoreDef":152,"RankSup":0,"ScoreSup":0,"RankTotal":2395,"ScoreTotal":152,"ID":2485646,"Name":"Mitze","NumVillages":1,"Points":3139,"Rank":1495,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2485646","BestRank":1495,"BestRankAt":"2023-02-16T05:25:56.199241Z","MostPoints":3139,"MostPointsAt":"2023-02-16T05:25:48.910954Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910953Z","LastActivityAt":"2023-02-16T05:25:48.910954Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912163Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1624,"ScoreAtt":988,"RankDef":2142,"ScoreDef":1836,"RankSup":0,"ScoreSup":0,"RankTotal":2200,"ScoreTotal":2824,"ID":2491724,"Name":"krzysiu1969","NumVillages":1,"Points":1750,"Rank":1696,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2491724","BestRank":1696,"BestRankAt":"2023-02-16T05:25:56.199241Z","MostPoints":1750,"MostPointsAt":"2023-02-16T05:25:48.910954Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910954Z","LastActivityAt":"2023-02-16T05:25:48.910954Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912165Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":171,"ScoreAtt":1874009,"RankDef":787,"ScoreDef":223091,"RankSup":206,"ScoreSup":889984,"RankTotal":291,"ScoreTotal":2987084,"ID":2502956,"Name":"Ziomecek","NumVillages":83,"Points":782905,"Rank":186,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2502956","BestRank":186,"BestRankAt":"2023-02-16T05:25:48.910955Z","MostPoints":782905,"MostPointsAt":"2023-02-16T05:25:56.199242Z","MostVillages":83,"MostVillagesAt":"2023-02-16T05:25:48.910955Z","LastActivityAt":"2023-02-16T05:25:56.199242Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912168Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2357,"ScoreDef":38,"RankSup":0,"ScoreSup":0,"RankTotal":2457,"ScoreTotal":38,"ID":2512219,"Name":"2 die 4","NumVillages":1,"Points":232,"Rank":2229,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2512219","BestRank":2229,"BestRankAt":"2023-02-16T05:25:56.199242Z","MostPoints":232,"MostPointsAt":"2023-02-16T05:25:48.910956Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910956Z","LastActivityAt":"2023-02-16T05:25:48.910956Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912169Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1620,"ScoreDef":24397,"RankSup":0,"ScoreSup":0,"RankTotal":1821,"ScoreTotal":24397,"ID":2514219,"Name":"Dzymek10","NumVillages":1,"Points":146,"Rank":2357,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2514219","BestRank":2357,"BestRankAt":"2023-02-16T05:25:56.199243Z","MostPoints":146,"MostPointsAt":"2023-02-16T05:25:48.910957Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910956Z","LastActivityAt":"2023-02-16T05:25:48.910957Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912179Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1635,"ScoreDef":23251,"RankSup":0,"ScoreSup":0,"RankTotal":1831,"ScoreTotal":23251,"ID":2516620,"Name":"waski098","NumVillages":1,"Points":312,"Rank":2142,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2516620","BestRank":2142,"BestRankAt":"2023-02-16T05:25:56.199243Z","MostPoints":312,"MostPointsAt":"2023-02-16T05:25:56.199243Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910957Z","LastActivityAt":"2023-02-16T05:25:56.199243Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912183Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":676,"ScoreAtt":141418,"RankDef":103,"ScoreDef":3506095,"RankSup":324,"ScoreSup":455981,"RankTotal":233,"ScoreTotal":4103494,"ID":2559569,"Name":"ivanov66","NumVillages":1,"Points":412,"Rank":2063,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2559569","BestRank":2063,"BestRankAt":"2023-02-16T05:25:56.199244Z","MostPoints":412,"MostPointsAt":"2023-02-16T05:25:56.199244Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910958Z","LastActivityAt":"2023-02-16T05:25:56.199244Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912189Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":932,"ScoreDef":151131,"RankSup":0,"ScoreSup":0,"RankTotal":1243,"ScoreTotal":151131,"ID":2569868,"Name":"LOLA1982","NumVillages":1,"Points":1238,"Rank":1785,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2569868","BestRank":1785,"BestRankAt":"2023-02-16T05:25:56.199244Z","MostPoints":1238,"MostPointsAt":"2023-02-16T05:25:56.199245Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910958Z","LastActivityAt":"2023-02-16T05:25:56.199245Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91219Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1479,"ScoreAtt":2576,"RankDef":1623,"ScoreDef":24241,"RankSup":1225,"ScoreSup":234,"RankTotal":1796,"ScoreTotal":27051,"ID":2571407,"Name":"Legion 15","NumVillages":6,"Points":23599,"Rank":877,"TribeID":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2571407","BestRank":877,"BestRankAt":"2023-02-16T05:25:48.910959Z","MostPoints":23599,"MostPointsAt":"2023-02-16T05:25:56.199245Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.910959Z","LastActivityAt":"2023-02-16T05:25:56.199245Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912265Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1763,"ScoreAtt":271,"RankDef":1489,"ScoreDef":34773,"RankSup":1162,"ScoreSup":789,"RankTotal":1715,"ScoreTotal":35833,"ID":2571536,"Name":"Calimera","NumVillages":1,"Points":206,"Rank":2261,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2571536","BestRank":2261,"BestRankAt":"2023-02-16T05:25:56.199245Z","MostPoints":206,"MostPointsAt":"2023-02-16T05:25:48.91096Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910959Z","LastActivityAt":"2023-02-16T05:25:48.91096Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912269Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1938,"ScoreDef":6399,"RankSup":1260,"ScoreSup":78,"RankTotal":2072,"ScoreTotal":6477,"ID":2575842,"Name":"ddd121","NumVillages":1,"Points":493,"Rank":2015,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2575842","BestRank":2015,"BestRankAt":"2023-02-16T05:25:56.199246Z","MostPoints":493,"MostPointsAt":"2023-02-16T05:25:48.91096Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91096Z","LastActivityAt":"2023-02-16T05:25:48.91096Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912269Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":21,"ScoreAtt":8078417,"RankDef":3,"ScoreDef":46347601,"RankSup":24,"ScoreSup":4914172,"RankTotal":4,"ScoreTotal":59340190,"ID":2585846,"Name":"Arrkoo","NumVillages":277,"Points":2272051,"Rank":37,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2585846","BestRank":37,"BestRankAt":"2023-02-16T05:25:56.199246Z","MostPoints":2272051,"MostPointsAt":"2023-02-16T05:25:56.199247Z","MostVillages":277,"MostVillagesAt":"2023-02-16T05:25:56.199246Z","LastActivityAt":"2023-02-16T05:25:56.199247Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912272Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1971,"ScoreAtt":4,"RankDef":1225,"ScoreDef":67909,"RankSup":1292,"ScoreSup":31,"RankTotal":1506,"ScoreTotal":67944,"ID":2591538,"Name":"Aneta 2","NumVillages":1,"Points":426,"Rank":2056,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2591538","BestRank":2056,"BestRankAt":"2023-02-16T05:25:56.199247Z","MostPoints":426,"MostPointsAt":"2023-02-16T05:25:48.910961Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910961Z","LastActivityAt":"2023-02-16T05:25:48.910961Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912275Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":883,"ScoreAtt":54383,"RankDef":1027,"ScoreDef":117820,"RankSup":0,"ScoreSup":0,"RankTotal":1207,"ScoreTotal":172203,"ID":2593568,"Name":"aleksandro987","NumVillages":1,"Points":423,"Rank":2060,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2593568","BestRank":2060,"BestRankAt":"2023-02-16T05:25:56.199247Z","MostPoints":423,"MostPointsAt":"2023-02-16T05:25:56.199248Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910962Z","LastActivityAt":"2023-02-16T05:25:56.199248Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912281Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1070,"ScoreAtt":20472,"RankDef":708,"ScoreDef":269482,"RankSup":742,"ScoreSup":37333,"RankTotal":982,"ScoreTotal":327287,"ID":2595542,"Name":"mastaw","NumVillages":0,"Points":0,"Rank":2870,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2595542","BestRank":2870,"BestRankAt":"2023-02-16T05:25:56.199248Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910962Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910962Z","LastActivityAt":"2023-02-16T05:25:48.910962Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912282Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":291,"ScoreAtt":970939,"RankDef":101,"ScoreDef":3511709,"RankSup":358,"ScoreSup":404192,"RankTotal":192,"ScoreTotal":4886840,"ID":2600387,"Name":"DeMoN00","NumVillages":3,"Points":27838,"Rank":833,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2600387","BestRank":831,"BestRankAt":"2023-02-16T05:25:48.910963Z","MostPoints":27838,"MostPointsAt":"2023-02-16T05:25:48.910963Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910963Z","LastActivityAt":"2023-02-16T05:25:48.910963Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912284Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2602575,"Name":"palkoneti","NumVillages":1,"Points":328,"Rank":2127,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2602575","BestRank":2127,"BestRankAt":"2023-02-16T05:25:56.199249Z","MostPoints":328,"MostPointsAt":"2023-02-16T05:25:56.199249Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910963Z","LastActivityAt":"2023-02-16T05:25:56.199249Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2097,"ScoreDef":2485,"RankSup":0,"ScoreSup":0,"RankTotal":2206,"ScoreTotal":2485,"ID":2613743,"Name":"skate4321","NumVillages":1,"Points":4708,"Rank":1348,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2613743","BestRank":1348,"BestRankAt":"2023-02-16T05:25:56.199249Z","MostPoints":4708,"MostPointsAt":"2023-02-16T05:25:56.19925Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910964Z","LastActivityAt":"2023-02-16T05:25:56.19925Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1321,"ScoreDef":55017,"RankSup":0,"ScoreSup":0,"RankTotal":1579,"ScoreTotal":55017,"ID":2620389,"Name":"JeGrzegorz","NumVillages":1,"Points":62,"Rank":2525,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2620389","BestRank":2525,"BestRankAt":"2023-02-16T05:25:56.19925Z","MostPoints":62,"MostPointsAt":"2023-02-16T05:25:48.910965Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910964Z","LastActivityAt":"2023-02-16T05:25:48.910965Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1835,"ScoreAtt":133,"RankDef":1418,"ScoreDef":40910,"RankSup":0,"ScoreSup":0,"RankTotal":1666,"ScoreTotal":41043,"ID":2646397,"Name":"jagger23","NumVillages":1,"Points":3072,"Rank":1505,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2646397","BestRank":1505,"BestRankAt":"2023-02-16T05:25:56.19925Z","MostPoints":3072,"MostPointsAt":"2023-02-16T05:25:56.199251Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910965Z","LastActivityAt":"2023-02-16T05:25:56.199251Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912295Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":256,"ScoreAtt":1096711,"RankDef":581,"ScoreDef":397341,"RankSup":119,"ScoreSup":1862083,"RankTotal":262,"ScoreTotal":3356135,"ID":2665207,"Name":"xyacqqqx","NumVillages":71,"Points":651017,"Rank":218,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2665207","BestRank":218,"BestRankAt":"2023-02-16T05:25:56.199251Z","MostPoints":651017,"MostPointsAt":"2023-02-16T05:25:56.199251Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:56.199251Z","LastActivityAt":"2023-02-16T05:25:56.199251Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2684175,"Name":"SzCzAkUs","NumVillages":1,"Points":503,"Rank":2011,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2684175","BestRank":2011,"BestRankAt":"2023-02-16T05:25:56.199252Z","MostPoints":503,"MostPointsAt":"2023-02-16T05:25:48.910966Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910966Z","LastActivityAt":"2023-02-16T05:25:48.910966Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":799,"ScoreAtt":80097,"RankDef":1362,"ScoreDef":48673,"RankSup":661,"ScoreSup":65496,"RankTotal":1149,"ScoreTotal":194266,"ID":2692494,"Name":"Rebel1995","NumVillages":1,"Points":26,"Rank":2601,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2692494","BestRank":2601,"BestRankAt":"2023-02-16T05:25:56.199252Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910967Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910967Z","LastActivityAt":"2023-02-16T05:25:48.910967Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":848,"ScoreAtt":64464,"RankDef":1760,"ScoreDef":14454,"RankSup":0,"ScoreSup":0,"RankTotal":1463,"ScoreTotal":78918,"ID":2717161,"Name":"smerf007","NumVillages":5,"Points":30942,"Rank":812,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2717161","BestRank":812,"BestRankAt":"2023-02-16T05:25:56.199253Z","MostPoints":30942,"MostPointsAt":"2023-02-16T05:25:56.199253Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:56.199253Z","LastActivityAt":"2023-02-16T05:25:56.199253Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1237,"ScoreAtt":8528,"RankDef":972,"ScoreDef":136865,"RankSup":0,"ScoreSup":0,"RankTotal":1255,"ScoreTotal":145393,"ID":2723244,"Name":"1gladiator","NumVillages":9,"Points":19852,"Rank":921,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2723244","BestRank":921,"BestRankAt":"2023-02-16T05:25:56.199253Z","MostPoints":19852,"MostPointsAt":"2023-02-16T05:25:56.199253Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.910968Z","LastActivityAt":"2023-02-16T05:25:56.199254Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1291,"ScoreAtt":6617,"RankDef":2040,"ScoreDef":3710,"RankSup":987,"ScoreSup":5497,"RankTotal":1916,"ScoreTotal":15824,"ID":2725721,"Name":"rudi jk25","NumVillages":11,"Points":27871,"Rank":832,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2725721","BestRank":832,"BestRankAt":"2023-02-16T05:25:56.199254Z","MostPoints":27871,"MostPointsAt":"2023-02-16T05:25:56.199254Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:56.199254Z","LastActivityAt":"2023-02-16T05:25:56.199254Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2727535,"Name":"sajmon117","NumVillages":1,"Points":26,"Rank":2602,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2727535","BestRank":2602,"BestRankAt":"2023-02-16T05:25:56.199254Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910969Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910969Z","LastActivityAt":"2023-02-16T05:25:48.910969Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91231Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1048,"ScoreAtt":23035,"RankDef":1003,"ScoreDef":124806,"RankSup":1404,"ScoreSup":1,"RankTotal":1251,"ScoreTotal":147842,"ID":2730335,"Name":"niki63","NumVillages":1,"Points":6828,"Rank":1216,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2730335","BestRank":1216,"BestRankAt":"2023-02-16T05:25:56.199255Z","MostPoints":6828,"MostPointsAt":"2023-02-16T05:25:48.910969Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910969Z","LastActivityAt":"2023-02-16T05:25:48.91097Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2076,"ScoreDef":2908,"RankSup":0,"ScoreSup":0,"RankTotal":2192,"ScoreTotal":2908,"ID":2735370,"Name":"wovi","NumVillages":0,"Points":0,"Rank":2871,"TribeID":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2735370","BestRank":2871,"BestRankAt":"2023-02-16T05:25:56.199255Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.91097Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.91097Z","LastActivityAt":"2023-02-16T05:25:48.91097Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912313Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1402,"ScoreDef":43298,"RankSup":0,"ScoreSup":0,"RankTotal":1653,"ScoreTotal":43298,"ID":2764337,"Name":"Stefal-S22","NumVillages":1,"Points":841,"Rank":1891,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2764337","BestRank":1891,"BestRankAt":"2023-02-16T05:25:56.199256Z","MostPoints":841,"MostPointsAt":"2023-02-16T05:25:56.199256Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910971Z","LastActivityAt":"2023-02-16T05:25:56.199256Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":669,"ScoreAtt":145709,"RankDef":739,"ScoreDef":252071,"RankSup":1204,"ScoreSup":342,"RankTotal":920,"ScoreTotal":398122,"ID":2798385,"Name":"bencu","NumVillages":0,"Points":0,"Rank":2872,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2798385","BestRank":2872,"BestRankAt":"2023-02-16T05:25:56.199256Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910971Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910971Z","LastActivityAt":"2023-02-16T05:25:48.910971Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":744,"ScoreAtt":103062,"RankDef":275,"ScoreDef":1334285,"RankSup":1205,"ScoreSup":336,"RankTotal":510,"ScoreTotal":1437683,"ID":2800032,"Name":"kamilheros2","NumVillages":11,"Points":70121,"Rank":614,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2800032","BestRank":614,"BestRankAt":"2023-02-16T05:25:56.199257Z","MostPoints":70121,"MostPointsAt":"2023-02-16T05:25:56.199257Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.910972Z","LastActivityAt":"2023-02-16T05:25:56.199257Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1442,"ScoreAtt":3237,"RankDef":583,"ScoreDef":396260,"RankSup":0,"ScoreSup":0,"RankTotal":918,"ScoreTotal":399497,"ID":2801913,"Name":"iagre","NumVillages":1,"Points":612,"Rank":1966,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2801913","BestRank":1966,"BestRankAt":"2023-02-16T05:25:56.199257Z","MostPoints":612,"MostPointsAt":"2023-02-16T05:25:48.910972Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910972Z","LastActivityAt":"2023-02-16T05:25:48.910972Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":98,"ScoreAtt":3221684,"RankDef":951,"ScoreDef":146072,"RankSup":171,"ScoreSup":1274380,"RankTotal":204,"ScoreTotal":4642136,"ID":2808172,"Name":"yogi 1","NumVillages":120,"Points":1141621,"Rank":121,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2808172","BestRank":120,"BestRankAt":"2023-02-16T05:25:48.910973Z","MostPoints":1141621,"MostPointsAt":"2023-02-16T05:25:56.199258Z","MostVillages":120,"MostVillagesAt":"2023-02-16T05:25:56.199258Z","LastActivityAt":"2023-02-16T05:25:56.199258Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2037,"ScoreDef":3773,"RankSup":0,"ScoreSup":0,"RankTotal":2163,"ScoreTotal":3773,"ID":2811353,"Name":"*worm*","NumVillages":1,"Points":3546,"Rank":1450,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2811353","BestRank":1450,"BestRankAt":"2023-02-16T05:25:56.199259Z","MostPoints":3546,"MostPointsAt":"2023-02-16T05:25:56.199259Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910973Z","LastActivityAt":"2023-02-16T05:25:56.199259Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2811568,"Name":"borowka73","NumVillages":1,"Points":408,"Rank":2067,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2811568","BestRank":2067,"BestRankAt":"2023-02-16T05:25:56.199259Z","MostPoints":408,"MostPointsAt":"2023-02-16T05:25:56.199259Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910974Z","LastActivityAt":"2023-02-16T05:25:56.199259Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1399,"ScoreAtt":4107,"RankDef":558,"ScoreDef":432982,"RankSup":0,"ScoreSup":0,"RankTotal":879,"ScoreTotal":437089,"ID":2812197,"Name":"bs160","NumVillages":1,"Points":280,"Rank":2180,"TribeID":523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2812197","BestRank":2180,"BestRankAt":"2023-02-16T05:25:56.19926Z","MostPoints":280,"MostPointsAt":"2023-02-16T05:25:56.19926Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910974Z","LastActivityAt":"2023-02-16T05:25:56.19926Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91233Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1834,"ScoreAtt":133,"RankDef":2010,"ScoreDef":4408,"RankSup":0,"ScoreSup":0,"RankTotal":2137,"ScoreTotal":4541,"ID":2819255,"Name":"Atillaa","NumVillages":1,"Points":4043,"Rank":1397,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2819255","BestRank":1397,"BestRankAt":"2023-02-16T05:25:56.19926Z","MostPoints":4043,"MostPointsAt":"2023-02-16T05:25:56.19926Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910975Z","LastActivityAt":"2023-02-16T05:25:56.19926Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912333Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1497,"ScoreAtt":2359,"RankDef":1603,"ScoreDef":25432,"RankSup":0,"ScoreSup":0,"RankTotal":1786,"ScoreTotal":27791,"ID":2819768,"Name":"rycho100","NumVillages":1,"Points":1878,"Rank":1678,"TribeID":965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2819768","BestRank":1678,"BestRankAt":"2023-02-16T05:25:56.199261Z","MostPoints":1878,"MostPointsAt":"2023-02-16T05:25:56.199261Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910975Z","LastActivityAt":"2023-02-16T05:25:56.199261Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2008,"ScoreDef":4430,"RankSup":0,"ScoreSup":0,"RankTotal":2141,"ScoreTotal":4430,"ID":2837080,"Name":"LadyVv","NumVillages":1,"Points":2086,"Rank":1637,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2837080","BestRank":1637,"BestRankAt":"2023-02-16T05:25:56.199261Z","MostPoints":2086,"MostPointsAt":"2023-02-16T05:25:56.199261Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910976Z","LastActivityAt":"2023-02-16T05:25:56.199262Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":542,"ScoreAtt":292119,"RankDef":550,"ScoreDef":442300,"RankSup":346,"ScoreSup":416189,"RankTotal":581,"ScoreTotal":1150608,"ID":2873154,"Name":"Kozak Wielki 5","NumVillages":51,"Points":281485,"Rank":362,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2873154","BestRank":362,"BestRankAt":"2023-02-16T05:25:56.199262Z","MostPoints":281485,"MostPointsAt":"2023-02-16T05:25:56.199262Z","MostVillages":51,"MostVillagesAt":"2023-02-16T05:25:56.199262Z","LastActivityAt":"2023-02-16T05:25:56.199262Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1247,"ScoreAtt":7938,"RankDef":1159,"ScoreDef":80885,"RankSup":0,"ScoreSup":0,"RankTotal":1433,"ScoreTotal":88823,"ID":2893211,"Name":"lukiluki1200","NumVillages":2,"Points":719,"Rank":1925,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2893211","BestRank":1925,"BestRankAt":"2023-02-16T05:25:56.199262Z","MostPoints":719,"MostPointsAt":"2023-02-16T05:25:48.910977Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910977Z","LastActivityAt":"2023-02-16T05:25:48.910977Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1680,"ScoreAtt":669,"RankDef":1025,"ScoreDef":117961,"RankSup":0,"ScoreSup":0,"RankTotal":1327,"ScoreTotal":118630,"ID":2924071,"Name":"lew mis","NumVillages":0,"Points":0,"Rank":2873,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2924071","BestRank":2873,"BestRankAt":"2023-02-16T05:25:56.199263Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910978Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910978Z","LastActivityAt":"2023-02-16T05:25:48.910978Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":2942206,"Name":"Maniek28a","NumVillages":1,"Points":721,"Rank":1923,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2942206","BestRank":1923,"BestRankAt":"2023-02-16T05:25:56.199263Z","MostPoints":721,"MostPointsAt":"2023-02-16T05:25:56.199264Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910978Z","LastActivityAt":"2023-02-16T05:25:56.199264Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":753,"ScoreAtt":98123,"RankDef":486,"ScoreDef":551662,"RankSup":901,"ScoreSup":11165,"RankTotal":747,"ScoreTotal":660950,"ID":2972329,"Name":"Bigbangs","NumVillages":13,"Points":106506,"Rank":525,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2972329","BestRank":525,"BestRankAt":"2023-02-16T05:25:56.199264Z","MostPoints":106506,"MostPointsAt":"2023-02-16T05:25:48.910979Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:48.910979Z","LastActivityAt":"2023-02-16T05:25:48.910979Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":911,"ScoreAtt":48125,"RankDef":1126,"ScoreDef":89299,"RankSup":1027,"ScoreSup":3534,"RankTotal":1266,"ScoreTotal":140958,"ID":2976468,"Name":"tomnado","NumVillages":10,"Points":45276,"Rank":717,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2976468","BestRank":717,"BestRankAt":"2023-02-16T05:25:56.199264Z","MostPoints":45276,"MostPointsAt":"2023-02-16T05:25:56.199265Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.910979Z","LastActivityAt":"2023-02-16T05:25:56.199265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2328,"ScoreDef":90,"RankSup":0,"ScoreSup":0,"RankTotal":2423,"ScoreTotal":90,"ID":2980670,"Name":"snajpiradlo","NumVillages":1,"Points":150,"Rank":2352,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2980670","BestRank":2352,"BestRankAt":"2023-02-16T05:25:56.199265Z","MostPoints":150,"MostPointsAt":"2023-02-16T05:25:48.91098Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91098Z","LastActivityAt":"2023-02-16T05:25:48.91098Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":366,"ScoreAtt":655767,"RankDef":1486,"ScoreDef":35066,"RankSup":932,"ScoreSup":8835,"RankTotal":732,"ScoreTotal":699668,"ID":2999957,"Name":"GRABIERZCA 1","NumVillages":52,"Points":408819,"Rank":298,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=2999957","BestRank":298,"BestRankAt":"2023-02-16T05:25:56.199265Z","MostPoints":408819,"MostPointsAt":"2023-02-16T05:25:56.199266Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:56.199266Z","LastActivityAt":"2023-02-16T05:25:56.199266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912355Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":889,"ScoreDef":172215,"RankSup":0,"ScoreSup":0,"RankTotal":1206,"ScoreTotal":172215,"ID":3022364,"Name":"romusz43","NumVillages":1,"Points":367,"Rank":2100,"TribeID":809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3022364","BestRank":2100,"BestRankAt":"2023-02-16T05:25:56.199266Z","MostPoints":367,"MostPointsAt":"2023-02-16T05:25:56.199266Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910981Z","LastActivityAt":"2023-02-16T05:25:56.199266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912358Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2012,"ScoreDef":4355,"RankSup":1369,"ScoreSup":4,"RankTotal":2143,"ScoreTotal":4359,"ID":3024357,"Name":"DETONATOR2010","NumVillages":1,"Points":5045,"Rank":1315,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3024357","BestRank":1315,"BestRankAt":"2023-02-16T05:25:56.199267Z","MostPoints":5045,"MostPointsAt":"2023-02-16T05:25:56.199267Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910981Z","LastActivityAt":"2023-02-16T05:25:56.199267Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91236Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1557,"ScoreAtt":1701,"RankDef":1074,"ScoreDef":100752,"RankSup":0,"ScoreSup":0,"RankTotal":1379,"ScoreTotal":102453,"ID":3027589,"Name":"Daria 201","NumVillages":2,"Points":6485,"Rank":1234,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3027589","BestRank":1234,"BestRankAt":"2023-02-16T05:25:56.199267Z","MostPoints":6485,"MostPointsAt":"2023-02-16T05:25:56.199267Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.910982Z","LastActivityAt":"2023-02-16T05:25:56.199267Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912361Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1776,"ScoreAtt":240,"RankDef":881,"ScoreDef":176373,"RankSup":1289,"ScoreSup":35,"RankTotal":1194,"ScoreTotal":176648,"ID":3057381,"Name":"waldi0227","NumVillages":0,"Points":0,"Rank":2874,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3057381","BestRank":2874,"BestRankAt":"2023-02-16T05:25:56.199268Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910983Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910983Z","LastActivityAt":"2023-02-16T05:25:48.910983Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2464,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2545,"ScoreTotal":4,"ID":3101080,"Name":"saba13","NumVillages":1,"Points":638,"Rank":1955,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3101080","BestRank":1955,"BestRankAt":"2023-02-16T05:25:56.199268Z","MostPoints":638,"MostPointsAt":"2023-02-16T05:25:48.910983Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910983Z","LastActivityAt":"2023-02-16T05:25:48.910983Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912366Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":559,"ScoreAtt":265001,"RankDef":96,"ScoreDef":3659008,"RankSup":473,"ScoreSup":195165,"RankTotal":231,"ScoreTotal":4119174,"ID":3108144,"Name":"Vandip","NumVillages":32,"Points":197732,"Rank":418,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3108144","BestRank":417,"BestRankAt":"2023-02-16T05:25:48.910984Z","MostPoints":197732,"MostPointsAt":"2023-02-16T05:25:56.199269Z","MostVillages":32,"MostVillagesAt":"2023-02-16T05:25:48.910984Z","LastActivityAt":"2023-02-16T05:25:56.199269Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912366Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3112100,"Name":"Arletta82","NumVillages":1,"Points":104,"Rank":2450,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3112100","BestRank":2450,"BestRankAt":"2023-02-16T05:25:56.199269Z","MostPoints":104,"MostPointsAt":"2023-02-16T05:25:48.910984Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910984Z","LastActivityAt":"2023-02-16T05:25:48.910984Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":486,"ScoreAtt":379388,"RankDef":1304,"ScoreDef":56366,"RankSup":710,"ScoreSup":45239,"RankTotal":853,"ScoreTotal":480993,"ID":3136062,"Name":"emeryt224","NumVillages":0,"Points":0,"Rank":2875,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3136062","BestRank":2875,"BestRankAt":"2023-02-16T05:25:56.19927Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910985Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910985Z","LastActivityAt":"2023-02-16T05:25:48.910985Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1883,"ScoreAtt":53,"RankDef":853,"ScoreDef":186691,"RankSup":998,"ScoreSup":5034,"RankTotal":1155,"ScoreTotal":191778,"ID":3181712,"Name":"Roman150","NumVillages":0,"Points":0,"Rank":2876,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3181712","BestRank":2876,"BestRankAt":"2023-02-16T05:25:56.19927Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910985Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910985Z","LastActivityAt":"2023-02-16T05:25:48.910986Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1093,"ScoreDef":95060,"RankSup":0,"ScoreSup":0,"RankTotal":1403,"ScoreTotal":95060,"ID":3185732,"Name":"Wielki Wezyr","NumVillages":1,"Points":2431,"Rank":1583,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3185732","BestRank":1583,"BestRankAt":"2023-02-16T05:25:56.199271Z","MostPoints":2431,"MostPointsAt":"2023-02-16T05:25:48.910986Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910986Z","LastActivityAt":"2023-02-16T05:25:48.910986Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3264281,"Name":"jankes630","NumVillages":1,"Points":73,"Rank":2497,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3264281","BestRank":2497,"BestRankAt":"2023-02-16T05:25:56.199271Z","MostPoints":73,"MostPointsAt":"2023-02-16T05:25:48.910987Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910986Z","LastActivityAt":"2023-02-16T05:25:48.910987Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1068,"ScoreAtt":20704,"RankDef":416,"ScoreDef":708434,"RankSup":1070,"ScoreSup":2414,"RankTotal":713,"ScoreTotal":731552,"ID":3264534,"Name":"Sosiq...","NumVillages":1,"Points":10698,"Rank":1064,"TribeID":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3264534","BestRank":1064,"BestRankAt":"2023-02-16T05:25:56.199272Z","MostPoints":10698,"MostPointsAt":"2023-02-16T05:25:48.910987Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910987Z","LastActivityAt":"2023-02-16T05:25:48.910987Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":164,"ScoreAtt":1956061,"RankDef":729,"ScoreDef":260032,"RankSup":805,"ScoreSup":23692,"RankTotal":380,"ScoreTotal":2239785,"ID":3295619,"Name":"lubiszT0","NumVillages":1,"Points":162,"Rank":2337,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3295619","BestRank":2337,"BestRankAt":"2023-02-16T05:25:56.199272Z","MostPoints":162,"MostPointsAt":"2023-02-16T05:25:48.910988Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910988Z","LastActivityAt":"2023-02-16T05:25:48.910988Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1522,"ScoreAtt":2092,"RankDef":1527,"ScoreDef":30856,"RankSup":0,"ScoreSup":0,"RankTotal":1741,"ScoreTotal":32948,"ID":3298564,"Name":"arek22310","NumVillages":1,"Points":1914,"Rank":1668,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3298564","BestRank":1668,"BestRankAt":"2023-02-16T05:25:56.199273Z","MostPoints":1914,"MostPointsAt":"2023-02-16T05:25:56.199273Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910988Z","LastActivityAt":"2023-02-16T05:25:56.199273Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1176,"ScoreAtt":11826,"RankDef":1591,"ScoreDef":25938,"RankSup":934,"ScoreSup":8560,"RankTotal":1633,"ScoreTotal":46324,"ID":3298902,"Name":"Sejmion","NumVillages":5,"Points":24470,"Rank":871,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3298902","BestRank":871,"BestRankAt":"2023-02-16T05:25:56.199273Z","MostPoints":24470,"MostPointsAt":"2023-02-16T05:25:56.199273Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:56.199273Z","LastActivityAt":"2023-02-16T05:25:56.199273Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1005,"ScoreAtt":28749,"RankDef":1012,"ScoreDef":123444,"RankSup":986,"ScoreSup":5534,"RankTotal":1232,"ScoreTotal":157727,"ID":3319611,"Name":"niedzwiedz8807","NumVillages":1,"Points":2955,"Rank":1519,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3319611","BestRank":1519,"BestRankAt":"2023-02-16T05:25:56.199274Z","MostPoints":2955,"MostPointsAt":"2023-02-16T05:25:48.910989Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910989Z","LastActivityAt":"2023-02-16T05:25:48.910989Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":774,"ScoreAtt":89974,"RankDef":1771,"ScoreDef":13660,"RankSup":660,"ScoreSup":66453,"RankTotal":1208,"ScoreTotal":170087,"ID":3340647,"Name":"Chaos.Black","NumVillages":1,"Points":9494,"Rank":1102,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3340647","BestRank":1102,"BestRankAt":"2023-02-16T05:25:56.199274Z","MostPoints":9494,"MostPointsAt":"2023-02-16T05:25:48.91099Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91099Z","LastActivityAt":"2023-02-16T05:25:48.91099Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1578,"ScoreAtt":1427,"RankDef":376,"ScoreDef":802106,"RankSup":0,"ScoreSup":0,"RankTotal":682,"ScoreTotal":803533,"ID":3342690,"Name":"zyzok108","NumVillages":2,"Points":5794,"Rank":1273,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3342690","BestRank":1273,"BestRankAt":"2023-02-16T05:25:56.199275Z","MostPoints":5794,"MostPointsAt":"2023-02-16T05:25:48.91099Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.91099Z","LastActivityAt":"2023-02-16T05:25:48.91099Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91239Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":747,"ScoreAtt":102379,"RankDef":785,"ScoreDef":224932,"RankSup":881,"ScoreSup":13784,"RankTotal":967,"ScoreTotal":341095,"ID":3345943,"Name":"dam111","NumVillages":1,"Points":50,"Rank":2551,"TribeID":546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3345943","BestRank":2551,"BestRankAt":"2023-02-16T05:25:56.199275Z","MostPoints":50,"MostPointsAt":"2023-02-16T05:25:48.910991Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910991Z","LastActivityAt":"2023-02-16T05:25:48.910991Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2144,"ScoreDef":1826,"RankSup":0,"ScoreSup":0,"RankTotal":2241,"ScoreTotal":1826,"ID":3362925,"Name":"Beast Palladin","NumVillages":1,"Points":1082,"Rank":1826,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3362925","BestRank":1826,"BestRankAt":"2023-02-16T05:25:56.199276Z","MostPoints":1082,"MostPointsAt":"2023-02-16T05:25:56.199276Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910991Z","LastActivityAt":"2023-02-16T05:25:56.199276Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":999,"ScoreAtt":29853,"RankDef":2123,"ScoreDef":2098,"RankSup":1208,"ScoreSup":320,"RankTotal":1749,"ScoreTotal":32271,"ID":3364735,"Name":"Vesemir7","NumVillages":7,"Points":65977,"Rank":631,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3364735","BestRank":631,"BestRankAt":"2023-02-16T05:25:48.910992Z","MostPoints":65977,"MostPointsAt":"2023-02-16T05:25:56.199276Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.910992Z","LastActivityAt":"2023-02-16T05:25:56.199276Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1311,"ScoreAtt":6150,"RankDef":1360,"ScoreDef":48961,"RankSup":1353,"ScoreSup":5,"RankTotal":1578,"ScoreTotal":55116,"ID":3365981,"Name":"Panoramix112","NumVillages":1,"Points":1701,"Rank":1702,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3365981","BestRank":1702,"BestRankAt":"2023-02-16T05:25:56.199277Z","MostPoints":1701,"MostPointsAt":"2023-02-16T05:25:56.199277Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910993Z","LastActivityAt":"2023-02-16T05:25:56.199277Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912398Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1889,"ScoreDef":8054,"RankSup":0,"ScoreSup":0,"RankTotal":2032,"ScoreTotal":8054,"ID":3372959,"Name":"wowo.ww","NumVillages":3,"Points":11298,"Rank":1051,"TribeID":626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3372959","BestRank":1051,"BestRankAt":"2023-02-16T05:25:56.199277Z","MostPoints":11298,"MostPointsAt":"2023-02-16T05:25:56.199277Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910993Z","LastActivityAt":"2023-02-16T05:25:56.199278Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":863,"ScoreAtt":59496,"RankDef":398,"ScoreDef":752634,"RankSup":0,"ScoreSup":0,"RankTotal":679,"ScoreTotal":812130,"ID":3377503,"Name":"Czarny Hetman","NumVillages":2,"Points":704,"Rank":1928,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3377503","BestRank":1867,"BestRankAt":"2023-02-16T05:25:48.910994Z","MostPoints":996,"MostPointsAt":"2023-02-16T05:25:48.910994Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910994Z","LastActivityAt":"2023-02-16T05:25:48.910994Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":589,"ScoreAtt":226868,"RankDef":238,"ScoreDef":1628125,"RankSup":962,"ScoreSup":6614,"RankTotal":429,"ScoreTotal":1861607,"ID":3377827,"Name":"Krasnal01","NumVillages":3,"Points":22866,"Rank":887,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3377827","BestRank":886,"BestRankAt":"2023-02-16T05:25:48.910994Z","MostPoints":22866,"MostPointsAt":"2023-02-16T05:25:56.199278Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.910994Z","LastActivityAt":"2023-02-16T05:25:56.199279Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1437,"ScoreAtt":3267,"RankDef":641,"ScoreDef":333720,"RankSup":758,"ScoreSup":33261,"RankTotal":941,"ScoreTotal":370248,"ID":3395817,"Name":"Aquarius12","NumVillages":1,"Points":480,"Rank":2023,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3395817","BestRank":2023,"BestRankAt":"2023-02-16T05:25:56.199279Z","MostPoints":480,"MostPointsAt":"2023-02-16T05:25:56.199279Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910995Z","LastActivityAt":"2023-02-16T05:25:56.199279Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1552,"ScoreAtt":1776,"RankDef":1106,"ScoreDef":92643,"RankSup":0,"ScoreSup":0,"RankTotal":1409,"ScoreTotal":94419,"ID":3409028,"Name":"giza61","NumVillages":1,"Points":2895,"Rank":1526,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3409028","BestRank":1526,"BestRankAt":"2023-02-16T05:25:56.199279Z","MostPoints":2895,"MostPointsAt":"2023-02-16T05:25:56.19928Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910995Z","LastActivityAt":"2023-02-16T05:25:56.19928Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":896,"ScoreAtt":51796,"RankDef":775,"ScoreDef":233028,"RankSup":329,"ScoreSup":448692,"RankTotal":711,"ScoreTotal":733516,"ID":3411571,"Name":"asiulkaaa23","NumVillages":20,"Points":99838,"Rank":539,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3411571","BestRank":539,"BestRankAt":"2023-02-16T05:25:56.19928Z","MostPoints":99838,"MostPointsAt":"2023-02-16T05:25:56.19928Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:48.910996Z","LastActivityAt":"2023-02-16T05:25:56.19928Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":311,"ScoreAtt":877476,"RankDef":703,"ScoreDef":272273,"RankSup":582,"ScoreSup":106834,"RankTotal":551,"ScoreTotal":1256583,"ID":3428961,"Name":"patrykoss93","NumVillages":1,"Points":26,"Rank":2603,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3428961","BestRank":2603,"BestRankAt":"2023-02-16T05:25:56.199281Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.910996Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910996Z","LastActivityAt":"2023-02-16T05:25:48.910997Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912411Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":952,"ScoreAtt":39435,"RankDef":600,"ScoreDef":380673,"RankSup":1118,"ScoreSup":1415,"RankTotal":895,"ScoreTotal":421523,"ID":3430969,"Name":"Barret","NumVillages":1,"Points":1023,"Rank":1842,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3430969","BestRank":1842,"BestRankAt":"2023-02-16T05:25:56.199281Z","MostPoints":1023,"MostPointsAt":"2023-02-16T05:25:56.199281Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910997Z","LastActivityAt":"2023-02-16T05:25:56.199281Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1938,"ScoreAtt":20,"RankDef":1971,"ScoreDef":5464,"RankSup":0,"ScoreSup":0,"RankTotal":2100,"ScoreTotal":5484,"ID":3441892,"Name":"wƂadca smokĂłw 2","NumVillages":0,"Points":0,"Rank":2877,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3441892","BestRank":2877,"BestRankAt":"2023-02-16T05:25:56.199282Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.910998Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.910997Z","LastActivityAt":"2023-02-16T05:25:48.910998Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":229,"ScoreAtt":1307442,"RankDef":1485,"ScoreDef":35098,"RankSup":142,"ScoreSup":1556941,"RankTotal":302,"ScoreTotal":2899481,"ID":3454753,"Name":"Iker96","NumVillages":79,"Points":727758,"Rank":198,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3454753","BestRank":198,"BestRankAt":"2023-02-16T05:25:56.199282Z","MostPoints":727758,"MostPointsAt":"2023-02-16T05:25:56.199282Z","MostVillages":79,"MostVillagesAt":"2023-02-16T05:25:56.199282Z","LastActivityAt":"2023-02-16T05:25:56.199282Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912417Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2401,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2500,"ScoreTotal":13,"ID":3462813,"Name":"Arash1","NumVillages":1,"Points":195,"Rank":2284,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3462813","BestRank":2284,"BestRankAt":"2023-02-16T05:25:56.199283Z","MostPoints":195,"MostPointsAt":"2023-02-16T05:25:48.910999Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.910999Z","LastActivityAt":"2023-02-16T05:25:48.910999Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912419Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1016,"ScoreAtt":27561,"RankDef":1695,"ScoreDef":18775,"RankSup":1029,"ScoreSup":3416,"RankTotal":1608,"ScoreTotal":49752,"ID":3467919,"Name":"Tomcio Rycerz","NumVillages":16,"Points":90341,"Rank":563,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3467919","BestRank":563,"BestRankAt":"2023-02-16T05:25:56.199283Z","MostPoints":90341,"MostPointsAt":"2023-02-16T05:25:56.199283Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:48.910999Z","LastActivityAt":"2023-02-16T05:25:56.199283Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":518,"ScoreAtt":327183,"RankDef":51,"ScoreDef":6502818,"RankSup":418,"ScoreSup":281122,"RankTotal":123,"ScoreTotal":7111123,"ID":3475079,"Name":"de Talleyrand","NumVillages":29,"Points":121772,"Rank":502,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3475079","BestRank":502,"BestRankAt":"2023-02-16T05:25:56.199284Z","MostPoints":121772,"MostPointsAt":"2023-02-16T05:25:56.199284Z","MostVillages":29,"MostVillagesAt":"2023-02-16T05:25:48.911Z","LastActivityAt":"2023-02-16T05:25:56.199284Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":113,"ScoreAtt":2720416,"RankDef":586,"ScoreDef":392907,"RankSup":105,"ScoreSup":2125442,"RankTotal":178,"ScoreTotal":5238765,"ID":3484132,"Name":"wojtek1409","NumVillages":165,"Points":1365876,"Rank":90,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3484132","BestRank":90,"BestRankAt":"2023-02-16T05:25:48.911Z","MostPoints":1365876,"MostPointsAt":"2023-02-16T05:25:56.199284Z","MostVillages":165,"MostVillagesAt":"2023-02-16T05:25:48.911Z","LastActivityAt":"2023-02-16T05:25:56.199284Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912426Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1842,"ScoreAtt":120,"RankDef":598,"ScoreDef":383076,"RankSup":0,"ScoreSup":0,"RankTotal":932,"ScoreTotal":383196,"ID":3487721,"Name":"BORKOS4","NumVillages":1,"Points":1731,"Rank":1700,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3487721","BestRank":1700,"BestRankAt":"2023-02-16T05:25:56.199285Z","MostPoints":1731,"MostPointsAt":"2023-02-16T05:25:56.199285Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911001Z","LastActivityAt":"2023-02-16T05:25:56.199285Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912429Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1887,"ScoreDef":8091,"RankSup":0,"ScoreSup":0,"RankTotal":2029,"ScoreTotal":8091,"ID":3487933,"Name":"Szujski Mastess Team","NumVillages":1,"Points":429,"Rank":2053,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3487933","BestRank":2053,"BestRankAt":"2023-02-16T05:25:56.199285Z","MostPoints":429,"MostPointsAt":"2023-02-16T05:25:48.911001Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911001Z","LastActivityAt":"2023-02-16T05:25:48.911001Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912429Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2174,"ScoreDef":1367,"RankSup":0,"ScoreSup":0,"RankTotal":2269,"ScoreTotal":1367,"ID":3499467,"Name":"ciechu0m","NumVillages":1,"Points":347,"Rank":2114,"TribeID":187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3499467","BestRank":2114,"BestRankAt":"2023-02-16T05:25:56.199286Z","MostPoints":347,"MostPointsAt":"2023-02-16T05:25:48.911002Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911002Z","LastActivityAt":"2023-02-16T05:25:48.911002Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":172,"ScoreAtt":1867684,"RankDef":40,"ScoreDef":8050798,"RankSup":282,"ScoreSup":575494,"RankTotal":75,"ScoreTotal":10493976,"ID":3502565,"Name":"Erupcja","NumVillages":25,"Points":157010,"Rank":455,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3502565","BestRank":455,"BestRankAt":"2023-02-16T05:25:48.911002Z","MostPoints":157289,"MostPointsAt":"2023-02-16T05:25:48.911003Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:48.911002Z","LastActivityAt":"2023-02-16T05:25:48.911003Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912435Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2318,"ScoreDef":132,"RankSup":0,"ScoreSup":0,"RankTotal":2406,"ScoreTotal":132,"ID":3518623,"Name":"Deyna10","NumVillages":1,"Points":194,"Rank":2288,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3518623","BestRank":2288,"BestRankAt":"2023-02-16T05:25:56.199287Z","MostPoints":194,"MostPointsAt":"2023-02-16T05:25:48.911003Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911003Z","LastActivityAt":"2023-02-16T05:25:48.911003Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912437Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1985,"ScoreDef":5269,"RankSup":0,"ScoreSup":0,"RankTotal":2113,"ScoreTotal":5269,"ID":3529695,"Name":"Don Kargul","NumVillages":1,"Points":9163,"Rank":1112,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3529695","BestRank":1112,"BestRankAt":"2023-02-16T05:25:56.199287Z","MostPoints":9163,"MostPointsAt":"2023-02-16T05:25:56.199287Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911004Z","LastActivityAt":"2023-02-16T05:25:56.199287Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2273,"ScoreDef":340,"RankSup":0,"ScoreSup":0,"RankTotal":2354,"ScoreTotal":340,"ID":3560281,"Name":"joannaniel","NumVillages":2,"Points":8037,"Rank":1152,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3560281","BestRank":1152,"BestRankAt":"2023-02-16T05:25:56.199288Z","MostPoints":8037,"MostPointsAt":"2023-02-16T05:25:56.199288Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911004Z","LastActivityAt":"2023-02-16T05:25:56.199288Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91244Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1249,"ScoreAtt":7889,"RankDef":869,"ScoreDef":182350,"RankSup":0,"ScoreSup":0,"RankTotal":1159,"ScoreTotal":190239,"ID":3584298,"Name":"RYCERZ MAƁY","NumVillages":0,"Points":0,"Rank":2878,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3584298","BestRank":2878,"BestRankAt":"2023-02-16T05:25:56.199288Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911005Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911005Z","LastActivityAt":"2023-02-16T05:25:48.911005Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":971,"ScoreAtt":35170,"RankDef":964,"ScoreDef":141696,"RankSup":1349,"ScoreSup":5,"RankTotal":1193,"ScoreTotal":176871,"ID":3589487,"Name":"fazii2155","NumVillages":18,"Points":88638,"Rank":566,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3589487","BestRank":527,"BestRankAt":"2023-02-16T05:25:48.911005Z","MostPoints":106912,"MostPointsAt":"2023-02-16T05:25:48.911005Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:48.911005Z","LastActivityAt":"2023-02-16T05:25:48.911005Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912447Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":467,"ScoreAtt":415862,"RankDef":799,"ScoreDef":217022,"RankSup":521,"ScoreSup":150233,"RankTotal":688,"ScoreTotal":783117,"ID":3600737,"Name":"elli38","NumVillages":54,"Points":344696,"Rank":336,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3600737","BestRank":333,"BestRankAt":"2023-02-16T05:25:48.911006Z","MostPoints":344696,"MostPointsAt":"2023-02-16T05:25:56.199289Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:56.199289Z","LastActivityAt":"2023-02-16T05:25:56.199289Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912447Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":353,"ScoreAtt":692833,"RankDef":548,"ScoreDef":448075,"RankSup":29,"ScoreSup":4771637,"RankTotal":156,"ScoreTotal":5912545,"ID":3613413,"Name":"and987","NumVillages":69,"Points":635257,"Rank":224,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3613413","BestRank":224,"BestRankAt":"2023-02-16T05:25:56.19929Z","MostPoints":635257,"MostPointsAt":"2023-02-16T05:25:56.19929Z","MostVillages":69,"MostVillagesAt":"2023-02-16T05:25:56.19929Z","LastActivityAt":"2023-02-16T05:25:56.19929Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1531,"ScoreDef":30510,"RankSup":0,"ScoreSup":0,"RankTotal":1763,"ScoreTotal":30510,"ID":3631404,"Name":"tedy1","NumVillages":1,"Points":393,"Rank":2077,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3631404","BestRank":2077,"BestRankAt":"2023-02-16T05:25:56.19929Z","MostPoints":393,"MostPointsAt":"2023-02-16T05:25:48.911007Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911007Z","LastActivityAt":"2023-02-16T05:25:48.911007Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1476,"ScoreAtt":2605,"RankDef":846,"ScoreDef":188341,"RankSup":762,"ScoreSup":33102,"RankTotal":1102,"ScoreTotal":224048,"ID":3639628,"Name":"Zoso2000","NumVillages":1,"Points":2198,"Rank":1619,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3639628","BestRank":1619,"BestRankAt":"2023-02-16T05:25:56.199291Z","MostPoints":2198,"MostPointsAt":"2023-02-16T05:25:56.199291Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911007Z","LastActivityAt":"2023-02-16T05:25:56.199291Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912452Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2397,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":2494,"ScoreTotal":14,"ID":3647080,"Name":"MP1001","NumVillages":1,"Points":1846,"Rank":1684,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3647080","BestRank":1684,"BestRankAt":"2023-02-16T05:25:56.199291Z","MostPoints":1846,"MostPointsAt":"2023-02-16T05:25:56.199291Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911008Z","LastActivityAt":"2023-02-16T05:25:56.199292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912454Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1717,"ScoreDef":17235,"RankSup":0,"ScoreSup":0,"RankTotal":1893,"ScoreTotal":17235,"ID":3647086,"Name":"bruno 60","NumVillages":1,"Points":7100,"Rank":1204,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3647086","BestRank":1204,"BestRankAt":"2023-02-16T05:25:56.199292Z","MostPoints":7100,"MostPointsAt":"2023-02-16T05:25:56.199292Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911008Z","LastActivityAt":"2023-02-16T05:25:56.199292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":772,"ScoreAtt":90896,"RankDef":1342,"ScoreDef":51748,"RankSup":1088,"ScoreSup":2082,"RankTotal":1256,"ScoreTotal":144726,"ID":3652727,"Name":"sancus","NumVillages":1,"Points":2383,"Rank":1589,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3652727","BestRank":1589,"BestRankAt":"2023-02-16T05:25:56.199292Z","MostPoints":2383,"MostPointsAt":"2023-02-16T05:25:48.911009Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911009Z","LastActivityAt":"2023-02-16T05:25:48.911009Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912458Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1085,"ScoreAtt":19593,"RankDef":812,"ScoreDef":208765,"RankSup":0,"ScoreSup":0,"RankTotal":1092,"ScoreTotal":228358,"ID":3667722,"Name":"dziki71","NumVillages":1,"Points":1479,"Rank":1738,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3667722","BestRank":1738,"BestRankAt":"2023-02-16T05:25:56.199293Z","MostPoints":1479,"MostPointsAt":"2023-02-16T05:25:56.199293Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91101Z","LastActivityAt":"2023-02-16T05:25:56.199293Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2081,"ScoreDef":2841,"RankSup":1381,"ScoreSup":3,"RankTotal":2199,"ScoreTotal":2844,"ID":3668212,"Name":"Warkilia","NumVillages":1,"Points":2203,"Rank":1617,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3668212","BestRank":1617,"BestRankAt":"2023-02-16T05:25:56.199293Z","MostPoints":2203,"MostPointsAt":"2023-02-16T05:25:56.199294Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91101Z","LastActivityAt":"2023-02-16T05:25:56.199294Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1217,"ScoreAtt":9848,"RankDef":1720,"ScoreDef":17118,"RankSup":1333,"ScoreSup":10,"RankTotal":1798,"ScoreTotal":26976,"ID":3692413,"Name":"Kiubi5","NumVillages":3,"Points":5910,"Rank":1269,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3692413","BestRank":1269,"BestRankAt":"2023-02-16T05:25:56.199294Z","MostPoints":5910,"MostPointsAt":"2023-02-16T05:25:56.199294Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.911011Z","LastActivityAt":"2023-02-16T05:25:56.199294Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":440,"ScoreAtt":467466,"RankDef":1522,"ScoreDef":31353,"RankSup":234,"ScoreSup":759938,"RankTotal":550,"ScoreTotal":1258757,"ID":3698627,"Name":"Bystek7","NumVillages":95,"Points":794661,"Rank":181,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3698627","BestRank":181,"BestRankAt":"2023-02-16T05:25:56.199295Z","MostPoints":794661,"MostPointsAt":"2023-02-16T05:25:56.199295Z","MostVillages":95,"MostVillagesAt":"2023-02-16T05:25:48.911011Z","LastActivityAt":"2023-02-16T05:25:56.199295Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":868,"ScoreDef":182517,"RankSup":0,"ScoreSup":0,"RankTotal":1182,"ScoreTotal":182517,"ID":3713020,"Name":"Tytus Africanus","NumVillages":1,"Points":4609,"Rank":1354,"TribeID":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3713020","BestRank":1354,"BestRankAt":"2023-02-16T05:25:56.199295Z","MostPoints":4609,"MostPointsAt":"2023-02-16T05:25:48.911012Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911012Z","LastActivityAt":"2023-02-16T05:25:48.911012Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912468Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":630,"ScoreAtt":178126,"RankDef":1616,"ScoreDef":24448,"RankSup":474,"ScoreSup":194744,"RankTotal":921,"ScoreTotal":397318,"ID":3734803,"Name":"kokso420","NumVillages":1,"Points":26,"Rank":2604,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3734803","BestRank":2604,"BestRankAt":"2023-02-16T05:25:56.199296Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911012Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911012Z","LastActivityAt":"2023-02-16T05:25:48.911012Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91247Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":257,"ScoreAtt":1094385,"RankDef":1409,"ScoreDef":41940,"RankSup":791,"ScoreSup":26884,"RankTotal":578,"ScoreTotal":1163209,"ID":3739202,"Name":"Tryagain","NumVillages":1,"Points":4809,"Rank":1339,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3739202","BestRank":1339,"BestRankAt":"2023-02-16T05:25:56.199296Z","MostPoints":4809,"MostPointsAt":"2023-02-16T05:25:48.911013Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911013Z","LastActivityAt":"2023-02-16T05:25:48.911013Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1898,"ScoreDef":7693,"RankSup":0,"ScoreSup":0,"RankTotal":2042,"ScoreTotal":7693,"ID":3743817,"Name":"E W A","NumVillages":1,"Points":66,"Rank":2515,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3743817","BestRank":2515,"BestRankAt":"2023-02-16T05:25:56.199296Z","MostPoints":66,"MostPointsAt":"2023-02-16T05:25:48.911013Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911013Z","LastActivityAt":"2023-02-16T05:25:48.911014Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":973,"ScoreAtt":34248,"RankDef":560,"ScoreDef":427264,"RankSup":0,"ScoreSup":0,"RankTotal":867,"ScoreTotal":461512,"ID":3750922,"Name":"macp1","NumVillages":1,"Points":2267,"Rank":1607,"TribeID":1528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3750922","BestRank":1607,"BestRankAt":"2023-02-16T05:25:56.199297Z","MostPoints":2267,"MostPointsAt":"2023-02-16T05:25:48.911014Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911014Z","LastActivityAt":"2023-02-16T05:25:48.911014Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1360,"ScoreAtt":4876,"RankDef":1410,"ScoreDef":41840,"RankSup":1421,"ScoreSup":1,"RankTotal":1628,"ScoreTotal":46717,"ID":3760848,"Name":"wiciu12","NumVillages":1,"Points":168,"Rank":2330,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3760848","BestRank":2330,"BestRankAt":"2023-02-16T05:25:56.199297Z","MostPoints":168,"MostPointsAt":"2023-02-16T05:25:56.199298Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911015Z","LastActivityAt":"2023-02-16T05:25:56.199298Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912478Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1692,"ScoreDef":18974,"RankSup":0,"ScoreSup":0,"RankTotal":1877,"ScoreTotal":18974,"ID":3762475,"Name":"tomiil","NumVillages":1,"Points":4647,"Rank":1351,"TribeID":435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3762475","BestRank":1351,"BestRankAt":"2023-02-16T05:25:56.199298Z","MostPoints":4647,"MostPointsAt":"2023-02-16T05:25:56.199298Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911015Z","LastActivityAt":"2023-02-16T05:25:56.199298Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3773216,"Name":"daro1974","NumVillages":1,"Points":222,"Rank":2240,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3773216","BestRank":2240,"BestRankAt":"2023-02-16T05:25:56.199299Z","MostPoints":222,"MostPointsAt":"2023-02-16T05:25:48.911016Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911016Z","LastActivityAt":"2023-02-16T05:25:48.911016Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":418,"ScoreAtt":519984,"RankDef":1696,"ScoreDef":18765,"RankSup":677,"ScoreSup":59267,"RankTotal":777,"ScoreTotal":598016,"ID":3781794,"Name":"977007","NumVillages":130,"Points":1025189,"Rank":142,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3781794","BestRank":142,"BestRankAt":"2023-02-16T05:25:56.199299Z","MostPoints":1025189,"MostPointsAt":"2023-02-16T05:25:56.199299Z","MostVillages":130,"MostVillagesAt":"2023-02-16T05:25:48.911016Z","LastActivityAt":"2023-02-16T05:25:56.199299Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2176,"ScoreDef":1618,"RankSup":1344,"ScoreSup":7,"RankTotal":2273,"ScoreTotal":1625,"ID":3800097,"Name":"Seba1112111","NumVillages":1,"Points":4745,"Rank":1350,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3800097","BestRank":1350,"BestRankAt":"2023-02-16T05:25:48.911017Z","MostPoints":4745,"MostPointsAt":"2023-02-16T05:25:48.911017Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911017Z","LastActivityAt":"2023-02-16T05:25:48.911017Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912485Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3824463,"Name":"KARY1988","NumVillages":1,"Points":26,"Rank":2605,"TribeID":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3824463","BestRank":2605,"BestRankAt":"2023-02-16T05:25:56.1993Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911017Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911017Z","LastActivityAt":"2023-02-16T05:25:48.911017Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912485Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3840616,"Name":"Arto135","NumVillages":1,"Points":74,"Rank":2494,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3840616","BestRank":2494,"BestRankAt":"2023-02-16T05:25:56.1993Z","MostPoints":74,"MostPointsAt":"2023-02-16T05:25:48.911018Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911018Z","LastActivityAt":"2023-02-16T05:25:48.911018Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912487Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1578,"ScoreDef":27259,"RankSup":830,"ScoreSup":19145,"RankTotal":1631,"ScoreTotal":46404,"ID":3842862,"Name":"M4TeK","NumVillages":3,"Points":5950,"Rank":1265,"TribeID":281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3842862","BestRank":1265,"BestRankAt":"2023-02-16T05:25:56.199301Z","MostPoints":5950,"MostPointsAt":"2023-02-16T05:25:48.911018Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.911018Z","LastActivityAt":"2023-02-16T05:25:48.911019Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91249Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1061,"ScoreAtt":21659,"RankDef":2189,"ScoreDef":1126,"RankSup":760,"ScoreSup":33128,"RankTotal":1570,"ScoreTotal":55913,"ID":3860614,"Name":"szaikan96","NumVillages":1,"Points":26,"Rank":2606,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3860614","BestRank":2606,"BestRankAt":"2023-02-16T05:25:56.199301Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911019Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911019Z","LastActivityAt":"2023-02-16T05:25:48.911019Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912492Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1774,"ScoreAtt":249,"RankDef":1448,"ScoreDef":38377,"RankSup":0,"ScoreSup":0,"RankTotal":1690,"ScoreTotal":38626,"ID":3895471,"Name":"mikwojka","NumVillages":1,"Points":1997,"Rank":1655,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3895471","BestRank":1655,"BestRankAt":"2023-02-16T05:25:56.199301Z","MostPoints":1997,"MostPointsAt":"2023-02-16T05:25:48.91102Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911019Z","LastActivityAt":"2023-02-16T05:25:48.91102Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912492Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1602,"ScoreAtt":1226,"RankDef":816,"ScoreDef":205920,"RankSup":0,"ScoreSup":0,"RankTotal":1125,"ScoreTotal":207146,"ID":3896657,"Name":"robson351971","NumVillages":2,"Points":3653,"Rank":1433,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3896657","BestRank":1433,"BestRankAt":"2023-02-16T05:25:56.199302Z","MostPoints":3653,"MostPointsAt":"2023-02-16T05:25:56.199302Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.91102Z","LastActivityAt":"2023-02-16T05:25:56.199302Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912495Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":7,"ScoreAtt":14909975,"RankDef":204,"ScoreDef":1849363,"RankSup":48,"ScoreSup":3494426,"RankTotal":27,"ScoreTotal":20253764,"ID":3909522,"Name":"paawlo13","NumVillages":460,"Points":4003987,"Rank":8,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3909522","BestRank":8,"BestRankAt":"2023-02-16T05:25:48.91102Z","MostPoints":4004753,"MostPointsAt":"2023-02-16T05:25:48.911021Z","MostVillages":465,"MostVillagesAt":"2023-02-16T05:25:48.911021Z","LastActivityAt":"2023-02-16T05:25:48.911021Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912497Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1913,"ScoreDef":7187,"RankSup":0,"ScoreSup":0,"RankTotal":2055,"ScoreTotal":7187,"ID":3923887,"Name":"Nogger14","NumVillages":1,"Points":765,"Rank":1912,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3923887","BestRank":1912,"BestRankAt":"2023-02-16T05:25:56.199303Z","MostPoints":765,"MostPointsAt":"2023-02-16T05:25:56.199303Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911021Z","LastActivityAt":"2023-02-16T05:25:56.199303Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912498Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":379,"ScoreAtt":615746,"RankDef":495,"ScoreDef":530221,"RankSup":203,"ScoreSup":911772,"RankTotal":399,"ScoreTotal":2057739,"ID":3933666,"Name":"damian0ss","NumVillages":26,"Points":159180,"Rank":452,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3933666","BestRank":451,"BestRankAt":"2023-02-16T05:25:48.911022Z","MostPoints":159180,"MostPointsAt":"2023-02-16T05:25:56.199304Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:48.911022Z","LastActivityAt":"2023-02-16T05:25:56.199304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1255,"ScoreAtt":7572,"RankDef":1573,"ScoreDef":27710,"RankSup":0,"ScoreSup":0,"RankTotal":1721,"ScoreTotal":35282,"ID":3957237,"Name":"DARO36","NumVillages":6,"Points":30986,"Rank":810,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3957237","BestRank":810,"BestRankAt":"2023-02-16T05:25:56.199304Z","MostPoints":30986,"MostPointsAt":"2023-02-16T05:25:56.199304Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.911022Z","LastActivityAt":"2023-02-16T05:25:56.199304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912503Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1929,"ScoreAtt":26,"RankDef":1005,"ScoreDef":124753,"RankSup":0,"ScoreSup":0,"RankTotal":1312,"ScoreTotal":124779,"ID":3969110,"Name":"ferrekin","NumVillages":1,"Points":3153,"Rank":1492,"TribeID":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3969110","BestRank":1492,"BestRankAt":"2023-02-16T05:25:56.199305Z","MostPoints":3153,"MostPointsAt":"2023-02-16T05:25:48.911023Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911023Z","LastActivityAt":"2023-02-16T05:25:48.911023Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912505Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":685,"ScoreAtt":139270,"RankDef":1042,"ScoreDef":111265,"RankSup":352,"ScoreSup":410810,"RankTotal":746,"ScoreTotal":661345,"ID":3972413,"Name":"bartekzdroj","NumVillages":1,"Points":3385,"Rank":1471,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3972413","BestRank":1471,"BestRankAt":"2023-02-16T05:25:56.199305Z","MostPoints":3385,"MostPointsAt":"2023-02-16T05:25:48.911023Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911023Z","LastActivityAt":"2023-02-16T05:25:48.911023Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912505Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":3973432,"Name":"piotrus507","NumVillages":1,"Points":26,"Rank":2607,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3973432","BestRank":2607,"BestRankAt":"2023-02-16T05:25:56.199306Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911024Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911024Z","LastActivityAt":"2023-02-16T05:25:48.911024Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1541,"ScoreAtt":1855,"RankDef":186,"ScoreDef":2047649,"RankSup":0,"ScoreSup":0,"RankTotal":401,"ScoreTotal":2049504,"ID":3986807,"Name":"ORKORAN","NumVillages":15,"Points":20306,"Rank":914,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3986807","BestRank":914,"BestRankAt":"2023-02-16T05:25:56.199306Z","MostPoints":20306,"MostPointsAt":"2023-02-16T05:25:56.199306Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.911024Z","LastActivityAt":"2023-02-16T05:25:56.199306Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91251Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1542,"ScoreAtt":1845,"RankDef":469,"ScoreDef":569828,"RankSup":0,"ScoreSup":0,"RankTotal":789,"ScoreTotal":571673,"ID":3990066,"Name":"AsconX","NumVillages":6,"Points":21319,"Rank":901,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=3990066","BestRank":901,"BestRankAt":"2023-02-16T05:25:56.199307Z","MostPoints":21319,"MostPointsAt":"2023-02-16T05:25:56.199307Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.911025Z","LastActivityAt":"2023-02-16T05:25:56.199307Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91251Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2146,"ScoreDef":1797,"RankSup":0,"ScoreSup":0,"RankTotal":2243,"ScoreTotal":1797,"ID":5989306,"Name":"HENRYK321","NumVillages":1,"Points":377,"Rank":2091,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5989306","BestRank":2091,"BestRankAt":"2023-02-16T05:25:56.199307Z","MostPoints":377,"MostPointsAt":"2023-02-16T05:25:56.199307Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911025Z","LastActivityAt":"2023-02-16T05:25:56.199307Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912513Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":587,"ScoreAtt":228522,"RankDef":106,"ScoreDef":3442192,"RankSup":91,"ScoreSup":2375834,"RankTotal":150,"ScoreTotal":6046548,"ID":5991728,"Name":"hodowca1","NumVillages":0,"Points":0,"Rank":2879,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5991728","BestRank":2879,"BestRankAt":"2023-02-16T05:25:56.199308Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911026Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911026Z","LastActivityAt":"2023-02-16T05:25:48.911026Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912516Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":658,"ScoreAtt":155365,"RankDef":81,"ScoreDef":4266167,"RankSup":213,"ScoreSup":865269,"RankTotal":176,"ScoreTotal":5286801,"ID":5997814,"Name":"Frejas933","NumVillages":31,"Points":184766,"Rank":430,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5997814","BestRank":430,"BestRankAt":"2023-02-16T05:25:56.199308Z","MostPoints":184766,"MostPointsAt":"2023-02-16T05:25:56.199308Z","MostVillages":31,"MostVillagesAt":"2023-02-16T05:25:48.911027Z","LastActivityAt":"2023-02-16T05:25:56.199308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":5999909,"Name":"piper97","NumVillages":1,"Points":191,"Rank":2295,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=5999909","BestRank":2295,"BestRankAt":"2023-02-16T05:25:56.199309Z","MostPoints":191,"MostPointsAt":"2023-02-16T05:25:56.199309Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911027Z","LastActivityAt":"2023-02-16T05:25:56.199309Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1626,"ScoreAtt":959,"RankDef":1816,"ScoreDef":11253,"RankSup":0,"ScoreSup":0,"RankTotal":1957,"ScoreTotal":12212,"ID":6001174,"Name":"Mietusek22","NumVillages":1,"Points":7351,"Rank":1192,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6001174","BestRank":1192,"BestRankAt":"2023-02-16T05:25:56.199309Z","MostPoints":7351,"MostPointsAt":"2023-02-16T05:25:56.199309Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911028Z","LastActivityAt":"2023-02-16T05:25:56.199309Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91252Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1570,"ScoreAtt":1529,"RankDef":1220,"ScoreDef":68486,"RankSup":0,"ScoreSup":0,"RankTotal":1502,"ScoreTotal":70015,"ID":6002527,"Name":"Dj Burglar","NumVillages":2,"Points":6791,"Rank":1219,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6002527","BestRank":1219,"BestRankAt":"2023-02-16T05:25:56.19931Z","MostPoints":6791,"MostPointsAt":"2023-02-16T05:25:56.19931Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911028Z","LastActivityAt":"2023-02-16T05:25:56.19931Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1331,"ScoreAtt":5564,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2098,"ScoreTotal":5564,"ID":6021542,"Name":"rycerzrzyk2000","NumVillages":1,"Points":26,"Rank":2608,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6021542","BestRank":2608,"BestRankAt":"2023-02-16T05:25:56.19931Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911029Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911029Z","LastActivityAt":"2023-02-16T05:25:48.911029Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912525Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1388,"ScoreAtt":4272,"RankDef":1546,"ScoreDef":29375,"RankSup":0,"ScoreSup":0,"RankTotal":1735,"ScoreTotal":33647,"ID":6032352,"Name":"wojtek1435","NumVillages":2,"Points":5422,"Rank":1298,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6032352","BestRank":1298,"BestRankAt":"2023-02-16T05:25:56.199311Z","MostPoints":5422,"MostPointsAt":"2023-02-16T05:25:48.911033Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911033Z","LastActivityAt":"2023-02-16T05:25:48.911033Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912525Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6035425,"Name":"HORTON","NumVillages":1,"Points":96,"Rank":2468,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6035425","BestRank":2468,"BestRankAt":"2023-02-16T05:25:56.199311Z","MostPoints":96,"MostPointsAt":"2023-02-16T05:25:48.911034Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911034Z","LastActivityAt":"2023-02-16T05:25:48.911034Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912527Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1318,"ScoreAtt":5872,"RankDef":1119,"ScoreDef":90712,"RankSup":1339,"ScoreSup":8,"RankTotal":1396,"ScoreTotal":96592,"ID":6046368,"Name":"Moniq15","NumVillages":1,"Points":2405,"Rank":1587,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6046368","BestRank":1587,"BestRankAt":"2023-02-16T05:25:56.199312Z","MostPoints":2405,"MostPointsAt":"2023-02-16T05:25:56.199312Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911034Z","LastActivityAt":"2023-02-16T05:25:56.199312Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91253Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1916,"ScoreAtt":32,"RankDef":1060,"ScoreDef":104855,"RankSup":1340,"ScoreSup":8,"RankTotal":1371,"ScoreTotal":104895,"ID":6046743,"Name":"Filters","NumVillages":1,"Points":2365,"Rank":1592,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6046743","BestRank":1592,"BestRankAt":"2023-02-16T05:25:56.199312Z","MostPoints":2365,"MostPointsAt":"2023-02-16T05:25:56.199312Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911035Z","LastActivityAt":"2023-02-16T05:25:56.199313Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91253Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1262,"ScoreAtt":7416,"RankDef":648,"ScoreDef":326509,"RankSup":0,"ScoreSup":0,"RankTotal":972,"ScoreTotal":333925,"ID":6048627,"Name":"rojek1122","NumVillages":2,"Points":15245,"Rank":994,"TribeID":1745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6048627","BestRank":993,"BestRankAt":"2023-02-16T05:25:48.911035Z","MostPoints":15245,"MostPointsAt":"2023-02-16T05:25:56.199313Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911035Z","LastActivityAt":"2023-02-16T05:25:56.199313Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912532Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6066254,"Name":"tomek22863","NumVillages":1,"Points":93,"Rank":2473,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6066254","BestRank":2473,"BestRankAt":"2023-02-16T05:25:56.199313Z","MostPoints":93,"MostPointsAt":"2023-02-16T05:25:48.911036Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911036Z","LastActivityAt":"2023-02-16T05:25:48.911036Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912534Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6070734,"Name":"--KEMPA--","NumVillages":1,"Points":26,"Rank":2609,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6070734","BestRank":2609,"BestRankAt":"2023-02-16T05:25:56.199314Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911037Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911037Z","LastActivityAt":"2023-02-16T05:25:48.911037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912536Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":662,"ScoreDef":310809,"RankSup":0,"ScoreSup":0,"RankTotal":995,"ScoreTotal":310809,"ID":6071567,"Name":"Petro180","NumVillages":0,"Points":0,"Rank":2880,"TribeID":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6071567","BestRank":2880,"BestRankAt":"2023-02-16T05:25:56.199314Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911037Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911037Z","LastActivityAt":"2023-02-16T05:25:48.911037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912536Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1612,"ScoreAtt":1083,"RankDef":1481,"ScoreDef":35438,"RankSup":1077,"ScoreSup":2263,"RankTotal":1686,"ScoreTotal":38784,"ID":6078176,"Name":"lech3838","NumVillages":1,"Points":120,"Rank":2423,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6078176","BestRank":2423,"BestRankAt":"2023-02-16T05:25:56.199315Z","MostPoints":120,"MostPointsAt":"2023-02-16T05:25:48.911038Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911038Z","LastActivityAt":"2023-02-16T05:25:48.911038Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912539Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":687,"ScoreDef":285903,"RankSup":1096,"ScoreSup":1872,"RankTotal":1015,"ScoreTotal":287775,"ID":6083448,"Name":"rafalzak","NumVillages":1,"Points":1141,"Rank":1807,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6083448","BestRank":1807,"BestRankAt":"2023-02-16T05:25:56.199315Z","MostPoints":1141,"MostPointsAt":"2023-02-16T05:25:56.199315Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911038Z","LastActivityAt":"2023-02-16T05:25:56.199316Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912541Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1462,"ScoreAtt":2843,"RankDef":485,"ScoreDef":552089,"RankSup":1012,"ScoreSup":4194,"RankTotal":797,"ScoreTotal":559126,"ID":6101033,"Name":"Smiatuniu","NumVillages":2,"Points":7762,"Rank":1168,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6101033","BestRank":1168,"BestRankAt":"2023-02-16T05:25:56.199316Z","MostPoints":7762,"MostPointsAt":"2023-02-16T05:25:48.911039Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911039Z","LastActivityAt":"2023-02-16T05:25:48.911039Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912541Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1430,"ScoreAtt":3386,"RankDef":2138,"ScoreDef":1882,"RankSup":0,"ScoreSup":0,"RankTotal":2114,"ScoreTotal":5268,"ID":6111938,"Name":"krzysztof wspaniaƂy","NumVillages":1,"Points":4068,"Rank":1396,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6111938","BestRank":1396,"BestRankAt":"2023-02-16T05:25:56.199316Z","MostPoints":4068,"MostPointsAt":"2023-02-16T05:25:48.911039Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911039Z","LastActivityAt":"2023-02-16T05:25:56.199317Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912543Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":344,"ScoreAtt":729067,"RankDef":1429,"ScoreDef":39674,"RankSup":144,"ScoreSup":1553402,"RankTotal":369,"ScoreTotal":2322143,"ID":6116940,"Name":"piĂłro78","NumVillages":58,"Points":445415,"Rank":286,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6116940","BestRank":286,"BestRankAt":"2023-02-16T05:25:56.199317Z","MostPoints":445415,"MostPointsAt":"2023-02-16T05:25:56.199317Z","MostVillages":58,"MostVillagesAt":"2023-02-16T05:25:56.199317Z","LastActivityAt":"2023-02-16T05:25:56.199317Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912545Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":619,"ScoreAtt":190630,"RankDef":299,"ScoreDef":1177392,"RankSup":942,"ScoreSup":8087,"RankTotal":524,"ScoreTotal":1376109,"ID":6118079,"Name":"geoo","NumVillages":25,"Points":154431,"Rank":462,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6118079","BestRank":459,"BestRankAt":"2023-02-16T05:25:48.91104Z","MostPoints":154431,"MostPointsAt":"2023-02-16T05:25:56.199318Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:48.91104Z","LastActivityAt":"2023-02-16T05:25:56.199318Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912548Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1577,"ScoreAtt":1449,"RankDef":1092,"ScoreDef":95109,"RankSup":0,"ScoreSup":0,"RankTotal":1397,"ScoreTotal":96558,"ID":6121024,"Name":"topolskia","NumVillages":2,"Points":11204,"Rank":1054,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6121024","BestRank":1054,"BestRankAt":"2023-02-16T05:25:56.199318Z","MostPoints":11204,"MostPointsAt":"2023-02-16T05:25:56.199318Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911041Z","LastActivityAt":"2023-02-16T05:25:56.199318Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912549Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1132,"ScoreAtt":15727,"RankDef":1460,"ScoreDef":37585,"RankSup":1013,"ScoreSup":4358,"RankTotal":1572,"ScoreTotal":57670,"ID":6121519,"Name":"876g","NumVillages":0,"Points":0,"Rank":2910,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6121519","BestRank":2910,"BestRankAt":"2023-02-16T05:25:48.911041Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911042Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911042Z","LastActivityAt":"2023-02-16T05:25:48.911042Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912551Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1097,"ScoreAtt":18145,"RankDef":2085,"ScoreDef":2749,"RankSup":0,"ScoreSup":0,"RankTotal":1854,"ScoreTotal":20894,"ID":6127190,"Name":"kuka1","NumVillages":10,"Points":24398,"Rank":872,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6127190","BestRank":870,"BestRankAt":"2023-02-16T05:25:48.911042Z","MostPoints":24398,"MostPointsAt":"2023-02-16T05:25:56.199319Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.911042Z","LastActivityAt":"2023-02-16T05:25:56.199319Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912553Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1036,"ScoreAtt":24823,"RankDef":1000,"ScoreDef":125418,"RankSup":875,"ScoreSup":14134,"RankTotal":1219,"ScoreTotal":164375,"ID":6131106,"Name":"pinqa","NumVillages":26,"Points":151194,"Rank":466,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6131106","BestRank":466,"BestRankAt":"2023-02-16T05:25:56.199319Z","MostPoints":151194,"MostPointsAt":"2023-02-16T05:25:56.199319Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:48.911043Z","LastActivityAt":"2023-02-16T05:25:56.199319Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912553Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6135387,"Name":"FreestylerWLKW","NumVillages":1,"Points":1320,"Rank":1770,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6135387","BestRank":1770,"BestRankAt":"2023-02-16T05:25:56.19932Z","MostPoints":1320,"MostPointsAt":"2023-02-16T05:25:48.911043Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911043Z","LastActivityAt":"2023-02-16T05:25:48.911043Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912556Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":797,"ScoreAtt":82082,"RankDef":618,"ScoreDef":360143,"RankSup":698,"ScoreSup":50996,"RankTotal":845,"ScoreTotal":493221,"ID":6136757,"Name":"Kaffik","NumVillages":15,"Points":97246,"Rank":545,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6136757","BestRank":545,"BestRankAt":"2023-02-16T05:25:56.19932Z","MostPoints":97246,"MostPointsAt":"2023-02-16T05:25:56.19932Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.911044Z","LastActivityAt":"2023-02-16T05:25:56.19932Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912558Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2062,"ScoreDef":3258,"RankSup":0,"ScoreSup":0,"RankTotal":2179,"ScoreTotal":3258,"ID":6143689,"Name":"vacik11","NumVillages":1,"Points":474,"Rank":2025,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6143689","BestRank":1354,"BestRankAt":"2023-02-16T05:25:48.911044Z","MostPoints":4726,"MostPointsAt":"2023-02-16T05:25:48.911044Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911044Z","LastActivityAt":"2023-02-16T05:25:48.911044Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91256Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2091,"ScoreDef":2637,"RankSup":0,"ScoreSup":0,"RankTotal":2203,"ScoreTotal":2637,"ID":6145316,"Name":"zabario1","NumVillages":0,"Points":0,"Rank":2881,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6145316","BestRank":2881,"BestRankAt":"2023-02-16T05:25:56.199321Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911045Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911045Z","LastActivityAt":"2023-02-16T05:25:48.911045Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91256Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":561,"ScoreAtt":261778,"RankDef":1806,"ScoreDef":11694,"RankSup":318,"ScoreSup":468430,"RankTotal":706,"ScoreTotal":741902,"ID":6160655,"Name":"Hubix55","NumVillages":36,"Points":263979,"Rank":374,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6160655","BestRank":374,"BestRankAt":"2023-02-16T05:25:56.199322Z","MostPoints":263979,"MostPointsAt":"2023-02-16T05:25:56.199322Z","MostVillages":36,"MostVillagesAt":"2023-02-16T05:25:48.911045Z","LastActivityAt":"2023-02-16T05:25:56.199322Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1517,"ScoreDef":31755,"RankSup":0,"ScoreSup":0,"RankTotal":1753,"ScoreTotal":31755,"ID":6167751,"Name":"wlamus61","NumVillages":3,"Points":7237,"Rank":1198,"TribeID":1278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6167751","BestRank":1198,"BestRankAt":"2023-02-16T05:25:56.199322Z","MostPoints":7237,"MostPointsAt":"2023-02-16T05:25:56.199322Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.911046Z","LastActivityAt":"2023-02-16T05:25:56.199322Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":296,"ScoreAtt":940764,"RankDef":1052,"ScoreDef":107036,"RankSup":439,"ScoreSup":245474,"RankTotal":543,"ScoreTotal":1293274,"ID":6169408,"Name":"Hasava","NumVillages":89,"Points":612880,"Rank":234,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6169408","BestRank":234,"BestRankAt":"2023-02-16T05:25:56.199323Z","MostPoints":612880,"MostPointsAt":"2023-02-16T05:25:56.199323Z","MostVillages":89,"MostVillagesAt":"2023-02-16T05:25:48.911046Z","LastActivityAt":"2023-02-16T05:25:56.199323Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1455,"ScoreAtt":2985,"RankDef":1297,"ScoreDef":57467,"RankSup":0,"ScoreSup":0,"RankTotal":1547,"ScoreTotal":60452,"ID":6171569,"Name":"andrzej84","NumVillages":6,"Points":19872,"Rank":919,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6171569","BestRank":919,"BestRankAt":"2023-02-16T05:25:48.911047Z","MostPoints":19872,"MostPointsAt":"2023-02-16T05:25:48.911047Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.911047Z","LastActivityAt":"2023-02-16T05:25:48.911047Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912567Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":700,"ScoreAtt":127108,"RankDef":694,"ScoreDef":282124,"RankSup":1326,"ScoreSup":12,"RankTotal":909,"ScoreTotal":409244,"ID":6174010,"Name":"MARCINEK GROĆ»NY","NumVillages":1,"Points":369,"Rank":2098,"TribeID":1599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6174010","BestRank":2098,"BestRankAt":"2023-02-16T05:25:56.199324Z","MostPoints":369,"MostPointsAt":"2023-02-16T05:25:56.199324Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911048Z","LastActivityAt":"2023-02-16T05:25:56.199324Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6178803,"Name":"shakeit1","NumVillages":1,"Points":26,"Rank":2610,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6178803","BestRank":2610,"BestRankAt":"2023-02-16T05:25:56.199324Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911048Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911048Z","LastActivityAt":"2023-02-16T05:25:48.911048Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912571Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":18,"ScoreAtt":8216200,"RankDef":39,"ScoreDef":8432642,"RankSup":65,"ScoreSup":2922076,"RankTotal":29,"ScoreTotal":19570918,"ID":6180190,"Name":"Chcesz remont?","NumVillages":296,"Points":2511447,"Rank":26,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6180190","BestRank":26,"BestRankAt":"2023-02-16T05:25:48.911049Z","MostPoints":2511447,"MostPointsAt":"2023-02-16T05:25:56.199325Z","MostVillages":296,"MostVillagesAt":"2023-02-16T05:25:56.199325Z","LastActivityAt":"2023-02-16T05:25:56.199325Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912571Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1918,"ScoreAtt":31,"RankDef":884,"ScoreDef":175319,"RankSup":498,"ScoreSup":173656,"RankTotal":960,"ScoreTotal":349006,"ID":6186491,"Name":"andrux","NumVillages":4,"Points":14930,"Rank":1000,"TribeID":211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6186491","BestRank":1000,"BestRankAt":"2023-02-16T05:25:56.199325Z","MostPoints":14930,"MostPointsAt":"2023-02-16T05:25:56.199325Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.911049Z","LastActivityAt":"2023-02-16T05:25:56.199325Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6193337,"Name":"smagi007","NumVillages":1,"Points":887,"Rank":1872,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6193337","BestRank":1872,"BestRankAt":"2023-02-16T05:25:56.199326Z","MostPoints":887,"MostPointsAt":"2023-02-16T05:25:56.199326Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91105Z","LastActivityAt":"2023-02-16T05:25:56.199326Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912576Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1004,"ScoreAtt":28955,"RankDef":2306,"ScoreDef":194,"RankSup":864,"ScoreSup":14982,"RankTotal":1645,"ScoreTotal":44131,"ID":6212605,"Name":"ADAMUS75","NumVillages":25,"Points":155778,"Rank":457,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6212605","BestRank":457,"BestRankAt":"2023-02-16T05:25:56.199326Z","MostPoints":155778,"MostPointsAt":"2023-02-16T05:25:56.199327Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:56.199326Z","LastActivityAt":"2023-02-16T05:25:56.199327Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912578Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1189,"ScoreAtt":10973,"RankDef":1670,"ScoreDef":20135,"RankSup":0,"ScoreSup":0,"RankTotal":1758,"ScoreTotal":31108,"ID":6240801,"Name":"MrTed","NumVillages":8,"Points":38110,"Rank":753,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6240801","BestRank":753,"BestRankAt":"2023-02-16T05:25:56.199327Z","MostPoints":38110,"MostPointsAt":"2023-02-16T05:25:56.199327Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.911051Z","LastActivityAt":"2023-02-16T05:25:56.199327Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912578Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":665,"ScoreAtt":147534,"RankDef":611,"ScoreDef":367771,"RankSup":777,"ScoreSup":29924,"RankTotal":805,"ScoreTotal":545229,"ID":6242167,"Name":"colt9","NumVillages":1,"Points":26,"Rank":2611,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6242167","BestRank":2611,"BestRankAt":"2023-02-16T05:25:56.199327Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911052Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911051Z","LastActivityAt":"2023-02-16T05:25:48.911052Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91258Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2295,"ScoreDef":231,"RankSup":0,"ScoreSup":0,"RankTotal":2375,"ScoreTotal":231,"ID":6243588,"Name":"deEdion","NumVillages":1,"Points":9777,"Rank":1090,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6243588","BestRank":1090,"BestRankAt":"2023-02-16T05:25:48.911052Z","MostPoints":9777,"MostPointsAt":"2023-02-16T05:25:48.911052Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911052Z","LastActivityAt":"2023-02-16T05:25:48.911052Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912583Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1411,"ScoreAtt":3769,"RankDef":466,"ScoreDef":580095,"RankSup":0,"ScoreSup":0,"RankTotal":782,"ScoreTotal":583864,"ID":6249486,"Name":"REXMUNDI","NumVillages":1,"Points":3881,"Rank":1411,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6249486","BestRank":1411,"BestRankAt":"2023-02-16T05:25:56.199328Z","MostPoints":3881,"MostPointsAt":"2023-02-16T05:25:48.911053Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911053Z","LastActivityAt":"2023-02-16T05:25:48.911053Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912583Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6249524,"Name":"hornet9","NumVillages":1,"Points":26,"Rank":2612,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6249524","BestRank":2612,"BestRankAt":"2023-02-16T05:25:56.199329Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911053Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911053Z","LastActivityAt":"2023-02-16T05:25:48.911053Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912586Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":177,"ScoreAtt":1807600,"RankDef":733,"ScoreDef":255973,"RankSup":218,"ScoreSup":817951,"RankTotal":304,"ScoreTotal":2881524,"ID":6258092,"Name":"tarcza55","NumVillages":124,"Points":1104200,"Rank":125,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6258092","BestRank":125,"BestRankAt":"2023-02-16T05:25:48.911054Z","MostPoints":1104200,"MostPointsAt":"2023-02-16T05:25:56.199329Z","MostVillages":124,"MostVillagesAt":"2023-02-16T05:25:48.911054Z","LastActivityAt":"2023-02-16T05:25:56.19933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912588Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1346,"ScoreAtt":5271,"RankDef":2160,"ScoreDef":1590,"RankSup":0,"ScoreSup":0,"RankTotal":2063,"ScoreTotal":6861,"ID":6262469,"Name":"Muck123","NumVillages":0,"Points":0,"Rank":2882,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6262469","BestRank":2882,"BestRankAt":"2023-02-16T05:25:56.19933Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911054Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911054Z","LastActivityAt":"2023-02-16T05:25:48.911054Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91259Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":630,"ScoreDef":343571,"RankSup":0,"ScoreSup":0,"RankTotal":965,"ScoreTotal":343571,"ID":6270765,"Name":"MoistVonLipwing","NumVillages":1,"Points":26,"Rank":2613,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6270765","BestRank":2613,"BestRankAt":"2023-02-16T05:25:56.19933Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911055Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911055Z","LastActivityAt":"2023-02-16T05:25:48.911055Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91259Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2149,"ScoreDef":1785,"RankSup":0,"ScoreSup":0,"RankTotal":2246,"ScoreTotal":1785,"ID":6276208,"Name":"biesta","NumVillages":1,"Points":463,"Rank":2029,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6276208","BestRank":2029,"BestRankAt":"2023-02-16T05:25:56.199331Z","MostPoints":463,"MostPointsAt":"2023-02-16T05:25:48.911055Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911055Z","LastActivityAt":"2023-02-16T05:25:48.911055Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":832,"ScoreAtt":70209,"RankDef":245,"ScoreDef":1551356,"RankSup":469,"ScoreSup":200063,"RankTotal":435,"ScoreTotal":1821628,"ID":6276419,"Name":"gerania","NumVillages":0,"Points":0,"Rank":2883,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6276419","BestRank":2883,"BestRankAt":"2023-02-16T05:25:56.199331Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911056Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911056Z","LastActivityAt":"2023-02-16T05:25:48.911056Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1564,"ScoreAtt":1603,"RankDef":1166,"ScoreDef":79689,"RankSup":590,"ScoreSup":103544,"RankTotal":1175,"ScoreTotal":184836,"ID":6284929,"Name":"antenkay","NumVillages":1,"Points":1177,"Rank":1795,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6284929","BestRank":1795,"BestRankAt":"2023-02-16T05:25:56.199332Z","MostPoints":1177,"MostPointsAt":"2023-02-16T05:25:56.199332Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911056Z","LastActivityAt":"2023-02-16T05:25:56.199332Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912595Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1898,"ScoreAtt":42,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2448,"ScoreTotal":42,"ID":6294942,"Name":"sendzia555","NumVillages":1,"Points":139,"Rank":2373,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6294942","BestRank":2373,"BestRankAt":"2023-02-16T05:25:56.199332Z","MostPoints":139,"MostPointsAt":"2023-02-16T05:25:56.199332Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911057Z","LastActivityAt":"2023-02-16T05:25:56.199333Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1702,"ScoreAtt":523,"RankDef":424,"ScoreDef":676417,"RankSup":0,"ScoreSup":0,"RankTotal":740,"ScoreTotal":676940,"ID":6296228,"Name":"oleska2002","NumVillages":1,"Points":2999,"Rank":1513,"TribeID":475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6296228","BestRank":1513,"BestRankAt":"2023-02-16T05:25:56.199333Z","MostPoints":2999,"MostPointsAt":"2023-02-16T05:25:56.199333Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911057Z","LastActivityAt":"2023-02-16T05:25:56.199333Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6298409,"Name":"Krzysztofeks16","NumVillages":1,"Points":182,"Rank":2308,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6298409","BestRank":2308,"BestRankAt":"2023-02-16T05:25:56.199333Z","MostPoints":182,"MostPointsAt":"2023-02-16T05:25:48.911058Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911058Z","LastActivityAt":"2023-02-16T05:25:48.911058Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1126,"ScoreAtt":15778,"RankDef":900,"ScoreDef":167506,"RankSup":995,"ScoreSup":5130,"RankTotal":1164,"ScoreTotal":188414,"ID":6299408,"Name":"tylos3","NumVillages":10,"Points":55423,"Rank":669,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6299408","BestRank":669,"BestRankAt":"2023-02-16T05:25:56.199334Z","MostPoints":55423,"MostPointsAt":"2023-02-16T05:25:56.199334Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:56.199334Z","LastActivityAt":"2023-02-16T05:25:56.199334Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912602Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1855,"ScoreDef":9620,"RankSup":0,"ScoreSup":0,"RankTotal":1999,"ScoreTotal":9620,"ID":6300771,"Name":"PetC","NumVillages":1,"Points":308,"Rank":2148,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6300771","BestRank":2148,"BestRankAt":"2023-02-16T05:25:56.199335Z","MostPoints":308,"MostPointsAt":"2023-02-16T05:25:56.199335Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911059Z","LastActivityAt":"2023-02-16T05:25:56.199335Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912604Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":960,"ScoreDef":142557,"RankSup":776,"ScoreSup":29960,"RankTotal":1204,"ScoreTotal":172517,"ID":6301789,"Name":"Ewelinaq","NumVillages":3,"Points":8317,"Rank":1140,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6301789","BestRank":1140,"BestRankAt":"2023-02-16T05:25:56.199335Z","MostPoints":8317,"MostPointsAt":"2023-02-16T05:25:56.199335Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.91106Z","LastActivityAt":"2023-02-16T05:25:56.199335Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912606Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":994,"ScoreAtt":30916,"RankDef":95,"ScoreDef":3672613,"RankSup":821,"ScoreSup":20316,"RankTotal":247,"ScoreTotal":3723845,"ID":6308670,"Name":"Artemida-21","NumVillages":0,"Points":0,"Rank":2884,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6308670","BestRank":2884,"BestRankAt":"2023-02-16T05:25:56.199336Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.91106Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.91106Z","LastActivityAt":"2023-02-16T05:25:48.91106Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912608Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1840,"ScoreAtt":121,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2411,"ScoreTotal":121,"ID":6310214,"Name":"bino666","NumVillages":1,"Points":428,"Rank":2055,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6310214","BestRank":2055,"BestRankAt":"2023-02-16T05:25:56.199336Z","MostPoints":428,"MostPointsAt":"2023-02-16T05:25:56.199336Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911061Z","LastActivityAt":"2023-02-16T05:25:56.199336Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912609Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1077,"ScoreAtt":20168,"RankDef":1762,"ScoreDef":14327,"RankSup":0,"ScoreSup":0,"RankTotal":1725,"ScoreTotal":34495,"ID":6315553,"Name":"LESTAT SKI","NumVillages":6,"Points":16768,"Rank":972,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6315553","BestRank":972,"BestRankAt":"2023-02-16T05:25:56.199337Z","MostPoints":16768,"MostPointsAt":"2023-02-16T05:25:56.199337Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.911061Z","LastActivityAt":"2023-02-16T05:25:56.199337Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912611Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1952,"ScoreAtt":13,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2497,"ScoreTotal":13,"ID":6323735,"Name":"Kaczoland","NumVillages":1,"Points":222,"Rank":2241,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6323735","BestRank":2241,"BestRankAt":"2023-02-16T05:25:56.199337Z","MostPoints":222,"MostPointsAt":"2023-02-16T05:25:56.199337Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911062Z","LastActivityAt":"2023-02-16T05:25:56.199337Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912615Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6326215,"Name":"afibatin","NumVillages":1,"Points":58,"Rank":2531,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6326215","BestRank":2531,"BestRankAt":"2023-02-16T05:25:56.199338Z","MostPoints":58,"MostPointsAt":"2023-02-16T05:25:48.911063Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911062Z","LastActivityAt":"2023-02-16T05:25:48.911063Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":877,"ScoreAtt":55768,"RankDef":1783,"ScoreDef":13300,"RankSup":1043,"ScoreSup":2998,"RankTotal":1488,"ScoreTotal":72066,"ID":6326324,"Name":"LubieĆŒny Mietek","NumVillages":1,"Points":26,"Rank":2614,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6326324","BestRank":2614,"BestRankAt":"2023-02-16T05:25:56.199338Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911063Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911063Z","LastActivityAt":"2023-02-16T05:25:48.911063Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2127,"ScoreDef":2043,"RankSup":868,"ScoreSup":14565,"RankTotal":1907,"ScoreTotal":16608,"ID":6330147,"Name":"marcelinor","NumVillages":0,"Points":0,"Rank":2885,"TribeID":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6330147","BestRank":2885,"BestRankAt":"2023-02-16T05:25:56.199339Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911064Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911064Z","LastActivityAt":"2023-02-16T05:25:48.911064Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":691,"ScoreAtt":134942,"RankDef":232,"ScoreDef":1656957,"RankSup":625,"ScoreSup":85354,"RankTotal":428,"ScoreTotal":1877253,"ID":6343784,"Name":"reiter 13","NumVillages":52,"Points":295742,"Rank":357,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6343784","BestRank":357,"BestRankAt":"2023-02-16T05:25:56.199339Z","MostPoints":295742,"MostPointsAt":"2023-02-16T05:25:56.199339Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:48.911064Z","LastActivityAt":"2023-02-16T05:25:56.199339Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":369,"ScoreAtt":650787,"RankDef":607,"ScoreDef":373066,"RankSup":235,"ScoreSup":759781,"RankTotal":447,"ScoreTotal":1783634,"ID":6354098,"Name":"Wioska MiaƂa Być Pusta","NumVillages":87,"Points":595120,"Rank":243,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6354098","BestRank":243,"BestRankAt":"2023-02-16T05:25:56.19934Z","MostPoints":595120,"MostPointsAt":"2023-02-16T05:25:56.19934Z","MostVillages":87,"MostVillagesAt":"2023-02-16T05:25:48.911065Z","LastActivityAt":"2023-02-16T05:25:56.19934Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1708,"ScoreAtt":492,"RankDef":2458,"ScoreDef":8,"RankSup":0,"ScoreSup":0,"RankTotal":2330,"ScoreTotal":500,"ID":6354962,"Name":"filips 19","NumVillages":1,"Points":2442,"Rank":1581,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6354962","BestRank":1581,"BestRankAt":"2023-02-16T05:25:56.19934Z","MostPoints":2442,"MostPointsAt":"2023-02-16T05:25:56.199341Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911065Z","LastActivityAt":"2023-02-16T05:25:56.199341Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2285,"ScoreDef":262,"RankSup":0,"ScoreSup":0,"RankTotal":2368,"ScoreTotal":262,"ID":6379173,"Name":"pierszak","NumVillages":1,"Points":574,"Rank":1980,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6379173","BestRank":1980,"BestRankAt":"2023-02-16T05:25:56.199341Z","MostPoints":574,"MostPointsAt":"2023-02-16T05:25:56.199341Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911066Z","LastActivityAt":"2023-02-16T05:25:56.199341Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":131,"ScoreAtt":2319121,"RankDef":178,"ScoreDef":2081764,"RankSup":181,"ScoreSup":1103220,"RankTotal":165,"ScoreTotal":5504105,"ID":6384450,"Name":"ronislaw007","NumVillages":71,"Points":642753,"Rank":221,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6384450","BestRank":221,"BestRankAt":"2023-02-16T05:25:56.199341Z","MostPoints":642753,"MostPointsAt":"2023-02-16T05:25:56.199342Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:48.911066Z","LastActivityAt":"2023-02-16T05:25:56.199342Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1821,"ScoreAtt":143,"RankDef":841,"ScoreDef":191094,"RankSup":1271,"ScoreSup":58,"RankTotal":1157,"ScoreTotal":191295,"ID":6395848,"Name":"pit71","NumVillages":1,"Points":3598,"Rank":1439,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6395848","BestRank":1439,"BestRankAt":"2023-02-16T05:25:56.199342Z","MostPoints":3598,"MostPointsAt":"2023-02-16T05:25:56.199342Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911067Z","LastActivityAt":"2023-02-16T05:25:56.199342Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1943,"ScoreDef":6297,"RankSup":0,"ScoreSup":0,"RankTotal":2078,"ScoreTotal":6297,"ID":6409472,"Name":"Best Wiedzmin","NumVillages":5,"Points":25482,"Rank":858,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6409472","BestRank":856,"BestRankAt":"2023-02-16T05:25:48.911067Z","MostPoints":25482,"MostPointsAt":"2023-02-16T05:25:48.911067Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.911067Z","LastActivityAt":"2023-02-16T05:25:48.911068Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":734,"ScoreAtt":109794,"RankDef":437,"ScoreDef":646106,"RankSup":795,"ScoreSup":25086,"RankTotal":689,"ScoreTotal":780986,"ID":6414286,"Name":"myszkof1","NumVillages":0,"Points":0,"Rank":2886,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6414286","BestRank":2886,"BestRankAt":"2023-02-16T05:25:56.199343Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911068Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911068Z","LastActivityAt":"2023-02-16T05:25:48.911068Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":857,"ScoreAtt":60218,"RankDef":1502,"ScoreDef":33364,"RankSup":1409,"ScoreSup":1,"RankTotal":1411,"ScoreTotal":93583,"ID":6416213,"Name":"Granit 19","NumVillages":5,"Points":21560,"Rank":898,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6416213","BestRank":898,"BestRankAt":"2023-02-16T05:25:48.911068Z","MostPoints":21560,"MostPointsAt":"2023-02-16T05:25:56.199344Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.911069Z","LastActivityAt":"2023-02-16T05:25:56.199344Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":932,"ScoreAtt":43532,"RankDef":1967,"ScoreDef":5655,"RankSup":731,"ScoreSup":40281,"RankTotal":1432,"ScoreTotal":89468,"ID":6417987,"Name":"majonespzn","NumVillages":27,"Points":193874,"Rank":424,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6417987","BestRank":424,"BestRankAt":"2023-02-16T05:25:56.199344Z","MostPoints":193874,"MostPointsAt":"2023-02-16T05:25:56.199344Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:48.911069Z","LastActivityAt":"2023-02-16T05:25:56.199344Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1766,"ScoreAtt":263,"RankDef":2251,"ScoreDef":500,"RankSup":0,"ScoreSup":0,"RankTotal":2305,"ScoreTotal":763,"ID":6423275,"Name":"Dorian888","NumVillages":1,"Points":514,"Rank":2005,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6423275","BestRank":2005,"BestRankAt":"2023-02-16T05:25:56.199345Z","MostPoints":514,"MostPointsAt":"2023-02-16T05:25:48.91107Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91107Z","LastActivityAt":"2023-02-16T05:25:48.91107Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91264Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1871,"ScoreAtt":72,"RankDef":635,"ScoreDef":340624,"RankSup":0,"ScoreSup":0,"RankTotal":968,"ScoreTotal":340696,"ID":6423719,"Name":"Bydlak777","NumVillages":0,"Points":0,"Rank":2887,"TribeID":185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6423719","BestRank":2887,"BestRankAt":"2023-02-16T05:25:56.199345Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.91107Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.91107Z","LastActivityAt":"2023-02-16T05:25:48.91107Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":392,"ScoreAtt":602948,"RankDef":1596,"ScoreDef":25643,"RankSup":658,"ScoreSup":67727,"RankTotal":735,"ScoreTotal":696318,"ID":6425087,"Name":"moniullka987","NumVillages":4,"Points":7162,"Rank":1200,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6425087","BestRank":1200,"BestRankAt":"2023-02-16T05:25:56.199346Z","MostPoints":7162,"MostPointsAt":"2023-02-16T05:25:56.199346Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.911071Z","LastActivityAt":"2023-02-16T05:25:56.199346Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6468217,"Name":"spiki2009","NumVillages":1,"Points":569,"Rank":1981,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6468217","BestRank":1981,"BestRankAt":"2023-02-16T05:25:56.199346Z","MostPoints":569,"MostPointsAt":"2023-02-16T05:25:48.911071Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911071Z","LastActivityAt":"2023-02-16T05:25:48.911071Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":662,"ScoreAtt":149787,"RankDef":1909,"ScoreDef":7320,"RankSup":0,"ScoreSup":0,"RankTotal":1235,"ScoreTotal":157107,"ID":6472706,"Name":"mondo96","NumVillages":7,"Points":29303,"Rank":826,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6472706","BestRank":826,"BestRankAt":"2023-02-16T05:25:56.199347Z","MostPoints":29303,"MostPointsAt":"2023-02-16T05:25:56.199347Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:56.199347Z","LastActivityAt":"2023-02-16T05:25:56.199347Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6474323,"Name":"sarab","NumVillages":1,"Points":1305,"Rank":1776,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6474323","BestRank":1776,"BestRankAt":"2023-02-16T05:25:56.199347Z","MostPoints":1305,"MostPointsAt":"2023-02-16T05:25:56.199347Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911072Z","LastActivityAt":"2023-02-16T05:25:56.199347Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6504658,"Name":"ADiKxD","NumVillages":1,"Points":55,"Rank":2564,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6504658","BestRank":2564,"BestRankAt":"2023-02-16T05:25:48.911073Z","MostPoints":55,"MostPointsAt":"2023-02-16T05:25:48.911073Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911073Z","LastActivityAt":"2023-02-16T05:25:48.911073Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912649Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":239,"ScoreAtt":1206064,"RankDef":651,"ScoreDef":322888,"RankSup":284,"ScoreSup":574249,"RankTotal":394,"ScoreTotal":2103201,"ID":6510480,"Name":"Bytomiak","NumVillages":135,"Points":1032696,"Rank":140,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6510480","BestRank":140,"BestRankAt":"2023-02-16T05:25:48.911073Z","MostPoints":1034996,"MostPointsAt":"2023-02-16T05:25:48.911074Z","MostVillages":136,"MostVillagesAt":"2023-02-16T05:25:48.911073Z","LastActivityAt":"2023-02-16T05:25:48.911074Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1873,"ScoreAtt":68,"RankDef":2030,"ScoreDef":3935,"RankSup":0,"ScoreSup":0,"RankTotal":2154,"ScoreTotal":4003,"ID":6516085,"Name":"EpSi1","NumVillages":1,"Points":925,"Rank":1864,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6516085","BestRank":1864,"BestRankAt":"2023-02-16T05:25:56.199348Z","MostPoints":925,"MostPointsAt":"2023-02-16T05:25:56.199348Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911074Z","LastActivityAt":"2023-02-16T05:25:56.199348Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1761,"ScoreAtt":278,"RankDef":1737,"ScoreDef":16430,"RankSup":0,"ScoreSup":0,"RankTotal":1902,"ScoreTotal":16708,"ID":6517003,"Name":"...bil...","NumVillages":1,"Points":1064,"Rank":1831,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6517003","BestRank":1831,"BestRankAt":"2023-02-16T05:25:56.199349Z","MostPoints":1064,"MostPointsAt":"2023-02-16T05:25:48.911075Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911075Z","LastActivityAt":"2023-02-16T05:25:48.911075Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":843,"ScoreAtt":66214,"RankDef":1567,"ScoreDef":28217,"RankSup":0,"ScoreSup":0,"RankTotal":1408,"ScoreTotal":94431,"ID":6517826,"Name":"maki5b","NumVillages":8,"Points":27427,"Rank":835,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6517826","BestRank":835,"BestRankAt":"2023-02-16T05:25:56.199349Z","MostPoints":27427,"MostPointsAt":"2023-02-16T05:25:56.199349Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.911075Z","LastActivityAt":"2023-02-16T05:25:56.199349Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":389,"ScoreAtt":605732,"RankDef":2065,"ScoreDef":3133,"RankSup":611,"ScoreSup":92249,"RankTotal":731,"ScoreTotal":701114,"ID":6520732,"Name":"lukassaw","NumVillages":27,"Points":241666,"Rank":383,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6520732","BestRank":383,"BestRankAt":"2023-02-16T05:25:56.19935Z","MostPoints":241666,"MostPointsAt":"2023-02-16T05:25:56.19935Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:56.19935Z","LastActivityAt":"2023-02-16T05:25:56.19935Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":278,"ScoreAtt":1007758,"RankDef":436,"ScoreDef":647531,"RankSup":820,"ScoreSup":20586,"RankTotal":465,"ScoreTotal":1675875,"ID":6528152,"Name":"blondynek23","NumVillages":46,"Points":311705,"Rank":348,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6528152","BestRank":348,"BestRankAt":"2023-02-16T05:25:56.19935Z","MostPoints":311705,"MostPointsAt":"2023-02-16T05:25:56.199351Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:56.199351Z","LastActivityAt":"2023-02-16T05:25:56.199351Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1653,"ScoreDef":21803,"RankSup":1211,"ScoreSup":307,"RankTotal":1843,"ScoreTotal":22110,"ID":6541079,"Name":"Pheniks2009","NumVillages":1,"Points":122,"Rank":2417,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6541079","BestRank":2417,"BestRankAt":"2023-02-16T05:25:56.199351Z","MostPoints":122,"MostPointsAt":"2023-02-16T05:25:48.911077Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911077Z","LastActivityAt":"2023-02-16T05:25:48.911077Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6545206,"Name":"xxxbestiaxxx","NumVillages":1,"Points":97,"Rank":2488,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6545206","BestRank":2488,"BestRankAt":"2023-02-16T05:25:48.911077Z","MostPoints":97,"MostPointsAt":"2023-02-16T05:25:48.911077Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911077Z","LastActivityAt":"2023-02-16T05:25:48.911077Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91267Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1086,"ScoreAtt":19559,"RankDef":1691,"ScoreDef":19017,"RankSup":0,"ScoreSup":0,"RankTotal":1692,"ScoreTotal":38576,"ID":6554011,"Name":"mateusz16180","NumVillages":1,"Points":101,"Rank":2458,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6554011","BestRank":2458,"BestRankAt":"2023-02-16T05:25:56.199352Z","MostPoints":101,"MostPointsAt":"2023-02-16T05:25:48.911078Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911078Z","LastActivityAt":"2023-02-16T05:25:48.911078Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2322,"ScoreDef":112,"RankSup":0,"ScoreSup":0,"RankTotal":2414,"ScoreTotal":112,"ID":6557487,"Name":"Fezzoo","NumVillages":1,"Points":26,"Rank":2615,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6557487","BestRank":2615,"BestRankAt":"2023-02-16T05:25:56.199352Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911078Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911078Z","LastActivityAt":"2023-02-16T05:25:48.911079Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1332,"ScoreAtt":5554,"RankDef":1790,"ScoreDef":12567,"RankSup":0,"ScoreSup":0,"RankTotal":1883,"ScoreTotal":18121,"ID":6557824,"Name":"nsplus","NumVillages":1,"Points":191,"Rank":2296,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6557824","BestRank":2296,"BestRankAt":"2023-02-16T05:25:56.199352Z","MostPoints":191,"MostPointsAt":"2023-02-16T05:25:48.911079Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911079Z","LastActivityAt":"2023-02-16T05:25:48.911079Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6577211,"Name":"TeroXer s","NumVillages":1,"Points":26,"Rank":2616,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6577211","BestRank":2616,"BestRankAt":"2023-02-16T05:25:56.199353Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.91108Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911079Z","LastActivityAt":"2023-02-16T05:25:48.91108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91268Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1915,"ScoreAtt":33,"RankDef":1779,"ScoreDef":13471,"RankSup":0,"ScoreSup":0,"RankTotal":1939,"ScoreTotal":13504,"ID":6590149,"Name":"Apollo8","NumVillages":1,"Points":403,"Rank":2069,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6590149","BestRank":2069,"BestRankAt":"2023-02-16T05:25:56.199353Z","MostPoints":403,"MostPointsAt":"2023-02-16T05:25:48.91108Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.91108Z","LastActivityAt":"2023-02-16T05:25:48.91108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91268Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":687,"ScoreAtt":138883,"RankDef":1197,"ScoreDef":72792,"RankSup":494,"ScoreSup":176773,"RankTotal":929,"ScoreTotal":388448,"ID":6606543,"Name":"borek102","NumVillages":1,"Points":5502,"Rank":1293,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6606543","BestRank":1293,"BestRankAt":"2023-02-16T05:25:56.199354Z","MostPoints":5502,"MostPointsAt":"2023-02-16T05:25:56.199354Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911081Z","LastActivityAt":"2023-02-16T05:25:56.199354Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1954,"ScoreAtt":9,"RankDef":1641,"ScoreDef":22757,"RankSup":0,"ScoreSup":0,"RankTotal":1834,"ScoreTotal":22766,"ID":6617912,"Name":"leolen","NumVillages":1,"Points":2639,"Rank":1560,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6617912","BestRank":1560,"BestRankAt":"2023-02-16T05:25:56.199354Z","MostPoints":2639,"MostPointsAt":"2023-02-16T05:25:56.199355Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911081Z","LastActivityAt":"2023-02-16T05:25:56.199355Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":860,"ScoreAtt":59939,"RankDef":444,"ScoreDef":633567,"RankSup":1030,"ScoreSup":3360,"RankTotal":733,"ScoreTotal":696866,"ID":6618608,"Name":"pawƂapiotra","NumVillages":4,"Points":7299,"Rank":1194,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6618608","BestRank":1194,"BestRankAt":"2023-02-16T05:25:56.199355Z","MostPoints":7299,"MostPointsAt":"2023-02-16T05:25:56.199355Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.911082Z","LastActivityAt":"2023-02-16T05:25:56.199355Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":583,"ScoreAtt":234479,"RankDef":300,"ScoreDef":1176858,"RankSup":411,"ScoreSup":297777,"RankTotal":461,"ScoreTotal":1709114,"ID":6625437,"Name":"GRIGOR-2007","NumVillages":19,"Points":127779,"Rank":495,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6625437","BestRank":495,"BestRankAt":"2023-02-16T05:25:56.199356Z","MostPoints":127779,"MostPointsAt":"2023-02-16T05:25:56.199356Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:48.911082Z","LastActivityAt":"2023-02-16T05:25:56.199356Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91269Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":492,"ScoreDef":537399,"RankSup":0,"ScoreSup":0,"RankTotal":814,"ScoreTotal":537399,"ID":6625716,"Name":"zollmeister","NumVillages":0,"Points":0,"Rank":2888,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6625716","BestRank":2888,"BestRankAt":"2023-02-16T05:25:56.199356Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.911083Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.911083Z","LastActivityAt":"2023-02-16T05:25:48.911083Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6643002,"Name":"HAPPYxxx","NumVillages":1,"Points":61,"Rank":2557,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6643002","BestRank":2557,"BestRankAt":"2023-02-16T05:25:48.911083Z","MostPoints":61,"MostPointsAt":"2023-02-16T05:25:48.911083Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911083Z","LastActivityAt":"2023-02-16T05:25:48.911084Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912696Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":643,"ScoreDef":330551,"RankSup":1038,"ScoreSup":3079,"RankTotal":973,"ScoreTotal":333630,"ID":6647535,"Name":"Qtafon","NumVillages":1,"Points":1007,"Rank":1846,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6647535","BestRank":1846,"BestRankAt":"2023-02-16T05:25:56.199357Z","MostPoints":1007,"MostPointsAt":"2023-02-16T05:25:48.911084Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911084Z","LastActivityAt":"2023-02-16T05:25:48.911084Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2400,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2501,"ScoreTotal":13,"ID":6647642,"Name":"ajnoƂ","NumVillages":1,"Points":3170,"Rank":1490,"TribeID":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6647642","BestRank":1490,"BestRankAt":"2023-02-16T05:25:56.199357Z","MostPoints":3170,"MostPointsAt":"2023-02-16T05:25:56.199357Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911084Z","LastActivityAt":"2023-02-16T05:25:56.199357Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1907,"ScoreAtt":37,"RankDef":2371,"ScoreDef":26,"RankSup":0,"ScoreSup":0,"RankTotal":2435,"ScoreTotal":63,"ID":6651072,"Name":"Tomek 20011989","NumVillages":2,"Points":4213,"Rank":1381,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6651072","BestRank":1381,"BestRankAt":"2023-02-16T05:25:56.199358Z","MostPoints":4213,"MostPointsAt":"2023-02-16T05:25:48.911085Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.911085Z","LastActivityAt":"2023-02-16T05:25:48.911085Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1027,"ScoreAtt":26508,"RankDef":572,"ScoreDef":407287,"RankSup":0,"ScoreSup":0,"RankTotal":883,"ScoreTotal":433795,"ID":6654098,"Name":"P-406","NumVillages":1,"Points":1360,"Rank":1765,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6654098","BestRank":1765,"BestRankAt":"2023-02-16T05:25:56.199358Z","MostPoints":1360,"MostPointsAt":"2023-02-16T05:25:48.911086Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911086Z","LastActivityAt":"2023-02-16T05:25:48.911086Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1434,"ScoreAtt":3286,"RankDef":2154,"ScoreDef":1708,"RankSup":0,"ScoreSup":0,"RankTotal":2124,"ScoreTotal":4994,"ID":6658016,"Name":"DoRoCiA95","NumVillages":1,"Points":2006,"Rank":1652,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6658016","BestRank":1652,"BestRankAt":"2023-02-16T05:25:56.199359Z","MostPoints":2006,"MostPointsAt":"2023-02-16T05:25:56.199359Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911086Z","LastActivityAt":"2023-02-16T05:25:56.199359Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.912706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6670484,"Name":"Moddark","NumVillages":1,"Points":26,"Rank":2617,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6670484","BestRank":2617,"BestRankAt":"2023-02-16T05:25:56.199359Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.911087Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.911087Z","LastActivityAt":"2023-02-16T05:25:48.911087Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.91271Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2304,"ScoreDef":200,"RankSup":1023,"ScoreSup":3688,"RankTotal":2159,"ScoreTotal":3888,"ID":6674092,"Name":"wladyslaw011","NumVillages":1,"Points":2104,"Rank":1635,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6674092","BestRank":1635,"BestRankAt":"2023-02-16T05:25:56.19936Z","MostPoints":2104,"MostPointsAt":"2023-02-16T05:25:48.971403Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971403Z","LastActivityAt":"2023-02-16T05:25:48.971403Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2182,"ScoreDef":1209,"RankSup":0,"ScoreSup":0,"RankTotal":2282,"ScoreTotal":1209,"ID":6677893,"Name":"superpuszka","NumVillages":1,"Points":276,"Rank":2186,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6677893","BestRank":2186,"BestRankAt":"2023-02-16T05:25:56.19936Z","MostPoints":276,"MostPointsAt":"2023-02-16T05:25:48.971404Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971404Z","LastActivityAt":"2023-02-16T05:25:48.971404Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2457,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2529,"ScoreTotal":10,"ID":6692351,"Name":"nicoleesme","NumVillages":1,"Points":1381,"Rank":1759,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6692351","BestRank":1759,"BestRankAt":"2023-02-16T05:25:56.199361Z","MostPoints":1381,"MostPointsAt":"2023-02-16T05:25:48.971405Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971405Z","LastActivityAt":"2023-02-16T05:25:48.971405Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1439,"ScoreDef":38878,"RankSup":0,"ScoreSup":0,"RankTotal":1685,"ScoreTotal":38878,"ID":6704738,"Name":"Miko6","NumVillages":1,"Points":312,"Rank":2143,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6704738","BestRank":2143,"BestRankAt":"2023-02-16T05:25:56.199361Z","MostPoints":312,"MostPointsAt":"2023-02-16T05:25:56.199361Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971405Z","LastActivityAt":"2023-02-16T05:25:56.199361Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1150,"ScoreDef":84324,"RankSup":0,"ScoreSup":0,"RankTotal":1446,"ScoreTotal":84324,"ID":6736666,"Name":"szopen966","NumVillages":0,"Points":0,"Rank":2889,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6736666","BestRank":2889,"BestRankAt":"2023-02-16T05:25:56.199362Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971406Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971406Z","LastActivityAt":"2023-02-16T05:25:48.971406Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6766467,"Name":"slawekx28","NumVillages":1,"Points":255,"Rank":2202,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6766467","BestRank":2202,"BestRankAt":"2023-02-16T05:25:56.199362Z","MostPoints":255,"MostPointsAt":"2023-02-16T05:25:48.971406Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971406Z","LastActivityAt":"2023-02-16T05:25:48.971406Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971839Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":955,"ScoreAtt":38076,"RankDef":763,"ScoreDef":235799,"RankSup":0,"ScoreSup":0,"RankTotal":1030,"ScoreTotal":273875,"ID":6786449,"Name":"=Wilku=","NumVillages":5,"Points":41461,"Rank":733,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6786449","BestRank":671,"BestRankAt":"2023-02-16T05:25:48.971407Z","MostPoints":53393,"MostPointsAt":"2023-02-16T05:25:48.971408Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971408Z","LastActivityAt":"2023-02-16T05:25:48.971408Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97184Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1684,"ScoreAtt":636,"RankDef":1272,"ScoreDef":59956,"RankSup":1276,"ScoreSup":46,"RankTotal":1545,"ScoreTotal":60638,"ID":6795280,"Name":"SUPER KRÓL PAWEƁ","NumVillages":1,"Points":3945,"Rank":1405,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6795280","BestRank":1405,"BestRankAt":"2023-02-16T05:25:56.199363Z","MostPoints":3945,"MostPointsAt":"2023-02-16T05:25:48.971408Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971408Z","LastActivityAt":"2023-02-16T05:25:48.971408Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97184Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":399,"ScoreAtt":592912,"RankDef":1712,"ScoreDef":17511,"RankSup":20,"ScoreSup":5390806,"RankTotal":152,"ScoreTotal":6001229,"ID":6818593,"Name":"CzarnamambaPL","NumVillages":111,"Points":848510,"Rank":172,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6818593","BestRank":172,"BestRankAt":"2023-02-16T05:25:48.971409Z","MostPoints":848510,"MostPointsAt":"2023-02-16T05:25:56.238602Z","MostVillages":111,"MostVillagesAt":"2023-02-16T05:25:48.971409Z","LastActivityAt":"2023-02-16T05:25:56.238602Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97184Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1920,"ScoreAtt":30,"RankDef":2004,"ScoreDef":4516,"RankSup":0,"ScoreSup":0,"RankTotal":2136,"ScoreTotal":4546,"ID":6821136,"Name":"3dychy","NumVillages":2,"Points":7537,"Rank":1179,"TribeID":1779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6821136","BestRank":1179,"BestRankAt":"2023-02-16T05:25:56.238603Z","MostPoints":7537,"MostPointsAt":"2023-02-16T05:25:48.97141Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.97141Z","LastActivityAt":"2023-02-16T05:25:48.97141Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97184Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1945,"ScoreDef":6170,"RankSup":0,"ScoreSup":0,"RankTotal":2080,"ScoreTotal":6170,"ID":6822085,"Name":"xmox","NumVillages":1,"Points":657,"Rank":1946,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6822085","BestRank":1946,"BestRankAt":"2023-02-16T05:25:56.238603Z","MostPoints":657,"MostPointsAt":"2023-02-16T05:25:56.238603Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97141Z","LastActivityAt":"2023-02-16T05:25:56.238603Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":281,"ScoreAtt":996704,"RankDef":504,"ScoreDef":513207,"RankSup":527,"ScoreSup":146788,"RankTotal":468,"ScoreTotal":1656699,"ID":6822957,"Name":"LegatusXI","NumVillages":59,"Points":522415,"Rank":260,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6822957","BestRank":260,"BestRankAt":"2023-02-16T05:25:56.238604Z","MostPoints":522415,"MostPointsAt":"2023-02-16T05:25:56.238604Z","MostVillages":59,"MostVillagesAt":"2023-02-16T05:25:48.971411Z","LastActivityAt":"2023-02-16T05:25:56.238604Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1953,"ScoreAtt":11,"RankDef":918,"ScoreDef":158068,"RankSup":0,"ScoreSup":0,"RankTotal":1231,"ScoreTotal":158079,"ID":6837266,"Name":"swenty1968","NumVillages":1,"Points":4996,"Rank":1323,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6837266","BestRank":1323,"BestRankAt":"2023-02-16T05:25:56.238604Z","MostPoints":4996,"MostPointsAt":"2023-02-16T05:25:48.971412Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971411Z","LastActivityAt":"2023-02-16T05:25:48.971412Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":6851059,"Name":"mustanq123","NumVillages":1,"Points":86,"Rank":2478,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6851059","BestRank":2478,"BestRankAt":"2023-02-16T05:25:56.238605Z","MostPoints":86,"MostPointsAt":"2023-02-16T05:25:48.971412Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971412Z","LastActivityAt":"2023-02-16T05:25:48.971412Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":217,"ScoreAtt":1421140,"RankDef":955,"ScoreDef":143492,"RankSup":46,"ScoreSup":3529767,"RankTotal":181,"ScoreTotal":5094399,"ID":6853693,"Name":"lukiuki","NumVillages":87,"Points":669577,"Rank":211,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6853693","BestRank":211,"BestRankAt":"2023-02-16T05:25:56.238605Z","MostPoints":669577,"MostPointsAt":"2023-02-16T05:25:56.238605Z","MostVillages":87,"MostVillagesAt":"2023-02-16T05:25:48.971413Z","LastActivityAt":"2023-02-16T05:25:56.238606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1106,"ScoreAtt":17494,"RankDef":2055,"ScoreDef":3366,"RankSup":862,"ScoreSup":15140,"RankTotal":1713,"ScoreTotal":36000,"ID":6857973,"Name":"popki 2","NumVillages":11,"Points":32028,"Rank":795,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6857973","BestRank":795,"BestRankAt":"2023-02-16T05:25:56.238606Z","MostPoints":32028,"MostPointsAt":"2023-02-16T05:25:56.238606Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.971413Z","LastActivityAt":"2023-02-16T05:25:56.238606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":710,"ScoreAtt":122043,"RankDef":1647,"ScoreDef":22103,"RankSup":1032,"ScoreSup":3351,"RankTotal":1252,"ScoreTotal":147497,"ID":6870350,"Name":"13kris","NumVillages":19,"Points":144132,"Rank":474,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6870350","BestRank":474,"BestRankAt":"2023-02-16T05:25:48.971414Z","MostPoints":144132,"MostPointsAt":"2023-02-16T05:25:56.238607Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:48.971414Z","LastActivityAt":"2023-02-16T05:25:56.238607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1253,"ScoreAtt":7684,"RankDef":750,"ScoreDef":243973,"RankSup":702,"ScoreSup":48782,"RankTotal":1003,"ScoreTotal":300439,"ID":6882236,"Name":"Rosawow","NumVillages":2,"Points":11779,"Rank":1047,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6882236","BestRank":1045,"BestRankAt":"2023-02-16T05:25:48.971415Z","MostPoints":11779,"MostPointsAt":"2023-02-16T05:25:48.971415Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971415Z","LastActivityAt":"2023-02-16T05:25:48.971415Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1609,"ScoreAtt":1127,"RankDef":1218,"ScoreDef":68631,"RankSup":0,"ScoreSup":0,"RankTotal":1503,"ScoreTotal":69758,"ID":6884492,"Name":"Janusz IV","NumVillages":7,"Points":50279,"Rank":692,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6884492","BestRank":689,"BestRankAt":"2023-02-16T05:25:48.971415Z","MostPoints":50279,"MostPointsAt":"2023-02-16T05:25:48.971416Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971416Z","LastActivityAt":"2023-02-16T05:25:48.971416Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1630,"ScoreAtt":920,"RankDef":1278,"ScoreDef":59545,"RankSup":0,"ScoreSup":0,"RankTotal":1546,"ScoreTotal":60465,"ID":6892517,"Name":"D.M.K.","NumVillages":4,"Points":9851,"Rank":1084,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6892517","BestRank":1084,"BestRankAt":"2023-02-16T05:25:56.238608Z","MostPoints":9851,"MostPointsAt":"2023-02-16T05:25:56.238608Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971416Z","LastActivityAt":"2023-02-16T05:25:56.238608Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":67,"ScoreAtt":4282751,"RankDef":6,"ScoreDef":32245198,"RankSup":35,"ScoreSup":4389969,"RankTotal":10,"ScoreTotal":40917918,"ID":6910361,"Name":"Kuzyn Kamil","NumVillages":36,"Points":145895,"Rank":471,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6910361","BestRank":471,"BestRankAt":"2023-02-16T05:25:56.238608Z","MostPoints":145895,"MostPointsAt":"2023-02-16T05:25:56.238609Z","MostVillages":36,"MostVillagesAt":"2023-02-16T05:25:48.971417Z","LastActivityAt":"2023-02-16T05:25:56.238609Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":84,"ScoreAtt":3771664,"RankDef":617,"ScoreDef":360466,"RankSup":83,"ScoreSup":2480125,"RankTotal":135,"ScoreTotal":6612255,"ID":6920960,"Name":"grzesiek9521","NumVillages":277,"Points":2407495,"Rank":30,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6920960","BestRank":30,"BestRankAt":"2023-02-16T05:25:56.238609Z","MostPoints":2407495,"MostPointsAt":"2023-02-16T05:25:56.238609Z","MostVillages":277,"MostVillagesAt":"2023-02-16T05:25:48.971417Z","LastActivityAt":"2023-02-16T05:25:56.238609Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":786,"ScoreAtt":85795,"RankDef":1966,"ScoreDef":5690,"RankSup":815,"ScoreSup":21922,"RankTotal":1343,"ScoreTotal":113407,"ID":6921135,"Name":"aksamitny71","NumVillages":16,"Points":76653,"Rank":594,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6921135","BestRank":594,"BestRankAt":"2023-02-16T05:25:56.23861Z","MostPoints":76653,"MostPointsAt":"2023-02-16T05:25:56.23861Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:48.971418Z","LastActivityAt":"2023-02-16T05:25:56.23861Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":580,"ScoreAtt":239001,"RankDef":187,"ScoreDef":2042173,"RankSup":348,"ScoreSup":413869,"RankTotal":327,"ScoreTotal":2695043,"ID":6923061,"Name":"liberator1992","NumVillages":7,"Points":24354,"Rank":873,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6923061","BestRank":866,"BestRankAt":"2023-02-16T05:25:48.971418Z","MostPoints":24354,"MostPointsAt":"2023-02-16T05:25:48.971418Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971418Z","LastActivityAt":"2023-02-16T05:25:48.971418Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1201,"ScoreAtt":10510,"RankDef":820,"ScoreDef":204893,"RankSup":1237,"ScoreSup":159,"RankTotal":1115,"ScoreTotal":215562,"ID":6925574,"Name":"zyrer","NumVillages":1,"Points":1857,"Rank":1681,"TribeID":1416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6925574","BestRank":1681,"BestRankAt":"2023-02-16T05:25:56.23861Z","MostPoints":1857,"MostPointsAt":"2023-02-16T05:25:48.971419Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971419Z","LastActivityAt":"2023-02-16T05:25:48.971419Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1586,"ScoreAtt":1328,"RankDef":1160,"ScoreDef":80879,"RankSup":923,"ScoreSup":9554,"RankTotal":1422,"ScoreTotal":91761,"ID":6927748,"Name":"MIREK2222222","NumVillages":1,"Points":3072,"Rank":1506,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6927748","BestRank":1506,"BestRankAt":"2023-02-16T05:25:56.238611Z","MostPoints":3072,"MostPointsAt":"2023-02-16T05:25:48.971419Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971419Z","LastActivityAt":"2023-02-16T05:25:48.97142Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":393,"ScoreAtt":599799,"RankDef":1928,"ScoreDef":6697,"RankSup":456,"ScoreSup":218897,"RankTotal":675,"ScoreTotal":825393,"ID":6929240,"Name":"ruch135","NumVillages":46,"Points":346548,"Rank":334,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6929240","BestRank":330,"BestRankAt":"2023-02-16T05:25:48.971421Z","MostPoints":346548,"MostPointsAt":"2023-02-16T05:25:56.238612Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:48.971421Z","LastActivityAt":"2023-02-16T05:25:56.238612Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":40,"ScoreAtt":5755652,"RankDef":97,"ScoreDef":3634175,"RankSup":14,"ScoreSup":6482116,"RankTotal":40,"ScoreTotal":15871943,"ID":6936607,"Name":".achim.","NumVillages":436,"Points":3899198,"Rank":10,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6936607","BestRank":10,"BestRankAt":"2023-02-16T05:25:48.971421Z","MostPoints":3899198,"MostPointsAt":"2023-02-16T05:25:56.238612Z","MostVillages":436,"MostVillagesAt":"2023-02-16T05:25:56.238612Z","LastActivityAt":"2023-02-16T05:25:56.238612Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":155,"ScoreAtt":2028867,"RankDef":138,"ScoreDef":2822013,"RankSup":97,"ScoreSup":2260828,"RankTotal":122,"ScoreTotal":7111708,"ID":6948793,"Name":"Kuzyn Bartosz","NumVillages":90,"Points":796687,"Rank":180,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6948793","BestRank":180,"BestRankAt":"2023-02-16T05:25:56.238613Z","MostPoints":796687,"MostPointsAt":"2023-02-16T05:25:56.238613Z","MostVillages":90,"MostVillagesAt":"2023-02-16T05:25:48.971422Z","LastActivityAt":"2023-02-16T05:25:56.238613Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1608,"ScoreAtt":1130,"RankDef":1800,"ScoreDef":12094,"RankSup":0,"ScoreSup":0,"RankTotal":1945,"ScoreTotal":13224,"ID":6955809,"Name":"Hank Evans","NumVillages":1,"Points":4982,"Rank":1325,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6955809","BestRank":1325,"BestRankAt":"2023-02-16T05:25:56.238613Z","MostPoints":4982,"MostPointsAt":"2023-02-16T05:25:48.971423Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971423Z","LastActivityAt":"2023-02-16T05:25:48.971423Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1203,"ScoreAtt":10361,"RankDef":1644,"ScoreDef":22498,"RankSup":1319,"ScoreSup":15,"RankTotal":1743,"ScoreTotal":32874,"ID":6956104,"Name":"marcopolo1324","NumVillages":14,"Points":71135,"Rank":610,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6956104","BestRank":610,"BestRankAt":"2023-02-16T05:25:56.238614Z","MostPoints":71135,"MostPointsAt":"2023-02-16T05:25:56.238614Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:48.971423Z","LastActivityAt":"2023-02-16T05:25:56.238614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2063,"ScoreDef":3206,"RankSup":0,"ScoreSup":0,"RankTotal":2181,"ScoreTotal":3206,"ID":6968280,"Name":"bartek696","NumVillages":1,"Points":26,"Rank":2618,"TribeID":1707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6968280","BestRank":2618,"BestRankAt":"2023-02-16T05:25:56.238614Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971425Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971424Z","LastActivityAt":"2023-02-16T05:25:48.971425Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":568,"ScoreAtt":251988,"RankDef":313,"ScoreDef":1095740,"RankSup":642,"ScoreSup":75862,"RankTotal":512,"ScoreTotal":1423590,"ID":6986891,"Name":"pasy18","NumVillages":1,"Points":1583,"Rank":1720,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6986891","BestRank":1720,"BestRankAt":"2023-02-16T05:25:56.238615Z","MostPoints":1583,"MostPointsAt":"2023-02-16T05:25:48.971425Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971425Z","LastActivityAt":"2023-02-16T05:25:48.971425Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2314,"ScoreDef":149,"RankSup":0,"ScoreSup":0,"RankTotal":2398,"ScoreTotal":149,"ID":6995252,"Name":"krycha9867","NumVillages":1,"Points":278,"Rank":2181,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=6995252","BestRank":2181,"BestRankAt":"2023-02-16T05:25:56.238615Z","MostPoints":278,"MostPointsAt":"2023-02-16T05:25:48.971426Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971426Z","LastActivityAt":"2023-02-16T05:25:48.971426Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1785,"ScoreAtt":224,"RankDef":1363,"ScoreDef":48658,"RankSup":1256,"ScoreSup":90,"RankTotal":1613,"ScoreTotal":48972,"ID":7007969,"Name":"1edc","NumVillages":1,"Points":26,"Rank":2619,"TribeID":1317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7007969","BestRank":2619,"BestRankAt":"2023-02-16T05:25:56.238616Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971426Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971426Z","LastActivityAt":"2023-02-16T05:25:48.971426Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":670,"ScoreAtt":145695,"RankDef":420,"ScoreDef":696389,"RankSup":882,"ScoreSup":13605,"RankTotal":666,"ScoreTotal":855689,"ID":7012651,"Name":"KrĂłlowo ZƂota","NumVillages":7,"Points":20000,"Rank":918,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7012651","BestRank":915,"BestRankAt":"2023-02-16T05:25:48.971427Z","MostPoints":20000,"MostPointsAt":"2023-02-16T05:25:56.238617Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971427Z","LastActivityAt":"2023-02-16T05:25:56.238617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":516,"ScoreAtt":330576,"RankDef":670,"ScoreDef":298876,"RankSup":410,"ScoreSup":299790,"RankTotal":643,"ScoreTotal":929242,"ID":7013660,"Name":"jjaare","NumVillages":1,"Points":827,"Rank":1893,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7013660","BestRank":1893,"BestRankAt":"2023-02-16T05:25:56.238617Z","MostPoints":827,"MostPointsAt":"2023-02-16T05:25:56.238617Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971427Z","LastActivityAt":"2023-02-16T05:25:56.238617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":948,"ScoreAtt":40105,"RankDef":2290,"ScoreDef":244,"RankSup":0,"ScoreSup":0,"RankTotal":1674,"ScoreTotal":40349,"ID":7023110,"Name":"vanromex76","NumVillages":1,"Points":1358,"Rank":1766,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7023110","BestRank":1766,"BestRankAt":"2023-02-16T05:25:56.238618Z","MostPoints":1358,"MostPointsAt":"2023-02-16T05:25:56.238618Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971428Z","LastActivityAt":"2023-02-16T05:25:56.238618Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7024597,"Name":"artur1488","NumVillages":1,"Points":804,"Rank":1899,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7024597","BestRank":1899,"BestRankAt":"2023-02-16T05:25:56.238618Z","MostPoints":804,"MostPointsAt":"2023-02-16T05:25:56.238618Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971428Z","LastActivityAt":"2023-02-16T05:25:56.238618Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":463,"ScoreAtt":424778,"RankDef":1291,"ScoreDef":58460,"RankSup":663,"ScoreSup":63898,"RankTotal":802,"ScoreTotal":547136,"ID":7038651,"Name":"Yoh Asakura","NumVillages":53,"Points":358536,"Rank":320,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7038651","BestRank":319,"BestRankAt":"2023-02-16T05:25:48.971429Z","MostPoints":358536,"MostPointsAt":"2023-02-16T05:25:48.971429Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:48.971429Z","LastActivityAt":"2023-02-16T05:25:48.971429Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":752,"ScoreAtt":98953,"RankDef":1838,"ScoreDef":10266,"RankSup":672,"ScoreSup":59814,"RankTotal":1212,"ScoreTotal":169033,"ID":7047342,"Name":"Rok Szczura","NumVillages":106,"Points":1108632,"Rank":124,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7047342","BestRank":123,"BestRankAt":"2023-02-16T05:25:48.971429Z","MostPoints":1108632,"MostPointsAt":"2023-02-16T05:25:56.238619Z","MostVillages":106,"MostVillagesAt":"2023-02-16T05:25:48.971429Z","LastActivityAt":"2023-02-16T05:25:56.238619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7062739,"Name":"nawalonych7krasnali","NumVillages":1,"Points":26,"Rank":2620,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7062739","BestRank":2620,"BestRankAt":"2023-02-16T05:25:56.23862Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.23862Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.23862Z","LastActivityAt":"2023-02-16T05:25:56.23862Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.239514Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":925,"ScoreAtt":45230,"RankDef":1504,"ScoreDef":33045,"RankSup":0,"ScoreSup":0,"RankTotal":1468,"ScoreTotal":78275,"ID":7064954,"Name":"shaggy909","NumVillages":8,"Points":33111,"Rank":788,"TribeID":1790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7064954","BestRank":787,"BestRankAt":"2023-02-16T05:25:48.97143Z","MostPoints":33111,"MostPointsAt":"2023-02-16T05:25:56.23862Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.97143Z","LastActivityAt":"2023-02-16T05:25:56.23862Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2243,"ScoreDef":544,"RankSup":0,"ScoreSup":0,"RankTotal":2323,"ScoreTotal":544,"ID":7067846,"Name":"oisaj-org","NumVillages":1,"Points":26,"Rank":2621,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7067846","BestRank":2621,"BestRankAt":"2023-02-16T05:25:56.238621Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971431Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97143Z","LastActivityAt":"2023-02-16T05:25:48.971431Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1545,"ScoreAtt":1819,"RankDef":671,"ScoreDef":298332,"RankSup":1318,"ScoreSup":15,"RankTotal":1004,"ScoreTotal":300166,"ID":7069895,"Name":"orko3","NumVillages":1,"Points":174,"Rank":2321,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7069895","BestRank":2321,"BestRankAt":"2023-02-16T05:25:56.238621Z","MostPoints":174,"MostPointsAt":"2023-02-16T05:25:56.238621Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971431Z","LastActivityAt":"2023-02-16T05:25:56.238621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1387,"ScoreAtt":4273,"RankDef":2406,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2144,"ScoreTotal":4286,"ID":7083877,"Name":"jumperr88","NumVillages":1,"Points":2671,"Rank":1556,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7083877","BestRank":1556,"BestRankAt":"2023-02-16T05:25:56.238622Z","MostPoints":2671,"MostPointsAt":"2023-02-16T05:25:56.238622Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971432Z","LastActivityAt":"2023-02-16T05:25:56.238622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":130,"ScoreAtt":2323922,"RankDef":1727,"ScoreDef":16800,"RankSup":909,"ScoreSup":10480,"RankTotal":363,"ScoreTotal":2351202,"ID":7085502,"Name":"Kuman333","NumVillages":125,"Points":982966,"Rank":149,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7085502","BestRank":149,"BestRankAt":"2023-02-16T05:25:48.971432Z","MostPoints":982966,"MostPointsAt":"2023-02-16T05:25:56.238622Z","MostVillages":125,"MostVillagesAt":"2023-02-16T05:25:48.971432Z","LastActivityAt":"2023-02-16T05:25:56.238623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":175,"ScoreAtt":1817646,"RankDef":86,"ScoreDef":4052425,"RankSup":204,"ScoreSup":900365,"RankTotal":132,"ScoreTotal":6770436,"ID":7085510,"Name":"magnats","NumVillages":90,"Points":604946,"Rank":236,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7085510","BestRank":236,"BestRankAt":"2023-02-16T05:25:56.238623Z","MostPoints":604946,"MostPointsAt":"2023-02-16T05:25:56.238623Z","MostVillages":90,"MostVillagesAt":"2023-02-16T05:25:48.971433Z","LastActivityAt":"2023-02-16T05:25:56.238623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":77,"ScoreAtt":4074636,"RankDef":380,"ScoreDef":794965,"RankSup":565,"ScoreSup":121767,"RankTotal":187,"ScoreTotal":4991368,"ID":7092442,"Name":"Sir Valense2","NumVillages":119,"Points":1132486,"Rank":122,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7092442","BestRank":121,"BestRankAt":"2023-02-16T05:25:48.971433Z","MostPoints":1132486,"MostPointsAt":"2023-02-16T05:25:56.238624Z","MostVillages":119,"MostVillagesAt":"2023-02-16T05:25:56.238623Z","LastActivityAt":"2023-02-16T05:25:56.238624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7096208,"Name":"gis1969b","NumVillages":1,"Points":26,"Rank":2622,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7096208","BestRank":2622,"BestRankAt":"2023-02-16T05:25:56.238624Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971434Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971434Z","LastActivityAt":"2023-02-16T05:25:48.971434Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":733,"ScoreAtt":109938,"RankDef":1213,"ScoreDef":69894,"RankSup":0,"ScoreSup":0,"RankTotal":1187,"ScoreTotal":179832,"ID":7097727,"Name":"spiderandsobol","NumVillages":15,"Points":91882,"Rank":555,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7097727","BestRank":555,"BestRankAt":"2023-02-16T05:25:56.238624Z","MostPoints":91882,"MostPointsAt":"2023-02-16T05:25:56.238625Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.971434Z","LastActivityAt":"2023-02-16T05:25:56.238625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":624,"ScoreAtt":186439,"RankDef":311,"ScoreDef":1101037,"RankSup":618,"ScoreSup":89567,"RankTotal":523,"ScoreTotal":1377043,"ID":7098955,"Name":"Dragonus80","NumVillages":7,"Points":46097,"Rank":709,"TribeID":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7098955","BestRank":709,"BestRankAt":"2023-02-16T05:25:56.238625Z","MostPoints":46097,"MostPointsAt":"2023-02-16T05:25:56.238625Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971436Z","LastActivityAt":"2023-02-16T05:25:56.238625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97185Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7114815,"Name":"neo328","NumVillages":1,"Points":158,"Rank":2342,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7114815","BestRank":2342,"BestRankAt":"2023-02-16T05:25:56.238626Z","MostPoints":158,"MostPointsAt":"2023-02-16T05:25:48.971437Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971437Z","LastActivityAt":"2023-02-16T05:25:48.971437Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97185Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":704,"ScoreAtt":124759,"RankDef":2102,"ScoreDef":2385,"RankSup":747,"ScoreSup":36861,"RankTotal":1220,"ScoreTotal":164005,"ID":7125212,"Name":"0xadam","NumVillages":28,"Points":239274,"Rank":386,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7125212","BestRank":386,"BestRankAt":"2023-02-16T05:25:56.238626Z","MostPoints":239274,"MostPointsAt":"2023-02-16T05:25:56.238626Z","MostVillages":28,"MostVillagesAt":"2023-02-16T05:25:48.971437Z","LastActivityAt":"2023-02-16T05:25:56.238626Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97185Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1440,"ScoreAtt":3245,"RankDef":1100,"ScoreDef":93894,"RankSup":0,"ScoreSup":0,"RankTotal":1395,"ScoreTotal":97139,"ID":7127455,"Name":"rychor","NumVillages":9,"Points":63723,"Rank":640,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7127455","BestRank":640,"BestRankAt":"2023-02-16T05:25:56.238627Z","MostPoints":63723,"MostPointsAt":"2023-02-16T05:25:56.238627Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.971438Z","LastActivityAt":"2023-02-16T05:25:56.238627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97185Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1927,"ScoreDef":6705,"RankSup":0,"ScoreSup":0,"RankTotal":2066,"ScoreTotal":6705,"ID":7135037,"Name":"H Cezar","NumVillages":1,"Points":3868,"Rank":1412,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7135037","BestRank":1412,"BestRankAt":"2023-02-16T05:25:56.238627Z","MostPoints":3868,"MostPointsAt":"2023-02-16T05:25:56.238627Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971438Z","LastActivityAt":"2023-02-16T05:25:56.238627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":186,"ScoreAtt":1675232,"RankDef":994,"ScoreDef":126932,"RankSup":111,"ScoreSup":2003779,"RankTotal":242,"ScoreTotal":3805943,"ID":7139820,"Name":"-Efektywny?","NumVillages":101,"Points":921017,"Rank":159,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7139820","BestRank":158,"BestRankAt":"2023-02-16T05:25:48.971439Z","MostPoints":921017,"MostPointsAt":"2023-02-16T05:25:56.238628Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:48.971439Z","LastActivityAt":"2023-02-16T05:25:56.238628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":997,"ScoreAtt":30579,"RankDef":1564,"ScoreDef":28389,"RankSup":0,"ScoreSup":0,"RankTotal":1557,"ScoreTotal":58968,"ID":7139853,"Name":"gregorek18","NumVillages":15,"Points":69155,"Rank":617,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7139853","BestRank":617,"BestRankAt":"2023-02-16T05:25:56.238628Z","MostPoints":69155,"MostPointsAt":"2023-02-16T05:25:56.238628Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:48.971439Z","LastActivityAt":"2023-02-16T05:25:56.238628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1853,"ScoreAtt":99,"RankDef":1326,"ScoreDef":54720,"RankSup":0,"ScoreSup":0,"RankTotal":1580,"ScoreTotal":54819,"ID":7140413,"Name":"44dor","NumVillages":1,"Points":901,"Rank":1866,"TribeID":374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7140413","BestRank":1866,"BestRankAt":"2023-02-16T05:25:56.238629Z","MostPoints":901,"MostPointsAt":"2023-02-16T05:25:48.97144Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97144Z","LastActivityAt":"2023-02-16T05:25:48.97144Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":189,"ScoreAtt":1639716,"RankDef":996,"ScoreDef":126152,"RankSup":860,"ScoreSup":15241,"RankTotal":448,"ScoreTotal":1781109,"ID":7142659,"Name":"tomson89","NumVillages":71,"Points":624039,"Rank":228,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7142659","BestRank":228,"BestRankAt":"2023-02-16T05:25:56.238629Z","MostPoints":624039,"MostPointsAt":"2023-02-16T05:25:56.238629Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:56.238629Z","LastActivityAt":"2023-02-16T05:25:56.238629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1441,"ScoreDef":38763,"RankSup":0,"ScoreSup":0,"RankTotal":1687,"ScoreTotal":38763,"ID":7150683,"Name":"sos1234","NumVillages":1,"Points":1258,"Rank":1784,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7150683","BestRank":1784,"BestRankAt":"2023-02-16T05:25:56.23863Z","MostPoints":1258,"MostPointsAt":"2023-02-16T05:25:48.971441Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971441Z","LastActivityAt":"2023-02-16T05:25:48.971441Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1010,"ScoreAtt":28166,"RankDef":240,"ScoreDef":1598475,"RankSup":537,"ScoreSup":138148,"RankTotal":453,"ScoreTotal":1764789,"ID":7150939,"Name":"gulden","NumVillages":2,"Points":5329,"Rank":1305,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7150939","BestRank":1305,"BestRankAt":"2023-02-16T05:25:56.23863Z","MostPoints":5329,"MostPointsAt":"2023-02-16T05:25:56.23863Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971442Z","LastActivityAt":"2023-02-16T05:25:56.238631Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":173,"ScoreAtt":1836875,"RankDef":1518,"ScoreDef":31748,"RankSup":441,"ScoreSup":242505,"RankTotal":393,"ScoreTotal":2111128,"ID":7154207,"Name":"sylwek2011","NumVillages":89,"Points":793965,"Rank":182,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7154207","BestRank":179,"BestRankAt":"2023-02-16T05:25:48.971442Z","MostPoints":804264,"MostPointsAt":"2023-02-16T05:25:48.971442Z","MostVillages":90,"MostVillagesAt":"2023-02-16T05:25:48.971442Z","LastActivityAt":"2023-02-16T05:25:48.971442Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":782,"ScoreAtt":87068,"RankDef":655,"ScoreDef":316045,"RankSup":955,"ScoreSup":7301,"RankTotal":906,"ScoreTotal":410414,"ID":7157316,"Name":"TheHacker","NumVillages":0,"Points":0,"Rank":2890,"TribeID":693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7157316","BestRank":2890,"BestRankAt":"2023-02-16T05:25:56.238631Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971443Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971443Z","LastActivityAt":"2023-02-16T05:25:48.971443Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1313,"ScoreAtt":6000,"RankDef":1162,"ScoreDef":80687,"RankSup":729,"ScoreSup":40848,"RankTotal":1302,"ScoreTotal":127535,"ID":7158871,"Name":"Sapir1","NumVillages":1,"Points":6373,"Rank":1240,"TribeID":475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7158871","BestRank":1240,"BestRankAt":"2023-02-16T05:25:56.238632Z","MostPoints":6373,"MostPointsAt":"2023-02-16T05:25:56.238632Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971443Z","LastActivityAt":"2023-02-16T05:25:56.238632Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7180447,"Name":"rainyday","NumVillages":1,"Points":383,"Rank":2083,"TribeID":1792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7180447","BestRank":2083,"BestRankAt":"2023-02-16T05:25:56.238632Z","MostPoints":383,"MostPointsAt":"2023-02-16T05:25:56.238632Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971444Z","LastActivityAt":"2023-02-16T05:25:56.238633Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":339,"ScoreAtt":759021,"RankDef":1309,"ScoreDef":55955,"RankSup":615,"ScoreSup":91001,"RankTotal":650,"ScoreTotal":905977,"ID":7181335,"Name":"Sque","NumVillages":1,"Points":10160,"Rank":1078,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7181335","BestRank":1078,"BestRankAt":"2023-02-16T05:25:56.238633Z","MostPoints":10160,"MostPointsAt":"2023-02-16T05:25:48.971444Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971444Z","LastActivityAt":"2023-02-16T05:25:48.971444Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":105,"ScoreAtt":2954976,"RankDef":243,"ScoreDef":1583934,"RankSup":233,"ScoreSup":760155,"RankTotal":174,"ScoreTotal":5299065,"ID":7183372,"Name":"MarcinFix","NumVillages":114,"Points":977278,"Rank":151,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7183372","BestRank":151,"BestRankAt":"2023-02-16T05:25:48.971445Z","MostPoints":977278,"MostPointsAt":"2023-02-16T05:25:56.238633Z","MostVillages":114,"MostVillagesAt":"2023-02-16T05:25:48.971445Z","LastActivityAt":"2023-02-16T05:25:56.238634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1101,"ScoreAtt":17729,"RankDef":735,"ScoreDef":254394,"RankSup":0,"ScoreSup":0,"RankTotal":1031,"ScoreTotal":272123,"ID":7210775,"Name":"torys666","NumVillages":1,"Points":3674,"Rank":1432,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7210775","BestRank":1432,"BestRankAt":"2023-02-16T05:25:56.238634Z","MostPoints":3674,"MostPointsAt":"2023-02-16T05:25:56.238634Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971445Z","LastActivityAt":"2023-02-16T05:25:56.238634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1373,"ScoreAtt":4617,"RankDef":1550,"ScoreDef":29110,"RankSup":0,"ScoreSup":0,"RankTotal":1731,"ScoreTotal":33727,"ID":7220989,"Name":"DontCry","NumVillages":1,"Points":3807,"Rank":1417,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7220989","BestRank":1417,"BestRankAt":"2023-02-16T05:25:56.238634Z","MostPoints":3807,"MostPointsAt":"2023-02-16T05:25:48.971446Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971446Z","LastActivityAt":"2023-02-16T05:25:48.971446Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1410,"ScoreAtt":3852,"RankDef":977,"ScoreDef":134432,"RankSup":1245,"ScoreSup":126,"RankTotal":1275,"ScoreTotal":138410,"ID":7221139,"Name":"Nieƛmiertelny97","NumVillages":3,"Points":7051,"Rank":1207,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7221139","BestRank":1207,"BestRankAt":"2023-02-16T05:25:56.238635Z","MostPoints":7051,"MostPointsAt":"2023-02-16T05:25:48.971447Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971446Z","LastActivityAt":"2023-02-16T05:25:48.971447Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":791,"ScoreAtt":84055,"RankDef":1491,"ScoreDef":34472,"RankSup":554,"ScoreSup":129155,"RankTotal":1055,"ScoreTotal":247682,"ID":7226782,"Name":"soloma1500","NumVillages":32,"Points":155561,"Rank":459,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7226782","BestRank":459,"BestRankAt":"2023-02-16T05:25:56.238635Z","MostPoints":155561,"MostPointsAt":"2023-02-16T05:25:56.238635Z","MostVillages":32,"MostVillagesAt":"2023-02-16T05:25:48.971447Z","LastActivityAt":"2023-02-16T05:25:56.238636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1770,"ScoreAtt":260,"RankDef":1600,"ScoreDef":25469,"RankSup":0,"ScoreSup":0,"RankTotal":1809,"ScoreTotal":25729,"ID":7230689,"Name":"rhodos77","NumVillages":1,"Points":3731,"Rank":1425,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7230689","BestRank":1425,"BestRankAt":"2023-02-16T05:25:56.238636Z","MostPoints":3731,"MostPointsAt":"2023-02-16T05:25:56.238636Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971448Z","LastActivityAt":"2023-02-16T05:25:56.238636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2003,"ScoreDef":4527,"RankSup":0,"ScoreSup":0,"RankTotal":2138,"ScoreTotal":4527,"ID":7242969,"Name":"gazolek123","NumVillages":1,"Points":79,"Rank":2485,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7242969","BestRank":2485,"BestRankAt":"2023-02-16T05:25:56.238636Z","MostPoints":79,"MostPointsAt":"2023-02-16T05:25:48.971448Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971448Z","LastActivityAt":"2023-02-16T05:25:48.971448Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":23,"ScoreAtt":7754446,"RankDef":70,"ScoreDef":4857805,"RankSup":103,"ScoreSup":2201128,"RankTotal":50,"ScoreTotal":14813379,"ID":7249451,"Name":"Max Delor","NumVillages":198,"Points":1703379,"Rank":66,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7249451","BestRank":66,"BestRankAt":"2023-02-16T05:25:56.238637Z","MostPoints":1703379,"MostPointsAt":"2023-02-16T05:25:56.238637Z","MostVillages":198,"MostVillagesAt":"2023-02-16T05:25:56.238637Z","LastActivityAt":"2023-02-16T05:25:56.238637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1128,"ScoreDef":88356,"RankSup":0,"ScoreSup":0,"RankTotal":1434,"ScoreTotal":88356,"ID":7259218,"Name":"kraczyƄski","NumVillages":1,"Points":1278,"Rank":1781,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7259218","BestRank":1781,"BestRankAt":"2023-02-16T05:25:56.238638Z","MostPoints":1278,"MostPointsAt":"2023-02-16T05:25:56.238638Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971449Z","LastActivityAt":"2023-02-16T05:25:56.238638Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1507,"ScoreAtt":2202,"RankDef":0,"ScoreDef":0,"RankSup":1307,"ScoreSup":20,"RankTotal":2220,"ScoreTotal":2222,"ID":7259690,"Name":"SAGITTARIUS70","NumVillages":6,"Points":15371,"Rank":992,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7259690","BestRank":992,"BestRankAt":"2023-02-16T05:25:56.238638Z","MostPoints":15371,"MostPointsAt":"2023-02-16T05:25:56.238638Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.97145Z","LastActivityAt":"2023-02-16T05:25:56.238638Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2289,"ScoreDef":246,"RankSup":0,"ScoreSup":0,"RankTotal":2371,"ScoreTotal":246,"ID":7262049,"Name":"amon201","NumVillages":1,"Points":945,"Rank":1861,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7262049","BestRank":1861,"BestRankAt":"2023-02-16T05:25:56.238639Z","MostPoints":945,"MostPointsAt":"2023-02-16T05:25:56.238639Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97145Z","LastActivityAt":"2023-02-16T05:25:56.238639Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":112,"ScoreAtt":2742657,"RankDef":366,"ScoreDef":828516,"RankSup":102,"ScoreSup":2216895,"RankTotal":160,"ScoreTotal":5788068,"ID":7271812,"Name":"spiryt pro elo","NumVillages":165,"Points":1260245,"Rank":99,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7271812","BestRank":99,"BestRankAt":"2023-02-16T05:25:48.971451Z","MostPoints":1260245,"MostPointsAt":"2023-02-16T05:25:56.238639Z","MostVillages":165,"MostVillagesAt":"2023-02-16T05:25:56.238639Z","LastActivityAt":"2023-02-16T05:25:56.238639Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1415,"ScoreAtt":3685,"RankDef":521,"ScoreDef":491834,"RankSup":0,"ScoreSup":0,"RankTotal":844,"ScoreTotal":495519,"ID":7272223,"Name":"robus7","NumVillages":2,"Points":9811,"Rank":1086,"TribeID":4,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7272223","BestRank":1086,"BestRankAt":"2023-02-16T05:25:56.23864Z","MostPoints":9811,"MostPointsAt":"2023-02-16T05:25:56.23864Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971451Z","LastActivityAt":"2023-02-16T05:25:56.23864Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7286392,"Name":"GrubsonSzczecin","NumVillages":1,"Points":26,"Rank":2623,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7286392","BestRank":2623,"BestRankAt":"2023-02-16T05:25:56.23864Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971452Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971452Z","LastActivityAt":"2023-02-16T05:25:48.971452Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1514,"ScoreAtt":2162,"RankDef":1254,"ScoreDef":62324,"RankSup":827,"ScoreSup":19552,"RankTotal":1447,"ScoreTotal":84038,"ID":7287342,"Name":"martin1181","NumVillages":1,"Points":4885,"Rank":1330,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7287342","BestRank":1330,"BestRankAt":"2023-02-16T05:25:56.238641Z","MostPoints":4885,"MostPointsAt":"2023-02-16T05:25:48.971453Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971453Z","LastActivityAt":"2023-02-16T05:25:48.971453Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1530,"ScoreAtt":1980,"RankDef":782,"ScoreDef":226567,"RankSup":0,"ScoreSup":0,"RankTotal":1091,"ScoreTotal":228547,"ID":7297881,"Name":"Zawisza160","NumVillages":0,"Points":0,"Rank":2891,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7297881","BestRank":2891,"BestRankAt":"2023-02-16T05:25:56.238641Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971453Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971453Z","LastActivityAt":"2023-02-16T05:25:48.971453Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1826,"ScoreAtt":138,"RankDef":1343,"ScoreDef":51679,"RankSup":0,"ScoreSup":0,"RankTotal":1596,"ScoreTotal":51817,"ID":7313287,"Name":"Striker09","NumVillages":1,"Points":1115,"Rank":1816,"TribeID":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7313287","BestRank":1816,"BestRankAt":"2023-02-16T05:25:56.238642Z","MostPoints":1115,"MostPointsAt":"2023-02-16T05:25:56.238642Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971454Z","LastActivityAt":"2023-02-16T05:25:56.238642Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":444,"ScoreAtt":465797,"RankDef":113,"ScoreDef":3268635,"RankSup":246,"ScoreSup":721628,"RankTotal":216,"ScoreTotal":4456060,"ID":7318415,"Name":"bula9001","NumVillages":5,"Points":26820,"Rank":842,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7318415","BestRank":842,"BestRankAt":"2023-02-16T05:25:56.238642Z","MostPoints":26820,"MostPointsAt":"2023-02-16T05:25:56.238642Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.971454Z","LastActivityAt":"2023-02-16T05:25:56.238643Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":539,"ScoreAtt":298296,"RankDef":471,"ScoreDef":565878,"RankSup":212,"ScoreSup":869419,"RankTotal":458,"ScoreTotal":1733593,"ID":7318949,"Name":"czarny8216","NumVillages":2,"Points":8165,"Rank":1145,"TribeID":1645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7318949","BestRank":1145,"BestRankAt":"2023-02-16T05:25:56.238643Z","MostPoints":8165,"MostPointsAt":"2023-02-16T05:25:56.238643Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971455Z","LastActivityAt":"2023-02-16T05:25:56.238643Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971857Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7322865,"Name":"Sonomi","NumVillages":1,"Points":26,"Rank":2624,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7322865","BestRank":2624,"BestRankAt":"2023-02-16T05:25:56.238643Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971455Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971455Z","LastActivityAt":"2023-02-16T05:25:48.971455Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":541,"ScoreAtt":295815,"RankDef":621,"ScoreDef":358104,"RankSup":606,"ScoreSup":96311,"RankTotal":703,"ScoreTotal":750230,"ID":7333216,"Name":"Majsmen","NumVillages":8,"Points":77623,"Rank":590,"TribeID":936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7333216","BestRank":590,"BestRankAt":"2023-02-16T05:25:56.238644Z","MostPoints":77623,"MostPointsAt":"2023-02-16T05:25:48.971456Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.971456Z","LastActivityAt":"2023-02-16T05:25:48.971456Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1472,"ScoreAtt":2700,"RankDef":1261,"ScoreDef":61184,"RankSup":1120,"ScoreSup":1396,"RankTotal":1521,"ScoreTotal":65280,"ID":7337110,"Name":"kwiatek7777","NumVillages":1,"Points":1162,"Rank":1800,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7337110","BestRank":1800,"BestRankAt":"2023-02-16T05:25:56.238644Z","MostPoints":1162,"MostPointsAt":"2023-02-16T05:25:48.971456Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971456Z","LastActivityAt":"2023-02-16T05:25:48.971457Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":264,"ScoreAtt":1075960,"RankDef":33,"ScoreDef":9694364,"RankSup":546,"ScoreSup":131946,"RankTotal":71,"ScoreTotal":10902270,"ID":7340529,"Name":"morra12311","NumVillages":68,"Points":649545,"Rank":219,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7340529","BestRank":219,"BestRankAt":"2023-02-16T05:25:56.238645Z","MostPoints":649545,"MostPointsAt":"2023-02-16T05:25:56.238645Z","MostVillages":68,"MostVillagesAt":"2023-02-16T05:25:56.238645Z","LastActivityAt":"2023-02-16T05:25:56.238645Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1257,"ScoreAtt":7537,"RankDef":1065,"ScoreDef":103956,"RankSup":1268,"ScoreSup":63,"RankTotal":1351,"ScoreTotal":111556,"ID":7346797,"Name":"saladyn89.","NumVillages":4,"Points":10688,"Rank":1066,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7346797","BestRank":1066,"BestRankAt":"2023-02-16T05:25:56.238645Z","MostPoints":10688,"MostPointsAt":"2023-02-16T05:25:56.238646Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971457Z","LastActivityAt":"2023-02-16T05:25:56.238646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":304,"ScoreAtt":910843,"RankDef":520,"ScoreDef":492330,"RankSup":73,"ScoreSup":2818740,"RankTotal":225,"ScoreTotal":4221913,"ID":7349282,"Name":"Staƛkinio","NumVillages":9,"Points":55213,"Rank":670,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7349282","BestRank":670,"BestRankAt":"2023-02-16T05:25:56.238646Z","MostPoints":55213,"MostPointsAt":"2023-02-16T05:25:56.238646Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.971458Z","LastActivityAt":"2023-02-16T05:25:56.238646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1078,"ScoreAtt":20068,"RankDef":1777,"ScoreDef":13493,"RankSup":0,"ScoreSup":0,"RankTotal":1738,"ScoreTotal":33561,"ID":7357503,"Name":"kajko1962","NumVillages":6,"Points":31598,"Rank":801,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7357503","BestRank":801,"BestRankAt":"2023-02-16T05:25:56.238647Z","MostPoints":31598,"MostPointsAt":"2023-02-16T05:25:56.238647Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971459Z","LastActivityAt":"2023-02-16T05:25:56.238647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1339,"ScoreAtt":5368,"RankDef":2039,"ScoreDef":3732,"RankSup":1393,"ScoreSup":2,"RankTotal":2006,"ScoreTotal":9102,"ID":7365299,"Name":"wiewioreczkavivat","NumVillages":1,"Points":3767,"Rank":1422,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7365299","BestRank":1422,"BestRankAt":"2023-02-16T05:25:56.238647Z","MostPoints":3767,"MostPointsAt":"2023-02-16T05:25:48.971459Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971459Z","LastActivityAt":"2023-02-16T05:25:48.971459Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":554,"ScoreAtt":273032,"RankDef":336,"ScoreDef":945220,"RankSup":291,"ScoreSup":561957,"RankTotal":449,"ScoreTotal":1780209,"ID":7386358,"Name":"upalamba","NumVillages":13,"Points":64741,"Rank":636,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7386358","BestRank":636,"BestRankAt":"2023-02-16T05:25:56.238648Z","MostPoints":64741,"MostPointsAt":"2023-02-16T05:25:48.97146Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:48.97146Z","LastActivityAt":"2023-02-16T05:25:48.97146Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":529,"ScoreAtt":311888,"RankDef":657,"ScoreDef":315301,"RankSup":1170,"ScoreSup":624,"RankTotal":769,"ScoreTotal":627813,"ID":7394371,"Name":"adi7474","NumVillages":48,"Points":428096,"Rank":293,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7394371","BestRank":293,"BestRankAt":"2023-02-16T05:25:48.97146Z","MostPoints":428096,"MostPointsAt":"2023-02-16T05:25:56.238648Z","MostVillages":48,"MostVillagesAt":"2023-02-16T05:25:48.97146Z","LastActivityAt":"2023-02-16T05:25:56.238648Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97186Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1866,"ScoreAtt":85,"RankDef":2361,"ScoreDef":30,"RankSup":989,"ScoreSup":5445,"RankTotal":2099,"ScoreTotal":5560,"ID":7409475,"Name":"Xenae","NumVillages":3,"Points":25425,"Rank":859,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7409475","BestRank":859,"BestRankAt":"2023-02-16T05:25:56.238649Z","MostPoints":25425,"MostPointsAt":"2023-02-16T05:25:56.238649Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971461Z","LastActivityAt":"2023-02-16T05:25:56.238649Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97186Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":428,"ScoreAtt":490655,"RankDef":84,"ScoreDef":4067887,"RankSup":199,"ScoreSup":935075,"RankTotal":166,"ScoreTotal":5493617,"ID":7417116,"Name":"master^_^","NumVillages":17,"Points":166147,"Rank":443,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7417116","BestRank":437,"BestRankAt":"2023-02-16T05:25:48.971461Z","MostPoints":177387,"MostPointsAt":"2023-02-16T05:25:48.971461Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:48.971461Z","LastActivityAt":"2023-02-16T05:25:56.238649Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97186Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":289,"ScoreAtt":976084,"RankDef":1359,"ScoreDef":49109,"RankSup":1110,"ScoreSup":1575,"RankTotal":609,"ScoreTotal":1026768,"ID":7418168,"Name":"smok42 PLEMIENNY BUREK","NumVillages":20,"Points":171664,"Rank":442,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7418168","BestRank":442,"BestRankAt":"2023-02-16T05:25:56.23865Z","MostPoints":171664,"MostPointsAt":"2023-02-16T05:25:56.23865Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:48.971463Z","LastActivityAt":"2023-02-16T05:25:56.23865Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97186Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1444,"ScoreDef":38730,"RankSup":0,"ScoreSup":0,"RankTotal":1688,"ScoreTotal":38730,"ID":7422002,"Name":"korek62","NumVillages":1,"Points":1451,"Rank":1748,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7422002","BestRank":1748,"BestRankAt":"2023-02-16T05:25:56.23865Z","MostPoints":1451,"MostPointsAt":"2023-02-16T05:25:56.23865Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971464Z","LastActivityAt":"2023-02-16T05:25:56.23865Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97186Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":886,"ScoreAtt":53590,"RankDef":1177,"ScoreDef":77393,"RankSup":0,"ScoreSup":0,"RankTotal":1292,"ScoreTotal":130983,"ID":7427966,"Name":"Pitter82","NumVillages":10,"Points":29373,"Rank":825,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7427966","BestRank":823,"BestRankAt":"2023-02-16T05:25:48.971464Z","MostPoints":29373,"MostPointsAt":"2023-02-16T05:25:56.238651Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.971464Z","LastActivityAt":"2023-02-16T05:25:56.238651Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1877,"ScoreDef":8492,"RankSup":1178,"ScoreSup":558,"RankTotal":2009,"ScoreTotal":9050,"ID":7428666,"Name":"Maliniak77","NumVillages":1,"Points":4696,"Rank":1349,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7428666","BestRank":1349,"BestRankAt":"2023-02-16T05:25:56.238651Z","MostPoints":4696,"MostPointsAt":"2023-02-16T05:25:48.971465Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971465Z","LastActivityAt":"2023-02-16T05:25:48.971465Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7431759,"Name":"De Integro","NumVillages":1,"Points":32,"Rank":2586,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7431759","BestRank":2586,"BestRankAt":"2023-02-16T05:25:56.238652Z","MostPoints":32,"MostPointsAt":"2023-02-16T05:25:48.971465Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971465Z","LastActivityAt":"2023-02-16T05:25:48.971465Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2147,"ScoreDef":1793,"RankSup":0,"ScoreSup":0,"RankTotal":2244,"ScoreTotal":1793,"ID":7440474,"Name":"Lepsi5","NumVillages":1,"Points":3045,"Rank":1508,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7440474","BestRank":1508,"BestRankAt":"2023-02-16T05:25:56.238652Z","MostPoints":3045,"MostPointsAt":"2023-02-16T05:25:56.238652Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971466Z","LastActivityAt":"2023-02-16T05:25:56.238653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":57,"ScoreAtt":4556859,"RankDef":259,"ScoreDef":1434313,"RankSup":133,"ScoreSup":1633897,"RankTotal":109,"ScoreTotal":7625069,"ID":7449254,"Name":"Bochun10","NumVillages":194,"Points":1745418,"Rank":64,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7449254","BestRank":64,"BestRankAt":"2023-02-16T05:25:48.971467Z","MostPoints":1745418,"MostPointsAt":"2023-02-16T05:25:56.238653Z","MostVillages":194,"MostVillagesAt":"2023-02-16T05:25:48.971467Z","LastActivityAt":"2023-02-16T05:25:56.238653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":82,"ScoreAtt":3865875,"RankDef":668,"ScoreDef":302189,"RankSup":179,"ScoreSup":1147591,"RankTotal":173,"ScoreTotal":5315655,"ID":7462660,"Name":"vequs","NumVillages":141,"Points":1246831,"Rank":105,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7462660","BestRank":104,"BestRankAt":"2023-02-16T05:25:48.971467Z","MostPoints":1246831,"MostPointsAt":"2023-02-16T05:25:56.238653Z","MostVillages":141,"MostVillagesAt":"2023-02-16T05:25:48.971468Z","LastActivityAt":"2023-02-16T05:25:56.238654Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1767,"ScoreAtt":262,"RankDef":2100,"ScoreDef":2459,"RankSup":0,"ScoreSup":0,"RankTotal":2202,"ScoreTotal":2721,"ID":7474527,"Name":"kerto13","NumVillages":3,"Points":5178,"Rank":1309,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7474527","BestRank":1309,"BestRankAt":"2023-02-16T05:25:56.238654Z","MostPoints":5178,"MostPointsAt":"2023-02-16T05:25:48.971468Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971468Z","LastActivityAt":"2023-02-16T05:25:48.971468Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1871,"ScoreDef":8821,"RankSup":0,"ScoreSup":0,"RankTotal":2015,"ScoreTotal":8821,"ID":7477695,"Name":"Pupenplatz","NumVillages":0,"Points":0,"Rank":2892,"TribeID":1727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7477695","BestRank":2892,"BestRankAt":"2023-02-16T05:25:56.238654Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971469Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971469Z","LastActivityAt":"2023-02-16T05:25:48.971469Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1072,"ScoreAtt":20368,"RankDef":1172,"ScoreDef":78599,"RankSup":0,"ScoreSup":0,"RankTotal":1392,"ScoreTotal":98967,"ID":7485877,"Name":"ro98","NumVillages":12,"Points":59960,"Rank":652,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7485877","BestRank":652,"BestRankAt":"2023-02-16T05:25:56.238655Z","MostPoints":59960,"MostPointsAt":"2023-02-16T05:25:56.238655Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:48.971469Z","LastActivityAt":"2023-02-16T05:25:56.238655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":95,"ScoreAtt":3366859,"RankDef":68,"ScoreDef":4918696,"RankSup":354,"ScoreSup":407440,"RankTotal":89,"ScoreTotal":8692995,"ID":7491093,"Name":"nubeN","NumVillages":90,"Points":858678,"Rank":167,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7491093","BestRank":167,"BestRankAt":"2023-02-16T05:25:56.238655Z","MostPoints":858678,"MostPointsAt":"2023-02-16T05:25:56.238656Z","MostVillages":90,"MostVillagesAt":"2023-02-16T05:25:48.97147Z","LastActivityAt":"2023-02-16T05:25:56.238656Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1652,"ScoreAtt":787,"RankDef":2014,"ScoreDef":4275,"RankSup":0,"ScoreSup":0,"RankTotal":2119,"ScoreTotal":5062,"ID":7492426,"Name":"Aritian1","NumVillages":1,"Points":7563,"Rank":1176,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7492426","BestRank":1176,"BestRankAt":"2023-02-16T05:25:56.238656Z","MostPoints":7563,"MostPointsAt":"2023-02-16T05:25:56.238656Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97147Z","LastActivityAt":"2023-02-16T05:25:56.238656Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1056,"ScoreAtt":21988,"RankDef":1507,"ScoreDef":32678,"RankSup":1288,"ScoreSup":35,"RankTotal":1582,"ScoreTotal":54701,"ID":7494178,"Name":"minijuncio1","NumVillages":1,"Points":317,"Rank":2139,"TribeID":548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7494178","BestRank":2139,"BestRankAt":"2023-02-16T05:25:56.238656Z","MostPoints":317,"MostPointsAt":"2023-02-16T05:25:48.971471Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971471Z","LastActivityAt":"2023-02-16T05:25:48.971471Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":193,"ScoreAtt":1621283,"RankDef":986,"ScoreDef":129925,"RankSup":558,"ScoreSup":127603,"RankTotal":427,"ScoreTotal":1878811,"ID":7494497,"Name":"damiant61","NumVillages":107,"Points":821210,"Rank":177,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7494497","BestRank":177,"BestRankAt":"2023-02-16T05:25:56.238657Z","MostPoints":821210,"MostPointsAt":"2023-02-16T05:25:56.238657Z","MostVillages":107,"MostVillagesAt":"2023-02-16T05:25:48.971471Z","LastActivityAt":"2023-02-16T05:25:56.238657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7495050,"Name":"Księga przyrodniczo","NumVillages":1,"Points":102,"Rank":2453,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7495050","BestRank":2453,"BestRankAt":"2023-02-16T05:25:56.238658Z","MostPoints":102,"MostPointsAt":"2023-02-16T05:25:48.971472Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971472Z","LastActivityAt":"2023-02-16T05:25:48.971472Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1957,"ScoreDef":5846,"RankSup":1218,"ScoreSup":265,"RankTotal":2081,"ScoreTotal":6111,"ID":7499430,"Name":"kosmo1972","NumVillages":1,"Points":6057,"Rank":1261,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7499430","BestRank":1261,"BestRankAt":"2023-02-16T05:25:56.238658Z","MostPoints":6057,"MostPointsAt":"2023-02-16T05:25:56.238658Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971472Z","LastActivityAt":"2023-02-16T05:25:56.238658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1421,"ScoreAtt":3587,"RankDef":1354,"ScoreDef":49802,"RankSup":1200,"ScoreSup":362,"RankTotal":1587,"ScoreTotal":53751,"ID":7508390,"Name":"MauritiusMagnus","NumVillages":1,"Points":138,"Rank":2376,"TribeID":1610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7508390","BestRank":2376,"BestRankAt":"2023-02-16T05:25:56.238659Z","MostPoints":138,"MostPointsAt":"2023-02-16T05:25:48.971473Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971473Z","LastActivityAt":"2023-02-16T05:25:48.971473Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1450,"ScoreAtt":3085,"RankDef":844,"ScoreDef":190133,"RankSup":0,"ScoreSup":0,"RankTotal":1152,"ScoreTotal":193218,"ID":7516892,"Name":"jaromirek","NumVillages":1,"Points":814,"Rank":1896,"TribeID":1333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7516892","BestRank":1896,"BestRankAt":"2023-02-16T05:25:56.238659Z","MostPoints":814,"MostPointsAt":"2023-02-16T05:25:56.238659Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971474Z","LastActivityAt":"2023-02-16T05:25:56.238659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":918,"ScoreAtt":47302,"RankDef":396,"ScoreDef":757917,"RankSup":1302,"ScoreSup":22,"RankTotal":681,"ScoreTotal":805241,"ID":7518529,"Name":"LAROX","NumVillages":1,"Points":3407,"Rank":1470,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7518529","BestRank":1030,"BestRankAt":"2023-02-16T05:25:48.971474Z","MostPoints":12874,"MostPointsAt":"2023-02-16T05:25:48.971474Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971474Z","LastActivityAt":"2023-02-16T05:25:48.971474Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1839,"ScoreAtt":126,"RankDef":2476,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2407,"ScoreTotal":128,"ID":7520280,"Name":"barex10","NumVillages":1,"Points":4207,"Rank":1384,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7520280","BestRank":1384,"BestRankAt":"2023-02-16T05:25:56.23866Z","MostPoints":4207,"MostPointsAt":"2023-02-16T05:25:56.23866Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971475Z","LastActivityAt":"2023-02-16T05:25:56.23866Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1601,"ScoreAtt":1235,"RankDef":2376,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2276,"ScoreTotal":1257,"ID":7526090,"Name":"Ballab","NumVillages":2,"Points":4726,"Rank":1346,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7526090","BestRank":1346,"BestRankAt":"2023-02-16T05:25:56.238661Z","MostPoints":4726,"MostPointsAt":"2023-02-16T05:25:56.238661Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971475Z","LastActivityAt":"2023-02-16T05:25:56.238661Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1041,"ScoreAtt":24412,"RankDef":1980,"ScoreDef":5347,"RankSup":479,"ScoreSup":191015,"RankTotal":1107,"ScoreTotal":220774,"ID":7528491,"Name":"Bocianikson","NumVillages":28,"Points":193315,"Rank":425,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7528491","BestRank":424,"BestRankAt":"2023-02-16T05:25:48.971476Z","MostPoints":193315,"MostPointsAt":"2023-02-16T05:25:56.238661Z","MostVillages":28,"MostVillagesAt":"2023-02-16T05:25:48.971476Z","LastActivityAt":"2023-02-16T05:25:56.238661Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1658,"ScoreAtt":746,"RankDef":1666,"ScoreDef":20255,"RankSup":1133,"ScoreSup":1155,"RankTotal":1842,"ScoreTotal":22156,"ID":7530708,"Name":"SlodLenka","NumVillages":6,"Points":17536,"Rank":962,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7530708","BestRank":962,"BestRankAt":"2023-02-16T05:25:56.238662Z","MostPoints":17536,"MostPointsAt":"2023-02-16T05:25:56.238662Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971476Z","LastActivityAt":"2023-02-16T05:25:56.238662Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1894,"ScoreAtt":46,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2444,"ScoreTotal":46,"ID":7539223,"Name":"Destruktorix I","NumVillages":1,"Points":124,"Rank":2415,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7539223","BestRank":2415,"BestRankAt":"2023-02-16T05:25:56.238662Z","MostPoints":124,"MostPointsAt":"2023-02-16T05:25:48.971477Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971477Z","LastActivityAt":"2023-02-16T05:25:48.971477Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":533,"ScoreAtt":307859,"RankDef":64,"ScoreDef":5444886,"RankSup":263,"ScoreSup":649359,"RankTotal":139,"ScoreTotal":6402104,"ID":7540891,"Name":"Ras 7C","NumVillages":85,"Points":372564,"Rank":313,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7540891","BestRank":313,"BestRankAt":"2023-02-16T05:25:56.238663Z","MostPoints":372564,"MostPointsAt":"2023-02-16T05:25:56.238663Z","MostVillages":85,"MostVillagesAt":"2023-02-16T05:25:56.238663Z","LastActivityAt":"2023-02-16T05:25:56.238663Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1320,"ScoreAtt":5836,"RankDef":971,"ScoreDef":138212,"RankSup":0,"ScoreSup":0,"RankTotal":1258,"ScoreTotal":144048,"ID":7550472,"Name":"Sir.Gardier","NumVillages":1,"Points":9711,"Rank":1093,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7550472","BestRank":1093,"BestRankAt":"2023-02-16T05:25:56.238663Z","MostPoints":9711,"MostPointsAt":"2023-02-16T05:25:56.238663Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971478Z","LastActivityAt":"2023-02-16T05:25:56.238664Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":100,"ScoreAtt":3202496,"RankDef":34,"ScoreDef":9579441,"RankSup":61,"ScoreSup":3053132,"RankTotal":41,"ScoreTotal":15835069,"ID":7555180,"Name":"LukasKeller","NumVillages":34,"Points":240289,"Rank":385,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7555180","BestRank":385,"BestRankAt":"2023-02-16T05:25:56.238664Z","MostPoints":240289,"MostPointsAt":"2023-02-16T05:25:48.971479Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:48.971479Z","LastActivityAt":"2023-02-16T05:25:48.971479Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2172,"ScoreDef":1400,"RankSup":0,"ScoreSup":0,"RankTotal":2266,"ScoreTotal":1400,"ID":7557683,"Name":"dadek26","NumVillages":3,"Points":7638,"Rank":1174,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7557683","BestRank":1174,"BestRankAt":"2023-02-16T05:25:56.238664Z","MostPoints":7638,"MostPointsAt":"2023-02-16T05:25:56.238664Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971479Z","LastActivityAt":"2023-02-16T05:25:56.238665Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1716,"ScoreDef":17374,"RankSup":1132,"ScoreSup":1167,"RankTotal":1880,"ScoreTotal":18541,"ID":7559093,"Name":"WJHK","NumVillages":1,"Points":5667,"Rank":1283,"TribeID":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7559093","BestRank":1283,"BestRankAt":"2023-02-16T05:25:56.238665Z","MostPoints":5667,"MostPointsAt":"2023-02-16T05:25:48.97148Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97148Z","LastActivityAt":"2023-02-16T05:25:48.97148Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7560085,"Name":"cyaaaa2","NumVillages":1,"Points":134,"Rank":2386,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7560085","BestRank":2386,"BestRankAt":"2023-02-16T05:25:56.238665Z","MostPoints":134,"MostPointsAt":"2023-02-16T05:25:48.97148Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97148Z","LastActivityAt":"2023-02-16T05:25:48.97148Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1022,"ScoreAtt":27037,"RankDef":1728,"ScoreDef":16690,"RankSup":0,"ScoreSup":0,"RankTotal":1648,"ScoreTotal":43727,"ID":7560474,"Name":"JasJ","NumVillages":10,"Points":63460,"Rank":641,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7560474","BestRank":641,"BestRankAt":"2023-02-16T05:25:56.238666Z","MostPoints":63460,"MostPointsAt":"2023-02-16T05:25:56.238666Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.971481Z","LastActivityAt":"2023-02-16T05:25:56.238666Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":787,"ScoreAtt":85726,"RankDef":236,"ScoreDef":1630845,"RankSup":960,"ScoreSup":6864,"RankTotal":459,"ScoreTotal":1723435,"ID":7563185,"Name":"zajadek96","NumVillages":2,"Points":5244,"Rank":1307,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7563185","BestRank":1168,"BestRankAt":"2023-02-16T05:25:48.971481Z","MostPoints":7826,"MostPointsAt":"2023-02-16T05:25:48.971481Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971481Z","LastActivityAt":"2023-02-16T05:25:48.971481Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1139,"ScoreAtt":14242,"RankDef":1161,"ScoreDef":80848,"RankSup":0,"ScoreSup":0,"RankTotal":1402,"ScoreTotal":95090,"ID":7563943,"Name":"bukai","NumVillages":4,"Points":19008,"Rank":934,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7563943","BestRank":934,"BestRankAt":"2023-02-16T05:25:56.238667Z","MostPoints":19008,"MostPointsAt":"2023-02-16T05:25:56.238667Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971482Z","LastActivityAt":"2023-02-16T05:25:56.238667Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1261,"ScoreAtt":7480,"RankDef":875,"ScoreDef":180002,"RankSup":0,"ScoreSup":0,"RankTotal":1167,"ScoreTotal":187482,"ID":7574317,"Name":"sir alec","NumVillages":0,"Points":0,"Rank":2893,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7574317","BestRank":2893,"BestRankAt":"2023-02-16T05:25:56.238667Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971482Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971482Z","LastActivityAt":"2023-02-16T05:25:48.971482Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1966,"ScoreAtt":10,"RankDef":1332,"ScoreDef":54411,"RankSup":1296,"ScoreSup":33,"RankTotal":1591,"ScoreTotal":54454,"ID":7575174,"Name":"maniuƛ1968","NumVillages":1,"Points":1084,"Rank":1839,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7575174","BestRank":1839,"BestRankAt":"2023-02-16T05:25:48.971483Z","MostPoints":1084,"MostPointsAt":"2023-02-16T05:25:48.971483Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971483Z","LastActivityAt":"2023-02-16T05:25:48.971483Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971868Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":42,"ScoreAtt":5618662,"RankDef":766,"ScoreDef":235048,"RankSup":25,"ScoreSup":4847442,"RankTotal":73,"ScoreTotal":10701152,"ID":7581876,"Name":"sas584","NumVillages":174,"Points":1614644,"Rank":72,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7581876","BestRank":72,"BestRankAt":"2023-02-16T05:25:48.971483Z","MostPoints":1614644,"MostPointsAt":"2023-02-16T05:25:56.238668Z","MostVillages":174,"MostVillagesAt":"2023-02-16T05:25:48.971483Z","LastActivityAt":"2023-02-16T05:25:56.238668Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":479,"ScoreAtt":397689,"RankDef":1594,"ScoreDef":25739,"RankSup":621,"ScoreSup":87850,"RankTotal":831,"ScoreTotal":511278,"ID":7588382,"Name":"buczkowice1998","NumVillages":51,"Points":431491,"Rank":292,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7588382","BestRank":292,"BestRankAt":"2023-02-16T05:25:48.971484Z","MostPoints":431491,"MostPointsAt":"2023-02-16T05:25:56.238669Z","MostVillages":51,"MostVillagesAt":"2023-02-16T05:25:48.971484Z","LastActivityAt":"2023-02-16T05:25:56.238669Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":520,"ScoreAtt":326347,"RankDef":1874,"ScoreDef":8748,"RankSup":108,"ScoreSup":2100926,"RankTotal":355,"ScoreTotal":2436021,"ID":7589468,"Name":"Filipets","NumVillages":67,"Points":501560,"Rank":269,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7589468","BestRank":269,"BestRankAt":"2023-02-16T05:25:56.238669Z","MostPoints":501560,"MostPointsAt":"2023-02-16T05:25:56.238669Z","MostVillages":67,"MostVillagesAt":"2023-02-16T05:25:48.971485Z","LastActivityAt":"2023-02-16T05:25:56.238669Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1120,"ScoreAtt":16373,"RankDef":1532,"ScoreDef":30453,"RankSup":1172,"ScoreSup":620,"RankTotal":1625,"ScoreTotal":47446,"ID":7590135,"Name":"Arystek","NumVillages":4,"Points":20810,"Rank":908,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7590135","BestRank":908,"BestRankAt":"2023-02-16T05:25:56.23867Z","MostPoints":20810,"MostPointsAt":"2023-02-16T05:25:56.23867Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971485Z","LastActivityAt":"2023-02-16T05:25:56.23867Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1671,"ScoreDef":20127,"RankSup":0,"ScoreSup":0,"RankTotal":1866,"ScoreTotal":20127,"ID":7590275,"Name":"MORUSGRIN","NumVillages":1,"Points":7504,"Rank":1184,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7590275","BestRank":1184,"BestRankAt":"2023-02-16T05:25:56.23867Z","MostPoints":7504,"MostPointsAt":"2023-02-16T05:25:56.23867Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971486Z","LastActivityAt":"2023-02-16T05:25:56.23867Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1266,"ScoreDef":60407,"RankSup":0,"ScoreSup":0,"RankTotal":1548,"ScoreTotal":60407,"ID":7605446,"Name":"Danka Ch","NumVillages":1,"Points":506,"Rank":2009,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7605446","BestRank":2009,"BestRankAt":"2023-02-16T05:25:56.238671Z","MostPoints":506,"MostPointsAt":"2023-02-16T05:25:56.238671Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971486Z","LastActivityAt":"2023-02-16T05:25:56.238671Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97187Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2196,"ScoreDef":1026,"RankSup":0,"ScoreSup":0,"RankTotal":2287,"ScoreTotal":1026,"ID":7629036,"Name":"ziomeka4","NumVillages":1,"Points":2408,"Rank":1586,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7629036","BestRank":1586,"BestRankAt":"2023-02-16T05:25:56.238671Z","MostPoints":2408,"MostPointsAt":"2023-02-16T05:25:48.971487Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971487Z","LastActivityAt":"2023-02-16T05:25:48.971487Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97187Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":922,"ScoreDef":157182,"RankSup":1003,"ScoreSup":4585,"RankTotal":1224,"ScoreTotal":161767,"ID":7646152,"Name":"Kierownik44","NumVillages":4,"Points":11858,"Rank":1045,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7646152","BestRank":1045,"BestRankAt":"2023-02-16T05:25:56.238672Z","MostPoints":11858,"MostPointsAt":"2023-02-16T05:25:56.238672Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971487Z","LastActivityAt":"2023-02-16T05:25:56.238672Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97187Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":908,"ScoreAtt":48526,"RankDef":1900,"ScoreDef":7667,"RankSup":573,"ScoreSup":117073,"RankTotal":1201,"ScoreTotal":173266,"ID":7651093,"Name":"Hankier","NumVillages":15,"Points":123917,"Rank":500,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7651093","BestRank":477,"BestRankAt":"2023-02-16T05:25:48.971488Z","MostPoints":141931,"MostPointsAt":"2023-02-16T05:25:48.971488Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:48.971488Z","LastActivityAt":"2023-02-16T05:25:48.971488Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97187Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1685,"ScoreAtt":626,"RankDef":835,"ScoreDef":194713,"RankSup":0,"ScoreSup":0,"RankTotal":1144,"ScoreTotal":195339,"ID":7661091,"Name":"stecj","NumVillages":1,"Points":7345,"Rank":1193,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7661091","BestRank":1193,"BestRankAt":"2023-02-16T05:25:56.238673Z","MostPoints":7345,"MostPointsAt":"2023-02-16T05:25:48.971488Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971488Z","LastActivityAt":"2023-02-16T05:25:48.971489Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7663945,"Name":"Sir Hood","NumVillages":1,"Points":26,"Rank":2625,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7663945","BestRank":2625,"BestRankAt":"2023-02-16T05:25:56.238673Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971489Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971489Z","LastActivityAt":"2023-02-16T05:25:48.971489Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":889,"ScoreAtt":53026,"RankDef":419,"ScoreDef":699257,"RankSup":640,"ScoreSup":76132,"RankTotal":674,"ScoreTotal":828415,"ID":7675610,"Name":"kawskole","NumVillages":6,"Points":13341,"Rank":1026,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7675610","BestRank":1022,"BestRankAt":"2023-02-16T05:25:48.971489Z","MostPoints":13341,"MostPointsAt":"2023-02-16T05:25:48.97149Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971489Z","LastActivityAt":"2023-02-16T05:25:48.97149Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7687862,"Name":"Ale AHMED","NumVillages":1,"Points":338,"Rank":2119,"TribeID":1648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7687862","BestRank":2119,"BestRankAt":"2023-02-16T05:25:56.238674Z","MostPoints":338,"MostPointsAt":"2023-02-16T05:25:48.97149Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97149Z","LastActivityAt":"2023-02-16T05:25:48.97149Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":967,"ScoreDef":139935,"RankSup":0,"ScoreSup":0,"RankTotal":1271,"ScoreTotal":139935,"ID":7691817,"Name":"czesc","NumVillages":1,"Points":2706,"Rank":1554,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7691817","BestRank":1554,"BestRankAt":"2023-02-16T05:25:56.238675Z","MostPoints":2706,"MostPointsAt":"2023-02-16T05:25:48.971491Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971491Z","LastActivityAt":"2023-02-16T05:25:48.971491Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":348,"ScoreAtt":702181,"RankDef":319,"ScoreDef":1061592,"RankSup":944,"ScoreSup":7957,"RankTotal":451,"ScoreTotal":1771730,"ID":7695478,"Name":"Turbo Gumiƛ","NumVillages":0,"Points":0,"Rank":2894,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7695478","BestRank":2894,"BestRankAt":"2023-02-16T05:25:56.238675Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971491Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971491Z","LastActivityAt":"2023-02-16T05:25:48.971491Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1653,"ScoreAtt":770,"RankDef":1099,"ScoreDef":93936,"RankSup":988,"ScoreSup":5489,"RankTotal":1387,"ScoreTotal":100195,"ID":7695659,"Name":"MrZibo","NumVillages":1,"Points":1129,"Rank":1810,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7695659","BestRank":1810,"BestRankAt":"2023-02-16T05:25:56.238676Z","MostPoints":1129,"MostPointsAt":"2023-02-16T05:25:48.971492Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971492Z","LastActivityAt":"2023-02-16T05:25:48.971492Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":867,"ScoreAtt":57501,"RankDef":2026,"ScoreDef":3971,"RankSup":1257,"ScoreSup":89,"RankTotal":1535,"ScoreTotal":61561,"ID":7699382,"Name":"DiabeƂ x SokóƂ","NumVillages":0,"Points":0,"Rank":2895,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7699382","BestRank":2895,"BestRankAt":"2023-02-16T05:25:56.238676Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971492Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971492Z","LastActivityAt":"2023-02-16T05:25:48.971492Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2375,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2477,"ScoreTotal":22,"ID":7707390,"Name":"Hellooo","NumVillages":2,"Points":7368,"Rank":1190,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7707390","BestRank":1190,"BestRankAt":"2023-02-16T05:25:56.238676Z","MostPoints":7368,"MostPointsAt":"2023-02-16T05:25:56.238677Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971493Z","LastActivityAt":"2023-02-16T05:25:56.238677Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1599,"ScoreAtt":1239,"RankDef":2307,"ScoreDef":193,"RankSup":0,"ScoreSup":0,"RankTotal":2264,"ScoreTotal":1432,"ID":7720028,"Name":"blok konk","NumVillages":0,"Points":0,"Rank":2896,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7720028","BestRank":2896,"BestRankAt":"2023-02-16T05:25:56.238677Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971493Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971493Z","LastActivityAt":"2023-02-16T05:25:48.971493Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":999,"ScoreDef":125651,"RankSup":0,"ScoreSup":0,"RankTotal":1308,"ScoreTotal":125651,"ID":7721441,"Name":"elisea","NumVillages":0,"Points":0,"Rank":2897,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7721441","BestRank":2897,"BestRankAt":"2023-02-16T05:25:56.238678Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971494Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971494Z","LastActivityAt":"2023-02-16T05:25:48.971494Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1708,"ScoreDef":17728,"RankSup":1239,"ScoreSup":157,"RankTotal":1884,"ScoreTotal":17885,"ID":7733128,"Name":"Helios874","NumVillages":1,"Points":242,"Rank":2216,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7733128","BestRank":2216,"BestRankAt":"2023-02-16T05:25:56.238678Z","MostPoints":242,"MostPointsAt":"2023-02-16T05:25:56.238678Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971494Z","LastActivityAt":"2023-02-16T05:25:56.238678Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":395,"ScoreDef":760905,"RankSup":0,"ScoreSup":0,"RankTotal":695,"ScoreTotal":760905,"ID":7749444,"Name":"TCH1","NumVillages":1,"Points":4128,"Rank":1390,"TribeID":355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7749444","BestRank":1390,"BestRankAt":"2023-02-16T05:25:56.238679Z","MostPoints":4128,"MostPointsAt":"2023-02-16T05:25:56.238679Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971495Z","LastActivityAt":"2023-02-16T05:25:56.238679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1478,"ScoreDef":35781,"RankSup":0,"ScoreSup":0,"RankTotal":1716,"ScoreTotal":35781,"ID":7750835,"Name":"Drago Mich","NumVillages":0,"Points":0,"Rank":2898,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7750835","BestRank":2898,"BestRankAt":"2023-02-16T05:25:56.238679Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971496Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971495Z","LastActivityAt":"2023-02-16T05:25:48.971496Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7751626,"Name":"neron Lodz","NumVillages":1,"Points":524,"Rank":1996,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7751626","BestRank":1996,"BestRankAt":"2023-02-16T05:25:56.23868Z","MostPoints":524,"MostPointsAt":"2023-02-16T05:25:56.23868Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971496Z","LastActivityAt":"2023-02-16T05:25:56.23868Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":382,"ScoreAtt":614184,"RankDef":1729,"ScoreDef":16666,"RankSup":174,"ScoreSup":1259096,"RankTotal":423,"ScoreTotal":1889946,"ID":7756002,"Name":"HORUS 33","NumVillages":56,"Points":466937,"Rank":279,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7756002","BestRank":279,"BestRankAt":"2023-02-16T05:25:56.23868Z","MostPoints":466937,"MostPointsAt":"2023-02-16T05:25:56.23868Z","MostVillages":56,"MostVillagesAt":"2023-02-16T05:25:56.23868Z","LastActivityAt":"2023-02-16T05:25:56.23868Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":110,"ScoreAtt":2792437,"RankDef":131,"ScoreDef":2982623,"RankSup":166,"ScoreSup":1323046,"RankTotal":124,"ScoreTotal":7098106,"ID":7758085,"Name":"Obywatel Leszcz","NumVillages":180,"Points":1591686,"Rank":73,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7758085","BestRank":73,"BestRankAt":"2023-02-16T05:25:48.971497Z","MostPoints":1591686,"MostPointsAt":"2023-02-16T05:25:56.238681Z","MostVillages":180,"MostVillagesAt":"2023-02-16T05:25:48.971497Z","LastActivityAt":"2023-02-16T05:25:56.238681Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":225,"ScoreAtt":1321264,"RankDef":139,"ScoreDef":2810170,"RankSup":829,"ScoreSup":19437,"RankTotal":230,"ScoreTotal":4150871,"ID":7765098,"Name":"perƂa 1983","NumVillages":10,"Points":90629,"Rank":560,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7765098","BestRank":557,"BestRankAt":"2023-02-16T05:25:48.971498Z","MostPoints":90629,"MostPointsAt":"2023-02-16T05:25:48.971498Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.971498Z","LastActivityAt":"2023-02-16T05:25:48.971498Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971874Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1488,"ScoreAtt":2430,"RankDef":2068,"ScoreDef":3058,"RankSup":1228,"ScoreSup":214,"RankTotal":2096,"ScoreTotal":5702,"ID":7775311,"Name":"lagoony","NumVillages":3,"Points":19499,"Rank":925,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7775311","BestRank":925,"BestRankAt":"2023-02-16T05:25:56.238682Z","MostPoints":19499,"MostPointsAt":"2023-02-16T05:25:56.238682Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971498Z","LastActivityAt":"2023-02-16T05:25:56.238682Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1897,"ScoreAtt":42,"RankDef":1030,"ScoreDef":115811,"RankSup":828,"ScoreSup":19441,"RankTotal":1282,"ScoreTotal":135294,"ID":7781236,"Name":"gajawa","NumVillages":1,"Points":634,"Rank":1956,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7781236","BestRank":1956,"BestRankAt":"2023-02-16T05:25:56.238682Z","MostPoints":634,"MostPointsAt":"2023-02-16T05:25:48.971499Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971499Z","LastActivityAt":"2023-02-16T05:25:48.971499Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1066,"ScoreDef":102888,"RankSup":0,"ScoreSup":0,"RankTotal":1375,"ScoreTotal":102888,"ID":7787254,"Name":"ziutek 1","NumVillages":1,"Points":7559,"Rank":1177,"TribeID":597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7787254","BestRank":1177,"BestRankAt":"2023-02-16T05:25:56.238683Z","MostPoints":7559,"MostPointsAt":"2023-02-16T05:25:48.971499Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971499Z","LastActivityAt":"2023-02-16T05:25:48.971499Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":747,"ScoreDef":246697,"RankSup":0,"ScoreSup":0,"RankTotal":1057,"ScoreTotal":246697,"ID":7802435,"Name":"nawi4","NumVillages":1,"Points":1133,"Rank":1808,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7802435","BestRank":1808,"BestRankAt":"2023-02-16T05:25:56.238683Z","MostPoints":1133,"MostPointsAt":"2023-02-16T05:25:56.238683Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.9715Z","LastActivityAt":"2023-02-16T05:25:56.238683Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1793,"ScoreAtt":190,"RankDef":2145,"ScoreDef":1811,"RankSup":0,"ScoreSup":0,"RankTotal":2230,"ScoreTotal":2001,"ID":7803631,"Name":"Helios322","NumVillages":1,"Points":1027,"Rank":1838,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7803631","BestRank":1838,"BestRankAt":"2023-02-16T05:25:56.238684Z","MostPoints":1027,"MostPointsAt":"2023-02-16T05:25:56.238684Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.9715Z","LastActivityAt":"2023-02-16T05:25:56.238684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2059,"ScoreDef":3303,"RankSup":0,"ScoreSup":0,"RankTotal":2178,"ScoreTotal":3303,"ID":7809316,"Name":"japacz","NumVillages":1,"Points":26,"Rank":2626,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7809316","BestRank":2626,"BestRankAt":"2023-02-16T05:25:56.238684Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971501Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971501Z","LastActivityAt":"2023-02-16T05:25:48.971501Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1058,"ScoreDef":105301,"RankSup":0,"ScoreSup":0,"RankTotal":1369,"ScoreTotal":105301,"ID":7820575,"Name":"Mogok","NumVillages":1,"Points":183,"Rank":2306,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7820575","BestRank":2306,"BestRankAt":"2023-02-16T05:25:56.238685Z","MostPoints":183,"MostPointsAt":"2023-02-16T05:25:56.238685Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971501Z","LastActivityAt":"2023-02-16T05:25:56.238685Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":493,"ScoreAtt":370169,"RankDef":483,"ScoreDef":554232,"RankSup":45,"ScoreSup":3545406,"RankTotal":213,"ScoreTotal":4469807,"ID":7829201,"Name":"hbmacko","NumVillages":68,"Points":584660,"Rank":246,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7829201","BestRank":211,"BestRankAt":"2023-02-16T05:25:48.971502Z","MostPoints":677151,"MostPointsAt":"2023-02-16T05:25:48.971502Z","MostVillages":78,"MostVillagesAt":"2023-02-16T05:25:48.971502Z","LastActivityAt":"2023-02-16T05:25:56.238686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1140,"ScoreAtt":14196,"RankDef":403,"ScoreDef":740950,"RankSup":0,"ScoreSup":0,"RankTotal":698,"ScoreTotal":755146,"ID":7831811,"Name":"dragon622","NumVillages":1,"Points":270,"Rank":2188,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7831811","BestRank":2188,"BestRankAt":"2023-02-16T05:25:56.238686Z","MostPoints":270,"MostPointsAt":"2023-02-16T05:25:56.238686Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971503Z","LastActivityAt":"2023-02-16T05:25:56.238686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":483,"ScoreAtt":386096,"RankDef":295,"ScoreDef":1214988,"RankSup":1006,"ScoreSup":4441,"RankTotal":475,"ScoreTotal":1605525,"ID":7842579,"Name":"basket60","NumVillages":30,"Points":212281,"Rank":409,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7842579","BestRank":409,"BestRankAt":"2023-02-16T05:25:48.971503Z","MostPoints":212281,"MostPointsAt":"2023-02-16T05:25:56.238687Z","MostVillages":30,"MostVillagesAt":"2023-02-16T05:25:48.971503Z","LastActivityAt":"2023-02-16T05:25:56.238687Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7844370,"Name":"grzesiek576","NumVillages":1,"Points":299,"Rank":2157,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7844370","BestRank":2157,"BestRankAt":"2023-02-16T05:25:56.238687Z","MostPoints":299,"MostPointsAt":"2023-02-16T05:25:48.971504Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971504Z","LastActivityAt":"2023-02-16T05:25:48.971504Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":316,"ScoreAtt":853298,"RankDef":585,"ScoreDef":393912,"RankSup":222,"ScoreSup":805889,"RankTotal":400,"ScoreTotal":2053099,"ID":7860453,"Name":"Bombardier11","NumVillages":41,"Points":298237,"Rank":355,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7860453","BestRank":345,"BestRankAt":"2023-02-16T05:25:48.971504Z","MostPoints":324986,"MostPointsAt":"2023-02-16T05:25:48.971504Z","MostVillages":44,"MostVillagesAt":"2023-02-16T05:25:48.971504Z","LastActivityAt":"2023-02-16T05:25:48.971504Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2224,"ScoreDef":701,"RankSup":0,"ScoreSup":0,"RankTotal":2310,"ScoreTotal":701,"ID":7865511,"Name":"Mr Dymer","NumVillages":1,"Points":4193,"Rank":1385,"TribeID":1636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7865511","BestRank":1385,"BestRankAt":"2023-02-16T05:25:56.238688Z","MostPoints":4193,"MostPointsAt":"2023-02-16T05:25:56.238688Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971505Z","LastActivityAt":"2023-02-16T05:25:56.238688Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2046,"ScoreDef":3601,"RankSup":0,"ScoreSup":0,"RankTotal":2170,"ScoreTotal":3601,"ID":7866994,"Name":"znek8","NumVillages":1,"Points":1015,"Rank":1844,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7866994","BestRank":1844,"BestRankAt":"2023-02-16T05:25:56.238689Z","MostPoints":1015,"MostPointsAt":"2023-02-16T05:25:48.971505Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971505Z","LastActivityAt":"2023-02-16T05:25:48.971505Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1055,"ScoreAtt":22263,"RankDef":1135,"ScoreDef":86580,"RankSup":1386,"ScoreSup":2,"RankTotal":1356,"ScoreTotal":108845,"ID":7897925,"Name":"Destroyers96","NumVillages":0,"Points":0,"Rank":2899,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7897925","BestRank":2899,"BestRankAt":"2023-02-16T05:25:56.238689Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971506Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971506Z","LastActivityAt":"2023-02-16T05:25:48.971506Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1946,"ScoreAtt":15,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2493,"ScoreTotal":15,"ID":7899232,"Name":"seafighter1","NumVillages":1,"Points":7843,"Rank":1163,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7899232","BestRank":1163,"BestRankAt":"2023-02-16T05:25:56.238689Z","MostPoints":7843,"MostPointsAt":"2023-02-16T05:25:56.23869Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971507Z","LastActivityAt":"2023-02-16T05:25:56.23869Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7906167,"Name":"Kupidynek","NumVillages":1,"Points":26,"Rank":2627,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7906167","BestRank":2627,"BestRankAt":"2023-02-16T05:25:56.23869Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971508Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971508Z","LastActivityAt":"2023-02-16T05:25:48.971508Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1934,"ScoreAtt":23,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2473,"ScoreTotal":23,"ID":7910501,"Name":"Wigerek","NumVillages":1,"Points":324,"Rank":2132,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7910501","BestRank":2132,"BestRankAt":"2023-02-16T05:25:56.238691Z","MostPoints":324,"MostPointsAt":"2023-02-16T05:25:56.238691Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971508Z","LastActivityAt":"2023-02-16T05:25:56.238691Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1595,"ScoreAtt":1267,"RankDef":2455,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2274,"ScoreTotal":1277,"ID":7913305,"Name":"cycu269","NumVillages":1,"Points":2008,"Rank":1651,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7913305","BestRank":1651,"BestRankAt":"2023-02-16T05:25:56.238691Z","MostPoints":2008,"MostPointsAt":"2023-02-16T05:25:56.238691Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971509Z","LastActivityAt":"2023-02-16T05:25:56.238691Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2137,"ScoreDef":1891,"RankSup":0,"ScoreSup":0,"RankTotal":2237,"ScoreTotal":1891,"ID":7914131,"Name":"mateuszek15517","NumVillages":1,"Points":5067,"Rank":1314,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7914131","BestRank":1314,"BestRankAt":"2023-02-16T05:25:56.238692Z","MostPoints":5067,"MostPointsAt":"2023-02-16T05:25:48.97151Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97151Z","LastActivityAt":"2023-02-16T05:25:48.97151Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97188Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1722,"ScoreAtt":395,"RankDef":2200,"ScoreDef":928,"RankSup":0,"ScoreSup":0,"RankTotal":2270,"ScoreTotal":1323,"ID":7915966,"Name":"JungleBoyz","NumVillages":5,"Points":38589,"Rank":748,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7915966","BestRank":748,"BestRankAt":"2023-02-16T05:25:56.238692Z","MostPoints":38589,"MostPointsAt":"2023-02-16T05:25:56.238692Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:56.238692Z","LastActivityAt":"2023-02-16T05:25:56.238692Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97188Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1007,"ScoreAtt":28506,"RankDef":1300,"ScoreDef":56967,"RankSup":0,"ScoreSup":0,"RankTotal":1442,"ScoreTotal":85473,"ID":7919620,"Name":"Voxeti","NumVillages":6,"Points":31734,"Rank":799,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7919620","BestRank":795,"BestRankAt":"2023-02-16T05:25:48.971511Z","MostPoints":31734,"MostPointsAt":"2023-02-16T05:25:48.971511Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971511Z","LastActivityAt":"2023-02-16T05:25:48.971511Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97188Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2271,"ScoreDef":347,"RankSup":0,"ScoreSup":0,"RankTotal":2352,"ScoreTotal":347,"ID":7927374,"Name":"Knykieć Dyl","NumVillages":1,"Points":196,"Rank":2281,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7927374","BestRank":2281,"BestRankAt":"2023-02-16T05:25:56.238693Z","MostPoints":196,"MostPointsAt":"2023-02-16T05:25:48.971511Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971511Z","LastActivityAt":"2023-02-16T05:25:48.971511Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97188Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1970,"ScoreDef":5593,"RankSup":0,"ScoreSup":0,"RankTotal":2097,"ScoreTotal":5593,"ID":7929731,"Name":"rutek75","NumVillages":1,"Points":4469,"Rank":1364,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7929731","BestRank":1364,"BestRankAt":"2023-02-16T05:25:56.238694Z","MostPoints":4469,"MostPointsAt":"2023-02-16T05:25:56.238694Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971512Z","LastActivityAt":"2023-02-16T05:25:56.238694Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97188Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7951206,"Name":"Cegla x DrTaxi","NumVillages":1,"Points":41,"Rank":2578,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7951206","BestRank":2578,"BestRankAt":"2023-02-16T05:25:56.238694Z","MostPoints":41,"MostPointsAt":"2023-02-16T05:25:48.971512Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971512Z","LastActivityAt":"2023-02-16T05:25:48.971512Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":7964548,"Name":"ABE 1","NumVillages":1,"Points":181,"Rank":2311,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7964548","BestRank":2311,"BestRankAt":"2023-02-16T05:25:56.238695Z","MostPoints":181,"MostPointsAt":"2023-02-16T05:25:48.971513Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971513Z","LastActivityAt":"2023-02-16T05:25:48.971513Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1209,"ScoreAtt":10136,"RankDef":1587,"ScoreDef":26130,"RankSup":774,"ScoreSup":30076,"RankTotal":1514,"ScoreTotal":66342,"ID":7970506,"Name":"botlike","NumVillages":1,"Points":26,"Rank":2628,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7970506","BestRank":2628,"BestRankAt":"2023-02-16T05:25:56.238695Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971513Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971513Z","LastActivityAt":"2023-02-16T05:25:48.971514Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":301,"ScoreAtt":919318,"RankDef":707,"ScoreDef":269989,"RankSup":584,"ScoreSup":105899,"RankTotal":542,"ScoreTotal":1295206,"ID":7973893,"Name":"Tedock","NumVillages":90,"Points":715925,"Rank":200,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7973893","BestRank":200,"BestRankAt":"2023-02-16T05:25:56.238696Z","MostPoints":715925,"MostPointsAt":"2023-02-16T05:25:56.238696Z","MostVillages":90,"MostVillagesAt":"2023-02-16T05:25:48.971514Z","LastActivityAt":"2023-02-16T05:25:56.238696Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":115,"ScoreAtt":2648080,"RankDef":505,"ScoreDef":511055,"RankSup":56,"ScoreSup":3129496,"RankTotal":141,"ScoreTotal":6288631,"ID":7976264,"Name":"komandos48","NumVillages":144,"Points":1182415,"Rank":116,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7976264","BestRank":116,"BestRankAt":"2023-02-16T05:25:48.971514Z","MostPoints":1182415,"MostPointsAt":"2023-02-16T05:25:56.238696Z","MostVillages":144,"MostVillagesAt":"2023-02-16T05:25:48.971514Z","LastActivityAt":"2023-02-16T05:25:56.238696Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2488,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2559,"ScoreTotal":4,"ID":7982117,"Name":"diabolllo","NumVillages":1,"Points":1043,"Rank":1849,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7982117","BestRank":1849,"BestRankAt":"2023-02-16T05:25:48.971515Z","MostPoints":1043,"MostPointsAt":"2023-02-16T05:25:48.971515Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971515Z","LastActivityAt":"2023-02-16T05:25:48.971515Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971882Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1565,"ScoreAtt":1565,"RankDef":2246,"ScoreDef":528,"RankSup":745,"ScoreSup":37004,"RankTotal":1681,"ScoreTotal":39097,"ID":7985956,"Name":"Bocianv2","NumVillages":1,"Points":8462,"Rank":1134,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7985956","BestRank":1134,"BestRankAt":"2023-02-16T05:25:56.238697Z","MostPoints":8462,"MostPointsAt":"2023-02-16T05:25:48.971516Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971516Z","LastActivityAt":"2023-02-16T05:25:48.971516Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1730,"ScoreAtt":357,"RankDef":499,"ScoreDef":522130,"RankSup":529,"ScoreSup":145732,"RankTotal":744,"ScoreTotal":668219,"ID":7995033,"Name":"adahin","NumVillages":1,"Points":487,"Rank":2019,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7995033","BestRank":2019,"BestRankAt":"2023-02-16T05:25:56.238697Z","MostPoints":487,"MostPointsAt":"2023-02-16T05:25:48.971516Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971516Z","LastActivityAt":"2023-02-16T05:25:48.971516Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":576,"ScoreAtt":241876,"RankDef":1660,"ScoreDef":21305,"RankSup":1008,"ScoreSup":4340,"RankTotal":1037,"ScoreTotal":267521,"ID":7999103,"Name":"Franko Mocny 2","NumVillages":22,"Points":146458,"Rank":470,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=7999103","BestRank":470,"BestRankAt":"2023-02-16T05:25:56.238698Z","MostPoints":146458,"MostPointsAt":"2023-02-16T05:25:56.238698Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:48.971517Z","LastActivityAt":"2023-02-16T05:25:56.238698Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":20,"ScoreAtt":8104385,"RankDef":507,"ScoreDef":508779,"RankSup":128,"ScoreSup":1686105,"RankTotal":76,"ScoreTotal":10299269,"ID":8000875,"Name":"B. Moon l Black E.","NumVillages":233,"Points":2012263,"Rank":46,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8000875","BestRank":46,"BestRankAt":"2023-02-16T05:25:56.238698Z","MostPoints":2012263,"MostPointsAt":"2023-02-16T05:25:56.238698Z","MostVillages":233,"MostVillagesAt":"2023-02-16T05:25:56.238698Z","LastActivityAt":"2023-02-16T05:25:56.238698Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":64,"ScoreAtt":4404525,"RankDef":198,"ScoreDef":1928927,"RankSup":180,"ScoreSup":1116667,"RankTotal":112,"ScoreTotal":7450119,"ID":8004076,"Name":"ExpertoCredite","NumVillages":195,"Points":1712871,"Rank":65,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8004076","BestRank":65,"BestRankAt":"2023-02-16T05:25:48.971518Z","MostPoints":1712871,"MostPointsAt":"2023-02-16T05:25:56.238699Z","MostVillages":195,"MostVillagesAt":"2023-02-16T05:25:56.238699Z","LastActivityAt":"2023-02-16T05:25:56.238699Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1911,"ScoreAtt":36,"RankDef":1023,"ScoreDef":120011,"RankSup":0,"ScoreSup":0,"RankTotal":1322,"ScoreTotal":120047,"ID":8006209,"Name":"Szymon9904","NumVillages":1,"Points":730,"Rank":1919,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8006209","BestRank":1919,"BestRankAt":"2023-02-16T05:25:56.238699Z","MostPoints":730,"MostPointsAt":"2023-02-16T05:25:56.2387Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971518Z","LastActivityAt":"2023-02-16T05:25:56.2387Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":547,"ScoreAtt":286980,"RankDef":2044,"ScoreDef":3627,"RankSup":690,"ScoreSup":54167,"RankTotal":964,"ScoreTotal":344774,"ID":8013349,"Name":"Malinka696","NumVillages":33,"Points":282617,"Rank":361,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8013349","BestRank":361,"BestRankAt":"2023-02-16T05:25:56.2387Z","MostPoints":282617,"MostPointsAt":"2023-02-16T05:25:56.2387Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:48.971519Z","LastActivityAt":"2023-02-16T05:25:56.2387Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1840,"ScoreDef":10204,"RankSup":0,"ScoreSup":0,"RankTotal":1988,"ScoreTotal":10204,"ID":8015775,"Name":"nihal3377","NumVillages":3,"Points":10718,"Rank":1063,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8015775","BestRank":1063,"BestRankAt":"2023-02-16T05:25:56.2387Z","MostPoints":10718,"MostPointsAt":"2023-02-16T05:25:48.971519Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971519Z","LastActivityAt":"2023-02-16T05:25:48.97152Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":921,"ScoreAtt":46612,"RankDef":2412,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1629,"ScoreTotal":46622,"ID":8015955,"Name":"kacper10ciupek","NumVillages":3,"Points":13988,"Rank":1014,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8015955","BestRank":1014,"BestRankAt":"2023-02-16T05:25:56.238701Z","MostPoints":13988,"MostPointsAt":"2023-02-16T05:25:56.238701Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:56.238701Z","LastActivityAt":"2023-02-16T05:25:56.238701Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":541,"ScoreDef":457747,"RankSup":0,"ScoreSup":0,"RankTotal":869,"ScoreTotal":457747,"ID":8019812,"Name":"Vladoks","NumVillages":1,"Points":6303,"Rank":1247,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8019812","BestRank":1247,"BestRankAt":"2023-02-16T05:25:56.238702Z","MostPoints":6303,"MostPointsAt":"2023-02-16T05:25:56.238702Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971522Z","LastActivityAt":"2023-02-16T05:25:56.238702Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8043286,"Name":"Saladyn Pustyny","NumVillages":1,"Points":26,"Rank":2629,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8043286","BestRank":2629,"BestRankAt":"2023-02-16T05:25:56.238702Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971523Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971523Z","LastActivityAt":"2023-02-16T05:25:48.971523Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":578,"ScoreAtt":240861,"RankDef":364,"ScoreDef":830634,"RankSup":566,"ScoreSup":121389,"RankTotal":567,"ScoreTotal":1192884,"ID":8048374,"Name":"szlon","NumVillages":21,"Points":159421,"Rank":451,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8048374","BestRank":450,"BestRankAt":"2023-02-16T05:25:48.971523Z","MostPoints":159421,"MostPointsAt":"2023-02-16T05:25:56.238703Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:48.971523Z","LastActivityAt":"2023-02-16T05:25:56.238703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8055581,"Name":"Botty","NumVillages":1,"Points":311,"Rank":2144,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8055581","BestRank":2144,"BestRankAt":"2023-02-16T05:25:56.238703Z","MostPoints":311,"MostPointsAt":"2023-02-16T05:25:56.238703Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971524Z","LastActivityAt":"2023-02-16T05:25:56.238703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1530,"ScoreDef":30563,"RankSup":0,"ScoreSup":0,"RankTotal":1762,"ScoreTotal":30563,"ID":8061953,"Name":"artnow","NumVillages":1,"Points":119,"Rank":2425,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8061953","BestRank":2425,"BestRankAt":"2023-02-16T05:25:56.238704Z","MostPoints":119,"MostPointsAt":"2023-02-16T05:25:48.971525Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971525Z","LastActivityAt":"2023-02-16T05:25:48.971525Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1674,"ScoreAtt":682,"RankDef":921,"ScoreDef":157553,"RankSup":0,"ScoreSup":0,"RankTotal":1230,"ScoreTotal":158235,"ID":8062053,"Name":"Dam-","NumVillages":1,"Points":1765,"Rank":1694,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8062053","BestRank":1694,"BestRankAt":"2023-02-16T05:25:56.238704Z","MostPoints":1765,"MostPointsAt":"2023-02-16T05:25:48.971525Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971525Z","LastActivityAt":"2023-02-16T05:25:48.971525Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":214,"ScoreAtt":1465374,"RankDef":795,"ScoreDef":218774,"RankSup":216,"ScoreSup":854046,"RankTotal":345,"ScoreTotal":2538194,"ID":8078914,"Name":"Panicore1","NumVillages":127,"Points":1162594,"Rank":118,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8078914","BestRank":118,"BestRankAt":"2023-02-16T05:25:48.971526Z","MostPoints":1162594,"MostPointsAt":"2023-02-16T05:25:56.238705Z","MostVillages":127,"MostVillagesAt":"2023-02-16T05:25:48.971526Z","LastActivityAt":"2023-02-16T05:25:56.238705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1904,"ScoreDef":7509,"RankSup":0,"ScoreSup":0,"RankTotal":2045,"ScoreTotal":7509,"ID":8082376,"Name":"Chefrenus","NumVillages":1,"Points":2887,"Rank":1529,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8082376","BestRank":1529,"BestRankAt":"2023-02-16T05:25:56.238705Z","MostPoints":2887,"MostPointsAt":"2023-02-16T05:25:48.971526Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971526Z","LastActivityAt":"2023-02-16T05:25:48.971526Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":237,"ScoreAtt":1251455,"RankDef":1439,"ScoreDef":38969,"RankSup":431,"ScoreSup":250658,"RankTotal":482,"ScoreTotal":1541082,"ID":8083365,"Name":"Segadorr","NumVillages":1,"Points":26,"Rank":2660,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8083365","BestRank":2660,"BestRankAt":"2023-02-16T05:25:48.971527Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971527Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971527Z","LastActivityAt":"2023-02-16T05:25:48.971527Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971886Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8095505,"Name":"iSeAtakuj","NumVillages":1,"Points":26,"Rank":2661,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8095505","BestRank":2661,"BestRankAt":"2023-02-16T05:25:48.971527Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971527Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971527Z","LastActivityAt":"2023-02-16T05:25:48.971527Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971886Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":224,"ScoreAtt":1322646,"RankDef":919,"ScoreDef":157944,"RankSup":277,"ScoreSup":588570,"RankTotal":397,"ScoreTotal":2069160,"ID":8096537,"Name":"koffi950","NumVillages":80,"Points":726891,"Rank":199,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8096537","BestRank":197,"BestRankAt":"2023-02-16T05:25:48.971528Z","MostPoints":726891,"MostPointsAt":"2023-02-16T05:25:56.238706Z","MostVillages":80,"MostVillagesAt":"2023-02-16T05:25:48.971528Z","LastActivityAt":"2023-02-16T05:25:56.238706Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1514,"ScoreDef":32092,"RankSup":0,"ScoreSup":0,"RankTotal":1750,"ScoreTotal":32092,"ID":8097158,"Name":"maybe-later","NumVillages":1,"Points":1513,"Rank":1735,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8097158","BestRank":1735,"BestRankAt":"2023-02-16T05:25:56.238706Z","MostPoints":1513,"MostPointsAt":"2023-02-16T05:25:56.238706Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971528Z","LastActivityAt":"2023-02-16T05:25:56.238706Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":139,"ScoreAtt":2241865,"RankDef":2,"ScoreDef":57036847,"RankSup":54,"ScoreSup":3303897,"RankTotal":3,"ScoreTotal":62582609,"ID":8099868,"Name":"Brown","NumVillages":54,"Points":460813,"Rank":281,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8099868","BestRank":279,"BestRankAt":"2023-02-16T05:25:48.971529Z","MostPoints":469814,"MostPointsAt":"2023-02-16T05:25:48.971529Z","MostVillages":56,"MostVillagesAt":"2023-02-16T05:25:48.971529Z","LastActivityAt":"2023-02-16T05:25:48.971529Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8106333,"Name":"wojtas0112","NumVillages":1,"Points":263,"Rank":2196,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8106333","BestRank":2196,"BestRankAt":"2023-02-16T05:25:56.238707Z","MostPoints":263,"MostPointsAt":"2023-02-16T05:25:56.238707Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971529Z","LastActivityAt":"2023-02-16T05:25:56.238707Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1051,"ScoreAtt":22871,"RankDef":329,"ScoreDef":992528,"RankSup":859,"ScoreSup":15248,"RankTotal":607,"ScoreTotal":1030647,"ID":8123790,"Name":"ƁYSY WIATR","NumVillages":10,"Points":23714,"Rank":876,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8123790","BestRank":875,"BestRankAt":"2023-02-16T05:25:48.97153Z","MostPoints":23714,"MostPointsAt":"2023-02-16T05:25:48.97153Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.97153Z","LastActivityAt":"2023-02-16T05:25:48.97153Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971887Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1867,"ScoreDef":9086,"RankSup":1139,"ScoreSup":1078,"RankTotal":1989,"ScoreTotal":10164,"ID":8128478,"Name":"szabla32","NumVillages":1,"Points":560,"Rank":1986,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8128478","BestRank":1986,"BestRankAt":"2023-02-16T05:25:56.238708Z","MostPoints":560,"MostPointsAt":"2023-02-16T05:25:48.971531Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971531Z","LastActivityAt":"2023-02-16T05:25:48.971531Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8134135,"Name":"SHIRINA","NumVillages":1,"Points":468,"Rank":2028,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8134135","BestRank":2028,"BestRankAt":"2023-02-16T05:25:56.238709Z","MostPoints":468,"MostPointsAt":"2023-02-16T05:25:48.971531Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971531Z","LastActivityAt":"2023-02-16T05:25:48.971531Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":320,"ScoreAtt":834296,"RankDef":1199,"ScoreDef":72556,"RankSup":769,"ScoreSup":32382,"RankTotal":640,"ScoreTotal":939234,"ID":8138506,"Name":"jablonka345","NumVillages":43,"Points":406217,"Rank":300,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8138506","BestRank":300,"BestRankAt":"2023-02-16T05:25:48.971532Z","MostPoints":406217,"MostPointsAt":"2023-02-16T05:25:56.238709Z","MostVillages":43,"MostVillagesAt":"2023-02-16T05:25:48.971532Z","LastActivityAt":"2023-02-16T05:25:56.238709Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":283,"ScoreAtt":993105,"RankDef":30,"ScoreDef":11485813,"RankSup":37,"ScoreSup":4202695,"RankTotal":39,"ScoreTotal":16681613,"ID":8153179,"Name":"Gryffinhart","NumVillages":3,"Points":18354,"Rank":941,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8153179","BestRank":941,"BestRankAt":"2023-02-16T05:25:56.23871Z","MostPoints":18354,"MostPointsAt":"2023-02-16T05:25:48.971532Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971532Z","LastActivityAt":"2023-02-16T05:25:48.971532Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":609,"ScoreAtt":203283,"RankDef":822,"ScoreDef":203462,"RankSup":433,"ScoreSup":249142,"RankTotal":749,"ScoreTotal":655887,"ID":8153941,"Name":"IIIIIIIIIIIII","NumVillages":23,"Points":135462,"Rank":484,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8153941","BestRank":484,"BestRankAt":"2023-02-16T05:25:56.23871Z","MostPoints":135462,"MostPointsAt":"2023-02-16T05:25:56.23871Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:48.971533Z","LastActivityAt":"2023-02-16T05:25:56.23871Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":147,"ScoreAtt":2111209,"RankDef":94,"ScoreDef":3681017,"RankSup":74,"ScoreSup":2805192,"RankTotal":94,"ScoreTotal":8597418,"ID":8155296,"Name":"maniek 1985","NumVillages":56,"Points":523467,"Rank":259,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8155296","BestRank":259,"BestRankAt":"2023-02-16T05:25:56.238711Z","MostPoints":523467,"MostPointsAt":"2023-02-16T05:25:56.238711Z","MostVillages":56,"MostVillagesAt":"2023-02-16T05:25:48.971533Z","LastActivityAt":"2023-02-16T05:25:56.238711Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1987,"ScoreDef":5237,"RankSup":0,"ScoreSup":0,"RankTotal":2115,"ScoreTotal":5237,"ID":8160123,"Name":"Ahaber","NumVillages":0,"Points":0,"Rank":2900,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8160123","BestRank":2900,"BestRankAt":"2023-02-16T05:25:56.238711Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971534Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971534Z","LastActivityAt":"2023-02-16T05:25:48.971534Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1501,"ScoreAtt":2300,"RankDef":369,"ScoreDef":822175,"RankSup":608,"ScoreSup":94017,"RankTotal":646,"ScoreTotal":918492,"ID":8167837,"Name":"diwad11x","NumVillages":0,"Points":0,"Rank":2901,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8167837","BestRank":2901,"BestRankAt":"2023-02-16T05:25:56.238712Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971534Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971534Z","LastActivityAt":"2023-02-16T05:25:48.971535Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":773,"ScoreAtt":90768,"RankDef":188,"ScoreDef":2007007,"RankSup":325,"ScoreSup":453722,"RankTotal":344,"ScoreTotal":2551497,"ID":8175236,"Name":"Joker77777","NumVillages":14,"Points":18239,"Rank":942,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8175236","BestRank":942,"BestRankAt":"2023-02-16T05:25:56.238712Z","MostPoints":18239,"MostPointsAt":"2023-02-16T05:25:48.971535Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:48.971535Z","LastActivityAt":"2023-02-16T05:25:48.971535Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":528,"ScoreAtt":312394,"RankDef":193,"ScoreDef":1973145,"RankSup":466,"ScoreSup":202176,"RankTotal":350,"ScoreTotal":2487715,"ID":8184383,"Name":"ProXima26","NumVillages":6,"Points":38800,"Rank":746,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8184383","BestRank":722,"BestRankAt":"2023-02-16T05:25:48.971535Z","MostPoints":43373,"MostPointsAt":"2023-02-16T05:25:48.971536Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971535Z","LastActivityAt":"2023-02-16T05:25:48.971536Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97189Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2428,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2520,"ScoreTotal":10,"ID":8185721,"Name":"endwar77","NumVillages":1,"Points":1976,"Rank":1658,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8185721","BestRank":1658,"BestRankAt":"2023-02-16T05:25:56.238713Z","MostPoints":1976,"MostPointsAt":"2023-02-16T05:25:56.238713Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971536Z","LastActivityAt":"2023-02-16T05:25:56.238713Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97189Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":371,"ScoreAtt":648499,"RankDef":742,"ScoreDef":248366,"RankSup":306,"ScoreSup":514380,"RankTotal":517,"ScoreTotal":1411245,"ID":8191129,"Name":"Diabellny","NumVillages":23,"Points":218030,"Rank":406,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8191129","BestRank":405,"BestRankAt":"2023-02-16T05:25:48.971536Z","MostPoints":218030,"MostPointsAt":"2023-02-16T05:25:56.238714Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:48.971537Z","LastActivityAt":"2023-02-16T05:25:56.238714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97189Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1869,"ScoreAtt":75,"RankDef":1206,"ScoreDef":71549,"RankSup":0,"ScoreSup":0,"RankTotal":1489,"ScoreTotal":71624,"ID":8192845,"Name":"silesias marco","NumVillages":2,"Points":13553,"Rank":1023,"TribeID":1161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8192845","BestRank":1021,"BestRankAt":"2023-02-16T05:25:48.971537Z","MostPoints":13553,"MostPointsAt":"2023-02-16T05:25:56.238714Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971537Z","LastActivityAt":"2023-02-16T05:25:56.238714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97189Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8197987,"Name":"Andragon21","NumVillages":1,"Points":61,"Rank":2527,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8197987","BestRank":2527,"BestRankAt":"2023-02-16T05:25:56.238715Z","MostPoints":61,"MostPointsAt":"2023-02-16T05:25:48.971538Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971538Z","LastActivityAt":"2023-02-16T05:25:48.971538Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":231,"ScoreAtt":1288954,"RankDef":1579,"ScoreDef":27027,"RankSup":10,"ScoreSup":6913992,"RankTotal":99,"ScoreTotal":8229973,"ID":8199417,"Name":"abimm5644","NumVillages":91,"Points":918930,"Rank":160,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8199417","BestRank":160,"BestRankAt":"2023-02-16T05:25:48.971538Z","MostPoints":918930,"MostPointsAt":"2023-02-16T05:25:56.238715Z","MostVillages":91,"MostVillagesAt":"2023-02-16T05:25:48.971538Z","LastActivityAt":"2023-02-16T05:25:56.238715Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":210,"ScoreAtt":1495399,"RankDef":909,"ScoreDef":164639,"RankSup":53,"ScoreSup":3309232,"RankTotal":188,"ScoreTotal":4969270,"ID":8201460,"Name":"MUNq","NumVillages":69,"Points":664628,"Rank":215,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8201460","BestRank":215,"BestRankAt":"2023-02-16T05:25:48.971539Z","MostPoints":664628,"MostPointsAt":"2023-02-16T05:25:56.238716Z","MostVillages":69,"MostVillagesAt":"2023-02-16T05:25:48.971539Z","LastActivityAt":"2023-02-16T05:25:56.238716Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1523,"ScoreDef":31261,"RankSup":0,"ScoreSup":0,"RankTotal":1756,"ScoreTotal":31261,"ID":8204028,"Name":"moskittt","NumVillages":1,"Points":307,"Rank":2150,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8204028","BestRank":2150,"BestRankAt":"2023-02-16T05:25:56.238716Z","MostPoints":307,"MostPointsAt":"2023-02-16T05:25:48.971539Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971539Z","LastActivityAt":"2023-02-16T05:25:48.971539Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1054,"ScoreAtt":22310,"RankDef":1085,"ScoreDef":97623,"RankSup":0,"ScoreSup":0,"RankTotal":1323,"ScoreTotal":119933,"ID":8204926,"Name":"crisyss","NumVillages":0,"Points":0,"Rank":2902,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8204926","BestRank":2902,"BestRankAt":"2023-02-16T05:25:56.238717Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.97154Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.97154Z","LastActivityAt":"2023-02-16T05:25:48.97154Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8217130,"Name":"dalesz1212","NumVillages":1,"Points":1026,"Rank":1841,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8217130","BestRank":1841,"BestRankAt":"2023-02-16T05:25:56.238717Z","MostPoints":1026,"MostPointsAt":"2023-02-16T05:25:56.238717Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97154Z","LastActivityAt":"2023-02-16T05:25:56.238718Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":544,"ScoreAtt":291140,"RankDef":267,"ScoreDef":1396037,"RankSup":438,"ScoreSup":246379,"RankTotal":418,"ScoreTotal":1933556,"ID":8218433,"Name":"yam1","NumVillages":1,"Points":172,"Rank":2326,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8218433","BestRank":2326,"BestRankAt":"2023-02-16T05:25:56.238718Z","MostPoints":172,"MostPointsAt":"2023-02-16T05:25:56.238718Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971541Z","LastActivityAt":"2023-02-16T05:25:56.238718Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1152,"ScoreAtt":13213,"RankDef":1332,"ScoreDef":53455,"RankSup":964,"ScoreSup":6391,"RankTotal":1479,"ScoreTotal":73059,"ID":8224678,"Name":"marcinnn19922","NumVillages":16,"Points":128678,"Rank":494,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8224678","BestRank":494,"BestRankAt":"2023-02-16T05:25:56.238718Z","MostPoints":128678,"MostPointsAt":"2023-02-16T05:25:56.238719Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:48.971541Z","LastActivityAt":"2023-02-16T05:25:56.238719Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8239348,"Name":"gejus007","NumVillages":1,"Points":128,"Rank":2404,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8239348","BestRank":2404,"BestRankAt":"2023-02-16T05:25:56.238719Z","MostPoints":128,"MostPointsAt":"2023-02-16T05:25:48.971542Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971542Z","LastActivityAt":"2023-02-16T05:25:48.971542Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1353,"ScoreDef":49834,"RankSup":0,"ScoreSup":0,"RankTotal":1607,"ScoreTotal":49834,"ID":8240209,"Name":"nagtagumpay","NumVillages":0,"Points":0,"Rank":2903,"TribeID":89,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8240209","BestRank":2903,"BestRankAt":"2023-02-16T05:25:56.238719Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971543Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971543Z","LastActivityAt":"2023-02-16T05:25:48.971543Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":985,"ScoreAtt":33054,"RankDef":1229,"ScoreDef":66920,"RankSup":0,"ScoreSup":0,"RankTotal":1388,"ScoreTotal":99974,"ID":8240677,"Name":"saskie123","NumVillages":6,"Points":42308,"Rank":731,"TribeID":176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8240677","BestRank":731,"BestRankAt":"2023-02-16T05:25:56.23872Z","MostPoints":42308,"MostPointsAt":"2023-02-16T05:25:56.23872Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971543Z","LastActivityAt":"2023-02-16T05:25:56.23872Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":468,"ScoreAtt":415797,"RankDef":1383,"ScoreDef":46787,"RankSup":1382,"ScoreSup":2,"RankTotal":866,"ScoreTotal":462586,"ID":8259895,"Name":"strateg5","NumVillages":52,"Points":275266,"Rank":364,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8259895","BestRank":364,"BestRankAt":"2023-02-16T05:25:56.238721Z","MostPoints":275266,"MostPointsAt":"2023-02-16T05:25:56.238721Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:56.238721Z","LastActivityAt":"2023-02-16T05:25:56.238721Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":412,"ScoreAtt":552609,"RankDef":727,"ScoreDef":261746,"RankSup":319,"ScoreSup":464671,"RankTotal":548,"ScoreTotal":1279026,"ID":8268010,"Name":"WALECZNY213","NumVillages":36,"Points":236063,"Rank":390,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8268010","BestRank":390,"BestRankAt":"2023-02-16T05:25:56.238721Z","MostPoints":236063,"MostPointsAt":"2023-02-16T05:25:56.238721Z","MostVillages":36,"MostVillagesAt":"2023-02-16T05:25:48.971544Z","LastActivityAt":"2023-02-16T05:25:56.238721Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1021,"ScoreAtt":27042,"RankDef":1537,"ScoreDef":30120,"RankSup":0,"ScoreSup":0,"RankTotal":1565,"ScoreTotal":57162,"ID":8274566,"Name":"dzoper1000","NumVillages":0,"Points":0,"Rank":2904,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8274566","BestRank":2904,"BestRankAt":"2023-02-16T05:25:56.238722Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971545Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971545Z","LastActivityAt":"2023-02-16T05:25:48.971545Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971893Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1994,"ScoreDef":4820,"RankSup":1324,"ScoreSup":13,"RankTotal":2126,"ScoreTotal":4833,"ID":8288459,"Name":"baka21sklad","NumVillages":0,"Points":0,"Rank":2905,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8288459","BestRank":2905,"BestRankAt":"2023-02-16T05:25:56.238722Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971545Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971545Z","LastActivityAt":"2023-02-16T05:25:48.971546Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8290773,"Name":"Chubi i marcinzero","NumVillages":1,"Points":26,"Rank":2630,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8290773","BestRank":2630,"BestRankAt":"2023-02-16T05:25:56.238723Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971546Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971546Z","LastActivityAt":"2023-02-16T05:25:48.971546Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1605,"ScoreAtt":1184,"RankDef":1942,"ScoreDef":6301,"RankSup":0,"ScoreSup":0,"RankTotal":2047,"ScoreTotal":7485,"ID":8292737,"Name":"wodzu 22","NumVillages":1,"Points":6928,"Rank":1212,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8292737","BestRank":1167,"BestRankAt":"2023-02-16T05:25:48.971546Z","MostPoints":7837,"MostPointsAt":"2023-02-16T05:25:48.971547Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971546Z","LastActivityAt":"2023-02-16T05:25:48.971547Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1517,"ScoreAtt":2139,"RankDef":1999,"ScoreDef":4583,"RankSup":0,"ScoreSup":0,"RankTotal":2065,"ScoreTotal":6722,"ID":8305343,"Name":"julix5","NumVillages":1,"Points":2332,"Rank":1598,"TribeID":503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8305343","BestRank":1598,"BestRankAt":"2023-02-16T05:25:56.238724Z","MostPoints":2332,"MostPointsAt":"2023-02-16T05:25:48.971547Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971547Z","LastActivityAt":"2023-02-16T05:25:48.971547Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8309492,"Name":"MANTOQ","NumVillages":1,"Points":208,"Rank":2257,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8309492","BestRank":2257,"BestRankAt":"2023-02-16T05:25:56.238724Z","MostPoints":208,"MostPointsAt":"2023-02-16T05:25:56.238724Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971548Z","LastActivityAt":"2023-02-16T05:25:56.238724Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8312412,"Name":"SwwQ","NumVillages":1,"Points":26,"Rank":2631,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8312412","BestRank":2631,"BestRankAt":"2023-02-16T05:25:56.238725Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971548Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971548Z","LastActivityAt":"2023-02-16T05:25:48.971548Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1642,"ScoreAtt":835,"RankDef":890,"ScoreDef":171958,"RankSup":807,"ScoreSup":23286,"RankTotal":1142,"ScoreTotal":196079,"ID":8320319,"Name":"niunio69","NumVillages":3,"Points":4530,"Rank":1357,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8320319","BestRank":1357,"BestRankAt":"2023-02-16T05:25:56.238725Z","MostPoints":4530,"MostPointsAt":"2023-02-16T05:25:56.238725Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:56.238725Z","LastActivityAt":"2023-02-16T05:25:56.238725Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":194,"ScoreAtt":1611572,"RankDef":898,"ScoreDef":168573,"RankSup":866,"ScoreSup":14696,"RankTotal":442,"ScoreTotal":1794841,"ID":8323711,"Name":"Yaooo","NumVillages":56,"Points":505120,"Rank":265,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8323711","BestRank":265,"BestRankAt":"2023-02-16T05:25:56.238726Z","MostPoints":505120,"MostPointsAt":"2023-02-16T05:25:56.238726Z","MostVillages":56,"MostVillagesAt":"2023-02-16T05:25:48.97155Z","LastActivityAt":"2023-02-16T05:25:56.238726Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":939,"ScoreAtt":42299,"RankDef":1960,"ScoreDef":5800,"RankSup":0,"ScoreSup":0,"RankTotal":1620,"ScoreTotal":48099,"ID":8325063,"Name":"krzysiuaa","NumVillages":0,"Points":0,"Rank":2906,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8325063","BestRank":2906,"BestRankAt":"2023-02-16T05:25:56.238726Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.97155Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.97155Z","LastActivityAt":"2023-02-16T05:25:48.971551Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1451,"ScoreAtt":3082,"RankDef":616,"ScoreDef":360668,"RankSup":863,"ScoreSup":15122,"RankTotal":934,"ScoreTotal":378872,"ID":8325700,"Name":"bambinos66","NumVillages":2,"Points":8019,"Rank":1153,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8325700","BestRank":1153,"BestRankAt":"2023-02-16T05:25:56.238727Z","MostPoints":8019,"MostPointsAt":"2023-02-16T05:25:56.238727Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971551Z","LastActivityAt":"2023-02-16T05:25:56.238727Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":145,"ScoreAtt":2163430,"RankDef":774,"ScoreDef":233568,"RankSup":624,"ScoreSup":86108,"RankTotal":351,"ScoreTotal":2483106,"ID":8337151,"Name":"lisseks","NumVillages":133,"Points":1247295,"Rank":104,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8337151","BestRank":102,"BestRankAt":"2023-02-16T05:25:48.971567Z","MostPoints":1247295,"MostPointsAt":"2023-02-16T05:25:56.238727Z","MostVillages":133,"MostVillagesAt":"2023-02-16T05:25:48.971567Z","LastActivityAt":"2023-02-16T05:25:56.238727Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1589,"ScoreDef":25958,"RankSup":0,"ScoreSup":0,"RankTotal":1807,"ScoreTotal":25958,"ID":8362886,"Name":"lozi20","NumVillages":1,"Points":174,"Rank":2322,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8362886","BestRank":2322,"BestRankAt":"2023-02-16T05:25:56.238728Z","MostPoints":174,"MostPointsAt":"2023-02-16T05:25:48.971568Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971568Z","LastActivityAt":"2023-02-16T05:25:48.971568Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":681,"ScoreAtt":140454,"RankDef":1954,"ScoreDef":5883,"RankSup":1013,"ScoreSup":4164,"RankTotal":1245,"ScoreTotal":150501,"ID":8366045,"Name":"**Dzikos**","NumVillages":20,"Points":136882,"Rank":482,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8366045","BestRank":482,"BestRankAt":"2023-02-16T05:25:56.238728Z","MostPoints":136882,"MostPointsAt":"2023-02-16T05:25:56.238728Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:48.971568Z","LastActivityAt":"2023-02-16T05:25:56.238729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1866,"ScoreDef":9089,"RankSup":0,"ScoreSup":0,"RankTotal":2007,"ScoreTotal":9089,"ID":8366849,"Name":"stopercool","NumVillages":1,"Points":139,"Rank":2374,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8366849","BestRank":2374,"BestRankAt":"2023-02-16T05:25:56.238729Z","MostPoints":139,"MostPointsAt":"2023-02-16T05:25:56.238729Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971569Z","LastActivityAt":"2023-02-16T05:25:56.238729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":515,"ScoreAtt":331832,"RankDef":122,"ScoreDef":3160861,"RankSup":719,"ScoreSup":42661,"RankTotal":255,"ScoreTotal":3535354,"ID":8369561,"Name":"GELU-GELU","NumVillages":0,"Points":0,"Rank":2907,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8369561","BestRank":2907,"BestRankAt":"2023-02-16T05:25:56.238729Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.97157Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.97157Z","LastActivityAt":"2023-02-16T05:25:48.97157Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1812,"ScoreAtt":154,"RankDef":2047,"ScoreDef":3592,"RankSup":0,"ScoreSup":0,"RankTotal":2166,"ScoreTotal":3746,"ID":8369657,"Name":"czarna perƂa","NumVillages":1,"Points":1175,"Rank":1796,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8369657","BestRank":1796,"BestRankAt":"2023-02-16T05:25:56.23873Z","MostPoints":1175,"MostPointsAt":"2023-02-16T05:25:48.971571Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971571Z","LastActivityAt":"2023-02-16T05:25:48.971571Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":596,"ScoreAtt":216715,"RankDef":1488,"ScoreDef":34935,"RankSup":116,"ScoreSup":1935593,"RankTotal":384,"ScoreTotal":2187243,"ID":8369778,"Name":"PARASOL X","NumVillages":53,"Points":448199,"Rank":284,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8369778","BestRank":284,"BestRankAt":"2023-02-16T05:25:56.23873Z","MostPoints":448199,"MostPointsAt":"2023-02-16T05:25:56.238731Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:56.238731Z","LastActivityAt":"2023-02-16T05:25:56.238731Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1637,"ScoreAtt":950,"RankDef":1709,"ScoreDef":18198,"RankSup":0,"ScoreSup":0,"RankTotal":1882,"ScoreTotal":19148,"ID":8370183,"Name":"ZWIADOWCA 2","NumVillages":1,"Points":771,"Rank":1930,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8370183","BestRank":1930,"BestRankAt":"2023-02-16T05:25:48.971572Z","MostPoints":771,"MostPointsAt":"2023-02-16T05:25:48.971572Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971572Z","LastActivityAt":"2023-02-16T05:25:48.971572Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971898Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1059,"ScoreAtt":21695,"RankDef":1113,"ScoreDef":91799,"RankSup":0,"ScoreSup":0,"RankTotal":1342,"ScoreTotal":113494,"ID":8373234,"Name":"20Cinek20","NumVillages":0,"Points":0,"Rank":2908,"TribeID":1626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8373234","BestRank":2908,"BestRankAt":"2023-02-16T05:25:56.238731Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971573Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971573Z","LastActivityAt":"2023-02-16T05:25:48.971573Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1554,"ScoreDef":28931,"RankSup":0,"ScoreSup":0,"RankTotal":1776,"ScoreTotal":28931,"ID":8379825,"Name":"Frolunda","NumVillages":1,"Points":536,"Rank":1990,"TribeID":474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8379825","BestRank":1990,"BestRankAt":"2023-02-16T05:25:56.238731Z","MostPoints":536,"MostPointsAt":"2023-02-16T05:25:48.971574Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971574Z","LastActivityAt":"2023-02-16T05:25:48.971574Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1854,"ScoreDef":9689,"RankSup":0,"ScoreSup":0,"RankTotal":1998,"ScoreTotal":9689,"ID":8379871,"Name":"bula1101-95","NumVillages":1,"Points":3783,"Rank":1419,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8379871","BestRank":1419,"BestRankAt":"2023-02-16T05:25:56.238732Z","MostPoints":3783,"MostPointsAt":"2023-02-16T05:25:56.238732Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971574Z","LastActivityAt":"2023-02-16T05:25:56.238732Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1932,"ScoreAtt":23,"RankDef":1544,"ScoreDef":29485,"RankSup":0,"ScoreSup":0,"RankTotal":1770,"ScoreTotal":29508,"ID":8386608,"Name":"milosz1612","NumVillages":0,"Points":0,"Rank":2909,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8386608","BestRank":2909,"BestRankAt":"2023-02-16T05:25:56.238733Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971575Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971575Z","LastActivityAt":"2023-02-16T05:25:48.971575Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8399822,"Name":"Future Traveler","NumVillages":1,"Points":26,"Rank":2632,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8399822","BestRank":2632,"BestRankAt":"2023-02-16T05:25:56.238733Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971576Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971576Z","LastActivityAt":"2023-02-16T05:25:48.971576Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1443,"ScoreAtt":3236,"RankDef":1311,"ScoreDef":55791,"RankSup":0,"ScoreSup":0,"RankTotal":1556,"ScoreTotal":59027,"ID":8400180,"Name":"plelinia","NumVillages":5,"Points":43453,"Rank":725,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8400180","BestRank":725,"BestRankAt":"2023-02-16T05:25:56.238733Z","MostPoints":43453,"MostPointsAt":"2023-02-16T05:25:56.238734Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.971577Z","LastActivityAt":"2023-02-16T05:25:56.238734Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1791,"ScoreAtt":207,"RankDef":914,"ScoreDef":160311,"RankSup":0,"ScoreSup":0,"RankTotal":1227,"ScoreTotal":160518,"ID":8400975,"Name":"leo1414","NumVillages":2,"Points":3290,"Rank":1479,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8400975","BestRank":1479,"BestRankAt":"2023-02-16T05:25:56.238734Z","MostPoints":3410,"MostPointsAt":"2023-02-16T05:25:48.971577Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971577Z","LastActivityAt":"2023-02-16T05:25:48.971577Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2009,"ScoreDef":4427,"RankSup":1296,"ScoreSup":27,"RankTotal":2140,"ScoreTotal":4454,"ID":8408007,"Name":"admirer2","NumVillages":1,"Points":1987,"Rank":1656,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8408007","BestRank":1656,"BestRankAt":"2023-02-16T05:25:56.238735Z","MostPoints":1987,"MostPointsAt":"2023-02-16T05:25:48.971578Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971578Z","LastActivityAt":"2023-02-16T05:25:48.971578Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1912,"ScoreDef":7212,"RankSup":0,"ScoreSup":0,"RankTotal":2054,"ScoreTotal":7212,"ID":8411874,"Name":"uks13","NumVillages":1,"Points":771,"Rank":1911,"TribeID":841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8411874","BestRank":1911,"BestRankAt":"2023-02-16T05:25:56.238735Z","MostPoints":771,"MostPointsAt":"2023-02-16T05:25:48.971579Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971578Z","LastActivityAt":"2023-02-16T05:25:48.971579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":696,"ScoreAtt":130798,"RankDef":1851,"ScoreDef":9722,"RankSup":0,"ScoreSup":0,"RankTotal":1268,"ScoreTotal":140520,"ID":8418489,"Name":"Inpetto","NumVillages":10,"Points":72407,"Rank":604,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8418489","BestRank":604,"BestRankAt":"2023-02-16T05:25:56.238735Z","MostPoints":72407,"MostPointsAt":"2023-02-16T05:25:56.238736Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.971579Z","LastActivityAt":"2023-02-16T05:25:56.238736Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":52,"ScoreAtt":4839656,"RankDef":317,"ScoreDef":1071165,"RankSup":256,"ScoreSup":664286,"RankTotal":137,"ScoreTotal":6575107,"ID":8419570,"Name":"Maddov","NumVillages":116,"Points":1073198,"Rank":133,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8419570","BestRank":131,"BestRankAt":"2023-02-16T05:25:48.97158Z","MostPoints":1073198,"MostPointsAt":"2023-02-16T05:25:56.238736Z","MostVillages":116,"MostVillagesAt":"2023-02-16T05:25:48.97158Z","LastActivityAt":"2023-02-16T05:25:56.238736Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1597,"ScoreAtt":1252,"RankDef":1147,"ScoreDef":85303,"RankSup":0,"ScoreSup":0,"RankTotal":1439,"ScoreTotal":86555,"ID":8420564,"Name":"dawinczi397","NumVillages":0,"Points":0,"Rank":2910,"TribeID":520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8420564","BestRank":2910,"BestRankAt":"2023-02-16T05:25:56.238737Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971581Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.97158Z","LastActivityAt":"2023-02-16T05:25:48.971581Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1191,"ScoreAtt":10882,"RankDef":143,"ScoreDef":2734448,"RankSup":911,"ScoreSup":10283,"RankTotal":317,"ScoreTotal":2755613,"ID":8423835,"Name":"niunia wredna","NumVillages":1,"Points":525,"Rank":1993,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8423835","BestRank":1993,"BestRankAt":"2023-02-16T05:25:56.238737Z","MostPoints":525,"MostPointsAt":"2023-02-16T05:25:56.238737Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971581Z","LastActivityAt":"2023-02-16T05:25:56.238737Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.9719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1881,"ScoreAtt":55,"RankDef":2031,"ScoreDef":3932,"RankSup":0,"ScoreSup":0,"RankTotal":2155,"ScoreTotal":3987,"ID":8425594,"Name":"bobo2210","NumVillages":1,"Points":8160,"Rank":1146,"TribeID":1582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8425594","BestRank":1146,"BestRankAt":"2023-02-16T05:25:56.238738Z","MostPoints":8160,"MostPointsAt":"2023-02-16T05:25:56.238738Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971582Z","LastActivityAt":"2023-02-16T05:25:56.238738Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":571,"ScoreAtt":249868,"RankDef":1430,"ScoreDef":39652,"RankSup":253,"ScoreSup":681873,"RankTotal":628,"ScoreTotal":971393,"ID":8428196,"Name":"Sonofrad","NumVillages":70,"Points":530884,"Rank":257,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8428196","BestRank":257,"BestRankAt":"2023-02-16T05:25:56.238738Z","MostPoints":530884,"MostPointsAt":"2023-02-16T05:25:56.238738Z","MostVillages":70,"MostVillagesAt":"2023-02-16T05:25:56.238738Z","LastActivityAt":"2023-02-16T05:25:56.238738Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8429484,"Name":"MarekLH44","NumVillages":1,"Points":2003,"Rank":1654,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8429484","BestRank":1654,"BestRankAt":"2023-02-16T05:25:56.238739Z","MostPoints":2003,"MostPointsAt":"2023-02-16T05:25:48.971584Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971584Z","LastActivityAt":"2023-02-16T05:25:48.971584Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2331,"ScoreDef":79,"RankSup":0,"ScoreSup":0,"RankTotal":2425,"ScoreTotal":79,"ID":8434727,"Name":"Hektor888","NumVillages":1,"Points":886,"Rank":1876,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8434727","BestRank":1876,"BestRankAt":"2023-02-16T05:25:56.238739Z","MostPoints":886,"MostPointsAt":"2023-02-16T05:25:48.971585Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971585Z","LastActivityAt":"2023-02-16T05:25:48.971585Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":608,"ScoreAtt":203839,"RankDef":815,"ScoreDef":206319,"RankSup":1080,"ScoreSup":2251,"RankTotal":903,"ScoreTotal":412409,"ID":8438707,"Name":"rom2009","NumVillages":20,"Points":154567,"Rank":461,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8438707","BestRank":461,"BestRankAt":"2023-02-16T05:25:56.23874Z","MostPoints":154567,"MostPointsAt":"2023-02-16T05:25:56.23874Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:56.23874Z","LastActivityAt":"2023-02-16T05:25:56.23874Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":299,"ScoreAtt":921138,"RankDef":765,"ScoreDef":235096,"RankSup":891,"ScoreSup":12377,"RankTotal":576,"ScoreTotal":1168611,"ID":8444356,"Name":"optyksrebro","NumVillages":19,"Points":190650,"Rank":426,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8444356","BestRank":426,"BestRankAt":"2023-02-16T05:25:48.971587Z","MostPoints":190650,"MostPointsAt":"2023-02-16T05:25:56.23874Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:48.971587Z","LastActivityAt":"2023-02-16T05:25:56.23874Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1723,"ScoreAtt":382,"RankDef":1035,"ScoreDef":114992,"RankSup":0,"ScoreSup":0,"RankTotal":1339,"ScoreTotal":115374,"ID":8444698,"Name":"Menager86","NumVillages":4,"Points":7533,"Rank":1180,"TribeID":1691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8444698","BestRank":1180,"BestRankAt":"2023-02-16T05:25:56.238741Z","MostPoints":7533,"MostPointsAt":"2023-02-16T05:25:56.238741Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971588Z","LastActivityAt":"2023-02-16T05:25:56.238741Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":144,"ScoreAtt":2165507,"RankDef":386,"ScoreDef":779152,"RankSup":454,"ScoreSup":220696,"RankTotal":278,"ScoreTotal":3165355,"ID":8459255,"Name":"pallad","NumVillages":99,"Points":953617,"Rank":154,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8459255","BestRank":154,"BestRankAt":"2023-02-16T05:25:48.971589Z","MostPoints":953617,"MostPointsAt":"2023-02-16T05:25:56.238741Z","MostVillages":99,"MostVillagesAt":"2023-02-16T05:25:48.971589Z","LastActivityAt":"2023-02-16T05:25:56.238742Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8468862,"Name":"pol992","NumVillages":1,"Points":121,"Rank":2420,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8468862","BestRank":2420,"BestRankAt":"2023-02-16T05:25:56.238742Z","MostPoints":121,"MostPointsAt":"2023-02-16T05:25:48.97159Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971589Z","LastActivityAt":"2023-02-16T05:25:48.97159Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":466,"ScoreAtt":416170,"RankDef":69,"ScoreDef":4865740,"RankSup":921,"ScoreSup":9708,"RankTotal":175,"ScoreTotal":5291618,"ID":8478874,"Name":"Tyson 23","NumVillages":1,"Points":5917,"Rank":1268,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8478874","BestRank":1268,"BestRankAt":"2023-02-16T05:25:56.238742Z","MostPoints":5917,"MostPointsAt":"2023-02-16T05:25:56.238743Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97159Z","LastActivityAt":"2023-02-16T05:25:56.238743Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":773,"ScoreDef":233698,"RankSup":1335,"ScoreSup":9,"RankTotal":1081,"ScoreTotal":233707,"ID":8483719,"Name":"Maja40","NumVillages":1,"Points":1856,"Rank":1682,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8483719","BestRank":1682,"BestRankAt":"2023-02-16T05:25:56.238743Z","MostPoints":1856,"MostPointsAt":"2023-02-16T05:25:48.971591Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971591Z","LastActivityAt":"2023-02-16T05:25:48.971591Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1240,"ScoreAtt":8340,"RankDef":634,"ScoreDef":341384,"RankSup":1284,"ScoreSup":40,"RankTotal":957,"ScoreTotal":349764,"ID":8501514,"Name":"Kugiel102","NumVillages":7,"Points":46100,"Rank":708,"TribeID":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8501514","BestRank":708,"BestRankAt":"2023-02-16T05:25:56.238743Z","MostPoints":46100,"MostPointsAt":"2023-02-16T05:25:56.238744Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971591Z","LastActivityAt":"2023-02-16T05:25:56.238744Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1678,"ScoreAtt":671,"RankDef":1006,"ScoreDef":124730,"RankSup":670,"ScoreSup":60876,"RankTotal":1171,"ScoreTotal":186277,"ID":8502135,"Name":"OZON-01","NumVillages":1,"Points":1226,"Rank":1786,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8502135","BestRank":1786,"BestRankAt":"2023-02-16T05:25:56.238744Z","MostPoints":1226,"MostPointsAt":"2023-02-16T05:25:56.238744Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971592Z","LastActivityAt":"2023-02-16T05:25:56.238744Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":887,"ScoreAtt":53417,"RankDef":257,"ScoreDef":1454075,"RankSup":1299,"ScoreSup":23,"RankTotal":496,"ScoreTotal":1507515,"ID":8503255,"Name":"Czapla506506","NumVillages":2,"Points":5682,"Rank":1281,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8503255","BestRank":1281,"BestRankAt":"2023-02-16T05:25:56.238745Z","MostPoints":5682,"MostPointsAt":"2023-02-16T05:25:48.971593Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971593Z","LastActivityAt":"2023-02-16T05:25:48.971593Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2021,"ScoreDef":4098,"RankSup":0,"ScoreSup":0,"RankTotal":2150,"ScoreTotal":4098,"ID":8510466,"Name":"RychuR","NumVillages":0,"Points":0,"Rank":2911,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8510466","BestRank":2911,"BestRankAt":"2023-02-16T05:25:56.238745Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971594Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971594Z","LastActivityAt":"2023-02-16T05:25:48.971594Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1559,"ScoreAtt":1677,"RankDef":487,"ScoreDef":551349,"RankSup":241,"ScoreSup":736044,"RankTotal":545,"ScoreTotal":1289070,"ID":8513699,"Name":"JW1964","NumVillages":4,"Points":23115,"Rank":883,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8513699","BestRank":880,"BestRankAt":"2023-02-16T05:25:48.971595Z","MostPoints":23167,"MostPointsAt":"2023-02-16T05:25:48.971595Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971595Z","LastActivityAt":"2023-02-16T05:25:48.971595Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":68,"ScoreAtt":4262575,"RankDef":52,"ScoreDef":6465964,"RankSup":39,"ScoreSup":4068942,"RankTotal":51,"ScoreTotal":14797481,"ID":8539216,"Name":"adamkk222","NumVillages":118,"Points":224097,"Rank":401,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8539216","BestRank":355,"BestRankAt":"2023-02-16T05:25:48.971595Z","MostPoints":302479,"MostPointsAt":"2023-02-16T05:25:48.971596Z","MostVillages":138,"MostVillagesAt":"2023-02-16T05:25:48.971596Z","LastActivityAt":"2023-02-16T05:25:48.971596Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":605,"ScoreAtt":206989,"RankDef":1868,"ScoreDef":9053,"RankSup":1207,"ScoreSup":327,"RankTotal":1114,"ScoreTotal":216369,"ID":8541236,"Name":"katoryjcias","NumVillages":8,"Points":69403,"Rank":616,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8541236","BestRank":616,"BestRankAt":"2023-02-16T05:25:56.238746Z","MostPoints":69403,"MostPointsAt":"2023-02-16T05:25:56.238747Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.971596Z","LastActivityAt":"2023-02-16T05:25:56.238747Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8551316,"Name":"vaksso","NumVillages":1,"Points":113,"Rank":2439,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8551316","BestRank":2439,"BestRankAt":"2023-02-16T05:25:56.238747Z","MostPoints":113,"MostPointsAt":"2023-02-16T05:25:48.971597Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971597Z","LastActivityAt":"2023-02-16T05:25:48.971598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1868,"ScoreAtt":82,"RankDef":1611,"ScoreDef":25031,"RankSup":0,"ScoreSup":0,"RankTotal":1814,"ScoreTotal":25113,"ID":8552893,"Name":"dynamit666","NumVillages":1,"Points":2551,"Rank":1568,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8552893","BestRank":1568,"BestRankAt":"2023-02-16T05:25:56.238747Z","MostPoints":2551,"MostPointsAt":"2023-02-16T05:25:56.238748Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971598Z","LastActivityAt":"2023-02-16T05:25:56.238748Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1907,"ScoreDef":7449,"RankSup":0,"ScoreSup":0,"RankTotal":2051,"ScoreTotal":7449,"ID":8553904,"Name":"Byziaczek","NumVillages":1,"Points":2140,"Rank":1628,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8553904","BestRank":1628,"BestRankAt":"2023-02-16T05:25:56.238748Z","MostPoints":2140,"MostPointsAt":"2023-02-16T05:25:48.971599Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971599Z","LastActivityAt":"2023-02-16T05:25:48.971599Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1049,"ScoreAtt":22959,"RankDef":1167,"ScoreDef":79600,"RankSup":1341,"ScoreSup":7,"RankTotal":1378,"ScoreTotal":102566,"ID":8574922,"Name":"mleczyk123","NumVillages":0,"Points":0,"Rank":2912,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8574922","BestRank":2912,"BestRankAt":"2023-02-16T05:25:56.238748Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.9716Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.9716Z","LastActivityAt":"2023-02-16T05:25:48.9716Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1009,"ScoreAtt":28311,"RankDef":915,"ScoreDef":159272,"RankSup":0,"ScoreSup":0,"RankTotal":1166,"ScoreTotal":187583,"ID":8582487,"Name":"Jarl Pękniny","NumVillages":2,"Points":16745,"Rank":973,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8582487","BestRank":973,"BestRankAt":"2023-02-16T05:25:56.238749Z","MostPoints":16745,"MostPointsAt":"2023-02-16T05:25:56.238749Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971601Z","LastActivityAt":"2023-02-16T05:25:56.238749Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2414,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2515,"ScoreTotal":10,"ID":8583185,"Name":"kaka858","NumVillages":1,"Points":1184,"Rank":1793,"TribeID":1754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8583185","BestRank":1793,"BestRankAt":"2023-02-16T05:25:56.238749Z","MostPoints":1184,"MostPointsAt":"2023-02-16T05:25:56.23875Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971601Z","LastActivityAt":"2023-02-16T05:25:56.23875Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1062,"ScoreAtt":21557,"RankDef":819,"ScoreDef":204935,"RankSup":1230,"ScoreSup":210,"RankTotal":1097,"ScoreTotal":226702,"ID":8588789,"Name":"lolobolos","NumVillages":1,"Points":8790,"Rank":1120,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8588789","BestRank":1120,"BestRankAt":"2023-02-16T05:25:56.23875Z","MostPoints":8790,"MostPointsAt":"2023-02-16T05:25:48.971602Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971602Z","LastActivityAt":"2023-02-16T05:25:48.971602Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":660,"ScoreDef":313270,"RankSup":1214,"ScoreSup":294,"RankTotal":992,"ScoreTotal":313564,"ID":8593382,"Name":"lee-1","NumVillages":0,"Points":0,"Rank":2913,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8593382","BestRank":2913,"BestRankAt":"2023-02-16T05:25:56.238751Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971603Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971603Z","LastActivityAt":"2023-02-16T05:25:48.971603Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8595633,"Name":"pi0run","NumVillages":1,"Points":284,"Rank":2175,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8595633","BestRank":2175,"BestRankAt":"2023-02-16T05:25:56.238751Z","MostPoints":284,"MostPointsAt":"2023-02-16T05:25:48.971604Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971604Z","LastActivityAt":"2023-02-16T05:25:48.971604Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1452,"ScoreAtt":3078,"RankDef":1185,"ScoreDef":75942,"RankSup":0,"ScoreSup":0,"RankTotal":1460,"ScoreTotal":79020,"ID":8606809,"Name":"sengus avan123","NumVillages":5,"Points":25688,"Rank":854,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8606809","BestRank":854,"BestRankAt":"2023-02-16T05:25:56.238751Z","MostPoints":25688,"MostPointsAt":"2023-02-16T05:25:56.238752Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.971604Z","LastActivityAt":"2023-02-16T05:25:56.238752Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":485,"ScoreAtt":385579,"RankDef":91,"ScoreDef":3753381,"RankSup":163,"ScoreSup":1350626,"RankTotal":167,"ScoreTotal":5489586,"ID":8607734,"Name":"EnPater","NumVillages":60,"Points":527192,"Rank":258,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8607734","BestRank":258,"BestRankAt":"2023-02-16T05:25:48.971605Z","MostPoints":527192,"MostPointsAt":"2023-02-16T05:25:56.238752Z","MostVillages":60,"MostVillagesAt":"2023-02-16T05:25:48.971605Z","LastActivityAt":"2023-02-16T05:25:56.238752Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1079,"ScoreAtt":19983,"RankDef":1246,"ScoreDef":63361,"RankSup":948,"ScoreSup":7700,"RankTotal":1427,"ScoreTotal":91044,"ID":8609713,"Name":"Vlo4","NumVillages":6,"Points":33484,"Rank":783,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8609713","BestRank":783,"BestRankAt":"2023-02-16T05:25:56.238753Z","MostPoints":33484,"MostPointsAt":"2023-02-16T05:25:56.238753Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971606Z","LastActivityAt":"2023-02-16T05:25:56.238753Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":261,"ScoreAtt":1086396,"RankDef":1061,"ScoreDef":104660,"RankSup":185,"ScoreSup":1073018,"RankTotal":376,"ScoreTotal":2264074,"ID":8612358,"Name":"Brayan20","NumVillages":27,"Points":210104,"Rank":411,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8612358","BestRank":379,"BestRankAt":"2023-02-16T05:25:48.971606Z","MostPoints":254918,"MostPointsAt":"2023-02-16T05:25:48.971606Z","MostVillages":32,"MostVillagesAt":"2023-02-16T05:25:48.971606Z","LastActivityAt":"2023-02-16T05:25:48.971607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8616713,"Name":"Vasqu","NumVillages":1,"Points":206,"Rank":2262,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8616713","BestRank":2262,"BestRankAt":"2023-02-16T05:25:56.238754Z","MostPoints":206,"MostPointsAt":"2023-02-16T05:25:48.971607Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971607Z","LastActivityAt":"2023-02-16T05:25:48.971607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1848,"ScoreAtt":108,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2416,"ScoreTotal":108,"ID":8617889,"Name":"Herold102","NumVillages":1,"Points":1858,"Rank":1680,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8617889","BestRank":1680,"BestRankAt":"2023-02-16T05:25:56.238754Z","MostPoints":1858,"MostPointsAt":"2023-02-16T05:25:56.238754Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971608Z","LastActivityAt":"2023-02-16T05:25:56.238754Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8621570,"Name":"iminlove","NumVillages":1,"Points":173,"Rank":2324,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8621570","BestRank":2324,"BestRankAt":"2023-02-16T05:25:56.238755Z","MostPoints":173,"MostPointsAt":"2023-02-16T05:25:48.971608Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971608Z","LastActivityAt":"2023-02-16T05:25:48.971608Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1722,"ScoreDef":17031,"RankSup":0,"ScoreSup":0,"RankTotal":1898,"ScoreTotal":17031,"ID":8622901,"Name":"ArturNowy","NumVillages":4,"Points":13717,"Rank":1019,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8622901","BestRank":1019,"BestRankAt":"2023-02-16T05:25:56.238755Z","MostPoints":13717,"MostPointsAt":"2023-02-16T05:25:56.238755Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971609Z","LastActivityAt":"2023-02-16T05:25:56.238755Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":349,"ScoreAtt":700860,"RankDef":2088,"ScoreDef":2707,"RankSup":131,"ScoreSup":1640858,"RankTotal":368,"ScoreTotal":2344425,"ID":8627359,"Name":"Gregorius XII","NumVillages":46,"Points":379544,"Rank":308,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8627359","BestRank":308,"BestRankAt":"2023-02-16T05:25:56.238756Z","MostPoints":379544,"MostPointsAt":"2023-02-16T05:25:56.238756Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:48.971609Z","LastActivityAt":"2023-02-16T05:25:56.238756Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":135,"ScoreAtt":2283575,"RankDef":1298,"ScoreDef":57331,"RankSup":229,"ScoreSup":768617,"RankTotal":282,"ScoreTotal":3109523,"ID":8630972,"Name":"PijaniiBracia","NumVillages":317,"Points":2673203,"Rank":19,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8630972","BestRank":19,"BestRankAt":"2023-02-16T05:25:48.97161Z","MostPoints":2673203,"MostPointsAt":"2023-02-16T05:25:56.238756Z","MostVillages":317,"MostVillagesAt":"2023-02-16T05:25:56.238756Z","LastActivityAt":"2023-02-16T05:25:56.238756Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":297,"ScoreAtt":934997,"RankDef":279,"ScoreDef":1311596,"RankSup":192,"ScoreSup":1011778,"RankTotal":271,"ScoreTotal":3258371,"ID":8632462,"Name":"rohhan415","NumVillages":65,"Points":489226,"Rank":273,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8632462","BestRank":273,"BestRankAt":"2023-02-16T05:25:48.97161Z","MostPoints":489226,"MostPointsAt":"2023-02-16T05:25:56.238757Z","MostVillages":65,"MostVillagesAt":"2023-02-16T05:25:48.971611Z","LastActivityAt":"2023-02-16T05:25:56.238757Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8644299,"Name":"MAXIMUS-1","NumVillages":1,"Points":26,"Rank":2633,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8644299","BestRank":2633,"BestRankAt":"2023-02-16T05:25:56.238757Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971611Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971611Z","LastActivityAt":"2023-02-16T05:25:48.971611Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8646849,"Name":"Margog","NumVillages":0,"Points":0,"Rank":2914,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8646849","BestRank":2914,"BestRankAt":"2023-02-16T05:25:56.238758Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971612Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971612Z","LastActivityAt":"2023-02-16T05:25:48.971613Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":124,"ScoreAtt":2442694,"RankDef":26,"ScoreDef":12180454,"RankSup":247,"ScoreSup":718058,"RankTotal":47,"ScoreTotal":15341206,"ID":8649412,"Name":"Unforget","NumVillages":52,"Points":471506,"Rank":278,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8649412","BestRank":274,"BestRankAt":"2023-02-16T05:25:48.971613Z","MostPoints":480190,"MostPointsAt":"2023-02-16T05:25:48.971613Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:48.971613Z","LastActivityAt":"2023-02-16T05:25:56.238758Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97191Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8651917,"Name":"markam27","NumVillages":1,"Points":1452,"Rank":1759,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8651917","BestRank":1759,"BestRankAt":"2023-02-16T05:25:48.971613Z","MostPoints":1452,"MostPointsAt":"2023-02-16T05:25:48.971614Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971613Z","LastActivityAt":"2023-02-16T05:25:48.971614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97191Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":302,"ScoreAtt":919083,"RankDef":1282,"ScoreDef":59206,"RankSup":211,"ScoreSup":877088,"RankTotal":430,"ScoreTotal":1855377,"ID":8654156,"Name":"Taki Pan","NumVillages":0,"Points":0,"Rank":2915,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8654156","BestRank":1076,"BestRankAt":"2023-02-16T05:25:48.971614Z","MostPoints":10362,"MostPointsAt":"2023-02-16T05:25:48.971614Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971614Z","LastActivityAt":"2023-02-16T05:25:48.971614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97191Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":152,"ScoreAtt":2037809,"RankDef":1114,"ScoreDef":91760,"RankSup":956,"ScoreSup":7260,"RankTotal":392,"ScoreTotal":2136829,"ID":8662264,"Name":"-umino-","NumVillages":1,"Points":26,"Rank":2634,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8662264","BestRank":2634,"BestRankAt":"2023-02-16T05:25:56.238759Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971615Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971615Z","LastActivityAt":"2023-02-16T05:25:48.971615Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97191Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2343,"ScoreDef":52,"RankSup":0,"ScoreSup":0,"RankTotal":2438,"ScoreTotal":52,"ID":8662634,"Name":"QiczikJP","NumVillages":1,"Points":284,"Rank":2176,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8662634","BestRank":2176,"BestRankAt":"2023-02-16T05:25:56.23876Z","MostPoints":284,"MostPointsAt":"2023-02-16T05:25:56.23876Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971615Z","LastActivityAt":"2023-02-16T05:25:56.23876Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":462,"ScoreAtt":428088,"RankDef":695,"ScoreDef":280921,"RankSup":332,"ScoreSup":443350,"RankTotal":579,"ScoreTotal":1152359,"ID":8665783,"Name":"kolomoloolo","NumVillages":47,"Points":329112,"Rank":341,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8665783","BestRank":341,"BestRankAt":"2023-02-16T05:25:56.23876Z","MostPoints":329112,"MostPointsAt":"2023-02-16T05:25:56.23876Z","MostVillages":47,"MostVillagesAt":"2023-02-16T05:25:56.23876Z","LastActivityAt":"2023-02-16T05:25:56.238761Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1117,"ScoreAtt":16694,"RankDef":2193,"ScoreDef":1082,"RankSup":0,"ScoreSup":0,"RankTotal":1885,"ScoreTotal":17776,"ID":8669398,"Name":"misiu809","NumVillages":12,"Points":62918,"Rank":644,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8669398","BestRank":644,"BestRankAt":"2023-02-16T05:25:56.238761Z","MostPoints":62918,"MostPointsAt":"2023-02-16T05:25:56.238761Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:48.971616Z","LastActivityAt":"2023-02-16T05:25:56.238761Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":808,"ScoreAtt":76735,"RankDef":422,"ScoreDef":678183,"RankSup":303,"ScoreSup":522493,"RankTotal":549,"ScoreTotal":1277411,"ID":8674163,"Name":"klekoc","NumVillages":9,"Points":59779,"Rank":653,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8674163","BestRank":653,"BestRankAt":"2023-02-16T05:25:56.238761Z","MostPoints":59779,"MostPointsAt":"2023-02-16T05:25:56.238762Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.971617Z","LastActivityAt":"2023-02-16T05:25:56.238762Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":279,"ScoreAtt":1006884,"RankDef":405,"ScoreDef":733895,"RankSup":701,"ScoreSup":49109,"RankTotal":444,"ScoreTotal":1789888,"ID":8675636,"Name":"Hubix","NumVillages":67,"Points":631484,"Rank":226,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8675636","BestRank":181,"BestRankAt":"2023-02-16T05:25:48.971617Z","MostPoints":797697,"MostPointsAt":"2023-02-16T05:25:48.971617Z","MostVillages":85,"MostVillagesAt":"2023-02-16T05:25:48.971617Z","LastActivityAt":"2023-02-16T05:25:48.971618Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":655,"ScoreAtt":156113,"RankDef":1392,"ScoreDef":44577,"RankSup":797,"ScoreSup":24677,"RankTotal":1100,"ScoreTotal":225367,"ID":8677963,"Name":"WSWW","NumVillages":26,"Points":158950,"Rank":453,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8677963","BestRank":453,"BestRankAt":"2023-02-16T05:25:48.971618Z","MostPoints":158950,"MostPointsAt":"2023-02-16T05:25:56.238763Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:48.971618Z","LastActivityAt":"2023-02-16T05:25:56.238763Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1629,"ScoreAtt":923,"RankDef":2232,"ScoreDef":621,"RankSup":0,"ScoreSup":0,"RankTotal":2256,"ScoreTotal":1544,"ID":8678008,"Name":"Hanka32","NumVillages":1,"Points":9233,"Rank":1109,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8678008","BestRank":1109,"BestRankAt":"2023-02-16T05:25:56.238763Z","MostPoints":9233,"MostPointsAt":"2023-02-16T05:25:56.238763Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971618Z","LastActivityAt":"2023-02-16T05:25:56.238763Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1896,"ScoreAtt":44,"RankDef":1885,"ScoreDef":8233,"RankSup":0,"ScoreSup":0,"RankTotal":2025,"ScoreTotal":8277,"ID":8696132,"Name":"Sportowiec73","NumVillages":1,"Points":3606,"Rank":1437,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8696132","BestRank":1437,"BestRankAt":"2023-02-16T05:25:56.238763Z","MostPoints":3606,"MostPointsAt":"2023-02-16T05:25:48.971619Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971619Z","LastActivityAt":"2023-02-16T05:25:48.971619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1628,"ScoreAtt":933,"RankDef":925,"ScoreDef":155674,"RankSup":780,"ScoreSup":29124,"RankTotal":1173,"ScoreTotal":185731,"ID":8698728,"Name":"zosia321","NumVillages":1,"Points":3438,"Rank":1462,"TribeID":211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8698728","BestRank":1462,"BestRankAt":"2023-02-16T05:25:56.238764Z","MostPoints":3438,"MostPointsAt":"2023-02-16T05:25:56.238764Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97162Z","LastActivityAt":"2023-02-16T05:25:56.238764Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1348,"ScoreAtt":5241,"RankDef":2107,"ScoreDef":2367,"RankSup":1141,"ScoreSup":1058,"RankTotal":2019,"ScoreTotal":8666,"ID":8699429,"Name":"MaƂpa07","NumVillages":2,"Points":8765,"Rank":1122,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8699429","BestRank":1122,"BestRankAt":"2023-02-16T05:25:56.238765Z","MostPoints":8765,"MostPointsAt":"2023-02-16T05:25:56.238765Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.97162Z","LastActivityAt":"2023-02-16T05:25:56.238765Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8704709,"Name":"AzER","NumVillages":1,"Points":26,"Rank":2635,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8704709","BestRank":2635,"BestRankAt":"2023-02-16T05:25:56.238765Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971621Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971621Z","LastActivityAt":"2023-02-16T05:25:48.971621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1887,"ScoreAtt":51,"RankDef":807,"ScoreDef":211960,"RankSup":1398,"ScoreSup":2,"RankTotal":1118,"ScoreTotal":212013,"ID":8708728,"Name":"vodka442","NumVillages":1,"Points":301,"Rank":2153,"TribeID":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8708728","BestRank":2153,"BestRankAt":"2023-02-16T05:25:56.238766Z","MostPoints":301,"MostPointsAt":"2023-02-16T05:25:48.971621Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971621Z","LastActivityAt":"2023-02-16T05:25:48.971621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2381,"ScoreDef":21,"RankSup":0,"ScoreSup":0,"RankTotal":2478,"ScoreTotal":21,"ID":8709940,"Name":"Khorstes","NumVillages":1,"Points":26,"Rank":2636,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8709940","BestRank":2636,"BestRankAt":"2023-02-16T05:25:56.238766Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971622Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971622Z","LastActivityAt":"2023-02-16T05:25:48.971622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":370,"ScoreAtt":649362,"RankDef":126,"ScoreDef":3102084,"RankSup":240,"ScoreSup":740743,"RankTotal":211,"ScoreTotal":4492189,"ID":8710047,"Name":"mikolaj4862","NumVillages":2,"Points":19844,"Rank":922,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8710047","BestRank":922,"BestRankAt":"2023-02-16T05:25:48.971622Z","MostPoints":19844,"MostPointsAt":"2023-02-16T05:25:48.971622Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971622Z","LastActivityAt":"2023-02-16T05:25:48.971622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1384,"ScoreDef":46545,"RankSup":1414,"ScoreSup":1,"RankTotal":1630,"ScoreTotal":46546,"ID":8720321,"Name":"jajoasia","NumVillages":1,"Points":643,"Rank":1951,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8720321","BestRank":1924,"BestRankAt":"2023-02-16T05:25:48.971623Z","MostPoints":782,"MostPointsAt":"2023-02-16T05:25:48.971623Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971623Z","LastActivityAt":"2023-02-16T05:25:48.971623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1044,"ScoreAtt":23550,"RankDef":1962,"ScoreDef":5787,"RankSup":1226,"ScoreSup":233,"RankTotal":1768,"ScoreTotal":29570,"ID":8724192,"Name":"michal21871","NumVillages":22,"Points":90363,"Rank":562,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8724192","BestRank":562,"BestRankAt":"2023-02-16T05:25:56.238767Z","MostPoints":90363,"MostPointsAt":"2023-02-16T05:25:56.238768Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:48.971623Z","LastActivityAt":"2023-02-16T05:25:56.238768Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8728202,"Name":"Sharkox","NumVillages":1,"Points":26,"Rank":2637,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8728202","BestRank":2637,"BestRankAt":"2023-02-16T05:25:56.238768Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971624Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971624Z","LastActivityAt":"2023-02-16T05:25:48.971624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":749,"ScoreAtt":101946,"RankDef":1533,"ScoreDef":30229,"RankSup":321,"ScoreSup":459090,"RankTotal":779,"ScoreTotal":591265,"ID":8729672,"Name":"Wychylybymy14","NumVillages":22,"Points":208422,"Rank":412,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8729672","BestRank":412,"BestRankAt":"2023-02-16T05:25:56.238768Z","MostPoints":208422,"MostPointsAt":"2023-02-16T05:25:56.238769Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:56.238769Z","LastActivityAt":"2023-02-16T05:25:56.238769Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":184,"ScoreAtt":1716256,"RankDef":307,"ScoreDef":1136594,"RankSup":315,"ScoreSup":479546,"RankTotal":263,"ScoreTotal":3332396,"ID":8740199,"Name":"miterez9","NumVillages":85,"Points":737426,"Rank":195,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8740199","BestRank":195,"BestRankAt":"2023-02-16T05:25:48.971625Z","MostPoints":737426,"MostPointsAt":"2023-02-16T05:25:56.238769Z","MostVillages":85,"MostVillagesAt":"2023-02-16T05:25:48.971625Z","LastActivityAt":"2023-02-16T05:25:56.238769Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1477,"ScoreAtt":2592,"RankDef":534,"ScoreDef":472471,"RankSup":0,"ScoreSup":0,"RankTotal":859,"ScoreTotal":475063,"ID":8741336,"Name":"lord zbyszek1960","NumVillages":1,"Points":3431,"Rank":1464,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8741336","BestRank":1464,"BestRankAt":"2023-02-16T05:25:56.23877Z","MostPoints":3431,"MostPointsAt":"2023-02-16T05:25:56.23877Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971626Z","LastActivityAt":"2023-02-16T05:25:56.23877Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":450,"ScoreAtt":449527,"RankDef":1902,"ScoreDef":7565,"RankSup":509,"ScoreSup":165699,"RankTotal":771,"ScoreTotal":622791,"ID":8742874,"Name":"Monia i Ruch","NumVillages":26,"Points":179948,"Rank":436,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8742874","BestRank":435,"BestRankAt":"2023-02-16T05:25:48.971626Z","MostPoints":179948,"MostPointsAt":"2023-02-16T05:25:56.23877Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:48.971626Z","LastActivityAt":"2023-02-16T05:25:56.23877Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8746112,"Name":"King Grzes","NumVillages":1,"Points":47,"Rank":2560,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8746112","BestRank":2560,"BestRankAt":"2023-02-16T05:25:56.238771Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:48.971627Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971627Z","LastActivityAt":"2023-02-16T05:25:48.971627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":963,"ScoreAtt":36292,"RankDef":1188,"ScoreDef":75259,"RankSup":1232,"ScoreSup":188,"RankTotal":1349,"ScoreTotal":111739,"ID":8752714,"Name":"Kamol1998","NumVillages":7,"Points":22568,"Rank":889,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8752714","BestRank":889,"BestRankAt":"2023-02-16T05:25:56.238771Z","MostPoints":22568,"MostPointsAt":"2023-02-16T05:25:56.238771Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971627Z","LastActivityAt":"2023-02-16T05:25:56.238771Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1314,"ScoreAtt":5998,"RankDef":348,"ScoreDef":891275,"RankSup":1153,"ScoreSup":886,"RankTotal":653,"ScoreTotal":898159,"ID":8753956,"Name":"GanjaMafiaTHC","NumVillages":0,"Points":0,"Rank":2916,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8753956","BestRank":2916,"BestRankAt":"2023-02-16T05:25:56.238772Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971628Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971628Z","LastActivityAt":"2023-02-16T05:25:48.971628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1119,"ScoreAtt":16424,"RankDef":567,"ScoreDef":412229,"RankSup":1111,"ScoreSup":1575,"RankTotal":887,"ScoreTotal":430228,"ID":8758298,"Name":"piotr1960","NumVillages":1,"Points":1627,"Rank":1711,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8758298","BestRank":1711,"BestRankAt":"2023-02-16T05:25:56.238772Z","MostPoints":1627,"MostPointsAt":"2023-02-16T05:25:56.238772Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971628Z","LastActivityAt":"2023-02-16T05:25:56.238772Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1747,"ScoreAtt":308,"RankDef":489,"ScoreDef":544500,"RankSup":0,"ScoreSup":0,"RankTotal":806,"ScoreTotal":544808,"ID":8760124,"Name":"Bonaro","NumVillages":1,"Points":4359,"Rank":1371,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8760124","BestRank":1371,"BestRankAt":"2023-02-16T05:25:56.238773Z","MostPoints":4359,"MostPointsAt":"2023-02-16T05:25:48.971629Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971629Z","LastActivityAt":"2023-02-16T05:25:48.971629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1265,"ScoreDef":60434,"RankSup":1036,"ScoreSup":3121,"RankTotal":1530,"ScoreTotal":63555,"ID":8760563,"Name":"dziwas2","NumVillages":1,"Points":2084,"Rank":1638,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8760563","BestRank":1638,"BestRankAt":"2023-02-16T05:25:56.238773Z","MostPoints":2084,"MostPointsAt":"2023-02-16T05:25:56.238773Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971629Z","LastActivityAt":"2023-02-16T05:25:56.238773Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8766033,"Name":"Your Nightmare","NumVillages":1,"Points":46,"Rank":2567,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8766033","BestRank":2567,"BestRankAt":"2023-02-16T05:25:56.238774Z","MostPoints":46,"MostPointsAt":"2023-02-16T05:25:48.97163Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97163Z","LastActivityAt":"2023-02-16T05:25:48.97163Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1030,"ScoreAtt":26118,"RankDef":1678,"ScoreDef":19893,"RankSup":0,"ScoreSup":0,"RankTotal":1635,"ScoreTotal":46011,"ID":8772425,"Name":"FilozofMiejski","NumVillages":29,"Points":101106,"Rank":535,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8772425","BestRank":535,"BestRankAt":"2023-02-16T05:25:56.238774Z","MostPoints":101106,"MostPointsAt":"2023-02-16T05:25:56.238774Z","MostVillages":29,"MostVillagesAt":"2023-02-16T05:25:48.971631Z","LastActivityAt":"2023-02-16T05:25:56.238774Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1921,"ScoreAtt":30,"RankDef":1628,"ScoreDef":23556,"RankSup":0,"ScoreSup":0,"RankTotal":1828,"ScoreTotal":23586,"ID":8772923,"Name":"szalony iwan","NumVillages":1,"Points":561,"Rank":1984,"TribeID":200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8772923","BestRank":1984,"BestRankAt":"2023-02-16T05:25:56.238775Z","MostPoints":561,"MostPointsAt":"2023-02-16T05:25:56.238775Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971631Z","LastActivityAt":"2023-02-16T05:25:56.238775Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8773151,"Name":"Lord Zabijaka1999","NumVillages":1,"Points":47,"Rank":2561,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8773151","BestRank":2561,"BestRankAt":"2023-02-16T05:25:56.238775Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:48.971632Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971632Z","LastActivityAt":"2023-02-16T05:25:48.971632Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1608,"ScoreDef":25205,"RankSup":0,"ScoreSup":0,"RankTotal":1812,"ScoreTotal":25205,"ID":8773967,"Name":"chudyn","NumVillages":2,"Points":14828,"Rank":1005,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8773967","BestRank":1004,"BestRankAt":"2023-02-16T05:25:48.971632Z","MostPoints":14828,"MostPointsAt":"2023-02-16T05:25:56.238776Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971632Z","LastActivityAt":"2023-02-16T05:25:56.238776Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1646,"ScoreDef":22405,"RankSup":0,"ScoreSup":0,"RankTotal":1840,"ScoreTotal":22405,"ID":8776452,"Name":"polotny33","NumVillages":1,"Points":360,"Rank":2104,"TribeID":1477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8776452","BestRank":2104,"BestRankAt":"2023-02-16T05:25:56.238776Z","MostPoints":360,"MostPointsAt":"2023-02-16T05:25:56.238777Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971633Z","LastActivityAt":"2023-02-16T05:25:56.238777Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":168,"ScoreAtt":1904294,"RankDef":16,"ScoreDef":18163001,"RankSup":198,"ScoreSup":939440,"RankTotal":26,"ScoreTotal":21006735,"ID":8779575,"Name":"I ZNOWU KUBA","NumVillages":52,"Points":272769,"Rank":367,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8779575","BestRank":364,"BestRankAt":"2023-02-16T05:25:48.971633Z","MostPoints":272769,"MostPointsAt":"2023-02-16T05:25:56.238777Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:56.238777Z","LastActivityAt":"2023-02-16T05:25:56.238777Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1222,"ScoreAtt":9759,"RankDef":614,"ScoreDef":362398,"RankSup":0,"ScoreSup":0,"RankTotal":942,"ScoreTotal":372157,"ID":8784866,"Name":"Spasny","NumVillages":1,"Points":6528,"Rank":1240,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8784866","BestRank":1240,"BestRankAt":"2023-02-16T05:25:48.971634Z","MostPoints":6528,"MostPointsAt":"2023-02-16T05:25:48.971634Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971634Z","LastActivityAt":"2023-02-16T05:25:48.971634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971918Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1801,"ScoreDef":12004,"RankSup":0,"ScoreSup":0,"RankTotal":1959,"ScoreTotal":12004,"ID":8785003,"Name":"ignacy","NumVillages":4,"Points":10671,"Rank":1067,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8785003","BestRank":1067,"BestRankAt":"2023-02-16T05:25:56.238777Z","MostPoints":10671,"MostPointsAt":"2023-02-16T05:25:56.238778Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:48.971634Z","LastActivityAt":"2023-02-16T05:25:56.238778Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":286,"ScoreAtt":986979,"RankDef":1148,"ScoreDef":85008,"RankSup":897,"ScoreSup":11613,"RankTotal":595,"ScoreTotal":1083600,"ID":8785314,"Name":"Jehu","NumVillages":73,"Points":572039,"Rank":249,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8785314","BestRank":249,"BestRankAt":"2023-02-16T05:25:56.238778Z","MostPoints":572039,"MostPointsAt":"2023-02-16T05:25:56.238778Z","MostVillages":73,"MostVillagesAt":"2023-02-16T05:25:56.238778Z","LastActivityAt":"2023-02-16T05:25:56.238778Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":28,"ScoreAtt":6910165,"RankDef":53,"ScoreDef":6350252,"RankSup":90,"ScoreSup":2382573,"RankTotal":45,"ScoreTotal":15642990,"ID":8788366,"Name":"Lord Arsey","NumVillages":128,"Points":1251399,"Rank":102,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8788366","BestRank":100,"BestRankAt":"2023-02-16T05:25:48.971635Z","MostPoints":1251399,"MostPointsAt":"2023-02-16T05:25:56.238779Z","MostVillages":128,"MostVillagesAt":"2023-02-16T05:25:48.971635Z","LastActivityAt":"2023-02-16T05:25:56.238779Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8790027,"Name":"Sir Wiking","NumVillages":1,"Points":109,"Rank":2444,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8790027","BestRank":2444,"BestRankAt":"2023-02-16T05:25:56.238779Z","MostPoints":109,"MostPointsAt":"2023-02-16T05:25:48.971636Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971636Z","LastActivityAt":"2023-02-16T05:25:48.971636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1403,"ScoreAtt":4017,"RankDef":1915,"ScoreDef":7135,"RankSup":0,"ScoreSup":0,"RankTotal":1979,"ScoreTotal":11152,"ID":8792844,"Name":"atotadzio","NumVillages":3,"Points":10461,"Rank":1071,"TribeID":287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8792844","BestRank":1071,"BestRankAt":"2023-02-16T05:25:56.23878Z","MostPoints":10461,"MostPointsAt":"2023-02-16T05:25:48.971637Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971637Z","LastActivityAt":"2023-02-16T05:25:48.971637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97192Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":934,"ScoreAtt":43248,"RankDef":1103,"ScoreDef":93768,"RankSup":994,"ScoreSup":5138,"RankTotal":1260,"ScoreTotal":142154,"ID":8796215,"Name":"Dnabuk","NumVillages":0,"Points":0,"Rank":2917,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8796215","BestRank":2917,"BestRankAt":"2023-02-16T05:25:56.23878Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971637Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971637Z","LastActivityAt":"2023-02-16T05:25:48.971637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97192Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1457,"ScoreAtt":2969,"RankDef":1454,"ScoreDef":37985,"RankSup":0,"ScoreSup":0,"RankTotal":1668,"ScoreTotal":40954,"ID":8806145,"Name":"MegaMocny","NumVillages":1,"Points":2272,"Rank":1606,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8806145","BestRank":1606,"BestRankAt":"2023-02-16T05:25:56.238781Z","MostPoints":2272,"MostPointsAt":"2023-02-16T05:25:56.238781Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971638Z","LastActivityAt":"2023-02-16T05:25:56.238781Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":933,"ScoreAtt":43447,"RankDef":1408,"ScoreDef":42204,"RankSup":634,"ScoreSup":79998,"RankTotal":1216,"ScoreTotal":165649,"ID":8811880,"Name":"tomek016","NumVillages":7,"Points":13523,"Rank":1024,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8811880","BestRank":1020,"BestRankAt":"2023-02-16T05:25:48.971638Z","MostPoints":13523,"MostPointsAt":"2023-02-16T05:25:56.238781Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:48.971638Z","LastActivityAt":"2023-02-16T05:25:56.238781Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1351,"ScoreAtt":5165,"RankDef":108,"ScoreDef":3411019,"RankSup":368,"ScoreSup":372360,"RankTotal":243,"ScoreTotal":3788544,"ID":8812550,"Name":"przytulaczekROBO","NumVillages":1,"Points":2517,"Rank":1574,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8812550","BestRank":1574,"BestRankAt":"2023-02-16T05:25:56.238782Z","MostPoints":2517,"MostPointsAt":"2023-02-16T05:25:48.971639Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971639Z","LastActivityAt":"2023-02-16T05:25:48.971639Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2124,"ScoreDef":2079,"RankSup":0,"ScoreSup":0,"RankTotal":2221,"ScoreTotal":2079,"ID":8815353,"Name":"Lord PaweƂ I","NumVillages":0,"Points":0,"Rank":2918,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8815353","BestRank":2918,"BestRankAt":"2023-02-16T05:25:56.238782Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971639Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971639Z","LastActivityAt":"2023-02-16T05:25:48.97164Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":151,"ScoreAtt":2047423,"RankDef":1228,"ScoreDef":67438,"RankSup":574,"ScoreSup":116281,"RankTotal":381,"ScoreTotal":2231142,"ID":8815749,"Name":"Sir Black Blood","NumVillages":20,"Points":194145,"Rank":423,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8815749","BestRank":411,"BestRankAt":"2023-02-16T05:25:48.97164Z","MostPoints":204164,"MostPointsAt":"2023-02-16T05:25:48.97164Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:48.97164Z","LastActivityAt":"2023-02-16T05:25:56.238783Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8816336,"Name":"Lord Ɓukasz05","NumVillages":1,"Points":2371,"Rank":1591,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8816336","BestRank":1591,"BestRankAt":"2023-02-16T05:25:56.238783Z","MostPoints":2371,"MostPointsAt":"2023-02-16T05:25:48.971641Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97164Z","LastActivityAt":"2023-02-16T05:25:48.971641Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2420,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2522,"ScoreTotal":10,"ID":8819990,"Name":"bitefight1998","NumVillages":1,"Points":361,"Rank":2103,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8819990","BestRank":2103,"BestRankAt":"2023-02-16T05:25:56.238784Z","MostPoints":361,"MostPointsAt":"2023-02-16T05:25:48.971641Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971641Z","LastActivityAt":"2023-02-16T05:25:48.971641Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1500,"ScoreAtt":2312,"RankDef":1668,"ScoreDef":20178,"RankSup":0,"ScoreSup":0,"RankTotal":1839,"ScoreTotal":22490,"ID":8827094,"Name":"ElitoPogero","NumVillages":10,"Points":88143,"Rank":568,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8827094","BestRank":568,"BestRankAt":"2023-02-16T05:25:48.971641Z","MostPoints":88143,"MostPointsAt":"2023-02-16T05:25:56.238784Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:48.971642Z","LastActivityAt":"2023-02-16T05:25:56.238784Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":865,"ScoreDef":183378,"RankSup":0,"ScoreSup":0,"RankTotal":1181,"ScoreTotal":183378,"ID":8831977,"Name":"skowron","NumVillages":1,"Points":182,"Rank":2309,"TribeID":89,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8831977","BestRank":2309,"BestRankAt":"2023-02-16T05:25:56.238785Z","MostPoints":182,"MostPointsAt":"2023-02-16T05:25:56.238785Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971642Z","LastActivityAt":"2023-02-16T05:25:56.238785Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8838462,"Name":"Wilkuwolf","NumVillages":1,"Points":282,"Rank":2178,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8838462","BestRank":2178,"BestRankAt":"2023-02-16T05:25:56.238785Z","MostPoints":282,"MostPointsAt":"2023-02-16T05:25:48.971643Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971643Z","LastActivityAt":"2023-02-16T05:25:48.971643Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1815,"ScoreAtt":150,"RankDef":593,"ScoreDef":386044,"RankSup":1156,"ScoreSup":880,"RankTotal":930,"ScoreTotal":387074,"ID":8839171,"Name":"Marwinek","NumVillages":1,"Points":3547,"Rank":1449,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8839171","BestRank":1449,"BestRankAt":"2023-02-16T05:25:56.238786Z","MostPoints":3547,"MostPointsAt":"2023-02-16T05:25:56.238786Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971643Z","LastActivityAt":"2023-02-16T05:25:56.238786Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1484,"ScoreDef":35260,"RankSup":0,"ScoreSup":0,"RankTotal":1722,"ScoreTotal":35260,"ID":8839403,"Name":"IgnacEs","NumVillages":3,"Points":23228,"Rank":881,"TribeID":255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8839403","BestRank":881,"BestRankAt":"2023-02-16T05:25:56.238786Z","MostPoints":23228,"MostPointsAt":"2023-02-16T05:25:56.238786Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971644Z","LastActivityAt":"2023-02-16T05:25:56.238786Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":4,"ScoreAtt":18675900,"RankDef":331,"ScoreDef":985349,"RankSup":7,"ScoreSup":9140398,"RankTotal":15,"ScoreTotal":28801647,"ID":8841266,"Name":"Bandii.","NumVillages":677,"Points":6122389,"Rank":4,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8841266","BestRank":4,"BestRankAt":"2023-02-16T05:25:48.971644Z","MostPoints":6139081,"MostPointsAt":"2023-02-16T05:25:48.971644Z","MostVillages":677,"MostVillagesAt":"2023-02-16T05:25:56.238787Z","LastActivityAt":"2023-02-16T05:25:56.238787Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":460,"ScoreAtt":429833,"RankDef":123,"ScoreDef":3144228,"RankSup":422,"ScoreSup":262836,"RankTotal":241,"ScoreTotal":3836897,"ID":8842936,"Name":"z4l3wski","NumVillages":8,"Points":72391,"Rank":605,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8842936","BestRank":604,"BestRankAt":"2023-02-16T05:25:48.971645Z","MostPoints":72391,"MostPointsAt":"2023-02-16T05:25:56.238787Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.971645Z","LastActivityAt":"2023-02-16T05:25:56.238787Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1485,"ScoreAtt":2455,"RankDef":904,"ScoreDef":166769,"RankSup":0,"ScoreSup":0,"RankTotal":1211,"ScoreTotal":169224,"ID":8843774,"Name":"Lord LovelyBones","NumVillages":3,"Points":19050,"Rank":933,"TribeID":624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8843774","BestRank":933,"BestRankAt":"2023-02-16T05:25:48.971645Z","MostPoints":19050,"MostPointsAt":"2023-02-16T05:25:48.971645Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971645Z","LastActivityAt":"2023-02-16T05:25:48.971646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":72,"ScoreAtt":4231061,"RankDef":306,"ScoreDef":1140866,"RankSup":153,"ScoreSup":1470195,"RankTotal":130,"ScoreTotal":6842122,"ID":8847546,"Name":"traczu1224","NumVillages":245,"Points":1962111,"Rank":51,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8847546","BestRank":51,"BestRankAt":"2023-02-16T05:25:48.971646Z","MostPoints":1962111,"MostPointsAt":"2023-02-16T05:25:56.238788Z","MostVillages":245,"MostVillagesAt":"2023-02-16T05:25:56.238788Z","LastActivityAt":"2023-02-16T05:25:56.238788Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":614,"ScoreDef":363053,"RankSup":0,"ScoreSup":0,"RankTotal":946,"ScoreTotal":363053,"ID":8849267,"Name":"rzemo","NumVillages":0,"Points":0,"Rank":2919,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8849267","BestRank":2919,"BestRankAt":"2023-02-16T05:25:56.238789Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971647Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971646Z","LastActivityAt":"2023-02-16T05:25:48.971647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2022,"ScoreDef":4083,"RankSup":0,"ScoreSup":0,"RankTotal":2151,"ScoreTotal":4083,"ID":8852026,"Name":"forestrr","NumVillages":1,"Points":7719,"Rank":1170,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8852026","BestRank":1170,"BestRankAt":"2023-02-16T05:25:56.238789Z","MostPoints":7719,"MostPointsAt":"2023-02-16T05:25:56.238789Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971647Z","LastActivityAt":"2023-02-16T05:25:56.23879Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2206,"ScoreDef":859,"RankSup":0,"ScoreSup":0,"RankTotal":2294,"ScoreTotal":859,"ID":8853146,"Name":"przemek2707","NumVillages":1,"Points":7799,"Rank":1165,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8853146","BestRank":1165,"BestRankAt":"2023-02-16T05:25:56.23879Z","MostPoints":7799,"MostPointsAt":"2023-02-16T05:25:56.23879Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971648Z","LastActivityAt":"2023-02-16T05:25:56.23879Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1033,"ScoreAtt":25802,"RankDef":1232,"ScoreDef":66491,"RankSup":0,"ScoreSup":0,"RankTotal":1418,"ScoreTotal":92293,"ID":8855679,"Name":"chopek1","NumVillages":1,"Points":2902,"Rank":1525,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8855679","BestRank":1525,"BestRankAt":"2023-02-16T05:25:56.23879Z","MostPoints":2902,"MostPointsAt":"2023-02-16T05:25:56.238791Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971648Z","LastActivityAt":"2023-02-16T05:25:56.238791Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1711,"ScoreAtt":466,"RankDef":1884,"ScoreDef":8235,"RankSup":0,"ScoreSup":0,"RankTotal":2018,"ScoreTotal":8701,"ID":8856821,"Name":"kosiarziii","NumVillages":1,"Points":7519,"Rank":1182,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8856821","BestRank":1182,"BestRankAt":"2023-02-16T05:25:56.238791Z","MostPoints":7519,"MostPointsAt":"2023-02-16T05:25:56.238791Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971649Z","LastActivityAt":"2023-02-16T05:25:56.238791Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2152,"ScoreDef":1719,"RankSup":0,"ScoreSup":0,"RankTotal":2249,"ScoreTotal":1719,"ID":8868716,"Name":"Lord Sir szok","NumVillages":1,"Points":3412,"Rank":1469,"TribeID":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8868716","BestRank":1469,"BestRankAt":"2023-02-16T05:25:56.238792Z","MostPoints":3412,"MostPointsAt":"2023-02-16T05:25:48.971649Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971649Z","LastActivityAt":"2023-02-16T05:25:48.971649Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1527,"ScoreAtt":2031,"RankDef":1181,"ScoreDef":76582,"RankSup":1212,"ScoreSup":306,"RankTotal":1462,"ScoreTotal":78919,"ID":8876551,"Name":"wodzuniunio1","NumVillages":3,"Points":9198,"Rank":1110,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8876551","BestRank":1110,"BestRankAt":"2023-02-16T05:25:56.238792Z","MostPoints":9198,"MostPointsAt":"2023-02-16T05:25:48.97165Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.97165Z","LastActivityAt":"2023-02-16T05:25:48.97165Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":536,"ScoreAtt":299887,"RankDef":1793,"ScoreDef":12503,"RankSup":938,"ScoreSup":8354,"RankTotal":986,"ScoreTotal":320744,"ID":8877156,"Name":"Woja7155","NumVillages":31,"Points":248699,"Rank":382,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8877156","BestRank":382,"BestRankAt":"2023-02-16T05:25:56.238792Z","MostPoints":248699,"MostPointsAt":"2023-02-16T05:25:56.238793Z","MostVillages":31,"MostVillagesAt":"2023-02-16T05:25:56.238793Z","LastActivityAt":"2023-02-16T05:25:56.238793Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8877462,"Name":"Avgan","NumVillages":1,"Points":116,"Rank":2432,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8877462","BestRank":2432,"BestRankAt":"2023-02-16T05:25:56.238793Z","MostPoints":116,"MostPointsAt":"2023-02-16T05:25:48.971651Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971651Z","LastActivityAt":"2023-02-16T05:25:48.971651Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1709,"ScoreAtt":480,"RankDef":2388,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2329,"ScoreTotal":500,"ID":8877886,"Name":"Lord kongo","NumVillages":2,"Points":7420,"Rank":1186,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8877886","BestRank":1186,"BestRankAt":"2023-02-16T05:25:56.238794Z","MostPoints":7420,"MostPointsAt":"2023-02-16T05:25:56.238794Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971651Z","LastActivityAt":"2023-02-16T05:25:56.238794Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8886999,"Name":"kamien335","NumVillages":1,"Points":54,"Rank":2536,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8886999","BestRank":2536,"BestRankAt":"2023-02-16T05:25:56.238794Z","MostPoints":54,"MostPointsAt":"2023-02-16T05:25:48.971652Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971652Z","LastActivityAt":"2023-02-16T05:25:48.971652Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8889781,"Name":"wuener","NumVillages":1,"Points":462,"Rank":2033,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8889781","BestRank":2033,"BestRankAt":"2023-02-16T05:25:56.238795Z","MostPoints":462,"MostPointsAt":"2023-02-16T05:25:48.971653Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971653Z","LastActivityAt":"2023-02-16T05:25:48.971653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1233,"ScoreAtt":8760,"RankDef":1118,"ScoreDef":91152,"RankSup":0,"ScoreSup":0,"RankTotal":1389,"ScoreTotal":99912,"ID":8890346,"Name":"brif123456789","NumVillages":2,"Points":7896,"Rank":1160,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8890346","BestRank":1160,"BestRankAt":"2023-02-16T05:25:56.238795Z","MostPoints":7896,"MostPointsAt":"2023-02-16T05:25:56.238795Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971653Z","LastActivityAt":"2023-02-16T05:25:56.238795Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8890611,"Name":"Harasi","NumVillages":1,"Points":47,"Rank":2562,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8890611","BestRank":2562,"BestRankAt":"2023-02-16T05:25:56.238796Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:48.971654Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971654Z","LastActivityAt":"2023-02-16T05:25:48.971654Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":586,"ScoreAtt":229546,"RankDef":453,"ScoreDef":609396,"RankSup":843,"ScoreSup":16853,"RankTotal":665,"ScoreTotal":855795,"ID":8890793,"Name":"Ronoxo and Zaruss","NumVillages":0,"Points":0,"Rank":2920,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8890793","BestRank":2920,"BestRankAt":"2023-02-16T05:25:56.238796Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971654Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971654Z","LastActivityAt":"2023-02-16T05:25:48.971654Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":163,"ScoreAtt":1964676,"RankDef":615,"ScoreDef":362571,"RankSup":388,"ScoreSup":333863,"RankTotal":328,"ScoreTotal":2661110,"ID":8895532,"Name":"KubekXD11","NumVillages":0,"Points":0,"Rank":2921,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8895532","BestRank":2921,"BestRankAt":"2023-02-16T05:25:56.238797Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971655Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971655Z","LastActivityAt":"2023-02-16T05:25:48.971655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1735,"ScoreAtt":342,"RankDef":783,"ScoreDef":225533,"RankSup":0,"ScoreSup":0,"RankTotal":1099,"ScoreTotal":225875,"ID":8897100,"Name":"lord leoni","NumVillages":1,"Points":884,"Rank":1878,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8897100","BestRank":1878,"BestRankAt":"2023-02-16T05:25:56.238797Z","MostPoints":884,"MostPointsAt":"2023-02-16T05:25:48.971655Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971655Z","LastActivityAt":"2023-02-16T05:25:48.971655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":274,"ScoreAtt":1027524,"RankDef":1490,"ScoreDef":34490,"RankSup":753,"ScoreSup":34715,"RankTotal":591,"ScoreTotal":1096729,"ID":8900955,"Name":"Pablosta","NumVillages":34,"Points":271653,"Rank":368,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8900955","BestRank":366,"BestRankAt":"2023-02-16T05:25:48.971656Z","MostPoints":271653,"MostPointsAt":"2023-02-16T05:25:56.238798Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:48.971656Z","LastActivityAt":"2023-02-16T05:25:56.238798Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8907069,"Name":"kcys2","NumVillages":1,"Points":47,"Rank":2563,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8907069","BestRank":2563,"BestRankAt":"2023-02-16T05:25:56.238798Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:48.971656Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971656Z","LastActivityAt":"2023-02-16T05:25:48.971657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1000,"ScoreAtt":29681,"RankDef":644,"ScoreDef":329223,"RankSup":1347,"ScoreSup":6,"RankTotal":951,"ScoreTotal":358910,"ID":8907258,"Name":"adrianww13","NumVillages":1,"Points":317,"Rank":2140,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8907258","BestRank":2140,"BestRankAt":"2023-02-16T05:25:56.238799Z","MostPoints":317,"MostPointsAt":"2023-02-16T05:25:56.238799Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971657Z","LastActivityAt":"2023-02-16T05:25:56.238799Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":213,"ScoreAtt":1471784,"RankDef":1190,"ScoreDef":74355,"RankSup":160,"ScoreSup":1401833,"RankTotal":296,"ScoreTotal":2947972,"ID":8908002,"Name":"Kuzyn Platynov","NumVillages":63,"Points":514718,"Rank":264,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8908002","BestRank":264,"BestRankAt":"2023-02-16T05:25:56.238799Z","MostPoints":514718,"MostPointsAt":"2023-02-16T05:25:56.238799Z","MostVillages":63,"MostVillagesAt":"2023-02-16T05:25:48.971657Z","LastActivityAt":"2023-02-16T05:25:56.238799Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1199,"ScoreAtt":10563,"RankDef":959,"ScoreDef":142779,"RankSup":0,"ScoreSup":0,"RankTotal":1240,"ScoreTotal":153342,"ID":8908544,"Name":"AndĆŒi San","NumVillages":1,"Points":5624,"Rank":1287,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8908544","BestRank":1287,"BestRankAt":"2023-02-16T05:25:56.2388Z","MostPoints":5624,"MostPointsAt":"2023-02-16T05:25:48.971658Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971658Z","LastActivityAt":"2023-02-16T05:25:48.971658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":965,"ScoreAtt":36071,"RankDef":1396,"ScoreDef":44124,"RankSup":0,"ScoreSup":0,"RankTotal":1457,"ScoreTotal":80195,"ID":8916982,"Name":"morus854","NumVillages":18,"Points":67967,"Rank":623,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8916982","BestRank":623,"BestRankAt":"2023-02-16T05:25:56.2388Z","MostPoints":67967,"MostPointsAt":"2023-02-16T05:25:56.2388Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:48.971659Z","LastActivityAt":"2023-02-16T05:25:56.2388Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1891,"ScoreAtt":46,"RankDef":1055,"ScoreDef":106236,"RankSup":0,"ScoreSup":0,"RankTotal":1366,"ScoreTotal":106282,"ID":8922870,"Name":"MAX LU Prime","NumVillages":1,"Points":810,"Rank":1898,"TribeID":1753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8922870","BestRank":1898,"BestRankAt":"2023-02-16T05:25:56.238801Z","MostPoints":810,"MostPointsAt":"2023-02-16T05:25:56.238801Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971659Z","LastActivityAt":"2023-02-16T05:25:56.238801Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1393,"ScoreAtt":4201,"RankDef":2253,"ScoreDef":477,"RankSup":0,"ScoreSup":0,"RankTotal":2129,"ScoreTotal":4678,"ID":8924845,"Name":"Totalnie Mocarny Goƛciu","NumVillages":1,"Points":136,"Rank":2379,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8924845","BestRank":2379,"BestRankAt":"2023-02-16T05:25:56.238801Z","MostPoints":136,"MostPointsAt":"2023-02-16T05:25:48.97166Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97166Z","LastActivityAt":"2023-02-16T05:25:48.97166Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97193Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":844,"ScoreAtt":66039,"RankDef":1413,"ScoreDef":41389,"RankSup":0,"ScoreSup":0,"RankTotal":1358,"ScoreTotal":107428,"ID":8925624,"Name":"Napastnik.","NumVillages":9,"Points":57263,"Rank":664,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8925624","BestRank":664,"BestRankAt":"2023-02-16T05:25:56.238802Z","MostPoints":57263,"MostPointsAt":"2023-02-16T05:25:48.97166Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.97166Z","LastActivityAt":"2023-02-16T05:25:48.97166Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97193Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":461,"ScoreAtt":429738,"RankDef":1839,"ScoreDef":10229,"RankSup":784,"ScoreSup":28026,"RankTotal":863,"ScoreTotal":467993,"ID":8925695,"Name":"tutek101","NumVillages":20,"Points":151945,"Rank":464,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8925695","BestRank":464,"BestRankAt":"2023-02-16T05:25:56.238802Z","MostPoints":151945,"MostPointsAt":"2023-02-16T05:25:48.971661Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:48.971661Z","LastActivityAt":"2023-02-16T05:25:48.971661Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97193Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1959,"ScoreAtt":9,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2533,"ScoreTotal":9,"ID":8926516,"Name":"pogromca xcc","NumVillages":1,"Points":176,"Rank":2319,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8926516","BestRank":2319,"BestRankAt":"2023-02-16T05:25:56.238803Z","MostPoints":176,"MostPointsAt":"2023-02-16T05:25:48.971661Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971661Z","LastActivityAt":"2023-02-16T05:25:48.971662Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97193Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2238,"ScoreDef":563,"RankSup":0,"ScoreSup":0,"RankTotal":2320,"ScoreTotal":563,"ID":8942143,"Name":"bartek145972","NumVillages":1,"Points":339,"Rank":2117,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8942143","BestRank":2117,"BestRankAt":"2023-02-16T05:25:56.238803Z","MostPoints":339,"MostPointsAt":"2023-02-16T05:25:48.971662Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971662Z","LastActivityAt":"2023-02-16T05:25:48.971662Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2219,"ScoreDef":756,"RankSup":0,"ScoreSup":0,"RankTotal":2306,"ScoreTotal":756,"ID":8947021,"Name":"Gollum18","NumVillages":1,"Points":3318,"Rank":1476,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8947021","BestRank":1476,"BestRankAt":"2023-02-16T05:25:56.238804Z","MostPoints":3318,"MostPointsAt":"2023-02-16T05:25:56.238804Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971662Z","LastActivityAt":"2023-02-16T05:25:56.238804Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2043,"ScoreDef":3633,"RankSup":0,"ScoreSup":0,"RankTotal":2169,"ScoreTotal":3633,"ID":8947705,"Name":"PysioSsie","NumVillages":1,"Points":286,"Rank":2171,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8947705","BestRank":2171,"BestRankAt":"2023-02-16T05:25:56.238804Z","MostPoints":286,"MostPointsAt":"2023-02-16T05:25:48.971663Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971663Z","LastActivityAt":"2023-02-16T05:25:48.971663Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":136,"ScoreAtt":2267958,"RankDef":716,"ScoreDef":264636,"RankSup":330,"ScoreSup":447224,"RankTotal":293,"ScoreTotal":2979818,"ID":8954402,"Name":"darkmike01","NumVillages":76,"Points":710497,"Rank":202,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8954402","BestRank":202,"BestRankAt":"2023-02-16T05:25:56.238805Z","MostPoints":710497,"MostPointsAt":"2023-02-16T05:25:56.238805Z","MostVillages":76,"MostVillagesAt":"2023-02-16T05:25:56.238805Z","LastActivityAt":"2023-02-16T05:25:56.238805Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1238,"ScoreAtt":8432,"RankDef":1501,"ScoreDef":33558,"RankSup":0,"ScoreSup":0,"RankTotal":1660,"ScoreTotal":41990,"ID":8956715,"Name":"Norane","NumVillages":1,"Points":242,"Rank":2217,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8956715","BestRank":2217,"BestRankAt":"2023-02-16T05:25:56.238805Z","MostPoints":242,"MostPointsAt":"2023-02-16T05:25:56.238805Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971664Z","LastActivityAt":"2023-02-16T05:25:56.238806Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":347,"ScoreAtt":707484,"RankDef":83,"ScoreDef":4087908,"RankSup":822,"ScoreSup":20179,"RankTotal":197,"ScoreTotal":4815571,"ID":8963720,"Name":"Lord Binladen","NumVillages":5,"Points":32713,"Rank":792,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8963720","BestRank":788,"BestRankAt":"2023-02-16T05:25:48.971667Z","MostPoints":32713,"MostPointsAt":"2023-02-16T05:25:48.971668Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.971667Z","LastActivityAt":"2023-02-16T05:25:48.971668Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":195,"ScoreAtt":1600938,"RankDef":237,"ScoreDef":1630333,"RankSup":195,"ScoreSup":975573,"RankTotal":227,"ScoreTotal":4206844,"ID":8966820,"Name":"arti..","NumVillages":16,"Points":115454,"Rank":510,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8966820","BestRank":452,"BestRankAt":"2023-02-16T05:25:48.971668Z","MostPoints":158430,"MostPointsAt":"2023-02-16T05:25:48.971668Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:48.971668Z","LastActivityAt":"2023-02-16T05:25:48.971668Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":357,"ScoreAtt":682393,"RankDef":48,"ScoreDef":6758765,"RankSup":373,"ScoreSup":362794,"RankTotal":107,"ScoreTotal":7803952,"ID":8967440,"Name":"Many","NumVillages":44,"Points":268717,"Rank":370,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8967440","BestRank":367,"BestRankAt":"2023-02-16T05:25:48.971668Z","MostPoints":268717,"MostPointsAt":"2023-02-16T05:25:56.238807Z","MostVillages":44,"MostVillagesAt":"2023-02-16T05:25:48.971669Z","LastActivityAt":"2023-02-16T05:25:56.238807Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8968520,"Name":"Fieffe","NumVillages":1,"Points":76,"Rank":2521,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8968520","BestRank":2521,"BestRankAt":"2023-02-16T05:25:48.971669Z","MostPoints":76,"MostPointsAt":"2023-02-16T05:25:48.971669Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971669Z","LastActivityAt":"2023-02-16T05:25:48.971669Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971932Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1727,"ScoreAtt":367,"RankDef":1064,"ScoreDef":103977,"RankSup":1244,"ScoreSup":129,"RankTotal":1373,"ScoreTotal":104473,"ID":8970390,"Name":"dodocolo","NumVillages":1,"Points":2661,"Rank":1558,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8970390","BestRank":1558,"BestRankAt":"2023-02-16T05:25:56.238807Z","MostPoints":2661,"MostPointsAt":"2023-02-16T05:25:48.97167Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97167Z","LastActivityAt":"2023-02-16T05:25:48.97167Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8975453,"Name":"kolejne multikonto","NumVillages":1,"Points":26,"Rank":2638,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8975453","BestRank":2638,"BestRankAt":"2023-02-16T05:25:56.238808Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.97167Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97167Z","LastActivityAt":"2023-02-16T05:25:48.97167Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":421,"ScoreAtt":509733,"RankDef":1302,"ScoreDef":56565,"RankSup":925,"ScoreSup":9307,"RankTotal":787,"ScoreTotal":575605,"ID":8976313,"Name":"tranquill","NumVillages":52,"Points":371927,"Rank":314,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8976313","BestRank":314,"BestRankAt":"2023-02-16T05:25:56.238808Z","MostPoints":371927,"MostPointsAt":"2023-02-16T05:25:56.238808Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:48.971671Z","LastActivityAt":"2023-02-16T05:25:56.238808Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1939,"ScoreAtt":19,"RankDef":997,"ScoreDef":126069,"RankSup":0,"ScoreSup":0,"RankTotal":1307,"ScoreTotal":126088,"ID":8978080,"Name":"Gacek565","NumVillages":1,"Points":2870,"Rank":1532,"TribeID":1498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8978080","BestRank":1532,"BestRankAt":"2023-02-16T05:25:56.238809Z","MostPoints":2870,"MostPointsAt":"2023-02-16T05:25:56.238809Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971672Z","LastActivityAt":"2023-02-16T05:25:56.238809Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":364,"ScoreAtt":661120,"RankDef":1428,"ScoreDef":39717,"RankSup":480,"ScoreSup":190732,"RankTotal":658,"ScoreTotal":891569,"ID":8980651,"Name":"cyni123","NumVillages":60,"Points":502402,"Rank":268,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8980651","BestRank":268,"BestRankAt":"2023-02-16T05:25:48.971672Z","MostPoints":502402,"MostPointsAt":"2023-02-16T05:25:48.971673Z","MostVillages":60,"MostVillagesAt":"2023-02-16T05:25:48.971672Z","LastActivityAt":"2023-02-16T05:25:48.971673Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1691,"ScoreAtt":665,"RankDef":1191,"ScoreDef":74645,"RankSup":0,"ScoreSup":0,"RankTotal":1480,"ScoreTotal":75310,"ID":8983479,"Name":"AnImA83","NumVillages":0,"Points":0,"Rank":2951,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8983479","BestRank":2951,"BestRankAt":"2023-02-16T05:25:48.971673Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971673Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971673Z","LastActivityAt":"2023-02-16T05:25:48.971673Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971934Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":8984336,"Name":"Nicosta","NumVillages":1,"Points":26,"Rank":2639,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8984336","BestRank":2639,"BestRankAt":"2023-02-16T05:25:56.23881Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971674Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971674Z","LastActivityAt":"2023-02-16T05:25:48.971674Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":579,"ScoreAtt":240489,"RankDef":429,"ScoreDef":667946,"RankSup":650,"ScoreSup":72366,"RankTotal":622,"ScoreTotal":980801,"ID":8985694,"Name":"robert15365","NumVillages":0,"Points":0,"Rank":2952,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8985694","BestRank":2952,"BestRankAt":"2023-02-16T05:25:48.971674Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971674Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971674Z","LastActivityAt":"2023-02-16T05:25:48.971674Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971934Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1236,"ScoreAtt":8542,"RankDef":857,"ScoreDef":185329,"RankSup":0,"ScoreSup":0,"RankTotal":1150,"ScoreTotal":193871,"ID":8991696,"Name":"dziadek1974","NumVillages":5,"Points":21641,"Rank":895,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8991696","BestRank":895,"BestRankAt":"2023-02-16T05:25:56.23881Z","MostPoints":21641,"MostPointsAt":"2023-02-16T05:25:56.23881Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.971675Z","LastActivityAt":"2023-02-16T05:25:56.23881Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2451,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2530,"ScoreTotal":10,"ID":8994199,"Name":"Froozantenna","NumVillages":1,"Points":1884,"Rank":1676,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8994199","BestRank":1676,"BestRankAt":"2023-02-16T05:25:56.238811Z","MostPoints":1884,"MostPointsAt":"2023-02-16T05:25:56.238811Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971675Z","LastActivityAt":"2023-02-16T05:25:56.238811Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1034,"ScoreAtt":25667,"RankDef":975,"ScoreDef":135268,"RankSup":1014,"ScoreSup":4085,"RankTotal":1218,"ScoreTotal":165020,"ID":8997874,"Name":"Sir lechman","NumVillages":2,"Points":6439,"Rank":1235,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=8997874","BestRank":1235,"BestRankAt":"2023-02-16T05:25:56.238811Z","MostPoints":6439,"MostPointsAt":"2023-02-16T05:25:56.238811Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971676Z","LastActivityAt":"2023-02-16T05:25:56.238812Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":408,"ScoreAtt":565891,"RankDef":754,"ScoreDef":242545,"RankSup":926,"ScoreSup":9263,"RankTotal":677,"ScoreTotal":817699,"ID":9000253,"Name":"Rokkas","NumVillages":0,"Points":0,"Rank":2922,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9000253","BestRank":2922,"BestRankAt":"2023-02-16T05:25:56.238812Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971676Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971676Z","LastActivityAt":"2023-02-16T05:25:48.971677Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9002278,"Name":"badidek","NumVillages":1,"Points":26,"Rank":2640,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9002278","BestRank":2640,"BestRankAt":"2023-02-16T05:25:56.238812Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971677Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971677Z","LastActivityAt":"2023-02-16T05:25:48.971677Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":328,"ScoreAtt":799302,"RankDef":1165,"ScoreDef":80197,"RankSup":637,"ScoreSup":78158,"RankTotal":637,"ScoreTotal":957657,"ID":9003698,"Name":"Quenthelq","NumVillages":31,"Points":249811,"Rank":381,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9003698","BestRank":381,"BestRankAt":"2023-02-16T05:25:56.238813Z","MostPoints":249811,"MostPointsAt":"2023-02-16T05:25:56.238813Z","MostVillages":31,"MostVillagesAt":"2023-02-16T05:25:48.971677Z","LastActivityAt":"2023-02-16T05:25:56.238813Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9004337,"Name":"mariuszf","NumVillages":1,"Points":98,"Rank":2463,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9004337","BestRank":2463,"BestRankAt":"2023-02-16T05:25:56.238813Z","MostPoints":98,"MostPointsAt":"2023-02-16T05:25:48.971678Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971678Z","LastActivityAt":"2023-02-16T05:25:48.971678Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9006528,"Name":"KESHIK","NumVillages":1,"Points":48,"Rank":2556,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9006528","BestRank":2556,"BestRankAt":"2023-02-16T05:25:56.238814Z","MostPoints":48,"MostPointsAt":"2023-02-16T05:25:48.971679Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971679Z","LastActivityAt":"2023-02-16T05:25:48.971679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9012894,"Name":"maciej55413","NumVillages":1,"Points":68,"Rank":2507,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9012894","BestRank":2507,"BestRankAt":"2023-02-16T05:25:56.238814Z","MostPoints":68,"MostPointsAt":"2023-02-16T05:25:48.971679Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971679Z","LastActivityAt":"2023-02-16T05:25:48.971679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1037,"ScoreDef":113440,"RankSup":979,"ScoreSup":5914,"RankTotal":1325,"ScoreTotal":119354,"ID":9014108,"Name":"ewciamariusz","NumVillages":1,"Points":1131,"Rank":1809,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9014108","BestRank":1809,"BestRankAt":"2023-02-16T05:25:56.238815Z","MostPoints":1131,"MostPointsAt":"2023-02-16T05:25:48.97168Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97168Z","LastActivityAt":"2023-02-16T05:25:48.97168Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1162,"ScoreAtt":12693,"RankDef":943,"ScoreDef":148294,"RankSup":1329,"ScoreSup":11,"RankTotal":1226,"ScoreTotal":160998,"ID":9016464,"Name":"Sir lobbek","NumVillages":1,"Points":3572,"Rank":1444,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9016464","BestRank":1444,"BestRankAt":"2023-02-16T05:25:56.238815Z","MostPoints":3572,"MostPointsAt":"2023-02-16T05:25:56.238815Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97168Z","LastActivityAt":"2023-02-16T05:25:56.238816Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":644,"ScoreAtt":164385,"RankDef":1548,"ScoreDef":29316,"RankSup":389,"ScoreSup":331068,"RankTotal":821,"ScoreTotal":524769,"ID":9016560,"Name":"Vikingen x Control360","NumVillages":3,"Points":22215,"Rank":891,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9016560","BestRank":889,"BestRankAt":"2023-02-16T05:25:48.971681Z","MostPoints":22215,"MostPointsAt":"2023-02-16T05:25:48.971681Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971681Z","LastActivityAt":"2023-02-16T05:25:48.971681Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1900,"ScoreAtt":40,"RankDef":1823,"ScoreDef":10886,"RankSup":0,"ScoreSup":0,"RankTotal":1981,"ScoreTotal":10926,"ID":9021037,"Name":"BD84","NumVillages":1,"Points":2004,"Rank":1653,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9021037","BestRank":1653,"BestRankAt":"2023-02-16T05:25:56.238816Z","MostPoints":2004,"MostPointsAt":"2023-02-16T05:25:56.238816Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971681Z","LastActivityAt":"2023-02-16T05:25:56.238817Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":497,"ScoreAtt":361893,"RankDef":309,"ScoreDef":1128918,"RankSup":200,"ScoreSup":934983,"RankTotal":356,"ScoreTotal":2425794,"ID":9021920,"Name":"Sebek4991","NumVillages":0,"Points":0,"Rank":2923,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9021920","BestRank":1083,"BestRankAt":"2023-02-16T05:25:48.971682Z","MostPoints":10026,"MostPointsAt":"2023-02-16T05:25:48.971682Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971682Z","LastActivityAt":"2023-02-16T05:25:48.971682Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":167,"ScoreAtt":1923934,"RankDef":673,"ScoreDef":296858,"RankSup":227,"ScoreSup":783100,"RankTotal":290,"ScoreTotal":3003892,"ID":9023703,"Name":"SirBiaƂy VII","NumVillages":101,"Points":901777,"Rank":162,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9023703","BestRank":162,"BestRankAt":"2023-02-16T05:25:56.238817Z","MostPoints":901777,"MostPointsAt":"2023-02-16T05:25:56.238817Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:56.238817Z","LastActivityAt":"2023-02-16T05:25:56.238818Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2315,"ScoreDef":149,"RankSup":0,"ScoreSup":0,"RankTotal":2397,"ScoreTotal":149,"ID":9029627,"Name":"KRIS 74 PL","NumVillages":1,"Points":26,"Rank":2641,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9029627","BestRank":2641,"BestRankAt":"2023-02-16T05:25:56.238818Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971683Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971683Z","LastActivityAt":"2023-02-16T05:25:48.971683Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":414,"ScoreAtt":546963,"RankDef":173,"ScoreDef":2156716,"RankSup":362,"ScoreSup":388928,"RankTotal":283,"ScoreTotal":3092607,"ID":9029928,"Name":"Smykaj","NumVillages":8,"Points":33208,"Rank":786,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9029928","BestRank":784,"BestRankAt":"2023-02-16T05:25:48.971683Z","MostPoints":33208,"MostPointsAt":"2023-02-16T05:25:48.971684Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.971683Z","LastActivityAt":"2023-02-16T05:25:48.971684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":628,"ScoreDef":344141,"RankSup":810,"ScoreSup":22738,"RankTotal":943,"ScoreTotal":366879,"ID":9031705,"Name":"SIR UNITED","NumVillages":1,"Points":44,"Rank":2571,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9031705","BestRank":2571,"BestRankAt":"2023-02-16T05:25:56.238819Z","MostPoints":44,"MostPointsAt":"2023-02-16T05:25:48.971684Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971684Z","LastActivityAt":"2023-02-16T05:25:48.971684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":312,"ScoreAtt":876817,"RankDef":554,"ScoreDef":437313,"RankSup":122,"ScoreSup":1816364,"RankTotal":281,"ScoreTotal":3130494,"ID":9037756,"Name":"Psycho McB","NumVillages":36,"Points":228073,"Rank":394,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9037756","BestRank":383,"BestRankAt":"2023-02-16T05:25:48.971684Z","MostPoints":244810,"MostPointsAt":"2023-02-16T05:25:48.971685Z","MostVillages":38,"MostVillagesAt":"2023-02-16T05:25:48.971685Z","LastActivityAt":"2023-02-16T05:25:48.971685Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":456,"ScoreAtt":433855,"RankDef":130,"ScoreDef":2991485,"RankSup":597,"ScoreSup":100400,"RankTotal":256,"ScoreTotal":3525740,"ID":9043233,"Name":"marianoitaliuano","NumVillages":1,"Points":26,"Rank":2642,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9043233","BestRank":2642,"BestRankAt":"2023-02-16T05:25:56.23882Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971685Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971685Z","LastActivityAt":"2023-02-16T05:25:48.971685Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":401,"ScoreAtt":587673,"RankDef":239,"ScoreDef":1624665,"RankSup":244,"ScoreSup":728079,"RankTotal":297,"ScoreTotal":2940417,"ID":9047658,"Name":"Hanibal25","NumVillages":0,"Points":0,"Rank":2924,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9047658","BestRank":2924,"BestRankAt":"2023-02-16T05:25:56.23882Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971686Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971686Z","LastActivityAt":"2023-02-16T05:25:48.971686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":565,"ScoreAtt":257270,"RankDef":226,"ScoreDef":1691587,"RankSup":539,"ScoreSup":137056,"RankTotal":396,"ScoreTotal":2085913,"ID":9048764,"Name":"BagPipePL","NumVillages":2,"Points":20523,"Rank":910,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9048764","BestRank":910,"BestRankAt":"2023-02-16T05:25:48.971686Z","MostPoints":20523,"MostPointsAt":"2023-02-16T05:25:48.971686Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971686Z","LastActivityAt":"2023-02-16T05:25:48.971686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1773,"ScoreAtt":252,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2370,"ScoreTotal":252,"ID":9053254,"Name":"malwina1","NumVillages":1,"Points":1069,"Rank":1828,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9053254","BestRank":1828,"BestRankAt":"2023-02-16T05:25:56.238821Z","MostPoints":1069,"MostPointsAt":"2023-02-16T05:25:56.238821Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971687Z","LastActivityAt":"2023-02-16T05:25:56.238821Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":831,"ScoreAtt":70229,"RankDef":129,"ScoreDef":3010527,"RankSup":135,"ScoreSup":1603410,"RankTotal":203,"ScoreTotal":4684166,"ID":9057880,"Name":"mamcos98","NumVillages":1,"Points":26,"Rank":2643,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9057880","BestRank":2643,"BestRankAt":"2023-02-16T05:25:56.238822Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971687Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971687Z","LastActivityAt":"2023-02-16T05:25:48.971688Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97194Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":209,"ScoreAtt":1504258,"RankDef":134,"ScoreDef":2933303,"RankSup":345,"ScoreSup":417448,"RankTotal":193,"ScoreTotal":4855009,"ID":9060641,"Name":"Koloalu","NumVillages":43,"Points":379321,"Rank":309,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9060641","BestRank":309,"BestRankAt":"2023-02-16T05:25:48.971688Z","MostPoints":379321,"MostPointsAt":"2023-02-16T05:25:56.238822Z","MostVillages":43,"MostVillagesAt":"2023-02-16T05:25:48.971688Z","LastActivityAt":"2023-02-16T05:25:56.238822Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97194Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":410,"ScoreAtt":560872,"RankDef":117,"ScoreDef":3190865,"RankSup":208,"ScoreSup":884996,"RankTotal":205,"ScoreTotal":4636733,"ID":9060885,"Name":"zƂyy banan.","NumVillages":3,"Points":15142,"Rank":996,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9060885","BestRank":994,"BestRankAt":"2023-02-16T05:25:48.971688Z","MostPoints":15142,"MostPointsAt":"2023-02-16T05:25:48.971689Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971688Z","LastActivityAt":"2023-02-16T05:25:48.971689Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97194Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1029,"ScoreAtt":26283,"RankDef":1707,"ScoreDef":17729,"RankSup":1179,"ScoreSup":536,"RankTotal":1642,"ScoreTotal":44548,"ID":9067168,"Name":"mevest","NumVillages":1,"Points":42,"Rank":2577,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9067168","BestRank":2577,"BestRankAt":"2023-02-16T05:25:56.238823Z","MostPoints":42,"MostPointsAt":"2023-02-16T05:25:48.971689Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971689Z","LastActivityAt":"2023-02-16T05:25:48.971689Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97194Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1358,"ScoreDef":49235,"RankSup":0,"ScoreSup":0,"RankTotal":1612,"ScoreTotal":49235,"ID":9071253,"Name":"Lord Sir bogdan","NumVillages":1,"Points":148,"Rank":2356,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9071253","BestRank":2356,"BestRankAt":"2023-02-16T05:25:56.238824Z","MostPoints":148,"MostPointsAt":"2023-02-16T05:25:56.238824Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.238824Z","LastActivityAt":"2023-02-16T05:25:56.238824Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97194Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9073704,"Name":"xFacHoWieCx","NumVillages":1,"Points":26,"Rank":2644,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9073704","BestRank":2644,"BestRankAt":"2023-02-16T05:25:56.238824Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.97169Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.97169Z","LastActivityAt":"2023-02-16T05:25:48.97169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1830,"ScoreAtt":134,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2404,"ScoreTotal":134,"ID":9090040,"Name":"czubak91","NumVillages":3,"Points":7103,"Rank":1202,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9090040","BestRank":1202,"BestRankAt":"2023-02-16T05:25:56.238825Z","MostPoints":7103,"MostPointsAt":"2023-02-16T05:25:56.238825Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971691Z","LastActivityAt":"2023-02-16T05:25:56.238825Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1598,"ScoreDef":25519,"RankSup":1262,"ScoreSup":73,"RankTotal":1810,"ScoreTotal":25592,"ID":9091557,"Name":"SzybaSc","NumVillages":1,"Points":3144,"Rank":1494,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9091557","BestRank":1494,"BestRankAt":"2023-02-16T05:25:56.238825Z","MostPoints":3144,"MostPointsAt":"2023-02-16T05:25:56.238825Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971691Z","LastActivityAt":"2023-02-16T05:25:56.238825Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":657,"ScoreAtt":155893,"RankDef":669,"ScoreDef":301302,"RankSup":392,"ScoreSup":328148,"RankTotal":687,"ScoreTotal":785343,"ID":9094538,"Name":"koziki","NumVillages":8,"Points":28257,"Rank":831,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9094538","BestRank":750,"BestRankAt":"2023-02-16T05:25:48.971692Z","MostPoints":38344,"MostPointsAt":"2023-02-16T05:25:48.971692Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:48.971692Z","LastActivityAt":"2023-02-16T05:25:48.971692Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1076,"ScoreAtt":20290,"RankDef":2184,"ScoreDef":1191,"RankSup":1266,"ScoreSup":65,"RankTotal":1846,"ScoreTotal":21546,"ID":9095581,"Name":"Lord SnOOpDoG","NumVillages":3,"Points":8508,"Rank":1132,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9095581","BestRank":1132,"BestRankAt":"2023-02-16T05:25:56.238826Z","MostPoints":8508,"MostPointsAt":"2023-02-16T05:25:56.238826Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:48.971692Z","LastActivityAt":"2023-02-16T05:25:56.238826Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":765,"ScoreAtt":93946,"RankDef":793,"ScoreDef":220848,"RankSup":508,"ScoreSup":165850,"RankTotal":854,"ScoreTotal":480644,"ID":9096738,"Name":"MistycznaParowa","NumVillages":1,"Points":188,"Rank":2303,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9096738","BestRank":2303,"BestRankAt":"2023-02-16T05:25:56.238827Z","MostPoints":188,"MostPointsAt":"2023-02-16T05:25:48.971693Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971693Z","LastActivityAt":"2023-02-16T05:25:48.971693Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":942,"ScoreDef":148684,"RankSup":0,"ScoreSup":0,"RankTotal":1248,"ScoreTotal":148684,"ID":9097545,"Name":"Lord Ɓukasz1997","NumVillages":1,"Points":2138,"Rank":1629,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9097545","BestRank":1629,"BestRankAt":"2023-02-16T05:25:56.238827Z","MostPoints":2138,"MostPointsAt":"2023-02-16T05:25:56.238827Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971693Z","LastActivityAt":"2023-02-16T05:25:56.238827Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9098296,"Name":"solidna","NumVillages":1,"Points":182,"Rank":2310,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9098296","BestRank":2310,"BestRankAt":"2023-02-16T05:25:56.238828Z","MostPoints":182,"MostPointsAt":"2023-02-16T05:25:48.971694Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971694Z","LastActivityAt":"2023-02-16T05:25:48.971694Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":523,"ScoreAtt":321435,"RankDef":832,"ScoreDef":196605,"RankSup":333,"ScoreSup":441777,"RankTotal":636,"ScoreTotal":959817,"ID":9101574,"Name":"Hashirama","NumVillages":52,"Points":376299,"Rank":311,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9101574","BestRank":311,"BestRankAt":"2023-02-16T05:25:56.238828Z","MostPoints":376299,"MostPointsAt":"2023-02-16T05:25:56.238828Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:56.238828Z","LastActivityAt":"2023-02-16T05:25:56.238829Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":890,"ScoreAtt":52920,"RankDef":310,"ScoreDef":1120247,"RankSup":649,"ScoreSup":72799,"RankTotal":554,"ScoreTotal":1245966,"ID":9103424,"Name":"kiokiokio","NumVillages":12,"Points":74275,"Rank":598,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9103424","BestRank":598,"BestRankAt":"2023-02-16T05:25:56.238829Z","MostPoints":74275,"MostPointsAt":"2023-02-16T05:25:48.971695Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:48.971695Z","LastActivityAt":"2023-02-16T05:25:48.971695Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":429,"ScoreAtt":488424,"RankDef":330,"ScoreDef":987378,"RankSup":526,"ScoreSup":147550,"RankTotal":473,"ScoreTotal":1623352,"ID":9106642,"Name":"Aftjero","NumVillages":0,"Points":0,"Rank":2925,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9106642","BestRank":2925,"BestRankAt":"2023-02-16T05:25:56.238829Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:48.971696Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:48.971696Z","LastActivityAt":"2023-02-16T05:25:48.971696Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1664,"ScoreAtt":722,"RankDef":652,"ScoreDef":322131,"RankSup":0,"ScoreSup":0,"RankTotal":985,"ScoreTotal":322853,"ID":9106690,"Name":"teduniook","NumVillages":2,"Points":4509,"Rank":1360,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9106690","BestRank":1360,"BestRankAt":"2023-02-16T05:25:56.23883Z","MostPoints":4509,"MostPointsAt":"2023-02-16T05:25:48.971696Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971696Z","LastActivityAt":"2023-02-16T05:25:48.971696Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1263,"ScoreDef":61075,"RankSup":643,"ScoreSup":75562,"RankTotal":1278,"ScoreTotal":136637,"ID":9113064,"Name":"OlaLuv","NumVillages":6,"Points":18782,"Rank":937,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9113064","BestRank":937,"BestRankAt":"2023-02-16T05:25:56.23883Z","MostPoints":18782,"MostPointsAt":"2023-02-16T05:25:56.23883Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:48.971697Z","LastActivityAt":"2023-02-16T05:25:56.238831Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9114562,"Name":"Tohsaka Rin","NumVillages":1,"Points":394,"Rank":2075,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9114562","BestRank":2075,"BestRankAt":"2023-02-16T05:25:56.238831Z","MostPoints":394,"MostPointsAt":"2023-02-16T05:25:48.971697Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971697Z","LastActivityAt":"2023-02-16T05:25:48.971697Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1066,"ScoreAtt":20805,"RankDef":1192,"ScoreDef":73740,"RankSup":1198,"ScoreSup":368,"RankTotal":1405,"ScoreTotal":94913,"ID":9120206,"Name":"hubo00","NumVillages":13,"Points":66423,"Rank":629,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9120206","BestRank":629,"BestRankAt":"2023-02-16T05:25:56.238831Z","MostPoints":66423,"MostPointsAt":"2023-02-16T05:25:56.238831Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:48.971698Z","LastActivityAt":"2023-02-16T05:25:56.238832Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2115,"ScoreDef":2238,"RankSup":0,"ScoreSup":0,"RankTotal":2218,"ScoreTotal":2238,"ID":9124682,"Name":"Unknown","NumVillages":1,"Points":150,"Rank":2353,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9124682","BestRank":2353,"BestRankAt":"2023-02-16T05:25:56.238832Z","MostPoints":150,"MostPointsAt":"2023-02-16T05:25:48.971698Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971698Z","LastActivityAt":"2023-02-16T05:25:48.971698Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9128606,"Name":"KamykosXD","NumVillages":1,"Points":70,"Rank":2504,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9128606","BestRank":2504,"BestRankAt":"2023-02-16T05:25:56.238832Z","MostPoints":70,"MostPointsAt":"2023-02-16T05:25:48.971699Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971699Z","LastActivityAt":"2023-02-16T05:25:48.971699Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1857,"ScoreAtt":94,"RankDef":2190,"ScoreDef":1120,"RankSup":0,"ScoreSup":0,"RankTotal":2281,"ScoreTotal":1214,"ID":9129046,"Name":"misiu12193","NumVillages":1,"Points":339,"Rank":2118,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9129046","BestRank":2118,"BestRankAt":"2023-02-16T05:25:56.238833Z","MostPoints":339,"MostPointsAt":"2023-02-16T05:25:48.971699Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971699Z","LastActivityAt":"2023-02-16T05:25:48.9717Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9135525,"Name":"apokalipsa25","NumVillages":1,"Points":26,"Rank":2645,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9135525","BestRank":2645,"BestRankAt":"2023-02-16T05:25:56.238833Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.9717Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.9717Z","LastActivityAt":"2023-02-16T05:25:48.9717Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2229,"ScoreDef":647,"RankSup":0,"ScoreSup":0,"RankTotal":2314,"ScoreTotal":647,"ID":9136062,"Name":"bercik53","NumVillages":1,"Points":1453,"Rank":1746,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9136062","BestRank":1746,"BestRankAt":"2023-02-16T05:25:56.238834Z","MostPoints":1453,"MostPointsAt":"2023-02-16T05:25:48.971701Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.9717Z","LastActivityAt":"2023-02-16T05:25:48.971701Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2126,"ScoreDef":2066,"RankSup":0,"ScoreSup":0,"RankTotal":2224,"ScoreTotal":2066,"ID":9138661,"Name":"Lodar93","NumVillages":1,"Points":26,"Rank":2646,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9138661","BestRank":2646,"BestRankAt":"2023-02-16T05:25:56.238834Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971701Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971701Z","LastActivityAt":"2023-02-16T05:25:48.971701Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1850,"ScoreAtt":107,"RankDef":589,"ScoreDef":392202,"RankSup":0,"ScoreSup":0,"RankTotal":924,"ScoreTotal":392309,"ID":9140898,"Name":"kmakma","NumVillages":2,"Points":7775,"Rank":1167,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9140898","BestRank":1167,"BestRankAt":"2023-02-16T05:25:56.238835Z","MostPoints":7775,"MostPointsAt":"2023-02-16T05:25:48.971702Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.971702Z","LastActivityAt":"2023-02-16T05:25:48.971702Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1297,"ScoreAtt":6532,"RankDef":689,"ScoreDef":284058,"RankSup":0,"ScoreSup":0,"RankTotal":1012,"ScoreTotal":290590,"ID":9147518,"Name":"przemomam","NumVillages":1,"Points":1945,"Rank":1662,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9147518","BestRank":1624,"BestRankAt":"2023-02-16T05:25:48.971702Z","MostPoints":2253,"MostPointsAt":"2023-02-16T05:25:48.971702Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971702Z","LastActivityAt":"2023-02-16T05:25:48.971702Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":426,"ScoreAtt":502205,"RankDef":168,"ScoreDef":2267080,"RankSup":545,"ScoreSup":133472,"RankTotal":300,"ScoreTotal":2902757,"ID":9148043,"Name":"I am best1","NumVillages":41,"Points":275737,"Rank":363,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9148043","BestRank":357,"BestRankAt":"2023-02-16T05:25:48.971703Z","MostPoints":296663,"MostPointsAt":"2023-02-16T05:25:48.971703Z","MostVillages":44,"MostVillagesAt":"2023-02-16T05:25:48.971703Z","LastActivityAt":"2023-02-16T05:25:56.238836Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1519,"ScoreAtt":2122,"RankDef":1818,"ScoreDef":11153,"RankSup":0,"ScoreSup":0,"RankTotal":1944,"ScoreTotal":13275,"ID":9148439,"Name":"przembarca20","NumVillages":1,"Points":8120,"Rank":1149,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9148439","BestRank":1149,"BestRankAt":"2023-02-16T05:25:56.238836Z","MostPoints":8120,"MostPointsAt":"2023-02-16T05:25:48.971703Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971703Z","LastActivityAt":"2023-02-16T05:25:48.971703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1931,"ScoreAtt":24,"RankDef":1051,"ScoreDef":107257,"RankSup":856,"ScoreSup":15750,"RankTotal":1316,"ScoreTotal":123031,"ID":9151549,"Name":"Brzydal 3-5","NumVillages":1,"Points":3212,"Rank":1487,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9151549","BestRank":1487,"BestRankAt":"2023-02-16T05:25:56.238837Z","MostPoints":3250,"MostPointsAt":"2023-02-16T05:25:48.971704Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971704Z","LastActivityAt":"2023-02-16T05:25:48.971704Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2075,"ScoreDef":2913,"RankSup":0,"ScoreSup":0,"RankTotal":2191,"ScoreTotal":2913,"ID":9153430,"Name":"- V -","NumVillages":1,"Points":241,"Rank":2218,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9153430","BestRank":2218,"BestRankAt":"2023-02-16T05:25:56.238837Z","MostPoints":241,"MostPointsAt":"2023-02-16T05:25:56.238837Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971704Z","LastActivityAt":"2023-02-16T05:25:56.238837Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":180,"ScoreAtt":1746829,"RankDef":58,"ScoreDef":5826417,"RankSup":547,"ScoreSup":131875,"RankTotal":108,"ScoreTotal":7705121,"ID":9154293,"Name":"Terror x Miniqo","NumVillages":1,"Points":26,"Rank":2647,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9154293","BestRank":2647,"BestRankAt":"2023-02-16T05:25:56.238838Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971705Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971705Z","LastActivityAt":"2023-02-16T05:25:48.971705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":128,"ScoreAtt":2371307,"RankDef":613,"ScoreDef":365469,"RankSup":220,"ScoreSup":817274,"RankTotal":253,"ScoreTotal":3554050,"ID":9154820,"Name":"wilq332","NumVillages":1,"Points":77,"Rank":2488,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9154820","BestRank":2488,"BestRankAt":"2023-02-16T05:25:56.238838Z","MostPoints":77,"MostPointsAt":"2023-02-16T05:25:56.238838Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.238838Z","LastActivityAt":"2023-02-16T05:25:56.238838Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9161369,"Name":"michoopl","NumVillages":1,"Points":26,"Rank":2648,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9161369","BestRank":2648,"BestRankAt":"2023-02-16T05:25:56.238839Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.238839Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.238839Z","LastActivityAt":"2023-02-16T05:25:56.238839Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.239886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1742,"ScoreAtt":323,"RankDef":2096,"ScoreDef":2523,"RankSup":0,"ScoreSup":0,"RankTotal":2198,"ScoreTotal":2846,"ID":9163140,"Name":".Krakers.","NumVillages":8,"Points":25076,"Rank":860,"TribeID":1368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9163140","BestRank":860,"BestRankAt":"2023-02-16T05:25:48.971706Z","MostPoints":25076,"MostPointsAt":"2023-02-16T05:25:48.971706Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:48.971706Z","LastActivityAt":"2023-02-16T05:25:48.971706Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":59,"ScoreAtt":4451047,"RankDef":105,"ScoreDef":3457749,"RankSup":94,"ScoreSup":2362611,"RankTotal":77,"ScoreTotal":10271407,"ID":9167250,"Name":"smieli","NumVillages":81,"Points":673416,"Rank":210,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9167250","BestRank":210,"BestRankAt":"2023-02-16T05:25:56.23884Z","MostPoints":673416,"MostPointsAt":"2023-02-16T05:25:56.23884Z","MostVillages":81,"MostVillagesAt":"2023-02-16T05:25:48.971707Z","LastActivityAt":"2023-02-16T05:25:56.23884Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":106,"ScoreAtt":2941544,"RankDef":1480,"ScoreDef":35593,"RankSup":740,"ScoreSup":37799,"RankTotal":288,"ScoreTotal":3014936,"ID":9174887,"Name":"JedynyTwardyPrawdziwy","NumVillages":71,"Points":705731,"Rank":204,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9174887","BestRank":204,"BestRankAt":"2023-02-16T05:25:56.23884Z","MostPoints":705731,"MostPointsAt":"2023-02-16T05:25:56.238841Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:48.971707Z","LastActivityAt":"2023-02-16T05:25:56.238841Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1076,"ScoreDef":100419,"RankSup":0,"ScoreSup":0,"RankTotal":1386,"ScoreTotal":100419,"ID":9179700,"Name":"KonopiTop","NumVillages":1,"Points":2516,"Rank":1575,"TribeID":1772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9179700","BestRank":1575,"BestRankAt":"2023-02-16T05:25:56.238841Z","MostPoints":2516,"MostPointsAt":"2023-02-16T05:25:48.971708Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971708Z","LastActivityAt":"2023-02-16T05:25:48.971708Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":674,"ScoreAtt":143491,"RankDef":1137,"ScoreDef":86475,"RankSup":172,"ScoreSup":1270564,"RankTotal":498,"ScoreTotal":1500530,"ID":9180206,"Name":"Larvanger","NumVillages":30,"Points":224680,"Rank":400,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9180206","BestRank":399,"BestRankAt":"2023-02-16T05:25:48.971708Z","MostPoints":224680,"MostPointsAt":"2023-02-16T05:25:56.238842Z","MostVillages":30,"MostVillagesAt":"2023-02-16T05:25:48.971708Z","LastActivityAt":"2023-02-16T05:25:56.238842Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":574,"ScoreAtt":242341,"RankDef":448,"ScoreDef":625062,"RankSup":351,"ScoreSup":412274,"RankTotal":547,"ScoreTotal":1279677,"ID":9182487,"Name":"Sir kamil 1999","NumVillages":1,"Points":119,"Rank":2426,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9182487","BestRank":2426,"BestRankAt":"2023-02-16T05:25:56.238842Z","MostPoints":119,"MostPointsAt":"2023-02-16T05:25:48.971709Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971709Z","LastActivityAt":"2023-02-16T05:25:48.971709Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1614,"ScoreAtt":1073,"RankDef":526,"ScoreDef":486289,"RankSup":0,"ScoreSup":0,"RankTotal":848,"ScoreTotal":487362,"ID":9185931,"Name":"bury16","NumVillages":1,"Points":6060,"Rank":1260,"TribeID":12,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9185931","BestRank":1260,"BestRankAt":"2023-02-16T05:25:56.238842Z","MostPoints":6060,"MostPointsAt":"2023-02-16T05:25:56.238843Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971709Z","LastActivityAt":"2023-02-16T05:25:56.238843Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":683,"ScoreAtt":139437,"RankDef":1946,"ScoreDef":6107,"RankSup":316,"ScoreSup":479284,"RankTotal":770,"ScoreTotal":624828,"ID":9186126,"Name":"KingJulian","NumVillages":29,"Points":230315,"Rank":392,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9186126","BestRank":392,"BestRankAt":"2023-02-16T05:25:56.238843Z","MostPoints":230315,"MostPointsAt":"2023-02-16T05:25:56.238843Z","MostVillages":29,"MostVillagesAt":"2023-02-16T05:25:56.238843Z","LastActivityAt":"2023-02-16T05:25:56.238843Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":154,"ScoreAtt":2030581,"RankDef":834,"ScoreDef":194796,"RankSup":339,"ScoreSup":430630,"RankTotal":329,"ScoreTotal":2656007,"ID":9186877,"Name":"Bernhard Roth*","NumVillages":1,"Points":221,"Rank":2244,"TribeID":1806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9186877","BestRank":2244,"BestRankAt":"2023-02-16T05:25:56.238844Z","MostPoints":221,"MostPointsAt":"2023-02-16T05:25:56.238844Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971711Z","LastActivityAt":"2023-02-16T05:25:56.238844Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":223,"ScoreAtt":1324407,"RankDef":1139,"ScoreDef":86299,"RankSup":62,"ScoreSup":3043062,"RankTotal":217,"ScoreTotal":4453768,"ID":9188016,"Name":"byMuerte","NumVillages":150,"Points":1208203,"Rank":112,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9188016","BestRank":111,"BestRankAt":"2023-02-16T05:25:48.971711Z","MostPoints":1208203,"MostPointsAt":"2023-02-16T05:25:56.238844Z","MostVillages":150,"MostVillagesAt":"2023-02-16T05:25:48.971712Z","LastActivityAt":"2023-02-16T05:25:56.238844Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1690,"ScoreAtt":582,"RankDef":1308,"ScoreDef":56169,"RankSup":1379,"ScoreSup":3,"RankTotal":1567,"ScoreTotal":56754,"ID":9191031,"Name":"Lord Yogurt I","NumVillages":5,"Points":24623,"Rank":868,"TribeID":1763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9191031","BestRank":868,"BestRankAt":"2023-02-16T05:25:56.238845Z","MostPoints":24623,"MostPointsAt":"2023-02-16T05:25:56.238845Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:48.971712Z","LastActivityAt":"2023-02-16T05:25:56.238845Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97195Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":632,"ScoreAtt":177403,"RankDef":427,"ScoreDef":668174,"RankSup":768,"ScoreSup":32479,"RankTotal":662,"ScoreTotal":878056,"ID":9195661,"Name":"MĂłwMiHarpagan","NumVillages":11,"Points":67586,"Rank":624,"TribeID":1793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9195661","BestRank":624,"BestRankAt":"2023-02-16T05:25:48.971713Z","MostPoints":67586,"MostPointsAt":"2023-02-16T05:25:56.238845Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:48.971713Z","LastActivityAt":"2023-02-16T05:25:56.238845Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97195Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":603,"ScoreAtt":208214,"RankDef":404,"ScoreDef":737788,"RankSup":759,"ScoreSup":33236,"RankTotal":621,"ScoreTotal":979238,"ID":9199885,"Name":"Sir maniek","NumVillages":26,"Points":151459,"Rank":465,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9199885","BestRank":465,"BestRankAt":"2023-02-16T05:25:56.238846Z","MostPoints":151459,"MostPointsAt":"2023-02-16T05:25:48.971713Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:48.971713Z","LastActivityAt":"2023-02-16T05:25:48.971713Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97195Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9201946,"Name":"kojak14","NumVillages":1,"Points":26,"Rank":2649,"TribeID":1799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9201946","BestRank":2649,"BestRankAt":"2023-02-16T05:25:56.238846Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971714Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971714Z","LastActivityAt":"2023-02-16T05:25:48.971714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.97195Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2471,"ScoreDef":3,"RankSup":0,"ScoreSup":0,"RankTotal":2548,"ScoreTotal":3,"ID":9213654,"Name":"maniek38","NumVillages":1,"Points":26,"Rank":2650,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9213654","BestRank":2650,"BestRankAt":"2023-02-16T05:25:56.238847Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:48.971714Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971714Z","LastActivityAt":"2023-02-16T05:25:48.971714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9219778,"Name":"miki0412","NumVillages":1,"Points":166,"Rank":2333,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9219778","BestRank":2333,"BestRankAt":"2023-02-16T05:25:56.238847Z","MostPoints":166,"MostPointsAt":"2023-02-16T05:25:48.971715Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971715Z","LastActivityAt":"2023-02-16T05:25:48.971715Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1756,"ScoreAtt":286,"RankDef":1795,"ScoreDef":12339,"RankSup":1011,"ScoreSup":4215,"RankTotal":1901,"ScoreTotal":16840,"ID":9225795,"Name":"SatsIronSide","NumVillages":1,"Points":6136,"Rank":1256,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9225795","BestRank":1256,"BestRankAt":"2023-02-16T05:25:56.238848Z","MostPoints":6136,"MostPointsAt":"2023-02-16T05:25:48.971715Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971715Z","LastActivityAt":"2023-02-16T05:25:48.971716Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":246,"ScoreAtt":1163994,"RankDef":1461,"ScoreDef":36966,"RankSup":520,"ScoreSup":152990,"RankTotal":529,"ScoreTotal":1353950,"ID":9228039,"Name":"sKev","NumVillages":86,"Points":667989,"Rank":213,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9228039","BestRank":213,"BestRankAt":"2023-02-16T05:25:56.238848Z","MostPoints":667989,"MostPointsAt":"2023-02-16T05:25:56.238848Z","MostVillages":86,"MostVillagesAt":"2023-02-16T05:25:48.971716Z","LastActivityAt":"2023-02-16T05:25:56.238848Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1581,"ScoreAtt":1392,"RankDef":1248,"ScoreDef":62972,"RankSup":0,"ScoreSup":0,"RankTotal":1526,"ScoreTotal":64364,"ID":9231765,"Name":"Lord Jack Carver","NumVillages":1,"Points":4086,"Rank":1392,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9231765","BestRank":1392,"BestRankAt":"2023-02-16T05:25:56.238849Z","MostPoints":4086,"MostPointsAt":"2023-02-16T05:25:56.238849Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971716Z","LastActivityAt":"2023-02-16T05:25:56.238849Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1394,"ScoreAtt":4169,"RankDef":409,"ScoreDef":723166,"RankSup":0,"ScoreSup":0,"RankTotal":714,"ScoreTotal":727335,"ID":9234594,"Name":"prince rudeboy","NumVillages":1,"Points":155,"Rank":2347,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9234594","BestRank":2347,"BestRankAt":"2023-02-16T05:25:56.238849Z","MostPoints":155,"MostPointsAt":"2023-02-16T05:25:56.238849Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:48.971717Z","LastActivityAt":"2023-02-16T05:25:56.23885Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1012,"ScoreAtt":27937,"RankDef":1281,"ScoreDef":59213,"RankSup":873,"ScoreSup":14163,"RankTotal":1383,"ScoreTotal":101313,"ID":9235561,"Name":"Chesterton","NumVillages":12,"Points":64383,"Rank":637,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9235561","BestRank":637,"BestRankAt":"2023-02-16T05:25:56.23885Z","MostPoints":64383,"MostPointsAt":"2023-02-16T05:25:56.23885Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:48.971718Z","LastActivityAt":"2023-02-16T05:25:56.23885Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":15,"ScoreAtt":10527807,"RankDef":79,"ScoreDef":4335933,"RankSup":55,"ScoreSup":3199537,"RankTotal":35,"ScoreTotal":18063277,"ID":9236866,"Name":"notfair.","NumVillages":307,"Points":2662877,"Rank":20,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9236866","BestRank":20,"BestRankAt":"2023-02-16T05:25:56.23885Z","MostPoints":2662877,"MostPointsAt":"2023-02-16T05:25:56.238851Z","MostVillages":307,"MostVillagesAt":"2023-02-16T05:25:56.23885Z","LastActivityAt":"2023-02-16T05:25:56.238851Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":306,"ScoreAtt":904200,"RankDef":1096,"ScoreDef":94505,"RankSup":444,"ScoreSup":235756,"RankTotal":555,"ScoreTotal":1234461,"ID":9238175,"Name":"Mucharadza","NumVillages":87,"Points":858294,"Rank":168,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9238175","BestRank":168,"BestRankAt":"2023-02-16T05:25:56.238851Z","MostPoints":858294,"MostPointsAt":"2023-02-16T05:25:56.238851Z","MostVillages":87,"MostVillagesAt":"2023-02-16T05:25:56.238851Z","LastActivityAt":"2023-02-16T05:25:56.238851Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":917,"ScoreAtt":47568,"RankDef":181,"ScoreDef":2065078,"RankSup":323,"ScoreSup":457884,"RankTotal":342,"ScoreTotal":2570530,"ID":9239515,"Name":"WiedĆșma100","NumVillages":21,"Points":94440,"Rank":550,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9239515","BestRank":550,"BestRankAt":"2023-02-16T05:25:56.238852Z","MostPoints":94440,"MostPointsAt":"2023-02-16T05:25:56.238852Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:48.971719Z","LastActivityAt":"2023-02-16T05:25:56.238852Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1960,"ScoreAtt":9,"RankDef":1223,"ScoreDef":68044,"RankSup":890,"ScoreSup":12406,"RankTotal":1454,"ScoreTotal":80459,"ID":9240154,"Name":"JackBlant","NumVillages":2,"Points":4467,"Rank":1365,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9240154","BestRank":1365,"BestRankAt":"2023-02-16T05:25:56.238852Z","MostPoints":4467,"MostPointsAt":"2023-02-16T05:25:48.97172Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:48.97172Z","LastActivityAt":"2023-02-16T05:25:48.97172Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:48.971953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9247737,"Name":"lukempire","NumVillages":1,"Points":26,"Rank":2651,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9247737","BestRank":2651,"BestRankAt":"2023-02-16T05:25:56.238853Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.03647Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03647Z","LastActivityAt":"2023-02-16T05:25:49.03647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1170,"ScoreAtt":12181,"RankDef":1719,"ScoreDef":17135,"RankSup":0,"ScoreSup":0,"RankTotal":1772,"ScoreTotal":29316,"ID":9253494,"Name":"LordDeltax","NumVillages":6,"Points":45642,"Rank":714,"TribeID":1470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9253494","BestRank":713,"BestRankAt":"2023-02-16T05:25:49.036471Z","MostPoints":45642,"MostPointsAt":"2023-02-16T05:25:49.036471Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036471Z","LastActivityAt":"2023-02-16T05:25:49.036471Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2266,"ScoreDef":382,"RankSup":990,"ScoreSup":5437,"RankTotal":2091,"ScoreTotal":5819,"ID":9257513,"Name":"adekkolt1","NumVillages":1,"Points":26,"Rank":2652,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9257513","BestRank":2652,"BestRankAt":"2023-02-16T05:25:56.238854Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036471Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036471Z","LastActivityAt":"2023-02-16T05:25:49.036471Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1329,"ScoreDef":53601,"RankSup":1069,"ScoreSup":2420,"RankTotal":1569,"ScoreTotal":56021,"ID":9260447,"Name":"Mursilis","NumVillages":1,"Points":2540,"Rank":1571,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9260447","BestRank":1571,"BestRankAt":"2023-02-16T05:25:56.238854Z","MostPoints":2540,"MostPointsAt":"2023-02-16T05:25:49.036472Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036472Z","LastActivityAt":"2023-02-16T05:25:49.036472Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1557,"ScoreDef":28650,"RankSup":0,"ScoreSup":0,"RankTotal":1778,"ScoreTotal":28650,"ID":9262877,"Name":"Blautek Janello","NumVillages":1,"Points":6399,"Rank":1239,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9262877","BestRank":1239,"BestRankAt":"2023-02-16T05:25:56.238855Z","MostPoints":6399,"MostPointsAt":"2023-02-16T05:25:49.036472Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036472Z","LastActivityAt":"2023-02-16T05:25:49.036473Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":205,"ScoreAtt":1536924,"RankDef":1067,"ScoreDef":102868,"RankSup":0,"ScoreSup":0,"RankTotal":470,"ScoreTotal":1639792,"ID":9264752,"Name":"Hitman003","NumVillages":21,"Points":215655,"Rank":407,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9264752","BestRank":406,"BestRankAt":"2023-02-16T05:25:49.036473Z","MostPoints":215655,"MostPointsAt":"2023-02-16T05:25:49.036474Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.036473Z","LastActivityAt":"2023-02-16T05:25:49.036474Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1779,"ScoreAtt":233,"RankDef":1526,"ScoreDef":30909,"RankSup":836,"ScoreSup":17676,"RankTotal":1614,"ScoreTotal":48818,"ID":9266092,"Name":"julka27","NumVillages":1,"Points":2120,"Rank":1631,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9266092","BestRank":1631,"BestRankAt":"2023-02-16T05:25:56.238855Z","MostPoints":2120,"MostPointsAt":"2023-02-16T05:25:49.036474Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036474Z","LastActivityAt":"2023-02-16T05:25:49.036474Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036942Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1294,"ScoreAtt":6583,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2069,"ScoreTotal":6583,"ID":9270302,"Name":"Sir Pazdan","NumVillages":1,"Points":1333,"Rank":1767,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9270302","BestRank":1767,"BestRankAt":"2023-02-16T05:25:56.238856Z","MostPoints":1333,"MostPointsAt":"2023-02-16T05:25:56.238856Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036475Z","LastActivityAt":"2023-02-16T05:25:56.238856Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":202,"ScoreAtt":1564933,"RankDef":253,"ScoreDef":1487112,"RankSup":15,"ScoreSup":6026032,"RankTotal":81,"ScoreTotal":9078077,"ID":9272054,"Name":"Gracze","NumVillages":94,"Points":886171,"Rank":164,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9272054","BestRank":152,"BestRankAt":"2023-02-16T05:25:49.036475Z","MostPoints":963354,"MostPointsAt":"2023-02-16T05:25:49.036476Z","MostVillages":102,"MostVillagesAt":"2023-02-16T05:25:49.036475Z","LastActivityAt":"2023-02-16T05:25:49.036476Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1028,"ScoreAtt":26292,"RankDef":905,"ScoreDef":166763,"RankSup":1171,"ScoreSup":622,"RankTotal":1151,"ScoreTotal":193677,"ID":9277642,"Name":"cago1994","NumVillages":1,"Points":5414,"Rank":1299,"TribeID":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9277642","BestRank":1299,"BestRankAt":"2023-02-16T05:25:56.238857Z","MostPoints":5414,"MostPointsAt":"2023-02-16T05:25:56.238857Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036476Z","LastActivityAt":"2023-02-16T05:25:56.238857Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":25,"ScoreAtt":7346222,"RankDef":244,"ScoreDef":1558749,"RankSup":12,"ScoreSup":6764550,"RankTotal":44,"ScoreTotal":15669521,"ID":9280477,"Name":"Kampaj3","NumVillages":278,"Points":2587854,"Rank":22,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9280477","BestRank":20,"BestRankAt":"2023-02-16T05:25:49.036476Z","MostPoints":2587854,"MostPointsAt":"2023-02-16T05:25:56.238858Z","MostVillages":278,"MostVillagesAt":"2023-02-16T05:25:49.036477Z","LastActivityAt":"2023-02-16T05:25:56.238858Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":581,"ScoreAtt":236718,"RankDef":458,"ScoreDef":600382,"RankSup":1108,"ScoreSup":1608,"RankTotal":670,"ScoreTotal":838708,"ID":9280679,"Name":"Kross x Smerf","NumVillages":1,"Points":26,"Rank":2653,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9280679","BestRank":2653,"BestRankAt":"2023-02-16T05:25:56.238858Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036477Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036477Z","LastActivityAt":"2023-02-16T05:25:49.036477Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1296,"ScoreDef":57579,"RankSup":1370,"ScoreSup":3,"RankTotal":1564,"ScoreTotal":57582,"ID":9282669,"Name":"Johnny B","NumVillages":1,"Points":4958,"Rank":1327,"TribeID":1389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9282669","BestRank":1327,"BestRankAt":"2023-02-16T05:25:56.238858Z","MostPoints":4958,"MostPointsAt":"2023-02-16T05:25:56.238859Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036478Z","LastActivityAt":"2023-02-16T05:25:56.238859Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":226,"ScoreAtt":1318612,"RankDef":2032,"ScoreDef":3897,"RankSup":861,"ScoreSup":15198,"RankTotal":532,"ScoreTotal":1337707,"ID":9282974,"Name":"Geamel","NumVillages":1,"Points":26,"Rank":2654,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9282974","BestRank":2654,"BestRankAt":"2023-02-16T05:25:56.238859Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036479Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036478Z","LastActivityAt":"2023-02-16T05:25:49.036479Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036957Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1286,"ScoreAtt":6735,"RankDef":406,"ScoreDef":732148,"RankSup":0,"ScoreSup":0,"RankTotal":708,"ScoreTotal":738883,"ID":9283142,"Name":"Zi3lonoMi","NumVillages":2,"Points":11088,"Rank":1057,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9283142","BestRank":1057,"BestRankAt":"2023-02-16T05:25:56.238859Z","MostPoints":11088,"MostPointsAt":"2023-02-16T05:25:56.23886Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036479Z","LastActivityAt":"2023-02-16T05:25:56.23886Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036958Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1474,"ScoreAtt":2676,"RankDef":1862,"ScoreDef":9262,"RankSup":0,"ScoreSup":0,"RankTotal":1960,"ScoreTotal":11938,"ID":9283775,"Name":"nani91","NumVillages":11,"Points":39248,"Rank":744,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9283775","BestRank":744,"BestRankAt":"2023-02-16T05:25:56.23886Z","MostPoints":39248,"MostPointsAt":"2023-02-16T05:25:56.23886Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.03648Z","LastActivityAt":"2023-02-16T05:25:56.23886Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":47,"ScoreAtt":5105162,"RankDef":121,"ScoreDef":3176446,"RankSup":69,"ScoreSup":2847942,"RankTotal":68,"ScoreTotal":11129550,"ID":9291984,"Name":"Alessaandra","NumVillages":215,"Points":1847017,"Rank":56,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9291984","BestRank":56,"BestRankAt":"2023-02-16T05:25:56.278069Z","MostPoints":1847017,"MostPointsAt":"2023-02-16T05:25:56.27807Z","MostVillages":215,"MostVillagesAt":"2023-02-16T05:25:56.27807Z","LastActivityAt":"2023-02-16T05:25:56.27807Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":995,"ScoreAtt":30875,"RankDef":1541,"ScoreDef":29827,"RankSup":1149,"ScoreSup":930,"RankTotal":1534,"ScoreTotal":61632,"ID":9292037,"Name":"VestoreI","NumVillages":1,"Points":1581,"Rank":1721,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9292037","BestRank":1721,"BestRankAt":"2023-02-16T05:25:56.27807Z","MostPoints":1581,"MostPointsAt":"2023-02-16T05:25:49.036481Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036481Z","LastActivityAt":"2023-02-16T05:25:49.036481Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9294339,"Name":"peniozdw","NumVillages":1,"Points":26,"Rank":2655,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9294339","BestRank":2655,"BestRankAt":"2023-02-16T05:25:56.278071Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036481Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036481Z","LastActivityAt":"2023-02-16T05:25:49.036481Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":809,"ScoreAtt":76381,"RankDef":677,"ScoreDef":293814,"RankSup":93,"ScoreSup":2366034,"RankTotal":322,"ScoreTotal":2736229,"ID":9299539,"Name":"DefinitelyRlyTheD0orek","NumVillages":174,"Points":1403123,"Rank":84,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9299539","BestRank":84,"BestRankAt":"2023-02-16T05:25:49.036482Z","MostPoints":1403123,"MostPointsAt":"2023-02-16T05:25:56.278071Z","MostVillages":174,"MostVillagesAt":"2023-02-16T05:25:49.036482Z","LastActivityAt":"2023-02-16T05:25:56.278071Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9300026,"Name":"Rangiku Matsumoto","NumVillages":1,"Points":26,"Rank":2656,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9300026","BestRank":2656,"BestRankAt":"2023-02-16T05:25:56.278072Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036482Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036482Z","LastActivityAt":"2023-02-16T05:25:49.036482Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":9302748,"Name":"PijęMurzyniankę","NumVillages":1,"Points":69,"Rank":2536,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9302748","BestRank":2536,"BestRankAt":"2023-02-16T05:25:49.036483Z","MostPoints":69,"MostPointsAt":"2023-02-16T05:25:49.036483Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036483Z","LastActivityAt":"2023-02-16T05:25:49.036483Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03697Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1862,"ScoreAtt":90,"RankDef":2472,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2420,"ScoreTotal":92,"ID":9312528,"Name":"mateszko166","NumVillages":1,"Points":4030,"Rank":1398,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9312528","BestRank":1398,"BestRankAt":"2023-02-16T05:25:56.278072Z","MostPoints":4030,"MostPointsAt":"2023-02-16T05:25:56.278072Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036483Z","LastActivityAt":"2023-02-16T05:25:56.278073Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":271,"ScoreAtt":1044052,"RankDef":575,"ScoreDef":406006,"RankSup":603,"ScoreSup":98659,"RankTotal":485,"ScoreTotal":1548717,"ID":9314079,"Name":"Kamilex00","NumVillages":101,"Points":772327,"Rank":187,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9314079","BestRank":187,"BestRankAt":"2023-02-16T05:25:56.278073Z","MostPoints":772327,"MostPointsAt":"2023-02-16T05:25:56.278073Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:49.036484Z","LastActivityAt":"2023-02-16T05:25:56.278073Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1397,"ScoreAtt":4139,"RankDef":388,"ScoreDef":771043,"RankSup":0,"ScoreSup":0,"RankTotal":691,"ScoreTotal":775182,"ID":9314153,"Name":"Giermek franek","NumVillages":1,"Points":3781,"Rank":1420,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9314153","BestRank":1420,"BestRankAt":"2023-02-16T05:25:56.278073Z","MostPoints":3781,"MostPointsAt":"2023-02-16T05:25:49.036485Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036484Z","LastActivityAt":"2023-02-16T05:25:49.036485Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1053,"ScoreDef":106673,"RankSup":1395,"ScoreSup":2,"RankTotal":1364,"ScoreTotal":106675,"ID":9318449,"Name":"paulinarzy","NumVillages":0,"Points":0,"Rank":2926,"TribeID":1338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9318449","BestRank":2926,"BestRankAt":"2023-02-16T05:25:56.278074Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036485Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036485Z","LastActivityAt":"2023-02-16T05:25:49.036485Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":119,"ScoreAtt":2504582,"RankDef":302,"ScoreDef":1156945,"RankSup":86,"ScoreSup":2429993,"RankTotal":148,"ScoreTotal":6091520,"ID":9319058,"Name":"walka500","NumVillages":141,"Points":1349963,"Rank":91,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9319058","BestRank":91,"BestRankAt":"2023-02-16T05:25:49.036487Z","MostPoints":1349963,"MostPointsAt":"2023-02-16T05:25:56.278074Z","MostVillages":141,"MostVillagesAt":"2023-02-16T05:25:49.036487Z","LastActivityAt":"2023-02-16T05:25:56.278075Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":738,"ScoreAtt":108556,"RankDef":362,"ScoreDef":837597,"RankSup":238,"ScoreSup":745107,"RankTotal":463,"ScoreTotal":1691260,"ID":9320272,"Name":"Raukodel","NumVillages":3,"Points":12203,"Rank":1042,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=9320272","BestRank":1041,"BestRankAt":"2023-02-16T05:25:49.036488Z","MostPoints":12203,"MostPointsAt":"2023-02-16T05:25:49.036488Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036488Z","LastActivityAt":"2023-02-16T05:25:49.036488Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":335,"ScoreAtt":774260,"RankDef":561,"ScoreDef":427224,"RankSup":397,"ScoreSup":321132,"RankTotal":494,"ScoreTotal":1522616,"ID":698143931,"Name":"Thresh","NumVillages":27,"Points":265021,"Rank":372,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698143931","BestRank":369,"BestRankAt":"2023-02-16T05:25:49.036488Z","MostPoints":265021,"MostPointsAt":"2023-02-16T05:25:56.278075Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:49.036488Z","LastActivityAt":"2023-02-16T05:25:56.278076Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":303,"ScoreAtt":913811,"RankDef":859,"ScoreDef":185139,"RankSup":221,"ScoreSup":814984,"RankTotal":420,"ScoreTotal":1913934,"ID":698147372,"Name":"hardkour","NumVillages":40,"Points":307284,"Rank":351,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698147372","BestRank":349,"BestRankAt":"2023-02-16T05:25:49.036489Z","MostPoints":317779,"MostPointsAt":"2023-02-16T05:25:49.036489Z","MostVillages":41,"MostVillagesAt":"2023-02-16T05:25:49.036489Z","LastActivityAt":"2023-02-16T05:25:49.036489Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":548,"ScoreAtt":285927,"RankDef":206,"ScoreDef":1844189,"RankSup":803,"ScoreSup":24237,"RankTotal":389,"ScoreTotal":2154353,"ID":698147969,"Name":"Wysypisko Ć»ycia","NumVillages":1,"Points":115,"Rank":2435,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698147969","BestRank":2435,"BestRankAt":"2023-02-16T05:25:56.278076Z","MostPoints":115,"MostPointsAt":"2023-02-16T05:25:56.278076Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036489Z","LastActivityAt":"2023-02-16T05:25:56.278077Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1292,"ScoreDef":58359,"RankSup":0,"ScoreSup":0,"RankTotal":1561,"ScoreTotal":58359,"ID":698151302,"Name":"tomaszek74","NumVillages":1,"Points":2166,"Rank":1623,"TribeID":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698151302","BestRank":1623,"BestRankAt":"2023-02-16T05:25:56.278077Z","MostPoints":2166,"MostPointsAt":"2023-02-16T05:25:56.278077Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03649Z","LastActivityAt":"2023-02-16T05:25:56.278077Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":8,"ScoreAtt":14236876,"RankDef":11,"ScoreDef":20341891,"RankSup":1,"ScoreSup":29904374,"RankTotal":2,"ScoreTotal":64483141,"ID":698152377,"Name":"DefinitelyRlyTheMackobl","NumVillages":892,"Points":7560082,"Rank":1,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698152377","BestRank":1,"BestRankAt":"2023-02-16T05:25:49.03649Z","MostPoints":7560082,"MostPointsAt":"2023-02-16T05:25:56.278078Z","MostVillages":892,"MostVillagesAt":"2023-02-16T05:25:56.278078Z","LastActivityAt":"2023-02-16T05:25:56.278078Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":833,"ScoreAtt":69650,"RankDef":1770,"ScoreDef":13887,"RankSup":1114,"ScoreSup":1542,"RankTotal":1444,"ScoreTotal":85079,"ID":698152498,"Name":"Murano","NumVillages":1,"Points":2502,"Rank":1576,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698152498","BestRank":1576,"BestRankAt":"2023-02-16T05:25:56.278078Z","MostPoints":2502,"MostPointsAt":"2023-02-16T05:25:56.278078Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036491Z","LastActivityAt":"2023-02-16T05:25:56.278078Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":125,"ScoreAtt":2425909,"RankDef":401,"ScoreDef":748433,"RankSup":130,"ScoreSup":1643215,"RankTotal":196,"ScoreTotal":4817557,"ID":698160606,"Name":"denq","NumVillages":157,"Points":1254335,"Rank":100,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698160606","BestRank":100,"BestRankAt":"2023-02-16T05:25:56.278079Z","MostPoints":1254335,"MostPointsAt":"2023-02-16T05:25:56.278079Z","MostVillages":157,"MostVillagesAt":"2023-02-16T05:25:49.036492Z","LastActivityAt":"2023-02-16T05:25:56.278079Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698162153,"Name":"Lord Magik77","NumVillages":1,"Points":75,"Rank":2491,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698162153","BestRank":2491,"BestRankAt":"2023-02-16T05:25:56.278079Z","MostPoints":75,"MostPointsAt":"2023-02-16T05:25:49.036492Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036492Z","LastActivityAt":"2023-02-16T05:25:49.036492Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1345,"ScoreAtt":5304,"RankDef":228,"ScoreDef":1674338,"RankSup":894,"ScoreSup":11992,"RankTotal":462,"ScoreTotal":1691634,"ID":698162312,"Name":"delta6583","NumVillages":1,"Points":449,"Rank":2040,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698162312","BestRank":2040,"BestRankAt":"2023-02-16T05:25:56.27808Z","MostPoints":449,"MostPointsAt":"2023-02-16T05:25:56.27808Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036493Z","LastActivityAt":"2023-02-16T05:25:56.27808Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1659,"ScoreAtt":744,"RankDef":1978,"ScoreDef":5365,"RankSup":0,"ScoreSup":0,"RankTotal":2082,"ScoreTotal":6109,"ID":698162357,"Name":"SirCzoper","NumVillages":1,"Points":1974,"Rank":1659,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698162357","BestRank":1659,"BestRankAt":"2023-02-16T05:25:56.27808Z","MostPoints":1974,"MostPointsAt":"2023-02-16T05:25:49.036493Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036493Z","LastActivityAt":"2023-02-16T05:25:49.036493Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":714,"ScoreAtt":117907,"RankDef":547,"ScoreDef":448815,"RankSup":490,"ScoreSup":181253,"RankTotal":704,"ScoreTotal":747975,"ID":698167138,"Name":"borysdragosani","NumVillages":24,"Points":61787,"Rank":648,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698167138","BestRank":648,"BestRankAt":"2023-02-16T05:25:56.278081Z","MostPoints":61787,"MostPointsAt":"2023-02-16T05:25:56.278081Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.036494Z","LastActivityAt":"2023-02-16T05:25:56.278081Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1760,"ScoreAtt":280,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2365,"ScoreTotal":280,"ID":698167153,"Name":"ok3m","NumVillages":1,"Points":1179,"Rank":1794,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698167153","BestRank":1794,"BestRankAt":"2023-02-16T05:25:56.278081Z","MostPoints":1179,"MostPointsAt":"2023-02-16T05:25:56.278081Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036494Z","LastActivityAt":"2023-02-16T05:25:56.278081Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.036999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698167413,"Name":"PrzechyƂy i przechyƂy...","NumVillages":1,"Points":26,"Rank":2657,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698167413","BestRank":2657,"BestRankAt":"2023-02-16T05:25:56.278082Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036495Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036495Z","LastActivityAt":"2023-02-16T05:25:49.036495Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1631,"ScoreAtt":910,"RankDef":930,"ScoreDef":151990,"RankSup":1306,"ScoreSup":20,"RankTotal":1241,"ScoreTotal":152920,"ID":698169715,"Name":"misiekmaƂy","NumVillages":1,"Points":3437,"Rank":1463,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698169715","BestRank":1463,"BestRankAt":"2023-02-16T05:25:56.278082Z","MostPoints":3437,"MostPointsAt":"2023-02-16T05:25:49.036495Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036495Z","LastActivityAt":"2023-02-16T05:25:49.036496Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1263,"ScoreAtt":7413,"RankDef":532,"ScoreDef":477951,"RankSup":684,"ScoreSup":56228,"RankTotal":811,"ScoreTotal":541592,"ID":698171150,"Name":"DRAGONMIR","NumVillages":1,"Points":1400,"Rank":1756,"TribeID":1757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698171150","BestRank":1756,"BestRankAt":"2023-02-16T05:25:56.278083Z","MostPoints":1400,"MostPointsAt":"2023-02-16T05:25:56.278083Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036496Z","LastActivityAt":"2023-02-16T05:25:56.278083Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":788,"ScoreAtt":84895,"RankDef":272,"ScoreDef":1343037,"RankSup":0,"ScoreSup":0,"RankTotal":511,"ScoreTotal":1427932,"ID":698178312,"Name":"mygos","NumVillages":13,"Points":37444,"Rank":759,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698178312","BestRank":756,"BestRankAt":"2023-02-16T05:25:49.036496Z","MostPoints":37444,"MostPointsAt":"2023-02-16T05:25:49.036497Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.036497Z","LastActivityAt":"2023-02-16T05:25:49.036497Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1182,"ScoreAtt":11437,"RankDef":2262,"ScoreDef":416,"RankSup":0,"ScoreSup":0,"RankTotal":1962,"ScoreTotal":11853,"ID":698182935,"Name":"xxShiva18xx","NumVillages":2,"Points":10243,"Rank":1076,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698182935","BestRank":1076,"BestRankAt":"2023-02-16T05:25:56.278084Z","MostPoints":10243,"MostPointsAt":"2023-02-16T05:25:56.278084Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036497Z","LastActivityAt":"2023-02-16T05:25:56.278084Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1802,"ScoreAtt":174,"RankDef":1238,"ScoreDef":65726,"RankSup":1104,"ScoreSup":1686,"RankTotal":1509,"ScoreTotal":67586,"ID":698187023,"Name":"dzbanek54321","NumVillages":1,"Points":4472,"Rank":1363,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698187023","BestRank":1363,"BestRankAt":"2023-02-16T05:25:56.278084Z","MostPoints":4472,"MostPointsAt":"2023-02-16T05:25:49.036498Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036498Z","LastActivityAt":"2023-02-16T05:25:49.036498Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1805,"ScoreDef":11745,"RankSup":0,"ScoreSup":0,"RankTotal":1963,"ScoreTotal":11745,"ID":698190039,"Name":"mirmyn","NumVillages":1,"Points":1385,"Rank":1758,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698190039","BestRank":1758,"BestRankAt":"2023-02-16T05:25:56.278085Z","MostPoints":1385,"MostPointsAt":"2023-02-16T05:25:56.278085Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036498Z","LastActivityAt":"2023-02-16T05:25:56.278085Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":642,"ScoreAtt":165097,"RankDef":1405,"ScoreDef":42454,"RankSup":562,"ScoreSup":123607,"RankTotal":975,"ScoreTotal":331158,"ID":698191218,"Name":"SeexyPapi","NumVillages":409,"Points":3167904,"Rank":16,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698191218","BestRank":15,"BestRankAt":"2023-02-16T05:25:49.036499Z","MostPoints":3167904,"MostPointsAt":"2023-02-16T05:25:56.278085Z","MostVillages":409,"MostVillagesAt":"2023-02-16T05:25:49.036499Z","LastActivityAt":"2023-02-16T05:25:56.278085Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":980,"ScoreAtt":33407,"RankDef":1285,"ScoreDef":58822,"RankSup":0,"ScoreSup":0,"RankTotal":1419,"ScoreTotal":92229,"ID":698200480,"Name":"Ida Madame","NumVillages":20,"Points":113879,"Rank":514,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698200480","BestRank":514,"BestRankAt":"2023-02-16T05:25:49.036499Z","MostPoints":113879,"MostPointsAt":"2023-02-16T05:25:56.278086Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:49.036499Z","LastActivityAt":"2023-02-16T05:25:56.278086Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1897,"ScoreDef":7836,"RankSup":0,"ScoreSup":0,"RankTotal":2040,"ScoreTotal":7836,"ID":698202162,"Name":"Volf102","NumVillages":1,"Points":138,"Rank":2377,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698202162","BestRank":2377,"BestRankAt":"2023-02-16T05:25:56.278086Z","MostPoints":138,"MostPointsAt":"2023-02-16T05:25:49.0365Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.0365Z","LastActivityAt":"2023-02-16T05:25:49.0365Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":526,"ScoreAtt":313978,"RankDef":1655,"ScoreDef":21668,"RankSup":0,"ScoreSup":0,"RankTotal":970,"ScoreTotal":335646,"ID":698203538,"Name":"Stadar","NumVillages":1,"Points":26,"Rank":2658,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698203538","BestRank":2658,"BestRankAt":"2023-02-16T05:25:56.278087Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.0365Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.0365Z","LastActivityAt":"2023-02-16T05:25:49.0365Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698206922,"Name":"Sir Alano1","NumVillages":1,"Points":86,"Rank":2507,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698206922","BestRank":2507,"BestRankAt":"2023-02-16T05:25:49.036501Z","MostPoints":86,"MostPointsAt":"2023-02-16T05:25:49.036501Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036501Z","LastActivityAt":"2023-02-16T05:25:49.036501Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03702Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1025,"ScoreAtt":26619,"RankDef":262,"ScoreDef":1422231,"RankSup":0,"ScoreSup":0,"RankTotal":507,"ScoreTotal":1448850,"ID":698207545,"Name":"Lord Ɓoszo","NumVillages":1,"Points":696,"Rank":1931,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698207545","BestRank":1931,"BestRankAt":"2023-02-16T05:25:56.278087Z","MostPoints":696,"MostPointsAt":"2023-02-16T05:25:49.036501Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036501Z","LastActivityAt":"2023-02-16T05:25:49.036502Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1400,"ScoreAtt":4090,"RankDef":1215,"ScoreDef":69547,"RankSup":0,"ScoreSup":0,"RankTotal":1475,"ScoreTotal":73637,"ID":698212272,"Name":"Szyderczy promil","NumVillages":0,"Points":0,"Rank":2927,"TribeID":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698212272","BestRank":2927,"BestRankAt":"2023-02-16T05:25:56.278088Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036502Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036502Z","LastActivityAt":"2023-02-16T05:25:49.036502Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":472,"ScoreAtt":409575,"RankDef":1328,"ScoreDef":53855,"RankSup":18,"ScoreSup":5528999,"RankTotal":154,"ScoreTotal":5992429,"ID":698215322,"Name":"MeRHeT","NumVillages":131,"Points":1030972,"Rank":141,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698215322","BestRank":141,"BestRankAt":"2023-02-16T05:25:49.036503Z","MostPoints":1030972,"MostPointsAt":"2023-02-16T05:25:56.278088Z","MostVillages":131,"MostVillagesAt":"2023-02-16T05:25:49.036503Z","LastActivityAt":"2023-02-16T05:25:56.278088Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698226224,"Name":"playbackp","NumVillages":1,"Points":26,"Rank":2659,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698226224","BestRank":2659,"BestRankAt":"2023-02-16T05:25:56.278089Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036504Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036504Z","LastActivityAt":"2023-02-16T05:25:49.036504Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037028Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":109,"ScoreAtt":2845250,"RankDef":394,"ScoreDef":761071,"RankSup":21,"ScoreSup":5056785,"RankTotal":90,"ScoreTotal":8663106,"ID":698231772,"Name":"Psykoo","NumVillages":311,"Points":2532132,"Rank":24,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698231772","BestRank":24,"BestRankAt":"2023-02-16T05:25:56.278089Z","MostPoints":2532132,"MostPointsAt":"2023-02-16T05:25:56.278089Z","MostVillages":311,"MostVillagesAt":"2023-02-16T05:25:49.036504Z","LastActivityAt":"2023-02-16T05:25:56.278089Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":721,"ScoreAtt":114107,"RankDef":1465,"ScoreDef":36632,"RankSup":570,"ScoreSup":118084,"RankTotal":1035,"ScoreTotal":268823,"ID":698232227,"Name":"Vendea","NumVillages":46,"Points":386180,"Rank":306,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698232227","BestRank":306,"BestRankAt":"2023-02-16T05:25:49.036505Z","MostPoints":386180,"MostPointsAt":"2023-02-16T05:25:49.036505Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:49.036505Z","LastActivityAt":"2023-02-16T05:25:49.036505Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1423,"ScoreAtt":3573,"RankDef":1767,"ScoreDef":13959,"RankSup":0,"ScoreSup":0,"RankTotal":1890,"ScoreTotal":17532,"ID":698234770,"Name":"zolw222","NumVillages":7,"Points":61681,"Rank":649,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698234770","BestRank":649,"BestRankAt":"2023-02-16T05:25:56.27809Z","MostPoints":61681,"MostPointsAt":"2023-02-16T05:25:56.27809Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.036505Z","LastActivityAt":"2023-02-16T05:25:56.27809Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":75,"ScoreAtt":4087712,"RankDef":381,"ScoreDef":794181,"RankSup":419,"ScoreSup":280089,"RankTotal":180,"ScoreTotal":5161982,"ID":698239813,"Name":"Tottal Score","NumVillages":101,"Points":997050,"Rank":148,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698239813","BestRank":147,"BestRankAt":"2023-02-16T05:25:49.036506Z","MostPoints":997050,"MostPointsAt":"2023-02-16T05:25:56.278091Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:49.036506Z","LastActivityAt":"2023-02-16T05:25:56.278091Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":614,"ScoreAtt":192411,"RankDef":389,"ScoreDef":770662,"RankSup":279,"ScoreSup":577489,"RankTotal":487,"ScoreTotal":1540562,"ID":698241117,"Name":"LordGeorg","NumVillages":8,"Points":51493,"Rank":685,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698241117","BestRank":681,"BestRankAt":"2023-02-16T05:25:49.036506Z","MostPoints":51493,"MostPointsAt":"2023-02-16T05:25:49.036506Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.036506Z","LastActivityAt":"2023-02-16T05:25:49.036507Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698248308,"Name":"Mareaa","NumVillages":1,"Points":1328,"Rank":1768,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698248308","BestRank":1768,"BestRankAt":"2023-02-16T05:25:56.278092Z","MostPoints":1328,"MostPointsAt":"2023-02-16T05:25:56.278092Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036507Z","LastActivityAt":"2023-02-16T05:25:56.278092Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037038Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1193,"ScoreAtt":10755,"RankDef":459,"ScoreDef":597234,"RankSup":0,"ScoreSup":0,"RankTotal":775,"ScoreTotal":607989,"ID":698258283,"Name":"Gran Torino","NumVillages":3,"Points":20086,"Rank":917,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698258283","BestRank":916,"BestRankAt":"2023-02-16T05:25:49.036507Z","MostPoints":20086,"MostPointsAt":"2023-02-16T05:25:56.278092Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036507Z","LastActivityAt":"2023-02-16T05:25:56.278092Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037042Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1414,"ScoreAtt":3749,"RankDef":2349,"ScoreDef":49,"RankSup":0,"ScoreSup":0,"RankTotal":2162,"ScoreTotal":3798,"ID":698262808,"Name":"Akantos","NumVillages":1,"Points":50,"Rank":2552,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698262808","BestRank":2552,"BestRankAt":"2023-02-16T05:25:56.278093Z","MostPoints":50,"MostPointsAt":"2023-02-16T05:25:49.036508Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036508Z","LastActivityAt":"2023-02-16T05:25:49.036508Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037043Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1966,"ScoreAtt":7,"RankDef":1505,"ScoreDef":32981,"RankSup":1177,"ScoreSup":576,"RankTotal":1737,"ScoreTotal":33564,"ID":698264828,"Name":"Elener","NumVillages":1,"Points":2799,"Rank":1546,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698264828","BestRank":1546,"BestRankAt":"2023-02-16T05:25:56.278093Z","MostPoints":2799,"MostPointsAt":"2023-02-16T05:25:49.036509Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036509Z","LastActivityAt":"2023-02-16T05:25:49.036509Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037045Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1502,"ScoreAtt":2252,"RankDef":400,"ScoreDef":748974,"RankSup":1362,"ScoreSup":4,"RankTotal":701,"ScoreTotal":751230,"ID":698273555,"Name":"Sir Paolo75","NumVillages":0,"Points":0,"Rank":2928,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698273555","BestRank":2928,"BestRankAt":"2023-02-16T05:25:56.278094Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036509Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036509Z","LastActivityAt":"2023-02-16T05:25:49.036509Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037047Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1469,"ScoreAtt":2749,"RankDef":1033,"ScoreDef":115205,"RankSup":876,"ScoreSup":14134,"RankTotal":1289,"ScoreTotal":132088,"ID":698278542,"Name":"Lord Znienacka","NumVillages":5,"Points":20388,"Rank":912,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698278542","BestRank":912,"BestRankAt":"2023-02-16T05:25:56.278094Z","MostPoints":20388,"MostPointsAt":"2023-02-16T05:25:56.278094Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.03651Z","LastActivityAt":"2023-02-16T05:25:56.278094Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037049Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1383,"ScoreAtt":4455,"RankDef":927,"ScoreDef":154136,"RankSup":0,"ScoreSup":0,"RankTotal":1229,"ScoreTotal":158591,"ID":698279195,"Name":"CzerowyDziadek","NumVillages":1,"Points":1595,"Rank":1718,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698279195","BestRank":1718,"BestRankAt":"2023-02-16T05:25:56.278095Z","MostPoints":1595,"MostPointsAt":"2023-02-16T05:25:49.03651Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03651Z","LastActivityAt":"2023-02-16T05:25:49.03651Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698281635,"Name":"Genotypek","NumVillages":1,"Points":132,"Rank":2392,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698281635","BestRank":2392,"BestRankAt":"2023-02-16T05:25:56.278095Z","MostPoints":132,"MostPointsAt":"2023-02-16T05:25:49.036511Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036511Z","LastActivityAt":"2023-02-16T05:25:49.036511Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1849,"ScoreDef":9810,"RankSup":0,"ScoreSup":0,"RankTotal":1995,"ScoreTotal":9810,"ID":698281649,"Name":"cycedoziemi","NumVillages":1,"Points":8500,"Rank":1133,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698281649","BestRank":1133,"BestRankAt":"2023-02-16T05:25:56.278096Z","MostPoints":8500,"MostPointsAt":"2023-02-16T05:25:49.036511Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036511Z","LastActivityAt":"2023-02-16T05:25:49.036511Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698282328,"Name":"radek1234c","NumVillages":1,"Points":89,"Rank":2476,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698282328","BestRank":2476,"BestRankAt":"2023-02-16T05:25:56.278096Z","MostPoints":89,"MostPointsAt":"2023-02-16T05:25:56.278096Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.278096Z","LastActivityAt":"2023-02-16T05:25:56.278097Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.27846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":913,"ScoreAtt":47917,"RankDef":1094,"ScoreDef":94869,"RankSup":34,"ScoreSup":4541590,"RankTotal":202,"ScoreTotal":4684376,"ID":698285444,"Name":"Maniaq1","NumVillages":155,"Points":1626866,"Rank":70,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698285444","BestRank":69,"BestRankAt":"2023-02-16T05:25:49.036512Z","MostPoints":1626866,"MostPointsAt":"2023-02-16T05:25:56.278097Z","MostVillages":155,"MostVillagesAt":"2023-02-16T05:25:49.036512Z","LastActivityAt":"2023-02-16T05:25:56.278097Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037054Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":577,"ScoreAtt":241742,"RankDef":265,"ScoreDef":1414185,"RankSup":1137,"ScoreSup":1107,"RankTotal":467,"ScoreTotal":1657034,"ID":698290319,"Name":"homektyjek6","NumVillages":9,"Points":84521,"Rank":574,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698290319","BestRank":574,"BestRankAt":"2023-02-16T05:25:56.278097Z","MostPoints":84521,"MostPointsAt":"2023-02-16T05:25:49.036513Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036512Z","LastActivityAt":"2023-02-16T05:25:49.036513Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":46,"ScoreAtt":5140668,"RankDef":252,"ScoreDef":1491930,"RankSup":280,"ScoreSup":576974,"RankTotal":120,"ScoreTotal":7209572,"ID":698290577,"Name":"Mercel","NumVillages":193,"Points":1324013,"Rank":95,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698290577","BestRank":94,"BestRankAt":"2023-02-16T05:25:49.036513Z","MostPoints":1324013,"MostPointsAt":"2023-02-16T05:25:56.278098Z","MostVillages":193,"MostVillagesAt":"2023-02-16T05:25:56.278098Z","LastActivityAt":"2023-02-16T05:25:56.278098Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":869,"ScoreAtt":57473,"RankDef":340,"ScoreDef":920772,"RankSup":575,"ScoreSup":115703,"RankTotal":593,"ScoreTotal":1093948,"ID":698295651,"Name":"klez","NumVillages":22,"Points":142233,"Rank":476,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698295651","BestRank":476,"BestRankAt":"2023-02-16T05:25:56.278098Z","MostPoints":142233,"MostPointsAt":"2023-02-16T05:25:56.278099Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.036514Z","LastActivityAt":"2023-02-16T05:25:56.278099Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037061Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698298333,"Name":"Timb3r","NumVillages":1,"Points":26,"Rank":2660,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698298333","BestRank":2660,"BestRankAt":"2023-02-16T05:25:56.278099Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036514Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036514Z","LastActivityAt":"2023-02-16T05:25:49.036514Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037063Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1660,"ScoreAtt":738,"RankDef":1082,"ScoreDef":98671,"RankSup":0,"ScoreSup":0,"RankTotal":1391,"ScoreTotal":99409,"ID":698299678,"Name":"KakaowyBudyn","NumVillages":0,"Points":0,"Rank":2929,"TribeID":1609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698299678","BestRank":2929,"BestRankAt":"2023-02-16T05:25:56.278099Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036515Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036515Z","LastActivityAt":"2023-02-16T05:25:49.036515Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037065Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":219,"ScoreAtt":1346898,"RankDef":1850,"ScoreDef":9770,"RankSup":872,"ScoreSup":14214,"RankTotal":525,"ScoreTotal":1370882,"ID":698305474,"Name":"SajmonNijoo","NumVillages":46,"Points":400897,"Rank":302,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698305474","BestRank":302,"BestRankAt":"2023-02-16T05:25:56.2781Z","MostPoints":400897,"MostPointsAt":"2023-02-16T05:25:56.2781Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:49.036515Z","LastActivityAt":"2023-02-16T05:25:56.2781Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037066Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2191,"ScoreDef":1108,"RankSup":0,"ScoreSup":0,"RankTotal":2285,"ScoreTotal":1108,"ID":698312347,"Name":"Gienioslawek","NumVillages":1,"Points":3064,"Rank":1507,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698312347","BestRank":1507,"BestRankAt":"2023-02-16T05:25:56.2781Z","MostPoints":3064,"MostPointsAt":"2023-02-16T05:25:49.036516Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036516Z","LastActivityAt":"2023-02-16T05:25:49.036516Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1090,"ScoreAtt":19307,"RankDef":1473,"ScoreDef":36238,"RankSup":0,"ScoreSup":0,"RankTotal":1573,"ScoreTotal":55545,"ID":698315881,"Name":"Lord dankos","NumVillages":1,"Points":2905,"Rank":1524,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698315881","BestRank":1254,"BestRankAt":"2023-02-16T05:25:49.036516Z","MostPoints":6338,"MostPointsAt":"2023-02-16T05:25:49.036516Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036516Z","LastActivityAt":"2023-02-16T05:25:49.036516Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2469,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2546,"ScoreTotal":4,"ID":698321130,"Name":"liliput81","NumVillages":1,"Points":1665,"Rank":1707,"TribeID":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698321130","BestRank":1707,"BestRankAt":"2023-02-16T05:25:56.278101Z","MostPoints":1665,"MostPointsAt":"2023-02-16T05:25:49.036517Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036517Z","LastActivityAt":"2023-02-16T05:25:49.036517Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037071Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1831,"ScoreAtt":134,"RankDef":903,"ScoreDef":166785,"RankSup":0,"ScoreSup":0,"RankTotal":1215,"ScoreTotal":166919,"ID":698324343,"Name":"Kurji","NumVillages":1,"Points":7599,"Rank":1175,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698324343","BestRank":1175,"BestRankAt":"2023-02-16T05:25:56.278102Z","MostPoints":7599,"MostPointsAt":"2023-02-16T05:25:56.278102Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036517Z","LastActivityAt":"2023-02-16T05:25:56.278102Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1405,"ScoreAtt":3986,"RankDef":722,"ScoreDef":263066,"RankSup":0,"ScoreSup":0,"RankTotal":1038,"ScoreTotal":267052,"ID":698330221,"Name":"ninja92","NumVillages":0,"Points":0,"Rank":2930,"TribeID":336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698330221","BestRank":2930,"BestRankAt":"2023-02-16T05:25:56.278102Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036518Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036518Z","LastActivityAt":"2023-02-16T05:25:49.036518Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037076Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1937,"ScoreAtt":20,"RankDef":2270,"ScoreDef":351,"RankSup":0,"ScoreSup":0,"RankTotal":2350,"ScoreTotal":371,"ID":698331388,"Name":"ZYXW","NumVillages":1,"Points":3759,"Rank":1423,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698331388","BestRank":1423,"BestRankAt":"2023-02-16T05:25:56.278103Z","MostPoints":3759,"MostPointsAt":"2023-02-16T05:25:49.036519Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036518Z","LastActivityAt":"2023-02-16T05:25:49.036519Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037077Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":512,"ScoreAtt":336873,"RankDef":276,"ScoreDef":1319774,"RankSup":613,"ScoreSup":91766,"RankTotal":456,"ScoreTotal":1748413,"ID":698338524,"Name":"Nice","NumVillages":9,"Points":49140,"Rank":699,"TribeID":1683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698338524","BestRank":699,"BestRankAt":"2023-02-16T05:25:49.036519Z","MostPoints":49140,"MostPointsAt":"2023-02-16T05:25:56.278103Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036519Z","LastActivityAt":"2023-02-16T05:25:56.278104Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":459,"ScoreAtt":432760,"RankDef":719,"ScoreDef":263672,"RankSup":796,"ScoreSup":25012,"RankTotal":717,"ScoreTotal":721444,"ID":698342159,"Name":"Blaszczu11","NumVillages":42,"Points":356196,"Rank":321,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698342159","BestRank":321,"BestRankAt":"2023-02-16T05:25:56.278104Z","MostPoints":356196,"MostPointsAt":"2023-02-16T05:25:56.278104Z","MostVillages":42,"MostVillagesAt":"2023-02-16T05:25:49.03652Z","LastActivityAt":"2023-02-16T05:25:56.278104Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1428,"ScoreAtt":3414,"RankDef":582,"ScoreDef":396853,"RankSup":0,"ScoreSup":0,"RankTotal":917,"ScoreTotal":400267,"ID":698345556,"Name":"Wiezowiec","NumVillages":13,"Points":90255,"Rank":565,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698345556","BestRank":565,"BestRankAt":"2023-02-16T05:25:56.278104Z","MostPoints":90255,"MostPointsAt":"2023-02-16T05:25:56.278105Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:56.278105Z","LastActivityAt":"2023-02-16T05:25:56.278105Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1401,"ScoreAtt":4063,"RankDef":1979,"ScoreDef":5349,"RankSup":0,"ScoreSup":0,"RankTotal":2003,"ScoreTotal":9412,"ID":698346318,"Name":"ByXon","NumVillages":7,"Points":54247,"Rank":672,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698346318","BestRank":672,"BestRankAt":"2023-02-16T05:25:56.278105Z","MostPoints":54247,"MostPointsAt":"2023-02-16T05:25:56.278105Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.036521Z","LastActivityAt":"2023-02-16T05:25:56.278105Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037083Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":826,"ScoreDef":200307,"RankSup":0,"ScoreSup":0,"RankTotal":1137,"ScoreTotal":200307,"ID":698346954,"Name":"marek46aa","NumVillages":1,"Points":490,"Rank":2017,"TribeID":13,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698346954","BestRank":2017,"BestRankAt":"2023-02-16T05:25:56.278106Z","MostPoints":490,"MostPointsAt":"2023-02-16T05:25:56.278106Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036521Z","LastActivityAt":"2023-02-16T05:25:56.278106Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":618,"ScoreAtt":191761,"RankDef":679,"ScoreDef":291745,"RankSup":0,"ScoreSup":0,"RankTotal":850,"ScoreTotal":483506,"ID":698349125,"Name":"KDK-","NumVillages":9,"Points":47031,"Rank":705,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698349125","BestRank":705,"BestRankAt":"2023-02-16T05:25:49.036522Z","MostPoints":47031,"MostPointsAt":"2023-02-16T05:25:49.036522Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036522Z","LastActivityAt":"2023-02-16T05:25:49.036522Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037086Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":407,"ScoreAtt":566660,"RankDef":296,"ScoreDef":1212348,"RankSup":60,"ScoreSup":3058606,"RankTotal":194,"ScoreTotal":4837614,"ID":698350371,"Name":"JuanDe","NumVillages":114,"Points":898318,"Rank":163,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698350371","BestRank":163,"BestRankAt":"2023-02-16T05:25:56.278107Z","MostPoints":898318,"MostPointsAt":"2023-02-16T05:25:56.278107Z","MostVillages":114,"MostVillagesAt":"2023-02-16T05:25:49.036522Z","LastActivityAt":"2023-02-16T05:25:56.278107Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":424,"ScoreAtt":507127,"RankDef":287,"ScoreDef":1243536,"RankSup":140,"ScoreSup":1560531,"RankTotal":266,"ScoreTotal":3311194,"ID":698353083,"Name":"Mateuszekbezuszek","NumVillages":64,"Points":424286,"Rank":295,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698353083","BestRank":295,"BestRankAt":"2023-02-16T05:25:56.278107Z","MostPoints":424286,"MostPointsAt":"2023-02-16T05:25:56.278107Z","MostVillages":64,"MostVillagesAt":"2023-02-16T05:25:56.278107Z","LastActivityAt":"2023-02-16T05:25:56.278107Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037091Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1389,"ScoreAtt":4261,"RankDef":802,"ScoreDef":213061,"RankSup":0,"ScoreSup":0,"RankTotal":1113,"ScoreTotal":217322,"ID":698356304,"Name":"Sir Zdzich","NumVillages":10,"Points":38560,"Rank":749,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698356304","BestRank":749,"BestRankAt":"2023-02-16T05:25:56.278108Z","MostPoints":38560,"MostPointsAt":"2023-02-16T05:25:56.278108Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.036523Z","LastActivityAt":"2023-02-16T05:25:56.278108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":39,"ScoreAtt":5979433,"RankDef":111,"ScoreDef":3348167,"RankSup":57,"ScoreSup":3121258,"RankTotal":62,"ScoreTotal":12448858,"ID":698361257,"Name":"grolas","NumVillages":239,"Points":2167773,"Rank":42,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698361257","BestRank":42,"BestRankAt":"2023-02-16T05:25:56.278108Z","MostPoints":2167773,"MostPointsAt":"2023-02-16T05:25:56.278108Z","MostVillages":239,"MostVillagesAt":"2023-02-16T05:25:56.278108Z","LastActivityAt":"2023-02-16T05:25:56.278109Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037094Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1398,"ScoreDef":43927,"RankSup":0,"ScoreSup":0,"RankTotal":1647,"ScoreTotal":43927,"ID":698363063,"Name":"YenSu","NumVillages":1,"Points":1822,"Rank":1686,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698363063","BestRank":1686,"BestRankAt":"2023-02-16T05:25:56.278109Z","MostPoints":1822,"MostPointsAt":"2023-02-16T05:25:56.278109Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036524Z","LastActivityAt":"2023-02-16T05:25:56.278109Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037095Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":166,"ScoreAtt":1924652,"RankDef":1134,"ScoreDef":86751,"RankSup":289,"ScoreSup":565279,"RankTotal":340,"ScoreTotal":2576682,"ID":698364331,"Name":"wdamianse","NumVillages":93,"Points":728095,"Rank":197,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698364331","BestRank":197,"BestRankAt":"2023-02-16T05:25:56.278109Z","MostPoints":728095,"MostPointsAt":"2023-02-16T05:25:56.27811Z","MostVillages":93,"MostVillagesAt":"2023-02-16T05:25:49.036525Z","LastActivityAt":"2023-02-16T05:25:56.27811Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037097Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":176,"ScoreAtt":1809143,"RankDef":1212,"ScoreDef":70108,"RankSup":0,"ScoreSup":0,"RankTotal":426,"ScoreTotal":1879251,"ID":698365960,"Name":"MrStradivarius","NumVillages":162,"Points":1386009,"Rank":86,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698365960","BestRank":83,"BestRankAt":"2023-02-16T05:25:49.036525Z","MostPoints":1401852,"MostPointsAt":"2023-02-16T05:25:49.036526Z","MostVillages":165,"MostVillagesAt":"2023-02-16T05:25:49.036526Z","LastActivityAt":"2023-02-16T05:25:56.27811Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037098Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2083,"ScoreDef":2802,"RankSup":0,"ScoreSup":0,"RankTotal":2201,"ScoreTotal":2802,"ID":698368493,"Name":"Kaszyce131","NumVillages":3,"Points":8542,"Rank":1130,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698368493","BestRank":1130,"BestRankAt":"2023-02-16T05:25:56.278111Z","MostPoints":8542,"MostPointsAt":"2023-02-16T05:25:56.278111Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036526Z","LastActivityAt":"2023-02-16T05:25:56.278111Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1511,"ScoreAtt":2173,"RankDef":696,"ScoreDef":280783,"RankSup":1286,"ScoreSup":36,"RankTotal":1021,"ScoreTotal":282992,"ID":698373265,"Name":"Imperator ciemnoƛci","NumVillages":0,"Points":0,"Rank":2931,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698373265","BestRank":2931,"BestRankAt":"2023-02-16T05:25:56.278111Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036527Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036527Z","LastActivityAt":"2023-02-16T05:25:49.036527Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037203Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698379979,"Name":"zewlakow6","NumVillages":1,"Points":26,"Rank":2661,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698379979","BestRank":2661,"BestRankAt":"2023-02-16T05:25:56.278112Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036527Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036527Z","LastActivityAt":"2023-02-16T05:25:49.036527Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037205Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698380048,"Name":"lordlewy10","NumVillages":1,"Points":26,"Rank":2662,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698380048","BestRank":2662,"BestRankAt":"2023-02-16T05:25:56.278112Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036528Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036528Z","LastActivityAt":"2023-02-16T05:25:49.036528Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037207Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1859,"ScoreAtt":91,"RankDef":1815,"ScoreDef":11272,"RankSup":0,"ScoreSup":0,"RankTotal":1975,"ScoreTotal":11363,"ID":698383417,"Name":"aver121","NumVillages":1,"Points":8694,"Rank":1125,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698383417","BestRank":1125,"BestRankAt":"2023-02-16T05:25:56.278113Z","MostPoints":8694,"MostPointsAt":"2023-02-16T05:25:49.036528Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036528Z","LastActivityAt":"2023-02-16T05:25:49.036528Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037208Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1736,"ScoreDef":16453,"RankSup":0,"ScoreSup":0,"RankTotal":1912,"ScoreTotal":16453,"ID":698384662,"Name":"jar-11","NumVillages":1,"Points":1446,"Rank":1749,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698384662","BestRank":1729,"BestRankAt":"2023-02-16T05:25:49.036529Z","MostPoints":1611,"MostPointsAt":"2023-02-16T05:25:49.036529Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036529Z","LastActivityAt":"2023-02-16T05:25:49.036529Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037209Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1714,"ScoreDef":17412,"RankSup":0,"ScoreSup":0,"RankTotal":1892,"ScoreTotal":17412,"ID":698384726,"Name":"marszalek-duck","NumVillages":1,"Points":295,"Rank":2159,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698384726","BestRank":2159,"BestRankAt":"2023-02-16T05:25:56.278113Z","MostPoints":295,"MostPointsAt":"2023-02-16T05:25:49.036529Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036529Z","LastActivityAt":"2023-02-16T05:25:49.03653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1449,"ScoreDef":38157,"RankSup":0,"ScoreSup":0,"RankTotal":1694,"ScoreTotal":38157,"ID":698385619,"Name":"mioduch","NumVillages":1,"Points":2663,"Rank":1557,"TribeID":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698385619","BestRank":1557,"BestRankAt":"2023-02-16T05:25:56.278114Z","MostPoints":2663,"MostPointsAt":"2023-02-16T05:25:49.036534Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036534Z","LastActivityAt":"2023-02-16T05:25:49.036534Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037211Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1601,"ScoreDef":25456,"RankSup":0,"ScoreSup":0,"RankTotal":1811,"ScoreTotal":25456,"ID":698388041,"Name":"Jestem Pogromca z TOPu","NumVillages":1,"Points":277,"Rank":2182,"TribeID":750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698388041","BestRank":2182,"BestRankAt":"2023-02-16T05:25:56.278114Z","MostPoints":277,"MostPointsAt":"2023-02-16T05:25:56.278115Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036535Z","LastActivityAt":"2023-02-16T05:25:56.278115Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037212Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":204,"ScoreAtt":1544526,"RankDef":1169,"ScoreDef":79195,"RankSup":405,"ScoreSup":311713,"RankTotal":417,"ScoreTotal":1935434,"ID":698388578,"Name":"JJJuriJJJ","NumVillages":167,"Points":1430218,"Rank":82,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698388578","BestRank":82,"BestRankAt":"2023-02-16T05:25:49.036535Z","MostPoints":1430218,"MostPointsAt":"2023-02-16T05:25:56.278115Z","MostVillages":167,"MostVillagesAt":"2023-02-16T05:25:49.036535Z","LastActivityAt":"2023-02-16T05:25:56.278115Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037213Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1973,"ScoreDef":5441,"RankSup":0,"ScoreSup":0,"RankTotal":2102,"ScoreTotal":5441,"ID":698403524,"Name":"kamillo220","NumVillages":1,"Points":26,"Rank":2663,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698403524","BestRank":2663,"BestRankAt":"2023-02-16T05:25:56.278115Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036536Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036536Z","LastActivityAt":"2023-02-16T05:25:49.036536Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037217Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698410946,"Name":"RicoTW","NumVillages":1,"Points":48,"Rank":2557,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698410946","BestRank":2557,"BestRankAt":"2023-02-16T05:25:56.278116Z","MostPoints":48,"MostPointsAt":"2023-02-16T05:25:49.036536Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036536Z","LastActivityAt":"2023-02-16T05:25:49.036536Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037218Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":141,"ScoreAtt":2205927,"RankDef":888,"ScoreDef":174220,"RankSup":902,"ScoreSup":11040,"RankTotal":359,"ScoreTotal":2391187,"ID":698416970,"Name":"zioms1","NumVillages":156,"Points":1085161,"Rank":131,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698416970","BestRank":131,"BestRankAt":"2023-02-16T05:25:56.278116Z","MostPoints":1085161,"MostPointsAt":"2023-02-16T05:25:56.278117Z","MostVillages":156,"MostVillagesAt":"2023-02-16T05:25:56.278116Z","LastActivityAt":"2023-02-16T05:25:56.278117Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037219Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":69,"ScoreAtt":4262388,"RankDef":945,"ScoreDef":147460,"RankSup":121,"ScoreSup":1841071,"RankTotal":144,"ScoreTotal":6250919,"ID":698420691,"Name":"Lord Lord Franek","NumVillages":240,"Points":2340547,"Rank":32,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698420691","BestRank":32,"BestRankAt":"2023-02-16T05:25:49.036537Z","MostPoints":2340547,"MostPointsAt":"2023-02-16T05:25:56.278117Z","MostVillages":240,"MostVillagesAt":"2023-02-16T05:25:56.278117Z","LastActivityAt":"2023-02-16T05:25:56.278117Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037221Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698431574,"Name":"mk2014","NumVillages":1,"Points":2216,"Rank":1614,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698431574","BestRank":1614,"BestRankAt":"2023-02-16T05:25:56.278118Z","MostPoints":2216,"MostPointsAt":"2023-02-16T05:25:56.278118Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036538Z","LastActivityAt":"2023-02-16T05:25:56.278118Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037222Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1416,"ScoreAtt":3648,"RankDef":363,"ScoreDef":836207,"RankSup":512,"ScoreSup":164062,"RankTotal":616,"ScoreTotal":1003917,"ID":698442418,"Name":"wolgler1234","NumVillages":2,"Points":14453,"Rank":1008,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698442418","BestRank":1008,"BestRankAt":"2023-02-16T05:25:56.278118Z","MostPoints":14453,"MostPointsAt":"2023-02-16T05:25:56.278118Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036538Z","LastActivityAt":"2023-02-16T05:25:56.278118Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037223Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698455203,"Name":"Mufferr","NumVillages":1,"Points":120,"Rank":2424,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698455203","BestRank":2424,"BestRankAt":"2023-02-16T05:25:56.278119Z","MostPoints":120,"MostPointsAt":"2023-02-16T05:25:49.036539Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036539Z","LastActivityAt":"2023-02-16T05:25:49.036539Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037225Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1306,"ScoreDef":56269,"RankSup":1277,"ScoreSup":46,"RankTotal":1568,"ScoreTotal":56315,"ID":698457392,"Name":"App1e","NumVillages":1,"Points":1413,"Rank":1754,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698457392","BestRank":1754,"BestRankAt":"2023-02-16T05:25:56.278119Z","MostPoints":1413,"MostPointsAt":"2023-02-16T05:25:49.03654Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03654Z","LastActivityAt":"2023-02-16T05:25:49.03654Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037226Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":631,"ScoreAtt":177843,"RankDef":99,"ScoreDef":3562096,"RankSup":298,"ScoreSup":535670,"RankTotal":220,"ScoreTotal":4275609,"ID":698462285,"Name":"Ć»ulioner","NumVillages":2,"Points":5084,"Rank":1312,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698462285","BestRank":1312,"BestRankAt":"2023-02-16T05:25:56.27812Z","MostPoints":5084,"MostPointsAt":"2023-02-16T05:25:56.27812Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.03654Z","LastActivityAt":"2023-02-16T05:25:56.27812Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037227Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698472522,"Name":"ladio","NumVillages":1,"Points":225,"Rank":2236,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698472522","BestRank":2236,"BestRankAt":"2023-02-16T05:25:56.27812Z","MostPoints":225,"MostPointsAt":"2023-02-16T05:25:49.036541Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036541Z","LastActivityAt":"2023-02-16T05:25:49.036541Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037229Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":647,"ScoreAtt":158341,"RankDef":357,"ScoreDef":860871,"RankSup":645,"ScoreSup":75321,"RankTotal":592,"ScoreTotal":1094533,"ID":698477883,"Name":"rufusix","NumVillages":1,"Points":2838,"Rank":1540,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698477883","BestRank":1540,"BestRankAt":"2023-02-16T05:25:56.278121Z","MostPoints":2838,"MostPointsAt":"2023-02-16T05:25:56.278121Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036541Z","LastActivityAt":"2023-02-16T05:25:56.278121Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037231Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1892,"ScoreAtt":46,"RankDef":1315,"ScoreDef":55429,"RankSup":1059,"ScoreSup":2638,"RankTotal":1562,"ScoreTotal":58113,"ID":698485268,"Name":"wabos","NumVillages":1,"Points":128,"Rank":2405,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698485268","BestRank":2405,"BestRankAt":"2023-02-16T05:25:56.278121Z","MostPoints":128,"MostPointsAt":"2023-02-16T05:25:49.036542Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036542Z","LastActivityAt":"2023-02-16T05:25:49.036542Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037232Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":702,"ScoreAtt":126152,"RankDef":578,"ScoreDef":403780,"RankSup":903,"ScoreSup":10911,"RankTotal":812,"ScoreTotal":540843,"ID":698486277,"Name":"dragonk6","NumVillages":1,"Points":196,"Rank":2282,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698486277","BestRank":2282,"BestRankAt":"2023-02-16T05:25:56.278122Z","MostPoints":196,"MostPointsAt":"2023-02-16T05:25:56.278122Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.278122Z","LastActivityAt":"2023-02-16T05:25:56.278122Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037233Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1919,"ScoreAtt":30,"RankDef":752,"ScoreDef":243532,"RankSup":0,"ScoreSup":0,"RankTotal":1064,"ScoreTotal":243562,"ID":698488800,"Name":"Galactus","NumVillages":1,"Points":237,"Rank":2223,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698488800","BestRank":2223,"BestRankAt":"2023-02-16T05:25:56.278122Z","MostPoints":237,"MostPointsAt":"2023-02-16T05:25:49.036543Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036543Z","LastActivityAt":"2023-02-16T05:25:49.036543Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037234Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":97,"ScoreAtt":3264277,"RankDef":629,"ScoreDef":344039,"RankSup":236,"ScoreSup":754425,"RankTotal":219,"ScoreTotal":4362741,"ID":698489071,"Name":"3lobit","NumVillages":187,"Points":1578890,"Rank":75,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698489071","BestRank":74,"BestRankAt":"2023-02-16T05:25:49.036543Z","MostPoints":1578890,"MostPointsAt":"2023-02-16T05:25:56.278123Z","MostVillages":187,"MostVillagesAt":"2023-02-16T05:25:49.036543Z","LastActivityAt":"2023-02-16T05:25:56.278123Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037236Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1588,"ScoreDef":26022,"RankSup":0,"ScoreSup":0,"RankTotal":1806,"ScoreTotal":26022,"ID":698511920,"Name":"tarzan04","NumVillages":1,"Points":2716,"Rank":1552,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698511920","BestRank":1552,"BestRankAt":"2023-02-16T05:25:56.278123Z","MostPoints":2716,"MostPointsAt":"2023-02-16T05:25:49.036544Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036544Z","LastActivityAt":"2023-02-16T05:25:49.036544Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037237Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1627,"ScoreAtt":956,"RankDef":1275,"ScoreDef":59737,"RankSup":1186,"ScoreSup":467,"RankTotal":1542,"ScoreTotal":61160,"ID":698519133,"Name":"Isabella","NumVillages":1,"Points":2251,"Rank":1610,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698519133","BestRank":1610,"BestRankAt":"2023-02-16T05:25:56.278124Z","MostPoints":2251,"MostPointsAt":"2023-02-16T05:25:56.278124Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036544Z","LastActivityAt":"2023-02-16T05:25:56.278124Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037238Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1355,"ScoreAtt":5105,"RankDef":917,"ScoreDef":158094,"RankSup":0,"ScoreSup":0,"RankTotal":1221,"ScoreTotal":163199,"ID":698526036,"Name":"lordtados","NumVillages":2,"Points":13062,"Rank":1030,"TribeID":373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698526036","BestRank":1026,"BestRankAt":"2023-02-16T05:25:49.036545Z","MostPoints":13062,"MostPointsAt":"2023-02-16T05:25:49.036545Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036545Z","LastActivityAt":"2023-02-16T05:25:49.036545Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037239Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698526500,"Name":"Fontowcy Dual i MaƂpiake","NumVillages":1,"Points":26,"Rank":2664,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698526500","BestRank":2664,"BestRankAt":"2023-02-16T05:25:56.278125Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036546Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036546Z","LastActivityAt":"2023-02-16T05:25:49.036546Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037242Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1370,"ScoreAtt":4646,"RankDef":653,"ScoreDef":321134,"RankSup":1175,"ScoreSup":603,"RankTotal":983,"ScoreTotal":326383,"ID":698540331,"Name":"Kajtej","NumVillages":6,"Points":28924,"Rank":829,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698540331","BestRank":825,"BestRankAt":"2023-02-16T05:25:49.036546Z","MostPoints":28924,"MostPointsAt":"2023-02-16T05:25:56.278125Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036546Z","LastActivityAt":"2023-02-16T05:25:56.278125Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037243Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698542183,"Name":"falat030","NumVillages":1,"Points":59,"Rank":2528,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698542183","BestRank":2528,"BestRankAt":"2023-02-16T05:25:56.278126Z","MostPoints":59,"MostPointsAt":"2023-02-16T05:25:49.036547Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036547Z","LastActivityAt":"2023-02-16T05:25:49.036547Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037244Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":498,"ScoreAtt":357251,"RankDef":1493,"ScoreDef":34411,"RankSup":403,"ScoreSup":315736,"RankTotal":727,"ScoreTotal":707398,"ID":698545981,"Name":"Adaczu","NumVillages":0,"Points":0,"Rank":2932,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698545981","BestRank":2932,"BestRankAt":"2023-02-16T05:25:56.278126Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036547Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036547Z","LastActivityAt":"2023-02-16T05:25:49.036547Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037245Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1693,"ScoreAtt":568,"RankDef":1925,"ScoreDef":6750,"RankSup":1258,"ScoreSup":88,"RankTotal":2052,"ScoreTotal":7406,"ID":698548451,"Name":"Paul2493","NumVillages":1,"Points":3290,"Rank":1480,"TribeID":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698548451","BestRank":1480,"BestRankAt":"2023-02-16T05:25:56.278127Z","MostPoints":3290,"MostPointsAt":"2023-02-16T05:25:56.278127Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036548Z","LastActivityAt":"2023-02-16T05:25:56.278127Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037246Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698556600,"Name":"snake7","NumVillages":1,"Points":130,"Rank":2396,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698556600","BestRank":2396,"BestRankAt":"2023-02-16T05:25:56.278127Z","MostPoints":130,"MostPointsAt":"2023-02-16T05:25:49.036548Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036548Z","LastActivityAt":"2023-02-16T05:25:49.036548Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037247Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":421,"ScoreDef":680465,"RankSup":0,"ScoreSup":0,"RankTotal":738,"ScoreTotal":680465,"ID":698557087,"Name":"SenTuƛka","NumVillages":0,"Points":0,"Rank":2933,"TribeID":594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698557087","BestRank":2933,"BestRankAt":"2023-02-16T05:25:56.278128Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036549Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036549Z","LastActivityAt":"2023-02-16T05:25:49.036549Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037249Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":292,"ScoreAtt":962021,"RankDef":1419,"ScoreDef":40626,"RankSup":314,"ScoreSup":480317,"RankTotal":501,"ScoreTotal":1482964,"ID":698562644,"Name":"DawidN","NumVillages":79,"Points":656201,"Rank":216,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698562644","BestRank":216,"BestRankAt":"2023-02-16T05:25:56.278128Z","MostPoints":656201,"MostPointsAt":"2023-02-16T05:25:56.278128Z","MostVillages":79,"MostVillagesAt":"2023-02-16T05:25:56.278128Z","LastActivityAt":"2023-02-16T05:25:56.278129Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698575453,"Name":"resp","NumVillages":0,"Points":0,"Rank":2967,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698575453","BestRank":2967,"BestRankAt":"2023-02-16T05:25:49.03655Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.03655Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.03655Z","LastActivityAt":"2023-02-16T05:25:49.03655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037251Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1188,"ScoreAtt":11058,"RankDef":2156,"ScoreDef":1679,"RankSup":841,"ScoreSup":16899,"RankTotal":1766,"ScoreTotal":29636,"ID":698580310,"Name":"warkoczynka","NumVillages":1,"Points":844,"Rank":1890,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698580310","BestRank":1890,"BestRankAt":"2023-02-16T05:25:56.278129Z","MostPoints":844,"MostPointsAt":"2023-02-16T05:25:49.036551Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03655Z","LastActivityAt":"2023-02-16T05:25:49.036551Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037254Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2066,"ScoreDef":3123,"RankSup":0,"ScoreSup":0,"RankTotal":2184,"ScoreTotal":3123,"ID":698582741,"Name":"ogri","NumVillages":0,"Points":0,"Rank":2934,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698582741","BestRank":2934,"BestRankAt":"2023-02-16T05:25:56.278129Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036551Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036551Z","LastActivityAt":"2023-02-16T05:25:49.036551Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037254Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":81,"ScoreAtt":3933261,"RankDef":159,"ScoreDef":2433620,"RankSup":336,"ScoreSup":439500,"RankTotal":131,"ScoreTotal":6806381,"ID":698585370,"Name":"S1Joker","NumVillages":158,"Points":1418122,"Rank":83,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698585370","BestRank":83,"BestRankAt":"2023-02-16T05:25:56.27813Z","MostPoints":1418122,"MostPointsAt":"2023-02-16T05:25:56.27813Z","MostVillages":158,"MostVillagesAt":"2023-02-16T05:25:56.27813Z","LastActivityAt":"2023-02-16T05:25:56.27813Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037255Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":325,"ScoreAtt":811094,"RankDef":20,"ScoreDef":16298759,"RankSup":100,"ScoreSup":2234459,"RankTotal":30,"ScoreTotal":19344312,"ID":698588535,"Name":"krismal","NumVillages":127,"Points":1209737,"Rank":111,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698588535","BestRank":110,"BestRankAt":"2023-02-16T05:25:49.036552Z","MostPoints":1209737,"MostPointsAt":"2023-02-16T05:25:56.278131Z","MostVillages":127,"MostVillagesAt":"2023-02-16T05:25:49.036552Z","LastActivityAt":"2023-02-16T05:25:56.278131Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037257Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":711,"ScoreAtt":121448,"RankDef":563,"ScoreDef":416536,"RankSup":585,"ScoreSup":105559,"RankTotal":760,"ScoreTotal":643543,"ID":698588812,"Name":"Lord Sir felek","NumVillages":13,"Points":65457,"Rank":633,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698588812","BestRank":633,"BestRankAt":"2023-02-16T05:25:49.036553Z","MostPoints":65457,"MostPointsAt":"2023-02-16T05:25:56.278131Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.036553Z","LastActivityAt":"2023-02-16T05:25:56.278131Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037258Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1694,"ScoreAtt":630,"RankDef":1020,"ScoreDef":119911,"RankSup":1034,"ScoreSup":3434,"RankTotal":1316,"ScoreTotal":123975,"ID":698589866,"Name":"Sir Arczi99","NumVillages":1,"Points":2005,"Rank":1663,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698589866","BestRank":1663,"BestRankAt":"2023-02-16T05:25:49.036553Z","MostPoints":2005,"MostPointsAt":"2023-02-16T05:25:49.036553Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036553Z","LastActivityAt":"2023-02-16T05:25:49.036553Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037258Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2267,"ScoreDef":377,"RankSup":0,"ScoreSup":0,"RankTotal":2349,"ScoreTotal":377,"ID":698592565,"Name":"filip9399","NumVillages":1,"Points":101,"Rank":2459,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698592565","BestRank":2459,"BestRankAt":"2023-02-16T05:25:56.278131Z","MostPoints":101,"MostPointsAt":"2023-02-16T05:25:56.278132Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036554Z","LastActivityAt":"2023-02-16T05:25:56.278132Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1930,"ScoreDef":6560,"RankSup":0,"ScoreSup":0,"RankTotal":2070,"ScoreTotal":6560,"ID":698592907,"Name":"MamTegoDoƛć","NumVillages":1,"Points":5928,"Rank":1267,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698592907","BestRank":1267,"BestRankAt":"2023-02-16T05:25:56.278132Z","MostPoints":5928,"MostPointsAt":"2023-02-16T05:25:49.036554Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036554Z","LastActivityAt":"2023-02-16T05:25:49.036554Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037261Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":313,"ScoreAtt":872898,"RankDef":672,"ScoreDef":297218,"RankSup":741,"ScoreSup":37679,"RankTotal":563,"ScoreTotal":1207795,"ID":698599365,"Name":"RoBaCzEk101 reaktywacja","NumVillages":53,"Points":447788,"Rank":285,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698599365","BestRank":283,"BestRankAt":"2023-02-16T05:25:49.036555Z","MostPoints":447788,"MostPointsAt":"2023-02-16T05:25:56.278133Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:49.036555Z","LastActivityAt":"2023-02-16T05:25:56.278133Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037263Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1011,"ScoreAtt":28165,"RankDef":481,"ScoreDef":555857,"RankSup":0,"ScoreSup":0,"RankTotal":781,"ScoreTotal":584022,"ID":698604229,"Name":"greenapple","NumVillages":1,"Points":26,"Rank":2665,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698604229","BestRank":2665,"BestRankAt":"2023-02-16T05:25:56.278133Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036555Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036555Z","LastActivityAt":"2023-02-16T05:25:49.036556Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037265Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1128,"ScoreAtt":15753,"RankDef":1571,"ScoreDef":27922,"RankSup":0,"ScoreSup":0,"RankTotal":1650,"ScoreTotal":43675,"ID":698605444,"Name":"1kip7","NumVillages":0,"Points":0,"Rank":2935,"TribeID":1357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698605444","BestRank":2935,"BestRankAt":"2023-02-16T05:25:56.278134Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036556Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036556Z","LastActivityAt":"2023-02-16T05:25:49.036556Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037266Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1427,"ScoreAtt":3424,"RankDef":221,"ScoreDef":1724159,"RankSup":292,"ScoreSup":560009,"RankTotal":373,"ScoreTotal":2287592,"ID":698613394,"Name":"SOL menka","NumVillages":3,"Points":9716,"Rank":1092,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698613394","BestRank":1092,"BestRankAt":"2023-02-16T05:25:56.278134Z","MostPoints":9716,"MostPointsAt":"2023-02-16T05:25:49.036557Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036557Z","LastActivityAt":"2023-02-16T05:25:49.036557Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037267Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":454,"ScoreAtt":439694,"RankDef":576,"ScoreDef":405976,"RankSup":356,"ScoreSup":405626,"RankTotal":553,"ScoreTotal":1251296,"ID":698620694,"Name":"rurek50029","NumVillages":54,"Points":364207,"Rank":317,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698620694","BestRank":317,"BestRankAt":"2023-02-16T05:25:56.278134Z","MostPoints":364207,"MostPointsAt":"2023-02-16T05:25:56.278135Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:56.278135Z","LastActivityAt":"2023-02-16T05:25:56.278135Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037268Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1965,"ScoreAtt":8,"RankDef":1500,"ScoreDef":33578,"RankSup":0,"ScoreSup":0,"RankTotal":1736,"ScoreTotal":33586,"ID":698623373,"Name":"rt27","NumVillages":1,"Points":1262,"Rank":1782,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698623373","BestRank":1782,"BestRankAt":"2023-02-16T05:25:56.278135Z","MostPoints":1262,"MostPointsAt":"2023-02-16T05:25:49.036558Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036558Z","LastActivityAt":"2023-02-16T05:25:49.036558Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":814,"ScoreAtt":75345,"RankDef":551,"ScoreDef":440879,"RankSup":80,"ScoreSup":2715345,"RankTotal":274,"ScoreTotal":3231569,"ID":698625834,"Name":"PjetreQ","NumVillages":188,"Points":1305401,"Rank":96,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698625834","BestRank":96,"BestRankAt":"2023-02-16T05:25:56.278136Z","MostPoints":1305401,"MostPointsAt":"2023-02-16T05:25:56.278136Z","MostVillages":188,"MostVillagesAt":"2023-02-16T05:25:49.036558Z","LastActivityAt":"2023-02-16T05:25:56.278136Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037272Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1198,"ScoreAtt":10588,"RankDef":2104,"ScoreDef":2378,"RankSup":0,"ScoreSup":0,"RankTotal":1947,"ScoreTotal":12966,"ID":698630140,"Name":"Espel132","NumVillages":1,"Points":7265,"Rank":1197,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698630140","BestRank":1197,"BestRankAt":"2023-02-16T05:25:56.278136Z","MostPoints":7265,"MostPointsAt":"2023-02-16T05:25:49.036559Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036559Z","LastActivityAt":"2023-02-16T05:25:49.036559Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037273Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":635,"ScoreAtt":174143,"RankDef":318,"ScoreDef":1062035,"RankSup":450,"ScoreSup":225127,"RankTotal":504,"ScoreTotal":1461305,"ID":698630507,"Name":"Mpower e36","NumVillages":17,"Points":114549,"Rank":512,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698630507","BestRank":511,"BestRankAt":"2023-02-16T05:25:49.036559Z","MostPoints":114549,"MostPointsAt":"2023-02-16T05:25:49.036559Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.036559Z","LastActivityAt":"2023-02-16T05:25:49.036559Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037274Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698631190,"Name":"gracjan1995","NumVillages":1,"Points":1938,"Rank":1663,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698631190","BestRank":1663,"BestRankAt":"2023-02-16T05:25:56.278137Z","MostPoints":1938,"MostPointsAt":"2023-02-16T05:25:56.278137Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03656Z","LastActivityAt":"2023-02-16T05:25:56.278137Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037277Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":169,"ScoreAtt":1888799,"RankDef":264,"ScoreDef":1415307,"RankSup":71,"ScoreSup":2823129,"RankTotal":146,"ScoreTotal":6127235,"ID":698635863,"Name":"JaaMwG","NumVillages":400,"Points":4050198,"Rank":7,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698635863","BestRank":7,"BestRankAt":"2023-02-16T05:25:49.03656Z","MostPoints":4050198,"MostPointsAt":"2023-02-16T05:25:56.278138Z","MostVillages":400,"MostVillagesAt":"2023-02-16T05:25:56.278138Z","LastActivityAt":"2023-02-16T05:25:56.278138Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037278Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698639278,"Name":"dominik121","NumVillages":1,"Points":194,"Rank":2289,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698639278","BestRank":2289,"BestRankAt":"2023-02-16T05:25:56.278138Z","MostPoints":194,"MostPointsAt":"2023-02-16T05:25:49.036561Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036561Z","LastActivityAt":"2023-02-16T05:25:49.036561Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037279Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":87,"ScoreAtt":3739531,"RankDef":297,"ScoreDef":1200161,"RankSup":150,"ScoreSup":1509606,"RankTotal":138,"ScoreTotal":6449298,"ID":698641566,"Name":"Kuzyn Patryk","NumVillages":79,"Points":754376,"Rank":190,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698641566","BestRank":190,"BestRankAt":"2023-02-16T05:25:49.036561Z","MostPoints":754376,"MostPointsAt":"2023-02-16T05:25:56.278139Z","MostVillages":79,"MostVillagesAt":"2023-02-16T05:25:49.036561Z","LastActivityAt":"2023-02-16T05:25:56.278139Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698645802,"Name":"B.E.R.S.E.R.","NumVillages":1,"Points":26,"Rank":2666,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698645802","BestRank":2666,"BestRankAt":"2023-02-16T05:25:56.278139Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036562Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036562Z","LastActivityAt":"2023-02-16T05:25:49.036562Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037281Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1776,"ScoreDef":13524,"RankSup":0,"ScoreSup":0,"RankTotal":1938,"ScoreTotal":13524,"ID":698647624,"Name":"Kayohix","NumVillages":1,"Points":6251,"Rank":1251,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698647624","BestRank":1251,"BestRankAt":"2023-02-16T05:25:56.27814Z","MostPoints":6251,"MostPointsAt":"2023-02-16T05:25:56.27814Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036563Z","LastActivityAt":"2023-02-16T05:25:56.27814Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037282Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698648691,"Name":"KrĂłl Mieszko I","NumVillages":1,"Points":122,"Rank":2418,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698648691","BestRank":2418,"BestRankAt":"2023-02-16T05:25:56.27814Z","MostPoints":122,"MostPointsAt":"2023-02-16T05:25:49.036563Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036563Z","LastActivityAt":"2023-02-16T05:25:49.036563Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037282Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":252,"ScoreAtt":1112935,"RankDef":426,"ScoreDef":672962,"RankSup":662,"ScoreSup":64198,"RankTotal":431,"ScoreTotal":1850095,"ID":698650301,"Name":"Kopersss","NumVillages":39,"Points":350710,"Rank":327,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698650301","BestRank":327,"BestRankAt":"2023-02-16T05:25:56.278141Z","MostPoints":350710,"MostPointsAt":"2023-02-16T05:25:56.278141Z","MostVillages":39,"MostVillagesAt":"2023-02-16T05:25:56.278141Z","LastActivityAt":"2023-02-16T05:25:56.278141Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037283Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2214,"ScoreDef":793,"RankSup":0,"ScoreSup":0,"RankTotal":2302,"ScoreTotal":793,"ID":698650509,"Name":"DefinitelyNotLegion","NumVillages":2,"Points":7881,"Rank":1161,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698650509","BestRank":1161,"BestRankAt":"2023-02-16T05:25:56.278141Z","MostPoints":7881,"MostPointsAt":"2023-02-16T05:25:49.036564Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036564Z","LastActivityAt":"2023-02-16T05:25:49.036564Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037285Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":376,"ScoreAtt":623964,"RankDef":470,"ScoreDef":567056,"RankSup":370,"ScoreSup":368586,"RankTotal":481,"ScoreTotal":1559606,"ID":698652014,"Name":"Maru","NumVillages":50,"Points":407879,"Rank":299,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698652014","BestRank":295,"BestRankAt":"2023-02-16T05:25:49.036565Z","MostPoints":416137,"MostPointsAt":"2023-02-16T05:25:49.036565Z","MostVillages":51,"MostVillagesAt":"2023-02-16T05:25:49.036565Z","LastActivityAt":"2023-02-16T05:25:49.036565Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037287Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1413,"ScoreAtt":3759,"RankDef":2274,"ScoreDef":340,"RankSup":814,"ScoreSup":21968,"RankTotal":1805,"ScoreTotal":26067,"ID":698652171,"Name":"lordkali91s","NumVillages":15,"Points":88148,"Rank":567,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698652171","BestRank":567,"BestRankAt":"2023-02-16T05:25:56.278142Z","MostPoints":88148,"MostPointsAt":"2023-02-16T05:25:56.278142Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.036565Z","LastActivityAt":"2023-02-16T05:25:56.278142Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2432,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2509,"ScoreTotal":10,"ID":698654164,"Name":"Jabolek","NumVillages":1,"Points":3155,"Rank":1491,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698654164","BestRank":1491,"BestRankAt":"2023-02-16T05:25:56.278143Z","MostPoints":3155,"MostPointsAt":"2023-02-16T05:25:56.278143Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036566Z","LastActivityAt":"2023-02-16T05:25:56.278143Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037288Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1386,"ScoreDef":46338,"RankSup":0,"ScoreSup":0,"RankTotal":1632,"ScoreTotal":46338,"ID":698655576,"Name":"brutal29","NumVillages":1,"Points":56,"Rank":2532,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698655576","BestRank":2532,"BestRankAt":"2023-02-16T05:25:56.278143Z","MostPoints":56,"MostPointsAt":"2023-02-16T05:25:49.036566Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036566Z","LastActivityAt":"2023-02-16T05:25:49.036566Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037289Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":757,"ScoreAtt":96154,"RankDef":1797,"ScoreDef":12262,"RankSup":0,"ScoreSup":0,"RankTotal":1357,"ScoreTotal":108416,"ID":698655859,"Name":"Chmelnycky","NumVillages":4,"Points":19436,"Rank":927,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698655859","BestRank":927,"BestRankAt":"2023-02-16T05:25:56.278144Z","MostPoints":19436,"MostPointsAt":"2023-02-16T05:25:56.278144Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036567Z","LastActivityAt":"2023-02-16T05:25:56.278144Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698658087,"Name":"techniq","NumVillages":1,"Points":67,"Rank":2514,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698658087","BestRank":2514,"BestRankAt":"2023-02-16T05:25:56.278144Z","MostPoints":67,"MostPointsAt":"2023-02-16T05:25:49.036567Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036567Z","LastActivityAt":"2023-02-16T05:25:49.036568Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037291Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1,"ScoreAtt":29803874,"RankDef":25,"ScoreDef":12919925,"RankSup":23,"ScoreSup":4943092,"RankTotal":6,"ScoreTotal":47666891,"ID":698659980,"Name":"zawodnik","NumVillages":634,"Points":6159808,"Rank":3,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698659980","BestRank":3,"BestRankAt":"2023-02-16T05:25:49.036568Z","MostPoints":6166974,"MostPointsAt":"2023-02-16T05:25:49.036568Z","MostVillages":637,"MostVillagesAt":"2023-02-16T05:25:49.036568Z","LastActivityAt":"2023-02-16T05:25:56.278145Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037292Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2212,"ScoreDef":806,"RankSup":0,"ScoreSup":0,"RankTotal":2298,"ScoreTotal":806,"ID":698661697,"Name":"carrex95","NumVillages":1,"Points":266,"Rank":2194,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698661697","BestRank":2194,"BestRankAt":"2023-02-16T05:25:56.278145Z","MostPoints":266,"MostPointsAt":"2023-02-16T05:25:49.036569Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036568Z","LastActivityAt":"2023-02-16T05:25:49.036569Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037293Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1435,"ScoreAtt":3286,"RankDef":746,"ScoreDef":246835,"RankSup":499,"ScoreSup":173564,"RankTotal":892,"ScoreTotal":423685,"ID":698663855,"Name":"Dzieciake","NumVillages":61,"Points":346976,"Rank":332,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698663855","BestRank":328,"BestRankAt":"2023-02-16T05:25:49.036569Z","MostPoints":346976,"MostPointsAt":"2023-02-16T05:25:49.036569Z","MostVillages":61,"MostVillagesAt":"2023-02-16T05:25:49.036569Z","LastActivityAt":"2023-02-16T05:25:49.036569Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037294Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1100,"ScoreAtt":17745,"RankDef":1688,"ScoreDef":19311,"RankSup":652,"ScoreSup":70284,"RankTotal":1359,"ScoreTotal":107340,"ID":698666810,"Name":"Gryfios","NumVillages":81,"Points":743913,"Rank":193,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698666810","BestRank":193,"BestRankAt":"2023-02-16T05:25:56.278146Z","MostPoints":743913,"MostPointsAt":"2023-02-16T05:25:56.278146Z","MostVillages":81,"MostVillagesAt":"2023-02-16T05:25:49.03657Z","LastActivityAt":"2023-02-16T05:25:56.278146Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1973,"ScoreAtt":4,"RankDef":1694,"ScoreDef":18855,"RankSup":0,"ScoreSup":0,"RankTotal":1878,"ScoreTotal":18859,"ID":698667255,"Name":"Szary Ubek","NumVillages":1,"Points":733,"Rank":1918,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698667255","BestRank":1918,"BestRankAt":"2023-02-16T05:25:56.278147Z","MostPoints":733,"MostPointsAt":"2023-02-16T05:25:49.03657Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03657Z","LastActivityAt":"2023-02-16T05:25:49.03657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037296Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":326,"ScoreAtt":802094,"RankDef":1239,"ScoreDef":65693,"RankSup":465,"ScoreSup":203110,"RankTotal":600,"ScoreTotal":1070897,"ID":698670524,"Name":"Simon21","NumVillages":48,"Points":371466,"Rank":315,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698670524","BestRank":315,"BestRankAt":"2023-02-16T05:25:49.036571Z","MostPoints":371466,"MostPointsAt":"2023-02-16T05:25:56.278147Z","MostVillages":48,"MostVillagesAt":"2023-02-16T05:25:49.036571Z","LastActivityAt":"2023-02-16T05:25:56.278147Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698676429,"Name":"halooogan","NumVillages":1,"Points":26,"Rank":2667,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698676429","BestRank":2667,"BestRankAt":"2023-02-16T05:25:56.278148Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036571Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036571Z","LastActivityAt":"2023-02-16T05:25:49.036571Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037298Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698676788,"Name":"ligedman92","NumVillages":1,"Points":1792,"Rank":1690,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698676788","BestRank":1690,"BestRankAt":"2023-02-16T05:25:56.278148Z","MostPoints":1792,"MostPointsAt":"2023-02-16T05:25:49.036572Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036572Z","LastActivityAt":"2023-02-16T05:25:49.036572Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037299Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":745,"ScoreAtt":102911,"RankDef":2228,"ScoreDef":650,"RankSup":1197,"ScoreSup":378,"RankTotal":1374,"ScoreTotal":103939,"ID":698677650,"Name":"GranicaPSK","NumVillages":25,"Points":74245,"Rank":599,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698677650","BestRank":599,"BestRankAt":"2023-02-16T05:25:56.278149Z","MostPoints":74245,"MostPointsAt":"2023-02-16T05:25:56.278149Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.036572Z","LastActivityAt":"2023-02-16T05:25:56.278149Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037301Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":780,"ScoreAtt":87498,"RankDef":1856,"ScoreDef":9597,"RankSup":487,"ScoreSup":184813,"RankTotal":1022,"ScoreTotal":281908,"ID":698680806,"Name":"spartakus270","NumVillages":10,"Points":73322,"Rank":600,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698680806","BestRank":600,"BestRankAt":"2023-02-16T05:25:56.278149Z","MostPoints":73322,"MostPointsAt":"2023-02-16T05:25:56.27815Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:56.278149Z","LastActivityAt":"2023-02-16T05:25:56.27815Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037302Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2181,"ScoreDef":1257,"RankSup":0,"ScoreSup":0,"RankTotal":2277,"ScoreTotal":1257,"ID":698687597,"Name":"kjs12","NumVillages":1,"Points":628,"Rank":1961,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698687597","BestRank":1961,"BestRankAt":"2023-02-16T05:25:56.27815Z","MostPoints":628,"MostPointsAt":"2023-02-16T05:25:49.036574Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036573Z","LastActivityAt":"2023-02-16T05:25:49.036574Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1105,"ScoreAtt":17616,"RankDef":1361,"ScoreDef":48823,"RankSup":0,"ScoreSup":0,"RankTotal":1513,"ScoreTotal":66439,"ID":698687678,"Name":"ciniol97","NumVillages":0,"Points":0,"Rank":2936,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698687678","BestRank":2936,"BestRankAt":"2023-02-16T05:25:56.27815Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036574Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036574Z","LastActivityAt":"2023-02-16T05:25:49.036574Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037303Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698689858,"Name":"kraku123","NumVillages":0,"Points":0,"Rank":2937,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698689858","BestRank":2937,"BestRankAt":"2023-02-16T05:25:56.278151Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036575Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036575Z","LastActivityAt":"2023-02-16T05:25:49.036575Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1158,"ScoreAtt":12908,"RankDef":594,"ScoreDef":386000,"RankSup":904,"ScoreSup":10805,"RankTotal":908,"ScoreTotal":409713,"ID":698692141,"Name":"barczi1979","NumVillages":1,"Points":3566,"Rank":1445,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698692141","BestRank":1445,"BestRankAt":"2023-02-16T05:25:56.278151Z","MostPoints":3566,"MostPointsAt":"2023-02-16T05:25:56.278152Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036575Z","LastActivityAt":"2023-02-16T05:25:56.278152Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1896,"ScoreDef":7883,"RankSup":0,"ScoreSup":0,"RankTotal":2039,"ScoreTotal":7883,"ID":698693697,"Name":"AGH Szary","NumVillages":2,"Points":14286,"Rank":1010,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698693697","BestRank":1009,"BestRankAt":"2023-02-16T05:25:49.036576Z","MostPoints":14286,"MostPointsAt":"2023-02-16T05:25:49.036576Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036576Z","LastActivityAt":"2023-02-16T05:25:49.036576Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1982,"ScoreDef":5311,"RankSup":0,"ScoreSup":0,"RankTotal":2110,"ScoreTotal":5311,"ID":698696420,"Name":"prezes naczelny","NumVillages":1,"Points":3644,"Rank":1434,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698696420","BestRank":1434,"BestRankAt":"2023-02-16T05:25:56.278152Z","MostPoints":3644,"MostPointsAt":"2023-02-16T05:25:56.278153Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036576Z","LastActivityAt":"2023-02-16T05:25:56.278153Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037308Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698698087,"Name":"Sir xyz1","NumVillages":1,"Points":1129,"Rank":1811,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698698087","BestRank":1811,"BestRankAt":"2023-02-16T05:25:56.278153Z","MostPoints":1129,"MostPointsAt":"2023-02-16T05:25:49.036577Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036577Z","LastActivityAt":"2023-02-16T05:25:49.036577Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037309Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1046,"ScoreAtt":23148,"RankDef":1622,"ScoreDef":24339,"RankSup":1055,"ScoreSup":2706,"RankTotal":1605,"ScoreTotal":50193,"ID":698701911,"Name":"Xerez","NumVillages":12,"Points":41213,"Rank":734,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698701911","BestRank":734,"BestRankAt":"2023-02-16T05:25:56.278153Z","MostPoints":41213,"MostPointsAt":"2023-02-16T05:25:56.278154Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.036577Z","LastActivityAt":"2023-02-16T05:25:56.278154Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":117,"ScoreAtt":2535735,"RankDef":1382,"ScoreDef":46906,"RankSup":704,"ScoreSup":48687,"RankTotal":335,"ScoreTotal":2631328,"ID":698702991,"Name":"carnage234","NumVillages":116,"Points":954824,"Rank":153,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698702991","BestRank":153,"BestRankAt":"2023-02-16T05:25:56.278154Z","MostPoints":954824,"MostPointsAt":"2023-02-16T05:25:56.278154Z","MostVillages":116,"MostVillagesAt":"2023-02-16T05:25:49.036578Z","LastActivityAt":"2023-02-16T05:25:56.278154Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":85,"ScoreAtt":3753042,"RankDef":127,"ScoreDef":3037337,"RankSup":77,"ScoreSup":2767363,"RankTotal":80,"ScoreTotal":9557742,"ID":698704189,"Name":"Reco","NumVillages":236,"Points":2011801,"Rank":47,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698704189","BestRank":46,"BestRankAt":"2023-02-16T05:25:49.036578Z","MostPoints":2011801,"MostPointsAt":"2023-02-16T05:25:56.278155Z","MostVillages":236,"MostVillagesAt":"2023-02-16T05:25:56.278155Z","LastActivityAt":"2023-02-16T05:25:56.278155Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037311Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1288,"ScoreDef":58563,"RankSup":984,"ScoreSup":5635,"RankTotal":1527,"ScoreTotal":64198,"ID":698704875,"Name":"Dominator2014","NumVillages":0,"Points":0,"Rank":2938,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698704875","BestRank":2938,"BestRankAt":"2023-02-16T05:25:56.278155Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036579Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036579Z","LastActivityAt":"2023-02-16T05:25:49.036579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037312Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698712383,"Name":"pRoFiCe II","NumVillages":1,"Points":4844,"Rank":1334,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698712383","BestRank":1334,"BestRankAt":"2023-02-16T05:25:56.278156Z","MostPoints":4844,"MostPointsAt":"2023-02-16T05:25:49.03658Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036579Z","LastActivityAt":"2023-02-16T05:25:49.03658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037314Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":363,"ScoreAtt":663253,"RankDef":1307,"ScoreDef":56242,"RankSup":492,"ScoreSup":178588,"RankTotal":654,"ScoreTotal":898083,"ID":698723158,"Name":"kaliber84","NumVillages":65,"Points":444667,"Rank":288,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698723158","BestRank":285,"BestRankAt":"2023-02-16T05:25:49.03658Z","MostPoints":444667,"MostPointsAt":"2023-02-16T05:25:56.278156Z","MostVillages":65,"MostVillagesAt":"2023-02-16T05:25:56.278156Z","LastActivityAt":"2023-02-16T05:25:56.278156Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037315Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1116,"ScoreAtt":16736,"RankDef":1676,"ScoreDef":19902,"RankSup":838,"ScoreSup":17434,"RankTotal":1584,"ScoreTotal":54072,"ID":698736778,"Name":"Lady mysza89100","NumVillages":7,"Points":17056,"Rank":969,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698736778","BestRank":969,"BestRankAt":"2023-02-16T05:25:49.03658Z","MostPoints":17056,"MostPointsAt":"2023-02-16T05:25:56.278157Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.036581Z","LastActivityAt":"2023-02-16T05:25:56.278157Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037316Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1040,"ScoreAtt":24468,"RankDef":1746,"ScoreDef":15757,"RankSup":0,"ScoreSup":0,"RankTotal":1676,"ScoreTotal":40225,"ID":698738810,"Name":"King Kamil I","NumVillages":2,"Points":5149,"Rank":1311,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698738810","BestRank":1311,"BestRankAt":"2023-02-16T05:25:56.278157Z","MostPoints":5149,"MostPointsAt":"2023-02-16T05:25:49.036581Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036581Z","LastActivityAt":"2023-02-16T05:25:49.036581Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037317Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":323,"ScoreAtt":812446,"RankDef":1378,"ScoreDef":47439,"RankSup":31,"ScoreSup":4649847,"RankTotal":164,"ScoreTotal":5509732,"ID":698739350,"Name":"SaFaR","NumVillages":194,"Points":1786767,"Rank":62,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698739350","BestRank":62,"BestRankAt":"2023-02-16T05:25:49.036582Z","MostPoints":1786767,"MostPointsAt":"2023-02-16T05:25:56.278158Z","MostVillages":194,"MostVillagesAt":"2023-02-16T05:25:56.278158Z","LastActivityAt":"2023-02-16T05:25:56.278158Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037318Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1705,"ScoreAtt":494,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2331,"ScoreTotal":494,"ID":698743511,"Name":"Lech798","NumVillages":1,"Points":288,"Rank":2167,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698743511","BestRank":2167,"BestRankAt":"2023-02-16T05:25:56.278158Z","MostPoints":288,"MostPointsAt":"2023-02-16T05:25:56.278158Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036582Z","LastActivityAt":"2023-02-16T05:25:56.278158Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037319Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698747719,"Name":"frrrantic","NumVillages":1,"Points":243,"Rank":2215,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698747719","BestRank":2215,"BestRankAt":"2023-02-16T05:25:56.278159Z","MostPoints":243,"MostPointsAt":"2023-02-16T05:25:49.036583Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036583Z","LastActivityAt":"2023-02-16T05:25:49.036583Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1836,"ScoreAtt":132,"RankDef":1455,"ScoreDef":37610,"RankSup":985,"ScoreSup":5610,"RankTotal":1652,"ScoreTotal":43352,"ID":698748891,"Name":"Sumienie","NumVillages":1,"Points":1817,"Rank":1687,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698748891","BestRank":1687,"BestRankAt":"2023-02-16T05:25:56.278159Z","MostPoints":1817,"MostPointsAt":"2023-02-16T05:25:56.278159Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036583Z","LastActivityAt":"2023-02-16T05:25:56.278159Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037321Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1569,"ScoreDef":28058,"RankSup":0,"ScoreSup":0,"RankTotal":1784,"ScoreTotal":28058,"ID":698749311,"Name":"Mergio","NumVillages":1,"Points":1489,"Rank":1737,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698749311","BestRank":1737,"BestRankAt":"2023-02-16T05:25:56.27816Z","MostPoints":1489,"MostPointsAt":"2023-02-16T05:25:49.036584Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036584Z","LastActivityAt":"2023-02-16T05:25:49.036584Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037322Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698754087,"Name":"Santa aka Dziadzia","NumVillages":1,"Points":26,"Rank":2668,"TribeID":1802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698754087","BestRank":2668,"BestRankAt":"2023-02-16T05:25:56.27816Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036584Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036584Z","LastActivityAt":"2023-02-16T05:25:49.036585Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037324Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1153,"ScoreAtt":13156,"RankDef":1743,"ScoreDef":16014,"RankSup":556,"ScoreSup":128199,"RankTotal":1233,"ScoreTotal":157369,"ID":698757439,"Name":"Kristoffs","NumVillages":24,"Points":199434,"Rank":416,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698757439","BestRank":416,"BestRankAt":"2023-02-16T05:25:49.036585Z","MostPoints":199434,"MostPointsAt":"2023-02-16T05:25:56.278161Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.036585Z","LastActivityAt":"2023-02-16T05:25:56.278161Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037325Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1811,"ScoreAtt":160,"RankDef":1993,"ScoreDef":4984,"RankSup":0,"ScoreSup":0,"RankTotal":2116,"ScoreTotal":5144,"ID":698757487,"Name":"Halny","NumVillages":1,"Points":2340,"Rank":1596,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698757487","BestRank":1596,"BestRankAt":"2023-02-16T05:25:56.278161Z","MostPoints":2345,"MostPointsAt":"2023-02-16T05:25:49.036586Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036585Z","LastActivityAt":"2023-02-16T05:25:49.036586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037326Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698766178,"Name":"Peter1","NumVillages":1,"Points":408,"Rank":2068,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698766178","BestRank":2068,"BestRankAt":"2023-02-16T05:25:56.278162Z","MostPoints":408,"MostPointsAt":"2023-02-16T05:25:49.036586Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036586Z","LastActivityAt":"2023-02-16T05:25:49.036586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037327Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1934,"ScoreDef":6438,"RankSup":1314,"ScoreSup":16,"RankTotal":2073,"ScoreTotal":6454,"ID":698766369,"Name":"SHIZA","NumVillages":1,"Points":1957,"Rank":1660,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698766369","BestRank":1660,"BestRankAt":"2023-02-16T05:25:56.278162Z","MostPoints":1957,"MostPointsAt":"2023-02-16T05:25:49.036587Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036587Z","LastActivityAt":"2023-02-16T05:25:49.036587Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037328Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1847,"ScoreDef":9854,"RankSup":1391,"ScoreSup":2,"RankTotal":1994,"ScoreTotal":9856,"ID":698766454,"Name":"Doniel","NumVillages":1,"Points":222,"Rank":2242,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698766454","BestRank":2242,"BestRankAt":"2023-02-16T05:25:56.278163Z","MostPoints":222,"MostPointsAt":"2023-02-16T05:25:49.036587Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036587Z","LastActivityAt":"2023-02-16T05:25:49.036587Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037329Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":331,"ScoreAtt":791687,"RankDef":1393,"ScoreDef":44487,"RankSup":99,"ScoreSup":2247390,"RankTotal":284,"ScoreTotal":3083564,"ID":698768565,"Name":"Ronin1995","NumVillages":182,"Points":1553518,"Rank":76,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698768565","BestRank":75,"BestRankAt":"2023-02-16T05:25:49.036588Z","MostPoints":1553518,"MostPointsAt":"2023-02-16T05:25:56.278163Z","MostVillages":182,"MostVillagesAt":"2023-02-16T05:25:49.036588Z","LastActivityAt":"2023-02-16T05:25:56.278163Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":345,"ScoreAtt":720890,"RankDef":115,"ScoreDef":3235406,"RankSup":265,"ScoreSup":631670,"RankTotal":207,"ScoreTotal":4587966,"ID":698769107,"Name":"DobromirPan","NumVillages":88,"Points":591523,"Rank":245,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698769107","BestRank":245,"BestRankAt":"2023-02-16T05:25:56.278164Z","MostPoints":591523,"MostPointsAt":"2023-02-16T05:25:56.278164Z","MostVillages":88,"MostVillagesAt":"2023-02-16T05:25:49.036588Z","LastActivityAt":"2023-02-16T05:25:56.278164Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037331Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1961,"ScoreAtt":9,"RankDef":2367,"ScoreDef":28,"RankSup":1351,"ScoreSup":5,"RankTotal":2449,"ScoreTotal":42,"ID":698776998,"Name":"Monia18","NumVillages":1,"Points":1808,"Rank":1689,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698776998","BestRank":1689,"BestRankAt":"2023-02-16T05:25:56.278164Z","MostPoints":1808,"MostPointsAt":"2023-02-16T05:25:56.278164Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036589Z","LastActivityAt":"2023-02-16T05:25:56.278164Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037333Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1205,"ScoreAtt":10341,"RankDef":861,"ScoreDef":184930,"RankSup":0,"ScoreSup":0,"RankTotal":1145,"ScoreTotal":195271,"ID":698783754,"Name":"proof333","NumVillages":1,"Points":7960,"Rank":1157,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698783754","BestRank":1157,"BestRankAt":"2023-02-16T05:25:56.278165Z","MostPoints":7960,"MostPointsAt":"2023-02-16T05:25:49.036589Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036589Z","LastActivityAt":"2023-02-16T05:25:49.036589Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037334Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1867,"ScoreAtt":82,"RankDef":1575,"ScoreDef":27359,"RankSup":0,"ScoreSup":0,"RankTotal":1791,"ScoreTotal":27441,"ID":698785538,"Name":"LastWish","NumVillages":1,"Points":645,"Rank":1950,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698785538","BestRank":1950,"BestRankAt":"2023-02-16T05:25:56.278165Z","MostPoints":645,"MostPointsAt":"2023-02-16T05:25:49.03659Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03659Z","LastActivityAt":"2023-02-16T05:25:49.03659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037335Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":727,"ScoreAtt":110777,"RankDef":1658,"ScoreDef":21625,"RankSup":27,"ScoreSup":4820324,"RankTotal":190,"ScoreTotal":4952726,"ID":698786826,"Name":"Sir develes","NumVillages":111,"Points":1016410,"Rank":144,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698786826","BestRank":142,"BestRankAt":"2023-02-16T05:25:49.036593Z","MostPoints":1016410,"MostPointsAt":"2023-02-16T05:25:49.036593Z","MostVillages":111,"MostVillagesAt":"2023-02-16T05:25:49.036593Z","LastActivityAt":"2023-02-16T05:25:49.036593Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037336Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":452,"ScoreAtt":446204,"RankDef":80,"ScoreDef":4326401,"RankSup":327,"ScoreSup":450524,"RankTotal":179,"ScoreTotal":5223129,"ID":698789253,"Name":"Galasfree","NumVillages":1,"Points":3011,"Rank":1511,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698789253","BestRank":1511,"BestRankAt":"2023-02-16T05:25:56.278166Z","MostPoints":3011,"MostPointsAt":"2023-02-16T05:25:56.278166Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036594Z","LastActivityAt":"2023-02-16T05:25:56.278166Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037337Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1143,"ScoreAtt":13983,"RankDef":2067,"ScoreDef":3087,"RankSup":0,"ScoreSup":0,"RankTotal":1896,"ScoreTotal":17070,"ID":698791053,"Name":"Kanut","NumVillages":1,"Points":208,"Rank":2258,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698791053","BestRank":2258,"BestRankAt":"2023-02-16T05:25:56.278167Z","MostPoints":208,"MostPointsAt":"2023-02-16T05:25:56.278167Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036594Z","LastActivityAt":"2023-02-16T05:25:56.278167Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2346,"ScoreDef":50,"RankSup":0,"ScoreSup":0,"RankTotal":2442,"ScoreTotal":50,"ID":698795589,"Name":"endriu1990","NumVillages":1,"Points":689,"Rank":1935,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698795589","BestRank":1935,"BestRankAt":"2023-02-16T05:25:56.278167Z","MostPoints":689,"MostPointsAt":"2023-02-16T05:25:56.278167Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036595Z","LastActivityAt":"2023-02-16T05:25:56.278168Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2372,"ScoreDef":25,"RankSup":0,"ScoreSup":0,"RankTotal":2470,"ScoreTotal":25,"ID":698798180,"Name":"nocna1993","NumVillages":1,"Points":26,"Rank":2669,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698798180","BestRank":2669,"BestRankAt":"2023-02-16T05:25:56.278168Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036595Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036595Z","LastActivityAt":"2023-02-16T05:25:49.036595Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1306,"ScoreAtt":6302,"RankDef":1580,"ScoreDef":26600,"RankSup":1384,"ScoreSup":2,"RankTotal":1742,"ScoreTotal":32904,"ID":698806018,"Name":"krzysztofgucio","NumVillages":14,"Points":72418,"Rank":603,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698806018","BestRank":603,"BestRankAt":"2023-02-16T05:25:56.278168Z","MostPoints":72418,"MostPointsAt":"2023-02-16T05:25:56.278169Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:56.278168Z","LastActivityAt":"2023-02-16T05:25:56.278169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":62,"ScoreAtt":4410499,"RankDef":23,"ScoreDef":14262032,"RankSup":269,"ScoreSup":617743,"RankTotal":32,"ScoreTotal":19290274,"ID":698807570,"Name":"xHavajek","NumVillages":245,"Points":2310770,"Rank":35,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698807570","BestRank":35,"BestRankAt":"2023-02-16T05:25:49.036596Z","MostPoints":2310770,"MostPointsAt":"2023-02-16T05:25:56.278169Z","MostVillages":245,"MostVillagesAt":"2023-02-16T05:25:56.278169Z","LastActivityAt":"2023-02-16T05:25:56.278169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":813,"ScoreAtt":75402,"RankDef":439,"ScoreDef":645083,"RankSup":858,"ScoreSup":15646,"RankTotal":709,"ScoreTotal":736131,"ID":698811281,"Name":"SHENRON81","NumVillages":0,"Points":0,"Rank":2939,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698811281","BestRank":2939,"BestRankAt":"2023-02-16T05:25:56.27817Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036597Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036597Z","LastActivityAt":"2023-02-16T05:25:49.036597Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1190,"ScoreAtt":10954,"RankDef":2230,"ScoreDef":639,"RankSup":0,"ScoreSup":0,"RankTotal":1968,"ScoreTotal":11593,"ID":698817235,"Name":"Lord Baszczu123","NumVillages":3,"Points":19296,"Rank":931,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698817235","BestRank":931,"BestRankAt":"2023-02-16T05:25:49.036597Z","MostPoints":19296,"MostPointsAt":"2023-02-16T05:25:49.036597Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036597Z","LastActivityAt":"2023-02-16T05:25:49.036598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":350,"ScoreAtt":700256,"RankDef":61,"ScoreDef":5640061,"RankSup":268,"ScoreSup":621967,"RankTotal":127,"ScoreTotal":6962284,"ID":698823542,"Name":"AwangardazCiechanowa","NumVillages":4,"Points":36659,"Rank":764,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698823542","BestRank":764,"BestRankAt":"2023-02-16T05:25:49.036598Z","MostPoints":36659,"MostPointsAt":"2023-02-16T05:25:49.036598Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036598Z","LastActivityAt":"2023-02-16T05:25:49.036598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1808,"ScoreAtt":166,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2391,"ScoreTotal":166,"ID":698826217,"Name":"AllAdin","NumVillages":1,"Points":372,"Rank":2096,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698826217","BestRank":2096,"BestRankAt":"2023-02-16T05:25:56.278171Z","MostPoints":372,"MostPointsAt":"2023-02-16T05:25:56.278171Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036598Z","LastActivityAt":"2023-02-16T05:25:56.278171Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1327,"ScoreAtt":5655,"RankDef":706,"ScoreDef":270814,"RankSup":337,"ScoreSup":437750,"RankTotal":720,"ScoreTotal":714219,"ID":698826986,"Name":"Chirucas","NumVillages":16,"Points":43887,"Rank":719,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698826986","BestRank":678,"BestRankAt":"2023-02-16T05:25:49.036599Z","MostPoints":51678,"MostPointsAt":"2023-02-16T05:25:49.036599Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.036599Z","LastActivityAt":"2023-02-16T05:25:49.036599Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":427,"ScoreAtt":493624,"RankDef":21,"ScoreDef":15955280,"RankSup":335,"ScoreSup":440149,"RankTotal":37,"ScoreTotal":16889053,"ID":698829590,"Name":"SƂodki Urai","NumVillages":37,"Points":334694,"Rank":339,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698829590","BestRank":339,"BestRankAt":"2023-02-16T05:25:49.036599Z","MostPoints":334694,"MostPointsAt":"2023-02-16T05:25:56.278172Z","MostVillages":37,"MostVillagesAt":"2023-02-16T05:25:49.0366Z","LastActivityAt":"2023-02-16T05:25:56.278172Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1947,"ScoreAtt":15,"RankDef":2484,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2491,"ScoreTotal":16,"ID":698830638,"Name":"ascend","NumVillages":1,"Points":2812,"Rank":1544,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698830638","BestRank":1544,"BestRankAt":"2023-02-16T05:25:56.278172Z","MostPoints":2812,"MostPointsAt":"2023-02-16T05:25:56.278173Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.0366Z","LastActivityAt":"2023-02-16T05:25:56.278173Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1127,"ScoreAtt":15770,"RankDef":511,"ScoreDef":502449,"RankSup":1057,"ScoreSup":2689,"RankTotal":823,"ScoreTotal":520908,"ID":698837993,"Name":"Don Quijote","NumVillages":3,"Points":5535,"Rank":1290,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698837993","BestRank":1290,"BestRankAt":"2023-02-16T05:25:56.278173Z","MostPoints":5535,"MostPointsAt":"2023-02-16T05:25:56.278173Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036601Z","LastActivityAt":"2023-02-16T05:25:56.278173Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":637,"ScoreAtt":171918,"RankDef":341,"ScoreDef":909796,"RankSup":0,"ScoreSup":0,"RankTotal":596,"ScoreTotal":1081714,"ID":698842996,"Name":"Ernesto Hoosta","NumVillages":0,"Points":0,"Rank":2940,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698842996","BestRank":2940,"BestRankAt":"2023-02-16T05:25:56.278174Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036601Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036601Z","LastActivityAt":"2023-02-16T05:25:49.036601Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037355Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698845107,"Name":"Swiechu","NumVillages":1,"Points":102,"Rank":2454,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698845107","BestRank":2454,"BestRankAt":"2023-02-16T05:25:56.278174Z","MostPoints":102,"MostPointsAt":"2023-02-16T05:25:49.036602Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036602Z","LastActivityAt":"2023-02-16T05:25:49.036602Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037356Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":487,"ScoreAtt":378801,"RankDef":1487,"ScoreDef":34971,"RankSup":552,"ScoreSup":130293,"RankTotal":808,"ScoreTotal":544065,"ID":698845189,"Name":"tesa","NumVillages":35,"Points":309732,"Rank":349,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698845189","BestRank":349,"BestRankAt":"2023-02-16T05:25:56.278174Z","MostPoints":309732,"MostPointsAt":"2023-02-16T05:25:56.278175Z","MostVillages":35,"MostVillagesAt":"2023-02-16T05:25:49.036602Z","LastActivityAt":"2023-02-16T05:25:56.278175Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037357Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1901,"ScoreAtt":40,"RankDef":1211,"ScoreDef":70156,"RankSup":1233,"ScoreSup":188,"RankTotal":1498,"ScoreTotal":70384,"ID":698848067,"Name":"Sir Hycel","NumVillages":1,"Points":7528,"Rank":1181,"TribeID":305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698848067","BestRank":1181,"BestRankAt":"2023-02-16T05:25:56.278175Z","MostPoints":7528,"MostPointsAt":"2023-02-16T05:25:56.278175Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036603Z","LastActivityAt":"2023-02-16T05:25:56.278175Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037359Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1459,"ScoreAtt":2917,"RankDef":1045,"ScoreDef":109223,"RankSup":1168,"ScoreSup":641,"RankTotal":1344,"ScoreTotal":112781,"ID":698848373,"Name":"BloodyMath","NumVillages":10,"Points":31255,"Rank":805,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698848373","BestRank":805,"BestRankAt":"2023-02-16T05:25:56.278176Z","MostPoints":31255,"MostPointsAt":"2023-02-16T05:25:56.278176Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.036603Z","LastActivityAt":"2023-02-16T05:25:56.278176Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03736Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1308,"ScoreAtt":6276,"RankDef":339,"ScoreDef":926122,"RankSup":572,"ScoreSup":117220,"RankTotal":604,"ScoreTotal":1049618,"ID":698849979,"Name":"Mihalina","NumVillages":1,"Points":518,"Rank":2002,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698849979","BestRank":2002,"BestRankAt":"2023-02-16T05:25:56.278176Z","MostPoints":518,"MostPointsAt":"2023-02-16T05:25:56.278176Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036604Z","LastActivityAt":"2023-02-16T05:25:56.278176Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037361Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698850251,"Name":"NeXi","NumVillages":1,"Points":26,"Rank":2670,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698850251","BestRank":2670,"BestRankAt":"2023-02-16T05:25:56.278177Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036605Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036604Z","LastActivityAt":"2023-02-16T05:25:49.036605Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037363Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698850319,"Name":"Patrz Ale Nie Zjadaj","NumVillages":1,"Points":26,"Rank":2671,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698850319","BestRank":2671,"BestRankAt":"2023-02-16T05:25:56.278177Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036605Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036605Z","LastActivityAt":"2023-02-16T05:25:49.036605Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037364Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698854238,"Name":"Querto","NumVillages":1,"Points":237,"Rank":2239,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698854238","BestRank":2239,"BestRankAt":"2023-02-16T05:25:49.036605Z","MostPoints":237,"MostPointsAt":"2023-02-16T05:25:49.036606Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036606Z","LastActivityAt":"2023-02-16T05:25:49.036606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037365Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1484,"ScoreAtt":2475,"RankDef":2258,"ScoreDef":437,"RankSup":1146,"ScoreSup":960,"RankTotal":2160,"ScoreTotal":3872,"ID":698855681,"Name":"Pieguss","NumVillages":1,"Points":162,"Rank":2338,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698855681","BestRank":2338,"BestRankAt":"2023-02-16T05:25:56.278178Z","MostPoints":162,"MostPointsAt":"2023-02-16T05:25:49.036606Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036606Z","LastActivityAt":"2023-02-16T05:25:49.036606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037367Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698866770,"Name":"muchaPG","NumVillages":1,"Points":495,"Rank":2014,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698866770","BestRank":2014,"BestRankAt":"2023-02-16T05:25:56.278178Z","MostPoints":495,"MostPointsAt":"2023-02-16T05:25:56.278178Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036607Z","LastActivityAt":"2023-02-16T05:25:56.278178Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037368Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":447,"ScoreAtt":453292,"RankDef":528,"ScoreDef":483039,"RankSup":430,"ScoreSup":254403,"RankTotal":568,"ScoreTotal":1190734,"ID":698867446,"Name":"pisiur71","NumVillages":71,"Points":668859,"Rank":212,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698867446","BestRank":212,"BestRankAt":"2023-02-16T05:25:56.278179Z","MostPoints":668859,"MostPointsAt":"2023-02-16T05:25:56.278179Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:49.036607Z","LastActivityAt":"2023-02-16T05:25:56.278179Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037369Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":319,"ScoreAtt":835545,"RankDef":399,"ScoreDef":750341,"RankSup":232,"ScoreSup":763529,"RankTotal":365,"ScoreTotal":2349415,"ID":698867483,"Name":"pa ZZI","NumVillages":120,"Points":746077,"Rank":191,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698867483","BestRank":191,"BestRankAt":"2023-02-16T05:25:56.278179Z","MostPoints":746077,"MostPointsAt":"2023-02-16T05:25:56.278179Z","MostVillages":120,"MostVillagesAt":"2023-02-16T05:25:56.278179Z","LastActivityAt":"2023-02-16T05:25:56.27818Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037371Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":937,"ScoreAtt":42906,"RankDef":417,"ScoreDef":703289,"RankSup":357,"ScoreSup":404605,"RankTotal":580,"ScoreTotal":1150800,"ID":698879638,"Name":"leito3","NumVillages":4,"Points":8366,"Rank":1138,"TribeID":1760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698879638","BestRank":1138,"BestRankAt":"2023-02-16T05:25:56.27818Z","MostPoints":8366,"MostPointsAt":"2023-02-16T05:25:49.036608Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036608Z","LastActivityAt":"2023-02-16T05:25:49.036608Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":979,"ScoreAtt":33553,"RankDef":153,"ScoreDef":2539293,"RankSup":639,"ScoreSup":76318,"RankTotal":330,"ScoreTotal":2649164,"ID":698881022,"Name":"sila","NumVillages":8,"Points":43472,"Rank":724,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698881022","BestRank":724,"BestRankAt":"2023-02-16T05:25:56.27818Z","MostPoints":43472,"MostPointsAt":"2023-02-16T05:25:56.27818Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.036609Z","LastActivityAt":"2023-02-16T05:25:56.278181Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":58,"ScoreAtt":4525870,"RankDef":1013,"ScoreDef":123068,"RankSup":89,"ScoreSup":2392381,"RankTotal":125,"ScoreTotal":7041319,"ID":698884287,"Name":"Nervouse","NumVillages":132,"Points":1305117,"Rank":97,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698884287","BestRank":96,"BestRankAt":"2023-02-16T05:25:49.036609Z","MostPoints":1305117,"MostPointsAt":"2023-02-16T05:25:56.278181Z","MostVillages":132,"MostVillagesAt":"2023-02-16T05:25:49.036609Z","LastActivityAt":"2023-02-16T05:25:56.278181Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698885960,"Name":"Sir fojerman","NumVillages":1,"Points":97,"Rank":2465,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698885960","BestRank":2465,"BestRankAt":"2023-02-16T05:25:56.278181Z","MostPoints":97,"MostPointsAt":"2023-02-16T05:25:49.03661Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03661Z","LastActivityAt":"2023-02-16T05:25:49.03661Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1053,"ScoreAtt":22316,"RankDef":120,"ScoreDef":3177177,"RankSup":1240,"ScoreSup":153,"RankTotal":276,"ScoreTotal":3199646,"ID":698895940,"Name":"tnt3nt","NumVillages":13,"Points":45445,"Rank":716,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698895940","BestRank":716,"BestRankAt":"2023-02-16T05:25:56.278182Z","MostPoints":45445,"MostPointsAt":"2023-02-16T05:25:56.278182Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.03661Z","LastActivityAt":"2023-02-16T05:25:56.278182Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1548,"ScoreAtt":1809,"RankDef":1141,"ScoreDef":86104,"RankSup":0,"ScoreSup":0,"RankTotal":1435,"ScoreTotal":87913,"ID":698897472,"Name":"AndrewwXYZ","NumVillages":1,"Points":1310,"Rank":1773,"TribeID":1431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698897472","BestRank":1773,"BestRankAt":"2023-02-16T05:25:56.278182Z","MostPoints":1310,"MostPointsAt":"2023-02-16T05:25:49.036611Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036611Z","LastActivityAt":"2023-02-16T05:25:49.036611Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2491,"ScoreDef":3,"RankSup":0,"ScoreSup":0,"RankTotal":2568,"ScoreTotal":3,"ID":698897841,"Name":"Error?","NumVillages":1,"Points":227,"Rank":2255,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698897841","BestRank":2255,"BestRankAt":"2023-02-16T05:25:49.036611Z","MostPoints":227,"MostPointsAt":"2023-02-16T05:25:49.036612Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036612Z","LastActivityAt":"2023-02-16T05:25:49.036612Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03738Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":969,"ScoreAtt":35542,"RankDef":1366,"ScoreDef":48333,"RankSup":0,"ScoreSup":0,"RankTotal":1448,"ScoreTotal":83875,"ID":698905177,"Name":"TheWolfie","NumVillages":8,"Points":50239,"Rank":693,"TribeID":1127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698905177","BestRank":693,"BestRankAt":"2023-02-16T05:25:56.278183Z","MostPoints":50239,"MostPointsAt":"2023-02-16T05:25:56.278183Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.036612Z","LastActivityAt":"2023-02-16T05:25:56.278183Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":798,"ScoreAtt":81751,"RankDef":1597,"ScoreDef":25565,"RankSup":0,"ScoreSup":0,"RankTotal":1360,"ScoreTotal":107316,"ID":698906190,"Name":"MaraczxD","NumVillages":9,"Points":59398,"Rank":657,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698906190","BestRank":657,"BestRankAt":"2023-02-16T05:25:56.278183Z","MostPoints":59398,"MostPointsAt":"2023-02-16T05:25:56.278184Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036613Z","LastActivityAt":"2023-02-16T05:25:56.278184Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2050,"ScoreDef":3530,"RankSup":0,"ScoreSup":0,"RankTotal":2172,"ScoreTotal":3530,"ID":698906643,"Name":"ArturLublin","NumVillages":1,"Points":1094,"Rank":1822,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698906643","BestRank":1822,"BestRankAt":"2023-02-16T05:25:56.278184Z","MostPoints":1094,"MostPointsAt":"2023-02-16T05:25:56.278184Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036613Z","LastActivityAt":"2023-02-16T05:25:56.278184Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":138,"ScoreAtt":2253300,"RankDef":185,"ScoreDef":2049057,"RankSup":417,"ScoreSup":282270,"RankTotal":208,"ScoreTotal":4584627,"ID":698908184,"Name":"EXPUGNATOR","NumVillages":127,"Points":946411,"Rank":155,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698908184","BestRank":155,"BestRankAt":"2023-02-16T05:25:56.278185Z","MostPoints":946411,"MostPointsAt":"2023-02-16T05:25:56.278185Z","MostVillages":127,"MostVillagesAt":"2023-02-16T05:25:56.278185Z","LastActivityAt":"2023-02-16T05:25:56.278185Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1439,"ScoreAtt":3253,"RankDef":697,"ScoreDef":280716,"RankSup":1373,"ScoreSup":3,"RankTotal":1020,"ScoreTotal":283972,"ID":698908912,"Name":"Chybik","NumVillages":9,"Points":92130,"Rank":552,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698908912","BestRank":552,"BestRankAt":"2023-02-16T05:25:56.278185Z","MostPoints":92209,"MostPointsAt":"2023-02-16T05:25:49.036614Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036614Z","LastActivityAt":"2023-02-16T05:25:49.036614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1807,"ScoreDef":11674,"RankSup":0,"ScoreSup":0,"RankTotal":1967,"ScoreTotal":11674,"ID":698911639,"Name":"Kafaro","NumVillages":1,"Points":460,"Rank":2034,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698911639","BestRank":2034,"BestRankAt":"2023-02-16T05:25:56.278186Z","MostPoints":460,"MostPointsAt":"2023-02-16T05:25:49.036615Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036615Z","LastActivityAt":"2023-02-16T05:25:49.036615Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1820,"ScoreAtt":144,"RankDef":2440,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2394,"ScoreTotal":154,"ID":698913618,"Name":"kukis","NumVillages":1,"Points":2549,"Rank":1569,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698913618","BestRank":1569,"BestRankAt":"2023-02-16T05:25:56.278186Z","MostPoints":2549,"MostPointsAt":"2023-02-16T05:25:56.278186Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036615Z","LastActivityAt":"2023-02-16T05:25:56.278186Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698915069,"Name":"Squander","NumVillages":1,"Points":219,"Rank":2273,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698915069","BestRank":2273,"BestRankAt":"2023-02-16T05:25:49.036616Z","MostPoints":219,"MostPointsAt":"2023-02-16T05:25:49.036616Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036616Z","LastActivityAt":"2023-02-16T05:25:49.036616Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037389Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698916256,"Name":"Blak widow","NumVillages":1,"Points":237,"Rank":2240,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698916256","BestRank":2240,"BestRankAt":"2023-02-16T05:25:49.036616Z","MostPoints":237,"MostPointsAt":"2023-02-16T05:25:49.036617Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036616Z","LastActivityAt":"2023-02-16T05:25:49.036617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03739Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":822,"ScoreAtt":71394,"RankDef":217,"ScoreDef":1757593,"RankSup":694,"ScoreSup":51741,"RankTotal":424,"ScoreTotal":1880728,"ID":698916948,"Name":"Jose2015","NumVillages":7,"Points":33606,"Rank":782,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698916948","BestRank":782,"BestRankAt":"2023-02-16T05:25:49.036617Z","MostPoints":33606,"MostPointsAt":"2023-02-16T05:25:49.036617Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.036617Z","LastActivityAt":"2023-02-16T05:25:49.036617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1487,"ScoreAtt":2430,"RankDef":1948,"ScoreDef":6055,"RankSup":1145,"ScoreSup":996,"RankTotal":2001,"ScoreTotal":9481,"ID":698926585,"Name":"Sir Rekin II","NumVillages":1,"Points":9905,"Rank":1082,"TribeID":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698926585","BestRank":1082,"BestRankAt":"2023-02-16T05:25:56.278187Z","MostPoints":9905,"MostPointsAt":"2023-02-16T05:25:49.036618Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036618Z","LastActivityAt":"2023-02-16T05:25:49.036618Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2213,"ScoreDef":793,"RankSup":0,"ScoreSup":0,"RankTotal":2301,"ScoreTotal":793,"ID":698931404,"Name":"Lord lukis2012","NumVillages":1,"Points":1734,"Rank":1697,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698931404","BestRank":1697,"BestRankAt":"2023-02-16T05:25:56.278188Z","MostPoints":1734,"MostPointsAt":"2023-02-16T05:25:56.278188Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036618Z","LastActivityAt":"2023-02-16T05:25:56.278188Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2052,"ScoreDef":3499,"RankSup":0,"ScoreSup":0,"RankTotal":2174,"ScoreTotal":3499,"ID":698931998,"Name":"katarzyna2012","NumVillages":1,"Points":1898,"Rank":1673,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698931998","BestRank":1673,"BestRankAt":"2023-02-16T05:25:56.278188Z","MostPoints":1898,"MostPointsAt":"2023-02-16T05:25:56.278188Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036619Z","LastActivityAt":"2023-02-16T05:25:56.278188Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":950,"ScoreAtt":39543,"RankDef":1652,"ScoreDef":21817,"RankSup":980,"ScoreSup":5913,"RankTotal":1511,"ScoreTotal":67273,"ID":698934729,"Name":"Gregor20-90","NumVillages":5,"Points":14955,"Rank":998,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698934729","BestRank":998,"BestRankAt":"2023-02-16T05:25:56.278189Z","MostPoints":14955,"MostPointsAt":"2023-02-16T05:25:56.278189Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.036619Z","LastActivityAt":"2023-02-16T05:25:56.278189Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698936852,"Name":"ksiazejanusz","NumVillages":1,"Points":1894,"Rank":1674,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698936852","BestRank":1674,"BestRankAt":"2023-02-16T05:25:56.278189Z","MostPoints":1894,"MostPointsAt":"2023-02-16T05:25:56.278189Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03662Z","LastActivityAt":"2023-02-16T05:25:56.278189Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":768,"ScoreDef":234404,"RankSup":0,"ScoreSup":0,"RankTotal":1080,"ScoreTotal":234404,"ID":698938264,"Name":"alanbebz","NumVillages":1,"Points":894,"Rank":1868,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698938264","BestRank":1868,"BestRankAt":"2023-02-16T05:25:56.27819Z","MostPoints":894,"MostPointsAt":"2023-02-16T05:25:49.03662Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03662Z","LastActivityAt":"2023-02-16T05:25:49.03662Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2430,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2512,"ScoreTotal":10,"ID":698941586,"Name":"Vito Corleone 2","NumVillages":1,"Points":1576,"Rank":1723,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698941586","BestRank":1723,"BestRankAt":"2023-02-16T05:25:56.27819Z","MostPoints":1576,"MostPointsAt":"2023-02-16T05:25:56.27819Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036621Z","LastActivityAt":"2023-02-16T05:25:56.278191Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.0374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1749,"ScoreAtt":301,"RankDef":852,"ScoreDef":186724,"RankSup":0,"ScoreSup":0,"RankTotal":1168,"ScoreTotal":187025,"ID":698946155,"Name":"Lord Lord Giza","NumVillages":1,"Points":2639,"Rank":1561,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698946155","BestRank":1561,"BestRankAt":"2023-02-16T05:25:56.278191Z","MostPoints":2639,"MostPointsAt":"2023-02-16T05:25:56.278191Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036621Z","LastActivityAt":"2023-02-16T05:25:56.278191Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1666,"ScoreAtt":716,"RankDef":1078,"ScoreDef":100183,"RankSup":0,"ScoreSup":0,"RankTotal":1384,"ScoreTotal":100899,"ID":698957176,"Name":"Pogodny WĂłdz","NumVillages":1,"Points":325,"Rank":2131,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698957176","BestRank":2131,"BestRankAt":"2023-02-16T05:25:56.278191Z","MostPoints":325,"MostPointsAt":"2023-02-16T05:25:56.278192Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036622Z","LastActivityAt":"2023-02-16T05:25:56.278192Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":17,"ScoreAtt":9398986,"RankDef":289,"ScoreDef":1235820,"RankSup":40,"ScoreSup":4030320,"RankTotal":52,"ScoreTotal":14665126,"ID":698962117,"Name":"pawcio231","NumVillages":404,"Points":3476965,"Rank":12,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698962117","BestRank":12,"BestRankAt":"2023-02-16T05:25:49.036622Z","MostPoints":3476965,"MostPointsAt":"2023-02-16T05:25:56.278192Z","MostVillages":404,"MostVillagesAt":"2023-02-16T05:25:49.036622Z","LastActivityAt":"2023-02-16T05:25:56.278192Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":29,"ScoreAtt":6887210,"RankDef":60,"ScoreDef":5753808,"RankSup":66,"ScoreSup":2884354,"RankTotal":46,"ScoreTotal":15525372,"ID":698971484,"Name":"ryju15","NumVillages":224,"Points":1891397,"Rank":55,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698971484","BestRank":55,"BestRankAt":"2023-02-16T05:25:49.036623Z","MostPoints":1891397,"MostPointsAt":"2023-02-16T05:25:56.278193Z","MostVillages":225,"MostVillagesAt":"2023-02-16T05:25:49.036623Z","LastActivityAt":"2023-02-16T05:25:56.278193Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1798,"ScoreAtt":179,"RankDef":637,"ScoreDef":339232,"RankSup":0,"ScoreSup":0,"RankTotal":969,"ScoreTotal":339411,"ID":698983867,"Name":"Rommel","NumVillages":1,"Points":371,"Rank":2097,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698983867","BestRank":2097,"BestRankAt":"2023-02-16T05:25:56.278193Z","MostPoints":371,"MostPointsAt":"2023-02-16T05:25:49.036624Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036624Z","LastActivityAt":"2023-02-16T05:25:49.036624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":698984562,"Name":"krzok14","NumVillages":1,"Points":71,"Rank":2501,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698984562","BestRank":2501,"BestRankAt":"2023-02-16T05:25:56.278194Z","MostPoints":71,"MostPointsAt":"2023-02-16T05:25:49.036624Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036624Z","LastActivityAt":"2023-02-16T05:25:49.036624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1064,"ScoreAtt":20922,"RankDef":435,"ScoreDef":647814,"RankSup":602,"ScoreSup":98722,"RankTotal":693,"ScoreTotal":767458,"ID":698987598,"Name":"Aniuta","NumVillages":0,"Points":0,"Rank":2941,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698987598","BestRank":2941,"BestRankAt":"2023-02-16T05:25:56.278194Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036625Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036625Z","LastActivityAt":"2023-02-16T05:25:49.036625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":976,"ScoreAtt":33839,"RankDef":283,"ScoreDef":1285969,"RankSup":644,"ScoreSup":75426,"RankTotal":521,"ScoreTotal":1395234,"ID":698993706,"Name":"barot2","NumVillages":6,"Points":52588,"Rank":678,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698993706","BestRank":677,"BestRankAt":"2023-02-16T05:25:49.036625Z","MostPoints":52588,"MostPointsAt":"2023-02-16T05:25:56.278195Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036625Z","LastActivityAt":"2023-02-16T05:25:56.278195Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037411Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":359,"ScoreAtt":678653,"RankDef":1324,"ScoreDef":54788,"RankSup":0,"ScoreSup":0,"RankTotal":712,"ScoreTotal":733441,"ID":698996782,"Name":"MrDynamitePl","NumVillages":27,"Points":199078,"Rank":417,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698996782","BestRank":414,"BestRankAt":"2023-02-16T05:25:49.036626Z","MostPoints":199078,"MostPointsAt":"2023-02-16T05:25:56.278195Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:49.036626Z","LastActivityAt":"2023-02-16T05:25:56.278195Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037412Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":974,"ScoreDef":135573,"RankSup":0,"ScoreSup":0,"RankTotal":1280,"ScoreTotal":135573,"ID":698998882,"Name":"Ervin21","NumVillages":2,"Points":11193,"Rank":1055,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698998882","BestRank":1053,"BestRankAt":"2023-02-16T05:25:49.036626Z","MostPoints":11193,"MostPointsAt":"2023-02-16T05:25:56.278196Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036626Z","LastActivityAt":"2023-02-16T05:25:56.278196Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037412Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":693,"ScoreAtt":133381,"RankDef":1327,"ScoreDef":54026,"RankSup":223,"ScoreSup":801133,"RankTotal":619,"ScoreTotal":988540,"ID":698999105,"Name":"Rose1827","NumVillages":79,"Points":786701,"Rank":185,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=698999105","BestRank":185,"BestRankAt":"2023-02-16T05:25:49.036627Z","MostPoints":786701,"MostPointsAt":"2023-02-16T05:25:56.278196Z","MostVillages":79,"MostVillagesAt":"2023-02-16T05:25:49.036627Z","LastActivityAt":"2023-02-16T05:25:56.278196Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037413Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1852,"ScoreAtt":100,"RankDef":1260,"ScoreDef":61262,"RankSup":0,"ScoreSup":0,"RankTotal":1538,"ScoreTotal":61362,"ID":699004723,"Name":"PLSPopo","NumVillages":0,"Points":0,"Rank":2942,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699004723","BestRank":2942,"BestRankAt":"2023-02-16T05:25:56.278197Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036627Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036627Z","LastActivityAt":"2023-02-16T05:25:49.036628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2069,"ScoreDef":3027,"RankSup":0,"ScoreSup":0,"RankTotal":2186,"ScoreTotal":3027,"ID":699006683,"Name":"qsza","NumVillages":0,"Points":0,"Rank":2943,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699006683","BestRank":2943,"BestRankAt":"2023-02-16T05:25:56.278197Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036628Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036628Z","LastActivityAt":"2023-02-16T05:25:49.036628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1895,"ScoreDef":7894,"RankSup":0,"ScoreSup":0,"RankTotal":2038,"ScoreTotal":7894,"ID":699007059,"Name":"Lolitkaa","NumVillages":1,"Points":6536,"Rank":1228,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699007059","BestRank":1228,"BestRankAt":"2023-02-16T05:25:56.278198Z","MostPoints":6536,"MostPointsAt":"2023-02-16T05:25:49.036629Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036628Z","LastActivityAt":"2023-02-16T05:25:49.036629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699011096,"Name":"freaky97","NumVillages":1,"Points":26,"Rank":2672,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699011096","BestRank":2672,"BestRankAt":"2023-02-16T05:25:56.278198Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036629Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036629Z","LastActivityAt":"2023-02-16T05:25:49.036629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037416Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2073,"ScoreDef":2946,"RankSup":0,"ScoreSup":0,"RankTotal":2190,"ScoreTotal":2946,"ID":699011415,"Name":"noidea","NumVillages":1,"Points":458,"Rank":2035,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699011415","BestRank":2035,"BestRankAt":"2023-02-16T05:25:56.278198Z","MostPoints":458,"MostPointsAt":"2023-02-16T05:25:49.03663Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03663Z","LastActivityAt":"2023-02-16T05:25:49.03663Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037418Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":664,"ScoreAtt":148137,"RankDef":730,"ScoreDef":259639,"RankSup":353,"ScoreSup":408097,"RankTotal":678,"ScoreTotal":815873,"ID":699016994,"Name":"TeenShey","NumVillages":25,"Points":157317,"Rank":454,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699016994","BestRank":454,"BestRankAt":"2023-02-16T05:25:49.03663Z","MostPoints":157317,"MostPointsAt":"2023-02-16T05:25:49.03663Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.03663Z","LastActivityAt":"2023-02-16T05:25:49.03663Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03742Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1718,"ScoreDef":17159,"RankSup":0,"ScoreSup":0,"RankTotal":1895,"ScoreTotal":17159,"ID":699019249,"Name":"LoRd BoNiO","NumVillages":1,"Points":1916,"Rank":1666,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699019249","BestRank":1666,"BestRankAt":"2023-02-16T05:25:56.278199Z","MostPoints":1916,"MostPointsAt":"2023-02-16T05:25:56.278199Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036631Z","LastActivityAt":"2023-02-16T05:25:56.2782Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03742Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1648,"ScoreAtt":797,"RankDef":1772,"ScoreDef":13657,"RankSup":1243,"ScoreSup":131,"RankTotal":1928,"ScoreTotal":14585,"ID":699025262,"Name":"Pif paf...","NumVillages":1,"Points":989,"Rank":1851,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699025262","BestRank":1851,"BestRankAt":"2023-02-16T05:25:56.2782Z","MostPoints":989,"MostPointsAt":"2023-02-16T05:25:49.036631Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036631Z","LastActivityAt":"2023-02-16T05:25:49.036631Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037421Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1110,"ScoreDef":91974,"RankSup":0,"ScoreSup":0,"RankTotal":1421,"ScoreTotal":91974,"ID":699027000,"Name":"Martin1991","NumVillages":1,"Points":119,"Rank":2427,"TribeID":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699027000","BestRank":1295,"BestRankAt":"2023-02-16T05:25:49.036632Z","MostPoints":5600,"MostPointsAt":"2023-02-16T05:25:49.036632Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036632Z","LastActivityAt":"2023-02-16T05:25:49.036632Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037422Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1754,"ScoreAtt":288,"RankDef":1908,"ScoreDef":7438,"RankSup":945,"ScoreSup":7932,"RankTotal":1917,"ScoreTotal":15658,"ID":699034094,"Name":"Marduk","NumVillages":6,"Points":26739,"Rank":845,"TribeID":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699034094","BestRank":842,"BestRankAt":"2023-02-16T05:25:49.036632Z","MostPoints":26739,"MostPointsAt":"2023-02-16T05:25:56.278201Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036632Z","LastActivityAt":"2023-02-16T05:25:56.278201Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1696,"ScoreAtt":557,"RankDef":995,"ScoreDef":126159,"RankSup":1221,"ScoreSup":247,"RankTotal":1304,"ScoreTotal":126963,"ID":699037086,"Name":"telimena","NumVillages":4,"Points":9082,"Rank":1115,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699037086","BestRank":1115,"BestRankAt":"2023-02-16T05:25:56.278201Z","MostPoints":9082,"MostPointsAt":"2023-02-16T05:25:56.278201Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036633Z","LastActivityAt":"2023-02-16T05:25:56.278202Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1445,"ScoreAtt":3207,"RankDef":1529,"ScoreDef":30784,"RankSup":999,"ScoreSup":5010,"RankTotal":1683,"ScoreTotal":39001,"ID":699039013,"Name":"zbigbrader","NumVillages":2,"Points":7382,"Rank":1189,"TribeID":1538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699039013","BestRank":1189,"BestRankAt":"2023-02-16T05:25:56.278202Z","MostPoints":7382,"MostPointsAt":"2023-02-16T05:25:49.036633Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036633Z","LastActivityAt":"2023-02-16T05:25:49.036634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037424Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2373,"ScoreDef":41,"RankSup":0,"ScoreSup":0,"RankTotal":2471,"ScoreTotal":41,"ID":699040431,"Name":"Skylly","NumVillages":1,"Points":80,"Rank":2511,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699040431","BestRank":2511,"BestRankAt":"2023-02-16T05:25:49.036634Z","MostPoints":80,"MostPointsAt":"2023-02-16T05:25:49.036634Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036634Z","LastActivityAt":"2023-02-16T05:25:49.036634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037425Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1156,"ScoreAtt":12991,"RankDef":1081,"ScoreDef":98715,"RankSup":0,"ScoreSup":0,"RankTotal":1350,"ScoreTotal":111706,"ID":699054327,"Name":"kondzio95rrr","NumVillages":1,"Points":160,"Rank":2341,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699054327","BestRank":2341,"BestRankAt":"2023-02-16T05:25:56.278202Z","MostPoints":160,"MostPointsAt":"2023-02-16T05:25:56.278203Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036634Z","LastActivityAt":"2023-02-16T05:25:56.278203Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037425Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":178,"ScoreAtt":1799609,"RankDef":157,"ScoreDef":2458074,"RankSup":123,"ScoreSup":1808141,"RankTotal":149,"ScoreTotal":6065824,"ID":699054373,"Name":"chelseafan69","NumVillages":79,"Points":741183,"Rank":194,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699054373","BestRank":192,"BestRankAt":"2023-02-16T05:25:49.036635Z","MostPoints":741183,"MostPointsAt":"2023-02-16T05:25:49.036635Z","MostVillages":79,"MostVillagesAt":"2023-02-16T05:25:49.036635Z","LastActivityAt":"2023-02-16T05:25:49.036635Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699056677,"Name":"SHAKARA","NumVillages":1,"Points":478,"Rank":2024,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699056677","BestRank":2024,"BestRankAt":"2023-02-16T05:25:56.278203Z","MostPoints":478,"MostPointsAt":"2023-02-16T05:25:49.036636Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036636Z","LastActivityAt":"2023-02-16T05:25:49.036636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037428Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1968,"ScoreAtt":6,"RankDef":2445,"ScoreDef":10,"RankSup":1371,"ScoreSup":3,"RankTotal":2484,"ScoreTotal":19,"ID":699057459,"Name":"Crezys","NumVillages":1,"Points":1525,"Rank":1730,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699057459","BestRank":1730,"BestRankAt":"2023-02-16T05:25:56.278204Z","MostPoints":1525,"MostPointsAt":"2023-02-16T05:25:49.036636Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036636Z","LastActivityAt":"2023-02-16T05:25:49.036636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037428Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1948,"ScoreAtt":15,"RankDef":2441,"ScoreDef":10,"RankSup":1305,"ScoreSup":20,"RankTotal":2446,"ScoreTotal":45,"ID":699058253,"Name":"Belmondo77","NumVillages":1,"Points":1584,"Rank":1719,"TribeID":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699058253","BestRank":1719,"BestRankAt":"2023-02-16T05:25:56.278204Z","MostPoints":1584,"MostPointsAt":"2023-02-16T05:25:49.036637Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036637Z","LastActivityAt":"2023-02-16T05:25:49.036637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037429Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699062337,"Name":"*ZasadĆșca*","NumVillages":1,"Points":105,"Rank":2448,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699062337","BestRank":2448,"BestRankAt":"2023-02-16T05:25:56.278205Z","MostPoints":105,"MostPointsAt":"2023-02-16T05:25:49.036637Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036637Z","LastActivityAt":"2023-02-16T05:25:49.036637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03743Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":280,"ScoreAtt":998458,"RankDef":255,"ScoreDef":1460733,"RankSup":423,"ScoreSup":262122,"RankTotal":325,"ScoreTotal":2721313,"ID":699065686,"Name":"Sir skawiu","NumVillages":1,"Points":133,"Rank":2388,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699065686","BestRank":2388,"BestRankAt":"2023-02-16T05:25:56.278205Z","MostPoints":133,"MostPointsAt":"2023-02-16T05:25:49.036638Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036638Z","LastActivityAt":"2023-02-16T05:25:49.036638Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037431Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":705,"ScoreAtt":124486,"RankDef":1690,"ScoreDef":19019,"RankSup":1067,"ScoreSup":2486,"RankTotal":1254,"ScoreTotal":145991,"ID":699066118,"Name":"tomiwet","NumVillages":12,"Points":72583,"Rank":602,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699066118","BestRank":602,"BestRankAt":"2023-02-16T05:25:56.278206Z","MostPoints":72583,"MostPointsAt":"2023-02-16T05:25:56.278206Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.036638Z","LastActivityAt":"2023-02-16T05:25:56.278206Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037431Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1272,"ScoreAtt":7114,"RankDef":2415,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2057,"ScoreTotal":7124,"ID":699069151,"Name":"ToHellAndBack","NumVillages":3,"Points":9795,"Rank":1088,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699069151","BestRank":1088,"BestRankAt":"2023-02-16T05:25:56.278206Z","MostPoints":9795,"MostPointsAt":"2023-02-16T05:25:56.278206Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036639Z","LastActivityAt":"2023-02-16T05:25:56.278207Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":33,"ScoreAtt":6252276,"RankDef":412,"ScoreDef":718160,"RankSup":309,"ScoreSup":501837,"RankTotal":111,"ScoreTotal":7472273,"ID":699072129,"Name":"Charfa","NumVillages":307,"Points":2552004,"Rank":23,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699072129","BestRank":23,"BestRankAt":"2023-02-16T05:25:49.036639Z","MostPoints":2552004,"MostPointsAt":"2023-02-16T05:25:56.278207Z","MostVillages":307,"MostVillagesAt":"2023-02-16T05:25:49.036639Z","LastActivityAt":"2023-02-16T05:25:56.278207Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037433Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1198,"ScoreDef":72688,"RankSup":0,"ScoreSup":0,"RankTotal":1485,"ScoreTotal":72688,"ID":699075351,"Name":"JAN1234","NumVillages":1,"Points":4233,"Rank":1379,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699075351","BestRank":1379,"BestRankAt":"2023-02-16T05:25:56.278207Z","MostPoints":4233,"MostPointsAt":"2023-02-16T05:25:49.03664Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03664Z","LastActivityAt":"2023-02-16T05:25:49.03664Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037435Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699075613,"Name":"oliwer1996","NumVillages":1,"Points":6134,"Rank":1257,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699075613","BestRank":1257,"BestRankAt":"2023-02-16T05:25:56.278208Z","MostPoints":6134,"MostPointsAt":"2023-02-16T05:25:56.278208Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03664Z","LastActivityAt":"2023-02-16T05:25:56.278208Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":640,"ScoreAtt":166245,"RankDef":332,"ScoreDef":984577,"RankSup":267,"ScoreSup":625744,"RankTotal":450,"ScoreTotal":1776566,"ID":699083129,"Name":"skogu","NumVillages":25,"Points":195307,"Rank":420,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699083129","BestRank":420,"BestRankAt":"2023-02-16T05:25:49.036641Z","MostPoints":195307,"MostPointsAt":"2023-02-16T05:25:49.036641Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.036641Z","LastActivityAt":"2023-02-16T05:25:49.036641Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699084064,"Name":"gsxr600k2","NumVillages":1,"Points":191,"Rank":2297,"TribeID":1809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699084064","BestRank":2297,"BestRankAt":"2023-02-16T05:25:56.278209Z","MostPoints":191,"MostPointsAt":"2023-02-16T05:25:56.278209Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036642Z","LastActivityAt":"2023-02-16T05:25:56.278209Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037437Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":768,"ScoreAtt":93101,"RankDef":461,"ScoreDef":593183,"RankSup":818,"ScoreSup":21466,"RankTotal":726,"ScoreTotal":707750,"ID":699086436,"Name":"bogmar","NumVillages":0,"Points":0,"Rank":2944,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699086436","BestRank":2944,"BestRankAt":"2023-02-16T05:25:56.278209Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036642Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036642Z","LastActivityAt":"2023-02-16T05:25:49.036642Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1058,"ScoreAtt":21902,"RankDef":715,"ScoreDef":265549,"RankSup":813,"ScoreSup":22013,"RankTotal":996,"ScoreTotal":309464,"ID":699088529,"Name":"waldek10","NumVillages":9,"Points":50839,"Rank":689,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699088529","BestRank":689,"BestRankAt":"2023-02-16T05:25:56.27821Z","MostPoints":50839,"MostPointsAt":"2023-02-16T05:25:56.27821Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036643Z","LastActivityAt":"2023-02-16T05:25:56.27821Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":44,"ScoreAtt":5301749,"RankDef":474,"ScoreDef":563499,"RankSup":63,"ScoreSup":3022941,"RankTotal":86,"ScoreTotal":8888189,"ID":699088769,"Name":"Before1995","NumVillages":217,"Points":2086210,"Rank":44,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699088769","BestRank":44,"BestRankAt":"2023-02-16T05:25:49.036643Z","MostPoints":2086210,"MostPointsAt":"2023-02-16T05:25:56.278211Z","MostVillages":217,"MostVillagesAt":"2023-02-16T05:25:56.278211Z","LastActivityAt":"2023-02-16T05:25:56.278211Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1510,"ScoreDef":32444,"RankSup":0,"ScoreSup":0,"RankTotal":1748,"ScoreTotal":32444,"ID":699091553,"Name":"dudus1992","NumVillages":0,"Points":0,"Rank":2945,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699091553","BestRank":2945,"BestRankAt":"2023-02-16T05:25:56.278211Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036644Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036644Z","LastActivityAt":"2023-02-16T05:25:49.036644Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":242,"ScoreAtt":1173563,"RankDef":19,"ScoreDef":16414227,"RankSup":125,"ScoreSup":1739304,"RankTotal":31,"ScoreTotal":19327094,"ID":699097885,"Name":"epsilonPL","NumVillages":32,"Points":273350,"Rank":365,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699097885","BestRank":365,"BestRankAt":"2023-02-16T05:25:49.036644Z","MostPoints":273350,"MostPointsAt":"2023-02-16T05:25:56.278212Z","MostVillages":32,"MostVillagesAt":"2023-02-16T05:25:49.036644Z","LastActivityAt":"2023-02-16T05:25:56.278212Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037441Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":5,"ScoreAtt":17506129,"RankDef":8,"ScoreDef":23120050,"RankSup":33,"ScoreSup":4591710,"RankTotal":7,"ScoreTotal":45217889,"ID":699098531,"Name":"Flip i Flap","NumVillages":744,"Points":6506806,"Rank":2,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699098531","BestRank":2,"BestRankAt":"2023-02-16T05:25:49.036645Z","MostPoints":6506806,"MostPointsAt":"2023-02-16T05:25:56.278212Z","MostVillages":744,"MostVillagesAt":"2023-02-16T05:25:56.278212Z","LastActivityAt":"2023-02-16T05:25:56.278212Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037442Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":750,"ScoreAtt":101922,"RankDef":818,"ScoreDef":205501,"RankSup":833,"ScoreSup":18187,"RankTotal":984,"ScoreTotal":325610,"ID":699099385,"Name":"Sessue","NumVillages":1,"Points":43,"Rank":2574,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699099385","BestRank":2574,"BestRankAt":"2023-02-16T05:25:56.278213Z","MostPoints":43,"MostPointsAt":"2023-02-16T05:25:49.036645Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036645Z","LastActivityAt":"2023-02-16T05:25:49.036646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037443Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":343,"ScoreAtt":737417,"RankDef":1726,"ScoreDef":16873,"RankSup":297,"ScoreSup":538722,"RankTotal":544,"ScoreTotal":1293012,"ID":699099811,"Name":"P0tulny","NumVillages":66,"Points":450551,"Rank":282,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699099811","BestRank":282,"BestRankAt":"2023-02-16T05:25:49.036646Z","MostPoints":450551,"MostPointsAt":"2023-02-16T05:25:56.278213Z","MostVillages":66,"MostVillagesAt":"2023-02-16T05:25:49.036646Z","LastActivityAt":"2023-02-16T05:25:56.278213Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037443Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":453,"ScoreAtt":440153,"RankDef":1560,"ScoreDef":28597,"RankSup":711,"ScoreSup":44736,"RankTotal":830,"ScoreTotal":513486,"ID":699111651,"Name":"POLdi","NumVillages":1,"Points":10290,"Rank":1075,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699111651","BestRank":1075,"BestRankAt":"2023-02-16T05:25:56.278214Z","MostPoints":10290,"MostPointsAt":"2023-02-16T05:25:49.036647Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036646Z","LastActivityAt":"2023-02-16T05:25:49.036647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1407,"ScoreAtt":3941,"RankDef":1414,"ScoreDef":41266,"RankSup":708,"ScoreSup":45547,"RankTotal":1428,"ScoreTotal":90754,"ID":699117178,"Name":"Sir Borsuk011","NumVillages":4,"Points":31021,"Rank":809,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699117178","BestRank":804,"BestRankAt":"2023-02-16T05:25:49.036647Z","MostPoints":31021,"MostPointsAt":"2023-02-16T05:25:49.036647Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036647Z","LastActivityAt":"2023-02-16T05:25:49.036647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":914,"ScoreAtt":47870,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":1622,"ScoreTotal":47870,"ID":699117865,"Name":"WOJOWNICZKA.","NumVillages":1,"Points":9633,"Rank":1097,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699117865","BestRank":1097,"BestRankAt":"2023-02-16T05:25:56.278215Z","MostPoints":9633,"MostPointsAt":"2023-02-16T05:25:49.036648Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036648Z","LastActivityAt":"2023-02-16T05:25:49.036648Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037445Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":966,"ScoreAtt":35982,"RankDef":749,"ScoreDef":246113,"RankSup":908,"ScoreSup":10680,"RankTotal":1010,"ScoreTotal":292775,"ID":699117992,"Name":"Bakun83","NumVillages":16,"Points":91838,"Rank":556,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699117992","BestRank":556,"BestRankAt":"2023-02-16T05:25:56.278215Z","MostPoints":91838,"MostPointsAt":"2023-02-16T05:25:56.278215Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:56.278215Z","LastActivityAt":"2023-02-16T05:25:56.278215Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037446Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":413,"ScoreAtt":547084,"RankDef":579,"ScoreDef":403150,"RankSup":374,"ScoreSup":360259,"RankTotal":538,"ScoreTotal":1310493,"ID":699121671,"Name":"KotAlik","NumVillages":55,"Points":374803,"Rank":312,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699121671","BestRank":311,"BestRankAt":"2023-02-16T05:25:49.036649Z","MostPoints":374803,"MostPointsAt":"2023-02-16T05:25:56.278216Z","MostVillages":55,"MostVillagesAt":"2023-02-16T05:25:49.036649Z","LastActivityAt":"2023-02-16T05:25:56.278216Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037446Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":880,"ScoreDef":176539,"RankSup":915,"ScoreSup":10186,"RankTotal":1170,"ScoreTotal":186725,"ID":699121777,"Name":"Trevor05","NumVillages":0,"Points":0,"Rank":2946,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699121777","BestRank":2946,"BestRankAt":"2023-02-16T05:25:56.278216Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036649Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036649Z","LastActivityAt":"2023-02-16T05:25:49.036649Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037448Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":244,"ScoreAtt":1165967,"RankDef":1747,"ScoreDef":15506,"RankSup":1130,"ScoreSup":1184,"RankTotal":572,"ScoreTotal":1182657,"ID":699126484,"Name":"Andzynek","NumVillages":37,"Points":348019,"Rank":330,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699126484","BestRank":330,"BestRankAt":"2023-02-16T05:25:56.278217Z","MostPoints":348019,"MostPointsAt":"2023-02-16T05:25:56.278217Z","MostVillages":37,"MostVillagesAt":"2023-02-16T05:25:56.278217Z","LastActivityAt":"2023-02-16T05:25:56.278217Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2301,"ScoreDef":209,"RankSup":0,"ScoreSup":0,"RankTotal":2380,"ScoreTotal":209,"ID":699126490,"Name":"Bipi","NumVillages":1,"Points":2835,"Rank":1541,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699126490","BestRank":1541,"BestRankAt":"2023-02-16T05:25:56.278217Z","MostPoints":2835,"MostPointsAt":"2023-02-16T05:25:56.278217Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03665Z","LastActivityAt":"2023-02-16T05:25:56.278217Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1726,"ScoreAtt":369,"RankDef":1540,"ScoreDef":29855,"RankSup":0,"ScoreSup":0,"RankTotal":1764,"ScoreTotal":30224,"ID":699127156,"Name":"donguralesko80","NumVillages":2,"Points":7443,"Rank":1185,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699127156","BestRank":1185,"BestRankAt":"2023-02-16T05:25:56.278218Z","MostPoints":7443,"MostPointsAt":"2023-02-16T05:25:56.278218Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036651Z","LastActivityAt":"2023-02-16T05:25:56.278218Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03745Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1838,"ScoreAtt":128,"RankDef":441,"ScoreDef":637577,"RankSup":887,"ScoreSup":12691,"RankTotal":755,"ScoreTotal":650396,"ID":699127546,"Name":"kinia 20","NumVillages":1,"Points":4925,"Rank":1329,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699127546","BestRank":1108,"BestRankAt":"2023-02-16T05:25:49.036651Z","MostPoints":9425,"MostPointsAt":"2023-02-16T05:25:49.036651Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036651Z","LastActivityAt":"2023-02-16T05:25:49.036652Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2311,"ScoreDef":156,"RankSup":0,"ScoreSup":0,"RankTotal":2393,"ScoreTotal":156,"ID":699131849,"Name":"brt007","NumVillages":1,"Points":172,"Rank":2327,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699131849","BestRank":2327,"BestRankAt":"2023-02-16T05:25:56.278219Z","MostPoints":172,"MostPointsAt":"2023-02-16T05:25:49.036652Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036652Z","LastActivityAt":"2023-02-16T05:25:49.036652Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1185,"ScoreAtt":11192,"RankDef":745,"ScoreDef":247277,"RankSup":855,"ScoreSup":15914,"RankTotal":1029,"ScoreTotal":274383,"ID":699139964,"Name":"dudek2222","NumVillages":2,"Points":7046,"Rank":1208,"TribeID":1771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699139964","BestRank":1208,"BestRankAt":"2023-02-16T05:25:56.278219Z","MostPoints":7046,"MostPointsAt":"2023-02-16T05:25:56.278219Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036653Z","LastActivityAt":"2023-02-16T05:25:56.278219Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037452Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1274,"ScoreDef":59805,"RankSup":0,"ScoreSup":0,"RankTotal":1552,"ScoreTotal":59805,"ID":699144886,"Name":"jurek15","NumVillages":1,"Points":1324,"Rank":1769,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699144886","BestRank":1769,"BestRankAt":"2023-02-16T05:25:56.27822Z","MostPoints":1324,"MostPointsAt":"2023-02-16T05:25:56.27822Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036653Z","LastActivityAt":"2023-02-16T05:25:56.27822Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":197,"ScoreAtt":1580462,"RankDef":32,"ScoreDef":10897733,"RankSup":76,"ScoreSup":2781268,"RankTotal":48,"ScoreTotal":15259463,"ID":699146580,"Name":"Lord miki12323","NumVillages":95,"Points":613732,"Rank":233,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699146580","BestRank":233,"BestRankAt":"2023-02-16T05:25:56.27822Z","MostPoints":613732,"MostPointsAt":"2023-02-16T05:25:56.278221Z","MostVillages":95,"MostVillagesAt":"2023-02-16T05:25:49.036654Z","LastActivityAt":"2023-02-16T05:25:56.278221Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1129,"ScoreAtt":15589,"RankDef":2166,"ScoreDef":1466,"RankSup":0,"ScoreSup":0,"RankTotal":1897,"ScoreTotal":17055,"ID":699146876,"Name":"DzikiNieogar","NumVillages":4,"Points":13750,"Rank":1017,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699146876","BestRank":1017,"BestRankAt":"2023-02-16T05:25:56.278221Z","MostPoints":13750,"MostPointsAt":"2023-02-16T05:25:56.278221Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:56.278221Z","LastActivityAt":"2023-02-16T05:25:56.278221Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2473,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2550,"ScoreTotal":2,"ID":699147813,"Name":"Zakrecony","NumVillages":1,"Points":376,"Rank":2094,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699147813","BestRank":2094,"BestRankAt":"2023-02-16T05:25:56.278222Z","MostPoints":376,"MostPointsAt":"2023-02-16T05:25:49.036655Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036655Z","LastActivityAt":"2023-02-16T05:25:49.036655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1281,"ScoreAtt":6767,"RankDef":1687,"ScoreDef":19468,"RankSup":0,"ScoreSup":0,"RankTotal":1803,"ScoreTotal":26235,"ID":699148121,"Name":"robertos1","NumVillages":1,"Points":1675,"Rank":1703,"TribeID":1432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699148121","BestRank":1703,"BestRankAt":"2023-02-16T05:25:56.278222Z","MostPoints":1675,"MostPointsAt":"2023-02-16T05:25:56.278222Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036655Z","LastActivityAt":"2023-02-16T05:25:56.278222Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":322,"ScoreAtt":821191,"RankDef":957,"ScoreDef":143272,"RankSup":1044,"ScoreSup":2973,"RankTotal":631,"ScoreTotal":967436,"ID":699150527,"Name":"F4T4L","NumVillages":55,"Points":478730,"Rank":274,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699150527","BestRank":274,"BestRankAt":"2023-02-16T05:25:56.278223Z","MostPoints":478730,"MostPointsAt":"2023-02-16T05:25:56.278223Z","MostVillages":55,"MostVillagesAt":"2023-02-16T05:25:49.036656Z","LastActivityAt":"2023-02-16T05:25:56.278223Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1278,"ScoreAtt":6927,"RankDef":449,"ScoreDef":622220,"RankSup":0,"ScoreSup":0,"RankTotal":767,"ScoreTotal":629147,"ID":699155679,"Name":"marekwalczyk","NumVillages":1,"Points":214,"Rank":2248,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699155679","BestRank":2248,"BestRankAt":"2023-02-16T05:25:56.278223Z","MostPoints":214,"MostPointsAt":"2023-02-16T05:25:49.036656Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036656Z","LastActivityAt":"2023-02-16T05:25:49.036656Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037458Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1015,"ScoreAtt":27725,"RankDef":2060,"ScoreDef":3284,"RankSup":1248,"ScoreSup":115,"RankTotal":1757,"ScoreTotal":31124,"ID":699156456,"Name":"KATOZAUR","NumVillages":1,"Points":77,"Rank":2489,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699156456","BestRank":2489,"BestRankAt":"2023-02-16T05:25:56.278224Z","MostPoints":77,"MostPointsAt":"2023-02-16T05:25:49.036657Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036657Z","LastActivityAt":"2023-02-16T05:25:49.036657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699163285,"Name":"Zukos","NumVillages":1,"Points":26,"Rank":2673,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699163285","BestRank":2673,"BestRankAt":"2023-02-16T05:25:56.278224Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036657Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036657Z","LastActivityAt":"2023-02-16T05:25:49.036658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1357,"ScoreDef":49269,"RankSup":0,"ScoreSup":0,"RankTotal":1611,"ScoreTotal":49269,"ID":699167148,"Name":"dekunka2","NumVillages":1,"Points":1892,"Rank":1675,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699167148","BestRank":1675,"BestRankAt":"2023-02-16T05:25:56.278225Z","MostPoints":1892,"MostPointsAt":"2023-02-16T05:25:56.278225Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036658Z","LastActivityAt":"2023-02-16T05:25:56.278225Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03746Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1794,"ScoreDef":12463,"RankSup":0,"ScoreSup":0,"RankTotal":1951,"ScoreTotal":12463,"ID":699169828,"Name":"Atanami","NumVillages":1,"Points":106,"Rank":2447,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699169828","BestRank":2447,"BestRankAt":"2023-02-16T05:25:56.278225Z","MostPoints":106,"MostPointsAt":"2023-02-16T05:25:56.278225Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.278225Z","LastActivityAt":"2023-02-16T05:25:56.278225Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03746Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":116,"ScoreAtt":2618121,"RankDef":312,"ScoreDef":1098874,"RankSup":106,"ScoreSup":2123558,"RankTotal":158,"ScoreTotal":5840553,"ID":699170684,"Name":"krzychu20177","NumVillages":74,"Points":666480,"Rank":214,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699170684","BestRank":214,"BestRankAt":"2023-02-16T05:25:56.278226Z","MostPoints":666480,"MostPointsAt":"2023-02-16T05:25:56.278226Z","MostVillages":74,"MostVillagesAt":"2023-02-16T05:25:56.278226Z","LastActivityAt":"2023-02-16T05:25:56.278226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037462Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":248,"ScoreAtt":1133898,"RankDef":1656,"ScoreDef":21666,"RankSup":259,"ScoreSup":655688,"RankTotal":437,"ScoreTotal":1811252,"ID":699176234,"Name":"Loker","NumVillages":3,"Points":29822,"Rank":821,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699176234","BestRank":816,"BestRankAt":"2023-02-16T05:25:49.03666Z","MostPoints":29822,"MostPointsAt":"2023-02-16T05:25:49.03666Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.03666Z","LastActivityAt":"2023-02-16T05:25:56.278226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":108,"ScoreAtt":2934901,"RankDef":54,"ScoreDef":6218296,"RankSup":13,"ScoreSup":6569919,"RankTotal":43,"ScoreTotal":15723116,"ID":699189792,"Name":"Inko","NumVillages":192,"Points":1672036,"Rank":68,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699189792","BestRank":68,"BestRankAt":"2023-02-16T05:25:49.03666Z","MostPoints":1672036,"MostPointsAt":"2023-02-16T05:25:56.278227Z","MostVillages":192,"MostVillagesAt":"2023-02-16T05:25:56.278227Z","LastActivityAt":"2023-02-16T05:25:56.278227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":524,"ScoreAtt":317315,"RankDef":1459,"ScoreDef":37065,"RankSup":928,"ScoreSup":9140,"RankTotal":945,"ScoreTotal":363520,"ID":699191449,"Name":"Chodziu95","NumVillages":32,"Points":184851,"Rank":429,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699191449","BestRank":423,"BestRankAt":"2023-02-16T05:25:49.036661Z","MostPoints":192481,"MostPointsAt":"2023-02-16T05:25:49.036661Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:49.036661Z","LastActivityAt":"2023-02-16T05:25:49.036661Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":522,"ScoreAtt":323191,"RankDef":1630,"ScoreDef":23490,"RankSup":896,"ScoreSup":11859,"RankTotal":952,"ScoreTotal":358540,"ID":699191455,"Name":"KingPoiek","NumVillages":27,"Points":160895,"Rank":450,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699191455","BestRank":450,"BestRankAt":"2023-02-16T05:25:56.278228Z","MostPoints":160895,"MostPointsAt":"2023-02-16T05:25:56.278228Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:56.278228Z","LastActivityAt":"2023-02-16T05:25:56.278228Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":477,"ScoreAtt":401931,"RankDef":874,"ScoreDef":180564,"RankSup":917,"ScoreSup":10082,"RankTotal":778,"ScoreTotal":592577,"ID":699191464,"Name":"Lord Queno","NumVillages":24,"Points":115767,"Rank":508,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699191464","BestRank":508,"BestRankAt":"2023-02-16T05:25:56.278228Z","MostPoints":115767,"MostPointsAt":"2023-02-16T05:25:56.278229Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.036662Z","LastActivityAt":"2023-02-16T05:25:56.278229Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037465Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":234,"ScoreAtt":1278634,"RankDef":1069,"ScoreDef":102369,"RankSup":765,"ScoreSup":32989,"RankTotal":515,"ScoreTotal":1413992,"ID":699194766,"Name":"osilek123","NumVillages":17,"Points":156418,"Rank":456,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699194766","BestRank":456,"BestRankAt":"2023-02-16T05:25:49.036662Z","MostPoints":156418,"MostPointsAt":"2023-02-16T05:25:56.278229Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.036662Z","LastActivityAt":"2023-02-16T05:25:56.278229Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":595,"ScoreAtt":218788,"RankDef":871,"ScoreDef":181313,"RankSup":431,"ScoreSup":252849,"RankTotal":752,"ScoreTotal":652950,"ID":699195358,"Name":"Ribeskanina","NumVillages":57,"Points":434935,"Rank":290,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699195358","BestRank":290,"BestRankAt":"2023-02-16T05:25:56.278229Z","MostPoints":434935,"MostPointsAt":"2023-02-16T05:25:56.27823Z","MostVillages":57,"MostVillagesAt":"2023-02-16T05:25:49.036663Z","LastActivityAt":"2023-02-16T05:25:56.27823Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":233,"ScoreAtt":1282710,"RankDef":954,"ScoreDef":143740,"RankSup":846,"ScoreSup":16729,"RankTotal":509,"ScoreTotal":1443179,"ID":699196829,"Name":"Ethan Hunt","NumVillages":6,"Points":36544,"Rank":766,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699196829","BestRank":766,"BestRankAt":"2023-02-16T05:25:49.036663Z","MostPoints":36544,"MostPointsAt":"2023-02-16T05:25:56.27823Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036663Z","LastActivityAt":"2023-02-16T05:25:56.27823Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037467Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":545,"ScoreAtt":288786,"RankDef":324,"ScoreDef":1037005,"RankSup":402,"ScoreSup":315898,"RankTotal":469,"ScoreTotal":1641689,"ID":699199084,"Name":"Sir JuriGagarin","NumVillages":1,"Points":436,"Rank":2049,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699199084","BestRank":2049,"BestRankAt":"2023-02-16T05:25:56.278231Z","MostPoints":436,"MostPointsAt":"2023-02-16T05:25:49.036664Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036664Z","LastActivityAt":"2023-02-16T05:25:49.036664Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037468Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1050,"ScoreAtt":22890,"RankDef":866,"ScoreDef":182870,"RankSup":0,"ScoreSup":0,"RankTotal":1129,"ScoreTotal":205760,"ID":699201278,"Name":"wodzu11","NumVillages":2,"Points":15806,"Rank":985,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699201278","BestRank":985,"BestRankAt":"2023-02-16T05:25:56.278231Z","MostPoints":15806,"MostPointsAt":"2023-02-16T05:25:56.278231Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036665Z","LastActivityAt":"2023-02-16T05:25:56.278231Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037469Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1194,"ScoreAtt":10725,"RankDef":301,"ScoreDef":1166370,"RankSup":732,"ScoreSup":40239,"RankTotal":561,"ScoreTotal":1217334,"ID":699204478,"Name":"DannyQ","NumVillages":5,"Points":35138,"Rank":774,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699204478","BestRank":774,"BestRankAt":"2023-02-16T05:25:56.278232Z","MostPoints":35138,"MostPointsAt":"2023-02-16T05:25:56.278232Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.036665Z","LastActivityAt":"2023-02-16T05:25:56.278232Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037469Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":198,"ScoreAtt":1574047,"RankDef":956,"ScoreDef":143402,"RankSup":369,"ScoreSup":368851,"RankTotal":395,"ScoreTotal":2086300,"ID":699208929,"Name":"tann","NumVillages":101,"Points":836338,"Rank":175,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699208929","BestRank":175,"BestRankAt":"2023-02-16T05:25:56.278232Z","MostPoints":836338,"MostPointsAt":"2023-02-16T05:25:56.278232Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:49.036666Z","LastActivityAt":"2023-02-16T05:25:56.278232Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03747Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1637,"ScoreAtt":852,"RankDef":2027,"ScoreDef":3970,"RankSup":0,"ScoreSup":0,"RankTotal":2127,"ScoreTotal":4822,"ID":699212614,"Name":"Lord xXWiLQXx","NumVillages":0,"Points":0,"Rank":2947,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699212614","BestRank":2947,"BestRankAt":"2023-02-16T05:25:56.278233Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036666Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036666Z","LastActivityAt":"2023-02-16T05:25:49.036666Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":96,"ScoreAtt":3350082,"RankDef":663,"ScoreDef":310176,"RankSup":164,"ScoreSup":1344703,"RankTotal":186,"ScoreTotal":5004961,"ID":699213622,"Name":"Murzyn","NumVillages":78,"Points":592511,"Rank":244,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699213622","BestRank":217,"BestRankAt":"2023-02-16T05:25:49.036667Z","MostPoints":657196,"MostPointsAt":"2023-02-16T05:25:49.036667Z","MostVillages":85,"MostVillagesAt":"2023-02-16T05:25:49.036667Z","LastActivityAt":"2023-02-16T05:25:49.036667Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":308,"ScoreAtt":895074,"RankDef":885,"ScoreDef":174910,"RankSup":571,"ScoreSup":118069,"RankTotal":569,"ScoreTotal":1188053,"ID":699238479,"Name":"majster0607","NumVillages":23,"Points":187155,"Rank":428,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699238479","BestRank":413,"BestRankAt":"2023-02-16T05:25:49.036667Z","MostPoints":202917,"MostPointsAt":"2023-02-16T05:25:49.036667Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.036667Z","LastActivityAt":"2023-02-16T05:25:56.278234Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1769,"ScoreAtt":260,"RankDef":2077,"ScoreDef":2887,"RankSup":0,"ScoreSup":0,"RankTotal":2183,"ScoreTotal":3147,"ID":699238678,"Name":"pepus1971","NumVillages":2,"Points":3589,"Rank":1440,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699238678","BestRank":1440,"BestRankAt":"2023-02-16T05:25:56.278234Z","MostPoints":3589,"MostPointsAt":"2023-02-16T05:25:56.278234Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036668Z","LastActivityAt":"2023-02-16T05:25:56.278234Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1164,"ScoreAtt":12508,"RankDef":824,"ScoreDef":201872,"RankSup":0,"ScoreSup":0,"RankTotal":1116,"ScoreTotal":214380,"ID":699244334,"Name":"DO100JNY","NumVillages":11,"Points":35835,"Rank":770,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699244334","BestRank":770,"BestRankAt":"2023-02-16T05:25:56.278235Z","MostPoints":35835,"MostPointsAt":"2023-02-16T05:25:49.036668Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.036668Z","LastActivityAt":"2023-02-16T05:25:56.278235Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":222,"ScoreAtt":1329013,"RankDef":62,"ScoreDef":5583684,"RankSup":699,"ScoreSup":49348,"RankTotal":128,"ScoreTotal":6962045,"ID":699246032,"Name":"Kwest","NumVillages":6,"Points":50587,"Rank":690,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699246032","BestRank":688,"BestRankAt":"2023-02-16T05:25:49.036669Z","MostPoints":50587,"MostPointsAt":"2023-02-16T05:25:49.036669Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036669Z","LastActivityAt":"2023-02-16T05:25:49.036669Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037474Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":294,"ScoreAtt":957939,"RankDef":135,"ScoreDef":2905048,"RankSup":274,"ScoreSup":597860,"RankTotal":215,"ScoreTotal":4460847,"ID":699250676,"Name":"Sir maryƛka","NumVillages":2,"Points":17057,"Rank":968,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699250676","BestRank":968,"BestRankAt":"2023-02-16T05:25:49.036669Z","MostPoints":17057,"MostPointsAt":"2023-02-16T05:25:49.03667Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036669Z","LastActivityAt":"2023-02-16T05:25:49.03667Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037475Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1739,"ScoreAtt":336,"RankDef":1639,"ScoreDef":23020,"RankSup":0,"ScoreSup":0,"RankTotal":1829,"ScoreTotal":23356,"ID":699251542,"Name":"Zoodix","NumVillages":3,"Points":19854,"Rank":920,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699251542","BestRank":920,"BestRankAt":"2023-02-16T05:25:56.278236Z","MostPoints":19854,"MostPointsAt":"2023-02-16T05:25:56.278236Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.03667Z","LastActivityAt":"2023-02-16T05:25:56.278236Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2494,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2572,"ScoreTotal":2,"ID":699254631,"Name":"ceru","NumVillages":1,"Points":112,"Rank":2461,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699254631","BestRank":2461,"BestRankAt":"2023-02-16T05:25:49.03667Z","MostPoints":112,"MostPointsAt":"2023-02-16T05:25:49.036671Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036671Z","LastActivityAt":"2023-02-16T05:25:49.036671Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037476Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":76,"ScoreAtt":4085220,"RankDef":166,"ScoreDef":2314885,"RankSup":210,"ScoreSup":880157,"RankTotal":115,"ScoreTotal":7280262,"ID":699262350,"Name":"Brat447","NumVillages":118,"Points":1090665,"Rank":128,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699262350","BestRank":127,"BestRankAt":"2023-02-16T05:25:49.036671Z","MostPoints":1090665,"MostPointsAt":"2023-02-16T05:25:56.278237Z","MostVillages":118,"MostVillagesAt":"2023-02-16T05:25:49.036671Z","LastActivityAt":"2023-02-16T05:25:56.278237Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699264947,"Name":"Kwiatuu","NumVillages":1,"Points":26,"Rank":2674,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699264947","BestRank":2674,"BestRankAt":"2023-02-16T05:25:56.278237Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036672Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036672Z","LastActivityAt":"2023-02-16T05:25:49.036672Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":73,"ScoreAtt":4123585,"RankDef":665,"ScoreDef":309081,"RankSup":96,"ScoreSup":2269824,"RankTotal":133,"ScoreTotal":6702490,"ID":699265922,"Name":"murzyn59","NumVillages":146,"Points":1249560,"Rank":103,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699265922","BestRank":103,"BestRankAt":"2023-02-16T05:25:56.278238Z","MostPoints":1249560,"MostPointsAt":"2023-02-16T05:25:56.278238Z","MostVillages":146,"MostVillagesAt":"2023-02-16T05:25:56.278238Z","LastActivityAt":"2023-02-16T05:25:56.278238Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037478Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":825,"ScoreAtt":71099,"RankDef":1873,"ScoreDef":8802,"RankSup":633,"ScoreSup":80024,"RankTotal":1228,"ScoreTotal":159925,"ID":699266530,"Name":"LordTrol","NumVillages":20,"Points":138238,"Rank":479,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699266530","BestRank":479,"BestRankAt":"2023-02-16T05:25:56.278238Z","MostPoints":138238,"MostPointsAt":"2023-02-16T05:25:56.278239Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:49.036673Z","LastActivityAt":"2023-02-16T05:25:56.278239Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":50,"ScoreAtt":4923506,"RankDef":200,"ScoreDef":1896108,"RankSup":38,"ScoreSup":4183414,"RankTotal":69,"ScoreTotal":11003028,"ID":699269923,"Name":"Kuzyn Karol","NumVillages":152,"Points":1330106,"Rank":92,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699269923","BestRank":92,"BestRankAt":"2023-02-16T05:25:49.036673Z","MostPoints":1330106,"MostPointsAt":"2023-02-16T05:25:56.278239Z","MostVillages":152,"MostVillagesAt":"2023-02-16T05:25:49.036673Z","LastActivityAt":"2023-02-16T05:25:56.278239Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":668,"ScoreAtt":145944,"RankDef":1561,"ScoreDef":28567,"RankSup":664,"ScoreSup":63414,"RankTotal":1071,"ScoreTotal":237925,"ID":699272633,"Name":"pachnis96","NumVillages":39,"Points":353613,"Rank":325,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699272633","BestRank":325,"BestRankAt":"2023-02-16T05:25:49.036674Z","MostPoints":353613,"MostPointsAt":"2023-02-16T05:25:56.27824Z","MostVillages":39,"MostVillagesAt":"2023-02-16T05:25:49.036674Z","LastActivityAt":"2023-02-16T05:25:56.27824Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":170,"ScoreAtt":1879400,"RankDef":1019,"ScoreDef":122037,"RankSup":540,"ScoreSup":136746,"RankTotal":391,"ScoreTotal":2138183,"ID":699272880,"Name":"TyQ1710","NumVillages":141,"Points":1370377,"Rank":89,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699272880","BestRank":88,"BestRankAt":"2023-02-16T05:25:49.036674Z","MostPoints":1370377,"MostPointsAt":"2023-02-16T05:25:56.27824Z","MostVillages":141,"MostVillagesAt":"2023-02-16T05:25:49.036674Z","LastActivityAt":"2023-02-16T05:25:56.27824Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037482Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":26,"ScoreAtt":7156669,"RankDef":423,"ScoreDef":676619,"RankSup":347,"ScoreSup":416045,"RankTotal":98,"ScoreTotal":8249333,"ID":699273451,"Name":"Gram offa","NumVillages":269,"Points":2509456,"Rank":27,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699273451","BestRank":27,"BestRankAt":"2023-02-16T05:25:49.036675Z","MostPoints":2509456,"MostPointsAt":"2023-02-16T05:25:56.278241Z","MostVillages":269,"MostVillagesAt":"2023-02-16T05:25:56.278241Z","LastActivityAt":"2023-02-16T05:25:56.278241Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":245,"ScoreAtt":1164542,"RankDef":1208,"ScoreDef":70907,"RankSup":429,"ScoreSup":256140,"RankTotal":499,"ScoreTotal":1491589,"ID":699277039,"Name":"B.E.T.O.N","NumVillages":15,"Points":65352,"Rank":634,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699277039","BestRank":630,"BestRankAt":"2023-02-16T05:25:49.036675Z","MostPoints":65972,"MostPointsAt":"2023-02-16T05:25:49.036676Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.036675Z","LastActivityAt":"2023-02-16T05:25:49.036676Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1483,"ScoreAtt":2478,"RankDef":428,"ScoreDef":666235,"RankSup":751,"ScoreSup":35036,"RankTotal":730,"ScoreTotal":703749,"ID":699278528,"Name":"LadyMauritius","NumVillages":15,"Points":91697,"Rank":557,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699278528","BestRank":557,"BestRankAt":"2023-02-16T05:25:56.278242Z","MostPoints":91697,"MostPointsAt":"2023-02-16T05:25:56.278242Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:56.278242Z","LastActivityAt":"2023-02-16T05:25:56.278242Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037484Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":266,"ScoreAtt":1061805,"RankDef":383,"ScoreDef":792100,"RankSup":592,"ScoreSup":103273,"RankTotal":414,"ScoreTotal":1957178,"ID":699280514,"Name":"hary","NumVillages":18,"Points":80681,"Rank":581,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699280514","BestRank":581,"BestRankAt":"2023-02-16T05:25:56.278242Z","MostPoints":80681,"MostPointsAt":"2023-02-16T05:25:56.278242Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:49.036677Z","LastActivityAt":"2023-02-16T05:25:56.278242Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037485Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1505,"ScoreAtt":2215,"RankDef":2416,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2219,"ScoreTotal":2225,"ID":699282717,"Name":"jury1993","NumVillages":2,"Points":5355,"Rank":1303,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699282717","BestRank":1303,"BestRankAt":"2023-02-16T05:25:56.278243Z","MostPoints":5355,"MostPointsAt":"2023-02-16T05:25:56.278243Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036677Z","LastActivityAt":"2023-02-16T05:25:56.278243Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037486Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699282793,"Name":"Kira Motyl","NumVillages":1,"Points":26,"Rank":2675,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699282793","BestRank":2675,"BestRankAt":"2023-02-16T05:25:56.278243Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036678Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036678Z","LastActivityAt":"2023-02-16T05:25:49.036678Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037486Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":275,"ScoreAtt":1026083,"RankDef":1168,"ScoreDef":79516,"RankSup":343,"ScoreSup":420497,"RankTotal":493,"ScoreTotal":1526096,"ID":699283869,"Name":"Seylito","NumVillages":1,"Points":2030,"Rank":1648,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699283869","BestRank":1648,"BestRankAt":"2023-02-16T05:25:56.278244Z","MostPoints":2030,"MostPointsAt":"2023-02-16T05:25:56.278244Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036678Z","LastActivityAt":"2023-02-16T05:25:56.278244Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037488Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1801,"ScoreAtt":175,"RankDef":1200,"ScoreDef":72455,"RankSup":1217,"ScoreSup":271,"RankTotal":1481,"ScoreTotal":72901,"ID":699284822,"Name":"Karol III WIelki","NumVillages":0,"Points":0,"Rank":2948,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699284822","BestRank":1485,"BestRankAt":"2023-02-16T05:25:49.036679Z","MostPoints":3398,"MostPointsAt":"2023-02-16T05:25:49.036679Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036679Z","LastActivityAt":"2023-02-16T05:25:49.036679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1616,"ScoreAtt":1054,"RankDef":1204,"ScoreDef":71746,"RankSup":1327,"ScoreSup":11,"RankTotal":1482,"ScoreTotal":72811,"ID":699285160,"Name":"odek69","NumVillages":2,"Points":8187,"Rank":1144,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699285160","BestRank":1144,"BestRankAt":"2023-02-16T05:25:56.278245Z","MostPoints":8187,"MostPointsAt":"2023-02-16T05:25:56.278245Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036679Z","LastActivityAt":"2023-02-16T05:25:56.278245Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":333,"ScoreAtt":775693,"RankDef":1322,"ScoreDef":54827,"RankSup":156,"ScoreSup":1450554,"RankTotal":374,"ScoreTotal":2281074,"ID":699287032,"Name":"=PanR=","NumVillages":2,"Points":16537,"Rank":976,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699287032","BestRank":976,"BestRankAt":"2023-02-16T05:25:49.03668Z","MostPoints":16537,"MostPointsAt":"2023-02-16T05:25:49.03668Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.03668Z","LastActivityAt":"2023-02-16T05:25:49.03668Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03749Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699294577,"Name":"Jakub JĂłĆșwiak","NumVillages":1,"Points":26,"Rank":2676,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699294577","BestRank":2676,"BestRankAt":"2023-02-16T05:25:56.278246Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.03668Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03668Z","LastActivityAt":"2023-02-16T05:25:49.036681Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03749Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":86,"ScoreAtt":3751608,"RankDef":210,"ScoreDef":1807909,"RankSup":671,"ScoreSup":59839,"RankTotal":163,"ScoreTotal":5619356,"ID":699298370,"Name":"Gatt","NumVillages":226,"Points":2136999,"Rank":43,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699298370","BestRank":42,"BestRankAt":"2023-02-16T05:25:49.036681Z","MostPoints":2136999,"MostPointsAt":"2023-02-16T05:25:56.278246Z","MostVillages":226,"MostVillagesAt":"2023-02-16T05:25:49.036681Z","LastActivityAt":"2023-02-16T05:25:56.278246Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037491Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":34,"ScoreAtt":6248521,"RankDef":114,"ScoreDef":3259775,"RankSup":67,"ScoreSup":2874047,"RankTotal":63,"ScoreTotal":12382343,"ID":699299123,"Name":"d33L","NumVillages":212,"Points":1969338,"Rank":49,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699299123","BestRank":49,"BestRankAt":"2023-02-16T05:25:49.036681Z","MostPoints":1969338,"MostPointsAt":"2023-02-16T05:25:56.278247Z","MostVillages":212,"MostVillagesAt":"2023-02-16T05:25:56.278247Z","LastActivityAt":"2023-02-16T05:25:56.278247Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037492Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":946,"ScoreAtt":40896,"RankDef":712,"ScoreDef":267120,"RankSup":1126,"ScoreSup":1320,"RankTotal":997,"ScoreTotal":309336,"ID":699301458,"Name":"ZORDON2016","NumVillages":4,"Points":6046,"Rank":1264,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699301458","BestRank":1264,"BestRankAt":"2023-02-16T05:25:56.278247Z","MostPoints":6046,"MostPointsAt":"2023-02-16T05:25:56.278248Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036682Z","LastActivityAt":"2023-02-16T05:25:56.278248Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037495Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":317,"ScoreAtt":852614,"RankDef":209,"ScoreDef":1828273,"RankSup":536,"ScoreSup":138996,"RankTotal":311,"ScoreTotal":2819883,"ID":699304554,"Name":"TransportBUS","NumVillages":13,"Points":20492,"Rank":911,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699304554","BestRank":911,"BestRankAt":"2023-02-16T05:25:56.278248Z","MostPoints":20492,"MostPointsAt":"2023-02-16T05:25:56.278248Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.036683Z","LastActivityAt":"2023-02-16T05:25:56.278248Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037496Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":491,"ScoreAtt":374602,"RankDef":1244,"ScoreDef":63758,"RankSup":946,"ScoreSup":7763,"RankTotal":875,"ScoreTotal":446123,"ID":699308637,"Name":"Freshlajkdzieju","NumVillages":34,"Points":227498,"Rank":395,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699308637","BestRank":395,"BestRankAt":"2023-02-16T05:25:56.278248Z","MostPoints":227498,"MostPointsAt":"2023-02-16T05:25:56.278249Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:49.036683Z","LastActivityAt":"2023-02-16T05:25:56.278249Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037497Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":276,"ScoreAtt":1025362,"RankDef":1156,"ScoreDef":81870,"RankSup":326,"ScoreSup":450592,"RankTotal":483,"ScoreTotal":1557824,"ID":699316421,"Name":"Alstrem x Ataturk","NumVillages":80,"Points":732610,"Rank":196,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699316421","BestRank":196,"BestRankAt":"2023-02-16T05:25:49.036684Z","MostPoints":732610,"MostPointsAt":"2023-02-16T05:25:56.278249Z","MostVillages":80,"MostVillagesAt":"2023-02-16T05:25:56.278249Z","LastActivityAt":"2023-02-16T05:25:56.278249Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037498Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1713,"ScoreAtt":460,"RankDef":1447,"ScoreDef":38519,"RankSup":1163,"ScoreSup":779,"RankTotal":1679,"ScoreTotal":39758,"ID":699319395,"Name":"Cacuƛ-Lion","NumVillages":0,"Points":0,"Rank":2949,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699319395","BestRank":2949,"BestRankAt":"2023-02-16T05:25:56.27825Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036684Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036684Z","LastActivityAt":"2023-02-16T05:25:49.036684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037499Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":435,"ScoreAtt":473923,"RankDef":1368,"ScoreDef":48100,"RankSup":275,"ScoreSup":594074,"RankTotal":589,"ScoreTotal":1116097,"ID":699320017,"Name":"Sir czerwis","NumVillages":0,"Points":0,"Rank":2950,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699320017","BestRank":2950,"BestRankAt":"2023-02-16T05:25:56.27825Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036685Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036685Z","LastActivityAt":"2023-02-16T05:25:49.036685Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.0375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":789,"ScoreAtt":84866,"RankDef":361,"ScoreDef":844968,"RankSup":991,"ScoreSup":5309,"RankTotal":642,"ScoreTotal":935143,"ID":699321518,"Name":"cado","NumVillages":8,"Points":24708,"Rank":866,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699321518","BestRank":866,"BestRankAt":"2023-02-16T05:25:56.278251Z","MostPoints":24708,"MostPointsAt":"2023-02-16T05:25:56.278251Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:56.278251Z","LastActivityAt":"2023-02-16T05:25:56.278251Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":150,"ScoreAtt":2065891,"RankDef":882,"ScoreDef":175561,"RankSup":147,"ScoreSup":1528005,"RankTotal":244,"ScoreTotal":3769457,"ID":699323302,"Name":"zeta.reticuli","NumVillages":123,"Points":1204299,"Rank":114,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699323302","BestRank":114,"BestRankAt":"2023-02-16T05:25:49.036686Z","MostPoints":1204299,"MostPointsAt":"2023-02-16T05:25:56.278251Z","MostVillages":123,"MostVillagesAt":"2023-02-16T05:25:49.036686Z","LastActivityAt":"2023-02-16T05:25:56.278251Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037502Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1849,"ScoreAtt":107,"RankDef":1226,"ScoreDef":67727,"RankSup":0,"ScoreSup":0,"RankTotal":1507,"ScoreTotal":67834,"ID":699323781,"Name":"bogdan0811","NumVillages":2,"Points":4816,"Rank":1337,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699323781","BestRank":1337,"BestRankAt":"2023-02-16T05:25:56.278252Z","MostPoints":4816,"MostPointsAt":"2023-02-16T05:25:56.278252Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:56.278252Z","LastActivityAt":"2023-02-16T05:25:56.278252Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037503Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1706,"ScoreAtt":494,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2332,"ScoreTotal":494,"ID":699325506,"Name":"CareHoster","NumVillages":1,"Points":2843,"Rank":1536,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699325506","BestRank":1536,"BestRankAt":"2023-02-16T05:25:56.278253Z","MostPoints":2843,"MostPointsAt":"2023-02-16T05:25:56.278253Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036687Z","LastActivityAt":"2023-02-16T05:25:56.278253Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1425,"ScoreAtt":3470,"RankDef":1191,"ScoreDef":74273,"RankSup":1124,"ScoreSup":1369,"RankTotal":1459,"ScoreTotal":79112,"ID":699326171,"Name":"SlashOfDark","NumVillages":1,"Points":8150,"Rank":1148,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699326171","BestRank":1148,"BestRankAt":"2023-02-16T05:25:56.278253Z","MostPoints":8150,"MostPointsAt":"2023-02-16T05:25:56.278253Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036687Z","LastActivityAt":"2023-02-16T05:25:56.278254Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1906,"ScoreAtt":38,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2456,"ScoreTotal":38,"ID":699330765,"Name":"Lady Basia408","NumVillages":1,"Points":125,"Rank":2414,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699330765","BestRank":2414,"BestRankAt":"2023-02-16T05:25:56.278254Z","MostPoints":125,"MostPointsAt":"2023-02-16T05:25:49.036688Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036688Z","LastActivityAt":"2023-02-16T05:25:49.036688Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":103,"ScoreAtt":3021963,"RankDef":7,"ScoreDef":27808250,"RankSup":308,"ScoreSup":506130,"RankTotal":12,"ScoreTotal":31336343,"ID":699333701,"Name":"KrĂłl Fabian*","NumVillages":73,"Points":505059,"Rank":266,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699333701","BestRank":266,"BestRankAt":"2023-02-16T05:25:56.278255Z","MostPoints":505059,"MostPointsAt":"2023-02-16T05:25:56.278255Z","MostVillages":73,"MostVillagesAt":"2023-02-16T05:25:49.036689Z","LastActivityAt":"2023-02-16T05:25:56.278255Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1687,"ScoreAtt":593,"RankDef":1470,"ScoreDef":36257,"RankSup":0,"ScoreSup":0,"RankTotal":1705,"ScoreTotal":36850,"ID":699336679,"Name":"Raissa","NumVillages":1,"Points":499,"Rank":2012,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699336679","BestRank":2012,"BestRankAt":"2023-02-16T05:25:56.278255Z","MostPoints":499,"MostPointsAt":"2023-02-16T05:25:49.036689Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036689Z","LastActivityAt":"2023-02-16T05:25:49.036689Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037509Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":92,"ScoreAtt":3516662,"RankDef":371,"ScoreDef":818949,"RankSup":30,"ScoreSup":4709428,"RankTotal":83,"ScoreTotal":9045039,"ID":699336777,"Name":"Elsche x Astaroth","NumVillages":114,"Points":1041869,"Rank":139,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699336777","BestRank":137,"BestRankAt":"2023-02-16T05:25:49.03669Z","MostPoints":1041869,"MostPointsAt":"2023-02-16T05:25:56.278256Z","MostVillages":114,"MostVillagesAt":"2023-02-16T05:25:49.03669Z","LastActivityAt":"2023-02-16T05:25:56.278256Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03751Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1745,"ScoreAtt":311,"RankDef":2475,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2359,"ScoreTotal":313,"ID":699339594,"Name":"665783847","NumVillages":1,"Points":5400,"Rank":1301,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699339594","BestRank":1301,"BestRankAt":"2023-02-16T05:25:56.278256Z","MostPoints":5400,"MostPointsAt":"2023-02-16T05:25:56.278257Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03669Z","LastActivityAt":"2023-02-16T05:25:56.278257Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03751Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1622,"ScoreAtt":998,"RankDef":215,"ScoreDef":1787465,"RankSup":669,"ScoreSup":61136,"RankTotal":432,"ScoreTotal":1849599,"ID":699341889,"Name":"Rafer","NumVillages":1,"Points":6355,"Rank":1243,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699341889","BestRank":1243,"BestRankAt":"2023-02-16T05:25:56.278257Z","MostPoints":6355,"MostPointsAt":"2023-02-16T05:25:49.036691Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036691Z","LastActivityAt":"2023-02-16T05:25:49.036691Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037511Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":132,"ScoreAtt":2318941,"RankDef":13,"ScoreDef":19004738,"RankSup":8,"ScoreSup":8991357,"RankTotal":14,"ScoreTotal":30315036,"ID":699342219,"Name":"BLACK15","NumVillages":240,"Points":2283868,"Rank":36,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699342219","BestRank":36,"BestRankAt":"2023-02-16T05:25:49.036691Z","MostPoints":2283868,"MostPointsAt":"2023-02-16T05:25:56.278258Z","MostVillages":240,"MostVillagesAt":"2023-02-16T05:25:49.036691Z","LastActivityAt":"2023-02-16T05:25:56.278258Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037512Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1969,"ScoreAtt":5,"RankDef":1901,"ScoreDef":7666,"RankSup":712,"ScoreSup":44450,"RankTotal":1594,"ScoreTotal":52121,"ID":699343887,"Name":"daniel420","NumVillages":6,"Points":21624,"Rank":896,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699343887","BestRank":894,"BestRankAt":"2023-02-16T05:25:49.036692Z","MostPoints":21624,"MostPointsAt":"2023-02-16T05:25:49.036692Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.036692Z","LastActivityAt":"2023-02-16T05:25:49.036692Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037514Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699345087,"Name":"Elendila","NumVillages":1,"Points":26,"Rank":2677,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699345087","BestRank":2677,"BestRankAt":"2023-02-16T05:25:56.278259Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036692Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036692Z","LastActivityAt":"2023-02-16T05:25:49.036693Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037514Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":355,"ScoreAtt":689735,"RankDef":1152,"ScoreDef":82785,"RankSup":950,"ScoreSup":7611,"RankTotal":690,"ScoreTotal":780131,"ID":699346267,"Name":"yaruciak1","NumVillages":1,"Points":26,"Rank":2678,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699346267","BestRank":2678,"BestRankAt":"2023-02-16T05:25:56.27826Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036693Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036693Z","LastActivityAt":"2023-02-16T05:25:49.036693Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037515Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":337,"ScoreAtt":771728,"RankDef":1817,"ScoreDef":11250,"RankSup":372,"ScoreSup":363372,"RankTotal":583,"ScoreTotal":1146350,"ID":699346280,"Name":"yuri09","NumVillages":53,"Points":516265,"Rank":262,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699346280","BestRank":262,"BestRankAt":"2023-02-16T05:25:56.27826Z","MostPoints":516265,"MostPointsAt":"2023-02-16T05:25:56.27826Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:49.036693Z","LastActivityAt":"2023-02-16T05:25:56.27826Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037516Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":354,"ScoreAtt":692465,"RankDef":744,"ScoreDef":247629,"RankSup":748,"ScoreSup":36845,"RankTotal":622,"ScoreTotal":976939,"ID":699347951,"Name":"abadon666","NumVillages":61,"Points":474365,"Rank":277,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699347951","BestRank":277,"BestRankAt":"2023-02-16T05:25:49.036694Z","MostPoints":474365,"MostPointsAt":"2023-02-16T05:25:56.278261Z","MostVillages":61,"MostVillagesAt":"2023-02-16T05:25:49.036694Z","LastActivityAt":"2023-02-16T05:25:56.278261Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037516Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2129,"ScoreDef":2003,"RankSup":0,"ScoreSup":0,"RankTotal":2229,"ScoreTotal":2003,"ID":699351046,"Name":"tomektonkiel","NumVillages":2,"Points":8002,"Rank":1154,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699351046","BestRank":1154,"BestRankAt":"2023-02-16T05:25:56.278261Z","MostPoints":8002,"MostPointsAt":"2023-02-16T05:25:56.278261Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036695Z","LastActivityAt":"2023-02-16T05:25:56.278261Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037517Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":284,"ScoreAtt":991801,"RankDef":1659,"ScoreDef":21382,"RankSup":408,"ScoreSup":308431,"RankTotal":535,"ScoreTotal":1321614,"ID":699351301,"Name":"Sir ItWasntMe","NumVillages":101,"Points":936054,"Rank":157,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699351301","BestRank":157,"BestRankAt":"2023-02-16T05:25:49.036695Z","MostPoints":936054,"MostPointsAt":"2023-02-16T05:25:56.278262Z","MostVillages":101,"MostVillagesAt":"2023-02-16T05:25:49.036695Z","LastActivityAt":"2023-02-16T05:25:56.278262Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":730,"ScoreAtt":110490,"RankDef":202,"ScoreDef":1883610,"RankSup":231,"ScoreSup":765735,"RankTotal":315,"ScoreTotal":2759835,"ID":699355601,"Name":"piast123","NumVillages":17,"Points":98204,"Rank":543,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699355601","BestRank":543,"BestRankAt":"2023-02-16T05:25:56.278262Z","MostPoints":98204,"MostPointsAt":"2023-02-16T05:25:56.278262Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.036696Z","LastActivityAt":"2023-02-16T05:25:56.278262Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037519Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699355948,"Name":"hmc.","NumVillages":1,"Points":38,"Rank":2580,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699355948","BestRank":2580,"BestRankAt":"2023-02-16T05:25:56.278263Z","MostPoints":38,"MostPointsAt":"2023-02-16T05:25:49.036696Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036696Z","LastActivityAt":"2023-02-16T05:25:49.036696Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03752Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2136,"ScoreDef":1896,"RankSup":0,"ScoreSup":0,"RankTotal":2236,"ScoreTotal":1896,"ID":699356102,"Name":"streak2k12","NumVillages":1,"Points":2159,"Rank":1624,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699356102","BestRank":1624,"BestRankAt":"2023-02-16T05:25:56.278263Z","MostPoints":2159,"MostPointsAt":"2023-02-16T05:25:49.036697Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036697Z","LastActivityAt":"2023-02-16T05:25:49.036697Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":482,"ScoreAtt":386549,"RankDef":1029,"ScoreDef":116344,"RankSup":1269,"ScoreSup":61,"RankTotal":841,"ScoreTotal":502954,"ID":699356968,"Name":"Heui","NumVillages":27,"Points":131205,"Rank":491,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699356968","BestRank":491,"BestRankAt":"2023-02-16T05:25:56.278264Z","MostPoints":131205,"MostPointsAt":"2023-02-16T05:25:56.278264Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:49.036697Z","LastActivityAt":"2023-02-16T05:25:56.278264Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037523Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699360521,"Name":"NajlepszyZiomekWeWsi","NumVillages":1,"Points":135,"Rank":2384,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699360521","BestRank":2384,"BestRankAt":"2023-02-16T05:25:56.278264Z","MostPoints":135,"MostPointsAt":"2023-02-16T05:25:49.036698Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036698Z","LastActivityAt":"2023-02-16T05:25:49.036698Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037524Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":19,"ScoreAtt":8198947,"RankDef":1,"ScoreDef":60264498,"RankSup":109,"ScoreSup":2039012,"RankTotal":1,"ScoreTotal":70502457,"ID":699364813,"Name":"Warzywa Style","NumVillages":149,"Points":1384393,"Rank":87,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699364813","BestRank":85,"BestRankAt":"2023-02-16T05:25:49.036698Z","MostPoints":1384730,"MostPointsAt":"2023-02-16T05:25:49.036698Z","MostVillages":149,"MostVillagesAt":"2023-02-16T05:25:49.036698Z","LastActivityAt":"2023-02-16T05:25:56.278265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037525Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":753,"ScoreDef":242627,"RankSup":0,"ScoreSup":0,"RankTotal":1065,"ScoreTotal":242627,"ID":699366937,"Name":"Mr.SoLo","NumVillages":1,"Points":578,"Rank":1978,"TribeID":206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699366937","BestRank":1978,"BestRankAt":"2023-02-16T05:25:56.278265Z","MostPoints":578,"MostPointsAt":"2023-02-16T05:25:56.278265Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036699Z","LastActivityAt":"2023-02-16T05:25:56.278265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037526Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":61,"ScoreAtt":4411800,"RankDef":5,"ScoreDef":38843735,"RankSup":154,"ScoreSup":1456138,"RankTotal":9,"ScoreTotal":44711673,"ID":699368887,"Name":"Tomi77","NumVillages":223,"Points":1995381,"Rank":48,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699368887","BestRank":48,"BestRankAt":"2023-02-16T05:25:49.036699Z","MostPoints":1995381,"MostPointsAt":"2023-02-16T05:25:56.278266Z","MostVillages":223,"MostVillagesAt":"2023-02-16T05:25:56.278266Z","LastActivityAt":"2023-02-16T05:25:56.278266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037527Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1347,"ScoreAtt":5260,"RankDef":413,"ScoreDef":715187,"RankSup":446,"ScoreSup":234957,"RankTotal":638,"ScoreTotal":955404,"ID":699372829,"Name":"4 ewelina","NumVillages":11,"Points":18141,"Rank":947,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699372829","BestRank":946,"BestRankAt":"2023-02-16T05:25:49.0367Z","MostPoints":18141,"MostPointsAt":"2023-02-16T05:25:49.0367Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.0367Z","LastActivityAt":"2023-02-16T05:25:49.0367Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037528Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":779,"ScoreAtt":87942,"RankDef":736,"ScoreDef":254337,"RankSup":674,"ScoreSup":59537,"RankTotal":914,"ScoreTotal":401816,"ID":699373225,"Name":"miniuk","NumVillages":2,"Points":5516,"Rank":1291,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699373225","BestRank":1291,"BestRankAt":"2023-02-16T05:25:56.278267Z","MostPoints":5516,"MostPointsAt":"2023-02-16T05:25:56.278267Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036701Z","LastActivityAt":"2023-02-16T05:25:56.278267Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037529Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":871,"ScoreAtt":57303,"RankDef":1581,"ScoreDef":26525,"RankSup":114,"ScoreSup":1960794,"RankTotal":403,"ScoreTotal":2044622,"ID":699373599,"Name":"Sarna","NumVillages":93,"Points":714835,"Rank":201,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699373599","BestRank":201,"BestRankAt":"2023-02-16T05:25:49.036701Z","MostPoints":714835,"MostPointsAt":"2023-02-16T05:25:56.278268Z","MostVillages":93,"MostVillagesAt":"2023-02-16T05:25:49.036701Z","LastActivityAt":"2023-02-16T05:25:56.278268Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037529Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":764,"ScoreAtt":94263,"RankDef":1474,"ScoreDef":36235,"RankSup":1394,"ScoreSup":2,"RankTotal":1294,"ScoreTotal":130500,"ID":699375903,"Name":"Steven","NumVillages":1,"Points":2209,"Rank":1615,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699375903","BestRank":1615,"BestRankAt":"2023-02-16T05:25:56.278268Z","MostPoints":2209,"MostPointsAt":"2023-02-16T05:25:56.278268Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036702Z","LastActivityAt":"2023-02-16T05:25:56.278269Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037531Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":499,"ScoreAtt":356398,"RankDef":1231,"ScoreDef":66497,"RankSup":778,"ScoreSup":29743,"RankTotal":873,"ScoreTotal":452638,"ID":699377151,"Name":"Hindukusz","NumVillages":15,"Points":99555,"Rank":540,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699377151","BestRank":540,"BestRankAt":"2023-02-16T05:25:56.278269Z","MostPoints":99555,"MostPointsAt":"2023-02-16T05:25:49.036702Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.036702Z","LastActivityAt":"2023-02-16T05:25:56.278269Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037535Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":785,"ScoreAtt":86084,"RankDef":1766,"ScoreDef":13968,"RankSup":553,"ScoreSup":129968,"RankTotal":1089,"ScoreTotal":230020,"ID":699377401,"Name":"stalowyhetzer","NumVillages":13,"Points":81165,"Rank":579,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699377401","BestRank":579,"BestRankAt":"2023-02-16T05:25:56.27827Z","MostPoints":81165,"MostPointsAt":"2023-02-16T05:25:56.27827Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.036703Z","LastActivityAt":"2023-02-16T05:25:56.27827Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037537Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":285,"ScoreAtt":989301,"RankDef":938,"ScoreDef":149757,"RankSup":409,"ScoreSup":304728,"RankTotal":508,"ScoreTotal":1443786,"ID":699379895,"Name":"Cet4boN","NumVillages":68,"Points":602962,"Rank":237,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699379895","BestRank":237,"BestRankAt":"2023-02-16T05:25:56.27827Z","MostPoints":602962,"MostPointsAt":"2023-02-16T05:25:49.036703Z","MostVillages":68,"MostVillagesAt":"2023-02-16T05:25:49.036703Z","LastActivityAt":"2023-02-16T05:25:49.036703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037538Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":148,"ScoreAtt":2104851,"RankDef":728,"ScoreDef":260394,"RankSup":44,"ScoreSup":3642937,"RankTotal":151,"ScoreTotal":6008182,"ID":699380607,"Name":"Dejv.oldplyr","NumVillages":123,"Points":1216709,"Rank":109,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699380607","BestRank":108,"BestRankAt":"2023-02-16T05:25:49.036704Z","MostPoints":1216709,"MostPointsAt":"2023-02-16T05:25:56.278271Z","MostVillages":124,"MostVillagesAt":"2023-02-16T05:25:49.036704Z","LastActivityAt":"2023-02-16T05:25:56.278271Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037539Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":374,"ScoreAtt":628848,"RankDef":1163,"ScoreDef":80538,"RankSup":1085,"ScoreSup":2104,"RankTotal":723,"ScoreTotal":711490,"ID":699380621,"Name":"fajterooo","NumVillages":6,"Points":52456,"Rank":679,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699380621","BestRank":679,"BestRankAt":"2023-02-16T05:25:56.278272Z","MostPoints":52456,"MostPointsAt":"2023-02-16T05:25:56.278272Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:56.278272Z","LastActivityAt":"2023-02-16T05:25:56.278272Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037539Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699380730,"Name":"marart2","NumVillages":1,"Points":53,"Rank":2540,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699380730","BestRank":2540,"BestRankAt":"2023-02-16T05:25:56.278272Z","MostPoints":53,"MostPointsAt":"2023-02-16T05:25:49.036705Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036705Z","LastActivityAt":"2023-02-16T05:25:49.036705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037543Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":49,"ScoreAtt":5012098,"RankDef":93,"ScoreDef":3711282,"RankSup":51,"ScoreSup":3324324,"RankTotal":65,"ScoreTotal":12047704,"ID":699382126,"Name":"TuniosƂaw","NumVillages":168,"Points":1626794,"Rank":71,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699382126","BestRank":71,"BestRankAt":"2023-02-16T05:25:49.036705Z","MostPoints":1626794,"MostPointsAt":"2023-02-16T05:25:56.278273Z","MostVillages":168,"MostVillagesAt":"2023-02-16T05:25:49.036705Z","LastActivityAt":"2023-02-16T05:25:56.278273Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037543Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":504,"ScoreAtt":346073,"RankDef":1602,"ScoreDef":25442,"RankSup":173,"ScoreSup":1261911,"RankTotal":471,"ScoreTotal":1633426,"ID":699383121,"Name":"Falco11","NumVillages":43,"Points":324297,"Rank":344,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699383121","BestRank":344,"BestRankAt":"2023-02-16T05:25:56.278274Z","MostPoints":324297,"MostPointsAt":"2023-02-16T05:25:56.278274Z","MostVillages":43,"MostVillagesAt":"2023-02-16T05:25:49.036706Z","LastActivityAt":"2023-02-16T05:25:56.278274Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037544Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":101,"ScoreAtt":3082313,"RankDef":76,"ScoreDef":4681504,"RankSup":177,"ScoreSup":1176451,"RankTotal":85,"ScoreTotal":8940268,"ID":699383279,"Name":"bax8009","NumVillages":149,"Points":1300265,"Rank":98,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699383279","BestRank":98,"BestRankAt":"2023-02-16T05:25:49.036707Z","MostPoints":1300265,"MostPointsAt":"2023-02-16T05:25:56.278274Z","MostVillages":149,"MostVillagesAt":"2023-02-16T05:25:56.278274Z","LastActivityAt":"2023-02-16T05:25:56.278274Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037545Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":540,"ScoreAtt":297276,"RankDef":408,"ScoreDef":730120,"RankSup":478,"ScoreSup":191587,"RankTotal":558,"ScoreTotal":1218983,"ID":699385139,"Name":"gotkamil","NumVillages":22,"Points":182879,"Rank":433,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699385139","BestRank":433,"BestRankAt":"2023-02-16T05:25:49.036709Z","MostPoints":182879,"MostPointsAt":"2023-02-16T05:25:56.278275Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.036709Z","LastActivityAt":"2023-02-16T05:25:56.278275Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037547Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":329,"ScoreAtt":798009,"RankDef":764,"ScoreDef":235778,"RankSup":756,"ScoreSup":34024,"RankTotal":601,"ScoreTotal":1067811,"ID":699390457,"Name":"SirSin X","NumVillages":1,"Points":134,"Rank":2387,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699390457","BestRank":2387,"BestRankAt":"2023-02-16T05:25:56.278275Z","MostPoints":134,"MostPointsAt":"2023-02-16T05:25:49.03671Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03671Z","LastActivityAt":"2023-02-16T05:25:49.03671Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037548Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1880,"ScoreAtt":57,"RankDef":1230,"ScoreDef":66890,"RankSup":0,"ScoreSup":0,"RankTotal":1512,"ScoreTotal":66947,"ID":699391409,"Name":"frolunda63","NumVillages":1,"Points":261,"Rank":2198,"TribeID":1247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699391409","BestRank":2198,"BestRankAt":"2023-02-16T05:25:56.278276Z","MostPoints":261,"MostPointsAt":"2023-02-16T05:25:56.278276Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03671Z","LastActivityAt":"2023-02-16T05:25:56.278276Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037549Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":104,"ScoreAtt":3008669,"RankDef":150,"ScoreDef":2568438,"RankSup":254,"ScoreSup":678200,"RankTotal":143,"ScoreTotal":6255307,"ID":699393742,"Name":"DeanMiles","NumVillages":71,"Points":634739,"Rank":225,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699393742","BestRank":203,"BestRankAt":"2023-02-16T05:25:49.036711Z","MostPoints":707524,"MostPointsAt":"2023-02-16T05:25:49.036711Z","MostVillages":79,"MostVillagesAt":"2023-02-16T05:25:49.036711Z","LastActivityAt":"2023-02-16T05:25:49.036711Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03755Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":751,"ScoreAtt":101240,"RankDef":1637,"ScoreDef":23186,"RankSup":693,"ScoreSup":52009,"RankTotal":1195,"ScoreTotal":176435,"ID":699393759,"Name":"Tekson1","NumVillages":23,"Points":150370,"Rank":467,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699393759","BestRank":467,"BestRankAt":"2023-02-16T05:25:56.278277Z","MostPoints":150370,"MostPointsAt":"2023-02-16T05:25:56.278277Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:49.036711Z","LastActivityAt":"2023-02-16T05:25:56.278277Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037551Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1553,"ScoreAtt":1750,"RankDef":1689,"ScoreDef":19157,"RankSup":1350,"ScoreSup":5,"RankTotal":1853,"ScoreTotal":20912,"ID":699396429,"Name":"obywateldb","NumVillages":8,"Points":14865,"Rank":1002,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699396429","BestRank":1002,"BestRankAt":"2023-02-16T05:25:56.278277Z","MostPoints":14865,"MostPointsAt":"2023-02-16T05:25:56.278277Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.036712Z","LastActivityAt":"2023-02-16T05:25:56.278278Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037551Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699397280,"Name":"gggg1989","NumVillages":1,"Points":26,"Rank":2679,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699397280","BestRank":2679,"BestRankAt":"2023-02-16T05:25:56.278278Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036713Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036713Z","LastActivityAt":"2023-02-16T05:25:49.036713Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037552Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699399386,"Name":"Pablo Escobar-.","NumVillages":1,"Points":26,"Rank":2712,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699399386","BestRank":2712,"BestRankAt":"2023-02-16T05:25:49.036713Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036713Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036713Z","LastActivityAt":"2023-02-16T05:25:49.036713Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037553Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1795,"ScoreAtt":186,"RankDef":2421,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2382,"ScoreTotal":196,"ID":699401083,"Name":"Sir Spiro","NumVillages":1,"Points":2074,"Rank":1643,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699401083","BestRank":1643,"BestRankAt":"2023-02-16T05:25:56.278278Z","MostPoints":2074,"MostPointsAt":"2023-02-16T05:25:49.036714Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036714Z","LastActivityAt":"2023-02-16T05:25:49.036714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037554Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":149,"ScoreAtt":2087928,"RankDef":1374,"ScoreDef":47710,"RankSup":285,"ScoreSup":573852,"RankTotal":326,"ScoreTotal":2709490,"ID":699402816,"Name":"Luxipux","NumVillages":52,"Points":515905,"Rank":263,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699402816","BestRank":262,"BestRankAt":"2023-02-16T05:25:49.036714Z","MostPoints":515905,"MostPointsAt":"2023-02-16T05:25:49.036714Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:49.036714Z","LastActivityAt":"2023-02-16T05:25:56.278279Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037555Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1765,"ScoreAtt":268,"RankDef":1457,"ScoreDef":37135,"RankSup":1343,"ScoreSup":7,"RankTotal":1699,"ScoreTotal":37410,"ID":699405877,"Name":"DzikiDzik","NumVillages":1,"Points":132,"Rank":2393,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699405877","BestRank":2393,"BestRankAt":"2023-02-16T05:25:56.278279Z","MostPoints":132,"MostPointsAt":"2023-02-16T05:25:49.036715Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036715Z","LastActivityAt":"2023-02-16T05:25:49.036715Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037555Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699406101,"Name":"HoroeX","NumVillages":1,"Points":815,"Rank":1895,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406101","BestRank":1895,"BestRankAt":"2023-02-16T05:25:56.27828Z","MostPoints":815,"MostPointsAt":"2023-02-16T05:25:56.27828Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036715Z","LastActivityAt":"2023-02-16T05:25:56.27828Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037556Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":494,"ScoreAtt":369812,"RankDef":268,"ScoreDef":1392482,"RankSup":707,"ScoreSup":45769,"RankTotal":439,"ScoreTotal":1808063,"ID":699406247,"Name":"Uaschitschun","NumVillages":14,"Points":71324,"Rank":607,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406247","BestRank":607,"BestRankAt":"2023-02-16T05:25:56.27828Z","MostPoints":71324,"MostPointsAt":"2023-02-16T05:25:56.27828Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.036716Z","LastActivityAt":"2023-02-16T05:25:56.278281Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037557Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":723,"ScoreAtt":113306,"RankDef":1376,"ScoreDef":47532,"RankSup":1092,"ScoreSup":1951,"RankTotal":1222,"ScoreTotal":162789,"ID":699406750,"Name":"mAcIeK 1988","NumVillages":29,"Points":283289,"Rank":360,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406750","BestRank":360,"BestRankAt":"2023-02-16T05:25:56.278281Z","MostPoints":283289,"MostPointsAt":"2023-02-16T05:25:56.278281Z","MostVillages":29,"MostVillagesAt":"2023-02-16T05:25:56.278281Z","LastActivityAt":"2023-02-16T05:25:56.278281Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037558Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":277,"ScoreAtt":1021678,"RankDef":78,"ScoreDef":4420376,"RankSup":983,"ScoreSup":5744,"RankTotal":170,"ScoreTotal":5447798,"ID":699406776,"Name":"Maczo - Pieczarz - Ɓobuz","NumVillages":22,"Points":97390,"Rank":544,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699406776","BestRank":544,"BestRankAt":"2023-02-16T05:25:56.278282Z","MostPoints":97390,"MostPointsAt":"2023-02-16T05:25:49.036717Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.036717Z","LastActivityAt":"2023-02-16T05:25:49.036717Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037559Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":451,"ScoreAtt":446744,"RankDef":242,"ScoreDef":1594207,"RankSup":447,"ScoreSup":234275,"RankTotal":375,"ScoreTotal":2275226,"ID":699408669,"Name":"Merr","NumVillages":0,"Points":0,"Rank":2951,"TribeID":430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699408669","BestRank":2951,"BestRankAt":"2023-02-16T05:25:56.278282Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036718Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036717Z","LastActivityAt":"2023-02-16T05:25:49.036718Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03756Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1107,"ScoreAtt":17370,"RankDef":1131,"ScoreDef":87995,"RankSup":812,"ScoreSup":22460,"RankTotal":1301,"ScoreTotal":127825,"ID":699409420,"Name":"adam0218","NumVillages":1,"Points":721,"Rank":1924,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699409420","BestRank":1924,"BestRankAt":"2023-02-16T05:25:56.278282Z","MostPoints":721,"MostPointsAt":"2023-02-16T05:25:49.036718Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036718Z","LastActivityAt":"2023-02-16T05:25:49.036718Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037561Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":216,"ScoreAtt":1429545,"RankDef":1120,"ScoreDef":90702,"RankSup":217,"ScoreSup":824449,"RankTotal":367,"ScoreTotal":2344696,"ID":699413040,"Name":"ƚlimakYT","NumVillages":71,"Points":598949,"Rank":239,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699413040","BestRank":239,"BestRankAt":"2023-02-16T05:25:56.278283Z","MostPoints":598949,"MostPointsAt":"2023-02-16T05:25:56.278283Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:49.036719Z","LastActivityAt":"2023-02-16T05:25:56.278283Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037562Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":794,"ScoreAtt":83266,"RankDef":246,"ScoreDef":1546850,"RankSup":501,"ScoreSup":172813,"RankTotal":440,"ScoreTotal":1802929,"ID":699413581,"Name":"DonRocco","NumVillages":16,"Points":104458,"Rank":528,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699413581","BestRank":528,"BestRankAt":"2023-02-16T05:25:56.278283Z","MostPoints":104458,"MostPointsAt":"2023-02-16T05:25:56.278284Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.036719Z","LastActivityAt":"2023-02-16T05:25:56.278284Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037563Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":902,"ScoreAtt":49287,"RankDef":1583,"ScoreDef":26437,"RankSup":0,"ScoreSup":0,"RankTotal":1473,"ScoreTotal":75724,"ID":699419851,"Name":"191deto","NumVillages":1,"Points":6264,"Rank":1248,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699419851","BestRank":1248,"BestRankAt":"2023-02-16T05:25:56.278284Z","MostPoints":6264,"MostPointsAt":"2023-02-16T05:25:56.278284Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03672Z","LastActivityAt":"2023-02-16T05:25:56.278284Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1535,"ScoreDef":30176,"RankSup":0,"ScoreSup":0,"RankTotal":1765,"ScoreTotal":30176,"ID":699421735,"Name":"Henryk IV","NumVillages":1,"Points":6526,"Rank":1231,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699421735","BestRank":1231,"BestRankAt":"2023-02-16T05:25:56.278285Z","MostPoints":6526,"MostPointsAt":"2023-02-16T05:25:56.278285Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03672Z","LastActivityAt":"2023-02-16T05:25:56.278285Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037564Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1555,"ScoreAtt":1703,"RankDef":1084,"ScoreDef":97885,"RankSup":0,"ScoreSup":0,"RankTotal":1390,"ScoreTotal":99588,"ID":699423167,"Name":"Mishiu","NumVillages":1,"Points":3936,"Rank":1407,"TribeID":1651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699423167","BestRank":1407,"BestRankAt":"2023-02-16T05:25:56.278285Z","MostPoints":3936,"MostPointsAt":"2023-02-16T05:25:49.036721Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036721Z","LastActivityAt":"2023-02-16T05:25:49.036721Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037565Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1243,"ScoreAtt":8124,"RankDef":414,"ScoreDef":712454,"RankSup":1235,"ScoreSup":166,"RankTotal":718,"ScoreTotal":720744,"ID":699424741,"Name":"maciekz123","NumVillages":2,"Points":13141,"Rank":1029,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699424741","BestRank":1029,"BestRankAt":"2023-02-16T05:25:56.278286Z","MostPoints":13141,"MostPointsAt":"2023-02-16T05:25:56.278286Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036721Z","LastActivityAt":"2023-02-16T05:25:56.278286Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037565Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":228,"ScoreAtt":1307457,"RankDef":391,"ScoreDef":769598,"RankSup":290,"ScoreSup":564133,"RankTotal":333,"ScoreTotal":2641188,"ID":699425709,"Name":"Wieslaw Geralt","NumVillages":54,"Points":445112,"Rank":287,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699425709","BestRank":284,"BestRankAt":"2023-02-16T05:25:49.036722Z","MostPoints":445112,"MostPointsAt":"2023-02-16T05:25:56.278286Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:56.278286Z","LastActivityAt":"2023-02-16T05:25:56.278286Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037566Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2377,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2475,"ScoreTotal":22,"ID":699428898,"Name":"nortos17","NumVillages":1,"Points":126,"Rank":2411,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699428898","BestRank":2411,"BestRankAt":"2023-02-16T05:25:56.278287Z","MostPoints":126,"MostPointsAt":"2023-02-16T05:25:49.036722Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036722Z","LastActivityAt":"2023-02-16T05:25:49.036723Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037567Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":273,"ScoreAtt":1032662,"RankDef":731,"ScoreDef":258801,"RankSup":162,"ScoreSup":1355881,"RankTotal":331,"ScoreTotal":2647344,"ID":699429153,"Name":"Ɓazan","NumVillages":202,"Points":1830991,"Rank":57,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699429153","BestRank":57,"BestRankAt":"2023-02-16T05:25:49.036723Z","MostPoints":1830991,"MostPointsAt":"2023-02-16T05:25:56.278287Z","MostVillages":202,"MostVillagesAt":"2023-02-16T05:25:49.036723Z","LastActivityAt":"2023-02-16T05:25:56.278287Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037568Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1096,"ScoreAtt":18591,"RankDef":1180,"ScoreDef":76612,"RankSup":0,"ScoreSup":0,"RankTotal":1401,"ScoreTotal":95203,"ID":699429335,"Name":"Arda26 and Azdro","NumVillages":7,"Points":58464,"Rank":662,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699429335","BestRank":662,"BestRankAt":"2023-02-16T05:25:49.036723Z","MostPoints":58464,"MostPointsAt":"2023-02-16T05:25:56.278288Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.036724Z","LastActivityAt":"2023-02-16T05:25:56.278288Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037569Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":74,"ScoreAtt":4092953,"RankDef":623,"ScoreDef":352558,"RankSup":264,"ScoreSup":644647,"RankTotal":183,"ScoreTotal":5090158,"ID":699431255,"Name":"MacioB1997","NumVillages":167,"Points":1484487,"Rank":80,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699431255","BestRank":79,"BestRankAt":"2023-02-16T05:25:49.036724Z","MostPoints":1484487,"MostPointsAt":"2023-02-16T05:25:56.278288Z","MostVillages":167,"MostVillagesAt":"2023-02-16T05:25:49.036724Z","LastActivityAt":"2023-02-16T05:25:56.278288Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03757Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699431590,"Name":"LokiPLN","NumVillages":1,"Points":224,"Rank":2238,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699431590","BestRank":2238,"BestRankAt":"2023-02-16T05:25:56.278289Z","MostPoints":224,"MostPointsAt":"2023-02-16T05:25:49.036725Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036725Z","LastActivityAt":"2023-02-16T05:25:49.036725Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037571Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":165,"ScoreAtt":1929087,"RankDef":475,"ScoreDef":563117,"RankSup":816,"ScoreSup":21559,"RankTotal":346,"ScoreTotal":2513763,"ID":699432672,"Name":"142klp3","NumVillages":83,"Points":801464,"Rank":179,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699432672","BestRank":179,"BestRankAt":"2023-02-16T05:25:56.278289Z","MostPoints":801464,"MostPointsAt":"2023-02-16T05:25:56.278289Z","MostVillages":83,"MostVillagesAt":"2023-02-16T05:25:49.036725Z","LastActivityAt":"2023-02-16T05:25:56.278289Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037571Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":146,"ScoreAtt":2118610,"RankDef":701,"ScoreDef":275453,"RankSup":107,"ScoreSup":2109535,"RankTotal":210,"ScoreTotal":4503598,"ID":699433558,"Name":"Guardian92","NumVillages":107,"Points":1017423,"Rank":143,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699433558","BestRank":143,"BestRankAt":"2023-02-16T05:25:56.27829Z","MostPoints":1017423,"MostPointsAt":"2023-02-16T05:25:56.27829Z","MostVillages":107,"MostVillagesAt":"2023-02-16T05:25:49.036726Z","LastActivityAt":"2023-02-16T05:25:56.27829Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037573Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1482,"ScoreAtt":2492,"RankDef":1593,"ScoreDef":25861,"RankSup":0,"ScoreSup":0,"RankTotal":1780,"ScoreTotal":28353,"ID":699438389,"Name":"super hero","NumVillages":1,"Points":4082,"Rank":1393,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699438389","BestRank":1393,"BestRankAt":"2023-02-16T05:25:56.27829Z","MostPoints":4082,"MostPointsAt":"2023-02-16T05:25:49.036726Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036726Z","LastActivityAt":"2023-02-16T05:25:56.278291Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037574Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":470,"ScoreAtt":412936,"RankDef":1344,"ScoreDef":51402,"RankSup":851,"ScoreSup":16132,"RankTotal":855,"ScoreTotal":480470,"ID":699441366,"Name":"OdyseuszProFighter","NumVillages":41,"Points":359082,"Rank":319,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699441366","BestRank":319,"BestRankAt":"2023-02-16T05:25:56.278291Z","MostPoints":359082,"MostPointsAt":"2023-02-16T05:25:56.278291Z","MostVillages":41,"MostVillagesAt":"2023-02-16T05:25:56.278291Z","LastActivityAt":"2023-02-16T05:25:56.278291Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037575Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":208,"ScoreAtt":1505412,"RankDef":10,"ScoreDef":21307764,"RankSup":75,"ScoreSup":2797975,"RankTotal":18,"ScoreTotal":25611151,"ID":699443920,"Name":"mooseloose","NumVillages":147,"Points":1193842,"Rank":115,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699443920","BestRank":113,"BestRankAt":"2023-02-16T05:25:49.036727Z","MostPoints":1196371,"MostPointsAt":"2023-02-16T05:25:49.036727Z","MostVillages":148,"MostVillagesAt":"2023-02-16T05:25:49.036727Z","LastActivityAt":"2023-02-16T05:25:56.278292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037575Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":352,"ScoreAtt":697259,"RankDef":533,"ScoreDef":475479,"RankSup":551,"ScoreSup":130448,"RankTotal":540,"ScoreTotal":1303186,"ID":699448276,"Name":"Minerva","NumVillages":2,"Points":2999,"Rank":1514,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699448276","BestRank":1514,"BestRankAt":"2023-02-16T05:25:56.278292Z","MostPoints":2999,"MostPointsAt":"2023-02-16T05:25:49.036728Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.036728Z","LastActivityAt":"2023-02-16T05:25:49.036728Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037576Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2356,"ScoreDef":39,"RankSup":0,"ScoreSup":0,"RankTotal":2455,"ScoreTotal":39,"ID":699448843,"Name":"jarko123","NumVillages":1,"Points":1083,"Rank":1824,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699448843","BestRank":1824,"BestRankAt":"2023-02-16T05:25:56.278292Z","MostPoints":1083,"MostPointsAt":"2023-02-16T05:25:49.036729Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036728Z","LastActivityAt":"2023-02-16T05:25:49.036729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037578Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1802,"ScoreDef":11922,"RankSup":1183,"ScoreSup":482,"RankTotal":1953,"ScoreTotal":12404,"ID":699449946,"Name":"rkot","NumVillages":1,"Points":3295,"Rank":1478,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699449946","BestRank":1478,"BestRankAt":"2023-02-16T05:25:56.278293Z","MostPoints":3295,"MostPointsAt":"2023-02-16T05:25:49.036729Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036729Z","LastActivityAt":"2023-02-16T05:25:49.036729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037579Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1957,"ScoreAtt":9,"RankDef":2261,"ScoreDef":418,"RankSup":0,"ScoreSup":0,"RankTotal":2344,"ScoreTotal":427,"ID":699451338,"Name":"Jacaxxx","NumVillages":1,"Points":142,"Rank":2366,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699451338","BestRank":2366,"BestRankAt":"2023-02-16T05:25:56.278293Z","MostPoints":142,"MostPointsAt":"2023-02-16T05:25:56.278294Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03673Z","LastActivityAt":"2023-02-16T05:25:56.278294Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037579Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1910,"ScoreDef":7310,"RankSup":0,"ScoreSup":0,"RankTotal":2053,"ScoreTotal":7310,"ID":699456288,"Name":"kapittan","NumVillages":1,"Points":679,"Rank":1938,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699456288","BestRank":1938,"BestRankAt":"2023-02-16T05:25:56.278294Z","MostPoints":679,"MostPointsAt":"2023-02-16T05:25:49.03673Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03673Z","LastActivityAt":"2023-02-16T05:25:49.03673Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03758Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1872,"ScoreDef":8802,"RankSup":0,"ScoreSup":0,"RankTotal":2016,"ScoreTotal":8802,"ID":699469600,"Name":"wertywer","NumVillages":1,"Points":1031,"Rank":1837,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699469600","BestRank":1837,"BestRankAt":"2023-02-16T05:25:56.278294Z","MostPoints":1031,"MostPointsAt":"2023-02-16T05:25:49.036731Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036731Z","LastActivityAt":"2023-02-16T05:25:49.036731Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037581Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1755,"ScoreDef":14803,"RankSup":0,"ScoreSup":0,"RankTotal":1926,"ScoreTotal":14803,"ID":699470220,"Name":"monitor123aa","NumVillages":0,"Points":0,"Rank":2952,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699470220","BestRank":2952,"BestRankAt":"2023-02-16T05:25:56.278295Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036731Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036731Z","LastActivityAt":"2023-02-16T05:25:49.036731Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037582Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699471024,"Name":"Uparty1","NumVillages":1,"Points":634,"Rank":1957,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699471024","BestRank":1957,"BestRankAt":"2023-02-16T05:25:56.278295Z","MostPoints":634,"MostPointsAt":"2023-02-16T05:25:49.036732Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036732Z","LastActivityAt":"2023-02-16T05:25:49.036732Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037583Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":949,"ScoreAtt":39886,"RankDef":1521,"ScoreDef":31595,"RankSup":1127,"ScoreSup":1318,"RankTotal":1483,"ScoreTotal":72799,"ID":699471829,"Name":"witold2129","NumVillages":1,"Points":4734,"Rank":1344,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699471829","BestRank":1344,"BestRankAt":"2023-02-16T05:25:56.278296Z","MostPoints":4734,"MostPointsAt":"2023-02-16T05:25:49.036732Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036732Z","LastActivityAt":"2023-02-16T05:25:56.278296Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1274,"ScoreAtt":7089,"RankDef":2386,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2058,"ScoreTotal":7109,"ID":699477624,"Name":"Majin Buu","NumVillages":3,"Points":8247,"Rank":1143,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699477624","BestRank":1143,"BestRankAt":"2023-02-16T05:25:56.278296Z","MostPoints":8247,"MostPointsAt":"2023-02-16T05:25:56.278297Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036733Z","LastActivityAt":"2023-02-16T05:25:56.278297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037584Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":816,"ScoreAtt":73080,"RankDef":431,"ScoreDef":659466,"RankSup":614,"ScoreSup":91260,"RankTotal":676,"ScoreTotal":823806,"ID":699478692,"Name":"Adas532","NumVillages":9,"Points":35434,"Rank":773,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699478692","BestRank":772,"BestRankAt":"2023-02-16T05:25:49.036733Z","MostPoints":35434,"MostPointsAt":"2023-02-16T05:25:56.278297Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.036733Z","LastActivityAt":"2023-02-16T05:25:56.278297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037586Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699480768,"Name":"Stupid","NumVillages":1,"Points":45,"Rank":2569,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699480768","BestRank":2569,"BestRankAt":"2023-02-16T05:25:56.278297Z","MostPoints":45,"MostPointsAt":"2023-02-16T05:25:49.036734Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036734Z","LastActivityAt":"2023-02-16T05:25:49.036734Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037587Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":938,"ScoreAtt":42899,"RankDef":1214,"ScoreDef":69832,"RankSup":831,"ScoreSup":19135,"RankTotal":1290,"ScoreTotal":131866,"ID":699483429,"Name":"psychol16","NumVillages":18,"Points":111287,"Rank":518,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699483429","BestRank":518,"BestRankAt":"2023-02-16T05:25:56.278298Z","MostPoints":111287,"MostPointsAt":"2023-02-16T05:25:49.036735Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:49.036734Z","LastActivityAt":"2023-02-16T05:25:49.036735Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037588Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":90,"ScoreAtt":3586562,"RankDef":77,"ScoreDef":4677868,"RankSup":138,"ScoreSup":1569981,"RankTotal":79,"ScoreTotal":9834411,"ID":699485250,"Name":"TYLKODOBREDĆ»ISY","NumVillages":127,"Points":1109893,"Rank":123,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699485250","BestRank":123,"BestRankAt":"2023-02-16T05:25:56.278298Z","MostPoints":1109893,"MostPointsAt":"2023-02-16T05:25:56.278299Z","MostVillages":127,"MostVillagesAt":"2023-02-16T05:25:49.036735Z","LastActivityAt":"2023-02-16T05:25:56.278299Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037589Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":707,"ScoreAtt":123509,"RankDef":1041,"ScoreDef":111628,"RankSup":971,"ScoreSup":6217,"RankTotal":1067,"ScoreTotal":241354,"ID":699488108,"Name":"TwĂłj Kolega","NumVillages":14,"Points":116778,"Rank":506,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699488108","BestRank":506,"BestRankAt":"2023-02-16T05:25:56.278299Z","MostPoints":116778,"MostPointsAt":"2023-02-16T05:25:56.278299Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.036736Z","LastActivityAt":"2023-02-16T05:25:56.278299Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03759Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2461,"ScoreDef":6,"RankSup":0,"ScoreSup":0,"RankTotal":2537,"ScoreTotal":6,"ID":699490365,"Name":"bercion","NumVillages":1,"Points":1764,"Rank":1695,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699490365","BestRank":1695,"BestRankAt":"2023-02-16T05:25:56.2783Z","MostPoints":1764,"MostPointsAt":"2023-02-16T05:25:49.036736Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036736Z","LastActivityAt":"2023-02-16T05:25:49.036736Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037591Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":14,"ScoreAtt":10678304,"RankDef":18,"ScoreDef":16480230,"RankSup":169,"ScoreSup":1306628,"RankTotal":16,"ScoreTotal":28465162,"ID":699491076,"Name":"DaSilva2402","NumVillages":206,"Points":1914918,"Rank":53,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699491076","BestRank":53,"BestRankAt":"2023-02-16T05:25:49.036737Z","MostPoints":1914918,"MostPointsAt":"2023-02-16T05:25:56.2783Z","MostVillages":206,"MostVillagesAt":"2023-02-16T05:25:49.036737Z","LastActivityAt":"2023-02-16T05:25:56.2783Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037592Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2256,"ScoreDef":455,"RankSup":0,"ScoreSup":0,"RankTotal":2341,"ScoreTotal":455,"ID":699491827,"Name":"KsiÄ™ĆŒnaAnna","NumVillages":1,"Points":743,"Rank":1917,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699491827","BestRank":1917,"BestRankAt":"2023-02-16T05:25:56.278301Z","MostPoints":743,"MostPointsAt":"2023-02-16T05:25:49.036737Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036737Z","LastActivityAt":"2023-02-16T05:25:49.036737Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037593Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2203,"ScoreDef":899,"RankSup":0,"ScoreSup":0,"RankTotal":2290,"ScoreTotal":899,"ID":699491924,"Name":"Lejlu","NumVillages":1,"Points":277,"Rank":2183,"TribeID":1795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699491924","BestRank":2183,"BestRankAt":"2023-02-16T05:25:56.278301Z","MostPoints":277,"MostPointsAt":"2023-02-16T05:25:56.278301Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036738Z","LastActivityAt":"2023-02-16T05:25:56.278301Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037594Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2337,"ScoreDef":65,"RankSup":0,"ScoreSup":0,"RankTotal":2432,"ScoreTotal":65,"ID":699492120,"Name":"djraaa1","NumVillages":1,"Points":168,"Rank":2331,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699492120","BestRank":2331,"BestRankAt":"2023-02-16T05:25:56.278302Z","MostPoints":168,"MostPointsAt":"2023-02-16T05:25:49.036738Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036738Z","LastActivityAt":"2023-02-16T05:25:49.036738Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037596Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699492817,"Name":"CebulowyRycerz","NumVillages":1,"Points":94,"Rank":2471,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699492817","BestRank":2471,"BestRankAt":"2023-02-16T05:25:56.278302Z","MostPoints":94,"MostPointsAt":"2023-02-16T05:25:49.036739Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036739Z","LastActivityAt":"2023-02-16T05:25:49.036739Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1138,"ScoreAtt":14283,"RankDef":1702,"ScoreDef":18260,"RankSup":767,"ScoreSup":32479,"RankTotal":1524,"ScoreTotal":65022,"ID":699493750,"Name":"krychukozak","NumVillages":8,"Points":33273,"Rank":785,"TribeID":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699493750","BestRank":785,"BestRankAt":"2023-02-16T05:25:56.278303Z","MostPoints":33273,"MostPointsAt":"2023-02-16T05:25:56.278303Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.036739Z","LastActivityAt":"2023-02-16T05:25:56.278303Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037597Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1065,"ScoreAtt":20822,"RankDef":176,"ScoreDef":2109979,"RankSup":445,"ScoreSup":235307,"RankTotal":362,"ScoreTotal":2366108,"ID":699494480,"Name":"Azucar","NumVillages":15,"Points":132714,"Rank":488,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699494480","BestRank":488,"BestRankAt":"2023-02-16T05:25:56.278303Z","MostPoints":132714,"MostPointsAt":"2023-02-16T05:25:56.278303Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.03674Z","LastActivityAt":"2023-02-16T05:25:56.278303Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":221,"ScoreAtt":1338512,"RankDef":897,"ScoreDef":169239,"RankSup":42,"ScoreSup":3853480,"RankTotal":172,"ScoreTotal":5361231,"ID":699494488,"Name":"ScofieldTPS","NumVillages":123,"Points":1226804,"Rank":108,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699494488","BestRank":106,"BestRankAt":"2023-02-16T05:25:49.03674Z","MostPoints":1226804,"MostPointsAt":"2023-02-16T05:25:56.278304Z","MostVillages":123,"MostVillagesAt":"2023-02-16T05:25:49.03674Z","LastActivityAt":"2023-02-16T05:25:56.278304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037598Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1675,"ScoreDef":19990,"RankSup":0,"ScoreSup":0,"RankTotal":1870,"ScoreTotal":19990,"ID":699498602,"Name":"Tymek1","NumVillages":0,"Points":0,"Rank":2953,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699498602","BestRank":2953,"BestRankAt":"2023-02-16T05:25:56.278304Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036741Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036741Z","LastActivityAt":"2023-02-16T05:25:49.036741Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037599Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1972,"ScoreAtt":4,"RankDef":1122,"ScoreDef":90225,"RankSup":1352,"ScoreSup":5,"RankTotal":1430,"ScoreTotal":90234,"ID":699501322,"Name":"Egwene","NumVillages":1,"Points":2946,"Rank":1520,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699501322","BestRank":1520,"BestRankAt":"2023-02-16T05:25:56.278305Z","MostPoints":2946,"MostPointsAt":"2023-02-16T05:25:49.036742Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036742Z","LastActivityAt":"2023-02-16T05:25:49.036742Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.0376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1067,"ScoreAtt":20717,"RankDef":1539,"ScoreDef":29953,"RankSup":0,"ScoreSup":0,"RankTotal":1603,"ScoreTotal":50670,"ID":699503079,"Name":"cinek3456","NumVillages":0,"Points":0,"Rank":2954,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699503079","BestRank":2954,"BestRankAt":"2023-02-16T05:25:56.278305Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036742Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036742Z","LastActivityAt":"2023-02-16T05:25:49.036742Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.0376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1032,"ScoreAtt":26021,"RankDef":1741,"ScoreDef":16108,"RankSup":0,"ScoreSup":0,"RankTotal":1659,"ScoreTotal":42129,"ID":699508363,"Name":"Myanmar","NumVillages":1,"Points":26,"Rank":2680,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699508363","BestRank":2680,"BestRankAt":"2023-02-16T05:25:56.278306Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.036743Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036743Z","LastActivityAt":"2023-02-16T05:25:49.036743Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037601Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":488,"ScoreAtt":376817,"RankDef":151,"ScoreDef":2552837,"RankSup":595,"ScoreSup":102111,"RankTotal":286,"ScoreTotal":3031765,"ID":699509239,"Name":"XMM Rudy 102","NumVillages":15,"Points":90306,"Rank":564,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699509239","BestRank":562,"BestRankAt":"2023-02-16T05:25:49.036743Z","MostPoints":90306,"MostPointsAt":"2023-02-16T05:25:56.278306Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.036743Z","LastActivityAt":"2023-02-16T05:25:56.278306Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1204,"ScoreAtt":10355,"RankDef":355,"ScoreDef":874078,"RankSup":620,"ScoreSup":88250,"RankTotal":627,"ScoreTotal":972683,"ID":699509284,"Name":"Lord Nc3dyh","NumVillages":5,"Points":20850,"Rank":906,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699509284","BestRank":905,"BestRankAt":"2023-02-16T05:25:49.036744Z","MostPoints":20850,"MostPointsAt":"2023-02-16T05:25:56.278307Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.036744Z","LastActivityAt":"2023-02-16T05:25:56.278307Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1374,"ScoreAtt":4613,"RankDef":1352,"ScoreDef":49928,"RankSup":898,"ScoreSup":11512,"RankTotal":1517,"ScoreTotal":66053,"ID":699510045,"Name":"BLACK SOLDI LP","NumVillages":4,"Points":18086,"Rank":951,"TribeID":1209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699510045","BestRank":949,"BestRankAt":"2023-02-16T05:25:49.036744Z","MostPoints":18086,"MostPointsAt":"2023-02-16T05:25:49.036744Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036744Z","LastActivityAt":"2023-02-16T05:25:49.036744Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":111,"ScoreAtt":2761552,"RankDef":468,"ScoreDef":571940,"RankSup":141,"ScoreSup":1558517,"RankTotal":191,"ScoreTotal":4892009,"ID":699510259,"Name":"Dulnik","NumVillages":93,"Points":710495,"Rank":203,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699510259","BestRank":203,"BestRankAt":"2023-02-16T05:25:56.278308Z","MostPoints":710495,"MostPointsAt":"2023-02-16T05:25:56.278308Z","MostVillages":93,"MostVillagesAt":"2023-02-16T05:25:49.036745Z","LastActivityAt":"2023-02-16T05:25:56.278308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":663,"ScoreAtt":148893,"RankDef":1799,"ScoreDef":12134,"RankSup":0,"ScoreSup":0,"RankTotal":1225,"ScoreTotal":161027,"ID":699511295,"Name":"Raven000PL","NumVillages":21,"Points":114784,"Rank":511,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699511295","BestRank":511,"BestRankAt":"2023-02-16T05:25:56.278308Z","MostPoints":114784,"MostPointsAt":"2023-02-16T05:25:56.278308Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.036745Z","LastActivityAt":"2023-02-16T05:25:56.278308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1772,"ScoreAtt":254,"RankDef":2148,"ScoreDef":1792,"RankSup":0,"ScoreSup":0,"RankTotal":2227,"ScoreTotal":2046,"ID":699511370,"Name":"brzydko.1","NumVillages":1,"Points":7408,"Rank":1188,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699511370","BestRank":1188,"BestRankAt":"2023-02-16T05:25:56.278309Z","MostPoints":7408,"MostPointsAt":"2023-02-16T05:25:49.036746Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036746Z","LastActivityAt":"2023-02-16T05:25:49.036746Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":12,"ScoreAtt":11458244,"RankDef":24,"ScoreDef":13381170,"RankSup":2,"ScoreSup":20061036,"RankTotal":8,"ScoreTotal":44900450,"ID":699513260,"Name":"Kuzyn Marek","NumVillages":361,"Points":3502338,"Rank":11,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699513260","BestRank":11,"BestRankAt":"2023-02-16T05:25:49.036747Z","MostPoints":3502338,"MostPointsAt":"2023-02-16T05:25:56.278309Z","MostVillages":361,"MostVillagesAt":"2023-02-16T05:25:49.036747Z","LastActivityAt":"2023-02-16T05:25:56.278309Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":514,"ScoreAtt":334459,"RankDef":1010,"ScoreDef":123787,"RankSup":155,"ScoreSup":1453641,"RankTotal":421,"ScoreTotal":1911887,"ID":699516250,"Name":"DuĆŒy Arek","NumVillages":3,"Points":9435,"Rank":1105,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699516250","BestRank":1105,"BestRankAt":"2023-02-16T05:25:56.27831Z","MostPoints":9435,"MostPointsAt":"2023-02-16T05:25:56.27831Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.036747Z","LastActivityAt":"2023-02-16T05:25:56.27831Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1640,"ScoreAtt":843,"RankDef":1556,"ScoreDef":28683,"RankSup":0,"ScoreSup":0,"RankTotal":1769,"ScoreTotal":29526,"ID":699516268,"Name":"krakusekk","NumVillages":5,"Points":39927,"Rank":741,"TribeID":557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699516268","BestRank":741,"BestRankAt":"2023-02-16T05:25:56.27831Z","MostPoints":39927,"MostPointsAt":"2023-02-16T05:25:56.27831Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.036748Z","LastActivityAt":"2023-02-16T05:25:56.27831Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1845,"ScoreAtt":114,"RankDef":1577,"ScoreDef":27327,"RankSup":0,"ScoreSup":0,"RankTotal":1790,"ScoreTotal":27441,"ID":699518384,"Name":"landhaus1","NumVillages":1,"Points":726,"Rank":1921,"TribeID":945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699518384","BestRank":1921,"BestRankAt":"2023-02-16T05:25:56.278311Z","MostPoints":726,"MostPointsAt":"2023-02-16T05:25:56.278311Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036749Z","LastActivityAt":"2023-02-16T05:25:56.278311Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1285,"ScoreAtt":6738,"RankDef":2345,"ScoreDef":52,"RankSup":0,"ScoreSup":0,"RankTotal":2064,"ScoreTotal":6790,"ID":699518454,"Name":"blatio","NumVillages":1,"Points":3307,"Rank":1477,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699518454","BestRank":1477,"BestRankAt":"2023-02-16T05:25:56.278311Z","MostPoints":3307,"MostPointsAt":"2023-02-16T05:25:49.03675Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036749Z","LastActivityAt":"2023-02-16T05:25:56.278312Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1634,"ScoreAtt":889,"RankDef":1253,"ScoreDef":62379,"RankSup":0,"ScoreSup":0,"RankTotal":1531,"ScoreTotal":63268,"ID":699520575,"Name":"Adamsoft","NumVillages":1,"Points":7994,"Rank":1155,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699520575","BestRank":1155,"BestRankAt":"2023-02-16T05:25:56.278312Z","MostPoints":7994,"MostPointsAt":"2023-02-16T05:25:49.03675Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.03675Z","LastActivityAt":"2023-02-16T05:25:49.03675Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03764Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1130,"ScoreAtt":15521,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":1919,"ScoreTotal":15521,"ID":699522257,"Name":"LORDHerkules13","NumVillages":1,"Points":4379,"Rank":1370,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699522257","BestRank":1370,"BestRankAt":"2023-02-16T05:25:56.278312Z","MostPoints":4379,"MostPointsAt":"2023-02-16T05:25:49.036751Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036751Z","LastActivityAt":"2023-02-16T05:25:49.036751Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":403,"ScoreAtt":581084,"RankDef":1725,"ScoreDef":16883,"RankSup":366,"ScoreSup":376994,"RankTotal":623,"ScoreTotal":974961,"ID":699523631,"Name":"l2adziu","NumVillages":56,"Points":559450,"Rank":251,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699523631","BestRank":249,"BestRankAt":"2023-02-16T05:25:49.036751Z","MostPoints":559450,"MostPointsAt":"2023-02-16T05:25:56.278313Z","MostVillages":56,"MostVillagesAt":"2023-02-16T05:25:49.036752Z","LastActivityAt":"2023-02-16T05:25:56.278313Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":484,"ScoreAtt":385948,"RankDef":1911,"ScoreDef":7275,"RankSup":757,"ScoreSup":33643,"RankTotal":889,"ScoreTotal":426866,"ID":699524362,"Name":"Pioter007","NumVillages":54,"Points":264737,"Rank":373,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699524362","BestRank":371,"BestRankAt":"2023-02-16T05:25:49.036752Z","MostPoints":264737,"MostPointsAt":"2023-02-16T05:25:56.278313Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:49.036752Z","LastActivityAt":"2023-02-16T05:25:56.278314Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":441,"ScoreAtt":467376,"RankDef":1677,"ScoreDef":19902,"RankSup":261,"ScoreSup":652166,"RankTotal":586,"ScoreTotal":1139444,"ID":699524891,"Name":"Tomall78","NumVillages":70,"Points":496492,"Rank":270,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699524891","BestRank":270,"BestRankAt":"2023-02-16T05:25:56.278314Z","MostPoints":496492,"MostPointsAt":"2023-02-16T05:25:56.278314Z","MostVillages":70,"MostVillagesAt":"2023-02-16T05:25:56.278314Z","LastActivityAt":"2023-02-16T05:25:56.278314Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1623,"ScoreAtt":990,"RankDef":1186,"ScoreDef":75693,"RankSup":0,"ScoreSup":0,"RankTotal":1472,"ScoreTotal":76683,"ID":699530673,"Name":"Westor","NumVillages":5,"Points":24042,"Rank":875,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699530673","BestRank":872,"BestRankAt":"2023-02-16T05:25:49.036754Z","MostPoints":24042,"MostPointsAt":"2023-02-16T05:25:49.036754Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.036754Z","LastActivityAt":"2023-02-16T05:25:49.036754Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699535590,"Name":"lsjhjvdhgvfskhbsfv","NumVillages":1,"Points":208,"Rank":2259,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699535590","BestRank":2259,"BestRankAt":"2023-02-16T05:25:56.278315Z","MostPoints":208,"MostPointsAt":"2023-02-16T05:25:49.036754Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036754Z","LastActivityAt":"2023-02-16T05:25:49.036754Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1619,"ScoreAtt":1030,"RankDef":1585,"ScoreDef":26368,"RankSup":0,"ScoreSup":0,"RankTotal":1793,"ScoreTotal":27398,"ID":699541376,"Name":"Mr.P","NumVillages":4,"Points":12161,"Rank":1043,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699541376","BestRank":1043,"BestRankAt":"2023-02-16T05:25:56.278315Z","MostPoints":12161,"MostPointsAt":"2023-02-16T05:25:56.278316Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.036755Z","LastActivityAt":"2023-02-16T05:25:56.278316Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2323,"ScoreDef":107,"RankSup":0,"ScoreSup":0,"RankTotal":2417,"ScoreTotal":107,"ID":699542874,"Name":"Makss","NumVillages":0,"Points":0,"Rank":2955,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699542874","BestRank":2955,"BestRankAt":"2023-02-16T05:25:56.278316Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036755Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036755Z","LastActivityAt":"2023-02-16T05:25:49.036755Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":928,"ScoreAtt":44744,"RankDef":1558,"ScoreDef":28615,"RankSup":0,"ScoreSup":0,"RankTotal":1477,"ScoreTotal":73359,"ID":699543968,"Name":"0nxss","NumVillages":0,"Points":0,"Rank":2956,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699543968","BestRank":2956,"BestRankAt":"2023-02-16T05:25:56.278316Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.036756Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.036756Z","LastActivityAt":"2023-02-16T05:25:49.036756Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1780,"ScoreAtt":233,"RankDef":516,"ScoreDef":497108,"RankSup":112,"ScoreSup":1983808,"RankTotal":352,"ScoreTotal":2481149,"ID":699545762,"Name":"Deornoth","NumVillages":7,"Points":29712,"Rank":823,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699545762","BestRank":819,"BestRankAt":"2023-02-16T05:25:49.036756Z","MostPoints":29712,"MostPointsAt":"2023-02-16T05:25:56.278317Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.036757Z","LastActivityAt":"2023-02-16T05:25:56.278317Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.037648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1566,"ScoreDef":28324,"RankSup":0,"ScoreSup":0,"RankTotal":1781,"ScoreTotal":28324,"ID":699545975,"Name":"Mistrzunio229","NumVillages":1,"Points":195,"Rank":2285,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699545975","BestRank":2285,"BestRankAt":"2023-02-16T05:25:56.278317Z","MostPoints":195,"MostPointsAt":"2023-02-16T05:25:49.036758Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.036758Z","LastActivityAt":"2023-02-16T05:25:49.036758Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.03765Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1276,"ScoreAtt":6983,"RankDef":1295,"ScoreDef":57682,"RankSup":0,"ScoreSup":0,"RankTotal":1525,"ScoreTotal":64665,"ID":699546317,"Name":"Sebko70","NumVillages":1,"Points":245,"Rank":2214,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699546317","BestRank":2214,"BestRankAt":"2023-02-16T05:25:56.278318Z","MostPoints":245,"MostPointsAt":"2023-02-16T05:25:56.278318Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118981Z","LastActivityAt":"2023-02-16T05:25:56.278318Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":511,"ScoreAtt":339100,"RankDef":212,"ScoreDef":1799870,"RankSup":434,"ScoreSup":248090,"RankTotal":360,"ScoreTotal":2387060,"ID":699548295,"Name":"zimny 11","NumVillages":6,"Points":37922,"Rank":754,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699548295","BestRank":752,"BestRankAt":"2023-02-16T05:25:49.118983Z","MostPoints":37922,"MostPointsAt":"2023-02-16T05:25:49.118983Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.118983Z","LastActivityAt":"2023-02-16T05:25:49.118983Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699548922,"Name":"Nooowka07","NumVillages":1,"Points":26,"Rank":2681,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699548922","BestRank":2681,"BestRankAt":"2023-02-16T05:25:56.278319Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.118984Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118984Z","LastActivityAt":"2023-02-16T05:25:49.118985Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":824,"ScoreAtt":71358,"RankDef":571,"ScoreDef":408417,"RankSup":0,"ScoreSup":0,"RankTotal":856,"ScoreTotal":479775,"ID":699550876,"Name":"StopsoN7","NumVillages":15,"Points":78580,"Rank":588,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699550876","BestRank":588,"BestRankAt":"2023-02-16T05:25:56.278319Z","MostPoints":78580,"MostPointsAt":"2023-02-16T05:25:56.278319Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.118986Z","LastActivityAt":"2023-02-16T05:25:56.27832Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1232,"ScoreAtt":8803,"RankDef":2239,"ScoreDef":561,"RankSup":0,"ScoreSup":0,"RankTotal":2004,"ScoreTotal":9364,"ID":699551148,"Name":"pisior18","NumVillages":1,"Points":62,"Rank":2526,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699551148","BestRank":2526,"BestRankAt":"2023-02-16T05:25:56.27832Z","MostPoints":62,"MostPointsAt":"2023-02-16T05:25:49.118987Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118987Z","LastActivityAt":"2023-02-16T05:25:49.118987Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":530,"ScoreAtt":311220,"RankDef":231,"ScoreDef":1663559,"RankSup":237,"ScoreSup":750968,"RankTotal":324,"ScoreTotal":2725747,"ID":699552859,"Name":"Don Kalion","NumVillages":1,"Points":26,"Rank":2682,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699552859","BestRank":2682,"BestRankAt":"2023-02-16T05:25:56.27832Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.118988Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118988Z","LastActivityAt":"2023-02-16T05:25:49.118989Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":879,"ScoreAtt":55212,"RankDef":1757,"ScoreDef":14796,"RankSup":1143,"ScoreSup":996,"RankTotal":1492,"ScoreTotal":71004,"ID":699554427,"Name":"Krejv95","NumVillages":1,"Points":26,"Rank":2683,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699554427","BestRank":2683,"BestRankAt":"2023-02-16T05:25:56.278321Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11899Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118989Z","LastActivityAt":"2023-02-16T05:25:49.11899Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1319,"ScoreAtt":5871,"RankDef":1739,"ScoreDef":16218,"RankSup":619,"ScoreSup":88438,"RankTotal":1353,"ScoreTotal":110527,"ID":699556684,"Name":"Atryda","NumVillages":0,"Points":0,"Rank":2957,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699556684","BestRank":2957,"BestRankAt":"2023-02-16T05:25:56.278321Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.118991Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.118991Z","LastActivityAt":"2023-02-16T05:25:49.118991Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":728,"ScoreAtt":110609,"RankDef":460,"ScoreDef":594814,"RankSup":0,"ScoreSup":0,"RankTotal":729,"ScoreTotal":705423,"ID":699557165,"Name":"mmarcinho","NumVillages":1,"Points":26,"Rank":2684,"TribeID":1638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699557165","BestRank":2684,"BestRankAt":"2023-02-16T05:25:56.278322Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.118993Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118992Z","LastActivityAt":"2023-02-16T05:25:49.118993Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":854,"ScoreAtt":62642,"RankDef":1316,"ScoreDef":55227,"RankSup":0,"ScoreSup":0,"RankTotal":1329,"ScoreTotal":117869,"ID":699560327,"Name":"Hartigan","NumVillages":2,"Points":14893,"Rank":1001,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699560327","BestRank":997,"BestRankAt":"2023-02-16T05:25:49.118993Z","MostPoints":14893,"MostPointsAt":"2023-02-16T05:25:49.118994Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.118994Z","LastActivityAt":"2023-02-16T05:25:49.118994Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699560963,"Name":"Sir NoToKredki","NumVillages":1,"Points":56,"Rank":2533,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699560963","BestRank":2533,"BestRankAt":"2023-02-16T05:25:56.278323Z","MostPoints":56,"MostPointsAt":"2023-02-16T05:25:49.118995Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118995Z","LastActivityAt":"2023-02-16T05:25:49.118995Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":689,"ScoreAtt":137319,"RankDef":118,"ScoreDef":3186252,"RankSup":580,"ScoreSup":108344,"RankTotal":260,"ScoreTotal":3431915,"ID":699562182,"Name":"diammyx3","NumVillages":5,"Points":19795,"Rank":923,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699562182","BestRank":923,"BestRankAt":"2023-02-16T05:25:56.278323Z","MostPoints":19795,"MostPointsAt":"2023-02-16T05:25:56.278323Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.118996Z","LastActivityAt":"2023-02-16T05:25:56.278323Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1454,"ScoreAtt":3025,"RankDef":873,"ScoreDef":181297,"RankSup":1334,"ScoreSup":9,"RankTotal":1179,"ScoreTotal":184331,"ID":699562874,"Name":"hubertw25","NumVillages":7,"Points":40580,"Rank":737,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699562874","BestRank":737,"BestRankAt":"2023-02-16T05:25:56.278324Z","MostPoints":40580,"MostPointsAt":"2023-02-16T05:25:56.278324Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.118997Z","LastActivityAt":"2023-02-16T05:25:56.278324Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699564303,"Name":"coreslaw","NumVillages":1,"Points":200,"Rank":2271,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699564303","BestRank":2271,"BestRankAt":"2023-02-16T05:25:56.278324Z","MostPoints":200,"MostPointsAt":"2023-02-16T05:25:49.118999Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.118999Z","LastActivityAt":"2023-02-16T05:25:49.118999Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119715Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":182,"ScoreAtt":1731024,"RankDef":1634,"ScoreDef":23311,"RankSup":32,"ScoreSup":4620534,"RankTotal":140,"ScoreTotal":6374869,"ID":699567608,"Name":"Stanly156","NumVillages":163,"Points":1533714,"Rank":78,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699567608","BestRank":77,"BestRankAt":"2023-02-16T05:25:49.119001Z","MostPoints":1533714,"MostPointsAt":"2023-02-16T05:25:56.278325Z","MostVillages":163,"MostVillagesAt":"2023-02-16T05:25:49.119001Z","LastActivityAt":"2023-02-16T05:25:56.278325Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1695,"ScoreAtt":560,"RankDef":2186,"ScoreDef":1152,"RankSup":1180,"ScoreSup":532,"RankTotal":2217,"ScoreTotal":2244,"ID":699569800,"Name":"Lululu95","NumVillages":3,"Points":18958,"Rank":935,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699569800","BestRank":935,"BestRankAt":"2023-02-16T05:25:49.119002Z","MostPoints":18958,"MostPointsAt":"2023-02-16T05:25:49.119003Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119002Z","LastActivityAt":"2023-02-16T05:25:49.119003Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":107,"ScoreAtt":2937106,"RankDef":797,"ScoreDef":217860,"RankSup":544,"ScoreSup":134664,"RankTotal":267,"ScoreTotal":3289630,"ID":699573053,"Name":"MONAMI","NumVillages":106,"Points":1080784,"Rank":132,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699573053","BestRank":130,"BestRankAt":"2023-02-16T05:25:49.119003Z","MostPoints":1080784,"MostPointsAt":"2023-02-16T05:25:49.119004Z","MostVillages":106,"MostVillagesAt":"2023-02-16T05:25:49.119004Z","LastActivityAt":"2023-02-16T05:25:49.119004Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":442,"ScoreAtt":466980,"RankDef":1498,"ScoreDef":33756,"RankSup":493,"ScoreSup":177367,"RankTotal":739,"ScoreTotal":678103,"ID":699574408,"Name":"emoriar","NumVillages":105,"Points":842903,"Rank":174,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699574408","BestRank":174,"BestRankAt":"2023-02-16T05:25:49.119005Z","MostPoints":842903,"MostPointsAt":"2023-02-16T05:25:56.278326Z","MostVillages":105,"MostVillagesAt":"2023-02-16T05:25:49.119005Z","LastActivityAt":"2023-02-16T05:25:56.278326Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":941,"ScoreAtt":41810,"RankDef":1389,"ScoreDef":45472,"RankSup":834,"ScoreSup":18024,"RankTotal":1368,"ScoreTotal":105306,"ID":699576407,"Name":"AAnubiSS","NumVillages":6,"Points":35572,"Rank":771,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699576407","BestRank":771,"BestRankAt":"2023-02-16T05:25:56.278327Z","MostPoints":35572,"MostPointsAt":"2023-02-16T05:25:56.278327Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119006Z","LastActivityAt":"2023-02-16T05:25:56.278327Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1195,"ScoreAtt":10678,"RankDef":1050,"ScoreDef":107887,"RankSup":1188,"ScoreSup":450,"RankTotal":1326,"ScoreTotal":119015,"ID":699576978,"Name":"andziolaa","NumVillages":1,"Points":847,"Rank":1889,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699576978","BestRank":1889,"BestRankAt":"2023-02-16T05:25:56.278327Z","MostPoints":847,"MostPointsAt":"2023-02-16T05:25:49.119007Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119007Z","LastActivityAt":"2023-02-16T05:25:49.119008Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699577663,"Name":"RudnikDagger","NumVillages":1,"Points":26,"Rank":2685,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699577663","BestRank":2685,"BestRankAt":"2023-02-16T05:25:56.278328Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119009Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119009Z","LastActivityAt":"2023-02-16T05:25:49.119009Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":475,"ScoreAtt":406622,"RankDef":1367,"ScoreDef":48145,"RankSup":1078,"ScoreSup":2260,"RankTotal":870,"ScoreTotal":457027,"ID":699578606,"Name":"Lord Konzi","NumVillages":0,"Points":0,"Rank":2958,"TribeID":1716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699578606","BestRank":2958,"BestRankAt":"2023-02-16T05:25:56.278328Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.11901Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.11901Z","LastActivityAt":"2023-02-16T05:25:49.11901Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":686,"ScoreAtt":139043,"RankDef":326,"ScoreDef":1008267,"RankSup":505,"ScoreSup":170989,"RankTotal":537,"ScoreTotal":1318299,"ID":699580120,"Name":"Ciachociech","NumVillages":32,"Points":225112,"Rank":399,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699580120","BestRank":399,"BestRankAt":"2023-02-16T05:25:56.278329Z","MostPoints":225112,"MostPointsAt":"2023-02-16T05:25:56.278329Z","MostVillages":32,"MostVillagesAt":"2023-02-16T05:25:49.119011Z","LastActivityAt":"2023-02-16T05:25:56.278329Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1014,"ScoreAtt":27873,"RankDef":1032,"ScoreDef":115243,"RankSup":462,"ScoreSup":209325,"RankTotal":955,"ScoreTotal":352441,"ID":699583677,"Name":"Lexmet","NumVillages":0,"Points":0,"Rank":2959,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699583677","BestRank":2959,"BestRankAt":"2023-02-16T05:25:56.278329Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119013Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119012Z","LastActivityAt":"2023-02-16T05:25:49.119013Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1869,"ScoreDef":9046,"RankSup":1420,"ScoreSup":1,"RankTotal":2010,"ScoreTotal":9047,"ID":699588526,"Name":"Dirk ze Skraju Lasu","NumVillages":3,"Points":10341,"Rank":1074,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699588526","BestRank":1074,"BestRankAt":"2023-02-16T05:25:56.27833Z","MostPoints":10341,"MostPointsAt":"2023-02-16T05:25:56.27833Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119014Z","LastActivityAt":"2023-02-16T05:25:56.27833Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":826,"ScoreAtt":70850,"RankDef":609,"ScoreDef":368909,"RankSup":610,"ScoreSup":93292,"RankTotal":817,"ScoreTotal":533051,"ID":699589540,"Name":"bbbarteqqq","NumVillages":1,"Points":324,"Rank":2133,"TribeID":1528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699589540","BestRank":2133,"BestRankAt":"2023-02-16T05:25:56.27833Z","MostPoints":324,"MostPointsAt":"2023-02-16T05:25:49.119017Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119017Z","LastActivityAt":"2023-02-16T05:25:49.119017Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":506,"ScoreDef":509942,"RankSup":0,"ScoreSup":0,"RankTotal":832,"ScoreTotal":509942,"ID":699590236,"Name":"ZygaH","NumVillages":1,"Points":3029,"Rank":1510,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699590236","BestRank":1510,"BestRankAt":"2023-02-16T05:25:56.312556Z","MostPoints":3029,"MostPointsAt":"2023-02-16T05:25:49.119018Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119018Z","LastActivityAt":"2023-02-16T05:25:49.119018Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119733Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1113,"ScoreAtt":16968,"RankDef":1705,"ScoreDef":17800,"RankSup":310,"ScoreSup":500882,"RankTotal":815,"ScoreTotal":535650,"ID":699595556,"Name":"Lord ramagama","NumVillages":8,"Points":36892,"Rank":762,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699595556","BestRank":762,"BestRankAt":"2023-02-16T05:25:56.312557Z","MostPoints":36892,"MostPointsAt":"2023-02-16T05:25:56.312557Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:56.312557Z","LastActivityAt":"2023-02-16T05:25:56.312557Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119735Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":604,"ScoreDef":377011,"RankSup":1083,"ScoreSup":2140,"RankTotal":933,"ScoreTotal":379151,"ID":699598396,"Name":"gall","NumVillages":9,"Points":19300,"Rank":929,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598396","BestRank":929,"BestRankAt":"2023-02-16T05:25:56.312557Z","MostPoints":19300,"MostPointsAt":"2023-02-16T05:25:56.312558Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.11902Z","LastActivityAt":"2023-02-16T05:25:56.312558Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119737Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":53,"ScoreAtt":4802676,"RankDef":455,"ScoreDef":605570,"RankSup":667,"ScoreSup":62024,"RankTotal":169,"ScoreTotal":5470270,"ID":699598425,"Name":"Pomidorowy dzem","NumVillages":195,"Points":1585744,"Rank":74,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598425","BestRank":74,"BestRankAt":"2023-02-16T05:25:56.312558Z","MostPoints":1585744,"MostPointsAt":"2023-02-16T05:25:56.312558Z","MostVillages":195,"MostVillagesAt":"2023-02-16T05:25:56.312558Z","LastActivityAt":"2023-02-16T05:25:56.312558Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119737Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2407,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2503,"ScoreTotal":13,"ID":699598671,"Name":"marq135","NumVillages":1,"Points":1160,"Rank":1801,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598671","BestRank":1801,"BestRankAt":"2023-02-16T05:25:56.312559Z","MostPoints":1160,"MostPointsAt":"2023-02-16T05:25:49.119023Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119023Z","LastActivityAt":"2023-02-16T05:25:49.119023Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2405,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2504,"ScoreTotal":13,"ID":699598764,"Name":"Afterparty","NumVillages":1,"Points":1144,"Rank":1806,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699598764","BestRank":1806,"BestRankAt":"2023-02-16T05:25:56.312559Z","MostPoints":1144,"MostPointsAt":"2023-02-16T05:25:49.119024Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119024Z","LastActivityAt":"2023-02-16T05:25:49.119024Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119742Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1665,"ScoreAtt":721,"RankDef":2249,"ScoreDef":517,"RankSup":1261,"ScoreSup":76,"RankTotal":2271,"ScoreTotal":1314,"ID":699600167,"Name":"Szyszka77","NumVillages":1,"Points":143,"Rank":2362,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699600167","BestRank":2362,"BestRankAt":"2023-02-16T05:25:56.31256Z","MostPoints":143,"MostPointsAt":"2023-02-16T05:25:49.119025Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119025Z","LastActivityAt":"2023-02-16T05:25:49.119026Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119745Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":820,"ScoreAtt":71783,"RankDef":377,"ScoreDef":800627,"RankSup":794,"ScoreSup":25213,"RankTotal":655,"ScoreTotal":897623,"ID":699600855,"Name":"7homasbaN1","NumVillages":1,"Points":277,"Rank":2184,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699600855","BestRank":2184,"BestRankAt":"2023-02-16T05:25:56.31256Z","MostPoints":277,"MostPointsAt":"2023-02-16T05:25:49.119027Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119026Z","LastActivityAt":"2023-02-16T05:25:49.119027Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119746Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699603033,"Name":"Krzysiek933","NumVillages":1,"Points":102,"Rank":2455,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699603033","BestRank":2455,"BestRankAt":"2023-02-16T05:25:56.312561Z","MostPoints":102,"MostPointsAt":"2023-02-16T05:25:49.119028Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119028Z","LastActivityAt":"2023-02-16T05:25:49.119028Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119748Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":250,"ScoreAtt":1127435,"RankDef":1385,"ScoreDef":46457,"RankSup":689,"ScoreSup":54862,"RankTotal":557,"ScoreTotal":1228754,"ID":699603116,"Name":"Infamiia x Bartez","NumVillages":64,"Points":494300,"Rank":272,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699603116","BestRank":259,"BestRankAt":"2023-02-16T05:25:49.119029Z","MostPoints":522621,"MostPointsAt":"2023-02-16T05:25:49.119029Z","MostVillages":67,"MostVillagesAt":"2023-02-16T05:25:49.119029Z","LastActivityAt":"2023-02-16T05:25:49.119029Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":835,"ScoreAtt":69125,"RankDef":936,"ScoreDef":150336,"RankSup":959,"ScoreSup":6939,"RankTotal":1098,"ScoreTotal":226400,"ID":699604515,"Name":"KruliK","NumVillages":7,"Points":15985,"Rank":984,"TribeID":1652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699604515","BestRank":983,"BestRankAt":"2023-02-16T05:25:49.11903Z","MostPoints":15985,"MostPointsAt":"2023-02-16T05:25:56.312562Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.11903Z","LastActivityAt":"2023-02-16T05:25:56.312562Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":41,"ScoreAtt":5654937,"RankDef":247,"ScoreDef":1543124,"RankSup":136,"ScoreSup":1588083,"RankTotal":88,"ScoreTotal":8786144,"ID":699605333,"Name":"Dominik 17cm","NumVillages":136,"Points":1251597,"Rank":101,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699605333","BestRank":101,"BestRankAt":"2023-02-16T05:25:49.119031Z","MostPoints":1251597,"MostPointsAt":"2023-02-16T05:25:56.312562Z","MostVillages":136,"MostVillagesAt":"2023-02-16T05:25:49.119031Z","LastActivityAt":"2023-02-16T05:25:56.312562Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119752Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1856,"ScoreAtt":94,"RankDef":2176,"ScoreDef":1313,"RankSup":0,"ScoreSup":0,"RankTotal":2265,"ScoreTotal":1407,"ID":699609445,"Name":"Bicoss","NumVillages":1,"Points":887,"Rank":1873,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699609445","BestRank":1855,"BestRankAt":"2023-02-16T05:25:49.119032Z","MostPoints":1026,"MostPointsAt":"2023-02-16T05:25:49.119033Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119033Z","LastActivityAt":"2023-02-16T05:25:49.119033Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119754Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1177,"ScoreAtt":11736,"RankDef":508,"ScoreDef":507543,"RankSup":1196,"ScoreSup":378,"RankTotal":825,"ScoreTotal":519657,"ID":699611673,"Name":"Asaret","NumVillages":4,"Points":24528,"Rank":870,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699611673","BestRank":864,"BestRankAt":"2023-02-16T05:25:49.119034Z","MostPoints":24528,"MostPointsAt":"2023-02-16T05:25:56.312563Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119034Z","LastActivityAt":"2023-02-16T05:25:56.312563Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119755Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1876,"ScoreAtt":62,"RankDef":2286,"ScoreDef":261,"RankSup":0,"ScoreSup":0,"RankTotal":2358,"ScoreTotal":323,"ID":699613884,"Name":"Bracket","NumVillages":0,"Points":0,"Rank":2960,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699613884","BestRank":2960,"BestRankAt":"2023-02-16T05:25:56.312563Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119035Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119035Z","LastActivityAt":"2023-02-16T05:25:49.119036Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119756Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1955,"ScoreAtt":9,"RankDef":1420,"ScoreDef":40612,"RankSup":0,"ScoreSup":0,"RankTotal":1671,"ScoreTotal":40621,"ID":699614027,"Name":"BenyZSZ","NumVillages":1,"Points":989,"Rank":1852,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699614027","BestRank":1852,"BestRankAt":"2023-02-16T05:25:56.312564Z","MostPoints":989,"MostPointsAt":"2023-02-16T05:25:49.119037Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119036Z","LastActivityAt":"2023-02-16T05:25:49.119037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119758Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1922,"ScoreDef":6879,"RankSup":0,"ScoreSup":0,"RankTotal":2062,"ScoreTotal":6879,"ID":699614821,"Name":"gazda30","NumVillages":1,"Points":127,"Rank":2408,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699614821","BestRank":2408,"BestRankAt":"2023-02-16T05:25:56.312564Z","MostPoints":127,"MostPointsAt":"2023-02-16T05:25:49.119038Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119038Z","LastActivityAt":"2023-02-16T05:25:49.119038Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699617524,"Name":"Dziobson266","NumVillages":1,"Points":203,"Rank":2267,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699617524","BestRank":2267,"BestRankAt":"2023-02-16T05:25:56.312565Z","MostPoints":203,"MostPointsAt":"2023-02-16T05:25:49.119039Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119039Z","LastActivityAt":"2023-02-16T05:25:49.119039Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699618066,"Name":"donpabloone","NumVillages":1,"Points":26,"Rank":2686,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699618066","BestRank":2686,"BestRankAt":"2023-02-16T05:25:56.312565Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11904Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11904Z","LastActivityAt":"2023-02-16T05:25:49.11904Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119762Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2409,"ScoreDef":12,"RankSup":0,"ScoreSup":0,"RankTotal":2506,"ScoreTotal":12,"ID":699618326,"Name":"Maverick1","NumVillages":1,"Points":3993,"Rank":1401,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699618326","BestRank":1401,"BestRankAt":"2023-02-16T05:25:56.312566Z","MostPoints":3993,"MostPointsAt":"2023-02-16T05:25:49.119041Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119041Z","LastActivityAt":"2023-02-16T05:25:49.119042Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119764Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":858,"ScoreDef":185252,"RankSup":1312,"ScoreSup":17,"RankTotal":1174,"ScoreTotal":185269,"ID":699620730,"Name":"rumcajski","NumVillages":0,"Points":0,"Rank":2961,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699620730","BestRank":2961,"BestRankAt":"2023-02-16T05:25:56.312566Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119043Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119043Z","LastActivityAt":"2023-02-16T05:25:49.119043Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119766Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1165,"ScoreAtt":12387,"RankDef":1446,"ScoreDef":38565,"RankSup":1007,"ScoreSup":4345,"RankTotal":1576,"ScoreTotal":55297,"ID":699621601,"Name":"Joffrey666","NumVillages":22,"Points":144636,"Rank":473,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699621601","BestRank":471,"BestRankAt":"2023-02-16T05:25:49.119044Z","MostPoints":144636,"MostPointsAt":"2023-02-16T05:25:49.119044Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.119044Z","LastActivityAt":"2023-02-16T05:25:49.119044Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119766Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1738,"ScoreAtt":340,"RankDef":1859,"ScoreDef":9533,"RankSup":0,"ScoreSup":0,"RankTotal":1993,"ScoreTotal":9873,"ID":699622781,"Name":"Jack 69","NumVillages":1,"Points":2777,"Rank":1548,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699622781","BestRank":1548,"BestRankAt":"2023-02-16T05:25:56.312567Z","MostPoints":2777,"MostPointsAt":"2023-02-16T05:25:56.312567Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119045Z","LastActivityAt":"2023-02-16T05:25:56.312567Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119768Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1525,"ScoreAtt":2070,"RankDef":1224,"ScoreDef":68004,"RankSup":0,"ScoreSup":0,"RankTotal":1501,"ScoreTotal":70074,"ID":699622958,"Name":"kuba987","NumVillages":1,"Points":97,"Rank":2466,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699622958","BestRank":2466,"BestRankAt":"2023-02-16T05:25:56.312568Z","MostPoints":97,"MostPointsAt":"2023-02-16T05:25:49.119046Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119046Z","LastActivityAt":"2023-02-16T05:25:49.119047Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699624570,"Name":"Deckuƛ DowĂłdca Podziemia","NumVillages":1,"Points":77,"Rank":2490,"TribeID":1802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699624570","BestRank":2490,"BestRankAt":"2023-02-16T05:25:56.312568Z","MostPoints":77,"MostPointsAt":"2023-02-16T05:25:49.119048Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119048Z","LastActivityAt":"2023-02-16T05:25:49.119048Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119773Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1409,"ScoreAtt":3920,"RankDef":1380,"ScoreDef":46954,"RankSup":0,"ScoreSup":0,"RankTotal":1601,"ScoreTotal":50874,"ID":699627771,"Name":"P1Kasik","NumVillages":4,"Points":12828,"Rank":1034,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699627771","BestRank":1034,"BestRankAt":"2023-02-16T05:25:56.312569Z","MostPoints":12828,"MostPointsAt":"2023-02-16T05:25:56.312569Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119049Z","LastActivityAt":"2023-02-16T05:25:56.312569Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119773Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":156,"ScoreAtt":2013823,"RankDef":1756,"ScoreDef":14796,"RankSup":541,"ScoreSup":136588,"RankTotal":388,"ScoreTotal":2165207,"ID":699628084,"Name":"k4myk","NumVillages":99,"Points":787291,"Rank":184,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699628084","BestRank":184,"BestRankAt":"2023-02-16T05:25:56.312569Z","MostPoints":787291,"MostPointsAt":"2023-02-16T05:25:56.312569Z","MostVillages":99,"MostVillagesAt":"2023-02-16T05:25:49.119051Z","LastActivityAt":"2023-02-16T05:25:56.31257Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119775Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1992,"ScoreDef":4998,"RankSup":0,"ScoreSup":0,"RankTotal":2122,"ScoreTotal":4998,"ID":699630110,"Name":"Dam2314","NumVillages":1,"Points":4776,"Rank":1341,"TribeID":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699630110","BestRank":1341,"BestRankAt":"2023-02-16T05:25:56.31257Z","MostPoints":4776,"MostPointsAt":"2023-02-16T05:25:49.119053Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119053Z","LastActivityAt":"2023-02-16T05:25:49.119053Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119777Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699630393,"Name":"MiczMicz","NumVillages":1,"Points":104,"Rank":2451,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699630393","BestRank":2451,"BestRankAt":"2023-02-16T05:25:56.31257Z","MostPoints":104,"MostPointsAt":"2023-02-16T05:25:49.119054Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119054Z","LastActivityAt":"2023-02-16T05:25:49.119054Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119777Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1141,"ScoreAtt":14188,"RankDef":1178,"ScoreDef":77126,"RankSup":0,"ScoreSup":0,"RankTotal":1426,"ScoreTotal":91314,"ID":699632387,"Name":"Lady elo320","NumVillages":1,"Points":3500,"Rank":1456,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699632387","BestRank":1456,"BestRankAt":"2023-02-16T05:25:56.312571Z","MostPoints":3500,"MostPointsAt":"2023-02-16T05:25:56.312571Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119055Z","LastActivityAt":"2023-02-16T05:25:56.312571Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119779Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699633365,"Name":"King Schultz","NumVillages":1,"Points":668,"Rank":1942,"TribeID":1807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699633365","BestRank":1942,"BestRankAt":"2023-02-16T05:25:56.312571Z","MostPoints":668,"MostPointsAt":"2023-02-16T05:25:56.312572Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119056Z","LastActivityAt":"2023-02-16T05:25:56.312572Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119781Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699635774,"Name":"Mad World","NumVillages":1,"Points":26,"Rank":2687,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699635774","BestRank":2687,"BestRankAt":"2023-02-16T05:25:56.312572Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119058Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119058Z","LastActivityAt":"2023-02-16T05:25:49.119058Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119783Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2277,"ScoreDef":326,"RankSup":0,"ScoreSup":0,"RankTotal":2355,"ScoreTotal":326,"ID":699639001,"Name":"RĂłĆŒalXDD","NumVillages":1,"Points":1110,"Rank":1818,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699639001","BestRank":1818,"BestRankAt":"2023-02-16T05:25:56.312572Z","MostPoints":1110,"MostPointsAt":"2023-02-16T05:25:49.119059Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119059Z","LastActivityAt":"2023-02-16T05:25:49.119059Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119783Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1803,"ScoreAtt":174,"RankDef":1370,"ScoreDef":47862,"RankSup":0,"ScoreSup":0,"RankTotal":1621,"ScoreTotal":48036,"ID":699639005,"Name":"kakuna","NumVillages":1,"Points":2287,"Rank":1601,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699639005","BestRank":1601,"BestRankAt":"2023-02-16T05:25:56.312573Z","MostPoints":2287,"MostPointsAt":"2023-02-16T05:25:49.11906Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11906Z","LastActivityAt":"2023-02-16T05:25:49.11906Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119785Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":698,"ScoreAtt":128299,"RankDef":683,"ScoreDef":287177,"RankSup":0,"ScoreSup":0,"RankTotal":901,"ScoreTotal":415476,"ID":699639122,"Name":"Arkadio1","NumVillages":2,"Points":8575,"Rank":1129,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699639122","BestRank":1129,"BestRankAt":"2023-02-16T05:25:56.312573Z","MostPoints":8575,"MostPointsAt":"2023-02-16T05:25:49.119062Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119061Z","LastActivityAt":"2023-02-16T05:25:49.119062Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1589,"ScoreAtt":1297,"RankDef":647,"ScoreDef":327110,"RankSup":0,"ScoreSup":0,"RankTotal":979,"ScoreTotal":328407,"ID":699641777,"Name":"Lord Shimonus","NumVillages":13,"Points":50577,"Rank":691,"TribeID":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699641777","BestRank":691,"BestRankAt":"2023-02-16T05:25:56.312574Z","MostPoints":50577,"MostPointsAt":"2023-02-16T05:25:56.312574Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.119063Z","LastActivityAt":"2023-02-16T05:25:56.312574Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119791Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1235,"ScoreDef":66255,"RankSup":0,"ScoreSup":0,"RankTotal":1515,"ScoreTotal":66255,"ID":699642954,"Name":"Herkuless","NumVillages":1,"Points":887,"Rank":1874,"TribeID":625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699642954","BestRank":1874,"BestRankAt":"2023-02-16T05:25:56.312574Z","MostPoints":887,"MostPointsAt":"2023-02-16T05:25:56.312575Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119064Z","LastActivityAt":"2023-02-16T05:25:56.312575Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119793Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":902,"ScoreDef":166843,"RankSup":809,"ScoreSup":22748,"RankTotal":1161,"ScoreTotal":189591,"ID":699644054,"Name":"Lijor","NumVillages":3,"Points":6881,"Rank":1214,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699644054","BestRank":1214,"BestRankAt":"2023-02-16T05:25:56.312575Z","MostPoints":6881,"MostPointsAt":"2023-02-16T05:25:49.119065Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119065Z","LastActivityAt":"2023-02-16T05:25:49.119065Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119795Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1082,"ScoreAtt":19695,"RankDef":776,"ScoreDef":232766,"RankSup":0,"ScoreSup":0,"RankTotal":1051,"ScoreTotal":252461,"ID":699644448,"Name":"Rodriges1271","NumVillages":14,"Points":67002,"Rank":627,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699644448","BestRank":627,"BestRankAt":"2023-02-16T05:25:56.312575Z","MostPoints":67002,"MostPointsAt":"2023-02-16T05:25:56.312576Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.119066Z","LastActivityAt":"2023-02-16T05:25:56.312576Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":986,"ScoreAtt":32961,"RankDef":633,"ScoreDef":342816,"RankSup":1138,"ScoreSup":1102,"RankTotal":938,"ScoreTotal":376879,"ID":699644852,"Name":"Natka1968","NumVillages":7,"Points":13727,"Rank":1018,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699644852","BestRank":1018,"BestRankAt":"2023-02-16T05:25:49.119067Z","MostPoints":13727,"MostPointsAt":"2023-02-16T05:25:56.312576Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119068Z","LastActivityAt":"2023-02-16T05:25:56.312576Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699648975,"Name":"Rejku30","NumVillages":1,"Points":71,"Rank":2502,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699648975","BestRank":2502,"BestRankAt":"2023-02-16T05:25:56.312577Z","MostPoints":71,"MostPointsAt":"2023-02-16T05:25:49.119069Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119069Z","LastActivityAt":"2023-02-16T05:25:49.119069Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119799Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1521,"ScoreAtt":2111,"RankDef":1852,"ScoreDef":9702,"RankSup":1116,"ScoreSup":1516,"RankTotal":1943,"ScoreTotal":13329,"ID":699650981,"Name":"Jacollo","NumVillages":5,"Points":7743,"Rank":1169,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699650981","BestRank":1169,"BestRankAt":"2023-02-16T05:25:56.312577Z","MostPoints":7743,"MostPointsAt":"2023-02-16T05:25:49.11907Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.11907Z","LastActivityAt":"2023-02-16T05:25:49.11907Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119801Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1730,"ScoreDef":16663,"RankSup":0,"ScoreSup":0,"RankTotal":1904,"ScoreTotal":16663,"ID":699651260,"Name":"Cray123","NumVillages":0,"Points":0,"Rank":2962,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699651260","BestRank":2962,"BestRankAt":"2023-02-16T05:25:56.312577Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119071Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119071Z","LastActivityAt":"2023-02-16T05:25:49.119072Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1853,"ScoreDef":9693,"RankSup":0,"ScoreSup":0,"RankTotal":1997,"ScoreTotal":9693,"ID":699655364,"Name":"igrane5000","NumVillages":1,"Points":26,"Rank":2688,"TribeID":1484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699655364","BestRank":2688,"BestRankAt":"2023-02-16T05:25:56.312578Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119073Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119072Z","LastActivityAt":"2023-02-16T05:25:49.119073Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119803Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":550,"ScoreAtt":279833,"RankDef":2117,"ScoreDef":2155,"RankSup":910,"ScoreSup":10287,"RankTotal":1011,"ScoreTotal":292275,"ID":699656989,"Name":"Hubixon","NumVillages":24,"Points":188830,"Rank":427,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699656989","BestRank":427,"BestRankAt":"2023-02-16T05:25:56.312578Z","MostPoints":188830,"MostPointsAt":"2023-02-16T05:25:56.312579Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.119074Z","LastActivityAt":"2023-02-16T05:25:56.312579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119805Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1949,"ScoreAtt":15,"RankDef":1697,"ScoreDef":18737,"RankSup":0,"ScoreSup":0,"RankTotal":1879,"ScoreTotal":18752,"ID":699657242,"Name":"Krz40","NumVillages":1,"Points":2932,"Rank":1522,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699657242","BestRank":1522,"BestRankAt":"2023-02-16T05:25:56.312579Z","MostPoints":2932,"MostPointsAt":"2023-02-16T05:25:49.119075Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119075Z","LastActivityAt":"2023-02-16T05:25:49.119075Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":784,"ScoreAtt":86634,"RankDef":488,"ScoreDef":550031,"RankSup":1290,"ScoreSup":34,"RankTotal":764,"ScoreTotal":636699,"ID":699657450,"Name":"Lord Myster Boos","NumVillages":24,"Points":134878,"Rank":485,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699657450","BestRank":485,"BestRankAt":"2023-02-16T05:25:56.312579Z","MostPoints":134878,"MostPointsAt":"2023-02-16T05:25:56.31258Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.119076Z","LastActivityAt":"2023-02-16T05:25:56.31258Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119809Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":153,"ScoreAtt":2037094,"RankDef":939,"ScoreDef":149332,"RankSup":124,"ScoreSup":1787696,"RankTotal":235,"ScoreTotal":3974122,"ID":699658023,"Name":"Syisy","NumVillages":65,"Points":581442,"Rank":247,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699658023","BestRank":247,"BestRankAt":"2023-02-16T05:25:49.119077Z","MostPoints":581442,"MostPointsAt":"2023-02-16T05:25:56.31258Z","MostVillages":65,"MostVillagesAt":"2023-02-16T05:25:49.119077Z","LastActivityAt":"2023-02-16T05:25:56.31258Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119811Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1042,"ScoreAtt":23806,"RankDef":2006,"ScoreDef":4496,"RankSup":0,"ScoreSup":0,"RankTotal":1782,"ScoreTotal":28302,"ID":699659708,"Name":"Melon944","NumVillages":8,"Points":33075,"Rank":789,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699659708","BestRank":789,"BestRankAt":"2023-02-16T05:25:56.312581Z","MostPoints":33075,"MostPointsAt":"2023-02-16T05:25:56.312581Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:56.312581Z","LastActivityAt":"2023-02-16T05:25:56.312581Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119813Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":122,"ScoreAtt":2483129,"RankDef":1090,"ScoreDef":96854,"RankSup":184,"ScoreSup":1082780,"RankTotal":250,"ScoreTotal":3662763,"ID":699660539,"Name":"Fresio","NumVillages":131,"Points":1013001,"Rank":145,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699660539","BestRank":145,"BestRankAt":"2023-02-16T05:25:56.312581Z","MostPoints":1013001,"MostPointsAt":"2023-02-16T05:25:56.312581Z","MostVillages":131,"MostVillagesAt":"2023-02-16T05:25:49.11908Z","LastActivityAt":"2023-02-16T05:25:56.312581Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119815Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1504,"ScoreAtt":2236,"RankDef":1944,"ScoreDef":6257,"RankSup":0,"ScoreSup":0,"RankTotal":2023,"ScoreTotal":8493,"ID":699662232,"Name":"raflinski","NumVillages":2,"Points":5005,"Rank":1320,"TribeID":1715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699662232","BestRank":1320,"BestRankAt":"2023-02-16T05:25:56.312582Z","MostPoints":5005,"MostPointsAt":"2023-02-16T05:25:49.119081Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119081Z","LastActivityAt":"2023-02-16T05:25:49.119082Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119815Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":553,"ScoreAtt":273277,"RankDef":2205,"ScoreDef":887,"RankSup":713,"ScoreSup":44192,"RankTotal":989,"ScoreTotal":318356,"ID":699664910,"Name":"rzeĆșnik88","NumVillages":24,"Points":177203,"Rank":437,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699664910","BestRank":437,"BestRankAt":"2023-02-16T05:25:56.312582Z","MostPoints":177203,"MostPointsAt":"2023-02-16T05:25:56.312582Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.119082Z","LastActivityAt":"2023-02-16T05:25:56.312582Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119818Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":720,"ScoreAtt":114916,"RankDef":992,"ScoreDef":128346,"RankSup":929,"ScoreSup":9092,"RankTotal":1052,"ScoreTotal":252354,"ID":699665031,"Name":"juventino1988","NumVillages":1,"Points":150,"Rank":2354,"TribeID":1460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699665031","BestRank":2354,"BestRankAt":"2023-02-16T05:25:56.312583Z","MostPoints":150,"MostPointsAt":"2023-02-16T05:25:49.119084Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119084Z","LastActivityAt":"2023-02-16T05:25:49.119084Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":262,"ScoreAtt":1084503,"RankDef":382,"ScoreDef":792455,"RankSup":407,"ScoreSup":309449,"RankTotal":385,"ScoreTotal":2186407,"ID":699665152,"Name":"marweb","NumVillages":4,"Points":34258,"Rank":779,"TribeID":1716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699665152","BestRank":778,"BestRankAt":"2023-02-16T05:25:49.119085Z","MostPoints":34258,"MostPointsAt":"2023-02-16T05:25:49.119085Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119085Z","LastActivityAt":"2023-02-16T05:25:49.119085Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699665188,"Name":"dawdevil","NumVillages":0,"Points":0,"Rank":2963,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699665188","BestRank":2963,"BestRankAt":"2023-02-16T05:25:56.312584Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119086Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119086Z","LastActivityAt":"2023-02-16T05:25:49.119086Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119822Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2368,"ScoreDef":28,"RankSup":0,"ScoreSup":0,"RankTotal":2466,"ScoreTotal":28,"ID":699668392,"Name":"Lady K8","NumVillages":1,"Points":26,"Rank":2689,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699668392","BestRank":2689,"BestRankAt":"2023-02-16T05:25:56.312584Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119088Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119087Z","LastActivityAt":"2023-02-16T05:25:49.119088Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119824Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":898,"ScoreAtt":51484,"RankDef":989,"ScoreDef":128715,"RankSup":1009,"ScoreSup":4270,"RankTotal":1178,"ScoreTotal":184469,"ID":699671197,"Name":"arzipi","NumVillages":17,"Points":139255,"Rank":477,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699671197","BestRank":477,"BestRankAt":"2023-02-16T05:25:56.312585Z","MostPoints":139255,"MostPointsAt":"2023-02-16T05:25:56.312585Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.119089Z","LastActivityAt":"2023-02-16T05:25:56.312585Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119825Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":810,"ScoreAtt":76062,"RankDef":1765,"ScoreDef":14081,"RankSup":472,"ScoreSup":196159,"RankTotal":1017,"ScoreTotal":286302,"ID":699671454,"Name":"gazela1209","NumVillages":33,"Points":226619,"Rank":396,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699671454","BestRank":396,"BestRankAt":"2023-02-16T05:25:56.312585Z","MostPoints":226619,"MostPointsAt":"2023-02-16T05:25:56.312585Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:49.11909Z","LastActivityAt":"2023-02-16T05:25:56.312585Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119826Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1832,"ScoreAtt":134,"RankDef":2024,"ScoreDef":3978,"RankSup":0,"ScoreSup":0,"RankTotal":2148,"ScoreTotal":4112,"ID":699672060,"Name":"Mario 76","NumVillages":1,"Points":628,"Rank":1962,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699672060","BestRank":1962,"BestRankAt":"2023-02-16T05:25:56.312586Z","MostPoints":628,"MostPointsAt":"2023-02-16T05:25:56.312586Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119091Z","LastActivityAt":"2023-02-16T05:25:56.312586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119828Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2298,"ScoreDef":222,"RankSup":0,"ScoreSup":0,"RankTotal":2379,"ScoreTotal":222,"ID":699673236,"Name":"Ulanyksiadz","NumVillages":1,"Points":354,"Rank":2108,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699673236","BestRank":2108,"BestRankAt":"2023-02-16T05:25:56.312586Z","MostPoints":354,"MostPointsAt":"2023-02-16T05:25:49.119092Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119092Z","LastActivityAt":"2023-02-16T05:25:49.119093Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":530,"ScoreDef":481283,"RankSup":514,"ScoreSup":162724,"RankTotal":759,"ScoreTotal":644007,"ID":699674355,"Name":"Aniuta77","NumVillages":0,"Points":0,"Rank":2964,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699674355","BestRank":2964,"BestRankAt":"2023-02-16T05:25:56.312587Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119094Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119094Z","LastActivityAt":"2023-02-16T05:25:49.119094Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":260,"ScoreAtt":1086765,"RankDef":692,"ScoreDef":282825,"RankSup":406,"ScoreSup":309874,"RankTotal":464,"ScoreTotal":1679464,"ID":699676005,"Name":"Groovyq","NumVillages":121,"Points":1159351,"Rank":119,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699676005","BestRank":119,"BestRankAt":"2023-02-16T05:25:49.119095Z","MostPoints":1159351,"MostPointsAt":"2023-02-16T05:25:56.312587Z","MostVillages":121,"MostVillagesAt":"2023-02-16T05:25:56.312587Z","LastActivityAt":"2023-02-16T05:25:56.312587Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119832Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":862,"ScoreDef":184774,"RankSup":0,"ScoreSup":0,"RankTotal":1176,"ScoreTotal":184774,"ID":699677277,"Name":"MalinowaZaba","NumVillages":1,"Points":855,"Rank":1887,"TribeID":429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699677277","BestRank":1887,"BestRankAt":"2023-02-16T05:25:56.312588Z","MostPoints":855,"MostPointsAt":"2023-02-16T05:25:56.312588Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119096Z","LastActivityAt":"2023-02-16T05:25:56.312588Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119834Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1037,"ScoreDef":114841,"RankSup":0,"ScoreSup":0,"RankTotal":1343,"ScoreTotal":114841,"ID":699677325,"Name":"czmielu80","NumVillages":0,"Points":0,"Rank":2999,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699677325","BestRank":2999,"BestRankAt":"2023-02-16T05:25:49.119097Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119097Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119097Z","LastActivityAt":"2023-02-16T05:25:49.119098Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119836Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1950,"ScoreAtt":14,"RankDef":605,"ScoreDef":375134,"RankSup":1033,"ScoreSup":3314,"RankTotal":935,"ScoreTotal":378462,"ID":699678739,"Name":"seba3333","NumVillages":0,"Points":0,"Rank":2965,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699678739","BestRank":2965,"BestRankAt":"2023-02-16T05:25:56.312588Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119099Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119099Z","LastActivityAt":"2023-02-16T05:25:49.119099Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119836Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":904,"ScoreAtt":49166,"RankDef":654,"ScoreDef":320318,"RankSup":0,"ScoreSup":0,"RankTotal":942,"ScoreTotal":369484,"ID":699678801,"Name":"Sir SilverBaron","NumVillages":1,"Points":2632,"Rank":1563,"TribeID":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699678801","BestRank":1563,"BestRankAt":"2023-02-16T05:25:56.312589Z","MostPoints":2632,"MostPointsAt":"2023-02-16T05:25:56.312589Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.1191Z","LastActivityAt":"2023-02-16T05:25:56.312589Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119838Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1226,"ScoreAtt":8983,"RankDef":2236,"ScoreDef":604,"RankSup":1366,"ScoreSup":4,"RankTotal":2000,"ScoreTotal":9591,"ID":699679662,"Name":"Komaros1992","NumVillages":2,"Points":7541,"Rank":1178,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699679662","BestRank":1178,"BestRankAt":"2023-02-16T05:25:56.312589Z","MostPoints":7541,"MostPointsAt":"2023-02-16T05:25:49.119101Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119101Z","LastActivityAt":"2023-02-16T05:25:49.119101Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2446,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2521,"ScoreTotal":10,"ID":699682780,"Name":"Krzych0007","NumVillages":1,"Points":3242,"Rank":1486,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699682780","BestRank":1486,"BestRankAt":"2023-02-16T05:25:56.31259Z","MostPoints":3242,"MostPointsAt":"2023-02-16T05:25:56.31259Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119102Z","LastActivityAt":"2023-02-16T05:25:56.31259Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":419,"ScoreAtt":516211,"RankDef":990,"ScoreDef":128672,"RankSup":1380,"ScoreSup":3,"RankTotal":757,"ScoreTotal":644886,"ID":699684062,"Name":"WanHeDa","NumVillages":49,"Points":425783,"Rank":294,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699684062","BestRank":294,"BestRankAt":"2023-02-16T05:25:49.119103Z","MostPoints":425783,"MostPointsAt":"2023-02-16T05:25:56.312591Z","MostVillages":49,"MostVillagesAt":"2023-02-16T05:25:49.119103Z","LastActivityAt":"2023-02-16T05:25:56.312591Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119841Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":912,"ScoreAtt":48095,"RankDef":281,"ScoreDef":1296895,"RankSup":1301,"ScoreSup":22,"RankTotal":531,"ScoreTotal":1345012,"ID":699684693,"Name":"XanSaul","NumVillages":2,"Points":17903,"Rank":955,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699684693","BestRank":955,"BestRankAt":"2023-02-16T05:25:49.119104Z","MostPoints":17903,"MostPointsAt":"2023-02-16T05:25:56.312591Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119105Z","LastActivityAt":"2023-02-16T05:25:56.312591Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119842Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2264,"ScoreDef":395,"RankSup":0,"ScoreSup":0,"RankTotal":2347,"ScoreTotal":395,"ID":699685533,"Name":"Szaszka","NumVillages":1,"Points":1111,"Rank":1817,"TribeID":1755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699685533","BestRank":1817,"BestRankAt":"2023-02-16T05:25:56.312591Z","MostPoints":1111,"MostPointsAt":"2023-02-16T05:25:56.312592Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119106Z","LastActivityAt":"2023-02-16T05:25:56.312592Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119843Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1698,"ScoreAtt":555,"RankDef":2369,"ScoreDef":26,"RankSup":0,"ScoreSup":0,"RankTotal":2319,"ScoreTotal":581,"ID":699687328,"Name":"AlekTbg","NumVillages":1,"Points":2584,"Rank":1565,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699687328","BestRank":1565,"BestRankAt":"2023-02-16T05:25:56.312592Z","MostPoints":2584,"MostPointsAt":"2023-02-16T05:25:56.312592Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119107Z","LastActivityAt":"2023-02-16T05:25:56.312592Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119844Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1573,"ScoreAtt":1484,"RankDef":2450,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2260,"ScoreTotal":1494,"ID":699688180,"Name":"Adijen","NumVillages":2,"Points":10697,"Rank":1065,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699688180","BestRank":1065,"BestRankAt":"2023-02-16T05:25:56.312593Z","MostPoints":10697,"MostPointsAt":"2023-02-16T05:25:56.312593Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119108Z","LastActivityAt":"2023-02-16T05:25:56.312593Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119845Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1231,"ScoreAtt":8808,"RankDef":627,"ScoreDef":344532,"RankSup":1365,"ScoreSup":4,"RankTotal":954,"ScoreTotal":353344,"ID":699693687,"Name":"Nevada","NumVillages":1,"Points":3491,"Rank":1457,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699693687","BestRank":1457,"BestRankAt":"2023-02-16T05:25:56.312593Z","MostPoints":3491,"MostPointsAt":"2023-02-16T05:25:56.312593Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11911Z","LastActivityAt":"2023-02-16T05:25:56.312593Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119846Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1293,"ScoreAtt":6603,"RankDef":1796,"ScoreDef":12317,"RankSup":870,"ScoreSup":14358,"RankTotal":1739,"ScoreTotal":33278,"ID":699694284,"Name":"Yomasz","NumVillages":22,"Points":108695,"Rank":524,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699694284","BestRank":524,"BestRankAt":"2023-02-16T05:25:56.312594Z","MostPoints":108695,"MostPointsAt":"2023-02-16T05:25:56.312594Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.119113Z","LastActivityAt":"2023-02-16T05:25:56.312594Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":612,"ScoreAtt":197610,"RankDef":1271,"ScoreDef":60029,"RankSup":506,"ScoreSup":169646,"RankTotal":888,"ScoreTotal":427285,"ID":699695167,"Name":"Kosiarze","NumVillages":59,"Points":364785,"Rank":316,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699695167","BestRank":316,"BestRankAt":"2023-02-16T05:25:56.312594Z","MostPoints":364785,"MostPointsAt":"2023-02-16T05:25:56.312594Z","MostVillages":59,"MostVillagesAt":"2023-02-16T05:25:49.119114Z","LastActivityAt":"2023-02-16T05:25:56.312594Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119847Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699696740,"Name":"AjuZGora","NumVillages":1,"Points":210,"Rank":2252,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699696740","BestRank":2252,"BestRankAt":"2023-02-16T05:25:56.312595Z","MostPoints":210,"MostPointsAt":"2023-02-16T05:25:49.119115Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119115Z","LastActivityAt":"2023-02-16T05:25:49.119116Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119848Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":839,"ScoreAtt":67523,"RankDef":1364,"ScoreDef":48635,"RankSup":0,"ScoreSup":0,"RankTotal":1336,"ScoreTotal":116158,"ID":699697136,"Name":"Hrabia mol","NumVillages":2,"Points":15563,"Rank":989,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699697136","BestRank":988,"BestRankAt":"2023-02-16T05:25:49.119116Z","MostPoints":15563,"MostPointsAt":"2023-02-16T05:25:49.119117Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119116Z","LastActivityAt":"2023-02-16T05:25:49.119117Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":22,"ScoreAtt":8043400,"RankDef":42,"ScoreDef":7703145,"RankSup":52,"ScoreSup":3315834,"RankTotal":33,"ScoreTotal":19062379,"ID":699697558,"Name":"Deveste","NumVillages":442,"Points":4174509,"Rank":6,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699697558","BestRank":6,"BestRankAt":"2023-02-16T05:25:49.119117Z","MostPoints":4174509,"MostPointsAt":"2023-02-16T05:25:56.312596Z","MostVillages":442,"MostVillagesAt":"2023-02-16T05:25:49.119118Z","LastActivityAt":"2023-02-16T05:25:56.312596Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119849Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":381,"ScoreAtt":614874,"RankDef":316,"ScoreDef":1072621,"RankSup":557,"ScoreSup":127651,"RankTotal":436,"ScoreTotal":1815146,"ID":699698079,"Name":"kejmill","NumVillages":2,"Points":9398,"Rank":1107,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698079","BestRank":1107,"BestRankAt":"2023-02-16T05:25:56.312596Z","MostPoints":9398,"MostPointsAt":"2023-02-16T05:25:49.119119Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119119Z","LastActivityAt":"2023-02-16T05:25:49.119119Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":253,"ScoreAtt":1105033,"RankDef":46,"ScoreDef":6867460,"RankSup":443,"ScoreSup":238460,"RankTotal":100,"ScoreTotal":8210953,"ID":699698253,"Name":"Dominatorxd","NumVillages":43,"Points":267152,"Rank":371,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698253","BestRank":371,"BestRankAt":"2023-02-16T05:25:56.312597Z","MostPoints":267152,"MostPointsAt":"2023-02-16T05:25:56.312597Z","MostVillages":43,"MostVillagesAt":"2023-02-16T05:25:56.312597Z","LastActivityAt":"2023-02-16T05:25:56.312597Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119851Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2391,"ScoreDef":17,"RankSup":0,"ScoreSup":0,"RankTotal":2488,"ScoreTotal":17,"ID":699698745,"Name":"Bliskoznaczny","NumVillages":1,"Points":26,"Rank":2690,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698745","BestRank":2690,"BestRankAt":"2023-02-16T05:25:56.312597Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119121Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119121Z","LastActivityAt":"2023-02-16T05:25:49.119122Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119852Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699698873,"Name":"PrawdziwyIlveron","NumVillages":1,"Points":68,"Rank":2508,"TribeID":1751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699698873","BestRank":2508,"BestRankAt":"2023-02-16T05:25:56.312598Z","MostPoints":68,"MostPointsAt":"2023-02-16T05:25:49.119123Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119123Z","LastActivityAt":"2023-02-16T05:25:49.119123Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119853Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2034,"ScoreDef":3848,"RankSup":0,"ScoreSup":0,"RankTotal":2161,"ScoreTotal":3848,"ID":699699422,"Name":"Krukuu","NumVillages":1,"Points":1038,"Rank":1835,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699422","BestRank":1835,"BestRankAt":"2023-02-16T05:25:56.312598Z","MostPoints":1038,"MostPointsAt":"2023-02-16T05:25:56.312598Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119124Z","LastActivityAt":"2023-02-16T05:25:56.312598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119854Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2490,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2554,"ScoreTotal":1,"ID":699699563,"Name":"maciejasz3k","NumVillages":1,"Points":1066,"Rank":1830,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699563","BestRank":1830,"BestRankAt":"2023-02-16T05:25:56.312599Z","MostPoints":1066,"MostPointsAt":"2023-02-16T05:25:56.312599Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119125Z","LastActivityAt":"2023-02-16T05:25:56.312599Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":474,"ScoreAtt":408371,"RankDef":35,"ScoreDef":9346551,"RankSup":228,"ScoreSup":770781,"RankTotal":74,"ScoreTotal":10525703,"ID":699699601,"Name":"szczylo","NumVillages":5,"Points":27297,"Rank":836,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699601","BestRank":834,"BestRankAt":"2023-02-16T05:25:49.119126Z","MostPoints":27297,"MostPointsAt":"2023-02-16T05:25:56.312599Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119126Z","LastActivityAt":"2023-02-16T05:25:56.3126Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119855Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":775,"ScoreAtt":89785,"RankDef":1403,"ScoreDef":43218,"RankSup":939,"ScoreSup":8337,"RankTotal":1264,"ScoreTotal":141340,"ID":699699650,"Name":"Zdrowa Pięta Achillesa","NumVillages":1,"Points":26,"Rank":2691,"TribeID":1787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699699650","BestRank":2691,"BestRankAt":"2023-02-16T05:25:56.3126Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119128Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119127Z","LastActivityAt":"2023-02-16T05:25:49.119128Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119856Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699700007,"Name":"xFeFe","NumVillages":1,"Points":26,"Rank":2692,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699700007","BestRank":2692,"BestRankAt":"2023-02-16T05:25:56.3126Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119129Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119129Z","LastActivityAt":"2023-02-16T05:25:49.119129Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119858Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699702049,"Name":"xandread","NumVillages":1,"Points":74,"Rank":2495,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699702049","BestRank":2495,"BestRankAt":"2023-02-16T05:25:56.312601Z","MostPoints":74,"MostPointsAt":"2023-02-16T05:25:56.312601Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312601Z","LastActivityAt":"2023-02-16T05:25:56.312601Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313202Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":866,"ScoreAtt":58651,"RankDef":1303,"ScoreDef":56371,"RankSup":1166,"ScoreSup":695,"RankTotal":1338,"ScoreTotal":115717,"ID":699703295,"Name":"kowalola123","NumVillages":2,"Points":12951,"Rank":1032,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699703295","BestRank":1029,"BestRankAt":"2023-02-16T05:25:49.11913Z","MostPoints":12951,"MostPointsAt":"2023-02-16T05:25:56.312602Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.11913Z","LastActivityAt":"2023-02-16T05:25:56.312602Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":174,"ScoreAtt":1827672,"RankDef":786,"ScoreDef":223963,"RankSup":104,"ScoreSup":2173011,"RankTotal":224,"ScoreTotal":4224646,"ID":699703642,"Name":"LadyAnimaVilis","NumVillages":92,"Points":874818,"Rank":166,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699703642","BestRank":166,"BestRankAt":"2023-02-16T05:25:49.119131Z","MostPoints":874818,"MostPointsAt":"2023-02-16T05:25:49.119131Z","MostVillages":92,"MostVillagesAt":"2023-02-16T05:25:49.119131Z","LastActivityAt":"2023-02-16T05:25:49.119132Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119859Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":181,"ScoreAtt":1731912,"RankDef":119,"ScoreDef":3186130,"RankSup":391,"ScoreSup":329781,"RankTotal":177,"ScoreTotal":5247823,"ID":699703782,"Name":"pacyfic","NumVillages":0,"Points":0,"Rank":2966,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699703782","BestRank":2966,"BestRankAt":"2023-02-16T05:25:56.312602Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119133Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119132Z","LastActivityAt":"2023-02-16T05:25:49.119133Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":338,"ScoreAtt":762463,"RankDef":510,"ScoreDef":503902,"RankSup":242,"ScoreSup":734381,"RankTotal":410,"ScoreTotal":2000746,"ID":699704542,"Name":"Geriavit65","NumVillages":59,"Points":378346,"Rank":310,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699704542","BestRank":310,"BestRankAt":"2023-02-16T05:25:56.312603Z","MostPoints":378346,"MostPointsAt":"2023-02-16T05:25:56.312603Z","MostVillages":59,"MostVillagesAt":"2023-02-16T05:25:49.119134Z","LastActivityAt":"2023-02-16T05:25:56.312603Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119861Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":793,"ScoreAtt":83417,"RankDef":1373,"ScoreDef":47751,"RankSup":650,"ScoreSup":72254,"RankTotal":1134,"ScoreTotal":203422,"ID":699705601,"Name":"Kamilkaze135","NumVillages":23,"Points":164547,"Rank":445,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699705601","BestRank":445,"BestRankAt":"2023-02-16T05:25:56.312603Z","MostPoints":164547,"MostPointsAt":"2023-02-16T05:25:56.312604Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:49.119135Z","LastActivityAt":"2023-02-16T05:25:56.312604Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699705910,"Name":"KiepLach","NumVillages":1,"Points":26,"Rank":2693,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699705910","BestRank":2693,"BestRankAt":"2023-02-16T05:25:56.312604Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119136Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119136Z","LastActivityAt":"2023-02-16T05:25:49.119137Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119862Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1441,"ScoreAtt":3243,"RankDef":502,"ScoreDef":518734,"RankSup":953,"ScoreSup":7390,"RankTotal":819,"ScoreTotal":529367,"ID":699706047,"Name":"zbycho73","NumVillages":0,"Points":0,"Rank":2967,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699706047","BestRank":2967,"BestRankAt":"2023-02-16T05:25:56.312604Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119138Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119137Z","LastActivityAt":"2023-02-16T05:25:49.119138Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119863Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":834,"ScoreAtt":69389,"RankDef":1240,"ScoreDef":64999,"RankSup":1267,"ScoreSup":64,"RankTotal":1285,"ScoreTotal":134452,"ID":699706955,"Name":"migs","NumVillages":13,"Points":56866,"Rank":667,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699706955","BestRank":620,"BestRankAt":"2023-02-16T05:25:49.119138Z","MostPoints":68456,"MostPointsAt":"2023-02-16T05:25:49.119139Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.119139Z","LastActivityAt":"2023-02-16T05:25:49.119139Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119864Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699707057,"Name":"Adrianxl95.","NumVillages":1,"Points":26,"Rank":2694,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699707057","BestRank":2694,"BestRankAt":"2023-02-16T05:25:56.312605Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11914Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11914Z","LastActivityAt":"2023-02-16T05:25:49.11914Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119865Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1822,"ScoreDef":10948,"RankSup":0,"ScoreSup":0,"RankTotal":1980,"ScoreTotal":10948,"ID":699709160,"Name":"Baat","NumVillages":1,"Points":872,"Rank":1882,"TribeID":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699709160","BestRank":1882,"BestRankAt":"2023-02-16T05:25:56.312606Z","MostPoints":872,"MostPointsAt":"2023-02-16T05:25:49.119141Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119141Z","LastActivityAt":"2023-02-16T05:25:49.119141Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119866Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":207,"ScoreAtt":1508389,"RankDef":28,"ScoreDef":11809284,"RankSup":176,"ScoreSup":1214463,"RankTotal":54,"ScoreTotal":14532136,"ID":699710633,"Name":"Valhim","NumVillages":28,"Points":240726,"Rank":384,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699710633","BestRank":384,"BestRankAt":"2023-02-16T05:25:56.312606Z","MostPoints":240726,"MostPointsAt":"2023-02-16T05:25:49.119143Z","MostVillages":28,"MostVillagesAt":"2023-02-16T05:25:49.119142Z","LastActivityAt":"2023-02-16T05:25:49.119143Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119867Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699711334,"Name":"najarany szachista","NumVillages":1,"Points":26,"Rank":2695,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711334","BestRank":2695,"BestRankAt":"2023-02-16T05:25:56.312607Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119144Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119144Z","LastActivityAt":"2023-02-16T05:25:49.119144Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":855,"ScoreAtt":62553,"RankDef":833,"ScoreDef":195368,"RankSup":0,"ScoreSup":0,"RankTotal":1046,"ScoreTotal":257921,"ID":699711706,"Name":"malaula","NumVillages":10,"Points":43684,"Rank":721,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711706","BestRank":721,"BestRankAt":"2023-02-16T05:25:56.312607Z","MostPoints":43684,"MostPointsAt":"2023-02-16T05:25:56.312607Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.119145Z","LastActivityAt":"2023-02-16T05:25:56.312607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119868Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":604,"ScoreAtt":207282,"RankDef":1216,"ScoreDef":69437,"RankSup":1087,"ScoreSup":2087,"RankTotal":1026,"ScoreTotal":278806,"ID":699711723,"Name":"prayforyou","NumVillages":13,"Points":85756,"Rank":572,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711723","BestRank":572,"BestRankAt":"2023-02-16T05:25:56.312608Z","MostPoints":85756,"MostPointsAt":"2023-02-16T05:25:56.312608Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.119146Z","LastActivityAt":"2023-02-16T05:25:56.312608Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119869Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":827,"ScoreAtt":70722,"RankDef":1813,"ScoreDef":11435,"RankSup":342,"ScoreSup":424812,"RankTotal":835,"ScoreTotal":506969,"ID":699711926,"Name":"Inchi","NumVillages":41,"Points":226407,"Rank":397,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711926","BestRank":397,"BestRankAt":"2023-02-16T05:25:56.312608Z","MostPoints":226407,"MostPointsAt":"2023-02-16T05:25:56.312609Z","MostVillages":41,"MostVillagesAt":"2023-02-16T05:25:49.119147Z","LastActivityAt":"2023-02-16T05:25:56.312609Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1823,"ScoreAtt":140,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2399,"ScoreTotal":140,"ID":699711996,"Name":"Lord lotos652","NumVillages":1,"Points":390,"Rank":2078,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699711996","BestRank":2078,"BestRankAt":"2023-02-16T05:25:56.312609Z","MostPoints":390,"MostPointsAt":"2023-02-16T05:25:49.119149Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119149Z","LastActivityAt":"2023-02-16T05:25:49.119149Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119871Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699712243,"Name":"KrzysztofBerg95","NumVillages":1,"Points":463,"Rank":2030,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699712243","BestRank":2030,"BestRankAt":"2023-02-16T05:25:56.312609Z","MostPoints":463,"MostPointsAt":"2023-02-16T05:25:49.11915Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11915Z","LastActivityAt":"2023-02-16T05:25:49.11915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119872Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":433,"ScoreAtt":477236,"RankDef":224,"ScoreDef":1700606,"RankSup":728,"ScoreSup":41064,"RankTotal":382,"ScoreTotal":2218906,"ID":699712422,"Name":"kukas94","NumVillages":1,"Points":791,"Rank":1903,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699712422","BestRank":1903,"BestRankAt":"2023-02-16T05:25:56.31261Z","MostPoints":791,"MostPointsAt":"2023-02-16T05:25:56.31261Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119151Z","LastActivityAt":"2023-02-16T05:25:56.31261Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119873Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":901,"ScoreAtt":50019,"RankDef":993,"ScoreDef":127113,"RankSup":755,"ScoreSup":34117,"RankTotal":1119,"ScoreTotal":211249,"ID":699713515,"Name":"Shrek z Bagien","NumVillages":19,"Points":122227,"Rank":501,"TribeID":1740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699713515","BestRank":501,"BestRankAt":"2023-02-16T05:25:56.31261Z","MostPoints":122227,"MostPointsAt":"2023-02-16T05:25:49.119152Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:49.119152Z","LastActivityAt":"2023-02-16T05:25:49.119153Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699714935,"Name":"Marian1960","NumVillages":1,"Points":177,"Rank":2318,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699714935","BestRank":2318,"BestRankAt":"2023-02-16T05:25:56.312611Z","MostPoints":177,"MostPointsAt":"2023-02-16T05:25:49.119154Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119153Z","LastActivityAt":"2023-02-16T05:25:49.119154Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119875Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2202,"ScoreDef":914,"RankSup":957,"ScoreSup":7238,"RankTotal":2028,"ScoreTotal":8152,"ID":699716785,"Name":"Nijord","NumVillages":1,"Points":2273,"Rank":1605,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699716785","BestRank":1605,"BestRankAt":"2023-02-16T05:25:56.312611Z","MostPoints":2273,"MostPointsAt":"2023-02-16T05:25:49.119155Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119155Z","LastActivityAt":"2023-02-16T05:25:49.119155Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119876Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":682,"ScoreAtt":139492,"RankDef":1145,"ScoreDef":85593,"RankSup":773,"ScoreSup":30173,"RankTotal":1050,"ScoreTotal":255258,"ID":699718269,"Name":"SweetPain","NumVillages":12,"Points":63395,"Rank":642,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699718269","BestRank":566,"BestRankAt":"2023-02-16T05:25:49.119156Z","MostPoints":88401,"MostPointsAt":"2023-02-16T05:25:49.119156Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.119156Z","LastActivityAt":"2023-02-16T05:25:49.119156Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119877Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2321,"ScoreDef":117,"RankSup":0,"ScoreSup":0,"RankTotal":2413,"ScoreTotal":117,"ID":699720374,"Name":"rutej123","NumVillages":1,"Points":116,"Rank":2433,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699720374","BestRank":2433,"BestRankAt":"2023-02-16T05:25:56.312612Z","MostPoints":116,"MostPointsAt":"2023-02-16T05:25:49.119157Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119157Z","LastActivityAt":"2023-02-16T05:25:49.119158Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699721590,"Name":"hiszpan78","NumVillages":1,"Points":409,"Rank":2066,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699721590","BestRank":2066,"BestRankAt":"2023-02-16T05:25:56.312613Z","MostPoints":409,"MostPointsAt":"2023-02-16T05:25:49.119159Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119158Z","LastActivityAt":"2023-02-16T05:25:49.119159Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119878Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":35,"ScoreAtt":6215951,"RankDef":144,"ScoreDef":2670312,"RankSup":576,"ScoreSup":114655,"RankTotal":84,"ScoreTotal":9000918,"ID":699722599,"Name":"Sandre","NumVillages":204,"Points":1913004,"Rank":54,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699722599","BestRank":54,"BestRankAt":"2023-02-16T05:25:49.119159Z","MostPoints":1913004,"MostPointsAt":"2023-02-16T05:25:56.312613Z","MostVillages":204,"MostVillagesAt":"2023-02-16T05:25:49.11916Z","LastActivityAt":"2023-02-16T05:25:56.312613Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119879Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":157,"ScoreAtt":2003099,"RankDef":418,"ScoreDef":700502,"RankSup":188,"ScoreSup":1018680,"RankTotal":248,"ScoreTotal":3722281,"ID":699723284,"Name":"Aissa","NumVillages":104,"Points":998306,"Rank":147,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699723284","BestRank":147,"BestRankAt":"2023-02-16T05:25:56.312614Z","MostPoints":998306,"MostPointsAt":"2023-02-16T05:25:56.312614Z","MostVillages":104,"MostVillagesAt":"2023-02-16T05:25:56.312614Z","LastActivityAt":"2023-02-16T05:25:56.312614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1884,"ScoreAtt":52,"RankDef":1115,"ScoreDef":91650,"RankSup":0,"ScoreSup":0,"RankTotal":1424,"ScoreTotal":91702,"ID":699724603,"Name":"Sir MaƂy101","NumVillages":1,"Points":262,"Rank":2197,"TribeID":236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699724603","BestRank":2197,"BestRankAt":"2023-02-16T05:25:56.312614Z","MostPoints":262,"MostPointsAt":"2023-02-16T05:25:49.119162Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119162Z","LastActivityAt":"2023-02-16T05:25:49.119163Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":51,"ScoreAtt":4922480,"RankDef":12,"ScoreDef":19746356,"RankSup":182,"ScoreSup":1094169,"RankTotal":17,"ScoreTotal":25763005,"ID":699725436,"Name":"Dimitria x Ciemny","NumVillages":91,"Points":854869,"Rank":171,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699725436","BestRank":167,"BestRankAt":"2023-02-16T05:25:49.119163Z","MostPoints":872489,"MostPointsAt":"2023-02-16T05:25:49.119164Z","MostVillages":93,"MostVillagesAt":"2023-02-16T05:25:49.119163Z","LastActivityAt":"2023-02-16T05:25:56.312615Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119881Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1940,"ScoreAtt":19,"RankDef":2041,"ScoreDef":3706,"RankSup":638,"ScoreSup":76808,"RankTotal":1453,"ScoreTotal":80533,"ID":699726660,"Name":"ryhu","NumVillages":1,"Points":2889,"Rank":1528,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699726660","BestRank":1528,"BestRankAt":"2023-02-16T05:25:56.312615Z","MostPoints":2889,"MostPointsAt":"2023-02-16T05:25:49.119165Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119165Z","LastActivityAt":"2023-02-16T05:25:49.119165Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119882Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":196,"ScoreAtt":1600482,"RankDef":1865,"ScoreDef":9184,"RankSup":175,"ScoreSup":1249081,"RankTotal":307,"ScoreTotal":2858747,"ID":699728159,"Name":"Woocash","NumVillages":78,"Points":536636,"Rank":256,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699728159","BestRank":256,"BestRankAt":"2023-02-16T05:25:49.119166Z","MostPoints":536636,"MostPointsAt":"2023-02-16T05:25:56.312616Z","MostVillages":78,"MostVillagesAt":"2023-02-16T05:25:49.119166Z","LastActivityAt":"2023-02-16T05:25:56.312616Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119883Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1473,"ScoreAtt":2678,"RankDef":2217,"ScoreDef":760,"RankSup":1415,"ScoreSup":1,"RankTotal":2176,"ScoreTotal":3439,"ID":699728266,"Name":"Buzka9395","NumVillages":10,"Points":32815,"Rank":790,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699728266","BestRank":790,"BestRankAt":"2023-02-16T05:25:56.312616Z","MostPoints":32815,"MostPointsAt":"2023-02-16T05:25:56.312616Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.119167Z","LastActivityAt":"2023-02-16T05:25:56.312617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2254,"ScoreDef":472,"RankSup":0,"ScoreSup":0,"RankTotal":2335,"ScoreTotal":472,"ID":699729211,"Name":"Robert242","NumVillages":1,"Points":483,"Rank":2021,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699729211","BestRank":2021,"BestRankAt":"2023-02-16T05:25:56.312617Z","MostPoints":483,"MostPointsAt":"2023-02-16T05:25:49.119168Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119168Z","LastActivityAt":"2023-02-16T05:25:49.119169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119884Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1302,"ScoreAtt":6359,"RankDef":1939,"ScoreDef":6391,"RankSup":0,"ScoreSup":0,"RankTotal":1950,"ScoreTotal":12750,"ID":699730399,"Name":"Cypis666","NumVillages":1,"Points":5440,"Rank":1297,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699730399","BestRank":1297,"BestRankAt":"2023-02-16T05:25:56.312617Z","MostPoints":5440,"MostPointsAt":"2023-02-16T05:25:49.11917Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11917Z","LastActivityAt":"2023-02-16T05:25:49.11917Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119885Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":984,"ScoreAtt":33137,"RankDef":337,"ScoreDef":932925,"RankSup":0,"ScoreSup":0,"RankTotal":633,"ScoreTotal":966062,"ID":699730714,"Name":"Neroven","NumVillages":7,"Points":33194,"Rank":787,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699730714","BestRank":785,"BestRankAt":"2023-02-16T05:25:49.119171Z","MostPoints":33194,"MostPointsAt":"2023-02-16T05:25:49.119171Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119171Z","LastActivityAt":"2023-02-16T05:25:49.119171Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119886Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1363,"ScoreAtt":4776,"RankDef":599,"ScoreDef":381899,"RankSup":700,"ScoreSup":49298,"RankTotal":881,"ScoreTotal":435973,"ID":699730998,"Name":"MATTI","NumVillages":8,"Points":26894,"Rank":841,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699730998","BestRank":838,"BestRankAt":"2023-02-16T05:25:49.119172Z","MostPoints":26894,"MostPointsAt":"2023-02-16T05:25:49.119172Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.119172Z","LastActivityAt":"2023-02-16T05:25:49.119172Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119888Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":649,"ScoreAtt":157885,"RankDef":85,"ScoreDef":4056320,"RankSup":427,"ScoreSup":256738,"RankTotal":212,"ScoreTotal":4470943,"ID":699733098,"Name":"Le Coq","NumVillages":3,"Points":20719,"Rank":909,"TribeID":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699733098","BestRank":908,"BestRankAt":"2023-02-16T05:25:49.119173Z","MostPoints":20719,"MostPointsAt":"2023-02-16T05:25:56.312619Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119173Z","LastActivityAt":"2023-02-16T05:25:56.312619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119889Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1080,"ScoreAtt":19766,"RankDef":658,"ScoreDef":314352,"RankSup":399,"ScoreSup":316762,"RankTotal":753,"ScoreTotal":650880,"ID":699733501,"Name":"Jopo32","NumVillages":6,"Points":48852,"Rank":700,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699733501","BestRank":668,"BestRankAt":"2023-02-16T05:25:49.119174Z","MostPoints":55903,"MostPointsAt":"2023-02-16T05:25:49.119175Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119175Z","LastActivityAt":"2023-02-16T05:25:49.119175Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1092,"ScoreAtt":19080,"RankDef":222,"ScoreDef":1713237,"RankSup":790,"ScoreSup":27107,"RankTotal":455,"ScoreTotal":1759424,"ID":699734152,"Name":"micha6","NumVillages":0,"Points":0,"Rank":2968,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699734152","BestRank":2968,"BestRankAt":"2023-02-16T05:25:56.31262Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119176Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119176Z","LastActivityAt":"2023-02-16T05:25:49.119176Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1095,"ScoreAtt":18836,"RankDef":1268,"ScoreDef":60337,"RankSup":785,"ScoreSup":27895,"RankTotal":1361,"ScoreTotal":107068,"ID":699734445,"Name":"Sir HEROES","NumVillages":2,"Points":8276,"Rank":1141,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699734445","BestRank":1141,"BestRankAt":"2023-02-16T05:25:56.31262Z","MostPoints":8276,"MostPointsAt":"2023-02-16T05:25:56.31262Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119177Z","LastActivityAt":"2023-02-16T05:25:56.31262Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119891Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":978,"ScoreAtt":33598,"RankDef":941,"ScoreDef":149003,"RankSup":886,"ScoreSup":12838,"RankTotal":1143,"ScoreTotal":195439,"ID":699734795,"Name":"cobra2ooo","NumVillages":1,"Points":628,"Rank":1963,"TribeID":1376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699734795","BestRank":1963,"BestRankAt":"2023-02-16T05:25:56.312621Z","MostPoints":628,"MostPointsAt":"2023-02-16T05:25:49.119178Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119178Z","LastActivityAt":"2023-02-16T05:25:49.119179Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":415,"ScoreAtt":533981,"RankDef":1077,"ScoreDef":100390,"RankSup":307,"ScoreSup":506458,"RankTotal":585,"ScoreTotal":1140829,"ID":699735020,"Name":"dz1ku","NumVillages":1,"Points":9800,"Rank":1087,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699735020","BestRank":1087,"BestRankAt":"2023-02-16T05:25:56.312621Z","MostPoints":9800,"MostPointsAt":"2023-02-16T05:25:56.312621Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119179Z","LastActivityAt":"2023-02-16T05:25:56.312621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119892Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":10,"ScoreAtt":12182758,"RankDef":4,"ScoreDef":40358911,"RankSup":17,"ScoreSup":5823680,"RankTotal":5,"ScoreTotal":58365349,"ID":699736927,"Name":"Bociarze","NumVillages":383,"Points":3245040,"Rank":15,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699736927","BestRank":14,"BestRankAt":"2023-02-16T05:25:49.119181Z","MostPoints":3245040,"MostPointsAt":"2023-02-16T05:25:56.312622Z","MostVillages":383,"MostVillagesAt":"2023-02-16T05:25:49.119181Z","LastActivityAt":"2023-02-16T05:25:56.312622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119894Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":549,"ScoreAtt":281169,"RankDef":49,"ScoreDef":6667170,"RankSup":507,"ScoreSup":168077,"RankTotal":121,"ScoreTotal":7116416,"ID":699736959,"Name":"mackooo24","NumVillages":2,"Points":8400,"Rank":1137,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699736959","BestRank":1137,"BestRankAt":"2023-02-16T05:25:56.312622Z","MostPoints":8400,"MostPointsAt":"2023-02-16T05:25:49.119182Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119182Z","LastActivityAt":"2023-02-16T05:25:49.119182Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119895Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":457,"ScoreAtt":433729,"RankDef":854,"ScoreDef":186171,"RankSup":239,"ScoreSup":741146,"RankTotal":527,"ScoreTotal":1361046,"ID":699737356,"Name":"Sekou","NumVillages":82,"Points":626565,"Rank":227,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699737356","BestRank":227,"BestRankAt":"2023-02-16T05:25:56.312623Z","MostPoints":626565,"MostPointsAt":"2023-02-16T05:25:56.312623Z","MostVillages":82,"MostVillagesAt":"2023-02-16T05:25:49.119183Z","LastActivityAt":"2023-02-16T05:25:56.312623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699737563,"Name":"Agamemnon","NumVillages":1,"Points":26,"Rank":2696,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699737563","BestRank":2696,"BestRankAt":"2023-02-16T05:25:56.312623Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119185Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119184Z","LastActivityAt":"2023-02-16T05:25:49.119185Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119896Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":434,"ScoreAtt":476861,"RankDef":1059,"ScoreDef":105247,"RankSup":364,"ScoreSup":381199,"RankTotal":634,"ScoreTotal":963307,"ID":699738350,"Name":"Ramdzis12","NumVillages":37,"Points":333297,"Rank":340,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699738350","BestRank":332,"BestRankAt":"2023-02-16T05:25:49.119185Z","MostPoints":343840,"MostPointsAt":"2023-02-16T05:25:49.119186Z","MostVillages":38,"MostVillagesAt":"2023-02-16T05:25:49.119186Z","LastActivityAt":"2023-02-16T05:25:49.119186Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119897Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1997,"ScoreDef":4620,"RankSup":0,"ScoreSup":0,"RankTotal":2132,"ScoreTotal":4620,"ID":699739523,"Name":"Ysiek","NumVillages":1,"Points":2771,"Rank":1549,"TribeID":723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699739523","BestRank":1549,"BestRankAt":"2023-02-16T05:25:56.312624Z","MostPoints":2771,"MostPointsAt":"2023-02-16T05:25:56.312624Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119187Z","LastActivityAt":"2023-02-16T05:25:56.312624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119898Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1817,"ScoreAtt":149,"RankDef":1996,"ScoreDef":4647,"RankSup":0,"ScoreSup":0,"RankTotal":2128,"ScoreTotal":4796,"ID":699739891,"Name":"Waldus","NumVillages":0,"Points":0,"Rank":2969,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699739891","BestRank":2969,"BestRankAt":"2023-02-16T05:25:56.312625Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119188Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119188Z","LastActivityAt":"2023-02-16T05:25:49.119189Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1315,"ScoreAtt":5902,"RankDef":2341,"ScoreDef":64,"RankSup":0,"ScoreSup":0,"RankTotal":2085,"ScoreTotal":5966,"ID":699741694,"Name":"Mega Niepokorny","NumVillages":4,"Points":6650,"Rank":1225,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699741694","BestRank":1225,"BestRankAt":"2023-02-16T05:25:56.312625Z","MostPoints":6650,"MostPointsAt":"2023-02-16T05:25:49.11919Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119189Z","LastActivityAt":"2023-02-16T05:25:49.11919Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119899Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2265,"ScoreDef":390,"RankSup":0,"ScoreSup":0,"RankTotal":2348,"ScoreTotal":390,"ID":699742054,"Name":"Yeta","NumVillages":0,"Points":0,"Rank":2970,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699742054","BestRank":2970,"BestRankAt":"2023-02-16T05:25:56.312626Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119191Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119191Z","LastActivityAt":"2023-02-16T05:25:49.119191Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.1199Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1047,"ScoreAtt":23114,"RankDef":801,"ScoreDef":214603,"RankSup":1359,"ScoreSup":4,"RankTotal":1072,"ScoreTotal":237721,"ID":699744012,"Name":"piratwoj","NumVillages":2,"Points":4075,"Rank":1394,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699744012","BestRank":1394,"BestRankAt":"2023-02-16T05:25:56.312626Z","MostPoints":4075,"MostPointsAt":"2023-02-16T05:25:56.312626Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119192Z","LastActivityAt":"2023-02-16T05:25:56.312626Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119901Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":377,"ScoreAtt":623353,"RankDef":74,"ScoreDef":4693997,"RankSup":359,"ScoreSup":393297,"RankTotal":161,"ScoreTotal":5710647,"ID":699744766,"Name":"CriS00","NumVillages":2,"Points":12821,"Rank":1035,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699744766","BestRank":1035,"BestRankAt":"2023-02-16T05:25:56.312627Z","MostPoints":12821,"MostPointsAt":"2023-02-16T05:25:56.312627Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119193Z","LastActivityAt":"2023-02-16T05:25:56.312627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119902Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":588,"ScoreAtt":227742,"RankDef":870,"ScoreDef":182075,"RankSup":1155,"ScoreSup":881,"RankTotal":905,"ScoreTotal":410698,"ID":699745265,"Name":"Misteryo777","NumVillages":6,"Points":57123,"Rank":665,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699745265","BestRank":595,"BestRankAt":"2023-02-16T05:25:49.119194Z","MostPoints":76630,"MostPointsAt":"2023-02-16T05:25:49.119195Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.119194Z","LastActivityAt":"2023-02-16T05:25:49.119195Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119903Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699747504,"Name":"maciusw","NumVillages":1,"Points":154,"Rank":2348,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699747504","BestRank":2348,"BestRankAt":"2023-02-16T05:25:56.312628Z","MostPoints":154,"MostPointsAt":"2023-02-16T05:25:49.119196Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119196Z","LastActivityAt":"2023-02-16T05:25:49.119196Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119904Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699748916,"Name":"Dominoo1","NumVillages":1,"Points":429,"Rank":2054,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699748916","BestRank":2054,"BestRankAt":"2023-02-16T05:25:56.312628Z","MostPoints":429,"MostPointsAt":"2023-02-16T05:25:56.312628Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119197Z","LastActivityAt":"2023-02-16T05:25:56.312628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2324,"ScoreDef":102,"RankSup":0,"ScoreSup":0,"RankTotal":2418,"ScoreTotal":102,"ID":699749184,"Name":"Strusiek","NumVillages":1,"Points":422,"Rank":2061,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699749184","BestRank":2061,"BestRankAt":"2023-02-16T05:25:56.312629Z","MostPoints":422,"MostPointsAt":"2023-02-16T05:25:49.119198Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119198Z","LastActivityAt":"2023-02-16T05:25:49.119198Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119905Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699749530,"Name":"mefisom13","NumVillages":1,"Points":412,"Rank":2064,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699749530","BestRank":2064,"BestRankAt":"2023-02-16T05:25:56.312629Z","MostPoints":412,"MostPointsAt":"2023-02-16T05:25:56.312629Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119199Z","LastActivityAt":"2023-02-16T05:25:56.312629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119906Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":748,"ScoreDef":246192,"RankSup":1123,"ScoreSup":1382,"RankTotal":1056,"ScoreTotal":247574,"ID":699751062,"Name":"Hejhej","NumVillages":1,"Points":318,"Rank":2137,"TribeID":517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699751062","BestRank":2137,"BestRankAt":"2023-02-16T05:25:56.31263Z","MostPoints":318,"MostPointsAt":"2023-02-16T05:25:56.31263Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119201Z","LastActivityAt":"2023-02-16T05:25:56.31263Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699751562,"Name":"gracforfun","NumVillages":1,"Points":1158,"Rank":1802,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699751562","BestRank":1802,"BestRankAt":"2023-02-16T05:25:56.31263Z","MostPoints":1158,"MostPointsAt":"2023-02-16T05:25:56.31263Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119202Z","LastActivityAt":"2023-02-16T05:25:56.312631Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119907Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699751887,"Name":"zbawiciel4","NumVillages":1,"Points":64,"Rank":2520,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699751887","BestRank":2520,"BestRankAt":"2023-02-16T05:25:56.312631Z","MostPoints":64,"MostPointsAt":"2023-02-16T05:25:49.119203Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119203Z","LastActivityAt":"2023-02-16T05:25:49.119203Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119908Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1789,"ScoreAtt":215,"RankDef":2287,"ScoreDef":254,"RankSup":0,"ScoreSup":0,"RankTotal":2336,"ScoreTotal":469,"ID":699752402,"Name":"leonek","NumVillages":0,"Points":0,"Rank":2971,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699752402","BestRank":2971,"BestRankAt":"2023-02-16T05:25:56.312631Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119204Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119204Z","LastActivityAt":"2023-02-16T05:25:49.119205Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119909Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699752776,"Name":"rafixiem","NumVillages":1,"Points":246,"Rank":2213,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699752776","BestRank":2213,"BestRankAt":"2023-02-16T05:25:56.312632Z","MostPoints":246,"MostPointsAt":"2023-02-16T05:25:56.312632Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119205Z","LastActivityAt":"2023-02-16T05:25:56.312632Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1091,"ScoreAtt":19197,"RankDef":1337,"ScoreDef":52425,"RankSup":381,"ScoreSup":348408,"RankTotal":897,"ScoreTotal":420030,"ID":699753640,"Name":"Raguel888","NumVillages":7,"Points":25073,"Rank":861,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699753640","BestRank":861,"BestRankAt":"2023-02-16T05:25:56.312632Z","MostPoints":25073,"MostPointsAt":"2023-02-16T05:25:56.312633Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119207Z","LastActivityAt":"2023-02-16T05:25:56.312633Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119911Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1977,"ScoreAtt":2,"RankDef":2095,"ScoreDef":2542,"RankSup":0,"ScoreSup":0,"RankTotal":2205,"ScoreTotal":2544,"ID":699753863,"Name":"Poranna Gwiazda","NumVillages":1,"Points":212,"Rank":2249,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699753863","BestRank":2249,"BestRankAt":"2023-02-16T05:25:56.312633Z","MostPoints":212,"MostPointsAt":"2023-02-16T05:25:49.119208Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119208Z","LastActivityAt":"2023-02-16T05:25:49.119208Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119912Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2394,"ScoreDef":15,"RankSup":0,"ScoreSup":0,"RankTotal":2492,"ScoreTotal":15,"ID":699754856,"Name":"Zwolin","NumVillages":1,"Points":5794,"Rank":1274,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699754856","BestRank":1274,"BestRankAt":"2023-02-16T05:25:56.312633Z","MostPoints":5794,"MostPointsAt":"2023-02-16T05:25:56.312634Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119209Z","LastActivityAt":"2023-02-16T05:25:56.312634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":868,"ScoreAtt":57488,"RankDef":1899,"ScoreDef":7690,"RankSup":0,"ScoreSup":0,"RankTotal":1522,"ScoreTotal":65178,"ID":699755859,"Name":"lixx1337","NumVillages":1,"Points":5017,"Rank":1318,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699755859","BestRank":1318,"BestRankAt":"2023-02-16T05:25:56.312634Z","MostPoints":5017,"MostPointsAt":"2023-02-16T05:25:56.312634Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11921Z","LastActivityAt":"2023-02-16T05:25:56.312634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119913Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":45,"ScoreAtt":5143754,"RankDef":57,"ScoreDef":5882685,"RankSup":47,"ScoreSup":3522220,"RankTotal":53,"ScoreTotal":14548659,"ID":699756210,"Name":"rafaldan","NumVillages":169,"Points":1639064,"Rank":69,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699756210","BestRank":69,"BestRankAt":"2023-02-16T05:25:56.312635Z","MostPoints":1639064,"MostPointsAt":"2023-02-16T05:25:56.312635Z","MostVillages":169,"MostVillagesAt":"2023-02-16T05:25:56.312635Z","LastActivityAt":"2023-02-16T05:25:56.312635Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119914Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699756403,"Name":"lucko5","NumVillages":1,"Points":26,"Rank":2697,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699756403","BestRank":2697,"BestRankAt":"2023-02-16T05:25:56.312635Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119213Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119213Z","LastActivityAt":"2023-02-16T05:25:49.119213Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119915Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1017,"ScoreAtt":27493,"RankDef":949,"ScoreDef":146384,"RankSup":1227,"ScoreSup":215,"RankTotal":1200,"ScoreTotal":174092,"ID":699758688,"Name":"Bedoi King","NumVillages":2,"Points":7181,"Rank":1199,"TribeID":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699758688","BestRank":1199,"BestRankAt":"2023-02-16T05:25:56.312636Z","MostPoints":7181,"MostPointsAt":"2023-02-16T05:25:56.312636Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119214Z","LastActivityAt":"2023-02-16T05:25:56.312636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699758721,"Name":"PanCake","NumVillages":1,"Points":59,"Rank":2529,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699758721","BestRank":2529,"BestRankAt":"2023-02-16T05:25:56.312636Z","MostPoints":59,"MostPointsAt":"2023-02-16T05:25:56.312636Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312636Z","LastActivityAt":"2023-02-16T05:25:56.312636Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313222Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":48,"ScoreAtt":5095690,"RankDef":373,"ScoreDef":815582,"RankSup":448,"ScoreSup":232322,"RankTotal":145,"ScoreTotal":6143594,"ID":699759128,"Name":"Guachilla","NumVillages":214,"Points":2056857,"Rank":45,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699759128","BestRank":45,"BestRankAt":"2023-02-16T05:25:49.119215Z","MostPoints":2056857,"MostPointsAt":"2023-02-16T05:25:56.312637Z","MostVillages":214,"MostVillagesAt":"2023-02-16T05:25:49.119215Z","LastActivityAt":"2023-02-16T05:25:56.312637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119916Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699760696,"Name":"Zaba12","NumVillages":1,"Points":26,"Rank":2698,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699760696","BestRank":2698,"BestRankAt":"2023-02-16T05:25:56.312637Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119217Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119217Z","LastActivityAt":"2023-02-16T05:25:49.119217Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119917Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1543,"ScoreAtt":1821,"RankDef":1821,"ScoreDef":10960,"RankSup":1399,"ScoreSup":2,"RankTotal":1949,"ScoreTotal":12783,"ID":699760767,"Name":"ZemstaPowraca","NumVillages":0,"Points":0,"Rank":2972,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699760767","BestRank":2972,"BestRankAt":"2023-02-16T05:25:56.312638Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119218Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119218Z","LastActivityAt":"2023-02-16T05:25:49.119218Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119918Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":188,"ScoreAtt":1645924,"RankDef":27,"ScoreDef":11920576,"RankSup":139,"ScoreSup":1562384,"RankTotal":49,"ScoreTotal":15128884,"ID":699761749,"Name":"Szwedzio","NumVillages":172,"Points":1692720,"Rank":67,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699761749","BestRank":66,"BestRankAt":"2023-02-16T05:25:49.119219Z","MostPoints":1692720,"MostPointsAt":"2023-02-16T05:25:56.312638Z","MostVillages":172,"MostVillagesAt":"2023-02-16T05:25:49.119219Z","LastActivityAt":"2023-02-16T05:25:56.312638Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699762118,"Name":"Jaayzik","NumVillages":1,"Points":26,"Rank":2699,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699762118","BestRank":2699,"BestRankAt":"2023-02-16T05:25:56.312639Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119221Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11922Z","LastActivityAt":"2023-02-16T05:25:49.119221Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119919Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699762681,"Name":"Maarri91","NumVillages":1,"Points":26,"Rank":2700,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699762681","BestRank":2700,"BestRankAt":"2023-02-16T05:25:56.312639Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119222Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119222Z","LastActivityAt":"2023-02-16T05:25:49.119222Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1214,"ScoreAtt":9952,"RankDef":1833,"ScoreDef":10459,"RankSup":1300,"ScoreSup":22,"RankTotal":1859,"ScoreTotal":20433,"ID":699763225,"Name":"waldaksi12","NumVillages":9,"Points":24622,"Rank":869,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699763225","BestRank":868,"BestRankAt":"2023-02-16T05:25:49.119223Z","MostPoints":24622,"MostPointsAt":"2023-02-16T05:25:56.31264Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:56.31264Z","LastActivityAt":"2023-02-16T05:25:56.31264Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1528,"ScoreDef":30795,"RankSup":0,"ScoreSup":0,"RankTotal":1760,"ScoreTotal":30795,"ID":699765601,"Name":"GryzipiĂłrek","NumVillages":1,"Points":1537,"Rank":1728,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699765601","BestRank":1728,"BestRankAt":"2023-02-16T05:25:56.31264Z","MostPoints":1537,"MostPointsAt":"2023-02-16T05:25:49.119224Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119224Z","LastActivityAt":"2023-02-16T05:25:49.119224Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119921Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":746,"ScoreAtt":102414,"RankDef":656,"ScoreDef":315881,"RankSup":976,"ScoreSup":6096,"RankTotal":891,"ScoreTotal":424391,"ID":699765971,"Name":"Banan001","NumVillages":1,"Points":26,"Rank":2701,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699765971","BestRank":2701,"BestRankAt":"2023-02-16T05:25:56.312641Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119225Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119225Z","LastActivityAt":"2023-02-16T05:25:49.119226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119922Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699766223,"Name":"bart1234","NumVillages":0,"Points":0,"Rank":2973,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699766223","BestRank":2973,"BestRankAt":"2023-02-16T05:25:56.312641Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119227Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119226Z","LastActivityAt":"2023-02-16T05:25:49.119227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119923Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699767482,"Name":"akamee","NumVillages":1,"Points":26,"Rank":2702,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699767482","BestRank":2702,"BestRankAt":"2023-02-16T05:25:56.312642Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119228Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119228Z","LastActivityAt":"2023-02-16T05:25:49.119228Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699773770,"Name":"Lis44","NumVillages":1,"Points":64,"Rank":2521,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699773770","BestRank":2521,"BestRankAt":"2023-02-16T05:25:56.312642Z","MostPoints":64,"MostPointsAt":"2023-02-16T05:25:49.119229Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119229Z","LastActivityAt":"2023-02-16T05:25:49.119229Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119924Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1287,"ScoreAtt":6710,"RankDef":2057,"ScoreDef":3358,"RankSup":0,"ScoreSup":0,"RankTotal":1990,"ScoreTotal":10068,"ID":699774694,"Name":"Trip kuba","NumVillages":9,"Points":19297,"Rank":930,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699774694","BestRank":930,"BestRankAt":"2023-02-16T05:25:56.312643Z","MostPoints":19297,"MostPointsAt":"2023-02-16T05:25:56.312643Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.11923Z","LastActivityAt":"2023-02-16T05:25:56.312643Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119925Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2192,"ScoreDef":1091,"RankSup":0,"ScoreSup":0,"RankTotal":2286,"ScoreTotal":1091,"ID":699776412,"Name":"semunus x Przemek9595","NumVillages":1,"Points":26,"Rank":2703,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699776412","BestRank":2703,"BestRankAt":"2023-02-16T05:25:56.312643Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119232Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119231Z","LastActivityAt":"2023-02-16T05:25:49.119232Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119926Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":133,"ScoreAtt":2318380,"RankDef":891,"ScoreDef":171277,"RankSup":146,"ScoreSup":1537082,"RankTotal":234,"ScoreTotal":4026739,"ID":699777234,"Name":"7.62 mm","NumVillages":86,"Points":791741,"Rank":183,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699777234","BestRank":183,"BestRankAt":"2023-02-16T05:25:49.119232Z","MostPoints":791741,"MostPointsAt":"2023-02-16T05:25:56.312644Z","MostVillages":86,"MostVillagesAt":"2023-02-16T05:25:49.119233Z","LastActivityAt":"2023-02-16T05:25:56.312644Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119927Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":420,"ScoreAtt":509930,"RankDef":979,"ScoreDef":132023,"RankSup":1185,"ScoreSup":467,"RankTotal":762,"ScoreTotal":642420,"ID":699777372,"Name":"Marioesp","NumVillages":21,"Points":132574,"Rank":489,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699777372","BestRank":489,"BestRankAt":"2023-02-16T05:25:56.312644Z","MostPoints":132574,"MostPointsAt":"2023-02-16T05:25:56.312644Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:56.312644Z","LastActivityAt":"2023-02-16T05:25:56.312645Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119928Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1357,"ScoreAtt":4993,"RankDef":476,"ScoreDef":563099,"RankSup":612,"ScoreSup":91869,"RankTotal":748,"ScoreTotal":659961,"ID":699777556,"Name":"dami991","NumVillages":1,"Points":2105,"Rank":1634,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699777556","BestRank":1634,"BestRankAt":"2023-02-16T05:25:56.312645Z","MostPoints":2105,"MostPointsAt":"2023-02-16T05:25:56.312645Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119235Z","LastActivityAt":"2023-02-16T05:25:56.312645Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":203,"ScoreAtt":1564681,"RankDef":913,"ScoreDef":160828,"RankSup":387,"ScoreSup":337570,"RankTotal":398,"ScoreTotal":2063079,"ID":699778028,"Name":"Black Bird","NumVillages":1,"Points":942,"Rank":1862,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699778028","BestRank":1862,"BestRankAt":"2023-02-16T05:25:56.312645Z","MostPoints":942,"MostPointsAt":"2023-02-16T05:25:56.312646Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119236Z","LastActivityAt":"2023-02-16T05:25:56.312646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119929Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699778684,"Name":"Lego.","NumVillages":1,"Points":227,"Rank":2232,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699778684","BestRank":2232,"BestRankAt":"2023-02-16T05:25:56.312646Z","MostPoints":227,"MostPointsAt":"2023-02-16T05:25:56.312646Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119238Z","LastActivityAt":"2023-02-16T05:25:56.312646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":496,"ScoreAtt":362070,"RankDef":1043,"ScoreDef":110375,"RankSup":209,"ScoreSup":883465,"RankTotal":528,"ScoreTotal":1355910,"ID":699778867,"Name":"kimbos","NumVillages":88,"Points":802141,"Rank":178,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699778867","BestRank":168,"BestRankAt":"2023-02-16T05:25:49.119241Z","MostPoints":864857,"MostPointsAt":"2023-02-16T05:25:49.119241Z","MostVillages":98,"MostVillagesAt":"2023-02-16T05:25:49.119241Z","LastActivityAt":"2023-02-16T05:25:56.312647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119931Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1784,"ScoreDef":13094,"RankSup":0,"ScoreSup":0,"RankTotal":1946,"ScoreTotal":13094,"ID":699779038,"Name":"Feleross","NumVillages":0,"Points":0,"Rank":2974,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699779038","BestRank":2974,"BestRankAt":"2023-02-16T05:25:56.312647Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119243Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119242Z","LastActivityAt":"2023-02-16T05:25:49.119243Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119932Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1976,"ScoreAtt":3,"RankDef":1412,"ScoreDef":41423,"RankSup":0,"ScoreSup":0,"RankTotal":1664,"ScoreTotal":41426,"ID":699780721,"Name":"ptomptom","NumVillages":1,"Points":634,"Rank":1958,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699780721","BestRank":1958,"BestRankAt":"2023-02-16T05:25:56.312647Z","MostPoints":634,"MostPointsAt":"2023-02-16T05:25:56.312648Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119244Z","LastActivityAt":"2023-02-16T05:25:56.312648Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1382,"ScoreAtt":4473,"RankDef":1841,"ScoreDef":10099,"RankSup":889,"ScoreSup":12457,"RankTotal":1797,"ScoreTotal":27029,"ID":699780873,"Name":"Lexlutor","NumVillages":1,"Points":6192,"Rank":1253,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699780873","BestRank":1225,"BestRankAt":"2023-02-16T05:25:49.119245Z","MostPoints":6886,"MostPointsAt":"2023-02-16T05:25:49.119245Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119245Z","LastActivityAt":"2023-02-16T05:25:49.119245Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119933Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1725,"ScoreAtt":375,"RankDef":0,"ScoreDef":0,"RankSup":804,"ScoreSup":23971,"RankTotal":1822,"ScoreTotal":24346,"ID":699781390,"Name":"Sir Christopher Last","NumVillages":1,"Points":836,"Rank":1892,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699781390","BestRank":1892,"BestRankAt":"2023-02-16T05:25:56.312648Z","MostPoints":836,"MostPointsAt":"2023-02-16T05:25:56.312649Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119246Z","LastActivityAt":"2023-02-16T05:25:56.312649Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119934Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":572,"ScoreAtt":248822,"RankDef":432,"ScoreDef":658831,"RankSup":1338,"ScoreSup":8,"RankTotal":649,"ScoreTotal":907661,"ID":699781605,"Name":"Asmo17","NumVillages":0,"Points":0,"Rank":2975,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699781605","BestRank":2975,"BestRankAt":"2023-02-16T05:25:56.312649Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119248Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119247Z","LastActivityAt":"2023-02-16T05:25:49.119248Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":70,"ScoreAtt":4252687,"RankDef":9,"ScoreDef":22752090,"RankSup":50,"ScoreSup":3394758,"RankTotal":13,"ScoreTotal":30399535,"ID":699781762,"Name":"Meok","NumVillages":104,"Points":1012342,"Rank":146,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699781762","BestRank":145,"BestRankAt":"2023-02-16T05:25:49.119248Z","MostPoints":1012342,"MostPointsAt":"2023-02-16T05:25:56.31265Z","MostVillages":104,"MostVillagesAt":"2023-02-16T05:25:49.119249Z","LastActivityAt":"2023-02-16T05:25:56.31265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119935Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":633,"ScoreAtt":177373,"RankDef":564,"ScoreDef":416148,"RankSup":849,"ScoreSup":16471,"RankTotal":774,"ScoreTotal":609992,"ID":699783063,"Name":"Tzarski707","NumVillages":3,"Points":15784,"Rank":986,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699783063","BestRank":986,"BestRankAt":"2023-02-16T05:25:56.31265Z","MostPoints":15784,"MostPointsAt":"2023-02-16T05:25:56.31265Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.11925Z","LastActivityAt":"2023-02-16T05:25:56.31265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119936Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2373,"ScoreDef":25,"RankSup":0,"ScoreSup":0,"RankTotal":2471,"ScoreTotal":25,"ID":699783641,"Name":"mily546","NumVillages":0,"Points":0,"Rank":2976,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699783641","BestRank":2976,"BestRankAt":"2023-02-16T05:25:56.312651Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119251Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119251Z","LastActivityAt":"2023-02-16T05:25:49.119252Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119937Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":3,"ScoreAtt":19374739,"RankDef":190,"ScoreDef":1997648,"RankSup":363,"ScoreSup":385964,"RankTotal":24,"ScoreTotal":21758351,"ID":699783765,"Name":"xKentinPL","NumVillages":453,"Points":4364131,"Rank":5,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699783765","BestRank":5,"BestRankAt":"2023-02-16T05:25:49.119252Z","MostPoints":4364131,"MostPointsAt":"2023-02-16T05:25:56.312651Z","MostVillages":453,"MostVillagesAt":"2023-02-16T05:25:56.312651Z","LastActivityAt":"2023-02-16T05:25:56.312651Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":63,"ScoreAtt":4406307,"RankDef":1048,"ScoreDef":108683,"RankSup":6,"ScoreSup":9767824,"RankTotal":56,"ScoreTotal":14282814,"ID":699784536,"Name":"kocziurs","NumVillages":177,"Points":1825164,"Rank":58,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699784536","BestRank":56,"BestRankAt":"2023-02-16T05:25:49.119253Z","MostPoints":1825164,"MostPointsAt":"2023-02-16T05:25:56.312652Z","MostVillages":177,"MostVillagesAt":"2023-02-16T05:25:49.119254Z","LastActivityAt":"2023-02-16T05:25:56.312652Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119938Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2051,"ScoreDef":3515,"RankSup":0,"ScoreSup":0,"RankTotal":2173,"ScoreTotal":3515,"ID":699785141,"Name":"miki021","NumVillages":1,"Points":793,"Rank":1901,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699785141","BestRank":1901,"BestRankAt":"2023-02-16T05:25:56.312652Z","MostPoints":793,"MostPointsAt":"2023-02-16T05:25:49.119255Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119255Z","LastActivityAt":"2023-02-16T05:25:49.119255Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119939Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":199,"ScoreAtt":1573583,"RankDef":479,"ScoreDef":560964,"RankSup":87,"ScoreSup":2415765,"RankTotal":209,"ScoreTotal":4550312,"ID":699785935,"Name":"Vampirka* x Czaruƛ","NumVillages":217,"Points":1962448,"Rank":50,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699785935","BestRank":50,"BestRankAt":"2023-02-16T05:25:56.312653Z","MostPoints":1962448,"MostPointsAt":"2023-02-16T05:25:56.312653Z","MostVillages":217,"MostVillagesAt":"2023-02-16T05:25:56.312653Z","LastActivityAt":"2023-02-16T05:25:56.312653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":507,"ScoreAtt":341992,"RankDef":1312,"ScoreDef":55774,"RankSup":350,"ScoreSup":412554,"RankTotal":680,"ScoreTotal":810320,"ID":699788305,"Name":"lihtum","NumVillages":33,"Points":301741,"Rank":352,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699788305","BestRank":352,"BestRankAt":"2023-02-16T05:25:56.312653Z","MostPoints":301741,"MostPointsAt":"2023-02-16T05:25:56.312653Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:49.119257Z","LastActivityAt":"2023-02-16T05:25:56.312653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699788972,"Name":"Saintros","NumVillages":1,"Points":26,"Rank":2704,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699788972","BestRank":2704,"BestRankAt":"2023-02-16T05:25:56.312654Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119259Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119259Z","LastActivityAt":"2023-02-16T05:25:49.119259Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119941Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1445,"ScoreDef":38616,"RankSup":0,"ScoreSup":0,"RankTotal":1691,"ScoreTotal":38616,"ID":699789609,"Name":"LuzakNT","NumVillages":1,"Points":2274,"Rank":1604,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699789609","BestRank":1604,"BestRankAt":"2023-02-16T05:25:56.312654Z","MostPoints":2274,"MostPointsAt":"2023-02-16T05:25:49.11926Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11926Z","LastActivityAt":"2023-02-16T05:25:49.11926Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119943Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":510,"ScoreAtt":339675,"RankDef":2042,"ScoreDef":3686,"RankSup":935,"ScoreSup":8557,"RankTotal":956,"ScoreTotal":351918,"ID":699790202,"Name":"Pokraczny850","NumVillages":1,"Points":26,"Rank":2705,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699790202","BestRank":2705,"BestRankAt":"2023-02-16T05:25:56.312655Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119261Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119261Z","LastActivityAt":"2023-02-16T05:25:49.119261Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1196,"ScoreAtt":10675,"RankDef":907,"ScoreDef":165635,"RankSup":1355,"ScoreSup":5,"RankTotal":1196,"ScoreTotal":176315,"ID":699791054,"Name":"Shooott","NumVillages":2,"Points":3587,"Rank":1442,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699791054","BestRank":1442,"BestRankAt":"2023-02-16T05:25:56.312655Z","MostPoints":3587,"MostPointsAt":"2023-02-16T05:25:56.312655Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119262Z","LastActivityAt":"2023-02-16T05:25:56.312655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119944Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1458,"ScoreAtt":2932,"RankDef":1371,"ScoreDef":47770,"RankSup":0,"ScoreSup":0,"RankTotal":1602,"ScoreTotal":50702,"ID":699792747,"Name":"Fatality51","NumVillages":1,"Points":5653,"Rank":1284,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699792747","BestRank":1284,"BestRankAt":"2023-02-16T05:25:56.312656Z","MostPoints":5653,"MostPointsAt":"2023-02-16T05:25:49.119264Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119263Z","LastActivityAt":"2023-02-16T05:25:49.119264Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119945Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":489,"ScoreAtt":376475,"RankDef":1792,"ScoreDef":12528,"RankSup":782,"ScoreSup":28600,"RankTotal":898,"ScoreTotal":417603,"ID":699794286,"Name":"Somalija","NumVillages":1,"Points":80,"Rank":2482,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794286","BestRank":2482,"BestRankAt":"2023-02-16T05:25:56.312656Z","MostPoints":80,"MostPointsAt":"2023-02-16T05:25:49.119265Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119265Z","LastActivityAt":"2023-02-16T05:25:49.119265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1587,"ScoreAtt":1315,"RankDef":1654,"ScoreDef":21669,"RankSup":0,"ScoreSup":0,"RankTotal":1833,"ScoreTotal":22984,"ID":699794421,"Name":"wieslaw1","NumVillages":5,"Points":15473,"Rank":991,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794421","BestRank":991,"BestRankAt":"2023-02-16T05:25:56.312657Z","MostPoints":15473,"MostPointsAt":"2023-02-16T05:25:56.312657Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119266Z","LastActivityAt":"2023-02-16T05:25:56.312657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119946Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1728,"ScoreAtt":367,"RankDef":1768,"ScoreDef":13955,"RankSup":0,"ScoreSup":0,"RankTotal":1932,"ScoreTotal":14322,"ID":699794720,"Name":"Ozilo","NumVillages":2,"Points":6815,"Rank":1218,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794720","BestRank":1218,"BestRankAt":"2023-02-16T05:25:56.312657Z","MostPoints":6815,"MostPointsAt":"2023-02-16T05:25:49.119267Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119267Z","LastActivityAt":"2023-02-16T05:25:49.119268Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119947Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":126,"ScoreAtt":2409536,"RankDef":705,"ScoreDef":271231,"RankSup":455,"ScoreSup":219464,"RankTotal":301,"ScoreTotal":2900231,"ID":699794765,"Name":"KrulAndrzej","NumVillages":151,"Points":1053216,"Rank":136,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699794765","BestRank":135,"BestRankAt":"2023-02-16T05:25:49.119268Z","MostPoints":1053216,"MostPointsAt":"2023-02-16T05:25:56.312658Z","MostVillages":151,"MostVillagesAt":"2023-02-16T05:25:56.312658Z","LastActivityAt":"2023-02-16T05:25:56.312658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119948Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1860,"ScoreAtt":90,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2422,"ScoreTotal":90,"ID":699795301,"Name":"Paranormalny","NumVillages":1,"Points":1557,"Rank":1725,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699795301","BestRank":1725,"BestRankAt":"2023-02-16T05:25:56.312658Z","MostPoints":1557,"MostPointsAt":"2023-02-16T05:25:56.312658Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11927Z","LastActivityAt":"2023-02-16T05:25:56.312659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":455,"ScoreAtt":439524,"RankDef":440,"ScoreDef":637875,"RankSup":426,"ScoreSup":260084,"RankTotal":533,"ScoreTotal":1337483,"ID":699795378,"Name":"hurricaneAG","NumVillages":44,"Points":403163,"Rank":301,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699795378","BestRank":301,"BestRankAt":"2023-02-16T05:25:56.312659Z","MostPoints":403163,"MostPointsAt":"2023-02-16T05:25:56.312659Z","MostVillages":44,"MostVillagesAt":"2023-02-16T05:25:49.119271Z","LastActivityAt":"2023-02-16T05:25:56.312659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119949Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":899,"ScoreAtt":50929,"RankDef":2175,"ScoreDef":1320,"RankSup":0,"ScoreSup":0,"RankTotal":1592,"ScoreTotal":52249,"ID":699795698,"Name":"dabek","NumVillages":4,"Points":24724,"Rank":865,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699795698","BestRank":865,"BestRankAt":"2023-02-16T05:25:56.312659Z","MostPoints":24724,"MostPointsAt":"2023-02-16T05:25:56.31266Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119272Z","LastActivityAt":"2023-02-16T05:25:56.31266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":142,"ScoreAtt":2183428,"RankDef":848,"ScoreDef":188248,"RankSup":148,"ScoreSup":1525589,"RankTotal":239,"ScoreTotal":3897265,"ID":699796330,"Name":"SugarDandy","NumVillages":171,"Points":1372800,"Rank":88,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699796330","BestRank":88,"BestRankAt":"2023-02-16T05:25:56.31266Z","MostPoints":1372800,"MostPointsAt":"2023-02-16T05:25:56.31266Z","MostVillages":171,"MostVillagesAt":"2023-02-16T05:25:56.31266Z","LastActivityAt":"2023-02-16T05:25:56.31266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119951Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1925,"ScoreAtt":27,"RankDef":1101,"ScoreDef":93862,"RankSup":0,"ScoreSup":0,"RankTotal":1410,"ScoreTotal":93889,"ID":699796630,"Name":"nero26","NumVillages":2,"Points":6182,"Rank":1254,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699796630","BestRank":1254,"BestRankAt":"2023-02-16T05:25:56.312661Z","MostPoints":6182,"MostPointsAt":"2023-02-16T05:25:49.119275Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119275Z","LastActivityAt":"2023-02-16T05:25:49.119275Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119952Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1796,"ScoreAtt":184,"RankDef":1969,"ScoreDef":5620,"RankSup":0,"ScoreSup":0,"RankTotal":2092,"ScoreTotal":5804,"ID":699797065,"Name":"peterw21","NumVillages":1,"Points":26,"Rank":2706,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797065","BestRank":2146,"BestRankAt":"2023-02-16T05:25:49.119276Z","MostPoints":330,"MostPointsAt":"2023-02-16T05:25:49.119276Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119276Z","LastActivityAt":"2023-02-16T05:25:49.119276Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119953Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":509,"ScoreDef":505743,"RankSup":0,"ScoreSup":0,"RankTotal":836,"ScoreTotal":505743,"ID":699797252,"Name":"Kaimek","NumVillages":1,"Points":3077,"Rank":1503,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797252","BestRank":1503,"BestRankAt":"2023-02-16T05:25:56.312662Z","MostPoints":3077,"MostPointsAt":"2023-02-16T05:25:56.312662Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119277Z","LastActivityAt":"2023-02-16T05:25:56.312662Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119954Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":551,"ScoreAtt":275816,"RankDef":305,"ScoreDef":1141082,"RankSup":502,"ScoreSup":172503,"RankTotal":477,"ScoreTotal":1589401,"ID":699797508,"Name":"biunar","NumVillages":2,"Points":14858,"Rank":1003,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797508","BestRank":998,"BestRankAt":"2023-02-16T05:25:49.119278Z","MostPoints":14858,"MostPointsAt":"2023-02-16T05:25:49.119279Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119278Z","LastActivityAt":"2023-02-16T05:25:49.119279Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1301,"ScoreAtt":6409,"RankDef":1963,"ScoreDef":5759,"RankSup":627,"ScoreSup":83388,"RankTotal":1400,"ScoreTotal":95556,"ID":699797805,"Name":"Terminatorka1992","NumVillages":14,"Points":49591,"Rank":697,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699797805","BestRank":697,"BestRankAt":"2023-02-16T05:25:56.312663Z","MostPoints":49591,"MostPointsAt":"2023-02-16T05:25:56.312663Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.11928Z","LastActivityAt":"2023-02-16T05:25:56.312663Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119955Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1435,"ScoreDef":39058,"RankSup":0,"ScoreSup":0,"RankTotal":1682,"ScoreTotal":39058,"ID":699798611,"Name":"marekkkzzz665","NumVillages":1,"Points":252,"Rank":2206,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699798611","BestRank":2206,"BestRankAt":"2023-02-16T05:25:56.312663Z","MostPoints":252,"MostPointsAt":"2023-02-16T05:25:56.312663Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119281Z","LastActivityAt":"2023-02-16T05:25:56.312663Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119956Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699798847,"Name":"aquarius250000","NumVillages":1,"Points":133,"Rank":2389,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699798847","BestRank":2389,"BestRankAt":"2023-02-16T05:25:56.312664Z","MostPoints":133,"MostPointsAt":"2023-02-16T05:25:49.119282Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119282Z","LastActivityAt":"2023-02-16T05:25:49.119282Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119958Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":621,"ScoreAtt":189512,"RankDef":266,"ScoreDef":1397244,"RankSup":255,"ScoreSup":673874,"RankTotal":377,"ScoreTotal":2260630,"ID":699799629,"Name":"KaZZiu1993","NumVillages":41,"Points":353528,"Rank":326,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699799629","BestRank":324,"BestRankAt":"2023-02-16T05:25:49.119283Z","MostPoints":353528,"MostPointsAt":"2023-02-16T05:25:56.312664Z","MostVillages":41,"MostVillagesAt":"2023-02-16T05:25:49.119283Z","LastActivityAt":"2023-02-16T05:25:56.312664Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":945,"ScoreAtt":41163,"RankDef":968,"ScoreDef":138840,"RankSup":734,"ScoreSup":39460,"RankTotal":1109,"ScoreTotal":219463,"ID":699800377,"Name":"Frupek","NumVillages":3,"Points":6371,"Rank":1241,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699800377","BestRank":1241,"BestRankAt":"2023-02-16T05:25:56.312665Z","MostPoints":6371,"MostPointsAt":"2023-02-16T05:25:49.119285Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119284Z","LastActivityAt":"2023-02-16T05:25:49.119285Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119959Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1081,"ScoreAtt":19707,"RankDef":711,"ScoreDef":267507,"RankSup":1068,"ScoreSup":2427,"RankTotal":1013,"ScoreTotal":289641,"ID":699800992,"Name":"BeIIator","NumVillages":1,"Points":6057,"Rank":1262,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699800992","BestRank":1262,"BestRankAt":"2023-02-16T05:25:56.312665Z","MostPoints":6057,"MostPointsAt":"2023-02-16T05:25:49.119286Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119286Z","LastActivityAt":"2023-02-16T05:25:49.119286Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119961Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699802009,"Name":"przemekagatki","NumVillages":1,"Points":26,"Rank":2707,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699802009","BestRank":2707,"BestRankAt":"2023-02-16T05:25:56.312666Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119287Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119287Z","LastActivityAt":"2023-02-16T05:25:49.119287Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1932,"ScoreDef":6494,"RankSup":878,"ScoreSup":13906,"RankTotal":1860,"ScoreTotal":20400,"ID":699802012,"Name":"alexwpr","NumVillages":2,"Points":4743,"Rank":1343,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699802012","BestRank":1343,"BestRankAt":"2023-02-16T05:25:56.312666Z","MostPoints":4743,"MostPointsAt":"2023-02-16T05:25:56.312666Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119288Z","LastActivityAt":"2023-02-16T05:25:56.312666Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":906,"ScoreAtt":48877,"RankDef":152,"ScoreDef":2549925,"RankSup":705,"ScoreSup":48364,"RankTotal":332,"ScoreTotal":2647166,"ID":699803070,"Name":"Ravmlm","NumVillages":0,"Points":0,"Rank":2977,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699803070","BestRank":2977,"BestRankAt":"2023-02-16T05:25:56.312667Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.11929Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119289Z","LastActivityAt":"2023-02-16T05:25:49.11929Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2150,"ScoreDef":1743,"RankSup":0,"ScoreSup":0,"RankTotal":2248,"ScoreTotal":1743,"ID":699803189,"Name":"MojaJedynaMiƂoƛć","NumVillages":3,"Points":8104,"Rank":1151,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699803189","BestRank":1151,"BestRankAt":"2023-02-16T05:25:56.312667Z","MostPoints":8104,"MostPointsAt":"2023-02-16T05:25:56.312667Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119291Z","LastActivityAt":"2023-02-16T05:25:56.312667Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699803939,"Name":"Drain","NumVillages":1,"Points":960,"Rank":1855,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699803939","BestRank":1855,"BestRankAt":"2023-02-16T05:25:56.312668Z","MostPoints":960,"MostPointsAt":"2023-02-16T05:25:56.312668Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119292Z","LastActivityAt":"2023-02-16T05:25:56.312668Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":425,"ScoreAtt":505048,"RankDef":1857,"ScoreDef":9585,"RankSup":823,"ScoreSup":20157,"RankTotal":816,"ScoreTotal":534790,"ID":699804790,"Name":"snake5665","NumVillages":42,"Points":323491,"Rank":345,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699804790","BestRank":345,"BestRankAt":"2023-02-16T05:25:56.312668Z","MostPoints":323491,"MostPointsAt":"2023-02-16T05:25:56.312668Z","MostVillages":42,"MostVillagesAt":"2023-02-16T05:25:49.119293Z","LastActivityAt":"2023-02-16T05:25:56.312669Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":991,"ScoreAtt":31250,"RankDef":1864,"ScoreDef":9222,"RankSup":733,"ScoreSup":39934,"RankTotal":1455,"ScoreTotal":80406,"ID":699805379,"Name":"Pampun","NumVillages":10,"Points":18153,"Rank":946,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699805379","BestRank":945,"BestRankAt":"2023-02-16T05:25:49.119294Z","MostPoints":18153,"MostPointsAt":"2023-02-16T05:25:49.119295Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.119294Z","LastActivityAt":"2023-02-16T05:25:49.119295Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1591,"ScoreAtt":1285,"RankDef":1661,"ScoreDef":21258,"RankSup":371,"ScoreSup":368236,"RankTotal":926,"ScoreTotal":390779,"ID":699805839,"Name":"DejMon","NumVillages":22,"Points":111829,"Rank":517,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699805839","BestRank":517,"BestRankAt":"2023-02-16T05:25:56.312669Z","MostPoints":111829,"MostPointsAt":"2023-02-16T05:25:56.312669Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.119296Z","LastActivityAt":"2023-02-16T05:25:56.31267Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699807296,"Name":"Kuba555","NumVillages":1,"Points":318,"Rank":2138,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699807296","BestRank":2138,"BestRankAt":"2023-02-16T05:25:56.31267Z","MostPoints":318,"MostPointsAt":"2023-02-16T05:25:49.119297Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119297Z","LastActivityAt":"2023-02-16T05:25:49.119297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699808655,"Name":"solek4321","NumVillages":1,"Points":1119,"Rank":1814,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699808655","BestRank":1814,"BestRankAt":"2023-02-16T05:25:56.31267Z","MostPoints":1119,"MostPointsAt":"2023-02-16T05:25:56.31267Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119298Z","LastActivityAt":"2023-02-16T05:25:56.312671Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2276,"ScoreDef":326,"RankSup":0,"ScoreSup":0,"RankTotal":2356,"ScoreTotal":326,"ID":699811133,"Name":"bleta spz","NumVillages":1,"Points":275,"Rank":2187,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699811133","BestRank":2187,"BestRankAt":"2023-02-16T05:25:56.312671Z","MostPoints":275,"MostPointsAt":"2023-02-16T05:25:49.119299Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119299Z","LastActivityAt":"2023-02-16T05:25:49.1193Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1798,"ScoreDef":12181,"RankSup":0,"ScoreSup":0,"RankTotal":1958,"ScoreTotal":12181,"ID":699811844,"Name":"Time Traveler","NumVillages":1,"Points":26,"Rank":2708,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699811844","BestRank":2708,"BestRankAt":"2023-02-16T05:25:56.312671Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119301Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119301Z","LastActivityAt":"2023-02-16T05:25:49.119301Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":378,"ScoreAtt":618674,"RankDef":1846,"ScoreDef":9924,"RankSup":798,"ScoreSup":24650,"RankTotal":751,"ScoreTotal":653248,"ID":699812007,"Name":"Pediadoks","NumVillages":26,"Points":204993,"Rank":414,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812007","BestRank":412,"BestRankAt":"2023-02-16T05:25:49.119302Z","MostPoints":204993,"MostPointsAt":"2023-02-16T05:25:56.312672Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:49.119302Z","LastActivityAt":"2023-02-16T05:25:56.312672Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":993,"ScoreAtt":31042,"RankDef":603,"ScoreDef":378930,"RankSup":1199,"ScoreSup":362,"RankTotal":907,"ScoreTotal":410334,"ID":699812351,"Name":"Lisu79","NumVillages":5,"Points":9398,"Rank":1108,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812351","BestRank":1108,"BestRankAt":"2023-02-16T05:25:56.312672Z","MostPoints":9398,"MostPointsAt":"2023-02-16T05:25:56.312673Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119303Z","LastActivityAt":"2023-02-16T05:25:56.312673Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":781,"ScoreAtt":87112,"RankDef":1334,"ScoreDef":53090,"RankSup":1316,"ScoreSup":15,"RankTotal":1269,"ScoreTotal":140217,"ID":699812571,"Name":"kryska6969","NumVillages":2,"Points":3701,"Rank":1428,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812571","BestRank":1428,"BestRankAt":"2023-02-16T05:25:56.312673Z","MostPoints":3701,"MostPointsAt":"2023-02-16T05:25:49.119304Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119304Z","LastActivityAt":"2023-02-16T05:25:49.119305Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1563,"ScoreAtt":1609,"RankDef":828,"ScoreDef":198897,"RankSup":1374,"ScoreSup":3,"RankTotal":1136,"ScoreTotal":200509,"ID":699812653,"Name":"King Arkadius 1","NumVillages":1,"Points":1082,"Rank":1827,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812653","BestRank":1827,"BestRankAt":"2023-02-16T05:25:56.312673Z","MostPoints":1082,"MostPointsAt":"2023-02-16T05:25:56.312674Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119305Z","LastActivityAt":"2023-02-16T05:25:56.312674Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699812824,"Name":"WhiteMuffin","NumVillages":1,"Points":32,"Rank":2587,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812824","BestRank":2587,"BestRankAt":"2023-02-16T05:25:56.312674Z","MostPoints":32,"MostPointsAt":"2023-02-16T05:25:49.119307Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119307Z","LastActivityAt":"2023-02-16T05:25:49.119307Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119974Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699812828,"Name":"RYSIO E46","NumVillages":1,"Points":26,"Rank":2709,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812828","BestRank":2709,"BestRankAt":"2023-02-16T05:25:56.312674Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119308Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119308Z","LastActivityAt":"2023-02-16T05:25:49.119308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119975Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1386,"ScoreAtt":4285,"RankDef":1471,"ScoreDef":36253,"RankSup":0,"ScoreSup":0,"RankTotal":1673,"ScoreTotal":40538,"ID":699812869,"Name":"TheKingDestroyer","NumVillages":1,"Points":3257,"Rank":1485,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699812869","BestRank":1485,"BestRankAt":"2023-02-16T05:25:56.312675Z","MostPoints":3257,"MostPointsAt":"2023-02-16T05:25:49.119309Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119309Z","LastActivityAt":"2023-02-16T05:25:49.11931Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699813587,"Name":"Monsio","NumVillages":1,"Points":194,"Rank":2290,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699813587","BestRank":2290,"BestRankAt":"2023-02-16T05:25:56.312675Z","MostPoints":194,"MostPointsAt":"2023-02-16T05:25:49.119311Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11931Z","LastActivityAt":"2023-02-16T05:25:49.119311Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119976Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":118,"ScoreAtt":2527437,"RankDef":325,"ScoreDef":1026711,"RankSup":117,"ScoreSup":1927982,"RankTotal":168,"ScoreTotal":5482130,"ID":699814283,"Name":"Majson x SZEF RYSZARD","NumVillages":0,"Points":0,"Rank":2978,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699814283","BestRank":1146,"BestRankAt":"2023-02-16T05:25:49.119311Z","MostPoints":8266,"MostPointsAt":"2023-02-16T05:25:49.119312Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119312Z","LastActivityAt":"2023-02-16T05:25:49.119312Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119977Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1633,"ScoreAtt":892,"RankDef":780,"ScoreDef":229009,"RankSup":1213,"ScoreSup":303,"RankTotal":1088,"ScoreTotal":230204,"ID":699816699,"Name":"ksiÄ…ĆŒÄ™ plemienia","NumVillages":1,"Points":881,"Rank":1879,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699816699","BestRank":1879,"BestRankAt":"2023-02-16T05:25:56.312676Z","MostPoints":881,"MostPointsAt":"2023-02-16T05:25:56.312676Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119313Z","LastActivityAt":"2023-02-16T05:25:56.312677Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119978Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":805,"ScoreAtt":77536,"RankDef":1769,"ScoreDef":13912,"RankSup":0,"ScoreSup":0,"RankTotal":1425,"ScoreTotal":91448,"ID":699818726,"Name":"Felicjan","NumVillages":23,"Points":162314,"Rank":449,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699818726","BestRank":449,"BestRankAt":"2023-02-16T05:25:49.119314Z","MostPoints":162314,"MostPointsAt":"2023-02-16T05:25:56.312677Z","MostVillages":23,"MostVillagesAt":"2023-02-16T05:25:49.119314Z","LastActivityAt":"2023-02-16T05:25:56.312677Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119979Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":300,"ScoreAtt":920690,"RankDef":171,"ScoreDef":2214059,"RankSup":737,"ScoreSup":38829,"RankTotal":277,"ScoreTotal":3173578,"ID":699820572,"Name":"Stresik","NumVillages":1,"Points":129,"Rank":2398,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699820572","BestRank":2398,"BestRankAt":"2023-02-16T05:25:56.312677Z","MostPoints":129,"MostPointsAt":"2023-02-16T05:25:49.119316Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119315Z","LastActivityAt":"2023-02-16T05:25:49.119316Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699820969,"Name":"NikoMat","NumVillages":1,"Points":53,"Rank":2541,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699820969","BestRank":2541,"BestRankAt":"2023-02-16T05:25:56.312678Z","MostPoints":53,"MostPointsAt":"2023-02-16T05:25:49.119317Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119317Z","LastActivityAt":"2023-02-16T05:25:49.119317Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":692,"ScoreAtt":134908,"RankDef":270,"ScoreDef":1388376,"RankSup":1039,"ScoreSup":3060,"RankTotal":492,"ScoreTotal":1526344,"ID":699821629,"Name":"Lady Miriam","NumVillages":12,"Points":53533,"Rank":673,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699821629","BestRank":673,"BestRankAt":"2023-02-16T05:25:56.312678Z","MostPoints":53533,"MostPointsAt":"2023-02-16T05:25:56.312678Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.119318Z","LastActivityAt":"2023-02-16T05:25:56.312679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119981Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":968,"ScoreAtt":35667,"RankDef":916,"ScoreDef":158658,"RankSup":0,"ScoreSup":0,"RankTotal":1148,"ScoreTotal":194325,"ID":699821755,"Name":"Dawidoff","NumVillages":3,"Points":21574,"Rank":897,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699821755","BestRank":897,"BestRankAt":"2023-02-16T05:25:56.312679Z","MostPoints":21574,"MostPointsAt":"2023-02-16T05:25:56.312679Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119319Z","LastActivityAt":"2023-02-16T05:25:56.312679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119982Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1810,"ScoreDef":11520,"RankSup":0,"ScoreSup":0,"RankTotal":1971,"ScoreTotal":11520,"ID":699823365,"Name":"lulus69","NumVillages":0,"Points":0,"Rank":2979,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699823365","BestRank":2979,"BestRankAt":"2023-02-16T05:25:56.312679Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.11932Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.11932Z","LastActivityAt":"2023-02-16T05:25:49.119321Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119983Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":958,"ScoreAtt":37448,"RankDef":1876,"ScoreDef":8701,"RankSup":1375,"ScoreSup":3,"RankTotal":1634,"ScoreTotal":46152,"ID":699823490,"Name":"hubert21227","NumVillages":11,"Points":68758,"Rank":620,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699823490","BestRank":620,"BestRankAt":"2023-02-16T05:25:56.31268Z","MostPoints":68758,"MostPointsAt":"2023-02-16T05:25:56.31268Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.119322Z","LastActivityAt":"2023-02-16T05:25:56.31268Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119984Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":743,"ScoreAtt":104449,"RankDef":640,"ScoreDef":336160,"RankSup":722,"ScoreSup":42526,"RankTotal":852,"ScoreTotal":483135,"ID":699825089,"Name":"miro75","NumVillages":1,"Points":32,"Rank":2588,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825089","BestRank":2588,"BestRankAt":"2023-02-16T05:25:56.31268Z","MostPoints":32,"MostPointsAt":"2023-02-16T05:25:49.119323Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119323Z","LastActivityAt":"2023-02-16T05:25:49.119323Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":795,"ScoreAtt":83149,"RankDef":1020,"ScoreDef":121840,"RankSup":1287,"ScoreSup":36,"RankTotal":1130,"ScoreTotal":205025,"ID":699825236,"Name":"magregor","NumVillages":15,"Points":102890,"Rank":532,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825236","BestRank":532,"BestRankAt":"2023-02-16T05:25:56.312681Z","MostPoints":102890,"MostPointsAt":"2023-02-16T05:25:56.312681Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:56.312681Z","LastActivityAt":"2023-02-16T05:25:56.312681Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119985Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699825797,"Name":"gozzi vel jammeroe","NumVillages":1,"Points":201,"Rank":2269,"TribeID":1810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825797","BestRank":2269,"BestRankAt":"2023-02-16T05:25:56.312682Z","MostPoints":201,"MostPointsAt":"2023-02-16T05:25:56.312682Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119325Z","LastActivityAt":"2023-02-16T05:25:56.312682Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119986Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2335,"ScoreDef":67,"RankSup":0,"ScoreSup":0,"RankTotal":2430,"ScoreTotal":67,"ID":699825977,"Name":"Feruell","NumVillages":1,"Points":133,"Rank":2390,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699825977","BestRank":2390,"BestRankAt":"2023-02-16T05:25:56.312682Z","MostPoints":133,"MostPointsAt":"2023-02-16T05:25:49.119327Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119326Z","LastActivityAt":"2023-02-16T05:25:49.119327Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119987Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1816,"ScoreAtt":150,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2396,"ScoreTotal":150,"ID":699826312,"Name":"grzeg","NumVillages":1,"Points":387,"Rank":2079,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699826312","BestRank":2079,"BestRankAt":"2023-02-16T05:25:56.312683Z","MostPoints":387,"MostPointsAt":"2023-02-16T05:25:56.312683Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119328Z","LastActivityAt":"2023-02-16T05:25:56.312683Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699826338,"Name":"Baku97","NumVillages":1,"Points":26,"Rank":2710,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699826338","BestRank":2710,"BestRankAt":"2023-02-16T05:25:56.312683Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.312683Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312683Z","LastActivityAt":"2023-02-16T05:25:56.312683Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313245Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2278,"ScoreDef":305,"RankSup":0,"ScoreSup":0,"RankTotal":2361,"ScoreTotal":305,"ID":699826996,"Name":"krzyĆŒak1","NumVillages":1,"Points":1128,"Rank":1812,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699826996","BestRank":1812,"BestRankAt":"2023-02-16T05:25:56.312684Z","MostPoints":1128,"MostPointsAt":"2023-02-16T05:25:56.312684Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119329Z","LastActivityAt":"2023-02-16T05:25:56.312684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119988Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":159,"ScoreAtt":1999002,"RankDef":322,"ScoreDef":1045364,"RankSup":344,"ScoreSup":418713,"RankTotal":259,"ScoreTotal":3463079,"ID":699827112,"Name":"Orientall","NumVillages":33,"Points":308293,"Rank":350,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699827112","BestRank":350,"BestRankAt":"2023-02-16T05:25:49.11933Z","MostPoints":316648,"MostPointsAt":"2023-02-16T05:25:49.11933Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:49.11933Z","LastActivityAt":"2023-02-16T05:25:49.119331Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119989Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1841,"ScoreAtt":120,"RankDef":1680,"ScoreDef":19740,"RankSup":0,"ScoreSup":0,"RankTotal":1872,"ScoreTotal":19860,"ID":699828338,"Name":"Pigula1983","NumVillages":1,"Points":5474,"Rank":1295,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699828338","BestRank":1295,"BestRankAt":"2023-02-16T05:25:56.312685Z","MostPoints":5589,"MostPointsAt":"2023-02-16T05:25:49.119332Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119331Z","LastActivityAt":"2023-02-16T05:25:49.119332Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":218,"ScoreAtt":1367246,"RankDef":804,"ScoreDef":212676,"RankSup":16,"ScoreSup":5996348,"RankTotal":110,"ScoreTotal":7576270,"ID":699828442,"Name":"Adalino","NumVillages":125,"Points":1042105,"Rank":138,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699828442","BestRank":138,"BestRankAt":"2023-02-16T05:25:49.119332Z","MostPoints":1042105,"MostPointsAt":"2023-02-16T05:25:56.312685Z","MostVillages":125,"MostVillagesAt":"2023-02-16T05:25:49.119333Z","LastActivityAt":"2023-02-16T05:25:56.312685Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.11999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":318,"ScoreAtt":839593,"RankDef":877,"ScoreDef":179233,"RankSup":26,"ScoreSup":4831366,"RankTotal":157,"ScoreTotal":5850192,"ID":699828685,"Name":"myself","NumVillages":136,"Points":1088128,"Rank":130,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699828685","BestRank":129,"BestRankAt":"2023-02-16T05:25:49.119334Z","MostPoints":1088128,"MostPointsAt":"2023-02-16T05:25:56.312686Z","MostVillages":136,"MostVillagesAt":"2023-02-16T05:25:49.119334Z","LastActivityAt":"2023-02-16T05:25:56.312686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119991Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1006,"ScoreAtt":28618,"RankDef":2119,"ScoreDef":2135,"RankSup":789,"ScoreSup":27191,"RankTotal":1563,"ScoreTotal":57944,"ID":699829494,"Name":"BOA1","NumVillages":7,"Points":31743,"Rank":798,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699829494","BestRank":798,"BestRankAt":"2023-02-16T05:25:56.312686Z","MostPoints":31743,"MostPointsAt":"2023-02-16T05:25:56.312686Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119335Z","LastActivityAt":"2023-02-16T05:25:56.312686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119992Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1283,"ScoreAtt":6763,"RankDef":1095,"ScoreDef":94758,"RankSup":1247,"ScoreSup":121,"RankTotal":1381,"ScoreTotal":101642,"ID":699829916,"Name":"Scarface91","NumVillages":1,"Points":3006,"Rank":1512,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699829916","BestRank":1512,"BestRankAt":"2023-02-16T05:25:56.312687Z","MostPoints":3006,"MostPointsAt":"2023-02-16T05:25:49.119337Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119336Z","LastActivityAt":"2023-02-16T05:25:49.119337Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119993Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1843,"ScoreDef":10061,"RankSup":0,"ScoreSup":0,"RankTotal":1991,"ScoreTotal":10061,"ID":699829975,"Name":"amsz","NumVillages":1,"Points":26,"Rank":2711,"TribeID":415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699829975","BestRank":2711,"BestRankAt":"2023-02-16T05:25:56.312687Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119338Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119338Z","LastActivityAt":"2023-02-16T05:25:49.119338Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119994Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1060,"ScoreAtt":21686,"RankDef":1582,"ScoreDef":26496,"RankSup":0,"ScoreSup":0,"RankTotal":1619,"ScoreTotal":48182,"ID":699830255,"Name":"Lord Sloik1935","NumVillages":5,"Points":26268,"Rank":850,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699830255","BestRank":850,"BestRankAt":"2023-02-16T05:25:56.312688Z","MostPoints":26268,"MostPointsAt":"2023-02-16T05:25:56.312688Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119339Z","LastActivityAt":"2023-02-16T05:25:56.312688Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2201,"ScoreDef":914,"RankSup":0,"ScoreSup":0,"RankTotal":2289,"ScoreTotal":914,"ID":699831193,"Name":"daria519","NumVillages":1,"Points":1611,"Rank":1714,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831193","BestRank":1714,"BestRankAt":"2023-02-16T05:25:56.312688Z","MostPoints":1611,"MostPointsAt":"2023-02-16T05:25:56.312688Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11934Z","LastActivityAt":"2023-02-16T05:25:56.312689Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119995Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1259,"ScoreDef":61296,"RankSup":0,"ScoreSup":0,"RankTotal":1541,"ScoreTotal":61296,"ID":699831366,"Name":"P0L0","NumVillages":0,"Points":0,"Rank":2980,"TribeID":443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831366","BestRank":2980,"BestRankAt":"2023-02-16T05:25:56.312689Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119342Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119341Z","LastActivityAt":"2023-02-16T05:25:49.119342Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119996Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699831524,"Name":"Pan ƚwirusek","NumVillages":1,"Points":26,"Rank":2712,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831524","BestRank":2712,"BestRankAt":"2023-02-16T05:25:56.312689Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119343Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119343Z","LastActivityAt":"2023-02-16T05:25:49.119343Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119997Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699831603,"Name":"Maniek.W","NumVillages":1,"Points":26,"Rank":2713,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831603","BestRank":2713,"BestRankAt":"2023-02-16T05:25:56.31269Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119344Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119344Z","LastActivityAt":"2023-02-16T05:25:49.119344Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119998Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1216,"ScoreAtt":9902,"RankDef":851,"ScoreDef":186821,"RankSup":1216,"ScoreSup":273,"RankTotal":1140,"ScoreTotal":196996,"ID":699831860,"Name":"kawon2","NumVillages":2,"Points":2378,"Rank":1590,"TribeID":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699831860","BestRank":1590,"BestRankAt":"2023-02-16T05:25:56.31269Z","MostPoints":2378,"MostPointsAt":"2023-02-16T05:25:56.31269Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119345Z","LastActivityAt":"2023-02-16T05:25:56.31269Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":482,"ScoreDef":554941,"RankSup":0,"ScoreSup":0,"RankTotal":799,"ScoreTotal":554941,"ID":699832431,"Name":"sznur","NumVillages":1,"Points":351,"Rank":2110,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699832431","BestRank":2110,"BestRankAt":"2023-02-16T05:25:56.312691Z","MostPoints":351,"MostPointsAt":"2023-02-16T05:25:49.119346Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119346Z","LastActivityAt":"2023-02-16T05:25:49.119347Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.119999Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":850,"ScoreAtt":63633,"RankDef":809,"ScoreDef":210034,"RankSup":334,"ScoreSup":441183,"RankTotal":719,"ScoreTotal":714850,"ID":699832463,"Name":"msramfis","NumVillages":5,"Points":20387,"Rank":913,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699832463","BestRank":913,"BestRankAt":"2023-02-16T05:25:56.312691Z","MostPoints":20387,"MostPointsAt":"2023-02-16T05:25:56.312691Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119348Z","LastActivityAt":"2023-02-16T05:25:56.312692Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699832737,"Name":"LOCODEMACONHA","NumVillages":1,"Points":26,"Rank":2714,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699832737","BestRank":2714,"BestRankAt":"2023-02-16T05:25:56.312692Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119349Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119349Z","LastActivityAt":"2023-02-16T05:25:49.119349Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":760,"ScoreAtt":95308,"RankDef":145,"ScoreDef":2654911,"RankSup":974,"ScoreSup":6133,"RankTotal":316,"ScoreTotal":2756352,"ID":699833171,"Name":"Roffi","NumVillages":21,"Points":123992,"Rank":498,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699833171","BestRank":498,"BestRankAt":"2023-02-16T05:25:56.312692Z","MostPoints":123992,"MostPointsAt":"2023-02-16T05:25:56.312692Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.11935Z","LastActivityAt":"2023-02-16T05:25:56.312693Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":241,"ScoreAtt":1181874,"RankDef":353,"ScoreDef":876737,"RankSup":414,"ScoreSup":291261,"RankTotal":364,"ScoreTotal":2349872,"ID":699834004,"Name":"Zero-","NumVillages":51,"Points":434677,"Rank":291,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699834004","BestRank":291,"BestRankAt":"2023-02-16T05:25:56.312693Z","MostPoints":434677,"MostPointsAt":"2023-02-16T05:25:56.312693Z","MostVillages":51,"MostVillagesAt":"2023-02-16T05:25:56.312693Z","LastActivityAt":"2023-02-16T05:25:56.312693Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1546,"ScoreAtt":1814,"RankDef":2143,"ScoreDef":1828,"RankSup":0,"ScoreSup":0,"RankTotal":2168,"ScoreTotal":3642,"ID":699835178,"Name":"CrazyJack","NumVillages":1,"Points":191,"Rank":2298,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699835178","BestRank":2298,"BestRankAt":"2023-02-16T05:25:56.312694Z","MostPoints":191,"MostPointsAt":"2023-02-16T05:25:56.312694Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119352Z","LastActivityAt":"2023-02-16T05:25:56.312694Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699836388,"Name":"RED87","NumVillages":1,"Points":97,"Rank":2491,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699836388","BestRank":2491,"BestRankAt":"2023-02-16T05:25:49.119353Z","MostPoints":97,"MostPointsAt":"2023-02-16T05:25:49.119354Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119354Z","LastActivityAt":"2023-02-16T05:25:49.119354Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120004Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":947,"ScoreAtt":40331,"RankDef":1753,"ScoreDef":14911,"RankSup":1385,"ScoreSup":2,"RankTotal":1577,"ScoreTotal":55244,"ID":699837483,"Name":"MarcelloGawron","NumVillages":6,"Points":22924,"Rank":886,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699837483","BestRank":883,"BestRankAt":"2023-02-16T05:25:49.119355Z","MostPoints":22924,"MostPointsAt":"2023-02-16T05:25:56.312694Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119355Z","LastActivityAt":"2023-02-16T05:25:56.312694Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":873,"ScoreAtt":56935,"RankDef":285,"ScoreDef":1265509,"RankSup":420,"ScoreSup":279345,"RankTotal":476,"ScoreTotal":1601789,"ID":699837826,"Name":"pierer123","NumVillages":16,"Points":68055,"Rank":622,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699837826","BestRank":622,"BestRankAt":"2023-02-16T05:25:49.119356Z","MostPoints":68055,"MostPointsAt":"2023-02-16T05:25:49.119356Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.119356Z","LastActivityAt":"2023-02-16T05:25:49.119357Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2354,"ScoreDef":40,"RankSup":0,"ScoreSup":0,"RankTotal":2453,"ScoreTotal":40,"ID":699840189,"Name":"piro78","NumVillages":1,"Points":3589,"Rank":1441,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699840189","BestRank":1441,"BestRankAt":"2023-02-16T05:25:56.312695Z","MostPoints":3589,"MostPointsAt":"2023-02-16T05:25:56.312695Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119357Z","LastActivityAt":"2023-02-16T05:25:56.312695Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699841905,"Name":"Donek94","NumVillages":1,"Points":3464,"Rank":1458,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699841905","BestRank":1458,"BestRankAt":"2023-02-16T05:25:56.312696Z","MostPoints":3464,"MostPointsAt":"2023-02-16T05:25:49.119359Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119359Z","LastActivityAt":"2023-02-16T05:25:49.119359Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1314,"ScoreDef":55536,"RankSup":0,"ScoreSup":0,"RankTotal":1574,"ScoreTotal":55536,"ID":699841959,"Name":"Koticzak","NumVillages":1,"Points":3627,"Rank":1435,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699841959","BestRank":1435,"BestRankAt":"2023-02-16T05:25:56.312696Z","MostPoints":3627,"MostPointsAt":"2023-02-16T05:25:49.11936Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11936Z","LastActivityAt":"2023-02-16T05:25:49.11936Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699842008,"Name":"Harald Piękny","NumVillages":1,"Points":26,"Rank":2715,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699842008","BestRank":2715,"BestRankAt":"2023-02-16T05:25:56.312697Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.312697Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312697Z","LastActivityAt":"2023-02-16T05:25:56.312697Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313253Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699842078,"Name":"VencedorPL","NumVillages":1,"Points":26,"Rank":2716,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699842078","BestRank":2716,"BestRankAt":"2023-02-16T05:25:56.312697Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119361Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119361Z","LastActivityAt":"2023-02-16T05:25:49.119362Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1673,"ScoreDef":20066,"RankSup":0,"ScoreSup":0,"RankTotal":1868,"ScoreTotal":20066,"ID":699842853,"Name":"kriz73","NumVillages":2,"Points":2562,"Rank":1566,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699842853","BestRank":1566,"BestRankAt":"2023-02-16T05:25:56.312698Z","MostPoints":2562,"MostPointsAt":"2023-02-16T05:25:49.119363Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119362Z","LastActivityAt":"2023-02-16T05:25:49.119363Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1662,"ScoreAtt":727,"RankDef":2333,"ScoreDef":74,"RankSup":0,"ScoreSup":0,"RankTotal":2299,"ScoreTotal":801,"ID":699843389,"Name":"Foks","NumVillages":1,"Points":499,"Rank":2013,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699843389","BestRank":2013,"BestRankAt":"2023-02-16T05:25:56.312698Z","MostPoints":499,"MostPointsAt":"2023-02-16T05:25:56.312698Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119364Z","LastActivityAt":"2023-02-16T05:25:56.312698Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12001Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1151,"ScoreAtt":13382,"RankDef":636,"ScoreDef":340334,"RankSup":806,"ScoreSup":23652,"RankTotal":937,"ScoreTotal":377368,"ID":699843417,"Name":"hello11","NumVillages":0,"Points":0,"Rank":2981,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699843417","BestRank":2981,"BestRankAt":"2023-02-16T05:25:56.312699Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119365Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119365Z","LastActivityAt":"2023-02-16T05:25:49.119365Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2479,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2549,"ScoreTotal":2,"ID":699843936,"Name":"Marecki2222","NumVillages":1,"Points":50,"Rank":2553,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699843936","BestRank":2553,"BestRankAt":"2023-02-16T05:25:56.312699Z","MostPoints":50,"MostPointsAt":"2023-02-16T05:25:49.119366Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119366Z","LastActivityAt":"2023-02-16T05:25:49.119366Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1700,"ScoreAtt":545,"RankDef":1827,"ScoreDef":10752,"RankSup":0,"ScoreSup":0,"RankTotal":1976,"ScoreTotal":11297,"ID":699844314,"Name":"Szarik1","NumVillages":7,"Points":16717,"Rank":974,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844314","BestRank":974,"BestRankAt":"2023-02-16T05:25:56.3127Z","MostPoints":16717,"MostPointsAt":"2023-02-16T05:25:56.3127Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119367Z","LastActivityAt":"2023-02-16T05:25:56.3127Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1277,"ScoreAtt":6932,"RankDef":1073,"ScoreDef":100826,"RankSup":761,"ScoreSup":33121,"RankTotal":1267,"ScoreTotal":140879,"ID":699844594,"Name":"MocarnyCzosnek","NumVillages":0,"Points":0,"Rank":2982,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844594","BestRank":2982,"BestRankAt":"2023-02-16T05:25:56.3127Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119369Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119369Z","LastActivityAt":"2023-02-16T05:25:49.119369Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":742,"ScoreAtt":105033,"RankDef":320,"ScoreDef":1059806,"RankSup":879,"ScoreSup":13822,"RankTotal":573,"ScoreTotal":1178661,"ID":699844727,"Name":"Marcinho10","NumVillages":1,"Points":2177,"Rank":1622,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844727","BestRank":1622,"BestRankAt":"2023-02-16T05:25:56.312701Z","MostPoints":2177,"MostPointsAt":"2023-02-16T05:25:56.312701Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11937Z","LastActivityAt":"2023-02-16T05:25:56.312701Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2419,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2513,"ScoreTotal":10,"ID":699844880,"Name":"kilolo","NumVillages":1,"Points":321,"Rank":2135,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699844880","BestRank":2135,"BestRankAt":"2023-02-16T05:25:56.312701Z","MostPoints":321,"MostPointsAt":"2023-02-16T05:25:49.119371Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119371Z","LastActivityAt":"2023-02-16T05:25:49.119371Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699845179,"Name":"Alanoi","NumVillages":1,"Points":204,"Rank":2266,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699845179","BestRank":2266,"BestRankAt":"2023-02-16T05:25:56.312702Z","MostPoints":204,"MostPointsAt":"2023-02-16T05:25:56.312702Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312702Z","LastActivityAt":"2023-02-16T05:25:56.312702Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313255Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1071,"ScoreAtt":20375,"RankDef":1313,"ScoreDef":55700,"RankSup":1050,"ScoreSup":2804,"RankTotal":1464,"ScoreTotal":78879,"ID":699845400,"Name":"czarny1975","NumVillages":5,"Points":31338,"Rank":803,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699845400","BestRank":801,"BestRankAt":"2023-02-16T05:25:49.119372Z","MostPoints":31338,"MostPointsAt":"2023-02-16T05:25:49.119372Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119372Z","LastActivityAt":"2023-02-16T05:25:49.119373Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699845927,"Name":"PROboszczz","NumVillages":1,"Points":74,"Rank":2496,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699845927","BestRank":2496,"BestRankAt":"2023-02-16T05:25:56.312703Z","MostPoints":74,"MostPointsAt":"2023-02-16T05:25:49.119374Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119373Z","LastActivityAt":"2023-02-16T05:25:49.119374Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":368,"ScoreAtt":655024,"RankDef":154,"ScoreDef":2516489,"RankSup":654,"ScoreSup":68694,"RankTotal":273,"ScoreTotal":3240207,"ID":699846892,"Name":"Kupsztajl","NumVillages":51,"Points":323356,"Rank":346,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699846892","BestRank":288,"BestRankAt":"2023-02-16T05:25:49.119375Z","MostPoints":435755,"MostPointsAt":"2023-02-16T05:25:49.119375Z","MostVillages":63,"MostVillagesAt":"2023-02-16T05:25:49.119375Z","LastActivityAt":"2023-02-16T05:25:56.312703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120018Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699847354,"Name":"jaro222","NumVillages":1,"Points":286,"Rank":2172,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699847354","BestRank":2172,"BestRankAt":"2023-02-16T05:25:56.312704Z","MostPoints":286,"MostPointsAt":"2023-02-16T05:25:56.312704Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119376Z","LastActivityAt":"2023-02-16T05:25:56.312704Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120019Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":438,"ScoreAtt":471992,"RankDef":31,"ScoreDef":11031547,"RankSup":248,"ScoreSup":714338,"RankTotal":64,"ScoreTotal":12217877,"ID":699849210,"Name":"Alicei","NumVillages":58,"Points":381689,"Rank":307,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699849210","BestRank":307,"BestRankAt":"2023-02-16T05:25:56.312704Z","MostPoints":381689,"MostPointsAt":"2023-02-16T05:25:56.312704Z","MostVillages":58,"MostVillagesAt":"2023-02-16T05:25:49.119377Z","LastActivityAt":"2023-02-16T05:25:56.312705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120019Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":396,"ScoreAtt":593804,"RankDef":411,"ScoreDef":718390,"RankSup":305,"ScoreSup":518013,"RankTotal":434,"ScoreTotal":1830207,"ID":699850967,"Name":"GeraltV47","NumVillages":1,"Points":384,"Rank":2081,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699850967","BestRank":2081,"BestRankAt":"2023-02-16T05:25:56.312705Z","MostPoints":384,"MostPointsAt":"2023-02-16T05:25:56.312705Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119378Z","LastActivityAt":"2023-02-16T05:25:56.312705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12002Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699851001,"Name":"drrakox","NumVillages":1,"Points":26,"Rank":2717,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851001","BestRank":2717,"BestRankAt":"2023-02-16T05:25:56.312705Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11938Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11938Z","LastActivityAt":"2023-02-16T05:25:49.11938Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120021Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":501,"ScoreAtt":353653,"RankDef":1542,"ScoreDef":29772,"RankSup":940,"ScoreSup":8257,"RankTotal":925,"ScoreTotal":391682,"ID":699851345,"Name":"Krolik14","NumVillages":26,"Points":237463,"Rank":388,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851345","BestRank":388,"BestRankAt":"2023-02-16T05:25:56.312706Z","MostPoints":237463,"MostPointsAt":"2023-02-16T05:25:56.312706Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:49.119381Z","LastActivityAt":"2023-02-16T05:25:56.312706Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":247,"ScoreAtt":1143893,"RankDef":1257,"ScoreDef":61636,"RankSup":460,"ScoreSup":214212,"RankTotal":513,"ScoreTotal":1419741,"ID":699851426,"Name":"Sir ƚmigi","NumVillages":0,"Points":0,"Rank":2983,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851426","BestRank":2983,"BestRankAt":"2023-02-16T05:25:56.312706Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119382Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119382Z","LastActivityAt":"2023-02-16T05:25:49.119383Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120022Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":32,"ScoreAtt":6374797,"RankDef":691,"ScoreDef":283161,"RankSup":49,"ScoreSup":3411085,"RankTotal":78,"ScoreTotal":10069043,"ID":699851427,"Name":"ScigusseK","NumVillages":105,"Points":1055523,"Rank":134,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699851427","BestRank":132,"BestRankAt":"2023-02-16T05:25:49.119383Z","MostPoints":1055523,"MostPointsAt":"2023-02-16T05:25:56.312707Z","MostVillages":105,"MostVillagesAt":"2023-02-16T05:25:49.119383Z","LastActivityAt":"2023-02-16T05:25:56.312707Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120023Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1195,"ScoreDef":73479,"RankSup":1282,"ScoreSup":42,"RankTotal":1476,"ScoreTotal":73521,"ID":699852080,"Name":"Lord Nemo","NumVillages":3,"Points":7101,"Rank":1203,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699852080","BestRank":1203,"BestRankAt":"2023-02-16T05:25:56.312707Z","MostPoints":7101,"MostPointsAt":"2023-02-16T05:25:56.312708Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119385Z","LastActivityAt":"2023-02-16T05:25:56.312708Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120024Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699852606,"Name":"jacek1891","NumVillages":1,"Points":72,"Rank":2499,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699852606","BestRank":2499,"BestRankAt":"2023-02-16T05:25:56.312708Z","MostPoints":72,"MostPointsAt":"2023-02-16T05:25:49.119386Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119386Z","LastActivityAt":"2023-02-16T05:25:49.119386Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120025Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699853286,"Name":"beast01","NumVillages":1,"Points":26,"Rank":2748,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699853286","BestRank":2748,"BestRankAt":"2023-02-16T05:25:49.119387Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119387Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119387Z","LastActivityAt":"2023-02-16T05:25:49.119387Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120026Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1719,"ScoreAtt":403,"RankDef":1825,"ScoreDef":10881,"RankSup":0,"ScoreSup":0,"RankTotal":1977,"ScoreTotal":11284,"ID":699853308,"Name":"Hubs1","NumVillages":1,"Points":3290,"Rank":1481,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699853308","BestRank":1481,"BestRankAt":"2023-02-16T05:25:56.312709Z","MostPoints":3290,"MostPointsAt":"2023-02-16T05:25:49.119389Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119388Z","LastActivityAt":"2023-02-16T05:25:49.119389Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120027Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699853526,"Name":"Morbital","NumVillages":1,"Points":651,"Rank":1949,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699853526","BestRank":1949,"BestRankAt":"2023-02-16T05:25:56.312709Z","MostPoints":651,"MostPointsAt":"2023-02-16T05:25:56.312709Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11939Z","LastActivityAt":"2023-02-16T05:25:56.312709Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1786,"ScoreAtt":223,"RankDef":1001,"ScoreDef":125197,"RankSup":1342,"ScoreSup":7,"RankTotal":1310,"ScoreTotal":125427,"ID":699854312,"Name":"Yebiewdenko","NumVillages":4,"Points":6221,"Rank":1252,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699854312","BestRank":1252,"BestRankAt":"2023-02-16T05:25:56.31271Z","MostPoints":6221,"MostPointsAt":"2023-02-16T05:25:49.119391Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119391Z","LastActivityAt":"2023-02-16T05:25:49.119391Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12003Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":243,"ScoreAtt":1170611,"RankDef":982,"ScoreDef":131263,"RankSup":134,"ScoreSup":1614664,"RankTotal":299,"ScoreTotal":2916538,"ID":699854484,"Name":"DonSzwagreone","NumVillages":121,"Points":976489,"Rank":152,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699854484","BestRank":152,"BestRankAt":"2023-02-16T05:25:56.31271Z","MostPoints":976489,"MostPointsAt":"2023-02-16T05:25:56.31271Z","MostVillages":121,"MostVillagesAt":"2023-02-16T05:25:56.31271Z","LastActivityAt":"2023-02-16T05:25:56.31271Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120031Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1534,"ScoreAtt":1940,"RankDef":2001,"ScoreDef":4548,"RankSup":1368,"ScoreSup":4,"RankTotal":2071,"ScoreTotal":6492,"ID":699854830,"Name":"b5artek","NumVillages":7,"Points":37451,"Rank":758,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699854830","BestRank":758,"BestRankAt":"2023-02-16T05:25:56.312711Z","MostPoints":37451,"MostPointsAt":"2023-02-16T05:25:56.312711Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119393Z","LastActivityAt":"2023-02-16T05:25:56.312711Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1951,"ScoreAtt":13,"RankDef":2080,"ScoreDef":2854,"RankSup":0,"ScoreSup":0,"RankTotal":2194,"ScoreTotal":2867,"ID":699855277,"Name":"bastekx","NumVillages":1,"Points":26,"Rank":2718,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699855277","BestRank":2718,"BestRankAt":"2023-02-16T05:25:56.312711Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119395Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119395Z","LastActivityAt":"2023-02-16T05:25:49.119395Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120032Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699855469,"Name":"Anko Itosu","NumVillages":1,"Points":26,"Rank":2719,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699855469","BestRank":2719,"BestRankAt":"2023-02-16T05:25:56.312712Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119396Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119396Z","LastActivityAt":"2023-02-16T05:25:49.119396Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120033Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2134,"ScoreDef":1902,"RankSup":0,"ScoreSup":0,"RankTotal":2235,"ScoreTotal":1902,"ID":699855647,"Name":"Michal CR7","NumVillages":1,"Points":2842,"Rank":1537,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699855647","BestRank":1537,"BestRankAt":"2023-02-16T05:25:56.312712Z","MostPoints":2842,"MostPointsAt":"2023-02-16T05:25:49.119397Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119397Z","LastActivityAt":"2023-02-16T05:25:49.119397Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120034Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1967,"ScoreAtt":9,"RankDef":386,"ScoreDef":789342,"RankSup":0,"ScoreSup":0,"RankTotal":690,"ScoreTotal":789351,"ID":699856586,"Name":"Czuowieku","NumVillages":0,"Points":0,"Rank":3018,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699856586","BestRank":3018,"BestRankAt":"2023-02-16T05:25:49.119398Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119398Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119398Z","LastActivityAt":"2023-02-16T05:25:49.119399Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120035Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1296,"ScoreAtt":6538,"RankDef":963,"ScoreDef":141720,"RankSup":0,"ScoreSup":0,"RankTotal":1250,"ScoreTotal":148258,"ID":699856830,"Name":"Chudy19","NumVillages":1,"Points":366,"Rank":2101,"TribeID":176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699856830","BestRank":2101,"BestRankAt":"2023-02-16T05:25:56.312713Z","MostPoints":366,"MostPointsAt":"2023-02-16T05:25:56.312713Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119399Z","LastActivityAt":"2023-02-16T05:25:56.312713Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120035Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":16,"ScoreAtt":10198813,"RankDef":208,"ScoreDef":1830196,"RankSup":85,"ScoreSup":2453271,"RankTotal":55,"ScoreTotal":14482280,"ID":699856962,"Name":"Suppx","NumVillages":251,"Points":2256455,"Rank":39,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699856962","BestRank":39,"BestRankAt":"2023-02-16T05:25:49.1194Z","MostPoints":2256455,"MostPointsAt":"2023-02-16T05:25:56.312713Z","MostVillages":251,"MostVillagesAt":"2023-02-16T05:25:56.312713Z","LastActivityAt":"2023-02-16T05:25:56.312713Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120036Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1279,"ScoreAtt":6865,"RankDef":402,"ScoreDef":746571,"RankSup":972,"ScoreSup":6193,"RankTotal":696,"ScoreTotal":759629,"ID":699857387,"Name":"Luk160","NumVillages":13,"Points":102117,"Rank":533,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699857387","BestRank":533,"BestRankAt":"2023-02-16T05:25:56.312714Z","MostPoints":102117,"MostPointsAt":"2023-02-16T05:25:56.312714Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.119402Z","LastActivityAt":"2023-02-16T05:25:56.312714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1639,"ScoreAtt":844,"RankDef":1024,"ScoreDef":119555,"RankSup":1219,"ScoreSup":262,"RankTotal":1321,"ScoreTotal":120661,"ID":699858313,"Name":"matstr","NumVillages":4,"Points":12978,"Rank":1031,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699858313","BestRank":1031,"BestRankAt":"2023-02-16T05:25:56.312714Z","MostPoints":12978,"MostPointsAt":"2023-02-16T05:25:56.312714Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119403Z","LastActivityAt":"2023-02-16T05:25:56.312715Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120037Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699858423,"Name":"zniszczywacz","NumVillages":1,"Points":187,"Rank":2305,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699858423","BestRank":2305,"BestRankAt":"2023-02-16T05:25:56.312715Z","MostPoints":187,"MostPointsAt":"2023-02-16T05:25:49.119405Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119404Z","LastActivityAt":"2023-02-16T05:25:49.119405Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120039Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699858532,"Name":"exim","NumVillages":1,"Points":602,"Rank":1969,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699858532","BestRank":1969,"BestRankAt":"2023-02-16T05:25:56.312715Z","MostPoints":602,"MostPointsAt":"2023-02-16T05:25:56.312716Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119406Z","LastActivityAt":"2023-02-16T05:25:56.312716Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12004Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":473,"ScoreAtt":409251,"RankDef":254,"ScoreDef":1473883,"RankSup":559,"ScoreSup":126920,"RankTotal":408,"ScoreTotal":2010054,"ID":699859013,"Name":"PECUS","NumVillages":5,"Points":32080,"Rank":794,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699859013","BestRank":794,"BestRankAt":"2023-02-16T05:25:49.119407Z","MostPoints":32080,"MostPointsAt":"2023-02-16T05:25:56.312716Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119407Z","LastActivityAt":"2023-02-16T05:25:56.312716Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1784,"ScoreAtt":225,"RankDef":0,"ScoreDef":0,"RankSup":1323,"ScoreSup":13,"RankTotal":2374,"ScoreTotal":238,"ID":699860418,"Name":"ociek123","NumVillages":1,"Points":3037,"Rank":1509,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699860418","BestRank":1509,"BestRankAt":"2023-02-16T05:25:56.312716Z","MostPoints":3037,"MostPointsAt":"2023-02-16T05:25:56.312717Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119408Z","LastActivityAt":"2023-02-16T05:25:56.312717Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120041Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1888,"ScoreDef":8074,"RankSup":0,"ScoreSup":0,"RankTotal":2030,"ScoreTotal":8074,"ID":699860651,"Name":"lord MichaƂ 1","NumVillages":1,"Points":68,"Rank":2509,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699860651","BestRank":2101,"BestRankAt":"2023-02-16T05:25:49.119409Z","MostPoints":381,"MostPointsAt":"2023-02-16T05:25:49.11941Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119409Z","LastActivityAt":"2023-02-16T05:25:49.11941Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120042Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":398,"ScoreAtt":593507,"RankDef":525,"ScoreDef":486475,"RankSup":1275,"ScoreSup":46,"RankTotal":597,"ScoreTotal":1080028,"ID":699861004,"Name":"PanTatami","NumVillages":10,"Points":90496,"Rank":561,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699861004","BestRank":559,"BestRankAt":"2023-02-16T05:25:49.11941Z","MostPoints":90496,"MostPointsAt":"2023-02-16T05:25:49.119411Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.119411Z","LastActivityAt":"2023-02-16T05:25:49.119411Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120043Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1863,"ScoreAtt":88,"RankDef":2268,"ScoreDef":368,"RankSup":0,"ScoreSup":0,"RankTotal":2340,"ScoreTotal":456,"ID":699862278,"Name":"wƂadcamarceli","NumVillages":1,"Points":2443,"Rank":1580,"TribeID":1209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699862278","BestRank":1580,"BestRankAt":"2023-02-16T05:25:56.312718Z","MostPoints":2443,"MostPointsAt":"2023-02-16T05:25:49.119412Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119412Z","LastActivityAt":"2023-02-16T05:25:49.119412Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1494,"ScoreAtt":2390,"RankDef":714,"ScoreDef":266099,"RankSup":0,"ScoreSup":0,"RankTotal":1036,"ScoreTotal":268489,"ID":699863708,"Name":"janusz6161","NumVillages":5,"Points":20932,"Rank":904,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699863708","BestRank":904,"BestRankAt":"2023-02-16T05:25:49.119413Z","MostPoints":20932,"MostPointsAt":"2023-02-16T05:25:56.312718Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119413Z","LastActivityAt":"2023-02-16T05:25:56.312719Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120044Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":731,"ScoreAtt":110100,"RankDef":1146,"ScoreDef":85439,"RankSup":365,"ScoreSup":378197,"RankTotal":788,"ScoreTotal":573736,"ID":699864013,"Name":"Arek486","NumVillages":13,"Points":93184,"Rank":551,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699864013","BestRank":551,"BestRankAt":"2023-02-16T05:25:56.312719Z","MostPoints":93184,"MostPointsAt":"2023-02-16T05:25:56.312719Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:56.312719Z","LastActivityAt":"2023-02-16T05:25:56.312719Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120046Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699864609,"Name":"champion271","NumVillages":1,"Points":81,"Rank":2481,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699864609","BestRank":2481,"BestRankAt":"2023-02-16T05:25:56.312719Z","MostPoints":81,"MostPointsAt":"2023-02-16T05:25:49.119416Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119416Z","LastActivityAt":"2023-02-16T05:25:49.119416Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120047Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699865603,"Name":"damianslipiec","NumVillages":1,"Points":26,"Rank":2720,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699865603","BestRank":2720,"BestRankAt":"2023-02-16T05:25:56.31272Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119417Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119417Z","LastActivityAt":"2023-02-16T05:25:49.119417Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120047Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699865716,"Name":"Piorun000","NumVillages":1,"Points":333,"Rank":2125,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699865716","BestRank":2125,"BestRankAt":"2023-02-16T05:25:56.31272Z","MostPoints":333,"MostPointsAt":"2023-02-16T05:25:49.119418Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119418Z","LastActivityAt":"2023-02-16T05:25:49.119418Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120048Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":659,"ScoreAtt":154484,"RankDef":216,"ScoreDef":1778854,"RankSup":437,"ScoreSup":246398,"RankTotal":386,"ScoreTotal":2179736,"ID":699866225,"Name":"Pietrasfryzjer","NumVillages":1,"Points":639,"Rank":1954,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699866225","BestRank":1954,"BestRankAt":"2023-02-16T05:25:56.312721Z","MostPoints":639,"MostPointsAt":"2023-02-16T05:25:56.312721Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119419Z","LastActivityAt":"2023-02-16T05:25:56.312721Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120049Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2269,"ScoreDef":353,"RankSup":0,"ScoreSup":0,"RankTotal":2351,"ScoreTotal":353,"ID":699866271,"Name":"Driata","NumVillages":1,"Points":812,"Rank":1897,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699866271","BestRank":1897,"BestRankAt":"2023-02-16T05:25:56.312721Z","MostPoints":812,"MostPointsAt":"2023-02-16T05:25:56.312722Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11942Z","LastActivityAt":"2023-02-16T05:25:56.312722Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":443,"ScoreDef":636124,"RankSup":458,"ScoreSup":216657,"RankTotal":667,"ScoreTotal":852781,"ID":699866510,"Name":"EvilTwin","NumVillages":1,"Points":55,"Rank":2534,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699866510","BestRank":2534,"BestRankAt":"2023-02-16T05:25:56.312722Z","MostPoints":55,"MostPointsAt":"2023-02-16T05:25:49.119422Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119422Z","LastActivityAt":"2023-02-16T05:25:49.119422Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12005Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699867390,"Name":"tomek-gt","NumVillages":1,"Points":435,"Rank":2050,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699867390","BestRank":2050,"BestRankAt":"2023-02-16T05:25:56.312722Z","MostPoints":435,"MostPointsAt":"2023-02-16T05:25:49.119423Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119423Z","LastActivityAt":"2023-02-16T05:25:49.119423Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120051Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":601,"ScoreAtt":213531,"RankDef":1130,"ScoreDef":88006,"RankSup":764,"ScoreSup":33010,"RankTotal":971,"ScoreTotal":334547,"ID":699867602,"Name":"wlodas62","NumVillages":0,"Points":0,"Rank":2984,"TribeID":1448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699867602","BestRank":2984,"BestRankAt":"2023-02-16T05:25:56.312723Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119424Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119424Z","LastActivityAt":"2023-02-16T05:25:49.119425Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120052Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2165,"ScoreDef":1480,"RankSup":0,"ScoreSup":0,"RankTotal":2261,"ScoreTotal":1480,"ID":699867743,"Name":"Skonekƚwir","NumVillages":1,"Points":1014,"Rank":1845,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699867743","BestRank":1845,"BestRankAt":"2023-02-16T05:25:56.312723Z","MostPoints":1014,"MostPointsAt":"2023-02-16T05:25:49.119426Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119425Z","LastActivityAt":"2023-02-16T05:25:49.119426Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":99,"ScoreAtt":3213372,"RankDef":44,"ScoreDef":7249917,"RankSup":3,"ScoreSup":13527748,"RankTotal":20,"ScoreTotal":23991037,"ID":699868002,"Name":"tw1ster2","NumVillages":12,"Points":79088,"Rank":587,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868002","BestRank":544,"BestRankAt":"2023-02-16T05:25:49.119426Z","MostPoints":98635,"MostPointsAt":"2023-02-16T05:25:49.119427Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.119427Z","LastActivityAt":"2023-02-16T05:25:56.312724Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120053Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2340,"ScoreDef":64,"RankSup":0,"ScoreSup":0,"RankTotal":2434,"ScoreTotal":64,"ID":699868399,"Name":"Savek","NumVillages":1,"Points":26,"Rank":2721,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868399","BestRank":2721,"BestRankAt":"2023-02-16T05:25:56.312724Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119428Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119428Z","LastActivityAt":"2023-02-16T05:25:49.119428Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120055Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699868448,"Name":"OgnistaOwca","NumVillages":1,"Points":54,"Rank":2537,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868448","BestRank":2537,"BestRankAt":"2023-02-16T05:25:56.312725Z","MostPoints":54,"MostPointsAt":"2023-02-16T05:25:49.119429Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119429Z","LastActivityAt":"2023-02-16T05:25:49.119429Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1282,"ScoreAtt":6763,"RankDef":1416,"ScoreDef":41047,"RankSup":0,"ScoreSup":0,"RankTotal":1623,"ScoreTotal":47810,"ID":699868739,"Name":"TOLCIA1","NumVillages":6,"Points":18120,"Rank":949,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699868739","BestRank":949,"BestRankAt":"2023-02-16T05:25:56.312725Z","MostPoints":18120,"MostPointsAt":"2023-02-16T05:25:56.312725Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.11943Z","LastActivityAt":"2023-02-16T05:25:56.312726Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120056Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":65,"ScoreAtt":4387188,"RankDef":133,"ScoreDef":2945540,"RankSup":302,"ScoreSup":527430,"RankTotal":105,"ScoreTotal":7860158,"ID":699869682,"Name":"wancki i gustlikk","NumVillages":0,"Points":0,"Rank":2985,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699869682","BestRank":830,"BestRankAt":"2023-02-16T05:25:49.119431Z","MostPoints":27841,"MostPointsAt":"2023-02-16T05:25:49.119432Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119432Z","LastActivityAt":"2023-02-16T05:25:49.119432Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120057Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1317,"ScoreAtt":5894,"RankDef":351,"ScoreDef":879222,"RankSup":0,"ScoreSup":0,"RankTotal":660,"ScoreTotal":885116,"ID":699870198,"Name":"JabaDu","NumVillages":0,"Points":0,"Rank":2986,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699870198","BestRank":2986,"BestRankAt":"2023-02-16T05:25:56.312726Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119433Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119433Z","LastActivityAt":"2023-02-16T05:25:49.119433Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120058Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699870267,"Name":"aitseb","NumVillages":2,"Points":3814,"Rank":1416,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699870267","BestRank":1416,"BestRankAt":"2023-02-16T05:25:56.312727Z","MostPoints":3814,"MostPointsAt":"2023-02-16T05:25:56.312727Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:56.312727Z","LastActivityAt":"2023-02-16T05:25:56.312727Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":758,"ScoreAtt":95802,"RankDef":480,"ScoreDef":556010,"RankSup":844,"ScoreSup":16831,"RankTotal":743,"ScoreTotal":668643,"ID":699870923,"Name":"LodowyPtyƛ","NumVillages":1,"Points":26,"Rank":2722,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699870923","BestRank":2722,"BestRankAt":"2023-02-16T05:25:56.312727Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119435Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119435Z","LastActivityAt":"2023-02-16T05:25:49.119436Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120059Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1600,"ScoreAtt":1236,"RankDef":1586,"ScoreDef":26186,"RankSup":0,"ScoreSup":0,"RankTotal":1792,"ScoreTotal":27422,"ID":699872032,"Name":"Ainsley","NumVillages":6,"Points":46980,"Rank":706,"TribeID":1535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699872032","BestRank":706,"BestRankAt":"2023-02-16T05:25:49.119436Z","MostPoints":46980,"MostPointsAt":"2023-02-16T05:25:49.119437Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119437Z","LastActivityAt":"2023-02-16T05:25:49.119437Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12006Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1537,"ScoreAtt":1920,"RankDef":2422,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2234,"ScoreTotal":1930,"ID":699872401,"Name":"PanByczek","NumVillages":1,"Points":3559,"Rank":1447,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699872401","BestRank":1447,"BestRankAt":"2023-02-16T05:25:56.312728Z","MostPoints":3559,"MostPointsAt":"2023-02-16T05:25:56.312728Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119438Z","LastActivityAt":"2023-02-16T05:25:56.312729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120061Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1013,"ScoreAtt":27905,"RankDef":741,"ScoreDef":250240,"RankSup":1058,"ScoreSup":2688,"RankTotal":1024,"ScoreTotal":280833,"ID":699872616,"Name":"KrĂłl Jaƛ","NumVillages":5,"Points":29848,"Rank":820,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699872616","BestRank":818,"BestRankAt":"2023-02-16T05:25:49.119439Z","MostPoints":29848,"MostPointsAt":"2023-02-16T05:25:56.312729Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119439Z","LastActivityAt":"2023-02-16T05:25:56.312729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120061Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1937,"ScoreDef":6401,"RankSup":1377,"ScoreSup":3,"RankTotal":2075,"ScoreTotal":6404,"ID":699873141,"Name":"mayald","NumVillages":1,"Points":127,"Rank":2409,"TribeID":597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699873141","BestRank":2409,"BestRankAt":"2023-02-16T05:25:56.312729Z","MostPoints":127,"MostPointsAt":"2023-02-16T05:25:49.11944Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11944Z","LastActivityAt":"2023-02-16T05:25:49.119441Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120063Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699875086,"Name":"Impro","NumVillages":1,"Points":26,"Rank":2723,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875086","BestRank":2723,"BestRankAt":"2023-02-16T05:25:56.31273Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119442Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119441Z","LastActivityAt":"2023-02-16T05:25:49.119442Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120066Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1748,"ScoreAtt":301,"RankDef":690,"ScoreDef":283357,"RankSup":1107,"ScoreSup":1620,"RankTotal":1019,"ScoreTotal":285278,"ID":699875132,"Name":"jarekamyk","NumVillages":1,"Points":3602,"Rank":1438,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875132","BestRank":1438,"BestRankAt":"2023-02-16T05:25:56.31273Z","MostPoints":3602,"MostPointsAt":"2023-02-16T05:25:56.312731Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119443Z","LastActivityAt":"2023-02-16T05:25:56.312731Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":815,"ScoreAtt":73695,"RankDef":294,"ScoreDef":1217792,"RankSup":682,"ScoreSup":56566,"RankTotal":530,"ScoreTotal":1348053,"ID":699875213,"Name":"Sir atylla","NumVillages":11,"Points":26592,"Rank":847,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875213","BestRank":846,"BestRankAt":"2023-02-16T05:25:49.119444Z","MostPoints":26592,"MostPointsAt":"2023-02-16T05:25:56.312731Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.119444Z","LastActivityAt":"2023-02-16T05:25:56.312731Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120067Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1935,"ScoreDef":6425,"RankSup":0,"ScoreSup":0,"RankTotal":2074,"ScoreTotal":6425,"ID":699875650,"Name":"CzambaƁamba","NumVillages":1,"Points":559,"Rank":1988,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699875650","BestRank":1988,"BestRankAt":"2023-02-16T05:25:56.312731Z","MostPoints":559,"MostPointsAt":"2023-02-16T05:25:49.119445Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119445Z","LastActivityAt":"2023-02-16T05:25:49.119446Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120068Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":597,"ScoreAtt":216628,"RankDef":855,"ScoreDef":186055,"RankSup":931,"ScoreSup":8872,"RankTotal":904,"ScoreTotal":411555,"ID":699876345,"Name":"AG2018","NumVillages":21,"Points":184011,"Rank":432,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699876345","BestRank":430,"BestRankAt":"2023-02-16T05:25:49.119446Z","MostPoints":184011,"MostPointsAt":"2023-02-16T05:25:56.312732Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.119446Z","LastActivityAt":"2023-02-16T05:25:56.312732Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699876653,"Name":"slawekkrasulak","NumVillages":1,"Points":26,"Rank":2724,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699876653","BestRank":2724,"BestRankAt":"2023-02-16T05:25:56.312732Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119448Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119448Z","LastActivityAt":"2023-02-16T05:25:49.119448Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120069Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1166,"ScoreAtt":12258,"RankDef":1011,"ScoreDef":123770,"RankSup":1075,"ScoreSup":2300,"RankTotal":1276,"ScoreTotal":138328,"ID":699876746,"Name":"Zielony Zielony Zielony","NumVillages":4,"Points":16145,"Rank":982,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699876746","BestRank":982,"BestRankAt":"2023-02-16T05:25:49.119449Z","MostPoints":16145,"MostPointsAt":"2023-02-16T05:25:56.312733Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119449Z","LastActivityAt":"2023-02-16T05:25:56.312733Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12007Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699877413,"Name":"Panda Gomes","NumVillages":1,"Points":329,"Rank":2126,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699877413","BestRank":2126,"BestRankAt":"2023-02-16T05:25:56.312733Z","MostPoints":329,"MostPointsAt":"2023-02-16T05:25:49.11945Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11945Z","LastActivityAt":"2023-02-16T05:25:49.119451Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120071Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":423,"ScoreAtt":508408,"RankDef":1348,"ScoreDef":50643,"RankSup":720,"ScoreSup":42616,"RankTotal":776,"ScoreTotal":601667,"ID":699878150,"Name":"Pan Magneto","NumVillages":34,"Points":210170,"Rank":410,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878150","BestRank":410,"BestRankAt":"2023-02-16T05:25:56.312734Z","MostPoints":210170,"MostPointsAt":"2023-02-16T05:25:56.312734Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:56.312734Z","LastActivityAt":"2023-02-16T05:25:56.312734Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120072Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699878443,"Name":"ChudyMRW","NumVillages":1,"Points":387,"Rank":2080,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878443","BestRank":2080,"BestRankAt":"2023-02-16T05:25:56.312735Z","MostPoints":387,"MostPointsAt":"2023-02-16T05:25:49.119453Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119453Z","LastActivityAt":"2023-02-16T05:25:49.119453Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120072Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":384,"ScoreAtt":613070,"RankDef":557,"ScoreDef":433361,"RankSup":126,"ScoreSup":1722966,"RankTotal":312,"ScoreTotal":2769397,"ID":699878511,"Name":"Lorus22","NumVillages":105,"Points":622368,"Rank":229,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878511","BestRank":229,"BestRankAt":"2023-02-16T05:25:56.312735Z","MostPoints":622368,"MostPointsAt":"2023-02-16T05:25:56.312735Z","MostVillages":105,"MostVillagesAt":"2023-02-16T05:25:49.119454Z","LastActivityAt":"2023-02-16T05:25:56.312735Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120073Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":699878952,"Name":"100dni","NumVillages":1,"Points":26,"Rank":2725,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699878952","BestRank":2725,"BestRankAt":"2023-02-16T05:25:56.312736Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119455Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119455Z","LastActivityAt":"2023-02-16T05:25:49.119455Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120074Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1392,"ScoreAtt":4210,"RankDef":738,"ScoreDef":252299,"RankSup":0,"ScoreSup":0,"RankTotal":1047,"ScoreTotal":256509,"ID":699879113,"Name":"munban","NumVillages":0,"Points":0,"Rank":2987,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699879113","BestRank":2987,"BestRankAt":"2023-02-16T05:25:56.312736Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119457Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119456Z","LastActivityAt":"2023-02-16T05:25:49.119457Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120075Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1375,"ScoreAtt":4572,"RankDef":574,"ScoreDef":406752,"RankSup":525,"ScoreSup":148254,"RankTotal":796,"ScoreTotal":559578,"ID":699879556,"Name":"MDKS","NumVillages":1,"Points":3118,"Rank":1498,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699879556","BestRank":1498,"BestRankAt":"2023-02-16T05:25:56.312737Z","MostPoints":3118,"MostPointsAt":"2023-02-16T05:25:49.119458Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119458Z","LastActivityAt":"2023-02-16T05:25:49.119458Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120076Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":387,"ScoreAtt":606514,"RankDef":622,"ScoreDef":354767,"RankSup":428,"ScoreSup":256527,"RankTotal":559,"ScoreTotal":1217808,"ID":699879927,"Name":"szymi3","NumVillages":0,"Points":0,"Rank":2988,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699879927","BestRank":2988,"BestRankAt":"2023-02-16T05:25:56.312737Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119459Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119459Z","LastActivityAt":"2023-02-16T05:25:49.119459Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120077Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1056,"ScoreDef":105606,"RankSup":967,"ScoreSup":6284,"RankTotal":1348,"ScoreTotal":111890,"ID":699880701,"Name":"Swoboda","NumVillages":1,"Points":889,"Rank":1871,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699880701","BestRank":1871,"BestRankAt":"2023-02-16T05:25:56.312737Z","MostPoints":889,"MostPointsAt":"2023-02-16T05:25:49.11946Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11946Z","LastActivityAt":"2023-02-16T05:25:49.11946Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":37,"ScoreAtt":6066337,"RankDef":810,"ScoreDef":209177,"RankSup":137,"ScoreSup":1583285,"RankTotal":106,"ScoreTotal":7858799,"ID":699883079,"Name":"VN No Door","NumVillages":249,"Points":2211801,"Rank":41,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699883079","BestRank":41,"BestRankAt":"2023-02-16T05:25:49.119461Z","MostPoints":2211801,"MostPointsAt":"2023-02-16T05:25:56.312738Z","MostVillages":249,"MostVillagesAt":"2023-02-16T05:25:56.312738Z","LastActivityAt":"2023-02-16T05:25:56.312738Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120078Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1163,"ScoreAtt":12651,"RankDef":1038,"ScoreDef":112828,"RankSup":0,"ScoreSup":0,"RankTotal":1309,"ScoreTotal":125479,"ID":699883836,"Name":"Soldier2020","NumVillages":3,"Points":9446,"Rank":1104,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699883836","BestRank":1104,"BestRankAt":"2023-02-16T05:25:56.312739Z","MostPoints":9446,"MostPointsAt":"2023-02-16T05:25:56.312739Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119463Z","LastActivityAt":"2023-02-16T05:25:56.312739Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120079Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1807,"ScoreAtt":167,"RankDef":2161,"ScoreDef":1572,"RankSup":1119,"ScoreSup":1409,"RankTotal":2182,"ScoreTotal":3148,"ID":699884788,"Name":"klogan","NumVillages":1,"Points":6261,"Rank":1249,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=699884788","BestRank":1249,"BestRankAt":"2023-02-16T05:25:56.312739Z","MostPoints":6261,"MostPointsAt":"2023-02-16T05:25:49.119464Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119464Z","LastActivityAt":"2023-02-16T05:25:49.119464Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12008Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1952,"ScoreDef":5949,"RankSup":0,"ScoreSup":0,"RankTotal":2087,"ScoreTotal":5949,"ID":848882397,"Name":"Puma79","NumVillages":1,"Points":2147,"Rank":1626,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848882397","BestRank":1626,"BestRankAt":"2023-02-16T05:25:56.31274Z","MostPoints":2147,"MostPointsAt":"2023-02-16T05:25:56.31274Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119465Z","LastActivityAt":"2023-02-16T05:25:56.31274Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848882446,"Name":"Kamilooo97","NumVillages":1,"Points":694,"Rank":1932,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848882446","BestRank":1932,"BestRankAt":"2023-02-16T05:25:56.31274Z","MostPoints":694,"MostPointsAt":"2023-02-16T05:25:49.119466Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119466Z","LastActivityAt":"2023-02-16T05:25:49.119467Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120082Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1372,"ScoreAtt":4618,"RankDef":2387,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2130,"ScoreTotal":4638,"ID":848882577,"Name":"lukaszn93","NumVillages":1,"Points":5942,"Rank":1266,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848882577","BestRank":1266,"BestRankAt":"2023-02-16T05:25:56.312741Z","MostPoints":5942,"MostPointsAt":"2023-02-16T05:25:56.312741Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119467Z","LastActivityAt":"2023-02-16T05:25:56.312741Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120083Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":509,"ScoreAtt":339795,"RankDef":1247,"ScoreDef":63071,"RankSup":518,"ScoreSup":153789,"RankTotal":798,"ScoreTotal":556655,"ID":848883237,"Name":"Flinii","NumVillages":49,"Points":346690,"Rank":333,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883237","BestRank":329,"BestRankAt":"2023-02-16T05:25:49.119468Z","MostPoints":346690,"MostPointsAt":"2023-02-16T05:25:56.312741Z","MostVillages":49,"MostVillagesAt":"2023-02-16T05:25:49.119469Z","LastActivityAt":"2023-02-16T05:25:56.312741Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1558,"ScoreAtt":1691,"RankDef":1715,"ScoreDef":17406,"RankSup":0,"ScoreSup":0,"RankTotal":1876,"ScoreTotal":19097,"ID":848883542,"Name":"Matz32","NumVillages":1,"Points":523,"Rank":1999,"TribeID":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883542","BestRank":1999,"BestRankAt":"2023-02-16T05:25:56.312742Z","MostPoints":523,"MostPointsAt":"2023-02-16T05:25:56.312742Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11947Z","LastActivityAt":"2023-02-16T05:25:56.312742Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120084Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":314,"ScoreAtt":867105,"RankDef":278,"ScoreDef":1318156,"RankSup":293,"ScoreSup":559642,"RankTotal":321,"ScoreTotal":2744903,"ID":848883684,"Name":"Bele7h","NumVillages":47,"Points":348803,"Rank":329,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883684","BestRank":329,"BestRankAt":"2023-02-16T05:25:56.312742Z","MostPoints":348803,"MostPointsAt":"2023-02-16T05:25:56.312742Z","MostVillages":47,"MostVillagesAt":"2023-02-16T05:25:49.119471Z","LastActivityAt":"2023-02-16T05:25:56.312742Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120085Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1341,"ScoreAtt":5318,"RankDef":1305,"ScoreDef":56303,"RankSup":1022,"ScoreSup":3718,"RankTotal":1519,"ScoreTotal":65339,"ID":848883791,"Name":"Jerzy-z-Lodowca","NumVillages":1,"Points":609,"Rank":1967,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848883791","BestRank":1967,"BestRankAt":"2023-02-16T05:25:56.312743Z","MostPoints":609,"MostPointsAt":"2023-02-16T05:25:56.312743Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119472Z","LastActivityAt":"2023-02-16T05:25:56.312743Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120086Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":481,"ScoreAtt":387836,"RankDef":263,"ScoreDef":1416603,"RankSup":278,"ScoreSup":579392,"RankTotal":361,"ScoreTotal":2383831,"ID":848886056,"Name":"Abo co","NumVillages":25,"Points":121632,"Rank":503,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886056","BestRank":503,"BestRankAt":"2023-02-16T05:25:56.312743Z","MostPoints":121632,"MostPointsAt":"2023-02-16T05:25:56.312743Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.119474Z","LastActivityAt":"2023-02-16T05:25:56.312744Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120087Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1432,"ScoreAtt":3338,"RankDef":1404,"ScoreDef":42457,"RankSup":0,"ScoreSup":0,"RankTotal":1636,"ScoreTotal":45795,"ID":848886200,"Name":"Bochunn","NumVillages":6,"Points":31482,"Rank":802,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886200","BestRank":797,"BestRankAt":"2023-02-16T05:25:49.119475Z","MostPoints":31482,"MostPointsAt":"2023-02-16T05:25:49.119475Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119475Z","LastActivityAt":"2023-02-16T05:25:49.119475Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120088Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":546,"ScoreAtt":288718,"RankDef":806,"ScoreDef":212189,"RankSup":1079,"ScoreSup":2259,"RankTotal":840,"ScoreTotal":503166,"ID":848886870,"Name":"Akuzinek1","NumVillages":16,"Points":165643,"Rank":444,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886870","BestRank":444,"BestRankAt":"2023-02-16T05:25:56.312744Z","MostPoints":165643,"MostPointsAt":"2023-02-16T05:25:56.312744Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.119476Z","LastActivityAt":"2023-02-16T05:25:56.312745Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120089Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":372,"ScoreAtt":640673,"RankDef":73,"ScoreDef":4722290,"RankSup":294,"ScoreSup":556192,"RankTotal":155,"ScoreTotal":5919155,"ID":848886973,"Name":"Traczu Dominator","NumVillages":39,"Points":311840,"Rank":347,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848886973","BestRank":347,"BestRankAt":"2023-02-16T05:25:56.312745Z","MostPoints":311840,"MostPointsAt":"2023-02-16T05:25:56.312745Z","MostVillages":39,"MostVillagesAt":"2023-02-16T05:25:49.119477Z","LastActivityAt":"2023-02-16T05:25:56.312745Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848887011,"Name":"Laduu","NumVillages":1,"Points":95,"Rank":2469,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848887011","BestRank":2469,"BestRankAt":"2023-02-16T05:25:56.312745Z","MostPoints":95,"MostPointsAt":"2023-02-16T05:25:49.119479Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119479Z","LastActivityAt":"2023-02-16T05:25:49.119479Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":885,"ScoreAtt":54031,"RankDef":462,"ScoreDef":589844,"RankSup":1184,"ScoreSup":470,"RankTotal":758,"ScoreTotal":644345,"ID":848887199,"Name":"Marceldom","NumVillages":2,"Points":6833,"Rank":1215,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848887199","BestRank":1215,"BestRankAt":"2023-02-16T05:25:56.312746Z","MostPoints":6833,"MostPointsAt":"2023-02-16T05:25:56.312746Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.11948Z","LastActivityAt":"2023-02-16T05:25:56.312746Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120091Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848887366,"Name":"Crift","NumVillages":1,"Points":1622,"Rank":1712,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848887366","BestRank":1712,"BestRankAt":"2023-02-16T05:25:56.312746Z","MostPoints":1622,"MostPointsAt":"2023-02-16T05:25:49.119481Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119481Z","LastActivityAt":"2023-02-16T05:25:49.119481Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120092Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848888394,"Name":"boyka8721","NumVillages":1,"Points":45,"Rank":2570,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848888394","BestRank":2570,"BestRankAt":"2023-02-16T05:25:56.312747Z","MostPoints":45,"MostPointsAt":"2023-02-16T05:25:49.119482Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119482Z","LastActivityAt":"2023-02-16T05:25:49.119483Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2245,"ScoreDef":539,"RankSup":0,"ScoreSup":0,"RankTotal":2325,"ScoreTotal":539,"ID":848888787,"Name":"Samotny Wilk","NumVillages":1,"Points":197,"Rank":2280,"TribeID":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848888787","BestRank":2280,"BestRankAt":"2023-02-16T05:25:56.312747Z","MostPoints":197,"MostPointsAt":"2023-02-16T05:25:49.119484Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119484Z","LastActivityAt":"2023-02-16T05:25:49.119484Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120093Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":532,"ScoreAtt":308758,"RankDef":452,"ScoreDef":609623,"RankSup":683,"ScoreSup":56530,"RankTotal":624,"ScoreTotal":974911,"ID":848889556,"Name":"bohatejro","NumVillages":13,"Points":113726,"Rank":515,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848889556","BestRank":515,"BestRankAt":"2023-02-16T05:25:56.312748Z","MostPoints":113726,"MostPointsAt":"2023-02-16T05:25:56.312748Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.119485Z","LastActivityAt":"2023-02-16T05:25:56.312748Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120094Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":771,"ScoreAtt":91467,"RankDef":1638,"ScoreDef":23163,"RankSup":880,"ScoreSup":13788,"RankTotal":1300,"ScoreTotal":128418,"ID":848889850,"Name":"jonllll","NumVillages":6,"Points":31899,"Rank":796,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848889850","BestRank":796,"BestRankAt":"2023-02-16T05:25:56.312748Z","MostPoints":31899,"MostPointsAt":"2023-02-16T05:25:56.312749Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119486Z","LastActivityAt":"2023-02-16T05:25:56.312749Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120095Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1579,"ScoreAtt":1417,"RankDef":1570,"ScoreDef":28000,"RankSup":1031,"ScoreSup":3351,"RankTotal":1744,"ScoreTotal":32768,"ID":848890012,"Name":"Glaber","NumVillages":2,"Points":3543,"Rank":1452,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848890012","BestRank":1452,"BestRankAt":"2023-02-16T05:25:56.312749Z","MostPoints":3543,"MostPointsAt":"2023-02-16T05:25:49.119487Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119487Z","LastActivityAt":"2023-02-16T05:25:49.119488Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1304,"ScoreAtt":6343,"RankDef":1858,"ScoreDef":9541,"RankSup":1169,"ScoreSup":631,"RankTotal":1910,"ScoreTotal":16515,"ID":848892804,"Name":"Josef","NumVillages":3,"Points":4828,"Rank":1336,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848892804","BestRank":1336,"BestRankAt":"2023-02-16T05:25:56.312749Z","MostPoints":4828,"MostPointsAt":"2023-02-16T05:25:56.31275Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119488Z","LastActivityAt":"2023-02-16T05:25:56.31275Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120096Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848893447,"Name":"Latino","NumVillages":1,"Points":26,"Rank":2726,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848893447","BestRank":2726,"BestRankAt":"2023-02-16T05:25:56.31275Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11949Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11949Z","LastActivityAt":"2023-02-16T05:25:49.11949Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120097Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848893520,"Name":"marekttt","NumVillages":1,"Points":26,"Rank":2727,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848893520","BestRank":2727,"BestRankAt":"2023-02-16T05:25:56.31275Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119491Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119491Z","LastActivityAt":"2023-02-16T05:25:49.119491Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":951,"ScoreAtt":39462,"RankDef":1452,"ScoreDef":38033,"RankSup":968,"ScoreSup":6265,"RankTotal":1449,"ScoreTotal":83760,"ID":848895676,"Name":"WarDuke","NumVillages":6,"Points":20894,"Rank":905,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848895676","BestRank":905,"BestRankAt":"2023-02-16T05:25:56.312751Z","MostPoints":20894,"MostPointsAt":"2023-02-16T05:25:56.312751Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119492Z","LastActivityAt":"2023-02-16T05:25:56.312751Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120099Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":821,"ScoreAtt":71400,"RankDef":924,"ScoreDef":156810,"RankSup":0,"ScoreSup":0,"RankTotal":1093,"ScoreTotal":228210,"ID":848896434,"Name":"Liczyrzepa","NumVillages":12,"Points":29211,"Rank":827,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848896434","BestRank":827,"BestRankAt":"2023-02-16T05:25:49.119493Z","MostPoints":29211,"MostPointsAt":"2023-02-16T05:25:56.312752Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.119493Z","LastActivityAt":"2023-02-16T05:25:56.312752Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.1201Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":232,"ScoreAtt":1286090,"RankDef":464,"ScoreDef":582803,"RankSup":186,"ScoreSup":1065615,"RankTotal":298,"ScoreTotal":2934508,"ID":848896948,"Name":"TheDoubleSunset","NumVillages":54,"Points":503251,"Rank":267,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848896948","BestRank":267,"BestRankAt":"2023-02-16T05:25:49.119494Z","MostPoints":503337,"MostPointsAt":"2023-02-16T05:25:49.119495Z","MostVillages":54,"MostVillagesAt":"2023-02-16T05:25:49.119495Z","LastActivityAt":"2023-02-16T05:25:49.119495Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120101Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848897333,"Name":"Dziwny As","NumVillages":1,"Points":119,"Rank":2428,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848897333","BestRank":2428,"BestRankAt":"2023-02-16T05:25:56.312752Z","MostPoints":119,"MostPointsAt":"2023-02-16T05:25:49.119496Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119496Z","LastActivityAt":"2023-02-16T05:25:49.119496Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120102Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1052,"ScoreAtt":22564,"RankDef":946,"ScoreDef":147398,"RankSup":0,"ScoreSup":0,"RankTotal":1210,"ScoreTotal":169962,"ID":848897972,"Name":"Skiczak","NumVillages":0,"Points":0,"Rank":2989,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848897972","BestRank":2989,"BestRankAt":"2023-02-16T05:25:56.312753Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119497Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119497Z","LastActivityAt":"2023-02-16T05:25:49.119498Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120102Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1529,"ScoreAtt":2022,"RankDef":1959,"ScoreDef":5803,"RankSup":187,"ScoreSup":1059697,"RankTotal":603,"ScoreTotal":1067522,"ID":848899726,"Name":"Savi","NumVillages":15,"Points":109899,"Rank":521,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848899726","BestRank":520,"BestRankAt":"2023-02-16T05:25:49.119498Z","MostPoints":109899,"MostPointsAt":"2023-02-16T05:25:49.119499Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.119498Z","LastActivityAt":"2023-02-16T05:25:49.119499Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120104Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1420,"ScoreAtt":3612,"RankDef":1786,"ScoreDef":12973,"RankSup":0,"ScoreSup":0,"RankTotal":1908,"ScoreTotal":16585,"ID":848901396,"Name":"Kekuuƛ","NumVillages":3,"Points":12867,"Rank":1033,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848901396","BestRank":1031,"BestRankAt":"2023-02-16T05:25:49.119499Z","MostPoints":12867,"MostPointsAt":"2023-02-16T05:25:49.1195Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.1195Z","LastActivityAt":"2023-02-16T05:25:49.1195Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120105Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848901822,"Name":"koka17","NumVillages":1,"Points":952,"Rank":1858,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848901822","BestRank":1858,"BestRankAt":"2023-02-16T05:25:56.312754Z","MostPoints":952,"MostPointsAt":"2023-02-16T05:25:49.119501Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119501Z","LastActivityAt":"2023-02-16T05:25:49.119501Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120106Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":894,"ScoreAtt":52177,"RankDef":796,"ScoreDef":218591,"RankSup":0,"ScoreSup":0,"RankTotal":1034,"ScoreTotal":270768,"ID":848902592,"Name":"Generalruski","NumVillages":16,"Points":80649,"Rank":582,"TribeID":633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848902592","BestRank":582,"BestRankAt":"2023-02-16T05:25:56.312755Z","MostPoints":80649,"MostPointsAt":"2023-02-16T05:25:56.312755Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.119502Z","LastActivityAt":"2023-02-16T05:25:56.312755Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120106Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":796,"ScoreAtt":82423,"RankDef":407,"ScoreDef":730227,"RankSup":632,"ScoreSup":80740,"RankTotal":657,"ScoreTotal":893390,"ID":848902744,"Name":"sliwatojo","NumVillages":4,"Points":32146,"Rank":793,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848902744","BestRank":701,"BestRankAt":"2023-02-16T05:25:49.119503Z","MostPoints":48279,"MostPointsAt":"2023-02-16T05:25:49.119504Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.119503Z","LastActivityAt":"2023-02-16T05:25:49.119504Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120107Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1001,"ScoreAtt":29346,"RankDef":1516,"ScoreDef":31764,"RankSup":919,"ScoreSup":9795,"RankTotal":1493,"ScoreTotal":70905,"ID":848903260,"Name":"Gazun","NumVillages":1,"Points":3428,"Rank":1466,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848903260","BestRank":1466,"BestRankAt":"2023-02-16T05:25:56.312756Z","MostPoints":3428,"MostPointsAt":"2023-02-16T05:25:49.119505Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119505Z","LastActivityAt":"2023-02-16T05:25:49.119505Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120108Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1621,"ScoreAtt":999,"RankDef":2116,"ScoreDef":2205,"RankSup":587,"ScoreSup":103683,"RankTotal":1362,"ScoreTotal":106887,"ID":848903690,"Name":"Rajmundeq","NumVillages":1,"Points":4335,"Rank":1373,"TribeID":822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848903690","BestRank":1373,"BestRankAt":"2023-02-16T05:25:56.312756Z","MostPoints":4335,"MostPointsAt":"2023-02-16T05:25:56.312756Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119506Z","LastActivityAt":"2023-02-16T05:25:56.312756Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120109Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":875,"ScoreAtt":56152,"RankDef":125,"ScoreDef":3103885,"RankSup":1259,"ScoreSup":80,"RankTotal":279,"ScoreTotal":3160117,"ID":848905770,"Name":"TakiKris","NumVillages":1,"Points":211,"Rank":2251,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848905770","BestRank":1496,"BestRankAt":"2023-02-16T05:25:49.119507Z","MostPoints":3289,"MostPointsAt":"2023-02-16T05:25:49.119507Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119507Z","LastActivityAt":"2023-02-16T05:25:49.119507Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12011Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2392,"ScoreDef":17,"RankSup":0,"ScoreSup":0,"RankTotal":2489,"ScoreTotal":17,"ID":848905784,"Name":"epstein.","NumVillages":1,"Points":123,"Rank":2416,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848905784","BestRank":2416,"BestRankAt":"2023-02-16T05:25:56.312757Z","MostPoints":123,"MostPointsAt":"2023-02-16T05:25:49.119508Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119508Z","LastActivityAt":"2023-02-16T05:25:49.119509Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120111Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848906441,"Name":"ACFT","NumVillages":1,"Points":26,"Rank":2728,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848906441","BestRank":2728,"BestRankAt":"2023-02-16T05:25:56.312758Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11951Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119509Z","LastActivityAt":"2023-02-16T05:25:49.11951Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120111Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":977,"ScoreAtt":33655,"RankDef":2442,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1734,"ScoreTotal":33665,"ID":848907771,"Name":"DZiki250","NumVillages":2,"Points":8327,"Rank":1139,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848907771","BestRank":1139,"BestRankAt":"2023-02-16T05:25:56.312758Z","MostPoints":8327,"MostPointsAt":"2023-02-16T05:25:49.119511Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119511Z","LastActivityAt":"2023-02-16T05:25:49.119511Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120112Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1463,"ScoreDef":36806,"RankSup":0,"ScoreSup":0,"RankTotal":1707,"ScoreTotal":36806,"ID":848908144,"Name":"Speedway007","NumVillages":1,"Points":1170,"Rank":1798,"TribeID":397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848908144","BestRank":1798,"BestRankAt":"2023-02-16T05:25:56.312759Z","MostPoints":1170,"MostPointsAt":"2023-02-16T05:25:49.119512Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119512Z","LastActivityAt":"2023-02-16T05:25:49.119512Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120113Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848909122,"Name":"hujozo","NumVillages":1,"Points":238,"Rank":2221,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848909122","BestRank":2221,"BestRankAt":"2023-02-16T05:25:56.312759Z","MostPoints":238,"MostPointsAt":"2023-02-16T05:25:56.312759Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119513Z","LastActivityAt":"2023-02-16T05:25:56.312759Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120114Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2433,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2510,"ScoreTotal":10,"ID":848909292,"Name":"goodvibegoodman","NumVillages":1,"Points":1284,"Rank":1780,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848909292","BestRank":1780,"BestRankAt":"2023-02-16T05:25:56.31276Z","MostPoints":1284,"MostPointsAt":"2023-02-16T05:25:49.119515Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119514Z","LastActivityAt":"2023-02-16T05:25:49.119515Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120114Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":305,"ScoreAtt":908682,"RankDef":762,"ScoreDef":235957,"RankSup":361,"ScoreSup":391489,"RankTotal":489,"ScoreTotal":1536128,"ID":848909464,"Name":"klops3","NumVillages":46,"Points":410742,"Rank":297,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848909464","BestRank":297,"BestRankAt":"2023-02-16T05:25:56.31276Z","MostPoints":410742,"MostPointsAt":"2023-02-16T05:25:56.31276Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:49.119516Z","LastActivityAt":"2023-02-16T05:25:56.31276Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120115Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1650,"ScoreAtt":793,"RankDef":434,"ScoreDef":647879,"RankSup":1109,"ScoreSup":1592,"RankTotal":756,"ScoreTotal":650264,"ID":848910122,"Name":"GrzyBson04","NumVillages":9,"Points":16153,"Rank":981,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848910122","BestRank":978,"BestRankAt":"2023-02-16T05:25:49.119517Z","MostPoints":16219,"MostPointsAt":"2023-02-16T05:25:49.119517Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.119517Z","LastActivityAt":"2023-02-16T05:25:49.119517Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120117Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848910971,"Name":"xMario25x","NumVillages":1,"Points":26,"Rank":2729,"TribeID":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848910971","BestRank":2729,"BestRankAt":"2023-02-16T05:25:56.312761Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119518Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119518Z","LastActivityAt":"2023-02-16T05:25:49.119519Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120118Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848911863,"Name":"zapomniaƂem hasƂa","NumVillages":1,"Points":288,"Rank":2168,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848911863","BestRank":2168,"BestRankAt":"2023-02-16T05:25:56.312762Z","MostPoints":288,"MostPointsAt":"2023-02-16T05:25:56.312762Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119519Z","LastActivityAt":"2023-02-16T05:25:56.312762Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120118Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848912151,"Name":"aegalionkak","NumVillages":1,"Points":26,"Rank":2730,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912151","BestRank":2730,"BestRankAt":"2023-02-16T05:25:56.312762Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119521Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119521Z","LastActivityAt":"2023-02-16T05:25:49.119521Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120119Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":137,"ScoreAtt":2266959,"RankDef":779,"ScoreDef":231007,"RankSup":320,"ScoreSup":460795,"RankTotal":295,"ScoreTotal":2958761,"ID":848912265,"Name":"Luftmysza93","NumVillages":71,"Points":557685,"Rank":252,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912265","BestRank":252,"BestRankAt":"2023-02-16T05:25:56.312763Z","MostPoints":557685,"MostPointsAt":"2023-02-16T05:25:56.312763Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:49.119522Z","LastActivityAt":"2023-02-16T05:25:56.312763Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":525,"ScoreAtt":314086,"RankDef":734,"ScoreDef":254874,"RankSup":845,"ScoreSup":16827,"RankTotal":780,"ScoreTotal":585787,"ID":848912772,"Name":"xNieZnaJoMyx","NumVillages":25,"Points":236502,"Rank":389,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912772","BestRank":389,"BestRankAt":"2023-02-16T05:25:56.312763Z","MostPoints":236502,"MostPointsAt":"2023-02-16T05:25:56.312763Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.119523Z","LastActivityAt":"2023-02-16T05:25:56.312764Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12012Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1974,"ScoreAtt":4,"RankDef":843,"ScoreDef":190292,"RankSup":1234,"ScoreSup":183,"RankTotal":1158,"ScoreTotal":190479,"ID":848912937,"Name":"Szalony Ost","NumVillages":2,"Points":5186,"Rank":1308,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848912937","BestRank":1308,"BestRankAt":"2023-02-16T05:25:56.312764Z","MostPoints":5186,"MostPointsAt":"2023-02-16T05:25:56.312764Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:56.312764Z","LastActivityAt":"2023-02-16T05:25:56.312764Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120122Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1108,"ScoreAtt":17348,"RankDef":457,"ScoreDef":600811,"RankSup":398,"ScoreSup":317398,"RankTotal":641,"ScoreTotal":935557,"ID":848913030,"Name":"Makoo","NumVillages":1,"Points":26,"Rank":2731,"TribeID":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913030","BestRank":2731,"BestRankAt":"2023-02-16T05:25:56.312764Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119526Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119526Z","LastActivityAt":"2023-02-16T05:25:49.119526Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120122Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":200,"ScoreAtt":1571938,"RankDef":923,"ScoreDef":156977,"RankSup":287,"ScoreSup":565501,"RankTotal":372,"ScoreTotal":2294416,"ID":848913037,"Name":"FraPe","NumVillages":92,"Points":758784,"Rank":189,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913037","BestRank":189,"BestRankAt":"2023-02-16T05:25:56.312765Z","MostPoints":758784,"MostPointsAt":"2023-02-16T05:25:56.312765Z","MostVillages":92,"MostVillagesAt":"2023-02-16T05:25:49.119551Z","LastActivityAt":"2023-02-16T05:25:56.312765Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120123Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1549,"ScoreAtt":1788,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2245,"ScoreTotal":1788,"ID":848913252,"Name":"DAJWIDOS16","NumVillages":2,"Points":4005,"Rank":1399,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913252","BestRank":1399,"BestRankAt":"2023-02-16T05:25:56.312765Z","MostPoints":4005,"MostPointsAt":"2023-02-16T05:25:56.312766Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119553Z","LastActivityAt":"2023-02-16T05:25:56.312766Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120124Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":187,"ScoreAtt":1649787,"RankDef":38,"ScoreDef":8685859,"RankSup":168,"ScoreSup":1318832,"RankTotal":66,"ScoreTotal":11654478,"ID":848913998,"Name":"Kuzyn Piotruƛ","NumVillages":129,"Points":912301,"Rank":161,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848913998","BestRank":161,"BestRankAt":"2023-02-16T05:25:56.312766Z","MostPoints":912301,"MostPointsAt":"2023-02-16T05:25:56.312766Z","MostVillages":129,"MostVillagesAt":"2023-02-16T05:25:49.119554Z","LastActivityAt":"2023-02-16T05:25:56.312766Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120125Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1836,"ScoreDef":10288,"RankSup":0,"ScoreSup":0,"RankTotal":1986,"ScoreTotal":10288,"ID":848914120,"Name":"Lost im Wald","NumVillages":1,"Points":1175,"Rank":1797,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848914120","BestRank":1797,"BestRankAt":"2023-02-16T05:25:56.312767Z","MostPoints":1175,"MostPointsAt":"2023-02-16T05:25:56.312767Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119555Z","LastActivityAt":"2023-02-16T05:25:56.312767Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120126Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":629,"ScoreAtt":178796,"RankDef":170,"ScoreDef":2244365,"RankSup":390,"ScoreSup":329848,"RankTotal":318,"ScoreTotal":2753009,"ID":848914661,"Name":"M A S S A C R E","NumVillages":1,"Points":26,"Rank":2732,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848914661","BestRank":2732,"BestRankAt":"2023-02-16T05:25:56.312767Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119557Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119556Z","LastActivityAt":"2023-02-16T05:25:49.119557Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120126Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1418,"ScoreAtt":3621,"RankDef":1627,"ScoreDef":23863,"RankSup":1105,"ScoreSup":1663,"RankTotal":1773,"ScoreTotal":29147,"ID":848915032,"Name":"Naval3","NumVillages":1,"Points":7357,"Rank":1191,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915032","BestRank":1191,"BestRankAt":"2023-02-16T05:25:56.312768Z","MostPoints":7357,"MostPointsAt":"2023-02-16T05:25:56.312768Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119558Z","LastActivityAt":"2023-02-16T05:25:56.312768Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120127Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":123,"ScoreAtt":2468770,"RankDef":591,"ScoreDef":387305,"RankSup":64,"ScoreSup":2939529,"RankTotal":159,"ScoreTotal":5795604,"ID":848915531,"Name":"Amator7","NumVillages":171,"Points":1534905,"Rank":77,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915531","BestRank":77,"BestRankAt":"2023-02-16T05:25:56.312768Z","MostPoints":1534905,"MostPointsAt":"2023-02-16T05:25:56.312768Z","MostVillages":171,"MostVillagesAt":"2023-02-16T05:25:56.312768Z","LastActivityAt":"2023-02-16T05:25:56.312768Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120128Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":9,"ScoreAtt":13326548,"RankDef":17,"ScoreDef":17044032,"RankSup":41,"ScoreSup":3909370,"RankTotal":11,"ScoreTotal":34279950,"ID":848915730,"Name":"szunaj23 x Kewlys","NumVillages":435,"Points":3941584,"Rank":9,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915730","BestRank":9,"BestRankAt":"2023-02-16T05:25:49.11956Z","MostPoints":3941584,"MostPointsAt":"2023-02-16T05:25:56.312769Z","MostVillages":435,"MostVillagesAt":"2023-02-16T05:25:49.11956Z","LastActivityAt":"2023-02-16T05:25:56.312769Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120129Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":821,"ScoreDef":203724,"RankSup":0,"ScoreSup":0,"RankTotal":1133,"ScoreTotal":203724,"ID":848915956,"Name":"Kreynoss","NumVillages":0,"Points":0,"Rank":2990,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848915956","BestRank":2990,"BestRankAt":"2023-02-16T05:25:56.312769Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119562Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119561Z","LastActivityAt":"2023-02-16T05:25:49.119562Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120129Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1083,"ScoreAtt":19662,"RankDef":1236,"ScoreDef":65933,"RankSup":0,"ScoreSup":0,"RankTotal":1441,"ScoreTotal":85595,"ID":848916779,"Name":"Davcio1994","NumVillages":1,"Points":26,"Rank":2733,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848916779","BestRank":2733,"BestRankAt":"2023-02-16T05:25:56.31277Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119563Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119563Z","LastActivityAt":"2023-02-16T05:25:49.119563Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12013Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1531,"ScoreAtt":1979,"RankDef":1036,"ScoreDef":114991,"RankSup":1348,"ScoreSup":6,"RankTotal":1333,"ScoreTotal":116976,"ID":848917127,"Name":"PiotrekPazzi","NumVillages":1,"Points":158,"Rank":2343,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848917127","BestRank":2343,"BestRankAt":"2023-02-16T05:25:56.31277Z","MostPoints":158,"MostPointsAt":"2023-02-16T05:25:49.119564Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119564Z","LastActivityAt":"2023-02-16T05:25:49.119564Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120131Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2227,"ScoreDef":675,"RankSup":978,"ScoreSup":5962,"RankTotal":2068,"ScoreTotal":6637,"ID":848917401,"Name":"GƂaz","NumVillages":1,"Points":1083,"Rank":1825,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848917401","BestRank":1825,"BestRankAt":"2023-02-16T05:25:56.312771Z","MostPoints":1083,"MostPointsAt":"2023-02-16T05:25:49.119565Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119565Z","LastActivityAt":"2023-02-16T05:25:49.119565Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120131Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1063,"ScoreAtt":21197,"RankDef":860,"ScoreDef":184938,"RankSup":799,"ScoreSup":24624,"RankTotal":1086,"ScoreTotal":230759,"ID":848917570,"Name":"JURAND WIELKI","NumVillages":10,"Points":43351,"Rank":726,"TribeID":1368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848917570","BestRank":723,"BestRankAt":"2023-02-16T05:25:49.119566Z","MostPoints":43351,"MostPointsAt":"2023-02-16T05:25:49.119567Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.119566Z","LastActivityAt":"2023-02-16T05:25:49.119567Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120132Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1344,"ScoreAtt":5305,"RankDef":2079,"ScoreDef":2865,"RankSup":0,"ScoreSup":0,"RankTotal":2026,"ScoreTotal":8170,"ID":848918262,"Name":"Przekocur","NumVillages":2,"Points":17663,"Rank":961,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848918262","BestRank":961,"BestRankAt":"2023-02-16T05:25:56.312772Z","MostPoints":17663,"MostPointsAt":"2023-02-16T05:25:56.312772Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119568Z","LastActivityAt":"2023-02-16T05:25:56.312772Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120133Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":31,"ScoreAtt":6723809,"RankDef":241,"ScoreDef":1597838,"RankSup":22,"ScoreSup":4959681,"RankTotal":59,"ScoreTotal":13281328,"ID":848918380,"Name":"THEvMOLKA","NumVillages":241,"Points":2405472,"Rank":31,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848918380","BestRank":30,"BestRankAt":"2023-02-16T05:25:49.119569Z","MostPoints":2405472,"MostPointsAt":"2023-02-16T05:25:56.312772Z","MostVillages":241,"MostVillagesAt":"2023-02-16T05:25:49.119569Z","LastActivityAt":"2023-02-16T05:25:56.312772Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120134Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2284,"ScoreDef":264,"RankSup":0,"ScoreSup":0,"RankTotal":2367,"ScoreTotal":264,"ID":848919959,"Name":"arusaru10","NumVillages":0,"Points":0,"Rank":2991,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848919959","BestRank":2013,"BestRankAt":"2023-02-16T05:25:49.11957Z","MostPoints":527,"MostPointsAt":"2023-02-16T05:25:49.11957Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11957Z","LastActivityAt":"2023-02-16T05:25:49.11957Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120134Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1356,"ScoreAtt":5088,"RankDef":811,"ScoreDef":208966,"RankSup":1018,"ScoreSup":3945,"RankTotal":1111,"ScoreTotal":217999,"ID":848921536,"Name":"DemolkaHD","NumVillages":17,"Points":100943,"Rank":536,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848921536","BestRank":536,"BestRankAt":"2023-02-16T05:25:49.119571Z","MostPoints":100943,"MostPointsAt":"2023-02-16T05:25:49.119571Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.119571Z","LastActivityAt":"2023-02-16T05:25:49.119572Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120135Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":678,"ScoreAtt":141025,"RankDef":518,"ScoreDef":494414,"RankSup":770,"ScoreSup":31735,"RankTotal":745,"ScoreTotal":667174,"ID":848921793,"Name":"kubaaa26","NumVillages":1,"Points":11678,"Rank":1048,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848921793","BestRank":1046,"BestRankAt":"2023-02-16T05:25:49.119572Z","MostPoints":11678,"MostPointsAt":"2023-02-16T05:25:49.119573Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119572Z","LastActivityAt":"2023-02-16T05:25:49.119573Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120136Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":517,"ScoreAtt":329073,"RankDef":1252,"ScoreDef":62460,"RankSup":924,"ScoreSup":9441,"RankTotal":916,"ScoreTotal":400974,"ID":848921861,"Name":"Tiex","NumVillages":28,"Points":260569,"Rank":377,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848921861","BestRank":377,"BestRankAt":"2023-02-16T05:25:56.312774Z","MostPoints":260569,"MostPointsAt":"2023-02-16T05:25:56.312774Z","MostVillages":28,"MostVillagesAt":"2023-02-16T05:25:49.119574Z","LastActivityAt":"2023-02-16T05:25:56.312774Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120137Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1513,"ScoreAtt":2164,"RankDef":1693,"ScoreDef":18950,"RankSup":0,"ScoreSup":0,"RankTotal":1850,"ScoreTotal":21114,"ID":848922118,"Name":"Perszing125","NumVillages":0,"Points":0,"Rank":2992,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848922118","BestRank":2093,"BestRankAt":"2023-02-16T05:25:49.119575Z","MostPoints":393,"MostPointsAt":"2023-02-16T05:25:49.119575Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119575Z","LastActivityAt":"2023-02-16T05:25:49.119575Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120137Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2178,"ScoreDef":1286,"RankSup":0,"ScoreSup":0,"RankTotal":2273,"ScoreTotal":1286,"ID":848922517,"Name":"Albertini","NumVillages":1,"Points":26,"Rank":2734,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848922517","BestRank":2734,"BestRankAt":"2023-02-16T05:25:56.312775Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119576Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119576Z","LastActivityAt":"2023-02-16T05:25:49.119577Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120138Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1466,"ScoreAtt":2780,"RankDef":2429,"ScoreDef":10,"RankSup":1263,"ScoreSup":68,"RankTotal":2196,"ScoreTotal":2858,"ID":848922958,"Name":"Luftwafel","NumVillages":4,"Points":7807,"Rank":1164,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848922958","BestRank":1164,"BestRankAt":"2023-02-16T05:25:56.312776Z","MostPoints":7807,"MostPointsAt":"2023-02-16T05:25:56.312776Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119577Z","LastActivityAt":"2023-02-16T05:25:56.312776Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120139Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1110,"ScoreAtt":17122,"RankDef":1618,"ScoreDef":24410,"RankSup":1131,"ScoreSup":1180,"RankTotal":1655,"ScoreTotal":42712,"ID":848923540,"Name":"nival","NumVillages":0,"Points":0,"Rank":2993,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848923540","BestRank":2993,"BestRankAt":"2023-02-16T05:25:56.312776Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.119579Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.119579Z","LastActivityAt":"2023-02-16T05:25:49.119579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12014Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848923646,"Name":"mani4884","NumVillages":1,"Points":26,"Rank":2735,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848923646","BestRank":2735,"BestRankAt":"2023-02-16T05:25:56.312777Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.11958Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.11958Z","LastActivityAt":"2023-02-16T05:25:49.11958Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120141Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848923754,"Name":"monkeyy","NumVillages":1,"Points":55,"Rank":2535,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848923754","BestRank":2535,"BestRankAt":"2023-02-16T05:25:56.312777Z","MostPoints":55,"MostPointsAt":"2023-02-16T05:25:49.119581Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119581Z","LastActivityAt":"2023-02-16T05:25:49.119582Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120141Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":615,"ScoreAtt":192066,"RankDef":164,"ScoreDef":2342225,"RankSup":598,"ScoreSup":100338,"RankTotal":334,"ScoreTotal":2634629,"ID":848924219,"Name":"AndziaN","NumVillages":15,"Points":61567,"Rank":650,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848924219","BestRank":648,"BestRankAt":"2023-02-16T05:25:49.119582Z","MostPoints":61567,"MostPointsAt":"2023-02-16T05:25:56.312778Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.119582Z","LastActivityAt":"2023-02-16T05:25:56.312778Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120142Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1842,"ScoreAtt":134,"RankDef":2057,"ScoreDef":3692,"RankSup":0,"ScoreSup":0,"RankTotal":2178,"ScoreTotal":3826,"ID":848924648,"Name":"XXXRETARDION","NumVillages":1,"Points":716,"Rank":1947,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848924648","BestRank":1947,"BestRankAt":"2023-02-16T05:25:49.119583Z","MostPoints":716,"MostPointsAt":"2023-02-16T05:25:49.119584Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119584Z","LastActivityAt":"2023-02-16T05:25:49.119584Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120143Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1211,"ScoreAtt":10019,"RankDef":546,"ScoreDef":453593,"RankSup":1102,"ScoreSup":1771,"RankTotal":864,"ScoreTotal":465383,"ID":848925840,"Name":"Ariel69","NumVillages":2,"Points":18018,"Rank":953,"TribeID":1040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848925840","BestRank":951,"BestRankAt":"2023-02-16T05:25:49.119585Z","MostPoints":18018,"MostPointsAt":"2023-02-16T05:25:49.119585Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119585Z","LastActivityAt":"2023-02-16T05:25:49.119585Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120144Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2303,"ScoreDef":201,"RankSup":0,"ScoreSup":0,"RankTotal":2381,"ScoreTotal":201,"ID":848926070,"Name":"KOSMACZ1","NumVillages":1,"Points":439,"Rank":2044,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848926070","BestRank":2044,"BestRankAt":"2023-02-16T05:25:56.312779Z","MostPoints":439,"MostPointsAt":"2023-02-16T05:25:49.119586Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119586Z","LastActivityAt":"2023-02-16T05:25:49.119586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120144Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":422,"ScoreAtt":508432,"RankDef":1835,"ScoreDef":10303,"RankSup":313,"ScoreSup":486891,"RankTotal":615,"ScoreTotal":1005626,"ID":848926293,"Name":"Mr.Creep","NumVillages":42,"Points":329070,"Rank":342,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848926293","BestRank":342,"BestRankAt":"2023-02-16T05:25:56.312779Z","MostPoints":329070,"MostPointsAt":"2023-02-16T05:25:56.312779Z","MostVillages":42,"MostVillagesAt":"2023-02-16T05:25:49.119587Z","LastActivityAt":"2023-02-16T05:25:56.312779Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120145Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":859,"ScoreAtt":59949,"RankDef":535,"ScoreDef":471726,"RankSup":906,"ScoreSup":10733,"RankTotal":809,"ScoreTotal":542408,"ID":848927262,"Name":"Loca","NumVillages":1,"Points":54,"Rank":2538,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848927262","BestRank":2538,"BestRankAt":"2023-02-16T05:25:56.31278Z","MostPoints":54,"MostPointsAt":"2023-02-16T05:25:49.119589Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119589Z","LastActivityAt":"2023-02-16T05:25:49.119589Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120146Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":502,"ScoreAtt":351240,"RankDef":1187,"ScoreDef":75385,"RankSup":531,"ScoreSup":142622,"RankTotal":790,"ScoreTotal":569247,"ID":848928486,"Name":"ciachbabkewpiach","NumVillages":8,"Points":55903,"Rank":668,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848928486","BestRank":668,"BestRankAt":"2023-02-16T05:25:56.31278Z","MostPoints":55903,"MostPointsAt":"2023-02-16T05:25:49.11959Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.11959Z","LastActivityAt":"2023-02-16T05:25:49.11959Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120147Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":332,"ScoreAtt":783845,"RankDef":1022,"ScoreDef":120223,"RankSup":666,"ScoreSup":62142,"RankTotal":632,"ScoreTotal":966210,"ID":848928624,"Name":"Mr Bizy","NumVillages":35,"Points":254901,"Rank":379,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848928624","BestRank":370,"BestRankAt":"2023-02-16T05:25:49.119591Z","MostPoints":264100,"MostPointsAt":"2023-02-16T05:25:49.119591Z","MostVillages":36,"MostVillagesAt":"2023-02-16T05:25:49.119591Z","LastActivityAt":"2023-02-16T05:25:49.119591Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120148Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":718,"ScoreAtt":115177,"RankDef":137,"ScoreDef":2835495,"RankSup":245,"ScoreSup":727210,"RankTotal":249,"ScoreTotal":3677882,"ID":848930111,"Name":"Slawpol","NumVillages":2,"Points":18564,"Rank":939,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930111","BestRank":918,"BestRankAt":"2023-02-16T05:25:49.119592Z","MostPoints":19887,"MostPointsAt":"2023-02-16T05:25:49.119592Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119592Z","LastActivityAt":"2023-02-16T05:25:49.119593Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120148Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":933,"ScoreDef":151017,"RankSup":0,"ScoreSup":0,"RankTotal":1244,"ScoreTotal":151017,"ID":848930498,"Name":"5dych","NumVillages":1,"Points":140,"Rank":2370,"TribeID":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930498","BestRank":2370,"BestRankAt":"2023-02-16T05:25:56.312781Z","MostPoints":140,"MostPointsAt":"2023-02-16T05:25:49.119594Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119593Z","LastActivityAt":"2023-02-16T05:25:49.119594Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120149Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1175,"ScoreAtt":11918,"RankDef":2425,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1961,"ScoreTotal":11928,"ID":848930898,"Name":"NiezƂomni 44","NumVillages":4,"Points":14167,"Rank":1011,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930898","BestRank":1011,"BestRankAt":"2023-02-16T05:25:56.312782Z","MostPoints":14167,"MostPointsAt":"2023-02-16T05:25:56.312782Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.119595Z","LastActivityAt":"2023-02-16T05:25:56.312782Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12015Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848930996,"Name":"cwaniaczek25","NumVillages":1,"Points":26,"Rank":2736,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848930996","BestRank":2736,"BestRankAt":"2023-02-16T05:25:56.312783Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.119596Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119596Z","LastActivityAt":"2023-02-16T05:25:49.119596Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120151Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1829,"ScoreDef":10691,"RankSup":0,"ScoreSup":0,"RankTotal":1983,"ScoreTotal":10691,"ID":848931321,"Name":"tomek709","NumVillages":1,"Points":10986,"Rank":1059,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848931321","BestRank":1057,"BestRankAt":"2023-02-16T05:25:49.119597Z","MostPoints":10986,"MostPointsAt":"2023-02-16T05:25:49.119597Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119597Z","LastActivityAt":"2023-02-16T05:25:49.119598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120152Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2019,"ScoreDef":4152,"RankSup":0,"ScoreSup":0,"RankTotal":2146,"ScoreTotal":4152,"ID":848932115,"Name":"Raff Tierro","NumVillages":1,"Points":260,"Rank":2200,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848932115","BestRank":2200,"BestRankAt":"2023-02-16T05:25:56.312783Z","MostPoints":260,"MostPointsAt":"2023-02-16T05:25:49.119599Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119598Z","LastActivityAt":"2023-02-16T05:25:49.119599Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120152Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":634,"ScoreAtt":174928,"RankDef":1704,"ScoreDef":17825,"RankSup":435,"ScoreSup":247873,"RankTotal":877,"ScoreTotal":440626,"ID":848932879,"Name":"mƂody77","NumVillages":59,"Points":449958,"Rank":283,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848932879","BestRank":283,"BestRankAt":"2023-02-16T05:25:56.312784Z","MostPoints":449958,"MostPointsAt":"2023-02-16T05:25:56.312784Z","MostVillages":59,"MostVillagesAt":"2023-02-16T05:25:56.312784Z","LastActivityAt":"2023-02-16T05:25:56.312784Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120153Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1094,"ScoreAtt":18969,"RankDef":935,"ScoreDef":150596,"RankSup":916,"ScoreSup":10175,"RankTotal":1188,"ScoreTotal":179740,"ID":848933470,"Name":"toficiii","NumVillages":2,"Points":1027,"Rank":1839,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848933470","BestRank":1839,"BestRankAt":"2023-02-16T05:25:56.312785Z","MostPoints":1027,"MostPointsAt":"2023-02-16T05:25:49.119601Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119601Z","LastActivityAt":"2023-02-16T05:25:49.119601Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120154Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":134,"ScoreAtt":2292773,"RankDef":387,"ScoreDef":774851,"RankSup":258,"ScoreSup":657120,"RankTotal":246,"ScoreTotal":3724744,"ID":848934935,"Name":"Czakalaka","NumVillages":148,"Points":1237856,"Rank":107,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848934935","BestRank":107,"BestRankAt":"2023-02-16T05:25:56.312785Z","MostPoints":1237856,"MostPointsAt":"2023-02-16T05:25:56.312785Z","MostVillages":148,"MostVillagesAt":"2023-02-16T05:25:56.312785Z","LastActivityAt":"2023-02-16T05:25:56.312785Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120155Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":269,"ScoreAtt":1052044,"RankDef":1144,"ScoreDef":85879,"RankSup":779,"ScoreSup":29401,"RankTotal":577,"ScoreTotal":1167324,"ID":848935020,"Name":"Bkonkel4","NumVillages":28,"Points":219178,"Rank":405,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848935020","BestRank":404,"BestRankAt":"2023-02-16T05:25:49.119603Z","MostPoints":219178,"MostPointsAt":"2023-02-16T05:25:56.312786Z","MostVillages":28,"MostVillagesAt":"2023-02-16T05:25:49.119603Z","LastActivityAt":"2023-02-16T05:25:56.312786Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120156Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":162,"ScoreAtt":1977167,"RankDef":451,"ScoreDef":609761,"RankSup":257,"ScoreSup":663649,"RankTotal":272,"ScoreTotal":3250577,"ID":848935389,"Name":"Agresywny Gabriel","NumVillages":35,"Points":346421,"Rank":335,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848935389","BestRank":307,"BestRankAt":"2023-02-16T05:25:49.119604Z","MostPoints":385867,"MostPointsAt":"2023-02-16T05:25:49.119605Z","MostVillages":39,"MostVillagesAt":"2023-02-16T05:25:49.119605Z","LastActivityAt":"2023-02-16T05:25:49.119605Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120157Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1781,"ScoreAtt":230,"RankDef":2443,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2373,"ScoreTotal":240,"ID":848935732,"Name":"ArąStaro","NumVillages":1,"Points":2145,"Rank":1627,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848935732","BestRank":1627,"BestRankAt":"2023-02-16T05:25:56.312787Z","MostPoints":2145,"MostPointsAt":"2023-02-16T05:25:56.312787Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119606Z","LastActivityAt":"2023-02-16T05:25:56.312787Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120157Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":535,"ScoreAtt":300947,"RankDef":569,"ScoreDef":408983,"RankSup":1311,"ScoreSup":17,"RankTotal":725,"ScoreTotal":709947,"ID":848936053,"Name":"Born-kes","NumVillages":1,"Points":2537,"Rank":1572,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848936053","BestRank":1572,"BestRankAt":"2023-02-16T05:25:56.312787Z","MostPoints":2537,"MostPointsAt":"2023-02-16T05:25:49.119607Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119607Z","LastActivityAt":"2023-02-16T05:25:49.119607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120158Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2434,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2516,"ScoreTotal":10,"ID":848936229,"Name":"marianos1994","NumVillages":1,"Points":689,"Rank":1936,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848936229","BestRank":1936,"BestRankAt":"2023-02-16T05:25:56.312788Z","MostPoints":689,"MostPointsAt":"2023-02-16T05:25:49.119608Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119608Z","LastActivityAt":"2023-02-16T05:25:49.119609Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120159Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":987,"ScoreAtt":32792,"RankDef":1918,"ScoreDef":6936,"RankSup":1084,"ScoreSup":2119,"RankTotal":1662,"ScoreTotal":41847,"ID":848937248,"Name":"Saran1","NumVillages":12,"Points":34181,"Rank":780,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848937248","BestRank":780,"BestRankAt":"2023-02-16T05:25:56.312788Z","MostPoints":34181,"MostPointsAt":"2023-02-16T05:25:56.312788Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.11961Z","LastActivityAt":"2023-02-16T05:25:56.312788Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120159Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1603,"ScoreAtt":1191,"RankDef":1339,"ScoreDef":52299,"RankSup":0,"ScoreSup":0,"RankTotal":1590,"ScoreTotal":53490,"ID":848937780,"Name":"SiwyStaruszek","NumVillages":1,"Points":1308,"Rank":1774,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848937780","BestRank":1774,"BestRankAt":"2023-02-16T05:25:56.312789Z","MostPoints":1308,"MostPointsAt":"2023-02-16T05:25:49.119611Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119611Z","LastActivityAt":"2023-02-16T05:25:49.119611Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12016Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1790,"ScoreAtt":213,"RankDef":1645,"ScoreDef":22476,"RankSup":0,"ScoreSup":0,"RankTotal":1836,"ScoreTotal":22689,"ID":848939131,"Name":"MichaelCh","NumVillages":2,"Points":3719,"Rank":1426,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848939131","BestRank":1426,"BestRankAt":"2023-02-16T05:25:56.312789Z","MostPoints":3719,"MostPointsAt":"2023-02-16T05:25:56.312789Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.119612Z","LastActivityAt":"2023-02-16T05:25:56.312789Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120161Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2317,"ScoreDef":138,"RankSup":0,"ScoreSup":0,"RankTotal":2401,"ScoreTotal":138,"ID":848939203,"Name":"Szczerbatka","NumVillages":1,"Points":1468,"Rank":1741,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848939203","BestRank":1741,"BestRankAt":"2023-02-16T05:25:56.31279Z","MostPoints":1468,"MostPointsAt":"2023-02-16T05:25:49.119613Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119613Z","LastActivityAt":"2023-02-16T05:25:49.119614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120162Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848939434,"Name":"wikingowy4321","NumVillages":1,"Points":233,"Rank":2227,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848939434","BestRank":2227,"BestRankAt":"2023-02-16T05:25:56.31279Z","MostPoints":233,"MostPointsAt":"2023-02-16T05:25:49.119615Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119614Z","LastActivityAt":"2023-02-16T05:25:49.119615Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120162Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1892,"ScoreDef":8010,"RankSup":0,"ScoreSup":0,"RankTotal":2035,"ScoreTotal":8010,"ID":848940223,"Name":"damiano3106","NumVillages":1,"Points":129,"Rank":2399,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848940223","BestRank":2399,"BestRankAt":"2023-02-16T05:25:56.312791Z","MostPoints":129,"MostPointsAt":"2023-02-16T05:25:49.119616Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119616Z","LastActivityAt":"2023-02-16T05:25:49.119616Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120163Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848942565,"Name":"Alibaba420","NumVillages":1,"Points":425,"Rank":2058,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942565","BestRank":2058,"BestRankAt":"2023-02-16T05:25:56.312791Z","MostPoints":425,"MostPointsAt":"2023-02-16T05:25:49.119617Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119617Z","LastActivityAt":"2023-02-16T05:25:49.119617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120164Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1111,"ScoreAtt":17073,"RankDef":2056,"ScoreDef":3364,"RankSup":0,"ScoreSup":0,"RankTotal":1858,"ScoreTotal":20437,"ID":848942587,"Name":"kamilpo4","NumVillages":3,"Points":21485,"Rank":899,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942587","BestRank":895,"BestRankAt":"2023-02-16T05:25:49.119618Z","MostPoints":21485,"MostPointsAt":"2023-02-16T05:25:49.119618Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.119618Z","LastActivityAt":"2023-02-16T05:25:49.119619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120164Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1733,"ScoreDef":16516,"RankSup":0,"ScoreSup":0,"RankTotal":1909,"ScoreTotal":16516,"ID":848942618,"Name":"Gebels25","NumVillages":1,"Points":158,"Rank":2344,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942618","BestRank":2344,"BestRankAt":"2023-02-16T05:25:56.312792Z","MostPoints":158,"MostPointsAt":"2023-02-16T05:25:49.11962Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119619Z","LastActivityAt":"2023-02-16T05:25:49.11962Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120165Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1909,"ScoreAtt":36,"RankDef":2313,"ScoreDef":152,"RankSup":0,"ScoreSup":0,"RankTotal":2383,"ScoreTotal":188,"ID":848942734,"Name":"Harpun98","NumVillages":1,"Points":512,"Rank":2007,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942734","BestRank":2007,"BestRankAt":"2023-02-16T05:25:56.312792Z","MostPoints":512,"MostPointsAt":"2023-02-16T05:25:49.119621Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119621Z","LastActivityAt":"2023-02-16T05:25:49.119621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120166Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1828,"ScoreDef":10697,"RankSup":0,"ScoreSup":0,"RankTotal":1982,"ScoreTotal":10697,"ID":848942847,"Name":"taysi","NumVillages":1,"Points":1917,"Rank":1665,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942847","BestRank":1665,"BestRankAt":"2023-02-16T05:25:56.312793Z","MostPoints":1917,"MostPointsAt":"2023-02-16T05:25:49.119622Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119622Z","LastActivityAt":"2023-02-16T05:25:49.119622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120167Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1556,"ScoreAtt":1701,"RankDef":393,"ScoreDef":764080,"RankSup":0,"ScoreSup":0,"RankTotal":694,"ScoreTotal":765781,"ID":848942968,"Name":"Stalker1","NumVillages":5,"Points":20266,"Rank":915,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848942968","BestRank":912,"BestRankAt":"2023-02-16T05:25:49.119623Z","MostPoints":20266,"MostPointsAt":"2023-02-16T05:25:49.119623Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.119623Z","LastActivityAt":"2023-02-16T05:25:49.119623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120168Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1800,"ScoreAtt":176,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2388,"ScoreTotal":176,"ID":848943145,"Name":"allombard","NumVillages":1,"Points":3442,"Rank":1460,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848943145","BestRank":1460,"BestRankAt":"2023-02-16T05:25:56.312794Z","MostPoints":3442,"MostPointsAt":"2023-02-16T05:25:49.119625Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119624Z","LastActivityAt":"2023-02-16T05:25:49.119625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120168Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848944455,"Name":"aniarobifoty","NumVillages":1,"Points":379,"Rank":2089,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848944455","BestRank":2089,"BestRankAt":"2023-02-16T05:25:56.312794Z","MostPoints":379,"MostPointsAt":"2023-02-16T05:25:56.312794Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119626Z","LastActivityAt":"2023-02-16T05:25:56.312795Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120169Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848944534,"Name":"piteroch","NumVillages":1,"Points":226,"Rank":2234,"TribeID":1785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848944534","BestRank":2234,"BestRankAt":"2023-02-16T05:25:56.312795Z","MostPoints":226,"MostPointsAt":"2023-02-16T05:25:49.119627Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119627Z","LastActivityAt":"2023-02-16T05:25:49.119627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.12017Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1073,"ScoreAtt":20363,"RankDef":456,"ScoreDef":603130,"RankSup":380,"ScoreSup":349908,"RankTotal":626,"ScoreTotal":973401,"ID":848945529,"Name":"Niunia1","NumVillages":13,"Points":66153,"Rank":630,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848945529","BestRank":629,"BestRankAt":"2023-02-16T05:25:49.119628Z","MostPoints":66153,"MostPointsAt":"2023-02-16T05:25:56.312795Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.119628Z","LastActivityAt":"2023-02-16T05:25:56.312796Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120171Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":992,"ScoreAtt":31213,"RankDef":772,"ScoreDef":233810,"RankSup":1223,"ScoreSup":238,"RankTotal":1040,"ScoreTotal":265261,"ID":848946608,"Name":"-Robert-","NumVillages":6,"Points":25610,"Rank":855,"TribeID":520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848946608","BestRank":855,"BestRankAt":"2023-02-16T05:25:56.312796Z","MostPoints":25610,"MostPointsAt":"2023-02-16T05:25:56.312796Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.119629Z","LastActivityAt":"2023-02-16T05:25:56.312796Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120171Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":351,"ScoreAtt":699904,"RankDef":1933,"ScoreDef":6469,"RankSup":963,"ScoreSup":6596,"RankTotal":722,"ScoreTotal":712969,"ID":848946700,"Name":"Lord Maximus","NumVillages":49,"Points":299401,"Rank":353,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848946700","BestRank":353,"BestRankAt":"2023-02-16T05:25:56.312796Z","MostPoints":299401,"MostPointsAt":"2023-02-16T05:25:56.312797Z","MostVillages":49,"MostVillagesAt":"2023-02-16T05:25:49.11963Z","LastActivityAt":"2023-02-16T05:25:56.312797Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120174Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1893,"ScoreAtt":46,"RankDef":1154,"ScoreDef":81959,"RankSup":1400,"ScoreSup":2,"RankTotal":1452,"ScoreTotal":82007,"ID":848949271,"Name":"sebo1303","NumVillages":1,"Points":135,"Rank":2385,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848949271","BestRank":2385,"BestRankAt":"2023-02-16T05:25:56.312797Z","MostPoints":135,"MostPointsAt":"2023-02-16T05:25:49.119632Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119632Z","LastActivityAt":"2023-02-16T05:25:49.119632Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120174Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1829,"ScoreAtt":134,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2403,"ScoreTotal":134,"ID":848949517,"Name":"Machoneyy","NumVillages":1,"Points":987,"Rank":1853,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848949517","BestRank":1853,"BestRankAt":"2023-02-16T05:25:56.312798Z","MostPoints":987,"MostPointsAt":"2023-02-16T05:25:56.312798Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.119633Z","LastActivityAt":"2023-02-16T05:25:56.312798Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.120175Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1477,"ScoreDef":35868,"RankSup":0,"ScoreSup":0,"RankTotal":1714,"ScoreTotal":35868,"ID":848949597,"Name":"RadoLigonss","NumVillages":6,"Points":29462,"Rank":824,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848949597","BestRank":821,"BestRankAt":"2023-02-16T05:25:49.212837Z","MostPoints":29462,"MostPointsAt":"2023-02-16T05:25:49.212837Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.212837Z","LastActivityAt":"2023-02-16T05:25:49.212838Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2099,"ScoreDef":2465,"RankSup":0,"ScoreSup":0,"RankTotal":2208,"ScoreTotal":2465,"ID":848950255,"Name":"Tabaluga1922","NumVillages":1,"Points":871,"Rank":1883,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848950255","BestRank":1883,"BestRankAt":"2023-02-16T05:25:56.312799Z","MostPoints":871,"MostPointsAt":"2023-02-16T05:25:56.312799Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212838Z","LastActivityAt":"2023-02-16T05:25:56.312799Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213372Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848951699,"Name":"Szp4Q","NumVillages":1,"Points":129,"Rank":2400,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848951699","BestRank":2400,"BestRankAt":"2023-02-16T05:25:56.312799Z","MostPoints":129,"MostPointsAt":"2023-02-16T05:25:49.212839Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212839Z","LastActivityAt":"2023-02-16T05:25:49.212839Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1031,"ScoreAtt":26040,"RankDef":2260,"ScoreDef":422,"RankSup":0,"ScoreSup":0,"RankTotal":1802,"ScoreTotal":26462,"ID":848952556,"Name":"Arthi1991","NumVillages":1,"Points":783,"Rank":1907,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848952556","BestRank":1907,"BestRankAt":"2023-02-16T05:25:56.3128Z","MostPoints":783,"MostPointsAt":"2023-02-16T05:25:49.21284Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21284Z","LastActivityAt":"2023-02-16T05:25:49.21284Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1310,"ScoreAtt":6161,"RankDef":1881,"ScoreDef":8322,"RankSup":0,"ScoreSup":0,"RankTotal":1930,"ScoreTotal":14483,"ID":848952566,"Name":"morogram","NumVillages":2,"Points":6100,"Rank":1258,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848952566","BestRank":1258,"BestRankAt":"2023-02-16T05:25:56.3128Z","MostPoints":6100,"MostPointsAt":"2023-02-16T05:25:56.3128Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212841Z","LastActivityAt":"2023-02-16T05:25:56.3128Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213373Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":430,"ScoreAtt":486952,"RankDef":769,"ScoreDef":234171,"RankSup":1136,"ScoreSup":1108,"RankTotal":715,"ScoreTotal":722231,"ID":848953066,"Name":"Pippo11.4fun","NumVillages":13,"Points":110272,"Rank":520,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848953066","BestRank":520,"BestRankAt":"2023-02-16T05:25:56.312801Z","MostPoints":110272,"MostPointsAt":"2023-02-16T05:25:56.312801Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.212842Z","LastActivityAt":"2023-02-16T05:25:56.312801Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1018,"ScoreAtt":27382,"RankDef":1752,"ScoreDef":15058,"RankSup":0,"ScoreSup":0,"RankTotal":1656,"ScoreTotal":42440,"ID":848953472,"Name":"kizak1","NumVillages":1,"Points":1458,"Rank":1742,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848953472","BestRank":1742,"BestRankAt":"2023-02-16T05:25:56.312801Z","MostPoints":1458,"MostPointsAt":"2023-02-16T05:25:56.312801Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212843Z","LastActivityAt":"2023-02-16T05:25:56.312801Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213374Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2459,"ScoreDef":7,"RankSup":0,"ScoreSup":0,"RankTotal":2536,"ScoreTotal":7,"ID":848954163,"Name":"Wiecznie pokƂucony","NumVillages":1,"Points":1005,"Rank":1847,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848954163","BestRank":1847,"BestRankAt":"2023-02-16T05:25:56.312802Z","MostPoints":1005,"MostPointsAt":"2023-02-16T05:25:49.212843Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212843Z","LastActivityAt":"2023-02-16T05:25:49.212843Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":965,"ScoreDef":141428,"RankSup":0,"ScoreSup":0,"RankTotal":1262,"ScoreTotal":141428,"ID":848954236,"Name":"C.a.","NumVillages":1,"Points":3454,"Rank":1459,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848954236","BestRank":1459,"BestRankAt":"2023-02-16T05:25:56.312802Z","MostPoints":3454,"MostPointsAt":"2023-02-16T05:25:49.212844Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212844Z","LastActivityAt":"2023-02-16T05:25:49.212844Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1588,"ScoreAtt":1298,"RankDef":839,"ScoreDef":193198,"RankSup":0,"ScoreSup":0,"RankTotal":1146,"ScoreTotal":194496,"ID":848955311,"Name":"PyrMen","NumVillages":0,"Points":0,"Rank":2994,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848955311","BestRank":2994,"BestRankAt":"2023-02-16T05:25:56.312803Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212845Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212845Z","LastActivityAt":"2023-02-16T05:25:49.212845Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213375Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848955756,"Name":"Patryczekk","NumVillages":1,"Points":310,"Rank":2145,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848955756","BestRank":2145,"BestRankAt":"2023-02-16T05:25:56.312804Z","MostPoints":310,"MostPointsAt":"2023-02-16T05:25:56.312804Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212845Z","LastActivityAt":"2023-02-16T05:25:56.312804Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":71,"ScoreAtt":4249672,"RankDef":141,"ScoreDef":2753536,"RankSup":165,"ScoreSup":1327668,"RankTotal":96,"ScoreTotal":8330876,"ID":848955783,"Name":"Bucks x Kamiiiru","NumVillages":188,"Points":1477500,"Rank":81,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848955783","BestRank":80,"BestRankAt":"2023-02-16T05:25:49.212846Z","MostPoints":1477500,"MostPointsAt":"2023-02-16T05:25:56.312805Z","MostVillages":188,"MostVillagesAt":"2023-02-16T05:25:56.312804Z","LastActivityAt":"2023-02-16T05:25:56.312805Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213376Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":698,"ScoreDef":280700,"RankSup":0,"ScoreSup":0,"RankTotal":1025,"ScoreTotal":280700,"ID":848956013,"Name":"Ɓotrka","NumVillages":0,"Points":0,"Rank":2995,"TribeID":147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956013","BestRank":2995,"BestRankAt":"2023-02-16T05:25:56.312805Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212848Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212847Z","LastActivityAt":"2023-02-16T05:25:49.212848Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":13,"ScoreAtt":10981900,"RankDef":328,"ScoreDef":1002084,"RankSup":149,"ScoreSup":1520545,"RankTotal":58,"ScoreTotal":13504529,"ID":848956513,"Name":"Ilia x BieniuS","NumVillages":258,"Points":2484327,"Rank":28,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956513","BestRank":28,"BestRankAt":"2023-02-16T05:25:49.212848Z","MostPoints":2484327,"MostPointsAt":"2023-02-16T05:25:56.312806Z","MostVillages":258,"MostVillagesAt":"2023-02-16T05:25:49.212848Z","LastActivityAt":"2023-02-16T05:25:56.312806Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848956537,"Name":"real124","NumVillages":1,"Points":26,"Rank":2737,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956537","BestRank":2737,"BestRankAt":"2023-02-16T05:25:56.312806Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212849Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212849Z","LastActivityAt":"2023-02-16T05:25:49.212849Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213377Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":11,"ScoreAtt":11463375,"RankDef":29,"ScoreDef":11540865,"RankSup":88,"ScoreSup":2395757,"RankTotal":19,"ScoreTotal":25399997,"ID":848956765,"Name":"Fristajla","NumVillages":376,"Points":3160102,"Rank":17,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848956765","BestRank":16,"BestRankAt":"2023-02-16T05:25:49.212849Z","MostPoints":3160102,"MostPointsAt":"2023-02-16T05:25:56.312807Z","MostVillages":376,"MostVillagesAt":"2023-02-16T05:25:49.21285Z","LastActivityAt":"2023-02-16T05:25:56.312807Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848957381,"Name":"chwalka","NumVillages":1,"Points":53,"Rank":2542,"TribeID":1811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848957381","BestRank":2542,"BestRankAt":"2023-02-16T05:25:56.312807Z","MostPoints":53,"MostPointsAt":"2023-02-16T05:25:56.312807Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312807Z","LastActivityAt":"2023-02-16T05:25:56.312807Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313306Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848957736,"Name":"Rwa1","NumVillages":1,"Points":26,"Rank":2738,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848957736","BestRank":2738,"BestRankAt":"2023-02-16T05:25:56.312808Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.312808Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.312808Z","LastActivityAt":"2023-02-16T05:25:56.312808Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.313307Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848958005,"Name":"Chwedi","NumVillages":1,"Points":1060,"Rank":1832,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848958005","BestRank":1832,"BestRankAt":"2023-02-16T05:25:56.312808Z","MostPoints":1060,"MostPointsAt":"2023-02-16T05:25:56.312808Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21285Z","LastActivityAt":"2023-02-16T05:25:56.312808Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213378Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1140,"ScoreDef":86182,"RankSup":0,"ScoreSup":0,"RankTotal":1440,"ScoreTotal":86182,"ID":848958111,"Name":"WannaBeLoved","NumVillages":0,"Points":0,"Rank":2996,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848958111","BestRank":2996,"BestRankAt":"2023-02-16T05:25:56.312809Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212851Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212851Z","LastActivityAt":"2023-02-16T05:25:49.212851Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1625,"ScoreAtt":970,"RankDef":794,"ScoreDef":219395,"RankSup":1026,"ScoreSup":3568,"RankTotal":1103,"ScoreTotal":223933,"ID":848958556,"Name":"Bill40","NumVillages":5,"Points":16353,"Rank":978,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848958556","BestRank":978,"BestRankAt":"2023-02-16T05:25:56.312809Z","MostPoints":16353,"MostPointsAt":"2023-02-16T05:25:56.312809Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.212852Z","LastActivityAt":"2023-02-16T05:25:56.312809Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213379Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1935,"ScoreAtt":22,"RankDef":1870,"ScoreDef":8897,"RankSup":0,"ScoreSup":0,"RankTotal":2013,"ScoreTotal":8919,"ID":848959231,"Name":"swistolek","NumVillages":0,"Points":0,"Rank":2997,"TribeID":12,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848959231","BestRank":2997,"BestRankAt":"2023-02-16T05:25:56.31281Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212854Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212854Z","LastActivityAt":"2023-02-16T05:25:49.212854Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848959422,"Name":"Bozydar666","NumVillages":1,"Points":217,"Rank":2246,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848959422","BestRank":2246,"BestRankAt":"2023-02-16T05:25:56.31281Z","MostPoints":217,"MostPointsAt":"2023-02-16T05:25:49.212854Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212854Z","LastActivityAt":"2023-02-16T05:25:49.212855Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1516,"ScoreAtt":2144,"RankDef":1255,"ScoreDef":61849,"RankSup":1086,"ScoreSup":2103,"RankTotal":1516,"ScoreTotal":66096,"ID":848960061,"Name":"Karolo1","NumVillages":1,"Points":416,"Rank":2062,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848960061","BestRank":2062,"BestRankAt":"2023-02-16T05:25:56.312811Z","MostPoints":416,"MostPointsAt":"2023-02-16T05:25:56.312811Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212855Z","LastActivityAt":"2023-02-16T05:25:56.312811Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21338Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":503,"ScoreDef":515345,"RankSup":0,"ScoreSup":0,"RankTotal":829,"ScoreTotal":515345,"ID":848963236,"Name":"Mararte","NumVillages":1,"Points":3421,"Rank":1467,"TribeID":92,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963236","BestRank":1467,"BestRankAt":"2023-02-16T05:25:56.312811Z","MostPoints":3421,"MostPointsAt":"2023-02-16T05:25:49.212856Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212856Z","LastActivityAt":"2023-02-16T05:25:49.212856Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1837,"ScoreAtt":130,"RankDef":2275,"ScoreDef":328,"RankSup":0,"ScoreSup":0,"RankTotal":2339,"ScoreTotal":458,"ID":848963521,"Name":"Adrian8808","NumVillages":1,"Points":1633,"Rank":1710,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963521","BestRank":1710,"BestRankAt":"2023-02-16T05:25:56.312812Z","MostPoints":1633,"MostPointsAt":"2023-02-16T05:25:49.212857Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212857Z","LastActivityAt":"2023-02-16T05:25:49.212857Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848963634,"Name":"etrusk","NumVillages":1,"Points":26,"Rank":2739,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963634","BestRank":2739,"BestRankAt":"2023-02-16T05:25:56.352845Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212857Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212857Z","LastActivityAt":"2023-02-16T05:25:49.212857Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213381Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848963694,"Name":"Limited23","NumVillages":1,"Points":241,"Rank":2219,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963694","BestRank":2219,"BestRankAt":"2023-02-16T05:25:56.352846Z","MostPoints":241,"MostPointsAt":"2023-02-16T05:25:49.212858Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212858Z","LastActivityAt":"2023-02-16T05:25:49.212858Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848963696,"Name":"Soro","NumVillages":1,"Points":26,"Rank":2740,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848963696","BestRank":2740,"BestRankAt":"2023-02-16T05:25:56.352846Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212859Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212859Z","LastActivityAt":"2023-02-16T05:25:49.212859Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213382Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848964085,"Name":"Huayna Capac","NumVillages":1,"Points":26,"Rank":2741,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848964085","BestRank":2741,"BestRankAt":"2023-02-16T05:25:56.352847Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.21286Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21286Z","LastActivityAt":"2023-02-16T05:25:49.21286Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1818,"ScoreAtt":149,"RankDef":1379,"ScoreDef":47157,"RankSup":0,"ScoreSup":0,"RankTotal":1626,"ScoreTotal":47306,"ID":848964811,"Name":"Sir zombi","NumVillages":1,"Points":821,"Rank":1894,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848964811","BestRank":1894,"BestRankAt":"2023-02-16T05:25:56.352847Z","MostPoints":821,"MostPointsAt":"2023-02-16T05:25:56.352847Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21286Z","LastActivityAt":"2023-02-16T05:25:56.352848Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848965205,"Name":"QdamianQ","NumVillages":1,"Points":93,"Rank":2474,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848965205","BestRank":2474,"BestRankAt":"2023-02-16T05:25:56.352848Z","MostPoints":93,"MostPointsAt":"2023-02-16T05:25:49.212861Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212861Z","LastActivityAt":"2023-02-16T05:25:49.212861Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213383Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2339,"ScoreDef":65,"RankSup":0,"ScoreSup":0,"RankTotal":2433,"ScoreTotal":65,"ID":848965531,"Name":"utache","NumVillages":1,"Points":209,"Rank":2255,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848965531","BestRank":2255,"BestRankAt":"2023-02-16T05:25:56.352848Z","MostPoints":209,"MostPointsAt":"2023-02-16T05:25:49.212862Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212862Z","LastActivityAt":"2023-02-16T05:25:49.212862Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848966404,"Name":"*Kaziu*","NumVillages":1,"Points":47,"Rank":2564,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848966404","BestRank":2564,"BestRankAt":"2023-02-16T05:25:56.352849Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:49.212863Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212862Z","LastActivityAt":"2023-02-16T05:25:49.212863Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1122,"ScoreAtt":16270,"RankDef":494,"ScoreDef":534827,"RankSup":0,"ScoreSup":0,"RankTotal":801,"ScoreTotal":551097,"ID":848966521,"Name":"Luƛka1206","NumVillages":3,"Points":12425,"Rank":1040,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848966521","BestRank":1038,"BestRankAt":"2023-02-16T05:25:49.212863Z","MostPoints":12425,"MostPointsAt":"2023-02-16T05:25:56.35285Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.212863Z","LastActivityAt":"2023-02-16T05:25:56.35285Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213384Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":254,"ScoreAtt":1103638,"RankDef":249,"ScoreDef":1532391,"RankSup":386,"ScoreSup":337911,"RankTotal":294,"ScoreTotal":2973940,"ID":848967422,"Name":"Frenchi","NumVillages":1,"Points":10611,"Rank":1069,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848967422","BestRank":1069,"BestRankAt":"2023-02-16T05:25:49.212864Z","MostPoints":10611,"MostPointsAt":"2023-02-16T05:25:49.212864Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212864Z","LastActivityAt":"2023-02-16T05:25:49.212864Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":30,"ScoreAtt":6828027,"RankDef":65,"ScoreDef":5313839,"RankSup":189,"ScoreSup":1018366,"RankTotal":60,"ScoreTotal":13160232,"ID":848967710,"Name":"Exano","NumVillages":258,"Points":2525577,"Rank":25,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848967710","BestRank":24,"BestRankAt":"2023-02-16T05:25:49.212864Z","MostPoints":2525577,"MostPointsAt":"2023-02-16T05:25:56.35285Z","MostVillages":258,"MostVillagesAt":"2023-02-16T05:25:49.212865Z","LastActivityAt":"2023-02-16T05:25:56.352851Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213385Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1824,"ScoreDef":11094,"RankSup":0,"ScoreSup":0,"RankTotal":1986,"ScoreTotal":11094,"ID":848968427,"Name":"misiek210","NumVillages":0,"Points":0,"Rank":3030,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848968427","BestRank":3030,"BestRankAt":"2023-02-16T05:25:49.212865Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212865Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212865Z","LastActivityAt":"2023-02-16T05:25:49.212866Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213386Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2390,"ScoreDef":18,"RankSup":0,"ScoreSup":0,"RankTotal":2486,"ScoreTotal":18,"ID":848969160,"Name":"acer123","NumVillages":1,"Points":1259,"Rank":1783,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848969160","BestRank":1783,"BestRankAt":"2023-02-16T05:25:56.352851Z","MostPoints":1259,"MostPointsAt":"2023-02-16T05:25:56.352851Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212866Z","LastActivityAt":"2023-02-16T05:25:56.352851Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213386Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1875,"ScoreAtt":63,"RankDef":2452,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2427,"ScoreTotal":73,"ID":848969313,"Name":"Vebo","NumVillages":1,"Points":4522,"Rank":1358,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848969313","BestRank":1358,"BestRankAt":"2023-02-16T05:25:56.352851Z","MostPoints":4522,"MostPointsAt":"2023-02-16T05:25:56.352852Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212867Z","LastActivityAt":"2023-02-16T05:25:56.352852Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2054,"ScoreDef":3414,"RankSup":0,"ScoreSup":0,"RankTotal":2177,"ScoreTotal":3414,"ID":848970357,"Name":"KrwawyBaronW3","NumVillages":2,"Points":5453,"Rank":1296,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848970357","BestRank":1296,"BestRankAt":"2023-02-16T05:25:56.352852Z","MostPoints":5453,"MostPointsAt":"2023-02-16T05:25:49.212868Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212867Z","LastActivityAt":"2023-02-16T05:25:49.212868Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":437,"ScoreAtt":472234,"RankDef":1998,"ScoreDef":4609,"RankSup":201,"ScoreSup":931519,"RankTotal":519,"ScoreTotal":1408362,"ID":848971079,"Name":"mocek12345","NumVillages":131,"Points":1146963,"Rank":120,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848971079","BestRank":120,"BestRankAt":"2023-02-16T05:25:56.352853Z","MostPoints":1146963,"MostPointsAt":"2023-02-16T05:25:56.352853Z","MostVillages":131,"MostVillagesAt":"2023-02-16T05:25:56.352853Z","LastActivityAt":"2023-02-16T05:25:56.352853Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213387Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1606,"ScoreAtt":1172,"RankDef":1512,"ScoreDef":32305,"RankSup":1045,"ScoreSup":2874,"RankTotal":1711,"ScoreTotal":36351,"ID":848973715,"Name":"Pawlo101","NumVillages":3,"Points":10841,"Rank":1060,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848973715","BestRank":1060,"BestRankAt":"2023-02-16T05:25:56.352853Z","MostPoints":10841,"MostPointsAt":"2023-02-16T05:25:56.352853Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.21287Z","LastActivityAt":"2023-02-16T05:25:56.352853Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1855,"ScoreAtt":94,"RankDef":2131,"ScoreDef":1969,"RankSup":0,"ScoreSup":0,"RankTotal":2226,"ScoreTotal":2063,"ID":848973968,"Name":"AP1997","NumVillages":1,"Points":249,"Rank":2209,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848973968","BestRank":2209,"BestRankAt":"2023-02-16T05:25:56.352854Z","MostPoints":249,"MostPointsAt":"2023-02-16T05:25:49.212871Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212871Z","LastActivityAt":"2023-02-16T05:25:49.212871Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213388Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1642,"ScoreDef":22665,"RankSup":0,"ScoreSup":0,"RankTotal":1837,"ScoreTotal":22665,"ID":848974611,"Name":"dawid20211","NumVillages":1,"Points":5712,"Rank":1278,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848974611","BestRank":1278,"BestRankAt":"2023-02-16T05:25:56.352854Z","MostPoints":5712,"MostPointsAt":"2023-02-16T05:25:56.352854Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212872Z","LastActivityAt":"2023-02-16T05:25:56.352854Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1447,"ScoreAtt":3145,"RankDef":1431,"ScoreDef":39543,"RankSup":1093,"ScoreSup":1934,"RankTotal":1641,"ScoreTotal":44622,"ID":848974774,"Name":"Arco87","NumVillages":1,"Points":249,"Rank":2210,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848974774","BestRank":2210,"BestRankAt":"2023-02-16T05:25:56.352855Z","MostPoints":249,"MostPointsAt":"2023-02-16T05:25:49.212873Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212872Z","LastActivityAt":"2023-02-16T05:25:49.212873Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1429,"ScoreAtt":3409,"RankDef":709,"ScoreDef":268280,"RankSup":1047,"ScoreSup":2842,"RankTotal":1028,"ScoreTotal":274531,"ID":848975192,"Name":"Chmielu0927","NumVillages":1,"Points":2420,"Rank":1585,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848975192","BestRank":1585,"BestRankAt":"2023-02-16T05:25:56.352855Z","MostPoints":2420,"MostPointsAt":"2023-02-16T05:25:56.352855Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212873Z","LastActivityAt":"2023-02-16T05:25:56.352855Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213389Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":729,"ScoreAtt":110525,"RankDef":477,"ScoreDef":562768,"RankSup":0,"ScoreSup":0,"RankTotal":741,"ScoreTotal":673293,"ID":848976034,"Name":"kiljanos","NumVillages":9,"Points":48218,"Rank":701,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848976034","BestRank":701,"BestRankAt":"2023-02-16T05:25:56.352856Z","MostPoints":48218,"MostPointsAt":"2023-02-16T05:25:56.352856Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.212874Z","LastActivityAt":"2023-02-16T05:25:56.352856Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1933,"ScoreAtt":23,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2472,"ScoreTotal":23,"ID":848976720,"Name":"Lord Patka999","NumVillages":1,"Points":412,"Rank":2065,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848976720","BestRank":2065,"BestRankAt":"2023-02-16T05:25:56.352856Z","MostPoints":412,"MostPointsAt":"2023-02-16T05:25:49.212875Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212875Z","LastActivityAt":"2023-02-16T05:25:49.212875Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21339Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1858,"ScoreAtt":92,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2421,"ScoreTotal":92,"ID":848977118,"Name":"sucha woda","NumVillages":1,"Points":469,"Rank":2027,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977118","BestRank":2027,"BestRankAt":"2023-02-16T05:25:56.352857Z","MostPoints":469,"MostPointsAt":"2023-02-16T05:25:56.352857Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212875Z","LastActivityAt":"2023-02-16T05:25:56.352857Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1647,"ScoreAtt":800,"RankDef":2002,"ScoreDef":4530,"RankSup":0,"ScoreSup":0,"RankTotal":2108,"ScoreTotal":5330,"ID":848977203,"Name":"mateusz15963","NumVillages":1,"Points":6747,"Rank":1221,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977203","BestRank":1221,"BestRankAt":"2023-02-16T05:25:56.352857Z","MostPoints":6747,"MostPointsAt":"2023-02-16T05:25:56.352858Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212876Z","LastActivityAt":"2023-02-16T05:25:56.352858Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":983,"ScoreDef":131203,"RankSup":1273,"ScoreSup":53,"RankTotal":1291,"ScoreTotal":131256,"ID":848977412,"Name":"goska111","NumVillages":1,"Points":3510,"Rank":1455,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977412","BestRank":1455,"BestRankAt":"2023-02-16T05:25:56.352858Z","MostPoints":3510,"MostPointsAt":"2023-02-16T05:25:56.352858Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212877Z","LastActivityAt":"2023-02-16T05:25:56.352858Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1103,"ScoreAtt":17681,"RankDef":1116,"ScoreDef":91597,"RankSup":824,"ScoreSup":20095,"RankTotal":1298,"ScoreTotal":129373,"ID":848977600,"Name":"piwkoo","NumVillages":15,"Points":79365,"Rank":585,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977600","BestRank":585,"BestRankAt":"2023-02-16T05:25:56.352858Z","MostPoints":79365,"MostPointsAt":"2023-02-16T05:25:56.352859Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.212878Z","LastActivityAt":"2023-02-16T05:25:56.352859Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213391Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":756,"ScoreAtt":96990,"RankDef":883,"ScoreDef":175400,"RankSup":679,"ScoreSup":57783,"RankTotal":977,"ScoreTotal":330173,"ID":848977649,"Name":"Maszlug","NumVillages":24,"Points":164324,"Rank":446,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977649","BestRank":446,"BestRankAt":"2023-02-16T05:25:56.352859Z","MostPoints":164324,"MostPointsAt":"2023-02-16T05:25:56.352859Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.212878Z","LastActivityAt":"2023-02-16T05:25:56.352859Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":298,"ScoreAtt":922329,"RankDef":1492,"ScoreDef":34469,"RankSup":312,"ScoreSup":492996,"RankTotal":506,"ScoreTotal":1449794,"ID":848977748,"Name":"Varendial x Visyq","NumVillages":1,"Points":26,"Rank":2742,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848977748","BestRank":2742,"BestRankAt":"2023-02-16T05:25:56.35286Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212879Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212879Z","LastActivityAt":"2023-02-16T05:25:49.21288Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1595,"ScoreDef":25668,"RankSup":1064,"ScoreSup":2533,"RankTotal":1783,"ScoreTotal":28201,"ID":848978052,"Name":"Biegacz1","NumVillages":1,"Points":171,"Rank":2328,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978052","BestRank":2328,"BestRankAt":"2023-02-16T05:25:56.35286Z","MostPoints":171,"MostPointsAt":"2023-02-16T05:25:49.21288Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21288Z","LastActivityAt":"2023-02-16T05:25:49.21288Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213392Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848978169,"Name":"zielonyjohn","NumVillages":1,"Points":26,"Rank":2743,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978169","BestRank":2743,"BestRankAt":"2023-02-16T05:25:56.352861Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212881Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212881Z","LastActivityAt":"2023-02-16T05:25:49.212881Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1169,"ScoreAtt":12182,"RankDef":2293,"ScoreDef":231,"RankSup":0,"ScoreSup":0,"RankTotal":1952,"ScoreTotal":12413,"ID":848978284,"Name":"olos","NumVillages":0,"Points":0,"Rank":2998,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978284","BestRank":2998,"BestRankAt":"2023-02-16T05:25:56.352861Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212882Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212881Z","LastActivityAt":"2023-02-16T05:25:49.212882Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":556,"ScoreAtt":272949,"RankDef":45,"ScoreDef":6928341,"RankSup":440,"ScoreSup":243378,"RankTotal":113,"ScoreTotal":7444668,"ID":848978297,"Name":"Marcinmesi","NumVillages":7,"Points":39458,"Rank":742,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978297","BestRank":742,"BestRankAt":"2023-02-16T05:25:56.352862Z","MostPoints":39458,"MostPointsAt":"2023-02-16T05:25:56.352862Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.212882Z","LastActivityAt":"2023-02-16T05:25:56.352862Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213393Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2070,"ScoreDef":3024,"RankSup":0,"ScoreSup":0,"RankTotal":2187,"ScoreTotal":3024,"ID":848978534,"Name":"JUlkA07","NumVillages":0,"Points":0,"Rank":2999,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978534","BestRank":2999,"BestRankAt":"2023-02-16T05:25:56.352862Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212883Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212883Z","LastActivityAt":"2023-02-16T05:25:49.212883Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1675,"ScoreAtt":678,"RankDef":189,"ScoreDef":2004353,"RankSup":1206,"ScoreSup":330,"RankTotal":409,"ScoreTotal":2005361,"ID":848978903,"Name":"RIPNAMAJKU","NumVillages":5,"Points":37327,"Rank":760,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848978903","BestRank":757,"BestRankAt":"2023-02-16T05:25:49.212884Z","MostPoints":37327,"MostPointsAt":"2023-02-16T05:25:49.212884Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.212884Z","LastActivityAt":"2023-02-16T05:25:49.212884Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980119,"Name":"ndse","NumVillages":1,"Points":26,"Rank":2744,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980119","BestRank":2744,"BestRankAt":"2023-02-16T05:25:56.352863Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212885Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212885Z","LastActivityAt":"2023-02-16T05:25:49.212885Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213394Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980120,"Name":"bsju","NumVillages":1,"Points":26,"Rank":2745,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980120","BestRank":2745,"BestRankAt":"2023-02-16T05:25:56.352863Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212885Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212885Z","LastActivityAt":"2023-02-16T05:25:49.212886Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":812,"ScoreAtt":75561,"RankDef":271,"ScoreDef":1380554,"RankSup":920,"ScoreSup":9740,"RankTotal":503,"ScoreTotal":1465855,"ID":848980237,"Name":"yonek111","NumVillages":1,"Points":8776,"Rank":1121,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980237","BestRank":1121,"BestRankAt":"2023-02-16T05:25:56.352864Z","MostPoints":8776,"MostPointsAt":"2023-02-16T05:25:49.212886Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212886Z","LastActivityAt":"2023-02-16T05:25:49.212886Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980456,"Name":"gsno","NumVillages":1,"Points":26,"Rank":2746,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980456","BestRank":2746,"BestRankAt":"2023-02-16T05:25:56.352864Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212887Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212887Z","LastActivityAt":"2023-02-16T05:25:49.212887Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213395Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980458,"Name":"khiu","NumVillages":1,"Points":26,"Rank":2747,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980458","BestRank":2747,"BestRankAt":"2023-02-16T05:25:56.352865Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212888Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212887Z","LastActivityAt":"2023-02-16T05:25:49.212888Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980459,"Name":"cvde","NumVillages":1,"Points":26,"Rank":2748,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980459","BestRank":2748,"BestRankAt":"2023-02-16T05:25:56.352865Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212888Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212888Z","LastActivityAt":"2023-02-16T05:25:49.212888Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980460,"Name":"fswq","NumVillages":1,"Points":26,"Rank":2749,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980460","BestRank":2749,"BestRankAt":"2023-02-16T05:25:56.352866Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212889Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212889Z","LastActivityAt":"2023-02-16T05:25:49.212889Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980461,"Name":"nipki","NumVillages":1,"Points":26,"Rank":2750,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980461","BestRank":2750,"BestRankAt":"2023-02-16T05:25:56.352866Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.21289Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21289Z","LastActivityAt":"2023-02-16T05:25:49.21289Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213396Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980492,"Name":"veru","NumVillages":1,"Points":26,"Rank":2751,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980492","BestRank":2751,"BestRankAt":"2023-02-16T05:25:56.352867Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.21289Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21289Z","LastActivityAt":"2023-02-16T05:25:49.21289Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980493,"Name":"tews","NumVillages":1,"Points":26,"Rank":2752,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980493","BestRank":2752,"BestRankAt":"2023-02-16T05:25:56.352867Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212891Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212891Z","LastActivityAt":"2023-02-16T05:25:49.212891Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980494,"Name":"laszc","NumVillages":1,"Points":26,"Rank":2753,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980494","BestRank":2753,"BestRankAt":"2023-02-16T05:25:56.352868Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212892Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212892Z","LastActivityAt":"2023-02-16T05:25:49.212892Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980495,"Name":"nmih","NumVillages":1,"Points":26,"Rank":2754,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980495","BestRank":2754,"BestRankAt":"2023-02-16T05:25:56.352868Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212892Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212892Z","LastActivityAt":"2023-02-16T05:25:49.212893Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213397Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980496,"Name":"afad","NumVillages":1,"Points":26,"Rank":2755,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980496","BestRank":2755,"BestRankAt":"2023-02-16T05:25:56.352869Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212893Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212893Z","LastActivityAt":"2023-02-16T05:25:49.212893Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213398Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980497,"Name":"vosd","NumVillages":1,"Points":26,"Rank":2756,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980497","BestRank":2756,"BestRankAt":"2023-02-16T05:25:56.352869Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212894Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212894Z","LastActivityAt":"2023-02-16T05:25:49.212894Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213398Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848980498,"Name":"amlk","NumVillages":1,"Points":26,"Rank":2757,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980498","BestRank":2757,"BestRankAt":"2023-02-16T05:25:56.35287Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212895Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212894Z","LastActivityAt":"2023-02-16T05:25:49.212895Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213398Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1975,"ScoreAtt":4,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2543,"ScoreTotal":4,"ID":848980727,"Name":"vasper123","NumVillages":1,"Points":729,"Rank":1920,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848980727","BestRank":1920,"BestRankAt":"2023-02-16T05:25:56.35287Z","MostPoints":729,"MostPointsAt":"2023-02-16T05:25:56.35287Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212895Z","LastActivityAt":"2023-02-16T05:25:56.35287Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":879,"ScoreDef":178874,"RankSup":0,"ScoreSup":0,"RankTotal":1191,"ScoreTotal":178874,"ID":848981244,"Name":"Kaktus49","NumVillages":1,"Points":4169,"Rank":1387,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848981244","BestRank":1387,"BestRankAt":"2023-02-16T05:25:56.352871Z","MostPoints":4169,"MostPointsAt":"2023-02-16T05:25:56.352871Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212896Z","LastActivityAt":"2023-02-16T05:25:56.352871Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2153,"ScoreDef":1714,"RankSup":0,"ScoreSup":0,"RankTotal":2250,"ScoreTotal":1714,"ID":848981523,"Name":"wozny1020","NumVillages":1,"Points":284,"Rank":2177,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848981523","BestRank":2177,"BestRankAt":"2023-02-16T05:25:56.352871Z","MostPoints":284,"MostPointsAt":"2023-02-16T05:25:56.352871Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212896Z","LastActivityAt":"2023-02-16T05:25:56.352872Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213399Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1582,"ScoreAtt":1373,"RankDef":1136,"ScoreDef":86508,"RankSup":1066,"ScoreSup":2509,"RankTotal":1429,"ScoreTotal":90390,"ID":848981726,"Name":"Rudzia06","NumVillages":12,"Points":58967,"Rank":659,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848981726","BestRank":659,"BestRankAt":"2023-02-16T05:25:56.352872Z","MostPoints":58967,"MostPointsAt":"2023-02-16T05:25:56.352872Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.212898Z","LastActivityAt":"2023-02-16T05:25:56.352872Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2134Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1585,"ScoreAtt":1329,"RankDef":1914,"ScoreDef":7174,"RankSup":0,"ScoreSup":0,"RankTotal":2022,"ScoreTotal":8503,"ID":848982634,"Name":"anda22","NumVillages":8,"Points":17779,"Rank":959,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848982634","BestRank":959,"BestRankAt":"2023-02-16T05:25:56.352872Z","MostPoints":17779,"MostPointsAt":"2023-02-16T05:25:56.352873Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.212899Z","LastActivityAt":"2023-02-16T05:25:56.352873Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2134Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2320,"ScoreDef":124,"RankSup":0,"ScoreSup":0,"RankTotal":2409,"ScoreTotal":124,"ID":848982635,"Name":"piter787878","NumVillages":1,"Points":153,"Rank":2349,"TribeID":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848982635","BestRank":2349,"BestRankAt":"2023-02-16T05:25:56.352873Z","MostPoints":153,"MostPointsAt":"2023-02-16T05:25:49.2129Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.2129Z","LastActivityAt":"2023-02-16T05:25:49.2129Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2134Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848983660,"Name":"Janusz9704","NumVillages":1,"Points":7062,"Rank":1206,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848983660","BestRank":1206,"BestRankAt":"2023-02-16T05:25:56.352873Z","MostPoints":7062,"MostPointsAt":"2023-02-16T05:25:49.212901Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.2129Z","LastActivityAt":"2023-02-16T05:25:49.212901Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1290,"ScoreAtt":6617,"RankDef":1083,"ScoreDef":98155,"RankSup":0,"ScoreSup":0,"RankTotal":1372,"ScoreTotal":104772,"ID":848984022,"Name":"dafffciu","NumVillages":1,"Points":9634,"Rank":1096,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848984022","BestRank":1096,"BestRankAt":"2023-02-16T05:25:56.352874Z","MostPoints":9634,"MostPointsAt":"2023-02-16T05:25:56.352874Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212901Z","LastActivityAt":"2023-02-16T05:25:56.352874Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":2,"ScoreAtt":19935406,"RankDef":167,"ScoreDef":2278363,"RankSup":376,"ScoreSup":358092,"RankTotal":23,"ScoreTotal":22571861,"ID":848985692,"Name":"Lord Axen","NumVillages":347,"Points":3331514,"Rank":13,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848985692","BestRank":13,"BestRankAt":"2023-02-16T05:25:49.212902Z","MostPoints":3331514,"MostPointsAt":"2023-02-16T05:25:56.352875Z","MostVillages":347,"MostVillagesAt":"2023-02-16T05:25:49.212902Z","LastActivityAt":"2023-02-16T05:25:56.352875Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213401Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":336,"ScoreAtt":773527,"RankDef":624,"ScoreDef":351736,"RankSup":496,"ScoreSup":175209,"RankTotal":541,"ScoreTotal":1300472,"ID":848986287,"Name":"Klemens Zdobywca 69","NumVillages":16,"Points":153732,"Rank":463,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848986287","BestRank":460,"BestRankAt":"2023-02-16T05:25:49.212903Z","MostPoints":153732,"MostPointsAt":"2023-02-16T05:25:56.352875Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.212903Z","LastActivityAt":"2023-02-16T05:25:56.352875Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213402Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1481,"ScoreAtt":2500,"RankDef":817,"ScoreDef":205635,"RankSup":738,"ScoreSup":37862,"RankTotal":1058,"ScoreTotal":245997,"ID":848986638,"Name":"Gwen1","NumVillages":8,"Points":7783,"Rank":1166,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848986638","BestRank":1166,"BestRankAt":"2023-02-16T05:25:56.352876Z","MostPoints":7783,"MostPointsAt":"2023-02-16T05:25:56.352876Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.212904Z","LastActivityAt":"2023-02-16T05:25:56.352876Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213402Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":555,"ScoreAtt":272952,"RankDef":893,"ScoreDef":170400,"RankSup":252,"ScoreSup":687812,"RankTotal":587,"ScoreTotal":1131164,"ID":848987051,"Name":"Lord Pumbarak","NumVillages":133,"Points":1099723,"Rank":126,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848987051","BestRank":126,"BestRankAt":"2023-02-16T05:25:56.352876Z","MostPoints":1099723,"MostPointsAt":"2023-02-16T05:25:56.352876Z","MostVillages":133,"MostVillagesAt":"2023-02-16T05:25:49.212904Z","LastActivityAt":"2023-02-16T05:25:56.352876Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213402Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1706,"ScoreDef":17735,"RankSup":0,"ScoreSup":0,"RankTotal":1886,"ScoreTotal":17735,"ID":848987695,"Name":"goldman","NumVillages":1,"Points":3321,"Rank":1475,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848987695","BestRank":1475,"BestRankAt":"2023-02-16T05:25:56.352877Z","MostPoints":3321,"MostPointsAt":"2023-02-16T05:25:49.212905Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212905Z","LastActivityAt":"2023-02-16T05:25:49.212905Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":709,"ScoreAtt":122247,"RankDef":895,"ScoreDef":169682,"RankSup":1151,"ScoreSup":913,"RankTotal":1009,"ScoreTotal":292842,"ID":848988401,"Name":"niko30","NumVillages":3,"Points":13793,"Rank":1015,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848988401","BestRank":1015,"BestRankAt":"2023-02-16T05:25:49.212906Z","MostPoints":13793,"MostPointsAt":"2023-02-16T05:25:56.352877Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.212906Z","LastActivityAt":"2023-02-16T05:25:56.352877Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1703,"ScoreAtt":505,"RankDef":970,"ScoreDef":138535,"RankSup":1071,"ScoreSup":2382,"RankTotal":1263,"ScoreTotal":141422,"ID":848988744,"Name":"euro97","NumVillages":7,"Points":46020,"Rank":710,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848988744","BestRank":709,"BestRankAt":"2023-02-16T05:25:49.212907Z","MostPoints":46020,"MostPointsAt":"2023-02-16T05:25:49.212907Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.212907Z","LastActivityAt":"2023-02-16T05:25:49.212907Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213403Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848989774,"Name":"kuba939","NumVillages":1,"Points":26,"Rank":2758,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848989774","BestRank":2758,"BestRankAt":"2023-02-16T05:25:56.352878Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.352878Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.352878Z","LastActivityAt":"2023-02-16T05:25:56.352878Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.353261Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1241,"ScoreAtt":8316,"RankDef":1599,"ScoreDef":25496,"RankSup":0,"ScoreSup":0,"RankTotal":1730,"ScoreTotal":33812,"ID":848989855,"Name":"Zard","NumVillages":3,"Points":23269,"Rank":880,"TribeID":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848989855","BestRank":879,"BestRankAt":"2023-02-16T05:25:49.212907Z","MostPoints":23269,"MostPointsAt":"2023-02-16T05:25:49.212908Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.212907Z","LastActivityAt":"2023-02-16T05:25:49.212908Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213404Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1810,"ScoreAtt":161,"RankDef":527,"ScoreDef":485142,"RankSup":1147,"ScoreSup":935,"RankTotal":849,"ScoreTotal":486238,"ID":848993505,"Name":"Mallutka33","NumVillages":2,"Points":10648,"Rank":1068,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848993505","BestRank":1067,"BestRankAt":"2023-02-16T05:25:49.212908Z","MostPoints":10648,"MostPointsAt":"2023-02-16T05:25:49.212908Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212908Z","LastActivityAt":"2023-02-16T05:25:49.212908Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213404Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2185,"ScoreDef":1169,"RankSup":0,"ScoreSup":0,"RankTotal":2284,"ScoreTotal":1169,"ID":848993769,"Name":"Lord Rycerz96","NumVillages":2,"Points":3429,"Rank":1465,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848993769","BestRank":1465,"BestRankAt":"2023-02-16T05:25:56.35288Z","MostPoints":3429,"MostPointsAt":"2023-02-16T05:25:49.212909Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212909Z","LastActivityAt":"2023-02-16T05:25:49.212909Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213404Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848993903,"Name":"ekopark","NumVillages":1,"Points":52,"Rank":2544,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848993903","BestRank":2544,"BestRankAt":"2023-02-16T05:25:56.35288Z","MostPoints":52,"MostPointsAt":"2023-02-16T05:25:49.21291Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212909Z","LastActivityAt":"2023-02-16T05:25:49.21291Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213404Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":251,"ScoreAtt":1121855,"RankDef":1763,"ScoreDef":14270,"RankSup":110,"ScoreSup":2008139,"RankTotal":280,"ScoreTotal":3144264,"ID":848995242,"Name":"Szpingischan","NumVillages":97,"Points":939344,"Rank":156,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995242","BestRank":156,"BestRankAt":"2023-02-16T05:25:49.21291Z","MostPoints":939344,"MostPointsAt":"2023-02-16T05:25:56.352881Z","MostVillages":97,"MostVillagesAt":"2023-02-16T05:25:49.21291Z","LastActivityAt":"2023-02-16T05:25:56.352881Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848995262,"Name":"Dj-saken","NumVillages":1,"Points":445,"Rank":2043,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995262","BestRank":2043,"BestRankAt":"2023-02-16T05:25:56.352881Z","MostPoints":445,"MostPointsAt":"2023-02-16T05:25:56.352881Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212911Z","LastActivityAt":"2023-02-16T05:25:56.352881Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1108,"ScoreDef":92382,"RankSup":0,"ScoreSup":0,"RankTotal":1416,"ScoreTotal":92382,"ID":848995291,"Name":"SirArthureek","NumVillages":1,"Points":5028,"Rank":1317,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995291","BestRank":1317,"BestRankAt":"2023-02-16T05:25:56.352882Z","MostPoints":5028,"MostPointsAt":"2023-02-16T05:25:49.212911Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212911Z","LastActivityAt":"2023-02-16T05:25:49.212912Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213405Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2020,"ScoreDef":4104,"RankSup":0,"ScoreSup":0,"RankTotal":2149,"ScoreTotal":4104,"ID":848995446,"Name":"AndrzejJ96","NumVillages":1,"Points":301,"Rank":2154,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995446","BestRank":2154,"BestRankAt":"2023-02-16T05:25:56.352882Z","MostPoints":301,"MostPointsAt":"2023-02-16T05:25:56.352882Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212912Z","LastActivityAt":"2023-02-16T05:25:56.352882Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":402,"ScoreAtt":585266,"RankDef":1299,"ScoreDef":57312,"RankSup":442,"ScoreSup":242363,"RankTotal":661,"ScoreTotal":884941,"ID":848995478,"Name":"Delongii","NumVillages":78,"Points":548334,"Rank":253,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848995478","BestRank":253,"BestRankAt":"2023-02-16T05:25:56.352883Z","MostPoints":548334,"MostPointsAt":"2023-02-16T05:25:56.352883Z","MostVillages":78,"MostVillagesAt":"2023-02-16T05:25:56.352883Z","LastActivityAt":"2023-02-16T05:25:56.352883Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":848997058,"Name":"jaktoon","NumVillages":1,"Points":78,"Rank":2487,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848997058","BestRank":2487,"BestRankAt":"2023-02-16T05:25:56.352883Z","MostPoints":78,"MostPointsAt":"2023-02-16T05:25:49.212913Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212913Z","LastActivityAt":"2023-02-16T05:25:49.212914Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213406Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2208,"ScoreDef":847,"RankSup":1279,"ScoreSup":45,"RankTotal":2292,"ScoreTotal":892,"ID":848998530,"Name":"Orgetoryks","NumVillages":5,"Points":21455,"Rank":900,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848998530","BestRank":900,"BestRankAt":"2023-02-16T05:25:56.352884Z","MostPoints":21455,"MostPointsAt":"2023-02-16T05:25:56.352884Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.212914Z","LastActivityAt":"2023-02-16T05:25:56.352884Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":998,"ScoreAtt":30393,"RankDef":1251,"ScoreDef":62583,"RankSup":0,"ScoreSup":0,"RankTotal":1415,"ScoreTotal":92976,"ID":848999448,"Name":"Etitek","NumVillages":3,"Points":6817,"Rank":1217,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848999448","BestRank":1187,"BestRankAt":"2023-02-16T05:25:49.212915Z","MostPoints":7467,"MostPointsAt":"2023-02-16T05:25:49.212915Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.212915Z","LastActivityAt":"2023-02-16T05:25:49.212915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1657,"ScoreDef":21637,"RankSup":0,"ScoreSup":0,"RankTotal":1845,"ScoreTotal":21637,"ID":848999518,"Name":"CccC2","NumVillages":1,"Points":140,"Rank":2371,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848999518","BestRank":2371,"BestRankAt":"2023-02-16T05:25:56.352885Z","MostPoints":140,"MostPointsAt":"2023-02-16T05:25:49.212915Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212915Z","LastActivityAt":"2023-02-16T05:25:49.212915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":492,"ScoreAtt":371185,"RankDef":1511,"ScoreDef":32400,"RankSup":555,"ScoreSup":128823,"RankTotal":818,"ScoreTotal":532408,"ID":848999671,"Name":"TakaTo","NumVillages":43,"Points":253527,"Rank":380,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=848999671","BestRank":380,"BestRankAt":"2023-02-16T05:25:56.352885Z","MostPoints":253527,"MostPointsAt":"2023-02-16T05:25:56.352885Z","MostVillages":43,"MostVillagesAt":"2023-02-16T05:25:56.352885Z","LastActivityAt":"2023-02-16T05:25:56.352886Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213407Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1245,"ScoreAtt":8063,"RankDef":1346,"ScoreDef":51162,"RankSup":1419,"ScoreSup":1,"RankTotal":1555,"ScoreTotal":59226,"ID":849000135,"Name":"NoeyPl","NumVillages":5,"Points":26349,"Rank":849,"TribeID":1758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849000135","BestRank":849,"BestRankAt":"2023-02-16T05:25:56.352886Z","MostPoints":26349,"MostPointsAt":"2023-02-16T05:25:56.352886Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.212917Z","LastActivityAt":"2023-02-16T05:25:56.352886Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1260,"ScoreAtt":7495,"RankDef":2061,"ScoreDef":3276,"RankSup":676,"ScoreSup":59373,"RankTotal":1499,"ScoreTotal":70144,"ID":849001277,"Name":"CiÄ™ĆŒki Kawalerzysta","NumVillages":3,"Points":14048,"Rank":1013,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001277","BestRank":1012,"BestRankAt":"2023-02-16T05:25:49.212917Z","MostPoints":14048,"MostPointsAt":"2023-02-16T05:25:49.212917Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.212917Z","LastActivityAt":"2023-02-16T05:25:49.212918Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849001388,"Name":"Mizerkaa","NumVillages":1,"Points":26,"Rank":2759,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001388","BestRank":2759,"BestRankAt":"2023-02-16T05:25:56.352887Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212918Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212918Z","LastActivityAt":"2023-02-16T05:25:49.212918Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213408Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":267,"ScoreAtt":1061216,"RankDef":1633,"ScoreDef":23319,"RankSup":95,"ScoreSup":2288005,"RankTotal":261,"ScoreTotal":3372540,"ID":849001572,"Name":"Daremny","NumVillages":64,"Points":599954,"Rank":238,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001572","BestRank":238,"BestRankAt":"2023-02-16T05:25:56.352887Z","MostPoints":599954,"MostPointsAt":"2023-02-16T05:25:56.352888Z","MostVillages":64,"MostVillagesAt":"2023-02-16T05:25:49.212919Z","LastActivityAt":"2023-02-16T05:25:56.352888Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":258,"ScoreAtt":1092271,"RankDef":162,"ScoreDef":2388705,"RankSup":152,"ScoreSup":1481187,"RankTotal":189,"ScoreTotal":4962163,"ID":849001724,"Name":"Tloluvin","NumVillages":4,"Points":40212,"Rank":739,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001724","BestRank":739,"BestRankAt":"2023-02-16T05:25:56.352888Z","MostPoints":40212,"MostPointsAt":"2023-02-16T05:25:49.21292Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.212919Z","LastActivityAt":"2023-02-16T05:25:49.21292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849001762,"Name":"J3bacTo","NumVillages":1,"Points":267,"Rank":2193,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849001762","BestRank":2193,"BestRankAt":"2023-02-16T05:25:56.352888Z","MostPoints":267,"MostPointsAt":"2023-02-16T05:25:56.352889Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21292Z","LastActivityAt":"2023-02-16T05:25:56.352889Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213409Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":513,"ScoreAtt":334481,"RankDef":740,"ScoreDef":252066,"RankSup":696,"ScoreSup":51323,"RankTotal":763,"ScoreTotal":637870,"ID":849002091,"Name":"klima69","NumVillages":18,"Points":148422,"Rank":469,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849002091","BestRank":469,"BestRankAt":"2023-02-16T05:25:49.212921Z","MostPoints":148422,"MostPointsAt":"2023-02-16T05:25:56.352889Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:49.212921Z","LastActivityAt":"2023-02-16T05:25:56.352889Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849002486,"Name":"ManchesterKing","NumVillages":1,"Points":79,"Rank":2486,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849002486","BestRank":2486,"BestRankAt":"2023-02-16T05:25:56.352889Z","MostPoints":79,"MostPointsAt":"2023-02-16T05:25:49.212921Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212921Z","LastActivityAt":"2023-02-16T05:25:49.212922Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1039,"ScoreAtt":24518,"RankDef":570,"ScoreDef":408463,"RankSup":569,"ScoreSup":118378,"RankTotal":800,"ScoreTotal":551359,"ID":849002796,"Name":"Hamar","NumVillages":15,"Points":82277,"Rank":577,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849002796","BestRank":577,"BestRankAt":"2023-02-16T05:25:56.35289Z","MostPoints":82277,"MostPointsAt":"2023-02-16T05:25:56.35289Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.212922Z","LastActivityAt":"2023-02-16T05:25:56.35289Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849003332,"Name":"Co biedaa","NumVillages":1,"Points":26,"Rank":2760,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849003332","BestRank":2760,"BestRankAt":"2023-02-16T05:25:56.352891Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212923Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212923Z","LastActivityAt":"2023-02-16T05:25:49.212923Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":360,"ScoreAtt":672395,"RankDef":911,"ScoreDef":161247,"RankSup":524,"ScoreSup":148516,"RankTotal":620,"ScoreTotal":982158,"ID":849004274,"Name":"guex","NumVillages":28,"Points":273092,"Rank":366,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004274","BestRank":366,"BestRankAt":"2023-02-16T05:25:56.352891Z","MostPoints":273092,"MostPointsAt":"2023-02-16T05:25:56.352891Z","MostVillages":28,"MostVillagesAt":"2023-02-16T05:25:56.352891Z","LastActivityAt":"2023-02-16T05:25:56.352891Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213411Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849004338,"Name":"Hwastu","NumVillages":1,"Points":26,"Rank":2761,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004338","BestRank":2761,"BestRankAt":"2023-02-16T05:25:56.352892Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212924Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212924Z","LastActivityAt":"2023-02-16T05:25:49.212924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213411Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1874,"ScoreAtt":67,"RankDef":2155,"ScoreDef":1688,"RankSup":0,"ScoreSup":0,"RankTotal":2247,"ScoreTotal":1755,"ID":849004461,"Name":"LOƁKICK","NumVillages":1,"Points":1908,"Rank":1669,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004461","BestRank":1669,"BestRankAt":"2023-02-16T05:25:56.352892Z","MostPoints":1908,"MostPointsAt":"2023-02-16T05:25:56.352892Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212925Z","LastActivityAt":"2023-02-16T05:25:56.352892Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213411Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":265,"ScoreAtt":1073197,"RankDef":717,"ScoreDef":264518,"RankSup":528,"ScoreSup":145861,"RankTotal":500,"ScoreTotal":1483576,"ID":849004759,"Name":"..Tomek..","NumVillages":1,"Points":2310,"Rank":1599,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849004759","BestRank":1599,"BestRankAt":"2023-02-16T05:25:56.352893Z","MostPoints":2310,"MostPointsAt":"2023-02-16T05:25:56.352893Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212925Z","LastActivityAt":"2023-02-16T05:25:56.352893Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213412Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1202,"ScoreAtt":10370,"RankDef":1826,"ScoreDef":10790,"RankSup":0,"ScoreSup":0,"RankTotal":1849,"ScoreTotal":21160,"ID":849005658,"Name":"Skols998","NumVillages":1,"Points":2841,"Rank":1538,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849005658","BestRank":1538,"BestRankAt":"2023-02-16T05:25:56.352893Z","MostPoints":2841,"MostPointsAt":"2023-02-16T05:25:56.352893Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212926Z","LastActivityAt":"2023-02-16T05:25:56.352893Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213412Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1359,"ScoreAtt":4941,"RankDef":1508,"ScoreDef":32587,"RankSup":0,"ScoreSup":0,"RankTotal":1698,"ScoreTotal":37528,"ID":849005829,"Name":"themonk","NumVillages":4,"Points":13430,"Rank":1025,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849005829","BestRank":1023,"BestRankAt":"2023-02-16T05:25:49.212927Z","MostPoints":13430,"MostPointsAt":"2023-02-16T05:25:56.352894Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.212927Z","LastActivityAt":"2023-02-16T05:25:56.352894Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213413Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1326,"ScoreAtt":5690,"RankDef":966,"ScoreDef":140708,"RankSup":716,"ScoreSup":43207,"RankTotal":1160,"ScoreTotal":189605,"ID":849006011,"Name":"faraon1981","NumVillages":1,"Points":453,"Rank":2036,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006011","BestRank":2036,"BestRankAt":"2023-02-16T05:25:56.352894Z","MostPoints":453,"MostPointsAt":"2023-02-16T05:25:56.352894Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212927Z","LastActivityAt":"2023-02-16T05:25:56.352895Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213413Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":342,"ScoreAtt":746908,"RankDef":160,"ScoreDef":2408894,"RankSup":564,"ScoreSup":122180,"RankTotal":269,"ScoreTotal":3277982,"ID":849006145,"Name":"pledos","NumVillages":12,"Points":104204,"Rank":529,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006145","BestRank":529,"BestRankAt":"2023-02-16T05:25:56.352895Z","MostPoints":104204,"MostPointsAt":"2023-02-16T05:25:56.352895Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.212928Z","LastActivityAt":"2023-02-16T05:25:56.352895Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213413Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1908,"ScoreAtt":36,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2458,"ScoreTotal":36,"ID":849006194,"Name":"KAUN","NumVillages":1,"Points":180,"Rank":2312,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006194","BestRank":2312,"BestRankAt":"2023-02-16T05:25:56.352895Z","MostPoints":180,"MostPointsAt":"2023-02-16T05:25:49.212929Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212929Z","LastActivityAt":"2023-02-16T05:25:49.212929Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1222,"ScoreAtt":9287,"RankDef":343,"ScoreDef":898707,"RankSup":0,"ScoreSup":0,"RankTotal":648,"ScoreTotal":907994,"ID":849006385,"Name":"Lord MARCEL12345","NumVillages":14,"Points":52710,"Rank":677,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006385","BestRank":677,"BestRankAt":"2023-02-16T05:25:56.352896Z","MostPoints":52710,"MostPointsAt":"2023-02-16T05:25:56.352896Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:56.352896Z","LastActivityAt":"2023-02-16T05:25:56.352896Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":552,"ScoreAtt":275412,"RankDef":1377,"ScoreDef":47532,"RankSup":523,"ScoreSup":148973,"RankTotal":861,"ScoreTotal":471917,"ID":849006412,"Name":"Madarra","NumVillages":37,"Points":335228,"Rank":338,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849006412","BestRank":338,"BestRankAt":"2023-02-16T05:25:49.21293Z","MostPoints":335228,"MostPointsAt":"2023-02-16T05:25:56.352897Z","MostVillages":37,"MostVillagesAt":"2023-02-16T05:25:49.21293Z","LastActivityAt":"2023-02-16T05:25:56.352897Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213414Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1928,"ScoreAtt":27,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2468,"ScoreTotal":27,"ID":849008396,"Name":"szymoniasty2740","NumVillages":1,"Points":352,"Rank":2109,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849008396","BestRank":2109,"BestRankAt":"2023-02-16T05:25:56.352897Z","MostPoints":352,"MostPointsAt":"2023-02-16T05:25:49.212931Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212931Z","LastActivityAt":"2023-02-16T05:25:49.212931Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849009059,"Name":"Krasnoludek.Mędrek","NumVillages":1,"Points":26,"Rank":2762,"TribeID":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849009059","BestRank":2762,"BestRankAt":"2023-02-16T05:25:56.352898Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212932Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212932Z","LastActivityAt":"2023-02-16T05:25:49.212932Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1228,"ScoreAtt":8931,"RankDef":1983,"ScoreDef":5287,"RankSup":883,"ScoreSup":13527,"RankTotal":1787,"ScoreTotal":27745,"ID":849009623,"Name":"Sir zamelus365","NumVillages":7,"Points":38529,"Rank":750,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849009623","BestRank":750,"BestRankAt":"2023-02-16T05:25:56.352898Z","MostPoints":38529,"MostPointsAt":"2023-02-16T05:25:56.352898Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.212932Z","LastActivityAt":"2023-02-16T05:25:56.352898Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":143,"ScoreAtt":2170020,"RankDef":175,"ScoreDef":2131721,"RankSup":322,"ScoreSup":459024,"RankTotal":198,"ScoreTotal":4760765,"ID":849009945,"Name":"TheZeNiT","NumVillages":1,"Points":26,"Rank":2763,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849009945","BestRank":2763,"BestRankAt":"2023-02-16T05:25:56.352899Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212933Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212933Z","LastActivityAt":"2023-02-16T05:25:49.212933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213415Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":211,"ScoreAtt":1487535,"RankDef":214,"ScoreDef":1791206,"RankSup":270,"ScoreSup":614331,"RankTotal":240,"ScoreTotal":3893072,"ID":849010255,"Name":"rutecky","NumVillages":69,"Points":517656,"Rank":261,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010255","BestRank":261,"BestRankAt":"2023-02-16T05:25:56.352899Z","MostPoints":517656,"MostPointsAt":"2023-02-16T05:25:56.352899Z","MostVillages":69,"MostVillagesAt":"2023-02-16T05:25:49.212934Z","LastActivityAt":"2023-02-16T05:25:56.352899Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213416Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":762,"ScoreAtt":95065,"RankDef":496,"ScoreDef":527682,"RankSup":0,"ScoreSup":0,"RankTotal":772,"ScoreTotal":622747,"ID":849010386,"Name":"Pomidorop","NumVillages":3,"Points":3354,"Rank":1472,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010386","BestRank":1472,"BestRankAt":"2023-02-16T05:25:56.3529Z","MostPoints":3354,"MostPointsAt":"2023-02-16T05:25:56.3529Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.212934Z","LastActivityAt":"2023-02-16T05:25:56.3529Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213416Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1698,"ScoreAtt":585,"RankDef":2233,"ScoreDef":780,"RankSup":0,"ScoreSup":0,"RankTotal":2288,"ScoreTotal":1365,"ID":849010865,"Name":"matesa2","NumVillages":1,"Points":2376,"Rank":1600,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010865","BestRank":1600,"BestRankAt":"2023-02-16T05:25:49.212935Z","MostPoints":2376,"MostPointsAt":"2023-02-16T05:25:49.212935Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212935Z","LastActivityAt":"2023-02-16T05:25:49.212935Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213416Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849010955,"Name":"stefek alibaba","NumVillages":1,"Points":105,"Rank":2449,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849010955","BestRank":2449,"BestRankAt":"2023-02-16T05:25:56.3529Z","MostPoints":105,"MostPointsAt":"2023-02-16T05:25:56.3529Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212936Z","LastActivityAt":"2023-02-16T05:25:56.3529Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213417Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849012219,"Name":"HotChrum","NumVillages":1,"Points":219,"Rank":2245,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012219","BestRank":2245,"BestRankAt":"2023-02-16T05:25:56.352901Z","MostPoints":219,"MostPointsAt":"2023-02-16T05:25:49.212936Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212936Z","LastActivityAt":"2023-02-16T05:25:49.212937Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213417Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":94,"ScoreAtt":3442043,"RankDef":199,"ScoreDef":1913407,"RankSup":118,"ScoreSup":1885370,"RankTotal":117,"ScoreTotal":7240820,"ID":849012521,"Name":"Born2befree x Hitman007","NumVillages":123,"Points":1044396,"Rank":137,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012521","BestRank":137,"BestRankAt":"2023-02-16T05:25:56.352901Z","MostPoints":1044396,"MostPointsAt":"2023-02-16T05:25:56.352901Z","MostVillages":123,"MostVillagesAt":"2023-02-16T05:25:49.212937Z","LastActivityAt":"2023-02-16T05:25:56.352901Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213417Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":923,"ScoreAtt":45557,"RankDef":1525,"ScoreDef":31209,"RankSup":511,"ScoreSup":164814,"RankTotal":1066,"ScoreTotal":241580,"ID":849012843,"Name":"Darktix87","NumVillages":36,"Points":184145,"Rank":431,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012843","BestRank":431,"BestRankAt":"2023-02-16T05:25:56.352902Z","MostPoints":184145,"MostPointsAt":"2023-02-16T05:25:56.352902Z","MostVillages":36,"MostVillagesAt":"2023-02-16T05:25:49.212939Z","LastActivityAt":"2023-02-16T05:25:56.352902Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213418Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":690,"ScoreAtt":134973,"RankDef":314,"ScoreDef":1080956,"RankSup":482,"ScoreSup":189408,"RankTotal":520,"ScoreTotal":1405337,"ID":849012985,"Name":"killeer","NumVillages":0,"Points":0,"Rank":3000,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849012985","BestRank":3000,"BestRankAt":"2023-02-16T05:25:56.352902Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.21294Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.21294Z","LastActivityAt":"2023-02-16T05:25:49.21294Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213418Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":713,"ScoreAtt":118360,"RankDef":1834,"ScoreDef":10328,"RankSup":0,"ScoreSup":0,"RankTotal":1299,"ScoreTotal":128688,"ID":849013126,"Name":"Baala","NumVillages":16,"Points":114189,"Rank":513,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849013126","BestRank":513,"BestRankAt":"2023-02-16T05:25:49.212941Z","MostPoints":114189,"MostPointsAt":"2023-02-16T05:25:49.212941Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.212941Z","LastActivityAt":"2023-02-16T05:25:49.212941Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213419Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":611,"ScoreAtt":200368,"RankDef":298,"ScoreDef":1198661,"RankSup":530,"ScoreSup":143486,"RankTotal":486,"ScoreTotal":1542515,"ID":849014147,"Name":"piotrekbmm","NumVillages":13,"Points":71313,"Rank":608,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849014147","BestRank":523,"BestRankAt":"2023-02-16T05:25:49.212941Z","MostPoints":108724,"MostPointsAt":"2023-02-16T05:25:49.212942Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:49.212941Z","LastActivityAt":"2023-02-16T05:25:49.212942Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213419Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":270,"ScoreAtt":1049826,"RankDef":1433,"ScoreDef":39362,"RankSup":393,"ScoreSup":326062,"RankTotal":514,"ScoreTotal":1415250,"ID":849014413,"Name":"sygut","NumVillages":17,"Points":172773,"Rank":441,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849014413","BestRank":440,"BestRankAt":"2023-02-16T05:25:49.212942Z","MostPoints":172773,"MostPointsAt":"2023-02-16T05:25:49.212942Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.212942Z","LastActivityAt":"2023-02-16T05:25:56.352904Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213419Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":295,"ScoreAtt":955019,"RankDef":15,"ScoreDef":18389230,"RankSup":243,"ScoreSup":734363,"RankTotal":28,"ScoreTotal":20078612,"ID":849014922,"Name":"Tomasz Ɓomot","NumVillages":122,"Points":347205,"Rank":331,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849014922","BestRank":331,"BestRankAt":"2023-02-16T05:25:56.352904Z","MostPoints":347205,"MostPointsAt":"2023-02-16T05:25:56.352904Z","MostVillages":122,"MostVillagesAt":"2023-02-16T05:25:49.212943Z","LastActivityAt":"2023-02-16T05:25:56.352904Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1399,"ScoreDef":43717,"RankSup":0,"ScoreSup":0,"RankTotal":1649,"ScoreTotal":43717,"ID":849015875,"Name":"DrJointtt","NumVillages":0,"Points":0,"Rank":3001,"TribeID":1750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849015875","BestRank":3001,"BestRankAt":"2023-02-16T05:25:56.352905Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212944Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212944Z","LastActivityAt":"2023-02-16T05:25:49.212944Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849016425,"Name":"Bombelnik","NumVillages":1,"Points":143,"Rank":2363,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849016425","BestRank":2363,"BestRankAt":"2023-02-16T05:25:56.352905Z","MostPoints":143,"MostPointsAt":"2023-02-16T05:25:56.352905Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212945Z","LastActivityAt":"2023-02-16T05:25:56.352905Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849016844,"Name":"bartki37","NumVillages":1,"Points":102,"Rank":2456,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849016844","BestRank":2456,"BestRankAt":"2023-02-16T05:25:56.352906Z","MostPoints":102,"MostPointsAt":"2023-02-16T05:25:49.212946Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212945Z","LastActivityAt":"2023-02-16T05:25:49.212946Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21342Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":610,"ScoreAtt":202782,"RankDef":1615,"ScoreDef":24499,"RankSup":0,"ScoreSup":0,"RankTotal":1094,"ScoreTotal":227281,"ID":849017820,"Name":"Silent17","NumVillages":25,"Points":149942,"Rank":468,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849017820","BestRank":467,"BestRankAt":"2023-02-16T05:25:49.212946Z","MostPoints":149942,"MostPointsAt":"2023-02-16T05:25:56.352906Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.212946Z","LastActivityAt":"2023-02-16T05:25:56.352906Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213421Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1619,"ScoreDef":24404,"RankSup":1265,"ScoreSup":67,"RankTotal":1819,"ScoreTotal":24471,"ID":849017894,"Name":"trail","NumVillages":1,"Points":3794,"Rank":1418,"TribeID":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849017894","BestRank":1418,"BestRankAt":"2023-02-16T05:25:56.352907Z","MostPoints":3794,"MostPointsAt":"2023-02-16T05:25:49.212947Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212947Z","LastActivityAt":"2023-02-16T05:25:49.212947Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213421Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":27,"ScoreAtt":7153164,"RankDef":1046,"ScoreDef":109087,"RankSup":5,"ScoreSup":11013906,"RankTotal":34,"ScoreTotal":18276157,"ID":849018239,"Name":"-P3K-","NumVillages":348,"Points":3249730,"Rank":14,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018239","BestRank":14,"BestRankAt":"2023-02-16T05:25:56.352907Z","MostPoints":3249730,"MostPointsAt":"2023-02-16T05:25:56.352907Z","MostVillages":348,"MostVillagesAt":"2023-02-16T05:25:56.352907Z","LastActivityAt":"2023-02-16T05:25:56.352907Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213421Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":645,"ScoreAtt":163886,"RankDef":1682,"ScoreDef":19642,"RankSup":982,"ScoreSup":5848,"RankTotal":1162,"ScoreTotal":189376,"ID":849018442,"Name":"goƛć018443","NumVillages":65,"Points":355273,"Rank":322,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018442","BestRank":322,"BestRankAt":"2023-02-16T05:25:56.352908Z","MostPoints":355273,"MostPointsAt":"2023-02-16T05:25:56.352908Z","MostVillages":65,"MostVillagesAt":"2023-02-16T05:25:49.212948Z","LastActivityAt":"2023-02-16T05:25:56.352908Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213422Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1353,"ScoreAtt":5148,"RankDef":1157,"ScoreDef":81816,"RankSup":0,"ScoreSup":0,"RankTotal":1438,"ScoreTotal":86964,"ID":849018778,"Name":"Lord Pynio","NumVillages":1,"Points":7266,"Rank":1196,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018778","BestRank":1196,"BestRankAt":"2023-02-16T05:25:56.352908Z","MostPoints":7266,"MostPointsAt":"2023-02-16T05:25:56.352909Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212949Z","LastActivityAt":"2023-02-16T05:25:56.352909Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213422Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1943,"ScoreAtt":18,"RankDef":2109,"ScoreDef":2269,"RankSup":1367,"ScoreSup":4,"RankTotal":2212,"ScoreTotal":2291,"ID":849018780,"Name":"Lak1","NumVillages":1,"Points":1289,"Rank":1779,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849018780","BestRank":1779,"BestRankAt":"2023-02-16T05:25:56.352909Z","MostPoints":1289,"MostPointsAt":"2023-02-16T05:25:56.352909Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21295Z","LastActivityAt":"2023-02-16T05:25:56.352909Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1324,"ScoreAtt":5724,"RankDef":1824,"ScoreDef":10884,"RankSup":0,"ScoreSup":0,"RankTotal":1906,"ScoreTotal":16608,"ID":849019785,"Name":"peres5130","NumVillages":1,"Points":788,"Rank":1904,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849019785","BestRank":1904,"BestRankAt":"2023-02-16T05:25:56.35291Z","MostPoints":788,"MostPointsAt":"2023-02-16T05:25:56.35291Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21295Z","LastActivityAt":"2023-02-16T05:25:56.35291Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213423Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":840,"ScoreAtt":67185,"RankDef":1565,"ScoreDef":28376,"RankSup":715,"ScoreSup":43605,"RankTotal":1273,"ScoreTotal":139166,"ID":849020094,"Name":"Bartonzkl","NumVillages":13,"Points":68261,"Rank":621,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849020094","BestRank":621,"BestRankAt":"2023-02-16T05:25:56.35291Z","MostPoints":68261,"MostPointsAt":"2023-02-16T05:25:56.35291Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.212951Z","LastActivityAt":"2023-02-16T05:25:56.35291Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213424Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1336,"ScoreAtt":5394,"RankDef":2122,"ScoreDef":2109,"RankSup":1403,"ScoreSup":1,"RankTotal":2046,"ScoreTotal":7504,"ID":849020212,"Name":"InnosensQ","NumVillages":1,"Points":26,"Rank":2764,"TribeID":733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849020212","BestRank":2764,"BestRankAt":"2023-02-16T05:25:56.352911Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212952Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212952Z","LastActivityAt":"2023-02-16T05:25:49.212952Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213424Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1071,"ScoreDef":101537,"RankSup":1406,"ScoreSup":1,"RankTotal":1382,"ScoreTotal":101538,"ID":849020667,"Name":"Szrek5","NumVillages":1,"Points":3864,"Rank":1413,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849020667","BestRank":1413,"BestRankAt":"2023-02-16T05:25:56.352911Z","MostPoints":3864,"MostPointsAt":"2023-02-16T05:25:56.352911Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212952Z","LastActivityAt":"2023-02-16T05:25:56.352911Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213424Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":936,"ScoreAtt":43051,"RankDef":1349,"ScoreDef":50075,"RankSup":1056,"ScoreSup":2696,"RankTotal":1398,"ScoreTotal":95822,"ID":849021566,"Name":"raskip","NumVillages":2,"Points":12702,"Rank":1037,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849021566","BestRank":1035,"BestRankAt":"2023-02-16T05:25:49.212953Z","MostPoints":12702,"MostPointsAt":"2023-02-16T05:25:56.352912Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212953Z","LastActivityAt":"2023-02-16T05:25:56.352912Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213425Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1276,"ScoreDef":59734,"RankSup":0,"ScoreSup":0,"RankTotal":1553,"ScoreTotal":59734,"ID":849022063,"Name":"misiek650","NumVillages":1,"Points":189,"Rank":2301,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849022063","BestRank":2301,"BestRankAt":"2023-02-16T05:25:56.352912Z","MostPoints":189,"MostPointsAt":"2023-02-16T05:25:49.212954Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212954Z","LastActivityAt":"2023-02-16T05:25:49.212954Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213425Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2255,"ScoreDef":463,"RankSup":0,"ScoreSup":0,"RankTotal":2338,"ScoreTotal":463,"ID":849022649,"Name":"mikiwnyk","NumVillages":1,"Points":2956,"Rank":1518,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849022649","BestRank":1518,"BestRankAt":"2023-02-16T05:25:56.352913Z","MostPoints":2956,"MostPointsAt":"2023-02-16T05:25:56.352913Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212954Z","LastActivityAt":"2023-02-16T05:25:56.352913Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213425Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849022907,"Name":"KeymilLoveOrHate","NumVillages":1,"Points":26,"Rank":2765,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849022907","BestRank":2765,"BestRankAt":"2023-02-16T05:25:56.352913Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212955Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212955Z","LastActivityAt":"2023-02-16T05:25:49.212955Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213426Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":703,"ScoreAtt":125772,"RankDef":1143,"ScoreDef":86048,"RankSup":194,"ScoreSup":987333,"RankTotal":565,"ScoreTotal":1199153,"ID":849023078,"Name":"pingwin112","NumVillages":0,"Points":0,"Rank":3002,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023078","BestRank":3002,"BestRankAt":"2023-02-16T05:25:56.352914Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212956Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212956Z","LastActivityAt":"2023-02-16T05:25:49.212956Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213426Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":962,"ScoreDef":142037,"RankSup":1191,"ScoreSup":428,"RankTotal":1259,"ScoreTotal":142465,"ID":849023212,"Name":"Aleksander1973","NumVillages":1,"Points":7649,"Rank":1173,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023212","BestRank":1169,"BestRankAt":"2023-02-16T05:25:49.212956Z","MostPoints":7790,"MostPointsAt":"2023-02-16T05:25:49.212957Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212956Z","LastActivityAt":"2023-02-16T05:25:49.212957Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849023337,"Name":"Ƃysy97","NumVillages":1,"Points":26,"Rank":2766,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023337","BestRank":2766,"BestRankAt":"2023-02-16T05:25:56.352915Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212957Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212957Z","LastActivityAt":"2023-02-16T05:25:49.212957Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":715,"ScoreAtt":117897,"RankDef":195,"ScoreDef":1964003,"RankSup":561,"ScoreSup":126081,"RankTotal":383,"ScoreTotal":2207981,"ID":849023540,"Name":"Ed3kMonster","NumVillages":1,"Points":233,"Rank":2228,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849023540","BestRank":2228,"BestRankAt":"2023-02-16T05:25:56.352915Z","MostPoints":233,"MostPointsAt":"2023-02-16T05:25:56.352915Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212958Z","LastActivityAt":"2023-02-16T05:25:56.352915Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1575,"ScoreAtt":1462,"RankDef":2045,"ScoreDef":3604,"RankSup":0,"ScoreSup":0,"RankTotal":2118,"ScoreTotal":5066,"ID":849024152,"Name":"polska1234","NumVillages":1,"Points":1156,"Rank":1804,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849024152","BestRank":1804,"BestRankAt":"2023-02-16T05:25:56.352916Z","MostPoints":1156,"MostPointsAt":"2023-02-16T05:25:56.352916Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212959Z","LastActivityAt":"2023-02-16T05:25:56.352916Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213427Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1755,"ScoreAtt":287,"RankDef":1513,"ScoreDef":32280,"RankSup":0,"ScoreSup":0,"RankTotal":1745,"ScoreTotal":32567,"ID":849024208,"Name":"Rychu0890","NumVillages":1,"Points":517,"Rank":2003,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849024208","BestRank":2003,"BestRankAt":"2023-02-16T05:25:56.352916Z","MostPoints":517,"MostPointsAt":"2023-02-16T05:25:56.352916Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212959Z","LastActivityAt":"2023-02-16T05:25:56.352916Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213428Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1731,"ScoreAtt":353,"RankDef":2078,"ScoreDef":2874,"RankSup":0,"ScoreSup":0,"RankTotal":2180,"ScoreTotal":3227,"ID":849024333,"Name":"skwarol888","NumVillages":0,"Points":0,"Rank":3003,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849024333","BestRank":3003,"BestRankAt":"2023-02-16T05:25:56.352917Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.21296Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.21296Z","LastActivityAt":"2023-02-16T05:25:49.21296Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213428Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1941,"ScoreAtt":18,"RankDef":1267,"ScoreDef":60347,"RankSup":0,"ScoreSup":0,"RankTotal":1549,"ScoreTotal":60365,"ID":849025083,"Name":"martwy dzik","NumVillages":0,"Points":0,"Rank":3004,"TribeID":766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849025083","BestRank":3004,"BestRankAt":"2023-02-16T05:25:56.352917Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212961Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212961Z","LastActivityAt":"2023-02-16T05:25:49.212961Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213428Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1667,"ScoreDef":20237,"RankSup":0,"ScoreSup":0,"RankTotal":1865,"ScoreTotal":20237,"ID":849025558,"Name":"Szezeger","NumVillages":1,"Points":2762,"Rank":1551,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849025558","BestRank":1551,"BestRankAt":"2023-02-16T05:25:56.352918Z","MostPoints":2762,"MostPointsAt":"2023-02-16T05:25:49.212962Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212962Z","LastActivityAt":"2023-02-16T05:25:49.212962Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213429Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849025839,"Name":"adhd","NumVillages":1,"Points":68,"Rank":2510,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849025839","BestRank":2510,"BestRankAt":"2023-02-16T05:25:56.352918Z","MostPoints":68,"MostPointsAt":"2023-02-16T05:25:49.212963Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212963Z","LastActivityAt":"2023-02-16T05:25:49.212963Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213429Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":531,"ScoreAtt":310303,"RankDef":66,"ScoreDef":5091924,"RankSup":214,"ScoreSup":863552,"RankTotal":142,"ScoreTotal":6265779,"ID":849026145,"Name":"Writter.89","NumVillages":27,"Points":120365,"Rank":504,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849026145","BestRank":504,"BestRankAt":"2023-02-16T05:25:56.352919Z","MostPoints":120365,"MostPointsAt":"2023-02-16T05:25:56.352919Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:49.212963Z","LastActivityAt":"2023-02-16T05:25:56.352919Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213429Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":91,"ScoreAtt":3546284,"RankDef":524,"ScoreDef":488758,"RankSup":283,"ScoreSup":575253,"RankTotal":206,"ScoreTotal":4610295,"ID":849027025,"Name":"SoƂtys caƂej wsi","NumVillages":146,"Points":1171556,"Rank":117,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849027025","BestRank":117,"BestRankAt":"2023-02-16T05:25:49.212964Z","MostPoints":1171556,"MostPointsAt":"2023-02-16T05:25:56.352919Z","MostVillages":146,"MostVillagesAt":"2023-02-16T05:25:49.212964Z","LastActivityAt":"2023-02-16T05:25:56.352919Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":643,"ScoreAtt":164707,"RankDef":958,"ScoreDef":142923,"RankSup":471,"ScoreSup":196328,"RankTotal":838,"ScoreTotal":503958,"ID":849027653,"Name":"BIG PAPA.","NumVillages":9,"Points":91645,"Rank":558,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849027653","BestRank":555,"BestRankAt":"2023-02-16T05:25:49.212965Z","MostPoints":91645,"MostPointsAt":"2023-02-16T05:25:49.212965Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.212965Z","LastActivityAt":"2023-02-16T05:25:49.212965Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1768,"ScoreAtt":260,"RankDef":601,"ScoreDef":380521,"RankSup":594,"ScoreSup":102406,"RankTotal":851,"ScoreTotal":483187,"ID":849027712,"Name":"tomalascala","NumVillages":1,"Points":6370,"Rank":1242,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849027712","BestRank":1242,"BestRankAt":"2023-02-16T05:25:56.35292Z","MostPoints":6370,"MostPointsAt":"2023-02-16T05:25:49.212966Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212965Z","LastActivityAt":"2023-02-16T05:25:49.212966Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849028040,"Name":"Abazur","NumVillages":1,"Points":80,"Rank":2483,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849028040","BestRank":2483,"BestRankAt":"2023-02-16T05:25:56.352921Z","MostPoints":80,"MostPointsAt":"2023-02-16T05:25:49.212966Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212966Z","LastActivityAt":"2023-02-16T05:25:49.212966Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1681,"ScoreAtt":668,"RankDef":856,"ScoreDef":185468,"RankSup":0,"ScoreSup":0,"RankTotal":1172,"ScoreTotal":186136,"ID":849028071,"Name":"Dom Kichot","NumVillages":1,"Points":26,"Rank":2767,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849028071","BestRank":2767,"BestRankAt":"2023-02-16T05:25:56.352921Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212967Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212967Z","LastActivityAt":"2023-02-16T05:25:49.212967Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213431Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":341,"ScoreAtt":747828,"RankDef":327,"ScoreDef":1002140,"RankSup":190,"ScoreSup":1016019,"RankTotal":314,"ScoreTotal":2765987,"ID":849028088,"Name":"Bexaaa","NumVillages":37,"Points":355061,"Rank":323,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849028088","BestRank":323,"BestRankAt":"2023-02-16T05:25:49.212968Z","MostPoints":355061,"MostPointsAt":"2023-02-16T05:25:56.352922Z","MostVillages":37,"MostVillagesAt":"2023-02-16T05:25:49.212968Z","LastActivityAt":"2023-02-16T05:25:56.352922Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213431Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849029077,"Name":"Kluha Jo","NumVillages":1,"Points":141,"Rank":2367,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849029077","BestRank":2367,"BestRankAt":"2023-02-16T05:25:56.352922Z","MostPoints":141,"MostPointsAt":"2023-02-16T05:25:49.212968Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212968Z","LastActivityAt":"2023-02-16T05:25:49.212969Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213431Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849029559,"Name":"BOMBA NA BANIIE","NumVillages":1,"Points":26,"Rank":2768,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849029559","BestRank":2768,"BestRankAt":"2023-02-16T05:25:56.352923Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212969Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212969Z","LastActivityAt":"2023-02-16T05:25:49.212969Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2435,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2523,"ScoreTotal":10,"ID":849030062,"Name":"Domino00155","NumVillages":1,"Points":704,"Rank":1929,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030062","BestRank":1929,"BestRankAt":"2023-02-16T05:25:56.352923Z","MostPoints":704,"MostPointsAt":"2023-02-16T05:25:49.21297Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21297Z","LastActivityAt":"2023-02-16T05:25:49.21297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":942,"ScoreAtt":41802,"RankDef":1861,"ScoreDef":9312,"RankSup":0,"ScoreSup":0,"RankTotal":1599,"ScoreTotal":51114,"ID":849030086,"Name":"Arehukas","NumVillages":16,"Points":80246,"Rank":583,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030086","BestRank":583,"BestRankAt":"2023-02-16T05:25:56.352924Z","MostPoints":80246,"MostPointsAt":"2023-02-16T05:25:56.352924Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:56.352924Z","LastActivityAt":"2023-02-16T05:25:56.352924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":93,"ScoreAtt":3462101,"RankDef":1072,"ScoreDef":101007,"RankSup":19,"ScoreSup":5503338,"RankTotal":82,"ScoreTotal":9066446,"ID":849030226,"Name":"poolie96","NumVillages":108,"Points":1097491,"Rank":127,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030226","BestRank":126,"BestRankAt":"2023-02-16T05:25:49.212971Z","MostPoints":1097491,"MostPointsAt":"2023-02-16T05:25:56.352924Z","MostVillages":108,"MostVillagesAt":"2023-02-16T05:25:49.212971Z","LastActivityAt":"2023-02-16T05:25:56.352924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213432Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849030481,"Name":"hubal3","NumVillages":1,"Points":45,"Rank":2599,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030481","BestRank":2599,"BestRankAt":"2023-02-16T05:25:49.212972Z","MostPoints":45,"MostPointsAt":"2023-02-16T05:25:49.212972Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212972Z","LastActivityAt":"2023-02-16T05:25:49.212972Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213433Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1010,"ScoreAtt":28664,"RankDef":314,"ScoreDef":1077371,"RankSup":758,"ScoreSup":33664,"RankTotal":582,"ScoreTotal":1139699,"ID":849030643,"Name":"rosiu56","NumVillages":0,"Points":0,"Rank":3038,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849030643","BestRank":3038,"BestRankAt":"2023-02-16T05:25:49.212973Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212973Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212973Z","LastActivityAt":"2023-02-16T05:25:49.212973Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213433Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849031197,"Name":"miodek1143143","NumVillages":1,"Points":26,"Rank":2769,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031197","BestRank":2769,"BestRankAt":"2023-02-16T05:25:56.352925Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212974Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212973Z","LastActivityAt":"2023-02-16T05:25:49.212974Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213433Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849031759,"Name":"ponger19955","NumVillages":1,"Points":505,"Rank":2010,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031759","BestRank":2010,"BestRankAt":"2023-02-16T05:25:56.352925Z","MostPoints":505,"MostPointsAt":"2023-02-16T05:25:56.352925Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212974Z","LastActivityAt":"2023-02-16T05:25:56.352925Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213434Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849031779,"Name":"jekord","NumVillages":1,"Points":26,"Rank":2770,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031779","BestRank":2770,"BestRankAt":"2023-02-16T05:25:56.352926Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212975Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212975Z","LastActivityAt":"2023-02-16T05:25:49.212975Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213434Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":293,"ScoreAtt":961472,"RankDef":642,"ScoreDef":331975,"RankSup":515,"ScoreSup":158211,"RankTotal":505,"ScoreTotal":1451658,"ID":849031818,"Name":"Kinglevy","NumVillages":29,"Points":222966,"Rank":402,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031818","BestRank":398,"BestRankAt":"2023-02-16T05:25:49.212976Z","MostPoints":222966,"MostPointsAt":"2023-02-16T05:25:56.352926Z","MostVillages":29,"MostVillagesAt":"2023-02-16T05:25:49.212976Z","LastActivityAt":"2023-02-16T05:25:56.352926Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213434Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":613,"ScoreAtt":194604,"RankDef":211,"ScoreDef":1807307,"RankSup":718,"ScoreSup":42897,"RankTotal":402,"ScoreTotal":2044808,"ID":849031846,"Name":"Lolek3333","NumVillages":0,"Points":0,"Rank":3005,"TribeID":1780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849031846","BestRank":1391,"BestRankAt":"2023-02-16T05:25:49.212976Z","MostPoints":4235,"MostPointsAt":"2023-02-16T05:25:49.212977Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212976Z","LastActivityAt":"2023-02-16T05:25:49.212977Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213434Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2157,"ScoreDef":1670,"RankSup":0,"ScoreSup":0,"RankTotal":2252,"ScoreTotal":1670,"ID":849032027,"Name":"Sir dziadekk19","NumVillages":1,"Points":786,"Rank":1905,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032027","BestRank":1905,"BestRankAt":"2023-02-16T05:25:56.352927Z","MostPoints":786,"MostPointsAt":"2023-02-16T05:25:56.352927Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212977Z","LastActivityAt":"2023-02-16T05:25:56.352927Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213435Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":537,"ScoreAtt":299339,"RankDef":180,"ScoreDef":2076358,"RankSup":207,"ScoreSup":888764,"RankTotal":270,"ScoreTotal":3264461,"ID":849032059,"Name":"Stickman","NumVillages":0,"Points":0,"Rank":3006,"TribeID":1780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032059","BestRank":967,"BestRankAt":"2023-02-16T05:25:49.212978Z","MostPoints":17158,"MostPointsAt":"2023-02-16T05:25:49.212978Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212978Z","LastActivityAt":"2023-02-16T05:25:49.212978Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213435Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1495,"ScoreAtt":2381,"RankDef":602,"ScoreDef":380349,"RankSup":951,"ScoreSup":7578,"RankTotal":927,"ScoreTotal":390308,"ID":849032413,"Name":"onek666","NumVillages":1,"Points":379,"Rank":2090,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032413","BestRank":2090,"BestRankAt":"2023-02-16T05:25:56.352928Z","MostPoints":379,"MostPointsAt":"2023-02-16T05:25:49.212979Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212979Z","LastActivityAt":"2023-02-16T05:25:49.212979Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213435Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":628,"ScoreAtt":180537,"RankDef":2121,"ScoreDef":2122,"RankSup":626,"ScoreSup":83794,"RankTotal":1039,"ScoreTotal":266453,"ID":849032414,"Name":"georgek","NumVillages":35,"Points":229400,"Rank":393,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032414","BestRank":393,"BestRankAt":"2023-02-16T05:25:56.352929Z","MostPoints":229400,"MostPointsAt":"2023-02-16T05:25:56.352929Z","MostVillages":35,"MostVillagesAt":"2023-02-16T05:25:56.352929Z","LastActivityAt":"2023-02-16T05:25:56.352929Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1220,"ScoreAtt":9486,"RankDef":523,"ScoreDef":489013,"RankSup":975,"ScoreSup":6133,"RankTotal":837,"ScoreTotal":504632,"ID":849032741,"Name":"Deylor","NumVillages":1,"Points":453,"Rank":2037,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849032741","BestRank":2037,"BestRankAt":"2023-02-16T05:25:56.352929Z","MostPoints":453,"MostPointsAt":"2023-02-16T05:25:49.212981Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21298Z","LastActivityAt":"2023-02-16T05:25:49.212981Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849033395,"Name":"S1mple...","NumVillages":1,"Points":26,"Rank":2771,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849033395","BestRank":2771,"BestRankAt":"2023-02-16T05:25:56.35293Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212981Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212981Z","LastActivityAt":"2023-02-16T05:25:49.212981Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1365,"ScoreDef":48547,"RankSup":0,"ScoreSup":0,"RankTotal":1616,"ScoreTotal":48547,"ID":849034666,"Name":"FanBednar","NumVillages":1,"Points":3137,"Rank":1496,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849034666","BestRank":1496,"BestRankAt":"2023-02-16T05:25:56.35293Z","MostPoints":3137,"MostPointsAt":"2023-02-16T05:25:49.212982Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212982Z","LastActivityAt":"2023-02-16T05:25:49.212982Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213436Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":83,"ScoreAtt":3807184,"RankDef":537,"ScoreDef":470214,"RankSup":338,"ScoreSup":431966,"RankTotal":201,"ScoreTotal":4709364,"ID":849034882,"Name":"GamiBer2021","NumVillages":58,"Points":605371,"Rank":235,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849034882","BestRank":235,"BestRankAt":"2023-02-16T05:25:56.352931Z","MostPoints":605371,"MostPointsAt":"2023-02-16T05:25:56.352931Z","MostVillages":58,"MostVillagesAt":"2023-02-16T05:25:49.212983Z","LastActivityAt":"2023-02-16T05:25:56.352931Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213437Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1813,"ScoreAtt":151,"RankDef":2424,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2392,"ScoreTotal":161,"ID":849034917,"Name":"Bombalena","NumVillages":1,"Points":9091,"Rank":1114,"TribeID":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849034917","BestRank":1114,"BestRankAt":"2023-02-16T05:25:56.352931Z","MostPoints":9091,"MostPointsAt":"2023-02-16T05:25:49.212983Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212983Z","LastActivityAt":"2023-02-16T05:25:49.212984Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213437Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1893,"ScoreDef":7945,"RankSup":0,"ScoreSup":0,"RankTotal":2036,"ScoreTotal":7945,"ID":849035447,"Name":"pinkolinka","NumVillages":1,"Points":5873,"Rank":1270,"TribeID":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849035447","BestRank":1270,"BestRankAt":"2023-02-16T05:25:56.352932Z","MostPoints":5873,"MostPointsAt":"2023-02-16T05:25:56.352932Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212984Z","LastActivityAt":"2023-02-16T05:25:56.352932Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213437Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":235,"ScoreAtt":1271812,"RankDef":699,"ScoreDef":280653,"RankSup":276,"ScoreSup":592996,"RankTotal":390,"ScoreTotal":2145461,"ID":849035525,"Name":"Aiken","NumVillages":53,"Points":495116,"Rank":271,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849035525","BestRank":271,"BestRankAt":"2023-02-16T05:25:56.352932Z","MostPoints":495116,"MostPointsAt":"2023-02-16T05:25:56.352932Z","MostVillages":53,"MostVillagesAt":"2023-02-16T05:25:49.212985Z","LastActivityAt":"2023-02-16T05:25:56.352933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":327,"ScoreAtt":799578,"RankDef":566,"ScoreDef":414103,"RankSup":266,"ScoreSup":629167,"RankTotal":433,"ScoreTotal":1842848,"ID":849035905,"Name":"Jamapet","NumVillages":76,"Points":687001,"Rank":209,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849035905","BestRank":208,"BestRankAt":"2023-02-16T05:25:49.212985Z","MostPoints":687001,"MostPointsAt":"2023-02-16T05:25:56.352933Z","MostVillages":76,"MostVillagesAt":"2023-02-16T05:25:49.212985Z","LastActivityAt":"2023-02-16T05:25:56.352933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2482,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2556,"ScoreTotal":1,"ID":849036055,"Name":"AlfaCentauri","NumVillages":1,"Points":30,"Rank":2589,"TribeID":1040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849036055","BestRank":2589,"BestRankAt":"2023-02-16T05:25:56.352933Z","MostPoints":30,"MostPointsAt":"2023-02-16T05:25:49.212986Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212986Z","LastActivityAt":"2023-02-16T05:25:49.212986Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1273,"ScoreDef":59825,"RankSup":0,"ScoreSup":0,"RankTotal":1551,"ScoreTotal":59825,"ID":849036262,"Name":"egon 322","NumVillages":0,"Points":0,"Rank":3007,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849036262","BestRank":3007,"BestRankAt":"2023-02-16T05:25:56.352934Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.212987Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.212987Z","LastActivityAt":"2023-02-16T05:25:49.212987Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213438Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1376,"ScoreAtt":4563,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2135,"ScoreTotal":4563,"ID":849037354,"Name":"Saint Clair","NumVillages":2,"Points":6329,"Rank":1245,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037354","BestRank":1245,"BestRankAt":"2023-02-16T05:25:56.352934Z","MostPoints":6329,"MostPointsAt":"2023-02-16T05:25:56.352935Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:56.352934Z","LastActivityAt":"2023-02-16T05:25:56.352935Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":78,"ScoreAtt":4045959,"RankDef":158,"ScoreDef":2439635,"RankSup":158,"ScoreSup":1436190,"RankTotal":103,"ScoreTotal":7921784,"ID":849037407,"Name":"Ksiądz PL","NumVillages":129,"Points":1205619,"Rank":113,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037407","BestRank":109,"BestRankAt":"2023-02-16T05:25:49.212989Z","MostPoints":1205837,"MostPointsAt":"2023-02-16T05:25:49.212989Z","MostVillages":129,"MostVillagesAt":"2023-02-16T05:25:49.212989Z","LastActivityAt":"2023-02-16T05:25:56.352935Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":575,"ScoreAtt":242300,"RankDef":41,"ScoreDef":7761358,"RankSup":78,"ScoreSup":2724908,"RankTotal":72,"ScoreTotal":10728566,"ID":849037469,"Name":"h1d3th","NumVillages":46,"Points":393729,"Rank":303,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037469","BestRank":303,"BestRankAt":"2023-02-16T05:25:56.352935Z","MostPoints":393729,"MostPointsAt":"2023-02-16T05:25:56.352936Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:56.352936Z","LastActivityAt":"2023-02-16T05:25:56.352936Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213439Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1054,"ScoreDef":106411,"RankSup":1310,"ScoreSup":18,"RankTotal":1365,"ScoreTotal":106429,"ID":849037699,"Name":"shokode","NumVillages":1,"Points":6430,"Rank":1236,"TribeID":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849037699","BestRank":1236,"BestRankAt":"2023-02-16T05:25:56.352936Z","MostPoints":6430,"MostPointsAt":"2023-02-16T05:25:49.212991Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212991Z","LastActivityAt":"2023-02-16T05:25:49.212991Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1962,"ScoreAtt":9,"RankDef":840,"ScoreDef":191730,"RankSup":0,"ScoreSup":0,"RankTotal":1156,"ScoreTotal":191739,"ID":849038195,"Name":"Spekulant951","NumVillages":1,"Points":170,"Rank":2329,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038195","BestRank":2329,"BestRankAt":"2023-02-16T05:25:56.352937Z","MostPoints":170,"MostPointsAt":"2023-02-16T05:25:49.212992Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212992Z","LastActivityAt":"2023-02-16T05:25:49.212992Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1927,"ScoreAtt":27,"RankDef":2280,"ScoreDef":298,"RankSup":0,"ScoreSup":0,"RankTotal":2357,"ScoreTotal":325,"ID":849038572,"Name":"Bzyyykox3","NumVillages":1,"Points":191,"Rank":2299,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038572","BestRank":2299,"BestRankAt":"2023-02-16T05:25:56.352937Z","MostPoints":191,"MostPointsAt":"2023-02-16T05:25:49.212992Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212992Z","LastActivityAt":"2023-02-16T05:25:49.212993Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1406,"ScoreAtt":3956,"RankDef":2171,"ScoreDef":1406,"RankSup":0,"ScoreSup":0,"RankTotal":2106,"ScoreTotal":5362,"ID":849038597,"Name":"janusz12","NumVillages":5,"Points":14830,"Rank":1004,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038597","BestRank":1004,"BestRankAt":"2023-02-16T05:25:56.352938Z","MostPoints":14830,"MostPointsAt":"2023-02-16T05:25:56.352938Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.212993Z","LastActivityAt":"2023-02-16T05:25:56.352938Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21344Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2071,"ScoreDef":2996,"RankSup":0,"ScoreSup":0,"RankTotal":2188,"ScoreTotal":2996,"ID":849038985,"Name":"Kraken121","NumVillages":1,"Points":2059,"Rank":1646,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849038985","BestRank":1646,"BestRankAt":"2023-02-16T05:25:56.352938Z","MostPoints":2059,"MostPointsAt":"2023-02-16T05:25:49.212994Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212994Z","LastActivityAt":"2023-02-16T05:25:49.212994Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213441Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":684,"ScoreAtt":139342,"RankDef":1320,"ScoreDef":55033,"RankSup":0,"ScoreSup":0,"RankTotal":1147,"ScoreTotal":194375,"ID":849039310,"Name":"vwbora","NumVillages":17,"Points":123919,"Rank":499,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849039310","BestRank":499,"BestRankAt":"2023-02-16T05:25:56.352939Z","MostPoints":123919,"MostPointsAt":"2023-02-16T05:25:56.352939Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.212995Z","LastActivityAt":"2023-02-16T05:25:56.352939Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213441Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849039766,"Name":"wolf1982","NumVillages":1,"Points":26,"Rank":2772,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849039766","BestRank":2772,"BestRankAt":"2023-02-16T05:25:56.352939Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.212996Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212995Z","LastActivityAt":"2023-02-16T05:25:49.212996Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213441Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":569,"ScoreAtt":251895,"RankDef":760,"ScoreDef":236841,"RankSup":382,"ScoreSup":347277,"RankTotal":672,"ScoreTotal":836013,"ID":849040142,"Name":"Vizier19","NumVillages":19,"Points":113403,"Rank":516,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040142","BestRank":515,"BestRankAt":"2023-02-16T05:25:49.212996Z","MostPoints":113403,"MostPointsAt":"2023-02-16T05:25:49.212996Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:49.212996Z","LastActivityAt":"2023-02-16T05:25:49.212997Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213442Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":585,"ScoreAtt":231335,"RankDef":140,"ScoreDef":2755636,"RankSup":835,"ScoreSup":17745,"RankTotal":289,"ScoreTotal":3004716,"ID":849040194,"Name":"RabarbarWB","NumVillages":2,"Points":14574,"Rank":1006,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040194","BestRank":1006,"BestRankAt":"2023-02-16T05:25:49.212997Z","MostPoints":14574,"MostPointsAt":"2023-02-16T05:25:56.35294Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212997Z","LastActivityAt":"2023-02-16T05:25:56.35294Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213442Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849040332,"Name":"lukaku","NumVillages":1,"Points":65,"Rank":2519,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040332","BestRank":2519,"BestRankAt":"2023-02-16T05:25:56.352941Z","MostPoints":65,"MostPointsAt":"2023-02-16T05:25:49.212998Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.212998Z","LastActivityAt":"2023-02-16T05:25:49.212998Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213442Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1329,"ScoreAtt":5624,"RankDef":1520,"ScoreDef":31721,"RankSup":0,"ScoreSup":0,"RankTotal":1702,"ScoreTotal":37345,"ID":849040462,"Name":"emilek","NumVillages":2,"Points":4868,"Rank":1333,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849040462","BestRank":1333,"BestRankAt":"2023-02-16T05:25:56.352941Z","MostPoints":4868,"MostPointsAt":"2023-02-16T05:25:56.352941Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.212999Z","LastActivityAt":"2023-02-16T05:25:56.352941Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213443Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":881,"ScoreAtt":55005,"RankDef":280,"ScoreDef":1297981,"RankSup":488,"ScoreSup":184669,"RankTotal":488,"ScoreTotal":1537655,"ID":849041192,"Name":"Lord Tost","NumVillages":14,"Points":70533,"Rank":611,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849041192","BestRank":611,"BestRankAt":"2023-02-16T05:25:56.352942Z","MostPoints":70533,"MostPointsAt":"2023-02-16T05:25:56.352942Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.212999Z","LastActivityAt":"2023-02-16T05:25:56.352942Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213443Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849041557,"Name":"Kavve","NumVillages":1,"Points":98,"Rank":2464,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849041557","BestRank":2464,"BestRankAt":"2023-02-16T05:25:56.352942Z","MostPoints":98,"MostPointsAt":"2023-02-16T05:25:56.352942Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213Z","LastActivityAt":"2023-02-16T05:25:56.352942Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213443Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2244,"ScoreDef":542,"RankSup":0,"ScoreSup":0,"RankTotal":2324,"ScoreTotal":542,"ID":849042461,"Name":"perespol43","NumVillages":1,"Points":2077,"Rank":1642,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849042461","BestRank":1642,"BestRankAt":"2023-02-16T05:25:56.352943Z","MostPoints":2077,"MostPointsAt":"2023-02-16T05:25:49.213001Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213001Z","LastActivityAt":"2023-02-16T05:25:49.213001Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1596,"ScoreAtt":1252,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2278,"ScoreTotal":1252,"ID":849042480,"Name":"michelangelo420","NumVillages":2,"Points":6177,"Rank":1255,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849042480","BestRank":1255,"BestRankAt":"2023-02-16T05:25:56.352943Z","MostPoints":6177,"MostPointsAt":"2023-02-16T05:25:56.352943Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213002Z","LastActivityAt":"2023-02-16T05:25:56.352943Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":976,"ScoreDef":134454,"RankSup":0,"ScoreSup":0,"RankTotal":1284,"ScoreTotal":134454,"ID":849043776,"Name":"touchmeboy","NumVillages":1,"Points":430,"Rank":2052,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849043776","BestRank":2052,"BestRankAt":"2023-02-16T05:25:56.352944Z","MostPoints":430,"MostPointsAt":"2023-02-16T05:25:49.213003Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213003Z","LastActivityAt":"2023-02-16T05:25:49.213003Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":811,"ScoreAtt":76015,"RankDef":1057,"ScoreDef":105586,"RankSup":0,"ScoreSup":0,"RankTotal":1184,"ScoreTotal":181601,"ID":849044705,"Name":"Tathagatta","NumVillages":20,"Points":119967,"Rank":505,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849044705","BestRank":505,"BestRankAt":"2023-02-16T05:25:56.352944Z","MostPoints":119967,"MostPointsAt":"2023-02-16T05:25:56.352944Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:49.213003Z","LastActivityAt":"2023-02-16T05:25:56.352945Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213444Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849044724,"Name":"xarans","NumVillages":1,"Points":1146,"Rank":1805,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849044724","BestRank":1805,"BestRankAt":"2023-02-16T05:25:56.352945Z","MostPoints":1146,"MostPointsAt":"2023-02-16T05:25:49.213004Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213004Z","LastActivityAt":"2023-02-16T05:25:49.213004Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213445Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1366,"ScoreAtt":4732,"RankDef":878,"ScoreDef":179137,"RankSup":1344,"ScoreSup":7,"RankTotal":1180,"ScoreTotal":183876,"ID":849044961,"Name":"PaweƂU136f","NumVillages":5,"Points":31116,"Rank":808,"TribeID":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849044961","BestRank":803,"BestRankAt":"2023-02-16T05:25:49.213005Z","MostPoints":31116,"MostPointsAt":"2023-02-16T05:25:56.352945Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.213005Z","LastActivityAt":"2023-02-16T05:25:56.352946Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213445Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":249,"ScoreAtt":1129117,"RankDef":288,"ScoreDef":1239122,"RankSup":628,"ScoreSup":83274,"RankTotal":353,"ScoreTotal":2451513,"ID":849045047,"Name":"Songoku29","NumVillages":0,"Points":0,"Rank":3008,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849045047","BestRank":3008,"BestRankAt":"2023-02-16T05:25:56.352946Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213006Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213006Z","LastActivityAt":"2023-02-16T05:25:49.213006Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213445Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":769,"ScoreAtt":92981,"RankDef":798,"ScoreDef":217802,"RankSup":1019,"ScoreSup":3941,"RankTotal":991,"ScoreTotal":314724,"ID":849045675,"Name":"DebeƛciakZpodlasia","NumVillages":8,"Points":67149,"Rank":626,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849045675","BestRank":626,"BestRankAt":"2023-02-16T05:25:56.352946Z","MostPoints":67149,"MostPointsAt":"2023-02-16T05:25:56.352946Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.213006Z","LastActivityAt":"2023-02-16T05:25:56.352947Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213446Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1467,"ScoreAtt":2779,"RankDef":197,"ScoreDef":1957340,"RankSup":1076,"ScoreSup":2288,"RankTotal":413,"ScoreTotal":1962407,"ID":849045915,"Name":"Gremar90","NumVillages":2,"Points":16882,"Rank":970,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849045915","BestRank":970,"BestRankAt":"2023-02-16T05:25:56.352947Z","MostPoints":16882,"MostPointsAt":"2023-02-16T05:25:56.352947Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213007Z","LastActivityAt":"2023-02-16T05:25:56.352947Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213446Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1750,"ScoreAtt":296,"RankDef":2170,"ScoreDef":1409,"RankSup":0,"ScoreSup":0,"RankTotal":2251,"ScoreTotal":1705,"ID":849046206,"Name":"Zuzia","NumVillages":1,"Points":1117,"Rank":1815,"TribeID":1785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046206","BestRank":1815,"BestRankAt":"2023-02-16T05:25:56.352947Z","MostPoints":1117,"MostPointsAt":"2023-02-16T05:25:56.352948Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213008Z","LastActivityAt":"2023-02-16T05:25:56.352948Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213446Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":996,"ScoreAtt":30671,"RankDef":1703,"ScoreDef":18031,"RankSup":0,"ScoreSup":0,"RankTotal":1615,"ScoreTotal":48702,"ID":849046232,"Name":"kamilos937","NumVillages":4,"Points":34354,"Rank":778,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046232","BestRank":778,"BestRankAt":"2023-02-16T05:25:56.352948Z","MostPoints":34354,"MostPointsAt":"2023-02-16T05:25:56.352948Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.213008Z","LastActivityAt":"2023-02-16T05:25:56.352948Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213447Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849046397,"Name":"kamera","NumVillages":1,"Points":52,"Rank":2545,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046397","BestRank":2545,"BestRankAt":"2023-02-16T05:25:56.352949Z","MostPoints":52,"MostPointsAt":"2023-02-16T05:25:49.213009Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213009Z","LastActivityAt":"2023-02-16T05:25:49.213009Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213447Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849046647,"Name":"DĆŒejdĆŒejj","NumVillages":1,"Points":26,"Rank":2773,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849046647","BestRank":2773,"BestRankAt":"2023-02-16T05:25:56.352949Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.21301Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21301Z","LastActivityAt":"2023-02-16T05:25:49.21301Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213447Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1635,"ScoreAtt":889,"RankDef":2084,"ScoreDef":2800,"RankSup":1295,"ScoreSup":27,"RankTotal":2167,"ScoreTotal":3716,"ID":849047044,"Name":"Angelyears","NumVillages":7,"Points":58702,"Rank":660,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849047044","BestRank":660,"BestRankAt":"2023-02-16T05:25:49.21301Z","MostPoints":58702,"MostPointsAt":"2023-02-16T05:25:56.35295Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.21301Z","LastActivityAt":"2023-02-16T05:25:56.35295Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213448Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":625,"ScoreAtt":184646,"RankDef":1270,"ScoreDef":60107,"RankSup":0,"ScoreSup":0,"RankTotal":1061,"ScoreTotal":244753,"ID":849047233,"Name":"Morgan578","NumVillages":7,"Points":32793,"Rank":791,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849047233","BestRank":791,"BestRankAt":"2023-02-16T05:25:56.35295Z","MostPoints":32793,"MostPointsAt":"2023-02-16T05:25:56.35295Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.213011Z","LastActivityAt":"2023-02-16T05:25:56.35295Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213448Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":567,"ScoreAtt":255113,"RankDef":284,"ScoreDef":1281838,"RankSup":432,"ScoreSup":250453,"RankTotal":446,"ScoreTotal":1787404,"ID":849048112,"Name":"mrozzo","NumVillages":1,"Points":26,"Rank":2774,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048112","BestRank":2774,"BestRankAt":"2023-02-16T05:25:56.352951Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213012Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213012Z","LastActivityAt":"2023-02-16T05:25:49.213012Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213448Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":944,"ScoreAtt":41250,"RankDef":987,"ScoreDef":129194,"RankSup":656,"ScoreSup":67853,"RankTotal":1070,"ScoreTotal":238297,"ID":849048216,"Name":"Wektor39","NumVillages":12,"Points":43533,"Rank":723,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048216","BestRank":723,"BestRankAt":"2023-02-16T05:25:56.352951Z","MostPoints":43533,"MostPointsAt":"2023-02-16T05:25:56.352951Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:56.352951Z","LastActivityAt":"2023-02-16T05:25:56.352951Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1104,"ScoreAtt":17635,"RankDef":2359,"ScoreDef":34,"RankSup":0,"ScoreSup":0,"RankTotal":1887,"ScoreTotal":17669,"ID":849048241,"Name":"Krystian438997","NumVillages":1,"Points":5178,"Rank":1310,"TribeID":1692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048241","BestRank":1310,"BestRankAt":"2023-02-16T05:25:56.352952Z","MostPoints":5178,"MostPointsAt":"2023-02-16T05:25:49.213013Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213013Z","LastActivityAt":"2023-02-16T05:25:49.213013Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":802,"ScoreAtt":79603,"RankDef":559,"ScoreDef":428837,"RankSup":837,"ScoreSup":17656,"RankTotal":820,"ScoreTotal":526096,"ID":849048455,"Name":"Brannigan","NumVillages":1,"Points":1829,"Rank":1685,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048455","BestRank":1685,"BestRankAt":"2023-02-16T05:25:56.352952Z","MostPoints":1829,"MostPointsAt":"2023-02-16T05:25:56.352952Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213014Z","LastActivityAt":"2023-02-16T05:25:56.352952Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213449Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":845,"ScoreAtt":65666,"RankDef":632,"ScoreDef":342840,"RankSup":936,"ScoreSup":8520,"RankTotal":900,"ScoreTotal":417026,"ID":849048552,"Name":"Sylwiaa1234","NumVillages":1,"Points":68,"Rank":2511,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048552","BestRank":2511,"BestRankAt":"2023-02-16T05:25:56.352953Z","MostPoints":68,"MostPointsAt":"2023-02-16T05:25:49.213014Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213014Z","LastActivityAt":"2023-02-16T05:25:49.213015Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1125,"ScoreAtt":15812,"RankDef":1323,"ScoreDef":54806,"RankSup":0,"ScoreSup":0,"RankTotal":1496,"ScoreTotal":70618,"ID":849048562,"Name":"Adam19955","NumVillages":1,"Points":8663,"Rank":1126,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048562","BestRank":1126,"BestRankAt":"2023-02-16T05:25:56.352953Z","MostPoints":8663,"MostPointsAt":"2023-02-16T05:25:56.352953Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213015Z","LastActivityAt":"2023-02-16T05:25:56.352953Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":956,"ScoreAtt":37911,"RankDef":1685,"ScoreDef":19542,"RankSup":933,"ScoreSup":8575,"RankTotal":1518,"ScoreTotal":66028,"ID":849048734,"Name":"Wincy94","NumVillages":6,"Points":26027,"Rank":852,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048734","BestRank":849,"BestRankAt":"2023-02-16T05:25:49.213016Z","MostPoints":26027,"MostPointsAt":"2023-02-16T05:25:56.352954Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.213016Z","LastActivityAt":"2023-02-16T05:25:56.352954Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21345Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1426,"ScoreAtt":3444,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2175,"ScoreTotal":3444,"ID":849048856,"Name":"Ffran","NumVillages":6,"Points":25009,"Rank":863,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048856","BestRank":863,"BestRankAt":"2023-02-16T05:25:56.352954Z","MostPoints":25009,"MostPointsAt":"2023-02-16T05:25:56.352955Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:56.352954Z","LastActivityAt":"2023-02-16T05:25:56.352955Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":695,"ScoreAtt":131708,"RankDef":608,"ScoreDef":372530,"RankSup":726,"ScoreSup":41982,"RankTotal":803,"ScoreTotal":546220,"ID":849048867,"Name":"sylwek02","NumVillages":30,"Points":208171,"Rank":413,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849048867","BestRank":408,"BestRankAt":"2023-02-16T05:25:49.213017Z","MostPoints":208982,"MostPointsAt":"2023-02-16T05:25:49.213018Z","MostVillages":30,"MostVillagesAt":"2023-02-16T05:25:49.213018Z","LastActivityAt":"2023-02-16T05:25:49.213018Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":446,"ScoreAtt":455166,"RankDef":282,"ScoreDef":1289083,"RankSup":542,"ScoreSup":135971,"RankTotal":425,"ScoreTotal":1880220,"ID":849049045,"Name":"rafal9725","NumVillages":14,"Points":138889,"Rank":478,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049045","BestRank":478,"BestRankAt":"2023-02-16T05:25:56.352955Z","MostPoints":138889,"MostPointsAt":"2023-02-16T05:25:56.352956Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.213018Z","LastActivityAt":"2023-02-16T05:25:56.352956Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213451Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":653,"ScoreAtt":156399,"RankDef":684,"ScoreDef":287016,"RankSup":1122,"ScoreSup":1382,"RankTotal":876,"ScoreTotal":444797,"ID":849049155,"Name":"NHL2022","NumVillages":3,"Points":25956,"Rank":853,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049155","BestRank":851,"BestRankAt":"2023-02-16T05:25:49.213019Z","MostPoints":25956,"MostPointsAt":"2023-02-16T05:25:56.352956Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213019Z","LastActivityAt":"2023-02-16T05:25:56.352956Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213452Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2436,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2531,"ScoreTotal":10,"ID":849049288,"Name":"maaadzior95","NumVillages":1,"Points":2818,"Rank":1543,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049288","BestRank":1543,"BestRankAt":"2023-02-16T05:25:56.352956Z","MostPoints":2818,"MostPointsAt":"2023-02-16T05:25:56.352957Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21302Z","LastActivityAt":"2023-02-16T05:25:56.352957Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213452Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849049864,"Name":"Itadakimasu","NumVillages":1,"Points":26,"Rank":2775,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849049864","BestRank":2775,"BestRankAt":"2023-02-16T05:25:56.352957Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213021Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213021Z","LastActivityAt":"2023-02-16T05:25:49.213021Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1230,"ScoreAtt":8841,"RankDef":1701,"ScoreDef":18316,"RankSup":0,"ScoreSup":0,"RankTotal":1795,"ScoreTotal":27157,"ID":849050087,"Name":"bunu","NumVillages":3,"Points":3097,"Rank":1499,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050087","BestRank":1184,"BestRankAt":"2023-02-16T05:25:49.213024Z","MostPoints":7526,"MostPointsAt":"2023-02-16T05:25:49.213024Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.213024Z","LastActivityAt":"2023-02-16T05:25:49.213024Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1491,"ScoreAtt":2415,"RankDef":1209,"ScoreDef":70827,"RankSup":874,"ScoreSup":14147,"RankTotal":1436,"ScoreTotal":87389,"ID":849050191,"Name":"Sir Refresh","NumVillages":1,"Points":5703,"Rank":1279,"TribeID":1734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050191","BestRank":1279,"BestRankAt":"2023-02-16T05:25:56.352958Z","MostPoints":5703,"MostPointsAt":"2023-02-16T05:25:49.213025Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213025Z","LastActivityAt":"2023-02-16T05:25:49.213025Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849050410,"Name":"221719123","NumVillages":1,"Points":26,"Rank":2776,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050410","BestRank":2776,"BestRankAt":"2023-02-16T05:25:56.352958Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213026Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213025Z","LastActivityAt":"2023-02-16T05:25:49.213026Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213453Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":682,"ScoreDef":288160,"RankSup":1174,"ScoreSup":605,"RankTotal":1014,"ScoreTotal":288765,"ID":849050734,"Name":"piotrpeters","NumVillages":0,"Points":0,"Rank":3009,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050734","BestRank":3009,"BestRankAt":"2023-02-16T05:25:56.352959Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213026Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213026Z","LastActivityAt":"2023-02-16T05:25:49.213027Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213454Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":519,"ScoreAtt":326552,"RankDef":1063,"ScoreDef":104505,"RankSup":0,"ScoreSup":0,"RankTotal":885,"ScoreTotal":431057,"ID":849050849,"Name":"Dawid 84","NumVillages":7,"Points":49759,"Rank":696,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849050849","BestRank":696,"BestRankAt":"2023-02-16T05:25:56.352959Z","MostPoints":49759,"MostPointsAt":"2023-02-16T05:25:56.35296Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.213027Z","LastActivityAt":"2023-02-16T05:25:56.35296Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213454Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1417,"ScoreDef":40999,"RankSup":0,"ScoreSup":0,"RankTotal":1667,"ScoreTotal":40999,"ID":849051363,"Name":"Tomus 01011973","NumVillages":1,"Points":337,"Rank":2121,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051363","BestRank":2121,"BestRankAt":"2023-02-16T05:25:56.35296Z","MostPoints":337,"MostPointsAt":"2023-02-16T05:25:56.35296Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213028Z","LastActivityAt":"2023-02-16T05:25:56.35296Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213454Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1087,"ScoreAtt":19539,"RankDef":218,"ScoreDef":1752217,"RankSup":800,"ScoreSup":24516,"RankTotal":441,"ScoreTotal":1796272,"ID":849051436,"Name":"Cataloniaa","NumVillages":0,"Points":0,"Rank":3010,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051436","BestRank":3010,"BestRankAt":"2023-02-16T05:25:56.352961Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213029Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213029Z","LastActivityAt":"2023-02-16T05:25:49.213029Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213454Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1771,"ScoreAtt":258,"RankDef":2411,"ScoreDef":11,"RankSup":0,"ScoreSup":0,"RankTotal":2366,"ScoreTotal":269,"ID":849051731,"Name":"dzidek76","NumVillages":1,"Points":3414,"Rank":1468,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051731","BestRank":1468,"BestRankAt":"2023-02-16T05:25:56.352961Z","MostPoints":3414,"MostPointsAt":"2023-02-16T05:25:56.352961Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213029Z","LastActivityAt":"2023-02-16T05:25:56.352961Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":940,"ScoreAtt":41923,"RankDef":1112,"ScoreDef":91965,"RankSup":0,"ScoreSup":0,"RankTotal":1286,"ScoreTotal":133888,"ID":849051976,"Name":"AdamC7","NumVillages":3,"Points":22245,"Rank":890,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849051976","BestRank":890,"BestRankAt":"2023-02-16T05:25:56.352962Z","MostPoints":22245,"MostPointsAt":"2023-02-16T05:25:56.352962Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.21303Z","LastActivityAt":"2023-02-16T05:25:56.352962Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1828,"ScoreAtt":135,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2402,"ScoreTotal":135,"ID":849052195,"Name":"PaszaBiceps","NumVillages":1,"Points":226,"Rank":2235,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052195","BestRank":2235,"BestRankAt":"2023-02-16T05:25:56.352962Z","MostPoints":226,"MostPointsAt":"2023-02-16T05:25:49.213031Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213031Z","LastActivityAt":"2023-02-16T05:25:49.213031Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1402,"ScoreAtt":4050,"RankDef":2151,"ScoreDef":1734,"RankSup":0,"ScoreSup":0,"RankTotal":2094,"ScoreTotal":5784,"ID":849052289,"Name":"Avilkson","NumVillages":1,"Points":8663,"Rank":1127,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052289","BestRank":1127,"BestRankAt":"2023-02-16T05:25:56.352963Z","MostPoints":8663,"MostPointsAt":"2023-02-16T05:25:56.352963Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213032Z","LastActivityAt":"2023-02-16T05:25:56.352963Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213455Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849052488,"Name":"Terada","NumVillages":1,"Points":358,"Rank":2105,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052488","BestRank":2105,"BestRankAt":"2023-02-16T05:25:56.352963Z","MostPoints":358,"MostPointsAt":"2023-02-16T05:25:49.213033Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213033Z","LastActivityAt":"2023-02-16T05:25:49.213033Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":598,"ScoreAtt":216618,"RankDef":142,"ScoreDef":2744723,"RankSup":647,"ScoreSup":74745,"RankTotal":285,"ScoreTotal":3036086,"ID":849052549,"Name":"Mateo1315","NumVillages":1,"Points":26,"Rank":2777,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052549","BestRank":2777,"BestRankAt":"2023-02-16T05:25:56.352964Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213034Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213033Z","LastActivityAt":"2023-02-16T05:25:49.213034Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1444,"ScoreAtt":3214,"RankDef":940,"ScoreDef":149021,"RankSup":1272,"ScoreSup":57,"RankTotal":1242,"ScoreTotal":152292,"ID":849052588,"Name":"nula132","NumVillages":0,"Points":0,"Rank":3011,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849052588","BestRank":3011,"BestRankAt":"2023-02-16T05:25:56.352964Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213034Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213034Z","LastActivityAt":"2023-02-16T05:25:49.213035Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213456Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2292,"ScoreDef":240,"RankSup":0,"ScoreSup":0,"RankTotal":2372,"ScoreTotal":240,"ID":849053122,"Name":"mockingcoffin","NumVillages":1,"Points":2886,"Rank":1530,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849053122","BestRank":1530,"BestRankAt":"2023-02-16T05:25:56.352965Z","MostPoints":2886,"MostPointsAt":"2023-02-16T05:25:49.213035Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213035Z","LastActivityAt":"2023-02-16T05:25:49.213035Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1523,"ScoreAtt":2087,"RankDef":767,"ScoreDef":234522,"RankSup":1158,"ScoreSup":847,"RankTotal":1073,"ScoreTotal":237456,"ID":849053868,"Name":"Hajotus","NumVillages":0,"Points":0,"Rank":3012,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849053868","BestRank":3012,"BestRankAt":"2023-02-16T05:25:56.352965Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213036Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213036Z","LastActivityAt":"2023-02-16T05:25:49.213036Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":416,"ScoreAtt":531083,"RankDef":1044,"ScoreDef":109387,"RankSup":548,"ScoreSup":131427,"RankTotal":692,"ScoreTotal":771897,"ID":849054582,"Name":"Pompka15","NumVillages":46,"Points":328897,"Rank":343,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849054582","BestRank":342,"BestRankAt":"2023-02-16T05:25:49.213036Z","MostPoints":328897,"MostPointsAt":"2023-02-16T05:25:49.213037Z","MostVillages":46,"MostVillagesAt":"2023-02-16T05:25:49.213037Z","LastActivityAt":"2023-02-16T05:25:49.213037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849054606,"Name":"TheMooon","NumVillages":1,"Points":205,"Rank":2264,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849054606","BestRank":2264,"BestRankAt":"2023-02-16T05:25:56.352966Z","MostPoints":205,"MostPointsAt":"2023-02-16T05:25:56.352966Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213037Z","LastActivityAt":"2023-02-16T05:25:56.352966Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213457Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":80,"ScoreAtt":3981220,"RankDef":543,"ScoreDef":457222,"RankSup":143,"ScoreSup":1554166,"RankTotal":153,"ScoreTotal":5992608,"ID":849054951,"Name":"maxigtr95","NumVillages":48,"Points":462887,"Rank":280,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849054951","BestRank":252,"BestRankAt":"2023-02-16T05:25:49.213038Z","MostPoints":555172,"MostPointsAt":"2023-02-16T05:25:49.213038Z","MostVillages":58,"MostVillagesAt":"2023-02-16T05:25:49.213038Z","LastActivityAt":"2023-02-16T05:25:56.352967Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213458Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849055096,"Name":"dorkness","NumVillages":1,"Points":136,"Rank":2380,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055096","BestRank":2380,"BestRankAt":"2023-02-16T05:25:56.352967Z","MostPoints":136,"MostPointsAt":"2023-02-16T05:25:49.213039Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213039Z","LastActivityAt":"2023-02-16T05:25:49.213039Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213458Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1532,"ScoreAtt":1978,"RankDef":1606,"ScoreDef":25301,"RankSup":1194,"ScoreSup":391,"RankTotal":1788,"ScoreTotal":27670,"ID":849055181,"Name":"Lord Arczi997","NumVillages":9,"Points":22758,"Rank":888,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055181","BestRank":888,"BestRankAt":"2023-02-16T05:25:49.21304Z","MostPoints":22758,"MostPointsAt":"2023-02-16T05:25:56.352968Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.21304Z","LastActivityAt":"2023-02-16T05:25:56.352968Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213458Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1743,"ScoreAtt":313,"RankDef":1109,"ScoreDef":92068,"RankSup":0,"ScoreSup":0,"RankTotal":1417,"ScoreTotal":92381,"ID":849055309,"Name":"Rango","NumVillages":1,"Points":772,"Rank":1910,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055309","BestRank":1910,"BestRankAt":"2023-02-16T05:25:56.352968Z","MostPoints":772,"MostPointsAt":"2023-02-16T05:25:49.213041Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21304Z","LastActivityAt":"2023-02-16T05:25:49.213041Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":954,"ScoreAtt":38310,"RankDef":1047,"ScoreDef":108987,"RankSup":468,"ScoreSup":201714,"RankTotal":959,"ScoreTotal":349011,"ID":849055425,"Name":"Karl Dzikens","NumVillages":16,"Points":110361,"Rank":519,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055425","BestRank":519,"BestRankAt":"2023-02-16T05:25:56.352969Z","MostPoints":110361,"MostPointsAt":"2023-02-16T05:25:56.352969Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.213041Z","LastActivityAt":"2023-02-16T05:25:56.352969Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1617,"ScoreDef":24417,"RankSup":1317,"ScoreSup":15,"RankTotal":1820,"ScoreTotal":24432,"ID":849055527,"Name":"fikumiku111","NumVillages":1,"Points":179,"Rank":2315,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055527","BestRank":2315,"BestRankAt":"2023-02-16T05:25:56.352969Z","MostPoints":179,"MostPointsAt":"2023-02-16T05:25:49.213042Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213042Z","LastActivityAt":"2023-02-16T05:25:49.213042Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1567,"ScoreAtt":1557,"RankDef":755,"ScoreDef":242429,"RankSup":0,"ScoreSup":0,"RankTotal":1063,"ScoreTotal":243986,"ID":849055553,"Name":"Bv3y","NumVillages":2,"Points":7151,"Rank":1201,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849055553","BestRank":1201,"BestRankAt":"2023-02-16T05:25:56.35297Z","MostPoints":7151,"MostPointsAt":"2023-02-16T05:25:56.35297Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213043Z","LastActivityAt":"2023-02-16T05:25:56.35297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213459Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1664,"ScoreDef":20311,"RankSup":0,"ScoreSup":0,"RankTotal":1862,"ScoreTotal":20311,"ID":849056475,"Name":"lis 1","NumVillages":1,"Points":1298,"Rank":1778,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849056475","BestRank":1778,"BestRankAt":"2023-02-16T05:25:56.35297Z","MostPoints":1298,"MostPointsAt":"2023-02-16T05:25:56.35297Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213044Z","LastActivityAt":"2023-02-16T05:25:56.35297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":767,"ScoreAtt":93268,"RankDef":207,"ScoreDef":1832658,"RankSup":599,"ScoreSup":99981,"RankTotal":406,"ScoreTotal":2025907,"ID":849056744,"Name":"setts","NumVillages":7,"Points":33390,"Rank":784,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849056744","BestRank":747,"BestRankAt":"2023-02-16T05:25:49.213044Z","MostPoints":38789,"MostPointsAt":"2023-02-16T05:25:49.213045Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.213044Z","LastActivityAt":"2023-02-16T05:25:49.213045Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":685,"ScoreDef":286426,"RankSup":0,"ScoreSup":0,"RankTotal":1016,"ScoreTotal":286426,"ID":849056892,"Name":"General Kaczor","NumVillages":0,"Points":0,"Rank":3013,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849056892","BestRank":3013,"BestRankAt":"2023-02-16T05:25:56.352971Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213045Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213045Z","LastActivityAt":"2023-02-16T05:25:49.213045Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21346Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1949,"ScoreDef":6038,"RankSup":0,"ScoreSup":0,"RankTotal":2083,"ScoreTotal":6038,"ID":849057176,"Name":"Patoszek","NumVillages":0,"Points":0,"Rank":3014,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057176","BestRank":3014,"BestRankAt":"2023-02-16T05:25:56.352972Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213046Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213046Z","LastActivityAt":"2023-02-16T05:25:49.213046Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213461Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1753,"ScoreAtt":288,"RankDef":565,"ScoreDef":414190,"RankSup":0,"ScoreSup":0,"RankTotal":902,"ScoreTotal":414478,"ID":849057450,"Name":"Rutalo","NumVillages":1,"Points":1851,"Rank":1683,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057450","BestRank":1683,"BestRankAt":"2023-02-16T05:25:56.352972Z","MostPoints":1851,"MostPointsAt":"2023-02-16T05:25:56.352972Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213047Z","LastActivityAt":"2023-02-16T05:25:56.352972Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213461Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":590,"ScoreAtt":224775,"RankDef":201,"ScoreDef":1887051,"RankSup":260,"ScoreSup":654823,"RankTotal":313,"ScoreTotal":2766649,"ID":849057572,"Name":"L44ndryn","NumVillages":2,"Points":17788,"Rank":957,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057572","BestRank":829,"BestRankAt":"2023-02-16T05:25:49.213048Z","MostPoints":28050,"MostPointsAt":"2023-02-16T05:25:49.213048Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.213048Z","LastActivityAt":"2023-02-16T05:25:56.352973Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213461Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":506,"ScoreAtt":343819,"RankDef":110,"ScoreDef":3400530,"RankSup":193,"ScoreSup":1002599,"RankTotal":199,"ScoreTotal":4746948,"ID":849057655,"Name":"Pimpuƛ","NumVillages":1,"Points":52,"Rank":2546,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057655","BestRank":2546,"BestRankAt":"2023-02-16T05:25:56.352973Z","MostPoints":52,"MostPointsAt":"2023-02-16T05:25:49.213049Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213048Z","LastActivityAt":"2023-02-16T05:25:49.213049Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213461Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1490,"ScoreAtt":2416,"RankDef":597,"ScoreDef":383279,"RankSup":578,"ScoreSup":112500,"RankTotal":843,"ScoreTotal":498195,"ID":849057764,"Name":"Grzejdas","NumVillages":8,"Points":30945,"Rank":811,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849057764","BestRank":811,"BestRankAt":"2023-02-16T05:25:56.352974Z","MostPoints":30945,"MostPointsAt":"2023-02-16T05:25:56.352974Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.213049Z","LastActivityAt":"2023-02-16T05:25:56.352974Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213462Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":703,"ScoreAtt":126983,"RankDef":799,"ScoreDef":211115,"RankSup":707,"ScoreSup":46934,"RankTotal":931,"ScoreTotal":385032,"ID":849058207,"Name":"webi","NumVillages":1,"Points":183,"Rank":2329,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849058207","BestRank":2329,"BestRankAt":"2023-02-16T05:25:49.21305Z","MostPoints":183,"MostPointsAt":"2023-02-16T05:25:49.21305Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21305Z","LastActivityAt":"2023-02-16T05:25:49.21305Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213462Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1039,"ScoreDef":112602,"RankSup":0,"ScoreSup":0,"RankTotal":1345,"ScoreTotal":112602,"ID":849059331,"Name":"Hubida","NumVillages":0,"Points":0,"Rank":3015,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849059331","BestRank":3015,"BestRankAt":"2023-02-16T05:25:56.352974Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213051Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213051Z","LastActivityAt":"2023-02-16T05:25:49.213051Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213462Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":846,"ScoreAtt":65582,"RankDef":1217,"ScoreDef":69002,"RankSup":510,"ScoreSup":165042,"RankTotal":1005,"ScoreTotal":299626,"ID":849059457,"Name":"serwis??????????????","NumVillages":17,"Points":103761,"Rank":530,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849059457","BestRank":530,"BestRankAt":"2023-02-16T05:25:56.352975Z","MostPoints":103761,"MostPointsAt":"2023-02-16T05:25:56.352975Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.213051Z","LastActivityAt":"2023-02-16T05:25:56.352975Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213462Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":315,"ScoreAtt":853911,"RankDef":59,"ScoreDef":5804499,"RankSup":286,"ScoreSup":569584,"RankTotal":118,"ScoreTotal":7227994,"ID":849059491,"Name":"Robbinho","NumVillages":33,"Points":268910,"Rank":369,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849059491","BestRank":368,"BestRankAt":"2023-02-16T05:25:49.213052Z","MostPoints":268910,"MostPointsAt":"2023-02-16T05:25:56.352975Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:49.213052Z","LastActivityAt":"2023-02-16T05:25:56.352975Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1656,"ScoreAtt":755,"RankDef":1974,"ScoreDef":5431,"RankSup":1408,"ScoreSup":1,"RankTotal":2079,"ScoreTotal":6187,"ID":849060099,"Name":"Krycek","NumVillages":1,"Points":9097,"Rank":1113,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849060099","BestRank":1113,"BestRankAt":"2023-02-16T05:25:56.352976Z","MostPoints":9097,"MostPointsAt":"2023-02-16T05:25:49.213053Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213053Z","LastActivityAt":"2023-02-16T05:25:49.213053Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2332,"ScoreDef":77,"RankSup":0,"ScoreSup":0,"RankTotal":2426,"ScoreTotal":77,"ID":849060357,"Name":"Marcelinka","NumVillages":1,"Points":2198,"Rank":1620,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849060357","BestRank":1620,"BestRankAt":"2023-02-16T05:25:56.352976Z","MostPoints":2198,"MostPointsAt":"2023-02-16T05:25:56.352976Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213054Z","LastActivityAt":"2023-02-16T05:25:56.352976Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":324,"ScoreAtt":811352,"RankDef":87,"ScoreDef":3954593,"RankSup":395,"ScoreSup":325590,"RankTotal":182,"ScoreTotal":5091535,"ID":849060446,"Name":"karu7","NumVillages":31,"Points":288816,"Rank":358,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849060446","BestRank":351,"BestRankAt":"2023-02-16T05:25:49.213054Z","MostPoints":308903,"MostPointsAt":"2023-02-16T05:25:49.213054Z","MostVillages":34,"MostVillagesAt":"2023-02-16T05:25:49.213054Z","LastActivityAt":"2023-02-16T05:25:49.213055Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213463Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":212,"ScoreAtt":1481037,"RankDef":22,"ScoreDef":14367363,"RankSup":115,"ScoreSup":1936850,"RankTotal":36,"ScoreTotal":17785250,"ID":849061374,"Name":"kosiarapan","NumVillages":11,"Points":101590,"Rank":534,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061374","BestRank":534,"BestRankAt":"2023-02-16T05:25:56.352977Z","MostPoints":101590,"MostPointsAt":"2023-02-16T05:25:56.352977Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.213055Z","LastActivityAt":"2023-02-16T05:25:56.352977Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":183,"ScoreAtt":1730001,"RankDef":223,"ScoreDef":1712187,"RankSup":746,"ScoreSup":36891,"RankTotal":258,"ScoreTotal":3479079,"ID":849061406,"Name":"BastianCHW","NumVillages":1,"Points":26,"Rank":2778,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061406","BestRank":2778,"BestRankAt":"2023-02-16T05:25:56.352978Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213056Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213056Z","LastActivityAt":"2023-02-16T05:25:49.213056Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1419,"ScoreAtt":3619,"RankDef":1734,"ScoreDef":16480,"RankSup":0,"ScoreSup":0,"RankTotal":1867,"ScoreTotal":20099,"ID":849061417,"Name":"Poqson1337","NumVillages":1,"Points":437,"Rank":2047,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061417","BestRank":2047,"BestRankAt":"2023-02-16T05:25:56.352978Z","MostPoints":437,"MostPointsAt":"2023-02-16T05:25:49.213057Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213057Z","LastActivityAt":"2023-02-16T05:25:49.213057Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849061418,"Name":"Bellu","NumVillages":1,"Points":26,"Rank":2779,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849061418","BestRank":2779,"BestRankAt":"2023-02-16T05:25:56.352979Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213058Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213058Z","LastActivityAt":"2023-02-16T05:25:49.213058Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213464Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1683,"ScoreAtt":643,"RankDef":1965,"ScoreDef":5725,"RankSup":0,"ScoreSup":0,"RankTotal":2076,"ScoreTotal":6368,"ID":849062546,"Name":"karlitos MMz","NumVillages":1,"Points":4432,"Rank":1367,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849062546","BestRank":1367,"BestRankAt":"2023-02-16T05:25:56.352979Z","MostPoints":4432,"MostPointsAt":"2023-02-16T05:25:49.213059Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213058Z","LastActivityAt":"2023-02-16T05:25:49.213059Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213465Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849062706,"Name":"Pysia.","NumVillages":1,"Points":26,"Rank":2809,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849062706","BestRank":2809,"BestRankAt":"2023-02-16T05:25:49.213059Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213059Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213059Z","LastActivityAt":"2023-02-16T05:25:49.213059Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213465Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1135,"ScoreAtt":14829,"RankDef":1614,"ScoreDef":24527,"RankSup":850,"ScoreSup":16256,"RankTotal":1572,"ScoreTotal":55612,"ID":849062920,"Name":"TheJarzabek","NumVillages":2,"Points":5852,"Rank":1272,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849062920","BestRank":1272,"BestRankAt":"2023-02-16T05:25:56.35298Z","MostPoints":5852,"MostPointsAt":"2023-02-16T05:25:49.21306Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.21306Z","LastActivityAt":"2023-02-16T05:25:49.21306Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213465Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1131,"ScoreAtt":15329,"RankDef":169,"ScoreDef":2261037,"RankSup":754,"ScoreSup":34520,"RankTotal":370,"ScoreTotal":2310886,"ID":849063605,"Name":"Mescalero","NumVillages":1,"Points":291,"Rank":2163,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063605","BestRank":2163,"BestRankAt":"2023-02-16T05:25:56.35298Z","MostPoints":291,"MostPointsAt":"2023-02-16T05:25:49.213061Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213061Z","LastActivityAt":"2023-02-16T05:25:49.213061Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213465Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":907,"ScoreAtt":48663,"RankDef":1242,"ScoreDef":64158,"RankSup":783,"ScoreSup":28429,"RankTotal":1265,"ScoreTotal":141250,"ID":849063793,"Name":"Nowak2508","NumVillages":11,"Points":40423,"Rank":738,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063793","BestRank":738,"BestRankAt":"2023-02-16T05:25:56.352981Z","MostPoints":40423,"MostPointsAt":"2023-02-16T05:25:56.352981Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:56.352981Z","LastActivityAt":"2023-02-16T05:25:56.352981Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":397,"ScoreAtt":593766,"RankDef":335,"ScoreDef":949742,"RankSup":475,"ScoreSup":193695,"RankTotal":457,"ScoreTotal":1737203,"ID":849063849,"Name":"specanz","NumVillages":80,"Points":620064,"Rank":230,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063849","BestRank":230,"BestRankAt":"2023-02-16T05:25:49.213062Z","MostPoints":620064,"MostPointsAt":"2023-02-16T05:25:56.352981Z","MostVillages":80,"MostVillagesAt":"2023-02-16T05:25:49.213062Z","LastActivityAt":"2023-02-16T05:25:56.352981Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":617,"ScoreAtt":191808,"RankDef":790,"ScoreDef":221569,"RankSup":1024,"ScoreSup":3650,"RankTotal":899,"ScoreTotal":417027,"ID":849063932,"Name":"Electriccc","NumVillages":0,"Points":0,"Rank":3016,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849063932","BestRank":3016,"BestRankAt":"2023-02-16T05:25:56.352982Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213063Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213063Z","LastActivityAt":"2023-02-16T05:25:49.213063Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213466Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1572,"ScoreAtt":1487,"RankDef":2309,"ScoreDef":170,"RankSup":0,"ScoreSup":0,"RankTotal":2254,"ScoreTotal":1657,"ID":849064084,"Name":"bolek13241","NumVillages":1,"Points":2648,"Rank":1559,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064084","BestRank":1559,"BestRankAt":"2023-02-16T05:25:56.352982Z","MostPoints":2648,"MostPointsAt":"2023-02-16T05:25:49.213064Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213064Z","LastActivityAt":"2023-02-16T05:25:49.213064Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213467Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1562,"ScoreAtt":1609,"RankDef":1436,"ScoreDef":39006,"RankSup":1255,"ScoreSup":91,"RankTotal":1670,"ScoreTotal":40706,"ID":849064087,"Name":"Myszka21","NumVillages":1,"Points":401,"Rank":2070,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064087","BestRank":2070,"BestRankAt":"2023-02-16T05:25:56.352983Z","MostPoints":401,"MostPointsAt":"2023-02-16T05:25:49.213065Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213065Z","LastActivityAt":"2023-02-16T05:25:49.213065Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213467Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":560,"ScoreAtt":262110,"RankDef":292,"ScoreDef":1219468,"RankSup":161,"ScoreSup":1359309,"RankTotal":309,"ScoreTotal":2840887,"ID":849064614,"Name":"rzecznianin","NumVillages":96,"Points":543569,"Rank":254,"TribeID":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064614","BestRank":254,"BestRankAt":"2023-02-16T05:25:56.352983Z","MostPoints":543569,"MostPointsAt":"2023-02-16T05:25:56.352983Z","MostVillages":96,"MostVillagesAt":"2023-02-16T05:25:49.213065Z","LastActivityAt":"2023-02-16T05:25:56.352983Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213467Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":978,"ScoreDef":133533,"RankSup":0,"ScoreSup":0,"RankTotal":1288,"ScoreTotal":133533,"ID":849064715,"Name":"Forwalls","NumVillages":1,"Points":132,"Rank":2394,"TribeID":689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064715","BestRank":2394,"BestRankAt":"2023-02-16T05:25:56.352984Z","MostPoints":132,"MostPointsAt":"2023-02-16T05:25:56.352984Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213066Z","LastActivityAt":"2023-02-16T05:25:56.352984Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213467Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":43,"ScoreAtt":5552486,"RankDef":37,"ScoreDef":9100438,"RankSup":11,"ScoreSup":6767593,"RankTotal":25,"ScoreTotal":21420517,"ID":849064752,"Name":"Soliz","NumVillages":363,"Points":2920075,"Rank":18,"TribeID":1,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849064752","BestRank":18,"BestRankAt":"2023-02-16T05:25:49.213067Z","MostPoints":2920075,"MostPointsAt":"2023-02-16T05:25:56.352985Z","MostVillages":363,"MostVillagesAt":"2023-02-16T05:25:56.352984Z","LastActivityAt":"2023-02-16T05:25:56.352985Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213468Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1503,"ScoreDef":33162,"RankSup":0,"ScoreSup":0,"RankTotal":1740,"ScoreTotal":33162,"ID":849065566,"Name":"warmonger","NumVillages":1,"Points":43,"Rank":2575,"TribeID":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065566","BestRank":2575,"BestRankAt":"2023-02-16T05:25:56.352985Z","MostPoints":43,"MostPointsAt":"2023-02-16T05:25:49.213068Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213068Z","LastActivityAt":"2023-02-16T05:25:49.213068Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213468Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1515,"ScoreAtt":2152,"RankDef":1787,"ScoreDef":12838,"RankSup":0,"ScoreSup":0,"RankTotal":1925,"ScoreTotal":14990,"ID":849065606,"Name":"AriaVikings","NumVillages":1,"Points":1109,"Rank":1820,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065606","BestRank":1820,"BestRankAt":"2023-02-16T05:25:56.352985Z","MostPoints":1109,"MostPointsAt":"2023-02-16T05:25:49.213069Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213069Z","LastActivityAt":"2023-02-16T05:25:49.213069Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213468Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":394,"ScoreAtt":598562,"RankDef":1640,"ScoreDef":22864,"RankSup":355,"ScoreSup":405809,"RankTotal":608,"ScoreTotal":1027235,"ID":849065697,"Name":"aJMers","NumVillages":1,"Points":3533,"Rank":1454,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065697","BestRank":1454,"BestRankAt":"2023-02-16T05:25:56.352986Z","MostPoints":3533,"MostPointsAt":"2023-02-16T05:25:49.21307Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213069Z","LastActivityAt":"2023-02-16T05:25:49.21307Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213469Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849065742,"Name":"Marczelok5","NumVillages":1,"Points":270,"Rank":2203,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065742","BestRank":2203,"BestRankAt":"2023-02-16T05:25:49.21307Z","MostPoints":270,"MostPointsAt":"2023-02-16T05:25:49.21307Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21307Z","LastActivityAt":"2023-02-16T05:25:49.21307Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213469Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2038,"ScoreDef":3750,"RankSup":0,"ScoreSup":0,"RankTotal":2165,"ScoreTotal":3750,"ID":849065829,"Name":"Sir Kmicic","NumVillages":1,"Points":209,"Rank":2256,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849065829","BestRank":2256,"BestRankAt":"2023-02-16T05:25:56.352986Z","MostPoints":209,"MostPointsAt":"2023-02-16T05:25:56.352987Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213071Z","LastActivityAt":"2023-02-16T05:25:56.352987Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213469Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1964,"ScoreAtt":8,"RankDef":2288,"ScoreDef":252,"RankSup":0,"ScoreSup":0,"RankTotal":2369,"ScoreTotal":260,"ID":849066035,"Name":"lukasz111","NumVillages":1,"Points":237,"Rank":2224,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066035","BestRank":2224,"BestRankAt":"2023-02-16T05:25:56.352987Z","MostPoints":237,"MostPointsAt":"2023-02-16T05:25:49.213072Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213072Z","LastActivityAt":"2023-02-16T05:25:49.213072Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213469Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":920,"ScoreAtt":46653,"RankDef":1207,"ScoreDef":70970,"RankSup":1298,"ScoreSup":23,"RankTotal":1330,"ScoreTotal":117646,"ID":849066044,"Name":"Rzezimieszek96","NumVillages":6,"Points":50182,"Rank":694,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066044","BestRank":693,"BestRankAt":"2023-02-16T05:25:49.213073Z","MostPoints":50182,"MostPointsAt":"2023-02-16T05:25:56.352988Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.213073Z","LastActivityAt":"2023-02-16T05:25:56.352988Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":924,"ScoreAtt":45397,"RankDef":674,"ScoreDef":296816,"RankSup":467,"ScoreSup":202024,"RankTotal":807,"ScoreTotal":544237,"ID":849066125,"Name":"Ć»ulionerka","NumVillages":1,"Points":254,"Rank":2203,"TribeID":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066125","BestRank":2203,"BestRankAt":"2023-02-16T05:25:56.352988Z","MostPoints":254,"MostPointsAt":"2023-02-16T05:25:49.213074Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213074Z","LastActivityAt":"2023-02-16T05:25:49.213074Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1641,"ScoreAtt":835,"RankDef":791,"ScoreDef":221074,"RankSup":1152,"ScoreSup":907,"RankTotal":1106,"ScoreTotal":222816,"ID":849066618,"Name":"Piorunek1996","NumVillages":1,"Points":1418,"Rank":1752,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066618","BestRank":1752,"BestRankAt":"2023-02-16T05:25:56.352988Z","MostPoints":1418,"MostPointsAt":"2023-02-16T05:25:56.352989Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213074Z","LastActivityAt":"2023-02-16T05:25:56.352989Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1710,"ScoreAtt":470,"RankDef":2396,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":2333,"ScoreTotal":484,"ID":849066808,"Name":"Argo733","NumVillages":1,"Points":630,"Rank":1959,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066808","BestRank":1959,"BestRankAt":"2023-02-16T05:25:56.352989Z","MostPoints":630,"MostPointsAt":"2023-02-16T05:25:56.352989Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213075Z","LastActivityAt":"2023-02-16T05:25:56.352989Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21347Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":719,"ScoreAtt":115163,"RankDef":1976,"ScoreDef":5385,"RankSup":249,"ScoreSup":710397,"RankTotal":673,"ScoreTotal":830945,"ID":849066849,"Name":"Bilonhg","NumVillages":25,"Points":136890,"Rank":481,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849066849","BestRank":481,"BestRankAt":"2023-02-16T05:25:56.35299Z","MostPoints":136890,"MostPointsAt":"2023-02-16T05:25:49.213076Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.213076Z","LastActivityAt":"2023-02-16T05:25:49.213076Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1397,"ScoreDef":44002,"RankSup":0,"ScoreSup":0,"RankTotal":1646,"ScoreTotal":44002,"ID":849067079,"Name":"AreYouHorny?","NumVillages":1,"Points":3620,"Rank":1436,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849067079","BestRank":1436,"BestRankAt":"2023-02-16T05:25:56.35299Z","MostPoints":3620,"MostPointsAt":"2023-02-16T05:25:49.213077Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213077Z","LastActivityAt":"2023-02-16T05:25:49.213077Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1254,"ScoreAtt":7575,"RankDef":1778,"ScoreDef":13485,"RankSup":0,"ScoreSup":0,"RankTotal":1851,"ScoreTotal":21060,"ID":849067192,"Name":"borys1695","NumVillages":6,"Points":26635,"Rank":846,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849067192","BestRank":846,"BestRankAt":"2023-02-16T05:25:56.352991Z","MostPoints":26635,"MostPointsAt":"2023-02-16T05:25:56.352991Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.213078Z","LastActivityAt":"2023-02-16T05:25:56.352991Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1004,"ScoreDef":124790,"RankSup":0,"ScoreSup":0,"RankTotal":1311,"ScoreTotal":124790,"ID":849067216,"Name":"Gum23","NumVillages":1,"Points":3982,"Rank":1403,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849067216","BestRank":1403,"BestRankAt":"2023-02-16T05:25:56.352991Z","MostPoints":3982,"MostPointsAt":"2023-02-16T05:25:49.213079Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213078Z","LastActivityAt":"2023-02-16T05:25:49.213079Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213471Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1269,"ScoreAtt":7142,"RankDef":286,"ScoreDef":1252357,"RankSup":675,"ScoreSup":59430,"RankTotal":536,"ScoreTotal":1318929,"ID":849068108,"Name":"Haszka13","NumVillages":9,"Points":38368,"Rank":751,"TribeID":822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849068108","BestRank":751,"BestRankAt":"2023-02-16T05:25:56.352992Z","MostPoints":38368,"MostPointsAt":"2023-02-16T05:25:56.352992Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.213079Z","LastActivityAt":"2023-02-16T05:25:56.352992Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849068436,"Name":"Kubaa333","NumVillages":1,"Points":676,"Rank":1941,"TribeID":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849068436","BestRank":1941,"BestRankAt":"2023-02-16T05:25:56.352992Z","MostPoints":676,"MostPointsAt":"2023-02-16T05:25:56.352992Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21308Z","LastActivityAt":"2023-02-16T05:25:56.352992Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":570,"ScoreAtt":250026,"RankDef":1014,"ScoreDef":123016,"RankSup":586,"ScoreSup":104350,"RankTotal":857,"ScoreTotal":477392,"ID":849068662,"Name":"ZƂylos","NumVillages":20,"Points":137960,"Rank":480,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849068662","BestRank":480,"BestRankAt":"2023-02-16T05:25:56.352993Z","MostPoints":137960,"MostPointsAt":"2023-02-16T05:25:56.352993Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:49.213081Z","LastActivityAt":"2023-02-16T05:25:56.352993Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213472Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1518,"ScoreAtt":2129,"RankDef":2064,"ScoreDef":3203,"RankSup":0,"ScoreSup":0,"RankTotal":2107,"ScoreTotal":5332,"ID":849069010,"Name":"Jackob666","NumVillages":1,"Points":270,"Rank":2189,"TribeID":1656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849069010","BestRank":2189,"BestRankAt":"2023-02-16T05:25:56.352993Z","MostPoints":270,"MostPointsAt":"2023-02-16T05:25:49.213082Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213082Z","LastActivityAt":"2023-02-16T05:25:49.213082Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":469,"ScoreAtt":415790,"RankDef":726,"ScoreDef":261800,"RankSup":763,"ScoreSup":33067,"RankTotal":724,"ScoreTotal":710657,"ID":849069022,"Name":"Jesse1910","NumVillages":0,"Points":0,"Rank":3017,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849069022","BestRank":3017,"BestRankAt":"2023-02-16T05:25:56.352994Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213083Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213082Z","LastActivityAt":"2023-02-16T05:25:49.213083Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1617,"ScoreAtt":1041,"RankDef":1563,"ScoreDef":28548,"RankSup":1405,"ScoreSup":1,"RankTotal":1767,"ScoreTotal":29590,"ID":849070220,"Name":"agjao","NumVillages":1,"Points":946,"Rank":1860,"TribeID":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070220","BestRank":1860,"BestRankAt":"2023-02-16T05:25:56.352994Z","MostPoints":946,"MostPointsAt":"2023-02-16T05:25:56.352994Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213083Z","LastActivityAt":"2023-02-16T05:25:56.352994Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":964,"ScoreAtt":36239,"RankDef":290,"ScoreDef":1233963,"RankSup":532,"ScoreSup":142162,"RankTotal":516,"ScoreTotal":1412364,"ID":849070335,"Name":"MaRm13","NumVillages":3,"Points":27102,"Rank":838,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070335","BestRank":836,"BestRankAt":"2023-02-16T05:25:49.213084Z","MostPoints":27102,"MostPointsAt":"2023-02-16T05:25:49.213084Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213084Z","LastActivityAt":"2023-02-16T05:25:49.213084Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213473Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":288,"ScoreAtt":983311,"RankDef":1886,"ScoreDef":8146,"RankSup":721,"ScoreSup":42592,"RankTotal":606,"ScoreTotal":1034049,"ID":849070464,"Name":"Thao0","NumVillages":18,"Points":142540,"Rank":475,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070464","BestRank":475,"BestRankAt":"2023-02-16T05:25:56.352995Z","MostPoints":142540,"MostPointsAt":"2023-02-16T05:25:56.352995Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:56.352995Z","LastActivityAt":"2023-02-16T05:25:56.352996Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213474Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1498,"ScoreAtt":2315,"RankDef":1923,"ScoreDef":6769,"RankSup":0,"ScoreSup":0,"RankTotal":2008,"ScoreTotal":9084,"ID":849070736,"Name":"GoƂabek","NumVillages":1,"Points":5870,"Rank":1271,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070736","BestRank":1271,"BestRankAt":"2023-02-16T05:25:56.352996Z","MostPoints":5870,"MostPointsAt":"2023-02-16T05:25:49.213086Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213086Z","LastActivityAt":"2023-02-16T05:25:49.213086Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213474Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1553,"ScoreDef":28981,"RankSup":0,"ScoreSup":0,"RankTotal":1775,"ScoreTotal":28981,"ID":849070812,"Name":"marko91","NumVillages":1,"Points":1367,"Rank":1762,"TribeID":1783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070812","BestRank":1762,"BestRankAt":"2023-02-16T05:25:56.352996Z","MostPoints":1367,"MostPointsAt":"2023-02-16T05:25:56.352996Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213087Z","LastActivityAt":"2023-02-16T05:25:56.352997Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213474Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":272,"ScoreAtt":1041914,"RankDef":950,"ScoreDef":146263,"RankSup":394,"ScoreSup":326047,"RankTotal":495,"ScoreTotal":1514224,"ID":849070946,"Name":"Diduƛ97","NumVillages":81,"Points":637638,"Rank":223,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849070946","BestRank":223,"BestRankAt":"2023-02-16T05:25:56.352997Z","MostPoints":637638,"MostPointsAt":"2023-02-16T05:25:56.352997Z","MostVillages":81,"MostVillagesAt":"2023-02-16T05:25:49.213087Z","LastActivityAt":"2023-02-16T05:25:56.352997Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213475Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":431,"ScoreAtt":482238,"RankDef":587,"ScoreDef":392443,"RankSup":534,"ScoreSup":141730,"RankTotal":611,"ScoreTotal":1016411,"ID":849071545,"Name":"timonuser","NumVillages":0,"Points":0,"Rank":3018,"TribeID":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849071545","BestRank":3018,"BestRankAt":"2023-02-16T05:25:56.352997Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213089Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213089Z","LastActivityAt":"2023-02-16T05:25:49.213089Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213475Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849071883,"Name":"game777","NumVillages":1,"Points":94,"Rank":2472,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849071883","BestRank":2472,"BestRankAt":"2023-02-16T05:25:56.352998Z","MostPoints":94,"MostPointsAt":"2023-02-16T05:25:49.213089Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213089Z","LastActivityAt":"2023-02-16T05:25:49.21309Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213475Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849072703,"Name":"83Krzysiek83","NumVillages":1,"Points":899,"Rank":1867,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072703","BestRank":1867,"BestRankAt":"2023-02-16T05:25:56.352998Z","MostPoints":899,"MostPointsAt":"2023-02-16T05:25:56.352999Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21309Z","LastActivityAt":"2023-02-16T05:25:56.352999Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":943,"ScoreAtt":41751,"RankDef":1956,"ScoreDef":6224,"RankSup":0,"ScoreSup":0,"RankTotal":1630,"ScoreTotal":47975,"ID":849072846,"Name":"Vallias","NumVillages":0,"Points":0,"Rank":3051,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072846","BestRank":3051,"BestRankAt":"2023-02-16T05:25:49.213091Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213091Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213091Z","LastActivityAt":"2023-02-16T05:25:49.213091Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213476Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849072855,"Name":"Luu123","NumVillages":1,"Points":93,"Rank":2475,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072855","BestRank":2475,"BestRankAt":"2023-02-16T05:25:56.352999Z","MostPoints":93,"MostPointsAt":"2023-02-16T05:25:49.213092Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213092Z","LastActivityAt":"2023-02-16T05:25:49.213092Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1461,"ScoreAtt":2849,"RankDef":928,"ScoreDef":153960,"RankSup":1224,"ScoreSup":237,"RankTotal":1236,"ScoreTotal":157046,"ID":849072873,"Name":"Nika1234","NumVillages":3,"Points":24852,"Rank":864,"TribeID":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072873","BestRank":863,"BestRankAt":"2023-02-16T05:25:49.213093Z","MostPoints":24852,"MostPointsAt":"2023-02-16T05:25:56.353Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213093Z","LastActivityAt":"2023-02-16T05:25:56.353Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213476Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2477,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2552,"ScoreTotal":2,"ID":849072919,"Name":"miniorek","NumVillages":1,"Points":26,"Rank":2780,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849072919","BestRank":2780,"BestRankAt":"2023-02-16T05:25:56.353Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213094Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213093Z","LastActivityAt":"2023-02-16T05:25:49.213094Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1235,"ScoreAtt":8544,"RankDef":625,"ScoreDef":350774,"RankSup":750,"ScoreSup":35218,"RankTotal":922,"ScoreTotal":394536,"ID":849073156,"Name":"bestleevatican","NumVillages":1,"Points":1533,"Rank":1729,"TribeID":8,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073156","BestRank":1729,"BestRankAt":"2023-02-16T05:25:56.353Z","MostPoints":1533,"MostPointsAt":"2023-02-16T05:25:56.353001Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213094Z","LastActivityAt":"2023-02-16T05:25:56.353001Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1814,"ScoreAtt":151,"RankDef":1814,"ScoreDef":11359,"RankSup":0,"ScoreSup":0,"RankTotal":1972,"ScoreTotal":11510,"ID":849073314,"Name":"DANIEL48","NumVillages":1,"Points":1192,"Rank":1791,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073314","BestRank":1791,"BestRankAt":"2023-02-16T05:25:56.353001Z","MostPoints":1192,"MostPointsAt":"2023-02-16T05:25:49.213095Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213095Z","LastActivityAt":"2023-02-16T05:25:49.213096Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849073486,"Name":"kristoferix","NumVillages":1,"Points":26,"Rank":2781,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073486","BestRank":2781,"BestRankAt":"2023-02-16T05:25:56.353002Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213097Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213096Z","LastActivityAt":"2023-02-16T05:25:49.213097Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213477Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849073939,"Name":"Shadow39","NumVillages":1,"Points":1208,"Rank":1789,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849073939","BestRank":1789,"BestRankAt":"2023-02-16T05:25:56.353002Z","MostPoints":1208,"MostPointsAt":"2023-02-16T05:25:49.213098Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213097Z","LastActivityAt":"2023-02-16T05:25:49.213098Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213478Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1865,"ScoreAtt":86,"RankDef":2033,"ScoreDef":3869,"RankSup":0,"ScoreSup":0,"RankTotal":2157,"ScoreTotal":3955,"ID":849074508,"Name":"ZimoweMajtki","NumVillages":1,"Points":2892,"Rank":1527,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849074508","BestRank":1527,"BestRankAt":"2023-02-16T05:25:56.353002Z","MostPoints":2892,"MostPointsAt":"2023-02-16T05:25:56.353003Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213098Z","LastActivityAt":"2023-02-16T05:25:56.353003Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213478Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1369,"ScoreAtt":4653,"RankDef":1883,"ScoreDef":8254,"RankSup":0,"ScoreSup":0,"RankTotal":1948,"ScoreTotal":12907,"ID":849075298,"Name":"Gosia99","NumVillages":2,"Points":5770,"Rank":1276,"TribeID":1721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075298","BestRank":1276,"BestRankAt":"2023-02-16T05:25:56.353003Z","MostPoints":5823,"MostPointsAt":"2023-02-16T05:25:49.2131Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213099Z","LastActivityAt":"2023-02-16T05:25:56.353003Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213478Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1258,"ScoreDef":61308,"RankSup":0,"ScoreSup":0,"RankTotal":1540,"ScoreTotal":61308,"ID":849075442,"Name":"isku","NumVillages":0,"Points":0,"Rank":3019,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075442","BestRank":3019,"BestRankAt":"2023-02-16T05:25:56.353004Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213101Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.2131Z","LastActivityAt":"2023-02-16T05:25:49.213101Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213478Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849075744,"Name":"Damian0704","NumVillages":1,"Points":2200,"Rank":1618,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075744","BestRank":1618,"BestRankAt":"2023-02-16T05:25:56.353004Z","MostPoints":2200,"MostPointsAt":"2023-02-16T05:25:56.353004Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213101Z","LastActivityAt":"2023-02-16T05:25:56.353004Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1210,"ScoreAtt":10096,"RankDef":827,"ScoreDef":199864,"RankSup":865,"ScoreSup":14981,"RankTotal":1101,"ScoreTotal":224941,"ID":849075836,"Name":"Buku27","NumVillages":14,"Points":106211,"Rank":526,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849075836","BestRank":526,"BestRankAt":"2023-02-16T05:25:56.353005Z","MostPoints":106211,"MostPointsAt":"2023-02-16T05:25:56.353005Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.213102Z","LastActivityAt":"2023-02-16T05:25:56.353005Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1515,"ScoreDef":31828,"RankSup":0,"ScoreSup":0,"RankTotal":1752,"ScoreTotal":31828,"ID":849076187,"Name":"HappyTheFriends","NumVillages":0,"Points":0,"Rank":3020,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076187","BestRank":3020,"BestRankAt":"2023-02-16T05:25:56.353005Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213103Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213103Z","LastActivityAt":"2023-02-16T05:25:49.213104Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":755,"ScoreAtt":97163,"RankDef":149,"ScoreDef":2598655,"RankSup":692,"ScoreSup":52913,"RankTotal":320,"ScoreTotal":2748731,"ID":849076515,"Name":"kamilos4444","NumVillages":7,"Points":23511,"Rank":878,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076515","BestRank":878,"BestRankAt":"2023-02-16T05:25:56.353006Z","MostPoints":23511,"MostPointsAt":"2023-02-16T05:25:56.353006Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:56.353006Z","LastActivityAt":"2023-02-16T05:25:56.353006Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213479Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1024,"ScoreAtt":26756,"RankDef":680,"ScoreDef":290430,"RankSup":914,"ScoreSup":10198,"RankTotal":981,"ScoreTotal":327384,"ID":849076678,"Name":"EWKA82","NumVillages":1,"Points":285,"Rank":2174,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076678","BestRank":2174,"BestRankAt":"2023-02-16T05:25:56.353006Z","MostPoints":285,"MostPointsAt":"2023-02-16T05:25:49.213105Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213105Z","LastActivityAt":"2023-02-16T05:25:49.213105Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":490,"ScoreAtt":376346,"RankDef":179,"ScoreDef":2080263,"RankSup":581,"ScoreSup":106920,"RankTotal":343,"ScoreTotal":2563529,"ID":849076810,"Name":"Dziobak6658","NumVillages":11,"Points":49410,"Rank":698,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076810","BestRank":698,"BestRankAt":"2023-02-16T05:25:56.353007Z","MostPoints":49410,"MostPointsAt":"2023-02-16T05:25:56.353007Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.213106Z","LastActivityAt":"2023-02-16T05:25:56.353007Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1844,"ScoreAtt":116,"RankDef":2466,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2412,"ScoreTotal":120,"ID":849076953,"Name":"heweltjakub664","NumVillages":1,"Points":1037,"Rank":1836,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849076953","BestRank":1836,"BestRankAt":"2023-02-16T05:25:56.353007Z","MostPoints":1037,"MostPointsAt":"2023-02-16T05:25:56.353007Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213107Z","LastActivityAt":"2023-02-16T05:25:56.353008Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21348Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":807,"ScoreAtt":77228,"RankDef":1951,"ScoreDef":5970,"RankSup":0,"ScoreSup":0,"RankTotal":1450,"ScoreTotal":83198,"ID":849077481,"Name":"dedej","NumVillages":0,"Points":0,"Rank":3021,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849077481","BestRank":3021,"BestRankAt":"2023-02-16T05:25:56.353008Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213107Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213107Z","LastActivityAt":"2023-02-16T05:25:49.213108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1171,"ScoreAtt":12045,"RankDef":1196,"ScoreDef":73094,"RankSup":1091,"ScoreSup":2009,"RankTotal":1437,"ScoreTotal":87148,"ID":849078086,"Name":"123Misiek","NumVillages":1,"Points":5771,"Rank":1275,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078086","BestRank":1275,"BestRankAt":"2023-02-16T05:25:56.353008Z","MostPoints":5771,"MostPointsAt":"2023-02-16T05:25:49.213108Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213108Z","LastActivityAt":"2023-02-16T05:25:49.213108Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1956,"ScoreAtt":9,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2532,"ScoreTotal":9,"ID":849078119,"Name":"lukasz45567","NumVillages":1,"Points":384,"Rank":2082,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078119","BestRank":2082,"BestRankAt":"2023-02-16T05:25:56.353009Z","MostPoints":384,"MostPointsAt":"2023-02-16T05:25:56.353009Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213109Z","LastActivityAt":"2023-02-16T05:25:56.353009Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":616,"ScoreAtt":191955,"RankDef":384,"ScoreDef":790175,"RankSup":464,"ScoreSup":204054,"RankTotal":570,"ScoreTotal":1186184,"ID":849078297,"Name":"Trenger","NumVillages":11,"Points":69125,"Rank":618,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078297","BestRank":578,"BestRankAt":"2023-02-16T05:25:49.21311Z","MostPoints":83062,"MostPointsAt":"2023-02-16T05:25:49.21311Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.21311Z","LastActivityAt":"2023-02-16T05:25:56.35301Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213481Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1114,"ScoreAtt":16927,"RankDef":146,"ScoreDef":2654505,"RankSup":300,"ScoreSup":529115,"RankTotal":275,"ScoreTotal":3200547,"ID":849078498,"Name":"UUffoo","NumVillages":1,"Points":6070,"Rank":1259,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078498","BestRank":1259,"BestRankAt":"2023-02-16T05:25:56.35301Z","MostPoints":6070,"MostPointsAt":"2023-02-16T05:25:56.35301Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213111Z","LastActivityAt":"2023-02-16T05:25:56.35301Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213482Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1168,"ScoreAtt":12194,"RankDef":2015,"ScoreDef":4267,"RankSup":0,"ScoreSup":0,"RankTotal":1911,"ScoreTotal":16461,"ID":849078942,"Name":"Boski222","NumVillages":1,"Points":258,"Rank":2201,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849078942","BestRank":1452,"BestRankAt":"2023-02-16T05:25:49.213112Z","MostPoints":3602,"MostPointsAt":"2023-02-16T05:25:49.213112Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213112Z","LastActivityAt":"2023-02-16T05:25:49.213113Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213482Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2308,"ScoreDef":171,"RankSup":0,"ScoreSup":0,"RankTotal":2389,"ScoreTotal":171,"ID":849079977,"Name":"Mateuszek0330","NumVillages":1,"Points":192,"Rank":2293,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849079977","BestRank":2293,"BestRankAt":"2023-02-16T05:25:56.353011Z","MostPoints":192,"MostPointsAt":"2023-02-16T05:25:49.213113Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213113Z","LastActivityAt":"2023-02-16T05:25:49.213113Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213482Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":926,"ScoreAtt":44867,"RankDef":450,"ScoreDef":613508,"RankSup":687,"ScoreSup":55361,"RankTotal":721,"ScoreTotal":713736,"ID":849080011,"Name":"IAmChaozu","NumVillages":4,"Points":13276,"Rank":1027,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080011","BestRank":1027,"BestRankAt":"2023-02-16T05:25:49.213114Z","MostPoints":13276,"MostPointsAt":"2023-02-16T05:25:56.353011Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.213114Z","LastActivityAt":"2023-02-16T05:25:56.353012Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1744,"ScoreAtt":312,"RankDef":1331,"ScoreDef":53486,"RankSup":0,"ScoreSup":0,"RankTotal":1585,"ScoreTotal":53798,"ID":849080118,"Name":"fedziu675","NumVillages":0,"Points":0,"Rank":3022,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080118","BestRank":3022,"BestRankAt":"2023-02-16T05:25:56.353012Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213115Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213115Z","LastActivityAt":"2023-02-16T05:25:49.213115Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1854,"ScoreAtt":99,"RankDef":1751,"ScoreDef":15247,"RankSup":0,"ScoreSup":0,"RankTotal":1922,"ScoreTotal":15346,"ID":849080197,"Name":"Vectar","NumVillages":1,"Points":2631,"Rank":1564,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080197","BestRank":1564,"BestRankAt":"2023-02-16T05:25:56.353012Z","MostPoints":2631,"MostPointsAt":"2023-02-16T05:25:56.353013Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213116Z","LastActivityAt":"2023-02-16T05:25:56.353013Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2016,"ScoreDef":4267,"RankSup":0,"ScoreSup":0,"RankTotal":2145,"ScoreTotal":4267,"ID":849080260,"Name":"Apfel","NumVillages":1,"Points":1776,"Rank":1693,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080260","BestRank":1693,"BestRankAt":"2023-02-16T05:25:56.353013Z","MostPoints":1776,"MostPointsAt":"2023-02-16T05:25:49.213117Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213117Z","LastActivityAt":"2023-02-16T05:25:49.213117Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213483Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":436,"ScoreAtt":472284,"RankDef":1804,"ScoreDef":11760,"RankSup":771,"ScoreSup":31415,"RankTotal":828,"ScoreTotal":515459,"ID":849080702,"Name":"Zorro","NumVillages":30,"Points":262927,"Rank":376,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849080702","BestRank":376,"BestRankAt":"2023-02-16T05:25:56.353013Z","MostPoints":262927,"MostPointsAt":"2023-02-16T05:25:56.353014Z","MostVillages":30,"MostVillagesAt":"2023-02-16T05:25:56.353014Z","LastActivityAt":"2023-02-16T05:25:56.353014Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213484Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1425,"ScoreDef":40337,"RankSup":0,"ScoreSup":0,"RankTotal":1675,"ScoreTotal":40337,"ID":849081284,"Name":"mlodyfacetkosmita","NumVillages":1,"Points":41,"Rank":2579,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849081284","BestRank":2579,"BestRankAt":"2023-02-16T05:25:56.353014Z","MostPoints":41,"MostPointsAt":"2023-02-16T05:25:49.213119Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213119Z","LastActivityAt":"2023-02-16T05:25:49.213119Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213484Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1341,"ScoreDef":51845,"RankSup":1401,"ScoreSup":2,"RankTotal":1595,"ScoreTotal":51847,"ID":849081641,"Name":"MarcinMazury","NumVillages":1,"Points":290,"Rank":2165,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849081641","BestRank":2165,"BestRankAt":"2023-02-16T05:25:56.353015Z","MostPoints":290,"MostPointsAt":"2023-02-16T05:25:56.353015Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213119Z","LastActivityAt":"2023-02-16T05:25:56.353015Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213484Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2364,"ScoreDef":30,"RankSup":0,"ScoreSup":0,"RankTotal":2464,"ScoreTotal":30,"ID":849081869,"Name":"3637","NumVillages":1,"Points":12154,"Rank":1044,"TribeID":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849081869","BestRank":1042,"BestRankAt":"2023-02-16T05:25:49.21312Z","MostPoints":12154,"MostPointsAt":"2023-02-16T05:25:56.353015Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21312Z","LastActivityAt":"2023-02-16T05:25:56.353015Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213485Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1237,"ScoreDef":65817,"RankSup":848,"ScoreSup":16642,"RankTotal":1451,"ScoreTotal":82459,"ID":849082154,"Name":"Cipendeys","NumVillages":4,"Points":18415,"Rank":940,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082154","BestRank":940,"BestRankAt":"2023-02-16T05:25:56.353016Z","MostPoints":18415,"MostPointsAt":"2023-02-16T05:25:56.353016Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.213121Z","LastActivityAt":"2023-02-16T05:25:56.353016Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213485Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1470,"ScoreAtt":2744,"RankDef":1612,"ScoreDef":24721,"RankSup":1325,"ScoreSup":13,"RankTotal":1789,"ScoreTotal":27478,"ID":849082580,"Name":"nappystarr","NumVillages":0,"Points":0,"Rank":3023,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082580","BestRank":1508,"BestRankAt":"2023-02-16T05:25:49.213121Z","MostPoints":3169,"MostPointsAt":"2023-02-16T05:25:49.213122Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213121Z","LastActivityAt":"2023-02-16T05:25:49.213122Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213485Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":417,"ScoreAtt":530007,"RankDef":1301,"ScoreDef":56580,"RankSup":709,"ScoreSup":45349,"RankTotal":765,"ScoreTotal":631936,"ID":849082839,"Name":"Minikod","NumVillages":1,"Points":26,"Rank":2782,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082839","BestRank":2782,"BestRankAt":"2023-02-16T05:25:56.353017Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213122Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213122Z","LastActivityAt":"2023-02-16T05:25:49.213122Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213485Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":776,"ScoreAtt":88817,"RankDef":392,"ScoreDef":769329,"RankSup":1187,"ScoreSup":455,"RankTotal":664,"ScoreTotal":858601,"ID":849082848,"Name":"Jastrząb z NBP","NumVillages":1,"Points":4777,"Rank":1340,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849082848","BestRank":1340,"BestRankAt":"2023-02-16T05:25:56.353017Z","MostPoints":4777,"MostPointsAt":"2023-02-16T05:25:56.353017Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213123Z","LastActivityAt":"2023-02-16T05:25:56.353017Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213486Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2242,"ScoreDef":549,"RankSup":0,"ScoreSup":0,"RankTotal":2321,"ScoreTotal":549,"ID":849083293,"Name":"Vocare","NumVillages":1,"Points":3698,"Rank":1429,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083293","BestRank":1429,"BestRankAt":"2023-02-16T05:25:56.353018Z","MostPoints":3698,"MostPointsAt":"2023-02-16T05:25:56.353018Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213124Z","LastActivityAt":"2023-02-16T05:25:56.353018Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213486Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1262,"ScoreDef":61128,"RankSup":892,"ScoreSup":12218,"RankTotal":1478,"ScoreTotal":73346,"ID":849083294,"Name":"Merida.waleczna","NumVillages":2,"Points":7853,"Rank":1162,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083294","BestRank":1162,"BestRankAt":"2023-02-16T05:25:56.353018Z","MostPoints":7853,"MostPointsAt":"2023-02-16T05:25:56.353018Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213124Z","LastActivityAt":"2023-02-16T05:25:56.353018Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213486Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":763,"ScoreAtt":94636,"RankDef":219,"ScoreDef":1735439,"RankSup":349,"ScoreSup":412879,"RankTotal":379,"ScoreTotal":2242954,"ID":849083501,"Name":"SaturnV","NumVillages":9,"Points":63065,"Rank":643,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083501","BestRank":636,"BestRankAt":"2023-02-16T05:25:49.213125Z","MostPoints":64742,"MostPointsAt":"2023-02-16T05:25:49.213125Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.213125Z","LastActivityAt":"2023-02-16T05:25:49.213125Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213487Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2316,"ScoreDef":140,"RankSup":900,"ScoreSup":11421,"RankTotal":1970,"ScoreTotal":11561,"ID":849083534,"Name":"Nadav","NumVillages":1,"Points":2088,"Rank":1636,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083534","BestRank":1636,"BestRankAt":"2023-02-16T05:25:56.353019Z","MostPoints":2088,"MostPointsAt":"2023-02-16T05:25:56.353019Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213126Z","LastActivityAt":"2023-02-16T05:25:56.353019Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213487Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849083705,"Name":"Tomasz Stanek","NumVillages":1,"Points":26,"Rank":2783,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083705","BestRank":2783,"BestRankAt":"2023-02-16T05:25:56.35302Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213127Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213127Z","LastActivityAt":"2023-02-16T05:25:49.213127Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213487Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":861,"ScoreAtt":59710,"RankDef":445,"ScoreDef":630756,"RankSup":1002,"ScoreSup":4660,"RankTotal":736,"ScoreTotal":695126,"ID":849083725,"Name":"Koc Mƛciwy","NumVillages":1,"Points":129,"Rank":2401,"TribeID":19,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083725","BestRank":2401,"BestRankAt":"2023-02-16T05:25:56.35302Z","MostPoints":129,"MostPointsAt":"2023-02-16T05:25:49.213128Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213127Z","LastActivityAt":"2023-02-16T05:25:49.213128Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213487Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849083942,"Name":"Velsaniq","NumVillages":1,"Points":26,"Rank":2814,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849083942","BestRank":2814,"BestRankAt":"2023-02-16T05:25:49.213128Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213128Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213128Z","LastActivityAt":"2023-02-16T05:25:49.213128Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213488Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":89,"ScoreAtt":3674270,"RankDef":757,"ScoreDef":239553,"RankSup":9,"ScoreSup":8965702,"RankTotal":61,"ScoreTotal":12879525,"ID":849084005,"Name":"Kuzyn Jacob","NumVillages":315,"Points":2320446,"Rank":33,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084005","BestRank":33,"BestRankAt":"2023-02-16T05:25:56.353021Z","MostPoints":2320446,"MostPointsAt":"2023-02-16T05:25:56.353021Z","MostVillages":315,"MostVillagesAt":"2023-02-16T05:25:49.213129Z","LastActivityAt":"2023-02-16T05:25:56.353021Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213488Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1670,"ScoreAtt":704,"RankDef":1651,"ScoreDef":21818,"RankSup":0,"ScoreSup":0,"RankTotal":1838,"ScoreTotal":22522,"ID":849084066,"Name":"RROO","NumVillages":2,"Points":10406,"Rank":1072,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084066","BestRank":1072,"BestRankAt":"2023-02-16T05:25:56.353021Z","MostPoints":10406,"MostPointsAt":"2023-02-16T05:25:56.353021Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.21313Z","LastActivityAt":"2023-02-16T05:25:56.353022Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213488Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":962,"ScoreAtt":36512,"RankDef":887,"ScoreDef":174412,"RankSup":1283,"ScoreSup":41,"RankTotal":1120,"ScoreTotal":210965,"ID":849084474,"Name":"Atero","NumVillages":1,"Points":1456,"Rank":1744,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084474","BestRank":1744,"BestRankAt":"2023-02-16T05:25:56.353022Z","MostPoints":1456,"MostPointsAt":"2023-02-16T05:25:56.353022Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21313Z","LastActivityAt":"2023-02-16T05:25:56.353022Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213488Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849084699,"Name":"cinek1998","NumVillages":1,"Points":26,"Rank":2784,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084699","BestRank":2784,"BestRankAt":"2023-02-16T05:25:56.353022Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213131Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213131Z","LastActivityAt":"2023-02-16T05:25:49.213131Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":192,"ScoreAtt":1625465,"RankDef":82,"ScoreDef":4155652,"RankSup":82,"ScoreSup":2547348,"RankTotal":97,"ScoreTotal":8328465,"ID":849084740,"Name":"Fisherrwd","NumVillages":71,"Points":539578,"Rank":255,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084740","BestRank":255,"BestRankAt":"2023-02-16T05:25:56.353023Z","MostPoints":539578,"MostPointsAt":"2023-02-16T05:25:56.353023Z","MostVillages":71,"MostVillagesAt":"2023-02-16T05:25:49.213132Z","LastActivityAt":"2023-02-16T05:25:56.353023Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":287,"ScoreAtt":983368,"RankDef":75,"ScoreDef":4688957,"RankSup":331,"ScoreSup":446182,"RankTotal":147,"ScoreTotal":6118507,"ID":849084911,"Name":"Rewson","NumVillages":1,"Points":26,"Rank":2785,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084911","BestRank":2785,"BestRankAt":"2023-02-16T05:25:56.353023Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213133Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213133Z","LastActivityAt":"2023-02-16T05:25:49.213133Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213489Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1223,"ScoreAtt":9282,"RankDef":552,"ScoreDef":438105,"RankSup":970,"ScoreSup":6254,"RankTotal":872,"ScoreTotal":453641,"ID":849084920,"Name":"Magdalena82","NumVillages":2,"Points":6533,"Rank":1229,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084920","BestRank":1229,"BestRankAt":"2023-02-16T05:25:56.353024Z","MostPoints":6533,"MostPointsAt":"2023-02-16T05:25:49.213134Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213133Z","LastActivityAt":"2023-02-16T05:25:49.213134Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":55,"ScoreAtt":4733087,"RankDef":174,"ScoreDef":2134007,"RankSup":167,"ScoreSup":1319079,"RankTotal":101,"ScoreTotal":8186173,"ID":849084985,"Name":"Tivis","NumVillages":116,"Points":1089732,"Rank":129,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849084985","BestRank":129,"BestRankAt":"2023-02-16T05:25:56.353024Z","MostPoints":1089732,"MostPointsAt":"2023-02-16T05:25:56.353025Z","MostVillages":116,"MostVillagesAt":"2023-02-16T05:25:56.353025Z","LastActivityAt":"2023-02-16T05:25:56.353025Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1225,"ScoreAtt":8983,"RankDef":1917,"ScoreDef":7006,"RankSup":0,"ScoreSup":0,"RankTotal":1914,"ScoreTotal":15989,"ID":849085160,"Name":"ElMajkelos","NumVillages":20,"Points":95024,"Rank":548,"TribeID":1535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085160","BestRank":548,"BestRankAt":"2023-02-16T05:25:56.353025Z","MostPoints":95026,"MostPointsAt":"2023-02-16T05:25:49.213135Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:49.213135Z","LastActivityAt":"2023-02-16T05:25:49.213135Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21349Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1305,"ScoreAtt":6318,"RankDef":1325,"ScoreDef":54786,"RankSup":0,"ScoreSup":0,"RankTotal":1543,"ScoreTotal":61104,"ID":849085293,"Name":"Misiaczka69","NumVillages":3,"Points":4594,"Rank":1355,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085293","BestRank":1355,"BestRankAt":"2023-02-16T05:25:56.353026Z","MostPoints":4594,"MostPointsAt":"2023-02-16T05:25:49.213136Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213136Z","LastActivityAt":"2023-02-16T05:25:49.213136Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213491Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":900,"ScoreAtt":50519,"RankDef":1062,"ScoreDef":104608,"RankSup":0,"ScoreSup":0,"RankTotal":1238,"ScoreTotal":155127,"ID":849085371,"Name":"wykolejonymiki","NumVillages":5,"Points":26081,"Rank":851,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085371","BestRank":851,"BestRankAt":"2023-02-16T05:25:56.353026Z","MostPoints":26081,"MostPointsAt":"2023-02-16T05:25:56.353026Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.213137Z","LastActivityAt":"2023-02-16T05:25:56.353026Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213491Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1335,"ScoreAtt":5439,"RankDef":374,"ScoreDef":813655,"RankSup":589,"ScoreSup":103547,"RankTotal":645,"ScoreTotal":922641,"ID":849085605,"Name":"LukaszWspanialy","NumVillages":2,"Points":9426,"Rank":1106,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085605","BestRank":1106,"BestRankAt":"2023-02-16T05:25:56.353027Z","MostPoints":9426,"MostPointsAt":"2023-02-16T05:25:56.353027Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213138Z","LastActivityAt":"2023-02-16T05:25:56.353027Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213491Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":970,"ScoreAtt":35438,"RankDef":702,"ScoreDef":274491,"RankSup":1128,"ScoreSup":1293,"RankTotal":994,"ScoreTotal":311222,"ID":849085764,"Name":"Seiyouwasabi","NumVillages":0,"Points":0,"Rank":3024,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085764","BestRank":3024,"BestRankAt":"2023-02-16T05:25:56.353027Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213138Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213138Z","LastActivityAt":"2023-02-16T05:25:49.213139Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213491Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1174,"ScoreAtt":11977,"RankDef":1880,"ScoreDef":8371,"RankSup":0,"ScoreSup":0,"RankTotal":1861,"ScoreTotal":20348,"ID":849085908,"Name":"krunor","NumVillages":0,"Points":0,"Rank":3025,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085908","BestRank":3025,"BestRankAt":"2023-02-16T05:25:56.353028Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213139Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213139Z","LastActivityAt":"2023-02-16T05:25:49.213139Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213492Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":321,"ScoreAtt":826978,"RankDef":1721,"ScoreDef":17079,"RankSup":516,"ScoreSup":157504,"RankTotal":617,"ScoreTotal":1001561,"ID":849085961,"Name":"owusum","NumVillages":1,"Points":9735,"Rank":1091,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849085961","BestRank":1091,"BestRankAt":"2023-02-16T05:25:56.353028Z","MostPoints":9735,"MostPointsAt":"2023-02-16T05:25:49.21314Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21314Z","LastActivityAt":"2023-02-16T05:25:49.21314Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213492Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849086074,"Name":"Lady evee","NumVillages":1,"Points":4440,"Rank":1366,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086074","BestRank":1366,"BestRankAt":"2023-02-16T05:25:56.353029Z","MostPoints":4440,"MostPointsAt":"2023-02-16T05:25:49.213141Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213141Z","LastActivityAt":"2023-02-16T05:25:49.213141Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213492Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2281,"ScoreDef":292,"RankSup":0,"ScoreSup":0,"RankTotal":2363,"ScoreTotal":292,"ID":849086132,"Name":"dixon15pl","NumVillages":1,"Points":149,"Rank":2355,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086132","BestRank":2355,"BestRankAt":"2023-02-16T05:25:56.353029Z","MostPoints":149,"MostPointsAt":"2023-02-16T05:25:49.213141Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213141Z","LastActivityAt":"2023-02-16T05:25:49.213142Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213493Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1197,"ScoreAtt":10658,"RankDef":1026,"ScoreDef":117898,"RankSup":1144,"ScoreSup":996,"RankTotal":1297,"ScoreTotal":129552,"ID":849086357,"Name":"dadan2","NumVillages":1,"Points":2958,"Rank":1517,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086357","BestRank":1517,"BestRankAt":"2023-02-16T05:25:56.35303Z","MostPoints":2958,"MostPointsAt":"2023-02-16T05:25:56.35303Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213142Z","LastActivityAt":"2023-02-16T05:25:56.35303Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213493Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":386,"ScoreAtt":609457,"RankDef":196,"ScoreDef":1963359,"RankSup":413,"ScoreSup":291894,"RankTotal":306,"ScoreTotal":2864710,"ID":849086491,"Name":"Aratorn","NumVillages":7,"Points":40841,"Rank":736,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086491","BestRank":736,"BestRankAt":"2023-02-16T05:25:56.35303Z","MostPoints":40841,"MostPointsAt":"2023-02-16T05:25:49.213143Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.213143Z","LastActivityAt":"2023-02-16T05:25:49.213143Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213493Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":943,"ScoreAtt":41549,"RankDef":823,"ScoreDef":203150,"RankSup":993,"ScoreSup":5169,"RankTotal":1053,"ScoreTotal":249868,"ID":849086693,"Name":"Dixon 1993","NumVillages":1,"Points":4774,"Rank":1342,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086693","BestRank":1342,"BestRankAt":"2023-02-16T05:25:56.353031Z","MostPoints":4774,"MostPointsAt":"2023-02-16T05:25:56.353031Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213144Z","LastActivityAt":"2023-02-16T05:25:56.353031Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213494Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849086777,"Name":"cba444","NumVillages":1,"Points":327,"Rank":2128,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086777","BestRank":2128,"BestRankAt":"2023-02-16T05:25:56.353031Z","MostPoints":327,"MostPointsAt":"2023-02-16T05:25:49.213145Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213145Z","LastActivityAt":"2023-02-16T05:25:49.213145Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213494Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1068,"ScoreDef":102821,"RankSup":0,"ScoreSup":0,"RankTotal":1376,"ScoreTotal":102821,"ID":849086783,"Name":"Anton707","NumVillages":0,"Points":0,"Rank":3026,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086783","BestRank":3026,"BestRankAt":"2023-02-16T05:25:56.353032Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213146Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213145Z","LastActivityAt":"2023-02-16T05:25:49.213146Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213494Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":661,"ScoreDef":312867,"RankSup":0,"ScoreSup":0,"RankTotal":993,"ScoreTotal":312867,"ID":849086817,"Name":"Elban","NumVillages":1,"Points":3080,"Rank":1502,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086817","BestRank":1502,"BestRankAt":"2023-02-16T05:25:56.353032Z","MostPoints":3080,"MostPointsAt":"2023-02-16T05:25:49.213146Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213146Z","LastActivityAt":"2023-02-16T05:25:49.213146Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213494Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":704,"ScoreDef":271503,"RankSup":0,"ScoreSup":0,"RankTotal":1033,"ScoreTotal":271503,"ID":849086925,"Name":"Hautoria","NumVillages":1,"Points":308,"Rank":2149,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849086925","BestRank":2149,"BestRankAt":"2023-02-16T05:25:56.353033Z","MostPoints":308,"MostPointsAt":"2023-02-16T05:25:49.213147Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213147Z","LastActivityAt":"2023-02-16T05:25:49.213147Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213495Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2379,"ScoreDef":21,"RankSup":0,"ScoreSup":0,"RankTotal":2479,"ScoreTotal":21,"ID":849087149,"Name":"mm1370","NumVillages":1,"Points":655,"Rank":1947,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087149","BestRank":1947,"BestRankAt":"2023-02-16T05:25:56.353033Z","MostPoints":655,"MostPointsAt":"2023-02-16T05:25:49.213148Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213148Z","LastActivityAt":"2023-02-16T05:25:49.213148Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213495Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1325,"ScoreAtt":5713,"RankDef":415,"ScoreDef":710874,"RankSup":792,"ScoreSup":26684,"RankTotal":705,"ScoreTotal":743271,"ID":849087581,"Name":"takenn90","NumVillages":0,"Points":0,"Rank":3027,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087581","BestRank":1650,"BestRankAt":"2023-02-16T05:25:49.213148Z","MostPoints":2052,"MostPointsAt":"2023-02-16T05:25:49.213149Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213149Z","LastActivityAt":"2023-02-16T05:25:49.213149Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213495Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":432,"ScoreAtt":480694,"RankDef":291,"ScoreDef":1232876,"RankSup":646,"ScoreSup":75281,"RankTotal":445,"ScoreTotal":1788851,"ID":849087742,"Name":"RichiePichie","NumVillages":0,"Points":0,"Rank":3028,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087742","BestRank":3028,"BestRankAt":"2023-02-16T05:25:56.353034Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.21315Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213149Z","LastActivityAt":"2023-02-16T05:25:49.21315Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213495Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1300,"ScoreAtt":6460,"RankDef":2180,"ScoreDef":1259,"RankSup":1015,"ScoreSup":4025,"RankTotal":1964,"ScoreTotal":11744,"ID":849087786,"Name":"jajco55","NumVillages":6,"Points":25528,"Rank":857,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087786","BestRank":855,"BestRankAt":"2023-02-16T05:25:49.21315Z","MostPoints":25528,"MostPointsAt":"2023-02-16T05:25:49.21315Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.21315Z","LastActivityAt":"2023-02-16T05:25:49.21315Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213496Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":449,"ScoreAtt":449826,"RankDef":1289,"ScoreDef":58536,"RankSup":157,"ScoreSup":1447733,"RankTotal":415,"ScoreTotal":1956095,"ID":849087855,"Name":"Pegaz","NumVillages":40,"Points":361684,"Rank":318,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087855","BestRank":317,"BestRankAt":"2023-02-16T05:25:49.213151Z","MostPoints":361684,"MostPointsAt":"2023-02-16T05:25:49.213151Z","MostVillages":40,"MostVillagesAt":"2023-02-16T05:25:49.213151Z","LastActivityAt":"2023-02-16T05:25:49.213151Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213496Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1590,"ScoreDef":25951,"RankSup":0,"ScoreSup":0,"RankTotal":1808,"ScoreTotal":25951,"ID":849087895,"Name":"Izuia98","NumVillages":0,"Points":0,"Rank":3029,"TribeID":1170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849087895","BestRank":3029,"BestRankAt":"2023-02-16T05:25:56.353035Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213152Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213152Z","LastActivityAt":"2023-02-16T05:25:49.213152Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213496Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":697,"ScoreAtt":130318,"RankDef":1087,"ScoreDef":97286,"RankSup":1051,"ScoreSup":2802,"RankTotal":1087,"ScoreTotal":230406,"ID":849088101,"Name":"Sir Dzikus","NumVillages":1,"Points":9972,"Rank":1080,"TribeID":1680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088101","BestRank":1080,"BestRankAt":"2023-02-16T05:25:56.353036Z","MostPoints":9972,"MostPointsAt":"2023-02-16T05:25:49.213153Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213153Z","LastActivityAt":"2023-02-16T05:25:56.353036Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213497Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1458,"ScoreDef":37080,"RankSup":0,"ScoreSup":0,"RankTotal":1703,"ScoreTotal":37080,"ID":849088199,"Name":"Balti","NumVillages":2,"Points":12666,"Rank":1039,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088199","BestRank":1037,"BestRankAt":"2023-02-16T05:25:49.213153Z","MostPoints":12666,"MostPointsAt":"2023-02-16T05:25:56.353036Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213153Z","LastActivityAt":"2023-02-16T05:25:56.353037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213497Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":268,"ScoreAtt":1060779,"RankDef":92,"ScoreDef":3742614,"RankSup":101,"ScoreSup":2223889,"RankTotal":126,"ScoreTotal":7027282,"ID":849088243,"Name":"noomouse","NumVillages":85,"Points":689892,"Rank":208,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088243","BestRank":208,"BestRankAt":"2023-02-16T05:25:56.353037Z","MostPoints":689892,"MostPointsAt":"2023-02-16T05:25:56.353037Z","MostVillages":85,"MostVillagesAt":"2023-02-16T05:25:49.213154Z","LastActivityAt":"2023-02-16T05:25:56.353037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213497Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849088414,"Name":"Miltonia","NumVillages":1,"Points":146,"Rank":2358,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088414","BestRank":2358,"BestRankAt":"2023-02-16T05:25:56.353037Z","MostPoints":146,"MostPointsAt":"2023-02-16T05:25:49.213155Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213155Z","LastActivityAt":"2023-02-16T05:25:49.213155Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213498Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849088429,"Name":"Mozzie","NumVillages":1,"Points":26,"Rank":2786,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088429","BestRank":2786,"BestRankAt":"2023-02-16T05:25:56.353038Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213156Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213156Z","LastActivityAt":"2023-02-16T05:25:49.213156Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213498Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":160,"ScoreAtt":1991372,"RankDef":491,"ScoreDef":537556,"RankSup":630,"ScoreSup":81559,"RankTotal":338,"ScoreTotal":2610487,"ID":849088515,"Name":"Maroni","NumVillages":68,"Points":596070,"Rank":241,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088515","BestRank":241,"BestRankAt":"2023-02-16T05:25:56.353038Z","MostPoints":596070,"MostPointsAt":"2023-02-16T05:25:56.353039Z","MostVillages":68,"MostVillagesAt":"2023-02-16T05:25:49.213156Z","LastActivityAt":"2023-02-16T05:25:56.353039Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213498Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":870,"ScoreAtt":57339,"RankDef":1844,"ScoreDef":10044,"RankSup":1251,"ScoreSup":102,"RankTotal":1510,"ScoreTotal":67485,"ID":849088639,"Name":"Goku ssj2","NumVillages":3,"Points":17370,"Rank":964,"TribeID":1680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088639","BestRank":964,"BestRankAt":"2023-02-16T05:25:49.213157Z","MostPoints":17370,"MostPointsAt":"2023-02-16T05:25:49.213157Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213157Z","LastActivityAt":"2023-02-16T05:25:49.213158Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213499Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1423,"ScoreAtt":3665,"RankDef":414,"ScoreDef":709380,"RankSup":923,"ScoreSup":10068,"RankTotal":716,"ScoreTotal":723113,"ID":849088880,"Name":"Damian098po","NumVillages":1,"Points":311,"Rank":2165,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088880","BestRank":2165,"BestRankAt":"2023-02-16T05:25:49.213158Z","MostPoints":311,"MostPointsAt":"2023-02-16T05:25:49.213158Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213158Z","LastActivityAt":"2023-02-16T05:25:49.213158Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213499Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1212,"ScoreAtt":10010,"RankDef":1394,"ScoreDef":44291,"RankSup":0,"ScoreSup":0,"RankTotal":1583,"ScoreTotal":54301,"ID":849088882,"Name":"Jastrzębie zdrĂłj","NumVillages":1,"Points":3343,"Rank":1473,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088882","BestRank":1428,"BestRankAt":"2023-02-16T05:25:49.213159Z","MostPoints":3817,"MostPointsAt":"2023-02-16T05:25:49.213159Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213159Z","LastActivityAt":"2023-02-16T05:25:56.35304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213499Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849088914,"Name":"milosz21","NumVillages":1,"Points":75,"Rank":2492,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088914","BestRank":2492,"BestRankAt":"2023-02-16T05:25:56.35304Z","MostPoints":75,"MostPointsAt":"2023-02-16T05:25:56.35304Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.35304Z","LastActivityAt":"2023-02-16T05:25:56.35304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.353341Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1136,"ScoreAtt":14623,"RankDef":756,"ScoreDef":241738,"RankSup":0,"ScoreSup":0,"RankTotal":1048,"ScoreTotal":256361,"ID":849088923,"Name":"naja1920ruch","NumVillages":1,"Points":26,"Rank":2787,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849088923","BestRank":2787,"BestRankAt":"2023-02-16T05:25:56.353041Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.21316Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21316Z","LastActivityAt":"2023-02-16T05:25:49.21316Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213499Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1241,"ScoreDef":64179,"RankSup":0,"ScoreSup":0,"RankTotal":1528,"ScoreTotal":64179,"ID":849089207,"Name":"Mistrz 99","NumVillages":1,"Points":179,"Rank":2316,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089207","BestRank":2316,"BestRankAt":"2023-02-16T05:25:56.353041Z","MostPoints":179,"MostPointsAt":"2023-02-16T05:25:56.353041Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213161Z","LastActivityAt":"2023-02-16T05:25:56.353041Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2135Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1778,"ScoreAtt":238,"RankDef":2305,"ScoreDef":199,"RankSup":0,"ScoreSup":0,"RankTotal":2342,"ScoreTotal":437,"ID":849089323,"Name":"Hyzio","NumVillages":1,"Points":1926,"Rank":1664,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089323","BestRank":1664,"BestRankAt":"2023-02-16T05:25:56.353042Z","MostPoints":1926,"MostPointsAt":"2023-02-16T05:25:49.213161Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213161Z","LastActivityAt":"2023-02-16T05:25:49.213162Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2135Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":259,"ScoreAtt":1088445,"RankDef":50,"ScoreDef":6639827,"RankSup":491,"ScoreSup":180510,"RankTotal":104,"ScoreTotal":7908782,"ID":849089459,"Name":"Abdoulxx","NumVillages":52,"Points":442075,"Rank":289,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089459","BestRank":286,"BestRankAt":"2023-02-16T05:25:49.213162Z","MostPoints":442075,"MostPointsAt":"2023-02-16T05:25:56.353042Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:49.213162Z","LastActivityAt":"2023-02-16T05:25:56.353042Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2135Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1538,"ScoreAtt":1912,"RankDef":1592,"ScoreDef":25905,"RankSup":744,"ScoreSup":37257,"RankTotal":1523,"ScoreTotal":65074,"ID":849089499,"Name":"staszku","NumVillages":8,"Points":20829,"Rank":907,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089499","BestRank":907,"BestRankAt":"2023-02-16T05:25:56.353043Z","MostPoints":20829,"MostPointsAt":"2023-02-16T05:25:56.353043Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.213163Z","LastActivityAt":"2023-02-16T05:25:56.353043Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.2135Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1355,"ScoreDef":49747,"RankSup":0,"ScoreSup":0,"RankTotal":1609,"ScoreTotal":49747,"ID":849089512,"Name":"bzyku195","NumVillages":1,"Points":426,"Rank":2057,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089512","BestRank":2057,"BestRankAt":"2023-02-16T05:25:56.353043Z","MostPoints":426,"MostPointsAt":"2023-02-16T05:25:49.213164Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213164Z","LastActivityAt":"2023-02-16T05:25:49.213164Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1043,"ScoreAtt":23556,"RankDef":2162,"ScoreDef":1518,"RankSup":1297,"ScoreSup":26,"RankTotal":1815,"ScoreTotal":25100,"ID":849089601,"Name":"krisssak","NumVillages":11,"Points":47199,"Rank":704,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089601","BestRank":704,"BestRankAt":"2023-02-16T05:25:56.353044Z","MostPoints":47199,"MostPointsAt":"2023-02-16T05:25:56.353044Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.213165Z","LastActivityAt":"2023-02-16T05:25:56.353044Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1352,"ScoreAtt":5150,"RankDef":2141,"ScoreDef":1846,"RankSup":0,"ScoreSup":0,"RankTotal":2059,"ScoreTotal":6996,"ID":849089654,"Name":"wawur","NumVillages":7,"Points":14483,"Rank":1007,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089654","BestRank":1007,"BestRankAt":"2023-02-16T05:25:56.353044Z","MostPoints":14483,"MostPointsAt":"2023-02-16T05:25:56.353044Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.213165Z","LastActivityAt":"2023-02-16T05:25:56.353044Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849089739,"Name":"tobiasz22","NumVillages":1,"Points":26,"Rank":2788,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089739","BestRank":2788,"BestRankAt":"2023-02-16T05:25:56.353045Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.353045Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.353045Z","LastActivityAt":"2023-02-16T05:25:56.353045Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.353343Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":478,"ScoreAtt":401677,"RankDef":88,"ScoreDef":3836992,"RankSup":272,"ScoreSup":598862,"RankTotal":195,"ScoreTotal":4837531,"ID":849089881,"Name":"mcwie","NumVillages":49,"Points":341452,"Rank":337,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849089881","BestRank":334,"BestRankAt":"2023-02-16T05:25:49.213166Z","MostPoints":341452,"MostPointsAt":"2023-02-16T05:25:56.353046Z","MostVillages":49,"MostVillagesAt":"2023-02-16T05:25:56.353045Z","LastActivityAt":"2023-02-16T05:25:56.353046Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213501Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":406,"ScoreAtt":566916,"RankDef":191,"ScoreDef":1977769,"RankSup":159,"ScoreSup":1414588,"RankTotal":237,"ScoreTotal":3959273,"ID":849090130,"Name":"AdamTy","NumVillages":44,"Points":350245,"Rank":328,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090130","BestRank":328,"BestRankAt":"2023-02-16T05:25:56.353046Z","MostPoints":350245,"MostPointsAt":"2023-02-16T05:25:56.353046Z","MostVillages":44,"MostVillagesAt":"2023-02-16T05:25:56.353046Z","LastActivityAt":"2023-02-16T05:25:56.353046Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213502Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1512,"ScoreAtt":2172,"RankDef":980,"ScoreDef":131691,"RankSup":0,"ScoreSup":0,"RankTotal":1287,"ScoreTotal":133863,"ID":849090187,"Name":"Flisek10th","NumVillages":1,"Points":2243,"Rank":1612,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090187","BestRank":1612,"BestRankAt":"2023-02-16T05:25:56.353047Z","MostPoints":2243,"MostPointsAt":"2023-02-16T05:25:49.213168Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213168Z","LastActivityAt":"2023-02-16T05:25:49.213168Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213502Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849090243,"Name":"Habibi Malik","NumVillages":1,"Points":85,"Rank":2479,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090243","BestRank":2479,"BestRankAt":"2023-02-16T05:25:56.353047Z","MostPoints":85,"MostPointsAt":"2023-02-16T05:25:49.213169Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213169Z","LastActivityAt":"2023-02-16T05:25:49.213169Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213502Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849090289,"Name":"Jack Daniels","NumVillages":1,"Points":126,"Rank":2412,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090289","BestRank":2412,"BestRankAt":"2023-02-16T05:25:56.353047Z","MostPoints":126,"MostPointsAt":"2023-02-16T05:25:49.21317Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213169Z","LastActivityAt":"2023-02-16T05:25:49.21317Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213502Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1877,"ScoreAtt":60,"RankDef":2447,"ScoreDef":10,"RankSup":1042,"ScoreSup":3002,"RankTotal":2185,"ScoreTotal":3072,"ID":849090573,"Name":"ZiomekWafla","NumVillages":3,"Points":4690,"Rank":1350,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090573","BestRank":1350,"BestRankAt":"2023-02-16T05:25:56.353048Z","MostPoints":4690,"MostPointsAt":"2023-02-16T05:25:49.21317Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.21317Z","LastActivityAt":"2023-02-16T05:25:49.213171Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213503Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1607,"ScoreAtt":1141,"RankDef":1497,"ScoreDef":33866,"RankSup":1165,"ScoreSup":748,"RankTotal":1717,"ScoreTotal":35755,"ID":849090765,"Name":"=Rosalet=","NumVillages":0,"Points":0,"Rank":3030,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090765","BestRank":3030,"BestRankAt":"2023-02-16T05:25:56.353048Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213171Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213171Z","LastActivityAt":"2023-02-16T05:25:49.213171Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213503Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2248,"ScoreDef":520,"RankSup":0,"ScoreSup":0,"RankTotal":2326,"ScoreTotal":520,"ID":849090846,"Name":"marek123","NumVillages":2,"Points":10398,"Rank":1073,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090846","BestRank":1073,"BestRankAt":"2023-02-16T05:25:56.353049Z","MostPoints":10398,"MostPointsAt":"2023-02-16T05:25:49.213172Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213172Z","LastActivityAt":"2023-02-16T05:25:49.213172Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213503Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849090890,"Name":"szewa432","NumVillages":1,"Points":164,"Rank":2336,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090890","BestRank":2336,"BestRankAt":"2023-02-16T05:25:56.353049Z","MostPoints":164,"MostPointsAt":"2023-02-16T05:25:49.213173Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213173Z","LastActivityAt":"2023-02-16T05:25:49.213173Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213504Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1956,"ScoreDef":5873,"RankSup":0,"ScoreSup":0,"RankTotal":2089,"ScoreTotal":5873,"ID":849090954,"Name":"Dr.Węgiel","NumVillages":0,"Points":0,"Rank":3031,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849090954","BestRank":3031,"BestRankAt":"2023-02-16T05:25:56.35305Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213174Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213173Z","LastActivityAt":"2023-02-16T05:25:49.213174Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213504Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":191,"ScoreAtt":1635335,"RankDef":100,"ScoreDef":3512699,"RankSup":145,"ScoreSup":1546710,"RankTotal":134,"ScoreTotal":6694744,"ID":849091060,"Name":"JuanPabloII","NumVillages":1,"Points":26,"Rank":2789,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091060","BestRank":2789,"BestRankAt":"2023-02-16T05:25:56.35305Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213174Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213174Z","LastActivityAt":"2023-02-16T05:25:49.213174Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213504Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":500,"ScoreAtt":354536,"RankDef":147,"ScoreDef":2649921,"RankSup":839,"ScoreSup":17374,"RankTotal":287,"ScoreTotal":3021831,"ID":849091084,"Name":"Makro","NumVillages":10,"Points":69413,"Rank":615,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091084","BestRank":615,"BestRankAt":"2023-02-16T05:25:56.353051Z","MostPoints":69413,"MostPointsAt":"2023-02-16T05:25:56.353051Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.213175Z","LastActivityAt":"2023-02-16T05:25:56.353051Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213504Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":346,"ScoreAtt":717406,"RankDef":1700,"ScoreDef":18623,"RankSup":659,"ScoreSup":66561,"RankTotal":684,"ScoreTotal":802590,"ID":849091105,"Name":"Raogar12","NumVillages":58,"Points":391515,"Rank":305,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091105","BestRank":305,"BestRankAt":"2023-02-16T05:25:49.213176Z","MostPoints":391515,"MostPointsAt":"2023-02-16T05:25:56.353052Z","MostVillages":58,"MostVillagesAt":"2023-02-16T05:25:49.213176Z","LastActivityAt":"2023-02-16T05:25:56.353052Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213505Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":263,"ScoreAtt":1083112,"RankDef":72,"ScoreDef":4846256,"RankSup":79,"ScoreSup":2720057,"RankTotal":91,"ScoreTotal":8649425,"ID":849091769,"Name":"wotek","NumVillages":73,"Points":618650,"Rank":231,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091769","BestRank":231,"BestRankAt":"2023-02-16T05:25:56.353052Z","MostPoints":618650,"MostPointsAt":"2023-02-16T05:25:56.353052Z","MostVillages":73,"MostVillagesAt":"2023-02-16T05:25:49.213177Z","LastActivityAt":"2023-02-16T05:25:56.353052Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213505Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":309,"ScoreAtt":890985,"RankDef":931,"ScoreDef":151930,"RankSup":301,"ScoreSup":528021,"RankTotal":479,"ScoreTotal":1570936,"ID":849091866,"Name":"Mat05usz","NumVillages":108,"Points":978305,"Rank":150,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091866","BestRank":150,"BestRankAt":"2023-02-16T05:25:49.213177Z","MostPoints":978305,"MostPointsAt":"2023-02-16T05:25:56.353053Z","MostVillages":108,"MostVillagesAt":"2023-02-16T05:25:49.213177Z","LastActivityAt":"2023-02-16T05:25:56.353053Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213505Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":443,"ScoreAtt":466330,"RankDef":1049,"ScoreDef":108190,"RankSup":941,"ScoreSup":8254,"RankTotal":783,"ScoreTotal":582774,"ID":849091897,"Name":"Danon23","NumVillages":21,"Points":195158,"Rank":421,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091897","BestRank":421,"BestRankAt":"2023-02-16T05:25:49.213178Z","MostPoints":195158,"MostPointsAt":"2023-02-16T05:25:56.353053Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.213178Z","LastActivityAt":"2023-02-16T05:25:56.353053Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213505Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":606,"ScoreAtt":206601,"RankDef":165,"ScoreDef":2339976,"RankSup":379,"ScoreSup":350513,"RankTotal":303,"ScoreTotal":2897090,"ID":849091899,"Name":"Arnhem","NumVillages":21,"Points":130250,"Rank":493,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091899","BestRank":493,"BestRankAt":"2023-02-16T05:25:49.213179Z","MostPoints":130250,"MostPointsAt":"2023-02-16T05:25:49.213179Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.213179Z","LastActivityAt":"2023-02-16T05:25:49.213179Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1093,"ScoreAtt":19038,"RankDef":258,"ScoreDef":1444331,"RankSup":714,"ScoreSup":43641,"RankTotal":497,"ScoreTotal":1507010,"ID":849091947,"Name":"OSkoczekO","NumVillages":0,"Points":0,"Rank":3032,"TribeID":19,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091947","BestRank":3032,"BestRankAt":"2023-02-16T05:25:56.353054Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.21318Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.21318Z","LastActivityAt":"2023-02-16T05:25:49.21318Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1863,"ScoreDef":9245,"RankSup":0,"ScoreSup":0,"RankTotal":2005,"ScoreTotal":9245,"ID":849091972,"Name":"Gimi7777","NumVillages":1,"Points":957,"Rank":1857,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849091972","BestRank":1857,"BestRankAt":"2023-02-16T05:25:56.353054Z","MostPoints":957,"MostPointsAt":"2023-02-16T05:25:56.353055Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21318Z","LastActivityAt":"2023-02-16T05:25:56.353055Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":770,"ScoreAtt":92403,"RankDef":352,"ScoreDef":878875,"RankSup":0,"ScoreSup":0,"RankTotal":629,"ScoreTotal":971278,"ID":849092109,"Name":"Lord Endy","NumVillages":0,"Points":0,"Rank":3033,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092109","BestRank":3033,"BestRankAt":"2023-02-16T05:25:56.353055Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213181Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213181Z","LastActivityAt":"2023-02-16T05:25:49.213181Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213506Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1245,"ScoreDef":63567,"RankSup":0,"ScoreSup":0,"RankTotal":1529,"ScoreTotal":63567,"ID":849092185,"Name":"Antonio PaTeras","NumVillages":0,"Points":0,"Rank":3034,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092185","BestRank":3034,"BestRankAt":"2023-02-16T05:25:56.353055Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213182Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213181Z","LastActivityAt":"2023-02-16T05:25:49.213182Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":937,"ScoreDef":150249,"RankSup":0,"ScoreSup":0,"RankTotal":1246,"ScoreTotal":150249,"ID":849092244,"Name":"kijo","NumVillages":0,"Points":0,"Rank":3035,"TribeID":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092244","BestRank":3035,"BestRankAt":"2023-02-16T05:25:56.353056Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213182Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213182Z","LastActivityAt":"2023-02-16T05:25:49.213183Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1207,"ScoreAtt":10248,"RankDef":350,"ScoreDef":883476,"RankSup":641,"ScoreSup":75985,"RankTotal":630,"ScoreTotal":969709,"ID":849092309,"Name":"Klaudek","NumVillages":36,"Points":197567,"Rank":419,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092309","BestRank":418,"BestRankAt":"2023-02-16T05:25:49.213183Z","MostPoints":197567,"MostPointsAt":"2023-02-16T05:25:56.353057Z","MostVillages":36,"MostVillagesAt":"2023-02-16T05:25:49.213183Z","LastActivityAt":"2023-02-16T05:25:56.353057Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2000,"ScoreDef":4566,"RankSup":1285,"ScoreSup":38,"RankTotal":2134,"ScoreTotal":4604,"ID":849092639,"Name":"GONDAS9696","NumVillages":1,"Points":2334,"Rank":1597,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092639","BestRank":1597,"BestRankAt":"2023-02-16T05:25:56.353057Z","MostPoints":2334,"MostPointsAt":"2023-02-16T05:25:49.213184Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213184Z","LastActivityAt":"2023-02-16T05:25:49.213184Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213507Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":699,"ScoreAtt":127746,"RankDef":1117,"ScoreDef":91305,"RankSup":596,"ScoreSup":101263,"RankTotal":987,"ScoreTotal":320314,"ID":849092685,"Name":"kalou","NumVillages":11,"Points":52975,"Rank":676,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092685","BestRank":676,"BestRankAt":"2023-02-16T05:25:56.353057Z","MostPoints":52975,"MostPointsAt":"2023-02-16T05:25:56.353058Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:56.353058Z","LastActivityAt":"2023-02-16T05:25:56.353058Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":508,"ScoreAtt":340775,"RankDef":192,"ScoreDef":1973479,"RankSup":304,"ScoreSup":520040,"RankTotal":310,"ScoreTotal":2834294,"ID":849092723,"Name":"Cocofedron69","NumVillages":9,"Points":81090,"Rank":580,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092723","BestRank":580,"BestRankAt":"2023-02-16T05:25:49.213185Z","MostPoints":81090,"MostPointsAt":"2023-02-16T05:25:49.213185Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.213185Z","LastActivityAt":"2023-02-16T05:25:49.213185Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":290,"ScoreAtt":972356,"RankDef":910,"ScoreDef":163428,"RankSup":673,"ScoreSup":59736,"RankTotal":566,"ScoreTotal":1195520,"ID":849092769,"Name":"Guti14PL","NumVillages":26,"Points":219574,"Rank":404,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092769","BestRank":404,"BestRankAt":"2023-02-16T05:25:56.353058Z","MostPoints":219574,"MostPointsAt":"2023-02-16T05:25:56.353059Z","MostVillages":26,"MostVillagesAt":"2023-02-16T05:25:56.353059Z","LastActivityAt":"2023-02-16T05:25:56.353059Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":675,"ScoreAtt":142821,"RankDef":584,"ScoreDef":395770,"RankSup":459,"ScoreSup":214704,"RankTotal":700,"ScoreTotal":753295,"ID":849092827,"Name":"Najan","NumVillages":39,"Points":284858,"Rank":359,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092827","BestRank":359,"BestRankAt":"2023-02-16T05:25:56.353059Z","MostPoints":284858,"MostPointsAt":"2023-02-16T05:25:49.213187Z","MostVillages":39,"MostVillagesAt":"2023-02-16T05:25:49.213187Z","LastActivityAt":"2023-02-16T05:25:49.213187Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213508Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849092868,"Name":"Koza","NumVillages":1,"Points":26,"Rank":2790,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092868","BestRank":2790,"BestRankAt":"2023-02-16T05:25:56.35306Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213187Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213187Z","LastActivityAt":"2023-02-16T05:25:49.213188Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213509Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849092875,"Name":"Danielo3","NumVillages":1,"Points":26,"Rank":2791,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092875","BestRank":2791,"BestRankAt":"2023-02-16T05:25:56.35306Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213188Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213188Z","LastActivityAt":"2023-02-16T05:25:49.213188Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213509Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1186,"ScoreAtt":11148,"RankDef":172,"ScoreDef":2211817,"RankSup":461,"ScoreSup":213232,"RankTotal":354,"ScoreTotal":2436197,"ID":849092978,"Name":"patrix01","NumVillages":1,"Points":3698,"Rank":1430,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849092978","BestRank":1430,"BestRankAt":"2023-02-16T05:25:56.353061Z","MostPoints":3698,"MostPointsAt":"2023-02-16T05:25:49.213189Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213189Z","LastActivityAt":"2023-02-16T05:25:49.213189Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213509Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":671,"ScoreAtt":144665,"RankDef":864,"ScoreDef":183664,"RankSup":635,"ScoreSup":78694,"RankTotal":911,"ScoreTotal":407023,"ID":849093003,"Name":"DANEK31.","NumVillages":0,"Points":0,"Rank":3036,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093003","BestRank":3036,"BestRankAt":"2023-02-16T05:25:56.353061Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.21319Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.21319Z","LastActivityAt":"2023-02-16T05:25:49.21319Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1560,"ScoreAtt":1656,"RankDef":556,"ScoreDef":435227,"RankSup":0,"ScoreSup":0,"RankTotal":880,"ScoreTotal":436883,"ID":849093155,"Name":"lukasz0707","NumVillages":6,"Points":43053,"Rank":727,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093155","BestRank":725,"BestRankAt":"2023-02-16T05:25:49.21319Z","MostPoints":43053,"MostPointsAt":"2023-02-16T05:25:49.213191Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.213191Z","LastActivityAt":"2023-02-16T05:25:49.213191Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":623,"ScoreAtt":186656,"RankDef":1788,"ScoreDef":12669,"RankSup":0,"ScoreSup":0,"RankTotal":1138,"ScoreTotal":199325,"ID":849093353,"Name":"gorzki1984","NumVillages":7,"Points":31162,"Rank":807,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093353","BestRank":807,"BestRankAt":"2023-02-16T05:25:56.353062Z","MostPoints":31162,"MostPointsAt":"2023-02-16T05:25:56.353062Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:56.353062Z","LastActivityAt":"2023-02-16T05:25:56.353062Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":400,"ScoreAtt":590089,"RankDef":63,"ScoreDef":5517326,"RankSup":98,"ScoreSup":2251469,"RankTotal":95,"ScoreTotal":8358884,"ID":849093422,"Name":"niangmen","NumVillages":12,"Points":115618,"Rank":509,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093422","BestRank":458,"BestRankAt":"2023-02-16T05:25:49.213192Z","MostPoints":154638,"MostPointsAt":"2023-02-16T05:25:49.213192Z","MostVillages":16,"MostVillagesAt":"2023-02-16T05:25:49.213192Z","LastActivityAt":"2023-02-16T05:25:56.353063Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21351Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":227,"ScoreAtt":1317202,"RankDef":771,"ScoreDef":234055,"RankSup":81,"ScoreSup":2633273,"RankTotal":228,"ScoreTotal":4184530,"ID":849093426,"Name":"Kuba Zenen","NumVillages":146,"Points":1237872,"Rank":106,"TribeID":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093426","BestRank":106,"BestRankAt":"2023-02-16T05:25:56.353063Z","MostPoints":1237872,"MostPointsAt":"2023-02-16T05:25:56.353063Z","MostVillages":146,"MostVillagesAt":"2023-02-16T05:25:56.353063Z","LastActivityAt":"2023-02-16T05:25:56.353063Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213511Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1159,"ScoreAtt":12902,"RankDef":761,"ScoreDef":236327,"RankSup":877,"ScoreSup":14070,"RankTotal":1043,"ScoreTotal":263299,"ID":849093576,"Name":"Sylwek2503","NumVillages":1,"Points":2078,"Rank":1641,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093576","BestRank":1641,"BestRankAt":"2023-02-16T05:25:56.353064Z","MostPoints":2078,"MostPointsAt":"2023-02-16T05:25:56.353064Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213197Z","LastActivityAt":"2023-02-16T05:25:56.353064Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213511Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849093724,"Name":"tyskie323","NumVillages":1,"Points":129,"Rank":2402,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093724","BestRank":2402,"BestRankAt":"2023-02-16T05:25:56.353064Z","MostPoints":129,"MostPointsAt":"2023-02-16T05:25:49.213198Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213197Z","LastActivityAt":"2023-02-16T05:25:49.213198Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213511Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":330,"ScoreAtt":795988,"RankDef":944,"ScoreDef":147529,"RankSup":486,"ScoreSup":185120,"RankTotal":588,"ScoreTotal":1128637,"ID":849093742,"Name":"Marek Pustoszyciel","NumVillages":63,"Points":560299,"Rank":250,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093742","BestRank":250,"BestRankAt":"2023-02-16T05:25:56.353065Z","MostPoints":560299,"MostPointsAt":"2023-02-16T05:25:56.353065Z","MostVillages":63,"MostVillagesAt":"2023-02-16T05:25:49.213198Z","LastActivityAt":"2023-02-16T05:25:56.353065Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213511Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":901,"ScoreDef":167153,"RankSup":1309,"ScoreSup":18,"RankTotal":1213,"ScoreTotal":167171,"ID":849093771,"Name":"Breisse","NumVillages":1,"Points":748,"Rank":1915,"TribeID":373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093771","BestRank":1915,"BestRankAt":"2023-02-16T05:25:56.353065Z","MostPoints":748,"MostPointsAt":"2023-02-16T05:25:56.353065Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213199Z","LastActivityAt":"2023-02-16T05:25:56.353065Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213512Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":591,"ScoreAtt":223618,"RankDef":379,"ScoreDef":795817,"RankSup":691,"ScoreSup":53200,"RankTotal":599,"ScoreTotal":1072635,"ID":849093875,"Name":"Martita08","NumVillages":6,"Points":26798,"Rank":843,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093875","BestRank":742,"BestRankAt":"2023-02-16T05:25:49.213199Z","MostPoints":39544,"MostPointsAt":"2023-02-16T05:25:49.2132Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.2132Z","LastActivityAt":"2023-02-16T05:25:49.2132Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213512Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":582,"ScoreAtt":234566,"RankDef":743,"ScoreDef":247902,"RankSup":665,"ScoreSup":62942,"RankTotal":804,"ScoreTotal":545410,"ID":849093924,"Name":"bezludna","NumVillages":0,"Points":0,"Rank":3037,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849093924","BestRank":3037,"BestRankAt":"2023-02-16T05:25:56.353066Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.2132Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.2132Z","LastActivityAt":"2023-02-16T05:25:49.2132Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213512Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1861,"ScoreAtt":90,"RankDef":2188,"ScoreDef":1144,"RankSup":0,"ScoreSup":0,"RankTotal":2280,"ScoreTotal":1234,"ID":849094006,"Name":"Wieƛmenn","NumVillages":1,"Points":7681,"Rank":1172,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094006","BestRank":1172,"BestRankAt":"2023-02-16T05:25:56.353067Z","MostPoints":7681,"MostPointsAt":"2023-02-16T05:25:56.353067Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213201Z","LastActivityAt":"2023-02-16T05:25:56.353067Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213513Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":356,"ScoreAtt":684854,"RankDef":1008,"ScoreDef":124354,"RankSup":788,"ScoreSup":27560,"RankTotal":671,"ScoreTotal":836768,"ID":849094023,"Name":"Tasmanski22","NumVillages":0,"Points":0,"Rank":3038,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094023","BestRank":3038,"BestRankAt":"2023-02-16T05:25:56.353067Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213202Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213202Z","LastActivityAt":"2023-02-16T05:25:49.213202Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213513Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849094061,"Name":"marcin2202","NumVillages":1,"Points":288,"Rank":2169,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094061","BestRank":2169,"BestRankAt":"2023-02-16T05:25:56.353068Z","MostPoints":288,"MostPointsAt":"2023-02-16T05:25:49.213203Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213203Z","LastActivityAt":"2023-02-16T05:25:49.213203Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213513Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":395,"ScoreAtt":597822,"RankDef":1723,"ScoreDef":16918,"RankSup":127,"ScoreSup":1694535,"RankTotal":371,"ScoreTotal":2309275,"ID":849094067,"Name":"Franss","NumVillages":56,"Points":595862,"Rank":242,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094067","BestRank":242,"BestRankAt":"2023-02-16T05:25:56.353068Z","MostPoints":595862,"MostPointsAt":"2023-02-16T05:25:56.353068Z","MostVillages":56,"MostVillagesAt":"2023-02-16T05:25:49.213203Z","LastActivityAt":"2023-02-16T05:25:56.353068Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213513Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1206,"ScoreAtt":10300,"RankDef":1390,"ScoreDef":45087,"RankSup":0,"ScoreSup":0,"RankTotal":1575,"ScoreTotal":55387,"ID":849094111,"Name":"Antos","NumVillages":1,"Points":2767,"Rank":1550,"TribeID":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094111","BestRank":1550,"BestRankAt":"2023-02-16T05:25:56.353069Z","MostPoints":2767,"MostPointsAt":"2023-02-16T05:25:49.213204Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213204Z","LastActivityAt":"2023-02-16T05:25:49.213204Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213514Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1179,"ScoreAtt":11692,"RankDef":542,"ScoreDef":457389,"RankSup":706,"ScoreSup":47364,"RankTotal":827,"ScoreTotal":516445,"ID":849094147,"Name":"LordKat69","NumVillages":2,"Points":15275,"Rank":993,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094147","BestRank":993,"BestRankAt":"2023-02-16T05:25:56.353069Z","MostPoints":15275,"MostPointsAt":"2023-02-16T05:25:56.353069Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213205Z","LastActivityAt":"2023-02-16T05:25:56.353069Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213514Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849094319,"Name":"Koziok","NumVillages":1,"Points":26,"Rank":2792,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094319","BestRank":2792,"BestRankAt":"2023-02-16T05:25:56.35307Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213206Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213205Z","LastActivityAt":"2023-02-16T05:25:49.213206Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213515Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2272,"ScoreDef":343,"RankSup":0,"ScoreSup":0,"RankTotal":2353,"ScoreTotal":343,"ID":849094355,"Name":"Karolinka6868","NumVillages":1,"Points":26,"Rank":2793,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094355","BestRank":2793,"BestRankAt":"2023-02-16T05:25:56.35307Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213206Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213206Z","LastActivityAt":"2023-02-16T05:25:49.213206Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213515Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1098,"ScoreAtt":17958,"RankDef":248,"ScoreDef":1534595,"RankSup":981,"ScoreSup":5907,"RankTotal":482,"ScoreTotal":1558460,"ID":849094586,"Name":"Nekoyo","NumVillages":3,"Points":9944,"Rank":1081,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094586","BestRank":1081,"BestRankAt":"2023-02-16T05:25:56.353071Z","MostPoints":9944,"MostPointsAt":"2023-02-16T05:25:56.353071Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213207Z","LastActivityAt":"2023-02-16T05:25:56.353071Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213516Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1112,"ScoreAtt":16979,"RankDef":1079,"ScoreDef":100050,"RankSup":0,"ScoreSup":0,"RankTotal":1332,"ScoreTotal":117029,"ID":849094597,"Name":"Wyczesany CzesƂaw","NumVillages":0,"Points":0,"Rank":3039,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094597","BestRank":3039,"BestRankAt":"2023-02-16T05:25:56.353071Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213208Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213208Z","LastActivityAt":"2023-02-16T05:25:49.213208Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213516Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1118,"ScoreAtt":16543,"RankDef":498,"ScoreDef":522598,"RankSup":425,"ScoreSup":260774,"RankTotal":685,"ScoreTotal":799915,"ID":849094603,"Name":"Goƛć094603","NumVillages":2,"Points":6933,"Rank":1210,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094603","BestRank":1210,"BestRankAt":"2023-02-16T05:25:56.353072Z","MostPoints":6933,"MostPointsAt":"2023-02-16T05:25:49.213209Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213209Z","LastActivityAt":"2023-02-16T05:25:49.213209Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213516Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":158,"ScoreAtt":2001700,"RankDef":681,"ScoreDef":289601,"RankSup":686,"ScoreSup":55451,"RankTotal":366,"ScoreTotal":2346752,"ID":849094609,"Name":"AkademiaPanaKleksa","NumVillages":93,"Points":763442,"Rank":188,"TribeID":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094609","BestRank":188,"BestRankAt":"2023-02-16T05:25:56.353072Z","MostPoints":763442,"MostPointsAt":"2023-02-16T05:25:56.353072Z","MostVillages":93,"MostVillagesAt":"2023-02-16T05:25:56.353072Z","LastActivityAt":"2023-02-16T05:25:56.353073Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213517Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1424,"ScoreAtt":3515,"RankDef":549,"ScoreDef":443820,"RankSup":949,"ScoreSup":7618,"RankTotal":871,"ScoreTotal":454953,"ID":849094653,"Name":"Deny2107","NumVillages":0,"Points":0,"Rank":3040,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094653","BestRank":3040,"BestRankAt":"2023-02-16T05:25:56.353073Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.21321Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.21321Z","LastActivityAt":"2023-02-16T05:25:49.21321Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213517Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1338,"ScoreAtt":5372,"RankDef":1538,"ScoreDef":30067,"RankSup":0,"ScoreSup":0,"RankTotal":1719,"ScoreTotal":35439,"ID":849094688,"Name":"dawszz","NumVillages":5,"Points":27078,"Rank":839,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094688","BestRank":839,"BestRankAt":"2023-02-16T05:25:56.353073Z","MostPoints":27078,"MostPointsAt":"2023-02-16T05:25:56.353074Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.213211Z","LastActivityAt":"2023-02-16T05:25:56.353074Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213517Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1270,"ScoreAtt":7141,"RankDef":610,"ScoreDef":368227,"RankSup":0,"ScoreSup":0,"RankTotal":939,"ScoreTotal":375368,"ID":849094759,"Name":"aziii2","NumVillages":6,"Points":19709,"Rank":924,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094759","BestRank":924,"BestRankAt":"2023-02-16T05:25:56.353074Z","MostPoints":19709,"MostPointsAt":"2023-02-16T05:25:56.353074Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.213212Z","LastActivityAt":"2023-02-16T05:25:56.353074Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1381,"ScoreAtt":4501,"RankDef":1519,"ScoreDef":31743,"RankSup":0,"ScoreSup":0,"RankTotal":1712,"ScoreTotal":36244,"ID":849094789,"Name":"kortom","NumVillages":2,"Points":12782,"Rank":1036,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094789","BestRank":1033,"BestRankAt":"2023-02-16T05:25:49.213212Z","MostPoints":12782,"MostPointsAt":"2023-02-16T05:25:49.213212Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213212Z","LastActivityAt":"2023-02-16T05:25:49.213213Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1740,"ScoreDef":16147,"RankSup":1040,"ScoreSup":3027,"RankTotal":1875,"ScoreTotal":19174,"ID":849094972,"Name":"Sir Moon Knight","NumVillages":1,"Points":143,"Rank":2364,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849094972","BestRank":2364,"BestRankAt":"2023-02-16T05:25:56.353075Z","MostPoints":143,"MostPointsAt":"2023-02-16T05:25:49.213213Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213213Z","LastActivityAt":"2023-02-16T05:25:49.213213Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":411,"ScoreAtt":553112,"RankDef":102,"ScoreDef":3510084,"RankSup":616,"ScoreSup":90932,"RankTotal":229,"ScoreTotal":4154128,"ID":849095014,"Name":"Hexiu","NumVillages":3,"Points":17761,"Rank":960,"TribeID":1428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095014","BestRank":958,"BestRankAt":"2023-02-16T05:25:49.213214Z","MostPoints":17761,"MostPointsAt":"2023-02-16T05:25:49.213214Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.213214Z","LastActivityAt":"2023-02-16T05:25:49.213214Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213518Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":465,"ScoreAtt":421563,"RankDef":346,"ScoreDef":894916,"RankSup":250,"ScoreSup":705427,"RankTotal":407,"ScoreTotal":2021906,"ID":849095068,"Name":"PogromcaZabiegƂych","NumVillages":80,"Points":647169,"Rank":220,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095068","BestRank":220,"BestRankAt":"2023-02-16T05:25:56.353076Z","MostPoints":647169,"MostPointsAt":"2023-02-16T05:25:56.353076Z","MostVillages":80,"MostVillagesAt":"2023-02-16T05:25:56.353076Z","LastActivityAt":"2023-02-16T05:25:56.353076Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213519Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1215,"ScoreAtt":9932,"RankDef":969,"ScoreDef":138712,"RankSup":0,"ScoreSup":0,"RankTotal":1249,"ScoreTotal":148644,"ID":849095219,"Name":"the. mehow","NumVillages":0,"Points":0,"Rank":3041,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095219","BestRank":3041,"BestRankAt":"2023-02-16T05:25:56.353076Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213215Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213215Z","LastActivityAt":"2023-02-16T05:25:49.213215Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213519Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":236,"ScoreAtt":1252081,"RankDef":1674,"ScoreDef":20044,"RankSup":311,"ScoreSup":494690,"RankTotal":452,"ScoreTotal":1766815,"ID":849095227,"Name":"Krystiano242","NumVillages":89,"Points":843077,"Rank":173,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095227","BestRank":173,"BestRankAt":"2023-02-16T05:25:49.213216Z","MostPoints":843077,"MostPointsAt":"2023-02-16T05:25:56.353077Z","MostVillages":89,"MostVillagesAt":"2023-02-16T05:25:49.213216Z","LastActivityAt":"2023-02-16T05:25:56.353077Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213519Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":505,"ScoreAtt":345463,"RankDef":182,"ScoreDef":2058221,"RankSup":384,"ScoreSup":346373,"RankTotal":319,"ScoreTotal":2750057,"ID":849095240,"Name":"JohnSnow","NumVillages":2,"Points":19428,"Rank":928,"TribeID":309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095240","BestRank":928,"BestRankAt":"2023-02-16T05:25:56.353077Z","MostPoints":19428,"MostPointsAt":"2023-02-16T05:25:49.213217Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213217Z","LastActivityAt":"2023-02-16T05:25:49.213217Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":677,"ScoreAtt":141159,"RankDef":723,"ScoreDef":262819,"RankSup":0,"ScoreSup":0,"RankTotal":913,"ScoreTotal":403978,"ID":849095324,"Name":"CarlosPL","NumVillages":0,"Points":0,"Rank":3042,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095324","BestRank":3042,"BestRankAt":"2023-02-16T05:25:56.353078Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213218Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213217Z","LastActivityAt":"2023-02-16T05:25:49.213218Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1252,"ScoreAtt":7687,"RankDef":1543,"ScoreDef":29731,"RankSup":1094,"ScoreSup":1927,"RankTotal":1680,"ScoreTotal":39345,"ID":849095376,"Name":"LeƛnyJebas","NumVillages":8,"Points":62032,"Rank":647,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095376","BestRank":647,"BestRankAt":"2023-02-16T05:25:56.353078Z","MostPoints":62032,"MostPointsAt":"2023-02-16T05:25:56.353079Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.213218Z","LastActivityAt":"2023-02-16T05:25:56.353079Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2279,"ScoreDef":299,"RankSup":0,"ScoreSup":0,"RankTotal":2362,"ScoreTotal":299,"ID":849095430,"Name":"WiktorTraktor","NumVillages":1,"Points":4279,"Rank":1376,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095430","BestRank":1376,"BestRankAt":"2023-02-16T05:25:56.353079Z","MostPoints":4279,"MostPointsAt":"2023-02-16T05:25:56.353079Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213219Z","LastActivityAt":"2023-02-16T05:25:56.353079Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.21352Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":716,"ScoreAtt":115921,"RankDef":1509,"ScoreDef":32475,"RankSup":377,"ScoreSup":355077,"RankTotal":839,"ScoreTotal":503473,"ID":849095435,"Name":"jawor","NumVillages":9,"Points":44878,"Rank":718,"TribeID":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095435","BestRank":718,"BestRankAt":"2023-02-16T05:25:56.35308Z","MostPoints":44878,"MostPointsAt":"2023-02-16T05:25:56.35308Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.21322Z","LastActivityAt":"2023-02-16T05:25:56.35308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213521Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":600,"ScoreAtt":214986,"RankDef":1681,"ScoreDef":19692,"RankSup":1270,"ScoreSup":61,"RankTotal":1079,"ScoreTotal":234739,"ID":849095446,"Name":"extor98","NumVillages":1,"Points":26,"Rank":2794,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095446","BestRank":2794,"BestRankAt":"2023-02-16T05:25:56.35308Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213221Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.21322Z","LastActivityAt":"2023-02-16T05:25:49.213221Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213521Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1632,"ScoreDef":23321,"RankSup":396,"ScoreSup":322323,"RankTotal":963,"ScoreTotal":345644,"ID":849095448,"Name":"Omikronmen","NumVillages":1,"Points":1733,"Rank":1698,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095448","BestRank":1698,"BestRankAt":"2023-02-16T05:25:56.353081Z","MostPoints":1733,"MostPointsAt":"2023-02-16T05:25:49.213221Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213221Z","LastActivityAt":"2023-02-16T05:25:49.213221Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213521Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":851,"ScoreAtt":62908,"RankDef":148,"ScoreDef":2625569,"RankSup":273,"ScoreSup":598079,"RankTotal":268,"ScoreTotal":3286556,"ID":849095482,"Name":"Adrian SzachMat","NumVillages":21,"Points":100757,"Rank":537,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095482","BestRank":537,"BestRankAt":"2023-02-16T05:25:56.353081Z","MostPoints":100757,"MostPointsAt":"2023-02-16T05:25:56.353081Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.213222Z","LastActivityAt":"2023-02-16T05:25:56.353081Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":667,"ScoreAtt":146070,"RankDef":1277,"ScoreDef":59670,"RankSup":1004,"ScoreSup":4532,"RankTotal":1122,"ScoreTotal":210272,"ID":849095488,"Name":"Lancer0","NumVillages":0,"Points":0,"Rank":3043,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095488","BestRank":3043,"BestRankAt":"2023-02-16T05:25:56.353082Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.213223Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.213223Z","LastActivityAt":"2023-02-16T05:25:49.213223Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1446,"ScoreAtt":3183,"RankDef":1669,"ScoreDef":20160,"RankSup":1164,"ScoreSup":758,"RankTotal":1825,"ScoreTotal":24101,"ID":849095509,"Name":"kubek86","NumVillages":7,"Points":34518,"Rank":777,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095509","BestRank":777,"BestRankAt":"2023-02-16T05:25:49.213223Z","MostPoints":34518,"MostPointsAt":"2023-02-16T05:25:56.353082Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.213223Z","LastActivityAt":"2023-02-16T05:25:56.353082Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849095594,"Name":"Farmer155","NumVillages":1,"Points":909,"Rank":1865,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095594","BestRank":1865,"BestRankAt":"2023-02-16T05:25:56.353083Z","MostPoints":909,"MostPointsAt":"2023-02-16T05:25:49.213224Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213224Z","LastActivityAt":"2023-02-16T05:25:49.213224Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213522Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":521,"ScoreAtt":325580,"RankDef":1831,"ScoreDef":10506,"RankSup":727,"ScoreSup":41428,"RankTotal":936,"ScoreTotal":377514,"ID":849095599,"Name":"Diczku","NumVillages":39,"Points":260327,"Rank":378,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095599","BestRank":377,"BestRankAt":"2023-02-16T05:25:49.213225Z","MostPoints":260327,"MostPointsAt":"2023-02-16T05:25:49.213225Z","MostVillages":39,"MostVillagesAt":"2023-02-16T05:25:49.213225Z","LastActivityAt":"2023-02-16T05:25:49.213225Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213523Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1740,"ScoreAtt":332,"RankDef":1350,"ScoreDef":50016,"RankSup":1220,"ScoreSup":254,"RankTotal":1604,"ScoreTotal":50602,"ID":849095601,"Name":"Hydrawydra","NumVillages":1,"Points":7686,"Rank":1171,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095601","BestRank":1171,"BestRankAt":"2023-02-16T05:25:56.353084Z","MostPoints":7686,"MostPointsAt":"2023-02-16T05:25:49.213226Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213226Z","LastActivityAt":"2023-02-16T05:25:49.213226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213523Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1890,"ScoreDef":8050,"RankSup":0,"ScoreSup":0,"RankTotal":2033,"ScoreTotal":8050,"ID":849095642,"Name":"DamianDK","NumVillages":1,"Points":3330,"Rank":1474,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095642","BestRank":1474,"BestRankAt":"2023-02-16T05:25:56.353084Z","MostPoints":3330,"MostPointsAt":"2023-02-16T05:25:49.213227Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213226Z","LastActivityAt":"2023-02-16T05:25:49.213227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213523Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849095756,"Name":"wiNo","NumVillages":1,"Points":26,"Rank":2795,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095756","BestRank":2795,"BestRankAt":"2023-02-16T05:25:56.353085Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.213227Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213227Z","LastActivityAt":"2023-02-16T05:25:49.213227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213523Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1328,"ScoreAtt":5632,"RankDef":1955,"ScoreDef":5875,"RankSup":0,"ScoreSup":0,"RankTotal":1973,"ScoreTotal":11507,"ID":849095771,"Name":"klejmon","NumVillages":1,"Points":723,"Rank":1922,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095771","BestRank":1922,"BestRankAt":"2023-02-16T05:25:56.353085Z","MostPoints":723,"MostPointsAt":"2023-02-16T05:25:56.353086Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.213228Z","LastActivityAt":"2023-02-16T05:25:56.353086Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213524Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":646,"ScoreAtt":162684,"RankDef":1438,"ScoreDef":38906,"RankSup":1010,"ScoreSup":4218,"RankTotal":1128,"ScoreTotal":205808,"ID":849095778,"Name":"komrat966","NumVillages":6,"Points":53043,"Rank":675,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095778","BestRank":675,"BestRankAt":"2023-02-16T05:25:49.213229Z","MostPoints":53043,"MostPointsAt":"2023-02-16T05:25:56.353086Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.213229Z","LastActivityAt":"2023-02-16T05:25:56.353086Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213524Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1486,"ScoreAtt":2453,"RankDef":2187,"ScoreDef":1150,"RankSup":811,"ScoreSup":22483,"RankTotal":1804,"ScoreTotal":26086,"ID":849095800,"Name":"Bigosowy","NumVillages":2,"Points":14953,"Rank":999,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095800","BestRank":999,"BestRankAt":"2023-02-16T05:25:56.353086Z","MostPoints":14953,"MostPointsAt":"2023-02-16T05:25:56.353087Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.213229Z","LastActivityAt":"2023-02-16T05:25:56.353087Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.213524Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1433,"ScoreAtt":3316,"RankDef":1562,"ScoreDef":28554,"RankSup":0,"ScoreSup":0,"RankTotal":1751,"ScoreTotal":31870,"ID":849095814,"Name":"Goƛć095814","NumVillages":7,"Points":15214,"Rank":995,"TribeID":1729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095814","BestRank":995,"BestRankAt":"2023-02-16T05:25:56.353087Z","MostPoints":15214,"MostPointsAt":"2023-02-16T05:25:56.353087Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329194Z","LastActivityAt":"2023-02-16T05:25:56.353087Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1607,"ScoreDef":25217,"RankSup":1103,"ScoreSup":1720,"RankTotal":1799,"ScoreTotal":26937,"ID":849095825,"Name":"PtyƛTurbo","NumVillages":1,"Points":138,"Rank":2378,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095825","BestRank":2378,"BestRankAt":"2023-02-16T05:25:56.353088Z","MostPoints":138,"MostPointsAt":"2023-02-16T05:25:49.329195Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329195Z","LastActivityAt":"2023-02-16T05:25:49.329195Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":759,"ScoreAtt":95532,"RankDef":737,"ScoreDef":253558,"RankSup":0,"ScoreSup":0,"RankTotal":958,"ScoreTotal":349090,"ID":849095829,"Name":"Lukanio","NumVillages":0,"Points":0,"Rank":3044,"TribeID":1681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095829","BestRank":3044,"BestRankAt":"2023-02-16T05:25:56.353088Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329196Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329196Z","LastActivityAt":"2023-02-16T05:25:49.329196Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":836,"ScoreAtt":68774,"RankDef":1319,"ScoreDef":55090,"RankSup":1074,"ScoreSup":2307,"RankTotal":1306,"ScoreTotal":126171,"ID":849095879,"Name":"Goƛć095879","NumVillages":1,"Points":5001,"Rank":1321,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095879","BestRank":1321,"BestRankAt":"2023-02-16T05:25:56.353089Z","MostPoints":5001,"MostPointsAt":"2023-02-16T05:25:49.329196Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329196Z","LastActivityAt":"2023-02-16T05:25:49.329197Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329616Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":803,"ScoreAtt":79087,"RankDef":347,"ScoreDef":893227,"RankSup":739,"ScoreSup":37817,"RankTotal":614,"ScoreTotal":1010131,"ID":849095948,"Name":"maribast","NumVillages":2,"Points":3889,"Rank":1409,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095948","BestRank":1409,"BestRankAt":"2023-02-16T05:25:56.353089Z","MostPoints":3889,"MostPointsAt":"2023-02-16T05:25:56.353089Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329197Z","LastActivityAt":"2023-02-16T05:25:56.353089Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":375,"ScoreAtt":624305,"RankDef":136,"ScoreDef":2889524,"RankSup":457,"ScoreSup":217053,"RankTotal":245,"ScoreTotal":3730882,"ID":849095959,"Name":"mateuszek720","NumVillages":5,"Points":18135,"Rank":948,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095959","BestRank":947,"BestRankAt":"2023-02-16T05:25:49.329198Z","MostPoints":18135,"MostPointsAt":"2023-02-16T05:25:49.329198Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329198Z","LastActivityAt":"2023-02-16T05:25:49.329198Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":761,"ScoreAtt":95155,"RankDef":1182,"ScoreDef":76177,"RankSup":1097,"ScoreSup":1840,"RankTotal":1202,"ScoreTotal":173172,"ID":849095963,"Name":"matrix281","NumVillages":12,"Points":103334,"Rank":531,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095963","BestRank":531,"BestRankAt":"2023-02-16T05:25:56.35309Z","MostPoints":103334,"MostPointsAt":"2023-02-16T05:25:56.35309Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329198Z","LastActivityAt":"2023-02-16T05:25:56.35309Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":594,"ScoreAtt":220800,"RankDef":1335,"ScoreDef":52894,"RankSup":224,"ScoreSup":800266,"RankTotal":598,"ScoreTotal":1073960,"ID":849095992,"Name":"Koba98","NumVillages":18,"Points":144711,"Rank":472,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849095992","BestRank":472,"BestRankAt":"2023-02-16T05:25:56.353091Z","MostPoints":144711,"MostPointsAt":"2023-02-16T05:25:56.353091Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:49.329199Z","LastActivityAt":"2023-02-16T05:25:56.353091Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329617Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1349,"ScoreAtt":5222,"RankDef":1568,"ScoreDef":28193,"RankSup":895,"ScoreSup":11977,"RankTotal":1638,"ScoreTotal":45392,"ID":849096041,"Name":"arobest","NumVillages":1,"Points":1110,"Rank":1819,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096041","BestRank":1819,"BestRankAt":"2023-02-16T05:25:56.353091Z","MostPoints":1110,"MostPointsAt":"2023-02-16T05:25:49.3292Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.3292Z","LastActivityAt":"2023-02-16T05:25:49.3292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1733,"ScoreAtt":346,"RankDef":1176,"ScoreDef":77528,"RankSup":1135,"ScoreSup":1119,"RankTotal":1461,"ScoreTotal":78993,"ID":849096102,"Name":"Radziox321","NumVillages":1,"Points":1954,"Rank":1661,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096102","BestRank":1661,"BestRankAt":"2023-02-16T05:25:56.353092Z","MostPoints":1954,"MostPointsAt":"2023-02-16T05:25:49.3292Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.3292Z","LastActivityAt":"2023-02-16T05:25:49.3292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1536,"ScoreAtt":1936,"RankDef":2029,"ScoreDef":3961,"RankSup":1264,"ScoreSup":68,"RankTotal":2086,"ScoreTotal":5965,"ID":849096123,"Name":"Miczenso","NumVillages":1,"Points":4733,"Rank":1345,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096123","BestRank":1345,"BestRankAt":"2023-02-16T05:25:56.353092Z","MostPoints":4733,"MostPointsAt":"2023-02-16T05:25:49.329201Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329201Z","LastActivityAt":"2023-02-16T05:25:49.329201Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":676,"ScoreAtt":142186,"RankDef":341,"ScoreDef":920638,"RankSup":1233,"ScoreSup":224,"RankTotal":605,"ScoreTotal":1063048,"ID":849096182,"Name":"AreKing","NumVillages":3,"Points":7773,"Rank":1171,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096182","BestRank":1171,"BestRankAt":"2023-02-16T05:25:49.329201Z","MostPoints":7773,"MostPointsAt":"2023-02-16T05:25:49.329201Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329201Z","LastActivityAt":"2023-02-16T05:25:49.329201Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329618Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":800,"ScoreAtt":80042,"RankDef":693,"ScoreDef":282312,"RankSup":262,"ScoreSup":650384,"RankTotal":612,"ScoreTotal":1012738,"ID":849096215,"Name":"IgƂaa","NumVillages":12,"Points":35985,"Rank":769,"TribeID":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096215","BestRank":768,"BestRankAt":"2023-02-16T05:25:49.329202Z","MostPoints":35985,"MostPointsAt":"2023-02-16T05:25:49.329202Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329202Z","LastActivityAt":"2023-02-16T05:25:49.329202Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329618Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1267,"ScoreAtt":7225,"RankDef":1138,"ScoreDef":86351,"RankSup":0,"ScoreSup":0,"RankTotal":1412,"ScoreTotal":93576,"ID":849096265,"Name":"bielacz","NumVillages":1,"Points":877,"Rank":1881,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096265","BestRank":1881,"BestRankAt":"2023-02-16T05:25:56.353093Z","MostPoints":877,"MostPointsAt":"2023-02-16T05:25:56.353093Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329203Z","LastActivityAt":"2023-02-16T05:25:56.353093Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1239,"ScoreAtt":8373,"RankDef":430,"ScoreDef":662094,"RankSup":1062,"ScoreSup":2597,"RankTotal":742,"ScoreTotal":673064,"ID":849096285,"Name":"MokryRick","NumVillages":2,"Points":9007,"Rank":1118,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096285","BestRank":1118,"BestRankAt":"2023-02-16T05:25:56.353094Z","MostPoints":9007,"MostPointsAt":"2023-02-16T05:25:49.329204Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329204Z","LastActivityAt":"2023-02-16T05:25:49.329204Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":804,"ScoreAtt":78908,"RankDef":365,"ScoreDef":828990,"RankSup":1025,"ScoreSup":3636,"RankTotal":647,"ScoreTotal":911534,"ID":849096310,"Name":"Giser","NumVillages":11,"Points":59408,"Rank":656,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096310","BestRank":656,"BestRankAt":"2023-02-16T05:25:56.353094Z","MostPoints":59408,"MostPointsAt":"2023-02-16T05:25:56.353094Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329205Z","LastActivityAt":"2023-02-16T05:25:56.353094Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1124,"ScoreAtt":15856,"RankDef":1610,"ScoreDef":25095,"RankSup":1065,"ScoreSup":2520,"RankTotal":1651,"ScoreTotal":43471,"ID":849096334,"Name":"Tomekrol","NumVillages":6,"Points":36190,"Rank":768,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096334","BestRank":768,"BestRankAt":"2023-02-16T05:25:56.353095Z","MostPoints":36190,"MostPointsAt":"2023-02-16T05:25:56.353095Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329205Z","LastActivityAt":"2023-02-16T05:25:56.353095Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329619Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2382,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2480,"ScoreTotal":20,"ID":849096341,"Name":"Meldennsen","NumVillages":1,"Points":2881,"Rank":1531,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096341","BestRank":1531,"BestRankAt":"2023-02-16T05:25:56.353095Z","MostPoints":2881,"MostPointsAt":"2023-02-16T05:25:49.329206Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329206Z","LastActivityAt":"2023-02-16T05:25:49.329206Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1759,"ScoreAtt":280,"RankDef":1524,"ScoreDef":31244,"RankSup":0,"ScoreSup":0,"RankTotal":1755,"ScoreTotal":31524,"ID":849096346,"Name":"chips03","NumVillages":1,"Points":26,"Rank":2796,"TribeID":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096346","BestRank":2796,"BestRankAt":"2023-02-16T05:25:56.353096Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329206Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329206Z","LastActivityAt":"2023-02-16T05:25:49.329206Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":361,"ScoreAtt":668803,"RankDef":56,"ScoreDef":6138802,"RankSup":178,"ScoreSup":1175314,"RankTotal":102,"ScoreTotal":7982919,"ID":849096354,"Name":"Artur199556","NumVillages":10,"Points":38204,"Rank":752,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096354","BestRank":738,"BestRankAt":"2023-02-16T05:25:49.329207Z","MostPoints":40779,"MostPointsAt":"2023-02-16T05:25:49.329207Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329207Z","LastActivityAt":"2023-02-16T05:25:49.329207Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1288,"ScoreAtt":6653,"RankDef":497,"ScoreDef":527556,"RankSup":317,"ScoreSup":478046,"RankTotal":613,"ScoreTotal":1012255,"ID":849096383,"Name":"Kallichore","NumVillages":0,"Points":0,"Rank":3045,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096383","BestRank":3045,"BestRankAt":"2023-02-16T05:25:56.353097Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329207Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329207Z","LastActivityAt":"2023-02-16T05:25:49.329207Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32962Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1365,"ScoreAtt":4743,"RankDef":1317,"ScoreDef":55102,"RankSup":1389,"ScoreSup":2,"RankTotal":1550,"ScoreTotal":59847,"ID":849096399,"Name":"Vetiuss","NumVillages":1,"Points":1608,"Rank":1715,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096399","BestRank":1620,"BestRankAt":"2023-02-16T05:25:49.329208Z","MostPoints":2273,"MostPointsAt":"2023-02-16T05:25:49.329208Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329208Z","LastActivityAt":"2023-02-16T05:25:49.329208Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1161,"ScoreAtt":12707,"RankDef":1440,"ScoreDef":38840,"RankSup":0,"ScoreSup":0,"RankTotal":1598,"ScoreTotal":51547,"ID":849096435,"Name":"HKS RUCH","NumVillages":1,"Points":1456,"Rank":1745,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096435","BestRank":1745,"BestRankAt":"2023-02-16T05:25:56.353098Z","MostPoints":1456,"MostPointsAt":"2023-02-16T05:25:56.353098Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329208Z","LastActivityAt":"2023-02-16T05:25:56.353098Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":694,"ScoreAtt":131952,"RankDef":370,"ScoreDef":821507,"RankSup":937,"ScoreSup":8404,"RankTotal":635,"ScoreTotal":961863,"ID":849096454,"Name":"Power76","NumVillages":1,"Points":51,"Rank":2550,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096454","BestRank":2550,"BestRankAt":"2023-02-16T05:25:56.353098Z","MostPoints":51,"MostPointsAt":"2023-02-16T05:25:49.329209Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329209Z","LastActivityAt":"2023-02-16T05:25:49.329209Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1008,"ScoreAtt":28386,"RankDef":109,"ScoreDef":3405783,"RankSup":591,"ScoreSup":103282,"RankTotal":254,"ScoreTotal":3537451,"ID":849096458,"Name":"wookash","NumVillages":19,"Points":131961,"Rank":490,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096458","BestRank":490,"BestRankAt":"2023-02-16T05:25:56.353099Z","MostPoints":131961,"MostPointsAt":"2023-02-16T05:25:56.353099Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:49.329211Z","LastActivityAt":"2023-02-16T05:25:56.353099Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849096543,"Name":"Alpinista","NumVillages":1,"Points":26,"Rank":2797,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096543","BestRank":2797,"BestRankAt":"2023-02-16T05:25:56.353099Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329211Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329211Z","LastActivityAt":"2023-02-16T05:25:49.329211Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329621Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1592,"ScoreAtt":1283,"RankDef":250,"ScoreDef":1523826,"RankSup":735,"ScoreSup":38925,"RankTotal":480,"ScoreTotal":1564034,"ID":849096544,"Name":"Proczu","NumVillages":11,"Points":96867,"Rank":546,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096544","BestRank":546,"BestRankAt":"2023-02-16T05:25:56.3531Z","MostPoints":96867,"MostPointsAt":"2023-02-16T05:25:56.3531Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329212Z","LastActivityAt":"2023-02-16T05:25:56.3531Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":334,"ScoreAtt":775162,"RankDef":234,"ScoreDef":1642074,"RankSup":477,"ScoreSup":191589,"RankTotal":339,"ScoreTotal":2608825,"ID":849096547,"Name":"mikson1995","NumVillages":7,"Points":25537,"Rank":856,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096547","BestRank":854,"BestRankAt":"2023-02-16T05:25:49.329212Z","MostPoints":25537,"MostPointsAt":"2023-02-16T05:25:49.329212Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329212Z","LastActivityAt":"2023-02-16T05:25:49.329212Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1825,"ScoreAtt":138,"RankDef":947,"ScoreDef":147032,"RankSup":793,"ScoreSup":25279,"RankTotal":1205,"ScoreTotal":172449,"ID":849096592,"Name":"Marshmike","NumVillages":1,"Points":5414,"Rank":1300,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096592","BestRank":1300,"BestRankAt":"2023-02-16T05:25:56.353101Z","MostPoints":5414,"MostPointsAt":"2023-02-16T05:25:49.329213Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329213Z","LastActivityAt":"2023-02-16T05:25:49.329213Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":858,"ScoreAtt":60115,"RankDef":899,"ScoreDef":168408,"RankSup":1001,"ScoreSup":4678,"RankTotal":1083,"ScoreTotal":233201,"ID":849096594,"Name":"Kerpi","NumVillages":1,"Points":1562,"Rank":1724,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096594","BestRank":1724,"BestRankAt":"2023-02-16T05:25:56.353101Z","MostPoints":1562,"MostPointsAt":"2023-02-16T05:25:49.329213Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329213Z","LastActivityAt":"2023-02-16T05:25:49.329214Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329622Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":179,"ScoreAtt":1779554,"RankDef":128,"ScoreDef":3034492,"RankSup":84,"ScoreSup":2454536,"RankTotal":116,"ScoreTotal":7268582,"ID":849096606,"Name":"Darma dla zawodnika","NumVillages":1,"Points":48,"Rank":2558,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096606","BestRank":2558,"BestRankAt":"2023-02-16T05:25:56.353102Z","MostPoints":48,"MostPointsAt":"2023-02-16T05:25:56.353102Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.353102Z","LastActivityAt":"2023-02-16T05:25:56.353102Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1057,"ScoreAtt":21967,"RankDef":1936,"ScoreDef":6410,"RankSup":992,"ScoreSup":5309,"RankTotal":1732,"ScoreTotal":33686,"ID":849096631,"Name":"PotÄ™ĆŒny Sycowianin","NumVillages":11,"Points":78243,"Rank":589,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096631","BestRank":589,"BestRankAt":"2023-02-16T05:25:49.329214Z","MostPoints":78243,"MostPointsAt":"2023-02-16T05:25:49.329215Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329215Z","LastActivityAt":"2023-02-16T05:25:49.329215Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":656,"ScoreAtt":156077,"RankDef":303,"ScoreDef":1152616,"RankSup":871,"ScoreSup":14228,"RankTotal":534,"ScoreTotal":1322921,"ID":849096649,"Name":"BudzikRide","NumVillages":2,"Points":16346,"Rank":979,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096649","BestRank":979,"BestRankAt":"2023-02-16T05:25:56.387545Z","MostPoints":16346,"MostPointsAt":"2023-02-16T05:25:56.387545Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329215Z","LastActivityAt":"2023-02-16T05:25:56.387545Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":915,"ScoreAtt":47803,"RankDef":539,"ScoreDef":462218,"RankSup":786,"ScoreSup":27759,"RankTotal":813,"ScoreTotal":537780,"ID":849096768,"Name":"Adamo","NumVillages":7,"Points":53478,"Rank":674,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096768","BestRank":674,"BestRankAt":"2023-02-16T05:25:49.329216Z","MostPoints":53478,"MostPointsAt":"2023-02-16T05:25:56.387546Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329216Z","LastActivityAt":"2023-02-16T05:25:56.387546Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329623Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":801,"ScoreAtt":79903,"RankDef":323,"ScoreDef":1044988,"RankSup":840,"ScoreSup":17208,"RankTotal":584,"ScoreTotal":1142099,"ID":849096856,"Name":"pilkowski","NumVillages":1,"Points":101,"Rank":2460,"TribeID":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096856","BestRank":2460,"BestRankAt":"2023-02-16T05:25:56.387547Z","MostPoints":101,"MostPointsAt":"2023-02-16T05:25:49.329216Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329216Z","LastActivityAt":"2023-02-16T05:25:49.329216Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":897,"ScoreAtt":51529,"RankDef":367,"ScoreDef":826802,"RankSup":577,"ScoreSup":112568,"RankTotal":618,"ScoreTotal":990899,"ID":849096874,"Name":"Igordaniel313","NumVillages":0,"Points":0,"Rank":3046,"TribeID":1651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096874","BestRank":3046,"BestRankAt":"2023-02-16T05:25:56.387547Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329217Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329217Z","LastActivityAt":"2023-02-16T05:25:49.329217Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":666,"ScoreAtt":146389,"RankDef":227,"ScoreDef":1680655,"RankSup":281,"ScoreSup":576857,"RankTotal":357,"ScoreTotal":2403901,"ID":849096882,"Name":"MarekKrk","NumVillages":7,"Points":50119,"Rank":695,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096882","BestRank":694,"BestRankAt":"2023-02-16T05:25:49.329217Z","MostPoints":50119,"MostPointsAt":"2023-02-16T05:25:56.387548Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329217Z","LastActivityAt":"2023-02-16T05:25:56.387548Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1307,"ScoreAtt":6283,"RankDef":1318,"ScoreDef":55102,"RankSup":1254,"ScoreSup":97,"RankTotal":1537,"ScoreTotal":61482,"ID":849096891,"Name":"Kapral16","NumVillages":1,"Points":5698,"Rank":1280,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096891","BestRank":1280,"BestRankAt":"2023-02-16T05:25:56.387548Z","MostPoints":5698,"MostPointsAt":"2023-02-16T05:25:56.387549Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329218Z","LastActivityAt":"2023-02-16T05:25:56.387549Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849096936,"Name":"Karakan13","NumVillages":1,"Points":26,"Rank":2798,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096936","BestRank":2798,"BestRankAt":"2023-02-16T05:25:56.387549Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329218Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329218Z","LastActivityAt":"2023-02-16T05:25:49.329219Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329624Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":841,"ScoreAtt":67152,"RankDef":770,"ScoreDef":234103,"RankSup":1252,"ScoreSup":101,"RankTotal":1002,"ScoreTotal":301356,"ID":849096944,"Name":"Jarko","NumVillages":1,"Points":8598,"Rank":1128,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096944","BestRank":1128,"BestRankAt":"2023-02-16T05:25:56.38755Z","MostPoints":8598,"MostPointsAt":"2023-02-16T05:25:49.329219Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329219Z","LastActivityAt":"2023-02-16T05:25:49.329219Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329625Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":579,"ScoreAtt":240707,"RankDef":116,"ScoreDef":3206856,"RankSup":225,"ScoreSup":788466,"RankTotal":223,"ScoreTotal":4236029,"ID":849096945,"Name":"Boru1996","NumVillages":14,"Points":22925,"Rank":884,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096945","BestRank":881,"BestRankAt":"2023-02-16T05:25:49.329219Z","MostPoints":22925,"MostPointsAt":"2023-02-16T05:25:49.32922Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.32922Z","LastActivityAt":"2023-02-16T05:25:49.32922Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329625Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":991,"ScoreAtt":32626,"RankDef":1151,"ScoreDef":83814,"RankSup":845,"ScoreSup":16961,"RankTotal":1289,"ScoreTotal":133401,"ID":849096954,"Name":"xKratz","NumVillages":1,"Points":41,"Rank":2610,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096954","BestRank":2610,"BestRankAt":"2023-02-16T05:25:49.32922Z","MostPoints":41,"MostPointsAt":"2023-02-16T05:25:49.32922Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32922Z","LastActivityAt":"2023-02-16T05:25:49.32922Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329625Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":725,"ScoreAtt":112795,"RankDef":686,"ScoreDef":286142,"RankSup":947,"ScoreSup":7723,"RankTotal":912,"ScoreTotal":406660,"ID":849096958,"Name":"majchi96","NumVillages":10,"Points":77130,"Rank":592,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096958","BestRank":592,"BestRankAt":"2023-02-16T05:25:56.387551Z","MostPoints":77130,"MostPointsAt":"2023-02-16T05:25:56.387551Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.329221Z","LastActivityAt":"2023-02-16T05:25:56.387551Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":929,"ScoreAtt":44406,"RankDef":667,"ScoreDef":302335,"RankSup":648,"ScoreSup":74552,"RankTotal":896,"ScoreTotal":421293,"ID":849096972,"Name":"Triton1","NumVillages":33,"Points":212593,"Rank":408,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096972","BestRank":408,"BestRankAt":"2023-02-16T05:25:56.387551Z","MostPoints":212593,"MostPointsAt":"2023-02-16T05:25:56.387552Z","MostVillages":33,"MostVillagesAt":"2023-02-16T05:25:56.387551Z","LastActivityAt":"2023-02-16T05:25:56.387552Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1142,"ScoreAtt":14149,"RankDef":580,"ScoreDef":402600,"RankSup":854,"ScoreSup":15944,"RankTotal":884,"ScoreTotal":432693,"ID":849096977,"Name":"Gabiii","NumVillages":1,"Points":3842,"Rank":1415,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096977","BestRank":1415,"BestRankAt":"2023-02-16T05:25:56.387552Z","MostPoints":3842,"MostPointsAt":"2023-02-16T05:25:56.387552Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329222Z","LastActivityAt":"2023-02-16T05:25:56.387552Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329626Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1561,"ScoreAtt":1610,"RankDef":274,"ScoreDef":1337029,"RankSup":775,"ScoreSup":29968,"RankTotal":526,"ScoreTotal":1368607,"ID":849096979,"Name":"Zachariasz Grundbaum","NumVillages":1,"Points":26,"Rank":2799,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096979","BestRank":2799,"BestRankAt":"2023-02-16T05:25:56.387553Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329223Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329223Z","LastActivityAt":"2023-02-16T05:25:49.329224Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1466,"ScoreDef":36443,"RankSup":0,"ScoreSup":0,"RankTotal":1710,"ScoreTotal":36443,"ID":849096990,"Name":"Mr.ElCzapo","NumVillages":1,"Points":3565,"Rank":1446,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849096990","BestRank":1446,"BestRankAt":"2023-02-16T05:25:56.387553Z","MostPoints":3565,"MostPointsAt":"2023-02-16T05:25:56.387553Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329224Z","LastActivityAt":"2023-02-16T05:25:56.387554Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":778,"ScoreAtt":88294,"RankDef":1123,"ScoreDef":90026,"RankSup":328,"ScoreSup":450495,"RankTotal":768,"ScoreTotal":628815,"ID":849097002,"Name":"KazuyaVV","NumVillages":21,"Points":172903,"Rank":440,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097002","BestRank":440,"BestRankAt":"2023-02-16T05:25:56.387554Z","MostPoints":172903,"MostPointsAt":"2023-02-16T05:25:56.387554Z","MostVillages":21,"MostVillagesAt":"2023-02-16T05:25:49.329225Z","LastActivityAt":"2023-02-16T05:25:56.387554Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1181,"ScoreAtt":11458,"RankDef":1848,"ScoreDef":9849,"RankSup":0,"ScoreSup":0,"RankTotal":1848,"ScoreTotal":21307,"ID":849097006,"Name":"Hasha","NumVillages":1,"Points":453,"Rank":2038,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097006","BestRank":2038,"BestRankAt":"2023-02-16T05:25:56.387555Z","MostPoints":453,"MostPointsAt":"2023-02-16T05:25:56.387555Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329225Z","LastActivityAt":"2023-02-16T05:25:56.387555Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":740,"ScoreAtt":108532,"RankDef":1422,"ScoreDef":40561,"RankSup":415,"ScoreSup":290873,"RankTotal":878,"ScoreTotal":439966,"ID":849097103,"Name":"Krystian19k","NumVillages":18,"Points":79533,"Rank":584,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097103","BestRank":584,"BestRankAt":"2023-02-16T05:25:56.387555Z","MostPoints":79533,"MostPointsAt":"2023-02-16T05:25:49.329226Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:49.329226Z","LastActivityAt":"2023-02-16T05:25:49.329226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329627Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2234,"ScoreDef":607,"RankSup":0,"ScoreSup":0,"RankTotal":2317,"ScoreTotal":607,"ID":849097123,"Name":"RediiSD","NumVillages":2,"Points":9183,"Rank":1111,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097123","BestRank":1111,"BestRankAt":"2023-02-16T05:25:56.387556Z","MostPoints":9183,"MostPointsAt":"2023-02-16T05:25:49.329226Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329226Z","LastActivityAt":"2023-02-16T05:25:49.329226Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":557,"ScoreAtt":266031,"RankDef":378,"ScoreDef":799545,"RankSup":583,"ScoreSup":106339,"RankTotal":575,"ScoreTotal":1171915,"ID":849097175,"Name":"GrendysaPowrĂłt","NumVillages":5,"Points":14163,"Rank":1012,"TribeID":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097175","BestRank":1011,"BestRankAt":"2023-02-16T05:25:49.329227Z","MostPoints":14163,"MostPointsAt":"2023-02-16T05:25:49.329227Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329227Z","LastActivityAt":"2023-02-16T05:25:49.329227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2110,"ScoreDef":2260,"RankSup":404,"ScoreSup":315363,"RankTotal":990,"ScoreTotal":317623,"ID":849097220,"Name":"wesolykrystek","NumVillages":4,"Points":18106,"Rank":950,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097220","BestRank":948,"BestRankAt":"2023-02-16T05:25:49.329227Z","MostPoints":18106,"MostPointsAt":"2023-02-16T05:25:49.329227Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329227Z","LastActivityAt":"2023-02-16T05:25:49.329227Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849097274,"Name":"Feii","NumVillages":1,"Points":26,"Rank":2800,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097274","BestRank":2800,"BestRankAt":"2023-02-16T05:25:56.387557Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329228Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329228Z","LastActivityAt":"2023-02-16T05:25:49.329228Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329628Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1460,"ScoreAtt":2896,"RankDef":1950,"ScoreDef":6027,"RankSup":0,"ScoreSup":0,"RankTotal":2012,"ScoreTotal":8923,"ID":849097312,"Name":"Bbartek97","NumVillages":2,"Points":8444,"Rank":1135,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097312","BestRank":1135,"BestRankAt":"2023-02-16T05:25:56.387558Z","MostPoints":8444,"MostPointsAt":"2023-02-16T05:25:56.387558Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329228Z","LastActivityAt":"2023-02-16T05:25:56.387558Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":828,"ScoreAtt":70710,"RankDef":1432,"ScoreDef":39375,"RankSup":1274,"ScoreSup":51,"RankTotal":1355,"ScoreTotal":110136,"ID":849097357,"Name":"morfeusz37","NumVillages":1,"Points":364,"Rank":2102,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097357","BestRank":2102,"BestRankAt":"2023-02-16T05:25:56.387559Z","MostPoints":364,"MostPointsAt":"2023-02-16T05:25:49.329229Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329229Z","LastActivityAt":"2023-02-16T05:25:49.329229Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1020,"ScoreAtt":27094,"RankDef":1293,"ScoreDef":58088,"RankSup":1397,"ScoreSup":2,"RankTotal":1443,"ScoreTotal":85184,"ID":849097370,"Name":"CzarnyBlade","NumVillages":7,"Points":33619,"Rank":781,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097370","BestRank":781,"BestRankAt":"2023-02-16T05:25:56.387559Z","MostPoints":33619,"MostPointsAt":"2023-02-16T05:25:56.387559Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329229Z","LastActivityAt":"2023-02-16T05:25:56.387559Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1978,"ScoreAtt":1,"RankDef":2179,"ScoreDef":1270,"RankSup":0,"ScoreSup":0,"RankTotal":2275,"ScoreTotal":1271,"ID":849097373,"Name":"pinoki","NumVillages":1,"Points":3534,"Rank":1453,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097373","BestRank":1453,"BestRankAt":"2023-02-16T05:25:56.38756Z","MostPoints":3534,"MostPointsAt":"2023-02-16T05:25:56.38756Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32923Z","LastActivityAt":"2023-02-16T05:25:56.38756Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1492,"ScoreAtt":2415,"RankDef":1089,"ScoreDef":97005,"RankSup":954,"ScoreSup":7313,"RankTotal":1363,"ScoreTotal":106733,"ID":849097386,"Name":"betka36","NumVillages":1,"Points":3559,"Rank":1448,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097386","BestRank":1448,"BestRankAt":"2023-02-16T05:25:56.38756Z","MostPoints":3559,"MostPointsAt":"2023-02-16T05:25:49.329231Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329231Z","LastActivityAt":"2023-02-16T05:25:49.329231Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329629Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1692,"ScoreAtt":577,"RankDef":1808,"ScoreDef":11668,"RankSup":0,"ScoreSup":0,"RankTotal":1956,"ScoreTotal":12245,"ID":849097445,"Name":"eddyk","NumVillages":1,"Points":661,"Rank":1944,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097445","BestRank":1944,"BestRankAt":"2023-02-16T05:25:56.387561Z","MostPoints":661,"MostPointsAt":"2023-02-16T05:25:56.387561Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329231Z","LastActivityAt":"2023-02-16T05:25:56.387561Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1540,"ScoreAtt":1867,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2238,"ScoreTotal":1867,"ID":849097477,"Name":"Artok","NumVillages":1,"Points":1519,"Rank":1734,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097477","BestRank":1734,"BestRankAt":"2023-02-16T05:25:56.387562Z","MostPoints":1519,"MostPointsAt":"2023-02-16T05:25:56.387562Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329232Z","LastActivityAt":"2023-02-16T05:25:56.387562Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":853,"ScoreAtt":62725,"RankDef":344,"ScoreDef":896854,"RankSup":483,"ScoreSup":188844,"RankTotal":582,"ScoreTotal":1148423,"ID":849097614,"Name":"RUCHWKSAZBUD","NumVillages":17,"Points":116143,"Rank":507,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097614","BestRank":507,"BestRankAt":"2023-02-16T05:25:56.387562Z","MostPoints":116143,"MostPointsAt":"2023-02-16T05:25:56.387562Z","MostVillages":17,"MostVillagesAt":"2023-02-16T05:25:49.329232Z","LastActivityAt":"2023-02-16T05:25:56.387563Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1144,"ScoreAtt":13856,"RankDef":998,"ScoreDef":125651,"RankSup":0,"ScoreSup":0,"RankTotal":1272,"ScoreTotal":139507,"ID":849097620,"Name":"MikolajOSK","NumVillages":0,"Points":0,"Rank":3047,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097620","BestRank":3047,"BestRankAt":"2023-02-16T05:25:56.387563Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329233Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329233Z","LastActivityAt":"2023-02-16T05:25:49.329233Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1499,"ScoreDef":33675,"RankSup":0,"ScoreSup":0,"RankTotal":1733,"ScoreTotal":33675,"ID":849097681,"Name":"piotr245","NumVillages":1,"Points":5029,"Rank":1316,"TribeID":1798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097681","BestRank":1316,"BestRankAt":"2023-02-16T05:25:56.387563Z","MostPoints":5029,"MostPointsAt":"2023-02-16T05:25:56.387564Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329233Z","LastActivityAt":"2023-02-16T05:25:56.387564Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":874,"ScoreAtt":56445,"RankDef":961,"ScoreDef":142166,"RankSup":730,"ScoreSup":40321,"RankTotal":1069,"ScoreTotal":238932,"ID":849097716,"Name":"Ja1234","NumVillages":13,"Points":87345,"Rank":569,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097716","BestRank":569,"BestRankAt":"2023-02-16T05:25:56.387564Z","MostPoints":87345,"MostPointsAt":"2023-02-16T05:25:56.387564Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.329234Z","LastActivityAt":"2023-02-16T05:25:56.387564Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1125,"ScoreDef":89907,"RankSup":0,"ScoreSup":0,"RankTotal":1431,"ScoreTotal":89907,"ID":849097729,"Name":"Angelina2013","NumVillages":1,"Points":132,"Rank":2395,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097729","BestRank":2395,"BestRankAt":"2023-02-16T05:25:56.387565Z","MostPoints":132,"MostPointsAt":"2023-02-16T05:25:49.329235Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329234Z","LastActivityAt":"2023-02-16T05:25:49.329235Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":622,"ScoreAtt":186712,"RankDef":659,"ScoreDef":313271,"RankSup":819,"ScoreSup":20665,"RankTotal":824,"ScoreTotal":520648,"ID":849097737,"Name":"VentX","NumVillages":15,"Points":85931,"Rank":571,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097737","BestRank":571,"BestRankAt":"2023-02-16T05:25:56.387565Z","MostPoints":85931,"MostPointsAt":"2023-02-16T05:25:56.387565Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.329235Z","LastActivityAt":"2023-02-16T05:25:56.387566Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329631Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1431,"ScoreAtt":3370,"RankDef":1034,"ScoreDef":115120,"RankSup":0,"ScoreSup":0,"RankTotal":1328,"ScoreTotal":118490,"ID":849097792,"Name":"MihuPoKielichu","NumVillages":0,"Points":0,"Rank":3048,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097792","BestRank":3048,"BestRankAt":"2023-02-16T05:25:56.387566Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329236Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329236Z","LastActivityAt":"2023-02-16T05:25:49.329236Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1172,"ScoreAtt":12015,"RankDef":789,"ScoreDef":222984,"RankSup":0,"ScoreSup":0,"RankTotal":1076,"ScoreTotal":234999,"ID":849097793,"Name":"Vintrax","NumVillages":1,"Points":26,"Rank":2801,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097793","BestRank":2801,"BestRankAt":"2023-02-16T05:25:56.387567Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329236Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329236Z","LastActivityAt":"2023-02-16T05:25:49.329236Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":161,"ScoreAtt":1985000,"RankDef":645,"ScoreDef":328720,"RankSup":489,"ScoreSup":183645,"RankTotal":348,"ScoreTotal":2497365,"ID":849097799,"Name":"wgola","NumVillages":50,"Points":391832,"Rank":304,"TribeID":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097799","BestRank":304,"BestRankAt":"2023-02-16T05:25:56.387567Z","MostPoints":391832,"MostPointsAt":"2023-02-16T05:25:56.387567Z","MostVillages":50,"MostVillagesAt":"2023-02-16T05:25:56.387567Z","LastActivityAt":"2023-02-16T05:25:56.387567Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1777,"ScoreAtt":240,"RankDef":1916,"ScoreDef":7119,"RankSup":997,"ScoreSup":5044,"RankTotal":1954,"ScoreTotal":12403,"ID":849097837,"Name":"Adamek95","NumVillages":9,"Points":50918,"Rank":687,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097837","BestRank":687,"BestRankAt":"2023-02-16T05:25:56.387568Z","MostPoints":50918,"MostPointsAt":"2023-02-16T05:25:56.387568Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.329237Z","LastActivityAt":"2023-02-16T05:25:56.387568Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":888,"ScoreAtt":53035,"RankDef":438,"ScoreDef":645389,"RankSup":717,"ScoreSup":42973,"RankTotal":707,"ScoreTotal":741397,"ID":849097898,"Name":"kRolo94","NumVillages":8,"Points":59751,"Rank":654,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097898","BestRank":654,"BestRankAt":"2023-02-16T05:25:56.387568Z","MostPoints":59751,"MostPointsAt":"2023-02-16T05:25:56.387569Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329238Z","LastActivityAt":"2023-02-16T05:25:56.387569Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329632Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1421,"ScoreDef":40562,"RankSup":0,"ScoreSup":0,"RankTotal":1672,"ScoreTotal":40562,"ID":849097924,"Name":"Aragorn93","NumVillages":0,"Points":0,"Rank":3049,"TribeID":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097924","BestRank":3049,"BestRankAt":"2023-02-16T05:25:56.387569Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329238Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329238Z","LastActivityAt":"2023-02-16T05:25:49.329239Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":445,"ScoreAtt":462866,"RankDef":649,"ScoreDef":326006,"RankSup":631,"ScoreSup":80991,"RankTotal":663,"ScoreTotal":869863,"ID":849097937,"Name":"Krasnetus","NumVillages":25,"Points":219765,"Rank":403,"TribeID":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097937","BestRank":403,"BestRankAt":"2023-02-16T05:25:49.329239Z","MostPoints":219765,"MostPointsAt":"2023-02-16T05:25:56.38757Z","MostVillages":25,"MostVillagesAt":"2023-02-16T05:25:49.329239Z","LastActivityAt":"2023-02-16T05:25:56.38757Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":919,"ScoreAtt":46717,"RankDef":639,"ScoreDef":337897,"RankSup":801,"ScoreSup":24440,"RankTotal":910,"ScoreTotal":409054,"ID":849097954,"Name":"Mr. Schecter","NumVillages":0,"Points":0,"Rank":3050,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097954","BestRank":3050,"BestRankAt":"2023-02-16T05:25:56.38757Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32924Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32924Z","LastActivityAt":"2023-02-16T05:25:49.32924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1089,"ScoreAtt":19316,"RankDef":360,"ScoreDef":848633,"RankSup":825,"ScoreSup":19883,"RankTotal":659,"ScoreTotal":887832,"ID":849097981,"Name":"devaster","NumVillages":8,"Points":67394,"Rank":625,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849097981","BestRank":623,"BestRankAt":"2023-02-16T05:25:49.32924Z","MostPoints":67394,"MostPointsAt":"2023-02-16T05:25:49.32924Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.32924Z","LastActivityAt":"2023-02-16T05:25:49.32924Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329633Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":829,"ScoreAtt":70632,"RankDef":1015,"ScoreDef":122932,"RankSup":884,"ScoreSup":13436,"RankTotal":1126,"ScoreTotal":207000,"ID":849098109,"Name":"wojtek11423","NumVillages":0,"Points":0,"Rank":3051,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098109","BestRank":3051,"BestRankAt":"2023-02-16T05:25:56.387571Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329241Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329241Z","LastActivityAt":"2023-02-16T05:25:49.329241Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1590,"ScoreAtt":1295,"RankDef":1699,"ScoreDef":18680,"RankSup":0,"ScoreSup":0,"RankTotal":1871,"ScoreTotal":19975,"ID":849098132,"Name":"grzegorzzdw","NumVillages":1,"Points":2343,"Rank":1595,"TribeID":1690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098132","BestRank":1595,"BestRankAt":"2023-02-16T05:25:56.387572Z","MostPoints":2343,"MostPointsAt":"2023-02-16T05:25:49.329241Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329241Z","LastActivityAt":"2023-02-16T05:25:49.329241Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":673,"ScoreAtt":143710,"RankDef":1549,"ScoreDef":29188,"RankSup":1322,"ScoreSup":14,"RankTotal":1203,"ScoreTotal":172912,"ID":849098136,"Name":"Arhibitsus","NumVillages":8,"Points":56988,"Rank":666,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098136","BestRank":666,"BestRankAt":"2023-02-16T05:25:49.329242Z","MostPoints":56988,"MostPointsAt":"2023-02-16T05:25:49.329242Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329242Z","LastActivityAt":"2023-02-16T05:25:49.329242Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1148,"ScoreAtt":13712,"RankDef":1250,"ScoreDef":62795,"RankSup":1098,"ScoreSup":1838,"RankTotal":1467,"ScoreTotal":78345,"ID":849098159,"Name":"marlis1992","NumVillages":1,"Points":26,"Rank":2802,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098159","BestRank":2802,"BestRankAt":"2023-02-16T05:25:56.387573Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329242Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329242Z","LastActivityAt":"2023-02-16T05:25:49.329242Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329634Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1171,"ScoreDef":78599,"RankSup":0,"ScoreSup":0,"RankTotal":1465,"ScoreTotal":78599,"ID":849098162,"Name":"Baleron1215","NumVillages":0,"Points":0,"Rank":3052,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098162","BestRank":3052,"BestRankAt":"2023-02-16T05:25:56.387574Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329243Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329243Z","LastActivityAt":"2023-02-16T05:25:49.329243Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1292,"ScoreAtt":6608,"RankDef":1175,"ScoreDef":77774,"RankSup":651,"ScoreSup":72158,"RankTotal":1237,"ScoreTotal":156540,"ID":849098192,"Name":"Guru18","NumVillages":1,"Points":6610,"Rank":1227,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098192","BestRank":1227,"BestRankAt":"2023-02-16T05:25:56.387574Z","MostPoints":6610,"MostPointsAt":"2023-02-16T05:25:49.329243Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329243Z","LastActivityAt":"2023-02-16T05:25:49.329244Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849098197,"Name":"Dawid4321","NumVillages":1,"Points":26,"Rank":2803,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098197","BestRank":2803,"BestRankAt":"2023-02-16T05:25:56.387575Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329244Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329244Z","LastActivityAt":"2023-02-16T05:25:49.329244Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":688,"ScoreAtt":138832,"RankDef":718,"ScoreDef":263857,"RankSup":412,"ScoreSup":293715,"RankTotal":734,"ScoreTotal":696404,"ID":849098200,"Name":"pestekkinice","NumVillages":0,"Points":0,"Rank":3053,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098200","BestRank":3053,"BestRankAt":"2023-02-16T05:25:56.387575Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329245Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329245Z","LastActivityAt":"2023-02-16T05:25:49.329245Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1137,"ScoreAtt":14314,"RankDef":934,"ScoreDef":150804,"RankSup":0,"ScoreSup":0,"RankTotal":1217,"ScoreTotal":165118,"ID":849098217,"Name":"Kapral161","NumVillages":1,"Points":292,"Rank":2161,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098217","BestRank":2161,"BestRankAt":"2023-02-16T05:25:56.387576Z","MostPoints":292,"MostPointsAt":"2023-02-16T05:25:56.387576Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329245Z","LastActivityAt":"2023-02-16T05:25:56.387576Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":391,"ScoreAtt":603107,"RankDef":588,"ScoreDef":392416,"RankSup":453,"ScoreSup":222194,"RankTotal":560,"ScoreTotal":1217717,"ID":849098265,"Name":"Brauer92","NumVillages":1,"Points":26,"Rank":2804,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098265","BestRank":2804,"BestRankAt":"2023-02-16T05:25:56.387577Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329246Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329246Z","LastActivityAt":"2023-02-16T05:25:49.329246Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1099,"ScoreAtt":17879,"RankDef":626,"ScoreDef":346476,"RankSup":340,"ScoreSup":430210,"RankTotal":686,"ScoreTotal":794565,"ID":849098299,"Name":"PParker","NumVillages":12,"Points":61116,"Rank":651,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098299","BestRank":649,"BestRankAt":"2023-02-16T05:25:49.329246Z","MostPoints":61116,"MostPointsAt":"2023-02-16T05:25:49.329246Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329246Z","LastActivityAt":"2023-02-16T05:25:49.329246Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1256,"ScoreAtt":7550,"RankDef":592,"ScoreDef":386124,"RankSup":0,"ScoreSup":0,"RankTotal":923,"ScoreTotal":393674,"ID":849098324,"Name":"Merilly","NumVillages":1,"Points":491,"Rank":2016,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098324","BestRank":2016,"BestRankAt":"2023-02-16T05:25:56.387578Z","MostPoints":491,"MostPointsAt":"2023-02-16T05:25:56.387578Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329247Z","LastActivityAt":"2023-02-16T05:25:56.387578Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1358,"ScoreAtt":4952,"RankDef":1926,"ScoreDef":6730,"RankSup":0,"ScoreSup":0,"RankTotal":1966,"ScoreTotal":11682,"ID":849098326,"Name":"piotrczi","NumVillages":8,"Points":43843,"Rank":720,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098326","BestRank":720,"BestRankAt":"2023-02-16T05:25:56.387578Z","MostPoints":43843,"MostPointsAt":"2023-02-16T05:25:56.387579Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329247Z","LastActivityAt":"2023-02-16T05:25:56.387579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":893,"ScoreAtt":52211,"RankDef":1279,"ScoreDef":59434,"RankSup":1060,"ScoreSup":2624,"RankTotal":1341,"ScoreTotal":114269,"ID":849098374,"Name":"ChoraĆŒy Torpeda","NumVillages":1,"Points":4629,"Rank":1352,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098374","BestRank":1352,"BestRankAt":"2023-02-16T05:25:56.387579Z","MostPoints":4629,"MostPointsAt":"2023-02-16T05:25:56.387579Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329248Z","LastActivityAt":"2023-02-16T05:25:56.387579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":726,"ScoreAtt":111540,"RankDef":837,"ScoreDef":193931,"RankSup":655,"ScoreSup":68279,"RankTotal":940,"ScoreTotal":373750,"ID":849098387,"Name":"paluchowski","NumVillages":9,"Points":76690,"Rank":593,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098387","BestRank":593,"BestRankAt":"2023-02-16T05:25:56.38758Z","MostPoints":76690,"MostPointsAt":"2023-02-16T05:25:56.38758Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.329248Z","LastActivityAt":"2023-02-16T05:25:56.38758Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":639,"ScoreAtt":167715,"RankDef":446,"ScoreDef":629870,"RankSup":401,"ScoreSup":316463,"RankTotal":590,"ScoreTotal":1114048,"ID":849098400,"Name":"Milq","NumVillages":2,"Points":4486,"Rank":1362,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098400","BestRank":1362,"BestRankAt":"2023-02-16T05:25:56.38758Z","MostPoints":4486,"MostPointsAt":"2023-02-16T05:25:49.329249Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329249Z","LastActivityAt":"2023-02-16T05:25:49.329249Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":988,"ScoreAtt":32790,"RankDef":805,"ScoreDef":212548,"RankSup":0,"ScoreSup":0,"RankTotal":1060,"ScoreTotal":245338,"ID":849098423,"Name":"Tuna93","NumVillages":0,"Points":0,"Rank":3054,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098423","BestRank":1526,"BestRankAt":"2023-02-16T05:25:49.329249Z","MostPoints":3013,"MostPointsAt":"2023-02-16T05:25:49.32925Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329249Z","LastActivityAt":"2023-02-16T05:25:49.32925Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329637Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1809,"ScoreAtt":161,"RankDef":2035,"ScoreDef":3844,"RankSup":0,"ScoreSup":0,"RankTotal":2153,"ScoreTotal":4005,"ID":849098476,"Name":"beziuleq","NumVillages":0,"Points":0,"Rank":3055,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098476","BestRank":3055,"BestRankAt":"2023-02-16T05:25:56.387582Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32925Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32925Z","LastActivityAt":"2023-02-16T05:25:49.32925Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1503,"ScoreAtt":2242,"RankDef":2118,"ScoreDef":2146,"RankSup":0,"ScoreSup":0,"RankTotal":2142,"ScoreTotal":4388,"ID":849098477,"Name":"siedlik12345","NumVillages":1,"Points":1418,"Rank":1753,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098477","BestRank":1753,"BestRankAt":"2023-02-16T05:25:56.387582Z","MostPoints":1418,"MostPointsAt":"2023-02-16T05:25:56.387582Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329251Z","LastActivityAt":"2023-02-16T05:25:56.387582Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":892,"ScoreAtt":52377,"RankDef":573,"ScoreDef":406811,"RankSup":1089,"ScoreSup":2064,"RankTotal":868,"ScoreTotal":461252,"ID":849098516,"Name":"shart3012","NumVillages":0,"Points":0,"Rank":3056,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098516","BestRank":3056,"BestRankAt":"2023-02-16T05:25:56.387583Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329253Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329253Z","LastActivityAt":"2023-02-16T05:25:49.329253Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1694,"ScoreAtt":560,"RankDef":562,"ScoreDef":421197,"RankSup":1099,"ScoreSup":1831,"RankTotal":893,"ScoreTotal":423588,"ID":849098557,"Name":"chmielek","NumVillages":1,"Points":400,"Rank":2072,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098557","BestRank":2072,"BestRankAt":"2023-02-16T05:25:56.387583Z","MostPoints":400,"MostPointsAt":"2023-02-16T05:25:56.387584Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329253Z","LastActivityAt":"2023-02-16T05:25:56.387584Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1958,"ScoreAtt":9,"RankDef":1559,"ScoreDef":28607,"RankSup":0,"ScoreSup":0,"RankTotal":1779,"ScoreTotal":28616,"ID":849098592,"Name":"Aga22011993","NumVillages":1,"Points":327,"Rank":2129,"TribeID":1645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098592","BestRank":2129,"BestRankAt":"2023-02-16T05:25:56.387584Z","MostPoints":327,"MostPointsAt":"2023-02-16T05:25:49.329254Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329254Z","LastActivityAt":"2023-02-16T05:25:49.329254Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329638Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2237,"ScoreDef":589,"RankSup":0,"ScoreSup":0,"RankTotal":2318,"ScoreTotal":589,"ID":849098607,"Name":"Goƛć098607","NumVillages":1,"Points":2021,"Rank":1650,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098607","BestRank":1650,"BestRankAt":"2023-02-16T05:25:56.387585Z","MostPoints":2021,"MostPointsAt":"2023-02-16T05:25:49.329255Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329254Z","LastActivityAt":"2023-02-16T05:25:49.329255Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":471,"ScoreAtt":411701,"RankDef":112,"ScoreDef":3345807,"RankSup":484,"ScoreSup":187817,"RankTotal":238,"ScoreTotal":3945325,"ID":849098628,"Name":"GorącyDelfinek69","NumVillages":20,"Points":65735,"Rank":632,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098628","BestRank":632,"BestRankAt":"2023-02-16T05:25:56.387585Z","MostPoints":65735,"MostPointsAt":"2023-02-16T05:25:56.387585Z","MostVillages":20,"MostVillagesAt":"2023-02-16T05:25:49.329255Z","LastActivityAt":"2023-02-16T05:25:56.387586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":607,"ScoreAtt":205057,"RankDef":929,"ScoreDef":153075,"RankSup":1100,"ScoreSup":1791,"RankTotal":948,"ScoreTotal":359923,"ID":849098648,"Name":"Kamazer1","NumVillages":9,"Points":64315,"Rank":638,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098648","BestRank":638,"BestRankAt":"2023-02-16T05:25:56.387586Z","MostPoints":64315,"MostPointsAt":"2023-02-16T05:25:56.387586Z","MostVillages":9,"MostVillagesAt":"2023-02-16T05:25:49.329256Z","LastActivityAt":"2023-02-16T05:25:56.387586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2105,"ScoreDef":2377,"RankSup":0,"ScoreSup":0,"RankTotal":2211,"ScoreTotal":2377,"ID":849098667,"Name":"barcioch","NumVillages":1,"Points":678,"Rank":1939,"TribeID":56,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098667","BestRank":1939,"BestRankAt":"2023-02-16T05:25:56.387587Z","MostPoints":678,"MostPointsAt":"2023-02-16T05:25:49.329256Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329256Z","LastActivityAt":"2023-02-16T05:25:49.329256Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":358,"ScoreAtt":680929,"RankDef":67,"ScoreDef":5024038,"RankSup":205,"ScoreSup":890263,"RankTotal":136,"ScoreTotal":6595230,"ID":849098688,"Name":"Gosia08","NumVillages":42,"Points":353831,"Rank":324,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098688","BestRank":324,"BestRankAt":"2023-02-16T05:25:56.387587Z","MostPoints":353831,"MostPointsAt":"2023-02-16T05:25:56.387587Z","MostVillages":42,"MostVillagesAt":"2023-02-16T05:25:56.387587Z","LastActivityAt":"2023-02-16T05:25:56.387587Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1178,"ScoreAtt":11724,"RankDef":1754,"ScoreDef":14903,"RankSup":1294,"ScoreSup":29,"RankTotal":1801,"ScoreTotal":26656,"ID":849098693,"Name":"1kornik83","NumVillages":10,"Points":71201,"Rank":609,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098693","BestRank":609,"BestRankAt":"2023-02-16T05:25:56.387588Z","MostPoints":71201,"MostPointsAt":"2023-02-16T05:25:56.387588Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.329257Z","LastActivityAt":"2023-02-16T05:25:56.387588Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":405,"ScoreAtt":571334,"RankDef":233,"ScoreDef":1653296,"RankSup":183,"ScoreSup":1088119,"RankTotal":265,"ScoreTotal":3312749,"ID":849098695,"Name":"KiwiThief","NumVillages":35,"Points":263084,"Rank":375,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098695","BestRank":374,"BestRankAt":"2023-02-16T05:25:49.329258Z","MostPoints":263084,"MostPointsAt":"2023-02-16T05:25:49.329258Z","MostVillages":35,"MostVillagesAt":"2023-02-16T05:25:49.329258Z","LastActivityAt":"2023-02-16T05:25:49.329258Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1173,"ScoreAtt":12009,"RankDef":1158,"ScoreDef":81040,"RankSup":1054,"ScoreSup":2724,"RankTotal":1399,"ScoreTotal":95773,"ID":849098724,"Name":"cienki11","NumVillages":2,"Points":7288,"Rank":1195,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098724","BestRank":1195,"BestRankAt":"2023-02-16T05:25:56.387589Z","MostPoints":7288,"MostPointsAt":"2023-02-16T05:25:49.329258Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329258Z","LastActivityAt":"2023-02-16T05:25:49.329259Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1610,"ScoreAtt":1101,"RankDef":501,"ScoreDef":520998,"RankSup":688,"ScoreSup":54906,"RankTotal":785,"ScoreTotal":577005,"ID":849098727,"Name":"Riv93","NumVillages":3,"Points":11020,"Rank":1058,"TribeID":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098727","BestRank":1058,"BestRankAt":"2023-02-16T05:25:56.38759Z","MostPoints":11020,"MostPointsAt":"2023-02-16T05:25:56.38759Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329259Z","LastActivityAt":"2023-02-16T05:25:56.38759Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1947,"ScoreDef":6105,"RankSup":1229,"ScoreSup":210,"RankTotal":2077,"ScoreTotal":6315,"ID":849098731,"Name":"Maarczu","NumVillages":4,"Points":5646,"Rank":1285,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098731","BestRank":1285,"BestRankAt":"2023-02-16T05:25:56.38759Z","MostPoints":5646,"MostPointsAt":"2023-02-16T05:25:56.387591Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:56.387591Z","LastActivityAt":"2023-02-16T05:25:56.387591Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2098,"ScoreDef":2470,"RankSup":0,"ScoreSup":0,"RankTotal":2207,"ScoreTotal":2470,"ID":849098766,"Name":"Inergio","NumVillages":1,"Points":2851,"Rank":1534,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098766","BestRank":1534,"BestRankAt":"2023-02-16T05:25:56.387591Z","MostPoints":2851,"MostPointsAt":"2023-02-16T05:25:49.32926Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32926Z","LastActivityAt":"2023-02-16T05:25:49.32926Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":255,"ScoreAtt":1098050,"RankDef":1406,"ScoreDef":42447,"RankSup":724,"ScoreSup":42206,"RankTotal":571,"ScoreTotal":1182703,"ID":849098769,"Name":"hesus93","NumVillages":52,"Points":416669,"Rank":296,"TribeID":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098769","BestRank":296,"BestRankAt":"2023-02-16T05:25:56.387592Z","MostPoints":416669,"MostPointsAt":"2023-02-16T05:25:56.387592Z","MostVillages":52,"MostVillagesAt":"2023-02-16T05:25:49.329261Z","LastActivityAt":"2023-02-16T05:25:56.387592Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":842,"ScoreAtt":66456,"RankDef":513,"ScoreDef":498812,"RankSup":0,"ScoreSup":0,"RankTotal":791,"ScoreTotal":565268,"ID":849098774,"Name":"CypisWariat","NumVillages":0,"Points":0,"Rank":3057,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098774","BestRank":3057,"BestRankAt":"2023-02-16T05:25:56.387592Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329261Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329261Z","LastActivityAt":"2023-02-16T05:25:49.329261Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329641Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":592,"ScoreAtt":222840,"RankDef":354,"ScoreDef":875364,"RankSup":251,"ScoreSup":692318,"RankTotal":443,"ScoreTotal":1790522,"ID":849098782,"Name":"Kratos007","NumVillages":60,"Points":579478,"Rank":248,"TribeID":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098782","BestRank":248,"BestRankAt":"2023-02-16T05:25:49.329262Z","MostPoints":579478,"MostPointsAt":"2023-02-16T05:25:56.387593Z","MostVillages":60,"MostVillagesAt":"2023-02-16T05:25:56.387593Z","LastActivityAt":"2023-02-16T05:25:56.387593Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":865,"ScoreAtt":59039,"RankDef":1924,"ScoreDef":6751,"RankSup":375,"ScoreSup":359388,"RankTotal":890,"ScoreTotal":425178,"ID":849098784,"Name":"Riko97","NumVillages":2,"Points":4813,"Rank":1338,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098784","BestRank":1338,"BestRankAt":"2023-02-16T05:25:56.387594Z","MostPoints":4813,"MostPointsAt":"2023-02-16T05:25:49.329262Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329262Z","LastActivityAt":"2023-02-16T05:25:49.329262Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":818,"ScoreAtt":72699,"RankDef":429,"ScoreDef":663077,"RankSup":867,"ScoreSup":14681,"RankTotal":702,"ScoreTotal":750457,"ID":849098791,"Name":"ilona12005","NumVillages":1,"Points":5561,"Rank":1289,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098791","BestRank":1289,"BestRankAt":"2023-02-16T05:25:56.387594Z","MostPoints":5561,"MostPointsAt":"2023-02-16T05:25:49.329263Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329263Z","LastActivityAt":"2023-02-16T05:25:49.329263Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329642Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1436,"ScoreAtt":3281,"RankDef":2005,"ScoreDef":4509,"RankSup":1049,"ScoreSup":2825,"RankTotal":1984,"ScoreTotal":10615,"ID":849098822,"Name":"SirCharles2","NumVillages":3,"Points":17935,"Rank":954,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098822","BestRank":952,"BestRankAt":"2023-02-16T05:25:49.329263Z","MostPoints":17935,"MostPointsAt":"2023-02-16T05:25:49.329263Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329263Z","LastActivityAt":"2023-02-16T05:25:49.329264Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1860,"ScoreDef":9469,"RankSup":0,"ScoreSup":0,"RankTotal":2002,"ScoreTotal":9469,"ID":849098827,"Name":"zbrzeziu44","NumVillages":1,"Points":1655,"Rank":1708,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098827","BestRank":1708,"BestRankAt":"2023-02-16T05:25:56.387595Z","MostPoints":1655,"MostPointsAt":"2023-02-16T05:25:56.387596Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329264Z","LastActivityAt":"2023-02-16T05:25:56.387596Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1618,"ScoreAtt":1032,"RankDef":952,"ScoreDef":145901,"RankSup":0,"ScoreSup":0,"RankTotal":1253,"ScoreTotal":146933,"ID":849098848,"Name":"Kufe","NumVillages":0,"Points":0,"Rank":3058,"TribeID":1737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098848","BestRank":3058,"BestRankAt":"2023-02-16T05:25:56.387596Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329265Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329264Z","LastActivityAt":"2023-02-16T05:25:49.329265Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1147,"ScoreAtt":13768,"RankDef":251,"ScoreDef":1517571,"RankSup":1160,"ScoreSup":814,"RankTotal":490,"ScoreTotal":1532153,"ID":849098966,"Name":"GrimS","NumVillages":12,"Points":71585,"Rank":606,"TribeID":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098966","BestRank":606,"BestRankAt":"2023-02-16T05:25:56.387597Z","MostPoints":71585,"MostPointsAt":"2023-02-16T05:25:56.387597Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329265Z","LastActivityAt":"2023-02-16T05:25:56.387597Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2358,"ScoreDef":34,"RankSup":0,"ScoreSup":0,"RankTotal":2461,"ScoreTotal":34,"ID":849098993,"Name":"bulkas9999333","NumVillages":1,"Points":532,"Rank":1992,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849098993","BestRank":1992,"BestRankAt":"2023-02-16T05:25:56.387597Z","MostPoints":532,"MostPointsAt":"2023-02-16T05:25:49.329266Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329266Z","LastActivityAt":"2023-02-16T05:25:49.329266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":722,"ScoreAtt":113452,"RankDef":90,"ScoreDef":3797508,"RankSup":680,"ScoreSup":57608,"RankTotal":236,"ScoreTotal":3968568,"ID":849099021,"Name":"mibre","NumVillages":0,"Points":0,"Rank":3059,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099021","BestRank":3059,"BestRankAt":"2023-02-16T05:25:56.387598Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329266Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329266Z","LastActivityAt":"2023-02-16T05:25:49.329266Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1183,"ScoreAtt":11289,"RankDef":1981,"ScoreDef":5342,"RankSup":0,"ScoreSup":0,"RankTotal":1905,"ScoreTotal":16631,"ID":849099054,"Name":"GromHellscream","NumVillages":7,"Points":51004,"Rank":686,"TribeID":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099054","BestRank":686,"BestRankAt":"2023-02-16T05:25:56.387599Z","MostPoints":51004,"MostPointsAt":"2023-02-16T05:25:56.387599Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329267Z","LastActivityAt":"2023-02-16T05:25:56.387599Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1717,"ScoreAtt":436,"RankDef":345,"ScoreDef":896468,"RankSup":966,"ScoreSup":6285,"RankTotal":651,"ScoreTotal":903189,"ID":849099105,"Name":"GrandeGallo","NumVillages":0,"Points":0,"Rank":3060,"TribeID":1483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099105","BestRank":3060,"BestRankAt":"2023-02-16T05:25:56.387599Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329267Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329267Z","LastActivityAt":"2023-02-16T05:25:49.329267Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1367,"ScoreAtt":4731,"RankDef":1536,"ScoreDef":30175,"RankSup":0,"ScoreSup":0,"RankTotal":1723,"ScoreTotal":34906,"ID":849099131,"Name":"SzopPracz93","NumVillages":1,"Points":450,"Rank":2039,"TribeID":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099131","BestRank":2039,"BestRankAt":"2023-02-16T05:25:56.3876Z","MostPoints":450,"MostPointsAt":"2023-02-16T05:25:49.329268Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329268Z","LastActivityAt":"2023-02-16T05:25:49.329268Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1248,"ScoreAtt":7910,"RankDef":678,"ScoreDef":293035,"RankSup":969,"ScoreSup":6258,"RankTotal":1000,"ScoreTotal":307203,"ID":849099138,"Name":"SkyForce2","NumVillages":1,"Points":2522,"Rank":1573,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099138","BestRank":1573,"BestRankAt":"2023-02-16T05:25:56.3876Z","MostPoints":2522,"MostPointsAt":"2023-02-16T05:25:56.387601Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329268Z","LastActivityAt":"2023-02-16T05:25:56.387601Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1259,"ScoreAtt":7515,"RankDef":1107,"ScoreDef":92621,"RankSup":1192,"ScoreSup":419,"RankTotal":1385,"ScoreTotal":100555,"ID":849099141,"Name":"Rafi43","NumVillages":1,"Points":580,"Rank":1975,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099141","BestRank":1975,"BestRankAt":"2023-02-16T05:25:56.387601Z","MostPoints":580,"MostPointsAt":"2023-02-16T05:25:56.387601Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329269Z","LastActivityAt":"2023-02-16T05:25:56.387601Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1508,"ScoreAtt":2190,"RankDef":842,"ScoreDef":190905,"RankSup":0,"ScoreSup":0,"RankTotal":1153,"ScoreTotal":193095,"ID":849099145,"Name":"Szymon9405","NumVillages":1,"Points":4187,"Rank":1386,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099145","BestRank":1386,"BestRankAt":"2023-02-16T05:25:56.387602Z","MostPoints":4187,"MostPointsAt":"2023-02-16T05:25:56.387602Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329269Z","LastActivityAt":"2023-02-16T05:25:56.387602Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":636,"ScoreAtt":173534,"RankDef":261,"ScoreDef":1430188,"RankSup":463,"ScoreSup":206356,"RankTotal":438,"ScoreTotal":1810078,"ID":849099160,"Name":"FiftyShades","NumVillages":10,"Points":105266,"Rank":527,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099160","BestRank":527,"BestRankAt":"2023-02-16T05:25:56.387602Z","MostPoints":105266,"MostPointsAt":"2023-02-16T05:25:56.387603Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.32927Z","LastActivityAt":"2023-02-16T05:25:56.387603Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329645Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849099255,"Name":"tomas289","NumVillages":1,"Points":26,"Rank":2805,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099255","BestRank":2805,"BestRankAt":"2023-02-16T05:25:56.387603Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329271Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329271Z","LastActivityAt":"2023-02-16T05:25:49.329271Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1526,"ScoreAtt":2052,"RankDef":1002,"ScoreDef":125081,"RankSup":943,"ScoreSup":7971,"RankTotal":1283,"ScoreTotal":135104,"ID":849099258,"Name":"POLiii","NumVillages":6,"Points":36511,"Rank":767,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099258","BestRank":767,"BestRankAt":"2023-02-16T05:25:56.387604Z","MostPoints":36511,"MostPointsAt":"2023-02-16T05:25:56.387604Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329271Z","LastActivityAt":"2023-02-16T05:25:56.387604Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":373,"ScoreAtt":629120,"RankDef":107,"ScoreDef":3422165,"RankSup":367,"ScoreSup":375632,"RankTotal":218,"ScoreTotal":4426917,"ID":849099276,"Name":"Sosen1","NumVillages":7,"Points":37301,"Rank":761,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099276","BestRank":761,"BestRankAt":"2023-02-16T05:25:49.329272Z","MostPoints":37301,"MostPointsAt":"2023-02-16T05:25:56.387604Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329272Z","LastActivityAt":"2023-02-16T05:25:56.387605Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1378,"ScoreAtt":4537,"RankDef":2074,"ScoreDef":2937,"RankSup":0,"ScoreSup":0,"RankTotal":2049,"ScoreTotal":7474,"ID":849099280,"Name":"staszek233","NumVillages":2,"Points":4831,"Rank":1335,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099280","BestRank":1335,"BestRankAt":"2023-02-16T05:25:56.387605Z","MostPoints":4831,"MostPointsAt":"2023-02-16T05:25:49.329272Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329272Z","LastActivityAt":"2023-02-16T05:25:49.329272Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":732,"ScoreAtt":110018,"RankDef":2090,"ScoreDef":2640,"RankSup":1017,"ScoreSup":3966,"RankTotal":1335,"ScoreTotal":116624,"ID":849099342,"Name":"Michalxj6","NumVillages":7,"Points":45792,"Rank":712,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099342","BestRank":712,"BestRankAt":"2023-02-16T05:25:56.387605Z","MostPoints":45792,"MostPointsAt":"2023-02-16T05:25:56.387606Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329273Z","LastActivityAt":"2023-02-16T05:25:56.387606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329646Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1676,"ScoreAtt":675,"RankDef":1988,"ScoreDef":5189,"RankSup":0,"ScoreSup":0,"RankTotal":2090,"ScoreTotal":5864,"ID":849099391,"Name":"AzinG","NumVillages":2,"Points":8706,"Rank":1124,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099391","BestRank":1124,"BestRankAt":"2023-02-16T05:25:56.387606Z","MostPoints":8706,"MostPointsAt":"2023-02-16T05:25:49.329273Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329273Z","LastActivityAt":"2023-02-16T05:25:49.329274Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":849,"ScoreAtt":63898,"RankDef":1803,"ScoreDef":11792,"RankSup":0,"ScoreSup":0,"RankTotal":1474,"ScoreTotal":75690,"ID":849099422,"Name":"franekkimono510","NumVillages":11,"Points":62522,"Rank":645,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099422","BestRank":645,"BestRankAt":"2023-02-16T05:25:56.387607Z","MostPoints":62522,"MostPointsAt":"2023-02-16T05:25:56.387607Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329274Z","LastActivityAt":"2023-02-16T05:25:56.387607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849099425,"Name":"Ponury Grabarz 1995","NumVillages":1,"Points":678,"Rank":1940,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099425","BestRank":1940,"BestRankAt":"2023-02-16T05:25:56.387607Z","MostPoints":678,"MostPointsAt":"2023-02-16T05:25:56.387608Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329274Z","LastActivityAt":"2023-02-16T05:25:56.387608Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":584,"ScoreAtt":234296,"RankDef":1986,"ScoreDef":5261,"RankSup":1337,"ScoreSup":9,"RankTotal":1068,"ScoreTotal":239566,"ID":849099434,"Name":"luverten","NumVillages":11,"Points":86870,"Rank":570,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099434","BestRank":570,"BestRankAt":"2023-02-16T05:25:56.387608Z","MostPoints":86870,"MostPointsAt":"2023-02-16T05:25:49.329275Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329275Z","LastActivityAt":"2023-02-16T05:25:49.329275Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":680,"ScoreAtt":140885,"RankDef":304,"ScoreDef":1143022,"RankSup":808,"ScoreSup":23265,"RankTotal":539,"ScoreTotal":1307172,"ID":849099463,"Name":"mosiekk","NumVillages":5,"Points":37688,"Rank":756,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099463","BestRank":755,"BestRankAt":"2023-02-16T05:25:49.329275Z","MostPoints":37688,"MostPointsAt":"2023-02-16T05:25:56.387609Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329276Z","LastActivityAt":"2023-02-16T05:25:56.387609Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":739,"ScoreAtt":108534,"RankDef":229,"ScoreDef":1673054,"RankSup":543,"ScoreSup":135058,"RankTotal":419,"ScoreTotal":1916646,"ID":849099505,"Name":"Andrzejizator","NumVillages":1,"Points":3075,"Rank":1504,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099505","BestRank":1319,"BestRankAt":"2023-02-16T05:25:49.329276Z","MostPoints":5116,"MostPointsAt":"2023-02-16T05:25:49.329276Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329276Z","LastActivityAt":"2023-02-16T05:25:49.329276Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":981,"ScoreAtt":33402,"RankDef":2092,"ScoreDef":2632,"RankSup":623,"ScoreSup":86647,"RankTotal":1318,"ScoreTotal":122681,"ID":849099517,"Name":"MatWa","NumVillages":5,"Points":37583,"Rank":757,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099517","BestRank":754,"BestRankAt":"2023-02-16T05:25:49.329277Z","MostPoints":37583,"MostPointsAt":"2023-02-16T05:25:49.329277Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329277Z","LastActivityAt":"2023-02-16T05:25:49.329277Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1456,"ScoreDef":37377,"RankSup":1356,"ScoreSup":5,"RankTotal":1700,"ScoreTotal":37382,"ID":849099541,"Name":"Mrkime","NumVillages":1,"Points":4308,"Rank":1375,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099541","BestRank":1375,"BestRankAt":"2023-02-16T05:25:56.387611Z","MostPoints":4308,"MostPointsAt":"2023-02-16T05:25:49.329277Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329277Z","LastActivityAt":"2023-02-16T05:25:49.329277Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":495,"ScoreAtt":365320,"RankDef":612,"ScoreDef":367501,"RankSup":653,"ScoreSup":69844,"RankTotal":683,"ScoreTotal":802665,"ID":849099544,"Name":"happydrinker","NumVillages":15,"Points":109649,"Rank":522,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099544","BestRank":522,"BestRankAt":"2023-02-16T05:25:49.329278Z","MostPoints":109649,"MostPointsAt":"2023-02-16T05:25:56.387612Z","MostVillages":15,"MostVillagesAt":"2023-02-16T05:25:49.329278Z","LastActivityAt":"2023-02-16T05:25:56.387612Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1593,"ScoreAtt":1277,"RankDef":830,"ScoreDef":197678,"RankSup":0,"ScoreSup":0,"RankTotal":1139,"ScoreTotal":198955,"ID":849099557,"Name":"IZRA","NumVillages":0,"Points":0,"Rank":3061,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099557","BestRank":3061,"BestRankAt":"2023-02-16T05:25:56.387612Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329278Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329278Z","LastActivityAt":"2023-02-16T05:25:49.329279Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1464,"ScoreAtt":2806,"RankDef":2086,"ScoreDef":2742,"RankSup":1134,"ScoreSup":1149,"RankTotal":2067,"ScoreTotal":6697,"ID":849099558,"Name":"Seprinoth","NumVillages":1,"Points":2940,"Rank":1521,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099558","BestRank":1521,"BestRankAt":"2023-02-16T05:25:56.387613Z","MostPoints":2940,"MostPointsAt":"2023-02-16T05:25:49.329279Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329279Z","LastActivityAt":"2023-02-16T05:25:49.329279Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":931,"ScoreAtt":43979,"RankDef":1098,"ScoreDef":94244,"RankSup":1202,"ScoreSup":353,"RankTotal":1274,"ScoreTotal":138576,"ID":849099601,"Name":"Pro100wryj","NumVillages":7,"Points":23128,"Rank":882,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099601","BestRank":882,"BestRankAt":"2023-02-16T05:25:56.387613Z","MostPoints":23128,"MostPointsAt":"2023-02-16T05:25:56.387614Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:56.387614Z","LastActivityAt":"2023-02-16T05:25:56.387614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1160,"ScoreAtt":12849,"RankDef":700,"ScoreDef":279472,"RankSup":295,"ScoreSup":546735,"RankTotal":669,"ScoreTotal":839056,"ID":849099640,"Name":"DonOrleon","NumVillages":11,"Points":74887,"Rank":597,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099640","BestRank":597,"BestRankAt":"2023-02-16T05:25:56.387614Z","MostPoints":74887,"MostPointsAt":"2023-02-16T05:25:56.387614Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.32928Z","LastActivityAt":"2023-02-16T05:25:56.387614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329649Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1547,"ScoreAtt":1813,"RankDef":1832,"ScoreDef":10474,"RankSup":0,"ScoreSup":0,"RankTotal":1955,"ScoreTotal":12287,"ID":849099660,"Name":"ProCzacha","NumVillages":1,"Points":26,"Rank":2806,"TribeID":806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099660","BestRank":2806,"BestRankAt":"2023-02-16T05:25:56.387615Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329281Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329281Z","LastActivityAt":"2023-02-16T05:25:49.329281Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1787,"ScoreAtt":217,"RankDef":1878,"ScoreDef":8484,"RankSup":1046,"ScoreSup":2870,"RankTotal":1969,"ScoreTotal":11571,"ID":849099689,"Name":"seba1234567","NumVillages":3,"Points":11596,"Rank":1049,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099689","BestRank":1047,"BestRankAt":"2023-02-16T05:25:49.329281Z","MostPoints":11596,"MostPointsAt":"2023-02-16T05:25:49.329281Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329281Z","LastActivityAt":"2023-02-16T05:25:49.329281Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":388,"ScoreAtt":606431,"RankDef":104,"ScoreDef":3496033,"RankSup":1081,"ScoreSup":2212,"RankTotal":232,"ScoreTotal":4104676,"ID":849099696,"Name":"harryson","NumVillages":14,"Points":73285,"Rank":601,"TribeID":1039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099696","BestRank":601,"BestRankAt":"2023-02-16T05:25:56.387616Z","MostPoints":73285,"MostPointsAt":"2023-02-16T05:25:56.387616Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.329282Z","LastActivityAt":"2023-02-16T05:25:56.387616Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":448,"ScoreAtt":449879,"RankDef":447,"ScoreDef":626275,"RankSup":907,"ScoreSup":10688,"RankTotal":594,"ScoreTotal":1086842,"ID":849099785,"Name":"Kamileq69","NumVillages":1,"Points":26,"Rank":2807,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099785","BestRank":2807,"BestRankAt":"2023-02-16T05:25:56.387616Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329282Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329282Z","LastActivityAt":"2023-02-16T05:25:49.329282Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1390,"ScoreAtt":4243,"RankDef":1121,"ScoreDef":90641,"RankSup":0,"ScoreSup":0,"RankTotal":1407,"ScoreTotal":94884,"ID":849099797,"Name":"dekmax","NumVillages":1,"Points":1523,"Rank":1731,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099797","BestRank":1731,"BestRankAt":"2023-02-16T05:25:56.387617Z","MostPoints":1523,"MostPointsAt":"2023-02-16T05:25:49.329283Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329283Z","LastActivityAt":"2023-02-16T05:25:49.329283Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32965Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1396,"ScoreAtt":4143,"RankDef":1683,"ScoreDef":19628,"RankSup":1222,"ScoreSup":241,"RankTotal":1826,"ScoreTotal":24012,"ID":849099804,"Name":"karmelon","NumVillages":1,"Points":2453,"Rank":1578,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099804","BestRank":1578,"BestRankAt":"2023-02-16T05:25:56.387617Z","MostPoints":2453,"MostPointsAt":"2023-02-16T05:25:49.329283Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329283Z","LastActivityAt":"2023-02-16T05:25:49.329283Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1102,"ScoreAtt":17692,"RankDef":577,"ScoreDef":404279,"RankSup":888,"ScoreSup":12688,"RankTotal":882,"ScoreTotal":434659,"ID":849099815,"Name":"CarIsonn","NumVillages":0,"Points":0,"Rank":3062,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099815","BestRank":3062,"BestRankAt":"2023-02-16T05:25:56.387618Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329284Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329284Z","LastActivityAt":"2023-02-16T05:25:49.329284Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1354,"ScoreAtt":5138,"RankDef":1233,"ScoreDef":66449,"RankSup":0,"ScoreSup":0,"RankTotal":1490,"ScoreTotal":71587,"ID":849099859,"Name":"Goƛć099859","NumVillages":1,"Points":3686,"Rank":1431,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099859","BestRank":1431,"BestRankAt":"2023-02-16T05:25:56.387618Z","MostPoints":3686,"MostPointsAt":"2023-02-16T05:25:49.329285Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329284Z","LastActivityAt":"2023-02-16T05:25:49.329285Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1783,"ScoreAtt":225,"RankDef":1086,"ScoreDef":97343,"RankSup":826,"ScoreSup":19666,"RankTotal":1331,"ScoreTotal":117234,"ID":849099864,"Name":"oskar996","NumVillages":1,"Points":5676,"Rank":1282,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099864","BestRank":1282,"BestRankAt":"2023-02-16T05:25:56.387618Z","MostPoints":5676,"MostPointsAt":"2023-02-16T05:25:56.387619Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329285Z","LastActivityAt":"2023-02-16T05:25:56.387619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":102,"ScoreAtt":3030696,"RankDef":596,"ScoreDef":383476,"RankSup":132,"ScoreSup":1640011,"RankTotal":184,"ScoreTotal":5054183,"ID":849099876,"Name":"heetsik","NumVillages":194,"Points":1821942,"Rank":59,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099876","BestRank":59,"BestRankAt":"2023-02-16T05:25:56.387619Z","MostPoints":1821942,"MostPointsAt":"2023-02-16T05:25:56.387619Z","MostVillages":194,"MostVillagesAt":"2023-02-16T05:25:56.387619Z","LastActivityAt":"2023-02-16T05:25:56.387619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1479,"ScoreDef":35688,"RankSup":1388,"ScoreSup":2,"RankTotal":1718,"ScoreTotal":35690,"ID":849099887,"Name":"NiedzwiedzWampir","NumVillages":1,"Points":1367,"Rank":1763,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099887","BestRank":1763,"BestRankAt":"2023-02-16T05:25:56.38762Z","MostPoints":1367,"MostPointsAt":"2023-02-16T05:25:56.38762Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329286Z","LastActivityAt":"2023-02-16T05:25:56.38762Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2049,"ScoreDef":3534,"RankSup":1000,"ScoreSup":4902,"RankTotal":2024,"ScoreTotal":8436,"ID":849099924,"Name":"kondzikkk","NumVillages":3,"Points":9710,"Rank":1094,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099924","BestRank":1094,"BestRankAt":"2023-02-16T05:25:56.38762Z","MostPoints":9710,"MostPointsAt":"2023-02-16T05:25:49.329287Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329287Z","LastActivityAt":"2023-02-16T05:25:49.329287Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1084,"ScoreAtt":19616,"RankDef":849,"ScoreDef":187717,"RankSup":0,"ScoreSup":0,"RankTotal":1124,"ScoreTotal":207333,"ID":849099932,"Name":"Mati1995","NumVillages":0,"Points":0,"Rank":3063,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099932","BestRank":3063,"BestRankAt":"2023-02-16T05:25:56.387621Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329287Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329287Z","LastActivityAt":"2023-02-16T05:25:49.329287Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":982,"ScoreAtt":33305,"RankDef":1388,"ScoreDef":45745,"RankSup":1241,"ScoreSup":149,"RankTotal":1458,"ScoreTotal":79199,"ID":849099955,"Name":"VIK97","NumVillages":2,"Points":6351,"Rank":1244,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099955","BestRank":1244,"BestRankAt":"2023-02-16T05:25:56.387621Z","MostPoints":6351,"MostPointsAt":"2023-02-16T05:25:56.387621Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329288Z","LastActivityAt":"2023-02-16T05:25:56.387621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":564,"ScoreAtt":257553,"RankDef":203,"ScoreDef":1882017,"RankSup":579,"ScoreSup":111873,"RankTotal":378,"ScoreTotal":2251443,"ID":849099965,"Name":"Don Sracze","NumVillages":4,"Points":11804,"Rank":1046,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849099965","BestRank":1046,"BestRankAt":"2023-02-16T05:25:56.387622Z","MostPoints":11804,"MostPointsAt":"2023-02-16T05:25:56.387622Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329288Z","LastActivityAt":"2023-02-16T05:25:56.387622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2233,"ScoreDef":615,"RankSup":0,"ScoreSup":0,"RankTotal":2316,"ScoreTotal":615,"ID":849100006,"Name":"andzia524","NumVillages":1,"Points":3577,"Rank":1443,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100006","BestRank":1443,"BestRankAt":"2023-02-16T05:25:56.387622Z","MostPoints":3577,"MostPointsAt":"2023-02-16T05:25:56.387622Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329289Z","LastActivityAt":"2023-02-16T05:25:56.387623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1679,"ScoreAtt":670,"RankDef":724,"ScoreDef":262679,"RankSup":0,"ScoreSup":0,"RankTotal":1042,"ScoreTotal":263349,"ID":849100016,"Name":"pawelek113","NumVillages":1,"Points":1815,"Rank":1688,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100016","BestRank":1688,"BestRankAt":"2023-02-16T05:25:56.387623Z","MostPoints":1815,"MostPointsAt":"2023-02-16T05:25:56.387623Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329289Z","LastActivityAt":"2023-02-16T05:25:56.387623Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1340,"ScoreAtt":5351,"RankDef":433,"ScoreDef":648704,"RankSup":0,"ScoreSup":0,"RankTotal":750,"ScoreTotal":654055,"ID":849100034,"Name":"Dyaebel","NumVillages":0,"Points":0,"Rank":3064,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100034","BestRank":3064,"BestRankAt":"2023-02-16T05:25:56.387623Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32929Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32929Z","LastActivityAt":"2023-02-16T05:25:49.32929Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329653Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1184,"ScoreAtt":11228,"RankDef":2199,"ScoreDef":984,"RankSup":476,"ScoreSup":192502,"RankTotal":1132,"ScoreTotal":204714,"ID":849100082,"Name":"malinos29","NumVillages":6,"Points":51834,"Rank":682,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100082","BestRank":682,"BestRankAt":"2023-02-16T05:25:56.387624Z","MostPoints":51834,"MostPointsAt":"2023-02-16T05:25:56.387624Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.32929Z","LastActivityAt":"2023-02-16T05:25:56.387624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1638,"ScoreAtt":850,"RankDef":1650,"ScoreDef":21886,"RankSup":0,"ScoreSup":0,"RankTotal":1835,"ScoreTotal":22736,"ID":849100083,"Name":"paskowy","NumVillages":3,"Points":18033,"Rank":952,"TribeID":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100083","BestRank":952,"BestRankAt":"2023-02-16T05:25:56.387624Z","MostPoints":18033,"MostPointsAt":"2023-02-16T05:25:56.387625Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329291Z","LastActivityAt":"2023-02-16T05:25:56.387625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2048,"ScoreDef":3581,"RankSup":0,"ScoreSup":0,"RankTotal":2171,"ScoreTotal":3581,"ID":849100089,"Name":"Szymkowiak","NumVillages":1,"Points":26,"Rank":2808,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100089","BestRank":2808,"BestRankAt":"2023-02-16T05:25:56.387625Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329292Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329292Z","LastActivityAt":"2023-02-16T05:25:49.329292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2114,"ScoreDef":2245,"RankSup":0,"ScoreSup":0,"RankTotal":2216,"ScoreTotal":2245,"ID":849100134,"Name":"Paprykk777","NumVillages":1,"Points":1899,"Rank":1672,"TribeID":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100134","BestRank":1672,"BestRankAt":"2023-02-16T05:25:56.387626Z","MostPoints":1899,"MostPointsAt":"2023-02-16T05:25:49.329292Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329292Z","LastActivityAt":"2023-02-16T05:25:49.329292Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329654Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":660,"ScoreAtt":152592,"RankDef":1129,"ScoreDef":88120,"RankSup":196,"ScoreSup":963084,"RankTotal":564,"ScoreTotal":1203796,"ID":849100149,"Name":"kolo123321","NumVillages":14,"Points":109317,"Rank":523,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100149","BestRank":523,"BestRankAt":"2023-02-16T05:25:56.387626Z","MostPoints":109317,"MostPointsAt":"2023-02-16T05:25:56.387626Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.329293Z","LastActivityAt":"2023-02-16T05:25:56.387626Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1945,"ScoreAtt":17,"RankDef":2216,"ScoreDef":780,"RankSup":0,"ScoreSup":0,"RankTotal":2300,"ScoreTotal":797,"ID":849100162,"Name":"Mag Gywer","NumVillages":1,"Points":2852,"Rank":1533,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100162","BestRank":1533,"BestRankAt":"2023-02-16T05:25:56.387627Z","MostPoints":2852,"MostPointsAt":"2023-02-16T05:25:56.387627Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329293Z","LastActivityAt":"2023-02-16T05:25:56.387627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1456,"ScoreAtt":2969,"RankDef":2158,"ScoreDef":1650,"RankSup":0,"ScoreSup":0,"RankTotal":2133,"ScoreTotal":4619,"ID":849100199,"Name":"Gra31","NumVillages":0,"Points":0,"Rank":3065,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100199","BestRank":3065,"BestRankAt":"2023-02-16T05:25:56.387627Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329294Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329294Z","LastActivityAt":"2023-02-16T05:25:49.329294Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1338,"ScoreDef":52425,"RankSup":0,"ScoreSup":0,"RankTotal":1591,"ScoreTotal":52425,"ID":849100211,"Name":"Andrew97","NumVillages":0,"Points":0,"Rank":3066,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100211","BestRank":3066,"BestRankAt":"2023-02-16T05:25:56.387628Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329294Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329294Z","LastActivityAt":"2023-02-16T05:25:49.329295Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":856,"ScoreAtt":60742,"RankDef":512,"ScoreDef":501343,"RankSup":0,"ScoreSup":0,"RankTotal":794,"ScoreTotal":562085,"ID":849100228,"Name":"Koziar1999","NumVillages":3,"Points":30736,"Rank":815,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100228","BestRank":815,"BestRankAt":"2023-02-16T05:25:56.387628Z","MostPoints":30736,"MostPointsAt":"2023-02-16T05:25:56.387628Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329295Z","LastActivityAt":"2023-02-16T05:25:56.387628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1362,"ScoreAtt":4824,"RankDef":2093,"ScoreDef":2579,"RankSup":563,"ScoreSup":123019,"RankTotal":1295,"ScoreTotal":130422,"ID":849100246,"Name":"atomwaffen","NumVillages":5,"Points":30014,"Rank":818,"TribeID":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100246","BestRank":818,"BestRankAt":"2023-02-16T05:25:56.387629Z","MostPoints":30014,"MostPointsAt":"2023-02-16T05:25:56.387629Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329295Z","LastActivityAt":"2023-02-16T05:25:56.387629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":534,"ScoreAtt":303071,"RankDef":813,"ScoreDef":207125,"RankSup":535,"ScoreSup":140462,"RankTotal":754,"ScoreTotal":650658,"ID":849100262,"Name":"YeQiu","NumVillages":19,"Points":174319,"Rank":439,"TribeID":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100262","BestRank":439,"BestRankAt":"2023-02-16T05:25:56.387629Z","MostPoints":174319,"MostPointsAt":"2023-02-16T05:25:56.387629Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:49.329296Z","LastActivityAt":"2023-02-16T05:25:56.387629Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1737,"ScoreAtt":340,"RankDef":1882,"ScoreDef":8264,"RankSup":0,"ScoreSup":0,"RankTotal":2020,"ScoreTotal":8604,"ID":849100288,"Name":"metyh","NumVillages":1,"Points":2696,"Rank":1555,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100288","BestRank":1555,"BestRankAt":"2023-02-16T05:25:56.38763Z","MostPoints":2696,"MostPointsAt":"2023-02-16T05:25:49.329297Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329297Z","LastActivityAt":"2023-02-16T05:25:49.329297Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1398,"ScoreAtt":4129,"RankDef":1424,"ScoreDef":40375,"RankSup":0,"ScoreSup":0,"RankTotal":1643,"ScoreTotal":44504,"ID":849100289,"Name":"GalAnonim94","NumVillages":1,"Points":1521,"Rank":1732,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100289","BestRank":1732,"BestRankAt":"2023-02-16T05:25:56.38763Z","MostPoints":1521,"MostPointsAt":"2023-02-16T05:25:56.38763Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329297Z","LastActivityAt":"2023-02-16T05:25:56.38763Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":476,"ScoreAtt":405020,"RankDef":515,"ScoreDef":497289,"RankSup":567,"ScoreSup":120484,"RankTotal":610,"ScoreTotal":1022793,"ID":849100323,"Name":"zucholag","NumVillages":1,"Points":4875,"Rank":1332,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100323","BestRank":1332,"BestRankAt":"2023-02-16T05:25:56.387631Z","MostPoints":4875,"MostPointsAt":"2023-02-16T05:25:49.329298Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329298Z","LastActivityAt":"2023-02-16T05:25:49.329298Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":380,"ScoreAtt":615081,"RankDef":269,"ScoreDef":1389187,"RankSup":497,"ScoreSup":175071,"RankTotal":387,"ScoreTotal":2179339,"ID":849100349,"Name":"Marass","NumVillages":1,"Points":179,"Rank":2317,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100349","BestRank":2317,"BestRankAt":"2023-02-16T05:25:56.387631Z","MostPoints":179,"MostPointsAt":"2023-02-16T05:25:56.387631Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329298Z","LastActivityAt":"2023-02-16T05:25:56.387631Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1489,"ScoreAtt":2425,"RankDef":1249,"ScoreDef":62892,"RankSup":0,"ScoreSup":0,"RankTotal":1520,"ScoreTotal":65317,"ID":849100352,"Name":"cwiek21","NumVillages":2,"Points":7001,"Rank":1209,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100352","BestRank":1209,"BestRankAt":"2023-02-16T05:25:56.387632Z","MostPoints":7001,"MostPointsAt":"2023-02-16T05:25:49.329299Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329299Z","LastActivityAt":"2023-02-16T05:25:49.329299Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1121,"ScoreAtt":16357,"RankDef":1021,"ScoreDef":120625,"RankSup":0,"ScoreSup":0,"RankTotal":1277,"ScoreTotal":136982,"ID":849100354,"Name":"Boćka","NumVillages":8,"Points":76415,"Rank":595,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100354","BestRank":595,"BestRankAt":"2023-02-16T05:25:56.387632Z","MostPoints":76415,"MostPointsAt":"2023-02-16T05:25:56.387632Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329301Z","LastActivityAt":"2023-02-16T05:25:56.387632Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329657Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":838,"ScoreAtt":67666,"RankDef":1476,"ScoreDef":36108,"RankSup":905,"ScoreSup":10793,"RankTotal":1340,"ScoreTotal":114567,"ID":849100383,"Name":"KDJ7","NumVillages":5,"Points":29779,"Rank":822,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100383","BestRank":822,"BestRankAt":"2023-02-16T05:25:56.387633Z","MostPoints":29779,"MostPointsAt":"2023-02-16T05:25:56.387633Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329301Z","LastActivityAt":"2023-02-16T05:25:56.387633Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1715,"ScoreAtt":444,"RankDef":522,"ScoreDef":490132,"RankSup":0,"ScoreSup":0,"RankTotal":847,"ScoreTotal":490576,"ID":849100399,"Name":"huzaj","NumVillages":2,"Points":14418,"Rank":1009,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100399","BestRank":837,"BestRankAt":"2023-02-16T05:25:49.329302Z","MostPoints":27084,"MostPointsAt":"2023-02-16T05:25:49.329302Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329302Z","LastActivityAt":"2023-02-16T05:25:49.329302Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1322,"ScoreAtt":5813,"RankDef":1142,"ScoreDef":86066,"RankSup":560,"ScoreSup":126551,"RankTotal":1110,"ScoreTotal":218430,"ID":849100406,"Name":"SEDZIADRED","NumVillages":6,"Points":35079,"Rank":775,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100406","BestRank":775,"BestRankAt":"2023-02-16T05:25:56.387634Z","MostPoints":35079,"MostPointsAt":"2023-02-16T05:25:56.387634Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329302Z","LastActivityAt":"2023-02-16T05:25:56.387634Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849100416,"Name":"Anakin97","NumVillages":1,"Points":26,"Rank":2809,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100416","BestRank":2809,"BestRankAt":"2023-02-16T05:25:56.387634Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.387635Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.387634Z","LastActivityAt":"2023-02-16T05:25:56.387635Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.388009Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1379,"ScoreAtt":4526,"RankDef":2013,"ScoreDef":4333,"RankSup":0,"ScoreSup":0,"RankTotal":2014,"ScoreTotal":8859,"ID":849100439,"Name":"ƚpiący Szaman","NumVillages":1,"Points":1543,"Rank":1727,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100439","BestRank":1727,"BestRankAt":"2023-02-16T05:25:56.387635Z","MostPoints":1543,"MostPointsAt":"2023-02-16T05:25:49.329303Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329303Z","LastActivityAt":"2023-02-16T05:25:49.329303Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329658Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":862,"ScoreAtt":59523,"RankDef":892,"ScoreDef":171260,"RankSup":1063,"ScoreSup":2583,"RankTotal":1082,"ScoreTotal":233366,"ID":849100463,"Name":"RaphaelMiner69","NumVillages":0,"Points":0,"Rank":3067,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100463","BestRank":3067,"BestRankAt":"2023-02-16T05:25:56.387635Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329304Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329304Z","LastActivityAt":"2023-02-16T05:25:49.329304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":788,"ScoreDef":223069,"RankSup":0,"ScoreSup":0,"RankTotal":1105,"ScoreTotal":223069,"ID":849100496,"Name":"DZ4L4","NumVillages":1,"Points":128,"Rank":2406,"TribeID":1258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100496","BestRank":2406,"BestRankAt":"2023-02-16T05:25:56.387636Z","MostPoints":128,"MostPointsAt":"2023-02-16T05:25:49.329304Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329304Z","LastActivityAt":"2023-02-16T05:25:49.329304Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1265,"ScoreAtt":7335,"RankDef":1629,"ScoreDef":23499,"RankSup":0,"ScoreSup":0,"RankTotal":1759,"ScoreTotal":30834,"ID":849100584,"Name":"Matrix9105","NumVillages":0,"Points":0,"Rank":3068,"TribeID":1494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100584","BestRank":3068,"BestRankAt":"2023-02-16T05:25:56.387636Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329305Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329305Z","LastActivityAt":"2023-02-16T05:25:49.329305Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1227,"ScoreAtt":8960,"RankDef":664,"ScoreDef":309505,"RankSup":0,"ScoreSup":0,"RankTotal":988,"ScoreTotal":318465,"ID":849100611,"Name":"amazonka","NumVillages":1,"Points":4952,"Rank":1328,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100611","BestRank":1328,"BestRankAt":"2023-02-16T05:25:56.387637Z","MostPoints":4952,"MostPointsAt":"2023-02-16T05:25:56.387637Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329305Z","LastActivityAt":"2023-02-16T05:25:56.387637Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1471,"ScoreAtt":2735,"RankDef":1791,"ScoreDef":12550,"RankSup":0,"ScoreSup":0,"RankTotal":1923,"ScoreTotal":15285,"ID":849100612,"Name":"MajkelEs","NumVillages":4,"Points":16852,"Rank":971,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100612","BestRank":970,"BestRankAt":"2023-02-16T05:25:49.329306Z","MostPoints":16852,"MostPointsAt":"2023-02-16T05:25:56.387638Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329306Z","LastActivityAt":"2023-02-16T05:25:56.387638Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":543,"ScoreAtt":291713,"RankDef":273,"ScoreDef":1339341,"RankSup":378,"ScoreSup":352525,"RankTotal":412,"ScoreTotal":1983579,"ID":849100615,"Name":"wojas2302","NumVillages":2,"Points":5507,"Rank":1292,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100615","BestRank":1292,"BestRankAt":"2023-02-16T05:25:56.387638Z","MostPoints":5507,"MostPointsAt":"2023-02-16T05:25:56.387638Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329306Z","LastActivityAt":"2023-02-16T05:25:56.387638Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":922,"ScoreAtt":46266,"RankDef":1287,"ScoreDef":58661,"RankSup":1281,"ScoreSup":44,"RankTotal":1370,"ScoreTotal":104971,"ID":849100656,"Name":"KK95VLV","NumVillages":5,"Points":43659,"Rank":722,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100656","BestRank":722,"BestRankAt":"2023-02-16T05:25:56.387638Z","MostPoints":43659,"MostPointsAt":"2023-02-16T05:25:56.387639Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329307Z","LastActivityAt":"2023-02-16T05:25:56.387639Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1187,"ScoreAtt":11131,"RankDef":906,"ScoreDef":166311,"RankSup":0,"ScoreSup":0,"RankTotal":1192,"ScoreTotal":177442,"ID":849100680,"Name":"TadeuszeQW","NumVillages":1,"Points":6421,"Rank":1237,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100680","BestRank":1237,"BestRankAt":"2023-02-16T05:25:56.387639Z","MostPoints":6421,"MostPointsAt":"2023-02-16T05:25:49.329308Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329307Z","LastActivityAt":"2023-02-16T05:25:49.329308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1661,"ScoreAtt":734,"RankDef":1672,"ScoreDef":20114,"RankSup":0,"ScoreSup":0,"RankTotal":1855,"ScoreTotal":20848,"ID":849100743,"Name":"Developer1994","NumVillages":0,"Points":0,"Rank":3069,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100743","BestRank":3069,"BestRankAt":"2023-02-16T05:25:56.38764Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329308Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329308Z","LastActivityAt":"2023-02-16T05:25:49.329308Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1213,"ScoreAtt":9993,"RankDef":808,"ScoreDef":210497,"RankSup":853,"ScoreSup":16051,"RankTotal":1074,"ScoreTotal":236541,"ID":849100744,"Name":"Totomoose","NumVillages":6,"Points":17836,"Rank":956,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100744","BestRank":956,"BestRankAt":"2023-02-16T05:25:56.38764Z","MostPoints":17836,"MostPointsAt":"2023-02-16T05:25:56.38764Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329309Z","LastActivityAt":"2023-02-16T05:25:56.38764Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1734,"ScoreAtt":344,"RankDef":2342,"ScoreDef":54,"RankSup":1250,"ScoreSup":103,"RankTotal":2328,"ScoreTotal":501,"ID":849100760,"Name":"Majerasz","NumVillages":1,"Points":949,"Rank":1859,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100760","BestRank":1859,"BestRankAt":"2023-02-16T05:25:56.387641Z","MostPoints":949,"MostPointsAt":"2023-02-16T05:25:49.329309Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329309Z","LastActivityAt":"2023-02-16T05:25:49.329309Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1321,"ScoreAtt":5817,"RankDef":2135,"ScoreDef":1898,"RankSup":1201,"ScoreSup":356,"RankTotal":2031,"ScoreTotal":8071,"ID":849100782,"Name":"Lord Pat Gla","NumVillages":2,"Points":6741,"Rank":1222,"TribeID":1261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100782","BestRank":1222,"BestRankAt":"2023-02-16T05:25:56.387641Z","MostPoints":6741,"MostPointsAt":"2023-02-16T05:25:49.32931Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.32931Z","LastActivityAt":"2023-02-16T05:25:49.32931Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":927,"ScoreAtt":44762,"RankDef":1958,"ScoreDef":5807,"RankSup":1181,"ScoreSup":499,"RankTotal":1600,"ScoreTotal":51068,"ID":849100787,"Name":"Drwal 95 PL","NumVillages":3,"Points":10235,"Rank":1077,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100787","BestRank":1077,"BestRankAt":"2023-02-16T05:25:56.387641Z","MostPoints":10235,"MostPointsAt":"2023-02-16T05:25:56.387642Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.32931Z","LastActivityAt":"2023-02-16T05:25:56.387642Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1075,"ScoreAtt":20304,"RankDef":2223,"ScoreDef":744,"RankSup":0,"ScoreSup":0,"RankTotal":1852,"ScoreTotal":21048,"ID":849100796,"Name":"Elzap","NumVillages":3,"Points":18237,"Rank":943,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100796","BestRank":943,"BestRankAt":"2023-02-16T05:25:56.387642Z","MostPoints":18237,"MostPointsAt":"2023-02-16T05:25:56.387642Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329311Z","LastActivityAt":"2023-02-16T05:25:56.387642Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":672,"ScoreAtt":144153,"RankDef":390,"ScoreDef":769844,"RankSup":519,"ScoreSup":153677,"RankTotal":602,"ScoreTotal":1067674,"ID":849100811,"Name":"KOSSARII","NumVillages":1,"Points":2546,"Rank":1570,"TribeID":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100811","BestRank":1570,"BestRankAt":"2023-02-16T05:25:56.387643Z","MostPoints":2546,"MostPointsAt":"2023-02-16T05:25:49.329311Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329311Z","LastActivityAt":"2023-02-16T05:25:49.329312Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1019,"ScoreAtt":27265,"RankDef":529,"ScoreDef":482585,"RankSup":0,"ScoreSup":0,"RankTotal":833,"ScoreTotal":509850,"ID":849100814,"Name":"Aksente","NumVillages":8,"Points":26371,"Rank":848,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100814","BestRank":848,"BestRankAt":"2023-02-16T05:25:56.387643Z","MostPoints":26371,"MostPointsAt":"2023-02-16T05:25:56.387643Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329312Z","LastActivityAt":"2023-02-16T05:25:56.387643Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2211,"ScoreDef":807,"RankSup":0,"ScoreSup":0,"RankTotal":2297,"ScoreTotal":807,"ID":849100815,"Name":"Mercedes450","NumVillages":0,"Points":0,"Rank":3070,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100815","BestRank":3070,"BestRankAt":"2023-02-16T05:25:56.387644Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329313Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329312Z","LastActivityAt":"2023-02-16T05:25:49.329313Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1538,"ScoreDef":30265,"RankSup":0,"ScoreSup":0,"RankTotal":1769,"ScoreTotal":30265,"ID":849100827,"Name":"Ramboq123","NumVillages":0,"Points":0,"Rank":3102,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100827","BestRank":3102,"BestRankAt":"2023-02-16T05:25:49.329313Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329313Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329313Z","LastActivityAt":"2023-02-16T05:25:49.329313Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329663Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849100836,"Name":"patryczekpyrka96","NumVillages":1,"Points":26,"Rank":2810,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100836","BestRank":2810,"BestRankAt":"2023-02-16T05:25:56.387644Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329314Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329314Z","LastActivityAt":"2023-02-16T05:25:49.329314Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":905,"ScoreAtt":49041,"RankDef":2089,"ScoreDef":2649,"RankSup":0,"ScoreSup":0,"RankTotal":1597,"ScoreTotal":51690,"ID":849100877,"Name":"SteveTƂok","NumVillages":8,"Points":50886,"Rank":688,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100877","BestRank":686,"BestRankAt":"2023-02-16T05:25:49.329314Z","MostPoints":50886,"MostPointsAt":"2023-02-16T05:25:49.329314Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329314Z","LastActivityAt":"2023-02-16T05:25:49.329314Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1002,"ScoreAtt":29329,"RankDef":1088,"ScoreDef":97043,"RankSup":1210,"ScoreSup":314,"RankTotal":1305,"ScoreTotal":126686,"ID":849100882,"Name":"Elesar Aragorn","NumVillages":0,"Points":0,"Rank":3071,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100882","BestRank":3071,"BestRankAt":"2023-02-16T05:25:56.387645Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329315Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329315Z","LastActivityAt":"2023-02-16T05:25:49.329315Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1714,"ScoreAtt":458,"RankDef":1684,"ScoreDef":19583,"RankSup":0,"ScoreSup":0,"RankTotal":1869,"ScoreTotal":20041,"ID":849100891,"Name":"SƂowianie","NumVillages":1,"Points":583,"Rank":1974,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100891","BestRank":1974,"BestRankAt":"2023-02-16T05:25:56.387645Z","MostPoints":583,"MostPointsAt":"2023-02-16T05:25:56.387646Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329315Z","LastActivityAt":"2023-02-16T05:25:56.387646Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":362,"ScoreAtt":664187,"RankDef":472,"ScoreDef":565298,"RankSup":1253,"ScoreSup":97,"RankTotal":556,"ScoreTotal":1229582,"ID":849100994,"Name":"Merlic","NumVillages":22,"Points":176079,"Rank":438,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849100994","BestRank":438,"BestRankAt":"2023-02-16T05:25:49.329316Z","MostPoints":176079,"MostPointsAt":"2023-02-16T05:25:49.329316Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.329316Z","LastActivityAt":"2023-02-16T05:25:49.329316Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1258,"ScoreAtt":7521,"RankDef":1584,"ScoreDef":26407,"RankSup":0,"ScoreSup":0,"RankTotal":1728,"ScoreTotal":33928,"ID":849101018,"Name":"sebastianxxx19","NumVillages":1,"Points":2979,"Rank":1516,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101018","BestRank":1516,"BestRankAt":"2023-02-16T05:25:56.387646Z","MostPoints":2979,"MostPointsAt":"2023-02-16T05:25:49.329316Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329316Z","LastActivityAt":"2023-02-16T05:25:49.329317Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":737,"ScoreAtt":108930,"RankDef":1294,"ScoreDef":58021,"RankSup":0,"ScoreSup":0,"RankTotal":1214,"ScoreTotal":166951,"ID":849101029,"Name":"bela831","NumVillages":13,"Points":91949,"Rank":553,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101029","BestRank":553,"BestRankAt":"2023-02-16T05:25:56.387647Z","MostPoints":91949,"MostPointsAt":"2023-02-16T05:25:56.387647Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.329317Z","LastActivityAt":"2023-02-16T05:25:56.387647Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1115,"ScoreAtt":16811,"RankDef":1031,"ScoreDef":115474,"RankSup":604,"ScoreSup":96446,"RankTotal":1090,"ScoreTotal":228731,"ID":849101083,"Name":"PIROTECHNIK","NumVillages":14,"Points":51548,"Rank":684,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101083","BestRank":684,"BestRankAt":"2023-02-16T05:25:56.387648Z","MostPoints":51548,"MostPointsAt":"2023-02-16T05:25:56.387648Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.329317Z","LastActivityAt":"2023-02-16T05:25:56.387648Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":884,"ScoreAtt":54167,"RankDef":838,"ScoreDef":193800,"RankSup":0,"ScoreSup":0,"RankTotal":1054,"ScoreTotal":247967,"ID":849101092,"Name":"brajanacm","NumVillages":5,"Points":31280,"Rank":804,"TribeID":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101092","BestRank":804,"BestRankAt":"2023-02-16T05:25:56.387649Z","MostPoints":31280,"MostPointsAt":"2023-02-16T05:25:56.387649Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329318Z","LastActivityAt":"2023-02-16T05:25:56.387649Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":909,"ScoreAtt":48425,"RankDef":1227,"ScoreDef":67519,"RankSup":0,"ScoreSup":0,"RankTotal":1337,"ScoreTotal":115944,"ID":849101102,"Name":"skuzmi","NumVillages":7,"Points":51644,"Rank":683,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101102","BestRank":683,"BestRankAt":"2023-02-16T05:25:56.387649Z","MostPoints":51644,"MostPointsAt":"2023-02-16T05:25:56.38765Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:56.387649Z","LastActivityAt":"2023-02-16T05:25:56.38765Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1649,"ScoreAtt":793,"RankDef":646,"ScoreDef":328447,"RankSup":1106,"ScoreSup":1626,"RankTotal":976,"ScoreTotal":330866,"ID":849101104,"Name":"beazy","NumVillages":1,"Points":3774,"Rank":1421,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101104","BestRank":1420,"BestRankAt":"2023-02-16T05:25:49.329319Z","MostPoints":3898,"MostPointsAt":"2023-02-16T05:25:49.329319Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329319Z","LastActivityAt":"2023-02-16T05:25:49.329319Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1026,"ScoreAtt":26544,"RankDef":2087,"ScoreDef":2711,"RankSup":1035,"ScoreSup":3243,"RankTotal":1746,"ScoreTotal":32498,"ID":849101108,"Name":"rafisonik2","NumVillages":10,"Points":70499,"Rank":612,"TribeID":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101108","BestRank":612,"BestRankAt":"2023-02-16T05:25:56.387651Z","MostPoints":70499,"MostPointsAt":"2023-02-16T05:25:56.387651Z","MostVillages":10,"MostVillagesAt":"2023-02-16T05:25:49.32932Z","LastActivityAt":"2023-02-16T05:25:56.387651Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":503,"ScoreAtt":348746,"RankDef":338,"ScoreDef":929257,"RankSup":601,"ScoreSup":99044,"RankTotal":522,"ScoreTotal":1377047,"ID":849101116,"Name":"kaban1988","NumVillages":6,"Points":36858,"Rank":763,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101116","BestRank":727,"BestRankAt":"2023-02-16T05:25:49.32932Z","MostPoints":42907,"MostPointsAt":"2023-02-16T05:25:49.32932Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.32932Z","LastActivityAt":"2023-02-16T05:25:49.32932Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1598,"ScoreAtt":1244,"RankDef":825,"ScoreDef":201298,"RankSup":0,"ScoreSup":0,"RankTotal":1135,"ScoreTotal":202542,"ID":849101132,"Name":"Maciek2001PL","NumVillages":0,"Points":0,"Rank":3072,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101132","BestRank":3072,"BestRankAt":"2023-02-16T05:25:56.387652Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329321Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329321Z","LastActivityAt":"2023-02-16T05:25:49.329321Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1710,"ScoreDef":17634,"RankSup":0,"ScoreSup":0,"RankTotal":1888,"ScoreTotal":17634,"ID":849101135,"Name":"DZIMMMI","NumVillages":1,"Points":9816,"Rank":1085,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101135","BestRank":1085,"BestRankAt":"2023-02-16T05:25:56.387653Z","MostPoints":9816,"MostPointsAt":"2023-02-16T05:25:56.387653Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329321Z","LastActivityAt":"2023-02-16T05:25:56.387653Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1632,"ScoreAtt":893,"RankDef":2194,"ScoreDef":1080,"RankSup":1383,"ScoreSup":2,"RankTotal":2231,"ScoreTotal":1975,"ID":849101144,"Name":"Pascal277","NumVillages":3,"Points":17120,"Rank":966,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101144","BestRank":966,"BestRankAt":"2023-02-16T05:25:56.387653Z","MostPoints":17120,"MostPointsAt":"2023-02-16T05:25:56.387653Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329322Z","LastActivityAt":"2023-02-16T05:25:56.387654Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1299,"ScoreAtt":6502,"RankDef":908,"ScoreDef":165276,"RankSup":918,"ScoreSup":9830,"RankTotal":1183,"ScoreTotal":181608,"ID":849101148,"Name":"Herom","NumVillages":8,"Points":62201,"Rank":646,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101148","BestRank":646,"BestRankAt":"2023-02-16T05:25:56.387654Z","MostPoints":62201,"MostPointsAt":"2023-02-16T05:25:56.387654Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329322Z","LastActivityAt":"2023-02-16T05:25:56.387654Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":627,"ScoreAtt":183618,"RankDef":1283,"ScoreDef":58961,"RankSup":1037,"ScoreSup":3102,"RankTotal":1059,"ScoreTotal":245681,"ID":849101162,"Name":"Transporter77","NumVillages":27,"Points":130421,"Rank":492,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101162","BestRank":492,"BestRankAt":"2023-02-16T05:25:56.387655Z","MostPoints":130421,"MostPointsAt":"2023-02-16T05:25:56.387655Z","MostVillages":27,"MostVillagesAt":"2023-02-16T05:25:49.329323Z","LastActivityAt":"2023-02-16T05:25:56.387655Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1520,"ScoreAtt":2112,"RankDef":2215,"ScoreDef":790,"RankSup":0,"ScoreSup":0,"RankTotal":2193,"ScoreTotal":2902,"ID":849101177,"Name":"Bunkier u Mariana","NumVillages":1,"Points":8264,"Rank":1142,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101177","BestRank":1142,"BestRankAt":"2023-02-16T05:25:56.387655Z","MostPoints":8264,"MostPointsAt":"2023-02-16T05:25:49.329324Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329324Z","LastActivityAt":"2023-02-16T05:25:49.329324Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1037,"ScoreAtt":24677,"RankDef":650,"ScoreDef":325425,"RankSup":961,"ScoreSup":6854,"RankTotal":953,"ScoreTotal":356956,"ID":849101186,"Name":"Karki98","NumVillages":1,"Points":340,"Rank":2116,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101186","BestRank":2116,"BestRankAt":"2023-02-16T05:25:56.387656Z","MostPoints":340,"MostPointsAt":"2023-02-16T05:25:56.387656Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329324Z","LastActivityAt":"2023-02-16T05:25:56.387656Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1289,"ScoreAtt":6628,"RankDef":1269,"ScoreDef":60298,"RankSup":622,"ScoreSup":86655,"RankTotal":1239,"ScoreTotal":153581,"ID":849101205,"Name":"Adixkod","NumVillages":18,"Points":84637,"Rank":573,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101205","BestRank":573,"BestRankAt":"2023-02-16T05:25:56.387657Z","MostPoints":84637,"MostPointsAt":"2023-02-16T05:25:56.387657Z","MostVillages":18,"MostVillagesAt":"2023-02-16T05:25:56.387657Z","LastActivityAt":"2023-02-16T05:25:56.387657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1268,"ScoreAtt":7197,"RankDef":1132,"ScoreDef":87741,"RankSup":0,"ScoreSup":0,"RankTotal":1404,"ScoreTotal":94938,"ID":849101224,"Name":"Max2255","NumVillages":1,"Points":975,"Rank":1854,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101224","BestRank":1854,"BestRankAt":"2023-02-16T05:25:56.387657Z","MostPoints":975,"MostPointsAt":"2023-02-16T05:25:56.387657Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329325Z","LastActivityAt":"2023-02-16T05:25:56.387657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1604,"ScoreAtt":1188,"RankDef":1782,"ScoreDef":13355,"RankSup":0,"ScoreSup":0,"RankTotal":1929,"ScoreTotal":14543,"ID":849101232,"Name":"Szuwi","NumVillages":0,"Points":0,"Rank":3073,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101232","BestRank":3073,"BestRankAt":"2023-02-16T05:25:56.387658Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329326Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329326Z","LastActivityAt":"2023-02-16T05:25:49.329326Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":972,"ScoreAtt":34436,"RankDef":920,"ScoreDef":157598,"RankSup":1157,"ScoreSup":866,"RankTotal":1154,"ScoreTotal":192900,"ID":849101248,"Name":"kaatbus","NumVillages":0,"Points":0,"Rank":3074,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101248","BestRank":3074,"BestRankAt":"2023-02-16T05:25:56.387659Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329326Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329326Z","LastActivityAt":"2023-02-16T05:25:49.329327Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1707,"ScoreAtt":492,"RankDef":2053,"ScoreDef":3441,"RankSup":0,"ScoreSup":0,"RankTotal":2158,"ScoreTotal":3933,"ID":849101268,"Name":"kaga","NumVillages":13,"Points":66640,"Rank":628,"TribeID":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101268","BestRank":628,"BestRankAt":"2023-02-16T05:25:56.387659Z","MostPoints":66640,"MostPointsAt":"2023-02-16T05:25:56.387659Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.329327Z","LastActivityAt":"2023-02-16T05:25:56.387659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1724,"ScoreAtt":382,"RankDef":1506,"ScoreDef":32896,"RankSup":743,"ScoreSup":37312,"RankTotal":1497,"ScoreTotal":70590,"ID":849101276,"Name":"Witololo","NumVillages":5,"Points":13604,"Rank":1020,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101276","BestRank":1020,"BestRankAt":"2023-02-16T05:25:56.38766Z","MostPoints":13604,"MostPointsAt":"2023-02-16T05:25:56.38766Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329327Z","LastActivityAt":"2023-02-16T05:25:56.38766Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1953,"ScoreDef":5898,"RankSup":0,"ScoreSup":0,"RankTotal":2088,"ScoreTotal":5898,"ID":849101284,"Name":"TraktorWiktor","NumVillages":1,"Points":334,"Rank":2123,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101284","BestRank":2123,"BestRankAt":"2023-02-16T05:25:56.387661Z","MostPoints":334,"MostPointsAt":"2023-02-16T05:25:49.329328Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329328Z","LastActivityAt":"2023-02-16T05:25:49.329328Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1364,"ScoreAtt":4755,"RankDef":1127,"ScoreDef":88713,"RankSup":0,"ScoreSup":0,"RankTotal":1413,"ScoreTotal":93468,"ID":849101291,"Name":"wiras123","NumVillages":0,"Points":0,"Rank":3075,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101291","BestRank":3075,"BestRankAt":"2023-02-16T05:25:56.387661Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329329Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329329Z","LastActivityAt":"2023-02-16T05:25:49.329329Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1646,"ScoreAtt":800,"RankDef":1400,"ScoreDef":43403,"RankSup":0,"ScoreSup":0,"RankTotal":1644,"ScoreTotal":44203,"ID":849101293,"Name":"CatsDad","NumVillages":2,"Points":8804,"Rank":1119,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101293","BestRank":1119,"BestRankAt":"2023-02-16T05:25:56.387662Z","MostPoints":8804,"MostPointsAt":"2023-02-16T05:25:56.387662Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329329Z","LastActivityAt":"2023-02-16T05:25:56.387662Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1450,"ScoreDef":38129,"RankSup":1041,"ScoreSup":3009,"RankTotal":1665,"ScoreTotal":41138,"ID":849101309,"Name":"Dawideq102","NumVillages":7,"Points":27836,"Rank":834,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101309","BestRank":832,"BestRankAt":"2023-02-16T05:25:49.32933Z","MostPoints":27836,"MostPointsAt":"2023-02-16T05:25:49.32933Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.32933Z","LastActivityAt":"2023-02-16T05:25:49.32933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1391,"ScoreAtt":4238,"RankDef":631,"ScoreDef":343399,"RankSup":0,"ScoreSup":0,"RankTotal":961,"ScoreTotal":347637,"ID":849101311,"Name":"Adrian11234595","NumVillages":1,"Points":4075,"Rank":1395,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101311","BestRank":1395,"BestRankAt":"2023-02-16T05:25:56.387663Z","MostPoints":4075,"MostPointsAt":"2023-02-16T05:25:49.32933Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32933Z","LastActivityAt":"2023-02-16T05:25:49.32933Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":880,"ScoreAtt":55172,"RankDef":500,"ScoreDef":521348,"RankSup":0,"ScoreSup":0,"RankTotal":786,"ScoreTotal":576520,"ID":849101377,"Name":"HashandTag","NumVillages":2,"Points":10802,"Rank":1062,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101377","BestRank":1061,"BestRankAt":"2023-02-16T05:25:49.329331Z","MostPoints":10802,"MostPointsAt":"2023-02-16T05:25:49.329331Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329331Z","LastActivityAt":"2023-02-16T05:25:49.329331Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":651,"ScoreAtt":157607,"RankDef":484,"ScoreDef":553244,"RankSup":230,"ScoreSup":768201,"RankTotal":502,"ScoreTotal":1479052,"ID":849101378,"Name":"KieƂba","NumVillages":12,"Points":99113,"Rank":541,"TribeID":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101378","BestRank":541,"BestRankAt":"2023-02-16T05:25:56.387664Z","MostPoints":99113,"MostPointsAt":"2023-02-16T05:25:56.387664Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329331Z","LastActivityAt":"2023-02-16T05:25:56.387664Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":975,"ScoreAtt":33988,"RankDef":1443,"ScoreDef":38743,"RankSup":0,"ScoreSup":0,"RankTotal":1484,"ScoreTotal":72731,"ID":849101382,"Name":"ewaa","NumVillages":2,"Points":9872,"Rank":1083,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101382","BestRank":1083,"BestRankAt":"2023-02-16T05:25:56.387665Z","MostPoints":9872,"MostPointsAt":"2023-02-16T05:25:49.329332Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329332Z","LastActivityAt":"2023-02-16T05:25:49.329332Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1574,"ScoreAtt":1471,"RankDef":984,"ScoreDef":131129,"RankSup":1048,"ScoreSup":2835,"RankTotal":1281,"ScoreTotal":135435,"ID":849101391,"Name":"dark.lady","NumVillages":0,"Points":0,"Rank":3076,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101391","BestRank":3076,"BestRankAt":"2023-02-16T05:25:56.387665Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329333Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329332Z","LastActivityAt":"2023-02-16T05:25:49.329333Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849101396,"Name":"Robert Nowakowski Jan","NumVillages":1,"Points":26,"Rank":2811,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101396","BestRank":2811,"BestRankAt":"2023-02-16T05:25:56.387666Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329333Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329333Z","LastActivityAt":"2023-02-16T05:25:49.329333Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849101403,"Name":"sabaciorz","NumVillages":1,"Points":26,"Rank":2812,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101403","BestRank":2812,"BestRankAt":"2023-02-16T05:25:56.387667Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329334Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329334Z","LastActivityAt":"2023-02-16T05:25:49.329334Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1493,"ScoreAtt":2412,"RankDef":1989,"ScoreDef":5064,"RankSup":0,"ScoreSup":0,"RankTotal":2048,"ScoreTotal":7476,"ID":849101409,"Name":"StachodĆŒons93","NumVillages":5,"Points":15538,"Rank":990,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101409","BestRank":989,"BestRankAt":"2023-02-16T05:25:49.329334Z","MostPoints":15538,"MostPointsAt":"2023-02-16T05:25:49.329334Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329334Z","LastActivityAt":"2023-02-16T05:25:49.329334Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2183,"ScoreDef":1201,"RankSup":0,"ScoreSup":0,"RankTotal":2283,"ScoreTotal":1201,"ID":849101443,"Name":"Specjalista007","NumVillages":0,"Points":0,"Rank":3077,"TribeID":1372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101443","BestRank":3077,"BestRankAt":"2023-02-16T05:25:56.387668Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329335Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329335Z","LastActivityAt":"2023-02-16T05:25:49.329335Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1157,"ScoreAtt":12984,"RankDef":1572,"ScoreDef":27759,"RankSup":1354,"ScoreSup":5,"RankTotal":1669,"ScoreTotal":40748,"ID":849101526,"Name":"qbaa.d","NumVillages":3,"Points":10530,"Rank":1070,"TribeID":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101526","BestRank":1070,"BestRankAt":"2023-02-16T05:25:56.387668Z","MostPoints":10530,"MostPointsAt":"2023-02-16T05:25:49.329335Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329335Z","LastActivityAt":"2023-02-16T05:25:49.329335Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1732,"ScoreAtt":349,"RankDef":1472,"ScoreDef":36242,"RankSup":0,"ScoreSup":0,"RankTotal":1709,"ScoreTotal":36591,"ID":849101578,"Name":"FIFI121212","NumVillages":1,"Points":1017,"Rank":1843,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101578","BestRank":1843,"BestRankAt":"2023-02-16T05:25:56.387669Z","MostPoints":1017,"MostPointsAt":"2023-02-16T05:25:49.329336Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329336Z","LastActivityAt":"2023-02-16T05:25:49.329336Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1422,"ScoreAtt":3582,"RankDef":831,"ScoreDef":197168,"RankSup":485,"ScoreSup":185681,"RankTotal":931,"ScoreTotal":386431,"ID":849101579,"Name":"Duszkowsky","NumVillages":1,"Points":5736,"Rank":1277,"TribeID":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101579","BestRank":1277,"BestRankAt":"2023-02-16T05:25:56.387669Z","MostPoints":5736,"MostPointsAt":"2023-02-16T05:25:56.387669Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329336Z","LastActivityAt":"2023-02-16T05:25:56.38767Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":706,"ScoreAtt":123833,"RankDef":1183,"ScoreDef":76122,"RankSup":685,"ScoreSup":55880,"RankTotal":1049,"ScoreTotal":255835,"ID":849101580,"Name":"michy","NumVillages":0,"Points":0,"Rank":3078,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101580","BestRank":3078,"BestRankAt":"2023-02-16T05:25:56.38767Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329337Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329337Z","LastActivityAt":"2023-02-16T05:25:49.329337Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1736,"ScoreAtt":341,"RankDef":2235,"ScoreDef":606,"RankSup":0,"ScoreSup":0,"RankTotal":2288,"ScoreTotal":947,"ID":849101581,"Name":"Siepacz","NumVillages":1,"Points":4233,"Rank":1380,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101581","BestRank":1380,"BestRankAt":"2023-02-16T05:25:56.387671Z","MostPoints":4233,"MostPointsAt":"2023-02-16T05:25:56.387671Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329337Z","LastActivityAt":"2023-02-16T05:25:56.387671Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":967,"ScoreAtt":35840,"RankDef":1091,"ScoreDef":95569,"RankSup":522,"ScoreSup":149913,"RankTotal":1023,"ScoreTotal":281322,"ID":849101604,"Name":"konradboss","NumVillages":14,"Points":76085,"Rank":596,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101604","BestRank":596,"BestRankAt":"2023-02-16T05:25:56.387671Z","MostPoints":76085,"MostPointsAt":"2023-02-16T05:25:56.387671Z","MostVillages":14,"MostVillagesAt":"2023-02-16T05:25:49.329338Z","LastActivityAt":"2023-02-16T05:25:56.387671Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2007,"ScoreDef":4462,"RankSup":0,"ScoreSup":0,"RankTotal":2139,"ScoreTotal":4462,"ID":849101646,"Name":"tomekjasko","NumVillages":1,"Points":144,"Rank":2359,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101646","BestRank":2359,"BestRankAt":"2023-02-16T05:25:56.387672Z","MostPoints":144,"MostPointsAt":"2023-02-16T05:25:49.329339Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329339Z","LastActivityAt":"2023-02-16T05:25:49.329339Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1408,"ScoreAtt":3923,"RankDef":2360,"ScoreDef":32,"RankSup":1142,"ScoreSup":1041,"RankTotal":2123,"ScoreTotal":4996,"ID":849101647,"Name":"Ketarsky","NumVillages":6,"Points":34698,"Rank":776,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101647","BestRank":776,"BestRankAt":"2023-02-16T05:25:56.387672Z","MostPoints":34698,"MostPointsAt":"2023-02-16T05:25:56.387673Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329339Z","LastActivityAt":"2023-02-16T05:25:56.387673Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":783,"ScoreAtt":87038,"RankDef":1494,"ScoreDef":34147,"RankSup":930,"ScoreSup":9088,"RankTotal":1296,"ScoreTotal":130273,"ID":849101652,"Name":"lidxoxo","NumVillages":12,"Points":77382,"Rank":591,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101652","BestRank":591,"BestRankAt":"2023-02-16T05:25:56.387673Z","MostPoints":77382,"MostPointsAt":"2023-02-16T05:25:49.32934Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.32934Z","LastActivityAt":"2023-02-16T05:25:49.32934Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849101656,"Name":"Kilmonn","NumVillages":1,"Points":72,"Rank":2500,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101656","BestRank":2500,"BestRankAt":"2023-02-16T05:25:56.387674Z","MostPoints":72,"MostPointsAt":"2023-02-16T05:25:49.32934Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32934Z","LastActivityAt":"2023-02-16T05:25:49.32934Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1167,"ScoreAtt":12230,"RankDef":1679,"ScoreDef":19823,"RankSup":1072,"ScoreSup":2359,"RankTotal":1726,"ScoreTotal":34412,"ID":849101674,"Name":"mateusz2288","NumVillages":7,"Points":31706,"Rank":800,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101674","BestRank":800,"BestRankAt":"2023-02-16T05:25:56.387674Z","MostPoints":31706,"MostPointsAt":"2023-02-16T05:25:56.387674Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329341Z","LastActivityAt":"2023-02-16T05:25:56.387674Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1280,"ScoreAtt":6859,"RankDef":2197,"ScoreDef":1025,"RankSup":922,"ScoreSup":9583,"RankTotal":1891,"ScoreTotal":17467,"ID":849101694,"Name":"Sir Paxx","NumVillages":5,"Points":30647,"Rank":816,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101694","BestRank":814,"BestRankAt":"2023-02-16T05:25:49.329341Z","MostPoints":30647,"MostPointsAt":"2023-02-16T05:25:56.387675Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329341Z","LastActivityAt":"2023-02-16T05:25:56.387675Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2247,"ScoreDef":522,"RankSup":1073,"ScoreSup":2330,"RankTotal":2197,"ScoreTotal":2852,"ID":849101771,"Name":"franka","NumVillages":4,"Points":9680,"Rank":1095,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101771","BestRank":1095,"BestRankAt":"2023-02-16T05:25:56.387675Z","MostPoints":9680,"MostPointsAt":"2023-02-16T05:25:49.329342Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329342Z","LastActivityAt":"2023-02-16T05:25:49.329342Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1316,"ScoreAtt":5900,"RankDef":1345,"ScoreDef":51188,"RankSup":0,"ScoreSup":0,"RankTotal":1566,"ScoreTotal":57088,"ID":849101814,"Name":"czorny998","NumVillages":2,"Points":9020,"Rank":1117,"TribeID":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101814","BestRank":1072,"BestRankAt":"2023-02-16T05:25:49.329342Z","MostPoints":10530,"MostPointsAt":"2023-02-16T05:25:49.329342Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329342Z","LastActivityAt":"2023-02-16T05:25:49.329343Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":566,"ScoreAtt":255534,"RankDef":1193,"ScoreDef":73557,"RankSup":0,"ScoreSup":0,"RankTotal":978,"ScoreTotal":329091,"ID":849101845,"Name":"Fiko","NumVillages":24,"Points":180393,"Rank":435,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101845","BestRank":435,"BestRankAt":"2023-02-16T05:25:56.387676Z","MostPoints":180393,"MostPointsAt":"2023-02-16T05:25:56.387677Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.329343Z","LastActivityAt":"2023-02-16T05:25:56.387677Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1109,"ScoreAtt":17249,"RankDef":1686,"ScoreDef":19476,"RankSup":1246,"ScoreSup":125,"RankTotal":1706,"ScoreTotal":36850,"ID":849101871,"Name":"King2000","NumVillages":1,"Points":296,"Rank":2158,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101871","BestRank":2158,"BestRankAt":"2023-02-16T05:25:56.387677Z","MostPoints":296,"MostPointsAt":"2023-02-16T05:25:49.329344Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329344Z","LastActivityAt":"2023-02-16T05:25:49.329344Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":679,"ScoreAtt":141008,"RankDef":912,"ScoreDef":160854,"RankSup":605,"ScoreSup":96356,"RankTotal":919,"ScoreTotal":398218,"ID":849101881,"Name":"Lucyfer1999","NumVillages":11,"Points":65038,"Rank":635,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101881","BestRank":635,"BestRankAt":"2023-02-16T05:25:56.387678Z","MostPoints":65038,"MostPointsAt":"2023-02-16T05:25:56.387678Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329344Z","LastActivityAt":"2023-02-16T05:25:56.387678Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":910,"ScoreAtt":48199,"RankDef":1222,"ScoreDef":68312,"RankSup":1189,"ScoreSup":441,"RankTotal":1334,"ScoreTotal":116952,"ID":849101884,"Name":"Patrycja412","NumVillages":7,"Points":45713,"Rank":713,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101884","BestRank":713,"BestRankAt":"2023-02-16T05:25:56.387678Z","MostPoints":45713,"MostPointsAt":"2023-02-16T05:25:56.387679Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329345Z","LastActivityAt":"2023-02-16T05:25:56.387679Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":806,"ScoreAtt":77389,"RankDef":213,"ScoreDef":1791816,"RankSup":513,"ScoreSup":163772,"RankTotal":405,"ScoreTotal":2032977,"ID":849101889,"Name":"5spajk5","NumVillages":1,"Points":3274,"Rank":1483,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101889","BestRank":1453,"BestRankAt":"2023-02-16T05:25:49.329345Z","MostPoints":3591,"MostPointsAt":"2023-02-16T05:25:49.329345Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329345Z","LastActivityAt":"2023-02-16T05:25:49.329345Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":837,"ScoreAtt":68265,"RankDef":1407,"ScoreDef":42366,"RankSup":0,"ScoreSup":0,"RankTotal":1352,"ScoreTotal":110631,"ID":849101893,"Name":"kostunio","NumVillages":6,"Points":30906,"Rank":813,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101893","BestRank":809,"BestRankAt":"2023-02-16T05:25:49.329346Z","MostPoints":30906,"MostPointsAt":"2023-02-16T05:25:56.38768Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329346Z","LastActivityAt":"2023-02-16T05:25:56.38768Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":847,"ScoreAtt":64553,"RankDef":1941,"ScoreDef":6339,"RankSup":0,"ScoreSup":0,"RankTotal":1494,"ScoreTotal":70892,"ID":849101945,"Name":"Oawek","NumVillages":8,"Points":36612,"Rank":765,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101945","BestRank":765,"BestRankAt":"2023-02-16T05:25:56.38768Z","MostPoints":36612,"MostPointsAt":"2023-02-16T05:25:56.38768Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329346Z","LastActivityAt":"2023-02-16T05:25:56.38768Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1385,"ScoreAtt":4287,"RankDef":1919,"ScoreDef":6924,"RankSup":1020,"ScoreSup":3867,"RankTotal":1924,"ScoreTotal":15078,"ID":849101947,"Name":"LokiValhallen","NumVillages":1,"Points":4979,"Rank":1326,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101947","BestRank":1326,"BestRankAt":"2023-02-16T05:25:56.387681Z","MostPoints":4979,"MostPointsAt":"2023-02-16T05:25:49.329347Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329347Z","LastActivityAt":"2023-02-16T05:25:49.329347Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":823,"ScoreAtt":71365,"RankDef":1968,"ScoreDef":5625,"RankSup":1182,"ScoreSup":498,"RankTotal":1470,"ScoreTotal":77488,"ID":849101962,"Name":"Babidi","NumVillages":8,"Points":46420,"Rank":707,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849101962","BestRank":707,"BestRankAt":"2023-02-16T05:25:56.387681Z","MostPoints":46420,"MostPointsAt":"2023-02-16T05:25:56.387682Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329347Z","LastActivityAt":"2023-02-16T05:25:56.387682Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2370,"ScoreDef":26,"RankSup":0,"ScoreSup":0,"RankTotal":2469,"ScoreTotal":26,"ID":849102037,"Name":"Lord tomekr","NumVillages":0,"Points":0,"Rank":3079,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102037","BestRank":3079,"BestRankAt":"2023-02-16T05:25:56.387682Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329348Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329348Z","LastActivityAt":"2023-02-16T05:25:49.329348Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849102047,"Name":"bartoszkar","NumVillages":0,"Points":0,"Rank":3080,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102047","BestRank":3080,"BestRankAt":"2023-02-16T05:25:56.387683Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329349Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329348Z","LastActivityAt":"2023-02-16T05:25:49.329349Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":439,"ScoreAtt":471294,"RankDef":225,"ScoreDef":1695323,"RankSup":288,"ScoreSup":565365,"RankTotal":323,"ScoreTotal":2731982,"ID":849102068,"Name":"TribalMaster","NumVillages":22,"Points":136616,"Rank":483,"TribeID":862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102068","BestRank":483,"BestRankAt":"2023-02-16T05:25:56.387683Z","MostPoints":136616,"MostPointsAt":"2023-02-16T05:25:56.387684Z","MostVillages":22,"MostVillagesAt":"2023-02-16T05:25:49.329349Z","LastActivityAt":"2023-02-16T05:25:56.387684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":409,"ScoreAtt":562722,"RankDef":454,"ScoreDef":608887,"RankSup":296,"ScoreSup":542106,"RankTotal":460,"ScoreTotal":1713715,"ID":849102092,"Name":"slovik-","NumVillages":24,"Points":155146,"Rank":460,"TribeID":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102092","BestRank":457,"BestRankAt":"2023-02-16T05:25:49.32935Z","MostPoints":155146,"MostPointsAt":"2023-02-16T05:25:56.387684Z","MostVillages":24,"MostVillagesAt":"2023-02-16T05:25:49.32935Z","LastActivityAt":"2023-02-16T05:25:56.387684Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":957,"ScoreAtt":37853,"RankDef":2108,"ScoreDef":2328,"RankSup":0,"ScoreSup":0,"RankTotal":1677,"ScoreTotal":40181,"ID":849102094,"Name":"PavoreAni","NumVillages":3,"Points":15571,"Rank":988,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102094","BestRank":988,"BestRankAt":"2023-02-16T05:25:56.387685Z","MostPoints":15571,"MostPointsAt":"2023-02-16T05:25:56.387685Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.32935Z","LastActivityAt":"2023-02-16T05:25:56.387685Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":712,"ScoreAtt":118638,"RankDef":1469,"ScoreDef":36300,"RankSup":952,"ScoreSup":7392,"RankTotal":1223,"ScoreTotal":162330,"ID":849102108,"Name":"Goveso","NumVillages":13,"Points":82399,"Rank":576,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102108","BestRank":576,"BestRankAt":"2023-02-16T05:25:56.387685Z","MostPoints":82399,"MostPointsAt":"2023-02-16T05:25:56.387685Z","MostVillages":13,"MostVillagesAt":"2023-02-16T05:25:49.329351Z","LastActivityAt":"2023-02-16T05:25:56.387686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1303,"ScoreAtt":6345,"RankDef":2111,"ScoreDef":2253,"RankSup":1360,"ScoreSup":4,"RankTotal":2021,"ScoreTotal":8602,"ID":849102143,"Name":"Kacpro3310","NumVillages":1,"Points":6488,"Rank":1233,"TribeID":1163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102143","BestRank":1233,"BestRankAt":"2023-02-16T05:25:56.387686Z","MostPoints":6488,"MostPointsAt":"2023-02-16T05:25:56.387686Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329351Z","LastActivityAt":"2023-02-16T05:25:56.387686Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1571,"ScoreAtt":1494,"RankDef":2218,"ScoreDef":756,"RankSup":0,"ScoreSup":0,"RankTotal":2214,"ScoreTotal":2250,"ID":849102150,"Name":"DewTour","NumVillages":6,"Points":13758,"Rank":1016,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102150","BestRank":1016,"BestRankAt":"2023-02-16T05:25:49.329352Z","MostPoints":13758,"MostPointsAt":"2023-02-16T05:25:56.387687Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329352Z","LastActivityAt":"2023-02-16T05:25:56.387687Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2463,"ScoreDef":5,"RankSup":0,"ScoreSup":0,"RankTotal":2540,"ScoreTotal":5,"ID":849102302,"Name":"dextermorgan","NumVillages":0,"Points":0,"Rank":3081,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102302","BestRank":3081,"BestRankAt":"2023-02-16T05:25:56.387687Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329352Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329352Z","LastActivityAt":"2023-02-16T05:25:49.329353Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1035,"ScoreAtt":25002,"RankDef":1931,"ScoreDef":6532,"RankSup":0,"ScoreSup":0,"RankTotal":1754,"ScoreTotal":31534,"ID":849102336,"Name":"Albus Lepus","NumVillages":12,"Points":59739,"Rank":655,"TribeID":1588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102336","BestRank":655,"BestRankAt":"2023-02-16T05:25:49.329353Z","MostPoints":59739,"MostPointsAt":"2023-02-16T05:25:49.329353Z","MostVillages":12,"MostVillagesAt":"2023-02-16T05:25:49.329353Z","LastActivityAt":"2023-02-16T05:25:49.329353Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":777,"ScoreAtt":88534,"RankDef":829,"ScoreDef":198452,"RankSup":913,"ScoreSup":10205,"RankTotal":1007,"ScoreTotal":297191,"ID":849102464,"Name":"rafik9797","NumVillages":2,"Points":16467,"Rank":977,"TribeID":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102464","BestRank":977,"BestRankAt":"2023-02-16T05:25:56.387688Z","MostPoints":16467,"MostPointsAt":"2023-02-16T05:25:56.387688Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329354Z","LastActivityAt":"2023-02-16T05:25:56.387688Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":935,"ScoreAtt":43138,"RankDef":2133,"ScoreDef":1936,"RankSup":1173,"ScoreSup":607,"RankTotal":1637,"ScoreTotal":45681,"ID":849102480,"Name":"Karyagin","NumVillages":8,"Points":58660,"Rank":661,"TribeID":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102480","BestRank":661,"BestRankAt":"2023-02-16T05:25:56.387689Z","MostPoints":58660,"MostPointsAt":"2023-02-16T05:25:56.387689Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329354Z","LastActivityAt":"2023-02-16T05:25:56.387689Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849102491,"Name":"pawelec123","NumVillages":0,"Points":0,"Rank":3082,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102491","BestRank":3082,"BestRankAt":"2023-02-16T05:25:56.38769Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329355Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329355Z","LastActivityAt":"2023-02-16T05:25:49.329355Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2470,"ScoreDef":3,"RankSup":0,"ScoreSup":0,"RankTotal":2547,"ScoreTotal":3,"ID":849102505,"Name":"skubana123","NumVillages":0,"Points":0,"Rank":3083,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102505","BestRank":3083,"BestRankAt":"2023-02-16T05:25:56.38769Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329355Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329355Z","LastActivityAt":"2023-02-16T05:25:49.329355Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":872,"ScoreAtt":57070,"RankDef":606,"ScoreDef":373291,"RankSup":0,"ScoreSup":0,"RankTotal":886,"ScoreTotal":430361,"ID":849102573,"Name":"Chispet92","NumVillages":8,"Points":42372,"Rank":729,"TribeID":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102573","BestRank":729,"BestRankAt":"2023-02-16T05:25:56.387691Z","MostPoints":42372,"MostPointsAt":"2023-02-16T05:25:56.387691Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329356Z","LastActivityAt":"2023-02-16T05:25:56.387691Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849102833,"Name":"polska222","NumVillages":1,"Points":251,"Rank":2207,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102833","BestRank":2207,"BestRankAt":"2023-02-16T05:25:56.387691Z","MostPoints":251,"MostPointsAt":"2023-02-16T05:25:56.387692Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329356Z","LastActivityAt":"2023-02-16T05:25:56.387692Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1804,"ScoreAtt":172,"RankDef":2410,"ScoreDef":12,"RankSup":0,"ScoreSup":0,"RankTotal":2385,"ScoreTotal":184,"ID":849102985,"Name":"szaszek94","NumVillages":1,"Points":1673,"Rank":1705,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849102985","BestRank":1705,"BestRankAt":"2023-02-16T05:25:56.387692Z","MostPoints":1673,"MostPointsAt":"2023-02-16T05:25:56.387692Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329357Z","LastActivityAt":"2023-02-16T05:25:56.387692Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103113,"Name":"thor13","NumVillages":1,"Points":398,"Rank":2074,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103113","BestRank":2074,"BestRankAt":"2023-02-16T05:25:56.387693Z","MostPoints":398,"MostPointsAt":"2023-02-16T05:25:56.387693Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329357Z","LastActivityAt":"2023-02-16T05:25:56.387693Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1298,"ScoreAtt":6531,"RankDef":1475,"ScoreDef":36219,"RankSup":893,"ScoreSup":12041,"RankTotal":1581,"ScoreTotal":54791,"ID":849103148,"Name":"Trollsonix","NumVillages":4,"Points":21840,"Rank":893,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103148","BestRank":893,"BestRankAt":"2023-02-16T05:25:56.387693Z","MostPoints":21840,"MostPointsAt":"2023-02-16T05:25:56.387694Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329358Z","LastActivityAt":"2023-02-16T05:25:56.387694Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1654,"ScoreAtt":767,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2304,"ScoreTotal":767,"ID":849103156,"Name":"Pirdek999","NumVillages":1,"Points":2709,"Rank":1553,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103156","BestRank":1553,"BestRankAt":"2023-02-16T05:25:56.387694Z","MostPoints":2709,"MostPointsAt":"2023-02-16T05:25:56.387694Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329358Z","LastActivityAt":"2023-02-16T05:25:56.387694Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1554,"ScoreAtt":1716,"RankDef":2207,"ScoreDef":848,"RankSup":0,"ScoreSup":0,"RankTotal":2204,"ScoreTotal":2564,"ID":849103237,"Name":"Trzepak7","NumVillages":1,"Points":249,"Rank":2211,"TribeID":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103237","BestRank":2211,"BestRankAt":"2023-02-16T05:25:56.387695Z","MostPoints":249,"MostPointsAt":"2023-02-16T05:25:49.329359Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329359Z","LastActivityAt":"2023-02-16T05:25:49.329359Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1244,"ScoreAtt":8111,"RankDef":540,"ScoreDef":461971,"RankSup":0,"ScoreSup":0,"RankTotal":862,"ScoreTotal":470082,"ID":849103456,"Name":"Cukiernia RĂłĆŒa","NumVillages":0,"Points":0,"Rank":3084,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103456","BestRank":3084,"BestRankAt":"2023-02-16T05:25:56.387695Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32936Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32936Z","LastActivityAt":"2023-02-16T05:25:49.32936Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103570,"Name":"henior123","NumVillages":0,"Points":0,"Rank":3085,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103570","BestRank":3085,"BestRankAt":"2023-02-16T05:25:56.387696Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32936Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32936Z","LastActivityAt":"2023-02-16T05:25:49.32936Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2393,"ScoreDef":16,"RankSup":0,"ScoreSup":0,"RankTotal":2490,"ScoreTotal":16,"ID":849103595,"Name":"justyna1234","NumVillages":1,"Points":50,"Rank":2554,"TribeID":1460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103595","BestRank":2554,"BestRankAt":"2023-02-16T05:25:56.387696Z","MostPoints":50,"MostPointsAt":"2023-02-16T05:25:49.329361Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329361Z","LastActivityAt":"2023-02-16T05:25:49.329361Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103644,"Name":"czarekpol","NumVillages":1,"Points":99,"Rank":2462,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103644","BestRank":2462,"BestRankAt":"2023-02-16T05:25:56.387697Z","MostPoints":99,"MostPointsAt":"2023-02-16T05:25:49.329361Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329361Z","LastActivityAt":"2023-02-16T05:25:49.329361Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1451,"ScoreDef":38045,"RankSup":0,"ScoreSup":0,"RankTotal":1696,"ScoreTotal":38045,"ID":849103688,"Name":"Avaqer","NumVillages":1,"Points":4277,"Rank":1377,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103688","BestRank":1377,"BestRankAt":"2023-02-16T05:25:56.387698Z","MostPoints":4277,"MostPointsAt":"2023-02-16T05:25:49.329362Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329362Z","LastActivityAt":"2023-02-16T05:25:49.329362Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849103876,"Name":"mjk105","NumVillages":1,"Points":26,"Rank":2813,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103876","BestRank":2813,"BestRankAt":"2023-02-16T05:25:56.387698Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329362Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329362Z","LastActivityAt":"2023-02-16T05:25:49.329363Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1888,"ScoreAtt":50,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2441,"ScoreTotal":50,"ID":849103914,"Name":"adamzagi","NumVillages":1,"Points":380,"Rank":2088,"TribeID":1783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103914","BestRank":2088,"BestRankAt":"2023-02-16T05:25:56.387699Z","MostPoints":380,"MostPointsAt":"2023-02-16T05:25:49.329363Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329363Z","LastActivityAt":"2023-02-16T05:25:49.329363Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1792,"ScoreAtt":206,"RankDef":1574,"ScoreDef":27678,"RankSup":1320,"ScoreSup":14,"RankTotal":1785,"ScoreTotal":27898,"ID":849103947,"Name":"pinek3","NumVillages":1,"Points":207,"Rank":2260,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849103947","BestRank":1068,"BestRankAt":"2023-02-16T05:25:49.329363Z","MostPoints":10627,"MostPointsAt":"2023-02-16T05:25:49.329364Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329363Z","LastActivityAt":"2023-02-16T05:25:49.329364Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1535,"ScoreAtt":1937,"RankDef":1372,"ScoreDef":47751,"RankSup":1236,"ScoreSup":163,"RankTotal":1606,"ScoreTotal":49851,"ID":849104010,"Name":"Kawa","NumVillages":0,"Points":0,"Rank":3086,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104010","BestRank":3086,"BestRankAt":"2023-02-16T05:25:56.3877Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329364Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329364Z","LastActivityAt":"2023-02-16T05:25:49.329364Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1221,"ScoreAtt":9341,"RankDef":1105,"ScoreDef":92793,"RankSup":0,"ScoreSup":0,"RankTotal":1380,"ScoreTotal":102134,"ID":849104100,"Name":"Czadamm","NumVillages":1,"Points":80,"Rank":2484,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104100","BestRank":2484,"BestRankAt":"2023-02-16T05:25:56.3877Z","MostPoints":80,"MostPointsAt":"2023-02-16T05:25:49.329365Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329365Z","LastActivityAt":"2023-02-16T05:25:49.329365Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104121,"Name":"skwr85","NumVillages":1,"Points":2130,"Rank":1630,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104121","BestRank":1630,"BestRankAt":"2023-02-16T05:25:56.387701Z","MostPoints":2130,"MostPointsAt":"2023-02-16T05:25:56.387701Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329365Z","LastActivityAt":"2023-02-16T05:25:56.387701Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1250,"ScoreAtt":7875,"RankDef":713,"ScoreDef":266901,"RankSup":0,"ScoreSup":0,"RankTotal":1027,"ScoreTotal":274776,"ID":849104286,"Name":"TwojaStaraTabaluga","NumVillages":1,"Points":6420,"Rank":1238,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104286","BestRank":1238,"BestRankAt":"2023-02-16T05:25:56.387702Z","MostPoints":6420,"MostPointsAt":"2023-02-16T05:25:56.387702Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329366Z","LastActivityAt":"2023-02-16T05:25:56.387702Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1155,"ScoreAtt":13000,"RankDef":988,"ScoreDef":129114,"RankSup":0,"ScoreSup":0,"RankTotal":1261,"ScoreTotal":142114,"ID":849104297,"Name":"Kadar","NumVillages":1,"Points":323,"Rank":2134,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104297","BestRank":2134,"BestRankAt":"2023-02-16T05:25:56.387702Z","MostPoints":323,"MostPointsAt":"2023-02-16T05:25:56.387702Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329366Z","LastActivityAt":"2023-02-16T05:25:56.387703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104310,"Name":"jack2","NumVillages":1,"Points":195,"Rank":2286,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104310","BestRank":2286,"BestRankAt":"2023-02-16T05:25:56.387703Z","MostPoints":195,"MostPointsAt":"2023-02-16T05:25:56.387703Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329367Z","LastActivityAt":"2023-02-16T05:25:56.387703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":558,"ScoreAtt":265036,"RankDef":555,"ScoreDef":436206,"RankSup":766,"ScoreSup":32548,"RankTotal":710,"ScoreTotal":733790,"ID":849104328,"Name":"Martinex","NumVillages":19,"Points":155648,"Rank":458,"TribeID":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104328","BestRank":458,"BestRankAt":"2023-02-16T05:25:56.387704Z","MostPoints":155648,"MostPointsAt":"2023-02-16T05:25:56.387704Z","MostVillages":19,"MostVillagesAt":"2023-02-16T05:25:56.387704Z","LastActivityAt":"2023-02-16T05:25:56.387704Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":903,"ScoreAtt":49173,"RankDef":1356,"ScoreDef":49375,"RankSup":781,"ScoreSup":28929,"RankTotal":1303,"ScoreTotal":127477,"ID":849104356,"Name":"KaszczuJ","NumVillages":4,"Points":39306,"Rank":743,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104356","BestRank":743,"BestRankAt":"2023-02-16T05:25:56.387704Z","MostPoints":39491,"MostPointsAt":"2023-02-16T05:25:49.329368Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329368Z","LastActivityAt":"2023-02-16T05:25:56.387705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104468,"Name":"Marian Morderca","NumVillages":1,"Points":1157,"Rank":1803,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104468","BestRank":1803,"BestRankAt":"2023-02-16T05:25:56.387705Z","MostPoints":1157,"MostPointsAt":"2023-02-16T05:25:49.329369Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329368Z","LastActivityAt":"2023-02-16T05:25:49.329369Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849104474,"Name":"mrugowal","NumVillages":1,"Points":71,"Rank":2503,"TribeID":7,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104474","BestRank":2503,"BestRankAt":"2023-02-16T05:25:56.387705Z","MostPoints":71,"MostPointsAt":"2023-02-16T05:25:49.329369Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329369Z","LastActivityAt":"2023-02-16T05:25:49.329369Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1651,"ScoreAtt":792,"RankDef":536,"ScoreDef":471133,"RankSup":0,"ScoreSup":0,"RankTotal":860,"ScoreTotal":471925,"ID":849104491,"Name":"MANUO","NumVillages":1,"Points":355,"Rank":2107,"TribeID":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104491","BestRank":1945,"BestRankAt":"2023-02-16T05:25:49.329369Z","MostPoints":720,"MostPointsAt":"2023-02-16T05:25:49.32937Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.32937Z","LastActivityAt":"2023-02-16T05:25:49.32937Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1069,"ScoreAtt":20697,"RankDef":544,"ScoreDef":455874,"RankSup":857,"ScoreSup":15677,"RankTotal":846,"ScoreTotal":492248,"ID":849104546,"Name":"Jensiu90","NumVillages":5,"Points":35460,"Rank":772,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104546","BestRank":772,"BestRankAt":"2023-02-16T05:25:56.387707Z","MostPoints":35460,"MostPointsAt":"2023-02-16T05:25:56.387707Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.32937Z","LastActivityAt":"2023-02-16T05:25:56.387707Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1875,"ScoreDef":8711,"RankSup":0,"ScoreSup":0,"RankTotal":2017,"ScoreTotal":8711,"ID":849104633,"Name":"Miia","NumVillages":0,"Points":0,"Rank":3087,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104633","BestRank":3087,"BestRankAt":"2023-02-16T05:25:56.387707Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329371Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329371Z","LastActivityAt":"2023-02-16T05:25:49.329371Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1984,"ScoreDef":5278,"RankSup":0,"ScoreSup":0,"RankTotal":2112,"ScoreTotal":5278,"ID":849104814,"Name":"Xava","NumVillages":0,"Points":0,"Rank":3088,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104814","BestRank":3088,"BestRankAt":"2023-02-16T05:25:56.387708Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329371Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329371Z","LastActivityAt":"2023-02-16T05:25:49.329371Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1788,"ScoreAtt":216,"RankDef":2177,"ScoreDef":1296,"RankSup":1330,"ScoreSup":11,"RankTotal":2258,"ScoreTotal":1523,"ID":849104818,"Name":"bombelboniewo","NumVillages":1,"Points":4244,"Rank":1378,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104818","BestRank":1378,"BestRankAt":"2023-02-16T05:25:56.387708Z","MostPoints":4244,"MostPointsAt":"2023-02-16T05:25:56.387708Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329372Z","LastActivityAt":"2023-02-16T05:25:56.387709Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":953,"ScoreAtt":38798,"RankDef":2327,"ScoreDef":95,"RankSup":0,"ScoreSup":0,"RankTotal":1684,"ScoreTotal":38893,"ID":849104855,"Name":"Hary666","NumVillages":5,"Points":38693,"Rank":747,"TribeID":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849104855","BestRank":747,"BestRankAt":"2023-02-16T05:25:56.387709Z","MostPoints":38693,"MostPointsAt":"2023-02-16T05:25:56.387709Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329372Z","LastActivityAt":"2023-02-16T05:25:56.387709Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849105032,"Name":"PiotrBiznes","NumVillages":1,"Points":114,"Rank":2438,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105032","BestRank":2438,"BestRankAt":"2023-02-16T05:25:56.38771Z","MostPoints":114,"MostPointsAt":"2023-02-16T05:25:49.329373Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329373Z","LastActivityAt":"2023-02-16T05:25:49.329373Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1229,"ScoreAtt":8926,"RankDef":1552,"ScoreDef":29010,"RankSup":0,"ScoreSup":0,"RankTotal":1697,"ScoreTotal":37936,"ID":849105071,"Name":"myrcin","NumVillages":3,"Points":13591,"Rank":1021,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105071","BestRank":1017,"BestRankAt":"2023-02-16T05:25:49.329373Z","MostPoints":13591,"MostPointsAt":"2023-02-16T05:25:56.38771Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329373Z","LastActivityAt":"2023-02-16T05:25:56.38771Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2398,"ScoreDef":14,"RankSup":0,"ScoreSup":0,"RankTotal":2495,"ScoreTotal":14,"ID":849105072,"Name":"Kendal","NumVillages":1,"Points":7973,"Rank":1156,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105072","BestRank":1156,"BestRankAt":"2023-02-16T05:25:56.387711Z","MostPoints":7973,"MostPointsAt":"2023-02-16T05:25:56.387711Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329374Z","LastActivityAt":"2023-02-16T05:25:56.387711Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":990,"ScoreAtt":32141,"RankDef":1194,"ScoreDef":73536,"RankSup":0,"ScoreSup":0,"RankTotal":1367,"ScoreTotal":105677,"ID":849105102,"Name":"PatanTERROR","NumVillages":4,"Points":24627,"Rank":867,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105102","BestRank":867,"BestRankAt":"2023-02-16T05:25:56.387712Z","MostPoints":24627,"MostPointsAt":"2023-02-16T05:25:56.387712Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329375Z","LastActivityAt":"2023-02-16T05:25:56.387712Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849105187,"Name":"Chmielu94","NumVillages":1,"Points":115,"Rank":2436,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105187","BestRank":2436,"BestRankAt":"2023-02-16T05:25:56.387712Z","MostPoints":115,"MostPointsAt":"2023-02-16T05:25:49.329375Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329375Z","LastActivityAt":"2023-02-16T05:25:49.329375Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2478,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2551,"ScoreTotal":2,"ID":849105201,"Name":"samolot11","NumVillages":1,"Points":139,"Rank":2375,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105201","BestRank":2375,"BestRankAt":"2023-02-16T05:25:56.387713Z","MostPoints":139,"MostPointsAt":"2023-02-16T05:25:49.329376Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329376Z","LastActivityAt":"2023-02-16T05:25:49.329376Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1180,"ScoreAtt":11584,"RankDef":1759,"ScoreDef":14534,"RankSup":1005,"ScoreSup":4500,"RankTotal":1761,"ScoreTotal":30618,"ID":849105232,"Name":"krzysztofkryn148","NumVillages":7,"Points":17786,"Rank":958,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105232","BestRank":958,"BestRankAt":"2023-02-16T05:25:56.387713Z","MostPoints":17786,"MostPointsAt":"2023-02-16T05:25:56.387714Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329376Z","LastActivityAt":"2023-02-16T05:25:56.387714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2296,"ScoreDef":224,"RankSup":0,"ScoreSup":0,"RankTotal":2378,"ScoreTotal":224,"ID":849105408,"Name":"Fermer","NumVillages":1,"Points":2238,"Rank":1613,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105408","BestRank":1613,"BestRankAt":"2023-02-16T05:25:56.387714Z","MostPoints":2238,"MostPointsAt":"2023-02-16T05:25:56.387714Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329377Z","LastActivityAt":"2023-02-16T05:25:56.387714Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1134,"ScoreAtt":14879,"RankDef":1929,"ScoreDef":6585,"RankSup":0,"ScoreSup":0,"RankTotal":1847,"ScoreTotal":21464,"ID":849105417,"Name":"GdziePiniondzeSomZaLas","NumVillages":5,"Points":12690,"Rank":1038,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105417","BestRank":1038,"BestRankAt":"2023-02-16T05:25:56.387715Z","MostPoints":12690,"MostPointsAt":"2023-02-16T05:25:56.387715Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329377Z","LastActivityAt":"2023-02-16T05:25:56.387715Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1774,"ScoreDef":13551,"RankSup":0,"ScoreSup":0,"RankTotal":1937,"ScoreTotal":13551,"ID":849105420,"Name":"Natalia9388","NumVillages":1,"Points":9464,"Rank":1103,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105420","BestRank":1103,"BestRankAt":"2023-02-16T05:25:56.387715Z","MostPoints":9464,"MostPointsAt":"2023-02-16T05:25:49.329378Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329378Z","LastActivityAt":"2023-02-16T05:25:49.329378Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1499,"ScoreAtt":2314,"RankDef":2169,"ScoreDef":1440,"RankSup":0,"ScoreSup":0,"RankTotal":2164,"ScoreTotal":3754,"ID":849105463,"Name":"zwyczajny bandyta","NumVillages":6,"Points":9553,"Rank":1101,"TribeID":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105463","BestRank":1101,"BestRankAt":"2023-02-16T05:25:56.387716Z","MostPoints":9553,"MostPointsAt":"2023-02-16T05:25:49.329378Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329378Z","LastActivityAt":"2023-02-16T05:25:49.329379Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2140,"ScoreDef":1853,"RankSup":0,"ScoreSup":0,"RankTotal":2239,"ScoreTotal":1853,"ID":849105613,"Name":"Firau","NumVillages":1,"Points":577,"Rank":1979,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105613","BestRank":1979,"BestRankAt":"2023-02-16T05:25:56.387717Z","MostPoints":577,"MostPointsAt":"2023-02-16T05:25:56.387717Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329379Z","LastActivityAt":"2023-02-16T05:25:56.387717Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1901,"ScoreDef":7952,"RankSup":0,"ScoreSup":0,"RankTotal":2047,"ScoreTotal":7952,"ID":849105880,"Name":"wojtas.kaziu","NumVillages":0,"Points":0,"Rank":3121,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105880","BestRank":3121,"BestRankAt":"2023-02-16T05:25:49.329379Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32938Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329379Z","LastActivityAt":"2023-02-16T05:25:49.32938Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329691Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1891,"ScoreDef":8020,"RankSup":0,"ScoreSup":0,"RankTotal":2034,"ScoreTotal":8020,"ID":849105954,"Name":"SteamUser1668416228","NumVillages":0,"Points":0,"Rank":3089,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849105954","BestRank":3089,"BestRankAt":"2023-02-16T05:25:56.387717Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32938Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32938Z","LastActivityAt":"2023-02-16T05:25:49.32938Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1555,"ScoreDef":28838,"RankSup":0,"ScoreSup":0,"RankTotal":1777,"ScoreTotal":28838,"ID":849106210,"Name":"blady14","NumVillages":1,"Points":1881,"Rank":1677,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106210","BestRank":1677,"BestRankAt":"2023-02-16T05:25:56.387718Z","MostPoints":1881,"MostPointsAt":"2023-02-16T05:25:49.329381Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329381Z","LastActivityAt":"2023-02-16T05:25:49.329381Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1903,"ScoreAtt":40,"RankDef":1758,"ScoreDef":14740,"RankSup":0,"ScoreSup":0,"RankTotal":1927,"ScoreTotal":14780,"ID":849106303,"Name":"Kaminski95","NumVillages":1,"Points":1170,"Rank":1799,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106303","BestRank":1799,"BestRankAt":"2023-02-16T05:25:56.387718Z","MostPoints":1170,"MostPointsAt":"2023-02-16T05:25:56.387719Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329381Z","LastActivityAt":"2023-02-16T05:25:56.387719Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1330,"ScoreAtt":5595,"RankDef":2120,"ScoreDef":2128,"RankSup":0,"ScoreSup":0,"RankTotal":2041,"ScoreTotal":7723,"ID":849106316,"Name":"Dzejkob23","NumVillages":6,"Points":18231,"Rank":945,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106316","BestRank":944,"BestRankAt":"2023-02-16T05:25:49.329382Z","MostPoints":18231,"MostPointsAt":"2023-02-16T05:25:49.329382Z","MostVillages":6,"MostVillagesAt":"2023-02-16T05:25:49.329382Z","LastActivityAt":"2023-02-16T05:25:49.329382Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1309,"ScoreAtt":6233,"RankDef":758,"ScoreDef":237913,"RankSup":0,"ScoreSup":0,"RankTotal":1062,"ScoreTotal":244146,"ID":849106340,"Name":"Koza69","NumVillages":0,"Points":0,"Rank":3090,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106340","BestRank":3090,"BestRankAt":"2023-02-16T05:25:56.38772Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329382Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329382Z","LastActivityAt":"2023-02-16T05:25:49.329382Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1672,"ScoreAtt":695,"RankDef":1453,"ScoreDef":38009,"RankSup":0,"ScoreSup":0,"RankTotal":1689,"ScoreTotal":38704,"ID":849106383,"Name":"R0se69","NumVillages":2,"Points":13584,"Rank":1022,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106383","BestRank":1019,"BestRankAt":"2023-02-16T05:25:49.329383Z","MostPoints":13584,"MostPointsAt":"2023-02-16T05:25:56.38772Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329383Z","LastActivityAt":"2023-02-16T05:25:56.38772Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1655,"ScoreAtt":762,"RankDef":2195,"ScoreDef":1071,"RankSup":0,"ScoreSup":0,"RankTotal":2240,"ScoreTotal":1833,"ID":849106420,"Name":"SAwars","NumVillages":8,"Points":31817,"Rank":797,"TribeID":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106420","BestRank":797,"BestRankAt":"2023-02-16T05:25:56.387721Z","MostPoints":31817,"MostPointsAt":"2023-02-16T05:25:56.387721Z","MostVillages":8,"MostVillagesAt":"2023-02-16T05:25:49.329383Z","LastActivityAt":"2023-02-16T05:25:56.387721Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849106548,"Name":"jozin4don","NumVillages":1,"Points":566,"Rank":1983,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106548","BestRank":1983,"BestRankAt":"2023-02-16T05:25:56.387721Z","MostPoints":566,"MostPointsAt":"2023-02-16T05:25:56.387722Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329384Z","LastActivityAt":"2023-02-16T05:25:56.387722Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1895,"ScoreAtt":45,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2445,"ScoreTotal":45,"ID":849106576,"Name":"Bober5180","NumVillages":1,"Points":126,"Rank":2413,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106576","BestRank":2413,"BestRankAt":"2023-02-16T05:25:56.387722Z","MostPoints":126,"MostPointsAt":"2023-02-16T05:25:49.329385Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329384Z","LastActivityAt":"2023-02-16T05:25:49.329385Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2128,"ScoreDef":2032,"RankSup":0,"ScoreSup":0,"RankTotal":2228,"ScoreTotal":2032,"ID":849106601,"Name":"DrXE7","NumVillages":1,"Points":253,"Rank":2204,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106601","BestRank":2204,"BestRankAt":"2023-02-16T05:25:56.387723Z","MostPoints":253,"MostPointsAt":"2023-02-16T05:25:49.329385Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329385Z","LastActivityAt":"2023-02-16T05:25:49.329385Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1368,"ScoreAtt":4672,"RankDef":1401,"ScoreDef":43358,"RankSup":1113,"ScoreSup":1546,"RankTotal":1610,"ScoreTotal":49576,"ID":849106612,"Name":"Ufok834","NumVillages":5,"Points":11272,"Rank":1052,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106612","BestRank":1052,"BestRankAt":"2023-02-16T05:25:56.387723Z","MostPoints":11272,"MostPointsAt":"2023-02-16T05:25:56.387723Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329386Z","LastActivityAt":"2023-02-16T05:25:56.387724Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2362,"ScoreDef":30,"RankSup":0,"ScoreSup":0,"RankTotal":2462,"ScoreTotal":30,"ID":849106698,"Name":"Harley Quinn","NumVillages":1,"Points":194,"Rank":2291,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106698","BestRank":2291,"BestRankAt":"2023-02-16T05:25:56.387724Z","MostPoints":194,"MostPointsAt":"2023-02-16T05:25:49.329386Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329386Z","LastActivityAt":"2023-02-16T05:25:49.329386Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849106741,"Name":"Koza2021","NumVillages":1,"Points":68,"Rank":2512,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106741","BestRank":2512,"BestRankAt":"2023-02-16T05:25:56.387725Z","MostPoints":68,"MostPointsAt":"2023-02-16T05:25:49.329387Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329387Z","LastActivityAt":"2023-02-16T05:25:49.329387Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329694Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1699,"ScoreAtt":554,"RankDef":1713,"ScoreDef":17466,"RankSup":481,"ScoreSup":190671,"RankTotal":1123,"ScoreTotal":208691,"ID":849106785,"Name":"LordFrotto","NumVillages":3,"Points":15783,"Rank":987,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106785","BestRank":987,"BestRankAt":"2023-02-16T05:25:49.329387Z","MostPoints":15783,"MostPointsAt":"2023-02-16T05:25:56.387725Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329387Z","LastActivityAt":"2023-02-16T05:25:56.387725Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1797,"ScoreAtt":180,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2386,"ScoreTotal":180,"ID":849106820,"Name":"Cheltenham","NumVillages":1,"Points":690,"Rank":1934,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106820","BestRank":1934,"BestRankAt":"2023-02-16T05:25:56.387726Z","MostPoints":690,"MostPointsAt":"2023-02-16T05:25:49.329388Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329388Z","LastActivityAt":"2023-02-16T05:25:49.329388Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2426,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2524,"ScoreTotal":10,"ID":849106828,"Name":"anatol2619","NumVillages":1,"Points":463,"Rank":2031,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106828","BestRank":2031,"BestRankAt":"2023-02-16T05:25:56.387726Z","MostPoints":463,"MostPointsAt":"2023-02-16T05:25:49.329388Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329388Z","LastActivityAt":"2023-02-16T05:25:49.329388Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849106923,"Name":"kowal26022","NumVillages":1,"Points":4543,"Rank":1356,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106923","BestRank":1356,"BestRankAt":"2023-02-16T05:25:56.387727Z","MostPoints":4543,"MostPointsAt":"2023-02-16T05:25:56.387727Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329389Z","LastActivityAt":"2023-02-16T05:25:56.387727Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1219,"ScoreAtt":9541,"RankDef":2017,"ScoreDef":4209,"RankSup":0,"ScoreSup":0,"RankTotal":1936,"ScoreTotal":13750,"ID":849106971,"Name":"Irek216","NumVillages":5,"Points":17287,"Rank":965,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849106971","BestRank":965,"BestRankAt":"2023-02-16T05:25:56.387728Z","MostPoints":17287,"MostPointsAt":"2023-02-16T05:25:56.387728Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329389Z","LastActivityAt":"2023-02-16T05:25:56.387728Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329695Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1643,"ScoreAtt":833,"RankDef":2453,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2295,"ScoreTotal":843,"ID":849107104,"Name":"k3d4r89","NumVillages":1,"Points":2149,"Rank":1625,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107104","BestRank":1625,"BestRankAt":"2023-02-16T05:25:56.387729Z","MostPoints":2149,"MostPointsAt":"2023-02-16T05:25:56.387729Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32939Z","LastActivityAt":"2023-02-16T05:25:56.387729Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2385,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2482,"ScoreTotal":20,"ID":849107188,"Name":"Bondzia","NumVillages":1,"Points":2084,"Rank":1639,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107188","BestRank":1639,"BestRankAt":"2023-02-16T05:25:56.387729Z","MostPoints":2084,"MostPointsAt":"2023-02-16T05:25:56.387729Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329391Z","LastActivityAt":"2023-02-16T05:25:56.38773Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849107391,"Name":"BedsideBrick477","NumVillages":1,"Points":104,"Rank":2452,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107391","BestRank":2452,"BestRankAt":"2023-02-16T05:25:56.38773Z","MostPoints":104,"MostPointsAt":"2023-02-16T05:25:49.329391Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329391Z","LastActivityAt":"2023-02-16T05:25:49.329391Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1510,"ScoreAtt":2178,"RankDef":1750,"ScoreDef":15425,"RankSup":0,"ScoreSup":0,"RankTotal":1889,"ScoreTotal":17603,"ID":849107426,"Name":"MichaƂ zƂoƛliwy","NumVillages":1,"Points":310,"Rank":2146,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107426","BestRank":2146,"BestRankAt":"2023-02-16T05:25:56.387731Z","MostPoints":310,"MostPointsAt":"2023-02-16T05:25:49.329392Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329392Z","LastActivityAt":"2023-02-16T05:25:49.329392Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1716,"ScoreAtt":440,"RankDef":2164,"ScoreDef":1497,"RankSup":0,"ScoreSup":0,"RankTotal":2233,"ScoreTotal":1937,"ID":849107507,"Name":"bartekwach","NumVillages":1,"Points":4382,"Rank":1369,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107507","BestRank":1369,"BestRankAt":"2023-02-16T05:25:56.387731Z","MostPoints":4382,"MostPointsAt":"2023-02-16T05:25:56.387731Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329392Z","LastActivityAt":"2023-02-16T05:25:56.387731Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":878,"ScoreAtt":55595,"RankDef":2139,"ScoreDef":1878,"RankSup":1129,"ScoreSup":1222,"RankTotal":1559,"ScoreTotal":58695,"ID":849107532,"Name":"Ponury morderca","NumVillages":5,"Points":18595,"Rank":938,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107532","BestRank":938,"BestRankAt":"2023-02-16T05:25:56.387732Z","MostPoints":18595,"MostPointsAt":"2023-02-16T05:25:49.329393Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329393Z","LastActivityAt":"2023-02-16T05:25:49.329393Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849107571,"Name":"mFxXx","NumVillages":1,"Points":1396,"Rank":1757,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107571","BestRank":1757,"BestRankAt":"2023-02-16T05:25:56.387732Z","MostPoints":1396,"MostPointsAt":"2023-02-16T05:25:56.387733Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329393Z","LastActivityAt":"2023-02-16T05:25:56.387733Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1218,"ScoreAtt":9713,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":1996,"ScoreTotal":9713,"ID":849107703,"Name":"KRONOSIK8","NumVillages":1,"Points":6307,"Rank":1246,"TribeID":1163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107703","BestRank":1246,"BestRankAt":"2023-02-16T05:25:56.387733Z","MostPoints":6307,"MostPointsAt":"2023-02-16T05:25:49.329394Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329394Z","LastActivityAt":"2023-02-16T05:25:49.329394Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2487,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2555,"ScoreTotal":1,"ID":849107799,"Name":"Podzal","NumVillages":1,"Points":992,"Rank":1850,"TribeID":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107799","BestRank":1850,"BestRankAt":"2023-02-16T05:25:56.387734Z","MostPoints":992,"MostPointsAt":"2023-02-16T05:25:56.387734Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329394Z","LastActivityAt":"2023-02-16T05:25:56.387734Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849107860,"Name":"alexxdize","NumVillages":1,"Points":136,"Rank":2381,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107860","BestRank":2381,"BestRankAt":"2023-02-16T05:25:56.387734Z","MostPoints":136,"MostPointsAt":"2023-02-16T05:25:49.329395Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329395Z","LastActivityAt":"2023-02-16T05:25:49.329395Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2347,"ScoreDef":50,"RankSup":0,"ScoreSup":0,"RankTotal":2440,"ScoreTotal":50,"ID":849107881,"Name":"POMPIARZ 122","NumVillages":1,"Points":5000,"Rank":1322,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849107881","BestRank":1322,"BestRankAt":"2023-02-16T05:25:56.387735Z","MostPoints":5000,"MostPointsAt":"2023-02-16T05:25:56.387735Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329396Z","LastActivityAt":"2023-02-16T05:25:56.387735Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1806,"ScoreAtt":170,"RankDef":1648,"ScoreDef":21994,"RankSup":1402,"ScoreSup":1,"RankTotal":1841,"ScoreTotal":22165,"ID":849108007,"Name":"SkalpeR1337","NumVillages":2,"Points":9592,"Rank":1099,"TribeID":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108007","BestRank":1099,"BestRankAt":"2023-02-16T05:25:56.387736Z","MostPoints":9592,"MostPointsAt":"2023-02-16T05:25:56.387736Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329396Z","LastActivityAt":"2023-02-16T05:25:56.387736Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108034,"Name":"Frodo1","NumVillages":1,"Points":26,"Rank":2814,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108034","BestRank":2814,"BestRankAt":"2023-02-16T05:25:56.387736Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329397Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329397Z","LastActivityAt":"2023-02-16T05:25:49.329397Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1645,"ScoreAtt":818,"RankDef":2336,"ScoreDef":66,"RankSup":0,"ScoreSup":0,"RankTotal":2293,"ScoreTotal":884,"ID":849108053,"Name":"Olczii","NumVillages":1,"Points":1207,"Rank":1790,"TribeID":647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108053","BestRank":1790,"BestRankAt":"2023-02-16T05:25:56.387737Z","MostPoints":1207,"MostPointsAt":"2023-02-16T05:25:49.329397Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329397Z","LastActivityAt":"2023-02-16T05:25:49.329397Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1449,"ScoreAtt":3111,"RankDef":1234,"ScoreDef":66328,"RankSup":0,"ScoreSup":0,"RankTotal":1504,"ScoreTotal":69439,"ID":849108148,"Name":"Yomikuri","NumVillages":1,"Points":203,"Rank":2268,"TribeID":1431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108148","BestRank":2268,"BestRankAt":"2023-02-16T05:25:56.387738Z","MostPoints":203,"MostPointsAt":"2023-02-16T05:25:56.387738Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329398Z","LastActivityAt":"2023-02-16T05:25:56.387738Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1246,"ScoreAtt":7940,"RankDef":2297,"ScoreDef":224,"RankSup":0,"ScoreSup":0,"RankTotal":2027,"ScoreTotal":8164,"ID":849108157,"Name":"Wu7ek","NumVillages":3,"Points":4496,"Rank":1361,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108157","BestRank":1361,"BestRankAt":"2023-02-16T05:25:56.387738Z","MostPoints":4496,"MostPointsAt":"2023-02-16T05:25:49.329398Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329398Z","LastActivityAt":"2023-02-16T05:25:49.329398Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1509,"ScoreAtt":2187,"RankDef":1028,"ScoreDef":117355,"RankSup":0,"ScoreSup":0,"RankTotal":1324,"ScoreTotal":119542,"ID":849108328,"Name":"mirabelik","NumVillages":0,"Points":0,"Rank":3091,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108328","BestRank":3091,"BestRankAt":"2023-02-16T05:25:56.387739Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329399Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329399Z","LastActivityAt":"2023-02-16T05:25:49.329399Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329699Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2383,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2481,"ScoreTotal":20,"ID":849108339,"Name":"DiduDidek","NumVillages":1,"Points":2265,"Rank":1608,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108339","BestRank":1608,"BestRankAt":"2023-02-16T05:25:56.387739Z","MostPoints":2265,"MostPointsAt":"2023-02-16T05:25:56.38774Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329399Z","LastActivityAt":"2023-02-16T05:25:56.38774Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.3297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2167,"ScoreDef":1464,"RankSup":0,"ScoreSup":0,"RankTotal":2262,"ScoreTotal":1464,"ID":849108350,"Name":"Gumaty","NumVillages":1,"Points":144,"Rank":2360,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108350","BestRank":2360,"BestRankAt":"2023-02-16T05:25:56.38774Z","MostPoints":144,"MostPointsAt":"2023-02-16T05:25:56.38774Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.3294Z","LastActivityAt":"2023-02-16T05:25:56.387741Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.3297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2514,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2577,"ScoreTotal":1,"ID":849108352,"Name":"SharpWaldek","NumVillages":1,"Points":114,"Rank":2458,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108352","BestRank":2458,"BestRankAt":"2023-02-16T05:25:49.3294Z","MostPoints":114,"MostPointsAt":"2023-02-16T05:25:49.329401Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.3294Z","LastActivityAt":"2023-02-16T05:25:49.329401Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.3297Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108600,"Name":"OneGiet","NumVillages":1,"Points":173,"Rank":2325,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108600","BestRank":2325,"BestRankAt":"2023-02-16T05:25:56.387741Z","MostPoints":173,"MostPointsAt":"2023-02-16T05:25:49.329401Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329401Z","LastActivityAt":"2023-02-16T05:25:49.329401Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.3297Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":641,"ScoreAtt":165215,"RankDef":205,"ScoreDef":1846329,"RankSup":772,"ScoreSup":30877,"RankTotal":404,"ScoreTotal":2042421,"ID":849108623,"Name":"Kapiburaczek","NumVillages":2,"Points":13253,"Rank":1028,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108623","BestRank":1025,"BestRankAt":"2023-02-16T05:25:49.329402Z","MostPoints":13253,"MostPointsAt":"2023-02-16T05:25:49.329402Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329402Z","LastActivityAt":"2023-02-16T05:25:49.329402Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108673,"Name":"DonArturo","NumVillages":1,"Points":26,"Rank":2815,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108673","BestRank":2815,"BestRankAt":"2023-02-16T05:25:56.387742Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329402Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329402Z","LastActivityAt":"2023-02-16T05:25:49.329402Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1912,"ScoreAtt":35,"RankDef":2220,"ScoreDef":750,"RankSup":0,"ScoreSup":0,"RankTotal":2303,"ScoreTotal":785,"ID":849108762,"Name":"batman2022","NumVillages":1,"Points":400,"Rank":2073,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108762","BestRank":2073,"BestRankAt":"2023-02-16T05:25:56.387743Z","MostPoints":400,"MostPointsAt":"2023-02-16T05:25:49.329403Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329403Z","LastActivityAt":"2023-02-16T05:25:49.329403Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":602,"ScoreAtt":211892,"RankDef":2018,"ScoreDef":4154,"RankSup":385,"ScoreSup":345009,"RankTotal":795,"ScoreTotal":561055,"ID":849108780,"Name":"przegraƂ","NumVillages":11,"Points":91899,"Rank":554,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108780","BestRank":554,"BestRankAt":"2023-02-16T05:25:56.387743Z","MostPoints":91899,"MostPointsAt":"2023-02-16T05:25:56.387744Z","MostVillages":11,"MostVillagesAt":"2023-02-16T05:25:49.329403Z","LastActivityAt":"2023-02-16T05:25:56.387744Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1333,"ScoreAtt":5507,"RankDef":1434,"ScoreDef":39351,"RankSup":636,"ScoreSup":78257,"RankTotal":1315,"ScoreTotal":123115,"ID":849108784,"Name":"Berciak","NumVillages":7,"Points":31188,"Rank":806,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108784","BestRank":802,"BestRankAt":"2023-02-16T05:25:49.329404Z","MostPoints":31188,"MostPointsAt":"2023-02-16T05:25:49.329404Z","MostVillages":7,"MostVillagesAt":"2023-02-16T05:25:49.329404Z","LastActivityAt":"2023-02-16T05:25:49.329404Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108891,"Name":"jd21372005","NumVillages":1,"Points":303,"Rank":2151,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108891","BestRank":2151,"BestRankAt":"2023-02-16T05:25:56.387745Z","MostPoints":303,"MostPointsAt":"2023-02-16T05:25:49.329404Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329404Z","LastActivityAt":"2023-02-16T05:25:49.329405Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108915,"Name":"jordonjbe","NumVillages":1,"Points":180,"Rank":2313,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108915","BestRank":2313,"BestRankAt":"2023-02-16T05:25:56.387745Z","MostPoints":180,"MostPointsAt":"2023-02-16T05:25:49.329405Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329405Z","LastActivityAt":"2023-02-16T05:25:49.329405Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849108933,"Name":"Gilutyna","NumVillages":1,"Points":33,"Rank":2583,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108933","BestRank":2583,"BestRankAt":"2023-02-16T05:25:56.387746Z","MostPoints":33,"MostPointsAt":"2023-02-16T05:25:49.329406Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329405Z","LastActivityAt":"2023-02-16T05:25:49.329406Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1088,"ScoreAtt":19472,"RankDef":2283,"ScoreDef":274,"RankSup":0,"ScoreSup":0,"RankTotal":1873,"ScoreTotal":19746,"ID":849108934,"Name":"Stefek7","NumVillages":1,"Points":801,"Rank":1900,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108934","BestRank":1900,"BestRankAt":"2023-02-16T05:25:56.387747Z","MostPoints":801,"MostPointsAt":"2023-02-16T05:25:49.329406Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329406Z","LastActivityAt":"2023-02-16T05:25:56.387747Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2366,"ScoreDef":28,"RankSup":0,"ScoreSup":0,"RankTotal":2467,"ScoreTotal":28,"ID":849108971,"Name":"MGryglak95","NumVillages":1,"Points":2998,"Rank":1515,"TribeID":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108971","BestRank":1515,"BestRankAt":"2023-02-16T05:25:56.387747Z","MostPoints":2998,"MostPointsAt":"2023-02-16T05:25:56.387748Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329407Z","LastActivityAt":"2023-02-16T05:25:56.387748Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1123,"ScoreAtt":15956,"RankDef":1576,"ScoreDef":27341,"RankSup":0,"ScoreSup":0,"RankTotal":1654,"ScoreTotal":43297,"ID":849108991,"Name":"krisus8497","NumVillages":1,"Points":1068,"Rank":1829,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849108991","BestRank":1829,"BestRankAt":"2023-02-16T05:25:56.387748Z","MostPoints":1068,"MostPointsAt":"2023-02-16T05:25:49.329407Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329407Z","LastActivityAt":"2023-02-16T05:25:49.329407Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1936,"ScoreAtt":20,"RankDef":2263,"ScoreDef":406,"RankSup":0,"ScoreSup":0,"RankTotal":2345,"ScoreTotal":426,"ID":849109010,"Name":"SirNiuchniuch","NumVillages":1,"Points":4210,"Rank":1382,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109010","BestRank":1382,"BestRankAt":"2023-02-16T05:25:56.387749Z","MostPoints":4210,"MostPointsAt":"2023-02-16T05:25:56.387749Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329408Z","LastActivityAt":"2023-02-16T05:25:56.387749Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329703Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109036,"Name":"Gerf","NumVillages":1,"Points":239,"Rank":2236,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109036","BestRank":2236,"BestRankAt":"2023-02-16T05:25:49.329408Z","MostPoints":239,"MostPointsAt":"2023-02-16T05:25:49.329408Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329408Z","LastActivityAt":"2023-02-16T05:25:49.329408Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329703Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109045,"Name":"Lilit","NumVillages":1,"Points":463,"Rank":2032,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109045","BestRank":2032,"BestRankAt":"2023-02-16T05:25:56.38775Z","MostPoints":463,"MostPointsAt":"2023-02-16T05:25:56.38775Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329409Z","LastActivityAt":"2023-02-16T05:25:56.38775Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1210,"ScoreDef":70777,"RankSup":0,"ScoreSup":0,"RankTotal":1495,"ScoreTotal":70777,"ID":849109072,"Name":"mikos","NumVillages":1,"Points":291,"Rank":2164,"TribeID":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109072","BestRank":2164,"BestRankAt":"2023-02-16T05:25:56.38775Z","MostPoints":291,"MostPointsAt":"2023-02-16T05:25:49.329409Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329409Z","LastActivityAt":"2023-02-16T05:25:49.329409Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2437,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2525,"ScoreTotal":10,"ID":849109116,"Name":"apolinary","NumVillages":1,"Points":5348,"Rank":1304,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109116","BestRank":1304,"BestRankAt":"2023-02-16T05:25:56.387751Z","MostPoints":5348,"MostPointsAt":"2023-02-16T05:25:56.387751Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32941Z","LastActivityAt":"2023-02-16T05:25:56.387751Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1899,"ScoreAtt":42,"RankDef":1724,"ScoreDef":16909,"RankSup":0,"ScoreSup":0,"RankTotal":1899,"ScoreTotal":16951,"ID":849109152,"Name":"leon1214","NumVillages":1,"Points":111,"Rank":2442,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109152","BestRank":2442,"BestRankAt":"2023-02-16T05:25:56.387752Z","MostPoints":111,"MostPointsAt":"2023-02-16T05:25:49.329411Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32941Z","LastActivityAt":"2023-02-16T05:25:49.329411Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1967,"ScoreAtt":6,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2538,"ScoreTotal":6,"ID":849109232,"Name":"Lord patban177","NumVillages":1,"Points":448,"Rank":2041,"TribeID":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109232","BestRank":2041,"BestRankAt":"2023-02-16T05:25:56.387752Z","MostPoints":448,"MostPointsAt":"2023-02-16T05:25:49.329411Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329411Z","LastActivityAt":"2023-02-16T05:25:49.329411Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329704Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109351,"Name":"Seledynowy skuter wodny","NumVillages":1,"Points":183,"Rank":2307,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109351","BestRank":2307,"BestRankAt":"2023-02-16T05:25:56.387753Z","MostPoints":183,"MostPointsAt":"2023-02-16T05:25:49.329412Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329412Z","LastActivityAt":"2023-02-16T05:25:49.329412Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1551,"ScoreAtt":1779,"RankDef":1124,"ScoreDef":89934,"RankSup":1378,"ScoreSup":3,"RankTotal":1423,"ScoreTotal":91716,"ID":849109413,"Name":"Javor","NumVillages":0,"Points":0,"Rank":3092,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109413","BestRank":3092,"BestRankAt":"2023-02-16T05:25:56.387754Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329412Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329412Z","LastActivityAt":"2023-02-16T05:25:49.329412Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1805,"ScoreAtt":171,"RankDef":1018,"ScoreDef":122121,"RankSup":0,"ScoreSup":0,"RankTotal":1320,"ScoreTotal":122292,"ID":849109507,"Name":"ewazeth","NumVillages":1,"Points":26,"Rank":2816,"TribeID":1528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109507","BestRank":2816,"BestRankAt":"2023-02-16T05:25:56.387755Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329413Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329413Z","LastActivityAt":"2023-02-16T05:25:49.329413Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1764,"ScoreAtt":270,"RankDef":2130,"ScoreDef":1996,"RankSup":0,"ScoreSup":0,"RankTotal":2213,"ScoreTotal":2266,"ID":849109521,"Name":"justys3828","NumVillages":0,"Points":0,"Rank":3093,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109521","BestRank":3093,"BestRankAt":"2023-02-16T05:25:56.387755Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329413Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329413Z","LastActivityAt":"2023-02-16T05:25:49.329413Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109601,"Name":"EpsHunT","NumVillages":1,"Points":26,"Rank":2817,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109601","BestRank":2817,"BestRankAt":"2023-02-16T05:25:56.387756Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329414Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329414Z","LastActivityAt":"2023-02-16T05:25:49.329414Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":989,"ScoreAtt":32386,"RankDef":2168,"ScoreDef":1454,"RankSup":1376,"ScoreSup":3,"RankTotal":1729,"ScoreTotal":33843,"ID":849109637,"Name":"Czemi96","NumVillages":2,"Points":5641,"Rank":1286,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109637","BestRank":1286,"BestRankAt":"2023-02-16T05:25:56.387756Z","MostPoints":5641,"MostPointsAt":"2023-02-16T05:25:56.387757Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329414Z","LastActivityAt":"2023-02-16T05:25:56.387757Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109701,"Name":"VaniaMay","NumVillages":1,"Points":382,"Rank":2084,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109701","BestRank":2084,"BestRankAt":"2023-02-16T05:25:56.387757Z","MostPoints":382,"MostPointsAt":"2023-02-16T05:25:56.387757Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329415Z","LastActivityAt":"2023-02-16T05:25:56.387757Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109705,"Name":"DomiNio","NumVillages":1,"Points":357,"Rank":2106,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109705","BestRank":2106,"BestRankAt":"2023-02-16T05:25:56.387758Z","MostPoints":357,"MostPointsAt":"2023-02-16T05:25:49.329415Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329415Z","LastActivityAt":"2023-02-16T05:25:49.329416Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1074,"ScoreAtt":20358,"RankDef":2302,"ScoreDef":208,"RankSup":1278,"ScoreSup":46,"RankTotal":1857,"ScoreTotal":20612,"ID":849109795,"Name":"Peka44","NumVillages":5,"Points":18236,"Rank":944,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109795","BestRank":944,"BestRankAt":"2023-02-16T05:25:56.387759Z","MostPoints":18236,"MostPointsAt":"2023-02-16T05:25:56.387759Z","MostVillages":5,"MostVillagesAt":"2023-02-16T05:25:49.329416Z","LastActivityAt":"2023-02-16T05:25:56.387759Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329706Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849109875,"Name":"v3n1s","NumVillages":1,"Points":180,"Rank":2314,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109875","BestRank":2314,"BestRankAt":"2023-02-16T05:25:56.387759Z","MostPoints":180,"MostPointsAt":"2023-02-16T05:25:49.329417Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329417Z","LastActivityAt":"2023-02-16T05:25:49.329417Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2210,"ScoreDef":817,"RankSup":0,"ScoreSup":0,"RankTotal":2296,"ScoreTotal":817,"ID":849109885,"Name":"graf72","NumVillages":1,"Points":1778,"Rank":1692,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109885","BestRank":1692,"BestRankAt":"2023-02-16T05:25:56.38776Z","MostPoints":1778,"MostPointsAt":"2023-02-16T05:25:56.38776Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329417Z","LastActivityAt":"2023-02-16T05:25:56.38776Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1744,"ScoreDef":15916,"RankSup":0,"ScoreSup":0,"RankTotal":1915,"ScoreTotal":15916,"ID":849109935,"Name":"Patrykos91","NumVillages":1,"Points":1299,"Rank":1777,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109935","BestRank":1777,"BestRankAt":"2023-02-16T05:25:56.387761Z","MostPoints":1299,"MostPointsAt":"2023-02-16T05:25:56.387761Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329418Z","LastActivityAt":"2023-02-16T05:25:56.387761Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1611,"ScoreAtt":1091,"RankDef":2257,"ScoreDef":439,"RankSup":0,"ScoreSup":0,"RankTotal":2257,"ScoreTotal":1530,"ID":849109966,"Name":"KozioƂ","NumVillages":1,"Points":344,"Rank":2115,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849109966","BestRank":2115,"BestRankAt":"2023-02-16T05:25:56.387762Z","MostPoints":344,"MostPointsAt":"2023-02-16T05:25:49.329418Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329418Z","LastActivityAt":"2023-02-16T05:25:49.329418Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329707Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110021,"Name":"Piotr-Wielki2","NumVillages":1,"Points":2286,"Rank":1602,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110021","BestRank":1602,"BestRankAt":"2023-02-16T05:25:56.387762Z","MostPoints":2286,"MostPointsAt":"2023-02-16T05:25:56.387762Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329419Z","LastActivityAt":"2023-02-16T05:25:56.387763Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110289,"Name":"daniok94","NumVillages":1,"Points":603,"Rank":1968,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110289","BestRank":1968,"BestRankAt":"2023-02-16T05:25:56.387763Z","MostPoints":603,"MostPointsAt":"2023-02-16T05:25:49.329419Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329419Z","LastActivityAt":"2023-02-16T05:25:49.329419Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1990,"ScoreDef":5001,"RankSup":0,"ScoreSup":0,"RankTotal":2121,"ScoreTotal":5001,"ID":849110304,"Name":"Paveulon","NumVillages":1,"Points":97,"Rank":2467,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110304","BestRank":2467,"BestRankAt":"2023-02-16T05:25:56.387764Z","MostPoints":97,"MostPointsAt":"2023-02-16T05:25:49.32942Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32942Z","LastActivityAt":"2023-02-16T05:25:49.32942Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1371,"ScoreAtt":4638,"RankDef":2282,"ScoreDef":282,"RankSup":0,"ScoreSup":0,"RankTotal":2125,"ScoreTotal":4920,"ID":849110310,"Name":"Mantvel","NumVillages":0,"Points":0,"Rank":3094,"TribeID":1643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110310","BestRank":3094,"BestRankAt":"2023-02-16T05:25:56.387764Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32942Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32942Z","LastActivityAt":"2023-02-16T05:25:49.329421Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1145,"ScoreAtt":13847,"RankDef":2353,"ScoreDef":40,"RankSup":0,"ScoreSup":0,"RankTotal":1935,"ScoreTotal":13887,"ID":849110365,"Name":"bojanees","NumVillages":3,"Points":9599,"Rank":1098,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110365","BestRank":1098,"BestRankAt":"2023-02-16T05:25:56.387765Z","MostPoints":9599,"MostPointsAt":"2023-02-16T05:25:49.329421Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329421Z","LastActivityAt":"2023-02-16T05:25:49.329421Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2350,"ScoreDef":43,"RankSup":0,"ScoreSup":0,"RankTotal":2447,"ScoreTotal":43,"ID":849110380,"Name":"JasneĆ»eSzymek","NumVillages":1,"Points":225,"Rank":2237,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110380","BestRank":2237,"BestRankAt":"2023-02-16T05:25:56.387765Z","MostPoints":225,"MostPointsAt":"2023-02-16T05:25:49.329422Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329421Z","LastActivityAt":"2023-02-16T05:25:49.329422Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1023,"ScoreAtt":26798,"RankDef":2454,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":1800,"ScoreTotal":26808,"ID":849110382,"Name":"Hardex","NumVillages":3,"Points":11174,"Rank":1056,"TribeID":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110382","BestRank":1056,"BestRankAt":"2023-02-16T05:25:56.387766Z","MostPoints":11174,"MostPointsAt":"2023-02-16T05:25:56.387766Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329422Z","LastActivityAt":"2023-02-16T05:25:56.387766Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110479,"Name":"rambo3423","NumVillages":1,"Points":115,"Rank":2437,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110479","BestRank":2437,"BestRankAt":"2023-02-16T05:25:56.387766Z","MostPoints":115,"MostPointsAt":"2023-02-16T05:25:49.329423Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329423Z","LastActivityAt":"2023-02-16T05:25:49.329423Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2485,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2558,"ScoreTotal":1,"ID":849110571,"Name":"Ywozdreiwt Nyzuk","NumVillages":1,"Points":2552,"Rank":1567,"TribeID":256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110571","BestRank":1567,"BestRankAt":"2023-02-16T05:25:56.387767Z","MostPoints":2552,"MostPointsAt":"2023-02-16T05:25:49.329423Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329423Z","LastActivityAt":"2023-02-16T05:25:49.329423Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2438,"ScoreDef":10,"RankSup":832,"ScoreSup":18386,"RankTotal":1881,"ScoreTotal":18396,"ID":849110622,"Name":"ciulpa","NumVillages":1,"Points":2195,"Rank":1621,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110622","BestRank":1621,"BestRankAt":"2023-02-16T05:25:56.387767Z","MostPoints":2195,"MostPointsAt":"2023-02-16T05:25:56.387767Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329424Z","LastActivityAt":"2023-02-16T05:25:56.387767Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1845,"ScoreDef":9971,"RankSup":0,"ScoreSup":0,"RankTotal":1992,"ScoreTotal":9971,"ID":849110644,"Name":"METALCORE","NumVillages":1,"Points":121,"Rank":2421,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110644","BestRank":2421,"BestRankAt":"2023-02-16T05:25:56.387768Z","MostPoints":121,"MostPointsAt":"2023-02-16T05:25:49.329424Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329424Z","LastActivityAt":"2023-02-16T05:25:49.329424Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1668,"ScoreAtt":707,"RankDef":2225,"ScoreDef":692,"RankSup":0,"ScoreSup":0,"RankTotal":2267,"ScoreTotal":1399,"ID":849110674,"Name":"KrĂłl Mieszko1","NumVillages":1,"Points":706,"Rank":1927,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110674","BestRank":1927,"BestRankAt":"2023-02-16T05:25:56.387768Z","MostPoints":706,"MostPointsAt":"2023-02-16T05:25:56.387768Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329425Z","LastActivityAt":"2023-02-16T05:25:56.387768Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1697,"ScoreAtt":557,"RankDef":1731,"ScoreDef":16623,"RankSup":0,"ScoreSup":0,"RankTotal":1894,"ScoreTotal":17180,"ID":849110688,"Name":"Szarykocik717","NumVillages":1,"Points":3153,"Rank":1493,"TribeID":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110688","BestRank":1493,"BestRankAt":"2023-02-16T05:25:56.387769Z","MostPoints":3153,"MostPointsAt":"2023-02-16T05:25:56.387769Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329428Z","LastActivityAt":"2023-02-16T05:25:56.387769Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32971Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":657,"ScoreSup":67742,"RankTotal":1508,"ScoreTotal":67742,"ID":849110711,"Name":"Johny544","NumVillages":3,"Points":7943,"Rank":1158,"TribeID":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110711","BestRank":1158,"BestRankAt":"2023-02-16T05:25:56.387769Z","MostPoints":7943,"MostPointsAt":"2023-02-16T05:25:56.387769Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329429Z","LastActivityAt":"2023-02-16T05:25:56.387769Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110726,"Name":"BiiLii","NumVillages":1,"Points":162,"Rank":2339,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110726","BestRank":2339,"BestRankAt":"2023-02-16T05:25:56.38777Z","MostPoints":162,"MostPointsAt":"2023-02-16T05:25:49.329429Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329429Z","LastActivityAt":"2023-02-16T05:25:49.329429Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1150,"ScoreAtt":13477,"RankDef":0,"ScoreDef":0,"RankSup":1346,"ScoreSup":6,"RankTotal":1941,"ScoreTotal":13483,"ID":849110743,"Name":"Bart97","NumVillages":4,"Points":15090,"Rank":997,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110743","BestRank":997,"BestRankAt":"2023-02-16T05:25:56.38777Z","MostPoints":15090,"MostPointsAt":"2023-02-16T05:25:56.38777Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:56.38777Z","LastActivityAt":"2023-02-16T05:25:56.38777Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110747,"Name":"knoxville5","NumVillages":1,"Points":26,"Rank":2818,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110747","BestRank":2818,"BestRankAt":"2023-02-16T05:25:56.387771Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.32943Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32943Z","LastActivityAt":"2023-02-16T05:25:49.32943Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110781,"Name":"BabciaZosia","NumVillages":1,"Points":59,"Rank":2530,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110781","BestRank":2530,"BestRankAt":"2023-02-16T05:25:56.387771Z","MostPoints":59,"MostPointsAt":"2023-02-16T05:25:49.329431Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329431Z","LastActivityAt":"2023-02-16T05:25:49.329431Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329711Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849110852,"Name":"mysza","NumVillages":1,"Points":433,"Rank":2051,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110852","BestRank":2051,"BestRankAt":"2023-02-16T05:25:56.387772Z","MostPoints":433,"MostPointsAt":"2023-02-16T05:25:56.387772Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329431Z","LastActivityAt":"2023-02-16T05:25:56.387772Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2319,"ScoreDef":127,"RankSup":0,"ScoreSup":0,"RankTotal":2408,"ScoreTotal":127,"ID":849110916,"Name":"Chronek09","NumVillages":1,"Points":658,"Rank":1945,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849110916","BestRank":1945,"BestRankAt":"2023-02-16T05:25:56.387772Z","MostPoints":658,"MostPointsAt":"2023-02-16T05:25:49.329432Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329432Z","LastActivityAt":"2023-02-16T05:25:49.329432Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1271,"ScoreAtt":7117,"RankDef":2384,"ScoreDef":20,"RankSup":0,"ScoreSup":0,"RankTotal":2056,"ScoreTotal":7137,"ID":849111050,"Name":"Tomkos","NumVillages":2,"Points":3977,"Rank":1404,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111050","BestRank":1404,"BestRankAt":"2023-02-16T05:25:56.387773Z","MostPoints":3977,"MostPointsAt":"2023-02-16T05:25:49.329433Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329432Z","LastActivityAt":"2023-02-16T05:25:49.329433Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111052,"Name":"FAST ROTHMANS","NumVillages":1,"Points":26,"Rank":2819,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111052","BestRank":2819,"BestRankAt":"2023-02-16T05:25:56.387773Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329433Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329433Z","LastActivityAt":"2023-02-16T05:25:49.329433Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111109,"Name":"Cinse","NumVillages":1,"Points":117,"Rank":2431,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111109","BestRank":2431,"BestRankAt":"2023-02-16T05:25:56.387774Z","MostPoints":117,"MostPointsAt":"2023-02-16T05:25:49.329434Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329434Z","LastActivityAt":"2023-02-16T05:25:49.329434Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111121,"Name":"t0m45","NumVillages":1,"Points":192,"Rank":2294,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111121","BestRank":2294,"BestRankAt":"2023-02-16T05:25:56.387774Z","MostPoints":192,"MostPointsAt":"2023-02-16T05:25:49.329434Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329434Z","LastActivityAt":"2023-02-16T05:25:49.329434Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1506,"ScoreAtt":2209,"RankDef":1333,"ScoreDef":53222,"RankSup":958,"ScoreSup":6958,"RankTotal":1532,"ScoreTotal":62389,"ID":849111196,"Name":"batomixmix","NumVillages":4,"Points":20240,"Rank":916,"TribeID":1597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111196","BestRank":916,"BestRankAt":"2023-02-16T05:25:56.387775Z","MostPoints":20240,"MostPointsAt":"2023-02-16T05:25:56.387775Z","MostVillages":4,"MostVillagesAt":"2023-02-16T05:25:49.329435Z","LastActivityAt":"2023-02-16T05:25:56.387775Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":1358,"ScoreSup":4,"RankTotal":2542,"ScoreTotal":4,"ID":849111231,"Name":"Ciapolos","NumVillages":1,"Points":3203,"Rank":1488,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111231","BestRank":1488,"BestRankAt":"2023-02-16T05:25:56.387775Z","MostPoints":3203,"MostPointsAt":"2023-02-16T05:25:56.387775Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329435Z","LastActivityAt":"2023-02-16T05:25:56.387776Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1533,"ScoreAtt":1978,"RankDef":2329,"ScoreDef":88,"RankSup":0,"ScoreSup":0,"RankTotal":2225,"ScoreTotal":2066,"ID":849111244,"Name":"MannyKing97","NumVillages":1,"Points":4518,"Rank":1359,"TribeID":722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111244","BestRank":1359,"BestRankAt":"2023-02-16T05:25:56.387776Z","MostPoints":4518,"MostPointsAt":"2023-02-16T05:25:56.387776Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329436Z","LastActivityAt":"2023-02-16T05:25:56.387776Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1847,"ScoreAtt":110,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2415,"ScoreTotal":110,"ID":849111316,"Name":"Pazuros","NumVillages":1,"Points":3090,"Rank":1500,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111316","BestRank":1500,"BestRankAt":"2023-02-16T05:25:56.387776Z","MostPoints":3090,"MostPointsAt":"2023-02-16T05:25:49.329436Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329436Z","LastActivityAt":"2023-02-16T05:25:49.329437Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1343,"ScoreAtt":5308,"RankDef":2413,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2109,"ScoreTotal":5318,"ID":849111332,"Name":"w00hanczyk","NumVillages":3,"Points":5572,"Rank":1288,"TribeID":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111332","BestRank":1288,"BestRankAt":"2023-02-16T05:25:56.387777Z","MostPoints":5572,"MostPointsAt":"2023-02-16T05:25:56.387777Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:56.387777Z","LastActivityAt":"2023-02-16T05:25:56.387777Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1746,"ScoreAtt":310,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2360,"ScoreTotal":310,"ID":849111408,"Name":"Lisq12","NumVillages":1,"Points":3712,"Rank":1427,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111408","BestRank":1427,"BestRankAt":"2023-02-16T05:25:56.387777Z","MostPoints":3712,"MostPointsAt":"2023-02-16T05:25:56.387778Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329437Z","LastActivityAt":"2023-02-16T05:25:56.387778Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1904,"ScoreAtt":39,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2454,"ScoreTotal":39,"ID":849111418,"Name":"adamcx91","NumVillages":1,"Points":1457,"Rank":1743,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111418","BestRank":1743,"BestRankAt":"2023-02-16T05:25:56.387778Z","MostPoints":1457,"MostPointsAt":"2023-02-16T05:25:56.387778Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329438Z","LastActivityAt":"2023-02-16T05:25:56.387778Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329714Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2468,"ScoreDef":4,"RankSup":1361,"ScoreSup":4,"RankTotal":2535,"ScoreTotal":8,"ID":849111487,"Name":"smokee944","NumVillages":1,"Points":4988,"Rank":1324,"TribeID":24,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111487","BestRank":1324,"BestRankAt":"2023-02-16T05:25:56.387779Z","MostPoints":4988,"MostPointsAt":"2023-02-16T05:25:56.387779Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329439Z","LastActivityAt":"2023-02-16T05:25:56.387779Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329715Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2338,"ScoreDef":65,"RankSup":0,"ScoreSup":0,"RankTotal":2431,"ScoreTotal":65,"ID":849111632,"Name":"UlanyKaplan","NumVillages":1,"Points":524,"Rank":1997,"TribeID":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111632","BestRank":1997,"BestRankAt":"2023-02-16T05:25:56.387779Z","MostPoints":524,"MostPointsAt":"2023-02-16T05:25:49.329439Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329439Z","LastActivityAt":"2023-02-16T05:25:49.329439Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329715Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1889,"ScoreAtt":50,"RankDef":1613,"ScoreDef":24609,"RankSup":0,"ScoreSup":0,"RankTotal":1817,"ScoreTotal":24659,"ID":849111667,"Name":"Artur350","NumVillages":0,"Points":0,"Rank":3095,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111667","BestRank":3095,"BestRankAt":"2023-02-16T05:25:56.38778Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.32944Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.32944Z","LastActivityAt":"2023-02-16T05:25:49.32944Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329715Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1799,"ScoreAtt":178,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2387,"ScoreTotal":178,"ID":849111732,"Name":"Dragonics1991","NumVillages":1,"Points":1549,"Rank":1726,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111732","BestRank":1726,"BestRankAt":"2023-02-16T05:25:56.38778Z","MostPoints":1549,"MostPointsAt":"2023-02-16T05:25:49.32944Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32944Z","LastActivityAt":"2023-02-16T05:25:49.32944Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329715Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1718,"ScoreAtt":419,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2346,"ScoreTotal":419,"ID":849111792,"Name":"zbigniew.G","NumVillages":1,"Points":7417,"Rank":1187,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111792","BestRank":1187,"BestRankAt":"2023-02-16T05:25:56.387781Z","MostPoints":7417,"MostPointsAt":"2023-02-16T05:25:56.387781Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329441Z","LastActivityAt":"2023-02-16T05:25:56.387781Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1794,"ScoreAtt":186,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2384,"ScoreTotal":186,"ID":849111819,"Name":"Lord darecki2","NumVillages":1,"Points":3177,"Rank":1489,"TribeID":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111819","BestRank":1489,"BestRankAt":"2023-02-16T05:25:56.387781Z","MostPoints":3177,"MostPointsAt":"2023-02-16T05:25:49.329441Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329441Z","LastActivityAt":"2023-02-16T05:25:49.329442Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849111911,"Name":"pebloss","NumVillages":1,"Points":4139,"Rank":1389,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849111911","BestRank":1389,"BestRankAt":"2023-02-16T05:25:56.387782Z","MostPoints":4139,"MostPointsAt":"2023-02-16T05:25:56.387782Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329442Z","LastActivityAt":"2023-02-16T05:25:56.387782Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1224,"ScoreAtt":9237,"RankDef":2209,"ScoreDef":820,"RankSup":1028,"ScoreSup":3432,"RankTotal":1940,"ScoreTotal":13489,"ID":849112029,"Name":"macqu","NumVillages":2,"Points":6930,"Rank":1211,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112029","BestRank":1211,"BestRankAt":"2023-02-16T05:25:56.387782Z","MostPoints":6930,"MostPointsAt":"2023-02-16T05:25:56.387782Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329442Z","LastActivityAt":"2023-02-16T05:25:56.387782Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2460,"ScoreDef":6,"RankSup":1090,"ScoreSup":2061,"RankTotal":2223,"ScoreTotal":2067,"ID":849112033,"Name":"Paxon13","NumVillages":2,"Points":5393,"Rank":1302,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112033","BestRank":1302,"BestRankAt":"2023-02-16T05:25:56.387783Z","MostPoints":5393,"MostPointsAt":"2023-02-16T05:25:56.387783Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329443Z","LastActivityAt":"2023-02-16T05:25:56.387783Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1764,"ScoreDef":14091,"RankSup":0,"ScoreSup":0,"RankTotal":1934,"ScoreTotal":14091,"ID":849112050,"Name":"nowikpzk","NumVillages":1,"Points":1223,"Rank":1787,"TribeID":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112050","BestRank":1787,"BestRankAt":"2023-02-16T05:25:56.387783Z","MostPoints":1223,"MostPointsAt":"2023-02-16T05:25:56.387783Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329444Z","LastActivityAt":"2023-02-16T05:25:56.387784Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112094,"Name":"herqers","NumVillages":1,"Points":3545,"Rank":1451,"TribeID":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112094","BestRank":1451,"BestRankAt":"2023-02-16T05:25:56.387784Z","MostPoints":3545,"MostPointsAt":"2023-02-16T05:25:56.387784Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329444Z","LastActivityAt":"2023-02-16T05:25:56.387784Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112178,"Name":"paweƂdante","NumVillages":1,"Points":52,"Rank":2547,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112178","BestRank":2547,"BestRankAt":"2023-02-16T05:25:56.387784Z","MostPoints":52,"MostPointsAt":"2023-02-16T05:25:49.329445Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329445Z","LastActivityAt":"2023-02-16T05:25:49.329445Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2486,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2559,"ScoreTotal":1,"ID":849112264,"Name":"Kacperr12","NumVillages":1,"Points":47,"Rank":2565,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112264","BestRank":2565,"BestRankAt":"2023-02-16T05:25:56.387785Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:49.329445Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329445Z","LastActivityAt":"2023-02-16T05:25:49.329445Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2465,"ScoreDef":4,"RankSup":0,"ScoreSup":0,"RankTotal":2544,"ScoreTotal":4,"ID":849112312,"Name":"Natalia1999","NumVillages":1,"Points":2357,"Rank":1594,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112312","BestRank":1594,"BestRankAt":"2023-02-16T05:25:56.387785Z","MostPoints":2357,"MostPointsAt":"2023-02-16T05:25:49.329446Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329446Z","LastActivityAt":"2023-02-16T05:25:49.329446Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329718Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1480,"ScoreAtt":2529,"RankDef":1785,"ScoreDef":13027,"RankSup":0,"ScoreSup":0,"RankTotal":1918,"ScoreTotal":15556,"ID":849112368,"Name":"Ruchna722","NumVillages":1,"Points":2394,"Rank":1588,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112368","BestRank":1588,"BestRankAt":"2023-02-16T05:25:56.387786Z","MostPoints":2394,"MostPointsAt":"2023-02-16T05:25:56.387786Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329446Z","LastActivityAt":"2023-02-16T05:25:56.387786Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329718Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1682,"ScoreAtt":665,"RankDef":2025,"ScoreDef":3972,"RankSup":0,"ScoreSup":0,"RankTotal":2131,"ScoreTotal":4637,"ID":849112369,"Name":"malagagaga","NumVillages":2,"Points":4611,"Rank":1353,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112369","BestRank":1353,"BestRankAt":"2023-02-16T05:25:56.387786Z","MostPoints":4611,"MostPointsAt":"2023-02-16T05:25:49.329447Z","MostVillages":2,"MostVillagesAt":"2023-02-16T05:25:49.329447Z","LastActivityAt":"2023-02-16T05:25:49.329447Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329718Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2374,"ScoreDef":23,"RankSup":0,"ScoreSup":0,"RankTotal":2474,"ScoreTotal":23,"ID":849112435,"Name":"Quattro only","NumVillages":1,"Points":6253,"Rank":1250,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112435","BestRank":1250,"BestRankAt":"2023-02-16T05:25:56.387787Z","MostPoints":6253,"MostPointsAt":"2023-02-16T05:25:56.387787Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329447Z","LastActivityAt":"2023-02-16T05:25:56.387787Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329718Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112443,"Name":"brodatykebab","NumVillages":1,"Points":26,"Rank":2820,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112443","BestRank":2820,"BestRankAt":"2023-02-16T05:25:56.387787Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329448Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329448Z","LastActivityAt":"2023-02-16T05:25:49.329448Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112504,"Name":"HucuPL","NumVillages":1,"Points":3131,"Rank":1497,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112504","BestRank":1497,"BestRankAt":"2023-02-16T05:25:56.387788Z","MostPoints":3131,"MostPointsAt":"2023-02-16T05:25:56.387788Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329449Z","LastActivityAt":"2023-02-16T05:25:56.387788Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1926,"ScoreAtt":27,"RankDef":2082,"ScoreDef":2831,"RankSup":0,"ScoreSup":0,"RankTotal":2195,"ScoreTotal":2858,"ID":849112510,"Name":"Chwaliszew2008","NumVillages":1,"Points":168,"Rank":2332,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112510","BestRank":2332,"BestRankAt":"2023-02-16T05:25:56.387788Z","MostPoints":168,"MostPointsAt":"2023-02-16T05:25:56.387789Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329449Z","LastActivityAt":"2023-02-16T05:25:56.387789Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112561,"Name":"Stefan Batory V","NumVillages":1,"Points":26,"Rank":2821,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112561","BestRank":2821,"BestRankAt":"2023-02-16T05:25:56.387789Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.32945Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32945Z","LastActivityAt":"2023-02-16T05:25:49.32945Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112666,"Name":"DiscoZenon","NumVillages":1,"Points":144,"Rank":2361,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112666","BestRank":2361,"BestRankAt":"2023-02-16T05:25:56.38779Z","MostPoints":144,"MostPointsAt":"2023-02-16T05:25:56.38779Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32945Z","LastActivityAt":"2023-02-16T05:25:56.38779Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329719Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112725,"Name":"domin964","NumVillages":1,"Points":2064,"Rank":1644,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112725","BestRank":1644,"BestRankAt":"2023-02-16T05:25:56.38779Z","MostPoints":2064,"MostPointsAt":"2023-02-16T05:25:49.329451Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329451Z","LastActivityAt":"2023-02-16T05:25:49.329451Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112733,"Name":"Astecki","NumVillages":1,"Points":52,"Rank":2548,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112733","BestRank":2548,"BestRankAt":"2023-02-16T05:25:56.387791Z","MostPoints":52,"MostPointsAt":"2023-02-16T05:25:49.329451Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329451Z","LastActivityAt":"2023-02-16T05:25:49.329451Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1894,"ScoreDef":7942,"RankSup":0,"ScoreSup":0,"RankTotal":2037,"ScoreTotal":7942,"ID":849112774,"Name":"Xpace67","NumVillages":1,"Points":26,"Rank":2822,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112774","BestRank":2822,"BestRankAt":"2023-02-16T05:25:56.387791Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329452Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329452Z","LastActivityAt":"2023-02-16T05:25:49.329452Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849112850,"Name":"Klaudia121","NumVillages":1,"Points":102,"Rank":2478,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112850","BestRank":2478,"BestRankAt":"2023-02-16T05:25:49.329452Z","MostPoints":102,"MostPointsAt":"2023-02-16T05:25:49.329452Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329452Z","LastActivityAt":"2023-02-16T05:25:49.329453Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32972Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2334,"ScoreDef":70,"RankSup":0,"ScoreSup":0,"RankTotal":2429,"ScoreTotal":70,"ID":849112876,"Name":"Fajfus","NumVillages":1,"Points":188,"Rank":2304,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112876","BestRank":2304,"BestRankAt":"2023-02-16T05:25:56.387792Z","MostPoints":188,"MostPointsAt":"2023-02-16T05:25:49.329453Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329453Z","LastActivityAt":"2023-02-16T05:25:49.329453Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1688,"ScoreAtt":587,"RankDef":1742,"ScoreDef":16078,"RankSup":0,"ScoreSup":0,"RankTotal":1903,"ScoreTotal":16665,"ID":849112879,"Name":"marcinmista","NumVillages":1,"Points":2791,"Rank":1547,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112879","BestRank":1547,"BestRankAt":"2023-02-16T05:25:56.387792Z","MostPoints":2791,"MostPointsAt":"2023-02-16T05:25:56.387792Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329453Z","LastActivityAt":"2023-02-16T05:25:56.387792Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2173,"ScoreDef":1380,"RankSup":0,"ScoreSup":0,"RankTotal":2268,"ScoreTotal":1380,"ID":849112887,"Name":"Banan123","NumVillages":1,"Points":1214,"Rank":1788,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112887","BestRank":1788,"BestRankAt":"2023-02-16T05:25:56.387793Z","MostPoints":1214,"MostPointsAt":"2023-02-16T05:25:49.329454Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329454Z","LastActivityAt":"2023-02-16T05:25:49.329454Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2389,"ScoreDef":19,"RankSup":0,"ScoreSup":0,"RankTotal":2483,"ScoreTotal":19,"ID":849112960,"Name":"Arlosik","NumVillages":1,"Points":1453,"Rank":1747,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849112960","BestRank":1747,"BestRankAt":"2023-02-16T05:25:56.387793Z","MostPoints":1453,"MostPointsAt":"2023-02-16T05:25:56.387793Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329455Z","LastActivityAt":"2023-02-16T05:25:56.387793Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1913,"ScoreAtt":34,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2460,"ScoreTotal":34,"ID":849113055,"Name":"Mlody165","NumVillages":1,"Points":2293,"Rank":1600,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113055","BestRank":1600,"BestRankAt":"2023-02-16T05:25:56.387794Z","MostPoints":2293,"MostPointsAt":"2023-02-16T05:25:49.329455Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329455Z","LastActivityAt":"2023-02-16T05:25:49.329455Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329721Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113063,"Name":"Nowicjusz1","NumVillages":1,"Points":64,"Rank":2522,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113063","BestRank":2522,"BestRankAt":"2023-02-16T05:25:56.387794Z","MostPoints":64,"MostPointsAt":"2023-02-16T05:25:49.329456Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329456Z","LastActivityAt":"2023-02-16T05:25:49.329456Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2481,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2557,"ScoreTotal":1,"ID":849113078,"Name":"Sara23","NumVillages":1,"Points":1402,"Rank":1755,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113078","BestRank":1755,"BestRankAt":"2023-02-16T05:25:56.387795Z","MostPoints":1402,"MostPointsAt":"2023-02-16T05:25:49.329456Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329456Z","LastActivityAt":"2023-02-16T05:25:49.329456Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113226,"Name":"Adison II ƚmiaƂy","NumVillages":1,"Points":487,"Rank":2020,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113226","BestRank":2020,"BestRankAt":"2023-02-16T05:25:56.387795Z","MostPoints":487,"MostPointsAt":"2023-02-16T05:25:56.387795Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329457Z","LastActivityAt":"2023-02-16T05:25:56.387795Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2355,"ScoreDef":40,"RankSup":0,"ScoreSup":0,"RankTotal":2452,"ScoreTotal":40,"ID":849113300,"Name":"Sir sernik","NumVillages":1,"Points":313,"Rank":2141,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113300","BestRank":2141,"BestRankAt":"2023-02-16T05:25:56.387796Z","MostPoints":313,"MostPointsAt":"2023-02-16T05:25:49.329457Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329457Z","LastActivityAt":"2023-02-16T05:25:49.329457Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329722Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2204,"ScoreDef":897,"RankSup":0,"ScoreSup":0,"RankTotal":2291,"ScoreTotal":897,"ID":849113350,"Name":"SirPatryk23","NumVillages":0,"Points":0,"Rank":3096,"TribeID":1526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113350","BestRank":3096,"BestRankAt":"2023-02-16T05:25:56.387796Z","MostPoints":0,"MostPointsAt":"2023-02-16T05:25:49.329458Z","MostVillages":0,"MostVillagesAt":"2023-02-16T05:25:49.329458Z","LastActivityAt":"2023-02-16T05:25:49.329458Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":1331,"ScoreSup":11,"RankTotal":2507,"ScoreTotal":11,"ID":849113480,"Name":"Olek96","NumVillages":1,"Points":1907,"Rank":1670,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113480","BestRank":1670,"BestRankAt":"2023-02-16T05:25:56.387797Z","MostPoints":1907,"MostPointsAt":"2023-02-16T05:25:56.387797Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329458Z","LastActivityAt":"2023-02-16T05:25:56.387797Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2252,"ScoreDef":478,"RankSup":0,"ScoreSup":0,"RankTotal":2334,"ScoreTotal":478,"ID":849113485,"Name":"Knoxpl","NumVillages":1,"Points":48,"Rank":2559,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113485","BestRank":2559,"BestRankAt":"2023-02-16T05:25:56.387797Z","MostPoints":48,"MostPointsAt":"2023-02-16T05:25:49.329459Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329459Z","LastActivityAt":"2023-02-16T05:25:49.329459Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1620,"ScoreAtt":1002,"RankDef":2291,"ScoreDef":241,"RankSup":0,"ScoreSup":0,"RankTotal":2279,"ScoreTotal":1243,"ID":849113546,"Name":"bboy1994","NumVillages":3,"Points":6701,"Rank":1224,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113546","BestRank":1224,"BestRankAt":"2023-02-16T05:25:56.387798Z","MostPoints":6701,"MostPointsAt":"2023-02-16T05:25:56.387798Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.32946Z","LastActivityAt":"2023-02-16T05:25:56.387798Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113556,"Name":"aghjs5","NumVillages":1,"Points":269,"Rank":2191,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113556","BestRank":2191,"BestRankAt":"2023-02-16T05:25:56.387798Z","MostPoints":269,"MostPointsAt":"2023-02-16T05:25:56.387798Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32946Z","LastActivityAt":"2023-02-16T05:25:56.387798Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113580,"Name":"Marcin Marci","NumVillages":1,"Points":26,"Rank":2823,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113580","BestRank":2823,"BestRankAt":"2023-02-16T05:25:56.387799Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329461Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329461Z","LastActivityAt":"2023-02-16T05:25:49.329461Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1337,"ScoreAtt":5382,"RankDef":0,"ScoreDef":0,"RankSup":1363,"ScoreSup":4,"RankTotal":2104,"ScoreTotal":5386,"ID":849113595,"Name":"Kosiaczkyyy","NumVillages":1,"Points":1371,"Rank":1761,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113595","BestRank":1761,"BestRankAt":"2023-02-16T05:25:56.387799Z","MostPoints":1371,"MostPointsAt":"2023-02-16T05:25:56.387799Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329461Z","LastActivityAt":"2023-02-16T05:25:56.387799Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1584,"ScoreAtt":1330,"RankDef":2036,"ScoreDef":3798,"RankSup":0,"ScoreSup":0,"RankTotal":2117,"ScoreTotal":5128,"ID":849113597,"Name":"Wenol","NumVillages":1,"Points":1782,"Rank":1691,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113597","BestRank":1691,"BestRankAt":"2023-02-16T05:25:56.3878Z","MostPoints":1782,"MostPointsAt":"2023-02-16T05:25:56.3878Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329462Z","LastActivityAt":"2023-02-16T05:25:56.3878Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2378,"ScoreDef":22,"RankSup":0,"ScoreSup":0,"RankTotal":2476,"ScoreTotal":22,"ID":849113603,"Name":"JW94","NumVillages":1,"Points":859,"Rank":1886,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113603","BestRank":1886,"BestRankAt":"2023-02-16T05:25:56.3878Z","MostPoints":859,"MostPointsAt":"2023-02-16T05:25:56.3878Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329462Z","LastActivityAt":"2023-02-16T05:25:56.387801Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2250,"ScoreDef":512,"RankSup":0,"ScoreSup":0,"RankTotal":2327,"ScoreTotal":512,"ID":849113673,"Name":"Ferox-1","NumVillages":1,"Points":223,"Rank":2239,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113673","BestRank":2239,"BestRankAt":"2023-02-16T05:25:56.387801Z","MostPoints":223,"MostPointsAt":"2023-02-16T05:25:49.329463Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329463Z","LastActivityAt":"2023-02-16T05:25:49.329463Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113819,"Name":"NurseJK","NumVillages":1,"Points":1520,"Rank":1733,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113819","BestRank":1733,"BestRankAt":"2023-02-16T05:25:56.387801Z","MostPoints":1520,"MostPointsAt":"2023-02-16T05:25:56.387802Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329463Z","LastActivityAt":"2023-02-16T05:25:56.387802Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849113868,"Name":"Mroczne Elfy 1","NumVillages":1,"Points":102,"Rank":2457,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849113868","BestRank":2457,"BestRankAt":"2023-02-16T05:25:56.387802Z","MostPoints":102,"MostPointsAt":"2023-02-16T05:25:49.329464Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329464Z","LastActivityAt":"2023-02-16T05:25:49.329464Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2439,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2511,"ScoreTotal":10,"ID":849114022,"Name":"gmaciejwagner","NumVillages":1,"Points":891,"Rank":1869,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114022","BestRank":1869,"BestRankAt":"2023-02-16T05:25:56.387802Z","MostPoints":891,"MostPointsAt":"2023-02-16T05:25:56.387803Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329464Z","LastActivityAt":"2023-02-16T05:25:56.387803Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329725Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1712,"ScoreAtt":464,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2337,"ScoreTotal":464,"ID":849114028,"Name":"KoƂowata","NumVillages":1,"Points":437,"Rank":2048,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114028","BestRank":2048,"BestRankAt":"2023-02-16T05:25:56.387803Z","MostPoints":437,"MostPointsAt":"2023-02-16T05:25:56.387803Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329465Z","LastActivityAt":"2023-02-16T05:25:56.387803Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2226,"ScoreDef":678,"RankSup":0,"ScoreSup":0,"RankTotal":2312,"ScoreTotal":678,"ID":849114033,"Name":"przemysƂ II","NumVillages":1,"Points":1126,"Rank":1813,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114033","BestRank":1813,"BestRankAt":"2023-02-16T05:25:56.387804Z","MostPoints":1126,"MostPointsAt":"2023-02-16T05:25:49.329466Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329466Z","LastActivityAt":"2023-02-16T05:25:49.329466Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114040,"Name":"Kulfix","NumVillages":1,"Points":521,"Rank":2000,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114040","BestRank":2000,"BestRankAt":"2023-02-16T05:25:56.387804Z","MostPoints":521,"MostPointsAt":"2023-02-16T05:25:49.329466Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329466Z","LastActivityAt":"2023-02-16T05:25:49.329466Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1544,"ScoreAtt":1820,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2242,"ScoreTotal":1820,"ID":849114085,"Name":"Krystiann11","NumVillages":1,"Points":1980,"Rank":1657,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114085","BestRank":1657,"BestRankAt":"2023-02-16T05:25:56.387804Z","MostPoints":1980,"MostPointsAt":"2023-02-16T05:25:56.387805Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329467Z","LastActivityAt":"2023-02-16T05:25:56.387805Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329726Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2423,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2517,"ScoreTotal":10,"ID":849114112,"Name":"Adikson16","NumVillages":1,"Points":143,"Rank":2365,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114112","BestRank":2365,"BestRankAt":"2023-02-16T05:25:56.387805Z","MostPoints":143,"MostPointsAt":"2023-02-16T05:25:49.329467Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329467Z","LastActivityAt":"2023-02-16T05:25:49.329467Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2159,"ScoreDef":1628,"RankSup":0,"ScoreSup":0,"RankTotal":2255,"ScoreTotal":1628,"ID":849114119,"Name":"Adek77","NumVillages":1,"Points":1107,"Rank":1821,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114119","BestRank":1821,"BestRankAt":"2023-02-16T05:25:56.387806Z","MostPoints":1107,"MostPointsAt":"2023-02-16T05:25:56.387806Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329468Z","LastActivityAt":"2023-02-16T05:25:56.387806Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1822,"ScoreAtt":142,"RankDef":2330,"ScoreDef":88,"RankSup":0,"ScoreSup":0,"RankTotal":2377,"ScoreTotal":230,"ID":849114265,"Name":"narcyz3973","NumVillages":2,"Points":12273,"Rank":1041,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114265","BestRank":1041,"BestRankAt":"2023-02-16T05:25:56.387806Z","MostPoints":12273,"MostPointsAt":"2023-02-16T05:25:56.387806Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.329468Z","LastActivityAt":"2023-02-16T05:25:56.387806Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1528,"ScoreAtt":2030,"RankDef":2023,"ScoreDef":3998,"RankSup":0,"ScoreSup":0,"RankTotal":2084,"ScoreTotal":6028,"ID":849114408,"Name":"Ragnarok 76","NumVillages":1,"Points":1027,"Rank":1840,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114408","BestRank":1840,"BestRankAt":"2023-02-16T05:25:56.387807Z","MostPoints":1027,"MostPointsAt":"2023-02-16T05:25:49.329469Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329469Z","LastActivityAt":"2023-02-16T05:25:49.329469Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329727Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2408,"ScoreDef":12,"RankSup":1410,"ScoreSup":1,"RankTotal":2502,"ScoreTotal":13,"ID":849114445,"Name":"kindza","NumVillages":1,"Points":1859,"Rank":1679,"TribeID":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114445","BestRank":1679,"BestRankAt":"2023-02-16T05:25:56.387807Z","MostPoints":1859,"MostPointsAt":"2023-02-16T05:25:56.387807Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329469Z","LastActivityAt":"2023-02-16T05:25:56.387807Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2352,"ScoreDef":42,"RankSup":0,"ScoreSup":0,"RankTotal":2450,"ScoreTotal":42,"ID":849114450,"Name":"matipo321","NumVillages":1,"Points":113,"Rank":2440,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114450","BestRank":2440,"BestRankAt":"2023-02-16T05:25:56.387808Z","MostPoints":113,"MostPointsAt":"2023-02-16T05:25:49.32947Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32947Z","LastActivityAt":"2023-02-16T05:25:49.32947Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1924,"ScoreAtt":28,"RankDef":2326,"ScoreDef":95,"RankSup":0,"ScoreSup":0,"RankTotal":2410,"ScoreTotal":123,"ID":849114477,"Name":"Monczi25","NumVillages":1,"Points":198,"Rank":2276,"TribeID":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114477","BestRank":2276,"BestRankAt":"2023-02-16T05:25:56.387808Z","MostPoints":198,"MostPointsAt":"2023-02-16T05:25:49.329471Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329471Z","LastActivityAt":"2023-02-16T05:25:49.329471Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2448,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2526,"ScoreTotal":10,"ID":849114502,"Name":"sada2","NumVillages":1,"Points":3943,"Rank":1406,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114502","BestRank":1406,"BestRankAt":"2023-02-16T05:25:56.387809Z","MostPoints":3943,"MostPointsAt":"2023-02-16T05:25:49.329471Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329471Z","LastActivityAt":"2023-02-16T05:25:49.329471Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1833,"ScoreAtt":134,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2405,"ScoreTotal":134,"ID":849114579,"Name":"SzymonMF6465","NumVillages":1,"Points":7901,"Rank":1159,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114579","BestRank":1159,"BestRankAt":"2023-02-16T05:25:56.387809Z","MostPoints":7901,"MostPointsAt":"2023-02-16T05:25:49.329472Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329472Z","LastActivityAt":"2023-02-16T05:25:49.329472Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329728Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114603,"Name":"Flink","NumVillages":1,"Points":222,"Rank":2243,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114603","BestRank":2243,"BestRankAt":"2023-02-16T05:25:56.38781Z","MostPoints":222,"MostPointsAt":"2023-02-16T05:25:49.329472Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329472Z","LastActivityAt":"2023-02-16T05:25:49.329472Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849114664,"Name":"Patryk95","NumVillages":1,"Points":26,"Rank":2824,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114664","BestRank":2824,"BestRankAt":"2023-02-16T05:25:56.38781Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329473Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329473Z","LastActivityAt":"2023-02-16T05:25:49.329473Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2363,"ScoreDef":30,"RankSup":0,"ScoreSup":0,"RankTotal":2465,"ScoreTotal":30,"ID":849114683,"Name":"jareczek951","NumVillages":1,"Points":1053,"Rank":1834,"TribeID":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849114683","BestRank":1834,"BestRankAt":"2023-02-16T05:25:56.38781Z","MostPoints":1053,"MostPointsAt":"2023-02-16T05:25:56.387811Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329473Z","LastActivityAt":"2023-02-16T05:25:56.387811Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115010,"Name":"Treon","NumVillages":1,"Points":53,"Rank":2543,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115010","BestRank":2543,"BestRankAt":"2023-02-16T05:25:56.387811Z","MostPoints":53,"MostPointsAt":"2023-02-16T05:25:49.329474Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329474Z","LastActivityAt":"2023-02-16T05:25:49.329474Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329729Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2403,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2496,"ScoreTotal":13,"ID":849115254,"Name":"Simon93","NumVillages":1,"Points":1620,"Rank":1713,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115254","BestRank":1713,"BestRankAt":"2023-02-16T05:25:56.387812Z","MostPoints":1620,"MostPointsAt":"2023-02-16T05:25:56.387812Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329474Z","LastActivityAt":"2023-02-16T05:25:56.387812Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115256,"Name":"CorAngar96","NumVillages":1,"Points":44,"Rank":2572,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115256","BestRank":2572,"BestRankAt":"2023-02-16T05:25:56.387812Z","MostPoints":44,"MostPointsAt":"2023-02-16T05:25:49.329475Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329475Z","LastActivityAt":"2023-02-16T05:25:49.329475Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115304,"Name":"kijek","NumVillages":1,"Points":38,"Rank":2581,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115304","BestRank":2581,"BestRankAt":"2023-02-16T05:25:56.387813Z","MostPoints":38,"MostPointsAt":"2023-02-16T05:25:49.329476Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329475Z","LastActivityAt":"2023-02-16T05:25:49.329476Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115365,"Name":"Pati999","NumVillages":1,"Points":196,"Rank":2283,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115365","BestRank":2283,"BestRankAt":"2023-02-16T05:25:56.387813Z","MostPoints":196,"MostPointsAt":"2023-02-16T05:25:49.329476Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329476Z","LastActivityAt":"2023-02-16T05:25:49.329476Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1923,"ScoreAtt":28,"RankDef":2474,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":2463,"ScoreTotal":30,"ID":849115431,"Name":"fifiogf","NumVillages":1,"Points":717,"Rank":1926,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115431","BestRank":1926,"BestRankAt":"2023-02-16T05:25:56.387814Z","MostPoints":717,"MostPointsAt":"2023-02-16T05:25:56.387814Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329477Z","LastActivityAt":"2023-02-16T05:25:56.387814Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.32973Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115509,"Name":"Kox12344","NumVillages":1,"Points":198,"Rank":2277,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115509","BestRank":2277,"BestRankAt":"2023-02-16T05:25:56.387814Z","MostPoints":198,"MostPointsAt":"2023-02-16T05:25:56.387814Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329477Z","LastActivityAt":"2023-02-16T05:25:56.387814Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849115920,"Name":"Damian2023","NumVillages":1,"Points":121,"Rank":2422,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115920","BestRank":2422,"BestRankAt":"2023-02-16T05:25:56.387815Z","MostPoints":121,"MostPointsAt":"2023-02-16T05:25:49.329478Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329478Z","LastActivityAt":"2023-02-16T05:25:49.329478Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2399,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2498,"ScoreTotal":13,"ID":849115994,"Name":"Struma","NumVillages":1,"Points":212,"Rank":2250,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849115994","BestRank":2250,"BestRankAt":"2023-02-16T05:25:56.387815Z","MostPoints":212,"MostPointsAt":"2023-02-16T05:25:49.329478Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329478Z","LastActivityAt":"2023-02-16T05:25:49.329478Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116044,"Name":"Mandrysi","NumVillages":1,"Points":295,"Rank":2160,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116044","BestRank":2160,"BestRankAt":"2023-02-16T05:25:56.387816Z","MostPoints":295,"MostPointsAt":"2023-02-16T05:25:49.329479Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329479Z","LastActivityAt":"2023-02-16T05:25:49.329479Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329731Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116089,"Name":"tribal766","NumVillages":1,"Points":26,"Rank":2825,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116089","BestRank":2825,"BestRankAt":"2023-02-16T05:25:56.387816Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.329479Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.329479Z","LastActivityAt":"2023-02-16T05:25:49.329479Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1701,"ScoreAtt":530,"RankDef":1995,"ScoreDef":4749,"RankSup":0,"ScoreSup":0,"RankTotal":2111,"ScoreTotal":5279,"ID":849116221,"Name":"ChadxikH8","NumVillages":3,"Points":5497,"Rank":1294,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116221","BestRank":1294,"BestRankAt":"2023-02-16T05:25:56.387817Z","MostPoints":5497,"MostPointsAt":"2023-02-16T05:25:56.387817Z","MostVillages":3,"MostVillagesAt":"2023-02-16T05:25:49.32948Z","LastActivityAt":"2023-02-16T05:25:56.387817Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116225,"Name":"Pongo","NumVillages":1,"Points":46,"Rank":2568,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116225","BestRank":2568,"BestRankAt":"2023-02-16T05:25:56.387817Z","MostPoints":46,"MostPointsAt":"2023-02-16T05:25:49.329481Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.32948Z","LastActivityAt":"2023-02-16T05:25:49.329481Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.329732Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116251,"Name":"natofp","NumVillages":1,"Points":101,"Rank":2461,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116251","BestRank":2461,"BestRankAt":"2023-02-16T05:25:56.387818Z","MostPoints":101,"MostPointsAt":"2023-02-16T05:25:49.456554Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456553Z","LastActivityAt":"2023-02-16T05:25:49.456554Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116287,"Name":"Jozin321","NumVillages":1,"Points":234,"Rank":2226,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116287","BestRank":2226,"BestRankAt":"2023-02-16T05:25:56.387818Z","MostPoints":234,"MostPointsAt":"2023-02-16T05:25:49.456554Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456554Z","LastActivityAt":"2023-02-16T05:25:49.456554Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1496,"ScoreAtt":2364,"RankDef":2395,"ScoreDef":15,"RankSup":0,"ScoreSup":0,"RankTotal":2210,"ScoreTotal":2379,"ID":849116310,"Name":"VillaSHL","NumVillages":1,"Points":2427,"Rank":1584,"TribeID":778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116310","BestRank":1584,"BestRankAt":"2023-02-16T05:25:56.387819Z","MostPoints":2427,"MostPointsAt":"2023-02-16T05:25:56.387819Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456555Z","LastActivityAt":"2023-02-16T05:25:56.387819Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456661Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1890,"ScoreAtt":49,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2443,"ScoreTotal":49,"ID":849116357,"Name":"Kerakein","NumVillages":1,"Points":277,"Rank":2185,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116357","BestRank":2185,"BestRankAt":"2023-02-16T05:25:56.387819Z","MostPoints":277,"MostPointsAt":"2023-02-16T05:25:49.456555Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456555Z","LastActivityAt":"2023-02-16T05:25:49.456556Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2404,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2499,"ScoreTotal":13,"ID":849116416,"Name":"rafaltz","NumVillages":1,"Points":250,"Rank":2208,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116416","BestRank":2208,"BestRankAt":"2023-02-16T05:25:56.38782Z","MostPoints":250,"MostPointsAt":"2023-02-16T05:25:49.456557Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456557Z","LastActivityAt":"2023-02-16T05:25:49.456557Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":1830,"ScoreDef":10597,"RankSup":0,"ScoreSup":0,"RankTotal":1985,"ScoreTotal":10597,"ID":849116419,"Name":"ArtBe","NumVillages":1,"Points":2251,"Rank":1611,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116419","BestRank":1611,"BestRankAt":"2023-02-16T05:25:56.38782Z","MostPoints":2251,"MostPointsAt":"2023-02-16T05:25:49.456557Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456557Z","LastActivityAt":"2023-02-16T05:25:49.456557Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1878,"ScoreAtt":60,"RankDef":2365,"ScoreDef":28,"RankSup":0,"ScoreSup":0,"RankTotal":2424,"ScoreTotal":88,"ID":849116679,"Name":"Szy.mek","NumVillages":1,"Points":869,"Rank":1884,"TribeID":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116679","BestRank":1884,"BestRankAt":"2023-02-16T05:25:56.387821Z","MostPoints":869,"MostPointsAt":"2023-02-16T05:25:56.387821Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456558Z","LastActivityAt":"2023-02-16T05:25:56.387821Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456662Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116819,"Name":"smerfy 22","NumVillages":1,"Points":52,"Rank":2549,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116819","BestRank":2549,"BestRankAt":"2023-02-16T05:25:56.387821Z","MostPoints":52,"MostPointsAt":"2023-02-16T05:25:49.456558Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456558Z","LastActivityAt":"2023-02-16T05:25:49.456558Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849116911,"Name":"Hakal93","NumVillages":1,"Points":26,"Rank":2826,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116911","BestRank":2826,"BestRankAt":"2023-02-16T05:25:56.387822Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456559Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456559Z","LastActivityAt":"2023-02-16T05:25:49.456559Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2489,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2560,"ScoreTotal":1,"ID":849116980,"Name":"Bacik1906","NumVillages":1,"Points":26,"Rank":2827,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849116980","BestRank":2827,"BestRankAt":"2023-02-16T05:25:56.387822Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456559Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456559Z","LastActivityAt":"2023-02-16T05:25:49.45656Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117035,"Name":"Alderos","NumVillages":1,"Points":26,"Rank":2828,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117035","BestRank":2828,"BestRankAt":"2023-02-16T05:25:56.387823Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.45656Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45656Z","LastActivityAt":"2023-02-16T05:25:49.45656Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456663Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117087,"Name":"SunSun","NumVillages":1,"Points":579,"Rank":1976,"TribeID":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117087","BestRank":1976,"BestRankAt":"2023-02-16T05:25:56.387823Z","MostPoints":579,"MostPointsAt":"2023-02-16T05:25:56.387823Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456561Z","LastActivityAt":"2023-02-16T05:25:56.387823Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1673,"ScoreAtt":683,"RankDef":2444,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2311,"ScoreTotal":693,"ID":849117143,"Name":"karty123","NumVillages":1,"Points":2083,"Rank":1640,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117143","BestRank":1640,"BestRankAt":"2023-02-16T05:25:56.387824Z","MostPoints":2083,"MostPointsAt":"2023-02-16T05:25:56.387824Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456562Z","LastActivityAt":"2023-02-16T05:25:56.387824Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2241,"ScoreDef":549,"RankSup":0,"ScoreSup":0,"RankTotal":2322,"ScoreTotal":549,"ID":849117196,"Name":"ekursy","NumVillages":1,"Points":958,"Rank":1856,"TribeID":1052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117196","BestRank":1856,"BestRankAt":"2023-02-16T05:25:56.387824Z","MostPoints":958,"MostPointsAt":"2023-02-16T05:25:49.456562Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456562Z","LastActivityAt":"2023-02-16T05:25:49.456562Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2402,"ScoreDef":13,"RankSup":0,"ScoreSup":0,"RankTotal":2505,"ScoreTotal":13,"ID":849117240,"Name":"Love4evere3","NumVillages":1,"Points":349,"Rank":2112,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117240","BestRank":2112,"BestRankAt":"2023-02-16T05:25:56.387825Z","MostPoints":349,"MostPointsAt":"2023-02-16T05:25:49.456563Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456563Z","LastActivityAt":"2023-02-16T05:25:49.456563Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456664Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2103,"ScoreDef":2382,"RankSup":0,"ScoreSup":0,"RankTotal":2209,"ScoreTotal":2382,"ID":849117242,"Name":"frombosu1","NumVillages":1,"Points":1192,"Rank":1792,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117242","BestRank":1792,"BestRankAt":"2023-02-16T05:25:56.387825Z","MostPoints":1192,"MostPointsAt":"2023-02-16T05:25:56.387825Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456563Z","LastActivityAt":"2023-02-16T05:25:56.387825Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117362,"Name":"festher","NumVillages":1,"Points":1311,"Rank":1772,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117362","BestRank":1772,"BestRankAt":"2023-02-16T05:25:56.387826Z","MostPoints":1311,"MostPointsAt":"2023-02-16T05:25:56.387826Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456564Z","LastActivityAt":"2023-02-16T05:25:56.387826Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1677,"ScoreAtt":675,"RankDef":2480,"ScoreDef":1,"RankSup":0,"ScoreSup":0,"RankTotal":2313,"ScoreTotal":676,"ID":849117427,"Name":"Mateusz400","NumVillages":1,"Points":597,"Rank":1971,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117427","BestRank":1971,"BestRankAt":"2023-02-16T05:25:56.387826Z","MostPoints":597,"MostPointsAt":"2023-02-16T05:25:56.387826Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456564Z","LastActivityAt":"2023-02-16T05:25:56.387826Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2449,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2508,"ScoreTotal":10,"ID":849117454,"Name":"Bimber123","NumVillages":1,"Points":776,"Rank":1909,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117454","BestRank":1909,"BestRankAt":"2023-02-16T05:25:56.387827Z","MostPoints":776,"MostPointsAt":"2023-02-16T05:25:49.456566Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456566Z","LastActivityAt":"2023-02-16T05:25:49.456566Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117513,"Name":"heroarek","NumVillages":1,"Points":26,"Rank":2829,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117513","BestRank":2829,"BestRankAt":"2023-02-16T05:25:56.387827Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456567Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456566Z","LastActivityAt":"2023-02-16T05:25:49.456567Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2462,"ScoreDef":5,"RankSup":0,"ScoreSup":0,"RankTotal":2539,"ScoreTotal":5,"ID":849117533,"Name":"Krzysiek12","NumVillages":1,"Points":73,"Rank":2498,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117533","BestRank":2498,"BestRankAt":"2023-02-16T05:25:56.387828Z","MostPoints":73,"MostPointsAt":"2023-02-16T05:25:49.456567Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456567Z","LastActivityAt":"2023-02-16T05:25:49.456567Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117536,"Name":"Jacymir15","NumVillages":1,"Points":68,"Rank":2513,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117536","BestRank":2513,"BestRankAt":"2023-02-16T05:25:56.387828Z","MostPoints":68,"MostPointsAt":"2023-02-16T05:25:49.456568Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456568Z","LastActivityAt":"2023-02-16T05:25:49.456568Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117551,"Name":"perko","NumVillages":1,"Points":524,"Rank":1998,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117551","BestRank":1998,"BestRankAt":"2023-02-16T05:25:56.387829Z","MostPoints":524,"MostPointsAt":"2023-02-16T05:25:56.387829Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456568Z","LastActivityAt":"2023-02-16T05:25:56.387829Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117622,"Name":"smiesznylucek","NumVillages":1,"Points":1308,"Rank":1775,"TribeID":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117622","BestRank":1775,"BestRankAt":"2023-02-16T05:25:56.387829Z","MostPoints":1308,"MostPointsAt":"2023-02-16T05:25:49.456569Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456569Z","LastActivityAt":"2023-02-16T05:25:49.456569Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117644,"Name":"WillyBilly","NumVillages":1,"Points":26,"Rank":2830,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117644","BestRank":2830,"BestRankAt":"2023-02-16T05:25:56.38783Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456569Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456569Z","LastActivityAt":"2023-02-16T05:25:49.456569Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849117695,"Name":"sadomaso6903","NumVillages":1,"Points":350,"Rank":2111,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117695","BestRank":2111,"BestRankAt":"2023-02-16T05:25:56.38783Z","MostPoints":350,"MostPointsAt":"2023-02-16T05:25:49.45657Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45657Z","LastActivityAt":"2023-02-16T05:25:49.45657Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1782,"ScoreAtt":228,"RankDef":1811,"ScoreDef":11486,"RankSup":0,"ScoreSup":0,"RankTotal":1965,"ScoreTotal":11714,"ID":849117830,"Name":"kosmiczny","NumVillages":1,"Points":2257,"Rank":1609,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849117830","BestRank":1609,"BestRankAt":"2023-02-16T05:25:56.387831Z","MostPoints":2257,"MostPointsAt":"2023-02-16T05:25:56.387831Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45657Z","LastActivityAt":"2023-02-16T05:25:56.387831Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118043,"Name":"barca35fcb","NumVillages":1,"Points":26,"Rank":2831,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118043","BestRank":2831,"BestRankAt":"2023-02-16T05:25:56.387831Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456571Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456571Z","LastActivityAt":"2023-02-16T05:25:49.456571Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118128,"Name":"jaro513","NumVillages":1,"Points":228,"Rank":2231,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118128","BestRank":2231,"BestRankAt":"2023-02-16T05:25:56.387832Z","MostPoints":228,"MostPointsAt":"2023-02-16T05:25:49.456571Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456571Z","LastActivityAt":"2023-02-16T05:25:49.456572Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118231,"Name":"Czaq1","NumVillages":1,"Points":111,"Rank":2443,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118231","BestRank":2443,"BestRankAt":"2023-02-16T05:25:56.387832Z","MostPoints":111,"MostPointsAt":"2023-02-16T05:25:49.456572Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456572Z","LastActivityAt":"2023-02-16T05:25:49.456572Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1757,"ScoreAtt":282,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2364,"ScoreTotal":282,"ID":849118259,"Name":"Kopansky","NumVillages":1,"Points":1581,"Rank":1722,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118259","BestRank":1722,"BestRankAt":"2023-02-16T05:25:56.387833Z","MostPoints":1581,"MostPointsAt":"2023-02-16T05:25:56.387833Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456572Z","LastActivityAt":"2023-02-16T05:25:56.387833Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118261,"Name":"justyna010114","NumVillages":1,"Points":489,"Rank":2018,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118261","BestRank":2018,"BestRankAt":"2023-02-16T05:25:56.387833Z","MostPoints":489,"MostPointsAt":"2023-02-16T05:25:56.387833Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456573Z","LastActivityAt":"2023-02-16T05:25:56.387833Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2427,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2514,"ScoreTotal":10,"ID":849118262,"Name":"xKirioSan","NumVillages":1,"Points":424,"Rank":2059,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118262","BestRank":2059,"BestRankAt":"2023-02-16T05:25:56.387834Z","MostPoints":424,"MostPointsAt":"2023-02-16T05:25:49.456574Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456574Z","LastActivityAt":"2023-02-16T05:25:49.456574Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118435,"Name":"Budrys2000","NumVillages":1,"Points":26,"Rank":2832,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118435","BestRank":2832,"BestRankAt":"2023-02-16T05:25:56.387834Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456574Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456574Z","LastActivityAt":"2023-02-16T05:25:49.456574Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1663,"ScoreAtt":723,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2309,"ScoreTotal":723,"ID":849118441,"Name":"AdaSobieraj","NumVillages":1,"Points":654,"Rank":1948,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118441","BestRank":1948,"BestRankAt":"2023-02-16T05:25:56.387835Z","MostPoints":654,"MostPointsAt":"2023-02-16T05:25:56.387835Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456575Z","LastActivityAt":"2023-02-16T05:25:56.387835Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2418,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2518,"ScoreTotal":10,"ID":849118462,"Name":"wlodek1404","NumVillages":1,"Points":793,"Rank":1902,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118462","BestRank":1902,"BestRankAt":"2023-02-16T05:25:56.387835Z","MostPoints":793,"MostPointsAt":"2023-02-16T05:25:49.456575Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456575Z","LastActivityAt":"2023-02-16T05:25:49.456575Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118478,"Name":"Vokhar","NumVillages":1,"Points":26,"Rank":2833,"TribeID":1764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118478","BestRank":2833,"BestRankAt":"2023-02-16T05:25:56.387836Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456576Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456576Z","LastActivityAt":"2023-02-16T05:25:49.456576Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118616,"Name":"Kolodzij","NumVillages":1,"Points":118,"Rank":2430,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118616","BestRank":2430,"BestRankAt":"2023-02-16T05:25:56.417015Z","MostPoints":118,"MostPointsAt":"2023-02-16T05:25:56.417016Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456576Z","LastActivityAt":"2023-02-16T05:25:56.417016Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1902,"ScoreAtt":40,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2451,"ScoreTotal":40,"ID":849118709,"Name":"Addu","NumVillages":1,"Points":326,"Rank":2130,"TribeID":1795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118709","BestRank":2130,"BestRankAt":"2023-02-16T05:25:56.417016Z","MostPoints":326,"MostPointsAt":"2023-02-16T05:25:56.417016Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456577Z","LastActivityAt":"2023-02-16T05:25:56.417016Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118761,"Name":"Kokeszko94","NumVillages":1,"Points":26,"Rank":2834,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118761","BestRank":2834,"BestRankAt":"2023-02-16T05:25:56.417017Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456578Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456577Z","LastActivityAt":"2023-02-16T05:25:49.456578Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118769,"Name":"joaopaulo98","NumVillages":1,"Points":26,"Rank":2835,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118769","BestRank":2835,"BestRankAt":"2023-02-16T05:25:56.417017Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456578Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456578Z","LastActivityAt":"2023-02-16T05:25:49.456578Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2163,"ScoreDef":1499,"RankSup":0,"ScoreSup":0,"RankTotal":2259,"ScoreTotal":1499,"ID":849118786,"Name":"hair12345","NumVillages":1,"Points":761,"Rank":1913,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118786","BestRank":1913,"BestRankAt":"2023-02-16T05:25:56.417018Z","MostPoints":761,"MostPointsAt":"2023-02-16T05:25:49.456579Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456579Z","LastActivityAt":"2023-02-16T05:25:49.456579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45667Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118806,"Name":"trend","NumVillages":1,"Points":338,"Rank":2120,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118806","BestRank":2120,"BestRankAt":"2023-02-16T05:25:56.417018Z","MostPoints":338,"MostPointsAt":"2023-02-16T05:25:49.456579Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456579Z","LastActivityAt":"2023-02-16T05:25:49.456579Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118820,"Name":"zenek12","NumVillages":1,"Points":289,"Rank":2166,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118820","BestRank":2166,"BestRankAt":"2023-02-16T05:25:56.417019Z","MostPoints":289,"MostPointsAt":"2023-02-16T05:25:49.45658Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45658Z","LastActivityAt":"2023-02-16T05:25:49.45658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118827,"Name":"kozielniak","NumVillages":1,"Points":141,"Rank":2368,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118827","BestRank":2368,"BestRankAt":"2023-02-16T05:25:56.417019Z","MostPoints":141,"MostPointsAt":"2023-02-16T05:25:49.45658Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45658Z","LastActivityAt":"2023-02-16T05:25:49.45658Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118930,"Name":"Mc Fly","NumVillages":1,"Points":128,"Rank":2407,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118930","BestRank":2407,"BestRankAt":"2023-02-16T05:25:56.41702Z","MostPoints":128,"MostPointsAt":"2023-02-16T05:25:49.456581Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456581Z","LastActivityAt":"2023-02-16T05:25:49.456581Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456671Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118954,"Name":"Grzaegorz1122","NumVillages":1,"Points":287,"Rank":2170,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118954","BestRank":2170,"BestRankAt":"2023-02-16T05:25:56.41702Z","MostPoints":287,"MostPointsAt":"2023-02-16T05:25:56.41702Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456581Z","LastActivityAt":"2023-02-16T05:25:56.41702Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849118998,"Name":"balkres","NumVillages":1,"Points":237,"Rank":2242,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118998","BestRank":2242,"BestRankAt":"2023-02-16T05:25:49.456582Z","MostPoints":237,"MostPointsAt":"2023-02-16T05:25:49.456582Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456582Z","LastActivityAt":"2023-02-16T05:25:49.456582Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456672Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":1824,"ScoreAtt":140,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2400,"ScoreTotal":140,"ID":849118999,"Name":"Minister123","NumVillages":1,"Points":1916,"Rank":1667,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849118999","BestRank":1667,"BestRankAt":"2023-02-16T05:25:56.417021Z","MostPoints":1916,"MostPointsAt":"2023-02-16T05:25:56.417021Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456582Z","LastActivityAt":"2023-02-16T05:25:56.417021Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119017,"Name":"rewox","NumVillages":1,"Points":26,"Rank":2836,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119017","BestRank":2836,"BestRankAt":"2023-02-16T05:25:56.417021Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456583Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456583Z","LastActivityAt":"2023-02-16T05:25:49.456583Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1963,"ScoreAtt":8,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2534,"ScoreTotal":8,"ID":849119078,"Name":"GrubySponsor","NumVillages":1,"Points":141,"Rank":2369,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119078","BestRank":2369,"BestRankAt":"2023-02-16T05:25:56.417022Z","MostPoints":141,"MostPointsAt":"2023-02-16T05:25:49.456584Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456583Z","LastActivityAt":"2023-02-16T05:25:49.456584Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456672Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119121,"Name":"aceofa","NumVillages":1,"Points":664,"Rank":1943,"TribeID":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119121","BestRank":1943,"BestRankAt":"2023-02-16T05:25:56.417022Z","MostPoints":664,"MostPointsAt":"2023-02-16T05:25:49.456585Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456585Z","LastActivityAt":"2023-02-16T05:25:49.456585Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119163,"Name":"Dawidoxil1996","NumVillages":1,"Points":248,"Rank":2212,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119163","BestRank":2212,"BestRankAt":"2023-02-16T05:25:56.417023Z","MostPoints":248,"MostPointsAt":"2023-02-16T05:25:56.417023Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456586Z","LastActivityAt":"2023-02-16T05:25:56.417023Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119173,"Name":"kafejtor","NumVillages":1,"Points":227,"Rank":2233,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119173","BestRank":2233,"BestRankAt":"2023-02-16T05:25:56.417023Z","MostPoints":227,"MostPointsAt":"2023-02-16T05:25:49.456586Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456586Z","LastActivityAt":"2023-02-16T05:25:49.456586Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119223,"Name":"Grzelakb","NumVillages":1,"Points":394,"Rank":2076,"TribeID":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119223","BestRank":2076,"BestRankAt":"2023-02-16T05:25:56.417024Z","MostPoints":394,"MostPointsAt":"2023-02-16T05:25:56.417024Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456587Z","LastActivityAt":"2023-02-16T05:25:56.417024Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119328,"Name":"miglanc06","NumVillages":1,"Points":699,"Rank":1930,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119328","BestRank":1930,"BestRankAt":"2023-02-16T05:25:56.417024Z","MostPoints":699,"MostPointsAt":"2023-02-16T05:25:56.417024Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456587Z","LastActivityAt":"2023-02-16T05:25:56.417024Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119407,"Name":"Tomaszer12","NumVillages":1,"Points":525,"Rank":1994,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119407","BestRank":1994,"BestRankAt":"2023-02-16T05:25:56.417025Z","MostPoints":525,"MostPointsAt":"2023-02-16T05:25:49.456588Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456588Z","LastActivityAt":"2023-02-16T05:25:49.456588Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119423,"Name":"Polak212","NumVillages":1,"Points":537,"Rank":1989,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119423","BestRank":1989,"BestRankAt":"2023-02-16T05:25:56.417025Z","MostPoints":537,"MostPointsAt":"2023-02-16T05:25:56.417025Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456588Z","LastActivityAt":"2023-02-16T05:25:56.417025Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119432,"Name":"WitoldWolski","NumVillages":1,"Points":153,"Rank":2350,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119432","BestRank":2350,"BestRankAt":"2023-02-16T05:25:56.417026Z","MostPoints":153,"MostPointsAt":"2023-02-16T05:25:49.456589Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456589Z","LastActivityAt":"2023-02-16T05:25:49.456589Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119476,"Name":"gnom1","NumVillages":1,"Points":301,"Rank":2155,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119476","BestRank":2155,"BestRankAt":"2023-02-16T05:25:56.417026Z","MostPoints":301,"MostPointsAt":"2023-02-16T05:25:49.45659Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45659Z","LastActivityAt":"2023-02-16T05:25:49.45659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119486,"Name":"paviks","NumVillages":1,"Points":26,"Rank":2837,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119486","BestRank":2837,"BestRankAt":"2023-02-16T05:25:56.417027Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.45659Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45659Z","LastActivityAt":"2023-02-16T05:25:49.45659Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119528,"Name":"SERWAR","NumVillages":1,"Points":1604,"Rank":1717,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119528","BestRank":1717,"BestRankAt":"2023-02-16T05:25:56.417027Z","MostPoints":1604,"MostPointsAt":"2023-02-16T05:25:56.417027Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456591Z","LastActivityAt":"2023-02-16T05:25:56.417027Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119631,"Name":"ChujajBuja","NumVillages":1,"Points":189,"Rank":2302,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119631","BestRank":2302,"BestRankAt":"2023-02-16T05:25:56.417028Z","MostPoints":189,"MostPointsAt":"2023-02-16T05:25:49.456591Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456591Z","LastActivityAt":"2023-02-16T05:25:49.456591Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119827,"Name":"Mishkkk","NumVillages":1,"Points":337,"Rank":2122,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119827","BestRank":2122,"BestRankAt":"2023-02-16T05:25:56.417028Z","MostPoints":337,"MostPointsAt":"2023-02-16T05:25:56.417028Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456592Z","LastActivityAt":"2023-02-16T05:25:56.417028Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456675Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119842,"Name":"karplop123","NumVillages":1,"Points":66,"Rank":2516,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119842","BestRank":2516,"BestRankAt":"2023-02-16T05:25:56.417029Z","MostPoints":66,"MostPointsAt":"2023-02-16T05:25:49.456592Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456592Z","LastActivityAt":"2023-02-16T05:25:49.456592Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849119848,"Name":"drewniak","NumVillages":1,"Points":195,"Rank":2287,"TribeID":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119848","BestRank":2287,"BestRankAt":"2023-02-16T05:25:56.417029Z","MostPoints":195,"MostPointsAt":"2023-02-16T05:25:56.417029Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456593Z","LastActivityAt":"2023-02-16T05:25:56.417029Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2325,"ScoreDef":100,"RankSup":0,"ScoreSup":0,"RankTotal":2419,"ScoreTotal":100,"ID":849119862,"Name":"belzebub szatan","NumVillages":1,"Points":483,"Rank":2022,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119862","BestRank":2022,"BestRankAt":"2023-02-16T05:25:56.41703Z","MostPoints":483,"MostPointsAt":"2023-02-16T05:25:56.41703Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456593Z","LastActivityAt":"2023-02-16T05:25:56.41703Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2231,"ScoreDef":636,"RankSup":0,"ScoreSup":0,"RankTotal":2315,"ScoreTotal":636,"ID":849119975,"Name":"Przemko duch","NumVillages":1,"Points":627,"Rank":1964,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119975","BestRank":1964,"BestRankAt":"2023-02-16T05:25:56.41703Z","MostPoints":627,"MostPointsAt":"2023-02-16T05:25:49.456594Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456594Z","LastActivityAt":"2023-02-16T05:25:49.456594Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2431,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":2527,"ScoreTotal":10,"ID":849119994,"Name":"Exodus303","NumVillages":1,"Points":998,"Rank":1849,"TribeID":1777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849119994","BestRank":1849,"BestRankAt":"2023-02-16T05:25:56.417031Z","MostPoints":998,"MostPointsAt":"2023-02-16T05:25:49.456595Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456594Z","LastActivityAt":"2023-02-16T05:25:49.456595Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456676Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120051,"Name":"Noto Wojsko","NumVillages":1,"Points":26,"Rank":2867,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120051","BestRank":2867,"BestRankAt":"2023-02-16T05:25:49.456595Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456595Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456595Z","LastActivityAt":"2023-02-16T05:25:49.456595Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456677Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120075,"Name":"saulgoodman","NumVillages":1,"Points":136,"Rank":2382,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120075","BestRank":2382,"BestRankAt":"2023-02-16T05:25:56.417031Z","MostPoints":136,"MostPointsAt":"2023-02-16T05:25:56.417031Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456596Z","LastActivityAt":"2023-02-16T05:25:56.417031Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120088,"Name":"Czaki995","NumVillages":1,"Points":194,"Rank":2292,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120088","BestRank":2292,"BestRankAt":"2023-02-16T05:25:56.417032Z","MostPoints":194,"MostPointsAt":"2023-02-16T05:25:56.417032Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456596Z","LastActivityAt":"2023-02-16T05:25:56.417032Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120093,"Name":"marcinpaluch0211","NumVillages":1,"Points":69,"Rank":2506,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120093","BestRank":2506,"BestRankAt":"2023-02-16T05:25:56.417032Z","MostPoints":69,"MostPointsAt":"2023-02-16T05:25:49.456597Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456597Z","LastActivityAt":"2023-02-16T05:25:49.456597Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120129,"Name":"Derek69","NumVillages":1,"Points":928,"Rank":1863,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120129","BestRank":1863,"BestRankAt":"2023-02-16T05:25:56.417033Z","MostPoints":928,"MostPointsAt":"2023-02-16T05:25:56.417033Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456597Z","LastActivityAt":"2023-02-16T05:25:56.417033Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120285,"Name":"pollak21","NumVillages":1,"Points":165,"Rank":2334,"TribeID":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120285","BestRank":2334,"BestRankAt":"2023-02-16T05:25:56.417033Z","MostPoints":165,"MostPointsAt":"2023-02-16T05:25:49.456598Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456598Z","LastActivityAt":"2023-02-16T05:25:49.456598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120311,"Name":"KOYE","NumVillages":1,"Points":26,"Rank":2838,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120311","BestRank":2838,"BestRankAt":"2023-02-16T05:25:56.417034Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456598Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456598Z","LastActivityAt":"2023-02-16T05:25:49.456598Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120421,"Name":"Kampffliege","NumVillages":1,"Points":119,"Rank":2429,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120421","BestRank":2429,"BestRankAt":"2023-02-16T05:25:56.417034Z","MostPoints":119,"MostPointsAt":"2023-02-16T05:25:56.417034Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456599Z","LastActivityAt":"2023-02-16T05:25:56.417034Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120438,"Name":"Wanderwoman","NumVillages":1,"Points":519,"Rank":2001,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120438","BestRank":2001,"BestRankAt":"2023-02-16T05:25:56.417035Z","MostPoints":519,"MostPointsAt":"2023-02-16T05:25:56.417035Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456599Z","LastActivityAt":"2023-02-16T05:25:56.417035Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2221,"ScoreDef":750,"RankSup":0,"ScoreSup":0,"RankTotal":2307,"ScoreTotal":750,"ID":849120467,"Name":"czaka222","NumVillages":1,"Points":198,"Rank":2278,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120467","BestRank":2278,"BestRankAt":"2023-02-16T05:25:56.417035Z","MostPoints":198,"MostPointsAt":"2023-02-16T05:25:49.4566Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.4566Z","LastActivityAt":"2023-02-16T05:25:49.4566Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120488,"Name":"bonktrzmiel","NumVillages":1,"Points":269,"Rank":2192,"TribeID":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120488","BestRank":2192,"BestRankAt":"2023-02-16T05:25:56.417036Z","MostPoints":269,"MostPointsAt":"2023-02-16T05:25:56.417036Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.4566Z","LastActivityAt":"2023-02-16T05:25:56.417036Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120526,"Name":"Kolekcjon","NumVillages":1,"Points":140,"Rank":2372,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120526","BestRank":2372,"BestRankAt":"2023-02-16T05:25:56.417036Z","MostPoints":140,"MostPointsAt":"2023-02-16T05:25:49.456601Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456601Z","LastActivityAt":"2023-02-16T05:25:49.456601Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120698,"Name":"rozyczka","NumVillages":1,"Points":784,"Rank":1906,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120698","BestRank":1906,"BestRankAt":"2023-02-16T05:25:56.417037Z","MostPoints":784,"MostPointsAt":"2023-02-16T05:25:56.417037Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456602Z","LastActivityAt":"2023-02-16T05:25:56.417037Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456679Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120763,"Name":"spokojnabaƛka123","NumVillages":1,"Points":64,"Rank":2523,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120763","BestRank":2523,"BestRankAt":"2023-02-16T05:25:56.417037Z","MostPoints":64,"MostPointsAt":"2023-02-16T05:25:49.456602Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456602Z","LastActivityAt":"2023-02-16T05:25:49.456602Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120791,"Name":"ERAS","NumVillages":1,"Points":26,"Rank":2869,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120791","BestRank":2869,"BestRankAt":"2023-02-16T05:25:49.456603Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456603Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456603Z","LastActivityAt":"2023-02-16T05:25:49.456603Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45668Z","DeletedAt":"2023-02-16T05:25:56.467406Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120855,"Name":"tinki","NumVillages":1,"Points":26,"Rank":2839,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120855","BestRank":2839,"BestRankAt":"2023-02-16T05:25:56.417038Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456603Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456603Z","LastActivityAt":"2023-02-16T05:25:49.456603Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120865,"Name":"Martynka2010","NumVillages":1,"Points":66,"Rank":2517,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120865","BestRank":2517,"BestRankAt":"2023-02-16T05:25:56.417038Z","MostPoints":66,"MostPointsAt":"2023-02-16T05:25:49.456604Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456604Z","LastActivityAt":"2023-02-16T05:25:49.456604Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45668Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120889,"Name":"Layton","NumVillages":1,"Points":47,"Rank":2566,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120889","BestRank":2566,"BestRankAt":"2023-02-16T05:25:56.417039Z","MostPoints":47,"MostPointsAt":"2023-02-16T05:25:49.456604Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456604Z","LastActivityAt":"2023-02-16T05:25:49.456604Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849120966,"Name":"Michal1614","NumVillages":1,"Points":26,"Rank":2840,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849120966","BestRank":2840,"BestRankAt":"2023-02-16T05:25:56.417039Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456605Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456605Z","LastActivityAt":"2023-02-16T05:25:49.456605Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121036,"Name":"ARENTHAI","NumVillages":1,"Points":70,"Rank":2505,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121036","BestRank":2505,"BestRankAt":"2023-02-16T05:25:56.41704Z","MostPoints":70,"MostPointsAt":"2023-02-16T05:25:49.456605Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456605Z","LastActivityAt":"2023-02-16T05:25:49.456606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121195,"Name":"mrkonrad18","NumVillages":1,"Points":157,"Rank":2346,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121195","BestRank":2346,"BestRankAt":"2023-02-16T05:25:56.41704Z","MostPoints":157,"MostPointsAt":"2023-02-16T05:25:56.41704Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.41704Z","LastActivityAt":"2023-02-16T05:25:56.41704Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417115Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121196,"Name":"Szymonos420","NumVillages":1,"Points":238,"Rank":2222,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121196","BestRank":2222,"BestRankAt":"2023-02-16T05:25:56.417041Z","MostPoints":238,"MostPointsAt":"2023-02-16T05:25:49.456606Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456606Z","LastActivityAt":"2023-02-16T05:25:49.456606Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121269,"Name":"Choroszcz","NumVillages":1,"Points":34,"Rank":2582,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121269","BestRank":2582,"BestRankAt":"2023-02-16T05:25:56.417041Z","MostPoints":34,"MostPointsAt":"2023-02-16T05:25:49.456607Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456606Z","LastActivityAt":"2023-02-16T05:25:49.456607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121320,"Name":"pawka283","NumVillages":1,"Points":44,"Rank":2573,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121320","BestRank":2573,"BestRankAt":"2023-02-16T05:25:56.417042Z","MostPoints":44,"MostPointsAt":"2023-02-16T05:25:49.456607Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456607Z","LastActivityAt":"2023-02-16T05:25:49.456607Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121329,"Name":"Szalejot3","NumVillages":1,"Points":320,"Rank":2136,"TribeID":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121329","BestRank":2136,"BestRankAt":"2023-02-16T05:25:56.417042Z","MostPoints":320,"MostPointsAt":"2023-02-16T05:25:56.417042Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456608Z","LastActivityAt":"2023-02-16T05:25:56.417042Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456682Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121331,"Name":"Dankok2k23","NumVillages":1,"Points":567,"Rank":1982,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121331","BestRank":1982,"BestRankAt":"2023-02-16T05:25:56.417043Z","MostPoints":567,"MostPointsAt":"2023-02-16T05:25:56.417043Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456608Z","LastActivityAt":"2023-02-16T05:25:56.417043Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121337,"Name":"Ppfarmer","NumVillages":1,"Points":26,"Rank":2841,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121337","BestRank":2841,"BestRankAt":"2023-02-16T05:25:56.417043Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456609Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456609Z","LastActivityAt":"2023-02-16T05:25:49.456609Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121389,"Name":"huzar28","NumVillages":1,"Points":26,"Rank":2842,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121389","BestRank":2842,"BestRankAt":"2023-02-16T05:25:56.417044Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.45661Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45661Z","LastActivityAt":"2023-02-16T05:25:49.45661Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456683Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121483,"Name":"xLyn","NumVillages":1,"Points":599,"Rank":1970,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121483","BestRank":1970,"BestRankAt":"2023-02-16T05:25:56.417044Z","MostPoints":599,"MostPointsAt":"2023-02-16T05:25:56.417044Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456611Z","LastActivityAt":"2023-02-16T05:25:56.417044Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121504,"Name":"HinduKush","NumVillages":1,"Points":107,"Rank":2446,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121504","BestRank":2446,"BestRankAt":"2023-02-16T05:25:56.417045Z","MostPoints":107,"MostPointsAt":"2023-02-16T05:25:56.417045Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456611Z","LastActivityAt":"2023-02-16T05:25:56.417045Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121536,"Name":"LeadyBoo","NumVillages":1,"Points":26,"Rank":2843,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121536","BestRank":2843,"BestRankAt":"2023-02-16T05:25:56.417045Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456612Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456612Z","LastActivityAt":"2023-02-16T05:25:49.456612Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456684Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121570,"Name":"LupaPL","NumVillages":1,"Points":240,"Rank":2220,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121570","BestRank":2220,"BestRankAt":"2023-02-16T05:25:56.417046Z","MostPoints":240,"MostPointsAt":"2023-02-16T05:25:49.456613Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456613Z","LastActivityAt":"2023-02-16T05:25:49.456613Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121623,"Name":"prosiaczek","NumVillages":1,"Points":301,"Rank":2156,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121623","BestRank":2156,"BestRankAt":"2023-02-16T05:25:56.417046Z","MostPoints":301,"MostPointsAt":"2023-02-16T05:25:49.456613Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456613Z","LastActivityAt":"2023-02-16T05:25:49.456613Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121686,"Name":"danek","NumVillages":1,"Points":26,"Rank":2844,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121686","BestRank":2844,"BestRankAt":"2023-02-16T05:25:56.417047Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456614Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456614Z","LastActivityAt":"2023-02-16T05:25:49.456614Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121691,"Name":"Szpadyzor","NumVillages":1,"Points":133,"Rank":2391,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121691","BestRank":2391,"BestRankAt":"2023-02-16T05:25:56.417047Z","MostPoints":133,"MostPointsAt":"2023-02-16T05:25:49.456614Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456614Z","LastActivityAt":"2023-02-16T05:25:49.456615Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121697,"Name":"S3b3k1999","NumVillages":1,"Points":26,"Rank":2845,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121697","BestRank":2845,"BestRankAt":"2023-02-16T05:25:56.417048Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456615Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456615Z","LastActivityAt":"2023-02-16T05:25:49.456615Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121725,"Name":"drzyzga123","NumVillages":1,"Points":26,"Rank":2846,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121725","BestRank":2846,"BestRankAt":"2023-02-16T05:25:56.417048Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456616Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456615Z","LastActivityAt":"2023-02-16T05:25:49.456616Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121746,"Name":"robotykjakinny","NumVillages":1,"Points":26,"Rank":2847,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121746","BestRank":2847,"BestRankAt":"2023-02-16T05:25:56.417049Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456616Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456616Z","LastActivityAt":"2023-02-16T05:25:49.456616Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121762,"Name":"Jopi","NumVillages":1,"Points":377,"Rank":2092,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121762","BestRank":2092,"BestRankAt":"2023-02-16T05:25:56.417049Z","MostPoints":377,"MostPointsAt":"2023-02-16T05:25:49.456617Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456617Z","LastActivityAt":"2023-02-16T05:25:49.456617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121811,"Name":"Cookie","NumVillages":1,"Points":158,"Rank":2345,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121811","BestRank":2345,"BestRankAt":"2023-02-16T05:25:56.41705Z","MostPoints":158,"MostPointsAt":"2023-02-16T05:25:49.456617Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456617Z","LastActivityAt":"2023-02-16T05:25:49.456617Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1914,"ScoreAtt":34,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2459,"ScoreTotal":34,"ID":849121835,"Name":"mati997","NumVillages":1,"Points":438,"Rank":2045,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121835","BestRank":2045,"BestRankAt":"2023-02-16T05:25:56.41705Z","MostPoints":438,"MostPointsAt":"2023-02-16T05:25:56.41705Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456618Z","LastActivityAt":"2023-02-16T05:25:56.41705Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121846,"Name":"Maxi Montana","NumVillages":1,"Points":286,"Rank":2173,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121846","BestRank":2173,"BestRankAt":"2023-02-16T05:25:56.417051Z","MostPoints":286,"MostPointsAt":"2023-02-16T05:25:49.456618Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456618Z","LastActivityAt":"2023-02-16T05:25:49.456618Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849121975,"Name":"anita","NumVillages":1,"Points":264,"Rank":2195,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849121975","BestRank":2195,"BestRankAt":"2023-02-16T05:25:56.417051Z","MostPoints":264,"MostPointsAt":"2023-02-16T05:25:49.456619Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456619Z","LastActivityAt":"2023-02-16T05:25:49.456619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456687Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122047,"Name":"grzesiek9522","NumVillages":1,"Points":66,"Rank":2518,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122047","BestRank":2518,"BestRankAt":"2023-02-16T05:25:56.417051Z","MostPoints":66,"MostPointsAt":"2023-02-16T05:25:49.456619Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456619Z","LastActivityAt":"2023-02-16T05:25:49.456619Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":1411,"ScoreSup":1,"RankTotal":2561,"ScoreTotal":1,"ID":849122297,"Name":"Leszek1964","NumVillages":1,"Points":579,"Rank":1977,"TribeID":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122297","BestRank":1977,"BestRankAt":"2023-02-16T05:25:56.417052Z","MostPoints":579,"MostPointsAt":"2023-02-16T05:25:56.417052Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45662Z","LastActivityAt":"2023-02-16T05:25:56.417052Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122318,"Name":"polska652","NumVillages":1,"Points":112,"Rank":2441,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122318","BestRank":2441,"BestRankAt":"2023-02-16T05:25:56.417052Z","MostPoints":112,"MostPointsAt":"2023-02-16T05:25:49.45662Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.45662Z","LastActivityAt":"2023-02-16T05:25:49.456621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122450,"Name":"SteamUser1675976894","NumVillages":1,"Points":88,"Rank":2477,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122450","BestRank":2477,"BestRankAt":"2023-02-16T05:25:56.417053Z","MostPoints":88,"MostPointsAt":"2023-02-16T05:25:49.456621Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456621Z","LastActivityAt":"2023-02-16T05:25:49.456621Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456688Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122487,"Name":"kamilek6969","NumVillages":1,"Points":310,"Rank":2147,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122487","BestRank":2147,"BestRankAt":"2023-02-16T05:25:56.417053Z","MostPoints":310,"MostPointsAt":"2023-02-16T05:25:56.417054Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456621Z","LastActivityAt":"2023-02-16T05:25:56.417054Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122658,"Name":"sweetdream","NumVillages":1,"Points":26,"Rank":2848,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122658","BestRank":2848,"BestRankAt":"2023-02-16T05:25:56.417054Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456622Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456622Z","LastActivityAt":"2023-02-16T05:25:49.456622Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122738,"Name":"Saladyn92","NumVillages":1,"Points":438,"Rank":2046,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122738","BestRank":2046,"BestRankAt":"2023-02-16T05:25:56.417054Z","MostPoints":438,"MostPointsAt":"2023-02-16T05:25:56.417055Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456623Z","LastActivityAt":"2023-02-16T05:25:56.417055Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1872,"ScoreAtt":70,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2428,"ScoreTotal":70,"ID":849122768,"Name":"niedzwiedzxd","NumVillages":1,"Points":382,"Rank":2085,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122768","BestRank":2085,"BestRankAt":"2023-02-16T05:25:56.417055Z","MostPoints":382,"MostPointsAt":"2023-02-16T05:25:56.417055Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456623Z","LastActivityAt":"2023-02-16T05:25:56.417055Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122791,"Name":"Arokis","NumVillages":1,"Points":136,"Rank":2383,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122791","BestRank":2383,"BestRankAt":"2023-02-16T05:25:56.417056Z","MostPoints":136,"MostPointsAt":"2023-02-16T05:25:56.417056Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.417056Z","LastActivityAt":"2023-02-16T05:25:56.417056Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417122Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":2348,"ScoreDef":50,"RankSup":0,"ScoreSup":0,"RankTotal":2439,"ScoreTotal":50,"ID":849122819,"Name":"BELOZ","NumVillages":1,"Points":95,"Rank":2470,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122819","BestRank":2470,"BestRankAt":"2023-02-16T05:25:56.417056Z","MostPoints":95,"MostPointsAt":"2023-02-16T05:25:49.456624Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456624Z","LastActivityAt":"2023-02-16T05:25:49.456624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122821,"Name":"SzefPatryƛ","NumVillages":1,"Points":64,"Rank":2524,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122821","BestRank":2524,"BestRankAt":"2023-02-16T05:25:56.417057Z","MostPoints":64,"MostPointsAt":"2023-02-16T05:25:49.456624Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456624Z","LastActivityAt":"2023-02-16T05:25:49.456624Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122822,"Name":"jmz41922","NumVillages":1,"Points":162,"Rank":2340,"TribeID":1803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122822","BestRank":2340,"BestRankAt":"2023-02-16T05:25:56.417057Z","MostPoints":162,"MostPointsAt":"2023-02-16T05:25:49.456625Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456625Z","LastActivityAt":"2023-02-16T05:25:49.456625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122864,"Name":"Legiatto","NumVillages":1,"Points":26,"Rank":2849,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122864","BestRank":2849,"BestRankAt":"2023-02-16T05:25:56.417058Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.417058Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.417058Z","LastActivityAt":"2023-02-16T05:25:56.417058Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417123Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849122931,"Name":"gumis111","NumVillages":1,"Points":26,"Rank":2850,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849122931","BestRank":2850,"BestRankAt":"2023-02-16T05:25:56.417058Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456625Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456625Z","LastActivityAt":"2023-02-16T05:25:49.456625Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123002,"Name":"zdziƛ123","NumVillages":1,"Points":26,"Rank":2851,"TribeID":636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123002","BestRank":2851,"BestRankAt":"2023-02-16T05:25:56.417059Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:49.456626Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456626Z","LastActivityAt":"2023-02-16T05:25:49.456626Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.45669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1942,"ScoreAtt":18,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":2485,"ScoreTotal":18,"ID":849123125,"Name":"Lukaczka","NumVillages":1,"Points":216,"Rank":2247,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123125","BestRank":2247,"BestRankAt":"2023-02-16T05:25:56.417059Z","MostPoints":216,"MostPointsAt":"2023-02-16T05:25:56.417059Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456626Z","LastActivityAt":"2023-02-16T05:25:56.417059Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123128,"Name":"farmerzestoczka","NumVillages":1,"Points":75,"Rank":2493,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123128","BestRank":2493,"BestRankAt":"2023-02-16T05:25:56.41706Z","MostPoints":75,"MostPointsAt":"2023-02-16T05:25:49.456627Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456627Z","LastActivityAt":"2023-02-16T05:25:49.456627Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123135,"Name":"Ljuboja1916","NumVillages":1,"Points":43,"Rank":2576,"TribeID":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123135","BestRank":2576,"BestRankAt":"2023-02-16T05:25:56.41706Z","MostPoints":43,"MostPointsAt":"2023-02-16T05:25:49.456628Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456627Z","LastActivityAt":"2023-02-16T05:25:49.456628Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123162,"Name":"jesslexuwuowo","NumVillages":1,"Points":83,"Rank":2480,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123162","BestRank":2480,"BestRankAt":"2023-02-16T05:25:56.417061Z","MostPoints":83,"MostPointsAt":"2023-02-16T05:25:56.417061Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456628Z","LastActivityAt":"2023-02-16T05:25:56.417061Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456691Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123267,"Name":"Sewo2137","NumVillages":1,"Points":165,"Rank":2335,"TribeID":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123267","BestRank":2335,"BestRankAt":"2023-02-16T05:25:56.417061Z","MostPoints":165,"MostPointsAt":"2023-02-16T05:25:56.417061Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:49.456629Z","LastActivityAt":"2023-02-16T05:25:56.417061Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:49.456692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123286,"Name":"millxd12","NumVillages":1,"Points":26,"Rank":2852,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123286","BestRank":2852,"BestRankAt":"2023-02-16T05:25:56.417062Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.417062Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.417062Z","LastActivityAt":"2023-02-16T05:25:56.417062Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417125Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123469,"Name":"adam1234","NumVillages":1,"Points":26,"Rank":2853,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123469","BestRank":2853,"BestRankAt":"2023-02-16T05:25:56.417062Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.417062Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.417062Z","LastActivityAt":"2023-02-16T05:25:56.417062Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417125Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123471,"Name":"martial.94","NumVillages":1,"Points":26,"Rank":2854,"TribeID":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123471","BestRank":2854,"BestRankAt":"2023-02-16T05:25:56.417063Z","MostPoints":26,"MostPointsAt":"2023-02-16T05:25:56.417063Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.417063Z","LastActivityAt":"2023-02-16T05:25:56.417063Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417125Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":849123536,"Name":"XKONDZIOX529","NumVillages":1,"Points":50,"Rank":2555,"TribeID":1811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_player\u0026id=849123536","BestRank":2555,"BestRankAt":"2023-02-16T05:25:56.417064Z","MostPoints":50,"MostPointsAt":"2023-02-16T05:25:56.417064Z","MostVillages":1,"MostVillagesAt":"2023-02-16T05:25:56.417064Z","LastActivityAt":"2023-02-16T05:25:56.417064Z","ServerKey":"pl181","CreatedAt":"2023-02-16T05:25:56.417126Z","DeletedAt":"0001-01-01T00:00:00Z"}] diff --git a/internal/service/testdata/syncdata/stage2/expected/servers.json b/internal/service/testdata/syncdata/stage2/expected/servers.json new file mode 100644 index 0000000..6b976b6 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/expected/servers.json @@ -0,0 +1 @@ +[{"Key":"pl181","URL":"https://pl181.plemiona.pl","Open":true,"Special":false,"NumPlayers":3096,"NumTribes":282,"NumVillages":57694,"NumPlayerVillages":57190,"NumBarbarianVillages":504,"NumBonusVillages":3606,"Config":{"Speed":1,"UnitSpeed":1,"Moral":1,"Build":{"Destroy":1},"Misc":{"KillRanking":2,"Tutorial":5,"TradeCancelTime":300},"Commands":{"MillisArrival":1,"CommandCancelTime":600},"Newbie":{"Days":7,"RatioDays":60,"Ratio":20,"RemoveNewbieVillages":1},"Game":{"BuildtimeFormula":2,"Knight":3,"KnightNewItems":0,"Archer":1,"Tech":2,"FarmLimit":0,"Church":0,"Watchtower":0,"Stronghold":1,"FakeLimit":1,"BarbarianRise":0.003,"BarbarianShrink":1,"BarbarianMaxPoints":2000,"Scavenging":1,"Hauls":1,"HaulsBase":1000,"HaulsMax":100000,"BaseProduction":30,"Event":10,"SuppressEvents":0},"Buildings":{"CustomMain":-1,"CustomFarm":-1,"CustomStorage":-1,"CustomPlace":-1,"CustomBarracks":-1,"CustomChurch":-1,"CustomSmith":-1,"CustomWood":-1,"CustomStone":-1,"CustomIron":-1,"CustomMarket":-1,"CustomStable":-1,"CustomWall":-1,"CustomGarage":-1,"CustomHide":-1,"CustomSnob":-1,"CustomStatue":-1,"CustomWatchtower":-1},"Snob":{"Gold":1,"CheapRebuild":0,"Rise":2,"MaxDist":1000,"Factor":0.9,"CoinWood":28000,"CoinStone":30000,"CoinIron":25000,"NoBarbConquer":0},"Ally":{"NoHarm":0,"NoOtherSupport":1,"NoOtherSupportType":0,"AllytimeSupport":0,"NoLeave":0,"NoJoin":0,"Limit":50,"FixedAllies":0,"PointsMemberCount":0,"WarsMemberRequirement":5,"WarsPointsRequirement":15000,"WarsAutoacceptDays":7,"Levels":1,"XpRequirements":"v1"},"Coord":{"MapSize":1000,"Func":4,"EmptyVillages":70,"BonusVillages":10,"BonusNew":0,"Inner":8287,"SelectStart":1,"VillageMoveWait":336,"NobleRestart":1,"StartVillages":1},"Sitter":{"Allow":1},"Sleep":{"Active":0,"Delay":60,"Min":6,"Max":10,"MinAwake":12,"MaxAwake":36,"WarnTime":10},"Night":{"Active":1,"StartHour":23,"EndHour":8,"DefFactor":2,"Duration":14},"Win":{"Check":5}},"BuildingInfo":{"Main":{"MaxLevel":30,"MinLevel":1,"Wood":90,"Stone":80,"Iron":70,"Pop":5,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":900,"BuildTimeFactor":1.2},"Barracks":{"MaxLevel":25,"MinLevel":0,"Wood":200,"Stone":170,"Iron":90,"Pop":7,"WoodFactor":1.26,"StoneFactor":1.28,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":1800,"BuildTimeFactor":1.2},"Stable":{"MaxLevel":20,"MinLevel":0,"Wood":270,"Stone":240,"Iron":260,"Pop":8,"WoodFactor":1.26,"StoneFactor":1.28,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":6000,"BuildTimeFactor":1.2},"Garage":{"MaxLevel":15,"MinLevel":0,"Wood":300,"Stone":240,"Iron":260,"Pop":8,"WoodFactor":1.26,"StoneFactor":1.28,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":6000,"BuildTimeFactor":1.2},"Watchtower":{"MaxLevel":0,"MinLevel":0,"Wood":0,"Stone":0,"Iron":0,"Pop":0,"WoodFactor":0,"StoneFactor":0,"IronFactor":0,"PopFactor":0,"BuildTime":0,"BuildTimeFactor":0},"Snob":{"MaxLevel":1,"MinLevel":0,"Wood":15000,"Stone":25000,"Iron":10000,"Pop":80,"WoodFactor":2,"StoneFactor":2,"IronFactor":2,"PopFactor":1.17,"BuildTime":586800,"BuildTimeFactor":1.2},"Smith":{"MaxLevel":20,"MinLevel":0,"Wood":220,"Stone":180,"Iron":240,"Pop":20,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":6000,"BuildTimeFactor":1.2},"Place":{"MaxLevel":1,"MinLevel":0,"Wood":10,"Stone":40,"Iron":30,"Pop":0,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":10860,"BuildTimeFactor":1.2},"Statue":{"MaxLevel":1,"MinLevel":0,"Wood":220,"Stone":220,"Iron":220,"Pop":10,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":1500,"BuildTimeFactor":1.2},"Market":{"MaxLevel":25,"MinLevel":0,"Wood":100,"Stone":100,"Iron":100,"Pop":20,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":2700,"BuildTimeFactor":1.2},"Wood":{"MaxLevel":30,"MinLevel":0,"Wood":50,"Stone":60,"Iron":40,"Pop":5,"WoodFactor":1.25,"StoneFactor":1.275,"IronFactor":1.245,"PopFactor":1.155,"BuildTime":900,"BuildTimeFactor":1.2},"Stone":{"MaxLevel":30,"MinLevel":0,"Wood":65,"Stone":50,"Iron":40,"Pop":10,"WoodFactor":1.27,"StoneFactor":1.265,"IronFactor":1.24,"PopFactor":1.14,"BuildTime":900,"BuildTimeFactor":1.2},"Iron":{"MaxLevel":30,"MinLevel":0,"Wood":75,"Stone":65,"Iron":70,"Pop":10,"WoodFactor":1.252,"StoneFactor":1.275,"IronFactor":1.24,"PopFactor":1.17,"BuildTime":1080,"BuildTimeFactor":1.2},"Farm":{"MaxLevel":30,"MinLevel":1,"Wood":45,"Stone":40,"Iron":30,"Pop":0,"WoodFactor":1.3,"StoneFactor":1.32,"IronFactor":1.29,"PopFactor":1,"BuildTime":1200,"BuildTimeFactor":1.2},"Storage":{"MaxLevel":30,"MinLevel":1,"Wood":60,"Stone":50,"Iron":40,"Pop":0,"WoodFactor":1.265,"StoneFactor":1.27,"IronFactor":1.245,"PopFactor":1.15,"BuildTime":1020,"BuildTimeFactor":1.2},"Hide":{"MaxLevel":10,"MinLevel":0,"Wood":50,"Stone":60,"Iron":50,"Pop":2,"WoodFactor":1.25,"StoneFactor":1.25,"IronFactor":1.25,"PopFactor":1.17,"BuildTime":1800,"BuildTimeFactor":1.2},"Wall":{"MaxLevel":20,"MinLevel":0,"Wood":50,"Stone":100,"Iron":20,"Pop":5,"WoodFactor":1.26,"StoneFactor":1.275,"IronFactor":1.26,"PopFactor":1.17,"BuildTime":3600,"BuildTimeFactor":1.2}},"UnitInfo":{"Spear":{"BuildTime":1020,"Pop":1,"Speed":18,"Attack":10,"Defense":15,"DefenseCavalry":45,"DefenseArcher":20,"Carry":25},"Sword":{"BuildTime":1500,"Pop":1,"Speed":22,"Attack":25,"Defense":50,"DefenseCavalry":15,"DefenseArcher":40,"Carry":15},"Axe":{"BuildTime":1320,"Pop":1,"Speed":18,"Attack":40,"Defense":10,"DefenseCavalry":5,"DefenseArcher":10,"Carry":10},"Archer":{"BuildTime":1800,"Pop":1,"Speed":18,"Attack":15,"Defense":50,"DefenseCavalry":40,"DefenseArcher":5,"Carry":10},"Spy":{"BuildTime":900,"Pop":2,"Speed":9,"Attack":0,"Defense":2,"DefenseCavalry":1,"DefenseArcher":2,"Carry":0},"Light":{"BuildTime":1800,"Pop":4,"Speed":10,"Attack":130,"Defense":30,"DefenseCavalry":40,"DefenseArcher":30,"Carry":80},"Marcher":{"BuildTime":2700,"Pop":5,"Speed":10,"Attack":120,"Defense":40,"DefenseCavalry":30,"DefenseArcher":50,"Carry":50},"Heavy":{"BuildTime":3600,"Pop":6,"Speed":11,"Attack":150,"Defense":200,"DefenseCavalry":80,"DefenseArcher":180,"Carry":50},"Ram":{"BuildTime":4800,"Pop":5,"Speed":30,"Attack":2,"Defense":20,"DefenseCavalry":50,"DefenseArcher":20,"Carry":0},"Catapult":{"BuildTime":7200,"Pop":8,"Speed":30,"Attack":100,"Defense":100,"DefenseCavalry":50,"DefenseArcher":100,"Carry":0},"Knight":{"BuildTime":21600,"Pop":10,"Speed":10,"Attack":150,"Defense":250,"DefenseCavalry":400,"DefenseArcher":150,"Carry":100},"Snob":{"BuildTime":18000,"Pop":100,"Speed":35,"Attack":30,"Defense":100,"DefenseCavalry":50,"DefenseArcher":100,"Carry":0},"Militia":{"BuildTime":1,"Pop":0,"Speed":0.016666666666667,"Attack":0,"Defense":15,"DefenseCavalry":45,"DefenseArcher":25,"Carry":0}},"CreatedAt":"2023-02-16T05:25:48.890567Z","PlayerDataUpdatedAt":"2023-02-16T05:25:56.474057Z","PlayerSnapshotsCreatedAt":"0001-01-01T00:00:00Z","TribeDataUpdatedAt":"2023-02-16T05:25:56.229396Z","TribeSnapshotsCreatedAt":"0001-01-01T00:00:00Z","VillageDataUpdatedAt":"2023-02-16T05:25:58.24375Z","EnnoblementDataUpdatedAt":"0001-01-01T00:00:00Z","VersionCode":"pl"}] diff --git a/internal/service/testdata/syncdata/stage2/expected/tribe-changes.json b/internal/service/testdata/syncdata/stage2/expected/tribe-changes.json new file mode 100644 index 0000000..04d6b90 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/expected/tribe-changes.json @@ -0,0 +1 @@ +[{"ID":1,"PlayerID":6948,"NewTribeID":214,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752881Z"},{"ID":2,"PlayerID":17714,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752882Z"},{"ID":3,"PlayerID":33900,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752882Z"},{"ID":4,"PlayerID":82782,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752882Z"},{"ID":5,"PlayerID":87575,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752882Z"},{"ID":6,"PlayerID":100452,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752882Z"},{"ID":7,"PlayerID":101074,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752882Z"},{"ID":8,"PlayerID":108256,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752883Z"},{"ID":9,"PlayerID":113796,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752883Z"},{"ID":10,"PlayerID":117208,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752883Z"},{"ID":11,"PlayerID":118121,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752883Z"},{"ID":12,"PlayerID":122492,"NewTribeID":554,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752883Z"},{"ID":13,"PlayerID":126954,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752884Z"},{"ID":14,"PlayerID":128353,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752884Z"},{"ID":15,"PlayerID":129795,"NewTribeID":554,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752884Z"},{"ID":16,"PlayerID":131972,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752884Z"},{"ID":17,"PlayerID":192947,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752884Z"},{"ID":18,"PlayerID":195249,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752885Z"},{"ID":19,"PlayerID":197581,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752885Z"},{"ID":20,"PlayerID":225023,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752885Z"},{"ID":21,"PlayerID":254937,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752885Z"},{"ID":22,"PlayerID":272173,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752885Z"},{"ID":23,"PlayerID":281866,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752886Z"},{"ID":24,"PlayerID":289542,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752886Z"},{"ID":25,"PlayerID":301602,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752886Z"},{"ID":26,"PlayerID":335509,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752886Z"},{"ID":27,"PlayerID":337137,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752886Z"},{"ID":28,"PlayerID":356642,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752887Z"},{"ID":29,"PlayerID":361125,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752887Z"},{"ID":30,"PlayerID":363280,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752887Z"},{"ID":31,"PlayerID":364126,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752888Z"},{"ID":32,"PlayerID":371910,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752888Z"},{"ID":33,"PlayerID":382222,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752888Z"},{"ID":34,"PlayerID":393668,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752888Z"},{"ID":35,"PlayerID":439825,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752888Z"},{"ID":36,"PlayerID":466800,"NewTribeID":1602,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752889Z"},{"ID":37,"PlayerID":470266,"NewTribeID":1421,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752889Z"},{"ID":38,"PlayerID":477415,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752889Z"},{"ID":39,"PlayerID":483145,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752889Z"},{"ID":40,"PlayerID":498483,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75289Z"},{"ID":41,"PlayerID":526350,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75289Z"},{"ID":42,"PlayerID":545152,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75289Z"},{"ID":43,"PlayerID":546458,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75289Z"},{"ID":44,"PlayerID":556154,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75289Z"},{"ID":45,"PlayerID":569790,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752891Z"},{"ID":46,"PlayerID":570100,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752891Z"},{"ID":47,"PlayerID":583500,"NewTribeID":1728,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752891Z"},{"ID":48,"PlayerID":591733,"NewTribeID":1058,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752891Z"},{"ID":49,"PlayerID":602408,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752891Z"},{"ID":50,"PlayerID":603968,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752891Z"},{"ID":51,"PlayerID":606407,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752892Z"},{"ID":52,"PlayerID":606706,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752892Z"},{"ID":53,"PlayerID":609384,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752892Z"},{"ID":54,"PlayerID":634848,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752892Z"},{"ID":55,"PlayerID":662253,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752892Z"},{"ID":56,"PlayerID":671516,"NewTribeID":1275,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752893Z"},{"ID":57,"PlayerID":692803,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752893Z"},{"ID":58,"PlayerID":712216,"NewTribeID":382,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752893Z"},{"ID":59,"PlayerID":724621,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752893Z"},{"ID":60,"PlayerID":745946,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752893Z"},{"ID":61,"PlayerID":747422,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752893Z"},{"ID":62,"PlayerID":758104,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752894Z"},{"ID":63,"PlayerID":762975,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752894Z"},{"ID":64,"PlayerID":765188,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752894Z"},{"ID":65,"PlayerID":796977,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752894Z"},{"ID":66,"PlayerID":823987,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752894Z"},{"ID":67,"PlayerID":828637,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752895Z"},{"ID":68,"PlayerID":873575,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752895Z"},{"ID":69,"PlayerID":878961,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752895Z"},{"ID":70,"PlayerID":879782,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752895Z"},{"ID":71,"PlayerID":896355,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752896Z"},{"ID":72,"PlayerID":915113,"NewTribeID":830,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752896Z"},{"ID":73,"PlayerID":926823,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752896Z"},{"ID":74,"PlayerID":930720,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752896Z"},{"ID":75,"PlayerID":942959,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752896Z"},{"ID":76,"PlayerID":944147,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752897Z"},{"ID":77,"PlayerID":947923,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752897Z"},{"ID":78,"PlayerID":951823,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752897Z"},{"ID":79,"PlayerID":959179,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752897Z"},{"ID":80,"PlayerID":960100,"NewTribeID":1672,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752897Z"},{"ID":81,"PlayerID":1006847,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752897Z"},{"ID":82,"PlayerID":1018357,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752898Z"},{"ID":83,"PlayerID":1020792,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752898Z"},{"ID":84,"PlayerID":1021709,"NewTribeID":1705,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752898Z"},{"ID":85,"PlayerID":1043028,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752898Z"},{"ID":86,"PlayerID":1044760,"NewTribeID":159,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752898Z"},{"ID":87,"PlayerID":1079223,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752898Z"},{"ID":88,"PlayerID":1085802,"NewTribeID":1791,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752899Z"},{"ID":89,"PlayerID":1086351,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752899Z"},{"ID":90,"PlayerID":1095271,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752899Z"},{"ID":91,"PlayerID":1095489,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752899Z"},{"ID":92,"PlayerID":1096254,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752899Z"},{"ID":93,"PlayerID":1164249,"NewTribeID":72,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752899Z"},{"ID":94,"PlayerID":1170102,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.7529Z"},{"ID":95,"PlayerID":1205898,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.7529Z"},{"ID":96,"PlayerID":1227918,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.7529Z"},{"ID":97,"PlayerID":1238300,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.7529Z"},{"ID":98,"PlayerID":1260088,"NewTribeID":1657,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.7529Z"},{"ID":99,"PlayerID":1267913,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752901Z"},{"ID":100,"PlayerID":1270916,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752901Z"},{"ID":101,"PlayerID":1276665,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752901Z"},{"ID":102,"PlayerID":1284796,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752901Z"},{"ID":103,"PlayerID":1285441,"NewTribeID":1431,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752901Z"},{"ID":104,"PlayerID":1286008,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752901Z"},{"ID":105,"PlayerID":1304915,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752902Z"},{"ID":106,"PlayerID":1323424,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752902Z"},{"ID":107,"PlayerID":1350456,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752902Z"},{"ID":108,"PlayerID":1371998,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752902Z"},{"ID":109,"PlayerID":1406042,"NewTribeID":365,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752902Z"},{"ID":110,"PlayerID":1415009,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752903Z"},{"ID":111,"PlayerID":1415665,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752903Z"},{"ID":112,"PlayerID":1424656,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752904Z"},{"ID":113,"PlayerID":1434753,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752904Z"},{"ID":114,"PlayerID":1450352,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752904Z"},{"ID":115,"PlayerID":1454871,"NewTribeID":413,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752904Z"},{"ID":116,"PlayerID":1493696,"NewTribeID":1786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752904Z"},{"ID":117,"PlayerID":1497168,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752904Z"},{"ID":118,"PlayerID":1511101,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":119,"PlayerID":1525273,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":120,"PlayerID":1536231,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":121,"PlayerID":1536625,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":122,"PlayerID":1553947,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":123,"PlayerID":1563417,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":124,"PlayerID":1568700,"NewTribeID":339,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752905Z"},{"ID":125,"PlayerID":1568908,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752906Z"},{"ID":126,"PlayerID":1578509,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752906Z"},{"ID":127,"PlayerID":1601917,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752906Z"},{"ID":128,"PlayerID":1606425,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752906Z"},{"ID":129,"PlayerID":1608563,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752906Z"},{"ID":130,"PlayerID":1646837,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":131,"PlayerID":1647052,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":132,"PlayerID":1668965,"NewTribeID":220,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":133,"PlayerID":1693936,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":134,"PlayerID":1700145,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":135,"PlayerID":1715091,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":136,"PlayerID":1746216,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752907Z"},{"ID":137,"PlayerID":1748180,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752908Z"},{"ID":138,"PlayerID":1767876,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752908Z"},{"ID":139,"PlayerID":1775957,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752908Z"},{"ID":140,"PlayerID":1782523,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752908Z"},{"ID":141,"PlayerID":1804724,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752908Z"},{"ID":142,"PlayerID":1809943,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752908Z"},{"ID":143,"PlayerID":1830149,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752909Z"},{"ID":144,"PlayerID":1867161,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752909Z"},{"ID":145,"PlayerID":1889913,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752909Z"},{"ID":146,"PlayerID":1895081,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752909Z"},{"ID":147,"PlayerID":1900364,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752909Z"},{"ID":148,"PlayerID":1924718,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752909Z"},{"ID":149,"PlayerID":1990750,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75291Z"},{"ID":150,"PlayerID":2065730,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75291Z"},{"ID":151,"PlayerID":2083273,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75291Z"},{"ID":152,"PlayerID":2087251,"NewTribeID":991,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75291Z"},{"ID":153,"PlayerID":2105150,"NewTribeID":1166,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75291Z"},{"ID":154,"PlayerID":2130659,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75291Z"},{"ID":155,"PlayerID":2135129,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752911Z"},{"ID":156,"PlayerID":2177410,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752911Z"},{"ID":157,"PlayerID":2210946,"NewTribeID":1799,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752911Z"},{"ID":158,"PlayerID":2232973,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752911Z"},{"ID":159,"PlayerID":2246711,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752911Z"},{"ID":160,"PlayerID":2262902,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752911Z"},{"ID":161,"PlayerID":2268889,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752912Z"},{"ID":162,"PlayerID":2269943,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752912Z"},{"ID":163,"PlayerID":2289134,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752912Z"},{"ID":164,"PlayerID":2293376,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752912Z"},{"ID":165,"PlayerID":2297431,"NewTribeID":1585,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752912Z"},{"ID":166,"PlayerID":2308351,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752912Z"},{"ID":167,"PlayerID":2315542,"NewTribeID":517,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":168,"PlayerID":2321390,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":169,"PlayerID":2323859,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":170,"PlayerID":2324569,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":171,"PlayerID":2345447,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":172,"PlayerID":2357773,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":173,"PlayerID":2363165,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752913Z"},{"ID":174,"PlayerID":2365630,"NewTribeID":451,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752914Z"},{"ID":175,"PlayerID":2392791,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752914Z"},{"ID":176,"PlayerID":2411854,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752914Z"},{"ID":177,"PlayerID":2415972,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752914Z"},{"ID":178,"PlayerID":2418002,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752914Z"},{"ID":179,"PlayerID":2418364,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752915Z"},{"ID":180,"PlayerID":2453888,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752915Z"},{"ID":181,"PlayerID":2467370,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752915Z"},{"ID":182,"PlayerID":2502956,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752915Z"},{"ID":183,"PlayerID":2514219,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752915Z"},{"ID":184,"PlayerID":2571407,"NewTribeID":97,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752915Z"},{"ID":185,"PlayerID":2571536,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752916Z"},{"ID":186,"PlayerID":2575842,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752916Z"},{"ID":187,"PlayerID":2585846,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752916Z"},{"ID":188,"PlayerID":2591538,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752916Z"},{"ID":189,"PlayerID":2593568,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752916Z"},{"ID":190,"PlayerID":2595542,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752916Z"},{"ID":191,"PlayerID":2600387,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752917Z"},{"ID":192,"PlayerID":2620389,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752917Z"},{"ID":193,"PlayerID":2646397,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752917Z"},{"ID":194,"PlayerID":2665207,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752917Z"},{"ID":195,"PlayerID":2684175,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752917Z"},{"ID":196,"PlayerID":2692494,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752918Z"},{"ID":197,"PlayerID":2717161,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752918Z"},{"ID":198,"PlayerID":2723244,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752918Z"},{"ID":199,"PlayerID":2725721,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752918Z"},{"ID":200,"PlayerID":2730335,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752918Z"},{"ID":201,"PlayerID":2735370,"NewTribeID":989,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752918Z"},{"ID":202,"PlayerID":2764337,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752919Z"},{"ID":203,"PlayerID":2800032,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752919Z"},{"ID":204,"PlayerID":2801913,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752919Z"},{"ID":205,"PlayerID":2808172,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752919Z"},{"ID":206,"PlayerID":2811568,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752919Z"},{"ID":207,"PlayerID":2812197,"NewTribeID":523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752919Z"},{"ID":208,"PlayerID":2819768,"NewTribeID":965,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75292Z"},{"ID":209,"PlayerID":2837080,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75292Z"},{"ID":210,"PlayerID":2873154,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75292Z"},{"ID":211,"PlayerID":2976468,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75292Z"},{"ID":212,"PlayerID":2999957,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75292Z"},{"ID":213,"PlayerID":3022364,"NewTribeID":809,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75292Z"},{"ID":214,"PlayerID":3024357,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752921Z"},{"ID":215,"PlayerID":3057381,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752921Z"},{"ID":216,"PlayerID":3108144,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752921Z"},{"ID":217,"PlayerID":3181712,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752921Z"},{"ID":218,"PlayerID":3264534,"NewTribeID":1456,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752921Z"},{"ID":219,"PlayerID":3298564,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752921Z"},{"ID":220,"PlayerID":3298902,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752922Z"},{"ID":221,"PlayerID":3319611,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752922Z"},{"ID":222,"PlayerID":3340647,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752922Z"},{"ID":223,"PlayerID":3342690,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752922Z"},{"ID":224,"PlayerID":3345943,"NewTribeID":546,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752922Z"},{"ID":225,"PlayerID":3362925,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752922Z"},{"ID":226,"PlayerID":3364735,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752923Z"},{"ID":227,"PlayerID":3365981,"NewTribeID":116,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752923Z"},{"ID":228,"PlayerID":3372959,"NewTribeID":626,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752923Z"},{"ID":229,"PlayerID":3377503,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752923Z"},{"ID":230,"PlayerID":3377827,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752923Z"},{"ID":231,"PlayerID":3395817,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752923Z"},{"ID":232,"PlayerID":3409028,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752924Z"},{"ID":233,"PlayerID":3411571,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752924Z"},{"ID":234,"PlayerID":3430969,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752924Z"},{"ID":235,"PlayerID":3441892,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752924Z"},{"ID":236,"PlayerID":3454753,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752924Z"},{"ID":237,"PlayerID":3467919,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752924Z"},{"ID":238,"PlayerID":3475079,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":239,"PlayerID":3484132,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":240,"PlayerID":3487721,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":241,"PlayerID":3499467,"NewTribeID":187,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":242,"PlayerID":3502565,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":243,"PlayerID":3560281,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":244,"PlayerID":3589487,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752925Z"},{"ID":245,"PlayerID":3600737,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752926Z"},{"ID":246,"PlayerID":3613413,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752926Z"},{"ID":247,"PlayerID":3631404,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752926Z"},{"ID":248,"PlayerID":3639628,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752926Z"},{"ID":249,"PlayerID":3647080,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752926Z"},{"ID":250,"PlayerID":3647086,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752926Z"},{"ID":251,"PlayerID":3652727,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":252,"PlayerID":3667722,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":253,"PlayerID":3692413,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":254,"PlayerID":3698627,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":255,"PlayerID":3713020,"NewTribeID":317,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":256,"PlayerID":3739202,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":257,"PlayerID":3750922,"NewTribeID":1528,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752927Z"},{"ID":258,"PlayerID":3762475,"NewTribeID":435,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752928Z"},{"ID":259,"PlayerID":3781794,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752928Z"},{"ID":260,"PlayerID":3824463,"NewTribeID":1804,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752928Z"},{"ID":261,"PlayerID":3842862,"NewTribeID":281,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752928Z"},{"ID":262,"PlayerID":3895471,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752928Z"},{"ID":263,"PlayerID":3896657,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752928Z"},{"ID":264,"PlayerID":3909522,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":265,"PlayerID":3933666,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":266,"PlayerID":3957237,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":267,"PlayerID":3969110,"NewTribeID":319,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":268,"PlayerID":3986807,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":269,"PlayerID":5991728,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":270,"PlayerID":5997814,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752929Z"},{"ID":271,"PlayerID":6001174,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75293Z"},{"ID":272,"PlayerID":6002527,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75293Z"},{"ID":273,"PlayerID":6032352,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75293Z"},{"ID":274,"PlayerID":6046368,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75293Z"},{"ID":275,"PlayerID":6046743,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75293Z"},{"ID":276,"PlayerID":6048627,"NewTribeID":1745,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75293Z"},{"ID":277,"PlayerID":6071567,"NewTribeID":664,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":278,"PlayerID":6078176,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":279,"PlayerID":6083448,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":280,"PlayerID":6101033,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":281,"PlayerID":6111938,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":282,"PlayerID":6116940,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":283,"PlayerID":6118079,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752931Z"},{"ID":284,"PlayerID":6121024,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752932Z"},{"ID":285,"PlayerID":6127190,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752932Z"},{"ID":286,"PlayerID":6131106,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752932Z"},{"ID":287,"PlayerID":6135387,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752932Z"},{"ID":288,"PlayerID":6136757,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752932Z"},{"ID":289,"PlayerID":6143689,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752932Z"},{"ID":290,"PlayerID":6145316,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752933Z"},{"ID":291,"PlayerID":6160655,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752933Z"},{"ID":292,"PlayerID":6167751,"NewTribeID":1278,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752933Z"},{"ID":293,"PlayerID":6169408,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752933Z"},{"ID":294,"PlayerID":6171569,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752933Z"},{"ID":295,"PlayerID":6174010,"NewTribeID":1599,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752933Z"},{"ID":296,"PlayerID":6180190,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752934Z"},{"ID":297,"PlayerID":6186491,"NewTribeID":211,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752934Z"},{"ID":298,"PlayerID":6193337,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752934Z"},{"ID":299,"PlayerID":6212605,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752934Z"},{"ID":300,"PlayerID":6240801,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752934Z"},{"ID":301,"PlayerID":6243588,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":302,"PlayerID":6258092,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":303,"PlayerID":6262469,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":304,"PlayerID":6270765,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":305,"PlayerID":6276419,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":306,"PlayerID":6284929,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":307,"PlayerID":6296228,"NewTribeID":475,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752935Z"},{"ID":308,"PlayerID":6299408,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752936Z"},{"ID":309,"PlayerID":6300771,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752936Z"},{"ID":310,"PlayerID":6301789,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752936Z"},{"ID":311,"PlayerID":6310214,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752936Z"},{"ID":312,"PlayerID":6315553,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752936Z"},{"ID":313,"PlayerID":6323735,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752936Z"},{"ID":314,"PlayerID":6330147,"NewTribeID":216,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":315,"PlayerID":6343784,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":316,"PlayerID":6354098,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":317,"PlayerID":6354962,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":318,"PlayerID":6379173,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":319,"PlayerID":6384450,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":320,"PlayerID":6395848,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752937Z"},{"ID":321,"PlayerID":6409472,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752938Z"},{"ID":322,"PlayerID":6416213,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752938Z"},{"ID":323,"PlayerID":6417987,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752938Z"},{"ID":324,"PlayerID":6423275,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752938Z"},{"ID":325,"PlayerID":6423719,"NewTribeID":185,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752938Z"},{"ID":326,"PlayerID":6425087,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752938Z"},{"ID":327,"PlayerID":6468217,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752939Z"},{"ID":328,"PlayerID":6510480,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752939Z"},{"ID":329,"PlayerID":6516085,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752939Z"},{"ID":330,"PlayerID":6517826,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752939Z"},{"ID":331,"PlayerID":6520732,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752939Z"},{"ID":332,"PlayerID":6528152,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752939Z"},{"ID":333,"PlayerID":6541079,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75294Z"},{"ID":334,"PlayerID":6557824,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75294Z"},{"ID":335,"PlayerID":6590149,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75294Z"},{"ID":336,"PlayerID":6618608,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75294Z"},{"ID":337,"PlayerID":6625437,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75294Z"},{"ID":338,"PlayerID":6647642,"NewTribeID":319,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.75294Z"},{"ID":339,"PlayerID":6651072,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752941Z"},{"ID":340,"PlayerID":6658016,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.752941Z"},{"ID":341,"PlayerID":6674092,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809558Z"},{"ID":342,"PlayerID":6692351,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809558Z"},{"ID":343,"PlayerID":6786449,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809558Z"},{"ID":344,"PlayerID":6818593,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809559Z"},{"ID":345,"PlayerID":6821136,"NewTribeID":1779,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809559Z"},{"ID":346,"PlayerID":6822957,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809559Z"},{"ID":347,"PlayerID":6853693,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809559Z"},{"ID":348,"PlayerID":6857973,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809559Z"},{"ID":349,"PlayerID":6870350,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80956Z"},{"ID":350,"PlayerID":6882236,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80956Z"},{"ID":351,"PlayerID":6910361,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80956Z"},{"ID":352,"PlayerID":6920960,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80956Z"},{"ID":353,"PlayerID":6921135,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80956Z"},{"ID":354,"PlayerID":6923061,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80956Z"},{"ID":355,"PlayerID":6925574,"NewTribeID":1416,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809561Z"},{"ID":356,"PlayerID":6927748,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809561Z"},{"ID":357,"PlayerID":6929240,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809561Z"},{"ID":358,"PlayerID":6936607,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809561Z"},{"ID":359,"PlayerID":6948793,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809561Z"},{"ID":360,"PlayerID":6956104,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809562Z"},{"ID":361,"PlayerID":6968280,"NewTribeID":1707,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809562Z"},{"ID":362,"PlayerID":6986891,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809562Z"},{"ID":363,"PlayerID":7007969,"NewTribeID":1317,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809562Z"},{"ID":364,"PlayerID":7012651,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809562Z"},{"ID":365,"PlayerID":7013660,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809563Z"},{"ID":366,"PlayerID":7038651,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809563Z"},{"ID":367,"PlayerID":7047342,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809563Z"},{"ID":368,"PlayerID":7064954,"NewTribeID":1790,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809563Z"},{"ID":369,"PlayerID":7083877,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809563Z"},{"ID":370,"PlayerID":7085502,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809564Z"},{"ID":371,"PlayerID":7085510,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809564Z"},{"ID":372,"PlayerID":7092442,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809564Z"},{"ID":373,"PlayerID":7098955,"NewTribeID":830,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809564Z"},{"ID":374,"PlayerID":7125212,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809564Z"},{"ID":375,"PlayerID":7135037,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809564Z"},{"ID":376,"PlayerID":7139820,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809565Z"},{"ID":377,"PlayerID":7139853,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809565Z"},{"ID":378,"PlayerID":7140413,"NewTribeID":374,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809565Z"},{"ID":379,"PlayerID":7142659,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809565Z"},{"ID":380,"PlayerID":7150939,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809565Z"},{"ID":381,"PlayerID":7154207,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809565Z"},{"ID":382,"PlayerID":7157316,"NewTribeID":693,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809566Z"},{"ID":383,"PlayerID":7158871,"NewTribeID":475,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809566Z"},{"ID":384,"PlayerID":7180447,"NewTribeID":1792,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809566Z"},{"ID":385,"PlayerID":7181335,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809566Z"},{"ID":386,"PlayerID":7183372,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809566Z"},{"ID":387,"PlayerID":7210775,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809567Z"},{"ID":388,"PlayerID":7221139,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809567Z"},{"ID":389,"PlayerID":7226782,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809567Z"},{"ID":390,"PlayerID":7249451,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809567Z"},{"ID":391,"PlayerID":7259690,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809567Z"},{"ID":392,"PlayerID":7271812,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809567Z"},{"ID":393,"PlayerID":7272223,"NewTribeID":4,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809568Z"},{"ID":394,"PlayerID":7287342,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809568Z"},{"ID":395,"PlayerID":7313287,"NewTribeID":1530,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809568Z"},{"ID":396,"PlayerID":7318415,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809568Z"},{"ID":397,"PlayerID":7318949,"NewTribeID":1645,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809568Z"},{"ID":398,"PlayerID":7333216,"NewTribeID":936,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":399,"PlayerID":7337110,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":400,"PlayerID":7340529,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":401,"PlayerID":7346797,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":402,"PlayerID":7349282,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":403,"PlayerID":7365299,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":404,"PlayerID":7386358,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809569Z"},{"ID":405,"PlayerID":7394371,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80957Z"},{"ID":406,"PlayerID":7409475,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80957Z"},{"ID":407,"PlayerID":7417116,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80957Z"},{"ID":408,"PlayerID":7418168,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80957Z"},{"ID":409,"PlayerID":7422002,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80957Z"},{"ID":410,"PlayerID":7427966,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809571Z"},{"ID":411,"PlayerID":7428666,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809571Z"},{"ID":412,"PlayerID":7449254,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809571Z"},{"ID":413,"PlayerID":7462660,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809571Z"},{"ID":414,"PlayerID":7474527,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809571Z"},{"ID":415,"PlayerID":7477695,"NewTribeID":1727,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809572Z"},{"ID":416,"PlayerID":7491093,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809572Z"},{"ID":417,"PlayerID":7494178,"NewTribeID":548,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809572Z"},{"ID":418,"PlayerID":7494497,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809572Z"},{"ID":419,"PlayerID":7499430,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809572Z"},{"ID":420,"PlayerID":7508390,"NewTribeID":1610,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809572Z"},{"ID":421,"PlayerID":7516892,"NewTribeID":1333,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809573Z"},{"ID":422,"PlayerID":7518529,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809573Z"},{"ID":423,"PlayerID":7520280,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809573Z"},{"ID":424,"PlayerID":7526090,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809573Z"},{"ID":425,"PlayerID":7528491,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809573Z"},{"ID":426,"PlayerID":7530708,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":427,"PlayerID":7540891,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":428,"PlayerID":7550472,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":429,"PlayerID":7555180,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":430,"PlayerID":7557683,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":431,"PlayerID":7559093,"NewTribeID":1399,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":432,"PlayerID":7560474,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809574Z"},{"ID":433,"PlayerID":7563943,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809575Z"},{"ID":434,"PlayerID":7581876,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809575Z"},{"ID":435,"PlayerID":7588382,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809575Z"},{"ID":436,"PlayerID":7589468,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809575Z"},{"ID":437,"PlayerID":7590135,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809575Z"},{"ID":438,"PlayerID":7605446,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809575Z"},{"ID":439,"PlayerID":7646152,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809576Z"},{"ID":440,"PlayerID":7651093,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809576Z"},{"ID":441,"PlayerID":7661091,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809576Z"},{"ID":442,"PlayerID":7675610,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809576Z"},{"ID":443,"PlayerID":7687862,"NewTribeID":1648,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809576Z"},{"ID":444,"PlayerID":7691817,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809576Z"},{"ID":445,"PlayerID":7733128,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809577Z"},{"ID":446,"PlayerID":7749444,"NewTribeID":355,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809577Z"},{"ID":447,"PlayerID":7756002,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809577Z"},{"ID":448,"PlayerID":7758085,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809577Z"},{"ID":449,"PlayerID":7775311,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809577Z"},{"ID":450,"PlayerID":7781236,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809577Z"},{"ID":451,"PlayerID":7787254,"NewTribeID":597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809578Z"},{"ID":452,"PlayerID":7803631,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809578Z"},{"ID":453,"PlayerID":7829201,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809578Z"},{"ID":454,"PlayerID":7831811,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809578Z"},{"ID":455,"PlayerID":7842579,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809578Z"},{"ID":456,"PlayerID":7860453,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809578Z"},{"ID":457,"PlayerID":7865511,"NewTribeID":1636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809579Z"},{"ID":458,"PlayerID":7897925,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809579Z"},{"ID":459,"PlayerID":7899232,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809579Z"},{"ID":460,"PlayerID":7913305,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809579Z"},{"ID":461,"PlayerID":7914131,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809579Z"},{"ID":462,"PlayerID":7915966,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80958Z"},{"ID":463,"PlayerID":7919620,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80958Z"},{"ID":464,"PlayerID":7929731,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80958Z"},{"ID":465,"PlayerID":7973893,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80958Z"},{"ID":466,"PlayerID":7976264,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80958Z"},{"ID":467,"PlayerID":7985956,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80958Z"},{"ID":468,"PlayerID":7995033,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809581Z"},{"ID":469,"PlayerID":7999103,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809581Z"},{"ID":470,"PlayerID":8000875,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809581Z"},{"ID":471,"PlayerID":8004076,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809581Z"},{"ID":472,"PlayerID":8013349,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809581Z"},{"ID":473,"PlayerID":8015775,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809581Z"},{"ID":474,"PlayerID":8015955,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809582Z"},{"ID":475,"PlayerID":8019812,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809582Z"},{"ID":476,"PlayerID":8048374,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809582Z"},{"ID":477,"PlayerID":8078914,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809582Z"},{"ID":478,"PlayerID":8096537,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809582Z"},{"ID":479,"PlayerID":8099868,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809582Z"},{"ID":480,"PlayerID":8106333,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809583Z"},{"ID":481,"PlayerID":8123790,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809583Z"},{"ID":482,"PlayerID":8134135,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809583Z"},{"ID":483,"PlayerID":8138506,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809583Z"},{"ID":484,"PlayerID":8153179,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809583Z"},{"ID":485,"PlayerID":8155296,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809583Z"},{"ID":486,"PlayerID":8175236,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809584Z"},{"ID":487,"PlayerID":8184383,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809584Z"},{"ID":488,"PlayerID":8191129,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809584Z"},{"ID":489,"PlayerID":8192845,"NewTribeID":1161,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809584Z"},{"ID":490,"PlayerID":8199417,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809584Z"},{"ID":491,"PlayerID":8201460,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809584Z"},{"ID":492,"PlayerID":8204926,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":493,"PlayerID":8217130,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":494,"PlayerID":8218433,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":495,"PlayerID":8224678,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":496,"PlayerID":8240209,"NewTribeID":89,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":497,"PlayerID":8240677,"NewTribeID":176,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":498,"PlayerID":8259895,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809585Z"},{"ID":499,"PlayerID":8268010,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809586Z"},{"ID":500,"PlayerID":8288459,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809586Z"},{"ID":501,"PlayerID":8292737,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809586Z"},{"ID":502,"PlayerID":8305343,"NewTribeID":503,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809586Z"},{"ID":503,"PlayerID":8320319,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809586Z"},{"ID":504,"PlayerID":8323711,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809586Z"},{"ID":505,"PlayerID":8325063,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809587Z"},{"ID":506,"PlayerID":8325700,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809587Z"},{"ID":507,"PlayerID":8337151,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809587Z"},{"ID":508,"PlayerID":8362886,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809587Z"},{"ID":509,"PlayerID":8366045,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809587Z"},{"ID":510,"PlayerID":8369561,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809587Z"},{"ID":511,"PlayerID":8369778,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809588Z"},{"ID":512,"PlayerID":8373234,"NewTribeID":1626,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809588Z"},{"ID":513,"PlayerID":8379825,"NewTribeID":474,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809588Z"},{"ID":514,"PlayerID":8400180,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809588Z"},{"ID":515,"PlayerID":8400975,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809588Z"},{"ID":516,"PlayerID":8408007,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809588Z"},{"ID":517,"PlayerID":8411874,"NewTribeID":841,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":518,"PlayerID":8418489,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":519,"PlayerID":8419570,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":520,"PlayerID":8420564,"NewTribeID":520,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":521,"PlayerID":8423835,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":522,"PlayerID":8425594,"NewTribeID":1582,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":523,"PlayerID":8428196,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809589Z"},{"ID":524,"PlayerID":8429484,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80959Z"},{"ID":525,"PlayerID":8434727,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80959Z"},{"ID":526,"PlayerID":8438707,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80959Z"},{"ID":527,"PlayerID":8444356,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80959Z"},{"ID":528,"PlayerID":8444698,"NewTribeID":1691,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80959Z"},{"ID":529,"PlayerID":8459255,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80959Z"},{"ID":530,"PlayerID":8478874,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809591Z"},{"ID":531,"PlayerID":8483719,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809591Z"},{"ID":532,"PlayerID":8501514,"NewTribeID":115,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809591Z"},{"ID":533,"PlayerID":8502135,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809591Z"},{"ID":534,"PlayerID":8503255,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809591Z"},{"ID":535,"PlayerID":8513699,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809591Z"},{"ID":536,"PlayerID":8539216,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809592Z"},{"ID":537,"PlayerID":8541236,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809592Z"},{"ID":538,"PlayerID":8552893,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809592Z"},{"ID":539,"PlayerID":8553904,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809592Z"},{"ID":540,"PlayerID":8583185,"NewTribeID":1754,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809592Z"},{"ID":541,"PlayerID":8588789,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809592Z"},{"ID":542,"PlayerID":8595633,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809593Z"},{"ID":543,"PlayerID":8607734,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809593Z"},{"ID":544,"PlayerID":8609713,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809593Z"},{"ID":545,"PlayerID":8612358,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809593Z"},{"ID":546,"PlayerID":8622901,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809593Z"},{"ID":547,"PlayerID":8627359,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809593Z"},{"ID":548,"PlayerID":8630972,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809594Z"},{"ID":549,"PlayerID":8632462,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809594Z"},{"ID":550,"PlayerID":8649412,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809594Z"},{"ID":551,"PlayerID":8654156,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809594Z"},{"ID":552,"PlayerID":8662264,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809594Z"},{"ID":553,"PlayerID":8662634,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809595Z"},{"ID":554,"PlayerID":8665783,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809595Z"},{"ID":555,"PlayerID":8669398,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809595Z"},{"ID":556,"PlayerID":8674163,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809595Z"},{"ID":557,"PlayerID":8675636,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809595Z"},{"ID":558,"PlayerID":8677963,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809595Z"},{"ID":559,"PlayerID":8678008,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809596Z"},{"ID":560,"PlayerID":8698728,"NewTribeID":211,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809596Z"},{"ID":561,"PlayerID":8699429,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809596Z"},{"ID":562,"PlayerID":8708728,"NewTribeID":220,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809596Z"},{"ID":563,"PlayerID":8710047,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809596Z"},{"ID":564,"PlayerID":8720321,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809596Z"},{"ID":565,"PlayerID":8724192,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809597Z"},{"ID":566,"PlayerID":8729672,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809597Z"},{"ID":567,"PlayerID":8740199,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809597Z"},{"ID":568,"PlayerID":8741336,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809597Z"},{"ID":569,"PlayerID":8742874,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809597Z"},{"ID":570,"PlayerID":8752714,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809598Z"},{"ID":571,"PlayerID":8753956,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809598Z"},{"ID":572,"PlayerID":8760563,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809598Z"},{"ID":573,"PlayerID":8772923,"NewTribeID":200,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809598Z"},{"ID":574,"PlayerID":8776452,"NewTribeID":1477,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809598Z"},{"ID":575,"PlayerID":8779575,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809598Z"},{"ID":576,"PlayerID":8785003,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809599Z"},{"ID":577,"PlayerID":8785314,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809599Z"},{"ID":578,"PlayerID":8788366,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809599Z"},{"ID":579,"PlayerID":8792844,"NewTribeID":287,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809599Z"},{"ID":580,"PlayerID":8806145,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809599Z"},{"ID":581,"PlayerID":8811880,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809599Z"},{"ID":582,"PlayerID":8812550,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8096Z"},{"ID":583,"PlayerID":8815353,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8096Z"},{"ID":584,"PlayerID":8815749,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8096Z"},{"ID":585,"PlayerID":8816336,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8096Z"},{"ID":586,"PlayerID":8827094,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8096Z"},{"ID":587,"PlayerID":8831977,"NewTribeID":89,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8096Z"},{"ID":588,"PlayerID":8838462,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":589,"PlayerID":8839403,"NewTribeID":255,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":590,"PlayerID":8841266,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":591,"PlayerID":8842936,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":592,"PlayerID":8843774,"NewTribeID":624,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":593,"PlayerID":8847546,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":594,"PlayerID":8852026,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809601Z"},{"ID":595,"PlayerID":8853146,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809602Z"},{"ID":596,"PlayerID":8855679,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809602Z"},{"ID":597,"PlayerID":8856821,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809602Z"},{"ID":598,"PlayerID":8868716,"NewTribeID":554,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809602Z"},{"ID":599,"PlayerID":8877156,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809602Z"},{"ID":600,"PlayerID":8877886,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809602Z"},{"ID":601,"PlayerID":8890346,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":602,"PlayerID":8890793,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":603,"PlayerID":8895532,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":604,"PlayerID":8900955,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":605,"PlayerID":8908002,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":606,"PlayerID":8908544,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":607,"PlayerID":8916982,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809603Z"},{"ID":608,"PlayerID":8922870,"NewTribeID":1753,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809604Z"},{"ID":609,"PlayerID":8925624,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809604Z"},{"ID":610,"PlayerID":8925695,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809604Z"},{"ID":611,"PlayerID":8954402,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809604Z"},{"ID":612,"PlayerID":8956715,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809604Z"},{"ID":613,"PlayerID":8963720,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809604Z"},{"ID":614,"PlayerID":8966820,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809605Z"},{"ID":615,"PlayerID":8967440,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809605Z"},{"ID":616,"PlayerID":8976313,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809605Z"},{"ID":617,"PlayerID":8978080,"NewTribeID":1498,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809605Z"},{"ID":618,"PlayerID":8980651,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809605Z"},{"ID":619,"PlayerID":8991696,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809605Z"},{"ID":620,"PlayerID":8997874,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":621,"PlayerID":9003698,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":622,"PlayerID":9014108,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":623,"PlayerID":9016464,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":624,"PlayerID":9016560,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":625,"PlayerID":9021037,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":626,"PlayerID":9021920,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809606Z"},{"ID":627,"PlayerID":9023703,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809607Z"},{"ID":628,"PlayerID":9029627,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809607Z"},{"ID":629,"PlayerID":9029928,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809607Z"},{"ID":630,"PlayerID":9037756,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809607Z"},{"ID":631,"PlayerID":9048764,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809607Z"},{"ID":632,"PlayerID":9053254,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809607Z"},{"ID":633,"PlayerID":9057880,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809608Z"},{"ID":634,"PlayerID":9060641,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809608Z"},{"ID":635,"PlayerID":9060885,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809608Z"},{"ID":636,"PlayerID":9095581,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809608Z"},{"ID":637,"PlayerID":9097545,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809608Z"},{"ID":638,"PlayerID":9101574,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809608Z"},{"ID":639,"PlayerID":9103424,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":640,"PlayerID":9106642,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":641,"PlayerID":9113064,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":642,"PlayerID":9120206,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":643,"PlayerID":9136062,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":644,"PlayerID":9147518,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":645,"PlayerID":9148043,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809609Z"},{"ID":646,"PlayerID":9148439,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80961Z"},{"ID":647,"PlayerID":9153430,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80961Z"},{"ID":648,"PlayerID":9163140,"NewTribeID":1368,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80961Z"},{"ID":649,"PlayerID":9167250,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80961Z"},{"ID":650,"PlayerID":9174887,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.80961Z"},{"ID":651,"PlayerID":9179700,"NewTribeID":1772,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809611Z"},{"ID":652,"PlayerID":9180206,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809611Z"},{"ID":653,"PlayerID":9185931,"NewTribeID":12,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809611Z"},{"ID":654,"PlayerID":9186126,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809611Z"},{"ID":655,"PlayerID":9186877,"NewTribeID":1806,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809611Z"},{"ID":656,"PlayerID":9188016,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809611Z"},{"ID":657,"PlayerID":9191031,"NewTribeID":1763,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":658,"PlayerID":9195661,"NewTribeID":1793,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":659,"PlayerID":9199885,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":660,"PlayerID":9201946,"NewTribeID":1799,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":661,"PlayerID":9228039,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":662,"PlayerID":9231765,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":663,"PlayerID":9234594,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809612Z"},{"ID":664,"PlayerID":9235561,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809613Z"},{"ID":665,"PlayerID":9236866,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809613Z"},{"ID":666,"PlayerID":9238175,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809613Z"},{"ID":667,"PlayerID":9239515,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809613Z"},{"ID":668,"PlayerID":9240154,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.809613Z"},{"ID":669,"PlayerID":9253494,"NewTribeID":1470,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877666Z"},{"ID":670,"PlayerID":9257513,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87767Z"},{"ID":671,"PlayerID":9264752,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877672Z"},{"ID":672,"PlayerID":9266092,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877677Z"},{"ID":673,"PlayerID":9270302,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877679Z"},{"ID":674,"PlayerID":9272054,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877681Z"},{"ID":675,"PlayerID":9277642,"NewTribeID":1530,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877682Z"},{"ID":676,"PlayerID":9280477,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877684Z"},{"ID":677,"PlayerID":9282669,"NewTribeID":1389,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877686Z"},{"ID":678,"PlayerID":9283142,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877688Z"},{"ID":679,"PlayerID":9283775,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877688Z"},{"ID":680,"PlayerID":9291984,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87769Z"},{"ID":681,"PlayerID":9299539,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877692Z"},{"ID":682,"PlayerID":9312528,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877694Z"},{"ID":683,"PlayerID":9314079,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877696Z"},{"ID":684,"PlayerID":9318449,"NewTribeID":1338,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877698Z"},{"ID":685,"PlayerID":9319058,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8777Z"},{"ID":686,"PlayerID":698143931,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877701Z"},{"ID":687,"PlayerID":698147372,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877703Z"},{"ID":688,"PlayerID":698147969,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877706Z"},{"ID":689,"PlayerID":698151302,"NewTribeID":72,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877706Z"},{"ID":690,"PlayerID":698152377,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877708Z"},{"ID":691,"PlayerID":698152498,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87771Z"},{"ID":692,"PlayerID":698160606,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877712Z"},{"ID":693,"PlayerID":698162312,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877714Z"},{"ID":694,"PlayerID":698167138,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877715Z"},{"ID":695,"PlayerID":698171150,"NewTribeID":1757,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877717Z"},{"ID":696,"PlayerID":698178312,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877719Z"},{"ID":697,"PlayerID":698187023,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877721Z"},{"ID":698,"PlayerID":698191218,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877723Z"},{"ID":699,"PlayerID":698200480,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877723Z"},{"ID":700,"PlayerID":698212272,"NewTribeID":686,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877726Z"},{"ID":701,"PlayerID":698215322,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877728Z"},{"ID":702,"PlayerID":698231772,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87773Z"},{"ID":703,"PlayerID":698232227,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877731Z"},{"ID":704,"PlayerID":698239813,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877733Z"},{"ID":705,"PlayerID":698241117,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877736Z"},{"ID":706,"PlayerID":698248308,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877738Z"},{"ID":707,"PlayerID":698258283,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87774Z"},{"ID":708,"PlayerID":698264828,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877742Z"},{"ID":709,"PlayerID":698273555,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877742Z"},{"ID":710,"PlayerID":698278542,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877744Z"},{"ID":711,"PlayerID":698279195,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877746Z"},{"ID":712,"PlayerID":698285444,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877747Z"},{"ID":713,"PlayerID":698290319,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877749Z"},{"ID":714,"PlayerID":698290577,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877751Z"},{"ID":715,"PlayerID":698295651,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877753Z"},{"ID":716,"PlayerID":698299678,"NewTribeID":1609,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877755Z"},{"ID":717,"PlayerID":698305474,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877756Z"},{"ID":718,"PlayerID":698321130,"NewTribeID":1347,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877758Z"},{"ID":719,"PlayerID":698330221,"NewTribeID":336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877759Z"},{"ID":720,"PlayerID":698331388,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87776Z"},{"ID":721,"PlayerID":698338524,"NewTribeID":1683,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877762Z"},{"ID":722,"PlayerID":698342159,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877765Z"},{"ID":723,"PlayerID":698345556,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877767Z"},{"ID":724,"PlayerID":698346954,"NewTribeID":13,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877769Z"},{"ID":725,"PlayerID":698349125,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877771Z"},{"ID":726,"PlayerID":698350371,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877772Z"},{"ID":727,"PlayerID":698353083,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877774Z"},{"ID":728,"PlayerID":698356304,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877776Z"},{"ID":729,"PlayerID":698361257,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877776Z"},{"ID":730,"PlayerID":698363063,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877778Z"},{"ID":731,"PlayerID":698364331,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87778Z"},{"ID":732,"PlayerID":698365960,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877782Z"},{"ID":733,"PlayerID":698368493,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877784Z"},{"ID":734,"PlayerID":698383417,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877786Z"},{"ID":735,"PlayerID":698384726,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877788Z"},{"ID":736,"PlayerID":698385619,"NewTribeID":686,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87779Z"},{"ID":737,"PlayerID":698388041,"NewTribeID":750,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877791Z"},{"ID":738,"PlayerID":698388578,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877792Z"},{"ID":739,"PlayerID":698416970,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877795Z"},{"ID":740,"PlayerID":698420691,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877796Z"},{"ID":741,"PlayerID":698442418,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877799Z"},{"ID":742,"PlayerID":698457392,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8778Z"},{"ID":743,"PlayerID":698462285,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877802Z"},{"ID":744,"PlayerID":698477883,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877804Z"},{"ID":745,"PlayerID":698486277,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877806Z"},{"ID":746,"PlayerID":698489071,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877808Z"},{"ID":747,"PlayerID":698511920,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87781Z"},{"ID":748,"PlayerID":698519133,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877811Z"},{"ID":749,"PlayerID":698526036,"NewTribeID":373,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877812Z"},{"ID":750,"PlayerID":698540331,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877814Z"},{"ID":751,"PlayerID":698545981,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877816Z"},{"ID":752,"PlayerID":698548451,"NewTribeID":651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877818Z"},{"ID":753,"PlayerID":698556600,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87782Z"},{"ID":754,"PlayerID":698557087,"NewTribeID":594,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877822Z"},{"ID":755,"PlayerID":698562644,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877825Z"},{"ID":756,"PlayerID":698585370,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877826Z"},{"ID":757,"PlayerID":698588535,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877828Z"},{"ID":758,"PlayerID":698588812,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877828Z"},{"ID":759,"PlayerID":698589866,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87783Z"},{"ID":760,"PlayerID":698592565,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877833Z"},{"ID":761,"PlayerID":698599365,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877834Z"},{"ID":762,"PlayerID":698605444,"NewTribeID":1357,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877836Z"},{"ID":763,"PlayerID":698613394,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877839Z"},{"ID":764,"PlayerID":698620694,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87784Z"},{"ID":765,"PlayerID":698625834,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877842Z"},{"ID":766,"PlayerID":698630507,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877844Z"},{"ID":767,"PlayerID":698631190,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877847Z"},{"ID":768,"PlayerID":698635863,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877847Z"},{"ID":769,"PlayerID":698641566,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877849Z"},{"ID":770,"PlayerID":698650301,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877851Z"},{"ID":771,"PlayerID":698652014,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877853Z"},{"ID":772,"PlayerID":698652171,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877856Z"},{"ID":773,"PlayerID":698655576,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877857Z"},{"ID":774,"PlayerID":698659980,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877859Z"},{"ID":775,"PlayerID":698663855,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877861Z"},{"ID":776,"PlayerID":698666810,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877863Z"},{"ID":777,"PlayerID":698667255,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877865Z"},{"ID":778,"PlayerID":698670524,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877865Z"},{"ID":779,"PlayerID":698676788,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877867Z"},{"ID":780,"PlayerID":698677650,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877869Z"},{"ID":781,"PlayerID":698680806,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87787Z"},{"ID":782,"PlayerID":698687597,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877872Z"},{"ID":783,"PlayerID":698693697,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877874Z"},{"ID":784,"PlayerID":698696420,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877876Z"},{"ID":785,"PlayerID":698701911,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877878Z"},{"ID":786,"PlayerID":698702991,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87788Z"},{"ID":787,"PlayerID":698704189,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877881Z"},{"ID":788,"PlayerID":698723158,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877882Z"},{"ID":789,"PlayerID":698736778,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877885Z"},{"ID":790,"PlayerID":698738810,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877887Z"},{"ID":791,"PlayerID":698739350,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877888Z"},{"ID":792,"PlayerID":698743511,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87789Z"},{"ID":793,"PlayerID":698748891,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877892Z"},{"ID":794,"PlayerID":698754087,"NewTribeID":1802,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877894Z"},{"ID":795,"PlayerID":698757439,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877896Z"},{"ID":796,"PlayerID":698766178,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877897Z"},{"ID":797,"PlayerID":698766369,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877898Z"},{"ID":798,"PlayerID":698766454,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8779Z"},{"ID":799,"PlayerID":698768565,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877901Z"},{"ID":800,"PlayerID":698769107,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877903Z"},{"ID":801,"PlayerID":698776998,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877905Z"},{"ID":802,"PlayerID":698785538,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877907Z"},{"ID":803,"PlayerID":698786826,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87791Z"},{"ID":804,"PlayerID":698789253,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877911Z"},{"ID":805,"PlayerID":698791053,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877914Z"},{"ID":806,"PlayerID":698795589,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877917Z"},{"ID":807,"PlayerID":698806018,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877917Z"},{"ID":808,"PlayerID":698807570,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877919Z"},{"ID":809,"PlayerID":698817235,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87792Z"},{"ID":810,"PlayerID":698823542,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877922Z"},{"ID":811,"PlayerID":698826986,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877924Z"},{"ID":812,"PlayerID":698829590,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877926Z"},{"ID":813,"PlayerID":698830638,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877928Z"},{"ID":814,"PlayerID":698845189,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87793Z"},{"ID":815,"PlayerID":698848067,"NewTribeID":305,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877932Z"},{"ID":816,"PlayerID":698848373,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877933Z"},{"ID":817,"PlayerID":698849979,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877934Z"},{"ID":818,"PlayerID":698855681,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877935Z"},{"ID":819,"PlayerID":698867446,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877937Z"},{"ID":820,"PlayerID":698867483,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877939Z"},{"ID":821,"PlayerID":698879638,"NewTribeID":1760,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877941Z"},{"ID":822,"PlayerID":698881022,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877944Z"},{"ID":823,"PlayerID":698884287,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877946Z"},{"ID":824,"PlayerID":698897472,"NewTribeID":1431,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877948Z"},{"ID":825,"PlayerID":698905177,"NewTribeID":1127,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87795Z"},{"ID":826,"PlayerID":698908184,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877951Z"},{"ID":827,"PlayerID":698908912,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877952Z"},{"ID":828,"PlayerID":698913618,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877954Z"},{"ID":829,"PlayerID":698926585,"NewTribeID":989,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877956Z"},{"ID":830,"PlayerID":698934729,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877957Z"},{"ID":831,"PlayerID":698938264,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877959Z"},{"ID":832,"PlayerID":698941586,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877961Z"},{"ID":833,"PlayerID":698957176,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877963Z"},{"ID":834,"PlayerID":698962117,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877965Z"},{"ID":835,"PlayerID":698971484,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877967Z"},{"ID":836,"PlayerID":698983867,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877969Z"},{"ID":837,"PlayerID":698993706,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877969Z"},{"ID":838,"PlayerID":698996782,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877971Z"},{"ID":839,"PlayerID":698999105,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877974Z"},{"ID":840,"PlayerID":699011415,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877976Z"},{"ID":841,"PlayerID":699016994,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877978Z"},{"ID":842,"PlayerID":699025262,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87798Z"},{"ID":843,"PlayerID":699027000,"NewTribeID":1347,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877982Z"},{"ID":844,"PlayerID":699034094,"NewTribeID":607,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877983Z"},{"ID":845,"PlayerID":699037086,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877985Z"},{"ID":846,"PlayerID":699039013,"NewTribeID":1538,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877987Z"},{"ID":847,"PlayerID":699054373,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877987Z"},{"ID":848,"PlayerID":699056677,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877989Z"},{"ID":849,"PlayerID":699057459,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877991Z"},{"ID":850,"PlayerID":699058253,"NewTribeID":1573,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877993Z"},{"ID":851,"PlayerID":699066118,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877995Z"},{"ID":852,"PlayerID":699072129,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877997Z"},{"ID":853,"PlayerID":699075351,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.877998Z"},{"ID":854,"PlayerID":699083129,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878Z"},{"ID":855,"PlayerID":699084064,"NewTribeID":1809,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878003Z"},{"ID":856,"PlayerID":699086436,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878005Z"},{"ID":857,"PlayerID":699088529,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878005Z"},{"ID":858,"PlayerID":699088769,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878007Z"},{"ID":859,"PlayerID":699097885,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878009Z"},{"ID":860,"PlayerID":699098531,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87801Z"},{"ID":861,"PlayerID":699099811,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878012Z"},{"ID":862,"PlayerID":699111651,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878014Z"},{"ID":863,"PlayerID":699117178,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878016Z"},{"ID":864,"PlayerID":699117992,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878018Z"},{"ID":865,"PlayerID":699121671,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87802Z"},{"ID":866,"PlayerID":699126484,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87802Z"},{"ID":867,"PlayerID":699127156,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878022Z"},{"ID":868,"PlayerID":699139964,"NewTribeID":1771,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878023Z"},{"ID":869,"PlayerID":699146580,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878025Z"},{"ID":870,"PlayerID":699146876,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878027Z"},{"ID":871,"PlayerID":699148121,"NewTribeID":1432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878029Z"},{"ID":872,"PlayerID":699150527,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878032Z"},{"ID":873,"PlayerID":699170684,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878034Z"},{"ID":874,"PlayerID":699176234,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878036Z"},{"ID":875,"PlayerID":699189792,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878038Z"},{"ID":876,"PlayerID":699191449,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878038Z"},{"ID":877,"PlayerID":699191455,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87804Z"},{"ID":878,"PlayerID":699191464,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878042Z"},{"ID":879,"PlayerID":699194766,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878044Z"},{"ID":880,"PlayerID":699195358,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878045Z"},{"ID":881,"PlayerID":699196829,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878047Z"},{"ID":882,"PlayerID":699199084,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878049Z"},{"ID":883,"PlayerID":699201278,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878051Z"},{"ID":884,"PlayerID":699204478,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878052Z"},{"ID":885,"PlayerID":699208929,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878054Z"},{"ID":886,"PlayerID":699212614,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878055Z"},{"ID":887,"PlayerID":699213622,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878056Z"},{"ID":888,"PlayerID":699238479,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878058Z"},{"ID":889,"PlayerID":699244334,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878061Z"},{"ID":890,"PlayerID":699246032,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878063Z"},{"ID":891,"PlayerID":699251542,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878065Z"},{"ID":892,"PlayerID":699262350,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878067Z"},{"ID":893,"PlayerID":699265922,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878069Z"},{"ID":894,"PlayerID":699266530,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878071Z"},{"ID":895,"PlayerID":699269923,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878073Z"},{"ID":896,"PlayerID":699272633,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878073Z"},{"ID":897,"PlayerID":699272880,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878075Z"},{"ID":898,"PlayerID":699273451,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878077Z"},{"ID":899,"PlayerID":699278528,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878079Z"},{"ID":900,"PlayerID":699280514,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87808Z"},{"ID":901,"PlayerID":699282717,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878082Z"},{"ID":902,"PlayerID":699283869,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878084Z"},{"ID":903,"PlayerID":699285160,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878086Z"},{"ID":904,"PlayerID":699287032,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878088Z"},{"ID":905,"PlayerID":699298370,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878091Z"},{"ID":906,"PlayerID":699299123,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878091Z"},{"ID":907,"PlayerID":699304554,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878093Z"},{"ID":908,"PlayerID":699308637,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878094Z"},{"ID":909,"PlayerID":699316421,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878096Z"},{"ID":910,"PlayerID":699319395,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878098Z"},{"ID":911,"PlayerID":699321518,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.8781Z"},{"ID":912,"PlayerID":699323302,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878102Z"},{"ID":913,"PlayerID":699323781,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878104Z"},{"ID":914,"PlayerID":699333701,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878106Z"},{"ID":915,"PlayerID":699336679,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878108Z"},{"ID":916,"PlayerID":699336777,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878108Z"},{"ID":917,"PlayerID":699339594,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87811Z"},{"ID":918,"PlayerID":699341889,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878112Z"},{"ID":919,"PlayerID":699342219,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878114Z"},{"ID":920,"PlayerID":699343887,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878115Z"},{"ID":921,"PlayerID":699346280,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878117Z"},{"ID":922,"PlayerID":699347951,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87812Z"},{"ID":923,"PlayerID":699351301,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878122Z"},{"ID":924,"PlayerID":699355601,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878124Z"},{"ID":925,"PlayerID":699356102,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878124Z"},{"ID":926,"PlayerID":699356968,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878126Z"},{"ID":927,"PlayerID":699360521,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878128Z"},{"ID":928,"PlayerID":699364813,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87813Z"},{"ID":929,"PlayerID":699366937,"NewTribeID":206,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878131Z"},{"ID":930,"PlayerID":699368887,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878133Z"},{"ID":931,"PlayerID":699372829,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878135Z"},{"ID":932,"PlayerID":699373599,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878137Z"},{"ID":933,"PlayerID":699375903,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878139Z"},{"ID":934,"PlayerID":699377151,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878141Z"},{"ID":935,"PlayerID":699377401,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878141Z"},{"ID":936,"PlayerID":699379895,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878143Z"},{"ID":937,"PlayerID":699380607,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878145Z"},{"ID":938,"PlayerID":699382126,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878147Z"},{"ID":939,"PlayerID":699383121,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87815Z"},{"ID":940,"PlayerID":699383279,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878152Z"},{"ID":941,"PlayerID":699385139,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878154Z"},{"ID":942,"PlayerID":699391409,"NewTribeID":1247,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878156Z"},{"ID":943,"PlayerID":699393742,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878157Z"},{"ID":944,"PlayerID":699393759,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878159Z"},{"ID":945,"PlayerID":699396429,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87816Z"},{"ID":946,"PlayerID":699402816,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878161Z"},{"ID":947,"PlayerID":699405877,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878163Z"},{"ID":948,"PlayerID":699406247,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878165Z"},{"ID":949,"PlayerID":699406750,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878167Z"},{"ID":950,"PlayerID":699406776,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878169Z"},{"ID":951,"PlayerID":699408669,"NewTribeID":430,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87817Z"},{"ID":952,"PlayerID":699409420,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878172Z"},{"ID":953,"PlayerID":699413040,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878174Z"},{"ID":954,"PlayerID":699413581,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878176Z"},{"ID":955,"PlayerID":699423167,"NewTribeID":1651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878176Z"},{"ID":956,"PlayerID":699424741,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878179Z"},{"ID":957,"PlayerID":699425709,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878181Z"},{"ID":958,"PlayerID":699429153,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878183Z"},{"ID":959,"PlayerID":699429335,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878185Z"},{"ID":960,"PlayerID":699431255,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878187Z"},{"ID":961,"PlayerID":699432672,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878188Z"},{"ID":962,"PlayerID":699433558,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87819Z"},{"ID":963,"PlayerID":699438389,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878192Z"},{"ID":964,"PlayerID":699441366,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878194Z"},{"ID":965,"PlayerID":699443920,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878194Z"},{"ID":966,"PlayerID":699449946,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878196Z"},{"ID":967,"PlayerID":699451338,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878198Z"},{"ID":968,"PlayerID":699469600,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878199Z"},{"ID":969,"PlayerID":699471829,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878201Z"},{"ID":970,"PlayerID":699477624,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878203Z"},{"ID":971,"PlayerID":699478692,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878205Z"},{"ID":972,"PlayerID":699483429,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878208Z"},{"ID":973,"PlayerID":699485250,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87821Z"},{"ID":974,"PlayerID":699488108,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878211Z"},{"ID":975,"PlayerID":699490365,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878212Z"},{"ID":976,"PlayerID":699491076,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878214Z"},{"ID":977,"PlayerID":699491924,"NewTribeID":1795,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878215Z"},{"ID":978,"PlayerID":699493750,"NewTribeID":1700,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878217Z"},{"ID":979,"PlayerID":699494480,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878219Z"},{"ID":980,"PlayerID":699494488,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878221Z"},{"ID":981,"PlayerID":699503079,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878222Z"},{"ID":982,"PlayerID":699508363,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878224Z"},{"ID":983,"PlayerID":699509239,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878226Z"},{"ID":984,"PlayerID":699509284,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878228Z"},{"ID":985,"PlayerID":699510045,"NewTribeID":1209,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878228Z"},{"ID":986,"PlayerID":699510259,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87823Z"},{"ID":987,"PlayerID":699513260,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878232Z"},{"ID":988,"PlayerID":699516268,"NewTribeID":557,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878234Z"},{"ID":989,"PlayerID":699518384,"NewTribeID":945,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878237Z"},{"ID":990,"PlayerID":699518454,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878238Z"},{"ID":991,"PlayerID":699520575,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.87824Z"},{"ID":992,"PlayerID":699522257,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878242Z"},{"ID":993,"PlayerID":699523631,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878244Z"},{"ID":994,"PlayerID":699524362,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878244Z"},{"ID":995,"PlayerID":699524891,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878246Z"},{"ID":996,"PlayerID":699545762,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.878248Z"},{"ID":997,"PlayerID":699546317,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960804Z"},{"ID":998,"PlayerID":699548295,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960805Z"},{"ID":999,"PlayerID":699550876,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960805Z"},{"ID":1000,"PlayerID":699552859,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960805Z"},{"ID":1001,"PlayerID":699557165,"NewTribeID":1638,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960805Z"},{"ID":1002,"PlayerID":699560327,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960805Z"},{"ID":1003,"PlayerID":699562182,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960806Z"},{"ID":1004,"PlayerID":699562874,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960806Z"},{"ID":1005,"PlayerID":699567608,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960806Z"},{"ID":1006,"PlayerID":699569800,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960806Z"},{"ID":1007,"PlayerID":699573053,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960807Z"},{"ID":1008,"PlayerID":699574408,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960807Z"},{"ID":1009,"PlayerID":699576407,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960807Z"},{"ID":1010,"PlayerID":699578606,"NewTribeID":1716,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960807Z"},{"ID":1011,"PlayerID":699580120,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960808Z"},{"ID":1012,"PlayerID":699588526,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960808Z"},{"ID":1013,"PlayerID":699589540,"NewTribeID":1528,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960808Z"},{"ID":1014,"PlayerID":699595556,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960808Z"},{"ID":1015,"PlayerID":699598425,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960808Z"},{"ID":1016,"PlayerID":699600167,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960809Z"},{"ID":1017,"PlayerID":699600855,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960809Z"},{"ID":1018,"PlayerID":699603116,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960809Z"},{"ID":1019,"PlayerID":699604515,"NewTribeID":1652,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960809Z"},{"ID":1020,"PlayerID":699605333,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96081Z"},{"ID":1021,"PlayerID":699611673,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96081Z"},{"ID":1022,"PlayerID":699618326,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96081Z"},{"ID":1023,"PlayerID":699620730,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96081Z"},{"ID":1024,"PlayerID":699621601,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960811Z"},{"ID":1025,"PlayerID":699622781,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960811Z"},{"ID":1026,"PlayerID":699622958,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960811Z"},{"ID":1027,"PlayerID":699624570,"NewTribeID":1802,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960811Z"},{"ID":1028,"PlayerID":699627771,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960812Z"},{"ID":1029,"PlayerID":699628084,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960812Z"},{"ID":1030,"PlayerID":699630110,"NewTribeID":664,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960812Z"},{"ID":1031,"PlayerID":699633365,"NewTribeID":1807,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960812Z"},{"ID":1032,"PlayerID":699639001,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960813Z"},{"ID":1033,"PlayerID":699639005,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960813Z"},{"ID":1034,"PlayerID":699639122,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960813Z"},{"ID":1035,"PlayerID":699641777,"NewTribeID":53,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960813Z"},{"ID":1036,"PlayerID":699642954,"NewTribeID":625,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960814Z"},{"ID":1037,"PlayerID":699644054,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960814Z"},{"ID":1038,"PlayerID":699644448,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960814Z"},{"ID":1039,"PlayerID":699644852,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960814Z"},{"ID":1040,"PlayerID":699650981,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960815Z"},{"ID":1041,"PlayerID":699655364,"NewTribeID":1484,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960815Z"},{"ID":1042,"PlayerID":699656989,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960815Z"},{"ID":1043,"PlayerID":699657242,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960815Z"},{"ID":1044,"PlayerID":699657450,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960816Z"},{"ID":1045,"PlayerID":699658023,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960816Z"},{"ID":1046,"PlayerID":699660539,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960816Z"},{"ID":1047,"PlayerID":699662232,"NewTribeID":1715,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960816Z"},{"ID":1048,"PlayerID":699664910,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960817Z"},{"ID":1049,"PlayerID":699665031,"NewTribeID":1460,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960817Z"},{"ID":1050,"PlayerID":699665152,"NewTribeID":1716,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960817Z"},{"ID":1051,"PlayerID":699671197,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960817Z"},{"ID":1052,"PlayerID":699671454,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960817Z"},{"ID":1053,"PlayerID":699672060,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960818Z"},{"ID":1054,"PlayerID":699673236,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960818Z"},{"ID":1055,"PlayerID":699676005,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960818Z"},{"ID":1056,"PlayerID":699677277,"NewTribeID":429,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960818Z"},{"ID":1057,"PlayerID":699678739,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960819Z"},{"ID":1058,"PlayerID":699678801,"NewTribeID":664,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960819Z"},{"ID":1059,"PlayerID":699679662,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960819Z"},{"ID":1060,"PlayerID":699684062,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960819Z"},{"ID":1061,"PlayerID":699685533,"NewTribeID":1755,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960819Z"},{"ID":1062,"PlayerID":699688180,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96082Z"},{"ID":1063,"PlayerID":699693687,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96082Z"},{"ID":1064,"PlayerID":699694284,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960821Z"},{"ID":1065,"PlayerID":699695167,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960821Z"},{"ID":1066,"PlayerID":699697136,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960821Z"},{"ID":1067,"PlayerID":699697558,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960821Z"},{"ID":1068,"PlayerID":699698079,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960822Z"},{"ID":1069,"PlayerID":699698253,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960822Z"},{"ID":1070,"PlayerID":699698873,"NewTribeID":1751,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960822Z"},{"ID":1071,"PlayerID":699699563,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960822Z"},{"ID":1072,"PlayerID":699699601,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960822Z"},{"ID":1073,"PlayerID":699699650,"NewTribeID":1787,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960823Z"},{"ID":1074,"PlayerID":699703295,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960823Z"},{"ID":1075,"PlayerID":699703642,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960823Z"},{"ID":1076,"PlayerID":699704542,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960823Z"},{"ID":1077,"PlayerID":699705601,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960824Z"},{"ID":1078,"PlayerID":699706955,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960824Z"},{"ID":1079,"PlayerID":699709160,"NewTribeID":220,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960824Z"},{"ID":1080,"PlayerID":699710633,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960824Z"},{"ID":1081,"PlayerID":699711706,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960825Z"},{"ID":1082,"PlayerID":699711723,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960825Z"},{"ID":1083,"PlayerID":699711926,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960825Z"},{"ID":1084,"PlayerID":699711996,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960825Z"},{"ID":1085,"PlayerID":699712243,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960825Z"},{"ID":1086,"PlayerID":699712422,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960826Z"},{"ID":1087,"PlayerID":699713515,"NewTribeID":1740,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960826Z"},{"ID":1088,"PlayerID":699716785,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960826Z"},{"ID":1089,"PlayerID":699718269,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960826Z"},{"ID":1090,"PlayerID":699722599,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960827Z"},{"ID":1091,"PlayerID":699723284,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960827Z"},{"ID":1092,"PlayerID":699724603,"NewTribeID":236,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960827Z"},{"ID":1093,"PlayerID":699725436,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960827Z"},{"ID":1094,"PlayerID":699726660,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960828Z"},{"ID":1095,"PlayerID":699728159,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960828Z"},{"ID":1096,"PlayerID":699728266,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960828Z"},{"ID":1097,"PlayerID":699730399,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960828Z"},{"ID":1098,"PlayerID":699730714,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960828Z"},{"ID":1099,"PlayerID":699730998,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960829Z"},{"ID":1100,"PlayerID":699733098,"NewTribeID":1808,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960829Z"},{"ID":1101,"PlayerID":699733501,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960829Z"},{"ID":1102,"PlayerID":699734445,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960829Z"},{"ID":1103,"PlayerID":699734795,"NewTribeID":1376,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96083Z"},{"ID":1104,"PlayerID":699735020,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96083Z"},{"ID":1105,"PlayerID":699736927,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96083Z"},{"ID":1106,"PlayerID":699736959,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96083Z"},{"ID":1107,"PlayerID":699737356,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96083Z"},{"ID":1108,"PlayerID":699738350,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960831Z"},{"ID":1109,"PlayerID":699739523,"NewTribeID":723,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960831Z"},{"ID":1110,"PlayerID":699739891,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960831Z"},{"ID":1111,"PlayerID":699741694,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960831Z"},{"ID":1112,"PlayerID":699744012,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960831Z"},{"ID":1113,"PlayerID":699744766,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960832Z"},{"ID":1114,"PlayerID":699745265,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960832Z"},{"ID":1115,"PlayerID":699751062,"NewTribeID":517,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960832Z"},{"ID":1116,"PlayerID":699753640,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960832Z"},{"ID":1117,"PlayerID":699754856,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960832Z"},{"ID":1118,"PlayerID":699755859,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960833Z"},{"ID":1119,"PlayerID":699756210,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960833Z"},{"ID":1120,"PlayerID":699758688,"NewTribeID":1399,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960833Z"},{"ID":1121,"PlayerID":699759128,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960833Z"},{"ID":1122,"PlayerID":699760767,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960834Z"},{"ID":1123,"PlayerID":699761749,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960834Z"},{"ID":1124,"PlayerID":699763225,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960834Z"},{"ID":1125,"PlayerID":699765601,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960834Z"},{"ID":1126,"PlayerID":699774694,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960834Z"},{"ID":1127,"PlayerID":699777234,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960835Z"},{"ID":1128,"PlayerID":699777372,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960835Z"},{"ID":1129,"PlayerID":699777556,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960835Z"},{"ID":1130,"PlayerID":699778028,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960835Z"},{"ID":1131,"PlayerID":699778867,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960836Z"},{"ID":1132,"PlayerID":699780873,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960836Z"},{"ID":1133,"PlayerID":699781390,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960836Z"},{"ID":1134,"PlayerID":699781605,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960837Z"},{"ID":1135,"PlayerID":699781762,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960837Z"},{"ID":1136,"PlayerID":699783765,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960837Z"},{"ID":1137,"PlayerID":699784536,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960837Z"},{"ID":1138,"PlayerID":699785935,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960837Z"},{"ID":1139,"PlayerID":699788305,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960838Z"},{"ID":1140,"PlayerID":699791054,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960838Z"},{"ID":1141,"PlayerID":699794421,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960838Z"},{"ID":1142,"PlayerID":699794720,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960838Z"},{"ID":1143,"PlayerID":699794765,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960839Z"},{"ID":1144,"PlayerID":699795301,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960839Z"},{"ID":1145,"PlayerID":699795378,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960839Z"},{"ID":1146,"PlayerID":699796330,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960839Z"},{"ID":1147,"PlayerID":699796630,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96084Z"},{"ID":1148,"PlayerID":699797252,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96084Z"},{"ID":1149,"PlayerID":699797805,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96084Z"},{"ID":1150,"PlayerID":699799629,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96084Z"},{"ID":1151,"PlayerID":699802012,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96084Z"},{"ID":1152,"PlayerID":699803070,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960841Z"},{"ID":1153,"PlayerID":699803189,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960841Z"},{"ID":1154,"PlayerID":699804790,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960841Z"},{"ID":1155,"PlayerID":699805379,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960841Z"},{"ID":1156,"PlayerID":699805839,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960842Z"},{"ID":1157,"PlayerID":699807296,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960842Z"},{"ID":1158,"PlayerID":699811844,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960842Z"},{"ID":1159,"PlayerID":699812007,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960842Z"},{"ID":1160,"PlayerID":699812351,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960842Z"},{"ID":1161,"PlayerID":699812653,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960843Z"},{"ID":1162,"PlayerID":699812869,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960843Z"},{"ID":1163,"PlayerID":699818726,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960843Z"},{"ID":1164,"PlayerID":699821629,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960843Z"},{"ID":1165,"PlayerID":699821755,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960844Z"},{"ID":1166,"PlayerID":699823490,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960844Z"},{"ID":1167,"PlayerID":699825236,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960844Z"},{"ID":1168,"PlayerID":699825797,"NewTribeID":1810,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960844Z"},{"ID":1169,"PlayerID":699826312,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960844Z"},{"ID":1170,"PlayerID":699826996,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960845Z"},{"ID":1171,"PlayerID":699827112,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960845Z"},{"ID":1172,"PlayerID":699828338,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960845Z"},{"ID":1173,"PlayerID":699828442,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960845Z"},{"ID":1174,"PlayerID":699828685,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960846Z"},{"ID":1175,"PlayerID":699829494,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960846Z"},{"ID":1176,"PlayerID":699829975,"NewTribeID":415,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960846Z"},{"ID":1177,"PlayerID":699830255,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960846Z"},{"ID":1178,"PlayerID":699831366,"NewTribeID":443,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960846Z"},{"ID":1179,"PlayerID":699831860,"NewTribeID":651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960847Z"},{"ID":1180,"PlayerID":699832463,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960847Z"},{"ID":1181,"PlayerID":699833171,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960847Z"},{"ID":1182,"PlayerID":699834004,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960847Z"},{"ID":1183,"PlayerID":699837483,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960848Z"},{"ID":1184,"PlayerID":699837826,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960848Z"},{"ID":1185,"PlayerID":699840189,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960848Z"},{"ID":1186,"PlayerID":699841905,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960848Z"},{"ID":1187,"PlayerID":699841959,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960848Z"},{"ID":1188,"PlayerID":699842853,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960849Z"},{"ID":1189,"PlayerID":699843417,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960849Z"},{"ID":1190,"PlayerID":699844314,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960849Z"},{"ID":1191,"PlayerID":699844727,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960849Z"},{"ID":1192,"PlayerID":699845400,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96085Z"},{"ID":1193,"PlayerID":699847354,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96085Z"},{"ID":1194,"PlayerID":699849210,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96085Z"},{"ID":1195,"PlayerID":699851345,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96085Z"},{"ID":1196,"PlayerID":699851427,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960851Z"},{"ID":1197,"PlayerID":699852080,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960851Z"},{"ID":1198,"PlayerID":699853308,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960851Z"},{"ID":1199,"PlayerID":699853526,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960852Z"},{"ID":1200,"PlayerID":699854312,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960852Z"},{"ID":1201,"PlayerID":699854484,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960852Z"},{"ID":1202,"PlayerID":699854830,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960852Z"},{"ID":1203,"PlayerID":699856830,"NewTribeID":176,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960853Z"},{"ID":1204,"PlayerID":699856962,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960853Z"},{"ID":1205,"PlayerID":699857387,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960853Z"},{"ID":1206,"PlayerID":699858313,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960853Z"},{"ID":1207,"PlayerID":699858532,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960853Z"},{"ID":1208,"PlayerID":699860418,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960854Z"},{"ID":1209,"PlayerID":699861004,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960854Z"},{"ID":1210,"PlayerID":699862278,"NewTribeID":1209,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960854Z"},{"ID":1211,"PlayerID":699863708,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960854Z"},{"ID":1212,"PlayerID":699864013,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960855Z"},{"ID":1213,"PlayerID":699866225,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960855Z"},{"ID":1214,"PlayerID":699866510,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960855Z"},{"ID":1215,"PlayerID":699867602,"NewTribeID":1448,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960855Z"},{"ID":1216,"PlayerID":699868002,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960855Z"},{"ID":1217,"PlayerID":699868448,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960856Z"},{"ID":1218,"PlayerID":699868739,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960856Z"},{"ID":1219,"PlayerID":699869682,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960856Z"},{"ID":1220,"PlayerID":699872032,"NewTribeID":1535,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960856Z"},{"ID":1221,"PlayerID":699872401,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960856Z"},{"ID":1222,"PlayerID":699872616,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960857Z"},{"ID":1223,"PlayerID":699873141,"NewTribeID":597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960857Z"},{"ID":1224,"PlayerID":699875213,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960857Z"},{"ID":1225,"PlayerID":699875650,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960857Z"},{"ID":1226,"PlayerID":699876345,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960857Z"},{"ID":1227,"PlayerID":699876746,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960858Z"},{"ID":1228,"PlayerID":699878150,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960858Z"},{"ID":1229,"PlayerID":699878443,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960858Z"},{"ID":1230,"PlayerID":699878511,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960858Z"},{"ID":1231,"PlayerID":699880701,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960859Z"},{"ID":1232,"PlayerID":699883079,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960859Z"},{"ID":1233,"PlayerID":699883836,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960859Z"},{"ID":1234,"PlayerID":699884788,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960859Z"},{"ID":1235,"PlayerID":848882446,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96086Z"},{"ID":1236,"PlayerID":848882577,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96086Z"},{"ID":1237,"PlayerID":848883237,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96086Z"},{"ID":1238,"PlayerID":848883542,"NewTribeID":686,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96086Z"},{"ID":1239,"PlayerID":848883684,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96086Z"},{"ID":1240,"PlayerID":848883791,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960861Z"},{"ID":1241,"PlayerID":848886056,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960861Z"},{"ID":1242,"PlayerID":848886870,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960861Z"},{"ID":1243,"PlayerID":848886973,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960861Z"},{"ID":1244,"PlayerID":848887199,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960862Z"},{"ID":1245,"PlayerID":848888787,"NewTribeID":290,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960862Z"},{"ID":1246,"PlayerID":848889556,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960862Z"},{"ID":1247,"PlayerID":848889850,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960862Z"},{"ID":1248,"PlayerID":848890012,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960862Z"},{"ID":1249,"PlayerID":848892804,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960863Z"},{"ID":1250,"PlayerID":848895676,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960863Z"},{"ID":1251,"PlayerID":848896948,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960863Z"},{"ID":1252,"PlayerID":848899726,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960863Z"},{"ID":1253,"PlayerID":848901822,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960863Z"},{"ID":1254,"PlayerID":848902592,"NewTribeID":633,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960864Z"},{"ID":1255,"PlayerID":848902744,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960864Z"},{"ID":1256,"PlayerID":848903260,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960864Z"},{"ID":1257,"PlayerID":848903690,"NewTribeID":822,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960864Z"},{"ID":1258,"PlayerID":848905770,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960865Z"},{"ID":1259,"PlayerID":848908144,"NewTribeID":397,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960865Z"},{"ID":1260,"PlayerID":848909122,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960865Z"},{"ID":1261,"PlayerID":848909292,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960865Z"},{"ID":1262,"PlayerID":848909464,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960865Z"},{"ID":1263,"PlayerID":848910122,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960866Z"},{"ID":1264,"PlayerID":848910971,"NewTribeID":1804,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960866Z"},{"ID":1265,"PlayerID":848912265,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960866Z"},{"ID":1266,"PlayerID":848912772,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960866Z"},{"ID":1267,"PlayerID":848912937,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960867Z"},{"ID":1268,"PlayerID":848913030,"NewTribeID":77,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960867Z"},{"ID":1269,"PlayerID":848913037,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960867Z"},{"ID":1270,"PlayerID":848913998,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960867Z"},{"ID":1271,"PlayerID":848914661,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960868Z"},{"ID":1272,"PlayerID":848915531,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960868Z"},{"ID":1273,"PlayerID":848915730,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960868Z"},{"ID":1274,"PlayerID":848916779,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960868Z"},{"ID":1275,"PlayerID":848917127,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960868Z"},{"ID":1276,"PlayerID":848917401,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960869Z"},{"ID":1277,"PlayerID":848917570,"NewTribeID":1368,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960869Z"},{"ID":1278,"PlayerID":848918380,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960869Z"},{"ID":1279,"PlayerID":848919959,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960869Z"},{"ID":1280,"PlayerID":848921536,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960869Z"},{"ID":1281,"PlayerID":848921793,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96087Z"},{"ID":1282,"PlayerID":848921861,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96087Z"},{"ID":1283,"PlayerID":848922958,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96087Z"},{"ID":1284,"PlayerID":848924219,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.96087Z"},{"ID":1285,"PlayerID":848925840,"NewTribeID":1040,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960871Z"},{"ID":1286,"PlayerID":848926293,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960871Z"},{"ID":1287,"PlayerID":848928486,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960871Z"},{"ID":1288,"PlayerID":848928624,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960871Z"},{"ID":1289,"PlayerID":848930111,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960871Z"},{"ID":1290,"PlayerID":848930498,"NewTribeID":129,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960872Z"},{"ID":1291,"PlayerID":848930898,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960872Z"},{"ID":1292,"PlayerID":848932879,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960872Z"},{"ID":1293,"PlayerID":848933470,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960872Z"},{"ID":1294,"PlayerID":848934935,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960872Z"},{"ID":1295,"PlayerID":848935020,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960873Z"},{"ID":1296,"PlayerID":848935732,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960873Z"},{"ID":1297,"PlayerID":848936053,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960873Z"},{"ID":1298,"PlayerID":848937248,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960873Z"},{"ID":1299,"PlayerID":848939203,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960874Z"},{"ID":1300,"PlayerID":848942565,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960874Z"},{"ID":1301,"PlayerID":848942587,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960874Z"},{"ID":1302,"PlayerID":848942618,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960874Z"},{"ID":1303,"PlayerID":848942847,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960874Z"},{"ID":1304,"PlayerID":848943145,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960875Z"},{"ID":1305,"PlayerID":848944534,"NewTribeID":1785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960875Z"},{"ID":1306,"PlayerID":848945529,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960875Z"},{"ID":1307,"PlayerID":848946608,"NewTribeID":520,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960875Z"},{"ID":1308,"PlayerID":848946700,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960876Z"},{"ID":1309,"PlayerID":848949271,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:58.960876Z"},{"ID":1310,"PlayerID":848949597,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055904Z"},{"ID":1311,"PlayerID":848952556,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055904Z"},{"ID":1312,"PlayerID":848953066,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1313,"PlayerID":848955783,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1314,"PlayerID":848956013,"NewTribeID":147,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1315,"PlayerID":848956513,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1316,"PlayerID":848956765,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1317,"PlayerID":848958005,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1318,"PlayerID":848959231,"NewTribeID":12,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055905Z"},{"ID":1319,"PlayerID":848963236,"NewTribeID":92,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1320,"PlayerID":848963521,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1321,"PlayerID":848965531,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1322,"PlayerID":848966521,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1323,"PlayerID":848967710,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1324,"PlayerID":848969313,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1325,"PlayerID":848970357,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055906Z"},{"ID":1326,"PlayerID":848971079,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055907Z"},{"ID":1327,"PlayerID":848974611,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055907Z"},{"ID":1328,"PlayerID":848975192,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055907Z"},{"ID":1329,"PlayerID":848976720,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055907Z"},{"ID":1330,"PlayerID":848977118,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055907Z"},{"ID":1331,"PlayerID":848977412,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055907Z"},{"ID":1332,"PlayerID":848977600,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1333,"PlayerID":848977649,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1334,"PlayerID":848977748,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1335,"PlayerID":848978052,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1336,"PlayerID":848978284,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1337,"PlayerID":848978297,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1338,"PlayerID":848978903,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055908Z"},{"ID":1339,"PlayerID":848980237,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055909Z"},{"ID":1340,"PlayerID":848980727,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055909Z"},{"ID":1341,"PlayerID":848981523,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055909Z"},{"ID":1342,"PlayerID":848981726,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055909Z"},{"ID":1343,"PlayerID":848982634,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055909Z"},{"ID":1344,"PlayerID":848982635,"NewTribeID":1770,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055909Z"},{"ID":1345,"PlayerID":848985692,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1346,"PlayerID":848986287,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1347,"PlayerID":848986638,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1348,"PlayerID":848987051,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1349,"PlayerID":848987695,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1350,"PlayerID":848988744,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1351,"PlayerID":848989855,"NewTribeID":1399,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05591Z"},{"ID":1352,"PlayerID":848993769,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055911Z"},{"ID":1353,"PlayerID":848995242,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055911Z"},{"ID":1354,"PlayerID":848995291,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055911Z"},{"ID":1355,"PlayerID":848995478,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055911Z"},{"ID":1356,"PlayerID":848998530,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055911Z"},{"ID":1357,"PlayerID":848999671,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055911Z"},{"ID":1358,"PlayerID":849000135,"NewTribeID":1758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1359,"PlayerID":849001277,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1360,"PlayerID":849001572,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1361,"PlayerID":849001724,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1362,"PlayerID":849002091,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1363,"PlayerID":849002796,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1364,"PlayerID":849004274,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055912Z"},{"ID":1365,"PlayerID":849004461,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1366,"PlayerID":849005658,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1367,"PlayerID":849005829,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1368,"PlayerID":849006011,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1369,"PlayerID":849006145,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1370,"PlayerID":849006385,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1371,"PlayerID":849006412,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055913Z"},{"ID":1372,"PlayerID":849009059,"NewTribeID":1804,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055914Z"},{"ID":1373,"PlayerID":849009623,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055914Z"},{"ID":1374,"PlayerID":849010255,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055914Z"},{"ID":1375,"PlayerID":849010865,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055914Z"},{"ID":1376,"PlayerID":849012521,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055914Z"},{"ID":1377,"PlayerID":849012843,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1378,"PlayerID":849013126,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1379,"PlayerID":849014147,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1380,"PlayerID":849014413,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1381,"PlayerID":849014922,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1382,"PlayerID":849015875,"NewTribeID":1750,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1383,"PlayerID":849017820,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055915Z"},{"ID":1384,"PlayerID":849017894,"NewTribeID":385,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055916Z"},{"ID":1385,"PlayerID":849018239,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055916Z"},{"ID":1386,"PlayerID":849018442,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055916Z"},{"ID":1387,"PlayerID":849018778,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055916Z"},{"ID":1388,"PlayerID":849018780,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055916Z"},{"ID":1389,"PlayerID":849019785,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055916Z"},{"ID":1390,"PlayerID":849020094,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1391,"PlayerID":849020212,"NewTribeID":733,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1392,"PlayerID":849020667,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1393,"PlayerID":849021566,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1394,"PlayerID":849022063,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1395,"PlayerID":849023212,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1396,"PlayerID":849023540,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055917Z"},{"ID":1397,"PlayerID":849024152,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1398,"PlayerID":849025083,"NewTribeID":766,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1399,"PlayerID":849026145,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1400,"PlayerID":849027025,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1401,"PlayerID":849027653,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1402,"PlayerID":849027712,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1403,"PlayerID":849028071,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055918Z"},{"ID":1404,"PlayerID":849028088,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055919Z"},{"ID":1405,"PlayerID":849030226,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055919Z"},{"ID":1406,"PlayerID":849031759,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055919Z"},{"ID":1407,"PlayerID":849031818,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055919Z"},{"ID":1408,"PlayerID":849031846,"NewTribeID":1780,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055919Z"},{"ID":1409,"PlayerID":849032027,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055919Z"},{"ID":1410,"PlayerID":849032059,"NewTribeID":1780,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05592Z"},{"ID":1411,"PlayerID":849032414,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05592Z"},{"ID":1412,"PlayerID":849034882,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05592Z"},{"ID":1413,"PlayerID":849034917,"NewTribeID":432,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05592Z"},{"ID":1414,"PlayerID":849035447,"NewTribeID":260,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05592Z"},{"ID":1415,"PlayerID":849035525,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05592Z"},{"ID":1416,"PlayerID":849035905,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055921Z"},{"ID":1417,"PlayerID":849036055,"NewTribeID":1040,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055921Z"},{"ID":1418,"PlayerID":849037354,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055921Z"},{"ID":1419,"PlayerID":849037407,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055921Z"},{"ID":1420,"PlayerID":849037469,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055921Z"},{"ID":1421,"PlayerID":849037699,"NewTribeID":651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055921Z"},{"ID":1422,"PlayerID":849038985,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055922Z"},{"ID":1423,"PlayerID":849039310,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055922Z"},{"ID":1424,"PlayerID":849040142,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055922Z"},{"ID":1425,"PlayerID":849040194,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055922Z"},{"ID":1426,"PlayerID":849041192,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055922Z"},{"ID":1427,"PlayerID":849042480,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055922Z"},{"ID":1428,"PlayerID":849044705,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1429,"PlayerID":849044961,"NewTribeID":134,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1430,"PlayerID":849045675,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1431,"PlayerID":849045915,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1432,"PlayerID":849046206,"NewTribeID":1785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1433,"PlayerID":849046232,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1434,"PlayerID":849047044,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055923Z"},{"ID":1435,"PlayerID":849047233,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055924Z"},{"ID":1436,"PlayerID":849048112,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055924Z"},{"ID":1437,"PlayerID":849048216,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055924Z"},{"ID":1438,"PlayerID":849048241,"NewTribeID":1692,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055924Z"},{"ID":1439,"PlayerID":849048552,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055924Z"},{"ID":1440,"PlayerID":849048562,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055924Z"},{"ID":1441,"PlayerID":849048734,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1442,"PlayerID":849048867,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1443,"PlayerID":849049288,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1444,"PlayerID":849050087,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1445,"PlayerID":849050191,"NewTribeID":1734,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1446,"PlayerID":849050734,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1447,"PlayerID":849050849,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055925Z"},{"ID":1448,"PlayerID":849051436,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055926Z"},{"ID":1449,"PlayerID":849051731,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055926Z"},{"ID":1450,"PlayerID":849052289,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055926Z"},{"ID":1451,"PlayerID":849052549,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055926Z"},{"ID":1452,"PlayerID":849053122,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055926Z"},{"ID":1453,"PlayerID":849054582,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055926Z"},{"ID":1454,"PlayerID":849054951,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055927Z"},{"ID":1455,"PlayerID":849055181,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055927Z"},{"ID":1456,"PlayerID":849055309,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055927Z"},{"ID":1457,"PlayerID":849055425,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055927Z"},{"ID":1458,"PlayerID":849055527,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055928Z"},{"ID":1459,"PlayerID":849055553,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055928Z"},{"ID":1460,"PlayerID":849056744,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055928Z"},{"ID":1461,"PlayerID":849057450,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055928Z"},{"ID":1462,"PlayerID":849057572,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055928Z"},{"ID":1463,"PlayerID":849057764,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055928Z"},{"ID":1464,"PlayerID":849059457,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055929Z"},{"ID":1465,"PlayerID":849059491,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055929Z"},{"ID":1466,"PlayerID":849060446,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055929Z"},{"ID":1467,"PlayerID":849061374,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055929Z"},{"ID":1468,"PlayerID":849061417,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055929Z"},{"ID":1469,"PlayerID":849062920,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05593Z"},{"ID":1470,"PlayerID":849063605,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05593Z"},{"ID":1471,"PlayerID":849063793,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05593Z"},{"ID":1472,"PlayerID":849063849,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05593Z"},{"ID":1473,"PlayerID":849064614,"NewTribeID":47,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05593Z"},{"ID":1474,"PlayerID":849064715,"NewTribeID":689,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05593Z"},{"ID":1475,"PlayerID":849064752,"NewTribeID":1,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055931Z"},{"ID":1476,"PlayerID":849065566,"NewTribeID":1347,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055931Z"},{"ID":1477,"PlayerID":849065606,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055931Z"},{"ID":1478,"PlayerID":849065697,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055931Z"},{"ID":1479,"PlayerID":849065829,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055931Z"},{"ID":1480,"PlayerID":849066044,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055931Z"},{"ID":1481,"PlayerID":849066125,"NewTribeID":112,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055932Z"},{"ID":1482,"PlayerID":849066618,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055932Z"},{"ID":1483,"PlayerID":849066808,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055932Z"},{"ID":1484,"PlayerID":849066849,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055932Z"},{"ID":1485,"PlayerID":849067079,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055932Z"},{"ID":1486,"PlayerID":849067192,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055933Z"},{"ID":1487,"PlayerID":849067216,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055933Z"},{"ID":1488,"PlayerID":849068108,"NewTribeID":822,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055933Z"},{"ID":1489,"PlayerID":849068436,"NewTribeID":1782,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055933Z"},{"ID":1490,"PlayerID":849068662,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055933Z"},{"ID":1491,"PlayerID":849069010,"NewTribeID":1656,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055933Z"},{"ID":1492,"PlayerID":849070220,"NewTribeID":214,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055934Z"},{"ID":1493,"PlayerID":849070335,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055934Z"},{"ID":1494,"PlayerID":849070464,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055934Z"},{"ID":1495,"PlayerID":849070812,"NewTribeID":1783,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055934Z"},{"ID":1496,"PlayerID":849070946,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055934Z"},{"ID":1497,"PlayerID":849071545,"NewTribeID":80,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055935Z"},{"ID":1498,"PlayerID":849072873,"NewTribeID":125,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055935Z"},{"ID":1499,"PlayerID":849073156,"NewTribeID":8,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055935Z"},{"ID":1500,"PlayerID":849073314,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055935Z"},{"ID":1501,"PlayerID":849073939,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055935Z"},{"ID":1502,"PlayerID":849075298,"NewTribeID":1721,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055935Z"},{"ID":1503,"PlayerID":849075744,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055936Z"},{"ID":1504,"PlayerID":849075836,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055936Z"},{"ID":1505,"PlayerID":849076515,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055936Z"},{"ID":1506,"PlayerID":849076678,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055936Z"},{"ID":1507,"PlayerID":849076810,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055937Z"},{"ID":1508,"PlayerID":849076953,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055937Z"},{"ID":1509,"PlayerID":849078086,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055937Z"},{"ID":1510,"PlayerID":849078119,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055937Z"},{"ID":1511,"PlayerID":849078297,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055937Z"},{"ID":1512,"PlayerID":849078498,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055938Z"},{"ID":1513,"PlayerID":849078942,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055938Z"},{"ID":1514,"PlayerID":849080011,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055938Z"},{"ID":1515,"PlayerID":849080197,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055938Z"},{"ID":1516,"PlayerID":849080702,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055938Z"},{"ID":1517,"PlayerID":849081641,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055939Z"},{"ID":1518,"PlayerID":849081869,"NewTribeID":1627,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055939Z"},{"ID":1519,"PlayerID":849082154,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055939Z"},{"ID":1520,"PlayerID":849082580,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055939Z"},{"ID":1521,"PlayerID":849082848,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055939Z"},{"ID":1522,"PlayerID":849083294,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05594Z"},{"ID":1523,"PlayerID":849083501,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05594Z"},{"ID":1524,"PlayerID":849083534,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05594Z"},{"ID":1525,"PlayerID":849083725,"NewTribeID":19,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05594Z"},{"ID":1526,"PlayerID":849084005,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05594Z"},{"ID":1527,"PlayerID":849084066,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055941Z"},{"ID":1528,"PlayerID":849084474,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055941Z"},{"ID":1529,"PlayerID":849084740,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055941Z"},{"ID":1530,"PlayerID":849084911,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055941Z"},{"ID":1531,"PlayerID":849084985,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055941Z"},{"ID":1532,"PlayerID":849085160,"NewTribeID":1535,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055942Z"},{"ID":1533,"PlayerID":849085371,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055942Z"},{"ID":1534,"PlayerID":849085605,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055942Z"},{"ID":1535,"PlayerID":849085961,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055942Z"},{"ID":1536,"PlayerID":849086074,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055942Z"},{"ID":1537,"PlayerID":849086357,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055943Z"},{"ID":1538,"PlayerID":849086491,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055943Z"},{"ID":1539,"PlayerID":849086693,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055943Z"},{"ID":1540,"PlayerID":849086777,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055943Z"},{"ID":1541,"PlayerID":849087149,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055943Z"},{"ID":1542,"PlayerID":849087786,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055944Z"},{"ID":1543,"PlayerID":849087855,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055944Z"},{"ID":1544,"PlayerID":849087895,"NewTribeID":1170,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055944Z"},{"ID":1545,"PlayerID":849088101,"NewTribeID":1680,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055944Z"},{"ID":1546,"PlayerID":849088199,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055945Z"},{"ID":1547,"PlayerID":849088243,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055945Z"},{"ID":1548,"PlayerID":849088515,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055945Z"},{"ID":1549,"PlayerID":849088639,"NewTribeID":1680,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055945Z"},{"ID":1550,"PlayerID":849088880,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055945Z"},{"ID":1551,"PlayerID":849088882,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055945Z"},{"ID":1552,"PlayerID":849088923,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055946Z"},{"ID":1553,"PlayerID":849089207,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055946Z"},{"ID":1554,"PlayerID":849089323,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055946Z"},{"ID":1555,"PlayerID":849089459,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055946Z"},{"ID":1556,"PlayerID":849089499,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055946Z"},{"ID":1557,"PlayerID":849089601,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055946Z"},{"ID":1558,"PlayerID":849089654,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055947Z"},{"ID":1559,"PlayerID":849089881,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055947Z"},{"ID":1560,"PlayerID":849090130,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055947Z"},{"ID":1561,"PlayerID":849090573,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055947Z"},{"ID":1562,"PlayerID":849090846,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055947Z"},{"ID":1563,"PlayerID":849091060,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055948Z"},{"ID":1564,"PlayerID":849091084,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055948Z"},{"ID":1565,"PlayerID":849091105,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055948Z"},{"ID":1566,"PlayerID":849091769,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055948Z"},{"ID":1567,"PlayerID":849091866,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055948Z"},{"ID":1568,"PlayerID":849091897,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055948Z"},{"ID":1569,"PlayerID":849091899,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1570,"PlayerID":849091947,"NewTribeID":19,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1571,"PlayerID":849091972,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1572,"PlayerID":849092109,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1573,"PlayerID":849092185,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1574,"PlayerID":849092244,"NewTribeID":758,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1575,"PlayerID":849092309,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055949Z"},{"ID":1576,"PlayerID":849092685,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05595Z"},{"ID":1577,"PlayerID":849092769,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05595Z"},{"ID":1578,"PlayerID":849092827,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05595Z"},{"ID":1579,"PlayerID":849093353,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05595Z"},{"ID":1580,"PlayerID":849093422,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05595Z"},{"ID":1581,"PlayerID":849093426,"NewTribeID":369,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.05595Z"},{"ID":1582,"PlayerID":849093576,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1583,"PlayerID":849093742,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1584,"PlayerID":849093771,"NewTribeID":373,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1585,"PlayerID":849093875,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1586,"PlayerID":849094061,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1587,"PlayerID":849094067,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1588,"PlayerID":849094111,"NewTribeID":72,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055951Z"},{"ID":1589,"PlayerID":849094586,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055952Z"},{"ID":1590,"PlayerID":849094603,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055952Z"},{"ID":1591,"PlayerID":849094609,"NewTribeID":85,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055952Z"},{"ID":1592,"PlayerID":849094688,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055952Z"},{"ID":1593,"PlayerID":849095014,"NewTribeID":1428,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055952Z"},{"ID":1594,"PlayerID":849095068,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055952Z"},{"ID":1595,"PlayerID":849095227,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055953Z"},{"ID":1596,"PlayerID":849095240,"NewTribeID":309,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055953Z"},{"ID":1597,"PlayerID":849095376,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055953Z"},{"ID":1598,"PlayerID":849095430,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055953Z"},{"ID":1599,"PlayerID":849095435,"NewTribeID":301,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055953Z"},{"ID":1600,"PlayerID":849095482,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055953Z"},{"ID":1601,"PlayerID":849095509,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055954Z"},{"ID":1602,"PlayerID":849095594,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055954Z"},{"ID":1603,"PlayerID":849095599,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055954Z"},{"ID":1604,"PlayerID":849095778,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055954Z"},{"ID":1605,"PlayerID":849095800,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.055954Z"},{"ID":1606,"PlayerID":849095814,"NewTribeID":1729,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204809Z"},{"ID":1607,"PlayerID":849095829,"NewTribeID":1681,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20481Z"},{"ID":1608,"PlayerID":849095948,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20481Z"},{"ID":1609,"PlayerID":849095963,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20481Z"},{"ID":1610,"PlayerID":849095992,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20481Z"},{"ID":1611,"PlayerID":849096041,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204811Z"},{"ID":1612,"PlayerID":849096102,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204811Z"},{"ID":1613,"PlayerID":849096215,"NewTribeID":1621,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204811Z"},{"ID":1614,"PlayerID":849096265,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204811Z"},{"ID":1615,"PlayerID":849096310,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204811Z"},{"ID":1616,"PlayerID":849096334,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204812Z"},{"ID":1617,"PlayerID":849096341,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204812Z"},{"ID":1618,"PlayerID":849096346,"NewTribeID":1530,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204812Z"},{"ID":1619,"PlayerID":849096354,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204812Z"},{"ID":1620,"PlayerID":849096399,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204812Z"},{"ID":1621,"PlayerID":849096454,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204813Z"},{"ID":1622,"PlayerID":849096458,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204813Z"},{"ID":1623,"PlayerID":849096544,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204813Z"},{"ID":1624,"PlayerID":849096547,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204813Z"},{"ID":1625,"PlayerID":849096592,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204813Z"},{"ID":1626,"PlayerID":849096631,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204814Z"},{"ID":1627,"PlayerID":849096649,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204814Z"},{"ID":1628,"PlayerID":849096768,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204814Z"},{"ID":1629,"PlayerID":849096856,"NewTribeID":830,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204814Z"},{"ID":1630,"PlayerID":849096874,"NewTribeID":1651,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204815Z"},{"ID":1631,"PlayerID":849096882,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204815Z"},{"ID":1632,"PlayerID":849096891,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204815Z"},{"ID":1633,"PlayerID":849096944,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204815Z"},{"ID":1634,"PlayerID":849096945,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204816Z"},{"ID":1635,"PlayerID":849096954,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204816Z"},{"ID":1636,"PlayerID":849096958,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204816Z"},{"ID":1637,"PlayerID":849096972,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204816Z"},{"ID":1638,"PlayerID":849096979,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204816Z"},{"ID":1639,"PlayerID":849097002,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204817Z"},{"ID":1640,"PlayerID":849097103,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204817Z"},{"ID":1641,"PlayerID":849097123,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204817Z"},{"ID":1642,"PlayerID":849097175,"NewTribeID":1480,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204817Z"},{"ID":1643,"PlayerID":849097220,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204817Z"},{"ID":1644,"PlayerID":849097312,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204817Z"},{"ID":1645,"PlayerID":849097370,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204818Z"},{"ID":1646,"PlayerID":849097373,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204818Z"},{"ID":1647,"PlayerID":849097445,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204818Z"},{"ID":1648,"PlayerID":849097477,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204818Z"},{"ID":1649,"PlayerID":849097614,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204819Z"},{"ID":1650,"PlayerID":849097620,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204819Z"},{"ID":1651,"PlayerID":849097681,"NewTribeID":1798,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204819Z"},{"ID":1652,"PlayerID":849097716,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204819Z"},{"ID":1653,"PlayerID":849097729,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204819Z"},{"ID":1654,"PlayerID":849097737,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20482Z"},{"ID":1655,"PlayerID":849097799,"NewTribeID":39,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20482Z"},{"ID":1656,"PlayerID":849097837,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20482Z"},{"ID":1657,"PlayerID":849097898,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20482Z"},{"ID":1658,"PlayerID":849097924,"NewTribeID":1096,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204821Z"},{"ID":1659,"PlayerID":849097937,"NewTribeID":120,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204821Z"},{"ID":1660,"PlayerID":849097981,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204821Z"},{"ID":1661,"PlayerID":849098132,"NewTribeID":1690,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204821Z"},{"ID":1662,"PlayerID":849098136,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204822Z"},{"ID":1663,"PlayerID":849098192,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204822Z"},{"ID":1664,"PlayerID":849098200,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204822Z"},{"ID":1665,"PlayerID":849098217,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204822Z"},{"ID":1666,"PlayerID":849098265,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204822Z"},{"ID":1667,"PlayerID":849098299,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204823Z"},{"ID":1668,"PlayerID":849098324,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204823Z"},{"ID":1669,"PlayerID":849098326,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204823Z"},{"ID":1670,"PlayerID":849098387,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204823Z"},{"ID":1671,"PlayerID":849098400,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204824Z"},{"ID":1672,"PlayerID":849098477,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204824Z"},{"ID":1673,"PlayerID":849098516,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204824Z"},{"ID":1674,"PlayerID":849098557,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204824Z"},{"ID":1675,"PlayerID":849098592,"NewTribeID":1645,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204825Z"},{"ID":1676,"PlayerID":849098628,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204825Z"},{"ID":1677,"PlayerID":849098648,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204825Z"},{"ID":1678,"PlayerID":849098667,"NewTribeID":56,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204825Z"},{"ID":1679,"PlayerID":849098688,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204826Z"},{"ID":1680,"PlayerID":849098693,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204826Z"},{"ID":1681,"PlayerID":849098695,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204826Z"},{"ID":1682,"PlayerID":849098724,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204826Z"},{"ID":1683,"PlayerID":849098727,"NewTribeID":1148,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204826Z"},{"ID":1684,"PlayerID":849098731,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204827Z"},{"ID":1685,"PlayerID":849098766,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204827Z"},{"ID":1686,"PlayerID":849098769,"NewTribeID":291,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204827Z"},{"ID":1687,"PlayerID":849098774,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204827Z"},{"ID":1688,"PlayerID":849098782,"NewTribeID":35,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204828Z"},{"ID":1689,"PlayerID":849098784,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204828Z"},{"ID":1690,"PlayerID":849098822,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204828Z"},{"ID":1691,"PlayerID":849098827,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204828Z"},{"ID":1692,"PlayerID":849098848,"NewTribeID":1737,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204829Z"},{"ID":1693,"PlayerID":849098966,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204829Z"},{"ID":1694,"PlayerID":849099021,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204829Z"},{"ID":1695,"PlayerID":849099054,"NewTribeID":194,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204829Z"},{"ID":1696,"PlayerID":849099105,"NewTribeID":1483,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204829Z"},{"ID":1697,"PlayerID":849099131,"NewTribeID":963,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20483Z"},{"ID":1698,"PlayerID":849099138,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20483Z"},{"ID":1699,"PlayerID":849099160,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20483Z"},{"ID":1700,"PlayerID":849099258,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20483Z"},{"ID":1701,"PlayerID":849099276,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204831Z"},{"ID":1702,"PlayerID":849099280,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204831Z"},{"ID":1703,"PlayerID":849099342,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204831Z"},{"ID":1704,"PlayerID":849099391,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204831Z"},{"ID":1705,"PlayerID":849099422,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204831Z"},{"ID":1706,"PlayerID":849099425,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204832Z"},{"ID":1707,"PlayerID":849099434,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204832Z"},{"ID":1708,"PlayerID":849099463,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204832Z"},{"ID":1709,"PlayerID":849099505,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204832Z"},{"ID":1710,"PlayerID":849099517,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204833Z"},{"ID":1711,"PlayerID":849099541,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204833Z"},{"ID":1712,"PlayerID":849099544,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204833Z"},{"ID":1713,"PlayerID":849099557,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204833Z"},{"ID":1714,"PlayerID":849099558,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204834Z"},{"ID":1715,"PlayerID":849099601,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204834Z"},{"ID":1716,"PlayerID":849099640,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204834Z"},{"ID":1717,"PlayerID":849099660,"NewTribeID":806,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204834Z"},{"ID":1718,"PlayerID":849099689,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204834Z"},{"ID":1719,"PlayerID":849099696,"NewTribeID":1039,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204835Z"},{"ID":1720,"PlayerID":849099804,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204835Z"},{"ID":1721,"PlayerID":849099859,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204835Z"},{"ID":1722,"PlayerID":849099876,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204835Z"},{"ID":1723,"PlayerID":849099887,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204836Z"},{"ID":1724,"PlayerID":849099955,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204836Z"},{"ID":1725,"PlayerID":849099965,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204836Z"},{"ID":1726,"PlayerID":849100034,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204836Z"},{"ID":1727,"PlayerID":849100082,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204837Z"},{"ID":1728,"PlayerID":849100083,"NewTribeID":1128,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204837Z"},{"ID":1729,"PlayerID":849100089,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204837Z"},{"ID":1730,"PlayerID":849100134,"NewTribeID":963,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204837Z"},{"ID":1731,"PlayerID":849100149,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204838Z"},{"ID":1732,"PlayerID":849100228,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204838Z"},{"ID":1733,"PlayerID":849100246,"NewTribeID":1079,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204838Z"},{"ID":1734,"PlayerID":849100262,"NewTribeID":71,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204838Z"},{"ID":1735,"PlayerID":849100288,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204839Z"},{"ID":1736,"PlayerID":849100289,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204839Z"},{"ID":1737,"PlayerID":849100323,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204839Z"},{"ID":1738,"PlayerID":849100349,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204839Z"},{"ID":1739,"PlayerID":849100352,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20484Z"},{"ID":1740,"PlayerID":849100354,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20484Z"},{"ID":1741,"PlayerID":849100383,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20484Z"},{"ID":1742,"PlayerID":849100399,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20484Z"},{"ID":1743,"PlayerID":849100406,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20484Z"},{"ID":1744,"PlayerID":849100496,"NewTribeID":1258,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204841Z"},{"ID":1745,"PlayerID":849100584,"NewTribeID":1494,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204841Z"},{"ID":1746,"PlayerID":849100612,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204841Z"},{"ID":1747,"PlayerID":849100615,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204841Z"},{"ID":1748,"PlayerID":849100656,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204841Z"},{"ID":1749,"PlayerID":849100680,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204842Z"},{"ID":1750,"PlayerID":849100744,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204842Z"},{"ID":1751,"PlayerID":849100760,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204842Z"},{"ID":1752,"PlayerID":849100782,"NewTribeID":1261,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204842Z"},{"ID":1753,"PlayerID":849100787,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204843Z"},{"ID":1754,"PlayerID":849100796,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204843Z"},{"ID":1755,"PlayerID":849100811,"NewTribeID":785,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204843Z"},{"ID":1756,"PlayerID":849100827,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204843Z"},{"ID":1757,"PlayerID":849100877,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204844Z"},{"ID":1758,"PlayerID":849100882,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204844Z"},{"ID":1759,"PlayerID":849100994,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204844Z"},{"ID":1760,"PlayerID":849101018,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204844Z"},{"ID":1761,"PlayerID":849101029,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204845Z"},{"ID":1762,"PlayerID":849101083,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204845Z"},{"ID":1763,"PlayerID":849101092,"NewTribeID":1108,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204845Z"},{"ID":1764,"PlayerID":849101102,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204845Z"},{"ID":1765,"PlayerID":849101104,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204845Z"},{"ID":1766,"PlayerID":849101108,"NewTribeID":1293,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204846Z"},{"ID":1767,"PlayerID":849101116,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204846Z"},{"ID":1768,"PlayerID":849101132,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204846Z"},{"ID":1769,"PlayerID":849101144,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204846Z"},{"ID":1770,"PlayerID":849101148,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204847Z"},{"ID":1771,"PlayerID":849101162,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204847Z"},{"ID":1772,"PlayerID":849101177,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204847Z"},{"ID":1773,"PlayerID":849101186,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204847Z"},{"ID":1774,"PlayerID":849101205,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204848Z"},{"ID":1775,"PlayerID":849101224,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204848Z"},{"ID":1776,"PlayerID":849101268,"NewTribeID":106,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204848Z"},{"ID":1777,"PlayerID":849101276,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204848Z"},{"ID":1778,"PlayerID":849101284,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204849Z"},{"ID":1779,"PlayerID":849101293,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204849Z"},{"ID":1780,"PlayerID":849101309,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204849Z"},{"ID":1781,"PlayerID":849101311,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204849Z"},{"ID":1782,"PlayerID":849101377,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20485Z"},{"ID":1783,"PlayerID":849101378,"NewTribeID":1418,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20485Z"},{"ID":1784,"PlayerID":849101382,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20485Z"},{"ID":1785,"PlayerID":849101409,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20485Z"},{"ID":1786,"PlayerID":849101443,"NewTribeID":1372,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20485Z"},{"ID":1787,"PlayerID":849101526,"NewTribeID":1423,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204851Z"},{"ID":1788,"PlayerID":849101579,"NewTribeID":666,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204851Z"},{"ID":1789,"PlayerID":849101580,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204851Z"},{"ID":1790,"PlayerID":849101581,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204851Z"},{"ID":1791,"PlayerID":849101604,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204851Z"},{"ID":1792,"PlayerID":849101647,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204852Z"},{"ID":1793,"PlayerID":849101652,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204852Z"},{"ID":1794,"PlayerID":849101674,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204852Z"},{"ID":1795,"PlayerID":849101694,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204852Z"},{"ID":1796,"PlayerID":849101771,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204853Z"},{"ID":1797,"PlayerID":849101814,"NewTribeID":1023,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204853Z"},{"ID":1798,"PlayerID":849101845,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204853Z"},{"ID":1799,"PlayerID":849101871,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204853Z"},{"ID":1800,"PlayerID":849101881,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204853Z"},{"ID":1801,"PlayerID":849101884,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204854Z"},{"ID":1802,"PlayerID":849101945,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204854Z"},{"ID":1803,"PlayerID":849101947,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204854Z"},{"ID":1804,"PlayerID":849101962,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204854Z"},{"ID":1805,"PlayerID":849102068,"NewTribeID":862,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204855Z"},{"ID":1806,"PlayerID":849102092,"NewTribeID":1336,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204855Z"},{"ID":1807,"PlayerID":849102094,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204855Z"},{"ID":1808,"PlayerID":849102108,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204855Z"},{"ID":1809,"PlayerID":849102143,"NewTribeID":1163,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204856Z"},{"ID":1810,"PlayerID":849102150,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204856Z"},{"ID":1811,"PlayerID":849102336,"NewTribeID":1588,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204856Z"},{"ID":1812,"PlayerID":849102464,"NewTribeID":1418,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204856Z"},{"ID":1813,"PlayerID":849102480,"NewTribeID":1418,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204856Z"},{"ID":1814,"PlayerID":849102573,"NewTribeID":1423,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204857Z"},{"ID":1815,"PlayerID":849103148,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204857Z"},{"ID":1816,"PlayerID":849103237,"NewTribeID":375,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204857Z"},{"ID":1817,"PlayerID":849103595,"NewTribeID":1460,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204857Z"},{"ID":1818,"PlayerID":849103914,"NewTribeID":1783,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204858Z"},{"ID":1819,"PlayerID":849103947,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204858Z"},{"ID":1820,"PlayerID":849104286,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204858Z"},{"ID":1821,"PlayerID":849104297,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204858Z"},{"ID":1822,"PlayerID":849104328,"NewTribeID":1226,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204859Z"},{"ID":1823,"PlayerID":849104356,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204859Z"},{"ID":1824,"PlayerID":849104474,"NewTribeID":7,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204859Z"},{"ID":1825,"PlayerID":849104491,"NewTribeID":96,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204859Z"},{"ID":1826,"PlayerID":849104546,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204859Z"},{"ID":1827,"PlayerID":849104818,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20486Z"},{"ID":1828,"PlayerID":849104855,"NewTribeID":1140,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20486Z"},{"ID":1829,"PlayerID":849105072,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20486Z"},{"ID":1830,"PlayerID":849105102,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20486Z"},{"ID":1831,"PlayerID":849105232,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204861Z"},{"ID":1832,"PlayerID":849105417,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204861Z"},{"ID":1833,"PlayerID":849105463,"NewTribeID":68,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204861Z"},{"ID":1834,"PlayerID":849105613,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204862Z"},{"ID":1835,"PlayerID":849106316,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204862Z"},{"ID":1836,"PlayerID":849106340,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204862Z"},{"ID":1837,"PlayerID":849106420,"NewTribeID":412,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204862Z"},{"ID":1838,"PlayerID":849106548,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204863Z"},{"ID":1839,"PlayerID":849106612,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204863Z"},{"ID":1840,"PlayerID":849106785,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204863Z"},{"ID":1841,"PlayerID":849106820,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204863Z"},{"ID":1842,"PlayerID":849106923,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204863Z"},{"ID":1843,"PlayerID":849106971,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204864Z"},{"ID":1844,"PlayerID":849107104,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204864Z"},{"ID":1845,"PlayerID":849107426,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204864Z"},{"ID":1846,"PlayerID":849107532,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204864Z"},{"ID":1847,"PlayerID":849107703,"NewTribeID":1163,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204865Z"},{"ID":1848,"PlayerID":849107799,"NewTribeID":1551,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204865Z"},{"ID":1849,"PlayerID":849107881,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204865Z"},{"ID":1850,"PlayerID":849108007,"NewTribeID":1523,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204865Z"},{"ID":1851,"PlayerID":849108053,"NewTribeID":647,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204866Z"},{"ID":1852,"PlayerID":849108148,"NewTribeID":1431,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204866Z"},{"ID":1853,"PlayerID":849108157,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204866Z"},{"ID":1854,"PlayerID":849108328,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204866Z"},{"ID":1855,"PlayerID":849108623,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204866Z"},{"ID":1856,"PlayerID":849108780,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204867Z"},{"ID":1857,"PlayerID":849108784,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204867Z"},{"ID":1858,"PlayerID":849108891,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204867Z"},{"ID":1859,"PlayerID":849108971,"NewTribeID":377,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204867Z"},{"ID":1860,"PlayerID":849109010,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204868Z"},{"ID":1861,"PlayerID":849109036,"NewTribeID":1789,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204868Z"},{"ID":1862,"PlayerID":849109045,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204868Z"},{"ID":1863,"PlayerID":849109072,"NewTribeID":1232,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204868Z"},{"ID":1864,"PlayerID":849109116,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204868Z"},{"ID":1865,"PlayerID":849109232,"NewTribeID":944,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204869Z"},{"ID":1866,"PlayerID":849109413,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204869Z"},{"ID":1867,"PlayerID":849109507,"NewTribeID":1528,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204869Z"},{"ID":1868,"PlayerID":849109637,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204869Z"},{"ID":1869,"PlayerID":849109795,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20487Z"},{"ID":1870,"PlayerID":849109966,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20487Z"},{"ID":1871,"PlayerID":849110310,"NewTribeID":1643,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20487Z"},{"ID":1872,"PlayerID":849110365,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20487Z"},{"ID":1873,"PlayerID":849110380,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20487Z"},{"ID":1874,"PlayerID":849110382,"NewTribeID":33,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204871Z"},{"ID":1875,"PlayerID":849110479,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204871Z"},{"ID":1876,"PlayerID":849110571,"NewTribeID":256,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204871Z"},{"ID":1877,"PlayerID":849110622,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204871Z"},{"ID":1878,"PlayerID":849110688,"NewTribeID":214,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204871Z"},{"ID":1879,"PlayerID":849110711,"NewTribeID":786,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204872Z"},{"ID":1880,"PlayerID":849110743,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204872Z"},{"ID":1881,"PlayerID":849111196,"NewTribeID":1597,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204872Z"},{"ID":1882,"PlayerID":849111231,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204872Z"},{"ID":1883,"PlayerID":849111244,"NewTribeID":722,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204873Z"},{"ID":1884,"PlayerID":849111316,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204873Z"},{"ID":1885,"PlayerID":849111332,"NewTribeID":285,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204873Z"},{"ID":1886,"PlayerID":849111408,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204873Z"},{"ID":1887,"PlayerID":849111418,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204873Z"},{"ID":1888,"PlayerID":849111487,"NewTribeID":24,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204874Z"},{"ID":1889,"PlayerID":849111632,"NewTribeID":1590,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204874Z"},{"ID":1890,"PlayerID":849111732,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204874Z"},{"ID":1891,"PlayerID":849111792,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204874Z"},{"ID":1892,"PlayerID":849111819,"NewTribeID":117,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204875Z"},{"ID":1893,"PlayerID":849112029,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204875Z"},{"ID":1894,"PlayerID":849112033,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204875Z"},{"ID":1895,"PlayerID":849112050,"NewTribeID":1669,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204875Z"},{"ID":1896,"PlayerID":849112094,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204875Z"},{"ID":1897,"PlayerID":849112368,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204876Z"},{"ID":1898,"PlayerID":849112435,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204876Z"},{"ID":1899,"PlayerID":849112504,"NewTribeID":157,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204876Z"},{"ID":1900,"PlayerID":849112879,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204876Z"},{"ID":1901,"PlayerID":849112960,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204877Z"},{"ID":1902,"PlayerID":849113350,"NewTribeID":1526,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204877Z"},{"ID":1903,"PlayerID":849113480,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204877Z"},{"ID":1904,"PlayerID":849113595,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204877Z"},{"ID":1905,"PlayerID":849113597,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204877Z"},{"ID":1906,"PlayerID":849113819,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204878Z"},{"ID":1907,"PlayerID":849114033,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204878Z"},{"ID":1908,"PlayerID":849114119,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204878Z"},{"ID":1909,"PlayerID":849114265,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204878Z"},{"ID":1910,"PlayerID":849114445,"NewTribeID":1466,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204879Z"},{"ID":1911,"PlayerID":849114477,"NewTribeID":31,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204879Z"},{"ID":1912,"PlayerID":849114579,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204879Z"},{"ID":1913,"PlayerID":849114683,"NewTribeID":59,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204879Z"},{"ID":1914,"PlayerID":849115254,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.204879Z"},{"ID":1915,"PlayerID":849115431,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20488Z"},{"ID":1916,"PlayerID":849116221,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.20488Z"},{"ID":1917,"PlayerID":849116251,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227358Z"},{"ID":1918,"PlayerID":849116310,"NewTribeID":778,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227359Z"},{"ID":1919,"PlayerID":849116416,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227359Z"},{"ID":1920,"PlayerID":849116679,"NewTribeID":234,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227359Z"},{"ID":1921,"PlayerID":849117087,"NewTribeID":1797,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227359Z"},{"ID":1922,"PlayerID":849117143,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227359Z"},{"ID":1923,"PlayerID":849117196,"NewTribeID":1052,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227359Z"},{"ID":1924,"PlayerID":849117427,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1925,"PlayerID":849117454,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1926,"PlayerID":849117622,"NewTribeID":1687,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1927,"PlayerID":849117695,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1928,"PlayerID":849118441,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1929,"PlayerID":849118478,"NewTribeID":1764,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1930,"PlayerID":849118616,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.22736Z"},{"ID":1931,"PlayerID":849118709,"NewTribeID":1795,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1932,"PlayerID":849118999,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1933,"PlayerID":849119121,"NewTribeID":1724,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1934,"PlayerID":849119163,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1935,"PlayerID":849119223,"NewTribeID":29,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1936,"PlayerID":849119423,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1937,"PlayerID":849119528,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227361Z"},{"ID":1938,"PlayerID":849119848,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227362Z"},{"ID":1939,"PlayerID":849119994,"NewTribeID":1777,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227362Z"},{"ID":1940,"PlayerID":849120129,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227362Z"},{"ID":1941,"PlayerID":849120285,"NewTribeID":1456,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227362Z"},{"ID":1942,"PlayerID":849120488,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227362Z"},{"ID":1943,"PlayerID":849121329,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227362Z"},{"ID":1944,"PlayerID":849122297,"NewTribeID":847,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227363Z"},{"ID":1945,"PlayerID":849122822,"NewTribeID":1803,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227363Z"},{"ID":1946,"PlayerID":849123002,"NewTribeID":636,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227363Z"},{"ID":1947,"PlayerID":849123135,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:27:59.227363Z"},{"ID":1948,"PlayerID":3365981,"NewTribeID":285,"OldTribeID":116,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.074848Z"},{"ID":1949,"PlayerID":3933666,"NewTribeID":0,"OldTribeID":71,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.074848Z"},{"ID":1950,"PlayerID":5999909,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.074848Z"},{"ID":1951,"PlayerID":6143689,"NewTribeID":0,"OldTribeID":1669,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.074848Z"},{"ID":1952,"PlayerID":6822085,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111842Z"},{"ID":1953,"PlayerID":7349282,"NewTribeID":1480,"OldTribeID":7,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111842Z"},{"ID":1954,"PlayerID":7765098,"NewTribeID":1411,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111842Z"},{"ID":1955,"PlayerID":8055581,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111843Z"},{"ID":1956,"PlayerID":8649412,"NewTribeID":1,"OldTribeID":309,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111843Z"},{"ID":1957,"PlayerID":8654156,"NewTribeID":0,"OldTribeID":309,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111843Z"},{"ID":1958,"PlayerID":9003698,"NewTribeID":71,"OldTribeID":39,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111844Z"},{"ID":1959,"PlayerID":9071253,"NewTribeID":441,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.111844Z"},{"ID":1960,"PlayerID":698592565,"NewTribeID":0,"OldTribeID":1724,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.144455Z"},{"ID":1961,"PlayerID":699803070,"NewTribeID":0,"OldTribeID":785,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175612Z"},{"ID":1962,"PlayerID":699843417,"NewTribeID":0,"OldTribeID":1023,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175612Z"},{"ID":1963,"PlayerID":699845179,"NewTribeID":210,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175612Z"},{"ID":1964,"PlayerID":699869682,"NewTribeID":0,"OldTribeID":309,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175612Z"},{"ID":1965,"PlayerID":848928486,"NewTribeID":0,"OldTribeID":301,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175613Z"},{"ID":1966,"PlayerID":848955756,"NewTribeID":452,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175613Z"},{"ID":1967,"PlayerID":848957381,"NewTribeID":1811,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.175613Z"},{"ID":1968,"PlayerID":849012843,"NewTribeID":1480,"OldTribeID":7,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.207052Z"},{"ID":1969,"PlayerID":849029077,"NewTribeID":1312,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.207052Z"},{"ID":1970,"PlayerID":849097716,"NewTribeID":0,"OldTribeID":1411,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.241483Z"},{"ID":1971,"PlayerID":849112504,"NewTribeID":0,"OldTribeID":157,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.241483Z"},{"ID":1972,"PlayerID":849123267,"NewTribeID":1735,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.252247Z"},{"ID":1973,"PlayerID":849123536,"NewTribeID":1811,"OldTribeID":0,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.252248Z"},{"ID":1974,"PlayerID":698589866,"NewTribeID":0,"OldTribeID":1108,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.306198Z"},{"ID":1975,"PlayerID":849010865,"NewTribeID":0,"OldTribeID":285,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.306199Z"},{"ID":1976,"PlayerID":849088880,"NewTribeID":0,"OldTribeID":441,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.306199Z"},{"ID":1977,"PlayerID":849096954,"NewTribeID":0,"OldTribeID":1480,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.3062Z"},{"ID":1978,"PlayerID":849100827,"NewTribeID":0,"OldTribeID":375,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.3062Z"},{"ID":1979,"PlayerID":849109036,"NewTribeID":0,"OldTribeID":1789,"ServerKey":"pl181","CreatedAt":"2023-02-16T06:28:05.3062Z"}] diff --git a/internal/service/testdata/syncdata/stage2/expected/tribes.json b/internal/service/testdata/syncdata/stage2/expected/tribes.json new file mode 100644 index 0000000..48dc4d2 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/expected/tribes.json @@ -0,0 +1 @@ +[{"RankAtt":2,"ScoreAtt":197811951,"RankDef":3,"ScoreDef":225228925,"RankSup":0,"ScoreSup":0,"RankTotal":2,"ScoreTotal":518573688,"ID":1,"Name":"Konfederacja","Tag":"CSA-X","NumMembers":50,"NumVillages":9722,"Points":80591153,"AllPoints":85672571,"Rank":1,"Dominance":16.999475432767966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1","BestRank":1,"BestRankAt":"2023-02-26T08:03:28.379171Z","MostPoints":85672571,"MostPointsAt":"2023-02-26T08:03:35.806948Z","MostVillages":9722,"MostVillagesAt":"2023-02-26T08:03:35.806947Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37963Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":162,"ScoreAtt":7808,"RankDef":90,"ScoreDef":1123538,"RankSup":0,"ScoreSup":0,"RankTotal":98,"ScoreTotal":1148596,"ID":4,"Name":"Farmerzy","Tag":"Farma","NumMembers":1,"NumVillages":2,"Points":9811,"AllPoints":9811,"Rank":125,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=4","BestRank":125,"BestRankAt":"2023-02-26T08:03:35.806949Z","MostPoints":9811,"MostPointsAt":"2023-02-26T08:03:35.80695Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.37918Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":4,"ScoreAtt":134191270,"RankDef":2,"ScoreDef":263753262,"RankSup":0,"ScoreSup":0,"RankTotal":3,"ScoreTotal":513901496,"ID":7,"Name":"Spoceni Kuzyni","Tag":"KUZYNI","NumMembers":39,"NumVillages":4721,"Points":39582695,"AllPoints":39582695,"Rank":4,"Dominance":8.254939674768316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=7","BestRank":4,"BestRankAt":"2023-02-26T08:03:28.379182Z","MostPoints":39582695,"MostPointsAt":"2023-02-26T08:03:35.806951Z","MostVillages":4745,"MostVillagesAt":"2023-02-26T08:03:28.379182Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":91,"ScoreAtt":155525,"RankDef":66,"ScoreDef":2442607,"RankSup":0,"ScoreSup":0,"RankTotal":68,"ScoreTotal":2934283,"ID":8,"Name":"W O W","Tag":"WOW","NumMembers":10,"NumVillages":10,"Points":26603,"AllPoints":26603,"Rank":90,"Dominance":0.017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=8","BestRank":90,"BestRankAt":"2023-02-26T08:03:28.379183Z","MostPoints":26603,"MostPointsAt":"2023-02-26T08:03:35.806953Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:28.379183Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":113,"ScoreAtt":71331,"RankDef":78,"ScoreDef":1791675,"RankSup":0,"ScoreSup":0,"RankTotal":82,"ScoreTotal":1995450,"ID":12,"Name":"AveMy","Tag":"AveMy","NumMembers":2,"NumVillages":1,"Points":6060,"AllPoints":6060,"Rank":144,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=12","BestRank":144,"BestRankAt":"2023-02-26T08:03:35.806954Z","MostPoints":6060,"MostPointsAt":"2023-02-26T08:03:35.806955Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379185Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379635Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":118,"ScoreAtt":63826,"RankDef":115,"ScoreDef":586792,"RankSup":0,"ScoreSup":0,"RankTotal":118,"ScoreTotal":650623,"ID":13,"Name":"FarmerzyPremium","Tag":"P.P","NumMembers":1,"NumVillages":1,"Points":490,"AllPoints":490,"Rank":214,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=13","BestRank":214,"BestRankAt":"2023-02-26T08:03:35.806956Z","MostPoints":490,"MostPointsAt":"2023-02-26T08:03:35.806956Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379187Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":29,"ScoreAtt":3109409,"RankDef":33,"ScoreDef":7654576,"RankSup":0,"ScoreSup":0,"RankTotal":34,"ScoreTotal":11791705,"ID":19,"Name":"Wojna Domowa Centrum","Tag":"*WDC*","NumMembers":2,"NumVillages":1,"Points":129,"AllPoints":129,"Rank":239,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=19","BestRank":239,"BestRankAt":"2023-02-26T08:03:35.806958Z","MostPoints":129,"MostPointsAt":"2023-02-26T08:03:28.379189Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379189Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":81,"ScoreAtt":205544,"RankDef":73,"ScoreDef":1964044,"RankSup":0,"ScoreSup":0,"RankTotal":79,"ScoreTotal":2170371,"ID":24,"Name":"Anonymous","Tag":"IT","NumMembers":17,"NumVillages":21,"Points":70935,"AllPoints":70935,"Rank":63,"Dominance":0.03671970624235006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=24","BestRank":63,"BestRankAt":"2023-02-26T08:03:28.37919Z","MostPoints":70935,"MostPointsAt":"2023-02-26T08:03:35.80696Z","MostVillages":21,"MostVillagesAt":"2023-02-26T08:03:28.379191Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":60,"ScoreAtt":426082,"RankDef":51,"ScoreDef":3593415,"RankSup":0,"ScoreSup":0,"RankTotal":56,"ScoreTotal":4083236,"ID":29,"Name":"Elitarne plemie zbieraczy PP","Tag":"EPZPP","NumMembers":50,"NumVillages":122,"Points":487760,"AllPoints":490595,"Rank":32,"Dominance":0.21332400769365273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=29","BestRank":32,"BestRankAt":"2023-02-26T08:03:28.379192Z","MostPoints":490595,"MostPointsAt":"2023-02-26T08:03:35.806961Z","MostVillages":122,"MostVillagesAt":"2023-02-26T08:03:28.379192Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":68,"ScoreAtt":271134,"RankDef":57,"ScoreDef":3184570,"RankSup":0,"ScoreSup":0,"RankTotal":62,"ScoreTotal":3582008,"ID":31,"Name":"Project D","Tag":"PD","NumMembers":20,"NumVillages":28,"Points":72338,"AllPoints":72338,"Rank":62,"Dominance":0.04895960832313342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=31","BestRank":62,"BestRankAt":"2023-02-26T08:03:28.379193Z","MostPoints":72338,"MostPointsAt":"2023-02-26T08:03:35.806963Z","MostVillages":28,"MostVillagesAt":"2023-02-26T08:03:28.379193Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":99,"ScoreAtt":128802,"RankDef":31,"ScoreDef":7982804,"RankSup":0,"ScoreSup":0,"RankTotal":35,"ScoreTotal":11535004,"ID":33,"Name":"Towarzystwo Wzajemnej Asekuracji","Tag":"TWA","NumMembers":25,"NumVillages":62,"Points":248240,"AllPoints":248240,"Rank":44,"Dominance":0.10841056128693828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=33","BestRank":44,"BestRankAt":"2023-02-26T08:03:28.379195Z","MostPoints":248240,"MostPointsAt":"2023-02-26T08:03:35.806965Z","MostVillages":62,"MostVillagesAt":"2023-02-26T08:03:35.806964Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":6,"ScoreAtt":68371296,"RankDef":15,"ScoreDef":31145726,"RankSup":0,"ScoreSup":0,"RankTotal":8,"ScoreTotal":117907676,"ID":35,"Name":"MotoMyszy.","Tag":"MzM","NumMembers":48,"NumVillages":4090,"Points":35366910,"AllPoints":35967206,"Rank":6,"Dominance":7.151599930057702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=35","BestRank":6,"BestRankAt":"2023-02-26T08:03:28.379197Z","MostPoints":35967206,"MostPointsAt":"2023-02-26T08:03:35.806966Z","MostVillages":4090,"MostVillagesAt":"2023-02-26T08:03:35.806966Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":8,"ScoreAtt":38636284,"RankDef":12,"ScoreDef":40821572,"RankSup":0,"ScoreSup":0,"RankTotal":11,"ScoreTotal":90994883,"ID":39,"Name":"OZDR + Why","Tag":"Ozdr@","NumMembers":27,"NumVillages":342,"Points":2415762,"AllPoints":2415762,"Rank":15,"Dominance":0.5980066445182725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=39","BestRank":15,"BestRankAt":"2023-02-26T08:03:28.379198Z","MostPoints":2661501,"MostPointsAt":"2023-02-26T08:03:28.379199Z","MostVillages":374,"MostVillagesAt":"2023-02-26T08:03:28.379198Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379636Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":1,"ScoreAtt":237866835,"RankDef":4,"ScoreDef":123736361,"RankSup":0,"ScoreSup":0,"RankTotal":4,"ScoreTotal":467872721,"ID":47,"Name":"Konfederacja Z","Tag":"CSA-Z","NumMembers":48,"NumVillages":9596,"Points":77915569,"AllPoints":82611770,"Rank":2,"Dominance":16.779157195313864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=47","BestRank":2,"BestRankAt":"2023-02-26T08:03:28.379199Z","MostPoints":82611770,"MostPointsAt":"2023-02-26T08:03:35.80697Z","MostVillages":9596,"MostVillagesAt":"2023-02-26T08:03:35.806969Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":188,"ScoreAtt":1297,"RankDef":133,"ScoreDef":327110,"RankSup":0,"ScoreSup":0,"RankTotal":144,"ScoreTotal":328407,"ID":53,"Name":"Zakon Zielonego Liƛcia","Tag":"420","NumMembers":1,"NumVillages":13,"Points":50577,"AllPoints":50577,"Rank":71,"Dominance":0.0227312467214548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=53","BestRank":71,"BestRankAt":"2023-02-26T08:03:28.379201Z","MostPoints":50577,"MostPointsAt":"2023-02-26T08:03:35.806971Z","MostVillages":13,"MostVillagesAt":"2023-02-26T08:03:28.379201Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":102,"ScoreAtt":107411,"RankDef":117,"ScoreDef":524360,"RankSup":0,"ScoreSup":0,"RankTotal":119,"ScoreTotal":632131,"ID":56,"Name":"PotÄ™ĆŒne Pelikany","Tag":"*PP*","NumMembers":1,"NumVillages":1,"Points":678,"AllPoints":678,"Rank":205,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=56","BestRank":205,"BestRankAt":"2023-02-26T08:03:35.806972Z","MostPoints":678,"MostPointsAt":"2023-02-26T08:03:28.379203Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379203Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":108,"ScoreAtt":90043,"RankDef":56,"ScoreDef":3238973,"RankSup":0,"ScoreSup":0,"RankTotal":61,"ScoreTotal":3643561,"ID":59,"Name":"Znani i Nieznani","Tag":"ZiN","NumMembers":9,"NumVillages":10,"Points":18104,"AllPoints":18104,"Rank":105,"Dominance":0.017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=59","BestRank":105,"BestRankAt":"2023-02-26T08:03:35.806974Z","MostPoints":18104,"MostPointsAt":"2023-02-26T08:03:35.806975Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:35.806974Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":44,"ScoreAtt":1097666,"RankDef":44,"ScoreDef":5634475,"RankSup":0,"ScoreSup":0,"RankTotal":45,"ScoreTotal":7073381,"ID":68,"Name":"ObroƄcy Cadii","Tag":"Cadia","NumMembers":20,"NumVillages":104,"Points":490637,"AllPoints":490637,"Rank":31,"Dominance":0.1818499737716384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=68","BestRank":31,"BestRankAt":"2023-02-26T08:03:28.379211Z","MostPoints":496548,"MostPointsAt":"2023-02-26T08:03:28.379212Z","MostVillages":105,"MostVillagesAt":"2023-02-26T08:03:28.379211Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379639Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":15,"ScoreAtt":8857798,"RankDef":34,"ScoreDef":7464048,"RankSup":0,"ScoreSup":0,"RankTotal":29,"ScoreTotal":17132708,"ID":71,"Name":"why so serious","Tag":"Why?","NumMembers":26,"NumVillages":1160,"Points":10008304,"AllPoints":10008304,"Rank":10,"Dominance":2.0283266305298127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=71","BestRank":10,"BestRankAt":"2023-02-26T08:03:28.379213Z","MostPoints":10008304,"MostPointsAt":"2023-02-26T08:03:35.806978Z","MostVillages":1160,"MostVillagesAt":"2023-02-26T08:03:35.806978Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":132,"ScoreAtt":38620,"RankDef":118,"ScoreDef":506287,"RankSup":0,"ScoreSup":0,"RankTotal":126,"ScoreTotal":544908,"ID":72,"Name":"Dinozaury","Tag":"DINO","NumMembers":3,"NumVillages":5,"Points":16182,"AllPoints":16182,"Rank":108,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=72","BestRank":108,"BestRankAt":"2023-02-26T08:03:35.806979Z","MostPoints":16182,"MostPointsAt":"2023-02-26T08:03:35.80698Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:35.80698Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":34,"ScoreAtt":2196064,"RankDef":22,"ScoreDef":18308136,"RankSup":0,"ScoreSup":0,"RankTotal":25,"ScoreTotal":24603199,"ID":77,"Name":"Wyznawcy Darksizmu","Tag":"-WzDa-","NumMembers":5,"NumVillages":5,"Points":3948,"AllPoints":3948,"Rank":160,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=77","BestRank":160,"BestRankAt":"2023-02-26T08:03:35.806981Z","MostPoints":3948,"MostPointsAt":"2023-02-26T08:03:35.806982Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379424Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":25,"ScoreAtt":4699158,"RankDef":17,"ScoreDef":27243988,"RankSup":0,"ScoreSup":0,"RankTotal":21,"ScoreTotal":36196035,"ID":80,"Name":"Legion","Tag":"-LM-","NumMembers":13,"NumVillages":31,"Points":162555,"AllPoints":162555,"Rank":49,"Dominance":0.05420528064346914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=80","BestRank":49,"BestRankAt":"2023-02-26T08:03:28.379424Z","MostPoints":162947,"MostPointsAt":"2023-02-26T08:03:28.379425Z","MostVillages":31,"MostVillagesAt":"2023-02-26T08:03:28.379425Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":5,"ScoreAtt":86384602,"RankDef":18,"ScoreDef":27003725,"RankSup":0,"ScoreSup":0,"RankTotal":7,"ScoreTotal":121654301,"ID":85,"Name":"Motomyszy","Tag":"MzM.","NumMembers":50,"NumVillages":4622,"Points":39147296,"AllPoints":40987712,"Rank":5,"Dominance":8.081832488197236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=85","BestRank":5,"BestRankAt":"2023-02-26T08:03:28.379425Z","MostPoints":40987712,"MostPointsAt":"2023-02-26T08:03:35.806985Z","MostVillages":4622,"MostVillagesAt":"2023-02-26T08:03:35.806985Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":105,"ScoreAtt":94543,"RankDef":99,"ScoreDef":819602,"RankSup":0,"ScoreSup":0,"RankTotal":104,"ScoreTotal":936121,"ID":89,"Name":"FRIENDOLINOS","Tag":"OG","NumMembers":2,"NumVillages":0,"Points":182,"AllPoints":182,"Rank":233,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=89","BestRank":233,"BestRankAt":"2023-02-26T08:03:35.806986Z","MostPoints":182,"MostPointsAt":"2023-02-26T08:03:35.806987Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379426Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":80,"ScoreAtt":208853,"RankDef":81,"ScoreDef":1704695,"RankSup":0,"ScoreSup":0,"RankTotal":85,"ScoreTotal":1913549,"ID":92,"Name":"MotoMyszy!","Tag":"MzM!","NumMembers":1,"NumVillages":1,"Points":3421,"AllPoints":3421,"Rank":165,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=92","BestRank":165,"BestRankAt":"2023-02-26T08:03:35.806988Z","MostPoints":3421,"MostPointsAt":"2023-02-26T08:03:28.379426Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379426Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37964Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":128,"ScoreAtt":40098,"RankDef":61,"ScoreDef":2767578,"RankSup":0,"ScoreSup":0,"RankTotal":71,"ScoreTotal":2816660,"ID":96,"Name":"Zakon Czerwonej RĂłĆŒy","Tag":"Z.C.R","NumMembers":12,"NumVillages":13,"Points":19300,"AllPoints":19300,"Rank":101,"Dominance":0.0227312467214548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=96","BestRank":101,"BestRankAt":"2023-02-26T08:03:35.806989Z","MostPoints":19300,"MostPointsAt":"2023-02-26T08:03:35.80699Z","MostVillages":13,"MostVillagesAt":"2023-02-26T08:03:28.379427Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":136,"ScoreAtt":33470,"RankDef":116,"ScoreDef":543960,"RankSup":0,"ScoreSup":0,"RankTotal":122,"ScoreTotal":598608,"ID":97,"Name":"FARMERZY PLEMION","Tag":"FARME","NumMembers":1,"NumVillages":6,"Points":23599,"AllPoints":23599,"Rank":95,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=97","BestRank":95,"BestRankAt":"2023-02-26T08:03:28.379427Z","MostPoints":23599,"MostPointsAt":"2023-02-26T08:03:35.806992Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379427Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":39,"ScoreAtt":1608248,"RankDef":65,"ScoreDef":2462841,"RankSup":0,"ScoreSup":0,"RankTotal":55,"ScoreTotal":4489957,"ID":106,"Name":"GWIEZDNA FEDERACJA","Tag":"GF","NumMembers":24,"NumVillages":342,"Points":1922259,"AllPoints":1922259,"Rank":16,"Dominance":0.5980066445182725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=106","BestRank":16,"BestRankAt":"2023-02-26T08:03:28.379427Z","MostPoints":1922259,"MostPointsAt":"2023-02-26T08:03:35.806993Z","MostVillages":342,"MostVillagesAt":"2023-02-26T08:03:28.379428Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":38,"ScoreAtt":1711002,"RankDef":19,"ScoreDef":24098705,"RankSup":0,"ScoreSup":0,"RankTotal":22,"ScoreTotal":30162886,"ID":112,"Name":"coƛ więcej","Tag":"CW","NumMembers":4,"NumVillages":3,"Points":1131,"AllPoints":1131,"Rank":194,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=112","BestRank":194,"BestRankAt":"2023-02-26T08:03:35.806995Z","MostPoints":1131,"MostPointsAt":"2023-02-26T08:03:35.806995Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379428Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":141,"ScoreAtt":25141,"RankDef":124,"ScoreDef":432992,"RankSup":0,"ScoreSup":0,"RankTotal":132,"ScoreTotal":476582,"ID":115,"Name":"zgierzanie","Tag":"zgr","NumMembers":1,"NumVillages":7,"Points":46100,"AllPoints":46100,"Rank":75,"Dominance":0.012239902080783354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=115","BestRank":75,"BestRankAt":"2023-02-26T08:03:35.806996Z","MostPoints":46100,"MostPointsAt":"2023-02-26T08:03:35.806997Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379428Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":110,"ScoreAtt":85225,"RankDef":90,"ScoreDef":1158499,"RankSup":0,"ScoreSup":0,"RankTotal":95,"ScoreTotal":1243734,"ID":116,"Name":"PotrzymajMiBrowar","Tag":"PMB","NumMembers":1,"NumVillages":1,"Points":1598,"AllPoints":1598,"Rank":187,"Dominance":0.0017510988145061025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=116","BestRank":187,"BestRankAt":"2023-02-26T08:03:28.379429Z","MostPoints":1598,"MostPointsAt":"2023-02-26T08:03:28.379429Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379429Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"2023-02-26T08:03:35.85234Z"},{"RankAtt":145,"ScoreAtt":21965,"RankDef":63,"ScoreDef":2637247,"RankSup":0,"ScoreSup":0,"RankTotal":67,"ScoreTotal":3041909,"ID":117,"Name":"Przybysze z kosmosu","Tag":"Pzk","NumMembers":5,"NumVillages":5,"Points":19943,"AllPoints":19943,"Rank":100,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=117","BestRank":100,"BestRankAt":"2023-02-26T08:03:35.806998Z","MostPoints":19943,"MostPointsAt":"2023-02-26T08:03:35.806999Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379434Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379643Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":3,"ScoreAtt":140311413,"RankDef":1,"ScoreDef":275985429,"RankSup":0,"ScoreSup":0,"RankTotal":1,"ScoreTotal":575766755,"ID":120,"Name":"Orkowi Zawodnicy Dominują Rybki","Tag":"OZDR","NumMembers":49,"NumVillages":5538,"Points":47095138,"AllPoints":48430662,"Rank":3,"Dominance":9.683511103339745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=120","BestRank":3,"BestRankAt":"2023-02-26T08:03:28.379435Z","MostPoints":48430662,"MostPointsAt":"2023-02-26T08:03:35.807Z","MostVillages":5550,"MostVillagesAt":"2023-02-26T08:03:28.379435Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":100,"ScoreAtt":110559,"RankDef":77,"ScoreDef":1826223,"RankSup":0,"ScoreSup":0,"RankTotal":83,"ScoreTotal":1945540,"ID":125,"Name":"Szczęƛliwi Gracze","Tag":"SG","NumMembers":4,"NumVillages":6,"Points":33644,"AllPoints":33644,"Rank":85,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=125","BestRank":85,"BestRankAt":"2023-02-26T08:03:28.379435Z","MostPoints":33644,"MostPointsAt":"2023-02-26T08:03:35.807002Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379435Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":110,"ScoreAtt":82762,"RankDef":55,"ScoreDef":3272339,"RankSup":0,"ScoreSup":0,"RankTotal":64,"ScoreTotal":3421838,"ID":129,"Name":"PREM","Tag":"Punkty","NumMembers":5,"NumVillages":19,"Points":24990,"AllPoints":24990,"Rank":93,"Dominance":0.03322259136212625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=129","BestRank":93,"BestRankAt":"2023-02-26T08:03:28.379436Z","MostPoints":24990,"MostPointsAt":"2023-02-26T08:03:35.807003Z","MostVillages":19,"MostVillagesAt":"2023-02-26T08:03:28.379436Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":62,"ScoreAtt":397211,"RankDef":98,"ScoreDef":819642,"RankSup":0,"ScoreSup":0,"RankTotal":95,"ScoreTotal":1255473,"ID":134,"Name":"DarNocy","Tag":"DN","NumMembers":1,"NumVillages":5,"Points":31116,"AllPoints":31116,"Rank":87,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=134","BestRank":87,"BestRankAt":"2023-02-26T08:03:28.379436Z","MostPoints":31116,"MostPointsAt":"2023-02-26T08:03:35.807005Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379436Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":111,"ScoreAtt":80447,"RankDef":74,"ScoreDef":1947811,"RankSup":0,"ScoreSup":0,"RankTotal":81,"ScoreTotal":2028269,"ID":147,"Name":"Bandycka Elita NiskorosƂych","Tag":"BENIS","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":258,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=147","BestRank":258,"BestRankAt":"2023-02-26T08:03:35.807006Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379437Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379437Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":61,"ScoreAtt":418012,"RankDef":47,"ScoreDef":5019241,"RankSup":0,"ScoreSup":0,"RankTotal":49,"ScoreTotal":6376060,"ID":157,"Name":"Domino","Tag":"Dom","NumMembers":34,"NumVillages":181,"Points":930020,"AllPoints":930020,"Rank":25,"Dominance":0.3164888966602553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=157","BestRank":25,"BestRankAt":"2023-02-26T08:03:28.379437Z","MostPoints":930020,"MostPointsAt":"2023-02-26T08:03:35.807008Z","MostVillages":181,"MostVillagesAt":"2023-02-26T08:03:28.379437Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379644Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":200,"ScoreDef":35302,"RankSup":0,"ScoreSup":0,"RankTotal":209,"ScoreTotal":35302,"ID":159,"Name":"Oggr","Tag":"Ogg","NumMembers":1,"NumVillages":0,"Points":400,"AllPoints":400,"Rank":215,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=159","BestRank":214,"BestRankAt":"2023-02-26T08:03:28.379438Z","MostPoints":524,"MostPointsAt":"2023-02-26T08:03:28.379438Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379438Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":151,"ScoreAtt":16504,"RankDef":159,"ScoreDef":141720,"RankSup":0,"ScoreSup":0,"RankTotal":167,"ScoreTotal":158224,"ID":176,"Name":"Albanski Raj","Tag":"AR","NumMembers":2,"NumVillages":6,"Points":42674,"AllPoints":42674,"Rank":78,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=176","BestRank":78,"BestRankAt":"2023-02-26T08:03:28.379438Z","MostPoints":42674,"MostPointsAt":"2023-02-26T08:03:35.807011Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379438Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":165,"ScoreAtt":7378,"RankDef":129,"ScoreDef":370427,"RankSup":0,"ScoreSup":0,"RankTotal":139,"ScoreTotal":377805,"ID":185,"Name":"NISZCZYCIELE","Tag":"|N|","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":259,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=185","BestRank":259,"BestRankAt":"2023-02-26T08:03:35.807012Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379439Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379439Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":245,"ScoreDef":1367,"RankSup":0,"ScoreSup":0,"RankTotal":251,"ScoreTotal":1367,"ID":187,"Name":"Champions League","Tag":"-ChL-","NumMembers":1,"NumVillages":0,"Points":347,"AllPoints":347,"Rank":220,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=187","BestRank":220,"BestRankAt":"2023-02-26T08:03:28.379439Z","MostPoints":347,"MostPointsAt":"2023-02-26T08:03:28.37944Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37944Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":31,"ScoreAtt":2617133,"RankDef":16,"ScoreDef":29684725,"RankSup":0,"ScoreSup":0,"RankTotal":20,"ScoreTotal":38570320,"ID":194,"Name":"Vis Maior","Tag":"VS","NumMembers":17,"NumVillages":151,"Points":830193,"AllPoints":830193,"Rank":26,"Dominance":0.26403217345689806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=194","BestRank":26,"BestRankAt":"2023-02-26T08:03:28.37944Z","MostPoints":830193,"MostPointsAt":"2023-02-26T08:03:35.807016Z","MostVillages":151,"MostVillagesAt":"2023-02-26T08:03:35.807016Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":209,"ScoreAtt":30,"RankDef":210,"ScoreDef":23556,"RankSup":0,"ScoreSup":0,"RankTotal":225,"ScoreTotal":23586,"ID":200,"Name":"Takie tam","Tag":"Ttm.","NumMembers":1,"NumVillages":0,"Points":561,"AllPoints":561,"Rank":211,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=200","BestRank":211,"BestRankAt":"2023-02-26T08:03:35.807017Z","MostPoints":561,"MostPointsAt":"2023-02-26T08:03:35.807018Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379441Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":142,"ScoreDef":242627,"RankSup":0,"ScoreSup":0,"RankTotal":151,"ScoreTotal":242627,"ID":206,"Name":"Pppp","Tag":"P..p","NumMembers":1,"NumVillages":0,"Points":578,"AllPoints":578,"Rank":210,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=206","BestRank":210,"BestRankAt":"2023-02-26T08:03:35.807019Z","MostPoints":578,"MostPointsAt":"2023-02-26T08:03:35.80702Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379441Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":85,"ScoreAtt":178718,"RankDef":54,"ScoreDef":3465830,"RankSup":0,"ScoreSup":0,"RankTotal":59,"ScoreTotal":3760105,"ID":210,"Name":"NoPon","Tag":"N-P","NumMembers":48,"NumVillages":69,"Points":208123,"AllPoints":209067,"Rank":47,"Dominance":0.12065046336772163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=210","BestRank":47,"BestRankAt":"2023-02-26T08:03:28.379441Z","MostPoints":209067,"MostPointsAt":"2023-02-26T08:03:35.807021Z","MostVillages":69,"MostVillagesAt":"2023-02-26T08:03:35.807021Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":71,"ScoreAtt":257208,"RankDef":67,"ScoreDef":2411001,"RankSup":0,"ScoreSup":0,"RankTotal":70,"ScoreTotal":2893518,"ID":211,"Name":"*Potrzymaj mi Piwo","Tag":"*PmP","NumMembers":2,"NumVillages":5,"Points":18368,"AllPoints":18368,"Rank":104,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=211","BestRank":104,"BestRankAt":"2023-02-26T08:03:35.807023Z","MostPoints":18368,"MostPointsAt":"2023-02-26T08:03:35.807023Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379445Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":126,"ScoreAtt":41525,"RankDef":101,"ScoreDef":791197,"RankSup":0,"ScoreSup":0,"RankTotal":101,"ScoreTotal":993612,"ID":214,"Name":"Armia Bosmana","Tag":"BOSMAN","NumMembers":3,"NumVillages":3,"Points":4308,"AllPoints":4308,"Rank":157,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=214","BestRank":157,"BestRankAt":"2023-02-26T08:03:35.807024Z","MostPoints":4308,"MostPointsAt":"2023-02-26T08:03:35.807025Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379446Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":212,"ScoreAtt":12,"RankDef":217,"ScoreDef":17866,"RankSup":0,"ScoreSup":0,"RankTotal":213,"ScoreTotal":32443,"ID":216,"Name":"Plemie Igora","Tag":"P.L.I","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":260,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=216","BestRank":260,"BestRankAt":"2023-02-26T08:03:35.807026Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379446Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379446Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379647Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":160,"ScoreAtt":8278,"RankDef":112,"ScoreDef":600370,"RankSup":0,"ScoreSup":0,"RankTotal":120,"ScoreTotal":630577,"ID":220,"Name":"Amatorzy Kiszonych OgĂłrkĂłw","Tag":"ALKO","NumMembers":3,"NumVillages":3,"Points":2264,"AllPoints":2264,"Rank":177,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=220","BestRank":177,"BestRankAt":"2023-02-26T08:03:35.807028Z","MostPoints":2264,"MostPointsAt":"2023-02-26T08:03:28.379447Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379447Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379648Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":65,"ScoreAtt":362768,"RankDef":62,"ScoreDef":2742706,"RankSup":0,"ScoreSup":0,"RankTotal":66,"ScoreTotal":3106000,"ID":234,"Name":"Pepeki123","Tag":"pepek","NumMembers":24,"NumVillages":28,"Points":82699,"AllPoints":82699,"Rank":57,"Dominance":0.04895960832313342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=234","BestRank":57,"BestRankAt":"2023-02-26T08:03:28.379447Z","MostPoints":82699,"MostPointsAt":"2023-02-26T08:03:35.80703Z","MostVillages":28,"MostVillagesAt":"2023-02-26T08:03:35.807029Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":203,"ScoreAtt":52,"RankDef":172,"ScoreDef":91650,"RankSup":0,"ScoreSup":0,"RankTotal":182,"ScoreTotal":91702,"ID":236,"Name":"Nakręcane Myszy","Tag":"NM","NumMembers":1,"NumVillages":0,"Points":262,"AllPoints":262,"Rank":226,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=236","BestRank":226,"BestRankAt":"2023-02-26T08:03:28.379448Z","MostPoints":262,"MostPointsAt":"2023-02-26T08:03:28.379448Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379448Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":201,"ScoreDef":35260,"RankSup":0,"ScoreSup":0,"RankTotal":211,"ScoreTotal":35260,"ID":255,"Name":"-QED-","Tag":"QED","NumMembers":1,"NumVillages":3,"Points":23228,"AllPoints":23228,"Rank":96,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=255","BestRank":96,"BestRankAt":"2023-02-26T08:03:28.379448Z","MostPoints":23228,"MostPointsAt":"2023-02-26T08:03:35.807033Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379448Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":33,"ScoreAtt":2264454,"RankDef":60,"ScoreDef":2894965,"RankSup":0,"ScoreSup":0,"RankTotal":50,"ScoreTotal":6123731,"ID":256,"Name":"GET this osada","Tag":"GETTO","NumMembers":1,"NumVillages":1,"Points":2552,"AllPoints":2552,"Rank":172,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=256","BestRank":172,"BestRankAt":"2023-02-26T08:03:35.807034Z","MostPoints":2552,"MostPointsAt":"2023-02-26T08:03:28.379449Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379449Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379651Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":155,"ScoreAtt":10522,"RankDef":173,"ScoreDef":91124,"RankSup":0,"ScoreSup":0,"RankTotal":178,"ScoreTotal":101651,"ID":260,"Name":"BƂękitna Planeta","Tag":"*BP*","NumMembers":1,"NumVillages":0,"Points":5873,"AllPoints":5873,"Rank":146,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=260","BestRank":146,"BestRankAt":"2023-02-26T08:03:35.807036Z","MostPoints":5873,"MostPointsAt":"2023-02-26T08:03:35.807036Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379449Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":168,"ScoreDef":109440,"RankSup":0,"ScoreSup":0,"RankTotal":170,"ScoreTotal":140209,"ID":281,"Name":"Liga Mistrzow","Tag":"LM","NumMembers":1,"NumVillages":3,"Points":5950,"AllPoints":5950,"Rank":145,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=281","BestRank":145,"BestRankAt":"2023-02-26T08:03:35.807038Z","MostPoints":5950,"MostPointsAt":"2023-02-26T08:03:28.37945Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37945Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":90,"ScoreAtt":160904,"RankDef":86,"ScoreDef":1307440,"RankSup":0,"ScoreSup":0,"RankTotal":87,"ScoreTotal":1526835,"ID":285,"Name":"Kompletnie Bezsensowne Plemię xD","Tag":"KBS","NumMembers":17,"NumVillages":52,"Points":216187,"AllPoints":216187,"Rank":46,"Dominance":0.0909249868858192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=285","BestRank":46,"BestRankAt":"2023-02-26T08:03:28.37945Z","MostPoints":216187,"MostPointsAt":"2023-02-26T08:03:35.80704Z","MostVillages":52,"MostVillagesAt":"2023-02-26T08:03:35.807039Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":174,"ScoreAtt":4521,"RankDef":227,"ScoreDef":7145,"RankSup":0,"ScoreSup":0,"RankTotal":233,"ScoreTotal":11666,"ID":287,"Name":"fififi","Tag":"fi","NumMembers":1,"NumVillages":3,"Points":10461,"AllPoints":10461,"Rank":122,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=287","BestRank":122,"BestRankAt":"2023-02-26T08:03:35.807041Z","MostPoints":10461,"MostPointsAt":"2023-02-26T08:03:28.379451Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379451Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":248,"ScoreDef":539,"RankSup":0,"ScoreSup":0,"RankTotal":253,"ScoreTotal":539,"ID":290,"Name":"Komercja Plemionn","Tag":"K - P","NumMembers":1,"NumVillages":0,"Points":197,"AllPoints":197,"Rank":231,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=290","BestRank":231,"BestRankAt":"2023-02-26T08:03:35.807042Z","MostPoints":197,"MostPointsAt":"2023-02-26T08:03:28.379451Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379451Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":9,"ScoreAtt":37122902,"RankDef":21,"ScoreDef":19215296,"RankSup":0,"ScoreSup":0,"RankTotal":17,"ScoreTotal":63046795,"ID":291,"Name":"MotoMyszy?","Tag":".Mzm.","NumMembers":47,"NumVillages":2600,"Points":19944126,"AllPoints":20492470,"Rank":8,"Dominance":4.54624934429096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=291","BestRank":8,"BestRankAt":"2023-02-26T08:03:28.379452Z","MostPoints":20492470,"MostPointsAt":"2023-02-26T08:03:35.807045Z","MostVillages":2600,"MostVillagesAt":"2023-02-26T08:03:35.807044Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":11,"ScoreAtt":27416924,"RankDef":37,"ScoreDef":6535547,"RankSup":0,"ScoreSup":0,"RankTotal":18,"ScoreTotal":54807871,"ID":301,"Name":"Psycho szczury","Tag":"MzM..","NumMembers":36,"NumVillages":1860,"Points":14082725,"AllPoints":14082725,"Rank":9,"Dominance":3.2523168386081482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=301","BestRank":9,"BestRankAt":"2023-02-26T08:03:28.379452Z","MostPoints":14094868,"MostPointsAt":"2023-02-26T08:03:28.379453Z","MostVillages":1866,"MostVillagesAt":"2023-02-26T08:03:28.379453Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":147,"ScoreAtt":19292,"RankDef":154,"ScoreDef":178401,"RankSup":0,"ScoreSup":0,"RankTotal":158,"ScoreTotal":198650,"ID":305,"Name":"Pro Sto","Tag":"Pro","NumMembers":1,"NumVillages":1,"Points":7528,"AllPoints":7528,"Rank":136,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=305","BestRank":136,"BestRankAt":"2023-02-26T08:03:28.379457Z","MostPoints":7528,"MostPointsAt":"2023-02-26T08:03:35.807048Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379457Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":10,"ScoreAtt":36519242,"RankDef":30,"ScoreDef":8654616,"RankSup":0,"ScoreSup":0,"RankTotal":16,"ScoreTotal":65460188,"ID":309,"Name":"Konfederacja Y","Tag":"CSA-Y","NumMembers":15,"NumVillages":1002,"Points":8457463,"AllPoints":8457463,"Rank":11,"Dominance":1.7520545549921316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=309","BestRank":11,"BestRankAt":"2023-02-26T08:03:28.379458Z","MostPoints":9174264,"MostPointsAt":"2023-02-26T08:03:28.379458Z","MostVillages":1088,"MostVillagesAt":"2023-02-26T08:03:28.379458Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379652Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":153,"ScoreDef":182517,"RankSup":0,"ScoreSup":0,"RankTotal":164,"ScoreTotal":182517,"ID":317,"Name":"Szalone NiedĆșwiedzie","Tag":"Miƛki","NumMembers":1,"NumVillages":0,"Points":4609,"AllPoints":4609,"Rank":156,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=317","BestRank":156,"BestRankAt":"2023-02-26T08:03:35.80705Z","MostPoints":4609,"MostPointsAt":"2023-02-26T08:03:28.379458Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379458Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":117,"ScoreAtt":67239,"RankDef":109,"ScoreDef":638904,"RankSup":0,"ScoreSup":0,"RankTotal":115,"ScoreTotal":708504,"ID":319,"Name":"PAKT","Tag":"PAKT","NumMembers":2,"NumVillages":2,"Points":6323,"AllPoints":6323,"Rank":143,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=319","BestRank":143,"BestRankAt":"2023-02-26T08:03:35.807052Z","MostPoints":6323,"MostPointsAt":"2023-02-26T08:03:35.807053Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379459Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":177,"ScoreAtt":3986,"RankDef":141,"ScoreDef":263066,"RankSup":0,"ScoreSup":0,"RankTotal":149,"ScoreTotal":267052,"ID":336,"Name":"hkgj","Tag":"kw","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":261,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=336","BestRank":261,"BestRankAt":"2023-02-26T08:03:35.807054Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.37946Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37946Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":233,"ScoreDef":5461,"RankSup":0,"ScoreSup":0,"RankTotal":242,"ScoreTotal":5461,"ID":339,"Name":"ZARZEW","Tag":"ZRW","NumMembers":1,"NumVillages":0,"Points":2804,"AllPoints":2804,"Rank":169,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=339","BestRank":169,"BestRankAt":"2023-02-26T08:03:35.807055Z","MostPoints":2804,"MostPointsAt":"2023-02-26T08:03:35.807056Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37946Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":103,"ScoreDef":760905,"RankSup":0,"ScoreSup":0,"RankTotal":112,"ScoreTotal":760905,"ID":355,"Name":"uuuuuuuuuuuuuuu","Tag":"uuu","NumMembers":1,"NumVillages":0,"Points":4128,"AllPoints":4128,"Rank":159,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=355","BestRank":159,"BestRankAt":"2023-02-26T08:03:35.807057Z","MostPoints":4128,"MostPointsAt":"2023-02-26T08:03:35.807058Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379461Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":189,"ScoreDef":52241,"RankSup":0,"ScoreSup":0,"RankTotal":200,"ScoreTotal":52241,"ID":365,"Name":"GIEƁDA","Tag":"GA","NumMembers":1,"NumVillages":0,"Points":8516,"AllPoints":8516,"Rank":129,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=365","BestRank":129,"BestRankAt":"2023-02-26T08:03:35.807059Z","MostPoints":8516,"MostPointsAt":"2023-02-26T08:03:35.807059Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379462Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":7,"ScoreAtt":59026086,"RankDef":13,"ScoreDef":40063000,"RankSup":0,"ScoreSup":0,"RankTotal":5,"ScoreTotal":177967660,"ID":369,"Name":"0rkowi Zawodnicy Dominują Rybki","Tag":"0ZDR","NumMembers":36,"NumVillages":3034,"Points":26181329,"AllPoints":26181329,"Rank":7,"Dominance":5.305123273299528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=369","BestRank":7,"BestRankAt":"2023-02-26T08:03:28.379462Z","MostPoints":26198197,"MostPointsAt":"2023-02-26T08:03:28.379462Z","MostVillages":3043,"MostVillagesAt":"2023-02-26T08:03:28.379462Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379655Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":127,"ScoreAtt":40352,"RankDef":107,"ScoreDef":670466,"RankSup":0,"ScoreSup":0,"RankTotal":114,"ScoreTotal":711036,"ID":373,"Name":"Gildia Kupiecka","Tag":"GK","NumMembers":2,"NumVillages":3,"Points":13810,"AllPoints":13810,"Rank":115,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=373","BestRank":115,"BestRankAt":"2023-02-26T08:03:28.379463Z","MostPoints":13810,"MostPointsAt":"2023-02-26T08:03:35.807063Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379463Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":201,"ScoreAtt":99,"RankDef":186,"ScoreDef":54720,"RankSup":0,"ScoreSup":0,"RankTotal":197,"ScoreTotal":54819,"ID":374,"Name":"xyz.","Tag":"xyz.","NumMembers":1,"NumVillages":0,"Points":901,"AllPoints":901,"Rank":197,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=374","BestRank":197,"BestRankAt":"2023-02-26T08:03:35.807064Z","MostPoints":901,"MostPointsAt":"2023-02-26T08:03:28.379464Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379463Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":78,"ScoreAtt":212543,"RankDef":89,"ScoreDef":1196041,"RankSup":0,"ScoreSup":0,"RankTotal":89,"ScoreTotal":1417749,"ID":375,"Name":"PePeKi PP.PP","Tag":"PKTPP","NumMembers":17,"NumVillages":16,"Points":39813,"AllPoints":39813,"Rank":80,"Dominance":0.027976919041790522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=375","BestRank":80,"BestRankAt":"2023-02-26T08:03:28.379464Z","MostPoints":39813,"MostPointsAt":"2023-02-26T08:03:35.807066Z","MostVillages":16,"MostVillagesAt":"2023-02-26T08:03:28.379464Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":67,"ScoreAtt":331213,"RankDef":45,"ScoreDef":5092537,"RankSup":0,"ScoreSup":0,"RankTotal":52,"ScoreTotal":5516679,"ID":377,"Name":"AKADEMIA WD","Tag":"AWD","NumMembers":24,"NumVillages":25,"Points":54591,"AllPoints":54591,"Rank":68,"Dominance":0.04371393600279769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=377","BestRank":68,"BestRankAt":"2023-02-26T08:03:28.379464Z","MostPoints":56124,"MostPointsAt":"2023-02-26T08:03:28.379465Z","MostVillages":26,"MostVillagesAt":"2023-02-26T08:03:28.379465Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":197,"ScoreAtt":291,"RankDef":130,"ScoreDef":359347,"RankSup":0,"ScoreSup":0,"RankTotal":141,"ScoreTotal":359638,"ID":382,"Name":"HANDEL","Tag":"HANDEL","NumMembers":1,"NumVillages":1,"Points":2203,"AllPoints":2203,"Rank":178,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=382","BestRank":178,"BestRankAt":"2023-02-26T08:03:35.807068Z","MostPoints":2203,"MostPointsAt":"2023-02-26T08:03:28.379465Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379465Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379656Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":92,"ScoreAtt":153097,"RankDef":83,"ScoreDef":1615856,"RankSup":0,"ScoreSup":0,"RankTotal":86,"ScoreTotal":1780581,"ID":385,"Name":"BiaƂa Armia","Tag":"B.A","NumMembers":5,"NumVillages":17,"Points":81013,"AllPoints":81013,"Rank":58,"Dominance":0.02972547648190243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=385","BestRank":58,"BestRankAt":"2023-02-26T08:03:28.379466Z","MostPoints":81013,"MostPointsAt":"2023-02-26T08:03:35.807071Z","MostVillages":17,"MostVillagesAt":"2023-02-26T08:03:28.379466Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":199,"ScoreDef":36806,"RankSup":0,"ScoreSup":0,"RankTotal":207,"ScoreTotal":36806,"ID":397,"Name":"Emka","Tag":"E.M.","NumMembers":1,"NumVillages":1,"Points":1170,"AllPoints":1170,"Rank":193,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=397","BestRank":193,"BestRankAt":"2023-02-26T08:03:35.807072Z","MostPoints":1170,"MostPointsAt":"2023-02-26T08:03:28.379471Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379471Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379659Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":52,"ScoreAtt":653722,"RankDef":38,"ScoreDef":6455126,"RankSup":0,"ScoreSup":0,"RankTotal":40,"ScoreTotal":7844341,"ID":412,"Name":"BOMBA","Tag":"BOMBA","NumMembers":22,"NumVillages":110,"Points":411596,"AllPoints":411596,"Rank":35,"Dominance":0.19234131841230984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=412","BestRank":35,"BestRankAt":"2023-02-26T08:03:28.379471Z","MostPoints":411596,"MostPointsAt":"2023-02-26T08:03:35.807074Z","MostVillages":110,"MostVillagesAt":"2023-02-26T08:03:35.807074Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":145,"ScoreDef":215538,"RankSup":0,"ScoreSup":0,"RankTotal":156,"ScoreTotal":215538,"ID":413,"Name":"Giht","Tag":"Hggf","NumMembers":1,"NumVillages":1,"Points":1374,"AllPoints":1374,"Rank":189,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=413","BestRank":189,"BestRankAt":"2023-02-26T08:03:28.379472Z","MostPoints":1374,"MostPointsAt":"2023-02-26T08:03:28.379472Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379472Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":222,"ScoreDef":10061,"RankSup":0,"ScoreSup":0,"RankTotal":235,"ScoreTotal":10061,"ID":415,"Name":".:xxx:.","Tag":"xxxx","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":247,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=415","BestRank":247,"BestRankAt":"2023-02-26T08:03:35.807077Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379472Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379472Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":151,"ScoreDef":184774,"RankSup":0,"ScoreSup":0,"RankTotal":163,"ScoreTotal":184774,"ID":429,"Name":"Zabi Staw","Tag":"Z-S","NumMembers":1,"NumVillages":0,"Points":855,"AllPoints":855,"Rank":199,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=429","BestRank":199,"BestRankAt":"2023-02-26T08:03:35.807078Z","MostPoints":855,"MostPointsAt":"2023-02-26T08:03:35.807079Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379473Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":32,"ScoreAtt":2549096,"RankDef":24,"ScoreDef":16198878,"RankSup":0,"ScoreSup":0,"RankTotal":27,"ScoreTotal":19841316,"ID":430,"Name":"**Wojna Idei**","Tag":"**WD**","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":262,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=430","BestRank":262,"BestRankAt":"2023-02-26T08:03:35.80708Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379473Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379473Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":24,"ScoreAtt":5119612,"RankDef":71,"ScoreDef":2040888,"RankSup":0,"ScoreSup":0,"RankTotal":41,"ScoreTotal":7710423,"ID":432,"Name":"McOpole","Tag":"McOpo","NumMembers":21,"NumVillages":210,"Points":1263914,"AllPoints":1263914,"Rank":21,"Dominance":0.36719706242350064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=432","BestRank":21,"BestRankAt":"2023-02-26T08:03:28.379474Z","MostPoints":1263914,"MostPointsAt":"2023-02-26T08:03:35.807082Z","MostVillages":210,"MostVillagesAt":"2023-02-26T08:03:28.379474Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":146,"ScoreAtt":20699,"RankDef":158,"ScoreDef":162816,"RankSup":0,"ScoreSup":0,"RankTotal":159,"ScoreTotal":197777,"ID":435,"Name":"ave sieci","Tag":"sieci","NumMembers":1,"NumVillages":1,"Points":4647,"AllPoints":4647,"Rank":155,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=435","BestRank":155,"BestRankAt":"2023-02-26T08:03:35.807083Z","MostPoints":4647,"MostPointsAt":"2023-02-26T08:03:35.807084Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379474Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":55,"ScoreAtt":609532,"RankDef":39,"ScoreDef":6276638,"RankSup":0,"ScoreSup":0,"RankTotal":46,"ScoreTotal":7053877,"ID":441,"Name":"Project D!","Tag":"PD!","NumMembers":24,"NumVillages":45,"Points":103116,"AllPoints":103116,"Rank":55,"Dominance":0.07868508480503585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=441","BestRank":55,"BestRankAt":"2023-02-26T08:03:28.379475Z","MostPoints":103116,"MostPointsAt":"2023-02-26T08:03:35.807086Z","MostVillages":45,"MostVillagesAt":"2023-02-26T08:03:35.807085Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":191,"ScoreAtt":1031,"RankDef":175,"ScoreDef":82553,"RankSup":0,"ScoreSup":0,"RankTotal":184,"ScoreTotal":83584,"ID":443,"Name":"PEAKY BLINDERS","Tag":"PB","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":263,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=443","BestRank":263,"BestRankAt":"2023-02-26T08:03:35.807087Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379475Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379475Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":150,"ScoreDef":188672,"RankSup":0,"ScoreSup":0,"RankTotal":161,"ScoreTotal":188672,"ID":451,"Name":"AVE (M)","Tag":"AVE(M)","NumMembers":1,"NumVillages":0,"Points":173,"AllPoints":173,"Rank":234,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=451","BestRank":234,"BestRankAt":"2023-02-26T08:03:35.807088Z","MostPoints":173,"MostPointsAt":"2023-02-26T08:03:35.807089Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379476Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":48,"ScoreAtt":725521,"RankDef":32,"ScoreDef":7812313,"RankSup":0,"ScoreSup":0,"RankTotal":38,"ScoreTotal":9604806,"ID":452,"Name":"ObroƄcy Krasnali Ogroduwych","Tag":"OKO","NumMembers":50,"NumVillages":111,"Points":389742,"AllPoints":392037,"Rank":36,"Dominance":0.19408987585242177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=452","BestRank":36,"BestRankAt":"2023-02-26T08:03:28.379476Z","MostPoints":392037,"MostPointsAt":"2023-02-26T08:03:35.807091Z","MostVillages":111,"MostVillagesAt":"2023-02-26T08:03:35.80709Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37966Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":204,"ScoreDef":28931,"RankSup":0,"ScoreSup":0,"RankTotal":218,"ScoreTotal":28931,"ID":474,"Name":"zagubiony natanek","Tag":"wul","NumMembers":1,"NumVillages":0,"Points":536,"AllPoints":536,"Rank":212,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=474","BestRank":212,"BestRankAt":"2023-02-26T08:03:28.379477Z","MostPoints":536,"MostPointsAt":"2023-02-26T08:03:28.379477Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379477Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":137,"ScoreAtt":30918,"RankDef":87,"ScoreDef":1224347,"RankSup":0,"ScoreSup":0,"RankTotal":96,"ScoreTotal":1255265,"ID":475,"Name":"Zbieracze Punktow Premium","Tag":"Z*P*P","NumMembers":2,"NumVillages":2,"Points":9372,"AllPoints":9372,"Rank":128,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=475","BestRank":128,"BestRankAt":"2023-02-26T08:03:35.807093Z","MostPoints":9372,"MostPointsAt":"2023-02-26T08:03:35.807094Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379477Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":184,"ScoreAtt":2275,"RankDef":234,"ScoreDef":5219,"RankSup":0,"ScoreSup":0,"RankTotal":238,"ScoreTotal":7494,"ID":503,"Name":"TMPL","Tag":"TMP","NumMembers":1,"NumVillages":1,"Points":2332,"AllPoints":2332,"Rank":176,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=503","BestRank":176,"BestRankAt":"2023-02-26T08:03:35.807095Z","MostPoints":2332,"MostPointsAt":"2023-02-26T08:03:28.379478Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379478Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":171,"ScoreAtt":4826,"RankDef":64,"ScoreDef":2609213,"RankSup":0,"ScoreSup":0,"RankTotal":72,"ScoreTotal":2615421,"ID":517,"Name":"MĂłj Dom","Tag":"= MD =","NumMembers":2,"NumVillages":1,"Points":1204,"AllPoints":1204,"Rank":191,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=517","BestRank":191,"BestRankAt":"2023-02-26T08:03:35.807097Z","MostPoints":1204,"MostPointsAt":"2023-02-26T08:03:35.807097Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379481Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":96,"ScoreAtt":137000,"RankDef":137,"ScoreDef":313250,"RankSup":0,"ScoreSup":0,"RankTotal":134,"ScoreTotal":454684,"ID":520,"Name":"ESSA","Tag":"ESSA","NumMembers":2,"NumVillages":6,"Points":25610,"AllPoints":25610,"Rank":92,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=520","BestRank":92,"BestRankAt":"2023-02-26T08:03:28.379481Z","MostPoints":25610,"MostPointsAt":"2023-02-26T08:03:35.807099Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379482Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":175,"ScoreAtt":4107,"RankDef":125,"ScoreDef":432982,"RankSup":0,"ScoreSup":0,"RankTotal":136,"ScoreTotal":437089,"ID":523,"Name":"Wiocha","Tag":"Yuby","NumMembers":1,"NumVillages":0,"Points":280,"AllPoints":280,"Rank":223,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=523","BestRank":223,"BestRankAt":"2023-02-26T08:03:35.8071Z","MostPoints":280,"MostPointsAt":"2023-02-26T08:03:35.807101Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379482Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379665Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":35,"ScoreAtt":2097153,"RankDef":48,"ScoreDef":4265938,"RankSup":0,"ScoreSup":0,"RankTotal":43,"ScoreTotal":7268867,"ID":546,"Name":"WOJNA IDEI","Tag":"WD","NumMembers":1,"NumVillages":1,"Points":50,"AllPoints":50,"Rank":246,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=546","BestRank":246,"BestRankAt":"2023-02-26T08:03:35.807102Z","MostPoints":50,"MostPointsAt":"2023-02-26T08:03:28.379483Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379483Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":41,"ScoreAtt":1309325,"RankDef":49,"ScoreDef":4231284,"RankSup":0,"ScoreSup":0,"RankTotal":42,"ScoreTotal":7387675,"ID":548,"Name":"Co Chcesz?","Tag":"CO","NumMembers":1,"NumVillages":1,"Points":317,"AllPoints":317,"Rank":222,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=548","BestRank":222,"BestRankAt":"2023-02-26T08:03:35.807103Z","MostPoints":317,"MostPointsAt":"2023-02-26T08:03:28.379483Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379483Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":208,"ScoreAtt":32,"RankDef":134,"ScoreDef":322767,"RankSup":0,"ScoreSup":0,"RankTotal":146,"ScoreTotal":322799,"ID":554,"Name":"=premium=","Tag":"pp.","NumMembers":3,"NumVillages":2,"Points":4850,"AllPoints":4850,"Rank":154,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=554","BestRank":154,"BestRankAt":"2023-02-26T08:03:35.807105Z","MostPoints":4850,"MostPointsAt":"2023-02-26T08:03:35.807105Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379484Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":189,"ScoreAtt":1239,"RankDef":205,"ScoreDef":28691,"RankSup":0,"ScoreSup":0,"RankTotal":217,"ScoreTotal":29930,"ID":557,"Name":"WYROLOWANI","Tag":"WYROL","NumMembers":1,"NumVillages":5,"Points":39927,"AllPoints":39927,"Rank":79,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=557","BestRank":79,"BestRankAt":"2023-02-26T08:03:28.379484Z","MostPoints":39927,"MostPointsAt":"2023-02-26T08:03:35.807107Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379484Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":37,"ScoreAtt":1766507,"RankDef":28,"ScoreDef":11702793,"RankSup":0,"ScoreSup":0,"RankTotal":30,"ScoreTotal":16158300,"ID":594,"Name":"T E R Y T O R I U M","Tag":"]T[","NumMembers":4,"NumVillages":4,"Points":13708,"AllPoints":13708,"Rank":116,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=594","BestRank":116,"BestRankAt":"2023-02-26T08:03:35.807108Z","MostPoints":13708,"MostPointsAt":"2023-02-26T08:03:35.807109Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379485Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":159,"ScoreAtt":8289,"RankDef":162,"ScoreDef":131188,"RankSup":0,"ScoreSup":0,"RankTotal":172,"ScoreTotal":139493,"ID":597,"Name":"Bractwo KrzyĆŒowe","Tag":"+BK+","NumMembers":2,"NumVillages":1,"Points":7686,"AllPoints":7686,"Rank":133,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=597","BestRank":133,"BestRankAt":"2023-02-26T08:03:35.80711Z","MostPoints":7686,"MostPointsAt":"2023-02-26T08:03:28.379485Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379485Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379666Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":74,"ScoreAtt":222168,"RankDef":92,"ScoreDef":1091090,"RankSup":0,"ScoreSup":0,"RankTotal":91,"ScoreTotal":1329820,"ID":607,"Name":"NAJEMNICY.","Tag":"N/M/Y","NumMembers":5,"NumVillages":22,"Points":96031,"AllPoints":96031,"Rank":56,"Dominance":0.03846826368246197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=607","BestRank":56,"BestRankAt":"2023-02-26T08:03:28.379485Z","MostPoints":96031,"MostPointsAt":"2023-02-26T08:03:35.807112Z","MostVillages":22,"MostVillagesAt":"2023-02-26T08:03:28.379486Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":182,"ScoreAtt":2475,"RankDef":152,"ScoreDef":182954,"RankSup":0,"ScoreSup":0,"RankTotal":162,"ScoreTotal":185431,"ID":624,"Name":"K35 DEMONY","Tag":"K35","NumMembers":1,"NumVillages":3,"Points":19050,"AllPoints":19050,"Rank":103,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=624","BestRank":103,"BestRankAt":"2023-02-26T08:03:28.379486Z","MostPoints":19050,"MostPointsAt":"2023-02-26T08:03:28.379486Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379486Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":179,"ScoreDef":66255,"RankSup":0,"ScoreSup":0,"RankTotal":193,"ScoreTotal":66255,"ID":625,"Name":"Wilki","Tag":"Wilki","NumMembers":1,"NumVillages":0,"Points":887,"AllPoints":887,"Rank":198,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=625","BestRank":198,"BestRankAt":"2023-02-26T08:03:35.807115Z","MostPoints":887,"MostPointsAt":"2023-02-26T08:03:35.807115Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379487Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":225,"ScoreDef":8121,"RankSup":0,"ScoreSup":0,"RankTotal":236,"ScoreTotal":8121,"ID":626,"Name":"Targowica","Tag":"Targ","NumMembers":1,"NumVillages":3,"Points":11298,"AllPoints":11298,"Rank":120,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=626","BestRank":120,"BestRankAt":"2023-02-26T08:03:35.807116Z","MostPoints":11298,"MostPointsAt":"2023-02-26T08:03:35.807117Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379487Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":122,"ScoreAtt":51266,"RankDef":144,"ScoreDef":218591,"RankSup":0,"ScoreSup":0,"RankTotal":147,"ScoreTotal":269857,"ID":633,"Name":"Wolny","Tag":"WS","NumMembers":1,"NumVillages":16,"Points":80649,"AllPoints":80649,"Rank":59,"Dominance":0.027976919041790522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=633","BestRank":59,"BestRankAt":"2023-02-26T08:03:28.379487Z","MostPoints":80649,"MostPointsAt":"2023-02-26T08:03:35.807119Z","MostVillages":16,"MostVillagesAt":"2023-02-26T08:03:28.379488Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":123,"ScoreAtt":48384,"RankDef":169,"ScoreDef":100862,"RankSup":0,"ScoreSup":0,"RankTotal":168,"ScoreTotal":149408,"ID":636,"Name":"Superpremium","Tag":"($)","NumMembers":5,"NumVillages":5,"Points":5393,"AllPoints":5393,"Rank":149,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=636","BestRank":149,"BestRankAt":"2023-02-26T08:03:35.80712Z","MostPoints":5393,"MostPointsAt":"2023-02-26T08:03:35.80712Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379488Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379669Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":112,"ScoreAtt":72783,"RankDef":96,"ScoreDef":893889,"RankSup":0,"ScoreSup":0,"RankTotal":103,"ScoreTotal":991269,"ID":647,"Name":"OwƂosione Rogale","Tag":"OwR","NumMembers":7,"NumVillages":11,"Points":36541,"AllPoints":36541,"Rank":82,"Dominance":0.019234131841230986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=647","BestRank":82,"BestRankAt":"2023-02-26T08:03:28.379491Z","MostPoints":36541,"MostPointsAt":"2023-02-26T08:03:35.807122Z","MostVillages":11,"MostVillagesAt":"2023-02-26T08:03:28.379492Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":97,"ScoreAtt":136651,"RankDef":93,"ScoreDef":1039367,"RankSup":0,"ScoreSup":0,"RankTotal":97,"ScoreTotal":1202654,"ID":651,"Name":"Semper Invicta","Tag":"Sempe","NumMembers":3,"NumVillages":4,"Points":12098,"AllPoints":12098,"Rank":119,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=651","BestRank":119,"BestRankAt":"2023-02-26T08:03:35.807123Z","MostPoints":12098,"MostPointsAt":"2023-02-26T08:03:35.807124Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379492Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":149,"ScoreAtt":18675,"RankDef":85,"ScoreDef":1352646,"RankSup":0,"ScoreSup":0,"RankTotal":90,"ScoreTotal":1371321,"ID":664,"Name":"Kal-Kol","Tag":"K L N","NumMembers":3,"NumVillages":2,"Points":7408,"AllPoints":7408,"Rank":137,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=664","BestRank":137,"BestRankAt":"2023-02-26T08:03:35.807125Z","MostPoints":7408,"MostPointsAt":"2023-02-26T08:03:35.807125Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379493Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":17,"ScoreAtt":8136342,"RankDef":11,"ScoreDef":48673656,"RankSup":0,"ScoreSup":0,"RankTotal":14,"ScoreTotal":67663161,"ID":666,"Name":"KOM0RNICY 2","Tag":"KOM2","NumMembers":27,"NumVillages":502,"Points":3623764,"AllPoints":3623764,"Rank":13,"Dominance":0.8777758349361776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=666","BestRank":13,"BestRankAt":"2023-02-26T08:03:28.379493Z","MostPoints":3631190,"MostPointsAt":"2023-02-26T08:03:28.379493Z","MostVillages":504,"MostVillagesAt":"2023-02-26T08:03:28.379493Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":119,"ScoreAtt":61938,"RankDef":111,"ScoreDef":602468,"RankSup":0,"ScoreSup":0,"RankTotal":117,"ScoreTotal":672292,"ID":686,"Name":"Semper Invicta.","Tag":"Semp.","NumMembers":3,"NumVillages":2,"Points":3186,"AllPoints":3186,"Rank":167,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=686","BestRank":167,"BestRankAt":"2023-02-26T08:03:35.807128Z","MostPoints":3186,"MostPointsAt":"2023-02-26T08:03:35.807128Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379493Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":161,"ScoreDef":135903,"RankSup":0,"ScoreSup":0,"RankTotal":174,"ScoreTotal":135903,"ID":689,"Name":"Gaƛnice PoĆŒarowe StraĆŒaka","Tag":"GPS!","NumMembers":1,"NumVillages":0,"Points":132,"AllPoints":132,"Rank":238,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=689","BestRank":238,"BestRankAt":"2023-02-26T08:03:35.80713Z","MostPoints":132,"MostPointsAt":"2023-02-26T08:03:35.80713Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379494Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":23,"ScoreAtt":5125520,"RankDef":35,"ScoreDef":7123124,"RankSup":0,"ScoreSup":0,"RankTotal":33,"ScoreTotal":13927849,"ID":693,"Name":"Why So Serious?","Tag":"Why","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":264,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=693","BestRank":264,"BestRankAt":"2023-02-26T08:03:35.807131Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379495Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379494Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37967Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":27,"ScoreAtt":3745388,"RankDef":20,"ScoreDef":22187796,"RankSup":0,"ScoreSup":0,"RankTotal":23,"ScoreTotal":28486103,"ID":722,"Name":"Bractwo Nocnych Polan","Tag":"BNP","NumMembers":30,"NumVillages":194,"Points":1057120,"AllPoints":1057120,"Rank":22,"Dominance":0.3392201433817101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=722","BestRank":22,"BestRankAt":"2023-02-26T08:03:28.379495Z","MostPoints":1067408,"MostPointsAt":"2023-02-26T08:03:28.379495Z","MostVillages":196,"MostVillagesAt":"2023-02-26T08:03:28.379495Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":237,"ScoreDef":4620,"RankSup":0,"ScoreSup":0,"RankTotal":246,"ScoreTotal":4620,"ID":723,"Name":"Raki nie boraki","Tag":"Rnb","NumMembers":1,"NumVillages":1,"Points":2771,"AllPoints":2771,"Rank":170,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=723","BestRank":170,"BestRankAt":"2023-02-26T08:03:35.807134Z","MostPoints":2771,"MostPointsAt":"2023-02-26T08:03:35.807135Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379495Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":95,"ScoreAtt":141728,"RankDef":132,"ScoreDef":328377,"RankSup":0,"ScoreSup":0,"RankTotal":128,"ScoreTotal":512496,"ID":733,"Name":"Kuzyni 2","Tag":"KUZYNA","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":248,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=733","BestRank":248,"BestRankAt":"2023-02-26T08:03:35.807136Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379496Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379496Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":107,"ScoreAtt":91301,"RankDef":105,"ScoreDef":735077,"RankSup":0,"ScoreSup":0,"RankTotal":107,"ScoreTotal":876738,"ID":750,"Name":"Moje OHV","Tag":"OHV","NumMembers":1,"NumVillages":0,"Points":277,"AllPoints":277,"Rank":224,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=750","BestRank":224,"BestRankAt":"2023-02-26T08:03:35.807138Z","MostPoints":277,"MostPointsAt":"2023-02-26T08:03:35.807138Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379496Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":77,"ScoreAtt":212637,"RankDef":95,"ScoreDef":1010984,"RankSup":0,"ScoreSup":0,"RankTotal":94,"ScoreTotal":1256466,"ID":758,"Name":"-300-","Tag":"-300-","NumMembers":5,"NumVillages":6,"Points":13864,"AllPoints":13864,"Rank":114,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=758","BestRank":114,"BestRankAt":"2023-02-26T08:03:35.80714Z","MostPoints":13864,"MostPointsAt":"2023-02-26T08:03:35.80714Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379497Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":129,"ScoreAtt":40018,"RankDef":135,"ScoreDef":322406,"RankSup":0,"ScoreSup":0,"RankTotal":140,"ScoreTotal":365059,"ID":766,"Name":"*Anonymous*","Tag":"*AMS*","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":265,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=766","BestRank":265,"BestRankAt":"2023-02-26T08:03:35.807141Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379498Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379497Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":153,"ScoreAtt":16261,"RankDef":70,"ScoreDef":2157999,"RankSup":0,"ScoreSup":0,"RankTotal":78,"ScoreTotal":2174294,"ID":778,"Name":"Imperium Polskie","Tag":"IP","NumMembers":12,"NumVillages":11,"Points":29666,"AllPoints":29666,"Rank":88,"Dominance":0.019234131841230986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=778","BestRank":88,"BestRankAt":"2023-02-26T08:03:28.379498Z","MostPoints":30040,"MostPointsAt":"2023-02-26T08:03:28.379498Z","MostVillages":12,"MostVillagesAt":"2023-02-26T08:03:28.379498Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":16,"ScoreAtt":8763144,"RankDef":7,"ScoreDef":82756525,"RankSup":0,"ScoreSup":0,"RankTotal":10,"ScoreTotal":107688398,"ID":785,"Name":"KOMORNICY3","Tag":"KOM3","NumMembers":37,"NumVillages":744,"Points":5127712,"AllPoints":5127712,"Rank":12,"Dominance":1.3009267354432592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=785","BestRank":12,"BestRankAt":"2023-02-26T08:03:28.379498Z","MostPoints":5127712,"MostPointsAt":"2023-02-26T08:03:35.807145Z","MostVillages":744,"MostVillagesAt":"2023-02-26T08:03:35.807145Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379673Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":58,"ScoreAtt":492119,"RankDef":75,"ScoreDef":1933759,"RankSup":0,"ScoreSup":0,"RankTotal":63,"ScoreTotal":3554001,"ID":786,"Name":"JP2 2137","Tag":"21:37","NumMembers":7,"NumVillages":48,"Points":259042,"AllPoints":259042,"Rank":42,"Dominance":0.08393075712537157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=786","BestRank":42,"BestRankAt":"2023-02-26T08:03:28.379502Z","MostPoints":259042,"MostPointsAt":"2023-02-26T08:03:35.807146Z","MostVillages":48,"MostVillagesAt":"2023-02-26T08:03:28.379502Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":83,"ScoreAtt":187855,"RankDef":140,"ScoreDef":276830,"RankSup":0,"ScoreSup":0,"RankTotal":131,"ScoreTotal":476872,"ID":806,"Name":"Cesarstwo Zachodnio Rzymskie","Tag":"SPQR","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":249,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=806","BestRank":249,"BestRankAt":"2023-02-26T08:03:35.807148Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379503Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379503Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":156,"ScoreDef":171639,"RankSup":0,"ScoreSup":0,"RankTotal":165,"ScoreTotal":171639,"ID":809,"Name":"NOC3","Tag":"NOC3","NumMembers":1,"NumVillages":0,"Points":367,"AllPoints":367,"Rank":218,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=809","BestRank":218,"BestRankAt":"2023-02-26T08:03:35.807149Z","MostPoints":367,"MostPointsAt":"2023-02-26T08:03:35.80715Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379503Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":76,"ScoreAtt":214844,"RankDef":76,"ScoreDef":1928071,"RankSup":0,"ScoreSup":0,"RankTotal":77,"ScoreTotal":2340609,"ID":822,"Name":"*Gramy Dla Zabawy**","Tag":"*GDZ**","NumMembers":2,"NumVillages":10,"Points":42703,"AllPoints":42703,"Rank":77,"Dominance":0.017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=822","BestRank":77,"BestRankAt":"2023-02-26T08:03:28.379503Z","MostPoints":42703,"MostPointsAt":"2023-02-26T08:03:35.807152Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:28.379504Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379674Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":20,"ScoreAtt":6182634,"RankDef":8,"ScoreDef":71201569,"RankSup":0,"ScoreSup":0,"RankTotal":12,"ScoreTotal":87500446,"ID":830,"Name":"Komornicy","Tag":"KOM1","NumMembers":3,"NumVillages":13,"Points":74502,"AllPoints":74502,"Rank":61,"Dominance":0.0227312467214548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=830","BestRank":61,"BestRankAt":"2023-02-26T08:03:28.379504Z","MostPoints":74502,"MostPointsAt":"2023-02-26T08:03:35.807153Z","MostVillages":13,"MostVillagesAt":"2023-02-26T08:03:28.379504Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":152,"ScoreAtt":16412,"RankDef":188,"ScoreDef":52998,"RankSup":0,"ScoreSup":0,"RankTotal":190,"ScoreTotal":69410,"ID":841,"Name":"PP Pan Dziobak","Tag":"PEPE","NumMembers":1,"NumVillages":1,"Points":771,"AllPoints":771,"Rank":202,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=841","BestRank":202,"BestRankAt":"2023-02-26T08:03:35.807154Z","MostPoints":771,"MostPointsAt":"2023-02-26T08:03:28.379505Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379504Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":73,"ScoreAtt":249481,"RankDef":69,"ScoreDef":2174797,"RankSup":0,"ScoreSup":0,"RankTotal":75,"ScoreTotal":2499022,"ID":847,"Name":"Nowa nadzieja","Tag":"Nowa","NumMembers":35,"NumVillages":120,"Points":361076,"AllPoints":361076,"Rank":39,"Dominance":0.20982689281342895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=847","BestRank":39,"BestRankAt":"2023-02-26T08:03:28.379505Z","MostPoints":361076,"MostPointsAt":"2023-02-26T08:03:35.807157Z","MostVillages":120,"MostVillagesAt":"2023-02-26T08:03:35.807156Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":12,"ScoreAtt":18925685,"RankDef":5,"ScoreDef":102003847,"RankSup":0,"ScoreSup":0,"RankTotal":6,"ScoreTotal":137050699,"ID":862,"Name":"IMPERIUM +","Tag":".:+:.","NumMembers":31,"NumVillages":280,"Points":1738908,"AllPoints":1738908,"Rank":18,"Dominance":0.4895960832313341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=862","BestRank":17,"BestRankAt":"2023-02-26T08:03:28.379505Z","MostPoints":1774471,"MostPointsAt":"2023-02-26T08:03:28.379506Z","MostVillages":287,"MostVillagesAt":"2023-02-26T08:03:28.379506Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":40,"ScoreAtt":1367259,"RankDef":119,"ScoreDef":477351,"RankSup":0,"ScoreSup":0,"RankTotal":84,"ScoreTotal":1940894,"ID":936,"Name":"Gracz bula9001 zablokowaƂ cię.","Tag":"bula90","NumMembers":1,"NumVillages":8,"Points":77623,"AllPoints":77623,"Rank":60,"Dominance":0.013988459520895261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=936","BestRank":60,"BestRankAt":"2023-02-26T08:03:28.379506Z","MostPoints":77623,"MostPointsAt":"2023-02-26T08:03:28.379506Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379506Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":72,"ScoreAtt":249585,"RankDef":59,"ScoreDef":2990567,"RankSup":0,"ScoreSup":0,"RankTotal":65,"ScoreTotal":3297382,"ID":944,"Name":"YOGI","Tag":"YOGI","NumMembers":7,"NumVillages":14,"Points":60146,"AllPoints":60146,"Rank":66,"Dominance":0.02447980416156671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=944","BestRank":66,"BestRankAt":"2023-02-26T08:03:28.379506Z","MostPoints":60284,"MostPointsAt":"2023-02-26T08:03:28.379507Z","MostVillages":14,"MostVillagesAt":"2023-02-26T08:03:28.379507Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":199,"ScoreAtt":114,"RankDef":207,"ScoreDef":27327,"RankSup":0,"ScoreSup":0,"RankTotal":223,"ScoreTotal":27441,"ID":945,"Name":"Brygada RR","Tag":"RR","NumMembers":1,"NumVillages":0,"Points":726,"AllPoints":726,"Rank":204,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=945","BestRank":204,"BestRankAt":"2023-02-26T08:03:35.807162Z","MostPoints":726,"MostPointsAt":"2023-02-26T08:03:35.807163Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379507Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":168,"ScoreAtt":6190,"RankDef":174,"ScoreDef":90726,"RankSup":0,"ScoreSup":0,"RankTotal":179,"ScoreTotal":97544,"ID":963,"Name":"Grupa Amerykanka","Tag":"GAZ","NumMembers":2,"NumVillages":2,"Points":2349,"AllPoints":2349,"Rank":174,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=963","BestRank":174,"BestRankAt":"2023-02-26T08:03:35.807164Z","MostPoints":2349,"MostPointsAt":"2023-02-26T08:03:28.379508Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379508Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":183,"ScoreAtt":2359,"RankDef":209,"ScoreDef":25168,"RankSup":0,"ScoreSup":0,"RankTotal":222,"ScoreTotal":27527,"ID":965,"Name":"Kamilanie Gora","Tag":"KG","NumMembers":1,"NumVillages":0,"Points":1878,"AllPoints":1878,"Rank":179,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=965","BestRank":179,"BestRankAt":"2023-02-26T08:03:35.807165Z","MostPoints":1878,"MostPointsAt":"2023-02-26T08:03:35.807166Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379508Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":49,"ScoreAtt":702186,"RankDef":82,"ScoreDef":1684724,"RankSup":0,"ScoreSup":0,"RankTotal":74,"ScoreTotal":2543700,"ID":989,"Name":"KOMORNICYX","Tag":"KOMX","NumMembers":2,"NumVillages":1,"Points":9905,"AllPoints":9905,"Rank":124,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=989","BestRank":124,"BestRankAt":"2023-02-26T08:03:35.807167Z","MostPoints":9905,"MostPointsAt":"2023-02-26T08:03:28.379509Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379509Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":104,"ScoreAtt":99680,"RankDef":128,"ScoreDef":393721,"RankSup":0,"ScoreSup":0,"RankTotal":129,"ScoreTotal":500661,"ID":991,"Name":"Ordo Theutonicorum","Tag":"OT","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":266,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=991","BestRank":266,"BestRankAt":"2023-02-26T08:03:35.807169Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379509Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379509Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":46,"ScoreAtt":869386,"RankDef":29,"ScoreDef":11625728,"RankSup":0,"ScoreSup":0,"RankTotal":32,"ScoreTotal":14775879,"ID":1023,"Name":"AWANGARDA","Tag":".)A(.","NumMembers":3,"NumVillages":14,"Points":53881,"AllPoints":53881,"Rank":69,"Dominance":0.02447980416156671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1023","BestRank":69,"BestRankAt":"2023-02-26T08:03:28.379513Z","MostPoints":55248,"MostPointsAt":"2023-02-26T08:03:28.379513Z","MostVillages":15,"MostVillagesAt":"2023-02-26T08:03:28.379513Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379677Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":13,"ScoreAtt":10258911,"RankDef":9,"ScoreDef":60773093,"RankSup":0,"ScoreSup":0,"RankTotal":13,"ScoreTotal":85035694,"ID":1039,"Name":"IMPERIUM ++","Tag":":+:","NumMembers":11,"NumVillages":107,"Points":569479,"AllPoints":569479,"Rank":30,"Dominance":0.18709564609197413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1039","BestRank":30,"BestRankAt":"2023-02-26T08:03:28.379513Z","MostPoints":569479,"MostPointsAt":"2023-02-26T08:03:35.807172Z","MostVillages":107,"MostVillagesAt":"2023-02-26T08:03:28.379514Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379678Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":36,"ScoreAtt":1922517,"RankDef":36,"ScoreDef":6807047,"RankSup":0,"ScoreSup":0,"RankTotal":36,"ScoreTotal":11104753,"ID":1040,"Name":"We Are Ready!","Tag":"WAR!","NumMembers":2,"NumVillages":3,"Points":18048,"AllPoints":18048,"Rank":106,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1040","BestRank":106,"BestRankAt":"2023-02-26T08:03:35.807174Z","MostPoints":18048,"MostPointsAt":"2023-02-26T08:03:28.379514Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379514Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37968Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":51,"ScoreAtt":664412,"RankDef":40,"ScoreDef":6131889,"RankSup":0,"ScoreSup":0,"RankTotal":44,"ScoreTotal":7076030,"ID":1052,"Name":"Gachi Frens","Tag":"-=GF=-","NumMembers":11,"NumVillages":28,"Points":141286,"AllPoints":141286,"Rank":51,"Dominance":0.04895960832313342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1052","BestRank":51,"BestRankAt":"2023-02-26T08:03:28.379514Z","MostPoints":141286,"MostPointsAt":"2023-02-26T08:03:35.807176Z","MostVillages":29,"MostVillagesAt":"2023-02-26T08:03:28.379515Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":124,"ScoreAtt":44295,"RankDef":100,"ScoreDef":811470,"RankSup":0,"ScoreSup":0,"RankTotal":108,"ScoreTotal":863124,"ID":1058,"Name":"PowaĆŒneUgrupowanieByƂychGraczy","Tag":"PUBG","NumMembers":1,"NumVillages":1,"Points":10021,"AllPoints":10021,"Rank":123,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1058","BestRank":123,"BestRankAt":"2023-02-26T08:03:35.807177Z","MostPoints":10021,"MostPointsAt":"2023-02-26T08:03:28.379515Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379515Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":84,"ScoreAtt":182039,"RankDef":68,"ScoreDef":2218970,"RankSup":0,"ScoreSup":0,"RankTotal":58,"ScoreTotal":3828584,"ID":1079,"Name":"Rycerze Czerwonego Tartanu","Tag":"RCT","NumMembers":6,"NumVillages":56,"Points":374051,"AllPoints":374051,"Rank":37,"Dominance":0.09791921664626684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1079","BestRank":37,"BestRankAt":"2023-02-26T08:03:28.379515Z","MostPoints":374051,"MostPointsAt":"2023-02-26T08:03:35.807179Z","MostVillages":56,"MostVillagesAt":"2023-02-26T08:03:28.379516Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":134,"ScoreAtt":36721,"RankDef":104,"ScoreDef":752682,"RankSup":0,"ScoreSup":0,"RankTotal":110,"ScoreTotal":792047,"ID":1096,"Name":"DNR F","Tag":"ACHTUN","NumMembers":4,"NumVillages":7,"Points":39593,"AllPoints":39593,"Rank":81,"Dominance":0.012239902080783354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1096","BestRank":81,"BestRankAt":"2023-02-26T08:03:28.379516Z","MostPoints":39593,"MostPointsAt":"2023-02-26T08:03:35.80718Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379516Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":30,"ScoreAtt":2998016,"RankDef":26,"ScoreDef":13489103,"RankSup":0,"ScoreSup":0,"RankTotal":28,"ScoreTotal":17765763,"ID":1108,"Name":"K0MORNICY4","Tag":"KOM4","NumMembers":12,"NumVillages":68,"Points":334647,"AllPoints":334647,"Rank":40,"Dominance":0.11890190592760971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1108","BestRank":40,"BestRankAt":"2023-02-26T08:03:28.379516Z","MostPoints":334647,"MostPointsAt":"2023-02-26T08:03:35.807182Z","MostVillages":68,"MostVillagesAt":"2023-02-26T08:03:28.379516Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":135,"ScoreAtt":35542,"RankDef":192,"ScoreDef":48333,"RankSup":0,"ScoreSup":0,"RankTotal":183,"ScoreTotal":83875,"ID":1127,"Name":"BLOCKCHAIN","Tag":"CRYPTO","NumMembers":1,"NumVillages":8,"Points":50239,"AllPoints":50239,"Rank":72,"Dominance":0.013988459520895261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1127","BestRank":72,"BestRankAt":"2023-02-26T08:03:28.379517Z","MostPoints":50239,"MostPointsAt":"2023-02-26T08:03:35.807184Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379517Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":18,"ScoreAtt":7828246,"RankDef":10,"ScoreDef":54959104,"RankSup":0,"ScoreSup":0,"RankTotal":15,"ScoreTotal":66590221,"ID":1128,"Name":"Nazwa będzie wkrĂłtce","Tag":"NBW","NumMembers":16,"NumVillages":80,"Points":415954,"AllPoints":415954,"Rank":34,"Dominance":0.1398845952089526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1128","BestRank":33,"BestRankAt":"2023-02-26T08:03:28.379517Z","MostPoints":416408,"MostPointsAt":"2023-02-26T08:03:28.379518Z","MostVillages":81,"MostVillagesAt":"2023-02-26T08:03:28.379517Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":21,"ScoreAtt":6065875,"RankDef":123,"ScoreDef":443639,"RankSup":0,"ScoreSup":0,"RankTotal":48,"ScoreTotal":6606194,"ID":1140,"Name":"0.7 zgƂoƛ się","Tag":"POLEJ","NumMembers":8,"NumVillages":135,"Points":1020829,"AllPoints":1020829,"Rank":24,"Dominance":0.23605525441510755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1140","BestRank":24,"BestRankAt":"2023-02-26T08:03:28.379518Z","MostPoints":1020829,"MostPointsAt":"2023-02-26T08:03:35.807187Z","MostVillages":135,"MostVillagesAt":"2023-02-26T08:03:28.379518Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":42,"ScoreAtt":1223288,"RankDef":41,"ScoreDef":5970530,"RankSup":0,"ScoreSup":0,"RankTotal":39,"ScoreTotal":8067345,"ID":1148,"Name":"HELLGATE","Tag":"*HG*","NumMembers":9,"NumVillages":61,"Points":237863,"AllPoints":237863,"Rank":45,"Dominance":0.10666200384682636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1148","BestRank":45,"BestRankAt":"2023-02-26T08:03:28.379518Z","MostPoints":237863,"MostPointsAt":"2023-02-26T08:03:35.807188Z","MostVillages":61,"MostVillagesAt":"2023-02-26T08:03:28.379518Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":120,"ScoreAtt":59985,"RankDef":121,"ScoreDef":473253,"RankSup":0,"ScoreSup":0,"RankTotal":100,"ScoreTotal":996140,"ID":1161,"Name":"OseƂka","Tag":"OS.","NumMembers":1,"NumVillages":2,"Points":13553,"AllPoints":13553,"Rank":117,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1161","BestRank":117,"BestRankAt":"2023-02-26T08:03:35.807189Z","MostPoints":13553,"MostPointsAt":"2023-02-26T08:03:35.80719Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379519Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":139,"ScoreAtt":28985,"RankDef":193,"ScoreDef":47907,"RankSup":0,"ScoreSup":0,"RankTotal":187,"ScoreTotal":77166,"ID":1163,"Name":"Kl8F","Tag":"Klasa8","NumMembers":2,"NumVillages":2,"Points":12795,"AllPoints":12795,"Rank":118,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1163","BestRank":118,"BestRankAt":"2023-02-26T08:03:35.807191Z","MostPoints":12795,"MostPointsAt":"2023-02-26T08:03:35.807192Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.37952Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379681Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":194,"ScoreAtt":365,"RankDef":221,"ScoreDef":11063,"RankSup":0,"ScoreSup":0,"RankTotal":234,"ScoreTotal":11428,"ID":1166,"Name":"Dybuk","Tag":"Dybuk","NumMembers":1,"NumVillages":3,"Points":19291,"AllPoints":19291,"Rank":102,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1166","BestRank":102,"BestRankAt":"2023-02-26T08:03:35.807193Z","MostPoints":19291,"MostPointsAt":"2023-02-26T08:03:35.807194Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37952Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":169,"ScoreAtt":6131,"RankDef":216,"ScoreDef":19000,"RankSup":0,"ScoreSup":0,"RankTotal":221,"ScoreTotal":27655,"ID":1170,"Name":"Nono","Tag":"Nnn","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":267,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1170","BestRank":267,"BestRankAt":"2023-02-26T08:03:35.807195Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379524Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379524Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":82,"ScoreAtt":200678,"RankDef":110,"ScoreDef":635798,"RankSup":0,"ScoreSup":0,"RankTotal":106,"ScoreTotal":886014,"ID":1209,"Name":"Komandosi na 5","Tag":"KOM5","NumMembers":2,"NumVillages":5,"Points":20529,"AllPoints":20529,"Rank":99,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1209","BestRank":99,"BestRankAt":"2023-02-26T08:03:35.807196Z","MostPoints":20529,"MostPointsAt":"2023-02-26T08:03:28.379524Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379524Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":26,"ScoreAtt":4252645,"RankDef":43,"ScoreDef":5653666,"RankSup":0,"ScoreSup":0,"RankTotal":37,"ScoreTotal":10190721,"ID":1226,"Name":"Cartel TW","Tag":"Cartel","NumMembers":40,"NumVillages":477,"Points":3232718,"AllPoints":3232718,"Rank":14,"Dominance":0.83406189893338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1226","BestRank":14,"BestRankAt":"2023-02-26T08:03:28.379525Z","MostPoints":3232718,"MostPointsAt":"2023-02-26T08:03:35.807199Z","MostVillages":477,"MostVillagesAt":"2023-02-26T08:03:35.807198Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":86,"ScoreAtt":171874,"RankDef":52,"ScoreDef":3588148,"RankSup":0,"ScoreSup":0,"RankTotal":57,"ScoreTotal":3875472,"ID":1232,"Name":"Braty i Kompany","Tag":"BiK","NumMembers":4,"NumVillages":4,"Points":1437,"AllPoints":1437,"Rank":187,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1232","BestRank":187,"BestRankAt":"2023-02-26T08:03:35.8072Z","MostPoints":1437,"MostPointsAt":"2023-02-26T08:03:35.8072Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379525Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":178,"ScoreDef":66890,"RankSup":0,"ScoreSup":0,"RankTotal":192,"ScoreTotal":66890,"ID":1247,"Name":"ĆŒydek natanek","Tag":"qwq","NumMembers":1,"NumVillages":0,"Points":261,"AllPoints":261,"Rank":227,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1247","BestRank":227,"BestRankAt":"2023-02-26T08:03:35.807201Z","MostPoints":261,"MostPointsAt":"2023-02-26T08:03:35.807202Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379526Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":143,"ScoreDef":223069,"RankSup":0,"ScoreSup":0,"RankTotal":153,"ScoreTotal":223069,"ID":1258,"Name":"Bum!","Tag":"Bum!","NumMembers":1,"NumVillages":0,"Points":128,"AllPoints":128,"Rank":240,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1258","BestRank":240,"BestRankAt":"2023-02-26T08:03:35.807203Z","MostPoints":128,"MostPointsAt":"2023-02-26T08:03:28.379526Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379526Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":167,"ScoreAtt":6589,"RankDef":229,"ScoreDef":6352,"RankSup":0,"ScoreSup":0,"RankTotal":230,"ScoreTotal":13732,"ID":1261,"Name":"Ujazdowcy","Tag":"UJ","NumMembers":1,"NumVillages":2,"Points":6741,"AllPoints":6741,"Rank":141,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1261","BestRank":141,"BestRankAt":"2023-02-26T08:03:35.807205Z","MostPoints":6741,"MostPointsAt":"2023-02-26T08:03:28.379527Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379527Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":63,"ScoreAtt":394386,"RankDef":235,"ScoreDef":4979,"RankSup":0,"ScoreSup":0,"RankTotal":137,"ScoreTotal":399365,"ID":1275,"Name":"CSA-ATAK","Tag":"CSA-AT","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":250,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1275","BestRank":250,"BestRankAt":"2023-02-26T08:03:35.807206Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379527Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379527Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":148,"ScoreAtt":19193,"RankDef":122,"ScoreDef":462546,"RankSup":0,"ScoreSup":0,"RankTotal":130,"ScoreTotal":481948,"ID":1278,"Name":"Waffen-SS","Tag":"W-SS","NumMembers":1,"NumVillages":3,"Points":7237,"AllPoints":7237,"Rank":139,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1278","BestRank":139,"BestRankAt":"2023-02-26T08:03:35.807208Z","MostPoints":7237,"MostPointsAt":"2023-02-26T08:03:35.807208Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379528Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":66,"ScoreAtt":351864,"RankDef":50,"ScoreDef":3808642,"RankSup":0,"ScoreSup":0,"RankTotal":53,"ScoreTotal":4834337,"ID":1293,"Name":"youll never walk alone","Tag":"ynwa","NumMembers":11,"NumVillages":50,"Points":302223,"AllPoints":302223,"Rank":41,"Dominance":0.08742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1293","BestRank":41,"BestRankAt":"2023-02-26T08:03:28.379528Z","MostPoints":302223,"MostPointsAt":"2023-02-26T08:03:35.80721Z","MostVillages":50,"MostVillagesAt":"2023-02-26T08:03:28.379528Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379685Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":53,"ScoreAtt":641730,"RankDef":84,"ScoreDef":1606187,"RankSup":0,"ScoreSup":0,"RankTotal":76,"ScoreTotal":2363357,"ID":1312,"Name":"Purpurowi Zegarmistrze ƚwiatƂa","Tag":"ZEGARY","NumMembers":46,"NumVillages":185,"Points":707516,"AllPoints":708850,"Rank":28,"Dominance":0.3234831264207029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1312","BestRank":28,"BestRankAt":"2023-02-26T08:03:28.379529Z","MostPoints":708850,"MostPointsAt":"2023-02-26T08:03:35.807212Z","MostVillages":186,"MostVillagesAt":"2023-02-26T08:03:28.379529Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":206,"ScoreAtt":42,"RankDef":195,"ScoreDef":46103,"RankSup":0,"ScoreSup":0,"RankTotal":204,"ScoreTotal":46145,"ID":1317,"Name":"1edc","Tag":"1edc","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":251,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1317","BestRank":251,"BestRankAt":"2023-02-26T08:03:35.807213Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379529Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379529Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379686Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":170,"ScoreAtt":5757,"RankDef":149,"ScoreDef":191510,"RankSup":0,"ScoreSup":0,"RankTotal":160,"ScoreTotal":197267,"ID":1333,"Name":"Grupa Wsparcia AmatorĂłw","Tag":"GWA","NumMembers":1,"NumVillages":0,"Points":814,"AllPoints":814,"Rank":200,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1333","BestRank":200,"BestRankAt":"2023-02-26T08:03:35.807214Z","MostPoints":814,"MostPointsAt":"2023-02-26T08:03:35.807215Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37953Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":28,"ScoreAtt":3120017,"RankDef":25,"ScoreDef":15231713,"RankSup":0,"ScoreSup":0,"RankTotal":26,"ScoreTotal":20414438,"ID":1336,"Name":"Scandi Power","Tag":"SCP","NumMembers":21,"NumVillages":266,"Points":1529373,"AllPoints":1529373,"Rank":19,"Dominance":0.46511627906976744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1336","BestRank":18,"BestRankAt":"2023-02-26T08:03:28.37953Z","MostPoints":1529373,"MostPointsAt":"2023-02-26T08:03:35.807217Z","MostVillages":266,"MostVillagesAt":"2023-02-26T08:03:28.37953Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":167,"ScoreDef":113618,"RankSup":0,"ScoreSup":0,"RankTotal":177,"ScoreTotal":113620,"ID":1338,"Name":"weee","Tag":"wg","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":268,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1338","BestRank":268,"BestRankAt":"2023-02-26T08:03:35.807218Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379531Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379531Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":211,"ScoreAtt":15,"RankDef":165,"ScoreDef":125244,"RankSup":0,"ScoreSup":0,"RankTotal":176,"ScoreTotal":125259,"ID":1347,"Name":"BezCov","Tag":"B-C","NumMembers":3,"NumVillages":2,"Points":1827,"AllPoints":1827,"Rank":181,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1347","BestRank":139,"BestRankAt":"2023-02-26T08:03:28.379534Z","MostPoints":7308,"MostPointsAt":"2023-02-26T08:03:28.379535Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379534Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":140,"ScoreAtt":26793,"RankDef":147,"ScoreDef":197411,"RankSup":0,"ScoreSup":0,"RankTotal":152,"ScoreTotal":224264,"ID":1357,"Name":"J. B. B....","Tag":"JBB;/","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":269,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1357","BestRank":269,"BestRankAt":"2023-02-26T08:03:35.807221Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379535Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379535Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":93,"ScoreAtt":149732,"RankDef":91,"ScoreDef":1114375,"RankSup":0,"ScoreSup":0,"RankTotal":93,"ScoreTotal":1288589,"ID":1368,"Name":"Elitarny Legion","Tag":"ELITA","NumMembers":2,"NumVillages":18,"Points":68427,"AllPoints":68427,"Rank":64,"Dominance":0.03147403392201434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1368","BestRank":64,"BestRankAt":"2023-02-26T08:03:28.379535Z","MostPoints":68427,"MostPointsAt":"2023-02-26T08:03:28.379536Z","MostVillages":18,"MostVillagesAt":"2023-02-26T08:03:28.379535Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":178,"ScoreAtt":3874,"RankDef":181,"ScoreDef":64564,"RankSup":0,"ScoreSup":0,"RankTotal":191,"ScoreTotal":68452,"ID":1372,"Name":"WIDMO","Tag":"WIDMO","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":270,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1372","BestRank":270,"BestRankAt":"2023-02-26T08:03:35.807224Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379536Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379536Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":47,"ScoreAtt":783132,"RankDef":42,"ScoreDef":5740497,"RankSup":0,"ScoreSup":0,"RankTotal":47,"ScoreTotal":6847914,"ID":1376,"Name":"Wojna Idei P","Tag":"WDP","NumMembers":1,"NumVillages":1,"Points":628,"AllPoints":628,"Rank":208,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1376","BestRank":208,"BestRankAt":"2023-02-26T08:03:35.807226Z","MostPoints":628,"MostPointsAt":"2023-02-26T08:03:28.379537Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379536Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":190,"ScoreDef":51599,"RankSup":0,"ScoreSup":0,"RankTotal":201,"ScoreTotal":51601,"ID":1389,"Name":"dfbdfbd","Tag":"db","NumMembers":1,"NumVillages":0,"Points":4958,"AllPoints":4958,"Rank":153,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1389","BestRank":153,"BestRankAt":"2023-02-26T08:03:35.807227Z","MostPoints":4958,"MostPointsAt":"2023-02-26T08:03:35.807228Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379537Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":121,"ScoreAtt":57170,"RankDef":97,"ScoreDef":860657,"RankSup":0,"ScoreSup":0,"RankTotal":102,"ScoreTotal":992741,"ID":1399,"Name":"BojkĂłw","Tag":"_B_","NumMembers":3,"NumVillages":6,"Points":36117,"AllPoints":36117,"Rank":83,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1399","BestRank":83,"BestRankAt":"2023-02-26T08:03:28.379537Z","MostPoints":36117,"MostPointsAt":"2023-02-26T08:03:35.807229Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379537Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":22,"ScoreAtt":5712715,"RankDef":14,"ScoreDef":37052780,"RankSup":0,"ScoreSup":0,"RankTotal":19,"ScoreTotal":47947434,"ID":1411,"Name":"HURAGAN","Tag":"Tajfun","NumMembers":28,"NumVillages":255,"Points":1414392,"AllPoints":1414392,"Rank":20,"Dominance":0.4458821472285364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1411","BestRank":20,"BestRankAt":"2023-02-26T08:03:28.379538Z","MostPoints":1414392,"MostPointsAt":"2023-02-26T08:03:35.807231Z","MostVillages":257,"MostVillagesAt":"2023-02-26T08:03:28.379538Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379689Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":156,"ScoreAtt":10013,"RankDef":146,"ScoreDef":204671,"RankSup":0,"ScoreSup":0,"RankTotal":157,"ScoreTotal":214684,"ID":1416,"Name":"ZƂodzieje PrzyszƂoƛci","Tag":"=ZP=","NumMembers":1,"NumVillages":1,"Points":1857,"AllPoints":1857,"Rank":180,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1416","BestRank":180,"BestRankAt":"2023-02-26T08:03:35.807232Z","MostPoints":1857,"MostPointsAt":"2023-02-26T08:03:28.379538Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379538Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37969Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":64,"ScoreAtt":364951,"RankDef":80,"ScoreDef":1755743,"RankSup":0,"ScoreSup":0,"RankTotal":69,"ScoreTotal":2914447,"ID":1418,"Name":"Plemię Rodu Smoka","Tag":"PRS","NumMembers":3,"NumVillages":22,"Points":174240,"AllPoints":174240,"Rank":48,"Dominance":0.03846826368246197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1418","BestRank":48,"BestRankAt":"2023-02-26T08:03:28.379539Z","MostPoints":174240,"MostPointsAt":"2023-02-26T08:03:35.807234Z","MostVillages":22,"MostVillagesAt":"2023-02-26T08:03:28.379539Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":180,"ScoreAtt":3128,"RankDef":202,"ScoreDef":32137,"RankSup":0,"ScoreSup":0,"RankTotal":210,"ScoreTotal":35273,"ID":1421,"Name":"Dla fanu pykamy","Tag":"DFP","NumMembers":1,"NumVillages":0,"Points":1674,"AllPoints":1674,"Rank":184,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1421","BestRank":184,"BestRankAt":"2023-02-26T08:03:28.379539Z","MostPoints":1674,"MostPointsAt":"2023-02-26T08:03:35.807236Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379539Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":114,"ScoreAtt":70186,"RankDef":127,"ScoreDef":401050,"RankSup":0,"ScoreSup":0,"RankTotal":133,"ScoreTotal":471241,"ID":1423,"Name":"Grupa Armii ƚrodek","Tag":"ƚrodek","NumMembers":2,"NumVillages":11,"Points":52902,"AllPoints":52902,"Rank":70,"Dominance":0.019234131841230986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1423","BestRank":70,"BestRankAt":"2023-02-26T08:03:28.37954Z","MostPoints":52902,"MostPointsAt":"2023-02-26T08:03:35.807237Z","MostVillages":11,"MostVillagesAt":"2023-02-26T08:03:28.37954Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379692Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":54,"ScoreAtt":610324,"RankDef":223,"ScoreDef":9859,"RankSup":0,"ScoreSup":0,"RankTotal":121,"ScoreTotal":630185,"ID":1428,"Name":"Wodne zwierzaczki","Tag":"WZ","NumMembers":1,"NumVillages":3,"Points":17761,"AllPoints":17761,"Rank":107,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1428","BestRank":107,"BestRankAt":"2023-02-26T08:03:35.807238Z","MostPoints":17761,"MostPointsAt":"2023-02-26T08:03:28.37954Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37954Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":163,"ScoreAtt":7530,"RankDef":114,"ScoreDef":587311,"RankSup":0,"ScoreSup":0,"RankTotal":123,"ScoreTotal":594841,"ID":1431,"Name":"Amanita Muscaria","Tag":"A-M","NumMembers":3,"NumVillages":2,"Points":1513,"AllPoints":1513,"Rank":186,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1431","BestRank":186,"BestRankAt":"2023-02-26T08:03:35.80724Z","MostPoints":1513,"MostPointsAt":"2023-02-26T08:03:35.807241Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379541Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":115,"ScoreAtt":67981,"RankDef":108,"ScoreDef":665488,"RankSup":0,"ScoreSup":0,"RankTotal":113,"ScoreTotal":733473,"ID":1432,"Name":"Nasze Plemie","Tag":"ABW","NumMembers":1,"NumVillages":1,"Points":1675,"AllPoints":1675,"Rank":183,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1432","BestRank":183,"BestRankAt":"2023-02-26T08:03:35.807242Z","MostPoints":1675,"MostPointsAt":"2023-02-26T08:03:35.807242Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379541Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":98,"ScoreAtt":132845,"RankDef":219,"ScoreDef":16361,"RankSup":0,"ScoreSup":0,"RankTotal":169,"ScoreTotal":149206,"ID":1448,"Name":"myself","Tag":"=Mf=","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":271,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1448","BestRank":271,"BestRankAt":"2023-02-26T08:03:35.807244Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379547Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379547Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":154,"ScoreAtt":11762,"RankDef":102,"ScoreDef":769792,"RankSup":0,"ScoreSup":0,"RankTotal":111,"ScoreTotal":785196,"ID":1456,"Name":"1-2-0","Tag":"1x2","NumMembers":2,"NumVillages":2,"Points":10863,"AllPoints":10863,"Rank":121,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1456","BestRank":121,"BestRankAt":"2023-02-26T08:03:35.807245Z","MostPoints":10863,"MostPointsAt":"2023-02-26T08:03:28.379548Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379548Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":250,"ScoreDef":381,"RankSup":0,"ScoreSup":0,"RankTotal":255,"ScoreTotal":381,"ID":1460,"Name":"bobertos","Tag":"ZIOM","NumMembers":2,"NumVillages":1,"Points":200,"AllPoints":200,"Rank":230,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1460","BestRank":230,"BestRankAt":"2023-02-26T08:03:35.807247Z","MostPoints":200,"MostPointsAt":"2023-02-26T08:03:28.379548Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379548Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":103,"ScoreAtt":101232,"RankDef":88,"ScoreDef":1198208,"RankSup":0,"ScoreSup":0,"RankTotal":88,"ScoreTotal":1450455,"ID":1466,"Name":"GREEN STREET HOOLIGANS","Tag":"GSH","NumMembers":7,"NumVillages":20,"Points":113693,"AllPoints":113693,"Rank":54,"Dominance":0.03497114880223815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1466","BestRank":54,"BestRankAt":"2023-02-26T08:03:28.379548Z","MostPoints":113693,"MostPointsAt":"2023-02-26T08:03:35.807249Z","MostVillages":20,"MostVillagesAt":"2023-02-26T08:03:28.379549Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":57,"ScoreAtt":507857,"RankDef":215,"ScoreDef":20287,"RankSup":0,"ScoreSup":0,"RankTotal":127,"ScoreTotal":528181,"ID":1470,"Name":"SunnyValley","Tag":"SV","NumMembers":1,"NumVillages":6,"Points":45642,"AllPoints":45642,"Rank":76,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1470","BestRank":75,"BestRankAt":"2023-02-26T08:03:28.379549Z","MostPoints":45642,"MostPointsAt":"2023-02-26T08:03:28.379549Z","MostVillages":6,"MostVillagesAt":"2023-02-26T08:03:28.379549Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":192,"ScoreAtt":375,"RankDef":131,"ScoreDef":358617,"RankSup":0,"ScoreSup":0,"RankTotal":142,"ScoreTotal":358992,"ID":1477,"Name":"Do koƄca!","Tag":"DK!","NumMembers":1,"NumVillages":1,"Points":360,"AllPoints":360,"Rank":219,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1477","BestRank":219,"BestRankAt":"2023-02-26T08:03:35.807252Z","MostPoints":360,"MostPointsAt":"2023-02-26T08:03:35.807252Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37955Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":19,"ScoreAtt":7187879,"RankDef":23,"ScoreDef":17353003,"RankSup":0,"ScoreSup":0,"RankTotal":24,"ScoreTotal":26541802,"ID":1480,"Name":"KUZYN X","Tag":"KUZYN?","NumMembers":15,"NumVillages":331,"Points":1765223,"AllPoints":1765223,"Rank":17,"Dominance":0.5787725126770414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1480","BestRank":17,"BestRankAt":"2023-02-26T08:03:35.807253Z","MostPoints":1765223,"MostPointsAt":"2023-02-26T08:03:35.807254Z","MostVillages":331,"MostVillagesAt":"2023-02-26T08:03:35.807254Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379693Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":87,"ScoreAtt":171122,"RankDef":79,"ScoreDef":1762582,"RankSup":0,"ScoreSup":0,"RankTotal":80,"ScoreTotal":2062188,"ID":1483,"Name":"Afrika Korps","Tag":"AK","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":272,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1483","BestRank":272,"BestRankAt":"2023-02-26T08:03:35.807255Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379551Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379551Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":212,"ScoreDef":22040,"RankSup":0,"ScoreSup":0,"RankTotal":226,"ScoreTotal":22060,"ID":1484,"Name":"INVISIBLE","Tag":"IV","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":252,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1484","BestRank":252,"BestRankAt":"2023-02-26T08:03:35.807257Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379551Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379551Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":166,"ScoreAtt":7195,"RankDef":211,"ScoreDef":23237,"RankSup":0,"ScoreSup":0,"RankTotal":216,"ScoreTotal":30432,"ID":1494,"Name":"Wioska Matrix9105@","Tag":"Matrix","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":273,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1494","BestRank":273,"BestRankAt":"2023-02-26T08:03:35.807258Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379552Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379552Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":210,"ScoreAtt":19,"RankDef":163,"ScoreDef":126061,"RankSup":0,"ScoreSup":0,"RankTotal":175,"ScoreTotal":126080,"ID":1498,"Name":"Kokoko","Tag":"KKK7","NumMembers":1,"NumVillages":0,"Points":2870,"AllPoints":2870,"Rank":168,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1498","BestRank":168,"BestRankAt":"2023-02-26T08:03:35.80726Z","MostPoints":2870,"MostPointsAt":"2023-02-26T08:03:35.80726Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379552Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379696Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":14,"ScoreAtt":9704033,"RankDef":6,"ScoreDef":92201588,"RankSup":0,"ScoreSup":0,"RankTotal":9,"ScoreTotal":117452472,"ID":1523,"Name":"Ty i Twoje orzeszki","Tag":"T.T","NumMembers":26,"NumVillages":115,"Points":655456,"AllPoints":655456,"Rank":29,"Dominance":0.20108410561286938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1523","BestRank":29,"BestRankAt":"2023-02-26T08:03:28.379552Z","MostPoints":655456,"MostPointsAt":"2023-02-26T08:03:35.807262Z","MostVillages":115,"MostVillagesAt":"2023-02-26T08:03:28.379553Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":176,"ScoreAtt":4100,"RankDef":184,"ScoreDef":60390,"RankSup":0,"ScoreSup":0,"RankTotal":185,"ScoreTotal":81749,"ID":1526,"Name":"Polanie","Tag":"Polani","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":274,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1526","BestRank":274,"BestRankAt":"2023-02-26T08:03:35.807263Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379553Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379553Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":59,"ScoreAtt":476359,"RankDef":46,"ScoreDef":5076313,"RankSup":0,"ScoreSup":0,"RankTotal":51,"ScoreTotal":5769388,"ID":1528,"Name":"NieZniszczalni.","Tag":"NZ","NumMembers":3,"NumVillages":3,"Points":2617,"AllPoints":2617,"Rank":171,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1528","BestRank":171,"BestRankAt":"2023-02-26T08:03:35.807265Z","MostPoints":2617,"MostPointsAt":"2023-02-26T08:03:28.379554Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379554Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":133,"ScoreAtt":36737,"RankDef":94,"ScoreDef":1014380,"RankSup":0,"ScoreSup":0,"RankTotal":99,"ScoreTotal":1117026,"ID":1530,"Name":"SƁOWIANIE","Tag":"SƁOWO","NumMembers":3,"NumVillages":3,"Points":6555,"AllPoints":6555,"Rank":142,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1530","BestRank":142,"BestRankAt":"2023-02-26T08:03:35.807266Z","MostPoints":6555,"MostPointsAt":"2023-02-26T08:03:35.807267Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379554Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":161,"ScoreAtt":7897,"RankDef":197,"ScoreDef":44982,"RankSup":0,"ScoreSup":0,"RankTotal":199,"ScoreTotal":52879,"ID":1535,"Name":"The Gorillas","Tag":"GOR","NumMembers":2,"NumVillages":26,"Points":142004,"AllPoints":142004,"Rank":50,"Dominance":0.0454624934429096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1535","BestRank":50,"BestRankAt":"2023-02-26T08:03:28.379558Z","MostPoints":142006,"MostPointsAt":"2023-02-26T08:03:28.379558Z","MostVillages":26,"MostVillagesAt":"2023-02-26T08:03:28.379558Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":242,"ScoreDef":3192,"RankSup":0,"ScoreSup":0,"RankTotal":249,"ScoreTotal":3192,"ID":1538,"Name":"Ho no tu","Tag":"SOO","NumMembers":1,"NumVillages":2,"Points":7382,"AllPoints":7382,"Rank":138,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1538","BestRank":137,"BestRankAt":"2023-02-26T08:03:28.379558Z","MostPoints":7382,"MostPointsAt":"2023-02-26T08:03:28.379559Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379559Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":109,"ScoreAtt":86090,"RankDef":139,"ScoreDef":283986,"RankSup":0,"ScoreSup":0,"RankTotal":138,"ScoreTotal":395786,"ID":1551,"Name":"Siewca Wiatru","Tag":"~SW~","NumMembers":7,"NumVillages":14,"Points":49245,"AllPoints":49245,"Rank":73,"Dominance":0.02447980416156671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1551","BestRank":73,"BestRankAt":"2023-02-26T08:03:35.807271Z","MostPoints":49245,"MostPointsAt":"2023-02-26T08:03:35.807272Z","MostVillages":14,"MostVillagesAt":"2023-02-26T08:03:28.379559Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379697Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":195,"ScoreAtt":326,"RankDef":185,"ScoreDef":56269,"RankSup":0,"ScoreSup":0,"RankTotal":196,"ScoreTotal":56642,"ID":1573,"Name":"DUCHY","Tag":"DUCH","NumMembers":11,"NumVillages":10,"Points":9541,"AllPoints":9541,"Rank":127,"Dominance":0.017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1573","BestRank":127,"BestRankAt":"2023-02-26T08:03:35.807273Z","MostPoints":9541,"MostPointsAt":"2023-02-26T08:03:35.807273Z","MostVillages":10,"MostVillagesAt":"2023-02-26T08:03:28.37956Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379698Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":202,"ScoreAtt":55,"RankDef":239,"ScoreDef":3932,"RankSup":0,"ScoreSup":0,"RankTotal":247,"ScoreTotal":3987,"ID":1582,"Name":"CaƂe Ć»ycie z Wariatami","Tag":"WARIAT","NumMembers":1,"NumVillages":1,"Points":8160,"AllPoints":8160,"Rank":132,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1582","BestRank":132,"BestRankAt":"2023-02-26T08:03:35.807275Z","MostPoints":8160,"MostPointsAt":"2023-02-26T08:03:35.807275Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37956Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.3797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":198,"ScoreAtt":281,"RankDef":220,"ScoreDef":13591,"RankSup":0,"ScoreSup":0,"RankTotal":229,"ScoreTotal":13876,"ID":1585,"Name":"SAM WE MƁYNIE","Tag":"SWM","NumMembers":1,"NumVillages":0,"Points":744,"AllPoints":744,"Rank":203,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1585","BestRank":203,"BestRankAt":"2023-02-26T08:03:35.807276Z","MostPoints":744,"MostPointsAt":"2023-02-26T08:03:35.807277Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379561Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.3797Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":142,"ScoreAtt":25002,"RankDef":228,"ScoreDef":6522,"RankSup":0,"ScoreSup":0,"RankTotal":214,"ScoreTotal":31524,"ID":1588,"Name":"Moment Strategiczny","Tag":"no cĂłĆŒ","NumMembers":1,"NumVillages":12,"Points":59739,"AllPoints":59739,"Rank":67,"Dominance":0.020982689281342892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1588","BestRank":67,"BestRankAt":"2023-02-26T08:03:28.379561Z","MostPoints":59739,"MostPointsAt":"2023-02-26T08:03:28.379561Z","MostVillages":12,"MostVillagesAt":"2023-02-26T08:03:28.379561Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":208,"ScoreDef":26580,"RankSup":0,"ScoreSup":0,"RankTotal":224,"ScoreTotal":26580,"ID":1590,"Name":"Bo od tylu tez jest fajnie","Tag":"Xes","NumMembers":5,"NumVillages":5,"Points":3318,"AllPoints":3318,"Rank":166,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1590","BestRank":166,"BestRankAt":"2023-02-26T08:03:35.80728Z","MostPoints":3318,"MostPointsAt":"2023-02-26T08:03:28.379562Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379562Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":50,"ScoreAtt":699830,"RankDef":53,"ScoreDef":3485788,"RankSup":0,"ScoreSup":0,"RankTotal":54,"ScoreTotal":4762478,"ID":1597,"Name":"Kontra","Tag":"Kontra","NumMembers":42,"NumVillages":181,"Points":807847,"AllPoints":815265,"Rank":27,"Dominance":0.3164888966602553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1597","BestRank":27,"BestRankAt":"2023-02-26T08:03:28.379562Z","MostPoints":815265,"MostPointsAt":"2023-02-26T08:03:35.807282Z","MostVillages":181,"MostVillagesAt":"2023-02-26T08:03:35.807281Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":130,"ScoreAtt":39978,"RankDef":164,"ScoreDef":125295,"RankSup":0,"ScoreSup":0,"RankTotal":166,"ScoreTotal":165273,"ID":1599,"Name":"maƂe ciche do gęsiej szyji","Tag":"mcgs","NumMembers":1,"NumVillages":0,"Points":369,"AllPoints":369,"Rank":217,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1599","BestRank":217,"BestRankAt":"2023-02-26T08:03:35.807283Z","MostPoints":369,"MostPointsAt":"2023-02-26T08:03:35.807284Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379563Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":144,"ScoreAtt":23331,"RankDef":120,"ScoreDef":475515,"RankSup":0,"ScoreSup":0,"RankTotal":109,"ScoreTotal":805496,"ID":1602,"Name":"Uuuu","Tag":"Uuy","NumMembers":1,"NumVillages":1,"Points":3854,"AllPoints":3854,"Rank":163,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1602","BestRank":163,"BestRankAt":"2023-02-26T08:03:28.379563Z","MostPoints":3854,"MostPointsAt":"2023-02-26T08:03:28.379563Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379563Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":204,"ScoreAtt":52,"RankDef":171,"ScoreDef":97442,"RankSup":0,"ScoreSup":0,"RankTotal":180,"ScoreTotal":97494,"ID":1609,"Name":"asdd","Tag":"das","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":275,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1609","BestRank":275,"BestRankAt":"2023-02-26T08:03:35.807286Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379564Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379564Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379701Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":191,"ScoreDef":48607,"RankSup":0,"ScoreSup":0,"RankTotal":202,"ScoreTotal":48607,"ID":1610,"Name":"Kombinat PunkktĂłw Premium","Tag":"KPP","NumMembers":1,"NumVillages":0,"Points":138,"AllPoints":138,"Rank":237,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1610","BestRank":237,"BestRankAt":"2023-02-26T08:03:35.807288Z","MostPoints":138,"MostPointsAt":"2023-02-26T08:03:28.379564Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379564Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":43,"ScoreAtt":1204990,"RankDef":27,"ScoreDef":12298812,"RankSup":0,"ScoreSup":0,"RankTotal":31,"ScoreTotal":16042983,"ID":1621,"Name":"Rolnicy Podlasie","Tag":"RP","NumMembers":11,"NumVillages":186,"Points":1025745,"AllPoints":1025745,"Rank":23,"Dominance":0.3252316838608148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1621","BestRank":23,"BestRankAt":"2023-02-26T08:03:28.379565Z","MostPoints":1025745,"MostPointsAt":"2023-02-26T08:03:35.80729Z","MostVillages":186,"MostVillagesAt":"2023-02-26T08:03:28.379565Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":157,"ScoreAtt":9530,"RankDef":240,"ScoreDef":3909,"RankSup":0,"ScoreSup":0,"RankTotal":231,"ScoreTotal":13439,"ID":1626,"Name":"JazdaZKuramk","Tag":"JZK","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":276,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1626","BestRank":276,"BestRankAt":"2023-02-26T08:03:35.807291Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379565Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379565Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":138,"ScoreAtt":29761,"RankDef":138,"ScoreDef":302691,"RankSup":0,"ScoreSup":0,"RankTotal":143,"ScoreTotal":334012,"ID":1627,"Name":"ANONYMOUSS","Tag":"ANS","NumMembers":15,"NumVillages":43,"Points":114308,"AllPoints":114308,"Rank":53,"Dominance":0.07518796992481204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1627","BestRank":53,"BestRankAt":"2023-02-26T08:03:28.379568Z","MostPoints":114308,"MostPointsAt":"2023-02-26T08:03:35.807293Z","MostVillages":43,"MostVillagesAt":"2023-02-26T08:03:28.379568Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":75,"ScoreAtt":220320,"RankDef":247,"ScoreDef":711,"RankSup":0,"ScoreSup":0,"RankTotal":154,"ScoreTotal":221031,"ID":1636,"Name":"GDZIE SĄ ???","Tag":"MAƁYSZ","NumMembers":1,"NumVillages":1,"Points":4193,"AllPoints":4193,"Rank":158,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1636","BestRank":158,"BestRankAt":"2023-02-26T08:03:35.807294Z","MostPoints":4193,"MostPointsAt":"2023-02-26T08:03:35.807295Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379569Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379702Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":101,"ScoreAtt":107892,"RankDef":113,"ScoreDef":591912,"RankSup":0,"ScoreSup":0,"RankTotal":116,"ScoreTotal":699804,"ID":1638,"Name":"asyy","Tag":"asyy","NumMembers":1,"NumVillages":0,"Points":26,"AllPoints":26,"Rank":253,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1638","BestRank":253,"BestRankAt":"2023-02-26T08:03:35.807296Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.37957Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379569Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":173,"ScoreAtt":4638,"RankDef":251,"ScoreDef":282,"RankSup":0,"ScoreSup":0,"RankTotal":244,"ScoreTotal":4920,"ID":1643,"Name":"1112","Tag":"12","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":277,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1643","BestRank":277,"BestRankAt":"2023-02-26T08:03:35.807298Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.37957Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.37957Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":206,"ScoreDef":28423,"RankSup":0,"ScoreSup":0,"RankTotal":212,"ScoreTotal":33370,"ID":1645,"Name":"Rekontakt","Tag":"REK","NumMembers":2,"NumVillages":3,"Points":8492,"AllPoints":8492,"Rank":130,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1645","BestRank":130,"BestRankAt":"2023-02-26T08:03:35.807299Z","MostPoints":8492,"MostPointsAt":"2023-02-26T08:03:35.8073Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379571Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":45,"ScoreAtt":1091715,"RankDef":148,"ScoreDef":194797,"RankSup":0,"ScoreSup":0,"RankTotal":92,"ScoreTotal":1299521,"ID":1648,"Name":"Aldente","Tag":"Ald","NumMembers":1,"NumVillages":1,"Points":338,"AllPoints":338,"Rank":221,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1648","BestRank":221,"BestRankAt":"2023-02-26T08:03:35.807301Z","MostPoints":338,"MostPointsAt":"2023-02-26T08:03:28.379571Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379571Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":89,"ScoreAtt":166503,"RankDef":72,"ScoreDef":2038539,"RankSup":0,"ScoreSup":0,"RankTotal":73,"ScoreTotal":2577567,"ID":1651,"Name":"Oszukani","Tag":"New","NumMembers":2,"NumVillages":1,"Points":3936,"AllPoints":3936,"Rank":161,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1651","BestRank":161,"BestRankAt":"2023-02-26T08:03:28.379572Z","MostPoints":3936,"MostPointsAt":"2023-02-26T08:03:28.379572Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379572Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":70,"ScoreAtt":258353,"RankDef":243,"ScoreDef":2854,"RankSup":0,"ScoreSup":0,"RankTotal":150,"ScoreTotal":261207,"ID":1652,"Name":"Ɓomocimy","Tag":"Zajęnc","NumMembers":1,"NumVillages":7,"Points":15985,"AllPoints":15985,"Rank":109,"Dominance":0.012239902080783354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1652","BestRank":109,"BestRankAt":"2023-02-26T08:03:35.807304Z","MostPoints":15985,"MostPointsAt":"2023-02-26T08:03:35.807305Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379572Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":185,"ScoreAtt":2129,"RankDef":241,"ScoreDef":3203,"RankSup":0,"ScoreSup":0,"RankTotal":243,"ScoreTotal":5332,"ID":1656,"Name":"Robotniczy Klub Sportowy HUWDU","Tag":"HUWDU","NumMembers":1,"NumVillages":1,"Points":270,"AllPoints":270,"Rank":225,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1656","BestRank":225,"BestRankAt":"2023-02-26T08:03:28.379573Z","MostPoints":270,"MostPointsAt":"2023-02-26T08:03:28.379573Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379573Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":131,"ScoreAtt":38951,"RankDef":155,"ScoreDef":176879,"RankSup":0,"ScoreSup":0,"RankTotal":155,"ScoreTotal":215830,"ID":1657,"Name":"Xyz,","Tag":"Xyz,","NumMembers":1,"NumVillages":0,"Points":513,"AllPoints":513,"Rank":213,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1657","BestRank":213,"BestRankAt":"2023-02-26T08:03:35.807307Z","MostPoints":513,"MostPointsAt":"2023-02-26T08:03:35.807308Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379573Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":158,"ScoreAtt":9237,"RankDef":214,"ScoreDef":21765,"RankSup":0,"ScoreSup":0,"RankTotal":208,"ScoreTotal":36495,"ID":1669,"Name":"Mocny FULL","Tag":"FULL","NumMembers":4,"NumVillages":6,"Points":14440,"AllPoints":14440,"Rank":113,"Dominance":0.010491344640671446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1669","BestRank":105,"BestRankAt":"2023-02-26T08:03:28.379574Z","MostPoints":18721,"MostPointsAt":"2023-02-26T08:03:28.379574Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379574Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":214,"ScoreAtt":1,"RankDef":232,"ScoreDef":5467,"RankSup":0,"ScoreSup":0,"RankTotal":241,"ScoreTotal":5468,"ID":1672,"Name":"MKM.","Tag":"MKM.","NumMembers":1,"NumVillages":2,"Points":9572,"AllPoints":9572,"Rank":126,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1672","BestRank":126,"BestRankAt":"2023-02-26T08:03:28.379574Z","MostPoints":9572,"MostPointsAt":"2023-02-26T08:03:28.379574Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379574Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":88,"ScoreAtt":167187,"RankDef":170,"ScoreDef":97513,"RankSup":0,"ScoreSup":0,"RankTotal":148,"ScoreTotal":267604,"ID":1680,"Name":"Mymu","Tag":"My","NumMembers":2,"NumVillages":4,"Points":27342,"AllPoints":27342,"Rank":89,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1680","BestRank":89,"BestRankAt":"2023-02-26T08:03:28.379575Z","MostPoints":27342,"MostPointsAt":"2023-02-26T08:03:28.379575Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379575Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":143,"ScoreAtt":24465,"RankDef":196,"ScoreDef":45091,"RankSup":0,"ScoreSup":0,"RankTotal":189,"ScoreTotal":69556,"ID":1681,"Name":"fehg","Tag":"wwerj","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":278,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1681","BestRank":278,"BestRankAt":"2023-02-26T08:03:35.807313Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379575Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379575Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379705Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":187,"ScoreAtt":1682,"RankDef":182,"ScoreDef":63279,"RankSup":0,"ScoreSup":0,"RankTotal":194,"ScoreTotal":64961,"ID":1683,"Name":"......","Tag":"FIN","NumMembers":1,"NumVillages":9,"Points":49140,"AllPoints":49140,"Rank":74,"Dominance":0.01573701696100717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1683","BestRank":73,"BestRankAt":"2023-02-26T08:03:28.379576Z","MostPoints":49140,"MostPointsAt":"2023-02-26T08:03:35.807315Z","MostVillages":9,"MostVillagesAt":"2023-02-26T08:03:28.379576Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":186,"ScoreAtt":1713,"RankDef":166,"ScoreDef":117365,"RankSup":0,"ScoreSup":0,"RankTotal":173,"ScoreTotal":137468,"ID":1687,"Name":"SoSKooperacja","Tag":"SoS","NumMembers":7,"NumVillages":7,"Points":15033,"AllPoints":15033,"Rank":112,"Dominance":0.012239902080783354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1687","BestRank":112,"BestRankAt":"2023-02-26T08:03:35.807317Z","MostPoints":15033,"MostPointsAt":"2023-02-26T08:03:35.807317Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.37958Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":218,"ScoreDef":16936,"RankSup":0,"ScoreSup":0,"RankTotal":228,"ScoreTotal":16936,"ID":1690,"Name":"Nieƛmiertelni","Tag":"ookp","NumMembers":1,"NumVillages":1,"Points":2343,"AllPoints":2343,"Rank":175,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1690","BestRank":175,"BestRankAt":"2023-02-26T08:03:35.807318Z","MostPoints":2343,"MostPointsAt":"2023-02-26T08:03:28.379581Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37958Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379708Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":193,"ScoreAtt":370,"RankDef":177,"ScoreDef":73692,"RankSup":0,"ScoreSup":0,"RankTotal":188,"ScoreTotal":74062,"ID":1691,"Name":"Zbieram flagi","Tag":"Zbf","NumMembers":1,"NumVillages":4,"Points":7533,"AllPoints":7533,"Rank":135,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1691","BestRank":135,"BestRankAt":"2023-02-26T08:03:35.80732Z","MostPoints":7533,"MostPointsAt":"2023-02-26T08:03:35.80732Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379581Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":150,"ScoreAtt":17635,"RankDef":255,"ScoreDef":34,"RankSup":0,"ScoreSup":0,"RankTotal":227,"ScoreTotal":17669,"ID":1692,"Name":"Zapraszam chętnych","Tag":"Buuu","NumMembers":1,"NumVillages":1,"Points":5178,"AllPoints":5178,"Rank":150,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1692","BestRank":150,"BestRankAt":"2023-02-26T08:03:35.807322Z","MostPoints":5178,"MostPointsAt":"2023-02-26T08:03:28.379582Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379581Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":116,"ScoreAtt":67818,"RankDef":126,"ScoreDef":428112,"RankSup":0,"ScoreSup":0,"RankTotal":125,"ScoreTotal":575954,"ID":1700,"Name":"Fiku Miku","Tag":"FIUFIU","NumMembers":4,"NumVillages":71,"Points":373191,"AllPoints":373191,"Rank":38,"Dominance":0.12414757824794544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1700","BestRank":38,"BestRankAt":"2023-02-26T08:03:28.379582Z","MostPoints":373191,"MostPointsAt":"2023-02-26T08:03:35.807324Z","MostVillages":71,"MostVillagesAt":"2023-02-26T08:03:35.807323Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":254,"ScoreDef":62,"RankSup":0,"ScoreSup":0,"RankTotal":258,"ScoreTotal":62,"ID":1705,"Name":"Galaktyczna Federacja ƚwiatƂa","Tag":"GF II","NumMembers":1,"NumVillages":1,"Points":1671,"AllPoints":1671,"Rank":185,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1705","BestRank":185,"BestRankAt":"2023-02-26T08:03:35.807325Z","MostPoints":1671,"MostPointsAt":"2023-02-26T08:03:35.807326Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379583Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1707,"Name":"Koniec","Tag":"1234","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":254,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1707","BestRank":254,"BestRankAt":"2023-02-26T08:03:35.807327Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379583Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379583Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":230,"ScoreDef":6260,"RankSup":0,"ScoreSup":0,"RankTotal":239,"ScoreTotal":6946,"ID":1715,"Name":"R-C-","Tag":"RC","NumMembers":1,"NumVillages":2,"Points":5005,"AllPoints":5005,"Rank":152,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1715","BestRank":152,"BestRankAt":"2023-02-26T08:03:35.807328Z","MostPoints":5005,"MostPointsAt":"2023-02-26T08:03:28.379584Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379583Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":56,"ScoreAtt":523524,"RankDef":183,"ScoreDef":61350,"RankSup":0,"ScoreSup":0,"RankTotal":124,"ScoreTotal":584874,"ID":1716,"Name":"KOMORNIKI","Tag":"KOMY","NumMembers":2,"NumVillages":4,"Points":34258,"AllPoints":34258,"Rank":84,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1716","BestRank":84,"BestRankAt":"2023-02-26T08:03:28.379584Z","MostPoints":34258,"MostPointsAt":"2023-02-26T08:03:28.379584Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379584Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":172,"ScoreAtt":4653,"RankDef":224,"ScoreDef":8254,"RankSup":0,"ScoreSup":0,"RankTotal":232,"ScoreTotal":12907,"ID":1721,"Name":"Pocahontas","Tag":"Gg","NumMembers":1,"NumVillages":2,"Points":5770,"AllPoints":5770,"Rank":147,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1721","BestRank":147,"BestRankAt":"2023-02-26T08:03:35.807331Z","MostPoints":5823,"MostPointsAt":"2023-02-26T08:03:28.379585Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379584Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":79,"ScoreAtt":210586,"RankDef":106,"ScoreDef":708479,"RankSup":0,"ScoreSup":0,"RankTotal":105,"ScoreTotal":934176,"ID":1724,"Name":"Punkty Premium i Flagi","Tag":"Witamy","NumMembers":36,"NumVillages":63,"Points":255952,"AllPoints":255952,"Rank":43,"Dominance":0.1101591187270502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1724","BestRank":43,"BestRankAt":"2023-02-26T08:03:28.379585Z","MostPoints":255952,"MostPointsAt":"2023-02-26T08:03:35.807333Z","MostVillages":64,"MostVillagesAt":"2023-02-26T08:03:28.379585Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":226,"ScoreDef":7801,"RankSup":0,"ScoreSup":0,"RankTotal":237,"ScoreTotal":7801,"ID":1727,"Name":"Lykanie","Tag":"LK","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":279,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1727","BestRank":279,"BestRankAt":"2023-02-26T08:03:35.807335Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379586Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379586Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379709Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1728,"Name":"fffff","Tag":"fffff","NumMembers":1,"NumVillages":1,"Points":3440,"AllPoints":3440,"Rank":164,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1728","BestRank":164,"BestRankAt":"2023-02-26T08:03:35.807336Z","MostPoints":3440,"MostPointsAt":"2023-02-26T08:03:28.379586Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379586Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":200,"ScoreAtt":106,"RankDef":238,"ScoreDef":4434,"RankSup":0,"ScoreSup":0,"RankTotal":240,"ScoreTotal":6680,"ID":1729,"Name":"Gallowo","Tag":"GAL","NumMembers":1,"NumVillages":7,"Points":15214,"AllPoints":15214,"Rank":111,"Dominance":0.012239902080783354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1729","BestRank":111,"BestRankAt":"2023-02-26T08:03:35.807338Z","MostPoints":15214,"MostPointsAt":"2023-02-26T08:03:35.807338Z","MostVillages":7,"MostVillagesAt":"2023-02-26T08:03:28.379587Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":180,"ScoreDef":64596,"RankSup":0,"ScoreSup":0,"RankTotal":195,"ScoreTotal":64596,"ID":1734,"Name":"Woir","Tag":"Wrrrr","NumMembers":1,"NumVillages":1,"Points":5703,"AllPoints":5703,"Rank":148,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1734","BestRank":148,"BestRankAt":"2023-02-26T08:03:35.80734Z","MostPoints":5703,"MostPointsAt":"2023-02-26T08:03:28.379587Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379587Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":69,"ScoreAtt":261212,"RankDef":157,"ScoreDef":165821,"RankSup":0,"ScoreSup":0,"RankTotal":135,"ScoreTotal":454224,"ID":1735,"Name":"Strong Ekipa","Tag":"SE","NumMembers":32,"NumVillages":118,"Points":416675,"AllPoints":416675,"Rank":33,"Dominance":0.20632977793320512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1735","BestRank":33,"BestRankAt":"2023-02-26T08:03:35.807341Z","MostPoints":416675,"MostPointsAt":"2023-02-26T08:03:35.807342Z","MostVillages":118,"MostVillagesAt":"2023-02-26T08:03:35.807341Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":190,"ScoreAtt":1032,"RankDef":160,"ScoreDef":139080,"RankSup":0,"ScoreSup":0,"RankTotal":171,"ScoreTotal":140112,"ID":1737,"Name":"Samiec Alfa","Tag":"Alfa","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":280,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1737","BestRank":280,"BestRankAt":"2023-02-26T08:03:35.807343Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379592Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379592Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379712Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":176,"ScoreDef":81019,"RankSup":0,"ScoreSup":0,"RankTotal":186,"ScoreTotal":81233,"ID":1740,"Name":"T.W.","Tag":"=TW=","NumMembers":1,"NumVillages":19,"Points":122227,"AllPoints":122227,"Rank":52,"Dominance":0.03322259136212625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1740","BestRank":52,"BestRankAt":"2023-02-26T08:03:28.379592Z","MostPoints":122227,"MostPointsAt":"2023-02-26T08:03:28.379593Z","MostVillages":19,"MostVillagesAt":"2023-02-26T08:03:28.379593Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":164,"ScoreAtt":7416,"RankDef":136,"ScoreDef":316265,"RankSup":0,"ScoreSup":0,"RankTotal":145,"ScoreTotal":323681,"ID":1745,"Name":"Dni w Plemieniu","Tag":"DWP","NumMembers":1,"NumVillages":2,"Points":15245,"AllPoints":15245,"Rank":110,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1745","BestRank":110,"BestRankAt":"2023-02-26T08:03:35.807346Z","MostPoints":15245,"MostPointsAt":"2023-02-26T08:03:35.807347Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379593Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":198,"ScoreDef":43707,"RankSup":0,"ScoreSup":0,"RankTotal":205,"ScoreTotal":43707,"ID":1750,"Name":"CZY TO X?","Tag":"Xx","NumMembers":1,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":281,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1750","BestRank":281,"BestRankAt":"2023-02-26T08:03:35.807348Z","MostPoints":0,"MostPointsAt":"2023-02-26T08:03:28.379594Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379594Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1751,"Name":"xddd","Tag":"xddd","NumMembers":1,"NumVillages":0,"Points":68,"AllPoints":68,"Rank":244,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1751","BestRank":244,"BestRankAt":"2023-02-26T08:03:35.807349Z","MostPoints":68,"MostPointsAt":"2023-02-26T08:03:28.379594Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379594Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":259,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":263,"ScoreTotal":2,"ID":1753,"Name":"eeee","Tag":"eeee","NumMembers":1,"NumVillages":1,"Points":810,"AllPoints":810,"Rank":201,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1753","BestRank":201,"BestRankAt":"2023-02-26T08:03:35.807351Z","MostPoints":810,"MostPointsAt":"2023-02-26T08:03:35.807352Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379595Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":256,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":262,"ScoreTotal":10,"ID":1754,"Name":"PogromcY","Tag":"PY","NumMembers":1,"NumVillages":1,"Points":1184,"AllPoints":1184,"Rank":192,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1754","BestRank":192,"BestRankAt":"2023-02-26T08:03:35.807353Z","MostPoints":1184,"MostPointsAt":"2023-02-26T08:03:35.807353Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379595Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":249,"ScoreDef":395,"RankSup":0,"ScoreSup":0,"RankTotal":254,"ScoreTotal":395,"ID":1755,"Name":"cudo","Tag":"C!!","NumMembers":1,"NumVillages":1,"Points":1111,"AllPoints":1111,"Rank":195,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1755","BestRank":195,"BestRankAt":"2023-02-26T08:03:35.807355Z","MostPoints":1111,"MostPointsAt":"2023-02-26T08:03:35.807355Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379596Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379713Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":246,"ScoreDef":1278,"RankSup":0,"ScoreSup":0,"RankTotal":252,"ScoreTotal":1278,"ID":1757,"Name":"Lublin","Tag":"LUB","NumMembers":1,"NumVillages":1,"Points":1400,"AllPoints":1400,"Rank":188,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1757","BestRank":188,"BestRankAt":"2023-02-26T08:03:35.807356Z","MostPoints":1400,"MostPointsAt":"2023-02-26T08:03:35.807357Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379596Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":203,"ScoreDef":30731,"RankSup":0,"ScoreSup":0,"RankTotal":215,"ScoreTotal":30731,"ID":1758,"Name":"Oddam wioski","Tag":"OW","NumMembers":1,"NumVillages":5,"Points":26349,"AllPoints":26349,"Rank":91,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1758","BestRank":91,"BestRankAt":"2023-02-26T08:03:28.379596Z","MostPoints":26349,"MostPointsAt":"2023-02-26T08:03:35.807359Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379597Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":220,"ScoreTotal":27699,"ID":1760,"Name":"Qwer","Tag":"Qwe","NumMembers":1,"NumVillages":4,"Points":8366,"AllPoints":8366,"Rank":131,"Dominance":0.0069942297604476305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1760","BestRank":130,"BestRankAt":"2023-02-26T08:03:28.379597Z","MostPoints":8366,"MostPointsAt":"2023-02-26T08:03:28.379597Z","MostVillages":4,"MostVillagesAt":"2023-02-26T08:03:28.379597Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":213,"ScoreAtt":9,"RankDef":194,"ScoreDef":46590,"RankSup":0,"ScoreSup":0,"RankTotal":203,"ScoreTotal":46599,"ID":1763,"Name":"Altra","Tag":"ALR","NumMembers":1,"NumVillages":5,"Points":24623,"AllPoints":24623,"Rank":94,"Dominance":0.008742787200559538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1763","BestRank":94,"BestRankAt":"2023-02-26T08:03:28.379598Z","MostPoints":24623,"MostPointsAt":"2023-02-26T08:03:35.807362Z","MostVillages":5,"MostVillagesAt":"2023-02-26T08:03:28.379598Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1764,"Name":"Traktor","Tag":"TRK","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":255,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1764","BestRank":255,"BestRankAt":"2023-02-26T08:03:35.807363Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379598Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379598Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379716Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":253,"ScoreDef":124,"RankSup":0,"ScoreSup":0,"RankTotal":257,"ScoreTotal":124,"ID":1770,"Name":"ooooo","Tag":"ooo","NumMembers":1,"NumVillages":1,"Points":153,"AllPoints":153,"Rank":236,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1770","BestRank":236,"BestRankAt":"2023-02-26T08:03:35.807364Z","MostPoints":153,"MostPointsAt":"2023-02-26T08:03:28.379599Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379599Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":187,"ScoreDef":54425,"RankSup":0,"ScoreSup":0,"RankTotal":198,"ScoreTotal":54425,"ID":1771,"Name":"WD40","Tag":"30","NumMembers":1,"NumVillages":2,"Points":7046,"AllPoints":7046,"Rank":140,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1771","BestRank":140,"BestRankAt":"2023-02-26T08:03:35.807366Z","MostPoints":7046,"MostPointsAt":"2023-02-26T08:03:35.807367Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379599Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":236,"ScoreDef":4774,"RankSup":0,"ScoreSup":0,"RankTotal":245,"ScoreTotal":4774,"ID":1772,"Name":"Jdhd","Tag":"Hdhdh","NumMembers":1,"NumVillages":1,"Points":2516,"AllPoints":2516,"Rank":173,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1772","BestRank":173,"BestRankAt":"2023-02-26T08:03:35.807368Z","MostPoints":2516,"MostPointsAt":"2023-02-26T08:03:28.379607Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379606Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":257,"ScoreDef":10,"RankSup":0,"ScoreSup":0,"RankTotal":261,"ScoreTotal":10,"ID":1777,"Name":"Chlip","Tag":"CHP","NumMembers":1,"NumVillages":1,"Points":998,"AllPoints":998,"Rank":196,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1777","BestRank":196,"BestRankAt":"2023-02-26T08:03:35.807369Z","MostPoints":998,"MostPointsAt":"2023-02-26T08:03:28.379607Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379607Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":252,"ScoreDef":207,"RankSup":0,"ScoreSup":0,"RankTotal":256,"ScoreTotal":207,"ID":1779,"Name":"1905","Tag":"CWKS","NumMembers":1,"NumVillages":2,"Points":7537,"AllPoints":7537,"Rank":134,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1779","BestRank":134,"BestRankAt":"2023-02-26T08:03:35.807371Z","MostPoints":7537,"MostPointsAt":"2023-02-26T08:03:28.379607Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379607Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":94,"ScoreAtt":142522,"RankDef":58,"ScoreDef":3113092,"RankSup":0,"ScoreSup":0,"RankTotal":60,"ScoreTotal":3660507,"ID":1780,"Name":"Lololololol","Tag":"Lol","NumMembers":2,"NumVillages":0,"Points":0,"AllPoints":0,"Rank":282,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1780","BestRank":97,"BestRankAt":"2023-02-26T08:03:28.379608Z","MostPoints":21393,"MostPointsAt":"2023-02-26T08:03:28.379608Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379608Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1782,"Name":"disco","Tag":"dsc","NumMembers":1,"NumVillages":1,"Points":676,"AllPoints":676,"Rank":206,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1782","BestRank":206,"BestRankAt":"2023-02-26T08:03:35.807374Z","MostPoints":676,"MostPointsAt":"2023-02-26T08:03:35.807375Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379608Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":205,"ScoreAtt":50,"RankDef":258,"ScoreDef":2,"RankSup":0,"ScoreSup":0,"RankTotal":259,"ScoreTotal":52,"ID":1783,"Name":"Niszczycielski Akwedukt","Tag":"NA","NumMembers":2,"NumVillages":2,"Points":1747,"AllPoints":1747,"Rank":182,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1783","BestRank":182,"BestRankAt":"2023-02-26T08:03:35.807376Z","MostPoints":1747,"MostPointsAt":"2023-02-26T08:03:35.807377Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379609Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379717Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":196,"ScoreAtt":296,"RankDef":244,"ScoreDef":1409,"RankSup":0,"ScoreSup":0,"RankTotal":250,"ScoreTotal":1705,"ID":1785,"Name":"HELLO","Tag":"HELLO","NumMembers":2,"NumVillages":2,"Points":1343,"AllPoints":1343,"Rank":190,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1785","BestRank":190,"BestRankAt":"2023-02-26T08:03:35.807378Z","MostPoints":1343,"MostPointsAt":"2023-02-26T08:03:35.807378Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379609Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1786,"Name":"Pomyƛl zanim kopniesz Qunia","Tag":"QƄ.","NumMembers":1,"NumVillages":1,"Points":3883,"AllPoints":3883,"Rank":162,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1786","BestRank":162,"BestRankAt":"2023-02-26T08:03:28.37961Z","MostPoints":3883,"MostPointsAt":"2023-02-26T08:03:28.37961Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37961Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1787,"Name":"WCF !","Tag":"WCF","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":256,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1787","BestRank":256,"BestRankAt":"2023-02-26T08:03:35.807381Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.37961Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37961Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1789,"Name":"klin","Tag":"lki","NumMembers":1,"NumVillages":0,"Points":239,"AllPoints":239,"Rank":230,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1789","BestRank":230,"BestRankAt":"2023-02-26T08:03:28.379611Z","MostPoints":239,"MostPointsAt":"2023-02-26T08:03:28.379611Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379611Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"2023-02-26T08:03:35.85234Z"},{"RankAtt":125,"ScoreAtt":43136,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":206,"ScoreTotal":43136,"ID":1790,"Name":"Kruk","Tag":"-KR-","NumMembers":1,"NumVillages":8,"Points":33111,"AllPoints":33111,"Rank":86,"Dominance":0.013988459520895261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1790","BestRank":86,"BestRankAt":"2023-02-26T08:03:28.379611Z","MostPoints":33111,"MostPointsAt":"2023-02-26T08:03:35.807383Z","MostVillages":8,"MostVillagesAt":"2023-02-26T08:03:28.379612Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1791,"Name":"Wymiana","Tag":"Flagi","NumMembers":1,"NumVillages":1,"Points":26,"AllPoints":26,"Rank":257,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1791","BestRank":257,"BestRankAt":"2023-02-26T08:03:35.807384Z","MostPoints":26,"MostPointsAt":"2023-02-26T08:03:28.379612Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379612Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1792,"Name":"Winners","Tag":"Win","NumMembers":1,"NumVillages":1,"Points":383,"AllPoints":383,"Rank":216,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1792","BestRank":216,"BestRankAt":"2023-02-26T08:03:35.807386Z","MostPoints":383,"MostPointsAt":"2023-02-26T08:03:35.807386Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379613Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":106,"ScoreAtt":91636,"RankDef":231,"ScoreDef":5563,"RankSup":0,"ScoreSup":0,"RankTotal":181,"ScoreTotal":97199,"ID":1793,"Name":"Sam1","Tag":"Sam1","NumMembers":1,"NumVillages":11,"Points":67586,"AllPoints":67586,"Rank":65,"Dominance":0.019234131841230986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1793","BestRank":65,"BestRankAt":"2023-02-26T08:03:28.379613Z","MostPoints":67586,"MostPointsAt":"2023-02-26T08:03:35.807388Z","MostVillages":11,"MostVillagesAt":"2023-02-26T08:03:28.379613Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":207,"ScoreAtt":40,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":260,"ScoreTotal":40,"ID":1795,"Name":"Kukabaka","Tag":"kUKLA","NumMembers":2,"NumVillages":2,"Points":603,"AllPoints":603,"Rank":209,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1795","BestRank":209,"BestRankAt":"2023-02-26T08:03:35.807389Z","MostPoints":603,"MostPointsAt":"2023-02-26T08:03:35.80739Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379614Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":181,"ScoreAtt":2963,"RankDef":213,"ScoreDef":21860,"RankSup":0,"ScoreSup":0,"RankTotal":219,"ScoreTotal":28823,"ID":1797,"Name":"MiƂoƛnicy Taniego Piwa","Tag":"Browar","NumMembers":18,"NumVillages":19,"Points":21896,"AllPoints":21896,"Rank":97,"Dominance":0.03322259136212625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1797","BestRank":97,"BestRankAt":"2023-02-26T08:03:35.807391Z","MostPoints":21896,"MostPointsAt":"2023-02-26T08:03:35.807392Z","MostVillages":19,"MostVillagesAt":"2023-02-26T08:03:28.379617Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1798,"Name":"Gggg","Tag":"Ggg","NumMembers":1,"NumVillages":1,"Points":5029,"AllPoints":5029,"Rank":151,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1798","BestRank":151,"BestRankAt":"2023-02-26T08:03:35.807393Z","MostPoints":5029,"MostPointsAt":"2023-02-26T08:03:35.807393Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379618Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1799,"Name":"Kkkkk","Tag":"Kkkkk","NumMembers":2,"NumVillages":2,"Points":52,"AllPoints":52,"Rank":245,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1799","BestRank":245,"BestRankAt":"2023-02-26T08:03:35.807394Z","MostPoints":52,"MostPointsAt":"2023-02-26T08:03:28.379618Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379618Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.37972Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1802,"Name":"weRFAS","Tag":"DFSAFS","NumMembers":2,"NumVillages":2,"Points":103,"AllPoints":103,"Rank":241,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1802","BestRank":241,"BestRankAt":"2023-02-26T08:03:35.807396Z","MostPoints":103,"MostPointsAt":"2023-02-26T08:03:28.379619Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:28.379619Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1803,"Name":"czarnuchowo","Tag":"WPDS","NumMembers":1,"NumVillages":1,"Points":162,"AllPoints":162,"Rank":235,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1803","BestRank":235,"BestRankAt":"2023-02-26T08:03:35.807398Z","MostPoints":162,"MostPointsAt":"2023-02-26T08:03:28.379619Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379619Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1804,"Name":"12345","Tag":"12345","NumMembers":3,"NumVillages":3,"Points":78,"AllPoints":78,"Rank":243,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1804","BestRank":243,"BestRankAt":"2023-02-26T08:03:35.807399Z","MostPoints":78,"MostPointsAt":"2023-02-26T08:03:28.37962Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.37962Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1806,"Name":"Kto zjadƂ ciastka?","Tag":"KZC?","NumMembers":1,"NumVillages":1,"Points":221,"AllPoints":221,"Rank":228,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1806","BestRank":228,"BestRankAt":"2023-02-26T08:03:35.807401Z","MostPoints":221,"MostPointsAt":"2023-02-26T08:03:35.807401Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.37962Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379723Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1807,"Name":"ZaPPFrakcja W","Tag":"CSA-W","NumMembers":1,"NumVillages":0,"Points":668,"AllPoints":668,"Rank":207,"Dominance":0,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1807","BestRank":207,"BestRankAt":"2023-02-26T08:03:35.807403Z","MostPoints":668,"MostPointsAt":"2023-02-26T08:03:35.807403Z","MostVillages":0,"MostVillagesAt":"2023-02-26T08:03:28.379621Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":179,"ScoreAtt":3755,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":248,"ScoreTotal":3755,"ID":1808,"Name":"LECOQ","Tag":"LECOQ","NumMembers":1,"NumVillages":3,"Points":20719,"AllPoints":20719,"Rank":98,"Dominance":0.005245672320335723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1808","BestRank":98,"BestRankAt":"2023-02-26T08:03:35.807404Z","MostPoints":20719,"MostPointsAt":"2023-02-26T08:03:35.807405Z","MostVillages":3,"MostVillagesAt":"2023-02-26T08:03:28.379621Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1809,"Name":"Vexel","Tag":"Vexel","NumMembers":1,"NumVillages":1,"Points":191,"AllPoints":191,"Rank":232,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1809","BestRank":232,"BestRankAt":"2023-02-26T08:03:35.807406Z","MostPoints":191,"MostPointsAt":"2023-02-26T08:03:35.807407Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379622Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1810,"Name":"Sobie Sam","Tag":"SS","NumMembers":1,"NumVillages":1,"Points":201,"AllPoints":201,"Rank":229,"Dominance":0.0017485574401119076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1810","BestRank":229,"BestRankAt":"2023-02-26T08:03:35.807408Z","MostPoints":201,"MostPointsAt":"2023-02-26T08:03:35.807408Z","MostVillages":1,"MostVillagesAt":"2023-02-26T08:03:28.379622Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:28.379724Z","DeletedAt":"0001-01-01T00:00:00Z"},{"RankAtt":0,"ScoreAtt":0,"RankDef":0,"ScoreDef":0,"RankSup":0,"ScoreSup":0,"RankTotal":0,"ScoreTotal":0,"ID":1811,"Name":"DziKusY","Tag":"Dzk","NumMembers":2,"NumVillages":2,"Points":103,"AllPoints":103,"Rank":242,"Dominance":0.0034971148802238152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_ally\u0026id=1811","BestRank":242,"BestRankAt":"2023-02-26T08:03:35.807409Z","MostPoints":103,"MostPointsAt":"2023-02-26T08:03:35.80741Z","MostVillages":2,"MostVillagesAt":"2023-02-26T08:03:35.80741Z","ServerKey":"pl181","CreatedAt":"2023-02-26T08:03:35.80751Z","DeletedAt":"0001-01-01T00:00:00Z"}] diff --git a/internal/service/testdata/syncdata/stage2/expected/villages.json b/internal/service/testdata/syncdata/stage2/expected/villages.json new file mode 100644 index 0000000..23aa649 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/expected/villages.json @@ -0,0 +1 @@ +[{"Bonus":0,"Continent":"K54","ID":1,"Name":"2. Tortoise **","PlayerID":849087855,"Points":7834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1","ServerKey":"pl181","X":493,"Y":536},{"Bonus":0,"Continent":"K54","ID":2,"Name":"0041 K54 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2","ServerKey":"pl181","X":490,"Y":544},{"Bonus":0,"Continent":"K54","ID":3,"Name":"Ateny_62","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3","ServerKey":"pl181","X":472,"Y":531},{"Bonus":0,"Continent":"K54","ID":4,"Name":"AR_Madzia","PlayerID":2585846,"Points":5920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4","ServerKey":"pl181","X":466,"Y":518},{"Bonus":0,"Continent":"K54","ID":5,"Name":"013","PlayerID":849092723,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5","ServerKey":"pl181","X":475,"Y":523},{"Bonus":0,"Continent":"K45","ID":6,"Name":"Wioska barbarzyƄska","PlayerID":8649412,"Points":6771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6","ServerKey":"pl181","X":516,"Y":443},{"Bonus":0,"Continent":"K54","ID":7,"Name":"024","PlayerID":2585846,"Points":2917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7","ServerKey":"pl181","X":463,"Y":524},{"Bonus":0,"Continent":"K54","ID":8,"Name":"Winter is coming","PlayerID":699856962,"Points":2114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8","ServerKey":"pl181","X":438,"Y":552},{"Bonus":0,"Continent":"K54","ID":9,"Name":"*Ateny_41","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9","ServerKey":"pl181","X":470,"Y":532},{"Bonus":0,"Continent":"K55","ID":10,"Name":"amator","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10","ServerKey":"pl181","X":524,"Y":573},{"Bonus":0,"Continent":"K54","ID":11,"Name":"*Ateny_15","PlayerID":2585846,"Points":3486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11","ServerKey":"pl181","X":471,"Y":525},{"Bonus":0,"Continent":"K54","ID":12,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12","ServerKey":"pl181","X":430,"Y":519},{"Bonus":0,"Continent":"K54","ID":13,"Name":"Front_19","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13","ServerKey":"pl181","X":456,"Y":528},{"Bonus":0,"Continent":"K44","ID":14,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14","ServerKey":"pl181","X":422,"Y":465},{"Bonus":0,"Continent":"K54","ID":15,"Name":"Front_12","PlayerID":2585846,"Points":4025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15","ServerKey":"pl181","X":458,"Y":524},{"Bonus":0,"Continent":"K54","ID":16,"Name":"Daleko 030","PlayerID":699364813,"Points":8744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16","ServerKey":"pl181","X":473,"Y":582},{"Bonus":0,"Continent":"K54","ID":17,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":1329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17","ServerKey":"pl181","X":454,"Y":537},{"Bonus":0,"Continent":"K45","ID":18,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18","ServerKey":"pl181","X":522,"Y":495},{"Bonus":0,"Continent":"K54","ID":19,"Name":"*Ateny_08","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19","ServerKey":"pl181","X":470,"Y":535},{"Bonus":0,"Continent":"K54","ID":20,"Name":"*Ateny_29","PlayerID":699333701,"Points":3497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20","ServerKey":"pl181","X":465,"Y":522},{"Bonus":0,"Continent":"K54","ID":21,"Name":"NOT!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21","ServerKey":"pl181","X":468,"Y":533},{"Bonus":0,"Continent":"K54","ID":22,"Name":"amfa fatima","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22","ServerKey":"pl181","X":448,"Y":524},{"Bonus":0,"Continent":"K54","ID":23,"Name":"020","PlayerID":699333701,"Points":6848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23","ServerKey":"pl181","X":472,"Y":516},{"Bonus":0,"Continent":"K54","ID":24,"Name":"*Ateny_48","PlayerID":2585846,"Points":8900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24","ServerKey":"pl181","X":466,"Y":529},{"Bonus":0,"Continent":"K54","ID":25,"Name":"*Ateny_27","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25","ServerKey":"pl181","X":479,"Y":523},{"Bonus":0,"Continent":"K54","ID":26,"Name":"PRO8L3M","PlayerID":7491093,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26","ServerKey":"pl181","X":478,"Y":525},{"Bonus":0,"Continent":"K54","ID":27,"Name":"Lucky Strike","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27","ServerKey":"pl181","X":497,"Y":527},{"Bonus":0,"Continent":"K54","ID":28,"Name":"A 012.","PlayerID":849028088,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28","ServerKey":"pl181","X":433,"Y":582},{"Bonus":0,"Continent":"K54","ID":29,"Name":"Lynortis","PlayerID":699698253,"Points":9705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29","ServerKey":"pl181","X":464,"Y":532},{"Bonus":0,"Continent":"K45","ID":30,"Name":"08 Belgia","PlayerID":8925695,"Points":8169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30","ServerKey":"pl181","X":587,"Y":490},{"Bonus":0,"Continent":"K54","ID":31,"Name":"keepo","PlayerID":848967710,"Points":5450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31","ServerKey":"pl181","X":475,"Y":515},{"Bonus":0,"Continent":"K54","ID":32,"Name":"012","PlayerID":699781762,"Points":3857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32","ServerKey":"pl181","X":473,"Y":520},{"Bonus":0,"Continent":"K45","ID":33,"Name":"DROGA BEZ POWROTU","PlayerID":8155296,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33","ServerKey":"pl181","X":539,"Y":468},{"Bonus":0,"Continent":"K54","ID":34,"Name":"5. Koszutka","PlayerID":699781762,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34","ServerKey":"pl181","X":481,"Y":537},{"Bonus":0,"Continent":"K54","ID":35,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35","ServerKey":"pl181","X":445,"Y":525},{"Bonus":0,"Continent":"K54","ID":36,"Name":"keepo","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36","ServerKey":"pl181","X":482,"Y":534},{"Bonus":0,"Continent":"K54","ID":37,"Name":"Aleartis","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37","ServerKey":"pl181","X":481,"Y":538},{"Bonus":0,"Continent":"K64","ID":38,"Name":"KIELBA 084","PlayerID":699342219,"Points":10384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38","ServerKey":"pl181","X":455,"Y":600},{"Bonus":0,"Continent":"K54","ID":39,"Name":"051","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39","ServerKey":"pl181","X":419,"Y":525},{"Bonus":0,"Continent":"K54","ID":40,"Name":"Village","PlayerID":849094067,"Points":11596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40","ServerKey":"pl181","X":491,"Y":531},{"Bonus":0,"Continent":"K55","ID":41,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41","ServerKey":"pl181","X":520,"Y":561},{"Bonus":7,"Continent":"K45","ID":42,"Name":"POGRZEB GRUBYCH","PlayerID":8155296,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42","ServerKey":"pl181","X":540,"Y":446},{"Bonus":0,"Continent":"K54","ID":43,"Name":"031","PlayerID":699781762,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43","ServerKey":"pl181","X":479,"Y":525},{"Bonus":0,"Continent":"K45","ID":44,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44","ServerKey":"pl181","X":577,"Y":485},{"Bonus":3,"Continent":"K54","ID":45,"Name":"0006","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45","ServerKey":"pl181","X":496,"Y":501},{"Bonus":0,"Continent":"K43","ID":46,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46","ServerKey":"pl181","X":398,"Y":481},{"Bonus":0,"Continent":"K54","ID":47,"Name":"~054.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47","ServerKey":"pl181","X":497,"Y":573},{"Bonus":0,"Continent":"K46","ID":48,"Name":"006 Tokio","PlayerID":7092442,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48","ServerKey":"pl181","X":619,"Y":483},{"Bonus":0,"Continent":"K54","ID":49,"Name":"Ateny_74","PlayerID":2585846,"Points":7287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49","ServerKey":"pl181","X":470,"Y":528},{"Bonus":0,"Continent":"K45","ID":50,"Name":"[109] North9","PlayerID":848985692,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50","ServerKey":"pl181","X":574,"Y":488},{"Bonus":0,"Continent":"K54","ID":51,"Name":"*Ateny_46","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51","ServerKey":"pl181","X":474,"Y":534},{"Bonus":0,"Continent":"K44","ID":52,"Name":"119.","PlayerID":8788366,"Points":6555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52","ServerKey":"pl181","X":494,"Y":486},{"Bonus":0,"Continent":"K46","ID":53,"Name":"012","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53","ServerKey":"pl181","X":609,"Y":482},{"Bonus":0,"Continent":"K44","ID":54,"Name":"B062","PlayerID":699299123,"Points":8626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54","ServerKey":"pl181","X":472,"Y":464},{"Bonus":0,"Continent":"K54","ID":55,"Name":"Yogi","PlayerID":2808172,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55","ServerKey":"pl181","X":485,"Y":530},{"Bonus":0,"Continent":"K54","ID":56,"Name":"F067","PlayerID":699189792,"Points":9396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56","ServerKey":"pl181","X":489,"Y":519},{"Bonus":0,"Continent":"K44","ID":57,"Name":"Szlachcic","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57","ServerKey":"pl181","X":485,"Y":480},{"Bonus":0,"Continent":"K54","ID":58,"Name":"030","PlayerID":699781762,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58","ServerKey":"pl181","X":478,"Y":520},{"Bonus":0,"Continent":"K54","ID":59,"Name":"NOT!","PlayerID":9236866,"Points":6994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59","ServerKey":"pl181","X":467,"Y":534},{"Bonus":0,"Continent":"K54","ID":60,"Name":"Alien!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60","ServerKey":"pl181","X":499,"Y":510},{"Bonus":0,"Continent":"K54","ID":61,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61","ServerKey":"pl181","X":484,"Y":531},{"Bonus":0,"Continent":"K54","ID":62,"Name":"#0047 SamobĂłj","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=62","ServerKey":"pl181","X":489,"Y":546},{"Bonus":0,"Continent":"K45","ID":63,"Name":"061 Finlandia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=63","ServerKey":"pl181","X":572,"Y":465},{"Bonus":0,"Continent":"K54","ID":64,"Name":"1. Is-7 !!!","PlayerID":849087855,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=64","ServerKey":"pl181","X":491,"Y":540},{"Bonus":0,"Continent":"K44","ID":65,"Name":"K44 008","PlayerID":698290577,"Points":6772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=65","ServerKey":"pl181","X":426,"Y":483},{"Bonus":0,"Continent":"K54","ID":66,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=66","ServerKey":"pl181","X":478,"Y":544},{"Bonus":0,"Continent":"K54","ID":67,"Name":"Jungle Boyz!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=67","ServerKey":"pl181","X":495,"Y":510},{"Bonus":0,"Continent":"K54","ID":68,"Name":"F091","PlayerID":699189792,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=68","ServerKey":"pl181","X":481,"Y":518},{"Bonus":0,"Continent":"K55","ID":69,"Name":"K55","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=69","ServerKey":"pl181","X":538,"Y":518},{"Bonus":0,"Continent":"K54","ID":70,"Name":"*Ateny_51","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=70","ServerKey":"pl181","X":461,"Y":529},{"Bonus":0,"Continent":"K55","ID":71,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=71","ServerKey":"pl181","X":587,"Y":508},{"Bonus":0,"Continent":"K54","ID":72,"Name":"Lynortis","PlayerID":849001724,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=72","ServerKey":"pl181","X":466,"Y":536},{"Bonus":0,"Continent":"K45","ID":73,"Name":"003","PlayerID":699099811,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=73","ServerKey":"pl181","X":562,"Y":490},{"Bonus":0,"Continent":"K54","ID":74,"Name":"...","PlayerID":848915531,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=74","ServerKey":"pl181","X":485,"Y":543},{"Bonus":0,"Continent":"K54","ID":75,"Name":"002","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=75","ServerKey":"pl181","X":431,"Y":506},{"Bonus":0,"Continent":"K54","ID":76,"Name":"012","PlayerID":2585846,"Points":2141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=76","ServerKey":"pl181","X":462,"Y":531},{"Bonus":0,"Continent":"K45","ID":77,"Name":"AbacadA 009","PlayerID":699756210,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=77","ServerKey":"pl181","X":558,"Y":435},{"Bonus":0,"Continent":"K54","ID":78,"Name":"0096","PlayerID":698659980,"Points":9104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=78","ServerKey":"pl181","X":464,"Y":550},{"Bonus":0,"Continent":"K45","ID":79,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=79","ServerKey":"pl181","X":547,"Y":478},{"Bonus":0,"Continent":"K54","ID":80,"Name":"CHW#028","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=80","ServerKey":"pl181","X":480,"Y":538},{"Bonus":0,"Continent":"K44","ID":81,"Name":"Szlachcic","PlayerID":699098531,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=81","ServerKey":"pl181","X":486,"Y":472},{"Bonus":0,"Continent":"K54","ID":82,"Name":"0065","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=82","ServerKey":"pl181","X":487,"Y":526},{"Bonus":0,"Continent":"K54","ID":83,"Name":"Brat447","PlayerID":699262350,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=83","ServerKey":"pl181","X":454,"Y":503},{"Bonus":0,"Continent":"K54","ID":84,"Name":"Yogi","PlayerID":2808172,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=84","ServerKey":"pl181","X":485,"Y":531},{"Bonus":0,"Continent":"K54","ID":85,"Name":"CHW#046","PlayerID":699781762,"Points":5000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=85","ServerKey":"pl181","X":481,"Y":521},{"Bonus":0,"Continent":"K55","ID":86,"Name":"CALL 1017","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=86","ServerKey":"pl181","X":553,"Y":562},{"Bonus":0,"Continent":"K54","ID":87,"Name":"SsSs","PlayerID":1536625,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=87","ServerKey":"pl181","X":457,"Y":500},{"Bonus":0,"Continent":"K54","ID":88,"Name":"05 California","PlayerID":699781762,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=88","ServerKey":"pl181","X":469,"Y":506},{"Bonus":0,"Continent":"K44","ID":89,"Name":"PRO8L3M","PlayerID":7491093,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=89","ServerKey":"pl181","X":461,"Y":490},{"Bonus":0,"Continent":"K54","ID":90,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=90","ServerKey":"pl181","X":417,"Y":532},{"Bonus":0,"Continent":"K54","ID":91,"Name":"Brat447","PlayerID":699262350,"Points":10720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=91","ServerKey":"pl181","X":463,"Y":505},{"Bonus":0,"Continent":"K54","ID":92,"Name":"lady","PlayerID":699703642,"Points":10455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=92","ServerKey":"pl181","X":494,"Y":583},{"Bonus":0,"Continent":"K55","ID":93,"Name":"0013","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=93","ServerKey":"pl181","X":509,"Y":530},{"Bonus":0,"Continent":"K44","ID":94,"Name":"135 Puebla","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=94","ServerKey":"pl181","X":479,"Y":483},{"Bonus":0,"Continent":"K43","ID":95,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=95","ServerKey":"pl181","X":382,"Y":480},{"Bonus":0,"Continent":"K44","ID":96,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=96","ServerKey":"pl181","X":474,"Y":425},{"Bonus":0,"Continent":"K54","ID":98,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=98","ServerKey":"pl181","X":417,"Y":510},{"Bonus":0,"Continent":"K55","ID":99,"Name":"0052","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=99","ServerKey":"pl181","X":519,"Y":524},{"Bonus":0,"Continent":"K55","ID":100,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=100","ServerKey":"pl181","X":520,"Y":501},{"Bonus":0,"Continent":"K55","ID":101,"Name":"0207","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=101","ServerKey":"pl181","X":534,"Y":594},{"Bonus":0,"Continent":"K44","ID":102,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=102","ServerKey":"pl181","X":464,"Y":497},{"Bonus":0,"Continent":"K55","ID":103,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=103","ServerKey":"pl181","X":519,"Y":532},{"Bonus":0,"Continent":"K54","ID":104,"Name":"Winter is coming","PlayerID":698971484,"Points":2219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=104","ServerKey":"pl181","X":444,"Y":540},{"Bonus":0,"Continent":"K55","ID":105,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=105","ServerKey":"pl181","X":515,"Y":520},{"Bonus":0,"Continent":"K44","ID":106,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=106","ServerKey":"pl181","X":483,"Y":415},{"Bonus":0,"Continent":"K45","ID":107,"Name":"021N Lord Alexxx","PlayerID":8323711,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=107","ServerKey":"pl181","X":577,"Y":440},{"Bonus":0,"Continent":"K54","ID":108,"Name":"063. ALFI","PlayerID":8539216,"Points":1453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=108","ServerKey":"pl181","X":474,"Y":564},{"Bonus":0,"Continent":"K55","ID":109,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=109","ServerKey":"pl181","X":531,"Y":522},{"Bonus":0,"Continent":"K44","ID":110,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=110","ServerKey":"pl181","X":499,"Y":438},{"Bonus":7,"Continent":"K54","ID":111,"Name":"Kasyno","PlayerID":7249451,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=111","ServerKey":"pl181","X":440,"Y":510},{"Bonus":0,"Continent":"K55","ID":112,"Name":"0052 K55 and987 OZDR","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=112","ServerKey":"pl181","X":509,"Y":550},{"Bonus":0,"Continent":"K55","ID":113,"Name":"- 037 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=113","ServerKey":"pl181","X":534,"Y":580},{"Bonus":0,"Continent":"K54","ID":114,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=114","ServerKey":"pl181","X":458,"Y":513},{"Bonus":0,"Continent":"K54","ID":115,"Name":"Brat447","PlayerID":699262350,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=115","ServerKey":"pl181","X":460,"Y":508},{"Bonus":0,"Continent":"K44","ID":116,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=116","ServerKey":"pl181","X":491,"Y":476},{"Bonus":0,"Continent":"K55","ID":117,"Name":"Village","PlayerID":849094067,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=117","ServerKey":"pl181","X":502,"Y":585},{"Bonus":0,"Continent":"K44","ID":118,"Name":"MAXX","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=118","ServerKey":"pl181","X":496,"Y":481},{"Bonus":0,"Continent":"K45","ID":119,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=119","ServerKey":"pl181","X":546,"Y":480},{"Bonus":0,"Continent":"K44","ID":120,"Name":"Szlachcic","PlayerID":699098531,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=120","ServerKey":"pl181","X":495,"Y":474},{"Bonus":0,"Continent":"K44","ID":121,"Name":"Szlachcic","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=121","ServerKey":"pl181","X":489,"Y":464},{"Bonus":0,"Continent":"K54","ID":122,"Name":"0115","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=122","ServerKey":"pl181","X":469,"Y":548},{"Bonus":4,"Continent":"K55","ID":123,"Name":"030 |","PlayerID":8000875,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=123","ServerKey":"pl181","X":553,"Y":534},{"Bonus":0,"Continent":"K44","ID":124,"Name":"Szlachcic","PlayerID":699098531,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=124","ServerKey":"pl181","X":487,"Y":475},{"Bonus":0,"Continent":"K34","ID":125,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=125","ServerKey":"pl181","X":477,"Y":382},{"Bonus":0,"Continent":"K44","ID":126,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=126","ServerKey":"pl181","X":498,"Y":485},{"Bonus":0,"Continent":"K55","ID":127,"Name":"0015","PlayerID":698599365,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=127","ServerKey":"pl181","X":508,"Y":505},{"Bonus":0,"Continent":"K44","ID":128,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=128","ServerKey":"pl181","X":488,"Y":477},{"Bonus":0,"Continent":"K55","ID":129,"Name":"Mzm48","PlayerID":7142659,"Points":7447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=129","ServerKey":"pl181","X":553,"Y":522},{"Bonus":0,"Continent":"K44","ID":130,"Name":"A001","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=130","ServerKey":"pl181","X":490,"Y":415},{"Bonus":0,"Continent":"K54","ID":131,"Name":"CHW#027r","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=131","ServerKey":"pl181","X":484,"Y":538},{"Bonus":0,"Continent":"K44","ID":132,"Name":"161 Belo Horizonte","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=132","ServerKey":"pl181","X":482,"Y":473},{"Bonus":0,"Continent":"K54","ID":133,"Name":"#0068 Robert L","PlayerID":9272054,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=133","ServerKey":"pl181","X":498,"Y":561},{"Bonus":0,"Continent":"K45","ID":134,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=134","ServerKey":"pl181","X":500,"Y":465},{"Bonus":0,"Continent":"K44","ID":135,"Name":"PRO8L3M","PlayerID":7491093,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=135","ServerKey":"pl181","X":421,"Y":498},{"Bonus":0,"Continent":"K45","ID":136,"Name":"0003 smarfa","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=136","ServerKey":"pl181","X":501,"Y":494},{"Bonus":0,"Continent":"K55","ID":137,"Name":"CALL 953","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=137","ServerKey":"pl181","X":546,"Y":553},{"Bonus":0,"Continent":"K44","ID":138,"Name":"x Cast Away 001","PlayerID":698290577,"Points":8861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=138","ServerKey":"pl181","X":457,"Y":491},{"Bonus":0,"Continent":"K55","ID":139,"Name":"005","PlayerID":848915531,"Points":10807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=139","ServerKey":"pl181","X":510,"Y":545},{"Bonus":0,"Continent":"K54","ID":140,"Name":"...","PlayerID":848915531,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=140","ServerKey":"pl181","X":497,"Y":545},{"Bonus":0,"Continent":"K54","ID":141,"Name":"#0105 OrchĂłwek","PlayerID":9272054,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=141","ServerKey":"pl181","X":481,"Y":544},{"Bonus":0,"Continent":"K43","ID":142,"Name":"makelovenotwar5","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=142","ServerKey":"pl181","X":392,"Y":459},{"Bonus":0,"Continent":"K55","ID":143,"Name":"CALL 1046","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=143","ServerKey":"pl181","X":540,"Y":550},{"Bonus":0,"Continent":"K54","ID":144,"Name":"30001","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=144","ServerKey":"pl181","X":490,"Y":539},{"Bonus":0,"Continent":"K44","ID":145,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=145","ServerKey":"pl181","X":434,"Y":462},{"Bonus":0,"Continent":"K54","ID":146,"Name":"F028","PlayerID":699189792,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=146","ServerKey":"pl181","X":486,"Y":542},{"Bonus":0,"Continent":"K55","ID":147,"Name":"10*","PlayerID":699664910,"Points":7548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=147","ServerKey":"pl181","X":571,"Y":544},{"Bonus":3,"Continent":"K55","ID":148,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=148","ServerKey":"pl181","X":578,"Y":541},{"Bonus":0,"Continent":"K54","ID":149,"Name":"...","PlayerID":848915531,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=149","ServerKey":"pl181","X":495,"Y":543},{"Bonus":0,"Continent":"K54","ID":150,"Name":"2. Su !!!","PlayerID":849087855,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=150","ServerKey":"pl181","X":496,"Y":541},{"Bonus":0,"Continent":"K54","ID":151,"Name":"2. Obj 261 !!!","PlayerID":849087855,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=151","ServerKey":"pl181","X":496,"Y":549},{"Bonus":0,"Continent":"K54","ID":152,"Name":"#0080 Czas to puƂapka","PlayerID":9272054,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=152","ServerKey":"pl181","X":485,"Y":551},{"Bonus":0,"Continent":"K45","ID":153,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=153","ServerKey":"pl181","X":522,"Y":482},{"Bonus":0,"Continent":"K45","ID":154,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=154","ServerKey":"pl181","X":525,"Y":475},{"Bonus":0,"Continent":"K55","ID":155,"Name":"CALL 980","PlayerID":699784536,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=155","ServerKey":"pl181","X":550,"Y":569},{"Bonus":9,"Continent":"K54","ID":156,"Name":"Ɓyk i buch!","PlayerID":699785935,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=156","ServerKey":"pl181","X":493,"Y":510},{"Bonus":0,"Continent":"K54","ID":157,"Name":"NOT!","PlayerID":9236866,"Points":9451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=157","ServerKey":"pl181","X":466,"Y":537},{"Bonus":0,"Continent":"K45","ID":158,"Name":"Szlachcic","PlayerID":699098531,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=158","ServerKey":"pl181","X":502,"Y":474},{"Bonus":0,"Continent":"K56","ID":159,"Name":"HCG","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=159","ServerKey":"pl181","X":622,"Y":507},{"Bonus":0,"Continent":"K55","ID":160,"Name":"Yogi","PlayerID":2808172,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=160","ServerKey":"pl181","X":517,"Y":540},{"Bonus":0,"Continent":"K56","ID":161,"Name":"*008*","PlayerID":698670524,"Points":8614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=161","ServerKey":"pl181","X":620,"Y":505},{"Bonus":0,"Continent":"K54","ID":162,"Name":"OBTW","PlayerID":699443920,"Points":3236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=162","ServerKey":"pl181","X":433,"Y":560},{"Bonus":0,"Continent":"K45","ID":163,"Name":"Szlachcic","PlayerID":699098531,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=163","ServerKey":"pl181","X":510,"Y":463},{"Bonus":0,"Continent":"K54","ID":164,"Name":"SsSs","PlayerID":1536625,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=164","ServerKey":"pl181","X":422,"Y":501},{"Bonus":0,"Continent":"K56","ID":165,"Name":"10 Backstage","PlayerID":9314079,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=165","ServerKey":"pl181","X":615,"Y":510},{"Bonus":0,"Continent":"K44","ID":166,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=166","ServerKey":"pl181","X":498,"Y":444},{"Bonus":0,"Continent":"K55","ID":167,"Name":"Kielce","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=167","ServerKey":"pl181","X":590,"Y":576},{"Bonus":0,"Continent":"K54","ID":168,"Name":"F033","PlayerID":699189792,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=168","ServerKey":"pl181","X":491,"Y":534},{"Bonus":0,"Continent":"K55","ID":169,"Name":"015.","PlayerID":6520732,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=169","ServerKey":"pl181","X":599,"Y":534},{"Bonus":0,"Continent":"K54","ID":170,"Name":"Winter is coming","PlayerID":699856962,"Points":2612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=170","ServerKey":"pl181","X":435,"Y":550},{"Bonus":8,"Continent":"K54","ID":171,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=171","ServerKey":"pl181","X":441,"Y":530},{"Bonus":0,"Continent":"K35","ID":172,"Name":"Handel","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=172","ServerKey":"pl181","X":508,"Y":383},{"Bonus":0,"Continent":"K55","ID":173,"Name":"Village","PlayerID":849094067,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=173","ServerKey":"pl181","X":505,"Y":589},{"Bonus":0,"Continent":"K55","ID":174,"Name":"Wioska Edwardes","PlayerID":698845189,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=174","ServerKey":"pl181","X":599,"Y":522},{"Bonus":0,"Continent":"K56","ID":175,"Name":"0076","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=175","ServerKey":"pl181","X":602,"Y":523},{"Bonus":0,"Continent":"K54","ID":176,"Name":"Krab Oceaniczny","PlayerID":7249451,"Points":8335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=176","ServerKey":"pl181","X":475,"Y":585},{"Bonus":6,"Continent":"K45","ID":177,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=177","ServerKey":"pl181","X":512,"Y":477},{"Bonus":0,"Continent":"K55","ID":178,"Name":"podgrzybek","PlayerID":1715091,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=178","ServerKey":"pl181","X":598,"Y":573},{"Bonus":0,"Continent":"K44","ID":179,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=179","ServerKey":"pl181","X":450,"Y":460},{"Bonus":0,"Continent":"K56","ID":180,"Name":"Taran 004","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=180","ServerKey":"pl181","X":617,"Y":525},{"Bonus":0,"Continent":"K55","ID":181,"Name":"F008","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=181","ServerKey":"pl181","X":507,"Y":535},{"Bonus":0,"Continent":"K46","ID":182,"Name":"rakieta 012","PlayerID":848928486,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=182","ServerKey":"pl181","X":625,"Y":499},{"Bonus":0,"Continent":"K45","ID":183,"Name":"044.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=183","ServerKey":"pl181","X":509,"Y":486},{"Bonus":0,"Continent":"K45","ID":184,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=184","ServerKey":"pl181","X":518,"Y":499},{"Bonus":0,"Continent":"K55","ID":185,"Name":"032","PlayerID":699373599,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=185","ServerKey":"pl181","X":592,"Y":569},{"Bonus":0,"Continent":"K55","ID":186,"Name":"001. Ragnar","PlayerID":699373599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=186","ServerKey":"pl181","X":585,"Y":569},{"Bonus":0,"Continent":"K45","ID":187,"Name":"Joms 030","PlayerID":699756210,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=187","ServerKey":"pl181","X":521,"Y":418},{"Bonus":0,"Continent":"K45","ID":189,"Name":"Wioska barbarzyƄska","PlayerID":699355601,"Points":2866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=189","ServerKey":"pl181","X":532,"Y":474},{"Bonus":0,"Continent":"K56","ID":190,"Name":"sƂodziuteƄka 09","PlayerID":8013349,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=190","ServerKey":"pl181","X":604,"Y":536},{"Bonus":0,"Continent":"K56","ID":191,"Name":"PóƂnoc","PlayerID":699785935,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=191","ServerKey":"pl181","X":607,"Y":542},{"Bonus":0,"Continent":"K54","ID":192,"Name":"YES?","PlayerID":699660539,"Points":4104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=192","ServerKey":"pl181","X":458,"Y":537},{"Bonus":0,"Continent":"K55","ID":193,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=193","ServerKey":"pl181","X":589,"Y":575},{"Bonus":0,"Continent":"K55","ID":194,"Name":"Jaaa","PlayerID":698635863,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=194","ServerKey":"pl181","X":589,"Y":566},{"Bonus":0,"Continent":"K56","ID":195,"Name":"003. NH STREET","PlayerID":8900955,"Points":8814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=195","ServerKey":"pl181","X":614,"Y":538},{"Bonus":0,"Continent":"K55","ID":196,"Name":"A.181.00","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=196","ServerKey":"pl181","X":598,"Y":535},{"Bonus":0,"Continent":"K54","ID":197,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=197","ServerKey":"pl181","X":446,"Y":520},{"Bonus":0,"Continent":"K56","ID":198,"Name":"sƂodziuteƄka 01","PlayerID":8013349,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=198","ServerKey":"pl181","X":603,"Y":533},{"Bonus":0,"Continent":"K45","ID":199,"Name":"013","PlayerID":8191129,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=199","ServerKey":"pl181","X":525,"Y":497},{"Bonus":0,"Continent":"K45","ID":200,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=200","ServerKey":"pl181","X":512,"Y":496},{"Bonus":0,"Continent":"K44","ID":201,"Name":"023","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=201","ServerKey":"pl181","X":456,"Y":438},{"Bonus":0,"Continent":"K65","ID":202,"Name":"#0001 Amegakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=202","ServerKey":"pl181","X":527,"Y":620},{"Bonus":0,"Continent":"K45","ID":203,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=203","ServerKey":"pl181","X":529,"Y":486},{"Bonus":0,"Continent":"K56","ID":204,"Name":"010. Czomolungma","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=204","ServerKey":"pl181","X":602,"Y":570},{"Bonus":0,"Continent":"K55","ID":205,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=205","ServerKey":"pl181","X":570,"Y":504},{"Bonus":0,"Continent":"K45","ID":206,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=206","ServerKey":"pl181","X":524,"Y":477},{"Bonus":0,"Continent":"K45","ID":207,"Name":":cc","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=207","ServerKey":"pl181","X":541,"Y":477},{"Bonus":0,"Continent":"K56","ID":208,"Name":"[001] Drep Big *","PlayerID":848985692,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=208","ServerKey":"pl181","X":604,"Y":538},{"Bonus":0,"Continent":"K56","ID":209,"Name":"Mzm06","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=209","ServerKey":"pl181","X":613,"Y":535},{"Bonus":0,"Continent":"K55","ID":210,"Name":"Wioska 3","PlayerID":699385139,"Points":4383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=210","ServerKey":"pl181","X":529,"Y":516},{"Bonus":0,"Continent":"K55","ID":211,"Name":"Wioska 17ohly17","PlayerID":1715091,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=211","ServerKey":"pl181","X":596,"Y":572},{"Bonus":0,"Continent":"K55","ID":212,"Name":"Creep","PlayerID":848926293,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=212","ServerKey":"pl181","X":594,"Y":565},{"Bonus":0,"Continent":"K54","ID":213,"Name":"SsSs","PlayerID":1536625,"Points":4660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=213","ServerKey":"pl181","X":460,"Y":502},{"Bonus":0,"Continent":"K55","ID":214,"Name":"ƁomĆŒa","PlayerID":1715091,"Points":9324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=214","ServerKey":"pl181","X":588,"Y":583},{"Bonus":0,"Continent":"K55","ID":215,"Name":"yogi","PlayerID":2808172,"Points":7609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=215","ServerKey":"pl181","X":526,"Y":534},{"Bonus":0,"Continent":"K55","ID":216,"Name":"0011","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=216","ServerKey":"pl181","X":505,"Y":502},{"Bonus":4,"Continent":"K55","ID":217,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=217","ServerKey":"pl181","X":519,"Y":507},{"Bonus":0,"Continent":"K56","ID":218,"Name":"Wioska Dziadzi","PlayerID":848963236,"Points":3421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=218","ServerKey":"pl181","X":600,"Y":532},{"Bonus":0,"Continent":"K55","ID":219,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=219","ServerKey":"pl181","X":568,"Y":560},{"Bonus":0,"Continent":"K55","ID":220,"Name":"Essa 002","PlayerID":848987051,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=220","ServerKey":"pl181","X":573,"Y":573},{"Bonus":0,"Continent":"K44","ID":221,"Name":"-015-","PlayerID":9291984,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=221","ServerKey":"pl181","X":465,"Y":427},{"Bonus":0,"Continent":"K56","ID":222,"Name":"AnioƂ soli","PlayerID":3364735,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=222","ServerKey":"pl181","X":603,"Y":526},{"Bonus":0,"Continent":"K44","ID":223,"Name":"Szlachcic","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=223","ServerKey":"pl181","X":485,"Y":462},{"Bonus":0,"Continent":"K55","ID":224,"Name":"Essa 003 Magdula","PlayerID":848987051,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=224","ServerKey":"pl181","X":568,"Y":581},{"Bonus":0,"Continent":"K43","ID":225,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=225","ServerKey":"pl181","X":398,"Y":454},{"Bonus":0,"Continent":"K56","ID":226,"Name":"012 Lucek ville","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=226","ServerKey":"pl181","X":603,"Y":527},{"Bonus":0,"Continent":"K45","ID":227,"Name":"048","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=227","ServerKey":"pl181","X":586,"Y":473},{"Bonus":0,"Continent":"K56","ID":228,"Name":"081","PlayerID":699373599,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=228","ServerKey":"pl181","X":612,"Y":533},{"Bonus":0,"Continent":"K44","ID":229,"Name":"SsSs","PlayerID":1536625,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=229","ServerKey":"pl181","X":452,"Y":499},{"Bonus":0,"Continent":"K54","ID":230,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=230","ServerKey":"pl181","X":484,"Y":544},{"Bonus":0,"Continent":"K45","ID":231,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=231","ServerKey":"pl181","X":516,"Y":497},{"Bonus":0,"Continent":"K54","ID":232,"Name":"#0074 Ɓąka","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=232","ServerKey":"pl181","X":492,"Y":547},{"Bonus":0,"Continent":"K55","ID":233,"Name":"061.","PlayerID":8788366,"Points":7466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=233","ServerKey":"pl181","X":513,"Y":506},{"Bonus":0,"Continent":"K46","ID":234,"Name":"*012*","PlayerID":698670524,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=234","ServerKey":"pl181","X":608,"Y":496},{"Bonus":0,"Continent":"K45","ID":235,"Name":"-[027]- Rakaposhi","PlayerID":849092827,"Points":7596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=235","ServerKey":"pl181","X":562,"Y":485},{"Bonus":0,"Continent":"K55","ID":236,"Name":"002","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=236","ServerKey":"pl181","X":509,"Y":501},{"Bonus":0,"Continent":"K44","ID":238,"Name":"Szlachcic","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=238","ServerKey":"pl181","X":487,"Y":465},{"Bonus":0,"Continent":"K54","ID":239,"Name":"NOT?","PlayerID":9236866,"Points":3526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=239","ServerKey":"pl181","X":461,"Y":538},{"Bonus":0,"Continent":"K44","ID":240,"Name":"Szlachcic","PlayerID":699098531,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=240","ServerKey":"pl181","X":498,"Y":467},{"Bonus":0,"Continent":"K54","ID":241,"Name":"025","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=241","ServerKey":"pl181","X":415,"Y":524},{"Bonus":0,"Continent":"K44","ID":242,"Name":"Wioska FKG007","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=242","ServerKey":"pl181","X":421,"Y":409},{"Bonus":5,"Continent":"K44","ID":243,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=243","ServerKey":"pl181","X":487,"Y":476},{"Bonus":0,"Continent":"K43","ID":244,"Name":"s181eo01","PlayerID":393668,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=244","ServerKey":"pl181","X":393,"Y":447},{"Bonus":0,"Continent":"K44","ID":245,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=245","ServerKey":"pl181","X":499,"Y":412},{"Bonus":0,"Continent":"K55","ID":247,"Name":"Gdybys Kiedyƛ","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=247","ServerKey":"pl181","X":500,"Y":520},{"Bonus":0,"Continent":"K55","ID":249,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=249","ServerKey":"pl181","X":584,"Y":502},{"Bonus":0,"Continent":"K54","ID":251,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=251","ServerKey":"pl181","X":462,"Y":509},{"Bonus":0,"Continent":"K44","ID":253,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=253","ServerKey":"pl181","X":425,"Y":454},{"Bonus":0,"Continent":"K54","ID":255,"Name":"keepo","PlayerID":848967710,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=255","ServerKey":"pl181","X":484,"Y":530},{"Bonus":5,"Continent":"K44","ID":256,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=256","ServerKey":"pl181","X":482,"Y":496},{"Bonus":0,"Continent":"K43","ID":257,"Name":"001","PlayerID":3698627,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=257","ServerKey":"pl181","X":385,"Y":462},{"Bonus":0,"Continent":"K54","ID":258,"Name":"Suppi","PlayerID":699856962,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=258","ServerKey":"pl181","X":444,"Y":527},{"Bonus":5,"Continent":"K54","ID":259,"Name":"0080","PlayerID":698659980,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=259","ServerKey":"pl181","X":465,"Y":554},{"Bonus":0,"Continent":"K54","ID":260,"Name":"#0127 Fascynacja","PlayerID":9272054,"Points":6988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=260","ServerKey":"pl181","X":495,"Y":525},{"Bonus":0,"Continent":"K55","ID":261,"Name":"038.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=261","ServerKey":"pl181","X":554,"Y":513},{"Bonus":0,"Continent":"K34","ID":262,"Name":"[0001]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=262","ServerKey":"pl181","X":458,"Y":383},{"Bonus":6,"Continent":"K45","ID":263,"Name":"059","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=263","ServerKey":"pl181","X":552,"Y":430},{"Bonus":0,"Continent":"K44","ID":264,"Name":"Szulernia","PlayerID":7249451,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=264","ServerKey":"pl181","X":418,"Y":414},{"Bonus":0,"Continent":"K55","ID":266,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=266","ServerKey":"pl181","X":515,"Y":540},{"Bonus":0,"Continent":"K44","ID":268,"Name":"Suppi","PlayerID":699856962,"Points":8782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=268","ServerKey":"pl181","X":444,"Y":453},{"Bonus":0,"Continent":"K45","ID":270,"Name":".:021:. Chilout","PlayerID":848934935,"Points":8227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=270","ServerKey":"pl181","X":510,"Y":420},{"Bonus":0,"Continent":"K44","ID":271,"Name":"A001","PlayerID":8740199,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=271","ServerKey":"pl181","X":444,"Y":404},{"Bonus":0,"Continent":"K44","ID":272,"Name":"2xxxxxxxxxxxx","PlayerID":9291984,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=272","ServerKey":"pl181","X":464,"Y":429},{"Bonus":0,"Continent":"K44","ID":273,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=273","ServerKey":"pl181","X":420,"Y":421},{"Bonus":0,"Continent":"K55","ID":274,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=274","ServerKey":"pl181","X":597,"Y":502},{"Bonus":0,"Continent":"K55","ID":275,"Name":"20005","PlayerID":848915531,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=275","ServerKey":"pl181","X":505,"Y":541},{"Bonus":0,"Continent":"K54","ID":276,"Name":"00Wioska barbarzyƄska","PlayerID":699781762,"Points":9251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=276","ServerKey":"pl181","X":475,"Y":530},{"Bonus":0,"Continent":"K44","ID":277,"Name":"0079","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=277","ServerKey":"pl181","X":442,"Y":401},{"Bonus":0,"Continent":"K44","ID":278,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=278","ServerKey":"pl181","X":402,"Y":459},{"Bonus":0,"Continent":"K45","ID":281,"Name":"005","PlayerID":849070464,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=281","ServerKey":"pl181","X":567,"Y":481},{"Bonus":0,"Continent":"K44","ID":282,"Name":"+44 61 Tassin la Demi Lune","PlayerID":698361257,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=282","ServerKey":"pl181","X":417,"Y":465},{"Bonus":0,"Continent":"K44","ID":283,"Name":"Cast Away 011","PlayerID":698290577,"Points":8639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=283","ServerKey":"pl181","X":453,"Y":483},{"Bonus":0,"Continent":"K54","ID":284,"Name":"~067.","PlayerID":7139820,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=284","ServerKey":"pl181","X":498,"Y":529},{"Bonus":0,"Continent":"K44","ID":285,"Name":"-017-","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=285","ServerKey":"pl181","X":461,"Y":430},{"Bonus":0,"Continent":"K44","ID":286,"Name":"K44 x001","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=286","ServerKey":"pl181","X":442,"Y":404},{"Bonus":0,"Continent":"K55","ID":287,"Name":"JaamMwG 002","PlayerID":848987051,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=287","ServerKey":"pl181","X":525,"Y":527},{"Bonus":0,"Continent":"K45","ID":289,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":6472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=289","ServerKey":"pl181","X":546,"Y":447},{"Bonus":0,"Continent":"K54","ID":290,"Name":"064. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=290","ServerKey":"pl181","X":497,"Y":522},{"Bonus":0,"Continent":"K45","ID":291,"Name":"048 Belgia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=291","ServerKey":"pl181","X":583,"Y":478},{"Bonus":0,"Continent":"K44","ID":293,"Name":"+44 63 Bron","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=293","ServerKey":"pl181","X":431,"Y":469},{"Bonus":7,"Continent":"K55","ID":294,"Name":"0007 K55 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=294","ServerKey":"pl181","X":504,"Y":559},{"Bonus":0,"Continent":"K44","ID":295,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=295","ServerKey":"pl181","X":415,"Y":428},{"Bonus":0,"Continent":"K54","ID":297,"Name":"Fajna 016","PlayerID":698971484,"Points":7275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=297","ServerKey":"pl181","X":453,"Y":565},{"Bonus":0,"Continent":"K55","ID":298,"Name":"Minas Tirith","PlayerID":849091897,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=298","ServerKey":"pl181","X":506,"Y":516},{"Bonus":0,"Continent":"K44","ID":299,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=299","ServerKey":"pl181","X":466,"Y":417},{"Bonus":0,"Continent":"K43","ID":300,"Name":"Land of Fire","PlayerID":698962117,"Points":9678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=300","ServerKey":"pl181","X":395,"Y":447},{"Bonus":0,"Continent":"K44","ID":301,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=301","ServerKey":"pl181","X":491,"Y":492},{"Bonus":0,"Continent":"K44","ID":302,"Name":"TRR 001","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=302","ServerKey":"pl181","X":407,"Y":415},{"Bonus":0,"Continent":"K44","ID":303,"Name":"Szlachcic","PlayerID":699098531,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=303","ServerKey":"pl181","X":492,"Y":476},{"Bonus":0,"Continent":"K45","ID":305,"Name":"9. Wysypisko","PlayerID":8444356,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=305","ServerKey":"pl181","X":547,"Y":434},{"Bonus":4,"Continent":"K55","ID":306,"Name":"20016","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=306","ServerKey":"pl181","X":519,"Y":553},{"Bonus":0,"Continent":"K55","ID":307,"Name":"F002","PlayerID":699189792,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=307","ServerKey":"pl181","X":507,"Y":531},{"Bonus":0,"Continent":"K55","ID":308,"Name":"0016 K55 and987 OZDR.","PlayerID":3613413,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=308","ServerKey":"pl181","X":504,"Y":560},{"Bonus":0,"Continent":"K54","ID":310,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=310","ServerKey":"pl181","X":452,"Y":500},{"Bonus":0,"Continent":"K55","ID":313,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=313","ServerKey":"pl181","X":577,"Y":539},{"Bonus":0,"Continent":"K45","ID":315,"Name":"Wioska Mateoo","PlayerID":699432672,"Points":4155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=315","ServerKey":"pl181","X":551,"Y":493},{"Bonus":0,"Continent":"K55","ID":316,"Name":"Nowy Trueschool","PlayerID":699785935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=316","ServerKey":"pl181","X":503,"Y":523},{"Bonus":0,"Continent":"K44","ID":317,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=317","ServerKey":"pl181","X":450,"Y":499},{"Bonus":0,"Continent":"K56","ID":318,"Name":"028 Oxenfurt","PlayerID":699272880,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=318","ServerKey":"pl181","X":620,"Y":521},{"Bonus":0,"Continent":"K54","ID":320,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=320","ServerKey":"pl181","X":429,"Y":522},{"Bonus":0,"Continent":"K54","ID":321,"Name":"Amaranthe","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=321","ServerKey":"pl181","X":498,"Y":520},{"Bonus":3,"Continent":"K55","ID":322,"Name":"Merhet","PlayerID":698215322,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=322","ServerKey":"pl181","X":523,"Y":582},{"Bonus":0,"Continent":"K54","ID":323,"Name":"Village","PlayerID":849094067,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=323","ServerKey":"pl181","X":488,"Y":528},{"Bonus":0,"Continent":"K54","ID":324,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=324","ServerKey":"pl181","X":426,"Y":510},{"Bonus":0,"Continent":"K54","ID":325,"Name":"30002","PlayerID":848915531,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=325","ServerKey":"pl181","X":494,"Y":541},{"Bonus":0,"Continent":"K54","ID":327,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=327","ServerKey":"pl181","X":432,"Y":501},{"Bonus":0,"Continent":"K54","ID":328,"Name":"2. BC","PlayerID":849087855,"Points":7395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=328","ServerKey":"pl181","X":496,"Y":531},{"Bonus":0,"Continent":"K45","ID":330,"Name":".:097:. Chillout","PlayerID":848934935,"Points":4267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=330","ServerKey":"pl181","X":543,"Y":445},{"Bonus":0,"Continent":"K45","ID":332,"Name":"-[021]- Khunyang Chhish","PlayerID":849092827,"Points":7739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=332","ServerKey":"pl181","X":552,"Y":491},{"Bonus":0,"Continent":"K54","ID":334,"Name":"keepo","PlayerID":848967710,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=334","ServerKey":"pl181","X":486,"Y":528},{"Bonus":3,"Continent":"K55","ID":335,"Name":"015. Wioska tukkan","PlayerID":8788366,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=335","ServerKey":"pl181","X":580,"Y":514},{"Bonus":0,"Continent":"K34","ID":337,"Name":"0000","PlayerID":699431255,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=337","ServerKey":"pl181","X":441,"Y":396},{"Bonus":0,"Continent":"K45","ID":338,"Name":"Wioska_01","PlayerID":8674163,"Points":5417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=338","ServerKey":"pl181","X":537,"Y":451},{"Bonus":0,"Continent":"K43","ID":339,"Name":"xhav","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=339","ServerKey":"pl181","X":396,"Y":472},{"Bonus":0,"Continent":"K55","ID":340,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=340","ServerKey":"pl181","X":516,"Y":537},{"Bonus":0,"Continent":"K54","ID":343,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=343","ServerKey":"pl181","X":485,"Y":513},{"Bonus":0,"Continent":"K45","ID":344,"Name":"MasteroN 02","PlayerID":699379895,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=344","ServerKey":"pl181","X":568,"Y":449},{"Bonus":0,"Continent":"K55","ID":347,"Name":"Wioska Wojtek150 005","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=347","ServerKey":"pl181","X":533,"Y":523},{"Bonus":0,"Continent":"K34","ID":348,"Name":"014","PlayerID":698739350,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=348","ServerKey":"pl181","X":491,"Y":387},{"Bonus":0,"Continent":"K54","ID":349,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=349","ServerKey":"pl181","X":428,"Y":514},{"Bonus":2,"Continent":"K45","ID":350,"Name":"215 Broome","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=350","ServerKey":"pl181","X":531,"Y":436},{"Bonus":0,"Continent":"K54","ID":352,"Name":"NOT?","PlayerID":9236866,"Points":7013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=352","ServerKey":"pl181","X":426,"Y":540},{"Bonus":0,"Continent":"K44","ID":354,"Name":"Monetki","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=354","ServerKey":"pl181","X":471,"Y":429},{"Bonus":0,"Continent":"K54","ID":356,"Name":"Warzywniak 020","PlayerID":698290577,"Points":1950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=356","ServerKey":"pl181","X":451,"Y":546},{"Bonus":4,"Continent":"K55","ID":357,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=357","ServerKey":"pl181","X":535,"Y":547},{"Bonus":0,"Continent":"K55","ID":360,"Name":"0.Hollywood","PlayerID":698215322,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=360","ServerKey":"pl181","X":520,"Y":584},{"Bonus":0,"Continent":"K54","ID":362,"Name":"025","PlayerID":2585846,"Points":4873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=362","ServerKey":"pl181","X":467,"Y":525},{"Bonus":0,"Continent":"K45","ID":364,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=364","ServerKey":"pl181","X":519,"Y":485},{"Bonus":0,"Continent":"K55","ID":366,"Name":"Vito 1","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=366","ServerKey":"pl181","X":511,"Y":533},{"Bonus":0,"Continent":"K45","ID":367,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=367","ServerKey":"pl181","X":516,"Y":451},{"Bonus":0,"Continent":"K45","ID":368,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=368","ServerKey":"pl181","X":513,"Y":459},{"Bonus":0,"Continent":"K45","ID":369,"Name":".:029:. Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=369","ServerKey":"pl181","X":518,"Y":453},{"Bonus":0,"Continent":"K54","ID":370,"Name":"0030 K54 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=370","ServerKey":"pl181","X":488,"Y":551},{"Bonus":0,"Continent":"K45","ID":371,"Name":"1-*Airdrie...","PlayerID":8649412,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=371","ServerKey":"pl181","X":526,"Y":445},{"Bonus":0,"Continent":"K54","ID":372,"Name":"064. ALFI","PlayerID":8539216,"Points":1475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=372","ServerKey":"pl181","X":481,"Y":563},{"Bonus":0,"Continent":"K45","ID":373,"Name":"213 Darwin","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=373","ServerKey":"pl181","X":529,"Y":438},{"Bonus":0,"Continent":"K44","ID":374,"Name":"A023","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=374","ServerKey":"pl181","X":487,"Y":415},{"Bonus":0,"Continent":"K45","ID":375,"Name":"19-Mesquite","PlayerID":8649412,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=375","ServerKey":"pl181","X":528,"Y":446},{"Bonus":0,"Continent":"K55","ID":376,"Name":"Forteca","PlayerID":606407,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=376","ServerKey":"pl181","X":502,"Y":569},{"Bonus":0,"Continent":"K45","ID":377,"Name":".:039:. Chillout","PlayerID":848934935,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=377","ServerKey":"pl181","X":518,"Y":449},{"Bonus":0,"Continent":"K45","ID":378,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=378","ServerKey":"pl181","X":507,"Y":475},{"Bonus":0,"Continent":"K45","ID":379,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=379","ServerKey":"pl181","X":515,"Y":445},{"Bonus":0,"Continent":"K54","ID":380,"Name":"NOT?","PlayerID":9236866,"Points":1724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=380","ServerKey":"pl181","X":436,"Y":552},{"Bonus":0,"Continent":"K45","ID":381,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=381","ServerKey":"pl181","X":519,"Y":452},{"Bonus":0,"Continent":"K45","ID":382,"Name":"Szlachcic","PlayerID":699098531,"Points":8472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=382","ServerKey":"pl181","X":508,"Y":465},{"Bonus":0,"Continent":"K54","ID":383,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=383","ServerKey":"pl181","X":483,"Y":516},{"Bonus":0,"Continent":"K45","ID":384,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=384","ServerKey":"pl181","X":519,"Y":454},{"Bonus":0,"Continent":"K45","ID":385,"Name":"KoƄczyć czas:)","PlayerID":699368887,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=385","ServerKey":"pl181","X":548,"Y":446},{"Bonus":0,"Continent":"K45","ID":386,"Name":".:031:. Chillout","PlayerID":848934935,"Points":6720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=386","ServerKey":"pl181","X":521,"Y":448},{"Bonus":0,"Continent":"K45","ID":387,"Name":".:041:. Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=387","ServerKey":"pl181","X":520,"Y":451},{"Bonus":0,"Continent":"K44","ID":388,"Name":"Osada","PlayerID":699098531,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=388","ServerKey":"pl181","X":498,"Y":455},{"Bonus":0,"Continent":"K45","ID":389,"Name":".achim.","PlayerID":6936607,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=389","ServerKey":"pl181","X":527,"Y":447},{"Bonus":0,"Continent":"K44","ID":390,"Name":"+44 75 Saint Omer","PlayerID":698361257,"Points":9635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=390","ServerKey":"pl181","X":454,"Y":473},{"Bonus":0,"Continent":"K45","ID":391,"Name":"Szlachcic","PlayerID":699098531,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=391","ServerKey":"pl181","X":516,"Y":459},{"Bonus":0,"Continent":"K44","ID":392,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=392","ServerKey":"pl181","X":414,"Y":486},{"Bonus":0,"Continent":"K45","ID":394,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=394","ServerKey":"pl181","X":516,"Y":429},{"Bonus":0,"Continent":"K34","ID":395,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=395","ServerKey":"pl181","X":475,"Y":389},{"Bonus":0,"Continent":"K54","ID":396,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=396","ServerKey":"pl181","X":491,"Y":554},{"Bonus":0,"Continent":"K45","ID":397,"Name":"xxx","PlayerID":698239813,"Points":10199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=397","ServerKey":"pl181","X":511,"Y":446},{"Bonus":0,"Continent":"K54","ID":398,"Name":"05. C3F","PlayerID":699781762,"Points":9572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=398","ServerKey":"pl181","X":475,"Y":507},{"Bonus":0,"Continent":"K45","ID":399,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=399","ServerKey":"pl181","X":529,"Y":437},{"Bonus":0,"Continent":"K45","ID":400,"Name":"AbacadA 019","PlayerID":699756210,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=400","ServerKey":"pl181","X":559,"Y":431},{"Bonus":0,"Continent":"K45","ID":401,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=401","ServerKey":"pl181","X":507,"Y":434},{"Bonus":0,"Continent":"K45","ID":402,"Name":"C034","PlayerID":699299123,"Points":7544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=402","ServerKey":"pl181","X":522,"Y":450},{"Bonus":0,"Continent":"K44","ID":403,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=403","ServerKey":"pl181","X":486,"Y":470},{"Bonus":0,"Continent":"K45","ID":404,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=404","ServerKey":"pl181","X":517,"Y":444},{"Bonus":0,"Continent":"K54","ID":406,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=406","ServerKey":"pl181","X":423,"Y":518},{"Bonus":0,"Continent":"K45","ID":407,"Name":"Szlachcic","PlayerID":699098531,"Points":7157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=407","ServerKey":"pl181","X":505,"Y":460},{"Bonus":0,"Continent":"K45","ID":408,"Name":"#11.","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=408","ServerKey":"pl181","X":520,"Y":464},{"Bonus":0,"Continent":"K45","ID":409,"Name":"Osada","PlayerID":699098531,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=409","ServerKey":"pl181","X":509,"Y":451},{"Bonus":1,"Continent":"K45","ID":410,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=410","ServerKey":"pl181","X":522,"Y":484},{"Bonus":0,"Continent":"K45","ID":411,"Name":"Osada","PlayerID":699098531,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=411","ServerKey":"pl181","X":507,"Y":456},{"Bonus":0,"Continent":"K44","ID":412,"Name":"-xx10","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=412","ServerKey":"pl181","X":498,"Y":495},{"Bonus":0,"Continent":"K45","ID":413,"Name":"Osada","PlayerID":699098531,"Points":4916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=413","ServerKey":"pl181","X":511,"Y":453},{"Bonus":0,"Continent":"K44","ID":414,"Name":"Szlachcic","PlayerID":699098531,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=414","ServerKey":"pl181","X":499,"Y":457},{"Bonus":0,"Continent":"K55","ID":415,"Name":"Wioska 432","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=415","ServerKey":"pl181","X":561,"Y":519},{"Bonus":0,"Continent":"K44","ID":416,"Name":"Gravity","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=416","ServerKey":"pl181","X":412,"Y":458},{"Bonus":0,"Continent":"K45","ID":417,"Name":"Wioska 514","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=417","ServerKey":"pl181","X":571,"Y":446},{"Bonus":0,"Continent":"K45","ID":418,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=418","ServerKey":"pl181","X":510,"Y":466},{"Bonus":0,"Continent":"K54","ID":419,"Name":"051. ALFI","PlayerID":8539216,"Points":1489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=419","ServerKey":"pl181","X":483,"Y":566},{"Bonus":0,"Continent":"K45","ID":420,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=420","ServerKey":"pl181","X":504,"Y":440},{"Bonus":0,"Continent":"K54","ID":421,"Name":"#0098 KopytĂłw","PlayerID":9272054,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=421","ServerKey":"pl181","X":475,"Y":557},{"Bonus":1,"Continent":"K44","ID":422,"Name":"Cast Away 018","PlayerID":698290577,"Points":10867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=422","ServerKey":"pl181","X":445,"Y":483},{"Bonus":0,"Continent":"K45","ID":424,"Name":".:018:. Chillout","PlayerID":848934935,"Points":7401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=424","ServerKey":"pl181","X":508,"Y":420},{"Bonus":0,"Continent":"K45","ID":425,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":8904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=425","ServerKey":"pl181","X":514,"Y":438},{"Bonus":0,"Continent":"K55","ID":426,"Name":"- 300 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=426","ServerKey":"pl181","X":529,"Y":582},{"Bonus":7,"Continent":"K45","ID":427,"Name":".:063:. Chillout","PlayerID":848934935,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=427","ServerKey":"pl181","X":512,"Y":425},{"Bonus":0,"Continent":"K45","ID":429,"Name":"028#","PlayerID":8155296,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=429","ServerKey":"pl181","X":538,"Y":455},{"Bonus":0,"Continent":"K45","ID":430,"Name":".:034:. Chillout","PlayerID":848934935,"Points":3306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=430","ServerKey":"pl181","X":521,"Y":443},{"Bonus":0,"Continent":"K45","ID":431,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=431","ServerKey":"pl181","X":503,"Y":435},{"Bonus":0,"Continent":"K54","ID":433,"Name":"Kasyno","PlayerID":7249451,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=433","ServerKey":"pl181","X":445,"Y":516},{"Bonus":0,"Continent":"K45","ID":434,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=434","ServerKey":"pl181","X":517,"Y":439},{"Bonus":0,"Continent":"K54","ID":435,"Name":"087.","PlayerID":8788366,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=435","ServerKey":"pl181","X":475,"Y":500},{"Bonus":0,"Continent":"K45","ID":436,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=436","ServerKey":"pl181","X":501,"Y":445},{"Bonus":0,"Continent":"K55","ID":437,"Name":"JaamMwG 003","PlayerID":848987051,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=437","ServerKey":"pl181","X":526,"Y":523},{"Bonus":0,"Continent":"K45","ID":438,"Name":"Szlachcic","PlayerID":699098531,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=438","ServerKey":"pl181","X":508,"Y":460},{"Bonus":0,"Continent":"K55","ID":439,"Name":"016","PlayerID":699316421,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=439","ServerKey":"pl181","X":566,"Y":549},{"Bonus":0,"Continent":"K45","ID":440,"Name":"#04.","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=440","ServerKey":"pl181","X":525,"Y":469},{"Bonus":0,"Continent":"K55","ID":441,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=441","ServerKey":"pl181","X":533,"Y":563},{"Bonus":0,"Continent":"K45","ID":442,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=442","ServerKey":"pl181","X":512,"Y":451},{"Bonus":0,"Continent":"K44","ID":443,"Name":"SsSs","PlayerID":1536625,"Points":9456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=443","ServerKey":"pl181","X":421,"Y":496},{"Bonus":0,"Continent":"K45","ID":445,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=445","ServerKey":"pl181","X":500,"Y":447},{"Bonus":8,"Continent":"K44","ID":446,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=446","ServerKey":"pl181","X":477,"Y":437},{"Bonus":0,"Continent":"K45","ID":447,"Name":"4 w","PlayerID":6923061,"Points":2697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=447","ServerKey":"pl181","X":530,"Y":460},{"Bonus":0,"Continent":"K54","ID":448,"Name":"kathare","PlayerID":873575,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=448","ServerKey":"pl181","X":498,"Y":570},{"Bonus":5,"Continent":"K44","ID":449,"Name":"x 011. Garƛć dynamitu","PlayerID":698290577,"Points":7856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=449","ServerKey":"pl181","X":414,"Y":490},{"Bonus":0,"Continent":"K44","ID":450,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=450","ServerKey":"pl181","X":499,"Y":476},{"Bonus":0,"Continent":"K55","ID":451,"Name":"K55 kaszka manna:P","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=451","ServerKey":"pl181","X":542,"Y":519},{"Bonus":0,"Continent":"K44","ID":452,"Name":"Szlachcic","PlayerID":699098531,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=452","ServerKey":"pl181","X":496,"Y":483},{"Bonus":0,"Continent":"K45","ID":453,"Name":"!Alakazam","PlayerID":699795378,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=453","ServerKey":"pl181","X":567,"Y":445},{"Bonus":0,"Continent":"K45","ID":454,"Name":"Minas Tirith","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=454","ServerKey":"pl181","X":505,"Y":481},{"Bonus":0,"Continent":"K54","ID":455,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=455","ServerKey":"pl181","X":457,"Y":514},{"Bonus":0,"Continent":"K45","ID":456,"Name":"Szlachcic","PlayerID":699098531,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=456","ServerKey":"pl181","X":505,"Y":472},{"Bonus":0,"Continent":"K45","ID":457,"Name":".achim.","PlayerID":6936607,"Points":9281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=457","ServerKey":"pl181","X":532,"Y":461},{"Bonus":0,"Continent":"K45","ID":458,"Name":"093.","PlayerID":8788366,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=458","ServerKey":"pl181","X":500,"Y":481},{"Bonus":0,"Continent":"K54","ID":459,"Name":"067. ALFI","PlayerID":8539216,"Points":1331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=459","ServerKey":"pl181","X":463,"Y":568},{"Bonus":0,"Continent":"K44","ID":460,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=460","ServerKey":"pl181","X":488,"Y":474},{"Bonus":0,"Continent":"K55","ID":461,"Name":"004","PlayerID":848915531,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=461","ServerKey":"pl181","X":508,"Y":545},{"Bonus":0,"Continent":"K45","ID":462,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=462","ServerKey":"pl181","X":504,"Y":467},{"Bonus":0,"Continent":"K55","ID":463,"Name":"|083|","PlayerID":699664910,"Points":6614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=463","ServerKey":"pl181","X":557,"Y":513},{"Bonus":0,"Continent":"K45","ID":464,"Name":"0016 bęc","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=464","ServerKey":"pl181","X":513,"Y":494},{"Bonus":0,"Continent":"K45","ID":465,"Name":"020","PlayerID":848930111,"Points":9205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=465","ServerKey":"pl181","X":537,"Y":474},{"Bonus":7,"Continent":"K44","ID":466,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":9784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=466","ServerKey":"pl181","X":460,"Y":453},{"Bonus":0,"Continent":"K44","ID":467,"Name":"Wioska Ko5a","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=467","ServerKey":"pl181","X":492,"Y":478},{"Bonus":0,"Continent":"K45","ID":468,"Name":"004","PlayerID":849070464,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=468","ServerKey":"pl181","X":568,"Y":482},{"Bonus":0,"Continent":"K44","ID":469,"Name":"-x7","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=469","ServerKey":"pl181","X":499,"Y":498},{"Bonus":0,"Continent":"K55","ID":470,"Name":"CALL 1041","PlayerID":699784536,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=470","ServerKey":"pl181","X":550,"Y":541},{"Bonus":0,"Continent":"K45","ID":471,"Name":"002","PlayerID":699098531,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=471","ServerKey":"pl181","X":503,"Y":478},{"Bonus":0,"Continent":"K45","ID":472,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=472","ServerKey":"pl181","X":505,"Y":469},{"Bonus":0,"Continent":"K45","ID":473,"Name":"Polania 002","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=473","ServerKey":"pl181","X":540,"Y":451},{"Bonus":0,"Continent":"K55","ID":474,"Name":"013W Wiocha","PlayerID":8323711,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=474","ServerKey":"pl181","X":558,"Y":511},{"Bonus":0,"Continent":"K44","ID":475,"Name":"Szlachcic","PlayerID":699098531,"Points":9767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=475","ServerKey":"pl181","X":494,"Y":467},{"Bonus":0,"Continent":"K54","ID":476,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=476","ServerKey":"pl181","X":448,"Y":563},{"Bonus":0,"Continent":"K44","ID":477,"Name":"Szlachcic","PlayerID":699098531,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=477","ServerKey":"pl181","X":491,"Y":477},{"Bonus":0,"Continent":"K44","ID":478,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=478","ServerKey":"pl181","X":428,"Y":482},{"Bonus":0,"Continent":"K45","ID":479,"Name":"Szlachcic","PlayerID":699098531,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=479","ServerKey":"pl181","X":500,"Y":470},{"Bonus":0,"Continent":"K44","ID":480,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=480","ServerKey":"pl181","X":439,"Y":466},{"Bonus":0,"Continent":"K45","ID":481,"Name":"Szlachcic","PlayerID":699098531,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=481","ServerKey":"pl181","X":508,"Y":481},{"Bonus":0,"Continent":"K45","ID":482,"Name":"067.","PlayerID":8788366,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=482","ServerKey":"pl181","X":509,"Y":493},{"Bonus":0,"Continent":"K45","ID":483,"Name":"Szlachcic","PlayerID":699098531,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=483","ServerKey":"pl181","X":504,"Y":472},{"Bonus":0,"Continent":"K54","ID":484,"Name":"009","PlayerID":699510259,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=484","ServerKey":"pl181","X":414,"Y":501},{"Bonus":0,"Continent":"K45","ID":485,"Name":"0018","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=485","ServerKey":"pl181","X":506,"Y":497},{"Bonus":0,"Continent":"K55","ID":486,"Name":"0056","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=486","ServerKey":"pl181","X":513,"Y":519},{"Bonus":9,"Continent":"K45","ID":487,"Name":"#Scyther","PlayerID":699795378,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=487","ServerKey":"pl181","X":574,"Y":457},{"Bonus":0,"Continent":"K45","ID":488,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=488","ServerKey":"pl181","X":518,"Y":477},{"Bonus":0,"Continent":"K54","ID":489,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=489","ServerKey":"pl181","X":485,"Y":512},{"Bonus":0,"Continent":"K44","ID":490,"Name":"-xx15","PlayerID":848967710,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=490","ServerKey":"pl181","X":491,"Y":496},{"Bonus":0,"Continent":"K44","ID":491,"Name":"0004 Venezuela","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=491","ServerKey":"pl181","X":493,"Y":471},{"Bonus":0,"Continent":"K44","ID":492,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=492","ServerKey":"pl181","X":423,"Y":463},{"Bonus":0,"Continent":"K44","ID":493,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=493","ServerKey":"pl181","X":492,"Y":480},{"Bonus":0,"Continent":"K44","ID":494,"Name":"K44 024","PlayerID":698290577,"Points":5529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=494","ServerKey":"pl181","X":426,"Y":495},{"Bonus":0,"Continent":"K44","ID":495,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=495","ServerKey":"pl181","X":491,"Y":484},{"Bonus":0,"Continent":"K54","ID":496,"Name":"053. ALFI","PlayerID":8539216,"Points":2872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=496","ServerKey":"pl181","X":486,"Y":567},{"Bonus":0,"Continent":"K44","ID":497,"Name":"Szlachcic","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=497","ServerKey":"pl181","X":496,"Y":457},{"Bonus":0,"Continent":"K44","ID":498,"Name":"Szlachcic","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=498","ServerKey":"pl181","X":494,"Y":475},{"Bonus":0,"Continent":"K45","ID":499,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=499","ServerKey":"pl181","X":504,"Y":468},{"Bonus":0,"Continent":"K45","ID":500,"Name":"043.","PlayerID":8788366,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=500","ServerKey":"pl181","X":509,"Y":488},{"Bonus":0,"Continent":"K45","ID":501,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=501","ServerKey":"pl181","X":559,"Y":469},{"Bonus":0,"Continent":"K44","ID":502,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=502","ServerKey":"pl181","X":493,"Y":478},{"Bonus":0,"Continent":"K45","ID":503,"Name":"#5#","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=503","ServerKey":"pl181","X":500,"Y":480},{"Bonus":0,"Continent":"K44","ID":504,"Name":"095 Grand Junction","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=504","ServerKey":"pl181","X":477,"Y":461},{"Bonus":0,"Continent":"K44","ID":505,"Name":"002","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=505","ServerKey":"pl181","X":489,"Y":472},{"Bonus":0,"Continent":"K44","ID":506,"Name":"K44 026","PlayerID":698290577,"Points":4303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=506","ServerKey":"pl181","X":419,"Y":499},{"Bonus":0,"Continent":"K45","ID":507,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=507","ServerKey":"pl181","X":510,"Y":464},{"Bonus":0,"Continent":"K44","ID":508,"Name":"Szlachcic","PlayerID":699098531,"Points":8896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=508","ServerKey":"pl181","X":496,"Y":469},{"Bonus":0,"Continent":"K44","ID":509,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=509","ServerKey":"pl181","X":487,"Y":484},{"Bonus":0,"Continent":"K44","ID":510,"Name":"Szlachcic","PlayerID":699098531,"Points":10115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=510","ServerKey":"pl181","X":496,"Y":461},{"Bonus":0,"Continent":"K45","ID":511,"Name":"0027","PlayerID":698599365,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=511","ServerKey":"pl181","X":504,"Y":492},{"Bonus":0,"Continent":"K55","ID":512,"Name":"0017 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=512","ServerKey":"pl181","X":506,"Y":541},{"Bonus":0,"Continent":"K45","ID":513,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=513","ServerKey":"pl181","X":517,"Y":488},{"Bonus":0,"Continent":"K44","ID":514,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=514","ServerKey":"pl181","X":495,"Y":489},{"Bonus":0,"Continent":"K45","ID":515,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=515","ServerKey":"pl181","X":515,"Y":494},{"Bonus":0,"Continent":"K54","ID":516,"Name":"Zero Stresu","PlayerID":698971484,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=516","ServerKey":"pl181","X":448,"Y":533},{"Bonus":0,"Continent":"K45","ID":517,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=517","ServerKey":"pl181","X":526,"Y":495},{"Bonus":0,"Continent":"K54","ID":518,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":7126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=518","ServerKey":"pl181","X":456,"Y":517},{"Bonus":0,"Continent":"K45","ID":519,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=519","ServerKey":"pl181","X":513,"Y":490},{"Bonus":0,"Continent":"K44","ID":520,"Name":"K44 010","PlayerID":698290577,"Points":7003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=520","ServerKey":"pl181","X":431,"Y":485},{"Bonus":0,"Continent":"K55","ID":521,"Name":"Wioska 11","PlayerID":848967710,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=521","ServerKey":"pl181","X":520,"Y":504},{"Bonus":0,"Continent":"K54","ID":522,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=522","ServerKey":"pl181","X":417,"Y":500},{"Bonus":0,"Continent":"K45","ID":523,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=523","ServerKey":"pl181","X":520,"Y":489},{"Bonus":0,"Continent":"K44","ID":524,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=524","ServerKey":"pl181","X":481,"Y":442},{"Bonus":0,"Continent":"K55","ID":525,"Name":"078.","PlayerID":8788366,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=525","ServerKey":"pl181","X":508,"Y":503},{"Bonus":0,"Continent":"K54","ID":526,"Name":"KIELBA 028","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=526","ServerKey":"pl181","X":451,"Y":577},{"Bonus":0,"Continent":"K45","ID":527,"Name":"Szlachcic","PlayerID":699098531,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=527","ServerKey":"pl181","X":508,"Y":477},{"Bonus":4,"Continent":"K54","ID":528,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=528","ServerKey":"pl181","X":467,"Y":513},{"Bonus":0,"Continent":"K45","ID":529,"Name":"054.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=529","ServerKey":"pl181","X":506,"Y":492},{"Bonus":0,"Continent":"K45","ID":530,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=530","ServerKey":"pl181","X":517,"Y":494},{"Bonus":0,"Continent":"K45","ID":531,"Name":"K45 - 004","PlayerID":6510480,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=531","ServerKey":"pl181","X":558,"Y":465},{"Bonus":2,"Continent":"K44","ID":532,"Name":"Szlachcic","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=532","ServerKey":"pl181","X":491,"Y":482},{"Bonus":0,"Continent":"K65","ID":533,"Name":"022","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=533","ServerKey":"pl181","X":567,"Y":603},{"Bonus":0,"Continent":"K54","ID":534,"Name":"Winter is coming","PlayerID":698971484,"Points":2974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=534","ServerKey":"pl181","X":444,"Y":548},{"Bonus":0,"Continent":"K45","ID":535,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=535","ServerKey":"pl181","X":513,"Y":492},{"Bonus":0,"Continent":"K55","ID":536,"Name":"CALL 976","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=536","ServerKey":"pl181","X":547,"Y":544},{"Bonus":0,"Continent":"K45","ID":537,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=537","ServerKey":"pl181","X":521,"Y":495},{"Bonus":0,"Continent":"K45","ID":538,"Name":"112.","PlayerID":8788366,"Points":6241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=538","ServerKey":"pl181","X":534,"Y":485},{"Bonus":0,"Continent":"K45","ID":539,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=539","ServerKey":"pl181","X":515,"Y":498},{"Bonus":0,"Continent":"K45","ID":540,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=540","ServerKey":"pl181","X":515,"Y":437},{"Bonus":0,"Continent":"K45","ID":541,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=541","ServerKey":"pl181","X":519,"Y":488},{"Bonus":0,"Continent":"K45","ID":542,"Name":"[088]","PlayerID":848985692,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=542","ServerKey":"pl181","X":535,"Y":486},{"Bonus":0,"Continent":"K55","ID":543,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=543","ServerKey":"pl181","X":576,"Y":592},{"Bonus":0,"Continent":"K54","ID":544,"Name":"0593","PlayerID":698659980,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=544","ServerKey":"pl181","X":476,"Y":546},{"Bonus":0,"Continent":"K45","ID":545,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=545","ServerKey":"pl181","X":513,"Y":486},{"Bonus":0,"Continent":"K45","ID":546,"Name":"017 C12","PlayerID":848967710,"Points":3381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=546","ServerKey":"pl181","X":522,"Y":466},{"Bonus":0,"Continent":"K45","ID":547,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=547","ServerKey":"pl181","X":525,"Y":486},{"Bonus":0,"Continent":"K45","ID":548,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=548","ServerKey":"pl181","X":514,"Y":478},{"Bonus":0,"Continent":"K44","ID":549,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=549","ServerKey":"pl181","X":482,"Y":416},{"Bonus":1,"Continent":"K45","ID":550,"Name":"Joms 008","PlayerID":699756210,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=550","ServerKey":"pl181","X":529,"Y":417},{"Bonus":0,"Continent":"K44","ID":551,"Name":"Szlachcic","PlayerID":699098531,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=551","ServerKey":"pl181","X":499,"Y":487},{"Bonus":0,"Continent":"K45","ID":552,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=552","ServerKey":"pl181","X":520,"Y":480},{"Bonus":0,"Continent":"K45","ID":553,"Name":"CJRT","PlayerID":699368887,"Points":7573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=553","ServerKey":"pl181","X":544,"Y":469},{"Bonus":0,"Continent":"K45","ID":554,"Name":"011","PlayerID":8191129,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=554","ServerKey":"pl181","X":528,"Y":498},{"Bonus":0,"Continent":"K56","ID":555,"Name":"0014","PlayerID":6510480,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=555","ServerKey":"pl181","X":621,"Y":528},{"Bonus":0,"Continent":"K55","ID":556,"Name":"WioskaC","PlayerID":8369778,"Points":9762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=556","ServerKey":"pl181","X":516,"Y":584},{"Bonus":0,"Continent":"K55","ID":557,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=557","ServerKey":"pl181","X":520,"Y":507},{"Bonus":0,"Continent":"K55","ID":558,"Name":"Mzm20","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=558","ServerKey":"pl181","X":558,"Y":529},{"Bonus":0,"Continent":"K56","ID":559,"Name":"Taran 009","PlayerID":698562644,"Points":9930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=559","ServerKey":"pl181","X":623,"Y":528},{"Bonus":0,"Continent":"K55","ID":560,"Name":"[135]","PlayerID":8000875,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=560","ServerKey":"pl181","X":563,"Y":535},{"Bonus":0,"Continent":"K45","ID":561,"Name":"0014","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=561","ServerKey":"pl181","X":510,"Y":499},{"Bonus":0,"Continent":"K44","ID":562,"Name":"?+44 86 Zegerscappel","PlayerID":698361257,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=562","ServerKey":"pl181","X":464,"Y":486},{"Bonus":0,"Continent":"K55","ID":563,"Name":"001","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=563","ServerKey":"pl181","X":509,"Y":502},{"Bonus":0,"Continent":"K45","ID":564,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":7964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=564","ServerKey":"pl181","X":516,"Y":481},{"Bonus":0,"Continent":"K45","ID":565,"Name":"052.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=565","ServerKey":"pl181","X":504,"Y":494},{"Bonus":0,"Continent":"K54","ID":566,"Name":"F083","PlayerID":699189792,"Points":9072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=566","ServerKey":"pl181","X":490,"Y":524},{"Bonus":0,"Continent":"K55","ID":567,"Name":"[066] My","PlayerID":848985692,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=567","ServerKey":"pl181","X":528,"Y":502},{"Bonus":0,"Continent":"K55","ID":568,"Name":"tawerna","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=568","ServerKey":"pl181","X":570,"Y":594},{"Bonus":0,"Continent":"K45","ID":569,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=569","ServerKey":"pl181","X":518,"Y":475},{"Bonus":0,"Continent":"K45","ID":570,"Name":"006 Wioska","PlayerID":848967710,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=570","ServerKey":"pl181","X":521,"Y":466},{"Bonus":0,"Continent":"K45","ID":571,"Name":"C008","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=571","ServerKey":"pl181","X":524,"Y":457},{"Bonus":0,"Continent":"K44","ID":572,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=572","ServerKey":"pl181","X":490,"Y":477},{"Bonus":0,"Continent":"K45","ID":573,"Name":"#03.","PlayerID":848967710,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=573","ServerKey":"pl181","X":524,"Y":469},{"Bonus":0,"Continent":"K54","ID":574,"Name":"019. ALFI","PlayerID":8539216,"Points":1424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=574","ServerKey":"pl181","X":487,"Y":571},{"Bonus":0,"Continent":"K45","ID":575,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=575","ServerKey":"pl181","X":516,"Y":473},{"Bonus":0,"Continent":"K55","ID":576,"Name":"Szafir","PlayerID":699785935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=576","ServerKey":"pl181","X":533,"Y":542},{"Bonus":0,"Continent":"K45","ID":577,"Name":"006","PlayerID":698881022,"Points":3150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=577","ServerKey":"pl181","X":507,"Y":481},{"Bonus":0,"Continent":"K45","ID":579,"Name":"079.","PlayerID":849094609,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=579","ServerKey":"pl181","X":567,"Y":465},{"Bonus":0,"Continent":"K56","ID":580,"Name":"014 piotr","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=580","ServerKey":"pl181","X":618,"Y":521},{"Bonus":0,"Continent":"K54","ID":581,"Name":"Sharks!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=581","ServerKey":"pl181","X":498,"Y":510},{"Bonus":0,"Continent":"K55","ID":582,"Name":"0026","PlayerID":698599365,"Points":5978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=582","ServerKey":"pl181","X":505,"Y":501},{"Bonus":0,"Continent":"K54","ID":583,"Name":"???","PlayerID":698704189,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=583","ServerKey":"pl181","X":481,"Y":546},{"Bonus":0,"Continent":"K55","ID":584,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=584","ServerKey":"pl181","X":523,"Y":501},{"Bonus":0,"Continent":"K54","ID":585,"Name":"~052.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=585","ServerKey":"pl181","X":493,"Y":571},{"Bonus":0,"Continent":"K45","ID":586,"Name":"012","PlayerID":8191129,"Points":11819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=586","ServerKey":"pl181","X":524,"Y":498},{"Bonus":0,"Continent":"K55","ID":587,"Name":"[068] Bunuh kamu","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=587","ServerKey":"pl181","X":535,"Y":511},{"Bonus":0,"Continent":"K45","ID":588,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=588","ServerKey":"pl181","X":528,"Y":487},{"Bonus":0,"Continent":"K45","ID":589,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=589","ServerKey":"pl181","X":515,"Y":496},{"Bonus":0,"Continent":"K44","ID":590,"Name":"206 Ohio Rios","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=590","ServerKey":"pl181","X":465,"Y":462},{"Bonus":0,"Continent":"K45","ID":591,"Name":"123.","PlayerID":8788366,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=591","ServerKey":"pl181","X":512,"Y":485},{"Bonus":0,"Continent":"K54","ID":592,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":4142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=592","ServerKey":"pl181","X":451,"Y":534},{"Bonus":0,"Continent":"K45","ID":593,"Name":"2 Mnie","PlayerID":6923061,"Points":4120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=593","ServerKey":"pl181","X":535,"Y":475},{"Bonus":0,"Continent":"K64","ID":594,"Name":"~074.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=594","ServerKey":"pl181","X":485,"Y":615},{"Bonus":0,"Continent":"K45","ID":595,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=595","ServerKey":"pl181","X":520,"Y":488},{"Bonus":0,"Continent":"K45","ID":596,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=596","ServerKey":"pl181","X":521,"Y":486},{"Bonus":0,"Continent":"K55","ID":597,"Name":"[026] Kubulala","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=597","ServerKey":"pl181","X":587,"Y":523},{"Bonus":0,"Continent":"K55","ID":598,"Name":"0005 K55 and987 OZDR.","PlayerID":3613413,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=598","ServerKey":"pl181","X":505,"Y":550},{"Bonus":0,"Continent":"K54","ID":599,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=599","ServerKey":"pl181","X":479,"Y":531},{"Bonus":0,"Continent":"K55","ID":600,"Name":"F010","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=600","ServerKey":"pl181","X":505,"Y":535},{"Bonus":0,"Continent":"K55","ID":601,"Name":"Mzm25","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=601","ServerKey":"pl181","X":559,"Y":528},{"Bonus":0,"Continent":"K55","ID":602,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=602","ServerKey":"pl181","X":508,"Y":533},{"Bonus":0,"Continent":"K45","ID":603,"Name":"x05","PlayerID":8459255,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=603","ServerKey":"pl181","X":550,"Y":472},{"Bonus":0,"Continent":"K55","ID":604,"Name":"0043 K55 and987 OZDR","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=604","ServerKey":"pl181","X":506,"Y":537},{"Bonus":0,"Continent":"K45","ID":605,"Name":"Gattacka","PlayerID":699298370,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=605","ServerKey":"pl181","X":587,"Y":499},{"Bonus":0,"Continent":"K55","ID":606,"Name":"003 B.O.R","PlayerID":699524362,"Points":8538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=606","ServerKey":"pl181","X":576,"Y":584},{"Bonus":0,"Continent":"K55","ID":607,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=607","ServerKey":"pl181","X":508,"Y":543},{"Bonus":0,"Continent":"K44","ID":608,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=608","ServerKey":"pl181","X":436,"Y":458},{"Bonus":0,"Continent":"K55","ID":609,"Name":"CALL 1059","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=609","ServerKey":"pl181","X":518,"Y":533},{"Bonus":0,"Continent":"K45","ID":610,"Name":"Szczęƛliwego Nowego Roku:)","PlayerID":8155296,"Points":7901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=610","ServerKey":"pl181","X":540,"Y":456},{"Bonus":0,"Continent":"K56","ID":611,"Name":"004. Midnight Never Ends","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=611","ServerKey":"pl181","X":615,"Y":528},{"Bonus":0,"Continent":"K44","ID":612,"Name":"057 Hana","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=612","ServerKey":"pl181","X":457,"Y":467},{"Bonus":0,"Continent":"K44","ID":613,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=613","ServerKey":"pl181","X":434,"Y":443},{"Bonus":0,"Continent":"K55","ID":614,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=614","ServerKey":"pl181","X":515,"Y":528},{"Bonus":0,"Continent":"K44","ID":615,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=615","ServerKey":"pl181","X":420,"Y":457},{"Bonus":0,"Continent":"K55","ID":616,"Name":"F063","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=616","ServerKey":"pl181","X":506,"Y":536},{"Bonus":0,"Continent":"K54","ID":617,"Name":"Sparta_61","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=617","ServerKey":"pl181","X":476,"Y":574},{"Bonus":0,"Continent":"K55","ID":618,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=618","ServerKey":"pl181","X":518,"Y":535},{"Bonus":0,"Continent":"K55","ID":619,"Name":"F073","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=619","ServerKey":"pl181","X":503,"Y":534},{"Bonus":0,"Continent":"K54","ID":620,"Name":"Koszmarna Noc","PlayerID":699785935,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=620","ServerKey":"pl181","X":497,"Y":514},{"Bonus":0,"Continent":"K54","ID":621,"Name":"020. ALFI","PlayerID":8539216,"Points":1519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=621","ServerKey":"pl181","X":486,"Y":571},{"Bonus":0,"Continent":"K55","ID":622,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=622","ServerKey":"pl181","X":514,"Y":530},{"Bonus":0,"Continent":"K54","ID":623,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=623","ServerKey":"pl181","X":498,"Y":543},{"Bonus":8,"Continent":"K55","ID":624,"Name":"[017] Pepehi ia oe","PlayerID":848985692,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=624","ServerKey":"pl181","X":586,"Y":524},{"Bonus":0,"Continent":"K55","ID":625,"Name":"20004","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=625","ServerKey":"pl181","X":503,"Y":543},{"Bonus":0,"Continent":"K54","ID":626,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=626","ServerKey":"pl181","X":428,"Y":502},{"Bonus":4,"Continent":"K55","ID":627,"Name":"[085]","PlayerID":8000875,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=627","ServerKey":"pl181","X":553,"Y":513},{"Bonus":0,"Continent":"K55","ID":628,"Name":"50002","PlayerID":848915531,"Points":5477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=628","ServerKey":"pl181","X":504,"Y":541},{"Bonus":0,"Continent":"K54","ID":629,"Name":"F062","PlayerID":699189792,"Points":9212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=629","ServerKey":"pl181","X":488,"Y":520},{"Bonus":0,"Continent":"K45","ID":630,"Name":"ADEN","PlayerID":698588535,"Points":7636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=630","ServerKey":"pl181","X":560,"Y":432},{"Bonus":0,"Continent":"K56","ID":631,"Name":"004.","PlayerID":8900955,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=631","ServerKey":"pl181","X":613,"Y":543},{"Bonus":0,"Continent":"K54","ID":632,"Name":"0156","PlayerID":698659980,"Points":7488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=632","ServerKey":"pl181","X":468,"Y":553},{"Bonus":0,"Continent":"K55","ID":633,"Name":"Gdy zgaƛnie sƂoƄce","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=633","ServerKey":"pl181","X":505,"Y":527},{"Bonus":0,"Continent":"K54","ID":634,"Name":"2.Strv !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=634","ServerKey":"pl181","X":493,"Y":531},{"Bonus":0,"Continent":"K54","ID":635,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=635","ServerKey":"pl181","X":499,"Y":571},{"Bonus":0,"Continent":"K55","ID":636,"Name":"F005","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=636","ServerKey":"pl181","X":502,"Y":542},{"Bonus":0,"Continent":"K55","ID":637,"Name":"Yogi","PlayerID":2808172,"Points":4542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=637","ServerKey":"pl181","X":520,"Y":544},{"Bonus":0,"Continent":"K44","ID":638,"Name":"PRO8L3M","PlayerID":7491093,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=638","ServerKey":"pl181","X":420,"Y":498},{"Bonus":0,"Continent":"K54","ID":639,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=639","ServerKey":"pl181","X":489,"Y":540},{"Bonus":0,"Continent":"K44","ID":640,"Name":"Szlachcic","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=640","ServerKey":"pl181","X":483,"Y":464},{"Bonus":0,"Continent":"K55","ID":641,"Name":"Gdy opadnie popióƂ!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=641","ServerKey":"pl181","X":503,"Y":509},{"Bonus":0,"Continent":"K54","ID":642,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=642","ServerKey":"pl181","X":424,"Y":507},{"Bonus":0,"Continent":"K44","ID":644,"Name":"0037","PlayerID":848913037,"Points":9118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=644","ServerKey":"pl181","X":463,"Y":470},{"Bonus":0,"Continent":"K45","ID":645,"Name":"Szlachcic","PlayerID":699098531,"Points":7254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=645","ServerKey":"pl181","X":503,"Y":459},{"Bonus":0,"Continent":"K45","ID":646,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=646","ServerKey":"pl181","X":581,"Y":488},{"Bonus":0,"Continent":"K45","ID":647,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=647","ServerKey":"pl181","X":509,"Y":458},{"Bonus":0,"Continent":"K44","ID":648,"Name":"0063 Somali lew","PlayerID":3909522,"Points":8805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=648","ServerKey":"pl181","X":443,"Y":429},{"Bonus":0,"Continent":"K45","ID":649,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=649","ServerKey":"pl181","X":510,"Y":452},{"Bonus":0,"Continent":"K45","ID":650,"Name":"Szlachcic","PlayerID":699098531,"Points":7731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=650","ServerKey":"pl181","X":506,"Y":462},{"Bonus":0,"Continent":"K54","ID":651,"Name":"F003","PlayerID":699189792,"Points":9326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=651","ServerKey":"pl181","X":497,"Y":536},{"Bonus":0,"Continent":"K55","ID":652,"Name":"0014","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=652","ServerKey":"pl181","X":506,"Y":526},{"Bonus":0,"Continent":"K54","ID":653,"Name":"F036","PlayerID":699189792,"Points":9245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=653","ServerKey":"pl181","X":495,"Y":530},{"Bonus":0,"Continent":"K55","ID":654,"Name":"0053","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=654","ServerKey":"pl181","X":509,"Y":519},{"Bonus":0,"Continent":"K54","ID":655,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=655","ServerKey":"pl181","X":493,"Y":559},{"Bonus":0,"Continent":"K55","ID":656,"Name":"Strefa Komfortu","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=656","ServerKey":"pl181","X":500,"Y":521},{"Bonus":0,"Continent":"K44","ID":657,"Name":"B031","PlayerID":699299123,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=657","ServerKey":"pl181","X":483,"Y":458},{"Bonus":0,"Continent":"K55","ID":658,"Name":"Miasto ƚmiechu","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=658","ServerKey":"pl181","X":504,"Y":527},{"Bonus":0,"Continent":"K44","ID":659,"Name":"184 Medellin","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=659","ServerKey":"pl181","X":469,"Y":472},{"Bonus":0,"Continent":"K55","ID":660,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=660","ServerKey":"pl181","X":509,"Y":541},{"Bonus":0,"Continent":"K55","ID":661,"Name":"JaamMwG 020","PlayerID":848987051,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=661","ServerKey":"pl181","X":517,"Y":528},{"Bonus":0,"Continent":"K56","ID":662,"Name":"018 F-1","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=662","ServerKey":"pl181","X":602,"Y":516},{"Bonus":0,"Continent":"K54","ID":663,"Name":"Diagnoza!","PlayerID":699785935,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=663","ServerKey":"pl181","X":494,"Y":509},{"Bonus":0,"Continent":"K55","ID":664,"Name":"Wioska rafalzak 01","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=664","ServerKey":"pl181","X":520,"Y":543},{"Bonus":0,"Continent":"K54","ID":665,"Name":"Osada BR","PlayerID":699698253,"Points":2822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=665","ServerKey":"pl181","X":454,"Y":539},{"Bonus":0,"Continent":"K55","ID":666,"Name":"F032","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=666","ServerKey":"pl181","X":501,"Y":528},{"Bonus":0,"Continent":"K54","ID":667,"Name":"007","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=667","ServerKey":"pl181","X":446,"Y":524},{"Bonus":0,"Continent":"K55","ID":668,"Name":"0066","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=668","ServerKey":"pl181","X":506,"Y":518},{"Bonus":0,"Continent":"K55","ID":669,"Name":"CALL 1056","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=669","ServerKey":"pl181","X":521,"Y":532},{"Bonus":0,"Continent":"K45","ID":670,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=670","ServerKey":"pl181","X":516,"Y":442},{"Bonus":8,"Continent":"K54","ID":671,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=671","ServerKey":"pl181","X":450,"Y":562},{"Bonus":0,"Continent":"K54","ID":672,"Name":"3. M41 Buldog !!!","PlayerID":849087855,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=672","ServerKey":"pl181","X":496,"Y":537},{"Bonus":0,"Continent":"K55","ID":673,"Name":"#038","PlayerID":849001572,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=673","ServerKey":"pl181","X":519,"Y":551},{"Bonus":0,"Continent":"K54","ID":675,"Name":"keepo","PlayerID":848967710,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=675","ServerKey":"pl181","X":489,"Y":529},{"Bonus":0,"Continent":"K55","ID":676,"Name":"0005","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=676","ServerKey":"pl181","X":508,"Y":514},{"Bonus":0,"Continent":"K54","ID":677,"Name":"FF007","PlayerID":699189792,"Points":5523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=677","ServerKey":"pl181","X":471,"Y":517},{"Bonus":0,"Continent":"K55","ID":678,"Name":"ztb","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=678","ServerKey":"pl181","X":500,"Y":523},{"Bonus":0,"Continent":"K55","ID":679,"Name":"Wioska 1","PlayerID":699385139,"Points":7630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=679","ServerKey":"pl181","X":521,"Y":514},{"Bonus":0,"Continent":"K54","ID":681,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=681","ServerKey":"pl181","X":480,"Y":528},{"Bonus":1,"Continent":"K55","ID":682,"Name":"Bon Appetit","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=682","ServerKey":"pl181","X":518,"Y":511},{"Bonus":0,"Continent":"K54","ID":683,"Name":"F043","PlayerID":699189792,"Points":9088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=683","ServerKey":"pl181","X":487,"Y":525},{"Bonus":0,"Continent":"K44","ID":684,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=684","ServerKey":"pl181","X":471,"Y":422},{"Bonus":0,"Continent":"K55","ID":685,"Name":"2. Isu !!!","PlayerID":849087855,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=685","ServerKey":"pl181","X":501,"Y":539},{"Bonus":0,"Continent":"K54","ID":686,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=686","ServerKey":"pl181","X":490,"Y":512},{"Bonus":0,"Continent":"K54","ID":687,"Name":"Front_08","PlayerID":2585846,"Points":4477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=687","ServerKey":"pl181","X":460,"Y":522},{"Bonus":0,"Continent":"K54","ID":688,"Name":"1. Type-5H","PlayerID":849087855,"Points":7727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=688","ServerKey":"pl181","X":498,"Y":530},{"Bonus":0,"Continent":"K44","ID":689,"Name":"0092 Alakazam","PlayerID":3909522,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=689","ServerKey":"pl181","X":455,"Y":436},{"Bonus":0,"Continent":"K45","ID":691,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=691","ServerKey":"pl181","X":546,"Y":475},{"Bonus":0,"Continent":"K55","ID":692,"Name":"005","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=692","ServerKey":"pl181","X":522,"Y":529},{"Bonus":0,"Continent":"K44","ID":693,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=693","ServerKey":"pl181","X":476,"Y":413},{"Bonus":0,"Continent":"K55","ID":694,"Name":"Harpagan5","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=694","ServerKey":"pl181","X":501,"Y":533},{"Bonus":0,"Continent":"K44","ID":695,"Name":"+44 61 Lyon Monplaisir","PlayerID":698361257,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=695","ServerKey":"pl181","X":416,"Y":469},{"Bonus":0,"Continent":"K54","ID":696,"Name":"069. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=696","ServerKey":"pl181","X":496,"Y":513},{"Bonus":0,"Continent":"K44","ID":697,"Name":"B010","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=697","ServerKey":"pl181","X":491,"Y":448},{"Bonus":0,"Continent":"K55","ID":698,"Name":"CHW#055s","PlayerID":7581876,"Points":5505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=698","ServerKey":"pl181","X":527,"Y":520},{"Bonus":0,"Continent":"K55","ID":699,"Name":"50001","PlayerID":848915531,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=699","ServerKey":"pl181","X":505,"Y":540},{"Bonus":0,"Continent":"K45","ID":700,"Name":"XXX Abadon","PlayerID":699347951,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=700","ServerKey":"pl181","X":563,"Y":487},{"Bonus":0,"Continent":"K55","ID":701,"Name":"Jeszcze nie czas","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=701","ServerKey":"pl181","X":500,"Y":524},{"Bonus":0,"Continent":"K55","ID":702,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=702","ServerKey":"pl181","X":501,"Y":532},{"Bonus":0,"Continent":"K55","ID":703,"Name":"CALL 960","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=703","ServerKey":"pl181","X":545,"Y":549},{"Bonus":2,"Continent":"K44","ID":704,"Name":"Hahahaha","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=704","ServerKey":"pl181","X":488,"Y":470},{"Bonus":0,"Continent":"K54","ID":705,"Name":"1.Lansen !!!","PlayerID":849087855,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=705","ServerKey":"pl181","X":498,"Y":540},{"Bonus":0,"Continent":"K45","ID":706,"Name":"#Machamp","PlayerID":699795378,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=706","ServerKey":"pl181","X":572,"Y":453},{"Bonus":0,"Continent":"K55","ID":707,"Name":"F064","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=707","ServerKey":"pl181","X":505,"Y":536},{"Bonus":0,"Continent":"K55","ID":708,"Name":"F075","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=708","ServerKey":"pl181","X":504,"Y":530},{"Bonus":0,"Continent":"K55","ID":709,"Name":"|006|","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=709","ServerKey":"pl181","X":552,"Y":569},{"Bonus":0,"Continent":"K55","ID":710,"Name":"F076","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=710","ServerKey":"pl181","X":508,"Y":530},{"Bonus":0,"Continent":"K55","ID":711,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=711","ServerKey":"pl181","X":519,"Y":557},{"Bonus":0,"Continent":"K54","ID":712,"Name":"keepo","PlayerID":848967710,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=712","ServerKey":"pl181","X":490,"Y":528},{"Bonus":0,"Continent":"K45","ID":713,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=713","ServerKey":"pl181","X":516,"Y":499},{"Bonus":0,"Continent":"K54","ID":714,"Name":"~065.","PlayerID":7139820,"Points":8332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=714","ServerKey":"pl181","X":489,"Y":532},{"Bonus":0,"Continent":"K45","ID":715,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=715","ServerKey":"pl181","X":513,"Y":497},{"Bonus":0,"Continent":"K54","ID":716,"Name":"1.Amx CDC !!!","PlayerID":849087855,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=716","ServerKey":"pl181","X":497,"Y":534},{"Bonus":0,"Continent":"K54","ID":717,"Name":"Yogi","PlayerID":2808172,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=717","ServerKey":"pl181","X":487,"Y":530},{"Bonus":0,"Continent":"K53","ID":718,"Name":"181","PlayerID":849030226,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=718","ServerKey":"pl181","X":392,"Y":518},{"Bonus":0,"Continent":"K54","ID":719,"Name":"1. Is-3","PlayerID":849087855,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=719","ServerKey":"pl181","X":492,"Y":541},{"Bonus":0,"Continent":"K55","ID":720,"Name":"005","PlayerID":8191129,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=720","ServerKey":"pl181","X":521,"Y":515},{"Bonus":0,"Continent":"K54","ID":721,"Name":"PRO8L3M","PlayerID":7491093,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=721","ServerKey":"pl181","X":479,"Y":526},{"Bonus":0,"Continent":"K56","ID":722,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=722","ServerKey":"pl181","X":602,"Y":568},{"Bonus":0,"Continent":"K44","ID":723,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=723","ServerKey":"pl181","X":487,"Y":469},{"Bonus":0,"Continent":"K54","ID":724,"Name":"F046","PlayerID":699189792,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=724","ServerKey":"pl181","X":483,"Y":520},{"Bonus":0,"Continent":"K55","ID":725,"Name":"P.004","PlayerID":873575,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=725","ServerKey":"pl181","X":536,"Y":566},{"Bonus":0,"Continent":"K54","ID":726,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=726","ServerKey":"pl181","X":482,"Y":531},{"Bonus":0,"Continent":"K44","ID":727,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=727","ServerKey":"pl181","X":493,"Y":496},{"Bonus":0,"Continent":"K54","ID":728,"Name":"0057","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=728","ServerKey":"pl181","X":490,"Y":519},{"Bonus":0,"Continent":"K55","ID":729,"Name":"Numenor","PlayerID":849091897,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=729","ServerKey":"pl181","X":506,"Y":512},{"Bonus":3,"Continent":"K45","ID":730,"Name":"Klub","PlayerID":848986287,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=730","ServerKey":"pl181","X":542,"Y":434},{"Bonus":0,"Continent":"K54","ID":731,"Name":"016","PlayerID":849092723,"Points":8603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=731","ServerKey":"pl181","X":479,"Y":524},{"Bonus":0,"Continent":"K45","ID":732,"Name":"086 Orzech pekan","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=732","ServerKey":"pl181","X":541,"Y":464},{"Bonus":0,"Continent":"K64","ID":733,"Name":"bandzior","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=733","ServerKey":"pl181","X":493,"Y":613},{"Bonus":0,"Continent":"K55","ID":734,"Name":"Problemy luksusowe","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=734","ServerKey":"pl181","X":507,"Y":509},{"Bonus":0,"Continent":"K54","ID":735,"Name":"keepo","PlayerID":848967710,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=735","ServerKey":"pl181","X":479,"Y":508},{"Bonus":0,"Continent":"K45","ID":736,"Name":"STAL MIELEC","PlayerID":699368887,"Points":7535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=736","ServerKey":"pl181","X":551,"Y":460},{"Bonus":0,"Continent":"K55","ID":737,"Name":"0062","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=737","ServerKey":"pl181","X":507,"Y":525},{"Bonus":0,"Continent":"K44","ID":738,"Name":"165 Kurytyba","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=738","ServerKey":"pl181","X":479,"Y":477},{"Bonus":7,"Continent":"K45","ID":739,"Name":"056","PlayerID":699351301,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=739","ServerKey":"pl181","X":536,"Y":486},{"Bonus":0,"Continent":"K54","ID":740,"Name":"Wioska barbarzyƄska......","PlayerID":7976264,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=740","ServerKey":"pl181","X":486,"Y":548},{"Bonus":0,"Continent":"K54","ID":741,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=741","ServerKey":"pl181","X":463,"Y":562},{"Bonus":0,"Continent":"K54","ID":742,"Name":"keepo","PlayerID":848967710,"Points":9289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=742","ServerKey":"pl181","X":483,"Y":524},{"Bonus":0,"Continent":"K44","ID":743,"Name":"?+44 86 Quaedypre","PlayerID":698361257,"Points":9145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=743","ServerKey":"pl181","X":465,"Y":488},{"Bonus":0,"Continent":"K55","ID":744,"Name":"0007","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=744","ServerKey":"pl181","X":509,"Y":514},{"Bonus":0,"Continent":"K54","ID":745,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=745","ServerKey":"pl181","X":487,"Y":513},{"Bonus":0,"Continent":"K54","ID":746,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=746","ServerKey":"pl181","X":436,"Y":528},{"Bonus":1,"Continent":"K44","ID":747,"Name":"A019","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=747","ServerKey":"pl181","X":494,"Y":411},{"Bonus":0,"Continent":"K54","ID":748,"Name":"F030","PlayerID":699189792,"Points":11420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=748","ServerKey":"pl181","X":499,"Y":531},{"Bonus":0,"Continent":"K55","ID":749,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=749","ServerKey":"pl181","X":509,"Y":521},{"Bonus":0,"Continent":"K55","ID":750,"Name":"Rivendell","PlayerID":849091897,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=750","ServerKey":"pl181","X":502,"Y":513},{"Bonus":0,"Continent":"K55","ID":751,"Name":"Hobbiton","PlayerID":849091897,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=751","ServerKey":"pl181","X":504,"Y":508},{"Bonus":0,"Continent":"K54","ID":752,"Name":"001 - Nowa przygoda","PlayerID":225023,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=752","ServerKey":"pl181","X":421,"Y":581},{"Bonus":0,"Continent":"K54","ID":753,"Name":"C Zach 001 Gliwice","PlayerID":849084740,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=753","ServerKey":"pl181","X":409,"Y":576},{"Bonus":0,"Continent":"K44","ID":754,"Name":"0063 b4","PlayerID":3909522,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=754","ServerKey":"pl181","X":449,"Y":433},{"Bonus":0,"Continent":"K54","ID":755,"Name":"C 002 Mikolow","PlayerID":849084740,"Points":7915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=755","ServerKey":"pl181","X":418,"Y":581},{"Bonus":0,"Continent":"K55","ID":756,"Name":"037 |","PlayerID":8000875,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=756","ServerKey":"pl181","X":557,"Y":559},{"Bonus":0,"Continent":"K54","ID":757,"Name":"nijmegen","PlayerID":9167250,"Points":9135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=757","ServerKey":"pl181","X":402,"Y":572},{"Bonus":0,"Continent":"K44","ID":758,"Name":"A045","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=758","ServerKey":"pl181","X":497,"Y":422},{"Bonus":0,"Continent":"K54","ID":759,"Name":"A.005","PlayerID":849088243,"Points":9436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=759","ServerKey":"pl181","X":409,"Y":575},{"Bonus":0,"Continent":"K44","ID":760,"Name":"Wioska 02","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=760","ServerKey":"pl181","X":434,"Y":455},{"Bonus":0,"Continent":"K54","ID":761,"Name":"C 010 Bukowno","PlayerID":849084740,"Points":8081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=761","ServerKey":"pl181","X":415,"Y":579},{"Bonus":0,"Continent":"K45","ID":762,"Name":"-004-","PlayerID":849070335,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=762","ServerKey":"pl181","X":538,"Y":452},{"Bonus":1,"Continent":"K55","ID":763,"Name":"CALL 1016","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=763","ServerKey":"pl181","X":552,"Y":562},{"Bonus":0,"Continent":"K54","ID":764,"Name":"001thx","PlayerID":9167250,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=764","ServerKey":"pl181","X":411,"Y":573},{"Bonus":0,"Continent":"K44","ID":765,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=765","ServerKey":"pl181","X":432,"Y":495},{"Bonus":0,"Continent":"K54","ID":766,"Name":"-5- (Loss of life)","PlayerID":698769107,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=766","ServerKey":"pl181","X":415,"Y":569},{"Bonus":0,"Continent":"K55","ID":767,"Name":"P001","PlayerID":698599365,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=767","ServerKey":"pl181","X":503,"Y":561},{"Bonus":9,"Continent":"K54","ID":768,"Name":"Fajna 081","PlayerID":3613413,"Points":8747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=768","ServerKey":"pl181","X":458,"Y":559},{"Bonus":0,"Continent":"K45","ID":769,"Name":"016","PlayerID":8191129,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=769","ServerKey":"pl181","X":524,"Y":497},{"Bonus":0,"Continent":"K54","ID":770,"Name":"A 015.","PlayerID":849028088,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=770","ServerKey":"pl181","X":431,"Y":584},{"Bonus":0,"Continent":"K44","ID":771,"Name":"Szlachcic","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=771","ServerKey":"pl181","X":487,"Y":461},{"Bonus":2,"Continent":"K54","ID":772,"Name":"0058","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=772","ServerKey":"pl181","X":489,"Y":514},{"Bonus":0,"Continent":"K54","ID":773,"Name":"WioskaKrĂłl Artur I(WiotrPitczak)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=773","ServerKey":"pl181","X":408,"Y":581},{"Bonus":0,"Continent":"K54","ID":774,"Name":"001","PlayerID":849084740,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=774","ServerKey":"pl181","X":426,"Y":579},{"Bonus":0,"Continent":"K44","ID":775,"Name":"B053","PlayerID":699299123,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=775","ServerKey":"pl181","X":475,"Y":468},{"Bonus":0,"Continent":"K54","ID":776,"Name":"C 001 Katowice","PlayerID":849084740,"Points":10604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=776","ServerKey":"pl181","X":417,"Y":581},{"Bonus":0,"Continent":"K54","ID":777,"Name":"C 008 Bochnia","PlayerID":849084740,"Points":8823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=777","ServerKey":"pl181","X":419,"Y":577},{"Bonus":0,"Continent":"K54","ID":778,"Name":"A.018 LW","PlayerID":849088243,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=778","ServerKey":"pl181","X":413,"Y":575},{"Bonus":0,"Continent":"K45","ID":779,"Name":"020","PlayerID":699788305,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=779","ServerKey":"pl181","X":530,"Y":429},{"Bonus":0,"Continent":"K54","ID":780,"Name":"Barad Eithel","PlayerID":849091897,"Points":7592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=780","ServerKey":"pl181","X":495,"Y":512},{"Bonus":0,"Continent":"K45","ID":781,"Name":"Osada","PlayerID":699098531,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=781","ServerKey":"pl181","X":508,"Y":454},{"Bonus":0,"Continent":"K54","ID":782,"Name":"poza kontrolą !","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=782","ServerKey":"pl181","X":493,"Y":506},{"Bonus":0,"Continent":"K54","ID":783,"Name":"066. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=783","ServerKey":"pl181","X":494,"Y":513},{"Bonus":0,"Continent":"K55","ID":784,"Name":"0072","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=784","ServerKey":"pl181","X":530,"Y":522},{"Bonus":0,"Continent":"K54","ID":785,"Name":"Myto myto!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=785","ServerKey":"pl181","X":497,"Y":505},{"Bonus":0,"Continent":"K55","ID":786,"Name":"Szlachcic 026","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=786","ServerKey":"pl181","X":558,"Y":520},{"Bonus":0,"Continent":"K54","ID":787,"Name":"O czym ƛnisz?!","PlayerID":699785935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=787","ServerKey":"pl181","X":499,"Y":505},{"Bonus":0,"Continent":"K44","ID":788,"Name":"+44 72 Etaples","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=788","ServerKey":"pl181","X":429,"Y":471},{"Bonus":0,"Continent":"K44","ID":789,"Name":"-x2","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=789","ServerKey":"pl181","X":491,"Y":498},{"Bonus":0,"Continent":"K45","ID":790,"Name":"C024","PlayerID":699299123,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=790","ServerKey":"pl181","X":526,"Y":453},{"Bonus":3,"Continent":"K44","ID":791,"Name":"#PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=791","ServerKey":"pl181","X":431,"Y":491},{"Bonus":0,"Continent":"K54","ID":792,"Name":"072. |XD|","PlayerID":848967710,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=792","ServerKey":"pl181","X":494,"Y":512},{"Bonus":0,"Continent":"K55","ID":793,"Name":"027","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=793","ServerKey":"pl181","X":528,"Y":576},{"Bonus":3,"Continent":"K55","ID":794,"Name":"Kontrast","PlayerID":699785935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=794","ServerKey":"pl181","X":514,"Y":509},{"Bonus":0,"Continent":"K54","ID":795,"Name":"005","PlayerID":849092723,"Points":10528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=795","ServerKey":"pl181","X":488,"Y":518},{"Bonus":0,"Continent":"K54","ID":796,"Name":"04 Las Palmas","PlayerID":699781762,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=796","ServerKey":"pl181","X":472,"Y":503},{"Bonus":0,"Continent":"K55","ID":797,"Name":"094","PlayerID":699351301,"Points":9928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=797","ServerKey":"pl181","X":539,"Y":504},{"Bonus":0,"Continent":"K44","ID":798,"Name":"Konfiasze","PlayerID":698908912,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=798","ServerKey":"pl181","X":475,"Y":494},{"Bonus":0,"Continent":"K44","ID":799,"Name":"110 Thunder Bay","PlayerID":1497168,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=799","ServerKey":"pl181","X":477,"Y":489},{"Bonus":0,"Continent":"K54","ID":800,"Name":"0103","PlayerID":698659980,"Points":8704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=800","ServerKey":"pl181","X":468,"Y":550},{"Bonus":0,"Continent":"K44","ID":801,"Name":"108.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=801","ServerKey":"pl181","X":480,"Y":499},{"Bonus":0,"Continent":"K44","ID":802,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=802","ServerKey":"pl181","X":491,"Y":437},{"Bonus":0,"Continent":"K44","ID":803,"Name":"031","PlayerID":699510259,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=803","ServerKey":"pl181","X":479,"Y":492},{"Bonus":0,"Continent":"K45","ID":804,"Name":"108 Oho","PlayerID":7092442,"Points":3631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=804","ServerKey":"pl181","X":543,"Y":458},{"Bonus":0,"Continent":"K44","ID":805,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=805","ServerKey":"pl181","X":473,"Y":484},{"Bonus":0,"Continent":"K55","ID":806,"Name":"Winter is coming","PlayerID":699364813,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=806","ServerKey":"pl181","X":507,"Y":580},{"Bonus":0,"Continent":"K44","ID":807,"Name":"117 St Catharines","PlayerID":1497168,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=807","ServerKey":"pl181","X":478,"Y":495},{"Bonus":0,"Continent":"K44","ID":808,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=808","ServerKey":"pl181","X":470,"Y":436},{"Bonus":0,"Continent":"K54","ID":809,"Name":"01 Eyjafjallajokull","PlayerID":699781762,"Points":11377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=809","ServerKey":"pl181","X":472,"Y":509},{"Bonus":0,"Continent":"K54","ID":810,"Name":"008","PlayerID":1536625,"Points":6474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=810","ServerKey":"pl181","X":472,"Y":512},{"Bonus":0,"Continent":"K54","ID":811,"Name":"021. ALFI","PlayerID":8539216,"Points":1269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=811","ServerKey":"pl181","X":475,"Y":568},{"Bonus":0,"Continent":"K35","ID":813,"Name":"Part II","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=813","ServerKey":"pl181","X":536,"Y":381},{"Bonus":0,"Continent":"K55","ID":814,"Name":"013","PlayerID":848915531,"Points":9171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=814","ServerKey":"pl181","X":519,"Y":538},{"Bonus":7,"Continent":"K45","ID":815,"Name":"[056] Eta","PlayerID":848985692,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=815","ServerKey":"pl181","X":543,"Y":489},{"Bonus":0,"Continent":"K56","ID":816,"Name":"C005 Hamunarpta","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=816","ServerKey":"pl181","X":602,"Y":563},{"Bonus":0,"Continent":"K44","ID":817,"Name":"B059","PlayerID":699299123,"Points":9331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=817","ServerKey":"pl181","X":472,"Y":470},{"Bonus":0,"Continent":"K54","ID":818,"Name":"PRO8L3M1","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=818","ServerKey":"pl181","X":454,"Y":501},{"Bonus":0,"Continent":"K54","ID":819,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=819","ServerKey":"pl181","X":453,"Y":503},{"Bonus":0,"Continent":"K45","ID":820,"Name":"[120] North20","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=820","ServerKey":"pl181","X":570,"Y":471},{"Bonus":0,"Continent":"K55","ID":821,"Name":"-Billie Jean","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=821","ServerKey":"pl181","X":511,"Y":514},{"Bonus":0,"Continent":"K44","ID":822,"Name":"SsSs","PlayerID":1536625,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=822","ServerKey":"pl181","X":448,"Y":499},{"Bonus":0,"Continent":"K55","ID":823,"Name":"068.","PlayerID":8788366,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=823","ServerKey":"pl181","X":514,"Y":506},{"Bonus":0,"Continent":"K44","ID":824,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=824","ServerKey":"pl181","X":481,"Y":446},{"Bonus":0,"Continent":"K55","ID":825,"Name":"JaamMwG 027","PlayerID":848987051,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=825","ServerKey":"pl181","X":520,"Y":522},{"Bonus":0,"Continent":"K55","ID":826,"Name":"023","PlayerID":8138506,"Points":7648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=826","ServerKey":"pl181","X":549,"Y":532},{"Bonus":0,"Continent":"K55","ID":828,"Name":"[100]","PlayerID":8000875,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=828","ServerKey":"pl181","X":548,"Y":504},{"Bonus":0,"Continent":"K44","ID":829,"Name":"066","PlayerID":699510259,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=829","ServerKey":"pl181","X":482,"Y":494},{"Bonus":0,"Continent":"K54","ID":830,"Name":"0031 K54 and987 OZDR.","PlayerID":3613413,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=830","ServerKey":"pl181","X":488,"Y":550},{"Bonus":0,"Continent":"K44","ID":831,"Name":"183 Bogota","PlayerID":1497168,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=831","ServerKey":"pl181","X":467,"Y":466},{"Bonus":0,"Continent":"K55","ID":832,"Name":"0034 MzM","PlayerID":698416970,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=832","ServerKey":"pl181","X":529,"Y":536},{"Bonus":0,"Continent":"K65","ID":833,"Name":"005","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=833","ServerKey":"pl181","X":549,"Y":615},{"Bonus":0,"Continent":"K44","ID":834,"Name":"204 Santo Domingo","PlayerID":1497168,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=834","ServerKey":"pl181","X":468,"Y":464},{"Bonus":0,"Continent":"K46","ID":835,"Name":"006 wioska GdaƄsk","PlayerID":699671454,"Points":8735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=835","ServerKey":"pl181","X":610,"Y":464},{"Bonus":0,"Continent":"K55","ID":836,"Name":"-Idziesz spać, ja robię bang","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=836","ServerKey":"pl181","X":516,"Y":513},{"Bonus":0,"Continent":"K55","ID":837,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=837","ServerKey":"pl181","X":502,"Y":532},{"Bonus":9,"Continent":"K54","ID":838,"Name":"szlachcic","PlayerID":699170684,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=838","ServerKey":"pl181","X":439,"Y":542},{"Bonus":0,"Continent":"K46","ID":839,"Name":"064. Vindobona","PlayerID":849091866,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=839","ServerKey":"pl181","X":615,"Y":473},{"Bonus":0,"Continent":"K45","ID":840,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=840","ServerKey":"pl181","X":526,"Y":437},{"Bonus":0,"Continent":"K55","ID":841,"Name":"0022 K55 and987 OZDR.","PlayerID":3613413,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=841","ServerKey":"pl181","X":505,"Y":551},{"Bonus":0,"Continent":"K46","ID":842,"Name":"008","PlayerID":8459255,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=842","ServerKey":"pl181","X":618,"Y":475},{"Bonus":0,"Continent":"K44","ID":843,"Name":"162 Campo Grande","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=843","ServerKey":"pl181","X":483,"Y":475},{"Bonus":0,"Continent":"K55","ID":844,"Name":"1. Is-1 !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=844","ServerKey":"pl181","X":501,"Y":544},{"Bonus":0,"Continent":"K46","ID":845,"Name":"037","PlayerID":8459255,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=845","ServerKey":"pl181","X":617,"Y":472},{"Bonus":0,"Continent":"K54","ID":846,"Name":"#0133 Rykoszet","PlayerID":9272054,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=846","ServerKey":"pl181","X":494,"Y":519},{"Bonus":0,"Continent":"K46","ID":847,"Name":"034.","PlayerID":8900955,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=847","ServerKey":"pl181","X":611,"Y":470},{"Bonus":0,"Continent":"K45","ID":848,"Name":"Szlachcic","PlayerID":699098531,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=848","ServerKey":"pl181","X":505,"Y":473},{"Bonus":0,"Continent":"K55","ID":849,"Name":"50000","PlayerID":848915531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=849","ServerKey":"pl181","X":502,"Y":538},{"Bonus":0,"Continent":"K44","ID":850,"Name":"+44 73 Le Touquet Paris plage","PlayerID":698361257,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=850","ServerKey":"pl181","X":433,"Y":470},{"Bonus":2,"Continent":"K54","ID":851,"Name":"Sparta_36","PlayerID":2585846,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=851","ServerKey":"pl181","X":480,"Y":579},{"Bonus":0,"Continent":"K54","ID":852,"Name":"C 006 Olkusz","PlayerID":849084740,"Points":7726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=852","ServerKey":"pl181","X":415,"Y":577},{"Bonus":0,"Continent":"K55","ID":853,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=853","ServerKey":"pl181","X":566,"Y":500},{"Bonus":0,"Continent":"K55","ID":854,"Name":"0002 K55 and987 OZDR.","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=854","ServerKey":"pl181","X":505,"Y":552},{"Bonus":0,"Continent":"K54","ID":855,"Name":"Fajna 020","PlayerID":698971484,"Points":6857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=855","ServerKey":"pl181","X":450,"Y":553},{"Bonus":0,"Continent":"K55","ID":856,"Name":"Komturia","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=856","ServerKey":"pl181","X":512,"Y":541},{"Bonus":0,"Continent":"K45","ID":857,"Name":"091.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=857","ServerKey":"pl181","X":508,"Y":489},{"Bonus":0,"Continent":"K46","ID":858,"Name":"Szlachcic","PlayerID":698867446,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=858","ServerKey":"pl181","X":615,"Y":483},{"Bonus":0,"Continent":"K55","ID":859,"Name":"yogi","PlayerID":2808172,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=859","ServerKey":"pl181","X":514,"Y":552},{"Bonus":0,"Continent":"K44","ID":860,"Name":"P Konfederacja","PlayerID":848915730,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=860","ServerKey":"pl181","X":461,"Y":448},{"Bonus":0,"Continent":"K55","ID":861,"Name":"026","PlayerID":848915531,"Points":5377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=861","ServerKey":"pl181","X":519,"Y":533},{"Bonus":0,"Continent":"K45","ID":862,"Name":"D022","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=862","ServerKey":"pl181","X":576,"Y":417},{"Bonus":0,"Continent":"K54","ID":863,"Name":"017","PlayerID":849092723,"Points":7491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=863","ServerKey":"pl181","X":489,"Y":526},{"Bonus":0,"Continent":"K55","ID":864,"Name":"0012 K55 and987 OZDR.","PlayerID":3613413,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=864","ServerKey":"pl181","X":509,"Y":558},{"Bonus":0,"Continent":"K46","ID":865,"Name":"009 Kagawa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=865","ServerKey":"pl181","X":619,"Y":482},{"Bonus":0,"Continent":"K44","ID":866,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=866","ServerKey":"pl181","X":469,"Y":416},{"Bonus":0,"Continent":"K46","ID":867,"Name":"Wioska 6","PlayerID":848935020,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=867","ServerKey":"pl181","X":621,"Y":471},{"Bonus":0,"Continent":"K55","ID":868,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=868","ServerKey":"pl181","X":526,"Y":549},{"Bonus":0,"Continent":"K46","ID":869,"Name":"063. Sinope","PlayerID":849091866,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=869","ServerKey":"pl181","X":618,"Y":469},{"Bonus":0,"Continent":"K45","ID":870,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=870","ServerKey":"pl181","X":573,"Y":490},{"Bonus":0,"Continent":"K46","ID":871,"Name":"064 The Lion","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=871","ServerKey":"pl181","X":621,"Y":482},{"Bonus":0,"Continent":"K55","ID":872,"Name":"Pauza","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=872","ServerKey":"pl181","X":534,"Y":539},{"Bonus":0,"Continent":"K54","ID":873,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=873","ServerKey":"pl181","X":486,"Y":555},{"Bonus":9,"Continent":"K54","ID":874,"Name":"#0002 Carsultyal","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=874","ServerKey":"pl181","X":485,"Y":553},{"Bonus":0,"Continent":"K46","ID":875,"Name":"L 6","PlayerID":849027653,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=875","ServerKey":"pl181","X":614,"Y":478},{"Bonus":0,"Continent":"K54","ID":876,"Name":"~039.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=876","ServerKey":"pl181","X":489,"Y":554},{"Bonus":0,"Continent":"K46","ID":877,"Name":"Tu spoczywa Deornoth","PlayerID":699545762,"Points":9004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=877","ServerKey":"pl181","X":625,"Y":474},{"Bonus":0,"Continent":"K54","ID":878,"Name":"1.Progetto !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=878","ServerKey":"pl181","X":498,"Y":547},{"Bonus":0,"Continent":"K54","ID":879,"Name":"2. Strv1065**","PlayerID":849087855,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=879","ServerKey":"pl181","X":499,"Y":546},{"Bonus":0,"Continent":"K46","ID":880,"Name":"15 Ćpunolandia","PlayerID":699347951,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=880","ServerKey":"pl181","X":612,"Y":471},{"Bonus":0,"Continent":"K54","ID":881,"Name":"Sparta_73","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=881","ServerKey":"pl181","X":475,"Y":574},{"Bonus":0,"Continent":"K53","ID":882,"Name":"boh12prawdziwy","PlayerID":9167250,"Points":8406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=882","ServerKey":"pl181","X":396,"Y":562},{"Bonus":0,"Continent":"K55","ID":883,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=883","ServerKey":"pl181","X":521,"Y":536},{"Bonus":0,"Continent":"K45","ID":884,"Name":"xxx","PlayerID":698239813,"Points":8695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=884","ServerKey":"pl181","X":512,"Y":458},{"Bonus":0,"Continent":"K54","ID":885,"Name":"#0134 Bastian","PlayerID":9272054,"Points":9595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=885","ServerKey":"pl181","X":496,"Y":520},{"Bonus":0,"Continent":"K45","ID":886,"Name":"C023","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=886","ServerKey":"pl181","X":513,"Y":454},{"Bonus":0,"Continent":"K55","ID":888,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=888","ServerKey":"pl181","X":570,"Y":517},{"Bonus":8,"Continent":"K45","ID":889,"Name":"[189]","PlayerID":8000875,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=889","ServerKey":"pl181","X":537,"Y":489},{"Bonus":0,"Continent":"K45","ID":890,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=890","ServerKey":"pl181","X":517,"Y":451},{"Bonus":0,"Continent":"K45","ID":891,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=891","ServerKey":"pl181","X":536,"Y":495},{"Bonus":0,"Continent":"K45","ID":892,"Name":"xxx","PlayerID":698239813,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=892","ServerKey":"pl181","X":514,"Y":459},{"Bonus":0,"Continent":"K44","ID":893,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=893","ServerKey":"pl181","X":494,"Y":492},{"Bonus":0,"Continent":"K45","ID":894,"Name":"C001","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=894","ServerKey":"pl181","X":523,"Y":456},{"Bonus":0,"Continent":"K54","ID":895,"Name":"NOT?","PlayerID":9236866,"Points":3395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=895","ServerKey":"pl181","X":460,"Y":539},{"Bonus":0,"Continent":"K45","ID":896,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=896","ServerKey":"pl181","X":515,"Y":452},{"Bonus":0,"Continent":"K54","ID":897,"Name":"#0113 Wieƛ PóƂnocna","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=897","ServerKey":"pl181","X":478,"Y":541},{"Bonus":0,"Continent":"K45","ID":898,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=898","ServerKey":"pl181","X":516,"Y":448},{"Bonus":0,"Continent":"K54","ID":899,"Name":"Mysza 1","PlayerID":698908912,"Points":6112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=899","ServerKey":"pl181","X":483,"Y":509},{"Bonus":0,"Continent":"K45","ID":900,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=900","ServerKey":"pl181","X":515,"Y":451},{"Bonus":0,"Continent":"K45","ID":901,"Name":".:040:. Chillout","PlayerID":848934935,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=901","ServerKey":"pl181","X":519,"Y":451},{"Bonus":0,"Continent":"K45","ID":902,"Name":"[136] North ----","PlayerID":848985692,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=902","ServerKey":"pl181","X":581,"Y":475},{"Bonus":0,"Continent":"K45","ID":903,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=903","ServerKey":"pl181","X":505,"Y":454},{"Bonus":6,"Continent":"K55","ID":904,"Name":"003 YAYAMIOMATE","PlayerID":8649412,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=904","ServerKey":"pl181","X":540,"Y":522},{"Bonus":0,"Continent":"K45","ID":905,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=905","ServerKey":"pl181","X":516,"Y":446},{"Bonus":0,"Continent":"K54","ID":906,"Name":"04. C2F","PlayerID":699781762,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=906","ServerKey":"pl181","X":473,"Y":506},{"Bonus":0,"Continent":"K45","ID":907,"Name":"C033","PlayerID":699299123,"Points":8581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=907","ServerKey":"pl181","X":531,"Y":451},{"Bonus":0,"Continent":"K44","ID":908,"Name":"A009","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=908","ServerKey":"pl181","X":491,"Y":416},{"Bonus":0,"Continent":"K45","ID":909,"Name":"Szlachcic","PlayerID":699098531,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=909","ServerKey":"pl181","X":508,"Y":462},{"Bonus":0,"Continent":"K54","ID":910,"Name":"keepo","PlayerID":848967710,"Points":10219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=910","ServerKey":"pl181","X":487,"Y":529},{"Bonus":8,"Continent":"K54","ID":911,"Name":"009","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=911","ServerKey":"pl181","X":413,"Y":500},{"Bonus":0,"Continent":"K45","ID":912,"Name":"C006","PlayerID":699299123,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=912","ServerKey":"pl181","X":524,"Y":458},{"Bonus":0,"Continent":"K55","ID":913,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=913","ServerKey":"pl181","X":585,"Y":512},{"Bonus":0,"Continent":"K56","ID":914,"Name":"001","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=914","ServerKey":"pl181","X":606,"Y":538},{"Bonus":0,"Continent":"K54","ID":915,"Name":"Winter is coming","PlayerID":698971484,"Points":9487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=915","ServerKey":"pl181","X":447,"Y":537},{"Bonus":0,"Continent":"K56","ID":916,"Name":"[001]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=916","ServerKey":"pl181","X":618,"Y":541},{"Bonus":0,"Continent":"K54","ID":917,"Name":"Fajna 088","PlayerID":699856962,"Points":7144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=917","ServerKey":"pl181","X":452,"Y":564},{"Bonus":0,"Continent":"K45","ID":918,"Name":"DDD","PlayerID":849091084,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=918","ServerKey":"pl181","X":528,"Y":453},{"Bonus":0,"Continent":"K54","ID":919,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=919","ServerKey":"pl181","X":485,"Y":510},{"Bonus":0,"Continent":"K45","ID":920,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=920","ServerKey":"pl181","X":514,"Y":452},{"Bonus":0,"Continent":"K55","ID":921,"Name":"Fred Perry","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=921","ServerKey":"pl181","X":505,"Y":521},{"Bonus":0,"Continent":"K45","ID":922,"Name":".:002:. Chillout","PlayerID":848934935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=922","ServerKey":"pl181","X":509,"Y":441},{"Bonus":0,"Continent":"K45","ID":923,"Name":"C029","PlayerID":699299123,"Points":10332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=923","ServerKey":"pl181","X":524,"Y":449},{"Bonus":0,"Continent":"K55","ID":924,"Name":"CALL 1085","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=924","ServerKey":"pl181","X":537,"Y":538},{"Bonus":0,"Continent":"K45","ID":925,"Name":".:011:. Chillout","PlayerID":848934935,"Points":7100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=925","ServerKey":"pl181","X":517,"Y":431},{"Bonus":0,"Continent":"K45","ID":926,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=926","ServerKey":"pl181","X":517,"Y":448},{"Bonus":0,"Continent":"K45","ID":927,"Name":"C043","PlayerID":699299123,"Points":5156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=927","ServerKey":"pl181","X":536,"Y":458},{"Bonus":0,"Continent":"K45","ID":928,"Name":".:098:. Chillout","PlayerID":848934935,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=928","ServerKey":"pl181","X":523,"Y":447},{"Bonus":0,"Continent":"K45","ID":929,"Name":"032","PlayerID":699788305,"Points":8828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=929","ServerKey":"pl181","X":525,"Y":441},{"Bonus":0,"Continent":"K45","ID":930,"Name":".:066:. Chillout","PlayerID":848934935,"Points":7663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=930","ServerKey":"pl181","X":500,"Y":417},{"Bonus":0,"Continent":"K45","ID":931,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=931","ServerKey":"pl181","X":518,"Y":454},{"Bonus":0,"Continent":"K45","ID":932,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=932","ServerKey":"pl181","X":567,"Y":487},{"Bonus":0,"Continent":"K45","ID":933,"Name":"Osada","PlayerID":699098531,"Points":9217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=933","ServerKey":"pl181","X":511,"Y":452},{"Bonus":0,"Continent":"K44","ID":934,"Name":"109. Dzięki szunaj :]","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=934","ServerKey":"pl181","X":489,"Y":427},{"Bonus":0,"Continent":"K45","ID":935,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=935","ServerKey":"pl181","X":519,"Y":471},{"Bonus":0,"Continent":"K54","ID":936,"Name":"CHW#025r","PlayerID":698704189,"Points":9038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=936","ServerKey":"pl181","X":484,"Y":536},{"Bonus":0,"Continent":"K54","ID":937,"Name":"keepo","PlayerID":848967710,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=937","ServerKey":"pl181","X":481,"Y":535},{"Bonus":0,"Continent":"K44","ID":938,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=938","ServerKey":"pl181","X":473,"Y":435},{"Bonus":0,"Continent":"K54","ID":939,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=939","ServerKey":"pl181","X":487,"Y":502},{"Bonus":0,"Continent":"K44","ID":940,"Name":"Osada","PlayerID":699098531,"Points":7584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=940","ServerKey":"pl181","X":496,"Y":450},{"Bonus":0,"Continent":"K44","ID":941,"Name":"B022","PlayerID":699299123,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=941","ServerKey":"pl181","X":483,"Y":457},{"Bonus":0,"Continent":"K44","ID":942,"Name":"B039","PlayerID":699299123,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=942","ServerKey":"pl181","X":495,"Y":452},{"Bonus":0,"Continent":"K54","ID":943,"Name":"Ateny_45","PlayerID":699783765,"Points":9118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=943","ServerKey":"pl181","X":471,"Y":529},{"Bonus":0,"Continent":"K55","ID":944,"Name":"20023","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=944","ServerKey":"pl181","X":505,"Y":547},{"Bonus":0,"Continent":"K44","ID":945,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=945","ServerKey":"pl181","X":489,"Y":492},{"Bonus":6,"Continent":"K54","ID":946,"Name":"0Osada koczownikĂłw","PlayerID":699781762,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=946","ServerKey":"pl181","X":479,"Y":527},{"Bonus":0,"Continent":"K44","ID":947,"Name":"092.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=947","ServerKey":"pl181","X":499,"Y":483},{"Bonus":0,"Continent":"K54","ID":948,"Name":"SsSs","PlayerID":1536625,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=948","ServerKey":"pl181","X":458,"Y":505},{"Bonus":0,"Continent":"K44","ID":949,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=949","ServerKey":"pl181","X":496,"Y":490},{"Bonus":6,"Continent":"K45","ID":950,"Name":".:120:. Niangmen","PlayerID":848934935,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=950","ServerKey":"pl181","X":513,"Y":415},{"Bonus":0,"Continent":"K45","ID":951,"Name":".:029:. San Escobar","PlayerID":699098531,"Points":9260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=951","ServerKey":"pl181","X":503,"Y":486},{"Bonus":0,"Continent":"K45","ID":952,"Name":"K45 - 010","PlayerID":6510480,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=952","ServerKey":"pl181","X":560,"Y":468},{"Bonus":0,"Continent":"K45","ID":953,"Name":"-[013]- Gaszerbrum II","PlayerID":849092827,"Points":9216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=953","ServerKey":"pl181","X":549,"Y":490},{"Bonus":0,"Continent":"K34","ID":954,"Name":"Feed me more 002","PlayerID":699756210,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=954","ServerKey":"pl181","X":497,"Y":372},{"Bonus":0,"Continent":"K34","ID":955,"Name":".033.","PlayerID":698489071,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=955","ServerKey":"pl181","X":490,"Y":378},{"Bonus":0,"Continent":"K45","ID":956,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=956","ServerKey":"pl181","X":520,"Y":435},{"Bonus":0,"Continent":"K45","ID":957,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=957","ServerKey":"pl181","X":577,"Y":425},{"Bonus":0,"Continent":"K45","ID":958,"Name":"C041","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=958","ServerKey":"pl181","X":535,"Y":455},{"Bonus":0,"Continent":"K55","ID":959,"Name":"So Far Away","PlayerID":699785935,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=959","ServerKey":"pl181","X":511,"Y":526},{"Bonus":0,"Continent":"K55","ID":960,"Name":"Yogi","PlayerID":2808172,"Points":8684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=960","ServerKey":"pl181","X":515,"Y":543},{"Bonus":0,"Continent":"K55","ID":961,"Name":"F080","PlayerID":699189792,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=961","ServerKey":"pl181","X":510,"Y":530},{"Bonus":0,"Continent":"K55","ID":962,"Name":"Piękni ludzie","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=962","ServerKey":"pl181","X":502,"Y":518},{"Bonus":0,"Continent":"K55","ID":963,"Name":"F077","PlayerID":699189792,"Points":8398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=963","ServerKey":"pl181","X":502,"Y":531},{"Bonus":0,"Continent":"K45","ID":964,"Name":"098","PlayerID":699351301,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=964","ServerKey":"pl181","X":553,"Y":498},{"Bonus":0,"Continent":"K45","ID":965,"Name":"Szlachcic","PlayerID":699098531,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=965","ServerKey":"pl181","X":506,"Y":467},{"Bonus":0,"Continent":"K45","ID":966,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=966","ServerKey":"pl181","X":510,"Y":457},{"Bonus":0,"Continent":"K45","ID":967,"Name":"Osada","PlayerID":699098531,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=967","ServerKey":"pl181","X":511,"Y":454},{"Bonus":0,"Continent":"K44","ID":968,"Name":"006343 Miedziany 2","PlayerID":3909522,"Points":7892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=968","ServerKey":"pl181","X":442,"Y":434},{"Bonus":0,"Continent":"K45","ID":969,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=969","ServerKey":"pl181","X":512,"Y":472},{"Bonus":0,"Continent":"K54","ID":970,"Name":"Wioska 3","PlayerID":8779575,"Points":3025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=970","ServerKey":"pl181","X":425,"Y":551},{"Bonus":0,"Continent":"K45","ID":971,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=971","ServerKey":"pl181","X":515,"Y":472},{"Bonus":0,"Continent":"K54","ID":972,"Name":"Daleko 007","PlayerID":6116940,"Points":8276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=972","ServerKey":"pl181","X":475,"Y":587},{"Bonus":0,"Continent":"K45","ID":973,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=973","ServerKey":"pl181","X":504,"Y":458},{"Bonus":0,"Continent":"K45","ID":974,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=974","ServerKey":"pl181","X":524,"Y":493},{"Bonus":0,"Continent":"K55","ID":975,"Name":"#0026 Wirus","PlayerID":9272054,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=975","ServerKey":"pl181","X":502,"Y":527},{"Bonus":0,"Continent":"K55","ID":976,"Name":"-Za pĂłĆșno","PlayerID":699785935,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=976","ServerKey":"pl181","X":518,"Y":514},{"Bonus":0,"Continent":"K55","ID":977,"Name":"Yogi","PlayerID":2808172,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=977","ServerKey":"pl181","X":524,"Y":544},{"Bonus":0,"Continent":"K45","ID":978,"Name":"040.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=978","ServerKey":"pl181","X":502,"Y":492},{"Bonus":0,"Continent":"K55","ID":979,"Name":"55k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=979","ServerKey":"pl181","X":528,"Y":534},{"Bonus":0,"Continent":"K54","ID":980,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=980","ServerKey":"pl181","X":485,"Y":538},{"Bonus":0,"Continent":"K55","ID":981,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=981","ServerKey":"pl181","X":521,"Y":541},{"Bonus":0,"Continent":"K55","ID":982,"Name":"JaamMwG 016","PlayerID":848987051,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=982","ServerKey":"pl181","X":524,"Y":517},{"Bonus":0,"Continent":"K55","ID":983,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=983","ServerKey":"pl181","X":534,"Y":538},{"Bonus":0,"Continent":"K44","ID":984,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=984","ServerKey":"pl181","X":452,"Y":452},{"Bonus":2,"Continent":"K54","ID":985,"Name":"Osada GL","PlayerID":698290577,"Points":2873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=985","ServerKey":"pl181","X":457,"Y":542},{"Bonus":0,"Continent":"K55","ID":986,"Name":"PodhalaƄski ZbĂłj! -001-","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=986","ServerKey":"pl181","X":525,"Y":549},{"Bonus":0,"Continent":"K55","ID":987,"Name":"ƚmieszkii","PlayerID":3454753,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=987","ServerKey":"pl181","X":530,"Y":545},{"Bonus":0,"Continent":"K55","ID":988,"Name":"008.","PlayerID":699695167,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=988","ServerKey":"pl181","X":522,"Y":547},{"Bonus":0,"Continent":"K54","ID":989,"Name":"Ateny_64","PlayerID":2585846,"Points":7095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=989","ServerKey":"pl181","X":476,"Y":536},{"Bonus":0,"Continent":"K55","ID":990,"Name":"20007","PlayerID":848915531,"Points":6364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=990","ServerKey":"pl181","X":520,"Y":540},{"Bonus":0,"Continent":"K45","ID":991,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=991","ServerKey":"pl181","X":520,"Y":457},{"Bonus":0,"Continent":"K55","ID":992,"Name":"JaamMwG 021","PlayerID":848987051,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=992","ServerKey":"pl181","X":519,"Y":523},{"Bonus":0,"Continent":"K45","ID":993,"Name":"008","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=993","ServerKey":"pl181","X":531,"Y":488},{"Bonus":6,"Continent":"K44","ID":994,"Name":"PRO8L3M","PlayerID":7491093,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=994","ServerKey":"pl181","X":449,"Y":490},{"Bonus":0,"Continent":"K44","ID":995,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=995","ServerKey":"pl181","X":486,"Y":498},{"Bonus":0,"Continent":"K45","ID":996,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=996","ServerKey":"pl181","X":517,"Y":479},{"Bonus":4,"Continent":"K55","ID":997,"Name":"0061","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=997","ServerKey":"pl181","X":506,"Y":524},{"Bonus":0,"Continent":"K55","ID":999,"Name":"[181]","PlayerID":8000875,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=999","ServerKey":"pl181","X":531,"Y":555},{"Bonus":0,"Continent":"K44","ID":1000,"Name":"111 Winnipeg","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1000","ServerKey":"pl181","X":478,"Y":491},{"Bonus":0,"Continent":"K45","ID":1001,"Name":"IQ151","PlayerID":699368887,"Points":6393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1001","ServerKey":"pl181","X":552,"Y":452},{"Bonus":0,"Continent":"K44","ID":1002,"Name":"122 Banff","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1002","ServerKey":"pl181","X":479,"Y":488},{"Bonus":0,"Continent":"K45","ID":1003,"Name":"5 ESIOK f","PlayerID":8155296,"Points":9038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1003","ServerKey":"pl181","X":538,"Y":463},{"Bonus":0,"Continent":"K44","ID":1004,"Name":"083.","PlayerID":8788366,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1004","ServerKey":"pl181","X":481,"Y":493},{"Bonus":0,"Continent":"K54","ID":1005,"Name":"023","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1005","ServerKey":"pl181","X":415,"Y":522},{"Bonus":0,"Continent":"K44","ID":1006,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1006","ServerKey":"pl181","X":488,"Y":486},{"Bonus":0,"Continent":"K45","ID":1007,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1007","ServerKey":"pl181","X":536,"Y":422},{"Bonus":0,"Continent":"K55","ID":1008,"Name":"Jaaa","PlayerID":698635863,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1008","ServerKey":"pl181","X":579,"Y":596},{"Bonus":0,"Continent":"K54","ID":1009,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1009","ServerKey":"pl181","X":484,"Y":513},{"Bonus":0,"Continent":"K44","ID":1010,"Name":"057. Koniec Konfy???","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1010","ServerKey":"pl181","X":481,"Y":492},{"Bonus":0,"Continent":"K44","ID":1011,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1011","ServerKey":"pl181","X":465,"Y":432},{"Bonus":0,"Continent":"K44","ID":1012,"Name":"085.","PlayerID":8788366,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1012","ServerKey":"pl181","X":474,"Y":498},{"Bonus":0,"Continent":"K44","ID":1013,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1013","ServerKey":"pl181","X":481,"Y":426},{"Bonus":0,"Continent":"K44","ID":1014,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1014","ServerKey":"pl181","X":473,"Y":485},{"Bonus":0,"Continent":"K55","ID":1015,"Name":"0014 K55 and987 OZDR.","PlayerID":3613413,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1015","ServerKey":"pl181","X":502,"Y":556},{"Bonus":0,"Continent":"K44","ID":1016,"Name":"148 Veracruz","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1016","ServerKey":"pl181","X":472,"Y":493},{"Bonus":0,"Continent":"K55","ID":1017,"Name":"020 Wioska barbarzyƄska","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1017","ServerKey":"pl181","X":572,"Y":548},{"Bonus":0,"Continent":"K54","ID":1018,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1018","ServerKey":"pl181","X":478,"Y":508},{"Bonus":0,"Continent":"K55","ID":1019,"Name":"Gattacka","PlayerID":699298370,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1019","ServerKey":"pl181","X":588,"Y":500},{"Bonus":0,"Continent":"K54","ID":1020,"Name":"A 013.","PlayerID":849028088,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1020","ServerKey":"pl181","X":435,"Y":580},{"Bonus":0,"Continent":"K44","ID":1021,"Name":"-018-","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1021","ServerKey":"pl181","X":466,"Y":427},{"Bonus":0,"Continent":"K54","ID":1022,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1022","ServerKey":"pl181","X":486,"Y":500},{"Bonus":0,"Continent":"K55","ID":1023,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1023","ServerKey":"pl181","X":571,"Y":516},{"Bonus":0,"Continent":"K44","ID":1024,"Name":"Konfiasze","PlayerID":698908912,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1024","ServerKey":"pl181","X":471,"Y":495},{"Bonus":9,"Continent":"K44","ID":1025,"Name":"146 Puerto Escondido","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1025","ServerKey":"pl181","X":478,"Y":486},{"Bonus":0,"Continent":"K55","ID":1026,"Name":"071","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1026","ServerKey":"pl181","X":583,"Y":588},{"Bonus":0,"Continent":"K56","ID":1027,"Name":"082","PlayerID":699373599,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1027","ServerKey":"pl181","X":616,"Y":529},{"Bonus":0,"Continent":"K55","ID":1028,"Name":"sas","PlayerID":7581876,"Points":10200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1028","ServerKey":"pl181","X":536,"Y":556},{"Bonus":0,"Continent":"K45","ID":1029,"Name":"053.","PlayerID":8788366,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1029","ServerKey":"pl181","X":507,"Y":491},{"Bonus":0,"Continent":"K45","ID":1030,"Name":"Wioska_06","PlayerID":8674163,"Points":7035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1030","ServerKey":"pl181","X":544,"Y":449},{"Bonus":0,"Continent":"K55","ID":1031,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1031","ServerKey":"pl181","X":521,"Y":540},{"Bonus":0,"Continent":"K45","ID":1032,"Name":"AAA","PlayerID":849091084,"Points":9159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1032","ServerKey":"pl181","X":526,"Y":459},{"Bonus":0,"Continent":"K55","ID":1033,"Name":"025","PlayerID":2808172,"Points":8225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1033","ServerKey":"pl181","X":523,"Y":534},{"Bonus":0,"Continent":"K45","ID":1034,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1034","ServerKey":"pl181","X":516,"Y":478},{"Bonus":0,"Continent":"K55","ID":1035,"Name":"Vito 3","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1035","ServerKey":"pl181","X":513,"Y":533},{"Bonus":0,"Continent":"K55","ID":1036,"Name":"Winter is coming","PlayerID":699364813,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1036","ServerKey":"pl181","X":500,"Y":585},{"Bonus":0,"Continent":"K55","ID":1037,"Name":"adam5","PlayerID":7581876,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1037","ServerKey":"pl181","X":523,"Y":539},{"Bonus":0,"Continent":"K55","ID":1038,"Name":"Esgaroth","PlayerID":849091897,"Points":8874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1038","ServerKey":"pl181","X":503,"Y":513},{"Bonus":0,"Continent":"K54","ID":1039,"Name":"*Ateny_78","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1039","ServerKey":"pl181","X":474,"Y":540},{"Bonus":0,"Continent":"K45","ID":1040,"Name":"[083]","PlayerID":848985692,"Points":10293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1040","ServerKey":"pl181","X":536,"Y":489},{"Bonus":0,"Continent":"K54","ID":1041,"Name":"CHW#034","PlayerID":699781762,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1041","ServerKey":"pl181","X":476,"Y":534},{"Bonus":0,"Continent":"K55","ID":1042,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1042","ServerKey":"pl181","X":574,"Y":539},{"Bonus":0,"Continent":"K54","ID":1043,"Name":"NOT!","PlayerID":9236866,"Points":8320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1043","ServerKey":"pl181","X":468,"Y":535},{"Bonus":0,"Continent":"K55","ID":1044,"Name":"1. Type-4H","PlayerID":849087855,"Points":9116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1044","ServerKey":"pl181","X":500,"Y":548},{"Bonus":0,"Continent":"K54","ID":1045,"Name":"Suppi","PlayerID":699856962,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1045","ServerKey":"pl181","X":471,"Y":542},{"Bonus":0,"Continent":"K44","ID":1046,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1046","ServerKey":"pl181","X":483,"Y":490},{"Bonus":7,"Continent":"K44","ID":1047,"Name":"SsSs","PlayerID":1536625,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1047","ServerKey":"pl181","X":425,"Y":493},{"Bonus":0,"Continent":"K54","ID":1048,"Name":"039. ALFI","PlayerID":699856962,"Points":1369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1048","ServerKey":"pl181","X":468,"Y":551},{"Bonus":0,"Continent":"K45","ID":1049,"Name":"BBB","PlayerID":1006847,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1049","ServerKey":"pl181","X":555,"Y":435},{"Bonus":0,"Continent":"K54","ID":1050,"Name":"038. ALFI","PlayerID":8539216,"Points":1894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1050","ServerKey":"pl181","X":467,"Y":554},{"Bonus":0,"Continent":"K55","ID":1051,"Name":"038 |","PlayerID":8000875,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1051","ServerKey":"pl181","X":567,"Y":559},{"Bonus":0,"Continent":"K54","ID":1052,"Name":"034. ALFI","PlayerID":8539216,"Points":2714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1052","ServerKey":"pl181","X":476,"Y":552},{"Bonus":0,"Continent":"K45","ID":1053,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1053","ServerKey":"pl181","X":546,"Y":496},{"Bonus":9,"Continent":"K54","ID":1054,"Name":"0649","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1054","ServerKey":"pl181","X":477,"Y":548},{"Bonus":0,"Continent":"K54","ID":1055,"Name":"040. ALFI","PlayerID":699856962,"Points":1407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1055","ServerKey":"pl181","X":473,"Y":559},{"Bonus":0,"Continent":"K54","ID":1056,"Name":"...","PlayerID":848915531,"Points":9122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1056","ServerKey":"pl181","X":483,"Y":542},{"Bonus":0,"Continent":"K54","ID":1057,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1057","ServerKey":"pl181","X":446,"Y":559},{"Bonus":0,"Continent":"K54","ID":1058,"Name":"CHW#035","PlayerID":699781762,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1058","ServerKey":"pl181","X":477,"Y":534},{"Bonus":0,"Continent":"K44","ID":1059,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1059","ServerKey":"pl181","X":427,"Y":496},{"Bonus":0,"Continent":"K54","ID":1060,"Name":"*Ateny_04","PlayerID":699856962,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1060","ServerKey":"pl181","X":471,"Y":536},{"Bonus":0,"Continent":"K55","ID":1061,"Name":"Follow !","PlayerID":699785935,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1061","ServerKey":"pl181","X":501,"Y":502},{"Bonus":0,"Continent":"K54","ID":1062,"Name":"0127","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1062","ServerKey":"pl181","X":463,"Y":544},{"Bonus":0,"Continent":"K45","ID":1063,"Name":"Szlachcic","PlayerID":699098531,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1063","ServerKey":"pl181","X":500,"Y":471},{"Bonus":0,"Continent":"K54","ID":1064,"Name":"ZostaƂem Krabem","PlayerID":699783765,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1064","ServerKey":"pl181","X":464,"Y":542},{"Bonus":0,"Continent":"K45","ID":1065,"Name":"064.","PlayerID":8788366,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1065","ServerKey":"pl181","X":509,"Y":492},{"Bonus":0,"Continent":"K54","ID":1066,"Name":"#0094 Lebiedziew","PlayerID":9272054,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1066","ServerKey":"pl181","X":474,"Y":559},{"Bonus":0,"Continent":"K44","ID":1067,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1067","ServerKey":"pl181","X":475,"Y":449},{"Bonus":0,"Continent":"K65","ID":1068,"Name":"Kwidzyn","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1068","ServerKey":"pl181","X":509,"Y":618},{"Bonus":0,"Continent":"K55","ID":1069,"Name":"Miejsca z plakatu","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1069","ServerKey":"pl181","X":503,"Y":524},{"Bonus":0,"Continent":"K65","ID":1070,"Name":"Business District","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1070","ServerKey":"pl181","X":519,"Y":620},{"Bonus":0,"Continent":"K55","ID":1071,"Name":"- Jeszcze pięć minut","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1071","ServerKey":"pl181","X":511,"Y":517},{"Bonus":0,"Continent":"K54","ID":1072,"Name":"*Ateny_35","PlayerID":2585846,"Points":3823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1072","ServerKey":"pl181","X":470,"Y":521},{"Bonus":0,"Continent":"K54","ID":1073,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1073","ServerKey":"pl181","X":455,"Y":517},{"Bonus":0,"Continent":"K44","ID":1074,"Name":"Szlachcic","PlayerID":699098531,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1074","ServerKey":"pl181","X":491,"Y":469},{"Bonus":9,"Continent":"K44","ID":1075,"Name":"170 Caracas","PlayerID":1497168,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1075","ServerKey":"pl181","X":478,"Y":494},{"Bonus":0,"Continent":"K44","ID":1076,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1076","ServerKey":"pl181","X":487,"Y":479},{"Bonus":0,"Continent":"K44","ID":1077,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1077","ServerKey":"pl181","X":483,"Y":477},{"Bonus":0,"Continent":"K55","ID":1078,"Name":"Sector 5","PlayerID":8199417,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1078","ServerKey":"pl181","X":509,"Y":587},{"Bonus":0,"Continent":"K44","ID":1079,"Name":"001","PlayerID":699098531,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1079","ServerKey":"pl181","X":489,"Y":470},{"Bonus":0,"Continent":"K44","ID":1080,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1080","ServerKey":"pl181","X":490,"Y":463},{"Bonus":0,"Continent":"K55","ID":1081,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1081","ServerKey":"pl181","X":518,"Y":507},{"Bonus":0,"Continent":"K54","ID":1082,"Name":"086.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1082","ServerKey":"pl181","X":478,"Y":500},{"Bonus":0,"Continent":"K55","ID":1083,"Name":"116.","PlayerID":8788366,"Points":7372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1083","ServerKey":"pl181","X":542,"Y":518},{"Bonus":0,"Continent":"K54","ID":1084,"Name":"maro baron 1997(Mieszko 1995)","PlayerID":698769107,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1084","ServerKey":"pl181","X":410,"Y":583},{"Bonus":0,"Continent":"K54","ID":1085,"Name":"C Zach 002 Sosnicowice","PlayerID":849084740,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1085","ServerKey":"pl181","X":404,"Y":576},{"Bonus":0,"Continent":"K55","ID":1086,"Name":"Mzm13.","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1086","ServerKey":"pl181","X":560,"Y":516},{"Bonus":0,"Continent":"K54","ID":1087,"Name":"A.002","PlayerID":849088243,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1087","ServerKey":"pl181","X":417,"Y":579},{"Bonus":0,"Continent":"K45","ID":1088,"Name":"[076] Tote dich","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1088","ServerKey":"pl181","X":535,"Y":491},{"Bonus":0,"Continent":"K54","ID":1089,"Name":"A.007","PlayerID":849088243,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1089","ServerKey":"pl181","X":410,"Y":586},{"Bonus":0,"Continent":"K54","ID":1090,"Name":"A.013","PlayerID":849088243,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1090","ServerKey":"pl181","X":411,"Y":580},{"Bonus":0,"Continent":"K45","ID":1091,"Name":"Abadon landy","PlayerID":699347951,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1091","ServerKey":"pl181","X":563,"Y":489},{"Bonus":8,"Continent":"K44","ID":1092,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1092","ServerKey":"pl181","X":496,"Y":435},{"Bonus":0,"Continent":"K55","ID":1093,"Name":"[163]","PlayerID":8000875,"Points":8973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1093","ServerKey":"pl181","X":537,"Y":530},{"Bonus":0,"Continent":"K45","ID":1094,"Name":"D04","PlayerID":699368887,"Points":7594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1094","ServerKey":"pl181","X":546,"Y":455},{"Bonus":0,"Continent":"K35","ID":1096,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1096","ServerKey":"pl181","X":534,"Y":389},{"Bonus":0,"Continent":"K55","ID":1097,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1097","ServerKey":"pl181","X":578,"Y":507},{"Bonus":0,"Continent":"K35","ID":1098,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1098","ServerKey":"pl181","X":540,"Y":394},{"Bonus":0,"Continent":"K54","ID":1099,"Name":"para","PlayerID":8369778,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1099","ServerKey":"pl181","X":495,"Y":590},{"Bonus":0,"Continent":"K35","ID":1100,"Name":"122 Wioska-005-","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1100","ServerKey":"pl181","X":541,"Y":387},{"Bonus":0,"Continent":"K44","ID":1101,"Name":"Osada","PlayerID":699098531,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1101","ServerKey":"pl181","X":491,"Y":453},{"Bonus":0,"Continent":"K35","ID":1102,"Name":"026","PlayerID":1424656,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1102","ServerKey":"pl181","X":543,"Y":394},{"Bonus":0,"Continent":"K45","ID":1103,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1103","ServerKey":"pl181","X":528,"Y":486},{"Bonus":0,"Continent":"K35","ID":1104,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1104","ServerKey":"pl181","X":528,"Y":389},{"Bonus":0,"Continent":"K44","ID":1106,"Name":"Szlachcic","PlayerID":699098531,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1106","ServerKey":"pl181","X":491,"Y":470},{"Bonus":0,"Continent":"K55","ID":1107,"Name":"001 ƚwięta Terra","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1107","ServerKey":"pl181","X":521,"Y":547},{"Bonus":0,"Continent":"K45","ID":1108,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1108","ServerKey":"pl181","X":515,"Y":489},{"Bonus":7,"Continent":"K45","ID":1109,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1109","ServerKey":"pl181","X":547,"Y":486},{"Bonus":0,"Continent":"K55","ID":1110,"Name":"Wioska 181","PlayerID":849066849,"Points":2552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1110","ServerKey":"pl181","X":524,"Y":538},{"Bonus":0,"Continent":"K54","ID":1111,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1111","ServerKey":"pl181","X":471,"Y":562},{"Bonus":0,"Continent":"K55","ID":1112,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1112","ServerKey":"pl181","X":527,"Y":552},{"Bonus":0,"Continent":"K55","ID":1113,"Name":"Mzm38","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1113","ServerKey":"pl181","X":564,"Y":524},{"Bonus":0,"Continent":"K55","ID":1114,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1114","ServerKey":"pl181","X":514,"Y":551},{"Bonus":0,"Continent":"K45","ID":1115,"Name":"015","PlayerID":699788305,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1115","ServerKey":"pl181","X":529,"Y":432},{"Bonus":0,"Continent":"K55","ID":1116,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1116","ServerKey":"pl181","X":524,"Y":562},{"Bonus":0,"Continent":"K45","ID":1117,"Name":"[145] North","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1117","ServerKey":"pl181","X":581,"Y":466},{"Bonus":0,"Continent":"K55","ID":1118,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1118","ServerKey":"pl181","X":580,"Y":553},{"Bonus":0,"Continent":"K55","ID":1119,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1119","ServerKey":"pl181","X":514,"Y":543},{"Bonus":0,"Continent":"K54","ID":1120,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1120","ServerKey":"pl181","X":420,"Y":512},{"Bonus":0,"Continent":"K55","ID":1121,"Name":"055.","PlayerID":699695167,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1121","ServerKey":"pl181","X":513,"Y":560},{"Bonus":0,"Continent":"K54","ID":1122,"Name":"Zero Stresu","PlayerID":698971484,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1122","ServerKey":"pl181","X":445,"Y":534},{"Bonus":0,"Continent":"K55","ID":1123,"Name":"21 Valhalla","PlayerID":699861004,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1123","ServerKey":"pl181","X":528,"Y":548},{"Bonus":0,"Continent":"K54","ID":1124,"Name":"(031)","PlayerID":699846892,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1124","ServerKey":"pl181","X":419,"Y":538},{"Bonus":0,"Continent":"K55","ID":1125,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1125","ServerKey":"pl181","X":534,"Y":543},{"Bonus":0,"Continent":"K44","ID":1126,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1126","ServerKey":"pl181","X":487,"Y":497},{"Bonus":0,"Continent":"K56","ID":1127,"Name":"Mzm01","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1127","ServerKey":"pl181","X":608,"Y":530},{"Bonus":0,"Continent":"K44","ID":1128,"Name":"168 Capo Grande","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1128","ServerKey":"pl181","X":480,"Y":473},{"Bonus":0,"Continent":"K55","ID":1129,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1129","ServerKey":"pl181","X":574,"Y":577},{"Bonus":0,"Continent":"K44","ID":1130,"Name":"0062 ~4~","PlayerID":3909522,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1130","ServerKey":"pl181","X":444,"Y":433},{"Bonus":8,"Continent":"K55","ID":1131,"Name":"P.024","PlayerID":873575,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1131","ServerKey":"pl181","X":536,"Y":559},{"Bonus":0,"Continent":"K55","ID":1132,"Name":"- 097 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1132","ServerKey":"pl181","X":545,"Y":581},{"Bonus":0,"Continent":"K55","ID":1133,"Name":"[070] Epsilon","PlayerID":848985692,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1133","ServerKey":"pl181","X":552,"Y":502},{"Bonus":0,"Continent":"K45","ID":1134,"Name":"B003","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1134","ServerKey":"pl181","X":553,"Y":499},{"Bonus":0,"Continent":"K44","ID":1135,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1135","ServerKey":"pl181","X":442,"Y":461},{"Bonus":0,"Continent":"K55","ID":1136,"Name":"Wioska 17","PlayerID":699385139,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1136","ServerKey":"pl181","X":554,"Y":504},{"Bonus":0,"Continent":"K54","ID":1137,"Name":"keepo","PlayerID":848967710,"Points":4876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1137","ServerKey":"pl181","X":477,"Y":517},{"Bonus":0,"Continent":"K55","ID":1138,"Name":"[174]","PlayerID":8000875,"Points":7205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1138","ServerKey":"pl181","X":553,"Y":508},{"Bonus":0,"Continent":"K55","ID":1139,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1139","ServerKey":"pl181","X":559,"Y":510},{"Bonus":0,"Continent":"K46","ID":1140,"Name":"Jehu_Kingdom_25_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1140","ServerKey":"pl181","X":600,"Y":483},{"Bonus":0,"Continent":"K45","ID":1141,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1141","ServerKey":"pl181","X":510,"Y":494},{"Bonus":0,"Continent":"K55","ID":1142,"Name":"010","PlayerID":8191129,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1142","ServerKey":"pl181","X":526,"Y":500},{"Bonus":0,"Continent":"K45","ID":1143,"Name":"xxx","PlayerID":698239813,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1143","ServerKey":"pl181","X":512,"Y":450},{"Bonus":0,"Continent":"K53","ID":1144,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1144","ServerKey":"pl181","X":391,"Y":515},{"Bonus":0,"Continent":"K55","ID":1145,"Name":"007","PlayerID":8191129,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1145","ServerKey":"pl181","X":520,"Y":517},{"Bonus":0,"Continent":"K55","ID":1146,"Name":"009","PlayerID":8191129,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1146","ServerKey":"pl181","X":531,"Y":516},{"Bonus":0,"Continent":"K45","ID":1147,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1147","ServerKey":"pl181","X":516,"Y":480},{"Bonus":0,"Continent":"K55","ID":1148,"Name":"[069] Vonoy ianao","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1148","ServerKey":"pl181","X":531,"Y":504},{"Bonus":0,"Continent":"K45","ID":1149,"Name":"-[009]- Nanga Parbat","PlayerID":849092827,"Points":8134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1149","ServerKey":"pl181","X":550,"Y":486},{"Bonus":0,"Continent":"K55","ID":1150,"Name":"007. Atelstan","PlayerID":699373599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1150","ServerKey":"pl181","X":593,"Y":578},{"Bonus":0,"Continent":"K55","ID":1151,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1151","ServerKey":"pl181","X":584,"Y":526},{"Bonus":0,"Continent":"K56","ID":1152,"Name":"005.","PlayerID":8900955,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1152","ServerKey":"pl181","X":615,"Y":542},{"Bonus":0,"Continent":"K45","ID":1153,"Name":"224 Coober Pedy","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1153","ServerKey":"pl181","X":528,"Y":443},{"Bonus":0,"Continent":"K44","ID":1155,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1155","ServerKey":"pl181","X":445,"Y":485},{"Bonus":0,"Continent":"K53","ID":1156,"Name":"NWO","PlayerID":849030226,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1156","ServerKey":"pl181","X":388,"Y":524},{"Bonus":0,"Continent":"K44","ID":1157,"Name":"163 Recife","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1157","ServerKey":"pl181","X":478,"Y":478},{"Bonus":0,"Continent":"K55","ID":1158,"Name":"068 |","PlayerID":8000875,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1158","ServerKey":"pl181","X":546,"Y":509},{"Bonus":0,"Continent":"K54","ID":1159,"Name":"hack3d by gh05t","PlayerID":7491093,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1159","ServerKey":"pl181","X":476,"Y":525},{"Bonus":7,"Continent":"K45","ID":1160,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1160","ServerKey":"pl181","X":522,"Y":483},{"Bonus":0,"Continent":"K55","ID":1161,"Name":"118","PlayerID":8788366,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1161","ServerKey":"pl181","X":543,"Y":517},{"Bonus":0,"Continent":"K55","ID":1162,"Name":"[213]","PlayerID":8000875,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1162","ServerKey":"pl181","X":542,"Y":520},{"Bonus":0,"Continent":"K55","ID":1163,"Name":"CALL 993","PlayerID":699784536,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1163","ServerKey":"pl181","X":535,"Y":552},{"Bonus":0,"Continent":"K55","ID":1164,"Name":"[060] Theta **","PlayerID":848985692,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1164","ServerKey":"pl181","X":534,"Y":509},{"Bonus":0,"Continent":"K55","ID":1165,"Name":"Wioska dezert8","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1165","ServerKey":"pl181","X":541,"Y":518},{"Bonus":0,"Continent":"K54","ID":1166,"Name":"SsSs","PlayerID":1536625,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1166","ServerKey":"pl181","X":423,"Y":506},{"Bonus":0,"Continent":"K55","ID":1167,"Name":"[146]","PlayerID":8000875,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1167","ServerKey":"pl181","X":540,"Y":502},{"Bonus":0,"Continent":"K45","ID":1168,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1168","ServerKey":"pl181","X":502,"Y":439},{"Bonus":0,"Continent":"K55","ID":1169,"Name":"031. Wioska ZbĂłjnik44","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1169","ServerKey":"pl181","X":552,"Y":514},{"Bonus":5,"Continent":"K45","ID":1170,"Name":"K45 - 009","PlayerID":6510480,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1170","ServerKey":"pl181","X":564,"Y":462},{"Bonus":0,"Continent":"K55","ID":1171,"Name":"050. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1171","ServerKey":"pl181","X":543,"Y":511},{"Bonus":0,"Continent":"K54","ID":1172,"Name":"0180","PlayerID":698659980,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1172","ServerKey":"pl181","X":464,"Y":549},{"Bonus":0,"Continent":"K34","ID":1173,"Name":"K34 - [133] Before Land","PlayerID":699088769,"Points":9018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1173","ServerKey":"pl181","X":458,"Y":380},{"Bonus":0,"Continent":"K54","ID":1174,"Name":"Yuppi","PlayerID":699856962,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1174","ServerKey":"pl181","X":473,"Y":542},{"Bonus":0,"Continent":"K45","ID":1175,"Name":"#08.","PlayerID":848967710,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1175","ServerKey":"pl181","X":519,"Y":463},{"Bonus":0,"Continent":"K54","ID":1176,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1176","ServerKey":"pl181","X":487,"Y":554},{"Bonus":0,"Continent":"K34","ID":1177,"Name":"0133","PlayerID":699431255,"Points":7769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1177","ServerKey":"pl181","X":456,"Y":391},{"Bonus":0,"Continent":"K45","ID":1178,"Name":"C027","PlayerID":699299123,"Points":8637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1178","ServerKey":"pl181","X":524,"Y":450},{"Bonus":0,"Continent":"K34","ID":1179,"Name":"K34 - [005] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1179","ServerKey":"pl181","X":453,"Y":388},{"Bonus":0,"Continent":"K45","ID":1180,"Name":"Szlachcic","PlayerID":699098531,"Points":8506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1180","ServerKey":"pl181","X":516,"Y":464},{"Bonus":0,"Continent":"K44","ID":1181,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1181","ServerKey":"pl181","X":430,"Y":462},{"Bonus":6,"Continent":"K55","ID":1182,"Name":"047. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1182","ServerKey":"pl181","X":553,"Y":515},{"Bonus":0,"Continent":"K45","ID":1183,"Name":"C009","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1183","ServerKey":"pl181","X":523,"Y":460},{"Bonus":0,"Continent":"K45","ID":1184,"Name":"C026","PlayerID":699299123,"Points":8359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1184","ServerKey":"pl181","X":526,"Y":451},{"Bonus":0,"Continent":"K55","ID":1185,"Name":"15*","PlayerID":699664910,"Points":6349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1185","ServerKey":"pl181","X":567,"Y":539},{"Bonus":0,"Continent":"K45","ID":1186,"Name":"001 hodowca1","PlayerID":8155296,"Points":8193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1186","ServerKey":"pl181","X":530,"Y":466},{"Bonus":0,"Continent":"K45","ID":1187,"Name":"Samarkanda","PlayerID":8513699,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1187","ServerKey":"pl181","X":531,"Y":462},{"Bonus":0,"Continent":"K45","ID":1188,"Name":"#09.","PlayerID":848967710,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1188","ServerKey":"pl181","X":527,"Y":463},{"Bonus":0,"Continent":"K45","ID":1189,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1189","ServerKey":"pl181","X":569,"Y":488},{"Bonus":0,"Continent":"K45","ID":1190,"Name":"KHAND","PlayerID":8155296,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1190","ServerKey":"pl181","X":537,"Y":462},{"Bonus":0,"Continent":"K45","ID":1191,"Name":".achim.","PlayerID":6936607,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1191","ServerKey":"pl181","X":533,"Y":454},{"Bonus":0,"Continent":"K55","ID":1192,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1192","ServerKey":"pl181","X":539,"Y":533},{"Bonus":0,"Continent":"K45","ID":1193,"Name":"C002","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1193","ServerKey":"pl181","X":524,"Y":455},{"Bonus":0,"Continent":"K55","ID":1194,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":5753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1194","ServerKey":"pl181","X":536,"Y":541},{"Bonus":2,"Continent":"K45","ID":1195,"Name":"1 ESIOK","PlayerID":8155296,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1195","ServerKey":"pl181","X":538,"Y":467},{"Bonus":0,"Continent":"K45","ID":1196,"Name":"C046","PlayerID":699299123,"Points":4933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1196","ServerKey":"pl181","X":536,"Y":462},{"Bonus":0,"Continent":"K44","ID":1197,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1197","ServerKey":"pl181","X":479,"Y":443},{"Bonus":0,"Continent":"K45","ID":1198,"Name":"GELU@GELU","PlayerID":8155296,"Points":9010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1198","ServerKey":"pl181","X":534,"Y":469},{"Bonus":0,"Continent":"K55","ID":1199,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1199","ServerKey":"pl181","X":537,"Y":542},{"Bonus":2,"Continent":"K55","ID":1200,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1200","ServerKey":"pl181","X":511,"Y":540},{"Bonus":0,"Continent":"K45","ID":1201,"Name":"C030","PlayerID":699299123,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1201","ServerKey":"pl181","X":526,"Y":455},{"Bonus":0,"Continent":"K55","ID":1202,"Name":"Mzm16","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1202","ServerKey":"pl181","X":559,"Y":516},{"Bonus":0,"Continent":"K45","ID":1203,"Name":"016 GELU-GELU a","PlayerID":8155296,"Points":10986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1203","ServerKey":"pl181","X":530,"Y":469},{"Bonus":0,"Continent":"K45","ID":1204,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1204","ServerKey":"pl181","X":526,"Y":428},{"Bonus":0,"Continent":"K45","ID":1205,"Name":"C022","PlayerID":699299123,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1205","ServerKey":"pl181","X":525,"Y":459},{"Bonus":0,"Continent":"K45","ID":1206,"Name":"-000-","PlayerID":849070335,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1206","ServerKey":"pl181","X":538,"Y":450},{"Bonus":0,"Continent":"K54","ID":1207,"Name":"*Ateny_17","PlayerID":2585846,"Points":3028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1207","ServerKey":"pl181","X":468,"Y":526},{"Bonus":0,"Continent":"K45","ID":1208,"Name":"Ć»ELAZNE WZGÓRZA","PlayerID":8155296,"Points":10861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1208","ServerKey":"pl181","X":532,"Y":463},{"Bonus":0,"Continent":"K55","ID":1209,"Name":"011.","PlayerID":699695167,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1209","ServerKey":"pl181","X":525,"Y":557},{"Bonus":1,"Continent":"K55","ID":1210,"Name":"08*","PlayerID":699664910,"Points":7321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1210","ServerKey":"pl181","X":567,"Y":544},{"Bonus":0,"Continent":"K54","ID":1212,"Name":"F019","PlayerID":699189792,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1212","ServerKey":"pl181","X":494,"Y":535},{"Bonus":5,"Continent":"K45","ID":1213,"Name":"107.","PlayerID":8788366,"Points":7634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1213","ServerKey":"pl181","X":508,"Y":485},{"Bonus":0,"Continent":"K45","ID":1214,"Name":"Szlachcic","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1214","ServerKey":"pl181","X":505,"Y":467},{"Bonus":0,"Continent":"K55","ID":1215,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1215","ServerKey":"pl181","X":535,"Y":542},{"Bonus":0,"Continent":"K45","ID":1216,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1216","ServerKey":"pl181","X":511,"Y":471},{"Bonus":0,"Continent":"K54","ID":1217,"Name":"BETI 005","PlayerID":8539216,"Points":1372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1217","ServerKey":"pl181","X":457,"Y":571},{"Bonus":0,"Continent":"K44","ID":1218,"Name":"?+44 85 Audruicq","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1218","ServerKey":"pl181","X":455,"Y":481},{"Bonus":0,"Continent":"K44","ID":1219,"Name":"B036","PlayerID":699299123,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1219","ServerKey":"pl181","X":488,"Y":453},{"Bonus":0,"Continent":"K54","ID":1220,"Name":"Suppi","PlayerID":699856962,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1220","ServerKey":"pl181","X":471,"Y":540},{"Bonus":0,"Continent":"K45","ID":1221,"Name":"Szlachcic","PlayerID":699098531,"Points":8252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1221","ServerKey":"pl181","X":511,"Y":465},{"Bonus":0,"Continent":"K54","ID":1222,"Name":"0071","PlayerID":698659980,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1222","ServerKey":"pl181","X":468,"Y":548},{"Bonus":0,"Continent":"K45","ID":1223,"Name":"043.","PlayerID":849094609,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1223","ServerKey":"pl181","X":575,"Y":452},{"Bonus":0,"Continent":"K54","ID":1224,"Name":"NOT?","PlayerID":9236866,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1224","ServerKey":"pl181","X":419,"Y":529},{"Bonus":0,"Continent":"K55","ID":1225,"Name":"0082","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1225","ServerKey":"pl181","X":531,"Y":513},{"Bonus":0,"Continent":"K54","ID":1226,"Name":"0189","PlayerID":698659980,"Points":8216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1226","ServerKey":"pl181","X":465,"Y":549},{"Bonus":0,"Continent":"K45","ID":1227,"Name":"BBB","PlayerID":1006847,"Points":8476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1227","ServerKey":"pl181","X":555,"Y":439},{"Bonus":0,"Continent":"K46","ID":1228,"Name":"023 Iowa","PlayerID":7092442,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1228","ServerKey":"pl181","X":606,"Y":489},{"Bonus":0,"Continent":"K54","ID":1229,"Name":"0101","PlayerID":698659980,"Points":7962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1229","ServerKey":"pl181","X":461,"Y":546},{"Bonus":0,"Continent":"K54","ID":1230,"Name":"KIELBA 091","PlayerID":699342219,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1230","ServerKey":"pl181","X":447,"Y":567},{"Bonus":0,"Continent":"K64","ID":1231,"Name":"#052","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1231","ServerKey":"pl181","X":476,"Y":605},{"Bonus":0,"Continent":"K45","ID":1232,"Name":"K45 - 002","PlayerID":6510480,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1232","ServerKey":"pl181","X":561,"Y":465},{"Bonus":8,"Continent":"K45","ID":1233,"Name":"o.s.a.d.a","PlayerID":698867483,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1233","ServerKey":"pl181","X":554,"Y":476},{"Bonus":0,"Continent":"K54","ID":1234,"Name":"*Ateny_66","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1234","ServerKey":"pl181","X":468,"Y":539},{"Bonus":0,"Continent":"K45","ID":1235,"Name":"Wioska Matyy","PlayerID":848967710,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1235","ServerKey":"pl181","X":547,"Y":497},{"Bonus":0,"Continent":"K43","ID":1236,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1236","ServerKey":"pl181","X":386,"Y":481},{"Bonus":0,"Continent":"K54","ID":1237,"Name":"hack3d by gh05t","PlayerID":7491093,"Points":6024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1237","ServerKey":"pl181","X":478,"Y":523},{"Bonus":0,"Continent":"K56","ID":1238,"Name":"003","PlayerID":699413040,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1238","ServerKey":"pl181","X":610,"Y":535},{"Bonus":0,"Continent":"K44","ID":1239,"Name":"?+44 76 Lyon Les Etats Unis","PlayerID":698361257,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1239","ServerKey":"pl181","X":464,"Y":477},{"Bonus":0,"Continent":"K56","ID":1240,"Name":"0001 bunkkk","PlayerID":6510480,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1240","ServerKey":"pl181","X":616,"Y":531},{"Bonus":0,"Continent":"K55","ID":1241,"Name":"JaamMwG 007","PlayerID":848987051,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1241","ServerKey":"pl181","X":520,"Y":526},{"Bonus":0,"Continent":"K56","ID":1242,"Name":"Wioska Fezzoo","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1242","ServerKey":"pl181","X":604,"Y":539},{"Bonus":0,"Continent":"K44","ID":1243,"Name":"Szlachcic","PlayerID":699098531,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1243","ServerKey":"pl181","X":493,"Y":459},{"Bonus":0,"Continent":"K56","ID":1244,"Name":".Wioska Rok Szczura","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1244","ServerKey":"pl181","X":609,"Y":555},{"Bonus":0,"Continent":"K56","ID":1245,"Name":"0001. A - Ellesmera","PlayerID":7125212,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1245","ServerKey":"pl181","X":606,"Y":527},{"Bonus":0,"Continent":"K56","ID":1246,"Name":"Bocianikson001","PlayerID":7528491,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1246","ServerKey":"pl181","X":609,"Y":542},{"Bonus":0,"Continent":"K55","ID":1247,"Name":"0053 K55 and987 OZDR","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1247","ServerKey":"pl181","X":510,"Y":550},{"Bonus":0,"Continent":"K56","ID":1248,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1248","ServerKey":"pl181","X":602,"Y":541},{"Bonus":0,"Continent":"K55","ID":1249,"Name":"[108]","PlayerID":8000875,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1249","ServerKey":"pl181","X":562,"Y":544},{"Bonus":0,"Continent":"K45","ID":1250,"Name":"-1-","PlayerID":699347951,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1250","ServerKey":"pl181","X":583,"Y":495},{"Bonus":0,"Continent":"K45","ID":1251,"Name":"ADEN","PlayerID":698588535,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1251","ServerKey":"pl181","X":559,"Y":446},{"Bonus":0,"Continent":"K56","ID":1252,"Name":"016 Sebo","PlayerID":8323711,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1252","ServerKey":"pl181","X":619,"Y":524},{"Bonus":0,"Continent":"K45","ID":1253,"Name":"095 Macedonia PóƂnocna","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1253","ServerKey":"pl181","X":572,"Y":468},{"Bonus":0,"Continent":"K56","ID":1254,"Name":"001 start","PlayerID":9238175,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1254","ServerKey":"pl181","X":610,"Y":563},{"Bonus":0,"Continent":"K44","ID":1255,"Name":"South Barba 3","PlayerID":699796330,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1255","ServerKey":"pl181","X":455,"Y":459},{"Bonus":0,"Continent":"K56","ID":1256,"Name":"ccc","PlayerID":7047342,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1256","ServerKey":"pl181","X":606,"Y":546},{"Bonus":0,"Continent":"K55","ID":1257,"Name":"0001 MzM","PlayerID":698416970,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1257","ServerKey":"pl181","X":599,"Y":569},{"Bonus":0,"Continent":"K56","ID":1258,"Name":"Szlachcic 001","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1258","ServerKey":"pl181","X":615,"Y":534},{"Bonus":0,"Continent":"K44","ID":1259,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1259","ServerKey":"pl181","X":478,"Y":433},{"Bonus":0,"Continent":"K56","ID":1261,"Name":"0008","PlayerID":699429153,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1261","ServerKey":"pl181","X":607,"Y":503},{"Bonus":0,"Continent":"K54","ID":1262,"Name":"F070","PlayerID":699189792,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1262","ServerKey":"pl181","X":486,"Y":519},{"Bonus":0,"Continent":"K56","ID":1263,"Name":"Wioska nocna1993","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1263","ServerKey":"pl181","X":610,"Y":532},{"Bonus":0,"Continent":"K45","ID":1264,"Name":"-[019]- Ngadi Chuli","PlayerID":849092827,"Points":7377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1264","ServerKey":"pl181","X":551,"Y":490},{"Bonus":1,"Continent":"K55","ID":1265,"Name":"0051","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1265","ServerKey":"pl181","X":513,"Y":524},{"Bonus":0,"Continent":"K55","ID":1266,"Name":"A.015","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1266","ServerKey":"pl181","X":594,"Y":567},{"Bonus":0,"Continent":"K45","ID":1267,"Name":"Gattacka","PlayerID":699298370,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1267","ServerKey":"pl181","X":591,"Y":492},{"Bonus":0,"Continent":"K55","ID":1268,"Name":"20001","PlayerID":848915531,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1268","ServerKey":"pl181","X":519,"Y":539},{"Bonus":0,"Continent":"K56","ID":1269,"Name":"tomson89","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1269","ServerKey":"pl181","X":608,"Y":529},{"Bonus":0,"Continent":"K56","ID":1270,"Name":"002 pieska Leszka","PlayerID":9238175,"Points":10545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1270","ServerKey":"pl181","X":605,"Y":533},{"Bonus":0,"Continent":"K45","ID":1271,"Name":"036","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1271","ServerKey":"pl181","X":583,"Y":463},{"Bonus":0,"Continent":"K55","ID":1272,"Name":"Jaaa","PlayerID":698635863,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1272","ServerKey":"pl181","X":579,"Y":592},{"Bonus":0,"Continent":"K45","ID":1273,"Name":"-[008]- Manaslu","PlayerID":849092827,"Points":8116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1273","ServerKey":"pl181","X":544,"Y":488},{"Bonus":0,"Continent":"K55","ID":1274,"Name":"054.","PlayerID":699695167,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1274","ServerKey":"pl181","X":518,"Y":554},{"Bonus":0,"Continent":"K45","ID":1275,"Name":"067","PlayerID":699761749,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1275","ServerKey":"pl181","X":550,"Y":429},{"Bonus":0,"Continent":"K56","ID":1276,"Name":"rakieta 004","PlayerID":848928486,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1276","ServerKey":"pl181","X":617,"Y":534},{"Bonus":0,"Continent":"K46","ID":1277,"Name":"002","PlayerID":849006412,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1277","ServerKey":"pl181","X":620,"Y":498},{"Bonus":0,"Continent":"K44","ID":1278,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1278","ServerKey":"pl181","X":489,"Y":495},{"Bonus":0,"Continent":"K55","ID":1279,"Name":"*5502* Dym Aguszka","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1279","ServerKey":"pl181","X":592,"Y":564},{"Bonus":0,"Continent":"K45","ID":1280,"Name":"31.","PlayerID":698702991,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1280","ServerKey":"pl181","X":565,"Y":480},{"Bonus":0,"Continent":"K55","ID":1281,"Name":"001 Pallet Town","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1281","ServerKey":"pl181","X":595,"Y":500},{"Bonus":0,"Continent":"K54","ID":1282,"Name":"~036.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1282","ServerKey":"pl181","X":492,"Y":568},{"Bonus":0,"Continent":"K46","ID":1283,"Name":"001","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1283","ServerKey":"pl181","X":606,"Y":498},{"Bonus":0,"Continent":"K54","ID":1284,"Name":"F061","PlayerID":699189792,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1284","ServerKey":"pl181","X":489,"Y":524},{"Bonus":6,"Continent":"K44","ID":1285,"Name":"058.","PlayerID":699851345,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1285","ServerKey":"pl181","X":480,"Y":488},{"Bonus":0,"Continent":"K54","ID":1286,"Name":"#0131 Maja","PlayerID":9272054,"Points":4593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1286","ServerKey":"pl181","X":486,"Y":533},{"Bonus":5,"Continent":"K44","ID":1287,"Name":"054 Waikiki","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1287","ServerKey":"pl181","X":456,"Y":467},{"Bonus":0,"Continent":"K54","ID":1288,"Name":"*Ateny_09","PlayerID":2585846,"Points":9595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1288","ServerKey":"pl181","X":472,"Y":534},{"Bonus":0,"Continent":"K54","ID":1289,"Name":"*Ateny_76","PlayerID":2585846,"Points":8144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1289","ServerKey":"pl181","X":475,"Y":526},{"Bonus":0,"Continent":"K45","ID":1290,"Name":"185","PlayerID":849064752,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1290","ServerKey":"pl181","X":558,"Y":442},{"Bonus":0,"Continent":"K54","ID":1291,"Name":"*Ateny_10","PlayerID":2585846,"Points":3348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1291","ServerKey":"pl181","X":472,"Y":526},{"Bonus":0,"Continent":"K55","ID":1292,"Name":"049. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1292","ServerKey":"pl181","X":541,"Y":513},{"Bonus":0,"Continent":"K54","ID":1293,"Name":"067. |XD|","PlayerID":848967710,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1293","ServerKey":"pl181","X":493,"Y":513},{"Bonus":0,"Continent":"K45","ID":1294,"Name":".:017:. Znicz","PlayerID":8649412,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1294","ServerKey":"pl181","X":510,"Y":410},{"Bonus":0,"Continent":"K45","ID":1295,"Name":".:001:. Here We Go Again","PlayerID":8649412,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1295","ServerKey":"pl181","X":509,"Y":410},{"Bonus":0,"Continent":"K45","ID":1296,"Name":".achim.","PlayerID":6936607,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1296","ServerKey":"pl181","X":532,"Y":447},{"Bonus":0,"Continent":"K54","ID":1297,"Name":"F053 8","PlayerID":848915730,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1297","ServerKey":"pl181","X":486,"Y":517},{"Bonus":0,"Continent":"K44","ID":1298,"Name":"088.","PlayerID":8788366,"Points":8892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1298","ServerKey":"pl181","X":475,"Y":499},{"Bonus":0,"Continent":"K45","ID":1299,"Name":".:010:. Etyka","PlayerID":8649412,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1299","ServerKey":"pl181","X":502,"Y":410},{"Bonus":0,"Continent":"K44","ID":1300,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1300","ServerKey":"pl181","X":448,"Y":451},{"Bonus":0,"Continent":"K54","ID":1301,"Name":"F041","PlayerID":699189792,"Points":9056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1301","ServerKey":"pl181","X":488,"Y":519},{"Bonus":0,"Continent":"K44","ID":1302,"Name":"208 Nassau","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1302","ServerKey":"pl181","X":468,"Y":463},{"Bonus":0,"Continent":"K45","ID":1303,"Name":".:006:. TopĂłr","PlayerID":8649412,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1303","ServerKey":"pl181","X":510,"Y":417},{"Bonus":0,"Continent":"K54","ID":1304,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1304","ServerKey":"pl181","X":423,"Y":516},{"Bonus":0,"Continent":"K45","ID":1305,"Name":".:139:. Niangmen","PlayerID":848934935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1305","ServerKey":"pl181","X":510,"Y":400},{"Bonus":0,"Continent":"K45","ID":1306,"Name":"A10","PlayerID":699368887,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1306","ServerKey":"pl181","X":548,"Y":454},{"Bonus":0,"Continent":"K45","ID":1307,"Name":".:001:. Chillout","PlayerID":848934935,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1307","ServerKey":"pl181","X":505,"Y":412},{"Bonus":0,"Continent":"K44","ID":1308,"Name":"Suppi","PlayerID":699856962,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1308","ServerKey":"pl181","X":437,"Y":418},{"Bonus":0,"Continent":"K45","ID":1309,"Name":"xxx","PlayerID":698239813,"Points":8108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1309","ServerKey":"pl181","X":515,"Y":464},{"Bonus":0,"Continent":"K44","ID":1310,"Name":"0053 Szkolna 17","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1310","ServerKey":"pl181","X":439,"Y":421},{"Bonus":0,"Continent":"K55","ID":1311,"Name":"0020","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1311","ServerKey":"pl181","X":508,"Y":500},{"Bonus":0,"Continent":"K54","ID":1312,"Name":"Lynortis","PlayerID":849001724,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1312","ServerKey":"pl181","X":465,"Y":537},{"Bonus":0,"Continent":"K44","ID":1314,"Name":"0055","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1314","ServerKey":"pl181","X":464,"Y":464},{"Bonus":0,"Continent":"K44","ID":1315,"Name":"017 Oklahoma","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1315","ServerKey":"pl181","X":427,"Y":425},{"Bonus":0,"Continent":"K54","ID":1316,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1316","ServerKey":"pl181","X":440,"Y":515},{"Bonus":0,"Continent":"K54","ID":1317,"Name":"NOT!? YET","PlayerID":3909522,"Points":1462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1317","ServerKey":"pl181","X":459,"Y":533},{"Bonus":0,"Continent":"K44","ID":1318,"Name":"0033 Wioska T S","PlayerID":3909522,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1318","ServerKey":"pl181","X":432,"Y":418},{"Bonus":0,"Continent":"K44","ID":1319,"Name":"0016 O","PlayerID":3909522,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1319","ServerKey":"pl181","X":434,"Y":410},{"Bonus":0,"Continent":"K45","ID":1320,"Name":"[053] Delta","PlayerID":848985692,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1320","ServerKey":"pl181","X":539,"Y":492},{"Bonus":0,"Continent":"K45","ID":1321,"Name":"[090]","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1321","ServerKey":"pl181","X":540,"Y":490},{"Bonus":0,"Continent":"K55","ID":1322,"Name":"Nie ƛpię bo gonie sny","PlayerID":699785935,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1322","ServerKey":"pl181","X":568,"Y":594},{"Bonus":0,"Continent":"K55","ID":1323,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1323","ServerKey":"pl181","X":570,"Y":587},{"Bonus":0,"Continent":"K54","ID":1324,"Name":"SsSs","PlayerID":1536625,"Points":8476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1324","ServerKey":"pl181","X":421,"Y":501},{"Bonus":0,"Continent":"K55","ID":1325,"Name":"026. Wioska Songoku29","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1325","ServerKey":"pl181","X":556,"Y":505},{"Bonus":0,"Continent":"K55","ID":1326,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1326","ServerKey":"pl181","X":566,"Y":589},{"Bonus":0,"Continent":"K55","ID":1327,"Name":"PoƂudniowa brama","PlayerID":699785935,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1327","ServerKey":"pl181","X":572,"Y":599},{"Bonus":0,"Continent":"K45","ID":1328,"Name":"15 | Legionex","PlayerID":849002091,"Points":5595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1328","ServerKey":"pl181","X":541,"Y":437},{"Bonus":0,"Continent":"K45","ID":1329,"Name":"[126]","PlayerID":8000875,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1329","ServerKey":"pl181","X":543,"Y":498},{"Bonus":0,"Continent":"K45","ID":1330,"Name":"Wioska 505","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1330","ServerKey":"pl181","X":577,"Y":458},{"Bonus":0,"Continent":"K45","ID":1331,"Name":"014","PlayerID":8191129,"Points":8408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1331","ServerKey":"pl181","X":542,"Y":499},{"Bonus":0,"Continent":"K44","ID":1333,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1333","ServerKey":"pl181","X":482,"Y":444},{"Bonus":0,"Continent":"K65","ID":1334,"Name":"074","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1334","ServerKey":"pl181","X":566,"Y":603},{"Bonus":0,"Continent":"K44","ID":1335,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1335","ServerKey":"pl181","X":405,"Y":492},{"Bonus":0,"Continent":"K54","ID":1336,"Name":"F089","PlayerID":699189792,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1336","ServerKey":"pl181","X":497,"Y":517},{"Bonus":0,"Continent":"K45","ID":1337,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1337","ServerKey":"pl181","X":540,"Y":480},{"Bonus":0,"Continent":"K45","ID":1338,"Name":"78k$ Grvvyq","PlayerID":699676005,"Points":9471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1338","ServerKey":"pl181","X":541,"Y":492},{"Bonus":0,"Continent":"K54","ID":1339,"Name":"022. ALFI","PlayerID":8539216,"Points":1821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1339","ServerKey":"pl181","X":474,"Y":566},{"Bonus":0,"Continent":"K45","ID":1340,"Name":"[185]","PlayerID":8000875,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1340","ServerKey":"pl181","X":540,"Y":487},{"Bonus":0,"Continent":"K54","ID":1341,"Name":"kathare","PlayerID":873575,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1341","ServerKey":"pl181","X":493,"Y":575},{"Bonus":0,"Continent":"K45","ID":1342,"Name":"[055] Dzeta ***","PlayerID":848985692,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1342","ServerKey":"pl181","X":538,"Y":496},{"Bonus":0,"Continent":"K45","ID":1343,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1343","ServerKey":"pl181","X":568,"Y":497},{"Bonus":0,"Continent":"K45","ID":1344,"Name":"[094]","PlayerID":848985692,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1344","ServerKey":"pl181","X":538,"Y":490},{"Bonus":0,"Continent":"K44","ID":1345,"Name":"A026","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1345","ServerKey":"pl181","X":488,"Y":412},{"Bonus":0,"Continent":"K45","ID":1346,"Name":"[098]","PlayerID":848985692,"Points":11137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1346","ServerKey":"pl181","X":534,"Y":493},{"Bonus":0,"Continent":"K55","ID":1347,"Name":"yogi","PlayerID":2808172,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1347","ServerKey":"pl181","X":532,"Y":519},{"Bonus":0,"Continent":"K44","ID":1348,"Name":"PRO8L3M","PlayerID":7491093,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1348","ServerKey":"pl181","X":409,"Y":496},{"Bonus":0,"Continent":"K54","ID":1349,"Name":"Witam w wietnamie","PlayerID":699856962,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1349","ServerKey":"pl181","X":419,"Y":539},{"Bonus":0,"Continent":"K54","ID":1350,"Name":"*Ateny_32","PlayerID":2585846,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1350","ServerKey":"pl181","X":465,"Y":520},{"Bonus":0,"Continent":"K54","ID":1351,"Name":"018","PlayerID":2585846,"Points":2156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1351","ServerKey":"pl181","X":462,"Y":528},{"Bonus":0,"Continent":"K54","ID":1352,"Name":"F050","PlayerID":699189792,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1352","ServerKey":"pl181","X":491,"Y":519},{"Bonus":0,"Continent":"K54","ID":1353,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1353","ServerKey":"pl181","X":459,"Y":515},{"Bonus":0,"Continent":"K54","ID":1354,"Name":"FF002","PlayerID":699189792,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1354","ServerKey":"pl181","X":469,"Y":518},{"Bonus":0,"Continent":"K55","ID":1355,"Name":"[085]","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1355","ServerKey":"pl181","X":528,"Y":507},{"Bonus":0,"Continent":"K44","ID":1356,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1356","ServerKey":"pl181","X":484,"Y":472},{"Bonus":0,"Continent":"K45","ID":1357,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1357","ServerKey":"pl181","X":513,"Y":474},{"Bonus":0,"Continent":"K44","ID":1358,"Name":"009. Marzyciel Shrek","PlayerID":698290577,"Points":5698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1358","ServerKey":"pl181","X":456,"Y":499},{"Bonus":0,"Continent":"K55","ID":1359,"Name":"0069","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1359","ServerKey":"pl181","X":528,"Y":526},{"Bonus":0,"Continent":"K44","ID":1360,"Name":"Brat447","PlayerID":699262350,"Points":6290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1360","ServerKey":"pl181","X":457,"Y":495},{"Bonus":0,"Continent":"K55","ID":1361,"Name":"Wioska 426","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1361","ServerKey":"pl181","X":590,"Y":511},{"Bonus":0,"Continent":"K44","ID":1362,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1362","ServerKey":"pl181","X":452,"Y":487},{"Bonus":0,"Continent":"K55","ID":1363,"Name":"JaamMwG 025","PlayerID":848987051,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1363","ServerKey":"pl181","X":522,"Y":525},{"Bonus":0,"Continent":"K44","ID":1364,"Name":"?+44 75 Feyzin","PlayerID":698361257,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1364","ServerKey":"pl181","X":455,"Y":478},{"Bonus":0,"Continent":"K44","ID":1365,"Name":"041 Fairbanks","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1365","ServerKey":"pl181","X":458,"Y":470},{"Bonus":0,"Continent":"K45","ID":1366,"Name":"-x3","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1366","ServerKey":"pl181","X":500,"Y":499},{"Bonus":5,"Continent":"K55","ID":1367,"Name":"010 |","PlayerID":8000875,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1367","ServerKey":"pl181","X":561,"Y":558},{"Bonus":0,"Continent":"K44","ID":1369,"Name":"...Just like that","PlayerID":699723284,"Points":4139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1369","ServerKey":"pl181","X":462,"Y":487},{"Bonus":0,"Continent":"K44","ID":1371,"Name":"065 Phildelphia","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1371","ServerKey":"pl181","X":462,"Y":474},{"Bonus":0,"Continent":"K44","ID":1372,"Name":"?+44 85 Lyon Vaise","PlayerID":698361257,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1372","ServerKey":"pl181","X":457,"Y":488},{"Bonus":0,"Continent":"K44","ID":1373,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1373","ServerKey":"pl181","X":492,"Y":462},{"Bonus":0,"Continent":"K44","ID":1374,"Name":"Cast Away 009","PlayerID":698290577,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1374","ServerKey":"pl181","X":449,"Y":483},{"Bonus":0,"Continent":"K55","ID":1375,"Name":"B007","PlayerID":8138506,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1375","ServerKey":"pl181","X":556,"Y":504},{"Bonus":0,"Continent":"K55","ID":1376,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1376","ServerKey":"pl181","X":515,"Y":533},{"Bonus":0,"Continent":"K55","ID":1377,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1377","ServerKey":"pl181","X":517,"Y":527},{"Bonus":0,"Continent":"K55","ID":1378,"Name":"sas","PlayerID":7581876,"Points":9159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1378","ServerKey":"pl181","X":514,"Y":534},{"Bonus":0,"Continent":"K54","ID":1379,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1379","ServerKey":"pl181","X":479,"Y":581},{"Bonus":0,"Continent":"K55","ID":1380,"Name":"0009","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1380","ServerKey":"pl181","X":507,"Y":526},{"Bonus":0,"Continent":"K55","ID":1381,"Name":"P.003","PlayerID":873575,"Points":10097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1381","ServerKey":"pl181","X":537,"Y":566},{"Bonus":0,"Continent":"K55","ID":1382,"Name":"20011","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1382","ServerKey":"pl181","X":518,"Y":531},{"Bonus":0,"Continent":"K55","ID":1383,"Name":"025. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1383","ServerKey":"pl181","X":575,"Y":533},{"Bonus":0,"Continent":"K55","ID":1384,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1384","ServerKey":"pl181","X":516,"Y":536},{"Bonus":0,"Continent":"K55","ID":1385,"Name":"004","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1385","ServerKey":"pl181","X":549,"Y":569},{"Bonus":0,"Continent":"K55","ID":1386,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1386","ServerKey":"pl181","X":516,"Y":541},{"Bonus":0,"Continent":"K54","ID":1387,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1387","ServerKey":"pl181","X":484,"Y":512},{"Bonus":0,"Continent":"K55","ID":1388,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1388","ServerKey":"pl181","X":531,"Y":536},{"Bonus":0,"Continent":"K55","ID":1389,"Name":"Hilonia","PlayerID":849066849,"Points":7946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1389","ServerKey":"pl181","X":512,"Y":556},{"Bonus":0,"Continent":"K55","ID":1390,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1390","ServerKey":"pl181","X":518,"Y":528},{"Bonus":0,"Continent":"K54","ID":1391,"Name":"Fajna 056","PlayerID":699868002,"Points":2308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1391","ServerKey":"pl181","X":456,"Y":548},{"Bonus":0,"Continent":"K55","ID":1392,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1392","ServerKey":"pl181","X":526,"Y":546},{"Bonus":0,"Continent":"K55","ID":1393,"Name":"0073","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1393","ServerKey":"pl181","X":511,"Y":531},{"Bonus":0,"Continent":"K45","ID":1394,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1394","ServerKey":"pl181","X":503,"Y":428},{"Bonus":0,"Continent":"K55","ID":1395,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1395","ServerKey":"pl181","X":515,"Y":522},{"Bonus":0,"Continent":"K54","ID":1396,"Name":"Wioska barbarzyƄska","PlayerID":1536625,"Points":7704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1396","ServerKey":"pl181","X":421,"Y":503},{"Bonus":2,"Continent":"K54","ID":1397,"Name":"Daleko 032","PlayerID":6116940,"Points":8576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1397","ServerKey":"pl181","X":476,"Y":578},{"Bonus":0,"Continent":"K55","ID":1398,"Name":"0067","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1398","ServerKey":"pl181","X":506,"Y":525},{"Bonus":0,"Continent":"K55","ID":1399,"Name":"017. BƂud","PlayerID":699703642,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1399","ServerKey":"pl181","X":511,"Y":563},{"Bonus":0,"Continent":"K55","ID":1400,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1400","ServerKey":"pl181","X":524,"Y":501},{"Bonus":0,"Continent":"K54","ID":1401,"Name":"Ateny_73","PlayerID":2585846,"Points":3033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1401","ServerKey":"pl181","X":470,"Y":524},{"Bonus":6,"Continent":"K44","ID":1402,"Name":"B048","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1402","ServerKey":"pl181","X":484,"Y":464},{"Bonus":0,"Continent":"K55","ID":1403,"Name":"Wioska 4","PlayerID":699385139,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1403","ServerKey":"pl181","X":523,"Y":504},{"Bonus":0,"Continent":"K45","ID":1404,"Name":"002 Wawrzyszew","PlayerID":849083501,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1404","ServerKey":"pl181","X":540,"Y":470},{"Bonus":0,"Continent":"K44","ID":1405,"Name":"?+44 85 Brexent Enocq","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1405","ServerKey":"pl181","X":458,"Y":484},{"Bonus":0,"Continent":"K55","ID":1406,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1406","ServerKey":"pl181","X":526,"Y":501},{"Bonus":0,"Continent":"K44","ID":1407,"Name":"066 Punxsutawney","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1407","ServerKey":"pl181","X":461,"Y":477},{"Bonus":0,"Continent":"K43","ID":1408,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1408","ServerKey":"pl181","X":393,"Y":464},{"Bonus":0,"Continent":"K43","ID":1409,"Name":"0006","PlayerID":699523631,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1409","ServerKey":"pl181","X":390,"Y":460},{"Bonus":0,"Continent":"K43","ID":1410,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1410","ServerKey":"pl181","X":387,"Y":468},{"Bonus":0,"Continent":"K45","ID":1411,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1411","ServerKey":"pl181","X":520,"Y":487},{"Bonus":1,"Continent":"K45","ID":1412,"Name":".:028:. Belka","PlayerID":8649412,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1412","ServerKey":"pl181","X":513,"Y":419},{"Bonus":0,"Continent":"K55","ID":1413,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1413","ServerKey":"pl181","X":534,"Y":541},{"Bonus":0,"Continent":"K54","ID":1414,"Name":".Br10..","PlayerID":8779575,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1414","ServerKey":"pl181","X":428,"Y":545},{"Bonus":0,"Continent":"K55","ID":1415,"Name":"0050 K55 and987 OZDR","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1415","ServerKey":"pl181","X":508,"Y":549},{"Bonus":0,"Continent":"K55","ID":1416,"Name":"#008 - Awzan","PlayerID":848967710,"Points":9015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1416","ServerKey":"pl181","X":520,"Y":505},{"Bonus":0,"Continent":"K55","ID":1417,"Name":"P.008Z","PlayerID":873575,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1417","ServerKey":"pl181","X":506,"Y":553},{"Bonus":0,"Continent":"K55","ID":1418,"Name":"018. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1418","ServerKey":"pl181","X":572,"Y":528},{"Bonus":0,"Continent":"K55","ID":1419,"Name":"20009","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1419","ServerKey":"pl181","X":503,"Y":545},{"Bonus":0,"Continent":"K44","ID":1420,"Name":"B043","PlayerID":699299123,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1420","ServerKey":"pl181","X":480,"Y":469},{"Bonus":0,"Continent":"K55","ID":1421,"Name":"SƂoneczna PrzystaƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1421","ServerKey":"pl181","X":519,"Y":543},{"Bonus":0,"Continent":"K55","ID":1422,"Name":"09*","PlayerID":699664910,"Points":8746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1422","ServerKey":"pl181","X":571,"Y":542},{"Bonus":0,"Continent":"K55","ID":1423,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1423","ServerKey":"pl181","X":507,"Y":546},{"Bonus":0,"Continent":"K55","ID":1424,"Name":"adam3","PlayerID":7581876,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1424","ServerKey":"pl181","X":525,"Y":538},{"Bonus":0,"Continent":"K55","ID":1425,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1425","ServerKey":"pl181","X":522,"Y":552},{"Bonus":0,"Continent":"K54","ID":1426,"Name":"F040","PlayerID":699189792,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1426","ServerKey":"pl181","X":482,"Y":520},{"Bonus":0,"Continent":"K55","ID":1427,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1427","ServerKey":"pl181","X":519,"Y":560},{"Bonus":0,"Continent":"K55","ID":1428,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1428","ServerKey":"pl181","X":517,"Y":565},{"Bonus":0,"Continent":"K55","ID":1429,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1429","ServerKey":"pl181","X":516,"Y":568},{"Bonus":0,"Continent":"K45","ID":1430,"Name":"059.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1430","ServerKey":"pl181","X":501,"Y":492},{"Bonus":0,"Continent":"K55","ID":1431,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1431","ServerKey":"pl181","X":526,"Y":556},{"Bonus":0,"Continent":"K55","ID":1432,"Name":"Bilonia","PlayerID":849066849,"Points":10376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1432","ServerKey":"pl181","X":517,"Y":555},{"Bonus":0,"Continent":"K55","ID":1433,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1433","ServerKey":"pl181","X":520,"Y":538},{"Bonus":0,"Continent":"K55","ID":1434,"Name":"20027","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1434","ServerKey":"pl181","X":507,"Y":549},{"Bonus":0,"Continent":"K54","ID":1435,"Name":"016 PrzelotĂłwka","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1435","ServerKey":"pl181","X":421,"Y":540},{"Bonus":7,"Continent":"K44","ID":1436,"Name":"Zagrzeb","PlayerID":699660539,"Points":9765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1436","ServerKey":"pl181","X":425,"Y":458},{"Bonus":0,"Continent":"K55","ID":1437,"Name":"ƚmieszkii","PlayerID":3454753,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1437","ServerKey":"pl181","X":525,"Y":548},{"Bonus":0,"Continent":"K54","ID":1438,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":6573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1438","ServerKey":"pl181","X":442,"Y":537},{"Bonus":0,"Continent":"K55","ID":1439,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1439","ServerKey":"pl181","X":517,"Y":557},{"Bonus":0,"Continent":"K55","ID":1440,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1440","ServerKey":"pl181","X":515,"Y":554},{"Bonus":0,"Continent":"K55","ID":1441,"Name":"10000","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1441","ServerKey":"pl181","X":527,"Y":567},{"Bonus":0,"Continent":"K45","ID":1442,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1442","ServerKey":"pl181","X":523,"Y":495},{"Bonus":0,"Continent":"K55","ID":1443,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1443","ServerKey":"pl181","X":517,"Y":560},{"Bonus":0,"Continent":"K55","ID":1444,"Name":"006.","PlayerID":699695167,"Points":10188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1444","ServerKey":"pl181","X":520,"Y":554},{"Bonus":0,"Continent":"K44","ID":1445,"Name":"Osada","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1445","ServerKey":"pl181","X":497,"Y":439},{"Bonus":0,"Continent":"K55","ID":1446,"Name":"0050","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1446","ServerKey":"pl181","X":508,"Y":526},{"Bonus":0,"Continent":"K54","ID":1447,"Name":"0038 K54 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1447","ServerKey":"pl181","X":495,"Y":564},{"Bonus":8,"Continent":"K54","ID":1448,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1448","ServerKey":"pl181","X":444,"Y":564},{"Bonus":0,"Continent":"K45","ID":1449,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1449","ServerKey":"pl181","X":522,"Y":492},{"Bonus":0,"Continent":"K44","ID":1450,"Name":"PRO8L3M","PlayerID":7491093,"Points":6572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1450","ServerKey":"pl181","X":461,"Y":499},{"Bonus":0,"Continent":"K44","ID":1451,"Name":"051 Hilo","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1451","ServerKey":"pl181","X":457,"Y":472},{"Bonus":0,"Continent":"K44","ID":1452,"Name":"?+44 76 Lyon Tete dOr","PlayerID":698361257,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1452","ServerKey":"pl181","X":462,"Y":479},{"Bonus":0,"Continent":"K44","ID":1453,"Name":"?+44 85 Lyon Perrache","PlayerID":698361257,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1453","ServerKey":"pl181","X":454,"Y":480},{"Bonus":0,"Continent":"K54","ID":1454,"Name":"F068","PlayerID":699189792,"Points":9116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1454","ServerKey":"pl181","X":486,"Y":520},{"Bonus":0,"Continent":"K44","ID":1455,"Name":"031 Nashville","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1455","ServerKey":"pl181","X":452,"Y":468},{"Bonus":0,"Continent":"K45","ID":1456,"Name":"026","PlayerID":699788305,"Points":9290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1456","ServerKey":"pl181","X":526,"Y":438},{"Bonus":0,"Continent":"K44","ID":1457,"Name":"PRO8L3M","PlayerID":7491093,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1457","ServerKey":"pl181","X":466,"Y":495},{"Bonus":0,"Continent":"K55","ID":1458,"Name":"JaamMwG 008","PlayerID":848987051,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1458","ServerKey":"pl181","X":519,"Y":526},{"Bonus":0,"Continent":"K44","ID":1459,"Name":"077.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1459","ServerKey":"pl181","X":467,"Y":492},{"Bonus":0,"Continent":"K54","ID":1460,"Name":"Mniejsze zƂo 0049","PlayerID":699794765,"Points":5923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1460","ServerKey":"pl181","X":419,"Y":513},{"Bonus":0,"Continent":"K54","ID":1461,"Name":"SsSs","PlayerID":1536625,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1461","ServerKey":"pl181","X":463,"Y":502},{"Bonus":0,"Continent":"K45","ID":1462,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1462","ServerKey":"pl181","X":522,"Y":427},{"Bonus":2,"Continent":"K44","ID":1463,"Name":"068 Scranton","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1463","ServerKey":"pl181","X":464,"Y":479},{"Bonus":0,"Continent":"K44","ID":1464,"Name":".Mobile","PlayerID":699781762,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1464","ServerKey":"pl181","X":469,"Y":494},{"Bonus":0,"Continent":"K44","ID":1465,"Name":"0035","PlayerID":848913037,"Points":7942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1465","ServerKey":"pl181","X":464,"Y":470},{"Bonus":0,"Continent":"K44","ID":1466,"Name":"?+44 95 Pusignan","PlayerID":698361257,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1466","ServerKey":"pl181","X":459,"Y":489},{"Bonus":0,"Continent":"K54","ID":1467,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1467","ServerKey":"pl181","X":482,"Y":532},{"Bonus":0,"Continent":"K44","ID":1468,"Name":"B060","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1468","ServerKey":"pl181","X":473,"Y":464},{"Bonus":0,"Continent":"K44","ID":1469,"Name":"PRO8L3M","PlayerID":7491093,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1469","ServerKey":"pl181","X":465,"Y":492},{"Bonus":0,"Continent":"K44","ID":1470,"Name":"PRO8L3M","PlayerID":7491093,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1470","ServerKey":"pl181","X":460,"Y":497},{"Bonus":0,"Continent":"K44","ID":1471,"Name":"028","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1471","ServerKey":"pl181","X":457,"Y":494},{"Bonus":0,"Continent":"K55","ID":1472,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1472","ServerKey":"pl181","X":537,"Y":505},{"Bonus":8,"Continent":"K55","ID":1473,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1473","ServerKey":"pl181","X":537,"Y":561},{"Bonus":0,"Continent":"K44","ID":1474,"Name":"####Wioska barbarzyƄska","PlayerID":9291984,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1474","ServerKey":"pl181","X":437,"Y":429},{"Bonus":0,"Continent":"K55","ID":1475,"Name":"0026 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1475","ServerKey":"pl181","X":500,"Y":560},{"Bonus":0,"Continent":"K55","ID":1476,"Name":"P.014","PlayerID":873575,"Points":10384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1476","ServerKey":"pl181","X":539,"Y":562},{"Bonus":0,"Continent":"K55","ID":1477,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1477","ServerKey":"pl181","X":511,"Y":556},{"Bonus":0,"Continent":"K54","ID":1478,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1478","ServerKey":"pl181","X":479,"Y":529},{"Bonus":0,"Continent":"K55","ID":1479,"Name":"004 | Niflheim","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1479","ServerKey":"pl181","X":508,"Y":548},{"Bonus":0,"Continent":"K55","ID":1480,"Name":"0008 K55 and987 OZDR.","PlayerID":3613413,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1480","ServerKey":"pl181","X":506,"Y":560},{"Bonus":0,"Continent":"K44","ID":1481,"Name":"0062 ~3~","PlayerID":3909522,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1481","ServerKey":"pl181","X":443,"Y":435},{"Bonus":0,"Continent":"K44","ID":1482,"Name":"0102","PlayerID":699431255,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1482","ServerKey":"pl181","X":445,"Y":415},{"Bonus":0,"Continent":"K55","ID":1483,"Name":"021. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1483","ServerKey":"pl181","X":572,"Y":529},{"Bonus":0,"Continent":"K44","ID":1484,"Name":"027 San Antonio","PlayerID":9291984,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1484","ServerKey":"pl181","X":433,"Y":436},{"Bonus":0,"Continent":"K45","ID":1485,"Name":"-[005]- Makalu","PlayerID":849092827,"Points":7296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1485","ServerKey":"pl181","X":554,"Y":481},{"Bonus":0,"Continent":"K54","ID":1486,"Name":"2.Rhm-B-Wt !!!","PlayerID":849087855,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1486","ServerKey":"pl181","X":497,"Y":541},{"Bonus":0,"Continent":"K55","ID":1487,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1487","ServerKey":"pl181","X":586,"Y":519},{"Bonus":0,"Continent":"K44","ID":1488,"Name":"0050 MlekoƂak","PlayerID":3909522,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1488","ServerKey":"pl181","X":433,"Y":425},{"Bonus":0,"Continent":"K55","ID":1489,"Name":"WioskaA","PlayerID":8369778,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1489","ServerKey":"pl181","X":513,"Y":584},{"Bonus":0,"Continent":"K55","ID":1490,"Name":"lady","PlayerID":699703642,"Points":10454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1490","ServerKey":"pl181","X":504,"Y":567},{"Bonus":0,"Continent":"K34","ID":1491,"Name":"002","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1491","ServerKey":"pl181","X":497,"Y":380},{"Bonus":0,"Continent":"K44","ID":1492,"Name":"Szlachcic","PlayerID":699098531,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1492","ServerKey":"pl181","X":487,"Y":459},{"Bonus":0,"Continent":"K43","ID":1493,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1493","ServerKey":"pl181","X":397,"Y":458},{"Bonus":0,"Continent":"K44","ID":1494,"Name":"Suppi","PlayerID":699856962,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1494","ServerKey":"pl181","X":425,"Y":421},{"Bonus":0,"Continent":"K54","ID":1495,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1495","ServerKey":"pl181","X":474,"Y":539},{"Bonus":0,"Continent":"K43","ID":1496,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1496","ServerKey":"pl181","X":398,"Y":438},{"Bonus":0,"Continent":"K44","ID":1497,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1497","ServerKey":"pl181","X":486,"Y":425},{"Bonus":0,"Continent":"K44","ID":1498,"Name":"0013 G","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1498","ServerKey":"pl181","X":431,"Y":410},{"Bonus":0,"Continent":"K54","ID":1499,"Name":"NOT?","PlayerID":9236866,"Points":7428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1499","ServerKey":"pl181","X":434,"Y":533},{"Bonus":0,"Continent":"K44","ID":1500,"Name":"Gravity","PlayerID":698962117,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1500","ServerKey":"pl181","X":409,"Y":451},{"Bonus":0,"Continent":"K54","ID":1501,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1501","ServerKey":"pl181","X":473,"Y":569},{"Bonus":0,"Continent":"K44","ID":1502,"Name":"0011 S","PlayerID":3909522,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1502","ServerKey":"pl181","X":431,"Y":408},{"Bonus":0,"Continent":"K44","ID":1503,"Name":"Gravity","PlayerID":698962117,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1503","ServerKey":"pl181","X":406,"Y":457},{"Bonus":0,"Continent":"K55","ID":1504,"Name":"0070","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1504","ServerKey":"pl181","X":510,"Y":531},{"Bonus":0,"Continent":"K44","ID":1505,"Name":"Suppi","PlayerID":699856962,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1505","ServerKey":"pl181","X":428,"Y":450},{"Bonus":7,"Continent":"K44","ID":1506,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1506","ServerKey":"pl181","X":488,"Y":430},{"Bonus":0,"Continent":"K44","ID":1507,"Name":"x19","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1507","ServerKey":"pl181","X":409,"Y":433},{"Bonus":0,"Continent":"K55","ID":1508,"Name":"033","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1508","ServerKey":"pl181","X":520,"Y":571},{"Bonus":0,"Continent":"K44","ID":1509,"Name":"FKG 01-01","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1509","ServerKey":"pl181","X":420,"Y":411},{"Bonus":1,"Continent":"K44","ID":1510,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1510","ServerKey":"pl181","X":448,"Y":453},{"Bonus":0,"Continent":"K55","ID":1511,"Name":"CALL 1055","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1511","ServerKey":"pl181","X":520,"Y":532},{"Bonus":0,"Continent":"K44","ID":1512,"Name":"0026 A-01","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1512","ServerKey":"pl181","X":428,"Y":414},{"Bonus":0,"Continent":"K55","ID":1513,"Name":"0045 K55 and987 OZDR","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1513","ServerKey":"pl181","X":506,"Y":548},{"Bonus":0,"Continent":"K54","ID":1514,"Name":"SsSs","PlayerID":1536625,"Points":7710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1514","ServerKey":"pl181","X":419,"Y":501},{"Bonus":0,"Continent":"K44","ID":1515,"Name":"A010","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1515","ServerKey":"pl181","X":447,"Y":403},{"Bonus":0,"Continent":"K54","ID":1516,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1516","ServerKey":"pl181","X":428,"Y":506},{"Bonus":0,"Continent":"K55","ID":1517,"Name":"CALL 1063","PlayerID":699784536,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1517","ServerKey":"pl181","X":519,"Y":530},{"Bonus":0,"Continent":"K44","ID":1518,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1518","ServerKey":"pl181","X":422,"Y":427},{"Bonus":0,"Continent":"K45","ID":1519,"Name":"[141] North","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1519","ServerKey":"pl181","X":583,"Y":464},{"Bonus":0,"Continent":"K54","ID":1520,"Name":"...","PlayerID":848915531,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1520","ServerKey":"pl181","X":496,"Y":544},{"Bonus":0,"Continent":"K54","ID":1521,"Name":"Winter is coming","PlayerID":698971484,"Points":5915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1521","ServerKey":"pl181","X":445,"Y":552},{"Bonus":0,"Continent":"K34","ID":1522,"Name":"0002","PlayerID":699431255,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1522","ServerKey":"pl181","X":443,"Y":395},{"Bonus":2,"Continent":"K55","ID":1523,"Name":"CALL 972","PlayerID":699784536,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1523","ServerKey":"pl181","X":545,"Y":553},{"Bonus":0,"Continent":"K55","ID":1524,"Name":"ƚmieszkii","PlayerID":3454753,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1524","ServerKey":"pl181","X":532,"Y":544},{"Bonus":0,"Continent":"K54","ID":1525,"Name":"Winter is coming","PlayerID":698971484,"Points":1842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1525","ServerKey":"pl181","X":443,"Y":548},{"Bonus":0,"Continent":"K55","ID":1526,"Name":"84k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1526","ServerKey":"pl181","X":526,"Y":525},{"Bonus":0,"Continent":"K54","ID":1527,"Name":"0109","PlayerID":698659980,"Points":9251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1527","ServerKey":"pl181","X":461,"Y":544},{"Bonus":4,"Continent":"K45","ID":1528,"Name":"Szlachcic","PlayerID":699098531,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1528","ServerKey":"pl181","X":500,"Y":469},{"Bonus":0,"Continent":"K55","ID":1529,"Name":"Nie oceniaj","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1529","ServerKey":"pl181","X":505,"Y":519},{"Bonus":0,"Continent":"K55","ID":1530,"Name":"JaamMwG 009","PlayerID":848987051,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1530","ServerKey":"pl181","X":521,"Y":528},{"Bonus":0,"Continent":"K34","ID":1531,"Name":"KAER MORHEN","PlayerID":699658023,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1531","ServerKey":"pl181","X":481,"Y":378},{"Bonus":0,"Continent":"K45","ID":1532,"Name":"#07.","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1532","ServerKey":"pl181","X":529,"Y":478},{"Bonus":0,"Continent":"K44","ID":1533,"Name":"0012 K","PlayerID":3909522,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1533","ServerKey":"pl181","X":431,"Y":409},{"Bonus":0,"Continent":"K45","ID":1534,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1534","ServerKey":"pl181","X":554,"Y":477},{"Bonus":0,"Continent":"K44","ID":1535,"Name":"0080","PlayerID":699431255,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1535","ServerKey":"pl181","X":441,"Y":410},{"Bonus":0,"Continent":"K55","ID":1536,"Name":"[122]","PlayerID":8000875,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1536","ServerKey":"pl181","X":568,"Y":536},{"Bonus":0,"Continent":"K44","ID":1537,"Name":"001","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1537","ServerKey":"pl181","X":409,"Y":447},{"Bonus":5,"Continent":"K45","ID":1538,"Name":"A15","PlayerID":699368887,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1538","ServerKey":"pl181","X":553,"Y":449},{"Bonus":0,"Continent":"K44","ID":1539,"Name":"Gravity","PlayerID":698962117,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1539","ServerKey":"pl181","X":413,"Y":455},{"Bonus":0,"Continent":"K55","ID":1540,"Name":"[115]","PlayerID":8000875,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1540","ServerKey":"pl181","X":542,"Y":504},{"Bonus":0,"Continent":"K44","ID":1541,"Name":"K44 x027","PlayerID":698364331,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1541","ServerKey":"pl181","X":437,"Y":411},{"Bonus":0,"Continent":"K55","ID":1542,"Name":"CALL 975","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1542","ServerKey":"pl181","X":541,"Y":545},{"Bonus":0,"Continent":"K34","ID":1543,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1543","ServerKey":"pl181","X":436,"Y":399},{"Bonus":0,"Continent":"K44","ID":1544,"Name":"SsSs","PlayerID":1536625,"Points":9454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1544","ServerKey":"pl181","X":421,"Y":494},{"Bonus":3,"Continent":"K55","ID":1545,"Name":"002","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1545","ServerKey":"pl181","X":580,"Y":534},{"Bonus":0,"Continent":"K34","ID":1546,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1546","ServerKey":"pl181","X":444,"Y":399},{"Bonus":0,"Continent":"K45","ID":1547,"Name":"22.","PlayerID":698702991,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1547","ServerKey":"pl181","X":561,"Y":479},{"Bonus":0,"Continent":"K44","ID":1548,"Name":"K44 x004","PlayerID":698364331,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1548","ServerKey":"pl181","X":442,"Y":400},{"Bonus":9,"Continent":"K54","ID":1549,"Name":"Osada SP","PlayerID":698971484,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1549","ServerKey":"pl181","X":449,"Y":536},{"Bonus":0,"Continent":"K44","ID":1550,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1550","ServerKey":"pl181","X":432,"Y":402},{"Bonus":0,"Continent":"K55","ID":1551,"Name":"[112]","PlayerID":8000875,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1551","ServerKey":"pl181","X":555,"Y":533},{"Bonus":0,"Continent":"K55","ID":1552,"Name":"0063","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1552","ServerKey":"pl181","X":505,"Y":513},{"Bonus":0,"Continent":"K44","ID":1553,"Name":"A005","PlayerID":8740199,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1553","ServerKey":"pl181","X":446,"Y":403},{"Bonus":6,"Continent":"K45","ID":1554,"Name":"B012","PlayerID":8138506,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1554","ServerKey":"pl181","X":537,"Y":481},{"Bonus":0,"Continent":"K44","ID":1555,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1555","ServerKey":"pl181","X":414,"Y":437},{"Bonus":0,"Continent":"K55","ID":1556,"Name":"Szlachcic 027","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1556","ServerKey":"pl181","X":566,"Y":527},{"Bonus":0,"Continent":"K34","ID":1557,"Name":"0107","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1557","ServerKey":"pl181","X":456,"Y":386},{"Bonus":0,"Continent":"K55","ID":1559,"Name":"CALL 979","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1559","ServerKey":"pl181","X":552,"Y":550},{"Bonus":0,"Continent":"K55","ID":1560,"Name":"[080]","PlayerID":848985692,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1560","ServerKey":"pl181","X":533,"Y":526},{"Bonus":0,"Continent":"K44","ID":1561,"Name":"Osada","PlayerID":699098531,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1561","ServerKey":"pl181","X":498,"Y":452},{"Bonus":0,"Continent":"K55","ID":1562,"Name":"No i MiĂłd","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1562","ServerKey":"pl181","X":535,"Y":519},{"Bonus":0,"Continent":"K55","ID":1563,"Name":"[082]","PlayerID":848985692,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1563","ServerKey":"pl181","X":530,"Y":527},{"Bonus":0,"Continent":"K54","ID":1564,"Name":"0120","PlayerID":698659980,"Points":6164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1564","ServerKey":"pl181","X":460,"Y":547},{"Bonus":0,"Continent":"K55","ID":1565,"Name":"76k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1565","ServerKey":"pl181","X":527,"Y":535},{"Bonus":0,"Continent":"K55","ID":1566,"Name":"80k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1566","ServerKey":"pl181","X":530,"Y":526},{"Bonus":0,"Continent":"K44","ID":1568,"Name":"0061 Wioska","PlayerID":3909522,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1568","ServerKey":"pl181","X":444,"Y":436},{"Bonus":0,"Continent":"K55","ID":1569,"Name":"JaamMwG 010","PlayerID":848987051,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1569","ServerKey":"pl181","X":527,"Y":521},{"Bonus":0,"Continent":"K55","ID":1570,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1570","ServerKey":"pl181","X":522,"Y":500},{"Bonus":0,"Continent":"K56","ID":1571,"Name":"Szlachcic 004","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1571","ServerKey":"pl181","X":618,"Y":533},{"Bonus":0,"Continent":"K44","ID":1572,"Name":"0081 Wioska","PlayerID":3909522,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1572","ServerKey":"pl181","X":443,"Y":445},{"Bonus":0,"Continent":"K55","ID":1573,"Name":"117.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1573","ServerKey":"pl181","X":537,"Y":518},{"Bonus":0,"Continent":"K45","ID":1574,"Name":"BBB","PlayerID":1006847,"Points":6678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1574","ServerKey":"pl181","X":552,"Y":428},{"Bonus":0,"Continent":"K55","ID":1576,"Name":"20028","PlayerID":848915531,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1576","ServerKey":"pl181","X":507,"Y":548},{"Bonus":0,"Continent":"K44","ID":1577,"Name":"Suppi","PlayerID":699856962,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1577","ServerKey":"pl181","X":424,"Y":424},{"Bonus":0,"Continent":"K44","ID":1578,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1578","ServerKey":"pl181","X":414,"Y":445},{"Bonus":0,"Continent":"K44","ID":1579,"Name":"00192 Wioska","PlayerID":3909522,"Points":7082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1579","ServerKey":"pl181","X":438,"Y":412},{"Bonus":0,"Continent":"K44","ID":1581,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1581","ServerKey":"pl181","X":495,"Y":442},{"Bonus":0,"Continent":"K55","ID":1582,"Name":"#039","PlayerID":849001572,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1582","ServerKey":"pl181","X":520,"Y":553},{"Bonus":3,"Continent":"K45","ID":1583,"Name":"Filantrop_ktoƛ?","PlayerID":699347951,"Points":7770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1583","ServerKey":"pl181","X":579,"Y":485},{"Bonus":0,"Continent":"K44","ID":1584,"Name":"0001","PlayerID":699431255,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1584","ServerKey":"pl181","X":439,"Y":403},{"Bonus":0,"Continent":"K55","ID":1585,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1585","ServerKey":"pl181","X":569,"Y":534},{"Bonus":0,"Continent":"K43","ID":1586,"Name":"Land of Fire","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1586","ServerKey":"pl181","X":396,"Y":443},{"Bonus":0,"Continent":"K54","ID":1587,"Name":"(019)","PlayerID":9236866,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1587","ServerKey":"pl181","X":426,"Y":539},{"Bonus":0,"Continent":"K44","ID":1588,"Name":"Velenneth","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1588","ServerKey":"pl181","X":403,"Y":427},{"Bonus":0,"Continent":"K34","ID":1589,"Name":"0116","PlayerID":699431255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1589","ServerKey":"pl181","X":450,"Y":390},{"Bonus":0,"Continent":"K44","ID":1590,"Name":"Szlachcic","PlayerID":698388578,"Points":11063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1590","ServerKey":"pl181","X":455,"Y":462},{"Bonus":0,"Continent":"K44","ID":1591,"Name":"Gravity","PlayerID":698962117,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1591","ServerKey":"pl181","X":406,"Y":445},{"Bonus":0,"Continent":"K45","ID":1592,"Name":"9.9 Heytroom","PlayerID":8444356,"Points":8584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1592","ServerKey":"pl181","X":550,"Y":441},{"Bonus":0,"Continent":"K54","ID":1593,"Name":"05. Brakujący element","PlayerID":9167250,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1593","ServerKey":"pl181","X":404,"Y":565},{"Bonus":0,"Continent":"K55","ID":1594,"Name":"0019","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1594","ServerKey":"pl181","X":531,"Y":533},{"Bonus":0,"Continent":"K44","ID":1595,"Name":"Alabama","PlayerID":699265922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1595","ServerKey":"pl181","X":409,"Y":469},{"Bonus":0,"Continent":"K44","ID":1596,"Name":"x11","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1596","ServerKey":"pl181","X":406,"Y":429},{"Bonus":0,"Continent":"K45","ID":1597,"Name":"0030","PlayerID":698599365,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1597","ServerKey":"pl181","X":512,"Y":498},{"Bonus":0,"Continent":"K44","ID":1598,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1598","ServerKey":"pl181","X":401,"Y":465},{"Bonus":0,"Continent":"K54","ID":1599,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1599","ServerKey":"pl181","X":477,"Y":535},{"Bonus":0,"Continent":"K55","ID":1600,"Name":"ƚmieszkii","PlayerID":3454753,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1600","ServerKey":"pl181","X":538,"Y":548},{"Bonus":0,"Continent":"K55","ID":1601,"Name":"F078","PlayerID":699189792,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1601","ServerKey":"pl181","X":509,"Y":537},{"Bonus":0,"Continent":"K44","ID":1602,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1602","ServerKey":"pl181","X":418,"Y":417},{"Bonus":0,"Continent":"K44","ID":1603,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1603","ServerKey":"pl181","X":412,"Y":489},{"Bonus":0,"Continent":"K55","ID":1604,"Name":"20012","PlayerID":848915531,"Points":7036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1604","ServerKey":"pl181","X":529,"Y":538},{"Bonus":0,"Continent":"K44","ID":1605,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1605","ServerKey":"pl181","X":460,"Y":419},{"Bonus":0,"Continent":"K55","ID":1607,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1607","ServerKey":"pl181","X":538,"Y":533},{"Bonus":4,"Continent":"K44","ID":1608,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1608","ServerKey":"pl181","X":490,"Y":456},{"Bonus":0,"Continent":"K55","ID":1609,"Name":"CALL 996","PlayerID":699784536,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1609","ServerKey":"pl181","X":543,"Y":542},{"Bonus":0,"Continent":"K54","ID":1610,"Name":"asasa","PlayerID":699856962,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1610","ServerKey":"pl181","X":401,"Y":540},{"Bonus":0,"Continent":"K45","ID":1611,"Name":"003","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1611","ServerKey":"pl181","X":531,"Y":482},{"Bonus":0,"Continent":"K55","ID":1612,"Name":"Mzm39","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1612","ServerKey":"pl181","X":548,"Y":546},{"Bonus":0,"Continent":"K55","ID":1613,"Name":"10010","PlayerID":848915531,"Points":8708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1613","ServerKey":"pl181","X":531,"Y":557},{"Bonus":0,"Continent":"K45","ID":1614,"Name":"C003","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1614","ServerKey":"pl181","X":518,"Y":456},{"Bonus":0,"Continent":"K55","ID":1615,"Name":"003","PlayerID":699194766,"Points":8886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1615","ServerKey":"pl181","X":552,"Y":539},{"Bonus":0,"Continent":"K45","ID":1616,"Name":"102.","PlayerID":8788366,"Points":7061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1616","ServerKey":"pl181","X":505,"Y":480},{"Bonus":0,"Continent":"K55","ID":1617,"Name":"Yogi","PlayerID":2808172,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1617","ServerKey":"pl181","X":539,"Y":527},{"Bonus":0,"Continent":"K55","ID":1618,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1618","ServerKey":"pl181","X":574,"Y":511},{"Bonus":0,"Continent":"K44","ID":1619,"Name":"0034:","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1619","ServerKey":"pl181","X":431,"Y":417},{"Bonus":0,"Continent":"K54","ID":1620,"Name":"Daleko 039","PlayerID":8369778,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1620","ServerKey":"pl181","X":485,"Y":592},{"Bonus":0,"Continent":"K44","ID":1621,"Name":"[0002]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1621","ServerKey":"pl181","X":423,"Y":408},{"Bonus":0,"Continent":"K54","ID":1622,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1622","ServerKey":"pl181","X":491,"Y":502},{"Bonus":0,"Continent":"K44","ID":1623,"Name":"Gravity","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1623","ServerKey":"pl181","X":406,"Y":450},{"Bonus":0,"Continent":"K54","ID":1624,"Name":"Br4","PlayerID":699364813,"Points":8845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1624","ServerKey":"pl181","X":425,"Y":545},{"Bonus":0,"Continent":"K55","ID":1625,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1625","ServerKey":"pl181","X":511,"Y":548},{"Bonus":0,"Continent":"K54","ID":1626,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1626","ServerKey":"pl181","X":495,"Y":517},{"Bonus":0,"Continent":"K65","ID":1627,"Name":"*310*","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1627","ServerKey":"pl181","X":508,"Y":618},{"Bonus":0,"Continent":"K44","ID":1628,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1628","ServerKey":"pl181","X":497,"Y":480},{"Bonus":0,"Continent":"K54","ID":1629,"Name":"0117","PlayerID":698659980,"Points":7866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1629","ServerKey":"pl181","X":461,"Y":545},{"Bonus":0,"Continent":"K55","ID":1630,"Name":"0001 K55 and987 OZDR.","PlayerID":3613413,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1630","ServerKey":"pl181","X":504,"Y":552},{"Bonus":0,"Continent":"K55","ID":1631,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1631","ServerKey":"pl181","X":513,"Y":561},{"Bonus":0,"Continent":"K55","ID":1632,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1632","ServerKey":"pl181","X":517,"Y":549},{"Bonus":0,"Continent":"K54","ID":1633,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1633","ServerKey":"pl181","X":447,"Y":502},{"Bonus":0,"Continent":"K55","ID":1634,"Name":"CALL 1057","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1634","ServerKey":"pl181","X":520,"Y":533},{"Bonus":0,"Continent":"K54","ID":1635,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1635","ServerKey":"pl181","X":430,"Y":503},{"Bonus":0,"Continent":"K55","ID":1636,"Name":"021. Ć»mij","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1636","ServerKey":"pl181","X":508,"Y":574},{"Bonus":0,"Continent":"K45","ID":1637,"Name":"018","PlayerID":849070464,"Points":4387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1637","ServerKey":"pl181","X":539,"Y":486},{"Bonus":0,"Continent":"K54","ID":1638,"Name":"Reco","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1638","ServerKey":"pl181","X":495,"Y":554},{"Bonus":0,"Continent":"K45","ID":1639,"Name":".:065:. Chillout","PlayerID":848934935,"Points":2753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1639","ServerKey":"pl181","X":515,"Y":425},{"Bonus":0,"Continent":"K55","ID":1640,"Name":"ƚmieszkii","PlayerID":3454753,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1640","ServerKey":"pl181","X":511,"Y":552},{"Bonus":0,"Continent":"K45","ID":1641,"Name":".:031:. Makaron","PlayerID":8649412,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1641","ServerKey":"pl181","X":512,"Y":416},{"Bonus":0,"Continent":"K55","ID":1642,"Name":"[182]","PlayerID":8000875,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1642","ServerKey":"pl181","X":530,"Y":555},{"Bonus":0,"Continent":"K35","ID":1643,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1643","ServerKey":"pl181","X":530,"Y":393},{"Bonus":0,"Continent":"K44","ID":1644,"Name":"207 San Juan","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1644","ServerKey":"pl181","X":466,"Y":463},{"Bonus":0,"Continent":"K55","ID":1645,"Name":"Gundabad","PlayerID":849091897,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1645","ServerKey":"pl181","X":534,"Y":558},{"Bonus":0,"Continent":"K44","ID":1646,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1646","ServerKey":"pl181","X":418,"Y":487},{"Bonus":0,"Continent":"K55","ID":1647,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1647","ServerKey":"pl181","X":518,"Y":562},{"Bonus":0,"Continent":"K55","ID":1648,"Name":"P.013","PlayerID":873575,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1648","ServerKey":"pl181","X":531,"Y":560},{"Bonus":0,"Continent":"K54","ID":1649,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1649","ServerKey":"pl181","X":453,"Y":512},{"Bonus":0,"Continent":"K55","ID":1650,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1650","ServerKey":"pl181","X":514,"Y":544},{"Bonus":0,"Continent":"K55","ID":1651,"Name":"Dilonia","PlayerID":849066849,"Points":8160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1651","ServerKey":"pl181","X":518,"Y":561},{"Bonus":0,"Continent":"K45","ID":1652,"Name":"Wioska 519","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1652","ServerKey":"pl181","X":558,"Y":466},{"Bonus":0,"Continent":"K55","ID":1653,"Name":"Shire","PlayerID":7581876,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1653","ServerKey":"pl181","X":531,"Y":545},{"Bonus":8,"Continent":"K55","ID":1654,"Name":"Gattacka","PlayerID":699298370,"Points":10635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1654","ServerKey":"pl181","X":586,"Y":514},{"Bonus":0,"Continent":"K55","ID":1655,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1655","ServerKey":"pl181","X":512,"Y":544},{"Bonus":0,"Continent":"K65","ID":1656,"Name":"0242","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1656","ServerKey":"pl181","X":521,"Y":606},{"Bonus":0,"Continent":"K54","ID":1657,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1657","ServerKey":"pl181","X":432,"Y":529},{"Bonus":0,"Continent":"K55","ID":1658,"Name":"Summer Slam ~ 006","PlayerID":7581876,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1658","ServerKey":"pl181","X":513,"Y":541},{"Bonus":0,"Continent":"K55","ID":1659,"Name":"10002","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1659","ServerKey":"pl181","X":525,"Y":567},{"Bonus":7,"Continent":"K55","ID":1660,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1660","ServerKey":"pl181","X":509,"Y":526},{"Bonus":0,"Continent":"K55","ID":1661,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1661","ServerKey":"pl181","X":510,"Y":544},{"Bonus":0,"Continent":"K55","ID":1662,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1662","ServerKey":"pl181","X":537,"Y":531},{"Bonus":9,"Continent":"K44","ID":1663,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1663","ServerKey":"pl181","X":487,"Y":443},{"Bonus":0,"Continent":"K53","ID":1664,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1664","ServerKey":"pl181","X":383,"Y":503},{"Bonus":0,"Continent":"K54","ID":1665,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1665","ServerKey":"pl181","X":418,"Y":510},{"Bonus":0,"Continent":"K45","ID":1667,"Name":"xxx","PlayerID":698239813,"Points":9032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1667","ServerKey":"pl181","X":513,"Y":455},{"Bonus":0,"Continent":"K55","ID":1668,"Name":"019","PlayerID":848915531,"Points":7279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1668","ServerKey":"pl181","X":517,"Y":538},{"Bonus":4,"Continent":"K55","ID":1669,"Name":"CALL 1015","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1669","ServerKey":"pl181","X":551,"Y":562},{"Bonus":0,"Continent":"K55","ID":1670,"Name":"#027","PlayerID":849001572,"Points":9941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1670","ServerKey":"pl181","X":518,"Y":551},{"Bonus":0,"Continent":"K54","ID":1671,"Name":"068. ALFI","PlayerID":8539216,"Points":1862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1671","ServerKey":"pl181","X":477,"Y":558},{"Bonus":0,"Continent":"K55","ID":1672,"Name":"0080","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1672","ServerKey":"pl181","X":527,"Y":548},{"Bonus":0,"Continent":"K55","ID":1673,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1673","ServerKey":"pl181","X":513,"Y":543},{"Bonus":0,"Continent":"K44","ID":1674,"Name":"Suppi","PlayerID":699856962,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1674","ServerKey":"pl181","X":441,"Y":448},{"Bonus":8,"Continent":"K45","ID":1675,"Name":"A042","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1675","ServerKey":"pl181","X":508,"Y":430},{"Bonus":0,"Continent":"K55","ID":1676,"Name":"20026","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1676","ServerKey":"pl181","X":507,"Y":544},{"Bonus":0,"Continent":"K54","ID":1677,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1677","ServerKey":"pl181","X":493,"Y":557},{"Bonus":0,"Continent":"K55","ID":1678,"Name":"CALL 962","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1678","ServerKey":"pl181","X":545,"Y":546},{"Bonus":0,"Continent":"K55","ID":1679,"Name":"PARASOL X","PlayerID":8369778,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1679","ServerKey":"pl181","X":504,"Y":598},{"Bonus":0,"Continent":"K55","ID":1680,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1680","ServerKey":"pl181","X":509,"Y":544},{"Bonus":0,"Continent":"K55","ID":1681,"Name":"000 Wioska","PlayerID":848915531,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1681","ServerKey":"pl181","X":510,"Y":538},{"Bonus":0,"Continent":"K56","ID":1682,"Name":"Gryfios 018","PlayerID":698666810,"Points":12143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1682","ServerKey":"pl181","X":617,"Y":541},{"Bonus":0,"Continent":"K55","ID":1683,"Name":"Mzm50","PlayerID":7142659,"Points":4839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1683","ServerKey":"pl181","X":538,"Y":520},{"Bonus":0,"Continent":"K55","ID":1684,"Name":"0023 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1684","ServerKey":"pl181","X":505,"Y":558},{"Bonus":0,"Continent":"K55","ID":1685,"Name":"024. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1685","ServerKey":"pl181","X":570,"Y":530},{"Bonus":0,"Continent":"K55","ID":1686,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1686","ServerKey":"pl181","X":522,"Y":563},{"Bonus":0,"Continent":"K55","ID":1687,"Name":"77k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1687","ServerKey":"pl181","X":527,"Y":543},{"Bonus":0,"Continent":"K55","ID":1688,"Name":"024. Utopiec","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1688","ServerKey":"pl181","X":510,"Y":571},{"Bonus":0,"Continent":"K45","ID":1689,"Name":".achim.","PlayerID":6936607,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1689","ServerKey":"pl181","X":529,"Y":452},{"Bonus":2,"Continent":"K54","ID":1690,"Name":"KIELBA 103","PlayerID":699342219,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1690","ServerKey":"pl181","X":450,"Y":569},{"Bonus":0,"Continent":"K55","ID":1691,"Name":"0046 K55 and987 OZDR","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1691","ServerKey":"pl181","X":509,"Y":548},{"Bonus":0,"Continent":"K55","ID":1692,"Name":"lady","PlayerID":699703642,"Points":10612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1692","ServerKey":"pl181","X":506,"Y":567},{"Bonus":9,"Continent":"K55","ID":1693,"Name":"10001","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1693","ServerKey":"pl181","X":534,"Y":564},{"Bonus":0,"Continent":"K55","ID":1694,"Name":"Karaz-a-Karak","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1694","ServerKey":"pl181","X":517,"Y":543},{"Bonus":0,"Continent":"K54","ID":1695,"Name":"035. ALFI","PlayerID":8539216,"Points":1653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1695","ServerKey":"pl181","X":471,"Y":560},{"Bonus":0,"Continent":"K55","ID":1696,"Name":"006 Deliverance","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1696","ServerKey":"pl181","X":520,"Y":548},{"Bonus":0,"Continent":"K54","ID":1697,"Name":"0118","PlayerID":698659980,"Points":8118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1697","ServerKey":"pl181","X":460,"Y":546},{"Bonus":6,"Continent":"K44","ID":1698,"Name":"Szlachcic","PlayerID":699098531,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1698","ServerKey":"pl181","X":487,"Y":480},{"Bonus":0,"Continent":"K55","ID":1699,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1699","ServerKey":"pl181","X":513,"Y":552},{"Bonus":0,"Continent":"K54","ID":1700,"Name":"002 Jak tam chƂopie, ƛpisz?","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1700","ServerKey":"pl181","X":465,"Y":543},{"Bonus":8,"Continent":"K44","ID":1701,"Name":"A002","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1701","ServerKey":"pl181","X":493,"Y":417},{"Bonus":0,"Continent":"K55","ID":1702,"Name":"1. Is-2 !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1702","ServerKey":"pl181","X":500,"Y":549},{"Bonus":0,"Continent":"K45","ID":1703,"Name":"Wioska 501","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1703","ServerKey":"pl181","X":577,"Y":459},{"Bonus":0,"Continent":"K55","ID":1704,"Name":"2. World !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1704","ServerKey":"pl181","X":503,"Y":540},{"Bonus":0,"Continent":"K44","ID":1705,"Name":"P Konfederacja","PlayerID":848915730,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1705","ServerKey":"pl181","X":454,"Y":447},{"Bonus":0,"Continent":"K53","ID":1706,"Name":"Wioska","PlayerID":849084005,"Points":9739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1706","ServerKey":"pl181","X":391,"Y":535},{"Bonus":0,"Continent":"K44","ID":1707,"Name":"0054","PlayerID":848913037,"Points":6685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1707","ServerKey":"pl181","X":460,"Y":470},{"Bonus":0,"Continent":"K55","ID":1708,"Name":"2. Jagdpanzer !!!","PlayerID":849087855,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1708","ServerKey":"pl181","X":500,"Y":541},{"Bonus":0,"Continent":"K55","ID":1709,"Name":"Szlachcic 009","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1709","ServerKey":"pl181","X":564,"Y":528},{"Bonus":0,"Continent":"K54","ID":1710,"Name":"015 - Tychy***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1710","ServerKey":"pl181","X":448,"Y":582},{"Bonus":0,"Continent":"K55","ID":1711,"Name":"20025","PlayerID":848915531,"Points":8672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1711","ServerKey":"pl181","X":509,"Y":543},{"Bonus":0,"Continent":"K55","ID":1712,"Name":"20021","PlayerID":848915531,"Points":9926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1712","ServerKey":"pl181","X":504,"Y":548},{"Bonus":0,"Continent":"K55","ID":1713,"Name":"0036 K55 and987 OZDR.","PlayerID":3613413,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1713","ServerKey":"pl181","X":503,"Y":565},{"Bonus":0,"Continent":"K55","ID":1714,"Name":"- Nie biorę tabletek na sen","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1714","ServerKey":"pl181","X":510,"Y":513},{"Bonus":0,"Continent":"K55","ID":1715,"Name":"Nilonia","PlayerID":849066849,"Points":6238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1715","ServerKey":"pl181","X":518,"Y":555},{"Bonus":0,"Continent":"K55","ID":1716,"Name":"JaamMwG 011","PlayerID":848987051,"Points":9148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1716","ServerKey":"pl181","X":521,"Y":527},{"Bonus":0,"Continent":"K56","ID":1717,"Name":"0033","PlayerID":6510480,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1717","ServerKey":"pl181","X":620,"Y":513},{"Bonus":0,"Continent":"K54","ID":1718,"Name":"NOT?","PlayerID":9236866,"Points":9990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1718","ServerKey":"pl181","X":425,"Y":537},{"Bonus":0,"Continent":"K55","ID":1719,"Name":"Oilonia","PlayerID":849066849,"Points":6521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1719","ServerKey":"pl181","X":512,"Y":559},{"Bonus":3,"Continent":"K45","ID":1720,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1720","ServerKey":"pl181","X":551,"Y":496},{"Bonus":0,"Continent":"K55","ID":1721,"Name":"010.","PlayerID":699695167,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1721","ServerKey":"pl181","X":530,"Y":553},{"Bonus":0,"Continent":"K54","ID":1722,"Name":"065. ALFI","PlayerID":8539216,"Points":1299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1722","ServerKey":"pl181","X":471,"Y":569},{"Bonus":0,"Continent":"K55","ID":1723,"Name":"And987","PlayerID":3613413,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1723","ServerKey":"pl181","X":502,"Y":561},{"Bonus":0,"Continent":"K54","ID":1724,"Name":"#0124 Zabawa","PlayerID":9272054,"Points":9410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1724","ServerKey":"pl181","X":493,"Y":522},{"Bonus":0,"Continent":"K55","ID":1725,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1725","ServerKey":"pl181","X":512,"Y":564},{"Bonus":0,"Continent":"K45","ID":1726,"Name":"004","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1726","ServerKey":"pl181","X":530,"Y":483},{"Bonus":6,"Continent":"K54","ID":1727,"Name":"Aleartis","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1727","ServerKey":"pl181","X":487,"Y":546},{"Bonus":0,"Continent":"K55","ID":1728,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1728","ServerKey":"pl181","X":529,"Y":543},{"Bonus":0,"Continent":"K55","ID":1729,"Name":"Head Held High","PlayerID":699785935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1729","ServerKey":"pl181","X":501,"Y":519},{"Bonus":0,"Continent":"K55","ID":1730,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1730","ServerKey":"pl181","X":509,"Y":571},{"Bonus":0,"Continent":"K45","ID":1731,"Name":"007","PlayerID":848967710,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1731","ServerKey":"pl181","X":528,"Y":480},{"Bonus":0,"Continent":"K54","ID":1732,"Name":"KARTAGINA ..2","PlayerID":8438707,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1732","ServerKey":"pl181","X":454,"Y":583},{"Bonus":0,"Continent":"K54","ID":1733,"Name":"Wioska 7","PlayerID":698971484,"Points":1557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1733","ServerKey":"pl181","X":443,"Y":544},{"Bonus":0,"Continent":"K54","ID":1734,"Name":"KIELBA 002","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1734","ServerKey":"pl181","X":447,"Y":578},{"Bonus":0,"Continent":"K55","ID":1735,"Name":"0018","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1735","ServerKey":"pl181","X":530,"Y":512},{"Bonus":0,"Continent":"K55","ID":1736,"Name":"Wioska skobol","PlayerID":17714,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1736","ServerKey":"pl181","X":599,"Y":573},{"Bonus":0,"Continent":"K44","ID":1737,"Name":"005","PlayerID":699781762,"Points":8144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1737","ServerKey":"pl181","X":470,"Y":499},{"Bonus":0,"Continent":"K56","ID":1738,"Name":"001. Pianohi1Tars","PlayerID":699785935,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1738","ServerKey":"pl181","X":611,"Y":538},{"Bonus":0,"Continent":"K55","ID":1739,"Name":"Ilonia","PlayerID":849066849,"Points":8230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1739","ServerKey":"pl181","X":520,"Y":555},{"Bonus":0,"Continent":"K56","ID":1740,"Name":"...xXx... II","PlayerID":3364735,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1740","ServerKey":"pl181","X":603,"Y":540},{"Bonus":0,"Continent":"K45","ID":1741,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1741","ServerKey":"pl181","X":503,"Y":440},{"Bonus":0,"Continent":"K56","ID":1742,"Name":"001.Aconcagua","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1742","ServerKey":"pl181","X":601,"Y":571},{"Bonus":0,"Continent":"K55","ID":1743,"Name":"037.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1743","ServerKey":"pl181","X":551,"Y":516},{"Bonus":0,"Continent":"K55","ID":1744,"Name":"Gliwice","PlayerID":1715091,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1744","ServerKey":"pl181","X":593,"Y":577},{"Bonus":0,"Continent":"K54","ID":1745,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1745","ServerKey":"pl181","X":418,"Y":520},{"Bonus":0,"Continent":"K45","ID":1747,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1747","ServerKey":"pl181","X":515,"Y":443},{"Bonus":0,"Continent":"K55","ID":1748,"Name":"Krakow","PlayerID":1715091,"Points":9526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1748","ServerKey":"pl181","X":592,"Y":567},{"Bonus":0,"Continent":"K54","ID":1749,"Name":"#0107 ƚwięty MikoƂaj","PlayerID":698704189,"Points":9432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1749","ServerKey":"pl181","X":480,"Y":541},{"Bonus":0,"Continent":"K56","ID":1750,"Name":"podgrzybek","PlayerID":1715091,"Points":9591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1750","ServerKey":"pl181","X":601,"Y":572},{"Bonus":0,"Continent":"K45","ID":1751,"Name":"031","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1751","ServerKey":"pl181","X":537,"Y":426},{"Bonus":0,"Continent":"K56","ID":1752,"Name":"W.181/01","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1752","ServerKey":"pl181","X":608,"Y":536},{"Bonus":0,"Continent":"K44","ID":1753,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1753","ServerKey":"pl181","X":472,"Y":421},{"Bonus":0,"Continent":"K56","ID":1754,"Name":"Godziwa nazwa","PlayerID":3364735,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1754","ServerKey":"pl181","X":605,"Y":540},{"Bonus":0,"Continent":"K45","ID":1755,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":7923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1755","ServerKey":"pl181","X":547,"Y":467},{"Bonus":0,"Continent":"K55","ID":1756,"Name":".WIDZEW","PlayerID":6929240,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1756","ServerKey":"pl181","X":595,"Y":569},{"Bonus":6,"Continent":"K44","ID":1757,"Name":"+44 73 Lyon Confluence","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1757","ServerKey":"pl181","X":430,"Y":471},{"Bonus":0,"Continent":"K54","ID":1759,"Name":"#0126 Koliber","PlayerID":9272054,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1759","ServerKey":"pl181","X":494,"Y":524},{"Bonus":0,"Continent":"K56","ID":1760,"Name":"EXA","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1760","ServerKey":"pl181","X":616,"Y":533},{"Bonus":0,"Continent":"K44","ID":1761,"Name":"017 Indianopolis","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1761","ServerKey":"pl181","X":439,"Y":476},{"Bonus":0,"Continent":"K55","ID":1762,"Name":"ƚpij spokojnie","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1762","ServerKey":"pl181","X":582,"Y":590},{"Bonus":0,"Continent":"K55","ID":1763,"Name":"Jaaa","PlayerID":698635863,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1763","ServerKey":"pl181","X":571,"Y":541},{"Bonus":0,"Continent":"K56","ID":1764,"Name":"*5601* Bradford City","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1764","ServerKey":"pl181","X":600,"Y":559},{"Bonus":0,"Continent":"K45","ID":1765,"Name":"09 | Wioska barbarzyƄska","PlayerID":849002091,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1765","ServerKey":"pl181","X":541,"Y":439},{"Bonus":0,"Continent":"K56","ID":1766,"Name":"0001","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1766","ServerKey":"pl181","X":604,"Y":549},{"Bonus":0,"Continent":"K44","ID":1767,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1767","ServerKey":"pl181","X":493,"Y":477},{"Bonus":0,"Continent":"K46","ID":1768,"Name":"Abadonia WWW","PlayerID":699347951,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1768","ServerKey":"pl181","X":618,"Y":487},{"Bonus":0,"Continent":"K44","ID":1769,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1769","ServerKey":"pl181","X":477,"Y":440},{"Bonus":0,"Continent":"K56","ID":1770,"Name":"001 Sparta","PlayerID":8013349,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1770","ServerKey":"pl181","X":605,"Y":530},{"Bonus":0,"Continent":"K55","ID":1771,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1771","ServerKey":"pl181","X":540,"Y":543},{"Bonus":0,"Continent":"K55","ID":1772,"Name":"040","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1772","ServerKey":"pl181","X":586,"Y":564},{"Bonus":0,"Continent":"K55","ID":1773,"Name":"001. Wioska BieniuS","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1773","ServerKey":"pl181","X":593,"Y":520},{"Bonus":0,"Continent":"K56","ID":1774,"Name":"008.","PlayerID":8900955,"Points":6722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1774","ServerKey":"pl181","X":615,"Y":536},{"Bonus":0,"Continent":"K56","ID":1775,"Name":"007 Sol.","PlayerID":699099811,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1775","ServerKey":"pl181","X":611,"Y":529},{"Bonus":0,"Continent":"K56","ID":1776,"Name":"0018 MzM","PlayerID":698416970,"Points":9322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1776","ServerKey":"pl181","X":607,"Y":555},{"Bonus":0,"Continent":"K45","ID":1777,"Name":"Osada","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1777","ServerKey":"pl181","X":501,"Y":440},{"Bonus":0,"Continent":"K56","ID":1778,"Name":"0050","PlayerID":698416970,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1778","ServerKey":"pl181","X":600,"Y":531},{"Bonus":0,"Continent":"K55","ID":1779,"Name":"0001","PlayerID":698191218,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1779","ServerKey":"pl181","X":571,"Y":579},{"Bonus":0,"Continent":"K55","ID":1780,"Name":"CALL 1038","PlayerID":699784536,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1780","ServerKey":"pl181","X":540,"Y":551},{"Bonus":4,"Continent":"K45","ID":1781,"Name":"9.6 Bonus PKP","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1781","ServerKey":"pl181","X":555,"Y":434},{"Bonus":0,"Continent":"K55","ID":1782,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1782","ServerKey":"pl181","X":598,"Y":500},{"Bonus":3,"Continent":"K54","ID":1783,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1783","ServerKey":"pl181","X":455,"Y":561},{"Bonus":0,"Continent":"K56","ID":1784,"Name":"002","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1784","ServerKey":"pl181","X":606,"Y":537},{"Bonus":0,"Continent":"K45","ID":1785,"Name":"GONDOR f","PlayerID":8155296,"Points":8877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1785","ServerKey":"pl181","X":541,"Y":472},{"Bonus":0,"Continent":"K45","ID":1786,"Name":"ZAMEK ABADONA 1","PlayerID":699347951,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1786","ServerKey":"pl181","X":591,"Y":489},{"Bonus":0,"Continent":"K55","ID":1787,"Name":"amator MO5","PlayerID":848915531,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1787","ServerKey":"pl181","X":536,"Y":551},{"Bonus":0,"Continent":"K56","ID":1788,"Name":"sƂodziuteƄka 13","PlayerID":8013349,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1788","ServerKey":"pl181","X":602,"Y":537},{"Bonus":0,"Continent":"K45","ID":1789,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1789","ServerKey":"pl181","X":582,"Y":488},{"Bonus":0,"Continent":"K45","ID":1790,"Name":"111.","PlayerID":8788366,"Points":8369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1790","ServerKey":"pl181","X":533,"Y":476},{"Bonus":0,"Continent":"K56","ID":1791,"Name":"sƂodziuteƄka 06","PlayerID":8013349,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1791","ServerKey":"pl181","X":604,"Y":535},{"Bonus":0,"Continent":"K55","ID":1792,"Name":"CALL 956","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1792","ServerKey":"pl181","X":547,"Y":549},{"Bonus":0,"Continent":"K56","ID":1793,"Name":"013","PlayerID":8428196,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1793","ServerKey":"pl181","X":612,"Y":542},{"Bonus":0,"Continent":"K44","ID":1794,"Name":"PRO8L3M","PlayerID":7491093,"Points":10437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1794","ServerKey":"pl181","X":447,"Y":488},{"Bonus":0,"Continent":"K55","ID":1795,"Name":"Wioska JaaMwG","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1795","ServerKey":"pl181","X":578,"Y":595},{"Bonus":0,"Continent":"K55","ID":1796,"Name":"Jaaa","PlayerID":698635863,"Points":10432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1796","ServerKey":"pl181","X":567,"Y":580},{"Bonus":0,"Continent":"K44","ID":1797,"Name":"B044","PlayerID":699299123,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1797","ServerKey":"pl181","X":480,"Y":468},{"Bonus":3,"Continent":"K45","ID":1798,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1798","ServerKey":"pl181","X":579,"Y":493},{"Bonus":0,"Continent":"K45","ID":1799,"Name":"[186]","PlayerID":8000875,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1799","ServerKey":"pl181","X":536,"Y":493},{"Bonus":0,"Continent":"K45","ID":1800,"Name":"#01.","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1800","ServerKey":"pl181","X":526,"Y":467},{"Bonus":0,"Continent":"K55","ID":1801,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1801","ServerKey":"pl181","X":574,"Y":587},{"Bonus":0,"Continent":"K55","ID":1802,"Name":"Wioska 408","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1802","ServerKey":"pl181","X":555,"Y":514},{"Bonus":0,"Continent":"K56","ID":1803,"Name":"022.","PlayerID":8900955,"Points":6874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1803","ServerKey":"pl181","X":612,"Y":540},{"Bonus":0,"Continent":"K45","ID":1804,"Name":"ZƂote Wrota","PlayerID":8513699,"Points":5950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1804","ServerKey":"pl181","X":532,"Y":458},{"Bonus":0,"Continent":"K56","ID":1805,"Name":"010 Moria","PlayerID":8013349,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1805","ServerKey":"pl181","X":604,"Y":529},{"Bonus":0,"Continent":"K44","ID":1807,"Name":"+44 63 Mions","PlayerID":698361257,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1807","ServerKey":"pl181","X":432,"Y":469},{"Bonus":0,"Continent":"K55","ID":1808,"Name":"-001- Delusions of Saviour","PlayerID":698693697,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1808","ServerKey":"pl181","X":578,"Y":591},{"Bonus":0,"Continent":"K44","ID":1809,"Name":"139 Gudalajahara","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1809","ServerKey":"pl181","X":472,"Y":489},{"Bonus":0,"Continent":"K45","ID":1810,"Name":"Szlachcic x","PlayerID":699098531,"Points":9265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1810","ServerKey":"pl181","X":508,"Y":461},{"Bonus":0,"Continent":"K54","ID":1811,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1811","ServerKey":"pl181","X":433,"Y":506},{"Bonus":0,"Continent":"K56","ID":1812,"Name":"EXA","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1812","ServerKey":"pl181","X":605,"Y":527},{"Bonus":0,"Continent":"K44","ID":1813,"Name":"027","PlayerID":9291984,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1813","ServerKey":"pl181","X":467,"Y":437},{"Bonus":0,"Continent":"K55","ID":1814,"Name":"000 PRO8L3M?","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1814","ServerKey":"pl181","X":573,"Y":553},{"Bonus":0,"Continent":"K54","ID":1815,"Name":"F021","PlayerID":699189792,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1815","ServerKey":"pl181","X":497,"Y":533},{"Bonus":0,"Continent":"K45","ID":1816,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1816","ServerKey":"pl181","X":521,"Y":471},{"Bonus":0,"Continent":"K45","ID":1817,"Name":"Marienburg 8","PlayerID":699355601,"Points":2412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1817","ServerKey":"pl181","X":527,"Y":480},{"Bonus":0,"Continent":"K55","ID":1818,"Name":"014.","PlayerID":8900955,"Points":7563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1818","ServerKey":"pl181","X":599,"Y":545},{"Bonus":0,"Continent":"K44","ID":1819,"Name":"B007","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1819","ServerKey":"pl181","X":483,"Y":442},{"Bonus":0,"Continent":"K55","ID":1820,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1820","ServerKey":"pl181","X":581,"Y":580},{"Bonus":0,"Continent":"K55","ID":1821,"Name":".WisƂa KrakĂłw.","PlayerID":6929240,"Points":10328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1821","ServerKey":"pl181","X":599,"Y":547},{"Bonus":0,"Continent":"K55","ID":1822,"Name":"[109]","PlayerID":8000875,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1822","ServerKey":"pl181","X":544,"Y":506},{"Bonus":0,"Continent":"K45","ID":1823,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1823","ServerKey":"pl181","X":518,"Y":482},{"Bonus":0,"Continent":"K55","ID":1824,"Name":"MĂłwili na nią sƂoƄce","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1824","ServerKey":"pl181","X":577,"Y":594},{"Bonus":0,"Continent":"K44","ID":1825,"Name":"+44 63 Sainte Foy les Lyon","PlayerID":698361257,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1825","ServerKey":"pl181","X":433,"Y":464},{"Bonus":0,"Continent":"K55","ID":1826,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1826","ServerKey":"pl181","X":581,"Y":591},{"Bonus":0,"Continent":"K45","ID":1827,"Name":"115.","PlayerID":8788366,"Points":9436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1827","ServerKey":"pl181","X":509,"Y":479},{"Bonus":6,"Continent":"K44","ID":1828,"Name":"A#034#","PlayerID":698807570,"Points":11837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1828","ServerKey":"pl181","X":421,"Y":476},{"Bonus":0,"Continent":"K46","ID":1829,"Name":"0007","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1829","ServerKey":"pl181","X":604,"Y":496},{"Bonus":0,"Continent":"K45","ID":1830,"Name":"Wioska 502","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1830","ServerKey":"pl181","X":586,"Y":491},{"Bonus":0,"Continent":"K55","ID":1831,"Name":"044","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1831","ServerKey":"pl181","X":599,"Y":561},{"Bonus":0,"Continent":"K45","ID":1832,"Name":"07 Chorwacja","PlayerID":8925695,"Points":9595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1832","ServerKey":"pl181","X":586,"Y":488},{"Bonus":0,"Continent":"K56","ID":1833,"Name":"012.","PlayerID":8900955,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1833","ServerKey":"pl181","X":608,"Y":557},{"Bonus":0,"Continent":"K54","ID":1834,"Name":"Front_22","PlayerID":699856962,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1834","ServerKey":"pl181","X":455,"Y":529},{"Bonus":0,"Continent":"K55","ID":1835,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1835","ServerKey":"pl181","X":575,"Y":590},{"Bonus":0,"Continent":"K45","ID":1836,"Name":"004","PlayerID":698881022,"Points":3134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1836","ServerKey":"pl181","X":506,"Y":478},{"Bonus":0,"Continent":"K45","ID":1837,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1837","ServerKey":"pl181","X":518,"Y":467},{"Bonus":0,"Continent":"K55","ID":1838,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1838","ServerKey":"pl181","X":581,"Y":590},{"Bonus":0,"Continent":"K54","ID":1839,"Name":"#0078 Wermikulit","PlayerID":9272054,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1839","ServerKey":"pl181","X":496,"Y":559},{"Bonus":0,"Continent":"K34","ID":1840,"Name":"050","PlayerID":698739350,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1840","ServerKey":"pl181","X":492,"Y":380},{"Bonus":0,"Continent":"K54","ID":1841,"Name":"016","PlayerID":848886870,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1841","ServerKey":"pl181","X":465,"Y":577},{"Bonus":0,"Continent":"K56","ID":1842,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1842","ServerKey":"pl181","X":600,"Y":533},{"Bonus":0,"Continent":"K55","ID":1843,"Name":"B002","PlayerID":8138506,"Points":9588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1843","ServerKey":"pl181","X":555,"Y":500},{"Bonus":0,"Continent":"K56","ID":1844,"Name":"0032","PlayerID":6510480,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1844","ServerKey":"pl181","X":616,"Y":527},{"Bonus":0,"Continent":"K54","ID":1845,"Name":"0229","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1845","ServerKey":"pl181","X":470,"Y":547},{"Bonus":0,"Continent":"K45","ID":1846,"Name":"OSTIGLIAT","PlayerID":8155296,"Points":8966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1846","ServerKey":"pl181","X":532,"Y":469},{"Bonus":0,"Continent":"K45","ID":1847,"Name":"039","PlayerID":849063849,"Points":8677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1847","ServerKey":"pl181","X":555,"Y":446},{"Bonus":7,"Continent":"K55","ID":1848,"Name":"007","PlayerID":699194766,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1848","ServerKey":"pl181","X":558,"Y":541},{"Bonus":0,"Continent":"K55","ID":1849,"Name":"[035]","PlayerID":848985692,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1849","ServerKey":"pl181","X":595,"Y":538},{"Bonus":0,"Continent":"K54","ID":1850,"Name":"ObroƄcyZamkuTrzymaliSieDzielnie","PlayerID":7491093,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1850","ServerKey":"pl181","X":479,"Y":530},{"Bonus":0,"Continent":"K56","ID":1851,"Name":"KiLL YoU!","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1851","ServerKey":"pl181","X":603,"Y":537},{"Bonus":0,"Continent":"K55","ID":1852,"Name":"035","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1852","ServerKey":"pl181","X":519,"Y":576},{"Bonus":0,"Continent":"K55","ID":1853,"Name":"Essa 001","PlayerID":848987051,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1853","ServerKey":"pl181","X":570,"Y":576},{"Bonus":0,"Continent":"K45","ID":1854,"Name":"Szlachcic","PlayerID":698867446,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1854","ServerKey":"pl181","X":569,"Y":474},{"Bonus":0,"Continent":"K55","ID":1855,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1855","ServerKey":"pl181","X":589,"Y":554},{"Bonus":0,"Continent":"K45","ID":1856,"Name":".achim.","PlayerID":6936607,"Points":5455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1856","ServerKey":"pl181","X":532,"Y":475},{"Bonus":0,"Continent":"K56","ID":1857,"Name":"Szlachcic 002","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1857","ServerKey":"pl181","X":616,"Y":535},{"Bonus":0,"Continent":"K54","ID":1858,"Name":"Ateny_71","PlayerID":2585846,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1858","ServerKey":"pl181","X":472,"Y":519},{"Bonus":0,"Continent":"K56","ID":1859,"Name":"006.","PlayerID":8900955,"Points":6373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1859","ServerKey":"pl181","X":613,"Y":547},{"Bonus":0,"Continent":"K44","ID":1860,"Name":"K44 x020.","PlayerID":698364331,"Points":6957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1860","ServerKey":"pl181","X":457,"Y":430},{"Bonus":0,"Continent":"K55","ID":1861,"Name":"Kotka nie ma, myszka harcuje","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1861","ServerKey":"pl181","X":571,"Y":596},{"Bonus":0,"Continent":"K56","ID":1862,"Name":"nie ma mnie ,ostrze kredki","PlayerID":8742874,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1862","ServerKey":"pl181","X":606,"Y":560},{"Bonus":0,"Continent":"K45","ID":1863,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1863","ServerKey":"pl181","X":544,"Y":486},{"Bonus":0,"Continent":"K55","ID":1864,"Name":"Moria","PlayerID":7581876,"Points":6405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1864","ServerKey":"pl181","X":535,"Y":532},{"Bonus":0,"Continent":"K55","ID":1865,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1865","ServerKey":"pl181","X":531,"Y":537},{"Bonus":0,"Continent":"K54","ID":1866,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":7482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1866","ServerKey":"pl181","X":491,"Y":500},{"Bonus":0,"Continent":"K55","ID":1867,"Name":"CALL 1077","PlayerID":699784536,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1867","ServerKey":"pl181","X":528,"Y":546},{"Bonus":0,"Continent":"K55","ID":1868,"Name":"0055","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1868","ServerKey":"pl181","X":510,"Y":517},{"Bonus":0,"Continent":"K53","ID":1869,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1869","ServerKey":"pl181","X":384,"Y":520},{"Bonus":0,"Continent":"K44","ID":1870,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1870","ServerKey":"pl181","X":404,"Y":420},{"Bonus":0,"Continent":"K55","ID":1871,"Name":"kek","PlayerID":848967710,"Points":7290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1871","ServerKey":"pl181","X":545,"Y":516},{"Bonus":8,"Continent":"K44","ID":1872,"Name":"0073","PlayerID":3909522,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1872","ServerKey":"pl181","X":451,"Y":439},{"Bonus":0,"Continent":"K55","ID":1873,"Name":"Szlachcic 060","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1873","ServerKey":"pl181","X":540,"Y":527},{"Bonus":0,"Continent":"K54","ID":1874,"Name":"Butem w Morgen","PlayerID":848967710,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1874","ServerKey":"pl181","X":482,"Y":514},{"Bonus":0,"Continent":"K55","ID":1875,"Name":"CALL 999","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1875","ServerKey":"pl181","X":542,"Y":540},{"Bonus":0,"Continent":"K44","ID":1876,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1876","ServerKey":"pl181","X":470,"Y":449},{"Bonus":0,"Continent":"K54","ID":1877,"Name":"026 - Belfast","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1877","ServerKey":"pl181","X":406,"Y":580},{"Bonus":0,"Continent":"K55","ID":1878,"Name":"[143]","PlayerID":8000875,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1878","ServerKey":"pl181","X":562,"Y":535},{"Bonus":0,"Continent":"K55","ID":1879,"Name":"Oh oh oho","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1879","ServerKey":"pl181","X":537,"Y":534},{"Bonus":0,"Continent":"K54","ID":1880,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1880","ServerKey":"pl181","X":493,"Y":569},{"Bonus":0,"Continent":"K55","ID":1881,"Name":"CALL 1061","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1881","ServerKey":"pl181","X":523,"Y":533},{"Bonus":0,"Continent":"K54","ID":1882,"Name":"aaa","PlayerID":699698253,"Points":1985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1882","ServerKey":"pl181","X":456,"Y":544},{"Bonus":0,"Continent":"K55","ID":1883,"Name":"003","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1883","ServerKey":"pl181","X":524,"Y":531},{"Bonus":0,"Continent":"K44","ID":1884,"Name":"P Konfederacja","PlayerID":848915730,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1884","ServerKey":"pl181","X":453,"Y":446},{"Bonus":7,"Continent":"K44","ID":1885,"Name":"SsSs","PlayerID":1536625,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1885","ServerKey":"pl181","X":418,"Y":492},{"Bonus":0,"Continent":"K55","ID":1886,"Name":"Wioska uorior","PlayerID":7581876,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1886","ServerKey":"pl181","X":530,"Y":539},{"Bonus":0,"Continent":"K44","ID":1887,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1887","ServerKey":"pl181","X":498,"Y":475},{"Bonus":0,"Continent":"K55","ID":1888,"Name":"amator MO4","PlayerID":848915531,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1888","ServerKey":"pl181","X":535,"Y":549},{"Bonus":0,"Continent":"K54","ID":1889,"Name":"keepo","PlayerID":848967710,"Points":6025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1889","ServerKey":"pl181","X":477,"Y":512},{"Bonus":0,"Continent":"K55","ID":1890,"Name":"0038 MzM","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1890","ServerKey":"pl181","X":547,"Y":541},{"Bonus":0,"Continent":"K54","ID":1891,"Name":"003","PlayerID":848967710,"Points":5613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1891","ServerKey":"pl181","X":471,"Y":515},{"Bonus":0,"Continent":"K55","ID":1892,"Name":"sas","PlayerID":7581876,"Points":10277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1892","ServerKey":"pl181","X":539,"Y":528},{"Bonus":0,"Continent":"K55","ID":1893,"Name":"10015","PlayerID":848915531,"Points":8014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1893","ServerKey":"pl181","X":527,"Y":562},{"Bonus":7,"Continent":"K55","ID":1894,"Name":"Jilonia","PlayerID":849066849,"Points":6749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1894","ServerKey":"pl181","X":513,"Y":555},{"Bonus":0,"Continent":"K55","ID":1895,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1895","ServerKey":"pl181","X":537,"Y":543},{"Bonus":0,"Continent":"K55","ID":1896,"Name":"009","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1896","ServerKey":"pl181","X":554,"Y":531},{"Bonus":0,"Continent":"K55","ID":1897,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1897","ServerKey":"pl181","X":550,"Y":527},{"Bonus":1,"Continent":"K45","ID":1898,"Name":".:009:. Chillout","PlayerID":848934935,"Points":9146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1898","ServerKey":"pl181","X":515,"Y":430},{"Bonus":0,"Continent":"K55","ID":1899,"Name":"kek","PlayerID":848967710,"Points":8753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1899","ServerKey":"pl181","X":537,"Y":515},{"Bonus":0,"Continent":"K55","ID":1900,"Name":"032","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1900","ServerKey":"pl181","X":522,"Y":573},{"Bonus":0,"Continent":"K55","ID":1901,"Name":"K55","PlayerID":698867483,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1901","ServerKey":"pl181","X":531,"Y":524},{"Bonus":0,"Continent":"K45","ID":1902,"Name":"[089]","PlayerID":848985692,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1902","ServerKey":"pl181","X":535,"Y":487},{"Bonus":0,"Continent":"K53","ID":1903,"Name":"Tamk 005. Vegeta","PlayerID":698290577,"Points":9084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1903","ServerKey":"pl181","X":398,"Y":501},{"Bonus":4,"Continent":"K54","ID":1904,"Name":"Fajna 001","PlayerID":698971484,"Points":4187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1904","ServerKey":"pl181","X":450,"Y":557},{"Bonus":0,"Continent":"K55","ID":1905,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1905","ServerKey":"pl181","X":539,"Y":532},{"Bonus":0,"Continent":"K55","ID":1906,"Name":"CALL 1021","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1906","ServerKey":"pl181","X":550,"Y":564},{"Bonus":0,"Continent":"K55","ID":1907,"Name":"CALL 1084","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1907","ServerKey":"pl181","X":536,"Y":540},{"Bonus":0,"Continent":"K54","ID":1908,"Name":"002. Marzyciel Shrek","PlayerID":698290577,"Points":5781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1908","ServerKey":"pl181","X":482,"Y":504},{"Bonus":0,"Continent":"K55","ID":1909,"Name":"85k$ Grvvyq","PlayerID":699676005,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1909","ServerKey":"pl181","X":535,"Y":529},{"Bonus":0,"Continent":"K54","ID":1910,"Name":"30005","PlayerID":848915531,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1910","ServerKey":"pl181","X":488,"Y":542},{"Bonus":0,"Continent":"K55","ID":1911,"Name":"P.032","PlayerID":873575,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1911","ServerKey":"pl181","X":544,"Y":558},{"Bonus":0,"Continent":"K44","ID":1912,"Name":"0062 ~223~","PlayerID":3909522,"Points":9091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1912","ServerKey":"pl181","X":442,"Y":439},{"Bonus":0,"Continent":"K45","ID":1914,"Name":"xxx","PlayerID":698239813,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1914","ServerKey":"pl181","X":504,"Y":446},{"Bonus":0,"Continent":"K55","ID":1915,"Name":"056.","PlayerID":699695167,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1915","ServerKey":"pl181","X":529,"Y":555},{"Bonus":0,"Continent":"K44","ID":1916,"Name":"B009","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1916","ServerKey":"pl181","X":485,"Y":447},{"Bonus":0,"Continent":"K55","ID":1917,"Name":"[193","PlayerID":8000875,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1917","ServerKey":"pl181","X":530,"Y":551},{"Bonus":0,"Continent":"K55","ID":1918,"Name":"0.Nowy Jork","PlayerID":698215322,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1918","ServerKey":"pl181","X":518,"Y":586},{"Bonus":8,"Continent":"K44","ID":1919,"Name":"Osada","PlayerID":699098531,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1919","ServerKey":"pl181","X":493,"Y":448},{"Bonus":0,"Continent":"K44","ID":1920,"Name":"0001 paawlo13","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1920","ServerKey":"pl181","X":424,"Y":412},{"Bonus":0,"Continent":"K44","ID":1921,"Name":"112 Ottawa","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1921","ServerKey":"pl181","X":479,"Y":491},{"Bonus":0,"Continent":"K44","ID":1924,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1924","ServerKey":"pl181","X":480,"Y":448},{"Bonus":0,"Continent":"K55","ID":1926,"Name":"021","PlayerID":7976264,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1926","ServerKey":"pl181","X":505,"Y":591},{"Bonus":0,"Continent":"K44","ID":1928,"Name":"457|424","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1928","ServerKey":"pl181","X":450,"Y":405},{"Bonus":0,"Continent":"K44","ID":1929,"Name":"001 Delirium","PlayerID":9291984,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1929","ServerKey":"pl181","X":425,"Y":416},{"Bonus":0,"Continent":"K44","ID":1930,"Name":"A010","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1930","ServerKey":"pl181","X":489,"Y":414},{"Bonus":0,"Continent":"K54","ID":1932,"Name":"Fajna 045","PlayerID":3613413,"Points":3874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1932","ServerKey":"pl181","X":458,"Y":557},{"Bonus":0,"Continent":"K44","ID":1934,"Name":"K44 009","PlayerID":698290577,"Points":7589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1934","ServerKey":"pl181","X":429,"Y":483},{"Bonus":0,"Continent":"K44","ID":1936,"Name":"P Konfederacja","PlayerID":848915730,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1936","ServerKey":"pl181","X":456,"Y":449},{"Bonus":0,"Continent":"K55","ID":1940,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1940","ServerKey":"pl181","X":517,"Y":501},{"Bonus":0,"Continent":"K54","ID":1941,"Name":"Mam do tego nosa","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1941","ServerKey":"pl181","X":498,"Y":521},{"Bonus":0,"Continent":"K54","ID":1942,"Name":"011","PlayerID":848886870,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1942","ServerKey":"pl181","X":468,"Y":579},{"Bonus":0,"Continent":"K44","ID":1943,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1943","ServerKey":"pl181","X":427,"Y":402},{"Bonus":0,"Continent":"K54","ID":1944,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1944","ServerKey":"pl181","X":489,"Y":510},{"Bonus":0,"Continent":"K44","ID":1947,"Name":"Fresio","PlayerID":699660539,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1947","ServerKey":"pl181","X":420,"Y":419},{"Bonus":0,"Continent":"K44","ID":1948,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1948","ServerKey":"pl181","X":411,"Y":496},{"Bonus":0,"Continent":"K34","ID":1949,"Name":"0030","PlayerID":699431255,"Points":10677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1949","ServerKey":"pl181","X":454,"Y":383},{"Bonus":0,"Continent":"K45","ID":1950,"Name":"045","PlayerID":7271812,"Points":6187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1950","ServerKey":"pl181","X":543,"Y":431},{"Bonus":0,"Continent":"K54","ID":1952,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1952","ServerKey":"pl181","X":452,"Y":516},{"Bonus":0,"Continent":"K44","ID":1953,"Name":"SugarDandy","PlayerID":699796330,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1953","ServerKey":"pl181","X":431,"Y":406},{"Bonus":0,"Continent":"K54","ID":1954,"Name":"1. T-10","PlayerID":849087855,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1954","ServerKey":"pl181","X":493,"Y":530},{"Bonus":0,"Continent":"K54","ID":1956,"Name":"078. ALFI","PlayerID":8539216,"Points":1905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1956","ServerKey":"pl181","X":481,"Y":556},{"Bonus":0,"Continent":"K44","ID":1957,"Name":"Suppi","PlayerID":699856962,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1957","ServerKey":"pl181","X":424,"Y":422},{"Bonus":0,"Continent":"K44","ID":1958,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1958","ServerKey":"pl181","X":442,"Y":441},{"Bonus":0,"Continent":"K34","ID":1959,"Name":"VN No Door","PlayerID":699883079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1959","ServerKey":"pl181","X":467,"Y":378},{"Bonus":0,"Continent":"K44","ID":1961,"Name":"B028","PlayerID":699299123,"Points":8626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1961","ServerKey":"pl181","X":482,"Y":452},{"Bonus":0,"Continent":"K55","ID":1963,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1963","ServerKey":"pl181","X":586,"Y":521},{"Bonus":0,"Continent":"K44","ID":1964,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1964","ServerKey":"pl181","X":418,"Y":429},{"Bonus":0,"Continent":"K44","ID":1965,"Name":"Suppi","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1965","ServerKey":"pl181","X":425,"Y":422},{"Bonus":0,"Continent":"K55","ID":1966,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1966","ServerKey":"pl181","X":583,"Y":534},{"Bonus":0,"Continent":"K44","ID":1967,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1967","ServerKey":"pl181","X":494,"Y":478},{"Bonus":0,"Continent":"K44","ID":1968,"Name":"?+44 85 Zuydcoote","PlayerID":698361257,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1968","ServerKey":"pl181","X":455,"Y":484},{"Bonus":0,"Continent":"K55","ID":1969,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1969","ServerKey":"pl181","X":510,"Y":547},{"Bonus":0,"Continent":"K54","ID":1970,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1970","ServerKey":"pl181","X":484,"Y":528},{"Bonus":0,"Continent":"K45","ID":1972,"Name":"Joms 005","PlayerID":699756210,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1972","ServerKey":"pl181","X":527,"Y":422},{"Bonus":0,"Continent":"K54","ID":1973,"Name":"0158","PlayerID":698659980,"Points":8847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1973","ServerKey":"pl181","X":462,"Y":550},{"Bonus":0,"Continent":"K55","ID":1974,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1974","ServerKey":"pl181","X":519,"Y":568},{"Bonus":0,"Continent":"K54","ID":1975,"Name":"kathare","PlayerID":873575,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1975","ServerKey":"pl181","X":498,"Y":569},{"Bonus":0,"Continent":"K54","ID":1976,"Name":"lady anima","PlayerID":699703642,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1976","ServerKey":"pl181","X":495,"Y":577},{"Bonus":0,"Continent":"K55","ID":1977,"Name":"036. Ara","PlayerID":699703642,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1977","ServerKey":"pl181","X":506,"Y":576},{"Bonus":0,"Continent":"K44","ID":1978,"Name":"A#064#","PlayerID":698807570,"Points":10391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1978","ServerKey":"pl181","X":417,"Y":474},{"Bonus":0,"Continent":"K54","ID":1979,"Name":"lady","PlayerID":699703642,"Points":7413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1979","ServerKey":"pl181","X":495,"Y":586},{"Bonus":0,"Continent":"K45","ID":1980,"Name":"Landy 3","PlayerID":699347951,"Points":8845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1980","ServerKey":"pl181","X":566,"Y":482},{"Bonus":0,"Continent":"K54","ID":1981,"Name":"Nowa Nadzieja","PlayerID":699383121,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1981","ServerKey":"pl181","X":493,"Y":592},{"Bonus":0,"Continent":"K35","ID":1982,"Name":".:044:. Chillout","PlayerID":848934935,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1982","ServerKey":"pl181","X":500,"Y":394},{"Bonus":0,"Continent":"K54","ID":1983,"Name":"NOT?","PlayerID":9236866,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1983","ServerKey":"pl181","X":422,"Y":528},{"Bonus":0,"Continent":"K44","ID":1984,"Name":"x16","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1984","ServerKey":"pl181","X":432,"Y":441},{"Bonus":0,"Continent":"K44","ID":1985,"Name":"-xx13","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1985","ServerKey":"pl181","X":490,"Y":497},{"Bonus":0,"Continent":"K44","ID":1986,"Name":"Suppi","PlayerID":699856962,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1986","ServerKey":"pl181","X":431,"Y":442},{"Bonus":0,"Continent":"K44","ID":1987,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1987","ServerKey":"pl181","X":458,"Y":450},{"Bonus":0,"Continent":"K44","ID":1988,"Name":"Suppi","PlayerID":699856962,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1988","ServerKey":"pl181","X":439,"Y":447},{"Bonus":0,"Continent":"K55","ID":1989,"Name":"034","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1989","ServerKey":"pl181","X":518,"Y":570},{"Bonus":6,"Continent":"K54","ID":1990,"Name":"Osada ST","PlayerID":699698253,"Points":2840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1990","ServerKey":"pl181","X":454,"Y":540},{"Bonus":0,"Continent":"K44","ID":1991,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1991","ServerKey":"pl181","X":426,"Y":445},{"Bonus":0,"Continent":"K45","ID":1992,"Name":"09 Niemcy","PlayerID":8925695,"Points":6263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1992","ServerKey":"pl181","X":585,"Y":490},{"Bonus":0,"Continent":"K54","ID":1993,"Name":"064","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1993","ServerKey":"pl181","X":420,"Y":514},{"Bonus":0,"Continent":"K44","ID":1994,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1994","ServerKey":"pl181","X":480,"Y":449},{"Bonus":0,"Continent":"K54","ID":1995,"Name":"014","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1995","ServerKey":"pl181","X":421,"Y":511},{"Bonus":0,"Continent":"K44","ID":1996,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1996","ServerKey":"pl181","X":492,"Y":482},{"Bonus":2,"Continent":"K54","ID":1997,"Name":"Lynortis","PlayerID":699698253,"Points":3793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1997","ServerKey":"pl181","X":454,"Y":546},{"Bonus":0,"Continent":"K44","ID":1998,"Name":"058 Kahului","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1998","ServerKey":"pl181","X":460,"Y":469},{"Bonus":0,"Continent":"K44","ID":1999,"Name":"046","PlayerID":699510259,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=1999","ServerKey":"pl181","X":421,"Y":487},{"Bonus":0,"Continent":"K55","ID":2000,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2000","ServerKey":"pl181","X":582,"Y":536},{"Bonus":0,"Continent":"K55","ID":2001,"Name":"[183]","PlayerID":8000875,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2001","ServerKey":"pl181","X":553,"Y":540},{"Bonus":0,"Continent":"K45","ID":2002,"Name":"JL5","PlayerID":8155296,"Points":8533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2002","ServerKey":"pl181","X":539,"Y":449},{"Bonus":0,"Continent":"K44","ID":2003,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2003","ServerKey":"pl181","X":491,"Y":441},{"Bonus":0,"Continent":"K45","ID":2004,"Name":"012 123 rta","PlayerID":699368887,"Points":9039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2004","ServerKey":"pl181","X":542,"Y":455},{"Bonus":0,"Continent":"K55","ID":2005,"Name":"!Aqua004","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2005","ServerKey":"pl181","X":564,"Y":514},{"Bonus":0,"Continent":"K54","ID":2006,"Name":"Cyber detox","PlayerID":1804724,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2006","ServerKey":"pl181","X":400,"Y":520},{"Bonus":0,"Continent":"K44","ID":2007,"Name":"172 Ushuaia","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2007","ServerKey":"pl181","X":482,"Y":478},{"Bonus":0,"Continent":"K55","ID":2008,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2008","ServerKey":"pl181","X":553,"Y":548},{"Bonus":0,"Continent":"K55","ID":2009,"Name":"004","PlayerID":699194766,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2009","ServerKey":"pl181","X":555,"Y":543},{"Bonus":0,"Continent":"K45","ID":2010,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2010","ServerKey":"pl181","X":585,"Y":453},{"Bonus":0,"Continent":"K45","ID":2011,"Name":"BBB","PlayerID":1006847,"Points":8849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2011","ServerKey":"pl181","X":576,"Y":448},{"Bonus":0,"Continent":"K55","ID":2012,"Name":"- 216 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2012","ServerKey":"pl181","X":552,"Y":573},{"Bonus":4,"Continent":"K44","ID":2013,"Name":"070 Chicago","PlayerID":1497168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2013","ServerKey":"pl181","X":456,"Y":476},{"Bonus":0,"Continent":"K55","ID":2014,"Name":"20015","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2014","ServerKey":"pl181","X":516,"Y":559},{"Bonus":0,"Continent":"K54","ID":2015,"Name":"F034","PlayerID":699189792,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2015","ServerKey":"pl181","X":496,"Y":524},{"Bonus":0,"Continent":"K55","ID":2016,"Name":"012. Yrka","PlayerID":699703642,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2016","ServerKey":"pl181","X":510,"Y":560},{"Bonus":0,"Continent":"K55","ID":2017,"Name":"K55","PlayerID":848967710,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2017","ServerKey":"pl181","X":539,"Y":519},{"Bonus":0,"Continent":"K54","ID":2018,"Name":"Obreit","PlayerID":699443920,"Points":4076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2018","ServerKey":"pl181","X":431,"Y":561},{"Bonus":0,"Continent":"K55","ID":2019,"Name":"CALL 1062","PlayerID":699784536,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2019","ServerKey":"pl181","X":520,"Y":534},{"Bonus":0,"Continent":"K45","ID":2020,"Name":".:028:.Chillout","PlayerID":848934935,"Points":7734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2020","ServerKey":"pl181","X":512,"Y":442},{"Bonus":0,"Continent":"K44","ID":2021,"Name":"?+44 75 Lyon Grange Blanche","PlayerID":698361257,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2021","ServerKey":"pl181","X":459,"Y":477},{"Bonus":0,"Continent":"K45","ID":2022,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2022","ServerKey":"pl181","X":513,"Y":439},{"Bonus":0,"Continent":"K44","ID":2023,"Name":"PRO8L3M","PlayerID":7491093,"Points":8419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2023","ServerKey":"pl181","X":457,"Y":498},{"Bonus":9,"Continent":"K44","ID":2024,"Name":"0020","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2024","ServerKey":"pl181","X":464,"Y":466},{"Bonus":0,"Continent":"K55","ID":2025,"Name":"P.016","PlayerID":873575,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2025","ServerKey":"pl181","X":534,"Y":568},{"Bonus":0,"Continent":"K45","ID":2026,"Name":"C020","PlayerID":699299123,"Points":10347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2026","ServerKey":"pl181","X":526,"Y":462},{"Bonus":0,"Continent":"K55","ID":2027,"Name":"051","PlayerID":699189792,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2027","ServerKey":"pl181","X":531,"Y":576},{"Bonus":0,"Continent":"K55","ID":2028,"Name":"- 118 -","PlayerID":849018239,"Points":9610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2028","ServerKey":"pl181","X":540,"Y":573},{"Bonus":0,"Continent":"K44","ID":2029,"Name":"+44 61 Chaponost","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2029","ServerKey":"pl181","X":417,"Y":467},{"Bonus":0,"Continent":"K54","ID":2030,"Name":"Kasyno","PlayerID":7249451,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2030","ServerKey":"pl181","X":437,"Y":512},{"Bonus":0,"Continent":"K44","ID":2031,"Name":"160 Fortaleza","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2031","ServerKey":"pl181","X":479,"Y":479},{"Bonus":0,"Continent":"K44","ID":2032,"Name":"159 Rio de Janeiro","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2032","ServerKey":"pl181","X":480,"Y":477},{"Bonus":0,"Continent":"K44","ID":2033,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2033","ServerKey":"pl181","X":424,"Y":462},{"Bonus":0,"Continent":"K46","ID":2034,"Name":"003 Arizona","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2034","ServerKey":"pl181","X":610,"Y":485},{"Bonus":0,"Continent":"K55","ID":2035,"Name":"0028 K55 and987 OZDR.","PlayerID":3613413,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2035","ServerKey":"pl181","X":504,"Y":562},{"Bonus":0,"Continent":"K44","ID":2036,"Name":"+44 61 Rexpoede","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2036","ServerKey":"pl181","X":415,"Y":469},{"Bonus":0,"Continent":"K35","ID":2037,"Name":"206","PlayerID":849064752,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2037","ServerKey":"pl181","X":565,"Y":397},{"Bonus":0,"Continent":"K44","ID":2038,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2038","ServerKey":"pl181","X":467,"Y":445},{"Bonus":0,"Continent":"K35","ID":2039,"Name":"0027","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2039","ServerKey":"pl181","X":561,"Y":394},{"Bonus":0,"Continent":"K54","ID":2040,"Name":"2. Vipera","PlayerID":849087855,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2040","ServerKey":"pl181","X":489,"Y":538},{"Bonus":0,"Continent":"K44","ID":2041,"Name":"SsSs","PlayerID":1536625,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2041","ServerKey":"pl181","X":423,"Y":489},{"Bonus":0,"Continent":"K44","ID":2042,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2042","ServerKey":"pl181","X":426,"Y":480},{"Bonus":0,"Continent":"K45","ID":2043,"Name":".:092:. JuanPabloII","PlayerID":848934935,"Points":8743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2043","ServerKey":"pl181","X":542,"Y":444},{"Bonus":0,"Continent":"K44","ID":2044,"Name":"?+44 86 Lyon Croix Rousse","PlayerID":698361257,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2044","ServerKey":"pl181","X":460,"Y":485},{"Bonus":0,"Continent":"K44","ID":2045,"Name":"Brat447","PlayerID":699262350,"Points":8597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2045","ServerKey":"pl181","X":441,"Y":488},{"Bonus":0,"Continent":"K44","ID":2046,"Name":"...Just like that","PlayerID":699723284,"Points":9477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2046","ServerKey":"pl181","X":463,"Y":490},{"Bonus":0,"Continent":"K55","ID":2047,"Name":"CALL 959","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2047","ServerKey":"pl181","X":543,"Y":548},{"Bonus":0,"Continent":"K45","ID":2048,"Name":"ANGMAR a","PlayerID":8155296,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2048","ServerKey":"pl181","X":532,"Y":467},{"Bonus":0,"Continent":"K44","ID":2049,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2049","ServerKey":"pl181","X":484,"Y":421},{"Bonus":0,"Continent":"K54","ID":2050,"Name":"Harbar 3","PlayerID":8779575,"Points":3223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2050","ServerKey":"pl181","X":430,"Y":550},{"Bonus":0,"Continent":"K44","ID":2051,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2051","ServerKey":"pl181","X":481,"Y":430},{"Bonus":0,"Continent":"K44","ID":2052,"Name":"-019-","PlayerID":9291984,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2052","ServerKey":"pl181","X":468,"Y":428},{"Bonus":0,"Continent":"K45","ID":2053,"Name":"Mielno","PlayerID":699433558,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2053","ServerKey":"pl181","X":520,"Y":423},{"Bonus":0,"Continent":"K55","ID":2054,"Name":"- 046 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2054","ServerKey":"pl181","X":539,"Y":581},{"Bonus":0,"Continent":"K45","ID":2055,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2055","ServerKey":"pl181","X":518,"Y":429},{"Bonus":0,"Continent":"K44","ID":2056,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2056","ServerKey":"pl181","X":485,"Y":483},{"Bonus":0,"Continent":"K44","ID":2057,"Name":"077 Shreveport","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2057","ServerKey":"pl181","X":457,"Y":455},{"Bonus":6,"Continent":"K44","ID":2058,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2058","ServerKey":"pl181","X":473,"Y":436},{"Bonus":0,"Continent":"K44","ID":2059,"Name":"P Konfederacja +","PlayerID":848915730,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2059","ServerKey":"pl181","X":460,"Y":446},{"Bonus":0,"Continent":"K44","ID":2060,"Name":"SsSs","PlayerID":1536625,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2060","ServerKey":"pl181","X":449,"Y":498},{"Bonus":0,"Continent":"K45","ID":2061,"Name":"Azgeda","PlayerID":848986287,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2061","ServerKey":"pl181","X":537,"Y":439},{"Bonus":0,"Continent":"K45","ID":2062,"Name":"Wioska barbarzyƄska","PlayerID":849002091,"Points":8511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2062","ServerKey":"pl181","X":536,"Y":442},{"Bonus":0,"Continent":"K53","ID":2063,"Name":"Brat447","PlayerID":699262350,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2063","ServerKey":"pl181","X":384,"Y":511},{"Bonus":0,"Continent":"K53","ID":2064,"Name":"Brat447","PlayerID":699262350,"Points":10244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2064","ServerKey":"pl181","X":384,"Y":515},{"Bonus":0,"Continent":"K54","ID":2065,"Name":"2. War**","PlayerID":849087855,"Points":6062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2065","ServerKey":"pl181","X":491,"Y":524},{"Bonus":0,"Continent":"K53","ID":2066,"Name":"ok.","PlayerID":849030226,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2066","ServerKey":"pl181","X":389,"Y":532},{"Bonus":0,"Continent":"K55","ID":2067,"Name":"0009 K55 and987 OZDR.","PlayerID":3613413,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2067","ServerKey":"pl181","X":504,"Y":555},{"Bonus":0,"Continent":"K45","ID":2068,"Name":"214 Gold Coast","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2068","ServerKey":"pl181","X":531,"Y":438},{"Bonus":0,"Continent":"K55","ID":2069,"Name":"0015 K55 and987 OZDR.","PlayerID":3613413,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2069","ServerKey":"pl181","X":502,"Y":558},{"Bonus":0,"Continent":"K45","ID":2070,"Name":".achim.","PlayerID":6936607,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2070","ServerKey":"pl181","X":532,"Y":448},{"Bonus":0,"Continent":"K54","ID":2071,"Name":"Sparta_41","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2071","ServerKey":"pl181","X":480,"Y":581},{"Bonus":0,"Continent":"K45","ID":2072,"Name":".:089:.JuanPabloII","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2072","ServerKey":"pl181","X":539,"Y":442},{"Bonus":0,"Continent":"K45","ID":2073,"Name":"007 Celadon City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2073","ServerKey":"pl181","X":589,"Y":495},{"Bonus":0,"Continent":"K45","ID":2074,"Name":"PUƁ WYPƁATY POSZƁO NA MUREK XDD","PlayerID":848986287,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2074","ServerKey":"pl181","X":547,"Y":435},{"Bonus":0,"Continent":"K55","ID":2075,"Name":"Utumno","PlayerID":849091897,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2075","ServerKey":"pl181","X":504,"Y":512},{"Bonus":6,"Continent":"K55","ID":2076,"Name":"Stage group A","PlayerID":699703642,"Points":8769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2076","ServerKey":"pl181","X":503,"Y":582},{"Bonus":0,"Continent":"K45","ID":2077,"Name":"Stolica","PlayerID":848986287,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2077","ServerKey":"pl181","X":537,"Y":433},{"Bonus":0,"Continent":"K55","ID":2078,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2078","ServerKey":"pl181","X":565,"Y":505},{"Bonus":0,"Continent":"K45","ID":2079,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":5978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2079","ServerKey":"pl181","X":538,"Y":430},{"Bonus":0,"Continent":"K55","ID":2080,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2080","ServerKey":"pl181","X":519,"Y":572},{"Bonus":0,"Continent":"K45","ID":2081,"Name":"Catern","PlayerID":848986287,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2081","ServerKey":"pl181","X":538,"Y":433},{"Bonus":0,"Continent":"K45","ID":2082,"Name":"2. Sosnomysz","PlayerID":8444356,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2082","ServerKey":"pl181","X":545,"Y":430},{"Bonus":0,"Continent":"K44","ID":2083,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2083","ServerKey":"pl181","X":475,"Y":450},{"Bonus":0,"Continent":"K44","ID":2084,"Name":"A034","PlayerID":699299123,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2084","ServerKey":"pl181","X":496,"Y":417},{"Bonus":0,"Continent":"K54","ID":2085,"Name":"SsSs","PlayerID":1536625,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2085","ServerKey":"pl181","X":461,"Y":502},{"Bonus":0,"Continent":"K45","ID":2086,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2086","ServerKey":"pl181","X":518,"Y":442},{"Bonus":7,"Continent":"K55","ID":2087,"Name":"006","PlayerID":699194766,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2087","ServerKey":"pl181","X":549,"Y":534},{"Bonus":0,"Continent":"K45","ID":2088,"Name":"Marienburgg 11","PlayerID":699355601,"Points":8945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2088","ServerKey":"pl181","X":533,"Y":458},{"Bonus":0,"Continent":"K45","ID":2089,"Name":"-2-","PlayerID":699347951,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2089","ServerKey":"pl181","X":585,"Y":493},{"Bonus":0,"Continent":"K45","ID":2091,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2091","ServerKey":"pl181","X":562,"Y":470},{"Bonus":0,"Continent":"K54","ID":2092,"Name":"Teatr","PlayerID":7249451,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2092","ServerKey":"pl181","X":433,"Y":565},{"Bonus":0,"Continent":"K54","ID":2093,"Name":"keepo","PlayerID":848967710,"Points":5264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2093","ServerKey":"pl181","X":478,"Y":515},{"Bonus":0,"Continent":"K44","ID":2094,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2094","ServerKey":"pl181","X":436,"Y":449},{"Bonus":0,"Continent":"K54","ID":2095,"Name":"Fajna 014","PlayerID":699856962,"Points":6504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2095","ServerKey":"pl181","X":451,"Y":565},{"Bonus":7,"Continent":"K55","ID":2096,"Name":"[098]","PlayerID":8000875,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2096","ServerKey":"pl181","X":552,"Y":508},{"Bonus":0,"Continent":"K54","ID":2098,"Name":"001 Jacek Jaworek baza","PlayerID":698971484,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2098","ServerKey":"pl181","X":415,"Y":547},{"Bonus":0,"Continent":"K55","ID":2099,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2099","ServerKey":"pl181","X":573,"Y":542},{"Bonus":0,"Continent":"K54","ID":2100,"Name":"Suppi","PlayerID":699856962,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2100","ServerKey":"pl181","X":416,"Y":540},{"Bonus":0,"Continent":"K54","ID":2101,"Name":"069","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2101","ServerKey":"pl181","X":416,"Y":530},{"Bonus":0,"Continent":"K54","ID":2102,"Name":". Incepcja","PlayerID":699856962,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2102","ServerKey":"pl181","X":419,"Y":545},{"Bonus":0,"Continent":"K54","ID":2103,"Name":"KIELBA 069","PlayerID":699342219,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2103","ServerKey":"pl181","X":469,"Y":576},{"Bonus":0,"Continent":"K35","ID":2104,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2104","ServerKey":"pl181","X":540,"Y":393},{"Bonus":0,"Continent":"K54","ID":2105,"Name":"027","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2105","ServerKey":"pl181","X":422,"Y":516},{"Bonus":0,"Continent":"K35","ID":2106,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2106","ServerKey":"pl181","X":532,"Y":396},{"Bonus":0,"Continent":"K55","ID":2107,"Name":"008","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2107","ServerKey":"pl181","X":549,"Y":568},{"Bonus":0,"Continent":"K45","ID":2108,"Name":"BBB","PlayerID":1006847,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2108","ServerKey":"pl181","X":583,"Y":440},{"Bonus":0,"Continent":"K54","ID":2109,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2109","ServerKey":"pl181","X":484,"Y":500},{"Bonus":0,"Continent":"K54","ID":2110,"Name":"NOT?","PlayerID":9236866,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2110","ServerKey":"pl181","X":425,"Y":540},{"Bonus":2,"Continent":"K44","ID":2111,"Name":"?+44 85 Brignais","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2111","ServerKey":"pl181","X":459,"Y":481},{"Bonus":0,"Continent":"K45","ID":2112,"Name":"012","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2112","ServerKey":"pl181","X":588,"Y":446},{"Bonus":0,"Continent":"K55","ID":2113,"Name":"Wioska 434","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2113","ServerKey":"pl181","X":566,"Y":519},{"Bonus":0,"Continent":"K54","ID":2114,"Name":"-xx14","PlayerID":848967710,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2114","ServerKey":"pl181","X":492,"Y":501},{"Bonus":0,"Continent":"K55","ID":2115,"Name":"Wioska 424","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2115","ServerKey":"pl181","X":563,"Y":506},{"Bonus":0,"Continent":"K45","ID":2116,"Name":"BBB","PlayerID":1006847,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2116","ServerKey":"pl181","X":588,"Y":442},{"Bonus":0,"Continent":"K45","ID":2117,"Name":"[091]","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2117","ServerKey":"pl181","X":539,"Y":488},{"Bonus":0,"Continent":"K55","ID":2118,"Name":"Mzm15","PlayerID":7142659,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2118","ServerKey":"pl181","X":547,"Y":537},{"Bonus":0,"Continent":"K55","ID":2119,"Name":"Mzm35","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2119","ServerKey":"pl181","X":550,"Y":530},{"Bonus":0,"Continent":"K44","ID":2120,"Name":"0072","PlayerID":3909522,"Points":8839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2120","ServerKey":"pl181","X":452,"Y":438},{"Bonus":0,"Continent":"K44","ID":2121,"Name":"00972","PlayerID":3909522,"Points":6600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2121","ServerKey":"pl181","X":462,"Y":437},{"Bonus":0,"Continent":"K45","ID":2122,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":3751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2122","ServerKey":"pl181","X":515,"Y":441},{"Bonus":0,"Continent":"K44","ID":2123,"Name":"0076","PlayerID":3909522,"Points":7693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2123","ServerKey":"pl181","X":449,"Y":440},{"Bonus":0,"Continent":"K45","ID":2124,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2124","ServerKey":"pl181","X":518,"Y":455},{"Bonus":0,"Continent":"K44","ID":2125,"Name":"00731 nsplus1","PlayerID":3909522,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2125","ServerKey":"pl181","X":450,"Y":438},{"Bonus":0,"Continent":"K44","ID":2126,"Name":"Szlachcic","PlayerID":699098531,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2126","ServerKey":"pl181","X":497,"Y":475},{"Bonus":0,"Continent":"K44","ID":2127,"Name":"00703","PlayerID":3909522,"Points":7528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2127","ServerKey":"pl181","X":452,"Y":442},{"Bonus":0,"Continent":"K45","ID":2128,"Name":"B010","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2128","ServerKey":"pl181","X":578,"Y":412},{"Bonus":0,"Continent":"K55","ID":2129,"Name":"P.021","PlayerID":873575,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2129","ServerKey":"pl181","X":538,"Y":561},{"Bonus":0,"Continent":"K45","ID":2130,"Name":"014","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2130","ServerKey":"pl181","X":584,"Y":408},{"Bonus":0,"Continent":"K55","ID":2131,"Name":"ladyanima","PlayerID":699703642,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2131","ServerKey":"pl181","X":513,"Y":570},{"Bonus":0,"Continent":"K55","ID":2132,"Name":"052 |","PlayerID":8000875,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2132","ServerKey":"pl181","X":545,"Y":505},{"Bonus":0,"Continent":"K45","ID":2133,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2133","ServerKey":"pl181","X":503,"Y":446},{"Bonus":0,"Continent":"K55","ID":2134,"Name":"ladyanima","PlayerID":699703642,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2134","ServerKey":"pl181","X":515,"Y":569},{"Bonus":0,"Continent":"K45","ID":2135,"Name":"The Last One","PlayerID":699341889,"Points":6355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2135","ServerKey":"pl181","X":500,"Y":454},{"Bonus":0,"Continent":"K44","ID":2136,"Name":"048","PlayerID":699510259,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2136","ServerKey":"pl181","X":430,"Y":490},{"Bonus":0,"Continent":"K55","ID":2137,"Name":"Unlovable","PlayerID":699785935,"Points":8293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2137","ServerKey":"pl181","X":506,"Y":509},{"Bonus":0,"Continent":"K54","ID":2138,"Name":"NOT?","PlayerID":9236866,"Points":2091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2138","ServerKey":"pl181","X":439,"Y":550},{"Bonus":0,"Continent":"K35","ID":2139,"Name":"030","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2139","ServerKey":"pl181","X":562,"Y":399},{"Bonus":0,"Continent":"K45","ID":2140,"Name":"GÓRY BƁĘKITNE f?","PlayerID":8155296,"Points":11366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2140","ServerKey":"pl181","X":530,"Y":468},{"Bonus":0,"Continent":"K54","ID":2141,"Name":"036. ALFI","PlayerID":8539216,"Points":1705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2141","ServerKey":"pl181","X":477,"Y":560},{"Bonus":0,"Continent":"K55","ID":2142,"Name":"052.","PlayerID":699695167,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2142","ServerKey":"pl181","X":523,"Y":557},{"Bonus":2,"Continent":"K45","ID":2143,"Name":"Joms 004","PlayerID":699756210,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2143","ServerKey":"pl181","X":526,"Y":422},{"Bonus":0,"Continent":"K54","ID":2144,"Name":"keepo","PlayerID":848967710,"Points":5093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2144","ServerKey":"pl181","X":475,"Y":514},{"Bonus":0,"Continent":"K45","ID":2145,"Name":"-[031]- Saltoro Kangri","PlayerID":849092827,"Points":6756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2145","ServerKey":"pl181","X":551,"Y":484},{"Bonus":0,"Continent":"K44","ID":2147,"Name":"001 Washington D.C.","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2147","ServerKey":"pl181","X":438,"Y":470},{"Bonus":0,"Continent":"K54","ID":2148,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2148","ServerKey":"pl181","X":444,"Y":535},{"Bonus":0,"Continent":"K45","ID":2149,"Name":"9.1 ƚciernisko","PlayerID":8444356,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2149","ServerKey":"pl181","X":545,"Y":438},{"Bonus":0,"Continent":"K44","ID":2150,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2150","ServerKey":"pl181","X":432,"Y":459},{"Bonus":0,"Continent":"K44","ID":2151,"Name":"Suppi","PlayerID":699856962,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2151","ServerKey":"pl181","X":431,"Y":444},{"Bonus":0,"Continent":"K45","ID":2152,"Name":"Szlachcic","PlayerID":699098531,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2152","ServerKey":"pl181","X":508,"Y":459},{"Bonus":0,"Continent":"K35","ID":2153,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2153","ServerKey":"pl181","X":531,"Y":393},{"Bonus":4,"Continent":"K54","ID":2154,"Name":"015","PlayerID":699851427,"Points":5953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2154","ServerKey":"pl181","X":417,"Y":519},{"Bonus":0,"Continent":"K55","ID":2155,"Name":"Mzm23","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2155","ServerKey":"pl181","X":574,"Y":510},{"Bonus":0,"Continent":"K44","ID":2156,"Name":"P Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2156","ServerKey":"pl181","X":457,"Y":446},{"Bonus":2,"Continent":"K45","ID":2157,"Name":"A052","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2157","ServerKey":"pl181","X":500,"Y":423},{"Bonus":0,"Continent":"K55","ID":2158,"Name":"024. Wioska k4myk","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2158","ServerKey":"pl181","X":575,"Y":508},{"Bonus":0,"Continent":"K55","ID":2159,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2159","ServerKey":"pl181","X":583,"Y":587},{"Bonus":0,"Continent":"K55","ID":2160,"Name":"Going Under","PlayerID":699785935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2160","ServerKey":"pl181","X":501,"Y":518},{"Bonus":0,"Continent":"K55","ID":2161,"Name":"Wioska 400","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2161","ServerKey":"pl181","X":564,"Y":516},{"Bonus":0,"Continent":"K55","ID":2162,"Name":"013. Wioska POLdi","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2162","ServerKey":"pl181","X":574,"Y":513},{"Bonus":7,"Continent":"K55","ID":2163,"Name":"0025 K55 and987 OZDR.","PlayerID":3613413,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2163","ServerKey":"pl181","X":503,"Y":562},{"Bonus":0,"Continent":"K55","ID":2164,"Name":"Filonia","PlayerID":849066849,"Points":8673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2164","ServerKey":"pl181","X":521,"Y":554},{"Bonus":0,"Continent":"K45","ID":2165,"Name":"A06","PlayerID":699368887,"Points":8290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2165","ServerKey":"pl181","X":550,"Y":448},{"Bonus":0,"Continent":"K54","ID":2166,"Name":"NOT?","PlayerID":9236866,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2166","ServerKey":"pl181","X":435,"Y":528},{"Bonus":7,"Continent":"K54","ID":2167,"Name":"237 Maduraj","PlayerID":1497168,"Points":4792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2167","ServerKey":"pl181","X":474,"Y":514},{"Bonus":0,"Continent":"K45","ID":2169,"Name":"076.","PlayerID":849094609,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2169","ServerKey":"pl181","X":568,"Y":466},{"Bonus":0,"Continent":"K53","ID":2170,"Name":"Korczo","PlayerID":1804724,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2170","ServerKey":"pl181","X":397,"Y":517},{"Bonus":0,"Continent":"K54","ID":2171,"Name":"045","PlayerID":698971484,"Points":6820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2171","ServerKey":"pl181","X":448,"Y":537},{"Bonus":0,"Continent":"K53","ID":2172,"Name":"Wioska szyymekk","PlayerID":960100,"Points":7447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2172","ServerKey":"pl181","X":396,"Y":525},{"Bonus":0,"Continent":"K55","ID":2173,"Name":"Craven Cottage","PlayerID":699194766,"Points":6806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2173","ServerKey":"pl181","X":547,"Y":517},{"Bonus":0,"Continent":"K54","ID":2174,"Name":"Wioska szyymekk","PlayerID":1804724,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2174","ServerKey":"pl181","X":403,"Y":528},{"Bonus":6,"Continent":"K55","ID":2175,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2175","ServerKey":"pl181","X":507,"Y":574},{"Bonus":0,"Continent":"K45","ID":2176,"Name":"06. Yaren Bolt","PlayerID":699347951,"Points":10110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2176","ServerKey":"pl181","X":565,"Y":483},{"Bonus":0,"Continent":"K55","ID":2177,"Name":"Winter is coming","PlayerID":699364813,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2177","ServerKey":"pl181","X":505,"Y":584},{"Bonus":0,"Continent":"K45","ID":2178,"Name":"B011","PlayerID":8138506,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2178","ServerKey":"pl181","X":552,"Y":487},{"Bonus":0,"Continent":"K54","ID":2179,"Name":"NOT?","PlayerID":9236866,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2179","ServerKey":"pl181","X":429,"Y":536},{"Bonus":0,"Continent":"K55","ID":2180,"Name":"- 069 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2180","ServerKey":"pl181","X":543,"Y":576},{"Bonus":0,"Continent":"K55","ID":2181,"Name":"034","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2181","ServerKey":"pl181","X":559,"Y":530},{"Bonus":0,"Continent":"K45","ID":2182,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2182","ServerKey":"pl181","X":516,"Y":430},{"Bonus":0,"Continent":"K55","ID":2183,"Name":"0053","PlayerID":698416970,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2183","ServerKey":"pl181","X":591,"Y":504},{"Bonus":0,"Continent":"K44","ID":2184,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2184","ServerKey":"pl181","X":475,"Y":440},{"Bonus":0,"Continent":"K53","ID":2185,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2185","ServerKey":"pl181","X":384,"Y":529},{"Bonus":0,"Continent":"K45","ID":2186,"Name":"218 Adelaide","PlayerID":1497168,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2186","ServerKey":"pl181","X":531,"Y":440},{"Bonus":0,"Continent":"K54","ID":2187,"Name":"AR_ELA","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2187","ServerKey":"pl181","X":459,"Y":519},{"Bonus":0,"Continent":"K45","ID":2188,"Name":"Joms 018","PlayerID":699756210,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2188","ServerKey":"pl181","X":518,"Y":417},{"Bonus":0,"Continent":"K45","ID":2189,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2189","ServerKey":"pl181","X":542,"Y":494},{"Bonus":0,"Continent":"K55","ID":2190,"Name":"JaamMwG 012","PlayerID":848987051,"Points":9054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2190","ServerKey":"pl181","X":524,"Y":529},{"Bonus":0,"Continent":"K54","ID":2191,"Name":"keepo","PlayerID":848967710,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2191","ServerKey":"pl181","X":478,"Y":513},{"Bonus":0,"Continent":"K44","ID":2192,"Name":"Gravity","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2192","ServerKey":"pl181","X":412,"Y":452},{"Bonus":0,"Continent":"K54","ID":2193,"Name":"Winter is coming","PlayerID":698971484,"Points":5640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2193","ServerKey":"pl181","X":444,"Y":551},{"Bonus":0,"Continent":"K54","ID":2194,"Name":"Fajna 011","PlayerID":699868002,"Points":7736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2194","ServerKey":"pl181","X":451,"Y":561},{"Bonus":0,"Continent":"K45","ID":2195,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2195","ServerKey":"pl181","X":502,"Y":435},{"Bonus":0,"Continent":"K55","ID":2196,"Name":"CALL 1045","PlayerID":699784536,"Points":7438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2196","ServerKey":"pl181","X":567,"Y":561},{"Bonus":0,"Continent":"K44","ID":2197,"Name":"161","PlayerID":699660539,"Points":7247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2197","ServerKey":"pl181","X":433,"Y":433},{"Bonus":0,"Continent":"K54","ID":2198,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2198","ServerKey":"pl181","X":434,"Y":500},{"Bonus":0,"Continent":"K45","ID":2199,"Name":"A038","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2199","ServerKey":"pl181","X":507,"Y":428},{"Bonus":0,"Continent":"K44","ID":2200,"Name":"SsSs","PlayerID":1536625,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2200","ServerKey":"pl181","X":401,"Y":491},{"Bonus":0,"Continent":"K45","ID":2201,"Name":"[142] North","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2201","ServerKey":"pl181","X":578,"Y":468},{"Bonus":0,"Continent":"K55","ID":2202,"Name":"- 099 -","PlayerID":849018239,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2202","ServerKey":"pl181","X":533,"Y":580},{"Bonus":0,"Continent":"K45","ID":2203,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2203","ServerKey":"pl181","X":561,"Y":455},{"Bonus":0,"Continent":"K45","ID":2204,"Name":"JF2","PlayerID":699368887,"Points":5005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2204","ServerKey":"pl181","X":555,"Y":457},{"Bonus":0,"Continent":"K45","ID":2205,"Name":"MasteroN 03","PlayerID":699379895,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2205","ServerKey":"pl181","X":569,"Y":447},{"Bonus":0,"Continent":"K44","ID":2206,"Name":"026","PlayerID":699510259,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2206","ServerKey":"pl181","X":432,"Y":486},{"Bonus":0,"Continent":"K45","ID":2207,"Name":"225 Auckland","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2207","ServerKey":"pl181","X":539,"Y":444},{"Bonus":0,"Continent":"K54","ID":2208,"Name":"KIELBA 060","PlayerID":699342219,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2208","ServerKey":"pl181","X":458,"Y":581},{"Bonus":4,"Continent":"K45","ID":2209,"Name":"xxx","PlayerID":698239813,"Points":8779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2209","ServerKey":"pl181","X":512,"Y":447},{"Bonus":0,"Continent":"K55","ID":2210,"Name":"Jaaa","PlayerID":698635863,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2210","ServerKey":"pl181","X":575,"Y":588},{"Bonus":0,"Continent":"K55","ID":2211,"Name":"amator MO1","PlayerID":848915531,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2211","ServerKey":"pl181","X":536,"Y":555},{"Bonus":0,"Continent":"K55","ID":2212,"Name":"- 049 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2212","ServerKey":"pl181","X":540,"Y":574},{"Bonus":0,"Continent":"K55","ID":2213,"Name":"Wioska CzarnamambaPL","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2213","ServerKey":"pl181","X":562,"Y":583},{"Bonus":0,"Continent":"K45","ID":2214,"Name":"035.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2214","ServerKey":"pl181","X":504,"Y":491},{"Bonus":0,"Continent":"K55","ID":2215,"Name":"16*","PlayerID":699664910,"Points":6484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2215","ServerKey":"pl181","X":565,"Y":543},{"Bonus":0,"Continent":"K44","ID":2216,"Name":"201 Asuncion","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2216","ServerKey":"pl181","X":469,"Y":460},{"Bonus":0,"Continent":"K55","ID":2217,"Name":"Szlachcic 001","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2217","ServerKey":"pl181","X":565,"Y":530},{"Bonus":0,"Continent":"K44","ID":2218,"Name":"PRO8L3M","PlayerID":7491093,"Points":7740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2218","ServerKey":"pl181","X":462,"Y":491},{"Bonus":0,"Continent":"K45","ID":2219,"Name":"JM4","PlayerID":699368887,"Points":5844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2219","ServerKey":"pl181","X":561,"Y":458},{"Bonus":0,"Continent":"K56","ID":2220,"Name":"038 - Getafe","PlayerID":698342159,"Points":8062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2220","ServerKey":"pl181","X":609,"Y":500},{"Bonus":0,"Continent":"K55","ID":2221,"Name":"023","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2221","ServerKey":"pl181","X":569,"Y":549},{"Bonus":0,"Continent":"K55","ID":2222,"Name":"Sheraton","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2222","ServerKey":"pl181","X":579,"Y":585},{"Bonus":0,"Continent":"K54","ID":2223,"Name":"F013","PlayerID":699189792,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2223","ServerKey":"pl181","X":493,"Y":544},{"Bonus":0,"Continent":"K34","ID":2224,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2224","ServerKey":"pl181","X":476,"Y":393},{"Bonus":0,"Continent":"K45","ID":2225,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2225","ServerKey":"pl181","X":533,"Y":427},{"Bonus":0,"Continent":"K54","ID":2226,"Name":"CHW#029","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2226","ServerKey":"pl181","X":479,"Y":535},{"Bonus":0,"Continent":"K45","ID":2227,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2227","ServerKey":"pl181","X":514,"Y":436},{"Bonus":0,"Continent":"K55","ID":2228,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2228","ServerKey":"pl181","X":531,"Y":556},{"Bonus":0,"Continent":"K55","ID":2229,"Name":"- 312 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2229","ServerKey":"pl181","X":524,"Y":584},{"Bonus":0,"Continent":"K54","ID":2230,"Name":"Wioska4","PlayerID":8369778,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2230","ServerKey":"pl181","X":492,"Y":598},{"Bonus":0,"Continent":"K54","ID":2231,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2231","ServerKey":"pl181","X":434,"Y":508},{"Bonus":0,"Continent":"K45","ID":2232,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2232","ServerKey":"pl181","X":523,"Y":414},{"Bonus":0,"Continent":"K45","ID":2233,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2233","ServerKey":"pl181","X":519,"Y":424},{"Bonus":0,"Continent":"K45","ID":2234,"Name":"Abadon landy 2","PlayerID":699347951,"Points":7445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2234","ServerKey":"pl181","X":566,"Y":491},{"Bonus":0,"Continent":"K54","ID":2235,"Name":"2. Wz !!!","PlayerID":849087855,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2235","ServerKey":"pl181","X":497,"Y":542},{"Bonus":0,"Continent":"K45","ID":2236,"Name":"monetki","PlayerID":699098531,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2236","ServerKey":"pl181","X":508,"Y":433},{"Bonus":0,"Continent":"K45","ID":2237,"Name":"Osada x","PlayerID":699098531,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2237","ServerKey":"pl181","X":509,"Y":452},{"Bonus":0,"Continent":"K44","ID":2238,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2238","ServerKey":"pl181","X":474,"Y":423},{"Bonus":0,"Continent":"K45","ID":2239,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":5068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2239","ServerKey":"pl181","X":512,"Y":445},{"Bonus":0,"Continent":"K54","ID":2240,"Name":"Warzywniak 018","PlayerID":698290577,"Points":2856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2240","ServerKey":"pl181","X":447,"Y":549},{"Bonus":0,"Continent":"K55","ID":2241,"Name":"028. RarĂłg","PlayerID":699703642,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2241","ServerKey":"pl181","X":518,"Y":559},{"Bonus":0,"Continent":"K45","ID":2242,"Name":"A02","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2242","ServerKey":"pl181","X":549,"Y":454},{"Bonus":0,"Continent":"K54","ID":2243,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":7175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2243","ServerKey":"pl181","X":438,"Y":531},{"Bonus":0,"Continent":"K44","ID":2244,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2244","ServerKey":"pl181","X":437,"Y":465},{"Bonus":0,"Continent":"K44","ID":2245,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2245","ServerKey":"pl181","X":452,"Y":457},{"Bonus":0,"Continent":"K54","ID":2246,"Name":"KIELBA 065","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2246","ServerKey":"pl181","X":470,"Y":577},{"Bonus":9,"Continent":"K54","ID":2247,"Name":"Sparta_31","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2247","ServerKey":"pl181","X":489,"Y":576},{"Bonus":0,"Continent":"K54","ID":2248,"Name":"017","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2248","ServerKey":"pl181","X":418,"Y":518},{"Bonus":0,"Continent":"K45","ID":2249,"Name":"Szlachcic","PlayerID":698867446,"Points":9583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2249","ServerKey":"pl181","X":568,"Y":484},{"Bonus":0,"Continent":"K55","ID":2250,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2250","ServerKey":"pl181","X":520,"Y":536},{"Bonus":0,"Continent":"K55","ID":2251,"Name":"yogi","PlayerID":2808172,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2251","ServerKey":"pl181","X":522,"Y":530},{"Bonus":0,"Continent":"K45","ID":2252,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2252","ServerKey":"pl181","X":520,"Y":424},{"Bonus":6,"Continent":"K44","ID":2253,"Name":"022 Grand Forks","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2253","ServerKey":"pl181","X":448,"Y":470},{"Bonus":0,"Continent":"K54","ID":2254,"Name":"001 Fiona","PlayerID":698290577,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2254","ServerKey":"pl181","X":446,"Y":502},{"Bonus":0,"Continent":"K45","ID":2255,"Name":"029","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2255","ServerKey":"pl181","X":539,"Y":420},{"Bonus":0,"Continent":"K35","ID":2256,"Name":"***9f*** Brzoskwinia","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2256","ServerKey":"pl181","X":553,"Y":390},{"Bonus":0,"Continent":"K55","ID":2257,"Name":"012","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2257","ServerKey":"pl181","X":574,"Y":550},{"Bonus":0,"Continent":"K35","ID":2258,"Name":"042","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2258","ServerKey":"pl181","X":554,"Y":393},{"Bonus":0,"Continent":"K55","ID":2259,"Name":"0033 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2259","ServerKey":"pl181","X":502,"Y":562},{"Bonus":0,"Continent":"K54","ID":2260,"Name":"031","PlayerID":698290577,"Points":2203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2260","ServerKey":"pl181","X":451,"Y":550},{"Bonus":0,"Continent":"K54","ID":2261,"Name":"Forteca","PlayerID":606407,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2261","ServerKey":"pl181","X":499,"Y":569},{"Bonus":0,"Continent":"K55","ID":2262,"Name":"Szlachcic","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2262","ServerKey":"pl181","X":587,"Y":506},{"Bonus":0,"Continent":"K44","ID":2263,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2263","ServerKey":"pl181","X":474,"Y":452},{"Bonus":0,"Continent":"K44","ID":2264,"Name":"121 Trois Rivieres","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2264","ServerKey":"pl181","X":478,"Y":490},{"Bonus":9,"Continent":"K44","ID":2265,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2265","ServerKey":"pl181","X":474,"Y":450},{"Bonus":0,"Continent":"K44","ID":2267,"Name":"Cast Away 021","PlayerID":698290577,"Points":4228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2267","ServerKey":"pl181","X":441,"Y":482},{"Bonus":0,"Continent":"K45","ID":2268,"Name":"093 Luksemburg","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2268","ServerKey":"pl181","X":574,"Y":474},{"Bonus":0,"Continent":"K44","ID":2269,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2269","ServerKey":"pl181","X":428,"Y":486},{"Bonus":0,"Continent":"K65","ID":2270,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2270","ServerKey":"pl181","X":504,"Y":603},{"Bonus":0,"Continent":"K54","ID":2271,"Name":"047","PlayerID":698971484,"Points":7670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2271","ServerKey":"pl181","X":446,"Y":532},{"Bonus":0,"Continent":"K44","ID":2272,"Name":"--------1","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2272","ServerKey":"pl181","X":455,"Y":421},{"Bonus":0,"Continent":"K45","ID":2273,"Name":"094 Ɓotwa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2273","ServerKey":"pl181","X":572,"Y":471},{"Bonus":0,"Continent":"K54","ID":2274,"Name":"Onda","PlayerID":699443920,"Points":4028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2274","ServerKey":"pl181","X":435,"Y":557},{"Bonus":0,"Continent":"K55","ID":2275,"Name":"[175]","PlayerID":8000875,"Points":6951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2275","ServerKey":"pl181","X":562,"Y":562},{"Bonus":0,"Continent":"K54","ID":2276,"Name":"Kasyno","PlayerID":7249451,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2276","ServerKey":"pl181","X":444,"Y":510},{"Bonus":0,"Continent":"K65","ID":2277,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2277","ServerKey":"pl181","X":515,"Y":614},{"Bonus":0,"Continent":"K45","ID":2278,"Name":"x03","PlayerID":8459255,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2278","ServerKey":"pl181","X":545,"Y":473},{"Bonus":0,"Continent":"K44","ID":2279,"Name":"Midgard","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2279","ServerKey":"pl181","X":483,"Y":496},{"Bonus":0,"Continent":"K45","ID":2280,"Name":"211 Wagga Wagga","PlayerID":1497168,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2280","ServerKey":"pl181","X":539,"Y":428},{"Bonus":0,"Continent":"K44","ID":2281,"Name":"Brat447","PlayerID":699262350,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2281","ServerKey":"pl181","X":446,"Y":490},{"Bonus":0,"Continent":"K44","ID":2282,"Name":"Brat447","PlayerID":699262350,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2282","ServerKey":"pl181","X":437,"Y":485},{"Bonus":0,"Continent":"K55","ID":2283,"Name":"PYRLANDIA 005 $","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2283","ServerKey":"pl181","X":571,"Y":594},{"Bonus":0,"Continent":"K45","ID":2284,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2284","ServerKey":"pl181","X":572,"Y":496},{"Bonus":0,"Continent":"K55","ID":2285,"Name":"sas","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2285","ServerKey":"pl181","X":526,"Y":553},{"Bonus":0,"Continent":"K45","ID":2286,"Name":"105 Dumdi diri daj","PlayerID":7092442,"Points":5198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2286","ServerKey":"pl181","X":542,"Y":460},{"Bonus":0,"Continent":"K55","ID":2287,"Name":"CALL 1081","PlayerID":699784536,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2287","ServerKey":"pl181","X":532,"Y":548},{"Bonus":0,"Continent":"K55","ID":2288,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2288","ServerKey":"pl181","X":532,"Y":545},{"Bonus":0,"Continent":"K45","ID":2289,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2289","ServerKey":"pl181","X":515,"Y":434},{"Bonus":0,"Continent":"K44","ID":2290,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2290","ServerKey":"pl181","X":485,"Y":431},{"Bonus":0,"Continent":"K45","ID":2291,"Name":".:019:. Krab","PlayerID":8649412,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2291","ServerKey":"pl181","X":511,"Y":432},{"Bonus":0,"Continent":"K54","ID":2292,"Name":"100","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2292","ServerKey":"pl181","X":409,"Y":514},{"Bonus":0,"Continent":"K45","ID":2293,"Name":"02 WƂochy","PlayerID":8925695,"Points":9374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2293","ServerKey":"pl181","X":582,"Y":486},{"Bonus":0,"Continent":"K44","ID":2294,"Name":"Osada","PlayerID":699098531,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2294","ServerKey":"pl181","X":499,"Y":450},{"Bonus":0,"Continent":"K54","ID":2295,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2295","ServerKey":"pl181","X":457,"Y":519},{"Bonus":0,"Continent":"K44","ID":2296,"Name":"SsSs","PlayerID":1536625,"Points":9131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2296","ServerKey":"pl181","X":416,"Y":496},{"Bonus":0,"Continent":"K45","ID":2297,"Name":"11 | Pcim dolny","PlayerID":849002091,"Points":8720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2297","ServerKey":"pl181","X":537,"Y":440},{"Bonus":0,"Continent":"K53","ID":2298,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2298","ServerKey":"pl181","X":391,"Y":505},{"Bonus":0,"Continent":"K54","ID":2299,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2299","ServerKey":"pl181","X":431,"Y":504},{"Bonus":0,"Continent":"K56","ID":2300,"Name":"001. WDP","PlayerID":8900955,"Points":7669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2300","ServerKey":"pl181","X":611,"Y":544},{"Bonus":0,"Continent":"K55","ID":2301,"Name":"0011 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2301","ServerKey":"pl181","X":507,"Y":561},{"Bonus":0,"Continent":"K35","ID":2302,"Name":"Minas Tirith","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2302","ServerKey":"pl181","X":534,"Y":387},{"Bonus":0,"Continent":"K45","ID":2303,"Name":"Marienburg 2","PlayerID":699355601,"Points":3442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2303","ServerKey":"pl181","X":523,"Y":481},{"Bonus":0,"Continent":"K34","ID":2304,"Name":"[0112]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2304","ServerKey":"pl181","X":443,"Y":398},{"Bonus":0,"Continent":"K45","ID":2305,"Name":"Szlachcic","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2305","ServerKey":"pl181","X":576,"Y":494},{"Bonus":0,"Continent":"K44","ID":2306,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2306","ServerKey":"pl181","X":469,"Y":421},{"Bonus":0,"Continent":"K45","ID":2307,"Name":"ADEN","PlayerID":698588535,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2307","ServerKey":"pl181","X":582,"Y":433},{"Bonus":0,"Continent":"K35","ID":2308,"Name":"042 InnyNizWszyscy","PlayerID":699491076,"Points":9336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2308","ServerKey":"pl181","X":540,"Y":389},{"Bonus":0,"Continent":"K35","ID":2309,"Name":"0030","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2309","ServerKey":"pl181","X":560,"Y":391},{"Bonus":0,"Continent":"K44","ID":2310,"Name":"Szlachcic","PlayerID":699098531,"Points":8972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2310","ServerKey":"pl181","X":498,"Y":461},{"Bonus":0,"Continent":"K44","ID":2311,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2311","ServerKey":"pl181","X":489,"Y":421},{"Bonus":0,"Continent":"K44","ID":2312,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2312","ServerKey":"pl181","X":495,"Y":483},{"Bonus":0,"Continent":"K44","ID":2313,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2313","ServerKey":"pl181","X":492,"Y":412},{"Bonus":0,"Continent":"K45","ID":2314,"Name":"[115] North15","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2314","ServerKey":"pl181","X":575,"Y":471},{"Bonus":0,"Continent":"K45","ID":2315,"Name":".:004:. Chillout","PlayerID":848934935,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2315","ServerKey":"pl181","X":501,"Y":414},{"Bonus":0,"Continent":"K45","ID":2316,"Name":"B02","PlayerID":8649412,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2316","ServerKey":"pl181","X":540,"Y":445},{"Bonus":0,"Continent":"K44","ID":2317,"Name":"A011","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2317","ServerKey":"pl181","X":488,"Y":414},{"Bonus":0,"Continent":"K54","ID":2318,"Name":"0Wioska barbarzyƄska","PlayerID":699333701,"Points":2780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2318","ServerKey":"pl181","X":473,"Y":512},{"Bonus":0,"Continent":"K54","ID":2319,"Name":"#0021 Szczur","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2319","ServerKey":"pl181","X":486,"Y":546},{"Bonus":0,"Continent":"K55","ID":2320,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2320","ServerKey":"pl181","X":525,"Y":545},{"Bonus":0,"Continent":"K54","ID":2321,"Name":"053","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2321","ServerKey":"pl181","X":419,"Y":515},{"Bonus":0,"Continent":"K45","ID":2322,"Name":"x07","PlayerID":8459255,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2322","ServerKey":"pl181","X":560,"Y":476},{"Bonus":0,"Continent":"K54","ID":2323,"Name":"PRO8L3M","PlayerID":7491093,"Points":8099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2323","ServerKey":"pl181","X":423,"Y":505},{"Bonus":0,"Continent":"K54","ID":2324,"Name":"hack3d by gh05t","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2324","ServerKey":"pl181","X":474,"Y":526},{"Bonus":0,"Continent":"K45","ID":2325,"Name":"101","PlayerID":699351301,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2325","ServerKey":"pl181","X":548,"Y":498},{"Bonus":0,"Continent":"K64","ID":2326,"Name":"082 MEHEHE","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2326","ServerKey":"pl181","X":497,"Y":618},{"Bonus":0,"Continent":"K54","ID":2327,"Name":"Suppi","PlayerID":699856962,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2327","ServerKey":"pl181","X":438,"Y":518},{"Bonus":0,"Continent":"K44","ID":2328,"Name":"mehehehe","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2328","ServerKey":"pl181","X":467,"Y":438},{"Bonus":0,"Continent":"K45","ID":2329,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2329","ServerKey":"pl181","X":559,"Y":480},{"Bonus":0,"Continent":"K45","ID":2330,"Name":"[234] WEST","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2330","ServerKey":"pl181","X":598,"Y":451},{"Bonus":0,"Continent":"K44","ID":2331,"Name":"P Konfederacja","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2331","ServerKey":"pl181","X":457,"Y":443},{"Bonus":0,"Continent":"K35","ID":2332,"Name":"043","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2332","ServerKey":"pl181","X":544,"Y":394},{"Bonus":0,"Continent":"K55","ID":2333,"Name":"ladyanima","PlayerID":699703642,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2333","ServerKey":"pl181","X":514,"Y":571},{"Bonus":0,"Continent":"K44","ID":2334,"Name":"0000 Velka pardubicka","PlayerID":3909522,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2334","ServerKey":"pl181","X":471,"Y":423},{"Bonus":0,"Continent":"K55","ID":2335,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2335","ServerKey":"pl181","X":512,"Y":552},{"Bonus":0,"Continent":"K44","ID":2336,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2336","ServerKey":"pl181","X":460,"Y":499},{"Bonus":0,"Continent":"K54","ID":2337,"Name":"x Romper Stomper","PlayerID":698290577,"Points":7238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2337","ServerKey":"pl181","X":423,"Y":502},{"Bonus":0,"Continent":"K54","ID":2338,"Name":"Brat447","PlayerID":699262350,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2338","ServerKey":"pl181","X":456,"Y":509},{"Bonus":0,"Continent":"K45","ID":2339,"Name":"[154] North","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2339","ServerKey":"pl181","X":566,"Y":465},{"Bonus":0,"Continent":"K55","ID":2340,"Name":"Wioska barbarzyƄska","PlayerID":848915531,"Points":4953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2340","ServerKey":"pl181","X":514,"Y":536},{"Bonus":0,"Continent":"K45","ID":2341,"Name":"Wioska 16","PlayerID":699385139,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2341","ServerKey":"pl181","X":530,"Y":499},{"Bonus":0,"Continent":"K45","ID":2342,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2342","ServerKey":"pl181","X":548,"Y":447},{"Bonus":0,"Continent":"K54","ID":2343,"Name":"069. ALFI","PlayerID":8539216,"Points":1493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2343","ServerKey":"pl181","X":465,"Y":570},{"Bonus":0,"Continent":"K44","ID":2344,"Name":"+44 62 Broukerque","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2344","ServerKey":"pl181","X":420,"Y":466},{"Bonus":0,"Continent":"K45","ID":2345,"Name":"037. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2345","ServerKey":"pl181","X":548,"Y":499},{"Bonus":0,"Continent":"K55","ID":2346,"Name":"10022","PlayerID":848915531,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2346","ServerKey":"pl181","X":531,"Y":561},{"Bonus":0,"Continent":"K55","ID":2347,"Name":"[111]","PlayerID":8000875,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2347","ServerKey":"pl181","X":557,"Y":501},{"Bonus":0,"Continent":"K44","ID":2348,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2348","ServerKey":"pl181","X":498,"Y":443},{"Bonus":0,"Continent":"K55","ID":2349,"Name":"CALL 977","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2349","ServerKey":"pl181","X":551,"Y":554},{"Bonus":0,"Continent":"K44","ID":2350,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":7355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2350","ServerKey":"pl181","X":452,"Y":455},{"Bonus":0,"Continent":"K45","ID":2351,"Name":"Szlachcic","PlayerID":699759128,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2351","ServerKey":"pl181","X":577,"Y":484},{"Bonus":9,"Continent":"K55","ID":2352,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2352","ServerKey":"pl181","X":516,"Y":519},{"Bonus":0,"Continent":"K44","ID":2353,"Name":"RZESZÓW","PlayerID":699660539,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2353","ServerKey":"pl181","X":422,"Y":428},{"Bonus":0,"Continent":"K55","ID":2354,"Name":"Ta cena się nie zmienia","PlayerID":699785935,"Points":8549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2354","ServerKey":"pl181","X":512,"Y":510},{"Bonus":0,"Continent":"K43","ID":2355,"Name":"Land of Fire","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2355","ServerKey":"pl181","X":396,"Y":446},{"Bonus":0,"Continent":"K45","ID":2356,"Name":"slow","PlayerID":848967710,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2356","ServerKey":"pl181","X":530,"Y":489},{"Bonus":0,"Continent":"K55","ID":2357,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2357","ServerKey":"pl181","X":578,"Y":502},{"Bonus":0,"Continent":"K55","ID":2358,"Name":"0019. B -","PlayerID":7125212,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2358","ServerKey":"pl181","X":577,"Y":505},{"Bonus":0,"Continent":"K45","ID":2359,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2359","ServerKey":"pl181","X":538,"Y":499},{"Bonus":0,"Continent":"K44","ID":2360,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2360","ServerKey":"pl181","X":495,"Y":490},{"Bonus":0,"Continent":"K44","ID":2361,"Name":"023 Rapid City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2361","ServerKey":"pl181","X":438,"Y":479},{"Bonus":0,"Continent":"K34","ID":2362,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2362","ServerKey":"pl181","X":438,"Y":398},{"Bonus":0,"Continent":"K44","ID":2363,"Name":"A031","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2363","ServerKey":"pl181","X":496,"Y":415},{"Bonus":0,"Continent":"K55","ID":2364,"Name":"0016","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2364","ServerKey":"pl181","X":547,"Y":547},{"Bonus":0,"Continent":"K45","ID":2365,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2365","ServerKey":"pl181","X":516,"Y":487},{"Bonus":0,"Continent":"K54","ID":2366,"Name":"kathare","PlayerID":873575,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2366","ServerKey":"pl181","X":497,"Y":571},{"Bonus":0,"Continent":"K55","ID":2367,"Name":"010. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2367","ServerKey":"pl181","X":575,"Y":526},{"Bonus":0,"Continent":"K55","ID":2368,"Name":"008 | Lord Axen - Beware!","PlayerID":8000875,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2368","ServerKey":"pl181","X":552,"Y":536},{"Bonus":0,"Continent":"K44","ID":2369,"Name":"0031","PlayerID":848913037,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2369","ServerKey":"pl181","X":467,"Y":469},{"Bonus":0,"Continent":"K53","ID":2370,"Name":"Sir Hood 1","PlayerID":1804724,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2370","ServerKey":"pl181","X":386,"Y":531},{"Bonus":0,"Continent":"K45","ID":2371,"Name":".:123:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2371","ServerKey":"pl181","X":520,"Y":412},{"Bonus":0,"Continent":"K45","ID":2372,"Name":"!Charizard","PlayerID":699795378,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2372","ServerKey":"pl181","X":568,"Y":443},{"Bonus":0,"Continent":"K54","ID":2373,"Name":"DobromirPan","PlayerID":698769107,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2373","ServerKey":"pl181","X":412,"Y":576},{"Bonus":0,"Continent":"K54","ID":2375,"Name":"KIELBA 032","PlayerID":699342219,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2375","ServerKey":"pl181","X":453,"Y":574},{"Bonus":0,"Continent":"K45","ID":2376,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2376","ServerKey":"pl181","X":547,"Y":484},{"Bonus":0,"Continent":"K45","ID":2377,"Name":"Wioska sila","PlayerID":699098531,"Points":10779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2377","ServerKey":"pl181","X":503,"Y":479},{"Bonus":0,"Continent":"K44","ID":2378,"Name":"106.","PlayerID":8788366,"Points":7287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2378","ServerKey":"pl181","X":495,"Y":488},{"Bonus":0,"Continent":"K55","ID":2379,"Name":"0012","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2379","ServerKey":"pl181","X":509,"Y":528},{"Bonus":0,"Continent":"K45","ID":2380,"Name":"221 Mackay","PlayerID":1497168,"Points":10043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2380","ServerKey":"pl181","X":531,"Y":439},{"Bonus":0,"Continent":"K55","ID":2381,"Name":"0001","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2381","ServerKey":"pl181","X":512,"Y":519},{"Bonus":0,"Continent":"K45","ID":2382,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2382","ServerKey":"pl181","X":544,"Y":484},{"Bonus":0,"Continent":"K54","ID":2383,"Name":"FF011","PlayerID":699189792,"Points":4356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2383","ServerKey":"pl181","X":465,"Y":518},{"Bonus":0,"Continent":"K54","ID":2384,"Name":"045. ALFI","PlayerID":8539216,"Points":1767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2384","ServerKey":"pl181","X":479,"Y":563},{"Bonus":0,"Continent":"K44","ID":2385,"Name":"+44 73 Saint Priest Bel Air","PlayerID":698361257,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2385","ServerKey":"pl181","X":430,"Y":476},{"Bonus":0,"Continent":"K54","ID":2386,"Name":"Carsultyal","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2386","ServerKey":"pl181","X":482,"Y":556},{"Bonus":0,"Continent":"K54","ID":2387,"Name":"#0024 Wycieczka szkolna","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2387","ServerKey":"pl181","X":487,"Y":570},{"Bonus":0,"Continent":"K45","ID":2388,"Name":"FFF","PlayerID":849091084,"Points":4711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2388","ServerKey":"pl181","X":531,"Y":464},{"Bonus":0,"Continent":"K54","ID":2389,"Name":"007. ALFI","PlayerID":8539216,"Points":1581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2389","ServerKey":"pl181","X":469,"Y":569},{"Bonus":0,"Continent":"K54","ID":2390,"Name":"Sparta_64","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2390","ServerKey":"pl181","X":482,"Y":579},{"Bonus":0,"Continent":"K45","ID":2391,"Name":"Wioska 13","PlayerID":699385139,"Points":9227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2391","ServerKey":"pl181","X":532,"Y":498},{"Bonus":0,"Continent":"K55","ID":2393,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2393","ServerKey":"pl181","X":575,"Y":505},{"Bonus":0,"Continent":"K44","ID":2394,"Name":"Monetki","PlayerID":699098531,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2394","ServerKey":"pl181","X":485,"Y":412},{"Bonus":0,"Continent":"K54","ID":2395,"Name":"001. ALFI","PlayerID":8539216,"Points":2237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2395","ServerKey":"pl181","X":472,"Y":566},{"Bonus":0,"Continent":"K54","ID":2396,"Name":"KIELBA 074","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2396","ServerKey":"pl181","X":469,"Y":574},{"Bonus":0,"Continent":"K45","ID":2397,"Name":".achim.","PlayerID":6936607,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2397","ServerKey":"pl181","X":558,"Y":448},{"Bonus":0,"Continent":"K54","ID":2398,"Name":"002. ALFI","PlayerID":8539216,"Points":1235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2398","ServerKey":"pl181","X":472,"Y":567},{"Bonus":0,"Continent":"K45","ID":2399,"Name":"Minas Anor 017","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2399","ServerKey":"pl181","X":573,"Y":461},{"Bonus":0,"Continent":"K44","ID":2400,"Name":"194 Georgetown","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2400","ServerKey":"pl181","X":466,"Y":461},{"Bonus":0,"Continent":"K54","ID":2401,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2401","ServerKey":"pl181","X":447,"Y":564},{"Bonus":0,"Continent":"K45","ID":2402,"Name":"Szlachcic","PlayerID":698867446,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2402","ServerKey":"pl181","X":566,"Y":498},{"Bonus":0,"Continent":"K44","ID":2403,"Name":"Szlachcic","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2403","ServerKey":"pl181","X":491,"Y":472},{"Bonus":0,"Continent":"K44","ID":2404,"Name":"036 Tulsa","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2404","ServerKey":"pl181","X":434,"Y":441},{"Bonus":0,"Continent":"K44","ID":2405,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2405","ServerKey":"pl181","X":425,"Y":482},{"Bonus":0,"Continent":"K44","ID":2406,"Name":"Suppi","PlayerID":699856962,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2406","ServerKey":"pl181","X":433,"Y":444},{"Bonus":0,"Continent":"K45","ID":2407,"Name":"086","PlayerID":699351301,"Points":5231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2407","ServerKey":"pl181","X":533,"Y":486},{"Bonus":0,"Continent":"K45","ID":2408,"Name":"024 Trititi","PlayerID":849031818,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2408","ServerKey":"pl181","X":543,"Y":464},{"Bonus":0,"Continent":"K55","ID":2409,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2409","ServerKey":"pl181","X":535,"Y":539},{"Bonus":0,"Continent":"K43","ID":2410,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2410","ServerKey":"pl181","X":391,"Y":485},{"Bonus":0,"Continent":"K44","ID":2411,"Name":"182 Artigas","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2411","ServerKey":"pl181","X":479,"Y":484},{"Bonus":0,"Continent":"K44","ID":2412,"Name":"166 Belem","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2412","ServerKey":"pl181","X":482,"Y":477},{"Bonus":0,"Continent":"K45","ID":2413,"Name":".achim.","PlayerID":6936607,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2413","ServerKey":"pl181","X":530,"Y":444},{"Bonus":6,"Continent":"K44","ID":2414,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2414","ServerKey":"pl181","X":486,"Y":429},{"Bonus":0,"Continent":"K54","ID":2415,"Name":"0Wioska barbarzyƄska","PlayerID":699189792,"Points":4527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2415","ServerKey":"pl181","X":470,"Y":513},{"Bonus":0,"Continent":"K54","ID":2416,"Name":"0648","PlayerID":698659980,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2416","ServerKey":"pl181","X":478,"Y":548},{"Bonus":0,"Continent":"K45","ID":2417,"Name":"C013","PlayerID":699299123,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2417","ServerKey":"pl181","X":526,"Y":458},{"Bonus":0,"Continent":"K54","ID":2418,"Name":"004","PlayerID":1536625,"Points":8162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2418","ServerKey":"pl181","X":473,"Y":510},{"Bonus":0,"Continent":"K44","ID":2419,"Name":"0062 ~222~ zając","PlayerID":3909522,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2419","ServerKey":"pl181","X":442,"Y":438},{"Bonus":0,"Continent":"K45","ID":2420,"Name":"[147] North","PlayerID":848985692,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2420","ServerKey":"pl181","X":583,"Y":475},{"Bonus":0,"Continent":"K55","ID":2421,"Name":"91k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2421","ServerKey":"pl181","X":559,"Y":540},{"Bonus":0,"Continent":"K54","ID":2422,"Name":"ObroƄcyZamkuTrzymaliSieDzielnie","PlayerID":7491093,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2422","ServerKey":"pl181","X":479,"Y":528},{"Bonus":0,"Continent":"K44","ID":2423,"Name":"?+44 96 Ecully Val dOuest","PlayerID":698361257,"Points":11487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2423","ServerKey":"pl181","X":467,"Y":491},{"Bonus":0,"Continent":"K55","ID":2424,"Name":"033","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2424","ServerKey":"pl181","X":522,"Y":567},{"Bonus":0,"Continent":"K44","ID":2425,"Name":"084.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2425","ServerKey":"pl181","X":469,"Y":485},{"Bonus":0,"Continent":"K45","ID":2426,"Name":".achim.","PlayerID":6936607,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2426","ServerKey":"pl181","X":534,"Y":423},{"Bonus":0,"Continent":"K44","ID":2427,"Name":"107 Quebec City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2427","ServerKey":"pl181","X":464,"Y":488},{"Bonus":0,"Continent":"K45","ID":2428,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2428","ServerKey":"pl181","X":517,"Y":474},{"Bonus":0,"Continent":"K54","ID":2429,"Name":"#0077 SƂaboƛć","PlayerID":8827094,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2429","ServerKey":"pl181","X":497,"Y":558},{"Bonus":0,"Continent":"K45","ID":2430,"Name":"049","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2430","ServerKey":"pl181","X":588,"Y":480},{"Bonus":2,"Continent":"K55","ID":2431,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2431","ServerKey":"pl181","X":514,"Y":526},{"Bonus":0,"Continent":"K54","ID":2432,"Name":"#0079 UPC","PlayerID":9272054,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2432","ServerKey":"pl181","X":495,"Y":565},{"Bonus":0,"Continent":"K44","ID":2433,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2433","ServerKey":"pl181","X":498,"Y":426},{"Bonus":0,"Continent":"K45","ID":2434,"Name":"026 Nelin","PlayerID":849031818,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2434","ServerKey":"pl181","X":542,"Y":467},{"Bonus":0,"Continent":"K54","ID":2435,"Name":"#0099 ƚwidnik","PlayerID":9272054,"Points":9307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2435","ServerKey":"pl181","X":479,"Y":546},{"Bonus":0,"Continent":"K44","ID":2436,"Name":"A018","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2436","ServerKey":"pl181","X":489,"Y":418},{"Bonus":0,"Continent":"K54","ID":2437,"Name":"018 - Chicanna***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2437","ServerKey":"pl181","X":436,"Y":591},{"Bonus":0,"Continent":"K44","ID":2438,"Name":"Szlachcic","PlayerID":699098531,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2438","ServerKey":"pl181","X":497,"Y":470},{"Bonus":0,"Continent":"K44","ID":2439,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2439","ServerKey":"pl181","X":477,"Y":448},{"Bonus":0,"Continent":"K55","ID":2440,"Name":"015. Dola","PlayerID":699703642,"Points":9449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2440","ServerKey":"pl181","X":509,"Y":570},{"Bonus":0,"Continent":"K44","ID":2441,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2441","ServerKey":"pl181","X":478,"Y":445},{"Bonus":0,"Continent":"K44","ID":2442,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2442","ServerKey":"pl181","X":496,"Y":446},{"Bonus":0,"Continent":"K44","ID":2443,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2443","ServerKey":"pl181","X":473,"Y":444},{"Bonus":0,"Continent":"K54","ID":2444,"Name":"023. ALFI","PlayerID":8369778,"Points":1618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2444","ServerKey":"pl181","X":486,"Y":572},{"Bonus":0,"Continent":"K45","ID":2445,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2445","ServerKey":"pl181","X":549,"Y":449},{"Bonus":0,"Continent":"K45","ID":2446,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2446","ServerKey":"pl181","X":514,"Y":441},{"Bonus":0,"Continent":"K55","ID":2447,"Name":"Jaaa","PlayerID":698635863,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2447","ServerKey":"pl181","X":572,"Y":577},{"Bonus":0,"Continent":"K54","ID":2448,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2448","ServerKey":"pl181","X":442,"Y":536},{"Bonus":0,"Continent":"K54","ID":2449,"Name":"meh","PlayerID":699856962,"Points":1703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2449","ServerKey":"pl181","X":438,"Y":553},{"Bonus":0,"Continent":"K44","ID":2450,"Name":"073.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2450","ServerKey":"pl181","X":493,"Y":487},{"Bonus":0,"Continent":"K55","ID":2451,"Name":"0081","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2451","ServerKey":"pl181","X":527,"Y":512},{"Bonus":0,"Continent":"K44","ID":2452,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2452","ServerKey":"pl181","X":406,"Y":423},{"Bonus":0,"Continent":"K44","ID":2453,"Name":"009711","PlayerID":3909522,"Points":10133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2453","ServerKey":"pl181","X":464,"Y":439},{"Bonus":0,"Continent":"K44","ID":2454,"Name":"P Konfederacja","PlayerID":848915730,"Points":9921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2454","ServerKey":"pl181","X":454,"Y":444},{"Bonus":0,"Continent":"K54","ID":2455,"Name":"NOT?","PlayerID":9236866,"Points":9184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2455","ServerKey":"pl181","X":461,"Y":537},{"Bonus":0,"Continent":"K55","ID":2456,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2456","ServerKey":"pl181","X":583,"Y":508},{"Bonus":0,"Continent":"K46","ID":2457,"Name":"036","PlayerID":849006412,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2457","ServerKey":"pl181","X":613,"Y":489},{"Bonus":0,"Continent":"K45","ID":2458,"Name":"Szlachcic","PlayerID":698867446,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2458","ServerKey":"pl181","X":556,"Y":487},{"Bonus":0,"Continent":"K44","ID":2459,"Name":"Madryt","PlayerID":699660539,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2459","ServerKey":"pl181","X":422,"Y":457},{"Bonus":0,"Continent":"K55","ID":2460,"Name":"0032","PlayerID":698599365,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2460","ServerKey":"pl181","X":523,"Y":502},{"Bonus":0,"Continent":"K45","ID":2461,"Name":"031","PlayerID":699788305,"Points":7732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2461","ServerKey":"pl181","X":523,"Y":441},{"Bonus":0,"Continent":"K54","ID":2462,"Name":"Kasyno","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2462","ServerKey":"pl181","X":441,"Y":508},{"Bonus":0,"Continent":"K55","ID":2463,"Name":"Isengard","PlayerID":7581876,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2463","ServerKey":"pl181","X":532,"Y":532},{"Bonus":0,"Continent":"K54","ID":2464,"Name":"Suppi","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2464","ServerKey":"pl181","X":443,"Y":529},{"Bonus":0,"Continent":"K44","ID":2465,"Name":"Arizona","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2465","ServerKey":"pl181","X":406,"Y":471},{"Bonus":0,"Continent":"K45","ID":2466,"Name":"SS04","PlayerID":699744766,"Points":5559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2466","ServerKey":"pl181","X":533,"Y":493},{"Bonus":0,"Continent":"K44","ID":2467,"Name":"072 Houston","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2467","ServerKey":"pl181","X":448,"Y":444},{"Bonus":0,"Continent":"K45","ID":2468,"Name":"Szlachcic","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2468","ServerKey":"pl181","X":510,"Y":475},{"Bonus":0,"Continent":"K54","ID":2469,"Name":"086. ALFI","PlayerID":8539216,"Points":1324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2469","ServerKey":"pl181","X":484,"Y":564},{"Bonus":0,"Continent":"K54","ID":2470,"Name":"Fajna 025","PlayerID":698971484,"Points":6509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2470","ServerKey":"pl181","X":446,"Y":552},{"Bonus":0,"Continent":"K45","ID":2471,"Name":"Atlantis 07","PlayerID":699433558,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2471","ServerKey":"pl181","X":542,"Y":425},{"Bonus":0,"Continent":"K45","ID":2472,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2472","ServerKey":"pl181","X":557,"Y":486},{"Bonus":0,"Continent":"K55","ID":2473,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2473","ServerKey":"pl181","X":504,"Y":575},{"Bonus":0,"Continent":"K55","ID":2474,"Name":"Wioska 417","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2474","ServerKey":"pl181","X":564,"Y":506},{"Bonus":0,"Continent":"K55","ID":2475,"Name":"- 299 -","PlayerID":849018239,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2475","ServerKey":"pl181","X":527,"Y":579},{"Bonus":0,"Continent":"K45","ID":2476,"Name":"Szlachcic","PlayerID":699098531,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2476","ServerKey":"pl181","X":506,"Y":471},{"Bonus":0,"Continent":"K55","ID":2477,"Name":"#0015 Zapalniczka","PlayerID":9272054,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2477","ServerKey":"pl181","X":500,"Y":566},{"Bonus":0,"Continent":"K44","ID":2478,"Name":"SsSs","PlayerID":1536625,"Points":7168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2478","ServerKey":"pl181","X":424,"Y":495},{"Bonus":0,"Continent":"K55","ID":2479,"Name":"0034 K55 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2479","ServerKey":"pl181","X":503,"Y":558},{"Bonus":0,"Continent":"K54","ID":2480,"Name":"KIELBA 058","PlayerID":699342219,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2480","ServerKey":"pl181","X":466,"Y":584},{"Bonus":0,"Continent":"K55","ID":2481,"Name":"warzywa style","PlayerID":699364813,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2481","ServerKey":"pl181","X":507,"Y":572},{"Bonus":0,"Continent":"K55","ID":2483,"Name":"JaamMwG 015","PlayerID":848987051,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2483","ServerKey":"pl181","X":523,"Y":517},{"Bonus":0,"Continent":"K55","ID":2484,"Name":"040. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2484","ServerKey":"pl181","X":563,"Y":528},{"Bonus":0,"Continent":"K55","ID":2485,"Name":"CALL 969","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2485","ServerKey":"pl181","X":548,"Y":569},{"Bonus":0,"Continent":"K35","ID":2486,"Name":"079","PlayerID":849063849,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2486","ServerKey":"pl181","X":568,"Y":393},{"Bonus":0,"Continent":"K44","ID":2487,"Name":"+44 72 Inxent","PlayerID":698361257,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2487","ServerKey":"pl181","X":421,"Y":470},{"Bonus":0,"Continent":"K44","ID":2488,"Name":"..::004::.. Planeta Guwbu","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2488","ServerKey":"pl181","X":412,"Y":435},{"Bonus":0,"Continent":"K45","ID":2489,"Name":"093","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2489","ServerKey":"pl181","X":591,"Y":474},{"Bonus":0,"Continent":"K44","ID":2490,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2490","ServerKey":"pl181","X":491,"Y":481},{"Bonus":0,"Continent":"K44","ID":2491,"Name":"067 Baltimore","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2491","ServerKey":"pl181","X":461,"Y":474},{"Bonus":0,"Continent":"K54","ID":2492,"Name":"IBAR","PlayerID":8779575,"Points":2670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2492","ServerKey":"pl181","X":431,"Y":554},{"Bonus":0,"Continent":"K44","ID":2493,"Name":"043 Kodiak","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2493","ServerKey":"pl181","X":463,"Y":469},{"Bonus":0,"Continent":"K45","ID":2494,"Name":"091 Liechtenstein","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2494","ServerKey":"pl181","X":574,"Y":462},{"Bonus":0,"Continent":"K44","ID":2495,"Name":"062 Carson City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2495","ServerKey":"pl181","X":457,"Y":470},{"Bonus":0,"Continent":"K44","ID":2496,"Name":"Suppi","PlayerID":699856962,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2496","ServerKey":"pl181","X":431,"Y":457},{"Bonus":0,"Continent":"K44","ID":2497,"Name":"Cast Away 023","PlayerID":698290577,"Points":3688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2497","ServerKey":"pl181","X":438,"Y":478},{"Bonus":0,"Continent":"K45","ID":2498,"Name":"Joms 014","PlayerID":699756210,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2498","ServerKey":"pl181","X":521,"Y":415},{"Bonus":0,"Continent":"K44","ID":2499,"Name":"+44 83 Ghyvelde","PlayerID":698361257,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2499","ServerKey":"pl181","X":437,"Y":481},{"Bonus":0,"Continent":"K44","ID":2500,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2500","ServerKey":"pl181","X":491,"Y":440},{"Bonus":0,"Continent":"K64","ID":2501,"Name":"~086.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2501","ServerKey":"pl181","X":494,"Y":607},{"Bonus":0,"Continent":"K44","ID":2502,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2502","ServerKey":"pl181","X":482,"Y":423},{"Bonus":5,"Continent":"K54","ID":2503,"Name":"Osada KS","PlayerID":698971484,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2503","ServerKey":"pl181","X":450,"Y":536},{"Bonus":0,"Continent":"K65","ID":2504,"Name":"Teby_01","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2504","ServerKey":"pl181","X":504,"Y":609},{"Bonus":0,"Continent":"K44","ID":2505,"Name":"Brat447","PlayerID":699262350,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2505","ServerKey":"pl181","X":437,"Y":486},{"Bonus":0,"Continent":"K44","ID":2506,"Name":"P Konfederacja +","PlayerID":848915730,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2506","ServerKey":"pl181","X":458,"Y":449},{"Bonus":0,"Continent":"K45","ID":2507,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2507","ServerKey":"pl181","X":553,"Y":477},{"Bonus":0,"Continent":"K44","ID":2508,"Name":"078 Albuquerque","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2508","ServerKey":"pl181","X":463,"Y":453},{"Bonus":0,"Continent":"K44","ID":2509,"Name":"?+44 85 Hesdigneul les Boulogne","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2509","ServerKey":"pl181","X":456,"Y":489},{"Bonus":0,"Continent":"K45","ID":2510,"Name":"JM3","PlayerID":699368887,"Points":8991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2510","ServerKey":"pl181","X":561,"Y":456},{"Bonus":0,"Continent":"K64","ID":2511,"Name":"0636","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2511","ServerKey":"pl181","X":438,"Y":600},{"Bonus":0,"Continent":"K55","ID":2512,"Name":"kek","PlayerID":848967710,"Points":7378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2512","ServerKey":"pl181","X":535,"Y":516},{"Bonus":0,"Continent":"K45","ID":2513,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2513","ServerKey":"pl181","X":536,"Y":447},{"Bonus":0,"Continent":"K55","ID":2514,"Name":"CALL 947","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2514","ServerKey":"pl181","X":546,"Y":558},{"Bonus":0,"Continent":"K44","ID":2515,"Name":"Andrzejuuu","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2515","ServerKey":"pl181","X":437,"Y":460},{"Bonus":0,"Continent":"K44","ID":2516,"Name":"021","PlayerID":699510259,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2516","ServerKey":"pl181","X":432,"Y":490},{"Bonus":0,"Continent":"K55","ID":2517,"Name":"|064|000","PlayerID":699664910,"Points":6480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2517","ServerKey":"pl181","X":568,"Y":531},{"Bonus":0,"Continent":"K54","ID":2518,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2518","ServerKey":"pl181","X":410,"Y":501},{"Bonus":0,"Continent":"K45","ID":2519,"Name":"001","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2519","ServerKey":"pl181","X":554,"Y":402},{"Bonus":0,"Continent":"K55","ID":2520,"Name":"[114]","PlayerID":8000875,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2520","ServerKey":"pl181","X":551,"Y":503},{"Bonus":1,"Continent":"K55","ID":2521,"Name":"027 |","PlayerID":8000875,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2521","ServerKey":"pl181","X":555,"Y":545},{"Bonus":0,"Continent":"K35","ID":2522,"Name":"002","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2522","ServerKey":"pl181","X":560,"Y":396},{"Bonus":0,"Continent":"K54","ID":2523,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2523","ServerKey":"pl181","X":462,"Y":556},{"Bonus":0,"Continent":"K44","ID":2524,"Name":"?+44 85 Craywick","PlayerID":698361257,"Points":9728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2524","ServerKey":"pl181","X":458,"Y":480},{"Bonus":0,"Continent":"K55","ID":2525,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2525","ServerKey":"pl181","X":516,"Y":506},{"Bonus":0,"Continent":"K35","ID":2526,"Name":"0032","PlayerID":699485250,"Points":10705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2526","ServerKey":"pl181","X":564,"Y":391},{"Bonus":0,"Continent":"K55","ID":2527,"Name":"[132]","PlayerID":8000875,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2527","ServerKey":"pl181","X":553,"Y":536},{"Bonus":0,"Continent":"K45","ID":2528,"Name":"[117] North17","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2528","ServerKey":"pl181","X":572,"Y":472},{"Bonus":0,"Continent":"K45","ID":2529,"Name":"010","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2529","ServerKey":"pl181","X":588,"Y":449},{"Bonus":2,"Continent":"K45","ID":2530,"Name":"A01","PlayerID":699368887,"Points":9313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2530","ServerKey":"pl181","X":548,"Y":453},{"Bonus":0,"Continent":"K44","ID":2531,"Name":"B067","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2531","ServerKey":"pl181","X":474,"Y":475},{"Bonus":0,"Continent":"K54","ID":2532,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2532","ServerKey":"pl181","X":434,"Y":527},{"Bonus":0,"Continent":"K44","ID":2533,"Name":"K44 004","PlayerID":698290577,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2533","ServerKey":"pl181","X":418,"Y":477},{"Bonus":0,"Continent":"K44","ID":2534,"Name":"A#039#","PlayerID":698807570,"Points":11727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2534","ServerKey":"pl181","X":419,"Y":474},{"Bonus":0,"Continent":"K55","ID":2535,"Name":"[073]","PlayerID":8000875,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2535","ServerKey":"pl181","X":557,"Y":566},{"Bonus":0,"Continent":"K44","ID":2536,"Name":"K44 005","PlayerID":698290577,"Points":4703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2536","ServerKey":"pl181","X":420,"Y":478},{"Bonus":0,"Continent":"K44","ID":2537,"Name":"132 Acapulco","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2537","ServerKey":"pl181","X":478,"Y":480},{"Bonus":5,"Continent":"K45","ID":2538,"Name":"Joms 021","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2538","ServerKey":"pl181","X":528,"Y":417},{"Bonus":0,"Continent":"K44","ID":2539,"Name":"0063 kamieƄ","PlayerID":3909522,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2539","ServerKey":"pl181","X":446,"Y":428},{"Bonus":0,"Continent":"K54","ID":2540,"Name":"031. Andromeda","PlayerID":699703642,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2540","ServerKey":"pl181","X":490,"Y":584},{"Bonus":0,"Continent":"K45","ID":2541,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2541","ServerKey":"pl181","X":580,"Y":491},{"Bonus":0,"Continent":"K45","ID":2542,"Name":"103.","PlayerID":8788366,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2542","ServerKey":"pl181","X":504,"Y":481},{"Bonus":0,"Continent":"K44","ID":2544,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2544","ServerKey":"pl181","X":449,"Y":471},{"Bonus":0,"Continent":"K45","ID":2545,"Name":"Gattacka","PlayerID":699298370,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2545","ServerKey":"pl181","X":588,"Y":498},{"Bonus":0,"Continent":"K45","ID":2546,"Name":"0022 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2546","ServerKey":"pl181","X":568,"Y":498},{"Bonus":0,"Continent":"K55","ID":2547,"Name":"Wioska Wiecznie pokƂucony","PlayerID":848954163,"Points":1005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2547","ServerKey":"pl181","X":582,"Y":504},{"Bonus":0,"Continent":"K45","ID":2548,"Name":"C032","PlayerID":699299123,"Points":8192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2548","ServerKey":"pl181","X":527,"Y":450},{"Bonus":0,"Continent":"K44","ID":2549,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2549","ServerKey":"pl181","X":452,"Y":488},{"Bonus":0,"Continent":"K44","ID":2550,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2550","ServerKey":"pl181","X":426,"Y":461},{"Bonus":0,"Continent":"K55","ID":2551,"Name":"017 |","PlayerID":8000875,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2551","ServerKey":"pl181","X":560,"Y":560},{"Bonus":0,"Continent":"K54","ID":2552,"Name":"budzik","PlayerID":699856962,"Points":5867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2552","ServerKey":"pl181","X":441,"Y":533},{"Bonus":0,"Continent":"K45","ID":2553,"Name":"065 Holandia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2553","ServerKey":"pl181","X":573,"Y":453},{"Bonus":0,"Continent":"K45","ID":2554,"Name":"025","PlayerID":699788305,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2554","ServerKey":"pl181","X":528,"Y":434},{"Bonus":0,"Continent":"K44","ID":2555,"Name":"045.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2555","ServerKey":"pl181","X":499,"Y":492},{"Bonus":0,"Continent":"K54","ID":2556,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":8537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2556","ServerKey":"pl181","X":441,"Y":536},{"Bonus":9,"Continent":"K45","ID":2557,"Name":"A05","PlayerID":699368887,"Points":9454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2557","ServerKey":"pl181","X":552,"Y":451},{"Bonus":0,"Continent":"K54","ID":2558,"Name":"Suppi","PlayerID":699856962,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2558","ServerKey":"pl181","X":445,"Y":526},{"Bonus":0,"Continent":"K45","ID":2559,"Name":"6. Nędza","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2559","ServerKey":"pl181","X":550,"Y":435},{"Bonus":0,"Continent":"K54","ID":2560,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2560","ServerKey":"pl181","X":444,"Y":539},{"Bonus":0,"Continent":"K55","ID":2561,"Name":"Yogi","PlayerID":2808172,"Points":8736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2561","ServerKey":"pl181","X":514,"Y":542},{"Bonus":0,"Continent":"K45","ID":2562,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2562","ServerKey":"pl181","X":582,"Y":497},{"Bonus":0,"Continent":"K45","ID":2563,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2563","ServerKey":"pl181","X":581,"Y":499},{"Bonus":0,"Continent":"K44","ID":2564,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2564","ServerKey":"pl181","X":490,"Y":491},{"Bonus":0,"Continent":"K45","ID":2565,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2565","ServerKey":"pl181","X":542,"Y":482},{"Bonus":0,"Continent":"K54","ID":2566,"Name":"Winter is coming","PlayerID":699856962,"Points":7018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2566","ServerKey":"pl181","X":440,"Y":555},{"Bonus":0,"Continent":"K45","ID":2567,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2567","ServerKey":"pl181","X":509,"Y":440},{"Bonus":0,"Continent":"K55","ID":2568,"Name":"CALL 952","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2568","ServerKey":"pl181","X":551,"Y":553},{"Bonus":0,"Continent":"K54","ID":2569,"Name":"073","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2569","ServerKey":"pl181","X":417,"Y":507},{"Bonus":0,"Continent":"K45","ID":2570,"Name":"BBB","PlayerID":849091084,"Points":9055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2570","ServerKey":"pl181","X":527,"Y":456},{"Bonus":0,"Continent":"K54","ID":2571,"Name":"035","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2571","ServerKey":"pl181","X":413,"Y":517},{"Bonus":0,"Continent":"K45","ID":2572,"Name":".achim.","PlayerID":6936607,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2572","ServerKey":"pl181","X":532,"Y":445},{"Bonus":0,"Continent":"K54","ID":2573,"Name":"*Ateny_06","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2573","ServerKey":"pl181","X":470,"Y":537},{"Bonus":0,"Continent":"K54","ID":2574,"Name":"C 004.","PlayerID":849028088,"Points":10713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2574","ServerKey":"pl181","X":459,"Y":579},{"Bonus":0,"Continent":"K54","ID":2575,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2575","ServerKey":"pl181","X":419,"Y":527},{"Bonus":0,"Continent":"K44","ID":2576,"Name":"B024","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2576","ServerKey":"pl181","X":490,"Y":451},{"Bonus":0,"Continent":"K44","ID":2577,"Name":"?+44 86 La Capelle les Boulogne","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2577","ServerKey":"pl181","X":461,"Y":484},{"Bonus":0,"Continent":"K45","ID":2578,"Name":"010","PlayerID":849070464,"Points":8562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2578","ServerKey":"pl181","X":552,"Y":492},{"Bonus":0,"Continent":"K45","ID":2579,"Name":"XXX002","PlayerID":699368887,"Points":8635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2579","ServerKey":"pl181","X":570,"Y":456},{"Bonus":0,"Continent":"K45","ID":2580,"Name":".achim.","PlayerID":6936607,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2580","ServerKey":"pl181","X":528,"Y":449},{"Bonus":0,"Continent":"K55","ID":2581,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2581","ServerKey":"pl181","X":512,"Y":567},{"Bonus":0,"Continent":"K44","ID":2582,"Name":"0087","PlayerID":848913037,"Points":3764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2582","ServerKey":"pl181","X":465,"Y":461},{"Bonus":0,"Continent":"K45","ID":2583,"Name":"ADEN","PlayerID":698588535,"Points":10180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2583","ServerKey":"pl181","X":564,"Y":441},{"Bonus":0,"Continent":"K45","ID":2584,"Name":"[104] North4","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2584","ServerKey":"pl181","X":575,"Y":484},{"Bonus":0,"Continent":"K55","ID":2585,"Name":"10007","PlayerID":848915531,"Points":8251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2585","ServerKey":"pl181","X":527,"Y":560},{"Bonus":0,"Continent":"K65","ID":2586,"Name":"Coruscant 2","PlayerID":699383121,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2586","ServerKey":"pl181","X":503,"Y":603},{"Bonus":0,"Continent":"K65","ID":2587,"Name":"~015.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2587","ServerKey":"pl181","X":504,"Y":605},{"Bonus":8,"Continent":"K55","ID":2588,"Name":"0002 dla","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2588","ServerKey":"pl181","X":506,"Y":505},{"Bonus":0,"Continent":"K44","ID":2589,"Name":"Yellow Candy","PlayerID":698807570,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2589","ServerKey":"pl181","X":402,"Y":458},{"Bonus":0,"Continent":"K54","ID":2590,"Name":"008 Fiona","PlayerID":698290577,"Points":7870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2590","ServerKey":"pl181","X":447,"Y":506},{"Bonus":3,"Continent":"K54","ID":2591,"Name":"Fajna 028","PlayerID":698971484,"Points":7054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2591","ServerKey":"pl181","X":446,"Y":557},{"Bonus":0,"Continent":"K55","ID":2592,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2592","ServerKey":"pl181","X":527,"Y":557},{"Bonus":0,"Continent":"K54","ID":2593,"Name":"NOT!!","PlayerID":9236866,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2593","ServerKey":"pl181","X":469,"Y":599},{"Bonus":0,"Continent":"K64","ID":2594,"Name":"006","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2594","ServerKey":"pl181","X":465,"Y":600},{"Bonus":0,"Continent":"K45","ID":2595,"Name":"#1#","PlayerID":699098531,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2595","ServerKey":"pl181","X":501,"Y":483},{"Bonus":0,"Continent":"K55","ID":2596,"Name":"CALL 968","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2596","ServerKey":"pl181","X":546,"Y":568},{"Bonus":0,"Continent":"K45","ID":2597,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2597","ServerKey":"pl181","X":518,"Y":410},{"Bonus":0,"Continent":"K55","ID":2598,"Name":"yogi","PlayerID":2808172,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2598","ServerKey":"pl181","X":513,"Y":546},{"Bonus":0,"Continent":"K65","ID":2599,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2599","ServerKey":"pl181","X":533,"Y":603},{"Bonus":0,"Continent":"K44","ID":2600,"Name":"Cast Away 008","PlayerID":698290577,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2600","ServerKey":"pl181","X":448,"Y":484},{"Bonus":0,"Continent":"K55","ID":2601,"Name":"043 |","PlayerID":8000875,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2601","ServerKey":"pl181","X":566,"Y":568},{"Bonus":0,"Continent":"K45","ID":2602,"Name":"130","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2602","ServerKey":"pl181","X":565,"Y":407},{"Bonus":0,"Continent":"K54","ID":2603,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":9414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2603","ServerKey":"pl181","X":479,"Y":532},{"Bonus":0,"Continent":"K44","ID":2604,"Name":"Szlachcic","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2604","ServerKey":"pl181","X":486,"Y":468},{"Bonus":0,"Continent":"K45","ID":2605,"Name":"Osada","PlayerID":699098531,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2605","ServerKey":"pl181","X":500,"Y":436},{"Bonus":0,"Continent":"K44","ID":2606,"Name":"Wioska Gebels25","PlayerID":9291984,"Points":7958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2606","ServerKey":"pl181","X":465,"Y":409},{"Bonus":0,"Continent":"K55","ID":2607,"Name":"Szlachcic 035","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2607","ServerKey":"pl181","X":562,"Y":526},{"Bonus":0,"Continent":"K45","ID":2608,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2608","ServerKey":"pl181","X":578,"Y":485},{"Bonus":0,"Continent":"K44","ID":2609,"Name":"PRO8L3M","PlayerID":7491093,"Points":9992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2609","ServerKey":"pl181","X":414,"Y":498},{"Bonus":0,"Continent":"K45","ID":2610,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2610","ServerKey":"pl181","X":518,"Y":469},{"Bonus":0,"Continent":"K44","ID":2611,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2611","ServerKey":"pl181","X":417,"Y":491},{"Bonus":0,"Continent":"K44","ID":2612,"Name":"Osada","PlayerID":699098531,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2612","ServerKey":"pl181","X":491,"Y":454},{"Bonus":0,"Continent":"K54","ID":2613,"Name":"NOT?","PlayerID":9236866,"Points":8444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2613","ServerKey":"pl181","X":467,"Y":548},{"Bonus":0,"Continent":"K54","ID":2614,"Name":"052. ALFI","PlayerID":8539216,"Points":1866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2614","ServerKey":"pl181","X":486,"Y":564},{"Bonus":0,"Continent":"K46","ID":2615,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2615","ServerKey":"pl181","X":605,"Y":436},{"Bonus":0,"Continent":"K54","ID":2616,"Name":"0176","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2616","ServerKey":"pl181","X":473,"Y":544},{"Bonus":5,"Continent":"K44","ID":2617,"Name":"052 Waimea","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2617","ServerKey":"pl181","X":453,"Y":458},{"Bonus":0,"Continent":"K44","ID":2618,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2618","ServerKey":"pl181","X":443,"Y":449},{"Bonus":0,"Continent":"K44","ID":2619,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2619","ServerKey":"pl181","X":497,"Y":490},{"Bonus":0,"Continent":"K54","ID":2620,"Name":"SsSs","PlayerID":1536625,"Points":8565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2620","ServerKey":"pl181","X":423,"Y":504},{"Bonus":0,"Continent":"K54","ID":2621,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":4172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2621","ServerKey":"pl181","X":422,"Y":504},{"Bonus":0,"Continent":"K53","ID":2622,"Name":"NWO","PlayerID":849030226,"Points":10966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2622","ServerKey":"pl181","X":393,"Y":525},{"Bonus":0,"Continent":"K45","ID":2623,"Name":".:012:.Chillout","PlayerID":848934935,"Points":4162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2623","ServerKey":"pl181","X":515,"Y":429},{"Bonus":0,"Continent":"K45","ID":2624,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2624","ServerKey":"pl181","X":516,"Y":426},{"Bonus":0,"Continent":"K44","ID":2625,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2625","ServerKey":"pl181","X":474,"Y":438},{"Bonus":0,"Continent":"K54","ID":2626,"Name":"Warzywniak 007","PlayerID":698290577,"Points":2318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2626","ServerKey":"pl181","X":451,"Y":545},{"Bonus":0,"Continent":"K55","ID":2627,"Name":"CALL 963","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2627","ServerKey":"pl181","X":544,"Y":546},{"Bonus":0,"Continent":"K55","ID":2628,"Name":"Szlachcic 021","PlayerID":758104,"Points":9295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2628","ServerKey":"pl181","X":555,"Y":525},{"Bonus":0,"Continent":"K45","ID":2629,"Name":"ADEN","PlayerID":698588535,"Points":6531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2629","ServerKey":"pl181","X":561,"Y":438},{"Bonus":0,"Continent":"K44","ID":2630,"Name":"0102 dzik","PlayerID":3909522,"Points":10181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2630","ServerKey":"pl181","X":468,"Y":446},{"Bonus":0,"Continent":"K55","ID":2631,"Name":"Jaaa","PlayerID":698635863,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2631","ServerKey":"pl181","X":574,"Y":547},{"Bonus":0,"Continent":"K44","ID":2632,"Name":"0106 bbbb kojotqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":9739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2632","ServerKey":"pl181","X":470,"Y":439},{"Bonus":0,"Continent":"K55","ID":2633,"Name":"WioskaD","PlayerID":8369778,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2633","ServerKey":"pl181","X":513,"Y":581},{"Bonus":0,"Continent":"K45","ID":2634,"Name":".:033:. Chillout","PlayerID":848934935,"Points":5516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2634","ServerKey":"pl181","X":502,"Y":411},{"Bonus":0,"Continent":"K44","ID":2635,"Name":"K44 011","PlayerID":698290577,"Points":4005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2635","ServerKey":"pl181","X":433,"Y":484},{"Bonus":2,"Continent":"K55","ID":2636,"Name":"A nie pamiętasz jak?","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2636","ServerKey":"pl181","X":502,"Y":517},{"Bonus":0,"Continent":"K54","ID":2637,"Name":"Odepta","PlayerID":699443920,"Points":6259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2637","ServerKey":"pl181","X":438,"Y":557},{"Bonus":0,"Continent":"K54","ID":2638,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2638","ServerKey":"pl181","X":435,"Y":523},{"Bonus":0,"Continent":"K54","ID":2639,"Name":"keepo","PlayerID":848967710,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2639","ServerKey":"pl181","X":488,"Y":529},{"Bonus":0,"Continent":"K54","ID":2640,"Name":"Winter is coming","PlayerID":698971484,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2640","ServerKey":"pl181","X":447,"Y":538},{"Bonus":0,"Continent":"K55","ID":2641,"Name":"54k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2641","ServerKey":"pl181","X":528,"Y":535},{"Bonus":0,"Continent":"K44","ID":2642,"Name":"009741","PlayerID":3909522,"Points":8652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2642","ServerKey":"pl181","X":464,"Y":442},{"Bonus":0,"Continent":"K54","ID":2643,"Name":"086","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2643","ServerKey":"pl181","X":425,"Y":514},{"Bonus":0,"Continent":"K54","ID":2644,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2644","ServerKey":"pl181","X":428,"Y":505},{"Bonus":0,"Continent":"K55","ID":2645,"Name":"0028","PlayerID":699432672,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2645","ServerKey":"pl181","X":548,"Y":527},{"Bonus":0,"Continent":"K45","ID":2646,"Name":"077.","PlayerID":849094609,"Points":10364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2646","ServerKey":"pl181","X":569,"Y":462},{"Bonus":0,"Continent":"K55","ID":2647,"Name":"[074]","PlayerID":8000875,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2647","ServerKey":"pl181","X":558,"Y":546},{"Bonus":0,"Continent":"K45","ID":2648,"Name":"Wioska Klemens Zdobywca 69","PlayerID":848986287,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2648","ServerKey":"pl181","X":549,"Y":432},{"Bonus":0,"Continent":"K45","ID":2649,"Name":"1. Baza","PlayerID":8444356,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2649","ServerKey":"pl181","X":547,"Y":437},{"Bonus":6,"Continent":"K54","ID":2650,"Name":"Traptosteron!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2650","ServerKey":"pl181","X":494,"Y":504},{"Bonus":0,"Continent":"K45","ID":2651,"Name":"049","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2651","ServerKey":"pl181","X":540,"Y":424},{"Bonus":0,"Continent":"K45","ID":2652,"Name":"01 | Wiocha","PlayerID":849002091,"Points":11383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2652","ServerKey":"pl181","X":539,"Y":437},{"Bonus":0,"Continent":"K45","ID":2653,"Name":"196","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2653","ServerKey":"pl181","X":548,"Y":428},{"Bonus":0,"Continent":"K55","ID":2654,"Name":"026. PƂanetnik","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2654","ServerKey":"pl181","X":510,"Y":578},{"Bonus":0,"Continent":"K45","ID":2655,"Name":"Minas Anor 025","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2655","ServerKey":"pl181","X":574,"Y":463},{"Bonus":0,"Continent":"K44","ID":2656,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2656","ServerKey":"pl181","X":474,"Y":424},{"Bonus":0,"Continent":"K45","ID":2657,"Name":"K45 - 012","PlayerID":6510480,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2657","ServerKey":"pl181","X":559,"Y":467},{"Bonus":0,"Continent":"K44","ID":2658,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2658","ServerKey":"pl181","X":494,"Y":424},{"Bonus":0,"Continent":"K45","ID":2659,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2659","ServerKey":"pl181","X":538,"Y":493},{"Bonus":0,"Continent":"K45","ID":2660,"Name":"Osada","PlayerID":699098531,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2660","ServerKey":"pl181","X":500,"Y":456},{"Bonus":0,"Continent":"K45","ID":2661,"Name":"022","PlayerID":849031818,"Points":6072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2661","ServerKey":"pl181","X":548,"Y":477},{"Bonus":0,"Continent":"K45","ID":2662,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2662","ServerKey":"pl181","X":501,"Y":453},{"Bonus":2,"Continent":"K55","ID":2663,"Name":"048 |","PlayerID":8000875,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2663","ServerKey":"pl181","X":550,"Y":548},{"Bonus":0,"Continent":"K45","ID":2664,"Name":"Szlachcic","PlayerID":699098531,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2664","ServerKey":"pl181","X":500,"Y":457},{"Bonus":0,"Continent":"K54","ID":2665,"Name":"#0023 Velo","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2665","ServerKey":"pl181","X":486,"Y":558},{"Bonus":0,"Continent":"K44","ID":2666,"Name":"B025","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2666","ServerKey":"pl181","X":496,"Y":453},{"Bonus":0,"Continent":"K44","ID":2667,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2667","ServerKey":"pl181","X":485,"Y":489},{"Bonus":0,"Continent":"K44","ID":2668,"Name":"098 Sierra Vista","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2668","ServerKey":"pl181","X":480,"Y":459},{"Bonus":0,"Continent":"K44","ID":2669,"Name":"A017","PlayerID":699299123,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2669","ServerKey":"pl181","X":491,"Y":411},{"Bonus":0,"Continent":"K53","ID":2670,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2670","ServerKey":"pl181","X":379,"Y":521},{"Bonus":0,"Continent":"K55","ID":2671,"Name":"Szlachcic 002","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2671","ServerKey":"pl181","X":566,"Y":524},{"Bonus":0,"Continent":"K44","ID":2672,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2672","ServerKey":"pl181","X":417,"Y":493},{"Bonus":0,"Continent":"K55","ID":2673,"Name":"szla","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2673","ServerKey":"pl181","X":564,"Y":529},{"Bonus":0,"Continent":"K55","ID":2674,"Name":"Szlachcic 040","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2674","ServerKey":"pl181","X":560,"Y":519},{"Bonus":0,"Continent":"K45","ID":2675,"Name":"[097]","PlayerID":8000875,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2675","ServerKey":"pl181","X":550,"Y":497},{"Bonus":0,"Continent":"K45","ID":2676,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":4639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2676","ServerKey":"pl181","X":515,"Y":440},{"Bonus":0,"Continent":"K54","ID":2677,"Name":"*Ateny_43","PlayerID":2585846,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2677","ServerKey":"pl181","X":468,"Y":532},{"Bonus":0,"Continent":"K54","ID":2679,"Name":"KIELBA 013","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2679","ServerKey":"pl181","X":446,"Y":573},{"Bonus":0,"Continent":"K45","ID":2680,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2680","ServerKey":"pl181","X":545,"Y":479},{"Bonus":0,"Continent":"K54","ID":2681,"Name":"Fajna 071","PlayerID":698704189,"Points":6095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2681","ServerKey":"pl181","X":459,"Y":562},{"Bonus":0,"Continent":"K44","ID":2682,"Name":"Suppi","PlayerID":699856962,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2682","ServerKey":"pl181","X":428,"Y":447},{"Bonus":0,"Continent":"K44","ID":2683,"Name":"Suppi","PlayerID":699856962,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2683","ServerKey":"pl181","X":427,"Y":449},{"Bonus":9,"Continent":"K55","ID":2684,"Name":"039 |","PlayerID":8000875,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2684","ServerKey":"pl181","X":564,"Y":540},{"Bonus":0,"Continent":"K45","ID":2685,"Name":"-1- FOB UP","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2685","ServerKey":"pl181","X":508,"Y":476},{"Bonus":0,"Continent":"K55","ID":2686,"Name":"CALL 1042","PlayerID":699784536,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2686","ServerKey":"pl181","X":549,"Y":545},{"Bonus":0,"Continent":"K45","ID":2687,"Name":"099.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2687","ServerKey":"pl181","X":506,"Y":480},{"Bonus":0,"Continent":"K54","ID":2688,"Name":"F017","PlayerID":699189792,"Points":9195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2688","ServerKey":"pl181","X":496,"Y":534},{"Bonus":0,"Continent":"K45","ID":2689,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2689","ServerKey":"pl181","X":518,"Y":447},{"Bonus":0,"Continent":"K45","ID":2690,"Name":"xxx","PlayerID":698239813,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2690","ServerKey":"pl181","X":509,"Y":449},{"Bonus":0,"Continent":"K45","ID":2691,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2691","ServerKey":"pl181","X":582,"Y":499},{"Bonus":0,"Continent":"K45","ID":2692,"Name":".:079:. Takmahal","PlayerID":848934935,"Points":7685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2692","ServerKey":"pl181","X":524,"Y":439},{"Bonus":0,"Continent":"K45","ID":2693,"Name":"zapodlina","PlayerID":849027712,"Points":6370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2693","ServerKey":"pl181","X":569,"Y":416},{"Bonus":0,"Continent":"K54","ID":2694,"Name":"#0093 Leniuszki","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2694","ServerKey":"pl181","X":483,"Y":550},{"Bonus":0,"Continent":"K55","ID":2695,"Name":"Wioska 419","PlayerID":477415,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2695","ServerKey":"pl181","X":565,"Y":518},{"Bonus":2,"Continent":"K55","ID":2696,"Name":"- 305 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2696","ServerKey":"pl181","X":529,"Y":583},{"Bonus":0,"Continent":"K54","ID":2697,"Name":"30004","PlayerID":848915531,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2697","ServerKey":"pl181","X":486,"Y":543},{"Bonus":0,"Continent":"K54","ID":2698,"Name":"F014","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2698","ServerKey":"pl181","X":488,"Y":537},{"Bonus":0,"Continent":"K45","ID":2699,"Name":"5. Bieda","PlayerID":8444356,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2699","ServerKey":"pl181","X":548,"Y":435},{"Bonus":0,"Continent":"K54","ID":2700,"Name":"~061.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2700","ServerKey":"pl181","X":480,"Y":548},{"Bonus":0,"Continent":"K54","ID":2701,"Name":"#0085 Kolonia Piszczac","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2701","ServerKey":"pl181","X":476,"Y":554},{"Bonus":0,"Continent":"K45","ID":2702,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2702","ServerKey":"pl181","X":556,"Y":473},{"Bonus":0,"Continent":"K54","ID":2703,"Name":"CHW#031r","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2703","ServerKey":"pl181","X":481,"Y":540},{"Bonus":0,"Continent":"K55","ID":2704,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2704","ServerKey":"pl181","X":579,"Y":502},{"Bonus":0,"Continent":"K54","ID":2705,"Name":"#0004 Warszawka","PlayerID":9272054,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2705","ServerKey":"pl181","X":498,"Y":553},{"Bonus":0,"Continent":"K44","ID":2706,"Name":"Brat447","PlayerID":699262350,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2706","ServerKey":"pl181","X":446,"Y":489},{"Bonus":0,"Continent":"K54","ID":2707,"Name":"#0020 Kaƛka Koniecko","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2707","ServerKey":"pl181","X":494,"Y":563},{"Bonus":0,"Continent":"K44","ID":2708,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2708","ServerKey":"pl181","X":490,"Y":485},{"Bonus":0,"Continent":"K54","ID":2709,"Name":"#0071 Mateusz P","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2709","ServerKey":"pl181","X":490,"Y":546},{"Bonus":0,"Continent":"K54","ID":2710,"Name":"070. ALFI","PlayerID":8539216,"Points":821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2710","ServerKey":"pl181","X":475,"Y":563},{"Bonus":0,"Continent":"K44","ID":2711,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2711","ServerKey":"pl181","X":480,"Y":446},{"Bonus":0,"Continent":"K54","ID":2712,"Name":"*Ateny_42","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2712","ServerKey":"pl181","X":469,"Y":533},{"Bonus":0,"Continent":"K55","ID":2713,"Name":"Mzm29","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2713","ServerKey":"pl181","X":555,"Y":528},{"Bonus":0,"Continent":"K54","ID":2714,"Name":"#0115 Doniczka","PlayerID":9272054,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2714","ServerKey":"pl181","X":479,"Y":551},{"Bonus":0,"Continent":"K35","ID":2715,"Name":"XXXX","PlayerID":849054951,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2715","ServerKey":"pl181","X":500,"Y":381},{"Bonus":0,"Continent":"K55","ID":2716,"Name":"019. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2716","ServerKey":"pl181","X":572,"Y":527},{"Bonus":0,"Continent":"K45","ID":2717,"Name":"001 Reaction","PlayerID":849031818,"Points":10377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2717","ServerKey":"pl181","X":563,"Y":474},{"Bonus":0,"Continent":"K55","ID":2718,"Name":"[082]","PlayerID":8000875,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2718","ServerKey":"pl181","X":541,"Y":503},{"Bonus":0,"Continent":"K45","ID":2719,"Name":"008 Hubal","PlayerID":849031818,"Points":7703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2719","ServerKey":"pl181","X":562,"Y":477},{"Bonus":5,"Continent":"K54","ID":2720,"Name":"#065","PlayerID":699605333,"Points":8660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2720","ServerKey":"pl181","X":472,"Y":586},{"Bonus":0,"Continent":"K45","ID":2721,"Name":"002","PlayerID":849070464,"Points":8290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2721","ServerKey":"pl181","X":568,"Y":480},{"Bonus":0,"Continent":"K44","ID":2722,"Name":"Osada","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2722","ServerKey":"pl181","X":499,"Y":446},{"Bonus":0,"Continent":"K55","ID":2723,"Name":"035. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2723","ServerKey":"pl181","X":571,"Y":513},{"Bonus":0,"Continent":"K55","ID":2724,"Name":"[120]","PlayerID":8000875,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2724","ServerKey":"pl181","X":551,"Y":507},{"Bonus":0,"Continent":"K44","ID":2725,"Name":"076 Lubbock","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2725","ServerKey":"pl181","X":456,"Y":455},{"Bonus":0,"Continent":"K44","ID":2726,"Name":"B051","PlayerID":699299123,"Points":9257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2726","ServerKey":"pl181","X":476,"Y":467},{"Bonus":0,"Continent":"K53","ID":2727,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2727","ServerKey":"pl181","X":385,"Y":534},{"Bonus":0,"Continent":"K35","ID":2728,"Name":"0001","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2728","ServerKey":"pl181","X":559,"Y":392},{"Bonus":0,"Continent":"K44","ID":2729,"Name":"030 Chippewa Falls","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2729","ServerKey":"pl181","X":446,"Y":460},{"Bonus":0,"Continent":"K55","ID":2730,"Name":"[136]","PlayerID":8000875,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2730","ServerKey":"pl181","X":561,"Y":536},{"Bonus":0,"Continent":"K43","ID":2731,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2731","ServerKey":"pl181","X":397,"Y":465},{"Bonus":0,"Continent":"K44","ID":2732,"Name":"128.","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2732","ServerKey":"pl181","X":491,"Y":487},{"Bonus":0,"Continent":"K55","ID":2733,"Name":"CALL 985","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2733","ServerKey":"pl181","X":545,"Y":570},{"Bonus":0,"Continent":"K44","ID":2734,"Name":"A012","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2734","ServerKey":"pl181","X":495,"Y":417},{"Bonus":0,"Continent":"K44","ID":2735,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2735","ServerKey":"pl181","X":416,"Y":483},{"Bonus":0,"Continent":"K54","ID":2736,"Name":"KARTAGINA .10","PlayerID":8438707,"Points":8157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2736","ServerKey":"pl181","X":459,"Y":576},{"Bonus":4,"Continent":"K45","ID":2737,"Name":"xxx","PlayerID":698239813,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2737","ServerKey":"pl181","X":510,"Y":427},{"Bonus":0,"Continent":"K44","ID":2738,"Name":"038 Lexinton","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2738","ServerKey":"pl181","X":448,"Y":465},{"Bonus":0,"Continent":"K45","ID":2739,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2739","ServerKey":"pl181","X":517,"Y":486},{"Bonus":0,"Continent":"K45","ID":2740,"Name":"Szlachcic","PlayerID":699098531,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2740","ServerKey":"pl181","X":510,"Y":471},{"Bonus":0,"Continent":"K44","ID":2741,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2741","ServerKey":"pl181","X":441,"Y":468},{"Bonus":0,"Continent":"K55","ID":2742,"Name":"PuƂapka na motyle","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2742","ServerKey":"pl181","X":516,"Y":507},{"Bonus":0,"Continent":"K55","ID":2743,"Name":"Jaaa","PlayerID":698635863,"Points":7770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2743","ServerKey":"pl181","X":578,"Y":533},{"Bonus":0,"Continent":"K45","ID":2744,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2744","ServerKey":"pl181","X":522,"Y":464},{"Bonus":0,"Continent":"K45","ID":2745,"Name":"SƂoneczna WƂócznia","PlayerID":8155296,"Points":4659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2745","ServerKey":"pl181","X":540,"Y":465},{"Bonus":0,"Continent":"K54","ID":2746,"Name":"002","PlayerID":849092723,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2746","ServerKey":"pl181","X":482,"Y":507},{"Bonus":0,"Continent":"K54","ID":2747,"Name":"008. Marzyciel Shrek","PlayerID":698290577,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2747","ServerKey":"pl181","X":456,"Y":500},{"Bonus":0,"Continent":"K45","ID":2748,"Name":"Joms 013","PlayerID":699756210,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2748","ServerKey":"pl181","X":527,"Y":419},{"Bonus":0,"Continent":"K45","ID":2749,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2749","ServerKey":"pl181","X":559,"Y":497},{"Bonus":0,"Continent":"K54","ID":2750,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2750","ServerKey":"pl181","X":493,"Y":500},{"Bonus":0,"Continent":"K46","ID":2751,"Name":"003","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2751","ServerKey":"pl181","X":606,"Y":496},{"Bonus":0,"Continent":"K44","ID":2752,"Name":"083 Denver","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2752","ServerKey":"pl181","X":479,"Y":468},{"Bonus":0,"Continent":"K55","ID":2753,"Name":"Mzm40","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2753","ServerKey":"pl181","X":565,"Y":524},{"Bonus":0,"Continent":"K44","ID":2754,"Name":"B029","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2754","ServerKey":"pl181","X":479,"Y":455},{"Bonus":0,"Continent":"K55","ID":2755,"Name":"07*","PlayerID":699664910,"Points":9531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2755","ServerKey":"pl181","X":568,"Y":532},{"Bonus":0,"Continent":"K44","ID":2756,"Name":"00977","PlayerID":3909522,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2756","ServerKey":"pl181","X":461,"Y":434},{"Bonus":0,"Continent":"K35","ID":2757,"Name":"Taran","PlayerID":699170684,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2757","ServerKey":"pl181","X":544,"Y":388},{"Bonus":0,"Continent":"K44","ID":2758,"Name":"0063 Madrid","PlayerID":3909522,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2758","ServerKey":"pl181","X":449,"Y":427},{"Bonus":0,"Continent":"K45","ID":2759,"Name":".:074:. Takmahal","PlayerID":848934935,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2759","ServerKey":"pl181","X":526,"Y":444},{"Bonus":0,"Continent":"K44","ID":2760,"Name":"0063 12qqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2760","ServerKey":"pl181","X":448,"Y":429},{"Bonus":3,"Continent":"K54","ID":2761,"Name":"Osada koczownikĂłw","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2761","ServerKey":"pl181","X":432,"Y":507},{"Bonus":0,"Continent":"K44","ID":2762,"Name":"0057","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2762","ServerKey":"pl181","X":445,"Y":424},{"Bonus":0,"Continent":"K35","ID":2763,"Name":"075","PlayerID":849063849,"Points":9576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2763","ServerKey":"pl181","X":569,"Y":396},{"Bonus":0,"Continent":"K45","ID":2764,"Name":"054","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2764","ServerKey":"pl181","X":572,"Y":404},{"Bonus":0,"Continent":"K45","ID":2765,"Name":"049.","PlayerID":849094609,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2765","ServerKey":"pl181","X":546,"Y":465},{"Bonus":0,"Continent":"K44","ID":2766,"Name":"0063 b11","PlayerID":3909522,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2766","ServerKey":"pl181","X":455,"Y":430},{"Bonus":0,"Continent":"K55","ID":2768,"Name":"- 221 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2768","ServerKey":"pl181","X":549,"Y":575},{"Bonus":0,"Continent":"K45","ID":2769,"Name":"078.","PlayerID":849094609,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2769","ServerKey":"pl181","X":571,"Y":462},{"Bonus":0,"Continent":"K55","ID":2770,"Name":"013 |","PlayerID":8000875,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2770","ServerKey":"pl181","X":561,"Y":562},{"Bonus":0,"Continent":"K44","ID":2771,"Name":"0036","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2771","ServerKey":"pl181","X":461,"Y":468},{"Bonus":0,"Continent":"K45","ID":2772,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2772","ServerKey":"pl181","X":578,"Y":486},{"Bonus":0,"Continent":"K55","ID":2773,"Name":"Dioda v3","PlayerID":8000875,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2773","ServerKey":"pl181","X":543,"Y":524},{"Bonus":0,"Continent":"K45","ID":2774,"Name":"009","PlayerID":849070464,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2774","ServerKey":"pl181","X":566,"Y":483},{"Bonus":0,"Continent":"K55","ID":2775,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2775","ServerKey":"pl181","X":541,"Y":528},{"Bonus":0,"Continent":"K45","ID":2776,"Name":"[116] North16","PlayerID":848985692,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2776","ServerKey":"pl181","X":574,"Y":471},{"Bonus":0,"Continent":"K55","ID":2777,"Name":"! Wioska 436","PlayerID":477415,"Points":8520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2777","ServerKey":"pl181","X":548,"Y":528},{"Bonus":0,"Continent":"K54","ID":2778,"Name":"Front_13","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2778","ServerKey":"pl181","X":457,"Y":524},{"Bonus":0,"Continent":"K54","ID":2779,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2779","ServerKey":"pl181","X":460,"Y":517},{"Bonus":0,"Continent":"K54","ID":2780,"Name":"0164","PlayerID":698659980,"Points":9336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2780","ServerKey":"pl181","X":463,"Y":549},{"Bonus":0,"Continent":"K54","ID":2781,"Name":"SsSs","PlayerID":1536625,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2781","ServerKey":"pl181","X":460,"Y":504},{"Bonus":0,"Continent":"K45","ID":2782,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2782","ServerKey":"pl181","X":518,"Y":428},{"Bonus":0,"Continent":"K54","ID":2783,"Name":"Brat447","PlayerID":699262350,"Points":11302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2783","ServerKey":"pl181","X":462,"Y":505},{"Bonus":0,"Continent":"K54","ID":2784,"Name":"Brat447","PlayerID":699262350,"Points":8649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2784","ServerKey":"pl181","X":461,"Y":506},{"Bonus":0,"Continent":"K55","ID":2785,"Name":"CALL 957","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2785","ServerKey":"pl181","X":550,"Y":549},{"Bonus":0,"Continent":"K64","ID":2786,"Name":"NIERAJ10","PlayerID":699859013,"Points":4089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2786","ServerKey":"pl181","X":444,"Y":610},{"Bonus":0,"Continent":"K44","ID":2787,"Name":"P Konfederacja +","PlayerID":848915730,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2787","ServerKey":"pl181","X":471,"Y":439},{"Bonus":0,"Continent":"K45","ID":2788,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2788","ServerKey":"pl181","X":501,"Y":454},{"Bonus":0,"Continent":"K44","ID":2789,"Name":"P Konfederacja","PlayerID":848915730,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2789","ServerKey":"pl181","X":462,"Y":444},{"Bonus":1,"Continent":"K45","ID":2790,"Name":"079 Orzech arachidowy","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2790","ServerKey":"pl181","X":551,"Y":471},{"Bonus":0,"Continent":"K64","ID":2791,"Name":"0327","PlayerID":698659980,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2791","ServerKey":"pl181","X":446,"Y":609},{"Bonus":0,"Continent":"K44","ID":2792,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2792","ServerKey":"pl181","X":420,"Y":491},{"Bonus":0,"Continent":"K45","ID":2793,"Name":"Wioska barbarzyƄska","PlayerID":8155296,"Points":4188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2793","ServerKey":"pl181","X":539,"Y":474},{"Bonus":0,"Continent":"K44","ID":2794,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2794","ServerKey":"pl181","X":497,"Y":417},{"Bonus":0,"Continent":"K44","ID":2795,"Name":"K44 025","PlayerID":698290577,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2795","ServerKey":"pl181","X":425,"Y":496},{"Bonus":0,"Continent":"K44","ID":2796,"Name":"PRO8L3M","PlayerID":7491093,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2796","ServerKey":"pl181","X":426,"Y":497},{"Bonus":0,"Continent":"K54","ID":2797,"Name":"obĂłz Pracy","PlayerID":698290577,"Points":7348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2797","ServerKey":"pl181","X":422,"Y":505},{"Bonus":0,"Continent":"K54","ID":2798,"Name":"Ateny_72","PlayerID":2585846,"Points":3079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2798","ServerKey":"pl181","X":472,"Y":522},{"Bonus":0,"Continent":"K44","ID":2799,"Name":"SsSs","PlayerID":1536625,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2799","ServerKey":"pl181","X":421,"Y":493},{"Bonus":0,"Continent":"K44","ID":2800,"Name":"018","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2800","ServerKey":"pl181","X":432,"Y":492},{"Bonus":0,"Continent":"K54","ID":2801,"Name":"NOT?","PlayerID":9236866,"Points":3558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2801","ServerKey":"pl181","X":434,"Y":537},{"Bonus":0,"Continent":"K45","ID":2802,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":9302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2802","ServerKey":"pl181","X":567,"Y":483},{"Bonus":0,"Continent":"K45","ID":2803,"Name":"013 Esiok f","PlayerID":8155296,"Points":10179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2803","ServerKey":"pl181","X":535,"Y":464},{"Bonus":0,"Continent":"K44","ID":2804,"Name":"0063 b5 mehehehe","PlayerID":3909522,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2804","ServerKey":"pl181","X":450,"Y":434},{"Bonus":0,"Continent":"K44","ID":2805,"Name":"0063 13","PlayerID":3909522,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2805","ServerKey":"pl181","X":452,"Y":428},{"Bonus":0,"Continent":"K45","ID":2806,"Name":"C005","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2806","ServerKey":"pl181","X":523,"Y":457},{"Bonus":0,"Continent":"K55","ID":2807,"Name":"[058] Kappa","PlayerID":848985692,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2807","ServerKey":"pl181","X":526,"Y":504},{"Bonus":0,"Continent":"K55","ID":2808,"Name":"Wioska 415","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2808","ServerKey":"pl181","X":570,"Y":506},{"Bonus":0,"Continent":"K44","ID":2809,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2809","ServerKey":"pl181","X":469,"Y":452},{"Bonus":0,"Continent":"K45","ID":2810,"Name":"-[006]- Czo Oju","PlayerID":849092827,"Points":7088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2810","ServerKey":"pl181","X":553,"Y":483},{"Bonus":7,"Continent":"K44","ID":2811,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2811","ServerKey":"pl181","X":483,"Y":425},{"Bonus":0,"Continent":"K44","ID":2812,"Name":"195 Santiago de Surco","PlayerID":1497168,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2812","ServerKey":"pl181","X":467,"Y":458},{"Bonus":0,"Continent":"K45","ID":2813,"Name":"Wioska_09","PlayerID":8674163,"Points":5490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2813","ServerKey":"pl181","X":556,"Y":447},{"Bonus":0,"Continent":"K55","ID":2814,"Name":"CALL 949","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2814","ServerKey":"pl181","X":547,"Y":556},{"Bonus":0,"Continent":"K45","ID":2815,"Name":"IQ154","PlayerID":699368887,"Points":6940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2815","ServerKey":"pl181","X":554,"Y":452},{"Bonus":0,"Continent":"K54","ID":2816,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2816","ServerKey":"pl181","X":462,"Y":517},{"Bonus":0,"Continent":"K45","ID":2817,"Name":"013","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2817","ServerKey":"pl181","X":541,"Y":401},{"Bonus":0,"Continent":"K45","ID":2818,"Name":".achim.","PlayerID":6936607,"Points":10801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2818","ServerKey":"pl181","X":539,"Y":411},{"Bonus":0,"Continent":"K55","ID":2819,"Name":"- 319 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2819","ServerKey":"pl181","X":525,"Y":582},{"Bonus":0,"Continent":"K43","ID":2820,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2820","ServerKey":"pl181","X":389,"Y":470},{"Bonus":0,"Continent":"K55","ID":2821,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2821","ServerKey":"pl181","X":515,"Y":564},{"Bonus":0,"Continent":"K44","ID":2822,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2822","ServerKey":"pl181","X":419,"Y":460},{"Bonus":0,"Continent":"K44","ID":2823,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2823","ServerKey":"pl181","X":423,"Y":464},{"Bonus":0,"Continent":"K45","ID":2824,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2824","ServerKey":"pl181","X":580,"Y":483},{"Bonus":0,"Continent":"K54","ID":2825,"Name":"F026","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2825","ServerKey":"pl181","X":496,"Y":543},{"Bonus":0,"Continent":"K54","ID":2826,"Name":"003","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2826","ServerKey":"pl181","X":461,"Y":577},{"Bonus":0,"Continent":"K54","ID":2827,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2827","ServerKey":"pl181","X":474,"Y":510},{"Bonus":0,"Continent":"K54","ID":2828,"Name":"0170","PlayerID":698659980,"Points":10091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2828","ServerKey":"pl181","X":470,"Y":550},{"Bonus":0,"Continent":"K55","ID":2829,"Name":"B006","PlayerID":8138506,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2829","ServerKey":"pl181","X":555,"Y":501},{"Bonus":0,"Continent":"K54","ID":2830,"Name":"003 - Who next?","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2830","ServerKey":"pl181","X":426,"Y":573},{"Bonus":0,"Continent":"K44","ID":2831,"Name":"Mesaria","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2831","ServerKey":"pl181","X":437,"Y":455},{"Bonus":0,"Continent":"K55","ID":2832,"Name":"Merhet","PlayerID":698215322,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2832","ServerKey":"pl181","X":521,"Y":585},{"Bonus":0,"Continent":"K54","ID":2834,"Name":"F084","PlayerID":699189792,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2834","ServerKey":"pl181","X":484,"Y":523},{"Bonus":0,"Continent":"K55","ID":2835,"Name":"044. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2835","ServerKey":"pl181","X":567,"Y":511},{"Bonus":0,"Continent":"K44","ID":2836,"Name":"+44 61 Ferques","PlayerID":698361257,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2836","ServerKey":"pl181","X":412,"Y":464},{"Bonus":0,"Continent":"K45","ID":2837,"Name":"26.","PlayerID":698702991,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2837","ServerKey":"pl181","X":565,"Y":482},{"Bonus":0,"Continent":"K45","ID":2838,"Name":"003","PlayerID":849031818,"Points":7361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2838","ServerKey":"pl181","X":566,"Y":480},{"Bonus":0,"Continent":"K55","ID":2839,"Name":"Szlachcic 043","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2839","ServerKey":"pl181","X":565,"Y":526},{"Bonus":0,"Continent":"K45","ID":2840,"Name":"Szlachcic","PlayerID":698867446,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2840","ServerKey":"pl181","X":556,"Y":474},{"Bonus":0,"Continent":"K55","ID":2841,"Name":"[137]","PlayerID":8000875,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2841","ServerKey":"pl181","X":566,"Y":538},{"Bonus":0,"Continent":"K55","ID":2842,"Name":"10021","PlayerID":848915531,"Points":5765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2842","ServerKey":"pl181","X":534,"Y":559},{"Bonus":0,"Continent":"K44","ID":2843,"Name":"Osada","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2843","ServerKey":"pl181","X":498,"Y":449},{"Bonus":0,"Continent":"K55","ID":2844,"Name":"F011","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2844","ServerKey":"pl181","X":500,"Y":529},{"Bonus":0,"Continent":"K43","ID":2845,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2845","ServerKey":"pl181","X":399,"Y":472},{"Bonus":0,"Continent":"K54","ID":2846,"Name":"Mniejsze zƂo 0059","PlayerID":699794765,"Points":6076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2846","ServerKey":"pl181","X":417,"Y":504},{"Bonus":0,"Continent":"K44","ID":2847,"Name":"Szlachcic","PlayerID":699098531,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2847","ServerKey":"pl181","X":495,"Y":465},{"Bonus":0,"Continent":"K55","ID":2848,"Name":"10012","PlayerID":848915531,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2848","ServerKey":"pl181","X":533,"Y":561},{"Bonus":0,"Continent":"K44","ID":2849,"Name":"AƁA NIE BIJ BOLI","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2849","ServerKey":"pl181","X":493,"Y":469},{"Bonus":0,"Continent":"K44","ID":2850,"Name":"Szlachcic","PlayerID":699098531,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2850","ServerKey":"pl181","X":492,"Y":475},{"Bonus":0,"Continent":"K54","ID":2851,"Name":"029 - Katowice","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2851","ServerKey":"pl181","X":406,"Y":579},{"Bonus":0,"Continent":"K44","ID":2852,"Name":"?+44 85 Wirwignes","PlayerID":698361257,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2852","ServerKey":"pl181","X":459,"Y":482},{"Bonus":0,"Continent":"K45","ID":2853,"Name":"228 Queenstown","PlayerID":1497168,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2853","ServerKey":"pl181","X":535,"Y":442},{"Bonus":5,"Continent":"K55","ID":2855,"Name":"003 Osada koczownikĂłw","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2855","ServerKey":"pl181","X":573,"Y":549},{"Bonus":1,"Continent":"K44","ID":2857,"Name":"Osada","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2857","ServerKey":"pl181","X":496,"Y":447},{"Bonus":0,"Continent":"K45","ID":2858,"Name":"Szlachcic","PlayerID":699098531,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2858","ServerKey":"pl181","X":509,"Y":480},{"Bonus":0,"Continent":"K45","ID":2859,"Name":"220 Townsville","PlayerID":1497168,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2859","ServerKey":"pl181","X":536,"Y":441},{"Bonus":0,"Continent":"K55","ID":2860,"Name":"Winter is coming","PlayerID":699364813,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2860","ServerKey":"pl181","X":503,"Y":585},{"Bonus":0,"Continent":"K55","ID":2861,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2861","ServerKey":"pl181","X":514,"Y":559},{"Bonus":0,"Continent":"K55","ID":2862,"Name":"025. Oborot","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2862","ServerKey":"pl181","X":505,"Y":579},{"Bonus":0,"Continent":"K45","ID":2863,"Name":"Wioska 506","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2863","ServerKey":"pl181","X":575,"Y":456},{"Bonus":0,"Continent":"K55","ID":2864,"Name":"Minas Ithil","PlayerID":849091897,"Points":9386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2864","ServerKey":"pl181","X":506,"Y":515},{"Bonus":0,"Continent":"K54","ID":2865,"Name":"(023)","PlayerID":699846892,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2865","ServerKey":"pl181","X":422,"Y":544},{"Bonus":0,"Continent":"K55","ID":2866,"Name":"- Alternatywa","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2866","ServerKey":"pl181","X":507,"Y":514},{"Bonus":0,"Continent":"K44","ID":2867,"Name":"+44 73 Sorrus","PlayerID":698361257,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2867","ServerKey":"pl181","X":435,"Y":479},{"Bonus":0,"Continent":"K45","ID":2868,"Name":"BBB","PlayerID":1006847,"Points":5982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2868","ServerKey":"pl181","X":563,"Y":437},{"Bonus":0,"Continent":"K54","ID":2869,"Name":"#0097 DobryƄ DuĆŒy","PlayerID":699856962,"Points":9087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2869","ServerKey":"pl181","X":473,"Y":555},{"Bonus":0,"Continent":"K54","ID":2870,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2870","ServerKey":"pl181","X":451,"Y":560},{"Bonus":9,"Continent":"K44","ID":2871,"Name":"088 Cincinnati","PlayerID":1497168,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2871","ServerKey":"pl181","X":476,"Y":457},{"Bonus":0,"Continent":"K54","ID":2872,"Name":"008","PlayerID":699510259,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2872","ServerKey":"pl181","X":415,"Y":502},{"Bonus":0,"Continent":"K45","ID":2873,"Name":".:064:. Chillout","PlayerID":848934935,"Points":5466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2873","ServerKey":"pl181","X":510,"Y":422},{"Bonus":0,"Continent":"K54","ID":2874,"Name":"104","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2874","ServerKey":"pl181","X":412,"Y":510},{"Bonus":0,"Continent":"K54","ID":2875,"Name":"065","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2875","ServerKey":"pl181","X":423,"Y":508},{"Bonus":0,"Continent":"K54","ID":2876,"Name":"011","PlayerID":2585846,"Points":4164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2876","ServerKey":"pl181","X":464,"Y":533},{"Bonus":0,"Continent":"K54","ID":2877,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2877","ServerKey":"pl181","X":425,"Y":503},{"Bonus":0,"Continent":"K44","ID":2878,"Name":"Szlachcic","PlayerID":699098531,"Points":8073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2878","ServerKey":"pl181","X":498,"Y":465},{"Bonus":0,"Continent":"K55","ID":2879,"Name":"[103]","PlayerID":8000875,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2879","ServerKey":"pl181","X":552,"Y":503},{"Bonus":0,"Continent":"K54","ID":2880,"Name":"082","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2880","ServerKey":"pl181","X":415,"Y":514},{"Bonus":0,"Continent":"K54","ID":2881,"Name":"Suppi","PlayerID":699856962,"Points":9636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2881","ServerKey":"pl181","X":442,"Y":525},{"Bonus":0,"Continent":"K54","ID":2882,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2882","ServerKey":"pl181","X":424,"Y":528},{"Bonus":0,"Continent":"K44","ID":2883,"Name":"Monetki ???","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2883","ServerKey":"pl181","X":485,"Y":416},{"Bonus":0,"Continent":"K45","ID":2884,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2884","ServerKey":"pl181","X":523,"Y":468},{"Bonus":0,"Continent":"K35","ID":2885,"Name":"044","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2885","ServerKey":"pl181","X":553,"Y":398},{"Bonus":0,"Continent":"K55","ID":2886,"Name":"- 307 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2886","ServerKey":"pl181","X":524,"Y":583},{"Bonus":0,"Continent":"K45","ID":2887,"Name":"South K45","PlayerID":699146580,"Points":9297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2887","ServerKey":"pl181","X":569,"Y":409},{"Bonus":0,"Continent":"K44","ID":2888,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2888","ServerKey":"pl181","X":451,"Y":465},{"Bonus":0,"Continent":"K45","ID":2889,"Name":"B015","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2889","ServerKey":"pl181","X":567,"Y":404},{"Bonus":0,"Continent":"K45","ID":2890,"Name":"wioska ofensywna","PlayerID":848986287,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2890","ServerKey":"pl181","X":549,"Y":430},{"Bonus":0,"Continent":"K45","ID":2891,"Name":"011","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2891","ServerKey":"pl181","X":560,"Y":407},{"Bonus":0,"Continent":"K44","ID":2892,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2892","ServerKey":"pl181","X":492,"Y":460},{"Bonus":0,"Continent":"K45","ID":2893,"Name":"002 King","PlayerID":848967710,"Points":5439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2893","ServerKey":"pl181","X":531,"Y":466},{"Bonus":0,"Continent":"K44","ID":2894,"Name":"+44 61 Landrethun le Nord","PlayerID":698361257,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2894","ServerKey":"pl181","X":416,"Y":466},{"Bonus":0,"Continent":"K45","ID":2895,"Name":"Marienburg 5","PlayerID":699355601,"Points":3592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2895","ServerKey":"pl181","X":527,"Y":476},{"Bonus":0,"Continent":"K44","ID":2896,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2896","ServerKey":"pl181","X":473,"Y":417},{"Bonus":0,"Continent":"K54","ID":2897,"Name":"SPARTA_67","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2897","ServerKey":"pl181","X":480,"Y":582},{"Bonus":0,"Continent":"K45","ID":2898,"Name":"Szlachcic","PlayerID":698867446,"Points":9332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2898","ServerKey":"pl181","X":559,"Y":476},{"Bonus":0,"Continent":"K54","ID":2899,"Name":"027. ALFI","PlayerID":8369778,"Points":1846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2899","ServerKey":"pl181","X":484,"Y":572},{"Bonus":0,"Continent":"K55","ID":2900,"Name":"[119]","PlayerID":8000875,"Points":9941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2900","ServerKey":"pl181","X":563,"Y":538},{"Bonus":0,"Continent":"K65","ID":2901,"Name":"#0001","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2901","ServerKey":"pl181","X":546,"Y":612},{"Bonus":0,"Continent":"K55","ID":2902,"Name":"0011","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2902","ServerKey":"pl181","X":508,"Y":502},{"Bonus":8,"Continent":"K54","ID":2903,"Name":"#0017 Bober","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2903","ServerKey":"pl181","X":489,"Y":561},{"Bonus":0,"Continent":"K65","ID":2904,"Name":"0083","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2904","ServerKey":"pl181","X":551,"Y":608},{"Bonus":0,"Continent":"K45","ID":2905,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2905","ServerKey":"pl181","X":546,"Y":483},{"Bonus":0,"Continent":"K34","ID":2906,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2906","ServerKey":"pl181","X":475,"Y":384},{"Bonus":0,"Continent":"K55","ID":2907,"Name":"Mzm24","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2907","ServerKey":"pl181","X":551,"Y":520},{"Bonus":0,"Continent":"K34","ID":2908,"Name":"Konfederacja","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2908","ServerKey":"pl181","X":468,"Y":384},{"Bonus":0,"Continent":"K55","ID":2909,"Name":"CALL 1033","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2909","ServerKey":"pl181","X":550,"Y":555},{"Bonus":0,"Continent":"K55","ID":2910,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2910","ServerKey":"pl181","X":533,"Y":567},{"Bonus":0,"Continent":"K55","ID":2911,"Name":"CALL 946","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2911","ServerKey":"pl181","X":551,"Y":552},{"Bonus":0,"Continent":"K44","ID":2912,"Name":"P Konfederacja","PlayerID":848915730,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2912","ServerKey":"pl181","X":463,"Y":449},{"Bonus":0,"Continent":"K54","ID":2913,"Name":"-= 010 =-","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2913","ServerKey":"pl181","X":443,"Y":519},{"Bonus":0,"Continent":"K54","ID":2914,"Name":"Fajna 078","PlayerID":3613413,"Points":4518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2914","ServerKey":"pl181","X":459,"Y":557},{"Bonus":0,"Continent":"K54","ID":2915,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2915","ServerKey":"pl181","X":442,"Y":522},{"Bonus":0,"Continent":"K44","ID":2916,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2916","ServerKey":"pl181","X":453,"Y":488},{"Bonus":0,"Continent":"K45","ID":2917,"Name":"D01","PlayerID":699355601,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2917","ServerKey":"pl181","X":544,"Y":456},{"Bonus":0,"Continent":"K45","ID":2918,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2918","ServerKey":"pl181","X":547,"Y":447},{"Bonus":0,"Continent":"K44","ID":2919,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2919","ServerKey":"pl181","X":444,"Y":457},{"Bonus":0,"Continent":"K44","ID":2920,"Name":"046 Boise","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2920","ServerKey":"pl181","X":467,"Y":468},{"Bonus":0,"Continent":"K45","ID":2921,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2921","ServerKey":"pl181","X":519,"Y":493},{"Bonus":0,"Continent":"K44","ID":2922,"Name":"200 Paramaribo","PlayerID":1497168,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2922","ServerKey":"pl181","X":470,"Y":459},{"Bonus":0,"Continent":"K44","ID":2923,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2923","ServerKey":"pl181","X":431,"Y":480},{"Bonus":0,"Continent":"K44","ID":2924,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2924","ServerKey":"pl181","X":477,"Y":454},{"Bonus":0,"Continent":"K45","ID":2925,"Name":"10 | 002","PlayerID":849002091,"Points":5822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2925","ServerKey":"pl181","X":537,"Y":434},{"Bonus":0,"Continent":"K44","ID":2926,"Name":"B041","PlayerID":699299123,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2926","ServerKey":"pl181","X":476,"Y":456},{"Bonus":0,"Continent":"K54","ID":2927,"Name":"COUSINS","PlayerID":7976264,"Points":9255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2927","ServerKey":"pl181","X":487,"Y":587},{"Bonus":0,"Continent":"K55","ID":2928,"Name":"014. Wioska mruva","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2928","ServerKey":"pl181","X":578,"Y":516},{"Bonus":0,"Continent":"K45","ID":2929,"Name":"012","PlayerID":849070464,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2929","ServerKey":"pl181","X":559,"Y":493},{"Bonus":0,"Continent":"K55","ID":2930,"Name":"Gattacka","PlayerID":699298370,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2930","ServerKey":"pl181","X":579,"Y":513},{"Bonus":0,"Continent":"K55","ID":2931,"Name":"Jaaa","PlayerID":698635863,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2931","ServerKey":"pl181","X":571,"Y":538},{"Bonus":0,"Continent":"K54","ID":2932,"Name":"BEEF","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2932","ServerKey":"pl181","X":498,"Y":515},{"Bonus":0,"Continent":"K54","ID":2933,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2933","ServerKey":"pl181","X":457,"Y":563},{"Bonus":0,"Continent":"K54","ID":2934,"Name":"Wioska 20.","PlayerID":848967710,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2934","ServerKey":"pl181","X":495,"Y":523},{"Bonus":0,"Continent":"K54","ID":2935,"Name":"007 Fiona","PlayerID":698290577,"Points":7946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2935","ServerKey":"pl181","X":445,"Y":506},{"Bonus":0,"Continent":"K55","ID":2936,"Name":"K55","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2936","ServerKey":"pl181","X":539,"Y":529},{"Bonus":0,"Continent":"K54","ID":2937,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2937","ServerKey":"pl181","X":412,"Y":513},{"Bonus":0,"Continent":"K55","ID":2938,"Name":"CALL 1086","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2938","ServerKey":"pl181","X":536,"Y":537},{"Bonus":0,"Continent":"K45","ID":2939,"Name":"063 Grecja","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2939","ServerKey":"pl181","X":572,"Y":462},{"Bonus":0,"Continent":"K44","ID":2940,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2940","ServerKey":"pl181","X":438,"Y":444},{"Bonus":0,"Continent":"K45","ID":2941,"Name":"Szlachcic","PlayerID":698867446,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2941","ServerKey":"pl181","X":568,"Y":471},{"Bonus":0,"Continent":"K54","ID":2942,"Name":"Anioly3","PlayerID":699856962,"Points":7237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2942","ServerKey":"pl181","X":438,"Y":537},{"Bonus":0,"Continent":"K45","ID":2943,"Name":"Abad On","PlayerID":699347951,"Points":9863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2943","ServerKey":"pl181","X":569,"Y":475},{"Bonus":0,"Continent":"K44","ID":2944,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2944","ServerKey":"pl181","X":435,"Y":440},{"Bonus":0,"Continent":"K45","ID":2945,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2945","ServerKey":"pl181","X":568,"Y":479},{"Bonus":0,"Continent":"K45","ID":2946,"Name":"100.","PlayerID":8788366,"Points":6937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2946","ServerKey":"pl181","X":503,"Y":482},{"Bonus":0,"Continent":"K45","ID":2947,"Name":"[143] North","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2947","ServerKey":"pl181","X":578,"Y":467},{"Bonus":0,"Continent":"K55","ID":2948,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2948","ServerKey":"pl181","X":518,"Y":501},{"Bonus":0,"Continent":"K44","ID":2949,"Name":"Suppi","PlayerID":699856962,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2949","ServerKey":"pl181","X":435,"Y":444},{"Bonus":0,"Continent":"K55","ID":2950,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2950","ServerKey":"pl181","X":517,"Y":503},{"Bonus":0,"Continent":"K45","ID":2951,"Name":".achim.","PlayerID":6936607,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2951","ServerKey":"pl181","X":538,"Y":421},{"Bonus":0,"Continent":"K54","ID":2952,"Name":"SsSs","PlayerID":1536625,"Points":9698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2952","ServerKey":"pl181","X":423,"Y":503},{"Bonus":0,"Continent":"K54","ID":2953,"Name":"Suppi","PlayerID":699856962,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2953","ServerKey":"pl181","X":441,"Y":515},{"Bonus":0,"Continent":"K54","ID":2954,"Name":"037. ALFI","PlayerID":8539216,"Points":1294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2954","ServerKey":"pl181","X":469,"Y":557},{"Bonus":0,"Continent":"K54","ID":2955,"Name":"BETI 006","PlayerID":8539216,"Points":1655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2955","ServerKey":"pl181","X":463,"Y":567},{"Bonus":0,"Continent":"K54","ID":2956,"Name":"0169","PlayerID":698659980,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2956","ServerKey":"pl181","X":470,"Y":553},{"Bonus":0,"Continent":"K45","ID":2957,"Name":"Szlachcic","PlayerID":698867446,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2957","ServerKey":"pl181","X":559,"Y":494},{"Bonus":0,"Continent":"K54","ID":2958,"Name":"Winter is coming","PlayerID":699856962,"Points":8012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2958","ServerKey":"pl181","X":438,"Y":529},{"Bonus":0,"Continent":"K55","ID":2959,"Name":"019 Ewolucja","PlayerID":849031818,"Points":7165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2959","ServerKey":"pl181","X":554,"Y":502},{"Bonus":0,"Continent":"K54","ID":2960,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2960","ServerKey":"pl181","X":452,"Y":506},{"Bonus":4,"Continent":"K44","ID":2961,"Name":"Montgomery","PlayerID":698290577,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2961","ServerKey":"pl181","X":466,"Y":494},{"Bonus":0,"Continent":"K45","ID":2962,"Name":"007","PlayerID":849070464,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2962","ServerKey":"pl181","X":553,"Y":496},{"Bonus":0,"Continent":"K45","ID":2963,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2963","ServerKey":"pl181","X":522,"Y":426},{"Bonus":0,"Continent":"K45","ID":2964,"Name":"NEW ABADON","PlayerID":699347951,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2964","ServerKey":"pl181","X":563,"Y":499},{"Bonus":0,"Continent":"K45","ID":2965,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2965","ServerKey":"pl181","X":523,"Y":423},{"Bonus":0,"Continent":"K54","ID":2966,"Name":"Anioly1","PlayerID":699856962,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2966","ServerKey":"pl181","X":439,"Y":537},{"Bonus":0,"Continent":"K55","ID":2967,"Name":"Mzm31","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2967","ServerKey":"pl181","X":547,"Y":539},{"Bonus":0,"Continent":"K54","ID":2968,"Name":"Gratuluje mĂłzgu","PlayerID":699856962,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2968","ServerKey":"pl181","X":440,"Y":533},{"Bonus":0,"Continent":"K54","ID":2969,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":7310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2969","ServerKey":"pl181","X":442,"Y":539},{"Bonus":0,"Continent":"K45","ID":2970,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2970","ServerKey":"pl181","X":521,"Y":417},{"Bonus":0,"Continent":"K54","ID":2971,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2971","ServerKey":"pl181","X":476,"Y":564},{"Bonus":0,"Continent":"K45","ID":2972,"Name":".:062:. Chillout","PlayerID":848934935,"Points":9274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2972","ServerKey":"pl181","X":518,"Y":425},{"Bonus":0,"Continent":"K45","ID":2973,"Name":"004","PlayerID":699099811,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2973","ServerKey":"pl181","X":563,"Y":491},{"Bonus":0,"Continent":"K44","ID":2974,"Name":"116 Mcbride","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2974","ServerKey":"pl181","X":479,"Y":496},{"Bonus":0,"Continent":"K54","ID":2976,"Name":"006","PlayerID":7976264,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2976","ServerKey":"pl181","X":481,"Y":586},{"Bonus":0,"Continent":"K45","ID":2977,"Name":"......","PlayerID":699368887,"Points":7846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2977","ServerKey":"pl181","X":553,"Y":446},{"Bonus":0,"Continent":"K54","ID":2978,"Name":"scar","PlayerID":699364813,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2978","ServerKey":"pl181","X":478,"Y":593},{"Bonus":0,"Continent":"K45","ID":2979,"Name":"107 Kasztan Kasztanem Pogania","PlayerID":7092442,"Points":5527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2979","ServerKey":"pl181","X":544,"Y":459},{"Bonus":0,"Continent":"K45","ID":2980,"Name":".:127:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2980","ServerKey":"pl181","X":512,"Y":417},{"Bonus":0,"Continent":"K45","ID":2981,"Name":"7.62 mm","PlayerID":699777234,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2981","ServerKey":"pl181","X":509,"Y":426},{"Bonus":0,"Continent":"K44","ID":2982,"Name":"Cast Away 015","PlayerID":698290577,"Points":5597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2982","ServerKey":"pl181","X":448,"Y":483},{"Bonus":0,"Continent":"K45","ID":2983,"Name":"045","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2983","ServerKey":"pl181","X":566,"Y":403},{"Bonus":0,"Continent":"K54","ID":2984,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2984","ServerKey":"pl181","X":473,"Y":505},{"Bonus":0,"Continent":"K45","ID":2985,"Name":"[130] North","PlayerID":848985692,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2985","ServerKey":"pl181","X":580,"Y":472},{"Bonus":0,"Continent":"K45","ID":2986,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2986","ServerKey":"pl181","X":543,"Y":481},{"Bonus":0,"Continent":"K35","ID":2987,"Name":"097","PlayerID":849064752,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2987","ServerKey":"pl181","X":568,"Y":399},{"Bonus":0,"Continent":"K45","ID":2988,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2988","ServerKey":"pl181","X":525,"Y":425},{"Bonus":0,"Continent":"K45","ID":2989,"Name":"A04","PlayerID":699368887,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2989","ServerKey":"pl181","X":555,"Y":449},{"Bonus":0,"Continent":"K44","ID":2990,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2990","ServerKey":"pl181","X":425,"Y":466},{"Bonus":0,"Continent":"K45","ID":2991,"Name":"South K45","PlayerID":699146580,"Points":8736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2991","ServerKey":"pl181","X":574,"Y":410},{"Bonus":0,"Continent":"K54","ID":2992,"Name":"warzywa","PlayerID":699364813,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2992","ServerKey":"pl181","X":496,"Y":588},{"Bonus":7,"Continent":"K44","ID":2993,"Name":"?+44 76 Charly","PlayerID":698361257,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2993","ServerKey":"pl181","X":460,"Y":475},{"Bonus":0,"Continent":"K54","ID":2994,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2994","ServerKey":"pl181","X":490,"Y":504},{"Bonus":0,"Continent":"K44","ID":2995,"Name":"Konfiasze","PlayerID":698908912,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2995","ServerKey":"pl181","X":473,"Y":492},{"Bonus":0,"Continent":"K55","ID":2996,"Name":"[086]","PlayerID":848985692,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2996","ServerKey":"pl181","X":529,"Y":528},{"Bonus":0,"Continent":"K45","ID":2997,"Name":"084 Pistacja","PlayerID":7092442,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2997","ServerKey":"pl181","X":543,"Y":465},{"Bonus":0,"Continent":"K55","ID":2998,"Name":"JaamMwG 031","PlayerID":848987051,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2998","ServerKey":"pl181","X":530,"Y":524},{"Bonus":0,"Continent":"K55","ID":2999,"Name":"Mzm21","PlayerID":7142659,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=2999","ServerKey":"pl181","X":560,"Y":517},{"Bonus":0,"Continent":"K44","ID":3001,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3001","ServerKey":"pl181","X":469,"Y":417},{"Bonus":0,"Continent":"K55","ID":3003,"Name":"0032 K55 and987 OZDR.","PlayerID":3613413,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3003","ServerKey":"pl181","X":503,"Y":564},{"Bonus":0,"Continent":"K44","ID":3004,"Name":"073 Amarillo","PlayerID":1497168,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3004","ServerKey":"pl181","X":454,"Y":450},{"Bonus":0,"Continent":"K55","ID":3006,"Name":"20006","PlayerID":848915531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3006","ServerKey":"pl181","X":505,"Y":545},{"Bonus":0,"Continent":"K44","ID":3007,"Name":"071 Dallas","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3007","ServerKey":"pl181","X":453,"Y":449},{"Bonus":0,"Continent":"K54","ID":3008,"Name":"#0033 ƚwinoujƛcie","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3008","ServerKey":"pl181","X":486,"Y":563},{"Bonus":0,"Continent":"K54","ID":3009,"Name":"004. ALFI","PlayerID":8369778,"Points":1577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3009","ServerKey":"pl181","X":483,"Y":572},{"Bonus":0,"Continent":"K55","ID":3010,"Name":"Szlachcic 010","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3010","ServerKey":"pl181","X":557,"Y":523},{"Bonus":0,"Continent":"K54","ID":3011,"Name":"006 Fiona","PlayerID":698290577,"Points":7403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3011","ServerKey":"pl181","X":444,"Y":506},{"Bonus":0,"Continent":"K55","ID":3012,"Name":"Mzm05","PlayerID":7142659,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3012","ServerKey":"pl181","X":556,"Y":525},{"Bonus":0,"Continent":"K44","ID":3013,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3013","ServerKey":"pl181","X":475,"Y":427},{"Bonus":0,"Continent":"K45","ID":3014,"Name":"Osada","PlayerID":699098531,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3014","ServerKey":"pl181","X":500,"Y":451},{"Bonus":0,"Continent":"K44","ID":3015,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3015","ServerKey":"pl181","X":472,"Y":434},{"Bonus":0,"Continent":"K45","ID":3016,"Name":".:141:. Niangmen","PlayerID":848934935,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3016","ServerKey":"pl181","X":507,"Y":401},{"Bonus":0,"Continent":"K45","ID":3017,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3017","ServerKey":"pl181","X":515,"Y":400},{"Bonus":0,"Continent":"K45","ID":3018,"Name":"Szlachcic","PlayerID":699098531,"Points":8495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3018","ServerKey":"pl181","X":502,"Y":462},{"Bonus":0,"Continent":"K44","ID":3019,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3019","ServerKey":"pl181","X":445,"Y":495},{"Bonus":0,"Continent":"K45","ID":3020,"Name":"Wioska barbarzyƄska","PlayerID":699788305,"Points":9250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3020","ServerKey":"pl181","X":533,"Y":436},{"Bonus":0,"Continent":"K44","ID":3021,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3021","ServerKey":"pl181","X":447,"Y":490},{"Bonus":0,"Continent":"K45","ID":3023,"Name":"#Kingler","PlayerID":699795378,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3023","ServerKey":"pl181","X":573,"Y":457},{"Bonus":0,"Continent":"K54","ID":3025,"Name":"~045.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3025","ServerKey":"pl181","X":481,"Y":553},{"Bonus":0,"Continent":"K44","ID":3026,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3026","ServerKey":"pl181","X":419,"Y":422},{"Bonus":0,"Continent":"K45","ID":3027,"Name":"...001...","PlayerID":699368887,"Points":9060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3027","ServerKey":"pl181","X":553,"Y":445},{"Bonus":0,"Continent":"K55","ID":3028,"Name":"|010|","PlayerID":873575,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3028","ServerKey":"pl181","X":553,"Y":569},{"Bonus":0,"Continent":"K45","ID":3029,"Name":"A09","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3029","ServerKey":"pl181","X":550,"Y":452},{"Bonus":0,"Continent":"K44","ID":3030,"Name":"?+44 86","PlayerID":698361257,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3030","ServerKey":"pl181","X":463,"Y":486},{"Bonus":0,"Continent":"K65","ID":3031,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3031","ServerKey":"pl181","X":526,"Y":606},{"Bonus":0,"Continent":"K53","ID":3032,"Name":"Tank 001","PlayerID":698290577,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3032","ServerKey":"pl181","X":396,"Y":515},{"Bonus":0,"Continent":"K45","ID":3033,"Name":"C018","PlayerID":699299123,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3033","ServerKey":"pl181","X":526,"Y":460},{"Bonus":0,"Continent":"K45","ID":3034,"Name":"LEGION_1","PlayerID":6101033,"Points":3482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3034","ServerKey":"pl181","X":553,"Y":450},{"Bonus":0,"Continent":"K54","ID":3035,"Name":"FF009","PlayerID":699189792,"Points":5961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3035","ServerKey":"pl181","X":468,"Y":518},{"Bonus":0,"Continent":"K45","ID":3036,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3036","ServerKey":"pl181","X":548,"Y":442},{"Bonus":0,"Continent":"K54","ID":3037,"Name":"~049.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3037","ServerKey":"pl181","X":492,"Y":565},{"Bonus":0,"Continent":"K35","ID":3038,"Name":"004","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3038","ServerKey":"pl181","X":500,"Y":378},{"Bonus":0,"Continent":"K45","ID":3039,"Name":"slow","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3039","ServerKey":"pl181","X":533,"Y":488},{"Bonus":0,"Continent":"K55","ID":3041,"Name":"024","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3041","ServerKey":"pl181","X":531,"Y":574},{"Bonus":8,"Continent":"K55","ID":3042,"Name":"[180]","PlayerID":8000875,"Points":10524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3042","ServerKey":"pl181","X":541,"Y":548},{"Bonus":0,"Continent":"K53","ID":3043,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3043","ServerKey":"pl181","X":379,"Y":517},{"Bonus":0,"Continent":"K45","ID":3044,"Name":"007","PlayerID":698881022,"Points":6646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3044","ServerKey":"pl181","X":507,"Y":482},{"Bonus":0,"Continent":"K56","ID":3045,"Name":"ccc","PlayerID":7047342,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3045","ServerKey":"pl181","X":611,"Y":555},{"Bonus":0,"Continent":"K54","ID":3046,"Name":"lady anima","PlayerID":699703642,"Points":10535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3046","ServerKey":"pl181","X":493,"Y":582},{"Bonus":0,"Continent":"K53","ID":3047,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3047","ServerKey":"pl181","X":380,"Y":526},{"Bonus":0,"Continent":"K44","ID":3048,"Name":"024 Buffalo","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3048","ServerKey":"pl181","X":440,"Y":478},{"Bonus":0,"Continent":"K45","ID":3049,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3049","ServerKey":"pl181","X":518,"Y":481},{"Bonus":0,"Continent":"K55","ID":3050,"Name":"P.018","PlayerID":873575,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3050","ServerKey":"pl181","X":540,"Y":562},{"Bonus":0,"Continent":"K45","ID":3051,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3051","ServerKey":"pl181","X":516,"Y":486},{"Bonus":0,"Continent":"K45","ID":3052,"Name":"4 ESIOK f","PlayerID":8155296,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3052","ServerKey":"pl181","X":538,"Y":462},{"Bonus":0,"Continent":"K44","ID":3053,"Name":"0063 4 Lechxxxxx","PlayerID":3909522,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3053","ServerKey":"pl181","X":450,"Y":426},{"Bonus":0,"Continent":"K44","ID":3054,"Name":"0063 3","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3054","ServerKey":"pl181","X":448,"Y":427},{"Bonus":0,"Continent":"K54","ID":3055,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":8727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3055","ServerKey":"pl181","X":468,"Y":564},{"Bonus":0,"Continent":"K44","ID":3056,"Name":"P Konfederacja","PlayerID":848915730,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3056","ServerKey":"pl181","X":459,"Y":453},{"Bonus":0,"Continent":"K54","ID":3057,"Name":"0110","PlayerID":698659980,"Points":8866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3057","ServerKey":"pl181","X":469,"Y":562},{"Bonus":0,"Continent":"K55","ID":3058,"Name":"CALL 1020","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3058","ServerKey":"pl181","X":550,"Y":563},{"Bonus":0,"Continent":"K44","ID":3059,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3059","ServerKey":"pl181","X":431,"Y":446},{"Bonus":0,"Continent":"K55","ID":3060,"Name":"CALL 941","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3060","ServerKey":"pl181","X":553,"Y":556},{"Bonus":0,"Continent":"K44","ID":3061,"Name":"K44 x014","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3061","ServerKey":"pl181","X":441,"Y":417},{"Bonus":0,"Continent":"K54","ID":3062,"Name":"NOT?","PlayerID":9236866,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3062","ServerKey":"pl181","X":425,"Y":519},{"Bonus":0,"Continent":"K44","ID":3063,"Name":"00533 W01","PlayerID":3909522,"Points":8006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3063","ServerKey":"pl181","X":440,"Y":418},{"Bonus":2,"Continent":"K44","ID":3064,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3064","ServerKey":"pl181","X":486,"Y":479},{"Bonus":0,"Continent":"K45","ID":3065,"Name":"070","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3065","ServerKey":"pl181","X":547,"Y":413},{"Bonus":0,"Continent":"K44","ID":3066,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3066","ServerKey":"pl181","X":446,"Y":470},{"Bonus":9,"Continent":"K45","ID":3067,"Name":"03 | Osada bolcownikĂłw","PlayerID":849002091,"Points":8877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3067","ServerKey":"pl181","X":543,"Y":432},{"Bonus":0,"Continent":"K45","ID":3068,"Name":"054","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3068","ServerKey":"pl181","X":542,"Y":417},{"Bonus":9,"Continent":"K45","ID":3069,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3069","ServerKey":"pl181","X":520,"Y":472},{"Bonus":0,"Continent":"K44","ID":3070,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3070","ServerKey":"pl181","X":484,"Y":490},{"Bonus":0,"Continent":"K44","ID":3071,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3071","ServerKey":"pl181","X":486,"Y":484},{"Bonus":0,"Continent":"K35","ID":3072,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3072","ServerKey":"pl181","X":526,"Y":398},{"Bonus":0,"Continent":"K55","ID":3073,"Name":"P.019","PlayerID":873575,"Points":10028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3073","ServerKey":"pl181","X":539,"Y":555},{"Bonus":0,"Continent":"K54","ID":3074,"Name":"#0018 Wizualizacja","PlayerID":9272054,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3074","ServerKey":"pl181","X":490,"Y":550},{"Bonus":0,"Continent":"K54","ID":3075,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3075","ServerKey":"pl181","X":469,"Y":564},{"Bonus":0,"Continent":"K55","ID":3076,"Name":"amator MO3","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3076","ServerKey":"pl181","X":533,"Y":554},{"Bonus":0,"Continent":"K45","ID":3077,"Name":"-[023]- Nanda Devi","PlayerID":849092827,"Points":7445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3077","ServerKey":"pl181","X":550,"Y":488},{"Bonus":0,"Continent":"K55","ID":3078,"Name":"CALL 1078","PlayerID":699784536,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3078","ServerKey":"pl181","X":535,"Y":548},{"Bonus":0,"Continent":"K44","ID":3079,"Name":"0090","PlayerID":3909522,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3079","ServerKey":"pl181","X":451,"Y":436},{"Bonus":0,"Continent":"K34","ID":3080,"Name":"[0101]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3080","ServerKey":"pl181","X":448,"Y":395},{"Bonus":0,"Continent":"K44","ID":3081,"Name":".008","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3081","ServerKey":"pl181","X":460,"Y":498},{"Bonus":0,"Continent":"K34","ID":3082,"Name":"K34 x002","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3082","ServerKey":"pl181","X":447,"Y":385},{"Bonus":0,"Continent":"K55","ID":3083,"Name":"Wioska 420","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3083","ServerKey":"pl181","X":554,"Y":511},{"Bonus":0,"Continent":"K55","ID":3084,"Name":"Wioska gotkamil","PlayerID":699385139,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3084","ServerKey":"pl181","X":523,"Y":512},{"Bonus":0,"Continent":"K45","ID":3085,"Name":"219 Brisbane","PlayerID":1497168,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3085","ServerKey":"pl181","X":532,"Y":439},{"Bonus":0,"Continent":"K55","ID":3086,"Name":"001","PlayerID":8191129,"Points":8095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3086","ServerKey":"pl181","X":522,"Y":513},{"Bonus":0,"Continent":"K45","ID":3087,"Name":"A12","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3087","ServerKey":"pl181","X":549,"Y":455},{"Bonus":0,"Continent":"K54","ID":3088,"Name":"Ateny_78","PlayerID":2585846,"Points":2629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3088","ServerKey":"pl181","X":473,"Y":521},{"Bonus":0,"Continent":"K45","ID":3089,"Name":"09. Ren Grouver","PlayerID":698702991,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3089","ServerKey":"pl181","X":563,"Y":480},{"Bonus":0,"Continent":"K54","ID":3090,"Name":"07 ZrĂłb mi huragan","PlayerID":699781762,"Points":3251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3090","ServerKey":"pl181","X":474,"Y":517},{"Bonus":0,"Continent":"K55","ID":3091,"Name":"- 034 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3091","ServerKey":"pl181","X":532,"Y":574},{"Bonus":0,"Continent":"K44","ID":3092,"Name":"+44 62 Hesdin l Abbe","PlayerID":698361257,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3092","ServerKey":"pl181","X":420,"Y":463},{"Bonus":0,"Continent":"K55","ID":3093,"Name":"- 261 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3093","ServerKey":"pl181","X":529,"Y":581},{"Bonus":0,"Continent":"K45","ID":3094,"Name":"036","PlayerID":849063849,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3094","ServerKey":"pl181","X":554,"Y":429},{"Bonus":0,"Continent":"K45","ID":3095,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3095","ServerKey":"pl181","X":501,"Y":471},{"Bonus":0,"Continent":"K54","ID":3096,"Name":"Front_21","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3096","ServerKey":"pl181","X":456,"Y":529},{"Bonus":0,"Continent":"K44","ID":3097,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3097","ServerKey":"pl181","X":498,"Y":478},{"Bonus":0,"Continent":"K44","ID":3098,"Name":"South barba 1","PlayerID":699796330,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3098","ServerKey":"pl181","X":457,"Y":460},{"Bonus":0,"Continent":"K45","ID":3099,"Name":"053","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3099","ServerKey":"pl181","X":548,"Y":406},{"Bonus":0,"Continent":"K35","ID":3100,"Name":"013","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3100","ServerKey":"pl181","X":556,"Y":398},{"Bonus":0,"Continent":"K44","ID":3101,"Name":"+44 84 Airon Saint Vaast","PlayerID":698361257,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3101","ServerKey":"pl181","X":444,"Y":480},{"Bonus":0,"Continent":"K54","ID":3102,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3102","ServerKey":"pl181","X":425,"Y":527},{"Bonus":0,"Continent":"K55","ID":3103,"Name":"P.020","PlayerID":873575,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3103","ServerKey":"pl181","X":540,"Y":556},{"Bonus":0,"Continent":"K54","ID":3104,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3104","ServerKey":"pl181","X":434,"Y":528},{"Bonus":0,"Continent":"K54","ID":3105,"Name":"Winter is coming","PlayerID":698971484,"Points":9136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3105","ServerKey":"pl181","X":446,"Y":537},{"Bonus":0,"Continent":"K45","ID":3106,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3106","ServerKey":"pl181","X":558,"Y":479},{"Bonus":0,"Continent":"K55","ID":3107,"Name":"Wioska 413","PlayerID":477415,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3107","ServerKey":"pl181","X":569,"Y":507},{"Bonus":6,"Continent":"K44","ID":3108,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3108","ServerKey":"pl181","X":450,"Y":482},{"Bonus":0,"Continent":"K45","ID":3109,"Name":"002 KSG","PlayerID":849031818,"Points":9245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3109","ServerKey":"pl181","X":560,"Y":473},{"Bonus":0,"Continent":"K45","ID":3110,"Name":"ASEINGARD f","PlayerID":8155296,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3110","ServerKey":"pl181","X":539,"Y":464},{"Bonus":0,"Continent":"K45","ID":3111,"Name":"Wioska BarbarzyƄska.","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3111","ServerKey":"pl181","X":555,"Y":476},{"Bonus":0,"Continent":"K55","ID":3112,"Name":"Maximize","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3112","ServerKey":"pl181","X":507,"Y":520},{"Bonus":0,"Continent":"K55","ID":3113,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3113","ServerKey":"pl181","X":519,"Y":500},{"Bonus":0,"Continent":"K44","ID":3114,"Name":"PRO8L3M","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3114","ServerKey":"pl181","X":412,"Y":499},{"Bonus":0,"Continent":"K55","ID":3115,"Name":"WeszƂo Ƃadnie","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3115","ServerKey":"pl181","X":516,"Y":508},{"Bonus":0,"Continent":"K45","ID":3116,"Name":"-[014]- Sziszapangma","PlayerID":849092827,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3116","ServerKey":"pl181","X":551,"Y":491},{"Bonus":0,"Continent":"K45","ID":3117,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3117","ServerKey":"pl181","X":517,"Y":498},{"Bonus":0,"Continent":"K45","ID":3118,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3118","ServerKey":"pl181","X":587,"Y":483},{"Bonus":0,"Continent":"K55","ID":3119,"Name":"070.","PlayerID":8788366,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3119","ServerKey":"pl181","X":514,"Y":503},{"Bonus":0,"Continent":"K55","ID":3120,"Name":"[105]","PlayerID":8000875,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3120","ServerKey":"pl181","X":559,"Y":542},{"Bonus":0,"Continent":"K54","ID":3121,"Name":"007 Hasta la vista baby","PlayerID":1536625,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3121","ServerKey":"pl181","X":465,"Y":505},{"Bonus":0,"Continent":"K44","ID":3122,"Name":"...Just like that","PlayerID":699723284,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3122","ServerKey":"pl181","X":467,"Y":473},{"Bonus":0,"Continent":"K54","ID":3123,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3123","ServerKey":"pl181","X":462,"Y":513},{"Bonus":0,"Continent":"K54","ID":3124,"Name":"F086","PlayerID":699189792,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3124","ServerKey":"pl181","X":481,"Y":519},{"Bonus":0,"Continent":"K54","ID":3125,"Name":"05 Hafnarfjordur","PlayerID":699333701,"Points":5177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3125","ServerKey":"pl181","X":472,"Y":511},{"Bonus":0,"Continent":"K44","ID":3126,"Name":"PRO8L3M","PlayerID":7491093,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3126","ServerKey":"pl181","X":457,"Y":497},{"Bonus":0,"Continent":"K54","ID":3127,"Name":"Brat447","PlayerID":699262350,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3127","ServerKey":"pl181","X":455,"Y":503},{"Bonus":0,"Continent":"K44","ID":3128,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3128","ServerKey":"pl181","X":425,"Y":403},{"Bonus":0,"Continent":"K34","ID":3129,"Name":"002","PlayerID":699402816,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3129","ServerKey":"pl181","X":424,"Y":399},{"Bonus":0,"Continent":"K54","ID":3130,"Name":"keepo","PlayerID":848967710,"Points":5015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3130","ServerKey":"pl181","X":477,"Y":515},{"Bonus":0,"Continent":"K44","ID":3131,"Name":"?+44 85 Riillieux la Pape","PlayerID":698361257,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3131","ServerKey":"pl181","X":455,"Y":489},{"Bonus":0,"Continent":"K54","ID":3132,"Name":"Fajna 086","PlayerID":8539216,"Points":860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3132","ServerKey":"pl181","X":456,"Y":567},{"Bonus":0,"Continent":"K44","ID":3133,"Name":"?+44 85 Villeurbanne Poudrette","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3133","ServerKey":"pl181","X":457,"Y":484},{"Bonus":0,"Continent":"K45","ID":3134,"Name":"xxx","PlayerID":698239813,"Points":6511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3134","ServerKey":"pl181","X":506,"Y":452},{"Bonus":0,"Continent":"K54","ID":3135,"Name":"KIELBA 035","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3135","ServerKey":"pl181","X":451,"Y":573},{"Bonus":0,"Continent":"K44","ID":3136,"Name":"00971 ddd pies","PlayerID":3909522,"Points":5505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3136","ServerKey":"pl181","X":463,"Y":438},{"Bonus":0,"Continent":"K54","ID":3137,"Name":"7. Brasil","PlayerID":699856962,"Points":7426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3137","ServerKey":"pl181","X":453,"Y":567},{"Bonus":1,"Continent":"K55","ID":3138,"Name":"005","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3138","ServerKey":"pl181","X":576,"Y":544},{"Bonus":0,"Continent":"K45","ID":3139,"Name":"A03","PlayerID":699368887,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3139","ServerKey":"pl181","X":551,"Y":454},{"Bonus":0,"Continent":"K44","ID":3140,"Name":"SsSs","PlayerID":1536625,"Points":8542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3140","ServerKey":"pl181","X":435,"Y":497},{"Bonus":0,"Continent":"K45","ID":3141,"Name":"A20","PlayerID":699368887,"Points":7512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3141","ServerKey":"pl181","X":554,"Y":447},{"Bonus":0,"Continent":"K54","ID":3142,"Name":"Fajna 018","PlayerID":698971484,"Points":7755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3142","ServerKey":"pl181","X":449,"Y":554},{"Bonus":0,"Continent":"K34","ID":3143,"Name":"Feed me more 007","PlayerID":699756210,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3143","ServerKey":"pl181","X":492,"Y":373},{"Bonus":0,"Continent":"K45","ID":3144,"Name":"7 razy","PlayerID":6923061,"Points":3087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3144","ServerKey":"pl181","X":544,"Y":446},{"Bonus":0,"Continent":"K35","ID":3145,"Name":"Yyyy","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3145","ServerKey":"pl181","X":500,"Y":373},{"Bonus":0,"Continent":"K55","ID":3146,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3146","ServerKey":"pl181","X":510,"Y":552},{"Bonus":0,"Continent":"K35","ID":3147,"Name":"040","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3147","ServerKey":"pl181","X":561,"Y":399},{"Bonus":0,"Continent":"K45","ID":3148,"Name":"Wioska 6","PlayerID":699385139,"Points":7576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3148","ServerKey":"pl181","X":535,"Y":495},{"Bonus":8,"Continent":"K45","ID":3149,"Name":".:083:. Takmahal","PlayerID":848934935,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3149","ServerKey":"pl181","X":524,"Y":451},{"Bonus":0,"Continent":"K45","ID":3150,"Name":"033","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3150","ServerKey":"pl181","X":560,"Y":406},{"Bonus":0,"Continent":"K45","ID":3151,"Name":"Szlachcic","PlayerID":699098531,"Points":7603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3151","ServerKey":"pl181","X":509,"Y":476},{"Bonus":0,"Continent":"K44","ID":3152,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3152","ServerKey":"pl181","X":470,"Y":457},{"Bonus":0,"Continent":"K44","ID":3153,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3153","ServerKey":"pl181","X":445,"Y":455},{"Bonus":0,"Continent":"K54","ID":3155,"Name":"Selonari.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3155","ServerKey":"pl181","X":460,"Y":563},{"Bonus":0,"Continent":"K45","ID":3156,"Name":"Psytrance","PlayerID":8649412,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3156","ServerKey":"pl181","X":504,"Y":416},{"Bonus":0,"Continent":"K45","ID":3157,"Name":"BBB","PlayerID":1006847,"Points":6900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3157","ServerKey":"pl181","X":554,"Y":436},{"Bonus":0,"Continent":"K45","ID":3158,"Name":"A051","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3158","ServerKey":"pl181","X":503,"Y":419},{"Bonus":0,"Continent":"K55","ID":3159,"Name":"042 |","PlayerID":8000875,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3159","ServerKey":"pl181","X":555,"Y":560},{"Bonus":0,"Continent":"K55","ID":3160,"Name":"F009","PlayerID":7581876,"Points":9586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3160","ServerKey":"pl181","X":505,"Y":531},{"Bonus":0,"Continent":"K55","ID":3161,"Name":"F006","PlayerID":699189792,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3161","ServerKey":"pl181","X":501,"Y":535},{"Bonus":0,"Continent":"K55","ID":3162,"Name":"0064","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3162","ServerKey":"pl181","X":508,"Y":523},{"Bonus":0,"Continent":"K54","ID":3163,"Name":"Obnisk","PlayerID":699443920,"Points":4327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3163","ServerKey":"pl181","X":434,"Y":562},{"Bonus":0,"Continent":"K55","ID":3164,"Name":"[084]","PlayerID":8000875,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3164","ServerKey":"pl181","X":551,"Y":530},{"Bonus":0,"Continent":"K55","ID":3165,"Name":"018 |","PlayerID":8000875,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3165","ServerKey":"pl181","X":550,"Y":534},{"Bonus":0,"Continent":"K54","ID":3166,"Name":"0078","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3166","ServerKey":"pl181","X":463,"Y":547},{"Bonus":0,"Continent":"K54","ID":3167,"Name":"003 Jak tam chƂopie, ƛpisz?","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3167","ServerKey":"pl181","X":465,"Y":542},{"Bonus":0,"Continent":"K44","ID":3168,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3168","ServerKey":"pl181","X":496,"Y":452},{"Bonus":0,"Continent":"K45","ID":3169,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":11653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3169","ServerKey":"pl181","X":558,"Y":452},{"Bonus":0,"Continent":"K44","ID":3170,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3170","ServerKey":"pl181","X":426,"Y":463},{"Bonus":0,"Continent":"K45","ID":3171,"Name":"KoƄczyć czas:)","PlayerID":699368887,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3171","ServerKey":"pl181","X":549,"Y":447},{"Bonus":0,"Continent":"K44","ID":3172,"Name":"063.","PlayerID":699851345,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3172","ServerKey":"pl181","X":480,"Y":490},{"Bonus":0,"Continent":"K45","ID":3173,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3173","ServerKey":"pl181","X":564,"Y":446},{"Bonus":1,"Continent":"K55","ID":3174,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3174","ServerKey":"pl181","X":510,"Y":541},{"Bonus":0,"Continent":"K45","ID":3175,"Name":"A13","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3175","ServerKey":"pl181","X":550,"Y":455},{"Bonus":0,"Continent":"K45","ID":3176,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":7101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3176","ServerKey":"pl181","X":564,"Y":452},{"Bonus":0,"Continent":"K45","ID":3177,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3177","ServerKey":"pl181","X":502,"Y":475},{"Bonus":0,"Continent":"K54","ID":3178,"Name":"#0090 WyczóƂki","PlayerID":9272054,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3178","ServerKey":"pl181","X":474,"Y":552},{"Bonus":0,"Continent":"K44","ID":3179,"Name":"Monetki","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3179","ServerKey":"pl181","X":479,"Y":416},{"Bonus":0,"Continent":"K54","ID":3180,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3180","ServerKey":"pl181","X":478,"Y":542},{"Bonus":0,"Continent":"K54","ID":3181,"Name":"KIELBA 062","PlayerID":699342219,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3181","ServerKey":"pl181","X":462,"Y":581},{"Bonus":0,"Continent":"K54","ID":3182,"Name":"001","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3182","ServerKey":"pl181","X":464,"Y":576},{"Bonus":0,"Continent":"K54","ID":3183,"Name":"Fajna007","PlayerID":8539216,"Points":1727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3183","ServerKey":"pl181","X":467,"Y":569},{"Bonus":0,"Continent":"K44","ID":3184,"Name":"0092qqqqqqqqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":9503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3184","ServerKey":"pl181","X":455,"Y":437},{"Bonus":0,"Continent":"K54","ID":3185,"Name":"2. Bison**","PlayerID":849087855,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3185","ServerKey":"pl181","X":497,"Y":544},{"Bonus":0,"Continent":"K44","ID":3186,"Name":"Osada","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3186","ServerKey":"pl181","X":499,"Y":442},{"Bonus":0,"Continent":"K54","ID":3187,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3187","ServerKey":"pl181","X":493,"Y":554},{"Bonus":0,"Continent":"K45","ID":3188,"Name":".:076:. Takmahal","PlayerID":848934935,"Points":6812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3188","ServerKey":"pl181","X":526,"Y":442},{"Bonus":0,"Continent":"K55","ID":3189,"Name":"055 |","PlayerID":8000875,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3189","ServerKey":"pl181","X":547,"Y":502},{"Bonus":0,"Continent":"K54","ID":3190,"Name":"NOT?","PlayerID":9236866,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3190","ServerKey":"pl181","X":426,"Y":520},{"Bonus":0,"Continent":"K55","ID":3191,"Name":"038. A-RE-SE-EY","PlayerID":848967710,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3191","ServerKey":"pl181","X":548,"Y":500},{"Bonus":0,"Continent":"K55","ID":3192,"Name":"Yeet","PlayerID":848908144,"Points":1170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3192","ServerKey":"pl181","X":530,"Y":510},{"Bonus":0,"Continent":"K54","ID":3193,"Name":"030","PlayerID":2585846,"Points":7185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3193","ServerKey":"pl181","X":469,"Y":523},{"Bonus":0,"Continent":"K55","ID":3194,"Name":"100","PlayerID":699351301,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3194","ServerKey":"pl181","X":529,"Y":512},{"Bonus":0,"Continent":"K54","ID":3195,"Name":"Zadupie","PlayerID":699698253,"Points":10856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3195","ServerKey":"pl181","X":493,"Y":568},{"Bonus":0,"Continent":"K44","ID":3196,"Name":"Cast Away 016","PlayerID":698290577,"Points":3704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3196","ServerKey":"pl181","X":447,"Y":479},{"Bonus":0,"Continent":"K54","ID":3197,"Name":"005. ALFI","PlayerID":3613413,"Points":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3197","ServerKey":"pl181","X":492,"Y":571},{"Bonus":0,"Continent":"K54","ID":3198,"Name":"#0014 Oscylator","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3198","ServerKey":"pl181","X":498,"Y":560},{"Bonus":0,"Continent":"K55","ID":3199,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3199","ServerKey":"pl181","X":514,"Y":535},{"Bonus":0,"Continent":"K44","ID":3200,"Name":"167 Sao Paulo","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3200","ServerKey":"pl181","X":480,"Y":475},{"Bonus":0,"Continent":"K54","ID":3201,"Name":"Wioska 0005","PlayerID":1804724,"Points":10188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3201","ServerKey":"pl181","X":407,"Y":514},{"Bonus":0,"Continent":"K54","ID":3202,"Name":"076. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3202","ServerKey":"pl181","X":494,"Y":511},{"Bonus":0,"Continent":"K53","ID":3203,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3203","ServerKey":"pl181","X":378,"Y":520},{"Bonus":0,"Continent":"K54","ID":3204,"Name":"Oponka","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3204","ServerKey":"pl181","X":440,"Y":564},{"Bonus":0,"Continent":"K54","ID":3205,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3205","ServerKey":"pl181","X":420,"Y":592},{"Bonus":0,"Continent":"K44","ID":3206,"Name":"092 San Bernardino","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3206","ServerKey":"pl181","X":472,"Y":459},{"Bonus":0,"Continent":"K55","ID":3207,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3207","ServerKey":"pl181","X":520,"Y":549},{"Bonus":0,"Continent":"K55","ID":3208,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3208","ServerKey":"pl181","X":521,"Y":546},{"Bonus":0,"Continent":"K44","ID":3209,"Name":"0062 ~21~","PlayerID":3909522,"Points":7252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3209","ServerKey":"pl181","X":440,"Y":437},{"Bonus":0,"Continent":"K55","ID":3210,"Name":"- 113 -","PlayerID":849018239,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3210","ServerKey":"pl181","X":544,"Y":578},{"Bonus":0,"Continent":"K44","ID":3211,"Name":"Osada","PlayerID":699098531,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3211","ServerKey":"pl181","X":489,"Y":437},{"Bonus":0,"Continent":"K55","ID":3212,"Name":"- 061 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3212","ServerKey":"pl181","X":543,"Y":579},{"Bonus":0,"Continent":"K55","ID":3213,"Name":"Oczko w gƂowie","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3213","ServerKey":"pl181","X":504,"Y":525},{"Bonus":0,"Continent":"K44","ID":3214,"Name":"035 Memphis","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3214","ServerKey":"pl181","X":438,"Y":436},{"Bonus":0,"Continent":"K44","ID":3215,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3215","ServerKey":"pl181","X":496,"Y":487},{"Bonus":0,"Continent":"K44","ID":3216,"Name":"034 Jacksonville","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3216","ServerKey":"pl181","X":437,"Y":440},{"Bonus":2,"Continent":"K45","ID":3217,"Name":"EREGION f","PlayerID":8155296,"Points":10324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3217","ServerKey":"pl181","X":539,"Y":466},{"Bonus":0,"Continent":"K45","ID":3218,"Name":"003","PlayerID":849070464,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3218","ServerKey":"pl181","X":560,"Y":482},{"Bonus":2,"Continent":"K44","ID":3219,"Name":"140 Zacatecas","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3219","ServerKey":"pl181","X":473,"Y":489},{"Bonus":0,"Continent":"K45","ID":3220,"Name":"Szlachcic","PlayerID":698867446,"Points":9459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3220","ServerKey":"pl181","X":563,"Y":475},{"Bonus":0,"Continent":"K45","ID":3221,"Name":"Wioska 523","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3221","ServerKey":"pl181","X":557,"Y":468},{"Bonus":7,"Continent":"K55","ID":3222,"Name":"Szlachcic 061","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3222","ServerKey":"pl181","X":545,"Y":531},{"Bonus":0,"Continent":"K45","ID":3223,"Name":"0071","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3223","ServerKey":"pl181","X":565,"Y":487},{"Bonus":0,"Continent":"K44","ID":3224,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3224","ServerKey":"pl181","X":494,"Y":439},{"Bonus":9,"Continent":"K54","ID":3225,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":11896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3225","ServerKey":"pl181","X":468,"Y":508},{"Bonus":0,"Continent":"K45","ID":3226,"Name":"003","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3226","ServerKey":"pl181","X":549,"Y":406},{"Bonus":0,"Continent":"K44","ID":3227,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3227","ServerKey":"pl181","X":495,"Y":440},{"Bonus":0,"Continent":"K44","ID":3228,"Name":"113 Prince Rupert","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3228","ServerKey":"pl181","X":477,"Y":487},{"Bonus":0,"Continent":"K44","ID":3229,"Name":"Osada","PlayerID":699098531,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3229","ServerKey":"pl181","X":488,"Y":438},{"Bonus":0,"Continent":"K44","ID":3230,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3230","ServerKey":"pl181","X":474,"Y":496},{"Bonus":0,"Continent":"K54","ID":3231,"Name":"Stage group B","PlayerID":698971484,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3231","ServerKey":"pl181","X":440,"Y":539},{"Bonus":0,"Continent":"K44","ID":3232,"Name":"A#054#","PlayerID":698807570,"Points":10692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3232","ServerKey":"pl181","X":415,"Y":474},{"Bonus":0,"Continent":"K54","ID":3233,"Name":"XnX-01","PlayerID":699170684,"Points":7994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3233","ServerKey":"pl181","X":439,"Y":541},{"Bonus":0,"Continent":"K44","ID":3234,"Name":"120.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3234","ServerKey":"pl181","X":488,"Y":490},{"Bonus":0,"Continent":"K44","ID":3235,"Name":"K44 027","PlayerID":698290577,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3235","ServerKey":"pl181","X":413,"Y":496},{"Bonus":0,"Continent":"K44","ID":3236,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3236","ServerKey":"pl181","X":485,"Y":497},{"Bonus":0,"Continent":"K54","ID":3237,"Name":"Fajna 022","PlayerID":698290577,"Points":2091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3237","ServerKey":"pl181","X":446,"Y":549},{"Bonus":0,"Continent":"K55","ID":3238,"Name":"CALL 1040","PlayerID":699784536,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3238","ServerKey":"pl181","X":550,"Y":542},{"Bonus":0,"Continent":"K54","ID":3239,"Name":"Winter is coming","PlayerID":698971484,"Points":6089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3239","ServerKey":"pl181","X":441,"Y":548},{"Bonus":0,"Continent":"K55","ID":3240,"Name":"CALL 945","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3240","ServerKey":"pl181","X":546,"Y":557},{"Bonus":0,"Continent":"K43","ID":3241,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3241","ServerKey":"pl181","X":393,"Y":440},{"Bonus":0,"Continent":"K44","ID":3242,"Name":"A024","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3242","ServerKey":"pl181","X":487,"Y":416},{"Bonus":0,"Continent":"K43","ID":3243,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3243","ServerKey":"pl181","X":389,"Y":445},{"Bonus":0,"Continent":"K55","ID":3244,"Name":"[071] Sayhello","PlayerID":848985692,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3244","ServerKey":"pl181","X":548,"Y":501},{"Bonus":0,"Continent":"K44","ID":3245,"Name":"0097","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3245","ServerKey":"pl181","X":459,"Y":438},{"Bonus":0,"Continent":"K54","ID":3246,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3246","ServerKey":"pl181","X":477,"Y":561},{"Bonus":0,"Continent":"K44","ID":3247,"Name":"3xxxxxxxxxxxx","PlayerID":9291984,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3247","ServerKey":"pl181","X":462,"Y":429},{"Bonus":0,"Continent":"K54","ID":3248,"Name":"Fajna003","PlayerID":698971484,"Points":7408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3248","ServerKey":"pl181","X":452,"Y":556},{"Bonus":0,"Continent":"K55","ID":3249,"Name":"Shot Down","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3249","ServerKey":"pl181","X":501,"Y":520},{"Bonus":0,"Continent":"K44","ID":3250,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3250","ServerKey":"pl181","X":420,"Y":465},{"Bonus":0,"Continent":"K55","ID":3251,"Name":"#0005 GƂębiej","PlayerID":9272054,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3251","ServerKey":"pl181","X":501,"Y":559},{"Bonus":7,"Continent":"K55","ID":3253,"Name":"013W Osada","PlayerID":8323711,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3253","ServerKey":"pl181","X":562,"Y":511},{"Bonus":0,"Continent":"K56","ID":3254,"Name":"004 Asgard","PlayerID":699272880,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3254","ServerKey":"pl181","X":603,"Y":566},{"Bonus":0,"Continent":"K54","ID":3255,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3255","ServerKey":"pl181","X":432,"Y":510},{"Bonus":0,"Continent":"K56","ID":3256,"Name":"003 Heviz","PlayerID":699272880,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3256","ServerKey":"pl181","X":604,"Y":562},{"Bonus":0,"Continent":"K45","ID":3257,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3257","ServerKey":"pl181","X":504,"Y":441},{"Bonus":5,"Continent":"K45","ID":3258,"Name":".:131:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3258","ServerKey":"pl181","X":516,"Y":418},{"Bonus":0,"Continent":"K54","ID":3259,"Name":"Suppi","PlayerID":699856962,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3259","ServerKey":"pl181","X":441,"Y":529},{"Bonus":0,"Continent":"K54","ID":3260,"Name":"Nostra","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3260","ServerKey":"pl181","X":458,"Y":571},{"Bonus":0,"Continent":"K54","ID":3261,"Name":"Suppi","PlayerID":699856962,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3261","ServerKey":"pl181","X":442,"Y":527},{"Bonus":0,"Continent":"K54","ID":3262,"Name":"KIELBA 067","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3262","ServerKey":"pl181","X":471,"Y":578},{"Bonus":0,"Continent":"K54","ID":3263,"Name":"Otim","PlayerID":699443920,"Points":3103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3263","ServerKey":"pl181","X":433,"Y":557},{"Bonus":0,"Continent":"K44","ID":3265,"Name":"066.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3265","ServerKey":"pl181","X":498,"Y":486},{"Bonus":6,"Continent":"K54","ID":3266,"Name":"Jaaak! Kung fu panda (;","PlayerID":699785935,"Points":8403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3266","ServerKey":"pl181","X":484,"Y":510},{"Bonus":0,"Continent":"K54","ID":3267,"Name":"Jak tam chƂopie, ƛpisz?","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3267","ServerKey":"pl181","X":465,"Y":541},{"Bonus":0,"Continent":"K54","ID":3268,"Name":"Sparta_54","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3268","ServerKey":"pl181","X":481,"Y":585},{"Bonus":6,"Continent":"K44","ID":3269,"Name":"081. xDDDDDDDDDD","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3269","ServerKey":"pl181","X":476,"Y":496},{"Bonus":0,"Continent":"K54","ID":3270,"Name":"002. Taterka","PlayerID":699856962,"Points":4400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3270","ServerKey":"pl181","X":427,"Y":549},{"Bonus":0,"Continent":"K45","ID":3271,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3271","ServerKey":"pl181","X":515,"Y":411},{"Bonus":0,"Continent":"K54","ID":3272,"Name":"Wioska 4","PlayerID":8779575,"Points":3342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3272","ServerKey":"pl181","X":426,"Y":551},{"Bonus":0,"Continent":"K55","ID":3273,"Name":"lady anima","PlayerID":699703642,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3273","ServerKey":"pl181","X":512,"Y":582},{"Bonus":0,"Continent":"K44","ID":3274,"Name":"Brat447","PlayerID":699262350,"Points":7717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3274","ServerKey":"pl181","X":444,"Y":487},{"Bonus":0,"Continent":"K55","ID":3275,"Name":"022. Wodnik","PlayerID":699703642,"Points":6517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3275","ServerKey":"pl181","X":507,"Y":584},{"Bonus":0,"Continent":"K55","ID":3276,"Name":"To nie nasz klimat","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3276","ServerKey":"pl181","X":504,"Y":519},{"Bonus":0,"Continent":"K45","ID":3277,"Name":"C010","PlayerID":699299123,"Points":10172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3277","ServerKey":"pl181","X":520,"Y":459},{"Bonus":0,"Continent":"K55","ID":3278,"Name":"- 054 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3278","ServerKey":"pl181","X":541,"Y":572},{"Bonus":5,"Continent":"K44","ID":3279,"Name":"028 Texarkana","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3279","ServerKey":"pl181","X":435,"Y":477},{"Bonus":0,"Continent":"K45","ID":3280,"Name":"CCC","PlayerID":849091084,"Points":9061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3280","ServerKey":"pl181","X":527,"Y":455},{"Bonus":0,"Continent":"K44","ID":3281,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3281","ServerKey":"pl181","X":428,"Y":458},{"Bonus":4,"Continent":"K44","ID":3282,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3282","ServerKey":"pl181","X":495,"Y":413},{"Bonus":0,"Continent":"K45","ID":3283,"Name":"Joms 031","PlayerID":699756210,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3283","ServerKey":"pl181","X":521,"Y":420},{"Bonus":0,"Continent":"K45","ID":3284,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3284","ServerKey":"pl181","X":501,"Y":437},{"Bonus":0,"Continent":"K45","ID":3285,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3285","ServerKey":"pl181","X":526,"Y":411},{"Bonus":0,"Continent":"K44","ID":3286,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3286","ServerKey":"pl181","X":485,"Y":473},{"Bonus":0,"Continent":"K45","ID":3287,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3287","ServerKey":"pl181","X":533,"Y":420},{"Bonus":0,"Continent":"K55","ID":3288,"Name":"023","PlayerID":8191129,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3288","ServerKey":"pl181","X":548,"Y":531},{"Bonus":0,"Continent":"K45","ID":3290,"Name":"026","PlayerID":699250676,"Points":6291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3290","ServerKey":"pl181","X":539,"Y":454},{"Bonus":0,"Continent":"K44","ID":3291,"Name":"B035","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3291","ServerKey":"pl181","X":489,"Y":458},{"Bonus":0,"Continent":"K44","ID":3292,"Name":"Monetki","PlayerID":699098531,"Points":10355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3292","ServerKey":"pl181","X":482,"Y":412},{"Bonus":0,"Continent":"K35","ID":3293,"Name":".002.","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3293","ServerKey":"pl181","X":500,"Y":376},{"Bonus":0,"Continent":"K34","ID":3294,"Name":"Feed me more 005","PlayerID":699756210,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3294","ServerKey":"pl181","X":499,"Y":378},{"Bonus":0,"Continent":"K55","ID":3295,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3295","ServerKey":"pl181","X":522,"Y":502},{"Bonus":8,"Continent":"K54","ID":3296,"Name":"006","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3296","ServerKey":"pl181","X":414,"Y":509},{"Bonus":0,"Continent":"K55","ID":3297,"Name":"004 | Lord Axen - rumbling,","PlayerID":8000875,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3297","ServerKey":"pl181","X":556,"Y":559},{"Bonus":0,"Continent":"K54","ID":3298,"Name":"#0041 Zamczysko","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3298","ServerKey":"pl181","X":495,"Y":556},{"Bonus":5,"Continent":"K54","ID":3299,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3299","ServerKey":"pl181","X":494,"Y":557},{"Bonus":0,"Continent":"K55","ID":3300,"Name":"047 |","PlayerID":8000875,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3300","ServerKey":"pl181","X":554,"Y":565},{"Bonus":0,"Continent":"K45","ID":3301,"Name":"016","PlayerID":699788305,"Points":9386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3301","ServerKey":"pl181","X":529,"Y":434},{"Bonus":0,"Continent":"K45","ID":3302,"Name":"Minas Anor 021","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3302","ServerKey":"pl181","X":578,"Y":460},{"Bonus":0,"Continent":"K45","ID":3303,"Name":"K45 - 005","PlayerID":6510480,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3303","ServerKey":"pl181","X":559,"Y":466},{"Bonus":0,"Continent":"K45","ID":3304,"Name":"[144] North","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3304","ServerKey":"pl181","X":576,"Y":465},{"Bonus":0,"Continent":"K54","ID":3305,"Name":"MaltaƄskie Tango!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3305","ServerKey":"pl181","X":495,"Y":508},{"Bonus":0,"Continent":"K54","ID":3307,"Name":"014 Fiona","PlayerID":698290577,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3307","ServerKey":"pl181","X":447,"Y":507},{"Bonus":7,"Continent":"K45","ID":3308,"Name":"Joms 023","PlayerID":699756210,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3308","ServerKey":"pl181","X":522,"Y":416},{"Bonus":0,"Continent":"K45","ID":3310,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3310","ServerKey":"pl181","X":534,"Y":420},{"Bonus":0,"Continent":"K54","ID":3311,"Name":"Zero Stresu","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3311","ServerKey":"pl181","X":445,"Y":535},{"Bonus":0,"Continent":"K54","ID":3312,"Name":"F037","PlayerID":699189792,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3312","ServerKey":"pl181","X":489,"Y":522},{"Bonus":0,"Continent":"K54","ID":3313,"Name":"szlachcic","PlayerID":698971484,"Points":3633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3313","ServerKey":"pl181","X":442,"Y":540},{"Bonus":0,"Continent":"K44","ID":3314,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3314","ServerKey":"pl181","X":489,"Y":423},{"Bonus":0,"Continent":"K54","ID":3315,"Name":"Winter is coming","PlayerID":698971484,"Points":1622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3315","ServerKey":"pl181","X":440,"Y":544},{"Bonus":0,"Continent":"K55","ID":3316,"Name":"Mzm32","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3316","ServerKey":"pl181","X":545,"Y":530},{"Bonus":0,"Continent":"K55","ID":3317,"Name":"[057] Jota","PlayerID":848985692,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3317","ServerKey":"pl181","X":532,"Y":505},{"Bonus":0,"Continent":"K45","ID":3318,"Name":"014 Espana","PlayerID":849031818,"Points":5410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3318","ServerKey":"pl181","X":534,"Y":499},{"Bonus":0,"Continent":"K45","ID":3319,"Name":"B014","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3319","ServerKey":"pl181","X":562,"Y":487},{"Bonus":0,"Continent":"K54","ID":3320,"Name":"Mniejsze zƂo 0065","PlayerID":699794765,"Points":7186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3320","ServerKey":"pl181","X":416,"Y":504},{"Bonus":0,"Continent":"K45","ID":3321,"Name":"B015","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3321","ServerKey":"pl181","X":560,"Y":492},{"Bonus":0,"Continent":"K55","ID":3322,"Name":"- 100 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3322","ServerKey":"pl181","X":545,"Y":578},{"Bonus":0,"Continent":"K44","ID":3323,"Name":"...Just like that","PlayerID":699723284,"Points":6165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3323","ServerKey":"pl181","X":467,"Y":476},{"Bonus":4,"Continent":"K44","ID":3324,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3324","ServerKey":"pl181","X":479,"Y":429},{"Bonus":0,"Continent":"K44","ID":3325,"Name":"?+44 76 Wierre Effroy","PlayerID":698361257,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3325","ServerKey":"pl181","X":466,"Y":478},{"Bonus":0,"Continent":"K44","ID":3326,"Name":"019 Spokane","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3326","ServerKey":"pl181","X":438,"Y":474},{"Bonus":0,"Continent":"K44","ID":3327,"Name":"B006","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3327","ServerKey":"pl181","X":486,"Y":447},{"Bonus":1,"Continent":"K55","ID":3328,"Name":"Gattacka","PlayerID":699298370,"Points":10560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3328","ServerKey":"pl181","X":580,"Y":517},{"Bonus":0,"Continent":"K44","ID":3329,"Name":"+44 64 Villeurbanne Gratte Ciel","PlayerID":698361257,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3329","ServerKey":"pl181","X":441,"Y":466},{"Bonus":0,"Continent":"K55","ID":3330,"Name":"12*","PlayerID":699664910,"Points":7075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3330","ServerKey":"pl181","X":565,"Y":545},{"Bonus":0,"Continent":"K54","ID":3331,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3331","ServerKey":"pl181","X":469,"Y":510},{"Bonus":0,"Continent":"K54","ID":3332,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":4509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3332","ServerKey":"pl181","X":468,"Y":513},{"Bonus":0,"Continent":"K55","ID":3333,"Name":"- 071 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3333","ServerKey":"pl181","X":543,"Y":578},{"Bonus":0,"Continent":"K45","ID":3334,"Name":".achim.","PlayerID":6936607,"Points":10925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3334","ServerKey":"pl181","X":533,"Y":451},{"Bonus":0,"Continent":"K54","ID":3335,"Name":"F009","PlayerID":699189792,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3335","ServerKey":"pl181","X":496,"Y":546},{"Bonus":0,"Continent":"K53","ID":3336,"Name":"014.ZdM","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3336","ServerKey":"pl181","X":389,"Y":560},{"Bonus":0,"Continent":"K55","ID":3337,"Name":"Amator","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3337","ServerKey":"pl181","X":510,"Y":543},{"Bonus":0,"Continent":"K45","ID":3338,"Name":".achim.","PlayerID":6936607,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3338","ServerKey":"pl181","X":532,"Y":453},{"Bonus":0,"Continent":"K53","ID":3339,"Name":"015 DoNotCry.ZdM","PlayerID":699382126,"Points":8945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3339","ServerKey":"pl181","X":392,"Y":562},{"Bonus":0,"Continent":"K45","ID":3340,"Name":"GRUBASKI","PlayerID":8155296,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3340","ServerKey":"pl181","X":536,"Y":454},{"Bonus":0,"Continent":"K55","ID":3341,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3341","ServerKey":"pl181","X":582,"Y":522},{"Bonus":0,"Continent":"K45","ID":3342,"Name":"Gotham","PlayerID":848986287,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3342","ServerKey":"pl181","X":545,"Y":443},{"Bonus":0,"Continent":"K45","ID":3343,"Name":"101.","PlayerID":8788366,"Points":8553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3343","ServerKey":"pl181","X":502,"Y":484},{"Bonus":0,"Continent":"K54","ID":3344,"Name":"090 MEHEHE 2","PlayerID":6116940,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3344","ServerKey":"pl181","X":491,"Y":588},{"Bonus":0,"Continent":"K54","ID":3345,"Name":"031","PlayerID":8369778,"Points":8190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3345","ServerKey":"pl181","X":489,"Y":593},{"Bonus":0,"Continent":"K54","ID":3346,"Name":"BETI 007","PlayerID":8539216,"Points":2562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3346","ServerKey":"pl181","X":460,"Y":570},{"Bonus":0,"Continent":"K45","ID":3347,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3347","ServerKey":"pl181","X":521,"Y":483},{"Bonus":0,"Continent":"K54","ID":3348,"Name":"Fajna 040","PlayerID":8539216,"Points":1765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3348","ServerKey":"pl181","X":461,"Y":566},{"Bonus":0,"Continent":"K44","ID":3349,"Name":"0030","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3349","ServerKey":"pl181","X":463,"Y":468},{"Bonus":0,"Continent":"K45","ID":3350,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3350","ServerKey":"pl181","X":579,"Y":498},{"Bonus":0,"Continent":"K54","ID":3351,"Name":"SsSs","PlayerID":1536625,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3351","ServerKey":"pl181","X":451,"Y":503},{"Bonus":0,"Continent":"K55","ID":3352,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3352","ServerKey":"pl181","X":516,"Y":547},{"Bonus":0,"Continent":"K44","ID":3353,"Name":"0063 L","PlayerID":3909522,"Points":5418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3353","ServerKey":"pl181","X":452,"Y":430},{"Bonus":0,"Continent":"K44","ID":3354,"Name":"00633","PlayerID":3909522,"Points":6013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3354","ServerKey":"pl181","X":443,"Y":430},{"Bonus":0,"Continent":"K54","ID":3355,"Name":"Sparta_45","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3355","ServerKey":"pl181","X":481,"Y":574},{"Bonus":0,"Continent":"K45","ID":3356,"Name":"JK1","PlayerID":699368887,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3356","ServerKey":"pl181","X":560,"Y":450},{"Bonus":0,"Continent":"K44","ID":3357,"Name":"131 Oaxaca","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3357","ServerKey":"pl181","X":483,"Y":485},{"Bonus":0,"Continent":"K45","ID":3358,"Name":"184","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3358","ServerKey":"pl181","X":562,"Y":444},{"Bonus":0,"Continent":"K45","ID":3359,"Name":"9.8 Sherwood","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3359","ServerKey":"pl181","X":551,"Y":442},{"Bonus":0,"Continent":"K54","ID":3360,"Name":"Sparta_27","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3360","ServerKey":"pl181","X":486,"Y":586},{"Bonus":0,"Continent":"K45","ID":3361,"Name":"A08","PlayerID":699368887,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3361","ServerKey":"pl181","X":549,"Y":456},{"Bonus":0,"Continent":"K55","ID":3362,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3362","ServerKey":"pl181","X":517,"Y":583},{"Bonus":2,"Continent":"K45","ID":3363,"Name":"JM5","PlayerID":699368887,"Points":8202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3363","ServerKey":"pl181","X":563,"Y":459},{"Bonus":0,"Continent":"K44","ID":3364,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3364","ServerKey":"pl181","X":450,"Y":455},{"Bonus":0,"Continent":"K44","ID":3365,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3365","ServerKey":"pl181","X":494,"Y":460},{"Bonus":0,"Continent":"K45","ID":3366,"Name":"187","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3366","ServerKey":"pl181","X":570,"Y":402},{"Bonus":0,"Continent":"K44","ID":3367,"Name":"P Konfederacja","PlayerID":848915730,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3367","ServerKey":"pl181","X":460,"Y":447},{"Bonus":0,"Continent":"K54","ID":3368,"Name":"0597","PlayerID":698659980,"Points":7918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3368","ServerKey":"pl181","X":465,"Y":544},{"Bonus":0,"Continent":"K54","ID":3369,"Name":"0106","PlayerID":698971484,"Points":8196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3369","ServerKey":"pl181","X":464,"Y":546},{"Bonus":0,"Continent":"K55","ID":3370,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3370","ServerKey":"pl181","X":554,"Y":522},{"Bonus":0,"Continent":"K54","ID":3371,"Name":"026","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3371","ServerKey":"pl181","X":422,"Y":517},{"Bonus":0,"Continent":"K55","ID":3372,"Name":"Szlachcic 016","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3372","ServerKey":"pl181","X":552,"Y":526},{"Bonus":0,"Continent":"K44","ID":3373,"Name":"K44 019","PlayerID":698290577,"Points":7797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3373","ServerKey":"pl181","X":433,"Y":494},{"Bonus":0,"Continent":"K55","ID":3374,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3374","ServerKey":"pl181","X":554,"Y":521},{"Bonus":0,"Continent":"K54","ID":3375,"Name":"~035.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3375","ServerKey":"pl181","X":489,"Y":565},{"Bonus":0,"Continent":"K45","ID":3376,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3376","ServerKey":"pl181","X":543,"Y":493},{"Bonus":0,"Continent":"K44","ID":3377,"Name":"+44 61 Samer","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3377","ServerKey":"pl181","X":418,"Y":465},{"Bonus":0,"Continent":"K45","ID":3378,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":8450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3378","ServerKey":"pl181","X":546,"Y":484},{"Bonus":0,"Continent":"K55","ID":3379,"Name":"005","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3379","ServerKey":"pl181","X":516,"Y":543},{"Bonus":0,"Continent":"K44","ID":3380,"Name":"0062 ~2~","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3380","ServerKey":"pl181","X":441,"Y":438},{"Bonus":0,"Continent":"K45","ID":3381,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3381","ServerKey":"pl181","X":577,"Y":493},{"Bonus":0,"Continent":"K44","ID":3382,"Name":"Suppi","PlayerID":699856962,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3382","ServerKey":"pl181","X":438,"Y":445},{"Bonus":0,"Continent":"K45","ID":3383,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3383","ServerKey":"pl181","X":503,"Y":441},{"Bonus":0,"Continent":"K55","ID":3384,"Name":"P.001","PlayerID":873575,"Points":10170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3384","ServerKey":"pl181","X":537,"Y":564},{"Bonus":0,"Continent":"K44","ID":3385,"Name":"Osada","PlayerID":699098531,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3385","ServerKey":"pl181","X":494,"Y":446},{"Bonus":0,"Continent":"K55","ID":3386,"Name":"P.009","PlayerID":873575,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3386","ServerKey":"pl181","X":535,"Y":562},{"Bonus":0,"Continent":"K55","ID":3387,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3387","ServerKey":"pl181","X":543,"Y":520},{"Bonus":0,"Continent":"K44","ID":3388,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3388","ServerKey":"pl181","X":446,"Y":452},{"Bonus":0,"Continent":"K55","ID":3389,"Name":"CALL 1036","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3389","ServerKey":"pl181","X":553,"Y":542},{"Bonus":0,"Continent":"K44","ID":3390,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3390","ServerKey":"pl181","X":448,"Y":446},{"Bonus":0,"Continent":"K54","ID":3391,"Name":"F035","PlayerID":699189792,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3391","ServerKey":"pl181","X":491,"Y":535},{"Bonus":0,"Continent":"K54","ID":3392,"Name":"084","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3392","ServerKey":"pl181","X":414,"Y":523},{"Bonus":8,"Continent":"K44","ID":3393,"Name":"x17","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3393","ServerKey":"pl181","X":432,"Y":440},{"Bonus":0,"Continent":"K54","ID":3394,"Name":"072","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3394","ServerKey":"pl181","X":417,"Y":514},{"Bonus":0,"Continent":"K54","ID":3395,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3395","ServerKey":"pl181","X":447,"Y":527},{"Bonus":0,"Continent":"K54","ID":3396,"Name":"Atena","PlayerID":698704189,"Points":8749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3396","ServerKey":"pl181","X":461,"Y":557},{"Bonus":5,"Continent":"K45","ID":3397,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3397","ServerKey":"pl181","X":521,"Y":477},{"Bonus":0,"Continent":"K54","ID":3398,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3398","ServerKey":"pl181","X":460,"Y":559},{"Bonus":0,"Continent":"K54","ID":3399,"Name":"NOT?","PlayerID":9236866,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3399","ServerKey":"pl181","X":459,"Y":555},{"Bonus":0,"Continent":"K54","ID":3400,"Name":"Selonari","PlayerID":698704189,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3400","ServerKey":"pl181","X":460,"Y":561},{"Bonus":0,"Continent":"K54","ID":3401,"Name":"Fajna 013","PlayerID":699868002,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3401","ServerKey":"pl181","X":446,"Y":564},{"Bonus":0,"Continent":"K54","ID":3402,"Name":"043. ALFI","PlayerID":8539216,"Points":1184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3402","ServerKey":"pl181","X":462,"Y":564},{"Bonus":0,"Continent":"K54","ID":3403,"Name":"Fajna 026","PlayerID":699868002,"Points":7383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3403","ServerKey":"pl181","X":445,"Y":554},{"Bonus":0,"Continent":"K55","ID":3405,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3405","ServerKey":"pl181","X":537,"Y":508},{"Bonus":0,"Continent":"K54","ID":3406,"Name":"jack herrer","PlayerID":9167250,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3406","ServerKey":"pl181","X":402,"Y":568},{"Bonus":0,"Continent":"K55","ID":3407,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3407","ServerKey":"pl181","X":543,"Y":530},{"Bonus":0,"Continent":"K54","ID":3408,"Name":"C Zach 0011 KozƂów","PlayerID":849084740,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3408","ServerKey":"pl181","X":407,"Y":576},{"Bonus":0,"Continent":"K55","ID":3409,"Name":"|063|Ooo","PlayerID":699664910,"Points":8548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3409","ServerKey":"pl181","X":582,"Y":524},{"Bonus":0,"Continent":"K44","ID":3410,"Name":"055 Lanai City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3410","ServerKey":"pl181","X":456,"Y":465},{"Bonus":0,"Continent":"K44","ID":3411,"Name":"Osada","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3411","ServerKey":"pl181","X":495,"Y":451},{"Bonus":0,"Continent":"K44","ID":3412,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":8645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3412","ServerKey":"pl181","X":459,"Y":457},{"Bonus":0,"Continent":"K45","ID":3413,"Name":"024","PlayerID":699788305,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3413","ServerKey":"pl181","X":533,"Y":429},{"Bonus":0,"Continent":"K45","ID":3414,"Name":"017 M Diler to marka","PlayerID":698829590,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3414","ServerKey":"pl181","X":591,"Y":461},{"Bonus":0,"Continent":"K44","ID":3415,"Name":"x18","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3415","ServerKey":"pl181","X":423,"Y":449},{"Bonus":0,"Continent":"K45","ID":3416,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3416","ServerKey":"pl181","X":575,"Y":499},{"Bonus":0,"Continent":"K55","ID":3417,"Name":"- 066 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3417","ServerKey":"pl181","X":537,"Y":570},{"Bonus":0,"Continent":"K55","ID":3418,"Name":"Winter is coming","PlayerID":699364813,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3418","ServerKey":"pl181","X":502,"Y":581},{"Bonus":0,"Continent":"K34","ID":3419,"Name":"Tretogor","PlayerID":699433558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3419","ServerKey":"pl181","X":498,"Y":389},{"Bonus":0,"Continent":"K44","ID":3420,"Name":"+44 83 Lyon La Guillotiere","PlayerID":698361257,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3420","ServerKey":"pl181","X":435,"Y":482},{"Bonus":0,"Continent":"K45","ID":3421,"Name":"A039","PlayerID":699299123,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3421","ServerKey":"pl181","X":502,"Y":426},{"Bonus":0,"Continent":"K44","ID":3422,"Name":"A029","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3422","ServerKey":"pl181","X":495,"Y":418},{"Bonus":0,"Continent":"K55","ID":3423,"Name":"033","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3423","ServerKey":"pl181","X":551,"Y":532},{"Bonus":0,"Continent":"K54","ID":3424,"Name":"KIELBA 096","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3424","ServerKey":"pl181","X":464,"Y":589},{"Bonus":0,"Continent":"K54","ID":3425,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3425","ServerKey":"pl181","X":487,"Y":503},{"Bonus":0,"Continent":"K54","ID":3426,"Name":"KIELBA 039","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3426","ServerKey":"pl181","X":456,"Y":589},{"Bonus":0,"Continent":"K54","ID":3427,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3427","ServerKey":"pl181","X":435,"Y":502},{"Bonus":0,"Continent":"K65","ID":3428,"Name":"ƚmieszki","PlayerID":3454753,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3428","ServerKey":"pl181","X":531,"Y":618},{"Bonus":3,"Continent":"K45","ID":3429,"Name":"Joms 033","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3429","ServerKey":"pl181","X":535,"Y":417},{"Bonus":0,"Continent":"K55","ID":3430,"Name":"Kamyk","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3430","ServerKey":"pl181","X":592,"Y":577},{"Bonus":0,"Continent":"K55","ID":3431,"Name":"K55","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3431","ServerKey":"pl181","X":543,"Y":515},{"Bonus":0,"Continent":"K45","ID":3432,"Name":"064 Hiszpania","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3432","ServerKey":"pl181","X":575,"Y":462},{"Bonus":0,"Continent":"K44","ID":3433,"Name":"PRO8L3M","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3433","ServerKey":"pl181","X":454,"Y":499},{"Bonus":0,"Continent":"K45","ID":3434,"Name":"!Wioska 500","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3434","ServerKey":"pl181","X":576,"Y":459},{"Bonus":0,"Continent":"K54","ID":3435,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3435","ServerKey":"pl181","X":468,"Y":510},{"Bonus":0,"Continent":"K54","ID":3436,"Name":"HiA","PlayerID":8779575,"Points":2614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3436","ServerKey":"pl181","X":431,"Y":552},{"Bonus":0,"Continent":"K54","ID":3437,"Name":"FF004","PlayerID":699189792,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3437","ServerKey":"pl181","X":466,"Y":517},{"Bonus":0,"Continent":"K54","ID":3438,"Name":"Front_18","PlayerID":2585846,"Points":9261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3438","ServerKey":"pl181","X":457,"Y":527},{"Bonus":0,"Continent":"K44","ID":3439,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3439","ServerKey":"pl181","X":490,"Y":439},{"Bonus":0,"Continent":"K55","ID":3440,"Name":"- 041 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3440","ServerKey":"pl181","X":534,"Y":572},{"Bonus":0,"Continent":"K44","ID":3441,"Name":"B003","PlayerID":699299123,"Points":10111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3441","ServerKey":"pl181","X":487,"Y":446},{"Bonus":0,"Continent":"K55","ID":3442,"Name":"Wioska 414","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3442","ServerKey":"pl181","X":556,"Y":507},{"Bonus":0,"Continent":"K44","ID":3443,"Name":"009991","PlayerID":3909522,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3443","ServerKey":"pl181","X":470,"Y":433},{"Bonus":0,"Continent":"K44","ID":3444,"Name":"099 Douglas","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3444","ServerKey":"pl181","X":479,"Y":464},{"Bonus":1,"Continent":"K45","ID":3445,"Name":"x10","PlayerID":8459255,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3445","ServerKey":"pl181","X":563,"Y":477},{"Bonus":0,"Continent":"K44","ID":3446,"Name":"Monetki","PlayerID":699098531,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3446","ServerKey":"pl181","X":475,"Y":429},{"Bonus":0,"Continent":"K45","ID":3447,"Name":"A01 Oslo","PlayerID":699272880,"Points":10355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3447","ServerKey":"pl181","X":578,"Y":499},{"Bonus":0,"Continent":"K55","ID":3448,"Name":"[096]","PlayerID":8000875,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3448","ServerKey":"pl181","X":562,"Y":540},{"Bonus":0,"Continent":"K45","ID":3449,"Name":"10 Albania","PlayerID":8925695,"Points":8914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3449","ServerKey":"pl181","X":580,"Y":494},{"Bonus":0,"Continent":"K45","ID":3450,"Name":"011","PlayerID":849070464,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3450","ServerKey":"pl181","X":553,"Y":487},{"Bonus":0,"Continent":"K44","ID":3451,"Name":"004 Chicago","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3451","ServerKey":"pl181","X":427,"Y":417},{"Bonus":0,"Continent":"K54","ID":3452,"Name":"Thunderstruck","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3452","ServerKey":"pl181","X":499,"Y":520},{"Bonus":9,"Continent":"K45","ID":3453,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3453","ServerKey":"pl181","X":576,"Y":498},{"Bonus":0,"Continent":"K44","ID":3454,"Name":"Suppi","PlayerID":699856962,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3454","ServerKey":"pl181","X":428,"Y":423},{"Bonus":0,"Continent":"K54","ID":3455,"Name":"Oki-1","PlayerID":699265922,"Points":6808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3455","ServerKey":"pl181","X":437,"Y":531},{"Bonus":0,"Continent":"K44","ID":3456,"Name":"0002 Fc Gold Paw","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3456","ServerKey":"pl181","X":487,"Y":470},{"Bonus":7,"Continent":"K54","ID":3457,"Name":"0027 K54 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3457","ServerKey":"pl181","X":499,"Y":560},{"Bonus":0,"Continent":"K44","ID":3458,"Name":"173 Buenos Aires","PlayerID":1497168,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3458","ServerKey":"pl181","X":483,"Y":480},{"Bonus":0,"Continent":"K45","ID":3459,"Name":"040.","PlayerID":849094609,"Points":9461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3459","ServerKey":"pl181","X":574,"Y":459},{"Bonus":0,"Continent":"K54","ID":3460,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3460","ServerKey":"pl181","X":485,"Y":548},{"Bonus":0,"Continent":"K54","ID":3461,"Name":"C 002.","PlayerID":849028088,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3461","ServerKey":"pl181","X":450,"Y":567},{"Bonus":0,"Continent":"K54","ID":3462,"Name":"Aleartis","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3462","ServerKey":"pl181","X":486,"Y":547},{"Bonus":0,"Continent":"K45","ID":3463,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3463","ServerKey":"pl181","X":563,"Y":497},{"Bonus":0,"Continent":"K55","ID":3464,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3464","ServerKey":"pl181","X":563,"Y":504},{"Bonus":4,"Continent":"K45","ID":3465,"Name":"077 Orzech wƂoski","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3465","ServerKey":"pl181","X":551,"Y":475},{"Bonus":0,"Continent":"K45","ID":3466,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3466","ServerKey":"pl181","X":568,"Y":493},{"Bonus":0,"Continent":"K55","ID":3467,"Name":"10005","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3467","ServerKey":"pl181","X":531,"Y":564},{"Bonus":0,"Continent":"K54","ID":3468,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3468","ServerKey":"pl181","X":490,"Y":553},{"Bonus":0,"Continent":"K44","ID":3469,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3469","ServerKey":"pl181","X":489,"Y":422},{"Bonus":5,"Continent":"K55","ID":3470,"Name":"Valhalla","PlayerID":699861004,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3470","ServerKey":"pl181","X":502,"Y":508},{"Bonus":0,"Continent":"K54","ID":3471,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3471","ServerKey":"pl181","X":489,"Y":557},{"Bonus":0,"Continent":"K55","ID":3472,"Name":"022","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3472","ServerKey":"pl181","X":573,"Y":547},{"Bonus":0,"Continent":"K44","ID":3473,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3473","ServerKey":"pl181","X":445,"Y":491},{"Bonus":0,"Continent":"K54","ID":3474,"Name":"0647","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3474","ServerKey":"pl181","X":477,"Y":547},{"Bonus":0,"Continent":"K45","ID":3475,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3475","ServerKey":"pl181","X":521,"Y":436},{"Bonus":0,"Continent":"K54","ID":3476,"Name":"keepo","PlayerID":848967710,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3476","ServerKey":"pl181","X":485,"Y":526},{"Bonus":0,"Continent":"K44","ID":3477,"Name":"...Just like that","PlayerID":699723284,"Points":5366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3477","ServerKey":"pl181","X":454,"Y":490},{"Bonus":0,"Continent":"K44","ID":3478,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3478","ServerKey":"pl181","X":491,"Y":463},{"Bonus":0,"Continent":"K55","ID":3479,"Name":"0084","PlayerID":699432672,"Points":9683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3479","ServerKey":"pl181","X":537,"Y":533},{"Bonus":0,"Continent":"K45","ID":3481,"Name":"[148] North","PlayerID":848985692,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3481","ServerKey":"pl181","X":576,"Y":469},{"Bonus":0,"Continent":"K55","ID":3482,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3482","ServerKey":"pl181","X":543,"Y":527},{"Bonus":0,"Continent":"K54","ID":3483,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3483","ServerKey":"pl181","X":436,"Y":518},{"Bonus":0,"Continent":"K54","ID":3484,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3484","ServerKey":"pl181","X":432,"Y":500},{"Bonus":0,"Continent":"K44","ID":3485,"Name":"0048","PlayerID":848913037,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3485","ServerKey":"pl181","X":456,"Y":469},{"Bonus":4,"Continent":"K45","ID":3486,"Name":"Joms 026","PlayerID":699756210,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3486","ServerKey":"pl181","X":526,"Y":421},{"Bonus":0,"Continent":"K44","ID":3487,"Name":"B014","PlayerID":699299123,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3487","ServerKey":"pl181","X":481,"Y":444},{"Bonus":0,"Continent":"K54","ID":3488,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3488","ServerKey":"pl181","X":431,"Y":501},{"Bonus":0,"Continent":"K46","ID":3489,"Name":"[227] WEST","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3489","ServerKey":"pl181","X":605,"Y":451},{"Bonus":0,"Continent":"K44","ID":3490,"Name":"102 Toronto","PlayerID":1497168,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3490","ServerKey":"pl181","X":475,"Y":483},{"Bonus":0,"Continent":"K44","ID":3491,"Name":"K44 028","PlayerID":698290577,"Points":10179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3491","ServerKey":"pl181","X":415,"Y":491},{"Bonus":0,"Continent":"K44","ID":3492,"Name":"081 Jackson","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3492","ServerKey":"pl181","X":468,"Y":473},{"Bonus":0,"Continent":"K54","ID":3493,"Name":"005 Jak tam chƂopie, ƛpisz?","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3493","ServerKey":"pl181","X":464,"Y":543},{"Bonus":0,"Continent":"K55","ID":3494,"Name":"P.028","PlayerID":873575,"Points":9929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3494","ServerKey":"pl181","X":535,"Y":567},{"Bonus":0,"Continent":"K45","ID":3495,"Name":"05 Portugalia","PlayerID":8925695,"Points":8162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3495","ServerKey":"pl181","X":581,"Y":487},{"Bonus":0,"Continent":"K54","ID":3496,"Name":"Fajna 037","PlayerID":8539216,"Points":1002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3496","ServerKey":"pl181","X":455,"Y":570},{"Bonus":0,"Continent":"K45","ID":3497,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3497","ServerKey":"pl181","X":524,"Y":487},{"Bonus":0,"Continent":"K45","ID":3498,"Name":"4.Antykwariat","PlayerID":8649412,"Points":6710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3498","ServerKey":"pl181","X":504,"Y":450},{"Bonus":0,"Continent":"K64","ID":3499,"Name":"0331","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3499","ServerKey":"pl181","X":448,"Y":608},{"Bonus":0,"Continent":"K54","ID":3500,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3500","ServerKey":"pl181","X":491,"Y":506},{"Bonus":0,"Continent":"K45","ID":3501,"Name":"013","PlayerID":699788305,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3501","ServerKey":"pl181","X":527,"Y":431},{"Bonus":0,"Continent":"K45","ID":3502,"Name":"095.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3502","ServerKey":"pl181","X":502,"Y":481},{"Bonus":0,"Continent":"K45","ID":3503,"Name":"021","PlayerID":699788305,"Points":8969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3503","ServerKey":"pl181","X":530,"Y":434},{"Bonus":0,"Continent":"K55","ID":3504,"Name":"037. Aries","PlayerID":699703642,"Points":9513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3504","ServerKey":"pl181","X":500,"Y":578},{"Bonus":0,"Continent":"K45","ID":3505,"Name":"K45 - 011","PlayerID":6510480,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3505","ServerKey":"pl181","X":570,"Y":467},{"Bonus":0,"Continent":"K64","ID":3506,"Name":"#020 A","PlayerID":33900,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3506","ServerKey":"pl181","X":463,"Y":614},{"Bonus":0,"Continent":"K45","ID":3507,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3507","ServerKey":"pl181","X":511,"Y":447},{"Bonus":0,"Continent":"K44","ID":3508,"Name":"Monetki","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3508","ServerKey":"pl181","X":478,"Y":414},{"Bonus":0,"Continent":"K44","ID":3509,"Name":"Szlachcic","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3509","ServerKey":"pl181","X":487,"Y":464},{"Bonus":0,"Continent":"K54","ID":3510,"Name":"#0016 Kleszcz","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3510","ServerKey":"pl181","X":491,"Y":563},{"Bonus":0,"Continent":"K44","ID":3511,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3511","ServerKey":"pl181","X":478,"Y":440},{"Bonus":0,"Continent":"K54","ID":3512,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3512","ServerKey":"pl181","X":433,"Y":524},{"Bonus":0,"Continent":"K44","ID":3513,"Name":"205 Montego Bay","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3513","ServerKey":"pl181","X":466,"Y":462},{"Bonus":0,"Continent":"K44","ID":3514,"Name":"Garfii","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3514","ServerKey":"pl181","X":434,"Y":457},{"Bonus":0,"Continent":"K45","ID":3515,"Name":"C045","PlayerID":699299123,"Points":3822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3515","ServerKey":"pl181","X":534,"Y":458},{"Bonus":0,"Continent":"K55","ID":3516,"Name":"F022","PlayerID":699189792,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3516","ServerKey":"pl181","X":500,"Y":532},{"Bonus":0,"Continent":"K44","ID":3517,"Name":"105. DefinitelyRlyKoniecKonfy???","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3517","ServerKey":"pl181","X":451,"Y":492},{"Bonus":0,"Continent":"K54","ID":3518,"Name":"*Ateny_38","PlayerID":2585846,"Points":2240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3518","ServerKey":"pl181","X":471,"Y":522},{"Bonus":0,"Continent":"K55","ID":3519,"Name":"14*","PlayerID":699664910,"Points":7370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3519","ServerKey":"pl181","X":566,"Y":544},{"Bonus":0,"Continent":"K55","ID":3520,"Name":"029 |","PlayerID":8000875,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3520","ServerKey":"pl181","X":564,"Y":562},{"Bonus":0,"Continent":"K55","ID":3521,"Name":"032. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3521","ServerKey":"pl181","X":570,"Y":533},{"Bonus":0,"Continent":"K55","ID":3522,"Name":"Yogi","PlayerID":2808172,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3522","ServerKey":"pl181","X":539,"Y":530},{"Bonus":0,"Continent":"K44","ID":3524,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3524","ServerKey":"pl181","X":499,"Y":448},{"Bonus":0,"Continent":"K45","ID":3525,"Name":"Wioska pawela76","PlayerID":848986287,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3525","ServerKey":"pl181","X":536,"Y":433},{"Bonus":0,"Continent":"K54","ID":3526,"Name":"2 c3risa","PlayerID":8779575,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3526","ServerKey":"pl181","X":443,"Y":566},{"Bonus":0,"Continent":"K54","ID":3527,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3527","ServerKey":"pl181","X":448,"Y":559},{"Bonus":4,"Continent":"K44","ID":3528,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3528","ServerKey":"pl181","X":487,"Y":429},{"Bonus":0,"Continent":"K45","ID":3529,"Name":"A058","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3529","ServerKey":"pl181","X":500,"Y":424},{"Bonus":0,"Continent":"K55","ID":3530,"Name":"ladyanima","PlayerID":699703642,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3530","ServerKey":"pl181","X":511,"Y":574},{"Bonus":0,"Continent":"K55","ID":3531,"Name":"0.St. Louis","PlayerID":698215322,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3531","ServerKey":"pl181","X":521,"Y":588},{"Bonus":0,"Continent":"K54","ID":3532,"Name":"*Ateny_02","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3532","ServerKey":"pl181","X":474,"Y":537},{"Bonus":0,"Continent":"K54","ID":3533,"Name":"NOT?","PlayerID":9236866,"Points":4689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3533","ServerKey":"pl181","X":459,"Y":540},{"Bonus":0,"Continent":"K45","ID":3534,"Name":"Szlachcic","PlayerID":699098531,"Points":9422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3534","ServerKey":"pl181","X":501,"Y":470},{"Bonus":0,"Continent":"K56","ID":3535,"Name":"*005*","PlayerID":698670524,"Points":8552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3535","ServerKey":"pl181","X":608,"Y":508},{"Bonus":0,"Continent":"K45","ID":3536,"Name":"#Raichu","PlayerID":699795378,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3536","ServerKey":"pl181","X":565,"Y":464},{"Bonus":0,"Continent":"K44","ID":3537,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3537","ServerKey":"pl181","X":484,"Y":453},{"Bonus":0,"Continent":"K45","ID":3538,"Name":"WesoƂych ƚwiąt","PlayerID":699298370,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3538","ServerKey":"pl181","X":581,"Y":481},{"Bonus":0,"Continent":"K45","ID":3539,"Name":"!Wioska 504","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3539","ServerKey":"pl181","X":575,"Y":457},{"Bonus":0,"Continent":"K55","ID":3540,"Name":"Szlachcic 039","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3540","ServerKey":"pl181","X":568,"Y":525},{"Bonus":0,"Continent":"K54","ID":3541,"Name":"HibaST","PlayerID":8779575,"Points":3314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3541","ServerKey":"pl181","X":427,"Y":552},{"Bonus":0,"Continent":"K45","ID":3542,"Name":".achim.","PlayerID":6936607,"Points":6584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3542","ServerKey":"pl181","X":529,"Y":454},{"Bonus":0,"Continent":"K55","ID":3543,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3543","ServerKey":"pl181","X":518,"Y":584},{"Bonus":0,"Continent":"K54","ID":3544,"Name":"Fajna 069","PlayerID":8539216,"Points":4713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3544","ServerKey":"pl181","X":453,"Y":564},{"Bonus":0,"Continent":"K35","ID":3545,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3545","ServerKey":"pl181","X":529,"Y":395},{"Bonus":0,"Continent":"K45","ID":3546,"Name":"Wioska 12","PlayerID":699385139,"Points":5681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3546","ServerKey":"pl181","X":527,"Y":495},{"Bonus":0,"Continent":"K55","ID":3547,"Name":"Wioska leito2","PlayerID":466800,"Points":3854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3547","ServerKey":"pl181","X":562,"Y":506},{"Bonus":0,"Continent":"K54","ID":3548,"Name":"Oster","PlayerID":699443920,"Points":9226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3548","ServerKey":"pl181","X":443,"Y":556},{"Bonus":9,"Continent":"K45","ID":3549,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3549","ServerKey":"pl181","X":516,"Y":490},{"Bonus":0,"Continent":"K45","ID":3550,"Name":"016 Rammstein","PlayerID":849031818,"Points":7219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3550","ServerKey":"pl181","X":562,"Y":463},{"Bonus":0,"Continent":"K55","ID":3551,"Name":"82k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3551","ServerKey":"pl181","X":540,"Y":529},{"Bonus":0,"Continent":"K55","ID":3552,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3552","ServerKey":"pl181","X":598,"Y":568},{"Bonus":0,"Continent":"K54","ID":3553,"Name":"071. ALFI","PlayerID":8539216,"Points":784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3553","ServerKey":"pl181","X":477,"Y":559},{"Bonus":0,"Continent":"K54","ID":3554,"Name":"NOT?","PlayerID":9236866,"Points":6701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3554","ServerKey":"pl181","X":430,"Y":544},{"Bonus":0,"Continent":"K44","ID":3555,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3555","ServerKey":"pl181","X":477,"Y":453},{"Bonus":0,"Continent":"K54","ID":3556,"Name":"keepo","PlayerID":848967710,"Points":4257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3556","ServerKey":"pl181","X":476,"Y":513},{"Bonus":0,"Continent":"K54","ID":3557,"Name":"NOT?","PlayerID":9236866,"Points":8431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3557","ServerKey":"pl181","X":419,"Y":534},{"Bonus":0,"Continent":"K54","ID":3558,"Name":"Fajna 027","PlayerID":698971484,"Points":4600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3558","ServerKey":"pl181","X":446,"Y":556},{"Bonus":0,"Continent":"K55","ID":3559,"Name":"012 New Bark Town","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3559","ServerKey":"pl181","X":590,"Y":501},{"Bonus":0,"Continent":"K54","ID":3560,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3560","ServerKey":"pl181","X":454,"Y":562},{"Bonus":0,"Continent":"K44","ID":3561,"Name":"086 Huntsville","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3561","ServerKey":"pl181","X":480,"Y":455},{"Bonus":0,"Continent":"K45","ID":3562,"Name":"B013","PlayerID":8138506,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3562","ServerKey":"pl181","X":559,"Y":486},{"Bonus":0,"Continent":"K44","ID":3563,"Name":"193 Guayaquil","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3563","ServerKey":"pl181","X":464,"Y":463},{"Bonus":0,"Continent":"K54","ID":3564,"Name":"C 007 Wieliczka","PlayerID":849084740,"Points":7422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3564","ServerKey":"pl181","X":418,"Y":574},{"Bonus":0,"Continent":"K55","ID":3565,"Name":"Amator","PlayerID":848915531,"Points":5078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3565","ServerKey":"pl181","X":523,"Y":576},{"Bonus":0,"Continent":"K55","ID":3566,"Name":"kathare","PlayerID":873575,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3566","ServerKey":"pl181","X":542,"Y":544},{"Bonus":0,"Continent":"K54","ID":3567,"Name":"024. ALFI","PlayerID":8539216,"Points":1428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3567","ServerKey":"pl181","X":477,"Y":568},{"Bonus":0,"Continent":"K54","ID":3568,"Name":"Wioska Ania12345","PlayerID":699364813,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3568","ServerKey":"pl181","X":471,"Y":582},{"Bonus":0,"Continent":"K54","ID":3569,"Name":"0123","PlayerID":698659980,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3569","ServerKey":"pl181","X":463,"Y":548},{"Bonus":0,"Continent":"K45","ID":3570,"Name":"222 Hobart","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3570","ServerKey":"pl181","X":531,"Y":446},{"Bonus":0,"Continent":"K45","ID":3571,"Name":"slow","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3571","ServerKey":"pl181","X":535,"Y":481},{"Bonus":0,"Continent":"K55","ID":3572,"Name":"Summer Slam ~ 010","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3572","ServerKey":"pl181","X":520,"Y":547},{"Bonus":0,"Continent":"K44","ID":3573,"Name":"Sarajewo","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3573","ServerKey":"pl181","X":424,"Y":452},{"Bonus":0,"Continent":"K55","ID":3574,"Name":"- 032 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3574","ServerKey":"pl181","X":537,"Y":578},{"Bonus":0,"Continent":"K45","ID":3575,"Name":"003","PlayerID":1424656,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3575","ServerKey":"pl181","X":551,"Y":402},{"Bonus":0,"Continent":"K55","ID":3576,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3576","ServerKey":"pl181","X":568,"Y":539},{"Bonus":0,"Continent":"K54","ID":3577,"Name":"Kasyno","PlayerID":7249451,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3577","ServerKey":"pl181","X":444,"Y":516},{"Bonus":0,"Continent":"K45","ID":3579,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3579","ServerKey":"pl181","X":547,"Y":476},{"Bonus":0,"Continent":"K55","ID":3580,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3580","ServerKey":"pl181","X":513,"Y":564},{"Bonus":0,"Continent":"K55","ID":3581,"Name":"04*kit pszczeli","PlayerID":699664910,"Points":7280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3581","ServerKey":"pl181","X":572,"Y":545},{"Bonus":0,"Continent":"K45","ID":3582,"Name":"125.","PlayerID":8788366,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3582","ServerKey":"pl181","X":511,"Y":483},{"Bonus":0,"Continent":"K45","ID":3583,"Name":".achim.","PlayerID":6936607,"Points":8337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3583","ServerKey":"pl181","X":540,"Y":422},{"Bonus":0,"Continent":"K55","ID":3584,"Name":"Wioska","PlayerID":712216,"Points":2203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3584","ServerKey":"pl181","X":545,"Y":520},{"Bonus":0,"Continent":"K55","ID":3585,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3585","ServerKey":"pl181","X":504,"Y":571},{"Bonus":0,"Continent":"K55","ID":3586,"Name":"0054 K55 and987 OZDR","PlayerID":3613413,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3586","ServerKey":"pl181","X":506,"Y":562},{"Bonus":0,"Continent":"K44","ID":3587,"Name":"B020","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3587","ServerKey":"pl181","X":488,"Y":451},{"Bonus":0,"Continent":"K45","ID":3588,"Name":".:008:. Magia","PlayerID":8649412,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3588","ServerKey":"pl181","X":515,"Y":408},{"Bonus":0,"Continent":"K44","ID":3589,"Name":"005. Marzyciel Shrek","PlayerID":698290577,"Points":6357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3589","ServerKey":"pl181","X":463,"Y":494},{"Bonus":0,"Continent":"K55","ID":3590,"Name":"002 Wioska fan zmijki","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3590","ServerKey":"pl181","X":571,"Y":553},{"Bonus":0,"Continent":"K44","ID":3591,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3591","ServerKey":"pl181","X":412,"Y":493},{"Bonus":0,"Continent":"K45","ID":3592,"Name":"RHUN","PlayerID":8155296,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3592","ServerKey":"pl181","X":533,"Y":473},{"Bonus":0,"Continent":"K45","ID":3593,"Name":".:032:. Oliwa","PlayerID":8649412,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3593","ServerKey":"pl181","X":512,"Y":412},{"Bonus":0,"Continent":"K44","ID":3594,"Name":"Suppi","PlayerID":699856962,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3594","ServerKey":"pl181","X":436,"Y":447},{"Bonus":0,"Continent":"K54","ID":3595,"Name":"KIELBA 059","PlayerID":699342219,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3595","ServerKey":"pl181","X":461,"Y":581},{"Bonus":0,"Continent":"K54","ID":3596,"Name":"BETI 008","PlayerID":8539216,"Points":1377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3596","ServerKey":"pl181","X":457,"Y":566},{"Bonus":0,"Continent":"K55","ID":3597,"Name":"K55","PlayerID":848967710,"Points":9399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3597","ServerKey":"pl181","X":540,"Y":511},{"Bonus":0,"Continent":"K55","ID":3599,"Name":"ladyanima","PlayerID":699703642,"Points":9064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3599","ServerKey":"pl181","X":512,"Y":572},{"Bonus":0,"Continent":"K54","ID":3600,"Name":"Front_06","PlayerID":2585846,"Points":3818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3600","ServerKey":"pl181","X":461,"Y":522},{"Bonus":0,"Continent":"K54","ID":3601,"Name":"Sparta_70","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3601","ServerKey":"pl181","X":467,"Y":582},{"Bonus":0,"Continent":"K44","ID":3602,"Name":"082 Vancouver","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3602","ServerKey":"pl181","X":453,"Y":453},{"Bonus":0,"Continent":"K55","ID":3603,"Name":"026. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3603","ServerKey":"pl181","X":575,"Y":535},{"Bonus":0,"Continent":"K44","ID":3604,"Name":"I Wioska z Czarodziejem","PlayerID":698349125,"Points":5662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3604","ServerKey":"pl181","X":441,"Y":476},{"Bonus":0,"Continent":"K45","ID":3605,"Name":"Szlachcic","PlayerID":698867446,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3605","ServerKey":"pl181","X":568,"Y":487},{"Bonus":0,"Continent":"K45","ID":3606,"Name":"3 KRÓLESTWO","PlayerID":8155296,"Points":10590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3606","ServerKey":"pl181","X":537,"Y":460},{"Bonus":0,"Continent":"K54","ID":3607,"Name":"~055.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3607","ServerKey":"pl181","X":490,"Y":573},{"Bonus":0,"Continent":"K44","ID":3608,"Name":"A028","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3608","ServerKey":"pl181","X":492,"Y":410},{"Bonus":0,"Continent":"K54","ID":3609,"Name":"(013)","PlayerID":9236866,"Points":9101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3609","ServerKey":"pl181","X":421,"Y":526},{"Bonus":0,"Continent":"K44","ID":3610,"Name":"118 Mississauga","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3610","ServerKey":"pl181","X":476,"Y":487},{"Bonus":0,"Continent":"K45","ID":3611,"Name":"ADEN","PlayerID":698588535,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3611","ServerKey":"pl181","X":559,"Y":440},{"Bonus":0,"Continent":"K54","ID":3612,"Name":"KIELBA 132","PlayerID":699342219,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3612","ServerKey":"pl181","X":454,"Y":570},{"Bonus":0,"Continent":"K44","ID":3613,"Name":"Brat447","PlayerID":699262350,"Points":4951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3613","ServerKey":"pl181","X":442,"Y":495},{"Bonus":7,"Continent":"K44","ID":3614,"Name":"145 Tuxla Gutierezz","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3614","ServerKey":"pl181","X":464,"Y":485},{"Bonus":0,"Continent":"K44","ID":3615,"Name":"K44 014","PlayerID":698290577,"Points":7674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3615","ServerKey":"pl181","X":433,"Y":487},{"Bonus":0,"Continent":"K44","ID":3616,"Name":"150 Gwatemala","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3616","ServerKey":"pl181","X":457,"Y":456},{"Bonus":0,"Continent":"K54","ID":3617,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3617","ServerKey":"pl181","X":459,"Y":510},{"Bonus":0,"Continent":"K44","ID":3618,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3618","ServerKey":"pl181","X":449,"Y":458},{"Bonus":0,"Continent":"K55","ID":3619,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3619","ServerKey":"pl181","X":518,"Y":560},{"Bonus":0,"Continent":"K44","ID":3620,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3620","ServerKey":"pl181","X":445,"Y":452},{"Bonus":0,"Continent":"K44","ID":3621,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3621","ServerKey":"pl181","X":465,"Y":433},{"Bonus":0,"Continent":"K54","ID":3622,"Name":"Front_16","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3622","ServerKey":"pl181","X":458,"Y":528},{"Bonus":0,"Continent":"K44","ID":3623,"Name":"091 San Diego","PlayerID":1497168,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3623","ServerKey":"pl181","X":473,"Y":458},{"Bonus":0,"Continent":"K45","ID":3624,"Name":"A040","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3624","ServerKey":"pl181","X":505,"Y":431},{"Bonus":0,"Continent":"K54","ID":3625,"Name":"Sparta_50","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3625","ServerKey":"pl181","X":479,"Y":579},{"Bonus":0,"Continent":"K55","ID":3626,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3626","ServerKey":"pl181","X":540,"Y":501},{"Bonus":0,"Continent":"K45","ID":3627,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3627","ServerKey":"pl181","X":527,"Y":415},{"Bonus":0,"Continent":"K45","ID":3628,"Name":"A057","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3628","ServerKey":"pl181","X":503,"Y":422},{"Bonus":0,"Continent":"K44","ID":3629,"Name":"0063 b3","PlayerID":3909522,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3629","ServerKey":"pl181","X":453,"Y":432},{"Bonus":0,"Continent":"K53","ID":3630,"Name":"NWO","PlayerID":849030226,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3630","ServerKey":"pl181","X":388,"Y":516},{"Bonus":0,"Continent":"K44","ID":3631,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3631","ServerKey":"pl181","X":498,"Y":489},{"Bonus":0,"Continent":"K44","ID":3632,"Name":"Suppi","PlayerID":699856962,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3632","ServerKey":"pl181","X":445,"Y":447},{"Bonus":3,"Continent":"K45","ID":3634,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3634","ServerKey":"pl181","X":526,"Y":489},{"Bonus":0,"Continent":"K45","ID":3635,"Name":"Szlachcic","PlayerID":699098531,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3635","ServerKey":"pl181","X":503,"Y":468},{"Bonus":0,"Continent":"K44","ID":3636,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3636","ServerKey":"pl181","X":486,"Y":491},{"Bonus":0,"Continent":"K34","ID":3637,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3637","ServerKey":"pl181","X":479,"Y":377},{"Bonus":0,"Continent":"K44","ID":3638,"Name":"Osada","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3638","ServerKey":"pl181","X":498,"Y":454},{"Bonus":0,"Continent":"K45","ID":3639,"Name":"[050] Alfa ***","PlayerID":848985692,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3639","ServerKey":"pl181","X":542,"Y":486},{"Bonus":3,"Continent":"K54","ID":3640,"Name":"007","PlayerID":699856962,"Points":2892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3640","ServerKey":"pl181","X":434,"Y":549},{"Bonus":0,"Continent":"K44","ID":3641,"Name":"A047","PlayerID":699299123,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3641","ServerKey":"pl181","X":498,"Y":420},{"Bonus":0,"Continent":"K54","ID":3642,"Name":"Kasyno","PlayerID":7249451,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3642","ServerKey":"pl181","X":445,"Y":509},{"Bonus":0,"Continent":"K45","ID":3643,"Name":"006 Wizna","PlayerID":849031818,"Points":8526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3643","ServerKey":"pl181","X":567,"Y":489},{"Bonus":0,"Continent":"K55","ID":3644,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3644","ServerKey":"pl181","X":515,"Y":561},{"Bonus":0,"Continent":"K54","ID":3645,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3645","ServerKey":"pl181","X":425,"Y":513},{"Bonus":0,"Continent":"K55","ID":3646,"Name":"P.017Z","PlayerID":873575,"Points":10150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3646","ServerKey":"pl181","X":523,"Y":565},{"Bonus":8,"Continent":"K54","ID":3647,"Name":"Stage group B 2","PlayerID":698704189,"Points":9224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3647","ServerKey":"pl181","X":462,"Y":557},{"Bonus":0,"Continent":"K55","ID":3648,"Name":"Puzzle","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3648","ServerKey":"pl181","X":506,"Y":508},{"Bonus":0,"Continent":"K54","ID":3649,"Name":"COUSINS","PlayerID":699364813,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3649","ServerKey":"pl181","X":491,"Y":580},{"Bonus":0,"Continent":"K55","ID":3650,"Name":"030. Bieda","PlayerID":699703642,"Points":8930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3650","ServerKey":"pl181","X":504,"Y":587},{"Bonus":0,"Continent":"K44","ID":3651,"Name":"089 Colorado Springs","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3651","ServerKey":"pl181","X":477,"Y":456},{"Bonus":0,"Continent":"K55","ID":3652,"Name":"CALL 1080","PlayerID":699784536,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3652","ServerKey":"pl181","X":525,"Y":543},{"Bonus":0,"Continent":"K45","ID":3653,"Name":"018","PlayerID":699250676,"Points":10766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3653","ServerKey":"pl181","X":542,"Y":453},{"Bonus":0,"Continent":"K44","ID":3654,"Name":"PRO8L3M","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3654","ServerKey":"pl181","X":435,"Y":487},{"Bonus":0,"Continent":"K45","ID":3655,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3655","ServerKey":"pl181","X":509,"Y":439},{"Bonus":0,"Continent":"K45","ID":3656,"Name":"slow","PlayerID":848967710,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3656","ServerKey":"pl181","X":533,"Y":479},{"Bonus":0,"Continent":"K55","ID":3657,"Name":"JaamMwG 005","PlayerID":848987051,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3657","ServerKey":"pl181","X":527,"Y":523},{"Bonus":0,"Continent":"K45","ID":3658,"Name":"BBB","PlayerID":1006847,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3658","ServerKey":"pl181","X":549,"Y":427},{"Bonus":0,"Continent":"K54","ID":3659,"Name":"TROJA.13","PlayerID":8438707,"Points":4224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3659","ServerKey":"pl181","X":457,"Y":577},{"Bonus":0,"Continent":"K54","ID":3660,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3660","ServerKey":"pl181","X":426,"Y":534},{"Bonus":9,"Continent":"K44","ID":3661,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3661","ServerKey":"pl181","X":450,"Y":472},{"Bonus":0,"Continent":"K44","ID":3662,"Name":"033 Flagstaff","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3662","ServerKey":"pl181","X":450,"Y":461},{"Bonus":0,"Continent":"K44","ID":3663,"Name":"037","PlayerID":699510259,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3663","ServerKey":"pl181","X":428,"Y":488},{"Bonus":0,"Continent":"K54","ID":3664,"Name":"Zero Stresu","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3664","ServerKey":"pl181","X":446,"Y":535},{"Bonus":0,"Continent":"K44","ID":3665,"Name":"006 Fort Worth","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3665","ServerKey":"pl181","X":440,"Y":475},{"Bonus":0,"Continent":"K54","ID":3666,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3666","ServerKey":"pl181","X":475,"Y":564},{"Bonus":0,"Continent":"K55","ID":3667,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3667","ServerKey":"pl181","X":566,"Y":506},{"Bonus":0,"Continent":"K44","ID":3668,"Name":"Szlachcic","PlayerID":699098531,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3668","ServerKey":"pl181","X":498,"Y":481},{"Bonus":0,"Continent":"K64","ID":3669,"Name":"#017 S","PlayerID":33900,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3669","ServerKey":"pl181","X":472,"Y":606},{"Bonus":0,"Continent":"K54","ID":3670,"Name":"023","PlayerID":2585846,"Points":3276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3670","ServerKey":"pl181","X":464,"Y":525},{"Bonus":0,"Continent":"K54","ID":3671,"Name":"(022)","PlayerID":699846892,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3671","ServerKey":"pl181","X":424,"Y":544},{"Bonus":0,"Continent":"K55","ID":3672,"Name":"018","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3672","ServerKey":"pl181","X":572,"Y":549},{"Bonus":0,"Continent":"K55","ID":3673,"Name":"006","PlayerID":848915531,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3673","ServerKey":"pl181","X":513,"Y":532},{"Bonus":0,"Continent":"K55","ID":3674,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3674","ServerKey":"pl181","X":526,"Y":543},{"Bonus":0,"Continent":"K55","ID":3675,"Name":"Arabska noc","PlayerID":699785935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3675","ServerKey":"pl181","X":507,"Y":519},{"Bonus":0,"Continent":"K54","ID":3676,"Name":"046","PlayerID":698971484,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3676","ServerKey":"pl181","X":447,"Y":534},{"Bonus":0,"Continent":"K44","ID":3677,"Name":"Gravity","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3677","ServerKey":"pl181","X":422,"Y":458},{"Bonus":0,"Continent":"K65","ID":3678,"Name":"CALL 1014","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3678","ServerKey":"pl181","X":520,"Y":609},{"Bonus":0,"Continent":"K54","ID":3679,"Name":"090. ALFI","PlayerID":8539216,"Points":838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3679","ServerKey":"pl181","X":475,"Y":570},{"Bonus":0,"Continent":"K44","ID":3680,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3680","ServerKey":"pl181","X":412,"Y":490},{"Bonus":0,"Continent":"K55","ID":3682,"Name":"022","PlayerID":699189792,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3682","ServerKey":"pl181","X":530,"Y":574},{"Bonus":0,"Continent":"K55","ID":3683,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3683","ServerKey":"pl181","X":524,"Y":541},{"Bonus":0,"Continent":"K54","ID":3684,"Name":"091","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3684","ServerKey":"pl181","X":413,"Y":525},{"Bonus":0,"Continent":"K55","ID":3685,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3685","ServerKey":"pl181","X":560,"Y":501},{"Bonus":0,"Continent":"K45","ID":3686,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3686","ServerKey":"pl181","X":512,"Y":490},{"Bonus":5,"Continent":"K55","ID":3687,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3687","ServerKey":"pl181","X":516,"Y":579},{"Bonus":0,"Continent":"K54","ID":3688,"Name":"057. ALFI","PlayerID":8539216,"Points":1240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3688","ServerKey":"pl181","X":474,"Y":560},{"Bonus":0,"Continent":"K55","ID":3689,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3689","ServerKey":"pl181","X":536,"Y":542},{"Bonus":0,"Continent":"K45","ID":3690,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3690","ServerKey":"pl181","X":516,"Y":412},{"Bonus":0,"Continent":"K54","ID":3691,"Name":"020. PĂłlnica","PlayerID":699703642,"Points":9402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3691","ServerKey":"pl181","X":494,"Y":585},{"Bonus":0,"Continent":"K54","ID":3692,"Name":"0126","PlayerID":698659980,"Points":5491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3692","ServerKey":"pl181","X":463,"Y":553},{"Bonus":8,"Continent":"K55","ID":3693,"Name":"002 |","PlayerID":8000875,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3693","ServerKey":"pl181","X":563,"Y":558},{"Bonus":0,"Continent":"K45","ID":3694,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3694","ServerKey":"pl181","X":533,"Y":499},{"Bonus":0,"Continent":"K53","ID":3695,"Name":"NWO","PlayerID":849030226,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3695","ServerKey":"pl181","X":383,"Y":523},{"Bonus":0,"Continent":"K44","ID":3696,"Name":"Suppi","PlayerID":699856962,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3696","ServerKey":"pl181","X":434,"Y":451},{"Bonus":0,"Continent":"K45","ID":3697,"Name":"ADEN","PlayerID":698588535,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3697","ServerKey":"pl181","X":557,"Y":430},{"Bonus":0,"Continent":"K55","ID":3698,"Name":"|012|","PlayerID":873575,"Points":10439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3698","ServerKey":"pl181","X":555,"Y":571},{"Bonus":0,"Continent":"K54","ID":3699,"Name":"013","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3699","ServerKey":"pl181","X":418,"Y":517},{"Bonus":0,"Continent":"K44","ID":3700,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3700","ServerKey":"pl181","X":495,"Y":437},{"Bonus":0,"Continent":"K54","ID":3701,"Name":"...","PlayerID":699781762,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3701","ServerKey":"pl181","X":477,"Y":532},{"Bonus":0,"Continent":"K44","ID":3702,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3702","ServerKey":"pl181","X":493,"Y":494},{"Bonus":0,"Continent":"K54","ID":3703,"Name":"#0114 Krzywowierzba-Kolonia","PlayerID":9272054,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3703","ServerKey":"pl181","X":489,"Y":569},{"Bonus":0,"Continent":"K44","ID":3704,"Name":"K44 018","PlayerID":698290577,"Points":8894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3704","ServerKey":"pl181","X":434,"Y":493},{"Bonus":0,"Continent":"K54","ID":3705,"Name":"Brat447","PlayerID":699262350,"Points":5623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3705","ServerKey":"pl181","X":459,"Y":506},{"Bonus":0,"Continent":"K45","ID":3706,"Name":"Bramborowa dolina 004","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3706","ServerKey":"pl181","X":536,"Y":487},{"Bonus":0,"Continent":"K45","ID":3707,"Name":"C039","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3707","ServerKey":"pl181","X":536,"Y":457},{"Bonus":0,"Continent":"K45","ID":3708,"Name":"ADEN","PlayerID":698588535,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3708","ServerKey":"pl181","X":563,"Y":440},{"Bonus":0,"Continent":"K54","ID":3709,"Name":"F087","PlayerID":699189792,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3709","ServerKey":"pl181","X":488,"Y":534},{"Bonus":0,"Continent":"K55","ID":3710,"Name":"026 |","PlayerID":8000875,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3710","ServerKey":"pl181","X":558,"Y":549},{"Bonus":0,"Continent":"K45","ID":3711,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3711","ServerKey":"pl181","X":505,"Y":442},{"Bonus":0,"Continent":"K53","ID":3712,"Name":"A0303","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3712","ServerKey":"pl181","X":376,"Y":502},{"Bonus":0,"Continent":"K55","ID":3713,"Name":"Wioska 409","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3713","ServerKey":"pl181","X":559,"Y":524},{"Bonus":2,"Continent":"K45","ID":3714,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3714","ServerKey":"pl181","X":560,"Y":437},{"Bonus":0,"Continent":"K54","ID":3715,"Name":"Winter is coming","PlayerID":699856962,"Points":2360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3715","ServerKey":"pl181","X":439,"Y":552},{"Bonus":0,"Continent":"K55","ID":3716,"Name":"021 |","PlayerID":8000875,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3716","ServerKey":"pl181","X":564,"Y":560},{"Bonus":0,"Continent":"K54","ID":3717,"Name":"zx deflektor y","PlayerID":698971484,"Points":2018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3717","ServerKey":"pl181","X":440,"Y":547},{"Bonus":0,"Continent":"K44","ID":3718,"Name":"PRO8L3M","PlayerID":7491093,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3718","ServerKey":"pl181","X":453,"Y":493},{"Bonus":0,"Continent":"K54","ID":3719,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3719","ServerKey":"pl181","X":441,"Y":527},{"Bonus":0,"Continent":"K44","ID":3720,"Name":"SsSs","PlayerID":1536625,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3720","ServerKey":"pl181","X":464,"Y":499},{"Bonus":0,"Continent":"K45","ID":3721,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3721","ServerKey":"pl181","X":517,"Y":422},{"Bonus":0,"Continent":"K44","ID":3722,"Name":"?+44 86 Bollezeele","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3722","ServerKey":"pl181","X":463,"Y":487},{"Bonus":0,"Continent":"K44","ID":3723,"Name":"Szlachcic","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3723","ServerKey":"pl181","X":492,"Y":481},{"Bonus":0,"Continent":"K55","ID":3724,"Name":"Z02 Saqqaq","PlayerID":699272880,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3724","ServerKey":"pl181","X":562,"Y":514},{"Bonus":0,"Continent":"K44","ID":3725,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3725","ServerKey":"pl181","X":479,"Y":415},{"Bonus":0,"Continent":"K54","ID":3726,"Name":"lady","PlayerID":699703642,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3726","ServerKey":"pl181","X":498,"Y":577},{"Bonus":0,"Continent":"K54","ID":3727,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3727","ServerKey":"pl181","X":449,"Y":527},{"Bonus":0,"Continent":"K54","ID":3728,"Name":"021","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3728","ServerKey":"pl181","X":421,"Y":512},{"Bonus":0,"Continent":"K44","ID":3729,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3729","ServerKey":"pl181","X":484,"Y":430},{"Bonus":8,"Continent":"K44","ID":3730,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3730","ServerKey":"pl181","X":463,"Y":497},{"Bonus":0,"Continent":"K54","ID":3731,"Name":"Fajna 069","PlayerID":8539216,"Points":6164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3731","ServerKey":"pl181","X":455,"Y":565},{"Bonus":0,"Continent":"K45","ID":3732,"Name":"X D02","PlayerID":3909522,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3732","ServerKey":"pl181","X":547,"Y":459},{"Bonus":0,"Continent":"K44","ID":3733,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3733","ServerKey":"pl181","X":435,"Y":463},{"Bonus":0,"Continent":"K44","ID":3734,"Name":"036 Reno","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3734","ServerKey":"pl181","X":442,"Y":472},{"Bonus":0,"Continent":"K55","ID":3735,"Name":"060 |","PlayerID":8000875,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3735","ServerKey":"pl181","X":548,"Y":510},{"Bonus":0,"Continent":"K45","ID":3736,"Name":"Tesa 11","PlayerID":698845189,"Points":6878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3736","ServerKey":"pl181","X":531,"Y":476},{"Bonus":0,"Continent":"K45","ID":3737,"Name":".:132:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3737","ServerKey":"pl181","X":516,"Y":416},{"Bonus":0,"Continent":"K54","ID":3738,"Name":"003","PlayerID":849092723,"Points":9275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3738","ServerKey":"pl181","X":490,"Y":525},{"Bonus":0,"Continent":"K45","ID":3739,"Name":"029","PlayerID":849031818,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3739","ServerKey":"pl181","X":554,"Y":490},{"Bonus":0,"Continent":"K55","ID":3740,"Name":"Prywatny bal","PlayerID":699785935,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3740","ServerKey":"pl181","X":507,"Y":507},{"Bonus":0,"Continent":"K55","ID":3741,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3741","ServerKey":"pl181","X":573,"Y":566},{"Bonus":0,"Continent":"K45","ID":3742,"Name":"JF4","PlayerID":699368887,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3742","ServerKey":"pl181","X":554,"Y":457},{"Bonus":0,"Continent":"K55","ID":3743,"Name":"Ithilien","PlayerID":849091897,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3743","ServerKey":"pl181","X":571,"Y":518},{"Bonus":0,"Continent":"K45","ID":3744,"Name":"EEE Abadon","PlayerID":699347951,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3744","ServerKey":"pl181","X":565,"Y":477},{"Bonus":0,"Continent":"K55","ID":3745,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3745","ServerKey":"pl181","X":514,"Y":564},{"Bonus":0,"Continent":"K44","ID":3746,"Name":"PRO8L3M","PlayerID":7491093,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3746","ServerKey":"pl181","X":467,"Y":499},{"Bonus":0,"Continent":"K45","ID":3747,"Name":".:077:. Takmahal","PlayerID":848934935,"Points":6071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3747","ServerKey":"pl181","X":525,"Y":443},{"Bonus":8,"Continent":"K44","ID":3748,"Name":"SsSs","PlayerID":1536625,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3748","ServerKey":"pl181","X":424,"Y":493},{"Bonus":0,"Continent":"K53","ID":3749,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3749","ServerKey":"pl181","X":378,"Y":512},{"Bonus":0,"Continent":"K54","ID":3750,"Name":"079","PlayerID":699851427,"Points":10086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3750","ServerKey":"pl181","X":412,"Y":524},{"Bonus":7,"Continent":"K44","ID":3751,"Name":"Suppi","PlayerID":699856962,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3751","ServerKey":"pl181","X":438,"Y":449},{"Bonus":0,"Continent":"K44","ID":3752,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3752","ServerKey":"pl181","X":497,"Y":426},{"Bonus":0,"Continent":"K44","ID":3753,"Name":"Szlachcic","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3753","ServerKey":"pl181","X":489,"Y":477},{"Bonus":0,"Continent":"K45","ID":3754,"Name":"Marienburg 3","PlayerID":699355601,"Points":9148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3754","ServerKey":"pl181","X":528,"Y":483},{"Bonus":0,"Continent":"K55","ID":3755,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3755","ServerKey":"pl181","X":574,"Y":538},{"Bonus":0,"Continent":"K45","ID":3756,"Name":"Wioska Mitze","PlayerID":2485646,"Points":3139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3756","ServerKey":"pl181","X":522,"Y":431},{"Bonus":0,"Continent":"K55","ID":3757,"Name":"89k$ Grvvyq","PlayerID":699676005,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3757","ServerKey":"pl181","X":546,"Y":537},{"Bonus":0,"Continent":"K54","ID":3758,"Name":"008","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3758","ServerKey":"pl181","X":414,"Y":515},{"Bonus":0,"Continent":"K45","ID":3759,"Name":"-[018]- Distaghil Sar","PlayerID":849092827,"Points":6791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3759","ServerKey":"pl181","X":554,"Y":489},{"Bonus":0,"Continent":"K55","ID":3760,"Name":"Mzm28.","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3760","ServerKey":"pl181","X":553,"Y":520},{"Bonus":0,"Continent":"K44","ID":3761,"Name":"119 Churchill","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3761","ServerKey":"pl181","X":479,"Y":495},{"Bonus":0,"Continent":"K45","ID":3762,"Name":"-3-","PlayerID":699347951,"Points":10518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3762","ServerKey":"pl181","X":589,"Y":484},{"Bonus":0,"Continent":"K44","ID":3763,"Name":"+44 63 Dardilly","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3763","ServerKey":"pl181","X":434,"Y":466},{"Bonus":0,"Continent":"K45","ID":3764,"Name":"Joms 003","PlayerID":699756210,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3764","ServerKey":"pl181","X":525,"Y":421},{"Bonus":0,"Continent":"K44","ID":3765,"Name":"+44 73 Lyon La Duchere","PlayerID":698361257,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3765","ServerKey":"pl181","X":433,"Y":473},{"Bonus":0,"Continent":"K54","ID":3766,"Name":"Wioska kiss-my-axe","PlayerID":698971484,"Points":2971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3766","ServerKey":"pl181","X":440,"Y":549},{"Bonus":0,"Continent":"K45","ID":3767,"Name":"08 | Tej nie atakuj","PlayerID":849002091,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3767","ServerKey":"pl181","X":539,"Y":436},{"Bonus":0,"Continent":"K55","ID":3768,"Name":"TaƄcząc w ciemnoƛciach","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3768","ServerKey":"pl181","X":502,"Y":524},{"Bonus":0,"Continent":"K44","ID":3769,"Name":"134 Mexico City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3769","ServerKey":"pl181","X":478,"Y":481},{"Bonus":0,"Continent":"K45","ID":3770,"Name":"Joms 009","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3770","ServerKey":"pl181","X":518,"Y":420},{"Bonus":0,"Continent":"K44","ID":3771,"Name":"K44 023","PlayerID":698290577,"Points":9050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3771","ServerKey":"pl181","X":428,"Y":497},{"Bonus":0,"Continent":"K45","ID":3772,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3772","ServerKey":"pl181","X":534,"Y":496},{"Bonus":0,"Continent":"K45","ID":3773,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3773","ServerKey":"pl181","X":523,"Y":437},{"Bonus":0,"Continent":"K44","ID":3774,"Name":"0063 b15","PlayerID":3909522,"Points":10043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3774","ServerKey":"pl181","X":454,"Y":432},{"Bonus":0,"Continent":"K45","ID":3775,"Name":"xxx","PlayerID":698239813,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3775","ServerKey":"pl181","X":513,"Y":458},{"Bonus":0,"Continent":"K44","ID":3776,"Name":"+44 63 Caluire et Cuire","PlayerID":698361257,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3776","ServerKey":"pl181","X":431,"Y":466},{"Bonus":0,"Continent":"K54","ID":3777,"Name":"#0086 ChotyƂów","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3777","ServerKey":"pl181","X":475,"Y":554},{"Bonus":0,"Continent":"K45","ID":3778,"Name":"ADEN","PlayerID":698588535,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3778","ServerKey":"pl181","X":563,"Y":442},{"Bonus":0,"Continent":"K54","ID":3779,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3779","ServerKey":"pl181","X":475,"Y":562},{"Bonus":0,"Continent":"K55","ID":3780,"Name":"[124]","PlayerID":8000875,"Points":9760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3780","ServerKey":"pl181","X":564,"Y":535},{"Bonus":0,"Continent":"K54","ID":3781,"Name":"kathare","PlayerID":873575,"Points":10824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3781","ServerKey":"pl181","X":492,"Y":566},{"Bonus":0,"Continent":"K54","ID":3782,"Name":"Gratuluje mĂłzgu","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3782","ServerKey":"pl181","X":443,"Y":536},{"Bonus":3,"Continent":"K55","ID":3783,"Name":"009. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3783","ServerKey":"pl181","X":579,"Y":526},{"Bonus":0,"Continent":"K54","ID":3784,"Name":"kathare","PlayerID":873575,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3784","ServerKey":"pl181","X":492,"Y":569},{"Bonus":0,"Continent":"K53","ID":3785,"Name":"Knowhere","PlayerID":699723284,"Points":8007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3785","ServerKey":"pl181","X":391,"Y":506},{"Bonus":0,"Continent":"K44","ID":3786,"Name":"PRO8L3M","PlayerID":7491093,"Points":2202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3786","ServerKey":"pl181","X":422,"Y":495},{"Bonus":0,"Continent":"K45","ID":3787,"Name":"139","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3787","ServerKey":"pl181","X":563,"Y":421},{"Bonus":0,"Continent":"K55","ID":3788,"Name":"CALL 997","PlayerID":699784536,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3788","ServerKey":"pl181","X":544,"Y":539},{"Bonus":0,"Continent":"K54","ID":3789,"Name":"*Ateny_16","PlayerID":2585846,"Points":3025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3789","ServerKey":"pl181","X":470,"Y":525},{"Bonus":0,"Continent":"K44","ID":3790,"Name":"197 La Paz","PlayerID":1497168,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3790","ServerKey":"pl181","X":469,"Y":467},{"Bonus":0,"Continent":"K54","ID":3791,"Name":"011","PlayerID":8369778,"Points":7147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3791","ServerKey":"pl181","X":494,"Y":582},{"Bonus":0,"Continent":"K44","ID":3792,"Name":"062.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3792","ServerKey":"pl181","X":497,"Y":488},{"Bonus":0,"Continent":"K45","ID":3793,"Name":"085 Nerkowiec","PlayerID":7092442,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3793","ServerKey":"pl181","X":557,"Y":473},{"Bonus":0,"Continent":"K54","ID":3794,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3794","ServerKey":"pl181","X":429,"Y":511},{"Bonus":0,"Continent":"K44","ID":3795,"Name":"115 Niagara Falls","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3795","ServerKey":"pl181","X":480,"Y":492},{"Bonus":0,"Continent":"K54","ID":3796,"Name":"#0050 Amarena","PlayerID":9272054,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3796","ServerKey":"pl181","X":495,"Y":562},{"Bonus":0,"Continent":"K54","ID":3797,"Name":"#0010 Muflon","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3797","ServerKey":"pl181","X":490,"Y":561},{"Bonus":0,"Continent":"K55","ID":3798,"Name":"Szlachcic 007","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3798","ServerKey":"pl181","X":565,"Y":531},{"Bonus":9,"Continent":"K45","ID":3799,"Name":"[064] Omikron","PlayerID":848985692,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3799","ServerKey":"pl181","X":540,"Y":493},{"Bonus":0,"Continent":"K54","ID":3800,"Name":"Kasyno","PlayerID":7249451,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3800","ServerKey":"pl181","X":450,"Y":510},{"Bonus":0,"Continent":"K44","ID":3801,"Name":"-020-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3801","ServerKey":"pl181","X":456,"Y":421},{"Bonus":0,"Continent":"K54","ID":3802,"Name":"SsSs","PlayerID":1536625,"Points":4313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3802","ServerKey":"pl181","X":464,"Y":507},{"Bonus":0,"Continent":"K44","ID":3803,"Name":"Cast Away 010","PlayerID":698290577,"Points":8500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3803","ServerKey":"pl181","X":452,"Y":483},{"Bonus":0,"Continent":"K55","ID":3804,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3804","ServerKey":"pl181","X":539,"Y":542},{"Bonus":0,"Continent":"K45","ID":3805,"Name":"Osada","PlayerID":699098531,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3805","ServerKey":"pl181","X":503,"Y":455},{"Bonus":6,"Continent":"K45","ID":3806,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3806","ServerKey":"pl181","X":584,"Y":490},{"Bonus":0,"Continent":"K55","ID":3807,"Name":"|025|","PlayerID":873575,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3807","ServerKey":"pl181","X":556,"Y":569},{"Bonus":0,"Continent":"K54","ID":3808,"Name":"005 Fiona","PlayerID":698290577,"Points":7785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3808","ServerKey":"pl181","X":446,"Y":505},{"Bonus":0,"Continent":"K54","ID":3809,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3809","ServerKey":"pl181","X":434,"Y":522},{"Bonus":0,"Continent":"K44","ID":3810,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3810","ServerKey":"pl181","X":467,"Y":420},{"Bonus":0,"Continent":"K45","ID":3811,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3811","ServerKey":"pl181","X":505,"Y":471},{"Bonus":0,"Continent":"K45","ID":3812,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3812","ServerKey":"pl181","X":545,"Y":477},{"Bonus":0,"Continent":"K56","ID":3813,"Name":"A.017","PlayerID":9188016,"Points":7571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3813","ServerKey":"pl181","X":606,"Y":549},{"Bonus":0,"Continent":"K54","ID":3814,"Name":"Fajna 044","PlayerID":3613413,"Points":6338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3814","ServerKey":"pl181","X":458,"Y":556},{"Bonus":0,"Continent":"K44","ID":3815,"Name":"-021-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3815","ServerKey":"pl181","X":458,"Y":423},{"Bonus":0,"Continent":"K55","ID":3816,"Name":"JaamMwG 013","PlayerID":848987051,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3816","ServerKey":"pl181","X":522,"Y":521},{"Bonus":0,"Continent":"K55","ID":3817,"Name":"20013","PlayerID":848915531,"Points":5931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3817","ServerKey":"pl181","X":515,"Y":538},{"Bonus":0,"Continent":"K45","ID":3818,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3818","ServerKey":"pl181","X":511,"Y":470},{"Bonus":0,"Continent":"K44","ID":3819,"Name":"155 Esquipulas","PlayerID":1497168,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3819","ServerKey":"pl181","X":454,"Y":469},{"Bonus":0,"Continent":"K55","ID":3820,"Name":"Wioska 456","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3820","ServerKey":"pl181","X":582,"Y":552},{"Bonus":0,"Continent":"K54","ID":3821,"Name":"KIELBA 130","PlayerID":699342219,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3821","ServerKey":"pl181","X":443,"Y":570},{"Bonus":0,"Continent":"K54","ID":3822,"Name":"Chatka Hagrida","PlayerID":698290577,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3822","ServerKey":"pl181","X":455,"Y":500},{"Bonus":0,"Continent":"K54","ID":3823,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":8457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3823","ServerKey":"pl181","X":454,"Y":512},{"Bonus":0,"Continent":"K54","ID":3824,"Name":"Suppi","PlayerID":699856962,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3824","ServerKey":"pl181","X":440,"Y":520},{"Bonus":0,"Continent":"K54","ID":3825,"Name":"005","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3825","ServerKey":"pl181","X":461,"Y":578},{"Bonus":0,"Continent":"K54","ID":3826,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":9047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3826","ServerKey":"pl181","X":496,"Y":566},{"Bonus":2,"Continent":"K44","ID":3827,"Name":"B066","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3827","ServerKey":"pl181","X":473,"Y":471},{"Bonus":0,"Continent":"K65","ID":3828,"Name":"#0031","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3828","ServerKey":"pl181","X":547,"Y":616},{"Bonus":0,"Continent":"K45","ID":3829,"Name":"[099] KONIEC","PlayerID":848985692,"Points":8526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3829","ServerKey":"pl181","X":538,"Y":488},{"Bonus":0,"Continent":"K55","ID":3830,"Name":"20024","PlayerID":848915531,"Points":8280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3830","ServerKey":"pl181","X":502,"Y":549},{"Bonus":0,"Continent":"K44","ID":3831,"Name":"-046-","PlayerID":9291984,"Points":10371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3831","ServerKey":"pl181","X":461,"Y":424},{"Bonus":0,"Continent":"K54","ID":3832,"Name":". Jameson","PlayerID":8779575,"Points":9245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3832","ServerKey":"pl181","X":423,"Y":548},{"Bonus":0,"Continent":"K44","ID":3833,"Name":"Monetki","PlayerID":699098531,"Points":10170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3833","ServerKey":"pl181","X":483,"Y":423},{"Bonus":0,"Continent":"K45","ID":3834,"Name":".:019:. Chilout","PlayerID":848934935,"Points":5049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3834","ServerKey":"pl181","X":508,"Y":418},{"Bonus":0,"Continent":"K44","ID":3835,"Name":"097. Wioska Sarna","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3835","ServerKey":"pl181","X":487,"Y":427},{"Bonus":0,"Continent":"K54","ID":3836,"Name":"Sparta_28","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3836","ServerKey":"pl181","X":488,"Y":583},{"Bonus":0,"Continent":"K45","ID":3837,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3837","ServerKey":"pl181","X":534,"Y":430},{"Bonus":0,"Continent":"K44","ID":3838,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3838","ServerKey":"pl181","X":492,"Y":432},{"Bonus":0,"Continent":"K55","ID":3839,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3839","ServerKey":"pl181","X":581,"Y":587},{"Bonus":0,"Continent":"K45","ID":3840,"Name":"[113] North13","PlayerID":848985692,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3840","ServerKey":"pl181","X":575,"Y":472},{"Bonus":0,"Continent":"K56","ID":3841,"Name":"0009","PlayerID":6510480,"Points":10328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3841","ServerKey":"pl181","X":619,"Y":525},{"Bonus":0,"Continent":"K55","ID":3842,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3842","ServerKey":"pl181","X":524,"Y":574},{"Bonus":0,"Continent":"K54","ID":3843,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":2969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3843","ServerKey":"pl181","X":454,"Y":561},{"Bonus":0,"Continent":"K55","ID":3844,"Name":"Wioska 018","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3844","ServerKey":"pl181","X":592,"Y":581},{"Bonus":0,"Continent":"K55","ID":3845,"Name":"!Wioska 428","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3845","ServerKey":"pl181","X":563,"Y":513},{"Bonus":0,"Continent":"K44","ID":3846,"Name":"-022-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3846","ServerKey":"pl181","X":464,"Y":426},{"Bonus":0,"Continent":"K45","ID":3847,"Name":"032","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3847","ServerKey":"pl181","X":583,"Y":471},{"Bonus":0,"Continent":"K44","ID":3848,"Name":"Szlachcic","PlayerID":699098531,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3848","ServerKey":"pl181","X":484,"Y":476},{"Bonus":0,"Continent":"K55","ID":3849,"Name":"[191]","PlayerID":8000875,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3849","ServerKey":"pl181","X":544,"Y":523},{"Bonus":0,"Continent":"K55","ID":3850,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3850","ServerKey":"pl181","X":517,"Y":525},{"Bonus":6,"Continent":"K54","ID":3851,"Name":"Warzywniak 004","PlayerID":698290577,"Points":3075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3851","ServerKey":"pl181","X":447,"Y":544},{"Bonus":0,"Continent":"K44","ID":3852,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3852","ServerKey":"pl181","X":451,"Y":461},{"Bonus":0,"Continent":"K55","ID":3853,"Name":"!Wioska 429","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3853","ServerKey":"pl181","X":564,"Y":518},{"Bonus":0,"Continent":"K54","ID":3854,"Name":"012 Fiona","PlayerID":698290577,"Points":5486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3854","ServerKey":"pl181","X":447,"Y":510},{"Bonus":0,"Continent":"K54","ID":3855,"Name":". PerƂa","PlayerID":699856962,"Points":4238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3855","ServerKey":"pl181","X":425,"Y":550},{"Bonus":0,"Continent":"K54","ID":3856,"Name":"Fajna 033","PlayerID":8539216,"Points":1847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3856","ServerKey":"pl181","X":463,"Y":571},{"Bonus":0,"Continent":"K55","ID":3857,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":8507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3857","ServerKey":"pl181","X":519,"Y":505},{"Bonus":0,"Continent":"K54","ID":3858,"Name":"030","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3858","ServerKey":"pl181","X":446,"Y":503},{"Bonus":0,"Continent":"K44","ID":3859,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3859","ServerKey":"pl181","X":444,"Y":472},{"Bonus":0,"Continent":"K44","ID":3860,"Name":"015 Atlantic City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3860","ServerKey":"pl181","X":444,"Y":470},{"Bonus":0,"Continent":"K44","ID":3861,"Name":"0100 pantera","PlayerID":3909522,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3861","ServerKey":"pl181","X":465,"Y":446},{"Bonus":0,"Continent":"K54","ID":3862,"Name":"Oltar","PlayerID":699443920,"Points":3294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3862","ServerKey":"pl181","X":440,"Y":559},{"Bonus":0,"Continent":"K34","ID":3863,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3863","ServerKey":"pl181","X":456,"Y":399},{"Bonus":0,"Continent":"K45","ID":3864,"Name":"Wioska 508","PlayerID":477415,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3864","ServerKey":"pl181","X":575,"Y":461},{"Bonus":0,"Continent":"K45","ID":3865,"Name":"Gattacka","PlayerID":699298370,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3865","ServerKey":"pl181","X":582,"Y":483},{"Bonus":0,"Continent":"K54","ID":3866,"Name":"042. ALFI","PlayerID":8539216,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3866","ServerKey":"pl181","X":467,"Y":572},{"Bonus":0,"Continent":"K55","ID":3867,"Name":"[180]","PlayerID":848985692,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3867","ServerKey":"pl181","X":547,"Y":512},{"Bonus":0,"Continent":"K54","ID":3868,"Name":"039 - pobite gary","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3868","ServerKey":"pl181","X":411,"Y":577},{"Bonus":0,"Continent":"K55","ID":3869,"Name":"[144]","PlayerID":8000875,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3869","ServerKey":"pl181","X":555,"Y":549},{"Bonus":0,"Continent":"K54","ID":3871,"Name":"Warzywniak 002","PlayerID":698290577,"Points":3857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3871","ServerKey":"pl181","X":446,"Y":545},{"Bonus":0,"Continent":"K55","ID":3872,"Name":"0015","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3872","ServerKey":"pl181","X":524,"Y":533},{"Bonus":8,"Continent":"K54","ID":3873,"Name":"016","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3873","ServerKey":"pl181","X":420,"Y":511},{"Bonus":0,"Continent":"K45","ID":3874,"Name":"ADEN","PlayerID":698588535,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3874","ServerKey":"pl181","X":564,"Y":442},{"Bonus":0,"Continent":"K54","ID":3875,"Name":"0594","PlayerID":698659980,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3875","ServerKey":"pl181","X":476,"Y":545},{"Bonus":0,"Continent":"K34","ID":3876,"Name":"Konfederacja 8","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3876","ServerKey":"pl181","X":460,"Y":382},{"Bonus":0,"Continent":"K44","ID":3877,"Name":"xxxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3877","ServerKey":"pl181","X":497,"Y":429},{"Bonus":0,"Continent":"K43","ID":3878,"Name":"Baobab","PlayerID":699265922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3878","ServerKey":"pl181","X":385,"Y":491},{"Bonus":0,"Continent":"K44","ID":3879,"Name":"?+44 85 Lyon Point du Jour","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3879","ServerKey":"pl181","X":456,"Y":482},{"Bonus":0,"Continent":"K45","ID":3880,"Name":"9.4 Legancko","PlayerID":8444356,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3880","ServerKey":"pl181","X":545,"Y":440},{"Bonus":0,"Continent":"K55","ID":3881,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3881","ServerKey":"pl181","X":517,"Y":500},{"Bonus":0,"Continent":"K54","ID":3882,"Name":"19. Wioska 19","PlayerID":849091769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3882","ServerKey":"pl181","X":408,"Y":569},{"Bonus":0,"Continent":"K44","ID":3883,"Name":"Brat447","PlayerID":699262350,"Points":8401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3883","ServerKey":"pl181","X":455,"Y":498},{"Bonus":0,"Continent":"K54","ID":3884,"Name":"STAƁKA","PlayerID":699698253,"Points":4593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3884","ServerKey":"pl181","X":451,"Y":533},{"Bonus":0,"Continent":"K54","ID":3885,"Name":"Fajna 089","PlayerID":8539216,"Points":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3885","ServerKey":"pl181","X":456,"Y":565},{"Bonus":0,"Continent":"K55","ID":3886,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3886","ServerKey":"pl181","X":525,"Y":573},{"Bonus":0,"Continent":"K44","ID":3887,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3887","ServerKey":"pl181","X":449,"Y":469},{"Bonus":0,"Continent":"K44","ID":3888,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3888","ServerKey":"pl181","X":474,"Y":432},{"Bonus":0,"Continent":"K35","ID":3889,"Name":"C002","PlayerID":7758085,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3889","ServerKey":"pl181","X":521,"Y":388},{"Bonus":0,"Continent":"K44","ID":3890,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3890","ServerKey":"pl181","X":450,"Y":453},{"Bonus":0,"Continent":"K55","ID":3891,"Name":"045 |","PlayerID":8000875,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3891","ServerKey":"pl181","X":561,"Y":548},{"Bonus":8,"Continent":"K44","ID":3892,"Name":"085 Saint Louis","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3892","ServerKey":"pl181","X":465,"Y":459},{"Bonus":0,"Continent":"K45","ID":3893,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3893","ServerKey":"pl181","X":542,"Y":477},{"Bonus":0,"Continent":"K55","ID":3894,"Name":"Tranquillo","PlayerID":699785935,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3894","ServerKey":"pl181","X":504,"Y":524},{"Bonus":0,"Continent":"K54","ID":3895,"Name":"Onest","PlayerID":699443920,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3895","ServerKey":"pl181","X":442,"Y":554},{"Bonus":0,"Continent":"K44","ID":3896,"Name":"Pf Konfederacja w +","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3896","ServerKey":"pl181","X":494,"Y":488},{"Bonus":0,"Continent":"K44","ID":3897,"Name":"0062 ~211~ miedziany 3","PlayerID":3909522,"Points":6925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3897","ServerKey":"pl181","X":439,"Y":436},{"Bonus":0,"Continent":"K54","ID":3898,"Name":"ada","PlayerID":8539216,"Points":2044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3898","ServerKey":"pl181","X":463,"Y":569},{"Bonus":0,"Continent":"K54","ID":3899,"Name":"KIELBA 054","PlayerID":699342219,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3899","ServerKey":"pl181","X":455,"Y":590},{"Bonus":0,"Continent":"K54","ID":3900,"Name":"Winter is coming","PlayerID":698971484,"Points":2220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3900","ServerKey":"pl181","X":441,"Y":542},{"Bonus":0,"Continent":"K54","ID":3901,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3901","ServerKey":"pl181","X":456,"Y":518},{"Bonus":0,"Continent":"K45","ID":3902,"Name":"Wioska 507","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3902","ServerKey":"pl181","X":570,"Y":448},{"Bonus":0,"Continent":"K35","ID":3903,"Name":"125","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3903","ServerKey":"pl181","X":549,"Y":389},{"Bonus":0,"Continent":"K55","ID":3904,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3904","ServerKey":"pl181","X":511,"Y":569},{"Bonus":0,"Continent":"K44","ID":3905,"Name":"053 Kahului","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3905","ServerKey":"pl181","X":461,"Y":467},{"Bonus":0,"Continent":"K54","ID":3906,"Name":"Oibar","PlayerID":699443920,"Points":3105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3906","ServerKey":"pl181","X":430,"Y":556},{"Bonus":0,"Continent":"K55","ID":3907,"Name":"013. DziwoĆŒona","PlayerID":699703642,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3907","ServerKey":"pl181","X":513,"Y":572},{"Bonus":0,"Continent":"K45","ID":3908,"Name":"Welll","PlayerID":849086817,"Points":3080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3908","ServerKey":"pl181","X":545,"Y":460},{"Bonus":0,"Continent":"K44","ID":3909,"Name":"0045","PlayerID":848913037,"Points":8634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3909","ServerKey":"pl181","X":457,"Y":466},{"Bonus":0,"Continent":"K55","ID":3910,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3910","ServerKey":"pl181","X":533,"Y":543},{"Bonus":0,"Continent":"K65","ID":3911,"Name":"CALL 915","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3911","ServerKey":"pl181","X":556,"Y":602},{"Bonus":0,"Continent":"K54","ID":3912,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":6505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3912","ServerKey":"pl181","X":449,"Y":560},{"Bonus":9,"Continent":"K54","ID":3913,"Name":"NOT FOR YOU","PlayerID":9236866,"Points":1943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3913","ServerKey":"pl181","X":455,"Y":550},{"Bonus":0,"Continent":"K44","ID":3914,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3914","ServerKey":"pl181","X":485,"Y":486},{"Bonus":0,"Continent":"K55","ID":3915,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3915","ServerKey":"pl181","X":516,"Y":520},{"Bonus":2,"Continent":"K45","ID":3916,"Name":"[063] Lambda","PlayerID":848985692,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3916","ServerKey":"pl181","X":542,"Y":484},{"Bonus":0,"Continent":"K55","ID":3917,"Name":"|044|","PlayerID":873575,"Points":10018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3917","ServerKey":"pl181","X":555,"Y":570},{"Bonus":0,"Continent":"K44","ID":3918,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3918","ServerKey":"pl181","X":486,"Y":461},{"Bonus":0,"Continent":"K45","ID":3919,"Name":"C014","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3919","ServerKey":"pl181","X":527,"Y":459},{"Bonus":0,"Continent":"K55","ID":3920,"Name":"Wioska 411","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3920","ServerKey":"pl181","X":577,"Y":518},{"Bonus":0,"Continent":"K45","ID":3921,"Name":"4. Pierdziszewo","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3921","ServerKey":"pl181","X":544,"Y":439},{"Bonus":0,"Continent":"K54","ID":3922,"Name":"Fajna 031","PlayerID":8539216,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3922","ServerKey":"pl181","X":450,"Y":568},{"Bonus":0,"Continent":"K54","ID":3923,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3923","ServerKey":"pl181","X":425,"Y":536},{"Bonus":8,"Continent":"K54","ID":3924,"Name":"Lynortis","PlayerID":849001724,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3924","ServerKey":"pl181","X":463,"Y":532},{"Bonus":0,"Continent":"K55","ID":3925,"Name":"014","PlayerID":848915531,"Points":7618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3925","ServerKey":"pl181","X":506,"Y":544},{"Bonus":0,"Continent":"K54","ID":3927,"Name":"KIELBA 115","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3927","ServerKey":"pl181","X":450,"Y":572},{"Bonus":0,"Continent":"K44","ID":3928,"Name":"B040","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3928","ServerKey":"pl181","X":473,"Y":459},{"Bonus":0,"Continent":"K55","ID":3929,"Name":"[024] Et mato","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3929","ServerKey":"pl181","X":586,"Y":525},{"Bonus":0,"Continent":"K55","ID":3930,"Name":"001","PlayerID":6048627,"Points":5553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3930","ServerKey":"pl181","X":587,"Y":518},{"Bonus":0,"Continent":"K54","ID":3931,"Name":"Winter is coming","PlayerID":698971484,"Points":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3931","ServerKey":"pl181","X":440,"Y":550},{"Bonus":0,"Continent":"K54","ID":3932,"Name":"Suppi","PlayerID":699856962,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3932","ServerKey":"pl181","X":454,"Y":598},{"Bonus":0,"Continent":"K54","ID":3933,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":2487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3933","ServerKey":"pl181","X":445,"Y":540},{"Bonus":0,"Continent":"K35","ID":3934,"Name":"0003","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3934","ServerKey":"pl181","X":564,"Y":398},{"Bonus":0,"Continent":"K55","ID":3935,"Name":"JaamMwG 022","PlayerID":848987051,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3935","ServerKey":"pl181","X":530,"Y":521},{"Bonus":8,"Continent":"K55","ID":3936,"Name":"[184]","PlayerID":8000875,"Points":10264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3936","ServerKey":"pl181","X":543,"Y":552},{"Bonus":0,"Continent":"K45","ID":3937,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3937","ServerKey":"pl181","X":532,"Y":434},{"Bonus":0,"Continent":"K45","ID":3938,"Name":"IQ153","PlayerID":699368887,"Points":6337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3938","ServerKey":"pl181","X":553,"Y":452},{"Bonus":0,"Continent":"K54","ID":3939,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3939","ServerKey":"pl181","X":475,"Y":540},{"Bonus":0,"Continent":"K54","ID":3940,"Name":"NOT?","PlayerID":9236866,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3940","ServerKey":"pl181","X":433,"Y":519},{"Bonus":0,"Continent":"K54","ID":3941,"Name":"KIELBA 066","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3941","ServerKey":"pl181","X":470,"Y":578},{"Bonus":0,"Continent":"K55","ID":3942,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3942","ServerKey":"pl181","X":525,"Y":540},{"Bonus":0,"Continent":"K55","ID":3943,"Name":"0010 K55 and987 OZDR.","PlayerID":3613413,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3943","ServerKey":"pl181","X":504,"Y":556},{"Bonus":6,"Continent":"K54","ID":3944,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3944","ServerKey":"pl181","X":454,"Y":513},{"Bonus":0,"Continent":"K64","ID":3945,"Name":"097 MEHEHE m","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3945","ServerKey":"pl181","X":493,"Y":601},{"Bonus":0,"Continent":"K55","ID":3946,"Name":"Wioska barbarzyƄska","PlayerID":699316421,"Points":5839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3946","ServerKey":"pl181","X":572,"Y":552},{"Bonus":0,"Continent":"K45","ID":3947,"Name":"Szlachcic","PlayerID":699098531,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3947","ServerKey":"pl181","X":503,"Y":471},{"Bonus":0,"Continent":"K55","ID":3948,"Name":"019. Wioska Zaconek","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3948","ServerKey":"pl181","X":572,"Y":519},{"Bonus":0,"Continent":"K44","ID":3949,"Name":"Brat447","PlayerID":699262350,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3949","ServerKey":"pl181","X":445,"Y":486},{"Bonus":0,"Continent":"K56","ID":3950,"Name":"001","PlayerID":6160655,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3950","ServerKey":"pl181","X":607,"Y":545},{"Bonus":0,"Continent":"K54","ID":3951,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":2407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3951","ServerKey":"pl181","X":455,"Y":559},{"Bonus":0,"Continent":"K55","ID":3952,"Name":"CALL 1037","PlayerID":699784536,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3952","ServerKey":"pl181","X":548,"Y":543},{"Bonus":0,"Continent":"K55","ID":3953,"Name":"Mzm37","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3953","ServerKey":"pl181","X":549,"Y":530},{"Bonus":0,"Continent":"K44","ID":3954,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3954","ServerKey":"pl181","X":452,"Y":466},{"Bonus":0,"Continent":"K45","ID":3955,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3955","ServerKey":"pl181","X":523,"Y":412},{"Bonus":0,"Continent":"K55","ID":3956,"Name":"Szlachcic 062","PlayerID":758104,"Points":8288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3956","ServerKey":"pl181","X":556,"Y":519},{"Bonus":0,"Continent":"K45","ID":3957,"Name":"JF1","PlayerID":699368887,"Points":7451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3957","ServerKey":"pl181","X":555,"Y":456},{"Bonus":0,"Continent":"K44","ID":3958,"Name":"00634 Widzew","PlayerID":3909522,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3958","ServerKey":"pl181","X":441,"Y":431},{"Bonus":0,"Continent":"K44","ID":3959,"Name":"K44 012","PlayerID":698290577,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3959","ServerKey":"pl181","X":433,"Y":485},{"Bonus":0,"Continent":"K44","ID":3960,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3960","ServerKey":"pl181","X":488,"Y":496},{"Bonus":0,"Continent":"K55","ID":3962,"Name":"Winter is coming","PlayerID":699364813,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3962","ServerKey":"pl181","X":503,"Y":579},{"Bonus":0,"Continent":"K54","ID":3963,"Name":"011 Fiona","PlayerID":698290577,"Points":5142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3963","ServerKey":"pl181","X":446,"Y":510},{"Bonus":0,"Continent":"K54","ID":3964,"Name":"#0062 LSD","PlayerID":9272054,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3964","ServerKey":"pl181","X":491,"Y":551},{"Bonus":0,"Continent":"K45","ID":3965,"Name":"Szlachcic","PlayerID":699098531,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3965","ServerKey":"pl181","X":501,"Y":482},{"Bonus":0,"Continent":"K55","ID":3966,"Name":"0024","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3966","ServerKey":"pl181","X":512,"Y":518},{"Bonus":0,"Continent":"K45","ID":3967,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3967","ServerKey":"pl181","X":545,"Y":484},{"Bonus":0,"Continent":"K44","ID":3968,"Name":"042","PlayerID":699510259,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3968","ServerKey":"pl181","X":475,"Y":480},{"Bonus":0,"Continent":"K55","ID":3969,"Name":"|046|","PlayerID":873575,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3969","ServerKey":"pl181","X":558,"Y":570},{"Bonus":0,"Continent":"K54","ID":3970,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3970","ServerKey":"pl181","X":454,"Y":504},{"Bonus":0,"Continent":"K45","ID":3971,"Name":"010 Trumnypremium.pl","PlayerID":849031818,"Points":7634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3971","ServerKey":"pl181","X":553,"Y":495},{"Bonus":0,"Continent":"K54","ID":3972,"Name":"Suppi","PlayerID":699856962,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3972","ServerKey":"pl181","X":439,"Y":516},{"Bonus":0,"Continent":"K55","ID":3973,"Name":"amator MO2","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3973","ServerKey":"pl181","X":536,"Y":549},{"Bonus":0,"Continent":"K45","ID":3974,"Name":"069","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3974","ServerKey":"pl181","X":552,"Y":431},{"Bonus":0,"Continent":"K55","ID":3975,"Name":"Wioska barbarzyƄska","PlayerID":848915531,"Points":7400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3975","ServerKey":"pl181","X":515,"Y":534},{"Bonus":0,"Continent":"K44","ID":3976,"Name":"K45 002","PlayerID":698290577,"Points":8403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3976","ServerKey":"pl181","X":417,"Y":478},{"Bonus":0,"Continent":"K44","ID":3977,"Name":"[A]_[039] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3977","ServerKey":"pl181","X":416,"Y":475},{"Bonus":0,"Continent":"K44","ID":3978,"Name":"SsSs","PlayerID":1536625,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3978","ServerKey":"pl181","X":453,"Y":498},{"Bonus":0,"Continent":"K54","ID":3979,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3979","ServerKey":"pl181","X":493,"Y":573},{"Bonus":0,"Continent":"K55","ID":3980,"Name":"023","PlayerID":7581876,"Points":9007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3980","ServerKey":"pl181","X":529,"Y":533},{"Bonus":0,"Continent":"K35","ID":3981,"Name":"MARYLIN","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3981","ServerKey":"pl181","X":515,"Y":379},{"Bonus":0,"Continent":"K55","ID":3982,"Name":"- 266 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3982","ServerKey":"pl181","X":529,"Y":580},{"Bonus":0,"Continent":"K55","ID":3983,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3983","ServerKey":"pl181","X":561,"Y":508},{"Bonus":0,"Continent":"K44","ID":3984,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3984","ServerKey":"pl181","X":485,"Y":471},{"Bonus":0,"Continent":"K45","ID":3985,"Name":"Szlachcic","PlayerID":698867446,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3985","ServerKey":"pl181","X":559,"Y":472},{"Bonus":0,"Continent":"K55","ID":3986,"Name":"- 308 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3986","ServerKey":"pl181","X":531,"Y":584},{"Bonus":0,"Continent":"K45","ID":3987,"Name":"[155] North","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3987","ServerKey":"pl181","X":561,"Y":468},{"Bonus":0,"Continent":"K45","ID":3989,"Name":"xxx","PlayerID":698239813,"Points":7958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3989","ServerKey":"pl181","X":510,"Y":454},{"Bonus":0,"Continent":"K45","ID":3990,"Name":"[112] North12","PlayerID":848985692,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3990","ServerKey":"pl181","X":571,"Y":488},{"Bonus":0,"Continent":"K44","ID":3992,"Name":"014","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3992","ServerKey":"pl181","X":421,"Y":480},{"Bonus":0,"Continent":"K54","ID":3993,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3993","ServerKey":"pl181","X":476,"Y":535},{"Bonus":0,"Continent":"K35","ID":3994,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3994","ServerKey":"pl181","X":534,"Y":388},{"Bonus":0,"Continent":"K54","ID":3995,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3995","ServerKey":"pl181","X":482,"Y":529},{"Bonus":0,"Continent":"K45","ID":3996,"Name":".:068:. Chillout","PlayerID":848934935,"Points":3497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3996","ServerKey":"pl181","X":511,"Y":427},{"Bonus":0,"Continent":"K45","ID":3997,"Name":"087 Dziadek do orzechĂłw","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3997","ServerKey":"pl181","X":541,"Y":459},{"Bonus":0,"Continent":"K45","ID":3998,"Name":"030","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3998","ServerKey":"pl181","X":536,"Y":418},{"Bonus":0,"Continent":"K54","ID":3999,"Name":"055","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=3999","ServerKey":"pl181","X":426,"Y":514},{"Bonus":0,"Continent":"K45","ID":4000,"Name":"0016|Rzym","PlayerID":699098531,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4000","ServerKey":"pl181","X":508,"Y":443},{"Bonus":0,"Continent":"K54","ID":4002,"Name":"Bulletproof","PlayerID":699785935,"Points":8551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4002","ServerKey":"pl181","X":482,"Y":512},{"Bonus":0,"Continent":"K55","ID":4003,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4003","ServerKey":"pl181","X":530,"Y":550},{"Bonus":0,"Continent":"K45","ID":4004,"Name":".:033:. Czosnek","PlayerID":699098531,"Points":7324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4004","ServerKey":"pl181","X":503,"Y":485},{"Bonus":0,"Continent":"K44","ID":4005,"Name":"Monetki","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4005","ServerKey":"pl181","X":477,"Y":425},{"Bonus":0,"Continent":"K44","ID":4006,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4006","ServerKey":"pl181","X":478,"Y":444},{"Bonus":2,"Continent":"K54","ID":4007,"Name":"keepo","PlayerID":848967710,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4007","ServerKey":"pl181","X":482,"Y":537},{"Bonus":0,"Continent":"K44","ID":4009,"Name":"K44 x021","PlayerID":698364331,"Points":6466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4009","ServerKey":"pl181","X":459,"Y":431},{"Bonus":7,"Continent":"K55","ID":4010,"Name":"B004","PlayerID":8138506,"Points":9354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4010","ServerKey":"pl181","X":556,"Y":503},{"Bonus":0,"Continent":"K64","ID":4011,"Name":"~090.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4011","ServerKey":"pl181","X":496,"Y":610},{"Bonus":0,"Continent":"K55","ID":4012,"Name":"[190]","PlayerID":8000875,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4012","ServerKey":"pl181","X":544,"Y":521},{"Bonus":0,"Continent":"K54","ID":4013,"Name":"KIELBA 075","PlayerID":699342219,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4013","ServerKey":"pl181","X":469,"Y":580},{"Bonus":0,"Continent":"K45","ID":4014,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4014","ServerKey":"pl181","X":512,"Y":481},{"Bonus":0,"Continent":"K44","ID":4015,"Name":"Konfiasze","PlayerID":698908912,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4015","ServerKey":"pl181","X":474,"Y":493},{"Bonus":0,"Continent":"K44","ID":4016,"Name":"...Just like that","PlayerID":699723284,"Points":7116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4016","ServerKey":"pl181","X":461,"Y":489},{"Bonus":0,"Continent":"K54","ID":4017,"Name":"Suppi","PlayerID":699856962,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4017","ServerKey":"pl181","X":439,"Y":522},{"Bonus":0,"Continent":"K54","ID":4018,"Name":"Sparta_53","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4018","ServerKey":"pl181","X":477,"Y":579},{"Bonus":0,"Continent":"K54","ID":4019,"Name":"NOT?","PlayerID":9236866,"Points":8123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4019","ServerKey":"pl181","X":431,"Y":538},{"Bonus":0,"Continent":"K44","ID":4020,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4020","ServerKey":"pl181","X":470,"Y":437},{"Bonus":0,"Continent":"K54","ID":4021,"Name":"0114","PlayerID":698659980,"Points":8284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4021","ServerKey":"pl181","X":468,"Y":561},{"Bonus":0,"Continent":"K54","ID":4022,"Name":"Sparta_43","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4022","ServerKey":"pl181","X":482,"Y":582},{"Bonus":0,"Continent":"K55","ID":4023,"Name":"0022","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4023","ServerKey":"pl181","X":519,"Y":516},{"Bonus":0,"Continent":"K44","ID":4024,"Name":"186 Barquisimeto","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4024","ServerKey":"pl181","X":465,"Y":453},{"Bonus":0,"Continent":"K55","ID":4025,"Name":"027. Wioska Loalanek","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4025","ServerKey":"pl181","X":564,"Y":508},{"Bonus":0,"Continent":"K55","ID":4026,"Name":"JaamMwG 024","PlayerID":848987051,"Points":8634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4026","ServerKey":"pl181","X":531,"Y":525},{"Bonus":0,"Continent":"K54","ID":4027,"Name":"Qusz","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4027","ServerKey":"pl181","X":420,"Y":556},{"Bonus":0,"Continent":"K44","ID":4028,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4028","ServerKey":"pl181","X":484,"Y":423},{"Bonus":0,"Continent":"K45","ID":4029,"Name":"[119] North19","PlayerID":848985692,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4029","ServerKey":"pl181","X":571,"Y":471},{"Bonus":0,"Continent":"K44","ID":4030,"Name":"Osada","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4030","ServerKey":"pl181","X":494,"Y":437},{"Bonus":0,"Continent":"K45","ID":4031,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4031","ServerKey":"pl181","X":513,"Y":445},{"Bonus":0,"Continent":"K54","ID":4032,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4032","ServerKey":"pl181","X":425,"Y":528},{"Bonus":0,"Continent":"K55","ID":4033,"Name":"005","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4033","ServerKey":"pl181","X":571,"Y":550},{"Bonus":0,"Continent":"K55","ID":4034,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4034","ServerKey":"pl181","X":538,"Y":568},{"Bonus":0,"Continent":"K44","ID":4035,"Name":"Suppi","PlayerID":699856962,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4035","ServerKey":"pl181","X":439,"Y":452},{"Bonus":0,"Continent":"K55","ID":4036,"Name":"Wioska 435","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4036","ServerKey":"pl181","X":572,"Y":526},{"Bonus":0,"Continent":"K55","ID":4037,"Name":"Wioska 402","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4037","ServerKey":"pl181","X":559,"Y":509},{"Bonus":0,"Continent":"K54","ID":4038,"Name":"016","PlayerID":8369778,"Points":9459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4038","ServerKey":"pl181","X":492,"Y":580},{"Bonus":0,"Continent":"K45","ID":4039,"Name":"041.","PlayerID":8788366,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4039","ServerKey":"pl181","X":504,"Y":489},{"Bonus":0,"Continent":"K55","ID":4040,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4040","ServerKey":"pl181","X":567,"Y":503},{"Bonus":0,"Continent":"K44","ID":4041,"Name":"Gravity","PlayerID":698962117,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4041","ServerKey":"pl181","X":404,"Y":440},{"Bonus":0,"Continent":"K45","ID":4042,"Name":"FULL DEFF","PlayerID":8155296,"Points":7987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4042","ServerKey":"pl181","X":544,"Y":471},{"Bonus":0,"Continent":"K55","ID":4043,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4043","ServerKey":"pl181","X":525,"Y":534},{"Bonus":0,"Continent":"K54","ID":4044,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4044","ServerKey":"pl181","X":459,"Y":517},{"Bonus":5,"Continent":"K44","ID":4045,"Name":"P Konfederacja","PlayerID":848915730,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4045","ServerKey":"pl181","X":456,"Y":442},{"Bonus":0,"Continent":"K45","ID":4046,"Name":"-[017]- Himalchuli","PlayerID":849092827,"Points":6844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4046","ServerKey":"pl181","X":549,"Y":487},{"Bonus":0,"Continent":"K45","ID":4047,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4047","ServerKey":"pl181","X":507,"Y":473},{"Bonus":0,"Continent":"K44","ID":4048,"Name":"00701","PlayerID":3909522,"Points":5439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4048","ServerKey":"pl181","X":452,"Y":441},{"Bonus":0,"Continent":"K45","ID":4049,"Name":"Wioska superpuszka","PlayerID":699347951,"Points":6419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4049","ServerKey":"pl181","X":581,"Y":498},{"Bonus":0,"Continent":"K55","ID":4050,"Name":"20010","PlayerID":848915531,"Points":8583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4050","ServerKey":"pl181","X":516,"Y":530},{"Bonus":0,"Continent":"K45","ID":4051,"Name":"038","PlayerID":849063849,"Points":9161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4051","ServerKey":"pl181","X":552,"Y":427},{"Bonus":0,"Continent":"K55","ID":4052,"Name":"025","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4052","ServerKey":"pl181","X":528,"Y":575},{"Bonus":0,"Continent":"K55","ID":4053,"Name":"0.Oklahoma","PlayerID":698215322,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4053","ServerKey":"pl181","X":520,"Y":589},{"Bonus":0,"Continent":"K55","ID":4054,"Name":"049","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4054","ServerKey":"pl181","X":527,"Y":576},{"Bonus":0,"Continent":"K54","ID":4055,"Name":"Sparta_39","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4055","ServerKey":"pl181","X":483,"Y":575},{"Bonus":0,"Continent":"K35","ID":4056,"Name":".054.","PlayerID":698489071,"Points":6906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4056","ServerKey":"pl181","X":507,"Y":380},{"Bonus":0,"Continent":"K54","ID":4057,"Name":"NOT?","PlayerID":9236866,"Points":8075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4057","ServerKey":"pl181","X":431,"Y":543},{"Bonus":0,"Continent":"K55","ID":4058,"Name":"[158]","PlayerID":8000875,"Points":6996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4058","ServerKey":"pl181","X":538,"Y":530},{"Bonus":0,"Continent":"K44","ID":4059,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4059","ServerKey":"pl181","X":499,"Y":424},{"Bonus":0,"Continent":"K44","ID":4060,"Name":"A027","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4060","ServerKey":"pl181","X":496,"Y":413},{"Bonus":0,"Continent":"K44","ID":4061,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4061","ServerKey":"pl181","X":481,"Y":417},{"Bonus":0,"Continent":"K45","ID":4062,"Name":"-[029]- Kamet","PlayerID":849092827,"Points":7410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4062","ServerKey":"pl181","X":558,"Y":472},{"Bonus":0,"Continent":"K54","ID":4063,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4063","ServerKey":"pl181","X":428,"Y":524},{"Bonus":0,"Continent":"K54","ID":4064,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":1600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4064","ServerKey":"pl181","X":458,"Y":565},{"Bonus":0,"Continent":"K45","ID":4065,"Name":"014 Wierzbno","PlayerID":849083501,"Points":4456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4065","ServerKey":"pl181","X":537,"Y":470},{"Bonus":0,"Continent":"K56","ID":4066,"Name":"W.181/21","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4066","ServerKey":"pl181","X":611,"Y":532},{"Bonus":0,"Continent":"K45","ID":4067,"Name":".:013:. Wilk","PlayerID":8649412,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4067","ServerKey":"pl181","X":508,"Y":428},{"Bonus":0,"Continent":"K55","ID":4068,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4068","ServerKey":"pl181","X":567,"Y":502},{"Bonus":0,"Continent":"K54","ID":4069,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4069","ServerKey":"pl181","X":491,"Y":542},{"Bonus":0,"Continent":"K45","ID":4070,"Name":"012","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4070","ServerKey":"pl181","X":576,"Y":419},{"Bonus":0,"Continent":"K45","ID":4071,"Name":"008 Fuchsia City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4071","ServerKey":"pl181","X":591,"Y":495},{"Bonus":0,"Continent":"K45","ID":4072,"Name":"X01","PlayerID":699368887,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4072","ServerKey":"pl181","X":560,"Y":454},{"Bonus":0,"Continent":"K55","ID":4073,"Name":"kek","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4073","ServerKey":"pl181","X":538,"Y":517},{"Bonus":0,"Continent":"K65","ID":4074,"Name":"037","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4074","ServerKey":"pl181","X":542,"Y":614},{"Bonus":0,"Continent":"K45","ID":4076,"Name":"C021","PlayerID":699299123,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4076","ServerKey":"pl181","X":523,"Y":454},{"Bonus":0,"Continent":"K54","ID":4077,"Name":"NOT?","PlayerID":9236866,"Points":8865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4077","ServerKey":"pl181","X":463,"Y":533},{"Bonus":0,"Continent":"K55","ID":4078,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4078","ServerKey":"pl181","X":512,"Y":560},{"Bonus":0,"Continent":"K44","ID":4079,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4079","ServerKey":"pl181","X":495,"Y":448},{"Bonus":0,"Continent":"K55","ID":4080,"Name":"Wioska (033)","PlayerID":698232227,"Points":9838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4080","ServerKey":"pl181","X":573,"Y":507},{"Bonus":0,"Continent":"K45","ID":4081,"Name":"B010","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4081","ServerKey":"pl181","X":536,"Y":480},{"Bonus":0,"Continent":"K44","ID":4082,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4082","ServerKey":"pl181","X":413,"Y":481},{"Bonus":0,"Continent":"K54","ID":4083,"Name":"F042","PlayerID":699189792,"Points":8651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4083","ServerKey":"pl181","X":488,"Y":521},{"Bonus":0,"Continent":"K45","ID":4084,"Name":"031","PlayerID":699722599,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4084","ServerKey":"pl181","X":591,"Y":449},{"Bonus":0,"Continent":"K45","ID":4085,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4085","ServerKey":"pl181","X":577,"Y":490},{"Bonus":0,"Continent":"K54","ID":4086,"Name":"STOLICA DMK","PlayerID":6892517,"Points":8127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4086","ServerKey":"pl181","X":401,"Y":570},{"Bonus":0,"Continent":"K44","ID":4087,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4087","ServerKey":"pl181","X":443,"Y":459},{"Bonus":0,"Continent":"K44","ID":4088,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4088","ServerKey":"pl181","X":494,"Y":436},{"Bonus":0,"Continent":"K44","ID":4089,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4089","ServerKey":"pl181","X":463,"Y":441},{"Bonus":0,"Continent":"K54","ID":4090,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4090","ServerKey":"pl181","X":431,"Y":507},{"Bonus":0,"Continent":"K45","ID":4091,"Name":".:034:. Papryczka","PlayerID":699098531,"Points":8677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4091","ServerKey":"pl181","X":510,"Y":432},{"Bonus":0,"Continent":"K44","ID":4092,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4092","ServerKey":"pl181","X":440,"Y":464},{"Bonus":0,"Continent":"K54","ID":4093,"Name":"(032)","PlayerID":699846892,"Points":9402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4093","ServerKey":"pl181","X":418,"Y":534},{"Bonus":0,"Continent":"K43","ID":4094,"Name":"Tank 009. Za garƛć dolarĂłw","PlayerID":698290577,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4094","ServerKey":"pl181","X":399,"Y":495},{"Bonus":0,"Continent":"K65","ID":4095,"Name":"007","PlayerID":699567608,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4095","ServerKey":"pl181","X":556,"Y":609},{"Bonus":0,"Continent":"K44","ID":4096,"Name":"043","PlayerID":699510259,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4096","ServerKey":"pl181","X":425,"Y":486},{"Bonus":0,"Continent":"K45","ID":4097,"Name":"AbacadA 012","PlayerID":699756210,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4097","ServerKey":"pl181","X":567,"Y":426},{"Bonus":0,"Continent":"K44","ID":4098,"Name":"?+44 76 Baincthun","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4098","ServerKey":"pl181","X":468,"Y":478},{"Bonus":0,"Continent":"K55","ID":4099,"Name":"90k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4099","ServerKey":"pl181","X":561,"Y":539},{"Bonus":0,"Continent":"K55","ID":4100,"Name":"0024 K55 and987 OZDR.","PlayerID":3613413,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4100","ServerKey":"pl181","X":505,"Y":556},{"Bonus":0,"Continent":"K44","ID":4101,"Name":"0049","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4101","ServerKey":"pl181","X":457,"Y":469},{"Bonus":0,"Continent":"K44","ID":4102,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4102","ServerKey":"pl181","X":489,"Y":474},{"Bonus":0,"Continent":"K56","ID":4103,"Name":"Wembley","PlayerID":699795378,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4103","ServerKey":"pl181","X":620,"Y":512},{"Bonus":0,"Continent":"K44","ID":4104,"Name":"-023-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4104","ServerKey":"pl181","X":461,"Y":426},{"Bonus":0,"Continent":"K44","ID":4105,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4105","ServerKey":"pl181","X":478,"Y":419},{"Bonus":0,"Continent":"K55","ID":4106,"Name":"006","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4106","ServerKey":"pl181","X":582,"Y":535},{"Bonus":0,"Continent":"K54","ID":4107,"Name":"COUSINS...,....","PlayerID":7976264,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4107","ServerKey":"pl181","X":474,"Y":584},{"Bonus":0,"Continent":"K44","ID":4108,"Name":"Monetki ???","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4108","ServerKey":"pl181","X":481,"Y":423},{"Bonus":0,"Continent":"K45","ID":4109,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4109","ServerKey":"pl181","X":519,"Y":498},{"Bonus":0,"Continent":"K54","ID":4110,"Name":"30006","PlayerID":848915531,"Points":9238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4110","ServerKey":"pl181","X":487,"Y":539},{"Bonus":0,"Continent":"K45","ID":4111,"Name":"Szlachcic","PlayerID":698867446,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4111","ServerKey":"pl181","X":565,"Y":488},{"Bonus":0,"Continent":"K44","ID":4112,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4112","ServerKey":"pl181","X":464,"Y":432},{"Bonus":0,"Continent":"K54","ID":4113,"Name":"Fajna005","PlayerID":698971484,"Points":3523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4113","ServerKey":"pl181","X":453,"Y":556},{"Bonus":0,"Continent":"K55","ID":4114,"Name":"031","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4114","ServerKey":"pl181","X":521,"Y":571},{"Bonus":9,"Continent":"K55","ID":4115,"Name":"021. Wioska Krystiano242","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4115","ServerKey":"pl181","X":570,"Y":507},{"Bonus":0,"Continent":"K45","ID":4116,"Name":"Domek 1 *","PlayerID":849064614,"Points":9005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4116","ServerKey":"pl181","X":545,"Y":423},{"Bonus":0,"Continent":"K54","ID":4117,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4117","ServerKey":"pl181","X":430,"Y":513},{"Bonus":0,"Continent":"K55","ID":4119,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4119","ServerKey":"pl181","X":502,"Y":546},{"Bonus":0,"Continent":"K44","ID":4120,"Name":"060 San Jose","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4120","ServerKey":"pl181","X":458,"Y":471},{"Bonus":0,"Continent":"K45","ID":4121,"Name":"K45 - 007","PlayerID":6510480,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4121","ServerKey":"pl181","X":562,"Y":466},{"Bonus":0,"Continent":"K44","ID":4122,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4122","ServerKey":"pl181","X":440,"Y":497},{"Bonus":0,"Continent":"K44","ID":4123,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4123","ServerKey":"pl181","X":467,"Y":418},{"Bonus":0,"Continent":"K45","ID":4124,"Name":"#Shellder","PlayerID":699795378,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4124","ServerKey":"pl181","X":563,"Y":463},{"Bonus":0,"Continent":"K54","ID":4125,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4125","ServerKey":"pl181","X":458,"Y":540},{"Bonus":2,"Continent":"K44","ID":4126,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4126","ServerKey":"pl181","X":487,"Y":434},{"Bonus":0,"Continent":"K44","ID":4128,"Name":"189 Cuzco","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4128","ServerKey":"pl181","X":463,"Y":458},{"Bonus":0,"Continent":"K44","ID":4129,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4129","ServerKey":"pl181","X":477,"Y":439},{"Bonus":0,"Continent":"K44","ID":4130,"Name":"Baza2","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4130","ServerKey":"pl181","X":430,"Y":446},{"Bonus":0,"Continent":"K54","ID":4131,"Name":"*Ateny_14","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4131","ServerKey":"pl181","X":471,"Y":526},{"Bonus":0,"Continent":"K54","ID":4132,"Name":"0187","PlayerID":698659980,"Points":8786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4132","ServerKey":"pl181","X":466,"Y":554},{"Bonus":0,"Continent":"K54","ID":4133,"Name":"004","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4133","ServerKey":"pl181","X":445,"Y":524},{"Bonus":0,"Continent":"K55","ID":4134,"Name":"|065|Ooo","PlayerID":699664910,"Points":6894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4134","ServerKey":"pl181","X":569,"Y":531},{"Bonus":0,"Continent":"K55","ID":4135,"Name":"87k$ Grvvyq","PlayerID":699676005,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4135","ServerKey":"pl181","X":542,"Y":536},{"Bonus":0,"Continent":"K55","ID":4136,"Name":"003","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4136","ServerKey":"pl181","X":566,"Y":579},{"Bonus":0,"Continent":"K54","ID":4137,"Name":"Daleko 006","PlayerID":8369778,"Points":8156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4137","ServerKey":"pl181","X":477,"Y":583},{"Bonus":0,"Continent":"K55","ID":4138,"Name":"Amator","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4138","ServerKey":"pl181","X":522,"Y":578},{"Bonus":0,"Continent":"K54","ID":4139,"Name":"Sparta_44","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4139","ServerKey":"pl181","X":485,"Y":578},{"Bonus":0,"Continent":"K45","ID":4140,"Name":"K45 - 008","PlayerID":6510480,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4140","ServerKey":"pl181","X":563,"Y":461},{"Bonus":0,"Continent":"K54","ID":4141,"Name":"Mniejsze zƂo 0050","PlayerID":699794765,"Points":6463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4141","ServerKey":"pl181","X":421,"Y":507},{"Bonus":0,"Continent":"K45","ID":4142,"Name":"3. Gnojowice","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4142","ServerKey":"pl181","X":549,"Y":433},{"Bonus":0,"Continent":"K55","ID":4143,"Name":"- 116 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4143","ServerKey":"pl181","X":548,"Y":587},{"Bonus":3,"Continent":"K44","ID":4144,"Name":"A#035#","PlayerID":698807570,"Points":11383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4144","ServerKey":"pl181","X":424,"Y":479},{"Bonus":0,"Continent":"K44","ID":4145,"Name":"Szlachcic","PlayerID":699098531,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4145","ServerKey":"pl181","X":494,"Y":458},{"Bonus":0,"Continent":"K55","ID":4146,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4146","ServerKey":"pl181","X":539,"Y":539},{"Bonus":0,"Continent":"K54","ID":4147,"Name":"Sparta_37","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4147","ServerKey":"pl181","X":478,"Y":576},{"Bonus":0,"Continent":"K45","ID":4149,"Name":"002","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4149","ServerKey":"pl181","X":530,"Y":482},{"Bonus":0,"Continent":"K44","ID":4150,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4150","ServerKey":"pl181","X":489,"Y":426},{"Bonus":0,"Continent":"K45","ID":4151,"Name":"KoƄczyć czas:)","PlayerID":699368887,"Points":6663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4151","ServerKey":"pl181","X":552,"Y":443},{"Bonus":0,"Continent":"K54","ID":4152,"Name":"Front_03","PlayerID":2585846,"Points":5589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4152","ServerKey":"pl181","X":460,"Y":520},{"Bonus":0,"Continent":"K44","ID":4153,"Name":"Deff stop, chyba ĆŒe dla ryca exp","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4153","ServerKey":"pl181","X":490,"Y":471},{"Bonus":0,"Continent":"K44","ID":4154,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4154","ServerKey":"pl181","X":423,"Y":453},{"Bonus":0,"Continent":"K45","ID":4156,"Name":"07 | Twoja stara wioska","PlayerID":849002091,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4156","ServerKey":"pl181","X":544,"Y":431},{"Bonus":0,"Continent":"K44","ID":4157,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4157","ServerKey":"pl181","X":494,"Y":493},{"Bonus":3,"Continent":"K44","ID":4158,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4158","ServerKey":"pl181","X":496,"Y":441},{"Bonus":0,"Continent":"K54","ID":4159,"Name":"Fajna 019","PlayerID":698971484,"Points":5935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4159","ServerKey":"pl181","X":449,"Y":553},{"Bonus":0,"Continent":"K45","ID":4160,"Name":"049.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4160","ServerKey":"pl181","X":501,"Y":493},{"Bonus":0,"Continent":"K44","ID":4161,"Name":"076.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4161","ServerKey":"pl181","X":499,"Y":479},{"Bonus":0,"Continent":"K44","ID":4162,"Name":"048.","PlayerID":8788366,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4162","ServerKey":"pl181","X":499,"Y":494},{"Bonus":0,"Continent":"K45","ID":4163,"Name":"ADEN","PlayerID":698588535,"Points":8278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4163","ServerKey":"pl181","X":561,"Y":433},{"Bonus":0,"Continent":"K45","ID":4164,"Name":"001","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4164","ServerKey":"pl181","X":555,"Y":405},{"Bonus":3,"Continent":"K54","ID":4165,"Name":"#0089 Brzeƛć","PlayerID":9272054,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4165","ServerKey":"pl181","X":476,"Y":556},{"Bonus":0,"Continent":"K55","ID":4166,"Name":"Merhet","PlayerID":698215322,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4166","ServerKey":"pl181","X":522,"Y":582},{"Bonus":0,"Continent":"K45","ID":4167,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4167","ServerKey":"pl181","X":539,"Y":493},{"Bonus":0,"Continent":"K44","ID":4168,"Name":"054","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4168","ServerKey":"pl181","X":448,"Y":479},{"Bonus":0,"Continent":"K45","ID":4169,"Name":"081.","PlayerID":849094609,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4169","ServerKey":"pl181","X":567,"Y":463},{"Bonus":0,"Continent":"K44","ID":4170,"Name":"049","PlayerID":699510259,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4170","ServerKey":"pl181","X":432,"Y":489},{"Bonus":0,"Continent":"K44","ID":4171,"Name":"0080","PlayerID":848913037,"Points":3942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4171","ServerKey":"pl181","X":463,"Y":464},{"Bonus":0,"Continent":"K55","ID":4172,"Name":"- 033 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4172","ServerKey":"pl181","X":535,"Y":580},{"Bonus":0,"Continent":"K44","ID":4173,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4173","ServerKey":"pl181","X":457,"Y":445},{"Bonus":0,"Continent":"K45","ID":4174,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4174","ServerKey":"pl181","X":504,"Y":471},{"Bonus":0,"Continent":"K54","ID":4175,"Name":"Omali","PlayerID":699443920,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4175","ServerKey":"pl181","X":435,"Y":555},{"Bonus":0,"Continent":"K54","ID":4176,"Name":"ZostaƂem Krabem","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4176","ServerKey":"pl181","X":469,"Y":530},{"Bonus":2,"Continent":"K44","ID":4177,"Name":"0063 1","PlayerID":3909522,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4177","ServerKey":"pl181","X":451,"Y":431},{"Bonus":0,"Continent":"K55","ID":4178,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4178","ServerKey":"pl181","X":510,"Y":563},{"Bonus":0,"Continent":"K54","ID":4179,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":5439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4179","ServerKey":"pl181","X":486,"Y":506},{"Bonus":0,"Continent":"K54","ID":4180,"Name":"Sparta_68","PlayerID":2585846,"Points":9261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4180","ServerKey":"pl181","X":489,"Y":581},{"Bonus":0,"Continent":"K54","ID":4181,"Name":"025. ALFI","PlayerID":8539216,"Points":1916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4181","ServerKey":"pl181","X":484,"Y":571},{"Bonus":0,"Continent":"K45","ID":4182,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4182","ServerKey":"pl181","X":537,"Y":428},{"Bonus":0,"Continent":"K54","ID":4183,"Name":"Fajna 034","PlayerID":8539216,"Points":1765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4183","ServerKey":"pl181","X":462,"Y":570},{"Bonus":0,"Continent":"K55","ID":4184,"Name":"044 |","PlayerID":8000875,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4184","ServerKey":"pl181","X":557,"Y":560},{"Bonus":0,"Continent":"K54","ID":4185,"Name":"043","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4185","ServerKey":"pl181","X":421,"Y":521},{"Bonus":0,"Continent":"K54","ID":4186,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4186","ServerKey":"pl181","X":425,"Y":531},{"Bonus":0,"Continent":"K45","ID":4187,"Name":"018","PlayerID":8191129,"Points":8564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4187","ServerKey":"pl181","X":531,"Y":497},{"Bonus":0,"Continent":"K54","ID":4188,"Name":"SsSs","PlayerID":1536625,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4188","ServerKey":"pl181","X":452,"Y":501},{"Bonus":0,"Continent":"K44","ID":4189,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4189","ServerKey":"pl181","X":427,"Y":461},{"Bonus":0,"Continent":"K56","ID":4190,"Name":"Propion4t","PlayerID":699379895,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4190","ServerKey":"pl181","X":623,"Y":505},{"Bonus":0,"Continent":"K44","ID":4191,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4191","ServerKey":"pl181","X":439,"Y":464},{"Bonus":0,"Continent":"K54","ID":4192,"Name":"03. C1F","PlayerID":699781762,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4192","ServerKey":"pl181","X":473,"Y":507},{"Bonus":0,"Continent":"K54","ID":4193,"Name":"#0120 ƁabaƂbaƂ","PlayerID":698704189,"Points":8773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4193","ServerKey":"pl181","X":477,"Y":540},{"Bonus":0,"Continent":"K43","ID":4194,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4194","ServerKey":"pl181","X":389,"Y":475},{"Bonus":0,"Continent":"K55","ID":4195,"Name":"- 092 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4195","ServerKey":"pl181","X":539,"Y":582},{"Bonus":0,"Continent":"K45","ID":4196,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4196","ServerKey":"pl181","X":532,"Y":436},{"Bonus":0,"Continent":"K45","ID":4197,"Name":"Joms 015","PlayerID":699756210,"Points":10036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4197","ServerKey":"pl181","X":530,"Y":416},{"Bonus":0,"Continent":"K55","ID":4198,"Name":"|011|","PlayerID":873575,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4198","ServerKey":"pl181","X":559,"Y":570},{"Bonus":0,"Continent":"K55","ID":4199,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4199","ServerKey":"pl181","X":504,"Y":546},{"Bonus":0,"Continent":"K44","ID":4200,"Name":"?+44 86 Jons","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4200","ServerKey":"pl181","X":460,"Y":480},{"Bonus":0,"Continent":"K45","ID":4201,"Name":"114.","PlayerID":8788366,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4201","ServerKey":"pl181","X":534,"Y":483},{"Bonus":0,"Continent":"K54","ID":4202,"Name":"Wioska Pitter82","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4202","ServerKey":"pl181","X":478,"Y":501},{"Bonus":0,"Continent":"K45","ID":4203,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4203","ServerKey":"pl181","X":562,"Y":498},{"Bonus":0,"Continent":"K54","ID":4204,"Name":"002","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4204","ServerKey":"pl181","X":411,"Y":507},{"Bonus":0,"Continent":"K54","ID":4205,"Name":"Aleartis","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4205","ServerKey":"pl181","X":480,"Y":546},{"Bonus":0,"Continent":"K54","ID":4206,"Name":"Eldorado!","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4206","ServerKey":"pl181","X":498,"Y":501},{"Bonus":0,"Continent":"K44","ID":4207,"Name":"174 Cordoba","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4207","ServerKey":"pl181","X":480,"Y":483},{"Bonus":0,"Continent":"K44","ID":4208,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4208","ServerKey":"pl181","X":433,"Y":461},{"Bonus":0,"Continent":"K44","ID":4209,"Name":"P Konfederacja","PlayerID":848915730,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4209","ServerKey":"pl181","X":475,"Y":436},{"Bonus":0,"Continent":"K45","ID":4210,"Name":"[102] North2","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4210","ServerKey":"pl181","X":574,"Y":481},{"Bonus":0,"Continent":"K45","ID":4211,"Name":"009","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4211","ServerKey":"pl181","X":567,"Y":412},{"Bonus":0,"Continent":"K55","ID":4212,"Name":"027. Alkanost","PlayerID":699703642,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4212","ServerKey":"pl181","X":510,"Y":579},{"Bonus":0,"Continent":"K55","ID":4214,"Name":"066 |","PlayerID":8000875,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4214","ServerKey":"pl181","X":565,"Y":575},{"Bonus":0,"Continent":"K45","ID":4215,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4215","ServerKey":"pl181","X":520,"Y":419},{"Bonus":0,"Continent":"K44","ID":4216,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4216","ServerKey":"pl181","X":427,"Y":471},{"Bonus":0,"Continent":"K45","ID":4217,"Name":"WIEĆ»A GRANICZNA","PlayerID":8155296,"Points":10409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4217","ServerKey":"pl181","X":537,"Y":452},{"Bonus":0,"Continent":"K55","ID":4218,"Name":"Zadzwonię do Ciebie !","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4218","ServerKey":"pl181","X":500,"Y":503},{"Bonus":0,"Continent":"K54","ID":4219,"Name":"0184","PlayerID":698971484,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4219","ServerKey":"pl181","X":475,"Y":543},{"Bonus":0,"Continent":"K44","ID":4220,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4220","ServerKey":"pl181","X":443,"Y":461},{"Bonus":0,"Continent":"K44","ID":4221,"Name":"K44 007","PlayerID":698290577,"Points":5520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4221","ServerKey":"pl181","X":421,"Y":475},{"Bonus":0,"Continent":"K55","ID":4222,"Name":"CALL 1019","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4222","ServerKey":"pl181","X":543,"Y":563},{"Bonus":0,"Continent":"K55","ID":4223,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4223","ServerKey":"pl181","X":527,"Y":541},{"Bonus":0,"Continent":"K54","ID":4224,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4224","ServerKey":"pl181","X":457,"Y":543},{"Bonus":0,"Continent":"K35","ID":4225,"Name":"005. Cintra","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4225","ServerKey":"pl181","X":564,"Y":397},{"Bonus":0,"Continent":"K44","ID":4226,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4226","ServerKey":"pl181","X":466,"Y":420},{"Bonus":0,"Continent":"K44","ID":4228,"Name":"Brat447","PlayerID":699262350,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4228","ServerKey":"pl181","X":445,"Y":494},{"Bonus":0,"Continent":"K35","ID":4229,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4229","ServerKey":"pl181","X":536,"Y":398},{"Bonus":0,"Continent":"K54","ID":4230,"Name":"Prawo ponad prawem!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4230","ServerKey":"pl181","X":493,"Y":509},{"Bonus":0,"Continent":"K45","ID":4231,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4231","ServerKey":"pl181","X":547,"Y":488},{"Bonus":0,"Continent":"K55","ID":4232,"Name":"P.006","PlayerID":873575,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4232","ServerKey":"pl181","X":540,"Y":559},{"Bonus":6,"Continent":"K44","ID":4233,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4233","ServerKey":"pl181","X":477,"Y":414},{"Bonus":0,"Continent":"K54","ID":4234,"Name":"Twierdza 001","PlayerID":849084740,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4234","ServerKey":"pl181","X":421,"Y":571},{"Bonus":0,"Continent":"K45","ID":4235,"Name":"023","PlayerID":849031818,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4235","ServerKey":"pl181","X":548,"Y":475},{"Bonus":0,"Continent":"K54","ID":4236,"Name":"NOT FOR YOU","PlayerID":9236866,"Points":6105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4236","ServerKey":"pl181","X":456,"Y":552},{"Bonus":0,"Continent":"K45","ID":4237,"Name":"[097]","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4237","ServerKey":"pl181","X":538,"Y":489},{"Bonus":0,"Continent":"K54","ID":4238,"Name":"0173","PlayerID":699856962,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4238","ServerKey":"pl181","X":471,"Y":549},{"Bonus":0,"Continent":"K44","ID":4239,"Name":"015","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4239","ServerKey":"pl181","X":420,"Y":477},{"Bonus":0,"Continent":"K44","ID":4240,"Name":"B011","PlayerID":699299123,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4240","ServerKey":"pl181","X":488,"Y":448},{"Bonus":0,"Continent":"K54","ID":4241,"Name":"ATENY","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4241","ServerKey":"pl181","X":474,"Y":536},{"Bonus":0,"Continent":"K45","ID":4242,"Name":"Szlachcic","PlayerID":698867446,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4242","ServerKey":"pl181","X":560,"Y":490},{"Bonus":0,"Continent":"K45","ID":4243,"Name":"Akademia Bogactwa","PlayerID":848986287,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4243","ServerKey":"pl181","X":550,"Y":426},{"Bonus":0,"Continent":"K45","ID":4245,"Name":"-12-","PlayerID":699347951,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4245","ServerKey":"pl181","X":589,"Y":482},{"Bonus":0,"Continent":"K54","ID":4246,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4246","ServerKey":"pl181","X":433,"Y":515},{"Bonus":0,"Continent":"K45","ID":4247,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4247","ServerKey":"pl181","X":548,"Y":479},{"Bonus":0,"Continent":"K55","ID":4249,"Name":"ladyanima","PlayerID":699703642,"Points":9223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4249","ServerKey":"pl181","X":509,"Y":572},{"Bonus":0,"Continent":"K54","ID":4251,"Name":"Fajna 003","PlayerID":699868002,"Points":9163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4251","ServerKey":"pl181","X":450,"Y":559},{"Bonus":0,"Continent":"K45","ID":4252,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4252","ServerKey":"pl181","X":578,"Y":487},{"Bonus":0,"Continent":"K54","ID":4253,"Name":"Yuppi","PlayerID":699856962,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4253","ServerKey":"pl181","X":454,"Y":529},{"Bonus":0,"Continent":"K55","ID":4254,"Name":"Szlachcic 050","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4254","ServerKey":"pl181","X":567,"Y":532},{"Bonus":0,"Continent":"K44","ID":4255,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4255","ServerKey":"pl181","X":426,"Y":465},{"Bonus":0,"Continent":"K53","ID":4256,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4256","ServerKey":"pl181","X":385,"Y":521},{"Bonus":0,"Continent":"K55","ID":4257,"Name":"CALL 1054","PlayerID":699784536,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4257","ServerKey":"pl181","X":520,"Y":567},{"Bonus":0,"Continent":"K54","ID":4258,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4258","ServerKey":"pl181","X":462,"Y":514},{"Bonus":0,"Continent":"K43","ID":4259,"Name":"Mniejsze zƂo 0008","PlayerID":699794765,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4259","ServerKey":"pl181","X":391,"Y":463},{"Bonus":0,"Continent":"K54","ID":4260,"Name":"Mniejsze zƂo 0063","PlayerID":699794765,"Points":8442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4260","ServerKey":"pl181","X":420,"Y":506},{"Bonus":0,"Continent":"K53","ID":4261,"Name":"Ikona*","PlayerID":1804724,"Points":10142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4261","ServerKey":"pl181","X":394,"Y":525},{"Bonus":0,"Continent":"K44","ID":4262,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4262","ServerKey":"pl181","X":494,"Y":476},{"Bonus":0,"Continent":"K45","ID":4263,"Name":"6kilka","PlayerID":6923061,"Points":2284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4263","ServerKey":"pl181","X":531,"Y":458},{"Bonus":0,"Continent":"K45","ID":4264,"Name":".:116:. Niangmen","PlayerID":848934935,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4264","ServerKey":"pl181","X":513,"Y":410},{"Bonus":0,"Continent":"K54","ID":4265,"Name":"KIELBA 064","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4265","ServerKey":"pl181","X":470,"Y":576},{"Bonus":0,"Continent":"K54","ID":4266,"Name":"Fajna 070","PlayerID":8539216,"Points":7929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4266","ServerKey":"pl181","X":454,"Y":564},{"Bonus":0,"Continent":"K45","ID":4267,"Name":"MORIA F","PlayerID":8155296,"Points":10817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4267","ServerKey":"pl181","X":540,"Y":472},{"Bonus":0,"Continent":"K45","ID":4268,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4268","ServerKey":"pl181","X":504,"Y":452},{"Bonus":0,"Continent":"K54","ID":4269,"Name":"059. ALFI","PlayerID":8539216,"Points":1132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4269","ServerKey":"pl181","X":484,"Y":563},{"Bonus":0,"Continent":"K54","ID":4270,"Name":"NOT?","PlayerID":9236866,"Points":2313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4270","ServerKey":"pl181","X":435,"Y":552},{"Bonus":0,"Continent":"K54","ID":4271,"Name":"Oreo","PlayerID":699443920,"Points":3940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4271","ServerKey":"pl181","X":439,"Y":560},{"Bonus":0,"Continent":"K54","ID":4272,"Name":"Wawrzyniak 017","PlayerID":698290577,"Points":2380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4272","ServerKey":"pl181","X":450,"Y":547},{"Bonus":0,"Continent":"K54","ID":4273,"Name":"Kasyno","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4273","ServerKey":"pl181","X":449,"Y":518},{"Bonus":0,"Continent":"K44","ID":4274,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4274","ServerKey":"pl181","X":425,"Y":465},{"Bonus":0,"Continent":"K44","ID":4275,"Name":"212 New Delhi","PlayerID":1497168,"Points":6914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4275","ServerKey":"pl181","X":472,"Y":490},{"Bonus":0,"Continent":"K55","ID":4276,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4276","ServerKey":"pl181","X":586,"Y":530},{"Bonus":0,"Continent":"K54","ID":4277,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4277","ServerKey":"pl181","X":433,"Y":530},{"Bonus":0,"Continent":"K54","ID":4279,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4279","ServerKey":"pl181","X":476,"Y":563},{"Bonus":0,"Continent":"K44","ID":4280,"Name":"-----------------3","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4280","ServerKey":"pl181","X":460,"Y":422},{"Bonus":0,"Continent":"K64","ID":4281,"Name":"NIERAJ07","PlayerID":699859013,"Points":5782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4281","ServerKey":"pl181","X":442,"Y":610},{"Bonus":0,"Continent":"K54","ID":4282,"Name":"024","PlayerID":2585846,"Points":3069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4282","ServerKey":"pl181","X":464,"Y":524},{"Bonus":0,"Continent":"K44","ID":4283,"Name":"Szlachcic","PlayerID":699098531,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4283","ServerKey":"pl181","X":486,"Y":466},{"Bonus":0,"Continent":"K45","ID":4284,"Name":"0033","PlayerID":699432672,"Points":5384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4284","ServerKey":"pl181","X":556,"Y":495},{"Bonus":0,"Continent":"K45","ID":4285,"Name":"153 MIKOX 054","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4285","ServerKey":"pl181","X":591,"Y":413},{"Bonus":0,"Continent":"K44","ID":4286,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4286","ServerKey":"pl181","X":482,"Y":414},{"Bonus":0,"Continent":"K55","ID":4287,"Name":"20008","PlayerID":848915531,"Points":7633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4287","ServerKey":"pl181","X":519,"Y":540},{"Bonus":0,"Continent":"K55","ID":4288,"Name":"053 |","PlayerID":8000875,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4288","ServerKey":"pl181","X":555,"Y":535},{"Bonus":0,"Continent":"K45","ID":4289,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4289","ServerKey":"pl181","X":564,"Y":499},{"Bonus":0,"Continent":"K55","ID":4290,"Name":"CALL 958","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4290","ServerKey":"pl181","X":543,"Y":550},{"Bonus":0,"Continent":"K44","ID":4291,"Name":"012 Moab","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4291","ServerKey":"pl181","X":438,"Y":468},{"Bonus":0,"Continent":"K54","ID":4292,"Name":"055. ALFI","PlayerID":8539216,"Points":2008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4292","ServerKey":"pl181","X":485,"Y":568},{"Bonus":0,"Continent":"K45","ID":4293,"Name":"Belvedere 001","PlayerID":699756210,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4293","ServerKey":"pl181","X":579,"Y":413},{"Bonus":0,"Continent":"K45","ID":4294,"Name":"055.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4294","ServerKey":"pl181","X":510,"Y":490},{"Bonus":0,"Continent":"K45","ID":4295,"Name":"Szlachcic","PlayerID":698867446,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4295","ServerKey":"pl181","X":561,"Y":496},{"Bonus":0,"Continent":"K55","ID":4296,"Name":"P.002","PlayerID":873575,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4296","ServerKey":"pl181","X":532,"Y":559},{"Bonus":0,"Continent":"K55","ID":4297,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4297","ServerKey":"pl181","X":581,"Y":503},{"Bonus":0,"Continent":"K43","ID":4298,"Name":"s181eo17","PlayerID":393668,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4298","ServerKey":"pl181","X":399,"Y":446},{"Bonus":0,"Continent":"K54","ID":4299,"Name":"F052","PlayerID":699189792,"Points":8677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4299","ServerKey":"pl181","X":483,"Y":521},{"Bonus":0,"Continent":"K45","ID":4300,"Name":"Joms 024","PlayerID":699756210,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4300","ServerKey":"pl181","X":529,"Y":422},{"Bonus":0,"Continent":"K55","ID":4301,"Name":"- 302 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4301","ServerKey":"pl181","X":528,"Y":582},{"Bonus":0,"Continent":"K45","ID":4302,"Name":"Domek 3","PlayerID":849064614,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4302","ServerKey":"pl181","X":547,"Y":424},{"Bonus":4,"Continent":"K45","ID":4303,"Name":".:006:.Chillout","PlayerID":848934935,"Points":8211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4303","ServerKey":"pl181","X":511,"Y":443},{"Bonus":0,"Continent":"K45","ID":4304,"Name":"LEGION_2","PlayerID":6101033,"Points":4280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4304","ServerKey":"pl181","X":553,"Y":448},{"Bonus":0,"Continent":"K54","ID":4305,"Name":"Fajna009","PlayerID":8539216,"Points":1721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4305","ServerKey":"pl181","X":464,"Y":572},{"Bonus":6,"Continent":"K54","ID":4306,"Name":"PARA","PlayerID":8369778,"Points":9330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4306","ServerKey":"pl181","X":475,"Y":581},{"Bonus":0,"Continent":"K45","ID":4307,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":6697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4307","ServerKey":"pl181","X":514,"Y":461},{"Bonus":0,"Continent":"K45","ID":4308,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4308","ServerKey":"pl181","X":547,"Y":480},{"Bonus":0,"Continent":"K45","ID":4309,"Name":"009 HEAVY","PlayerID":849031818,"Points":9113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4309","ServerKey":"pl181","X":555,"Y":485},{"Bonus":0,"Continent":"K45","ID":4310,"Name":"[187]","PlayerID":8000875,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4310","ServerKey":"pl181","X":537,"Y":490},{"Bonus":0,"Continent":"K55","ID":4311,"Name":"amator","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4311","ServerKey":"pl181","X":527,"Y":570},{"Bonus":0,"Continent":"K45","ID":4312,"Name":".achim.","PlayerID":6936607,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4312","ServerKey":"pl181","X":530,"Y":452},{"Bonus":0,"Continent":"K45","ID":4313,"Name":".achim.","PlayerID":6936607,"Points":7055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4313","ServerKey":"pl181","X":534,"Y":422},{"Bonus":3,"Continent":"K44","ID":4314,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4314","ServerKey":"pl181","X":497,"Y":443},{"Bonus":0,"Continent":"K45","ID":4315,"Name":"!Snorlax","PlayerID":699795378,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4315","ServerKey":"pl181","X":570,"Y":449},{"Bonus":0,"Continent":"K54","ID":4316,"Name":"Fajna 050","PlayerID":698971484,"Points":2477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4316","ServerKey":"pl181","X":452,"Y":553},{"Bonus":0,"Continent":"K44","ID":4317,"Name":"039 St. George","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4317","ServerKey":"pl181","X":446,"Y":461},{"Bonus":0,"Continent":"K44","ID":4318,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4318","ServerKey":"pl181","X":486,"Y":440},{"Bonus":0,"Continent":"K45","ID":4319,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4319","ServerKey":"pl181","X":547,"Y":483},{"Bonus":0,"Continent":"K55","ID":4320,"Name":"Sas","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4320","ServerKey":"pl181","X":511,"Y":544},{"Bonus":8,"Continent":"K54","ID":4321,"Name":"keepo","PlayerID":848967710,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4321","ServerKey":"pl181","X":475,"Y":509},{"Bonus":0,"Continent":"K44","ID":4322,"Name":"merkus 73","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4322","ServerKey":"pl181","X":429,"Y":433},{"Bonus":0,"Continent":"K54","ID":4323,"Name":"OsaDavout","PlayerID":699698253,"Points":6173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4323","ServerKey":"pl181","X":451,"Y":539},{"Bonus":0,"Continent":"K54","ID":4324,"Name":"Winter is coming","PlayerID":698971484,"Points":1408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4324","ServerKey":"pl181","X":441,"Y":545},{"Bonus":4,"Continent":"K55","ID":4325,"Name":"012 | Lord Arsey - Konfederacji","PlayerID":8000875,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4325","ServerKey":"pl181","X":567,"Y":553},{"Bonus":0,"Continent":"K44","ID":4326,"Name":"Cast Away 022","PlayerID":698290577,"Points":4232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4326","ServerKey":"pl181","X":440,"Y":486},{"Bonus":0,"Continent":"K45","ID":4327,"Name":"019","PlayerID":848930111,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4327","ServerKey":"pl181","X":536,"Y":474},{"Bonus":0,"Continent":"K44","ID":4328,"Name":"Pf Konfederacja w","PlayerID":848915730,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4328","ServerKey":"pl181","X":487,"Y":491},{"Bonus":0,"Continent":"K44","ID":4329,"Name":"Szlachcic","PlayerID":699098531,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4329","ServerKey":"pl181","X":492,"Y":477},{"Bonus":0,"Continent":"K44","ID":4330,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4330","ServerKey":"pl181","X":417,"Y":488},{"Bonus":0,"Continent":"K55","ID":4331,"Name":"JaamMwG 004","PlayerID":848987051,"Points":9084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4331","ServerKey":"pl181","X":526,"Y":522},{"Bonus":0,"Continent":"K54","ID":4332,"Name":"BETI 009","PlayerID":8539216,"Points":1803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4332","ServerKey":"pl181","X":461,"Y":568},{"Bonus":2,"Continent":"K44","ID":4333,"Name":"Fresio","PlayerID":699660539,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4333","ServerKey":"pl181","X":449,"Y":445},{"Bonus":0,"Continent":"K55","ID":4334,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4334","ServerKey":"pl181","X":505,"Y":594},{"Bonus":0,"Continent":"K44","ID":4335,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4335","ServerKey":"pl181","X":491,"Y":490},{"Bonus":0,"Continent":"K44","ID":4336,"Name":"SsSs","PlayerID":1536625,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4336","ServerKey":"pl181","X":422,"Y":490},{"Bonus":0,"Continent":"K45","ID":4337,"Name":"007","PlayerID":699368887,"Points":7518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4337","ServerKey":"pl181","X":556,"Y":462},{"Bonus":0,"Continent":"K55","ID":4338,"Name":"001 | B. Moon l Black E.","PlayerID":8000875,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4338","ServerKey":"pl181","X":562,"Y":560},{"Bonus":0,"Continent":"K45","ID":4339,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4339","ServerKey":"pl181","X":580,"Y":465},{"Bonus":0,"Continent":"K55","ID":4340,"Name":"Szlachcic 041","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4340","ServerKey":"pl181","X":567,"Y":527},{"Bonus":0,"Continent":"K54","ID":4341,"Name":"SPARTA_66","PlayerID":2585846,"Points":8969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4341","ServerKey":"pl181","X":485,"Y":579},{"Bonus":0,"Continent":"K44","ID":4342,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4342","ServerKey":"pl181","X":485,"Y":481},{"Bonus":0,"Continent":"K55","ID":4343,"Name":"- 096 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4343","ServerKey":"pl181","X":544,"Y":577},{"Bonus":0,"Continent":"K54","ID":4344,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4344","ServerKey":"pl181","X":469,"Y":540},{"Bonus":0,"Continent":"K54","ID":4345,"Name":"White widow","PlayerID":9167250,"Points":8845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4345","ServerKey":"pl181","X":401,"Y":568},{"Bonus":0,"Continent":"K45","ID":4346,"Name":"060 Estonia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4346","ServerKey":"pl181","X":574,"Y":464},{"Bonus":0,"Continent":"K55","ID":4347,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4347","ServerKey":"pl181","X":518,"Y":578},{"Bonus":0,"Continent":"K55","ID":4348,"Name":"01*","PlayerID":699664910,"Points":7111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4348","ServerKey":"pl181","X":564,"Y":544},{"Bonus":0,"Continent":"K44","ID":4349,"Name":"108 St Johns","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4349","ServerKey":"pl181","X":473,"Y":491},{"Bonus":0,"Continent":"K55","ID":4350,"Name":"- 309 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4350","ServerKey":"pl181","X":524,"Y":585},{"Bonus":0,"Continent":"K45","ID":4351,"Name":"-[024]- Chomo Lonzo","PlayerID":849092827,"Points":7605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4351","ServerKey":"pl181","X":559,"Y":487},{"Bonus":0,"Continent":"K55","ID":4352,"Name":"F004","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4352","ServerKey":"pl181","X":509,"Y":533},{"Bonus":0,"Continent":"K54","ID":4353,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4353","ServerKey":"pl181","X":456,"Y":505},{"Bonus":0,"Continent":"K34","ID":4354,"Name":"0005","PlayerID":699431255,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4354","ServerKey":"pl181","X":449,"Y":391},{"Bonus":0,"Continent":"K44","ID":4355,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4355","ServerKey":"pl181","X":486,"Y":426},{"Bonus":0,"Continent":"K54","ID":4356,"Name":"#0118 Jupiter","PlayerID":9272054,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4356","ServerKey":"pl181","X":499,"Y":550},{"Bonus":0,"Continent":"K44","ID":4357,"Name":"P Konfederacja","PlayerID":848915730,"Points":9463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4357","ServerKey":"pl181","X":455,"Y":451},{"Bonus":0,"Continent":"K55","ID":4358,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4358","ServerKey":"pl181","X":506,"Y":574},{"Bonus":0,"Continent":"K45","ID":4359,"Name":"x01","PlayerID":8459255,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4359","ServerKey":"pl181","X":544,"Y":470},{"Bonus":0,"Continent":"K45","ID":4360,"Name":"[108] North8","PlayerID":848985692,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4360","ServerKey":"pl181","X":571,"Y":486},{"Bonus":0,"Continent":"K54","ID":4361,"Name":"009. Nocnica","PlayerID":699703642,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4361","ServerKey":"pl181","X":497,"Y":586},{"Bonus":0,"Continent":"K45","ID":4362,"Name":"x04","PlayerID":8459255,"Points":10018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4362","ServerKey":"pl181","X":549,"Y":468},{"Bonus":0,"Continent":"K55","ID":4363,"Name":"CALL 1082","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4363","ServerKey":"pl181","X":540,"Y":549},{"Bonus":0,"Continent":"K54","ID":4364,"Name":"Fajna 049","PlayerID":698971484,"Points":979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4364","ServerKey":"pl181","X":454,"Y":553},{"Bonus":0,"Continent":"K45","ID":4365,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4365","ServerKey":"pl181","X":548,"Y":491},{"Bonus":0,"Continent":"K45","ID":4366,"Name":"Joms 039","PlayerID":699756210,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4366","ServerKey":"pl181","X":532,"Y":427},{"Bonus":0,"Continent":"K54","ID":4367,"Name":"Sparta_23","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4367","ServerKey":"pl181","X":496,"Y":596},{"Bonus":0,"Continent":"K54","ID":4368,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":5213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4368","ServerKey":"pl181","X":455,"Y":535},{"Bonus":0,"Continent":"K64","ID":4369,"Name":"~030.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4369","ServerKey":"pl181","X":476,"Y":600},{"Bonus":4,"Continent":"K44","ID":4370,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4370","ServerKey":"pl181","X":492,"Y":459},{"Bonus":0,"Continent":"K44","ID":4371,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4371","ServerKey":"pl181","X":457,"Y":403},{"Bonus":0,"Continent":"K44","ID":4372,"Name":"New York","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4372","ServerKey":"pl181","X":425,"Y":450},{"Bonus":0,"Continent":"K55","ID":4373,"Name":"Winter is coming","PlayerID":699364813,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4373","ServerKey":"pl181","X":503,"Y":581},{"Bonus":0,"Continent":"K55","ID":4374,"Name":"027","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4374","ServerKey":"pl181","X":567,"Y":545},{"Bonus":0,"Continent":"K44","ID":4375,"Name":"PRO8L3M","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4375","ServerKey":"pl181","X":420,"Y":497},{"Bonus":0,"Continent":"K54","ID":4376,"Name":"Front_15","PlayerID":699856962,"Points":5851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4376","ServerKey":"pl181","X":459,"Y":527},{"Bonus":0,"Continent":"K53","ID":4377,"Name":"x B002","PlayerID":698290577,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4377","ServerKey":"pl181","X":392,"Y":515},{"Bonus":0,"Continent":"K55","ID":4378,"Name":"001","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4378","ServerKey":"pl181","X":585,"Y":543},{"Bonus":0,"Continent":"K44","ID":4379,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":11487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4379","ServerKey":"pl181","X":467,"Y":496},{"Bonus":0,"Continent":"K45","ID":4380,"Name":"xxx","PlayerID":698239813,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4380","ServerKey":"pl181","X":512,"Y":466},{"Bonus":0,"Continent":"K55","ID":4381,"Name":"011. PóƂnocnica","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4381","ServerKey":"pl181","X":505,"Y":578},{"Bonus":1,"Continent":"K55","ID":4382,"Name":"P.007Z","PlayerID":873575,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4382","ServerKey":"pl181","X":509,"Y":559},{"Bonus":0,"Continent":"K54","ID":4383,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4383","ServerKey":"pl181","X":436,"Y":501},{"Bonus":0,"Continent":"K54","ID":4384,"Name":"Kasyno","PlayerID":7249451,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4384","ServerKey":"pl181","X":440,"Y":509},{"Bonus":0,"Continent":"K54","ID":4385,"Name":"Fajna 087","PlayerID":8539216,"Points":1836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4385","ServerKey":"pl181","X":457,"Y":564},{"Bonus":0,"Continent":"K44","ID":4386,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4386","ServerKey":"pl181","X":421,"Y":479},{"Bonus":0,"Continent":"K54","ID":4387,"Name":"Kasyno","PlayerID":7249451,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4387","ServerKey":"pl181","X":445,"Y":512},{"Bonus":0,"Continent":"K45","ID":4388,"Name":"001","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4388","ServerKey":"pl181","X":530,"Y":480},{"Bonus":0,"Continent":"K54","ID":4389,"Name":"018","PlayerID":849092723,"Points":8019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4389","ServerKey":"pl181","X":490,"Y":526},{"Bonus":0,"Continent":"K55","ID":4390,"Name":"023","PlayerID":699189792,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4390","ServerKey":"pl181","X":529,"Y":575},{"Bonus":0,"Continent":"K44","ID":4391,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4391","ServerKey":"pl181","X":493,"Y":488},{"Bonus":0,"Continent":"K55","ID":4392,"Name":"- 036 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4392","ServerKey":"pl181","X":533,"Y":578},{"Bonus":4,"Continent":"K54","ID":4393,"Name":"006. ALFI","PlayerID":8369778,"Points":2230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4393","ServerKey":"pl181","X":484,"Y":573},{"Bonus":0,"Continent":"K55","ID":4394,"Name":"Offline","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4394","ServerKey":"pl181","X":503,"Y":516},{"Bonus":0,"Continent":"K55","ID":4395,"Name":"Wioska Kermej","PlayerID":7581876,"Points":7474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4395","ServerKey":"pl181","X":537,"Y":525},{"Bonus":0,"Continent":"K45","ID":4396,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4396","ServerKey":"pl181","X":510,"Y":436},{"Bonus":0,"Continent":"K54","ID":4397,"Name":"Winter is coming","PlayerID":698971484,"Points":4779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4397","ServerKey":"pl181","X":442,"Y":552},{"Bonus":0,"Continent":"K45","ID":4398,"Name":"Osada","PlayerID":699098531,"Points":8561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4398","ServerKey":"pl181","X":500,"Y":453},{"Bonus":0,"Continent":"K55","ID":4399,"Name":"Yogi","PlayerID":2808172,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4399","ServerKey":"pl181","X":532,"Y":550},{"Bonus":0,"Continent":"K55","ID":4400,"Name":"Rilonia","PlayerID":849066849,"Points":5371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4400","ServerKey":"pl181","X":514,"Y":550},{"Bonus":0,"Continent":"K55","ID":4401,"Name":"Szlachcic 052","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4401","ServerKey":"pl181","X":571,"Y":522},{"Bonus":0,"Continent":"K45","ID":4402,"Name":"[095]","PlayerID":848985692,"Points":11391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4402","ServerKey":"pl181","X":539,"Y":489},{"Bonus":0,"Continent":"K55","ID":4403,"Name":"[072] Noqtlok","PlayerID":848985692,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4403","ServerKey":"pl181","X":528,"Y":506},{"Bonus":0,"Continent":"K45","ID":4404,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4404","ServerKey":"pl181","X":512,"Y":435},{"Bonus":0,"Continent":"K45","ID":4405,"Name":".achim.","PlayerID":6936607,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4405","ServerKey":"pl181","X":533,"Y":447},{"Bonus":0,"Continent":"K45","ID":4406,"Name":"[121] North21","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4406","ServerKey":"pl181","X":571,"Y":470},{"Bonus":0,"Continent":"K55","ID":4407,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4407","ServerKey":"pl181","X":565,"Y":500},{"Bonus":1,"Continent":"K54","ID":4408,"Name":"015. ALFI","PlayerID":8539216,"Points":2586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4408","ServerKey":"pl181","X":483,"Y":568},{"Bonus":0,"Continent":"K54","ID":4409,"Name":"PRO8L3M","PlayerID":7491093,"Points":8115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4409","ServerKey":"pl181","X":468,"Y":500},{"Bonus":0,"Continent":"K44","ID":4410,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4410","ServerKey":"pl181","X":440,"Y":463},{"Bonus":0,"Continent":"K44","ID":4411,"Name":"B017","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4411","ServerKey":"pl181","X":485,"Y":451},{"Bonus":0,"Continent":"K54","ID":4412,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4412","ServerKey":"pl181","X":418,"Y":519},{"Bonus":0,"Continent":"K44","ID":4413,"Name":"Suppi","PlayerID":699856962,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4413","ServerKey":"pl181","X":444,"Y":449},{"Bonus":0,"Continent":"K44","ID":4414,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4414","ServerKey":"pl181","X":445,"Y":471},{"Bonus":0,"Continent":"K45","ID":4415,"Name":"Jehu_Kingdom_30_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4415","ServerKey":"pl181","X":586,"Y":475},{"Bonus":0,"Continent":"K54","ID":4416,"Name":"Sparta_29","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4416","ServerKey":"pl181","X":489,"Y":582},{"Bonus":3,"Continent":"K55","ID":4417,"Name":"023. Ni ma opcji xd","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4417","ServerKey":"pl181","X":506,"Y":583},{"Bonus":0,"Continent":"K45","ID":4418,"Name":".achim.","PlayerID":6936607,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4418","ServerKey":"pl181","X":541,"Y":409},{"Bonus":0,"Continent":"K54","ID":4419,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4419","ServerKey":"pl181","X":479,"Y":543},{"Bonus":0,"Continent":"K45","ID":4420,"Name":"[124] North24","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4420","ServerKey":"pl181","X":572,"Y":473},{"Bonus":0,"Continent":"K53","ID":4421,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4421","ServerKey":"pl181","X":394,"Y":503},{"Bonus":3,"Continent":"K54","ID":4422,"Name":"016. ALFI","PlayerID":8539216,"Points":2453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4422","ServerKey":"pl181","X":471,"Y":571},{"Bonus":0,"Continent":"K54","ID":4423,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4423","ServerKey":"pl181","X":494,"Y":558},{"Bonus":0,"Continent":"K45","ID":4424,"Name":"BBB","PlayerID":1006847,"Points":7788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4424","ServerKey":"pl181","X":552,"Y":436},{"Bonus":2,"Continent":"K55","ID":4425,"Name":"007. Wioska lllllllllXDlllllllll","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4425","ServerKey":"pl181","X":568,"Y":529},{"Bonus":0,"Continent":"K54","ID":4427,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4427","ServerKey":"pl181","X":417,"Y":536},{"Bonus":0,"Continent":"K53","ID":4428,"Name":"165 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4428","ServerKey":"pl181","X":386,"Y":545},{"Bonus":0,"Continent":"K44","ID":4429,"Name":"090 Des Moines","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4429","ServerKey":"pl181","X":478,"Y":456},{"Bonus":0,"Continent":"K55","ID":4430,"Name":"0008","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4430","ServerKey":"pl181","X":505,"Y":524},{"Bonus":0,"Continent":"K54","ID":4431,"Name":"#0027 Kwarantanna","PlayerID":9272054,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4431","ServerKey":"pl181","X":498,"Y":526},{"Bonus":0,"Continent":"K44","ID":4432,"Name":"096.","PlayerID":8788366,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4432","ServerKey":"pl181","X":477,"Y":499},{"Bonus":0,"Continent":"K54","ID":4433,"Name":"Olenale","PlayerID":699443920,"Points":3508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4433","ServerKey":"pl181","X":439,"Y":559},{"Bonus":0,"Continent":"K55","ID":4434,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4434","ServerKey":"pl181","X":517,"Y":546},{"Bonus":0,"Continent":"K44","ID":4435,"Name":"B071","PlayerID":699299123,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4435","ServerKey":"pl181","X":476,"Y":454},{"Bonus":0,"Continent":"K45","ID":4436,"Name":"XXX001","PlayerID":699368887,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4436","ServerKey":"pl181","X":569,"Y":456},{"Bonus":0,"Continent":"K45","ID":4437,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4437","ServerKey":"pl181","X":557,"Y":499},{"Bonus":0,"Continent":"K54","ID":4438,"Name":"KIELBA 072","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4438","ServerKey":"pl181","X":471,"Y":577},{"Bonus":0,"Continent":"K54","ID":4439,"Name":"Daleko 019","PlayerID":8369778,"Points":8617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4439","ServerKey":"pl181","X":484,"Y":589},{"Bonus":0,"Continent":"K54","ID":4440,"Name":"Lynortis","PlayerID":849001724,"Points":6404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4440","ServerKey":"pl181","X":464,"Y":537},{"Bonus":0,"Continent":"K54","ID":4441,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4441","ServerKey":"pl181","X":481,"Y":522},{"Bonus":0,"Continent":"K45","ID":4442,"Name":"012","PlayerID":849031818,"Points":3874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4442","ServerKey":"pl181","X":561,"Y":474},{"Bonus":0,"Continent":"K55","ID":4443,"Name":"Durthang","PlayerID":849091897,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4443","ServerKey":"pl181","X":505,"Y":514},{"Bonus":0,"Continent":"K35","ID":4444,"Name":"046","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4444","ServerKey":"pl181","X":549,"Y":391},{"Bonus":0,"Continent":"K45","ID":4445,"Name":"Wioska Mateox","PlayerID":699432672,"Points":3778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4445","ServerKey":"pl181","X":555,"Y":496},{"Bonus":0,"Continent":"K35","ID":4446,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4446","ServerKey":"pl181","X":540,"Y":397},{"Bonus":0,"Continent":"K45","ID":4447,"Name":"Szlachcic","PlayerID":698867446,"Points":10043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4447","ServerKey":"pl181","X":565,"Y":467},{"Bonus":0,"Continent":"K44","ID":4448,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4448","ServerKey":"pl181","X":499,"Y":474},{"Bonus":0,"Continent":"K45","ID":4449,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4449","ServerKey":"pl181","X":530,"Y":433},{"Bonus":0,"Continent":"K44","ID":4450,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4450","ServerKey":"pl181","X":423,"Y":485},{"Bonus":0,"Continent":"K35","ID":4451,"Name":".achim.","PlayerID":6936607,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4451","ServerKey":"pl181","X":525,"Y":385},{"Bonus":0,"Continent":"K55","ID":4452,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4452","ServerKey":"pl181","X":532,"Y":563},{"Bonus":0,"Continent":"K55","ID":4453,"Name":"[118]","PlayerID":8000875,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4453","ServerKey":"pl181","X":565,"Y":539},{"Bonus":0,"Continent":"K45","ID":4454,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4454","ServerKey":"pl181","X":514,"Y":440},{"Bonus":0,"Continent":"K55","ID":4455,"Name":"- 109 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4455","ServerKey":"pl181","X":540,"Y":580},{"Bonus":0,"Continent":"K55","ID":4456,"Name":"Gattacka","PlayerID":699298370,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4456","ServerKey":"pl181","X":579,"Y":522},{"Bonus":0,"Continent":"K44","ID":4457,"Name":"045","PlayerID":699510259,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4457","ServerKey":"pl181","X":472,"Y":482},{"Bonus":0,"Continent":"K54","ID":4458,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4458","ServerKey":"pl181","X":418,"Y":513},{"Bonus":0,"Continent":"K34","ID":4459,"Name":"Bagdad","PlayerID":8847546,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4459","ServerKey":"pl181","X":466,"Y":392},{"Bonus":0,"Continent":"K45","ID":4460,"Name":"C012","PlayerID":699299123,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4460","ServerKey":"pl181","X":524,"Y":461},{"Bonus":0,"Continent":"K55","ID":4461,"Name":"035 |","PlayerID":8000875,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4461","ServerKey":"pl181","X":568,"Y":551},{"Bonus":0,"Continent":"K44","ID":4462,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4462","ServerKey":"pl181","X":494,"Y":498},{"Bonus":0,"Continent":"K44","ID":4463,"Name":"+44 84","PlayerID":698361257,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4463","ServerKey":"pl181","X":444,"Y":481},{"Bonus":0,"Continent":"K54","ID":4464,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4464","ServerKey":"pl181","X":436,"Y":525},{"Bonus":0,"Continent":"K45","ID":4465,"Name":"014","PlayerID":699788305,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4465","ServerKey":"pl181","X":528,"Y":433},{"Bonus":0,"Continent":"K44","ID":4466,"Name":"B015","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4466","ServerKey":"pl181","X":480,"Y":443},{"Bonus":0,"Continent":"K45","ID":4467,"Name":"C019","PlayerID":699299123,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4467","ServerKey":"pl181","X":528,"Y":461},{"Bonus":0,"Continent":"K44","ID":4468,"Name":"?+44 96 Desvres","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4468","ServerKey":"pl181","X":465,"Y":490},{"Bonus":0,"Continent":"K44","ID":4469,"Name":"P Konfederacja","PlayerID":848915730,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4469","ServerKey":"pl181","X":458,"Y":445},{"Bonus":0,"Continent":"K55","ID":4470,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4470","ServerKey":"pl181","X":552,"Y":548},{"Bonus":0,"Continent":"K55","ID":4471,"Name":"0018 K55 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4471","ServerKey":"pl181","X":500,"Y":554},{"Bonus":0,"Continent":"K44","ID":4472,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4472","ServerKey":"pl181","X":488,"Y":492},{"Bonus":0,"Continent":"K45","ID":4473,"Name":"[052] Gamma","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4473","ServerKey":"pl181","X":542,"Y":483},{"Bonus":0,"Continent":"K45","ID":4474,"Name":"Osada","PlayerID":699098531,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4474","ServerKey":"pl181","X":510,"Y":453},{"Bonus":0,"Continent":"K54","ID":4475,"Name":"#0132 Kleofas","PlayerID":9272054,"Points":4642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4475","ServerKey":"pl181","X":494,"Y":515},{"Bonus":0,"Continent":"K55","ID":4476,"Name":"P.015","PlayerID":873575,"Points":10271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4476","ServerKey":"pl181","X":541,"Y":560},{"Bonus":0,"Continent":"K54","ID":4477,"Name":"NOT?","PlayerID":9236866,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4477","ServerKey":"pl181","X":432,"Y":531},{"Bonus":0,"Continent":"K54","ID":4478,"Name":"Selonari","PlayerID":698704189,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4478","ServerKey":"pl181","X":460,"Y":562},{"Bonus":0,"Continent":"K54","ID":4479,"Name":"Selonari","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4479","ServerKey":"pl181","X":462,"Y":565},{"Bonus":0,"Continent":"K55","ID":4480,"Name":"CALL 940","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4480","ServerKey":"pl181","X":548,"Y":557},{"Bonus":1,"Continent":"K44","ID":4481,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4481","ServerKey":"pl181","X":487,"Y":432},{"Bonus":0,"Continent":"K55","ID":4482,"Name":"10009","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4482","ServerKey":"pl181","X":523,"Y":553},{"Bonus":0,"Continent":"K54","ID":4483,"Name":"/01","PlayerID":9167250,"Points":11568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4483","ServerKey":"pl181","X":410,"Y":577},{"Bonus":0,"Continent":"K54","ID":4484,"Name":"Kasyno","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4484","ServerKey":"pl181","X":442,"Y":504},{"Bonus":0,"Continent":"K55","ID":4485,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4485","ServerKey":"pl181","X":577,"Y":544},{"Bonus":0,"Continent":"K44","ID":4486,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4486","ServerKey":"pl181","X":445,"Y":453},{"Bonus":7,"Continent":"K45","ID":4487,"Name":"Wioska 10","PlayerID":699385139,"Points":9308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4487","ServerKey":"pl181","X":530,"Y":498},{"Bonus":0,"Continent":"K45","ID":4488,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4488","ServerKey":"pl181","X":517,"Y":438},{"Bonus":0,"Continent":"K44","ID":4489,"Name":"+44 64","PlayerID":698361257,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4489","ServerKey":"pl181","X":445,"Y":462},{"Bonus":0,"Continent":"K54","ID":4490,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":7911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4490","ServerKey":"pl181","X":480,"Y":586},{"Bonus":0,"Continent":"K44","ID":4491,"Name":"142 Durango","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4491","ServerKey":"pl181","X":468,"Y":483},{"Bonus":0,"Continent":"K55","ID":4492,"Name":"[034] MONETKI","PlayerID":848985692,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4492","ServerKey":"pl181","X":597,"Y":535},{"Bonus":0,"Continent":"K54","ID":4493,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4493","ServerKey":"pl181","X":451,"Y":541},{"Bonus":0,"Continent":"K55","ID":4494,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4494","ServerKey":"pl181","X":581,"Y":529},{"Bonus":0,"Continent":"K54","ID":4495,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4495","ServerKey":"pl181","X":485,"Y":515},{"Bonus":0,"Continent":"K55","ID":4496,"Name":"CALL 934","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4496","ServerKey":"pl181","X":552,"Y":560},{"Bonus":0,"Continent":"K55","ID":4497,"Name":"- 043 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4497","ServerKey":"pl181","X":535,"Y":571},{"Bonus":0,"Continent":"K44","ID":4498,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4498","ServerKey":"pl181","X":473,"Y":432},{"Bonus":0,"Continent":"K54","ID":4499,"Name":"010","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4499","ServerKey":"pl181","X":413,"Y":501},{"Bonus":0,"Continent":"K53","ID":4500,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4500","ServerKey":"pl181","X":381,"Y":525},{"Bonus":0,"Continent":"K44","ID":4501,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4501","ServerKey":"pl181","X":469,"Y":437},{"Bonus":0,"Continent":"K55","ID":4502,"Name":"0040 MzM","PlayerID":698416970,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4502","ServerKey":"pl181","X":530,"Y":528},{"Bonus":0,"Continent":"K54","ID":4503,"Name":"026. ALFI","PlayerID":8539216,"Points":1749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4503","ServerKey":"pl181","X":483,"Y":569},{"Bonus":0,"Continent":"K44","ID":4504,"Name":"114 Yellowknife","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4504","ServerKey":"pl181","X":478,"Y":488},{"Bonus":0,"Continent":"K45","ID":4505,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4505","ServerKey":"pl181","X":568,"Y":460},{"Bonus":0,"Continent":"K64","ID":4506,"Name":"001.xxx","PlayerID":849084985,"Points":10274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4506","ServerKey":"pl181","X":464,"Y":617},{"Bonus":0,"Continent":"K44","ID":4507,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4507","ServerKey":"pl181","X":489,"Y":430},{"Bonus":0,"Continent":"K54","ID":4508,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":8670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4508","ServerKey":"pl181","X":437,"Y":503},{"Bonus":0,"Continent":"K55","ID":4509,"Name":"0004 K55 and987 OZDR.","PlayerID":3613413,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4509","ServerKey":"pl181","X":504,"Y":554},{"Bonus":0,"Continent":"K44","ID":4510,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4510","ServerKey":"pl181","X":477,"Y":441},{"Bonus":0,"Continent":"K45","ID":4511,"Name":"007 Dworzec GdaƄski","PlayerID":849083501,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4511","ServerKey":"pl181","X":542,"Y":469},{"Bonus":0,"Continent":"K54","ID":4512,"Name":"022","PlayerID":699364813,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4512","ServerKey":"pl181","X":482,"Y":584},{"Bonus":0,"Continent":"K55","ID":4513,"Name":"031 |","PlayerID":8000875,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4513","ServerKey":"pl181","X":558,"Y":547},{"Bonus":0,"Continent":"K54","ID":4514,"Name":"006. Marzyciel Shrek","PlayerID":698290577,"Points":5646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4514","ServerKey":"pl181","X":459,"Y":502},{"Bonus":0,"Continent":"K54","ID":4515,"Name":"017","PlayerID":2585846,"Points":2774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4515","ServerKey":"pl181","X":462,"Y":529},{"Bonus":0,"Continent":"K55","ID":4516,"Name":"kathare","PlayerID":873575,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4516","ServerKey":"pl181","X":536,"Y":546},{"Bonus":0,"Continent":"K53","ID":4517,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4517","ServerKey":"pl181","X":381,"Y":508},{"Bonus":0,"Continent":"K35","ID":4518,"Name":".:016:. Chillout","PlayerID":848934935,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4518","ServerKey":"pl181","X":500,"Y":385},{"Bonus":0,"Continent":"K55","ID":4519,"Name":"20019","PlayerID":848915531,"Points":8729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4519","ServerKey":"pl181","X":515,"Y":550},{"Bonus":0,"Continent":"K54","ID":4520,"Name":"Harbar","PlayerID":8779575,"Points":2898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4520","ServerKey":"pl181","X":428,"Y":551},{"Bonus":0,"Continent":"K45","ID":4521,"Name":"C028","PlayerID":699299123,"Points":7615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4521","ServerKey":"pl181","X":525,"Y":450},{"Bonus":0,"Continent":"K45","ID":4522,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4522","ServerKey":"pl181","X":518,"Y":470},{"Bonus":0,"Continent":"K45","ID":4523,"Name":"#13.","PlayerID":848967710,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4523","ServerKey":"pl181","X":529,"Y":473},{"Bonus":0,"Continent":"K54","ID":4524,"Name":"Winter is coming","PlayerID":698971484,"Points":7394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4524","ServerKey":"pl181","X":443,"Y":552},{"Bonus":6,"Continent":"K55","ID":4525,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4525","ServerKey":"pl181","X":508,"Y":524},{"Bonus":0,"Continent":"K55","ID":4526,"Name":"- 094 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4526","ServerKey":"pl181","X":542,"Y":576},{"Bonus":0,"Continent":"K45","ID":4527,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4527","ServerKey":"pl181","X":511,"Y":469},{"Bonus":0,"Continent":"K55","ID":4528,"Name":"#0138 Anne-Marie","PlayerID":9272054,"Points":3560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4528","ServerKey":"pl181","X":557,"Y":519},{"Bonus":0,"Continent":"K55","ID":4529,"Name":"CALL 965","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4529","ServerKey":"pl181","X":521,"Y":568},{"Bonus":0,"Continent":"K44","ID":4530,"Name":"0046","PlayerID":848913037,"Points":5467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4530","ServerKey":"pl181","X":458,"Y":466},{"Bonus":0,"Continent":"K45","ID":4531,"Name":"xxx","PlayerID":698239813,"Points":8549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4531","ServerKey":"pl181","X":511,"Y":466},{"Bonus":0,"Continent":"K45","ID":4532,"Name":"7.62 mm","PlayerID":699777234,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4532","ServerKey":"pl181","X":511,"Y":448},{"Bonus":0,"Continent":"K55","ID":4533,"Name":"009 | Lord Axen - Coming for you","PlayerID":8000875,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4533","ServerKey":"pl181","X":558,"Y":560},{"Bonus":0,"Continent":"K45","ID":4534,"Name":"-[022]- Maszerbrum","PlayerID":849092827,"Points":7477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4534","ServerKey":"pl181","X":555,"Y":491},{"Bonus":0,"Continent":"K45","ID":4535,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4535","ServerKey":"pl181","X":583,"Y":493},{"Bonus":0,"Continent":"K54","ID":4536,"Name":"Palma pod palma!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4536","ServerKey":"pl181","X":499,"Y":509},{"Bonus":0,"Continent":"K55","ID":4537,"Name":"009","PlayerID":699194766,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4537","ServerKey":"pl181","X":550,"Y":522},{"Bonus":0,"Continent":"K44","ID":4538,"Name":"0062 ~23~","PlayerID":3909522,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4538","ServerKey":"pl181","X":438,"Y":439},{"Bonus":0,"Continent":"K54","ID":4539,"Name":"Grafoll","PlayerID":699698253,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4539","ServerKey":"pl181","X":455,"Y":544},{"Bonus":5,"Continent":"K55","ID":4540,"Name":"015. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4540","ServerKey":"pl181","X":574,"Y":524},{"Bonus":0,"Continent":"K44","ID":4541,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4541","ServerKey":"pl181","X":495,"Y":433},{"Bonus":0,"Continent":"K64","ID":4542,"Name":"0202","PlayerID":698659980,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4542","ServerKey":"pl181","X":455,"Y":614},{"Bonus":0,"Continent":"K55","ID":4543,"Name":"Wioska 430","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4543","ServerKey":"pl181","X":565,"Y":515},{"Bonus":0,"Continent":"K45","ID":4544,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4544","ServerKey":"pl181","X":511,"Y":467},{"Bonus":0,"Continent":"K55","ID":4545,"Name":"Wioska 401","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4545","ServerKey":"pl181","X":561,"Y":516},{"Bonus":0,"Continent":"K54","ID":4546,"Name":"Kasyno","PlayerID":7249451,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4546","ServerKey":"pl181","X":443,"Y":510},{"Bonus":0,"Continent":"K54","ID":4547,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4547","ServerKey":"pl181","X":465,"Y":560},{"Bonus":0,"Continent":"K54","ID":4548,"Name":"Fajna 073","PlayerID":9236866,"Points":1586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4548","ServerKey":"pl181","X":455,"Y":551},{"Bonus":0,"Continent":"K55","ID":4549,"Name":"Gattacka","PlayerID":699298370,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4549","ServerKey":"pl181","X":581,"Y":523},{"Bonus":0,"Continent":"K54","ID":4550,"Name":"Wioska Marceli Tower","PlayerID":698971484,"Points":2827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4550","ServerKey":"pl181","X":445,"Y":543},{"Bonus":0,"Continent":"K44","ID":4551,"Name":"+44 84","PlayerID":698361257,"Points":8798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4551","ServerKey":"pl181","X":443,"Y":482},{"Bonus":0,"Continent":"K45","ID":4552,"Name":"04 Anglia","PlayerID":8925695,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4552","ServerKey":"pl181","X":586,"Y":492},{"Bonus":0,"Continent":"K54","ID":4553,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":3899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4553","ServerKey":"pl181","X":459,"Y":516},{"Bonus":0,"Continent":"K54","ID":4554,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":4406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4554","ServerKey":"pl181","X":460,"Y":518},{"Bonus":0,"Continent":"K44","ID":4555,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4555","ServerKey":"pl181","X":491,"Y":489},{"Bonus":0,"Continent":"K55","ID":4556,"Name":"P.012","PlayerID":873575,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4556","ServerKey":"pl181","X":544,"Y":563},{"Bonus":0,"Continent":"K44","ID":4557,"Name":"008 Boulder City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4557","ServerKey":"pl181","X":438,"Y":475},{"Bonus":0,"Continent":"K55","ID":4558,"Name":"Fort","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4558","ServerKey":"pl181","X":501,"Y":571},{"Bonus":0,"Continent":"K44","ID":4559,"Name":"+44 72 Montcavrel","PlayerID":698361257,"Points":10827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4559","ServerKey":"pl181","X":421,"Y":472},{"Bonus":0,"Continent":"K55","ID":4560,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4560","ServerKey":"pl181","X":517,"Y":526},{"Bonus":0,"Continent":"K54","ID":4561,"Name":"lady","PlayerID":699703642,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4561","ServerKey":"pl181","X":489,"Y":585},{"Bonus":0,"Continent":"K45","ID":4562,"Name":"068","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4562","ServerKey":"pl181","X":551,"Y":429},{"Bonus":0,"Continent":"K44","ID":4563,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4563","ServerKey":"pl181","X":450,"Y":467},{"Bonus":0,"Continent":"K45","ID":4564,"Name":"098.","PlayerID":8788366,"Points":7066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4564","ServerKey":"pl181","X":503,"Y":483},{"Bonus":0,"Continent":"K44","ID":4565,"Name":"120 Royal New France","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4565","ServerKey":"pl181","X":477,"Y":481},{"Bonus":0,"Continent":"K35","ID":4566,"Name":"D018","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4566","ServerKey":"pl181","X":505,"Y":387},{"Bonus":0,"Continent":"K54","ID":4567,"Name":"NOT?","PlayerID":9236866,"Points":3688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4567","ServerKey":"pl181","X":460,"Y":537},{"Bonus":0,"Continent":"K45","ID":4568,"Name":"071.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4568","ServerKey":"pl181","X":509,"Y":495},{"Bonus":0,"Continent":"K54","ID":4569,"Name":"002","PlayerID":848967710,"Points":4558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4569","ServerKey":"pl181","X":472,"Y":514},{"Bonus":0,"Continent":"K55","ID":4570,"Name":"z 029","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4570","ServerKey":"pl181","X":556,"Y":588},{"Bonus":0,"Continent":"K55","ID":4571,"Name":"036","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4571","ServerKey":"pl181","X":598,"Y":565},{"Bonus":0,"Continent":"K45","ID":4572,"Name":"Joms 029","PlayerID":699756210,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4572","ServerKey":"pl181","X":530,"Y":414},{"Bonus":0,"Continent":"K55","ID":4573,"Name":"Szlachcic","PlayerID":698867446,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4573","ServerKey":"pl181","X":573,"Y":522},{"Bonus":0,"Continent":"K44","ID":4574,"Name":"x cast Away","PlayerID":698290577,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4574","ServerKey":"pl181","X":434,"Y":495},{"Bonus":0,"Continent":"K45","ID":4575,"Name":".achim.","PlayerID":6936607,"Points":5374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4575","ServerKey":"pl181","X":540,"Y":464},{"Bonus":0,"Continent":"K54","ID":4576,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4576","ServerKey":"pl181","X":492,"Y":558},{"Bonus":0,"Continent":"K45","ID":4577,"Name":"048 BuƂeczka v3","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4577","ServerKey":"pl181","X":532,"Y":401},{"Bonus":0,"Continent":"K55","ID":4578,"Name":"025","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4578","ServerKey":"pl181","X":567,"Y":549},{"Bonus":0,"Continent":"K44","ID":4579,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4579","ServerKey":"pl181","X":487,"Y":488},{"Bonus":0,"Continent":"K54","ID":4580,"Name":"015 Fiona","PlayerID":698290577,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4580","ServerKey":"pl181","X":446,"Y":500},{"Bonus":0,"Continent":"K56","ID":4581,"Name":"SiƂa, Masa, RzeĆșba 10","PlayerID":699379895,"Points":8308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4581","ServerKey":"pl181","X":622,"Y":505},{"Bonus":0,"Continent":"K55","ID":4582,"Name":"JaamMwG 028","PlayerID":848987051,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4582","ServerKey":"pl181","X":521,"Y":523},{"Bonus":0,"Continent":"K44","ID":4583,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4583","ServerKey":"pl181","X":446,"Y":455},{"Bonus":6,"Continent":"K45","ID":4584,"Name":"Wioska mati","PlayerID":699432672,"Points":2755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4584","ServerKey":"pl181","X":548,"Y":497},{"Bonus":0,"Continent":"K44","ID":4585,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4585","ServerKey":"pl181","X":469,"Y":453},{"Bonus":0,"Continent":"K54","ID":4586,"Name":"NOT?","PlayerID":9236866,"Points":8316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4586","ServerKey":"pl181","X":436,"Y":533},{"Bonus":0,"Continent":"K55","ID":4587,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4587","ServerKey":"pl181","X":525,"Y":535},{"Bonus":0,"Continent":"K44","ID":4588,"Name":"7.62 mm","PlayerID":699777234,"Points":6597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4588","ServerKey":"pl181","X":488,"Y":440},{"Bonus":0,"Continent":"K55","ID":4589,"Name":"[110]","PlayerID":8000875,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4589","ServerKey":"pl181","X":569,"Y":548},{"Bonus":0,"Continent":"K34","ID":4590,"Name":"HoƂopole","PlayerID":699433558,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4590","ServerKey":"pl181","X":493,"Y":389},{"Bonus":0,"Continent":"K45","ID":4591,"Name":"35 min to dƂugo","PlayerID":699368887,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4591","ServerKey":"pl181","X":551,"Y":459},{"Bonus":0,"Continent":"K55","ID":4592,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4592","ServerKey":"pl181","X":586,"Y":507},{"Bonus":0,"Continent":"K45","ID":4593,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4593","ServerKey":"pl181","X":511,"Y":436},{"Bonus":0,"Continent":"K55","ID":4594,"Name":"[139]","PlayerID":8000875,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4594","ServerKey":"pl181","X":548,"Y":535},{"Bonus":8,"Continent":"K44","ID":4595,"Name":"?+44 85 Villeurbanne La Doua","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4595","ServerKey":"pl181","X":456,"Y":480},{"Bonus":0,"Continent":"K55","ID":4596,"Name":"#181Wrrr...","PlayerID":2999957,"Points":3777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4596","ServerKey":"pl181","X":579,"Y":510},{"Bonus":0,"Continent":"K44","ID":4597,"Name":"A#061#","PlayerID":698807570,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4597","ServerKey":"pl181","X":416,"Y":476},{"Bonus":0,"Continent":"K55","ID":4598,"Name":"CALL 990","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4598","ServerKey":"pl181","X":544,"Y":551},{"Bonus":0,"Continent":"K55","ID":4599,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4599","ServerKey":"pl181","X":526,"Y":502},{"Bonus":0,"Continent":"K45","ID":4600,"Name":".:035:. Cynamon","PlayerID":8649412,"Points":7667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4600","ServerKey":"pl181","X":510,"Y":416},{"Bonus":0,"Continent":"K43","ID":4601,"Name":"Knowhere","PlayerID":699723284,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4601","ServerKey":"pl181","X":389,"Y":493},{"Bonus":0,"Continent":"K54","ID":4602,"Name":"Winter is coming","PlayerID":9236866,"Points":3117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4602","ServerKey":"pl181","X":430,"Y":539},{"Bonus":0,"Continent":"K45","ID":4604,"Name":"C015","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4604","ServerKey":"pl181","X":518,"Y":459},{"Bonus":0,"Continent":"K55","ID":4605,"Name":"Nitrbolon","PlayerID":699379895,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4605","ServerKey":"pl181","X":571,"Y":500},{"Bonus":0,"Continent":"K45","ID":4606,"Name":"Szlachcic","PlayerID":699098531,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4606","ServerKey":"pl181","X":506,"Y":460},{"Bonus":0,"Continent":"K45","ID":4607,"Name":"0022","PlayerID":698599365,"Points":8037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4607","ServerKey":"pl181","X":505,"Y":497},{"Bonus":0,"Continent":"K45","ID":4608,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":7328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4608","ServerKey":"pl181","X":507,"Y":470},{"Bonus":0,"Continent":"K45","ID":4609,"Name":"ADEN","PlayerID":698588535,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4609","ServerKey":"pl181","X":568,"Y":430},{"Bonus":0,"Continent":"K45","ID":4610,"Name":"[091]","PlayerID":8000875,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4610","ServerKey":"pl181","X":555,"Y":498},{"Bonus":0,"Continent":"K43","ID":4611,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4611","ServerKey":"pl181","X":385,"Y":492},{"Bonus":0,"Continent":"K54","ID":4612,"Name":"Mniejsze zƂo 0067","PlayerID":699794765,"Points":8014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4612","ServerKey":"pl181","X":421,"Y":504},{"Bonus":0,"Continent":"K54","ID":4613,"Name":"028","PlayerID":2585846,"Points":2794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4613","ServerKey":"pl181","X":468,"Y":522},{"Bonus":0,"Continent":"K44","ID":4614,"Name":"0050","PlayerID":848913037,"Points":8956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4614","ServerKey":"pl181","X":462,"Y":473},{"Bonus":0,"Continent":"K54","ID":4615,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4615","ServerKey":"pl181","X":461,"Y":560},{"Bonus":0,"Continent":"K45","ID":4616,"Name":"C042","PlayerID":699299123,"Points":6623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4616","ServerKey":"pl181","X":533,"Y":457},{"Bonus":0,"Continent":"K45","ID":4617,"Name":"011 Indigo Plateau","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4617","ServerKey":"pl181","X":588,"Y":495},{"Bonus":0,"Continent":"K55","ID":4618,"Name":"!Wioska 406","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4618","ServerKey":"pl181","X":559,"Y":514},{"Bonus":0,"Continent":"K55","ID":4619,"Name":"[140]","PlayerID":8000875,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4619","ServerKey":"pl181","X":559,"Y":533},{"Bonus":0,"Continent":"K54","ID":4620,"Name":"KIELBA 118","PlayerID":699342219,"Points":7880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4620","ServerKey":"pl181","X":435,"Y":563},{"Bonus":0,"Continent":"K45","ID":4621,"Name":"Osada","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4621","ServerKey":"pl181","X":501,"Y":439},{"Bonus":0,"Continent":"K54","ID":4622,"Name":"lady","PlayerID":699703642,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4622","ServerKey":"pl181","X":487,"Y":584},{"Bonus":0,"Continent":"K55","ID":4623,"Name":"kek","PlayerID":848967710,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4623","ServerKey":"pl181","X":537,"Y":519},{"Bonus":0,"Continent":"K55","ID":4624,"Name":"Szlachcic 028","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4624","ServerKey":"pl181","X":572,"Y":522},{"Bonus":0,"Continent":"K55","ID":4625,"Name":"030. Wioska osilek123","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4625","ServerKey":"pl181","X":552,"Y":515},{"Bonus":0,"Continent":"K54","ID":4626,"Name":"06 Arabia Saudyjska","PlayerID":699781762,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4626","ServerKey":"pl181","X":468,"Y":506},{"Bonus":6,"Continent":"K44","ID":4627,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4627","ServerKey":"pl181","X":494,"Y":428},{"Bonus":0,"Continent":"K45","ID":4628,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4628","ServerKey":"pl181","X":573,"Y":491},{"Bonus":0,"Continent":"K44","ID":4629,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4629","ServerKey":"pl181","X":449,"Y":463},{"Bonus":0,"Continent":"K55","ID":4630,"Name":"Wioska 431","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4630","ServerKey":"pl181","X":557,"Y":500},{"Bonus":0,"Continent":"K44","ID":4631,"Name":"0101","PlayerID":3909522,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4631","ServerKey":"pl181","X":467,"Y":447},{"Bonus":0,"Continent":"K35","ID":4632,"Name":"B014","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4632","ServerKey":"pl181","X":570,"Y":399},{"Bonus":0,"Continent":"K55","ID":4633,"Name":"CALL 1043","PlayerID":699784536,"Points":7430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4633","ServerKey":"pl181","X":550,"Y":543},{"Bonus":0,"Continent":"K54","ID":4634,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4634","ServerKey":"pl181","X":461,"Y":511},{"Bonus":0,"Continent":"K44","ID":4635,"Name":"SsSs","PlayerID":1536625,"Points":6265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4635","ServerKey":"pl181","X":422,"Y":496},{"Bonus":0,"Continent":"K54","ID":4636,"Name":"Village","PlayerID":849094067,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4636","ServerKey":"pl181","X":452,"Y":566},{"Bonus":0,"Continent":"K55","ID":4637,"Name":"Gattacka","PlayerID":699298370,"Points":8691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4637","ServerKey":"pl181","X":583,"Y":517},{"Bonus":0,"Continent":"K55","ID":4638,"Name":"10014","PlayerID":848915531,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4638","ServerKey":"pl181","X":533,"Y":556},{"Bonus":0,"Continent":"K44","ID":4639,"Name":"033","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4639","ServerKey":"pl181","X":475,"Y":491},{"Bonus":0,"Continent":"K55","ID":4640,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4640","ServerKey":"pl181","X":516,"Y":522},{"Bonus":0,"Continent":"K55","ID":4641,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4641","ServerKey":"pl181","X":507,"Y":565},{"Bonus":0,"Continent":"K55","ID":4642,"Name":"0.Pittsburgh","PlayerID":698215322,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4642","ServerKey":"pl181","X":518,"Y":583},{"Bonus":0,"Continent":"K54","ID":4643,"Name":"Winter is coming","PlayerID":699856962,"Points":7063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4643","ServerKey":"pl181","X":441,"Y":553},{"Bonus":0,"Continent":"K55","ID":4644,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4644","ServerKey":"pl181","X":571,"Y":547},{"Bonus":0,"Continent":"K44","ID":4645,"Name":"0047","PlayerID":848913037,"Points":7037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4645","ServerKey":"pl181","X":458,"Y":467},{"Bonus":0,"Continent":"K44","ID":4647,"Name":"187 Cali","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4647","ServerKey":"pl181","X":470,"Y":467},{"Bonus":0,"Continent":"K54","ID":4648,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4648","ServerKey":"pl181","X":461,"Y":561},{"Bonus":0,"Continent":"K45","ID":4649,"Name":"Gattacka","PlayerID":699298370,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4649","ServerKey":"pl181","X":582,"Y":481},{"Bonus":0,"Continent":"K44","ID":4650,"Name":"A013","PlayerID":699299123,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4650","ServerKey":"pl181","X":494,"Y":415},{"Bonus":0,"Continent":"K55","ID":4651,"Name":"022. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4651","ServerKey":"pl181","X":575,"Y":525},{"Bonus":0,"Continent":"K54","ID":4652,"Name":"Front_28","PlayerID":2585846,"Points":7193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4652","ServerKey":"pl181","X":454,"Y":526},{"Bonus":0,"Continent":"K54","ID":4653,"Name":"068","PlayerID":699510259,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4653","ServerKey":"pl181","X":448,"Y":503},{"Bonus":0,"Continent":"K44","ID":4654,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4654","ServerKey":"pl181","X":425,"Y":463},{"Bonus":0,"Continent":"K54","ID":4655,"Name":"041","PlayerID":698971484,"Points":8933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4655","ServerKey":"pl181","X":445,"Y":538},{"Bonus":0,"Continent":"K45","ID":4656,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4656","ServerKey":"pl181","X":519,"Y":489},{"Bonus":0,"Continent":"K44","ID":4657,"Name":"SsSs","PlayerID":1536625,"Points":3804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4657","ServerKey":"pl181","X":437,"Y":499},{"Bonus":0,"Continent":"K55","ID":4658,"Name":"Szlachcic 037","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4658","ServerKey":"pl181","X":552,"Y":520},{"Bonus":0,"Continent":"K44","ID":4659,"Name":"Brat447","PlayerID":699262350,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4659","ServerKey":"pl181","X":455,"Y":496},{"Bonus":0,"Continent":"K55","ID":4660,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4660","ServerKey":"pl181","X":572,"Y":541},{"Bonus":0,"Continent":"K55","ID":4661,"Name":"CALL 1047","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4661","ServerKey":"pl181","X":542,"Y":553},{"Bonus":0,"Continent":"K45","ID":4662,"Name":"001 MƂociny","PlayerID":849083501,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4662","ServerKey":"pl181","X":536,"Y":479},{"Bonus":0,"Continent":"K56","ID":4663,"Name":"011.","PlayerID":8900955,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4663","ServerKey":"pl181","X":615,"Y":546},{"Bonus":0,"Continent":"K55","ID":4664,"Name":"adam4","PlayerID":7581876,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4664","ServerKey":"pl181","X":526,"Y":538},{"Bonus":0,"Continent":"K65","ID":4665,"Name":"~009.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4665","ServerKey":"pl181","X":503,"Y":604},{"Bonus":0,"Continent":"K45","ID":4666,"Name":"-13-","PlayerID":699347951,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4666","ServerKey":"pl181","X":586,"Y":474},{"Bonus":0,"Continent":"K54","ID":4667,"Name":"*Ateny_49","PlayerID":2585846,"Points":2940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4667","ServerKey":"pl181","X":465,"Y":529},{"Bonus":0,"Continent":"K44","ID":4668,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4668","ServerKey":"pl181","X":477,"Y":413},{"Bonus":0,"Continent":"K54","ID":4669,"Name":"Winter is coming","PlayerID":698971484,"Points":2157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4669","ServerKey":"pl181","X":440,"Y":543},{"Bonus":0,"Continent":"K44","ID":4670,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4670","ServerKey":"pl181","X":481,"Y":416},{"Bonus":0,"Continent":"K44","ID":4671,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4671","ServerKey":"pl181","X":446,"Y":471},{"Bonus":0,"Continent":"K56","ID":4672,"Name":"0004","PlayerID":6510480,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4672","ServerKey":"pl181","X":622,"Y":520},{"Bonus":0,"Continent":"K54","ID":4673,"Name":"Daleko 029","PlayerID":699364813,"Points":8286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4673","ServerKey":"pl181","X":472,"Y":584},{"Bonus":0,"Continent":"K54","ID":4674,"Name":"003","PlayerID":9167250,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4674","ServerKey":"pl181","X":429,"Y":583},{"Bonus":2,"Continent":"K54","ID":4675,"Name":"Suppi","PlayerID":699856962,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4675","ServerKey":"pl181","X":439,"Y":520},{"Bonus":0,"Continent":"K45","ID":4676,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4676","ServerKey":"pl181","X":544,"Y":475},{"Bonus":0,"Continent":"K44","ID":4677,"Name":"A016","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4677","ServerKey":"pl181","X":487,"Y":414},{"Bonus":0,"Continent":"K45","ID":4678,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4678","ServerKey":"pl181","X":558,"Y":443},{"Bonus":0,"Continent":"K45","ID":4679,"Name":"104 Hejka","PlayerID":7092442,"Points":5893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4679","ServerKey":"pl181","X":541,"Y":460},{"Bonus":0,"Continent":"K55","ID":4680,"Name":"Presja","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4680","ServerKey":"pl181","X":512,"Y":508},{"Bonus":0,"Continent":"K55","ID":4681,"Name":"JaamMwG 017","PlayerID":848987051,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4681","ServerKey":"pl181","X":529,"Y":525},{"Bonus":0,"Continent":"K45","ID":4682,"Name":"OOI","PlayerID":699658023,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4682","ServerKey":"pl181","X":508,"Y":438},{"Bonus":0,"Continent":"K45","ID":4683,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4683","ServerKey":"pl181","X":501,"Y":434},{"Bonus":0,"Continent":"K44","ID":4684,"Name":"199 Santa Cruz de La Sierra","PlayerID":1497168,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4684","ServerKey":"pl181","X":468,"Y":461},{"Bonus":0,"Continent":"K54","ID":4685,"Name":"1. Obj 705 !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4685","ServerKey":"pl181","X":498,"Y":533},{"Bonus":0,"Continent":"K55","ID":4686,"Name":"CALL 951","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4686","ServerKey":"pl181","X":548,"Y":554},{"Bonus":0,"Continent":"K45","ID":4687,"Name":"Joms 025","PlayerID":699756210,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4687","ServerKey":"pl181","X":532,"Y":418},{"Bonus":0,"Continent":"K44","ID":4688,"Name":"7.62 mm","PlayerID":699777234,"Points":8562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4688","ServerKey":"pl181","X":465,"Y":454},{"Bonus":0,"Continent":"K54","ID":4689,"Name":"PRO8L3M","PlayerID":7491093,"Points":9862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4689","ServerKey":"pl181","X":448,"Y":501},{"Bonus":0,"Continent":"K45","ID":4690,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4690","ServerKey":"pl181","X":517,"Y":401},{"Bonus":0,"Continent":"K54","ID":4691,"Name":"#0096 DobryƄ MaƂy","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4691","ServerKey":"pl181","X":475,"Y":556},{"Bonus":0,"Continent":"K54","ID":4692,"Name":"COUSINS","PlayerID":699364813,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4692","ServerKey":"pl181","X":495,"Y":587},{"Bonus":0,"Continent":"K44","ID":4693,"Name":"+44 72 Sainte Consorce","PlayerID":698361257,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4693","ServerKey":"pl181","X":424,"Y":470},{"Bonus":0,"Continent":"K45","ID":4694,"Name":"034.","PlayerID":8788366,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4694","ServerKey":"pl181","X":505,"Y":490},{"Bonus":0,"Continent":"K54","ID":4695,"Name":"0174","PlayerID":698971484,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4695","ServerKey":"pl181","X":472,"Y":545},{"Bonus":0,"Continent":"K55","ID":4696,"Name":"F074","PlayerID":699189792,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4696","ServerKey":"pl181","X":504,"Y":533},{"Bonus":0,"Continent":"K45","ID":4697,"Name":".:009:. Taktyka","PlayerID":8649412,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4697","ServerKey":"pl181","X":517,"Y":415},{"Bonus":0,"Continent":"K44","ID":4698,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4698","ServerKey":"pl181","X":418,"Y":427},{"Bonus":0,"Continent":"K54","ID":4699,"Name":"KIELBA 068","PlayerID":699342219,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4699","ServerKey":"pl181","X":470,"Y":579},{"Bonus":0,"Continent":"K44","ID":4700,"Name":"Cast Away 012","PlayerID":698290577,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4700","ServerKey":"pl181","X":450,"Y":483},{"Bonus":0,"Continent":"K45","ID":4701,"Name":"Joms 042","PlayerID":699756210,"Points":7209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4701","ServerKey":"pl181","X":543,"Y":423},{"Bonus":0,"Continent":"K55","ID":4702,"Name":"96k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4702","ServerKey":"pl181","X":553,"Y":551},{"Bonus":0,"Continent":"K44","ID":4703,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4703","ServerKey":"pl181","X":428,"Y":461},{"Bonus":0,"Continent":"K34","ID":4704,"Name":"[0003]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4704","ServerKey":"pl181","X":450,"Y":396},{"Bonus":0,"Continent":"K44","ID":4705,"Name":"094 Barstow","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4705","ServerKey":"pl181","X":480,"Y":457},{"Bonus":0,"Continent":"K45","ID":4706,"Name":"236 Denpasar","PlayerID":1497168,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4706","ServerKey":"pl181","X":548,"Y":445},{"Bonus":0,"Continent":"K44","ID":4707,"Name":"093 Needles","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4707","ServerKey":"pl181","X":474,"Y":460},{"Bonus":0,"Continent":"K44","ID":4708,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4708","ServerKey":"pl181","X":430,"Y":484},{"Bonus":0,"Continent":"K44","ID":4709,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4709","ServerKey":"pl181","X":468,"Y":419},{"Bonus":0,"Continent":"K45","ID":4710,"Name":"Szlachcic","PlayerID":698867446,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4710","ServerKey":"pl181","X":555,"Y":473},{"Bonus":0,"Continent":"K55","ID":4711,"Name":"CALL 955","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4711","ServerKey":"pl181","X":551,"Y":548},{"Bonus":7,"Continent":"K45","ID":4712,"Name":"Warsztat","PlayerID":849002091,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4712","ServerKey":"pl181","X":552,"Y":442},{"Bonus":0,"Continent":"K53","ID":4713,"Name":"*002 Wyspy owcze","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4713","ServerKey":"pl181","X":385,"Y":541},{"Bonus":0,"Continent":"K55","ID":4714,"Name":"Szlachcic 047","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4714","ServerKey":"pl181","X":569,"Y":530},{"Bonus":0,"Continent":"K35","ID":4715,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4715","ServerKey":"pl181","X":526,"Y":381},{"Bonus":0,"Continent":"K44","ID":4716,"Name":"+44 83 Escalles","PlayerID":698361257,"Points":10088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4716","ServerKey":"pl181","X":435,"Y":483},{"Bonus":1,"Continent":"K55","ID":4717,"Name":"Szlachcic 006","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4717","ServerKey":"pl181","X":565,"Y":529},{"Bonus":0,"Continent":"K45","ID":4718,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4718","ServerKey":"pl181","X":500,"Y":418},{"Bonus":0,"Continent":"K54","ID":4719,"Name":"KIELBA 036","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4719","ServerKey":"pl181","X":447,"Y":571},{"Bonus":0,"Continent":"K54","ID":4720,"Name":"Bilgewater","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4720","ServerKey":"pl181","X":444,"Y":525},{"Bonus":0,"Continent":"K55","ID":4721,"Name":"|027|","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4721","ServerKey":"pl181","X":553,"Y":567},{"Bonus":0,"Continent":"K44","ID":4722,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4722","ServerKey":"pl181","X":431,"Y":400},{"Bonus":0,"Continent":"K55","ID":4723,"Name":"F072","PlayerID":699189792,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4723","ServerKey":"pl181","X":508,"Y":538},{"Bonus":0,"Continent":"K55","ID":4724,"Name":"Winter is coming","PlayerID":699364813,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4724","ServerKey":"pl181","X":504,"Y":581},{"Bonus":0,"Continent":"K45","ID":4725,"Name":"3 ESIOK f","PlayerID":8155296,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4725","ServerKey":"pl181","X":537,"Y":463},{"Bonus":0,"Continent":"K55","ID":4726,"Name":"ladyanima","PlayerID":699703642,"Points":9201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4726","ServerKey":"pl181","X":516,"Y":566},{"Bonus":0,"Continent":"K45","ID":4727,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4727","ServerKey":"pl181","X":527,"Y":492},{"Bonus":0,"Continent":"K44","ID":4728,"Name":"A021","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4728","ServerKey":"pl181","X":496,"Y":410},{"Bonus":0,"Continent":"K55","ID":4729,"Name":"017. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4729","ServerKey":"pl181","X":573,"Y":536},{"Bonus":0,"Continent":"K55","ID":4730,"Name":"Metamorfoza","PlayerID":699785935,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4730","ServerKey":"pl181","X":508,"Y":519},{"Bonus":0,"Continent":"K54","ID":4731,"Name":"F024","PlayerID":699189792,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4731","ServerKey":"pl181","X":493,"Y":532},{"Bonus":0,"Continent":"K45","ID":4732,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4732","ServerKey":"pl181","X":577,"Y":486},{"Bonus":0,"Continent":"K55","ID":4733,"Name":"P.011","PlayerID":873575,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4733","ServerKey":"pl181","X":538,"Y":563},{"Bonus":0,"Continent":"K45","ID":4734,"Name":"C040","PlayerID":699299123,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4734","ServerKey":"pl181","X":534,"Y":456},{"Bonus":0,"Continent":"K45","ID":4735,"Name":"! Wioska barbarzyƄska","PlayerID":477415,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4735","ServerKey":"pl181","X":539,"Y":460},{"Bonus":0,"Continent":"K54","ID":4736,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4736","ServerKey":"pl181","X":431,"Y":519},{"Bonus":0,"Continent":"K44","ID":4737,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":8504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4737","ServerKey":"pl181","X":461,"Y":433},{"Bonus":0,"Continent":"K54","ID":4738,"Name":"Village","PlayerID":849094067,"Points":8211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4738","ServerKey":"pl181","X":499,"Y":586},{"Bonus":0,"Continent":"K55","ID":4739,"Name":"0017","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4739","ServerKey":"pl181","X":529,"Y":514},{"Bonus":0,"Continent":"K44","ID":4740,"Name":"P Konfederacja","PlayerID":848915730,"Points":9508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4740","ServerKey":"pl181","X":460,"Y":451},{"Bonus":0,"Continent":"K55","ID":4741,"Name":"065 |","PlayerID":8000875,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4741","ServerKey":"pl181","X":560,"Y":567},{"Bonus":3,"Continent":"K54","ID":4742,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4742","ServerKey":"pl181","X":491,"Y":504},{"Bonus":0,"Continent":"K54","ID":4744,"Name":"0185","PlayerID":698971484,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4744","ServerKey":"pl181","X":474,"Y":544},{"Bonus":0,"Continent":"K55","ID":4745,"Name":"0.Savannah","PlayerID":698215322,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4745","ServerKey":"pl181","X":519,"Y":581},{"Bonus":0,"Continent":"K55","ID":4746,"Name":"Mzm43","PlayerID":7142659,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4746","ServerKey":"pl181","X":569,"Y":522},{"Bonus":0,"Continent":"K55","ID":4747,"Name":"#0109 Powodzenia","PlayerID":9272054,"Points":8171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4747","ServerKey":"pl181","X":502,"Y":526},{"Bonus":0,"Continent":"K44","ID":4748,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4748","ServerKey":"pl181","X":439,"Y":453},{"Bonus":0,"Continent":"K45","ID":4749,"Name":"Gattacka","PlayerID":699298370,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4749","ServerKey":"pl181","X":594,"Y":493},{"Bonus":0,"Continent":"K45","ID":4750,"Name":"096 Malta","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4750","ServerKey":"pl181","X":569,"Y":470},{"Bonus":0,"Continent":"K34","ID":4751,"Name":"0117","PlayerID":699431255,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4751","ServerKey":"pl181","X":457,"Y":389},{"Bonus":0,"Continent":"K44","ID":4752,"Name":"188 Lima","PlayerID":1497168,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4752","ServerKey":"pl181","X":468,"Y":458},{"Bonus":0,"Continent":"K44","ID":4753,"Name":"0079","PlayerID":848913037,"Points":6742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4753","ServerKey":"pl181","X":462,"Y":465},{"Bonus":0,"Continent":"K45","ID":4754,"Name":"014 Violet City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4754","ServerKey":"pl181","X":563,"Y":457},{"Bonus":0,"Continent":"K54","ID":4755,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4755","ServerKey":"pl181","X":493,"Y":558},{"Bonus":0,"Continent":"K45","ID":4756,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4756","ServerKey":"pl181","X":518,"Y":484},{"Bonus":0,"Continent":"K44","ID":4757,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4757","ServerKey":"pl181","X":492,"Y":427},{"Bonus":0,"Continent":"K55","ID":4758,"Name":"Belegost","PlayerID":849091897,"Points":8730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4758","ServerKey":"pl181","X":502,"Y":514},{"Bonus":5,"Continent":"K45","ID":4759,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4759","ServerKey":"pl181","X":521,"Y":423},{"Bonus":0,"Continent":"K46","ID":4760,"Name":"009 Nie wymiękƂem","PlayerID":699272633,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4760","ServerKey":"pl181","X":602,"Y":479},{"Bonus":0,"Continent":"K54","ID":4761,"Name":"KIELBA 031","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4761","ServerKey":"pl181","X":455,"Y":578},{"Bonus":0,"Continent":"K55","ID":4762,"Name":"#060","PlayerID":849001572,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4762","ServerKey":"pl181","X":518,"Y":588},{"Bonus":0,"Continent":"K45","ID":4763,"Name":"[151] North","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4763","ServerKey":"pl181","X":573,"Y":465},{"Bonus":0,"Continent":"K54","ID":4764,"Name":"KIELBA 098","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4764","ServerKey":"pl181","X":465,"Y":580},{"Bonus":0,"Continent":"K45","ID":4765,"Name":":).","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4765","ServerKey":"pl181","X":542,"Y":475},{"Bonus":0,"Continent":"K55","ID":4766,"Name":"CALL 995","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4766","ServerKey":"pl181","X":543,"Y":543},{"Bonus":0,"Continent":"K54","ID":4767,"Name":"Sparta_33","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4767","ServerKey":"pl181","X":481,"Y":579},{"Bonus":0,"Continent":"K55","ID":4768,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4768","ServerKey":"pl181","X":516,"Y":525},{"Bonus":0,"Continent":"K54","ID":4769,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4769","ServerKey":"pl181","X":460,"Y":560},{"Bonus":0,"Continent":"K54","ID":4770,"Name":"COUS,,","PlayerID":8369778,"Points":6602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4770","ServerKey":"pl181","X":498,"Y":578},{"Bonus":0,"Continent":"K54","ID":4771,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4771","ServerKey":"pl181","X":485,"Y":588},{"Bonus":0,"Continent":"K44","ID":4772,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4772","ServerKey":"pl181","X":474,"Y":445},{"Bonus":0,"Continent":"K45","ID":4773,"Name":"066","PlayerID":699761749,"Points":6401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4773","ServerKey":"pl181","X":550,"Y":430},{"Bonus":0,"Continent":"K55","ID":4774,"Name":"|041|","PlayerID":873575,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4774","ServerKey":"pl181","X":549,"Y":570},{"Bonus":0,"Continent":"K54","ID":4775,"Name":"Suppi","PlayerID":699856962,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4775","ServerKey":"pl181","X":444,"Y":526},{"Bonus":0,"Continent":"K45","ID":4776,"Name":"198","PlayerID":849064752,"Points":5351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4776","ServerKey":"pl181","X":547,"Y":429},{"Bonus":0,"Continent":"K44","ID":4777,"Name":"Szlachcic","PlayerID":699098531,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4777","ServerKey":"pl181","X":494,"Y":465},{"Bonus":0,"Continent":"K55","ID":4778,"Name":"004","PlayerID":8191129,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4778","ServerKey":"pl181","X":521,"Y":517},{"Bonus":0,"Continent":"K54","ID":4779,"Name":"Mniejsze zƂo 0051","PlayerID":699794765,"Points":7936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4779","ServerKey":"pl181","X":418,"Y":508},{"Bonus":0,"Continent":"K55","ID":4780,"Name":"020 |","PlayerID":8000875,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4780","ServerKey":"pl181","X":553,"Y":552},{"Bonus":0,"Continent":"K55","ID":4781,"Name":"008","PlayerID":848915531,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4781","ServerKey":"pl181","X":512,"Y":546},{"Bonus":0,"Continent":"K45","ID":4783,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4783","ServerKey":"pl181","X":525,"Y":496},{"Bonus":0,"Continent":"K55","ID":4784,"Name":"GƂucha noc","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4784","ServerKey":"pl181","X":506,"Y":520},{"Bonus":0,"Continent":"K44","ID":4785,"Name":"157 Belmopan","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4785","ServerKey":"pl181","X":455,"Y":460},{"Bonus":0,"Continent":"K44","ID":4786,"Name":"Osada","PlayerID":699098531,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4786","ServerKey":"pl181","X":497,"Y":450},{"Bonus":0,"Continent":"K44","ID":4787,"Name":"Suppi","PlayerID":699856962,"Points":8470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4787","ServerKey":"pl181","X":442,"Y":455},{"Bonus":0,"Continent":"K45","ID":4788,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4788","ServerKey":"pl181","X":513,"Y":426},{"Bonus":0,"Continent":"K54","ID":4789,"Name":"Oleander","PlayerID":699443920,"Points":4845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4789","ServerKey":"pl181","X":438,"Y":559},{"Bonus":0,"Continent":"K54","ID":4790,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4790","ServerKey":"pl181","X":432,"Y":523},{"Bonus":0,"Continent":"K55","ID":4791,"Name":"sas","PlayerID":7581876,"Points":7963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4791","ServerKey":"pl181","X":531,"Y":551},{"Bonus":0,"Continent":"K55","ID":4792,"Name":"017","PlayerID":848915531,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4792","ServerKey":"pl181","X":516,"Y":531},{"Bonus":0,"Continent":"K55","ID":4794,"Name":"Butla","PlayerID":9225795,"Points":6136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4794","ServerKey":"pl181","X":582,"Y":503},{"Bonus":0,"Continent":"K64","ID":4795,"Name":"#027","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4795","ServerKey":"pl181","X":477,"Y":619},{"Bonus":0,"Continent":"K44","ID":4796,"Name":"+44 73 Verton","PlayerID":698361257,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4796","ServerKey":"pl181","X":431,"Y":477},{"Bonus":0,"Continent":"K54","ID":4797,"Name":"Stage group B5","PlayerID":699170684,"Points":3547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4797","ServerKey":"pl181","X":438,"Y":549},{"Bonus":0,"Continent":"K45","ID":4798,"Name":"ADEN","PlayerID":698588535,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4798","ServerKey":"pl181","X":559,"Y":433},{"Bonus":0,"Continent":"K54","ID":4799,"Name":"023","PlayerID":699364813,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4799","ServerKey":"pl181","X":481,"Y":582},{"Bonus":0,"Continent":"K55","ID":4800,"Name":"OddaƂ wioskę, ma gest!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4800","ServerKey":"pl181","X":503,"Y":506},{"Bonus":0,"Continent":"K54","ID":4801,"Name":"032. Antlia","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4801","ServerKey":"pl181","X":489,"Y":579},{"Bonus":6,"Continent":"K44","ID":4802,"Name":"-x1","PlayerID":848967710,"Points":11307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4802","ServerKey":"pl181","X":490,"Y":496},{"Bonus":0,"Continent":"K54","ID":4803,"Name":"F027","PlayerID":699189792,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4803","ServerKey":"pl181","X":492,"Y":535},{"Bonus":0,"Continent":"K55","ID":4804,"Name":"Gattacka","PlayerID":699298370,"Points":10367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4804","ServerKey":"pl181","X":583,"Y":518},{"Bonus":0,"Continent":"K44","ID":4805,"Name":"169 Natal","PlayerID":1497168,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4805","ServerKey":"pl181","X":478,"Y":477},{"Bonus":0,"Continent":"K55","ID":4806,"Name":"WioskaB","PlayerID":8369778,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4806","ServerKey":"pl181","X":511,"Y":584},{"Bonus":0,"Continent":"K45","ID":4807,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4807","ServerKey":"pl181","X":548,"Y":492},{"Bonus":0,"Continent":"K54","ID":4808,"Name":"Kasyno","PlayerID":7249451,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4808","ServerKey":"pl181","X":439,"Y":513},{"Bonus":0,"Continent":"K44","ID":4809,"Name":"009743","PlayerID":3909522,"Points":7021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4809","ServerKey":"pl181","X":466,"Y":441},{"Bonus":0,"Continent":"K54","ID":4810,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":5606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4810","ServerKey":"pl181","X":458,"Y":564},{"Bonus":0,"Continent":"K44","ID":4811,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4811","ServerKey":"pl181","X":472,"Y":440},{"Bonus":0,"Continent":"K44","ID":4812,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4812","ServerKey":"pl181","X":471,"Y":438},{"Bonus":0,"Continent":"K45","ID":4813,"Name":"053 CzarnogĂłra","PlayerID":7092442,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4813","ServerKey":"pl181","X":580,"Y":458},{"Bonus":0,"Continent":"K45","ID":4814,"Name":"ADEN","PlayerID":698588535,"Points":6215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4814","ServerKey":"pl181","X":561,"Y":439},{"Bonus":0,"Continent":"K55","ID":4815,"Name":"Wioska 433","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4815","ServerKey":"pl181","X":570,"Y":524},{"Bonus":0,"Continent":"K54","ID":4816,"Name":"NOT?","PlayerID":9236866,"Points":5871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4816","ServerKey":"pl181","X":434,"Y":532},{"Bonus":0,"Continent":"K54","ID":4817,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4817","ServerKey":"pl181","X":413,"Y":505},{"Bonus":0,"Continent":"K55","ID":4818,"Name":"yogi","PlayerID":2808172,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4818","ServerKey":"pl181","X":537,"Y":537},{"Bonus":0,"Continent":"K44","ID":4819,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4819","ServerKey":"pl181","X":445,"Y":454},{"Bonus":0,"Continent":"K55","ID":4820,"Name":"012. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4820","ServerKey":"pl181","X":578,"Y":534},{"Bonus":0,"Continent":"K44","ID":4821,"Name":"BoBa","PlayerID":699098531,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4821","ServerKey":"pl181","X":490,"Y":470},{"Bonus":0,"Continent":"K55","ID":4822,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4822","ServerKey":"pl181","X":519,"Y":578},{"Bonus":0,"Continent":"K44","ID":4823,"Name":"Bruksela","PlayerID":699660539,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4823","ServerKey":"pl181","X":424,"Y":455},{"Bonus":0,"Continent":"K55","ID":4824,"Name":"Szlachcic 025","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4824","ServerKey":"pl181","X":556,"Y":537},{"Bonus":0,"Continent":"K54","ID":4825,"Name":"009","PlayerID":848886870,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4825","ServerKey":"pl181","X":468,"Y":573},{"Bonus":0,"Continent":"K55","ID":4826,"Name":"10018","PlayerID":848915531,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4826","ServerKey":"pl181","X":537,"Y":554},{"Bonus":0,"Continent":"K45","ID":4827,"Name":".achim.","PlayerID":6936607,"Points":8197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4827","ServerKey":"pl181","X":535,"Y":441},{"Bonus":0,"Continent":"K54","ID":4828,"Name":"Otimek","PlayerID":699443920,"Points":2847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4828","ServerKey":"pl181","X":433,"Y":556},{"Bonus":0,"Continent":"K54","ID":4829,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4829","ServerKey":"pl181","X":486,"Y":551},{"Bonus":0,"Continent":"K54","ID":4830,"Name":"CHW#056t","PlayerID":698971484,"Points":1285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4830","ServerKey":"pl181","X":451,"Y":553},{"Bonus":0,"Continent":"K44","ID":4831,"Name":"0091","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4831","ServerKey":"pl181","X":454,"Y":437},{"Bonus":0,"Continent":"K44","ID":4832,"Name":"7.62 mm","PlayerID":699777234,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4832","ServerKey":"pl181","X":466,"Y":450},{"Bonus":0,"Continent":"K45","ID":4833,"Name":"Joms 022","PlayerID":699756210,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4833","ServerKey":"pl181","X":529,"Y":415},{"Bonus":0,"Continent":"K45","ID":4834,"Name":"Szlachcic","PlayerID":698867446,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4834","ServerKey":"pl181","X":570,"Y":495},{"Bonus":7,"Continent":"K54","ID":4835,"Name":"yogi","PlayerID":2808172,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4835","ServerKey":"pl181","X":486,"Y":530},{"Bonus":0,"Continent":"K54","ID":4836,"Name":"BETI 001","PlayerID":8539216,"Points":2009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4836","ServerKey":"pl181","X":462,"Y":577},{"Bonus":0,"Continent":"K44","ID":4837,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4837","ServerKey":"pl181","X":497,"Y":445},{"Bonus":0,"Continent":"K45","ID":4838,"Name":"Wioska Matii","PlayerID":699432672,"Points":3845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4838","ServerKey":"pl181","X":556,"Y":494},{"Bonus":0,"Continent":"K54","ID":4839,"Name":"Village","PlayerID":849094067,"Points":8888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4839","ServerKey":"pl181","X":492,"Y":579},{"Bonus":0,"Continent":"K45","ID":4840,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4840","ServerKey":"pl181","X":578,"Y":483},{"Bonus":0,"Continent":"K55","ID":4841,"Name":"[076]","PlayerID":8000875,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4841","ServerKey":"pl181","X":562,"Y":567},{"Bonus":0,"Continent":"K54","ID":4842,"Name":"Wioska tomaszek74","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4842","ServerKey":"pl181","X":433,"Y":502},{"Bonus":0,"Continent":"K55","ID":4843,"Name":"JaamMwG 014","PlayerID":848987051,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4843","ServerKey":"pl181","X":521,"Y":522},{"Bonus":0,"Continent":"K55","ID":4844,"Name":"012","PlayerID":699194766,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4844","ServerKey":"pl181","X":546,"Y":529},{"Bonus":0,"Continent":"K55","ID":4845,"Name":"Szlachcic","PlayerID":698867446,"Points":3947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4845","ServerKey":"pl181","X":542,"Y":516},{"Bonus":0,"Continent":"K54","ID":4846,"Name":"Gratuluje mĂłzgu","PlayerID":699698253,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4846","ServerKey":"pl181","X":452,"Y":539},{"Bonus":0,"Continent":"K45","ID":4847,"Name":"Tesa 8","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4847","ServerKey":"pl181","X":533,"Y":475},{"Bonus":0,"Continent":"K44","ID":4848,"Name":"Cast Away 020","PlayerID":698290577,"Points":4077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4848","ServerKey":"pl181","X":443,"Y":486},{"Bonus":0,"Continent":"K55","ID":4849,"Name":"Wioska (032)","PlayerID":698232227,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4849","ServerKey":"pl181","X":572,"Y":507},{"Bonus":0,"Continent":"K35","ID":4850,"Name":".042.","PlayerID":698489071,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4850","ServerKey":"pl181","X":502,"Y":382},{"Bonus":0,"Continent":"K44","ID":4851,"Name":"Natii","PlayerID":699660539,"Points":8767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4851","ServerKey":"pl181","X":435,"Y":457},{"Bonus":0,"Continent":"K54","ID":4852,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4852","ServerKey":"pl181","X":496,"Y":552},{"Bonus":0,"Continent":"K45","ID":4853,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":6931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4853","ServerKey":"pl181","X":564,"Y":435},{"Bonus":0,"Continent":"K45","ID":4854,"Name":"176","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4854","ServerKey":"pl181","X":575,"Y":417},{"Bonus":0,"Continent":"K55","ID":4855,"Name":"Szlachcic 017","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4855","ServerKey":"pl181","X":570,"Y":520},{"Bonus":0,"Continent":"K45","ID":4856,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4856","ServerKey":"pl181","X":530,"Y":431},{"Bonus":0,"Continent":"K55","ID":4857,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4857","ServerKey":"pl181","X":582,"Y":506},{"Bonus":0,"Continent":"K54","ID":4858,"Name":"KIELBA 125","PlayerID":699342219,"Points":7135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4858","ServerKey":"pl181","X":450,"Y":564},{"Bonus":0,"Continent":"K54","ID":4859,"Name":"0040 K54 and987 OZDR.","PlayerID":3613413,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4859","ServerKey":"pl181","X":496,"Y":563},{"Bonus":0,"Continent":"K55","ID":4860,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4860","ServerKey":"pl181","X":574,"Y":542},{"Bonus":0,"Continent":"K65","ID":4861,"Name":"006","PlayerID":699567608,"Points":10341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4861","ServerKey":"pl181","X":557,"Y":615},{"Bonus":0,"Continent":"K55","ID":4862,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4862","ServerKey":"pl181","X":584,"Y":533},{"Bonus":9,"Continent":"K45","ID":4863,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4863","ServerKey":"pl181","X":517,"Y":435},{"Bonus":0,"Continent":"K53","ID":4864,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4864","ServerKey":"pl181","X":388,"Y":503},{"Bonus":0,"Continent":"K55","ID":4865,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4865","ServerKey":"pl181","X":517,"Y":522},{"Bonus":0,"Continent":"K45","ID":4866,"Name":".:049:.Chillout","PlayerID":848934935,"Points":4064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4866","ServerKey":"pl181","X":513,"Y":442},{"Bonus":0,"Continent":"K55","ID":4867,"Name":"0.San Antonio","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4867","ServerKey":"pl181","X":520,"Y":587},{"Bonus":0,"Continent":"K44","ID":4868,"Name":"...Just like that","PlayerID":699723284,"Points":4467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4868","ServerKey":"pl181","X":461,"Y":487},{"Bonus":0,"Continent":"K54","ID":4869,"Name":"#0125 Koperta","PlayerID":9272054,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4869","ServerKey":"pl181","X":492,"Y":521},{"Bonus":0,"Continent":"K54","ID":4870,"Name":"Wioska browar150","PlayerID":9167250,"Points":6896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4870","ServerKey":"pl181","X":407,"Y":567},{"Bonus":0,"Continent":"K54","ID":4871,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4871","ServerKey":"pl181","X":478,"Y":543},{"Bonus":0,"Continent":"K44","ID":4872,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4872","ServerKey":"pl181","X":478,"Y":439},{"Bonus":0,"Continent":"K45","ID":4873,"Name":"BBB","PlayerID":1006847,"Points":7779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4873","ServerKey":"pl181","X":556,"Y":440},{"Bonus":0,"Continent":"K54","ID":4874,"Name":"0231","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4874","ServerKey":"pl181","X":469,"Y":545},{"Bonus":0,"Continent":"K45","ID":4875,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4875","ServerKey":"pl181","X":553,"Y":476},{"Bonus":0,"Continent":"K55","ID":4876,"Name":"Wioska 416","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4876","ServerKey":"pl181","X":572,"Y":508},{"Bonus":0,"Continent":"K55","ID":4877,"Name":"Szlachcic 013","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4877","ServerKey":"pl181","X":572,"Y":535},{"Bonus":0,"Continent":"K54","ID":4878,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4878","ServerKey":"pl181","X":455,"Y":546},{"Bonus":6,"Continent":"K44","ID":4879,"Name":"004 West Palm Beach","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4879","ServerKey":"pl181","X":442,"Y":470},{"Bonus":0,"Continent":"K55","ID":4880,"Name":"Szlachcic 031","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4880","ServerKey":"pl181","X":558,"Y":528},{"Bonus":0,"Continent":"K54","ID":4881,"Name":"Winter is coming","PlayerID":699856962,"Points":8189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4881","ServerKey":"pl181","X":439,"Y":538},{"Bonus":0,"Continent":"K45","ID":4882,"Name":"3 cmoknąć","PlayerID":6923061,"Points":7755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4882","ServerKey":"pl181","X":536,"Y":475},{"Bonus":0,"Continent":"K44","ID":4883,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4883","ServerKey":"pl181","X":441,"Y":437},{"Bonus":0,"Continent":"K45","ID":4884,"Name":"ADEN","PlayerID":698588535,"Points":8437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4884","ServerKey":"pl181","X":562,"Y":436},{"Bonus":0,"Continent":"K54","ID":4885,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4885","ServerKey":"pl181","X":498,"Y":565},{"Bonus":0,"Continent":"K44","ID":4886,"Name":"Gravity","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4886","ServerKey":"pl181","X":410,"Y":456},{"Bonus":0,"Continent":"K44","ID":4887,"Name":"A005","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4887","ServerKey":"pl181","X":488,"Y":418},{"Bonus":0,"Continent":"K44","ID":4888,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4888","ServerKey":"pl181","X":463,"Y":417},{"Bonus":0,"Continent":"K44","ID":4889,"Name":"[A]_[044] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4889","ServerKey":"pl181","X":410,"Y":475},{"Bonus":0,"Continent":"K45","ID":4890,"Name":"A18","PlayerID":699368887,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4890","ServerKey":"pl181","X":551,"Y":448},{"Bonus":0,"Continent":"K46","ID":4891,"Name":"024","PlayerID":8459255,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4891","ServerKey":"pl181","X":614,"Y":473},{"Bonus":0,"Continent":"K54","ID":4892,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4892","ServerKey":"pl181","X":434,"Y":518},{"Bonus":0,"Continent":"K55","ID":4893,"Name":"Jaaa","PlayerID":698635863,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4893","ServerKey":"pl181","X":583,"Y":531},{"Bonus":0,"Continent":"K45","ID":4894,"Name":"#Dragonite","PlayerID":699795378,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4894","ServerKey":"pl181","X":578,"Y":454},{"Bonus":0,"Continent":"K45","ID":4895,"Name":"x11","PlayerID":8459255,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4895","ServerKey":"pl181","X":552,"Y":471},{"Bonus":2,"Continent":"K54","ID":4896,"Name":".Selonari","PlayerID":698704189,"Points":8639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4896","ServerKey":"pl181","X":472,"Y":562},{"Bonus":0,"Continent":"K44","ID":4897,"Name":"0084","PlayerID":3909522,"Points":7046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4897","ServerKey":"pl181","X":446,"Y":442},{"Bonus":0,"Continent":"K45","ID":4898,"Name":"Zajazd","PlayerID":699658023,"Points":6714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4898","ServerKey":"pl181","X":504,"Y":420},{"Bonus":0,"Continent":"K55","ID":4899,"Name":"Winter is coming","PlayerID":699364813,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4899","ServerKey":"pl181","X":505,"Y":580},{"Bonus":0,"Continent":"K55","ID":4900,"Name":"058 |","PlayerID":8000875,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4900","ServerKey":"pl181","X":551,"Y":502},{"Bonus":0,"Continent":"K54","ID":4901,"Name":"keepo","PlayerID":848967710,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4901","ServerKey":"pl181","X":484,"Y":532},{"Bonus":0,"Continent":"K45","ID":4902,"Name":"IQ149","PlayerID":699368887,"Points":6824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4902","ServerKey":"pl181","X":552,"Y":453},{"Bonus":0,"Continent":"K44","ID":4903,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4903","ServerKey":"pl181","X":428,"Y":459},{"Bonus":0,"Continent":"K55","ID":4904,"Name":"[121]","PlayerID":8000875,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4904","ServerKey":"pl181","X":542,"Y":503},{"Bonus":0,"Continent":"K54","ID":4905,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4905","ServerKey":"pl181","X":460,"Y":565},{"Bonus":0,"Continent":"K44","ID":4906,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4906","ServerKey":"pl181","X":429,"Y":484},{"Bonus":0,"Continent":"K45","ID":4907,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4907","ServerKey":"pl181","X":520,"Y":401},{"Bonus":0,"Continent":"K55","ID":4908,"Name":"CALL 939","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4908","ServerKey":"pl181","X":554,"Y":557},{"Bonus":0,"Continent":"K44","ID":4910,"Name":"+44 73 Irigny","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4910","ServerKey":"pl181","X":433,"Y":472},{"Bonus":0,"Continent":"K55","ID":4911,"Name":"CALL 1048","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4911","ServerKey":"pl181","X":520,"Y":568},{"Bonus":0,"Continent":"K54","ID":4912,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4912","ServerKey":"pl181","X":433,"Y":522},{"Bonus":0,"Continent":"K55","ID":4913,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4913","ServerKey":"pl181","X":571,"Y":588},{"Bonus":0,"Continent":"K45","ID":4914,"Name":"FALAS a","PlayerID":8155296,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4914","ServerKey":"pl181","X":529,"Y":468},{"Bonus":0,"Continent":"K55","ID":4915,"Name":"Chill gaming","PlayerID":698312347,"Points":3064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4915","ServerKey":"pl181","X":583,"Y":504},{"Bonus":0,"Continent":"K54","ID":4916,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4916","ServerKey":"pl181","X":435,"Y":504},{"Bonus":0,"Continent":"K54","ID":4917,"Name":"028. ALFI","PlayerID":8539216,"Points":1586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4917","ServerKey":"pl181","X":476,"Y":568},{"Bonus":0,"Continent":"K45","ID":4918,"Name":"022","PlayerID":699788305,"Points":8746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4918","ServerKey":"pl181","X":532,"Y":429},{"Bonus":0,"Continent":"K45","ID":4919,"Name":"020","PlayerID":8191129,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4919","ServerKey":"pl181","X":531,"Y":499},{"Bonus":0,"Continent":"K54","ID":4920,"Name":"~066.","PlayerID":7139820,"Points":7494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4920","ServerKey":"pl181","X":479,"Y":556},{"Bonus":0,"Continent":"K44","ID":4921,"Name":"PRO8L3M","PlayerID":7491093,"Points":9437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4921","ServerKey":"pl181","X":434,"Y":486},{"Bonus":5,"Continent":"K44","ID":4922,"Name":"Szlachcic","PlayerID":699098531,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4922","ServerKey":"pl181","X":498,"Y":482},{"Bonus":0,"Continent":"K54","ID":4923,"Name":"0596","PlayerID":698971484,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4923","ServerKey":"pl181","X":475,"Y":542},{"Bonus":0,"Continent":"K54","ID":4924,"Name":"Gratuluje mĂłzgu","PlayerID":699698253,"Points":1932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4924","ServerKey":"pl181","X":449,"Y":538},{"Bonus":0,"Continent":"K44","ID":4925,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4925","ServerKey":"pl181","X":423,"Y":402},{"Bonus":0,"Continent":"K54","ID":4926,"Name":"x Wioska wschĂłd","PlayerID":698290577,"Points":8603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4926","ServerKey":"pl181","X":438,"Y":502},{"Bonus":0,"Continent":"K44","ID":4927,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4927","ServerKey":"pl181","X":493,"Y":490},{"Bonus":4,"Continent":"K45","ID":4928,"Name":"006","PlayerID":849070464,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4928","ServerKey":"pl181","X":558,"Y":483},{"Bonus":0,"Continent":"K55","ID":4929,"Name":"yogi","PlayerID":2808172,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4929","ServerKey":"pl181","X":538,"Y":550},{"Bonus":0,"Continent":"K55","ID":4930,"Name":"[065] KSi","PlayerID":848985692,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4930","ServerKey":"pl181","X":533,"Y":515},{"Bonus":0,"Continent":"K45","ID":4931,"Name":"055 Czechy","PlayerID":7092442,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4931","ServerKey":"pl181","X":586,"Y":476},{"Bonus":0,"Continent":"K54","ID":4932,"Name":"Zimbabwe1","PlayerID":699856962,"Points":9011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4932","ServerKey":"pl181","X":439,"Y":530},{"Bonus":0,"Continent":"K54","ID":4933,"Name":"~047.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4933","ServerKey":"pl181","X":487,"Y":552},{"Bonus":0,"Continent":"K55","ID":4934,"Name":"Nogrod","PlayerID":849091897,"Points":8299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4934","ServerKey":"pl181","X":502,"Y":512},{"Bonus":0,"Continent":"K55","ID":4935,"Name":"Wioska 403","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4935","ServerKey":"pl181","X":562,"Y":516},{"Bonus":0,"Continent":"K64","ID":4936,"Name":"0137","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4936","ServerKey":"pl181","X":456,"Y":613},{"Bonus":0,"Continent":"K45","ID":4939,"Name":"MasteroN 11","PlayerID":699379895,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4939","ServerKey":"pl181","X":566,"Y":454},{"Bonus":0,"Continent":"K35","ID":4940,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4940","ServerKey":"pl181","X":541,"Y":392},{"Bonus":0,"Continent":"K54","ID":4941,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4941","ServerKey":"pl181","X":454,"Y":508},{"Bonus":0,"Continent":"K55","ID":4943,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4943","ServerKey":"pl181","X":576,"Y":513},{"Bonus":0,"Continent":"K45","ID":4944,"Name":"005 nowoczesnenagrobki.eu","PlayerID":849031818,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4944","ServerKey":"pl181","X":566,"Y":471},{"Bonus":0,"Continent":"K45","ID":4945,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4945","ServerKey":"pl181","X":515,"Y":480},{"Bonus":0,"Continent":"K55","ID":4946,"Name":"03*awangarda","PlayerID":699664910,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4946","ServerKey":"pl181","X":549,"Y":528},{"Bonus":0,"Continent":"K54","ID":4947,"Name":"KARTAGINA ..9","PlayerID":8438707,"Points":8403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4947","ServerKey":"pl181","X":461,"Y":572},{"Bonus":0,"Continent":"K44","ID":4948,"Name":"A007","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4948","ServerKey":"pl181","X":489,"Y":420},{"Bonus":0,"Continent":"K55","ID":4949,"Name":"016. Czart","PlayerID":699703642,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4949","ServerKey":"pl181","X":510,"Y":561},{"Bonus":0,"Continent":"K54","ID":4950,"Name":"#0013 Retrospekcja","PlayerID":9272054,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4950","ServerKey":"pl181","X":490,"Y":551},{"Bonus":0,"Continent":"K44","ID":4951,"Name":"B045","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4951","ServerKey":"pl181","X":481,"Y":468},{"Bonus":0,"Continent":"K54","ID":4952,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4952","ServerKey":"pl181","X":494,"Y":553},{"Bonus":0,"Continent":"K54","ID":4953,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":6808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4953","ServerKey":"pl181","X":448,"Y":561},{"Bonus":0,"Continent":"K54","ID":4954,"Name":"Fajna 066","PlayerID":699868002,"Points":6935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4954","ServerKey":"pl181","X":450,"Y":563},{"Bonus":0,"Continent":"K55","ID":4955,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4955","ServerKey":"pl181","X":528,"Y":564},{"Bonus":0,"Continent":"K44","ID":4956,"Name":"P Konfederacja","PlayerID":848915730,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4956","ServerKey":"pl181","X":460,"Y":445},{"Bonus":0,"Continent":"K35","ID":4957,"Name":"Noc","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4957","ServerKey":"pl181","X":546,"Y":387},{"Bonus":6,"Continent":"K54","ID":4958,"Name":"001","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4958","ServerKey":"pl181","X":471,"Y":509},{"Bonus":0,"Continent":"K54","ID":4959,"Name":"077. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4959","ServerKey":"pl181","X":496,"Y":516},{"Bonus":0,"Continent":"K45","ID":4960,"Name":"Szlachcic","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4960","ServerKey":"pl181","X":507,"Y":477},{"Bonus":0,"Continent":"K44","ID":4961,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4961","ServerKey":"pl181","X":482,"Y":453},{"Bonus":0,"Continent":"K55","ID":4962,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":8579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4962","ServerKey":"pl181","X":506,"Y":530},{"Bonus":0,"Continent":"K44","ID":4963,"Name":"?+44 95 Verlincthun","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4963","ServerKey":"pl181","X":455,"Y":490},{"Bonus":0,"Continent":"K55","ID":4964,"Name":"Szlachcic 020","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4964","ServerKey":"pl181","X":551,"Y":521},{"Bonus":0,"Continent":"K44","ID":4965,"Name":"-x8","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4965","ServerKey":"pl181","X":497,"Y":498},{"Bonus":0,"Continent":"K55","ID":4966,"Name":"10016","PlayerID":848915531,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4966","ServerKey":"pl181","X":522,"Y":568},{"Bonus":0,"Continent":"K44","ID":4967,"Name":"0071","PlayerID":3909522,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4967","ServerKey":"pl181","X":454,"Y":441},{"Bonus":5,"Continent":"K44","ID":4968,"Name":"074 San Antonio","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4968","ServerKey":"pl181","X":460,"Y":458},{"Bonus":0,"Continent":"K45","ID":4969,"Name":"Wioska rufusix","PlayerID":699368887,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4969","ServerKey":"pl181","X":546,"Y":474},{"Bonus":0,"Continent":"K44","ID":4970,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4970","ServerKey":"pl181","X":462,"Y":431},{"Bonus":0,"Continent":"K44","ID":4971,"Name":"010 Binghamton","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4971","ServerKey":"pl181","X":438,"Y":466},{"Bonus":8,"Continent":"K55","ID":4972,"Name":"041. Camelopardalis","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4972","ServerKey":"pl181","X":512,"Y":580},{"Bonus":0,"Continent":"K45","ID":4973,"Name":"x 00022","PlayerID":3909522,"Points":7030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4973","ServerKey":"pl181","X":551,"Y":464},{"Bonus":0,"Continent":"K55","ID":4974,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4974","ServerKey":"pl181","X":519,"Y":536},{"Bonus":0,"Continent":"K55","ID":4975,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4975","ServerKey":"pl181","X":517,"Y":581},{"Bonus":0,"Continent":"K45","ID":4976,"Name":"Szczęƛliwego Nowego Roku ;)","PlayerID":699368887,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4976","ServerKey":"pl181","X":585,"Y":459},{"Bonus":0,"Continent":"K44","ID":4977,"Name":"xxx","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4977","ServerKey":"pl181","X":499,"Y":485},{"Bonus":7,"Continent":"K44","ID":4978,"Name":"Suppi","PlayerID":699856962,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4978","ServerKey":"pl181","X":428,"Y":452},{"Bonus":0,"Continent":"K44","ID":4979,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4979","ServerKey":"pl181","X":443,"Y":453},{"Bonus":0,"Continent":"K45","ID":4980,"Name":"092","PlayerID":699351301,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4980","ServerKey":"pl181","X":541,"Y":499},{"Bonus":0,"Continent":"K64","ID":4981,"Name":"S181 Pędzę Sobie Samogon","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4981","ServerKey":"pl181","X":499,"Y":612},{"Bonus":0,"Continent":"K45","ID":4982,"Name":"-[028]- Namcze Barwa","PlayerID":849092827,"Points":7638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4982","ServerKey":"pl181","X":550,"Y":487},{"Bonus":0,"Continent":"K44","ID":4983,"Name":"063","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4983","ServerKey":"pl181","X":442,"Y":499},{"Bonus":0,"Continent":"K55","ID":4984,"Name":"029. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4984","ServerKey":"pl181","X":576,"Y":532},{"Bonus":8,"Continent":"K45","ID":4985,"Name":"084.","PlayerID":849094609,"Points":10225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4985","ServerKey":"pl181","X":584,"Y":477},{"Bonus":0,"Continent":"K54","ID":4986,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4986","ServerKey":"pl181","X":488,"Y":500},{"Bonus":0,"Continent":"K54","ID":4987,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":9042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4987","ServerKey":"pl181","X":449,"Y":561},{"Bonus":0,"Continent":"K55","ID":4988,"Name":"Wioska 407","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4988","ServerKey":"pl181","X":559,"Y":518},{"Bonus":0,"Continent":"K55","ID":4989,"Name":"Bounce","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4989","ServerKey":"pl181","X":508,"Y":521},{"Bonus":0,"Continent":"K54","ID":4990,"Name":"NOT?","PlayerID":9236866,"Points":2760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4990","ServerKey":"pl181","X":457,"Y":550},{"Bonus":0,"Continent":"K54","ID":4991,"Name":"072. ALFI","PlayerID":8539216,"Points":1401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4991","ServerKey":"pl181","X":465,"Y":574},{"Bonus":0,"Continent":"K44","ID":4993,"Name":"133 Tijuana","PlayerID":1497168,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4993","ServerKey":"pl181","X":468,"Y":481},{"Bonus":0,"Continent":"K44","ID":4994,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4994","ServerKey":"pl181","X":482,"Y":417},{"Bonus":6,"Continent":"K44","ID":4995,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":11164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4995","ServerKey":"pl181","X":493,"Y":491},{"Bonus":0,"Continent":"K54","ID":4996,"Name":"014","PlayerID":848886870,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4996","ServerKey":"pl181","X":468,"Y":576},{"Bonus":0,"Continent":"K55","ID":4997,"Name":"022.","PlayerID":6520732,"Points":7951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4997","ServerKey":"pl181","X":580,"Y":523},{"Bonus":0,"Continent":"K44","ID":4998,"Name":"xxxx","PlayerID":698239813,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4998","ServerKey":"pl181","X":492,"Y":429},{"Bonus":0,"Continent":"K45","ID":4999,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=4999","ServerKey":"pl181","X":501,"Y":467},{"Bonus":0,"Continent":"K44","ID":5000,"Name":"SsSs","PlayerID":1536625,"Points":7967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5000","ServerKey":"pl181","X":466,"Y":499},{"Bonus":0,"Continent":"K44","ID":5001,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5001","ServerKey":"pl181","X":472,"Y":432},{"Bonus":0,"Continent":"K44","ID":5002,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5002","ServerKey":"pl181","X":475,"Y":445},{"Bonus":0,"Continent":"K45","ID":5004,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5004","ServerKey":"pl181","X":537,"Y":492},{"Bonus":6,"Continent":"K55","ID":5005,"Name":"025. Wioska Mozzie","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5005","ServerKey":"pl181","X":560,"Y":504},{"Bonus":0,"Continent":"K45","ID":5006,"Name":"9.5 Moje","PlayerID":8444356,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5006","ServerKey":"pl181","X":544,"Y":438},{"Bonus":0,"Continent":"K55","ID":5007,"Name":"GPS","PlayerID":699785935,"Points":9126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5007","ServerKey":"pl181","X":540,"Y":535},{"Bonus":0,"Continent":"K45","ID":5008,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5008","ServerKey":"pl181","X":513,"Y":487},{"Bonus":0,"Continent":"K54","ID":5009,"Name":"F029","PlayerID":699189792,"Points":9639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5009","ServerKey":"pl181","X":486,"Y":540},{"Bonus":0,"Continent":"K54","ID":5010,"Name":"Fajna 076","PlayerID":8539216,"Points":5909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5010","ServerKey":"pl181","X":456,"Y":564},{"Bonus":0,"Continent":"K44","ID":5011,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5011","ServerKey":"pl181","X":460,"Y":448},{"Bonus":0,"Continent":"K45","ID":5012,"Name":".:078:. Takmahal","PlayerID":848934935,"Points":7624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5012","ServerKey":"pl181","X":527,"Y":445},{"Bonus":0,"Continent":"K45","ID":5013,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5013","ServerKey":"pl181","X":517,"Y":452},{"Bonus":0,"Continent":"K45","ID":5014,"Name":"Wioska 11","PlayerID":699385139,"Points":10657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5014","ServerKey":"pl181","X":524,"Y":496},{"Bonus":0,"Continent":"K55","ID":5015,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5015","ServerKey":"pl181","X":521,"Y":502},{"Bonus":0,"Continent":"K44","ID":5016,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5016","ServerKey":"pl181","X":469,"Y":448},{"Bonus":0,"Continent":"K54","ID":5017,"Name":"048","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5017","ServerKey":"pl181","X":422,"Y":526},{"Bonus":0,"Continent":"K55","ID":5018,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5018","ServerKey":"pl181","X":506,"Y":575},{"Bonus":0,"Continent":"K54","ID":5019,"Name":"NOT?","PlayerID":9236866,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5019","ServerKey":"pl181","X":427,"Y":544},{"Bonus":0,"Continent":"K55","ID":5020,"Name":"11*","PlayerID":699664910,"Points":9457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5020","ServerKey":"pl181","X":566,"Y":543},{"Bonus":0,"Continent":"K44","ID":5021,"Name":"009990","PlayerID":3909522,"Points":8459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5021","ServerKey":"pl181","X":469,"Y":433},{"Bonus":0,"Continent":"K44","ID":5022,"Name":"Brat447","PlayerID":699262350,"Points":9143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5022","ServerKey":"pl181","X":444,"Y":497},{"Bonus":0,"Continent":"K54","ID":5023,"Name":"~064.","PlayerID":7139820,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5023","ServerKey":"pl181","X":489,"Y":531},{"Bonus":0,"Continent":"K55","ID":5024,"Name":"EXA","PlayerID":848967710,"Points":8396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5024","ServerKey":"pl181","X":585,"Y":517},{"Bonus":0,"Continent":"K45","ID":5025,"Name":"A056","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5025","ServerKey":"pl181","X":501,"Y":432},{"Bonus":0,"Continent":"K54","ID":5026,"Name":"szlachcic","PlayerID":698971484,"Points":6287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5026","ServerKey":"pl181","X":439,"Y":540},{"Bonus":0,"Continent":"K45","ID":5027,"Name":"200","PlayerID":849064752,"Points":6086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5027","ServerKey":"pl181","X":548,"Y":431},{"Bonus":0,"Continent":"K54","ID":5028,"Name":"004 Fiona","PlayerID":698290577,"Points":7997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5028","ServerKey":"pl181","X":447,"Y":504},{"Bonus":0,"Continent":"K44","ID":5029,"Name":"Suppi","PlayerID":699856962,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5029","ServerKey":"pl181","X":427,"Y":453},{"Bonus":0,"Continent":"K54","ID":5030,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5030","ServerKey":"pl181","X":413,"Y":515},{"Bonus":0,"Continent":"K55","ID":5031,"Name":"079.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5031","ServerKey":"pl181","X":577,"Y":515},{"Bonus":0,"Continent":"K54","ID":5032,"Name":"NOT?","PlayerID":9236866,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5032","ServerKey":"pl181","X":433,"Y":518},{"Bonus":0,"Continent":"K55","ID":5033,"Name":"0001 sztart","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5033","ServerKey":"pl181","X":505,"Y":503},{"Bonus":0,"Continent":"K45","ID":5034,"Name":"[051] Beta","PlayerID":848985692,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5034","ServerKey":"pl181","X":545,"Y":488},{"Bonus":0,"Continent":"K44","ID":5035,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5035","ServerKey":"pl181","X":480,"Y":441},{"Bonus":0,"Continent":"K55","ID":5036,"Name":"Szlachcic 022","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5036","ServerKey":"pl181","X":554,"Y":526},{"Bonus":1,"Continent":"K54","ID":5037,"Name":"Osada koczownikĂłw","PlayerID":699698253,"Points":2731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5037","ServerKey":"pl181","X":454,"Y":543},{"Bonus":0,"Continent":"K54","ID":5038,"Name":"NOT?","PlayerID":9236866,"Points":5264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5038","ServerKey":"pl181","X":425,"Y":539},{"Bonus":0,"Continent":"K45","ID":5039,"Name":"-[026]- Kanjut Sar","PlayerID":849092827,"Points":7101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5039","ServerKey":"pl181","X":551,"Y":485},{"Bonus":0,"Continent":"K45","ID":5040,"Name":"[106] North6","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5040","ServerKey":"pl181","X":574,"Y":484},{"Bonus":0,"Continent":"K54","ID":5041,"Name":"056. ALFI","PlayerID":8539216,"Points":1941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5041","ServerKey":"pl181","X":472,"Y":559},{"Bonus":0,"Continent":"K55","ID":5042,"Name":"ƚmieszkii","PlayerID":3454753,"Points":8086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5042","ServerKey":"pl181","X":520,"Y":560},{"Bonus":0,"Continent":"K45","ID":5043,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5043","ServerKey":"pl181","X":512,"Y":484},{"Bonus":0,"Continent":"K54","ID":5044,"Name":"Kasyno","PlayerID":7249451,"Points":7511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5044","ServerKey":"pl181","X":448,"Y":513},{"Bonus":4,"Continent":"K54","ID":5045,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5045","ServerKey":"pl181","X":449,"Y":562},{"Bonus":0,"Continent":"K43","ID":5046,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5046","ServerKey":"pl181","X":395,"Y":439},{"Bonus":0,"Continent":"K44","ID":5047,"Name":"00952 meheheheqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5047","ServerKey":"pl181","X":459,"Y":437},{"Bonus":0,"Continent":"K55","ID":5048,"Name":"Szlachcic 023","PlayerID":758104,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5048","ServerKey":"pl181","X":555,"Y":526},{"Bonus":0,"Continent":"K55","ID":5049,"Name":"057.","PlayerID":699695167,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5049","ServerKey":"pl181","X":523,"Y":558},{"Bonus":0,"Continent":"K54","ID":5050,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5050","ServerKey":"pl181","X":462,"Y":561},{"Bonus":6,"Continent":"K45","ID":5051,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5051","ServerKey":"pl181","X":572,"Y":491},{"Bonus":0,"Continent":"K55","ID":5052,"Name":"bazan","PlayerID":7038651,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5052","ServerKey":"pl181","X":566,"Y":536},{"Bonus":0,"Continent":"K44","ID":5053,"Name":"B047","PlayerID":699299123,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5053","ServerKey":"pl181","X":483,"Y":467},{"Bonus":0,"Continent":"K54","ID":5054,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5054","ServerKey":"pl181","X":454,"Y":505},{"Bonus":0,"Continent":"K45","ID":5055,"Name":"004 Cerulean City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5055","ServerKey":"pl181","X":591,"Y":496},{"Bonus":0,"Continent":"K54","ID":5056,"Name":"Front_11","PlayerID":2585846,"Points":2977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5056","ServerKey":"pl181","X":459,"Y":524},{"Bonus":0,"Continent":"K44","ID":5057,"Name":"0063 b5","PlayerID":3909522,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5057","ServerKey":"pl181","X":450,"Y":433},{"Bonus":0,"Continent":"K45","ID":5059,"Name":"Wioska Matyyy","PlayerID":848967710,"Points":6658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5059","ServerKey":"pl181","X":549,"Y":497},{"Bonus":0,"Continent":"K54","ID":5060,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5060","ServerKey":"pl181","X":443,"Y":539},{"Bonus":0,"Continent":"K55","ID":5061,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5061","ServerKey":"pl181","X":519,"Y":525},{"Bonus":0,"Continent":"K44","ID":5062,"Name":"+44 74 Armbout Cappel","PlayerID":698361257,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5062","ServerKey":"pl181","X":448,"Y":476},{"Bonus":0,"Continent":"K44","ID":5063,"Name":"003","PlayerID":699781762,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5063","ServerKey":"pl181","X":469,"Y":496},{"Bonus":0,"Continent":"K54","ID":5064,"Name":"BETI 003","PlayerID":8539216,"Points":1698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5064","ServerKey":"pl181","X":460,"Y":566},{"Bonus":0,"Continent":"K45","ID":5065,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5065","ServerKey":"pl181","X":553,"Y":478},{"Bonus":0,"Continent":"K44","ID":5066,"Name":"B032","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5066","ServerKey":"pl181","X":490,"Y":452},{"Bonus":0,"Continent":"K44","ID":5067,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5067","ServerKey":"pl181","X":492,"Y":495},{"Bonus":0,"Continent":"K55","ID":5068,"Name":"017","PlayerID":849070464,"Points":7725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5068","ServerKey":"pl181","X":556,"Y":501},{"Bonus":0,"Continent":"K45","ID":5069,"Name":".:036:. Curry","PlayerID":8649412,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5069","ServerKey":"pl181","X":507,"Y":438},{"Bonus":0,"Continent":"K54","ID":5070,"Name":"029","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5070","ServerKey":"pl181","X":429,"Y":516},{"Bonus":0,"Continent":"K54","ID":5071,"Name":"Warzywniak 001","PlayerID":698290577,"Points":5462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5071","ServerKey":"pl181","X":446,"Y":544},{"Bonus":0,"Continent":"K55","ID":5072,"Name":"024 |","PlayerID":8000875,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5072","ServerKey":"pl181","X":560,"Y":552},{"Bonus":0,"Continent":"K55","ID":5073,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5073","ServerKey":"pl181","X":535,"Y":510},{"Bonus":0,"Continent":"K56","ID":5074,"Name":"*001*","PlayerID":698670524,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5074","ServerKey":"pl181","X":613,"Y":502},{"Bonus":0,"Continent":"K54","ID":5075,"Name":"???","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5075","ServerKey":"pl181","X":482,"Y":546},{"Bonus":0,"Continent":"K45","ID":5076,"Name":"DOL GULDUR","PlayerID":8155296,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5076","ServerKey":"pl181","X":543,"Y":472},{"Bonus":0,"Continent":"K54","ID":5077,"Name":"ƛnieg","PlayerID":848967710,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5077","ServerKey":"pl181","X":494,"Y":500},{"Bonus":0,"Continent":"K55","ID":5078,"Name":"[218]","PlayerID":8000875,"Points":2482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5078","ServerKey":"pl181","X":557,"Y":518},{"Bonus":0,"Continent":"K54","ID":5079,"Name":"NOT?","PlayerID":9236866,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5079","ServerKey":"pl181","X":434,"Y":541},{"Bonus":0,"Continent":"K54","ID":5080,"Name":"(003)","PlayerID":9236866,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5080","ServerKey":"pl181","X":428,"Y":539},{"Bonus":0,"Continent":"K65","ID":5081,"Name":"Wioska ciniol97","PlayerID":699698253,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5081","ServerKey":"pl181","X":508,"Y":602},{"Bonus":0,"Continent":"K55","ID":5082,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5082","ServerKey":"pl181","X":584,"Y":503},{"Bonus":0,"Continent":"K44","ID":5083,"Name":"096 Bisbee","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5083","ServerKey":"pl181","X":478,"Y":460},{"Bonus":0,"Continent":"K54","ID":5084,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5084","ServerKey":"pl181","X":427,"Y":523},{"Bonus":0,"Continent":"K55","ID":5086,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5086","ServerKey":"pl181","X":580,"Y":588},{"Bonus":0,"Continent":"K54","ID":5087,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":6513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5087","ServerKey":"pl181","X":457,"Y":513},{"Bonus":0,"Continent":"K54","ID":5088,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5088","ServerKey":"pl181","X":487,"Y":586},{"Bonus":0,"Continent":"K44","ID":5089,"Name":"Cast Away 007","PlayerID":698290577,"Points":10138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5089","ServerKey":"pl181","X":449,"Y":487},{"Bonus":0,"Continent":"K55","ID":5090,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5090","ServerKey":"pl181","X":573,"Y":510},{"Bonus":3,"Continent":"K45","ID":5091,"Name":"217 Sydney","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5091","ServerKey":"pl181","X":529,"Y":441},{"Bonus":0,"Continent":"K45","ID":5092,"Name":"073","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5092","ServerKey":"pl181","X":585,"Y":468},{"Bonus":0,"Continent":"K55","ID":5093,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5093","ServerKey":"pl181","X":573,"Y":511},{"Bonus":0,"Continent":"K54","ID":5094,"Name":"0BrunO","PlayerID":699781762,"Points":8388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5094","ServerKey":"pl181","X":470,"Y":502},{"Bonus":0,"Continent":"K44","ID":5095,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5095","ServerKey":"pl181","X":451,"Y":493},{"Bonus":0,"Continent":"K55","ID":5096,"Name":"Merhet","PlayerID":698215322,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5096","ServerKey":"pl181","X":520,"Y":579},{"Bonus":0,"Continent":"K44","ID":5097,"Name":"128 La Paz","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5097","ServerKey":"pl181","X":464,"Y":475},{"Bonus":1,"Continent":"K54","ID":5098,"Name":"~021.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5098","ServerKey":"pl181","X":489,"Y":567},{"Bonus":0,"Continent":"K45","ID":5099,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":11653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5099","ServerKey":"pl181","X":563,"Y":456},{"Bonus":0,"Continent":"K54","ID":5100,"Name":"027","PlayerID":2585846,"Points":3742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5100","ServerKey":"pl181","X":467,"Y":523},{"Bonus":0,"Continent":"K45","ID":5101,"Name":"06 Polska","PlayerID":8925695,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5101","ServerKey":"pl181","X":584,"Y":483},{"Bonus":0,"Continent":"K44","ID":5102,"Name":"031","PlayerID":9291984,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5102","ServerKey":"pl181","X":455,"Y":438},{"Bonus":0,"Continent":"K55","ID":5103,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5103","ServerKey":"pl181","X":532,"Y":546},{"Bonus":0,"Continent":"K35","ID":5104,"Name":"Erebor","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5104","ServerKey":"pl181","X":505,"Y":386},{"Bonus":0,"Continent":"K55","ID":5105,"Name":"Szlachcic 032","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5105","ServerKey":"pl181","X":562,"Y":524},{"Bonus":1,"Continent":"K55","ID":5106,"Name":"052","PlayerID":699189792,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5106","ServerKey":"pl181","X":532,"Y":576},{"Bonus":0,"Continent":"K44","ID":5107,"Name":"010","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5107","ServerKey":"pl181","X":466,"Y":435},{"Bonus":0,"Continent":"K55","ID":5108,"Name":"!Wioska 421","PlayerID":477415,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5108","ServerKey":"pl181","X":552,"Y":507},{"Bonus":0,"Continent":"K44","ID":5109,"Name":"+44 61 Looberghe","PlayerID":698361257,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5109","ServerKey":"pl181","X":417,"Y":469},{"Bonus":0,"Continent":"K44","ID":5110,"Name":"Szlachcic","PlayerID":699098531,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5110","ServerKey":"pl181","X":494,"Y":469},{"Bonus":0,"Continent":"K45","ID":5111,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5111","ServerKey":"pl181","X":582,"Y":496},{"Bonus":0,"Continent":"K55","ID":5112,"Name":"- 038 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5112","ServerKey":"pl181","X":535,"Y":582},{"Bonus":0,"Continent":"K54","ID":5113,"Name":"Fajna 074","PlayerID":3613413,"Points":8397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5113","ServerKey":"pl181","X":456,"Y":556},{"Bonus":0,"Continent":"K54","ID":5114,"Name":"*Front_27","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5114","ServerKey":"pl181","X":453,"Y":527},{"Bonus":0,"Continent":"K54","ID":5115,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5115","ServerKey":"pl181","X":489,"Y":511},{"Bonus":0,"Continent":"K55","ID":5116,"Name":"Gattacka","PlayerID":699298370,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5116","ServerKey":"pl181","X":578,"Y":520},{"Bonus":0,"Continent":"K55","ID":5117,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5117","ServerKey":"pl181","X":554,"Y":549},{"Bonus":0,"Continent":"K45","ID":5118,"Name":"A041","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5118","ServerKey":"pl181","X":507,"Y":429},{"Bonus":0,"Continent":"K54","ID":5119,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5119","ServerKey":"pl181","X":484,"Y":556},{"Bonus":0,"Continent":"K45","ID":5120,"Name":"Wioska MatiĆčĆșĆș","PlayerID":699432672,"Points":4359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5120","ServerKey":"pl181","X":554,"Y":494},{"Bonus":0,"Continent":"K44","ID":5121,"Name":"W007","PlayerID":698290577,"Points":9220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5121","ServerKey":"pl181","X":446,"Y":497},{"Bonus":0,"Continent":"K54","ID":5122,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5122","ServerKey":"pl181","X":413,"Y":504},{"Bonus":0,"Continent":"K45","ID":5123,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5123","ServerKey":"pl181","X":511,"Y":434},{"Bonus":0,"Continent":"K55","ID":5124,"Name":"0004 kolejowo","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5124","ServerKey":"pl181","X":503,"Y":500},{"Bonus":0,"Continent":"K54","ID":5125,"Name":"NOT!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5125","ServerKey":"pl181","X":465,"Y":540},{"Bonus":0,"Continent":"K45","ID":5126,"Name":"JF5","PlayerID":699368887,"Points":5564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5126","ServerKey":"pl181","X":553,"Y":457},{"Bonus":0,"Continent":"K55","ID":5127,"Name":"002","PlayerID":8191129,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5127","ServerKey":"pl181","X":524,"Y":510},{"Bonus":0,"Continent":"K54","ID":5128,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5128","ServerKey":"pl181","X":411,"Y":508},{"Bonus":8,"Continent":"K45","ID":5129,"Name":"062 Francja","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5129","ServerKey":"pl181","X":573,"Y":455},{"Bonus":0,"Continent":"K45","ID":5130,"Name":"xxxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5130","ServerKey":"pl181","X":505,"Y":427},{"Bonus":0,"Continent":"K45","ID":5131,"Name":"JF3","PlayerID":699368887,"Points":6189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5131","ServerKey":"pl181","X":555,"Y":458},{"Bonus":0,"Continent":"K55","ID":5133,"Name":"Mzm45","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5133","ServerKey":"pl181","X":573,"Y":514},{"Bonus":7,"Continent":"K55","ID":5134,"Name":"024","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5134","ServerKey":"pl181","X":566,"Y":547},{"Bonus":0,"Continent":"K44","ID":5135,"Name":"-xx12","PlayerID":848967710,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5135","ServerKey":"pl181","X":491,"Y":497},{"Bonus":0,"Continent":"K55","ID":5136,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5136","ServerKey":"pl181","X":516,"Y":565},{"Bonus":0,"Continent":"K45","ID":5137,"Name":"Szlachcic","PlayerID":699098531,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5137","ServerKey":"pl181","X":510,"Y":458},{"Bonus":0,"Continent":"K55","ID":5138,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5138","ServerKey":"pl181","X":579,"Y":539},{"Bonus":0,"Continent":"K44","ID":5139,"Name":"Szlachcic","PlayerID":699098531,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5139","ServerKey":"pl181","X":493,"Y":476},{"Bonus":0,"Continent":"K55","ID":5140,"Name":"|009|","PlayerID":873575,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5140","ServerKey":"pl181","X":552,"Y":571},{"Bonus":0,"Continent":"K55","ID":5141,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5141","ServerKey":"pl181","X":585,"Y":557},{"Bonus":0,"Continent":"K44","ID":5142,"Name":"-043-","PlayerID":9291984,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5142","ServerKey":"pl181","X":470,"Y":428},{"Bonus":0,"Continent":"K44","ID":5143,"Name":"0094","PlayerID":3909522,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5143","ServerKey":"pl181","X":457,"Y":437},{"Bonus":0,"Continent":"K55","ID":5144,"Name":"Mzm22.","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5144","ServerKey":"pl181","X":561,"Y":528},{"Bonus":0,"Continent":"K44","ID":5145,"Name":"x15","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5145","ServerKey":"pl181","X":427,"Y":451},{"Bonus":0,"Continent":"K44","ID":5146,"Name":"B050","PlayerID":699299123,"Points":9410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5146","ServerKey":"pl181","X":475,"Y":465},{"Bonus":0,"Continent":"K45","ID":5147,"Name":"PrzypaƂ","PlayerID":699368887,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5147","ServerKey":"pl181","X":560,"Y":460},{"Bonus":0,"Continent":"K55","ID":5148,"Name":"Jaaa","PlayerID":698635863,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5148","ServerKey":"pl181","X":580,"Y":541},{"Bonus":0,"Continent":"K54","ID":5149,"Name":"F023","PlayerID":699189792,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5149","ServerKey":"pl181","X":491,"Y":532},{"Bonus":0,"Continent":"K35","ID":5151,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5151","ServerKey":"pl181","X":513,"Y":377},{"Bonus":0,"Continent":"K45","ID":5152,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5152","ServerKey":"pl181","X":543,"Y":477},{"Bonus":0,"Continent":"K55","ID":5153,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5153","ServerKey":"pl181","X":516,"Y":524},{"Bonus":0,"Continent":"K45","ID":5154,"Name":"[111] North111","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5154","ServerKey":"pl181","X":577,"Y":474},{"Bonus":0,"Continent":"K45","ID":5155,"Name":"003","PlayerID":698881022,"Points":7254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5155","ServerKey":"pl181","X":505,"Y":478},{"Bonus":0,"Continent":"K54","ID":5156,"Name":"NOT?","PlayerID":9236866,"Points":8812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5156","ServerKey":"pl181","X":432,"Y":538},{"Bonus":0,"Continent":"K45","ID":5157,"Name":"A07","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5157","ServerKey":"pl181","X":552,"Y":449},{"Bonus":0,"Continent":"K45","ID":5158,"Name":"DOM 2","PlayerID":849064614,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5158","ServerKey":"pl181","X":563,"Y":401},{"Bonus":0,"Continent":"K45","ID":5159,"Name":".:071:. Chillout","PlayerID":848934935,"Points":3573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5159","ServerKey":"pl181","X":513,"Y":421},{"Bonus":0,"Continent":"K45","ID":5160,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5160","ServerKey":"pl181","X":556,"Y":476},{"Bonus":0,"Continent":"K54","ID":5161,"Name":"#0108 MaƂaszewicze","PlayerID":9272054,"Points":9251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5161","ServerKey":"pl181","X":472,"Y":556},{"Bonus":0,"Continent":"K45","ID":5162,"Name":"Belvedere 002","PlayerID":699756210,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5162","ServerKey":"pl181","X":577,"Y":411},{"Bonus":0,"Continent":"K55","ID":5163,"Name":"- 035 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5163","ServerKey":"pl181","X":535,"Y":576},{"Bonus":0,"Continent":"K54","ID":5164,"Name":"Ateny_57","PlayerID":2585846,"Points":8865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5164","ServerKey":"pl181","X":473,"Y":531},{"Bonus":0,"Continent":"K54","ID":5165,"Name":"Jetlag!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5165","ServerKey":"pl181","X":498,"Y":508},{"Bonus":0,"Continent":"K54","ID":5166,"Name":"KIELBA 076","PlayerID":699342219,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5166","ServerKey":"pl181","X":475,"Y":579},{"Bonus":0,"Continent":"K44","ID":5167,"Name":"+44 74 Conchil le Temple","PlayerID":698361257,"Points":9715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5167","ServerKey":"pl181","X":446,"Y":474},{"Bonus":0,"Continent":"K44","ID":5168,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5168","ServerKey":"pl181","X":484,"Y":489},{"Bonus":0,"Continent":"K56","ID":5169,"Name":"W.181/24","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5169","ServerKey":"pl181","X":613,"Y":520},{"Bonus":0,"Continent":"K45","ID":5170,"Name":"020. Kompania Braci","PlayerID":8155296,"Points":9249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5170","ServerKey":"pl181","X":540,"Y":452},{"Bonus":0,"Continent":"K56","ID":5171,"Name":"[007] Patyon ka","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5171","ServerKey":"pl181","X":603,"Y":522},{"Bonus":0,"Continent":"K45","ID":5172,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5172","ServerKey":"pl181","X":582,"Y":463},{"Bonus":0,"Continent":"K45","ID":5173,"Name":"025","PlayerID":849031818,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5173","ServerKey":"pl181","X":543,"Y":463},{"Bonus":0,"Continent":"K44","ID":5174,"Name":"047","PlayerID":699510259,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5174","ServerKey":"pl181","X":427,"Y":491},{"Bonus":0,"Continent":"K45","ID":5175,"Name":"070","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5175","ServerKey":"pl181","X":563,"Y":400},{"Bonus":0,"Continent":"K44","ID":5176,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5176","ServerKey":"pl181","X":438,"Y":469},{"Bonus":0,"Continent":"K54","ID":5177,"Name":"#0032 Suwalki","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5177","ServerKey":"pl181","X":483,"Y":556},{"Bonus":0,"Continent":"K45","ID":5178,"Name":"012","PlayerID":699788305,"Points":8622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5178","ServerKey":"pl181","X":529,"Y":433},{"Bonus":0,"Continent":"K45","ID":5179,"Name":"015","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5179","ServerKey":"pl181","X":572,"Y":408},{"Bonus":0,"Continent":"K45","ID":5180,"Name":"B009","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5180","ServerKey":"pl181","X":552,"Y":498},{"Bonus":0,"Continent":"K54","ID":5181,"Name":"COUSINS...,,,,...","PlayerID":7976264,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5181","ServerKey":"pl181","X":485,"Y":587},{"Bonus":1,"Continent":"K54","ID":5182,"Name":"014","PlayerID":2585846,"Points":2758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5182","ServerKey":"pl181","X":460,"Y":531},{"Bonus":0,"Continent":"K45","ID":5183,"Name":"Joms 040","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5183","ServerKey":"pl181","X":548,"Y":416},{"Bonus":0,"Continent":"K45","ID":5184,"Name":"Marienburg 6","PlayerID":699355601,"Points":3120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5184","ServerKey":"pl181","X":527,"Y":478},{"Bonus":0,"Continent":"K54","ID":5186,"Name":"~051.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5186","ServerKey":"pl181","X":488,"Y":568},{"Bonus":2,"Continent":"K45","ID":5187,"Name":".:075:. Takmahal","PlayerID":848934935,"Points":10600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5187","ServerKey":"pl181","X":526,"Y":443},{"Bonus":0,"Continent":"K44","ID":5188,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5188","ServerKey":"pl181","X":482,"Y":428},{"Bonus":0,"Continent":"K54","ID":5189,"Name":"#0073 JeĆŒ","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5189","ServerKey":"pl181","X":493,"Y":562},{"Bonus":0,"Continent":"K54","ID":5190,"Name":"NOT?","PlayerID":9236866,"Points":2298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5190","ServerKey":"pl181","X":439,"Y":551},{"Bonus":0,"Continent":"K54","ID":5191,"Name":"Warzywniak 003","PlayerID":698290577,"Points":1356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5191","ServerKey":"pl181","X":447,"Y":542},{"Bonus":0,"Continent":"K45","ID":5192,"Name":"008","PlayerID":849070464,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5192","ServerKey":"pl181","X":573,"Y":493},{"Bonus":0,"Continent":"K45","ID":5193,"Name":".:037:. OgĂłrki","PlayerID":8649412,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5193","ServerKey":"pl181","X":512,"Y":415},{"Bonus":0,"Continent":"K45","ID":5194,"Name":"Wioska tnt3nt","PlayerID":698895940,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5194","ServerKey":"pl181","X":510,"Y":433},{"Bonus":0,"Continent":"K45","ID":5195,"Name":"JK4","PlayerID":699368887,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5195","ServerKey":"pl181","X":559,"Y":450},{"Bonus":0,"Continent":"K44","ID":5196,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":8845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5196","ServerKey":"pl181","X":471,"Y":454},{"Bonus":0,"Continent":"K45","ID":5197,"Name":"MOTEL 5","PlayerID":849064614,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5197","ServerKey":"pl181","X":566,"Y":401},{"Bonus":0,"Continent":"K44","ID":5198,"Name":"Suppi","PlayerID":699856962,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5198","ServerKey":"pl181","X":433,"Y":448},{"Bonus":0,"Continent":"K54","ID":5199,"Name":"#029","PlayerID":849001572,"Points":8785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5199","ServerKey":"pl181","X":490,"Y":589},{"Bonus":0,"Continent":"K44","ID":5200,"Name":"+44 83 Lyon Mermoz","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5200","ServerKey":"pl181","X":438,"Y":481},{"Bonus":0,"Continent":"K45","ID":5201,"Name":"Wioska barbarzyƄska","PlayerID":8155296,"Points":10947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5201","ServerKey":"pl181","X":535,"Y":461},{"Bonus":0,"Continent":"K45","ID":5202,"Name":"Wioska 509","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5202","ServerKey":"pl181","X":574,"Y":458},{"Bonus":0,"Continent":"K55","ID":5203,"Name":"Wioska (030)","PlayerID":698232227,"Points":9232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5203","ServerKey":"pl181","X":568,"Y":524},{"Bonus":0,"Continent":"K45","ID":5204,"Name":"-10-","PlayerID":699347951,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5204","ServerKey":"pl181","X":589,"Y":481},{"Bonus":0,"Continent":"K54","ID":5205,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5205","ServerKey":"pl181","X":456,"Y":535},{"Bonus":0,"Continent":"K53","ID":5206,"Name":"005 Jose2k15","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5206","ServerKey":"pl181","X":393,"Y":552},{"Bonus":0,"Continent":"K55","ID":5207,"Name":"051 |","PlayerID":8000875,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5207","ServerKey":"pl181","X":563,"Y":539},{"Bonus":0,"Continent":"K44","ID":5208,"Name":"K44 x017","PlayerID":698364331,"Points":10705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5208","ServerKey":"pl181","X":452,"Y":426},{"Bonus":8,"Continent":"K44","ID":5209,"Name":"138 Tepic","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5209","ServerKey":"pl181","X":467,"Y":483},{"Bonus":0,"Continent":"K54","ID":5210,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5210","ServerKey":"pl181","X":418,"Y":521},{"Bonus":0,"Continent":"K44","ID":5211,"Name":"K44 x015.","PlayerID":698364331,"Points":10658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5211","ServerKey":"pl181","X":459,"Y":425},{"Bonus":0,"Continent":"K54","ID":5212,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5212","ServerKey":"pl181","X":441,"Y":522},{"Bonus":0,"Continent":"K44","ID":5213,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5213","ServerKey":"pl181","X":495,"Y":495},{"Bonus":0,"Continent":"K55","ID":5214,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5214","ServerKey":"pl181","X":531,"Y":563},{"Bonus":0,"Continent":"K54","ID":5215,"Name":"NOT?","PlayerID":9236866,"Points":3490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5215","ServerKey":"pl181","X":428,"Y":544},{"Bonus":0,"Continent":"K54","ID":5216,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5216","ServerKey":"pl181","X":412,"Y":512},{"Bonus":0,"Continent":"K55","ID":5218,"Name":"016","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5218","ServerKey":"pl181","X":583,"Y":537},{"Bonus":0,"Continent":"K45","ID":5219,"Name":"066 Irlandia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5219","ServerKey":"pl181","X":574,"Y":454},{"Bonus":0,"Continent":"K46","ID":5220,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5220","ServerKey":"pl181","X":623,"Y":489},{"Bonus":0,"Continent":"K45","ID":5221,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5221","ServerKey":"pl181","X":518,"Y":496},{"Bonus":0,"Continent":"K45","ID":5222,"Name":"7.62 mm","PlayerID":699777234,"Points":6586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5222","ServerKey":"pl181","X":547,"Y":428},{"Bonus":0,"Continent":"K54","ID":5223,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5223","ServerKey":"pl181","X":425,"Y":507},{"Bonus":0,"Continent":"K54","ID":5224,"Name":"*Ateny_40","PlayerID":2585846,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5224","ServerKey":"pl181","X":472,"Y":532},{"Bonus":0,"Continent":"K44","ID":5225,"Name":"-037-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5225","ServerKey":"pl181","X":458,"Y":422},{"Bonus":0,"Continent":"K45","ID":5226,"Name":"Szlachcic","PlayerID":699098531,"Points":9262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5226","ServerKey":"pl181","X":504,"Y":465},{"Bonus":0,"Continent":"K55","ID":5227,"Name":"0075","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5227","ServerKey":"pl181","X":501,"Y":522},{"Bonus":0,"Continent":"K44","ID":5228,"Name":"B034","PlayerID":699299123,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5228","ServerKey":"pl181","X":489,"Y":453},{"Bonus":4,"Continent":"K54","ID":5229,"Name":"F058","PlayerID":699189792,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5229","ServerKey":"pl181","X":492,"Y":516},{"Bonus":0,"Continent":"K45","ID":5230,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5230","ServerKey":"pl181","X":528,"Y":439},{"Bonus":0,"Continent":"K45","ID":5231,"Name":"044","PlayerID":7271812,"Points":4618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5231","ServerKey":"pl181","X":546,"Y":429},{"Bonus":0,"Continent":"K45","ID":5234,"Name":"088 Orzech macadamia","PlayerID":7092442,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5234","ServerKey":"pl181","X":544,"Y":465},{"Bonus":0,"Continent":"K44","ID":5235,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5235","ServerKey":"pl181","X":435,"Y":439},{"Bonus":0,"Continent":"K45","ID":5236,"Name":"C036","PlayerID":699299123,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5236","ServerKey":"pl181","X":530,"Y":456},{"Bonus":0,"Continent":"K54","ID":5237,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5237","ServerKey":"pl181","X":420,"Y":517},{"Bonus":0,"Continent":"K45","ID":5238,"Name":"9.3 Gitara","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5238","ServerKey":"pl181","X":545,"Y":439},{"Bonus":0,"Continent":"K45","ID":5239,"Name":"!Wioska 437","PlayerID":477415,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5239","ServerKey":"pl181","X":556,"Y":497},{"Bonus":8,"Continent":"K44","ID":5240,"Name":"002 Oklahoma City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5240","ServerKey":"pl181","X":442,"Y":478},{"Bonus":0,"Continent":"K54","ID":5241,"Name":"FilipV","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5241","ServerKey":"pl181","X":447,"Y":525},{"Bonus":0,"Continent":"K44","ID":5242,"Name":"00632","PlayerID":3909522,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5242","ServerKey":"pl181","X":442,"Y":430},{"Bonus":5,"Continent":"K54","ID":5243,"Name":"001","PlayerID":848967710,"Points":4944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5243","ServerKey":"pl181","X":471,"Y":514},{"Bonus":0,"Continent":"K65","ID":5244,"Name":"2. Rybnik","PlayerID":606407,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5244","ServerKey":"pl181","X":510,"Y":619},{"Bonus":0,"Continent":"K55","ID":5245,"Name":"09 Valhalla","PlayerID":699861004,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5245","ServerKey":"pl181","X":502,"Y":507},{"Bonus":0,"Continent":"K44","ID":5246,"Name":"+44 71 Cucq","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5246","ServerKey":"pl181","X":418,"Y":471},{"Bonus":0,"Continent":"K44","ID":5247,"Name":"+44 72 Beutin","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5247","ServerKey":"pl181","X":422,"Y":472},{"Bonus":0,"Continent":"K45","ID":5249,"Name":"074.","PlayerID":849094609,"Points":9944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5249","ServerKey":"pl181","X":567,"Y":458},{"Bonus":0,"Continent":"K45","ID":5250,"Name":"067 Islandia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5250","ServerKey":"pl181","X":572,"Y":452},{"Bonus":0,"Continent":"K44","ID":5251,"Name":"082.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5251","ServerKey":"pl181","X":496,"Y":488},{"Bonus":0,"Continent":"K56","ID":5252,"Name":"043 Vasperland","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5252","ServerKey":"pl181","X":602,"Y":513},{"Bonus":0,"Continent":"K55","ID":5253,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5253","ServerKey":"pl181","X":517,"Y":547},{"Bonus":0,"Continent":"K45","ID":5254,"Name":".:015:. Chillout","PlayerID":848934935,"Points":7309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5254","ServerKey":"pl181","X":515,"Y":435},{"Bonus":0,"Continent":"K45","ID":5255,"Name":".:082:.JuanPabloII","PlayerID":848934935,"Points":8720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5255","ServerKey":"pl181","X":540,"Y":443},{"Bonus":0,"Continent":"K45","ID":5256,"Name":"Wioska LoRd BoNiO","PlayerID":699019249,"Points":1916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5256","ServerKey":"pl181","X":570,"Y":498},{"Bonus":0,"Continent":"K55","ID":5257,"Name":"015.","PlayerID":699695167,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5257","ServerKey":"pl181","X":524,"Y":545},{"Bonus":0,"Continent":"K55","ID":5258,"Name":"lady","PlayerID":699703642,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5258","ServerKey":"pl181","X":500,"Y":589},{"Bonus":0,"Continent":"K45","ID":5259,"Name":"SS03","PlayerID":699744766,"Points":7262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5259","ServerKey":"pl181","X":533,"Y":492},{"Bonus":0,"Continent":"K44","ID":5260,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5260","ServerKey":"pl181","X":481,"Y":439},{"Bonus":0,"Continent":"K43","ID":5261,"Name":"A0174","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5261","ServerKey":"pl181","X":382,"Y":472},{"Bonus":0,"Continent":"K55","ID":5262,"Name":"[149]","PlayerID":8000875,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5262","ServerKey":"pl181","X":552,"Y":540},{"Bonus":0,"Continent":"K55","ID":5263,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5263","ServerKey":"pl181","X":516,"Y":505},{"Bonus":0,"Continent":"K54","ID":5264,"Name":"015","PlayerID":7491093,"Points":9205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5264","ServerKey":"pl181","X":477,"Y":520},{"Bonus":0,"Continent":"K45","ID":5265,"Name":"033.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5265","ServerKey":"pl181","X":504,"Y":490},{"Bonus":2,"Continent":"K54","ID":5266,"Name":"Ateny_80","PlayerID":2585846,"Points":5431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5266","ServerKey":"pl181","X":471,"Y":524},{"Bonus":0,"Continent":"K54","ID":5267,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5267","ServerKey":"pl181","X":436,"Y":514},{"Bonus":0,"Continent":"K54","ID":5268,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5268","ServerKey":"pl181","X":470,"Y":574},{"Bonus":7,"Continent":"K54","ID":5269,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5269","ServerKey":"pl181","X":469,"Y":572},{"Bonus":0,"Continent":"K44","ID":5270,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5270","ServerKey":"pl181","X":481,"Y":419},{"Bonus":0,"Continent":"K54","ID":5271,"Name":"lady","PlayerID":699703642,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5271","ServerKey":"pl181","X":498,"Y":575},{"Bonus":4,"Continent":"K45","ID":5272,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5272","ServerKey":"pl181","X":520,"Y":473},{"Bonus":0,"Continent":"K64","ID":5273,"Name":"Wioska barbarzyƄska","PlayerID":699859013,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5273","ServerKey":"pl181","X":442,"Y":608},{"Bonus":0,"Continent":"K45","ID":5274,"Name":"037","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5274","ServerKey":"pl181","X":585,"Y":472},{"Bonus":0,"Continent":"K45","ID":5275,"Name":"011","PlayerID":849031818,"Points":8186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5275","ServerKey":"pl181","X":536,"Y":499},{"Bonus":0,"Continent":"K44","ID":5276,"Name":"+44 75 Tassin Le Bourg","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5276","ServerKey":"pl181","X":455,"Y":477},{"Bonus":0,"Continent":"K44","ID":5277,"Name":"026 Lafayette","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5277","ServerKey":"pl181","X":447,"Y":469},{"Bonus":0,"Continent":"K34","ID":5278,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5278","ServerKey":"pl181","X":470,"Y":399},{"Bonus":0,"Continent":"K54","ID":5279,"Name":"120 s000","PlayerID":699382126,"Points":8326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5279","ServerKey":"pl181","X":401,"Y":557},{"Bonus":0,"Continent":"K55","ID":5280,"Name":"Szlachcic 033","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5280","ServerKey":"pl181","X":555,"Y":536},{"Bonus":0,"Continent":"K45","ID":5281,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5281","ServerKey":"pl181","X":582,"Y":490},{"Bonus":0,"Continent":"K45","ID":5282,"Name":"2 KRÓLESTWO f?","PlayerID":8155296,"Points":8147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5282","ServerKey":"pl181","X":537,"Y":461},{"Bonus":0,"Continent":"K44","ID":5283,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5283","ServerKey":"pl181","X":446,"Y":454},{"Bonus":0,"Continent":"K45","ID":5284,"Name":"x02","PlayerID":8459255,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5284","ServerKey":"pl181","X":545,"Y":475},{"Bonus":0,"Continent":"K45","ID":5285,"Name":"014","PlayerID":849070464,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5285","ServerKey":"pl181","X":560,"Y":491},{"Bonus":0,"Continent":"K44","ID":5286,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5286","ServerKey":"pl181","X":475,"Y":413},{"Bonus":0,"Continent":"K45","ID":5287,"Name":"[150] North","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5287","ServerKey":"pl181","X":578,"Y":472},{"Bonus":0,"Continent":"K44","ID":5288,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5288","ServerKey":"pl181","X":489,"Y":467},{"Bonus":0,"Continent":"K54","ID":5289,"Name":"0035 K54 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5289","ServerKey":"pl181","X":499,"Y":565},{"Bonus":0,"Continent":"K35","ID":5290,"Name":"{001} Asta","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5290","ServerKey":"pl181","X":538,"Y":385},{"Bonus":0,"Continent":"K54","ID":5291,"Name":"(014)","PlayerID":9236866,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5291","ServerKey":"pl181","X":419,"Y":536},{"Bonus":0,"Continent":"K55","ID":5292,"Name":"Szlachcic 049","PlayerID":758104,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5292","ServerKey":"pl181","X":567,"Y":531},{"Bonus":0,"Continent":"K45","ID":5293,"Name":"015","PlayerID":849070464,"Points":4371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5293","ServerKey":"pl181","X":564,"Y":486},{"Bonus":0,"Continent":"K55","ID":5294,"Name":"[078]","PlayerID":8000875,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5294","ServerKey":"pl181","X":525,"Y":539},{"Bonus":0,"Continent":"K44","ID":5295,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5295","ServerKey":"pl181","X":443,"Y":469},{"Bonus":0,"Continent":"K45","ID":5296,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5296","ServerKey":"pl181","X":525,"Y":438},{"Bonus":0,"Continent":"K45","ID":5297,"Name":"Joms 016","PlayerID":699756210,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5297","ServerKey":"pl181","X":519,"Y":418},{"Bonus":0,"Continent":"K54","ID":5298,"Name":"028","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5298","ServerKey":"pl181","X":420,"Y":518},{"Bonus":0,"Continent":"K45","ID":5299,"Name":"A050","PlayerID":699299123,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5299","ServerKey":"pl181","X":501,"Y":428},{"Bonus":0,"Continent":"K44","ID":5300,"Name":"Monetki","PlayerID":699098531,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5300","ServerKey":"pl181","X":473,"Y":418},{"Bonus":0,"Continent":"K54","ID":5301,"Name":"Fajna008","PlayerID":8539216,"Points":2025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5301","ServerKey":"pl181","X":464,"Y":571},{"Bonus":0,"Continent":"K44","ID":5302,"Name":"SoƂtys Wsi Dejvvvvv","PlayerID":849027025,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5302","ServerKey":"pl181","X":441,"Y":416},{"Bonus":0,"Continent":"K55","ID":5303,"Name":"Wioska barbarzyƄska","PlayerID":8925695,"Points":5127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5303","ServerKey":"pl181","X":583,"Y":500},{"Bonus":0,"Continent":"K45","ID":5305,"Name":".:087:.JuanPabloII","PlayerID":848934935,"Points":6962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5305","ServerKey":"pl181","X":541,"Y":443},{"Bonus":8,"Continent":"K44","ID":5307,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5307","ServerKey":"pl181","X":426,"Y":464},{"Bonus":0,"Continent":"K54","ID":5308,"Name":"#0052 Traumon","PlayerID":9272054,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5308","ServerKey":"pl181","X":488,"Y":557},{"Bonus":0,"Continent":"K54","ID":5309,"Name":"KIELBA 105","PlayerID":699342219,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5309","ServerKey":"pl181","X":454,"Y":574},{"Bonus":0,"Continent":"K55","ID":5311,"Name":"!Wioska 405","PlayerID":477415,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5311","ServerKey":"pl181","X":564,"Y":513},{"Bonus":0,"Continent":"K43","ID":5312,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5312","ServerKey":"pl181","X":379,"Y":496},{"Bonus":0,"Continent":"K55","ID":5313,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5313","ServerKey":"pl181","X":517,"Y":523},{"Bonus":0,"Continent":"K55","ID":5314,"Name":"056 |","PlayerID":8000875,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5314","ServerKey":"pl181","X":549,"Y":501},{"Bonus":0,"Continent":"K44","ID":5315,"Name":"[A]_[038] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5315","ServerKey":"pl181","X":408,"Y":483},{"Bonus":0,"Continent":"K44","ID":5316,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5316","ServerKey":"pl181","X":475,"Y":444},{"Bonus":0,"Continent":"K64","ID":5317,"Name":"002. Zwiadowcy","PlayerID":7976264,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5317","ServerKey":"pl181","X":480,"Y":601},{"Bonus":0,"Continent":"K45","ID":5318,"Name":"C035","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5318","ServerKey":"pl181","X":529,"Y":458},{"Bonus":0,"Continent":"K54","ID":5319,"Name":"Gratuluje mĂłzgu","PlayerID":699698253,"Points":5917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5319","ServerKey":"pl181","X":451,"Y":538},{"Bonus":1,"Continent":"K55","ID":5320,"Name":"kek","PlayerID":848967710,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5320","ServerKey":"pl181","X":537,"Y":516},{"Bonus":0,"Continent":"K54","ID":5321,"Name":"NOT?","PlayerID":9236866,"Points":6425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5321","ServerKey":"pl181","X":429,"Y":544},{"Bonus":0,"Continent":"K54","ID":5322,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5322","ServerKey":"pl181","X":488,"Y":545},{"Bonus":0,"Continent":"K55","ID":5323,"Name":"JaamMwG 030","PlayerID":848987051,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5323","ServerKey":"pl181","X":523,"Y":514},{"Bonus":0,"Continent":"K45","ID":5324,"Name":"Wioska kinia 20","PlayerID":699127546,"Points":4925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5324","ServerKey":"pl181","X":540,"Y":483},{"Bonus":0,"Continent":"K44","ID":5325,"Name":"00621 Wioska","PlayerID":3909522,"Points":7366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5325","ServerKey":"pl181","X":442,"Y":436},{"Bonus":0,"Continent":"K45","ID":5326,"Name":".:003:. Chillout","PlayerID":848934935,"Points":8597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5326","ServerKey":"pl181","X":513,"Y":406},{"Bonus":0,"Continent":"K44","ID":5327,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5327","ServerKey":"pl181","X":494,"Y":443},{"Bonus":0,"Continent":"K54","ID":5328,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5328","ServerKey":"pl181","X":454,"Y":509},{"Bonus":0,"Continent":"K55","ID":5329,"Name":"Szlachcic 018","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5329","ServerKey":"pl181","X":553,"Y":526},{"Bonus":0,"Continent":"K56","ID":5330,"Name":"002. BAKAJOKO","PlayerID":8900955,"Points":6736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5330","ServerKey":"pl181","X":611,"Y":541},{"Bonus":0,"Continent":"K45","ID":5331,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":8396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5331","ServerKey":"pl181","X":548,"Y":468},{"Bonus":0,"Continent":"K45","ID":5332,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5332","ServerKey":"pl181","X":538,"Y":422},{"Bonus":0,"Continent":"K45","ID":5333,"Name":"019","PlayerID":8155296,"Points":8664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5333","ServerKey":"pl181","X":532,"Y":465},{"Bonus":0,"Continent":"K54","ID":5334,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5334","ServerKey":"pl181","X":445,"Y":562},{"Bonus":0,"Continent":"K54","ID":5335,"Name":"Kasyno","PlayerID":7249451,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5335","ServerKey":"pl181","X":447,"Y":517},{"Bonus":0,"Continent":"K54","ID":5336,"Name":"Front_36","PlayerID":2585846,"Points":2221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5336","ServerKey":"pl181","X":457,"Y":522},{"Bonus":0,"Continent":"K54","ID":5337,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5337","ServerKey":"pl181","X":450,"Y":560},{"Bonus":0,"Continent":"K44","ID":5338,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5338","ServerKey":"pl181","X":464,"Y":435},{"Bonus":0,"Continent":"K45","ID":5339,"Name":".achim.","PlayerID":6936607,"Points":7914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5339","ServerKey":"pl181","X":531,"Y":455},{"Bonus":0,"Continent":"K44","ID":5340,"Name":"Suppi","PlayerID":699856962,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5340","ServerKey":"pl181","X":425,"Y":449},{"Bonus":0,"Continent":"K45","ID":5341,"Name":"ADEN","PlayerID":698588535,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5341","ServerKey":"pl181","X":563,"Y":443},{"Bonus":0,"Continent":"K45","ID":5342,"Name":"Czujnoƛć to podstawa","PlayerID":848985692,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5342","ServerKey":"pl181","X":593,"Y":434},{"Bonus":0,"Continent":"K45","ID":5343,"Name":"046.","PlayerID":8788366,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5343","ServerKey":"pl181","X":504,"Y":487},{"Bonus":0,"Continent":"K45","ID":5344,"Name":"HELMOWY RAJ","PlayerID":8155296,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5344","ServerKey":"pl181","X":533,"Y":470},{"Bonus":0,"Continent":"K54","ID":5345,"Name":"024","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5345","ServerKey":"pl181","X":415,"Y":523},{"Bonus":0,"Continent":"K35","ID":5346,"Name":"124","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5346","ServerKey":"pl181","X":548,"Y":386},{"Bonus":0,"Continent":"K54","ID":5347,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5347","ServerKey":"pl181","X":453,"Y":504},{"Bonus":5,"Continent":"K54","ID":5348,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5348","ServerKey":"pl181","X":424,"Y":520},{"Bonus":0,"Continent":"K45","ID":5349,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5349","ServerKey":"pl181","X":525,"Y":404},{"Bonus":0,"Continent":"K45","ID":5350,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5350","ServerKey":"pl181","X":518,"Y":495},{"Bonus":0,"Continent":"K54","ID":5351,"Name":"Wioska barbarzyƄska","PlayerID":849028088,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5351","ServerKey":"pl181","X":435,"Y":586},{"Bonus":0,"Continent":"K45","ID":5352,"Name":"MasteroN 06","PlayerID":699379895,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5352","ServerKey":"pl181","X":568,"Y":445},{"Bonus":0,"Continent":"K56","ID":5353,"Name":"Gryfios 002","PlayerID":698666810,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5353","ServerKey":"pl181","X":615,"Y":538},{"Bonus":0,"Continent":"K55","ID":5354,"Name":"0025","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5354","ServerKey":"pl181","X":530,"Y":516},{"Bonus":0,"Continent":"K35","ID":5355,"Name":"003. Novigrad","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5355","ServerKey":"pl181","X":562,"Y":397},{"Bonus":0,"Continent":"K45","ID":5356,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5356","ServerKey":"pl181","X":567,"Y":492},{"Bonus":0,"Continent":"K54","ID":5357,"Name":"Kasyno","PlayerID":7249451,"Points":6843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5357","ServerKey":"pl181","X":442,"Y":503},{"Bonus":0,"Continent":"K54","ID":5358,"Name":"NOT?","PlayerID":9236866,"Points":9921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5358","ServerKey":"pl181","X":425,"Y":544},{"Bonus":0,"Continent":"K54","ID":5359,"Name":"*Ateny_26","PlayerID":2585846,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5359","ServerKey":"pl181","X":474,"Y":522},{"Bonus":0,"Continent":"K45","ID":5360,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5360","ServerKey":"pl181","X":516,"Y":476},{"Bonus":0,"Continent":"K45","ID":5361,"Name":"-[007]- Dhaulagiri","PlayerID":849092827,"Points":8063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5361","ServerKey":"pl181","X":553,"Y":481},{"Bonus":0,"Continent":"K54","ID":5362,"Name":"NOT?","PlayerID":9236866,"Points":9029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5362","ServerKey":"pl181","X":431,"Y":541},{"Bonus":0,"Continent":"K44","ID":5363,"Name":"PRO8L3M","PlayerID":7491093,"Points":2457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5363","ServerKey":"pl181","X":432,"Y":493},{"Bonus":0,"Continent":"K54","ID":5364,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":9040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5364","ServerKey":"pl181","X":427,"Y":503},{"Bonus":5,"Continent":"K45","ID":5365,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5365","ServerKey":"pl181","X":517,"Y":476},{"Bonus":0,"Continent":"K55","ID":5366,"Name":"001","PlayerID":699194766,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5366","ServerKey":"pl181","X":558,"Y":539},{"Bonus":0,"Continent":"K44","ID":5367,"Name":"185 Baranquilla","PlayerID":1497168,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5367","ServerKey":"pl181","X":468,"Y":466},{"Bonus":0,"Continent":"K54","ID":5368,"Name":"xwqe","PlayerID":8438707,"Points":1886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5368","ServerKey":"pl181","X":455,"Y":574},{"Bonus":7,"Continent":"K45","ID":5369,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5369","ServerKey":"pl181","X":503,"Y":443},{"Bonus":0,"Continent":"K55","ID":5370,"Name":"Szlachcic 034","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5370","ServerKey":"pl181","X":561,"Y":532},{"Bonus":0,"Continent":"K45","ID":5371,"Name":"0013 MzM","PlayerID":698416970,"Points":7642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5371","ServerKey":"pl181","X":567,"Y":461},{"Bonus":0,"Continent":"K54","ID":5372,"Name":"Sparta_63","PlayerID":2585846,"Points":8174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5372","ServerKey":"pl181","X":494,"Y":597},{"Bonus":0,"Continent":"K44","ID":5373,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5373","ServerKey":"pl181","X":486,"Y":434},{"Bonus":0,"Continent":"K45","ID":5374,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5374","ServerKey":"pl181","X":517,"Y":420},{"Bonus":0,"Continent":"K55","ID":5375,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5375","ServerKey":"pl181","X":580,"Y":542},{"Bonus":0,"Continent":"K44","ID":5376,"Name":"Suppi","PlayerID":699856962,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5376","ServerKey":"pl181","X":444,"Y":447},{"Bonus":0,"Continent":"K44","ID":5377,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5377","ServerKey":"pl181","X":438,"Y":401},{"Bonus":0,"Continent":"K44","ID":5378,"Name":"00951","PlayerID":3909522,"Points":6520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5378","ServerKey":"pl181","X":458,"Y":439},{"Bonus":0,"Continent":"K35","ID":5379,"Name":"032","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5379","ServerKey":"pl181","X":565,"Y":393},{"Bonus":0,"Continent":"K55","ID":5380,"Name":"Z01 Galicznik","PlayerID":699272880,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5380","ServerKey":"pl181","X":561,"Y":515},{"Bonus":0,"Continent":"K44","ID":5381,"Name":"Monetki","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5381","ServerKey":"pl181","X":479,"Y":432},{"Bonus":0,"Continent":"K45","ID":5382,"Name":"JM1","PlayerID":699368887,"Points":7064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5382","ServerKey":"pl181","X":559,"Y":453},{"Bonus":0,"Continent":"K45","ID":5383,"Name":"Wioska BontaBom","PlayerID":1957280,"Points":4166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5383","ServerKey":"pl181","X":556,"Y":431},{"Bonus":0,"Continent":"K55","ID":5384,"Name":"[075] Vermoord jou","PlayerID":848985692,"Points":10395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5384","ServerKey":"pl181","X":529,"Y":501},{"Bonus":0,"Continent":"K44","ID":5385,"Name":"+44 72 Wacquinghen","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5385","ServerKey":"pl181","X":426,"Y":476},{"Bonus":0,"Continent":"K46","ID":5386,"Name":"002","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5386","ServerKey":"pl181","X":623,"Y":493},{"Bonus":0,"Continent":"K45","ID":5387,"Name":".:038:. Studnia","PlayerID":8649412,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5387","ServerKey":"pl181","X":512,"Y":414},{"Bonus":0,"Continent":"K45","ID":5388,"Name":"2+2x2","PlayerID":698895940,"Points":10446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5388","ServerKey":"pl181","X":509,"Y":432},{"Bonus":0,"Continent":"K45","ID":5389,"Name":"xxx","PlayerID":698239813,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5389","ServerKey":"pl181","X":522,"Y":465},{"Bonus":0,"Continent":"K54","ID":5390,"Name":"F049","PlayerID":699189792,"Points":9047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5390","ServerKey":"pl181","X":489,"Y":518},{"Bonus":0,"Continent":"K45","ID":5391,"Name":"0018|Berlin","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5391","ServerKey":"pl181","X":511,"Y":445},{"Bonus":0,"Continent":"K44","ID":5392,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5392","ServerKey":"pl181","X":498,"Y":427},{"Bonus":0,"Continent":"K45","ID":5393,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":6846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5393","ServerKey":"pl181","X":541,"Y":422},{"Bonus":0,"Continent":"K45","ID":5394,"Name":".achim.","PlayerID":6936607,"Points":6302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5394","ServerKey":"pl181","X":523,"Y":452},{"Bonus":0,"Continent":"K44","ID":5395,"Name":"Suppi","PlayerID":699856962,"Points":9565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5395","ServerKey":"pl181","X":444,"Y":454},{"Bonus":0,"Continent":"K45","ID":5396,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5396","ServerKey":"pl181","X":516,"Y":452},{"Bonus":0,"Continent":"K44","ID":5397,"Name":"0063 b12","PlayerID":3909522,"Points":5986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5397","ServerKey":"pl181","X":454,"Y":430},{"Bonus":0,"Continent":"K55","ID":5398,"Name":"Wioska iver1","PlayerID":699698253,"Points":6875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5398","ServerKey":"pl181","X":515,"Y":596},{"Bonus":0,"Continent":"K55","ID":5399,"Name":"014","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5399","ServerKey":"pl181","X":569,"Y":554},{"Bonus":0,"Continent":"K55","ID":5400,"Name":"001 Viborg","PlayerID":699272880,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5400","ServerKey":"pl181","X":599,"Y":557},{"Bonus":0,"Continent":"K54","ID":5401,"Name":"NOT?","PlayerID":9236866,"Points":2926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5401","ServerKey":"pl181","X":433,"Y":552},{"Bonus":8,"Continent":"K54","ID":5402,"Name":"010 Fiona","PlayerID":698290577,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5402","ServerKey":"pl181","X":447,"Y":509},{"Bonus":0,"Continent":"K55","ID":5403,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5403","ServerKey":"pl181","X":516,"Y":577},{"Bonus":0,"Continent":"K44","ID":5404,"Name":"Szlachcic","PlayerID":699098531,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5404","ServerKey":"pl181","X":490,"Y":475},{"Bonus":0,"Continent":"K54","ID":5405,"Name":"003","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5405","ServerKey":"pl181","X":405,"Y":543},{"Bonus":0,"Continent":"K54","ID":5406,"Name":"Warzywniak 015","PlayerID":698290577,"Points":2538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5406","ServerKey":"pl181","X":453,"Y":547},{"Bonus":0,"Continent":"K46","ID":5407,"Name":"013 Kuasta","PlayerID":8337151,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5407","ServerKey":"pl181","X":614,"Y":481},{"Bonus":0,"Continent":"K64","ID":5408,"Name":"0001","PlayerID":33900,"Points":10010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5408","ServerKey":"pl181","X":466,"Y":604},{"Bonus":0,"Continent":"K45","ID":5409,"Name":"Joms 036","PlayerID":699756210,"Points":8393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5409","ServerKey":"pl181","X":532,"Y":424},{"Bonus":8,"Continent":"K44","ID":5410,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5410","ServerKey":"pl181","X":486,"Y":486},{"Bonus":0,"Continent":"K55","ID":5411,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5411","ServerKey":"pl181","X":552,"Y":523},{"Bonus":0,"Continent":"K44","ID":5412,"Name":"00761","PlayerID":3909522,"Points":8332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5412","ServerKey":"pl181","X":449,"Y":439},{"Bonus":0,"Continent":"K45","ID":5414,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5414","ServerKey":"pl181","X":575,"Y":493},{"Bonus":0,"Continent":"K44","ID":5415,"Name":"Osada","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5415","ServerKey":"pl181","X":495,"Y":444},{"Bonus":0,"Continent":"K45","ID":5416,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5416","ServerKey":"pl181","X":579,"Y":491},{"Bonus":0,"Continent":"K54","ID":5417,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5417","ServerKey":"pl181","X":432,"Y":503},{"Bonus":0,"Continent":"K45","ID":5418,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5418","ServerKey":"pl181","X":505,"Y":444},{"Bonus":0,"Continent":"K43","ID":5419,"Name":"A0153","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5419","ServerKey":"pl181","X":381,"Y":468},{"Bonus":0,"Continent":"K54","ID":5420,"Name":"#0063 DMT","PlayerID":9272054,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5420","ServerKey":"pl181","X":496,"Y":562},{"Bonus":6,"Continent":"K45","ID":5421,"Name":".:010:. Chillout","PlayerID":848934935,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5421","ServerKey":"pl181","X":502,"Y":414},{"Bonus":0,"Continent":"K54","ID":5422,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5422","ServerKey":"pl181","X":498,"Y":571},{"Bonus":0,"Continent":"K54","ID":5423,"Name":"003. ALFI","PlayerID":8539216,"Points":1323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5423","ServerKey":"pl181","X":472,"Y":568},{"Bonus":0,"Continent":"K54","ID":5424,"Name":"Wioska barbarzyƄska","PlayerID":3909522,"Points":1811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5424","ServerKey":"pl181","X":451,"Y":532},{"Bonus":0,"Continent":"K54","ID":5425,"Name":"NOT?","PlayerID":9236866,"Points":8188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5425","ServerKey":"pl181","X":427,"Y":532},{"Bonus":0,"Continent":"K44","ID":5426,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5426","ServerKey":"pl181","X":426,"Y":448},{"Bonus":0,"Continent":"K55","ID":5427,"Name":"023. Wioska kaszak10","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5427","ServerKey":"pl181","X":579,"Y":511},{"Bonus":0,"Continent":"K55","ID":5428,"Name":"Szlachcic 048","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5428","ServerKey":"pl181","X":574,"Y":515},{"Bonus":0,"Continent":"K45","ID":5429,"Name":"#12.","PlayerID":848967710,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5429","ServerKey":"pl181","X":519,"Y":465},{"Bonus":3,"Continent":"K44","ID":5430,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5430","ServerKey":"pl181","X":452,"Y":498},{"Bonus":0,"Continent":"K45","ID":5431,"Name":"13 | Rozbojowisko","PlayerID":849002091,"Points":8286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5431","ServerKey":"pl181","X":537,"Y":435},{"Bonus":0,"Continent":"K54","ID":5432,"Name":"Front_32","PlayerID":2585846,"Points":6640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5432","ServerKey":"pl181","X":453,"Y":519},{"Bonus":0,"Continent":"K55","ID":5433,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5433","ServerKey":"pl181","X":581,"Y":540},{"Bonus":0,"Continent":"K54","ID":5434,"Name":"KIELBA 104","PlayerID":699342219,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5434","ServerKey":"pl181","X":452,"Y":569},{"Bonus":0,"Continent":"K54","ID":5435,"Name":"SsSs","PlayerID":1536625,"Points":7058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5435","ServerKey":"pl181","X":464,"Y":502},{"Bonus":0,"Continent":"K45","ID":5436,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":10425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5436","ServerKey":"pl181","X":584,"Y":465},{"Bonus":0,"Continent":"K55","ID":5438,"Name":"P.033","PlayerID":873575,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5438","ServerKey":"pl181","X":544,"Y":559},{"Bonus":0,"Continent":"K44","ID":5439,"Name":"Zeta Reticuli 0S","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5439","ServerKey":"pl181","X":417,"Y":420},{"Bonus":0,"Continent":"K45","ID":5440,"Name":"xxx","PlayerID":698239813,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5440","ServerKey":"pl181","X":503,"Y":447},{"Bonus":0,"Continent":"K44","ID":5441,"Name":"0063 b16qqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5441","ServerKey":"pl181","X":454,"Y":431},{"Bonus":0,"Continent":"K44","ID":5442,"Name":"B061","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5442","ServerKey":"pl181","X":473,"Y":465},{"Bonus":0,"Continent":"K54","ID":5443,"Name":"#0006 ToĆŒsamoƛć","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5443","ServerKey":"pl181","X":492,"Y":549},{"Bonus":0,"Continent":"K54","ID":5444,"Name":"NOT?","PlayerID":9236866,"Points":6022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5444","ServerKey":"pl181","X":437,"Y":530},{"Bonus":0,"Continent":"K45","ID":5445,"Name":"183","PlayerID":849064752,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5445","ServerKey":"pl181","X":562,"Y":437},{"Bonus":0,"Continent":"K45","ID":5446,"Name":"113.","PlayerID":8788366,"Points":6555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5446","ServerKey":"pl181","X":531,"Y":485},{"Bonus":0,"Continent":"K55","ID":5447,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5447","ServerKey":"pl181","X":527,"Y":553},{"Bonus":0,"Continent":"K54","ID":5448,"Name":"NOT?","PlayerID":9236866,"Points":8649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5448","ServerKey":"pl181","X":428,"Y":530},{"Bonus":0,"Continent":"K45","ID":5449,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5449","ServerKey":"pl181","X":573,"Y":488},{"Bonus":0,"Continent":"K54","ID":5450,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5450","ServerKey":"pl181","X":480,"Y":534},{"Bonus":0,"Continent":"K54","ID":5451,"Name":"Fajna 021","PlayerID":699868002,"Points":1616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5451","ServerKey":"pl181","X":450,"Y":551},{"Bonus":0,"Continent":"K45","ID":5452,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5452","ServerKey":"pl181","X":510,"Y":449},{"Bonus":6,"Continent":"K54","ID":5453,"Name":"Osada koczownikĂłw","PlayerID":7581876,"Points":8908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5453","ServerKey":"pl181","X":492,"Y":534},{"Bonus":0,"Continent":"K45","ID":5454,"Name":".achim.","PlayerID":6936607,"Points":8091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5454","ServerKey":"pl181","X":540,"Y":462},{"Bonus":0,"Continent":"K44","ID":5455,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5455","ServerKey":"pl181","X":488,"Y":462},{"Bonus":0,"Continent":"K44","ID":5456,"Name":"+44 72 Villeurbanne Cusset","PlayerID":698361257,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5456","ServerKey":"pl181","X":429,"Y":472},{"Bonus":0,"Continent":"K45","ID":5457,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5457","ServerKey":"pl181","X":549,"Y":442},{"Bonus":0,"Continent":"K55","ID":5458,"Name":"Dioda v2","PlayerID":8649412,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5458","ServerKey":"pl181","X":539,"Y":520},{"Bonus":0,"Continent":"K44","ID":5459,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5459","ServerKey":"pl181","X":452,"Y":494},{"Bonus":0,"Continent":"K45","ID":5460,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5460","ServerKey":"pl181","X":570,"Y":452},{"Bonus":0,"Continent":"K44","ID":5461,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5461","ServerKey":"pl181","X":495,"Y":439},{"Bonus":0,"Continent":"K45","ID":5462,"Name":"Nottingham","PlayerID":699368887,"Points":5169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5462","ServerKey":"pl181","X":554,"Y":445},{"Bonus":0,"Continent":"K53","ID":5463,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5463","ServerKey":"pl181","X":385,"Y":513},{"Bonus":0,"Continent":"K54","ID":5464,"Name":"080. ALFI","PlayerID":8539216,"Points":1864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5464","ServerKey":"pl181","X":480,"Y":557},{"Bonus":0,"Continent":"K54","ID":5466,"Name":"F057","PlayerID":699189792,"Points":9399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5466","ServerKey":"pl181","X":494,"Y":522},{"Bonus":0,"Continent":"K45","ID":5467,"Name":"016","PlayerID":849070464,"Points":4313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5467","ServerKey":"pl181","X":568,"Y":483},{"Bonus":0,"Continent":"K54","ID":5468,"Name":"SsSs","PlayerID":1536625,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5468","ServerKey":"pl181","X":438,"Y":503},{"Bonus":0,"Continent":"K55","ID":5469,"Name":"#050","PlayerID":849001572,"Points":7354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5469","ServerKey":"pl181","X":524,"Y":588},{"Bonus":0,"Continent":"K55","ID":5470,"Name":"ladyanima","PlayerID":699703642,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5470","ServerKey":"pl181","X":513,"Y":577},{"Bonus":0,"Continent":"K45","ID":5471,"Name":"Szlachcic","PlayerID":698867446,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5471","ServerKey":"pl181","X":557,"Y":492},{"Bonus":0,"Continent":"K45","ID":5472,"Name":"DARMA TUTEK101MZMNIEUMIECZYTAĆ","PlayerID":8925695,"Points":7414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5472","ServerKey":"pl181","X":585,"Y":495},{"Bonus":0,"Continent":"K54","ID":5473,"Name":"Wioska 001","PlayerID":7976264,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5473","ServerKey":"pl181","X":491,"Y":594},{"Bonus":0,"Continent":"K44","ID":5474,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5474","ServerKey":"pl181","X":474,"Y":429},{"Bonus":0,"Continent":"K54","ID":5475,"Name":"C 011 D.GĂłrnicza","PlayerID":849084740,"Points":9920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5475","ServerKey":"pl181","X":413,"Y":579},{"Bonus":0,"Continent":"K54","ID":5476,"Name":"Sparta_38","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5476","ServerKey":"pl181","X":483,"Y":576},{"Bonus":0,"Continent":"K55","ID":5477,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5477","ServerKey":"pl181","X":557,"Y":507},{"Bonus":0,"Continent":"K45","ID":5478,"Name":"slow","PlayerID":848967710,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5478","ServerKey":"pl181","X":534,"Y":488},{"Bonus":0,"Continent":"K44","ID":5479,"Name":"0082","PlayerID":3909522,"Points":10453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5479","ServerKey":"pl181","X":444,"Y":443},{"Bonus":0,"Continent":"K45","ID":5480,"Name":"x09","PlayerID":8459255,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5480","ServerKey":"pl181","X":558,"Y":476},{"Bonus":4,"Continent":"K44","ID":5481,"Name":"Monetki","PlayerID":699098531,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5481","ServerKey":"pl181","X":479,"Y":423},{"Bonus":0,"Continent":"K55","ID":5482,"Name":"CALL 964","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5482","ServerKey":"pl181","X":542,"Y":547},{"Bonus":0,"Continent":"K55","ID":5483,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5483","ServerKey":"pl181","X":569,"Y":516},{"Bonus":0,"Continent":"K55","ID":5484,"Name":"016. Wioska Ronin1995","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5484","ServerKey":"pl181","X":568,"Y":515},{"Bonus":0,"Continent":"K64","ID":5485,"Name":"036.","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5485","ServerKey":"pl181","X":490,"Y":622},{"Bonus":0,"Continent":"K45","ID":5486,"Name":"Joms 019","PlayerID":699756210,"Points":9775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5486","ServerKey":"pl181","X":531,"Y":416},{"Bonus":0,"Continent":"K54","ID":5487,"Name":"*Ateny_39","PlayerID":699333701,"Points":5121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5487","ServerKey":"pl181","X":465,"Y":523},{"Bonus":0,"Continent":"K45","ID":5488,"Name":"KoƄczyć czas:)","PlayerID":699368887,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5488","ServerKey":"pl181","X":550,"Y":445},{"Bonus":0,"Continent":"K54","ID":5489,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5489","ServerKey":"pl181","X":477,"Y":562},{"Bonus":0,"Continent":"K54","ID":5490,"Name":"Ondulina","PlayerID":699443920,"Points":8876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5490","ServerKey":"pl181","X":444,"Y":556},{"Bonus":0,"Continent":"K54","ID":5491,"Name":"010. Topielica","PlayerID":699703642,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5491","ServerKey":"pl181","X":496,"Y":584},{"Bonus":0,"Continent":"K54","ID":5492,"Name":"073. ALFI","PlayerID":8539216,"Points":1874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5492","ServerKey":"pl181","X":488,"Y":561},{"Bonus":0,"Continent":"K45","ID":5493,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5493","ServerKey":"pl181","X":545,"Y":476},{"Bonus":0,"Continent":"K54","ID":5494,"Name":"Kasyno","PlayerID":7249451,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5494","ServerKey":"pl181","X":447,"Y":515},{"Bonus":0,"Continent":"K54","ID":5495,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5495","ServerKey":"pl181","X":462,"Y":558},{"Bonus":1,"Continent":"K55","ID":5496,"Name":"005","PlayerID":699194766,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5496","ServerKey":"pl181","X":561,"Y":542},{"Bonus":0,"Continent":"K45","ID":5497,"Name":"#06.","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5497","ServerKey":"pl181","X":526,"Y":478},{"Bonus":0,"Continent":"K55","ID":5498,"Name":"[092]","PlayerID":8000875,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5498","ServerKey":"pl181","X":560,"Y":541},{"Bonus":0,"Continent":"K54","ID":5499,"Name":"0181","PlayerID":698659980,"Points":8776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5499","ServerKey":"pl181","X":474,"Y":547},{"Bonus":0,"Continent":"K45","ID":5500,"Name":"006 Plac Wilsona","PlayerID":849083501,"Points":5701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5500","ServerKey":"pl181","X":535,"Y":476},{"Bonus":0,"Continent":"K44","ID":5501,"Name":"7.62 mm","PlayerID":699777234,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5501","ServerKey":"pl181","X":465,"Y":449},{"Bonus":0,"Continent":"K45","ID":5502,"Name":"Marienburg 9","PlayerID":699355601,"Points":8821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5502","ServerKey":"pl181","X":532,"Y":479},{"Bonus":0,"Continent":"K54","ID":5503,"Name":"KIELBA 033","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5503","ServerKey":"pl181","X":454,"Y":573},{"Bonus":0,"Continent":"K45","ID":5504,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5504","ServerKey":"pl181","X":572,"Y":492},{"Bonus":0,"Continent":"K54","ID":5505,"Name":"*Ateny_28","PlayerID":699333701,"Points":5270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5505","ServerKey":"pl181","X":466,"Y":522},{"Bonus":0,"Continent":"K45","ID":5506,"Name":"112 Fuga","PlayerID":7092442,"Points":8972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5506","ServerKey":"pl181","X":541,"Y":453},{"Bonus":0,"Continent":"K44","ID":5507,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5507","ServerKey":"pl181","X":423,"Y":486},{"Bonus":0,"Continent":"K44","ID":5508,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5508","ServerKey":"pl181","X":468,"Y":477},{"Bonus":0,"Continent":"K55","ID":5509,"Name":"[005] Hil zaitez","PlayerID":848985692,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5509","ServerKey":"pl181","X":586,"Y":522},{"Bonus":0,"Continent":"K55","ID":5510,"Name":"[027] K D","PlayerID":848985692,"Points":10013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5510","ServerKey":"pl181","X":584,"Y":522},{"Bonus":0,"Continent":"K45","ID":5511,"Name":"Szlachcic","PlayerID":698867446,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5511","ServerKey":"pl181","X":552,"Y":486},{"Bonus":0,"Continent":"K56","ID":5512,"Name":"0056","PlayerID":6510480,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5512","ServerKey":"pl181","X":605,"Y":512},{"Bonus":0,"Continent":"K55","ID":5513,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5513","ServerKey":"pl181","X":569,"Y":539},{"Bonus":0,"Continent":"K44","ID":5514,"Name":"+44 72 Vaulx en Velin","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5514","ServerKey":"pl181","X":428,"Y":472},{"Bonus":0,"Continent":"K45","ID":5515,"Name":"[054] pa ZZI BEST dude","PlayerID":848985692,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5515","ServerKey":"pl181","X":541,"Y":486},{"Bonus":1,"Continent":"K44","ID":5516,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5516","ServerKey":"pl181","X":449,"Y":456},{"Bonus":0,"Continent":"K54","ID":5517,"Name":"Brat447","PlayerID":699262350,"Points":5177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5517","ServerKey":"pl181","X":460,"Y":507},{"Bonus":0,"Continent":"K55","ID":5518,"Name":"[025] Wanuchiy QAN","PlayerID":848985692,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5518","ServerKey":"pl181","X":584,"Y":521},{"Bonus":9,"Continent":"K54","ID":5519,"Name":"0005","PlayerID":1536625,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5519","ServerKey":"pl181","X":458,"Y":504},{"Bonus":0,"Continent":"K54","ID":5520,"Name":"Warzywniak 011","PlayerID":698290577,"Points":2576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5520","ServerKey":"pl181","X":443,"Y":546},{"Bonus":0,"Continent":"K54","ID":5521,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":4618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5521","ServerKey":"pl181","X":451,"Y":512},{"Bonus":0,"Continent":"K45","ID":5522,"Name":"Wioska Matiyyy","PlayerID":699432672,"Points":3692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5522","ServerKey":"pl181","X":557,"Y":494},{"Bonus":0,"Continent":"K55","ID":5523,"Name":"11*szpica","PlayerID":699664910,"Points":7479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5523","ServerKey":"pl181","X":560,"Y":527},{"Bonus":7,"Continent":"K45","ID":5524,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5524","ServerKey":"pl181","X":524,"Y":473},{"Bonus":0,"Continent":"K54","ID":5525,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5525","ServerKey":"pl181","X":498,"Y":589},{"Bonus":0,"Continent":"K44","ID":5526,"Name":"B042","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5526","ServerKey":"pl181","X":485,"Y":467},{"Bonus":0,"Continent":"K54","ID":5527,"Name":"Stage group B 7","PlayerID":699856962,"Points":8994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5527","ServerKey":"pl181","X":437,"Y":532},{"Bonus":0,"Continent":"K55","ID":5528,"Name":"20020","PlayerID":848915531,"Points":7021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5528","ServerKey":"pl181","X":503,"Y":547},{"Bonus":0,"Continent":"K45","ID":5529,"Name":"056","PlayerID":7271812,"Points":7528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5529","ServerKey":"pl181","X":545,"Y":421},{"Bonus":0,"Continent":"K54","ID":5530,"Name":"NOT?","PlayerID":9236866,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5530","ServerKey":"pl181","X":433,"Y":527},{"Bonus":0,"Continent":"K55","ID":5531,"Name":"Szlachcic","PlayerID":699759128,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5531","ServerKey":"pl181","X":584,"Y":510},{"Bonus":0,"Continent":"K44","ID":5532,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5532","ServerKey":"pl181","X":439,"Y":494},{"Bonus":0,"Continent":"K56","ID":5533,"Name":"rakieta 019","PlayerID":848928486,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5533","ServerKey":"pl181","X":618,"Y":537},{"Bonus":0,"Continent":"K45","ID":5534,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5534","ServerKey":"pl181","X":547,"Y":469},{"Bonus":0,"Continent":"K44","ID":5535,"Name":"0081","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5535","ServerKey":"pl181","X":441,"Y":402},{"Bonus":0,"Continent":"K45","ID":5536,"Name":"Gattacka","PlayerID":699298370,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5536","ServerKey":"pl181","X":574,"Y":498},{"Bonus":0,"Continent":"K44","ID":5537,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5537","ServerKey":"pl181","X":468,"Y":420},{"Bonus":0,"Continent":"K55","ID":5538,"Name":"020. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5538","ServerKey":"pl181","X":573,"Y":527},{"Bonus":0,"Continent":"K45","ID":5539,"Name":"[084]","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5539","ServerKey":"pl181","X":541,"Y":494},{"Bonus":0,"Continent":"K44","ID":5540,"Name":"Brat447","PlayerID":699262350,"Points":8903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5540","ServerKey":"pl181","X":439,"Y":492},{"Bonus":0,"Continent":"K44","ID":5541,"Name":"Suppi","PlayerID":699856962,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5541","ServerKey":"pl181","X":433,"Y":451},{"Bonus":0,"Continent":"K55","ID":5542,"Name":"0059","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5542","ServerKey":"pl181","X":508,"Y":515},{"Bonus":0,"Continent":"K45","ID":5543,"Name":"A061","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5543","ServerKey":"pl181","X":504,"Y":424},{"Bonus":0,"Continent":"K55","ID":5544,"Name":"K55","PlayerID":698867483,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5544","ServerKey":"pl181","X":527,"Y":529},{"Bonus":0,"Continent":"K44","ID":5545,"Name":"B055","PlayerID":699299123,"Points":10271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5545","ServerKey":"pl181","X":478,"Y":470},{"Bonus":0,"Continent":"K53","ID":5546,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5546","ServerKey":"pl181","X":382,"Y":507},{"Bonus":0,"Continent":"K55","ID":5547,"Name":"007.","PlayerID":699695167,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5547","ServerKey":"pl181","X":524,"Y":557},{"Bonus":0,"Continent":"K45","ID":5548,"Name":"14 | ƚląsk","PlayerID":849002091,"Points":5141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5548","ServerKey":"pl181","X":537,"Y":431},{"Bonus":0,"Continent":"K55","ID":5549,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5549","ServerKey":"pl181","X":533,"Y":544},{"Bonus":0,"Continent":"K55","ID":5550,"Name":"[184]","PlayerID":848985692,"Points":8021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5550","ServerKey":"pl181","X":549,"Y":506},{"Bonus":0,"Continent":"K53","ID":5551,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5551","ServerKey":"pl181","X":397,"Y":535},{"Bonus":0,"Continent":"K54","ID":5552,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5552","ServerKey":"pl181","X":482,"Y":538},{"Bonus":0,"Continent":"K44","ID":5553,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5553","ServerKey":"pl181","X":498,"Y":433},{"Bonus":0,"Continent":"K55","ID":5554,"Name":"Winter is coming","PlayerID":699364813,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5554","ServerKey":"pl181","X":507,"Y":583},{"Bonus":0,"Continent":"K55","ID":5555,"Name":"0006","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5555","ServerKey":"pl181","X":536,"Y":532},{"Bonus":0,"Continent":"K54","ID":5556,"Name":"~058.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5556","ServerKey":"pl181","X":487,"Y":542},{"Bonus":2,"Continent":"K54","ID":5557,"Name":"017. ALFI","PlayerID":8539216,"Points":1421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5557","ServerKey":"pl181","X":477,"Y":566},{"Bonus":0,"Continent":"K45","ID":5558,"Name":"BBB","PlayerID":1006847,"Points":11228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5558","ServerKey":"pl181","X":562,"Y":412},{"Bonus":0,"Continent":"K54","ID":5559,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5559","ServerKey":"pl181","X":414,"Y":511},{"Bonus":0,"Continent":"K54","ID":5560,"Name":"#0025 Oskar","PlayerID":9272054,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5560","ServerKey":"pl181","X":491,"Y":569},{"Bonus":0,"Continent":"K55","ID":5561,"Name":"Mzm42","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5561","ServerKey":"pl181","X":566,"Y":520},{"Bonus":0,"Continent":"K55","ID":5562,"Name":"0008","PlayerID":698599365,"Points":9940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5562","ServerKey":"pl181","X":505,"Y":500},{"Bonus":0,"Continent":"K45","ID":5563,"Name":"Leicester","PlayerID":849002091,"Points":4796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5563","ServerKey":"pl181","X":549,"Y":440},{"Bonus":0,"Continent":"K44","ID":5564,"Name":"00702","PlayerID":3909522,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5564","ServerKey":"pl181","X":451,"Y":441},{"Bonus":0,"Continent":"K45","ID":5565,"Name":"Wioska 510","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5565","ServerKey":"pl181","X":579,"Y":459},{"Bonus":0,"Continent":"K44","ID":5566,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5566","ServerKey":"pl181","X":483,"Y":436},{"Bonus":0,"Continent":"K44","ID":5567,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5567","ServerKey":"pl181","X":485,"Y":472},{"Bonus":0,"Continent":"K44","ID":5568,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5568","ServerKey":"pl181","X":499,"Y":413},{"Bonus":0,"Continent":"K44","ID":5569,"Name":"K44 013","PlayerID":698290577,"Points":7594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5569","ServerKey":"pl181","X":433,"Y":486},{"Bonus":7,"Continent":"K54","ID":5570,"Name":"~040.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5570","ServerKey":"pl181","X":481,"Y":550},{"Bonus":0,"Continent":"K44","ID":5571,"Name":"035 Atlanta","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5571","ServerKey":"pl181","X":441,"Y":470},{"Bonus":0,"Continent":"K54","ID":5572,"Name":"Sparta_48","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5572","ServerKey":"pl181","X":485,"Y":574},{"Bonus":0,"Continent":"K45","ID":5573,"Name":"090 Kazachstan","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5573","ServerKey":"pl181","X":576,"Y":462},{"Bonus":0,"Continent":"K55","ID":5574,"Name":"Everest","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5574","ServerKey":"pl181","X":542,"Y":535},{"Bonus":0,"Continent":"K45","ID":5575,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5575","ServerKey":"pl181","X":587,"Y":481},{"Bonus":0,"Continent":"K45","ID":5576,"Name":"C017","PlayerID":699299123,"Points":8832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5576","ServerKey":"pl181","X":524,"Y":462},{"Bonus":0,"Continent":"K44","ID":5577,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5577","ServerKey":"pl181","X":494,"Y":462},{"Bonus":0,"Continent":"K44","ID":5578,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5578","ServerKey":"pl181","X":431,"Y":461},{"Bonus":0,"Continent":"K45","ID":5580,"Name":"D05","PlayerID":8649412,"Points":7883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5580","ServerKey":"pl181","X":547,"Y":464},{"Bonus":0,"Continent":"K45","ID":5581,"Name":"xxx","PlayerID":698239813,"Points":7171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5581","ServerKey":"pl181","X":509,"Y":469},{"Bonus":0,"Continent":"K44","ID":5582,"Name":"0062 Wioska","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5582","ServerKey":"pl181","X":443,"Y":436},{"Bonus":0,"Continent":"K45","ID":5583,"Name":".achim.","PlayerID":6936607,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5583","ServerKey":"pl181","X":516,"Y":485},{"Bonus":0,"Continent":"K43","ID":5584,"Name":"Knowhere","PlayerID":699723284,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5584","ServerKey":"pl181","X":389,"Y":496},{"Bonus":0,"Continent":"K54","ID":5585,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5585","ServerKey":"pl181","X":485,"Y":504},{"Bonus":0,"Continent":"K55","ID":5586,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5586","ServerKey":"pl181","X":526,"Y":574},{"Bonus":0,"Continent":"K45","ID":5587,"Name":"Wioska X","PlayerID":699368887,"Points":4245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5587","ServerKey":"pl181","X":543,"Y":450},{"Bonus":0,"Continent":"K55","ID":5588,"Name":"Wioska 404","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5588","ServerKey":"pl181","X":565,"Y":514},{"Bonus":0,"Continent":"K55","ID":5589,"Name":"003","PlayerID":8191129,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5589","ServerKey":"pl181","X":524,"Y":518},{"Bonus":0,"Continent":"K54","ID":5590,"Name":"Fajna 024","PlayerID":699868002,"Points":2549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5590","ServerKey":"pl181","X":448,"Y":548},{"Bonus":0,"Continent":"K55","ID":5591,"Name":"CALL 1035","PlayerID":699784536,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5591","ServerKey":"pl181","X":545,"Y":555},{"Bonus":0,"Continent":"K55","ID":5592,"Name":"002. Wioska Exano","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5592","ServerKey":"pl181","X":553,"Y":514},{"Bonus":0,"Continent":"K55","ID":5593,"Name":"CALL 973","PlayerID":699784536,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5593","ServerKey":"pl181","X":544,"Y":571},{"Bonus":2,"Continent":"K54","ID":5594,"Name":"NOT FOR YOU","PlayerID":9236866,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5594","ServerKey":"pl181","X":459,"Y":553},{"Bonus":0,"Continent":"K55","ID":5595,"Name":"ZBIE","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5595","ServerKey":"pl181","X":598,"Y":574},{"Bonus":5,"Continent":"K44","ID":5596,"Name":"016 Orlando","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5596","ServerKey":"pl181","X":443,"Y":471},{"Bonus":0,"Continent":"K45","ID":5598,"Name":"Kapitan_BƂąd","PlayerID":699368887,"Points":7903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5598","ServerKey":"pl181","X":557,"Y":454},{"Bonus":0,"Continent":"K44","ID":5599,"Name":"00821","PlayerID":3909522,"Points":6081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5599","ServerKey":"pl181","X":442,"Y":443},{"Bonus":0,"Continent":"K54","ID":5600,"Name":"FF006","PlayerID":699189792,"Points":6234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5600","ServerKey":"pl181","X":464,"Y":516},{"Bonus":5,"Continent":"K55","ID":5601,"Name":"Szlachcic 004","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5601","ServerKey":"pl181","X":561,"Y":533},{"Bonus":0,"Continent":"K45","ID":5602,"Name":"BBB","PlayerID":1006847,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5602","ServerKey":"pl181","X":579,"Y":442},{"Bonus":0,"Continent":"K55","ID":5603,"Name":"005. RusaƂka","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5603","ServerKey":"pl181","X":507,"Y":590},{"Bonus":0,"Continent":"K54","ID":5604,"Name":"#042","PlayerID":849001572,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5604","ServerKey":"pl181","X":489,"Y":590},{"Bonus":0,"Continent":"K55","ID":5605,"Name":"024","PlayerID":7581876,"Points":8125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5605","ServerKey":"pl181","X":527,"Y":533},{"Bonus":0,"Continent":"K45","ID":5607,"Name":"Wioska defensywna","PlayerID":848986287,"Points":7286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5607","ServerKey":"pl181","X":540,"Y":428},{"Bonus":0,"Continent":"K44","ID":5608,"Name":"A006","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5608","ServerKey":"pl181","X":492,"Y":421},{"Bonus":0,"Continent":"K54","ID":5609,"Name":"Gratuluje mĂłzgu","PlayerID":699698253,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5609","ServerKey":"pl181","X":450,"Y":538},{"Bonus":0,"Continent":"K45","ID":5610,"Name":".:039:. Sznur","PlayerID":8649412,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5610","ServerKey":"pl181","X":513,"Y":434},{"Bonus":0,"Continent":"K45","ID":5611,"Name":"Marienburgg 10","PlayerID":699355601,"Points":7012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5611","ServerKey":"pl181","X":534,"Y":480},{"Bonus":0,"Continent":"K45","ID":5612,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5612","ServerKey":"pl181","X":545,"Y":492},{"Bonus":0,"Continent":"K44","ID":5613,"Name":"A033","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5613","ServerKey":"pl181","X":477,"Y":415},{"Bonus":0,"Continent":"K45","ID":5614,"Name":"slow","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5614","ServerKey":"pl181","X":534,"Y":489},{"Bonus":0,"Continent":"K45","ID":5616,"Name":"-8-","PlayerID":699347951,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5616","ServerKey":"pl181","X":588,"Y":482},{"Bonus":0,"Continent":"K34","ID":5617,"Name":".034.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5617","ServerKey":"pl181","X":489,"Y":379},{"Bonus":0,"Continent":"K55","ID":5618,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5618","ServerKey":"pl181","X":518,"Y":572},{"Bonus":0,"Continent":"K54","ID":5619,"Name":"054","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5619","ServerKey":"pl181","X":416,"Y":516},{"Bonus":0,"Continent":"K44","ID":5620,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5620","ServerKey":"pl181","X":479,"Y":448},{"Bonus":0,"Continent":"K55","ID":5621,"Name":"020","PlayerID":2808172,"Points":6812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5621","ServerKey":"pl181","X":522,"Y":537},{"Bonus":0,"Continent":"K46","ID":5622,"Name":"003","PlayerID":849091105,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5622","ServerKey":"pl181","X":622,"Y":493},{"Bonus":0,"Continent":"K45","ID":5624,"Name":"[185]","PlayerID":848985692,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5624","ServerKey":"pl181","X":536,"Y":498},{"Bonus":0,"Continent":"K55","ID":5625,"Name":"019","PlayerID":8191129,"Points":7677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5625","ServerKey":"pl181","X":530,"Y":500},{"Bonus":0,"Continent":"K55","ID":5626,"Name":"Wioska 19","PlayerID":699385139,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5626","ServerKey":"pl181","X":529,"Y":513},{"Bonus":0,"Continent":"K55","ID":5627,"Name":"[156]","PlayerID":8000875,"Points":8070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5627","ServerKey":"pl181","X":545,"Y":508},{"Bonus":0,"Continent":"K34","ID":5628,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5628","ServerKey":"pl181","X":489,"Y":387},{"Bonus":0,"Continent":"K44","ID":5629,"Name":"036","PlayerID":699510259,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5629","ServerKey":"pl181","X":458,"Y":495},{"Bonus":0,"Continent":"K55","ID":5630,"Name":"Yogi","PlayerID":2808172,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5630","ServerKey":"pl181","X":533,"Y":550},{"Bonus":0,"Continent":"K44","ID":5631,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5631","ServerKey":"pl181","X":452,"Y":458},{"Bonus":0,"Continent":"K54","ID":5632,"Name":"Ateny_12","PlayerID":698971484,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5632","ServerKey":"pl181","X":475,"Y":537},{"Bonus":0,"Continent":"K54","ID":5633,"Name":"007. Marzyciel Shrek","PlayerID":698290577,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5633","ServerKey":"pl181","X":456,"Y":501},{"Bonus":0,"Continent":"K44","ID":5634,"Name":"084 Salt Lake City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5634","ServerKey":"pl181","X":473,"Y":469},{"Bonus":0,"Continent":"K44","ID":5635,"Name":"Szlachcic","PlayerID":699098531,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5635","ServerKey":"pl181","X":489,"Y":475},{"Bonus":0,"Continent":"K55","ID":5636,"Name":"-Zapraszam do taƄca! :P","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5636","ServerKey":"pl181","X":515,"Y":514},{"Bonus":0,"Continent":"K55","ID":5638,"Name":"001 Puk...Puk...Przeprowadzka!!!","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5638","ServerKey":"pl181","X":576,"Y":585},{"Bonus":0,"Continent":"K55","ID":5639,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5639","ServerKey":"pl181","X":509,"Y":568},{"Bonus":0,"Continent":"K55","ID":5640,"Name":"B008","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5640","ServerKey":"pl181","X":576,"Y":500},{"Bonus":0,"Continent":"K45","ID":5641,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5641","ServerKey":"pl181","X":586,"Y":496},{"Bonus":0,"Continent":"K45","ID":5642,"Name":"Szlachcic","PlayerID":698867446,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5642","ServerKey":"pl181","X":567,"Y":482},{"Bonus":0,"Continent":"K45","ID":5643,"Name":"[149] North","PlayerID":848985692,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5643","ServerKey":"pl181","X":573,"Y":466},{"Bonus":0,"Continent":"K54","ID":5644,"Name":"004 koka hera hasz lsd :) i","PlayerID":9167250,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5644","ServerKey":"pl181","X":425,"Y":572},{"Bonus":0,"Continent":"K44","ID":5645,"Name":"P Konfederacja","PlayerID":848915730,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5645","ServerKey":"pl181","X":453,"Y":444},{"Bonus":0,"Continent":"K44","ID":5646,"Name":"Szlachcic","PlayerID":699098531,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5646","ServerKey":"pl181","X":498,"Y":479},{"Bonus":0,"Continent":"K55","ID":5647,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5647","ServerKey":"pl181","X":576,"Y":542},{"Bonus":0,"Continent":"K64","ID":5648,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5648","ServerKey":"pl181","X":431,"Y":601},{"Bonus":0,"Continent":"K44","ID":5650,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5650","ServerKey":"pl181","X":437,"Y":459},{"Bonus":0,"Continent":"K44","ID":5651,"Name":"190 Trujillo","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5651","ServerKey":"pl181","X":462,"Y":457},{"Bonus":0,"Continent":"K45","ID":5652,"Name":"017","PlayerID":699788305,"Points":9221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5652","ServerKey":"pl181","X":529,"Y":435},{"Bonus":0,"Continent":"K44","ID":5653,"Name":"056 Kilauea","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5653","ServerKey":"pl181","X":455,"Y":463},{"Bonus":0,"Continent":"K44","ID":5654,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5654","ServerKey":"pl181","X":477,"Y":438},{"Bonus":0,"Continent":"K44","ID":5655,"Name":"SsSs","PlayerID":1536625,"Points":6795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5655","ServerKey":"pl181","X":453,"Y":495},{"Bonus":0,"Continent":"K45","ID":5656,"Name":"JW3","PlayerID":699368887,"Points":7354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5656","ServerKey":"pl181","X":556,"Y":442},{"Bonus":0,"Continent":"K44","ID":5657,"Name":"+44 63 Ecully","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5657","ServerKey":"pl181","X":430,"Y":467},{"Bonus":0,"Continent":"K54","ID":5658,"Name":"*Ateny_05 Juppi 3 -","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5658","ServerKey":"pl181","X":471,"Y":537},{"Bonus":0,"Continent":"K45","ID":5659,"Name":"Joms 028","PlayerID":699756210,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5659","ServerKey":"pl181","X":529,"Y":419},{"Bonus":0,"Continent":"K45","ID":5660,"Name":".achim.","PlayerID":6936607,"Points":8667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5660","ServerKey":"pl181","X":537,"Y":419},{"Bonus":0,"Continent":"K44","ID":5661,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5661","ServerKey":"pl181","X":416,"Y":480},{"Bonus":0,"Continent":"K44","ID":5662,"Name":"Cast Away 017","PlayerID":698290577,"Points":4575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5662","ServerKey":"pl181","X":446,"Y":479},{"Bonus":0,"Continent":"K44","ID":5663,"Name":"049 Fort Laudardale","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5663","ServerKey":"pl181","X":452,"Y":465},{"Bonus":0,"Continent":"K45","ID":5664,"Name":"x12","PlayerID":8459255,"Points":8356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5664","ServerKey":"pl181","X":551,"Y":453},{"Bonus":2,"Continent":"K54","ID":5665,"Name":"MTS","PlayerID":699785935,"Points":9591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5665","ServerKey":"pl181","X":493,"Y":520},{"Bonus":0,"Continent":"K54","ID":5666,"Name":"Fajna 077","PlayerID":698290577,"Points":7348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5666","ServerKey":"pl181","X":456,"Y":557},{"Bonus":0,"Continent":"K44","ID":5667,"Name":"0063 10","PlayerID":3909522,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5667","ServerKey":"pl181","X":451,"Y":430},{"Bonus":0,"Continent":"K54","ID":5668,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5668","ServerKey":"pl181","X":415,"Y":511},{"Bonus":0,"Continent":"K45","ID":5669,"Name":"Szlachcic","PlayerID":698867446,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5669","ServerKey":"pl181","X":566,"Y":475},{"Bonus":0,"Continent":"K54","ID":5670,"Name":"002","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5670","ServerKey":"pl181","X":466,"Y":575},{"Bonus":0,"Continent":"K44","ID":5671,"Name":"087 Kansas City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5671","ServerKey":"pl181","X":474,"Y":455},{"Bonus":0,"Continent":"K55","ID":5672,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5672","ServerKey":"pl181","X":535,"Y":518},{"Bonus":0,"Continent":"K54","ID":5673,"Name":"Zero Stresu","PlayerID":698971484,"Points":10111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5673","ServerKey":"pl181","X":446,"Y":538},{"Bonus":0,"Continent":"K44","ID":5675,"Name":"...Just like that","PlayerID":699723284,"Points":7202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5675","ServerKey":"pl181","X":466,"Y":474},{"Bonus":0,"Continent":"K45","ID":5676,"Name":"[146] North","PlayerID":848985692,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5676","ServerKey":"pl181","X":581,"Y":467},{"Bonus":0,"Continent":"K54","ID":5677,"Name":"008. ALFI","PlayerID":8539216,"Points":1426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5677","ServerKey":"pl181","X":470,"Y":565},{"Bonus":0,"Continent":"K44","ID":5678,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5678","ServerKey":"pl181","X":464,"Y":417},{"Bonus":3,"Continent":"K45","ID":5679,"Name":"!Wioska 518","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5679","ServerKey":"pl181","X":556,"Y":459},{"Bonus":0,"Continent":"K55","ID":5680,"Name":"0.Edison Mob","PlayerID":698215322,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5680","ServerKey":"pl181","X":525,"Y":581},{"Bonus":0,"Continent":"K45","ID":5681,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5681","ServerKey":"pl181","X":574,"Y":449},{"Bonus":0,"Continent":"K44","ID":5682,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5682","ServerKey":"pl181","X":432,"Y":484},{"Bonus":0,"Continent":"K45","ID":5683,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5683","ServerKey":"pl181","X":511,"Y":435},{"Bonus":0,"Continent":"K55","ID":5684,"Name":"Yogi","PlayerID":2808172,"Points":6189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5684","ServerKey":"pl181","X":531,"Y":526},{"Bonus":0,"Continent":"K54","ID":5685,"Name":"Kasyno","PlayerID":7249451,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5685","ServerKey":"pl181","X":444,"Y":517},{"Bonus":0,"Continent":"K44","ID":5686,"Name":"141 San Louis Potosi","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5686","ServerKey":"pl181","X":471,"Y":481},{"Bonus":0,"Continent":"K45","ID":5687,"Name":"K45 - 006","PlayerID":6510480,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5687","ServerKey":"pl181","X":561,"Y":467},{"Bonus":6,"Continent":"K45","ID":5688,"Name":"monetki","PlayerID":699098531,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5688","ServerKey":"pl181","X":510,"Y":415},{"Bonus":0,"Continent":"K55","ID":5689,"Name":"yogi","PlayerID":2808172,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5689","ServerKey":"pl181","X":525,"Y":576},{"Bonus":0,"Continent":"K45","ID":5690,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5690","ServerKey":"pl181","X":511,"Y":479},{"Bonus":0,"Continent":"K64","ID":5691,"Name":"11111","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5691","ServerKey":"pl181","X":479,"Y":602},{"Bonus":0,"Continent":"K45","ID":5692,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5692","ServerKey":"pl181","X":520,"Y":478},{"Bonus":0,"Continent":"K54","ID":5693,"Name":"F001","PlayerID":699189792,"Points":9565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5693","ServerKey":"pl181","X":498,"Y":537},{"Bonus":0,"Continent":"K45","ID":5694,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5694","ServerKey":"pl181","X":521,"Y":419},{"Bonus":0,"Continent":"K45","ID":5695,"Name":"Joms 007","PlayerID":699756210,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5695","ServerKey":"pl181","X":522,"Y":417},{"Bonus":0,"Continent":"K35","ID":5696,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5696","ServerKey":"pl181","X":555,"Y":394},{"Bonus":0,"Continent":"K54","ID":5697,"Name":"~062.","PlayerID":7139820,"Points":8397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5697","ServerKey":"pl181","X":487,"Y":562},{"Bonus":0,"Continent":"K54","ID":5698,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":6131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5698","ServerKey":"pl181","X":445,"Y":561},{"Bonus":0,"Continent":"K55","ID":5699,"Name":"CALL 936","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5699","ServerKey":"pl181","X":548,"Y":560},{"Bonus":0,"Continent":"K56","ID":5700,"Name":"007.","PlayerID":8900955,"Points":7408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5700","ServerKey":"pl181","X":609,"Y":537},{"Bonus":0,"Continent":"K54","ID":5701,"Name":"NOT?","PlayerID":9236866,"Points":1478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5701","ServerKey":"pl181","X":438,"Y":548},{"Bonus":0,"Continent":"K44","ID":5702,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5702","ServerKey":"pl181","X":429,"Y":456},{"Bonus":0,"Continent":"K45","ID":5703,"Name":"063","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5703","ServerKey":"pl181","X":553,"Y":433},{"Bonus":0,"Continent":"K54","ID":5704,"Name":". Jack Daniels","PlayerID":699856962,"Points":9024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5704","ServerKey":"pl181","X":423,"Y":547},{"Bonus":0,"Continent":"K55","ID":5705,"Name":"007 | Lord Axen - rumbling!","PlayerID":8000875,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5705","ServerKey":"pl181","X":559,"Y":547},{"Bonus":0,"Continent":"K64","ID":5706,"Name":"032","PlayerID":699878511,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5706","ServerKey":"pl181","X":497,"Y":617},{"Bonus":0,"Continent":"K54","ID":5707,"Name":"Fajna 079","PlayerID":8539216,"Points":4265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5707","ServerKey":"pl181","X":455,"Y":567},{"Bonus":0,"Continent":"K54","ID":5708,"Name":"1. Type 58 !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5708","ServerKey":"pl181","X":492,"Y":531},{"Bonus":0,"Continent":"K54","ID":5709,"Name":"Ateny_76","PlayerID":2585846,"Points":2668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5709","ServerKey":"pl181","X":474,"Y":519},{"Bonus":0,"Continent":"K44","ID":5710,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5710","ServerKey":"pl181","X":479,"Y":441},{"Bonus":0,"Continent":"K54","ID":5711,"Name":"SsSs","PlayerID":1536625,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5711","ServerKey":"pl181","X":419,"Y":503},{"Bonus":0,"Continent":"K55","ID":5712,"Name":"0026","PlayerID":699429153,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5712","ServerKey":"pl181","X":591,"Y":503},{"Bonus":0,"Continent":"K55","ID":5713,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5713","ServerKey":"pl181","X":525,"Y":562},{"Bonus":3,"Continent":"K54","ID":5714,"Name":"NOT?","PlayerID":9236866,"Points":9425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5714","ServerKey":"pl181","X":430,"Y":537},{"Bonus":0,"Continent":"K45","ID":5715,"Name":"!Pikaczu","PlayerID":699795378,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5715","ServerKey":"pl181","X":569,"Y":444},{"Bonus":0,"Continent":"K55","ID":5716,"Name":"|084|","PlayerID":699664910,"Points":4199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5716","ServerKey":"pl181","X":571,"Y":526},{"Bonus":0,"Continent":"K45","ID":5717,"Name":"slow","PlayerID":848967710,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5717","ServerKey":"pl181","X":530,"Y":490},{"Bonus":0,"Continent":"K54","ID":5718,"Name":"068","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5718","ServerKey":"pl181","X":415,"Y":525},{"Bonus":0,"Continent":"K44","ID":5719,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5719","ServerKey":"pl181","X":433,"Y":445},{"Bonus":0,"Continent":"K55","ID":5720,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5720","ServerKey":"pl181","X":540,"Y":531},{"Bonus":4,"Continent":"K44","ID":5721,"Name":"097 Tombstone","PlayerID":1497168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5721","ServerKey":"pl181","X":480,"Y":463},{"Bonus":0,"Continent":"K45","ID":5722,"Name":"046.","PlayerID":849094609,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5722","ServerKey":"pl181","X":550,"Y":474},{"Bonus":0,"Continent":"K54","ID":5723,"Name":"NOT?","PlayerID":9236866,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5723","ServerKey":"pl181","X":433,"Y":514},{"Bonus":0,"Continent":"K44","ID":5724,"Name":"Brat447","PlayerID":699262350,"Points":4551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5724","ServerKey":"pl181","X":466,"Y":496},{"Bonus":0,"Continent":"K45","ID":5725,"Name":"MasteroN 07","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5725","ServerKey":"pl181","X":570,"Y":445},{"Bonus":0,"Continent":"K54","ID":5726,"Name":"Fajna006","PlayerID":698971484,"Points":5894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5726","ServerKey":"pl181","X":454,"Y":556},{"Bonus":0,"Continent":"K54","ID":5727,"Name":"NOT!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5727","ServerKey":"pl181","X":467,"Y":540},{"Bonus":0,"Continent":"K44","ID":5728,"Name":"SsSs","PlayerID":1536625,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5728","ServerKey":"pl181","X":438,"Y":497},{"Bonus":0,"Continent":"K55","ID":5729,"Name":"- 076 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5729","ServerKey":"pl181","X":535,"Y":583},{"Bonus":0,"Continent":"K64","ID":5730,"Name":"#001","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5730","ServerKey":"pl181","X":467,"Y":612},{"Bonus":0,"Continent":"K54","ID":5732,"Name":"Brat447","PlayerID":699262350,"Points":8732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5732","ServerKey":"pl181","X":461,"Y":507},{"Bonus":0,"Continent":"K55","ID":5733,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5733","ServerKey":"pl181","X":530,"Y":534},{"Bonus":0,"Continent":"K45","ID":5734,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5734","ServerKey":"pl181","X":563,"Y":476},{"Bonus":0,"Continent":"K45","ID":5735,"Name":"KoƄczyć czas:)","PlayerID":699368887,"Points":7186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5735","ServerKey":"pl181","X":552,"Y":444},{"Bonus":0,"Continent":"K55","ID":5736,"Name":"sas","PlayerID":7581876,"Points":9466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5736","ServerKey":"pl181","X":535,"Y":536},{"Bonus":0,"Continent":"K45","ID":5737,"Name":"Wioska Matixx","PlayerID":699432672,"Points":4008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5737","ServerKey":"pl181","X":550,"Y":496},{"Bonus":0,"Continent":"K54","ID":5738,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":10279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5738","ServerKey":"pl181","X":489,"Y":599},{"Bonus":0,"Continent":"K54","ID":5739,"Name":"keepo","PlayerID":848967710,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5739","ServerKey":"pl181","X":483,"Y":535},{"Bonus":0,"Continent":"K55","ID":5740,"Name":"Szlachcic 038","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5740","ServerKey":"pl181","X":553,"Y":516},{"Bonus":0,"Continent":"K45","ID":5741,"Name":".:017:. Chillout","PlayerID":848934935,"Points":7223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5741","ServerKey":"pl181","X":514,"Y":433},{"Bonus":0,"Continent":"K54","ID":5742,"Name":"001","PlayerID":9167250,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5742","ServerKey":"pl181","X":417,"Y":577},{"Bonus":0,"Continent":"K54","ID":5743,"Name":"5. Witosa","PlayerID":699781762,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5743","ServerKey":"pl181","X":477,"Y":536},{"Bonus":0,"Continent":"K55","ID":5744,"Name":"sas","PlayerID":7581876,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5744","ServerKey":"pl181","X":512,"Y":542},{"Bonus":0,"Continent":"K54","ID":5745,"Name":"004","PlayerID":849092723,"Points":9417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5745","ServerKey":"pl181","X":483,"Y":512},{"Bonus":0,"Continent":"K54","ID":5746,"Name":"0188","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5746","ServerKey":"pl181","X":472,"Y":548},{"Bonus":0,"Continent":"K45","ID":5747,"Name":"[135] North","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5747","ServerKey":"pl181","X":578,"Y":473},{"Bonus":0,"Continent":"K44","ID":5748,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5748","ServerKey":"pl181","X":433,"Y":450},{"Bonus":0,"Continent":"K55","ID":5749,"Name":"[061] Będzie psikus","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5749","ServerKey":"pl181","X":530,"Y":503},{"Bonus":0,"Continent":"K55","ID":5750,"Name":"- Bis zu ende","PlayerID":699785935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5750","ServerKey":"pl181","X":518,"Y":517},{"Bonus":0,"Continent":"K54","ID":5751,"Name":"086 OD KOGO BIJE BLASK","PlayerID":699382126,"Points":6606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5751","ServerKey":"pl181","X":404,"Y":556},{"Bonus":0,"Continent":"K44","ID":5752,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5752","ServerKey":"pl181","X":488,"Y":476},{"Bonus":0,"Continent":"K55","ID":5753,"Name":"Szlachcic 024","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5753","ServerKey":"pl181","X":558,"Y":521},{"Bonus":0,"Continent":"K54","ID":5754,"Name":"Suppi","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5754","ServerKey":"pl181","X":442,"Y":524},{"Bonus":0,"Continent":"K54","ID":5755,"Name":"KIELBA 001","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5755","ServerKey":"pl181","X":445,"Y":578},{"Bonus":0,"Continent":"K55","ID":5756,"Name":"029. Leszy","PlayerID":699703642,"Points":9186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5756","ServerKey":"pl181","X":511,"Y":560},{"Bonus":0,"Continent":"K45","ID":5757,"Name":".:003:. Same Thing","PlayerID":8649412,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5757","ServerKey":"pl181","X":511,"Y":413},{"Bonus":0,"Continent":"K54","ID":5758,"Name":"Fajna004","PlayerID":698971484,"Points":4992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5758","ServerKey":"pl181","X":452,"Y":555},{"Bonus":0,"Continent":"K45","ID":5759,"Name":"Joms 011","PlayerID":699756210,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5759","ServerKey":"pl181","X":520,"Y":417},{"Bonus":0,"Continent":"K55","ID":5760,"Name":"#025","PlayerID":849001572,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5760","ServerKey":"pl181","X":519,"Y":552},{"Bonus":0,"Continent":"K44","ID":5761,"Name":"126 Tulum","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5761","ServerKey":"pl181","X":477,"Y":482},{"Bonus":0,"Continent":"K44","ID":5762,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5762","ServerKey":"pl181","X":488,"Y":422},{"Bonus":0,"Continent":"K54","ID":5763,"Name":"044","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5763","ServerKey":"pl181","X":431,"Y":514},{"Bonus":2,"Continent":"K45","ID":5764,"Name":"078 Orzech laskowy","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5764","ServerKey":"pl181","X":553,"Y":474},{"Bonus":0,"Continent":"K55","ID":5765,"Name":"0023","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5765","ServerKey":"pl181","X":519,"Y":515},{"Bonus":0,"Continent":"K44","ID":5766,"Name":"+44 72 Vernaison","PlayerID":698361257,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5766","ServerKey":"pl181","X":422,"Y":470},{"Bonus":0,"Continent":"K54","ID":5767,"Name":"Mimosa!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5767","ServerKey":"pl181","X":498,"Y":512},{"Bonus":0,"Continent":"K55","ID":5768,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":5452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5768","ServerKey":"pl181","X":542,"Y":523},{"Bonus":0,"Continent":"K55","ID":5769,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5769","ServerKey":"pl181","X":519,"Y":559},{"Bonus":0,"Continent":"K55","ID":5770,"Name":"0020. B -","PlayerID":7125212,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5770","ServerKey":"pl181","X":577,"Y":506},{"Bonus":0,"Continent":"K54","ID":5771,"Name":"OXA","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5771","ServerKey":"pl181","X":497,"Y":521},{"Bonus":0,"Continent":"K35","ID":5772,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5772","ServerKey":"pl181","X":534,"Y":391},{"Bonus":0,"Continent":"K44","ID":5773,"Name":"?+44 96","PlayerID":698361257,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5773","ServerKey":"pl181","X":466,"Y":491},{"Bonus":0,"Continent":"K44","ID":5774,"Name":"171 Sao Luis","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5774","ServerKey":"pl181","X":479,"Y":471},{"Bonus":0,"Continent":"K54","ID":5775,"Name":"005","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5775","ServerKey":"pl181","X":409,"Y":504},{"Bonus":0,"Continent":"K44","ID":5776,"Name":"016","PlayerID":699510259,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5776","ServerKey":"pl181","X":412,"Y":484},{"Bonus":0,"Continent":"K54","ID":5777,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5777","ServerKey":"pl181","X":488,"Y":511},{"Bonus":0,"Continent":"K54","ID":5778,"Name":"Sparta_11","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5778","ServerKey":"pl181","X":495,"Y":599},{"Bonus":0,"Continent":"K44","ID":5779,"Name":"003. Marzyciel Shrek","PlayerID":698290577,"Points":6099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5779","ServerKey":"pl181","X":466,"Y":493},{"Bonus":0,"Continent":"K45","ID":5780,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5780","ServerKey":"pl181","X":580,"Y":485},{"Bonus":0,"Continent":"K45","ID":5781,"Name":"Joms 002","PlayerID":699756210,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5781","ServerKey":"pl181","X":524,"Y":419},{"Bonus":0,"Continent":"K45","ID":5782,"Name":"-[002]- K2","PlayerID":849092827,"Points":8104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5782","ServerKey":"pl181","X":555,"Y":483},{"Bonus":0,"Continent":"K45","ID":5783,"Name":"Osada","PlayerID":699098531,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5783","ServerKey":"pl181","X":501,"Y":451},{"Bonus":0,"Continent":"K55","ID":5784,"Name":"- 301 -","PlayerID":849018239,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5784","ServerKey":"pl181","X":525,"Y":583},{"Bonus":0,"Continent":"K44","ID":5785,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5785","ServerKey":"pl181","X":474,"Y":431},{"Bonus":0,"Continent":"K54","ID":5786,"Name":"SsSs","PlayerID":1536625,"Points":5405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5786","ServerKey":"pl181","X":461,"Y":500},{"Bonus":0,"Continent":"K54","ID":5787,"Name":"~043.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5787","ServerKey":"pl181","X":482,"Y":551},{"Bonus":0,"Continent":"K55","ID":5788,"Name":"Szary ƚwiat","PlayerID":699785935,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5788","ServerKey":"pl181","X":576,"Y":593},{"Bonus":0,"Continent":"K54","ID":5789,"Name":"TROJA.11","PlayerID":8438707,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5789","ServerKey":"pl181","X":456,"Y":575},{"Bonus":0,"Continent":"K54","ID":5790,"Name":"Filip IV","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5790","ServerKey":"pl181","X":447,"Y":526},{"Bonus":0,"Continent":"K55","ID":5791,"Name":"Kattegat","PlayerID":7581876,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5791","ServerKey":"pl181","X":518,"Y":543},{"Bonus":0,"Continent":"K45","ID":5792,"Name":"017 Ecruteak City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5792","ServerKey":"pl181","X":565,"Y":456},{"Bonus":0,"Continent":"K55","ID":5793,"Name":"20003","PlayerID":848915531,"Points":8045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5793","ServerKey":"pl181","X":516,"Y":550},{"Bonus":0,"Continent":"K54","ID":5794,"Name":"keepo","PlayerID":848967710,"Points":9470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5794","ServerKey":"pl181","X":480,"Y":511},{"Bonus":0,"Continent":"K45","ID":5795,"Name":"C038","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5795","ServerKey":"pl181","X":533,"Y":459},{"Bonus":0,"Continent":"K35","ID":5796,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5796","ServerKey":"pl181","X":555,"Y":387},{"Bonus":0,"Continent":"K54","ID":5797,"Name":"0Wioska barbarzyƄska","PlayerID":699333701,"Points":8363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5797","ServerKey":"pl181","X":467,"Y":509},{"Bonus":0,"Continent":"K45","ID":5798,"Name":"JK5","PlayerID":699368887,"Points":6238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5798","ServerKey":"pl181","X":559,"Y":447},{"Bonus":0,"Continent":"K45","ID":5799,"Name":"073","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5799","ServerKey":"pl181","X":554,"Y":427},{"Bonus":0,"Continent":"K54","ID":5800,"Name":"Harbar 2","PlayerID":8779575,"Points":3459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5800","ServerKey":"pl181","X":429,"Y":551},{"Bonus":0,"Continent":"K44","ID":5801,"Name":"?+44 76 Corbas","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5801","ServerKey":"pl181","X":467,"Y":479},{"Bonus":0,"Continent":"K44","ID":5802,"Name":"+44 75 Rang du Fliers","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5802","ServerKey":"pl181","X":451,"Y":479},{"Bonus":0,"Continent":"K54","ID":5803,"Name":"Warzywniak 022","PlayerID":698290577,"Points":3813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5803","ServerKey":"pl181","X":453,"Y":549},{"Bonus":0,"Continent":"K55","ID":5804,"Name":"CALL 961","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5804","ServerKey":"pl181","X":544,"Y":548},{"Bonus":0,"Continent":"K44","ID":5805,"Name":"B018","PlayerID":699299123,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5805","ServerKey":"pl181","X":487,"Y":449},{"Bonus":0,"Continent":"K54","ID":5806,"Name":"~059.","PlayerID":7139820,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5806","ServerKey":"pl181","X":491,"Y":543},{"Bonus":5,"Continent":"K55","ID":5807,"Name":"0021 K55 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5807","ServerKey":"pl181","X":502,"Y":551},{"Bonus":0,"Continent":"K45","ID":5808,"Name":"[153] North","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5808","ServerKey":"pl181","X":564,"Y":469},{"Bonus":0,"Continent":"K45","ID":5809,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":5716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5809","ServerKey":"pl181","X":546,"Y":445},{"Bonus":2,"Continent":"K44","ID":5810,"Name":"00974","PlayerID":3909522,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5810","ServerKey":"pl181","X":462,"Y":441},{"Bonus":0,"Continent":"K55","ID":5812,"Name":"018","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5812","ServerKey":"pl181","X":581,"Y":533},{"Bonus":0,"Continent":"K45","ID":5813,"Name":"Osada","PlayerID":699098531,"Points":8381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5813","ServerKey":"pl181","X":506,"Y":449},{"Bonus":8,"Continent":"K55","ID":5814,"Name":"Bloody Mary","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5814","ServerKey":"pl181","X":560,"Y":546},{"Bonus":0,"Continent":"K54","ID":5815,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5815","ServerKey":"pl181","X":487,"Y":507},{"Bonus":0,"Continent":"K55","ID":5816,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5816","ServerKey":"pl181","X":547,"Y":530},{"Bonus":0,"Continent":"K55","ID":5817,"Name":"014. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5817","ServerKey":"pl181","X":579,"Y":524},{"Bonus":0,"Continent":"K55","ID":5818,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":9350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5818","ServerKey":"pl181","X":528,"Y":538},{"Bonus":0,"Continent":"K44","ID":5819,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5819","ServerKey":"pl181","X":428,"Y":460},{"Bonus":0,"Continent":"K45","ID":5820,"Name":"SSS-Abadon","PlayerID":699347951,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5820","ServerKey":"pl181","X":566,"Y":479},{"Bonus":0,"Continent":"K45","ID":5821,"Name":"Szlachcic","PlayerID":698867446,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5821","ServerKey":"pl181","X":574,"Y":496},{"Bonus":0,"Continent":"K55","ID":5822,"Name":"Wioska 2","PlayerID":699385139,"Points":8428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5822","ServerKey":"pl181","X":523,"Y":518},{"Bonus":0,"Continent":"K44","ID":5823,"Name":"024","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5823","ServerKey":"pl181","X":456,"Y":436},{"Bonus":0,"Continent":"K55","ID":5824,"Name":"05*","PlayerID":699664910,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5824","ServerKey":"pl181","X":571,"Y":543},{"Bonus":0,"Continent":"K54","ID":5825,"Name":"COUSINS","PlayerID":7976264,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5825","ServerKey":"pl181","X":483,"Y":587},{"Bonus":0,"Continent":"K44","ID":5826,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5826","ServerKey":"pl181","X":421,"Y":466},{"Bonus":0,"Continent":"K55","ID":5827,"Name":"[164]","PlayerID":8000875,"Points":8337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5827","ServerKey":"pl181","X":578,"Y":542},{"Bonus":0,"Continent":"K55","ID":5828,"Name":"CALL 1072","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5828","ServerKey":"pl181","X":519,"Y":531},{"Bonus":0,"Continent":"K54","ID":5829,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5829","ServerKey":"pl181","X":486,"Y":508},{"Bonus":0,"Continent":"K45","ID":5830,"Name":".achim.","PlayerID":6936607,"Points":7141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5830","ServerKey":"pl181","X":517,"Y":450},{"Bonus":9,"Continent":"K45","ID":5831,"Name":"032.","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5831","ServerKey":"pl181","X":503,"Y":490},{"Bonus":0,"Continent":"K55","ID":5832,"Name":"yogi","PlayerID":2808172,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5832","ServerKey":"pl181","X":533,"Y":552},{"Bonus":0,"Continent":"K44","ID":5833,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5833","ServerKey":"pl181","X":497,"Y":416},{"Bonus":0,"Continent":"K55","ID":5834,"Name":"022","PlayerID":848915531,"Points":8174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5834","ServerKey":"pl181","X":518,"Y":541},{"Bonus":0,"Continent":"K55","ID":5835,"Name":"#058","PlayerID":849001572,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5835","ServerKey":"pl181","X":518,"Y":585},{"Bonus":0,"Continent":"K43","ID":5836,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5836","ServerKey":"pl181","X":395,"Y":456},{"Bonus":0,"Continent":"K44","ID":5837,"Name":"+44 62 Saint Laurent de Mure","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5837","ServerKey":"pl181","X":420,"Y":464},{"Bonus":0,"Continent":"K54","ID":5838,"Name":"NOT?","PlayerID":9236866,"Points":6644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5838","ServerKey":"pl181","X":435,"Y":538},{"Bonus":0,"Continent":"K44","ID":5839,"Name":"144 Leon","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5839","ServerKey":"pl181","X":471,"Y":487},{"Bonus":0,"Continent":"K54","ID":5840,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5840","ServerKey":"pl181","X":472,"Y":571},{"Bonus":0,"Continent":"K53","ID":5841,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5841","ServerKey":"pl181","X":383,"Y":524},{"Bonus":0,"Continent":"K54","ID":5842,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5842","ServerKey":"pl181","X":432,"Y":511},{"Bonus":0,"Continent":"K55","ID":5843,"Name":"030. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5843","ServerKey":"pl181","X":576,"Y":531},{"Bonus":0,"Continent":"K45","ID":5844,"Name":"x 0002 dwa x to maƂo 091","PlayerID":3909522,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5844","ServerKey":"pl181","X":551,"Y":463},{"Bonus":0,"Continent":"K44","ID":5845,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5845","ServerKey":"pl181","X":425,"Y":499},{"Bonus":0,"Continent":"K54","ID":5846,"Name":"080","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5846","ServerKey":"pl181","X":425,"Y":515},{"Bonus":0,"Continent":"K45","ID":5847,"Name":"036.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5847","ServerKey":"pl181","X":502,"Y":489},{"Bonus":0,"Continent":"K45","ID":5848,"Name":"Szlachcic","PlayerID":699098531,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5848","ServerKey":"pl181","X":509,"Y":472},{"Bonus":0,"Continent":"K45","ID":5849,"Name":".:014:. Owca","PlayerID":8649412,"Points":8862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5849","ServerKey":"pl181","X":511,"Y":428},{"Bonus":0,"Continent":"K44","ID":5850,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5850","ServerKey":"pl181","X":466,"Y":490},{"Bonus":0,"Continent":"K45","ID":5851,"Name":"!Wioska 522","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5851","ServerKey":"pl181","X":558,"Y":461},{"Bonus":0,"Continent":"K35","ID":5852,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5852","ServerKey":"pl181","X":529,"Y":394},{"Bonus":0,"Continent":"K44","ID":5853,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5853","ServerKey":"pl181","X":457,"Y":496},{"Bonus":3,"Continent":"K54","ID":5854,"Name":"Się wjeĆŒdĆŒa !","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5854","ServerKey":"pl181","X":498,"Y":500},{"Bonus":0,"Continent":"K45","ID":5855,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5855","ServerKey":"pl181","X":539,"Y":421},{"Bonus":0,"Continent":"K55","ID":5856,"Name":"amator","PlayerID":848915531,"Points":9094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5856","ServerKey":"pl181","X":511,"Y":545},{"Bonus":0,"Continent":"K45","ID":5857,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":7092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5857","ServerKey":"pl181","X":538,"Y":426},{"Bonus":0,"Continent":"K44","ID":5858,"Name":"Santorini","PlayerID":698884287,"Points":8985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5858","ServerKey":"pl181","X":436,"Y":451},{"Bonus":0,"Continent":"K45","ID":5859,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5859","ServerKey":"pl181","X":507,"Y":450},{"Bonus":0,"Continent":"K55","ID":5860,"Name":"Gattacka","PlayerID":699298370,"Points":10302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5860","ServerKey":"pl181","X":581,"Y":517},{"Bonus":0,"Continent":"K55","ID":5861,"Name":"026","PlayerID":699316421,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5861","ServerKey":"pl181","X":568,"Y":545},{"Bonus":0,"Continent":"K55","ID":5862,"Name":"Lilonia","PlayerID":849066849,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5862","ServerKey":"pl181","X":516,"Y":556},{"Bonus":0,"Continent":"K44","ID":5863,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5863","ServerKey":"pl181","X":495,"Y":496},{"Bonus":0,"Continent":"K54","ID":5864,"Name":"Warzywniak 009","PlayerID":698290577,"Points":2834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5864","ServerKey":"pl181","X":444,"Y":546},{"Bonus":0,"Continent":"K44","ID":5865,"Name":"-024-","PlayerID":9291984,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5865","ServerKey":"pl181","X":456,"Y":422},{"Bonus":0,"Continent":"K54","ID":5866,"Name":"lady","PlayerID":699703642,"Points":9508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5866","ServerKey":"pl181","X":494,"Y":577},{"Bonus":0,"Continent":"K44","ID":5867,"Name":"010. Marzyciel Shrek","PlayerID":698290577,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5867","ServerKey":"pl181","X":455,"Y":499},{"Bonus":0,"Continent":"K53","ID":5868,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5868","ServerKey":"pl181","X":381,"Y":520},{"Bonus":0,"Continent":"K45","ID":5869,"Name":"ADEN","PlayerID":698588535,"Points":4828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5869","ServerKey":"pl181","X":557,"Y":436},{"Bonus":4,"Continent":"K45","ID":5870,"Name":"x06","PlayerID":8459255,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5870","ServerKey":"pl181","X":559,"Y":477},{"Bonus":0,"Continent":"K45","ID":5871,"Name":"-002-","PlayerID":849070335,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5871","ServerKey":"pl181","X":535,"Y":448},{"Bonus":0,"Continent":"K45","ID":5872,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5872","ServerKey":"pl181","X":543,"Y":483},{"Bonus":0,"Continent":"K55","ID":5873,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5873","ServerKey":"pl181","X":558,"Y":507},{"Bonus":0,"Continent":"K44","ID":5874,"Name":"+44 84","PlayerID":698361257,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5874","ServerKey":"pl181","X":447,"Y":486},{"Bonus":0,"Continent":"K45","ID":5875,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5875","ServerKey":"pl181","X":523,"Y":430},{"Bonus":0,"Continent":"K44","ID":5876,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5876","ServerKey":"pl181","X":411,"Y":413},{"Bonus":0,"Continent":"K55","ID":5878,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5878","ServerKey":"pl181","X":559,"Y":506},{"Bonus":4,"Continent":"K45","ID":5879,"Name":"[140] North","PlayerID":848985692,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5879","ServerKey":"pl181","X":579,"Y":464},{"Bonus":0,"Continent":"K54","ID":5880,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5880","ServerKey":"pl181","X":429,"Y":524},{"Bonus":0,"Continent":"K44","ID":5881,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5881","ServerKey":"pl181","X":447,"Y":493},{"Bonus":0,"Continent":"K54","ID":5882,"Name":"076","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5882","ServerKey":"pl181","X":416,"Y":507},{"Bonus":0,"Continent":"K45","ID":5883,"Name":"Wioska_02","PlayerID":8674163,"Points":8805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5883","ServerKey":"pl181","X":538,"Y":451},{"Bonus":0,"Continent":"K45","ID":5884,"Name":"Szlachcic","PlayerID":699098531,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5884","ServerKey":"pl181","X":508,"Y":471},{"Bonus":0,"Continent":"K54","ID":5885,"Name":"NOT?","PlayerID":9236866,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5885","ServerKey":"pl181","X":404,"Y":549},{"Bonus":0,"Continent":"K55","ID":5886,"Name":"|007|","PlayerID":873575,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5886","ServerKey":"pl181","X":551,"Y":570},{"Bonus":0,"Continent":"K54","ID":5887,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":3839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5887","ServerKey":"pl181","X":456,"Y":533},{"Bonus":0,"Continent":"K45","ID":5888,"Name":"C031","PlayerID":699299123,"Points":6705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5888","ServerKey":"pl181","X":528,"Y":457},{"Bonus":0,"Continent":"K55","ID":5889,"Name":"008","PlayerID":8191129,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5889","ServerKey":"pl181","X":533,"Y":513},{"Bonus":0,"Continent":"K45","ID":5890,"Name":"!Blastoise","PlayerID":699795378,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5890","ServerKey":"pl181","X":572,"Y":448},{"Bonus":2,"Continent":"K55","ID":5891,"Name":"CALL 933","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5891","ServerKey":"pl181","X":552,"Y":561},{"Bonus":0,"Continent":"K54","ID":5892,"Name":"0175","PlayerID":698971484,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5892","ServerKey":"pl181","X":473,"Y":546},{"Bonus":0,"Continent":"K54","ID":5893,"Name":"022. Infinity War","PlayerID":8779575,"Points":4191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5893","ServerKey":"pl181","X":428,"Y":549},{"Bonus":0,"Continent":"K55","ID":5894,"Name":"[072]","PlayerID":8000875,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5894","ServerKey":"pl181","X":556,"Y":567},{"Bonus":0,"Continent":"K54","ID":5895,"Name":"FF005","PlayerID":699189792,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5895","ServerKey":"pl181","X":465,"Y":515},{"Bonus":0,"Continent":"K55","ID":5896,"Name":"CALL 938","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5896","ServerKey":"pl181","X":553,"Y":558},{"Bonus":0,"Continent":"K55","ID":5897,"Name":"003","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5897","ServerKey":"pl181","X":578,"Y":535},{"Bonus":0,"Continent":"K45","ID":5898,"Name":"CZEKAM NA SZLACHTE","PlayerID":8155296,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5898","ServerKey":"pl181","X":536,"Y":453},{"Bonus":0,"Continent":"K55","ID":5899,"Name":"Wioska barbarzyƄska","PlayerID":8925695,"Points":3940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5899","ServerKey":"pl181","X":589,"Y":503},{"Bonus":0,"Continent":"K44","ID":5900,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5900","ServerKey":"pl181","X":484,"Y":467},{"Bonus":0,"Continent":"K45","ID":5901,"Name":"A048","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5901","ServerKey":"pl181","X":500,"Y":420},{"Bonus":0,"Continent":"K55","ID":5902,"Name":"CALL 942","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5902","ServerKey":"pl181","X":555,"Y":565},{"Bonus":0,"Continent":"K55","ID":5903,"Name":"- Na pierwsze, deser","PlayerID":699785935,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5903","ServerKey":"pl181","X":514,"Y":513},{"Bonus":0,"Continent":"K46","ID":5904,"Name":"JaawmG P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5904","ServerKey":"pl181","X":620,"Y":474},{"Bonus":0,"Continent":"K54","ID":5905,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5905","ServerKey":"pl181","X":490,"Y":554},{"Bonus":0,"Continent":"K44","ID":5906,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5906","ServerKey":"pl181","X":487,"Y":493},{"Bonus":0,"Continent":"K45","ID":5907,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5907","ServerKey":"pl181","X":560,"Y":497},{"Bonus":0,"Continent":"K55","ID":5908,"Name":"CALL 935","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5908","ServerKey":"pl181","X":551,"Y":559},{"Bonus":0,"Continent":"K64","ID":5909,"Name":"EKG .::.Inchi + R","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5909","ServerKey":"pl181","X":480,"Y":609},{"Bonus":5,"Continent":"K44","ID":5910,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5910","ServerKey":"pl181","X":473,"Y":427},{"Bonus":0,"Continent":"K54","ID":5911,"Name":"004 (Popeye14)","PlayerID":698769107,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5911","ServerKey":"pl181","X":411,"Y":576},{"Bonus":0,"Continent":"K54","ID":5912,"Name":"010","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5912","ServerKey":"pl181","X":464,"Y":579},{"Bonus":0,"Continent":"K54","ID":5913,"Name":"NOT?","PlayerID":9236866,"Points":8327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5913","ServerKey":"pl181","X":431,"Y":540},{"Bonus":0,"Continent":"K44","ID":5914,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5914","ServerKey":"pl181","X":482,"Y":466},{"Bonus":0,"Continent":"K45","ID":5915,"Name":"0021","PlayerID":698599365,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5915","ServerKey":"pl181","X":506,"Y":496},{"Bonus":0,"Continent":"K44","ID":5916,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5916","ServerKey":"pl181","X":442,"Y":469},{"Bonus":0,"Continent":"K44","ID":5917,"Name":"...Just like that","PlayerID":699723284,"Points":6531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5917","ServerKey":"pl181","X":463,"Y":479},{"Bonus":0,"Continent":"K54","ID":5918,"Name":"NOT?","PlayerID":9236866,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5918","ServerKey":"pl181","X":430,"Y":541},{"Bonus":0,"Continent":"K45","ID":5919,"Name":"#Weezing","PlayerID":699795378,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5919","ServerKey":"pl181","X":569,"Y":463},{"Bonus":0,"Continent":"K54","ID":5920,"Name":"0119","PlayerID":698659980,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5920","ServerKey":"pl181","X":467,"Y":550},{"Bonus":0,"Continent":"K55","ID":5921,"Name":"0058","PlayerID":698416970,"Points":8841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5921","ServerKey":"pl181","X":589,"Y":514},{"Bonus":0,"Continent":"K55","ID":5922,"Name":"028","PlayerID":699373599,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5922","ServerKey":"pl181","X":588,"Y":564},{"Bonus":0,"Continent":"K55","ID":5923,"Name":"0025","PlayerID":698599365,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5923","ServerKey":"pl181","X":504,"Y":507},{"Bonus":0,"Continent":"K45","ID":5924,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5924","ServerKey":"pl181","X":517,"Y":496},{"Bonus":0,"Continent":"K46","ID":5925,"Name":"004 Mamy pierwszą wysiadkę!","PlayerID":699272633,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5925","ServerKey":"pl181","X":603,"Y":486},{"Bonus":0,"Continent":"K55","ID":5926,"Name":"10011","PlayerID":848915531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5926","ServerKey":"pl181","X":532,"Y":555},{"Bonus":0,"Continent":"K54","ID":5927,"Name":"036 - one","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5927","ServerKey":"pl181","X":421,"Y":583},{"Bonus":0,"Continent":"K54","ID":5928,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5928","ServerKey":"pl181","X":484,"Y":503},{"Bonus":0,"Continent":"K54","ID":5929,"Name":"034","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5929","ServerKey":"pl181","X":414,"Y":521},{"Bonus":0,"Continent":"K45","ID":5930,"Name":"015","PlayerID":8191129,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5930","ServerKey":"pl181","X":526,"Y":498},{"Bonus":0,"Continent":"K45","ID":5931,"Name":"-[003]- Kanczenczonga","PlayerID":849092827,"Points":8124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5931","ServerKey":"pl181","X":555,"Y":482},{"Bonus":5,"Continent":"K45","ID":5932,"Name":"023","PlayerID":699788305,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5932","ServerKey":"pl181","X":531,"Y":428},{"Bonus":0,"Continent":"K54","ID":5933,"Name":"KIELBA 071","PlayerID":699342219,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5933","ServerKey":"pl181","X":474,"Y":579},{"Bonus":0,"Continent":"K55","ID":5934,"Name":"F007","PlayerID":699189792,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5934","ServerKey":"pl181","X":507,"Y":530},{"Bonus":0,"Continent":"K46","ID":5935,"Name":"A001","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5935","ServerKey":"pl181","X":609,"Y":450},{"Bonus":0,"Continent":"K44","ID":5936,"Name":"...Just like that","PlayerID":699723284,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5936","ServerKey":"pl181","X":471,"Y":475},{"Bonus":0,"Continent":"K45","ID":5937,"Name":"Szlachcic","PlayerID":699098531,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5937","ServerKey":"pl181","X":506,"Y":470},{"Bonus":6,"Continent":"K54","ID":5938,"Name":"-007-Richmond,VA","PlayerID":698971484,"Points":9490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5938","ServerKey":"pl181","X":449,"Y":517},{"Bonus":0,"Continent":"K45","ID":5939,"Name":".:011:. Fresk","PlayerID":8649412,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5939","ServerKey":"pl181","X":517,"Y":419},{"Bonus":0,"Continent":"K44","ID":5940,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5940","ServerKey":"pl181","X":423,"Y":472},{"Bonus":0,"Continent":"K55","ID":5941,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5941","ServerKey":"pl181","X":560,"Y":507},{"Bonus":0,"Continent":"K44","ID":5942,"Name":"020 Roswell","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5942","ServerKey":"pl181","X":441,"Y":474},{"Bonus":0,"Continent":"K45","ID":5943,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5943","ServerKey":"pl181","X":519,"Y":490},{"Bonus":0,"Continent":"K45","ID":5944,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5944","ServerKey":"pl181","X":560,"Y":446},{"Bonus":0,"Continent":"K56","ID":5945,"Name":"0007","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5945","ServerKey":"pl181","X":610,"Y":549},{"Bonus":0,"Continent":"K44","ID":5946,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5946","ServerKey":"pl181","X":495,"Y":431},{"Bonus":0,"Continent":"K35","ID":5947,"Name":"A013","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5947","ServerKey":"pl181","X":513,"Y":382},{"Bonus":0,"Continent":"K44","ID":5948,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5948","ServerKey":"pl181","X":466,"Y":444},{"Bonus":0,"Continent":"K54","ID":5949,"Name":"Sparta_56","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5949","ServerKey":"pl181","X":487,"Y":574},{"Bonus":0,"Continent":"K55","ID":5950,"Name":"[131]","PlayerID":8000875,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5950","ServerKey":"pl181","X":560,"Y":535},{"Bonus":0,"Continent":"K44","ID":5951,"Name":"B070","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5951","ServerKey":"pl181","X":484,"Y":454},{"Bonus":0,"Continent":"K44","ID":5952,"Name":"00976 Alakazam","PlayerID":3909522,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5952","ServerKey":"pl181","X":460,"Y":434},{"Bonus":2,"Continent":"K55","ID":5953,"Name":"[019] Gbuo gi","PlayerID":848985692,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5953","ServerKey":"pl181","X":584,"Y":532},{"Bonus":0,"Continent":"K45","ID":5955,"Name":"065.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5955","ServerKey":"pl181","X":507,"Y":492},{"Bonus":0,"Continent":"K54","ID":5956,"Name":"A.010","PlayerID":849088243,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5956","ServerKey":"pl181","X":414,"Y":575},{"Bonus":0,"Continent":"K45","ID":5957,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5957","ServerKey":"pl181","X":503,"Y":469},{"Bonus":0,"Continent":"K45","ID":5958,"Name":"Gattacka","PlayerID":699298370,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5958","ServerKey":"pl181","X":587,"Y":498},{"Bonus":0,"Continent":"K55","ID":5959,"Name":"0020 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5959","ServerKey":"pl181","X":506,"Y":561},{"Bonus":0,"Continent":"K44","ID":5960,"Name":"A032","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5960","ServerKey":"pl181","X":496,"Y":416},{"Bonus":0,"Continent":"K44","ID":5961,"Name":"0019","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5961","ServerKey":"pl181","X":466,"Y":466},{"Bonus":0,"Continent":"K44","ID":5962,"Name":"+44 84","PlayerID":698361257,"Points":9374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5962","ServerKey":"pl181","X":441,"Y":484},{"Bonus":0,"Continent":"K45","ID":5963,"Name":"!Arcanine","PlayerID":699795378,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5963","ServerKey":"pl181","X":571,"Y":447},{"Bonus":0,"Continent":"K45","ID":5964,"Name":"Wioska_08","PlayerID":8674163,"Points":4237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5964","ServerKey":"pl181","X":556,"Y":448},{"Bonus":0,"Continent":"K45","ID":5965,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5965","ServerKey":"pl181","X":520,"Y":497},{"Bonus":0,"Continent":"K45","ID":5966,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5966","ServerKey":"pl181","X":562,"Y":449},{"Bonus":0,"Continent":"K45","ID":5967,"Name":"[355] Chorągiewka na wietrze","PlayerID":848985692,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5967","ServerKey":"pl181","X":593,"Y":440},{"Bonus":0,"Continent":"K54","ID":5968,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":6579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5968","ServerKey":"pl181","X":467,"Y":504},{"Bonus":0,"Continent":"K43","ID":5969,"Name":"s181eo02","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5969","ServerKey":"pl181","X":396,"Y":449},{"Bonus":0,"Continent":"K55","ID":5970,"Name":"023 |","PlayerID":8000875,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5970","ServerKey":"pl181","X":559,"Y":559},{"Bonus":0,"Continent":"K44","ID":5971,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5971","ServerKey":"pl181","X":432,"Y":443},{"Bonus":0,"Continent":"K44","ID":5972,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":7249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5972","ServerKey":"pl181","X":497,"Y":466},{"Bonus":0,"Continent":"K54","ID":5973,"Name":"029. ALFI","PlayerID":8539216,"Points":935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5973","ServerKey":"pl181","X":477,"Y":570},{"Bonus":0,"Continent":"K55","ID":5974,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5974","ServerKey":"pl181","X":538,"Y":535},{"Bonus":0,"Continent":"K54","ID":5975,"Name":"keepo","PlayerID":848967710,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5975","ServerKey":"pl181","X":479,"Y":512},{"Bonus":0,"Continent":"K54","ID":5976,"Name":"Front_30","PlayerID":2585846,"Points":6047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5976","ServerKey":"pl181","X":453,"Y":520},{"Bonus":0,"Continent":"K44","ID":5977,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5977","ServerKey":"pl181","X":412,"Y":485},{"Bonus":0,"Continent":"K55","ID":5978,"Name":"lady","PlayerID":699703642,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5978","ServerKey":"pl181","X":510,"Y":559},{"Bonus":0,"Continent":"K55","ID":5979,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5979","ServerKey":"pl181","X":586,"Y":511},{"Bonus":0,"Continent":"K44","ID":5980,"Name":"164 Brasilia","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5980","ServerKey":"pl181","X":481,"Y":476},{"Bonus":0,"Continent":"K54","ID":5981,"Name":"*Ateny_65","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5981","ServerKey":"pl181","X":470,"Y":539},{"Bonus":3,"Continent":"K54","ID":5983,"Name":"009. ALFI","PlayerID":8539216,"Points":2435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5983","ServerKey":"pl181","X":480,"Y":571},{"Bonus":0,"Continent":"K44","ID":5985,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5985","ServerKey":"pl181","X":454,"Y":455},{"Bonus":0,"Continent":"K55","ID":5986,"Name":"Semantyka","PlayerID":699785935,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5986","ServerKey":"pl181","X":504,"Y":523},{"Bonus":0,"Continent":"K45","ID":5987,"Name":"0027","PlayerID":699432672,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5987","ServerKey":"pl181","X":539,"Y":473},{"Bonus":2,"Continent":"K44","ID":5988,"Name":"037 Minneapolis","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5988","ServerKey":"pl181","X":448,"Y":463},{"Bonus":0,"Continent":"K54","ID":5989,"Name":"B.001","PlayerID":849088243,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5989","ServerKey":"pl181","X":410,"Y":568},{"Bonus":0,"Continent":"K55","ID":5990,"Name":"Village","PlayerID":849094067,"Points":11479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5990","ServerKey":"pl181","X":517,"Y":580},{"Bonus":0,"Continent":"K45","ID":5991,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5991","ServerKey":"pl181","X":518,"Y":427},{"Bonus":0,"Continent":"K45","ID":5992,"Name":"x 012089","PlayerID":3909522,"Points":8370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5992","ServerKey":"pl181","X":551,"Y":462},{"Bonus":0,"Continent":"K45","ID":5993,"Name":".:121:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5993","ServerKey":"pl181","X":516,"Y":414},{"Bonus":0,"Continent":"K53","ID":5994,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5994","ServerKey":"pl181","X":381,"Y":509},{"Bonus":0,"Continent":"K44","ID":5995,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5995","ServerKey":"pl181","X":441,"Y":473},{"Bonus":0,"Continent":"K54","ID":5996,"Name":"*Ateny_60","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5996","ServerKey":"pl181","X":476,"Y":523},{"Bonus":0,"Continent":"K55","ID":5997,"Name":"Nic na krechę","PlayerID":699785935,"Points":5908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5997","ServerKey":"pl181","X":511,"Y":510},{"Bonus":0,"Continent":"K56","ID":5998,"Name":"029 Twierdza","PlayerID":8323711,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5998","ServerKey":"pl181","X":622,"Y":521},{"Bonus":0,"Continent":"K44","ID":5999,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=5999","ServerKey":"pl181","X":473,"Y":438},{"Bonus":0,"Continent":"K55","ID":6000,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6000","ServerKey":"pl181","X":575,"Y":548},{"Bonus":0,"Continent":"K44","ID":6001,"Name":"+44 71 Champagne au Mont dOr","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6001","ServerKey":"pl181","X":419,"Y":473},{"Bonus":0,"Continent":"K55","ID":6002,"Name":"Pilonia","PlayerID":849066849,"Points":8425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6002","ServerKey":"pl181","X":520,"Y":552},{"Bonus":0,"Continent":"K44","ID":6003,"Name":"7.62 mm","PlayerID":699777234,"Points":5416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6003","ServerKey":"pl181","X":490,"Y":438},{"Bonus":0,"Continent":"K55","ID":6004,"Name":"008","PlayerID":699194766,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6004","ServerKey":"pl181","X":559,"Y":536},{"Bonus":0,"Continent":"K54","ID":6005,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6005","ServerKey":"pl181","X":428,"Y":522},{"Bonus":0,"Continent":"K45","ID":6006,"Name":"-[034]- Molamenqing","PlayerID":849092827,"Points":7201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6006","ServerKey":"pl181","X":558,"Y":473},{"Bonus":1,"Continent":"K54","ID":6007,"Name":"Osada koczownikĂłw","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6007","ServerKey":"pl181","X":469,"Y":585},{"Bonus":0,"Continent":"K44","ID":6008,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6008","ServerKey":"pl181","X":418,"Y":428},{"Bonus":0,"Continent":"K54","ID":6009,"Name":"Sparta_72","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6009","ServerKey":"pl181","X":471,"Y":581},{"Bonus":0,"Continent":"K35","ID":6010,"Name":".:048:.Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6010","ServerKey":"pl181","X":507,"Y":393},{"Bonus":3,"Continent":"K55","ID":6011,"Name":"015 |","PlayerID":8000875,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6011","ServerKey":"pl181","X":562,"Y":550},{"Bonus":0,"Continent":"K45","ID":6012,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6012","ServerKey":"pl181","X":581,"Y":464},{"Bonus":0,"Continent":"K54","ID":6013,"Name":"SkrzydƂa","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6013","ServerKey":"pl181","X":496,"Y":528},{"Bonus":4,"Continent":"K44","ID":6014,"Name":"00975 Avada","PlayerID":3909522,"Points":10142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6014","ServerKey":"pl181","X":461,"Y":440},{"Bonus":0,"Continent":"K54","ID":6015,"Name":"A.012","PlayerID":849088243,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6015","ServerKey":"pl181","X":412,"Y":580},{"Bonus":0,"Continent":"K43","ID":6016,"Name":"Wioska Nacz0","PlayerID":698807570,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6016","ServerKey":"pl181","X":394,"Y":462},{"Bonus":0,"Continent":"K46","ID":6017,"Name":"002","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6017","ServerKey":"pl181","X":605,"Y":497},{"Bonus":0,"Continent":"K44","ID":6018,"Name":"Suppi","PlayerID":699856962,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6018","ServerKey":"pl181","X":443,"Y":450},{"Bonus":0,"Continent":"K55","ID":6019,"Name":"20017","PlayerID":848915531,"Points":9392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6019","ServerKey":"pl181","X":515,"Y":548},{"Bonus":0,"Continent":"K45","ID":6020,"Name":"Joms 027","PlayerID":699756210,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6020","ServerKey":"pl181","X":528,"Y":424},{"Bonus":0,"Continent":"K55","ID":6021,"Name":"JaamMwG 006","PlayerID":848987051,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6021","ServerKey":"pl181","X":526,"Y":521},{"Bonus":0,"Continent":"K45","ID":6022,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6022","ServerKey":"pl181","X":549,"Y":482},{"Bonus":0,"Continent":"K45","ID":6023,"Name":"Szlachcic","PlayerID":698867446,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6023","ServerKey":"pl181","X":566,"Y":474},{"Bonus":0,"Continent":"K45","ID":6024,"Name":"Wioska_04","PlayerID":8674163,"Points":5399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6024","ServerKey":"pl181","X":543,"Y":446},{"Bonus":0,"Continent":"K45","ID":6025,"Name":"Polania 003","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6025","ServerKey":"pl181","X":539,"Y":450},{"Bonus":0,"Continent":"K44","ID":6026,"Name":"K44 x031.","PlayerID":698364331,"Points":7075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6026","ServerKey":"pl181","X":453,"Y":431},{"Bonus":0,"Continent":"K55","ID":6027,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6027","ServerKey":"pl181","X":559,"Y":504},{"Bonus":0,"Continent":"K44","ID":6028,"Name":"021 Pensacola","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6028","ServerKey":"pl181","X":439,"Y":478},{"Bonus":0,"Continent":"K44","ID":6029,"Name":"?+44 85 Lyon Brotteaux","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6029","ServerKey":"pl181","X":455,"Y":485},{"Bonus":0,"Continent":"K64","ID":6030,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6030","ServerKey":"pl181","X":449,"Y":610},{"Bonus":0,"Continent":"K45","ID":6031,"Name":"[087]","PlayerID":8000875,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6031","ServerKey":"pl181","X":551,"Y":499},{"Bonus":0,"Continent":"K45","ID":6033,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6033","ServerKey":"pl181","X":520,"Y":429},{"Bonus":0,"Continent":"K45","ID":6034,"Name":"[131] North","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6034","ServerKey":"pl181","X":582,"Y":475},{"Bonus":0,"Continent":"K55","ID":6035,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6035","ServerKey":"pl181","X":517,"Y":576},{"Bonus":0,"Continent":"K45","ID":6036,"Name":"Wioska_03","PlayerID":8674163,"Points":8805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6036","ServerKey":"pl181","X":538,"Y":448},{"Bonus":0,"Continent":"K45","ID":6037,"Name":"[152] North","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6037","ServerKey":"pl181","X":568,"Y":470},{"Bonus":0,"Continent":"K45","ID":6038,"Name":"Wioska barbarzyƄska 017|","PlayerID":6343784,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6038","ServerKey":"pl181","X":557,"Y":411},{"Bonus":0,"Continent":"K54","ID":6039,"Name":"NOT?","PlayerID":9236866,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6039","ServerKey":"pl181","X":429,"Y":534},{"Bonus":0,"Continent":"K54","ID":6040,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6040","ServerKey":"pl181","X":493,"Y":590},{"Bonus":0,"Continent":"K44","ID":6041,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6041","ServerKey":"pl181","X":489,"Y":445},{"Bonus":0,"Continent":"K45","ID":6042,"Name":"027","PlayerID":699788305,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6042","ServerKey":"pl181","X":533,"Y":432},{"Bonus":0,"Continent":"K65","ID":6043,"Name":"yogi","PlayerID":2808172,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6043","ServerKey":"pl181","X":550,"Y":608},{"Bonus":0,"Continent":"K55","ID":6045,"Name":"Wioska 7","PlayerID":699385139,"Points":7908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6045","ServerKey":"pl181","X":525,"Y":509},{"Bonus":0,"Continent":"K55","ID":6047,"Name":"[101]","PlayerID":8000875,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6047","ServerKey":"pl181","X":551,"Y":535},{"Bonus":0,"Continent":"K55","ID":6048,"Name":"Wioska 8","PlayerID":699385139,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6048","ServerKey":"pl181","X":533,"Y":516},{"Bonus":0,"Continent":"K55","ID":6049,"Name":"City Ground","PlayerID":699194766,"Points":6342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6049","ServerKey":"pl181","X":547,"Y":515},{"Bonus":0,"Continent":"K54","ID":6050,"Name":"Niespodzinaka ?","PlayerID":699333701,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6050","ServerKey":"pl181","X":467,"Y":506},{"Bonus":0,"Continent":"K45","ID":6051,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6051","ServerKey":"pl181","X":525,"Y":437},{"Bonus":0,"Continent":"K35","ID":6052,"Name":"elqueria","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6052","ServerKey":"pl181","X":554,"Y":387},{"Bonus":0,"Continent":"K45","ID":6053,"Name":"Szlachcic","PlayerID":699759128,"Points":9679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6053","ServerKey":"pl181","X":578,"Y":497},{"Bonus":0,"Continent":"K44","ID":6054,"Name":"A022","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6054","ServerKey":"pl181","X":493,"Y":415},{"Bonus":0,"Continent":"K44","ID":6055,"Name":"+44 74 Airon Notre Dame","PlayerID":698361257,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6055","ServerKey":"pl181","X":443,"Y":476},{"Bonus":0,"Continent":"K54","ID":6056,"Name":"(002)","PlayerID":699846892,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6056","ServerKey":"pl181","X":423,"Y":544},{"Bonus":0,"Continent":"K54","ID":6057,"Name":"NOT?","PlayerID":9236866,"Points":4605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6057","ServerKey":"pl181","X":433,"Y":534},{"Bonus":0,"Continent":"K45","ID":6058,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6058","ServerKey":"pl181","X":535,"Y":424},{"Bonus":0,"Continent":"K64","ID":6059,"Name":"#043","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6059","ServerKey":"pl181","X":455,"Y":604},{"Bonus":0,"Continent":"K55","ID":6060,"Name":"0033","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6060","ServerKey":"pl181","X":519,"Y":510},{"Bonus":0,"Continent":"K44","ID":6061,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6061","ServerKey":"pl181","X":420,"Y":499},{"Bonus":0,"Continent":"K55","ID":6062,"Name":"[074] Tihlum rawh","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6062","ServerKey":"pl181","X":533,"Y":512},{"Bonus":0,"Continent":"K45","ID":6063,"Name":"10. Dennis Cranmer","PlayerID":698702991,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6063","ServerKey":"pl181","X":562,"Y":478},{"Bonus":0,"Continent":"K55","ID":6064,"Name":"ƚmieszkii","PlayerID":3454753,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6064","ServerKey":"pl181","X":519,"Y":574},{"Bonus":0,"Continent":"K55","ID":6065,"Name":"Szlachcic 030","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6065","ServerKey":"pl181","X":540,"Y":526},{"Bonus":0,"Continent":"K55","ID":6066,"Name":"Porysowany","PlayerID":699785935,"Points":5715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6066","ServerKey":"pl181","X":513,"Y":509},{"Bonus":0,"Continent":"K45","ID":6067,"Name":"041","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6067","ServerKey":"pl181","X":540,"Y":401},{"Bonus":0,"Continent":"K44","ID":6068,"Name":"B002","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6068","ServerKey":"pl181","X":487,"Y":447},{"Bonus":0,"Continent":"K55","ID":6069,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6069","ServerKey":"pl181","X":508,"Y":564},{"Bonus":0,"Continent":"K45","ID":6070,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6070","ServerKey":"pl181","X":527,"Y":413},{"Bonus":0,"Continent":"K54","ID":6071,"Name":"Obląg","PlayerID":699443920,"Points":8840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6071","ServerKey":"pl181","X":439,"Y":554},{"Bonus":0,"Continent":"K54","ID":6072,"Name":"NOT?","PlayerID":9236866,"Points":3401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6072","ServerKey":"pl181","X":429,"Y":545},{"Bonus":8,"Continent":"K55","ID":6073,"Name":"0.Mobilek","PlayerID":698215322,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6073","ServerKey":"pl181","X":519,"Y":580},{"Bonus":0,"Continent":"K44","ID":6074,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6074","ServerKey":"pl181","X":492,"Y":426},{"Bonus":0,"Continent":"K54","ID":6075,"Name":"Only","PlayerID":699443920,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6075","ServerKey":"pl181","X":436,"Y":558},{"Bonus":0,"Continent":"K55","ID":6076,"Name":"060.","PlayerID":8788366,"Points":7083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6076","ServerKey":"pl181","X":514,"Y":501},{"Bonus":0,"Continent":"K54","ID":6077,"Name":"Brat447","PlayerID":699262350,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6077","ServerKey":"pl181","X":464,"Y":504},{"Bonus":0,"Continent":"K44","ID":6078,"Name":"1xxxxxxxxxxxx","PlayerID":9291984,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6078","ServerKey":"pl181","X":467,"Y":429},{"Bonus":0,"Continent":"K44","ID":6079,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6079","ServerKey":"pl181","X":470,"Y":415},{"Bonus":0,"Continent":"K45","ID":6080,"Name":"#05.","PlayerID":848967710,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6080","ServerKey":"pl181","X":526,"Y":470},{"Bonus":0,"Continent":"K44","ID":6081,"Name":"009742","PlayerID":3909522,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6081","ServerKey":"pl181","X":464,"Y":443},{"Bonus":0,"Continent":"K44","ID":6082,"Name":"Praga","PlayerID":699660539,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6082","ServerKey":"pl181","X":426,"Y":457},{"Bonus":0,"Continent":"K44","ID":6083,"Name":"202 Kingston","PlayerID":1497168,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6083","ServerKey":"pl181","X":462,"Y":463},{"Bonus":0,"Continent":"K54","ID":6084,"Name":"F092","PlayerID":699189792,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6084","ServerKey":"pl181","X":489,"Y":534},{"Bonus":0,"Continent":"K44","ID":6085,"Name":"------------------4","PlayerID":9291984,"Points":10543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6085","ServerKey":"pl181","X":459,"Y":433},{"Bonus":0,"Continent":"K54","ID":6086,"Name":"KIELBA 037","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6086","ServerKey":"pl181","X":444,"Y":571},{"Bonus":0,"Continent":"K54","ID":6087,"Name":"079. ALFI","PlayerID":8539216,"Points":1725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6087","ServerKey":"pl181","X":480,"Y":556},{"Bonus":0,"Continent":"K45","ID":6088,"Name":"Wioska barbarzyƄska","PlayerID":8925695,"Points":7974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6088","ServerKey":"pl181","X":590,"Y":485},{"Bonus":0,"Continent":"K55","ID":6089,"Name":"Forteca","PlayerID":606407,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6089","ServerKey":"pl181","X":501,"Y":569},{"Bonus":0,"Continent":"K44","ID":6090,"Name":"A#002#","PlayerID":698807570,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6090","ServerKey":"pl181","X":404,"Y":472},{"Bonus":7,"Continent":"K45","ID":6091,"Name":"[088]","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6091","ServerKey":"pl181","X":541,"Y":487},{"Bonus":0,"Continent":"K65","ID":6092,"Name":"ƚmieszki","PlayerID":3454753,"Points":9199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6092","ServerKey":"pl181","X":536,"Y":614},{"Bonus":0,"Continent":"K45","ID":6093,"Name":".:020:. Chillout","PlayerID":848934935,"Points":6335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6093","ServerKey":"pl181","X":509,"Y":419},{"Bonus":0,"Continent":"K45","ID":6094,"Name":"BBB","PlayerID":1006847,"Points":9341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6094","ServerKey":"pl181","X":554,"Y":437},{"Bonus":0,"Continent":"K45","ID":6095,"Name":"028","PlayerID":699788305,"Points":8741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6095","ServerKey":"pl181","X":532,"Y":432},{"Bonus":0,"Continent":"K44","ID":6096,"Name":"+44 84","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6096","ServerKey":"pl181","X":443,"Y":480},{"Bonus":0,"Continent":"K44","ID":6097,"Name":"Suppi","PlayerID":699856962,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6097","ServerKey":"pl181","X":430,"Y":457},{"Bonus":0,"Continent":"K44","ID":6098,"Name":"Osada","PlayerID":699098531,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6098","ServerKey":"pl181","X":496,"Y":451},{"Bonus":0,"Continent":"K44","ID":6099,"Name":"011","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6099","ServerKey":"pl181","X":439,"Y":491},{"Bonus":0,"Continent":"K54","ID":6100,"Name":"2. Grille","PlayerID":849087855,"Points":7848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6100","ServerKey":"pl181","X":493,"Y":534},{"Bonus":0,"Continent":"K44","ID":6101,"Name":"ParyĆŒ","PlayerID":699660539,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6101","ServerKey":"pl181","X":424,"Y":457},{"Bonus":0,"Continent":"K45","ID":6102,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6102","ServerKey":"pl181","X":515,"Y":486},{"Bonus":0,"Continent":"K54","ID":6103,"Name":"F048","PlayerID":699189792,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6103","ServerKey":"pl181","X":488,"Y":525},{"Bonus":8,"Continent":"K44","ID":6104,"Name":"-------------2","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6104","ServerKey":"pl181","X":467,"Y":426},{"Bonus":0,"Continent":"K44","ID":6105,"Name":"006341","PlayerID":3909522,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6105","ServerKey":"pl181","X":440,"Y":432},{"Bonus":0,"Continent":"K55","ID":6106,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6106","ServerKey":"pl181","X":529,"Y":520},{"Bonus":4,"Continent":"K55","ID":6107,"Name":"016 |","PlayerID":8000875,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6107","ServerKey":"pl181","X":560,"Y":550},{"Bonus":0,"Continent":"K54","ID":6108,"Name":"~056.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6108","ServerKey":"pl181","X":489,"Y":542},{"Bonus":0,"Continent":"K54","ID":6109,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6109","ServerKey":"pl181","X":437,"Y":523},{"Bonus":0,"Continent":"K65","ID":6110,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6110","ServerKey":"pl181","X":536,"Y":617},{"Bonus":0,"Continent":"K45","ID":6111,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6111","ServerKey":"pl181","X":543,"Y":491},{"Bonus":0,"Continent":"K45","ID":6112,"Name":"A060","PlayerID":699299123,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6112","ServerKey":"pl181","X":502,"Y":430},{"Bonus":0,"Continent":"K54","ID":6113,"Name":"NOT?","PlayerID":9236866,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6113","ServerKey":"pl181","X":430,"Y":516},{"Bonus":3,"Continent":"K45","ID":6114,"Name":"OOIV","PlayerID":699658023,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6114","ServerKey":"pl181","X":508,"Y":437},{"Bonus":0,"Continent":"K55","ID":6115,"Name":"050","PlayerID":699189792,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6115","ServerKey":"pl181","X":528,"Y":573},{"Bonus":0,"Continent":"K54","ID":6116,"Name":"NOT?","PlayerID":9236866,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6116","ServerKey":"pl181","X":426,"Y":543},{"Bonus":0,"Continent":"K54","ID":6117,"Name":"Wioska 4","PlayerID":698971484,"Points":2849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6117","ServerKey":"pl181","X":443,"Y":542},{"Bonus":0,"Continent":"K54","ID":6118,"Name":"NOT?","PlayerID":9236866,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6118","ServerKey":"pl181","X":431,"Y":539},{"Bonus":0,"Continent":"K56","ID":6119,"Name":"0012. A - Petrovya","PlayerID":7125212,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6119","ServerKey":"pl181","X":608,"Y":525},{"Bonus":0,"Continent":"K54","ID":6120,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6120","ServerKey":"pl181","X":442,"Y":538},{"Bonus":0,"Continent":"K45","ID":6121,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":7195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6121","ServerKey":"pl181","X":524,"Y":440},{"Bonus":0,"Continent":"K44","ID":6122,"Name":"018 Norfolk","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6122","ServerKey":"pl181","X":441,"Y":475},{"Bonus":0,"Continent":"K44","ID":6123,"Name":"100 Jamestown","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6123","ServerKey":"pl181","X":474,"Y":482},{"Bonus":0,"Continent":"K54","ID":6124,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6124","ServerKey":"pl181","X":423,"Y":521},{"Bonus":0,"Continent":"K44","ID":6125,"Name":"045 Seattle","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6125","ServerKey":"pl181","X":467,"Y":467},{"Bonus":0,"Continent":"K54","ID":6126,"Name":"Kasyno","PlayerID":7249451,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6126","ServerKey":"pl181","X":448,"Y":518},{"Bonus":0,"Continent":"K65","ID":6127,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6127","ServerKey":"pl181","X":545,"Y":610},{"Bonus":0,"Continent":"K46","ID":6128,"Name":"065. Palmyra","PlayerID":849091866,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6128","ServerKey":"pl181","X":618,"Y":472},{"Bonus":0,"Continent":"K54","ID":6129,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6129","ServerKey":"pl181","X":456,"Y":539},{"Bonus":0,"Continent":"K54","ID":6130,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6130","ServerKey":"pl181","X":478,"Y":506},{"Bonus":0,"Continent":"K54","ID":6131,"Name":"#0064 MolekuƂa duszy","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6131","ServerKey":"pl181","X":490,"Y":562},{"Bonus":0,"Continent":"K44","ID":6132,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6132","ServerKey":"pl181","X":469,"Y":450},{"Bonus":0,"Continent":"K45","ID":6133,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6133","ServerKey":"pl181","X":511,"Y":472},{"Bonus":0,"Continent":"K45","ID":6134,"Name":"013 Cherrygrove City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6134","ServerKey":"pl181","X":590,"Y":498},{"Bonus":2,"Continent":"K44","ID":6135,"Name":"Szlachcic","PlayerID":699098531,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6135","ServerKey":"pl181","X":490,"Y":479},{"Bonus":0,"Continent":"K54","ID":6136,"Name":"033. ALFI","PlayerID":8539216,"Points":1508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6136","ServerKey":"pl181","X":477,"Y":552},{"Bonus":0,"Continent":"K54","ID":6137,"Name":"Castle of glass!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6137","ServerKey":"pl181","X":497,"Y":500},{"Bonus":0,"Continent":"K55","ID":6138,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6138","ServerKey":"pl181","X":586,"Y":509},{"Bonus":0,"Continent":"K45","ID":6139,"Name":"A053","PlayerID":699299123,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6139","ServerKey":"pl181","X":501,"Y":423},{"Bonus":0,"Continent":"K45","ID":6140,"Name":"zaboli","PlayerID":699368887,"Points":7788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6140","ServerKey":"pl181","X":551,"Y":451},{"Bonus":0,"Continent":"K45","ID":6141,"Name":"C044","PlayerID":699299123,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6141","ServerKey":"pl181","X":533,"Y":463},{"Bonus":0,"Continent":"K44","ID":6142,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6142","ServerKey":"pl181","X":436,"Y":405},{"Bonus":0,"Continent":"K44","ID":6143,"Name":"0005 CH","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6143","ServerKey":"pl181","X":425,"Y":410},{"Bonus":0,"Continent":"K54","ID":6144,"Name":"19 Valhalla","PlayerID":698290577,"Points":5621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6144","ServerKey":"pl181","X":484,"Y":506},{"Bonus":0,"Continent":"K45","ID":6145,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6145","ServerKey":"pl181","X":525,"Y":467},{"Bonus":0,"Continent":"K45","ID":6146,"Name":"069.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6146","ServerKey":"pl181","X":510,"Y":493},{"Bonus":0,"Continent":"K54","ID":6147,"Name":"Warzywniak 014","PlayerID":698290577,"Points":2349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6147","ServerKey":"pl181","X":449,"Y":546},{"Bonus":0,"Continent":"K54","ID":6148,"Name":"NOT?","PlayerID":9236866,"Points":4279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6148","ServerKey":"pl181","X":432,"Y":544},{"Bonus":0,"Continent":"K45","ID":6149,"Name":"BBB","PlayerID":1006847,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6149","ServerKey":"pl181","X":559,"Y":436},{"Bonus":0,"Continent":"K35","ID":6150,"Name":"001. Kaer Morhen","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6150","ServerKey":"pl181","X":563,"Y":399},{"Bonus":0,"Continent":"K44","ID":6151,"Name":"-025-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6151","ServerKey":"pl181","X":459,"Y":426},{"Bonus":0,"Continent":"K55","ID":6152,"Name":"Angband","PlayerID":849091897,"Points":8195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6152","ServerKey":"pl181","X":510,"Y":522},{"Bonus":0,"Continent":"K54","ID":6153,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":4030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6153","ServerKey":"pl181","X":473,"Y":514},{"Bonus":0,"Continent":"K55","ID":6154,"Name":"0.Davenport","PlayerID":698215322,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6154","ServerKey":"pl181","X":521,"Y":581},{"Bonus":0,"Continent":"K45","ID":6155,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6155","ServerKey":"pl181","X":521,"Y":496},{"Bonus":0,"Continent":"K55","ID":6156,"Name":"Wioska 427","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6156","ServerKey":"pl181","X":559,"Y":501},{"Bonus":0,"Continent":"K54","ID":6157,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6157","ServerKey":"pl181","X":465,"Y":559},{"Bonus":0,"Continent":"K45","ID":6158,"Name":"monetki","PlayerID":699098531,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6158","ServerKey":"pl181","X":507,"Y":441},{"Bonus":0,"Continent":"K55","ID":6159,"Name":"- 111 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6159","ServerKey":"pl181","X":538,"Y":572},{"Bonus":0,"Continent":"K45","ID":6160,"Name":"Szlachcic","PlayerID":699098531,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6160","ServerKey":"pl181","X":502,"Y":472},{"Bonus":0,"Continent":"K55","ID":6161,"Name":"0044 K55 and987 OZDR","PlayerID":3613413,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6161","ServerKey":"pl181","X":510,"Y":556},{"Bonus":0,"Continent":"K54","ID":6162,"Name":"Suppi","PlayerID":699856962,"Points":9896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6162","ServerKey":"pl181","X":471,"Y":539},{"Bonus":0,"Continent":"K55","ID":6163,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6163","ServerKey":"pl181","X":530,"Y":559},{"Bonus":0,"Continent":"K44","ID":6164,"Name":"B001","PlayerID":699299123,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6164","ServerKey":"pl181","X":486,"Y":449},{"Bonus":0,"Continent":"K44","ID":6165,"Name":"?+44 76 Recques sur Course","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6165","ServerKey":"pl181","X":467,"Y":475},{"Bonus":0,"Continent":"K44","ID":6166,"Name":"xxx","PlayerID":698239813,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6166","ServerKey":"pl181","X":486,"Y":424},{"Bonus":0,"Continent":"K44","ID":6167,"Name":"Osada","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6167","ServerKey":"pl181","X":497,"Y":446},{"Bonus":0,"Continent":"K44","ID":6168,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6168","ServerKey":"pl181","X":435,"Y":472},{"Bonus":0,"Continent":"K54","ID":6169,"Name":"2.Kanonjgpd !!!","PlayerID":849087855,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6169","ServerKey":"pl181","X":496,"Y":536},{"Bonus":0,"Continent":"K54","ID":6170,"Name":"042","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6170","ServerKey":"pl181","X":419,"Y":523},{"Bonus":4,"Continent":"K55","ID":6171,"Name":"Moria","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6171","ServerKey":"pl181","X":520,"Y":539},{"Bonus":0,"Continent":"K55","ID":6172,"Name":"Wioska Wojtek150 003","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6172","ServerKey":"pl181","X":531,"Y":520},{"Bonus":0,"Continent":"K54","ID":6173,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6173","ServerKey":"pl181","X":480,"Y":585},{"Bonus":0,"Continent":"K45","ID":6174,"Name":"113 Choroszcz","PlayerID":7092442,"Points":2273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6174","ServerKey":"pl181","X":540,"Y":454},{"Bonus":0,"Continent":"K54","ID":6175,"Name":"F047","PlayerID":699189792,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6175","ServerKey":"pl181","X":486,"Y":524},{"Bonus":0,"Continent":"K45","ID":6176,"Name":"Rampage 2","PlayerID":699355601,"Points":3173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6176","ServerKey":"pl181","X":525,"Y":477},{"Bonus":0,"Continent":"K55","ID":6177,"Name":"Winter is coming","PlayerID":699364813,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6177","ServerKey":"pl181","X":505,"Y":572},{"Bonus":0,"Continent":"K65","ID":6178,"Name":"Employee Housing Area","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6178","ServerKey":"pl181","X":515,"Y":609},{"Bonus":0,"Continent":"K55","ID":6179,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6179","ServerKey":"pl181","X":583,"Y":509},{"Bonus":0,"Continent":"K55","ID":6180,"Name":"z 020","PlayerID":699342219,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6180","ServerKey":"pl181","X":538,"Y":593},{"Bonus":0,"Continent":"K44","ID":6181,"Name":"040 Chattanooga","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6181","ServerKey":"pl181","X":448,"Y":467},{"Bonus":0,"Continent":"K55","ID":6182,"Name":"0.Palm Bay Mob","PlayerID":698215322,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6182","ServerKey":"pl181","X":525,"Y":579},{"Bonus":0,"Continent":"K55","ID":6183,"Name":"017","PlayerID":8191129,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6183","ServerKey":"pl181","X":532,"Y":514},{"Bonus":0,"Continent":"K54","ID":6184,"Name":"0093","PlayerID":698659980,"Points":8765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6184","ServerKey":"pl181","X":465,"Y":547},{"Bonus":0,"Continent":"K45","ID":6185,"Name":".:070:. Chillout","PlayerID":848934935,"Points":7509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6185","ServerKey":"pl181","X":505,"Y":421},{"Bonus":0,"Continent":"K45","ID":6186,"Name":".achim.","PlayerID":6936607,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6186","ServerKey":"pl181","X":541,"Y":432},{"Bonus":0,"Continent":"K45","ID":6187,"Name":"216 Mount Gambier","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6187","ServerKey":"pl181","X":533,"Y":428},{"Bonus":0,"Continent":"K54","ID":6188,"Name":"SPARTA_71","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6188","ServerKey":"pl181","X":468,"Y":581},{"Bonus":0,"Continent":"K54","ID":6189,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6189","ServerKey":"pl181","X":494,"Y":552},{"Bonus":0,"Continent":"K45","ID":6190,"Name":"x 0001","PlayerID":3909522,"Points":6082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6190","ServerKey":"pl181","X":548,"Y":461},{"Bonus":0,"Continent":"K44","ID":6191,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6191","ServerKey":"pl181","X":462,"Y":496},{"Bonus":0,"Continent":"K54","ID":6193,"Name":"030. ALFI","PlayerID":8539216,"Points":1290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6193","ServerKey":"pl181","X":477,"Y":571},{"Bonus":0,"Continent":"K55","ID":6194,"Name":"002. Licho","PlayerID":699703642,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6194","ServerKey":"pl181","X":508,"Y":591},{"Bonus":0,"Continent":"K55","ID":6195,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6195","ServerKey":"pl181","X":513,"Y":553},{"Bonus":0,"Continent":"K45","ID":6196,"Name":"ADEN","PlayerID":698588535,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6196","ServerKey":"pl181","X":567,"Y":438},{"Bonus":4,"Continent":"K54","ID":6197,"Name":"Osada L","PlayerID":699856962,"Points":8076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6197","ServerKey":"pl181","X":426,"Y":547},{"Bonus":0,"Continent":"K44","ID":6199,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6199","ServerKey":"pl181","X":477,"Y":447},{"Bonus":0,"Continent":"K35","ID":6200,"Name":"Kattegat","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6200","ServerKey":"pl181","X":536,"Y":384},{"Bonus":0,"Continent":"K54","ID":6201,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6201","ServerKey":"pl181","X":427,"Y":517},{"Bonus":0,"Continent":"K55","ID":6202,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6202","ServerKey":"pl181","X":574,"Y":501},{"Bonus":8,"Continent":"K45","ID":6203,"Name":"[132] North","PlayerID":848985692,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6203","ServerKey":"pl181","X":577,"Y":472},{"Bonus":0,"Continent":"K44","ID":6204,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6204","ServerKey":"pl181","X":411,"Y":499},{"Bonus":0,"Continent":"K54","ID":6205,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6205","ServerKey":"pl181","X":458,"Y":511},{"Bonus":0,"Continent":"K54","ID":6206,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6206","ServerKey":"pl181","X":452,"Y":505},{"Bonus":8,"Continent":"K54","ID":6207,"Name":"083. ALFI","PlayerID":8539216,"Points":1860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6207","ServerKey":"pl181","X":482,"Y":562},{"Bonus":0,"Continent":"K45","ID":6208,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":11653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6208","ServerKey":"pl181","X":568,"Y":451},{"Bonus":0,"Continent":"K54","ID":6209,"Name":"Kontrola Jakoƛci!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6209","ServerKey":"pl181","X":499,"Y":504},{"Bonus":0,"Continent":"K55","ID":6210,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6210","ServerKey":"pl181","X":519,"Y":584},{"Bonus":0,"Continent":"K55","ID":6211,"Name":"K55","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6211","ServerKey":"pl181","X":543,"Y":514},{"Bonus":0,"Continent":"K44","ID":6212,"Name":"A030","PlayerID":699299123,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6212","ServerKey":"pl181","X":497,"Y":413},{"Bonus":0,"Continent":"K54","ID":6213,"Name":"Mniejsze zƂo 0066","PlayerID":699794765,"Points":5256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6213","ServerKey":"pl181","X":421,"Y":505},{"Bonus":0,"Continent":"K45","ID":6214,"Name":"018","PlayerID":699788305,"Points":8632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6214","ServerKey":"pl181","X":527,"Y":435},{"Bonus":0,"Continent":"K54","ID":6215,"Name":"075. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6215","ServerKey":"pl181","X":496,"Y":514},{"Bonus":0,"Continent":"K44","ID":6216,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6216","ServerKey":"pl181","X":442,"Y":457},{"Bonus":0,"Continent":"K44","ID":6217,"Name":"025","PlayerID":699510259,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6217","ServerKey":"pl181","X":436,"Y":486},{"Bonus":0,"Continent":"K54","ID":6218,"Name":"XnX-03","PlayerID":699170684,"Points":7806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6218","ServerKey":"pl181","X":438,"Y":542},{"Bonus":0,"Continent":"K45","ID":6219,"Name":"KoƄczyć czas:)","PlayerID":699368887,"Points":6380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6219","ServerKey":"pl181","X":547,"Y":450},{"Bonus":2,"Continent":"K45","ID":6220,"Name":"003 Osada","PlayerID":848967710,"Points":6512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6220","ServerKey":"pl181","X":527,"Y":466},{"Bonus":0,"Continent":"K35","ID":6221,"Name":"018","PlayerID":849063849,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6221","ServerKey":"pl181","X":554,"Y":399},{"Bonus":0,"Continent":"K45","ID":6222,"Name":"33-wara od moich wiosek","PlayerID":849002091,"Points":7095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6222","ServerKey":"pl181","X":543,"Y":438},{"Bonus":0,"Continent":"K44","ID":6223,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6223","ServerKey":"pl181","X":442,"Y":447},{"Bonus":0,"Continent":"K45","ID":6224,"Name":"089 Orzech","PlayerID":7092442,"Points":8234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6224","ServerKey":"pl181","X":545,"Y":465},{"Bonus":0,"Continent":"K45","ID":6225,"Name":"004 Uber Schlesien","PlayerID":849031818,"Points":7604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6225","ServerKey":"pl181","X":567,"Y":480},{"Bonus":0,"Continent":"K55","ID":6226,"Name":"050 |","PlayerID":8000875,"Points":10425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6226","ServerKey":"pl181","X":550,"Y":537},{"Bonus":0,"Continent":"K55","ID":6227,"Name":"0054","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6227","ServerKey":"pl181","X":513,"Y":526},{"Bonus":0,"Continent":"K54","ID":6228,"Name":"Opti","PlayerID":699443920,"Points":4119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6228","ServerKey":"pl181","X":439,"Y":558},{"Bonus":0,"Continent":"K44","ID":6229,"Name":"0063 La Casa De Los Hombres","PlayerID":3909522,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6229","ServerKey":"pl181","X":446,"Y":427},{"Bonus":0,"Continent":"K45","ID":6230,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6230","ServerKey":"pl181","X":578,"Y":495},{"Bonus":2,"Continent":"K54","ID":6231,"Name":"#0030 ƚwiebodzin","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6231","ServerKey":"pl181","X":480,"Y":564},{"Bonus":0,"Continent":"K45","ID":6232,"Name":"U-6","PlayerID":3600737,"Points":6970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6232","ServerKey":"pl181","X":544,"Y":427},{"Bonus":0,"Continent":"K45","ID":6233,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6233","ServerKey":"pl181","X":512,"Y":483},{"Bonus":0,"Continent":"K44","ID":6234,"Name":"069 Harrisburg","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6234","ServerKey":"pl181","X":460,"Y":474},{"Bonus":0,"Continent":"K55","ID":6235,"Name":"72k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6235","ServerKey":"pl181","X":548,"Y":525},{"Bonus":0,"Continent":"K54","ID":6236,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6236","ServerKey":"pl181","X":485,"Y":554},{"Bonus":0,"Continent":"K44","ID":6237,"Name":"A025","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6237","ServerKey":"pl181","X":492,"Y":417},{"Bonus":0,"Continent":"K54","ID":6238,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6238","ServerKey":"pl181","X":435,"Y":527},{"Bonus":0,"Continent":"K54","ID":6239,"Name":"0111","PlayerID":698659980,"Points":9107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6239","ServerKey":"pl181","X":468,"Y":559},{"Bonus":0,"Continent":"K54","ID":6240,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6240","ServerKey":"pl181","X":469,"Y":566},{"Bonus":0,"Continent":"K54","ID":6241,"Name":"Lynortis","PlayerID":699698253,"Points":4249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6241","ServerKey":"pl181","X":458,"Y":541},{"Bonus":0,"Continent":"K45","ID":6242,"Name":"Joms 020","PlayerID":699756210,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6242","ServerKey":"pl181","X":531,"Y":418},{"Bonus":0,"Continent":"K54","ID":6243,"Name":"Front_17","PlayerID":2585846,"Points":3053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6243","ServerKey":"pl181","X":458,"Y":526},{"Bonus":0,"Continent":"K44","ID":6244,"Name":"061","PlayerID":699510259,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6244","ServerKey":"pl181","X":441,"Y":496},{"Bonus":0,"Continent":"K44","ID":6245,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6245","ServerKey":"pl181","X":416,"Y":488},{"Bonus":0,"Continent":"K45","ID":6246,"Name":"DEFF CENTRUM","PlayerID":8155296,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6246","ServerKey":"pl181","X":539,"Y":469},{"Bonus":0,"Continent":"K44","ID":6247,"Name":"136 Puerto Vallarta","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6247","ServerKey":"pl181","X":467,"Y":482},{"Bonus":0,"Continent":"K55","ID":6248,"Name":"Wioska 412","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6248","ServerKey":"pl181","X":563,"Y":509},{"Bonus":0,"Continent":"K35","ID":6249,"Name":"002","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6249","ServerKey":"pl181","X":504,"Y":381},{"Bonus":0,"Continent":"K45","ID":6250,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6250","ServerKey":"pl181","X":525,"Y":435},{"Bonus":0,"Continent":"K45","ID":6251,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6251","ServerKey":"pl181","X":522,"Y":415},{"Bonus":0,"Continent":"K55","ID":6252,"Name":"016 Goldenrod City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6252","ServerKey":"pl181","X":590,"Y":504},{"Bonus":0,"Continent":"K45","ID":6254,"Name":"Joms 034","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6254","ServerKey":"pl181","X":534,"Y":418},{"Bonus":0,"Continent":"K55","ID":6255,"Name":"Winter is coming","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6255","ServerKey":"pl181","X":503,"Y":580},{"Bonus":0,"Continent":"K55","ID":6256,"Name":"020","PlayerID":7581876,"Points":5751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6256","ServerKey":"pl181","X":512,"Y":531},{"Bonus":0,"Continent":"K55","ID":6257,"Name":"Forteca","PlayerID":606407,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6257","ServerKey":"pl181","X":500,"Y":569},{"Bonus":0,"Continent":"K64","ID":6258,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6258","ServerKey":"pl181","X":431,"Y":600},{"Bonus":0,"Continent":"K54","ID":6259,"Name":"KIELBA 007","PlayerID":699342219,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6259","ServerKey":"pl181","X":446,"Y":568},{"Bonus":0,"Continent":"K44","ID":6260,"Name":"0063","PlayerID":848913037,"Points":7829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6260","ServerKey":"pl181","X":462,"Y":462},{"Bonus":0,"Continent":"K45","ID":6261,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6261","ServerKey":"pl181","X":510,"Y":484},{"Bonus":0,"Continent":"K54","ID":6262,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6262","ServerKey":"pl181","X":491,"Y":579},{"Bonus":0,"Continent":"K54","ID":6263,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6263","ServerKey":"pl181","X":434,"Y":511},{"Bonus":0,"Continent":"K44","ID":6264,"Name":"075 Nowy Orlean","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6264","ServerKey":"pl181","X":470,"Y":456},{"Bonus":0,"Continent":"K45","ID":6265,"Name":"West 04","PlayerID":698702991,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6265","ServerKey":"pl181","X":587,"Y":475},{"Bonus":0,"Continent":"K44","ID":6266,"Name":"xxx","PlayerID":698239813,"Points":6081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6266","ServerKey":"pl181","X":490,"Y":442},{"Bonus":0,"Continent":"K55","ID":6267,"Name":"CALL 1060","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6267","ServerKey":"pl181","X":519,"Y":535},{"Bonus":0,"Continent":"K55","ID":6268,"Name":"Wioska 18","PlayerID":699385139,"Points":9480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6268","ServerKey":"pl181","X":520,"Y":511},{"Bonus":0,"Continent":"K54","ID":6269,"Name":"08 Zakręć kurą swą","PlayerID":699781762,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6269","ServerKey":"pl181","X":473,"Y":502},{"Bonus":0,"Continent":"K56","ID":6270,"Name":"003.","PlayerID":6520732,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6270","ServerKey":"pl181","X":608,"Y":526},{"Bonus":0,"Continent":"K54","ID":6271,"Name":"Front_01","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6271","ServerKey":"pl181","X":463,"Y":519},{"Bonus":0,"Continent":"K53","ID":6272,"Name":"Brat447 XXX","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6272","ServerKey":"pl181","X":386,"Y":503},{"Bonus":0,"Continent":"K44","ID":6273,"Name":"020","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6273","ServerKey":"pl181","X":457,"Y":436},{"Bonus":0,"Continent":"K45","ID":6274,"Name":"002","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6274","ServerKey":"pl181","X":573,"Y":409},{"Bonus":0,"Continent":"K44","ID":6275,"Name":"Szlachcic","PlayerID":699098531,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6275","ServerKey":"pl181","X":490,"Y":459},{"Bonus":0,"Continent":"K55","ID":6276,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6276","ServerKey":"pl181","X":521,"Y":500},{"Bonus":0,"Continent":"K45","ID":6277,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6277","ServerKey":"pl181","X":577,"Y":462},{"Bonus":0,"Continent":"K55","ID":6278,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6278","ServerKey":"pl181","X":533,"Y":505},{"Bonus":0,"Continent":"K44","ID":6279,"Name":"151 Quetzaltenango","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6279","ServerKey":"pl181","X":453,"Y":465},{"Bonus":0,"Continent":"K45","ID":6280,"Name":"001","PlayerID":698881022,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6280","ServerKey":"pl181","X":504,"Y":479},{"Bonus":0,"Continent":"K45","ID":6281,"Name":"Szlachcic","PlayerID":698867446,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6281","ServerKey":"pl181","X":561,"Y":492},{"Bonus":0,"Continent":"K45","ID":6282,"Name":"163","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6282","ServerKey":"pl181","X":538,"Y":418},{"Bonus":2,"Continent":"K55","ID":6283,"Name":"Szlachcic 011","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6283","ServerKey":"pl181","X":557,"Y":528},{"Bonus":0,"Continent":"K44","ID":6284,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6284","ServerKey":"pl181","X":492,"Y":489},{"Bonus":0,"Continent":"K44","ID":6285,"Name":"B008","PlayerID":699299123,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6285","ServerKey":"pl181","X":485,"Y":448},{"Bonus":0,"Continent":"K54","ID":6286,"Name":"Warzywniak 006","PlayerID":698290577,"Points":3048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6286","ServerKey":"pl181","X":448,"Y":543},{"Bonus":0,"Continent":"K46","ID":6287,"Name":"007","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6287","ServerKey":"pl181","X":605,"Y":496},{"Bonus":0,"Continent":"K55","ID":6288,"Name":"010","PlayerID":699194766,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6288","ServerKey":"pl181","X":547,"Y":522},{"Bonus":0,"Continent":"K45","ID":6289,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":8899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6289","ServerKey":"pl181","X":546,"Y":481},{"Bonus":0,"Continent":"K55","ID":6290,"Name":"0003","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6290","ServerKey":"pl181","X":511,"Y":518},{"Bonus":0,"Continent":"K65","ID":6291,"Name":"- 021 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6291","ServerKey":"pl181","X":539,"Y":600},{"Bonus":0,"Continent":"K44","ID":6292,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6292","ServerKey":"pl181","X":438,"Y":459},{"Bonus":0,"Continent":"K54","ID":6293,"Name":"CHW#038","PlayerID":699781762,"Points":8854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6293","ServerKey":"pl181","X":480,"Y":521},{"Bonus":0,"Continent":"K44","ID":6294,"Name":"PRO8L3M","PlayerID":7491093,"Points":8673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6294","ServerKey":"pl181","X":474,"Y":483},{"Bonus":0,"Continent":"K54","ID":6295,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6295","ServerKey":"pl181","X":484,"Y":534},{"Bonus":0,"Continent":"K45","ID":6296,"Name":"210 Port Pirie","PlayerID":1497168,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6296","ServerKey":"pl181","X":534,"Y":433},{"Bonus":1,"Continent":"K44","ID":6297,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6297","ServerKey":"pl181","X":491,"Y":467},{"Bonus":0,"Continent":"K54","ID":6298,"Name":"Wioska HI","PlayerID":8779575,"Points":2923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6298","ServerKey":"pl181","X":427,"Y":551},{"Bonus":0,"Continent":"K45","ID":6300,"Name":".:040:. Hak","PlayerID":8649412,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6300","ServerKey":"pl181","X":514,"Y":432},{"Bonus":0,"Continent":"K56","ID":6301,"Name":"Szlachcic PóƂnoc 006","PlayerID":698562644,"Points":7506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6301","ServerKey":"pl181","X":624,"Y":506},{"Bonus":0,"Continent":"K44","ID":6302,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6302","ServerKey":"pl181","X":440,"Y":457},{"Bonus":0,"Continent":"K44","ID":6303,"Name":"+44 72 Genas","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6303","ServerKey":"pl181","X":427,"Y":474},{"Bonus":0,"Continent":"K54","ID":6304,"Name":"Front_10","PlayerID":2585846,"Points":1916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6304","ServerKey":"pl181","X":459,"Y":523},{"Bonus":0,"Continent":"K54","ID":6305,"Name":"#0111 Talerz","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6305","ServerKey":"pl181","X":479,"Y":541},{"Bonus":0,"Continent":"K54","ID":6306,"Name":"039","PlayerID":699510259,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6306","ServerKey":"pl181","X":435,"Y":501},{"Bonus":0,"Continent":"K54","ID":6307,"Name":"Brat447","PlayerID":699262350,"Points":7374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6307","ServerKey":"pl181","X":460,"Y":506},{"Bonus":0,"Continent":"K55","ID":6308,"Name":"Szlachcic","PlayerID":698867446,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6308","ServerKey":"pl181","X":569,"Y":515},{"Bonus":0,"Continent":"K54","ID":6309,"Name":"a Wioska 1","PlayerID":3909522,"Points":4864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6309","ServerKey":"pl181","X":454,"Y":532},{"Bonus":0,"Continent":"K44","ID":6310,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6310","ServerKey":"pl181","X":423,"Y":461},{"Bonus":0,"Continent":"K45","ID":6311,"Name":"JM2","PlayerID":699368887,"Points":6007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6311","ServerKey":"pl181","X":561,"Y":454},{"Bonus":0,"Continent":"K45","ID":6312,"Name":"Kapitan_James_BƂąd_007","PlayerID":699368887,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6312","ServerKey":"pl181","X":557,"Y":455},{"Bonus":0,"Continent":"K54","ID":6313,"Name":"013 Fiona","PlayerID":698290577,"Points":5337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6313","ServerKey":"pl181","X":448,"Y":510},{"Bonus":0,"Continent":"K45","ID":6314,"Name":"K45 - 001","PlayerID":699368887,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6314","ServerKey":"pl181","X":561,"Y":464},{"Bonus":0,"Continent":"K45","ID":6315,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6315","ServerKey":"pl181","X":509,"Y":499},{"Bonus":0,"Continent":"K54","ID":6316,"Name":"Suppi","PlayerID":699856962,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6316","ServerKey":"pl181","X":437,"Y":520},{"Bonus":0,"Continent":"K45","ID":6317,"Name":"xxxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6317","ServerKey":"pl181","X":507,"Y":433},{"Bonus":0,"Continent":"K55","ID":6318,"Name":"Yogi","PlayerID":2808172,"Points":5414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6318","ServerKey":"pl181","X":534,"Y":527},{"Bonus":0,"Continent":"K55","ID":6319,"Name":"P.023","PlayerID":873575,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6319","ServerKey":"pl181","X":538,"Y":552},{"Bonus":2,"Continent":"K54","ID":6320,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6320","ServerKey":"pl181","X":465,"Y":566},{"Bonus":0,"Continent":"K54","ID":6321,"Name":"Suppi","PlayerID":699856962,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6321","ServerKey":"pl181","X":443,"Y":528},{"Bonus":0,"Continent":"K45","ID":6322,"Name":"004","PlayerID":848967710,"Points":6725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6322","ServerKey":"pl181","X":528,"Y":467},{"Bonus":0,"Continent":"K54","ID":6323,"Name":"(001)","PlayerID":9236866,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6323","ServerKey":"pl181","X":420,"Y":537},{"Bonus":0,"Continent":"K54","ID":6324,"Name":"(020)","PlayerID":9236866,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6324","ServerKey":"pl181","X":427,"Y":537},{"Bonus":0,"Continent":"K45","ID":6325,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6325","ServerKey":"pl181","X":515,"Y":495},{"Bonus":0,"Continent":"K45","ID":6326,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6326","ServerKey":"pl181","X":521,"Y":435},{"Bonus":0,"Continent":"K55","ID":6327,"Name":"019","PlayerID":8138506,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6327","ServerKey":"pl181","X":586,"Y":536},{"Bonus":0,"Continent":"K45","ID":6328,"Name":"K45 - 003","PlayerID":6510480,"Points":10079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6328","ServerKey":"pl181","X":559,"Y":464},{"Bonus":0,"Continent":"K54","ID":6329,"Name":"095","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6329","ServerKey":"pl181","X":413,"Y":522},{"Bonus":0,"Continent":"K55","ID":6330,"Name":"Gattacka","PlayerID":699298370,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6330","ServerKey":"pl181","X":582,"Y":515},{"Bonus":0,"Continent":"K44","ID":6331,"Name":"+44 72 Coquelles","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6331","ServerKey":"pl181","X":428,"Y":470},{"Bonus":0,"Continent":"K54","ID":6332,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6332","ServerKey":"pl181","X":479,"Y":542},{"Bonus":0,"Continent":"K44","ID":6333,"Name":"...Just like that","PlayerID":699723284,"Points":5851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6333","ServerKey":"pl181","X":459,"Y":488},{"Bonus":0,"Continent":"K45","ID":6334,"Name":"JaƂowęsy","PlayerID":8155296,"Points":8987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6334","ServerKey":"pl181","X":535,"Y":470},{"Bonus":0,"Continent":"K45","ID":6335,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6335","ServerKey":"pl181","X":521,"Y":426},{"Bonus":0,"Continent":"K55","ID":6336,"Name":"CALL 981","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6336","ServerKey":"pl181","X":549,"Y":567},{"Bonus":0,"Continent":"K44","ID":6337,"Name":"Szlachcic","PlayerID":699098531,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6337","ServerKey":"pl181","X":494,"Y":480},{"Bonus":0,"Continent":"K54","ID":6338,"Name":"keepo","PlayerID":848967710,"Points":8416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6338","ServerKey":"pl181","X":477,"Y":519},{"Bonus":0,"Continent":"K44","ID":6339,"Name":"0098","PlayerID":3909522,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6339","ServerKey":"pl181","X":459,"Y":439},{"Bonus":0,"Continent":"K55","ID":6340,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6340","ServerKey":"pl181","X":510,"Y":532},{"Bonus":0,"Continent":"K45","ID":6341,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":5699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6341","ServerKey":"pl181","X":539,"Y":426},{"Bonus":0,"Continent":"K54","ID":6342,"Name":"Kasyno","PlayerID":7249451,"Points":9865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6342","ServerKey":"pl181","X":443,"Y":509},{"Bonus":0,"Continent":"K54","ID":6343,"Name":"F016","PlayerID":699189792,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6343","ServerKey":"pl181","X":497,"Y":543},{"Bonus":0,"Continent":"K53","ID":6344,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6344","ServerKey":"pl181","X":379,"Y":518},{"Bonus":0,"Continent":"K54","ID":6345,"Name":"Orish","PlayerID":699443920,"Points":3284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6345","ServerKey":"pl181","X":430,"Y":555},{"Bonus":0,"Continent":"K54","ID":6346,"Name":"041","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6346","ServerKey":"pl181","X":417,"Y":526},{"Bonus":0,"Continent":"K54","ID":6347,"Name":"Oplot","PlayerID":699443920,"Points":6474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6347","ServerKey":"pl181","X":437,"Y":557},{"Bonus":0,"Continent":"K44","ID":6348,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6348","ServerKey":"pl181","X":445,"Y":468},{"Bonus":0,"Continent":"K55","ID":6349,"Name":"- 039 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6349","ServerKey":"pl181","X":532,"Y":581},{"Bonus":0,"Continent":"K44","ID":6350,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6350","ServerKey":"pl181","X":466,"Y":421},{"Bonus":0,"Continent":"K54","ID":6351,"Name":"SsSs","PlayerID":1536625,"Points":7563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6351","ServerKey":"pl181","X":453,"Y":501},{"Bonus":0,"Continent":"K45","ID":6352,"Name":"-[020]- Nuptse","PlayerID":849092827,"Points":7318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6352","ServerKey":"pl181","X":558,"Y":481},{"Bonus":0,"Continent":"K43","ID":6353,"Name":"0001 Gehenna Facility","PlayerID":698807570,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6353","ServerKey":"pl181","X":387,"Y":460},{"Bonus":0,"Continent":"K55","ID":6354,"Name":"10006","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6354","ServerKey":"pl181","X":529,"Y":562},{"Bonus":0,"Continent":"K44","ID":6355,"Name":"191 Cartagena","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6355","ServerKey":"pl181","X":470,"Y":472},{"Bonus":7,"Continent":"K44","ID":6356,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6356","ServerKey":"pl181","X":418,"Y":483},{"Bonus":0,"Continent":"K55","ID":6358,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6358","ServerKey":"pl181","X":585,"Y":509},{"Bonus":0,"Continent":"K44","ID":6359,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6359","ServerKey":"pl181","X":493,"Y":432},{"Bonus":0,"Continent":"K55","ID":6361,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6361","ServerKey":"pl181","X":524,"Y":532},{"Bonus":0,"Continent":"K44","ID":6362,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6362","ServerKey":"pl181","X":475,"Y":423},{"Bonus":0,"Continent":"K54","ID":6363,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":8786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6363","ServerKey":"pl181","X":482,"Y":527},{"Bonus":0,"Continent":"K44","ID":6364,"Name":"PRO8L3M","PlayerID":7491093,"Points":7690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6364","ServerKey":"pl181","X":461,"Y":498},{"Bonus":0,"Continent":"K55","ID":6365,"Name":"021","PlayerID":8191129,"Points":7247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6365","ServerKey":"pl181","X":527,"Y":516},{"Bonus":0,"Continent":"K54","ID":6366,"Name":"Ateny_75","PlayerID":2585846,"Points":4621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6366","ServerKey":"pl181","X":474,"Y":521},{"Bonus":0,"Continent":"K45","ID":6367,"Name":"24.","PlayerID":698702991,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6367","ServerKey":"pl181","X":565,"Y":475},{"Bonus":0,"Continent":"K64","ID":6368,"Name":"001. Gloria Victis","PlayerID":848886973,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6368","ServerKey":"pl181","X":439,"Y":605},{"Bonus":0,"Continent":"K54","ID":6369,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":8472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6369","ServerKey":"pl181","X":449,"Y":567},{"Bonus":0,"Continent":"K55","ID":6370,"Name":"0078","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6370","ServerKey":"pl181","X":528,"Y":542},{"Bonus":0,"Continent":"K55","ID":6371,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6371","ServerKey":"pl181","X":585,"Y":508},{"Bonus":0,"Continent":"K54","ID":6372,"Name":"1. Type 58 G !!!","PlayerID":849087855,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6372","ServerKey":"pl181","X":494,"Y":531},{"Bonus":6,"Continent":"K44","ID":6373,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6373","ServerKey":"pl181","X":418,"Y":480},{"Bonus":0,"Continent":"K45","ID":6374,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6374","ServerKey":"pl181","X":510,"Y":476},{"Bonus":0,"Continent":"K55","ID":6375,"Name":"028 |","PlayerID":8000875,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6375","ServerKey":"pl181","X":556,"Y":561},{"Bonus":0,"Continent":"K55","ID":6376,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":7376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6376","ServerKey":"pl181","X":521,"Y":542},{"Bonus":0,"Continent":"K54","ID":6377,"Name":"keepo","PlayerID":848967710,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6377","ServerKey":"pl181","X":481,"Y":534},{"Bonus":0,"Continent":"K45","ID":6378,"Name":".:069:. Chillout","PlayerID":848934935,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6378","ServerKey":"pl181","X":503,"Y":418},{"Bonus":0,"Continent":"K54","ID":6379,"Name":"NOT?","PlayerID":9236866,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6379","ServerKey":"pl181","X":438,"Y":530},{"Bonus":0,"Continent":"K64","ID":6380,"Name":"NIERAJ001","PlayerID":33900,"Points":10356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6380","ServerKey":"pl181","X":469,"Y":612},{"Bonus":0,"Continent":"K45","ID":6381,"Name":"073.","PlayerID":849094609,"Points":7535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6381","ServerKey":"pl181","X":568,"Y":458},{"Bonus":0,"Continent":"K34","ID":6382,"Name":"0076","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6382","ServerKey":"pl181","X":456,"Y":395},{"Bonus":0,"Continent":"K45","ID":6383,"Name":"Gattacka","PlayerID":699298370,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6383","ServerKey":"pl181","X":590,"Y":493},{"Bonus":0,"Continent":"K43","ID":6384,"Name":"A0006","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6384","ServerKey":"pl181","X":388,"Y":479},{"Bonus":0,"Continent":"K55","ID":6385,"Name":"Forteca","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6385","ServerKey":"pl181","X":500,"Y":570},{"Bonus":0,"Continent":"K54","ID":6386,"Name":"FF001","PlayerID":699189792,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6386","ServerKey":"pl181","X":469,"Y":517},{"Bonus":0,"Continent":"K54","ID":6387,"Name":"040","PlayerID":699510259,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6387","ServerKey":"pl181","X":436,"Y":502},{"Bonus":0,"Continent":"K55","ID":6388,"Name":"[145]","PlayerID":8000875,"Points":9099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6388","ServerKey":"pl181","X":568,"Y":535},{"Bonus":0,"Continent":"K44","ID":6389,"Name":"[A]_[023] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6389","ServerKey":"pl181","X":404,"Y":486},{"Bonus":0,"Continent":"K44","ID":6390,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6390","ServerKey":"pl181","X":437,"Y":463},{"Bonus":0,"Continent":"K45","ID":6391,"Name":"109 Aha","PlayerID":7092442,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6391","ServerKey":"pl181","X":551,"Y":467},{"Bonus":0,"Continent":"K45","ID":6393,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6393","ServerKey":"pl181","X":566,"Y":495},{"Bonus":0,"Continent":"K54","ID":6394,"Name":"Your Body!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6394","ServerKey":"pl181","X":499,"Y":502},{"Bonus":0,"Continent":"K54","ID":6395,"Name":"Kasyno","PlayerID":7249451,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6395","ServerKey":"pl181","X":448,"Y":514},{"Bonus":0,"Continent":"K54","ID":6396,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6396","ServerKey":"pl181","X":431,"Y":510},{"Bonus":0,"Continent":"K44","ID":6397,"Name":"0063 11","PlayerID":3909522,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6397","ServerKey":"pl181","X":452,"Y":427},{"Bonus":0,"Continent":"K55","ID":6398,"Name":"P.022","PlayerID":873575,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6398","ServerKey":"pl181","X":539,"Y":550},{"Bonus":0,"Continent":"K44","ID":6399,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6399","ServerKey":"pl181","X":471,"Y":432},{"Bonus":0,"Continent":"K54","ID":6400,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6400","ServerKey":"pl181","X":482,"Y":500},{"Bonus":0,"Continent":"K54","ID":6401,"Name":"025","PlayerID":698659980,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6401","ServerKey":"pl181","X":438,"Y":597},{"Bonus":0,"Continent":"K55","ID":6402,"Name":"002.","PlayerID":699695167,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6402","ServerKey":"pl181","X":523,"Y":555},{"Bonus":0,"Continent":"K54","ID":6403,"Name":"050","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6403","ServerKey":"pl181","X":425,"Y":517},{"Bonus":0,"Continent":"K44","ID":6404,"Name":"SsSs","PlayerID":1536625,"Points":8318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6404","ServerKey":"pl181","X":452,"Y":496},{"Bonus":0,"Continent":"K54","ID":6406,"Name":"Fajna 090","PlayerID":8539216,"Points":831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6406","ServerKey":"pl181","X":455,"Y":568},{"Bonus":0,"Continent":"K54","ID":6407,"Name":"*Ateny_47","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6407","ServerKey":"pl181","X":468,"Y":529},{"Bonus":5,"Continent":"K55","ID":6408,"Name":"[081]","PlayerID":8000875,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6408","ServerKey":"pl181","X":555,"Y":547},{"Bonus":0,"Continent":"K45","ID":6409,"Name":"LEƚNE KRÓLESTWO","PlayerID":8155296,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6409","ServerKey":"pl181","X":537,"Y":454},{"Bonus":0,"Continent":"K44","ID":6410,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6410","ServerKey":"pl181","X":471,"Y":433},{"Bonus":0,"Continent":"K44","ID":6411,"Name":"Suppi","PlayerID":699856962,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6411","ServerKey":"pl181","X":428,"Y":451},{"Bonus":0,"Continent":"K45","ID":6412,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6412","ServerKey":"pl181","X":542,"Y":478},{"Bonus":0,"Continent":"K44","ID":6413,"Name":"105 Saskatoon","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6413","ServerKey":"pl181","X":476,"Y":483},{"Bonus":0,"Continent":"K55","ID":6414,"Name":"CALL 954","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6414","ServerKey":"pl181","X":545,"Y":554},{"Bonus":0,"Continent":"K54","ID":6415,"Name":"Erebor 7","PlayerID":699383121,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6415","ServerKey":"pl181","X":499,"Y":591},{"Bonus":0,"Continent":"K44","ID":6416,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6416","ServerKey":"pl181","X":464,"Y":420},{"Bonus":0,"Continent":"K44","ID":6417,"Name":"0056 Zodiak","PlayerID":3909522,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6417","ServerKey":"pl181","X":439,"Y":428},{"Bonus":0,"Continent":"K54","ID":6418,"Name":"NOT?","PlayerID":9236866,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6418","ServerKey":"pl181","X":413,"Y":507},{"Bonus":0,"Continent":"K55","ID":6419,"Name":"- 215 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6419","ServerKey":"pl181","X":551,"Y":573},{"Bonus":0,"Continent":"K35","ID":6420,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6420","ServerKey":"pl181","X":525,"Y":398},{"Bonus":0,"Continent":"K54","ID":6421,"Name":"kathare","PlayerID":873575,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6421","ServerKey":"pl181","X":496,"Y":577},{"Bonus":0,"Continent":"K54","ID":6422,"Name":"Carsultyal.","PlayerID":698704189,"Points":6218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6422","ServerKey":"pl181","X":487,"Y":553},{"Bonus":0,"Continent":"K44","ID":6423,"Name":"Osada","PlayerID":699098531,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6423","ServerKey":"pl181","X":492,"Y":453},{"Bonus":0,"Continent":"K44","ID":6424,"Name":"Konfiasze","PlayerID":698908912,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6424","ServerKey":"pl181","X":474,"Y":495},{"Bonus":0,"Continent":"K55","ID":6425,"Name":"014 |","PlayerID":8000875,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6425","ServerKey":"pl181","X":568,"Y":552},{"Bonus":0,"Continent":"K55","ID":6426,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6426","ServerKey":"pl181","X":515,"Y":535},{"Bonus":0,"Continent":"K44","ID":6427,"Name":"00901","PlayerID":3909522,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6427","ServerKey":"pl181","X":452,"Y":436},{"Bonus":0,"Continent":"K54","ID":6428,"Name":"#0036 Agrest","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6428","ServerKey":"pl181","X":498,"Y":567},{"Bonus":0,"Continent":"K44","ID":6429,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6429","ServerKey":"pl181","X":474,"Y":437},{"Bonus":0,"Continent":"K45","ID":6431,"Name":"BBB","PlayerID":1006847,"Points":8653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6431","ServerKey":"pl181","X":553,"Y":438},{"Bonus":0,"Continent":"K54","ID":6432,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6432","ServerKey":"pl181","X":441,"Y":531},{"Bonus":0,"Continent":"K55","ID":6433,"Name":"Wioska 423","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6433","ServerKey":"pl181","X":558,"Y":504},{"Bonus":0,"Continent":"K53","ID":6434,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6434","ServerKey":"pl181","X":381,"Y":501},{"Bonus":0,"Continent":"K44","ID":6435,"Name":"PRO8L3M","PlayerID":7491093,"Points":8999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6435","ServerKey":"pl181","X":464,"Y":487},{"Bonus":0,"Continent":"K55","ID":6436,"Name":"sas","PlayerID":7581876,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6436","ServerKey":"pl181","X":536,"Y":539},{"Bonus":0,"Continent":"K44","ID":6437,"Name":"Osada","PlayerID":699098531,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6437","ServerKey":"pl181","X":493,"Y":445},{"Bonus":0,"Continent":"K54","ID":6438,"Name":"#0031 ƚwidwin","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6438","ServerKey":"pl181","X":485,"Y":566},{"Bonus":0,"Continent":"K45","ID":6439,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6439","ServerKey":"pl181","X":516,"Y":471},{"Bonus":0,"Continent":"K44","ID":6440,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6440","ServerKey":"pl181","X":479,"Y":430},{"Bonus":0,"Continent":"K45","ID":6441,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6441","ServerKey":"pl181","X":595,"Y":431},{"Bonus":0,"Continent":"K44","ID":6442,"Name":"0063 b2qqqqqqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6442","ServerKey":"pl181","X":453,"Y":429},{"Bonus":0,"Continent":"K54","ID":6443,"Name":"#0012 Szalony Ogier","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6443","ServerKey":"pl181","X":485,"Y":549},{"Bonus":0,"Continent":"K44","ID":6445,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6445","ServerKey":"pl181","X":441,"Y":458},{"Bonus":0,"Continent":"K54","ID":6446,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6446","ServerKey":"pl181","X":469,"Y":511},{"Bonus":0,"Continent":"K45","ID":6447,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6447","ServerKey":"pl181","X":577,"Y":494},{"Bonus":0,"Continent":"K55","ID":6449,"Name":"0085","PlayerID":699432672,"Points":8261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6449","ServerKey":"pl181","X":545,"Y":527},{"Bonus":0,"Continent":"K44","ID":6450,"Name":"Suppi","PlayerID":699856962,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6450","ServerKey":"pl181","X":424,"Y":425},{"Bonus":0,"Continent":"K45","ID":6451,"Name":"-[004]- Lhotse","PlayerID":849092827,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6451","ServerKey":"pl181","X":555,"Y":481},{"Bonus":0,"Continent":"K55","ID":6452,"Name":"- 063 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6452","ServerKey":"pl181","X":536,"Y":570},{"Bonus":0,"Continent":"K54","ID":6453,"Name":"BETI 004","PlayerID":8539216,"Points":1866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6453","ServerKey":"pl181","X":457,"Y":572},{"Bonus":0,"Continent":"K44","ID":6454,"Name":"0051 Bombas","PlayerID":3909522,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6454","ServerKey":"pl181","X":436,"Y":424},{"Bonus":0,"Continent":"K55","ID":6455,"Name":"013","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6455","ServerKey":"pl181","X":581,"Y":534},{"Bonus":0,"Continent":"K53","ID":6456,"Name":"SZYMI PALACE 1","PlayerID":9167250,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6456","ServerKey":"pl181","X":392,"Y":539},{"Bonus":0,"Continent":"K45","ID":6457,"Name":"015","PlayerID":699368887,"Points":6107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6457","ServerKey":"pl181","X":560,"Y":461},{"Bonus":0,"Continent":"K44","ID":6458,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6458","ServerKey":"pl181","X":437,"Y":443},{"Bonus":4,"Continent":"K44","ID":6459,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6459","ServerKey":"pl181","X":471,"Y":443},{"Bonus":0,"Continent":"K45","ID":6460,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6460","ServerKey":"pl181","X":534,"Y":453},{"Bonus":0,"Continent":"K54","ID":6461,"Name":"Warzywniak 010","PlayerID":698290577,"Points":2111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6461","ServerKey":"pl181","X":443,"Y":545},{"Bonus":0,"Continent":"K54","ID":6462,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6462","ServerKey":"pl181","X":450,"Y":561},{"Bonus":0,"Continent":"K44","ID":6463,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6463","ServerKey":"pl181","X":427,"Y":448},{"Bonus":0,"Continent":"K55","ID":6464,"Name":"Szlachcic 042","PlayerID":758104,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6464","ServerKey":"pl181","X":567,"Y":526},{"Bonus":3,"Continent":"K55","ID":6465,"Name":"Mordor","PlayerID":849091897,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6465","ServerKey":"pl181","X":503,"Y":531},{"Bonus":0,"Continent":"K44","ID":6466,"Name":"Suppi","PlayerID":699856962,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6466","ServerKey":"pl181","X":432,"Y":452},{"Bonus":0,"Continent":"K45","ID":6467,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6467","ServerKey":"pl181","X":500,"Y":428},{"Bonus":0,"Continent":"K54","ID":6468,"Name":"SSJ 002","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6468","ServerKey":"pl181","X":489,"Y":596},{"Bonus":0,"Continent":"K44","ID":6469,"Name":"038","PlayerID":699510259,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6469","ServerKey":"pl181","X":485,"Y":482},{"Bonus":0,"Continent":"K55","ID":6470,"Name":"0049 K55 and987 OZDR","PlayerID":3613413,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6470","ServerKey":"pl181","X":500,"Y":553},{"Bonus":0,"Continent":"K54","ID":6471,"Name":"003 Fiona","PlayerID":698290577,"Points":6047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6471","ServerKey":"pl181","X":446,"Y":504},{"Bonus":0,"Continent":"K45","ID":6472,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6472","ServerKey":"pl181","X":501,"Y":468},{"Bonus":0,"Continent":"K44","ID":6473,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6473","ServerKey":"pl181","X":498,"Y":442},{"Bonus":0,"Continent":"K44","ID":6474,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6474","ServerKey":"pl181","X":482,"Y":415},{"Bonus":0,"Continent":"K55","ID":6475,"Name":"0208","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6475","ServerKey":"pl181","X":524,"Y":592},{"Bonus":0,"Continent":"K54","ID":6476,"Name":"Suppi","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6476","ServerKey":"pl181","X":436,"Y":520},{"Bonus":0,"Continent":"K55","ID":6477,"Name":"Ost-in-Edhil","PlayerID":849091897,"Points":8751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6477","ServerKey":"pl181","X":503,"Y":512},{"Bonus":0,"Continent":"K55","ID":6478,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6478","ServerKey":"pl181","X":581,"Y":536},{"Bonus":0,"Continent":"K54","ID":6479,"Name":"001. Harnaƛ","PlayerID":8779575,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6479","ServerKey":"pl181","X":428,"Y":550},{"Bonus":0,"Continent":"K45","ID":6480,"Name":"Marienburg 4","PlayerID":699355601,"Points":5368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6480","ServerKey":"pl181","X":528,"Y":476},{"Bonus":0,"Continent":"K35","ID":6481,"Name":"0029","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6481","ServerKey":"pl181","X":561,"Y":391},{"Bonus":4,"Continent":"K45","ID":6482,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6482","ServerKey":"pl181","X":564,"Y":494},{"Bonus":0,"Continent":"K45","ID":6483,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6483","ServerKey":"pl181","X":544,"Y":480},{"Bonus":0,"Continent":"K44","ID":6484,"Name":"015 Texas","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6484","ServerKey":"pl181","X":432,"Y":426},{"Bonus":0,"Continent":"K54","ID":6485,"Name":"Suppi","PlayerID":699856962,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6485","ServerKey":"pl181","X":440,"Y":524},{"Bonus":0,"Continent":"K45","ID":6486,"Name":"075.","PlayerID":849094609,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6486","ServerKey":"pl181","X":570,"Y":461},{"Bonus":0,"Continent":"K45","ID":6487,"Name":"064","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6487","ServerKey":"pl181","X":554,"Y":433},{"Bonus":0,"Continent":"K55","ID":6488,"Name":"P.010","PlayerID":873575,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6488","ServerKey":"pl181","X":539,"Y":561},{"Bonus":0,"Continent":"K55","ID":6489,"Name":"Winter is coming","PlayerID":699364813,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6489","ServerKey":"pl181","X":508,"Y":578},{"Bonus":0,"Continent":"K54","ID":6490,"Name":"Winter is coming","PlayerID":698971484,"Points":3370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6490","ServerKey":"pl181","X":440,"Y":545},{"Bonus":0,"Continent":"K45","ID":6491,"Name":".achim.","PlayerID":6936607,"Points":7513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6491","ServerKey":"pl181","X":532,"Y":451},{"Bonus":0,"Continent":"K55","ID":6492,"Name":"0074","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6492","ServerKey":"pl181","X":549,"Y":527},{"Bonus":0,"Continent":"K44","ID":6493,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6493","ServerKey":"pl181","X":434,"Y":463},{"Bonus":0,"Continent":"K44","ID":6494,"Name":"-014-","PlayerID":9291984,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6494","ServerKey":"pl181","X":453,"Y":415},{"Bonus":0,"Continent":"K45","ID":6495,"Name":"aaa","PlayerID":699347951,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6495","ServerKey":"pl181","X":565,"Y":484},{"Bonus":0,"Continent":"K54","ID":6496,"Name":"NOT?","PlayerID":9236866,"Points":7671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6496","ServerKey":"pl181","X":436,"Y":532},{"Bonus":0,"Continent":"K55","ID":6497,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6497","ServerKey":"pl181","X":517,"Y":571},{"Bonus":0,"Continent":"K54","ID":6498,"Name":"Opas","PlayerID":699443920,"Points":3529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6498","ServerKey":"pl181","X":434,"Y":560},{"Bonus":3,"Continent":"K55","ID":6499,"Name":"0.Phoenix","PlayerID":698215322,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6499","ServerKey":"pl181","X":522,"Y":586},{"Bonus":0,"Continent":"K45","ID":6500,"Name":"ADEN","PlayerID":698588535,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6500","ServerKey":"pl181","X":559,"Y":448},{"Bonus":0,"Continent":"K44","ID":6501,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6501","ServerKey":"pl181","X":437,"Y":444},{"Bonus":0,"Continent":"K44","ID":6502,"Name":"Os Konfederacja +","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6502","ServerKey":"pl181","X":476,"Y":445},{"Bonus":0,"Continent":"K45","ID":6503,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6503","ServerKey":"pl181","X":571,"Y":497},{"Bonus":0,"Continent":"K55","ID":6504,"Name":"|008|","PlayerID":873575,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6504","ServerKey":"pl181","X":552,"Y":570},{"Bonus":0,"Continent":"K55","ID":6505,"Name":"JaamMwG 018","PlayerID":848987051,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6505","ServerKey":"pl181","X":525,"Y":517},{"Bonus":0,"Continent":"K45","ID":6506,"Name":"ADEN","PlayerID":698588535,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6506","ServerKey":"pl181","X":558,"Y":446},{"Bonus":0,"Continent":"K45","ID":6507,"Name":"Wioska 503","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6507","ServerKey":"pl181","X":578,"Y":455},{"Bonus":0,"Continent":"K55","ID":6508,"Name":"PYRLANDIA 040 $+C","PlayerID":33900,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6508","ServerKey":"pl181","X":578,"Y":594},{"Bonus":0,"Continent":"K44","ID":6509,"Name":"025 Bayou La Batre","PlayerID":1497168,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6509","ServerKey":"pl181","X":449,"Y":470},{"Bonus":0,"Continent":"K54","ID":6510,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6510","ServerKey":"pl181","X":453,"Y":505},{"Bonus":0,"Continent":"K54","ID":6511,"Name":"Mniejsze zƂo 0055","PlayerID":699794765,"Points":7553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6511","ServerKey":"pl181","X":421,"Y":506},{"Bonus":3,"Continent":"K54","ID":6512,"Name":"Kasyno","PlayerID":7249451,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6512","ServerKey":"pl181","X":442,"Y":510},{"Bonus":0,"Continent":"K45","ID":6513,"Name":"021","PlayerID":849031818,"Points":9181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6513","ServerKey":"pl181","X":583,"Y":458},{"Bonus":0,"Continent":"K44","ID":6514,"Name":"A008","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6514","ServerKey":"pl181","X":489,"Y":415},{"Bonus":0,"Continent":"K44","ID":6515,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6515","ServerKey":"pl181","X":443,"Y":495},{"Bonus":0,"Continent":"K54","ID":6516,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6516","ServerKey":"pl181","X":434,"Y":529},{"Bonus":0,"Continent":"K55","ID":6517,"Name":"Gattacka","PlayerID":699298370,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6517","ServerKey":"pl181","X":587,"Y":501},{"Bonus":0,"Continent":"K44","ID":6518,"Name":"B068","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6518","ServerKey":"pl181","X":473,"Y":472},{"Bonus":8,"Continent":"K45","ID":6519,"Name":"D03","PlayerID":699368887,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6519","ServerKey":"pl181","X":548,"Y":463},{"Bonus":0,"Continent":"K54","ID":6520,"Name":"Front_05","PlayerID":2585846,"Points":3756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6520","ServerKey":"pl181","X":460,"Y":521},{"Bonus":0,"Continent":"K54","ID":6521,"Name":"F060","PlayerID":699189792,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6521","ServerKey":"pl181","X":489,"Y":523},{"Bonus":0,"Continent":"K45","ID":6522,"Name":"1 MoĆŒesz","PlayerID":6923061,"Points":2525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6522","ServerKey":"pl181","X":538,"Y":472},{"Bonus":0,"Continent":"K54","ID":6523,"Name":"002 Fiona","PlayerID":698290577,"Points":6893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6523","ServerKey":"pl181","X":445,"Y":503},{"Bonus":0,"Continent":"K55","ID":6524,"Name":"02*","PlayerID":699664910,"Points":8210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6524","ServerKey":"pl181","X":575,"Y":531},{"Bonus":0,"Continent":"K55","ID":6525,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6525","ServerKey":"pl181","X":517,"Y":556},{"Bonus":0,"Continent":"K45","ID":6526,"Name":"ADEN","PlayerID":698588535,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6526","ServerKey":"pl181","X":555,"Y":428},{"Bonus":0,"Continent":"K55","ID":6527,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6527","ServerKey":"pl181","X":586,"Y":520},{"Bonus":6,"Continent":"K54","ID":6528,"Name":"Kasyno","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6528","ServerKey":"pl181","X":443,"Y":517},{"Bonus":0,"Continent":"K35","ID":6529,"Name":".achim.","PlayerID":6936607,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6529","ServerKey":"pl181","X":527,"Y":398},{"Bonus":0,"Continent":"K45","ID":6530,"Name":"0014|Zagrzeb","PlayerID":8649412,"Points":7460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6530","ServerKey":"pl181","X":508,"Y":442},{"Bonus":0,"Continent":"K54","ID":6531,"Name":"Fajna 065","PlayerID":699868002,"Points":8574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6531","ServerKey":"pl181","X":451,"Y":562},{"Bonus":0,"Continent":"K44","ID":6532,"Name":"B046","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6532","ServerKey":"pl181","X":483,"Y":470},{"Bonus":0,"Continent":"K65","ID":6534,"Name":"0163","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6534","ServerKey":"pl181","X":548,"Y":617},{"Bonus":0,"Continent":"K55","ID":6536,"Name":"92k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6536","ServerKey":"pl181","X":564,"Y":536},{"Bonus":0,"Continent":"K54","ID":6537,"Name":"KIELBA 127","PlayerID":699342219,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6537","ServerKey":"pl181","X":462,"Y":582},{"Bonus":0,"Continent":"K55","ID":6538,"Name":"[212]","PlayerID":8000875,"Points":8702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6538","ServerKey":"pl181","X":545,"Y":501},{"Bonus":0,"Continent":"K44","ID":6539,"Name":"-026-","PlayerID":9291984,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6539","ServerKey":"pl181","X":460,"Y":427},{"Bonus":5,"Continent":"K45","ID":6540,"Name":".achim.","PlayerID":6936607,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6540","ServerKey":"pl181","X":533,"Y":453},{"Bonus":0,"Continent":"K55","ID":6542,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6542","ServerKey":"pl181","X":575,"Y":546},{"Bonus":0,"Continent":"K54","ID":6543,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6543","ServerKey":"pl181","X":492,"Y":544},{"Bonus":0,"Continent":"K54","ID":6544,"Name":"#0140 Sustanon","PlayerID":9272054,"Points":7225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6544","ServerKey":"pl181","X":494,"Y":550},{"Bonus":0,"Continent":"K54","ID":6545,"Name":"087. ALFI","PlayerID":8539216,"Points":1392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6545","ServerKey":"pl181","X":475,"Y":560},{"Bonus":0,"Continent":"K54","ID":6546,"Name":"010. ALFI","PlayerID":8369778,"Points":2432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6546","ServerKey":"pl181","X":483,"Y":573},{"Bonus":0,"Continent":"K45","ID":6547,"Name":"124.","PlayerID":8788366,"Points":7179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6547","ServerKey":"pl181","X":513,"Y":479},{"Bonus":0,"Continent":"K35","ID":6548,"Name":"037","PlayerID":1424656,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6548","ServerKey":"pl181","X":543,"Y":391},{"Bonus":0,"Continent":"K45","ID":6549,"Name":"006","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6549","ServerKey":"pl181","X":565,"Y":492},{"Bonus":0,"Continent":"K55","ID":6550,"Name":"Yogi","PlayerID":2808172,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6550","ServerKey":"pl181","X":535,"Y":521},{"Bonus":0,"Continent":"K54","ID":6551,"Name":"Winter is coming","PlayerID":699856962,"Points":9439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6551","ServerKey":"pl181","X":437,"Y":533},{"Bonus":0,"Continent":"K54","ID":6552,"Name":"043 - B01***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6552","ServerKey":"pl181","X":434,"Y":584},{"Bonus":0,"Continent":"K55","ID":6553,"Name":"042.","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6553","ServerKey":"pl181","X":597,"Y":566},{"Bonus":0,"Continent":"K55","ID":6554,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6554","ServerKey":"pl181","X":506,"Y":564},{"Bonus":0,"Continent":"K54","ID":6555,"Name":"#0070 Piotr J","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6555","ServerKey":"pl181","X":497,"Y":560},{"Bonus":0,"Continent":"K54","ID":6556,"Name":"Fajna 075","PlayerID":699856962,"Points":5462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6556","ServerKey":"pl181","X":455,"Y":564},{"Bonus":0,"Continent":"K55","ID":6557,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6557","ServerKey":"pl181","X":503,"Y":544},{"Bonus":0,"Continent":"K55","ID":6558,"Name":"042. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6558","ServerKey":"pl181","X":569,"Y":512},{"Bonus":0,"Continent":"K45","ID":6559,"Name":".achim.","PlayerID":6936607,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6559","ServerKey":"pl181","X":529,"Y":450},{"Bonus":0,"Continent":"K45","ID":6560,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6560","ServerKey":"pl181","X":509,"Y":446},{"Bonus":0,"Continent":"K55","ID":6561,"Name":"JaamMwG 019","PlayerID":848987051,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6561","ServerKey":"pl181","X":525,"Y":516},{"Bonus":0,"Continent":"K44","ID":6562,"Name":"TRR 002","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6562","ServerKey":"pl181","X":410,"Y":415},{"Bonus":0,"Continent":"K44","ID":6563,"Name":"P Konfederacja","PlayerID":848915730,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6563","ServerKey":"pl181","X":466,"Y":438},{"Bonus":0,"Continent":"K54","ID":6564,"Name":"Sparta_40","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6564","ServerKey":"pl181","X":483,"Y":578},{"Bonus":0,"Continent":"K45","ID":6565,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6565","ServerKey":"pl181","X":526,"Y":425},{"Bonus":0,"Continent":"K44","ID":6566,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6566","ServerKey":"pl181","X":480,"Y":417},{"Bonus":0,"Continent":"K54","ID":6567,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6567","ServerKey":"pl181","X":413,"Y":518},{"Bonus":0,"Continent":"K54","ID":6568,"Name":"Brat447","PlayerID":699262350,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6568","ServerKey":"pl181","X":459,"Y":500},{"Bonus":0,"Continent":"K55","ID":6569,"Name":"Szlachcic 015","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6569","ServerKey":"pl181","X":558,"Y":522},{"Bonus":0,"Continent":"K54","ID":6570,"Name":"058. ALFI","PlayerID":8539216,"Points":1548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6570","ServerKey":"pl181","X":484,"Y":562},{"Bonus":0,"Continent":"K45","ID":6571,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6571","ServerKey":"pl181","X":503,"Y":470},{"Bonus":0,"Continent":"K55","ID":6572,"Name":"Kilonia","PlayerID":849066849,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6572","ServerKey":"pl181","X":516,"Y":552},{"Bonus":0,"Continent":"K55","ID":6573,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6573","ServerKey":"pl181","X":583,"Y":554},{"Bonus":0,"Continent":"K54","ID":6574,"Name":"#0082 Prawiedniki","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6574","ServerKey":"pl181","X":498,"Y":554},{"Bonus":0,"Continent":"K45","ID":6575,"Name":"K45 - 012","PlayerID":6510480,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6575","ServerKey":"pl181","X":557,"Y":466},{"Bonus":0,"Continent":"K55","ID":6576,"Name":"045 Plemię","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6576","ServerKey":"pl181","X":574,"Y":504},{"Bonus":1,"Continent":"K54","ID":6577,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6577","ServerKey":"pl181","X":477,"Y":544},{"Bonus":0,"Continent":"K54","ID":6578,"Name":"007","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6578","ServerKey":"pl181","X":411,"Y":517},{"Bonus":0,"Continent":"K54","ID":6579,"Name":"KIELBA 029","PlayerID":699342219,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6579","ServerKey":"pl181","X":452,"Y":577},{"Bonus":0,"Continent":"K45","ID":6580,"Name":"Burdel","PlayerID":848986287,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6580","ServerKey":"pl181","X":550,"Y":433},{"Bonus":0,"Continent":"K45","ID":6581,"Name":"013","PlayerID":849031818,"Points":4358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6581","ServerKey":"pl181","X":561,"Y":473},{"Bonus":0,"Continent":"K45","ID":6582,"Name":"Rubinowa Dolina","PlayerID":8513699,"Points":5885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6582","ServerKey":"pl181","X":535,"Y":462},{"Bonus":0,"Continent":"K54","ID":6583,"Name":"Kasyno","PlayerID":7249451,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6583","ServerKey":"pl181","X":440,"Y":508},{"Bonus":0,"Continent":"K55","ID":6584,"Name":"P.026","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6584","ServerKey":"pl181","X":538,"Y":559},{"Bonus":0,"Continent":"K54","ID":6585,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6585","ServerKey":"pl181","X":446,"Y":530},{"Bonus":0,"Continent":"K55","ID":6587,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6587","ServerKey":"pl181","X":541,"Y":566},{"Bonus":0,"Continent":"K45","ID":6588,"Name":"JW1","PlayerID":699368887,"Points":8719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6588","ServerKey":"pl181","X":555,"Y":442},{"Bonus":0,"Continent":"K45","ID":6589,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6589","ServerKey":"pl181","X":526,"Y":415},{"Bonus":0,"Continent":"K45","ID":6591,"Name":"A046","PlayerID":699299123,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6591","ServerKey":"pl181","X":501,"Y":425},{"Bonus":8,"Continent":"K44","ID":6592,"Name":"050 Fresno","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6592","ServerKey":"pl181","X":471,"Y":468},{"Bonus":0,"Continent":"K45","ID":6593,"Name":"Gattacka","PlayerID":699298370,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6593","ServerKey":"pl181","X":581,"Y":496},{"Bonus":0,"Continent":"K45","ID":6594,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6594","ServerKey":"pl181","X":532,"Y":419},{"Bonus":0,"Continent":"K45","ID":6595,"Name":"Awanturnik 1908","PlayerID":8649412,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6595","ServerKey":"pl181","X":516,"Y":425},{"Bonus":0,"Continent":"K55","ID":6596,"Name":"006","PlayerID":8191129,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6596","ServerKey":"pl181","X":523,"Y":515},{"Bonus":0,"Continent":"K45","ID":6597,"Name":".achim.","PlayerID":6936607,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6597","ServerKey":"pl181","X":532,"Y":462},{"Bonus":0,"Continent":"K55","ID":6598,"Name":"016. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6598","ServerKey":"pl181","X":579,"Y":525},{"Bonus":0,"Continent":"K54","ID":6599,"Name":"Aleartis","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6599","ServerKey":"pl181","X":488,"Y":544},{"Bonus":0,"Continent":"K54","ID":6600,"Name":"kathare","PlayerID":873575,"Points":10457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6600","ServerKey":"pl181","X":497,"Y":569},{"Bonus":0,"Continent":"K53","ID":6601,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":5942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6601","ServerKey":"pl181","X":395,"Y":548},{"Bonus":0,"Continent":"K45","ID":6602,"Name":"[122] North22","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6602","ServerKey":"pl181","X":570,"Y":477},{"Bonus":0,"Continent":"K55","ID":6603,"Name":"ladyanima","PlayerID":699703642,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6603","ServerKey":"pl181","X":516,"Y":571},{"Bonus":0,"Continent":"K54","ID":6604,"Name":"Kulik 003","PlayerID":698290577,"Points":7426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6604","ServerKey":"pl181","X":402,"Y":511},{"Bonus":0,"Continent":"K54","ID":6605,"Name":"Wioska 0013","PlayerID":1804724,"Points":10188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6605","ServerKey":"pl181","X":401,"Y":516},{"Bonus":0,"Continent":"K45","ID":6606,"Name":"[186]","PlayerID":848985692,"Points":8169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6606","ServerKey":"pl181","X":540,"Y":498},{"Bonus":0,"Continent":"K54","ID":6608,"Name":"#0056 Nimesil","PlayerID":848896948,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6608","ServerKey":"pl181","X":490,"Y":557},{"Bonus":0,"Continent":"K44","ID":6609,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6609","ServerKey":"pl181","X":495,"Y":494},{"Bonus":0,"Continent":"K54","ID":6610,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6610","ServerKey":"pl181","X":496,"Y":590},{"Bonus":0,"Continent":"K46","ID":6611,"Name":"Wioska Ariel69","PlayerID":848925840,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6611","ServerKey":"pl181","X":604,"Y":455},{"Bonus":0,"Continent":"K44","ID":6612,"Name":"P Konfederacja","PlayerID":848915730,"Points":8246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6612","ServerKey":"pl181","X":460,"Y":457},{"Bonus":0,"Continent":"K45","ID":6613,"Name":"JK6","PlayerID":699368887,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6613","ServerKey":"pl181","X":562,"Y":446},{"Bonus":0,"Continent":"K44","ID":6614,"Name":"203 Port au Prince","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6614","ServerKey":"pl181","X":468,"Y":462},{"Bonus":0,"Continent":"K44","ID":6615,"Name":"Monetki","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6615","ServerKey":"pl181","X":473,"Y":428},{"Bonus":5,"Continent":"K45","ID":6616,"Name":"198 Alice Springs","PlayerID":1497168,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6616","ServerKey":"pl181","X":532,"Y":428},{"Bonus":0,"Continent":"K44","ID":6617,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6617","ServerKey":"pl181","X":452,"Y":445},{"Bonus":0,"Continent":"K45","ID":6618,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6618","ServerKey":"pl181","X":504,"Y":448},{"Bonus":0,"Continent":"K55","ID":6619,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6619","ServerKey":"pl181","X":588,"Y":512},{"Bonus":1,"Continent":"K45","ID":6620,"Name":"Gattacka","PlayerID":699298370,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6620","ServerKey":"pl181","X":582,"Y":495},{"Bonus":0,"Continent":"K54","ID":6621,"Name":"Barba","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6621","ServerKey":"pl181","X":434,"Y":502},{"Bonus":0,"Continent":"K45","ID":6622,"Name":".:037:. Chillout","PlayerID":848934935,"Points":8829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6622","ServerKey":"pl181","X":518,"Y":452},{"Bonus":0,"Continent":"K54","ID":6623,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":5841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6623","ServerKey":"pl181","X":441,"Y":537},{"Bonus":0,"Continent":"K44","ID":6624,"Name":"Suppi","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6624","ServerKey":"pl181","X":426,"Y":450},{"Bonus":6,"Continent":"K55","ID":6625,"Name":"CALL 971","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6625","ServerKey":"pl181","X":548,"Y":558},{"Bonus":0,"Continent":"K65","ID":6626,"Name":"Entrance","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6626","ServerKey":"pl181","X":524,"Y":612},{"Bonus":0,"Continent":"K45","ID":6627,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6627","ServerKey":"pl181","X":528,"Y":491},{"Bonus":0,"Continent":"K54","ID":6628,"Name":"Wioska 2","PlayerID":9236866,"Points":5111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6628","ServerKey":"pl181","X":428,"Y":538},{"Bonus":0,"Continent":"K54","ID":6629,"Name":"SsSs","PlayerID":1536625,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6629","ServerKey":"pl181","X":422,"Y":503},{"Bonus":0,"Continent":"K55","ID":6630,"Name":"WesternGold","PlayerID":699785935,"Points":9578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6630","ServerKey":"pl181","X":539,"Y":536},{"Bonus":0,"Continent":"K54","ID":6631,"Name":"044. ALFI","PlayerID":8539216,"Points":1909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6631","ServerKey":"pl181","X":485,"Y":564},{"Bonus":0,"Continent":"K54","ID":6632,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6632","ServerKey":"pl181","X":493,"Y":556},{"Bonus":0,"Continent":"K44","ID":6633,"Name":"A#044#","PlayerID":698807570,"Points":11706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6633","ServerKey":"pl181","X":423,"Y":477},{"Bonus":0,"Continent":"K44","ID":6634,"Name":"-027-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6634","ServerKey":"pl181","X":461,"Y":419},{"Bonus":0,"Continent":"K45","ID":6636,"Name":"11 SƂowacja","PlayerID":8925695,"Points":6473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6636","ServerKey":"pl181","X":589,"Y":486},{"Bonus":0,"Continent":"K44","ID":6637,"Name":"Os Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6637","ServerKey":"pl181","X":474,"Y":444},{"Bonus":0,"Continent":"K55","ID":6638,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6638","ServerKey":"pl181","X":572,"Y":509},{"Bonus":0,"Continent":"K45","ID":6639,"Name":"C011","PlayerID":699299123,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6639","ServerKey":"pl181","X":526,"Y":457},{"Bonus":0,"Continent":"K54","ID":6640,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6640","ServerKey":"pl181","X":494,"Y":551},{"Bonus":0,"Continent":"K45","ID":6641,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6641","ServerKey":"pl181","X":528,"Y":427},{"Bonus":0,"Continent":"K54","ID":6642,"Name":"Suppi","PlayerID":699856962,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6642","ServerKey":"pl181","X":441,"Y":525},{"Bonus":0,"Continent":"K54","ID":6643,"Name":"022","PlayerID":2585846,"Points":1874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6643","ServerKey":"pl181","X":463,"Y":525},{"Bonus":0,"Continent":"K54","ID":6644,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6644","ServerKey":"pl181","X":433,"Y":521},{"Bonus":0,"Continent":"K45","ID":6645,"Name":":(.","PlayerID":698867483,"Points":8468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6645","ServerKey":"pl181","X":542,"Y":474},{"Bonus":0,"Continent":"K45","ID":6646,"Name":"ABADON STAY","PlayerID":699347951,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6646","ServerKey":"pl181","X":568,"Y":489},{"Bonus":0,"Continent":"K55","ID":6648,"Name":"[073] Patua koe","PlayerID":848985692,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6648","ServerKey":"pl181","X":536,"Y":509},{"Bonus":0,"Continent":"K55","ID":6649,"Name":"Szlachcic 058","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6649","ServerKey":"pl181","X":576,"Y":519},{"Bonus":0,"Continent":"K55","ID":6650,"Name":"CALL 986","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6650","ServerKey":"pl181","X":555,"Y":556},{"Bonus":0,"Continent":"K54","ID":6651,"Name":"Winter is coming","PlayerID":699856962,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6651","ServerKey":"pl181","X":439,"Y":529},{"Bonus":0,"Continent":"K54","ID":6652,"Name":"4 c4bat","PlayerID":8779575,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6652","ServerKey":"pl181","X":439,"Y":563},{"Bonus":0,"Continent":"K45","ID":6653,"Name":".achim.","PlayerID":6936607,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6653","ServerKey":"pl181","X":534,"Y":421},{"Bonus":0,"Continent":"K44","ID":6654,"Name":"175 Bahia Blanca","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6654","ServerKey":"pl181","X":483,"Y":478},{"Bonus":0,"Continent":"K45","ID":6655,"Name":"[128] North28","PlayerID":848985692,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6655","ServerKey":"pl181","X":577,"Y":478},{"Bonus":0,"Continent":"K55","ID":6656,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6656","ServerKey":"pl181","X":517,"Y":578},{"Bonus":0,"Continent":"K35","ID":6657,"Name":"091","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6657","ServerKey":"pl181","X":558,"Y":397},{"Bonus":0,"Continent":"K54","ID":6658,"Name":"KIELBA 102","PlayerID":699342219,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6658","ServerKey":"pl181","X":444,"Y":567},{"Bonus":3,"Continent":"K45","ID":6659,"Name":".:067:. Chillout","PlayerID":848934935,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6659","ServerKey":"pl181","X":506,"Y":415},{"Bonus":0,"Continent":"K55","ID":6660,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6660","ServerKey":"pl181","X":502,"Y":567},{"Bonus":9,"Continent":"K54","ID":6661,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6661","ServerKey":"pl181","X":454,"Y":560},{"Bonus":0,"Continent":"K54","ID":6662,"Name":"Oleole","PlayerID":699443920,"Points":4022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6662","ServerKey":"pl181","X":436,"Y":555},{"Bonus":0,"Continent":"K54","ID":6663,"Name":"KIELBA 056","PlayerID":699342219,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6663","ServerKey":"pl181","X":457,"Y":589},{"Bonus":0,"Continent":"K54","ID":6664,"Name":"002","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6664","ServerKey":"pl181","X":446,"Y":526},{"Bonus":0,"Continent":"K55","ID":6665,"Name":"[134]","PlayerID":8000875,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6665","ServerKey":"pl181","X":557,"Y":542},{"Bonus":0,"Continent":"K44","ID":6666,"Name":"008511","PlayerID":3909522,"Points":7809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6666","ServerKey":"pl181","X":439,"Y":442},{"Bonus":0,"Continent":"K44","ID":6667,"Name":"Cast Away 004","PlayerID":698290577,"Points":7876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6667","ServerKey":"pl181","X":451,"Y":491},{"Bonus":0,"Continent":"K54","ID":6668,"Name":"-= 007 =-","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6668","ServerKey":"pl181","X":443,"Y":514},{"Bonus":0,"Continent":"K45","ID":6669,"Name":"Szmaragdowa Wyspa","PlayerID":8513699,"Points":4884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6669","ServerKey":"pl181","X":537,"Y":467},{"Bonus":0,"Continent":"K55","ID":6670,"Name":"WioskaE","PlayerID":8369778,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6670","ServerKey":"pl181","X":510,"Y":581},{"Bonus":0,"Continent":"K45","ID":6671,"Name":"Wioska taysi","PlayerID":848942847,"Points":1917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6671","ServerKey":"pl181","X":516,"Y":427},{"Bonus":0,"Continent":"K55","ID":6672,"Name":"0. Mob","PlayerID":698215322,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6672","ServerKey":"pl181","X":521,"Y":582},{"Bonus":0,"Continent":"K55","ID":6673,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6673","ServerKey":"pl181","X":572,"Y":505},{"Bonus":0,"Continent":"K55","ID":6674,"Name":"[182]","PlayerID":848985692,"Points":7592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6674","ServerKey":"pl181","X":543,"Y":518},{"Bonus":0,"Continent":"K45","ID":6675,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6675","ServerKey":"pl181","X":528,"Y":415},{"Bonus":0,"Continent":"K54","ID":6676,"Name":"F085","PlayerID":699189792,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6676","ServerKey":"pl181","X":490,"Y":518},{"Bonus":0,"Continent":"K54","ID":6677,"Name":"Kasyno","PlayerID":7249451,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6677","ServerKey":"pl181","X":443,"Y":516},{"Bonus":0,"Continent":"K44","ID":6678,"Name":"A004","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6678","ServerKey":"pl181","X":481,"Y":405},{"Bonus":5,"Continent":"K44","ID":6679,"Name":"x005","PlayerID":698290577,"Points":7063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6679","ServerKey":"pl181","X":428,"Y":499},{"Bonus":0,"Continent":"K54","ID":6681,"Name":"keepo","PlayerID":848967710,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6681","ServerKey":"pl181","X":484,"Y":525},{"Bonus":0,"Continent":"K44","ID":6682,"Name":"048 Miami","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6682","ServerKey":"pl181","X":452,"Y":467},{"Bonus":0,"Continent":"K44","ID":6683,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":10405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6683","ServerKey":"pl181","X":443,"Y":440},{"Bonus":0,"Continent":"K54","ID":6685,"Name":"Wioska *Swiss*Bang*","PlayerID":698971484,"Points":8921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6685","ServerKey":"pl181","X":445,"Y":519},{"Bonus":0,"Continent":"K45","ID":6686,"Name":"Osada","PlayerID":699098531,"Points":7840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6686","ServerKey":"pl181","X":507,"Y":453},{"Bonus":7,"Continent":"K54","ID":6687,"Name":"FilipVII","PlayerID":699856962,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6687","ServerKey":"pl181","X":442,"Y":531},{"Bonus":0,"Continent":"K44","ID":6688,"Name":"109 Sept-Iles","PlayerID":1497168,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6688","ServerKey":"pl181","X":479,"Y":481},{"Bonus":0,"Continent":"K54","ID":6689,"Name":"Mniejsze zƂo 0032","PlayerID":699794765,"Points":8159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6689","ServerKey":"pl181","X":418,"Y":512},{"Bonus":0,"Continent":"K55","ID":6690,"Name":"[071]","PlayerID":8000875,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6690","ServerKey":"pl181","X":558,"Y":548},{"Bonus":0,"Continent":"K44","ID":6691,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6691","ServerKey":"pl181","X":450,"Y":471},{"Bonus":0,"Continent":"K35","ID":6692,"Name":"C 016","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6692","ServerKey":"pl181","X":563,"Y":395},{"Bonus":0,"Continent":"K45","ID":6693,"Name":"002","PlayerID":849091084,"Points":9128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6693","ServerKey":"pl181","X":539,"Y":471},{"Bonus":0,"Continent":"K46","ID":6695,"Name":"005","PlayerID":8459255,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6695","ServerKey":"pl181","X":603,"Y":459},{"Bonus":0,"Continent":"K44","ID":6696,"Name":"B012","PlayerID":699299123,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6696","ServerKey":"pl181","X":490,"Y":449},{"Bonus":0,"Continent":"K44","ID":6697,"Name":"007 Tucson","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6697","ServerKey":"pl181","X":440,"Y":469},{"Bonus":0,"Continent":"K55","ID":6698,"Name":"- 218 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6698","ServerKey":"pl181","X":548,"Y":577},{"Bonus":0,"Continent":"K54","ID":6699,"Name":"013","PlayerID":2585846,"Points":2803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6699","ServerKey":"pl181","X":461,"Y":531},{"Bonus":7,"Continent":"K44","ID":6700,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6700","ServerKey":"pl181","X":495,"Y":499},{"Bonus":0,"Continent":"K44","ID":6701,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6701","ServerKey":"pl181","X":447,"Y":495},{"Bonus":0,"Continent":"K54","ID":6702,"Name":"F044","PlayerID":699189792,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6702","ServerKey":"pl181","X":485,"Y":523},{"Bonus":0,"Continent":"K54","ID":6703,"Name":"Brat447","PlayerID":699262350,"Points":5878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6703","ServerKey":"pl181","X":463,"Y":503},{"Bonus":0,"Continent":"K44","ID":6704,"Name":"Szlachcic","PlayerID":699098531,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6704","ServerKey":"pl181","X":495,"Y":461},{"Bonus":0,"Continent":"K54","ID":6705,"Name":"F066","PlayerID":699189792,"Points":9122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6705","ServerKey":"pl181","X":484,"Y":519},{"Bonus":0,"Continent":"K45","ID":6706,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6706","ServerKey":"pl181","X":530,"Y":487},{"Bonus":0,"Continent":"K55","ID":6707,"Name":"#0135 Barbarian","PlayerID":9272054,"Points":5223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6707","ServerKey":"pl181","X":552,"Y":542},{"Bonus":0,"Continent":"K53","ID":6708,"Name":"163 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6708","ServerKey":"pl181","X":385,"Y":548},{"Bonus":0,"Continent":"K54","ID":6709,"Name":"075","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6709","ServerKey":"pl181","X":413,"Y":523},{"Bonus":0,"Continent":"K44","ID":6710,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6710","ServerKey":"pl181","X":468,"Y":421},{"Bonus":0,"Continent":"K45","ID":6711,"Name":"!Rapidash","PlayerID":699795378,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6711","ServerKey":"pl181","X":566,"Y":447},{"Bonus":6,"Continent":"K54","ID":6712,"Name":"0029 K54 and987 OZDR.","PlayerID":3613413,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6712","ServerKey":"pl181","X":487,"Y":549},{"Bonus":0,"Continent":"K44","ID":6713,"Name":"+44 62 L Arbresle","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6713","ServerKey":"pl181","X":429,"Y":463},{"Bonus":0,"Continent":"K44","ID":6714,"Name":"-028-","PlayerID":9291984,"Points":10822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6714","ServerKey":"pl181","X":466,"Y":434},{"Bonus":0,"Continent":"K45","ID":6715,"Name":"Szlachcic","PlayerID":699098531,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6715","ServerKey":"pl181","X":505,"Y":476},{"Bonus":0,"Continent":"K54","ID":6716,"Name":"Omonomo","PlayerID":699443920,"Points":2950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6716","ServerKey":"pl181","X":438,"Y":556},{"Bonus":0,"Continent":"K55","ID":6717,"Name":"Szlachcic 014","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6717","ServerKey":"pl181","X":571,"Y":534},{"Bonus":0,"Continent":"K54","ID":6718,"Name":"NOT FOR YOU","PlayerID":9236866,"Points":4914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6718","ServerKey":"pl181","X":458,"Y":555},{"Bonus":0,"Continent":"K55","ID":6719,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6719","ServerKey":"pl181","X":570,"Y":538},{"Bonus":0,"Continent":"K54","ID":6720,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6720","ServerKey":"pl181","X":449,"Y":559},{"Bonus":4,"Continent":"K44","ID":6721,"Name":"005 Palm Springs","PlayerID":1497168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6721","ServerKey":"pl181","X":444,"Y":469},{"Bonus":0,"Continent":"K55","ID":6722,"Name":"Mzm34","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6722","ServerKey":"pl181","X":592,"Y":507},{"Bonus":0,"Continent":"K45","ID":6723,"Name":"Szlachcic","PlayerID":698867446,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6723","ServerKey":"pl181","X":559,"Y":470},{"Bonus":2,"Continent":"K54","ID":6724,"Name":"ZS03","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6724","ServerKey":"pl181","X":450,"Y":527},{"Bonus":0,"Continent":"K44","ID":6725,"Name":"Os Konfederacja 8","PlayerID":848915730,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6725","ServerKey":"pl181","X":482,"Y":460},{"Bonus":0,"Continent":"K55","ID":6726,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6726","ServerKey":"pl181","X":510,"Y":524},{"Bonus":0,"Continent":"K54","ID":6727,"Name":"2.Skorpion !!!","PlayerID":849087855,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6727","ServerKey":"pl181","X":499,"Y":541},{"Bonus":0,"Continent":"K44","ID":6728,"Name":"PRO8L3M","PlayerID":7491093,"Points":9513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6728","ServerKey":"pl181","X":427,"Y":499},{"Bonus":0,"Continent":"K55","ID":6729,"Name":"0051 K55 and987 OZDR","PlayerID":3613413,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6729","ServerKey":"pl181","X":508,"Y":552},{"Bonus":0,"Continent":"K55","ID":6730,"Name":"|014|","PlayerID":873575,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6730","ServerKey":"pl181","X":554,"Y":571},{"Bonus":8,"Continent":"K44","ID":6731,"Name":"Szlachcic","PlayerID":699098531,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6731","ServerKey":"pl181","X":484,"Y":479},{"Bonus":0,"Continent":"K55","ID":6732,"Name":"041 |","PlayerID":8000875,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6732","ServerKey":"pl181","X":561,"Y":560},{"Bonus":0,"Continent":"K44","ID":6733,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6733","ServerKey":"pl181","X":475,"Y":451},{"Bonus":0,"Continent":"K44","ID":6734,"Name":"Cast Away 002","PlayerID":698290577,"Points":4853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6734","ServerKey":"pl181","X":454,"Y":493},{"Bonus":0,"Continent":"K55","ID":6735,"Name":"- 212 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6735","ServerKey":"pl181","X":547,"Y":574},{"Bonus":0,"Continent":"K56","ID":6736,"Name":"0003","PlayerID":6510480,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6736","ServerKey":"pl181","X":614,"Y":529},{"Bonus":0,"Continent":"K44","ID":6737,"Name":"-xx11","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6737","ServerKey":"pl181","X":497,"Y":494},{"Bonus":3,"Continent":"K44","ID":6738,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6738","ServerKey":"pl181","X":494,"Y":482},{"Bonus":0,"Continent":"K45","ID":6739,"Name":"9.9.1 Legiony","PlayerID":8444356,"Points":5916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6739","ServerKey":"pl181","X":544,"Y":442},{"Bonus":0,"Continent":"K44","ID":6740,"Name":"Pf Konfederacja","PlayerID":699098531,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6740","ServerKey":"pl181","X":494,"Y":484},{"Bonus":0,"Continent":"K45","ID":6741,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6741","ServerKey":"pl181","X":558,"Y":480},{"Bonus":0,"Continent":"K45","ID":6742,"Name":"047.","PlayerID":8788366,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6742","ServerKey":"pl181","X":500,"Y":490},{"Bonus":0,"Continent":"K54","ID":6743,"Name":"Azymut!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6743","ServerKey":"pl181","X":498,"Y":503},{"Bonus":0,"Continent":"K55","ID":6744,"Name":"yogi","PlayerID":2808172,"Points":6530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6744","ServerKey":"pl181","X":532,"Y":530},{"Bonus":0,"Continent":"K44","ID":6745,"Name":"?+44 85 Colombier Saugnieu","PlayerID":698361257,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6745","ServerKey":"pl181","X":454,"Y":482},{"Bonus":0,"Continent":"K55","ID":6746,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6746","ServerKey":"pl181","X":585,"Y":511},{"Bonus":0,"Continent":"K54","ID":6747,"Name":"*Ateny_18","PlayerID":2585846,"Points":2869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6747","ServerKey":"pl181","X":467,"Y":526},{"Bonus":0,"Continent":"K54","ID":6748,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6748","ServerKey":"pl181","X":431,"Y":526},{"Bonus":0,"Continent":"K44","ID":6749,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6749","ServerKey":"pl181","X":416,"Y":495},{"Bonus":0,"Continent":"K55","ID":6751,"Name":"Mzm18","PlayerID":7142659,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6751","ServerKey":"pl181","X":567,"Y":524},{"Bonus":0,"Continent":"K44","ID":6752,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6752","ServerKey":"pl181","X":427,"Y":462},{"Bonus":0,"Continent":"K45","ID":6753,"Name":"#Sawk","PlayerID":699795378,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6753","ServerKey":"pl181","X":566,"Y":466},{"Bonus":0,"Continent":"K45","ID":6754,"Name":"Szlachcic","PlayerID":699098531,"Points":9217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6754","ServerKey":"pl181","X":509,"Y":457},{"Bonus":0,"Continent":"K44","ID":6755,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6755","ServerKey":"pl181","X":454,"Y":487},{"Bonus":0,"Continent":"K44","ID":6757,"Name":"034","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6757","ServerKey":"pl181","X":437,"Y":488},{"Bonus":0,"Continent":"K45","ID":6758,"Name":"ADEN","PlayerID":698588535,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6758","ServerKey":"pl181","X":561,"Y":443},{"Bonus":0,"Continent":"K44","ID":6759,"Name":"P Konfederacja","PlayerID":848915730,"Points":10031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6759","ServerKey":"pl181","X":460,"Y":450},{"Bonus":6,"Continent":"K55","ID":6760,"Name":"052. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6760","ServerKey":"pl181","X":546,"Y":516},{"Bonus":0,"Continent":"K55","ID":6761,"Name":"033 |","PlayerID":8000875,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6761","ServerKey":"pl181","X":569,"Y":551},{"Bonus":0,"Continent":"K55","ID":6762,"Name":"028","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6762","ServerKey":"pl181","X":569,"Y":547},{"Bonus":0,"Continent":"K43","ID":6763,"Name":"Annapurna","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6763","ServerKey":"pl181","X":380,"Y":486},{"Bonus":0,"Continent":"K44","ID":6764,"Name":"A#051#","PlayerID":698807570,"Points":10877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6764","ServerKey":"pl181","X":415,"Y":472},{"Bonus":0,"Continent":"K54","ID":6765,"Name":"Brat447","PlayerID":699262350,"Points":9510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6765","ServerKey":"pl181","X":462,"Y":512},{"Bonus":0,"Continent":"K54","ID":6766,"Name":"045","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6766","ServerKey":"pl181","X":428,"Y":517},{"Bonus":0,"Continent":"K55","ID":6768,"Name":"Wioska 001","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6768","ServerKey":"pl181","X":593,"Y":580},{"Bonus":4,"Continent":"K54","ID":6769,"Name":"Diss na budzik!","PlayerID":699785935,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6769","ServerKey":"pl181","X":495,"Y":507},{"Bonus":0,"Continent":"K55","ID":6770,"Name":"#019","PlayerID":849001572,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6770","ServerKey":"pl181","X":540,"Y":592},{"Bonus":7,"Continent":"K54","ID":6771,"Name":"Warzywniak 013","PlayerID":698290577,"Points":1521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6771","ServerKey":"pl181","X":448,"Y":546},{"Bonus":0,"Continent":"K54","ID":6772,"Name":"SsSs","PlayerID":1536625,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6772","ServerKey":"pl181","X":420,"Y":501},{"Bonus":0,"Continent":"K45","ID":6773,"Name":"Szlachcic","PlayerID":698867446,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6773","ServerKey":"pl181","X":567,"Y":494},{"Bonus":0,"Continent":"K45","ID":6774,"Name":"7.62 mm","PlayerID":699777234,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6774","ServerKey":"pl181","X":504,"Y":434},{"Bonus":0,"Continent":"K44","ID":6775,"Name":"Os Konfederacja","PlayerID":848915730,"Points":3947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6775","ServerKey":"pl181","X":483,"Y":440},{"Bonus":0,"Continent":"K45","ID":6776,"Name":"088","PlayerID":699351301,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6776","ServerKey":"pl181","X":540,"Y":495},{"Bonus":0,"Continent":"K45","ID":6777,"Name":"014","PlayerID":699368887,"Points":5418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6777","ServerKey":"pl181","X":558,"Y":457},{"Bonus":0,"Continent":"K44","ID":6778,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6778","ServerKey":"pl181","X":497,"Y":428},{"Bonus":0,"Continent":"K45","ID":6779,"Name":"Szlachcic","PlayerID":699098531,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6779","ServerKey":"pl181","X":507,"Y":457},{"Bonus":0,"Continent":"K44","ID":6780,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6780","ServerKey":"pl181","X":457,"Y":480},{"Bonus":0,"Continent":"K55","ID":6781,"Name":"poglądowoƛci Z","PlayerID":699664910,"Points":5647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6781","ServerKey":"pl181","X":569,"Y":546},{"Bonus":0,"Continent":"K54","ID":6782,"Name":"Warzywniak 005","PlayerID":698290577,"Points":865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6782","ServerKey":"pl181","X":447,"Y":547},{"Bonus":0,"Continent":"K55","ID":6783,"Name":"Szlachcic 036","PlayerID":758104,"Points":9241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6783","ServerKey":"pl181","X":551,"Y":522},{"Bonus":0,"Continent":"K54","ID":6784,"Name":"063","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6784","ServerKey":"pl181","X":419,"Y":509},{"Bonus":0,"Continent":"K45","ID":6785,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6785","ServerKey":"pl181","X":500,"Y":476},{"Bonus":0,"Continent":"K45","ID":6786,"Name":"074.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6786","ServerKey":"pl181","X":501,"Y":481},{"Bonus":0,"Continent":"K45","ID":6787,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":8876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6787","ServerKey":"pl181","X":501,"Y":416},{"Bonus":0,"Continent":"K44","ID":6788,"Name":"SsSs","PlayerID":1536625,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6788","ServerKey":"pl181","X":436,"Y":497},{"Bonus":0,"Continent":"K45","ID":6789,"Name":"0029","PlayerID":698599365,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6789","ServerKey":"pl181","X":508,"Y":495},{"Bonus":0,"Continent":"K45","ID":6790,"Name":"-[016]- Tenzing Peak","PlayerID":849092827,"Points":8430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6790","ServerKey":"pl181","X":550,"Y":489},{"Bonus":0,"Continent":"K45","ID":6791,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6791","ServerKey":"pl181","X":564,"Y":451},{"Bonus":0,"Continent":"K54","ID":6792,"Name":"052","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6792","ServerKey":"pl181","X":423,"Y":523},{"Bonus":0,"Continent":"K54","ID":6793,"Name":"#0081 Barabasz","PlayerID":9272054,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6793","ServerKey":"pl181","X":483,"Y":557},{"Bonus":0,"Continent":"K44","ID":6794,"Name":"K44 016","PlayerID":698290577,"Points":7124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6794","ServerKey":"pl181","X":435,"Y":485},{"Bonus":0,"Continent":"K45","ID":6795,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6795","ServerKey":"pl181","X":535,"Y":427},{"Bonus":0,"Continent":"K44","ID":6796,"Name":"177 Punta del Diablo","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6796","ServerKey":"pl181","X":479,"Y":480},{"Bonus":0,"Continent":"K54","ID":6797,"Name":"Front_34","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6797","ServerKey":"pl181","X":455,"Y":520},{"Bonus":0,"Continent":"K54","ID":6798,"Name":"0113","PlayerID":698659980,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6798","ServerKey":"pl181","X":471,"Y":546},{"Bonus":0,"Continent":"K45","ID":6799,"Name":"0010 pech","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6799","ServerKey":"pl181","X":504,"Y":498},{"Bonus":0,"Continent":"K44","ID":6800,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6800","ServerKey":"pl181","X":449,"Y":455},{"Bonus":0,"Continent":"K54","ID":6801,"Name":"COUS","PlayerID":8369778,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6801","ServerKey":"pl181","X":493,"Y":581},{"Bonus":0,"Continent":"K55","ID":6802,"Name":"[125]","PlayerID":8000875,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6802","ServerKey":"pl181","X":557,"Y":541},{"Bonus":0,"Continent":"K55","ID":6803,"Name":"Yogi","PlayerID":2808172,"Points":5469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6803","ServerKey":"pl181","X":533,"Y":537},{"Bonus":0,"Continent":"K45","ID":6804,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6804","ServerKey":"pl181","X":500,"Y":484},{"Bonus":0,"Continent":"K55","ID":6805,"Name":"B005","PlayerID":8138506,"Points":6721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6805","ServerKey":"pl181","X":555,"Y":503},{"Bonus":0,"Continent":"K54","ID":6807,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6807","ServerKey":"pl181","X":488,"Y":510},{"Bonus":0,"Continent":"K54","ID":6808,"Name":"Wioska barbarzyƄska","PlayerID":8438707,"Points":7350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6808","ServerKey":"pl181","X":460,"Y":575},{"Bonus":0,"Continent":"K55","ID":6809,"Name":"031. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6809","ServerKey":"pl181","X":571,"Y":533},{"Bonus":0,"Continent":"K45","ID":6810,"Name":"Osada","PlayerID":699098531,"Points":7159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6810","ServerKey":"pl181","X":512,"Y":454},{"Bonus":0,"Continent":"K54","ID":6811,"Name":"BETI 010","PlayerID":8539216,"Points":1791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6811","ServerKey":"pl181","X":459,"Y":568},{"Bonus":0,"Continent":"K54","ID":6812,"Name":"040","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6812","ServerKey":"pl181","X":424,"Y":524},{"Bonus":0,"Continent":"K45","ID":6813,"Name":"020","PlayerID":849031818,"Points":7496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6813","ServerKey":"pl181","X":581,"Y":459},{"Bonus":0,"Continent":"K55","ID":6814,"Name":"JaamMwG 023","PlayerID":848987051,"Points":8622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6814","ServerKey":"pl181","X":528,"Y":530},{"Bonus":0,"Continent":"K44","ID":6815,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6815","ServerKey":"pl181","X":496,"Y":466},{"Bonus":0,"Continent":"K54","ID":6816,"Name":"066. ALFI","PlayerID":8539216,"Points":1452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6816","ServerKey":"pl181","X":470,"Y":566},{"Bonus":0,"Continent":"K45","ID":6817,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6817","ServerKey":"pl181","X":528,"Y":489},{"Bonus":0,"Continent":"K54","ID":6818,"Name":"#0022 Robercik","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6818","ServerKey":"pl181","X":493,"Y":564},{"Bonus":0,"Continent":"K45","ID":6819,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6819","ServerKey":"pl181","X":522,"Y":488},{"Bonus":0,"Continent":"K54","ID":6820,"Name":"0592","PlayerID":698659980,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6820","ServerKey":"pl181","X":476,"Y":547},{"Bonus":0,"Continent":"K45","ID":6821,"Name":"Szlachcic","PlayerID":699098531,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6821","ServerKey":"pl181","X":500,"Y":458},{"Bonus":0,"Continent":"K44","ID":6822,"Name":"Suppi","PlayerID":699856962,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6822","ServerKey":"pl181","X":428,"Y":449},{"Bonus":3,"Continent":"K55","ID":6823,"Name":"054 |","PlayerID":8000875,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6823","ServerKey":"pl181","X":565,"Y":561},{"Bonus":0,"Continent":"K45","ID":6824,"Name":"080.","PlayerID":849094609,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6824","ServerKey":"pl181","X":570,"Y":459},{"Bonus":0,"Continent":"K55","ID":6825,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6825","ServerKey":"pl181","X":528,"Y":545},{"Bonus":0,"Continent":"K35","ID":6826,"Name":"008. Rivia","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6826","ServerKey":"pl181","X":559,"Y":396},{"Bonus":0,"Continent":"K45","ID":6827,"Name":"Szlachcic","PlayerID":698867446,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6827","ServerKey":"pl181","X":567,"Y":484},{"Bonus":0,"Continent":"K44","ID":6828,"Name":"B016","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6828","ServerKey":"pl181","X":481,"Y":451},{"Bonus":0,"Continent":"K45","ID":6829,"Name":"monetki","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6829","ServerKey":"pl181","X":508,"Y":441},{"Bonus":0,"Continent":"K55","ID":6830,"Name":"Daj mi znać","PlayerID":699785935,"Points":7083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6830","ServerKey":"pl181","X":511,"Y":508},{"Bonus":0,"Continent":"K44","ID":6831,"Name":"?+44 85 Fort Mahon Plage","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6831","ServerKey":"pl181","X":455,"Y":482},{"Bonus":0,"Continent":"K46","ID":6832,"Name":"002. Mediolanum","PlayerID":849091866,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6832","ServerKey":"pl181","X":611,"Y":460},{"Bonus":0,"Continent":"K44","ID":6833,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6833","ServerKey":"pl181","X":436,"Y":463},{"Bonus":0,"Continent":"K45","ID":6835,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6835","ServerKey":"pl181","X":545,"Y":495},{"Bonus":0,"Continent":"K45","ID":6836,"Name":"-[011]- Gaszerbrum I","PlayerID":849092827,"Points":8078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6836","ServerKey":"pl181","X":550,"Y":483},{"Bonus":0,"Continent":"K54","ID":6837,"Name":"Butem w Morgen","PlayerID":848967710,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6837","ServerKey":"pl181","X":492,"Y":511},{"Bonus":0,"Continent":"K55","ID":6838,"Name":"20022","PlayerID":848915531,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6838","ServerKey":"pl181","X":504,"Y":547},{"Bonus":0,"Continent":"K44","ID":6839,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6839","ServerKey":"pl181","X":490,"Y":467},{"Bonus":0,"Continent":"K55","ID":6840,"Name":"P.030","PlayerID":873575,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6840","ServerKey":"pl181","X":543,"Y":560},{"Bonus":0,"Continent":"K45","ID":6841,"Name":".:035:. Chillout","PlayerID":848934935,"Points":3082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6841","ServerKey":"pl181","X":522,"Y":449},{"Bonus":2,"Continent":"K55","ID":6842,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6842","ServerKey":"pl181","X":527,"Y":544},{"Bonus":0,"Continent":"K44","ID":6844,"Name":"Cast Away 014","PlayerID":698290577,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6844","ServerKey":"pl181","X":454,"Y":483},{"Bonus":0,"Continent":"K54","ID":6845,"Name":"CHW#024r","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6845","ServerKey":"pl181","X":487,"Y":537},{"Bonus":0,"Continent":"K45","ID":6846,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6846","ServerKey":"pl181","X":524,"Y":442},{"Bonus":0,"Continent":"K45","ID":6847,"Name":"013","PlayerID":849070464,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6847","ServerKey":"pl181","X":569,"Y":467},{"Bonus":0,"Continent":"K44","ID":6848,"Name":"[A]_[032] Dejv.oldplyr","PlayerID":699380607,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6848","ServerKey":"pl181","X":408,"Y":475},{"Bonus":0,"Continent":"K55","ID":6849,"Name":"Mzm17.","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6849","ServerKey":"pl181","X":559,"Y":519},{"Bonus":0,"Continent":"K44","ID":6850,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6850","ServerKey":"pl181","X":429,"Y":461},{"Bonus":0,"Continent":"K54","ID":6851,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6851","ServerKey":"pl181","X":454,"Y":516},{"Bonus":0,"Continent":"K55","ID":6852,"Name":"B001","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6852","ServerKey":"pl181","X":558,"Y":502},{"Bonus":0,"Continent":"K54","ID":6853,"Name":"Front_24","PlayerID":699856962,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6853","ServerKey":"pl181","X":455,"Y":530},{"Bonus":0,"Continent":"K44","ID":6854,"Name":"+44 75 Lyon Menival","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6854","ServerKey":"pl181","X":452,"Y":473},{"Bonus":0,"Continent":"K55","ID":6855,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6855","ServerKey":"pl181","X":532,"Y":566},{"Bonus":0,"Continent":"K54","ID":6857,"Name":"Suppi","PlayerID":699856962,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6857","ServerKey":"pl181","X":440,"Y":519},{"Bonus":0,"Continent":"K55","ID":6858,"Name":"[020] Membunuhmu","PlayerID":848985692,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6858","ServerKey":"pl181","X":590,"Y":521},{"Bonus":0,"Continent":"K45","ID":6859,"Name":".achim.","PlayerID":6936607,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6859","ServerKey":"pl181","X":541,"Y":466},{"Bonus":0,"Continent":"K45","ID":6861,"Name":"Kaczystan","PlayerID":848986287,"Points":9576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6861","ServerKey":"pl181","X":550,"Y":425},{"Bonus":0,"Continent":"K54","ID":6862,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6862","ServerKey":"pl181","X":484,"Y":557},{"Bonus":0,"Continent":"K56","ID":6863,"Name":"06 Hazard","PlayerID":9314079,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6863","ServerKey":"pl181","X":614,"Y":515},{"Bonus":0,"Continent":"K45","ID":6864,"Name":"0019","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6864","ServerKey":"pl181","X":507,"Y":497},{"Bonus":0,"Continent":"K54","ID":6865,"Name":"(025)","PlayerID":9236866,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6865","ServerKey":"pl181","X":418,"Y":537},{"Bonus":0,"Continent":"K55","ID":6866,"Name":"029","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6866","ServerKey":"pl181","X":527,"Y":572},{"Bonus":0,"Continent":"K44","ID":6867,"Name":"-029-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6867","ServerKey":"pl181","X":466,"Y":423},{"Bonus":0,"Continent":"K44","ID":6868,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6868","ServerKey":"pl181","X":422,"Y":460},{"Bonus":0,"Continent":"K44","ID":6869,"Name":"Szlachcic","PlayerID":699098531,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6869","ServerKey":"pl181","X":499,"Y":461},{"Bonus":9,"Continent":"K45","ID":6870,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6870","ServerKey":"pl181","X":517,"Y":436},{"Bonus":0,"Continent":"K53","ID":6871,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6871","ServerKey":"pl181","X":381,"Y":503},{"Bonus":0,"Continent":"K54","ID":6872,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6872","ServerKey":"pl181","X":457,"Y":539},{"Bonus":0,"Continent":"K44","ID":6873,"Name":"A015","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6873","ServerKey":"pl181","X":490,"Y":412},{"Bonus":0,"Continent":"K45","ID":6874,"Name":"Osada","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6874","ServerKey":"pl181","X":503,"Y":453},{"Bonus":0,"Continent":"K54","ID":6875,"Name":"Front_02","PlayerID":2585846,"Points":3747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6875","ServerKey":"pl181","X":461,"Y":520},{"Bonus":0,"Continent":"K64","ID":6876,"Name":"008","PlayerID":8925624,"Points":5143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6876","ServerKey":"pl181","X":478,"Y":606},{"Bonus":0,"Continent":"K55","ID":6877,"Name":"[086]","PlayerID":8000875,"Points":8596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6877","ServerKey":"pl181","X":550,"Y":511},{"Bonus":0,"Continent":"K45","ID":6878,"Name":"Wioska barbarzyƄska 016|","PlayerID":6343784,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6878","ServerKey":"pl181","X":572,"Y":402},{"Bonus":0,"Continent":"K54","ID":6879,"Name":"009 Fiona","PlayerID":698290577,"Points":5050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6879","ServerKey":"pl181","X":447,"Y":508},{"Bonus":0,"Continent":"K45","ID":6880,"Name":"C004","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6880","ServerKey":"pl181","X":521,"Y":456},{"Bonus":0,"Continent":"K45","ID":6881,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6881","ServerKey":"pl181","X":544,"Y":417},{"Bonus":0,"Continent":"K45","ID":6882,"Name":"005","PlayerID":699099811,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6882","ServerKey":"pl181","X":564,"Y":491},{"Bonus":0,"Continent":"K45","ID":6883,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6883","ServerKey":"pl181","X":517,"Y":472},{"Bonus":0,"Continent":"K45","ID":6884,"Name":"056.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6884","ServerKey":"pl181","X":511,"Y":494},{"Bonus":0,"Continent":"K55","ID":6885,"Name":"[153]","PlayerID":8000875,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6885","ServerKey":"pl181","X":562,"Y":537},{"Bonus":0,"Continent":"K64","ID":6886,"Name":"szkot","PlayerID":699494488,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6886","ServerKey":"pl181","X":486,"Y":620},{"Bonus":0,"Continent":"K45","ID":6887,"Name":".:126:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6887","ServerKey":"pl181","X":518,"Y":414},{"Bonus":8,"Continent":"K55","ID":6888,"Name":"022. Wioska Lord Pumbarak","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6888","ServerKey":"pl181","X":565,"Y":517},{"Bonus":0,"Continent":"K54","ID":6889,"Name":"F059","PlayerID":699189792,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6889","ServerKey":"pl181","X":489,"Y":525},{"Bonus":0,"Continent":"K55","ID":6890,"Name":"CALL 950","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6890","ServerKey":"pl181","X":552,"Y":553},{"Bonus":2,"Continent":"K44","ID":6891,"Name":"+44 72 Leffrinckouque","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6891","ServerKey":"pl181","X":428,"Y":475},{"Bonus":0,"Continent":"K44","ID":6892,"Name":"Szlachcic","PlayerID":699098531,"Points":9715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6892","ServerKey":"pl181","X":494,"Y":481},{"Bonus":9,"Continent":"K44","ID":6893,"Name":"B021","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6893","ServerKey":"pl181","X":483,"Y":456},{"Bonus":0,"Continent":"K45","ID":6894,"Name":"Alltimov","PlayerID":699658023,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6894","ServerKey":"pl181","X":501,"Y":417},{"Bonus":4,"Continent":"K45","ID":6895,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6895","ServerKey":"pl181","X":504,"Y":469},{"Bonus":0,"Continent":"K44","ID":6896,"Name":"Konfiasze","PlayerID":698908912,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6896","ServerKey":"pl181","X":473,"Y":496},{"Bonus":0,"Continent":"K45","ID":6897,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6897","ServerKey":"pl181","X":521,"Y":429},{"Bonus":0,"Continent":"K55","ID":6898,"Name":"20018","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6898","ServerKey":"pl181","X":514,"Y":549},{"Bonus":0,"Continent":"K44","ID":6899,"Name":"011 Portland","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6899","ServerKey":"pl181","X":445,"Y":472},{"Bonus":3,"Continent":"K55","ID":6900,"Name":"062 |","PlayerID":8000875,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6900","ServerKey":"pl181","X":549,"Y":508},{"Bonus":0,"Continent":"K64","ID":6901,"Name":"0033","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6901","ServerKey":"pl181","X":463,"Y":611},{"Bonus":0,"Continent":"K54","ID":6902,"Name":"074. ALFI","PlayerID":8539216,"Points":1475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6902","ServerKey":"pl181","X":485,"Y":559},{"Bonus":0,"Continent":"K55","ID":6903,"Name":"Szlachcic 056","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6903","ServerKey":"pl181","X":562,"Y":530},{"Bonus":0,"Continent":"K35","ID":6904,"Name":"076","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6904","ServerKey":"pl181","X":565,"Y":396},{"Bonus":0,"Continent":"K54","ID":6905,"Name":"062. ALFI","PlayerID":8539216,"Points":1433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6905","ServerKey":"pl181","X":469,"Y":568},{"Bonus":0,"Continent":"K45","ID":6907,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6907","ServerKey":"pl181","X":572,"Y":498},{"Bonus":6,"Continent":"K44","ID":6908,"Name":"064 New York City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6908","ServerKey":"pl181","X":463,"Y":475},{"Bonus":0,"Continent":"K44","ID":6909,"Name":"080 Little Rock","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6909","ServerKey":"pl181","X":470,"Y":475},{"Bonus":0,"Continent":"K54","ID":6910,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":8474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6910","ServerKey":"pl181","X":455,"Y":518},{"Bonus":0,"Continent":"K45","ID":6911,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6911","ServerKey":"pl181","X":534,"Y":419},{"Bonus":0,"Continent":"K55","ID":6912,"Name":"040 |","PlayerID":8000875,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6912","ServerKey":"pl181","X":560,"Y":565},{"Bonus":0,"Continent":"K54","ID":6913,"Name":"...","PlayerID":848915531,"Points":9501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6913","ServerKey":"pl181","X":493,"Y":538},{"Bonus":0,"Continent":"K55","ID":6914,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6914","ServerKey":"pl181","X":560,"Y":508},{"Bonus":0,"Continent":"K54","ID":6915,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6915","ServerKey":"pl181","X":446,"Y":529},{"Bonus":0,"Continent":"K55","ID":6916,"Name":"CALL 1083","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6916","ServerKey":"pl181","X":534,"Y":548},{"Bonus":0,"Continent":"K45","ID":6917,"Name":"1h10 jeszcze dƂuĆŒej","PlayerID":699368887,"Points":6548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6917","ServerKey":"pl181","X":551,"Y":458},{"Bonus":0,"Continent":"K44","ID":6918,"Name":"A003","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6918","ServerKey":"pl181","X":488,"Y":411},{"Bonus":0,"Continent":"K45","ID":6919,"Name":"111 Ok? Ok.","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6919","ServerKey":"pl181","X":539,"Y":455},{"Bonus":0,"Continent":"K54","ID":6920,"Name":"#064","PlayerID":849001572,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6920","ServerKey":"pl181","X":474,"Y":575},{"Bonus":0,"Continent":"K45","ID":6921,"Name":"7.62 mm","PlayerID":699777234,"Points":9026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6921","ServerKey":"pl181","X":504,"Y":435},{"Bonus":0,"Continent":"K44","ID":6922,"Name":"A#045#","PlayerID":698807570,"Points":11106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6922","ServerKey":"pl181","X":412,"Y":479},{"Bonus":0,"Continent":"K54","ID":6923,"Name":"Bye Bye Beautiful","PlayerID":699785935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6923","ServerKey":"pl181","X":491,"Y":511},{"Bonus":0,"Continent":"K55","ID":6924,"Name":"0026","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6924","ServerKey":"pl181","X":527,"Y":502},{"Bonus":0,"Continent":"K53","ID":6925,"Name":"168 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6925","ServerKey":"pl181","X":387,"Y":542},{"Bonus":0,"Continent":"K45","ID":6926,"Name":"223 Canberra","PlayerID":1497168,"Points":9261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6926","ServerKey":"pl181","X":532,"Y":441},{"Bonus":0,"Continent":"K54","ID":6927,"Name":"Sparta_35","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6927","ServerKey":"pl181","X":480,"Y":578},{"Bonus":0,"Continent":"K55","ID":6928,"Name":"041 Plemię","PlayerID":8323711,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6928","ServerKey":"pl181","X":574,"Y":502},{"Bonus":0,"Continent":"K54","ID":6929,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6929","ServerKey":"pl181","X":419,"Y":549},{"Bonus":0,"Continent":"K45","ID":6930,"Name":"Szlachcic","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6930","ServerKey":"pl181","X":501,"Y":476},{"Bonus":0,"Continent":"K44","ID":6931,"Name":"106 Regina","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6931","ServerKey":"pl181","X":472,"Y":488},{"Bonus":1,"Continent":"K54","ID":6932,"Name":"084. ALFI","PlayerID":3613413,"Points":2339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6932","ServerKey":"pl181","X":482,"Y":553},{"Bonus":0,"Continent":"K54","ID":6933,"Name":"006","PlayerID":849092723,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6933","ServerKey":"pl181","X":485,"Y":525},{"Bonus":0,"Continent":"K44","ID":6934,"Name":"PRO8L3M","PlayerID":7491093,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6934","ServerKey":"pl181","X":468,"Y":490},{"Bonus":0,"Continent":"K54","ID":6935,"Name":"Fajna 046","PlayerID":3613413,"Points":3797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6935","ServerKey":"pl181","X":458,"Y":558},{"Bonus":0,"Continent":"K44","ID":6936,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6936","ServerKey":"pl181","X":474,"Y":421},{"Bonus":0,"Continent":"K55","ID":6937,"Name":"WystrzeliƂem się Tobą !","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6937","ServerKey":"pl181","X":500,"Y":508},{"Bonus":0,"Continent":"K54","ID":6938,"Name":"To chyba to","PlayerID":698290577,"Points":5311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6938","ServerKey":"pl181","X":483,"Y":503},{"Bonus":0,"Continent":"K45","ID":6939,"Name":"Tesa 15","PlayerID":698845189,"Points":4065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6939","ServerKey":"pl181","X":533,"Y":496},{"Bonus":0,"Continent":"K54","ID":6940,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6940","ServerKey":"pl181","X":428,"Y":531},{"Bonus":0,"Continent":"K55","ID":6941,"Name":"Mzm26","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6941","ServerKey":"pl181","X":556,"Y":534},{"Bonus":0,"Continent":"K54","ID":6942,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":8111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6942","ServerKey":"pl181","X":451,"Y":518},{"Bonus":0,"Continent":"K54","ID":6943,"Name":"Winter is coming","PlayerID":699856962,"Points":9069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6943","ServerKey":"pl181","X":438,"Y":538},{"Bonus":0,"Continent":"K55","ID":6944,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6944","ServerKey":"pl181","X":536,"Y":534},{"Bonus":0,"Continent":"K45","ID":6945,"Name":"Lincoln","PlayerID":699368887,"Points":5291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6945","ServerKey":"pl181","X":554,"Y":446},{"Bonus":0,"Continent":"K44","ID":6946,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6946","ServerKey":"pl181","X":446,"Y":469},{"Bonus":0,"Continent":"K55","ID":6947,"Name":"Szlachcic 005","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6947","ServerKey":"pl181","X":567,"Y":547},{"Bonus":0,"Continent":"K55","ID":6948,"Name":"033. Apus","PlayerID":699703642,"Points":7606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6948","ServerKey":"pl181","X":511,"Y":581},{"Bonus":0,"Continent":"K55","ID":6949,"Name":"0055 K55 and987 OZDR","PlayerID":3613413,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6949","ServerKey":"pl181","X":507,"Y":562},{"Bonus":0,"Continent":"K54","ID":6950,"Name":"#0095 Zastawek","PlayerID":9272054,"Points":7898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6950","ServerKey":"pl181","X":474,"Y":558},{"Bonus":8,"Continent":"K45","ID":6951,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6951","ServerKey":"pl181","X":506,"Y":444},{"Bonus":0,"Continent":"K55","ID":6952,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6952","ServerKey":"pl181","X":503,"Y":546},{"Bonus":0,"Continent":"K45","ID":6953,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6953","ServerKey":"pl181","X":577,"Y":498},{"Bonus":0,"Continent":"K44","ID":6954,"Name":"HoƂopole","PlayerID":699433558,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6954","ServerKey":"pl181","X":488,"Y":410},{"Bonus":0,"Continent":"K54","ID":6955,"Name":"*Ateny_07","PlayerID":699856962,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6955","ServerKey":"pl181","X":469,"Y":536},{"Bonus":0,"Continent":"K54","ID":6956,"Name":"WINTER IS COMING","PlayerID":1536625,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6956","ServerKey":"pl181","X":471,"Y":504},{"Bonus":0,"Continent":"K54","ID":6957,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6957","ServerKey":"pl181","X":434,"Y":524},{"Bonus":4,"Continent":"K54","ID":6958,"Name":"Sparta_30","PlayerID":2585846,"Points":7270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6958","ServerKey":"pl181","X":484,"Y":578},{"Bonus":0,"Continent":"K44","ID":6960,"Name":"A044","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6960","ServerKey":"pl181","X":496,"Y":421},{"Bonus":0,"Continent":"K55","ID":6961,"Name":"Winter is coming","PlayerID":699364813,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6961","ServerKey":"pl181","X":504,"Y":583},{"Bonus":0,"Continent":"K55","ID":6962,"Name":"- 124 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6962","ServerKey":"pl181","X":536,"Y":581},{"Bonus":0,"Continent":"K55","ID":6963,"Name":"021","PlayerID":699316421,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6963","ServerKey":"pl181","X":574,"Y":548},{"Bonus":0,"Continent":"K35","ID":6964,"Name":"Amsterdam","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6964","ServerKey":"pl181","X":538,"Y":386},{"Bonus":0,"Continent":"K55","ID":6965,"Name":"007","PlayerID":848915531,"Points":11305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6965","ServerKey":"pl181","X":507,"Y":539},{"Bonus":0,"Continent":"K54","ID":6966,"Name":"keepo","PlayerID":848967710,"Points":9270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6966","ServerKey":"pl181","X":483,"Y":529},{"Bonus":0,"Continent":"K55","ID":6967,"Name":"Wioska 418","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6967","ServerKey":"pl181","X":557,"Y":511},{"Bonus":0,"Continent":"K44","ID":6968,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6968","ServerKey":"pl181","X":438,"Y":418},{"Bonus":0,"Continent":"K45","ID":6969,"Name":"0035","PlayerID":699432672,"Points":4866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6969","ServerKey":"pl181","X":553,"Y":494},{"Bonus":0,"Continent":"K54","ID":6970,"Name":"keepo","PlayerID":848967710,"Points":6050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6970","ServerKey":"pl181","X":479,"Y":514},{"Bonus":0,"Continent":"K44","ID":6971,"Name":"+44 61 Marcy LEtoile","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6971","ServerKey":"pl181","X":418,"Y":462},{"Bonus":0,"Continent":"K46","ID":6972,"Name":"[200] WEST","PlayerID":848985692,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6972","ServerKey":"pl181","X":611,"Y":457},{"Bonus":0,"Continent":"K45","ID":6973,"Name":":c.","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6973","ServerKey":"pl181","X":543,"Y":474},{"Bonus":0,"Continent":"K44","ID":6974,"Name":"?+44 85 Saint Georges sur lAa","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6974","ServerKey":"pl181","X":456,"Y":484},{"Bonus":0,"Continent":"K45","ID":6975,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6975","ServerKey":"pl181","X":521,"Y":499},{"Bonus":0,"Continent":"K54","ID":6976,"Name":"SsSs","PlayerID":1536625,"Points":7624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6976","ServerKey":"pl181","X":462,"Y":500},{"Bonus":0,"Continent":"K44","ID":6977,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6977","ServerKey":"pl181","X":400,"Y":469},{"Bonus":0,"Continent":"K54","ID":6978,"Name":"0144","PlayerID":698659980,"Points":7547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6978","ServerKey":"pl181","X":467,"Y":552},{"Bonus":0,"Continent":"K44","ID":6979,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6979","ServerKey":"pl181","X":494,"Y":412},{"Bonus":0,"Continent":"K44","ID":6980,"Name":"Monetki","PlayerID":699098531,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6980","ServerKey":"pl181","X":480,"Y":424},{"Bonus":0,"Continent":"K45","ID":6981,"Name":"POGRZEB GRUBYCH","PlayerID":8155296,"Points":10947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6981","ServerKey":"pl181","X":539,"Y":446},{"Bonus":0,"Continent":"K54","ID":6982,"Name":"013","PlayerID":848886870,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6982","ServerKey":"pl181","X":462,"Y":574},{"Bonus":0,"Continent":"K55","ID":6983,"Name":"005. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6983","ServerKey":"pl181","X":585,"Y":530},{"Bonus":0,"Continent":"K45","ID":6984,"Name":"5.No cheba","PlayerID":8649412,"Points":5971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6984","ServerKey":"pl181","X":506,"Y":457},{"Bonus":0,"Continent":"K44","ID":6985,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6985","ServerKey":"pl181","X":408,"Y":491},{"Bonus":0,"Continent":"K44","ID":6986,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6986","ServerKey":"pl181","X":475,"Y":414},{"Bonus":0,"Continent":"K55","ID":6987,"Name":"MichaƂ","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6987","ServerKey":"pl181","X":530,"Y":536},{"Bonus":0,"Continent":"K44","ID":6988,"Name":"B021","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6988","ServerKey":"pl181","X":496,"Y":494},{"Bonus":0,"Continent":"K54","ID":6989,"Name":"003","PlayerID":699856962,"Points":2992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6989","ServerKey":"pl181","X":434,"Y":551},{"Bonus":0,"Continent":"K54","ID":6990,"Name":"NOT FOR YOU","PlayerID":9236866,"Points":7870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6990","ServerKey":"pl181","X":456,"Y":551},{"Bonus":0,"Continent":"K45","ID":6991,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":8627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6991","ServerKey":"pl181","X":563,"Y":452},{"Bonus":0,"Continent":"K45","ID":6992,"Name":"018.KAT","PlayerID":849031818,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6992","ServerKey":"pl181","X":556,"Y":484},{"Bonus":0,"Continent":"K55","ID":6993,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6993","ServerKey":"pl181","X":513,"Y":527},{"Bonus":0,"Continent":"K54","ID":6994,"Name":"budzik","PlayerID":698971484,"Points":8717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6994","ServerKey":"pl181","X":443,"Y":535},{"Bonus":0,"Continent":"K55","ID":6995,"Name":"Szlachcic 046","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6995","ServerKey":"pl181","X":549,"Y":518},{"Bonus":3,"Continent":"K44","ID":6996,"Name":"-042-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6996","ServerKey":"pl181","X":456,"Y":425},{"Bonus":0,"Continent":"K45","ID":6997,"Name":"Skanned","PlayerID":699368887,"Points":3975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6997","ServerKey":"pl181","X":555,"Y":445},{"Bonus":0,"Continent":"K54","ID":6998,"Name":"0091","PlayerID":698659980,"Points":8240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6998","ServerKey":"pl181","X":469,"Y":556},{"Bonus":0,"Continent":"K45","ID":6999,"Name":"MasteroN 09","PlayerID":699379895,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=6999","ServerKey":"pl181","X":571,"Y":445},{"Bonus":0,"Continent":"K45","ID":7000,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7000","ServerKey":"pl181","X":581,"Y":486},{"Bonus":0,"Continent":"K44","ID":7001,"Name":"4xxxxxxxxxxxx","PlayerID":9291984,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7001","ServerKey":"pl181","X":464,"Y":436},{"Bonus":0,"Continent":"K45","ID":7002,"Name":"EEE","PlayerID":849091084,"Points":9135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7002","ServerKey":"pl181","X":530,"Y":458},{"Bonus":0,"Continent":"K45","ID":7003,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7003","ServerKey":"pl181","X":579,"Y":497},{"Bonus":0,"Continent":"K46","ID":7004,"Name":"L 5","PlayerID":849027653,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7004","ServerKey":"pl181","X":613,"Y":478},{"Bonus":0,"Continent":"K45","ID":7005,"Name":"x A23","PlayerID":3909522,"Points":6570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7005","ServerKey":"pl181","X":551,"Y":461},{"Bonus":0,"Continent":"K54","ID":7006,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7006","ServerKey":"pl181","X":485,"Y":509},{"Bonus":0,"Continent":"K45","ID":7007,"Name":".achim.","PlayerID":6936607,"Points":8361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7007","ServerKey":"pl181","X":530,"Y":451},{"Bonus":0,"Continent":"K54","ID":7008,"Name":"006","PlayerID":699781762,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7008","ServerKey":"pl181","X":475,"Y":506},{"Bonus":0,"Continent":"K44","ID":7009,"Name":"A036","PlayerID":699299123,"Points":7481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7009","ServerKey":"pl181","X":494,"Y":410},{"Bonus":0,"Continent":"K44","ID":7010,"Name":"[0059]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7010","ServerKey":"pl181","X":416,"Y":415},{"Bonus":0,"Continent":"K45","ID":7011,"Name":"Domek 2","PlayerID":849064614,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7011","ServerKey":"pl181","X":547,"Y":423},{"Bonus":0,"Continent":"K44","ID":7012,"Name":"050","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7012","ServerKey":"pl181","X":411,"Y":484},{"Bonus":9,"Continent":"K44","ID":7013,"Name":"0000","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7013","ServerKey":"pl181","X":451,"Y":427},{"Bonus":0,"Continent":"K55","ID":7014,"Name":"Z04 Rivan","PlayerID":699272880,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7014","ServerKey":"pl181","X":561,"Y":522},{"Bonus":0,"Continent":"K44","ID":7015,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7015","ServerKey":"pl181","X":452,"Y":459},{"Bonus":0,"Continent":"K55","ID":7016,"Name":"0012","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7016","ServerKey":"pl181","X":507,"Y":505},{"Bonus":0,"Continent":"K45","ID":7017,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7017","ServerKey":"pl181","X":524,"Y":428},{"Bonus":0,"Continent":"K55","ID":7018,"Name":"CALL 944","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7018","ServerKey":"pl181","X":551,"Y":555},{"Bonus":0,"Continent":"K44","ID":7019,"Name":"K44 022","PlayerID":698290577,"Points":5573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7019","ServerKey":"pl181","X":428,"Y":496},{"Bonus":0,"Continent":"K45","ID":7020,"Name":"Marienburg 1","PlayerID":699355601,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7020","ServerKey":"pl181","X":524,"Y":481},{"Bonus":0,"Continent":"K54","ID":7021,"Name":"2. Jagdtiger","PlayerID":849087855,"Points":8995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7021","ServerKey":"pl181","X":494,"Y":527},{"Bonus":0,"Continent":"K45","ID":7022,"Name":"029","PlayerID":699788305,"Points":8600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7022","ServerKey":"pl181","X":534,"Y":431},{"Bonus":0,"Continent":"K45","ID":7023,"Name":".achim.","PlayerID":6936607,"Points":8642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7023","ServerKey":"pl181","X":517,"Y":445},{"Bonus":3,"Continent":"K54","ID":7024,"Name":"Kasyno","PlayerID":7249451,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7024","ServerKey":"pl181","X":442,"Y":511},{"Bonus":0,"Continent":"K54","ID":7025,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":1470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7025","ServerKey":"pl181","X":419,"Y":541},{"Bonus":0,"Continent":"K44","ID":7026,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7026","ServerKey":"pl181","X":489,"Y":480},{"Bonus":0,"Continent":"K46","ID":7027,"Name":"030 Kentucky","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7027","ServerKey":"pl181","X":607,"Y":488},{"Bonus":0,"Continent":"K44","ID":7028,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7028","ServerKey":"pl181","X":471,"Y":419},{"Bonus":1,"Continent":"K55","ID":7029,"Name":"Wioska Wojtek150 002","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7029","ServerKey":"pl181","X":534,"Y":519},{"Bonus":0,"Continent":"K54","ID":7030,"Name":"Fajna 051","PlayerID":698971484,"Points":6153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7030","ServerKey":"pl181","X":448,"Y":555},{"Bonus":0,"Continent":"K54","ID":7031,"Name":"Mniejsze zƂo 0056","PlayerID":699794765,"Points":6628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7031","ServerKey":"pl181","X":420,"Y":504},{"Bonus":0,"Continent":"K54","ID":7032,"Name":"Warzywniak 021","PlayerID":698290577,"Points":1546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7032","ServerKey":"pl181","X":452,"Y":548},{"Bonus":0,"Continent":"K45","ID":7033,"Name":"Gattacka","PlayerID":699298370,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7033","ServerKey":"pl181","X":590,"Y":491},{"Bonus":0,"Continent":"K55","ID":7035,"Name":"F031","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7035","ServerKey":"pl181","X":500,"Y":531},{"Bonus":0,"Continent":"K54","ID":7036,"Name":"Front_35","PlayerID":2585846,"Points":3751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7036","ServerKey":"pl181","X":455,"Y":521},{"Bonus":0,"Continent":"K44","ID":7037,"Name":"0063 Cr250r","PlayerID":3909522,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7037","ServerKey":"pl181","X":455,"Y":428},{"Bonus":0,"Continent":"K45","ID":7038,"Name":"[096]","PlayerID":848985692,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7038","ServerKey":"pl181","X":541,"Y":482},{"Bonus":0,"Continent":"K45","ID":7039,"Name":"[133] North","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7039","ServerKey":"pl181","X":582,"Y":474},{"Bonus":0,"Continent":"K54","ID":7040,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":9303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7040","ServerKey":"pl181","X":499,"Y":567},{"Bonus":0,"Continent":"K44","ID":7041,"Name":"NOT?","PlayerID":9236866,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7041","ServerKey":"pl181","X":429,"Y":493},{"Bonus":0,"Continent":"K44","ID":7042,"Name":"0062 ~41~Wioska","PlayerID":3909522,"Points":8208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7042","ServerKey":"pl181","X":444,"Y":432},{"Bonus":0,"Continent":"K54","ID":7043,"Name":"PRO8L3M","PlayerID":7491093,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7043","ServerKey":"pl181","X":449,"Y":501},{"Bonus":0,"Continent":"K45","ID":7044,"Name":"Osada","PlayerID":699098531,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7044","ServerKey":"pl181","X":502,"Y":443},{"Bonus":0,"Continent":"K54","ID":7045,"Name":"#0069 Mateusz W","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7045","ServerKey":"pl181","X":494,"Y":548},{"Bonus":0,"Continent":"K45","ID":7046,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7046","ServerKey":"pl181","X":524,"Y":438},{"Bonus":0,"Continent":"K45","ID":7047,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7047","ServerKey":"pl181","X":509,"Y":467},{"Bonus":0,"Continent":"K55","ID":7048,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7048","ServerKey":"pl181","X":584,"Y":534},{"Bonus":1,"Continent":"K44","ID":7049,"Name":"Monetki","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7049","ServerKey":"pl181","X":481,"Y":435},{"Bonus":0,"Continent":"K45","ID":7050,"Name":"006 Lavender Town","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7050","ServerKey":"pl181","X":587,"Y":493},{"Bonus":0,"Continent":"K55","ID":7051,"Name":"10008","PlayerID":848915531,"Points":6788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7051","ServerKey":"pl181","X":523,"Y":566},{"Bonus":0,"Continent":"K44","ID":7052,"Name":"Szlachcic","PlayerID":699098531,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7052","ServerKey":"pl181","X":483,"Y":472},{"Bonus":0,"Continent":"K44","ID":7053,"Name":"B049","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7053","ServerKey":"pl181","X":477,"Y":464},{"Bonus":0,"Continent":"K45","ID":7054,"Name":"-[200]- Mont Blanc","PlayerID":849092827,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7054","ServerKey":"pl181","X":575,"Y":446},{"Bonus":0,"Continent":"K44","ID":7055,"Name":"PRO8L3M","PlayerID":7491093,"Points":8788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7055","ServerKey":"pl181","X":462,"Y":492},{"Bonus":0,"Continent":"K45","ID":7056,"Name":"Osada","PlayerID":699098531,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7056","ServerKey":"pl181","X":508,"Y":451},{"Bonus":0,"Continent":"K55","ID":7057,"Name":"013W JaCoB*","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7057","ServerKey":"pl181","X":561,"Y":511},{"Bonus":0,"Continent":"K55","ID":7058,"Name":"10003","PlayerID":848915531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7058","ServerKey":"pl181","X":527,"Y":568},{"Bonus":0,"Continent":"K54","ID":7059,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7059","ServerKey":"pl181","X":434,"Y":507},{"Bonus":0,"Continent":"K43","ID":7060,"Name":"[A]_[006] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7060","ServerKey":"pl181","X":398,"Y":483},{"Bonus":0,"Continent":"K55","ID":7061,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7061","ServerKey":"pl181","X":504,"Y":572},{"Bonus":0,"Continent":"K35","ID":7062,"Name":"ADEN","PlayerID":698588535,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7062","ServerKey":"pl181","X":524,"Y":381},{"Bonus":0,"Continent":"K44","ID":7063,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7063","ServerKey":"pl181","X":425,"Y":462},{"Bonus":0,"Continent":"K35","ID":7064,"Name":"Taran","PlayerID":699170684,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7064","ServerKey":"pl181","X":545,"Y":384},{"Bonus":0,"Continent":"K54","ID":7065,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7065","ServerKey":"pl181","X":418,"Y":514},{"Bonus":0,"Continent":"K55","ID":7066,"Name":"kek","PlayerID":848967710,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7066","ServerKey":"pl181","X":536,"Y":519},{"Bonus":0,"Continent":"K45","ID":7067,"Name":"091","PlayerID":699351301,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7067","ServerKey":"pl181","X":540,"Y":496},{"Bonus":0,"Continent":"K55","ID":7068,"Name":"JaamMwG 029","PlayerID":848987051,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7068","ServerKey":"pl181","X":525,"Y":521},{"Bonus":0,"Continent":"K44","ID":7069,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7069","ServerKey":"pl181","X":490,"Y":429},{"Bonus":0,"Continent":"K35","ID":7070,"Name":"ADEN","PlayerID":698588535,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7070","ServerKey":"pl181","X":528,"Y":381},{"Bonus":0,"Continent":"K44","ID":7071,"Name":"Brat447","PlayerID":699262350,"Points":6053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7071","ServerKey":"pl181","X":434,"Y":488},{"Bonus":0,"Continent":"K54","ID":7072,"Name":"007","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7072","ServerKey":"pl181","X":465,"Y":583},{"Bonus":0,"Continent":"K45","ID":7073,"Name":"0017|Praga","PlayerID":699098531,"Points":8302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7073","ServerKey":"pl181","X":511,"Y":444},{"Bonus":4,"Continent":"K55","ID":7074,"Name":"-004-","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7074","ServerKey":"pl181","X":512,"Y":543},{"Bonus":0,"Continent":"K54","ID":7075,"Name":"016","PlayerID":7976264,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7075","ServerKey":"pl181","X":481,"Y":583},{"Bonus":0,"Continent":"K45","ID":7076,"Name":"Gattacka","PlayerID":699298370,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7076","ServerKey":"pl181","X":590,"Y":497},{"Bonus":0,"Continent":"K54","ID":7077,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7077","ServerKey":"pl181","X":461,"Y":558},{"Bonus":0,"Continent":"K55","ID":7078,"Name":"Mzm47","PlayerID":7142659,"Points":7896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7078","ServerKey":"pl181","X":557,"Y":520},{"Bonus":0,"Continent":"K44","ID":7079,"Name":"00976 ZARABIAM PP","PlayerID":3909522,"Points":5913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7079","ServerKey":"pl181","X":462,"Y":439},{"Bonus":0,"Continent":"K44","ID":7080,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7080","ServerKey":"pl181","X":490,"Y":494},{"Bonus":0,"Continent":"K55","ID":7081,"Name":"002","PlayerID":699194766,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7081","ServerKey":"pl181","X":554,"Y":540},{"Bonus":0,"Continent":"K55","ID":7082,"Name":"- 095 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7082","ServerKey":"pl181","X":546,"Y":576},{"Bonus":0,"Continent":"K44","ID":7083,"Name":"Brat447","PlayerID":699262350,"Points":9159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7083","ServerKey":"pl181","X":456,"Y":498},{"Bonus":6,"Continent":"K44","ID":7084,"Name":"-045-","PlayerID":9291984,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7084","ServerKey":"pl181","X":464,"Y":425},{"Bonus":0,"Continent":"K44","ID":7085,"Name":"PRO8L3M","PlayerID":7491093,"Points":8812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7085","ServerKey":"pl181","X":430,"Y":492},{"Bonus":0,"Continent":"K45","ID":7086,"Name":"[114] North14","PlayerID":848985692,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7086","ServerKey":"pl181","X":574,"Y":477},{"Bonus":0,"Continent":"K56","ID":7087,"Name":"EXA","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7087","ServerKey":"pl181","X":606,"Y":531},{"Bonus":0,"Continent":"K45","ID":7088,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7088","ServerKey":"pl181","X":520,"Y":432},{"Bonus":0,"Continent":"K44","ID":7089,"Name":"Szlachcic","PlayerID":699098531,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7089","ServerKey":"pl181","X":496,"Y":458},{"Bonus":0,"Continent":"K44","ID":7091,"Name":"PRO8L3M","PlayerID":7491093,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7091","ServerKey":"pl181","X":409,"Y":494},{"Bonus":1,"Continent":"K54","ID":7092,"Name":"#0029 ƚwiętochƂowice","PlayerID":9272054,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7092","ServerKey":"pl181","X":482,"Y":560},{"Bonus":0,"Continent":"K45","ID":7093,"Name":"KONIEC","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7093","ServerKey":"pl181","X":509,"Y":494},{"Bonus":0,"Continent":"K44","ID":7094,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7094","ServerKey":"pl181","X":488,"Y":488},{"Bonus":0,"Continent":"K54","ID":7095,"Name":"NOT?","PlayerID":9236866,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7095","ServerKey":"pl181","X":432,"Y":534},{"Bonus":0,"Continent":"K45","ID":7096,"Name":"MONNN","PlayerID":698239813,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7096","ServerKey":"pl181","X":506,"Y":437},{"Bonus":0,"Continent":"K54","ID":7097,"Name":"NOT?","PlayerID":9236866,"Points":8229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7097","ServerKey":"pl181","X":426,"Y":542},{"Bonus":0,"Continent":"K44","ID":7098,"Name":"SsSs","PlayerID":1536625,"Points":8937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7098","ServerKey":"pl181","X":423,"Y":484},{"Bonus":0,"Continent":"K45","ID":7099,"Name":"xxx","PlayerID":698239813,"Points":9162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7099","ServerKey":"pl181","X":515,"Y":460},{"Bonus":0,"Continent":"K55","ID":7100,"Name":"F056","PlayerID":699189792,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7100","ServerKey":"pl181","X":506,"Y":533},{"Bonus":0,"Continent":"K55","ID":7101,"Name":"Winter is coming","PlayerID":699364813,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7101","ServerKey":"pl181","X":504,"Y":584},{"Bonus":0,"Continent":"K64","ID":7102,"Name":"035.","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7102","ServerKey":"pl181","X":479,"Y":618},{"Bonus":0,"Continent":"K55","ID":7103,"Name":"[062] O i jest Psikus","PlayerID":848985692,"Points":10088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7103","ServerKey":"pl181","X":532,"Y":503},{"Bonus":0,"Continent":"K45","ID":7104,"Name":"050","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7104","ServerKey":"pl181","X":540,"Y":418},{"Bonus":0,"Continent":"K55","ID":7105,"Name":"kek","PlayerID":848967710,"Points":7326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7105","ServerKey":"pl181","X":534,"Y":515},{"Bonus":0,"Continent":"K55","ID":7106,"Name":"006. Kikimora","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7106","ServerKey":"pl181","X":509,"Y":589},{"Bonus":0,"Continent":"K44","ID":7107,"Name":"Szlachcic","PlayerID":699098531,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7107","ServerKey":"pl181","X":491,"Y":468},{"Bonus":0,"Continent":"K54","ID":7108,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7108","ServerKey":"pl181","X":472,"Y":569},{"Bonus":0,"Continent":"K55","ID":7109,"Name":"Szlachcic 029","PlayerID":758104,"Points":9230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7109","ServerKey":"pl181","X":554,"Y":520},{"Bonus":0,"Continent":"K44","ID":7110,"Name":"P Konfederacja","PlayerID":848915730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7110","ServerKey":"pl181","X":459,"Y":446},{"Bonus":0,"Continent":"K55","ID":7111,"Name":"008","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7111","ServerKey":"pl181","X":553,"Y":530},{"Bonus":0,"Continent":"K45","ID":7112,"Name":"001","PlayerID":849091084,"Points":8787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7112","ServerKey":"pl181","X":538,"Y":471},{"Bonus":0,"Continent":"K64","ID":7114,"Name":"Winter is coming","PlayerID":699364813,"Points":4273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7114","ServerKey":"pl181","X":463,"Y":603},{"Bonus":0,"Continent":"K45","ID":7115,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7115","ServerKey":"pl181","X":505,"Y":437},{"Bonus":0,"Continent":"K45","ID":7116,"Name":"! 011","PlayerID":477415,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7116","ServerKey":"pl181","X":556,"Y":467},{"Bonus":0,"Continent":"K45","ID":7117,"Name":"Tu obok juĆŒ nie macie tyle defa?","PlayerID":848985692,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7117","ServerKey":"pl181","X":583,"Y":413},{"Bonus":0,"Continent":"K55","ID":7118,"Name":"053.","PlayerID":699695167,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7118","ServerKey":"pl181","X":522,"Y":557},{"Bonus":0,"Continent":"K54","ID":7119,"Name":"036","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7119","ServerKey":"pl181","X":412,"Y":521},{"Bonus":0,"Continent":"K64","ID":7120,"Name":"Vaes Drakaris","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7120","ServerKey":"pl181","X":476,"Y":611},{"Bonus":0,"Continent":"K44","ID":7121,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7121","ServerKey":"pl181","X":472,"Y":418},{"Bonus":0,"Continent":"K45","ID":7122,"Name":".:027:. Kaktus","PlayerID":8649412,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7122","ServerKey":"pl181","X":504,"Y":430},{"Bonus":0,"Continent":"K54","ID":7123,"Name":"031. ALFI - 2,5","PlayerID":8539216,"Points":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7123","ServerKey":"pl181","X":479,"Y":571},{"Bonus":7,"Continent":"K54","ID":7124,"Name":"#0044 Yagami WĂłdz","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7124","ServerKey":"pl181","X":495,"Y":557},{"Bonus":0,"Continent":"K44","ID":7125,"Name":"00705","PlayerID":3909522,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7125","ServerKey":"pl181","X":450,"Y":441},{"Bonus":0,"Continent":"K45","ID":7126,"Name":".achim.","PlayerID":6936607,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7126","ServerKey":"pl181","X":540,"Y":427},{"Bonus":0,"Continent":"K55","ID":7127,"Name":"F079","PlayerID":699189792,"Points":8829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7127","ServerKey":"pl181","X":502,"Y":537},{"Bonus":0,"Continent":"K54","ID":7128,"Name":"nie atakujcie mnie:(","PlayerID":698971484,"Points":2593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7128","ServerKey":"pl181","X":445,"Y":553},{"Bonus":0,"Continent":"K54","ID":7129,"Name":"a Wioska 2","PlayerID":3909522,"Points":7710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7129","ServerKey":"pl181","X":453,"Y":533},{"Bonus":0,"Continent":"K55","ID":7130,"Name":"-Czeƛć! Jak się masz? :)","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7130","ServerKey":"pl181","X":515,"Y":515},{"Bonus":1,"Continent":"K54","ID":7131,"Name":"Osada 1","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7131","ServerKey":"pl181","X":431,"Y":505},{"Bonus":0,"Continent":"K44","ID":7132,"Name":"0087","PlayerID":3909522,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7132","ServerKey":"pl181","X":447,"Y":439},{"Bonus":0,"Continent":"K45","ID":7133,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7133","ServerKey":"pl181","X":575,"Y":488},{"Bonus":0,"Continent":"K54","ID":7134,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7134","ServerKey":"pl181","X":414,"Y":504},{"Bonus":0,"Continent":"K55","ID":7135,"Name":"058.","PlayerID":8788366,"Points":8377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7135","ServerKey":"pl181","X":515,"Y":504},{"Bonus":0,"Continent":"K46","ID":7136,"Name":"002","PlayerID":8459255,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7136","ServerKey":"pl181","X":602,"Y":464},{"Bonus":0,"Continent":"K55","ID":7137,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7137","ServerKey":"pl181","X":527,"Y":505},{"Bonus":0,"Continent":"K55","ID":7138,"Name":"Jaaa","PlayerID":698635863,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7138","ServerKey":"pl181","X":571,"Y":540},{"Bonus":0,"Continent":"K55","ID":7139,"Name":"Merhet","PlayerID":698215322,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7139","ServerKey":"pl181","X":521,"Y":583},{"Bonus":0,"Continent":"K54","ID":7140,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7140","ServerKey":"pl181","X":480,"Y":527},{"Bonus":0,"Continent":"K44","ID":7141,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7141","ServerKey":"pl181","X":467,"Y":417},{"Bonus":0,"Continent":"K44","ID":7142,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7142","ServerKey":"pl181","X":415,"Y":485},{"Bonus":0,"Continent":"K44","ID":7143,"Name":"181 Maracaibo","PlayerID":1497168,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7143","ServerKey":"pl181","X":467,"Y":454},{"Bonus":0,"Continent":"K55","ID":7144,"Name":"032","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7144","ServerKey":"pl181","X":565,"Y":551},{"Bonus":0,"Continent":"K54","ID":7145,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7145","ServerKey":"pl181","X":432,"Y":512},{"Bonus":5,"Continent":"K45","ID":7146,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":8726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7146","ServerKey":"pl181","X":536,"Y":426},{"Bonus":0,"Continent":"K55","ID":7147,"Name":"[090]","PlayerID":8000875,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7147","ServerKey":"pl181","X":555,"Y":544},{"Bonus":0,"Continent":"K45","ID":7148,"Name":"-[012]- Broad Peak","PlayerID":849092827,"Points":8113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7148","ServerKey":"pl181","X":556,"Y":478},{"Bonus":0,"Continent":"K54","ID":7149,"Name":"BETI 011","PlayerID":8539216,"Points":886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7149","ServerKey":"pl181","X":464,"Y":558},{"Bonus":0,"Continent":"K54","ID":7150,"Name":"(016)","PlayerID":699846892,"Points":9926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7150","ServerKey":"pl181","X":424,"Y":539},{"Bonus":0,"Continent":"K45","ID":7151,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7151","ServerKey":"pl181","X":500,"Y":473},{"Bonus":0,"Continent":"K44","ID":7152,"Name":"103 Montreal","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7152","ServerKey":"pl181","X":468,"Y":482},{"Bonus":7,"Continent":"K54","ID":7153,"Name":"KIELBA 099","PlayerID":699342219,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7153","ServerKey":"pl181","X":447,"Y":569},{"Bonus":0,"Continent":"K45","ID":7154,"Name":"011","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7154","ServerKey":"pl181","X":586,"Y":414},{"Bonus":0,"Continent":"K55","ID":7155,"Name":"yogi","PlayerID":2808172,"Points":11074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7155","ServerKey":"pl181","X":523,"Y":524},{"Bonus":0,"Continent":"K54","ID":7156,"Name":"Winter is coming","PlayerID":699856962,"Points":6930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7156","ServerKey":"pl181","X":438,"Y":534},{"Bonus":8,"Continent":"K55","ID":7157,"Name":"06*","PlayerID":699664910,"Points":8922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7157","ServerKey":"pl181","X":568,"Y":543},{"Bonus":0,"Continent":"K44","ID":7158,"Name":"B058","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7158","ServerKey":"pl181","X":477,"Y":474},{"Bonus":0,"Continent":"K54","ID":7159,"Name":"Warzywniak 008","PlayerID":698290577,"Points":1404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7159","ServerKey":"pl181","X":444,"Y":544},{"Bonus":0,"Continent":"K53","ID":7160,"Name":"SsSs","PlayerID":1536625,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7160","ServerKey":"pl181","X":397,"Y":505},{"Bonus":0,"Continent":"K44","ID":7161,"Name":"-x9","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7161","ServerKey":"pl181","X":497,"Y":497},{"Bonus":0,"Continent":"K45","ID":7162,"Name":"048.","PlayerID":849094609,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7162","ServerKey":"pl181","X":548,"Y":476},{"Bonus":0,"Continent":"K45","ID":7163,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7163","ServerKey":"pl181","X":512,"Y":441},{"Bonus":0,"Continent":"K44","ID":7164,"Name":"B056","PlayerID":699299123,"Points":9003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7164","ServerKey":"pl181","X":474,"Y":470},{"Bonus":0,"Continent":"K55","ID":7165,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7165","ServerKey":"pl181","X":574,"Y":503},{"Bonus":0,"Continent":"K54","ID":7166,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":2617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7166","ServerKey":"pl181","X":442,"Y":544},{"Bonus":0,"Continent":"K44","ID":7167,"Name":"Suppi","PlayerID":699856962,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7167","ServerKey":"pl181","X":426,"Y":453},{"Bonus":0,"Continent":"K43","ID":7168,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7168","ServerKey":"pl181","X":392,"Y":480},{"Bonus":0,"Continent":"K34","ID":7169,"Name":"046","PlayerID":698739350,"Points":8504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7169","ServerKey":"pl181","X":489,"Y":398},{"Bonus":0,"Continent":"K54","ID":7170,"Name":"Fffff","PlayerID":225023,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7170","ServerKey":"pl181","X":422,"Y":581},{"Bonus":0,"Continent":"K44","ID":7171,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7171","ServerKey":"pl181","X":428,"Y":464},{"Bonus":0,"Continent":"K53","ID":7172,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7172","ServerKey":"pl181","X":386,"Y":539},{"Bonus":0,"Continent":"K44","ID":7173,"Name":"0018","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7173","ServerKey":"pl181","X":463,"Y":466},{"Bonus":0,"Continent":"K54","ID":7174,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":8864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7174","ServerKey":"pl181","X":466,"Y":512},{"Bonus":0,"Continent":"K45","ID":7175,"Name":"002","PlayerID":699368887,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7175","ServerKey":"pl181","X":548,"Y":473},{"Bonus":0,"Continent":"K44","ID":7176,"Name":"051.","PlayerID":8788366,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7176","ServerKey":"pl181","X":497,"Y":487},{"Bonus":0,"Continent":"K44","ID":7177,"Name":"P Konfederacja","PlayerID":848915730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7177","ServerKey":"pl181","X":459,"Y":455},{"Bonus":0,"Continent":"K44","ID":7178,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7178","ServerKey":"pl181","X":499,"Y":435},{"Bonus":0,"Continent":"K45","ID":7179,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7179","ServerKey":"pl181","X":564,"Y":497},{"Bonus":0,"Continent":"K55","ID":7180,"Name":"Szlachcic 045","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7180","ServerKey":"pl181","X":570,"Y":528},{"Bonus":0,"Continent":"K54","ID":7181,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7181","ServerKey":"pl181","X":463,"Y":563},{"Bonus":0,"Continent":"K45","ID":7182,"Name":"063","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7182","ServerKey":"pl181","X":586,"Y":481},{"Bonus":0,"Continent":"K54","ID":7183,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7183","ServerKey":"pl181","X":494,"Y":575},{"Bonus":0,"Continent":"K54","ID":7184,"Name":"szlachcic","PlayerID":698971484,"Points":2435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7184","ServerKey":"pl181","X":440,"Y":542},{"Bonus":0,"Continent":"K45","ID":7185,"Name":".achim.","PlayerID":6936607,"Points":8373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7185","ServerKey":"pl181","X":528,"Y":454},{"Bonus":0,"Continent":"K44","ID":7186,"Name":"xxx","PlayerID":9291984,"Points":8934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7186","ServerKey":"pl181","X":461,"Y":418},{"Bonus":0,"Continent":"K55","ID":7187,"Name":"10013","PlayerID":848915531,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7187","ServerKey":"pl181","X":529,"Y":556},{"Bonus":0,"Continent":"K55","ID":7189,"Name":"027. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7189","ServerKey":"pl181","X":574,"Y":532},{"Bonus":0,"Continent":"K54","ID":7190,"Name":"C Zach 008 Tarnowskie G","PlayerID":849084740,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7190","ServerKey":"pl181","X":411,"Y":571},{"Bonus":0,"Continent":"K54","ID":7191,"Name":"026","PlayerID":2585846,"Points":3503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7191","ServerKey":"pl181","X":467,"Y":524},{"Bonus":0,"Continent":"K55","ID":7192,"Name":"Z03 Qeqertat","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7192","ServerKey":"pl181","X":562,"Y":513},{"Bonus":0,"Continent":"K44","ID":7193,"Name":"B027","PlayerID":699299123,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7193","ServerKey":"pl181","X":478,"Y":457},{"Bonus":1,"Continent":"K55","ID":7194,"Name":"0024","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7194","ServerKey":"pl181","X":526,"Y":512},{"Bonus":0,"Continent":"K54","ID":7195,"Name":"Fajna 052","PlayerID":698971484,"Points":8229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7195","ServerKey":"pl181","X":449,"Y":556},{"Bonus":0,"Continent":"K55","ID":7196,"Name":"046 |","PlayerID":8000875,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7196","ServerKey":"pl181","X":559,"Y":566},{"Bonus":0,"Continent":"K55","ID":7197,"Name":"CALL 1023","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7197","ServerKey":"pl181","X":543,"Y":565},{"Bonus":0,"Continent":"K55","ID":7198,"Name":"- 045 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7198","ServerKey":"pl181","X":533,"Y":570},{"Bonus":0,"Continent":"K54","ID":7200,"Name":"075. ALFI","PlayerID":8539216,"Points":1330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7200","ServerKey":"pl181","X":466,"Y":571},{"Bonus":0,"Continent":"K54","ID":7201,"Name":"050. ALFI","PlayerID":8539216,"Points":1517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7201","ServerKey":"pl181","X":480,"Y":563},{"Bonus":0,"Continent":"K45","ID":7202,"Name":"[129] North29","PlayerID":848985692,"Points":10391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7202","ServerKey":"pl181","X":577,"Y":477},{"Bonus":0,"Continent":"K64","ID":7203,"Name":"0009","PlayerID":33900,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7203","ServerKey":"pl181","X":468,"Y":608},{"Bonus":0,"Continent":"K44","ID":7204,"Name":"147 Zihuatanejo","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7204","ServerKey":"pl181","X":466,"Y":487},{"Bonus":0,"Continent":"K45","ID":7205,"Name":"Tesa 10","PlayerID":698845189,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7205","ServerKey":"pl181","X":533,"Y":491},{"Bonus":0,"Continent":"K55","ID":7206,"Name":"Merhet","PlayerID":698215322,"Points":5762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7206","ServerKey":"pl181","X":519,"Y":587},{"Bonus":0,"Continent":"K56","ID":7207,"Name":"Mzm03","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7207","ServerKey":"pl181","X":601,"Y":528},{"Bonus":0,"Continent":"K54","ID":7208,"Name":"...","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7208","ServerKey":"pl181","X":436,"Y":507},{"Bonus":0,"Continent":"K54","ID":7209,"Name":"Selonari","PlayerID":3613413,"Points":9150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7209","ServerKey":"pl181","X":459,"Y":558},{"Bonus":0,"Continent":"K54","ID":7210,"Name":"012","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7210","ServerKey":"pl181","X":460,"Y":577},{"Bonus":0,"Continent":"K45","ID":7211,"Name":"0034","PlayerID":699432672,"Points":5339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7211","ServerKey":"pl181","X":554,"Y":496},{"Bonus":0,"Continent":"K34","ID":7212,"Name":"Feed me more 004","PlayerID":699756210,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7212","ServerKey":"pl181","X":497,"Y":379},{"Bonus":0,"Continent":"K54","ID":7213,"Name":"0177","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7213","ServerKey":"pl181","X":471,"Y":541},{"Bonus":0,"Continent":"K55","ID":7214,"Name":"|013|","PlayerID":873575,"Points":10433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7214","ServerKey":"pl181","X":556,"Y":571},{"Bonus":0,"Continent":"K45","ID":7215,"Name":"017 TNN","PlayerID":849031818,"Points":7804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7215","ServerKey":"pl181","X":561,"Y":490},{"Bonus":0,"Continent":"K54","ID":7216,"Name":"Nospa","PlayerID":699443920,"Points":10396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7216","ServerKey":"pl181","X":456,"Y":571},{"Bonus":0,"Continent":"K56","ID":7217,"Name":"Wioska mockingcoffin","PlayerID":849053122,"Points":2886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7217","ServerKey":"pl181","X":621,"Y":525},{"Bonus":0,"Continent":"K44","ID":7218,"Name":"154 Puerto Barrios","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7218","ServerKey":"pl181","X":454,"Y":457},{"Bonus":0,"Continent":"K54","ID":7219,"Name":"KIELBA 094","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7219","ServerKey":"pl181","X":445,"Y":566},{"Bonus":0,"Continent":"K45","ID":7220,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7220","ServerKey":"pl181","X":503,"Y":426},{"Bonus":5,"Continent":"K44","ID":7221,"Name":"003 Virginia Beach","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7221","ServerKey":"pl181","X":441,"Y":478},{"Bonus":0,"Continent":"K55","ID":7222,"Name":"CALL 1034","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7222","ServerKey":"pl181","X":544,"Y":545},{"Bonus":0,"Continent":"K55","ID":7223,"Name":"Niby to myszy w nocy harcują..","PlayerID":8649412,"Points":9116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7223","ServerKey":"pl181","X":545,"Y":525},{"Bonus":0,"Continent":"K44","ID":7224,"Name":"031 Colorado Springs","PlayerID":9291984,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7224","ServerKey":"pl181","X":423,"Y":420},{"Bonus":0,"Continent":"K45","ID":7225,"Name":"050.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7225","ServerKey":"pl181","X":507,"Y":489},{"Bonus":0,"Continent":"K54","ID":7226,"Name":"Front_29","PlayerID":2585846,"Points":5763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7226","ServerKey":"pl181","X":453,"Y":531},{"Bonus":0,"Continent":"K45","ID":7227,"Name":"5 pompkę","PlayerID":6923061,"Points":1886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7227","ServerKey":"pl181","X":530,"Y":459},{"Bonus":0,"Continent":"K55","ID":7228,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7228","ServerKey":"pl181","X":568,"Y":504},{"Bonus":0,"Continent":"K45","ID":7229,"Name":"226 Wellington","PlayerID":1497168,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7229","ServerKey":"pl181","X":533,"Y":442},{"Bonus":0,"Continent":"K44","ID":7231,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7231","ServerKey":"pl181","X":467,"Y":435},{"Bonus":0,"Continent":"K54","ID":7232,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7232","ServerKey":"pl181","X":453,"Y":514},{"Bonus":0,"Continent":"K55","ID":7233,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7233","ServerKey":"pl181","X":515,"Y":524},{"Bonus":0,"Continent":"K54","ID":7234,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7234","ServerKey":"pl181","X":424,"Y":519},{"Bonus":0,"Continent":"K45","ID":7235,"Name":"008 Czary mary","PlayerID":698829590,"Points":8603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7235","ServerKey":"pl181","X":588,"Y":463},{"Bonus":0,"Continent":"K54","ID":7236,"Name":"COUS,","PlayerID":8369778,"Points":7043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7236","ServerKey":"pl181","X":493,"Y":580},{"Bonus":0,"Continent":"K54","ID":7237,"Name":"081. ALFI","PlayerID":8539216,"Points":1814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7237","ServerKey":"pl181","X":479,"Y":558},{"Bonus":0,"Continent":"K54","ID":7238,"Name":"Sparta_42","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7238","ServerKey":"pl181","X":481,"Y":581},{"Bonus":0,"Continent":"K45","ID":7239,"Name":"! Wioska MMM","PlayerID":477415,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7239","ServerKey":"pl181","X":557,"Y":497},{"Bonus":0,"Continent":"K44","ID":7240,"Name":"-004- Uszka mee","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7240","ServerKey":"pl181","X":455,"Y":413},{"Bonus":0,"Continent":"K44","ID":7241,"Name":"Osada","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7241","ServerKey":"pl181","X":499,"Y":443},{"Bonus":0,"Continent":"K44","ID":7242,"Name":"047 Idaho Falls","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7242","ServerKey":"pl181","X":469,"Y":471},{"Bonus":0,"Continent":"K44","ID":7243,"Name":"A054","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7243","ServerKey":"pl181","X":497,"Y":425},{"Bonus":0,"Continent":"K44","ID":7244,"Name":"121.","PlayerID":8788366,"Points":8565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7244","ServerKey":"pl181","X":495,"Y":485},{"Bonus":0,"Continent":"K45","ID":7245,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7245","ServerKey":"pl181","X":567,"Y":497},{"Bonus":0,"Continent":"K45","ID":7246,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7246","ServerKey":"pl181","X":544,"Y":496},{"Bonus":0,"Continent":"K45","ID":7247,"Name":"JF6","PlayerID":699368887,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7247","ServerKey":"pl181","X":553,"Y":458},{"Bonus":0,"Continent":"K45","ID":7248,"Name":"039.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7248","ServerKey":"pl181","X":506,"Y":491},{"Bonus":0,"Continent":"K55","ID":7249,"Name":"- 211 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7249","ServerKey":"pl181","X":548,"Y":576},{"Bonus":0,"Continent":"K44","ID":7250,"Name":"P Konfederacja 8","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7250","ServerKey":"pl181","X":458,"Y":447},{"Bonus":0,"Continent":"K55","ID":7251,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7251","ServerKey":"pl181","X":581,"Y":501},{"Bonus":0,"Continent":"K45","ID":7252,"Name":"ROHAN","PlayerID":8155296,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7252","ServerKey":"pl181","X":536,"Y":465},{"Bonus":0,"Continent":"K54","ID":7253,"Name":".54","PlayerID":848955783,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7253","ServerKey":"pl181","X":428,"Y":509},{"Bonus":0,"Continent":"K45","ID":7254,"Name":"8. Gruzowisko","PlayerID":8444356,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7254","ServerKey":"pl181","X":543,"Y":434},{"Bonus":0,"Continent":"K54","ID":7255,"Name":"Suppi","PlayerID":699856962,"Points":9565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7255","ServerKey":"pl181","X":439,"Y":518},{"Bonus":0,"Continent":"K64","ID":7256,"Name":"0228","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7256","ServerKey":"pl181","X":451,"Y":612},{"Bonus":0,"Continent":"K45","ID":7257,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7257","ServerKey":"pl181","X":502,"Y":442},{"Bonus":0,"Continent":"K55","ID":7258,"Name":"MYSZOƁÓW","PlayerID":8155296,"Points":10286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7258","ServerKey":"pl181","X":539,"Y":512},{"Bonus":0,"Continent":"K45","ID":7259,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7259","ServerKey":"pl181","X":559,"Y":454},{"Bonus":0,"Continent":"K45","ID":7260,"Name":"209 Margaret River","PlayerID":1497168,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7260","ServerKey":"pl181","X":535,"Y":432},{"Bonus":0,"Continent":"K54","ID":7261,"Name":"011. ALFI","PlayerID":8539216,"Points":1484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7261","ServerKey":"pl181","X":476,"Y":570},{"Bonus":0,"Continent":"K44","ID":7262,"Name":"+44 73 Bourbourg","PlayerID":698361257,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7262","ServerKey":"pl181","X":433,"Y":477},{"Bonus":0,"Continent":"K53","ID":7263,"Name":"NWO","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7263","ServerKey":"pl181","X":394,"Y":520},{"Bonus":0,"Continent":"K44","ID":7264,"Name":"0085","PlayerID":3909522,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7264","ServerKey":"pl181","X":443,"Y":441},{"Bonus":0,"Continent":"K53","ID":7265,"Name":"Zaodrze","PlayerID":699425709,"Points":3650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7265","ServerKey":"pl181","X":389,"Y":548},{"Bonus":0,"Continent":"K54","ID":7266,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7266","ServerKey":"pl181","X":474,"Y":504},{"Bonus":0,"Continent":"K54","ID":7267,"Name":"NOT?","PlayerID":9236866,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7267","ServerKey":"pl181","X":469,"Y":544},{"Bonus":0,"Continent":"K44","ID":7268,"Name":"B063","PlayerID":699299123,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7268","ServerKey":"pl181","X":477,"Y":471},{"Bonus":0,"Continent":"K55","ID":7269,"Name":"030","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7269","ServerKey":"pl181","X":526,"Y":575},{"Bonus":0,"Continent":"K44","ID":7270,"Name":"Osada","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7270","ServerKey":"pl181","X":498,"Y":440},{"Bonus":0,"Continent":"K45","ID":7271,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7271","ServerKey":"pl181","X":544,"Y":493},{"Bonus":0,"Continent":"K45","ID":7272,"Name":"Gattacka","PlayerID":699298370,"Points":10370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7272","ServerKey":"pl181","X":575,"Y":496},{"Bonus":0,"Continent":"K45","ID":7273,"Name":"ADEN","PlayerID":698588535,"Points":8022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7273","ServerKey":"pl181","X":562,"Y":435},{"Bonus":0,"Continent":"K54","ID":7274,"Name":"018","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7274","ServerKey":"pl181","X":417,"Y":511},{"Bonus":0,"Continent":"K44","ID":7275,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7275","ServerKey":"pl181","X":487,"Y":420},{"Bonus":0,"Continent":"K54","ID":7276,"Name":"~060.","PlayerID":7139820,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7276","ServerKey":"pl181","X":481,"Y":549},{"Bonus":0,"Continent":"K54","ID":7277,"Name":"001","PlayerID":699856962,"Points":1328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7277","ServerKey":"pl181","X":434,"Y":550},{"Bonus":0,"Continent":"K55","ID":7278,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7278","ServerKey":"pl181","X":540,"Y":523},{"Bonus":0,"Continent":"K55","ID":7279,"Name":"CALL 1039","PlayerID":699784536,"Points":9387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7279","ServerKey":"pl181","X":545,"Y":536},{"Bonus":0,"Continent":"K55","ID":7280,"Name":"Mzm36","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7280","ServerKey":"pl181","X":543,"Y":528},{"Bonus":0,"Continent":"K45","ID":7281,"Name":"DAWAĆ GRUBE","PlayerID":8155296,"Points":8954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7281","ServerKey":"pl181","X":540,"Y":447},{"Bonus":0,"Continent":"K44","ID":7282,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7282","ServerKey":"pl181","X":480,"Y":450},{"Bonus":0,"Continent":"K55","ID":7283,"Name":"018. Wioska B.E.R.S.E.R.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7283","ServerKey":"pl181","X":565,"Y":516},{"Bonus":0,"Continent":"K54","ID":7284,"Name":"F020","PlayerID":699189792,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7284","ServerKey":"pl181","X":493,"Y":542},{"Bonus":0,"Continent":"K44","ID":7285,"Name":"PRO8L3M","PlayerID":7491093,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7285","ServerKey":"pl181","X":465,"Y":493},{"Bonus":0,"Continent":"K54","ID":7286,"Name":"054. ALFI","PlayerID":8539216,"Points":1672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7286","ServerKey":"pl181","X":485,"Y":567},{"Bonus":0,"Continent":"K45","ID":7287,"Name":"A21","PlayerID":699368887,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7287","ServerKey":"pl181","X":556,"Y":449},{"Bonus":0,"Continent":"K44","ID":7288,"Name":"?+44 85 Marquise","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7288","ServerKey":"pl181","X":458,"Y":486},{"Bonus":0,"Continent":"K44","ID":7289,"Name":"079 Mobile","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7289","ServerKey":"pl181","X":461,"Y":451},{"Bonus":0,"Continent":"K44","ID":7290,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7290","ServerKey":"pl181","X":470,"Y":440},{"Bonus":0,"Continent":"K55","ID":7291,"Name":"73k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7291","ServerKey":"pl181","X":549,"Y":520},{"Bonus":0,"Continent":"K55","ID":7292,"Name":"Yogi","PlayerID":2808172,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7292","ServerKey":"pl181","X":514,"Y":533},{"Bonus":0,"Continent":"K45","ID":7293,"Name":"MasteroN","PlayerID":699379895,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7293","ServerKey":"pl181","X":568,"Y":448},{"Bonus":0,"Continent":"K44","ID":7294,"Name":"037 Fresno","PlayerID":9291984,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7294","ServerKey":"pl181","X":436,"Y":435},{"Bonus":0,"Continent":"K44","ID":7295,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7295","ServerKey":"pl181","X":484,"Y":425},{"Bonus":0,"Continent":"K54","ID":7296,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7296","ServerKey":"pl181","X":458,"Y":560},{"Bonus":0,"Continent":"K44","ID":7297,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7297","ServerKey":"pl181","X":495,"Y":492},{"Bonus":0,"Continent":"K55","ID":7298,"Name":"kek","PlayerID":848967710,"Points":6506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7298","ServerKey":"pl181","X":544,"Y":515},{"Bonus":0,"Continent":"K54","ID":7299,"Name":"Kasyno","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7299","ServerKey":"pl181","X":446,"Y":517},{"Bonus":0,"Continent":"K54","ID":7300,"Name":"Fajna 062","PlayerID":699868002,"Points":8274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7300","ServerKey":"pl181","X":452,"Y":559},{"Bonus":0,"Continent":"K45","ID":7301,"Name":"042.","PlayerID":8788366,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7301","ServerKey":"pl181","X":510,"Y":495},{"Bonus":0,"Continent":"K45","ID":7302,"Name":"Jehu_Kingdom_04_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7302","ServerKey":"pl181","X":587,"Y":477},{"Bonus":0,"Continent":"K54","ID":7303,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7303","ServerKey":"pl181","X":412,"Y":503},{"Bonus":0,"Continent":"K55","ID":7304,"Name":"[133]","PlayerID":8000875,"Points":9774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7304","ServerKey":"pl181","X":567,"Y":538},{"Bonus":0,"Continent":"K45","ID":7305,"Name":".:129:. Niangmen","PlayerID":848934935,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7305","ServerKey":"pl181","X":519,"Y":414},{"Bonus":0,"Continent":"K44","ID":7306,"Name":"Szlachcic","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7306","ServerKey":"pl181","X":494,"Y":466},{"Bonus":0,"Continent":"K45","ID":7307,"Name":".achim.","PlayerID":6936607,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7307","ServerKey":"pl181","X":529,"Y":447},{"Bonus":0,"Continent":"K45","ID":7308,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7308","ServerKey":"pl181","X":535,"Y":422},{"Bonus":0,"Continent":"K54","ID":7309,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7309","ServerKey":"pl181","X":469,"Y":537},{"Bonus":0,"Continent":"K55","ID":7310,"Name":"-CaƂoƛć do caƂoƛci","PlayerID":699785935,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7310","ServerKey":"pl181","X":516,"Y":510},{"Bonus":0,"Continent":"K45","ID":7311,"Name":"02 | CiemnogrĂłd","PlayerID":849002091,"Points":9477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7311","ServerKey":"pl181","X":537,"Y":437},{"Bonus":0,"Continent":"K44","ID":7312,"Name":"PRO8L3M","PlayerID":7491093,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7312","ServerKey":"pl181","X":456,"Y":497},{"Bonus":0,"Continent":"K45","ID":7313,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7313","ServerKey":"pl181","X":579,"Y":465},{"Bonus":0,"Continent":"K55","ID":7314,"Name":"- 058 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7314","ServerKey":"pl181","X":540,"Y":576},{"Bonus":0,"Continent":"K54","ID":7315,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":1503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7315","ServerKey":"pl181","X":452,"Y":543},{"Bonus":9,"Continent":"K44","ID":7316,"Name":"Osada","PlayerID":699098531,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7316","ServerKey":"pl181","X":492,"Y":448},{"Bonus":0,"Continent":"K45","ID":7317,"Name":"Joms 041","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7317","ServerKey":"pl181","X":546,"Y":413},{"Bonus":0,"Continent":"K44","ID":7318,"Name":"SsSs","PlayerID":1536625,"Points":7242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7318","ServerKey":"pl181","X":455,"Y":497},{"Bonus":0,"Continent":"K54","ID":7319,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7319","ServerKey":"pl181","X":460,"Y":512},{"Bonus":2,"Continent":"K45","ID":7320,"Name":"[188]","PlayerID":8000875,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7320","ServerKey":"pl181","X":532,"Y":492},{"Bonus":0,"Continent":"K54","ID":7321,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":5203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7321","ServerKey":"pl181","X":456,"Y":558},{"Bonus":0,"Continent":"K44","ID":7322,"Name":"Cast Away 013","PlayerID":698290577,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7322","ServerKey":"pl181","X":453,"Y":481},{"Bonus":7,"Continent":"K45","ID":7323,"Name":"Osada koczownikĂłw","PlayerID":848986287,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7323","ServerKey":"pl181","X":534,"Y":434},{"Bonus":0,"Continent":"K45","ID":7324,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7324","ServerKey":"pl181","X":519,"Y":483},{"Bonus":0,"Continent":"K55","ID":7325,"Name":"Bellucci","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7325","ServerKey":"pl181","X":503,"Y":519},{"Bonus":0,"Continent":"K45","ID":7326,"Name":"002 - Madrid","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7326","ServerKey":"pl181","X":597,"Y":490},{"Bonus":0,"Continent":"K44","ID":7327,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7327","ServerKey":"pl181","X":469,"Y":420},{"Bonus":0,"Continent":"K54","ID":7328,"Name":"Teatr","PlayerID":7249451,"Points":8474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7328","ServerKey":"pl181","X":437,"Y":565},{"Bonus":0,"Continent":"K56","ID":7329,"Name":"Mzm02.","PlayerID":7142659,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7329","ServerKey":"pl181","X":609,"Y":532},{"Bonus":2,"Continent":"K55","ID":7330,"Name":"83k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7330","ServerKey":"pl181","X":547,"Y":532},{"Bonus":0,"Continent":"K54","ID":7331,"Name":"Daleko 012","PlayerID":6116940,"Points":8824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7331","ServerKey":"pl181","X":480,"Y":584},{"Bonus":0,"Continent":"K44","ID":7332,"Name":"Suppi","PlayerID":699856962,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7332","ServerKey":"pl181","X":442,"Y":453},{"Bonus":0,"Continent":"K54","ID":7333,"Name":"F045","PlayerID":699189792,"Points":9048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7333","ServerKey":"pl181","X":483,"Y":517},{"Bonus":0,"Continent":"K44","ID":7334,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7334","ServerKey":"pl181","X":461,"Y":492},{"Bonus":0,"Continent":"K44","ID":7335,"Name":"+44 73 Frencq","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7335","ServerKey":"pl181","X":432,"Y":473},{"Bonus":0,"Continent":"K44","ID":7336,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7336","ServerKey":"pl181","X":448,"Y":454},{"Bonus":0,"Continent":"K45","ID":7337,"Name":"I po ƚwiętach ;)))","PlayerID":699368887,"Points":7204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7337","ServerKey":"pl181","X":563,"Y":451},{"Bonus":0,"Continent":"K55","ID":7338,"Name":"0.Nowy Orlean","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7338","ServerKey":"pl181","X":521,"Y":586},{"Bonus":0,"Continent":"K54","ID":7339,"Name":"EKG M14","PlayerID":33900,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7339","ServerKey":"pl181","X":484,"Y":596},{"Bonus":0,"Continent":"K44","ID":7340,"Name":"B054","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7340","ServerKey":"pl181","X":481,"Y":470},{"Bonus":0,"Continent":"K54","ID":7341,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7341","ServerKey":"pl181","X":449,"Y":522},{"Bonus":1,"Continent":"K45","ID":7342,"Name":"JK3","PlayerID":699368887,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7342","ServerKey":"pl181","X":559,"Y":449},{"Bonus":0,"Continent":"K35","ID":7343,"Name":"021","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7343","ServerKey":"pl181","X":552,"Y":395},{"Bonus":0,"Continent":"K55","ID":7344,"Name":"Milonia","PlayerID":849066849,"Points":7083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7344","ServerKey":"pl181","X":518,"Y":556},{"Bonus":0,"Continent":"K44","ID":7345,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7345","ServerKey":"pl181","X":422,"Y":474},{"Bonus":0,"Continent":"K54","ID":7346,"Name":"*Ateny_13","PlayerID":2585846,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7346","ServerKey":"pl181","X":470,"Y":527},{"Bonus":0,"Continent":"K45","ID":7347,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7347","ServerKey":"pl181","X":516,"Y":444},{"Bonus":0,"Continent":"K55","ID":7348,"Name":"CALL 967","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7348","ServerKey":"pl181","X":545,"Y":567},{"Bonus":0,"Continent":"K44","ID":7349,"Name":"013 Savanah","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7349","ServerKey":"pl181","X":440,"Y":465},{"Bonus":0,"Continent":"K45","ID":7350,"Name":"050 BuƂgaria","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7350","ServerKey":"pl181","X":585,"Y":480},{"Bonus":0,"Continent":"K54","ID":7351,"Name":"F069","PlayerID":699189792,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7351","ServerKey":"pl181","X":492,"Y":515},{"Bonus":0,"Continent":"K54","ID":7352,"Name":"(021)","PlayerID":699846892,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7352","ServerKey":"pl181","X":424,"Y":543},{"Bonus":0,"Continent":"K54","ID":7353,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7353","ServerKey":"pl181","X":493,"Y":511},{"Bonus":0,"Continent":"K44","ID":7354,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7354","ServerKey":"pl181","X":469,"Y":478},{"Bonus":0,"Continent":"K45","ID":7355,"Name":".:038:. Chillout","PlayerID":848934935,"Points":7228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7355","ServerKey":"pl181","X":521,"Y":449},{"Bonus":0,"Continent":"K55","ID":7356,"Name":"P.034","PlayerID":873575,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7356","ServerKey":"pl181","X":543,"Y":557},{"Bonus":0,"Continent":"K55","ID":7357,"Name":"Szlachcic 054","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7357","ServerKey":"pl181","X":573,"Y":519},{"Bonus":0,"Continent":"K44","ID":7358,"Name":"PRO8L3M","PlayerID":7491093,"Points":9221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7358","ServerKey":"pl181","X":448,"Y":490},{"Bonus":0,"Continent":"K54","ID":7359,"Name":"Warzywniak016","PlayerID":698290577,"Points":2401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7359","ServerKey":"pl181","X":453,"Y":548},{"Bonus":0,"Continent":"K44","ID":7360,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7360","ServerKey":"pl181","X":475,"Y":417},{"Bonus":0,"Continent":"K64","ID":7361,"Name":"#020","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7361","ServerKey":"pl181","X":472,"Y":615},{"Bonus":0,"Continent":"K45","ID":7362,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7362","ServerKey":"pl181","X":521,"Y":473},{"Bonus":0,"Continent":"K54","ID":7363,"Name":"Wioska 10.","PlayerID":848967710,"Points":11141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7363","ServerKey":"pl181","X":496,"Y":525},{"Bonus":0,"Continent":"K55","ID":7364,"Name":"ladyanima 200 pik 300 miecz","PlayerID":699703642,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7364","ServerKey":"pl181","X":514,"Y":567},{"Bonus":0,"Continent":"K55","ID":7365,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7365","ServerKey":"pl181","X":523,"Y":503},{"Bonus":2,"Continent":"K54","ID":7366,"Name":"XnX-02","PlayerID":699856962,"Points":8720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7366","ServerKey":"pl181","X":437,"Y":541},{"Bonus":0,"Continent":"K55","ID":7367,"Name":"- 031 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7367","ServerKey":"pl181","X":535,"Y":578},{"Bonus":0,"Continent":"K45","ID":7368,"Name":"-[025]- Batura Sar","PlayerID":849092827,"Points":8089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7368","ServerKey":"pl181","X":557,"Y":490},{"Bonus":0,"Continent":"K55","ID":7369,"Name":"011. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7369","ServerKey":"pl181","X":577,"Y":527},{"Bonus":0,"Continent":"K55","ID":7370,"Name":"002","PlayerID":6048627,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7370","ServerKey":"pl181","X":587,"Y":519},{"Bonus":0,"Continent":"K54","ID":7371,"Name":"(006)","PlayerID":699846892,"Points":9471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7371","ServerKey":"pl181","X":416,"Y":533},{"Bonus":0,"Continent":"K44","ID":7372,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7372","ServerKey":"pl181","X":468,"Y":417},{"Bonus":0,"Continent":"K55","ID":7373,"Name":"022","PlayerID":8191129,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7373","ServerKey":"pl181","X":518,"Y":515},{"Bonus":0,"Continent":"K44","ID":7374,"Name":"A014","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7374","ServerKey":"pl181","X":494,"Y":416},{"Bonus":0,"Continent":"K45","ID":7375,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7375","ServerKey":"pl181","X":514,"Y":455},{"Bonus":0,"Continent":"K44","ID":7376,"Name":"NOT?","PlayerID":9236866,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7376","ServerKey":"pl181","X":428,"Y":495},{"Bonus":0,"Continent":"K54","ID":7377,"Name":"Niusam","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7377","ServerKey":"pl181","X":457,"Y":570},{"Bonus":0,"Continent":"K44","ID":7378,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7378","ServerKey":"pl181","X":425,"Y":455},{"Bonus":9,"Continent":"K54","ID":7379,"Name":"Sparta_34","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7379","ServerKey":"pl181","X":479,"Y":582},{"Bonus":0,"Continent":"K54","ID":7380,"Name":"Niedopasowany","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7380","ServerKey":"pl181","X":498,"Y":528},{"Bonus":0,"Continent":"K45","ID":7381,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7381","ServerKey":"pl181","X":520,"Y":479},{"Bonus":1,"Continent":"K55","ID":7382,"Name":"011 | Lord Arsey - Poskramiacz","PlayerID":8000875,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7382","ServerKey":"pl181","X":560,"Y":566},{"Bonus":0,"Continent":"K45","ID":7383,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":8790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7383","ServerKey":"pl181","X":550,"Y":467},{"Bonus":0,"Continent":"K54","ID":7384,"Name":"1. Char mle","PlayerID":849087855,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7384","ServerKey":"pl181","X":495,"Y":531},{"Bonus":0,"Continent":"K55","ID":7385,"Name":"004 Are you seriously?","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7385","ServerKey":"pl181","X":570,"Y":553},{"Bonus":0,"Continent":"K54","ID":7386,"Name":"039","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7386","ServerKey":"pl181","X":414,"Y":505},{"Bonus":0,"Continent":"K45","ID":7387,"Name":"A043","PlayerID":699299123,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7387","ServerKey":"pl181","X":505,"Y":428},{"Bonus":0,"Continent":"K54","ID":7388,"Name":"KIELBA 126","PlayerID":699342219,"Points":7286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7388","ServerKey":"pl181","X":465,"Y":584},{"Bonus":0,"Continent":"K34","ID":7389,"Name":"Bagdad","PlayerID":8847546,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7389","ServerKey":"pl181","X":475,"Y":381},{"Bonus":0,"Continent":"K43","ID":7390,"Name":"Muszla","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7390","ServerKey":"pl181","X":398,"Y":458},{"Bonus":0,"Continent":"K54","ID":7391,"Name":"lady","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7391","ServerKey":"pl181","X":493,"Y":577},{"Bonus":0,"Continent":"K45","ID":7392,"Name":"C037","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7392","ServerKey":"pl181","X":532,"Y":456},{"Bonus":0,"Continent":"K55","ID":7393,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7393","ServerKey":"pl181","X":528,"Y":541},{"Bonus":0,"Continent":"K44","ID":7394,"Name":"B023","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7394","ServerKey":"pl181","X":484,"Y":457},{"Bonus":0,"Continent":"K55","ID":7395,"Name":"lady","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7395","ServerKey":"pl181","X":510,"Y":584},{"Bonus":0,"Continent":"K54","ID":7396,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7396","ServerKey":"pl181","X":410,"Y":514},{"Bonus":0,"Continent":"K55","ID":7397,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7397","ServerKey":"pl181","X":570,"Y":542},{"Bonus":0,"Continent":"K45","ID":7398,"Name":"slow","PlayerID":848967710,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7398","ServerKey":"pl181","X":531,"Y":490},{"Bonus":0,"Continent":"K54","ID":7399,"Name":"1. Is-4 !!!","PlayerID":849087855,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7399","ServerKey":"pl181","X":488,"Y":539},{"Bonus":0,"Continent":"K55","ID":7400,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7400","ServerKey":"pl181","X":560,"Y":571},{"Bonus":0,"Continent":"K45","ID":7401,"Name":"011 Politechnika","PlayerID":849083501,"Points":4464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7401","ServerKey":"pl181","X":538,"Y":481},{"Bonus":0,"Continent":"K55","ID":7402,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7402","ServerKey":"pl181","X":524,"Y":534},{"Bonus":4,"Continent":"K54","ID":7403,"Name":"-= 004 =-","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7403","ServerKey":"pl181","X":446,"Y":521},{"Bonus":0,"Continent":"K54","ID":7404,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7404","ServerKey":"pl181","X":411,"Y":512},{"Bonus":0,"Continent":"K45","ID":7405,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7405","ServerKey":"pl181","X":528,"Y":494},{"Bonus":0,"Continent":"K54","ID":7406,"Name":"Front_31","PlayerID":2585846,"Points":3889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7406","ServerKey":"pl181","X":453,"Y":521},{"Bonus":0,"Continent":"K55","ID":7407,"Name":"CALL 1000","PlayerID":699784536,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7407","ServerKey":"pl181","X":552,"Y":576},{"Bonus":0,"Continent":"K45","ID":7408,"Name":".:073:. Takmahal","PlayerID":848934935,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7408","ServerKey":"pl181","X":522,"Y":440},{"Bonus":0,"Continent":"K45","ID":7409,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7409","ServerKey":"pl181","X":526,"Y":413},{"Bonus":0,"Continent":"K55","ID":7410,"Name":"kek","PlayerID":848967710,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7410","ServerKey":"pl181","X":546,"Y":515},{"Bonus":0,"Continent":"K54","ID":7412,"Name":"Optima","PlayerID":699443920,"Points":2828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7412","ServerKey":"pl181","X":432,"Y":557},{"Bonus":0,"Continent":"K45","ID":7414,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7414","ServerKey":"pl181","X":522,"Y":467},{"Bonus":0,"Continent":"K55","ID":7415,"Name":"Szlachcic","PlayerID":698867446,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7415","ServerKey":"pl181","X":586,"Y":512},{"Bonus":0,"Continent":"K44","ID":7416,"Name":"063 Pittsburg","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7416","ServerKey":"pl181","X":464,"Y":474},{"Bonus":0,"Continent":"K54","ID":7417,"Name":"#0117 Rambo","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7417","ServerKey":"pl181","X":499,"Y":551},{"Bonus":0,"Continent":"K45","ID":7418,"Name":"[101] Mateni Kowe","PlayerID":848985692,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7418","ServerKey":"pl181","X":574,"Y":476},{"Bonus":0,"Continent":"K55","ID":7419,"Name":"CALL 937","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7419","ServerKey":"pl181","X":549,"Y":561},{"Bonus":0,"Continent":"K64","ID":7420,"Name":"#046","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7420","ServerKey":"pl181","X":475,"Y":613},{"Bonus":0,"Continent":"K55","ID":7421,"Name":"sas","PlayerID":7581876,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7421","ServerKey":"pl181","X":537,"Y":541},{"Bonus":0,"Continent":"K54","ID":7422,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7422","ServerKey":"pl181","X":474,"Y":571},{"Bonus":3,"Continent":"K44","ID":7423,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7423","ServerKey":"pl181","X":427,"Y":447},{"Bonus":0,"Continent":"K44","ID":7424,"Name":"B038","PlayerID":699299123,"Points":10166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7424","ServerKey":"pl181","X":487,"Y":456},{"Bonus":0,"Continent":"K44","ID":7425,"Name":"K44 015","PlayerID":698290577,"Points":3394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7425","ServerKey":"pl181","X":435,"Y":484},{"Bonus":0,"Continent":"K54","ID":7426,"Name":"#0066 Jakub K","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7426","ServerKey":"pl181","X":493,"Y":563},{"Bonus":0,"Continent":"K54","ID":7427,"Name":"082. |XD|","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7427","ServerKey":"pl181","X":495,"Y":516},{"Bonus":0,"Continent":"K44","ID":7428,"Name":"0083","PlayerID":3909522,"Points":7022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7428","ServerKey":"pl181","X":445,"Y":443},{"Bonus":0,"Continent":"K45","ID":7429,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7429","ServerKey":"pl181","X":525,"Y":491},{"Bonus":0,"Continent":"K53","ID":7430,"Name":"116","PlayerID":699382126,"Points":4373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7430","ServerKey":"pl181","X":399,"Y":560},{"Bonus":0,"Continent":"K44","ID":7431,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7431","ServerKey":"pl181","X":489,"Y":469},{"Bonus":0,"Continent":"K45","ID":7432,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7432","ServerKey":"pl181","X":551,"Y":449},{"Bonus":0,"Continent":"K45","ID":7433,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7433","ServerKey":"pl181","X":524,"Y":436},{"Bonus":0,"Continent":"K45","ID":7434,"Name":"HARAD f","PlayerID":8155296,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7434","ServerKey":"pl181","X":534,"Y":466},{"Bonus":0,"Continent":"K54","ID":7435,"Name":"Wioska 1","PlayerID":8779575,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7435","ServerKey":"pl181","X":426,"Y":552},{"Bonus":0,"Continent":"K45","ID":7436,"Name":"ADEN","PlayerID":698588535,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7436","ServerKey":"pl181","X":558,"Y":440},{"Bonus":0,"Continent":"K44","ID":7437,"Name":"P Konfederacja","PlayerID":848915730,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7437","ServerKey":"pl181","X":453,"Y":450},{"Bonus":0,"Continent":"K44","ID":7439,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7439","ServerKey":"pl181","X":487,"Y":467},{"Bonus":0,"Continent":"K54","ID":7440,"Name":"#0067 Daniel Z","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7440","ServerKey":"pl181","X":486,"Y":557},{"Bonus":0,"Continent":"K54","ID":7441,"Name":"046. ALFI","PlayerID":8539216,"Points":1386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7441","ServerKey":"pl181","X":482,"Y":563},{"Bonus":0,"Continent":"K44","ID":7442,"Name":"+44 70 Collonges au Mont dOr","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7442","ServerKey":"pl181","X":409,"Y":472},{"Bonus":0,"Continent":"K45","ID":7443,"Name":".:042:. Chillout","PlayerID":848934935,"Points":5861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7443","ServerKey":"pl181","X":523,"Y":450},{"Bonus":0,"Continent":"K54","ID":7444,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7444","ServerKey":"pl181","X":435,"Y":529},{"Bonus":0,"Continent":"K55","ID":7445,"Name":"95k$ Grvvyq","PlayerID":699676005,"Points":4763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7445","ServerKey":"pl181","X":548,"Y":523},{"Bonus":5,"Continent":"K45","ID":7446,"Name":"x08","PlayerID":8459255,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7446","ServerKey":"pl181","X":558,"Y":478},{"Bonus":0,"Continent":"K54","ID":7447,"Name":"Sparta_58","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7447","ServerKey":"pl181","X":479,"Y":573},{"Bonus":0,"Continent":"K55","ID":7448,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7448","ServerKey":"pl181","X":512,"Y":563},{"Bonus":0,"Continent":"K55","ID":7449,"Name":"006. Wioska Lord Axen","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7449","ServerKey":"pl181","X":574,"Y":523},{"Bonus":0,"Continent":"K45","ID":7450,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7450","ServerKey":"pl181","X":574,"Y":494},{"Bonus":0,"Continent":"K45","ID":7451,"Name":"DOM 7","PlayerID":849064614,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7451","ServerKey":"pl181","X":567,"Y":408},{"Bonus":0,"Continent":"K45","ID":7452,"Name":"xxx","PlayerID":698239813,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7452","ServerKey":"pl181","X":512,"Y":459},{"Bonus":0,"Continent":"K54","ID":7453,"Name":"Fajna010","PlayerID":8539216,"Points":1918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7453","ServerKey":"pl181","X":460,"Y":574},{"Bonus":0,"Continent":"K44","ID":7454,"Name":"0063 7 strupin","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7454","ServerKey":"pl181","X":446,"Y":431},{"Bonus":7,"Continent":"K55","ID":7455,"Name":"Z07 Mikkeli","PlayerID":699272880,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7455","ServerKey":"pl181","X":561,"Y":514},{"Bonus":0,"Continent":"K44","ID":7456,"Name":"-x6","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7456","ServerKey":"pl181","X":499,"Y":497},{"Bonus":0,"Continent":"K55","ID":7457,"Name":"0036 MzM","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7457","ServerKey":"pl181","X":544,"Y":540},{"Bonus":0,"Continent":"K45","ID":7458,"Name":"033","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7458","ServerKey":"pl181","X":584,"Y":468},{"Bonus":0,"Continent":"K55","ID":7459,"Name":"007 Rupik95","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7459","ServerKey":"pl181","X":576,"Y":550},{"Bonus":0,"Continent":"K45","ID":7460,"Name":"Joms 035","PlayerID":699756210,"Points":6881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7460","ServerKey":"pl181","X":533,"Y":421},{"Bonus":0,"Continent":"K45","ID":7461,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":8893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7461","ServerKey":"pl181","X":555,"Y":477},{"Bonus":0,"Continent":"K54","ID":7462,"Name":"Sparta_74","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7462","ServerKey":"pl181","X":470,"Y":583},{"Bonus":1,"Continent":"K55","ID":7463,"Name":"019 |","PlayerID":8000875,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7463","ServerKey":"pl181","X":556,"Y":552},{"Bonus":0,"Continent":"K54","ID":7464,"Name":"Stage group D","PlayerID":699364813,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7464","ServerKey":"pl181","X":463,"Y":596},{"Bonus":0,"Continent":"K55","ID":7465,"Name":"041. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7465","ServerKey":"pl181","X":573,"Y":508},{"Bonus":0,"Continent":"K46","ID":7466,"Name":"Ethan Hunt 04","PlayerID":698702991,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7466","ServerKey":"pl181","X":603,"Y":476},{"Bonus":0,"Continent":"K53","ID":7467,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7467","ServerKey":"pl181","X":378,"Y":500},{"Bonus":0,"Continent":"K44","ID":7468,"Name":"058","PlayerID":699510259,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7468","ServerKey":"pl181","X":444,"Y":490},{"Bonus":0,"Continent":"K55","ID":7469,"Name":"13*","PlayerID":699664910,"Points":8902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7469","ServerKey":"pl181","X":568,"Y":542},{"Bonus":0,"Continent":"K54","ID":7470,"Name":"Kasyno","PlayerID":7249451,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7470","ServerKey":"pl181","X":443,"Y":504},{"Bonus":0,"Continent":"K45","ID":7471,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7471","ServerKey":"pl181","X":507,"Y":484},{"Bonus":0,"Continent":"K45","ID":7472,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7472","ServerKey":"pl181","X":520,"Y":482},{"Bonus":0,"Continent":"K54","ID":7473,"Name":"Kasyno","PlayerID":7249451,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7473","ServerKey":"pl181","X":444,"Y":514},{"Bonus":0,"Continent":"K55","ID":7474,"Name":"[117]","PlayerID":8000875,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7474","ServerKey":"pl181","X":544,"Y":507},{"Bonus":0,"Continent":"K45","ID":7475,"Name":"006","PlayerID":848967710,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7475","ServerKey":"pl181","X":529,"Y":480},{"Bonus":0,"Continent":"K45","ID":7476,"Name":"!Wioska 511","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7476","ServerKey":"pl181","X":576,"Y":458},{"Bonus":0,"Continent":"K45","ID":7477,"Name":"-[032]- Jannu","PlayerID":849092827,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7477","ServerKey":"pl181","X":555,"Y":474},{"Bonus":0,"Continent":"K54","ID":7478,"Name":"XnX-16","PlayerID":699698253,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7478","ServerKey":"pl181","X":458,"Y":534},{"Bonus":0,"Continent":"K45","ID":7479,"Name":"[125] North25","PlayerID":848985692,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7479","ServerKey":"pl181","X":574,"Y":475},{"Bonus":0,"Continent":"K56","ID":7480,"Name":"[009] MORTU VIN","PlayerID":848985692,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7480","ServerKey":"pl181","X":607,"Y":533},{"Bonus":0,"Continent":"K45","ID":7481,"Name":"JW2","PlayerID":699368887,"Points":6806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7481","ServerKey":"pl181","X":553,"Y":443},{"Bonus":0,"Continent":"K45","ID":7482,"Name":"[127] North27","PlayerID":848985692,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7482","ServerKey":"pl181","X":573,"Y":477},{"Bonus":0,"Continent":"K45","ID":7483,"Name":"MINAS MORGUL F","PlayerID":8155296,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7483","ServerKey":"pl181","X":537,"Y":464},{"Bonus":0,"Continent":"K44","ID":7484,"Name":"[A]_[022] Dejv.oldplyr","PlayerID":699380607,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7484","ServerKey":"pl181","X":400,"Y":479},{"Bonus":0,"Continent":"K45","ID":7485,"Name":"Rampage 1","PlayerID":699355601,"Points":3705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7485","ServerKey":"pl181","X":527,"Y":472},{"Bonus":0,"Continent":"K54","ID":7486,"Name":"004 - piekƂo","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7486","ServerKey":"pl181","X":418,"Y":579},{"Bonus":0,"Continent":"K55","ID":7487,"Name":"059 |","PlayerID":8000875,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7487","ServerKey":"pl181","X":547,"Y":500},{"Bonus":0,"Continent":"K54","ID":7488,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7488","ServerKey":"pl181","X":450,"Y":521},{"Bonus":0,"Continent":"K44","ID":7489,"Name":"PRO8L3M","PlayerID":7491093,"Points":7358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7489","ServerKey":"pl181","X":423,"Y":496},{"Bonus":0,"Continent":"K54","ID":7490,"Name":"038","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7490","ServerKey":"pl181","X":424,"Y":508},{"Bonus":0,"Continent":"K44","ID":7491,"Name":"0063 b56","PlayerID":3909522,"Points":8487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7491","ServerKey":"pl181","X":452,"Y":434},{"Bonus":0,"Continent":"K45","ID":7492,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7492","ServerKey":"pl181","X":561,"Y":452},{"Bonus":0,"Continent":"K55","ID":7493,"Name":"ladyanima","PlayerID":699703642,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7493","ServerKey":"pl181","X":513,"Y":571},{"Bonus":0,"Continent":"K54","ID":7494,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":7849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7494","ServerKey":"pl181","X":451,"Y":567},{"Bonus":0,"Continent":"K55","ID":7495,"Name":"Wioska 025","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7495","ServerKey":"pl181","X":590,"Y":575},{"Bonus":0,"Continent":"K45","ID":7496,"Name":"Tutkowa darma","PlayerID":8925695,"Points":7772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7496","ServerKey":"pl181","X":590,"Y":489},{"Bonus":0,"Continent":"K54","ID":7497,"Name":"Owa","PlayerID":699443920,"Points":3135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7497","ServerKey":"pl181","X":429,"Y":555},{"Bonus":0,"Continent":"K44","ID":7498,"Name":"027","PlayerID":699510259,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7498","ServerKey":"pl181","X":441,"Y":492},{"Bonus":0,"Continent":"K55","ID":7499,"Name":"043. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7499","ServerKey":"pl181","X":563,"Y":530},{"Bonus":0,"Continent":"K55","ID":7500,"Name":"Szlachcic 051","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7500","ServerKey":"pl181","X":577,"Y":512},{"Bonus":0,"Continent":"K44","ID":7501,"Name":"?+44 76 Hoymille","PlayerID":698361257,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7501","ServerKey":"pl181","X":465,"Y":479},{"Bonus":0,"Continent":"K54","ID":7502,"Name":"F090","PlayerID":699189792,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7502","ServerKey":"pl181","X":495,"Y":527},{"Bonus":0,"Continent":"K54","ID":7503,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7503","ServerKey":"pl181","X":455,"Y":512},{"Bonus":0,"Continent":"K54","ID":7504,"Name":"Tank Wioska Damian0704","PlayerID":698290577,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7504","ServerKey":"pl181","X":430,"Y":501},{"Bonus":0,"Continent":"K45","ID":7505,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7505","ServerKey":"pl181","X":501,"Y":435},{"Bonus":0,"Continent":"K54","ID":7506,"Name":"Moria","PlayerID":849091897,"Points":4414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7506","ServerKey":"pl181","X":494,"Y":518},{"Bonus":0,"Continent":"K55","ID":7507,"Name":"[089]","PlayerID":8000875,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7507","ServerKey":"pl181","X":550,"Y":507},{"Bonus":0,"Continent":"K44","ID":7508,"Name":"PRO8L3M","PlayerID":7491093,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7508","ServerKey":"pl181","X":413,"Y":495},{"Bonus":0,"Continent":"K45","ID":7509,"Name":"06 | ZagƂębie Rury","PlayerID":849002091,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7509","ServerKey":"pl181","X":542,"Y":431},{"Bonus":0,"Continent":"K55","ID":7510,"Name":"Cilonia","PlayerID":849066849,"Points":8322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7510","ServerKey":"pl181","X":514,"Y":556},{"Bonus":0,"Continent":"K55","ID":7511,"Name":"ANIOƁY I DEMONY","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7511","ServerKey":"pl181","X":502,"Y":525},{"Bonus":0,"Continent":"K55","ID":7512,"Name":"|054|","PlayerID":873575,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7512","ServerKey":"pl181","X":551,"Y":568},{"Bonus":7,"Continent":"K45","ID":7513,"Name":"A17","PlayerID":699368887,"Points":7727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7513","ServerKey":"pl181","X":550,"Y":449},{"Bonus":0,"Continent":"K34","ID":7514,"Name":"0003","PlayerID":699431255,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7514","ServerKey":"pl181","X":444,"Y":395},{"Bonus":0,"Continent":"K54","ID":7515,"Name":"*Ateny_01","PlayerID":2585846,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7515","ServerKey":"pl181","X":474,"Y":535},{"Bonus":0,"Continent":"K45","ID":7516,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":2762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7516","ServerKey":"pl181","X":514,"Y":445},{"Bonus":0,"Continent":"K55","ID":7517,"Name":"10004","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7517","ServerKey":"pl181","X":525,"Y":566},{"Bonus":0,"Continent":"K45","ID":7518,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7518","ServerKey":"pl181","X":502,"Y":467},{"Bonus":0,"Continent":"K45","ID":7519,"Name":"OOV","PlayerID":699658023,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7519","ServerKey":"pl181","X":510,"Y":437},{"Bonus":0,"Continent":"K44","ID":7520,"Name":"152 Jutiapa","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7520","ServerKey":"pl181","X":454,"Y":454},{"Bonus":0,"Continent":"K54","ID":7521,"Name":"Selonari.","PlayerID":698704189,"Points":8484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7521","ServerKey":"pl181","X":461,"Y":556},{"Bonus":0,"Continent":"K54","ID":7522,"Name":"Front_26","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7522","ServerKey":"pl181","X":453,"Y":528},{"Bonus":0,"Continent":"K35","ID":7523,"Name":"022","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7523","ServerKey":"pl181","X":542,"Y":396},{"Bonus":0,"Continent":"K54","ID":7524,"Name":"047","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7524","ServerKey":"pl181","X":424,"Y":511},{"Bonus":0,"Continent":"K54","ID":7525,"Name":"Suppi","PlayerID":699856962,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7525","ServerKey":"pl181","X":441,"Y":518},{"Bonus":0,"Continent":"K55","ID":7526,"Name":"003.","PlayerID":699695167,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7526","ServerKey":"pl181","X":523,"Y":556},{"Bonus":0,"Continent":"K44","ID":7527,"Name":"Fresio","PlayerID":699660539,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7527","ServerKey":"pl181","X":450,"Y":445},{"Bonus":0,"Continent":"K44","ID":7528,"Name":"156 Mazatenango","PlayerID":1497168,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7528","ServerKey":"pl181","X":454,"Y":459},{"Bonus":0,"Continent":"K53","ID":7529,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7529","ServerKey":"pl181","X":384,"Y":545},{"Bonus":0,"Continent":"K54","ID":7530,"Name":"008","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7530","ServerKey":"pl181","X":463,"Y":578},{"Bonus":0,"Continent":"K54","ID":7531,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7531","ServerKey":"pl181","X":437,"Y":502},{"Bonus":0,"Continent":"K54","ID":7532,"Name":"keepo","PlayerID":848967710,"Points":7598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7532","ServerKey":"pl181","X":479,"Y":509},{"Bonus":0,"Continent":"K44","ID":7533,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7533","ServerKey":"pl181","X":434,"Y":444},{"Bonus":0,"Continent":"K45","ID":7534,"Name":"005","PlayerID":698881022,"Points":6291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7534","ServerKey":"pl181","X":508,"Y":480},{"Bonus":0,"Continent":"K45","ID":7536,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7536","ServerKey":"pl181","X":544,"Y":495},{"Bonus":0,"Continent":"K45","ID":7537,"Name":"008 Ratusz ArsenaƂ","PlayerID":849083501,"Points":4508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7537","ServerKey":"pl181","X":540,"Y":469},{"Bonus":2,"Continent":"K54","ID":7538,"Name":"Osada koczownikĂłw","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7538","ServerKey":"pl181","X":434,"Y":503},{"Bonus":0,"Continent":"K55","ID":7540,"Name":"Wioska 21","PlayerID":699385139,"Points":4126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7540","ServerKey":"pl181","X":538,"Y":500},{"Bonus":0,"Continent":"K54","ID":7541,"Name":"Winter is coming","PlayerID":699856962,"Points":6151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7541","ServerKey":"pl181","X":438,"Y":539},{"Bonus":0,"Continent":"K55","ID":7542,"Name":"Szlachcic 003","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7542","ServerKey":"pl181","X":570,"Y":536},{"Bonus":0,"Continent":"K45","ID":7543,"Name":"Osada","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7543","ServerKey":"pl181","X":500,"Y":439},{"Bonus":0,"Continent":"K54","ID":7544,"Name":"COUSINS","PlayerID":7976264,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7544","ServerKey":"pl181","X":490,"Y":595},{"Bonus":0,"Continent":"K54","ID":7545,"Name":"KIELBA 034","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7545","ServerKey":"pl181","X":452,"Y":572},{"Bonus":0,"Continent":"K35","ID":7546,"Name":"Part III","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7546","ServerKey":"pl181","X":535,"Y":381},{"Bonus":0,"Continent":"K54","ID":7547,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7547","ServerKey":"pl181","X":455,"Y":542},{"Bonus":0,"Continent":"K55","ID":7548,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7548","ServerKey":"pl181","X":592,"Y":557},{"Bonus":0,"Continent":"K55","ID":7549,"Name":"034. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7549","ServerKey":"pl181","X":570,"Y":537},{"Bonus":0,"Continent":"K54","ID":7550,"Name":"Village","PlayerID":849094067,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7550","ServerKey":"pl181","X":499,"Y":583},{"Bonus":0,"Continent":"K44","ID":7551,"Name":"00704","PlayerID":3909522,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7551","ServerKey":"pl181","X":452,"Y":440},{"Bonus":0,"Continent":"K55","ID":7552,"Name":"[079]","PlayerID":8000875,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7552","ServerKey":"pl181","X":527,"Y":537},{"Bonus":0,"Continent":"K44","ID":7553,"Name":"Szlachcic","PlayerID":699098531,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7553","ServerKey":"pl181","X":491,"Y":478},{"Bonus":0,"Continent":"K45","ID":7554,"Name":".:096:. Rewson","PlayerID":848934935,"Points":6201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7554","ServerKey":"pl181","X":542,"Y":445},{"Bonus":0,"Continent":"K45","ID":7555,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7555","ServerKey":"pl181","X":522,"Y":423},{"Bonus":0,"Continent":"K54","ID":7556,"Name":"NOT?","PlayerID":9236866,"Points":7296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7556","ServerKey":"pl181","X":433,"Y":536},{"Bonus":0,"Continent":"K45","ID":7557,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7557","ServerKey":"pl181","X":517,"Y":497},{"Bonus":0,"Continent":"K54","ID":7558,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7558","ServerKey":"pl181","X":494,"Y":545},{"Bonus":0,"Continent":"K54","ID":7559,"Name":"Otręt","PlayerID":699443920,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7559","ServerKey":"pl181","X":444,"Y":554},{"Bonus":0,"Continent":"K44","ID":7560,"Name":"B030","PlayerID":699299123,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7560","ServerKey":"pl181","X":485,"Y":458},{"Bonus":0,"Continent":"K44","ID":7561,"Name":"Osada","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7561","ServerKey":"pl181","X":496,"Y":442},{"Bonus":0,"Continent":"K44","ID":7562,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7562","ServerKey":"pl181","X":416,"Y":485},{"Bonus":0,"Continent":"K54","ID":7563,"Name":"FF003","PlayerID":699189792,"Points":5949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7563","ServerKey":"pl181","X":467,"Y":518},{"Bonus":0,"Continent":"K45","ID":7564,"Name":"Strasznie MiƂy Sąsiad!","PlayerID":556154,"Points":6990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7564","ServerKey":"pl181","X":547,"Y":449},{"Bonus":0,"Continent":"K46","ID":7565,"Name":"009 Dras-Leona","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7565","ServerKey":"pl181","X":611,"Y":482},{"Bonus":0,"Continent":"K45","ID":7566,"Name":".:041:. ƁaƄcuch","PlayerID":8649412,"Points":8853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7566","ServerKey":"pl181","X":503,"Y":410},{"Bonus":0,"Continent":"K55","ID":7567,"Name":"020. Wioska SeexyPapi","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7567","ServerKey":"pl181","X":578,"Y":515},{"Bonus":0,"Continent":"K44","ID":7568,"Name":"192 Quito","PlayerID":1497168,"Points":7991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7568","ServerKey":"pl181","X":472,"Y":468},{"Bonus":0,"Continent":"K44","ID":7569,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7569","ServerKey":"pl181","X":474,"Y":414},{"Bonus":0,"Continent":"K54","ID":7570,"Name":"019","PlayerID":3613413,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7570","ServerKey":"pl181","X":492,"Y":577},{"Bonus":0,"Continent":"K55","ID":7571,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7571","ServerKey":"pl181","X":575,"Y":584},{"Bonus":0,"Continent":"K45","ID":7572,"Name":"MasteroN 10","PlayerID":699379895,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7572","ServerKey":"pl181","X":565,"Y":448},{"Bonus":0,"Continent":"K44","ID":7573,"Name":"Szlachcic","PlayerID":699098531,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7573","ServerKey":"pl181","X":488,"Y":463},{"Bonus":0,"Continent":"K55","ID":7574,"Name":"Sector 5 Slums Area","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7574","ServerKey":"pl181","X":514,"Y":590},{"Bonus":0,"Continent":"K45","ID":7575,"Name":"Szlachcic x","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7575","ServerKey":"pl181","X":508,"Y":458},{"Bonus":0,"Continent":"K55","ID":7576,"Name":"P.005","PlayerID":873575,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7576","ServerKey":"pl181","X":535,"Y":566},{"Bonus":0,"Continent":"K44","ID":7577,"Name":"00973","PlayerID":3909522,"Points":10279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7577","ServerKey":"pl181","X":461,"Y":437},{"Bonus":0,"Continent":"K44","ID":7578,"Name":"PRO8L3M","PlayerID":7491093,"Points":9446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7578","ServerKey":"pl181","X":465,"Y":496},{"Bonus":0,"Continent":"K44","ID":7579,"Name":"7.62 mm","PlayerID":699777234,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7579","ServerKey":"pl181","X":465,"Y":448},{"Bonus":0,"Continent":"K55","ID":7580,"Name":"046. A-RE-SE-EY","PlayerID":848967710,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7580","ServerKey":"pl181","X":554,"Y":517},{"Bonus":0,"Continent":"K55","ID":7581,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7581","ServerKey":"pl181","X":508,"Y":563},{"Bonus":0,"Continent":"K44","ID":7582,"Name":"Osada","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7582","ServerKey":"pl181","X":499,"Y":440},{"Bonus":0,"Continent":"K55","ID":7583,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7583","ServerKey":"pl181","X":572,"Y":518},{"Bonus":0,"Continent":"K45","ID":7584,"Name":"Wioska_05","PlayerID":8674163,"Points":9341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7584","ServerKey":"pl181","X":539,"Y":448},{"Bonus":0,"Continent":"K44","ID":7585,"Name":"0063 b1","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7585","ServerKey":"pl181","X":456,"Y":431},{"Bonus":0,"Continent":"K44","ID":7586,"Name":"?+44 76 Tingry","PlayerID":698361257,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7586","ServerKey":"pl181","X":460,"Y":476},{"Bonus":0,"Continent":"K44","ID":7587,"Name":"K44 020","PlayerID":698290577,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7587","ServerKey":"pl181","X":431,"Y":499},{"Bonus":0,"Continent":"K55","ID":7588,"Name":"Winter is coming","PlayerID":699364813,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7588","ServerKey":"pl181","X":505,"Y":583},{"Bonus":0,"Continent":"K55","ID":7589,"Name":"0039 K55 and987 OZDR.","PlayerID":3613413,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7589","ServerKey":"pl181","X":505,"Y":543},{"Bonus":0,"Continent":"K55","ID":7590,"Name":"Szlachcic","PlayerID":698867446,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7590","ServerKey":"pl181","X":577,"Y":511},{"Bonus":0,"Continent":"K45","ID":7591,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7591","ServerKey":"pl181","X":565,"Y":457},{"Bonus":0,"Continent":"K54","ID":7592,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7592","ServerKey":"pl181","X":452,"Y":502},{"Bonus":0,"Continent":"K44","ID":7593,"Name":"002","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7593","ServerKey":"pl181","X":462,"Y":440},{"Bonus":0,"Continent":"K45","ID":7594,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7594","ServerKey":"pl181","X":520,"Y":431},{"Bonus":0,"Continent":"K45","ID":7595,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":2477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7595","ServerKey":"pl181","X":518,"Y":445},{"Bonus":0,"Continent":"K44","ID":7596,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7596","ServerKey":"pl181","X":443,"Y":448},{"Bonus":0,"Continent":"K55","ID":7597,"Name":"0060","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7597","ServerKey":"pl181","X":509,"Y":517},{"Bonus":0,"Continent":"K55","ID":7598,"Name":"Szlachcic 053","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7598","ServerKey":"pl181","X":569,"Y":520},{"Bonus":0,"Continent":"K45","ID":7599,"Name":"075.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7599","ServerKey":"pl181","X":504,"Y":485},{"Bonus":0,"Continent":"K53","ID":7600,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7600","ServerKey":"pl181","X":384,"Y":509},{"Bonus":0,"Continent":"K54","ID":7601,"Name":"Gratuluje mĂłzgu","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7601","ServerKey":"pl181","X":444,"Y":536},{"Bonus":0,"Continent":"K44","ID":7602,"Name":"044","PlayerID":699510259,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7602","ServerKey":"pl181","X":434,"Y":492},{"Bonus":0,"Continent":"K55","ID":7603,"Name":"Jaaa","PlayerID":698635863,"Points":10830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7603","ServerKey":"pl181","X":567,"Y":588},{"Bonus":0,"Continent":"K45","ID":7604,"Name":"Abadon landy 3","PlayerID":699347951,"Points":6416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7604","ServerKey":"pl181","X":563,"Y":488},{"Bonus":0,"Continent":"K45","ID":7605,"Name":"A11","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7605","ServerKey":"pl181","X":548,"Y":455},{"Bonus":0,"Continent":"K44","ID":7606,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7606","ServerKey":"pl181","X":433,"Y":400},{"Bonus":0,"Continent":"K44","ID":7607,"Name":"B065","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7607","ServerKey":"pl181","X":478,"Y":471},{"Bonus":0,"Continent":"K44","ID":7608,"Name":"061 Sacramento","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7608","ServerKey":"pl181","X":462,"Y":472},{"Bonus":0,"Continent":"K55","ID":7609,"Name":"017. Wioska Exano","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7609","ServerKey":"pl181","X":569,"Y":521},{"Bonus":0,"Continent":"K44","ID":7610,"Name":"101 Edmonton","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7610","ServerKey":"pl181","X":472,"Y":486},{"Bonus":0,"Continent":"K45","ID":7611,"Name":"A049","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7611","ServerKey":"pl181","X":500,"Y":426},{"Bonus":0,"Continent":"K44","ID":7612,"Name":"P Konfederacja +","PlayerID":848915730,"Points":9678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7612","ServerKey":"pl181","X":462,"Y":445},{"Bonus":0,"Continent":"K45","ID":7613,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7613","ServerKey":"pl181","X":521,"Y":422},{"Bonus":0,"Continent":"K44","ID":7614,"Name":"012 Sosnowiec","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7614","ServerKey":"pl181","X":429,"Y":426},{"Bonus":0,"Continent":"K55","ID":7615,"Name":"015","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7615","ServerKey":"pl181","X":570,"Y":556},{"Bonus":9,"Continent":"K55","ID":7616,"Name":"028. Wioska Misiaczek6","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7616","ServerKey":"pl181","X":569,"Y":504},{"Bonus":0,"Continent":"K45","ID":7618,"Name":"[107] North7","PlayerID":848985692,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7618","ServerKey":"pl181","X":579,"Y":476},{"Bonus":0,"Continent":"K54","ID":7619,"Name":"Fajna002","PlayerID":698971484,"Points":7611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7619","ServerKey":"pl181","X":451,"Y":556},{"Bonus":0,"Continent":"K55","ID":7620,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7620","ServerKey":"pl181","X":575,"Y":537},{"Bonus":0,"Continent":"K55","ID":7621,"Name":"P.027","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7621","ServerKey":"pl181","X":538,"Y":551},{"Bonus":0,"Continent":"K35","ID":7622,"Name":".:100:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7622","ServerKey":"pl181","X":502,"Y":394},{"Bonus":0,"Continent":"K44","ID":7623,"Name":"+44 62 Saint Didier au Mont dOr","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7623","ServerKey":"pl181","X":425,"Y":469},{"Bonus":0,"Continent":"K45","ID":7624,"Name":"Szlachcic","PlayerID":699098531,"Points":8552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7624","ServerKey":"pl181","X":507,"Y":459},{"Bonus":0,"Continent":"K44","ID":7625,"Name":"-001- ChodĆș chodĆș chodĆș","PlayerID":9291984,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7625","ServerKey":"pl181","X":450,"Y":411},{"Bonus":0,"Continent":"K54","ID":7626,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7626","ServerKey":"pl181","X":455,"Y":507},{"Bonus":0,"Continent":"K54","ID":7627,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7627","ServerKey":"pl181","X":436,"Y":504},{"Bonus":0,"Continent":"K45","ID":7629,"Name":"010 Cinnabar Island","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7629","ServerKey":"pl181","X":565,"Y":458},{"Bonus":0,"Continent":"K44","ID":7630,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7630","ServerKey":"pl181","X":498,"Y":477},{"Bonus":0,"Continent":"K45","ID":7631,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7631","ServerKey":"pl181","X":521,"Y":427},{"Bonus":0,"Continent":"K44","ID":7632,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7632","ServerKey":"pl181","X":442,"Y":464},{"Bonus":0,"Continent":"K44","ID":7633,"Name":"W001Wygnanie","PlayerID":698290577,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7633","ServerKey":"pl181","X":445,"Y":498},{"Bonus":0,"Continent":"K54","ID":7634,"Name":"Ateny_10","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7634","ServerKey":"pl181","X":473,"Y":535},{"Bonus":0,"Continent":"K45","ID":7635,"Name":"Joms 001","PlayerID":699756210,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7635","ServerKey":"pl181","X":523,"Y":420},{"Bonus":0,"Continent":"K55","ID":7636,"Name":"- 052 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7636","ServerKey":"pl181","X":541,"Y":577},{"Bonus":0,"Continent":"K55","ID":7637,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7637","ServerKey":"pl181","X":508,"Y":585},{"Bonus":0,"Continent":"K55","ID":7638,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7638","ServerKey":"pl181","X":566,"Y":502},{"Bonus":0,"Continent":"K45","ID":7639,"Name":".:020:. Kot","PlayerID":8649412,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7639","ServerKey":"pl181","X":506,"Y":431},{"Bonus":0,"Continent":"K55","ID":7640,"Name":"Winter is coming","PlayerID":699364813,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7640","ServerKey":"pl181","X":510,"Y":587},{"Bonus":0,"Continent":"K54","ID":7641,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7641","ServerKey":"pl181","X":486,"Y":590},{"Bonus":0,"Continent":"K44","ID":7642,"Name":"...Just like that","PlayerID":699723284,"Points":5414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7642","ServerKey":"pl181","X":469,"Y":474},{"Bonus":0,"Continent":"K54","ID":7643,"Name":"Daleko 014","PlayerID":3454753,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7643","ServerKey":"pl181","X":474,"Y":583},{"Bonus":0,"Continent":"K44","ID":7644,"Name":"South Barba 2","PlayerID":699796330,"Points":10563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7644","ServerKey":"pl181","X":457,"Y":458},{"Bonus":2,"Continent":"K55","ID":7645,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7645","ServerKey":"pl181","X":577,"Y":549},{"Bonus":0,"Continent":"K55","ID":7646,"Name":"[155]","PlayerID":8000875,"Points":7842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7646","ServerKey":"pl181","X":550,"Y":505},{"Bonus":0,"Continent":"K55","ID":7647,"Name":"CALL 970","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7647","ServerKey":"pl181","X":552,"Y":557},{"Bonus":0,"Continent":"K55","ID":7648,"Name":"WioskaF","PlayerID":8369778,"Points":8095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7648","ServerKey":"pl181","X":509,"Y":584},{"Bonus":0,"Continent":"K45","ID":7649,"Name":"[110] North10","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7649","ServerKey":"pl181","X":578,"Y":474},{"Bonus":0,"Continent":"K65","ID":7650,"Name":"CALL 1012","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7650","ServerKey":"pl181","X":525,"Y":614},{"Bonus":0,"Continent":"K55","ID":7651,"Name":"JaamMwG 001","PlayerID":848987051,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7651","ServerKey":"pl181","X":524,"Y":524},{"Bonus":0,"Continent":"K44","ID":7653,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7653","ServerKey":"pl181","X":489,"Y":479},{"Bonus":0,"Continent":"K54","ID":7654,"Name":"Fajna 083","PlayerID":698971484,"Points":5737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7654","ServerKey":"pl181","X":457,"Y":562},{"Bonus":0,"Continent":"K44","ID":7655,"Name":"Suppi","PlayerID":699856962,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7655","ServerKey":"pl181","X":439,"Y":450},{"Bonus":0,"Continent":"K54","ID":7656,"Name":"a CSA-Z","PlayerID":3909522,"Points":2930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7656","ServerKey":"pl181","X":454,"Y":533},{"Bonus":0,"Continent":"K44","ID":7657,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7657","ServerKey":"pl181","X":471,"Y":444},{"Bonus":0,"Continent":"K54","ID":7658,"Name":"Kasyno","PlayerID":7249451,"Points":8965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7658","ServerKey":"pl181","X":441,"Y":503},{"Bonus":0,"Continent":"K45","ID":7659,"Name":"ABADON NEW1","PlayerID":699347951,"Points":5594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7659","ServerKey":"pl181","X":553,"Y":472},{"Bonus":0,"Continent":"K45","ID":7660,"Name":".:004:. KrĂłlestwo","PlayerID":8649412,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7660","ServerKey":"pl181","X":511,"Y":418},{"Bonus":0,"Continent":"K44","ID":7661,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7661","ServerKey":"pl181","X":468,"Y":433},{"Bonus":0,"Continent":"K54","ID":7662,"Name":"NOT?","PlayerID":9236866,"Points":8743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7662","ServerKey":"pl181","X":433,"Y":540},{"Bonus":0,"Continent":"K54","ID":7663,"Name":"Suppi","PlayerID":699856962,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7663","ServerKey":"pl181","X":441,"Y":528},{"Bonus":9,"Continent":"K55","ID":7664,"Name":"CALL 1058","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7664","ServerKey":"pl181","X":522,"Y":532},{"Bonus":0,"Continent":"K54","ID":7665,"Name":"#0075 Radoƛć","PlayerID":8827094,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7665","ServerKey":"pl181","X":497,"Y":559},{"Bonus":0,"Continent":"K45","ID":7666,"Name":"Marienburg 7","PlayerID":699355601,"Points":2661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7666","ServerKey":"pl181","X":526,"Y":479},{"Bonus":0,"Continent":"K55","ID":7667,"Name":"Summer Slam ~ 011","PlayerID":7581876,"Points":9810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7667","ServerKey":"pl181","X":521,"Y":548},{"Bonus":0,"Continent":"K55","ID":7668,"Name":"014","PlayerID":699194766,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7668","ServerKey":"pl181","X":558,"Y":519},{"Bonus":0,"Continent":"K45","ID":7669,"Name":"Enigma 004","PlayerID":699098531,"Points":6747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7669","ServerKey":"pl181","X":508,"Y":453},{"Bonus":0,"Continent":"K44","ID":7670,"Name":"Cast Away 005","PlayerID":698290577,"Points":8804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7670","ServerKey":"pl181","X":450,"Y":490},{"Bonus":0,"Continent":"K54","ID":7671,"Name":"keepo","PlayerID":848967710,"Points":4287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7671","ServerKey":"pl181","X":476,"Y":512},{"Bonus":0,"Continent":"K45","ID":7672,"Name":"000 Warszawa","PlayerID":849083501,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7672","ServerKey":"pl181","X":541,"Y":470},{"Bonus":0,"Continent":"K55","ID":7673,"Name":"0013 K55 and987 OZDR.","PlayerID":3613413,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7673","ServerKey":"pl181","X":509,"Y":547},{"Bonus":0,"Continent":"K44","ID":7674,"Name":"+44 61 Nesles","PlayerID":698361257,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7674","ServerKey":"pl181","X":411,"Y":461},{"Bonus":0,"Continent":"K45","ID":7675,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7675","ServerKey":"pl181","X":580,"Y":479},{"Bonus":0,"Continent":"K44","ID":7676,"Name":"0053","PlayerID":848913037,"Points":4585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7676","ServerKey":"pl181","X":460,"Y":472},{"Bonus":0,"Continent":"K54","ID":7677,"Name":"#0122 Uprzejmoƛć","PlayerID":9272054,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7677","ServerKey":"pl181","X":482,"Y":548},{"Bonus":0,"Continent":"K45","ID":7678,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7678","ServerKey":"pl181","X":514,"Y":424},{"Bonus":0,"Continent":"K44","ID":7679,"Name":"SsSs","PlayerID":1536625,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7679","ServerKey":"pl181","X":451,"Y":499},{"Bonus":0,"Continent":"K54","ID":7680,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7680","ServerKey":"pl181","X":482,"Y":535},{"Bonus":0,"Continent":"K44","ID":7681,"Name":"0062 ~1~","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7681","ServerKey":"pl181","X":444,"Y":434},{"Bonus":0,"Continent":"K55","ID":7682,"Name":"lady","PlayerID":699703642,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7682","ServerKey":"pl181","X":501,"Y":588},{"Bonus":0,"Continent":"K46","ID":7683,"Name":"Ethan Hunt 01","PlayerID":698702991,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7683","ServerKey":"pl181","X":603,"Y":477},{"Bonus":0,"Continent":"K54","ID":7684,"Name":"061. ALFI","PlayerID":8539216,"Points":1229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7684","ServerKey":"pl181","X":469,"Y":565},{"Bonus":0,"Continent":"K45","ID":7685,"Name":".:021:. Pies","PlayerID":8649412,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7685","ServerKey":"pl181","X":518,"Y":418},{"Bonus":0,"Continent":"K44","ID":7686,"Name":"0060 Wioska","PlayerID":3909522,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7686","ServerKey":"pl181","X":447,"Y":434},{"Bonus":0,"Continent":"K44","ID":7687,"Name":"Mersulka","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7687","ServerKey":"pl181","X":433,"Y":457},{"Bonus":0,"Continent":"K44","ID":7688,"Name":".:030:. Sos","PlayerID":699098531,"Points":9162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7688","ServerKey":"pl181","X":499,"Y":488},{"Bonus":0,"Continent":"K55","ID":7689,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7689","ServerKey":"pl181","X":561,"Y":507},{"Bonus":0,"Continent":"K45","ID":7690,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7690","ServerKey":"pl181","X":581,"Y":497},{"Bonus":0,"Continent":"K45","ID":7691,"Name":"Szlachcic 9;20","PlayerID":699098531,"Points":10332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7691","ServerKey":"pl181","X":505,"Y":475},{"Bonus":0,"Continent":"K45","ID":7692,"Name":"019","PlayerID":699788305,"Points":8464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7692","ServerKey":"pl181","X":531,"Y":434},{"Bonus":0,"Continent":"K54","ID":7693,"Name":"Front_04","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7693","ServerKey":"pl181","X":459,"Y":520},{"Bonus":0,"Continent":"K55","ID":7694,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7694","ServerKey":"pl181","X":539,"Y":567},{"Bonus":0,"Continent":"K45","ID":7695,"Name":"WarehousePCC","PlayerID":699347951,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7695","ServerKey":"pl181","X":585,"Y":494},{"Bonus":0,"Continent":"K55","ID":7696,"Name":"067 |","PlayerID":8000875,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7696","ServerKey":"pl181","X":553,"Y":501},{"Bonus":0,"Continent":"K45","ID":7697,"Name":"090.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7697","ServerKey":"pl181","X":506,"Y":489},{"Bonus":0,"Continent":"K44","ID":7698,"Name":"027 Memphis","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7698","ServerKey":"pl181","X":444,"Y":482},{"Bonus":4,"Continent":"K45","ID":7699,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7699","ServerKey":"pl181","X":517,"Y":495},{"Bonus":0,"Continent":"K45","ID":7700,"Name":"! Wioska barbarzyƄska","PlayerID":477415,"Points":8982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7700","ServerKey":"pl181","X":543,"Y":459},{"Bonus":0,"Continent":"K44","ID":7701,"Name":"+44 72 Villeurbanne Bon Coin","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7701","ServerKey":"pl181","X":426,"Y":471},{"Bonus":0,"Continent":"K44","ID":7702,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7702","ServerKey":"pl181","X":427,"Y":467},{"Bonus":0,"Continent":"K45","ID":7703,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7703","ServerKey":"pl181","X":515,"Y":475},{"Bonus":0,"Continent":"K55","ID":7704,"Name":"Village","PlayerID":849094067,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7704","ServerKey":"pl181","X":503,"Y":589},{"Bonus":0,"Continent":"K45","ID":7705,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7705","ServerKey":"pl181","X":523,"Y":429},{"Bonus":0,"Continent":"K55","ID":7706,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7706","ServerKey":"pl181","X":573,"Y":585},{"Bonus":0,"Continent":"K54","ID":7707,"Name":"Okaz","PlayerID":699443920,"Points":3857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7707","ServerKey":"pl181","X":436,"Y":556},{"Bonus":6,"Continent":"K44","ID":7708,"Name":"0070 Osada","PlayerID":3909522,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7708","ServerKey":"pl181","X":453,"Y":441},{"Bonus":0,"Continent":"K54","ID":7709,"Name":"Sparta_46","PlayerID":2585846,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7709","ServerKey":"pl181","X":480,"Y":576},{"Bonus":0,"Continent":"K55","ID":7710,"Name":"20000","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7710","ServerKey":"pl181","X":520,"Y":541},{"Bonus":0,"Continent":"K45","ID":7711,"Name":"008","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7711","ServerKey":"pl181","X":595,"Y":458},{"Bonus":0,"Continent":"K55","ID":7712,"Name":"[183]","PlayerID":848985692,"Points":7997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7712","ServerKey":"pl181","X":536,"Y":515},{"Bonus":0,"Continent":"K45","ID":7713,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7713","ServerKey":"pl181","X":508,"Y":456},{"Bonus":0,"Continent":"K45","ID":7714,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7714","ServerKey":"pl181","X":515,"Y":412},{"Bonus":0,"Continent":"K45","ID":7715,"Name":"EPICENTRUM","PlayerID":8155296,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7715","ServerKey":"pl181","X":539,"Y":467},{"Bonus":0,"Continent":"K44","ID":7716,"Name":"0063 sawin","PlayerID":3909522,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7716","ServerKey":"pl181","X":447,"Y":431},{"Bonus":0,"Continent":"K55","ID":7717,"Name":"[128]","PlayerID":8000875,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7717","ServerKey":"pl181","X":553,"Y":546},{"Bonus":0,"Continent":"K45","ID":7718,"Name":"Joms 010","PlayerID":699756210,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7718","ServerKey":"pl181","X":518,"Y":419},{"Bonus":0,"Continent":"K45","ID":7719,"Name":"-[033]- Tiricz Mir","PlayerID":849092827,"Points":8121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7719","ServerKey":"pl181","X":558,"Y":474},{"Bonus":0,"Continent":"K54","ID":7720,"Name":"067","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7720","ServerKey":"pl181","X":413,"Y":516},{"Bonus":0,"Continent":"K45","ID":7721,"Name":"0015|Lublana","PlayerID":8649412,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7721","ServerKey":"pl181","X":510,"Y":441},{"Bonus":0,"Continent":"K54","ID":7723,"Name":"0wi","PlayerID":699189792,"Points":4854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7723","ServerKey":"pl181","X":471,"Y":512},{"Bonus":0,"Continent":"K55","ID":7724,"Name":"10019","PlayerID":848915531,"Points":7324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7724","ServerKey":"pl181","X":537,"Y":555},{"Bonus":0,"Continent":"K44","ID":7725,"Name":"B052","PlayerID":699299123,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7725","ServerKey":"pl181","X":475,"Y":469},{"Bonus":0,"Continent":"K45","ID":7726,"Name":"0006 MzM","PlayerID":698416970,"Points":8529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7726","ServerKey":"pl181","X":572,"Y":449},{"Bonus":0,"Continent":"K54","ID":7727,"Name":"C 015 BiaƂy KoƛcióƂ","PlayerID":849084740,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7727","ServerKey":"pl181","X":417,"Y":575},{"Bonus":0,"Continent":"K55","ID":7728,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7728","ServerKey":"pl181","X":580,"Y":501},{"Bonus":0,"Continent":"K45","ID":7729,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7729","ServerKey":"pl181","X":544,"Y":482},{"Bonus":0,"Continent":"K54","ID":7730,"Name":"KIELBA 124","PlayerID":699342219,"Points":4967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7730","ServerKey":"pl181","X":452,"Y":562},{"Bonus":0,"Continent":"K55","ID":7731,"Name":"yogi","PlayerID":2808172,"Points":6686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7731","ServerKey":"pl181","X":514,"Y":547},{"Bonus":0,"Continent":"K55","ID":7732,"Name":"015","PlayerID":699194766,"Points":8781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7732","ServerKey":"pl181","X":549,"Y":522},{"Bonus":0,"Continent":"K54","ID":7733,"Name":"062","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7733","ServerKey":"pl181","X":408,"Y":501},{"Bonus":0,"Continent":"K55","ID":7734,"Name":"Mzm30","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7734","ServerKey":"pl181","X":555,"Y":521},{"Bonus":0,"Continent":"K54","ID":7736,"Name":"Winter is coming","PlayerID":698971484,"Points":1532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7736","ServerKey":"pl181","X":443,"Y":550},{"Bonus":1,"Continent":"K45","ID":7737,"Name":"[067] Chwilowa","PlayerID":848985692,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7737","ServerKey":"pl181","X":535,"Y":492},{"Bonus":0,"Continent":"K55","ID":7738,"Name":"Za daleko","PlayerID":699785935,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7738","ServerKey":"pl181","X":578,"Y":593},{"Bonus":0,"Continent":"K44","ID":7739,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7739","ServerKey":"pl181","X":439,"Y":451},{"Bonus":0,"Continent":"K55","ID":7740,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7740","ServerKey":"pl181","X":534,"Y":554},{"Bonus":0,"Continent":"K55","ID":7741,"Name":"040. Caelum","PlayerID":699703642,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7741","ServerKey":"pl181","X":512,"Y":579},{"Bonus":0,"Continent":"K45","ID":7742,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7742","ServerKey":"pl181","X":579,"Y":483},{"Bonus":0,"Continent":"K44","ID":7743,"Name":"Szlachcic","PlayerID":699098531,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7743","ServerKey":"pl181","X":488,"Y":468},{"Bonus":0,"Continent":"K45","ID":7744,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7744","ServerKey":"pl181","X":513,"Y":427},{"Bonus":0,"Continent":"K35","ID":7745,"Name":"MIKOR 004","PlayerID":6343784,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7745","ServerKey":"pl181","X":559,"Y":388},{"Bonus":0,"Continent":"K54","ID":7746,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7746","ServerKey":"pl181","X":449,"Y":528},{"Bonus":0,"Continent":"K54","ID":7747,"Name":"WINTER IS COMING","PlayerID":1536625,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7747","ServerKey":"pl181","X":473,"Y":503},{"Bonus":0,"Continent":"K44","ID":7748,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7748","ServerKey":"pl181","X":417,"Y":482},{"Bonus":0,"Continent":"K54","ID":7749,"Name":"(004)","PlayerID":699846892,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7749","ServerKey":"pl181","X":412,"Y":535},{"Bonus":0,"Continent":"K54","ID":7750,"Name":"keepo","PlayerID":848967710,"Points":9431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7750","ServerKey":"pl181","X":488,"Y":523},{"Bonus":0,"Continent":"K45","ID":7751,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7751","ServerKey":"pl181","X":504,"Y":456},{"Bonus":0,"Continent":"K44","ID":7752,"Name":"-030-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7752","ServerKey":"pl181","X":464,"Y":423},{"Bonus":0,"Continent":"K55","ID":7753,"Name":"CALL 978","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7753","ServerKey":"pl181","X":545,"Y":566},{"Bonus":0,"Continent":"K45","ID":7754,"Name":"x daro 091","PlayerID":3909522,"Points":8574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7754","ServerKey":"pl181","X":552,"Y":469},{"Bonus":0,"Continent":"K64","ID":7755,"Name":"033.","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7755","ServerKey":"pl181","X":483,"Y":624},{"Bonus":0,"Continent":"K55","ID":7756,"Name":"Mzm41","PlayerID":7142659,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7756","ServerKey":"pl181","X":567,"Y":523},{"Bonus":3,"Continent":"K45","ID":7757,"Name":"[126] Dolina Cienia","PlayerID":848985692,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7757","ServerKey":"pl181","X":581,"Y":473},{"Bonus":0,"Continent":"K55","ID":7758,"Name":"036. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7758","ServerKey":"pl181","X":569,"Y":509},{"Bonus":0,"Continent":"K45","ID":7759,"Name":"Joms 006","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7759","ServerKey":"pl181","X":527,"Y":421},{"Bonus":0,"Continent":"K54","ID":7760,"Name":"Fajna 002","PlayerID":699868002,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7760","ServerKey":"pl181","X":450,"Y":558},{"Bonus":0,"Continent":"K45","ID":7761,"Name":"Wioska_07","PlayerID":8674163,"Points":5250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7761","ServerKey":"pl181","X":546,"Y":451},{"Bonus":0,"Continent":"K54","ID":7762,"Name":"Sparta_49","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7762","ServerKey":"pl181","X":485,"Y":575},{"Bonus":0,"Continent":"K34","ID":7763,"Name":"BiaƂy Sad","PlayerID":699658023,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7763","ServerKey":"pl181","X":483,"Y":379},{"Bonus":0,"Continent":"K54","ID":7764,"Name":"018","PlayerID":3613413,"Points":8954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7764","ServerKey":"pl181","X":492,"Y":578},{"Bonus":0,"Continent":"K54","ID":7765,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":10174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7765","ServerKey":"pl181","X":484,"Y":548},{"Bonus":0,"Continent":"K44","ID":7766,"Name":"029 Montgomery","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7766","ServerKey":"pl181","X":437,"Y":476},{"Bonus":0,"Continent":"K44","ID":7767,"Name":"B026","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7767","ServerKey":"pl181","X":478,"Y":454},{"Bonus":0,"Continent":"K55","ID":7768,"Name":"022 |","PlayerID":8000875,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7768","ServerKey":"pl181","X":560,"Y":558},{"Bonus":0,"Continent":"K54","ID":7769,"Name":"Fajna 035","PlayerID":8539216,"Points":1987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7769","ServerKey":"pl181","X":458,"Y":572},{"Bonus":0,"Continent":"K44","ID":7770,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7770","ServerKey":"pl181","X":462,"Y":412},{"Bonus":0,"Continent":"K55","ID":7771,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7771","ServerKey":"pl181","X":533,"Y":546},{"Bonus":0,"Continent":"K54","ID":7772,"Name":"077. ALFI","PlayerID":8539216,"Points":1536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7772","ServerKey":"pl181","X":466,"Y":568},{"Bonus":0,"Continent":"K34","ID":7773,"Name":"HoƂopole","PlayerID":699433558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7773","ServerKey":"pl181","X":487,"Y":380},{"Bonus":0,"Continent":"K44","ID":7774,"Name":"Suppi","PlayerID":699856962,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7774","ServerKey":"pl181","X":431,"Y":458},{"Bonus":0,"Continent":"K55","ID":7775,"Name":"!Wioska 410","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7775","ServerKey":"pl181","X":571,"Y":520},{"Bonus":0,"Continent":"K45","ID":7776,"Name":".:081:. Takmahal","PlayerID":848934935,"Points":3944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7776","ServerKey":"pl181","X":525,"Y":452},{"Bonus":0,"Continent":"K54","ID":7777,"Name":"Mniejsze zƂo 0057","PlayerID":699794765,"Points":7091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7777","ServerKey":"pl181","X":420,"Y":505},{"Bonus":4,"Continent":"K45","ID":7778,"Name":"Gattacka","PlayerID":699298370,"Points":8532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7778","ServerKey":"pl181","X":572,"Y":493},{"Bonus":0,"Continent":"K54","ID":7779,"Name":"Wioska Nie Ruszać","PlayerID":7581876,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7779","ServerKey":"pl181","X":498,"Y":534},{"Bonus":0,"Continent":"K44","ID":7780,"Name":"0080 Wioska","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7780","ServerKey":"pl181","X":443,"Y":446},{"Bonus":0,"Continent":"K45","ID":7781,"Name":"-14-","PlayerID":699347951,"Points":10508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7781","ServerKey":"pl181","X":584,"Y":475},{"Bonus":0,"Continent":"K45","ID":7782,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":4150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7782","ServerKey":"pl181","X":513,"Y":477},{"Bonus":0,"Continent":"K44","ID":7783,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7783","ServerKey":"pl181","X":416,"Y":493},{"Bonus":0,"Continent":"K54","ID":7784,"Name":"KIELBA 090","PlayerID":699342219,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7784","ServerKey":"pl181","X":445,"Y":570},{"Bonus":0,"Continent":"K54","ID":7785,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7785","ServerKey":"pl181","X":419,"Y":510},{"Bonus":0,"Continent":"K55","ID":7786,"Name":"Wioska 20","PlayerID":699385139,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7786","ServerKey":"pl181","X":515,"Y":531},{"Bonus":0,"Continent":"K55","ID":7787,"Name":"- Killing Me Slowly","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7787","ServerKey":"pl181","X":510,"Y":516},{"Bonus":0,"Continent":"K54","ID":7788,"Name":"Winter is coming","PlayerID":699856962,"Points":2162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7788","ServerKey":"pl181","X":434,"Y":547},{"Bonus":0,"Continent":"K44","ID":7789,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7789","ServerKey":"pl181","X":419,"Y":480},{"Bonus":2,"Continent":"K45","ID":7790,"Name":"009 Saffron City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7790","ServerKey":"pl181","X":564,"Y":459},{"Bonus":0,"Continent":"K45","ID":7791,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7791","ServerKey":"pl181","X":578,"Y":493},{"Bonus":0,"Continent":"K55","ID":7792,"Name":"lady","PlayerID":699703642,"Points":10521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7792","ServerKey":"pl181","X":514,"Y":572},{"Bonus":0,"Continent":"K54","ID":7793,"Name":"0000009#","PlayerID":849089881,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7793","ServerKey":"pl181","X":434,"Y":573},{"Bonus":0,"Continent":"K55","ID":7794,"Name":"[077] Kukupha iwe","PlayerID":848985692,"Points":10516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7794","ServerKey":"pl181","X":530,"Y":505},{"Bonus":0,"Continent":"K55","ID":7795,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7795","ServerKey":"pl181","X":529,"Y":521},{"Bonus":0,"Continent":"K44","ID":7796,"Name":"127 San Felipe","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7796","ServerKey":"pl181","X":462,"Y":475},{"Bonus":0,"Continent":"K45","ID":7797,"Name":"Szlachcic","PlayerID":698867446,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7797","ServerKey":"pl181","X":567,"Y":467},{"Bonus":0,"Continent":"K44","ID":7798,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7798","ServerKey":"pl181","X":487,"Y":490},{"Bonus":0,"Continent":"K54","ID":7799,"Name":"085. ALFI","PlayerID":3613413,"Points":1875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7799","ServerKey":"pl181","X":482,"Y":552},{"Bonus":0,"Continent":"K55","ID":7800,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7800","ServerKey":"pl181","X":527,"Y":549},{"Bonus":0,"Continent":"K55","ID":7801,"Name":"- 306 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7801","ServerKey":"pl181","X":530,"Y":585},{"Bonus":0,"Continent":"K55","ID":7802,"Name":"Z05 Danderyd","PlayerID":699272880,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7802","ServerKey":"pl181","X":561,"Y":524},{"Bonus":0,"Continent":"K44","ID":7803,"Name":"Szlachcic","PlayerID":699098531,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7803","ServerKey":"pl181","X":499,"Y":490},{"Bonus":0,"Continent":"K54","ID":7804,"Name":"021 - Palenque***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7804","ServerKey":"pl181","X":435,"Y":591},{"Bonus":0,"Continent":"K54","ID":7805,"Name":"Village","PlayerID":849094067,"Points":8475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7805","ServerKey":"pl181","X":498,"Y":582},{"Bonus":0,"Continent":"K45","ID":7806,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7806","ServerKey":"pl181","X":500,"Y":430},{"Bonus":0,"Continent":"K55","ID":7807,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7807","ServerKey":"pl181","X":588,"Y":521},{"Bonus":0,"Continent":"K44","ID":7808,"Name":"K44 003","PlayerID":698290577,"Points":7446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7808","ServerKey":"pl181","X":418,"Y":476},{"Bonus":0,"Continent":"K54","ID":7809,"Name":"SsSs","PlayerID":1536625,"Points":9436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7809","ServerKey":"pl181","X":465,"Y":500},{"Bonus":0,"Continent":"K55","ID":7810,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7810","ServerKey":"pl181","X":535,"Y":535},{"Bonus":0,"Continent":"K34","ID":7811,"Name":"Hengfors","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7811","ServerKey":"pl181","X":486,"Y":380},{"Bonus":0,"Continent":"K54","ID":7812,"Name":"F053","PlayerID":699189792,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7812","ServerKey":"pl181","X":493,"Y":516},{"Bonus":0,"Continent":"K54","ID":7813,"Name":"Front_25","PlayerID":2585846,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7813","ServerKey":"pl181","X":455,"Y":528},{"Bonus":9,"Continent":"K54","ID":7814,"Name":"018. ALFI","PlayerID":8539216,"Points":1975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7814","ServerKey":"pl181","X":481,"Y":566},{"Bonus":0,"Continent":"K55","ID":7815,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7815","ServerKey":"pl181","X":519,"Y":546},{"Bonus":0,"Continent":"K44","ID":7816,"Name":"Cast Away 006","PlayerID":698290577,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7816","ServerKey":"pl181","X":450,"Y":489},{"Bonus":0,"Continent":"K56","ID":7817,"Name":"Met4n4boL","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7817","ServerKey":"pl181","X":618,"Y":505},{"Bonus":0,"Continent":"K54","ID":7818,"Name":"NOT?","PlayerID":9236866,"Points":5807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7818","ServerKey":"pl181","X":441,"Y":552},{"Bonus":0,"Continent":"K54","ID":7819,"Name":"Sparta_32","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7819","ServerKey":"pl181","X":489,"Y":575},{"Bonus":0,"Continent":"K54","ID":7820,"Name":"NOT?","PlayerID":9236866,"Points":6763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7820","ServerKey":"pl181","X":424,"Y":530},{"Bonus":0,"Continent":"K45","ID":7821,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7821","ServerKey":"pl181","X":526,"Y":484},{"Bonus":0,"Continent":"K55","ID":7822,"Name":"Xx Pegaz xX","PlayerID":849087855,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7822","ServerKey":"pl181","X":500,"Y":542},{"Bonus":0,"Continent":"K44","ID":7823,"Name":"SsSs","PlayerID":1536625,"Points":8114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7823","ServerKey":"pl181","X":453,"Y":497},{"Bonus":0,"Continent":"K44","ID":7824,"Name":"B057","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7824","ServerKey":"pl181","X":475,"Y":471},{"Bonus":0,"Continent":"K45","ID":7825,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7825","ServerKey":"pl181","X":522,"Y":419},{"Bonus":0,"Continent":"K55","ID":7826,"Name":"CALL 984","PlayerID":699784536,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7826","ServerKey":"pl181","X":546,"Y":571},{"Bonus":0,"Continent":"K54","ID":7827,"Name":"keepo","PlayerID":848967710,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7827","ServerKey":"pl181","X":480,"Y":512},{"Bonus":0,"Continent":"K55","ID":7828,"Name":"Szlachcic 012","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7828","ServerKey":"pl181","X":556,"Y":533},{"Bonus":0,"Continent":"K55","ID":7829,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7829","ServerKey":"pl181","X":520,"Y":575},{"Bonus":0,"Continent":"K55","ID":7830,"Name":"0002","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7830","ServerKey":"pl181","X":510,"Y":518},{"Bonus":0,"Continent":"K54","ID":7831,"Name":"034","PlayerID":2585846,"Points":7008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7831","ServerKey":"pl181","X":478,"Y":521},{"Bonus":0,"Continent":"K54","ID":7832,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7832","ServerKey":"pl181","X":466,"Y":511},{"Bonus":0,"Continent":"K44","ID":7833,"Name":"122.","PlayerID":8788366,"Points":4981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7833","ServerKey":"pl181","X":494,"Y":487},{"Bonus":0,"Continent":"K56","ID":7834,"Name":"SiƂa, Masa, RzeĆșba 14","PlayerID":699379895,"Points":6167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7834","ServerKey":"pl181","X":620,"Y":510},{"Bonus":0,"Continent":"K45","ID":7835,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7835","ServerKey":"pl181","X":576,"Y":496},{"Bonus":0,"Continent":"K54","ID":7836,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7836","ServerKey":"pl181","X":493,"Y":555},{"Bonus":0,"Continent":"K44","ID":7837,"Name":"Suppi","PlayerID":699856962,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7837","ServerKey":"pl181","X":429,"Y":445},{"Bonus":0,"Continent":"K45","ID":7838,"Name":"009 ƚwiętokrzyska","PlayerID":849083501,"Points":4513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7838","ServerKey":"pl181","X":535,"Y":477},{"Bonus":5,"Continent":"K44","ID":7839,"Name":"P Konfederacja","PlayerID":848915730,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7839","ServerKey":"pl181","X":459,"Y":444},{"Bonus":0,"Continent":"K54","ID":7840,"Name":"8. Columbia","PlayerID":698704189,"Points":8779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7840","ServerKey":"pl181","X":459,"Y":560},{"Bonus":0,"Continent":"K54","ID":7841,"Name":"Fajna 038","PlayerID":8539216,"Points":6749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7841","ServerKey":"pl181","X":454,"Y":566},{"Bonus":0,"Continent":"K54","ID":7842,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":8435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7842","ServerKey":"pl181","X":464,"Y":559},{"Bonus":0,"Continent":"K45","ID":7843,"Name":"[101] North1","PlayerID":848985692,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7843","ServerKey":"pl181","X":573,"Y":481},{"Bonus":0,"Continent":"K45","ID":7844,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7844","ServerKey":"pl181","X":534,"Y":428},{"Bonus":0,"Continent":"K55","ID":7845,"Name":"063.","PlayerID":8788366,"Points":7398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7845","ServerKey":"pl181","X":511,"Y":506},{"Bonus":0,"Continent":"K44","ID":7846,"Name":"K44 017","PlayerID":698290577,"Points":8225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7846","ServerKey":"pl181","X":433,"Y":490},{"Bonus":0,"Continent":"K55","ID":7847,"Name":"CALL 948","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7847","ServerKey":"pl181","X":548,"Y":559},{"Bonus":0,"Continent":"K44","ID":7848,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7848","ServerKey":"pl181","X":489,"Y":488},{"Bonus":0,"Continent":"K45","ID":7849,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7849","ServerKey":"pl181","X":584,"Y":494},{"Bonus":0,"Continent":"K54","ID":7850,"Name":"Wioska 10","PlayerID":698971484,"Points":2696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7850","ServerKey":"pl181","X":443,"Y":540},{"Bonus":0,"Continent":"K54","ID":7851,"Name":"A.001","PlayerID":849088243,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7851","ServerKey":"pl181","X":410,"Y":585},{"Bonus":0,"Continent":"K54","ID":7852,"Name":"#028","PlayerID":849001572,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7852","ServerKey":"pl181","X":491,"Y":589},{"Bonus":0,"Continent":"K45","ID":7853,"Name":"[139] North","PlayerID":848985692,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7853","ServerKey":"pl181","X":588,"Y":470},{"Bonus":0,"Continent":"K55","ID":7854,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7854","ServerKey":"pl181","X":532,"Y":517},{"Bonus":0,"Continent":"K45","ID":7855,"Name":"081","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7855","ServerKey":"pl181","X":565,"Y":416},{"Bonus":0,"Continent":"K54","ID":7856,"Name":"047. ALFI","PlayerID":8539216,"Points":1642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7856","ServerKey":"pl181","X":484,"Y":565},{"Bonus":0,"Continent":"K54","ID":7857,"Name":"Majin Buu 005","PlayerID":699054373,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7857","ServerKey":"pl181","X":440,"Y":565},{"Bonus":0,"Continent":"K55","ID":7858,"Name":"[141]","PlayerID":8000875,"Points":9921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7858","ServerKey":"pl181","X":560,"Y":533},{"Bonus":0,"Continent":"K54","ID":7859,"Name":"Pln 001 Busko-ZdrĂłj","PlayerID":849084740,"Points":9128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7859","ServerKey":"pl181","X":421,"Y":565},{"Bonus":0,"Continent":"K55","ID":7860,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7860","ServerKey":"pl181","X":529,"Y":505},{"Bonus":0,"Continent":"K55","ID":7861,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7861","ServerKey":"pl181","X":518,"Y":576},{"Bonus":0,"Continent":"K55","ID":7862,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7862","ServerKey":"pl181","X":538,"Y":502},{"Bonus":0,"Continent":"K54","ID":7863,"Name":"#0130 Kropiwki","PlayerID":9272054,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7863","ServerKey":"pl181","X":483,"Y":548},{"Bonus":0,"Continent":"K55","ID":7864,"Name":"kathare","PlayerID":873575,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7864","ServerKey":"pl181","X":538,"Y":545},{"Bonus":0,"Continent":"K44","ID":7865,"Name":"006 Miami","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7865","ServerKey":"pl181","X":431,"Y":430},{"Bonus":0,"Continent":"K55","ID":7866,"Name":"080.","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7866","ServerKey":"pl181","X":513,"Y":505},{"Bonus":0,"Continent":"K54","ID":7867,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7867","ServerKey":"pl181","X":483,"Y":534},{"Bonus":0,"Continent":"K54","ID":7868,"Name":"015","PlayerID":2585846,"Points":2718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7868","ServerKey":"pl181","X":461,"Y":530},{"Bonus":0,"Continent":"K54","ID":7869,"Name":"B044","PlayerID":8779575,"Points":2327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7869","ServerKey":"pl181","X":430,"Y":547},{"Bonus":6,"Continent":"K44","ID":7870,"Name":"Konfiasze","PlayerID":698908912,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7870","ServerKey":"pl181","X":472,"Y":497},{"Bonus":0,"Continent":"K54","ID":7871,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":6333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7871","ServerKey":"pl181","X":459,"Y":509},{"Bonus":0,"Continent":"K44","ID":7872,"Name":"Szlachcic","PlayerID":699098531,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7872","ServerKey":"pl181","X":499,"Y":469},{"Bonus":0,"Continent":"K55","ID":7873,"Name":"200131","PlayerID":848915531,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7873","ServerKey":"pl181","X":514,"Y":538},{"Bonus":0,"Continent":"K54","ID":7874,"Name":"NOT?","PlayerID":9236866,"Points":2643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7874","ServerKey":"pl181","X":458,"Y":552},{"Bonus":0,"Continent":"K55","ID":7875,"Name":"F055","PlayerID":699189792,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7875","ServerKey":"pl181","X":502,"Y":535},{"Bonus":1,"Continent":"K45","ID":7876,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7876","ServerKey":"pl181","X":582,"Y":489},{"Bonus":0,"Continent":"K44","ID":7877,"Name":"Gravity","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7877","ServerKey":"pl181","X":416,"Y":459},{"Bonus":0,"Continent":"K54","ID":7878,"Name":"NOT?","PlayerID":9236866,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7878","ServerKey":"pl181","X":413,"Y":510},{"Bonus":0,"Continent":"K54","ID":7879,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":7877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7879","ServerKey":"pl181","X":488,"Y":548},{"Bonus":0,"Continent":"K44","ID":7880,"Name":"+44 72 Heyrieux","PlayerID":698361257,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7880","ServerKey":"pl181","X":420,"Y":470},{"Bonus":4,"Continent":"K55","ID":7881,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7881","ServerKey":"pl181","X":526,"Y":561},{"Bonus":0,"Continent":"K45","ID":7882,"Name":"Kula","PlayerID":698477883,"Points":2838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7882","ServerKey":"pl181","X":544,"Y":463},{"Bonus":0,"Continent":"K54","ID":7883,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7883","ServerKey":"pl181","X":465,"Y":512},{"Bonus":0,"Continent":"K55","ID":7884,"Name":"044","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7884","ServerKey":"pl181","X":545,"Y":500},{"Bonus":0,"Continent":"K54","ID":7885,"Name":"szlachcic","PlayerID":698971484,"Points":2152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7885","ServerKey":"pl181","X":442,"Y":541},{"Bonus":0,"Continent":"K45","ID":7886,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7886","ServerKey":"pl181","X":539,"Y":477},{"Bonus":0,"Continent":"K45","ID":7887,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7887","ServerKey":"pl181","X":548,"Y":483},{"Bonus":0,"Continent":"K44","ID":7888,"Name":"Monetki","PlayerID":699098531,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7888","ServerKey":"pl181","X":478,"Y":427},{"Bonus":0,"Continent":"K44","ID":7889,"Name":"B004","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7889","ServerKey":"pl181","X":484,"Y":445},{"Bonus":0,"Continent":"K35","ID":7890,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7890","ServerKey":"pl181","X":522,"Y":384},{"Bonus":0,"Continent":"K55","ID":7891,"Name":"Barad-dur","PlayerID":7581876,"Points":7041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7891","ServerKey":"pl181","X":533,"Y":532},{"Bonus":0,"Continent":"K44","ID":7892,"Name":"009791 Choroszcz","PlayerID":3909522,"Points":7501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7892","ServerKey":"pl181","X":463,"Y":431},{"Bonus":0,"Continent":"K45","ID":7893,"Name":"087","PlayerID":699351301,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7893","ServerKey":"pl181","X":543,"Y":497},{"Bonus":0,"Continent":"K44","ID":7894,"Name":"143 Ciudad Juarez","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7894","ServerKey":"pl181","X":466,"Y":484},{"Bonus":0,"Continent":"K44","ID":7895,"Name":"0063 2 wierzbica","PlayerID":3909522,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7895","ServerKey":"pl181","X":448,"Y":430},{"Bonus":0,"Continent":"K44","ID":7896,"Name":"Osada","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7896","ServerKey":"pl181","X":496,"Y":444},{"Bonus":0,"Continent":"K45","ID":7897,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7897","ServerKey":"pl181","X":504,"Y":473},{"Bonus":0,"Continent":"K54","ID":7898,"Name":"103","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7898","ServerKey":"pl181","X":413,"Y":527},{"Bonus":0,"Continent":"K45","ID":7899,"Name":"Wioska 521","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7899","ServerKey":"pl181","X":556,"Y":463},{"Bonus":0,"Continent":"K45","ID":7900,"Name":"Szlachcic","PlayerID":699098531,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7900","ServerKey":"pl181","X":505,"Y":470},{"Bonus":0,"Continent":"K55","ID":7901,"Name":"k55 Hieronim","PlayerID":698867483,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7901","ServerKey":"pl181","X":543,"Y":538},{"Bonus":0,"Continent":"K45","ID":7902,"Name":"03 Francja","PlayerID":8925695,"Points":8020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7902","ServerKey":"pl181","X":584,"Y":486},{"Bonus":0,"Continent":"K54","ID":7903,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7903","ServerKey":"pl181","X":426,"Y":528},{"Bonus":0,"Continent":"K35","ID":7904,"Name":"076","PlayerID":849063849,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7904","ServerKey":"pl181","X":569,"Y":395},{"Bonus":0,"Continent":"K55","ID":7905,"Name":"[151]","PlayerID":8000875,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7905","ServerKey":"pl181","X":550,"Y":509},{"Bonus":0,"Continent":"K53","ID":7906,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7906","ServerKey":"pl181","X":380,"Y":523},{"Bonus":0,"Continent":"K44","ID":7907,"Name":"Szlachcic","PlayerID":699098531,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7907","ServerKey":"pl181","X":487,"Y":463},{"Bonus":0,"Continent":"K44","ID":7908,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7908","ServerKey":"pl181","X":405,"Y":482},{"Bonus":0,"Continent":"K44","ID":7909,"Name":"SsSs","PlayerID":1536625,"Points":8938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7909","ServerKey":"pl181","X":425,"Y":484},{"Bonus":0,"Continent":"K54","ID":7910,"Name":"045 - B06***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7910","ServerKey":"pl181","X":433,"Y":591},{"Bonus":0,"Continent":"K44","ID":7911,"Name":"016 Fiona","PlayerID":698290577,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7911","ServerKey":"pl181","X":445,"Y":499},{"Bonus":0,"Continent":"K44","ID":7912,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7912","ServerKey":"pl181","X":484,"Y":414},{"Bonus":0,"Continent":"K45","ID":7913,"Name":"Joms 038","PlayerID":699756210,"Points":7930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7913","ServerKey":"pl181","X":544,"Y":422},{"Bonus":0,"Continent":"K54","ID":7914,"Name":"~050.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7914","ServerKey":"pl181","X":489,"Y":552},{"Bonus":0,"Continent":"K54","ID":7915,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7915","ServerKey":"pl181","X":433,"Y":529},{"Bonus":0,"Continent":"K45","ID":7916,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7916","ServerKey":"pl181","X":528,"Y":438},{"Bonus":0,"Continent":"K55","ID":7917,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7917","ServerKey":"pl181","X":524,"Y":555},{"Bonus":0,"Continent":"K44","ID":7918,"Name":"+44 73 Maninghen Henne","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7918","ServerKey":"pl181","X":430,"Y":473},{"Bonus":0,"Continent":"K45","ID":7919,"Name":"Gattacka","PlayerID":699298370,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7919","ServerKey":"pl181","X":583,"Y":482},{"Bonus":0,"Continent":"K54","ID":7920,"Name":"KIELBA 051","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7920","ServerKey":"pl181","X":466,"Y":583},{"Bonus":0,"Continent":"K44","ID":7921,"Name":"-031-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7921","ServerKey":"pl181","X":457,"Y":424},{"Bonus":0,"Continent":"K45","ID":7922,"Name":".achim.","PlayerID":6936607,"Points":5372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7922","ServerKey":"pl181","X":533,"Y":456},{"Bonus":0,"Continent":"K45","ID":7923,"Name":"JK2","PlayerID":699368887,"Points":6550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7923","ServerKey":"pl181","X":560,"Y":448},{"Bonus":0,"Continent":"K45","ID":7924,"Name":"Andrzejownia Pupownia","PlayerID":848986287,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7924","ServerKey":"pl181","X":544,"Y":423},{"Bonus":0,"Continent":"K54","ID":7925,"Name":"046","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7925","ServerKey":"pl181","X":427,"Y":510},{"Bonus":0,"Continent":"K44","ID":7926,"Name":"Szlachcic","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7926","ServerKey":"pl181","X":499,"Y":470},{"Bonus":0,"Continent":"K45","ID":7927,"Name":"-[015]- Gyachung Kang","PlayerID":849092827,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7927","ServerKey":"pl181","X":557,"Y":484},{"Bonus":0,"Continent":"K45","ID":7928,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7928","ServerKey":"pl181","X":564,"Y":444},{"Bonus":0,"Continent":"K44","ID":7929,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7929","ServerKey":"pl181","X":430,"Y":493},{"Bonus":0,"Continent":"K54","ID":7930,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7930","ServerKey":"pl181","X":449,"Y":521},{"Bonus":0,"Continent":"K44","ID":7931,"Name":"K44 006","PlayerID":698290577,"Points":7331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7931","ServerKey":"pl181","X":420,"Y":479},{"Bonus":0,"Continent":"K55","ID":7932,"Name":"048. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7932","ServerKey":"pl181","X":549,"Y":510},{"Bonus":6,"Continent":"K54","ID":7933,"Name":"030","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7933","ServerKey":"pl181","X":421,"Y":523},{"Bonus":0,"Continent":"K54","ID":7934,"Name":"083","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7934","ServerKey":"pl181","X":418,"Y":532},{"Bonus":0,"Continent":"K45","ID":7935,"Name":"030","PlayerID":699788305,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7935","ServerKey":"pl181","X":531,"Y":425},{"Bonus":0,"Continent":"K54","ID":7936,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7936","ServerKey":"pl181","X":498,"Y":563},{"Bonus":0,"Continent":"K55","ID":7937,"Name":"kathare","PlayerID":873575,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7937","ServerKey":"pl181","X":538,"Y":547},{"Bonus":0,"Continent":"K44","ID":7938,"Name":"0086","PlayerID":3909522,"Points":8149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7938","ServerKey":"pl181","X":447,"Y":441},{"Bonus":0,"Continent":"K55","ID":7939,"Name":"Szlachcic 055","PlayerID":758104,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7939","ServerKey":"pl181","X":561,"Y":527},{"Bonus":4,"Continent":"K45","ID":7940,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7940","ServerKey":"pl181","X":519,"Y":499},{"Bonus":0,"Continent":"K65","ID":7941,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7941","ServerKey":"pl181","X":512,"Y":617},{"Bonus":0,"Continent":"K54","ID":7943,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7943","ServerKey":"pl181","X":430,"Y":526},{"Bonus":0,"Continent":"K45","ID":7944,"Name":"Szlachcic","PlayerID":699170684,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7944","ServerKey":"pl181","X":585,"Y":417},{"Bonus":0,"Continent":"K45","ID":7945,"Name":"034","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7945","ServerKey":"pl181","X":584,"Y":466},{"Bonus":0,"Continent":"K45","ID":7946,"Name":"#10.","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7946","ServerKey":"pl181","X":524,"Y":465},{"Bonus":0,"Continent":"K55","ID":7947,"Name":"051. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7947","ServerKey":"pl181","X":543,"Y":516},{"Bonus":0,"Continent":"K55","ID":7949,"Name":"Village","PlayerID":849094067,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7949","ServerKey":"pl181","X":504,"Y":585},{"Bonus":0,"Continent":"K54","ID":7950,"Name":"041. ALFI","PlayerID":8539216,"Points":1367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7950","ServerKey":"pl181","X":468,"Y":571},{"Bonus":0,"Continent":"K45","ID":7951,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7951","ServerKey":"pl181","X":518,"Y":471},{"Bonus":0,"Continent":"K65","ID":7952,"Name":"SkƂad","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7952","ServerKey":"pl181","X":513,"Y":616},{"Bonus":0,"Continent":"K45","ID":7953,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7953","ServerKey":"pl181","X":523,"Y":489},{"Bonus":0,"Continent":"K54","ID":7954,"Name":"Dobranoc","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7954","ServerKey":"pl181","X":423,"Y":545},{"Bonus":0,"Continent":"K54","ID":7955,"Name":"keepo","PlayerID":848967710,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7955","ServerKey":"pl181","X":484,"Y":527},{"Bonus":0,"Continent":"K45","ID":7956,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7956","ServerKey":"pl181","X":520,"Y":466},{"Bonus":0,"Continent":"K54","ID":7957,"Name":"F018","PlayerID":699189792,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7957","ServerKey":"pl181","X":495,"Y":542},{"Bonus":0,"Continent":"K44","ID":7959,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7959","ServerKey":"pl181","X":422,"Y":487},{"Bonus":6,"Continent":"K54","ID":7960,"Name":"041","PlayerID":699510259,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7960","ServerKey":"pl181","X":433,"Y":501},{"Bonus":0,"Continent":"K45","ID":7961,"Name":".achim.","PlayerID":6936607,"Points":10841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7961","ServerKey":"pl181","X":533,"Y":449},{"Bonus":0,"Continent":"K45","ID":7962,"Name":"046","PlayerID":7271812,"Points":6261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7962","ServerKey":"pl181","X":541,"Y":424},{"Bonus":0,"Continent":"K45","ID":7963,"Name":"013 RacƂawicka","PlayerID":8155296,"Points":3540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7963","ServerKey":"pl181","X":537,"Y":468},{"Bonus":0,"Continent":"K44","ID":7964,"Name":"032 Santa Barbara","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7964","ServerKey":"pl181","X":441,"Y":461},{"Bonus":0,"Continent":"K54","ID":7965,"Name":"KIELBA 073","PlayerID":699342219,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7965","ServerKey":"pl181","X":471,"Y":580},{"Bonus":0,"Continent":"K44","ID":7966,"Name":"+44 61 Lyon Gerland","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7966","ServerKey":"pl181","X":417,"Y":462},{"Bonus":0,"Continent":"K45","ID":7967,"Name":".achim.","PlayerID":6936607,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7967","ServerKey":"pl181","X":557,"Y":443},{"Bonus":0,"Continent":"K56","ID":7968,"Name":"02 Skrable","PlayerID":699377151,"Points":8865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7968","ServerKey":"pl181","X":617,"Y":504},{"Bonus":0,"Continent":"K54","ID":7969,"Name":"Suppi","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7969","ServerKey":"pl181","X":438,"Y":515},{"Bonus":0,"Continent":"K45","ID":7970,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":7503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7970","ServerKey":"pl181","X":514,"Y":465},{"Bonus":0,"Continent":"K45","ID":7971,"Name":"-[030]- Dhaulagiri II","PlayerID":849092827,"Points":7050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7971","ServerKey":"pl181","X":551,"Y":494},{"Bonus":0,"Continent":"K44","ID":7972,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7972","ServerKey":"pl181","X":494,"Y":490},{"Bonus":0,"Continent":"K54","ID":7973,"Name":"Fajna 017","PlayerID":698971484,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7973","ServerKey":"pl181","X":449,"Y":555},{"Bonus":0,"Continent":"K54","ID":7974,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7974","ServerKey":"pl181","X":480,"Y":539},{"Bonus":0,"Continent":"K54","ID":7975,"Name":"kathare","PlayerID":873575,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7975","ServerKey":"pl181","X":497,"Y":572},{"Bonus":0,"Continent":"K45","ID":7976,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7976","ServerKey":"pl181","X":526,"Y":434},{"Bonus":0,"Continent":"K54","ID":7977,"Name":"TROJA.14","PlayerID":8438707,"Points":8661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7977","ServerKey":"pl181","X":460,"Y":578},{"Bonus":0,"Continent":"K54","ID":7978,"Name":"WINTER IS COMING","PlayerID":1536625,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7978","ServerKey":"pl181","X":472,"Y":504},{"Bonus":0,"Continent":"K55","ID":7979,"Name":"CALL 1079","PlayerID":699784536,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7979","ServerKey":"pl181","X":540,"Y":544},{"Bonus":0,"Continent":"K55","ID":7980,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7980","ServerKey":"pl181","X":514,"Y":581},{"Bonus":0,"Continent":"K45","ID":7981,"Name":"[093]","PlayerID":848985692,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7981","ServerKey":"pl181","X":532,"Y":496},{"Bonus":0,"Continent":"K55","ID":7982,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7982","ServerKey":"pl181","X":581,"Y":514},{"Bonus":0,"Continent":"K44","ID":7983,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7983","ServerKey":"pl181","X":491,"Y":428},{"Bonus":0,"Continent":"K54","ID":7984,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7984","ServerKey":"pl181","X":411,"Y":510},{"Bonus":0,"Continent":"K44","ID":7985,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7985","ServerKey":"pl181","X":421,"Y":462},{"Bonus":0,"Continent":"K44","ID":7986,"Name":"00851","PlayerID":3909522,"Points":8213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7986","ServerKey":"pl181","X":440,"Y":441},{"Bonus":0,"Continent":"K45","ID":7987,"Name":"026 co ja tu robie 2","PlayerID":8459255,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7987","ServerKey":"pl181","X":582,"Y":480},{"Bonus":0,"Continent":"K54","ID":7988,"Name":"Sparta_69","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7988","ServerKey":"pl181","X":469,"Y":583},{"Bonus":0,"Continent":"K45","ID":7989,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7989","ServerKey":"pl181","X":577,"Y":487},{"Bonus":2,"Continent":"K55","ID":7990,"Name":"0006 K55 and987 OZDR.","PlayerID":3613413,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7990","ServerKey":"pl181","X":501,"Y":558},{"Bonus":0,"Continent":"K55","ID":7991,"Name":"yogi","PlayerID":2808172,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7991","ServerKey":"pl181","X":525,"Y":533},{"Bonus":0,"Continent":"K54","ID":7992,"Name":"#0141 Reptilianin","PlayerID":9272054,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7992","ServerKey":"pl181","X":497,"Y":553},{"Bonus":0,"Continent":"K45","ID":7993,"Name":"Wioska barbarzyƄska","PlayerID":8649412,"Points":2904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7993","ServerKey":"pl181","X":514,"Y":421},{"Bonus":0,"Continent":"K44","ID":7994,"Name":"125 Cancun","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7994","ServerKey":"pl181","X":479,"Y":486},{"Bonus":0,"Continent":"K45","ID":7995,"Name":"Zochcinek f?","PlayerID":8155296,"Points":8464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7995","ServerKey":"pl181","X":536,"Y":468},{"Bonus":0,"Continent":"K45","ID":7996,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7996","ServerKey":"pl181","X":500,"Y":429},{"Bonus":0,"Continent":"K55","ID":7997,"Name":"099","PlayerID":699351301,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7997","ServerKey":"pl181","X":552,"Y":506},{"Bonus":0,"Continent":"K45","ID":7998,"Name":"ERIADOR","PlayerID":8155296,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7998","ServerKey":"pl181","X":535,"Y":468},{"Bonus":0,"Continent":"K45","ID":7999,"Name":".:005:. Chillout","PlayerID":848934935,"Points":6383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=7999","ServerKey":"pl181","X":514,"Y":431},{"Bonus":0,"Continent":"K54","ID":8001,"Name":"Sparta_47","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8001","ServerKey":"pl181","X":483,"Y":582},{"Bonus":9,"Continent":"K55","ID":8002,"Name":".....","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8002","ServerKey":"pl181","X":544,"Y":549},{"Bonus":0,"Continent":"K45","ID":8003,"Name":"! Szczęƛliwego Nowego Roku:)","PlayerID":477415,"Points":6527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8003","ServerKey":"pl181","X":553,"Y":463},{"Bonus":0,"Continent":"K45","ID":8004,"Name":"064","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8004","ServerKey":"pl181","X":587,"Y":478},{"Bonus":7,"Continent":"K54","ID":8005,"Name":"Mniejsze zƂo 0058","PlayerID":699794765,"Points":8400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8005","ServerKey":"pl181","X":415,"Y":507},{"Bonus":0,"Continent":"K45","ID":8006,"Name":"#MaƂeOrzeszki","PlayerID":699795378,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8006","ServerKey":"pl181","X":571,"Y":456},{"Bonus":0,"Continent":"K55","ID":8007,"Name":"Ten stan","PlayerID":699785935,"Points":6941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8007","ServerKey":"pl181","X":515,"Y":511},{"Bonus":0,"Continent":"K55","ID":8008,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8008","ServerKey":"pl181","X":537,"Y":507},{"Bonus":0,"Continent":"K55","ID":8009,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8009","ServerKey":"pl181","X":515,"Y":560},{"Bonus":0,"Continent":"K44","ID":8010,"Name":"B019","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8010","ServerKey":"pl181","X":484,"Y":451},{"Bonus":0,"Continent":"K45","ID":8011,"Name":"C016","PlayerID":699299123,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8011","ServerKey":"pl181","X":516,"Y":458},{"Bonus":0,"Continent":"K55","ID":8012,"Name":"Wioska Szpanerq","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8012","ServerKey":"pl181","X":523,"Y":561},{"Bonus":0,"Continent":"K44","ID":8013,"Name":"+44 73 Pierre Benite","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8013","ServerKey":"pl181","X":432,"Y":476},{"Bonus":0,"Continent":"K54","ID":8014,"Name":"Sparta_51","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8014","ServerKey":"pl181","X":480,"Y":583},{"Bonus":0,"Continent":"K55","ID":8015,"Name":"Szlachcic 057","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8015","ServerKey":"pl181","X":573,"Y":520},{"Bonus":0,"Continent":"K45","ID":8016,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8016","ServerKey":"pl181","X":511,"Y":484},{"Bonus":0,"Continent":"K44","ID":8017,"Name":"017","PlayerID":699510259,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8017","ServerKey":"pl181","X":426,"Y":488},{"Bonus":0,"Continent":"K55","ID":8018,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8018","ServerKey":"pl181","X":530,"Y":548},{"Bonus":0,"Continent":"K54","ID":8020,"Name":"0650","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8020","ServerKey":"pl181","X":476,"Y":549},{"Bonus":0,"Continent":"K45","ID":8021,"Name":".:124:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8021","ServerKey":"pl181","X":519,"Y":413},{"Bonus":0,"Continent":"K44","ID":8022,"Name":"PRO8L3M","PlayerID":7491093,"Points":9610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8022","ServerKey":"pl181","X":467,"Y":490},{"Bonus":0,"Continent":"K45","ID":8023,"Name":"047.","PlayerID":849094609,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8023","ServerKey":"pl181","X":549,"Y":475},{"Bonus":0,"Continent":"K55","ID":8024,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8024","ServerKey":"pl181","X":580,"Y":539},{"Bonus":0,"Continent":"K45","ID":8025,"Name":"C025","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8025","ServerKey":"pl181","X":519,"Y":458},{"Bonus":9,"Continent":"K44","ID":8026,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8026","ServerKey":"pl181","X":435,"Y":449},{"Bonus":0,"Continent":"K54","ID":8027,"Name":"076. ALFI","PlayerID":8539216,"Points":1364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8027","ServerKey":"pl181","X":486,"Y":562},{"Bonus":0,"Continent":"K45","ID":8028,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8028","ServerKey":"pl181","X":521,"Y":469},{"Bonus":0,"Continent":"K54","ID":8029,"Name":"Winter is coming","PlayerID":698971484,"Points":2018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8029","ServerKey":"pl181","X":439,"Y":549},{"Bonus":0,"Continent":"K45","ID":8030,"Name":"Szlachcic","PlayerID":699098531,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8030","ServerKey":"pl181","X":505,"Y":457},{"Bonus":0,"Continent":"K54","ID":8031,"Name":"F025","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8031","ServerKey":"pl181","X":496,"Y":529},{"Bonus":0,"Continent":"K55","ID":8032,"Name":"[152]","PlayerID":8000875,"Points":8094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8032","ServerKey":"pl181","X":561,"Y":540},{"Bonus":0,"Continent":"K55","ID":8033,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8033","ServerKey":"pl181","X":573,"Y":506},{"Bonus":0,"Continent":"K45","ID":8034,"Name":".achim.","PlayerID":6936607,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8034","ServerKey":"pl181","X":529,"Y":453},{"Bonus":0,"Continent":"K45","ID":8035,"Name":"[118] North18","PlayerID":848985692,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8035","ServerKey":"pl181","X":579,"Y":473},{"Bonus":0,"Continent":"K54","ID":8036,"Name":"COUSINS","PlayerID":699364813,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8036","ServerKey":"pl181","X":490,"Y":585},{"Bonus":0,"Continent":"K54","ID":8037,"Name":"Mniejsze zƂo 0064","PlayerID":699794765,"Points":6504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8037","ServerKey":"pl181","X":418,"Y":504},{"Bonus":0,"Continent":"K54","ID":8038,"Name":"*Ateny_03","PlayerID":698971484,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8038","ServerKey":"pl181","X":472,"Y":536},{"Bonus":0,"Continent":"K55","ID":8039,"Name":"CALL 966","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8039","ServerKey":"pl181","X":547,"Y":567},{"Bonus":0,"Continent":"K55","ID":8040,"Name":"008. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8040","ServerKey":"pl181","X":586,"Y":528},{"Bonus":0,"Continent":"K55","ID":8041,"Name":"Gattacka","PlayerID":699298370,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8041","ServerKey":"pl181","X":585,"Y":502},{"Bonus":3,"Continent":"K45","ID":8042,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8042","ServerKey":"pl181","X":540,"Y":423},{"Bonus":0,"Continent":"K46","ID":8043,"Name":"001","PlayerID":849091105,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8043","ServerKey":"pl181","X":619,"Y":496},{"Bonus":0,"Continent":"K44","ID":8044,"Name":"B005","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8044","ServerKey":"pl181","X":483,"Y":443},{"Bonus":0,"Continent":"K44","ID":8045,"Name":"+44 62 Condette","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8045","ServerKey":"pl181","X":422,"Y":469},{"Bonus":0,"Continent":"K55","ID":8046,"Name":"033. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8046","ServerKey":"pl181","X":570,"Y":534},{"Bonus":2,"Continent":"K45","ID":8047,"Name":"0021 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8047","ServerKey":"pl181","X":559,"Y":483},{"Bonus":0,"Continent":"K44","ID":8048,"Name":"129 Playa Del Carmen","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8048","ServerKey":"pl181","X":465,"Y":485},{"Bonus":0,"Continent":"K55","ID":8049,"Name":"Wioska 422","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8049","ServerKey":"pl181","X":563,"Y":507},{"Bonus":6,"Continent":"K45","ID":8050,"Name":"BBB","PlayerID":1006847,"Points":7628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8050","ServerKey":"pl181","X":557,"Y":440},{"Bonus":0,"Continent":"K56","ID":8051,"Name":"C004 Kamigata","PlayerID":8096537,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8051","ServerKey":"pl181","X":606,"Y":559},{"Bonus":0,"Continent":"K55","ID":8052,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8052","ServerKey":"pl181","X":588,"Y":514},{"Bonus":0,"Continent":"K55","ID":8053,"Name":"Winter is coming","PlayerID":699364813,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8053","ServerKey":"pl181","X":504,"Y":582},{"Bonus":0,"Continent":"K55","ID":8054,"Name":"Winter is coming","PlayerID":699364813,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8054","ServerKey":"pl181","X":506,"Y":586},{"Bonus":0,"Continent":"K44","ID":8055,"Name":"PRO8L3M","PlayerID":7491093,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8055","ServerKey":"pl181","X":455,"Y":495},{"Bonus":0,"Continent":"K44","ID":8056,"Name":"0095","PlayerID":3909522,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8056","ServerKey":"pl181","X":458,"Y":438},{"Bonus":0,"Continent":"K45","ID":8057,"Name":"013","PlayerID":849063849,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8057","ServerKey":"pl181","X":560,"Y":404},{"Bonus":0,"Continent":"K54","ID":8058,"Name":"FF008","PlayerID":699189792,"Points":6581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8058","ServerKey":"pl181","X":470,"Y":516},{"Bonus":0,"Continent":"K54","ID":8059,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":4702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8059","ServerKey":"pl181","X":429,"Y":500},{"Bonus":0,"Continent":"K45","ID":8060,"Name":"103 NiemiƂe zaskoczenie","PlayerID":7092442,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8060","ServerKey":"pl181","X":542,"Y":459},{"Bonus":0,"Continent":"K45","ID":8061,"Name":"032","PlayerID":8459255,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8061","ServerKey":"pl181","X":595,"Y":470},{"Bonus":1,"Continent":"K54","ID":8062,"Name":"004 eQNares","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8062","ServerKey":"pl181","X":488,"Y":547},{"Bonus":0,"Continent":"K45","ID":8063,"Name":".achim.","PlayerID":6936607,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8063","ServerKey":"pl181","X":531,"Y":456},{"Bonus":0,"Continent":"K54","ID":8064,"Name":"~048.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8064","ServerKey":"pl181","X":480,"Y":560},{"Bonus":0,"Continent":"K34","ID":8065,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8065","ServerKey":"pl181","X":469,"Y":388},{"Bonus":0,"Continent":"K54","ID":8066,"Name":"Front_07","PlayerID":2585846,"Points":2631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8066","ServerKey":"pl181","X":461,"Y":523},{"Bonus":1,"Continent":"K55","ID":8067,"Name":"- 093 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8067","ServerKey":"pl181","X":539,"Y":575},{"Bonus":0,"Continent":"K44","ID":8068,"Name":"Monetki","PlayerID":699098531,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8068","ServerKey":"pl181","X":472,"Y":429},{"Bonus":0,"Continent":"K44","ID":8069,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8069","ServerKey":"pl181","X":485,"Y":461},{"Bonus":0,"Continent":"K44","ID":8070,"Name":"0063 M","PlayerID":3909522,"Points":5290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8070","ServerKey":"pl181","X":453,"Y":430},{"Bonus":0,"Continent":"K54","ID":8071,"Name":"KIELBA 070","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8071","ServerKey":"pl181","X":473,"Y":577},{"Bonus":0,"Continent":"K54","ID":8072,"Name":"064","PlayerID":699510259,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8072","ServerKey":"pl181","X":439,"Y":501},{"Bonus":0,"Continent":"K54","ID":8073,"Name":"Wioska barbarzyƄska","PlayerID":3909522,"Points":2659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8073","ServerKey":"pl181","X":453,"Y":535},{"Bonus":0,"Continent":"K55","ID":8074,"Name":"026","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8074","ServerKey":"pl181","X":529,"Y":572},{"Bonus":0,"Continent":"K54","ID":8075,"Name":"0002Loarderon","PlayerID":9167250,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8075","ServerKey":"pl181","X":422,"Y":577},{"Bonus":0,"Continent":"K45","ID":8076,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8076","ServerKey":"pl181","X":516,"Y":411},{"Bonus":0,"Continent":"K44","ID":8077,"Name":"Wioska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8077","ServerKey":"pl181","X":408,"Y":418},{"Bonus":0,"Continent":"K44","ID":8078,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8078","ServerKey":"pl181","X":428,"Y":446},{"Bonus":0,"Continent":"K55","ID":8079,"Name":"[094]","PlayerID":8000875,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8079","ServerKey":"pl181","X":562,"Y":541},{"Bonus":0,"Continent":"K55","ID":8080,"Name":"005 | Lord Axen - its coming!","PlayerID":8000875,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8080","ServerKey":"pl181","X":563,"Y":554},{"Bonus":0,"Continent":"K44","ID":8081,"Name":"K44 001","PlayerID":698290577,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8081","ServerKey":"pl181","X":417,"Y":476},{"Bonus":0,"Continent":"K45","ID":8082,"Name":"110.","PlayerID":8788366,"Points":8740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8082","ServerKey":"pl181","X":507,"Y":485},{"Bonus":0,"Continent":"K54","ID":8083,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8083","ServerKey":"pl181","X":479,"Y":587},{"Bonus":6,"Continent":"K45","ID":8084,"Name":"057 |","PlayerID":8000875,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8084","ServerKey":"pl181","X":550,"Y":499},{"Bonus":0,"Continent":"K44","ID":8085,"Name":"Suppi","PlayerID":699856962,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8085","ServerKey":"pl181","X":445,"Y":449},{"Bonus":0,"Continent":"K44","ID":8086,"Name":"179 Caracas","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8086","ServerKey":"pl181","X":468,"Y":457},{"Bonus":0,"Continent":"K44","ID":8087,"Name":"Brat447","PlayerID":699262350,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8087","ServerKey":"pl181","X":446,"Y":492},{"Bonus":0,"Continent":"K45","ID":8088,"Name":"Joms 017","PlayerID":699756210,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8088","ServerKey":"pl181","X":523,"Y":415},{"Bonus":0,"Continent":"K54","ID":8089,"Name":"Front_33","PlayerID":2585846,"Points":3843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8089","ServerKey":"pl181","X":454,"Y":520},{"Bonus":0,"Continent":"K54","ID":8090,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":1988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8090","ServerKey":"pl181","X":454,"Y":538},{"Bonus":0,"Continent":"K55","ID":8091,"Name":"[093]","PlayerID":8000875,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8091","ServerKey":"pl181","X":552,"Y":500},{"Bonus":0,"Continent":"K55","ID":8092,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8092","ServerKey":"pl181","X":522,"Y":566},{"Bonus":0,"Continent":"K44","ID":8093,"Name":"Joanna","PlayerID":699658023,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8093","ServerKey":"pl181","X":497,"Y":411},{"Bonus":0,"Continent":"K54","ID":8094,"Name":"2. GW e100 !!!","PlayerID":849087855,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8094","ServerKey":"pl181","X":489,"Y":539},{"Bonus":0,"Continent":"K45","ID":8095,"Name":"A059","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8095","ServerKey":"pl181","X":504,"Y":422},{"Bonus":0,"Continent":"K45","ID":8096,"Name":"027 co ja tu robie 3","PlayerID":8459255,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8096","ServerKey":"pl181","X":584,"Y":480},{"Bonus":0,"Continent":"K44","ID":8097,"Name":"130 Merida","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8097","ServerKey":"pl181","X":483,"Y":491},{"Bonus":0,"Continent":"K55","ID":8098,"Name":"Yogi","PlayerID":2808172,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8098","ServerKey":"pl181","X":512,"Y":548},{"Bonus":0,"Continent":"K54","ID":8099,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8099","ServerKey":"pl181","X":444,"Y":519},{"Bonus":0,"Continent":"K45","ID":8100,"Name":"9.2 San Francisco","PlayerID":8444356,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8100","ServerKey":"pl181","X":536,"Y":432},{"Bonus":0,"Continent":"K44","ID":8101,"Name":"SsSs","PlayerID":1536625,"Points":7424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8101","ServerKey":"pl181","X":420,"Y":494},{"Bonus":0,"Continent":"K45","ID":8102,"Name":".:022:. Misa","PlayerID":8649412,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8102","ServerKey":"pl181","X":507,"Y":411},{"Bonus":0,"Continent":"K45","ID":8103,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8103","ServerKey":"pl181","X":506,"Y":426},{"Bonus":0,"Continent":"K55","ID":8104,"Name":"029. Wioska Groovyq","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8104","ServerKey":"pl181","X":552,"Y":516},{"Bonus":0,"Continent":"K35","ID":8105,"Name":"008 Pusta Xd","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8105","ServerKey":"pl181","X":554,"Y":389},{"Bonus":0,"Continent":"K44","ID":8106,"Name":"Szlachcic","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8106","ServerKey":"pl181","X":484,"Y":462},{"Bonus":0,"Continent":"K45","ID":8107,"Name":"Osada","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8107","ServerKey":"pl181","X":501,"Y":444},{"Bonus":0,"Continent":"K44","ID":8108,"Name":"Szlachcic","PlayerID":699098531,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8108","ServerKey":"pl181","X":493,"Y":470},{"Bonus":0,"Continent":"K55","ID":8109,"Name":"Gattacka","PlayerID":699298370,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8109","ServerKey":"pl181","X":570,"Y":501},{"Bonus":0,"Continent":"K54","ID":8110,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8110","ServerKey":"pl181","X":416,"Y":519},{"Bonus":0,"Continent":"K44","ID":8111,"Name":"196 Sucre","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8111","ServerKey":"pl181","X":467,"Y":461},{"Bonus":2,"Continent":"K55","ID":8112,"Name":"025 |","PlayerID":8000875,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8112","ServerKey":"pl181","X":567,"Y":558},{"Bonus":0,"Continent":"K54","ID":8113,"Name":"F015","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8113","ServerKey":"pl181","X":488,"Y":536},{"Bonus":0,"Continent":"K54","ID":8114,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8114","ServerKey":"pl181","X":451,"Y":520},{"Bonus":0,"Continent":"K55","ID":8115,"Name":"CALL 994","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8115","ServerKey":"pl181","X":543,"Y":544},{"Bonus":0,"Continent":"K55","ID":8116,"Name":"ladyanima","PlayerID":699703642,"Points":8788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8116","ServerKey":"pl181","X":513,"Y":576},{"Bonus":0,"Continent":"K44","ID":8117,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":11970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8117","ServerKey":"pl181","X":417,"Y":483},{"Bonus":0,"Continent":"K45","ID":8118,"Name":".:084:. Takmahal","PlayerID":848934935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8118","ServerKey":"pl181","X":540,"Y":444},{"Bonus":0,"Continent":"K44","ID":8119,"Name":"158 Belize City","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8119","ServerKey":"pl181","X":454,"Y":461},{"Bonus":0,"Continent":"K45","ID":8120,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8120","ServerKey":"pl181","X":543,"Y":478},{"Bonus":0,"Continent":"K44","ID":8121,"Name":"?+44 76 Cormont","PlayerID":698361257,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8121","ServerKey":"pl181","X":464,"Y":476},{"Bonus":0,"Continent":"K55","ID":8122,"Name":"!Wioska 425","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8122","ServerKey":"pl181","X":568,"Y":501},{"Bonus":0,"Continent":"K54","ID":8123,"Name":"NOT?","PlayerID":9236866,"Points":9591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8123","ServerKey":"pl181","X":432,"Y":540},{"Bonus":0,"Continent":"K55","ID":8124,"Name":"- 314 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8124","ServerKey":"pl181","X":525,"Y":586},{"Bonus":0,"Continent":"K54","ID":8125,"Name":"Teatr","PlayerID":7249451,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8125","ServerKey":"pl181","X":436,"Y":568},{"Bonus":0,"Continent":"K55","ID":8126,"Name":"CALL 998","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8126","ServerKey":"pl181","X":541,"Y":540},{"Bonus":0,"Continent":"K44","ID":8127,"Name":"-032-","PlayerID":9291984,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8127","ServerKey":"pl181","X":458,"Y":430},{"Bonus":0,"Continent":"K54","ID":8128,"Name":"Ateny_79","PlayerID":2585846,"Points":1073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8128","ServerKey":"pl181","X":472,"Y":523},{"Bonus":0,"Continent":"K55","ID":8129,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8129","ServerKey":"pl181","X":529,"Y":541},{"Bonus":0,"Continent":"K44","ID":8130,"Name":"+44 63 Coudekerque","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8130","ServerKey":"pl181","X":434,"Y":468},{"Bonus":0,"Continent":"K45","ID":8131,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":4739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8131","ServerKey":"pl181","X":503,"Y":417},{"Bonus":2,"Continent":"K45","ID":8132,"Name":"Gliniok","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8132","ServerKey":"pl181","X":541,"Y":476},{"Bonus":0,"Continent":"K54","ID":8133,"Name":"Oldschool","PlayerID":699443920,"Points":9683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8133","ServerKey":"pl181","X":442,"Y":556},{"Bonus":0,"Continent":"K55","ID":8134,"Name":"20014","PlayerID":848915531,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8134","ServerKey":"pl181","X":532,"Y":541},{"Bonus":0,"Continent":"K55","ID":8135,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8135","ServerKey":"pl181","X":582,"Y":505},{"Bonus":0,"Continent":"K44","ID":8136,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8136","ServerKey":"pl181","X":492,"Y":487},{"Bonus":0,"Continent":"K55","ID":8137,"Name":"Szlachcic","PlayerID":699759128,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8137","ServerKey":"pl181","X":584,"Y":500},{"Bonus":0,"Continent":"K45","ID":8138,"Name":"002","PlayerID":699099811,"Points":8712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8138","ServerKey":"pl181","X":565,"Y":489},{"Bonus":0,"Continent":"K44","ID":8139,"Name":"042 Anchorage","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8139","ServerKey":"pl181","X":465,"Y":467},{"Bonus":0,"Continent":"K45","ID":8140,"Name":"[187]","PlayerID":848985692,"Points":6647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8140","ServerKey":"pl181","X":531,"Y":496},{"Bonus":0,"Continent":"K55","ID":8141,"Name":"P.025","PlayerID":873575,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8141","ServerKey":"pl181","X":535,"Y":568},{"Bonus":0,"Continent":"K54","ID":8142,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8142","ServerKey":"pl181","X":447,"Y":528},{"Bonus":0,"Continent":"K55","ID":8143,"Name":"045. A-RE-SE-EY","PlayerID":848967710,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8143","ServerKey":"pl181","X":564,"Y":520},{"Bonus":0,"Continent":"K54","ID":8144,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":8121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8144","ServerKey":"pl181","X":463,"Y":561},{"Bonus":0,"Continent":"K45","ID":8145,"Name":"slow","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8145","ServerKey":"pl181","X":534,"Y":487},{"Bonus":5,"Continent":"K45","ID":8146,"Name":"Gattacka","PlayerID":699298370,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8146","ServerKey":"pl181","X":580,"Y":499},{"Bonus":0,"Continent":"K46","ID":8147,"Name":"001. Roma","PlayerID":849091866,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8147","ServerKey":"pl181","X":611,"Y":461},{"Bonus":0,"Continent":"K54","ID":8148,"Name":"Front_09","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8148","ServerKey":"pl181","X":459,"Y":522},{"Bonus":0,"Continent":"K45","ID":8149,"Name":"A055","PlayerID":699299123,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8149","ServerKey":"pl181","X":502,"Y":423},{"Bonus":0,"Continent":"K44","ID":8150,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8150","ServerKey":"pl181","X":494,"Y":425},{"Bonus":0,"Continent":"K55","ID":8151,"Name":"Erebor","PlayerID":849091897,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8151","ServerKey":"pl181","X":507,"Y":513},{"Bonus":0,"Continent":"K55","ID":8152,"Name":"028. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8152","ServerKey":"pl181","X":576,"Y":535},{"Bonus":0,"Continent":"K44","ID":8153,"Name":"072.","PlayerID":8788366,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8153","ServerKey":"pl181","X":482,"Y":491},{"Bonus":0,"Continent":"K45","ID":8154,"Name":"106 Nieuczciwe praktyki rynkowe","PlayerID":7092442,"Points":7658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8154","ServerKey":"pl181","X":544,"Y":460},{"Bonus":0,"Continent":"K54","ID":8155,"Name":"0155","PlayerID":698659980,"Points":6987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8155","ServerKey":"pl181","X":461,"Y":549},{"Bonus":0,"Continent":"K45","ID":8156,"Name":"ADEN","PlayerID":698588535,"Points":6753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8156","ServerKey":"pl181","X":561,"Y":435},{"Bonus":0,"Continent":"K45","ID":8157,"Name":"086.","PlayerID":849094609,"Points":7582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8157","ServerKey":"pl181","X":584,"Y":476},{"Bonus":0,"Continent":"K45","ID":8158,"Name":"049 Boƛnia i Hercegowina","PlayerID":7092442,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8158","ServerKey":"pl181","X":584,"Y":478},{"Bonus":0,"Continent":"K45","ID":8159,"Name":"ADEN","PlayerID":698588535,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8159","ServerKey":"pl181","X":566,"Y":438},{"Bonus":0,"Continent":"K54","ID":8160,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8160","ServerKey":"pl181","X":483,"Y":538},{"Bonus":0,"Continent":"K54","ID":8161,"Name":"0Wioska barbarzyƄska","PlayerID":699781762,"Points":3432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8161","ServerKey":"pl181","X":473,"Y":516},{"Bonus":0,"Continent":"K44","ID":8162,"Name":"?+44 76 Toussieu","PlayerID":698361257,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8162","ServerKey":"pl181","X":463,"Y":473},{"Bonus":0,"Continent":"K44","ID":8163,"Name":"Konfiasze","PlayerID":698908912,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8163","ServerKey":"pl181","X":479,"Y":498},{"Bonus":0,"Continent":"K54","ID":8164,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8164","ServerKey":"pl181","X":450,"Y":524},{"Bonus":0,"Continent":"K44","ID":8165,"Name":"Brat447","PlayerID":699262350,"Points":5053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8165","ServerKey":"pl181","X":444,"Y":488},{"Bonus":0,"Continent":"K54","ID":8166,"Name":"*Ateny_30","PlayerID":699333701,"Points":2047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8166","ServerKey":"pl181","X":464,"Y":522},{"Bonus":0,"Continent":"K44","ID":8167,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8167","ServerKey":"pl181","X":433,"Y":469},{"Bonus":0,"Continent":"K45","ID":8168,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8168","ServerKey":"pl181","X":516,"Y":428},{"Bonus":0,"Continent":"K55","ID":8169,"Name":"[099]","PlayerID":8000875,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8169","ServerKey":"pl181","X":551,"Y":539},{"Bonus":0,"Continent":"K55","ID":8170,"Name":"028","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8170","ServerKey":"pl181","X":527,"Y":573},{"Bonus":0,"Continent":"K55","ID":8171,"Name":"Z06 Nokia","PlayerID":699272880,"Points":10185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8171","ServerKey":"pl181","X":559,"Y":525},{"Bonus":0,"Continent":"K44","ID":8172,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8172","ServerKey":"pl181","X":448,"Y":447},{"Bonus":0,"Continent":"K44","ID":8173,"Name":"104 Calgary","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8173","ServerKey":"pl181","X":470,"Y":481},{"Bonus":0,"Continent":"K54","ID":8174,"Name":"Osada C","PlayerID":698971484,"Points":10504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8174","ServerKey":"pl181","X":450,"Y":534},{"Bonus":8,"Continent":"K54","ID":8175,"Name":"012. ALFI","PlayerID":8539216,"Points":2276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8175","ServerKey":"pl181","X":480,"Y":567},{"Bonus":0,"Continent":"K45","ID":8176,"Name":"052 Chorwacja","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8176","ServerKey":"pl181","X":580,"Y":463},{"Bonus":0,"Continent":"K54","ID":8177,"Name":"#0072 Marian","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8177","ServerKey":"pl181","X":485,"Y":546},{"Bonus":0,"Continent":"K54","ID":8178,"Name":"F082","PlayerID":699189792,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8178","ServerKey":"pl181","X":488,"Y":524},{"Bonus":0,"Continent":"K45","ID":8179,"Name":"MasteroN 04","PlayerID":699379895,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8179","ServerKey":"pl181","X":565,"Y":449},{"Bonus":0,"Continent":"K45","ID":8180,"Name":"074","PlayerID":699573053,"Points":10421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8180","ServerKey":"pl181","X":592,"Y":466},{"Bonus":0,"Continent":"K54","ID":8181,"Name":"Kolbudy","PlayerID":699856962,"Points":5491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8181","ServerKey":"pl181","X":436,"Y":539},{"Bonus":0,"Continent":"K54","ID":8182,"Name":"Wioska barbarzyƄska","PlayerID":699698253,"Points":2993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8182","ServerKey":"pl181","X":457,"Y":535},{"Bonus":0,"Continent":"K44","ID":8183,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8183","ServerKey":"pl181","X":462,"Y":420},{"Bonus":0,"Continent":"K44","ID":8184,"Name":"P Konfederacja","PlayerID":848915730,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8184","ServerKey":"pl181","X":460,"Y":456},{"Bonus":0,"Continent":"K45","ID":8185,"Name":".:061:. Chillout","PlayerID":848934935,"Points":2826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8185","ServerKey":"pl181","X":517,"Y":432},{"Bonus":0,"Continent":"K54","ID":8186,"Name":"015","PlayerID":848886870,"Points":9047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8186","ServerKey":"pl181","X":465,"Y":578},{"Bonus":0,"Continent":"K44","ID":8187,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8187","ServerKey":"pl181","X":413,"Y":494},{"Bonus":0,"Continent":"K44","ID":8188,"Name":"00611","PlayerID":3909522,"Points":6902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8188","ServerKey":"pl181","X":445,"Y":437},{"Bonus":0,"Continent":"K54","ID":8189,"Name":"Ateny_44","PlayerID":2585846,"Points":9261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8189","ServerKey":"pl181","X":471,"Y":530},{"Bonus":2,"Continent":"K45","ID":8190,"Name":"005 koczownikĂłw","PlayerID":9238175,"Points":10349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8190","ServerKey":"pl181","X":587,"Y":480},{"Bonus":0,"Continent":"K44","ID":8191,"Name":"Fresio","PlayerID":699660539,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8191","ServerKey":"pl181","X":450,"Y":449},{"Bonus":0,"Continent":"K44","ID":8192,"Name":"0063 b4 Wioska bb","PlayerID":3909522,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8192","ServerKey":"pl181","X":449,"Y":432},{"Bonus":0,"Continent":"K44","ID":8193,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8193","ServerKey":"pl181","X":476,"Y":419},{"Bonus":0,"Continent":"K54","ID":8194,"Name":"#0051 Coca-Cola","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8194","ServerKey":"pl181","X":484,"Y":547},{"Bonus":0,"Continent":"K54","ID":8195,"Name":"042","PlayerID":698971484,"Points":6786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8195","ServerKey":"pl181","X":448,"Y":536},{"Bonus":0,"Continent":"K54","ID":8196,"Name":"*Ateny_31","PlayerID":699333701,"Points":5016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8196","ServerKey":"pl181","X":465,"Y":521},{"Bonus":0,"Continent":"K55","ID":8197,"Name":"CALL 1028","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8197","ServerKey":"pl181","X":543,"Y":561},{"Bonus":0,"Continent":"K44","ID":8198,"Name":"B064","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8198","ServerKey":"pl181","X":478,"Y":469},{"Bonus":7,"Continent":"K55","ID":8199,"Name":"Mzm46","PlayerID":7142659,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8199","ServerKey":"pl181","X":578,"Y":511},{"Bonus":0,"Continent":"K45","ID":8201,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8201","ServerKey":"pl181","X":515,"Y":456},{"Bonus":0,"Continent":"K54","ID":8202,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8202","ServerKey":"pl181","X":427,"Y":535},{"Bonus":0,"Continent":"K45","ID":8203,"Name":"095","PlayerID":699351301,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8203","ServerKey":"pl181","X":545,"Y":499},{"Bonus":0,"Continent":"K55","ID":8204,"Name":"ƚmieszkii","PlayerID":3454753,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8204","ServerKey":"pl181","X":518,"Y":557},{"Bonus":0,"Continent":"K55","ID":8205,"Name":"10020","PlayerID":848915531,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8205","ServerKey":"pl181","X":532,"Y":556},{"Bonus":0,"Continent":"K45","ID":8206,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8206","ServerKey":"pl181","X":518,"Y":476},{"Bonus":0,"Continent":"K45","ID":8207,"Name":"008x","PlayerID":8155296,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8207","ServerKey":"pl181","X":531,"Y":467},{"Bonus":0,"Continent":"K45","ID":8208,"Name":".achim.","PlayerID":6936607,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8208","ServerKey":"pl181","X":531,"Y":448},{"Bonus":0,"Continent":"K54","ID":8209,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8209","ServerKey":"pl181","X":437,"Y":510},{"Bonus":0,"Continent":"K54","ID":8210,"Name":"NOT?","PlayerID":9236866,"Points":1207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8210","ServerKey":"pl181","X":437,"Y":550},{"Bonus":0,"Continent":"K54","ID":8211,"Name":"0107","PlayerID":698659980,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8211","ServerKey":"pl181","X":469,"Y":558},{"Bonus":0,"Continent":"K55","ID":8212,"Name":"036","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8212","ServerKey":"pl181","X":522,"Y":575},{"Bonus":0,"Continent":"K44","ID":8213,"Name":"7.62 mm","PlayerID":699777234,"Points":8788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8213","ServerKey":"pl181","X":480,"Y":440},{"Bonus":0,"Continent":"K55","ID":8214,"Name":"0068","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8214","ServerKey":"pl181","X":521,"Y":529},{"Bonus":0,"Continent":"K45","ID":8215,"Name":"[103] North3","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8215","ServerKey":"pl181","X":573,"Y":483},{"Bonus":0,"Continent":"K64","ID":8216,"Name":"EKG M02 Ɓ","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8216","ServerKey":"pl181","X":478,"Y":612},{"Bonus":0,"Continent":"K45","ID":8217,"Name":"7. Pisowisko","PlayerID":8444356,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8217","ServerKey":"pl181","X":551,"Y":434},{"Bonus":0,"Continent":"K35","ID":8218,"Name":"047","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8218","ServerKey":"pl181","X":561,"Y":398},{"Bonus":0,"Continent":"K55","ID":8219,"Name":"002","PlayerID":848915531,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8219","ServerKey":"pl181","X":511,"Y":534},{"Bonus":0,"Continent":"K55","ID":8220,"Name":"[083]","PlayerID":8000875,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8220","ServerKey":"pl181","X":558,"Y":544},{"Bonus":0,"Continent":"K44","ID":8221,"Name":"+44 72 Groffliers","PlayerID":698361257,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8221","ServerKey":"pl181","X":425,"Y":474},{"Bonus":0,"Continent":"K54","ID":8222,"Name":"#0087 ZamoƂodycze","PlayerID":9272054,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8222","ServerKey":"pl181","X":483,"Y":547},{"Bonus":0,"Continent":"K54","ID":8223,"Name":"Suppi","PlayerID":699856962,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8223","ServerKey":"pl181","X":438,"Y":517},{"Bonus":0,"Continent":"K55","ID":8224,"Name":"Mzm33.","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8224","ServerKey":"pl181","X":590,"Y":508},{"Bonus":0,"Continent":"K54","ID":8225,"Name":"#0076 ƚwiecko","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8225","ServerKey":"pl181","X":485,"Y":565},{"Bonus":0,"Continent":"K55","ID":8226,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8226","ServerKey":"pl181","X":533,"Y":507},{"Bonus":0,"Continent":"K45","ID":8227,"Name":"Ɓ2Ɓ","PlayerID":8155296,"Points":7726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8227","ServerKey":"pl181","X":536,"Y":463},{"Bonus":0,"Continent":"K45","ID":8228,"Name":"-[010]- Annapurna I","PlayerID":849092827,"Points":7612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8228","ServerKey":"pl181","X":556,"Y":485},{"Bonus":0,"Continent":"K54","ID":8229,"Name":"Wioska 09","PlayerID":848967710,"Points":10673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8229","ServerKey":"pl181","X":495,"Y":522},{"Bonus":0,"Continent":"K54","ID":8230,"Name":"#0011 Partycypacja","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8230","ServerKey":"pl181","X":486,"Y":550},{"Bonus":0,"Continent":"K55","ID":8231,"Name":"0037 K55 and987 OZDR.","PlayerID":3613413,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8231","ServerKey":"pl181","X":508,"Y":568},{"Bonus":0,"Continent":"K44","ID":8232,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8232","ServerKey":"pl181","X":434,"Y":472},{"Bonus":0,"Continent":"K55","ID":8233,"Name":"Szlachcic 044","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8233","ServerKey":"pl181","X":569,"Y":524},{"Bonus":0,"Continent":"K55","ID":8234,"Name":"039. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8234","ServerKey":"pl181","X":546,"Y":500},{"Bonus":0,"Continent":"K45","ID":8235,"Name":"0002","PlayerID":8459255,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8235","ServerKey":"pl181","X":594,"Y":423},{"Bonus":0,"Continent":"K44","ID":8236,"Name":"137 Colima","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8236","ServerKey":"pl181","X":473,"Y":483},{"Bonus":0,"Continent":"K54","ID":8237,"Name":"KIELBA 128","PlayerID":699342219,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8237","ServerKey":"pl181","X":467,"Y":584},{"Bonus":0,"Continent":"K55","ID":8238,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8238","ServerKey":"pl181","X":582,"Y":512},{"Bonus":2,"Continent":"K45","ID":8239,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8239","ServerKey":"pl181","X":518,"Y":473},{"Bonus":0,"Continent":"K55","ID":8240,"Name":"- 083 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8240","ServerKey":"pl181","X":538,"Y":581},{"Bonus":0,"Continent":"K54","ID":8241,"Name":"013","PlayerID":7976264,"Points":8070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8241","ServerKey":"pl181","X":482,"Y":578},{"Bonus":0,"Continent":"K54","ID":8242,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8242","ServerKey":"pl181","X":471,"Y":564},{"Bonus":0,"Continent":"K54","ID":8243,"Name":"*Ateny_33","PlayerID":699333701,"Points":3150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8243","ServerKey":"pl181","X":466,"Y":520},{"Bonus":0,"Continent":"K55","ID":8244,"Name":"023. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8244","ServerKey":"pl181","X":570,"Y":529},{"Bonus":5,"Continent":"K55","ID":8245,"Name":"Gattacka","PlayerID":699298370,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8245","ServerKey":"pl181","X":581,"Y":500},{"Bonus":0,"Continent":"K55","ID":8246,"Name":"Mzm51","PlayerID":7142659,"Points":7719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8246","ServerKey":"pl181","X":538,"Y":519},{"Bonus":0,"Continent":"K44","ID":8247,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8247","ServerKey":"pl181","X":475,"Y":420},{"Bonus":0,"Continent":"K45","ID":8248,"Name":"AbacadA 020","PlayerID":699756210,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8248","ServerKey":"pl181","X":558,"Y":431},{"Bonus":0,"Continent":"K54","ID":8249,"Name":"F071","PlayerID":699189792,"Points":10385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8249","ServerKey":"pl181","X":496,"Y":548},{"Bonus":0,"Continent":"K55","ID":8250,"Name":"F065","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8250","ServerKey":"pl181","X":507,"Y":537},{"Bonus":0,"Continent":"K44","ID":8251,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8251","ServerKey":"pl181","X":462,"Y":478},{"Bonus":0,"Continent":"K34","ID":8252,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8252","ServerKey":"pl181","X":498,"Y":395},{"Bonus":0,"Continent":"K45","ID":8253,"Name":".achim.","PlayerID":6936607,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8253","ServerKey":"pl181","X":558,"Y":447},{"Bonus":0,"Continent":"K54","ID":8254,"Name":"FF010","PlayerID":699189792,"Points":7253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8254","ServerKey":"pl181","X":470,"Y":517},{"Bonus":0,"Continent":"K45","ID":8255,"Name":".:005:. Busik","PlayerID":8649412,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8255","ServerKey":"pl181","X":509,"Y":415},{"Bonus":0,"Continent":"K54","ID":8256,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8256","ServerKey":"pl181","X":437,"Y":524},{"Bonus":0,"Continent":"K65","ID":8257,"Name":"0359","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8257","ServerKey":"pl181","X":502,"Y":623},{"Bonus":0,"Continent":"K44","ID":8258,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8258","ServerKey":"pl181","X":495,"Y":424},{"Bonus":0,"Continent":"K44","ID":8259,"Name":"153 Escuintla","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8259","ServerKey":"pl181","X":453,"Y":466},{"Bonus":0,"Continent":"K55","ID":8260,"Name":"007. Boginka","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8260","ServerKey":"pl181","X":506,"Y":589},{"Bonus":0,"Continent":"K54","ID":8261,"Name":"keepo","PlayerID":848967710,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8261","ServerKey":"pl181","X":486,"Y":525},{"Bonus":0,"Continent":"K45","ID":8263,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8263","ServerKey":"pl181","X":567,"Y":488},{"Bonus":0,"Continent":"K55","ID":8264,"Name":"Wioska Krolik14","PlayerID":699851345,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8264","ServerKey":"pl181","X":593,"Y":526},{"Bonus":0,"Continent":"K45","ID":8265,"Name":"[091]","PlayerID":848985692,"Points":10528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8265","ServerKey":"pl181","X":540,"Y":494},{"Bonus":0,"Continent":"K34","ID":8266,"Name":"015","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8266","ServerKey":"pl181","X":491,"Y":389},{"Bonus":3,"Continent":"K44","ID":8267,"Name":".Tuscaloosa","PlayerID":699781762,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8267","ServerKey":"pl181","X":469,"Y":493},{"Bonus":0,"Continent":"K44","ID":8268,"Name":"Suppi","PlayerID":699856962,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8268","ServerKey":"pl181","X":440,"Y":454},{"Bonus":0,"Continent":"K54","ID":8269,"Name":"Sparta_59","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8269","ServerKey":"pl181","X":475,"Y":578},{"Bonus":0,"Continent":"K35","ID":8270,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8270","ServerKey":"pl181","X":563,"Y":389},{"Bonus":0,"Continent":"K54","ID":8271,"Name":"Daleko 005","PlayerID":699868002,"Points":8342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8271","ServerKey":"pl181","X":475,"Y":586},{"Bonus":0,"Continent":"K44","ID":8272,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8272","ServerKey":"pl181","X":479,"Y":418},{"Bonus":0,"Continent":"K44","ID":8273,"Name":"7.62 mm","PlayerID":699777234,"Points":8960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8273","ServerKey":"pl181","X":468,"Y":441},{"Bonus":0,"Continent":"K34","ID":8274,"Name":"MaƂy","PlayerID":699393759,"Points":8321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8274","ServerKey":"pl181","X":466,"Y":382},{"Bonus":0,"Continent":"K45","ID":8275,"Name":"007 WrzĂłd na d....","PlayerID":849031818,"Points":7832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8275","ServerKey":"pl181","X":566,"Y":489},{"Bonus":0,"Continent":"K45","ID":8276,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8276","ServerKey":"pl181","X":533,"Y":426},{"Bonus":0,"Continent":"K56","ID":8277,"Name":"010.","PlayerID":8900955,"Points":5889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8277","ServerKey":"pl181","X":614,"Y":545},{"Bonus":0,"Continent":"K44","ID":8278,"Name":"0105qqqqqqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8278","ServerKey":"pl181","X":468,"Y":445},{"Bonus":0,"Continent":"K44","ID":8280,"Name":"Szlachcic","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8280","ServerKey":"pl181","X":493,"Y":481},{"Bonus":0,"Continent":"K54","ID":8281,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8281","ServerKey":"pl181","X":427,"Y":528},{"Bonus":0,"Continent":"K45","ID":8282,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8282","ServerKey":"pl181","X":517,"Y":426},{"Bonus":0,"Continent":"K55","ID":8283,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8283","ServerKey":"pl181","X":517,"Y":579},{"Bonus":0,"Continent":"K44","ID":8284,"Name":"0082","PlayerID":848913037,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8284","ServerKey":"pl181","X":463,"Y":460},{"Bonus":0,"Continent":"K35","ID":8285,"Name":"MIKOR 000","PlayerID":6343784,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8285","ServerKey":"pl181","X":559,"Y":391},{"Bonus":0,"Continent":"K44","ID":8286,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8286","ServerKey":"pl181","X":484,"Y":431},{"Bonus":0,"Continent":"K54","ID":8287,"Name":"013. ALFI","PlayerID":8539216,"Points":1421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8287","ServerKey":"pl181","X":482,"Y":568},{"Bonus":0,"Continent":"K55","ID":8288,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8288","ServerKey":"pl181","X":580,"Y":544},{"Bonus":0,"Continent":"K44","ID":8289,"Name":"001","PlayerID":699658023,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8289","ServerKey":"pl181","X":495,"Y":411},{"Bonus":0,"Continent":"K55","ID":8290,"Name":"- 213 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8290","ServerKey":"pl181","X":553,"Y":573},{"Bonus":0,"Continent":"K53","ID":8291,"Name":"Wioska Michalpol545","PlayerID":849030226,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8291","ServerKey":"pl181","X":394,"Y":523},{"Bonus":0,"Continent":"K45","ID":8292,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8292","ServerKey":"pl181","X":524,"Y":411},{"Bonus":0,"Continent":"K54","ID":8293,"Name":"003","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8293","ServerKey":"pl181","X":407,"Y":508},{"Bonus":0,"Continent":"K55","ID":8294,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8294","ServerKey":"pl181","X":586,"Y":537},{"Bonus":0,"Continent":"K45","ID":8295,"Name":"035","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8295","ServerKey":"pl181","X":583,"Y":469},{"Bonus":0,"Continent":"K45","ID":8296,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8296","ServerKey":"pl181","X":580,"Y":461},{"Bonus":0,"Continent":"K54","ID":8297,"Name":"060","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8297","ServerKey":"pl181","X":403,"Y":505},{"Bonus":0,"Continent":"K54","ID":8298,"Name":"0599","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8298","ServerKey":"pl181","X":438,"Y":594},{"Bonus":0,"Continent":"K55","ID":8299,"Name":"0052","PlayerID":698416970,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8299","ServerKey":"pl181","X":591,"Y":515},{"Bonus":0,"Continent":"K55","ID":8300,"Name":"0.Chicago","PlayerID":698215322,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8300","ServerKey":"pl181","X":520,"Y":590},{"Bonus":0,"Continent":"K44","ID":8301,"Name":"2..","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8301","ServerKey":"pl181","X":426,"Y":446},{"Bonus":0,"Continent":"K44","ID":8302,"Name":"A020","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8302","ServerKey":"pl181","X":481,"Y":412},{"Bonus":0,"Continent":"K54","ID":8303,"Name":"IBAR 2","PlayerID":8779575,"Points":3209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8303","ServerKey":"pl181","X":432,"Y":554},{"Bonus":0,"Continent":"K45","ID":8304,"Name":"065","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8304","ServerKey":"pl181","X":589,"Y":479},{"Bonus":6,"Continent":"K54","ID":8305,"Name":"Suppi","PlayerID":699856962,"Points":10076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8305","ServerKey":"pl181","X":418,"Y":536},{"Bonus":0,"Continent":"K45","ID":8306,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":6199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8306","ServerKey":"pl181","X":543,"Y":422},{"Bonus":0,"Continent":"K54","ID":8307,"Name":"KIELBA 026","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8307","ServerKey":"pl181","X":454,"Y":581},{"Bonus":0,"Continent":"K54","ID":8308,"Name":"Majin Buu 013","PlayerID":699054373,"Points":9591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8308","ServerKey":"pl181","X":438,"Y":566},{"Bonus":0,"Continent":"K45","ID":8309,"Name":"Atlantis 15","PlayerID":699433558,"Points":5323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8309","ServerKey":"pl181","X":542,"Y":418},{"Bonus":0,"Continent":"K44","ID":8310,"Name":"SKELLIGE","PlayerID":699658023,"Points":9686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8310","ServerKey":"pl181","X":497,"Y":410},{"Bonus":0,"Continent":"K44","ID":8311,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8311","ServerKey":"pl181","X":418,"Y":460},{"Bonus":0,"Continent":"K45","ID":8312,"Name":"04 | WygwizdĂłw","PlayerID":849002091,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8312","ServerKey":"pl181","X":541,"Y":431},{"Bonus":0,"Continent":"K55","ID":8313,"Name":"- 323 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8313","ServerKey":"pl181","X":530,"Y":586},{"Bonus":0,"Continent":"K54","ID":8314,"Name":"(007)","PlayerID":699846892,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8314","ServerKey":"pl181","X":419,"Y":537},{"Bonus":0,"Continent":"K43","ID":8315,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8315","ServerKey":"pl181","X":390,"Y":468},{"Bonus":0,"Continent":"K54","ID":8316,"Name":"Erebor 6","PlayerID":699383121,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8316","ServerKey":"pl181","X":499,"Y":590},{"Bonus":0,"Continent":"K44","ID":8317,"Name":"Alabasta","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8317","ServerKey":"pl181","X":498,"Y":411},{"Bonus":0,"Continent":"K55","ID":8318,"Name":"- 320 -","PlayerID":849018239,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8318","ServerKey":"pl181","X":528,"Y":586},{"Bonus":0,"Continent":"K44","ID":8319,"Name":"00631 Wioska","PlayerID":3909522,"Points":7362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8319","ServerKey":"pl181","X":442,"Y":429},{"Bonus":0,"Continent":"K45","ID":8320,"Name":"xxx:Aabadon","PlayerID":699347951,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8320","ServerKey":"pl181","X":591,"Y":486},{"Bonus":0,"Continent":"K44","ID":8321,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8321","ServerKey":"pl181","X":465,"Y":413},{"Bonus":0,"Continent":"K55","ID":8322,"Name":"0.Honolulu","PlayerID":698215322,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8322","ServerKey":"pl181","X":519,"Y":588},{"Bonus":0,"Continent":"K55","ID":8323,"Name":"Probol4N","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8323","ServerKey":"pl181","X":592,"Y":502},{"Bonus":0,"Continent":"K55","ID":8324,"Name":"012","PlayerID":8138506,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8324","ServerKey":"pl181","X":583,"Y":536},{"Bonus":0,"Continent":"K45","ID":8325,"Name":"003","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8325","ServerKey":"pl181","X":563,"Y":410},{"Bonus":0,"Continent":"K45","ID":8326,"Name":".achim.","PlayerID":6936607,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8326","ServerKey":"pl181","X":514,"Y":411},{"Bonus":0,"Continent":"K46","ID":8327,"Name":"[203] WEST","PlayerID":848985692,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8327","ServerKey":"pl181","X":612,"Y":455},{"Bonus":0,"Continent":"K45","ID":8328,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8328","ServerKey":"pl181","X":518,"Y":409},{"Bonus":1,"Continent":"K55","ID":8329,"Name":"069 |","PlayerID":8000875,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8329","ServerKey":"pl181","X":567,"Y":565},{"Bonus":0,"Continent":"K45","ID":8330,"Name":"039.","PlayerID":849094609,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8330","ServerKey":"pl181","X":577,"Y":450},{"Bonus":0,"Continent":"K54","ID":8331,"Name":"Village","PlayerID":849094067,"Points":8396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8331","ServerKey":"pl181","X":471,"Y":588},{"Bonus":0,"Continent":"K45","ID":8332,"Name":"057","PlayerID":7271812,"Points":7416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8332","ServerKey":"pl181","X":546,"Y":419},{"Bonus":0,"Continent":"K55","ID":8333,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8333","ServerKey":"pl181","X":568,"Y":562},{"Bonus":0,"Continent":"K45","ID":8334,"Name":"050","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8334","ServerKey":"pl181","X":587,"Y":473},{"Bonus":0,"Continent":"K44","ID":8335,"Name":"A#023#","PlayerID":698807570,"Points":11970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8335","ServerKey":"pl181","X":402,"Y":475},{"Bonus":0,"Continent":"K45","ID":8336,"Name":"066","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8336","ServerKey":"pl181","X":586,"Y":463},{"Bonus":0,"Continent":"K54","ID":8338,"Name":"(024)","PlayerID":699846892,"Points":8928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8338","ServerKey":"pl181","X":420,"Y":539},{"Bonus":0,"Continent":"K55","ID":8339,"Name":"0.Nashville","PlayerID":698215322,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8339","ServerKey":"pl181","X":519,"Y":589},{"Bonus":0,"Continent":"K55","ID":8340,"Name":"Erebor 4","PlayerID":699383121,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8340","ServerKey":"pl181","X":501,"Y":593},{"Bonus":0,"Continent":"K54","ID":8341,"Name":"Teatr","PlayerID":7249451,"Points":7415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8341","ServerKey":"pl181","X":434,"Y":564},{"Bonus":0,"Continent":"K35","ID":8342,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8342","ServerKey":"pl181","X":516,"Y":395},{"Bonus":0,"Continent":"K54","ID":8343,"Name":"047 POD MOSTEM","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8343","ServerKey":"pl181","X":421,"Y":548},{"Bonus":0,"Continent":"K64","ID":8344,"Name":"091 MEHEHE","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8344","ServerKey":"pl181","X":494,"Y":612},{"Bonus":7,"Continent":"K55","ID":8345,"Name":"[015] Matarte","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8345","ServerKey":"pl181","X":589,"Y":526},{"Bonus":0,"Continent":"K55","ID":8346,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8346","ServerKey":"pl181","X":579,"Y":582},{"Bonus":0,"Continent":"K34","ID":8347,"Name":"Feed me more 003","PlayerID":699756210,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8347","ServerKey":"pl181","X":497,"Y":377},{"Bonus":0,"Continent":"K54","ID":8348,"Name":"Wioska 2","PlayerID":8779575,"Points":3791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8348","ServerKey":"pl181","X":425,"Y":552},{"Bonus":0,"Continent":"K55","ID":8349,"Name":"Cztery kostki lodu","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8349","ServerKey":"pl181","X":566,"Y":567},{"Bonus":0,"Continent":"K44","ID":8350,"Name":"+44 61 Lyon Charpennes","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8350","ServerKey":"pl181","X":415,"Y":463},{"Bonus":0,"Continent":"K64","ID":8351,"Name":"0017","PlayerID":33900,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8351","ServerKey":"pl181","X":465,"Y":605},{"Bonus":6,"Continent":"K44","ID":8352,"Name":"PRO8L3M","PlayerID":7491093,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8352","ServerKey":"pl181","X":407,"Y":499},{"Bonus":0,"Continent":"K55","ID":8353,"Name":".0.Brooklyn","PlayerID":698215322,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8353","ServerKey":"pl181","X":521,"Y":589},{"Bonus":0,"Continent":"K45","ID":8354,"Name":"Gattacka","PlayerID":699298370,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8354","ServerKey":"pl181","X":591,"Y":491},{"Bonus":0,"Continent":"K54","ID":8355,"Name":"Oskal","PlayerID":699443920,"Points":2999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8355","ServerKey":"pl181","X":429,"Y":560},{"Bonus":0,"Continent":"K44","ID":8356,"Name":"+44 71 Blecquenecques","PlayerID":698361257,"Points":9658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8356","ServerKey":"pl181","X":416,"Y":470},{"Bonus":0,"Continent":"K45","ID":8357,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8357","ServerKey":"pl181","X":517,"Y":409},{"Bonus":0,"Continent":"K45","ID":8358,"Name":"-4-","PlayerID":699347951,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8358","ServerKey":"pl181","X":590,"Y":483},{"Bonus":0,"Continent":"K45","ID":8359,"Name":"197","PlayerID":849064752,"Points":7821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8359","ServerKey":"pl181","X":546,"Y":428},{"Bonus":0,"Continent":"K55","ID":8360,"Name":"[077]","PlayerID":8000875,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8360","ServerKey":"pl181","X":563,"Y":566},{"Bonus":0,"Continent":"K54","ID":8361,"Name":"Dobranoc","PlayerID":699856962,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8361","ServerKey":"pl181","X":418,"Y":543},{"Bonus":0,"Continent":"K55","ID":8362,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8362","ServerKey":"pl181","X":591,"Y":521},{"Bonus":0,"Continent":"K55","ID":8363,"Name":"- 085 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8363","ServerKey":"pl181","X":535,"Y":584},{"Bonus":0,"Continent":"K44","ID":8364,"Name":"+44 52 Lyon Eurexpo","PlayerID":698361257,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8364","ServerKey":"pl181","X":421,"Y":455},{"Bonus":0,"Continent":"K34","ID":8365,"Name":"K34 - [045] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8365","ServerKey":"pl181","X":462,"Y":387},{"Bonus":0,"Continent":"K55","ID":8366,"Name":"- 081 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8366","ServerKey":"pl181","X":538,"Y":585},{"Bonus":0,"Continent":"K54","ID":8367,"Name":"Boszkowo","PlayerID":699856962,"Points":9381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8367","ServerKey":"pl181","X":420,"Y":546},{"Bonus":0,"Continent":"K55","ID":8368,"Name":"0054","PlayerID":698416970,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8368","ServerKey":"pl181","X":591,"Y":514},{"Bonus":0,"Continent":"K55","ID":8369,"Name":"- 244 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8369","ServerKey":"pl181","X":544,"Y":581},{"Bonus":0,"Continent":"K54","ID":8370,"Name":"NOT?","PlayerID":9236866,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8370","ServerKey":"pl181","X":414,"Y":536},{"Bonus":0,"Continent":"K54","ID":8371,"Name":"C 001.","PlayerID":849028088,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8371","ServerKey":"pl181","X":450,"Y":574},{"Bonus":0,"Continent":"K55","ID":8372,"Name":"Jaaa","PlayerID":698635863,"Points":10123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8372","ServerKey":"pl181","X":577,"Y":552},{"Bonus":0,"Continent":"K44","ID":8374,"Name":"Feed me more 011","PlayerID":699756210,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8374","ServerKey":"pl181","X":492,"Y":408},{"Bonus":0,"Continent":"K44","ID":8375,"Name":"033 Palm Springs","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8375","ServerKey":"pl181","X":433,"Y":441},{"Bonus":0,"Continent":"K45","ID":8376,"Name":"Darma tutek101","PlayerID":8925695,"Points":9169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8376","ServerKey":"pl181","X":591,"Y":485},{"Bonus":0,"Continent":"K54","ID":8377,"Name":"077","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8377","ServerKey":"pl181","X":425,"Y":516},{"Bonus":0,"Continent":"K54","ID":8378,"Name":"G008","PlayerID":8779575,"Points":8212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8378","ServerKey":"pl181","X":438,"Y":565},{"Bonus":0,"Continent":"K55","ID":8379,"Name":"0.Miami","PlayerID":698215322,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8379","ServerKey":"pl181","X":524,"Y":589},{"Bonus":0,"Continent":"K56","ID":8380,"Name":"0002","PlayerID":6510480,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8380","ServerKey":"pl181","X":615,"Y":527},{"Bonus":0,"Continent":"K54","ID":8381,"Name":"KIELBA 025","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8381","ServerKey":"pl181","X":453,"Y":581},{"Bonus":0,"Continent":"K54","ID":8382,"Name":". Interstellar","PlayerID":8779575,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8382","ServerKey":"pl181","X":422,"Y":550},{"Bonus":0,"Continent":"K44","ID":8384,"Name":"0062 ~25~","PlayerID":3909522,"Points":7716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8384","ServerKey":"pl181","X":437,"Y":436},{"Bonus":0,"Continent":"K54","ID":8385,"Name":"0178","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8385","ServerKey":"pl181","X":466,"Y":543},{"Bonus":0,"Continent":"K55","ID":8386,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8386","ServerKey":"pl181","X":570,"Y":557},{"Bonus":0,"Continent":"K55","ID":8387,"Name":"|026|","PlayerID":873575,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8387","ServerKey":"pl181","X":557,"Y":569},{"Bonus":0,"Continent":"K44","ID":8388,"Name":"-010- Czemu? WytƂumaczę potem","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8388","ServerKey":"pl181","X":456,"Y":419},{"Bonus":0,"Continent":"K55","ID":8389,"Name":"013","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8389","ServerKey":"pl181","X":571,"Y":555},{"Bonus":0,"Continent":"K44","ID":8390,"Name":"Monetki","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8390","ServerKey":"pl181","X":471,"Y":411},{"Bonus":0,"Continent":"K45","ID":8391,"Name":"059","PlayerID":7271812,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8391","ServerKey":"pl181","X":543,"Y":419},{"Bonus":0,"Continent":"K44","ID":8392,"Name":"Zao","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8392","ServerKey":"pl181","X":489,"Y":407},{"Bonus":0,"Continent":"K44","ID":8393,"Name":"+44 61 Ecuires","PlayerID":698361257,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8393","ServerKey":"pl181","X":413,"Y":466},{"Bonus":0,"Continent":"K44","ID":8394,"Name":"0059","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8394","ServerKey":"pl181","X":447,"Y":424},{"Bonus":0,"Continent":"K55","ID":8395,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8395","ServerKey":"pl181","X":590,"Y":522},{"Bonus":0,"Continent":"K34","ID":8396,"Name":"[0004]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8396","ServerKey":"pl181","X":452,"Y":388},{"Bonus":0,"Continent":"K44","ID":8397,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8397","ServerKey":"pl181","X":497,"Y":406},{"Bonus":0,"Continent":"K44","ID":8398,"Name":"+44 71 Campigneulles les Petites","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8398","ServerKey":"pl181","X":414,"Y":470},{"Bonus":0,"Continent":"K44","ID":8399,"Name":"Popas9","PlayerID":699265922,"Points":8939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8399","ServerKey":"pl181","X":407,"Y":494},{"Bonus":0,"Continent":"K54","ID":8401,"Name":"WDG","PlayerID":8779575,"Points":3176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8401","ServerKey":"pl181","X":425,"Y":553},{"Bonus":0,"Continent":"K45","ID":8402,"Name":"Szlachcic","PlayerID":698867446,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8402","ServerKey":"pl181","X":568,"Y":486},{"Bonus":0,"Continent":"K55","ID":8403,"Name":"[107]","PlayerID":8000875,"Points":9864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8403","ServerKey":"pl181","X":567,"Y":564},{"Bonus":0,"Continent":"K44","ID":8405,"Name":"Wioska Szymon4077","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8405","ServerKey":"pl181","X":427,"Y":442},{"Bonus":0,"Continent":"K45","ID":8406,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8406","ServerKey":"pl181","X":587,"Y":465},{"Bonus":0,"Continent":"K55","ID":8407,"Name":"z 007","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8407","ServerKey":"pl181","X":560,"Y":596},{"Bonus":0,"Continent":"K54","ID":8408,"Name":"KIELBA 129","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8408","ServerKey":"pl181","X":464,"Y":584},{"Bonus":0,"Continent":"K54","ID":8409,"Name":"Majin Buu 014","PlayerID":699054373,"Points":6210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8409","ServerKey":"pl181","X":439,"Y":568},{"Bonus":0,"Continent":"K54","ID":8410,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8410","ServerKey":"pl181","X":410,"Y":503},{"Bonus":0,"Continent":"K54","ID":8411,"Name":"KIELBA 005","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8411","ServerKey":"pl181","X":445,"Y":575},{"Bonus":0,"Continent":"K45","ID":8412,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8412","ServerKey":"pl181","X":571,"Y":443},{"Bonus":0,"Continent":"K44","ID":8413,"Name":"00593","PlayerID":3909522,"Points":10276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8413","ServerKey":"pl181","X":453,"Y":424},{"Bonus":0,"Continent":"K45","ID":8414,"Name":".achim.","PlayerID":6936607,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8414","ServerKey":"pl181","X":535,"Y":416},{"Bonus":0,"Continent":"K55","ID":8415,"Name":"015 Azalea Town","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8415","ServerKey":"pl181","X":591,"Y":505},{"Bonus":0,"Continent":"K55","ID":8416,"Name":"[095]","PlayerID":8000875,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8416","ServerKey":"pl181","X":562,"Y":566},{"Bonus":0,"Continent":"K35","ID":8417,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8417","ServerKey":"pl181","X":503,"Y":389},{"Bonus":0,"Continent":"K55","ID":8418,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8418","ServerKey":"pl181","X":581,"Y":545},{"Bonus":0,"Continent":"K64","ID":8419,"Name":"0090","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8419","ServerKey":"pl181","X":460,"Y":615},{"Bonus":0,"Continent":"K45","ID":8420,"Name":"#Gyarados","PlayerID":699795378,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8420","ServerKey":"pl181","X":577,"Y":453},{"Bonus":0,"Continent":"K45","ID":8422,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8422","ServerKey":"pl181","X":500,"Y":408},{"Bonus":0,"Continent":"K54","ID":8423,"Name":"Village","PlayerID":849094067,"Points":7999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8423","ServerKey":"pl181","X":471,"Y":587},{"Bonus":0,"Continent":"K55","ID":8424,"Name":"lady","PlayerID":699703642,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8424","ServerKey":"pl181","X":500,"Y":590},{"Bonus":1,"Continent":"K54","ID":8425,"Name":"Suppi","PlayerID":699856962,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8425","ServerKey":"pl181","X":417,"Y":543},{"Bonus":0,"Continent":"K46","ID":8426,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8426","ServerKey":"pl181","X":602,"Y":498},{"Bonus":0,"Continent":"K45","ID":8427,"Name":"Wioska 512","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8427","ServerKey":"pl181","X":581,"Y":458},{"Bonus":0,"Continent":"K55","ID":8428,"Name":"Wioska barbarzyƄska","PlayerID":848915531,"Points":3859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8428","ServerKey":"pl181","X":511,"Y":542},{"Bonus":0,"Continent":"K45","ID":8429,"Name":"#008","PlayerID":699368887,"Points":7889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8429","ServerKey":"pl181","X":577,"Y":448},{"Bonus":0,"Continent":"K55","ID":8430,"Name":"#052","PlayerID":849001572,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8430","ServerKey":"pl181","X":525,"Y":590},{"Bonus":0,"Continent":"K55","ID":8431,"Name":"011","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8431","ServerKey":"pl181","X":574,"Y":551},{"Bonus":0,"Continent":"K44","ID":8432,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8432","ServerKey":"pl181","X":412,"Y":476},{"Bonus":0,"Continent":"K55","ID":8433,"Name":"Mzm27","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8433","ServerKey":"pl181","X":589,"Y":505},{"Bonus":0,"Continent":"K44","ID":8434,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8434","ServerKey":"pl181","X":471,"Y":414},{"Bonus":0,"Continent":"K54","ID":8435,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8435","ServerKey":"pl181","X":409,"Y":507},{"Bonus":0,"Continent":"K45","ID":8436,"Name":".:013:. Chillout","PlayerID":848934935,"Points":7979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8436","ServerKey":"pl181","X":504,"Y":407},{"Bonus":0,"Continent":"K54","ID":8437,"Name":"Teatr","PlayerID":7249451,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8437","ServerKey":"pl181","X":433,"Y":566},{"Bonus":0,"Continent":"K54","ID":8438,"Name":"WD1","PlayerID":8779575,"Points":3624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8438","ServerKey":"pl181","X":426,"Y":553},{"Bonus":0,"Continent":"K44","ID":8439,"Name":"00.1","PlayerID":699658023,"Points":9074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8439","ServerKey":"pl181","X":496,"Y":418},{"Bonus":0,"Continent":"K55","ID":8440,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8440","ServerKey":"pl181","X":578,"Y":551},{"Bonus":0,"Continent":"K54","ID":8442,"Name":"105","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8442","ServerKey":"pl181","X":412,"Y":530},{"Bonus":6,"Continent":"K55","ID":8443,"Name":"- 298 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8443","ServerKey":"pl181","X":537,"Y":582},{"Bonus":0,"Continent":"K45","ID":8444,"Name":"102","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8444","ServerKey":"pl181","X":564,"Y":401},{"Bonus":0,"Continent":"K44","ID":8445,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8445","ServerKey":"pl181","X":425,"Y":446},{"Bonus":0,"Continent":"K44","ID":8446,"Name":"00562","PlayerID":3909522,"Points":5214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8446","ServerKey":"pl181","X":439,"Y":430},{"Bonus":0,"Continent":"K55","ID":8447,"Name":"#045","PlayerID":849001572,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8447","ServerKey":"pl181","X":522,"Y":590},{"Bonus":0,"Continent":"K55","ID":8448,"Name":"#049","PlayerID":849001572,"Points":6709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8448","ServerKey":"pl181","X":522,"Y":591},{"Bonus":0,"Continent":"K54","ID":8449,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8449","ServerKey":"pl181","X":410,"Y":517},{"Bonus":0,"Continent":"K45","ID":8450,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8450","ServerKey":"pl181","X":570,"Y":440},{"Bonus":0,"Continent":"K44","ID":8451,"Name":"A037","PlayerID":699299123,"Points":6875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8451","ServerKey":"pl181","X":490,"Y":411},{"Bonus":0,"Continent":"K44","ID":8452,"Name":"038 Kansas City","PlayerID":9291984,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8452","ServerKey":"pl181","X":435,"Y":435},{"Bonus":0,"Continent":"K44","ID":8453,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8453","ServerKey":"pl181","X":431,"Y":441},{"Bonus":0,"Continent":"K45","ID":8454,"Name":".:043:. Kisiel","PlayerID":8649412,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8454","ServerKey":"pl181","X":504,"Y":409},{"Bonus":0,"Continent":"K56","ID":8455,"Name":"Gryfios 003","PlayerID":698666810,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8455","ServerKey":"pl181","X":617,"Y":539},{"Bonus":0,"Continent":"K54","ID":8456,"Name":"Opyle","PlayerID":699443920,"Points":3402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8456","ServerKey":"pl181","X":429,"Y":559},{"Bonus":0,"Continent":"K55","ID":8457,"Name":"[138]","PlayerID":8000875,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8457","ServerKey":"pl181","X":565,"Y":564},{"Bonus":0,"Continent":"K45","ID":8458,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8458","ServerKey":"pl181","X":514,"Y":410},{"Bonus":0,"Continent":"K54","ID":8459,"Name":"WDJ","PlayerID":8779575,"Points":3659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8459","ServerKey":"pl181","X":425,"Y":554},{"Bonus":0,"Continent":"K45","ID":8460,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8460","ServerKey":"pl181","X":526,"Y":412},{"Bonus":0,"Continent":"K44","ID":8461,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8461","ServerKey":"pl181","X":424,"Y":445},{"Bonus":0,"Continent":"K44","ID":8462,"Name":"Suppi","PlayerID":699856962,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8462","ServerKey":"pl181","X":427,"Y":446},{"Bonus":0,"Continent":"K44","ID":8463,"Name":"012","PlayerID":699510259,"Points":9775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8463","ServerKey":"pl181","X":412,"Y":481},{"Bonus":0,"Continent":"K44","ID":8464,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8464","ServerKey":"pl181","X":413,"Y":476},{"Bonus":0,"Continent":"K54","ID":8465,"Name":"D0004","PlayerID":8841266,"Points":8492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8465","ServerKey":"pl181","X":439,"Y":567},{"Bonus":0,"Continent":"K45","ID":8466,"Name":"#004","PlayerID":699368887,"Points":8882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8466","ServerKey":"pl181","X":578,"Y":448},{"Bonus":0,"Continent":"K35","ID":8467,"Name":".achim.","PlayerID":6936607,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8467","ServerKey":"pl181","X":537,"Y":392},{"Bonus":0,"Continent":"K55","ID":8468,"Name":"Jaaa","PlayerID":698635863,"Points":10441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8468","ServerKey":"pl181","X":574,"Y":557},{"Bonus":0,"Continent":"K44","ID":8469,"Name":"00594","PlayerID":3909522,"Points":4924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8469","ServerKey":"pl181","X":451,"Y":420},{"Bonus":0,"Continent":"K44","ID":8470,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8470","ServerKey":"pl181","X":495,"Y":407},{"Bonus":0,"Continent":"K55","ID":8471,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8471","ServerKey":"pl181","X":583,"Y":540},{"Bonus":0,"Continent":"K54","ID":8472,"Name":"049","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8472","ServerKey":"pl181","X":414,"Y":526},{"Bonus":0,"Continent":"K55","ID":8473,"Name":"002. Lagerta","PlayerID":699373599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8473","ServerKey":"pl181","X":589,"Y":565},{"Bonus":0,"Continent":"K45","ID":8474,"Name":"#005","PlayerID":699368887,"Points":7657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8474","ServerKey":"pl181","X":576,"Y":447},{"Bonus":0,"Continent":"K44","ID":8475,"Name":"Radek","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8475","ServerKey":"pl181","X":413,"Y":473},{"Bonus":0,"Continent":"K44","ID":8476,"Name":"00591","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8476","ServerKey":"pl181","X":449,"Y":424},{"Bonus":0,"Continent":"K45","ID":8477,"Name":"044.","PlayerID":849094609,"Points":10551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8477","ServerKey":"pl181","X":579,"Y":455},{"Bonus":0,"Continent":"K45","ID":8478,"Name":"0017","PlayerID":699429153,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8478","ServerKey":"pl181","X":594,"Y":499},{"Bonus":0,"Continent":"K55","ID":8479,"Name":"049 |","PlayerID":8000875,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8479","ServerKey":"pl181","X":563,"Y":569},{"Bonus":0,"Continent":"K34","ID":8480,"Name":"K34 x025.","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8480","ServerKey":"pl181","X":466,"Y":396},{"Bonus":0,"Continent":"K55","ID":8481,"Name":"005. Wioska JaaMwG","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8481","ServerKey":"pl181","X":591,"Y":511},{"Bonus":0,"Continent":"K54","ID":8482,"Name":"Sparta_25","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8482","ServerKey":"pl181","X":492,"Y":592},{"Bonus":6,"Continent":"K55","ID":8483,"Name":"15. Cloud Strife","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8483","ServerKey":"pl181","X":535,"Y":587},{"Bonus":0,"Continent":"K45","ID":8485,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8485","ServerKey":"pl181","X":518,"Y":408},{"Bonus":0,"Continent":"K54","ID":8486,"Name":"Suppi","PlayerID":699856962,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8486","ServerKey":"pl181","X":414,"Y":534},{"Bonus":0,"Continent":"K44","ID":8487,"Name":"Gravity","PlayerID":698962117,"Points":9773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8487","ServerKey":"pl181","X":420,"Y":454},{"Bonus":0,"Continent":"K45","ID":8488,"Name":"#006","PlayerID":699368887,"Points":8122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8488","ServerKey":"pl181","X":576,"Y":449},{"Bonus":0,"Continent":"K56","ID":8489,"Name":"047 Riihimaki","PlayerID":699272880,"Points":10579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8489","ServerKey":"pl181","X":605,"Y":524},{"Bonus":8,"Continent":"K55","ID":8490,"Name":"- 084 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8490","ServerKey":"pl181","X":534,"Y":586},{"Bonus":0,"Continent":"K55","ID":8491,"Name":"0007","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8491","ServerKey":"pl181","X":502,"Y":506},{"Bonus":0,"Continent":"K55","ID":8492,"Name":"010","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8492","ServerKey":"pl181","X":574,"Y":552},{"Bonus":0,"Continent":"K54","ID":8493,"Name":"Sparta_06","PlayerID":2585846,"Points":9181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8493","ServerKey":"pl181","X":498,"Y":595},{"Bonus":0,"Continent":"K45","ID":8494,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8494","ServerKey":"pl181","X":520,"Y":408},{"Bonus":2,"Continent":"K54","ID":8495,"Name":"Suppi","PlayerID":699856962,"Points":10459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8495","ServerKey":"pl181","X":415,"Y":539},{"Bonus":0,"Continent":"K54","ID":8496,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8496","ServerKey":"pl181","X":410,"Y":516},{"Bonus":0,"Continent":"K34","ID":8497,"Name":"Hej hoo","PlayerID":699191449,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8497","ServerKey":"pl181","X":456,"Y":385},{"Bonus":0,"Continent":"K44","ID":8498,"Name":"HoƂopole","PlayerID":699433558,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8498","ServerKey":"pl181","X":489,"Y":409},{"Bonus":0,"Continent":"K64","ID":8499,"Name":"0338","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8499","ServerKey":"pl181","X":499,"Y":624},{"Bonus":0,"Continent":"K54","ID":8500,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8500","ServerKey":"pl181","X":410,"Y":504},{"Bonus":0,"Continent":"K45","ID":8501,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8501","ServerKey":"pl181","X":524,"Y":410},{"Bonus":0,"Continent":"K55","ID":8502,"Name":"- 077 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8502","ServerKey":"pl181","X":535,"Y":586},{"Bonus":0,"Continent":"K54","ID":8503,"Name":"Nowa Nadzieja 1","PlayerID":699383121,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8503","ServerKey":"pl181","X":497,"Y":592},{"Bonus":0,"Continent":"K44","ID":8504,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8504","ServerKey":"pl181","X":479,"Y":408},{"Bonus":0,"Continent":"K55","ID":8505,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8505","ServerKey":"pl181","X":574,"Y":554},{"Bonus":3,"Continent":"K44","ID":8506,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8506","ServerKey":"pl181","X":418,"Y":456},{"Bonus":0,"Continent":"K54","ID":8507,"Name":"KIELBA 044","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8507","ServerKey":"pl181","X":458,"Y":582},{"Bonus":0,"Continent":"K55","ID":8508,"Name":"- 057 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8508","ServerKey":"pl181","X":540,"Y":582},{"Bonus":0,"Continent":"K55","ID":8509,"Name":"LubiƂa rĂłĆŒe..","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8509","ServerKey":"pl181","X":562,"Y":565},{"Bonus":0,"Continent":"K55","ID":8510,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8510","ServerKey":"pl181","X":569,"Y":563},{"Bonus":6,"Continent":"K45","ID":8511,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8511","ServerKey":"pl181","X":582,"Y":462},{"Bonus":0,"Continent":"K44","ID":8512,"Name":"krzysiek1293-vequ2","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8512","ServerKey":"pl181","X":412,"Y":425},{"Bonus":0,"Continent":"K45","ID":8513,"Name":"ADEN","PlayerID":698588535,"Points":6912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8513","ServerKey":"pl181","X":560,"Y":429},{"Bonus":0,"Continent":"K54","ID":8514,"Name":"Majin Buu 002","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8514","ServerKey":"pl181","X":440,"Y":571},{"Bonus":0,"Continent":"K35","ID":8516,"Name":"047","PlayerID":849063849,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8516","ServerKey":"pl181","X":565,"Y":395},{"Bonus":0,"Continent":"K54","ID":8517,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8517","ServerKey":"pl181","X":411,"Y":514},{"Bonus":0,"Continent":"K64","ID":8518,"Name":"049 - A01.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8518","ServerKey":"pl181","X":440,"Y":603},{"Bonus":4,"Continent":"K45","ID":8519,"Name":"Gattacka","PlayerID":699298370,"Points":7333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8519","ServerKey":"pl181","X":593,"Y":492},{"Bonus":0,"Continent":"K55","ID":8520,"Name":"[004] Maak jou dood *","PlayerID":848985692,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8520","ServerKey":"pl181","X":590,"Y":525},{"Bonus":6,"Continent":"K45","ID":8521,"Name":"182","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8521","ServerKey":"pl181","X":558,"Y":428},{"Bonus":0,"Continent":"K55","ID":8522,"Name":"CALL 1024","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8522","ServerKey":"pl181","X":561,"Y":568},{"Bonus":0,"Continent":"K55","ID":8523,"Name":"0.Columbia","PlayerID":698215322,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8523","ServerKey":"pl181","X":522,"Y":588},{"Bonus":0,"Continent":"K44","ID":8524,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8524","ServerKey":"pl181","X":406,"Y":490},{"Bonus":0,"Continent":"K45","ID":8525,"Name":"BBB","PlayerID":1006847,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8525","ServerKey":"pl181","X":555,"Y":425},{"Bonus":0,"Continent":"K45","ID":8526,"Name":"048","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8526","ServerKey":"pl181","X":552,"Y":400},{"Bonus":0,"Continent":"K54","ID":8527,"Name":"KIELBA 014","PlayerID":699342219,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8527","ServerKey":"pl181","X":445,"Y":572},{"Bonus":0,"Continent":"K43","ID":8528,"Name":"Avanti!","PlayerID":698625834,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8528","ServerKey":"pl181","X":378,"Y":479},{"Bonus":0,"Continent":"K54","ID":8529,"Name":"ObƂo...","PlayerID":699443920,"Points":3633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8529","ServerKey":"pl181","X":432,"Y":562},{"Bonus":0,"Continent":"K45","ID":8530,"Name":"MasteroN 05","PlayerID":699379895,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8530","ServerKey":"pl181","X":570,"Y":442},{"Bonus":0,"Continent":"K45","ID":8531,"Name":"Wioska 516","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8531","ServerKey":"pl181","X":584,"Y":456},{"Bonus":0,"Continent":"K54","ID":8532,"Name":"Majin Buu 001","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8532","ServerKey":"pl181","X":442,"Y":572},{"Bonus":0,"Continent":"K45","ID":8533,"Name":"-9-","PlayerID":699347951,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8533","ServerKey":"pl181","X":591,"Y":477},{"Bonus":0,"Continent":"K65","ID":8534,"Name":"ƚmieszki","PlayerID":3454753,"Points":9168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8534","ServerKey":"pl181","X":532,"Y":618},{"Bonus":0,"Continent":"K44","ID":8535,"Name":"Syrup Village","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8535","ServerKey":"pl181","X":499,"Y":410},{"Bonus":0,"Continent":"K44","ID":8536,"Name":"[A]_[049] Dejv.oldplyr","PlayerID":699380607,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8536","ServerKey":"pl181","X":408,"Y":484},{"Bonus":0,"Continent":"K54","ID":8537,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8537","ServerKey":"pl181","X":410,"Y":507},{"Bonus":0,"Continent":"K54","ID":8539,"Name":"Teatr","PlayerID":7249451,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8539","ServerKey":"pl181","X":434,"Y":566},{"Bonus":0,"Continent":"K44","ID":8540,"Name":"0098","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8540","ServerKey":"pl181","X":447,"Y":423},{"Bonus":0,"Continent":"K45","ID":8541,"Name":".:142:. Niangmen","PlayerID":848934935,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8541","ServerKey":"pl181","X":508,"Y":406},{"Bonus":1,"Continent":"K55","ID":8542,"Name":"- 082 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8542","ServerKey":"pl181","X":537,"Y":585},{"Bonus":0,"Continent":"K65","ID":8543,"Name":"*301*","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8543","ServerKey":"pl181","X":507,"Y":612},{"Bonus":0,"Continent":"K45","ID":8544,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8544","ServerKey":"pl181","X":532,"Y":412},{"Bonus":0,"Continent":"K55","ID":8545,"Name":"0060","PlayerID":698416970,"Points":7364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8545","ServerKey":"pl181","X":592,"Y":510},{"Bonus":0,"Continent":"K44","ID":8546,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8546","ServerKey":"pl181","X":418,"Y":458},{"Bonus":0,"Continent":"K45","ID":8547,"Name":"Gattacka","PlayerID":699298370,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8547","ServerKey":"pl181","X":591,"Y":494},{"Bonus":0,"Continent":"K44","ID":8548,"Name":"B033","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8548","ServerKey":"pl181","X":488,"Y":455},{"Bonus":0,"Continent":"K55","ID":8549,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8549","ServerKey":"pl181","X":577,"Y":550},{"Bonus":0,"Continent":"K44","ID":8550,"Name":"Canberra","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8550","ServerKey":"pl181","X":422,"Y":450},{"Bonus":0,"Continent":"K44","ID":8551,"Name":"Alaska","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8551","ServerKey":"pl181","X":414,"Y":472},{"Bonus":0,"Continent":"K55","ID":8552,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8552","ServerKey":"pl181","X":581,"Y":544},{"Bonus":0,"Continent":"K55","ID":8553,"Name":"- 318 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8553","ServerKey":"pl181","X":527,"Y":588},{"Bonus":0,"Continent":"K55","ID":8554,"Name":"Research and Development","PlayerID":8199417,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8554","ServerKey":"pl181","X":532,"Y":585},{"Bonus":0,"Continent":"K55","ID":8555,"Name":"S7 - 6 Service Tunnel","PlayerID":8199417,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8555","ServerKey":"pl181","X":533,"Y":585},{"Bonus":0,"Continent":"K45","ID":8556,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8556","ServerKey":"pl181","X":585,"Y":466},{"Bonus":0,"Continent":"K45","ID":8557,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8557","ServerKey":"pl181","X":517,"Y":407},{"Bonus":0,"Continent":"K45","ID":8558,"Name":"#002","PlayerID":699368887,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8558","ServerKey":"pl181","X":577,"Y":447},{"Bonus":0,"Continent":"K55","ID":8559,"Name":"[014] Kashe Ka","PlayerID":848985692,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8559","ServerKey":"pl181","X":591,"Y":526},{"Bonus":0,"Continent":"K54","ID":8560,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8560","ServerKey":"pl181","X":416,"Y":536},{"Bonus":9,"Continent":"K45","ID":8561,"Name":"041","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8561","ServerKey":"pl181","X":557,"Y":427},{"Bonus":0,"Continent":"K54","ID":8562,"Name":"Suppi","PlayerID":699856962,"Points":9944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8562","ServerKey":"pl181","X":419,"Y":546},{"Bonus":0,"Continent":"K44","ID":8563,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8563","ServerKey":"pl181","X":431,"Y":440},{"Bonus":0,"Continent":"K54","ID":8564,"Name":"COUSINS","PlayerID":7976264,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8564","ServerKey":"pl181","X":484,"Y":592},{"Bonus":0,"Continent":"K45","ID":8565,"Name":"058","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8565","ServerKey":"pl181","X":539,"Y":418},{"Bonus":0,"Continent":"K44","ID":8566,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8566","ServerKey":"pl181","X":490,"Y":407},{"Bonus":0,"Continent":"K54","ID":8567,"Name":"KIELBA 004","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8567","ServerKey":"pl181","X":446,"Y":575},{"Bonus":0,"Continent":"K54","ID":8568,"Name":"KARTAGINA ..4","PlayerID":8438707,"Points":8770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8568","ServerKey":"pl181","X":456,"Y":580},{"Bonus":0,"Continent":"K65","ID":8569,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8569","ServerKey":"pl181","X":531,"Y":611},{"Bonus":0,"Continent":"K55","ID":8570,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8570","ServerKey":"pl181","X":565,"Y":569},{"Bonus":0,"Continent":"K55","ID":8571,"Name":"019. Brzeginka","PlayerID":699703642,"Points":6676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8571","ServerKey":"pl181","X":505,"Y":582},{"Bonus":0,"Continent":"K54","ID":8572,"Name":"5. Szprotka","PlayerID":699781762,"Points":10013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8572","ServerKey":"pl181","X":478,"Y":536},{"Bonus":0,"Continent":"K44","ID":8573,"Name":"[A]_[036] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8573","ServerKey":"pl181","X":409,"Y":475},{"Bonus":0,"Continent":"K45","ID":8574,"Name":"041.","PlayerID":849094609,"Points":9456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8574","ServerKey":"pl181","X":579,"Y":451},{"Bonus":0,"Continent":"K45","ID":8575,"Name":"Wioska 513","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8575","ServerKey":"pl181","X":584,"Y":458},{"Bonus":0,"Continent":"K55","ID":8576,"Name":"- 210 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8576","ServerKey":"pl181","X":549,"Y":578},{"Bonus":0,"Continent":"K44","ID":8577,"Name":"Suppi","PlayerID":699856962,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8577","ServerKey":"pl181","X":426,"Y":447},{"Bonus":0,"Continent":"K54","ID":8578,"Name":"jol jol","PlayerID":9167250,"Points":7567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8578","ServerKey":"pl181","X":402,"Y":566},{"Bonus":0,"Continent":"K55","ID":8579,"Name":"0056","PlayerID":698416970,"Points":9675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8579","ServerKey":"pl181","X":592,"Y":517},{"Bonus":0,"Continent":"K55","ID":8580,"Name":"|020|","PlayerID":873575,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8580","ServerKey":"pl181","X":557,"Y":570},{"Bonus":0,"Continent":"K54","ID":8581,"Name":"KIELBA 024","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8581","ServerKey":"pl181","X":452,"Y":581},{"Bonus":0,"Continent":"K34","ID":8582,"Name":"[0055]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8582","ServerKey":"pl181","X":448,"Y":397},{"Bonus":0,"Continent":"K44","ID":8583,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8583","ServerKey":"pl181","X":493,"Y":408},{"Bonus":0,"Continent":"K54","ID":8584,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8584","ServerKey":"pl181","X":413,"Y":536},{"Bonus":0,"Continent":"K44","ID":8585,"Name":"Monetki","PlayerID":699098531,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8585","ServerKey":"pl181","X":481,"Y":411},{"Bonus":0,"Continent":"K45","ID":8586,"Name":"083.","PlayerID":849094609,"Points":11344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8586","ServerKey":"pl181","X":588,"Y":478},{"Bonus":0,"Continent":"K54","ID":8587,"Name":"061","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8587","ServerKey":"pl181","X":406,"Y":504},{"Bonus":0,"Continent":"K44","ID":8588,"Name":"A016","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8588","ServerKey":"pl181","X":449,"Y":420},{"Bonus":0,"Continent":"K54","ID":8589,"Name":"Idar","PlayerID":8779575,"Points":3694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8589","ServerKey":"pl181","X":428,"Y":555},{"Bonus":0,"Continent":"K55","ID":8590,"Name":"0034","PlayerID":6510480,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8590","ServerKey":"pl181","X":589,"Y":513},{"Bonus":8,"Continent":"K55","ID":8591,"Name":"- 129 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8591","ServerKey":"pl181","X":542,"Y":583},{"Bonus":0,"Continent":"K54","ID":8592,"Name":"#067","PlayerID":699605333,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8592","ServerKey":"pl181","X":471,"Y":586},{"Bonus":0,"Continent":"K45","ID":8593,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8593","ServerKey":"pl181","X":519,"Y":408},{"Bonus":0,"Continent":"K54","ID":8594,"Name":"02. Wioska Prykopek","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8594","ServerKey":"pl181","X":470,"Y":589},{"Bonus":0,"Continent":"K44","ID":8595,"Name":"x13","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8595","ServerKey":"pl181","X":422,"Y":448},{"Bonus":0,"Continent":"K45","ID":8596,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8596","ServerKey":"pl181","X":573,"Y":441},{"Bonus":0,"Continent":"K44","ID":8597,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8597","ServerKey":"pl181","X":476,"Y":409},{"Bonus":0,"Continent":"K54","ID":8598,"Name":"NOT?","PlayerID":9236866,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8598","ServerKey":"pl181","X":408,"Y":518},{"Bonus":0,"Continent":"K54","ID":8599,"Name":"Ghost Rider4","PlayerID":7976264,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8599","ServerKey":"pl181","X":487,"Y":593},{"Bonus":0,"Continent":"K43","ID":8600,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8600","ServerKey":"pl181","X":394,"Y":455},{"Bonus":0,"Continent":"K44","ID":8601,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8601","ServerKey":"pl181","X":447,"Y":454},{"Bonus":0,"Continent":"K54","ID":8602,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8602","ServerKey":"pl181","X":481,"Y":590},{"Bonus":0,"Continent":"K54","ID":8603,"Name":"Majin Buu 016","PlayerID":699054373,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8603","ServerKey":"pl181","X":436,"Y":565},{"Bonus":0,"Continent":"K54","ID":8604,"Name":". Fight Club","PlayerID":8779575,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8604","ServerKey":"pl181","X":422,"Y":548},{"Bonus":0,"Continent":"K45","ID":8605,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8605","ServerKey":"pl181","X":526,"Y":403},{"Bonus":0,"Continent":"K54","ID":8606,"Name":"Wioska 0020","PlayerID":1804724,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8606","ServerKey":"pl181","X":408,"Y":523},{"Bonus":0,"Continent":"K44","ID":8607,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8607","ServerKey":"pl181","X":428,"Y":441},{"Bonus":3,"Continent":"K44","ID":8608,"Name":"029 Honolulu","PlayerID":9291984,"Points":9597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8608","ServerKey":"pl181","X":434,"Y":436},{"Bonus":0,"Continent":"K45","ID":8609,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8609","ServerKey":"pl181","X":523,"Y":409},{"Bonus":0,"Continent":"K55","ID":8610,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8610","ServerKey":"pl181","X":592,"Y":511},{"Bonus":0,"Continent":"K45","ID":8611,"Name":".:015:. Szafa","PlayerID":8649412,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8611","ServerKey":"pl181","X":507,"Y":405},{"Bonus":0,"Continent":"K45","ID":8612,"Name":"West 02","PlayerID":698702991,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8612","ServerKey":"pl181","X":591,"Y":480},{"Bonus":3,"Continent":"K54","ID":8613,"Name":"KIELBA 008","PlayerID":699342219,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8613","ServerKey":"pl181","X":445,"Y":573},{"Bonus":0,"Continent":"K54","ID":8614,"Name":"D0001","PlayerID":8841266,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8614","ServerKey":"pl181","X":439,"Y":569},{"Bonus":0,"Continent":"K55","ID":8615,"Name":"merhet","PlayerID":698215322,"Points":10036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8615","ServerKey":"pl181","X":538,"Y":587},{"Bonus":0,"Continent":"K43","ID":8616,"Name":"A0010","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8616","ServerKey":"pl181","X":384,"Y":483},{"Bonus":0,"Continent":"K54","ID":8617,"Name":"096","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8617","ServerKey":"pl181","X":409,"Y":526},{"Bonus":0,"Continent":"K55","ID":8618,"Name":"Erebor 3","PlayerID":699383121,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8618","ServerKey":"pl181","X":502,"Y":594},{"Bonus":0,"Continent":"K55","ID":8619,"Name":"CALL 1001","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8619","ServerKey":"pl181","X":555,"Y":577},{"Bonus":0,"Continent":"K65","ID":8620,"Name":"ƚmieszki","PlayerID":3454753,"Points":9131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8620","ServerKey":"pl181","X":534,"Y":619},{"Bonus":0,"Continent":"K55","ID":8621,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8621","ServerKey":"pl181","X":570,"Y":558},{"Bonus":0,"Continent":"K54","ID":8622,"Name":"Suppi","PlayerID":699856962,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8622","ServerKey":"pl181","X":412,"Y":536},{"Bonus":0,"Continent":"K44","ID":8623,"Name":"Popas3","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8623","ServerKey":"pl181","X":407,"Y":498},{"Bonus":0,"Continent":"K54","ID":8624,"Name":"Suppi","PlayerID":699856962,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8624","ServerKey":"pl181","X":417,"Y":544},{"Bonus":0,"Continent":"K54","ID":8625,"Name":"098","PlayerID":699851427,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8625","ServerKey":"pl181","X":414,"Y":530},{"Bonus":0,"Continent":"K45","ID":8626,"Name":".achim.","PlayerID":6936607,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8626","ServerKey":"pl181","X":537,"Y":413},{"Bonus":0,"Continent":"K45","ID":8627,"Name":"028","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8627","ServerKey":"pl181","X":547,"Y":420},{"Bonus":0,"Continent":"K54","ID":8628,"Name":"Sparta_62","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8628","ServerKey":"pl181","X":493,"Y":594},{"Bonus":0,"Continent":"K64","ID":8629,"Name":"scoti","PlayerID":699494488,"Points":10349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8629","ServerKey":"pl181","X":492,"Y":619},{"Bonus":0,"Continent":"K54","ID":8630,"Name":"Wioska 0007","PlayerID":1804724,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8630","ServerKey":"pl181","X":410,"Y":524},{"Bonus":0,"Continent":"K44","ID":8631,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8631","ServerKey":"pl181","X":499,"Y":406},{"Bonus":0,"Continent":"K45","ID":8632,"Name":"-11-","PlayerID":699347951,"Points":10177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8632","ServerKey":"pl181","X":590,"Y":472},{"Bonus":0,"Continent":"K55","ID":8633,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8633","ServerKey":"pl181","X":577,"Y":551},{"Bonus":0,"Continent":"K45","ID":8634,"Name":"KOSZARY ABADONA","PlayerID":699347951,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8634","ServerKey":"pl181","X":590,"Y":484},{"Bonus":0,"Continent":"K54","ID":8635,"Name":"Mmmmm","PlayerID":699833171,"Points":4632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8635","ServerKey":"pl181","X":429,"Y":563},{"Bonus":0,"Continent":"K54","ID":8636,"Name":"KIELBA 089","PlayerID":699342219,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8636","ServerKey":"pl181","X":452,"Y":578},{"Bonus":0,"Continent":"K45","ID":8637,"Name":"055","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8637","ServerKey":"pl181","X":545,"Y":416},{"Bonus":0,"Continent":"K44","ID":8638,"Name":"[A]_[033] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8638","ServerKey":"pl181","X":404,"Y":477},{"Bonus":5,"Continent":"K45","ID":8639,"Name":".:002:. Another World","PlayerID":8649412,"Points":8930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8639","ServerKey":"pl181","X":510,"Y":408},{"Bonus":0,"Continent":"K44","ID":8640,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8640","ServerKey":"pl181","X":406,"Y":491},{"Bonus":0,"Continent":"K54","ID":8641,"Name":"0000001#","PlayerID":849089881,"Points":10542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8641","ServerKey":"pl181","X":432,"Y":574},{"Bonus":0,"Continent":"K45","ID":8642,"Name":"034","PlayerID":849063849,"Points":9259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8642","ServerKey":"pl181","X":557,"Y":428},{"Bonus":0,"Continent":"K45","ID":8643,"Name":"Jehu_Kingdom_26_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8643","ServerKey":"pl181","X":598,"Y":485},{"Bonus":0,"Continent":"K44","ID":8644,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8644","ServerKey":"pl181","X":409,"Y":487},{"Bonus":0,"Continent":"K55","ID":8646,"Name":"[104]","PlayerID":8000875,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8646","ServerKey":"pl181","X":568,"Y":565},{"Bonus":0,"Continent":"K44","ID":8647,"Name":"SsSs","PlayerID":1536625,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8647","ServerKey":"pl181","X":417,"Y":492},{"Bonus":0,"Continent":"K45","ID":8648,"Name":"AbacadA 016","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8648","ServerKey":"pl181","X":559,"Y":426},{"Bonus":0,"Continent":"K65","ID":8649,"Name":"Hammerhead","PlayerID":8199417,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8649","ServerKey":"pl181","X":531,"Y":613},{"Bonus":0,"Continent":"K54","ID":8650,"Name":"037","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8650","ServerKey":"pl181","X":411,"Y":524},{"Bonus":0,"Continent":"K44","ID":8651,"Name":"Szlachcic","PlayerID":698388578,"Points":9284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8651","ServerKey":"pl181","X":470,"Y":414},{"Bonus":0,"Continent":"K45","ID":8652,"Name":"[137] North","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8652","ServerKey":"pl181","X":587,"Y":469},{"Bonus":0,"Continent":"K45","ID":8653,"Name":"Gattacka","PlayerID":699298370,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8653","ServerKey":"pl181","X":594,"Y":488},{"Bonus":0,"Continent":"K44","ID":8654,"Name":"Monetki ???","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8654","ServerKey":"pl181","X":479,"Y":406},{"Bonus":0,"Continent":"K45","ID":8655,"Name":"003 Jednak za maƂo deffa w nocy","PlayerID":698829590,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8655","ServerKey":"pl181","X":587,"Y":463},{"Bonus":0,"Continent":"K44","ID":8656,"Name":"[A]_[034] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8656","ServerKey":"pl181","X":409,"Y":474},{"Bonus":0,"Continent":"K45","ID":8657,"Name":"027. Beta","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8657","ServerKey":"pl181","X":543,"Y":416},{"Bonus":0,"Continent":"K55","ID":8658,"Name":"#044","PlayerID":849001572,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8658","ServerKey":"pl181","X":520,"Y":591},{"Bonus":0,"Continent":"K45","ID":8659,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8659","ServerKey":"pl181","X":589,"Y":468},{"Bonus":0,"Continent":"K44","ID":8660,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":6485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8660","ServerKey":"pl181","X":464,"Y":415},{"Bonus":0,"Continent":"K54","ID":8661,"Name":"Teatr","PlayerID":7249451,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8661","ServerKey":"pl181","X":436,"Y":570},{"Bonus":0,"Continent":"K55","ID":8662,"Name":"011","PlayerID":699194766,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8662","ServerKey":"pl181","X":545,"Y":521},{"Bonus":0,"Continent":"K54","ID":8663,"Name":"KIELBA 047","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8663","ServerKey":"pl181","X":460,"Y":583},{"Bonus":1,"Continent":"K44","ID":8664,"Name":"x05","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8664","ServerKey":"pl181","X":423,"Y":445},{"Bonus":0,"Continent":"K54","ID":8665,"Name":"Suppi","PlayerID":699856962,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8665","ServerKey":"pl181","X":416,"Y":544},{"Bonus":0,"Continent":"K45","ID":8666,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8666","ServerKey":"pl181","X":521,"Y":407},{"Bonus":0,"Continent":"K44","ID":8667,"Name":"HoƂopole","PlayerID":699433558,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8667","ServerKey":"pl181","X":480,"Y":400},{"Bonus":0,"Continent":"K45","ID":8668,"Name":".:023:. Zlew","PlayerID":8649412,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8668","ServerKey":"pl181","X":509,"Y":409},{"Bonus":0,"Continent":"K54","ID":8669,"Name":"???","PlayerID":8779575,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8669","ServerKey":"pl181","X":425,"Y":557},{"Bonus":0,"Continent":"K45","ID":8670,"Name":"[138] North","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8670","ServerKey":"pl181","X":587,"Y":472},{"Bonus":0,"Continent":"K44","ID":8671,"Name":"FKG 01-16","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8671","ServerKey":"pl181","X":418,"Y":406},{"Bonus":0,"Continent":"K54","ID":8672,"Name":"089","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8672","ServerKey":"pl181","X":406,"Y":513},{"Bonus":0,"Continent":"K35","ID":8673,"Name":"0002","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8673","ServerKey":"pl181","X":558,"Y":394},{"Bonus":0,"Continent":"K54","ID":8674,"Name":"Daleko 025","PlayerID":6116940,"Points":8208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8674","ServerKey":"pl181","X":481,"Y":594},{"Bonus":0,"Continent":"K54","ID":8675,"Name":"Teatr","PlayerID":7249451,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8675","ServerKey":"pl181","X":435,"Y":568},{"Bonus":0,"Continent":"K54","ID":8676,"Name":"022","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8676","ServerKey":"pl181","X":410,"Y":527},{"Bonus":0,"Continent":"K54","ID":8677,"Name":"Malbork","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8677","ServerKey":"pl181","X":441,"Y":571},{"Bonus":0,"Continent":"K46","ID":8678,"Name":"0001","PlayerID":699429153,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8678","ServerKey":"pl181","X":606,"Y":495},{"Bonus":0,"Continent":"K55","ID":8679,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8679","ServerKey":"pl181","X":578,"Y":552},{"Bonus":3,"Continent":"K45","ID":8680,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8680","ServerKey":"pl181","X":528,"Y":413},{"Bonus":0,"Continent":"K45","ID":8681,"Name":"026 Andora","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8681","ServerKey":"pl181","X":589,"Y":474},{"Bonus":0,"Continent":"K44","ID":8682,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8682","ServerKey":"pl181","X":432,"Y":438},{"Bonus":0,"Continent":"K54","ID":8683,"Name":".zaƛ ten KUBA","PlayerID":8779575,"Points":8840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8683","ServerKey":"pl181","X":423,"Y":550},{"Bonus":0,"Continent":"K54","ID":8684,"Name":"KIELBA 015","PlayerID":699342219,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8684","ServerKey":"pl181","X":442,"Y":573},{"Bonus":0,"Continent":"K45","ID":8685,"Name":"003 Pewter City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8685","ServerKey":"pl181","X":595,"Y":499},{"Bonus":0,"Continent":"K55","ID":8686,"Name":"#012","PlayerID":849001572,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8686","ServerKey":"pl181","X":532,"Y":588},{"Bonus":0,"Continent":"K55","ID":8687,"Name":"0020","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8687","ServerKey":"pl181","X":594,"Y":502},{"Bonus":0,"Continent":"K54","ID":8688,"Name":"KIELBA 012","PlayerID":699342219,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8688","ServerKey":"pl181","X":445,"Y":576},{"Bonus":0,"Continent":"K44","ID":8689,"Name":"Popas","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8689","ServerKey":"pl181","X":405,"Y":498},{"Bonus":0,"Continent":"K55","ID":8690,"Name":"019","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8690","ServerKey":"pl181","X":575,"Y":556},{"Bonus":0,"Continent":"K46","ID":8691,"Name":"012","PlayerID":8459255,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8691","ServerKey":"pl181","X":618,"Y":476},{"Bonus":0,"Continent":"K55","ID":8692,"Name":"Sector 6 Slums Area","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8692","ServerKey":"pl181","X":514,"Y":591},{"Bonus":0,"Continent":"K54","ID":8693,"Name":"Okuba","PlayerID":699443920,"Points":3628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8693","ServerKey":"pl181","X":431,"Y":556},{"Bonus":0,"Continent":"K44","ID":8694,"Name":"-013- Wszystko dlatego ĆŒe","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8694","ServerKey":"pl181","X":456,"Y":418},{"Bonus":0,"Continent":"K45","ID":8695,"Name":"Wioska barbarzyƄska 018|","PlayerID":6343784,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8695","ServerKey":"pl181","X":547,"Y":421},{"Bonus":0,"Continent":"K54","ID":8696,"Name":"#068","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8696","ServerKey":"pl181","X":476,"Y":588},{"Bonus":0,"Continent":"K45","ID":8697,"Name":"045.","PlayerID":849094609,"Points":9760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8697","ServerKey":"pl181","X":582,"Y":456},{"Bonus":0,"Continent":"K54","ID":8698,"Name":"Village","PlayerID":849094067,"Points":8303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8698","ServerKey":"pl181","X":470,"Y":587},{"Bonus":0,"Continent":"K45","ID":8699,"Name":"042.","PlayerID":849094609,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8699","ServerKey":"pl181","X":578,"Y":451},{"Bonus":0,"Continent":"K35","ID":8700,"Name":"045","PlayerID":698739350,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8700","ServerKey":"pl181","X":503,"Y":385},{"Bonus":0,"Continent":"K45","ID":8701,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8701","ServerKey":"pl181","X":518,"Y":407},{"Bonus":6,"Continent":"K54","ID":8702,"Name":"Teatr","PlayerID":7249451,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8702","ServerKey":"pl181","X":434,"Y":568},{"Bonus":0,"Continent":"K65","ID":8703,"Name":"098 MEHEHE","PlayerID":6116940,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8703","ServerKey":"pl181","X":518,"Y":612},{"Bonus":0,"Continent":"K55","ID":8704,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8704","ServerKey":"pl181","X":584,"Y":543},{"Bonus":0,"Continent":"K45","ID":8705,"Name":"ADEN","PlayerID":698588535,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8705","ServerKey":"pl181","X":562,"Y":432},{"Bonus":0,"Continent":"K55","ID":8706,"Name":"Sector 1","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8706","ServerKey":"pl181","X":531,"Y":585},{"Bonus":0,"Continent":"K54","ID":8707,"Name":"COUSINS","PlayerID":7976264,"Points":10041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8707","ServerKey":"pl181","X":485,"Y":593},{"Bonus":1,"Continent":"K54","ID":8708,"Name":"Osada koczownikĂłw","PlayerID":699443920,"Points":3641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8708","ServerKey":"pl181","X":430,"Y":560},{"Bonus":0,"Continent":"K44","ID":8709,"Name":"Cast Away 019","PlayerID":698290577,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8709","ServerKey":"pl181","X":444,"Y":484},{"Bonus":0,"Continent":"K55","ID":8710,"Name":"- 214 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8710","ServerKey":"pl181","X":555,"Y":573},{"Bonus":5,"Continent":"K45","ID":8711,"Name":"002 Viridian City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8711","ServerKey":"pl181","X":592,"Y":499},{"Bonus":0,"Continent":"K35","ID":8712,"Name":"Darma Tomi77","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8712","ServerKey":"pl181","X":510,"Y":384},{"Bonus":0,"Continent":"K54","ID":8713,"Name":"Teatr","PlayerID":7249451,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8713","ServerKey":"pl181","X":431,"Y":564},{"Bonus":0,"Continent":"K45","ID":8714,"Name":"ADEN","PlayerID":698588535,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8714","ServerKey":"pl181","X":564,"Y":430},{"Bonus":0,"Continent":"K44","ID":8715,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8715","ServerKey":"pl181","X":472,"Y":411},{"Bonus":0,"Continent":"K45","ID":8717,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8717","ServerKey":"pl181","X":525,"Y":411},{"Bonus":0,"Continent":"K54","ID":8719,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8719","ServerKey":"pl181","X":410,"Y":513},{"Bonus":0,"Continent":"K44","ID":8720,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8720","ServerKey":"pl181","X":408,"Y":498},{"Bonus":0,"Continent":"K54","ID":8721,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8721","ServerKey":"pl181","X":420,"Y":552},{"Bonus":0,"Continent":"K54","ID":8722,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":8573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8722","ServerKey":"pl181","X":475,"Y":588},{"Bonus":0,"Continent":"K45","ID":8723,"Name":"0013","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8723","ServerKey":"pl181","X":595,"Y":497},{"Bonus":0,"Continent":"K45","ID":8724,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8724","ServerKey":"pl181","X":533,"Y":410},{"Bonus":0,"Continent":"K44","ID":8725,"Name":"Popas7","PlayerID":699265922,"Points":9252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8725","ServerKey":"pl181","X":406,"Y":495},{"Bonus":0,"Continent":"K34","ID":8726,"Name":"VN Canalie Braize","PlayerID":699883079,"Points":9558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8726","ServerKey":"pl181","X":467,"Y":380},{"Bonus":0,"Continent":"K54","ID":8727,"Name":"KARTAGINA ..1","PlayerID":8438707,"Points":7904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8727","ServerKey":"pl181","X":455,"Y":582},{"Bonus":0,"Continent":"K54","ID":8728,"Name":"IRW","PlayerID":8779575,"Points":3297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8728","ServerKey":"pl181","X":427,"Y":555},{"Bonus":0,"Continent":"K44","ID":8729,"Name":"0058","PlayerID":3909522,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8729","ServerKey":"pl181","X":446,"Y":421},{"Bonus":0,"Continent":"K54","ID":8730,"Name":"Wioska 0010","PlayerID":1804724,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8730","ServerKey":"pl181","X":408,"Y":519},{"Bonus":0,"Continent":"K45","ID":8731,"Name":"Szlachcic","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8731","ServerKey":"pl181","X":509,"Y":477},{"Bonus":0,"Continent":"K44","ID":8732,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8732","ServerKey":"pl181","X":459,"Y":415},{"Bonus":0,"Continent":"K55","ID":8733,"Name":"- 284 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8733","ServerKey":"pl181","X":517,"Y":592},{"Bonus":0,"Continent":"K55","ID":8734,"Name":"Wioska7","PlayerID":8369778,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8734","ServerKey":"pl181","X":512,"Y":593},{"Bonus":0,"Continent":"K55","ID":8735,"Name":"F074","PlayerID":699189792,"Points":7706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8735","ServerKey":"pl181","X":508,"Y":534},{"Bonus":5,"Continent":"K44","ID":8736,"Name":"[A]_[027] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8736","ServerKey":"pl181","X":408,"Y":482},{"Bonus":0,"Continent":"K44","ID":8737,"Name":"+44 61 Widehem","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8737","ServerKey":"pl181","X":413,"Y":468},{"Bonus":0,"Continent":"K44","ID":8738,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8738","ServerKey":"pl181","X":462,"Y":415},{"Bonus":0,"Continent":"K54","ID":8739,"Name":"012","PlayerID":699364813,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8739","ServerKey":"pl181","X":477,"Y":592},{"Bonus":0,"Continent":"K55","ID":8740,"Name":"CALL 1027","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8740","ServerKey":"pl181","X":558,"Y":574},{"Bonus":0,"Continent":"K44","ID":8741,"Name":"Szlachcic","PlayerID":699098531,"Points":9762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8741","ServerKey":"pl181","X":494,"Y":473},{"Bonus":0,"Continent":"K44","ID":8742,"Name":"PRO8L3M","PlayerID":7491093,"Points":9220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8742","ServerKey":"pl181","X":406,"Y":497},{"Bonus":0,"Continent":"K45","ID":8743,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8743","ServerKey":"pl181","X":534,"Y":411},{"Bonus":0,"Continent":"K54","ID":8744,"Name":"020","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8744","ServerKey":"pl181","X":419,"Y":517},{"Bonus":0,"Continent":"K45","ID":8745,"Name":"ADEN","PlayerID":698588535,"Points":8124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8745","ServerKey":"pl181","X":561,"Y":430},{"Bonus":0,"Continent":"K45","ID":8746,"Name":"051","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8746","ServerKey":"pl181","X":588,"Y":471},{"Bonus":6,"Continent":"K44","ID":8747,"Name":"+44 61 Decines","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8747","ServerKey":"pl181","X":411,"Y":465},{"Bonus":0,"Continent":"K54","ID":8748,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":8001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8748","ServerKey":"pl181","X":422,"Y":553},{"Bonus":0,"Continent":"K54","ID":8749,"Name":"181 Kicia..........","PlayerID":7976264,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8749","ServerKey":"pl181","X":463,"Y":582},{"Bonus":0,"Continent":"K55","ID":8750,"Name":"Sparta_05","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8750","ServerKey":"pl181","X":500,"Y":595},{"Bonus":0,"Continent":"K44","ID":8751,"Name":"+44 61 Bray Dunes","PlayerID":698361257,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8751","ServerKey":"pl181","X":412,"Y":467},{"Bonus":0,"Continent":"K45","ID":8752,"Name":"Winstrol","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8752","ServerKey":"pl181","X":593,"Y":499},{"Bonus":0,"Continent":"K55","ID":8753,"Name":"015","PlayerID":8138506,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8753","ServerKey":"pl181","X":587,"Y":536},{"Bonus":0,"Continent":"K55","ID":8754,"Name":"#0095","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8754","ServerKey":"pl181","X":510,"Y":595},{"Bonus":0,"Continent":"K44","ID":8755,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8755","ServerKey":"pl181","X":464,"Y":414},{"Bonus":0,"Continent":"K54","ID":8756,"Name":"Daleko 027","PlayerID":8369778,"Points":8518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8756","ServerKey":"pl181","X":480,"Y":592},{"Bonus":0,"Continent":"K45","ID":8757,"Name":"079","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8757","ServerKey":"pl181","X":549,"Y":421},{"Bonus":0,"Continent":"K54","ID":8758,"Name":"Teatr","PlayerID":7249451,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8758","ServerKey":"pl181","X":434,"Y":567},{"Bonus":0,"Continent":"K45","ID":8759,"Name":".:025:. Rower","PlayerID":8649412,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8759","ServerKey":"pl181","X":513,"Y":407},{"Bonus":0,"Continent":"K45","ID":8760,"Name":"090","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8760","ServerKey":"pl181","X":592,"Y":481},{"Bonus":0,"Continent":"K45","ID":8761,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8761","ServerKey":"pl181","X":568,"Y":436},{"Bonus":0,"Continent":"K54","ID":8762,"Name":"0016","PlayerID":699280514,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8762","ServerKey":"pl181","X":477,"Y":593},{"Bonus":0,"Continent":"K54","ID":8763,"Name":"017 - Legancko***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8763","ServerKey":"pl181","X":448,"Y":580},{"Bonus":5,"Continent":"K44","ID":8764,"Name":"West Blue","PlayerID":699433558,"Points":10530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8764","ServerKey":"pl181","X":492,"Y":407},{"Bonus":0,"Continent":"K44","ID":8765,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8765","ServerKey":"pl181","X":459,"Y":414},{"Bonus":0,"Continent":"K54","ID":8767,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8767","ServerKey":"pl181","X":408,"Y":511},{"Bonus":0,"Continent":"K46","ID":8768,"Name":"L 4","PlayerID":849027653,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8768","ServerKey":"pl181","X":613,"Y":476},{"Bonus":0,"Continent":"K45","ID":8769,"Name":".achim.","PlayerID":6936607,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8769","ServerKey":"pl181","X":538,"Y":412},{"Bonus":0,"Continent":"K45","ID":8770,"Name":"ADEN","PlayerID":698588535,"Points":7819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8770","ServerKey":"pl181","X":565,"Y":433},{"Bonus":8,"Continent":"K45","ID":8771,"Name":"027","PlayerID":699368887,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8771","ServerKey":"pl181","X":574,"Y":441},{"Bonus":0,"Continent":"K54","ID":8772,"Name":". Ć»ywiec","PlayerID":698971484,"Points":7636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8772","ServerKey":"pl181","X":424,"Y":548},{"Bonus":0,"Continent":"K65","ID":8773,"Name":"020","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8773","ServerKey":"pl181","X":542,"Y":612},{"Bonus":0,"Continent":"K55","ID":8774,"Name":"010","PlayerID":8138506,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8774","ServerKey":"pl181","X":584,"Y":540},{"Bonus":0,"Continent":"K44","ID":8775,"Name":"00592","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8775","ServerKey":"pl181","X":450,"Y":423},{"Bonus":0,"Continent":"K54","ID":8776,"Name":"Suppi","PlayerID":699856962,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8776","ServerKey":"pl181","X":414,"Y":540},{"Bonus":0,"Continent":"K55","ID":8777,"Name":"Bez sƂów","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8777","ServerKey":"pl181","X":564,"Y":568},{"Bonus":0,"Continent":"K44","ID":8778,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8778","ServerKey":"pl181","X":468,"Y":414},{"Bonus":0,"Continent":"K44","ID":8779,"Name":"Radek","PlayerID":699523631,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8779","ServerKey":"pl181","X":410,"Y":473},{"Bonus":0,"Continent":"K54","ID":8780,"Name":"097","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8780","ServerKey":"pl181","X":409,"Y":525},{"Bonus":0,"Continent":"K55","ID":8781,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8781","ServerKey":"pl181","X":573,"Y":560},{"Bonus":0,"Continent":"K55","ID":8782,"Name":"CALL 1022","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8782","ServerKey":"pl181","X":559,"Y":574},{"Bonus":0,"Continent":"K44","ID":8783,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8783","ServerKey":"pl181","X":485,"Y":408},{"Bonus":0,"Continent":"K55","ID":8784,"Name":"Mzm08.","PlayerID":7142659,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8784","ServerKey":"pl181","X":593,"Y":510},{"Bonus":0,"Continent":"K45","ID":8785,"Name":"092","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8785","ServerKey":"pl181","X":591,"Y":472},{"Bonus":0,"Continent":"K45","ID":8786,"Name":"004","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8786","ServerKey":"pl181","X":561,"Y":403},{"Bonus":0,"Continent":"K54","ID":8787,"Name":"(010)","PlayerID":699846892,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8787","ServerKey":"pl181","X":416,"Y":538},{"Bonus":0,"Continent":"K43","ID":8788,"Name":"Kanczendzonga","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8788","ServerKey":"pl181","X":378,"Y":486},{"Bonus":0,"Continent":"K44","ID":8789,"Name":"0062 ~26~ Lech -7","PlayerID":3909522,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8789","ServerKey":"pl181","X":437,"Y":433},{"Bonus":0,"Continent":"K54","ID":8790,"Name":"074","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8790","ServerKey":"pl181","X":408,"Y":516},{"Bonus":0,"Continent":"K45","ID":8791,"Name":"Wioska 517","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8791","ServerKey":"pl181","X":582,"Y":453},{"Bonus":0,"Continent":"K54","ID":8792,"Name":"011","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8792","ServerKey":"pl181","X":414,"Y":539},{"Bonus":0,"Continent":"K54","ID":8793,"Name":"Suppi","PlayerID":699856962,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8793","ServerKey":"pl181","X":416,"Y":539},{"Bonus":0,"Continent":"K44","ID":8794,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8794","ServerKey":"pl181","X":418,"Y":459},{"Bonus":2,"Continent":"K44","ID":8795,"Name":"Osada koczownikĂłw","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8795","ServerKey":"pl181","X":424,"Y":446},{"Bonus":0,"Continent":"K45","ID":8796,"Name":"Taran","PlayerID":699759128,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8796","ServerKey":"pl181","X":583,"Y":453},{"Bonus":0,"Continent":"K45","ID":8797,"Name":"Gattacka","PlayerID":699298370,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8797","ServerKey":"pl181","X":594,"Y":487},{"Bonus":0,"Continent":"K34","ID":8798,"Name":"XXXX","PlayerID":849054951,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8798","ServerKey":"pl181","X":491,"Y":383},{"Bonus":0,"Continent":"K55","ID":8799,"Name":"008. Wietrzyca","PlayerID":699703642,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8799","ServerKey":"pl181","X":507,"Y":592},{"Bonus":5,"Continent":"K55","ID":8800,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8800","ServerKey":"pl181","X":581,"Y":550},{"Bonus":0,"Continent":"K44","ID":8801,"Name":"Monetki 2","PlayerID":699098531,"Points":10349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8801","ServerKey":"pl181","X":470,"Y":411},{"Bonus":0,"Continent":"K54","ID":8802,"Name":"WDBar","PlayerID":8779575,"Points":2603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8802","ServerKey":"pl181","X":425,"Y":555},{"Bonus":0,"Continent":"K54","ID":8803,"Name":"KIELBA 049","PlayerID":699342219,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8803","ServerKey":"pl181","X":461,"Y":584},{"Bonus":0,"Continent":"K44","ID":8804,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8804","ServerKey":"pl181","X":462,"Y":414},{"Bonus":0,"Continent":"K44","ID":8805,"Name":"026 Nashville","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8805","ServerKey":"pl181","X":431,"Y":439},{"Bonus":0,"Continent":"K54","ID":8807,"Name":"#0035 Coals","PlayerID":9272054,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8807","ServerKey":"pl181","X":481,"Y":561},{"Bonus":0,"Continent":"K45","ID":8808,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8808","ServerKey":"pl181","X":525,"Y":410},{"Bonus":0,"Continent":"K45","ID":8809,"Name":"-5-","PlayerID":699347951,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8809","ServerKey":"pl181","X":589,"Y":472},{"Bonus":0,"Continent":"K45","ID":8810,"Name":"#003","PlayerID":699368887,"Points":7429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8810","ServerKey":"pl181","X":577,"Y":444},{"Bonus":0,"Continent":"K54","ID":8812,"Name":"Daleko 010","PlayerID":8369778,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8812","ServerKey":"pl181","X":478,"Y":590},{"Bonus":0,"Continent":"K54","ID":8813,"Name":"Teatr","PlayerID":7249451,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8813","ServerKey":"pl181","X":434,"Y":565},{"Bonus":0,"Continent":"K46","ID":8814,"Name":"Wioska (041)","PlayerID":698232227,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8814","ServerKey":"pl181","X":620,"Y":485},{"Bonus":0,"Continent":"K54","ID":8815,"Name":"G001","PlayerID":8779575,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8815","ServerKey":"pl181","X":432,"Y":566},{"Bonus":0,"Continent":"K44","ID":8816,"Name":"+44 61 Saint Priest Manissieux","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8816","ServerKey":"pl181","X":412,"Y":466},{"Bonus":0,"Continent":"K44","ID":8817,"Name":"Gravity","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8817","ServerKey":"pl181","X":415,"Y":458},{"Bonus":0,"Continent":"K54","ID":8818,"Name":"Witam w wietnamie","PlayerID":699856962,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8818","ServerKey":"pl181","X":415,"Y":540},{"Bonus":4,"Continent":"K44","ID":8819,"Name":"Feed me more 013","PlayerID":699756210,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8819","ServerKey":"pl181","X":493,"Y":406},{"Bonus":0,"Continent":"K53","ID":8820,"Name":"017","PlayerID":699856962,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8820","ServerKey":"pl181","X":399,"Y":544},{"Bonus":0,"Continent":"K54","ID":8821,"Name":"PszczóƂki","PlayerID":8779575,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8821","ServerKey":"pl181","X":432,"Y":564},{"Bonus":0,"Continent":"K44","ID":8823,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8823","ServerKey":"pl181","X":442,"Y":403},{"Bonus":0,"Continent":"K45","ID":8824,"Name":"012","PlayerID":699368887,"Points":9439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8824","ServerKey":"pl181","X":572,"Y":438},{"Bonus":0,"Continent":"K44","ID":8825,"Name":"-015- Dotykać, przytulać","PlayerID":9291984,"Points":10441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8825","ServerKey":"pl181","X":456,"Y":415},{"Bonus":0,"Continent":"K55","ID":8826,"Name":"0004","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8826","ServerKey":"pl181","X":524,"Y":521},{"Bonus":0,"Continent":"K55","ID":8827,"Name":"Z03","PlayerID":873575,"Points":10180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8827","ServerKey":"pl181","X":554,"Y":579},{"Bonus":0,"Continent":"K44","ID":8829,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8829","ServerKey":"pl181","X":461,"Y":416},{"Bonus":0,"Continent":"K54","ID":8830,"Name":"KIELBA 010","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8830","ServerKey":"pl181","X":445,"Y":577},{"Bonus":0,"Continent":"K44","ID":8831,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8831","ServerKey":"pl181","X":431,"Y":401},{"Bonus":0,"Continent":"K54","ID":8832,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8832","ServerKey":"pl181","X":406,"Y":505},{"Bonus":0,"Continent":"K34","ID":8833,"Name":".016.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8833","ServerKey":"pl181","X":482,"Y":382},{"Bonus":0,"Continent":"K44","ID":8834,"Name":"039 Baltimore","PlayerID":9291984,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8834","ServerKey":"pl181","X":431,"Y":433},{"Bonus":0,"Continent":"K35","ID":8835,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8835","ServerKey":"pl181","X":534,"Y":396},{"Bonus":0,"Continent":"K55","ID":8836,"Name":"CALL 1004","PlayerID":699784536,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8836","ServerKey":"pl181","X":553,"Y":577},{"Bonus":0,"Continent":"K54","ID":8838,"Name":"088 MEHEHE 4","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8838","ServerKey":"pl181","X":487,"Y":594},{"Bonus":9,"Continent":"K54","ID":8839,"Name":"####","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8839","ServerKey":"pl181","X":451,"Y":580},{"Bonus":0,"Continent":"K45","ID":8840,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8840","ServerKey":"pl181","X":540,"Y":426},{"Bonus":0,"Continent":"K55","ID":8841,"Name":"064 |","PlayerID":8000875,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8841","ServerKey":"pl181","X":565,"Y":565},{"Bonus":0,"Continent":"K45","ID":8842,"Name":"Jehu_Kingdom_29_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8842","ServerKey":"pl181","X":591,"Y":476},{"Bonus":2,"Continent":"K45","ID":8843,"Name":"Wioska 515","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8843","ServerKey":"pl181","X":583,"Y":451},{"Bonus":0,"Continent":"K45","ID":8844,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8844","ServerKey":"pl181","X":527,"Y":410},{"Bonus":0,"Continent":"K45","ID":8845,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8845","ServerKey":"pl181","X":525,"Y":409},{"Bonus":0,"Continent":"K55","ID":8846,"Name":"020","PlayerID":7976264,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8846","ServerKey":"pl181","X":504,"Y":594},{"Bonus":0,"Continent":"K55","ID":8847,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8847","ServerKey":"pl181","X":590,"Y":534},{"Bonus":0,"Continent":"K44","ID":8848,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8848","ServerKey":"pl181","X":460,"Y":417},{"Bonus":0,"Continent":"K44","ID":8849,"Name":"Szlachcic","PlayerID":698388578,"Points":8316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8849","ServerKey":"pl181","X":466,"Y":410},{"Bonus":0,"Continent":"K54","ID":8850,"Name":"Dobranoc","PlayerID":699856962,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8850","ServerKey":"pl181","X":418,"Y":545},{"Bonus":0,"Continent":"K44","ID":8851,"Name":"Connecticut","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8851","ServerKey":"pl181","X":410,"Y":469},{"Bonus":0,"Continent":"K55","ID":8852,"Name":"[092]","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8852","ServerKey":"pl181","X":531,"Y":501},{"Bonus":0,"Continent":"K44","ID":8853,"Name":"+44 61 Hervelinghen","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8853","ServerKey":"pl181","X":413,"Y":461},{"Bonus":0,"Continent":"K44","ID":8854,"Name":"+44 61 Uxem","PlayerID":698361257,"Points":9658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8854","ServerKey":"pl181","X":415,"Y":466},{"Bonus":0,"Continent":"K54","ID":8855,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8855","ServerKey":"pl181","X":405,"Y":503},{"Bonus":0,"Continent":"K44","ID":8856,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8856","ServerKey":"pl181","X":483,"Y":408},{"Bonus":0,"Continent":"K45","ID":8857,"Name":"-6-","PlayerID":699347951,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8857","ServerKey":"pl181","X":592,"Y":483},{"Bonus":0,"Continent":"K55","ID":8858,"Name":"- 091 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8858","ServerKey":"pl181","X":536,"Y":585},{"Bonus":0,"Continent":"K54","ID":8859,"Name":"088","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8859","ServerKey":"pl181","X":410,"Y":523},{"Bonus":0,"Continent":"K54","ID":8860,"Name":"KARTAGINA ..5","PlayerID":8438707,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8860","ServerKey":"pl181","X":456,"Y":581},{"Bonus":0,"Continent":"K55","ID":8861,"Name":"- 281 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8861","ServerKey":"pl181","X":518,"Y":594},{"Bonus":0,"Continent":"K45","ID":8862,"Name":"AbacadA 014","PlayerID":699756210,"Points":9658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8862","ServerKey":"pl181","X":561,"Y":427},{"Bonus":0,"Continent":"K44","ID":8863,"Name":"023 Jednak z sensem","PlayerID":9291984,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8863","ServerKey":"pl181","X":432,"Y":433},{"Bonus":0,"Continent":"K55","ID":8864,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8864","ServerKey":"pl181","X":580,"Y":551},{"Bonus":0,"Continent":"K54","ID":8865,"Name":"021","PlayerID":699425709,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8865","ServerKey":"pl181","X":408,"Y":526},{"Bonus":0,"Continent":"K54","ID":8866,"Name":"daleko 009","PlayerID":8369778,"Points":8217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8866","ServerKey":"pl181","X":478,"Y":589},{"Bonus":0,"Continent":"K55","ID":8867,"Name":"Stage group C","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8867","ServerKey":"pl181","X":568,"Y":597},{"Bonus":0,"Continent":"K55","ID":8868,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8868","ServerKey":"pl181","X":525,"Y":561},{"Bonus":0,"Continent":"K44","ID":8869,"Name":"Monetki ???","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8869","ServerKey":"pl181","X":477,"Y":408},{"Bonus":0,"Continent":"K44","ID":8870,"Name":"bright crystal","PlayerID":698290577,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8870","ServerKey":"pl181","X":469,"Y":497},{"Bonus":0,"Continent":"K44","ID":8871,"Name":"Gravity","PlayerID":698962117,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8871","ServerKey":"pl181","X":416,"Y":455},{"Bonus":0,"Continent":"K55","ID":8872,"Name":"F012","PlayerID":699189792,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8872","ServerKey":"pl181","X":500,"Y":528},{"Bonus":0,"Continent":"K44","ID":8873,"Name":"Mięguszowiecki Szczyt","PlayerID":849013126,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8873","ServerKey":"pl181","X":414,"Y":467},{"Bonus":0,"Continent":"K55","ID":8874,"Name":"01. Piccolo","PlayerID":849085961,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8874","ServerKey":"pl181","X":512,"Y":596},{"Bonus":0,"Continent":"K44","ID":8875,"Name":"Popas4","PlayerID":699265922,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8875","ServerKey":"pl181","X":405,"Y":497},{"Bonus":7,"Continent":"K55","ID":8876,"Name":"- 098 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8876","ServerKey":"pl181","X":548,"Y":581},{"Bonus":0,"Continent":"K44","ID":8878,"Name":"[A]_[029] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8878","ServerKey":"pl181","X":404,"Y":489},{"Bonus":0,"Continent":"K45","ID":8879,"Name":".:054:.Chillout","PlayerID":848934935,"Points":8053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8879","ServerKey":"pl181","X":508,"Y":405},{"Bonus":0,"Continent":"K55","ID":8880,"Name":"Sector 6","PlayerID":8199417,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8880","ServerKey":"pl181","X":513,"Y":590},{"Bonus":0,"Continent":"K54","ID":8881,"Name":"KIELBA 133","PlayerID":699342219,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8881","ServerKey":"pl181","X":465,"Y":587},{"Bonus":0,"Continent":"K55","ID":8882,"Name":"Tu polegƂ Kalifah Idris IV","PlayerID":699364813,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8882","ServerKey":"pl181","X":506,"Y":580},{"Bonus":0,"Continent":"K54","ID":8883,"Name":"085","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8883","ServerKey":"pl181","X":404,"Y":502},{"Bonus":0,"Continent":"K55","ID":8884,"Name":"003. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8884","ServerKey":"pl181","X":591,"Y":528},{"Bonus":0,"Continent":"K54","ID":8885,"Name":"001","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8885","ServerKey":"pl181","X":408,"Y":508},{"Bonus":0,"Continent":"K54","ID":8886,"Name":"Sphinx","PlayerID":699833171,"Points":4995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8886","ServerKey":"pl181","X":426,"Y":560},{"Bonus":0,"Continent":"K54","ID":8887,"Name":"NOT!!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8887","ServerKey":"pl181","X":466,"Y":585},{"Bonus":0,"Continent":"K55","ID":8889,"Name":"Z06","PlayerID":873575,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8889","ServerKey":"pl181","X":545,"Y":583},{"Bonus":0,"Continent":"K35","ID":8890,"Name":"SƂodki Urai","PlayerID":849017894,"Points":3794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8890","ServerKey":"pl181","X":504,"Y":389},{"Bonus":0,"Continent":"K55","ID":8891,"Name":"- 104 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8891","ServerKey":"pl181","X":543,"Y":586},{"Bonus":0,"Continent":"K45","ID":8892,"Name":"[100] North","PlayerID":848985692,"Points":10181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8892","ServerKey":"pl181","X":576,"Y":481},{"Bonus":0,"Continent":"K44","ID":8893,"Name":"HoƂopole","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8893","ServerKey":"pl181","X":492,"Y":406},{"Bonus":0,"Continent":"K55","ID":8894,"Name":"- 122 -","PlayerID":849018239,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8894","ServerKey":"pl181","X":542,"Y":586},{"Bonus":0,"Continent":"K54","ID":8895,"Name":"Suppi","PlayerID":699856962,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8895","ServerKey":"pl181","X":413,"Y":534},{"Bonus":0,"Continent":"K54","ID":8896,"Name":"082. ALFI","PlayerID":8539216,"Points":1357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8896","ServerKey":"pl181","X":481,"Y":557},{"Bonus":0,"Continent":"K45","ID":8897,"Name":"031","PlayerID":699368887,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8897","ServerKey":"pl181","X":573,"Y":438},{"Bonus":4,"Continent":"K45","ID":8898,"Name":"Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8898","ServerKey":"pl181","X":585,"Y":465},{"Bonus":0,"Continent":"K54","ID":8899,"Name":"010","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8899","ServerKey":"pl181","X":406,"Y":516},{"Bonus":0,"Continent":"K54","ID":8900,"Name":"#0091 Piszczac Pierwszy","PlayerID":9272054,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8900","ServerKey":"pl181","X":478,"Y":553},{"Bonus":0,"Continent":"K44","ID":8901,"Name":"Monetki x","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8901","ServerKey":"pl181","X":476,"Y":410},{"Bonus":0,"Continent":"K55","ID":8902,"Name":"006 | Lord Axen - Rumbling,","PlayerID":8000875,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8902","ServerKey":"pl181","X":559,"Y":549},{"Bonus":0,"Continent":"K55","ID":8903,"Name":"011","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8903","ServerKey":"pl181","X":586,"Y":540},{"Bonus":0,"Continent":"K54","ID":8904,"Name":"KIELBA 046","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8904","ServerKey":"pl181","X":459,"Y":583},{"Bonus":0,"Continent":"K45","ID":8905,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8905","ServerKey":"pl181","X":513,"Y":405},{"Bonus":0,"Continent":"K44","ID":8906,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8906","ServerKey":"pl181","X":465,"Y":412},{"Bonus":0,"Continent":"K54","ID":8907,"Name":"030","PlayerID":8369778,"Points":8466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8907","ServerKey":"pl181","X":491,"Y":593},{"Bonus":0,"Continent":"K44","ID":8908,"Name":"K44 x028.","PlayerID":698364331,"Points":6323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8908","ServerKey":"pl181","X":451,"Y":422},{"Bonus":9,"Continent":"K55","ID":8909,"Name":"004. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8909","ServerKey":"pl181","X":591,"Y":525},{"Bonus":0,"Continent":"K35","ID":8910,"Name":"088","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8910","ServerKey":"pl181","X":566,"Y":395},{"Bonus":0,"Continent":"K55","ID":8912,"Name":"- 103 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8912","ServerKey":"pl181","X":542,"Y":584},{"Bonus":0,"Continent":"K43","ID":8913,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8913","ServerKey":"pl181","X":376,"Y":493},{"Bonus":0,"Continent":"K45","ID":8914,"Name":"eeeeee","PlayerID":849092827,"Points":7464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8914","ServerKey":"pl181","X":575,"Y":445},{"Bonus":0,"Continent":"K44","ID":8915,"Name":"Gravity","PlayerID":698962117,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8915","ServerKey":"pl181","X":421,"Y":452},{"Bonus":0,"Continent":"K44","ID":8916,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8916","ServerKey":"pl181","X":409,"Y":476},{"Bonus":0,"Continent":"K44","ID":8917,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8917","ServerKey":"pl181","X":497,"Y":404},{"Bonus":0,"Continent":"K45","ID":8918,"Name":"026.","PlayerID":8900955,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8918","ServerKey":"pl181","X":591,"Y":478},{"Bonus":0,"Continent":"K54","ID":8919,"Name":"0019","PlayerID":33900,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8919","ServerKey":"pl181","X":476,"Y":593},{"Bonus":0,"Continent":"K54","ID":8920,"Name":".J wydziaƂ","PlayerID":699856962,"Points":8756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8920","ServerKey":"pl181","X":421,"Y":550},{"Bonus":9,"Continent":"K55","ID":8921,"Name":"003. Wioska Ilia","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8921","ServerKey":"pl181","X":593,"Y":525},{"Bonus":0,"Continent":"K45","ID":8922,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8922","ServerKey":"pl181","X":580,"Y":484},{"Bonus":0,"Continent":"K54","ID":8923,"Name":"Village","PlayerID":849094067,"Points":8079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8923","ServerKey":"pl181","X":467,"Y":587},{"Bonus":0,"Continent":"K45","ID":8924,"Name":"bluberry","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8924","ServerKey":"pl181","X":590,"Y":474},{"Bonus":0,"Continent":"K54","ID":8925,"Name":"Suppi","PlayerID":699856962,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8925","ServerKey":"pl181","X":418,"Y":542},{"Bonus":0,"Continent":"K54","ID":8926,"Name":"099","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8926","ServerKey":"pl181","X":409,"Y":521},{"Bonus":0,"Continent":"K45","ID":8927,"Name":"Domek 6","PlayerID":849064614,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8927","ServerKey":"pl181","X":557,"Y":422},{"Bonus":9,"Continent":"K45","ID":8928,"Name":"Gattacka","PlayerID":699298370,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8928","ServerKey":"pl181","X":594,"Y":485},{"Bonus":0,"Continent":"K45","ID":8929,"Name":"Gattacka","PlayerID":699298370,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8929","ServerKey":"pl181","X":583,"Y":476},{"Bonus":0,"Continent":"K55","ID":8930,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8930","ServerKey":"pl181","X":566,"Y":569},{"Bonus":0,"Continent":"K54","ID":8932,"Name":"PPP1","PlayerID":699833171,"Points":3655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8932","ServerKey":"pl181","X":429,"Y":565},{"Bonus":0,"Continent":"K45","ID":8933,"Name":"-7-","PlayerID":699347951,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8933","ServerKey":"pl181","X":592,"Y":477},{"Bonus":0,"Continent":"K55","ID":8934,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8934","ServerKey":"pl181","X":583,"Y":548},{"Bonus":0,"Continent":"K45","ID":8935,"Name":"04.","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8935","ServerKey":"pl181","X":572,"Y":439},{"Bonus":0,"Continent":"K45","ID":8936,"Name":"AbacadA 022","PlayerID":699756210,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8936","ServerKey":"pl181","X":560,"Y":425},{"Bonus":0,"Continent":"K44","ID":8937,"Name":"053","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8937","ServerKey":"pl181","X":484,"Y":407},{"Bonus":0,"Continent":"K44","ID":8938,"Name":"00593","PlayerID":3909522,"Points":10566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8938","ServerKey":"pl181","X":449,"Y":421},{"Bonus":0,"Continent":"K55","ID":8939,"Name":"[002] Ubiti te","PlayerID":848985692,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8939","ServerKey":"pl181","X":591,"Y":533},{"Bonus":0,"Continent":"K55","ID":8940,"Name":"Z07","PlayerID":873575,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8940","ServerKey":"pl181","X":548,"Y":582},{"Bonus":0,"Continent":"K54","ID":8941,"Name":"#0028 Krąg","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8941","ServerKey":"pl181","X":487,"Y":559},{"Bonus":0,"Continent":"K44","ID":8942,"Name":"Gravity","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8942","ServerKey":"pl181","X":420,"Y":452},{"Bonus":0,"Continent":"K55","ID":8943,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8943","ServerKey":"pl181","X":503,"Y":595},{"Bonus":0,"Continent":"K44","ID":8944,"Name":"Rysy","PlayerID":849013126,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8944","ServerKey":"pl181","X":415,"Y":462},{"Bonus":0,"Continent":"K55","ID":8945,"Name":"- 316 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8945","ServerKey":"pl181","X":528,"Y":588},{"Bonus":0,"Continent":"K55","ID":8946,"Name":"Cintra","PlayerID":699698253,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8946","ServerKey":"pl181","X":515,"Y":594},{"Bonus":0,"Continent":"K44","ID":8947,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8947","ServerKey":"pl181","X":455,"Y":416},{"Bonus":0,"Continent":"K54","ID":8948,"Name":"Carpo","PlayerID":699833171,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8948","ServerKey":"pl181","X":423,"Y":558},{"Bonus":6,"Continent":"K55","ID":8949,"Name":"CALL 1018","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8949","ServerKey":"pl181","X":559,"Y":575},{"Bonus":0,"Continent":"K45","ID":8950,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8950","ServerKey":"pl181","X":516,"Y":406},{"Bonus":0,"Continent":"K45","ID":8951,"Name":".:053:. Chillout","PlayerID":848934935,"Points":6181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8951","ServerKey":"pl181","X":503,"Y":406},{"Bonus":0,"Continent":"K45","ID":8952,"Name":"Jehu_Kingdom_05_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8952","ServerKey":"pl181","X":592,"Y":474},{"Bonus":0,"Continent":"K55","ID":8953,"Name":"! KOXOWNIA","PlayerID":477415,"Points":9874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8953","ServerKey":"pl181","X":582,"Y":554},{"Bonus":0,"Continent":"K45","ID":8954,"Name":".achim.","PlayerID":6936607,"Points":10677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8954","ServerKey":"pl181","X":540,"Y":414},{"Bonus":0,"Continent":"K55","ID":8956,"Name":"013. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8956","ServerKey":"pl181","X":587,"Y":533},{"Bonus":0,"Continent":"K55","ID":8957,"Name":"OstrĂłdzki Sektor","PlayerID":699785935,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8957","ServerKey":"pl181","X":517,"Y":510},{"Bonus":0,"Continent":"K44","ID":8958,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8958","ServerKey":"pl181","X":416,"Y":454},{"Bonus":0,"Continent":"K44","ID":8960,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8960","ServerKey":"pl181","X":421,"Y":428},{"Bonus":0,"Continent":"K55","ID":8961,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8961","ServerKey":"pl181","X":594,"Y":522},{"Bonus":0,"Continent":"K55","ID":8962,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8962","ServerKey":"pl181","X":568,"Y":567},{"Bonus":0,"Continent":"K45","ID":8963,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8963","ServerKey":"pl181","X":587,"Y":461},{"Bonus":0,"Continent":"K54","ID":8964,"Name":"090","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8964","ServerKey":"pl181","X":410,"Y":526},{"Bonus":0,"Continent":"K45","ID":8965,"Name":"ADEN","PlayerID":698588535,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8965","ServerKey":"pl181","X":566,"Y":435},{"Bonus":0,"Continent":"K44","ID":8966,"Name":"0052 Kerfurqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8966","ServerKey":"pl181","X":439,"Y":425},{"Bonus":0,"Continent":"K55","ID":8967,"Name":"Wioska,","PlayerID":8369778,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8967","ServerKey":"pl181","X":504,"Y":596},{"Bonus":0,"Continent":"K44","ID":8968,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8968","ServerKey":"pl181","X":419,"Y":454},{"Bonus":6,"Continent":"K55","ID":8969,"Name":"002. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8969","ServerKey":"pl181","X":590,"Y":530},{"Bonus":0,"Continent":"K44","ID":8970,"Name":"Gravity","PlayerID":698962117,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8970","ServerKey":"pl181","X":419,"Y":455},{"Bonus":0,"Continent":"K55","ID":8971,"Name":"- 285 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8971","ServerKey":"pl181","X":519,"Y":592},{"Bonus":0,"Continent":"K55","ID":8972,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8972","ServerKey":"pl181","X":580,"Y":550},{"Bonus":0,"Continent":"K45","ID":8973,"Name":"023","PlayerID":849064752,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8973","ServerKey":"pl181","X":562,"Y":426},{"Bonus":0,"Continent":"K54","ID":8974,"Name":"Teatr","PlayerID":7249451,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8974","ServerKey":"pl181","X":436,"Y":569},{"Bonus":0,"Continent":"K45","ID":8975,"Name":"001 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8975","ServerKey":"pl181","X":595,"Y":424},{"Bonus":0,"Continent":"K44","ID":8976,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8976","ServerKey":"pl181","X":426,"Y":442},{"Bonus":0,"Continent":"K55","ID":8977,"Name":"017","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8977","ServerKey":"pl181","X":587,"Y":535},{"Bonus":0,"Continent":"K44","ID":8978,"Name":"Gravity","PlayerID":698962117,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8978","ServerKey":"pl181","X":417,"Y":453},{"Bonus":0,"Continent":"K45","ID":8979,"Name":"C001","PlayerID":699722599,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8979","ServerKey":"pl181","X":573,"Y":400},{"Bonus":0,"Continent":"K45","ID":8980,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":7284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8980","ServerKey":"pl181","X":544,"Y":416},{"Bonus":0,"Continent":"K55","ID":8981,"Name":"Erebor","PlayerID":699383121,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8981","ServerKey":"pl181","X":500,"Y":593},{"Bonus":0,"Continent":"K44","ID":8982,"Name":"[A]_[050] Dejv.oldplyr","PlayerID":699380607,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8982","ServerKey":"pl181","X":406,"Y":488},{"Bonus":0,"Continent":"K55","ID":8983,"Name":"CALL 1002","PlayerID":699784536,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8983","ServerKey":"pl181","X":552,"Y":578},{"Bonus":0,"Continent":"K54","ID":8984,"Name":"Teatr","PlayerID":7249451,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8984","ServerKey":"pl181","X":430,"Y":564},{"Bonus":0,"Continent":"K54","ID":8985,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8985","ServerKey":"pl181","X":403,"Y":507},{"Bonus":0,"Continent":"K55","ID":8986,"Name":"[102]","PlayerID":8000875,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8986","ServerKey":"pl181","X":566,"Y":565},{"Bonus":0,"Continent":"K54","ID":8987,"Name":"Wioska 0030","PlayerID":1804724,"Points":10210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8987","ServerKey":"pl181","X":406,"Y":521},{"Bonus":0,"Continent":"K55","ID":8988,"Name":"Batory","PlayerID":606407,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8988","ServerKey":"pl181","X":501,"Y":595},{"Bonus":0,"Continent":"K45","ID":8989,"Name":"072","PlayerID":699761749,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8989","ServerKey":"pl181","X":550,"Y":417},{"Bonus":0,"Continent":"K55","ID":8990,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8990","ServerKey":"pl181","X":583,"Y":543},{"Bonus":0,"Continent":"K45","ID":8991,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8991","ServerKey":"pl181","X":531,"Y":408},{"Bonus":0,"Continent":"K45","ID":8992,"Name":"!Mew","PlayerID":699795378,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8992","ServerKey":"pl181","X":582,"Y":449},{"Bonus":0,"Continent":"K45","ID":8993,"Name":".achim.","PlayerID":6936607,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8993","ServerKey":"pl181","X":512,"Y":406},{"Bonus":0,"Continent":"K54","ID":8994,"Name":"KIELBA 135","PlayerID":699342219,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8994","ServerKey":"pl181","X":431,"Y":566},{"Bonus":0,"Continent":"K44","ID":8996,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8996","ServerKey":"pl181","X":426,"Y":440},{"Bonus":0,"Continent":"K55","ID":8997,"Name":"009","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8997","ServerKey":"pl181","X":585,"Y":538},{"Bonus":0,"Continent":"K54","ID":8998,"Name":"KARTAGINA ..3","PlayerID":8438707,"Points":6817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8998","ServerKey":"pl181","X":456,"Y":582},{"Bonus":0,"Continent":"K54","ID":8999,"Name":"0204","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=8999","ServerKey":"pl181","X":407,"Y":521},{"Bonus":0,"Continent":"K44","ID":9000,"Name":"Gravity","PlayerID":698962117,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9000","ServerKey":"pl181","X":404,"Y":446},{"Bonus":0,"Continent":"K54","ID":9001,"Name":"Daleko 016","PlayerID":8369778,"Points":7987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9001","ServerKey":"pl181","X":481,"Y":591},{"Bonus":0,"Continent":"K54","ID":9002,"Name":"083 MEHEHE 6","PlayerID":6116940,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9002","ServerKey":"pl181","X":465,"Y":590},{"Bonus":0,"Continent":"K54","ID":9003,"Name":"KIELBA 042","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9003","ServerKey":"pl181","X":459,"Y":586},{"Bonus":0,"Continent":"K44","ID":9004,"Name":"Wyspy Skellige","PlayerID":699658023,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9004","ServerKey":"pl181","X":496,"Y":405},{"Bonus":0,"Continent":"K54","ID":9005,"Name":"Sparta_07","PlayerID":2585846,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9005","ServerKey":"pl181","X":498,"Y":597},{"Bonus":6,"Continent":"K45","ID":9006,"Name":"161","PlayerID":849064752,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9006","ServerKey":"pl181","X":562,"Y":428},{"Bonus":0,"Continent":"K54","ID":9007,"Name":"KARTAGINA ...","PlayerID":8438707,"Points":8423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9007","ServerKey":"pl181","X":457,"Y":583},{"Bonus":0,"Continent":"K55","ID":9008,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9008","ServerKey":"pl181","X":566,"Y":570},{"Bonus":4,"Continent":"K45","ID":9009,"Name":"Gattacka","PlayerID":699298370,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9009","ServerKey":"pl181","X":594,"Y":476},{"Bonus":0,"Continent":"K34","ID":9010,"Name":".032.","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9010","ServerKey":"pl181","X":490,"Y":379},{"Bonus":0,"Continent":"K54","ID":9011,"Name":"KARTAGINA ..7","PlayerID":8438707,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9011","ServerKey":"pl181","X":454,"Y":584},{"Bonus":0,"Continent":"K55","ID":9012,"Name":"A.019","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9012","ServerKey":"pl181","X":598,"Y":562},{"Bonus":0,"Continent":"K45","ID":9014,"Name":".achim.","PlayerID":6936607,"Points":10920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9014","ServerKey":"pl181","X":537,"Y":412},{"Bonus":0,"Continent":"K56","ID":9015,"Name":"032 Odense","PlayerID":699272880,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9015","ServerKey":"pl181","X":603,"Y":524},{"Bonus":0,"Continent":"K54","ID":9016,"Name":"Teatr","PlayerID":7249451,"Points":8762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9016","ServerKey":"pl181","X":430,"Y":566},{"Bonus":0,"Continent":"K55","ID":9017,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9017","ServerKey":"pl181","X":574,"Y":560},{"Bonus":0,"Continent":"K54","ID":9018,"Name":"056","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9018","ServerKey":"pl181","X":401,"Y":507},{"Bonus":0,"Continent":"K55","ID":9019,"Name":"CALL 1044","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9019","ServerKey":"pl181","X":571,"Y":565},{"Bonus":0,"Continent":"K46","ID":9020,"Name":"181","PlayerID":699726660,"Points":2889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9020","ServerKey":"pl181","X":624,"Y":474},{"Bonus":0,"Continent":"K54","ID":9021,"Name":"Daleko 026","PlayerID":6116940,"Points":8734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9021","ServerKey":"pl181","X":480,"Y":594},{"Bonus":0,"Continent":"K43","ID":9022,"Name":"Land of Fire","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9022","ServerKey":"pl181","X":394,"Y":443},{"Bonus":0,"Continent":"K56","ID":9023,"Name":"0004 MzM","PlayerID":698416970,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9023","ServerKey":"pl181","X":602,"Y":569},{"Bonus":0,"Continent":"K45","ID":9024,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":8334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9024","ServerKey":"pl181","X":567,"Y":433},{"Bonus":0,"Continent":"K55","ID":9025,"Name":"001 Bybzi Bybzi","PlayerID":699316421,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9025","ServerKey":"pl181","X":572,"Y":558},{"Bonus":0,"Continent":"K45","ID":9026,"Name":"024","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9026","ServerKey":"pl181","X":547,"Y":418},{"Bonus":0,"Continent":"K53","ID":9027,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9027","ServerKey":"pl181","X":382,"Y":525},{"Bonus":0,"Continent":"K55","ID":9028,"Name":"0055","PlayerID":698416970,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9028","ServerKey":"pl181","X":592,"Y":514},{"Bonus":0,"Continent":"K55","ID":9029,"Name":"Nowa Nadzieja 7","PlayerID":699383121,"Points":6380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9029","ServerKey":"pl181","X":502,"Y":595},{"Bonus":0,"Continent":"K65","ID":9030,"Name":"0008","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9030","ServerKey":"pl181","X":530,"Y":613},{"Bonus":0,"Continent":"K54","ID":9031,"Name":"Wioska 0031","PlayerID":1804724,"Points":8557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9031","ServerKey":"pl181","X":405,"Y":518},{"Bonus":0,"Continent":"K54","ID":9032,"Name":"Ostend","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9032","ServerKey":"pl181","X":423,"Y":555},{"Bonus":0,"Continent":"K55","ID":9033,"Name":"022","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9033","ServerKey":"pl181","X":581,"Y":547},{"Bonus":0,"Continent":"K54","ID":9034,"Name":"COUSINS00000","PlayerID":7976264,"Points":10133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9034","ServerKey":"pl181","X":490,"Y":593},{"Bonus":0,"Continent":"K44","ID":9035,"Name":"Gravity","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9035","ServerKey":"pl181","X":419,"Y":449},{"Bonus":7,"Continent":"K55","ID":9036,"Name":"007","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9036","ServerKey":"pl181","X":584,"Y":541},{"Bonus":0,"Continent":"K45","ID":9037,"Name":"056","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9037","ServerKey":"pl181","X":545,"Y":415},{"Bonus":0,"Continent":"K34","ID":9038,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9038","ServerKey":"pl181","X":494,"Y":378},{"Bonus":0,"Continent":"K45","ID":9039,"Name":"134","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9039","ServerKey":"pl181","X":559,"Y":425},{"Bonus":0,"Continent":"K55","ID":9040,"Name":"Z02","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9040","ServerKey":"pl181","X":554,"Y":580},{"Bonus":0,"Continent":"K44","ID":9041,"Name":"Kalifornia","PlayerID":699265922,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9041","ServerKey":"pl181","X":410,"Y":466},{"Bonus":0,"Continent":"K45","ID":9042,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9042","ServerKey":"pl181","X":522,"Y":406},{"Bonus":0,"Continent":"K55","ID":9043,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9043","ServerKey":"pl181","X":569,"Y":568},{"Bonus":0,"Continent":"K45","ID":9044,"Name":".achim.","PlayerID":6936607,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9044","ServerKey":"pl181","X":539,"Y":412},{"Bonus":0,"Continent":"K46","ID":9045,"Name":"Najlepszy sąsiad 012","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9045","ServerKey":"pl181","X":601,"Y":442},{"Bonus":0,"Continent":"K54","ID":9046,"Name":".NA PRZECIWKO","PlayerID":8779575,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9046","ServerKey":"pl181","X":423,"Y":552},{"Bonus":0,"Continent":"K54","ID":9047,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9047","ServerKey":"pl181","X":433,"Y":526},{"Bonus":0,"Continent":"K55","ID":9048,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9048","ServerKey":"pl181","X":577,"Y":592},{"Bonus":0,"Continent":"K55","ID":9049,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9049","ServerKey":"pl181","X":578,"Y":558},{"Bonus":0,"Continent":"K54","ID":9050,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9050","ServerKey":"pl181","X":414,"Y":590},{"Bonus":0,"Continent":"K55","ID":9052,"Name":"Z08","PlayerID":873575,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9052","ServerKey":"pl181","X":550,"Y":581},{"Bonus":0,"Continent":"K64","ID":9053,"Name":"~092.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9053","ServerKey":"pl181","X":495,"Y":619},{"Bonus":0,"Continent":"K44","ID":9054,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9054","ServerKey":"pl181","X":475,"Y":410},{"Bonus":0,"Continent":"K55","ID":9055,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9055","ServerKey":"pl181","X":591,"Y":522},{"Bonus":0,"Continent":"K55","ID":9056,"Name":"0057","PlayerID":698416970,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9056","ServerKey":"pl181","X":592,"Y":516},{"Bonus":0,"Continent":"K55","ID":9057,"Name":"Wioska","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9057","ServerKey":"pl181","X":587,"Y":543},{"Bonus":0,"Continent":"K54","ID":9058,"Name":"032","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9058","ServerKey":"pl181","X":404,"Y":503},{"Bonus":0,"Continent":"K54","ID":9059,"Name":"008","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9059","ServerKey":"pl181","X":412,"Y":537},{"Bonus":9,"Continent":"K44","ID":9061,"Name":"+44 61 Lyon Part Dieu","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9061","ServerKey":"pl181","X":411,"Y":467},{"Bonus":0,"Continent":"K54","ID":9062,"Name":"Fajna 082","PlayerID":698704189,"Points":6847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9062","ServerKey":"pl181","X":459,"Y":563},{"Bonus":0,"Continent":"K34","ID":9063,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9063","ServerKey":"pl181","X":428,"Y":397},{"Bonus":0,"Continent":"K35","ID":9064,"Name":".:125:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9064","ServerKey":"pl181","X":508,"Y":397},{"Bonus":0,"Continent":"K45","ID":9065,"Name":"Szlachcic","PlayerID":698867446,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9065","ServerKey":"pl181","X":587,"Y":456},{"Bonus":0,"Continent":"K54","ID":9066,"Name":"30003","PlayerID":848915531,"Points":11113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9066","ServerKey":"pl181","X":489,"Y":543},{"Bonus":0,"Continent":"K45","ID":9067,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9067","ServerKey":"pl181","X":533,"Y":412},{"Bonus":0,"Continent":"K55","ID":9068,"Name":"#013","PlayerID":849001572,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9068","ServerKey":"pl181","X":534,"Y":589},{"Bonus":0,"Continent":"K55","ID":9069,"Name":"#056","PlayerID":849001572,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9069","ServerKey":"pl181","X":522,"Y":594},{"Bonus":0,"Continent":"K55","ID":9070,"Name":"#047","PlayerID":849001572,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9070","ServerKey":"pl181","X":527,"Y":591},{"Bonus":3,"Continent":"K54","ID":9071,"Name":"Wioska Velsaniq 3","PlayerID":7976264,"Points":7873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9071","ServerKey":"pl181","X":490,"Y":597},{"Bonus":0,"Continent":"K45","ID":9072,"Name":"Gattacka","PlayerID":699298370,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9072","ServerKey":"pl181","X":598,"Y":421},{"Bonus":0,"Continent":"K54","ID":9073,"Name":"101","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9073","ServerKey":"pl181","X":408,"Y":520},{"Bonus":0,"Continent":"K44","ID":9074,"Name":"0054 To juĆŒ koniecqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9074","ServerKey":"pl181","X":441,"Y":426},{"Bonus":0,"Continent":"K54","ID":9075,"Name":"Wioska M01","PlayerID":1804724,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9075","ServerKey":"pl181","X":406,"Y":524},{"Bonus":0,"Continent":"K43","ID":9076,"Name":"002","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9076","ServerKey":"pl181","X":396,"Y":498},{"Bonus":0,"Continent":"K45","ID":9077,"Name":"082","PlayerID":699573053,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9077","ServerKey":"pl181","X":589,"Y":463},{"Bonus":0,"Continent":"K44","ID":9078,"Name":"Gravity","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9078","ServerKey":"pl181","X":420,"Y":448},{"Bonus":0,"Continent":"K55","ID":9079,"Name":"Sector 7","PlayerID":8199417,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9079","ServerKey":"pl181","X":509,"Y":596},{"Bonus":0,"Continent":"K55","ID":9080,"Name":"CALL 1025","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9080","ServerKey":"pl181","X":563,"Y":570},{"Bonus":0,"Continent":"K45","ID":9081,"Name":"-15-","PlayerID":699347951,"Points":10551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9081","ServerKey":"pl181","X":591,"Y":469},{"Bonus":0,"Continent":"K54","ID":9082,"Name":"KARTAGINA ..8","PlayerID":8438707,"Points":9770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9082","ServerKey":"pl181","X":453,"Y":584},{"Bonus":0,"Continent":"K56","ID":9083,"Name":"A.001","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9083","ServerKey":"pl181","X":601,"Y":559},{"Bonus":0,"Continent":"K55","ID":9084,"Name":"Jaaa","PlayerID":698635863,"Points":10441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9084","ServerKey":"pl181","X":584,"Y":548},{"Bonus":0,"Continent":"K55","ID":9085,"Name":"- 120 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9085","ServerKey":"pl181","X":538,"Y":589},{"Bonus":0,"Continent":"K54","ID":9086,"Name":"020","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9086","ServerKey":"pl181","X":410,"Y":525},{"Bonus":0,"Continent":"K44","ID":9087,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9087","ServerKey":"pl181","X":473,"Y":410},{"Bonus":0,"Continent":"K55","ID":9088,"Name":"Jaaa","PlayerID":698635863,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9088","ServerKey":"pl181","X":576,"Y":557},{"Bonus":0,"Continent":"K44","ID":9089,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9089","ServerKey":"pl181","X":453,"Y":416},{"Bonus":0,"Continent":"K55","ID":9090,"Name":"Wioska8","PlayerID":8369778,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9090","ServerKey":"pl181","X":515,"Y":593},{"Bonus":0,"Continent":"K44","ID":9091,"Name":"A043","PlayerID":8740199,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9091","ServerKey":"pl181","X":475,"Y":407},{"Bonus":0,"Continent":"K44","ID":9092,"Name":"[A]_[041] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9092","ServerKey":"pl181","X":409,"Y":473},{"Bonus":0,"Continent":"K45","ID":9093,"Name":"BBB","PlayerID":1006847,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9093","ServerKey":"pl181","X":579,"Y":444},{"Bonus":0,"Continent":"K54","ID":9094,"Name":"KIELBA 018","PlayerID":699342219,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9094","ServerKey":"pl181","X":444,"Y":575},{"Bonus":7,"Continent":"K45","ID":9095,"Name":"132","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9095","ServerKey":"pl181","X":551,"Y":420},{"Bonus":0,"Continent":"K54","ID":9096,"Name":"Suppi","PlayerID":699856962,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9096","ServerKey":"pl181","X":417,"Y":545},{"Bonus":0,"Continent":"K44","ID":9097,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9097","ServerKey":"pl181","X":412,"Y":457},{"Bonus":0,"Continent":"K54","ID":9098,"Name":"Dobranoc","PlayerID":699856962,"Points":8930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9098","ServerKey":"pl181","X":414,"Y":545},{"Bonus":0,"Continent":"K55","ID":9099,"Name":"Wioska6,","PlayerID":8369778,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9099","ServerKey":"pl181","X":514,"Y":594},{"Bonus":0,"Continent":"K55","ID":9100,"Name":"021 Horik","PlayerID":699373599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9100","ServerKey":"pl181","X":580,"Y":552},{"Bonus":7,"Continent":"K55","ID":9102,"Name":"Erebor 2","PlayerID":699383121,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9102","ServerKey":"pl181","X":502,"Y":593},{"Bonus":0,"Continent":"K55","ID":9103,"Name":"Shire","PlayerID":849091897,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9103","ServerKey":"pl181","X":594,"Y":519},{"Bonus":0,"Continent":"K44","ID":9104,"Name":"A017","PlayerID":8740199,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9104","ServerKey":"pl181","X":449,"Y":418},{"Bonus":0,"Continent":"K55","ID":9105,"Name":"CALL 1003","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9105","ServerKey":"pl181","X":551,"Y":578},{"Bonus":0,"Continent":"K46","ID":9107,"Name":"038","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9107","ServerKey":"pl181","X":609,"Y":499},{"Bonus":0,"Continent":"K45","ID":9108,"Name":"Gattacka","PlayerID":699298370,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9108","ServerKey":"pl181","X":593,"Y":490},{"Bonus":0,"Continent":"K45","ID":9109,"Name":"003 - Valencia","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9109","ServerKey":"pl181","X":597,"Y":492},{"Bonus":0,"Continent":"K55","ID":9110,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9110","ServerKey":"pl181","X":576,"Y":562},{"Bonus":0,"Continent":"K44","ID":9111,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9111","ServerKey":"pl181","X":470,"Y":407},{"Bonus":0,"Continent":"K54","ID":9112,"Name":"KIELBA 119","PlayerID":699342219,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9112","ServerKey":"pl181","X":430,"Y":567},{"Bonus":0,"Continent":"K54","ID":9113,"Name":"para","PlayerID":8369778,"Points":8155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9113","ServerKey":"pl181","X":498,"Y":594},{"Bonus":0,"Continent":"K54","ID":9114,"Name":"071","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9114","ServerKey":"pl181","X":405,"Y":510},{"Bonus":0,"Continent":"K44","ID":9115,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9115","ServerKey":"pl181","X":423,"Y":444},{"Bonus":0,"Continent":"K45","ID":9116,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9116","ServerKey":"pl181","X":597,"Y":495},{"Bonus":0,"Continent":"K54","ID":9117,"Name":"Majin Buu 010","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9117","ServerKey":"pl181","X":439,"Y":571},{"Bonus":0,"Continent":"K45","ID":9119,"Name":"004 - Sevilla","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9119","ServerKey":"pl181","X":597,"Y":487},{"Bonus":0,"Continent":"K44","ID":9120,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9120","ServerKey":"pl181","X":407,"Y":492},{"Bonus":0,"Continent":"K54","ID":9121,"Name":"Sparta_08","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9121","ServerKey":"pl181","X":497,"Y":597},{"Bonus":0,"Continent":"K54","ID":9122,"Name":"013","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9122","ServerKey":"pl181","X":409,"Y":527},{"Bonus":0,"Continent":"K44","ID":9123,"Name":"Blaviken","PlayerID":699433558,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9123","ServerKey":"pl181","X":489,"Y":406},{"Bonus":5,"Continent":"K45","ID":9124,"Name":"Jehu_Kingdom_27_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9124","ServerKey":"pl181","X":595,"Y":486},{"Bonus":0,"Continent":"K55","ID":9125,"Name":"#055","PlayerID":849001572,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9125","ServerKey":"pl181","X":520,"Y":592},{"Bonus":0,"Continent":"K54","ID":9126,"Name":"Oby..","PlayerID":699443920,"Points":4780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9126","ServerKey":"pl181","X":430,"Y":562},{"Bonus":0,"Continent":"K35","ID":9127,"Name":"030.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9127","ServerKey":"pl181","X":565,"Y":394},{"Bonus":0,"Continent":"K45","ID":9128,"Name":"#007","PlayerID":699368887,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9128","ServerKey":"pl181","X":576,"Y":445},{"Bonus":0,"Continent":"K55","ID":9129,"Name":"020","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9129","ServerKey":"pl181","X":583,"Y":547},{"Bonus":0,"Continent":"K45","ID":9130,"Name":"029","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9130","ServerKey":"pl181","X":552,"Y":419},{"Bonus":0,"Continent":"K44","ID":9131,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9131","ServerKey":"pl181","X":479,"Y":405},{"Bonus":0,"Continent":"K54","ID":9132,"Name":". GRYZIESZ PIACH","PlayerID":8779575,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9132","ServerKey":"pl181","X":422,"Y":551},{"Bonus":0,"Continent":"K54","ID":9133,"Name":"W 002 bombastik","PlayerID":849084740,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9133","ServerKey":"pl181","X":432,"Y":591},{"Bonus":0,"Continent":"K55","ID":9134,"Name":"005 Vermilion City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9134","ServerKey":"pl181","X":595,"Y":504},{"Bonus":0,"Continent":"K45","ID":9135,"Name":".:016:. Kosa","PlayerID":8649412,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9135","ServerKey":"pl181","X":511,"Y":405},{"Bonus":0,"Continent":"K45","ID":9136,"Name":"098","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9136","ServerKey":"pl181","X":547,"Y":416},{"Bonus":0,"Continent":"K46","ID":9137,"Name":"003","PlayerID":8459255,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9137","ServerKey":"pl181","X":604,"Y":458},{"Bonus":9,"Continent":"K45","ID":9138,"Name":"Gattacka","PlayerID":699298370,"Points":10653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9138","ServerKey":"pl181","X":593,"Y":486},{"Bonus":0,"Continent":"K55","ID":9139,"Name":"Wodospady","PlayerID":699785935,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9139","ServerKey":"pl181","X":560,"Y":572},{"Bonus":0,"Continent":"K55","ID":9140,"Name":"0209","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9140","ServerKey":"pl181","X":524,"Y":594},{"Bonus":0,"Continent":"K44","ID":9141,"Name":"+44 61 Vaugneray","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9141","ServerKey":"pl181","X":414,"Y":461},{"Bonus":0,"Continent":"K45","ID":9143,"Name":".:055:. Chillout","PlayerID":848934935,"Points":6860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9143","ServerKey":"pl181","X":504,"Y":405},{"Bonus":0,"Continent":"K45","ID":9144,"Name":"0024","PlayerID":699429153,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9144","ServerKey":"pl181","X":596,"Y":497},{"Bonus":0,"Continent":"K44","ID":9145,"Name":"Arkansass","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9145","ServerKey":"pl181","X":409,"Y":467},{"Bonus":9,"Continent":"K55","ID":9146,"Name":"0009","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9146","ServerKey":"pl181","X":532,"Y":592},{"Bonus":0,"Continent":"K45","ID":9147,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9147","ServerKey":"pl181","X":522,"Y":409},{"Bonus":0,"Continent":"K44","ID":9148,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9148","ServerKey":"pl181","X":427,"Y":439},{"Bonus":6,"Continent":"K55","ID":9149,"Name":"004","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9149","ServerKey":"pl181","X":588,"Y":541},{"Bonus":0,"Continent":"K55","ID":9150,"Name":"10017","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9150","ServerKey":"pl181","X":527,"Y":556},{"Bonus":0,"Continent":"K45","ID":9151,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9151","ServerKey":"pl181","X":574,"Y":438},{"Bonus":0,"Continent":"K45","ID":9152,"Name":"024","PlayerID":849063849,"Points":8399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9152","ServerKey":"pl181","X":569,"Y":425},{"Bonus":0,"Continent":"K35","ID":9153,"Name":"Taran","PlayerID":699170684,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9153","ServerKey":"pl181","X":543,"Y":386},{"Bonus":0,"Continent":"K44","ID":9154,"Name":"----------5","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9154","ServerKey":"pl181","X":454,"Y":425},{"Bonus":0,"Continent":"K54","ID":9155,"Name":"KIELBA 027","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9155","ServerKey":"pl181","X":440,"Y":573},{"Bonus":7,"Continent":"K44","ID":9156,"Name":"0052 kA","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9156","ServerKey":"pl181","X":440,"Y":425},{"Bonus":0,"Continent":"K54","ID":9157,"Name":"KIELBA 003","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9157","ServerKey":"pl181","X":447,"Y":577},{"Bonus":0,"Continent":"K54","ID":9158,"Name":"Cristo de la Concordia","PlayerID":699833171,"Points":4456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9158","ServerKey":"pl181","X":428,"Y":562},{"Bonus":0,"Continent":"K44","ID":9159,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9159","ServerKey":"pl181","X":403,"Y":486},{"Bonus":0,"Continent":"K54","ID":9160,"Name":"KIELBA 041","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9160","ServerKey":"pl181","X":459,"Y":587},{"Bonus":0,"Continent":"K45","ID":9161,"Name":"AbacadA 021","PlayerID":699756210,"Points":8021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9161","ServerKey":"pl181","X":566,"Y":429},{"Bonus":0,"Continent":"K55","ID":9162,"Name":"Z04","PlayerID":873575,"Points":10449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9162","ServerKey":"pl181","X":555,"Y":579},{"Bonus":0,"Continent":"K55","ID":9163,"Name":"#022","PlayerID":849001572,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9163","ServerKey":"pl181","X":531,"Y":589},{"Bonus":0,"Continent":"K55","ID":9164,"Name":"Jaaa","PlayerID":698635863,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9164","ServerKey":"pl181","X":563,"Y":575},{"Bonus":0,"Continent":"K55","ID":9165,"Name":"#048","PlayerID":849001572,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9165","ServerKey":"pl181","X":526,"Y":590},{"Bonus":0,"Continent":"K55","ID":9166,"Name":"[041]","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9166","ServerKey":"pl181","X":590,"Y":532},{"Bonus":0,"Continent":"K45","ID":9167,"Name":"025","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9167","ServerKey":"pl181","X":546,"Y":418},{"Bonus":0,"Continent":"K54","ID":9168,"Name":"001","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9168","ServerKey":"pl181","X":411,"Y":539},{"Bonus":0,"Continent":"K55","ID":9169,"Name":"#057","PlayerID":849001572,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9169","ServerKey":"pl181","X":521,"Y":593},{"Bonus":0,"Continent":"K44","ID":9170,"Name":"0051 Zodiak","PlayerID":3909522,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9170","ServerKey":"pl181","X":437,"Y":426},{"Bonus":0,"Continent":"K54","ID":9171,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9171","ServerKey":"pl181","X":402,"Y":504},{"Bonus":0,"Continent":"K54","ID":9172,"Name":"033","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9172","ServerKey":"pl181","X":416,"Y":518},{"Bonus":0,"Continent":"K44","ID":9173,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":7718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9173","ServerKey":"pl181","X":448,"Y":417},{"Bonus":0,"Continent":"K44","ID":9174,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9174","ServerKey":"pl181","X":407,"Y":483},{"Bonus":0,"Continent":"K55","ID":9175,"Name":"021","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9175","ServerKey":"pl181","X":584,"Y":546},{"Bonus":0,"Continent":"K55","ID":9176,"Name":"|031|","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9176","ServerKey":"pl181","X":569,"Y":564},{"Bonus":0,"Continent":"K54","ID":9177,"Name":"Majin Buu 011","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9177","ServerKey":"pl181","X":438,"Y":572},{"Bonus":0,"Continent":"K54","ID":9178,"Name":"Teatr","PlayerID":7249451,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9178","ServerKey":"pl181","X":433,"Y":567},{"Bonus":0,"Continent":"K55","ID":9179,"Name":"008. Wioska Vampirka*","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9179","ServerKey":"pl181","X":593,"Y":524},{"Bonus":0,"Continent":"K44","ID":9180,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9180","ServerKey":"pl181","X":478,"Y":405},{"Bonus":0,"Continent":"K54","ID":9181,"Name":"Sparta_60","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9181","ServerKey":"pl181","X":496,"Y":597},{"Bonus":0,"Continent":"K55","ID":9182,"Name":"#059","PlayerID":849001572,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9182","ServerKey":"pl181","X":517,"Y":596},{"Bonus":0,"Continent":"K45","ID":9183,"Name":"067","PlayerID":699573053,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9183","ServerKey":"pl181","X":595,"Y":484},{"Bonus":0,"Continent":"K44","ID":9184,"Name":"A#026#","PlayerID":698807570,"Points":11949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9184","ServerKey":"pl181","X":406,"Y":479},{"Bonus":0,"Continent":"K44","ID":9185,"Name":"[A]_[045] Dejv.oldplyr","PlayerID":699380607,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9185","ServerKey":"pl181","X":407,"Y":471},{"Bonus":0,"Continent":"K54","ID":9186,"Name":"KIELBA 101","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9186","ServerKey":"pl181","X":463,"Y":590},{"Bonus":0,"Continent":"K54","ID":9187,"Name":"WK46","PlayerID":1631690,"Points":2284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9187","ServerKey":"pl181","X":460,"Y":588},{"Bonus":0,"Continent":"K44","ID":9188,"Name":"[A]_[052] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9188","ServerKey":"pl181","X":405,"Y":485},{"Bonus":0,"Continent":"K44","ID":9189,"Name":"Wioska kruszynka1","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9189","ServerKey":"pl181","X":432,"Y":434},{"Bonus":0,"Continent":"K55","ID":9190,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9190","ServerKey":"pl181","X":536,"Y":547},{"Bonus":0,"Continent":"K54","ID":9191,"Name":".,.,","PlayerID":1804724,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9191","ServerKey":"pl181","X":403,"Y":517},{"Bonus":0,"Continent":"K55","ID":9192,"Name":"[003] Te vras","PlayerID":848985692,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9192","ServerKey":"pl181","X":592,"Y":533},{"Bonus":0,"Continent":"K54","ID":9193,"Name":"010","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9193","ServerKey":"pl181","X":410,"Y":536},{"Bonus":6,"Continent":"K44","ID":9194,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9194","ServerKey":"pl181","X":477,"Y":406},{"Bonus":0,"Continent":"K45","ID":9195,"Name":"O:Aabadon A","PlayerID":699347951,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9195","ServerKey":"pl181","X":596,"Y":480},{"Bonus":0,"Continent":"K55","ID":9196,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9196","ServerKey":"pl181","X":575,"Y":563},{"Bonus":2,"Continent":"K54","ID":9197,"Name":"Suppi","PlayerID":699856962,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9197","ServerKey":"pl181","X":411,"Y":534},{"Bonus":0,"Continent":"K44","ID":9199,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9199","ServerKey":"pl181","X":408,"Y":479},{"Bonus":0,"Continent":"K54","ID":9200,"Name":"Village","PlayerID":849094067,"Points":8399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9200","ServerKey":"pl181","X":473,"Y":590},{"Bonus":0,"Continent":"K55","ID":9201,"Name":"0021","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9201","ServerKey":"pl181","X":595,"Y":505},{"Bonus":0,"Continent":"K35","ID":9202,"Name":"049","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9202","ServerKey":"pl181","X":547,"Y":399},{"Bonus":0,"Continent":"K54","ID":9203,"Name":"Wioska Horst","PlayerID":1804724,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9203","ServerKey":"pl181","X":405,"Y":523},{"Bonus":0,"Continent":"K54","ID":9204,"Name":"Popas10","PlayerID":699265922,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9204","ServerKey":"pl181","X":402,"Y":502},{"Bonus":0,"Continent":"K65","ID":9205,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9205","ServerKey":"pl181","X":549,"Y":613},{"Bonus":0,"Continent":"K45","ID":9206,"Name":"048","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9206","ServerKey":"pl181","X":551,"Y":418},{"Bonus":0,"Continent":"K45","ID":9207,"Name":".:024:. Motyka","PlayerID":8649412,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9207","ServerKey":"pl181","X":508,"Y":404},{"Bonus":0,"Continent":"K55","ID":9208,"Name":"Sparta_04","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9208","ServerKey":"pl181","X":500,"Y":596},{"Bonus":0,"Continent":"K45","ID":9209,"Name":".achim.","PlayerID":6936607,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9209","ServerKey":"pl181","X":526,"Y":407},{"Bonus":0,"Continent":"K54","ID":9211,"Name":"(034)","PlayerID":699846892,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9211","ServerKey":"pl181","X":406,"Y":528},{"Bonus":0,"Continent":"K55","ID":9212,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9212","ServerKey":"pl181","X":578,"Y":557},{"Bonus":4,"Continent":"K45","ID":9213,"Name":"Jehu_Kingdom_28_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9213","ServerKey":"pl181","X":594,"Y":481},{"Bonus":0,"Continent":"K55","ID":9214,"Name":"- 102 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9214","ServerKey":"pl181","X":544,"Y":582},{"Bonus":0,"Continent":"K45","ID":9215,"Name":"026","PlayerID":849063849,"Points":8588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9215","ServerKey":"pl181","X":561,"Y":426},{"Bonus":0,"Continent":"K53","ID":9216,"Name":"*001 Islandia","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9216","ServerKey":"pl181","X":388,"Y":541},{"Bonus":0,"Continent":"K55","ID":9217,"Name":"Wioska 452","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9217","ServerKey":"pl181","X":588,"Y":542},{"Bonus":0,"Continent":"K44","ID":9218,"Name":"PRO8L3M","PlayerID":7491093,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9218","ServerKey":"pl181","X":449,"Y":492},{"Bonus":0,"Continent":"K44","ID":9219,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9219","ServerKey":"pl181","X":481,"Y":406},{"Bonus":0,"Continent":"K54","ID":9220,"Name":"Village","PlayerID":849094067,"Points":8132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9220","ServerKey":"pl181","X":471,"Y":589},{"Bonus":0,"Continent":"K44","ID":9221,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9221","ServerKey":"pl181","X":459,"Y":413},{"Bonus":0,"Continent":"K34","ID":9222,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9222","ServerKey":"pl181","X":496,"Y":398},{"Bonus":0,"Continent":"K55","ID":9223,"Name":"0012","PlayerID":699429153,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9223","ServerKey":"pl181","X":595,"Y":502},{"Bonus":0,"Continent":"K54","ID":9224,"Name":"Wioska","PlayerID":699833171,"Points":7837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9224","ServerKey":"pl181","X":427,"Y":560},{"Bonus":0,"Continent":"K45","ID":9225,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9225","ServerKey":"pl181","X":534,"Y":410},{"Bonus":0,"Continent":"K44","ID":9226,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9226","ServerKey":"pl181","X":420,"Y":446},{"Bonus":0,"Continent":"K45","ID":9228,"Name":"091","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9228","ServerKey":"pl181","X":585,"Y":456},{"Bonus":0,"Continent":"K54","ID":9229,"Name":"NOT?","PlayerID":9236866,"Points":8666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9229","ServerKey":"pl181","X":412,"Y":539},{"Bonus":0,"Continent":"K55","ID":9230,"Name":"1.Indianapolis","PlayerID":698215322,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9230","ServerKey":"pl181","X":542,"Y":587},{"Bonus":1,"Continent":"K55","ID":9231,"Name":"Z05","PlayerID":873575,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9231","ServerKey":"pl181","X":555,"Y":578},{"Bonus":0,"Continent":"K54","ID":9232,"Name":"0202","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9232","ServerKey":"pl181","X":403,"Y":509},{"Bonus":0,"Continent":"K54","ID":9233,"Name":"NOT?","PlayerID":9236866,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9233","ServerKey":"pl181","X":413,"Y":537},{"Bonus":0,"Continent":"K35","ID":9234,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9234","ServerKey":"pl181","X":564,"Y":392},{"Bonus":0,"Continent":"K45","ID":9235,"Name":"BBB","PlayerID":1006847,"Points":7834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9235","ServerKey":"pl181","X":579,"Y":447},{"Bonus":0,"Continent":"K45","ID":9236,"Name":"005","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9236","ServerKey":"pl181","X":596,"Y":491},{"Bonus":0,"Continent":"K54","ID":9237,"Name":"0201","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9237","ServerKey":"pl181","X":405,"Y":511},{"Bonus":0,"Continent":"K43","ID":9238,"Name":"s181eo31","PlayerID":393668,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9238","ServerKey":"pl181","X":383,"Y":463},{"Bonus":0,"Continent":"K55","ID":9239,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9239","ServerKey":"pl181","X":577,"Y":560},{"Bonus":0,"Continent":"K45","ID":9240,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9240","ServerKey":"pl181","X":569,"Y":432},{"Bonus":0,"Continent":"K44","ID":9241,"Name":"00505 CalciFord","PlayerID":3909522,"Points":9942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9241","ServerKey":"pl181","X":433,"Y":429},{"Bonus":0,"Continent":"K44","ID":9242,"Name":"Gravity","PlayerID":698962117,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9242","ServerKey":"pl181","X":417,"Y":450},{"Bonus":0,"Continent":"K44","ID":9243,"Name":"Monetki","PlayerID":699098531,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9243","ServerKey":"pl181","X":476,"Y":407},{"Bonus":0,"Continent":"K34","ID":9244,"Name":"K34 - [017] Before Land","PlayerID":699088769,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9244","ServerKey":"pl181","X":447,"Y":389},{"Bonus":0,"Continent":"K44","ID":9245,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9245","ServerKey":"pl181","X":463,"Y":411},{"Bonus":0,"Continent":"K54","ID":9247,"Name":"Sparta_10","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9247","ServerKey":"pl181","X":495,"Y":598},{"Bonus":6,"Continent":"K54","ID":9248,"Name":"KIELBA 050","PlayerID":699342219,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9248","ServerKey":"pl181","X":454,"Y":586},{"Bonus":0,"Continent":"K54","ID":9249,"Name":"102","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9249","ServerKey":"pl181","X":406,"Y":529},{"Bonus":0,"Continent":"K55","ID":9250,"Name":"022","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9250","ServerKey":"pl181","X":597,"Y":500},{"Bonus":7,"Continent":"K44","ID":9251,"Name":"Gravity","PlayerID":698962117,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9251","ServerKey":"pl181","X":417,"Y":452},{"Bonus":0,"Continent":"K55","ID":9252,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9252","ServerKey":"pl181","X":578,"Y":559},{"Bonus":0,"Continent":"K54","ID":9253,"Name":"OBB","PlayerID":699443920,"Points":3436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9253","ServerKey":"pl181","X":425,"Y":560},{"Bonus":0,"Continent":"K54","ID":9254,"Name":"KIELBA 016","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9254","ServerKey":"pl181","X":441,"Y":573},{"Bonus":0,"Continent":"K55","ID":9255,"Name":"CALL 1026","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9255","ServerKey":"pl181","X":562,"Y":571},{"Bonus":0,"Continent":"K55","ID":9256,"Name":"P.031","PlayerID":873575,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9256","ServerKey":"pl181","X":545,"Y":560},{"Bonus":0,"Continent":"K45","ID":9257,"Name":".achim.","PlayerID":6936607,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9257","ServerKey":"pl181","X":539,"Y":413},{"Bonus":0,"Continent":"K44","ID":9258,"Name":"0056 Wioska 1","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9258","ServerKey":"pl181","X":440,"Y":428},{"Bonus":0,"Continent":"K45","ID":9259,"Name":"AAA","PlayerID":849093422,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9259","ServerKey":"pl181","X":509,"Y":404},{"Bonus":0,"Continent":"K54","ID":9260,"Name":"111........","PlayerID":7976264,"Points":8760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9260","ServerKey":"pl181","X":476,"Y":595},{"Bonus":0,"Continent":"K45","ID":9261,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9261","ServerKey":"pl181","X":526,"Y":409},{"Bonus":0,"Continent":"K55","ID":9262,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9262","ServerKey":"pl181","X":563,"Y":571},{"Bonus":0,"Continent":"K44","ID":9263,"Name":"Gravity","PlayerID":698962117,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9263","ServerKey":"pl181","X":418,"Y":449},{"Bonus":0,"Continent":"K44","ID":9264,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9264","ServerKey":"pl181","X":403,"Y":484},{"Bonus":2,"Continent":"K55","ID":9265,"Name":"1.Atlanta","PlayerID":698215322,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9265","ServerKey":"pl181","X":541,"Y":589},{"Bonus":0,"Continent":"K65","ID":9266,"Name":"*00D1","PlayerID":699567608,"Points":9041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9266","ServerKey":"pl181","X":560,"Y":605},{"Bonus":0,"Continent":"K54","ID":9267,"Name":"KIELBA 006","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9267","ServerKey":"pl181","X":443,"Y":580},{"Bonus":0,"Continent":"K55","ID":9268,"Name":"Sparta_03","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9268","ServerKey":"pl181","X":501,"Y":597},{"Bonus":0,"Continent":"K54","ID":9269,"Name":"~044.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9269","ServerKey":"pl181","X":488,"Y":593},{"Bonus":0,"Continent":"K43","ID":9270,"Name":"Avanti!","PlayerID":698625834,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9270","ServerKey":"pl181","X":380,"Y":484},{"Bonus":0,"Continent":"K45","ID":9271,"Name":"AbacadA 002","PlayerID":699756210,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9271","ServerKey":"pl181","X":565,"Y":427},{"Bonus":0,"Continent":"K45","ID":9272,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9272","ServerKey":"pl181","X":517,"Y":406},{"Bonus":0,"Continent":"K44","ID":9273,"Name":"A018","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9273","ServerKey":"pl181","X":447,"Y":418},{"Bonus":0,"Continent":"K45","ID":9274,"Name":"05 | Zalesie","PlayerID":849002091,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9274","ServerKey":"pl181","X":542,"Y":432},{"Bonus":0,"Continent":"K45","ID":9275,"Name":"ADEN","PlayerID":698588535,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9275","ServerKey":"pl181","X":564,"Y":431},{"Bonus":0,"Continent":"K55","ID":9276,"Name":"083","PlayerID":699573053,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9276","ServerKey":"pl181","X":595,"Y":508},{"Bonus":0,"Continent":"K55","ID":9277,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9277","ServerKey":"pl181","X":582,"Y":546},{"Bonus":9,"Continent":"K54","ID":9278,"Name":"Teatr","PlayerID":7249451,"Points":10076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9278","ServerKey":"pl181","X":432,"Y":569},{"Bonus":0,"Continent":"K44","ID":9279,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9279","ServerKey":"pl181","X":469,"Y":411},{"Bonus":0,"Continent":"K54","ID":9280,"Name":"KIELBA 009","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9280","ServerKey":"pl181","X":446,"Y":577},{"Bonus":6,"Continent":"K55","ID":9281,"Name":"- 280 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9281","ServerKey":"pl181","X":518,"Y":596},{"Bonus":0,"Continent":"K44","ID":9282,"Name":"A020","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9282","ServerKey":"pl181","X":450,"Y":419},{"Bonus":0,"Continent":"K55","ID":9283,"Name":"011. Wioska Mucharadza","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9283","ServerKey":"pl181","X":593,"Y":522},{"Bonus":0,"Continent":"K34","ID":9284,"Name":"Bagdad","PlayerID":8847546,"Points":10679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9284","ServerKey":"pl181","X":468,"Y":389},{"Bonus":0,"Continent":"K44","ID":9285,"Name":"-012- opresji wytaraskać","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9285","ServerKey":"pl181","X":457,"Y":416},{"Bonus":0,"Continent":"K55","ID":9286,"Name":"[006] Ubiti","PlayerID":848985692,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9286","ServerKey":"pl181","X":590,"Y":533},{"Bonus":0,"Continent":"K45","ID":9287,"Name":"004","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9287","ServerKey":"pl181","X":598,"Y":494},{"Bonus":0,"Continent":"K54","ID":9288,"Name":"lady","PlayerID":699703642,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9288","ServerKey":"pl181","X":481,"Y":595},{"Bonus":0,"Continent":"K65","ID":9289,"Name":"granica wyobrazni","PlayerID":699567608,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9289","ServerKey":"pl181","X":559,"Y":608},{"Bonus":0,"Continent":"K44","ID":9290,"Name":"A022","PlayerID":8740199,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9290","ServerKey":"pl181","X":447,"Y":417},{"Bonus":0,"Continent":"K45","ID":9291,"Name":"A062","PlayerID":699299123,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9291","ServerKey":"pl181","X":504,"Y":433},{"Bonus":0,"Continent":"K45","ID":9292,"Name":"Domek 7","PlayerID":849064614,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9292","ServerKey":"pl181","X":559,"Y":423},{"Bonus":0,"Continent":"K44","ID":9293,"Name":"-011- Yo, nie mogę się z","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9293","ServerKey":"pl181","X":457,"Y":417},{"Bonus":0,"Continent":"K44","ID":9294,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9294","ServerKey":"pl181","X":462,"Y":410},{"Bonus":0,"Continent":"K65","ID":9295,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9295","ServerKey":"pl181","X":548,"Y":614},{"Bonus":5,"Continent":"K55","ID":9296,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9296","ServerKey":"pl181","X":581,"Y":554},{"Bonus":0,"Continent":"K55","ID":9297,"Name":"- 321 -","PlayerID":849018239,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9297","ServerKey":"pl181","X":532,"Y":590},{"Bonus":0,"Continent":"K44","ID":9298,"Name":"00561","PlayerID":3909522,"Points":8824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9298","ServerKey":"pl181","X":438,"Y":429},{"Bonus":0,"Continent":"K55","ID":9299,"Name":"Samotna GĂłra","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9299","ServerKey":"pl181","X":534,"Y":530},{"Bonus":0,"Continent":"K45","ID":9300,"Name":"018","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9300","ServerKey":"pl181","X":557,"Y":420},{"Bonus":0,"Continent":"K45","ID":9301,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9301","ServerKey":"pl181","X":527,"Y":408},{"Bonus":0,"Continent":"K44","ID":9302,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9302","ServerKey":"pl181","X":461,"Y":411},{"Bonus":2,"Continent":"K55","ID":9303,"Name":"0210","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9303","ServerKey":"pl181","X":524,"Y":593},{"Bonus":0,"Continent":"K44","ID":9304,"Name":"041","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9304","ServerKey":"pl181","X":490,"Y":403},{"Bonus":0,"Continent":"K53","ID":9305,"Name":"Wioska 0003","PlayerID":1804724,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9305","ServerKey":"pl181","X":399,"Y":530},{"Bonus":0,"Continent":"K45","ID":9306,"Name":"027 Herman Melville","PlayerID":698829590,"Points":6254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9306","ServerKey":"pl181","X":590,"Y":461},{"Bonus":0,"Continent":"K54","ID":9307,"Name":"014. ALFI","PlayerID":8539216,"Points":2999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9307","ServerKey":"pl181","X":474,"Y":565},{"Bonus":0,"Continent":"K55","ID":9308,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9308","ServerKey":"pl181","X":581,"Y":552},{"Bonus":0,"Continent":"K54","ID":9310,"Name":"G004","PlayerID":8779575,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9310","ServerKey":"pl181","X":431,"Y":567},{"Bonus":0,"Continent":"K45","ID":9312,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9312","ServerKey":"pl181","X":530,"Y":410},{"Bonus":0,"Continent":"K54","ID":9313,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9313","ServerKey":"pl181","X":416,"Y":551},{"Bonus":8,"Continent":"K44","ID":9314,"Name":"+44 61 Villeurbanne Grandclement","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9314","ServerKey":"pl181","X":412,"Y":462},{"Bonus":0,"Continent":"K54","ID":9315,"Name":"F051","PlayerID":699189792,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9315","ServerKey":"pl181","X":490,"Y":521},{"Bonus":0,"Continent":"K54","ID":9316,"Name":"KIELBA 114","PlayerID":699342219,"Points":8301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9316","ServerKey":"pl181","X":430,"Y":565},{"Bonus":0,"Continent":"K44","ID":9317,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9317","ServerKey":"pl181","X":488,"Y":404},{"Bonus":7,"Continent":"K44","ID":9318,"Name":"A#025#","PlayerID":698807570,"Points":11951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9318","ServerKey":"pl181","X":407,"Y":478},{"Bonus":0,"Continent":"K55","ID":9319,"Name":"- 313 -","PlayerID":849018239,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9319","ServerKey":"pl181","X":536,"Y":591},{"Bonus":0,"Continent":"K45","ID":9320,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9320","ServerKey":"pl181","X":576,"Y":442},{"Bonus":0,"Continent":"K45","ID":9321,"Name":"075","PlayerID":699573053,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9321","ServerKey":"pl181","X":591,"Y":470},{"Bonus":0,"Continent":"K45","ID":9322,"Name":".:145:. Niangmen","PlayerID":848934935,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9322","ServerKey":"pl181","X":502,"Y":402},{"Bonus":0,"Continent":"K46","ID":9323,"Name":"022","PlayerID":849088515,"Points":8426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9323","ServerKey":"pl181","X":608,"Y":457},{"Bonus":0,"Continent":"K44","ID":9324,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9324","ServerKey":"pl181","X":469,"Y":410},{"Bonus":0,"Continent":"K44","ID":9326,"Name":"B16","PlayerID":849093422,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9326","ServerKey":"pl181","X":499,"Y":405},{"Bonus":0,"Continent":"K44","ID":9327,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9327","ServerKey":"pl181","X":416,"Y":457},{"Bonus":0,"Continent":"K45","ID":9328,"Name":"084","PlayerID":699573053,"Points":9024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9328","ServerKey":"pl181","X":587,"Y":464},{"Bonus":0,"Continent":"K54","ID":9330,"Name":"Teatr","PlayerID":7249451,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9330","ServerKey":"pl181","X":431,"Y":568},{"Bonus":0,"Continent":"K54","ID":9332,"Name":".Intouchables","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9332","ServerKey":"pl181","X":418,"Y":550},{"Bonus":0,"Continent":"K44","ID":9333,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9333","ServerKey":"pl181","X":420,"Y":443},{"Bonus":0,"Continent":"K55","ID":9334,"Name":"ladyanima","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9334","ServerKey":"pl181","X":514,"Y":569},{"Bonus":0,"Continent":"K55","ID":9335,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9335","ServerKey":"pl181","X":594,"Y":530},{"Bonus":0,"Continent":"K44","ID":9336,"Name":"009 Syracuse","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9336","ServerKey":"pl181","X":441,"Y":469},{"Bonus":0,"Continent":"K55","ID":9337,"Name":"#0091","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9337","ServerKey":"pl181","X":509,"Y":598},{"Bonus":6,"Continent":"K44","ID":9338,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9338","ServerKey":"pl181","X":469,"Y":408},{"Bonus":0,"Continent":"K54","ID":9339,"Name":"(012)","PlayerID":699846892,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9339","ServerKey":"pl181","X":408,"Y":531},{"Bonus":4,"Continent":"K55","ID":9340,"Name":"016","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9340","ServerKey":"pl181","X":549,"Y":582},{"Bonus":0,"Continent":"K55","ID":9341,"Name":"#061","PlayerID":849001572,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9341","ServerKey":"pl181","X":520,"Y":595},{"Bonus":9,"Continent":"K55","ID":9342,"Name":"0012","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9342","ServerKey":"pl181","X":522,"Y":595},{"Bonus":0,"Continent":"K45","ID":9343,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9343","ServerKey":"pl181","X":537,"Y":420},{"Bonus":0,"Continent":"K44","ID":9344,"Name":"-014- ciągle chcesz mnie gƂaskać","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9344","ServerKey":"pl181","X":456,"Y":412},{"Bonus":0,"Continent":"K44","ID":9346,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9346","ServerKey":"pl181","X":443,"Y":421},{"Bonus":0,"Continent":"K44","ID":9347,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9347","ServerKey":"pl181","X":457,"Y":414},{"Bonus":0,"Continent":"K44","ID":9348,"Name":"00502","PlayerID":3909522,"Points":8732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9348","ServerKey":"pl181","X":434,"Y":430},{"Bonus":0,"Continent":"K55","ID":9349,"Name":"Wioska5","PlayerID":8369778,"Points":10212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9349","ServerKey":"pl181","X":509,"Y":594},{"Bonus":0,"Continent":"K54","ID":9350,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9350","ServerKey":"pl181","X":411,"Y":538},{"Bonus":0,"Continent":"K54","ID":9351,"Name":"Ataturk Mask","PlayerID":699833171,"Points":2624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9351","ServerKey":"pl181","X":425,"Y":561},{"Bonus":0,"Continent":"K55","ID":9352,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9352","ServerKey":"pl181","X":565,"Y":570},{"Bonus":0,"Continent":"K44","ID":9353,"Name":"Popas6","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9353","ServerKey":"pl181","X":403,"Y":494},{"Bonus":0,"Continent":"K54","ID":9354,"Name":"Dobranoc","PlayerID":699856962,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9354","ServerKey":"pl181","X":415,"Y":544},{"Bonus":0,"Continent":"K45","ID":9355,"Name":"030","PlayerID":699722599,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9355","ServerKey":"pl181","X":585,"Y":450},{"Bonus":0,"Continent":"K45","ID":9356,"Name":"Polania 001","PlayerID":758104,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9356","ServerKey":"pl181","X":541,"Y":451},{"Bonus":0,"Continent":"K44","ID":9357,"Name":"Astana","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9357","ServerKey":"pl181","X":422,"Y":447},{"Bonus":0,"Continent":"K45","ID":9358,"Name":"BBB","PlayerID":1006847,"Points":6926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9358","ServerKey":"pl181","X":581,"Y":444},{"Bonus":3,"Continent":"K44","ID":9359,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9359","ServerKey":"pl181","X":477,"Y":404},{"Bonus":0,"Continent":"K45","ID":9360,"Name":"BBB","PlayerID":1006847,"Points":8195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9360","ServerKey":"pl181","X":582,"Y":444},{"Bonus":0,"Continent":"K45","ID":9361,"Name":"BBB","PlayerID":1006847,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9361","ServerKey":"pl181","X":556,"Y":424},{"Bonus":0,"Continent":"K45","ID":9362,"Name":"137","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9362","ServerKey":"pl181","X":565,"Y":430},{"Bonus":0,"Continent":"K55","ID":9363,"Name":"Szlachcic 019","PlayerID":758104,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9363","ServerKey":"pl181","X":590,"Y":537},{"Bonus":0,"Continent":"K54","ID":9364,"Name":"Wioska M.01","PlayerID":1804724,"Points":8839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9364","ServerKey":"pl181","X":404,"Y":515},{"Bonus":0,"Continent":"K44","ID":9365,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9365","ServerKey":"pl181","X":422,"Y":445},{"Bonus":0,"Continent":"K45","ID":9366,"Name":"AbacadA 023","PlayerID":699756210,"Points":5444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9366","ServerKey":"pl181","X":560,"Y":422},{"Bonus":0,"Continent":"K44","ID":9367,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9367","ServerKey":"pl181","X":406,"Y":478},{"Bonus":0,"Continent":"K45","ID":9368,"Name":"BBB","PlayerID":1006847,"Points":7757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9368","ServerKey":"pl181","X":553,"Y":422},{"Bonus":8,"Continent":"K45","ID":9369,"Name":"0002","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9369","ServerKey":"pl181","X":597,"Y":497},{"Bonus":0,"Continent":"K34","ID":9370,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9370","ServerKey":"pl181","X":443,"Y":391},{"Bonus":0,"Continent":"K54","ID":9371,"Name":"KIELBA 052","PlayerID":699342219,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9371","ServerKey":"pl181","X":454,"Y":587},{"Bonus":0,"Continent":"K55","ID":9372,"Name":"[040]","PlayerID":848985692,"Points":10392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9372","ServerKey":"pl181","X":592,"Y":537},{"Bonus":0,"Continent":"K45","ID":9373,"Name":".achim.","PlayerID":6936607,"Points":10598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9373","ServerKey":"pl181","X":536,"Y":411},{"Bonus":0,"Continent":"K54","ID":9374,"Name":"Wioska 0008","PlayerID":1804724,"Points":10185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9374","ServerKey":"pl181","X":402,"Y":517},{"Bonus":0,"Continent":"K55","ID":9375,"Name":"[038]","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9375","ServerKey":"pl181","X":593,"Y":532},{"Bonus":0,"Continent":"K54","ID":9376,"Name":"o3pO","PlayerID":699443920,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9376","ServerKey":"pl181","X":442,"Y":564},{"Bonus":0,"Continent":"K55","ID":9377,"Name":"Sector 7Slums Area","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9377","ServerKey":"pl181","X":512,"Y":597},{"Bonus":0,"Continent":"K44","ID":9378,"Name":"0053 kA1","PlayerID":3909522,"Points":10430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9378","ServerKey":"pl181","X":441,"Y":424},{"Bonus":0,"Continent":"K45","ID":9379,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9379","ServerKey":"pl181","X":520,"Y":407},{"Bonus":0,"Continent":"K65","ID":9380,"Name":"0000","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9380","ServerKey":"pl181","X":552,"Y":608},{"Bonus":0,"Continent":"K55","ID":9381,"Name":"Z01","PlayerID":873575,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9381","ServerKey":"pl181","X":555,"Y":582},{"Bonus":0,"Continent":"K54","ID":9382,"Name":"Sparta_12","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9382","ServerKey":"pl181","X":496,"Y":599},{"Bonus":0,"Continent":"K45","ID":9383,"Name":"0004. B - Teirm","PlayerID":7125212,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9383","ServerKey":"pl181","X":595,"Y":488},{"Bonus":0,"Continent":"K54","ID":9384,"Name":"QƂosek","PlayerID":699443920,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9384","ServerKey":"pl181","X":419,"Y":556},{"Bonus":0,"Continent":"K44","ID":9385,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9385","ServerKey":"pl181","X":456,"Y":414},{"Bonus":0,"Continent":"K44","ID":9386,"Name":"Monetki","PlayerID":699098531,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9386","ServerKey":"pl181","X":469,"Y":409},{"Bonus":0,"Continent":"K46","ID":9387,"Name":"Wioska15","PlayerID":848935020,"Points":8804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9387","ServerKey":"pl181","X":620,"Y":478},{"Bonus":0,"Continent":"K55","ID":9388,"Name":"1.Detroit","PlayerID":698215322,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9388","ServerKey":"pl181","X":551,"Y":584},{"Bonus":0,"Continent":"K44","ID":9389,"Name":"[A]_[043] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9389","ServerKey":"pl181","X":407,"Y":474},{"Bonus":0,"Continent":"K44","ID":9390,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9390","ServerKey":"pl181","X":415,"Y":451},{"Bonus":0,"Continent":"K45","ID":9391,"Name":"068","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9391","ServerKey":"pl181","X":587,"Y":460},{"Bonus":0,"Continent":"K54","ID":9392,"Name":"#054","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9392","ServerKey":"pl181","X":476,"Y":596},{"Bonus":0,"Continent":"K54","ID":9393,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9393","ServerKey":"pl181","X":421,"Y":556},{"Bonus":0,"Continent":"K45","ID":9394,"Name":"004","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9394","ServerKey":"pl181","X":556,"Y":400},{"Bonus":0,"Continent":"K44","ID":9395,"Name":"Gravity","PlayerID":698962117,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9395","ServerKey":"pl181","X":415,"Y":453},{"Bonus":0,"Continent":"K55","ID":9396,"Name":"- 286 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9396","ServerKey":"pl181","X":517,"Y":597},{"Bonus":0,"Continent":"K54","ID":9397,"Name":"Wioska4,","PlayerID":8369778,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9397","ServerKey":"pl181","X":492,"Y":597},{"Bonus":0,"Continent":"K54","ID":9398,"Name":"Suppi","PlayerID":699856962,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9398","ServerKey":"pl181","X":413,"Y":539},{"Bonus":0,"Continent":"K55","ID":9399,"Name":"[031] Kwica YoU","PlayerID":848985692,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9399","ServerKey":"pl181","X":597,"Y":516},{"Bonus":0,"Continent":"K44","ID":9400,"Name":"013","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9400","ServerKey":"pl181","X":440,"Y":491},{"Bonus":0,"Continent":"K44","ID":9401,"Name":"A023","PlayerID":8740199,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9401","ServerKey":"pl181","X":451,"Y":416},{"Bonus":0,"Continent":"K44","ID":9402,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9402","ServerKey":"pl181","X":478,"Y":403},{"Bonus":0,"Continent":"K44","ID":9403,"Name":"NiĆŒnie Rysy","PlayerID":849013126,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9403","ServerKey":"pl181","X":408,"Y":462},{"Bonus":0,"Continent":"K54","ID":9404,"Name":"CHW#051","PlayerID":699781762,"Points":9315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9404","ServerKey":"pl181","X":481,"Y":520},{"Bonus":0,"Continent":"K56","ID":9405,"Name":"020 Wioska","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9405","ServerKey":"pl181","X":619,"Y":520},{"Bonus":0,"Continent":"K54","ID":9406,"Name":"A 007.","PlayerID":849028088,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9406","ServerKey":"pl181","X":438,"Y":576},{"Bonus":0,"Continent":"K54","ID":9407,"Name":"NOT?","PlayerID":9236866,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9407","ServerKey":"pl181","X":427,"Y":536},{"Bonus":0,"Continent":"K54","ID":9408,"Name":"KIELBA 057","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9408","ServerKey":"pl181","X":462,"Y":587},{"Bonus":0,"Continent":"K55","ID":9409,"Name":"063 |","PlayerID":8000875,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9409","ServerKey":"pl181","X":545,"Y":504},{"Bonus":0,"Continent":"K45","ID":9410,"Name":"Jehu_Kingdom_06_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9410","ServerKey":"pl181","X":593,"Y":472},{"Bonus":0,"Continent":"K55","ID":9411,"Name":"- 317 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9411","ServerKey":"pl181","X":533,"Y":591},{"Bonus":0,"Continent":"K64","ID":9412,"Name":"0350","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9412","ServerKey":"pl181","X":444,"Y":603},{"Bonus":0,"Continent":"K55","ID":9413,"Name":"Z09","PlayerID":873575,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9413","ServerKey":"pl181","X":550,"Y":584},{"Bonus":0,"Continent":"K54","ID":9414,"Name":"Tczew","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9414","ServerKey":"pl181","X":429,"Y":566},{"Bonus":0,"Continent":"K55","ID":9416,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9416","ServerKey":"pl181","X":579,"Y":557},{"Bonus":0,"Continent":"K55","ID":9417,"Name":"Jaaa","PlayerID":698635863,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9417","ServerKey":"pl181","X":570,"Y":567},{"Bonus":0,"Continent":"K45","ID":9418,"Name":".:146:. Niangmen","PlayerID":848934935,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9418","ServerKey":"pl181","X":505,"Y":401},{"Bonus":0,"Continent":"K45","ID":9419,"Name":"001","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9419","ServerKey":"pl181","X":564,"Y":400},{"Bonus":0,"Continent":"K55","ID":9420,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9420","ServerKey":"pl181","X":571,"Y":567},{"Bonus":0,"Continent":"K55","ID":9421,"Name":"- 287 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9421","ServerKey":"pl181","X":519,"Y":594},{"Bonus":0,"Continent":"K45","ID":9422,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9422","ServerKey":"pl181","X":585,"Y":455},{"Bonus":0,"Continent":"K45","ID":9423,"Name":"Gattacka","PlayerID":699298370,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9423","ServerKey":"pl181","X":596,"Y":488},{"Bonus":0,"Continent":"K56","ID":9424,"Name":"Wioska Sekou","PlayerID":699737356,"Points":8723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9424","ServerKey":"pl181","X":607,"Y":565},{"Bonus":0,"Continent":"K55","ID":9425,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9425","ServerKey":"pl181","X":569,"Y":560},{"Bonus":0,"Continent":"K54","ID":9426,"Name":"Nowa Nadzieja 3","PlayerID":699383121,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9426","ServerKey":"pl181","X":495,"Y":597},{"Bonus":0,"Continent":"K54","ID":9427,"Name":"KIELBA 063","PlayerID":699342219,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9427","ServerKey":"pl181","X":462,"Y":589},{"Bonus":9,"Continent":"K44","ID":9428,"Name":"032","PlayerID":699510259,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9428","ServerKey":"pl181","X":404,"Y":492},{"Bonus":0,"Continent":"K45","ID":9429,"Name":"U Patryka","PlayerID":699433558,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9429","ServerKey":"pl181","X":542,"Y":410},{"Bonus":0,"Continent":"K45","ID":9430,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9430","ServerKey":"pl181","X":572,"Y":434},{"Bonus":0,"Continent":"K55","ID":9431,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9431","ServerKey":"pl181","X":595,"Y":501},{"Bonus":0,"Continent":"K44","ID":9432,"Name":"K44 x012","PlayerID":698364331,"Points":9636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9432","ServerKey":"pl181","X":445,"Y":422},{"Bonus":0,"Continent":"K45","ID":9433,"Name":"BBB","PlayerID":1006847,"Points":7116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9433","ServerKey":"pl181","X":581,"Y":446},{"Bonus":0,"Continent":"K54","ID":9434,"Name":"A 010.","PlayerID":849028088,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9434","ServerKey":"pl181","X":438,"Y":575},{"Bonus":0,"Continent":"K44","ID":9435,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9435","ServerKey":"pl181","X":405,"Y":479},{"Bonus":0,"Continent":"K55","ID":9436,"Name":"0211","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9436","ServerKey":"pl181","X":526,"Y":593},{"Bonus":0,"Continent":"K45","ID":9437,"Name":"AbacadA 010","PlayerID":699756210,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9437","ServerKey":"pl181","X":562,"Y":427},{"Bonus":0,"Continent":"K44","ID":9438,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9438","ServerKey":"pl181","X":424,"Y":437},{"Bonus":0,"Continent":"K44","ID":9439,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9439","ServerKey":"pl181","X":490,"Y":404},{"Bonus":0,"Continent":"K55","ID":9440,"Name":".Cwajka Fans","PlayerID":606407,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9440","ServerKey":"pl181","X":500,"Y":597},{"Bonus":0,"Continent":"K55","ID":9441,"Name":"- 282 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9441","ServerKey":"pl181","X":518,"Y":595},{"Bonus":0,"Continent":"K54","ID":9442,"Name":"001","PlayerID":699333701,"Points":2148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9442","ServerKey":"pl181","X":475,"Y":512},{"Bonus":0,"Continent":"K55","ID":9443,"Name":"Jaaa","PlayerID":698635863,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9443","ServerKey":"pl181","X":582,"Y":594},{"Bonus":0,"Continent":"K45","ID":9444,"Name":"Domek 5","PlayerID":849064614,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9444","ServerKey":"pl181","X":558,"Y":421},{"Bonus":9,"Continent":"K54","ID":9445,"Name":"COUSINS","PlayerID":7976264,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9445","ServerKey":"pl181","X":484,"Y":594},{"Bonus":0,"Continent":"K54","ID":9446,"Name":"F081","PlayerID":699189792,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9446","ServerKey":"pl181","X":488,"Y":526},{"Bonus":0,"Continent":"K54","ID":9447,"Name":"006","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9447","ServerKey":"pl181","X":410,"Y":541},{"Bonus":0,"Continent":"K54","ID":9448,"Name":"Wioska REXMUNDI","PlayerID":7976264,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9448","ServerKey":"pl181","X":491,"Y":595},{"Bonus":0,"Continent":"K55","ID":9449,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9449","ServerKey":"pl181","X":585,"Y":546},{"Bonus":0,"Continent":"K65","ID":9450,"Name":"0622","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9450","ServerKey":"pl181","X":550,"Y":610},{"Bonus":0,"Continent":"K55","ID":9451,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9451","ServerKey":"pl181","X":511,"Y":595},{"Bonus":0,"Continent":"K45","ID":9453,"Name":"052","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9453","ServerKey":"pl181","X":555,"Y":420},{"Bonus":0,"Continent":"K44","ID":9454,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9454","ServerKey":"pl181","X":413,"Y":453},{"Bonus":0,"Continent":"K55","ID":9455,"Name":"Wioska 455","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9455","ServerKey":"pl181","X":591,"Y":538},{"Bonus":0,"Continent":"K45","ID":9456,"Name":".:051:. Chillout","PlayerID":848934935,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9456","ServerKey":"pl181","X":502,"Y":405},{"Bonus":0,"Continent":"K54","ID":9457,"Name":"A.011","PlayerID":849088243,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9457","ServerKey":"pl181","X":409,"Y":578},{"Bonus":8,"Continent":"K55","ID":9458,"Name":"CALL 988","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9458","ServerKey":"pl181","X":560,"Y":577},{"Bonus":0,"Continent":"K45","ID":9460,"Name":"AbacadA 006","PlayerID":699756210,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9460","ServerKey":"pl181","X":563,"Y":424},{"Bonus":0,"Continent":"K45","ID":9461,"Name":"West 03","PlayerID":698702991,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9461","ServerKey":"pl181","X":595,"Y":472},{"Bonus":0,"Continent":"K54","ID":9462,"Name":"Wioska barbarzyƄska","PlayerID":699833171,"Points":1053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9462","ServerKey":"pl181","X":426,"Y":561},{"Bonus":0,"Continent":"K44","ID":9463,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9463","ServerKey":"pl181","X":402,"Y":481},{"Bonus":0,"Continent":"K44","ID":9464,"Name":"+44 61 Bergues","PlayerID":698361257,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9464","ServerKey":"pl181","X":411,"Y":466},{"Bonus":0,"Continent":"K54","ID":9465,"Name":"Winter is coming","PlayerID":699364813,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9465","ServerKey":"pl181","X":455,"Y":588},{"Bonus":0,"Continent":"K54","ID":9466,"Name":"Wioska 0015","PlayerID":1804724,"Points":10196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9466","ServerKey":"pl181","X":404,"Y":523},{"Bonus":0,"Continent":"K45","ID":9467,"Name":"057","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9467","ServerKey":"pl181","X":544,"Y":412},{"Bonus":0,"Continent":"K44","ID":9468,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9468","ServerKey":"pl181","X":451,"Y":418},{"Bonus":0,"Continent":"K44","ID":9469,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9469","ServerKey":"pl181","X":425,"Y":435},{"Bonus":0,"Continent":"K44","ID":9470,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9470","ServerKey":"pl181","X":441,"Y":423},{"Bonus":0,"Continent":"K54","ID":9471,"Name":"KIELBA 019","PlayerID":699342219,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9471","ServerKey":"pl181","X":442,"Y":576},{"Bonus":0,"Continent":"K45","ID":9472,"Name":"Wioska","PlayerID":3895471,"Points":1997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9472","ServerKey":"pl181","X":508,"Y":403},{"Bonus":0,"Continent":"K54","ID":9473,"Name":"017WDZ ZNÓW GOƚCI W TWOICH SNACH","PlayerID":699856962,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9473","ServerKey":"pl181","X":411,"Y":544},{"Bonus":0,"Continent":"K34","ID":9474,"Name":"009 Nie caƂkiem zgodnie z planem","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9474","ServerKey":"pl181","X":493,"Y":380},{"Bonus":0,"Continent":"K54","ID":9475,"Name":"0000010#","PlayerID":849089881,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9475","ServerKey":"pl181","X":436,"Y":573},{"Bonus":0,"Continent":"K55","ID":9476,"Name":"0212","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9476","ServerKey":"pl181","X":532,"Y":594},{"Bonus":0,"Continent":"K54","ID":9477,"Name":"KIELBA 021","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9477","ServerKey":"pl181","X":444,"Y":581},{"Bonus":0,"Continent":"K54","ID":9478,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9478","ServerKey":"pl181","X":466,"Y":592},{"Bonus":0,"Continent":"K55","ID":9479,"Name":"- 311 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9479","ServerKey":"pl181","X":531,"Y":592},{"Bonus":0,"Continent":"K45","ID":9480,"Name":"BBB","PlayerID":1006847,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9480","ServerKey":"pl181","X":581,"Y":445},{"Bonus":0,"Continent":"K55","ID":9481,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9481","ServerKey":"pl181","X":564,"Y":571},{"Bonus":0,"Continent":"K44","ID":9482,"Name":"[A]_[031] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9482","ServerKey":"pl181","X":403,"Y":480},{"Bonus":0,"Continent":"K45","ID":9483,"Name":"ABADON B.A.D L.I.N.E","PlayerID":699347951,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9483","ServerKey":"pl181","X":594,"Y":478},{"Bonus":7,"Continent":"K45","ID":9484,"Name":"005 - Zaragoza","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9484","ServerKey":"pl181","X":598,"Y":487},{"Bonus":0,"Continent":"K54","ID":9485,"Name":"Quimon","PlayerID":699443920,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9485","ServerKey":"pl181","X":419,"Y":555},{"Bonus":0,"Continent":"K54","ID":9486,"Name":"#063","PlayerID":849001572,"Points":8180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9486","ServerKey":"pl181","X":480,"Y":596},{"Bonus":0,"Continent":"K45","ID":9487,"Name":"033","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9487","ServerKey":"pl181","X":554,"Y":418},{"Bonus":0,"Continent":"K55","ID":9488,"Name":"Sector 7 Pillar","PlayerID":8199417,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9488","ServerKey":"pl181","X":515,"Y":598},{"Bonus":0,"Continent":"K45","ID":9489,"Name":"Joms 043","PlayerID":699756210,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9489","ServerKey":"pl181","X":553,"Y":416},{"Bonus":0,"Continent":"K45","ID":9490,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9490","ServerKey":"pl181","X":532,"Y":410},{"Bonus":4,"Continent":"K44","ID":9491,"Name":"[A]_[028] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9491","ServerKey":"pl181","X":405,"Y":487},{"Bonus":0,"Continent":"K54","ID":9492,"Name":"Yogi","PlayerID":2808172,"Points":9903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9492","ServerKey":"pl181","X":489,"Y":530},{"Bonus":0,"Continent":"K54","ID":9493,"Name":"Adiyogi Shiva","PlayerID":699833171,"Points":5784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9493","ServerKey":"pl181","X":426,"Y":562},{"Bonus":0,"Continent":"K55","ID":9494,"Name":"1.Memphis","PlayerID":698215322,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9494","ServerKey":"pl181","X":540,"Y":591},{"Bonus":5,"Continent":"K55","ID":9495,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9495","ServerKey":"pl181","X":593,"Y":535},{"Bonus":0,"Continent":"K44","ID":9496,"Name":"AAA","PlayerID":849093422,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9496","ServerKey":"pl181","X":498,"Y":403},{"Bonus":0,"Continent":"K55","ID":9497,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9497","ServerKey":"pl181","X":594,"Y":529},{"Bonus":0,"Continent":"K43","ID":9498,"Name":"009","PlayerID":3698627,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9498","ServerKey":"pl181","X":384,"Y":455},{"Bonus":0,"Continent":"K45","ID":9499,"Name":"BBB","PlayerID":1006847,"Points":6543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9499","ServerKey":"pl181","X":583,"Y":445},{"Bonus":0,"Continent":"K44","ID":9500,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9500","ServerKey":"pl181","X":467,"Y":497},{"Bonus":0,"Continent":"K55","ID":9501,"Name":"0213","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9501","ServerKey":"pl181","X":524,"Y":595},{"Bonus":0,"Continent":"K54","ID":9502,"Name":"Suppi","PlayerID":699856962,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9502","ServerKey":"pl181","X":411,"Y":536},{"Bonus":0,"Continent":"K45","ID":9503,"Name":"076","PlayerID":699573053,"Points":10097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9503","ServerKey":"pl181","X":592,"Y":469},{"Bonus":0,"Continent":"K45","ID":9504,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9504","ServerKey":"pl181","X":507,"Y":458},{"Bonus":0,"Continent":"K55","ID":9505,"Name":"Wioska","PlayerID":698845189,"Points":9134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9505","ServerKey":"pl181","X":596,"Y":520},{"Bonus":0,"Continent":"K65","ID":9506,"Name":"Wioska Inko","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9506","ServerKey":"pl181","X":545,"Y":605},{"Bonus":6,"Continent":"K45","ID":9507,"Name":"043","PlayerID":849063849,"Points":8724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9507","ServerKey":"pl181","X":551,"Y":415},{"Bonus":0,"Continent":"K44","ID":9508,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9508","ServerKey":"pl181","X":440,"Y":401},{"Bonus":0,"Continent":"K45","ID":9509,"Name":"AbacadA 008","PlayerID":699756210,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9509","ServerKey":"pl181","X":577,"Y":439},{"Bonus":0,"Continent":"K54","ID":9510,"Name":"022","PlayerID":7976264,"Points":10166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9510","ServerKey":"pl181","X":477,"Y":594},{"Bonus":0,"Continent":"K54","ID":9511,"Name":"Sparta_77","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9511","ServerKey":"pl181","X":498,"Y":596},{"Bonus":0,"Continent":"K54","ID":9512,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9512","ServerKey":"pl181","X":404,"Y":509},{"Bonus":0,"Continent":"K54","ID":9513,"Name":"045o","PlayerID":699099811,"Points":11558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9513","ServerKey":"pl181","X":445,"Y":582},{"Bonus":0,"Continent":"K54","ID":9514,"Name":"087 MEHEHE","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9514","ServerKey":"pl181","X":488,"Y":598},{"Bonus":0,"Continent":"K55","ID":9515,"Name":"025 co ja tu robie","PlayerID":8459255,"Points":10679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9515","ServerKey":"pl181","X":599,"Y":505},{"Bonus":0,"Continent":"K54","ID":9516,"Name":"KIELBA 017","PlayerID":699342219,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9516","ServerKey":"pl181","X":441,"Y":575},{"Bonus":0,"Continent":"K54","ID":9517,"Name":"Ɓakomy majk","PlayerID":699364813,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9517","ServerKey":"pl181","X":472,"Y":596},{"Bonus":0,"Continent":"K45","ID":9518,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":6447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9518","ServerKey":"pl181","X":572,"Y":431},{"Bonus":9,"Continent":"K55","ID":9519,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9519","ServerKey":"pl181","X":575,"Y":562},{"Bonus":0,"Continent":"K43","ID":9520,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9520","ServerKey":"pl181","X":397,"Y":469},{"Bonus":0,"Continent":"K45","ID":9521,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9521","ServerKey":"pl181","X":529,"Y":409},{"Bonus":0,"Continent":"K54","ID":9522,"Name":"Wioska 006","PlayerID":698290577,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9522","ServerKey":"pl181","X":403,"Y":500},{"Bonus":0,"Continent":"K54","ID":9523,"Name":"Majin Buu 003","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9523","ServerKey":"pl181","X":438,"Y":571},{"Bonus":0,"Continent":"K54","ID":9524,"Name":"Nowa Nadzieja 2","PlayerID":699383121,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9524","ServerKey":"pl181","X":490,"Y":598},{"Bonus":0,"Continent":"K55","ID":9525,"Name":"#043","PlayerID":849001572,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9525","ServerKey":"pl181","X":537,"Y":591},{"Bonus":0,"Continent":"K54","ID":9526,"Name":"Pf Konfederacja p 8","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9526","ServerKey":"pl181","X":488,"Y":513},{"Bonus":0,"Continent":"K54","ID":9527,"Name":"Stage group D 2","PlayerID":699364813,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9527","ServerKey":"pl181","X":477,"Y":595},{"Bonus":0,"Continent":"K44","ID":9528,"Name":"[A]_[025] Dejv.oldplyr","PlayerID":699380607,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9528","ServerKey":"pl181","X":406,"Y":482},{"Bonus":0,"Continent":"K54","ID":9529,"Name":"0000014!","PlayerID":849089881,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9529","ServerKey":"pl181","X":446,"Y":584},{"Bonus":0,"Continent":"K45","ID":9531,"Name":".:147:. Niangmen","PlayerID":848934935,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9531","ServerKey":"pl181","X":500,"Y":404},{"Bonus":3,"Continent":"K44","ID":9532,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9532","ServerKey":"pl181","X":453,"Y":413},{"Bonus":0,"Continent":"K35","ID":9533,"Name":"010 Powolutku","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9533","ServerKey":"pl181","X":506,"Y":388},{"Bonus":0,"Continent":"K54","ID":9534,"Name":"Wioska barbarzyƄska","PlayerID":699833171,"Points":2889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9534","ServerKey":"pl181","X":427,"Y":562},{"Bonus":0,"Continent":"K55","ID":9535,"Name":"#0090","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9535","ServerKey":"pl181","X":510,"Y":598},{"Bonus":0,"Continent":"K54","ID":9536,"Name":"009","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9536","ServerKey":"pl181","X":411,"Y":535},{"Bonus":0,"Continent":"K45","ID":9537,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9537","ServerKey":"pl181","X":518,"Y":404},{"Bonus":0,"Continent":"K54","ID":9538,"Name":"010","PlayerID":849028088,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9538","ServerKey":"pl181","X":438,"Y":577},{"Bonus":0,"Continent":"K45","ID":9539,"Name":"AbacadA 003","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9539","ServerKey":"pl181","X":566,"Y":427},{"Bonus":0,"Continent":"K45","ID":9540,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9540","ServerKey":"pl181","X":596,"Y":499},{"Bonus":0,"Continent":"K45","ID":9541,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9541","ServerKey":"pl181","X":523,"Y":407},{"Bonus":0,"Continent":"K54","ID":9542,"Name":"066","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9542","ServerKey":"pl181","X":404,"Y":508},{"Bonus":0,"Continent":"K45","ID":9543,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9543","ServerKey":"pl181","X":527,"Y":405},{"Bonus":0,"Continent":"K55","ID":9544,"Name":"Wioska","PlayerID":698702991,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9544","ServerKey":"pl181","X":589,"Y":543},{"Bonus":0,"Continent":"K54","ID":9545,"Name":"KIELBA 022","PlayerID":699342219,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9545","ServerKey":"pl181","X":445,"Y":581},{"Bonus":0,"Continent":"K55","ID":9546,"Name":"- 322 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9546","ServerKey":"pl181","X":516,"Y":596},{"Bonus":0,"Continent":"K45","ID":9547,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9547","ServerKey":"pl181","X":528,"Y":410},{"Bonus":0,"Continent":"K44","ID":9548,"Name":"B20","PlayerID":8649412,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9548","ServerKey":"pl181","X":497,"Y":403},{"Bonus":0,"Continent":"K54","ID":9549,"Name":"010. Punkty Topce","PlayerID":7976264,"Points":7789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9549","ServerKey":"pl181","X":482,"Y":597},{"Bonus":0,"Continent":"K54","ID":9550,"Name":"Popas5","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9550","ServerKey":"pl181","X":404,"Y":500},{"Bonus":0,"Continent":"K55","ID":9551,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9551","ServerKey":"pl181","X":571,"Y":568},{"Bonus":8,"Continent":"K44","ID":9552,"Name":"Wrzosowa","PlayerID":699433558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9552","ServerKey":"pl181","X":488,"Y":401},{"Bonus":0,"Continent":"K54","ID":9553,"Name":"Sinope","PlayerID":699833171,"Points":8974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9553","ServerKey":"pl181","X":423,"Y":559},{"Bonus":0,"Continent":"K54","ID":9554,"Name":"Wioska 0014","PlayerID":1804724,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9554","ServerKey":"pl181","X":404,"Y":525},{"Bonus":0,"Continent":"K44","ID":9555,"Name":"SsSs","PlayerID":1536625,"Points":8812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9555","ServerKey":"pl181","X":402,"Y":491},{"Bonus":0,"Continent":"K55","ID":9556,"Name":"Wioska","PlayerID":8369778,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9556","ServerKey":"pl181","X":504,"Y":597},{"Bonus":0,"Continent":"K54","ID":9557,"Name":"Winter is coming","PlayerID":699364813,"Points":9234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9557","ServerKey":"pl181","X":464,"Y":593},{"Bonus":0,"Continent":"K44","ID":9558,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9558","ServerKey":"pl181","X":413,"Y":457},{"Bonus":0,"Continent":"K54","ID":9559,"Name":"Daleko 018","PlayerID":699703642,"Points":7370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9559","ServerKey":"pl181","X":481,"Y":593},{"Bonus":0,"Continent":"K54","ID":9560,"Name":"018 MASZ KOLEJNY TAKT","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9560","ServerKey":"pl181","X":411,"Y":543},{"Bonus":0,"Continent":"K45","ID":9561,"Name":".achim.","PlayerID":6936607,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9561","ServerKey":"pl181","X":543,"Y":413},{"Bonus":0,"Continent":"K44","ID":9562,"Name":"Gravity","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9562","ServerKey":"pl181","X":411,"Y":456},{"Bonus":0,"Continent":"K55","ID":9563,"Name":"- 268 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9563","ServerKey":"pl181","X":533,"Y":581},{"Bonus":0,"Continent":"K54","ID":9564,"Name":"Sparta_13","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9564","ServerKey":"pl181","X":498,"Y":599},{"Bonus":0,"Continent":"K44","ID":9565,"Name":"A024","PlayerID":8740199,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9565","ServerKey":"pl181","X":446,"Y":416},{"Bonus":0,"Continent":"K45","ID":9566,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9566","ServerKey":"pl181","X":521,"Y":406},{"Bonus":0,"Continent":"K44","ID":9567,"Name":"Monetki","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9567","ServerKey":"pl181","X":474,"Y":408},{"Bonus":0,"Continent":"K45","ID":9568,"Name":"022","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9568","ServerKey":"pl181","X":550,"Y":414},{"Bonus":0,"Continent":"K55","ID":9569,"Name":"JaawmG P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9569","ServerKey":"pl181","X":583,"Y":551},{"Bonus":0,"Continent":"K54","ID":9570,"Name":"Leda","PlayerID":699833171,"Points":8339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9570","ServerKey":"pl181","X":422,"Y":558},{"Bonus":0,"Continent":"K55","ID":9571,"Name":"009. Wioska Alstrem","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9571","ServerKey":"pl181","X":593,"Y":523},{"Bonus":0,"Continent":"K44","ID":9572,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9572","ServerKey":"pl181","X":401,"Y":485},{"Bonus":0,"Continent":"K54","ID":9573,"Name":"092","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9573","ServerKey":"pl181","X":404,"Y":514},{"Bonus":0,"Continent":"K45","ID":9574,"Name":"Domek 4","PlayerID":849064614,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9574","ServerKey":"pl181","X":556,"Y":419},{"Bonus":0,"Continent":"K54","ID":9575,"Name":"Wioska 0032","PlayerID":1804724,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9575","ServerKey":"pl181","X":405,"Y":517},{"Bonus":0,"Continent":"K55","ID":9576,"Name":"- 304 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9576","ServerKey":"pl181","X":536,"Y":589},{"Bonus":0,"Continent":"K54","ID":9577,"Name":"#057","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9577","ServerKey":"pl181","X":480,"Y":598},{"Bonus":0,"Continent":"K45","ID":9578,"Name":"0014","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9578","ServerKey":"pl181","X":597,"Y":494},{"Bonus":0,"Continent":"K55","ID":9579,"Name":"012. Wioska ruch135","PlayerID":8788366,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9579","ServerKey":"pl181","X":594,"Y":520},{"Bonus":0,"Continent":"K54","ID":9580,"Name":"Teby_38","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9580","ServerKey":"pl181","X":484,"Y":597},{"Bonus":0,"Continent":"K55","ID":9581,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9581","ServerKey":"pl181","X":580,"Y":559},{"Bonus":0,"Continent":"K44","ID":9582,"Name":"Gravity","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9582","ServerKey":"pl181","X":419,"Y":448},{"Bonus":0,"Continent":"K55","ID":9583,"Name":"Wioska3","PlayerID":8369778,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9583","ServerKey":"pl181","X":507,"Y":596},{"Bonus":0,"Continent":"K55","ID":9584,"Name":"|032|","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9584","ServerKey":"pl181","X":570,"Y":565},{"Bonus":0,"Continent":"K54","ID":9585,"Name":"Pelplin","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9585","ServerKey":"pl181","X":430,"Y":568},{"Bonus":0,"Continent":"K55","ID":9586,"Name":"[211]","PlayerID":8000875,"Points":2054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9586","ServerKey":"pl181","X":570,"Y":568},{"Bonus":0,"Continent":"K44","ID":9587,"Name":"006. Rygjafylke","PlayerID":699660539,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9587","ServerKey":"pl181","X":426,"Y":433},{"Bonus":0,"Continent":"K54","ID":9588,"Name":"Wioska barbarzyƄska","PlayerID":699833171,"Points":3333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9588","ServerKey":"pl181","X":426,"Y":565},{"Bonus":0,"Continent":"K55","ID":9590,"Name":"- 114 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9590","ServerKey":"pl181","X":548,"Y":586},{"Bonus":0,"Continent":"K55","ID":9591,"Name":"Z10","PlayerID":873575,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9591","ServerKey":"pl181","X":555,"Y":581},{"Bonus":0,"Continent":"K54","ID":9592,"Name":"Winter is coming","PlayerID":699364813,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9592","ServerKey":"pl181","X":478,"Y":594},{"Bonus":0,"Continent":"K55","ID":9593,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9593","ServerKey":"pl181","X":578,"Y":562},{"Bonus":0,"Continent":"K43","ID":9594,"Name":"[A]_[007] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9594","ServerKey":"pl181","X":394,"Y":486},{"Bonus":0,"Continent":"K54","ID":9595,"Name":"Majin Buu 006","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9595","ServerKey":"pl181","X":434,"Y":576},{"Bonus":0,"Continent":"K44","ID":9597,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9597","ServerKey":"pl181","X":467,"Y":409},{"Bonus":0,"Continent":"K55","ID":9598,"Name":"Wioska1,","PlayerID":8369778,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9598","ServerKey":"pl181","X":504,"Y":599},{"Bonus":0,"Continent":"K45","ID":9599,"Name":"AbacadA 011","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9599","ServerKey":"pl181","X":564,"Y":427},{"Bonus":0,"Continent":"K55","ID":9600,"Name":"#062","PlayerID":849001572,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9600","ServerKey":"pl181","X":520,"Y":594},{"Bonus":0,"Continent":"K54","ID":9601,"Name":"Winter is coming","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9601","ServerKey":"pl181","X":463,"Y":593},{"Bonus":0,"Continent":"K54","ID":9602,"Name":"031","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9602","ServerKey":"pl181","X":401,"Y":506},{"Bonus":0,"Continent":"K44","ID":9603,"Name":"HoƂopole","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9603","ServerKey":"pl181","X":485,"Y":404},{"Bonus":0,"Continent":"K45","ID":9604,"Name":"BBB","PlayerID":1006847,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9604","ServerKey":"pl181","X":556,"Y":423},{"Bonus":0,"Continent":"K45","ID":9605,"Name":".:032:. Chillout","PlayerID":848934935,"Points":7998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9605","ServerKey":"pl181","X":520,"Y":449},{"Bonus":0,"Continent":"K55","ID":9606,"Name":"008","PlayerID":8138506,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9606","ServerKey":"pl181","X":587,"Y":541},{"Bonus":0,"Continent":"K55","ID":9607,"Name":"- 105 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9607","ServerKey":"pl181","X":544,"Y":586},{"Bonus":0,"Continent":"K44","ID":9608,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9608","ServerKey":"pl181","X":421,"Y":442},{"Bonus":0,"Continent":"K45","ID":9609,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9609","ServerKey":"pl181","X":577,"Y":436},{"Bonus":0,"Continent":"K54","ID":9610,"Name":"KIELBA 121","PlayerID":699342219,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9610","ServerKey":"pl181","X":442,"Y":580},{"Bonus":0,"Continent":"K45","ID":9612,"Name":"019","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9612","ServerKey":"pl181","X":553,"Y":415},{"Bonus":0,"Continent":"K45","ID":9613,"Name":"AbacadA 005","PlayerID":699756210,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9613","ServerKey":"pl181","X":564,"Y":426},{"Bonus":0,"Continent":"K54","ID":9614,"Name":"(030)","PlayerID":699846892,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9614","ServerKey":"pl181","X":407,"Y":532},{"Bonus":0,"Continent":"K54","ID":9615,"Name":"KIELBA 116","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9615","ServerKey":"pl181","X":464,"Y":592},{"Bonus":0,"Continent":"K54","ID":9616,"Name":"Tank 003","PlayerID":698290577,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9616","ServerKey":"pl181","X":401,"Y":505},{"Bonus":0,"Continent":"K44","ID":9617,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9617","ServerKey":"pl181","X":480,"Y":406},{"Bonus":0,"Continent":"K64","ID":9618,"Name":"#053","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9618","ServerKey":"pl181","X":488,"Y":600},{"Bonus":0,"Continent":"K45","ID":9619,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9619","ServerKey":"pl181","X":522,"Y":403},{"Bonus":0,"Continent":"K45","ID":9620,"Name":"069","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9620","ServerKey":"pl181","X":597,"Y":474},{"Bonus":0,"Continent":"K54","ID":9622,"Name":"Teby_36","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9622","ServerKey":"pl181","X":485,"Y":597},{"Bonus":0,"Continent":"K54","ID":9623,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9623","ServerKey":"pl181","X":475,"Y":593},{"Bonus":0,"Continent":"K45","ID":9624,"Name":"B12","PlayerID":849093422,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9624","ServerKey":"pl181","X":506,"Y":404},{"Bonus":0,"Continent":"K54","ID":9625,"Name":"KIELBA 087","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9625","ServerKey":"pl181","X":456,"Y":587},{"Bonus":1,"Continent":"K55","ID":9626,"Name":"0214","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9626","ServerKey":"pl181","X":522,"Y":597},{"Bonus":0,"Continent":"K35","ID":9627,"Name":".:099:. Niangmen","PlayerID":848934935,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9627","ServerKey":"pl181","X":503,"Y":394},{"Bonus":0,"Continent":"K54","ID":9628,"Name":"(035)","PlayerID":699846892,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9628","ServerKey":"pl181","X":405,"Y":528},{"Bonus":0,"Continent":"K54","ID":9629,"Name":"Suppi","PlayerID":699856962,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9629","ServerKey":"pl181","X":413,"Y":538},{"Bonus":0,"Continent":"K44","ID":9630,"Name":"Monetki","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9630","ServerKey":"pl181","X":482,"Y":402},{"Bonus":0,"Continent":"K45","ID":9631,"Name":"017","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9631","ServerKey":"pl181","X":551,"Y":417},{"Bonus":0,"Continent":"K65","ID":9632,"Name":"Newbie","PlayerID":699567608,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9632","ServerKey":"pl181","X":558,"Y":607},{"Bonus":0,"Continent":"K56","ID":9633,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9633","ServerKey":"pl181","X":600,"Y":502},{"Bonus":0,"Continent":"K45","ID":9634,"Name":"Joms 032","PlayerID":699756210,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9634","ServerKey":"pl181","X":533,"Y":423},{"Bonus":0,"Continent":"K45","ID":9635,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9635","ServerKey":"pl181","X":515,"Y":402},{"Bonus":0,"Continent":"K55","ID":9636,"Name":"070 |","PlayerID":8000875,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9636","ServerKey":"pl181","X":543,"Y":521},{"Bonus":3,"Continent":"K54","ID":9637,"Name":"Osada koczownikĂłw","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9637","ServerKey":"pl181","X":478,"Y":596},{"Bonus":0,"Continent":"K55","ID":9638,"Name":"015 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9638","ServerKey":"pl181","X":595,"Y":521},{"Bonus":0,"Continent":"K54","ID":9639,"Name":"Wioska sznur","PlayerID":699265922,"Points":8554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9639","ServerKey":"pl181","X":403,"Y":504},{"Bonus":0,"Continent":"K54","ID":9640,"Name":"Wioska M.04","PlayerID":1804724,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9640","ServerKey":"pl181","X":405,"Y":522},{"Bonus":0,"Continent":"K55","ID":9641,"Name":"Czaruƛ","PlayerID":699785935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9641","ServerKey":"pl181","X":573,"Y":599},{"Bonus":0,"Continent":"K44","ID":9642,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9642","ServerKey":"pl181","X":488,"Y":405},{"Bonus":0,"Continent":"K35","ID":9643,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9643","ServerKey":"pl181","X":537,"Y":389},{"Bonus":0,"Continent":"K45","ID":9644,"Name":"BBB","PlayerID":1006847,"Points":5987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9644","ServerKey":"pl181","X":583,"Y":448},{"Bonus":0,"Continent":"K44","ID":9645,"Name":"[A]_[047] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9645","ServerKey":"pl181","X":404,"Y":474},{"Bonus":0,"Continent":"K45","ID":9646,"Name":"020","PlayerID":699722599,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9646","ServerKey":"pl181","X":589,"Y":454},{"Bonus":0,"Continent":"K45","ID":9647,"Name":"O:Aabadon d","PlayerID":699347951,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9647","ServerKey":"pl181","X":593,"Y":478},{"Bonus":0,"Continent":"K45","ID":9648,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9648","ServerKey":"pl181","X":513,"Y":402},{"Bonus":0,"Continent":"K54","ID":9649,"Name":"Wioska 0033","PlayerID":1804724,"Points":8759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9649","ServerKey":"pl181","X":404,"Y":521},{"Bonus":0,"Continent":"K45","ID":9650,"Name":"Jehu_Kingdom_01_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9650","ServerKey":"pl181","X":598,"Y":481},{"Bonus":0,"Continent":"K44","ID":9651,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":8375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9651","ServerKey":"pl181","X":429,"Y":434},{"Bonus":0,"Continent":"K65","ID":9652,"Name":"Executive Suite","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9652","ServerKey":"pl181","X":522,"Y":608},{"Bonus":0,"Continent":"K54","ID":9653,"Name":"Winter is coming","PlayerID":699364813,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9653","ServerKey":"pl181","X":478,"Y":597},{"Bonus":0,"Continent":"K44","ID":9654,"Name":"+44 62 Oye Plage","PlayerID":698361257,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9654","ServerKey":"pl181","X":427,"Y":469},{"Bonus":0,"Continent":"K54","ID":9655,"Name":"Eukalade","PlayerID":699833171,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9655","ServerKey":"pl181","X":424,"Y":558},{"Bonus":8,"Continent":"K55","ID":9656,"Name":"056. Isenstar","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9656","ServerKey":"pl181","X":589,"Y":540},{"Bonus":0,"Continent":"K54","ID":9657,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9657","ServerKey":"pl181","X":418,"Y":553},{"Bonus":0,"Continent":"K45","ID":9658,"Name":"011 Myszy z dyszy","PlayerID":698829590,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9658","ServerKey":"pl181","X":589,"Y":461},{"Bonus":0,"Continent":"K55","ID":9659,"Name":"Z11","PlayerID":873575,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9659","ServerKey":"pl181","X":546,"Y":584},{"Bonus":0,"Continent":"K55","ID":9660,"Name":"[036]","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9660","ServerKey":"pl181","X":593,"Y":538},{"Bonus":0,"Continent":"K54","ID":9661,"Name":"(026)","PlayerID":699846892,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9661","ServerKey":"pl181","X":407,"Y":531},{"Bonus":0,"Continent":"K55","ID":9662,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9662","ServerKey":"pl181","X":584,"Y":552},{"Bonus":3,"Continent":"K44","ID":9663,"Name":"Monetki","PlayerID":699098531,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9663","ServerKey":"pl181","X":477,"Y":405},{"Bonus":0,"Continent":"K55","ID":9664,"Name":"mehehe","PlayerID":699698253,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9664","ServerKey":"pl181","X":523,"Y":597},{"Bonus":0,"Continent":"K56","ID":9665,"Name":"W.181/06","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9665","ServerKey":"pl181","X":613,"Y":536},{"Bonus":0,"Continent":"K44","ID":9666,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9666","ServerKey":"pl181","X":409,"Y":461},{"Bonus":0,"Continent":"K55","ID":9667,"Name":"#0096","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9667","ServerKey":"pl181","X":514,"Y":599},{"Bonus":0,"Continent":"K55","ID":9668,"Name":"#054","PlayerID":849001572,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9668","ServerKey":"pl181","X":520,"Y":596},{"Bonus":0,"Continent":"K54","ID":9669,"Name":"Dobranoc","PlayerID":699856962,"Points":9213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9669","ServerKey":"pl181","X":414,"Y":543},{"Bonus":0,"Continent":"K54","ID":9670,"Name":"Dobranoc","PlayerID":698971484,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9670","ServerKey":"pl181","X":416,"Y":547},{"Bonus":0,"Continent":"K44","ID":9671,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9671","ServerKey":"pl181","X":460,"Y":413},{"Bonus":0,"Continent":"K44","ID":9672,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9672","ServerKey":"pl181","X":479,"Y":403},{"Bonus":0,"Continent":"K45","ID":9673,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9673","ServerKey":"pl181","X":569,"Y":433},{"Bonus":0,"Continent":"K64","ID":9674,"Name":"Sparta_14","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9674","ServerKey":"pl181","X":494,"Y":600},{"Bonus":4,"Continent":"K44","ID":9675,"Name":"-008- Jestem kotem","PlayerID":9291984,"Points":7362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9675","ServerKey":"pl181","X":461,"Y":408},{"Bonus":0,"Continent":"K54","ID":9676,"Name":"Wioska M...","PlayerID":1804724,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9676","ServerKey":"pl181","X":404,"Y":520},{"Bonus":0,"Continent":"K54","ID":9677,"Name":"0000013#","PlayerID":849089881,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9677","ServerKey":"pl181","X":430,"Y":571},{"Bonus":0,"Continent":"K44","ID":9678,"Name":"[A]_[035] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9678","ServerKey":"pl181","X":405,"Y":473},{"Bonus":0,"Continent":"K54","ID":9679,"Name":"#024","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9679","ServerKey":"pl181","X":486,"Y":599},{"Bonus":0,"Continent":"K55","ID":9680,"Name":"Z12","PlayerID":873575,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9680","ServerKey":"pl181","X":550,"Y":583},{"Bonus":0,"Continent":"K44","ID":9681,"Name":"Gravity","PlayerID":698962117,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9681","ServerKey":"pl181","X":416,"Y":449},{"Bonus":0,"Continent":"K54","ID":9682,"Name":"Wioska barbarzyƄska","PlayerID":699833171,"Points":9324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9682","ServerKey":"pl181","X":420,"Y":558},{"Bonus":0,"Continent":"K44","ID":9683,"Name":"HoƂopole","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9683","ServerKey":"pl181","X":489,"Y":405},{"Bonus":0,"Continent":"K55","ID":9684,"Name":"Jehu_Kingdom_23_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9684","ServerKey":"pl181","X":597,"Y":509},{"Bonus":0,"Continent":"K45","ID":9687,"Name":"052","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9687","ServerKey":"pl181","X":595,"Y":483},{"Bonus":0,"Continent":"K44","ID":9688,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9688","ServerKey":"pl181","X":406,"Y":475},{"Bonus":0,"Continent":"K55","ID":9689,"Name":"[028] Nuzudyti tave","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9689","ServerKey":"pl181","X":598,"Y":517},{"Bonus":1,"Continent":"K54","ID":9690,"Name":"KIELBA 097","PlayerID":699342219,"Points":10276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9690","ServerKey":"pl181","X":463,"Y":592},{"Bonus":0,"Continent":"K54","ID":9691,"Name":"Prosecco","PlayerID":699443920,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9691","ServerKey":"pl181","X":407,"Y":562},{"Bonus":8,"Continent":"K65","ID":9692,"Name":"Ciasny wiesiek 222","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9692","ServerKey":"pl181","X":504,"Y":600},{"Bonus":0,"Continent":"K44","ID":9693,"Name":"002","PlayerID":9291984,"Points":5579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9693","ServerKey":"pl181","X":467,"Y":406},{"Bonus":0,"Continent":"K44","ID":9694,"Name":"A025","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9694","ServerKey":"pl181","X":451,"Y":412},{"Bonus":0,"Continent":"K54","ID":9695,"Name":"012. Bastion","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9695","ServerKey":"pl181","X":417,"Y":556},{"Bonus":0,"Continent":"K54","ID":9696,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":10024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9696","ServerKey":"pl181","X":481,"Y":596},{"Bonus":3,"Continent":"K54","ID":9698,"Name":"koczownicza 03","PlayerID":1804724,"Points":9572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9698","ServerKey":"pl181","X":402,"Y":515},{"Bonus":0,"Continent":"K55","ID":9699,"Name":"Wioska (016)","PlayerID":698232227,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9699","ServerKey":"pl181","X":598,"Y":511},{"Bonus":0,"Continent":"K54","ID":9700,"Name":"Quasi","PlayerID":699443920,"Points":5950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9700","ServerKey":"pl181","X":418,"Y":555},{"Bonus":0,"Continent":"K45","ID":9701,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9701","ServerKey":"pl181","X":568,"Y":429},{"Bonus":0,"Continent":"K65","ID":9702,"Name":"z 028","PlayerID":699342219,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9702","ServerKey":"pl181","X":564,"Y":603},{"Bonus":0,"Continent":"K44","ID":9703,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9703","ServerKey":"pl181","X":409,"Y":457},{"Bonus":0,"Continent":"K55","ID":9704,"Name":"0215","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9704","ServerKey":"pl181","X":525,"Y":594},{"Bonus":0,"Continent":"K55","ID":9705,"Name":"CALL 982","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9705","ServerKey":"pl181","X":560,"Y":579},{"Bonus":0,"Continent":"K45","ID":9706,"Name":"AbacadA 007","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9706","ServerKey":"pl181","X":572,"Y":430},{"Bonus":4,"Continent":"K44","ID":9707,"Name":"005- BrĂłdka moĆŒe hmmm","PlayerID":9291984,"Points":6507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9707","ServerKey":"pl181","X":455,"Y":410},{"Bonus":0,"Continent":"K45","ID":9708,"Name":"024 Ciemna strona mocy","PlayerID":698829590,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9708","ServerKey":"pl181","X":590,"Y":457},{"Bonus":0,"Continent":"K56","ID":9709,"Name":"Mzm04","PlayerID":7142659,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9709","ServerKey":"pl181","X":600,"Y":509},{"Bonus":0,"Continent":"K44","ID":9710,"Name":"Gravity","PlayerID":698962117,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9710","ServerKey":"pl181","X":413,"Y":451},{"Bonus":0,"Continent":"K54","ID":9712,"Name":"Wioska 0028","PlayerID":1804724,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9712","ServerKey":"pl181","X":402,"Y":521},{"Bonus":0,"Continent":"K55","ID":9714,"Name":"#010","PlayerID":849001572,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9714","ServerKey":"pl181","X":538,"Y":592},{"Bonus":0,"Continent":"K54","ID":9715,"Name":"Qumin","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9715","ServerKey":"pl181","X":419,"Y":557},{"Bonus":0,"Continent":"K55","ID":9716,"Name":"CALL 1029","PlayerID":699784536,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9716","ServerKey":"pl181","X":577,"Y":563},{"Bonus":0,"Continent":"K55","ID":9717,"Name":"CALL 1032","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9717","ServerKey":"pl181","X":572,"Y":565},{"Bonus":0,"Continent":"K54","ID":9718,"Name":"Kulik 004","PlayerID":698290577,"Points":7294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9718","ServerKey":"pl181","X":402,"Y":513},{"Bonus":0,"Continent":"K54","ID":9719,"Name":"Wioska myszka","PlayerID":7976264,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9719","ServerKey":"pl181","X":493,"Y":593},{"Bonus":0,"Continent":"K44","ID":9720,"Name":"Wioska 0002","PlayerID":698807570,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9720","ServerKey":"pl181","X":406,"Y":466},{"Bonus":0,"Continent":"K44","ID":9721,"Name":"xx 006. Bubu","PlayerID":698290577,"Points":8960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9721","ServerKey":"pl181","X":400,"Y":494},{"Bonus":0,"Continent":"K55","ID":9722,"Name":"Winter is coming","PlayerID":699364813,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9722","ServerKey":"pl181","X":507,"Y":599},{"Bonus":0,"Continent":"K44","ID":9723,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9723","ServerKey":"pl181","X":463,"Y":409},{"Bonus":0,"Continent":"K46","ID":9724,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9724","ServerKey":"pl181","X":601,"Y":491},{"Bonus":0,"Continent":"K45","ID":9725,"Name":".achim.","PlayerID":6936607,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9725","ServerKey":"pl181","X":535,"Y":404},{"Bonus":0,"Continent":"K54","ID":9726,"Name":"0000020#","PlayerID":849089881,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9726","ServerKey":"pl181","X":428,"Y":571},{"Bonus":0,"Continent":"K45","ID":9727,"Name":"Joms 037","PlayerID":699756210,"Points":5288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9727","ServerKey":"pl181","X":533,"Y":419},{"Bonus":0,"Continent":"K64","ID":9728,"Name":"004","PlayerID":7976264,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9728","ServerKey":"pl181","X":490,"Y":603},{"Bonus":0,"Continent":"K45","ID":9729,"Name":"Cyk","PlayerID":848985692,"Points":7106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9729","ServerKey":"pl181","X":571,"Y":432},{"Bonus":0,"Continent":"K44","ID":9730,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9730","ServerKey":"pl181","X":420,"Y":442},{"Bonus":0,"Continent":"K54","ID":9731,"Name":"Wioska 004","PlayerID":698971484,"Points":9513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9731","ServerKey":"pl181","X":414,"Y":551},{"Bonus":0,"Continent":"K55","ID":9732,"Name":"Wioska","PlayerID":698702991,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9732","ServerKey":"pl181","X":586,"Y":549},{"Bonus":0,"Continent":"K44","ID":9733,"Name":"Gravity","PlayerID":698962117,"Points":9503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9733","ServerKey":"pl181","X":415,"Y":449},{"Bonus":3,"Continent":"K55","ID":9734,"Name":"[018] Tua Koj MONETY","PlayerID":848985692,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9734","ServerKey":"pl181","X":595,"Y":525},{"Bonus":0,"Continent":"K44","ID":9735,"Name":"xx 008. Za kilka dolarĂłw więcej","PlayerID":698290577,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9735","ServerKey":"pl181","X":401,"Y":497},{"Bonus":7,"Continent":"K55","ID":9736,"Name":"Z13","PlayerID":873575,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9736","ServerKey":"pl181","X":551,"Y":582},{"Bonus":0,"Continent":"K54","ID":9737,"Name":"014 - lista***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9737","ServerKey":"pl181","X":443,"Y":582},{"Bonus":0,"Continent":"K55","ID":9738,"Name":"#046","PlayerID":849001572,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9738","ServerKey":"pl181","X":523,"Y":594},{"Bonus":0,"Continent":"K54","ID":9739,"Name":"Wioska barbarzyƄska","PlayerID":699833171,"Points":8886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9739","ServerKey":"pl181","X":421,"Y":558},{"Bonus":0,"Continent":"K54","ID":9740,"Name":"Wioska 0016","PlayerID":1804724,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9740","ServerKey":"pl181","X":404,"Y":524},{"Bonus":0,"Continent":"K34","ID":9741,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9741","ServerKey":"pl181","X":498,"Y":399},{"Bonus":0,"Continent":"K44","ID":9742,"Name":"A#027#","PlayerID":698807570,"Points":11951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9742","ServerKey":"pl181","X":407,"Y":473},{"Bonus":0,"Continent":"K44","ID":9743,"Name":"Gravity","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9743","ServerKey":"pl181","X":418,"Y":447},{"Bonus":0,"Continent":"K55","ID":9744,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9744","ServerKey":"pl181","X":571,"Y":569},{"Bonus":0,"Continent":"K34","ID":9745,"Name":"VN Alexander the Great","PlayerID":699883079,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9745","ServerKey":"pl181","X":465,"Y":381},{"Bonus":0,"Continent":"K44","ID":9747,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9747","ServerKey":"pl181","X":461,"Y":409},{"Bonus":0,"Continent":"K44","ID":9748,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9748","ServerKey":"pl181","X":402,"Y":487},{"Bonus":0,"Continent":"K35","ID":9749,"Name":"106","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9749","ServerKey":"pl181","X":550,"Y":389},{"Bonus":0,"Continent":"K44","ID":9750,"Name":"AAA","PlayerID":849093422,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9750","ServerKey":"pl181","X":494,"Y":401},{"Bonus":0,"Continent":"K44","ID":9751,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9751","ServerKey":"pl181","X":471,"Y":404},{"Bonus":0,"Continent":"K44","ID":9752,"Name":"0051 LZ","PlayerID":3909522,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9752","ServerKey":"pl181","X":437,"Y":425},{"Bonus":0,"Continent":"K54","ID":9753,"Name":"Qled","PlayerID":699443920,"Points":6440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9753","ServerKey":"pl181","X":416,"Y":555},{"Bonus":0,"Continent":"K54","ID":9754,"Name":"015 Gonzzollo","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9754","ServerKey":"pl181","X":407,"Y":540},{"Bonus":0,"Continent":"K54","ID":9755,"Name":"Teatr","PlayerID":7249451,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9755","ServerKey":"pl181","X":433,"Y":572},{"Bonus":0,"Continent":"K45","ID":9756,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9756","ServerKey":"pl181","X":516,"Y":402},{"Bonus":0,"Continent":"K54","ID":9757,"Name":"(009)","PlayerID":699846892,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9757","ServerKey":"pl181","X":405,"Y":531},{"Bonus":0,"Continent":"K45","ID":9758,"Name":"094","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9758","ServerKey":"pl181","X":593,"Y":474},{"Bonus":0,"Continent":"K54","ID":9759,"Name":"001.","PlayerID":9167250,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9759","ServerKey":"pl181","X":429,"Y":570},{"Bonus":9,"Continent":"K44","ID":9760,"Name":"-007- Siemanko","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9760","ServerKey":"pl181","X":462,"Y":407},{"Bonus":0,"Continent":"K54","ID":9761,"Name":"A 009.","PlayerID":849028088,"Points":9631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9761","ServerKey":"pl181","X":441,"Y":576},{"Bonus":0,"Continent":"K54","ID":9762,"Name":"wioska","PlayerID":699364813,"Points":9129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9762","ServerKey":"pl181","X":451,"Y":588},{"Bonus":0,"Continent":"K45","ID":9763,"Name":"013","PlayerID":699722599,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9763","ServerKey":"pl181","X":586,"Y":450},{"Bonus":0,"Continent":"K54","ID":9764,"Name":"001","PlayerID":699833171,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9764","ServerKey":"pl181","X":425,"Y":566},{"Bonus":0,"Continent":"K55","ID":9765,"Name":"Wish You Were Here","PlayerID":848926293,"Points":7501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9765","ServerKey":"pl181","X":587,"Y":545},{"Bonus":0,"Continent":"K54","ID":9767,"Name":"KIELBA 020","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9767","ServerKey":"pl181","X":441,"Y":578},{"Bonus":0,"Continent":"K44","ID":9768,"Name":"won zajente","PlayerID":1782523,"Points":6720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9768","ServerKey":"pl181","X":480,"Y":403},{"Bonus":0,"Continent":"K44","ID":9769,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9769","ServerKey":"pl181","X":402,"Y":486},{"Bonus":0,"Continent":"K54","ID":9770,"Name":"KIELBA 100","PlayerID":699342219,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9770","ServerKey":"pl181","X":463,"Y":591},{"Bonus":0,"Continent":"K55","ID":9771,"Name":"CALL 1030","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9771","ServerKey":"pl181","X":573,"Y":564},{"Bonus":0,"Continent":"K44","ID":9772,"Name":"x barbarzyƄska 009","PlayerID":698290577,"Points":8649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9772","ServerKey":"pl181","X":400,"Y":497},{"Bonus":0,"Continent":"K54","ID":9773,"Name":"Teatr","PlayerID":7249451,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9773","ServerKey":"pl181","X":432,"Y":570},{"Bonus":0,"Continent":"K45","ID":9774,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":6771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9774","ServerKey":"pl181","X":574,"Y":437},{"Bonus":0,"Continent":"K44","ID":9775,"Name":"HoƂopole","PlayerID":699433558,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9775","ServerKey":"pl181","X":492,"Y":403},{"Bonus":0,"Continent":"K45","ID":9776,"Name":"0022","PlayerID":699429153,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9776","ServerKey":"pl181","X":597,"Y":491},{"Bonus":0,"Continent":"K44","ID":9777,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9777","ServerKey":"pl181","X":459,"Y":412},{"Bonus":0,"Continent":"K45","ID":9778,"Name":"AAA","PlayerID":849093422,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9778","ServerKey":"pl181","X":510,"Y":402},{"Bonus":0,"Continent":"K55","ID":9779,"Name":"Wioska (018)","PlayerID":698232227,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9779","ServerKey":"pl181","X":592,"Y":538},{"Bonus":0,"Continent":"K44","ID":9780,"Name":"A026","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9780","ServerKey":"pl181","X":447,"Y":415},{"Bonus":0,"Continent":"K45","ID":9781,"Name":"AbacadA 001","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9781","ServerKey":"pl181","X":563,"Y":427},{"Bonus":0,"Continent":"K54","ID":9782,"Name":"Winter is coming","PlayerID":699364813,"Points":8947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9782","ServerKey":"pl181","X":470,"Y":595},{"Bonus":0,"Continent":"K55","ID":9784,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9784","ServerKey":"pl181","X":575,"Y":564},{"Bonus":0,"Continent":"K46","ID":9785,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9785","ServerKey":"pl181","X":600,"Y":493},{"Bonus":0,"Continent":"K44","ID":9786,"Name":"040 Louisville","PlayerID":9291984,"Points":10371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9786","ServerKey":"pl181","X":427,"Y":432},{"Bonus":0,"Continent":"K54","ID":9787,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9787","ServerKey":"pl181","X":429,"Y":520},{"Bonus":0,"Continent":"K55","ID":9788,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9788","ServerKey":"pl181","X":561,"Y":578},{"Bonus":0,"Continent":"K54","ID":9789,"Name":"(008)","PlayerID":699846892,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9789","ServerKey":"pl181","X":407,"Y":530},{"Bonus":0,"Continent":"K55","ID":9790,"Name":"- 112 -","PlayerID":849018239,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9790","ServerKey":"pl181","X":548,"Y":585},{"Bonus":8,"Continent":"K45","ID":9792,"Name":"...","PlayerID":698867483,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9792","ServerKey":"pl181","X":575,"Y":433},{"Bonus":0,"Continent":"K44","ID":9793,"Name":"00506","PlayerID":3909522,"Points":4931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9793","ServerKey":"pl181","X":435,"Y":427},{"Bonus":0,"Continent":"K34","ID":9794,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9794","ServerKey":"pl181","X":477,"Y":383},{"Bonus":0,"Continent":"K44","ID":9795,"Name":"Feed me more 010","PlayerID":699756210,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9795","ServerKey":"pl181","X":490,"Y":402},{"Bonus":0,"Continent":"K44","ID":9796,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9796","ServerKey":"pl181","X":465,"Y":497},{"Bonus":0,"Continent":"K55","ID":9797,"Name":"014","PlayerID":8138506,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9797","ServerKey":"pl181","X":589,"Y":538},{"Bonus":3,"Continent":"K54","ID":9798,"Name":"CSA","PlayerID":1804724,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9798","ServerKey":"pl181","X":403,"Y":518},{"Bonus":0,"Continent":"K45","ID":9799,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9799","ServerKey":"pl181","X":523,"Y":404},{"Bonus":0,"Continent":"K65","ID":9800,"Name":"007","PlayerID":7976264,"Points":10028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9800","ServerKey":"pl181","X":503,"Y":601},{"Bonus":0,"Continent":"K54","ID":9801,"Name":"Truskawkowy Bili","PlayerID":699364813,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9801","ServerKey":"pl181","X":471,"Y":597},{"Bonus":0,"Continent":"K45","ID":9802,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9802","ServerKey":"pl181","X":517,"Y":403},{"Bonus":0,"Continent":"K45","ID":9803,"Name":"031","PlayerID":849088515,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9803","ServerKey":"pl181","X":589,"Y":457},{"Bonus":0,"Continent":"K45","ID":9804,"Name":"Joms 044","PlayerID":699756210,"Points":6902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9804","ServerKey":"pl181","X":555,"Y":417},{"Bonus":0,"Continent":"K45","ID":9805,"Name":"044","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9805","ServerKey":"pl181","X":561,"Y":419},{"Bonus":0,"Continent":"K55","ID":9806,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9806","ServerKey":"pl181","X":556,"Y":579},{"Bonus":0,"Continent":"K43","ID":9807,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9807","ServerKey":"pl181","X":393,"Y":457},{"Bonus":0,"Continent":"K45","ID":9808,"Name":"Szlachcic","PlayerID":698867446,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9808","ServerKey":"pl181","X":588,"Y":456},{"Bonus":0,"Continent":"K54","ID":9809,"Name":"~020.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9809","ServerKey":"pl181","X":497,"Y":599},{"Bonus":0,"Continent":"K55","ID":9810,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9810","ServerKey":"pl181","X":505,"Y":599},{"Bonus":0,"Continent":"K44","ID":9811,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9811","ServerKey":"pl181","X":422,"Y":440},{"Bonus":0,"Continent":"K45","ID":9812,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9812","ServerKey":"pl181","X":513,"Y":404},{"Bonus":0,"Continent":"K45","ID":9813,"Name":".:140:. Niangmen","PlayerID":848934935,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9813","ServerKey":"pl181","X":511,"Y":400},{"Bonus":0,"Continent":"K53","ID":9814,"Name":"001","PlayerID":698290577,"Points":3820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9814","ServerKey":"pl181","X":399,"Y":508},{"Bonus":0,"Continent":"K44","ID":9815,"Name":"00504","PlayerID":3909522,"Points":8561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9815","ServerKey":"pl181","X":433,"Y":428},{"Bonus":1,"Continent":"K54","ID":9816,"Name":"Osada koczownikĂłw2","PlayerID":699833171,"Points":4021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9816","ServerKey":"pl181","X":426,"Y":563},{"Bonus":0,"Continent":"K45","ID":9817,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9817","ServerKey":"pl181","X":515,"Y":403},{"Bonus":0,"Continent":"K55","ID":9818,"Name":"- 106 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9818","ServerKey":"pl181","X":545,"Y":586},{"Bonus":0,"Continent":"K45","ID":9819,"Name":".achim.","PlayerID":6936607,"Points":8897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9819","ServerKey":"pl181","X":530,"Y":405},{"Bonus":0,"Continent":"K44","ID":9820,"Name":"A041","PlayerID":8740199,"Points":6467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9820","ServerKey":"pl181","X":468,"Y":405},{"Bonus":0,"Continent":"K56","ID":9821,"Name":"Gryfios 020","PlayerID":698666810,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9821","ServerKey":"pl181","X":608,"Y":556},{"Bonus":0,"Continent":"K54","ID":9822,"Name":"Metis","PlayerID":699833171,"Points":9321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9822","ServerKey":"pl181","X":421,"Y":559},{"Bonus":0,"Continent":"K45","ID":9823,"Name":"BBB","PlayerID":1006847,"Points":6166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9823","ServerKey":"pl181","X":583,"Y":447},{"Bonus":0,"Continent":"K35","ID":9824,"Name":".:112:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9824","ServerKey":"pl181","X":505,"Y":397},{"Bonus":0,"Continent":"K65","ID":9825,"Name":"011","PlayerID":7976264,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9825","ServerKey":"pl181","X":509,"Y":601},{"Bonus":0,"Continent":"K44","ID":9826,"Name":"Szlachcic","PlayerID":698388578,"Points":8906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9826","ServerKey":"pl181","X":465,"Y":410},{"Bonus":0,"Continent":"K55","ID":9827,"Name":"CALL 1031","PlayerID":699784536,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9827","ServerKey":"pl181","X":572,"Y":564},{"Bonus":0,"Continent":"K54","ID":9828,"Name":"Teatr","PlayerID":7249451,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9828","ServerKey":"pl181","X":432,"Y":572},{"Bonus":0,"Continent":"K44","ID":9829,"Name":"A027","PlayerID":8740199,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9829","ServerKey":"pl181","X":452,"Y":411},{"Bonus":0,"Continent":"K54","ID":9831,"Name":"Winter is coming","PlayerID":699364813,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9831","ServerKey":"pl181","X":450,"Y":586},{"Bonus":0,"Continent":"K44","ID":9832,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9832","ServerKey":"pl181","X":486,"Y":404},{"Bonus":0,"Continent":"K45","ID":9833,"Name":"049 BuƂeczka v4","PlayerID":699491076,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9833","ServerKey":"pl181","X":533,"Y":406},{"Bonus":0,"Continent":"K44","ID":9834,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9834","ServerKey":"pl181","X":409,"Y":463},{"Bonus":0,"Continent":"K45","ID":9835,"Name":"048","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9835","ServerKey":"pl181","X":560,"Y":419},{"Bonus":0,"Continent":"K55","ID":9836,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9836","ServerKey":"pl181","X":585,"Y":550},{"Bonus":0,"Continent":"K54","ID":9837,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9837","ServerKey":"pl181","X":418,"Y":552},{"Bonus":0,"Continent":"K44","ID":9838,"Name":"Nope","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9838","ServerKey":"pl181","X":405,"Y":466},{"Bonus":4,"Continent":"K45","ID":9839,"Name":"050","PlayerID":849064752,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9839","ServerKey":"pl181","X":565,"Y":423},{"Bonus":0,"Continent":"K45","ID":9840,"Name":"031","PlayerID":1424656,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9840","ServerKey":"pl181","X":551,"Y":414},{"Bonus":0,"Continent":"K45","ID":9841,"Name":"AbacadA 013","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9841","ServerKey":"pl181","X":562,"Y":424},{"Bonus":6,"Continent":"K45","ID":9842,"Name":"039","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9842","ServerKey":"pl181","X":537,"Y":407},{"Bonus":0,"Continent":"K53","ID":9843,"Name":"ƁAPANKA!!!!","PlayerID":9167250,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9843","ServerKey":"pl181","X":395,"Y":562},{"Bonus":0,"Continent":"K45","ID":9844,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9844","ServerKey":"pl181","X":523,"Y":406},{"Bonus":0,"Continent":"K45","ID":9846,"Name":"E.01","PlayerID":699368887,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9846","ServerKey":"pl181","X":573,"Y":433},{"Bonus":0,"Continent":"K46","ID":9847,"Name":"Wioska (001)","PlayerID":698232227,"Points":9316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9847","ServerKey":"pl181","X":619,"Y":477},{"Bonus":0,"Continent":"K54","ID":9848,"Name":"Majin Buu 017","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9848","ServerKey":"pl181","X":437,"Y":573},{"Bonus":0,"Continent":"K54","ID":9849,"Name":"Kulik 005","PlayerID":698290577,"Points":4888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9849","ServerKey":"pl181","X":400,"Y":511},{"Bonus":0,"Continent":"K55","ID":9850,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9850","ServerKey":"pl181","X":535,"Y":534},{"Bonus":0,"Continent":"K55","ID":9851,"Name":"[043]","PlayerID":848985692,"Points":10392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9851","ServerKey":"pl181","X":594,"Y":535},{"Bonus":0,"Continent":"K44","ID":9852,"Name":"025 Austin","PlayerID":9291984,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9852","ServerKey":"pl181","X":428,"Y":430},{"Bonus":0,"Continent":"K54","ID":9853,"Name":"093 MEHEHE","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9853","ServerKey":"pl181","X":491,"Y":597},{"Bonus":0,"Continent":"K54","ID":9854,"Name":"#055","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9854","ServerKey":"pl181","X":476,"Y":597},{"Bonus":0,"Continent":"K45","ID":9855,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9855","ServerKey":"pl181","X":572,"Y":432},{"Bonus":0,"Continent":"K45","ID":9856,"Name":"006 - Malaga","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9856","ServerKey":"pl181","X":597,"Y":488},{"Bonus":0,"Continent":"K45","ID":9857,"Name":"009 Hokus pokus","PlayerID":698829590,"Points":6617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9857","ServerKey":"pl181","X":589,"Y":462},{"Bonus":0,"Continent":"K44","ID":9858,"Name":"A028","PlayerID":8740199,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9858","ServerKey":"pl181","X":451,"Y":411},{"Bonus":0,"Continent":"K45","ID":9859,"Name":"01 Monety 3 p500","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9859","ServerKey":"pl181","X":573,"Y":436},{"Bonus":0,"Continent":"K45","ID":9860,"Name":"DOM 4 *","PlayerID":849064614,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9860","ServerKey":"pl181","X":564,"Y":403},{"Bonus":0,"Continent":"K54","ID":9861,"Name":"~033.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9861","ServerKey":"pl181","X":475,"Y":598},{"Bonus":0,"Continent":"K65","ID":9862,"Name":"~003.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9862","ServerKey":"pl181","X":506,"Y":604},{"Bonus":0,"Continent":"K45","ID":9863,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9863","ServerKey":"pl181","X":529,"Y":404},{"Bonus":0,"Continent":"K44","ID":9864,"Name":"Wioska wosiur12","PlayerID":9291984,"Points":3265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9864","ServerKey":"pl181","X":469,"Y":405},{"Bonus":0,"Continent":"K54","ID":9865,"Name":"Winter is coming","PlayerID":699364813,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9865","ServerKey":"pl181","X":462,"Y":593},{"Bonus":0,"Continent":"K46","ID":9866,"Name":"W=01","PlayerID":7142659,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9866","ServerKey":"pl181","X":611,"Y":475},{"Bonus":0,"Continent":"K34","ID":9867,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9867","ServerKey":"pl181","X":495,"Y":399},{"Bonus":0,"Continent":"K54","ID":9868,"Name":"Medellin","PlayerID":849030226,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9868","ServerKey":"pl181","X":404,"Y":533},{"Bonus":0,"Continent":"K45","ID":9869,"Name":"BBB","PlayerID":1006847,"Points":6512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9869","ServerKey":"pl181","X":582,"Y":442},{"Bonus":0,"Continent":"K54","ID":9870,"Name":"EKG M13","PlayerID":33900,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9870","ServerKey":"pl181","X":487,"Y":599},{"Bonus":9,"Continent":"K44","ID":9871,"Name":"AAAA-006- Kotek, kotek, kotek","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9871","ServerKey":"pl181","X":454,"Y":414},{"Bonus":0,"Continent":"K43","ID":9872,"Name":"x Wioska barbarzyƄska","PlayerID":698290577,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9872","ServerKey":"pl181","X":399,"Y":496},{"Bonus":0,"Continent":"K54","ID":9873,"Name":"Popas8","PlayerID":699265922,"Points":10022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9873","ServerKey":"pl181","X":402,"Y":503},{"Bonus":0,"Continent":"K55","ID":9874,"Name":"0216","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9874","ServerKey":"pl181","X":521,"Y":597},{"Bonus":0,"Continent":"K55","ID":9875,"Name":"- 108 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9875","ServerKey":"pl181","X":545,"Y":587},{"Bonus":0,"Continent":"K44","ID":9876,"Name":"Farma","PlayerID":698807570,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9876","ServerKey":"pl181","X":404,"Y":469},{"Bonus":8,"Continent":"K45","ID":9877,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9877","ServerKey":"pl181","X":519,"Y":402},{"Bonus":0,"Continent":"K44","ID":9878,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":5081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9878","ServerKey":"pl181","X":484,"Y":403},{"Bonus":0,"Continent":"K45","ID":9879,"Name":"BBB","PlayerID":1006847,"Points":7467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9879","ServerKey":"pl181","X":580,"Y":441},{"Bonus":0,"Continent":"K44","ID":9880,"Name":"SsSs","PlayerID":1536625,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9880","ServerKey":"pl181","X":400,"Y":493},{"Bonus":0,"Continent":"K45","ID":9881,"Name":"030 Coƛ tam","PlayerID":698829590,"Points":8548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9881","ServerKey":"pl181","X":592,"Y":461},{"Bonus":0,"Continent":"K54","ID":9882,"Name":"044","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9882","ServerKey":"pl181","X":413,"Y":551},{"Bonus":0,"Continent":"K44","ID":9883,"Name":"[A]_[048] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9883","ServerKey":"pl181","X":406,"Y":473},{"Bonus":0,"Continent":"K54","ID":9884,"Name":"yogi","PlayerID":2808172,"Points":9193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9884","ServerKey":"pl181","X":490,"Y":531},{"Bonus":0,"Continent":"K35","ID":9885,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9885","ServerKey":"pl181","X":531,"Y":391},{"Bonus":0,"Continent":"K55","ID":9886,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9886","ServerKey":"pl181","X":563,"Y":580},{"Bonus":0,"Continent":"K45","ID":9888,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9888","ServerKey":"pl181","X":529,"Y":407},{"Bonus":0,"Continent":"K55","ID":9889,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9889","ServerKey":"pl181","X":558,"Y":581},{"Bonus":0,"Continent":"K45","ID":9890,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9890","ServerKey":"pl181","X":514,"Y":403},{"Bonus":0,"Continent":"K44","ID":9891,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9891","ServerKey":"pl181","X":424,"Y":433},{"Bonus":0,"Continent":"K44","ID":9892,"Name":"SsSs","PlayerID":1536625,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9892","ServerKey":"pl181","X":402,"Y":492},{"Bonus":0,"Continent":"K44","ID":9893,"Name":"021 Las Vegas","PlayerID":9291984,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9893","ServerKey":"pl181","X":429,"Y":427},{"Bonus":0,"Continent":"K44","ID":9894,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9894","ServerKey":"pl181","X":426,"Y":435},{"Bonus":0,"Continent":"K65","ID":9895,"Name":"Coruscant 7","PlayerID":699383121,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9895","ServerKey":"pl181","X":506,"Y":601},{"Bonus":0,"Continent":"K54","ID":9896,"Name":"Quest","PlayerID":699443920,"Points":5271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9896","ServerKey":"pl181","X":415,"Y":554},{"Bonus":0,"Continent":"K43","ID":9897,"Name":"makelovenotwar3","PlayerID":698807570,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9897","ServerKey":"pl181","X":384,"Y":461},{"Bonus":0,"Continent":"K55","ID":9898,"Name":"z 050","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9898","ServerKey":"pl181","X":550,"Y":585},{"Bonus":0,"Continent":"K35","ID":9899,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9899","ServerKey":"pl181","X":515,"Y":397},{"Bonus":0,"Continent":"K45","ID":9900,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9900","ServerKey":"pl181","X":535,"Y":410},{"Bonus":0,"Continent":"K54","ID":9901,"Name":"#056","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9901","ServerKey":"pl181","X":477,"Y":596},{"Bonus":0,"Continent":"K56","ID":9902,"Name":"Centrum 01","PlayerID":698702991,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9902","ServerKey":"pl181","X":605,"Y":565},{"Bonus":0,"Continent":"K54","ID":9903,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9903","ServerKey":"pl181","X":400,"Y":505},{"Bonus":0,"Continent":"K35","ID":9904,"Name":"075 Wojownik","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9904","ServerKey":"pl181","X":542,"Y":389},{"Bonus":0,"Continent":"K45","ID":9905,"Name":"Szlachcic","PlayerID":698867446,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9905","ServerKey":"pl181","X":587,"Y":457},{"Bonus":0,"Continent":"K44","ID":9906,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9906","ServerKey":"pl181","X":476,"Y":406},{"Bonus":0,"Continent":"K56","ID":9907,"Name":"033 Galfni","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9907","ServerKey":"pl181","X":600,"Y":508},{"Bonus":0,"Continent":"K65","ID":9908,"Name":"CALL 1075","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9908","ServerKey":"pl181","X":551,"Y":615},{"Bonus":0,"Continent":"K44","ID":9909,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9909","ServerKey":"pl181","X":463,"Y":408},{"Bonus":0,"Continent":"K44","ID":9910,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9910","ServerKey":"pl181","X":411,"Y":452},{"Bonus":0,"Continent":"K55","ID":9911,"Name":"Wioska1","PlayerID":8369778,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9911","ServerKey":"pl181","X":503,"Y":599},{"Bonus":7,"Continent":"K55","ID":9912,"Name":"Wioska","PlayerID":698702991,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9912","ServerKey":"pl181","X":588,"Y":545},{"Bonus":0,"Continent":"K45","ID":9913,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9913","ServerKey":"pl181","X":521,"Y":404},{"Bonus":0,"Continent":"K54","ID":9914,"Name":"Wioska 0026","PlayerID":1804724,"Points":8755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9914","ServerKey":"pl181","X":402,"Y":527},{"Bonus":2,"Continent":"K45","ID":9915,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9915","ServerKey":"pl181","X":519,"Y":404},{"Bonus":0,"Continent":"K45","ID":9916,"Name":"B13","PlayerID":849093422,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9916","ServerKey":"pl181","X":505,"Y":402},{"Bonus":6,"Continent":"K44","ID":9917,"Name":"A035","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9917","ServerKey":"pl181","X":465,"Y":405},{"Bonus":0,"Continent":"K54","ID":9918,"Name":"Quantum","PlayerID":699443920,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9918","ServerKey":"pl181","X":419,"Y":558},{"Bonus":3,"Continent":"K45","ID":9919,"Name":"013 OCB","PlayerID":698829590,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9919","ServerKey":"pl181","X":590,"Y":456},{"Bonus":0,"Continent":"K44","ID":9920,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9920","ServerKey":"pl181","X":486,"Y":403},{"Bonus":0,"Continent":"K45","ID":9921,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9921","ServerKey":"pl181","X":532,"Y":408},{"Bonus":0,"Continent":"K44","ID":9922,"Name":"Radek","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9922","ServerKey":"pl181","X":401,"Y":480},{"Bonus":0,"Continent":"K43","ID":9923,"Name":"x 012. Rio Bravo","PlayerID":698290577,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9923","ServerKey":"pl181","X":399,"Y":499},{"Bonus":0,"Continent":"K44","ID":9924,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9924","ServerKey":"pl181","X":419,"Y":446},{"Bonus":0,"Continent":"K45","ID":9925,"Name":"008","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9925","ServerKey":"pl181","X":584,"Y":442},{"Bonus":0,"Continent":"K54","ID":9926,"Name":"~031.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9926","ServerKey":"pl181","X":479,"Y":596},{"Bonus":0,"Continent":"K55","ID":9927,"Name":"Sparta_02","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9927","ServerKey":"pl181","X":502,"Y":599},{"Bonus":0,"Continent":"K55","ID":9928,"Name":"Wioska","PlayerID":698845189,"Points":6232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9928","ServerKey":"pl181","X":596,"Y":519},{"Bonus":0,"Continent":"K44","ID":9929,"Name":"[A]_[026] Dejv.oldplyr","PlayerID":699380607,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9929","ServerKey":"pl181","X":400,"Y":486},{"Bonus":0,"Continent":"K44","ID":9930,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9930","ServerKey":"pl181","X":466,"Y":409},{"Bonus":0,"Continent":"K55","ID":9931,"Name":"223 |","PlayerID":8000875,"Points":818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9931","ServerKey":"pl181","X":563,"Y":577},{"Bonus":0,"Continent":"K45","ID":9932,"Name":"001 - Barcelona","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9932","ServerKey":"pl181","X":598,"Y":491},{"Bonus":0,"Continent":"K54","ID":9933,"Name":"mehehe 2","PlayerID":699364813,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9933","ServerKey":"pl181","X":452,"Y":588},{"Bonus":0,"Continent":"K54","ID":9934,"Name":"KIELBA 061","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9934","ServerKey":"pl181","X":452,"Y":585},{"Bonus":0,"Continent":"K45","ID":9935,"Name":".:135:. Niangmen","PlayerID":848934935,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9935","ServerKey":"pl181","X":507,"Y":400},{"Bonus":0,"Continent":"K44","ID":9936,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9936","ServerKey":"pl181","X":421,"Y":436},{"Bonus":7,"Continent":"K45","ID":9937,"Name":".:144:.Niangmen","PlayerID":848934935,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9937","ServerKey":"pl181","X":507,"Y":402},{"Bonus":0,"Continent":"K45","ID":9938,"Name":".achim.","PlayerID":6936607,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9938","ServerKey":"pl181","X":530,"Y":402},{"Bonus":0,"Continent":"K35","ID":9939,"Name":"Part X","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9939","ServerKey":"pl181","X":536,"Y":378},{"Bonus":0,"Continent":"K45","ID":9940,"Name":"BBB","PlayerID":1006847,"Points":5591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9940","ServerKey":"pl181","X":584,"Y":445},{"Bonus":0,"Continent":"K54","ID":9941,"Name":"(036)","PlayerID":699846892,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9941","ServerKey":"pl181","X":408,"Y":532},{"Bonus":0,"Continent":"K54","ID":9942,"Name":"B.004","PlayerID":849088243,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9942","ServerKey":"pl181","X":427,"Y":570},{"Bonus":0,"Continent":"K46","ID":9943,"Name":"*009*","PlayerID":698670524,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9943","ServerKey":"pl181","X":611,"Y":497},{"Bonus":0,"Continent":"K45","ID":9944,"Name":"025.","PlayerID":8900955,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9944","ServerKey":"pl181","X":598,"Y":483},{"Bonus":0,"Continent":"K44","ID":9946,"Name":"Popas 11","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9946","ServerKey":"pl181","X":403,"Y":497},{"Bonus":0,"Continent":"K35","ID":9947,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9947","ServerKey":"pl181","X":558,"Y":392},{"Bonus":0,"Continent":"K55","ID":9948,"Name":"- 073 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9948","ServerKey":"pl181","X":538,"Y":594},{"Bonus":0,"Continent":"K43","ID":9949,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9949","ServerKey":"pl181","X":394,"Y":458},{"Bonus":0,"Continent":"K54","ID":9950,"Name":"A 004.","PlayerID":849028088,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9950","ServerKey":"pl181","X":439,"Y":577},{"Bonus":0,"Continent":"K44","ID":9951,"Name":"0085","PlayerID":699431255,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9951","ServerKey":"pl181","X":440,"Y":403},{"Bonus":0,"Continent":"K45","ID":9952,"Name":"035","PlayerID":8459255,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9952","ServerKey":"pl181","X":596,"Y":470},{"Bonus":0,"Continent":"K44","ID":9953,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9953","ServerKey":"pl181","X":443,"Y":416},{"Bonus":7,"Continent":"K55","ID":9954,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9954","ServerKey":"pl181","X":593,"Y":529},{"Bonus":0,"Continent":"K45","ID":9955,"Name":"062","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9955","ServerKey":"pl181","X":545,"Y":410},{"Bonus":0,"Continent":"K54","ID":9956,"Name":"0000022#","PlayerID":849089881,"Points":9121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9956","ServerKey":"pl181","X":431,"Y":572},{"Bonus":0,"Continent":"K54","ID":9958,"Name":"Majin Buu 004","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9958","ServerKey":"pl181","X":435,"Y":578},{"Bonus":0,"Continent":"K45","ID":9959,"Name":".:030:. Chillout","PlayerID":848934935,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9959","ServerKey":"pl181","X":521,"Y":447},{"Bonus":0,"Continent":"K54","ID":9960,"Name":"(027)","PlayerID":699846892,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9960","ServerKey":"pl181","X":404,"Y":530},{"Bonus":0,"Continent":"K55","ID":9961,"Name":"Welcome To The Machine","PlayerID":848926293,"Points":7379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9961","ServerKey":"pl181","X":585,"Y":548},{"Bonus":0,"Continent":"K54","ID":9962,"Name":"(028)","PlayerID":699846892,"Points":7900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9962","ServerKey":"pl181","X":404,"Y":531},{"Bonus":0,"Continent":"K55","ID":9963,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9963","ServerKey":"pl181","X":565,"Y":573},{"Bonus":0,"Continent":"K55","ID":9964,"Name":"Sparta_01","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9964","ServerKey":"pl181","X":501,"Y":598},{"Bonus":0,"Continent":"K44","ID":9965,"Name":"Gravity","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9965","ServerKey":"pl181","X":411,"Y":454},{"Bonus":0,"Continent":"K54","ID":9966,"Name":"Wioska 0027","PlayerID":1804724,"Points":7684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9966","ServerKey":"pl181","X":400,"Y":519},{"Bonus":0,"Continent":"K44","ID":9967,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9967","ServerKey":"pl181","X":402,"Y":478},{"Bonus":0,"Continent":"K45","ID":9968,"Name":"004 Pomalutku","PlayerID":698829590,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9968","ServerKey":"pl181","X":591,"Y":456},{"Bonus":0,"Continent":"K44","ID":9969,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9969","ServerKey":"pl181","X":458,"Y":411},{"Bonus":0,"Continent":"K45","ID":9970,"Name":"021","PlayerID":699722599,"Points":10244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9970","ServerKey":"pl181","X":587,"Y":453},{"Bonus":0,"Continent":"K54","ID":9971,"Name":"FRONT","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9971","ServerKey":"pl181","X":461,"Y":521},{"Bonus":0,"Continent":"K44","ID":9972,"Name":"Farma","PlayerID":698807570,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9972","ServerKey":"pl181","X":402,"Y":474},{"Bonus":0,"Continent":"K44","ID":9973,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9973","ServerKey":"pl181","X":417,"Y":449},{"Bonus":0,"Continent":"K54","ID":9974,"Name":"NOT?","PlayerID":9236866,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9974","ServerKey":"pl181","X":469,"Y":593},{"Bonus":0,"Continent":"K55","ID":9975,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9975","ServerKey":"pl181","X":564,"Y":580},{"Bonus":0,"Continent":"K45","ID":9976,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9976","ServerKey":"pl181","X":522,"Y":400},{"Bonus":6,"Continent":"K53","ID":9977,"Name":"Popas2","PlayerID":699265922,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9977","ServerKey":"pl181","X":398,"Y":504},{"Bonus":0,"Continent":"K44","ID":9978,"Name":"[A]_[051] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9978","ServerKey":"pl181","X":409,"Y":466},{"Bonus":0,"Continent":"K55","ID":9979,"Name":"084","PlayerID":699373599,"Points":9636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9979","ServerKey":"pl181","X":599,"Y":566},{"Bonus":0,"Continent":"K44","ID":9980,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9980","ServerKey":"pl181","X":441,"Y":418},{"Bonus":0,"Continent":"K44","ID":9981,"Name":"A042","PlayerID":8740199,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9981","ServerKey":"pl181","X":476,"Y":403},{"Bonus":0,"Continent":"K45","ID":9982,"Name":"ADEN","PlayerID":698588535,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9982","ServerKey":"pl181","X":580,"Y":438},{"Bonus":0,"Continent":"K54","ID":9983,"Name":"A 001.","PlayerID":849028088,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9983","ServerKey":"pl181","X":437,"Y":581},{"Bonus":0,"Continent":"K55","ID":9984,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9984","ServerKey":"pl181","X":580,"Y":555},{"Bonus":0,"Continent":"K44","ID":9986,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9986","ServerKey":"pl181","X":402,"Y":472},{"Bonus":0,"Continent":"K45","ID":9987,"Name":"Zatoka MarzeƄ","PlayerID":699347951,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9987","ServerKey":"pl181","X":597,"Y":486},{"Bonus":0,"Continent":"K54","ID":9988,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9988","ServerKey":"pl181","X":402,"Y":512},{"Bonus":0,"Continent":"K53","ID":9989,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9989","ServerKey":"pl181","X":384,"Y":501},{"Bonus":0,"Continent":"K45","ID":9990,"Name":"071","PlayerID":699761749,"Points":7776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9990","ServerKey":"pl181","X":546,"Y":412},{"Bonus":0,"Continent":"K35","ID":9991,"Name":"Wioska","PlayerID":849044961,"Points":9180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9991","ServerKey":"pl181","X":513,"Y":399},{"Bonus":0,"Continent":"K44","ID":9992,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9992","ServerKey":"pl181","X":401,"Y":479},{"Bonus":0,"Continent":"K55","ID":9993,"Name":"057. Jezioro Leona","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9993","ServerKey":"pl181","X":590,"Y":540},{"Bonus":0,"Continent":"K44","ID":9994,"Name":"A006","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9994","ServerKey":"pl181","X":467,"Y":405},{"Bonus":0,"Continent":"K44","ID":9995,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9995","ServerKey":"pl181","X":474,"Y":401},{"Bonus":0,"Continent":"K54","ID":9996,"Name":"081","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9996","ServerKey":"pl181","X":404,"Y":522},{"Bonus":0,"Continent":"K55","ID":9997,"Name":"#021","PlayerID":849001572,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9997","ServerKey":"pl181","X":527,"Y":594},{"Bonus":0,"Continent":"K64","ID":9999,"Name":"Wioska4,,","PlayerID":8369778,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=9999","ServerKey":"pl181","X":487,"Y":600},{"Bonus":0,"Continent":"K44","ID":10000,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":3420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10000","ServerKey":"pl181","X":487,"Y":405},{"Bonus":0,"Continent":"K54","ID":10001,"Name":"#063","PlayerID":699605333,"Points":8847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10001","ServerKey":"pl181","X":480,"Y":597},{"Bonus":0,"Continent":"K45","ID":10002,"Name":".achim.","PlayerID":6936607,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10002","ServerKey":"pl181","X":529,"Y":403},{"Bonus":0,"Continent":"K54","ID":10003,"Name":"094","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10003","ServerKey":"pl181","X":408,"Y":535},{"Bonus":0,"Continent":"K54","ID":10004,"Name":"Teby_41","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10004","ServerKey":"pl181","X":484,"Y":599},{"Bonus":0,"Continent":"K34","ID":10005,"Name":"HoƂopole","PlayerID":699433558,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10005","ServerKey":"pl181","X":488,"Y":399},{"Bonus":0,"Continent":"K55","ID":10006,"Name":"[046]","PlayerID":848985692,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10006","ServerKey":"pl181","X":597,"Y":534},{"Bonus":0,"Continent":"K65","ID":10007,"Name":"#0097","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10007","ServerKey":"pl181","X":514,"Y":601},{"Bonus":0,"Continent":"K44","ID":10008,"Name":"Suppi","PlayerID":699856962,"Points":9538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10008","ServerKey":"pl181","X":428,"Y":456},{"Bonus":6,"Continent":"K55","ID":10009,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10009","ServerKey":"pl181","X":593,"Y":536},{"Bonus":0,"Continent":"K54","ID":10010,"Name":"071 - Kremin","PlayerID":225023,"Points":9470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10010","ServerKey":"pl181","X":422,"Y":586},{"Bonus":0,"Continent":"K54","ID":10011,"Name":"A 003.","PlayerID":849028088,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10011","ServerKey":"pl181","X":439,"Y":578},{"Bonus":0,"Continent":"K44","ID":10012,"Name":"Szlachcic","PlayerID":698388578,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10012","ServerKey":"pl181","X":476,"Y":402},{"Bonus":0,"Continent":"K55","ID":10015,"Name":"[029] Boma YoU","PlayerID":848985692,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10015","ServerKey":"pl181","X":596,"Y":518},{"Bonus":0,"Continent":"K44","ID":10016,"Name":"[A]_[037] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10016","ServerKey":"pl181","X":405,"Y":476},{"Bonus":0,"Continent":"K54","ID":10017,"Name":"A 002.","PlayerID":849028088,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10017","ServerKey":"pl181","X":439,"Y":581},{"Bonus":0,"Continent":"K55","ID":10018,"Name":"006 Minas Thirit","PlayerID":8013349,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10018","ServerKey":"pl181","X":597,"Y":530},{"Bonus":0,"Continent":"K54","ID":10019,"Name":"011","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10019","ServerKey":"pl181","X":409,"Y":515},{"Bonus":0,"Continent":"K55","ID":10021,"Name":"- 310 -","PlayerID":849018239,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10021","ServerKey":"pl181","X":529,"Y":586},{"Bonus":0,"Continent":"K45","ID":10022,"Name":"Joms 045","PlayerID":699756210,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10022","ServerKey":"pl181","X":555,"Y":419},{"Bonus":0,"Continent":"K53","ID":10023,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10023","ServerKey":"pl181","X":385,"Y":519},{"Bonus":0,"Continent":"K45","ID":10024,"Name":"007 - Murcia","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10024","ServerKey":"pl181","X":598,"Y":486},{"Bonus":0,"Continent":"K54","ID":10025,"Name":"Wioska 0001","PlayerID":1804724,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10025","ServerKey":"pl181","X":402,"Y":526},{"Bonus":0,"Continent":"K55","ID":10026,"Name":"014","PlayerID":699524362,"Points":6684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10026","ServerKey":"pl181","X":580,"Y":562},{"Bonus":0,"Continent":"K44","ID":10027,"Name":"059 Honolulu","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10027","ServerKey":"pl181","X":459,"Y":464},{"Bonus":0,"Continent":"K54","ID":10028,"Name":"0095","PlayerID":698659980,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10028","ServerKey":"pl181","X":467,"Y":549},{"Bonus":0,"Continent":"K55","ID":10030,"Name":"- 288 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10030","ServerKey":"pl181","X":520,"Y":597},{"Bonus":0,"Continent":"K54","ID":10031,"Name":"Wioska 0006","PlayerID":1804724,"Points":10199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10031","ServerKey":"pl181","X":405,"Y":526},{"Bonus":0,"Continent":"K55","ID":10032,"Name":"Psychiatryk","PlayerID":699698253,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10032","ServerKey":"pl181","X":504,"Y":595},{"Bonus":0,"Continent":"K44","ID":10033,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10033","ServerKey":"pl181","X":426,"Y":432},{"Bonus":0,"Continent":"K55","ID":10034,"Name":"Wioska2,","PlayerID":8369778,"Points":9901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10034","ServerKey":"pl181","X":506,"Y":598},{"Bonus":0,"Continent":"K54","ID":10035,"Name":"Winter is coming","PlayerID":699364813,"Points":5733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10035","ServerKey":"pl181","X":468,"Y":592},{"Bonus":0,"Continent":"K55","ID":10037,"Name":"Wioska2","PlayerID":8369778,"Points":10202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10037","ServerKey":"pl181","X":506,"Y":597},{"Bonus":0,"Continent":"K55","ID":10038,"Name":"0065","PlayerID":698416970,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10038","ServerKey":"pl181","X":598,"Y":515},{"Bonus":0,"Continent":"K45","ID":10039,"Name":"028","PlayerID":849088515,"Points":7135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10039","ServerKey":"pl181","X":591,"Y":465},{"Bonus":0,"Continent":"K45","ID":10040,"Name":"022","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10040","ServerKey":"pl181","X":551,"Y":413},{"Bonus":0,"Continent":"K35","ID":10041,"Name":".:119:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10041","ServerKey":"pl181","X":509,"Y":395},{"Bonus":8,"Continent":"K54","ID":10042,"Name":"057","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10042","ServerKey":"pl181","X":402,"Y":500},{"Bonus":0,"Continent":"K45","ID":10043,"Name":"012","PlayerID":849063849,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10043","ServerKey":"pl181","X":576,"Y":435},{"Bonus":0,"Continent":"K43","ID":10044,"Name":"[A]_[021] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10044","ServerKey":"pl181","X":398,"Y":493},{"Bonus":0,"Continent":"K55","ID":10045,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10045","ServerKey":"pl181","X":562,"Y":581},{"Bonus":0,"Continent":"K45","ID":10046,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10046","ServerKey":"pl181","X":518,"Y":402},{"Bonus":0,"Continent":"K54","ID":10048,"Name":"Winter is coming","PlayerID":699364813,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10048","ServerKey":"pl181","X":460,"Y":592},{"Bonus":0,"Continent":"K55","ID":10049,"Name":"028 Daret","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10049","ServerKey":"pl181","X":599,"Y":508},{"Bonus":0,"Continent":"K54","ID":10050,"Name":"A 008.","PlayerID":849028088,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10050","ServerKey":"pl181","X":439,"Y":579},{"Bonus":0,"Continent":"K45","ID":10051,"Name":"AbacadA 018","PlayerID":699756210,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10051","ServerKey":"pl181","X":567,"Y":427},{"Bonus":0,"Continent":"K55","ID":10052,"Name":"###","PlayerID":699698253,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10052","ServerKey":"pl181","X":516,"Y":598},{"Bonus":0,"Continent":"K55","ID":10053,"Name":"|049B|","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10053","ServerKey":"pl181","X":558,"Y":583},{"Bonus":5,"Continent":"K54","ID":10054,"Name":"koczownicza 01","PlayerID":1804724,"Points":10179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10054","ServerKey":"pl181","X":401,"Y":526},{"Bonus":0,"Continent":"K54","ID":10055,"Name":"This Is Sparta !!!","PlayerID":699364813,"Points":1448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10055","ServerKey":"pl181","X":477,"Y":599},{"Bonus":0,"Continent":"K55","ID":10056,"Name":"0015 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10056","ServerKey":"pl181","X":593,"Y":541},{"Bonus":0,"Continent":"K65","ID":10057,"Name":"0182","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10057","ServerKey":"pl181","X":544,"Y":620},{"Bonus":0,"Continent":"K44","ID":10058,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10058","ServerKey":"pl181","X":458,"Y":407},{"Bonus":0,"Continent":"K44","ID":10059,"Name":"00381 Wioska","PlayerID":3909522,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10059","ServerKey":"pl181","X":437,"Y":421},{"Bonus":0,"Continent":"K45","ID":10060,"Name":"AbacadA 015","PlayerID":699756210,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10060","ServerKey":"pl181","X":564,"Y":425},{"Bonus":0,"Continent":"K44","ID":10061,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10061","ServerKey":"pl181","X":461,"Y":410},{"Bonus":0,"Continent":"K35","ID":10062,"Name":"Wioska.","PlayerID":849044961,"Points":8229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10062","ServerKey":"pl181","X":512,"Y":398},{"Bonus":0,"Continent":"K55","ID":10063,"Name":"- 324 -","PlayerID":849018239,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10063","ServerKey":"pl181","X":530,"Y":593},{"Bonus":0,"Continent":"K53","ID":10064,"Name":"Wioska 0004","PlayerID":1804724,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10064","ServerKey":"pl181","X":399,"Y":515},{"Bonus":0,"Continent":"K44","ID":10065,"Name":"x Wioska barbarzyƄska","PlayerID":698290577,"Points":9374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10065","ServerKey":"pl181","X":400,"Y":499},{"Bonus":0,"Continent":"K55","ID":10066,"Name":"0.Minneapolis","PlayerID":698215322,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10066","ServerKey":"pl181","X":521,"Y":587},{"Bonus":0,"Continent":"K55","ID":10067,"Name":"- 283 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10067","ServerKey":"pl181","X":518,"Y":597},{"Bonus":0,"Continent":"K44","ID":10069,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10069","ServerKey":"pl181","X":405,"Y":467},{"Bonus":6,"Continent":"K55","ID":10070,"Name":"Essa 006","PlayerID":848987051,"Points":9578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10070","ServerKey":"pl181","X":569,"Y":574},{"Bonus":0,"Continent":"K45","ID":10071,"Name":"033","PlayerID":1424656,"Points":9144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10071","ServerKey":"pl181","X":549,"Y":415},{"Bonus":0,"Continent":"K45","ID":10072,"Name":"Wioska barbarzyƄska","PlayerID":848925840,"Points":8247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10072","ServerKey":"pl181","X":589,"Y":459},{"Bonus":4,"Continent":"K45","ID":10073,"Name":"028","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10073","ServerKey":"pl181","X":556,"Y":415},{"Bonus":0,"Continent":"K45","ID":10074,"Name":"050 BuƂeczka v5","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10074","ServerKey":"pl181","X":539,"Y":405},{"Bonus":0,"Continent":"K65","ID":10075,"Name":"#0093","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10075","ServerKey":"pl181","X":512,"Y":600},{"Bonus":0,"Continent":"K44","ID":10076,"Name":"K44 x003","PlayerID":698364331,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10076","ServerKey":"pl181","X":436,"Y":404},{"Bonus":0,"Continent":"K54","ID":10077,"Name":"007","PlayerID":7976264,"Points":9047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10077","ServerKey":"pl181","X":483,"Y":596},{"Bonus":0,"Continent":"K35","ID":10078,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10078","ServerKey":"pl181","X":515,"Y":399},{"Bonus":0,"Continent":"K45","ID":10079,"Name":"027","PlayerID":849088515,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10079","ServerKey":"pl181","X":595,"Y":462},{"Bonus":0,"Continent":"K45","ID":10080,"Name":"099","PlayerID":849064752,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10080","ServerKey":"pl181","X":567,"Y":423},{"Bonus":0,"Continent":"K44","ID":10081,"Name":"022 San Jose","PlayerID":9291984,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10081","ServerKey":"pl181","X":428,"Y":427},{"Bonus":0,"Continent":"K54","ID":10082,"Name":"~037.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10082","ServerKey":"pl181","X":470,"Y":596},{"Bonus":0,"Continent":"K65","ID":10083,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10083","ServerKey":"pl181","X":539,"Y":605},{"Bonus":0,"Continent":"K55","ID":10084,"Name":"mam","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10084","ServerKey":"pl181","X":558,"Y":584},{"Bonus":0,"Continent":"K54","ID":10085,"Name":"048 - A03***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10085","ServerKey":"pl181","X":433,"Y":590},{"Bonus":0,"Continent":"K44","ID":10086,"Name":"[A]_[042] Dejv.oldplyr","PlayerID":699380607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10086","ServerKey":"pl181","X":401,"Y":493},{"Bonus":0,"Continent":"K64","ID":10087,"Name":"0339","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10087","ServerKey":"pl181","X":499,"Y":621},{"Bonus":0,"Continent":"K44","ID":10088,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10088","ServerKey":"pl181","X":403,"Y":466},{"Bonus":0,"Continent":"K44","ID":10089,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10089","ServerKey":"pl181","X":480,"Y":401},{"Bonus":0,"Continent":"K65","ID":10090,"Name":"Wioska6,,,,","PlayerID":8369778,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10090","ServerKey":"pl181","X":518,"Y":601},{"Bonus":7,"Continent":"K45","ID":10091,"Name":"021","PlayerID":849063849,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10091","ServerKey":"pl181","X":570,"Y":427},{"Bonus":0,"Continent":"K54","ID":10092,"Name":"Wioska 0002","PlayerID":1804724,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10092","ServerKey":"pl181","X":405,"Y":524},{"Bonus":0,"Continent":"K55","ID":10093,"Name":"Jaaa","PlayerID":698635863,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10093","ServerKey":"pl181","X":581,"Y":556},{"Bonus":0,"Continent":"K44","ID":10094,"Name":"Monetki","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10094","ServerKey":"pl181","X":479,"Y":402},{"Bonus":0,"Continent":"K44","ID":10095,"Name":"Wioska Lord Wasir","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10095","ServerKey":"pl181","X":445,"Y":417},{"Bonus":0,"Continent":"K45","ID":10096,"Name":"AbacadA 017","PlayerID":699756210,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10096","ServerKey":"pl181","X":566,"Y":424},{"Bonus":0,"Continent":"K44","ID":10097,"Name":"[A]_[046] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10097","ServerKey":"pl181","X":406,"Y":470},{"Bonus":0,"Continent":"K44","ID":10098,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10098","ServerKey":"pl181","X":404,"Y":466},{"Bonus":0,"Continent":"K64","ID":10099,"Name":"095 MEHEHE m","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10099","ServerKey":"pl181","X":493,"Y":600},{"Bonus":0,"Continent":"K44","ID":10100,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10100","ServerKey":"pl181","X":414,"Y":451},{"Bonus":0,"Continent":"K44","ID":10101,"Name":"Gravity","PlayerID":698962117,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10101","ServerKey":"pl181","X":412,"Y":451},{"Bonus":0,"Continent":"K55","ID":10103,"Name":"007 Mordor","PlayerID":8013349,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10103","ServerKey":"pl181","X":598,"Y":529},{"Bonus":0,"Continent":"K35","ID":10104,"Name":".:007:. Idea","PlayerID":8649412,"Points":9767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10104","ServerKey":"pl181","X":505,"Y":398},{"Bonus":0,"Continent":"K56","ID":10105,"Name":"Centrum 02","PlayerID":698702991,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10105","ServerKey":"pl181","X":605,"Y":564},{"Bonus":0,"Continent":"K65","ID":10106,"Name":"Wioska morisanti","PlayerID":699698253,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10106","ServerKey":"pl181","X":507,"Y":601},{"Bonus":1,"Continent":"K55","ID":10107,"Name":"PYZA 002 Nuke","PlayerID":33900,"Points":9536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10107","ServerKey":"pl181","X":579,"Y":566},{"Bonus":0,"Continent":"K45","ID":10108,"Name":"002","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10108","ServerKey":"pl181","X":587,"Y":452},{"Bonus":0,"Continent":"K45","ID":10109,"Name":"ADEN","PlayerID":698588535,"Points":9321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10109","ServerKey":"pl181","X":561,"Y":417},{"Bonus":0,"Continent":"K55","ID":10110,"Name":"Tesa 14","PlayerID":698845189,"Points":9396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10110","ServerKey":"pl181","X":597,"Y":524},{"Bonus":0,"Continent":"K44","ID":10111,"Name":"Gravity","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10111","ServerKey":"pl181","X":410,"Y":451},{"Bonus":0,"Continent":"K46","ID":10112,"Name":"001","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10112","ServerKey":"pl181","X":604,"Y":459},{"Bonus":0,"Continent":"K55","ID":10113,"Name":"011","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10113","ServerKey":"pl181","X":582,"Y":562},{"Bonus":0,"Continent":"K64","ID":10114,"Name":"#040","PlayerID":699605333,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10114","ServerKey":"pl181","X":458,"Y":609},{"Bonus":0,"Continent":"K54","ID":10115,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10115","ServerKey":"pl181","X":409,"Y":544},{"Bonus":0,"Continent":"K44","ID":10116,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10116","ServerKey":"pl181","X":418,"Y":439},{"Bonus":0,"Continent":"K55","ID":10117,"Name":"Wioska6,,,","PlayerID":8369778,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10117","ServerKey":"pl181","X":519,"Y":597},{"Bonus":0,"Continent":"K54","ID":10118,"Name":"019","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10118","ServerKey":"pl181","X":405,"Y":537},{"Bonus":0,"Continent":"K44","ID":10119,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10119","ServerKey":"pl181","X":421,"Y":439},{"Bonus":0,"Continent":"K54","ID":10120,"Name":"0000019$","PlayerID":849089881,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10120","ServerKey":"pl181","X":434,"Y":578},{"Bonus":0,"Continent":"K44","ID":10122,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10122","ServerKey":"pl181","X":411,"Y":458},{"Bonus":0,"Continent":"K54","ID":10123,"Name":"Twierdza 016","PlayerID":9167250,"Points":4172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10123","ServerKey":"pl181","X":427,"Y":566},{"Bonus":0,"Continent":"K54","ID":10124,"Name":"0010","PlayerID":33900,"Points":9269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10124","ServerKey":"pl181","X":472,"Y":598},{"Bonus":0,"Continent":"K44","ID":10125,"Name":"0099","PlayerID":699431255,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10125","ServerKey":"pl181","X":443,"Y":419},{"Bonus":0,"Continent":"K35","ID":10126,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10126","ServerKey":"pl181","X":514,"Y":399},{"Bonus":0,"Continent":"K53","ID":10127,"Name":"Kulik 001","PlayerID":698290577,"Points":9093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10127","ServerKey":"pl181","X":398,"Y":509},{"Bonus":0,"Continent":"K35","ID":10128,"Name":"Wioska barbarzyƄska","PlayerID":849044961,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10128","ServerKey":"pl181","X":508,"Y":399},{"Bonus":0,"Continent":"K45","ID":10129,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10129","ServerKey":"pl181","X":515,"Y":401},{"Bonus":0,"Continent":"K64","ID":10131,"Name":"Sparta_16","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10131","ServerKey":"pl181","X":497,"Y":600},{"Bonus":0,"Continent":"K55","ID":10132,"Name":"#053","PlayerID":849001572,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10132","ServerKey":"pl181","X":525,"Y":596},{"Bonus":0,"Continent":"K45","ID":10133,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10133","ServerKey":"pl181","X":576,"Y":436},{"Bonus":0,"Continent":"K55","ID":10134,"Name":"- 119 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10134","ServerKey":"pl181","X":548,"Y":589},{"Bonus":0,"Continent":"K54","ID":10135,"Name":"(029)","PlayerID":699846892,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10135","ServerKey":"pl181","X":405,"Y":532},{"Bonus":5,"Continent":"K44","ID":10136,"Name":"Gravity","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10136","ServerKey":"pl181","X":412,"Y":450},{"Bonus":0,"Continent":"K45","ID":10137,"Name":"032 Stay Alive","PlayerID":698829590,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10137","ServerKey":"pl181","X":592,"Y":459},{"Bonus":0,"Continent":"K54","ID":10138,"Name":"KIELBA 040","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10138","ServerKey":"pl181","X":456,"Y":590},{"Bonus":0,"Continent":"K64","ID":10139,"Name":"004.","PlayerID":7976264,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10139","ServerKey":"pl181","X":488,"Y":602},{"Bonus":0,"Continent":"K55","ID":10140,"Name":"[045]","PlayerID":848985692,"Points":10646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10140","ServerKey":"pl181","X":596,"Y":536},{"Bonus":0,"Continent":"K55","ID":10142,"Name":"0003","PlayerID":699429153,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10142","ServerKey":"pl181","X":599,"Y":501},{"Bonus":0,"Continent":"K45","ID":10143,"Name":"045","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10143","ServerKey":"pl181","X":548,"Y":409},{"Bonus":0,"Continent":"K55","ID":10144,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10144","ServerKey":"pl181","X":587,"Y":554},{"Bonus":0,"Continent":"K35","ID":10145,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10145","ServerKey":"pl181","X":520,"Y":399},{"Bonus":0,"Continent":"K45","ID":10146,"Name":"028","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10146","ServerKey":"pl181","X":572,"Y":433},{"Bonus":0,"Continent":"K55","ID":10147,"Name":"CALL 983","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10147","ServerKey":"pl181","X":559,"Y":579},{"Bonus":0,"Continent":"K34","ID":10148,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10148","ServerKey":"pl181","X":497,"Y":398},{"Bonus":0,"Continent":"K44","ID":10149,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10149","ServerKey":"pl181","X":406,"Y":464},{"Bonus":0,"Continent":"K34","ID":10150,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10150","ServerKey":"pl181","X":438,"Y":396},{"Bonus":0,"Continent":"K54","ID":10151,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10151","ServerKey":"pl181","X":415,"Y":552},{"Bonus":0,"Continent":"K44","ID":10152,"Name":"051","PlayerID":699510259,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10152","ServerKey":"pl181","X":400,"Y":498},{"Bonus":0,"Continent":"K54","ID":10153,"Name":"Winter is coming","PlayerID":699364813,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10153","ServerKey":"pl181","X":449,"Y":587},{"Bonus":0,"Continent":"K55","ID":10154,"Name":"jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10154","ServerKey":"pl181","X":575,"Y":567},{"Bonus":0,"Continent":"K55","ID":10155,"Name":"1.Sacramento","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10155","ServerKey":"pl181","X":532,"Y":596},{"Bonus":0,"Continent":"K44","ID":10156,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10156","ServerKey":"pl181","X":418,"Y":413},{"Bonus":0,"Continent":"K55","ID":10157,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10157","ServerKey":"pl181","X":590,"Y":550},{"Bonus":0,"Continent":"K55","ID":10158,"Name":"0217","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10158","ServerKey":"pl181","X":533,"Y":592},{"Bonus":0,"Continent":"K45","ID":10159,"Name":"046 BuƂeczka v1","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10159","ServerKey":"pl181","X":536,"Y":405},{"Bonus":0,"Continent":"K45","ID":10160,"Name":".:143:. Niangmen","PlayerID":848934935,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10160","ServerKey":"pl181","X":501,"Y":401},{"Bonus":0,"Continent":"K44","ID":10161,"Name":"K44 x007","PlayerID":698364331,"Points":8415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10161","ServerKey":"pl181","X":445,"Y":414},{"Bonus":0,"Continent":"K55","ID":10162,"Name":"#006","PlayerID":849001572,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10162","ServerKey":"pl181","X":537,"Y":595},{"Bonus":0,"Continent":"K44","ID":10163,"Name":"0026 Wioska","PlayerID":3909522,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10163","ServerKey":"pl181","X":428,"Y":413},{"Bonus":0,"Continent":"K34","ID":10164,"Name":"044","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10164","ServerKey":"pl181","X":483,"Y":399},{"Bonus":0,"Continent":"K45","ID":10165,"Name":"A09","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10165","ServerKey":"pl181","X":598,"Y":466},{"Bonus":0,"Continent":"K56","ID":10166,"Name":"Wioska - xd","PlayerID":698845189,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10166","ServerKey":"pl181","X":601,"Y":517},{"Bonus":0,"Continent":"K54","ID":10167,"Name":"Winter is coming","PlayerID":699364813,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10167","ServerKey":"pl181","X":470,"Y":597},{"Bonus":0,"Continent":"K55","ID":10168,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10168","ServerKey":"pl181","X":525,"Y":598},{"Bonus":0,"Continent":"K55","ID":10170,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10170","ServerKey":"pl181","X":561,"Y":579},{"Bonus":0,"Continent":"K44","ID":10171,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10171","ServerKey":"pl181","X":406,"Y":469},{"Bonus":0,"Continent":"K44","ID":10172,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":8861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10172","ServerKey":"pl181","X":414,"Y":444},{"Bonus":0,"Continent":"K55","ID":10173,"Name":"Tesa 12","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10173","ServerKey":"pl181","X":599,"Y":519},{"Bonus":0,"Continent":"K65","ID":10174,"Name":"Z03","PlayerID":2293376,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10174","ServerKey":"pl181","X":515,"Y":602},{"Bonus":0,"Continent":"K44","ID":10175,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10175","ServerKey":"pl181","X":472,"Y":403},{"Bonus":0,"Continent":"K44","ID":10176,"Name":"014 New Haven","PlayerID":9291984,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10176","ServerKey":"pl181","X":430,"Y":428},{"Bonus":6,"Continent":"K55","ID":10177,"Name":"#020","PlayerID":849001572,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10177","ServerKey":"pl181","X":525,"Y":599},{"Bonus":0,"Continent":"K55","ID":10178,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10178","ServerKey":"pl181","X":582,"Y":558},{"Bonus":0,"Continent":"K45","ID":10179,"Name":"009","PlayerID":849063849,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10179","ServerKey":"pl181","X":566,"Y":425},{"Bonus":0,"Continent":"K44","ID":10180,"Name":"019 Philadelphia","PlayerID":9291984,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10180","ServerKey":"pl181","X":431,"Y":429},{"Bonus":0,"Continent":"K54","ID":10181,"Name":"Qbek","PlayerID":699443920,"Points":6506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10181","ServerKey":"pl181","X":417,"Y":554},{"Bonus":0,"Continent":"K44","ID":10182,"Name":"B18","PlayerID":849093422,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10182","ServerKey":"pl181","X":498,"Y":401},{"Bonus":0,"Continent":"K55","ID":10183,"Name":"1.60tp !!!","PlayerID":849087855,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10183","ServerKey":"pl181","X":500,"Y":536},{"Bonus":0,"Continent":"K45","ID":10184,"Name":"Domek 8","PlayerID":849064614,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10184","ServerKey":"pl181","X":561,"Y":421},{"Bonus":0,"Continent":"K45","ID":10185,"Name":"029","PlayerID":8459255,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10185","ServerKey":"pl181","X":594,"Y":466},{"Bonus":0,"Continent":"K55","ID":10186,"Name":"#0094","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10186","ServerKey":"pl181","X":510,"Y":599},{"Bonus":6,"Continent":"K45","ID":10187,"Name":"Bunkier 001","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10187","ServerKey":"pl181","X":587,"Y":449},{"Bonus":0,"Continent":"K43","ID":10188,"Name":"A0046","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10188","ServerKey":"pl181","X":380,"Y":473},{"Bonus":0,"Continent":"K55","ID":10189,"Name":"019.","PlayerID":8900955,"Points":6862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10189","ServerKey":"pl181","X":595,"Y":537},{"Bonus":0,"Continent":"K55","ID":10190,"Name":"Wioska 450","PlayerID":477415,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10190","ServerKey":"pl181","X":590,"Y":547},{"Bonus":0,"Continent":"K54","ID":10191,"Name":"Wioska barbarzyƄska","PlayerID":699833171,"Points":6973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10191","ServerKey":"pl181","X":420,"Y":559},{"Bonus":0,"Continent":"K45","ID":10192,"Name":"BBB","PlayerID":1006847,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10192","ServerKey":"pl181","X":583,"Y":446},{"Bonus":0,"Continent":"K54","ID":10193,"Name":"Winter is coming","PlayerID":699364813,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10193","ServerKey":"pl181","X":451,"Y":589},{"Bonus":0,"Continent":"K55","ID":10194,"Name":"Pod","PlayerID":1715091,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10194","ServerKey":"pl181","X":590,"Y":585},{"Bonus":0,"Continent":"K64","ID":10195,"Name":"EKG .::. freaky97/2","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10195","ServerKey":"pl181","X":488,"Y":605},{"Bonus":0,"Continent":"K45","ID":10196,"Name":"033","PlayerID":8459255,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10196","ServerKey":"pl181","X":597,"Y":469},{"Bonus":3,"Continent":"K34","ID":10197,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10197","ServerKey":"pl181","X":493,"Y":397},{"Bonus":0,"Continent":"K45","ID":10198,"Name":"038","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10198","ServerKey":"pl181","X":538,"Y":407},{"Bonus":0,"Continent":"K43","ID":10199,"Name":"[A]_[011] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10199","ServerKey":"pl181","X":398,"Y":487},{"Bonus":0,"Continent":"K55","ID":10200,"Name":"004. Wioska Gatt","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10200","ServerKey":"pl181","X":598,"Y":522},{"Bonus":0,"Continent":"K65","ID":10201,"Name":"#0098","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10201","ServerKey":"pl181","X":513,"Y":601},{"Bonus":0,"Continent":"K55","ID":10202,"Name":"z 032","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10202","ServerKey":"pl181","X":553,"Y":586},{"Bonus":0,"Continent":"K44","ID":10203,"Name":"020 Phoenix","PlayerID":9291984,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10203","ServerKey":"pl181","X":430,"Y":427},{"Bonus":0,"Continent":"K46","ID":10204,"Name":"014 Jedno albo drugie","PlayerID":699272633,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10204","ServerKey":"pl181","X":600,"Y":481},{"Bonus":0,"Continent":"K44","ID":10205,"Name":"0103","PlayerID":699431255,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10205","ServerKey":"pl181","X":443,"Y":417},{"Bonus":0,"Continent":"K45","ID":10206,"Name":"A18","PlayerID":849093742,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10206","ServerKey":"pl181","X":594,"Y":460},{"Bonus":0,"Continent":"K56","ID":10207,"Name":"018","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10207","ServerKey":"pl181","X":601,"Y":506},{"Bonus":0,"Continent":"K55","ID":10208,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10208","ServerKey":"pl181","X":584,"Y":553},{"Bonus":0,"Continent":"K55","ID":10210,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10210","ServerKey":"pl181","X":596,"Y":526},{"Bonus":0,"Continent":"K45","ID":10211,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10211","ServerKey":"pl181","X":528,"Y":401},{"Bonus":0,"Continent":"K44","ID":10212,"Name":"Szlachcic","PlayerID":698388578,"Points":8454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10212","ServerKey":"pl181","X":478,"Y":401},{"Bonus":0,"Continent":"K53","ID":10213,"Name":"x barbarzyƄska 008","PlayerID":698290577,"Points":9131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10213","ServerKey":"pl181","X":397,"Y":511},{"Bonus":0,"Continent":"K54","ID":10214,"Name":"005","PlayerID":7976264,"Points":10315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10214","ServerKey":"pl181","X":491,"Y":599},{"Bonus":0,"Continent":"K44","ID":10216,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10216","ServerKey":"pl181","X":464,"Y":407},{"Bonus":0,"Continent":"K46","ID":10217,"Name":"013 Delaware","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10217","ServerKey":"pl181","X":601,"Y":487},{"Bonus":0,"Continent":"K55","ID":10218,"Name":"[047]","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10218","ServerKey":"pl181","X":598,"Y":523},{"Bonus":0,"Continent":"K45","ID":10219,"Name":"034","PlayerID":1424656,"Points":6784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10219","ServerKey":"pl181","X":552,"Y":413},{"Bonus":0,"Continent":"K34","ID":10220,"Name":"043","PlayerID":698739350,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10220","ServerKey":"pl181","X":481,"Y":398},{"Bonus":0,"Continent":"K44","ID":10221,"Name":"Szlachcic","PlayerID":698388578,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10221","ServerKey":"pl181","X":467,"Y":404},{"Bonus":0,"Continent":"K45","ID":10222,"Name":"Joms 012","PlayerID":699756210,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10222","ServerKey":"pl181","X":527,"Y":418},{"Bonus":0,"Continent":"K54","ID":10223,"Name":"czekoladowy john","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10223","ServerKey":"pl181","X":471,"Y":596},{"Bonus":0,"Continent":"K54","ID":10224,"Name":"~022.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10224","ServerKey":"pl181","X":474,"Y":598},{"Bonus":0,"Continent":"K53","ID":10225,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10225","ServerKey":"pl181","X":386,"Y":500},{"Bonus":0,"Continent":"K53","ID":10226,"Name":"Wioska barbarzyƄska","PlayerID":1804724,"Points":8162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10226","ServerKey":"pl181","X":399,"Y":520},{"Bonus":0,"Continent":"K55","ID":10227,"Name":"#018","PlayerID":849001572,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10227","ServerKey":"pl181","X":544,"Y":588},{"Bonus":0,"Continent":"K65","ID":10228,"Name":"SSJ 015","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10228","ServerKey":"pl181","X":520,"Y":622},{"Bonus":0,"Continent":"K44","ID":10229,"Name":"018 Houston","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10229","ServerKey":"pl181","X":431,"Y":426},{"Bonus":0,"Continent":"K54","ID":10230,"Name":"006","PlayerID":7976264,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10230","ServerKey":"pl181","X":486,"Y":598},{"Bonus":0,"Continent":"K65","ID":10231,"Name":"sony911","PlayerID":1415009,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10231","ServerKey":"pl181","X":565,"Y":604},{"Bonus":0,"Continent":"K45","ID":10232,"Name":"[402] Zatrzymam to sobie","PlayerID":848985692,"Points":8622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10232","ServerKey":"pl181","X":576,"Y":431},{"Bonus":0,"Continent":"K54","ID":10233,"Name":"0000006#","PlayerID":849089881,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10233","ServerKey":"pl181","X":427,"Y":572},{"Bonus":0,"Continent":"K45","ID":10234,"Name":"k45 016","PlayerID":699368887,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10234","ServerKey":"pl181","X":577,"Y":433},{"Bonus":0,"Continent":"K43","ID":10235,"Name":"[A]_[008] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10235","ServerKey":"pl181","X":399,"Y":488},{"Bonus":0,"Continent":"K64","ID":10236,"Name":"~076.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10236","ServerKey":"pl181","X":490,"Y":607},{"Bonus":0,"Continent":"K45","ID":10237,"Name":"071","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10237","ServerKey":"pl181","X":544,"Y":409},{"Bonus":0,"Continent":"K45","ID":10238,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10238","ServerKey":"pl181","X":517,"Y":400},{"Bonus":0,"Continent":"K64","ID":10239,"Name":"099 MEHEHE 1","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10239","ServerKey":"pl181","X":492,"Y":602},{"Bonus":0,"Continent":"K54","ID":10240,"Name":"A 005.","PlayerID":849028088,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10240","ServerKey":"pl181","X":436,"Y":581},{"Bonus":0,"Continent":"K44","ID":10241,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10241","ServerKey":"pl181","X":442,"Y":417},{"Bonus":0,"Continent":"K54","ID":10242,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10242","ServerKey":"pl181","X":410,"Y":546},{"Bonus":0,"Continent":"K54","ID":10243,"Name":"Rotrigo 3","PlayerID":849030226,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10243","ServerKey":"pl181","X":405,"Y":535},{"Bonus":0,"Continent":"K45","ID":10244,"Name":"0075","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10244","ServerKey":"pl181","X":599,"Y":496},{"Bonus":0,"Continent":"K45","ID":10245,"Name":"006 Czysta gra","PlayerID":698829590,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10245","ServerKey":"pl181","X":591,"Y":455},{"Bonus":0,"Continent":"K45","ID":10246,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10246","ServerKey":"pl181","X":578,"Y":438},{"Bonus":0,"Continent":"K54","ID":10247,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10247","ServerKey":"pl181","X":409,"Y":550},{"Bonus":0,"Continent":"K35","ID":10248,"Name":"101 ***1*** Arbuz","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10248","ServerKey":"pl181","X":543,"Y":389},{"Bonus":0,"Continent":"K44","ID":10249,"Name":"SsSs","PlayerID":1536625,"Points":8779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10249","ServerKey":"pl181","X":402,"Y":490},{"Bonus":0,"Continent":"K35","ID":10250,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10250","ServerKey":"pl181","X":516,"Y":398},{"Bonus":0,"Continent":"K55","ID":10251,"Name":"010. Wioska V1p3r646","PlayerID":8788366,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10251","ServerKey":"pl181","X":593,"Y":515},{"Bonus":0,"Continent":"K35","ID":10252,"Name":"D001","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10252","ServerKey":"pl181","X":510,"Y":397},{"Bonus":0,"Continent":"K44","ID":10253,"Name":"[A]_[024] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10253","ServerKey":"pl181","X":400,"Y":483},{"Bonus":0,"Continent":"K55","ID":10254,"Name":"009","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10254","ServerKey":"pl181","X":557,"Y":584},{"Bonus":0,"Continent":"K54","ID":10255,"Name":"Twierdza 015","PlayerID":9167250,"Points":6016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10255","ServerKey":"pl181","X":424,"Y":565},{"Bonus":0,"Continent":"K65","ID":10256,"Name":"Winter is coming","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10256","ServerKey":"pl181","X":507,"Y":600},{"Bonus":0,"Continent":"K54","ID":10257,"Name":"Village","PlayerID":849094067,"Points":11691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10257","ServerKey":"pl181","X":468,"Y":595},{"Bonus":0,"Continent":"K54","ID":10258,"Name":"002","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10258","ServerKey":"pl181","X":406,"Y":541},{"Bonus":0,"Continent":"K55","ID":10259,"Name":"1.Houston","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10259","ServerKey":"pl181","X":542,"Y":595},{"Bonus":0,"Continent":"K46","ID":10260,"Name":"010 - Bilbao","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10260","ServerKey":"pl181","X":602,"Y":493},{"Bonus":0,"Continent":"K55","ID":10261,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10261","ServerKey":"pl181","X":562,"Y":582},{"Bonus":0,"Continent":"K45","ID":10262,"Name":"018 Problemy internetowe dorka","PlayerID":698829590,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10262","ServerKey":"pl181","X":591,"Y":457},{"Bonus":0,"Continent":"K54","ID":10263,"Name":"mehehe 3","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10263","ServerKey":"pl181","X":462,"Y":592},{"Bonus":0,"Continent":"K34","ID":10264,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10264","ServerKey":"pl181","X":493,"Y":398},{"Bonus":0,"Continent":"K35","ID":10265,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10265","ServerKey":"pl181","X":520,"Y":385},{"Bonus":0,"Continent":"K45","ID":10266,"Name":"B07","PlayerID":849093422,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10266","ServerKey":"pl181","X":504,"Y":400},{"Bonus":0,"Continent":"K54","ID":10267,"Name":"Stage group D 1","PlayerID":699364813,"Points":9930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10267","ServerKey":"pl181","X":452,"Y":590},{"Bonus":0,"Continent":"K54","ID":10268,"Name":"Twierdza 011","PlayerID":9167250,"Points":8789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10268","ServerKey":"pl181","X":424,"Y":568},{"Bonus":0,"Continent":"K46","ID":10269,"Name":"004 Arkansas","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10269","ServerKey":"pl181","X":603,"Y":487},{"Bonus":0,"Continent":"K54","ID":10270,"Name":"~034.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10270","ServerKey":"pl181","X":472,"Y":599},{"Bonus":0,"Continent":"K34","ID":10271,"Name":"Fairy Tail","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10271","ServerKey":"pl181","X":485,"Y":398},{"Bonus":0,"Continent":"K65","ID":10272,"Name":"Wioska6,,,,,","PlayerID":8369778,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10272","ServerKey":"pl181","X":517,"Y":601},{"Bonus":0,"Continent":"K44","ID":10273,"Name":"Szlachcic","PlayerID":698388578,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10273","ServerKey":"pl181","X":469,"Y":403},{"Bonus":0,"Continent":"K34","ID":10274,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10274","ServerKey":"pl181","X":492,"Y":399},{"Bonus":0,"Continent":"K54","ID":10275,"Name":"0000008#","PlayerID":849089881,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10275","ServerKey":"pl181","X":429,"Y":573},{"Bonus":0,"Continent":"K64","ID":10276,"Name":"EKG .::. KOM 004 Napychając","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10276","ServerKey":"pl181","X":477,"Y":600},{"Bonus":0,"Continent":"K55","ID":10277,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10277","ServerKey":"pl181","X":566,"Y":575},{"Bonus":0,"Continent":"K34","ID":10278,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":8977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10278","ServerKey":"pl181","X":497,"Y":399},{"Bonus":0,"Continent":"K55","ID":10279,"Name":"- 123 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10279","ServerKey":"pl181","X":543,"Y":590},{"Bonus":0,"Continent":"K55","ID":10280,"Name":"[042]","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10280","ServerKey":"pl181","X":591,"Y":539},{"Bonus":0,"Continent":"K55","ID":10281,"Name":"- 315 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10281","ServerKey":"pl181","X":533,"Y":595},{"Bonus":0,"Continent":"K34","ID":10282,"Name":"A044","PlayerID":8740199,"Points":5446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10282","ServerKey":"pl181","X":479,"Y":398},{"Bonus":0,"Continent":"K54","ID":10283,"Name":"B 004.","PlayerID":849028088,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10283","ServerKey":"pl181","X":445,"Y":583},{"Bonus":0,"Continent":"K55","ID":10284,"Name":"- 115 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10284","ServerKey":"pl181","X":552,"Y":586},{"Bonus":0,"Continent":"K55","ID":10285,"Name":"Wioska 451","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10285","ServerKey":"pl181","X":591,"Y":547},{"Bonus":0,"Continent":"K44","ID":10286,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10286","ServerKey":"pl181","X":413,"Y":447},{"Bonus":0,"Continent":"K45","ID":10287,"Name":"023 Farma czy nie","PlayerID":698829590,"Points":6971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10287","ServerKey":"pl181","X":591,"Y":454},{"Bonus":0,"Continent":"K45","ID":10288,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10288","ServerKey":"pl181","X":518,"Y":403},{"Bonus":0,"Continent":"K54","ID":10289,"Name":"KIELBA 077","PlayerID":699342219,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10289","ServerKey":"pl181","X":458,"Y":593},{"Bonus":0,"Continent":"K45","ID":10290,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10290","ServerKey":"pl181","X":520,"Y":400},{"Bonus":0,"Continent":"K65","ID":10291,"Name":"0218","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10291","ServerKey":"pl181","X":520,"Y":600},{"Bonus":0,"Continent":"K54","ID":10292,"Name":"007","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10292","ServerKey":"pl181","X":409,"Y":541},{"Bonus":0,"Continent":"K55","ID":10293,"Name":"011","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10293","ServerKey":"pl181","X":576,"Y":595},{"Bonus":0,"Continent":"K55","ID":10294,"Name":"015","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10294","ServerKey":"pl181","X":580,"Y":565},{"Bonus":5,"Continent":"K54","ID":10295,"Name":"087","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10295","ServerKey":"pl181","X":400,"Y":524},{"Bonus":0,"Continent":"K54","ID":10296,"Name":"0000012#","PlayerID":849089881,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10296","ServerKey":"pl181","X":431,"Y":573},{"Bonus":0,"Continent":"K54","ID":10297,"Name":"0000024#","PlayerID":849089881,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10297","ServerKey":"pl181","X":429,"Y":572},{"Bonus":0,"Continent":"K44","ID":10298,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10298","ServerKey":"pl181","X":409,"Y":462},{"Bonus":0,"Continent":"K55","ID":10299,"Name":"ƚcięty grzyb..","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10299","ServerKey":"pl181","X":582,"Y":599},{"Bonus":0,"Continent":"K54","ID":10300,"Name":"A 006.","PlayerID":849028088,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10300","ServerKey":"pl181","X":438,"Y":578},{"Bonus":0,"Continent":"K54","ID":10301,"Name":"KIELBA 080","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10301","ServerKey":"pl181","X":457,"Y":594},{"Bonus":0,"Continent":"K44","ID":10302,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10302","ServerKey":"pl181","X":441,"Y":419},{"Bonus":0,"Continent":"K55","ID":10303,"Name":"[048]","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10303","ServerKey":"pl181","X":597,"Y":525},{"Bonus":0,"Continent":"K54","ID":10304,"Name":"NOT!!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10304","ServerKey":"pl181","X":467,"Y":596},{"Bonus":0,"Continent":"K55","ID":10305,"Name":"Wioska dare","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10305","ServerKey":"pl181","X":562,"Y":577},{"Bonus":0,"Continent":"K46","ID":10306,"Name":"045","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10306","ServerKey":"pl181","X":601,"Y":488},{"Bonus":0,"Continent":"K54","ID":10307,"Name":"019","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10307","ServerKey":"pl181","X":413,"Y":519},{"Bonus":0,"Continent":"K54","ID":10308,"Name":"C 003.","PlayerID":849028088,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10308","ServerKey":"pl181","X":449,"Y":568},{"Bonus":0,"Continent":"K45","ID":10309,"Name":"AbacadA 004","PlayerID":699756210,"Points":10424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10309","ServerKey":"pl181","X":567,"Y":425},{"Bonus":0,"Continent":"K53","ID":10310,"Name":"SsSs","PlayerID":1536625,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10310","ServerKey":"pl181","X":397,"Y":504},{"Bonus":0,"Continent":"K46","ID":10311,"Name":"Jehu_Kingdom_24_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10311","ServerKey":"pl181","X":600,"Y":480},{"Bonus":7,"Continent":"K44","ID":10312,"Name":"013 Norwalk","PlayerID":9291984,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10312","ServerKey":"pl181","X":430,"Y":426},{"Bonus":0,"Continent":"K54","ID":10313,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10313","ServerKey":"pl181","X":411,"Y":546},{"Bonus":0,"Continent":"K55","ID":10314,"Name":"ƁódĆș","PlayerID":1715091,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10314","ServerKey":"pl181","X":593,"Y":579},{"Bonus":0,"Continent":"K45","ID":10315,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10315","ServerKey":"pl181","X":599,"Y":498},{"Bonus":0,"Continent":"K34","ID":10316,"Name":"0004","PlayerID":699431255,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10316","ServerKey":"pl181","X":442,"Y":392},{"Bonus":0,"Continent":"K55","ID":10317,"Name":"Tesa 5","PlayerID":698845189,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10317","ServerKey":"pl181","X":599,"Y":521},{"Bonus":0,"Continent":"K45","ID":10318,"Name":"N01","PlayerID":699368887,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10318","ServerKey":"pl181","X":585,"Y":445},{"Bonus":0,"Continent":"K35","ID":10319,"Name":".:114:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10319","ServerKey":"pl181","X":504,"Y":397},{"Bonus":0,"Continent":"K35","ID":10321,"Name":".:136:. Niangmen","PlayerID":848934935,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10321","ServerKey":"pl181","X":507,"Y":398},{"Bonus":0,"Continent":"K43","ID":10322,"Name":"x010. PewnegoRazuNaDzikimZach..","PlayerID":698290577,"Points":7828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10322","ServerKey":"pl181","X":394,"Y":489},{"Bonus":0,"Continent":"K54","ID":10323,"Name":"keepo","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10323","ServerKey":"pl181","X":486,"Y":529},{"Bonus":0,"Continent":"K46","ID":10324,"Name":"0009","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10324","ServerKey":"pl181","X":602,"Y":495},{"Bonus":0,"Continent":"K55","ID":10325,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10325","ServerKey":"pl181","X":563,"Y":582},{"Bonus":0,"Continent":"K54","ID":10326,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10326","ServerKey":"pl181","X":413,"Y":556},{"Bonus":0,"Continent":"K55","ID":10327,"Name":"1.Madison","PlayerID":698215322,"Points":8966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10327","ServerKey":"pl181","X":541,"Y":593},{"Bonus":0,"Continent":"K54","ID":10328,"Name":"0000015!","PlayerID":849089881,"Points":8775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10328","ServerKey":"pl181","X":446,"Y":585},{"Bonus":0,"Continent":"K45","ID":10329,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10329","ServerKey":"pl181","X":527,"Y":404},{"Bonus":0,"Continent":"K55","ID":10330,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10330","ServerKey":"pl181","X":575,"Y":570},{"Bonus":0,"Continent":"K55","ID":10332,"Name":"z 025","PlayerID":699342219,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10332","ServerKey":"pl181","X":551,"Y":586},{"Bonus":0,"Continent":"K44","ID":10333,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10333","ServerKey":"pl181","X":401,"Y":486},{"Bonus":0,"Continent":"K55","ID":10334,"Name":"013","PlayerID":699524362,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10334","ServerKey":"pl181","X":584,"Y":561},{"Bonus":0,"Continent":"K44","ID":10335,"Name":"0038 Wioska","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10335","ServerKey":"pl181","X":436,"Y":420},{"Bonus":0,"Continent":"K44","ID":10336,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10336","ServerKey":"pl181","X":416,"Y":440},{"Bonus":0,"Continent":"K55","ID":10337,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10337","ServerKey":"pl181","X":511,"Y":599},{"Bonus":0,"Continent":"K55","ID":10338,"Name":"- 072 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10338","ServerKey":"pl181","X":536,"Y":597},{"Bonus":0,"Continent":"K44","ID":10339,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10339","ServerKey":"pl181","X":410,"Y":450},{"Bonus":0,"Continent":"K44","ID":10340,"Name":"Suppi","PlayerID":699856962,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10340","ServerKey":"pl181","X":422,"Y":432},{"Bonus":0,"Continent":"K54","ID":10341,"Name":"007","PlayerID":9167250,"Points":8884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10341","ServerKey":"pl181","X":424,"Y":571},{"Bonus":0,"Continent":"K55","ID":10343,"Name":"0035 MzM","PlayerID":698416970,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10343","ServerKey":"pl181","X":588,"Y":548},{"Bonus":5,"Continent":"K34","ID":10344,"Name":"Magnolia","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10344","ServerKey":"pl181","X":486,"Y":398},{"Bonus":0,"Continent":"K54","ID":10346,"Name":"Wioska 0029","PlayerID":1804724,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10346","ServerKey":"pl181","X":402,"Y":520},{"Bonus":0,"Continent":"K55","ID":10347,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10347","ServerKey":"pl181","X":580,"Y":564},{"Bonus":0,"Continent":"K43","ID":10348,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":7397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10348","ServerKey":"pl181","X":396,"Y":496},{"Bonus":0,"Continent":"K45","ID":10349,"Name":"032","PlayerID":699722599,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10349","ServerKey":"pl181","X":588,"Y":453},{"Bonus":0,"Continent":"K55","ID":10350,"Name":"- 070 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10350","ServerKey":"pl181","X":534,"Y":598},{"Bonus":0,"Continent":"K44","ID":10351,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":3069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10351","ServerKey":"pl181","X":450,"Y":413},{"Bonus":0,"Continent":"K45","ID":10353,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":8402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10353","ServerKey":"pl181","X":579,"Y":432},{"Bonus":0,"Continent":"K54","ID":10354,"Name":"NOT?","PlayerID":9236866,"Points":6135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10354","ServerKey":"pl181","X":434,"Y":540},{"Bonus":0,"Continent":"K44","ID":10355,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10355","ServerKey":"pl181","X":407,"Y":464},{"Bonus":0,"Continent":"K55","ID":10356,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10356","ServerKey":"pl181","X":582,"Y":559},{"Bonus":0,"Continent":"K45","ID":10357,"Name":"015","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10357","ServerKey":"pl181","X":551,"Y":410},{"Bonus":0,"Continent":"K44","ID":10358,"Name":"00501 Essa","PlayerID":3909522,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10358","ServerKey":"pl181","X":433,"Y":422},{"Bonus":0,"Continent":"K64","ID":10359,"Name":"Sparta_19","PlayerID":2585846,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10359","ServerKey":"pl181","X":494,"Y":603},{"Bonus":0,"Continent":"K45","ID":10360,"Name":"051","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10360","ServerKey":"pl181","X":587,"Y":414},{"Bonus":0,"Continent":"K44","ID":10361,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10361","ServerKey":"pl181","X":487,"Y":400},{"Bonus":0,"Continent":"K64","ID":10362,"Name":"EKG .::. KOM 005 Orkowi Ɓ + R","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10362","ServerKey":"pl181","X":482,"Y":601},{"Bonus":0,"Continent":"K55","ID":10363,"Name":"008 Isengard","PlayerID":8013349,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10363","ServerKey":"pl181","X":598,"Y":531},{"Bonus":0,"Continent":"K55","ID":10364,"Name":"004. Ivar Bez Koƛci","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10364","ServerKey":"pl181","X":588,"Y":568},{"Bonus":0,"Continent":"K65","ID":10365,"Name":"0219","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10365","ServerKey":"pl181","X":520,"Y":602},{"Bonus":0,"Continent":"K56","ID":10366,"Name":"*029*","PlayerID":698670524,"Points":5564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10366","ServerKey":"pl181","X":601,"Y":513},{"Bonus":0,"Continent":"K44","ID":10367,"Name":"008. Cent","PlayerID":699660539,"Points":10350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10367","ServerKey":"pl181","X":431,"Y":425},{"Bonus":0,"Continent":"K44","ID":10368,"Name":"Suppi","PlayerID":699856962,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10368","ServerKey":"pl181","X":431,"Y":451},{"Bonus":0,"Continent":"K64","ID":10369,"Name":"0014","PlayerID":33900,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10369","ServerKey":"pl181","X":472,"Y":600},{"Bonus":0,"Continent":"K45","ID":10370,"Name":"027","PlayerID":699722599,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10370","ServerKey":"pl181","X":591,"Y":452},{"Bonus":0,"Continent":"K55","ID":10371,"Name":"009 Osgiliath","PlayerID":8013349,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10371","ServerKey":"pl181","X":598,"Y":534},{"Bonus":0,"Continent":"K46","ID":10372,"Name":"022 Indiana","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10372","ServerKey":"pl181","X":603,"Y":490},{"Bonus":0,"Continent":"K45","ID":10373,"Name":"Szlachcic","PlayerID":698867446,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10373","ServerKey":"pl181","X":589,"Y":456},{"Bonus":0,"Continent":"K55","ID":10375,"Name":"- 090 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10375","ServerKey":"pl181","X":538,"Y":582},{"Bonus":0,"Continent":"K56","ID":10376,"Name":"0027","PlayerID":699429153,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10376","ServerKey":"pl181","X":603,"Y":505},{"Bonus":0,"Continent":"K55","ID":10377,"Name":"z 033","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10377","ServerKey":"pl181","X":553,"Y":587},{"Bonus":0,"Continent":"K54","ID":10378,"Name":"Wioska Rafraf","PlayerID":1804724,"Points":8766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10378","ServerKey":"pl181","X":402,"Y":519},{"Bonus":0,"Continent":"K55","ID":10379,"Name":"Essa 007","PlayerID":848987051,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10379","ServerKey":"pl181","X":569,"Y":576},{"Bonus":0,"Continent":"K55","ID":10380,"Name":"#023","PlayerID":849001572,"Points":5665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10380","ServerKey":"pl181","X":539,"Y":595},{"Bonus":0,"Continent":"K54","ID":10381,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10381","ServerKey":"pl181","X":408,"Y":546},{"Bonus":7,"Continent":"K45","ID":10383,"Name":"042","PlayerID":849063849,"Points":7837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10383","ServerKey":"pl181","X":571,"Y":424},{"Bonus":0,"Continent":"K55","ID":10384,"Name":"015. Erlendur","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10384","ServerKey":"pl181","X":585,"Y":564},{"Bonus":0,"Continent":"K34","ID":10385,"Name":"South Blue","PlayerID":699433558,"Points":10521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10385","ServerKey":"pl181","X":485,"Y":399},{"Bonus":0,"Continent":"K45","ID":10387,"Name":"022","PlayerID":849063849,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10387","ServerKey":"pl181","X":572,"Y":426},{"Bonus":9,"Continent":"K45","ID":10388,"Name":"052","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10388","ServerKey":"pl181","X":552,"Y":412},{"Bonus":0,"Continent":"K55","ID":10389,"Name":"Jaaa","PlayerID":698635863,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10389","ServerKey":"pl181","X":586,"Y":557},{"Bonus":0,"Continent":"K54","ID":10390,"Name":"Quska","PlayerID":699443920,"Points":6476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10390","ServerKey":"pl181","X":418,"Y":558},{"Bonus":0,"Continent":"K55","ID":10391,"Name":"- 121 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10391","ServerKey":"pl181","X":546,"Y":589},{"Bonus":0,"Continent":"K55","ID":10392,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10392","ServerKey":"pl181","X":566,"Y":576},{"Bonus":0,"Continent":"K54","ID":10393,"Name":"PƂezent?","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10393","ServerKey":"pl181","X":491,"Y":510},{"Bonus":0,"Continent":"K55","ID":10394,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10394","ServerKey":"pl181","X":572,"Y":569},{"Bonus":0,"Continent":"K45","ID":10395,"Name":"030","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10395","ServerKey":"pl181","X":592,"Y":451},{"Bonus":3,"Continent":"K56","ID":10396,"Name":"029 Dauth","PlayerID":8337151,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10396","ServerKey":"pl181","X":600,"Y":507},{"Bonus":0,"Continent":"K53","ID":10397,"Name":"xx 017. Mƛciciel","PlayerID":698290577,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10397","ServerKey":"pl181","X":397,"Y":507},{"Bonus":0,"Continent":"K64","ID":10398,"Name":"004.","PlayerID":7976264,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10398","ServerKey":"pl181","X":493,"Y":603},{"Bonus":0,"Continent":"K54","ID":10399,"Name":"Piomat","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10399","ServerKey":"pl181","X":416,"Y":560},{"Bonus":0,"Continent":"K45","ID":10400,"Name":"005 Barka","PlayerID":698829590,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10400","ServerKey":"pl181","X":592,"Y":455},{"Bonus":0,"Continent":"K55","ID":10402,"Name":"Wioska insidecomer","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10402","ServerKey":"pl181","X":559,"Y":581},{"Bonus":0,"Continent":"K54","ID":10403,"Name":"Wioska 0025","PlayerID":1804724,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10403","ServerKey":"pl181","X":402,"Y":523},{"Bonus":0,"Continent":"K55","ID":10404,"Name":"!kuba","PlayerID":8779575,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10404","ServerKey":"pl181","X":518,"Y":598},{"Bonus":0,"Continent":"K45","ID":10405,"Name":"017","PlayerID":699722599,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10405","ServerKey":"pl181","X":590,"Y":451},{"Bonus":0,"Continent":"K54","ID":10406,"Name":"KIELBA 038","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10406","ServerKey":"pl181","X":441,"Y":580},{"Bonus":0,"Continent":"K44","ID":10407,"Name":"HoƂopole","PlayerID":699433558,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10407","ServerKey":"pl181","X":481,"Y":401},{"Bonus":0,"Continent":"K56","ID":10408,"Name":"085","PlayerID":699573053,"Points":10349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10408","ServerKey":"pl181","X":611,"Y":505},{"Bonus":0,"Continent":"K54","ID":10409,"Name":"Wioska 0017","PlayerID":1804724,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10409","ServerKey":"pl181","X":402,"Y":522},{"Bonus":0,"Continent":"K44","ID":10410,"Name":"SoƂtys Wsi charlie4","PlayerID":849027025,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10410","ServerKey":"pl181","X":439,"Y":418},{"Bonus":0,"Continent":"K65","ID":10411,"Name":"008","PlayerID":7976264,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10411","ServerKey":"pl181","X":505,"Y":601},{"Bonus":0,"Continent":"K64","ID":10412,"Name":"012","PlayerID":7976264,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10412","ServerKey":"pl181","X":469,"Y":600},{"Bonus":0,"Continent":"K44","ID":10413,"Name":"A#022#","PlayerID":698807570,"Points":11956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10413","ServerKey":"pl181","X":403,"Y":475},{"Bonus":0,"Continent":"K35","ID":10414,"Name":"041","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10414","ServerKey":"pl181","X":553,"Y":393},{"Bonus":0,"Continent":"K44","ID":10415,"Name":"A#028#","PlayerID":698807570,"Points":11950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10415","ServerKey":"pl181","X":403,"Y":470},{"Bonus":0,"Continent":"K45","ID":10416,"Name":"008 - Las Palmas","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10416","ServerKey":"pl181","X":599,"Y":483},{"Bonus":0,"Continent":"K54","ID":10417,"Name":"Village","PlayerID":849094067,"Points":8869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10417","ServerKey":"pl181","X":474,"Y":591},{"Bonus":0,"Continent":"K55","ID":10418,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10418","ServerKey":"pl181","X":573,"Y":572},{"Bonus":0,"Continent":"K54","ID":10420,"Name":"barba","PlayerID":7976264,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10420","ServerKey":"pl181","X":468,"Y":599},{"Bonus":0,"Continent":"K45","ID":10421,"Name":"014 TaƄczący z myszami","PlayerID":698829590,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10421","ServerKey":"pl181","X":596,"Y":463},{"Bonus":0,"Continent":"K64","ID":10422,"Name":"Sparta_21","PlayerID":2585846,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10422","ServerKey":"pl181","X":498,"Y":604},{"Bonus":0,"Continent":"K44","ID":10423,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10423","ServerKey":"pl181","X":434,"Y":419},{"Bonus":0,"Continent":"K56","ID":10424,"Name":"Wioska karrrol923","PlayerID":699851345,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10424","ServerKey":"pl181","X":600,"Y":516},{"Bonus":0,"Continent":"K56","ID":10425,"Name":"013.","PlayerID":8900955,"Points":6742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10425","ServerKey":"pl181","X":601,"Y":510},{"Bonus":0,"Continent":"K45","ID":10426,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":9376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10426","ServerKey":"pl181","X":594,"Y":465},{"Bonus":0,"Continent":"K54","ID":10427,"Name":"0642","PlayerID":698659980,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10427","ServerKey":"pl181","X":443,"Y":588},{"Bonus":0,"Continent":"K45","ID":10428,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10428","ServerKey":"pl181","X":522,"Y":402},{"Bonus":0,"Continent":"K54","ID":10429,"Name":"0000016#","PlayerID":849089881,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10429","ServerKey":"pl181","X":424,"Y":570},{"Bonus":0,"Continent":"K55","ID":10430,"Name":"Tylko grzeczni chƂopcy","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10430","ServerKey":"pl181","X":515,"Y":508},{"Bonus":0,"Continent":"K44","ID":10431,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10431","ServerKey":"pl181","X":453,"Y":408},{"Bonus":0,"Continent":"K45","ID":10432,"Name":"105","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10432","ServerKey":"pl181","X":544,"Y":407},{"Bonus":0,"Continent":"K54","ID":10433,"Name":"D0003","PlayerID":8841266,"Points":9900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10433","ServerKey":"pl181","X":438,"Y":568},{"Bonus":0,"Continent":"K43","ID":10434,"Name":"x 013. Rio Lobo","PlayerID":698290577,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10434","ServerKey":"pl181","X":398,"Y":497},{"Bonus":0,"Continent":"K44","ID":10435,"Name":"0037 grosik","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10435","ServerKey":"pl181","X":437,"Y":417},{"Bonus":0,"Continent":"K56","ID":10436,"Name":"021.","PlayerID":8900955,"Points":8919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10436","ServerKey":"pl181","X":601,"Y":516},{"Bonus":0,"Continent":"K55","ID":10437,"Name":"Wioska dysio923","PlayerID":699851345,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10437","ServerKey":"pl181","X":595,"Y":512},{"Bonus":0,"Continent":"K44","ID":10438,"Name":"Monetki","PlayerID":699098531,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10438","ServerKey":"pl181","X":474,"Y":404},{"Bonus":0,"Continent":"K65","ID":10439,"Name":"0079","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10439","ServerKey":"pl181","X":550,"Y":618},{"Bonus":0,"Continent":"K45","ID":10440,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10440","ServerKey":"pl181","X":578,"Y":432},{"Bonus":0,"Continent":"K55","ID":10441,"Name":"[0492]","PlayerID":848985692,"Points":9125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10441","ServerKey":"pl181","X":593,"Y":545},{"Bonus":0,"Continent":"K55","ID":10442,"Name":"- 078 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10442","ServerKey":"pl181","X":537,"Y":596},{"Bonus":0,"Continent":"K44","ID":10443,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10443","ServerKey":"pl181","X":413,"Y":449},{"Bonus":0,"Continent":"K55","ID":10444,"Name":"z 039","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10444","ServerKey":"pl181","X":556,"Y":584},{"Bonus":0,"Continent":"K45","ID":10445,"Name":"022","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10445","ServerKey":"pl181","X":588,"Y":452},{"Bonus":0,"Continent":"K64","ID":10446,"Name":"EKG .::. KOM 003 Jajca","PlayerID":33900,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10446","ServerKey":"pl181","X":482,"Y":600},{"Bonus":0,"Continent":"K64","ID":10447,"Name":"#069","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10447","ServerKey":"pl181","X":487,"Y":603},{"Bonus":0,"Continent":"K45","ID":10448,"Name":"041","PlayerID":849063849,"Points":10279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10448","ServerKey":"pl181","X":570,"Y":424},{"Bonus":0,"Continent":"K55","ID":10449,"Name":".1.Waszyngton","PlayerID":698215322,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10449","ServerKey":"pl181","X":546,"Y":594},{"Bonus":0,"Continent":"K45","ID":10450,"Name":"A10","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10450","ServerKey":"pl181","X":599,"Y":466},{"Bonus":0,"Continent":"K56","ID":10451,"Name":"035 Lithgow","PlayerID":8337151,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10451","ServerKey":"pl181","X":605,"Y":501},{"Bonus":0,"Continent":"K64","ID":10452,"Name":"EKG .::. KOM 001 LiĆŒÄ… Ɓ","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10452","ServerKey":"pl181","X":482,"Y":602},{"Bonus":0,"Continent":"K44","ID":10453,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10453","ServerKey":"pl181","X":401,"Y":477},{"Bonus":0,"Continent":"K65","ID":10454,"Name":"0003","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10454","ServerKey":"pl181","X":546,"Y":603},{"Bonus":0,"Continent":"K55","ID":10455,"Name":"- 075 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10455","ServerKey":"pl181","X":539,"Y":594},{"Bonus":0,"Continent":"K35","ID":10456,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10456","ServerKey":"pl181","X":541,"Y":395},{"Bonus":0,"Continent":"K55","ID":10457,"Name":"Wioska6,,","PlayerID":8369778,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10457","ServerKey":"pl181","X":517,"Y":599},{"Bonus":0,"Continent":"K44","ID":10458,"Name":"Gravity","PlayerID":698962117,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10458","ServerKey":"pl181","X":417,"Y":459},{"Bonus":0,"Continent":"K45","ID":10460,"Name":"047","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10460","ServerKey":"pl181","X":548,"Y":410},{"Bonus":0,"Continent":"K54","ID":10461,"Name":"Teby_39","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10461","ServerKey":"pl181","X":483,"Y":598},{"Bonus":0,"Continent":"K44","ID":10462,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10462","ServerKey":"pl181","X":402,"Y":465},{"Bonus":0,"Continent":"K44","ID":10463,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10463","ServerKey":"pl181","X":424,"Y":432},{"Bonus":0,"Continent":"K56","ID":10464,"Name":"Tesa","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10464","ServerKey":"pl181","X":600,"Y":520},{"Bonus":0,"Continent":"K45","ID":10465,"Name":"025","PlayerID":849063849,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10465","ServerKey":"pl181","X":568,"Y":421},{"Bonus":0,"Continent":"K44","ID":10466,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10466","ServerKey":"pl181","X":472,"Y":402},{"Bonus":0,"Continent":"K45","ID":10467,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":8607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10467","ServerKey":"pl181","X":576,"Y":434},{"Bonus":5,"Continent":"K55","ID":10468,"Name":"PYZA 001 Bubel","PlayerID":33900,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10468","ServerKey":"pl181","X":576,"Y":571},{"Bonus":0,"Continent":"K54","ID":10469,"Name":"049o","PlayerID":699099811,"Points":10725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10469","ServerKey":"pl181","X":442,"Y":584},{"Bonus":0,"Continent":"K65","ID":10470,"Name":"Sector 3","PlayerID":8199417,"Points":10041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10470","ServerKey":"pl181","X":515,"Y":604},{"Bonus":0,"Continent":"K44","ID":10471,"Name":"Suppi","PlayerID":699856962,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10471","ServerKey":"pl181","X":425,"Y":443},{"Bonus":0,"Continent":"K53","ID":10472,"Name":"x 014. 15:10 do Yumy","PlayerID":698290577,"Points":9158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10472","ServerKey":"pl181","X":398,"Y":500},{"Bonus":0,"Continent":"K44","ID":10473,"Name":"[A]_[030] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10473","ServerKey":"pl181","X":402,"Y":482},{"Bonus":0,"Continent":"K65","ID":10474,"Name":"#0102","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10474","ServerKey":"pl181","X":513,"Y":602},{"Bonus":0,"Continent":"K44","ID":10476,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10476","ServerKey":"pl181","X":407,"Y":462},{"Bonus":0,"Continent":"K45","ID":10477,"Name":"BBB","PlayerID":1006847,"Points":7039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10477","ServerKey":"pl181","X":583,"Y":438},{"Bonus":0,"Continent":"K45","ID":10479,"Name":"021","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10479","ServerKey":"pl181","X":595,"Y":459},{"Bonus":0,"Continent":"K55","ID":10480,"Name":"Jaaa","PlayerID":698635863,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10480","ServerKey":"pl181","X":567,"Y":579},{"Bonus":0,"Continent":"K65","ID":10481,"Name":"Skyview Hall","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10481","ServerKey":"pl181","X":527,"Y":601},{"Bonus":0,"Continent":"K65","ID":10482,"Name":"#0103","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10482","ServerKey":"pl181","X":512,"Y":603},{"Bonus":0,"Continent":"K45","ID":10483,"Name":"129","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10483","ServerKey":"pl181","X":550,"Y":411},{"Bonus":0,"Continent":"K44","ID":10484,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":11119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10484","ServerKey":"pl181","X":406,"Y":462},{"Bonus":0,"Continent":"K44","ID":10485,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":7117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10485","ServerKey":"pl181","X":402,"Y":466},{"Bonus":0,"Continent":"K44","ID":10486,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10486","ServerKey":"pl181","X":442,"Y":416},{"Bonus":0,"Continent":"K55","ID":10487,"Name":"- 062 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10487","ServerKey":"pl181","X":538,"Y":597},{"Bonus":0,"Continent":"K45","ID":10488,"Name":"-[001]- Mount Everest","PlayerID":849092827,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10488","ServerKey":"pl181","X":554,"Y":482},{"Bonus":0,"Continent":"K54","ID":10489,"Name":"010. Yang","PlayerID":699856962,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10489","ServerKey":"pl181","X":408,"Y":543},{"Bonus":0,"Continent":"K44","ID":10490,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10490","ServerKey":"pl181","X":475,"Y":401},{"Bonus":0,"Continent":"K34","ID":10491,"Name":"054","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10491","ServerKey":"pl181","X":488,"Y":398},{"Bonus":0,"Continent":"K45","ID":10492,"Name":"ADEN","PlayerID":698588535,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10492","ServerKey":"pl181","X":573,"Y":425},{"Bonus":0,"Continent":"K54","ID":10493,"Name":"A.006","PlayerID":849088243,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10493","ServerKey":"pl181","X":408,"Y":584},{"Bonus":0,"Continent":"K64","ID":10494,"Name":"Sparta_17","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10494","ServerKey":"pl181","X":494,"Y":601},{"Bonus":0,"Continent":"K44","ID":10495,"Name":"Okradzionow","PlayerID":699660539,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10495","ServerKey":"pl181","X":432,"Y":423},{"Bonus":0,"Continent":"K55","ID":10496,"Name":"#051","PlayerID":849001572,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10496","ServerKey":"pl181","X":523,"Y":590},{"Bonus":0,"Continent":"K65","ID":10497,"Name":"#0101","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10497","ServerKey":"pl181","X":512,"Y":602},{"Bonus":0,"Continent":"K54","ID":10499,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10499","ServerKey":"pl181","X":408,"Y":550},{"Bonus":0,"Continent":"K44","ID":10500,"Name":"-033-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10500","ServerKey":"pl181","X":452,"Y":408},{"Bonus":0,"Continent":"K56","ID":10501,"Name":"0035","PlayerID":6510480,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10501","ServerKey":"pl181","X":616,"Y":514},{"Bonus":0,"Continent":"K46","ID":10502,"Name":"070","PlayerID":699573053,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10502","ServerKey":"pl181","X":600,"Y":473},{"Bonus":0,"Continent":"K64","ID":10503,"Name":"~001.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10503","ServerKey":"pl181","X":498,"Y":606},{"Bonus":0,"Continent":"K44","ID":10504,"Name":"Szlachcic","PlayerID":698388578,"Points":8781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10504","ServerKey":"pl181","X":465,"Y":406},{"Bonus":0,"Continent":"K45","ID":10505,"Name":"028 Raz dwa trzy","PlayerID":698829590,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10505","ServerKey":"pl181","X":594,"Y":454},{"Bonus":5,"Continent":"K44","ID":10506,"Name":"Suppi","PlayerID":699856962,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10506","ServerKey":"pl181","X":428,"Y":425},{"Bonus":0,"Continent":"K55","ID":10507,"Name":"z 030","PlayerID":699342219,"Points":10708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10507","ServerKey":"pl181","X":554,"Y":587},{"Bonus":0,"Continent":"K44","ID":10508,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10508","ServerKey":"pl181","X":458,"Y":406},{"Bonus":0,"Continent":"K54","ID":10509,"Name":"030. AƂa","PlayerID":699856962,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10509","ServerKey":"pl181","X":408,"Y":544},{"Bonus":0,"Continent":"K56","ID":10510,"Name":"023.","PlayerID":8900955,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10510","ServerKey":"pl181","X":602,"Y":522},{"Bonus":0,"Continent":"K55","ID":10511,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10511","ServerKey":"pl181","X":598,"Y":536},{"Bonus":0,"Continent":"K45","ID":10512,"Name":"022 a to peszek","PlayerID":8459255,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10512","ServerKey":"pl181","X":596,"Y":465},{"Bonus":0,"Continent":"K34","ID":10513,"Name":"004","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10513","ServerKey":"pl181","X":498,"Y":382},{"Bonus":0,"Continent":"K44","ID":10514,"Name":"Gravity","PlayerID":698962117,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10514","ServerKey":"pl181","X":407,"Y":455},{"Bonus":8,"Continent":"K55","ID":10515,"Name":"Jaaa","PlayerID":698635863,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10515","ServerKey":"pl181","X":587,"Y":557},{"Bonus":0,"Continent":"K64","ID":10516,"Name":"086 MEHEHE","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10516","ServerKey":"pl181","X":495,"Y":600},{"Bonus":0,"Continent":"K44","ID":10517,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10517","ServerKey":"pl181","X":401,"Y":482},{"Bonus":0,"Continent":"K54","ID":10518,"Name":"Wioska ferrekin","PlayerID":3969110,"Points":3153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10518","ServerKey":"pl181","X":447,"Y":590},{"Bonus":0,"Continent":"K55","ID":10519,"Name":"005","PlayerID":6160655,"Points":10296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10519","ServerKey":"pl181","X":596,"Y":542},{"Bonus":3,"Continent":"K54","ID":10520,"Name":"B 002.","PlayerID":849028088,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10520","ServerKey":"pl181","X":458,"Y":594},{"Bonus":0,"Continent":"K55","ID":10521,"Name":"z 037","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10521","ServerKey":"pl181","X":557,"Y":587},{"Bonus":0,"Continent":"K64","ID":10522,"Name":"Sparta_22","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10522","ServerKey":"pl181","X":499,"Y":604},{"Bonus":0,"Continent":"K44","ID":10523,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10523","ServerKey":"pl181","X":452,"Y":412},{"Bonus":0,"Continent":"K44","ID":10524,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10524","ServerKey":"pl181","X":469,"Y":404},{"Bonus":0,"Continent":"K44","ID":10525,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10525","ServerKey":"pl181","X":417,"Y":438},{"Bonus":0,"Continent":"K54","ID":10526,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10526","ServerKey":"pl181","X":481,"Y":599},{"Bonus":0,"Continent":"K55","ID":10527,"Name":"002","PlayerID":699316421,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10527","ServerKey":"pl181","X":570,"Y":575},{"Bonus":0,"Continent":"K45","ID":10528,"Name":"017","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10528","ServerKey":"pl181","X":551,"Y":409},{"Bonus":1,"Continent":"K45","ID":10529,"Name":"020","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10529","ServerKey":"pl181","X":548,"Y":411},{"Bonus":0,"Continent":"K55","ID":10530,"Name":"1.Cleveland","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10530","ServerKey":"pl181","X":541,"Y":595},{"Bonus":0,"Continent":"K54","ID":10531,"Name":"017","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10531","ServerKey":"pl181","X":403,"Y":539},{"Bonus":0,"Continent":"K44","ID":10532,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10532","ServerKey":"pl181","X":406,"Y":461},{"Bonus":0,"Continent":"K45","ID":10533,"Name":"West 01","PlayerID":698702991,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10533","ServerKey":"pl181","X":597,"Y":476},{"Bonus":0,"Continent":"K55","ID":10534,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10534","ServerKey":"pl181","X":568,"Y":577},{"Bonus":0,"Continent":"K55","ID":10535,"Name":"0.Lincoln","PlayerID":698215322,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10535","ServerKey":"pl181","X":528,"Y":596},{"Bonus":0,"Continent":"K43","ID":10536,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10536","ServerKey":"pl181","X":385,"Y":456},{"Bonus":0,"Continent":"K45","ID":10537,"Name":"034","PlayerID":699761749,"Points":9269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10537","ServerKey":"pl181","X":564,"Y":420},{"Bonus":0,"Continent":"K45","ID":10538,"Name":"Gattacka","PlayerID":699298370,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10538","ServerKey":"pl181","X":596,"Y":489},{"Bonus":0,"Continent":"K43","ID":10539,"Name":"[A]_[015] Dejv.oldplyr","PlayerID":699380607,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10539","ServerKey":"pl181","X":396,"Y":490},{"Bonus":0,"Continent":"K55","ID":10540,"Name":"017.","PlayerID":8900955,"Points":5220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10540","ServerKey":"pl181","X":597,"Y":542},{"Bonus":0,"Continent":"K65","ID":10541,"Name":"009","PlayerID":7976264,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10541","ServerKey":"pl181","X":507,"Y":602},{"Bonus":0,"Continent":"K54","ID":10542,"Name":"KIELBA 053","PlayerID":699342219,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10542","ServerKey":"pl181","X":457,"Y":591},{"Bonus":0,"Continent":"K44","ID":10543,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10543","ServerKey":"pl181","X":401,"Y":466},{"Bonus":0,"Continent":"K55","ID":10544,"Name":"0048","PlayerID":698416970,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10544","ServerKey":"pl181","X":596,"Y":537},{"Bonus":0,"Continent":"K45","ID":10545,"Name":"007 997 ten numer to kƂopoty","PlayerID":698829590,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10545","ServerKey":"pl181","X":590,"Y":455},{"Bonus":0,"Continent":"K45","ID":10546,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10546","ServerKey":"pl181","X":525,"Y":403},{"Bonus":0,"Continent":"K56","ID":10547,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10547","ServerKey":"pl181","X":601,"Y":527},{"Bonus":0,"Continent":"K55","ID":10548,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10548","ServerKey":"pl181","X":574,"Y":573},{"Bonus":0,"Continent":"K54","ID":10549,"Name":"014","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10549","ServerKey":"pl181","X":407,"Y":539},{"Bonus":0,"Continent":"K54","ID":10550,"Name":"NOT?","PlayerID":9236866,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10550","ServerKey":"pl181","X":406,"Y":543},{"Bonus":0,"Continent":"K44","ID":10551,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10551","ServerKey":"pl181","X":400,"Y":472},{"Bonus":0,"Continent":"K56","ID":10552,"Name":"007 Zadupie","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10552","ServerKey":"pl181","X":601,"Y":520},{"Bonus":0,"Continent":"K53","ID":10553,"Name":"kulik 002","PlayerID":698290577,"Points":8435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10553","ServerKey":"pl181","X":399,"Y":512},{"Bonus":0,"Continent":"K53","ID":10554,"Name":"Wioska 0022","PlayerID":1804724,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10554","ServerKey":"pl181","X":398,"Y":514},{"Bonus":0,"Continent":"K45","ID":10555,"Name":"060","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10555","ServerKey":"pl181","X":546,"Y":408},{"Bonus":0,"Continent":"K46","ID":10556,"Name":"Jaaa","PlayerID":698635863,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10556","ServerKey":"pl181","X":605,"Y":432},{"Bonus":0,"Continent":"K44","ID":10557,"Name":"A036","PlayerID":8740199,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10557","ServerKey":"pl181","X":466,"Y":405},{"Bonus":0,"Continent":"K44","ID":10559,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10559","ServerKey":"pl181","X":419,"Y":434},{"Bonus":0,"Continent":"K35","ID":10560,"Name":".:093:. Chillout","PlayerID":848934935,"Points":8314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10560","ServerKey":"pl181","X":506,"Y":394},{"Bonus":0,"Continent":"K44","ID":10561,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10561","ServerKey":"pl181","X":417,"Y":437},{"Bonus":0,"Continent":"K54","ID":10562,"Name":"Peverlo","PlayerID":699443920,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10562","ServerKey":"pl181","X":415,"Y":562},{"Bonus":0,"Continent":"K55","ID":10563,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10563","ServerKey":"pl181","X":563,"Y":584},{"Bonus":0,"Continent":"K65","ID":10564,"Name":"00091","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10564","ServerKey":"pl181","X":523,"Y":600},{"Bonus":0,"Continent":"K54","ID":10565,"Name":"018","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10565","ServerKey":"pl181","X":404,"Y":539},{"Bonus":0,"Continent":"K55","ID":10566,"Name":"Jaaa","PlayerID":698635863,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10566","ServerKey":"pl181","X":564,"Y":581},{"Bonus":0,"Continent":"K45","ID":10567,"Name":"036","PlayerID":8459255,"Points":10671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10567","ServerKey":"pl181","X":596,"Y":469},{"Bonus":0,"Continent":"K44","ID":10568,"Name":"Gravity","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10568","ServerKey":"pl181","X":406,"Y":455},{"Bonus":0,"Continent":"K45","ID":10569,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10569","ServerKey":"pl181","X":528,"Y":400},{"Bonus":0,"Continent":"K56","ID":10570,"Name":"026","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10570","ServerKey":"pl181","X":601,"Y":507},{"Bonus":0,"Continent":"K53","ID":10571,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10571","ServerKey":"pl181","X":384,"Y":550},{"Bonus":0,"Continent":"K54","ID":10572,"Name":"001. Marzyciel Shrek","PlayerID":698290577,"Points":5764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10572","ServerKey":"pl181","X":481,"Y":503},{"Bonus":0,"Continent":"K54","ID":10573,"Name":"Winter is coming","PlayerID":699364813,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10573","ServerKey":"pl181","X":463,"Y":597},{"Bonus":0,"Continent":"K65","ID":10574,"Name":"Mako Reactor 1 - Connecting Pass","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10574","ServerKey":"pl181","X":520,"Y":621},{"Bonus":0,"Continent":"K45","ID":10575,"Name":"051 BuƂeczka v6","PlayerID":699491076,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10575","ServerKey":"pl181","X":537,"Y":404},{"Bonus":0,"Continent":"K53","ID":10576,"Name":"143 Wioska barbarzyƄska","PlayerID":699382126,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10576","ServerKey":"pl181","X":392,"Y":555},{"Bonus":0,"Continent":"K44","ID":10577,"Name":"007 Salt Like City","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10577","ServerKey":"pl181","X":425,"Y":432},{"Bonus":0,"Continent":"K44","ID":10578,"Name":"Suppi","PlayerID":699856962,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10578","ServerKey":"pl181","X":426,"Y":426},{"Bonus":0,"Continent":"K46","ID":10579,"Name":"Jehu_Kingdom_31_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10579","ServerKey":"pl181","X":600,"Y":468},{"Bonus":0,"Continent":"K53","ID":10580,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10580","ServerKey":"pl181","X":398,"Y":517},{"Bonus":0,"Continent":"K44","ID":10581,"Name":"HoƂopole","PlayerID":699433558,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10581","ServerKey":"pl181","X":485,"Y":400},{"Bonus":0,"Continent":"K44","ID":10582,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10582","ServerKey":"pl181","X":420,"Y":434},{"Bonus":0,"Continent":"K54","ID":10583,"Name":"047o","PlayerID":699099811,"Points":11558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10583","ServerKey":"pl181","X":446,"Y":586},{"Bonus":2,"Continent":"K54","ID":10584,"Name":"(015)","PlayerID":699846892,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10584","ServerKey":"pl181","X":404,"Y":532},{"Bonus":0,"Continent":"K55","ID":10585,"Name":"mammm","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10585","ServerKey":"pl181","X":562,"Y":580},{"Bonus":0,"Continent":"K54","ID":10586,"Name":"Wioska M.02","PlayerID":1804724,"Points":8918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10586","ServerKey":"pl181","X":400,"Y":516},{"Bonus":0,"Continent":"K56","ID":10587,"Name":"023 Barba","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10587","ServerKey":"pl181","X":603,"Y":514},{"Bonus":0,"Continent":"K44","ID":10588,"Name":"Gravity","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10588","ServerKey":"pl181","X":407,"Y":452},{"Bonus":8,"Continent":"K55","ID":10589,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10589","ServerKey":"pl181","X":585,"Y":554},{"Bonus":0,"Continent":"K34","ID":10590,"Name":"A037","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10590","ServerKey":"pl181","X":478,"Y":398},{"Bonus":0,"Continent":"K45","ID":10591,"Name":"South K45","PlayerID":699146580,"Points":6026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10591","ServerKey":"pl181","X":571,"Y":425},{"Bonus":0,"Continent":"K45","ID":10592,"Name":"024","PlayerID":849088515,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10592","ServerKey":"pl181","X":594,"Y":462},{"Bonus":0,"Continent":"K45","ID":10593,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10593","ServerKey":"pl181","X":517,"Y":404},{"Bonus":0,"Continent":"K35","ID":10594,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10594","ServerKey":"pl181","X":520,"Y":397},{"Bonus":0,"Continent":"K65","ID":10595,"Name":"#035","PlayerID":849001572,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10595","ServerKey":"pl181","X":532,"Y":600},{"Bonus":0,"Continent":"K44","ID":10596,"Name":"Gravity","PlayerID":698962117,"Points":9504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10596","ServerKey":"pl181","X":408,"Y":452},{"Bonus":0,"Continent":"K65","ID":10597,"Name":"~041.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10597","ServerKey":"pl181","X":504,"Y":604},{"Bonus":0,"Continent":"K55","ID":10598,"Name":"1.Springfield","PlayerID":698215322,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10598","ServerKey":"pl181","X":540,"Y":593},{"Bonus":0,"Continent":"K44","ID":10599,"Name":"-034-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10599","ServerKey":"pl181","X":452,"Y":407},{"Bonus":0,"Continent":"K43","ID":10600,"Name":"s181eo03","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10600","ServerKey":"pl181","X":398,"Y":452},{"Bonus":0,"Continent":"K56","ID":10601,"Name":"018.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10601","ServerKey":"pl181","X":600,"Y":534},{"Bonus":0,"Continent":"K65","ID":10602,"Name":"Z02","PlayerID":2293376,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10602","ServerKey":"pl181","X":513,"Y":603},{"Bonus":0,"Continent":"K54","ID":10603,"Name":"Teatr","PlayerID":7249451,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10603","ServerKey":"pl181","X":427,"Y":571},{"Bonus":0,"Continent":"K45","ID":10604,"Name":"011","PlayerID":849063849,"Points":8926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10604","ServerKey":"pl181","X":569,"Y":421},{"Bonus":0,"Continent":"K43","ID":10605,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10605","ServerKey":"pl181","X":398,"Y":486},{"Bonus":0,"Continent":"K45","ID":10606,"Name":"007","PlayerID":8459255,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10606","ServerKey":"pl181","X":599,"Y":465},{"Bonus":0,"Continent":"K34","ID":10607,"Name":"HoƂopole","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10607","ServerKey":"pl181","X":491,"Y":396},{"Bonus":0,"Continent":"K65","ID":10608,"Name":"#011","PlayerID":849001572,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10608","ServerKey":"pl181","X":525,"Y":601},{"Bonus":0,"Continent":"K55","ID":10609,"Name":"002 Tutaj Szlachta Pracuje !!!","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10609","ServerKey":"pl181","X":577,"Y":571},{"Bonus":0,"Continent":"K35","ID":10610,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10610","ServerKey":"pl181","X":519,"Y":399},{"Bonus":0,"Continent":"K46","ID":10611,"Name":"Jehu_Kingdom_03_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10611","ServerKey":"pl181","X":600,"Y":475},{"Bonus":0,"Continent":"K55","ID":10612,"Name":"1.Little Rock","PlayerID":698215322,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10612","ServerKey":"pl181","X":531,"Y":597},{"Bonus":0,"Continent":"K54","ID":10613,"Name":"028. Oj Nie Ɓadnie","PlayerID":699856962,"Points":9611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10613","ServerKey":"pl181","X":406,"Y":545},{"Bonus":0,"Continent":"K54","ID":10614,"Name":"Majin Buu 007","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10614","ServerKey":"pl181","X":433,"Y":575},{"Bonus":0,"Continent":"K65","ID":10615,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10615","ServerKey":"pl181","X":518,"Y":621},{"Bonus":9,"Continent":"K44","ID":10616,"Name":"NOT","PlayerID":9236866,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10616","ServerKey":"pl181","X":420,"Y":439},{"Bonus":0,"Continent":"K55","ID":10617,"Name":"1.Manhattan","PlayerID":698215322,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10617","ServerKey":"pl181","X":554,"Y":588},{"Bonus":0,"Continent":"K55","ID":10618,"Name":"Jaaa","PlayerID":698635863,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10618","ServerKey":"pl181","X":566,"Y":582},{"Bonus":4,"Continent":"K54","ID":10619,"Name":"0000007#","PlayerID":849089881,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10619","ServerKey":"pl181","X":430,"Y":573},{"Bonus":0,"Continent":"K34","ID":10620,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10620","ServerKey":"pl181","X":475,"Y":399},{"Bonus":0,"Continent":"K56","ID":10621,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10621","ServerKey":"pl181","X":600,"Y":527},{"Bonus":0,"Continent":"K55","ID":10622,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10622","ServerKey":"pl181","X":576,"Y":572},{"Bonus":0,"Continent":"K54","ID":10623,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10623","ServerKey":"pl181","X":409,"Y":548},{"Bonus":0,"Continent":"K55","ID":10624,"Name":"1.San Jose","PlayerID":698215322,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10624","ServerKey":"pl181","X":548,"Y":591},{"Bonus":0,"Continent":"K56","ID":10625,"Name":"Tesa 3","PlayerID":698845189,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10625","ServerKey":"pl181","X":603,"Y":519},{"Bonus":0,"Continent":"K54","ID":10626,"Name":"Winter is coming","PlayerID":699364813,"Points":8055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10626","ServerKey":"pl181","X":452,"Y":593},{"Bonus":0,"Continent":"K44","ID":10627,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10627","ServerKey":"pl181","X":416,"Y":436},{"Bonus":0,"Continent":"K65","ID":10628,"Name":"~006.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10628","ServerKey":"pl181","X":502,"Y":604},{"Bonus":0,"Continent":"K45","ID":10629,"Name":"016","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10629","ServerKey":"pl181","X":557,"Y":415},{"Bonus":0,"Continent":"K55","ID":10630,"Name":"001 Hyjal","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10630","ServerKey":"pl181","X":599,"Y":518},{"Bonus":0,"Continent":"K56","ID":10631,"Name":"[030] Te bikujin","PlayerID":848985692,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10631","ServerKey":"pl181","X":602,"Y":515},{"Bonus":1,"Continent":"K54","ID":10632,"Name":"Twierdza 003","PlayerID":9167250,"Points":9284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10632","ServerKey":"pl181","X":423,"Y":568},{"Bonus":0,"Continent":"K44","ID":10634,"Name":"0040 Wioska","PlayerID":3909522,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10634","ServerKey":"pl181","X":436,"Y":416},{"Bonus":0,"Continent":"K54","ID":10635,"Name":"0205","PlayerID":7085510,"Points":5672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10635","ServerKey":"pl181","X":400,"Y":513},{"Bonus":0,"Continent":"K54","ID":10636,"Name":"barba","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10636","ServerKey":"pl181","X":468,"Y":596},{"Bonus":8,"Continent":"K45","ID":10637,"Name":"046","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10637","ServerKey":"pl181","X":548,"Y":408},{"Bonus":0,"Continent":"K45","ID":10638,"Name":"[139] North","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10638","ServerKey":"pl181","X":577,"Y":471},{"Bonus":0,"Continent":"K43","ID":10639,"Name":"x Wioska barbarzyƄska","PlayerID":698290577,"Points":8390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10639","ServerKey":"pl181","X":397,"Y":496},{"Bonus":0,"Continent":"K55","ID":10640,"Name":"1.Charlotte","PlayerID":698215322,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10640","ServerKey":"pl181","X":549,"Y":593},{"Bonus":0,"Continent":"K45","ID":10641,"Name":"150","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10641","ServerKey":"pl181","X":550,"Y":413},{"Bonus":0,"Continent":"K45","ID":10642,"Name":"026 Rurki z kremem","PlayerID":698829590,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10642","ServerKey":"pl181","X":593,"Y":454},{"Bonus":0,"Continent":"K54","ID":10643,"Name":"046 - B03","PlayerID":849028088,"Points":10812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10643","ServerKey":"pl181","X":435,"Y":582},{"Bonus":0,"Continent":"K45","ID":10644,"Name":"023","PlayerID":699722599,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10644","ServerKey":"pl181","X":590,"Y":450},{"Bonus":0,"Continent":"K54","ID":10645,"Name":"KIELBA 043","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10645","ServerKey":"pl181","X":463,"Y":586},{"Bonus":0,"Continent":"K43","ID":10646,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10646","ServerKey":"pl181","X":387,"Y":445},{"Bonus":0,"Continent":"K44","ID":10647,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10647","ServerKey":"pl181","X":470,"Y":402},{"Bonus":0,"Continent":"K44","ID":10648,"Name":"00350 koleĆŒka","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10648","ServerKey":"pl181","X":429,"Y":418},{"Bonus":0,"Continent":"K44","ID":10649,"Name":"Gravity","PlayerID":698962117,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10649","ServerKey":"pl181","X":407,"Y":456},{"Bonus":2,"Continent":"K54","ID":10650,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10650","ServerKey":"pl181","X":407,"Y":547},{"Bonus":0,"Continent":"K55","ID":10651,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10651","ServerKey":"pl181","X":588,"Y":553},{"Bonus":0,"Continent":"K53","ID":10652,"Name":"Wioska barbarzyƄska","PlayerID":1804724,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10652","ServerKey":"pl181","X":398,"Y":515},{"Bonus":0,"Continent":"K54","ID":10653,"Name":"KIELBA 107","PlayerID":699342219,"Points":7781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10653","ServerKey":"pl181","X":451,"Y":593},{"Bonus":5,"Continent":"K55","ID":10654,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10654","ServerKey":"pl181","X":586,"Y":560},{"Bonus":0,"Continent":"K44","ID":10656,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10656","ServerKey":"pl181","X":410,"Y":449},{"Bonus":0,"Continent":"K44","ID":10658,"Name":"Farma","PlayerID":698807570,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10658","ServerKey":"pl181","X":402,"Y":476},{"Bonus":0,"Continent":"K46","ID":10659,"Name":"Jehu_Kingdom_02_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10659","ServerKey":"pl181","X":603,"Y":482},{"Bonus":0,"Continent":"K53","ID":10660,"Name":"Wioska 0009","PlayerID":1804724,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10660","ServerKey":"pl181","X":397,"Y":521},{"Bonus":4,"Continent":"K55","ID":10661,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10661","ServerKey":"pl181","X":589,"Y":552},{"Bonus":0,"Continent":"K64","ID":10662,"Name":"038 OZDR","PlayerID":699336777,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10662","ServerKey":"pl181","X":466,"Y":622},{"Bonus":0,"Continent":"K44","ID":10663,"Name":"Wioska Susu","PlayerID":699660539,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10663","ServerKey":"pl181","X":423,"Y":429},{"Bonus":0,"Continent":"K35","ID":10664,"Name":".achim.","PlayerID":6936607,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10664","ServerKey":"pl181","X":524,"Y":391},{"Bonus":0,"Continent":"K43","ID":10665,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10665","ServerKey":"pl181","X":388,"Y":471},{"Bonus":0,"Continent":"K44","ID":10666,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10666","ServerKey":"pl181","X":402,"Y":463},{"Bonus":0,"Continent":"K54","ID":10667,"Name":"008","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10667","ServerKey":"pl181","X":407,"Y":585},{"Bonus":0,"Continent":"K54","ID":10668,"Name":"mehehe 1","PlayerID":699364813,"Points":8965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10668","ServerKey":"pl181","X":452,"Y":591},{"Bonus":0,"Continent":"K55","ID":10669,"Name":"1.Austin","PlayerID":698215322,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10669","ServerKey":"pl181","X":541,"Y":594},{"Bonus":0,"Continent":"K35","ID":10670,"Name":"South K35","PlayerID":699146580,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10670","ServerKey":"pl181","X":553,"Y":392},{"Bonus":0,"Continent":"K54","ID":10671,"Name":"B 003.","PlayerID":849028088,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10671","ServerKey":"pl181","X":439,"Y":584},{"Bonus":0,"Continent":"K45","ID":10672,"Name":".achim.","PlayerID":6936607,"Points":11137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10672","ServerKey":"pl181","X":539,"Y":403},{"Bonus":3,"Continent":"K55","ID":10673,"Name":"Essa 005","PlayerID":848987051,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10673","ServerKey":"pl181","X":569,"Y":575},{"Bonus":0,"Continent":"K45","ID":10674,"Name":"036","PlayerID":699761749,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10674","ServerKey":"pl181","X":565,"Y":418},{"Bonus":0,"Continent":"K54","ID":10675,"Name":"ƚmieci WywĂłz 5","PlayerID":699364813,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10675","ServerKey":"pl181","X":464,"Y":596},{"Bonus":0,"Continent":"K56","ID":10676,"Name":"003 Wioska Best Wiedzmin","PlayerID":6409472,"Points":4624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10676","ServerKey":"pl181","X":603,"Y":515},{"Bonus":0,"Continent":"K55","ID":10677,"Name":"Jaaa","PlayerID":698635863,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10677","ServerKey":"pl181","X":569,"Y":580},{"Bonus":0,"Continent":"K43","ID":10678,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10678","ServerKey":"pl181","X":399,"Y":469},{"Bonus":0,"Continent":"K55","ID":10679,"Name":"012","PlayerID":699524362,"Points":5397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10679","ServerKey":"pl181","X":583,"Y":561},{"Bonus":0,"Continent":"K54","ID":10680,"Name":"010","PlayerID":699364813,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10680","ServerKey":"pl181","X":477,"Y":598},{"Bonus":0,"Continent":"K45","ID":10681,"Name":"004","PlayerID":699722599,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10681","ServerKey":"pl181","X":586,"Y":442},{"Bonus":0,"Continent":"K44","ID":10682,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10682","ServerKey":"pl181","X":403,"Y":467},{"Bonus":0,"Continent":"K46","ID":10683,"Name":"005 Bonuuus","PlayerID":699272633,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10683","ServerKey":"pl181","X":605,"Y":487},{"Bonus":0,"Continent":"K44","ID":10684,"Name":"NOT","PlayerID":9236866,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10684","ServerKey":"pl181","X":419,"Y":439},{"Bonus":0,"Continent":"K44","ID":10685,"Name":"Gravity","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10685","ServerKey":"pl181","X":412,"Y":449},{"Bonus":0,"Continent":"K55","ID":10686,"Name":"0039 MzM","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10686","ServerKey":"pl181","X":579,"Y":567},{"Bonus":0,"Continent":"K55","ID":10687,"Name":"1.Boston","PlayerID":698215322,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10687","ServerKey":"pl181","X":547,"Y":594},{"Bonus":0,"Continent":"K45","ID":10688,"Name":"BBB","PlayerID":1006847,"Points":8185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10688","ServerKey":"pl181","X":574,"Y":425},{"Bonus":0,"Continent":"K35","ID":10689,"Name":".:105:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10689","ServerKey":"pl181","X":502,"Y":395},{"Bonus":0,"Continent":"K45","ID":10690,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10690","ServerKey":"pl181","X":536,"Y":429},{"Bonus":0,"Continent":"K45","ID":10691,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10691","ServerKey":"pl181","X":519,"Y":400},{"Bonus":0,"Continent":"K34","ID":10692,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10692","ServerKey":"pl181","X":492,"Y":397},{"Bonus":0,"Continent":"K54","ID":10693,"Name":"KIELBA 113","PlayerID":699342219,"Points":8756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10693","ServerKey":"pl181","X":448,"Y":590},{"Bonus":0,"Continent":"K53","ID":10694,"Name":"Wioska M02","PlayerID":1804724,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10694","ServerKey":"pl181","X":399,"Y":519},{"Bonus":0,"Continent":"K54","ID":10695,"Name":"KIELBA 081","PlayerID":699342219,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10695","ServerKey":"pl181","X":456,"Y":596},{"Bonus":0,"Continent":"K65","ID":10696,"Name":"0220","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10696","ServerKey":"pl181","X":517,"Y":603},{"Bonus":0,"Continent":"K54","ID":10697,"Name":"Piajok","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10697","ServerKey":"pl181","X":415,"Y":561},{"Bonus":0,"Continent":"K54","ID":10698,"Name":"0626","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10698","ServerKey":"pl181","X":445,"Y":589},{"Bonus":0,"Continent":"K45","ID":10699,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10699","ServerKey":"pl181","X":521,"Y":401},{"Bonus":0,"Continent":"K46","ID":10700,"Name":"*019*","PlayerID":698670524,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10700","ServerKey":"pl181","X":605,"Y":495},{"Bonus":0,"Continent":"K55","ID":10701,"Name":"Yesterday","PlayerID":848926293,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10701","ServerKey":"pl181","X":589,"Y":567},{"Bonus":0,"Continent":"K54","ID":10702,"Name":"KIELBA 079","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10702","ServerKey":"pl181","X":457,"Y":595},{"Bonus":0,"Continent":"K35","ID":10703,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10703","ServerKey":"pl181","X":525,"Y":399},{"Bonus":0,"Continent":"K35","ID":10704,"Name":"Gattacka","PlayerID":699298370,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10704","ServerKey":"pl181","X":539,"Y":392},{"Bonus":0,"Continent":"K35","ID":10705,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10705","ServerKey":"pl181","X":514,"Y":398},{"Bonus":0,"Continent":"K45","ID":10706,"Name":"023 Buragh","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10706","ServerKey":"pl181","X":599,"Y":477},{"Bonus":0,"Continent":"K45","ID":10707,"Name":"N07","PlayerID":699368887,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10707","ServerKey":"pl181","X":587,"Y":448},{"Bonus":0,"Continent":"K54","ID":10708,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10708","ServerKey":"pl181","X":407,"Y":549},{"Bonus":0,"Continent":"K54","ID":10709,"Name":"007 - T_002***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10709","ServerKey":"pl181","X":439,"Y":586},{"Bonus":0,"Continent":"K44","ID":10710,"Name":"Gravity","PlayerID":698962117,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10710","ServerKey":"pl181","X":406,"Y":458},{"Bonus":3,"Continent":"K45","ID":10711,"Name":"[372] Chorągiewka na wietrze","PlayerID":848985692,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10711","ServerKey":"pl181","X":585,"Y":437},{"Bonus":0,"Continent":"K53","ID":10712,"Name":"SsSs","PlayerID":1536625,"Points":9369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10712","ServerKey":"pl181","X":395,"Y":501},{"Bonus":0,"Continent":"K34","ID":10713,"Name":"Sabaody","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10713","ServerKey":"pl181","X":486,"Y":397},{"Bonus":0,"Continent":"K64","ID":10715,"Name":"Teby_37","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10715","ServerKey":"pl181","X":484,"Y":600},{"Bonus":0,"Continent":"K53","ID":10716,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10716","ServerKey":"pl181","X":395,"Y":508},{"Bonus":0,"Continent":"K53","ID":10717,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10717","ServerKey":"pl181","X":399,"Y":510},{"Bonus":1,"Continent":"K55","ID":10718,"Name":"z 041","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10718","ServerKey":"pl181","X":556,"Y":587},{"Bonus":0,"Continent":"K43","ID":10719,"Name":"xx 002. WHL","PlayerID":698290577,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10719","ServerKey":"pl181","X":395,"Y":499},{"Bonus":0,"Continent":"K45","ID":10720,"Name":"061","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10720","ServerKey":"pl181","X":547,"Y":408},{"Bonus":0,"Continent":"K46","ID":10721,"Name":"040 Massachusetts","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10721","ServerKey":"pl181","X":604,"Y":482},{"Bonus":0,"Continent":"K44","ID":10722,"Name":"Radek","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10722","ServerKey":"pl181","X":400,"Y":468},{"Bonus":0,"Continent":"K54","ID":10723,"Name":"Czarna woda","PlayerID":698769107,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10723","ServerKey":"pl181","X":419,"Y":567},{"Bonus":0,"Continent":"K45","ID":10724,"Name":"011","PlayerID":699722599,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10724","ServerKey":"pl181","X":586,"Y":447},{"Bonus":0,"Continent":"K44","ID":10725,"Name":"0050 Wioska","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10725","ServerKey":"pl181","X":434,"Y":423},{"Bonus":0,"Continent":"K54","ID":10726,"Name":"0631","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10726","ServerKey":"pl181","X":447,"Y":591},{"Bonus":0,"Continent":"K54","ID":10727,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10727","ServerKey":"pl181","X":410,"Y":555},{"Bonus":0,"Continent":"K35","ID":10728,"Name":".achim.","PlayerID":6936607,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10728","ServerKey":"pl181","X":522,"Y":397},{"Bonus":0,"Continent":"K55","ID":10729,"Name":"Essa 008","PlayerID":848987051,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10729","ServerKey":"pl181","X":572,"Y":575},{"Bonus":0,"Continent":"K64","ID":10730,"Name":"EKG M21","PlayerID":33900,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10730","ServerKey":"pl181","X":482,"Y":604},{"Bonus":0,"Continent":"K65","ID":10731,"Name":"0221","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10731","ServerKey":"pl181","X":520,"Y":601},{"Bonus":0,"Continent":"K45","ID":10732,"Name":"005","PlayerID":699722599,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10732","ServerKey":"pl181","X":589,"Y":447},{"Bonus":0,"Continent":"K45","ID":10733,"Name":"007","PlayerID":699722599,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10733","ServerKey":"pl181","X":588,"Y":447},{"Bonus":0,"Continent":"K35","ID":10734,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10734","ServerKey":"pl181","X":545,"Y":387},{"Bonus":0,"Continent":"K54","ID":10735,"Name":"Wioska 0011","PlayerID":1804724,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10735","ServerKey":"pl181","X":401,"Y":531},{"Bonus":6,"Continent":"K54","ID":10736,"Name":"Osada M.","PlayerID":1804724,"Points":10210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10736","ServerKey":"pl181","X":400,"Y":522},{"Bonus":0,"Continent":"K54","ID":10737,"Name":". Chivas","PlayerID":8779575,"Points":8863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10737","ServerKey":"pl181","X":424,"Y":550},{"Bonus":0,"Continent":"K45","ID":10738,"Name":"0013","PlayerID":698599365,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10738","ServerKey":"pl181","X":503,"Y":492},{"Bonus":0,"Continent":"K45","ID":10739,"Name":"052 BuƂeczka v7","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10739","ServerKey":"pl181","X":532,"Y":400},{"Bonus":0,"Continent":"K64","ID":10740,"Name":"~087.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10740","ServerKey":"pl181","X":491,"Y":605},{"Bonus":0,"Continent":"K64","ID":10741,"Name":"#025","PlayerID":699605333,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10741","ServerKey":"pl181","X":471,"Y":619},{"Bonus":0,"Continent":"K43","ID":10742,"Name":"SsSs","PlayerID":1536625,"Points":6156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10742","ServerKey":"pl181","X":394,"Y":499},{"Bonus":0,"Continent":"K34","ID":10743,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10743","ServerKey":"pl181","X":469,"Y":399},{"Bonus":0,"Continent":"K45","ID":10744,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":6789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10744","ServerKey":"pl181","X":574,"Y":428},{"Bonus":0,"Continent":"K35","ID":10745,"Name":"D006","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10745","ServerKey":"pl181","X":508,"Y":395},{"Bonus":0,"Continent":"K55","ID":10746,"Name":"- 026 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10746","ServerKey":"pl181","X":547,"Y":595},{"Bonus":0,"Continent":"K44","ID":10747,"Name":"Gravity","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10747","ServerKey":"pl181","X":405,"Y":460},{"Bonus":0,"Continent":"K55","ID":10748,"Name":"008","PlayerID":699524362,"Points":7721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10748","ServerKey":"pl181","X":582,"Y":565},{"Bonus":0,"Continent":"K46","ID":10749,"Name":"051 Michigan","PlayerID":7092442,"Points":7893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10749","ServerKey":"pl181","X":602,"Y":481},{"Bonus":0,"Continent":"K44","ID":10750,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10750","ServerKey":"pl181","X":417,"Y":436},{"Bonus":0,"Continent":"K54","ID":10751,"Name":"Postit","PlayerID":699443920,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10751","ServerKey":"pl181","X":417,"Y":563},{"Bonus":0,"Continent":"K44","ID":10752,"Name":"007. Hordafylke","PlayerID":699660539,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10752","ServerKey":"pl181","X":423,"Y":432},{"Bonus":0,"Continent":"K45","ID":10753,"Name":"026","PlayerID":849088515,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10753","ServerKey":"pl181","X":595,"Y":464},{"Bonus":0,"Continent":"K44","ID":10754,"Name":"K44 x019","PlayerID":698364331,"Points":6773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10754","ServerKey":"pl181","X":442,"Y":413},{"Bonus":0,"Continent":"K54","ID":10755,"Name":"Osobliwie","PlayerID":699443920,"Points":3543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10755","ServerKey":"pl181","X":426,"Y":558},{"Bonus":0,"Continent":"K35","ID":10756,"Name":"AAA","PlayerID":849093422,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10756","ServerKey":"pl181","X":510,"Y":399},{"Bonus":0,"Continent":"K55","ID":10758,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10758","ServerKey":"pl181","X":568,"Y":575},{"Bonus":0,"Continent":"K54","ID":10759,"Name":"Twierdza 004","PlayerID":849084740,"Points":8143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10759","ServerKey":"pl181","X":422,"Y":571},{"Bonus":0,"Continent":"K54","ID":10760,"Name":"Wioska 0012","PlayerID":1804724,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10760","ServerKey":"pl181","X":400,"Y":517},{"Bonus":0,"Continent":"K45","ID":10761,"Name":"031","PlayerID":849063849,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10761","ServerKey":"pl181","X":575,"Y":429},{"Bonus":0,"Continent":"K53","ID":10762,"Name":"Wioska 0024","PlayerID":1804724,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10762","ServerKey":"pl181","X":397,"Y":515},{"Bonus":0,"Continent":"K55","ID":10763,"Name":"016","PlayerID":699524362,"Points":7089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10763","ServerKey":"pl181","X":580,"Y":566},{"Bonus":0,"Continent":"K54","ID":10764,"Name":"Twierdza 009","PlayerID":9167250,"Points":6893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10764","ServerKey":"pl181","X":423,"Y":566},{"Bonus":0,"Continent":"K56","ID":10765,"Name":"Tesa 1","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10765","ServerKey":"pl181","X":604,"Y":519},{"Bonus":0,"Continent":"K55","ID":10766,"Name":"019.","PlayerID":6520732,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10766","ServerKey":"pl181","X":598,"Y":532},{"Bonus":9,"Continent":"K55","ID":10767,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10767","ServerKey":"pl181","X":579,"Y":570},{"Bonus":0,"Continent":"K44","ID":10768,"Name":"A012","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10768","ServerKey":"pl181","X":461,"Y":403},{"Bonus":0,"Continent":"K44","ID":10769,"Name":"***-035-","PlayerID":9291984,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10769","ServerKey":"pl181","X":453,"Y":407},{"Bonus":0,"Continent":"K55","ID":10770,"Name":"005","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10770","ServerKey":"pl181","X":565,"Y":579},{"Bonus":0,"Continent":"K45","ID":10771,"Name":"018","PlayerID":699722599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10771","ServerKey":"pl181","X":590,"Y":449},{"Bonus":0,"Continent":"K54","ID":10772,"Name":"081 PRZECIWKO KRÓLESTWU PAKT","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10772","ServerKey":"pl181","X":411,"Y":558},{"Bonus":0,"Continent":"K45","ID":10773,"Name":"033","PlayerID":699722599,"Points":4730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10773","ServerKey":"pl181","X":584,"Y":443},{"Bonus":0,"Continent":"K44","ID":10774,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10774","ServerKey":"pl181","X":423,"Y":430},{"Bonus":0,"Continent":"K53","ID":10775,"Name":"Knowhere","PlayerID":699723284,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10775","ServerKey":"pl181","X":395,"Y":511},{"Bonus":0,"Continent":"K45","ID":10776,"Name":"Szlachcic","PlayerID":699098531,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10776","ServerKey":"pl181","X":505,"Y":474},{"Bonus":0,"Continent":"K35","ID":10777,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10777","ServerKey":"pl181","X":529,"Y":399},{"Bonus":0,"Continent":"K55","ID":10778,"Name":"z 038","PlayerID":699342219,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10778","ServerKey":"pl181","X":558,"Y":587},{"Bonus":0,"Continent":"K46","ID":10780,"Name":"071","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10780","ServerKey":"pl181","X":601,"Y":471},{"Bonus":0,"Continent":"K55","ID":10781,"Name":"006 Attitude Adjustment","PlayerID":699316421,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10781","ServerKey":"pl181","X":581,"Y":568},{"Bonus":0,"Continent":"K45","ID":10782,"Name":"028","PlayerID":849063849,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10782","ServerKey":"pl181","X":577,"Y":427},{"Bonus":0,"Continent":"K53","ID":10783,"Name":"x barbarzyƄska 007","PlayerID":698290577,"Points":8485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10783","ServerKey":"pl181","X":397,"Y":510},{"Bonus":0,"Continent":"K54","ID":10784,"Name":"sentyment","PlayerID":1804724,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10784","ServerKey":"pl181","X":400,"Y":529},{"Bonus":0,"Continent":"K35","ID":10785,"Name":".:135:. Niangmen","PlayerID":848934935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10785","ServerKey":"pl181","X":508,"Y":398},{"Bonus":0,"Continent":"K55","ID":10786,"Name":"1.Dallas","PlayerID":698215322,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10786","ServerKey":"pl181","X":551,"Y":593},{"Bonus":0,"Continent":"K55","ID":10787,"Name":"#036","PlayerID":849001572,"Points":8436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10787","ServerKey":"pl181","X":530,"Y":598},{"Bonus":0,"Continent":"K54","ID":10788,"Name":"KIELBA 055","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10788","ServerKey":"pl181","X":446,"Y":578},{"Bonus":0,"Continent":"K64","ID":10789,"Name":"004.","PlayerID":7976264,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10789","ServerKey":"pl181","X":491,"Y":602},{"Bonus":0,"Continent":"K46","ID":10790,"Name":"018 Hawaii","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10790","ServerKey":"pl181","X":602,"Y":483},{"Bonus":6,"Continent":"K56","ID":10791,"Name":"033 Greene","PlayerID":699272880,"Points":9558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10791","ServerKey":"pl181","X":602,"Y":526},{"Bonus":0,"Continent":"K54","ID":10792,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10792","ServerKey":"pl181","X":410,"Y":547},{"Bonus":0,"Continent":"K53","ID":10793,"Name":"Brat447","PlayerID":699262350,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10793","ServerKey":"pl181","X":395,"Y":513},{"Bonus":0,"Continent":"K46","ID":10794,"Name":"016 Georgia","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10794","ServerKey":"pl181","X":604,"Y":484},{"Bonus":0,"Continent":"K45","ID":10795,"Name":"053 BuƂeczka v8","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10795","ServerKey":"pl181","X":538,"Y":402},{"Bonus":0,"Continent":"K64","ID":10796,"Name":"#024","PlayerID":849001572,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10796","ServerKey":"pl181","X":485,"Y":600},{"Bonus":0,"Continent":"K54","ID":10798,"Name":"Teby_40","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10798","ServerKey":"pl181","X":481,"Y":598},{"Bonus":0,"Continent":"K55","ID":10799,"Name":"P.029","PlayerID":873575,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10799","ServerKey":"pl181","X":543,"Y":559},{"Bonus":0,"Continent":"K55","ID":10800,"Name":"#####","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10800","ServerKey":"pl181","X":562,"Y":599},{"Bonus":0,"Continent":"K45","ID":10801,"Name":"005","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10801","ServerKey":"pl181","X":553,"Y":405},{"Bonus":0,"Continent":"K53","ID":10802,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":6203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10802","ServerKey":"pl181","X":395,"Y":517},{"Bonus":0,"Continent":"K35","ID":10803,"Name":".:111:. Niangmen","PlayerID":848934935,"Points":5281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10803","ServerKey":"pl181","X":504,"Y":395},{"Bonus":0,"Continent":"K44","ID":10804,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10804","ServerKey":"pl181","X":401,"Y":481},{"Bonus":0,"Continent":"K45","ID":10806,"Name":"065","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10806","ServerKey":"pl181","X":546,"Y":409},{"Bonus":0,"Continent":"K55","ID":10807,"Name":"- 014 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10807","ServerKey":"pl181","X":538,"Y":599},{"Bonus":0,"Continent":"K56","ID":10808,"Name":"001","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10808","ServerKey":"pl181","X":605,"Y":517},{"Bonus":0,"Continent":"K64","ID":10809,"Name":"Sparta_18","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10809","ServerKey":"pl181","X":496,"Y":602},{"Bonus":0,"Continent":"K44","ID":10810,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10810","ServerKey":"pl181","X":462,"Y":403},{"Bonus":1,"Continent":"K35","ID":10811,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10811","ServerKey":"pl181","X":519,"Y":398},{"Bonus":0,"Continent":"K55","ID":10813,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10813","ServerKey":"pl181","X":575,"Y":575},{"Bonus":0,"Continent":"K45","ID":10814,"Name":"020","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10814","ServerKey":"pl181","X":596,"Y":455},{"Bonus":0,"Continent":"K55","ID":10815,"Name":"z 040","PlayerID":699342219,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10815","ServerKey":"pl181","X":557,"Y":585},{"Bonus":0,"Continent":"K35","ID":10816,"Name":"020","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10816","ServerKey":"pl181","X":556,"Y":392},{"Bonus":0,"Continent":"K65","ID":10817,"Name":"#0092","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10817","ServerKey":"pl181","X":512,"Y":601},{"Bonus":0,"Continent":"K43","ID":10818,"Name":"[A]_[018] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10818","ServerKey":"pl181","X":395,"Y":487},{"Bonus":0,"Continent":"K54","ID":10819,"Name":"NOT?","PlayerID":9236866,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10819","ServerKey":"pl181","X":408,"Y":553},{"Bonus":0,"Continent":"K45","ID":10820,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10820","ServerKey":"pl181","X":514,"Y":456},{"Bonus":0,"Continent":"K55","ID":10821,"Name":"017","PlayerID":699524362,"Points":6922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10821","ServerKey":"pl181","X":580,"Y":567},{"Bonus":0,"Continent":"K44","ID":10822,"Name":"Dąbrowa GĂłrnicza","PlayerID":699660539,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10822","ServerKey":"pl181","X":431,"Y":423},{"Bonus":0,"Continent":"K44","ID":10823,"Name":"A029","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10823","ServerKey":"pl181","X":450,"Y":412},{"Bonus":0,"Continent":"K64","ID":10824,"Name":"wojtas0114","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10824","ServerKey":"pl181","X":477,"Y":601},{"Bonus":0,"Continent":"K35","ID":10825,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10825","ServerKey":"pl181","X":523,"Y":399},{"Bonus":0,"Continent":"K55","ID":10826,"Name":"Jaaa","PlayerID":698635863,"Points":10219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10826","ServerKey":"pl181","X":567,"Y":582},{"Bonus":0,"Continent":"K44","ID":10827,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10827","ServerKey":"pl181","X":403,"Y":463},{"Bonus":0,"Continent":"K55","ID":10828,"Name":"013 Gundabad","PlayerID":8013349,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10828","ServerKey":"pl181","X":597,"Y":540},{"Bonus":0,"Continent":"K54","ID":10829,"Name":"KIELBA 110","PlayerID":699342219,"Points":5676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10829","ServerKey":"pl181","X":448,"Y":592},{"Bonus":0,"Continent":"K45","ID":10830,"Name":"023","PlayerID":849063849,"Points":8886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10830","ServerKey":"pl181","X":571,"Y":426},{"Bonus":0,"Continent":"K45","ID":10831,"Name":"007 Dakota","PlayerID":7092442,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10831","ServerKey":"pl181","X":598,"Y":484},{"Bonus":0,"Continent":"K45","ID":10832,"Name":"ADEN","PlayerID":698588535,"Points":9895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10832","ServerKey":"pl181","X":581,"Y":433},{"Bonus":0,"Continent":"K55","ID":10834,"Name":"019","PlayerID":699524362,"Points":6852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10834","ServerKey":"pl181","X":578,"Y":567},{"Bonus":0,"Continent":"K45","ID":10836,"Name":"034","PlayerID":8459255,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10836","ServerKey":"pl181","X":596,"Y":467},{"Bonus":0,"Continent":"K45","ID":10837,"Name":"DOM 13 *","PlayerID":849064614,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10837","ServerKey":"pl181","X":560,"Y":413},{"Bonus":0,"Continent":"K55","ID":10838,"Name":"018","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10838","ServerKey":"pl181","X":581,"Y":569},{"Bonus":0,"Continent":"K43","ID":10839,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10839","ServerKey":"pl181","X":398,"Y":474},{"Bonus":0,"Continent":"K56","ID":10840,"Name":"0024","PlayerID":6510480,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10840","ServerKey":"pl181","X":603,"Y":509},{"Bonus":0,"Continent":"K44","ID":10841,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10841","ServerKey":"pl181","X":456,"Y":405},{"Bonus":0,"Continent":"K54","ID":10842,"Name":"A 014.","PlayerID":849028088,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10842","ServerKey":"pl181","X":436,"Y":582},{"Bonus":0,"Continent":"K45","ID":10843,"Name":"029","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10843","ServerKey":"pl181","X":593,"Y":449},{"Bonus":0,"Continent":"K64","ID":10844,"Name":"Sparta_15","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10844","ServerKey":"pl181","X":496,"Y":600},{"Bonus":0,"Continent":"K56","ID":10845,"Name":"039","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10845","ServerKey":"pl181","X":606,"Y":506},{"Bonus":0,"Continent":"K54","ID":10846,"Name":"Gonzzollo 1","PlayerID":849030226,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10846","ServerKey":"pl181","X":403,"Y":535},{"Bonus":0,"Continent":"K54","ID":10847,"Name":"C.001","PlayerID":849088243,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10847","ServerKey":"pl181","X":439,"Y":599},{"Bonus":0,"Continent":"K56","ID":10848,"Name":"0019","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10848","ServerKey":"pl181","X":606,"Y":503},{"Bonus":0,"Continent":"K35","ID":10849,"Name":"E005","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10849","ServerKey":"pl181","X":515,"Y":396},{"Bonus":0,"Continent":"K44","ID":10850,"Name":"5. Northumbria","PlayerID":699660539,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10850","ServerKey":"pl181","X":425,"Y":430},{"Bonus":0,"Continent":"K35","ID":10851,"Name":".:103:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10851","ServerKey":"pl181","X":503,"Y":395},{"Bonus":0,"Continent":"K45","ID":10852,"Name":"029 Pierwsze wybory Konfederacji","PlayerID":698829590,"Points":2372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10852","ServerKey":"pl181","X":594,"Y":455},{"Bonus":0,"Continent":"K55","ID":10853,"Name":"018. Baba Jaga","PlayerID":699703642,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10853","ServerKey":"pl181","X":510,"Y":580},{"Bonus":0,"Continent":"K54","ID":10854,"Name":"KIELBA 082","PlayerID":699342219,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10854","ServerKey":"pl181","X":457,"Y":597},{"Bonus":0,"Continent":"K64","ID":10855,"Name":"~032.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10855","ServerKey":"pl181","X":476,"Y":602},{"Bonus":0,"Continent":"K45","ID":10856,"Name":"054 BuƂeczka v9","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10856","ServerKey":"pl181","X":537,"Y":403},{"Bonus":0,"Continent":"K45","ID":10857,"Name":"045 BuƂeczka","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10857","ServerKey":"pl181","X":535,"Y":403},{"Bonus":0,"Continent":"K56","ID":10858,"Name":"002","PlayerID":8323711,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10858","ServerKey":"pl181","X":605,"Y":519},{"Bonus":0,"Continent":"K55","ID":10859,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10859","ServerKey":"pl181","X":599,"Y":524},{"Bonus":0,"Continent":"K44","ID":10860,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10860","ServerKey":"pl181","X":411,"Y":445},{"Bonus":0,"Continent":"K43","ID":10861,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10861","ServerKey":"pl181","X":399,"Y":485},{"Bonus":0,"Continent":"K45","ID":10862,"Name":".:043:. Chillout","PlayerID":848934935,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10862","ServerKey":"pl181","X":523,"Y":445},{"Bonus":0,"Continent":"K55","ID":10863,"Name":"- 064 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10863","ServerKey":"pl181","X":536,"Y":599},{"Bonus":0,"Continent":"K55","ID":10864,"Name":"1.Filadelfia","PlayerID":698215322,"Points":10018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10864","ServerKey":"pl181","X":555,"Y":591},{"Bonus":0,"Continent":"K45","ID":10865,"Name":"025","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10865","ServerKey":"pl181","X":596,"Y":462},{"Bonus":0,"Continent":"K55","ID":10866,"Name":"- 303 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10866","ServerKey":"pl181","X":533,"Y":596},{"Bonus":0,"Continent":"K55","ID":10867,"Name":"- 117 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10867","ServerKey":"pl181","X":549,"Y":589},{"Bonus":0,"Continent":"K35","ID":10868,"Name":"046","PlayerID":849063849,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10868","ServerKey":"pl181","X":566,"Y":394},{"Bonus":0,"Continent":"K65","ID":10869,"Name":"CALL 991","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10869","ServerKey":"pl181","X":553,"Y":616},{"Bonus":0,"Continent":"K54","ID":10870,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10870","ServerKey":"pl181","X":403,"Y":533},{"Bonus":0,"Continent":"K54","ID":10871,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10871","ServerKey":"pl181","X":407,"Y":550},{"Bonus":0,"Continent":"K54","ID":10872,"Name":"Pjana","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10872","ServerKey":"pl181","X":415,"Y":564},{"Bonus":0,"Continent":"K54","ID":10873,"Name":"016. Ogar","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10873","ServerKey":"pl181","X":412,"Y":551},{"Bonus":0,"Continent":"K55","ID":10874,"Name":"1.Los Angeles","PlayerID":698215322,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10874","ServerKey":"pl181","X":544,"Y":596},{"Bonus":0,"Continent":"K65","ID":10875,"Name":"CALL 911","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10875","ServerKey":"pl181","X":554,"Y":606},{"Bonus":0,"Continent":"K54","ID":10876,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10876","ServerKey":"pl181","X":406,"Y":546},{"Bonus":0,"Continent":"K64","ID":10877,"Name":"~077.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10877","ServerKey":"pl181","X":494,"Y":606},{"Bonus":0,"Continent":"K46","ID":10878,"Name":"022 Bullridge","PlayerID":8337151,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10878","ServerKey":"pl181","X":601,"Y":475},{"Bonus":0,"Continent":"K55","ID":10879,"Name":"001","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10879","ServerKey":"pl181","X":570,"Y":579},{"Bonus":0,"Continent":"K43","ID":10880,"Name":"[A]_[004] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10880","ServerKey":"pl181","X":399,"Y":483},{"Bonus":3,"Continent":"K46","ID":10881,"Name":"021 Illinois","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10881","ServerKey":"pl181","X":605,"Y":489},{"Bonus":0,"Continent":"K65","ID":10882,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10882","ServerKey":"pl181","X":541,"Y":614},{"Bonus":0,"Continent":"K56","ID":10883,"Name":"034 Hedarth","PlayerID":8337151,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10883","ServerKey":"pl181","X":606,"Y":504},{"Bonus":0,"Continent":"K55","ID":10884,"Name":"006","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10884","ServerKey":"pl181","X":582,"Y":567},{"Bonus":0,"Continent":"K55","ID":10885,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10885","ServerKey":"pl181","X":589,"Y":556},{"Bonus":0,"Continent":"K44","ID":10886,"Name":"0031 Wioska","PlayerID":3909522,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10886","ServerKey":"pl181","X":433,"Y":418},{"Bonus":0,"Continent":"K54","ID":10887,"Name":"Sparta_65","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10887","ServerKey":"pl181","X":482,"Y":575},{"Bonus":0,"Continent":"K65","ID":10888,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10888","ServerKey":"pl181","X":513,"Y":604},{"Bonus":0,"Continent":"K34","ID":10889,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10889","ServerKey":"pl181","X":496,"Y":394},{"Bonus":0,"Continent":"K53","ID":10890,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10890","ServerKey":"pl181","X":396,"Y":510},{"Bonus":0,"Continent":"K53","ID":10891,"Name":"Wioska 0018","PlayerID":1804724,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10891","ServerKey":"pl181","X":398,"Y":529},{"Bonus":0,"Continent":"K55","ID":10893,"Name":"A.181.02","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10893","ServerKey":"pl181","X":599,"Y":533},{"Bonus":0,"Continent":"K45","ID":10894,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":8396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10894","ServerKey":"pl181","X":580,"Y":430},{"Bonus":0,"Continent":"K44","ID":10895,"Name":"Osada","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10895","ServerKey":"pl181","X":496,"Y":455},{"Bonus":0,"Continent":"K55","ID":10896,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10896","ServerKey":"pl181","X":586,"Y":561},{"Bonus":0,"Continent":"K54","ID":10897,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10897","ServerKey":"pl181","X":415,"Y":550},{"Bonus":0,"Continent":"K44","ID":10898,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10898","ServerKey":"pl181","X":416,"Y":438},{"Bonus":0,"Continent":"K44","ID":10899,"Name":"00431 pawel84","PlayerID":3909522,"Points":8829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10899","ServerKey":"pl181","X":430,"Y":422},{"Bonus":0,"Continent":"K56","ID":10900,"Name":"048 Viljandi","PlayerID":699272880,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10900","ServerKey":"pl181","X":606,"Y":514},{"Bonus":5,"Continent":"K43","ID":10901,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10901","ServerKey":"pl181","X":397,"Y":488},{"Bonus":0,"Continent":"K65","ID":10902,"Name":"#032","PlayerID":849001572,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10902","ServerKey":"pl181","X":523,"Y":603},{"Bonus":0,"Continent":"K46","ID":10903,"Name":"020 Aroughs","PlayerID":8337151,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10903","ServerKey":"pl181","X":602,"Y":473},{"Bonus":0,"Continent":"K35","ID":10904,"Name":"033","PlayerID":849063849,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10904","ServerKey":"pl181","X":557,"Y":396},{"Bonus":0,"Continent":"K45","ID":10905,"Name":"040","PlayerID":849063849,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10905","ServerKey":"pl181","X":571,"Y":422},{"Bonus":0,"Continent":"K45","ID":10906,"Name":"054","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10906","ServerKey":"pl181","X":554,"Y":413},{"Bonus":0,"Continent":"K43","ID":10907,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10907","ServerKey":"pl181","X":397,"Y":484},{"Bonus":0,"Continent":"K44","ID":10908,"Name":"Wioska barbarzyƄska","PlayerID":8740199,"Points":7167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10908","ServerKey":"pl181","X":460,"Y":404},{"Bonus":0,"Continent":"K44","ID":10909,"Name":"A015","PlayerID":8740199,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10909","ServerKey":"pl181","X":463,"Y":400},{"Bonus":0,"Continent":"K35","ID":10910,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10910","ServerKey":"pl181","X":526,"Y":399},{"Bonus":0,"Continent":"K44","ID":10911,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10911","ServerKey":"pl181","X":404,"Y":460},{"Bonus":8,"Continent":"K55","ID":10912,"Name":"Jaaa","PlayerID":698635863,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10912","ServerKey":"pl181","X":588,"Y":558},{"Bonus":0,"Continent":"K55","ID":10913,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10913","ServerKey":"pl181","X":575,"Y":511},{"Bonus":0,"Continent":"K65","ID":10914,"Name":"0222","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10914","ServerKey":"pl181","X":523,"Y":601},{"Bonus":0,"Continent":"K44","ID":10916,"Name":"A030","PlayerID":8740199,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10916","ServerKey":"pl181","X":451,"Y":408},{"Bonus":0,"Continent":"K35","ID":10917,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10917","ServerKey":"pl181","X":542,"Y":395},{"Bonus":0,"Continent":"K54","ID":10918,"Name":"Teatr","PlayerID":7249451,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10918","ServerKey":"pl181","X":424,"Y":572},{"Bonus":0,"Continent":"K44","ID":10919,"Name":"0042 Wioska","PlayerID":3909522,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10919","ServerKey":"pl181","X":431,"Y":421},{"Bonus":0,"Continent":"K43","ID":10920,"Name":"makelovenotwar4","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10920","ServerKey":"pl181","X":384,"Y":462},{"Bonus":0,"Continent":"K54","ID":10921,"Name":"046o","PlayerID":699099811,"Points":11742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10921","ServerKey":"pl181","X":445,"Y":586},{"Bonus":0,"Continent":"K44","ID":10922,"Name":"moneciarnia","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10922","ServerKey":"pl181","X":414,"Y":438},{"Bonus":0,"Continent":"K55","ID":10923,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10923","ServerKey":"pl181","X":565,"Y":584},{"Bonus":0,"Continent":"K54","ID":10924,"Name":"NOT?","PlayerID":9236866,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10924","ServerKey":"pl181","X":410,"Y":556},{"Bonus":0,"Continent":"K54","ID":10925,"Name":"~028.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10925","ServerKey":"pl181","X":476,"Y":599},{"Bonus":5,"Continent":"K64","ID":10926,"Name":"003","PlayerID":7976264,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10926","ServerKey":"pl181","X":487,"Y":602},{"Bonus":0,"Continent":"K44","ID":10927,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10927","ServerKey":"pl181","X":419,"Y":437},{"Bonus":0,"Continent":"K44","ID":10928,"Name":"0043 Wioska","PlayerID":3909522,"Points":10091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10928","ServerKey":"pl181","X":431,"Y":422},{"Bonus":0,"Continent":"K64","ID":10929,"Name":"EKG .::. Siwyy8848/5","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10929","ServerKey":"pl181","X":498,"Y":619},{"Bonus":0,"Continent":"K54","ID":10930,"Name":"Plum","PlayerID":699443920,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10930","ServerKey":"pl181","X":416,"Y":562},{"Bonus":0,"Continent":"K45","ID":10931,"Name":"149","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10931","ServerKey":"pl181","X":550,"Y":408},{"Bonus":0,"Continent":"K54","ID":10932,"Name":"KIELBA 111","PlayerID":699342219,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10932","ServerKey":"pl181","X":452,"Y":594},{"Bonus":6,"Continent":"K45","ID":10933,"Name":"002 To nie byƂ najlepszy pomysƂ","PlayerID":698829590,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10933","ServerKey":"pl181","X":572,"Y":422},{"Bonus":0,"Continent":"K55","ID":10934,"Name":"z 036","PlayerID":699342219,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10934","ServerKey":"pl181","X":555,"Y":587},{"Bonus":0,"Continent":"K65","ID":10935,"Name":"Winter is coming","PlayerID":699364813,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10935","ServerKey":"pl181","X":505,"Y":603},{"Bonus":0,"Continent":"K54","ID":10936,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10936","ServerKey":"pl181","X":417,"Y":552},{"Bonus":0,"Continent":"K35","ID":10937,"Name":".achim.","PlayerID":6936607,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10937","ServerKey":"pl181","X":527,"Y":399},{"Bonus":0,"Continent":"K44","ID":10938,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10938","ServerKey":"pl181","X":460,"Y":405},{"Bonus":0,"Continent":"K55","ID":10939,"Name":"- 074 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10939","ServerKey":"pl181","X":553,"Y":592},{"Bonus":0,"Continent":"K55","ID":10940,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10940","ServerKey":"pl181","X":531,"Y":540},{"Bonus":0,"Continent":"K55","ID":10941,"Name":"009","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10941","ServerKey":"pl181","X":582,"Y":564},{"Bonus":0,"Continent":"K35","ID":10942,"Name":".:115:. Niangmen","PlayerID":848934935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10942","ServerKey":"pl181","X":504,"Y":394},{"Bonus":0,"Continent":"K64","ID":10943,"Name":"002. Gloria Victis","PlayerID":848886973,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10943","ServerKey":"pl181","X":440,"Y":605},{"Bonus":0,"Continent":"K45","ID":10944,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10944","ServerKey":"pl181","X":578,"Y":428},{"Bonus":0,"Continent":"K45","ID":10945,"Name":"027","PlayerID":849063849,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10945","ServerKey":"pl181","X":569,"Y":423},{"Bonus":0,"Continent":"K44","ID":10946,"Name":"K44 x030","PlayerID":698364331,"Points":9150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10946","ServerKey":"pl181","X":464,"Y":401},{"Bonus":0,"Continent":"K65","ID":10947,"Name":"Yogi","PlayerID":2808172,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10947","ServerKey":"pl181","X":543,"Y":613},{"Bonus":0,"Continent":"K44","ID":10948,"Name":"2. Wessex","PlayerID":699660539,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10948","ServerKey":"pl181","X":425,"Y":428},{"Bonus":0,"Continent":"K43","ID":10949,"Name":"Knowhere","PlayerID":699723284,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10949","ServerKey":"pl181","X":394,"Y":492},{"Bonus":0,"Continent":"K55","ID":10950,"Name":"EXA","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10950","ServerKey":"pl181","X":599,"Y":531},{"Bonus":0,"Continent":"K54","ID":10951,"Name":"Dobranoc","PlayerID":699856962,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10951","ServerKey":"pl181","X":419,"Y":542},{"Bonus":0,"Continent":"K54","ID":10952,"Name":"Wioska 0021","PlayerID":1804724,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10952","ServerKey":"pl181","X":401,"Y":525},{"Bonus":0,"Continent":"K43","ID":10953,"Name":"Knowhere","PlayerID":699723284,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10953","ServerKey":"pl181","X":397,"Y":493},{"Bonus":0,"Continent":"K64","ID":10954,"Name":"008","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10954","ServerKey":"pl181","X":474,"Y":601},{"Bonus":0,"Continent":"K45","ID":10955,"Name":"144","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10955","ServerKey":"pl181","X":566,"Y":422},{"Bonus":0,"Continent":"K56","ID":10956,"Name":"Mzm44","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10956","ServerKey":"pl181","X":604,"Y":524},{"Bonus":0,"Continent":"K44","ID":10957,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10957","ServerKey":"pl181","X":420,"Y":429},{"Bonus":0,"Continent":"K54","ID":10958,"Name":"~027.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10958","ServerKey":"pl181","X":475,"Y":599},{"Bonus":0,"Continent":"K56","ID":10959,"Name":"0057","PlayerID":6510480,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10959","ServerKey":"pl181","X":602,"Y":512},{"Bonus":0,"Continent":"K64","ID":10960,"Name":"EKG .::. freaky97/1","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10960","ServerKey":"pl181","X":487,"Y":605},{"Bonus":0,"Continent":"K53","ID":10961,"Name":"Omen 1","PlayerID":1804724,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10961","ServerKey":"pl181","X":399,"Y":523},{"Bonus":0,"Continent":"K53","ID":10962,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10962","ServerKey":"pl181","X":398,"Y":530},{"Bonus":8,"Continent":"K56","ID":10963,"Name":"[012] Vous tuer","PlayerID":848985692,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10963","ServerKey":"pl181","X":601,"Y":524},{"Bonus":0,"Continent":"K45","ID":10965,"Name":"Jehu_Kingdom_07_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10965","ServerKey":"pl181","X":596,"Y":460},{"Bonus":0,"Continent":"K54","ID":10967,"Name":"003","PlayerID":9167250,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10967","ServerKey":"pl181","X":428,"Y":584},{"Bonus":0,"Continent":"K54","ID":10968,"Name":"B 005.","PlayerID":849028088,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10968","ServerKey":"pl181","X":440,"Y":583},{"Bonus":0,"Continent":"K56","ID":10969,"Name":"0025","PlayerID":6510480,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10969","ServerKey":"pl181","X":607,"Y":511},{"Bonus":0,"Continent":"K44","ID":10970,"Name":"A019","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10970","ServerKey":"pl181","X":463,"Y":402},{"Bonus":0,"Continent":"K65","ID":10971,"Name":"Garnizon_01","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10971","ServerKey":"pl181","X":512,"Y":605},{"Bonus":0,"Continent":"K54","ID":10972,"Name":"s011","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10972","ServerKey":"pl181","X":409,"Y":555},{"Bonus":0,"Continent":"K44","ID":10973,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10973","ServerKey":"pl181","X":402,"Y":468},{"Bonus":0,"Continent":"K45","ID":10975,"Name":"019 Kurczaki i Ziemniaki","PlayerID":698829590,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10975","ServerKey":"pl181","X":593,"Y":455},{"Bonus":0,"Continent":"K45","ID":10976,"Name":"Gattacka","PlayerID":699298370,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10976","ServerKey":"pl181","X":597,"Y":424},{"Bonus":0,"Continent":"K55","ID":10977,"Name":"Wioska 454","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10977","ServerKey":"pl181","X":593,"Y":544},{"Bonus":0,"Continent":"K54","ID":10978,"Name":"KIELBA 120","PlayerID":699342219,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10978","ServerKey":"pl181","X":435,"Y":573},{"Bonus":0,"Continent":"K54","ID":10979,"Name":"106 Suchy Karaluch","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10979","ServerKey":"pl181","X":409,"Y":552},{"Bonus":0,"Continent":"K44","ID":10980,"Name":"0044 Wioska","PlayerID":3909522,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10980","ServerKey":"pl181","X":438,"Y":416},{"Bonus":0,"Continent":"K54","ID":10981,"Name":"Suppi","PlayerID":699856962,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10981","ServerKey":"pl181","X":411,"Y":547},{"Bonus":0,"Continent":"K44","ID":10982,"Name":"0041 Wioska","PlayerID":3909522,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10982","ServerKey":"pl181","X":432,"Y":420},{"Bonus":0,"Continent":"K56","ID":10983,"Name":"Wioska","PlayerID":698845189,"Points":8765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10983","ServerKey":"pl181","X":604,"Y":516},{"Bonus":0,"Continent":"K64","ID":10984,"Name":"~084.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10984","ServerKey":"pl181","X":475,"Y":602},{"Bonus":0,"Continent":"K44","ID":10985,"Name":"A031","PlayerID":8740199,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10985","ServerKey":"pl181","X":450,"Y":408},{"Bonus":0,"Continent":"K55","ID":10986,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10986","ServerKey":"pl181","X":572,"Y":576},{"Bonus":0,"Continent":"K56","ID":10987,"Name":"024.","PlayerID":8900955,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10987","ServerKey":"pl181","X":600,"Y":522},{"Bonus":0,"Continent":"K43","ID":10989,"Name":"x Wioska barbarzyƄska","PlayerID":698290577,"Points":7494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10989","ServerKey":"pl181","X":398,"Y":495},{"Bonus":0,"Continent":"K54","ID":10990,"Name":"B 001.","PlayerID":849028088,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10990","ServerKey":"pl181","X":439,"Y":585},{"Bonus":0,"Continent":"K46","ID":10991,"Name":"A04","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10991","ServerKey":"pl181","X":600,"Y":465},{"Bonus":0,"Continent":"K55","ID":10992,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10992","ServerKey":"pl181","X":576,"Y":570},{"Bonus":0,"Continent":"K54","ID":10993,"Name":"s010","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10993","ServerKey":"pl181","X":411,"Y":554},{"Bonus":0,"Continent":"K44","ID":10994,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10994","ServerKey":"pl181","X":404,"Y":458},{"Bonus":0,"Continent":"K44","ID":10995,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10995","ServerKey":"pl181","X":418,"Y":433},{"Bonus":0,"Continent":"K56","ID":10996,"Name":"EXA","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10996","ServerKey":"pl181","X":603,"Y":529},{"Bonus":0,"Continent":"K44","ID":10997,"Name":"Suppi","PlayerID":699856962,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10997","ServerKey":"pl181","X":425,"Y":424},{"Bonus":0,"Continent":"K44","ID":10998,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10998","ServerKey":"pl181","X":406,"Y":454},{"Bonus":0,"Continent":"K43","ID":10999,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=10999","ServerKey":"pl181","X":396,"Y":477},{"Bonus":0,"Continent":"K45","ID":11000,"Name":"094","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11000","ServerKey":"pl181","X":569,"Y":419},{"Bonus":0,"Continent":"K55","ID":11001,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11001","ServerKey":"pl181","X":584,"Y":566},{"Bonus":0,"Continent":"K54","ID":11002,"Name":"NOT?","PlayerID":9236866,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11002","ServerKey":"pl181","X":410,"Y":554},{"Bonus":0,"Continent":"K35","ID":11003,"Name":"D004","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11003","ServerKey":"pl181","X":511,"Y":395},{"Bonus":0,"Continent":"K54","ID":11004,"Name":"Wioska *wyrwszat","PlayerID":699364813,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11004","ServerKey":"pl181","X":461,"Y":599},{"Bonus":0,"Continent":"K35","ID":11005,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11005","ServerKey":"pl181","X":517,"Y":397},{"Bonus":0,"Continent":"K44","ID":11006,"Name":"K44 x018","PlayerID":698364331,"Points":7262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11006","ServerKey":"pl181","X":442,"Y":414},{"Bonus":0,"Continent":"K54","ID":11007,"Name":"SSJ 006","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11007","ServerKey":"pl181","X":488,"Y":596},{"Bonus":0,"Continent":"K35","ID":11008,"Name":".:046:.Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11008","ServerKey":"pl181","X":502,"Y":393},{"Bonus":0,"Continent":"K64","ID":11009,"Name":"EKG M12","PlayerID":33900,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11009","ServerKey":"pl181","X":486,"Y":604},{"Bonus":0,"Continent":"K45","ID":11010,"Name":"BBB","PlayerID":1006847,"Points":10861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11010","ServerKey":"pl181","X":560,"Y":415},{"Bonus":0,"Continent":"K56","ID":11011,"Name":"Wioska","PlayerID":698845189,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11011","ServerKey":"pl181","X":606,"Y":516},{"Bonus":0,"Continent":"K54","ID":11012,"Name":"019. Mithril Mountain","PlayerID":849028088,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11012","ServerKey":"pl181","X":435,"Y":583},{"Bonus":0,"Continent":"K55","ID":11013,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11013","ServerKey":"pl181","X":573,"Y":571},{"Bonus":0,"Continent":"K44","ID":11014,"Name":"A002","PlayerID":8740199,"Points":11073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11014","ServerKey":"pl181","X":467,"Y":401},{"Bonus":0,"Continent":"K45","ID":11015,"Name":"BBB","PlayerID":1006847,"Points":6920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11015","ServerKey":"pl181","X":564,"Y":419},{"Bonus":0,"Continent":"K65","ID":11016,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11016","ServerKey":"pl181","X":516,"Y":606},{"Bonus":0,"Continent":"K54","ID":11017,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11017","ServerKey":"pl181","X":408,"Y":552},{"Bonus":0,"Continent":"K46","ID":11018,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":8504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11018","ServerKey":"pl181","X":607,"Y":491},{"Bonus":0,"Continent":"K64","ID":11019,"Name":"NOT!!","PlayerID":9236866,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11019","ServerKey":"pl181","X":470,"Y":600},{"Bonus":0,"Continent":"K53","ID":11020,"Name":"Motywacja *","PlayerID":1804724,"Points":7675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11020","ServerKey":"pl181","X":396,"Y":523},{"Bonus":0,"Continent":"K54","ID":11021,"Name":"NOT!!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11021","ServerKey":"pl181","X":467,"Y":598},{"Bonus":0,"Continent":"K64","ID":11022,"Name":"gdzie napisane ĆŒe moĆŒna farmić?","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11022","ServerKey":"pl181","X":464,"Y":600},{"Bonus":0,"Continent":"K46","ID":11023,"Name":"0025","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11023","ServerKey":"pl181","X":603,"Y":492},{"Bonus":0,"Continent":"K46","ID":11024,"Name":"*038*","PlayerID":698670524,"Points":3196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11024","ServerKey":"pl181","X":604,"Y":498},{"Bonus":0,"Continent":"K54","ID":11025,"Name":"Pataszon","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11025","ServerKey":"pl181","X":414,"Y":558},{"Bonus":0,"Continent":"K35","ID":11027,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11027","ServerKey":"pl181","X":517,"Y":395},{"Bonus":0,"Continent":"K44","ID":11028,"Name":"Gravity","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11028","ServerKey":"pl181","X":405,"Y":453},{"Bonus":0,"Continent":"K54","ID":11029,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11029","ServerKey":"pl181","X":400,"Y":533},{"Bonus":0,"Continent":"K44","ID":11030,"Name":"0051","PlayerID":848913037,"Points":9084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11030","ServerKey":"pl181","X":461,"Y":475},{"Bonus":0,"Continent":"K54","ID":11031,"Name":"NOT?","PlayerID":9236866,"Points":5535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11031","ServerKey":"pl181","X":405,"Y":544},{"Bonus":0,"Continent":"K54","ID":11032,"Name":"022","PlayerID":699425709,"Points":9040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11032","ServerKey":"pl181","X":405,"Y":549},{"Bonus":0,"Continent":"K56","ID":11033,"Name":"Tesa 2","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11033","ServerKey":"pl181","X":601,"Y":519},{"Bonus":0,"Continent":"K45","ID":11034,"Name":"011","PlayerID":849088515,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11034","ServerKey":"pl181","X":596,"Y":459},{"Bonus":0,"Continent":"K65","ID":11035,"Name":"ƚmieszki","PlayerID":3454753,"Points":9057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11035","ServerKey":"pl181","X":531,"Y":617},{"Bonus":0,"Continent":"K55","ID":11036,"Name":"019. Kalf","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11036","ServerKey":"pl181","X":585,"Y":562},{"Bonus":0,"Continent":"K55","ID":11037,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11037","ServerKey":"pl181","X":572,"Y":579},{"Bonus":0,"Continent":"K54","ID":11038,"Name":"Twierdza 006","PlayerID":849084740,"Points":9211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11038","ServerKey":"pl181","X":421,"Y":569},{"Bonus":1,"Continent":"K65","ID":11039,"Name":"0223","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11039","ServerKey":"pl181","X":522,"Y":602},{"Bonus":0,"Continent":"K43","ID":11040,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11040","ServerKey":"pl181","X":398,"Y":480},{"Bonus":0,"Continent":"K45","ID":11041,"Name":"020","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11041","ServerKey":"pl181","X":556,"Y":411},{"Bonus":0,"Continent":"K35","ID":11042,"Name":"037","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11042","ServerKey":"pl181","X":500,"Y":375},{"Bonus":0,"Continent":"K35","ID":11043,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11043","ServerKey":"pl181","X":529,"Y":398},{"Bonus":0,"Continent":"K55","ID":11044,"Name":"- 107 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11044","ServerKey":"pl181","X":534,"Y":599},{"Bonus":0,"Continent":"K54","ID":11045,"Name":"105 RUSZYMY NA ZNAK (BACH)","PlayerID":699382126,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11045","ServerKey":"pl181","X":409,"Y":553},{"Bonus":0,"Continent":"K45","ID":11047,"Name":"A11 Maroni","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11047","ServerKey":"pl181","X":599,"Y":460},{"Bonus":0,"Continent":"K54","ID":11048,"Name":"0543","PlayerID":698659980,"Points":11432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11048","ServerKey":"pl181","X":474,"Y":555},{"Bonus":0,"Continent":"K55","ID":11049,"Name":"001. Kathare","PlayerID":873575,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11049","ServerKey":"pl181","X":564,"Y":599},{"Bonus":0,"Continent":"K44","ID":11050,"Name":"Suppi","PlayerID":699856962,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11050","ServerKey":"pl181","X":426,"Y":422},{"Bonus":0,"Continent":"K34","ID":11051,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11051","ServerKey":"pl181","X":490,"Y":396},{"Bonus":0,"Continent":"K45","ID":11053,"Name":"057 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11053","ServerKey":"pl181","X":539,"Y":404},{"Bonus":0,"Continent":"K55","ID":11054,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11054","ServerKey":"pl181","X":590,"Y":558},{"Bonus":0,"Continent":"K54","ID":11055,"Name":"024","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11055","ServerKey":"pl181","X":402,"Y":544},{"Bonus":0,"Continent":"K55","ID":11056,"Name":"013","PlayerID":6160655,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11056","ServerKey":"pl181","X":599,"Y":541},{"Bonus":0,"Continent":"K45","ID":11057,"Name":"051","PlayerID":699761749,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11057","ServerKey":"pl181","X":566,"Y":416},{"Bonus":0,"Continent":"K35","ID":11058,"Name":"D003","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11058","ServerKey":"pl181","X":512,"Y":396},{"Bonus":0,"Continent":"K64","ID":11059,"Name":"002","PlayerID":7976264,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11059","ServerKey":"pl181","X":490,"Y":602},{"Bonus":0,"Continent":"K45","ID":11060,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11060","ServerKey":"pl181","X":580,"Y":433},{"Bonus":0,"Continent":"K54","ID":11061,"Name":"007","PlayerID":9167250,"Points":8602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11061","ServerKey":"pl181","X":425,"Y":577},{"Bonus":0,"Continent":"K34","ID":11062,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11062","ServerKey":"pl181","X":499,"Y":397},{"Bonus":0,"Continent":"K44","ID":11063,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11063","ServerKey":"pl181","X":457,"Y":406},{"Bonus":0,"Continent":"K56","ID":11064,"Name":"027 Dalgon","PlayerID":8337151,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11064","ServerKey":"pl181","X":607,"Y":505},{"Bonus":1,"Continent":"K43","ID":11065,"Name":"029","PlayerID":699510259,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11065","ServerKey":"pl181","X":397,"Y":495},{"Bonus":0,"Continent":"K45","ID":11066,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11066","ServerKey":"pl181","X":504,"Y":470},{"Bonus":0,"Continent":"K54","ID":11067,"Name":"Rotrigo","PlayerID":849030226,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11067","ServerKey":"pl181","X":402,"Y":534},{"Bonus":0,"Continent":"K43","ID":11068,"Name":"Tank 004. *NW*","PlayerID":698290577,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11068","ServerKey":"pl181","X":398,"Y":498},{"Bonus":0,"Continent":"K34","ID":11069,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11069","ServerKey":"pl181","X":486,"Y":395},{"Bonus":0,"Continent":"K65","ID":11070,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11070","ServerKey":"pl181","X":515,"Y":603},{"Bonus":0,"Continent":"K43","ID":11071,"Name":"[A]_[014] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11071","ServerKey":"pl181","X":395,"Y":489},{"Bonus":0,"Continent":"K54","ID":11072,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11072","ServerKey":"pl181","X":402,"Y":531},{"Bonus":0,"Continent":"K44","ID":11073,"Name":"004","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11073","ServerKey":"pl181","X":410,"Y":445},{"Bonus":2,"Continent":"K65","ID":11074,"Name":"Sector 4","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11074","ServerKey":"pl181","X":513,"Y":605},{"Bonus":0,"Continent":"K55","ID":11075,"Name":"One","PlayerID":848926293,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11075","ServerKey":"pl181","X":585,"Y":561},{"Bonus":0,"Continent":"K45","ID":11076,"Name":"[377] Chorągiewka na wietrze","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11076","ServerKey":"pl181","X":583,"Y":436},{"Bonus":0,"Continent":"K56","ID":11077,"Name":"072","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11077","ServerKey":"pl181","X":607,"Y":508},{"Bonus":0,"Continent":"K46","ID":11078,"Name":"0015","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11078","ServerKey":"pl181","X":603,"Y":497},{"Bonus":0,"Continent":"K35","ID":11079,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11079","ServerKey":"pl181","X":531,"Y":399},{"Bonus":0,"Continent":"K56","ID":11080,"Name":"040 Charpo","PlayerID":8323711,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11080","ServerKey":"pl181","X":627,"Y":507},{"Bonus":0,"Continent":"K45","ID":11081,"Name":"[373] Chorągiewka na wietrze","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11081","ServerKey":"pl181","X":586,"Y":436},{"Bonus":0,"Continent":"K56","ID":11082,"Name":"Vasperland_009","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11082","ServerKey":"pl181","X":624,"Y":503},{"Bonus":0,"Continent":"K54","ID":11083,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11083","ServerKey":"pl181","X":457,"Y":598},{"Bonus":0,"Continent":"K65","ID":11085,"Name":"0224","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11085","ServerKey":"pl181","X":519,"Y":603},{"Bonus":0,"Continent":"K65","ID":11086,"Name":"Formouth Garrison","PlayerID":8199417,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11086","ServerKey":"pl181","X":527,"Y":604},{"Bonus":8,"Continent":"K56","ID":11087,"Name":"Gattacka","PlayerID":699298370,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11087","ServerKey":"pl181","X":605,"Y":503},{"Bonus":0,"Continent":"K46","ID":11088,"Name":"Ethan Hunt 03","PlayerID":698702991,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11088","ServerKey":"pl181","X":601,"Y":476},{"Bonus":0,"Continent":"K35","ID":11089,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11089","ServerKey":"pl181","X":518,"Y":398},{"Bonus":0,"Continent":"K54","ID":11090,"Name":"007 Ogr","PlayerID":699856962,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11090","ServerKey":"pl181","X":401,"Y":541},{"Bonus":0,"Continent":"K35","ID":11091,"Name":".achim.","PlayerID":6936607,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11091","ServerKey":"pl181","X":530,"Y":399},{"Bonus":0,"Continent":"K55","ID":11092,"Name":"sƂodziuteƄka 07","PlayerID":8013349,"Points":3752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11092","ServerKey":"pl181","X":599,"Y":535},{"Bonus":0,"Continent":"K54","ID":11093,"Name":"070","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11093","ServerKey":"pl181","X":413,"Y":524},{"Bonus":0,"Continent":"K44","ID":11094,"Name":"+44 74 Saint Bonnet de Mure","PlayerID":698361257,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11094","ServerKey":"pl181","X":447,"Y":474},{"Bonus":0,"Continent":"K54","ID":11095,"Name":"048o","PlayerID":699099811,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11095","ServerKey":"pl181","X":443,"Y":586},{"Bonus":0,"Continent":"K55","ID":11096,"Name":"Wioska 453","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11096","ServerKey":"pl181","X":595,"Y":549},{"Bonus":0,"Continent":"K54","ID":11097,"Name":"0038","PlayerID":699280514,"Points":7557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11097","ServerKey":"pl181","X":450,"Y":593},{"Bonus":0,"Continent":"K35","ID":11098,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11098","ServerKey":"pl181","X":529,"Y":397},{"Bonus":0,"Continent":"K44","ID":11099,"Name":"Gravity","PlayerID":698962117,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11099","ServerKey":"pl181","X":403,"Y":458},{"Bonus":0,"Continent":"K53","ID":11100,"Name":"Knowhere","PlayerID":699723284,"Points":3593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11100","ServerKey":"pl181","X":397,"Y":513},{"Bonus":0,"Continent":"K46","ID":11101,"Name":"A15","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11101","ServerKey":"pl181","X":600,"Y":464},{"Bonus":8,"Continent":"K44","ID":11102,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11102","ServerKey":"pl181","X":454,"Y":403},{"Bonus":0,"Continent":"K44","ID":11103,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11103","ServerKey":"pl181","X":403,"Y":464},{"Bonus":0,"Continent":"K55","ID":11104,"Name":"[037]","PlayerID":848985692,"Points":10170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11104","ServerKey":"pl181","X":594,"Y":543},{"Bonus":0,"Continent":"K35","ID":11105,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11105","ServerKey":"pl181","X":519,"Y":397},{"Bonus":0,"Continent":"K56","ID":11106,"Name":"032 Doru Araeba","PlayerID":8337151,"Points":11074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11106","ServerKey":"pl181","X":605,"Y":502},{"Bonus":0,"Continent":"K55","ID":11107,"Name":"Gomora","PlayerID":848915531,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11107","ServerKey":"pl181","X":509,"Y":545},{"Bonus":0,"Continent":"K34","ID":11108,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11108","ServerKey":"pl181","X":490,"Y":393},{"Bonus":0,"Continent":"K65","ID":11109,"Name":"#001","PlayerID":849001572,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11109","ServerKey":"pl181","X":545,"Y":600},{"Bonus":0,"Continent":"K44","ID":11110,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11110","ServerKey":"pl181","X":402,"Y":457},{"Bonus":1,"Continent":"K55","ID":11111,"Name":"004","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11111","ServerKey":"pl181","X":573,"Y":579},{"Bonus":0,"Continent":"K44","ID":11112,"Name":"0039 Wioska","PlayerID":3909522,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11112","ServerKey":"pl181","X":437,"Y":419},{"Bonus":0,"Continent":"K44","ID":11113,"Name":"002","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11113","ServerKey":"pl181","X":409,"Y":445},{"Bonus":0,"Continent":"K55","ID":11114,"Name":"mamm","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11114","ServerKey":"pl181","X":569,"Y":577},{"Bonus":0,"Continent":"K55","ID":11115,"Name":"1.San Diego","PlayerID":698215322,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11115","ServerKey":"pl181","X":550,"Y":591},{"Bonus":0,"Continent":"K43","ID":11116,"Name":"[A]_[010] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11116","ServerKey":"pl181","X":397,"Y":486},{"Bonus":0,"Continent":"K43","ID":11117,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11117","ServerKey":"pl181","X":398,"Y":479},{"Bonus":0,"Continent":"K44","ID":11118,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11118","ServerKey":"pl181","X":458,"Y":402},{"Bonus":0,"Continent":"K43","ID":11119,"Name":"Knowhere","PlayerID":699723284,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11119","ServerKey":"pl181","X":394,"Y":494},{"Bonus":0,"Continent":"K55","ID":11120,"Name":"Wioska Gilbert","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11120","ServerKey":"pl181","X":564,"Y":582},{"Bonus":0,"Continent":"K35","ID":11121,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11121","ServerKey":"pl181","X":516,"Y":394},{"Bonus":0,"Continent":"K54","ID":11122,"Name":"005","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11122","ServerKey":"pl181","X":404,"Y":540},{"Bonus":0,"Continent":"K35","ID":11123,"Name":"D002","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11123","ServerKey":"pl181","X":511,"Y":397},{"Bonus":0,"Continent":"K54","ID":11124,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11124","ServerKey":"pl181","X":407,"Y":543},{"Bonus":0,"Continent":"K34","ID":11125,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11125","ServerKey":"pl181","X":484,"Y":394},{"Bonus":0,"Continent":"K54","ID":11126,"Name":"004 Gusto","PlayerID":699856962,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11126","ServerKey":"pl181","X":401,"Y":539},{"Bonus":0,"Continent":"K44","ID":11127,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11127","ServerKey":"pl181","X":411,"Y":444},{"Bonus":0,"Continent":"K45","ID":11129,"Name":"026","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11129","ServerKey":"pl181","X":564,"Y":417},{"Bonus":0,"Continent":"K54","ID":11130,"Name":"012","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11130","ServerKey":"pl181","X":405,"Y":548},{"Bonus":0,"Continent":"K45","ID":11132,"Name":"006","PlayerID":699722599,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11132","ServerKey":"pl181","X":585,"Y":441},{"Bonus":8,"Continent":"K64","ID":11133,"Name":"~002.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11133","ServerKey":"pl181","X":495,"Y":606},{"Bonus":0,"Continent":"K44","ID":11134,"Name":"0077","PlayerID":699431255,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11134","ServerKey":"pl181","X":446,"Y":408},{"Bonus":0,"Continent":"K45","ID":11135,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11135","ServerKey":"pl181","X":525,"Y":400},{"Bonus":0,"Continent":"K44","ID":11136,"Name":"A032","PlayerID":8740199,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11136","ServerKey":"pl181","X":449,"Y":407},{"Bonus":0,"Continent":"K55","ID":11137,"Name":"PYZA 003 Gajder","PlayerID":33900,"Points":10046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11137","ServerKey":"pl181","X":580,"Y":570},{"Bonus":0,"Continent":"K55","ID":11138,"Name":"007","PlayerID":699524362,"Points":5778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11138","ServerKey":"pl181","X":582,"Y":566},{"Bonus":0,"Continent":"K34","ID":11139,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11139","ServerKey":"pl181","X":484,"Y":393},{"Bonus":0,"Continent":"K65","ID":11140,"Name":"0225","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11140","ServerKey":"pl181","X":520,"Y":603},{"Bonus":0,"Continent":"K44","ID":11141,"Name":"00331 Wioska","PlayerID":3909522,"Points":9096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11141","ServerKey":"pl181","X":431,"Y":418},{"Bonus":0,"Continent":"K34","ID":11142,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11142","ServerKey":"pl181","X":475,"Y":396},{"Bonus":3,"Continent":"K45","ID":11143,"Name":"010","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11143","ServerKey":"pl181","X":553,"Y":412},{"Bonus":0,"Continent":"K44","ID":11144,"Name":"-002- Psst psst psst","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11144","ServerKey":"pl181","X":456,"Y":406},{"Bonus":0,"Continent":"K34","ID":11145,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11145","ServerKey":"pl181","X":478,"Y":397},{"Bonus":0,"Continent":"K54","ID":11146,"Name":"139 s004","PlayerID":699382126,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11146","ServerKey":"pl181","X":406,"Y":555},{"Bonus":0,"Continent":"K54","ID":11147,"Name":"140 s009","PlayerID":699382126,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11147","ServerKey":"pl181","X":407,"Y":555},{"Bonus":6,"Continent":"K55","ID":11149,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11149","ServerKey":"pl181","X":539,"Y":596},{"Bonus":0,"Continent":"K55","ID":11150,"Name":"- 125 -","PlayerID":849018239,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11150","ServerKey":"pl181","X":550,"Y":593},{"Bonus":0,"Continent":"K34","ID":11151,"Name":"VN Dante Zogriatis","PlayerID":699883079,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11151","ServerKey":"pl181","X":475,"Y":379},{"Bonus":0,"Continent":"K56","ID":11152,"Name":"0062","PlayerID":6510480,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11152","ServerKey":"pl181","X":606,"Y":513},{"Bonus":0,"Continent":"K44","ID":11153,"Name":"B19","PlayerID":849093422,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11153","ServerKey":"pl181","X":499,"Y":401},{"Bonus":0,"Continent":"K55","ID":11154,"Name":"Jaaa","PlayerID":698635863,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11154","ServerKey":"pl181","X":569,"Y":581},{"Bonus":0,"Continent":"K34","ID":11155,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11155","ServerKey":"pl181","X":486,"Y":393},{"Bonus":0,"Continent":"K56","ID":11156,"Name":"Tesa 6","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11156","ServerKey":"pl181","X":603,"Y":520},{"Bonus":0,"Continent":"K64","ID":11157,"Name":"#037","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11157","ServerKey":"pl181","X":482,"Y":619},{"Bonus":0,"Continent":"K35","ID":11158,"Name":".:133:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11158","ServerKey":"pl181","X":507,"Y":397},{"Bonus":0,"Continent":"K43","ID":11159,"Name":"[A]_[001] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11159","ServerKey":"pl181","X":394,"Y":482},{"Bonus":2,"Continent":"K45","ID":11160,"Name":"015","PlayerID":699722599,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11160","ServerKey":"pl181","X":592,"Y":447},{"Bonus":0,"Continent":"K44","ID":11161,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11161","ServerKey":"pl181","X":459,"Y":402},{"Bonus":0,"Continent":"K55","ID":11162,"Name":"002","PlayerID":698169715,"Points":3437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11162","ServerKey":"pl181","X":584,"Y":567},{"Bonus":0,"Continent":"K45","ID":11163,"Name":"058 Wioska Ɓasiak17","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11163","ServerKey":"pl181","X":540,"Y":404},{"Bonus":0,"Continent":"K54","ID":11164,"Name":"0628","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11164","ServerKey":"pl181","X":444,"Y":591},{"Bonus":0,"Continent":"K45","ID":11165,"Name":"037","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11165","ServerKey":"pl181","X":561,"Y":401},{"Bonus":0,"Continent":"K54","ID":11166,"Name":"023. Frontier","PlayerID":849028088,"Points":7650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11166","ServerKey":"pl181","X":436,"Y":586},{"Bonus":0,"Continent":"K44","ID":11167,"Name":"003. Sussex","PlayerID":699660539,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11167","ServerKey":"pl181","X":424,"Y":427},{"Bonus":0,"Continent":"K55","ID":11168,"Name":"- 024 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11168","ServerKey":"pl181","X":542,"Y":598},{"Bonus":0,"Continent":"K45","ID":11169,"Name":"040","PlayerID":7271812,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11169","ServerKey":"pl181","X":542,"Y":401},{"Bonus":0,"Continent":"K43","ID":11170,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11170","ServerKey":"pl181","X":387,"Y":466},{"Bonus":0,"Continent":"K65","ID":11171,"Name":"Elevator Hall","PlayerID":8199417,"Points":8700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11171","ServerKey":"pl181","X":532,"Y":603},{"Bonus":0,"Continent":"K64","ID":11172,"Name":"0201","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11172","ServerKey":"pl181","X":451,"Y":609},{"Bonus":0,"Continent":"K45","ID":11173,"Name":"BBB","PlayerID":1006847,"Points":8101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11173","ServerKey":"pl181","X":584,"Y":440},{"Bonus":0,"Continent":"K64","ID":11175,"Name":"009. Sztucznie","PlayerID":7976264,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11175","ServerKey":"pl181","X":475,"Y":603},{"Bonus":0,"Continent":"K44","ID":11176,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11176","ServerKey":"pl181","X":459,"Y":405},{"Bonus":0,"Continent":"K43","ID":11177,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11177","ServerKey":"pl181","X":396,"Y":481},{"Bonus":0,"Continent":"K45","ID":11179,"Name":"A07","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11179","ServerKey":"pl181","X":599,"Y":462},{"Bonus":0,"Continent":"K55","ID":11180,"Name":"- 067 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11180","ServerKey":"pl181","X":549,"Y":594},{"Bonus":0,"Continent":"K65","ID":11181,"Name":"012","PlayerID":7976264,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11181","ServerKey":"pl181","X":505,"Y":606},{"Bonus":0,"Continent":"K45","ID":11182,"Name":"055 BuƂeczka vv10","PlayerID":699491076,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11182","ServerKey":"pl181","X":537,"Y":400},{"Bonus":0,"Continent":"K64","ID":11183,"Name":"~042.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11183","ServerKey":"pl181","X":481,"Y":606},{"Bonus":2,"Continent":"K34","ID":11184,"Name":"K34 x023","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11184","ServerKey":"pl181","X":467,"Y":397},{"Bonus":0,"Continent":"K45","ID":11185,"Name":"[401]Chwila prawdy","PlayerID":848985692,"Points":7446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11185","ServerKey":"pl181","X":578,"Y":431},{"Bonus":0,"Continent":"K44","ID":11186,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11186","ServerKey":"pl181","X":404,"Y":457},{"Bonus":0,"Continent":"K56","ID":11187,"Name":"011","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11187","ServerKey":"pl181","X":606,"Y":511},{"Bonus":0,"Continent":"K46","ID":11188,"Name":"017","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11188","ServerKey":"pl181","X":606,"Y":499},{"Bonus":0,"Continent":"K65","ID":11189,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11189","ServerKey":"pl181","X":510,"Y":606},{"Bonus":0,"Continent":"K35","ID":11190,"Name":"D005","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11190","ServerKey":"pl181","X":509,"Y":396},{"Bonus":8,"Continent":"K54","ID":11191,"Name":"0000002$","PlayerID":849089881,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11191","ServerKey":"pl181","X":434,"Y":579},{"Bonus":0,"Continent":"K34","ID":11192,"Name":"North Blue","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11192","ServerKey":"pl181","X":485,"Y":396},{"Bonus":0,"Continent":"K53","ID":11193,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11193","ServerKey":"pl181","X":396,"Y":513},{"Bonus":0,"Continent":"K43","ID":11195,"Name":"xhav","PlayerID":698807570,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11195","ServerKey":"pl181","X":396,"Y":473},{"Bonus":0,"Continent":"K54","ID":11196,"Name":"0640","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11196","ServerKey":"pl181","X":444,"Y":592},{"Bonus":0,"Continent":"K44","ID":11197,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11197","ServerKey":"pl181","X":474,"Y":400},{"Bonus":0,"Continent":"K64","ID":11198,"Name":"EKG .::. freaky97/4","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11198","ServerKey":"pl181","X":485,"Y":606},{"Bonus":7,"Continent":"K35","ID":11199,"Name":".:102:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11199","ServerKey":"pl181","X":504,"Y":393},{"Bonus":0,"Continent":"K65","ID":11200,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11200","ServerKey":"pl181","X":529,"Y":604},{"Bonus":3,"Continent":"K35","ID":11201,"Name":"A05","PlayerID":849093422,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11201","ServerKey":"pl181","X":506,"Y":393},{"Bonus":0,"Continent":"K55","ID":11202,"Name":"kathare xx","PlayerID":873575,"Points":10545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11202","ServerKey":"pl181","X":519,"Y":564},{"Bonus":0,"Continent":"K44","ID":11203,"Name":"K44 x011","PlayerID":698364331,"Points":9194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11203","ServerKey":"pl181","X":451,"Y":405},{"Bonus":0,"Continent":"K35","ID":11204,"Name":"D023","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11204","ServerKey":"pl181","X":509,"Y":397},{"Bonus":0,"Continent":"K53","ID":11205,"Name":"019","PlayerID":699510259,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11205","ServerKey":"pl181","X":394,"Y":515},{"Bonus":3,"Continent":"K44","ID":11206,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11206","ServerKey":"pl181","X":401,"Y":464},{"Bonus":0,"Continent":"K54","ID":11208,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11208","ServerKey":"pl181","X":403,"Y":545},{"Bonus":0,"Continent":"K54","ID":11209,"Name":"104 POCZUJE KAĆ»DY WACK","PlayerID":699382126,"Points":10542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11209","ServerKey":"pl181","X":410,"Y":552},{"Bonus":0,"Continent":"K46","ID":11210,"Name":"A03","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11210","ServerKey":"pl181","X":600,"Y":463},{"Bonus":0,"Continent":"K64","ID":11212,"Name":"barba","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11212","ServerKey":"pl181","X":464,"Y":601},{"Bonus":1,"Continent":"K53","ID":11213,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11213","ServerKey":"pl181","X":392,"Y":503},{"Bonus":0,"Continent":"K64","ID":11214,"Name":"0015","PlayerID":33900,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11214","ServerKey":"pl181","X":472,"Y":603},{"Bonus":0,"Continent":"K44","ID":11215,"Name":"Gravity","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11215","ServerKey":"pl181","X":407,"Y":451},{"Bonus":0,"Continent":"K45","ID":11216,"Name":"ADEN","PlayerID":698588535,"Points":10898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11216","ServerKey":"pl181","X":563,"Y":416},{"Bonus":0,"Continent":"K45","ID":11217,"Name":"003","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11217","ServerKey":"pl181","X":587,"Y":442},{"Bonus":0,"Continent":"K54","ID":11218,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11218","ServerKey":"pl181","X":405,"Y":551},{"Bonus":0,"Continent":"K34","ID":11219,"Name":"HoƂopole","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11219","ServerKey":"pl181","X":498,"Y":394},{"Bonus":0,"Continent":"K45","ID":11220,"Name":"[374] Chorągiewka na wietrze","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11220","ServerKey":"pl181","X":587,"Y":438},{"Bonus":0,"Continent":"K45","ID":11221,"Name":"A08","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11221","ServerKey":"pl181","X":599,"Y":461},{"Bonus":0,"Continent":"K56","ID":11222,"Name":"024","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11222","ServerKey":"pl181","X":608,"Y":503},{"Bonus":0,"Continent":"K34","ID":11224,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11224","ServerKey":"pl181","X":485,"Y":393},{"Bonus":0,"Continent":"K46","ID":11225,"Name":"006 Otwieraj ryyyyjjjj","PlayerID":699272633,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11225","ServerKey":"pl181","X":604,"Y":487},{"Bonus":0,"Continent":"K45","ID":11226,"Name":"030","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11226","ServerKey":"pl181","X":565,"Y":419},{"Bonus":2,"Continent":"K44","ID":11227,"Name":"016 Denver","PlayerID":9291984,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11227","ServerKey":"pl181","X":430,"Y":420},{"Bonus":0,"Continent":"K44","ID":11228,"Name":"0082","PlayerID":699431255,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11228","ServerKey":"pl181","X":441,"Y":411},{"Bonus":0,"Continent":"K55","ID":11229,"Name":"#009","PlayerID":849001572,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11229","ServerKey":"pl181","X":537,"Y":597},{"Bonus":0,"Continent":"K45","ID":11230,"Name":"024","PlayerID":699722599,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11230","ServerKey":"pl181","X":593,"Y":446},{"Bonus":0,"Continent":"K54","ID":11231,"Name":"B.006","PlayerID":849088243,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11231","ServerKey":"pl181","X":415,"Y":567},{"Bonus":0,"Continent":"K65","ID":11232,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11232","ServerKey":"pl181","X":535,"Y":603},{"Bonus":0,"Continent":"K45","ID":11233,"Name":"016","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11233","ServerKey":"pl181","X":557,"Y":413},{"Bonus":0,"Continent":"K45","ID":11234,"Name":"013","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11234","ServerKey":"pl181","X":596,"Y":457},{"Bonus":0,"Continent":"K43","ID":11235,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11235","ServerKey":"pl181","X":395,"Y":488},{"Bonus":0,"Continent":"K56","ID":11236,"Name":"039 Naantali","PlayerID":699272880,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11236","ServerKey":"pl181","X":600,"Y":530},{"Bonus":0,"Continent":"K65","ID":11237,"Name":"#037","PlayerID":849001572,"Points":5481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11237","ServerKey":"pl181","X":532,"Y":601},{"Bonus":0,"Continent":"K53","ID":11238,"Name":"Wioska krulu zloty","PlayerID":849030226,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11238","ServerKey":"pl181","X":399,"Y":534},{"Bonus":0,"Continent":"K55","ID":11239,"Name":"PYRLANDIA 027","PlayerID":33900,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11239","ServerKey":"pl181","X":564,"Y":585},{"Bonus":0,"Continent":"K53","ID":11240,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11240","ServerKey":"pl181","X":394,"Y":506},{"Bonus":0,"Continent":"K54","ID":11241,"Name":"0627","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11241","ServerKey":"pl181","X":443,"Y":589},{"Bonus":0,"Continent":"K53","ID":11242,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11242","ServerKey":"pl181","X":395,"Y":518},{"Bonus":0,"Continent":"K46","ID":11243,"Name":"008 Bonus wyyymiękƂ","PlayerID":699272633,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11243","ServerKey":"pl181","X":603,"Y":481},{"Bonus":0,"Continent":"K65","ID":11244,"Name":"Z01","PlayerID":2293376,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11244","ServerKey":"pl181","X":514,"Y":603},{"Bonus":2,"Continent":"K55","ID":11245,"Name":"003. Bjorn","PlayerID":699373599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11245","ServerKey":"pl181","X":585,"Y":567},{"Bonus":0,"Continent":"K45","ID":11246,"Name":"004","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11246","ServerKey":"pl181","X":552,"Y":406},{"Bonus":0,"Continent":"K44","ID":11247,"Name":"Suppi","PlayerID":699856962,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11247","ServerKey":"pl181","X":425,"Y":423},{"Bonus":0,"Continent":"K45","ID":11248,"Name":"016","PlayerID":699722599,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11248","ServerKey":"pl181","X":591,"Y":450},{"Bonus":0,"Continent":"K44","ID":11249,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11249","ServerKey":"pl181","X":402,"Y":464},{"Bonus":0,"Continent":"K34","ID":11250,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":5846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11250","ServerKey":"pl181","X":469,"Y":398},{"Bonus":0,"Continent":"K44","ID":11251,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11251","ServerKey":"pl181","X":460,"Y":400},{"Bonus":0,"Continent":"K45","ID":11252,"Name":"013","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11252","ServerKey":"pl181","X":552,"Y":408},{"Bonus":0,"Continent":"K34","ID":11253,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11253","ServerKey":"pl181","X":471,"Y":398},{"Bonus":0,"Continent":"K43","ID":11254,"Name":"[A]_[020] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11254","ServerKey":"pl181","X":395,"Y":490},{"Bonus":0,"Continent":"K54","ID":11255,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11255","ServerKey":"pl181","X":408,"Y":549},{"Bonus":0,"Continent":"K56","ID":11256,"Name":"=002= ByƂa akcja","PlayerID":3781794,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11256","ServerKey":"pl181","X":606,"Y":553},{"Bonus":0,"Continent":"K35","ID":11257,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11257","ServerKey":"pl181","X":530,"Y":398},{"Bonus":0,"Continent":"K65","ID":11258,"Name":"Coruscant 3","PlayerID":699383121,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11258","ServerKey":"pl181","X":500,"Y":605},{"Bonus":0,"Continent":"K46","ID":11259,"Name":"008","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11259","ServerKey":"pl181","X":608,"Y":499},{"Bonus":0,"Continent":"K45","ID":11260,"Name":"!Wioska 520","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11260","ServerKey":"pl181","X":560,"Y":467},{"Bonus":0,"Continent":"K55","ID":11261,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11261","ServerKey":"pl181","X":573,"Y":580},{"Bonus":0,"Continent":"K34","ID":11262,"Name":".:008:. Chillout","PlayerID":848934935,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11262","ServerKey":"pl181","X":499,"Y":392},{"Bonus":0,"Continent":"K54","ID":11263,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11263","ServerKey":"pl181","X":456,"Y":599},{"Bonus":0,"Continent":"K64","ID":11264,"Name":"~029.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11264","ServerKey":"pl181","X":476,"Y":601},{"Bonus":0,"Continent":"K45","ID":11266,"Name":"014","PlayerID":699722599,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11266","ServerKey":"pl181","X":589,"Y":440},{"Bonus":0,"Continent":"K44","ID":11267,"Name":"0086","PlayerID":699431255,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11267","ServerKey":"pl181","X":441,"Y":412},{"Bonus":0,"Continent":"K56","ID":11268,"Name":"073","PlayerID":699373599,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11268","ServerKey":"pl181","X":607,"Y":516},{"Bonus":0,"Continent":"K65","ID":11269,"Name":"0270","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11269","ServerKey":"pl181","X":527,"Y":602},{"Bonus":0,"Continent":"K55","ID":11270,"Name":"[039]","PlayerID":848985692,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11270","ServerKey":"pl181","X":594,"Y":544},{"Bonus":9,"Continent":"K34","ID":11271,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11271","ServerKey":"pl181","X":477,"Y":399},{"Bonus":0,"Continent":"K65","ID":11272,"Name":"Hojo s Laboratory Sublevel","PlayerID":8199417,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11272","ServerKey":"pl181","X":521,"Y":619},{"Bonus":0,"Continent":"K45","ID":11273,"Name":"151","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11273","ServerKey":"pl181","X":573,"Y":421},{"Bonus":0,"Continent":"K55","ID":11274,"Name":"Z14","PlayerID":873575,"Points":10120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11274","ServerKey":"pl181","X":548,"Y":583},{"Bonus":0,"Continent":"K55","ID":11275,"Name":"- 055 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11275","ServerKey":"pl181","X":539,"Y":598},{"Bonus":0,"Continent":"K56","ID":11276,"Name":"*021*","PlayerID":698670524,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11276","ServerKey":"pl181","X":606,"Y":508},{"Bonus":0,"Continent":"K56","ID":11277,"Name":"005 Wioska barbarzyƄska","PlayerID":6409472,"Points":4232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11277","ServerKey":"pl181","X":608,"Y":510},{"Bonus":0,"Continent":"K65","ID":11278,"Name":"004","PlayerID":8925624,"Points":7978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11278","ServerKey":"pl181","X":515,"Y":605},{"Bonus":0,"Continent":"K44","ID":11279,"Name":"0045 Wioska","PlayerID":3909522,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11279","ServerKey":"pl181","X":436,"Y":417},{"Bonus":0,"Continent":"K56","ID":11280,"Name":"ccc","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11280","ServerKey":"pl181","X":607,"Y":524},{"Bonus":0,"Continent":"K45","ID":11281,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11281","ServerKey":"pl181","X":579,"Y":430},{"Bonus":0,"Continent":"K43","ID":11282,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11282","ServerKey":"pl181","X":398,"Y":465},{"Bonus":0,"Continent":"K44","ID":11283,"Name":"00191 Wioska","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11283","ServerKey":"pl181","X":437,"Y":412},{"Bonus":0,"Continent":"K53","ID":11284,"Name":"Tank xx Niesamowity jeĆșdziec","PlayerID":698290577,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11284","ServerKey":"pl181","X":396,"Y":512},{"Bonus":0,"Continent":"K65","ID":11285,"Name":"- 110 -","PlayerID":849018239,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11285","ServerKey":"pl181","X":540,"Y":601},{"Bonus":0,"Continent":"K44","ID":11286,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11286","ServerKey":"pl181","X":408,"Y":442},{"Bonus":0,"Continent":"K65","ID":11287,"Name":"Sector 4 Slums Area","PlayerID":8199417,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11287","ServerKey":"pl181","X":528,"Y":602},{"Bonus":0,"Continent":"K46","ID":11288,"Name":"027","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11288","ServerKey":"pl181","X":604,"Y":479},{"Bonus":0,"Continent":"K65","ID":11289,"Name":"~007.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11289","ServerKey":"pl181","X":503,"Y":605},{"Bonus":0,"Continent":"K44","ID":11290,"Name":"K44 x032","PlayerID":698364331,"Points":9006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11290","ServerKey":"pl181","X":463,"Y":403},{"Bonus":0,"Continent":"K54","ID":11291,"Name":"0635","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11291","ServerKey":"pl181","X":446,"Y":593},{"Bonus":0,"Continent":"K43","ID":11292,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11292","ServerKey":"pl181","X":397,"Y":478},{"Bonus":0,"Continent":"K45","ID":11293,"Name":"Osada","PlayerID":699098531,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11293","ServerKey":"pl181","X":500,"Y":446},{"Bonus":0,"Continent":"K34","ID":11294,"Name":"Drum Island","PlayerID":699433558,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11294","ServerKey":"pl181","X":486,"Y":396},{"Bonus":4,"Continent":"K45","ID":11295,"Name":"004","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11295","ServerKey":"pl181","X":564,"Y":413},{"Bonus":0,"Continent":"K56","ID":11296,"Name":"Wioska dabkof","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11296","ServerKey":"pl181","X":604,"Y":520},{"Bonus":0,"Continent":"K55","ID":11297,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11297","ServerKey":"pl181","X":588,"Y":555},{"Bonus":0,"Continent":"K65","ID":11298,"Name":"moze teraz","PlayerID":699567608,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11298","ServerKey":"pl181","X":559,"Y":607},{"Bonus":0,"Continent":"K43","ID":11299,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11299","ServerKey":"pl181","X":393,"Y":455},{"Bonus":0,"Continent":"K45","ID":11300,"Name":"016","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11300","ServerKey":"pl181","X":595,"Y":455},{"Bonus":0,"Continent":"K56","ID":11301,"Name":"Gryfios 001","PlayerID":698666810,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11301","ServerKey":"pl181","X":616,"Y":538},{"Bonus":0,"Continent":"K56","ID":11302,"Name":"Tesa 4","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11302","ServerKey":"pl181","X":603,"Y":518},{"Bonus":0,"Continent":"K55","ID":11303,"Name":"181","PlayerID":699851345,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11303","ServerKey":"pl181","X":592,"Y":527},{"Bonus":0,"Continent":"K55","ID":11304,"Name":"010","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11304","ServerKey":"pl181","X":583,"Y":563},{"Bonus":0,"Continent":"K34","ID":11305,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11305","ServerKey":"pl181","X":480,"Y":378},{"Bonus":0,"Continent":"K44","ID":11306,"Name":"0028 Wioska","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11306","ServerKey":"pl181","X":434,"Y":413},{"Bonus":0,"Continent":"K54","ID":11307,"Name":"019 - Edzna***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11307","ServerKey":"pl181","X":437,"Y":588},{"Bonus":0,"Continent":"K53","ID":11309,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11309","ServerKey":"pl181","X":396,"Y":529},{"Bonus":0,"Continent":"K43","ID":11310,"Name":"[A]_[005] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11310","ServerKey":"pl181","X":396,"Y":485},{"Bonus":0,"Continent":"K44","ID":11311,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11311","ServerKey":"pl181","X":416,"Y":434},{"Bonus":0,"Continent":"K43","ID":11312,"Name":"004","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11312","ServerKey":"pl181","X":397,"Y":491},{"Bonus":0,"Continent":"K44","ID":11313,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11313","ServerKey":"pl181","X":416,"Y":431},{"Bonus":0,"Continent":"K55","ID":11314,"Name":"PYRLANDIA 025 pod ce","PlayerID":33900,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11314","ServerKey":"pl181","X":560,"Y":588},{"Bonus":0,"Continent":"K54","ID":11315,"Name":"barba","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11315","ServerKey":"pl181","X":464,"Y":599},{"Bonus":0,"Continent":"K55","ID":11316,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11316","ServerKey":"pl181","X":571,"Y":558},{"Bonus":0,"Continent":"K56","ID":11317,"Name":"003 mucharadza","PlayerID":9238175,"Points":10488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11317","ServerKey":"pl181","X":604,"Y":532},{"Bonus":0,"Continent":"K35","ID":11318,"Name":".:113:. Niangmen","PlayerID":848934935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11318","ServerKey":"pl181","X":508,"Y":396},{"Bonus":0,"Continent":"K64","ID":11319,"Name":"019. Gloria Victis","PlayerID":848886973,"Points":10461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11319","ServerKey":"pl181","X":440,"Y":611},{"Bonus":0,"Continent":"K35","ID":11320,"Name":".:130:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11320","ServerKey":"pl181","X":509,"Y":394},{"Bonus":0,"Continent":"K35","ID":11321,"Name":".:104:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11321","ServerKey":"pl181","X":501,"Y":395},{"Bonus":0,"Continent":"K54","ID":11322,"Name":"008","PlayerID":849028088,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11322","ServerKey":"pl181","X":438,"Y":587},{"Bonus":0,"Continent":"K56","ID":11323,"Name":"*006*","PlayerID":698670524,"Points":8468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11323","ServerKey":"pl181","X":606,"Y":502},{"Bonus":0,"Continent":"K55","ID":11324,"Name":"006","PlayerID":6160655,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11324","ServerKey":"pl181","X":599,"Y":543},{"Bonus":0,"Continent":"K43","ID":11325,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11325","ServerKey":"pl181","X":378,"Y":493},{"Bonus":0,"Continent":"K53","ID":11326,"Name":"x R017","PlayerID":698290577,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11326","ServerKey":"pl181","X":393,"Y":514},{"Bonus":0,"Continent":"K53","ID":11327,"Name":"Okonek","PlayerID":698769107,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11327","ServerKey":"pl181","X":399,"Y":577},{"Bonus":0,"Continent":"K53","ID":11328,"Name":"Wioska 0023","PlayerID":1804724,"Points":9923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11328","ServerKey":"pl181","X":394,"Y":521},{"Bonus":0,"Continent":"K55","ID":11329,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11329","ServerKey":"pl181","X":573,"Y":541},{"Bonus":0,"Continent":"K45","ID":11330,"Name":"Wioska 2","PlayerID":698881022,"Points":3554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11330","ServerKey":"pl181","X":547,"Y":458},{"Bonus":0,"Continent":"K55","ID":11331,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11331","ServerKey":"pl181","X":564,"Y":584},{"Bonus":0,"Continent":"K43","ID":11332,"Name":"Knowhere","PlayerID":699723284,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11332","ServerKey":"pl181","X":394,"Y":493},{"Bonus":0,"Continent":"K54","ID":11333,"Name":"Twierdza","PlayerID":699429335,"Points":9234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11333","ServerKey":"pl181","X":421,"Y":570},{"Bonus":0,"Continent":"K43","ID":11334,"Name":"003","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11334","ServerKey":"pl181","X":395,"Y":496},{"Bonus":0,"Continent":"K43","ID":11335,"Name":"Brat447","PlayerID":699262350,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11335","ServerKey":"pl181","X":392,"Y":496},{"Bonus":0,"Continent":"K44","ID":11336,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11336","ServerKey":"pl181","X":456,"Y":401},{"Bonus":0,"Continent":"K44","ID":11337,"Name":"0032 Wioska S","PlayerID":3909522,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11337","ServerKey":"pl181","X":433,"Y":417},{"Bonus":0,"Continent":"K65","ID":11338,"Name":"*Tam02*","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11338","ServerKey":"pl181","X":525,"Y":604},{"Bonus":0,"Continent":"K46","ID":11339,"Name":"015 Florida","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11339","ServerKey":"pl181","X":606,"Y":478},{"Bonus":0,"Continent":"K54","ID":11340,"Name":"0638","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11340","ServerKey":"pl181","X":447,"Y":594},{"Bonus":0,"Continent":"K64","ID":11341,"Name":"EKG .::. freaky97/5","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11341","ServerKey":"pl181","X":486,"Y":607},{"Bonus":0,"Continent":"K44","ID":11342,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11342","ServerKey":"pl181","X":440,"Y":412},{"Bonus":0,"Continent":"K44","ID":11343,"Name":"[A]_[040] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11343","ServerKey":"pl181","X":410,"Y":467},{"Bonus":0,"Continent":"K64","ID":11344,"Name":"~010.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11344","ServerKey":"pl181","X":495,"Y":605},{"Bonus":0,"Continent":"K65","ID":11345,"Name":"~016.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11345","ServerKey":"pl181","X":503,"Y":606},{"Bonus":0,"Continent":"K44","ID":11346,"Name":"A033","PlayerID":8740199,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11346","ServerKey":"pl181","X":448,"Y":407},{"Bonus":6,"Continent":"K65","ID":11347,"Name":"bandzior","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11347","ServerKey":"pl181","X":529,"Y":603},{"Bonus":0,"Continent":"K45","ID":11348,"Name":"038","PlayerID":1424656,"Points":5437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11348","ServerKey":"pl181","X":549,"Y":405},{"Bonus":0,"Continent":"K45","ID":11349,"Name":"[376] Chorągiewka na wietrze++","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11349","ServerKey":"pl181","X":583,"Y":437},{"Bonus":0,"Continent":"K45","ID":11350,"Name":"BBB","PlayerID":1006847,"Points":6841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11350","ServerKey":"pl181","X":554,"Y":438},{"Bonus":0,"Continent":"K64","ID":11352,"Name":"~063.","PlayerID":7139820,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11352","ServerKey":"pl181","X":474,"Y":602},{"Bonus":0,"Continent":"K44","ID":11353,"Name":"003","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11353","ServerKey":"pl181","X":412,"Y":445},{"Bonus":0,"Continent":"K55","ID":11354,"Name":"0041 MzM","PlayerID":698416970,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11354","ServerKey":"pl181","X":594,"Y":554},{"Bonus":0,"Continent":"K44","ID":11355,"Name":"A009","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11355","ServerKey":"pl181","X":459,"Y":400},{"Bonus":0,"Continent":"K35","ID":11356,"Name":".:101:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11356","ServerKey":"pl181","X":507,"Y":395},{"Bonus":0,"Continent":"K43","ID":11357,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11357","ServerKey":"pl181","X":394,"Y":481},{"Bonus":0,"Continent":"K35","ID":11358,"Name":".:045:. Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11358","ServerKey":"pl181","X":503,"Y":393},{"Bonus":0,"Continent":"K54","ID":11359,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11359","ServerKey":"pl181","X":407,"Y":548},{"Bonus":0,"Continent":"K56","ID":11360,"Name":"004 Melon944","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11360","ServerKey":"pl181","X":606,"Y":519},{"Bonus":0,"Continent":"K53","ID":11361,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11361","ServerKey":"pl181","X":392,"Y":510},{"Bonus":0,"Continent":"K65","ID":11362,"Name":"0226","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11362","ServerKey":"pl181","X":521,"Y":603},{"Bonus":0,"Continent":"K54","ID":11363,"Name":"NOT!!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11363","ServerKey":"pl181","X":467,"Y":599},{"Bonus":0,"Continent":"K34","ID":11364,"Name":"K34 - [001] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11364","ServerKey":"pl181","X":458,"Y":381},{"Bonus":0,"Continent":"K55","ID":11365,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11365","ServerKey":"pl181","X":590,"Y":560},{"Bonus":0,"Continent":"K56","ID":11366,"Name":"Bocianikson014","PlayerID":7528491,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11366","ServerKey":"pl181","X":606,"Y":507},{"Bonus":0,"Continent":"K56","ID":11367,"Name":"0059","PlayerID":6510480,"Points":10133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11367","ServerKey":"pl181","X":605,"Y":511},{"Bonus":0,"Continent":"K56","ID":11368,"Name":"003 Kartagina","PlayerID":8013349,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11368","ServerKey":"pl181","X":604,"Y":530},{"Bonus":0,"Continent":"K64","ID":11369,"Name":"Sparta_20","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11369","ServerKey":"pl181","X":494,"Y":604},{"Bonus":0,"Continent":"K44","ID":11370,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11370","ServerKey":"pl181","X":408,"Y":447},{"Bonus":0,"Continent":"K35","ID":11371,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11371","ServerKey":"pl181","X":534,"Y":398},{"Bonus":0,"Continent":"K55","ID":11372,"Name":"- 079 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11372","ServerKey":"pl181","X":553,"Y":591},{"Bonus":0,"Continent":"K45","ID":11373,"Name":"[352] Chorągiewka na wietrze","PlayerID":848985692,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11373","ServerKey":"pl181","X":591,"Y":441},{"Bonus":0,"Continent":"K35","ID":11374,"Name":".:047:. Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11374","ServerKey":"pl181","X":505,"Y":393},{"Bonus":0,"Continent":"K44","ID":11375,"Name":"A045","PlayerID":8740199,"Points":7833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11375","ServerKey":"pl181","X":462,"Y":400},{"Bonus":0,"Continent":"K53","ID":11376,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11376","ServerKey":"pl181","X":394,"Y":508},{"Bonus":0,"Continent":"K54","ID":11377,"Name":"KIELBA 095","PlayerID":699342219,"Points":7079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11377","ServerKey":"pl181","X":449,"Y":595},{"Bonus":0,"Continent":"K45","ID":11378,"Name":"0005 niespodzianka","PlayerID":8459255,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11378","ServerKey":"pl181","X":579,"Y":425},{"Bonus":0,"Continent":"K45","ID":11379,"Name":"035","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11379","ServerKey":"pl181","X":545,"Y":401},{"Bonus":0,"Continent":"K45","ID":11380,"Name":"014","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11380","ServerKey":"pl181","X":597,"Y":464},{"Bonus":0,"Continent":"K55","ID":11381,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11381","ServerKey":"pl181","X":569,"Y":584},{"Bonus":8,"Continent":"K43","ID":11382,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11382","ServerKey":"pl181","X":397,"Y":470},{"Bonus":0,"Continent":"K45","ID":11383,"Name":"031","PlayerID":699761749,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11383","ServerKey":"pl181","X":566,"Y":415},{"Bonus":0,"Continent":"K44","ID":11384,"Name":"009. Lunden","PlayerID":699660539,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11384","ServerKey":"pl181","X":424,"Y":426},{"Bonus":0,"Continent":"K56","ID":11385,"Name":"006 barbarzyƄska","PlayerID":9238175,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11385","ServerKey":"pl181","X":603,"Y":528},{"Bonus":0,"Continent":"K64","ID":11386,"Name":"~004.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11386","ServerKey":"pl181","X":494,"Y":605},{"Bonus":0,"Continent":"K45","ID":11387,"Name":"*Tytan zerknij w notkę","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11387","ServerKey":"pl181","X":586,"Y":434},{"Bonus":0,"Continent":"K45","ID":11388,"Name":"189","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11388","ServerKey":"pl181","X":575,"Y":404},{"Bonus":0,"Continent":"K54","ID":11389,"Name":"NOT?","PlayerID":9236866,"Points":9293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11389","ServerKey":"pl181","X":402,"Y":548},{"Bonus":0,"Continent":"K35","ID":11390,"Name":".:106:. Niangmen","PlayerID":848934935,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11390","ServerKey":"pl181","X":503,"Y":392},{"Bonus":4,"Continent":"K53","ID":11391,"Name":"Brat447","PlayerID":699262350,"Points":4937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11391","ServerKey":"pl181","X":394,"Y":512},{"Bonus":0,"Continent":"K64","ID":11392,"Name":"009","PlayerID":8925624,"Points":3656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11392","ServerKey":"pl181","X":479,"Y":605},{"Bonus":0,"Continent":"K34","ID":11393,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11393","ServerKey":"pl181","X":484,"Y":395},{"Bonus":0,"Continent":"K64","ID":11394,"Name":"EKG .::. KOM 002 Sobie","PlayerID":33900,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11394","ServerKey":"pl181","X":478,"Y":602},{"Bonus":0,"Continent":"K55","ID":11396,"Name":"- 059 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11396","ServerKey":"pl181","X":548,"Y":594},{"Bonus":0,"Continent":"K54","ID":11397,"Name":"003a o","PlayerID":9167250,"Points":6853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11397","ServerKey":"pl181","X":430,"Y":577},{"Bonus":0,"Continent":"K45","ID":11398,"Name":"HOTEL 3","PlayerID":849064614,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11398","ServerKey":"pl181","X":566,"Y":414},{"Bonus":0,"Continent":"K54","ID":11399,"Name":"KIELBA 078","PlayerID":699342219,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11399","ServerKey":"pl181","X":458,"Y":595},{"Bonus":0,"Continent":"K46","ID":11400,"Name":"053","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11400","ServerKey":"pl181","X":605,"Y":474},{"Bonus":0,"Continent":"K53","ID":11401,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11401","ServerKey":"pl181","X":379,"Y":509},{"Bonus":0,"Continent":"K53","ID":11402,"Name":"SsSs","PlayerID":1536625,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11402","ServerKey":"pl181","X":393,"Y":500},{"Bonus":0,"Continent":"K44","ID":11403,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11403","ServerKey":"pl181","X":413,"Y":435},{"Bonus":0,"Continent":"K45","ID":11404,"Name":"025","PlayerID":699722599,"Points":10219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11404","ServerKey":"pl181","X":594,"Y":446},{"Bonus":0,"Continent":"K45","ID":11405,"Name":"ZrolowanaStĂłwa","PlayerID":699368887,"Points":10434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11405","ServerKey":"pl181","X":554,"Y":448},{"Bonus":0,"Continent":"K43","ID":11406,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11406","ServerKey":"pl181","X":397,"Y":471},{"Bonus":0,"Continent":"K53","ID":11407,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11407","ServerKey":"pl181","X":399,"Y":533},{"Bonus":0,"Continent":"K56","ID":11408,"Name":"sƂodziuteƄka 05","PlayerID":8013349,"Points":6133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11408","ServerKey":"pl181","X":604,"Y":534},{"Bonus":0,"Continent":"K65","ID":11409,"Name":"SkƂad","PlayerID":606407,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11409","ServerKey":"pl181","X":524,"Y":605},{"Bonus":0,"Continent":"K53","ID":11411,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11411","ServerKey":"pl181","X":399,"Y":531},{"Bonus":0,"Continent":"K45","ID":11412,"Name":"Wioska Nya.","PlayerID":699368887,"Points":8561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11412","ServerKey":"pl181","X":572,"Y":441},{"Bonus":0,"Continent":"K45","ID":11413,"Name":"Marienburg 0","PlayerID":699355601,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11413","ServerKey":"pl181","X":527,"Y":477},{"Bonus":0,"Continent":"K56","ID":11414,"Name":"0060","PlayerID":6510480,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11414","ServerKey":"pl181","X":604,"Y":511},{"Bonus":0,"Continent":"K65","ID":11415,"Name":"!SkƂad","PlayerID":606407,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11415","ServerKey":"pl181","X":510,"Y":607},{"Bonus":0,"Continent":"K34","ID":11416,"Name":"Velen","PlayerID":699658023,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11416","ServerKey":"pl181","X":479,"Y":374},{"Bonus":0,"Continent":"K55","ID":11417,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11417","ServerKey":"pl181","X":577,"Y":578},{"Bonus":0,"Continent":"K55","ID":11418,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11418","ServerKey":"pl181","X":577,"Y":591},{"Bonus":0,"Continent":"K55","ID":11419,"Name":"Bocianikson017","PlayerID":7528491,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11419","ServerKey":"pl181","X":597,"Y":547},{"Bonus":0,"Continent":"K54","ID":11420,"Name":"006 - T_001***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11420","ServerKey":"pl181","X":440,"Y":586},{"Bonus":0,"Continent":"K45","ID":11421,"Name":"BBB","PlayerID":1006847,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11421","ServerKey":"pl181","X":565,"Y":413},{"Bonus":0,"Continent":"K65","ID":11422,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11422","ServerKey":"pl181","X":531,"Y":603},{"Bonus":0,"Continent":"K35","ID":11423,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11423","ServerKey":"pl181","X":524,"Y":396},{"Bonus":0,"Continent":"K43","ID":11424,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11424","ServerKey":"pl181","X":398,"Y":462},{"Bonus":0,"Continent":"K64","ID":11425,"Name":"EKG M08 green3","PlayerID":33900,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11425","ServerKey":"pl181","X":483,"Y":606},{"Bonus":0,"Continent":"K34","ID":11426,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11426","ServerKey":"pl181","X":494,"Y":391},{"Bonus":0,"Continent":"K43","ID":11427,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11427","ServerKey":"pl181","X":397,"Y":476},{"Bonus":0,"Continent":"K45","ID":11428,"Name":"028","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11428","ServerKey":"pl181","X":594,"Y":450},{"Bonus":0,"Continent":"K53","ID":11429,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11429","ServerKey":"pl181","X":392,"Y":513},{"Bonus":0,"Continent":"K53","ID":11431,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11431","ServerKey":"pl181","X":392,"Y":504},{"Bonus":0,"Continent":"K43","ID":11432,"Name":"002","PlayerID":3698627,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11432","ServerKey":"pl181","X":382,"Y":458},{"Bonus":0,"Continent":"K53","ID":11433,"Name":"x Wioska barbarzyƄska","PlayerID":698290577,"Points":8907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11433","ServerKey":"pl181","X":395,"Y":507},{"Bonus":0,"Continent":"K46","ID":11434,"Name":"Ethan Hunt 02","PlayerID":698702991,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11434","ServerKey":"pl181","X":604,"Y":477},{"Bonus":0,"Continent":"K53","ID":11435,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11435","ServerKey":"pl181","X":397,"Y":514},{"Bonus":0,"Continent":"K44","ID":11436,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11436","ServerKey":"pl181","X":458,"Y":403},{"Bonus":0,"Continent":"K55","ID":11437,"Name":"021","PlayerID":699524362,"Points":8708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11437","ServerKey":"pl181","X":579,"Y":569},{"Bonus":0,"Continent":"K56","ID":11438,"Name":"[049]","PlayerID":848985692,"Points":7168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11438","ServerKey":"pl181","X":601,"Y":533},{"Bonus":0,"Continent":"K55","ID":11439,"Name":"- 040 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11439","ServerKey":"pl181","X":550,"Y":596},{"Bonus":0,"Continent":"K35","ID":11440,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11440","ServerKey":"pl181","X":530,"Y":397},{"Bonus":0,"Continent":"K54","ID":11441,"Name":"0641","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11441","ServerKey":"pl181","X":446,"Y":590},{"Bonus":0,"Continent":"K34","ID":11442,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11442","ServerKey":"pl181","X":481,"Y":393},{"Bonus":0,"Continent":"K43","ID":11443,"Name":"[A]_[013] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11443","ServerKey":"pl181","X":394,"Y":488},{"Bonus":0,"Continent":"K55","ID":11444,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11444","ServerKey":"pl181","X":579,"Y":591},{"Bonus":0,"Continent":"K54","ID":11445,"Name":"082 TO NIE ƁADNIE","PlayerID":699382126,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11445","ServerKey":"pl181","X":412,"Y":557},{"Bonus":0,"Continent":"K54","ID":11446,"Name":"025","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11446","ServerKey":"pl181","X":402,"Y":543},{"Bonus":0,"Continent":"K34","ID":11447,"Name":"Szlachcic","PlayerID":698388578,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11447","ServerKey":"pl181","X":468,"Y":399},{"Bonus":0,"Continent":"K34","ID":11448,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11448","ServerKey":"pl181","X":443,"Y":394},{"Bonus":0,"Continent":"K65","ID":11449,"Name":"~014.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11449","ServerKey":"pl181","X":501,"Y":607},{"Bonus":0,"Continent":"K34","ID":11450,"Name":"Oxenfurt","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11450","ServerKey":"pl181","X":493,"Y":392},{"Bonus":0,"Continent":"K34","ID":11451,"Name":"wola 4","PlayerID":849093155,"Points":7331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11451","ServerKey":"pl181","X":480,"Y":397},{"Bonus":0,"Continent":"K55","ID":11452,"Name":"[0491]","PlayerID":848985692,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11452","ServerKey":"pl181","X":593,"Y":548},{"Bonus":5,"Continent":"K44","ID":11453,"Name":"K44 x002","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11453","ServerKey":"pl181","X":444,"Y":408},{"Bonus":0,"Continent":"K35","ID":11454,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11454","ServerKey":"pl181","X":537,"Y":398},{"Bonus":0,"Continent":"K65","ID":11456,"Name":"002","PlayerID":8925624,"Points":9197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11456","ServerKey":"pl181","X":510,"Y":609},{"Bonus":0,"Continent":"K43","ID":11457,"Name":"SsSs","PlayerID":1536625,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11457","ServerKey":"pl181","X":394,"Y":497},{"Bonus":0,"Continent":"K45","ID":11458,"Name":"053","PlayerID":849063849,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11458","ServerKey":"pl181","X":569,"Y":415},{"Bonus":0,"Continent":"K55","ID":11459,"Name":"Poison","PlayerID":848926293,"Points":9463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11459","ServerKey":"pl181","X":592,"Y":558},{"Bonus":0,"Continent":"K45","ID":11460,"Name":"047","PlayerID":7271812,"Points":3024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11460","ServerKey":"pl181","X":557,"Y":409},{"Bonus":0,"Continent":"K54","ID":11461,"Name":"Ponello","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11461","ServerKey":"pl181","X":411,"Y":562},{"Bonus":0,"Continent":"K35","ID":11462,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11462","ServerKey":"pl181","X":521,"Y":393},{"Bonus":0,"Continent":"K65","ID":11463,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11463","ServerKey":"pl181","X":515,"Y":607},{"Bonus":0,"Continent":"K46","ID":11464,"Name":"A19","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11464","ServerKey":"pl181","X":603,"Y":467},{"Bonus":0,"Continent":"K64","ID":11465,"Name":"NOT!!","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11465","ServerKey":"pl181","X":472,"Y":601},{"Bonus":0,"Continent":"K54","ID":11466,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11466","ServerKey":"pl181","X":456,"Y":598},{"Bonus":9,"Continent":"K65","ID":11467,"Name":"GARNIZON","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11467","ServerKey":"pl181","X":513,"Y":606},{"Bonus":0,"Continent":"K45","ID":11468,"Name":"ADEN","PlayerID":698588535,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11468","ServerKey":"pl181","X":588,"Y":436},{"Bonus":0,"Continent":"K53","ID":11469,"Name":"Enklawa","PlayerID":1804724,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11469","ServerKey":"pl181","X":395,"Y":525},{"Bonus":6,"Continent":"K55","ID":11470,"Name":"Jaaa","PlayerID":698635863,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11470","ServerKey":"pl181","X":568,"Y":582},{"Bonus":0,"Continent":"K53","ID":11471,"Name":"Brat447","PlayerID":699262350,"Points":10711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11471","ServerKey":"pl181","X":391,"Y":502},{"Bonus":0,"Continent":"K55","ID":11472,"Name":"sƂodziuteƄka 12","PlayerID":8013349,"Points":6205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11472","ServerKey":"pl181","X":599,"Y":538},{"Bonus":1,"Continent":"K55","ID":11473,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11473","ServerKey":"pl181","X":571,"Y":583},{"Bonus":0,"Continent":"K55","ID":11474,"Name":"041.","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11474","ServerKey":"pl181","X":587,"Y":566},{"Bonus":0,"Continent":"K45","ID":11475,"Name":"017","PlayerID":849088515,"Points":8904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11475","ServerKey":"pl181","X":597,"Y":455},{"Bonus":0,"Continent":"K55","ID":11476,"Name":"003. Strzyga","PlayerID":699703642,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11476","ServerKey":"pl181","X":509,"Y":588},{"Bonus":0,"Continent":"K44","ID":11477,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11477","ServerKey":"pl181","X":404,"Y":455},{"Bonus":0,"Continent":"K45","ID":11478,"Name":"BBB","PlayerID":1006847,"Points":10791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11478","ServerKey":"pl181","X":563,"Y":411},{"Bonus":0,"Continent":"K64","ID":11479,"Name":"~026.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11479","ServerKey":"pl181","X":488,"Y":609},{"Bonus":0,"Continent":"K54","ID":11480,"Name":"0000018","PlayerID":849089881,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11480","ServerKey":"pl181","X":438,"Y":584},{"Bonus":0,"Continent":"K64","ID":11482,"Name":"#040","PlayerID":849001572,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11482","ServerKey":"pl181","X":485,"Y":608},{"Bonus":3,"Continent":"K46","ID":11483,"Name":"0005","PlayerID":699429153,"Points":10323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11483","ServerKey":"pl181","X":607,"Y":495},{"Bonus":0,"Continent":"K44","ID":11484,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11484","ServerKey":"pl181","X":400,"Y":462},{"Bonus":0,"Continent":"K53","ID":11485,"Name":"motywacja 00000001","PlayerID":1804724,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11485","ServerKey":"pl181","X":395,"Y":523},{"Bonus":0,"Continent":"K55","ID":11486,"Name":"- 065 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11486","ServerKey":"pl181","X":553,"Y":593},{"Bonus":0,"Continent":"K34","ID":11487,"Name":"K34 x010","PlayerID":698364331,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11487","ServerKey":"pl181","X":466,"Y":399},{"Bonus":0,"Continent":"K46","ID":11488,"Name":"020 Idaho","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11488","ServerKey":"pl181","X":608,"Y":491},{"Bonus":0,"Continent":"K44","ID":11489,"Name":"A014","PlayerID":8740199,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11489","ServerKey":"pl181","X":449,"Y":404},{"Bonus":0,"Continent":"K43","ID":11490,"Name":"A0003","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11490","ServerKey":"pl181","X":387,"Y":476},{"Bonus":0,"Continent":"K45","ID":11491,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11491","ServerKey":"pl181","X":518,"Y":405},{"Bonus":0,"Continent":"K44","ID":11492,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11492","ServerKey":"pl181","X":415,"Y":437},{"Bonus":0,"Continent":"K54","ID":11493,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11493","ServerKey":"pl181","X":407,"Y":553},{"Bonus":0,"Continent":"K65","ID":11494,"Name":"Galdin Quay","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11494","ServerKey":"pl181","X":528,"Y":604},{"Bonus":0,"Continent":"K44","ID":11496,"Name":"0083","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11496","ServerKey":"pl181","X":442,"Y":410},{"Bonus":0,"Continent":"K45","ID":11497,"Name":"Gattacka","PlayerID":699298370,"Points":10501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11497","ServerKey":"pl181","X":573,"Y":498},{"Bonus":0,"Continent":"K45","ID":11498,"Name":"120","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11498","ServerKey":"pl181","X":546,"Y":402},{"Bonus":0,"Continent":"K34","ID":11500,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11500","ServerKey":"pl181","X":494,"Y":393},{"Bonus":0,"Continent":"K53","ID":11501,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11501","ServerKey":"pl181","X":389,"Y":502},{"Bonus":0,"Continent":"K45","ID":11502,"Name":"021","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11502","ServerKey":"pl181","X":552,"Y":407},{"Bonus":0,"Continent":"K34","ID":11503,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11503","ServerKey":"pl181","X":494,"Y":392},{"Bonus":0,"Continent":"K44","ID":11504,"Name":"4. Strathclyde","PlayerID":699660539,"Points":10986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11504","ServerKey":"pl181","X":423,"Y":426},{"Bonus":0,"Continent":"K53","ID":11505,"Name":"Wioska Podusia :)","PlayerID":1804724,"Points":7444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11505","ServerKey":"pl181","X":396,"Y":519},{"Bonus":0,"Continent":"K45","ID":11506,"Name":"A12","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11506","ServerKey":"pl181","X":598,"Y":462},{"Bonus":0,"Continent":"K45","ID":11507,"Name":"028","PlayerID":1424656,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11507","ServerKey":"pl181","X":538,"Y":401},{"Bonus":0,"Continent":"K44","ID":11508,"Name":"0078","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11508","ServerKey":"pl181","X":442,"Y":407},{"Bonus":0,"Continent":"K54","ID":11509,"Name":"Z barba 007","PlayerID":225023,"Points":10283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11509","ServerKey":"pl181","X":429,"Y":580},{"Bonus":0,"Continent":"K34","ID":11510,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11510","ServerKey":"pl181","X":482,"Y":395},{"Bonus":0,"Continent":"K54","ID":11511,"Name":"020","PlayerID":699856962,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11511","ServerKey":"pl181","X":400,"Y":540},{"Bonus":0,"Continent":"K35","ID":11512,"Name":".achim.","PlayerID":6936607,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11512","ServerKey":"pl181","X":517,"Y":393},{"Bonus":0,"Continent":"K35","ID":11513,"Name":"Wioska Dawidssssss","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11513","ServerKey":"pl181","X":510,"Y":383},{"Bonus":0,"Continent":"K46","ID":11514,"Name":"0011","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11514","ServerKey":"pl181","X":605,"Y":493},{"Bonus":7,"Continent":"K54","ID":11515,"Name":"S012","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11515","ServerKey":"pl181","X":409,"Y":554},{"Bonus":0,"Continent":"K44","ID":11516,"Name":"0036 skarbnica","PlayerID":3909522,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11516","ServerKey":"pl181","X":435,"Y":418},{"Bonus":0,"Continent":"K44","ID":11517,"Name":"Suppi","PlayerID":699856962,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11517","ServerKey":"pl181","X":424,"Y":423},{"Bonus":0,"Continent":"K34","ID":11518,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11518","ServerKey":"pl181","X":491,"Y":394},{"Bonus":0,"Continent":"K45","ID":11519,"Name":"A13","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11519","ServerKey":"pl181","X":597,"Y":460},{"Bonus":9,"Continent":"K53","ID":11520,"Name":"Moje Fantazje","PlayerID":1804724,"Points":10770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11520","ServerKey":"pl181","X":397,"Y":518},{"Bonus":0,"Continent":"K65","ID":11521,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11521","ServerKey":"pl181","X":539,"Y":612},{"Bonus":0,"Continent":"K45","ID":11522,"Name":"015","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11522","ServerKey":"pl181","X":599,"Y":455},{"Bonus":0,"Continent":"K65","ID":11523,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11523","ServerKey":"pl181","X":531,"Y":604},{"Bonus":0,"Continent":"K43","ID":11524,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11524","ServerKey":"pl181","X":396,"Y":469},{"Bonus":0,"Continent":"K43","ID":11525,"Name":"Nope","PlayerID":6258092,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11525","ServerKey":"pl181","X":396,"Y":479},{"Bonus":0,"Continent":"K54","ID":11526,"Name":"Pobozowisko","PlayerID":699513260,"Points":10960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11526","ServerKey":"pl181","X":419,"Y":592},{"Bonus":0,"Continent":"K44","ID":11527,"Name":"K44 x025","PlayerID":698364331,"Points":7109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11527","ServerKey":"pl181","X":442,"Y":412},{"Bonus":6,"Continent":"K44","ID":11529,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11529","ServerKey":"pl181","X":400,"Y":464},{"Bonus":0,"Continent":"K64","ID":11530,"Name":"0145","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11530","ServerKey":"pl181","X":460,"Y":617},{"Bonus":0,"Continent":"K43","ID":11531,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11531","ServerKey":"pl181","X":397,"Y":479},{"Bonus":0,"Continent":"K53","ID":11532,"Name":"PRO8L3M","PlayerID":7491093,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11532","ServerKey":"pl181","X":395,"Y":516},{"Bonus":0,"Continent":"K44","ID":11533,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11533","ServerKey":"pl181","X":400,"Y":460},{"Bonus":0,"Continent":"K64","ID":11534,"Name":"001","PlayerID":7976264,"Points":10390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11534","ServerKey":"pl181","X":490,"Y":601},{"Bonus":0,"Continent":"K44","ID":11535,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11535","ServerKey":"pl181","X":401,"Y":456},{"Bonus":0,"Continent":"K43","ID":11536,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11536","ServerKey":"pl181","X":397,"Y":468},{"Bonus":0,"Continent":"K53","ID":11537,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11537","ServerKey":"pl181","X":391,"Y":504},{"Bonus":0,"Continent":"K45","ID":11538,"Name":"008","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11538","ServerKey":"pl181","X":554,"Y":406},{"Bonus":0,"Continent":"K56","ID":11539,"Name":"Niespodzianka","PlayerID":849095240,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11539","ServerKey":"pl181","X":608,"Y":504},{"Bonus":0,"Continent":"K54","ID":11540,"Name":"0000011","PlayerID":849089881,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11540","ServerKey":"pl181","X":429,"Y":581},{"Bonus":0,"Continent":"K45","ID":11541,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11541","ServerKey":"pl181","X":500,"Y":474},{"Bonus":0,"Continent":"K44","ID":11542,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11542","ServerKey":"pl181","X":400,"Y":457},{"Bonus":0,"Continent":"K64","ID":11543,"Name":"#016","PlayerID":849001572,"Points":8255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11543","ServerKey":"pl181","X":486,"Y":608},{"Bonus":0,"Continent":"K43","ID":11544,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11544","ServerKey":"pl181","X":393,"Y":475},{"Bonus":0,"Continent":"K64","ID":11545,"Name":"094 MEHEHE","PlayerID":6116940,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11545","ServerKey":"pl181","X":499,"Y":614},{"Bonus":0,"Continent":"K44","ID":11546,"Name":"Pf Konfederacja 8","PlayerID":848915730,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11546","ServerKey":"pl181","X":490,"Y":498},{"Bonus":0,"Continent":"K55","ID":11547,"Name":"-KrĂłlestwo Szefa-","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11547","ServerKey":"pl181","X":552,"Y":596},{"Bonus":0,"Continent":"K64","ID":11548,"Name":"023.xxx","PlayerID":8612358,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11548","ServerKey":"pl181","X":479,"Y":604},{"Bonus":0,"Continent":"K44","ID":11549,"Name":"Gravity","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11549","ServerKey":"pl181","X":402,"Y":454},{"Bonus":0,"Continent":"K43","ID":11550,"Name":"Szlachcic","PlayerID":6258092,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11550","ServerKey":"pl181","X":397,"Y":477},{"Bonus":0,"Continent":"K54","ID":11551,"Name":"Ptokas","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11551","ServerKey":"pl181","X":412,"Y":559},{"Bonus":0,"Continent":"K43","ID":11552,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11552","ServerKey":"pl181","X":392,"Y":482},{"Bonus":0,"Continent":"K55","ID":11553,"Name":"030","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11553","ServerKey":"pl181","X":587,"Y":565},{"Bonus":0,"Continent":"K34","ID":11554,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11554","ServerKey":"pl181","X":485,"Y":392},{"Bonus":0,"Continent":"K53","ID":11555,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11555","ServerKey":"pl181","X":395,"Y":520},{"Bonus":0,"Continent":"K55","ID":11556,"Name":"Another Brick In The Wall","PlayerID":848926293,"Points":7375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11556","ServerKey":"pl181","X":591,"Y":555},{"Bonus":0,"Continent":"K55","ID":11557,"Name":"013. Hvitserk","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11557","ServerKey":"pl181","X":587,"Y":562},{"Bonus":0,"Continent":"K34","ID":11558,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11558","ServerKey":"pl181","X":483,"Y":395},{"Bonus":0,"Continent":"K65","ID":11559,"Name":"*313*","PlayerID":606407,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11559","ServerKey":"pl181","X":518,"Y":608},{"Bonus":0,"Continent":"K46","ID":11560,"Name":"027 California","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11560","ServerKey":"pl181","X":607,"Y":490},{"Bonus":0,"Continent":"K64","ID":11561,"Name":"Coruscant 6","PlayerID":699383121,"Points":9139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11561","ServerKey":"pl181","X":498,"Y":609},{"Bonus":0,"Continent":"K64","ID":11562,"Name":"#041","PlayerID":849001572,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11562","ServerKey":"pl181","X":487,"Y":608},{"Bonus":0,"Continent":"K54","ID":11563,"Name":"Wioska barbarzyƄska","PlayerID":849028088,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11563","ServerKey":"pl181","X":436,"Y":588},{"Bonus":0,"Continent":"K54","ID":11564,"Name":"Winter is coming","PlayerID":699364813,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11564","ServerKey":"pl181","X":458,"Y":597},{"Bonus":0,"Continent":"K34","ID":11565,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11565","ServerKey":"pl181","X":476,"Y":395},{"Bonus":9,"Continent":"K55","ID":11566,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11566","ServerKey":"pl181","X":580,"Y":575},{"Bonus":0,"Continent":"K46","ID":11567,"Name":"019 Yazuac","PlayerID":8337151,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11567","ServerKey":"pl181","X":604,"Y":473},{"Bonus":0,"Continent":"K34","ID":11568,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11568","ServerKey":"pl181","X":492,"Y":391},{"Bonus":0,"Continent":"K56","ID":11569,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11569","ServerKey":"pl181","X":600,"Y":541},{"Bonus":0,"Continent":"K64","ID":11570,"Name":"EKG M09 green4","PlayerID":33900,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11570","ServerKey":"pl181","X":483,"Y":607},{"Bonus":0,"Continent":"K56","ID":11571,"Name":"A.181.01","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11571","ServerKey":"pl181","X":601,"Y":530},{"Bonus":0,"Continent":"K65","ID":11572,"Name":"SkƂad","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11572","ServerKey":"pl181","X":525,"Y":605},{"Bonus":0,"Continent":"K45","ID":11573,"Name":"[239]Tasuj Tasuj przeĆ‚ĂłĆŒ Tasuj","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11573","ServerKey":"pl181","X":598,"Y":452},{"Bonus":0,"Continent":"K45","ID":11574,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11574","ServerKey":"pl181","X":578,"Y":430},{"Bonus":0,"Continent":"K43","ID":11575,"Name":"xhav","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11575","ServerKey":"pl181","X":395,"Y":472},{"Bonus":0,"Continent":"K54","ID":11576,"Name":"057 - Hexiu","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11576","ServerKey":"pl181","X":418,"Y":567},{"Bonus":4,"Continent":"K35","ID":11577,"Name":"E001","PlayerID":7758085,"Points":5789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11577","ServerKey":"pl181","X":518,"Y":395},{"Bonus":0,"Continent":"K54","ID":11578,"Name":"002 - Zaczynamy","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11578","ServerKey":"pl181","X":425,"Y":576},{"Bonus":0,"Continent":"K64","ID":11579,"Name":"062 OZDR","PlayerID":699336777,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11579","ServerKey":"pl181","X":476,"Y":621},{"Bonus":0,"Continent":"K45","ID":11580,"Name":"111","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11580","ServerKey":"pl181","X":547,"Y":401},{"Bonus":4,"Continent":"K35","ID":11581,"Name":"047 ƚwieĆŒa BuƂeczka","PlayerID":699491076,"Points":4759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11581","ServerKey":"pl181","X":533,"Y":399},{"Bonus":0,"Continent":"K45","ID":11582,"Name":"A02","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11582","ServerKey":"pl181","X":599,"Y":464},{"Bonus":0,"Continent":"K55","ID":11583,"Name":"014. Halfdan","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11583","ServerKey":"pl181","X":586,"Y":563},{"Bonus":0,"Continent":"K65","ID":11584,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11584","ServerKey":"pl181","X":517,"Y":606},{"Bonus":0,"Continent":"K46","ID":11585,"Name":"027. Corduba","PlayerID":849091866,"Points":9075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11585","ServerKey":"pl181","X":604,"Y":465},{"Bonus":0,"Continent":"K55","ID":11586,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11586","ServerKey":"pl181","X":562,"Y":586},{"Bonus":0,"Continent":"K54","ID":11587,"Name":"087 JESTEƚ Z ULICY","PlayerID":699382126,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11587","ServerKey":"pl181","X":409,"Y":557},{"Bonus":0,"Continent":"K45","ID":11589,"Name":"[371] Chorągiewka na wietrze","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11589","ServerKey":"pl181","X":585,"Y":431},{"Bonus":0,"Continent":"K53","ID":11590,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11590","ServerKey":"pl181","X":395,"Y":524},{"Bonus":0,"Continent":"K54","ID":11591,"Name":"080 - Twierdza 003","PlayerID":225023,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11591","ServerKey":"pl181","X":422,"Y":573},{"Bonus":0,"Continent":"K46","ID":11592,"Name":"dla Ethan Hunt","PlayerID":699429153,"Points":10296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11592","ServerKey":"pl181","X":604,"Y":489},{"Bonus":0,"Continent":"K45","ID":11593,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11593","ServerKey":"pl181","X":523,"Y":400},{"Bonus":0,"Continent":"K34","ID":11594,"Name":"0106","PlayerID":699431255,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11594","ServerKey":"pl181","X":465,"Y":397},{"Bonus":0,"Continent":"K65","ID":11595,"Name":"001","PlayerID":8925624,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11595","ServerKey":"pl181","X":509,"Y":607},{"Bonus":0,"Continent":"K46","ID":11596,"Name":"025","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11596","ServerKey":"pl181","X":609,"Y":495},{"Bonus":0,"Continent":"K55","ID":11598,"Name":"008. Sigi","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11598","ServerKey":"pl181","X":589,"Y":563},{"Bonus":0,"Continent":"K54","ID":11599,"Name":"Wioska 0019","PlayerID":1804724,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11599","ServerKey":"pl181","X":400,"Y":530},{"Bonus":0,"Continent":"K44","ID":11600,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11600","ServerKey":"pl181","X":492,"Y":466},{"Bonus":0,"Continent":"K55","ID":11601,"Name":"- 068 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11601","ServerKey":"pl181","X":535,"Y":599},{"Bonus":0,"Continent":"K35","ID":11602,"Name":".achim.","PlayerID":6936607,"Points":5289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11602","ServerKey":"pl181","X":523,"Y":393},{"Bonus":0,"Continent":"K44","ID":11603,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11603","ServerKey":"pl181","X":419,"Y":428},{"Bonus":0,"Continent":"K44","ID":11604,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11604","ServerKey":"pl181","X":419,"Y":427},{"Bonus":5,"Continent":"K54","ID":11605,"Name":"08. Reorganizacja. (Maczeta.)","PlayerID":698769107,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11605","ServerKey":"pl181","X":417,"Y":567},{"Bonus":0,"Continent":"K53","ID":11606,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11606","ServerKey":"pl181","X":397,"Y":530},{"Bonus":0,"Continent":"K35","ID":11607,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11607","ServerKey":"pl181","X":521,"Y":398},{"Bonus":0,"Continent":"K43","ID":11608,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11608","ServerKey":"pl181","X":390,"Y":493},{"Bonus":0,"Continent":"K34","ID":11609,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11609","ServerKey":"pl181","X":488,"Y":391},{"Bonus":2,"Continent":"K44","ID":11610,"Name":"Suppi","PlayerID":699856962,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11610","ServerKey":"pl181","X":426,"Y":423},{"Bonus":0,"Continent":"K64","ID":11611,"Name":"#030","PlayerID":849001572,"Points":7592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11611","ServerKey":"pl181","X":467,"Y":600},{"Bonus":0,"Continent":"K54","ID":11612,"Name":"#030 A","PlayerID":9037756,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11612","ServerKey":"pl181","X":444,"Y":595},{"Bonus":0,"Continent":"K35","ID":11613,"Name":"D010","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11613","ServerKey":"pl181","X":508,"Y":391},{"Bonus":0,"Continent":"K55","ID":11614,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11614","ServerKey":"pl181","X":570,"Y":581},{"Bonus":0,"Continent":"K65","ID":11615,"Name":"039","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11615","ServerKey":"pl181","X":531,"Y":600},{"Bonus":0,"Continent":"K44","ID":11616,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11616","ServerKey":"pl181","X":441,"Y":400},{"Bonus":0,"Continent":"K43","ID":11617,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11617","ServerKey":"pl181","X":399,"Y":457},{"Bonus":0,"Continent":"K56","ID":11618,"Name":"020","PlayerID":849006412,"Points":10271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11618","ServerKey":"pl181","X":610,"Y":506},{"Bonus":0,"Continent":"K34","ID":11619,"Name":"A038","PlayerID":8740199,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11619","ServerKey":"pl181","X":479,"Y":397},{"Bonus":0,"Continent":"K43","ID":11620,"Name":"Knowhere","PlayerID":699723284,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11620","ServerKey":"pl181","X":393,"Y":492},{"Bonus":0,"Continent":"K54","ID":11621,"Name":"135 Wioska barbarzyƄska","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11621","ServerKey":"pl181","X":404,"Y":555},{"Bonus":0,"Continent":"K55","ID":11622,"Name":"009. Helga","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11622","ServerKey":"pl181","X":587,"Y":564},{"Bonus":0,"Continent":"K46","ID":11623,"Name":"0009","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11623","ServerKey":"pl181","X":609,"Y":490},{"Bonus":0,"Continent":"K43","ID":11624,"Name":"Knowhere","PlayerID":699723284,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11624","ServerKey":"pl181","X":391,"Y":494},{"Bonus":0,"Continent":"K35","ID":11625,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11625","ServerKey":"pl181","X":516,"Y":393},{"Bonus":0,"Continent":"K54","ID":11626,"Name":"Pjon","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11626","ServerKey":"pl181","X":415,"Y":565},{"Bonus":0,"Continent":"K45","ID":11627,"Name":"001","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11627","ServerKey":"pl181","X":588,"Y":441},{"Bonus":0,"Continent":"K34","ID":11628,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11628","ServerKey":"pl181","X":475,"Y":395},{"Bonus":0,"Continent":"K56","ID":11629,"Name":"077","PlayerID":699573053,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11629","ServerKey":"pl181","X":607,"Y":507},{"Bonus":0,"Continent":"K45","ID":11630,"Name":"019","PlayerID":699722599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11630","ServerKey":"pl181","X":590,"Y":444},{"Bonus":0,"Continent":"K44","ID":11631,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11631","ServerKey":"pl181","X":406,"Y":452},{"Bonus":0,"Continent":"K46","ID":11632,"Name":"[230] WEST","PlayerID":848985692,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11632","ServerKey":"pl181","X":600,"Y":455},{"Bonus":0,"Continent":"K45","ID":11633,"Name":"Bunkier 002","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11633","ServerKey":"pl181","X":591,"Y":447},{"Bonus":0,"Continent":"K64","ID":11634,"Name":"Wioska4,,,","PlayerID":8369778,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11634","ServerKey":"pl181","X":482,"Y":606},{"Bonus":0,"Continent":"K55","ID":11635,"Name":"0003 K55 and987 OZDR.","PlayerID":3613413,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11635","ServerKey":"pl181","X":505,"Y":553},{"Bonus":0,"Continent":"K53","ID":11636,"Name":"x R001","PlayerID":698290577,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11636","ServerKey":"pl181","X":396,"Y":516},{"Bonus":0,"Continent":"K43","ID":11637,"Name":"Brat447","PlayerID":699262350,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11637","ServerKey":"pl181","X":392,"Y":495},{"Bonus":0,"Continent":"K65","ID":11638,"Name":"Crown City","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11638","ServerKey":"pl181","X":529,"Y":605},{"Bonus":0,"Continent":"K53","ID":11639,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11639","ServerKey":"pl181","X":394,"Y":509},{"Bonus":1,"Continent":"K56","ID":11640,"Name":"008 Drewno","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11640","ServerKey":"pl181","X":606,"Y":517},{"Bonus":0,"Continent":"K56","ID":11641,"Name":"0007. A - Nadindel","PlayerID":7125212,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11641","ServerKey":"pl181","X":606,"Y":528},{"Bonus":0,"Continent":"K45","ID":11642,"Name":"024","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11642","ServerKey":"pl181","X":551,"Y":407},{"Bonus":0,"Continent":"K53","ID":11644,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11644","ServerKey":"pl181","X":395,"Y":510},{"Bonus":8,"Continent":"K55","ID":11645,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11645","ServerKey":"pl181","X":570,"Y":584},{"Bonus":0,"Continent":"K46","ID":11646,"Name":"002 Alaska","PlayerID":7092442,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11646","ServerKey":"pl181","X":608,"Y":490},{"Bonus":0,"Continent":"K65","ID":11647,"Name":"#005","PlayerID":849001572,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11647","ServerKey":"pl181","X":539,"Y":601},{"Bonus":0,"Continent":"K65","ID":11648,"Name":"#026","PlayerID":849001572,"Points":6684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11648","ServerKey":"pl181","X":535,"Y":601},{"Bonus":0,"Continent":"K45","ID":11649,"Name":"0001","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11649","ServerKey":"pl181","X":555,"Y":406},{"Bonus":0,"Continent":"K54","ID":11650,"Name":"191","PlayerID":9179700,"Points":2516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11650","ServerKey":"pl181","X":431,"Y":581},{"Bonus":0,"Continent":"K46","ID":11651,"Name":"054","PlayerID":699573053,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11651","ServerKey":"pl181","X":607,"Y":478},{"Bonus":0,"Continent":"K54","ID":11652,"Name":"Winter is coming","PlayerID":699364813,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11652","ServerKey":"pl181","X":462,"Y":599},{"Bonus":0,"Continent":"K46","ID":11653,"Name":"028","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11653","ServerKey":"pl181","X":607,"Y":489},{"Bonus":0,"Continent":"K46","ID":11654,"Name":"West 05","PlayerID":698702991,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11654","ServerKey":"pl181","X":604,"Y":470},{"Bonus":0,"Continent":"K56","ID":11655,"Name":"0077","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11655","ServerKey":"pl181","X":603,"Y":523},{"Bonus":4,"Continent":"K55","ID":11656,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11656","ServerKey":"pl181","X":575,"Y":579},{"Bonus":0,"Continent":"K45","ID":11657,"Name":"195","PlayerID":849064752,"Points":5658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11657","ServerKey":"pl181","X":575,"Y":419},{"Bonus":0,"Continent":"K35","ID":11658,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11658","ServerKey":"pl181","X":517,"Y":394},{"Bonus":0,"Continent":"K56","ID":11659,"Name":"055","PlayerID":699573053,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11659","ServerKey":"pl181","X":610,"Y":500},{"Bonus":0,"Continent":"K53","ID":11660,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11660","ServerKey":"pl181","X":396,"Y":528},{"Bonus":0,"Continent":"K44","ID":11661,"Name":"00361 Wioska","PlayerID":3909522,"Points":6333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11661","ServerKey":"pl181","X":435,"Y":417},{"Bonus":0,"Continent":"K55","ID":11662,"Name":"020. Kwenthrith","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11662","ServerKey":"pl181","X":587,"Y":561},{"Bonus":0,"Continent":"K44","ID":11663,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11663","ServerKey":"pl181","X":489,"Y":408},{"Bonus":0,"Continent":"K44","ID":11664,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11664","ServerKey":"pl181","X":417,"Y":435},{"Bonus":0,"Continent":"K46","ID":11665,"Name":"Jehu_Kingdom_32_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11665","ServerKey":"pl181","X":602,"Y":468},{"Bonus":0,"Continent":"K56","ID":11666,"Name":"*016*","PlayerID":698670524,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11666","ServerKey":"pl181","X":605,"Y":509},{"Bonus":0,"Continent":"K46","ID":11667,"Name":"029","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11667","ServerKey":"pl181","X":609,"Y":487},{"Bonus":0,"Continent":"K56","ID":11668,"Name":"04 Flary","PlayerID":699377151,"Points":9142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11668","ServerKey":"pl181","X":620,"Y":507},{"Bonus":0,"Continent":"K55","ID":11669,"Name":"0016","PlayerID":699429153,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11669","ServerKey":"pl181","X":598,"Y":507},{"Bonus":0,"Continent":"K45","ID":11670,"Name":"ADEN","PlayerID":698588535,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11670","ServerKey":"pl181","X":576,"Y":424},{"Bonus":0,"Continent":"K34","ID":11671,"Name":"A021","PlayerID":8740199,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11671","ServerKey":"pl181","X":465,"Y":399},{"Bonus":0,"Continent":"K65","ID":11672,"Name":"- 023 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11672","ServerKey":"pl181","X":541,"Y":601},{"Bonus":0,"Continent":"K45","ID":11673,"Name":"k45 015","PlayerID":699368887,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11673","ServerKey":"pl181","X":574,"Y":433},{"Bonus":0,"Continent":"K44","ID":11674,"Name":"A007","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11674","ServerKey":"pl181","X":459,"Y":401},{"Bonus":0,"Continent":"K34","ID":11675,"Name":"Shimotsuki Village","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11675","ServerKey":"pl181","X":494,"Y":390},{"Bonus":0,"Continent":"K54","ID":11676,"Name":"Z barba 005","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11676","ServerKey":"pl181","X":428,"Y":579},{"Bonus":0,"Continent":"K55","ID":11677,"Name":"064","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11677","ServerKey":"pl181","X":585,"Y":591},{"Bonus":0,"Continent":"K55","ID":11678,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11678","ServerKey":"pl181","X":593,"Y":557},{"Bonus":0,"Continent":"K44","ID":11679,"Name":"A035","PlayerID":699299123,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11679","ServerKey":"pl181","X":495,"Y":416},{"Bonus":0,"Continent":"K54","ID":11680,"Name":"0634","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11680","ServerKey":"pl181","X":447,"Y":595},{"Bonus":0,"Continent":"K54","ID":11681,"Name":"18120","PlayerID":849028088,"Points":6817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11681","ServerKey":"pl181","X":436,"Y":589},{"Bonus":0,"Continent":"K43","ID":11682,"Name":"SsSs","PlayerID":1536625,"Points":8288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11682","ServerKey":"pl181","X":394,"Y":498},{"Bonus":0,"Continent":"K46","ID":11683,"Name":"010 To dawaj lufe","PlayerID":699272633,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11683","ServerKey":"pl181","X":603,"Y":479},{"Bonus":0,"Continent":"K35","ID":11685,"Name":"005 Od teraz bilet do Bydgoszczy","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11685","ServerKey":"pl181","X":503,"Y":390},{"Bonus":4,"Continent":"K44","ID":11686,"Name":"K44 - [001] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11686","ServerKey":"pl181","X":466,"Y":400},{"Bonus":0,"Continent":"K56","ID":11687,"Name":"037 Petro180 - 1.","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11687","ServerKey":"pl181","X":608,"Y":515},{"Bonus":0,"Continent":"K53","ID":11688,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11688","ServerKey":"pl181","X":391,"Y":503},{"Bonus":0,"Continent":"K45","ID":11689,"Name":"053","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11689","ServerKey":"pl181","X":579,"Y":405},{"Bonus":0,"Continent":"K43","ID":11690,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11690","ServerKey":"pl181","X":396,"Y":468},{"Bonus":6,"Continent":"K53","ID":11691,"Name":"x Osada koczownikĂłw","PlayerID":698290577,"Points":9293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11691","ServerKey":"pl181","X":390,"Y":508},{"Bonus":0,"Continent":"K55","ID":11692,"Name":"1.Denver","PlayerID":698215322,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11692","ServerKey":"pl181","X":554,"Y":591},{"Bonus":0,"Continent":"K44","ID":11693,"Name":"Gravity","PlayerID":698962117,"Points":9508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11693","ServerKey":"pl181","X":408,"Y":449},{"Bonus":0,"Continent":"K54","ID":11694,"Name":"0624","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11694","ServerKey":"pl181","X":442,"Y":593},{"Bonus":0,"Continent":"K35","ID":11695,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11695","ServerKey":"pl181","X":520,"Y":398},{"Bonus":0,"Continent":"K44","ID":11696,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11696","ServerKey":"pl181","X":405,"Y":450},{"Bonus":9,"Continent":"K53","ID":11697,"Name":"[008] ...","PlayerID":849030226,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11697","ServerKey":"pl181","X":393,"Y":521},{"Bonus":0,"Continent":"K44","ID":11698,"Name":"00311 Wioska","PlayerID":3909522,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11698","ServerKey":"pl181","X":434,"Y":418},{"Bonus":0,"Continent":"K56","ID":11699,"Name":"086","PlayerID":699573053,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11699","ServerKey":"pl181","X":610,"Y":507},{"Bonus":1,"Continent":"K44","ID":11701,"Name":"Osada koczownikĂłw","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11701","ServerKey":"pl181","X":412,"Y":442},{"Bonus":0,"Continent":"K44","ID":11702,"Name":"A004","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11702","ServerKey":"pl181","X":446,"Y":404},{"Bonus":0,"Continent":"K44","ID":11703,"Name":".Huntsville","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11703","ServerKey":"pl181","X":470,"Y":495},{"Bonus":0,"Continent":"K65","ID":11704,"Name":"- 022 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11704","ServerKey":"pl181","X":540,"Y":602},{"Bonus":0,"Continent":"K65","ID":11705,"Name":"Teby_02","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11705","ServerKey":"pl181","X":504,"Y":610},{"Bonus":0,"Continent":"K43","ID":11706,"Name":"[A]_[012] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11706","ServerKey":"pl181","X":394,"Y":487},{"Bonus":0,"Continent":"K45","ID":11707,"Name":"010","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11707","ServerKey":"pl181","X":574,"Y":423},{"Bonus":0,"Continent":"K56","ID":11708,"Name":"056","PlayerID":699573053,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11708","ServerKey":"pl181","X":610,"Y":508},{"Bonus":0,"Continent":"K45","ID":11709,"Name":"[322] Chorągiewka na wietrze","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11709","ServerKey":"pl181","X":590,"Y":437},{"Bonus":0,"Continent":"K34","ID":11710,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11710","ServerKey":"pl181","X":471,"Y":396},{"Bonus":0,"Continent":"K56","ID":11711,"Name":"078","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11711","ServerKey":"pl181","X":610,"Y":511},{"Bonus":0,"Continent":"K44","ID":11712,"Name":"044 White Horse","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11712","ServerKey":"pl181","X":466,"Y":467},{"Bonus":0,"Continent":"K35","ID":11713,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11713","ServerKey":"pl181","X":514,"Y":392},{"Bonus":4,"Continent":"K35","ID":11714,"Name":"E002","PlayerID":7758085,"Points":6119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11714","ServerKey":"pl181","X":515,"Y":392},{"Bonus":0,"Continent":"K44","ID":11715,"Name":"Gravity","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11715","ServerKey":"pl181","X":404,"Y":454},{"Bonus":0,"Continent":"K45","ID":11716,"Name":"[371] Chorągiewka na wietrze D","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11716","ServerKey":"pl181","X":588,"Y":433},{"Bonus":2,"Continent":"K55","ID":11717,"Name":"PYRLANDIA 033 $","PlayerID":33900,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11717","ServerKey":"pl181","X":556,"Y":595},{"Bonus":0,"Continent":"K55","ID":11718,"Name":"PYRLANDIA 023 s","PlayerID":33900,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11718","ServerKey":"pl181","X":562,"Y":589},{"Bonus":0,"Continent":"K65","ID":11719,"Name":"*308*","PlayerID":606407,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11719","ServerKey":"pl181","X":512,"Y":609},{"Bonus":0,"Continent":"K35","ID":11720,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11720","ServerKey":"pl181","X":515,"Y":393},{"Bonus":0,"Continent":"K64","ID":11721,"Name":"~013.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11721","ServerKey":"pl181","X":499,"Y":605},{"Bonus":0,"Continent":"K54","ID":11722,"Name":"0629","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11722","ServerKey":"pl181","X":440,"Y":593},{"Bonus":0,"Continent":"K44","ID":11723,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11723","ServerKey":"pl181","X":416,"Y":430},{"Bonus":0,"Continent":"K55","ID":11724,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11724","ServerKey":"pl181","X":581,"Y":573},{"Bonus":0,"Continent":"K64","ID":11725,"Name":"Naboo 4","PlayerID":699383121,"Points":9236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11725","ServerKey":"pl181","X":486,"Y":610},{"Bonus":0,"Continent":"K46","ID":11726,"Name":"*027*","PlayerID":698670524,"Points":5861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11726","ServerKey":"pl181","X":610,"Y":498},{"Bonus":0,"Continent":"K45","ID":11727,"Name":"119","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11727","ServerKey":"pl181","X":564,"Y":412},{"Bonus":0,"Continent":"K55","ID":11728,"Name":"Riders On The Storm","PlayerID":848926293,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11728","ServerKey":"pl181","X":589,"Y":561},{"Bonus":0,"Continent":"K45","ID":11729,"Name":"ADEN","PlayerID":698588535,"Points":8933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11729","ServerKey":"pl181","X":575,"Y":424},{"Bonus":0,"Continent":"K43","ID":11730,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11730","ServerKey":"pl181","X":397,"Y":467},{"Bonus":0,"Continent":"K45","ID":11731,"Name":"037 Konfideracja","PlayerID":698829590,"Points":8739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11731","ServerKey":"pl181","X":597,"Y":447},{"Bonus":0,"Continent":"K45","ID":11733,"Name":"010","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11733","ServerKey":"pl181","X":597,"Y":457},{"Bonus":0,"Continent":"K65","ID":11734,"Name":"Crestholm Channels","PlayerID":8199417,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11734","ServerKey":"pl181","X":530,"Y":603},{"Bonus":0,"Continent":"K55","ID":11735,"Name":"007","PlayerID":6160655,"Points":10367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11735","ServerKey":"pl181","X":596,"Y":547},{"Bonus":0,"Continent":"K46","ID":11736,"Name":"017","PlayerID":8459255,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11736","ServerKey":"pl181","X":607,"Y":474},{"Bonus":4,"Continent":"K65","ID":11737,"Name":"TEBY","PlayerID":2585846,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11737","ServerKey":"pl181","X":504,"Y":607},{"Bonus":0,"Continent":"K64","ID":11738,"Name":"007","PlayerID":33900,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11738","ServerKey":"pl181","X":477,"Y":607},{"Bonus":7,"Continent":"K45","ID":11739,"Name":"BBB","PlayerID":1006847,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11739","ServerKey":"pl181","X":567,"Y":416},{"Bonus":0,"Continent":"K64","ID":11740,"Name":"aaa","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11740","ServerKey":"pl181","X":477,"Y":605},{"Bonus":0,"Continent":"K46","ID":11741,"Name":"0010","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11741","ServerKey":"pl181","X":605,"Y":492},{"Bonus":0,"Continent":"K53","ID":11742,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11742","ServerKey":"pl181","X":395,"Y":532},{"Bonus":0,"Continent":"K45","ID":11743,"Name":"A14","PlayerID":849093742,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11743","ServerKey":"pl181","X":599,"Y":459},{"Bonus":0,"Continent":"K45","ID":11744,"Name":"029","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11744","ServerKey":"pl181","X":594,"Y":451},{"Bonus":0,"Continent":"K44","ID":11745,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11745","ServerKey":"pl181","X":403,"Y":453},{"Bonus":3,"Continent":"K43","ID":11746,"Name":"Szlachcic","PlayerID":6258092,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11746","ServerKey":"pl181","X":393,"Y":484},{"Bonus":0,"Continent":"K55","ID":11747,"Name":"*5502*a DzieƄ jak codzieƄ","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11747","ServerKey":"pl181","X":596,"Y":556},{"Bonus":0,"Continent":"K53","ID":11748,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11748","ServerKey":"pl181","X":397,"Y":533},{"Bonus":0,"Continent":"K64","ID":11749,"Name":"Winter is coming","PlayerID":699364813,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11749","ServerKey":"pl181","X":460,"Y":601},{"Bonus":0,"Continent":"K34","ID":11750,"Name":"Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11750","ServerKey":"pl181","X":470,"Y":384},{"Bonus":0,"Continent":"K44","ID":11751,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11751","ServerKey":"pl181","X":402,"Y":460},{"Bonus":0,"Continent":"K45","ID":11752,"Name":"[320] Chorągiewka na wietrze","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11752","ServerKey":"pl181","X":589,"Y":434},{"Bonus":0,"Continent":"K43","ID":11753,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11753","ServerKey":"pl181","X":396,"Y":465},{"Bonus":0,"Continent":"K44","ID":11754,"Name":"Suppi","PlayerID":699856962,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11754","ServerKey":"pl181","X":427,"Y":422},{"Bonus":0,"Continent":"K56","ID":11755,"Name":"011 Pola Pelennoru","PlayerID":8013349,"Points":9043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11755","ServerKey":"pl181","X":604,"Y":526},{"Bonus":0,"Continent":"K56","ID":11756,"Name":"[023] Tappaa sinut","PlayerID":848985692,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11756","ServerKey":"pl181","X":602,"Y":533},{"Bonus":0,"Continent":"K65","ID":11757,"Name":"~012.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11757","ServerKey":"pl181","X":501,"Y":609},{"Bonus":0,"Continent":"K55","ID":11758,"Name":"PYZA 006 brif123456789","PlayerID":33900,"Points":10125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11758","ServerKey":"pl181","X":581,"Y":574},{"Bonus":0,"Continent":"K65","ID":11759,"Name":"*Tam03*","PlayerID":606407,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11759","ServerKey":"pl181","X":523,"Y":605},{"Bonus":0,"Continent":"K45","ID":11760,"Name":".:090:.JuanPabloII","PlayerID":848934935,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11760","ServerKey":"pl181","X":542,"Y":442},{"Bonus":0,"Continent":"K45","ID":11761,"Name":"121","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11761","ServerKey":"pl181","X":548,"Y":401},{"Bonus":0,"Continent":"K53","ID":11762,"Name":"050 Ɓąkoszyn","PlayerID":699382126,"Points":9206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11762","ServerKey":"pl181","X":390,"Y":556},{"Bonus":0,"Continent":"K45","ID":11763,"Name":"023","PlayerID":849088515,"Points":8793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11763","ServerKey":"pl181","X":596,"Y":453},{"Bonus":0,"Continent":"K56","ID":11764,"Name":"sƂodziuteƄka 03","PlayerID":8013349,"Points":6789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11764","ServerKey":"pl181","X":603,"Y":535},{"Bonus":0,"Continent":"K56","ID":11765,"Name":"044 Ferragus","PlayerID":8323711,"Points":9124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11765","ServerKey":"pl181","X":622,"Y":529},{"Bonus":0,"Continent":"K45","ID":11766,"Name":"025","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11766","ServerKey":"pl181","X":548,"Y":402},{"Bonus":0,"Continent":"K55","ID":11767,"Name":"0010","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11767","ServerKey":"pl181","X":509,"Y":527},{"Bonus":0,"Continent":"K55","ID":11768,"Name":"z 051","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11768","ServerKey":"pl181","X":558,"Y":591},{"Bonus":0,"Continent":"K54","ID":11769,"Name":"085 koniec","PlayerID":699382126,"Points":2741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11769","ServerKey":"pl181","X":407,"Y":556},{"Bonus":0,"Continent":"K34","ID":11770,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11770","ServerKey":"pl181","X":480,"Y":391},{"Bonus":0,"Continent":"K35","ID":11771,"Name":"005","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11771","ServerKey":"pl181","X":542,"Y":399},{"Bonus":0,"Continent":"K43","ID":11772,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11772","ServerKey":"pl181","X":398,"Y":469},{"Bonus":0,"Continent":"K35","ID":11773,"Name":"032","PlayerID":1424656,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11773","ServerKey":"pl181","X":543,"Y":398},{"Bonus":0,"Continent":"K45","ID":11774,"Name":"024","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11774","ServerKey":"pl181","X":558,"Y":407},{"Bonus":0,"Continent":"K65","ID":11775,"Name":"#007","PlayerID":849001572,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11775","ServerKey":"pl181","X":543,"Y":601},{"Bonus":0,"Continent":"K45","ID":11776,"Name":"Wioska 123Misiek","PlayerID":849078086,"Points":5771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11776","ServerKey":"pl181","X":568,"Y":418},{"Bonus":0,"Continent":"K65","ID":11777,"Name":"00062","PlayerID":848915531,"Points":7876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11777","ServerKey":"pl181","X":535,"Y":605},{"Bonus":0,"Continent":"K65","ID":11778,"Name":"Mako Reactor","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11778","ServerKey":"pl181","X":523,"Y":608},{"Bonus":0,"Continent":"K54","ID":11779,"Name":"Wioska smieli","PlayerID":9167250,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11779","ServerKey":"pl181","X":403,"Y":569},{"Bonus":0,"Continent":"K44","ID":11780,"Name":"NOT","PlayerID":9236866,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11780","ServerKey":"pl181","X":413,"Y":433},{"Bonus":0,"Continent":"K65","ID":11781,"Name":"Tatry","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11781","ServerKey":"pl181","X":507,"Y":608},{"Bonus":0,"Continent":"K54","ID":11782,"Name":"A 011.","PlayerID":849028088,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11782","ServerKey":"pl181","X":434,"Y":583},{"Bonus":0,"Continent":"K54","ID":11783,"Name":"KIELBA 112","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11783","ServerKey":"pl181","X":454,"Y":595},{"Bonus":0,"Continent":"K56","ID":11784,"Name":"0004","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11784","ServerKey":"pl181","X":606,"Y":500},{"Bonus":0,"Continent":"K44","ID":11785,"Name":"0095","PlayerID":699431255,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11785","ServerKey":"pl181","X":456,"Y":400},{"Bonus":0,"Continent":"K44","ID":11786,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11786","ServerKey":"pl181","X":400,"Y":459},{"Bonus":0,"Continent":"K35","ID":11787,"Name":"D008","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11787","ServerKey":"pl181","X":511,"Y":392},{"Bonus":0,"Continent":"K53","ID":11788,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11788","ServerKey":"pl181","X":397,"Y":538},{"Bonus":0,"Continent":"K64","ID":11789,"Name":"Coruscant 1","PlayerID":699383121,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11789","ServerKey":"pl181","X":499,"Y":606},{"Bonus":0,"Continent":"K56","ID":11790,"Name":"sƂodziuteƄka 11","PlayerID":8013349,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11790","ServerKey":"pl181","X":602,"Y":536},{"Bonus":0,"Continent":"K44","ID":11791,"Name":"K44 x026m","PlayerID":698364331,"Points":6778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11791","ServerKey":"pl181","X":434,"Y":406},{"Bonus":0,"Continent":"K43","ID":11792,"Name":"Avanti!","PlayerID":698625834,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11792","ServerKey":"pl181","X":379,"Y":486},{"Bonus":0,"Continent":"K53","ID":11793,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11793","ServerKey":"pl181","X":388,"Y":534},{"Bonus":0,"Continent":"K56","ID":11794,"Name":"0036","PlayerID":6510480,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11794","ServerKey":"pl181","X":610,"Y":516},{"Bonus":0,"Continent":"K64","ID":11795,"Name":"~093.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11795","ServerKey":"pl181","X":491,"Y":606},{"Bonus":0,"Continent":"K34","ID":11796,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11796","ServerKey":"pl181","X":483,"Y":391},{"Bonus":0,"Continent":"K45","ID":11797,"Name":"028","PlayerID":8459255,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11797","ServerKey":"pl181","X":591,"Y":460},{"Bonus":0,"Continent":"K54","ID":11798,"Name":"Ggggg","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11798","ServerKey":"pl181","X":420,"Y":574},{"Bonus":0,"Continent":"K65","ID":11799,"Name":"#034","PlayerID":849001572,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11799","ServerKey":"pl181","X":522,"Y":604},{"Bonus":0,"Continent":"K55","ID":11800,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11800","ServerKey":"pl181","X":572,"Y":581},{"Bonus":0,"Continent":"K34","ID":11801,"Name":"0033","PlayerID":699431255,"Points":10037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11801","ServerKey":"pl181","X":463,"Y":396},{"Bonus":0,"Continent":"K54","ID":11802,"Name":"zajad","PlayerID":9167250,"Points":7159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11802","ServerKey":"pl181","X":424,"Y":577},{"Bonus":0,"Continent":"K56","ID":11803,"Name":"004 Luxx","PlayerID":8013349,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11803","ServerKey":"pl181","X":603,"Y":532},{"Bonus":0,"Continent":"K44","ID":11804,"Name":"0027 Wioska","PlayerID":3909522,"Points":10305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11804","ServerKey":"pl181","X":434,"Y":412},{"Bonus":0,"Continent":"K46","ID":11805,"Name":"0049","PlayerID":698416970,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11805","ServerKey":"pl181","X":608,"Y":471},{"Bonus":0,"Continent":"K44","ID":11806,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11806","ServerKey":"pl181","X":413,"Y":436},{"Bonus":0,"Continent":"K44","ID":11807,"Name":"K44 x034","PlayerID":698364331,"Points":7278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11807","ServerKey":"pl181","X":439,"Y":408},{"Bonus":0,"Continent":"K55","ID":11808,"Name":"020","PlayerID":699524362,"Points":8125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11808","ServerKey":"pl181","X":583,"Y":569},{"Bonus":0,"Continent":"K45","ID":11809,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11809","ServerKey":"pl181","X":576,"Y":495},{"Bonus":0,"Continent":"K46","ID":11810,"Name":"057","PlayerID":699573053,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11810","ServerKey":"pl181","X":606,"Y":477},{"Bonus":3,"Continent":"K35","ID":11811,"Name":"023","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11811","ServerKey":"pl181","X":543,"Y":399},{"Bonus":0,"Continent":"K55","ID":11812,"Name":"-=001=-","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11812","ServerKey":"pl181","X":567,"Y":585},{"Bonus":0,"Continent":"K64","ID":11813,"Name":"~025.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11813","ServerKey":"pl181","X":489,"Y":610},{"Bonus":0,"Continent":"K53","ID":11814,"Name":"TYLKO PP","PlayerID":699364813,"Points":3539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11814","ServerKey":"pl181","X":394,"Y":547},{"Bonus":0,"Continent":"K44","ID":11816,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11816","ServerKey":"pl181","X":413,"Y":431},{"Bonus":0,"Continent":"K46","ID":11817,"Name":"A20","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11817","ServerKey":"pl181","X":604,"Y":463},{"Bonus":0,"Continent":"K65","ID":11818,"Name":"- 051 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11818","ServerKey":"pl181","X":539,"Y":604},{"Bonus":0,"Continent":"K54","ID":11819,"Name":"Suppi","PlayerID":699856962,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11819","ServerKey":"pl181","X":452,"Y":595},{"Bonus":0,"Continent":"K46","ID":11820,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11820","ServerKey":"pl181","X":609,"Y":439},{"Bonus":0,"Continent":"K53","ID":11821,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11821","ServerKey":"pl181","X":393,"Y":506},{"Bonus":0,"Continent":"K64","ID":11822,"Name":"0003","PlayerID":33900,"Points":8939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11822","ServerKey":"pl181","X":466,"Y":605},{"Bonus":0,"Continent":"K46","ID":11823,"Name":"0006","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11823","ServerKey":"pl181","X":606,"Y":494},{"Bonus":0,"Continent":"K56","ID":11824,"Name":"0014. A -","PlayerID":7125212,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11824","ServerKey":"pl181","X":610,"Y":510},{"Bonus":0,"Continent":"K34","ID":11825,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11825","ServerKey":"pl181","X":434,"Y":398},{"Bonus":0,"Continent":"K64","ID":11826,"Name":"#017","PlayerID":849001572,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11826","ServerKey":"pl181","X":486,"Y":609},{"Bonus":0,"Continent":"K56","ID":11827,"Name":"Wioska (011)","PlayerID":698232227,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11827","ServerKey":"pl181","X":603,"Y":542},{"Bonus":0,"Continent":"K56","ID":11828,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11828","ServerKey":"pl181","X":601,"Y":540},{"Bonus":0,"Continent":"K44","ID":11829,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11829","ServerKey":"pl181","X":453,"Y":401},{"Bonus":0,"Continent":"K44","ID":11830,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11830","ServerKey":"pl181","X":413,"Y":437},{"Bonus":0,"Continent":"K46","ID":11831,"Name":"032 Louisiana","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11831","ServerKey":"pl181","X":607,"Y":472},{"Bonus":0,"Continent":"K44","ID":11832,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11832","ServerKey":"pl181","X":415,"Y":434},{"Bonus":0,"Continent":"K56","ID":11833,"Name":"Wioska barbarzyƄska","PlayerID":698845189,"Points":7985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11833","ServerKey":"pl181","X":604,"Y":521},{"Bonus":0,"Continent":"K65","ID":11834,"Name":"~018.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11834","ServerKey":"pl181","X":501,"Y":608},{"Bonus":0,"Continent":"K44","ID":11835,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11835","ServerKey":"pl181","X":403,"Y":450},{"Bonus":0,"Continent":"K44","ID":11836,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11836","ServerKey":"pl181","X":418,"Y":425},{"Bonus":0,"Continent":"K65","ID":11837,"Name":"*Tam01*","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11837","ServerKey":"pl181","X":525,"Y":606},{"Bonus":0,"Continent":"K54","ID":11838,"Name":"Winter is coming","PlayerID":699364813,"Points":8962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11838","ServerKey":"pl181","X":460,"Y":595},{"Bonus":0,"Continent":"K34","ID":11839,"Name":"Guardian","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11839","ServerKey":"pl181","X":499,"Y":389},{"Bonus":0,"Continent":"K44","ID":11840,"Name":"0035 Wioska Sjt","PlayerID":3909522,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11840","ServerKey":"pl181","X":430,"Y":418},{"Bonus":0,"Continent":"K56","ID":11841,"Name":"020.","PlayerID":8900955,"Points":5967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11841","ServerKey":"pl181","X":600,"Y":536},{"Bonus":0,"Continent":"K44","ID":11842,"Name":"Suppi","PlayerID":699856962,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11842","ServerKey":"pl181","X":423,"Y":422},{"Bonus":5,"Continent":"K45","ID":11843,"Name":"[356] Chorągiewka na wietrze","PlayerID":848985692,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11843","ServerKey":"pl181","X":594,"Y":442},{"Bonus":0,"Continent":"K65","ID":11844,"Name":"#033","PlayerID":849001572,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11844","ServerKey":"pl181","X":522,"Y":605},{"Bonus":0,"Continent":"K54","ID":11845,"Name":"003","PlayerID":849084740,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11845","ServerKey":"pl181","X":428,"Y":580},{"Bonus":0,"Continent":"K56","ID":11846,"Name":"001 Wioska Best Wiedzmin","PlayerID":6409472,"Points":8114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11846","ServerKey":"pl181","X":606,"Y":512},{"Bonus":0,"Continent":"K44","ID":11847,"Name":"Gravity","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11847","ServerKey":"pl181","X":403,"Y":456},{"Bonus":0,"Continent":"K44","ID":11848,"Name":"@@@@@@@@","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11848","ServerKey":"pl181","X":411,"Y":433},{"Bonus":0,"Continent":"K34","ID":11849,"Name":"Bagdad","PlayerID":8847546,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11849","ServerKey":"pl181","X":474,"Y":395},{"Bonus":0,"Continent":"K43","ID":11850,"Name":"xhav","PlayerID":698807570,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11850","ServerKey":"pl181","X":394,"Y":471},{"Bonus":0,"Continent":"K55","ID":11851,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11851","ServerKey":"pl181","X":579,"Y":578},{"Bonus":0,"Continent":"K54","ID":11852,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11852","ServerKey":"pl181","X":455,"Y":596},{"Bonus":0,"Continent":"K64","ID":11853,"Name":"Beginners Hall","PlayerID":8199417,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11853","ServerKey":"pl181","X":467,"Y":606},{"Bonus":0,"Continent":"K44","ID":11854,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11854","ServerKey":"pl181","X":413,"Y":432},{"Bonus":0,"Continent":"K45","ID":11855,"Name":"007","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11855","ServerKey":"pl181","X":554,"Y":405},{"Bonus":0,"Continent":"K64","ID":11856,"Name":"020.xxx","PlayerID":8612358,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11856","ServerKey":"pl181","X":477,"Y":608},{"Bonus":0,"Continent":"K65","ID":11857,"Name":"013","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11857","ServerKey":"pl181","X":544,"Y":602},{"Bonus":0,"Continent":"K64","ID":11858,"Name":"0004","PlayerID":33900,"Points":9313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11858","ServerKey":"pl181","X":467,"Y":605},{"Bonus":0,"Continent":"K54","ID":11859,"Name":"B11","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11859","ServerKey":"pl181","X":408,"Y":556},{"Bonus":7,"Continent":"K54","ID":11860,"Name":"0644","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11860","ServerKey":"pl181","X":441,"Y":592},{"Bonus":0,"Continent":"K45","ID":11861,"Name":"006","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11861","ServerKey":"pl181","X":552,"Y":403},{"Bonus":0,"Continent":"K54","ID":11862,"Name":"W 006","PlayerID":849084740,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11862","ServerKey":"pl181","X":433,"Y":589},{"Bonus":1,"Continent":"K55","ID":11863,"Name":"PYZA 005 Zoonk","PlayerID":33900,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11863","ServerKey":"pl181","X":582,"Y":570},{"Bonus":0,"Continent":"K55","ID":11864,"Name":"Yaima","PlayerID":848926293,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11864","ServerKey":"pl181","X":591,"Y":564},{"Bonus":0,"Continent":"K54","ID":11865,"Name":"005","PlayerID":9167250,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11865","ServerKey":"pl181","X":421,"Y":574},{"Bonus":0,"Continent":"K53","ID":11866,"Name":"Tank 002","PlayerID":698290577,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11866","ServerKey":"pl181","X":393,"Y":515},{"Bonus":0,"Continent":"K64","ID":11867,"Name":"EKG Chia + R","PlayerID":33900,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11867","ServerKey":"pl181","X":470,"Y":602},{"Bonus":0,"Continent":"K45","ID":11868,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11868","ServerKey":"pl181","X":529,"Y":427},{"Bonus":0,"Continent":"K56","ID":11869,"Name":"0005","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11869","ServerKey":"pl181","X":602,"Y":540},{"Bonus":0,"Continent":"K45","ID":11870,"Name":"177","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11870","ServerKey":"pl181","X":578,"Y":423},{"Bonus":0,"Continent":"K34","ID":11871,"Name":"0092","PlayerID":699431255,"Points":9772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11871","ServerKey":"pl181","X":463,"Y":399},{"Bonus":0,"Continent":"K45","ID":11872,"Name":"#02.","PlayerID":848967710,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11872","ServerKey":"pl181","X":527,"Y":468},{"Bonus":0,"Continent":"K65","ID":11873,"Name":"- 016 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11873","ServerKey":"pl181","X":550,"Y":600},{"Bonus":0,"Continent":"K43","ID":11874,"Name":"[A]_[017] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11874","ServerKey":"pl181","X":393,"Y":490},{"Bonus":0,"Continent":"K55","ID":11875,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11875","ServerKey":"pl181","X":568,"Y":585},{"Bonus":0,"Continent":"K46","ID":11876,"Name":"019","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11876","ServerKey":"pl181","X":610,"Y":499},{"Bonus":0,"Continent":"K46","ID":11877,"Name":"011","PlayerID":8459255,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11877","ServerKey":"pl181","X":608,"Y":476},{"Bonus":0,"Continent":"K56","ID":11878,"Name":"008","PlayerID":6160655,"Points":10560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11878","ServerKey":"pl181","X":601,"Y":545},{"Bonus":0,"Continent":"K44","ID":11879,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11879","ServerKey":"pl181","X":439,"Y":407},{"Bonus":0,"Continent":"K53","ID":11880,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11880","ServerKey":"pl181","X":392,"Y":522},{"Bonus":0,"Continent":"K55","ID":11881,"Name":"0005","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11881","ServerKey":"pl181","X":504,"Y":500},{"Bonus":0,"Continent":"K54","ID":11882,"Name":"Peska","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11882","ServerKey":"pl181","X":413,"Y":562},{"Bonus":0,"Continent":"K54","ID":11883,"Name":"W 003","PlayerID":849084740,"Points":9251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11883","ServerKey":"pl181","X":434,"Y":590},{"Bonus":0,"Continent":"K53","ID":11884,"Name":"Erem","PlayerID":1804724,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11884","ServerKey":"pl181","X":395,"Y":527},{"Bonus":0,"Continent":"K56","ID":11886,"Name":"010","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11886","ServerKey":"pl181","X":610,"Y":505},{"Bonus":0,"Continent":"K43","ID":11887,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11887","ServerKey":"pl181","X":399,"Y":462},{"Bonus":0,"Continent":"K45","ID":11888,"Name":"026","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11888","ServerKey":"pl181","X":562,"Y":410},{"Bonus":0,"Continent":"K44","ID":11889,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11889","ServerKey":"pl181","X":400,"Y":463},{"Bonus":0,"Continent":"K46","ID":11890,"Name":"A06","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11890","ServerKey":"pl181","X":601,"Y":463},{"Bonus":0,"Continent":"K34","ID":11891,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11891","ServerKey":"pl181","X":439,"Y":393},{"Bonus":0,"Continent":"K34","ID":11892,"Name":"A046","PlayerID":8740199,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11892","ServerKey":"pl181","X":459,"Y":399},{"Bonus":0,"Continent":"K43","ID":11893,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11893","ServerKey":"pl181","X":394,"Y":483},{"Bonus":0,"Continent":"K54","ID":11894,"Name":"0643","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11894","ServerKey":"pl181","X":440,"Y":589},{"Bonus":0,"Continent":"K43","ID":11895,"Name":"Nope","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11895","ServerKey":"pl181","X":393,"Y":479},{"Bonus":0,"Continent":"K53","ID":11896,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11896","ServerKey":"pl181","X":398,"Y":536},{"Bonus":0,"Continent":"K45","ID":11897,"Name":"50-4 CYTADELA","PlayerID":699368887,"Points":7089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11897","ServerKey":"pl181","X":584,"Y":432},{"Bonus":0,"Continent":"K44","ID":11898,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11898","ServerKey":"pl181","X":401,"Y":455},{"Bonus":0,"Continent":"K35","ID":11899,"Name":"080","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11899","ServerKey":"pl181","X":553,"Y":394},{"Bonus":0,"Continent":"K43","ID":11900,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11900","ServerKey":"pl181","X":396,"Y":475},{"Bonus":0,"Continent":"K55","ID":11901,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11901","ServerKey":"pl181","X":585,"Y":572},{"Bonus":0,"Continent":"K53","ID":11902,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11902","ServerKey":"pl181","X":392,"Y":512},{"Bonus":0,"Continent":"K46","ID":11903,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11903","ServerKey":"pl181","X":610,"Y":494},{"Bonus":0,"Continent":"K55","ID":11904,"Name":"015.","PlayerID":8900955,"Points":5107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11904","ServerKey":"pl181","X":599,"Y":544},{"Bonus":0,"Continent":"K54","ID":11905,"Name":"D0002","PlayerID":8841266,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11905","ServerKey":"pl181","X":438,"Y":569},{"Bonus":0,"Continent":"K55","ID":11906,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11906","ServerKey":"pl181","X":581,"Y":576},{"Bonus":9,"Continent":"K53","ID":11907,"Name":"Osada koczownikĂłw","PlayerID":849030226,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11907","ServerKey":"pl181","X":396,"Y":533},{"Bonus":0,"Continent":"K35","ID":11908,"Name":"Gattacka","PlayerID":699298370,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11908","ServerKey":"pl181","X":533,"Y":394},{"Bonus":0,"Continent":"K44","ID":11909,"Name":"K44 x008","PlayerID":698364331,"Points":7516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11909","ServerKey":"pl181","X":438,"Y":411},{"Bonus":1,"Continent":"K55","ID":11910,"Name":"0006","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11910","ServerKey":"pl181","X":598,"Y":546},{"Bonus":0,"Continent":"K34","ID":11911,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11911","ServerKey":"pl181","X":497,"Y":392},{"Bonus":0,"Continent":"K44","ID":11912,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11912","ServerKey":"pl181","X":400,"Y":461},{"Bonus":0,"Continent":"K45","ID":11913,"Name":"BBB","PlayerID":1006847,"Points":10116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11913","ServerKey":"pl181","X":563,"Y":412},{"Bonus":0,"Continent":"K43","ID":11914,"Name":"01. Pollin","PlayerID":699523631,"Points":6578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11914","ServerKey":"pl181","X":395,"Y":467},{"Bonus":0,"Continent":"K55","ID":11915,"Name":"Wioska 004","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11915","ServerKey":"pl181","X":598,"Y":581},{"Bonus":0,"Continent":"K34","ID":11916,"Name":"021","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11916","ServerKey":"pl181","X":490,"Y":390},{"Bonus":3,"Continent":"K56","ID":11917,"Name":"009","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11917","ServerKey":"pl181","X":605,"Y":522},{"Bonus":0,"Continent":"K35","ID":11918,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11918","ServerKey":"pl181","X":536,"Y":396},{"Bonus":0,"Continent":"K44","ID":11919,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11919","ServerKey":"pl181","X":454,"Y":402},{"Bonus":0,"Continent":"K46","ID":11920,"Name":"001","PlayerID":8459255,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11920","ServerKey":"pl181","X":603,"Y":464},{"Bonus":0,"Continent":"K44","ID":11921,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11921","ServerKey":"pl181","X":415,"Y":436},{"Bonus":0,"Continent":"K44","ID":11922,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11922","ServerKey":"pl181","X":455,"Y":414},{"Bonus":0,"Continent":"K65","ID":11923,"Name":"Collapsed Expressway - Old Bypas","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11923","ServerKey":"pl181","X":527,"Y":607},{"Bonus":0,"Continent":"K44","ID":11924,"Name":"Gravity","PlayerID":698962117,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11924","ServerKey":"pl181","X":404,"Y":443},{"Bonus":0,"Continent":"K55","ID":11925,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11925","ServerKey":"pl181","X":568,"Y":584},{"Bonus":0,"Continent":"K54","ID":11926,"Name":"KIELBA 030","PlayerID":699342219,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11926","ServerKey":"pl181","X":454,"Y":578},{"Bonus":0,"Continent":"K45","ID":11927,"Name":"160","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11927","ServerKey":"pl181","X":572,"Y":421},{"Bonus":0,"Continent":"K44","ID":11928,"Name":"A003","PlayerID":8740199,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11928","ServerKey":"pl181","X":445,"Y":404},{"Bonus":0,"Continent":"K35","ID":11929,"Name":".achim.","PlayerID":6936607,"Points":4302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11929","ServerKey":"pl181","X":526,"Y":395},{"Bonus":1,"Continent":"K65","ID":11930,"Name":"ƚmieszki","PlayerID":3454753,"Points":9026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11930","ServerKey":"pl181","X":529,"Y":607},{"Bonus":0,"Continent":"K56","ID":11931,"Name":"0003. A - Uru baen","PlayerID":7125212,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11931","ServerKey":"pl181","X":607,"Y":525},{"Bonus":0,"Continent":"K44","ID":11932,"Name":"moneciarnia2","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11932","ServerKey":"pl181","X":413,"Y":439},{"Bonus":0,"Continent":"K54","ID":11933,"Name":"NOT?","PlayerID":9236866,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11933","ServerKey":"pl181","X":403,"Y":553},{"Bonus":0,"Continent":"K44","ID":11934,"Name":"Suppi","PlayerID":699856962,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11934","ServerKey":"pl181","X":426,"Y":427},{"Bonus":0,"Continent":"K34","ID":11935,"Name":"[0069]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11935","ServerKey":"pl181","X":455,"Y":398},{"Bonus":0,"Continent":"K43","ID":11936,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11936","ServerKey":"pl181","X":390,"Y":497},{"Bonus":0,"Continent":"K55","ID":11937,"Name":"005. Floki","PlayerID":699373599,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11937","ServerKey":"pl181","X":588,"Y":566},{"Bonus":0,"Continent":"K44","ID":11938,"Name":"Wioska KanzerSuze","PlayerID":7462660,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11938","ServerKey":"pl181","X":409,"Y":439},{"Bonus":0,"Continent":"K44","ID":11939,"Name":"009 New Orleans","PlayerID":9291984,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11939","ServerKey":"pl181","X":426,"Y":417},{"Bonus":0,"Continent":"K54","ID":11940,"Name":"002 Saliva Grey - Gimme a Sec.","PlayerID":9167250,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11940","ServerKey":"pl181","X":407,"Y":559},{"Bonus":0,"Continent":"K65","ID":11941,"Name":"- 028 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11941","ServerKey":"pl181","X":542,"Y":601},{"Bonus":0,"Continent":"K44","ID":11942,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11942","ServerKey":"pl181","X":453,"Y":400},{"Bonus":0,"Continent":"K43","ID":11943,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11943","ServerKey":"pl181","X":392,"Y":474},{"Bonus":0,"Continent":"K34","ID":11944,"Name":".:108:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11944","ServerKey":"pl181","X":499,"Y":393},{"Bonus":0,"Continent":"K45","ID":11945,"Name":"[370] Chorągiewka na wietrze","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11945","ServerKey":"pl181","X":586,"Y":433},{"Bonus":0,"Continent":"K54","ID":11947,"Name":"0348","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11947","ServerKey":"pl181","X":449,"Y":598},{"Bonus":0,"Continent":"K54","ID":11948,"Name":"0000003#","PlayerID":849089881,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11948","ServerKey":"pl181","X":430,"Y":569},{"Bonus":0,"Continent":"K45","ID":11949,"Name":"026","PlayerID":699722599,"Points":10486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11949","ServerKey":"pl181","X":595,"Y":446},{"Bonus":0,"Continent":"K54","ID":11950,"Name":"007","PlayerID":699781762,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11950","ServerKey":"pl181","X":470,"Y":501},{"Bonus":0,"Continent":"K46","ID":11951,"Name":"040","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11951","ServerKey":"pl181","X":605,"Y":470},{"Bonus":0,"Continent":"K34","ID":11952,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11952","ServerKey":"pl181","X":496,"Y":390},{"Bonus":0,"Continent":"K55","ID":11953,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11953","ServerKey":"pl181","X":578,"Y":579},{"Bonus":0,"Continent":"K65","ID":11954,"Name":"Yogi","PlayerID":2808172,"Points":6568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11954","ServerKey":"pl181","X":537,"Y":604},{"Bonus":0,"Continent":"K45","ID":11955,"Name":"113","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11955","ServerKey":"pl181","X":566,"Y":410},{"Bonus":0,"Continent":"K45","ID":11956,"Name":"DOM 12 *","PlayerID":849064614,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11956","ServerKey":"pl181","X":561,"Y":412},{"Bonus":0,"Continent":"K53","ID":11957,"Name":"Tank 004","PlayerID":698290577,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11957","ServerKey":"pl181","X":393,"Y":511},{"Bonus":0,"Continent":"K65","ID":11959,"Name":"Altissia","PlayerID":8199417,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11959","ServerKey":"pl181","X":528,"Y":606},{"Bonus":0,"Continent":"K55","ID":11960,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11960","ServerKey":"pl181","X":571,"Y":585},{"Bonus":0,"Continent":"K53","ID":11961,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11961","ServerKey":"pl181","X":391,"Y":516},{"Bonus":0,"Continent":"K45","ID":11962,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11962","ServerKey":"pl181","X":539,"Y":401},{"Bonus":0,"Continent":"K45","ID":11963,"Name":"0006 Wioskaaa","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11963","ServerKey":"pl181","X":503,"Y":499},{"Bonus":0,"Continent":"K46","ID":11964,"Name":"046","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11964","ServerKey":"pl181","X":606,"Y":476},{"Bonus":0,"Continent":"K56","ID":11965,"Name":"013 Fiu fiu","PlayerID":9238175,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11965","ServerKey":"pl181","X":607,"Y":528},{"Bonus":0,"Continent":"K44","ID":11966,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11966","ServerKey":"pl181","X":452,"Y":401},{"Bonus":0,"Continent":"K44","ID":11967,"Name":"K44 x009","PlayerID":698364331,"Points":8135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11967","ServerKey":"pl181","X":437,"Y":409},{"Bonus":0,"Continent":"K43","ID":11968,"Name":"Mniejsze zƂo 0006","PlayerID":699794765,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11968","ServerKey":"pl181","X":374,"Y":477},{"Bonus":0,"Continent":"K55","ID":11969,"Name":"#008","PlayerID":849001572,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11969","ServerKey":"pl181","X":547,"Y":599},{"Bonus":7,"Continent":"K65","ID":11970,"Name":"#004","PlayerID":849001572,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11970","ServerKey":"pl181","X":542,"Y":600},{"Bonus":0,"Continent":"K44","ID":11971,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11971","ServerKey":"pl181","X":417,"Y":425},{"Bonus":0,"Continent":"K56","ID":11972,"Name":"W.181/03","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11972","ServerKey":"pl181","X":606,"Y":536},{"Bonus":0,"Continent":"K54","ID":11973,"Name":"Sparta_75","PlayerID":2585846,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11973","ServerKey":"pl181","X":486,"Y":584},{"Bonus":0,"Continent":"K55","ID":11974,"Name":"Mori","PlayerID":848926293,"Points":9517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11974","ServerKey":"pl181","X":596,"Y":551},{"Bonus":8,"Continent":"K54","ID":11975,"Name":"002","PlayerID":699364813,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11975","ServerKey":"pl181","X":453,"Y":598},{"Bonus":0,"Continent":"K56","ID":11976,"Name":"0018","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11976","ServerKey":"pl181","X":607,"Y":502},{"Bonus":0,"Continent":"K44","ID":11977,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11977","ServerKey":"pl181","X":419,"Y":431},{"Bonus":0,"Continent":"K43","ID":11978,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11978","ServerKey":"pl181","X":391,"Y":479},{"Bonus":0,"Continent":"K53","ID":11979,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11979","ServerKey":"pl181","X":391,"Y":509},{"Bonus":0,"Continent":"K64","ID":11981,"Name":"Coruscant 4","PlayerID":699383121,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11981","ServerKey":"pl181","X":496,"Y":611},{"Bonus":0,"Continent":"K64","ID":11982,"Name":"barba","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11982","ServerKey":"pl181","X":463,"Y":601},{"Bonus":0,"Continent":"K46","ID":11983,"Name":"005 Connecticut","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11983","ServerKey":"pl181","X":605,"Y":475},{"Bonus":0,"Continent":"K64","ID":11984,"Name":"027.xxx","PlayerID":8612358,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11984","ServerKey":"pl181","X":479,"Y":606},{"Bonus":0,"Continent":"K45","ID":11985,"Name":"W samym ƛrodku roju","PlayerID":848985692,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11985","ServerKey":"pl181","X":571,"Y":418},{"Bonus":0,"Continent":"K55","ID":11986,"Name":"z 023","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11986","ServerKey":"pl181","X":554,"Y":595},{"Bonus":9,"Continent":"K34","ID":11987,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11987","ServerKey":"pl181","X":481,"Y":391},{"Bonus":0,"Continent":"K44","ID":11988,"Name":"00071 Wioska","PlayerID":3909522,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11988","ServerKey":"pl181","X":426,"Y":414},{"Bonus":0,"Continent":"K55","ID":11989,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":8165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11989","ServerKey":"pl181","X":595,"Y":559},{"Bonus":0,"Continent":"K34","ID":11990,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11990","ServerKey":"pl181","X":483,"Y":390},{"Bonus":0,"Continent":"K34","ID":11991,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11991","ServerKey":"pl181","X":491,"Y":393},{"Bonus":0,"Continent":"K64","ID":11992,"Name":"#034","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11992","ServerKey":"pl181","X":459,"Y":604},{"Bonus":0,"Continent":"K64","ID":11993,"Name":"~023.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11993","ServerKey":"pl181","X":492,"Y":608},{"Bonus":0,"Continent":"K56","ID":11994,"Name":"BUNKIER","PlayerID":848899726,"Points":4081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11994","ServerKey":"pl181","X":601,"Y":549},{"Bonus":0,"Continent":"K45","ID":11995,"Name":"Wioska barbarzyƄska 1","PlayerID":698349125,"Points":8684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11995","ServerKey":"pl181","X":506,"Y":485},{"Bonus":0,"Continent":"K45","ID":11996,"Name":"227 Christchurch","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11996","ServerKey":"pl181","X":535,"Y":445},{"Bonus":0,"Continent":"K43","ID":11997,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11997","ServerKey":"pl181","X":399,"Y":466},{"Bonus":0,"Continent":"K44","ID":11998,"Name":"0019 K","PlayerID":3909522,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11998","ServerKey":"pl181","X":436,"Y":411},{"Bonus":0,"Continent":"K35","ID":11999,"Name":"D013","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=11999","ServerKey":"pl181","X":508,"Y":389},{"Bonus":0,"Continent":"K56","ID":12000,"Name":"*010*","PlayerID":698670524,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12000","ServerKey":"pl181","X":610,"Y":501},{"Bonus":0,"Continent":"K65","ID":12001,"Name":"Corneo Colosseum","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12001","ServerKey":"pl181","X":531,"Y":605},{"Bonus":0,"Continent":"K44","ID":12002,"Name":"0019 Japan","PlayerID":3909522,"Points":10278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12002","ServerKey":"pl181","X":435,"Y":411},{"Bonus":0,"Continent":"K44","ID":12003,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12003","ServerKey":"pl181","X":425,"Y":419},{"Bonus":0,"Continent":"K65","ID":12004,"Name":"096 MEHEHE m","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12004","ServerKey":"pl181","X":501,"Y":611},{"Bonus":0,"Continent":"K53","ID":12005,"Name":"141 izka1611","PlayerID":699382126,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12005","ServerKey":"pl181","X":387,"Y":551},{"Bonus":5,"Continent":"K44","ID":12006,"Name":"Osada koczownikĂłw","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12006","ServerKey":"pl181","X":410,"Y":434},{"Bonus":0,"Continent":"K45","ID":12007,"Name":"127","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12007","ServerKey":"pl181","X":546,"Y":406},{"Bonus":0,"Continent":"K44","ID":12008,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12008","ServerKey":"pl181","X":461,"Y":400},{"Bonus":5,"Continent":"K56","ID":12009,"Name":"[010] do MARV !!","PlayerID":848985692,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12009","ServerKey":"pl181","X":608,"Y":522},{"Bonus":0,"Continent":"K55","ID":12010,"Name":"Jaaa","PlayerID":698635863,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12010","ServerKey":"pl181","X":569,"Y":585},{"Bonus":0,"Continent":"K53","ID":12011,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12011","ServerKey":"pl181","X":398,"Y":532},{"Bonus":0,"Continent":"K44","ID":12012,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12012","ServerKey":"pl181","X":401,"Y":450},{"Bonus":0,"Continent":"K35","ID":12013,"Name":"026. OgrĂłd Warzywny","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12013","ServerKey":"pl181","X":528,"Y":394},{"Bonus":0,"Continent":"K56","ID":12014,"Name":"0058","PlayerID":6510480,"Points":10128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12014","ServerKey":"pl181","X":605,"Y":508},{"Bonus":0,"Continent":"K65","ID":12015,"Name":"CALL 1010","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12015","ServerKey":"pl181","X":523,"Y":609},{"Bonus":0,"Continent":"K55","ID":12016,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12016","ServerKey":"pl181","X":530,"Y":569},{"Bonus":0,"Continent":"K45","ID":12017,"Name":"50-3 SAMOSIERRA AT","PlayerID":699368887,"Points":8348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12017","ServerKey":"pl181","X":584,"Y":428},{"Bonus":3,"Continent":"K55","ID":12018,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12018","ServerKey":"pl181","X":570,"Y":585},{"Bonus":0,"Continent":"K43","ID":12019,"Name":"s181eo11","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12019","ServerKey":"pl181","X":397,"Y":448},{"Bonus":0,"Continent":"K45","ID":12020,"Name":"008","PlayerID":1424656,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12020","ServerKey":"pl181","X":551,"Y":404},{"Bonus":0,"Continent":"K46","ID":12021,"Name":"A16","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12021","ServerKey":"pl181","X":601,"Y":461},{"Bonus":0,"Continent":"K35","ID":12022,"Name":"E003","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12022","ServerKey":"pl181","X":514,"Y":391},{"Bonus":0,"Continent":"K45","ID":12023,"Name":"012 SINGED NA ROBOCIE","PlayerID":698829590,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12023","ServerKey":"pl181","X":596,"Y":451},{"Bonus":0,"Continent":"K55","ID":12024,"Name":"- 017 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12024","ServerKey":"pl181","X":550,"Y":598},{"Bonus":0,"Continent":"K43","ID":12025,"Name":"[A]_[009] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12025","ServerKey":"pl181","X":393,"Y":486},{"Bonus":0,"Continent":"K55","ID":12026,"Name":"028.","PlayerID":8900955,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12026","ServerKey":"pl181","X":594,"Y":557},{"Bonus":0,"Continent":"K55","ID":12027,"Name":"019","PlayerID":6160655,"Points":10699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12027","ServerKey":"pl181","X":598,"Y":543},{"Bonus":0,"Continent":"K46","ID":12028,"Name":"005 Wioska Lecha","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12028","ServerKey":"pl181","X":609,"Y":474},{"Bonus":0,"Continent":"K45","ID":12029,"Name":"[236] WEST","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12029","ServerKey":"pl181","X":597,"Y":451},{"Bonus":0,"Continent":"K45","ID":12030,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12030","ServerKey":"pl181","X":581,"Y":430},{"Bonus":0,"Continent":"K54","ID":12031,"Name":"023","PlayerID":699425709,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12031","ServerKey":"pl181","X":400,"Y":544},{"Bonus":0,"Continent":"K55","ID":12032,"Name":"CALL 974","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12032","ServerKey":"pl181","X":555,"Y":585},{"Bonus":0,"Continent":"K45","ID":12033,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12033","ServerKey":"pl181","X":505,"Y":468},{"Bonus":0,"Continent":"K45","ID":12034,"Name":"DOM 11","PlayerID":849064614,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12034","ServerKey":"pl181","X":565,"Y":409},{"Bonus":0,"Continent":"K56","ID":12035,"Name":"MassXxl","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12035","ServerKey":"pl181","X":611,"Y":510},{"Bonus":5,"Continent":"K64","ID":12036,"Name":"barba","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12036","ServerKey":"pl181","X":462,"Y":601},{"Bonus":0,"Continent":"K53","ID":12037,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12037","ServerKey":"pl181","X":373,"Y":502},{"Bonus":0,"Continent":"K56","ID":12038,"Name":"041","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12038","ServerKey":"pl181","X":612,"Y":500},{"Bonus":0,"Continent":"K53","ID":12039,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12039","ServerKey":"pl181","X":389,"Y":515},{"Bonus":0,"Continent":"K55","ID":12040,"Name":"- 025 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12040","ServerKey":"pl181","X":542,"Y":599},{"Bonus":0,"Continent":"K55","ID":12041,"Name":"Jaaa","PlayerID":698635863,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12041","ServerKey":"pl181","X":569,"Y":582},{"Bonus":0,"Continent":"K44","ID":12042,"Name":"Suppi","PlayerID":699856962,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12042","ServerKey":"pl181","X":423,"Y":423},{"Bonus":0,"Continent":"K64","ID":12043,"Name":"~072.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12043","ServerKey":"pl181","X":489,"Y":607},{"Bonus":0,"Continent":"K65","ID":12044,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12044","ServerKey":"pl181","X":538,"Y":604},{"Bonus":0,"Continent":"K55","ID":12045,"Name":"- 056 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12045","ServerKey":"pl181","X":553,"Y":596},{"Bonus":0,"Continent":"K56","ID":12046,"Name":"010","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12046","ServerKey":"pl181","X":603,"Y":544},{"Bonus":0,"Continent":"K35","ID":12047,"Name":"D007","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12047","ServerKey":"pl181","X":509,"Y":393},{"Bonus":0,"Continent":"K44","ID":12048,"Name":"Gravity","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12048","ServerKey":"pl181","X":407,"Y":444},{"Bonus":0,"Continent":"K55","ID":12049,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12049","ServerKey":"pl181","X":575,"Y":580},{"Bonus":0,"Continent":"K35","ID":12050,"Name":"018","PlayerID":849010255,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12050","ServerKey":"pl181","X":506,"Y":377},{"Bonus":0,"Continent":"K45","ID":12051,"Name":"092","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12051","ServerKey":"pl181","X":548,"Y":404},{"Bonus":0,"Continent":"K34","ID":12053,"Name":"024","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12053","ServerKey":"pl181","X":489,"Y":389},{"Bonus":0,"Continent":"K34","ID":12054,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12054","ServerKey":"pl181","X":473,"Y":395},{"Bonus":0,"Continent":"K46","ID":12055,"Name":"058","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12055","ServerKey":"pl181","X":606,"Y":482},{"Bonus":0,"Continent":"K65","ID":12056,"Name":"Conference Rooms","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12056","ServerKey":"pl181","X":529,"Y":608},{"Bonus":0,"Continent":"K45","ID":12057,"Name":"191","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12057","ServerKey":"pl181","X":572,"Y":415},{"Bonus":0,"Continent":"K45","ID":12058,"Name":"ADEN","PlayerID":698588535,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12058","ServerKey":"pl181","X":590,"Y":435},{"Bonus":0,"Continent":"K55","ID":12059,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12059","ServerKey":"pl181","X":578,"Y":580},{"Bonus":0,"Continent":"K54","ID":12060,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12060","ServerKey":"pl181","X":404,"Y":551},{"Bonus":0,"Continent":"K34","ID":12061,"Name":"0101","PlayerID":699431255,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12061","ServerKey":"pl181","X":460,"Y":398},{"Bonus":0,"Continent":"K45","ID":12062,"Name":"Najlepszy sąsiad 013","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12062","ServerKey":"pl181","X":596,"Y":446},{"Bonus":0,"Continent":"K65","ID":12063,"Name":"- 019 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12063","ServerKey":"pl181","X":541,"Y":600},{"Bonus":0,"Continent":"K45","ID":12064,"Name":"021 Mountain Dew","PlayerID":698829590,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12064","ServerKey":"pl181","X":597,"Y":450},{"Bonus":0,"Continent":"K45","ID":12065,"Name":"015","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12065","ServerKey":"pl181","X":559,"Y":405},{"Bonus":0,"Continent":"K45","ID":12066,"Name":"039","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12066","ServerKey":"pl181","X":543,"Y":402},{"Bonus":0,"Continent":"K55","ID":12067,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12067","ServerKey":"pl181","X":582,"Y":571},{"Bonus":6,"Continent":"K65","ID":12068,"Name":"Osada koczownikĂłw","PlayerID":699698253,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12068","ServerKey":"pl181","X":500,"Y":612},{"Bonus":0,"Continent":"K45","ID":12069,"Name":"[358] Chorągiewka na wietrze","PlayerID":848985692,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12069","ServerKey":"pl181","X":594,"Y":439},{"Bonus":0,"Continent":"K54","ID":12070,"Name":"Twierdza 010","PlayerID":849084740,"Points":7973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12070","ServerKey":"pl181","X":419,"Y":571},{"Bonus":0,"Continent":"K56","ID":12071,"Name":"0002. A - Tronjheim","PlayerID":7125212,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12071","ServerKey":"pl181","X":607,"Y":527},{"Bonus":0,"Continent":"K43","ID":12072,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12072","ServerKey":"pl181","X":398,"Y":461},{"Bonus":0,"Continent":"K64","ID":12073,"Name":"0012","PlayerID":33900,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12073","ServerKey":"pl181","X":463,"Y":605},{"Bonus":0,"Continent":"K34","ID":12074,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12074","ServerKey":"pl181","X":483,"Y":394},{"Bonus":0,"Continent":"K65","ID":12075,"Name":"amator","PlayerID":848915531,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12075","ServerKey":"pl181","X":526,"Y":614},{"Bonus":0,"Continent":"K56","ID":12076,"Name":"0010. A - Ceunon","PlayerID":7125212,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12076","ServerKey":"pl181","X":605,"Y":521},{"Bonus":0,"Continent":"K56","ID":12077,"Name":"*003*","PlayerID":698670524,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12077","ServerKey":"pl181","X":614,"Y":506},{"Bonus":0,"Continent":"K64","ID":12078,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12078","ServerKey":"pl181","X":454,"Y":602},{"Bonus":2,"Continent":"K65","ID":12080,"Name":"~008.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12080","ServerKey":"pl181","X":502,"Y":609},{"Bonus":0,"Continent":"K55","ID":12081,"Name":"PYRLANDIA 021 s","PlayerID":33900,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12081","ServerKey":"pl181","X":568,"Y":589},{"Bonus":0,"Continent":"K46","ID":12082,"Name":"015","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12082","ServerKey":"pl181","X":609,"Y":484},{"Bonus":0,"Continent":"K34","ID":12083,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12083","ServerKey":"pl181","X":472,"Y":393},{"Bonus":0,"Continent":"K65","ID":12084,"Name":"008","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12084","ServerKey":"pl181","X":544,"Y":603},{"Bonus":2,"Continent":"K55","ID":12085,"Name":"z 019","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12085","ServerKey":"pl181","X":555,"Y":598},{"Bonus":0,"Continent":"K54","ID":12086,"Name":"004","PlayerID":849084740,"Points":5306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12086","ServerKey":"pl181","X":427,"Y":579},{"Bonus":0,"Continent":"K44","ID":12087,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12087","ServerKey":"pl181","X":455,"Y":403},{"Bonus":0,"Continent":"K54","ID":12088,"Name":"040 - pięknie","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12088","ServerKey":"pl181","X":419,"Y":576},{"Bonus":0,"Continent":"K44","ID":12089,"Name":"011 Minneapolis","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12089","ServerKey":"pl181","X":427,"Y":415},{"Bonus":0,"Continent":"K55","ID":12090,"Name":"012. Porunn","PlayerID":699373599,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12090","ServerKey":"pl181","X":587,"Y":563},{"Bonus":0,"Continent":"K44","ID":12091,"Name":"Gravity","PlayerID":698962117,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12091","ServerKey":"pl181","X":405,"Y":451},{"Bonus":0,"Continent":"K54","ID":12092,"Name":"012","PlayerID":699851427,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12092","ServerKey":"pl181","X":409,"Y":513},{"Bonus":0,"Continent":"K45","ID":12093,"Name":"032","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12093","ServerKey":"pl181","X":577,"Y":419},{"Bonus":0,"Continent":"K35","ID":12094,"Name":"E004","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12094","ServerKey":"pl181","X":516,"Y":390},{"Bonus":0,"Continent":"K46","ID":12095,"Name":"TAG","PlayerID":699795378,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12095","ServerKey":"pl181","X":621,"Y":497},{"Bonus":0,"Continent":"K64","ID":12096,"Name":"0011","PlayerID":33900,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12096","ServerKey":"pl181","X":465,"Y":607},{"Bonus":0,"Continent":"K46","ID":12097,"Name":"009","PlayerID":8459255,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12097","ServerKey":"pl181","X":602,"Y":462},{"Bonus":0,"Continent":"K64","ID":12098,"Name":"0013","PlayerID":33900,"Points":9227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12098","ServerKey":"pl181","X":470,"Y":606},{"Bonus":0,"Continent":"K55","ID":12099,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12099","ServerKey":"pl181","X":582,"Y":576},{"Bonus":0,"Continent":"K45","ID":12100,"Name":"022 Znamy się?","PlayerID":698829590,"Points":10635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12100","ServerKey":"pl181","X":597,"Y":448},{"Bonus":0,"Continent":"K65","ID":12102,"Name":"Teby_04","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12102","ServerKey":"pl181","X":503,"Y":612},{"Bonus":0,"Continent":"K55","ID":12104,"Name":"Dusk Till Dawn","PlayerID":848926293,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12104","ServerKey":"pl181","X":592,"Y":563},{"Bonus":0,"Continent":"K55","ID":12105,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12105","ServerKey":"pl181","X":590,"Y":559},{"Bonus":0,"Continent":"K45","ID":12106,"Name":"D021","PlayerID":699761749,"Points":6305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12106","ServerKey":"pl181","X":574,"Y":417},{"Bonus":0,"Continent":"K35","ID":12107,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12107","ServerKey":"pl181","X":519,"Y":395},{"Bonus":0,"Continent":"K55","ID":12108,"Name":"z 018","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12108","ServerKey":"pl181","X":558,"Y":590},{"Bonus":0,"Continent":"K53","ID":12109,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12109","ServerKey":"pl181","X":393,"Y":524},{"Bonus":0,"Continent":"K34","ID":12110,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12110","ServerKey":"pl181","X":496,"Y":388},{"Bonus":0,"Continent":"K46","ID":12111,"Name":"016","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12111","ServerKey":"pl181","X":608,"Y":482},{"Bonus":0,"Continent":"K65","ID":12112,"Name":"!*303*","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12112","ServerKey":"pl181","X":507,"Y":610},{"Bonus":0,"Continent":"K45","ID":12113,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12113","ServerKey":"pl181","X":573,"Y":420},{"Bonus":0,"Continent":"K45","ID":12114,"Name":"Wioska Michal CR7","PlayerID":699855647,"Points":2842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12114","ServerKey":"pl181","X":523,"Y":443},{"Bonus":5,"Continent":"K55","ID":12115,"Name":"004 619","PlayerID":8742874,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12115","ServerKey":"pl181","X":583,"Y":570},{"Bonus":0,"Continent":"K65","ID":12117,"Name":"Balouve Mines","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12117","ServerKey":"pl181","X":528,"Y":607},{"Bonus":0,"Continent":"K56","ID":12118,"Name":"014 dƂugo jeszcze?","PlayerID":9238175,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12118","ServerKey":"pl181","X":608,"Y":527},{"Bonus":0,"Continent":"K55","ID":12119,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12119","ServerKey":"pl181","X":576,"Y":582},{"Bonus":0,"Continent":"K43","ID":12120,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12120","ServerKey":"pl181","X":390,"Y":481},{"Bonus":0,"Continent":"K44","ID":12121,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12121","ServerKey":"pl181","X":427,"Y":438},{"Bonus":0,"Continent":"K53","ID":12122,"Name":"NWO","PlayerID":849030226,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12122","ServerKey":"pl181","X":392,"Y":519},{"Bonus":0,"Continent":"K45","ID":12123,"Name":"[380] Chorągiewka na wietrze","PlayerID":848985692,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12123","ServerKey":"pl181","X":586,"Y":430},{"Bonus":0,"Continent":"K34","ID":12124,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12124","ServerKey":"pl181","X":467,"Y":395},{"Bonus":0,"Continent":"K45","ID":12125,"Name":"[317] Chorągiewka na wietrze","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12125","ServerKey":"pl181","X":591,"Y":435},{"Bonus":0,"Continent":"K54","ID":12126,"Name":"NOT?","PlayerID":9236866,"Points":5915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12126","ServerKey":"pl181","X":404,"Y":552},{"Bonus":0,"Continent":"K65","ID":12127,"Name":"Honeybee Inn","PlayerID":8199417,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12127","ServerKey":"pl181","X":526,"Y":604},{"Bonus":0,"Continent":"K54","ID":12128,"Name":"010 - Wioska","PlayerID":225023,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12128","ServerKey":"pl181","X":415,"Y":590},{"Bonus":0,"Continent":"K55","ID":12129,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12129","ServerKey":"pl181","X":565,"Y":590},{"Bonus":0,"Continent":"K46","ID":12130,"Name":"[241] WEST","PlayerID":848985692,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12130","ServerKey":"pl181","X":600,"Y":456},{"Bonus":0,"Continent":"K53","ID":12132,"Name":"NWO","PlayerID":849030226,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12132","ServerKey":"pl181","X":395,"Y":535},{"Bonus":0,"Continent":"K64","ID":12133,"Name":"EKG M20","PlayerID":33900,"Points":10033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12133","ServerKey":"pl181","X":482,"Y":607},{"Bonus":0,"Continent":"K34","ID":12134,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12134","ServerKey":"pl181","X":476,"Y":392},{"Bonus":0,"Continent":"K56","ID":12135,"Name":"Wioska barbarzyƄska","PlayerID":698845189,"Points":5358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12135","ServerKey":"pl181","X":606,"Y":518},{"Bonus":0,"Continent":"K55","ID":12136,"Name":"PYZA 004 King 1","PlayerID":33900,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12136","ServerKey":"pl181","X":582,"Y":572},{"Bonus":0,"Continent":"K35","ID":12137,"Name":"D009","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12137","ServerKey":"pl181","X":508,"Y":392},{"Bonus":0,"Continent":"K43","ID":12138,"Name":"Wioska X2","PlayerID":699523631,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12138","ServerKey":"pl181","X":392,"Y":467},{"Bonus":0,"Continent":"K56","ID":12139,"Name":"0063","PlayerID":6510480,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12139","ServerKey":"pl181","X":609,"Y":509},{"Bonus":0,"Continent":"K55","ID":12140,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12140","ServerKey":"pl181","X":585,"Y":568},{"Bonus":0,"Continent":"K35","ID":12141,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12141","ServerKey":"pl181","X":537,"Y":396},{"Bonus":0,"Continent":"K44","ID":12143,"Name":"00351 W 3 DNI","PlayerID":3909522,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12143","ServerKey":"pl181","X":428,"Y":418},{"Bonus":0,"Continent":"K55","ID":12145,"Name":"monetki A","PlayerID":698768565,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12145","ServerKey":"pl181","X":580,"Y":576},{"Bonus":0,"Continent":"K45","ID":12146,"Name":"Czyli moĆŒna Ciebie zaskoczyc","PlayerID":699368887,"Points":7952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12146","ServerKey":"pl181","X":581,"Y":427},{"Bonus":0,"Continent":"K46","ID":12147,"Name":"023 Baraki","PlayerID":8459255,"Points":10077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12147","ServerKey":"pl181","X":604,"Y":462},{"Bonus":0,"Continent":"K46","ID":12148,"Name":"A05","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12148","ServerKey":"pl181","X":603,"Y":463},{"Bonus":0,"Continent":"K35","ID":12149,"Name":"Part IV","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12149","ServerKey":"pl181","X":533,"Y":382},{"Bonus":0,"Continent":"K53","ID":12150,"Name":"018","PlayerID":699856962,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12150","ServerKey":"pl181","X":398,"Y":539},{"Bonus":0,"Continent":"K54","ID":12151,"Name":"45. Wioska 45","PlayerID":849091769,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12151","ServerKey":"pl181","X":427,"Y":584},{"Bonus":0,"Continent":"K45","ID":12152,"Name":"19 im BƂochina","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12152","ServerKey":"pl181","X":578,"Y":421},{"Bonus":0,"Continent":"K34","ID":12154,"Name":"026","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12154","ServerKey":"pl181","X":492,"Y":388},{"Bonus":0,"Continent":"K55","ID":12155,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12155","ServerKey":"pl181","X":577,"Y":575},{"Bonus":0,"Continent":"K44","ID":12156,"Name":"001 Naura","PlayerID":698807570,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12156","ServerKey":"pl181","X":405,"Y":461},{"Bonus":0,"Continent":"K53","ID":12157,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12157","ServerKey":"pl181","X":396,"Y":538},{"Bonus":5,"Continent":"K54","ID":12158,"Name":"Suppi","PlayerID":699856962,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12158","ServerKey":"pl181","X":454,"Y":597},{"Bonus":0,"Continent":"K53","ID":12159,"Name":"164 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12159","ServerKey":"pl181","X":386,"Y":547},{"Bonus":0,"Continent":"K34","ID":12160,"Name":"Wola 3","PlayerID":849093155,"Points":7910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12160","ServerKey":"pl181","X":478,"Y":394},{"Bonus":0,"Continent":"K43","ID":12161,"Name":"A0036","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12161","ServerKey":"pl181","X":391,"Y":474},{"Bonus":9,"Continent":"K53","ID":12162,"Name":"Knowhere","PlayerID":699723284,"Points":10542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12162","ServerKey":"pl181","X":388,"Y":500},{"Bonus":0,"Continent":"K53","ID":12163,"Name":"090 OCEƃ SAM KTO DAJE LAK","PlayerID":699382126,"Points":6503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12163","ServerKey":"pl181","X":397,"Y":557},{"Bonus":0,"Continent":"K43","ID":12165,"Name":"Knowhere","PlayerID":699723284,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12165","ServerKey":"pl181","X":392,"Y":492},{"Bonus":0,"Continent":"K64","ID":12166,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12166","ServerKey":"pl181","X":438,"Y":609},{"Bonus":0,"Continent":"K45","ID":12167,"Name":"[321] Chorągiewka na wietrze PAA","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12167","ServerKey":"pl181","X":591,"Y":436},{"Bonus":0,"Continent":"K64","ID":12168,"Name":"NOT!!","PlayerID":9236866,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12168","ServerKey":"pl181","X":471,"Y":604},{"Bonus":0,"Continent":"K46","ID":12169,"Name":"[231] WEST","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12169","ServerKey":"pl181","X":602,"Y":454},{"Bonus":0,"Continent":"K55","ID":12170,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12170","ServerKey":"pl181","X":576,"Y":580},{"Bonus":0,"Continent":"K54","ID":12171,"Name":"079 - Twierdza 002","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12171","ServerKey":"pl181","X":418,"Y":571},{"Bonus":0,"Continent":"K46","ID":12172,"Name":"001 Alabama","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12172","ServerKey":"pl181","X":609,"Y":485},{"Bonus":0,"Continent":"K44","ID":12173,"Name":"A013","PlayerID":8740199,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12173","ServerKey":"pl181","X":448,"Y":404},{"Bonus":0,"Continent":"K45","ID":12174,"Name":"[359] Chorągiewka na wietrze","PlayerID":848985692,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12174","ServerKey":"pl181","X":594,"Y":440},{"Bonus":0,"Continent":"K46","ID":12175,"Name":"003","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12175","ServerKey":"pl181","X":603,"Y":456},{"Bonus":0,"Continent":"K54","ID":12176,"Name":"Puaaa","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12176","ServerKey":"pl181","X":409,"Y":562},{"Bonus":0,"Continent":"K65","ID":12177,"Name":"038","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12177","ServerKey":"pl181","X":537,"Y":607},{"Bonus":0,"Continent":"K44","ID":12179,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12179","ServerKey":"pl181","X":415,"Y":426},{"Bonus":0,"Continent":"K44","ID":12180,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12180","ServerKey":"pl181","X":412,"Y":436},{"Bonus":0,"Continent":"K35","ID":12181,"Name":"010","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12181","ServerKey":"pl181","X":539,"Y":395},{"Bonus":0,"Continent":"K44","ID":12182,"Name":"NOT","PlayerID":9236866,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12182","ServerKey":"pl181","X":417,"Y":427},{"Bonus":0,"Continent":"K54","ID":12184,"Name":"C 016 Zederman","PlayerID":849084740,"Points":8642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12184","ServerKey":"pl181","X":418,"Y":575},{"Bonus":0,"Continent":"K45","ID":12185,"Name":"006","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12185","ServerKey":"pl181","X":557,"Y":408},{"Bonus":0,"Continent":"K45","ID":12186,"Name":"Wioska C.a.","PlayerID":848954236,"Points":3454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12186","ServerKey":"pl181","X":552,"Y":402},{"Bonus":0,"Continent":"K46","ID":12187,"Name":"047","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12187","ServerKey":"pl181","X":610,"Y":495},{"Bonus":0,"Continent":"K35","ID":12188,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12188","ServerKey":"pl181","X":538,"Y":397},{"Bonus":5,"Continent":"K44","ID":12189,"Name":"Barba 3","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12189","ServerKey":"pl181","X":432,"Y":411},{"Bonus":0,"Continent":"K43","ID":12190,"Name":"Wioska NTSL","PlayerID":699523631,"Points":3407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12190","ServerKey":"pl181","X":395,"Y":462},{"Bonus":0,"Continent":"K44","ID":12191,"Name":"0018 Wioska","PlayerID":3909522,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12191","ServerKey":"pl181","X":434,"Y":409},{"Bonus":0,"Continent":"K55","ID":12192,"Name":"Immigrant Song","PlayerID":848926293,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12192","ServerKey":"pl181","X":588,"Y":563},{"Bonus":0,"Continent":"K34","ID":12193,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12193","ServerKey":"pl181","X":486,"Y":388},{"Bonus":0,"Continent":"K55","ID":12194,"Name":"Run","PlayerID":848926293,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12194","ServerKey":"pl181","X":591,"Y":565},{"Bonus":0,"Continent":"K55","ID":12195,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12195","ServerKey":"pl181","X":595,"Y":558},{"Bonus":0,"Continent":"K45","ID":12196,"Name":"035","PlayerID":1424656,"Points":8352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12196","ServerKey":"pl181","X":559,"Y":404},{"Bonus":0,"Continent":"K44","ID":12197,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12197","ServerKey":"pl181","X":405,"Y":448},{"Bonus":0,"Continent":"K54","ID":12198,"Name":"122 s005","PlayerID":699382126,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12198","ServerKey":"pl181","X":400,"Y":552},{"Bonus":0,"Continent":"K56","ID":12199,"Name":"009","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12199","ServerKey":"pl181","X":608,"Y":531},{"Bonus":0,"Continent":"K44","ID":12200,"Name":"PRO8L3M","PlayerID":7491093,"Points":9021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12200","ServerKey":"pl181","X":450,"Y":493},{"Bonus":0,"Continent":"K44","ID":12201,"Name":"Suppi","PlayerID":699856962,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12201","ServerKey":"pl181","X":424,"Y":421},{"Bonus":0,"Continent":"K45","ID":12202,"Name":"034","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12202","ServerKey":"pl181","X":543,"Y":401},{"Bonus":0,"Continent":"K44","ID":12203,"Name":"003","PlayerID":699788305,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12203","ServerKey":"pl181","X":409,"Y":434},{"Bonus":0,"Continent":"K34","ID":12204,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12204","ServerKey":"pl181","X":480,"Y":389},{"Bonus":0,"Continent":"K46","ID":12205,"Name":"*015*","PlayerID":698670524,"Points":8484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12205","ServerKey":"pl181","X":609,"Y":498},{"Bonus":2,"Continent":"K53","ID":12206,"Name":"Osada koczownikĂłw","PlayerID":849030226,"Points":10714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12206","ServerKey":"pl181","X":397,"Y":536},{"Bonus":0,"Continent":"K43","ID":12207,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12207","ServerKey":"pl181","X":389,"Y":486},{"Bonus":0,"Continent":"K53","ID":12208,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12208","ServerKey":"pl181","X":388,"Y":515},{"Bonus":0,"Continent":"K46","ID":12209,"Name":"010","PlayerID":8459255,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12209","ServerKey":"pl181","X":604,"Y":467},{"Bonus":0,"Continent":"K45","ID":12210,"Name":"[330] Chorągiewka na wietrze","PlayerID":848985692,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12210","ServerKey":"pl181","X":584,"Y":426},{"Bonus":6,"Continent":"K53","ID":12211,"Name":"koczownicza 02","PlayerID":1804724,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12211","ServerKey":"pl181","X":396,"Y":531},{"Bonus":0,"Continent":"K44","ID":12212,"Name":"0108","PlayerID":699431255,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12212","ServerKey":"pl181","X":443,"Y":405},{"Bonus":0,"Continent":"K43","ID":12213,"Name":"Land of Fire","PlayerID":698962117,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12213","ServerKey":"pl181","X":399,"Y":448},{"Bonus":9,"Continent":"K34","ID":12214,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12214","ServerKey":"pl181","X":470,"Y":392},{"Bonus":0,"Continent":"K43","ID":12215,"Name":"Radek","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12215","ServerKey":"pl181","X":395,"Y":471},{"Bonus":0,"Continent":"K55","ID":12216,"Name":"z 017","PlayerID":699342219,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12216","ServerKey":"pl181","X":559,"Y":591},{"Bonus":0,"Continent":"K44","ID":12217,"Name":"A011","PlayerID":8740199,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12217","ServerKey":"pl181","X":447,"Y":404},{"Bonus":0,"Continent":"K54","ID":12218,"Name":"Czersk","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12218","ServerKey":"pl181","X":416,"Y":571},{"Bonus":0,"Continent":"K64","ID":12219,"Name":"013.xxx","PlayerID":8612358,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12219","ServerKey":"pl181","X":483,"Y":611},{"Bonus":0,"Continent":"K43","ID":12220,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12220","ServerKey":"pl181","X":389,"Y":488},{"Bonus":0,"Continent":"K43","ID":12221,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12221","ServerKey":"pl181","X":396,"Y":458},{"Bonus":0,"Continent":"K56","ID":12222,"Name":"059","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12222","ServerKey":"pl181","X":611,"Y":500},{"Bonus":0,"Continent":"K55","ID":12223,"Name":"- 018 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12223","ServerKey":"pl181","X":549,"Y":597},{"Bonus":0,"Continent":"K45","ID":12224,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12224","ServerKey":"pl181","X":582,"Y":427},{"Bonus":0,"Continent":"K55","ID":12225,"Name":"Wioska (019)","PlayerID":698232227,"Points":9434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12225","ServerKey":"pl181","X":598,"Y":512},{"Bonus":0,"Continent":"K46","ID":12226,"Name":"031 Colorado","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12226","ServerKey":"pl181","X":606,"Y":472},{"Bonus":0,"Continent":"K54","ID":12227,"Name":"020 - Yaxchilan***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12227","ServerKey":"pl181","X":435,"Y":590},{"Bonus":0,"Continent":"K53","ID":12228,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12228","ServerKey":"pl181","X":397,"Y":534},{"Bonus":0,"Continent":"K45","ID":12229,"Name":"[301] West","PlayerID":848985692,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12229","ServerKey":"pl181","X":599,"Y":453},{"Bonus":0,"Continent":"K45","ID":12230,"Name":"ADEN","PlayerID":698588535,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12230","ServerKey":"pl181","X":588,"Y":430},{"Bonus":0,"Continent":"K34","ID":12231,"Name":"Bagdad","PlayerID":8847546,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12231","ServerKey":"pl181","X":472,"Y":394},{"Bonus":0,"Continent":"K65","ID":12232,"Name":"#003","PlayerID":849001572,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12232","ServerKey":"pl181","X":544,"Y":600},{"Bonus":0,"Continent":"K55","ID":12234,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12234","ServerKey":"pl181","X":570,"Y":582},{"Bonus":0,"Continent":"K46","ID":12235,"Name":"Wioska20","PlayerID":848935020,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12235","ServerKey":"pl181","X":620,"Y":476},{"Bonus":0,"Continent":"K45","ID":12236,"Name":"032","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12236","ServerKey":"pl181","X":543,"Y":400},{"Bonus":0,"Continent":"K44","ID":12237,"Name":"002 New York City","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12237","ServerKey":"pl181","X":425,"Y":417},{"Bonus":0,"Continent":"K64","ID":12238,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":8427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12238","ServerKey":"pl181","X":473,"Y":607},{"Bonus":0,"Continent":"K56","ID":12239,"Name":"sƂodziuteƄka 10","PlayerID":8013349,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12239","ServerKey":"pl181","X":605,"Y":536},{"Bonus":0,"Continent":"K54","ID":12240,"Name":"002","PlayerID":849084740,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12240","ServerKey":"pl181","X":427,"Y":580},{"Bonus":3,"Continent":"K53","ID":12241,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12241","ServerKey":"pl181","X":392,"Y":514},{"Bonus":0,"Continent":"K44","ID":12243,"Name":"0023 Wioska","PlayerID":3909522,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12243","ServerKey":"pl181","X":430,"Y":412},{"Bonus":0,"Continent":"K35","ID":12244,"Name":"024. OgrĂłd Warzywny","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12244","ServerKey":"pl181","X":527,"Y":394},{"Bonus":0,"Continent":"K34","ID":12245,"Name":"0104","PlayerID":699431255,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12245","ServerKey":"pl181","X":459,"Y":398},{"Bonus":0,"Continent":"K56","ID":12246,"Name":"004","PlayerID":8742874,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12246","ServerKey":"pl181","X":600,"Y":546},{"Bonus":0,"Continent":"K64","ID":12248,"Name":"089 MEHEHE 3","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12248","ServerKey":"pl181","X":491,"Y":608},{"Bonus":0,"Continent":"K45","ID":12249,"Name":"[332] Chorągiewka na wietrze","PlayerID":848985692,"Points":10391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12249","ServerKey":"pl181","X":585,"Y":425},{"Bonus":0,"Continent":"K65","ID":12250,"Name":"- 011 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12250","ServerKey":"pl181","X":551,"Y":600},{"Bonus":0,"Continent":"K64","ID":12251,"Name":"006. Isengard","PlayerID":699494488,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12251","ServerKey":"pl181","X":485,"Y":612},{"Bonus":0,"Continent":"K64","ID":12252,"Name":"#032 A","PlayerID":9037756,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12252","ServerKey":"pl181","X":451,"Y":601},{"Bonus":0,"Continent":"K43","ID":12253,"Name":"Kaktus","PlayerID":699265922,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12253","ServerKey":"pl181","X":375,"Y":497},{"Bonus":0,"Continent":"K64","ID":12254,"Name":"Coruscant 5","PlayerID":699383121,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12254","ServerKey":"pl181","X":495,"Y":612},{"Bonus":0,"Continent":"K55","ID":12255,"Name":"1.Milwaukee","PlayerID":698215322,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12255","ServerKey":"pl181","X":550,"Y":599},{"Bonus":0,"Continent":"K56","ID":12256,"Name":"Bocianikson015","PlayerID":7528491,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12256","ServerKey":"pl181","X":600,"Y":545},{"Bonus":0,"Continent":"K64","ID":12258,"Name":"013. GĂłry Mgliste","PlayerID":699494488,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12258","ServerKey":"pl181","X":485,"Y":611},{"Bonus":0,"Continent":"K56","ID":12259,"Name":"sƂodziuteƄka 02","PlayerID":8013349,"Points":6189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12259","ServerKey":"pl181","X":602,"Y":535},{"Bonus":0,"Continent":"K44","ID":12260,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12260","ServerKey":"pl181","X":418,"Y":430},{"Bonus":0,"Continent":"K46","ID":12261,"Name":"042","PlayerID":699573053,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12261","ServerKey":"pl181","X":609,"Y":476},{"Bonus":0,"Continent":"K44","ID":12262,"Name":"x10","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12262","ServerKey":"pl181","X":410,"Y":436},{"Bonus":0,"Continent":"K45","ID":12263,"Name":"[364] Chorągiewka na wietrze","PlayerID":848985692,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12263","ServerKey":"pl181","X":594,"Y":441},{"Bonus":0,"Continent":"K55","ID":12264,"Name":"016. Torstein","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12264","ServerKey":"pl181","X":589,"Y":569},{"Bonus":0,"Continent":"K35","ID":12265,"Name":".achim.","PlayerID":6936607,"Points":8990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12265","ServerKey":"pl181","X":524,"Y":393},{"Bonus":0,"Continent":"K54","ID":12266,"Name":"0646","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12266","ServerKey":"pl181","X":437,"Y":594},{"Bonus":0,"Continent":"K64","ID":12267,"Name":"085 MEHEHE 5","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12267","ServerKey":"pl181","X":488,"Y":608},{"Bonus":0,"Continent":"K65","ID":12268,"Name":"Teby_05","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12268","ServerKey":"pl181","X":502,"Y":613},{"Bonus":0,"Continent":"K64","ID":12269,"Name":"barba","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12269","ServerKey":"pl181","X":463,"Y":602},{"Bonus":0,"Continent":"K54","ID":12270,"Name":"016 - Legenda***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12270","ServerKey":"pl181","X":441,"Y":581},{"Bonus":0,"Continent":"K46","ID":12271,"Name":"[232] WEST","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12271","ServerKey":"pl181","X":601,"Y":453},{"Bonus":0,"Continent":"K53","ID":12273,"Name":"Desperato*","PlayerID":1804724,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12273","ServerKey":"pl181","X":393,"Y":526},{"Bonus":0,"Continent":"K34","ID":12274,"Name":"016","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12274","ServerKey":"pl181","X":495,"Y":387},{"Bonus":0,"Continent":"K44","ID":12275,"Name":"Lecymy DUR","PlayerID":6169408,"Points":8617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12275","ServerKey":"pl181","X":445,"Y":401},{"Bonus":0,"Continent":"K54","ID":12276,"Name":"C.002","PlayerID":849088243,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12276","ServerKey":"pl181","X":444,"Y":598},{"Bonus":0,"Continent":"K54","ID":12277,"Name":"Ccccc","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12277","ServerKey":"pl181","X":419,"Y":578},{"Bonus":0,"Continent":"K65","ID":12278,"Name":"002","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12278","ServerKey":"pl181","X":547,"Y":601},{"Bonus":9,"Continent":"K56","ID":12279,"Name":"[011] MarV Hondlorz","PlayerID":848985692,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12279","ServerKey":"pl181","X":608,"Y":523},{"Bonus":0,"Continent":"K34","ID":12280,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12280","ServerKey":"pl181","X":475,"Y":392},{"Bonus":0,"Continent":"K54","ID":12281,"Name":"00023Dalaran","PlayerID":9167250,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12281","ServerKey":"pl181","X":423,"Y":576},{"Bonus":0,"Continent":"K45","ID":12282,"Name":"194","PlayerID":849064752,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12282","ServerKey":"pl181","X":568,"Y":414},{"Bonus":0,"Continent":"K35","ID":12283,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12283","ServerKey":"pl181","X":528,"Y":391},{"Bonus":0,"Continent":"K55","ID":12284,"Name":"20029","PlayerID":848915531,"Points":10321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12284","ServerKey":"pl181","X":516,"Y":533},{"Bonus":0,"Continent":"K64","ID":12285,"Name":"0007","PlayerID":33900,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12285","ServerKey":"pl181","X":465,"Y":606},{"Bonus":0,"Continent":"K45","ID":12286,"Name":"Najlepszy sąsiad 006","PlayerID":699756210,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12286","ServerKey":"pl181","X":592,"Y":441},{"Bonus":0,"Continent":"K56","ID":12287,"Name":"031 Santorini","PlayerID":8323711,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12287","ServerKey":"pl181","X":611,"Y":516},{"Bonus":0,"Continent":"K55","ID":12288,"Name":"Wioska6","PlayerID":8369778,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12288","ServerKey":"pl181","X":514,"Y":595},{"Bonus":0,"Continent":"K53","ID":12289,"Name":"Knowhere","PlayerID":699723284,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12289","ServerKey":"pl181","X":387,"Y":511},{"Bonus":0,"Continent":"K54","ID":12290,"Name":"0625","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12290","ServerKey":"pl181","X":439,"Y":590},{"Bonus":0,"Continent":"K44","ID":12291,"Name":"Gravity","PlayerID":698962117,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12291","ServerKey":"pl181","X":404,"Y":441},{"Bonus":0,"Continent":"K45","ID":12292,"Name":"001","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12292","ServerKey":"pl181","X":561,"Y":405},{"Bonus":0,"Continent":"K56","ID":12293,"Name":"008","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12293","ServerKey":"pl181","X":606,"Y":535},{"Bonus":0,"Continent":"K45","ID":12294,"Name":"[379] Chorągiewka na wietrze","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12294","ServerKey":"pl181","X":587,"Y":432},{"Bonus":0,"Continent":"K46","ID":12295,"Name":"020","PlayerID":8459255,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12295","ServerKey":"pl181","X":605,"Y":469},{"Bonus":0,"Continent":"K65","ID":12296,"Name":"- 089 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12296","ServerKey":"pl181","X":549,"Y":607},{"Bonus":0,"Continent":"K55","ID":12297,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12297","ServerKey":"pl181","X":578,"Y":582},{"Bonus":0,"Continent":"K55","ID":12298,"Name":"z 013","PlayerID":699342219,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12298","ServerKey":"pl181","X":560,"Y":595},{"Bonus":0,"Continent":"K55","ID":12299,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12299","ServerKey":"pl181","X":579,"Y":597},{"Bonus":0,"Continent":"K45","ID":12301,"Name":"Najlepszy sąsiad 003","PlayerID":699756210,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12301","ServerKey":"pl181","X":597,"Y":443},{"Bonus":0,"Continent":"K64","ID":12302,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12302","ServerKey":"pl181","X":470,"Y":607},{"Bonus":0,"Continent":"K64","ID":12303,"Name":"Urojone Elizjum","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12303","ServerKey":"pl181","X":455,"Y":603},{"Bonus":0,"Continent":"K55","ID":12304,"Name":"010. Aslaug","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12304","ServerKey":"pl181","X":588,"Y":567},{"Bonus":0,"Continent":"K43","ID":12305,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12305","ServerKey":"pl181","X":399,"Y":458},{"Bonus":3,"Continent":"K56","ID":12306,"Name":"[013 ]Pa O","PlayerID":848985692,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12306","ServerKey":"pl181","X":607,"Y":539},{"Bonus":0,"Continent":"K35","ID":12307,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12307","ServerKey":"pl181","X":518,"Y":394},{"Bonus":0,"Continent":"K54","ID":12308,"Name":"006","PlayerID":849084740,"Points":10679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12308","ServerKey":"pl181","X":425,"Y":580},{"Bonus":0,"Continent":"K56","ID":12309,"Name":"026 Cithri","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12309","ServerKey":"pl181","X":610,"Y":512},{"Bonus":1,"Continent":"K44","ID":12310,"Name":"003 Los Angeles","PlayerID":9291984,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12310","ServerKey":"pl181","X":426,"Y":418},{"Bonus":0,"Continent":"K53","ID":12311,"Name":"NWO","PlayerID":849030226,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12311","ServerKey":"pl181","X":392,"Y":524},{"Bonus":0,"Continent":"K56","ID":12312,"Name":"025 wjeĆŒdĆŒamZczoƂgami","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12312","ServerKey":"pl181","X":608,"Y":514},{"Bonus":0,"Continent":"K34","ID":12313,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12313","ServerKey":"pl181","X":472,"Y":391},{"Bonus":0,"Continent":"K55","ID":12314,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12314","ServerKey":"pl181","X":583,"Y":553},{"Bonus":0,"Continent":"K54","ID":12315,"Name":"#028 M","PlayerID":9037756,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12315","ServerKey":"pl181","X":445,"Y":598},{"Bonus":0,"Continent":"K56","ID":12316,"Name":"009","PlayerID":6160655,"Points":10564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12316","ServerKey":"pl181","X":602,"Y":545},{"Bonus":0,"Continent":"K54","ID":12317,"Name":"Mrocza","PlayerID":698769107,"Points":8716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12317","ServerKey":"pl181","X":422,"Y":580},{"Bonus":0,"Continent":"K44","ID":12318,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12318","ServerKey":"pl181","X":414,"Y":424},{"Bonus":0,"Continent":"K35","ID":12319,"Name":"007 Te pandy takie nie za mocne","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12319","ServerKey":"pl181","X":504,"Y":388},{"Bonus":0,"Continent":"K56","ID":12320,"Name":"005","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12320","ServerKey":"pl181","X":610,"Y":534},{"Bonus":0,"Continent":"K44","ID":12321,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12321","ServerKey":"pl181","X":422,"Y":420},{"Bonus":0,"Continent":"K56","ID":12322,"Name":"0003 MzM","PlayerID":698416970,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12322","ServerKey":"pl181","X":603,"Y":562},{"Bonus":0,"Continent":"K45","ID":12323,"Name":"[310] Chorągiewka na wietrze","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12323","ServerKey":"pl181","X":590,"Y":434},{"Bonus":0,"Continent":"K64","ID":12324,"Name":"EKG .::. Siwyy8848/1","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12324","ServerKey":"pl181","X":496,"Y":616},{"Bonus":0,"Continent":"K44","ID":12325,"Name":"0084","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12325","ServerKey":"pl181","X":442,"Y":402},{"Bonus":0,"Continent":"K45","ID":12327,"Name":"[323] Chorągiewka na wietrze","PlayerID":848985692,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12327","ServerKey":"pl181","X":590,"Y":439},{"Bonus":0,"Continent":"K54","ID":12328,"Name":"002","PlayerID":1536625,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12328","ServerKey":"pl181","X":472,"Y":507},{"Bonus":0,"Continent":"K44","ID":12329,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12329","ServerKey":"pl181","X":424,"Y":418},{"Bonus":0,"Continent":"K45","ID":12330,"Name":"A16","PlayerID":699368887,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12330","ServerKey":"pl181","X":556,"Y":452},{"Bonus":0,"Continent":"K55","ID":12331,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12331","ServerKey":"pl181","X":595,"Y":557},{"Bonus":0,"Continent":"K54","ID":12332,"Name":"Hhhhh","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12332","ServerKey":"pl181","X":420,"Y":573},{"Bonus":0,"Continent":"K53","ID":12333,"Name":"ok.","PlayerID":849030226,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12333","ServerKey":"pl181","X":389,"Y":523},{"Bonus":0,"Continent":"K46","ID":12334,"Name":"015","PlayerID":8459255,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12334","ServerKey":"pl181","X":605,"Y":466},{"Bonus":0,"Continent":"K45","ID":12335,"Name":"025","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12335","ServerKey":"pl181","X":558,"Y":405},{"Bonus":0,"Continent":"K43","ID":12336,"Name":"Mniejsze zƂo 0012","PlayerID":699794765,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12336","ServerKey":"pl181","X":391,"Y":469},{"Bonus":0,"Continent":"K64","ID":12337,"Name":"KIELBA 086","PlayerID":699342219,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12337","ServerKey":"pl181","X":461,"Y":601},{"Bonus":0,"Continent":"K54","ID":12338,"Name":"C 012 Niepolomice","PlayerID":849084740,"Points":6912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12338","ServerKey":"pl181","X":417,"Y":573},{"Bonus":0,"Continent":"K44","ID":12339,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12339","ServerKey":"pl181","X":403,"Y":457},{"Bonus":0,"Continent":"K34","ID":12340,"Name":"018","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12340","ServerKey":"pl181","X":490,"Y":387},{"Bonus":9,"Continent":"K35","ID":12341,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12341","ServerKey":"pl181","X":529,"Y":392},{"Bonus":0,"Continent":"K45","ID":12342,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12342","ServerKey":"pl181","X":572,"Y":416},{"Bonus":0,"Continent":"K43","ID":12343,"Name":"Bier sie stad ino a wartko","PlayerID":699711723,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12343","ServerKey":"pl181","X":389,"Y":451},{"Bonus":0,"Continent":"K54","ID":12344,"Name":"1818","PlayerID":849028088,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12344","ServerKey":"pl181","X":434,"Y":587},{"Bonus":0,"Continent":"K54","ID":12346,"Name":"Pemberley","PlayerID":699443920,"Points":11094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12346","ServerKey":"pl181","X":407,"Y":561},{"Bonus":0,"Continent":"K55","ID":12347,"Name":"017. Astrid","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12347","ServerKey":"pl181","X":587,"Y":569},{"Bonus":0,"Continent":"K64","ID":12348,"Name":"0206","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12348","ServerKey":"pl181","X":447,"Y":601},{"Bonus":0,"Continent":"K55","ID":12349,"Name":"PYRLANDIA 028 ni pod ci","PlayerID":33900,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12349","ServerKey":"pl181","X":566,"Y":591},{"Bonus":0,"Continent":"K44","ID":12350,"Name":"0024 W","PlayerID":3909522,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12350","ServerKey":"pl181","X":431,"Y":412},{"Bonus":0,"Continent":"K54","ID":12351,"Name":"131 B04","PlayerID":699382126,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12351","ServerKey":"pl181","X":402,"Y":554},{"Bonus":0,"Continent":"K55","ID":12352,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12352","ServerKey":"pl181","X":589,"Y":562},{"Bonus":0,"Continent":"K46","ID":12353,"Name":"007 Lufa na leĆŒÄ…co","PlayerID":699272633,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12353","ServerKey":"pl181","X":608,"Y":486},{"Bonus":0,"Continent":"K45","ID":12354,"Name":"096","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12354","ServerKey":"pl181","X":549,"Y":403},{"Bonus":0,"Continent":"K53","ID":12355,"Name":"Wioska barbarzyƄska","PlayerID":699364813,"Points":3494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12355","ServerKey":"pl181","X":397,"Y":547},{"Bonus":0,"Continent":"K46","ID":12356,"Name":"079","PlayerID":699573053,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12356","ServerKey":"pl181","X":609,"Y":492},{"Bonus":0,"Continent":"K45","ID":12357,"Name":"013","PlayerID":1424656,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12357","ServerKey":"pl181","X":549,"Y":401},{"Bonus":0,"Continent":"K34","ID":12358,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12358","ServerKey":"pl181","X":485,"Y":389},{"Bonus":0,"Continent":"K45","ID":12359,"Name":"010","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12359","ServerKey":"pl181","X":553,"Y":402},{"Bonus":0,"Continent":"K53","ID":12360,"Name":"023","PlayerID":699856962,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12360","ServerKey":"pl181","X":398,"Y":537},{"Bonus":0,"Continent":"K64","ID":12362,"Name":"092 MEHEHE","PlayerID":6116940,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12362","ServerKey":"pl181","X":493,"Y":608},{"Bonus":7,"Continent":"K44","ID":12363,"Name":"0020 Wioska","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12363","ServerKey":"pl181","X":433,"Y":409},{"Bonus":0,"Continent":"K54","ID":12365,"Name":"138 B05","PlayerID":699382126,"Points":10371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12365","ServerKey":"pl181","X":404,"Y":553},{"Bonus":0,"Continent":"K44","ID":12366,"Name":"0029 Wioska","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12366","ServerKey":"pl181","X":433,"Y":414},{"Bonus":0,"Continent":"K45","ID":12367,"Name":"010 Nie potwierdzam","PlayerID":698829590,"Points":5253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12367","ServerKey":"pl181","X":598,"Y":446},{"Bonus":0,"Continent":"K54","ID":12368,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12368","ServerKey":"pl181","X":404,"Y":550},{"Bonus":3,"Continent":"K45","ID":12369,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12369","ServerKey":"pl181","X":587,"Y":431},{"Bonus":0,"Continent":"K43","ID":12370,"Name":"Wioska JemekJankowski","PlayerID":699523631,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12370","ServerKey":"pl181","X":391,"Y":471},{"Bonus":0,"Continent":"K46","ID":12371,"Name":"[244] West","PlayerID":848985692,"Points":5812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12371","ServerKey":"pl181","X":600,"Y":452},{"Bonus":0,"Continent":"K53","ID":12372,"Name":"asasas","PlayerID":699856962,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12372","ServerKey":"pl181","X":398,"Y":540},{"Bonus":0,"Continent":"K34","ID":12373,"Name":"Wielki mur 2","PlayerID":849093155,"Points":8734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12373","ServerKey":"pl181","X":478,"Y":392},{"Bonus":0,"Continent":"K44","ID":12374,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12374","ServerKey":"pl181","X":415,"Y":425},{"Bonus":0,"Continent":"K44","ID":12375,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12375","ServerKey":"pl181","X":436,"Y":408},{"Bonus":0,"Continent":"K46","ID":12377,"Name":"009","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12377","ServerKey":"pl181","X":602,"Y":459},{"Bonus":0,"Continent":"K65","ID":12378,"Name":"037","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12378","ServerKey":"pl181","X":501,"Y":610},{"Bonus":0,"Continent":"K43","ID":12379,"Name":"A0035","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12379","ServerKey":"pl181","X":390,"Y":475},{"Bonus":0,"Continent":"K44","ID":12381,"Name":"K44 x013","PlayerID":698364331,"Points":9610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12381","ServerKey":"pl181","X":432,"Y":410},{"Bonus":0,"Continent":"K53","ID":12382,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12382","ServerKey":"pl181","X":394,"Y":540},{"Bonus":0,"Continent":"K44","ID":12383,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12383","ServerKey":"pl181","X":421,"Y":423},{"Bonus":0,"Continent":"K64","ID":12384,"Name":"011","PlayerID":699364813,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12384","ServerKey":"pl181","X":462,"Y":604},{"Bonus":0,"Continent":"K54","ID":12385,"Name":"0645","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12385","ServerKey":"pl181","X":439,"Y":594},{"Bonus":0,"Continent":"K53","ID":12386,"Name":"# Szymi 6","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12386","ServerKey":"pl181","X":394,"Y":539},{"Bonus":0,"Continent":"K35","ID":12388,"Name":"C001","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12388","ServerKey":"pl181","X":520,"Y":388},{"Bonus":0,"Continent":"K44","ID":12389,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12389","ServerKey":"pl181","X":443,"Y":403},{"Bonus":0,"Continent":"K55","ID":12390,"Name":"006. Rollo","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12390","ServerKey":"pl181","X":588,"Y":565},{"Bonus":0,"Continent":"K45","ID":12391,"Name":"020 Notfair to kox","PlayerID":698829590,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12391","ServerKey":"pl181","X":599,"Y":446},{"Bonus":0,"Continent":"K55","ID":12392,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12392","ServerKey":"pl181","X":598,"Y":547},{"Bonus":0,"Continent":"K54","ID":12393,"Name":"137 B14","PlayerID":699382126,"Points":8016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12393","ServerKey":"pl181","X":403,"Y":559},{"Bonus":0,"Continent":"K45","ID":12394,"Name":"Najlepszy sąsiad 004","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12394","ServerKey":"pl181","X":597,"Y":444},{"Bonus":0,"Continent":"K46","ID":12395,"Name":"043","PlayerID":699573053,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12395","ServerKey":"pl181","X":608,"Y":487},{"Bonus":0,"Continent":"K44","ID":12396,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12396","ServerKey":"pl181","X":436,"Y":407},{"Bonus":0,"Continent":"K35","ID":12397,"Name":"175","PlayerID":849064752,"Points":8927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12397","ServerKey":"pl181","X":543,"Y":380},{"Bonus":0,"Continent":"K54","ID":12398,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12398","ServerKey":"pl181","X":401,"Y":547},{"Bonus":0,"Continent":"K43","ID":12399,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12399","ServerKey":"pl181","X":396,"Y":463},{"Bonus":3,"Continent":"K45","ID":12400,"Name":"002","PlayerID":1424656,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12400","ServerKey":"pl181","X":551,"Y":400},{"Bonus":0,"Continent":"K53","ID":12401,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12401","ServerKey":"pl181","X":391,"Y":517},{"Bonus":0,"Continent":"K34","ID":12402,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12402","ServerKey":"pl181","X":487,"Y":390},{"Bonus":1,"Continent":"K45","ID":12403,"Name":"089","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12403","ServerKey":"pl181","X":574,"Y":414},{"Bonus":0,"Continent":"K54","ID":12404,"Name":"078 - Twierdza 001","PlayerID":225023,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12404","ServerKey":"pl181","X":418,"Y":572},{"Bonus":0,"Continent":"K55","ID":12405,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12405","ServerKey":"pl181","X":580,"Y":573},{"Bonus":0,"Continent":"K55","ID":12406,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12406","ServerKey":"pl181","X":579,"Y":581},{"Bonus":0,"Continent":"K53","ID":12407,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12407","ServerKey":"pl181","X":391,"Y":514},{"Bonus":0,"Continent":"K43","ID":12408,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12408","ServerKey":"pl181","X":390,"Y":492},{"Bonus":0,"Continent":"K56","ID":12409,"Name":"Wioska Bleeklos","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12409","ServerKey":"pl181","X":608,"Y":533},{"Bonus":0,"Continent":"K54","ID":12410,"Name":"002 (LukaszWspanialy)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12410","ServerKey":"pl181","X":413,"Y":572},{"Bonus":0,"Continent":"K43","ID":12411,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12411","ServerKey":"pl181","X":398,"Y":451},{"Bonus":0,"Continent":"K35","ID":12413,"Name":"Gattacka","PlayerID":699298370,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12413","ServerKey":"pl181","X":539,"Y":394},{"Bonus":0,"Continent":"K43","ID":12414,"Name":"Wioska marekkkzzz665","PlayerID":699523631,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12414","ServerKey":"pl181","X":388,"Y":480},{"Bonus":0,"Continent":"K64","ID":12415,"Name":"~011.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12415","ServerKey":"pl181","X":499,"Y":613},{"Bonus":0,"Continent":"K44","ID":12416,"Name":"x02","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12416","ServerKey":"pl181","X":408,"Y":435},{"Bonus":0,"Continent":"K54","ID":12417,"Name":"078","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12417","ServerKey":"pl181","X":414,"Y":512},{"Bonus":0,"Continent":"K64","ID":12418,"Name":"024.xxx","PlayerID":8612358,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12418","ServerKey":"pl181","X":481,"Y":609},{"Bonus":0,"Continent":"K54","ID":12419,"Name":"002buuuuu","PlayerID":9167250,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12419","ServerKey":"pl181","X":408,"Y":564},{"Bonus":0,"Continent":"K35","ID":12420,"Name":"A006","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12420","ServerKey":"pl181","X":514,"Y":387},{"Bonus":0,"Continent":"K53","ID":12421,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12421","ServerKey":"pl181","X":388,"Y":505},{"Bonus":0,"Continent":"K35","ID":12422,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12422","ServerKey":"pl181","X":524,"Y":399},{"Bonus":0,"Continent":"K54","ID":12423,"Name":"136 S013","PlayerID":699382126,"Points":7787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12423","ServerKey":"pl181","X":405,"Y":556},{"Bonus":0,"Continent":"K46","ID":12424,"Name":"[233] WEST","PlayerID":848985692,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12424","ServerKey":"pl181","X":600,"Y":451},{"Bonus":0,"Continent":"K56","ID":12425,"Name":"005 Helmowy Jar","PlayerID":8013349,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12425","ServerKey":"pl181","X":609,"Y":528},{"Bonus":0,"Continent":"K64","ID":12426,"Name":"KIELBA 085","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12426","ServerKey":"pl181","X":454,"Y":601},{"Bonus":0,"Continent":"K65","ID":12427,"Name":"017","PlayerID":699189792,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12427","ServerKey":"pl181","X":540,"Y":605},{"Bonus":0,"Continent":"K65","ID":12428,"Name":"0006","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12428","ServerKey":"pl181","X":535,"Y":608},{"Bonus":0,"Continent":"K56","ID":12429,"Name":"032 Kreta","PlayerID":8323711,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12429","ServerKey":"pl181","X":613,"Y":512},{"Bonus":0,"Continent":"K44","ID":12430,"Name":"0026 utache","PlayerID":3909522,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12430","ServerKey":"pl181","X":427,"Y":413},{"Bonus":0,"Continent":"K53","ID":12431,"Name":"Brat447","PlayerID":699262350,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12431","ServerKey":"pl181","X":387,"Y":513},{"Bonus":0,"Continent":"K65","ID":12432,"Name":"003","PlayerID":8925624,"Points":8569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12432","ServerKey":"pl181","X":509,"Y":611},{"Bonus":0,"Continent":"K54","ID":12434,"Name":"Majin Buu 009","PlayerID":699054373,"Points":8156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12434","ServerKey":"pl181","X":441,"Y":565},{"Bonus":0,"Continent":"K55","ID":12435,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12435","ServerKey":"pl181","X":566,"Y":587},{"Bonus":0,"Continent":"K34","ID":12436,"Name":"[0088]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12436","ServerKey":"pl181","X":449,"Y":399},{"Bonus":0,"Continent":"K54","ID":12437,"Name":"003a barba","PlayerID":9167250,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12437","ServerKey":"pl181","X":428,"Y":583},{"Bonus":0,"Continent":"K45","ID":12438,"Name":"[306] Chorągiewka na wietrze","PlayerID":848985692,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12438","ServerKey":"pl181","X":590,"Y":431},{"Bonus":0,"Continent":"K54","ID":12439,"Name":"Z barba 003","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12439","ServerKey":"pl181","X":423,"Y":577},{"Bonus":0,"Continent":"K44","ID":12440,"Name":"NOT","PlayerID":9236866,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12440","ServerKey":"pl181","X":415,"Y":429},{"Bonus":1,"Continent":"K35","ID":12441,"Name":"026","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12441","ServerKey":"pl181","X":545,"Y":396},{"Bonus":0,"Continent":"K43","ID":12442,"Name":"Mniejsze zƂo 0009","PlayerID":699794765,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12442","ServerKey":"pl181","X":392,"Y":468},{"Bonus":0,"Continent":"K56","ID":12443,"Name":"*018*","PlayerID":698670524,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12443","ServerKey":"pl181","X":609,"Y":512},{"Bonus":0,"Continent":"K44","ID":12444,"Name":"ZABAWA -2- Waldemar Wielki","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12444","ServerKey":"pl181","X":407,"Y":440},{"Bonus":0,"Continent":"K65","ID":12445,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12445","ServerKey":"pl181","X":537,"Y":606},{"Bonus":0,"Continent":"K56","ID":12446,"Name":"060","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12446","ServerKey":"pl181","X":610,"Y":503},{"Bonus":0,"Continent":"K44","ID":12447,"Name":"0007 N","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12447","ServerKey":"pl181","X":425,"Y":414},{"Bonus":0,"Continent":"K45","ID":12448,"Name":"[237] WEST","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12448","ServerKey":"pl181","X":599,"Y":452},{"Bonus":0,"Continent":"K44","ID":12449,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12449","ServerKey":"pl181","X":413,"Y":430},{"Bonus":0,"Continent":"K65","ID":12450,"Name":"CALL 1006","PlayerID":699784536,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12450","ServerKey":"pl181","X":521,"Y":608},{"Bonus":0,"Continent":"K44","ID":12451,"Name":"0011 F","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12451","ServerKey":"pl181","X":430,"Y":408},{"Bonus":0,"Continent":"K46","ID":12452,"Name":"009","PlayerID":849006412,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12452","ServerKey":"pl181","X":613,"Y":499},{"Bonus":0,"Continent":"K46","ID":12453,"Name":"D01","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12453","ServerKey":"pl181","X":621,"Y":479},{"Bonus":0,"Continent":"K56","ID":12454,"Name":"0016","PlayerID":6510480,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12454","ServerKey":"pl181","X":612,"Y":520},{"Bonus":0,"Continent":"K44","ID":12455,"Name":"005 San Francisco","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12455","ServerKey":"pl181","X":427,"Y":416},{"Bonus":0,"Continent":"K56","ID":12456,"Name":"0003","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12456","ServerKey":"pl181","X":601,"Y":548},{"Bonus":0,"Continent":"K53","ID":12457,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12457","ServerKey":"pl181","X":388,"Y":518},{"Bonus":0,"Continent":"K55","ID":12458,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12458","ServerKey":"pl181","X":582,"Y":574},{"Bonus":8,"Continent":"K54","ID":12459,"Name":"032 - GKS","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12459","ServerKey":"pl181","X":425,"Y":583},{"Bonus":0,"Continent":"K54","ID":12460,"Name":"007a","PlayerID":9167250,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12460","ServerKey":"pl181","X":422,"Y":579},{"Bonus":0,"Continent":"K35","ID":12461,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12461","ServerKey":"pl181","X":525,"Y":391},{"Bonus":0,"Continent":"K43","ID":12462,"Name":"[A]_[016] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12462","ServerKey":"pl181","X":392,"Y":490},{"Bonus":0,"Continent":"K35","ID":12463,"Name":"D017","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12463","ServerKey":"pl181","X":505,"Y":388},{"Bonus":8,"Continent":"K56","ID":12464,"Name":"A.002","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12464","ServerKey":"pl181","X":602,"Y":551},{"Bonus":0,"Continent":"K45","ID":12465,"Name":"Wioska pchelka75","PlayerID":583500,"Points":3440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12465","ServerKey":"pl181","X":594,"Y":437},{"Bonus":0,"Continent":"K35","ID":12466,"Name":".achim.","PlayerID":6936607,"Points":3974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12466","ServerKey":"pl181","X":526,"Y":393},{"Bonus":0,"Continent":"K54","ID":12467,"Name":"0232","PlayerID":698659980,"Points":7325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12467","ServerKey":"pl181","X":451,"Y":598},{"Bonus":0,"Continent":"K56","ID":12468,"Name":"Mzm14","PlayerID":7142659,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12468","ServerKey":"pl181","X":610,"Y":530},{"Bonus":0,"Continent":"K65","ID":12469,"Name":"#002","PlayerID":849001572,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12469","ServerKey":"pl181","X":543,"Y":602},{"Bonus":0,"Continent":"K44","ID":12470,"Name":"A008","PlayerID":8740199,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12470","ServerKey":"pl181","X":448,"Y":403},{"Bonus":0,"Continent":"K65","ID":12471,"Name":"Teby_03","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12471","ServerKey":"pl181","X":503,"Y":610},{"Bonus":0,"Continent":"K64","ID":12472,"Name":"Naboo 6","PlayerID":699383121,"Points":8889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12472","ServerKey":"pl181","X":487,"Y":610},{"Bonus":0,"Continent":"K53","ID":12473,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12473","ServerKey":"pl181","X":390,"Y":523},{"Bonus":0,"Continent":"K44","ID":12474,"Name":"Gravity","PlayerID":698962117,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12474","ServerKey":"pl181","X":404,"Y":442},{"Bonus":0,"Continent":"K43","ID":12475,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12475","ServerKey":"pl181","X":392,"Y":441},{"Bonus":0,"Continent":"K54","ID":12476,"Name":"066 - Cenny***","PlayerID":225023,"Points":6293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12476","ServerKey":"pl181","X":436,"Y":590},{"Bonus":0,"Continent":"K46","ID":12477,"Name":"006","PlayerID":8459255,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12477","ServerKey":"pl181","X":609,"Y":470},{"Bonus":0,"Continent":"K53","ID":12478,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12478","ServerKey":"pl181","X":390,"Y":519},{"Bonus":0,"Continent":"K44","ID":12479,"Name":"Fresio","PlayerID":699660539,"Points":10128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12479","ServerKey":"pl181","X":424,"Y":419},{"Bonus":0,"Continent":"K65","ID":12480,"Name":"16. Barret Wallace","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12480","ServerKey":"pl181","X":521,"Y":612},{"Bonus":0,"Continent":"K45","ID":12481,"Name":"012","PlayerID":1424656,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12481","ServerKey":"pl181","X":544,"Y":400},{"Bonus":0,"Continent":"K64","ID":12482,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12482","ServerKey":"pl181","X":463,"Y":607},{"Bonus":0,"Continent":"K56","ID":12483,"Name":"006 LordTrol","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12483","ServerKey":"pl181","X":611,"Y":522},{"Bonus":0,"Continent":"K45","ID":12484,"Name":"107","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12484","ServerKey":"pl181","X":569,"Y":411},{"Bonus":0,"Continent":"K65","ID":12485,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12485","ServerKey":"pl181","X":540,"Y":607},{"Bonus":0,"Continent":"K55","ID":12486,"Name":"Heart Of Steel","PlayerID":848926293,"Points":9526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12486","ServerKey":"pl181","X":593,"Y":561},{"Bonus":0,"Continent":"K53","ID":12487,"Name":"Popas1","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12487","ServerKey":"pl181","X":387,"Y":500},{"Bonus":0,"Continent":"K44","ID":12488,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12488","ServerKey":"pl181","X":409,"Y":436},{"Bonus":0,"Continent":"K56","ID":12489,"Name":"004","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12489","ServerKey":"pl181","X":610,"Y":525},{"Bonus":0,"Continent":"K64","ID":12490,"Name":"~089.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12490","ServerKey":"pl181","X":492,"Y":612},{"Bonus":0,"Continent":"K35","ID":12491,"Name":"055","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12491","ServerKey":"pl181","X":549,"Y":397},{"Bonus":0,"Continent":"K45","ID":12492,"Name":"027","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12492","ServerKey":"pl181","X":562,"Y":407},{"Bonus":0,"Continent":"K46","ID":12493,"Name":"002","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12493","ServerKey":"pl181","X":604,"Y":460},{"Bonus":0,"Continent":"K44","ID":12494,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12494","ServerKey":"pl181","X":412,"Y":434},{"Bonus":0,"Continent":"K45","ID":12495,"Name":"[360] Chorągiewka na wietrze","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12495","ServerKey":"pl181","X":592,"Y":438},{"Bonus":0,"Continent":"K55","ID":12496,"Name":"- 128 -","PlayerID":849018239,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12496","ServerKey":"pl181","X":551,"Y":596},{"Bonus":0,"Continent":"K64","ID":12497,"Name":"~075.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12497","ServerKey":"pl181","X":490,"Y":612},{"Bonus":1,"Continent":"K43","ID":12498,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12498","ServerKey":"pl181","X":389,"Y":479},{"Bonus":0,"Continent":"K45","ID":12499,"Name":"025 To byƂy czasy","PlayerID":698829590,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12499","ServerKey":"pl181","X":596,"Y":449},{"Bonus":0,"Continent":"K44","ID":12500,"Name":"0025 Wioska","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12500","ServerKey":"pl181","X":429,"Y":413},{"Bonus":6,"Continent":"K46","ID":12501,"Name":"032","PlayerID":849088515,"Points":8031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12501","ServerKey":"pl181","X":603,"Y":462},{"Bonus":0,"Continent":"K56","ID":12502,"Name":"025 Ellesmera","PlayerID":8337151,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12502","ServerKey":"pl181","X":601,"Y":504},{"Bonus":0,"Continent":"K43","ID":12503,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12503","ServerKey":"pl181","X":393,"Y":476},{"Bonus":0,"Continent":"K55","ID":12504,"Name":"India","PlayerID":699737356,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12504","ServerKey":"pl181","X":596,"Y":560},{"Bonus":0,"Continent":"K65","ID":12505,"Name":"Ceiling - Air-Conditioning Duct","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12505","ServerKey":"pl181","X":530,"Y":609},{"Bonus":0,"Continent":"K55","ID":12506,"Name":"038","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12506","ServerKey":"pl181","X":589,"Y":572},{"Bonus":0,"Continent":"K44","ID":12507,"Name":"x06","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12507","ServerKey":"pl181","X":410,"Y":432},{"Bonus":0,"Continent":"K35","ID":12508,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12508","ServerKey":"pl181","X":526,"Y":391},{"Bonus":9,"Continent":"K46","ID":12509,"Name":"013","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12509","ServerKey":"pl181","X":612,"Y":483},{"Bonus":0,"Continent":"K44","ID":12510,"Name":"007","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12510","ServerKey":"pl181","X":407,"Y":437},{"Bonus":0,"Continent":"K44","ID":12511,"Name":"00354 MaƂego Franka","PlayerID":3909522,"Points":8790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12511","ServerKey":"pl181","X":427,"Y":419},{"Bonus":0,"Continent":"K56","ID":12512,"Name":"007 barbarzyƄska","PlayerID":9238175,"Points":10318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12512","ServerKey":"pl181","X":608,"Y":528},{"Bonus":0,"Continent":"K46","ID":12513,"Name":"007","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12513","ServerKey":"pl181","X":604,"Y":457},{"Bonus":0,"Continent":"K55","ID":12514,"Name":"011. Torvi","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12514","ServerKey":"pl181","X":589,"Y":564},{"Bonus":0,"Continent":"K64","ID":12515,"Name":"EKG M .::. Paola65","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12515","ServerKey":"pl181","X":480,"Y":608},{"Bonus":0,"Continent":"K46","ID":12516,"Name":"[218] WEST","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12516","ServerKey":"pl181","X":606,"Y":458},{"Bonus":0,"Continent":"K55","ID":12517,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12517","ServerKey":"pl181","X":582,"Y":577},{"Bonus":0,"Continent":"K35","ID":12518,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12518","ServerKey":"pl181","X":526,"Y":392},{"Bonus":0,"Continent":"K45","ID":12519,"Name":"025 Albania","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12519","ServerKey":"pl181","X":593,"Y":467},{"Bonus":1,"Continent":"K46","ID":12520,"Name":"075 Minnesota","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12520","ServerKey":"pl181","X":611,"Y":486},{"Bonus":0,"Continent":"K56","ID":12521,"Name":"005 Moss","PlayerID":699272880,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12521","ServerKey":"pl181","X":602,"Y":543},{"Bonus":0,"Continent":"K54","ID":12522,"Name":"B.002","PlayerID":849088243,"Points":9221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12522","ServerKey":"pl181","X":410,"Y":567},{"Bonus":0,"Continent":"K34","ID":12523,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12523","ServerKey":"pl181","X":479,"Y":388},{"Bonus":0,"Continent":"K55","ID":12524,"Name":"A.020","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12524","ServerKey":"pl181","X":596,"Y":559},{"Bonus":0,"Continent":"K45","ID":12525,"Name":"DOM 14","PlayerID":849064614,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12525","ServerKey":"pl181","X":567,"Y":411},{"Bonus":0,"Continent":"K65","ID":12526,"Name":"SkƂad","PlayerID":606407,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12526","ServerKey":"pl181","X":507,"Y":611},{"Bonus":0,"Continent":"K45","ID":12527,"Name":"South K45","PlayerID":699146580,"Points":5602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12527","ServerKey":"pl181","X":574,"Y":416},{"Bonus":0,"Continent":"K44","ID":12528,"Name":"Baza1","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12528","ServerKey":"pl181","X":408,"Y":439},{"Bonus":0,"Continent":"K35","ID":12529,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12529","ServerKey":"pl181","X":529,"Y":393},{"Bonus":0,"Continent":"K53","ID":12530,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12530","ServerKey":"pl181","X":389,"Y":506},{"Bonus":0,"Continent":"K46","ID":12531,"Name":"083 Missouri","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12531","ServerKey":"pl181","X":611,"Y":490},{"Bonus":0,"Continent":"K54","ID":12532,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":5554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12532","ServerKey":"pl181","X":405,"Y":563},{"Bonus":0,"Continent":"K56","ID":12533,"Name":"014","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12533","ServerKey":"pl181","X":611,"Y":527},{"Bonus":0,"Continent":"K43","ID":12534,"Name":"s181eo04","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12534","ServerKey":"pl181","X":399,"Y":452},{"Bonus":0,"Continent":"K44","ID":12535,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12535","ServerKey":"pl181","X":421,"Y":421},{"Bonus":0,"Continent":"K53","ID":12536,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12536","ServerKey":"pl181","X":388,"Y":508},{"Bonus":0,"Continent":"K56","ID":12538,"Name":"074","PlayerID":699373599,"Points":7952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12538","ServerKey":"pl181","X":608,"Y":516},{"Bonus":0,"Continent":"K55","ID":12539,"Name":"006","PlayerID":848899726,"Points":7979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12539","ServerKey":"pl181","X":596,"Y":558},{"Bonus":0,"Continent":"K56","ID":12540,"Name":"0005. C - Aberon","PlayerID":7125212,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12540","ServerKey":"pl181","X":623,"Y":504},{"Bonus":0,"Continent":"K46","ID":12541,"Name":"014","PlayerID":8459255,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12541","ServerKey":"pl181","X":607,"Y":464},{"Bonus":0,"Continent":"K55","ID":12542,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12542","ServerKey":"pl181","X":584,"Y":545},{"Bonus":0,"Continent":"K53","ID":12543,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12543","ServerKey":"pl181","X":387,"Y":508},{"Bonus":0,"Continent":"K46","ID":12544,"Name":"021. Patavium","PlayerID":849091866,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12544","ServerKey":"pl181","X":614,"Y":458},{"Bonus":0,"Continent":"K44","ID":12545,"Name":"041 Dallas","PlayerID":9291984,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12545","ServerKey":"pl181","X":424,"Y":414},{"Bonus":0,"Continent":"K45","ID":12546,"Name":"*1Nocne Harce","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12546","ServerKey":"pl181","X":584,"Y":430},{"Bonus":0,"Continent":"K65","ID":12547,"Name":"0009","PlayerID":848915531,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12547","ServerKey":"pl181","X":532,"Y":605},{"Bonus":0,"Continent":"K53","ID":12548,"Name":"terra vista","PlayerID":849030226,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12548","ServerKey":"pl181","X":398,"Y":541},{"Bonus":0,"Continent":"K55","ID":12549,"Name":"RUSZEK NIE DLA CIEBIE","PlayerID":1715091,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12549","ServerKey":"pl181","X":588,"Y":569},{"Bonus":0,"Continent":"K34","ID":12550,"Name":"East Blue","PlayerID":699433558,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12550","ServerKey":"pl181","X":494,"Y":387},{"Bonus":0,"Continent":"K65","ID":12551,"Name":"!*305*","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12551","ServerKey":"pl181","X":508,"Y":611},{"Bonus":0,"Continent":"K53","ID":12552,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12552","ServerKey":"pl181","X":380,"Y":531},{"Bonus":0,"Continent":"K65","ID":12553,"Name":"Insomnia","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12553","ServerKey":"pl181","X":527,"Y":608},{"Bonus":0,"Continent":"K34","ID":12555,"Name":"[0036]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12555","ServerKey":"pl181","X":455,"Y":397},{"Bonus":0,"Continent":"K43","ID":12556,"Name":"Land of Fire","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12556","ServerKey":"pl181","X":399,"Y":451},{"Bonus":0,"Continent":"K45","ID":12557,"Name":"Galia 3","PlayerID":848989855,"Points":5558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12557","ServerKey":"pl181","X":595,"Y":442},{"Bonus":0,"Continent":"K56","ID":12558,"Name":"05 MakijaĆŒ","PlayerID":699377151,"Points":9097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12558","ServerKey":"pl181","X":614,"Y":501},{"Bonus":0,"Continent":"K55","ID":12559,"Name":"031","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12559","ServerKey":"pl181","X":591,"Y":568},{"Bonus":0,"Continent":"K56","ID":12560,"Name":"*007*","PlayerID":698670524,"Points":8805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12560","ServerKey":"pl181","X":618,"Y":519},{"Bonus":0,"Continent":"K54","ID":12561,"Name":"024 - B08.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12561","ServerKey":"pl181","X":439,"Y":597},{"Bonus":0,"Continent":"K54","ID":12563,"Name":"Z barba 004","PlayerID":225023,"Points":8518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12563","ServerKey":"pl181","X":424,"Y":581},{"Bonus":0,"Continent":"K64","ID":12564,"Name":"0133","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12564","ServerKey":"pl181","X":461,"Y":607},{"Bonus":6,"Continent":"K65","ID":12565,"Name":"Memorial Museum","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12565","ServerKey":"pl181","X":516,"Y":613},{"Bonus":0,"Continent":"K55","ID":12566,"Name":"Soldier Of Fortune","PlayerID":848926293,"Points":9456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12566","ServerKey":"pl181","X":595,"Y":560},{"Bonus":0,"Continent":"K54","ID":12567,"Name":"0000025@","PlayerID":849089881,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12567","ServerKey":"pl181","X":435,"Y":594},{"Bonus":0,"Continent":"K56","ID":12568,"Name":"Mourinho","PlayerID":699795378,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12568","ServerKey":"pl181","X":626,"Y":516},{"Bonus":0,"Continent":"K35","ID":12569,"Name":"C004","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12569","ServerKey":"pl181","X":523,"Y":388},{"Bonus":0,"Continent":"K34","ID":12570,"Name":"Grand Line","PlayerID":699433558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12570","ServerKey":"pl181","X":490,"Y":394},{"Bonus":0,"Continent":"K55","ID":12571,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12571","ServerKey":"pl181","X":573,"Y":583},{"Bonus":0,"Continent":"K56","ID":12572,"Name":"005","PlayerID":849006412,"Points":10098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12572","ServerKey":"pl181","X":613,"Y":500},{"Bonus":0,"Continent":"K45","ID":12573,"Name":"011","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12573","ServerKey":"pl181","X":558,"Y":403},{"Bonus":0,"Continent":"K64","ID":12574,"Name":"#010","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12574","ServerKey":"pl181","X":473,"Y":610},{"Bonus":0,"Continent":"K56","ID":12575,"Name":"0037","PlayerID":6510480,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12575","ServerKey":"pl181","X":614,"Y":513},{"Bonus":0,"Continent":"K35","ID":12576,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12576","ServerKey":"pl181","X":536,"Y":395},{"Bonus":1,"Continent":"K34","ID":12577,"Name":"013","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12577","ServerKey":"pl181","X":492,"Y":387},{"Bonus":0,"Continent":"K34","ID":12579,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12579","ServerKey":"pl181","X":484,"Y":392},{"Bonus":0,"Continent":"K46","ID":12580,"Name":"030","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12580","ServerKey":"pl181","X":610,"Y":486},{"Bonus":0,"Continent":"K35","ID":12581,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12581","ServerKey":"pl181","X":536,"Y":393},{"Bonus":0,"Continent":"K64","ID":12582,"Name":"NIERAJ006","PlayerID":33900,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12582","ServerKey":"pl181","X":469,"Y":608},{"Bonus":0,"Continent":"K56","ID":12583,"Name":"0047 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12583","ServerKey":"pl181","X":601,"Y":515},{"Bonus":0,"Continent":"K44","ID":12584,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12584","ServerKey":"pl181","X":438,"Y":406},{"Bonus":0,"Continent":"K65","ID":12586,"Name":"- 050 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12586","ServerKey":"pl181","X":540,"Y":604},{"Bonus":0,"Continent":"K43","ID":12587,"Name":"Vegus to wygraƂ","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12587","ServerKey":"pl181","X":398,"Y":426},{"Bonus":0,"Continent":"K43","ID":12588,"Name":"A0032","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12588","ServerKey":"pl181","X":389,"Y":481},{"Bonus":0,"Continent":"K46","ID":12589,"Name":"018","PlayerID":8459255,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12589","ServerKey":"pl181","X":609,"Y":469},{"Bonus":0,"Continent":"K53","ID":12591,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12591","ServerKey":"pl181","X":388,"Y":511},{"Bonus":0,"Continent":"K35","ID":12592,"Name":".:007:.Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12592","ServerKey":"pl181","X":501,"Y":388},{"Bonus":0,"Continent":"K35","ID":12593,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12593","ServerKey":"pl181","X":529,"Y":389},{"Bonus":0,"Continent":"K56","ID":12594,"Name":"Wioska (015)","PlayerID":698232227,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12594","ServerKey":"pl181","X":604,"Y":543},{"Bonus":0,"Continent":"K65","ID":12595,"Name":"~017.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12595","ServerKey":"pl181","X":500,"Y":614},{"Bonus":0,"Continent":"K35","ID":12596,"Name":"D019","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12596","ServerKey":"pl181","X":504,"Y":387},{"Bonus":0,"Continent":"K44","ID":12597,"Name":"Gravity","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12597","ServerKey":"pl181","X":401,"Y":446},{"Bonus":0,"Continent":"K64","ID":12598,"Name":"#019","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12598","ServerKey":"pl181","X":474,"Y":611},{"Bonus":0,"Continent":"K64","ID":12599,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12599","ServerKey":"pl181","X":463,"Y":608},{"Bonus":0,"Continent":"K56","ID":12600,"Name":"Wioska barbarzyƄska","PlayerID":3364735,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12600","ServerKey":"pl181","X":604,"Y":540},{"Bonus":0,"Continent":"K44","ID":12601,"Name":"010 Detroit","PlayerID":9291984,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12601","ServerKey":"pl181","X":425,"Y":418},{"Bonus":0,"Continent":"K65","ID":12602,"Name":"#031","PlayerID":849001572,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12602","ServerKey":"pl181","X":521,"Y":604},{"Bonus":0,"Continent":"K34","ID":12603,"Name":"[0005]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12603","ServerKey":"pl181","X":454,"Y":399},{"Bonus":0,"Continent":"K35","ID":12604,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12604","ServerKey":"pl181","X":522,"Y":391},{"Bonus":0,"Continent":"K55","ID":12605,"Name":"Jeremy","PlayerID":848926293,"Points":8560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12605","ServerKey":"pl181","X":599,"Y":550},{"Bonus":0,"Continent":"K44","ID":12606,"Name":"0022 przemas1994","PlayerID":3909522,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12606","ServerKey":"pl181","X":428,"Y":411},{"Bonus":0,"Continent":"K44","ID":12607,"Name":"Gravity","PlayerID":698962117,"Points":9509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12607","ServerKey":"pl181","X":406,"Y":444},{"Bonus":0,"Continent":"K54","ID":12608,"Name":"044 - A02***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12608","ServerKey":"pl181","X":433,"Y":588},{"Bonus":0,"Continent":"K44","ID":12609,"Name":"0022","PlayerID":3909522,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12609","ServerKey":"pl181","X":429,"Y":411},{"Bonus":9,"Continent":"K45","ID":12610,"Name":"[235] WEST","PlayerID":848985692,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12610","ServerKey":"pl181","X":599,"Y":449},{"Bonus":0,"Continent":"K44","ID":12611,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12611","ServerKey":"pl181","X":419,"Y":421},{"Bonus":0,"Continent":"K35","ID":12612,"Name":"004","PlayerID":1424656,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12612","ServerKey":"pl181","X":545,"Y":395},{"Bonus":0,"Continent":"K43","ID":12613,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12613","ServerKey":"pl181","X":378,"Y":459},{"Bonus":0,"Continent":"K35","ID":12614,"Name":"A005","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12614","ServerKey":"pl181","X":516,"Y":387},{"Bonus":0,"Continent":"K44","ID":12616,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12616","ServerKey":"pl181","X":438,"Y":404},{"Bonus":5,"Continent":"K46","ID":12617,"Name":"L 1","PlayerID":849027653,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12617","ServerKey":"pl181","X":612,"Y":476},{"Bonus":0,"Continent":"K65","ID":12618,"Name":"011","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12618","ServerKey":"pl181","X":546,"Y":602},{"Bonus":0,"Continent":"K43","ID":12619,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12619","ServerKey":"pl181","X":395,"Y":454},{"Bonus":0,"Continent":"K64","ID":12621,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12621","ServerKey":"pl181","X":458,"Y":603},{"Bonus":0,"Continent":"K46","ID":12622,"Name":"017 Okinawa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12622","ServerKey":"pl181","X":614,"Y":495},{"Bonus":0,"Continent":"K43","ID":12623,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12623","ServerKey":"pl181","X":391,"Y":480},{"Bonus":0,"Continent":"K35","ID":12624,"Name":"036","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12624","ServerKey":"pl181","X":545,"Y":397},{"Bonus":8,"Continent":"K54","ID":12625,"Name":"Ww 005","PlayerID":849084740,"Points":10190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12625","ServerKey":"pl181","X":443,"Y":599},{"Bonus":0,"Continent":"K64","ID":12626,"Name":"0323","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12626","ServerKey":"pl181","X":446,"Y":601},{"Bonus":0,"Continent":"K44","ID":12627,"Name":"Gravity","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12627","ServerKey":"pl181","X":405,"Y":442},{"Bonus":0,"Continent":"K55","ID":12628,"Name":"003 | Lord Axen - Rumbling,","PlayerID":8000875,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12628","ServerKey":"pl181","X":562,"Y":552},{"Bonus":0,"Continent":"K43","ID":12629,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12629","ServerKey":"pl181","X":395,"Y":460},{"Bonus":8,"Continent":"K43","ID":12630,"Name":"[A]_[003] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12630","ServerKey":"pl181","X":392,"Y":478},{"Bonus":0,"Continent":"K34","ID":12631,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12631","ServerKey":"pl181","X":439,"Y":388},{"Bonus":0,"Continent":"K53","ID":12632,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12632","ServerKey":"pl181","X":389,"Y":503},{"Bonus":0,"Continent":"K35","ID":12633,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12633","ServerKey":"pl181","X":519,"Y":387},{"Bonus":0,"Continent":"K44","ID":12634,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12634","ServerKey":"pl181","X":410,"Y":435},{"Bonus":0,"Continent":"K56","ID":12635,"Name":"WaƂ się","PlayerID":6837266,"Points":4996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12635","ServerKey":"pl181","X":612,"Y":511},{"Bonus":0,"Continent":"K55","ID":12636,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12636","ServerKey":"pl181","X":572,"Y":585},{"Bonus":0,"Continent":"K45","ID":12637,"Name":"015 Bez strachu","PlayerID":698829590,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12637","ServerKey":"pl181","X":598,"Y":448},{"Bonus":0,"Continent":"K34","ID":12638,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12638","ServerKey":"pl181","X":467,"Y":390},{"Bonus":0,"Continent":"K53","ID":12639,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12639","ServerKey":"pl181","X":388,"Y":501},{"Bonus":0,"Continent":"K54","ID":12640,"Name":"B.005","PlayerID":849088243,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12640","ServerKey":"pl181","X":413,"Y":568},{"Bonus":0,"Continent":"K35","ID":12641,"Name":"Wioska DETONATOR2010","PlayerID":3024357,"Points":5045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12641","ServerKey":"pl181","X":506,"Y":389},{"Bonus":0,"Continent":"K53","ID":12642,"Name":"SZYMI PALACE 14","PlayerID":9167250,"Points":5950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12642","ServerKey":"pl181","X":392,"Y":538},{"Bonus":0,"Continent":"K56","ID":12643,"Name":"*004*","PlayerID":698670524,"Points":8600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12643","ServerKey":"pl181","X":609,"Y":514},{"Bonus":0,"Continent":"K53","ID":12644,"Name":"093 JESTEƚ SOBĄ LUB KOGOƚ GRASZ","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12644","ServerKey":"pl181","X":399,"Y":553},{"Bonus":0,"Continent":"K44","ID":12645,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12645","ServerKey":"pl181","X":402,"Y":447},{"Bonus":0,"Continent":"K55","ID":12646,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12646","ServerKey":"pl181","X":578,"Y":583},{"Bonus":0,"Continent":"K34","ID":12647,"Name":"0032","PlayerID":699431255,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12647","ServerKey":"pl181","X":462,"Y":393},{"Bonus":0,"Continent":"K64","ID":12648,"Name":"0347","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12648","ServerKey":"pl181","X":446,"Y":610},{"Bonus":0,"Continent":"K46","ID":12649,"Name":"061","PlayerID":699573053,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12649","ServerKey":"pl181","X":613,"Y":494},{"Bonus":0,"Continent":"K45","ID":12650,"Name":"ADEN","PlayerID":698588535,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12650","ServerKey":"pl181","X":578,"Y":419},{"Bonus":0,"Continent":"K35","ID":12651,"Name":"A007","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12651","ServerKey":"pl181","X":513,"Y":387},{"Bonus":0,"Continent":"K45","ID":12652,"Name":"Najlepszy sąsiad 014","PlayerID":699756210,"Points":8688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12652","ServerKey":"pl181","X":596,"Y":445},{"Bonus":0,"Continent":"K65","ID":12653,"Name":"018","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12653","ServerKey":"pl181","X":540,"Y":606},{"Bonus":0,"Continent":"K53","ID":12654,"Name":"NWO","PlayerID":849030226,"Points":12133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12654","ServerKey":"pl181","X":392,"Y":523},{"Bonus":0,"Continent":"K34","ID":12655,"Name":"PodziękowaƂ 2","PlayerID":699796330,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12655","ServerKey":"pl181","X":455,"Y":395},{"Bonus":0,"Continent":"K43","ID":12656,"Name":"s181eo18","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12656","ServerKey":"pl181","X":399,"Y":455},{"Bonus":0,"Continent":"K45","ID":12657,"Name":"[305] Chorągiewka na wietrze","PlayerID":848985692,"Points":10600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12657","ServerKey":"pl181","X":592,"Y":431},{"Bonus":0,"Continent":"K35","ID":12658,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12658","ServerKey":"pl181","X":518,"Y":387},{"Bonus":0,"Continent":"K53","ID":12659,"Name":"SZYMI PALACE 15","PlayerID":9167250,"Points":6890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12659","ServerKey":"pl181","X":393,"Y":537},{"Bonus":0,"Continent":"K64","ID":12660,"Name":"0008","PlayerID":33900,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12660","ServerKey":"pl181","X":464,"Y":608},{"Bonus":0,"Continent":"K54","ID":12661,"Name":"005","PlayerID":849084740,"Points":8327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12661","ServerKey":"pl181","X":426,"Y":580},{"Bonus":0,"Continent":"K54","ID":12662,"Name":"Z barba 017","PlayerID":225023,"Points":7655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12662","ServerKey":"pl181","X":410,"Y":569},{"Bonus":0,"Continent":"K44","ID":12663,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12663","ServerKey":"pl181","X":417,"Y":421},{"Bonus":8,"Continent":"K46","ID":12664,"Name":"004","PlayerID":8459255,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12664","ServerKey":"pl181","X":610,"Y":469},{"Bonus":0,"Continent":"K54","ID":12665,"Name":"Wioska lordtados","PlayerID":698526036,"Points":6647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12665","ServerKey":"pl181","X":416,"Y":573},{"Bonus":0,"Continent":"K45","ID":12666,"Name":"016","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12666","ServerKey":"pl181","X":574,"Y":406},{"Bonus":0,"Continent":"K54","ID":12667,"Name":"129 B01","PlayerID":699382126,"Points":6865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12667","ServerKey":"pl181","X":402,"Y":557},{"Bonus":0,"Continent":"K34","ID":12668,"Name":"002","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12668","ServerKey":"pl181","X":435,"Y":392},{"Bonus":0,"Continent":"K44","ID":12669,"Name":"0030 wolawce","PlayerID":3909522,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12669","ServerKey":"pl181","X":430,"Y":415},{"Bonus":0,"Continent":"K34","ID":12670,"Name":"004","PlayerID":8740199,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12670","ServerKey":"pl181","X":432,"Y":395},{"Bonus":0,"Continent":"K46","ID":12671,"Name":"[238] WEST","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12671","ServerKey":"pl181","X":601,"Y":452},{"Bonus":4,"Continent":"K44","ID":12672,"Name":"Gravity","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12672","ServerKey":"pl181","X":401,"Y":444},{"Bonus":0,"Continent":"K34","ID":12673,"Name":".003.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12673","ServerKey":"pl181","X":495,"Y":380},{"Bonus":0,"Continent":"K56","ID":12674,"Name":"W.181/04","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12674","ServerKey":"pl181","X":607,"Y":535},{"Bonus":0,"Continent":"K46","ID":12675,"Name":"013","PlayerID":8459255,"Points":9910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12675","ServerKey":"pl181","X":609,"Y":468},{"Bonus":0,"Continent":"K55","ID":12676,"Name":"PYRLANDIA 031 RYCERZ MAƁY","PlayerID":33900,"Points":10153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12676","ServerKey":"pl181","X":562,"Y":592},{"Bonus":0,"Continent":"K35","ID":12677,"Name":"A008","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12677","ServerKey":"pl181","X":512,"Y":387},{"Bonus":4,"Continent":"K56","ID":12678,"Name":"009 ludki","PlayerID":8323711,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12678","ServerKey":"pl181","X":610,"Y":517},{"Bonus":0,"Continent":"K45","ID":12679,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12679","ServerKey":"pl181","X":573,"Y":414},{"Bonus":0,"Continent":"K44","ID":12680,"Name":"0009","PlayerID":3909522,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12680","ServerKey":"pl181","X":430,"Y":410},{"Bonus":0,"Continent":"K44","ID":12681,"Name":"K44 x023","PlayerID":698364331,"Points":7641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12681","ServerKey":"pl181","X":437,"Y":408},{"Bonus":0,"Continent":"K54","ID":12682,"Name":"001","PlayerID":9167250,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12682","ServerKey":"pl181","X":414,"Y":574},{"Bonus":0,"Continent":"K65","ID":12683,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12683","ServerKey":"pl181","X":509,"Y":625},{"Bonus":0,"Continent":"K53","ID":12685,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12685","ServerKey":"pl181","X":389,"Y":511},{"Bonus":0,"Continent":"K65","ID":12686,"Name":"Wioska Bartiii95","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12686","ServerKey":"pl181","X":506,"Y":615},{"Bonus":0,"Continent":"K34","ID":12687,"Name":".013.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12687","ServerKey":"pl181","X":496,"Y":385},{"Bonus":0,"Continent":"K35","ID":12688,"Name":"027","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12688","ServerKey":"pl181","X":546,"Y":395},{"Bonus":0,"Continent":"K56","ID":12689,"Name":"A.004","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12689","ServerKey":"pl181","X":600,"Y":550},{"Bonus":0,"Continent":"K44","ID":12690,"Name":"K44 x006","PlayerID":698364331,"Points":8561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12690","ServerKey":"pl181","X":440,"Y":404},{"Bonus":3,"Continent":"K45","ID":12691,"Name":"Najlepszy sąsiad 001","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12691","ServerKey":"pl181","X":596,"Y":442},{"Bonus":0,"Continent":"K35","ID":12692,"Name":"056","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12692","ServerKey":"pl181","X":545,"Y":398},{"Bonus":0,"Continent":"K46","ID":12693,"Name":"035 Witam ponownie","PlayerID":698829590,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12693","ServerKey":"pl181","X":605,"Y":454},{"Bonus":1,"Continent":"K53","ID":12694,"Name":"Osada koczownikĂłw","PlayerID":849030226,"Points":11116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12694","ServerKey":"pl181","X":396,"Y":535},{"Bonus":0,"Continent":"K55","ID":12695,"Name":"Valhalla Calling","PlayerID":848926293,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12695","ServerKey":"pl181","X":598,"Y":558},{"Bonus":0,"Continent":"K44","ID":12696,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12696","ServerKey":"pl181","X":411,"Y":427},{"Bonus":0,"Continent":"K64","ID":12697,"Name":"#050","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12697","ServerKey":"pl181","X":448,"Y":602},{"Bonus":0,"Continent":"K45","ID":12698,"Name":"[349] Chorągiewka na wietrze","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12698","ServerKey":"pl181","X":583,"Y":424},{"Bonus":0,"Continent":"K54","ID":12699,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12699","ServerKey":"pl181","X":467,"Y":565},{"Bonus":0,"Continent":"K54","ID":12700,"Name":"Ddddd","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12700","ServerKey":"pl181","X":419,"Y":579},{"Bonus":4,"Continent":"K46","ID":12701,"Name":"012","PlayerID":849088515,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12701","ServerKey":"pl181","X":609,"Y":465},{"Bonus":0,"Continent":"K45","ID":12702,"Name":"01 im Trockiego","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12702","ServerKey":"pl181","X":593,"Y":429},{"Bonus":0,"Continent":"K55","ID":12703,"Name":"z 014","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12703","ServerKey":"pl181","X":558,"Y":598},{"Bonus":0,"Continent":"K53","ID":12705,"Name":"Sir Hood 7","PlayerID":1804724,"Points":6846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12705","ServerKey":"pl181","X":389,"Y":528},{"Bonus":0,"Continent":"K45","ID":12706,"Name":"ADEN","PlayerID":698588535,"Points":7947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12706","ServerKey":"pl181","X":571,"Y":411},{"Bonus":9,"Continent":"K55","ID":12707,"Name":"*5501* Everton","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12707","ServerKey":"pl181","X":590,"Y":563},{"Bonus":0,"Continent":"K53","ID":12708,"Name":"Wioska","PlayerID":849084005,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12708","ServerKey":"pl181","X":391,"Y":536},{"Bonus":0,"Continent":"K45","ID":12709,"Name":"036 Kabel VGA","PlayerID":698829590,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12709","ServerKey":"pl181","X":597,"Y":446},{"Bonus":0,"Continent":"K55","ID":12711,"Name":"181-004","PlayerID":8876551,"Points":3445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12711","ServerKey":"pl181","X":585,"Y":575},{"Bonus":0,"Continent":"K43","ID":12712,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12712","ServerKey":"pl181","X":388,"Y":475},{"Bonus":0,"Continent":"K45","ID":12713,"Name":"[304] Chorągiewka na wietrze nr2","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12713","ServerKey":"pl181","X":592,"Y":432},{"Bonus":0,"Continent":"K64","ID":12714,"Name":"Coruscant 8","PlayerID":699383121,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12714","ServerKey":"pl181","X":495,"Y":611},{"Bonus":0,"Continent":"K43","ID":12715,"Name":"Brat447","PlayerID":699262350,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12715","ServerKey":"pl181","X":386,"Y":499},{"Bonus":0,"Continent":"K45","ID":12716,"Name":"005","PlayerID":849063849,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12716","ServerKey":"pl181","X":563,"Y":408},{"Bonus":0,"Continent":"K45","ID":12717,"Name":"[313] Chorągiewka na wietrze -","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12717","ServerKey":"pl181","X":597,"Y":438},{"Bonus":0,"Continent":"K56","ID":12718,"Name":"0079","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12718","ServerKey":"pl181","X":600,"Y":517},{"Bonus":0,"Continent":"K54","ID":12719,"Name":"012. Gloria Victis","PlayerID":848886973,"Points":10449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12719","ServerKey":"pl181","X":423,"Y":586},{"Bonus":0,"Continent":"K64","ID":12720,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12720","ServerKey":"pl181","X":465,"Y":608},{"Bonus":0,"Continent":"K54","ID":12721,"Name":"NOT?","PlayerID":9236866,"Points":5130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12721","ServerKey":"pl181","X":403,"Y":552},{"Bonus":0,"Continent":"K44","ID":12722,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12722","ServerKey":"pl181","X":435,"Y":408},{"Bonus":0,"Continent":"K53","ID":12723,"Name":"Sir Hood 4","PlayerID":1804724,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12723","ServerKey":"pl181","X":388,"Y":529},{"Bonus":0,"Continent":"K55","ID":12724,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12724","ServerKey":"pl181","X":575,"Y":585},{"Bonus":9,"Continent":"K43","ID":12725,"Name":"!Land of Fire","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12725","ServerKey":"pl181","X":399,"Y":445},{"Bonus":0,"Continent":"K55","ID":12727,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12727","ServerKey":"pl181","X":567,"Y":589},{"Bonus":0,"Continent":"K65","ID":12728,"Name":"CALL 924","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12728","ServerKey":"pl181","X":554,"Y":602},{"Bonus":0,"Continent":"K55","ID":12729,"Name":"PYRLANDIA 005 s + 8K","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12729","ServerKey":"pl181","X":568,"Y":591},{"Bonus":0,"Continent":"K56","ID":12730,"Name":"026 Wioska","PlayerID":8323711,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12730","ServerKey":"pl181","X":611,"Y":521},{"Bonus":0,"Continent":"K45","ID":12731,"Name":"152","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12731","ServerKey":"pl181","X":581,"Y":418},{"Bonus":0,"Continent":"K54","ID":12732,"Name":"Suppi","PlayerID":699856962,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12732","ServerKey":"pl181","X":418,"Y":541},{"Bonus":0,"Continent":"K46","ID":12733,"Name":"[225] WEST","PlayerID":848985692,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12733","ServerKey":"pl181","X":603,"Y":450},{"Bonus":0,"Continent":"K35","ID":12734,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12734","ServerKey":"pl181","X":528,"Y":392},{"Bonus":0,"Continent":"K65","ID":12735,"Name":"021","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12735","ServerKey":"pl181","X":538,"Y":606},{"Bonus":0,"Continent":"K53","ID":12736,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12736","ServerKey":"pl181","X":385,"Y":508},{"Bonus":0,"Continent":"K55","ID":12737,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12737","ServerKey":"pl181","X":575,"Y":583},{"Bonus":0,"Continent":"K46","ID":12738,"Name":"Najlepszy sąsiad 011","PlayerID":699756210,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12738","ServerKey":"pl181","X":600,"Y":445},{"Bonus":0,"Continent":"K54","ID":12739,"Name":"Wioska Nevada (Nevada)","PlayerID":698769107,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12739","ServerKey":"pl181","X":415,"Y":571},{"Bonus":0,"Continent":"K55","ID":12740,"Name":"z 027","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12740","ServerKey":"pl181","X":561,"Y":596},{"Bonus":0,"Continent":"K35","ID":12741,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12741","ServerKey":"pl181","X":525,"Y":389},{"Bonus":0,"Continent":"K45","ID":12742,"Name":"DOM 8","PlayerID":849064614,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12742","ServerKey":"pl181","X":565,"Y":408},{"Bonus":0,"Continent":"K53","ID":12743,"Name":"Mięguszowiecki Szczyt Czarny","PlayerID":849013126,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12743","ServerKey":"pl181","X":386,"Y":510},{"Bonus":0,"Continent":"K53","ID":12744,"Name":"Wioska","PlayerID":849084005,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12744","ServerKey":"pl181","X":390,"Y":535},{"Bonus":1,"Continent":"K56","ID":12745,"Name":"019 MoonsteRR","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12745","ServerKey":"pl181","X":611,"Y":511},{"Bonus":0,"Continent":"K65","ID":12746,"Name":"007","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12746","ServerKey":"pl181","X":544,"Y":604},{"Bonus":0,"Continent":"K54","ID":12747,"Name":"B.003","PlayerID":849088243,"Points":9323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12747","ServerKey":"pl181","X":410,"Y":566},{"Bonus":0,"Continent":"K65","ID":12748,"Name":"CALL 1008","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12748","ServerKey":"pl181","X":526,"Y":611},{"Bonus":0,"Continent":"K64","ID":12749,"Name":"Ground Level","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12749","ServerKey":"pl181","X":479,"Y":612},{"Bonus":0,"Continent":"K64","ID":12750,"Name":"EKG .::. Limak x Orlok","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12750","ServerKey":"pl181","X":492,"Y":611},{"Bonus":0,"Continent":"K65","ID":12751,"Name":"Maintenance Hall","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12751","ServerKey":"pl181","X":526,"Y":608},{"Bonus":0,"Continent":"K44","ID":12752,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12752","ServerKey":"pl181","X":414,"Y":426},{"Bonus":0,"Continent":"K64","ID":12753,"Name":"0002","PlayerID":33900,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12753","ServerKey":"pl181","X":467,"Y":607},{"Bonus":0,"Continent":"K44","ID":12754,"Name":"Gravity","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12754","ServerKey":"pl181","X":400,"Y":446},{"Bonus":0,"Continent":"K55","ID":12755,"Name":"PYRLANDIA 010 S + 8K","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12755","ServerKey":"pl181","X":571,"Y":589},{"Bonus":0,"Continent":"K54","ID":12756,"Name":"125 B13","PlayerID":699382126,"Points":9376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12756","ServerKey":"pl181","X":400,"Y":554},{"Bonus":0,"Continent":"K34","ID":12757,"Name":"0096","PlayerID":699431255,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12757","ServerKey":"pl181","X":457,"Y":398},{"Bonus":0,"Continent":"K34","ID":12758,"Name":"lo1","PlayerID":849093155,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12758","ServerKey":"pl181","X":478,"Y":391},{"Bonus":0,"Continent":"K46","ID":12759,"Name":"020","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12759","ServerKey":"pl181","X":611,"Y":480},{"Bonus":0,"Continent":"K44","ID":12760,"Name":"0017 I","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12760","ServerKey":"pl181","X":435,"Y":409},{"Bonus":0,"Continent":"K34","ID":12761,"Name":"048","PlayerID":698739350,"Points":7381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12761","ServerKey":"pl181","X":485,"Y":386},{"Bonus":0,"Continent":"K53","ID":12762,"Name":"Sir Hood 2","PlayerID":1804724,"Points":10332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12762","ServerKey":"pl181","X":392,"Y":531},{"Bonus":0,"Continent":"K35","ID":12763,"Name":"057","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12763","ServerKey":"pl181","X":555,"Y":399},{"Bonus":0,"Continent":"K44","ID":12764,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12764","ServerKey":"pl181","X":415,"Y":427},{"Bonus":0,"Continent":"K64","ID":12765,"Name":"Prairie Outpost","PlayerID":8199417,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12765","ServerKey":"pl181","X":469,"Y":606},{"Bonus":0,"Continent":"K56","ID":12766,"Name":"008","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12766","ServerKey":"pl181","X":607,"Y":526},{"Bonus":0,"Continent":"K53","ID":12767,"Name":"Sir Hood 6","PlayerID":1804724,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12767","ServerKey":"pl181","X":392,"Y":529},{"Bonus":9,"Continent":"K43","ID":12768,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12768","ServerKey":"pl181","X":397,"Y":454},{"Bonus":0,"Continent":"K65","ID":12769,"Name":"Holistic Town","PlayerID":699698253,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12769","ServerKey":"pl181","X":504,"Y":615},{"Bonus":0,"Continent":"K56","ID":12770,"Name":"Sust4noL","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12770","ServerKey":"pl181","X":613,"Y":503},{"Bonus":0,"Continent":"K55","ID":12771,"Name":"Civil War","PlayerID":848926293,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12771","ServerKey":"pl181","X":589,"Y":570},{"Bonus":0,"Continent":"K54","ID":12772,"Name":"042 - A04","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12772","ServerKey":"pl181","X":430,"Y":587},{"Bonus":0,"Continent":"K45","ID":12773,"Name":"051.","PlayerID":849094609,"Points":4824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12773","ServerKey":"pl181","X":593,"Y":441},{"Bonus":0,"Continent":"K44","ID":12774,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12774","ServerKey":"pl181","X":440,"Y":402},{"Bonus":5,"Continent":"K53","ID":12775,"Name":"Ok.","PlayerID":849030226,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12775","ServerKey":"pl181","X":387,"Y":524},{"Bonus":0,"Continent":"K45","ID":12776,"Name":"** 1 Czujesz ten dreszczyk ?","PlayerID":848985692,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12776","ServerKey":"pl181","X":590,"Y":432},{"Bonus":0,"Continent":"K56","ID":12777,"Name":"007","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12777","ServerKey":"pl181","X":605,"Y":538},{"Bonus":0,"Continent":"K55","ID":12778,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12778","ServerKey":"pl181","X":583,"Y":578},{"Bonus":0,"Continent":"K56","ID":12779,"Name":"sƂodziuteƄka 04","PlayerID":8013349,"Points":4340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12779","ServerKey":"pl181","X":605,"Y":535},{"Bonus":5,"Continent":"K44","ID":12780,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12780","ServerKey":"pl181","X":420,"Y":422},{"Bonus":0,"Continent":"K34","ID":12781,"Name":"0087","PlayerID":699431255,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12781","ServerKey":"pl181","X":459,"Y":396},{"Bonus":0,"Continent":"K53","ID":12782,"Name":"San Jose","PlayerID":699425709,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12782","ServerKey":"pl181","X":398,"Y":549},{"Bonus":0,"Continent":"K43","ID":12783,"Name":"Jezu co za szpetny ryj mosz","PlayerID":699711723,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12783","ServerKey":"pl181","X":399,"Y":449},{"Bonus":0,"Continent":"K35","ID":12784,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12784","ServerKey":"pl181","X":526,"Y":390},{"Bonus":0,"Continent":"K55","ID":12785,"Name":"PYRLANDIA 011 S + C","PlayerID":33900,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12785","ServerKey":"pl181","X":573,"Y":590},{"Bonus":0,"Continent":"K46","ID":12786,"Name":"018","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12786","ServerKey":"pl181","X":606,"Y":470},{"Bonus":0,"Continent":"K54","ID":12787,"Name":"C.006","PlayerID":849088243,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12787","ServerKey":"pl181","X":428,"Y":588},{"Bonus":0,"Continent":"K46","ID":12788,"Name":"[242] WEST","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12788","ServerKey":"pl181","X":602,"Y":456},{"Bonus":0,"Continent":"K45","ID":12789,"Name":"103","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12789","ServerKey":"pl181","X":579,"Y":418},{"Bonus":0,"Continent":"K45","ID":12790,"Name":"017","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12790","ServerKey":"pl181","X":569,"Y":410},{"Bonus":0,"Continent":"K56","ID":12791,"Name":"W.181/05","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12791","ServerKey":"pl181","X":607,"Y":537},{"Bonus":0,"Continent":"K35","ID":12792,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12792","ServerKey":"pl181","X":536,"Y":390},{"Bonus":0,"Continent":"K54","ID":12793,"Name":"049. ALFI","PlayerID":8539216,"Points":1300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12793","ServerKey":"pl181","X":473,"Y":564},{"Bonus":0,"Continent":"K46","ID":12794,"Name":"032.","PlayerID":8900955,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12794","ServerKey":"pl181","X":610,"Y":470},{"Bonus":0,"Continent":"K44","ID":12795,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12795","ServerKey":"pl181","X":416,"Y":427},{"Bonus":0,"Continent":"K64","ID":12796,"Name":"Urojone Elizjum","PlayerID":7249451,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12796","ServerKey":"pl181","X":456,"Y":605},{"Bonus":0,"Continent":"K44","ID":12797,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12797","ServerKey":"pl181","X":438,"Y":405},{"Bonus":5,"Continent":"K43","ID":12798,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12798","ServerKey":"pl181","X":388,"Y":483},{"Bonus":0,"Continent":"K65","ID":12800,"Name":"Teby_10","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12800","ServerKey":"pl181","X":502,"Y":615},{"Bonus":0,"Continent":"K43","ID":12801,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12801","ServerKey":"pl181","X":385,"Y":487},{"Bonus":0,"Continent":"K46","ID":12802,"Name":"013 Albo pijesz lufe","PlayerID":699272633,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12802","ServerKey":"pl181","X":620,"Y":466},{"Bonus":0,"Continent":"K34","ID":12803,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12803","ServerKey":"pl181","X":468,"Y":394},{"Bonus":1,"Continent":"K55","ID":12804,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12804","ServerKey":"pl181","X":575,"Y":586},{"Bonus":0,"Continent":"K34","ID":12805,"Name":".045.","PlayerID":698489071,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12805","ServerKey":"pl181","X":472,"Y":390},{"Bonus":0,"Continent":"K45","ID":12806,"Name":"[302] Chorągiewka na wietrze","PlayerID":848985692,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12806","ServerKey":"pl181","X":592,"Y":433},{"Bonus":3,"Continent":"K53","ID":12807,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12807","ServerKey":"pl181","X":385,"Y":504},{"Bonus":0,"Continent":"K54","ID":12808,"Name":"133 S015","PlayerID":699382126,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12808","ServerKey":"pl181","X":402,"Y":560},{"Bonus":0,"Continent":"K45","ID":12809,"Name":"[365] Chorągiewka na wietrze +2","PlayerID":848985692,"Points":10293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12809","ServerKey":"pl181","X":594,"Y":438},{"Bonus":0,"Continent":"K53","ID":12810,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12810","ServerKey":"pl181","X":379,"Y":514},{"Bonus":0,"Continent":"K54","ID":12811,"Name":"Bbbbb","PlayerID":225023,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12811","ServerKey":"pl181","X":419,"Y":580},{"Bonus":0,"Continent":"K34","ID":12812,"Name":"Guardian","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12812","ServerKey":"pl181","X":499,"Y":388},{"Bonus":0,"Continent":"K46","ID":12813,"Name":"006","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12813","ServerKey":"pl181","X":606,"Y":459},{"Bonus":0,"Continent":"K44","ID":12814,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12814","ServerKey":"pl181","X":411,"Y":429},{"Bonus":0,"Continent":"K53","ID":12815,"Name":"Sir Hood 8","PlayerID":1804724,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12815","ServerKey":"pl181","X":389,"Y":529},{"Bonus":0,"Continent":"K64","ID":12816,"Name":"EKG","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12816","ServerKey":"pl181","X":497,"Y":613},{"Bonus":0,"Continent":"K35","ID":12817,"Name":"058","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12817","ServerKey":"pl181","X":548,"Y":398},{"Bonus":0,"Continent":"K46","ID":12818,"Name":"Najlepszy sąsiad 008","PlayerID":699756210,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12818","ServerKey":"pl181","X":600,"Y":443},{"Bonus":0,"Continent":"K54","ID":12819,"Name":"038 - Barba","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12819","ServerKey":"pl181","X":423,"Y":582},{"Bonus":0,"Continent":"K35","ID":12820,"Name":"006 Denne FO 181","PlayerID":7758085,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12820","ServerKey":"pl181","X":505,"Y":389},{"Bonus":0,"Continent":"K34","ID":12821,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12821","ServerKey":"pl181","X":472,"Y":392},{"Bonus":0,"Continent":"K55","ID":12822,"Name":"181-002","PlayerID":8876551,"Points":3143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12822","ServerKey":"pl181","X":587,"Y":575},{"Bonus":0,"Continent":"K54","ID":12823,"Name":"009 - Mira","PlayerID":225023,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12823","ServerKey":"pl181","X":421,"Y":580},{"Bonus":0,"Continent":"K43","ID":12824,"Name":"s181eo12","PlayerID":393668,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12824","ServerKey":"pl181","X":399,"Y":453},{"Bonus":0,"Continent":"K35","ID":12825,"Name":".achim.","PlayerID":6936607,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12825","ServerKey":"pl181","X":536,"Y":394},{"Bonus":0,"Continent":"K55","ID":12826,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12826","ServerKey":"pl181","X":581,"Y":579},{"Bonus":0,"Continent":"K65","ID":12827,"Name":"012","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12827","ServerKey":"pl181","X":543,"Y":603},{"Bonus":0,"Continent":"K53","ID":12828,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12828","ServerKey":"pl181","X":389,"Y":526},{"Bonus":0,"Continent":"K44","ID":12829,"Name":"***008 Sacramento","PlayerID":9291984,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12829","ServerKey":"pl181","X":426,"Y":416},{"Bonus":0,"Continent":"K53","ID":12830,"Name":"NWO","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12830","ServerKey":"pl181","X":388,"Y":525},{"Bonus":0,"Continent":"K53","ID":12831,"Name":"ok.","PlayerID":849030226,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12831","ServerKey":"pl181","X":389,"Y":533},{"Bonus":0,"Continent":"K53","ID":12832,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12832","ServerKey":"pl181","X":373,"Y":514},{"Bonus":0,"Continent":"K34","ID":12833,"Name":"[0037]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12833","ServerKey":"pl181","X":452,"Y":398},{"Bonus":0,"Continent":"K34","ID":12835,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12835","ServerKey":"pl181","X":483,"Y":388},{"Bonus":0,"Continent":"K65","ID":12836,"Name":"Teby_06","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12836","ServerKey":"pl181","X":504,"Y":613},{"Bonus":0,"Continent":"K56","ID":12837,"Name":"035 Oƛka","PlayerID":8323711,"Points":8670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12837","ServerKey":"pl181","X":613,"Y":517},{"Bonus":0,"Continent":"K53","ID":12838,"Name":"NWO","PlayerID":849030226,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12838","ServerKey":"pl181","X":388,"Y":522},{"Bonus":0,"Continent":"K54","ID":12839,"Name":"C 003 Orzesze","PlayerID":849084740,"Points":7784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12839","ServerKey":"pl181","X":419,"Y":582},{"Bonus":0,"Continent":"K55","ID":12840,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12840","ServerKey":"pl181","X":582,"Y":573},{"Bonus":0,"Continent":"K46","ID":12841,"Name":"Jehu_Kingdom_16_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12841","ServerKey":"pl181","X":625,"Y":471},{"Bonus":0,"Continent":"K56","ID":12842,"Name":"*017*","PlayerID":698670524,"Points":8383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12842","ServerKey":"pl181","X":614,"Y":507},{"Bonus":0,"Continent":"K56","ID":12843,"Name":"010","PlayerID":6160655,"Points":10561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12843","ServerKey":"pl181","X":614,"Y":550},{"Bonus":0,"Continent":"K54","ID":12844,"Name":"121 B09","PlayerID":699382126,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12844","ServerKey":"pl181","X":402,"Y":556},{"Bonus":0,"Continent":"K64","ID":12845,"Name":"~024.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12845","ServerKey":"pl181","X":491,"Y":612},{"Bonus":0,"Continent":"K44","ID":12846,"Name":"00231 Wioska","PlayerID":3909522,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12846","ServerKey":"pl181","X":430,"Y":411},{"Bonus":0,"Continent":"K56","ID":12847,"Name":"EXA","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12847","ServerKey":"pl181","X":612,"Y":526},{"Bonus":0,"Continent":"K56","ID":12848,"Name":"03 Grzybek Muchomorek","PlayerID":8013349,"Points":10062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12848","ServerKey":"pl181","X":605,"Y":529},{"Bonus":0,"Continent":"K53","ID":12849,"Name":"# Szymi 7","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12849","ServerKey":"pl181","X":393,"Y":534},{"Bonus":0,"Continent":"K54","ID":12850,"Name":"002buaa","PlayerID":9167250,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12850","ServerKey":"pl181","X":408,"Y":565},{"Bonus":0,"Continent":"K54","ID":12851,"Name":"076 - Kopalnia tytanu","PlayerID":225023,"Points":8588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12851","ServerKey":"pl181","X":422,"Y":584},{"Bonus":0,"Continent":"K35","ID":12852,"Name":".achim.","PlayerID":6936607,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12852","ServerKey":"pl181","X":535,"Y":394},{"Bonus":0,"Continent":"K65","ID":12853,"Name":"00051","PlayerID":848915531,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12853","ServerKey":"pl181","X":533,"Y":608},{"Bonus":0,"Continent":"K34","ID":12854,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12854","ServerKey":"pl181","X":490,"Y":389},{"Bonus":0,"Continent":"K43","ID":12855,"Name":"A0033","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12855","ServerKey":"pl181","X":390,"Y":480},{"Bonus":0,"Continent":"K53","ID":12856,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12856","ServerKey":"pl181","X":389,"Y":504},{"Bonus":0,"Continent":"K46","ID":12857,"Name":"006. Ravenna","PlayerID":849091866,"Points":9228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12857","ServerKey":"pl181","X":608,"Y":461},{"Bonus":0,"Continent":"K55","ID":12858,"Name":"Jaaa","PlayerID":698635863,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12858","ServerKey":"pl181","X":586,"Y":577},{"Bonus":0,"Continent":"K34","ID":12859,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12859","ServerKey":"pl181","X":467,"Y":392},{"Bonus":0,"Continent":"K64","ID":12860,"Name":"Ww 006","PlayerID":849084740,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12860","ServerKey":"pl181","X":442,"Y":600},{"Bonus":0,"Continent":"K64","ID":12861,"Name":"0324","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12861","ServerKey":"pl181","X":447,"Y":600},{"Bonus":0,"Continent":"K44","ID":12862,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12862","ServerKey":"pl181","X":443,"Y":400},{"Bonus":0,"Continent":"K46","ID":12863,"Name":"018","PlayerID":849006412,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12863","ServerKey":"pl181","X":614,"Y":493},{"Bonus":0,"Continent":"K46","ID":12864,"Name":"07 Ground Zero","PlayerID":699377151,"Points":9061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12864","ServerKey":"pl181","X":616,"Y":493},{"Bonus":0,"Continent":"K64","ID":12865,"Name":"scoti","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12865","ServerKey":"pl181","X":486,"Y":613},{"Bonus":0,"Continent":"K54","ID":12866,"Name":"008 - Majne","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12866","ServerKey":"pl181","X":421,"Y":582},{"Bonus":0,"Continent":"K54","ID":12867,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12867","ServerKey":"pl181","X":401,"Y":548},{"Bonus":0,"Continent":"K54","ID":12868,"Name":"130 s001","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12868","ServerKey":"pl181","X":402,"Y":555},{"Bonus":0,"Continent":"K46","ID":12869,"Name":"023","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12869","ServerKey":"pl181","X":612,"Y":479},{"Bonus":0,"Continent":"K55","ID":12870,"Name":"z 016","PlayerID":699342219,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12870","ServerKey":"pl181","X":559,"Y":593},{"Bonus":0,"Continent":"K54","ID":12871,"Name":"0021","PlayerID":699280514,"Points":9942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12871","ServerKey":"pl181","X":446,"Y":599},{"Bonus":0,"Continent":"K43","ID":12872,"Name":"Knowhere","PlayerID":699723284,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12872","ServerKey":"pl181","X":389,"Y":497},{"Bonus":0,"Continent":"K55","ID":12873,"Name":"020.","PlayerID":873575,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12873","ServerKey":"pl181","X":565,"Y":593},{"Bonus":0,"Continent":"K34","ID":12874,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12874","ServerKey":"pl181","X":491,"Y":391},{"Bonus":0,"Continent":"K34","ID":12875,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12875","ServerKey":"pl181","X":485,"Y":394},{"Bonus":0,"Continent":"K56","ID":12876,"Name":"Wioska barbarzyƄska","PlayerID":3364735,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12876","ServerKey":"pl181","X":605,"Y":539},{"Bonus":0,"Continent":"K55","ID":12877,"Name":"Jigsaw","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12877","ServerKey":"pl181","X":567,"Y":590},{"Bonus":0,"Continent":"K46","ID":12878,"Name":"A 001","PlayerID":849027653,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12878","ServerKey":"pl181","X":611,"Y":476},{"Bonus":0,"Continent":"K34","ID":12879,"Name":"[0043]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12879","ServerKey":"pl181","X":457,"Y":395},{"Bonus":6,"Continent":"K56","ID":12880,"Name":"042 Vasperland","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12880","ServerKey":"pl181","X":615,"Y":509},{"Bonus":0,"Continent":"K34","ID":12881,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12881","ServerKey":"pl181","X":425,"Y":398},{"Bonus":0,"Continent":"K53","ID":12882,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12882","ServerKey":"pl181","X":391,"Y":537},{"Bonus":0,"Continent":"K34","ID":12884,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12884","ServerKey":"pl181","X":474,"Y":391},{"Bonus":0,"Continent":"K53","ID":12885,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12885","ServerKey":"pl181","X":393,"Y":529},{"Bonus":0,"Continent":"K35","ID":12886,"Name":"011","PlayerID":1424656,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12886","ServerKey":"pl181","X":546,"Y":394},{"Bonus":0,"Continent":"K65","ID":12887,"Name":"Atrium","PlayerID":8199417,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12887","ServerKey":"pl181","X":520,"Y":612},{"Bonus":0,"Continent":"K53","ID":12888,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12888","ServerKey":"pl181","X":388,"Y":514},{"Bonus":0,"Continent":"K64","ID":12889,"Name":"scoti","PlayerID":699494488,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12889","ServerKey":"pl181","X":489,"Y":616},{"Bonus":0,"Continent":"K54","ID":12890,"Name":"065 - Uxmal***","PlayerID":225023,"Points":7005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12890","ServerKey":"pl181","X":434,"Y":592},{"Bonus":8,"Continent":"K45","ID":12891,"Name":"[361] Chorągiewka na wietrze","PlayerID":848985692,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12891","ServerKey":"pl181","X":593,"Y":438},{"Bonus":0,"Continent":"K56","ID":12892,"Name":"*026*","PlayerID":698670524,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12892","ServerKey":"pl181","X":611,"Y":509},{"Bonus":0,"Continent":"K44","ID":12893,"Name":"00244 Wioska","PlayerID":3909522,"Points":10298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12893","ServerKey":"pl181","X":432,"Y":412},{"Bonus":0,"Continent":"K64","ID":12894,"Name":"011. Moria","PlayerID":699494488,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12894","ServerKey":"pl181","X":486,"Y":612},{"Bonus":0,"Continent":"K54","ID":12895,"Name":"24. Wioska 24","PlayerID":849091769,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12895","ServerKey":"pl181","X":425,"Y":585},{"Bonus":0,"Continent":"K35","ID":12896,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12896","ServerKey":"pl181","X":532,"Y":389},{"Bonus":0,"Continent":"K53","ID":12897,"Name":"Sir Hood 5","PlayerID":1804724,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12897","ServerKey":"pl181","X":388,"Y":530},{"Bonus":0,"Continent":"K45","ID":12898,"Name":"[309] Chorągiewka na wietrze","PlayerID":848985692,"Points":10525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12898","ServerKey":"pl181","X":589,"Y":431},{"Bonus":0,"Continent":"K44","ID":12899,"Name":"ZABAWA -1- Waldemar Wielki","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12899","ServerKey":"pl181","X":407,"Y":439},{"Bonus":0,"Continent":"K46","ID":12900,"Name":"019","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12900","ServerKey":"pl181","X":607,"Y":468},{"Bonus":0,"Continent":"K44","ID":12901,"Name":"A039","PlayerID":8740199,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12901","ServerKey":"pl181","X":444,"Y":405},{"Bonus":0,"Continent":"K46","ID":12902,"Name":"#015.483|497","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12902","ServerKey":"pl181","X":602,"Y":448},{"Bonus":0,"Continent":"K45","ID":12903,"Name":"30 im Ɓudriego","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12903","ServerKey":"pl181","X":588,"Y":431},{"Bonus":0,"Continent":"K43","ID":12904,"Name":"Wioska X3","PlayerID":699523631,"Points":7816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12904","ServerKey":"pl181","X":391,"Y":466},{"Bonus":0,"Continent":"K46","ID":12905,"Name":"004","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12905","ServerKey":"pl181","X":607,"Y":467},{"Bonus":0,"Continent":"K34","ID":12906,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12906","ServerKey":"pl181","X":466,"Y":390},{"Bonus":0,"Continent":"K45","ID":12907,"Name":"[400] Myszka pod miotƂą","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12907","ServerKey":"pl181","X":587,"Y":434},{"Bonus":0,"Continent":"K53","ID":12908,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12908","ServerKey":"pl181","X":395,"Y":546},{"Bonus":0,"Continent":"K54","ID":12909,"Name":"05 Przypadek","PlayerID":9167250,"Points":9219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12909","ServerKey":"pl181","X":407,"Y":566},{"Bonus":0,"Continent":"K64","ID":12910,"Name":"KIELBA 093","PlayerID":699342219,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12910","ServerKey":"pl181","X":443,"Y":600},{"Bonus":0,"Continent":"K65","ID":12911,"Name":"Combat Simulator Lounge","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12911","ServerKey":"pl181","X":525,"Y":610},{"Bonus":0,"Continent":"K55","ID":12912,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12912","ServerKey":"pl181","X":573,"Y":587},{"Bonus":0,"Continent":"K65","ID":12913,"Name":"019","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12913","ServerKey":"pl181","X":541,"Y":607},{"Bonus":0,"Continent":"K43","ID":12914,"Name":"A0007","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12914","ServerKey":"pl181","X":389,"Y":482},{"Bonus":0,"Continent":"K54","ID":12915,"Name":"0632","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12915","ServerKey":"pl181","X":446,"Y":591},{"Bonus":0,"Continent":"K46","ID":12916,"Name":"007. Arpinum","PlayerID":849091866,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12916","ServerKey":"pl181","X":609,"Y":461},{"Bonus":0,"Continent":"K54","ID":12917,"Name":"Wioska sbbb","PlayerID":9167250,"Points":7799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12917","ServerKey":"pl181","X":406,"Y":569},{"Bonus":0,"Continent":"K64","ID":12918,"Name":"#010 A","PlayerID":33900,"Points":8997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12918","ServerKey":"pl181","X":464,"Y":610},{"Bonus":0,"Continent":"K46","ID":12919,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12919","ServerKey":"pl181","X":608,"Y":465},{"Bonus":0,"Continent":"K45","ID":12920,"Name":"157","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12920","ServerKey":"pl181","X":581,"Y":420},{"Bonus":0,"Continent":"K53","ID":12921,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12921","ServerKey":"pl181","X":378,"Y":511},{"Bonus":0,"Continent":"K34","ID":12922,"Name":"wielki m","PlayerID":849093155,"Points":770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12922","ServerKey":"pl181","X":474,"Y":389},{"Bonus":0,"Continent":"K45","ID":12923,"Name":"014","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12923","ServerKey":"pl181","X":559,"Y":403},{"Bonus":0,"Continent":"K35","ID":12924,"Name":"A010","PlayerID":7758085,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12924","ServerKey":"pl181","X":512,"Y":386},{"Bonus":0,"Continent":"K35","ID":12925,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12925","ServerKey":"pl181","X":532,"Y":391},{"Bonus":0,"Continent":"K55","ID":12926,"Name":"Self Made","PlayerID":699785935,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12926","ServerKey":"pl181","X":577,"Y":589},{"Bonus":0,"Continent":"K43","ID":12927,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12927","ServerKey":"pl181","X":388,"Y":473},{"Bonus":0,"Continent":"K54","ID":12928,"Name":"128 B02","PlayerID":699382126,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12928","ServerKey":"pl181","X":400,"Y":553},{"Bonus":0,"Continent":"K43","ID":12929,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12929","ServerKey":"pl181","X":389,"Y":487},{"Bonus":0,"Continent":"K64","ID":12930,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12930","ServerKey":"pl181","X":464,"Y":605},{"Bonus":0,"Continent":"K65","ID":12931,"Name":"CALL 1007","PlayerID":699784536,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12931","ServerKey":"pl181","X":527,"Y":611},{"Bonus":0,"Continent":"K45","ID":12932,"Name":"153","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12932","ServerKey":"pl181","X":579,"Y":420},{"Bonus":0,"Continent":"K34","ID":12933,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12933","ServerKey":"pl181","X":473,"Y":391},{"Bonus":0,"Continent":"K35","ID":12934,"Name":"021","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12934","ServerKey":"pl181","X":555,"Y":398},{"Bonus":0,"Continent":"K44","ID":12935,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12935","ServerKey":"pl181","X":439,"Y":405},{"Bonus":0,"Continent":"K45","ID":12936,"Name":"South K45","PlayerID":699146580,"Points":6702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12936","ServerKey":"pl181","X":569,"Y":406},{"Bonus":0,"Continent":"K55","ID":12937,"Name":"z 021","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12937","ServerKey":"pl181","X":555,"Y":596},{"Bonus":0,"Continent":"K44","ID":12938,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12938","ServerKey":"pl181","X":402,"Y":438},{"Bonus":0,"Continent":"K46","ID":12939,"Name":"033","PlayerID":849006412,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12939","ServerKey":"pl181","X":614,"Y":499},{"Bonus":0,"Continent":"K44","ID":12941,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12941","ServerKey":"pl181","X":439,"Y":404},{"Bonus":0,"Continent":"K34","ID":12942,"Name":"K34 x003","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12942","ServerKey":"pl181","X":465,"Y":394},{"Bonus":0,"Continent":"K64","ID":12943,"Name":"NIERAJ005","PlayerID":33900,"Points":10555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12943","ServerKey":"pl181","X":471,"Y":610},{"Bonus":0,"Continent":"K45","ID":12944,"Name":"Najlepszy sąsiad 005","PlayerID":699756210,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12944","ServerKey":"pl181","X":598,"Y":442},{"Bonus":0,"Continent":"K44","ID":12945,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12945","ServerKey":"pl181","X":418,"Y":418},{"Bonus":0,"Continent":"K43","ID":12946,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12946","ServerKey":"pl181","X":391,"Y":459},{"Bonus":0,"Continent":"K43","ID":12947,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12947","ServerKey":"pl181","X":394,"Y":460},{"Bonus":0,"Continent":"K54","ID":12948,"Name":"nie badz smieszny :)","PlayerID":9167250,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12948","ServerKey":"pl181","X":406,"Y":559},{"Bonus":0,"Continent":"K65","ID":12949,"Name":"- 006 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12949","ServerKey":"pl181","X":552,"Y":604},{"Bonus":0,"Continent":"K53","ID":12950,"Name":"119 Wioska barbarzyƄska","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12950","ServerKey":"pl181","X":399,"Y":552},{"Bonus":0,"Continent":"K56","ID":12951,"Name":"EXA","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12951","ServerKey":"pl181","X":609,"Y":524},{"Bonus":0,"Continent":"K43","ID":12952,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12952","ServerKey":"pl181","X":389,"Y":467},{"Bonus":0,"Continent":"K45","ID":12953,"Name":"158","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12953","ServerKey":"pl181","X":577,"Y":418},{"Bonus":0,"Continent":"K44","ID":12954,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12954","ServerKey":"pl181","X":415,"Y":424},{"Bonus":0,"Continent":"K65","ID":12955,"Name":"ƚmieszki","PlayerID":3454753,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12955","ServerKey":"pl181","X":535,"Y":611},{"Bonus":0,"Continent":"K65","ID":12956,"Name":"CALL 913","PlayerID":699784536,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12956","ServerKey":"pl181","X":557,"Y":600},{"Bonus":0,"Continent":"K35","ID":12957,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12957","ServerKey":"pl181","X":531,"Y":390},{"Bonus":0,"Continent":"K46","ID":12958,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12958","ServerKey":"pl181","X":607,"Y":465},{"Bonus":0,"Continent":"K44","ID":12959,"Name":"x04","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12959","ServerKey":"pl181","X":408,"Y":437},{"Bonus":0,"Continent":"K65","ID":12960,"Name":"*312*","PlayerID":606407,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12960","ServerKey":"pl181","X":515,"Y":612},{"Bonus":0,"Continent":"K35","ID":12961,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12961","ServerKey":"pl181","X":529,"Y":388},{"Bonus":0,"Continent":"K56","ID":12962,"Name":"002 Hattusa","PlayerID":699272880,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12962","ServerKey":"pl181","X":601,"Y":557},{"Bonus":0,"Continent":"K56","ID":12963,"Name":"Taran 002","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12963","ServerKey":"pl181","X":617,"Y":526},{"Bonus":0,"Continent":"K64","ID":12964,"Name":"EKG M15","PlayerID":33900,"Points":8463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12964","ServerKey":"pl181","X":482,"Y":612},{"Bonus":0,"Continent":"K65","ID":12965,"Name":"Elbląg","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12965","ServerKey":"pl181","X":513,"Y":609},{"Bonus":0,"Continent":"K45","ID":12966,"Name":"118","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12966","ServerKey":"pl181","X":560,"Y":400},{"Bonus":6,"Continent":"K64","ID":12967,"Name":"0005","PlayerID":33900,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12967","ServerKey":"pl181","X":468,"Y":607},{"Bonus":0,"Continent":"K56","ID":12968,"Name":"0061","PlayerID":6510480,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12968","ServerKey":"pl181","X":611,"Y":508},{"Bonus":0,"Continent":"K35","ID":12969,"Name":"004 U-Boot","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12969","ServerKey":"pl181","X":503,"Y":387},{"Bonus":0,"Continent":"K53","ID":12970,"Name":"Ƃuno plus","PlayerID":1804724,"Points":10234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12970","ServerKey":"pl181","X":398,"Y":521},{"Bonus":0,"Continent":"K34","ID":12971,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12971","ServerKey":"pl181","X":476,"Y":390},{"Bonus":0,"Continent":"K54","ID":12972,"Name":"17. Wioska 17","PlayerID":849091769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12972","ServerKey":"pl181","X":413,"Y":569},{"Bonus":0,"Continent":"K45","ID":12973,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12973","ServerKey":"pl181","X":589,"Y":425},{"Bonus":0,"Continent":"K45","ID":12974,"Name":"ADEN","PlayerID":698588535,"Points":7950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12974","ServerKey":"pl181","X":572,"Y":412},{"Bonus":0,"Continent":"K45","ID":12975,"Name":"HOTEL 1 *","PlayerID":849064614,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12975","ServerKey":"pl181","X":576,"Y":414},{"Bonus":0,"Continent":"K65","ID":12976,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12976","ServerKey":"pl181","X":514,"Y":615},{"Bonus":0,"Continent":"K53","ID":12977,"Name":"bede bronil :)","PlayerID":9167250,"Points":4938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12977","ServerKey":"pl181","X":397,"Y":553},{"Bonus":0,"Continent":"K54","ID":12978,"Name":"A.016","PlayerID":849088243,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12978","ServerKey":"pl181","X":415,"Y":576},{"Bonus":4,"Continent":"K54","ID":12979,"Name":"C 009 Tychy","PlayerID":849084740,"Points":8915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12979","ServerKey":"pl181","X":417,"Y":580},{"Bonus":0,"Continent":"K44","ID":12980,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12980","ServerKey":"pl181","X":443,"Y":402},{"Bonus":0,"Continent":"K43","ID":12981,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12981","ServerKey":"pl181","X":395,"Y":455},{"Bonus":0,"Continent":"K53","ID":12983,"Name":"ok.","PlayerID":849030226,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12983","ServerKey":"pl181","X":389,"Y":534},{"Bonus":0,"Continent":"K46","ID":12984,"Name":"W=02.","PlayerID":7142659,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12984","ServerKey":"pl181","X":611,"Y":474},{"Bonus":0,"Continent":"K54","ID":12985,"Name":"C 017 Jaworzno","PlayerID":849084740,"Points":8356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12985","ServerKey":"pl181","X":416,"Y":579},{"Bonus":0,"Continent":"K65","ID":12986,"Name":"00061","PlayerID":848915531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12986","ServerKey":"pl181","X":535,"Y":606},{"Bonus":0,"Continent":"K54","ID":12987,"Name":"C.005","PlayerID":849088243,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12987","ServerKey":"pl181","X":429,"Y":588},{"Bonus":0,"Continent":"K54","ID":12988,"Name":"18. Wioska 18","PlayerID":849091769,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12988","ServerKey":"pl181","X":426,"Y":585},{"Bonus":0,"Continent":"K35","ID":12989,"Name":".achim.","PlayerID":6936607,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12989","ServerKey":"pl181","X":532,"Y":393},{"Bonus":0,"Continent":"K44","ID":12990,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12990","ServerKey":"pl181","X":421,"Y":420},{"Bonus":5,"Continent":"K35","ID":12991,"Name":"A004","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12991","ServerKey":"pl181","X":515,"Y":387},{"Bonus":0,"Continent":"K64","ID":12992,"Name":"#049","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12992","ServerKey":"pl181","X":448,"Y":603},{"Bonus":0,"Continent":"K54","ID":12993,"Name":"007. Gloria Victis","PlayerID":848886973,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12993","ServerKey":"pl181","X":424,"Y":588},{"Bonus":0,"Continent":"K46","ID":12994,"Name":"A04 Kross","PlayerID":699272880,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12994","ServerKey":"pl181","X":612,"Y":488},{"Bonus":0,"Continent":"K65","ID":12995,"Name":"014","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12995","ServerKey":"pl181","X":542,"Y":606},{"Bonus":0,"Continent":"K44","ID":12996,"Name":"NOT","PlayerID":9236866,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12996","ServerKey":"pl181","X":412,"Y":428},{"Bonus":0,"Continent":"K43","ID":12997,"Name":"Mniejsze zƂo 0074","PlayerID":699794765,"Points":11036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12997","ServerKey":"pl181","X":391,"Y":461},{"Bonus":0,"Continent":"K44","ID":12998,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12998","ServerKey":"pl181","X":411,"Y":428},{"Bonus":0,"Continent":"K56","ID":12999,"Name":"Mzm11","PlayerID":7142659,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=12999","ServerKey":"pl181","X":608,"Y":511},{"Bonus":0,"Continent":"K44","ID":13000,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13000","ServerKey":"pl181","X":400,"Y":450},{"Bonus":0,"Continent":"K55","ID":13001,"Name":"Soldier Side","PlayerID":848926293,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13001","ServerKey":"pl181","X":597,"Y":558},{"Bonus":0,"Continent":"K43","ID":13002,"Name":"A0027","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13002","ServerKey":"pl181","X":388,"Y":476},{"Bonus":0,"Continent":"K65","ID":13003,"Name":"General Affairs","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13003","ServerKey":"pl181","X":519,"Y":610},{"Bonus":0,"Continent":"K34","ID":13004,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13004","ServerKey":"pl181","X":442,"Y":399},{"Bonus":0,"Continent":"K55","ID":13006,"Name":"z 009","PlayerID":699342219,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13006","ServerKey":"pl181","X":560,"Y":599},{"Bonus":0,"Continent":"K45","ID":13007,"Name":"C007","PlayerID":699299123,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13007","ServerKey":"pl181","X":520,"Y":456},{"Bonus":0,"Continent":"K53","ID":13008,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13008","ServerKey":"pl181","X":388,"Y":513},{"Bonus":0,"Continent":"K55","ID":13009,"Name":"PYRLANDIA 030 Ramzez s","PlayerID":33900,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13009","ServerKey":"pl181","X":560,"Y":594},{"Bonus":0,"Continent":"K44","ID":13010,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13010","ServerKey":"pl181","X":414,"Y":422},{"Bonus":0,"Continent":"K55","ID":13011,"Name":"PYRLANDIA 026 + R","PlayerID":33900,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13011","ServerKey":"pl181","X":564,"Y":591},{"Bonus":0,"Continent":"K64","ID":13012,"Name":"EKG 003 + R","PlayerID":33900,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13012","ServerKey":"pl181","X":495,"Y":615},{"Bonus":0,"Continent":"K64","ID":13013,"Name":"#012","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13013","ServerKey":"pl181","X":474,"Y":613},{"Bonus":0,"Continent":"K45","ID":13014,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13014","ServerKey":"pl181","X":512,"Y":404},{"Bonus":0,"Continent":"K35","ID":13015,"Name":"128","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13015","ServerKey":"pl181","X":545,"Y":389},{"Bonus":0,"Continent":"K45","ID":13016,"Name":"[331] Chorągiewka na wietrze","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13016","ServerKey":"pl181","X":586,"Y":428},{"Bonus":1,"Continent":"K55","ID":13017,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13017","ServerKey":"pl181","X":579,"Y":579},{"Bonus":0,"Continent":"K55","ID":13018,"Name":"PYRLANDIA 020 S","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13018","ServerKey":"pl181","X":566,"Y":590},{"Bonus":0,"Continent":"K34","ID":13019,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13019","ServerKey":"pl181","X":476,"Y":388},{"Bonus":0,"Continent":"K45","ID":13020,"Name":"MORDOR f","PlayerID":8155296,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13020","ServerKey":"pl181","X":538,"Y":469},{"Bonus":0,"Continent":"K35","ID":13021,"Name":"059","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13021","ServerKey":"pl181","X":555,"Y":397},{"Bonus":0,"Continent":"K46","ID":13022,"Name":"029 Carolina","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13022","ServerKey":"pl181","X":608,"Y":470},{"Bonus":0,"Continent":"K35","ID":13023,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13023","ServerKey":"pl181","X":528,"Y":390},{"Bonus":0,"Continent":"K34","ID":13024,"Name":"019","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13024","ServerKey":"pl181","X":488,"Y":385},{"Bonus":0,"Continent":"K43","ID":13025,"Name":"A0161","PlayerID":8841266,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13025","ServerKey":"pl181","X":378,"Y":475},{"Bonus":0,"Continent":"K53","ID":13026,"Name":"004 Night Watch","PlayerID":849030226,"Points":10483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13026","ServerKey":"pl181","X":390,"Y":520},{"Bonus":0,"Continent":"K55","ID":13027,"Name":"z 005","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13027","ServerKey":"pl181","X":562,"Y":598},{"Bonus":0,"Continent":"K55","ID":13028,"Name":"018. Gisela","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13028","ServerKey":"pl181","X":591,"Y":569},{"Bonus":0,"Continent":"K54","ID":13029,"Name":"044 Wioska HUSARIUS","PlayerID":699382126,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13029","ServerKey":"pl181","X":404,"Y":564},{"Bonus":0,"Continent":"K34","ID":13030,"Name":"[0034]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13030","ServerKey":"pl181","X":450,"Y":399},{"Bonus":9,"Continent":"K55","ID":13031,"Name":"PYRLANDIA 024 s","PlayerID":33900,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13031","ServerKey":"pl181","X":568,"Y":588},{"Bonus":0,"Continent":"K55","ID":13032,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13032","ServerKey":"pl181","X":574,"Y":585},{"Bonus":0,"Continent":"K55","ID":13033,"Name":"- 217 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13033","ServerKey":"pl181","X":551,"Y":572},{"Bonus":0,"Continent":"K35","ID":13034,"Name":"D012","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13034","ServerKey":"pl181","X":511,"Y":389},{"Bonus":0,"Continent":"K55","ID":13036,"Name":"037","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13036","ServerKey":"pl181","X":599,"Y":559},{"Bonus":0,"Continent":"K45","ID":13037,"Name":"[335] Chorągiewka na wietrze","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13037","ServerKey":"pl181","X":588,"Y":424},{"Bonus":0,"Continent":"K64","ID":13038,"Name":"EKG M03 + KAC TƁ","PlayerID":33900,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13038","ServerKey":"pl181","X":477,"Y":613},{"Bonus":0,"Continent":"K54","ID":13039,"Name":"Z barba 002","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13039","ServerKey":"pl181","X":423,"Y":583},{"Bonus":0,"Continent":"K34","ID":13040,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13040","ServerKey":"pl181","X":477,"Y":387},{"Bonus":0,"Continent":"K55","ID":13041,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13041","ServerKey":"pl181","X":586,"Y":571},{"Bonus":0,"Continent":"K46","ID":13042,"Name":"016","PlayerID":8459255,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13042","ServerKey":"pl181","X":608,"Y":468},{"Bonus":0,"Continent":"K34","ID":13043,"Name":"iWioska barbarzyƄska","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13043","ServerKey":"pl181","X":497,"Y":387},{"Bonus":0,"Continent":"K54","ID":13044,"Name":"0623","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13044","ServerKey":"pl181","X":438,"Y":592},{"Bonus":0,"Continent":"K44","ID":13045,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13045","ServerKey":"pl181","X":421,"Y":419},{"Bonus":0,"Continent":"K65","ID":13046,"Name":"Teby_11","PlayerID":2585846,"Points":9440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13046","ServerKey":"pl181","X":501,"Y":617},{"Bonus":0,"Continent":"K43","ID":13047,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13047","ServerKey":"pl181","X":393,"Y":454},{"Bonus":0,"Continent":"K34","ID":13048,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13048","ServerKey":"pl181","X":458,"Y":394},{"Bonus":0,"Continent":"K64","ID":13049,"Name":"025.xxx","PlayerID":8612358,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13049","ServerKey":"pl181","X":483,"Y":614},{"Bonus":0,"Continent":"K45","ID":13050,"Name":"ADEN","PlayerID":698588535,"Points":10120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13050","ServerKey":"pl181","X":567,"Y":405},{"Bonus":0,"Continent":"K35","ID":13051,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13051","ServerKey":"pl181","X":534,"Y":383},{"Bonus":0,"Continent":"K43","ID":13052,"Name":"Land of Fire","PlayerID":698962117,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13052","ServerKey":"pl181","X":397,"Y":446},{"Bonus":0,"Continent":"K45","ID":13053,"Name":"[347] Chorągiewka na wietrze","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13053","ServerKey":"pl181","X":586,"Y":423},{"Bonus":0,"Continent":"K45","ID":13054,"Name":"156","PlayerID":849064752,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13054","ServerKey":"pl181","X":571,"Y":409},{"Bonus":0,"Continent":"K55","ID":13055,"Name":"Back ln Black","PlayerID":848926293,"Points":9493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13055","ServerKey":"pl181","X":595,"Y":566},{"Bonus":0,"Continent":"K53","ID":13056,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13056","ServerKey":"pl181","X":381,"Y":524},{"Bonus":0,"Continent":"K53","ID":13057,"Name":"Brat447","PlayerID":699262350,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13057","ServerKey":"pl181","X":385,"Y":511},{"Bonus":0,"Continent":"K55","ID":13058,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13058","ServerKey":"pl181","X":580,"Y":584},{"Bonus":0,"Continent":"K65","ID":13059,"Name":"z 052","PlayerID":699342219,"Points":5029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13059","ServerKey":"pl181","X":560,"Y":600},{"Bonus":0,"Continent":"K34","ID":13061,"Name":"[0042]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13061","ServerKey":"pl181","X":454,"Y":397},{"Bonus":0,"Continent":"K43","ID":13062,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13062","ServerKey":"pl181","X":385,"Y":482},{"Bonus":0,"Continent":"K44","ID":13063,"Name":"krzysiek1293-vequ1","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13063","ServerKey":"pl181","X":411,"Y":425},{"Bonus":0,"Continent":"K46","ID":13064,"Name":"Szlachcic","PlayerID":698867446,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13064","ServerKey":"pl181","X":615,"Y":484},{"Bonus":0,"Continent":"K54","ID":13065,"Name":"132 B15","PlayerID":699382126,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13065","ServerKey":"pl181","X":402,"Y":559},{"Bonus":0,"Continent":"K46","ID":13066,"Name":"016. Athenae","PlayerID":849091866,"Points":9286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13066","ServerKey":"pl181","X":608,"Y":463},{"Bonus":0,"Continent":"K54","ID":13067,"Name":"002","PlayerID":9167250,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13067","ServerKey":"pl181","X":416,"Y":576},{"Bonus":0,"Continent":"K44","ID":13068,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13068","ServerKey":"pl181","X":413,"Y":427},{"Bonus":0,"Continent":"K43","ID":13069,"Name":"A0203","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13069","ServerKey":"pl181","X":387,"Y":482},{"Bonus":0,"Continent":"K56","ID":13070,"Name":"011","PlayerID":6160655,"Points":10694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13070","ServerKey":"pl181","X":605,"Y":548},{"Bonus":0,"Continent":"K34","ID":13071,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13071","ServerKey":"pl181","X":471,"Y":391},{"Bonus":0,"Continent":"K54","ID":13072,"Name":"Ww 004","PlayerID":849084740,"Points":10744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13072","ServerKey":"pl181","X":442,"Y":597},{"Bonus":0,"Continent":"K34","ID":13073,"Name":"Bagdad","PlayerID":8847546,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13073","ServerKey":"pl181","X":468,"Y":390},{"Bonus":0,"Continent":"K54","ID":13074,"Name":"047 - A07***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13074","ServerKey":"pl181","X":434,"Y":591},{"Bonus":0,"Continent":"K55","ID":13075,"Name":"Sector 7 Undercity Station","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13075","ServerKey":"pl181","X":512,"Y":595},{"Bonus":0,"Continent":"K54","ID":13076,"Name":"Wioska barbarzyƄska1(goodboy666)","PlayerID":698769107,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13076","ServerKey":"pl181","X":425,"Y":588},{"Bonus":0,"Continent":"K53","ID":13077,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13077","ServerKey":"pl181","X":389,"Y":512},{"Bonus":8,"Continent":"K44","ID":13078,"Name":"x14","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13078","ServerKey":"pl181","X":408,"Y":430},{"Bonus":0,"Continent":"K64","ID":13080,"Name":"C.003","PlayerID":849088243,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13080","ServerKey":"pl181","X":440,"Y":600},{"Bonus":0,"Continent":"K46","ID":13081,"Name":"Najlepszy sąsiad 009","PlayerID":699756210,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13081","ServerKey":"pl181","X":601,"Y":441},{"Bonus":0,"Continent":"K43","ID":13082,"Name":"A0253","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13082","ServerKey":"pl181","X":377,"Y":488},{"Bonus":0,"Continent":"K55","ID":13083,"Name":"Love Bites","PlayerID":848926293,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13083","ServerKey":"pl181","X":594,"Y":564},{"Bonus":0,"Continent":"K34","ID":13084,"Name":"059","PlayerID":698739350,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13084","ServerKey":"pl181","X":483,"Y":389},{"Bonus":0,"Continent":"K54","ID":13085,"Name":"074 - ZnajdĆșka","PlayerID":225023,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13085","ServerKey":"pl181","X":424,"Y":586},{"Bonus":0,"Continent":"K65","ID":13086,"Name":"0005","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13086","ServerKey":"pl181","X":534,"Y":609},{"Bonus":0,"Continent":"K44","ID":13087,"Name":"00111 Wioska","PlayerID":3909522,"Points":8440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13087","ServerKey":"pl181","X":429,"Y":408},{"Bonus":0,"Continent":"K53","ID":13088,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13088","ServerKey":"pl181","X":382,"Y":541},{"Bonus":0,"Continent":"K43","ID":13089,"Name":"To moja","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13089","ServerKey":"pl181","X":383,"Y":497},{"Bonus":0,"Continent":"K43","ID":13090,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13090","ServerKey":"pl181","X":388,"Y":468},{"Bonus":0,"Continent":"K55","ID":13091,"Name":"z 011","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13091","ServerKey":"pl181","X":562,"Y":596},{"Bonus":7,"Continent":"K56","ID":13092,"Name":"W.181/02","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13092","ServerKey":"pl181","X":608,"Y":538},{"Bonus":0,"Continent":"K54","ID":13093,"Name":"Sparta_52","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13093","ServerKey":"pl181","X":482,"Y":583},{"Bonus":0,"Continent":"K45","ID":13094,"Name":"[362] Chorągiewka na wietrze","PlayerID":848985692,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13094","ServerKey":"pl181","X":595,"Y":440},{"Bonus":0,"Continent":"K34","ID":13095,"Name":"Bagdad","PlayerID":8847546,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13095","ServerKey":"pl181","X":469,"Y":390},{"Bonus":1,"Continent":"K34","ID":13096,"Name":"K34 x006","PlayerID":698364331,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13096","ServerKey":"pl181","X":467,"Y":393},{"Bonus":0,"Continent":"K56","ID":13097,"Name":"075","PlayerID":699373599,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13097","ServerKey":"pl181","X":613,"Y":528},{"Bonus":0,"Continent":"K35","ID":13098,"Name":"003 Spodziewana niespodzianka","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13098","ServerKey":"pl181","X":503,"Y":388},{"Bonus":0,"Continent":"K65","ID":13099,"Name":"#0036","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13099","ServerKey":"pl181","X":539,"Y":623},{"Bonus":0,"Continent":"K54","ID":13100,"Name":"Tu powstaje coƛ większego","PlayerID":849028088,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13100","ServerKey":"pl181","X":428,"Y":586},{"Bonus":0,"Continent":"K65","ID":13101,"Name":"- 265 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13101","ServerKey":"pl181","X":550,"Y":602},{"Bonus":0,"Continent":"K44","ID":13102,"Name":"032 Columbus","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13102","ServerKey":"pl181","X":423,"Y":415},{"Bonus":0,"Continent":"K55","ID":13103,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13103","ServerKey":"pl181","X":580,"Y":582},{"Bonus":0,"Continent":"K53","ID":13104,"Name":"SZYMI PALACE 3","PlayerID":9167250,"Points":7444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13104","ServerKey":"pl181","X":392,"Y":541},{"Bonus":0,"Continent":"K64","ID":13105,"Name":"EKG .::. Siwyy8848/2","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13105","ServerKey":"pl181","X":499,"Y":616},{"Bonus":0,"Continent":"K64","ID":13106,"Name":"Naboo 5","PlayerID":699383121,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13106","ServerKey":"pl181","X":493,"Y":615},{"Bonus":0,"Continent":"K46","ID":13107,"Name":"004. Syracusae","PlayerID":849091866,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13107","ServerKey":"pl181","X":612,"Y":469},{"Bonus":0,"Continent":"K64","ID":13108,"Name":"NIERAJ004","PlayerID":33900,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13108","ServerKey":"pl181","X":468,"Y":611},{"Bonus":6,"Continent":"K44","ID":13109,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13109","ServerKey":"pl181","X":403,"Y":444},{"Bonus":0,"Continent":"K46","ID":13110,"Name":"062","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13110","ServerKey":"pl181","X":614,"Y":482},{"Bonus":4,"Continent":"K35","ID":13111,"Name":"003","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13111","ServerKey":"pl181","X":556,"Y":399},{"Bonus":0,"Continent":"K64","ID":13112,"Name":"084 MEHEHE","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13112","ServerKey":"pl181","X":493,"Y":611},{"Bonus":0,"Continent":"K35","ID":13113,"Name":"Gattacka","PlayerID":699298370,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13113","ServerKey":"pl181","X":539,"Y":390},{"Bonus":0,"Continent":"K43","ID":13114,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13114","ServerKey":"pl181","X":394,"Y":461},{"Bonus":0,"Continent":"K65","ID":13115,"Name":"SkƂad","PlayerID":606407,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13115","ServerKey":"pl181","X":510,"Y":612},{"Bonus":0,"Continent":"K44","ID":13116,"Name":"0006 R","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13116","ServerKey":"pl181","X":427,"Y":410},{"Bonus":0,"Continent":"K34","ID":13117,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13117","ServerKey":"pl181","X":469,"Y":395},{"Bonus":0,"Continent":"K44","ID":13118,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13118","ServerKey":"pl181","X":412,"Y":429},{"Bonus":0,"Continent":"K35","ID":13119,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13119","ServerKey":"pl181","X":531,"Y":394},{"Bonus":0,"Continent":"K56","ID":13120,"Name":"A.007","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13120","ServerKey":"pl181","X":604,"Y":554},{"Bonus":0,"Continent":"K44","ID":13121,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13121","ServerKey":"pl181","X":412,"Y":431},{"Bonus":4,"Continent":"K53","ID":13122,"Name":"Brat447","PlayerID":699262350,"Points":4937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13122","ServerKey":"pl181","X":388,"Y":517},{"Bonus":0,"Continent":"K45","ID":13123,"Name":"[367] Chorągiewka na wietrze","PlayerID":848985692,"Points":5599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13123","ServerKey":"pl181","X":589,"Y":424},{"Bonus":0,"Continent":"K35","ID":13124,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13124","ServerKey":"pl181","X":529,"Y":391},{"Bonus":1,"Continent":"K64","ID":13125,"Name":"007. Angband","PlayerID":699494488,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13125","ServerKey":"pl181","X":484,"Y":613},{"Bonus":0,"Continent":"K56","ID":13126,"Name":"A.011","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13126","ServerKey":"pl181","X":602,"Y":554},{"Bonus":0,"Continent":"K53","ID":13127,"Name":"ok.","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13127","ServerKey":"pl181","X":390,"Y":534},{"Bonus":0,"Continent":"K44","ID":13128,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13128","ServerKey":"pl181","X":414,"Y":423},{"Bonus":0,"Continent":"K53","ID":13129,"Name":"El Escorial","PlayerID":698916948,"Points":5474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13129","ServerKey":"pl181","X":397,"Y":551},{"Bonus":0,"Continent":"K54","ID":13130,"Name":"001 Bunia","PlayerID":699856962,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13130","ServerKey":"pl181","X":401,"Y":542},{"Bonus":0,"Continent":"K64","ID":13131,"Name":"EKG M01 Mavreli","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13131","ServerKey":"pl181","X":477,"Y":611},{"Bonus":0,"Continent":"K64","ID":13132,"Name":"036","PlayerID":699878511,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13132","ServerKey":"pl181","X":493,"Y":617},{"Bonus":0,"Continent":"K64","ID":13133,"Name":"Urojone Elizjum","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13133","ServerKey":"pl181","X":456,"Y":609},{"Bonus":0,"Continent":"K43","ID":13134,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13134","ServerKey":"pl181","X":390,"Y":466},{"Bonus":0,"Continent":"K35","ID":13135,"Name":"027","PlayerID":1424656,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13135","ServerKey":"pl181","X":543,"Y":395},{"Bonus":0,"Continent":"K43","ID":13136,"Name":"Lhotse","PlayerID":849013126,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13136","ServerKey":"pl181","X":384,"Y":499},{"Bonus":0,"Continent":"K65","ID":13137,"Name":"Teby_09","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13137","ServerKey":"pl181","X":506,"Y":614},{"Bonus":0,"Continent":"K64","ID":13138,"Name":"0006","PlayerID":33900,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13138","ServerKey":"pl181","X":464,"Y":607},{"Bonus":0,"Continent":"K65","ID":13139,"Name":"Teby_12","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13139","ServerKey":"pl181","X":504,"Y":617},{"Bonus":0,"Continent":"K53","ID":13140,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13140","ServerKey":"pl181","X":386,"Y":512},{"Bonus":0,"Continent":"K43","ID":13141,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13141","ServerKey":"pl181","X":385,"Y":486},{"Bonus":0,"Continent":"K56","ID":13142,"Name":"0004","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13142","ServerKey":"pl181","X":604,"Y":545},{"Bonus":0,"Continent":"K46","ID":13143,"Name":"Szlachcic","PlayerID":698867446,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13143","ServerKey":"pl181","X":615,"Y":488},{"Bonus":0,"Continent":"K53","ID":13144,"Name":"asd","PlayerID":849095014,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13144","ServerKey":"pl181","X":393,"Y":543},{"Bonus":0,"Continent":"K64","ID":13145,"Name":"#060","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13145","ServerKey":"pl181","X":478,"Y":617},{"Bonus":0,"Continent":"K45","ID":13146,"Name":"* IDE po WAS !","PlayerID":848985692,"Points":10112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13146","ServerKey":"pl181","X":594,"Y":432},{"Bonus":0,"Continent":"K46","ID":13148,"Name":"082 Missisipi","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13148","ServerKey":"pl181","X":611,"Y":488},{"Bonus":0,"Continent":"K56","ID":13150,"Name":"0017","PlayerID":6510480,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13150","ServerKey":"pl181","X":611,"Y":523},{"Bonus":0,"Continent":"K54","ID":13151,"Name":"0624","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13151","ServerKey":"pl181","X":437,"Y":593},{"Bonus":0,"Continent":"K46","ID":13152,"Name":"A008 Sylwester z jedynka","PlayerID":699722599,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13152","ServerKey":"pl181","X":603,"Y":447},{"Bonus":0,"Continent":"K65","ID":13154,"Name":"Farmie PP","PlayerID":8627359,"Points":9271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13154","ServerKey":"pl181","X":568,"Y":605},{"Bonus":0,"Continent":"K34","ID":13155,"Name":"006","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13155","ServerKey":"pl181","X":497,"Y":385},{"Bonus":0,"Continent":"K45","ID":13156,"Name":"13 im GadĆŒyjewa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13156","ServerKey":"pl181","X":589,"Y":428},{"Bonus":0,"Continent":"K45","ID":13158,"Name":"[348] Chorągiewka na wietrze","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13158","ServerKey":"pl181","X":582,"Y":420},{"Bonus":0,"Continent":"K56","ID":13159,"Name":"Cet4boN","PlayerID":699379895,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13159","ServerKey":"pl181","X":615,"Y":503},{"Bonus":9,"Continent":"K34","ID":13160,"Name":"Bagdad","PlayerID":8847546,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13160","ServerKey":"pl181","X":469,"Y":392},{"Bonus":0,"Continent":"K65","ID":13161,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13161","ServerKey":"pl181","X":540,"Y":608},{"Bonus":0,"Continent":"K34","ID":13162,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13162","ServerKey":"pl181","X":486,"Y":386},{"Bonus":0,"Continent":"K54","ID":13164,"Name":"055 - Ɓatwizna","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13164","ServerKey":"pl181","X":410,"Y":572},{"Bonus":0,"Continent":"K65","ID":13165,"Name":"Last Train for Bound Sector 7","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13165","ServerKey":"pl181","X":525,"Y":615},{"Bonus":0,"Continent":"K54","ID":13166,"Name":"Brusy","PlayerID":698769107,"Points":8866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13166","ServerKey":"pl181","X":412,"Y":569},{"Bonus":0,"Continent":"K65","ID":13167,"Name":"- 003 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13167","ServerKey":"pl181","X":552,"Y":603},{"Bonus":0,"Continent":"K44","ID":13168,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13168","ServerKey":"pl181","X":438,"Y":402},{"Bonus":0,"Continent":"K45","ID":13169,"Name":"DOM 9","PlayerID":849064614,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13169","ServerKey":"pl181","X":564,"Y":408},{"Bonus":0,"Continent":"K34","ID":13170,"Name":"Ohara","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13170","ServerKey":"pl181","X":493,"Y":387},{"Bonus":7,"Continent":"K46","ID":13171,"Name":"081 Montana","PlayerID":7092442,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13171","ServerKey":"pl181","X":612,"Y":489},{"Bonus":0,"Continent":"K55","ID":13172,"Name":"Wioska stary56","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13172","ServerKey":"pl181","X":564,"Y":592},{"Bonus":0,"Continent":"K53","ID":13173,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13173","ServerKey":"pl181","X":383,"Y":501},{"Bonus":0,"Continent":"K34","ID":13174,"Name":"K34 - [037] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13174","ServerKey":"pl181","X":466,"Y":388},{"Bonus":0,"Continent":"K43","ID":13175,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13175","ServerKey":"pl181","X":390,"Y":465},{"Bonus":0,"Continent":"K54","ID":13176,"Name":"0000026%","PlayerID":849089881,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13176","ServerKey":"pl181","X":428,"Y":591},{"Bonus":3,"Continent":"K53","ID":13177,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13177","ServerKey":"pl181","X":385,"Y":515},{"Bonus":0,"Continent":"K55","ID":13178,"Name":"PYRLANDIA 012$","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13178","ServerKey":"pl181","X":574,"Y":591},{"Bonus":0,"Continent":"K55","ID":13179,"Name":"Jaaa","PlayerID":698635863,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13179","ServerKey":"pl181","X":587,"Y":576},{"Bonus":0,"Continent":"K55","ID":13180,"Name":"z 053","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13180","ServerKey":"pl181","X":562,"Y":593},{"Bonus":0,"Continent":"K44","ID":13181,"Name":"aaaa","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13181","ServerKey":"pl181","X":448,"Y":400},{"Bonus":0,"Continent":"K54","ID":13182,"Name":"0639","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13182","ServerKey":"pl181","X":436,"Y":598},{"Bonus":6,"Continent":"K55","ID":13183,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13183","ServerKey":"pl181","X":579,"Y":586},{"Bonus":0,"Continent":"K34","ID":13184,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13184","ServerKey":"pl181","X":463,"Y":394},{"Bonus":2,"Continent":"K35","ID":13185,"Name":"A003","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13185","ServerKey":"pl181","X":514,"Y":386},{"Bonus":0,"Continent":"K43","ID":13186,"Name":"Knowhere","PlayerID":699723284,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13186","ServerKey":"pl181","X":388,"Y":493},{"Bonus":3,"Continent":"K55","ID":13187,"Name":"003 stal","PlayerID":1715091,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13187","ServerKey":"pl181","X":589,"Y":571},{"Bonus":0,"Continent":"K55","ID":13188,"Name":"Z 002","PlayerID":699342219,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13188","ServerKey":"pl181","X":562,"Y":597},{"Bonus":0,"Continent":"K46","ID":13189,"Name":"[351] Chorągiewka na wietrze","PlayerID":848985692,"Points":9255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13189","ServerKey":"pl181","X":600,"Y":439},{"Bonus":0,"Continent":"K44","ID":13190,"Name":"0010 S","PlayerID":3909522,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13190","ServerKey":"pl181","X":433,"Y":408},{"Bonus":0,"Continent":"K44","ID":13191,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13191","ServerKey":"pl181","X":414,"Y":425},{"Bonus":0,"Continent":"K45","ID":13192,"Name":"ADEN","PlayerID":698588535,"Points":10898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13192","ServerKey":"pl181","X":567,"Y":409},{"Bonus":0,"Continent":"K45","ID":13193,"Name":"*Anihilacja","PlayerID":848985692,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13193","ServerKey":"pl181","X":592,"Y":428},{"Bonus":0,"Continent":"K65","ID":13194,"Name":"- 008 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13194","ServerKey":"pl181","X":550,"Y":604},{"Bonus":0,"Continent":"K43","ID":13195,"Name":"Mniejsze zƂo 0073","PlayerID":699794765,"Points":11079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13195","ServerKey":"pl181","X":389,"Y":462},{"Bonus":0,"Continent":"K34","ID":13196,"Name":"[0039]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13196","ServerKey":"pl181","X":454,"Y":398},{"Bonus":0,"Continent":"K44","ID":13198,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13198","ServerKey":"pl181","X":401,"Y":443},{"Bonus":0,"Continent":"K64","ID":13199,"Name":"0349","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13199","ServerKey":"pl181","X":443,"Y":602},{"Bonus":0,"Continent":"K56","ID":13200,"Name":"09 Monza","PlayerID":699377151,"Points":9548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13200","ServerKey":"pl181","X":616,"Y":507},{"Bonus":0,"Continent":"K44","ID":13201,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13201","ServerKey":"pl181","X":420,"Y":417},{"Bonus":0,"Continent":"K43","ID":13202,"Name":"Mniejsze zƂo 0030","PlayerID":699794765,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13202","ServerKey":"pl181","X":391,"Y":462},{"Bonus":0,"Continent":"K44","ID":13203,"Name":"0011","PlayerID":3909522,"Points":10021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13203","ServerKey":"pl181","X":429,"Y":407},{"Bonus":0,"Continent":"K64","ID":13204,"Name":"#042","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13204","ServerKey":"pl181","X":451,"Y":605},{"Bonus":0,"Continent":"K56","ID":13205,"Name":"015","PlayerID":6160655,"Points":10396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13205","ServerKey":"pl181","X":605,"Y":545},{"Bonus":0,"Continent":"K44","ID":13206,"Name":"Wioska PaweƂ I Wspanialy","PlayerID":699660539,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13206","ServerKey":"pl181","X":417,"Y":417},{"Bonus":0,"Continent":"K54","ID":13207,"Name":"C 005 Krakow","PlayerID":849084740,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13207","ServerKey":"pl181","X":416,"Y":574},{"Bonus":0,"Continent":"K64","ID":13208,"Name":"0329","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13208","ServerKey":"pl181","X":449,"Y":606},{"Bonus":0,"Continent":"K44","ID":13209,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13209","ServerKey":"pl181","X":413,"Y":425},{"Bonus":0,"Continent":"K45","ID":13210,"Name":"[318] Chorągiewka na wietrze","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13210","ServerKey":"pl181","X":592,"Y":436},{"Bonus":0,"Continent":"K35","ID":13211,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13211","ServerKey":"pl181","X":541,"Y":391},{"Bonus":0,"Continent":"K34","ID":13212,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13212","ServerKey":"pl181","X":446,"Y":399},{"Bonus":0,"Continent":"K56","ID":13213,"Name":"0008","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13213","ServerKey":"pl181","X":605,"Y":549},{"Bonus":0,"Continent":"K35","ID":13215,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13215","ServerKey":"pl181","X":534,"Y":393},{"Bonus":0,"Continent":"K56","ID":13216,"Name":"W.181/07","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13216","ServerKey":"pl181","X":611,"Y":533},{"Bonus":0,"Continent":"K55","ID":13217,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13217","ServerKey":"pl181","X":579,"Y":584},{"Bonus":0,"Continent":"K53","ID":13218,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13218","ServerKey":"pl181","X":386,"Y":514},{"Bonus":0,"Continent":"K53","ID":13220,"Name":"# Szymi 3","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13220","ServerKey":"pl181","X":395,"Y":542},{"Bonus":0,"Continent":"K46","ID":13221,"Name":"031","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13221","ServerKey":"pl181","X":613,"Y":481},{"Bonus":0,"Continent":"K45","ID":13222,"Name":"09 im Watutina","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13222","ServerKey":"pl181","X":591,"Y":429},{"Bonus":0,"Continent":"K64","ID":13223,"Name":"EKG 004 + R","PlayerID":33900,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13223","ServerKey":"pl181","X":495,"Y":614},{"Bonus":0,"Continent":"K56","ID":13224,"Name":"*011*","PlayerID":698670524,"Points":8692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13224","ServerKey":"pl181","X":613,"Y":506},{"Bonus":4,"Continent":"K45","ID":13225,"Name":"006","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13225","ServerKey":"pl181","X":568,"Y":411},{"Bonus":0,"Continent":"K65","ID":13226,"Name":"002","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13226","ServerKey":"pl181","X":525,"Y":623},{"Bonus":0,"Continent":"K53","ID":13227,"Name":"# Szymi 1","PlayerID":699364813,"Points":8197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13227","ServerKey":"pl181","X":394,"Y":544},{"Bonus":0,"Continent":"K64","ID":13228,"Name":"0132","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13228","ServerKey":"pl181","X":456,"Y":604},{"Bonus":0,"Continent":"K34","ID":13229,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13229","ServerKey":"pl181","X":439,"Y":391},{"Bonus":0,"Continent":"K65","ID":13230,"Name":"Teby_07","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13230","ServerKey":"pl181","X":504,"Y":614},{"Bonus":0,"Continent":"K46","ID":13231,"Name":"001","PlayerID":849006412,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13231","ServerKey":"pl181","X":616,"Y":499},{"Bonus":0,"Continent":"K34","ID":13232,"Name":"022","PlayerID":698739350,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13232","ServerKey":"pl181","X":492,"Y":386},{"Bonus":0,"Continent":"K53","ID":13233,"Name":"Wioska","PlayerID":849084005,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13233","ServerKey":"pl181","X":389,"Y":538},{"Bonus":0,"Continent":"K56","ID":13234,"Name":"A.008","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13234","ServerKey":"pl181","X":603,"Y":553},{"Bonus":0,"Continent":"K46","ID":13235,"Name":"Ethan Hunt 09","PlayerID":698702991,"Points":8806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13235","ServerKey":"pl181","X":617,"Y":494},{"Bonus":0,"Continent":"K53","ID":13236,"Name":"NWO","PlayerID":849030226,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13236","ServerKey":"pl181","X":387,"Y":525},{"Bonus":0,"Continent":"K55","ID":13237,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13237","ServerKey":"pl181","X":578,"Y":584},{"Bonus":0,"Continent":"K46","ID":13238,"Name":"013","PlayerID":849006412,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13238","ServerKey":"pl181","X":614,"Y":496},{"Bonus":0,"Continent":"K64","ID":13239,"Name":"#059","PlayerID":699605333,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13239","ServerKey":"pl181","X":481,"Y":616},{"Bonus":0,"Continent":"K56","ID":13240,"Name":"0038","PlayerID":6510480,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13240","ServerKey":"pl181","X":616,"Y":509},{"Bonus":0,"Continent":"K45","ID":13241,"Name":"**Nocne Ƃakocie","PlayerID":848985692,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13241","ServerKey":"pl181","X":584,"Y":421},{"Bonus":0,"Continent":"K54","ID":13242,"Name":"004","PlayerID":699851427,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13242","ServerKey":"pl181","X":408,"Y":512},{"Bonus":0,"Continent":"K53","ID":13243,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13243","ServerKey":"pl181","X":390,"Y":537},{"Bonus":0,"Continent":"K44","ID":13244,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13244","ServerKey":"pl181","X":435,"Y":403},{"Bonus":0,"Continent":"K65","ID":13245,"Name":"009","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13245","ServerKey":"pl181","X":545,"Y":603},{"Bonus":0,"Continent":"K55","ID":13246,"Name":"Winter is coming","PlayerID":699364813,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13246","ServerKey":"pl181","X":504,"Y":574},{"Bonus":0,"Continent":"K34","ID":13247,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13247","ServerKey":"pl181","X":444,"Y":397},{"Bonus":0,"Continent":"K65","ID":13248,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13248","ServerKey":"pl181","X":514,"Y":614},{"Bonus":0,"Continent":"K34","ID":13249,"Name":"[0108]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13249","ServerKey":"pl181","X":453,"Y":397},{"Bonus":0,"Continent":"K46","ID":13250,"Name":"[219] WEST","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13250","ServerKey":"pl181","X":607,"Y":459},{"Bonus":0,"Continent":"K53","ID":13251,"Name":"006 Prawie noc...","PlayerID":849030226,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13251","ServerKey":"pl181","X":389,"Y":531},{"Bonus":0,"Continent":"K65","ID":13252,"Name":"- 009 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13252","ServerKey":"pl181","X":550,"Y":603},{"Bonus":0,"Continent":"K45","ID":13253,"Name":"Szlachcic","PlayerID":699170684,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13253","ServerKey":"pl181","X":582,"Y":418},{"Bonus":0,"Continent":"K64","ID":13254,"Name":"Naboo 3","PlayerID":699383121,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13254","ServerKey":"pl181","X":489,"Y":614},{"Bonus":0,"Continent":"K53","ID":13255,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13255","ServerKey":"pl181","X":384,"Y":506},{"Bonus":0,"Continent":"K45","ID":13256,"Name":"Naterki 003","PlayerID":699812571,"Points":2141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13256","ServerKey":"pl181","X":575,"Y":415},{"Bonus":0,"Continent":"K55","ID":13257,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13257","ServerKey":"pl181","X":584,"Y":578},{"Bonus":0,"Continent":"K56","ID":13258,"Name":"004","PlayerID":6160655,"Points":10913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13258","ServerKey":"pl181","X":607,"Y":543},{"Bonus":0,"Continent":"K45","ID":13259,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13259","ServerKey":"pl181","X":591,"Y":493},{"Bonus":0,"Continent":"K54","ID":13260,"Name":"118 B07","PlayerID":699382126,"Points":7915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13260","ServerKey":"pl181","X":400,"Y":558},{"Bonus":0,"Continent":"K46","ID":13261,"Name":"[226] WEST Punch","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13261","ServerKey":"pl181","X":602,"Y":453},{"Bonus":0,"Continent":"K34","ID":13262,"Name":"K34 - [071] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13262","ServerKey":"pl181","X":454,"Y":392},{"Bonus":0,"Continent":"K55","ID":13263,"Name":"Glatteis","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13263","ServerKey":"pl181","X":562,"Y":558},{"Bonus":0,"Continent":"K54","ID":13264,"Name":"C.004","PlayerID":849088243,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13264","ServerKey":"pl181","X":433,"Y":597},{"Bonus":0,"Continent":"K55","ID":13265,"Name":"0009 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13265","ServerKey":"pl181","X":586,"Y":578},{"Bonus":0,"Continent":"K44","ID":13266,"Name":"0093","PlayerID":3909522,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13266","ServerKey":"pl181","X":455,"Y":439},{"Bonus":0,"Continent":"K35","ID":13267,"Name":"051","PlayerID":698739350,"Points":8306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13267","ServerKey":"pl181","X":512,"Y":385},{"Bonus":0,"Continent":"K45","ID":13268,"Name":"009 - Palma de Mallorca","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13268","ServerKey":"pl181","X":599,"Y":495},{"Bonus":0,"Continent":"K55","ID":13269,"Name":"Szlachcic","PlayerID":699759128,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13269","ServerKey":"pl181","X":593,"Y":508},{"Bonus":0,"Continent":"K53","ID":13270,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":5502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13270","ServerKey":"pl181","X":384,"Y":514},{"Bonus":0,"Continent":"K56","ID":13271,"Name":"ccc","PlayerID":7047342,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13271","ServerKey":"pl181","X":606,"Y":551},{"Bonus":0,"Continent":"K45","ID":13272,"Name":"DOM 3","PlayerID":849064614,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13272","ServerKey":"pl181","X":564,"Y":402},{"Bonus":0,"Continent":"K45","ID":13273,"Name":"ADEN","PlayerID":698588535,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13273","ServerKey":"pl181","X":592,"Y":430},{"Bonus":0,"Continent":"K46","ID":13274,"Name":"011","PlayerID":849006412,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13274","ServerKey":"pl181","X":615,"Y":495},{"Bonus":0,"Continent":"K43","ID":13275,"Name":"s181eo05","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13275","ServerKey":"pl181","X":394,"Y":452},{"Bonus":8,"Continent":"K43","ID":13276,"Name":"Mniejsze zƂo 0022","PlayerID":699794765,"Points":9463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13276","ServerKey":"pl181","X":387,"Y":488},{"Bonus":0,"Continent":"K44","ID":13277,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13277","ServerKey":"pl181","X":416,"Y":421},{"Bonus":0,"Continent":"K65","ID":13278,"Name":"- 013 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13278","ServerKey":"pl181","X":548,"Y":602},{"Bonus":0,"Continent":"K35","ID":13279,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13279","ServerKey":"pl181","X":520,"Y":387},{"Bonus":0,"Continent":"K35","ID":13280,"Name":"A011","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13280","ServerKey":"pl181","X":513,"Y":385},{"Bonus":0,"Continent":"K53","ID":13282,"Name":"0206","PlayerID":7085510,"Points":5277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13282","ServerKey":"pl181","X":398,"Y":508},{"Bonus":0,"Continent":"K44","ID":13283,"Name":"P Konfederacja","PlayerID":848915730,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13283","ServerKey":"pl181","X":457,"Y":442},{"Bonus":0,"Continent":"K46","ID":13284,"Name":"[228] WEST","PlayerID":848985692,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13284","ServerKey":"pl181","X":606,"Y":452},{"Bonus":0,"Continent":"K53","ID":13285,"Name":"NIE DZIƚ HEJKA","PlayerID":8539216,"Points":946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13285","ServerKey":"pl181","X":399,"Y":559},{"Bonus":0,"Continent":"K65","ID":13286,"Name":"- 010 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13286","ServerKey":"pl181","X":549,"Y":605},{"Bonus":0,"Continent":"K55","ID":13287,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13287","ServerKey":"pl181","X":585,"Y":579},{"Bonus":0,"Continent":"K56","ID":13288,"Name":"A.003","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13288","ServerKey":"pl181","X":600,"Y":560},{"Bonus":0,"Continent":"K54","ID":13289,"Name":"Oslo (Mieszko 1995)","PlayerID":698769107,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13289","ServerKey":"pl181","X":416,"Y":578},{"Bonus":5,"Continent":"K43","ID":13291,"Name":"A0005","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13291","ServerKey":"pl181","X":387,"Y":475},{"Bonus":0,"Continent":"K53","ID":13292,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13292","ServerKey":"pl181","X":379,"Y":522},{"Bonus":0,"Continent":"K54","ID":13293,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":6148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13293","ServerKey":"pl181","X":406,"Y":571},{"Bonus":0,"Continent":"K54","ID":13294,"Name":"Z barba 006","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13294","ServerKey":"pl181","X":426,"Y":589},{"Bonus":0,"Continent":"K53","ID":13295,"Name":"SZYMI PALACE 13","PlayerID":699364813,"Points":6015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13295","ServerKey":"pl181","X":392,"Y":544},{"Bonus":0,"Continent":"K35","ID":13296,"Name":"007","PlayerID":1424656,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13296","ServerKey":"pl181","X":550,"Y":396},{"Bonus":0,"Continent":"K45","ID":13297,"Name":"[369] Chorągiewka na wietrze","PlayerID":848985692,"Points":7218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13297","ServerKey":"pl181","X":590,"Y":426},{"Bonus":0,"Continent":"K53","ID":13298,"Name":"Brat447","PlayerID":699262350,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13298","ServerKey":"pl181","X":385,"Y":507},{"Bonus":0,"Continent":"K44","ID":13299,"Name":"0038","PlayerID":848913037,"Points":8824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13299","ServerKey":"pl181","X":429,"Y":405},{"Bonus":0,"Continent":"K35","ID":13300,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13300","ServerKey":"pl181","X":552,"Y":396},{"Bonus":0,"Continent":"K54","ID":13301,"Name":"C.008","PlayerID":849088243,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13301","ServerKey":"pl181","X":429,"Y":592},{"Bonus":0,"Continent":"K56","ID":13302,"Name":"Bocianikson002","PlayerID":7528491,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13302","ServerKey":"pl181","X":610,"Y":541},{"Bonus":1,"Continent":"K54","ID":13303,"Name":"035 - lowe","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13303","ServerKey":"pl181","X":421,"Y":586},{"Bonus":0,"Continent":"K43","ID":13304,"Name":"A0009","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13304","ServerKey":"pl181","X":382,"Y":482},{"Bonus":0,"Continent":"K54","ID":13305,"Name":"Wioska sbb","PlayerID":9167250,"Points":7887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13305","ServerKey":"pl181","X":406,"Y":572},{"Bonus":0,"Continent":"K35","ID":13306,"Name":"Gattacka","PlayerID":699298370,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13306","ServerKey":"pl181","X":538,"Y":390},{"Bonus":0,"Continent":"K53","ID":13307,"Name":"nie masz wiecej heh dawaj ofy","PlayerID":849095014,"Points":5486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13307","ServerKey":"pl181","X":393,"Y":542},{"Bonus":0,"Continent":"K65","ID":13308,"Name":"Teby_08","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13308","ServerKey":"pl181","X":506,"Y":613},{"Bonus":0,"Continent":"K45","ID":13309,"Name":"[366] Chorągiewka na wietrze","PlayerID":848985692,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13309","ServerKey":"pl181","X":596,"Y":440},{"Bonus":0,"Continent":"K54","ID":13310,"Name":"034 - B09.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13310","ServerKey":"pl181","X":439,"Y":598},{"Bonus":0,"Continent":"K56","ID":13311,"Name":"012 Rivendell","PlayerID":8013349,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13311","ServerKey":"pl181","X":610,"Y":533},{"Bonus":0,"Continent":"K54","ID":13312,"Name":"C 013 BeƂk","PlayerID":849084740,"Points":10431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13312","ServerKey":"pl181","X":420,"Y":587},{"Bonus":0,"Continent":"K34","ID":13313,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13313","ServerKey":"pl181","X":483,"Y":386},{"Bonus":0,"Continent":"K35","ID":13314,"Name":"D021","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13314","ServerKey":"pl181","X":505,"Y":383},{"Bonus":0,"Continent":"K53","ID":13315,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13315","ServerKey":"pl181","X":385,"Y":518},{"Bonus":0,"Continent":"K56","ID":13316,"Name":"A.012","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13316","ServerKey":"pl181","X":602,"Y":553},{"Bonus":0,"Continent":"K65","ID":13317,"Name":"010","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13317","ServerKey":"pl181","X":543,"Y":607},{"Bonus":0,"Continent":"K56","ID":13318,"Name":"008 legancko","PlayerID":9238175,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13318","ServerKey":"pl181","X":604,"Y":546},{"Bonus":0,"Continent":"K55","ID":13319,"Name":"Szlachcic","PlayerID":699759128,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13319","ServerKey":"pl181","X":585,"Y":504},{"Bonus":0,"Continent":"K54","ID":13320,"Name":"Z barba 018","PlayerID":225023,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13320","ServerKey":"pl181","X":419,"Y":585},{"Bonus":0,"Continent":"K35","ID":13321,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13321","ServerKey":"pl181","X":520,"Y":381},{"Bonus":0,"Continent":"K64","ID":13322,"Name":"scoti","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13322","ServerKey":"pl181","X":487,"Y":614},{"Bonus":0,"Continent":"K34","ID":13323,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13323","ServerKey":"pl181","X":445,"Y":395},{"Bonus":0,"Continent":"K65","ID":13324,"Name":"CALL 920","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13324","ServerKey":"pl181","X":553,"Y":602},{"Bonus":0,"Continent":"K44","ID":13325,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13325","ServerKey":"pl181","X":435,"Y":406},{"Bonus":0,"Continent":"K34","ID":13326,"Name":"007","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13326","ServerKey":"pl181","X":495,"Y":385},{"Bonus":0,"Continent":"K34","ID":13327,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13327","ServerKey":"pl181","X":440,"Y":398},{"Bonus":0,"Continent":"K44","ID":13328,"Name":"ZABAWA -3- Waldemar Wielki","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13328","ServerKey":"pl181","X":405,"Y":438},{"Bonus":0,"Continent":"K43","ID":13329,"Name":"A0034","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13329","ServerKey":"pl181","X":386,"Y":482},{"Bonus":0,"Continent":"K45","ID":13330,"Name":"Galia 2","PlayerID":848989855,"Points":7715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13330","ServerKey":"pl181","X":599,"Y":440},{"Bonus":6,"Continent":"K43","ID":13331,"Name":"Land of Fire","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13331","ServerKey":"pl181","X":398,"Y":445},{"Bonus":0,"Continent":"K53","ID":13332,"Name":"036 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13332","ServerKey":"pl181","X":389,"Y":554},{"Bonus":0,"Continent":"K44","ID":13333,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13333","ServerKey":"pl181","X":437,"Y":401},{"Bonus":0,"Continent":"K56","ID":13334,"Name":"002 Troja","PlayerID":8013349,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13334","ServerKey":"pl181","X":609,"Y":530},{"Bonus":0,"Continent":"K65","ID":13335,"Name":"*302*","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13335","ServerKey":"pl181","X":508,"Y":615},{"Bonus":0,"Continent":"K53","ID":13336,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13336","ServerKey":"pl181","X":386,"Y":521},{"Bonus":0,"Continent":"K55","ID":13337,"Name":"PYRLANDIA 003 S","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13337","ServerKey":"pl181","X":569,"Y":592},{"Bonus":0,"Continent":"K46","ID":13338,"Name":"[229] WEST","PlayerID":848985692,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13338","ServerKey":"pl181","X":606,"Y":453},{"Bonus":0,"Continent":"K64","ID":13339,"Name":"EKG 002 + R","PlayerID":33900,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13339","ServerKey":"pl181","X":498,"Y":616},{"Bonus":0,"Continent":"K44","ID":13340,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13340","ServerKey":"pl181","X":409,"Y":430},{"Bonus":0,"Continent":"K43","ID":13341,"Name":"Knowhere","PlayerID":699723284,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13341","ServerKey":"pl181","X":385,"Y":497},{"Bonus":0,"Continent":"K55","ID":13342,"Name":"z 015","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13342","ServerKey":"pl181","X":559,"Y":597},{"Bonus":0,"Continent":"K55","ID":13343,"Name":"Legion pierwszy upadƂy","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13343","ServerKey":"pl181","X":567,"Y":596},{"Bonus":0,"Continent":"K43","ID":13344,"Name":"Mniejsze zƂo 0018","PlayerID":699794765,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13344","ServerKey":"pl181","X":390,"Y":461},{"Bonus":0,"Continent":"K45","ID":13345,"Name":"12 im Chmyrowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13345","ServerKey":"pl181","X":589,"Y":427},{"Bonus":0,"Continent":"K45","ID":13346,"Name":"South K45","PlayerID":699146580,"Points":6564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13346","ServerKey":"pl181","X":573,"Y":410},{"Bonus":0,"Continent":"K55","ID":13347,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13347","ServerKey":"pl181","X":592,"Y":574},{"Bonus":0,"Continent":"K54","ID":13348,"Name":"20. Wioska 20","PlayerID":849091769,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13348","ServerKey":"pl181","X":426,"Y":586},{"Bonus":0,"Continent":"K46","ID":13349,"Name":"Jaaa","PlayerID":698635863,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13349","ServerKey":"pl181","X":603,"Y":433},{"Bonus":0,"Continent":"K64","ID":13350,"Name":"EKG .::. Siwyy8848/3","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13350","ServerKey":"pl181","X":498,"Y":617},{"Bonus":0,"Continent":"K65","ID":13351,"Name":"10. Ravus Nox Fleuret","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13351","ServerKey":"pl181","X":520,"Y":616},{"Bonus":0,"Continent":"K53","ID":13352,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13352","ServerKey":"pl181","X":391,"Y":534},{"Bonus":0,"Continent":"K56","ID":13353,"Name":"014","PlayerID":6160655,"Points":10693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13353","ServerKey":"pl181","X":603,"Y":545},{"Bonus":0,"Continent":"K64","ID":13354,"Name":"EKG zderek","PlayerID":33900,"Points":10137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13354","ServerKey":"pl181","X":497,"Y":614},{"Bonus":0,"Continent":"K34","ID":13355,"Name":"Fappoleon","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13355","ServerKey":"pl181","X":494,"Y":388},{"Bonus":0,"Continent":"K44","ID":13356,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13356","ServerKey":"pl181","X":406,"Y":433},{"Bonus":0,"Continent":"K64","ID":13357,"Name":"EKG 006","PlayerID":33900,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13357","ServerKey":"pl181","X":496,"Y":614},{"Bonus":0,"Continent":"K45","ID":13358,"Name":"007","PlayerID":849063849,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13358","ServerKey":"pl181","X":561,"Y":402},{"Bonus":0,"Continent":"K46","ID":13359,"Name":"Piwna 09","PlayerID":699812007,"Points":9294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13359","ServerKey":"pl181","X":607,"Y":430},{"Bonus":0,"Continent":"K54","ID":13360,"Name":"021. Gloria Victis","PlayerID":848886973,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13360","ServerKey":"pl181","X":425,"Y":587},{"Bonus":0,"Continent":"K43","ID":13361,"Name":"A0001","PlayerID":8841266,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13361","ServerKey":"pl181","X":384,"Y":477},{"Bonus":0,"Continent":"K35","ID":13362,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13362","ServerKey":"pl181","X":528,"Y":387},{"Bonus":0,"Continent":"K56","ID":13363,"Name":"030","PlayerID":6160655,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13363","ServerKey":"pl181","X":602,"Y":560},{"Bonus":0,"Continent":"K46","ID":13364,"Name":"021","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13364","ServerKey":"pl181","X":612,"Y":480},{"Bonus":0,"Continent":"K45","ID":13365,"Name":".achim.","PlayerID":6936607,"Points":11366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13365","ServerKey":"pl181","X":538,"Y":400},{"Bonus":0,"Continent":"K43","ID":13366,"Name":"0029","PlayerID":6258092,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13366","ServerKey":"pl181","X":389,"Y":468},{"Bonus":0,"Continent":"K53","ID":13367,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13367","ServerKey":"pl181","X":386,"Y":528},{"Bonus":0,"Continent":"K64","ID":13368,"Name":"#013","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13368","ServerKey":"pl181","X":473,"Y":611},{"Bonus":0,"Continent":"K54","ID":13369,"Name":"B.007","PlayerID":849088243,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13369","ServerKey":"pl181","X":410,"Y":573},{"Bonus":0,"Continent":"K44","ID":13370,"Name":"x01","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13370","ServerKey":"pl181","X":405,"Y":434},{"Bonus":0,"Continent":"K34","ID":13371,"Name":"K34 x013","PlayerID":698364331,"Points":7011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13371","ServerKey":"pl181","X":466,"Y":389},{"Bonus":3,"Continent":"K56","ID":13372,"Name":"0020","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13372","ServerKey":"pl181","X":602,"Y":548},{"Bonus":0,"Continent":"K55","ID":13373,"Name":"74k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13373","ServerKey":"pl181","X":548,"Y":524},{"Bonus":0,"Continent":"K34","ID":13374,"Name":"[0029]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13374","ServerKey":"pl181","X":449,"Y":397},{"Bonus":0,"Continent":"K45","ID":13375,"Name":"Najlepszy sąsiad 002","PlayerID":699756210,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13375","ServerKey":"pl181","X":597,"Y":442},{"Bonus":0,"Continent":"K65","ID":13376,"Name":"13. Tifa Lockhart","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13376","ServerKey":"pl181","X":520,"Y":613},{"Bonus":0,"Continent":"K65","ID":13377,"Name":"~057.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13377","ServerKey":"pl181","X":501,"Y":615},{"Bonus":7,"Continent":"K46","ID":13378,"Name":"Najlepszy sąsiad 007","PlayerID":699756210,"Points":9859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13378","ServerKey":"pl181","X":600,"Y":442},{"Bonus":0,"Continent":"K56","ID":13379,"Name":"0002 MzM","PlayerID":698416970,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13379","ServerKey":"pl181","X":603,"Y":557},{"Bonus":0,"Continent":"K43","ID":13380,"Name":"Land of Fire","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13380","ServerKey":"pl181","X":397,"Y":444},{"Bonus":0,"Continent":"K43","ID":13381,"Name":"A0012","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13381","ServerKey":"pl181","X":384,"Y":482},{"Bonus":0,"Continent":"K43","ID":13383,"Name":"A0020","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13383","ServerKey":"pl181","X":384,"Y":481},{"Bonus":0,"Continent":"K56","ID":13384,"Name":"W.181/17","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13384","ServerKey":"pl181","X":613,"Y":529},{"Bonus":0,"Continent":"K35","ID":13385,"Name":"Gattacka","PlayerID":699298370,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13385","ServerKey":"pl181","X":539,"Y":391},{"Bonus":0,"Continent":"K54","ID":13386,"Name":"067 - LG***","PlayerID":225023,"Points":8631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13386","ServerKey":"pl181","X":435,"Y":597},{"Bonus":0,"Continent":"K44","ID":13387,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13387","ServerKey":"pl181","X":418,"Y":420},{"Bonus":0,"Continent":"K56","ID":13388,"Name":"A.006","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13388","ServerKey":"pl181","X":601,"Y":558},{"Bonus":0,"Continent":"K45","ID":13389,"Name":"028","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13389","ServerKey":"pl181","X":584,"Y":417},{"Bonus":0,"Continent":"K54","ID":13390,"Name":"023 - B05.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13390","ServerKey":"pl181","X":441,"Y":598},{"Bonus":0,"Continent":"K53","ID":13391,"Name":"089 KOƃCZY SIĘ TWÓJ CZAS","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13391","ServerKey":"pl181","X":395,"Y":552},{"Bonus":0,"Continent":"K43","ID":13392,"Name":"Land of Fire","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13392","ServerKey":"pl181","X":398,"Y":444},{"Bonus":0,"Continent":"K46","ID":13393,"Name":"055. Singidunum","PlayerID":849091866,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13393","ServerKey":"pl181","X":603,"Y":443},{"Bonus":0,"Continent":"K53","ID":13394,"Name":"091 POZOSTAJESZ BEZ SZANS","PlayerID":699382126,"Points":10539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13394","ServerKey":"pl181","X":399,"Y":558},{"Bonus":0,"Continent":"K53","ID":13395,"Name":"016 YouAreNext","PlayerID":699382126,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13395","ServerKey":"pl181","X":390,"Y":557},{"Bonus":0,"Continent":"K43","ID":13396,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13396","ServerKey":"pl181","X":384,"Y":486},{"Bonus":0,"Continent":"K45","ID":13397,"Name":"009","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13397","ServerKey":"pl181","X":554,"Y":401},{"Bonus":0,"Continent":"K53","ID":13398,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13398","ServerKey":"pl181","X":386,"Y":520},{"Bonus":0,"Continent":"K45","ID":13399,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13399","ServerKey":"pl181","X":588,"Y":426},{"Bonus":1,"Continent":"K46","ID":13400,"Name":"003. Byzantium","PlayerID":849091866,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13400","ServerKey":"pl181","X":610,"Y":462},{"Bonus":0,"Continent":"K64","ID":13401,"Name":"007","PlayerID":699494488,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13401","ServerKey":"pl181","X":493,"Y":618},{"Bonus":0,"Continent":"K46","ID":13403,"Name":"D05","PlayerID":849093742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13403","ServerKey":"pl181","X":617,"Y":482},{"Bonus":0,"Continent":"K45","ID":13404,"Name":"004. Oxenfurt","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13404","ServerKey":"pl181","X":562,"Y":400},{"Bonus":0,"Continent":"K56","ID":13406,"Name":"Bocianikson003","PlayerID":7528491,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13406","ServerKey":"pl181","X":611,"Y":540},{"Bonus":0,"Continent":"K34","ID":13408,"Name":"063","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13408","ServerKey":"pl181","X":476,"Y":387},{"Bonus":0,"Continent":"K54","ID":13410,"Name":"03. Pusty w ƛrodku","PlayerID":9167250,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13410","ServerKey":"pl181","X":402,"Y":565},{"Bonus":0,"Continent":"K53","ID":13411,"Name":"107 ZERO ZERO SIEDEM","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13411","ServerKey":"pl181","X":398,"Y":553},{"Bonus":0,"Continent":"K53","ID":13412,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13412","ServerKey":"pl181","X":385,"Y":514},{"Bonus":0,"Continent":"K46","ID":13414,"Name":"Ethan Hunt 10","PlayerID":698702991,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13414","ServerKey":"pl181","X":616,"Y":485},{"Bonus":0,"Continent":"K64","ID":13415,"Name":"#030","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13415","ServerKey":"pl181","X":460,"Y":607},{"Bonus":0,"Continent":"K43","ID":13416,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13416","ServerKey":"pl181","X":391,"Y":455},{"Bonus":0,"Continent":"K55","ID":13417,"Name":"043.","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13417","ServerKey":"pl181","X":598,"Y":561},{"Bonus":0,"Continent":"K56","ID":13418,"Name":"Optymistycznie","PlayerID":699501322,"Points":2946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13418","ServerKey":"pl181","X":613,"Y":555},{"Bonus":0,"Continent":"K45","ID":13419,"Name":"Unieszewo 004","PlayerID":699812571,"Points":1560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13419","ServerKey":"pl181","X":575,"Y":413},{"Bonus":0,"Continent":"K44","ID":13420,"Name":"Gravity","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13420","ServerKey":"pl181","X":402,"Y":449},{"Bonus":0,"Continent":"K35","ID":13421,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13421","ServerKey":"pl181","X":526,"Y":388},{"Bonus":4,"Continent":"K43","ID":13422,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13422","ServerKey":"pl181","X":383,"Y":481},{"Bonus":0,"Continent":"K34","ID":13423,"Name":"057","PlayerID":698739350,"Points":8274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13423","ServerKey":"pl181","X":485,"Y":383},{"Bonus":0,"Continent":"K45","ID":13424,"Name":"16 im Jekiela","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13424","ServerKey":"pl181","X":591,"Y":427},{"Bonus":0,"Continent":"K45","ID":13425,"Name":"[314] Chorągiewka na wietrze","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13425","ServerKey":"pl181","X":598,"Y":437},{"Bonus":0,"Continent":"K53","ID":13426,"Name":"126 B06","PlayerID":699382126,"Points":8047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13426","ServerKey":"pl181","X":399,"Y":561},{"Bonus":4,"Continent":"K65","ID":13427,"Name":"- 002 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13427","ServerKey":"pl181","X":548,"Y":603},{"Bonus":0,"Continent":"K65","ID":13428,"Name":"SkƂad","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13428","ServerKey":"pl181","X":509,"Y":614},{"Bonus":0,"Continent":"K35","ID":13429,"Name":"A019","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13429","ServerKey":"pl181","X":510,"Y":382},{"Bonus":0,"Continent":"K55","ID":13430,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13430","ServerKey":"pl181","X":583,"Y":582},{"Bonus":0,"Continent":"K43","ID":13431,"Name":"A0254","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13431","ServerKey":"pl181","X":382,"Y":492},{"Bonus":0,"Continent":"K43","ID":13432,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13432","ServerKey":"pl181","X":388,"Y":466},{"Bonus":0,"Continent":"K34","ID":13433,"Name":"[0031]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13433","ServerKey":"pl181","X":451,"Y":396},{"Bonus":4,"Continent":"K53","ID":13435,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":7419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13435","ServerKey":"pl181","X":383,"Y":515},{"Bonus":0,"Continent":"K54","ID":13436,"Name":"Stage group B3","PlayerID":699856962,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13436","ServerKey":"pl181","X":421,"Y":543},{"Bonus":0,"Continent":"K35","ID":13437,"Name":"D015","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13437","ServerKey":"pl181","X":509,"Y":387},{"Bonus":3,"Continent":"K45","ID":13439,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13439","ServerKey":"pl181","X":596,"Y":431},{"Bonus":0,"Continent":"K65","ID":13440,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13440","ServerKey":"pl181","X":508,"Y":625},{"Bonus":0,"Continent":"K44","ID":13441,"Name":"002","PlayerID":699788305,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13441","ServerKey":"pl181","X":404,"Y":431},{"Bonus":0,"Continent":"K64","ID":13442,"Name":"EKG .::. Mat26/2","PlayerID":33900,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13442","ServerKey":"pl181","X":493,"Y":614},{"Bonus":0,"Continent":"K64","ID":13443,"Name":"#051","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13443","ServerKey":"pl181","X":449,"Y":602},{"Bonus":0,"Continent":"K43","ID":13444,"Name":"Mniejsze zƂo 0076","PlayerID":699794765,"Points":11079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13444","ServerKey":"pl181","X":390,"Y":462},{"Bonus":0,"Continent":"K46","ID":13445,"Name":"#003.484|497","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13445","ServerKey":"pl181","X":603,"Y":448},{"Bonus":0,"Continent":"K46","ID":13446,"Name":"087","PlayerID":699573053,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13446","ServerKey":"pl181","X":615,"Y":493},{"Bonus":0,"Continent":"K54","ID":13447,"Name":"Z barba 001","PlayerID":225023,"Points":8840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13447","ServerKey":"pl181","X":422,"Y":588},{"Bonus":0,"Continent":"K35","ID":13448,"Name":"D016","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13448","ServerKey":"pl181","X":507,"Y":386},{"Bonus":0,"Continent":"K43","ID":13449,"Name":"A0228","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13449","ServerKey":"pl181","X":377,"Y":490},{"Bonus":0,"Continent":"K45","ID":13450,"Name":"[368] Chorągiewka na wietrze","PlayerID":848985692,"Points":10391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13450","ServerKey":"pl181","X":590,"Y":425},{"Bonus":0,"Continent":"K56","ID":13451,"Name":"W.181/08","PlayerID":2999957,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13451","ServerKey":"pl181","X":614,"Y":531},{"Bonus":0,"Continent":"K64","ID":13452,"Name":"EKG M04 + KAC 2 WZ","PlayerID":33900,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13452","ServerKey":"pl181","X":476,"Y":613},{"Bonus":0,"Continent":"K56","ID":13454,"Name":"011","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13454","ServerKey":"pl181","X":603,"Y":546},{"Bonus":0,"Continent":"K44","ID":13455,"Name":"00355 Refugia","PlayerID":3909522,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13455","ServerKey":"pl181","X":428,"Y":419},{"Bonus":0,"Continent":"K34","ID":13456,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13456","ServerKey":"pl181","X":467,"Y":387},{"Bonus":0,"Continent":"K56","ID":13457,"Name":"[008] Dreabe dig","PlayerID":848985692,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13457","ServerKey":"pl181","X":602,"Y":534},{"Bonus":0,"Continent":"K43","ID":13458,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13458","ServerKey":"pl181","X":387,"Y":464},{"Bonus":0,"Continent":"K44","ID":13459,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13459","ServerKey":"pl181","X":417,"Y":419},{"Bonus":0,"Continent":"K64","ID":13460,"Name":"0200","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13460","ServerKey":"pl181","X":453,"Y":604},{"Bonus":0,"Continent":"K34","ID":13461,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13461","ServerKey":"pl181","X":444,"Y":396},{"Bonus":0,"Continent":"K35","ID":13462,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13462","ServerKey":"pl181","X":521,"Y":386},{"Bonus":0,"Continent":"K46","ID":13463,"Name":"A 005","PlayerID":7915966,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13463","ServerKey":"pl181","X":614,"Y":472},{"Bonus":0,"Continent":"K55","ID":13464,"Name":"[088]","PlayerID":8000875,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13464","ServerKey":"pl181","X":566,"Y":557},{"Bonus":0,"Continent":"K65","ID":13465,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13465","ServerKey":"pl181","X":516,"Y":616},{"Bonus":0,"Continent":"K53","ID":13466,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13466","ServerKey":"pl181","X":373,"Y":515},{"Bonus":0,"Continent":"K64","ID":13467,"Name":"Naboo 2","PlayerID":699383121,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13467","ServerKey":"pl181","X":492,"Y":614},{"Bonus":0,"Continent":"K34","ID":13468,"Name":"028","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13468","ServerKey":"pl181","X":489,"Y":384},{"Bonus":0,"Continent":"K54","ID":13469,"Name":"Aaaaa","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13469","ServerKey":"pl181","X":420,"Y":580},{"Bonus":0,"Continent":"K35","ID":13470,"Name":".achim.","PlayerID":6936607,"Points":9220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13470","ServerKey":"pl181","X":542,"Y":393},{"Bonus":0,"Continent":"K65","ID":13471,"Name":"*307*","PlayerID":606407,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13471","ServerKey":"pl181","X":511,"Y":613},{"Bonus":0,"Continent":"K56","ID":13472,"Name":"024","PlayerID":849006412,"Points":6382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13472","ServerKey":"pl181","X":617,"Y":510},{"Bonus":0,"Continent":"K54","ID":13473,"Name":"C 004 Wyry","PlayerID":849084740,"Points":7794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13473","ServerKey":"pl181","X":418,"Y":580},{"Bonus":0,"Continent":"K55","ID":13474,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13474","ServerKey":"pl181","X":598,"Y":585},{"Bonus":0,"Continent":"K53","ID":13475,"Name":"# Szymi 2","PlayerID":699364813,"Points":6826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13475","ServerKey":"pl181","X":395,"Y":544},{"Bonus":0,"Continent":"K56","ID":13476,"Name":"W.181/16","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13476","ServerKey":"pl181","X":610,"Y":536},{"Bonus":0,"Continent":"K44","ID":13477,"Name":"x07","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13477","ServerKey":"pl181","X":406,"Y":430},{"Bonus":0,"Continent":"K43","ID":13478,"Name":"Land of Fire","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13478","ServerKey":"pl181","X":398,"Y":443},{"Bonus":0,"Continent":"K65","ID":13479,"Name":"- 047 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13479","ServerKey":"pl181","X":542,"Y":609},{"Bonus":0,"Continent":"K46","ID":13480,"Name":"[240] WEST","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13480","ServerKey":"pl181","X":602,"Y":451},{"Bonus":0,"Continent":"K54","ID":13481,"Name":"OSP","PlayerID":225023,"Points":8970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13481","ServerKey":"pl181","X":419,"Y":573},{"Bonus":0,"Continent":"K64","ID":13482,"Name":"EKG M16","PlayerID":33900,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13482","ServerKey":"pl181","X":484,"Y":612},{"Bonus":0,"Continent":"K45","ID":13483,"Name":"[324] Chorągiewka na wietrze","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13483","ServerKey":"pl181","X":596,"Y":439},{"Bonus":0,"Continent":"K45","ID":13484,"Name":"* Zagrasz w kotka i myszkę?","PlayerID":848985692,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13484","ServerKey":"pl181","X":585,"Y":420},{"Bonus":0,"Continent":"K44","ID":13485,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13485","ServerKey":"pl181","X":419,"Y":419},{"Bonus":0,"Continent":"K53","ID":13486,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13486","ServerKey":"pl181","X":384,"Y":519},{"Bonus":0,"Continent":"K64","ID":13487,"Name":"scoti","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13487","ServerKey":"pl181","X":489,"Y":617},{"Bonus":0,"Continent":"K55","ID":13488,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13488","ServerKey":"pl181","X":575,"Y":589},{"Bonus":0,"Continent":"K34","ID":13489,"Name":"[0033]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13489","ServerKey":"pl181","X":449,"Y":395},{"Bonus":0,"Continent":"K45","ID":13490,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13490","ServerKey":"pl181","X":595,"Y":432},{"Bonus":0,"Continent":"K46","ID":13491,"Name":"060. Tergeste","PlayerID":849091866,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13491","ServerKey":"pl181","X":604,"Y":442},{"Bonus":1,"Continent":"K54","ID":13492,"Name":"045 Ithilien","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13492","ServerKey":"pl181","X":405,"Y":562},{"Bonus":0,"Continent":"K53","ID":13494,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":6219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13494","ServerKey":"pl181","X":396,"Y":545},{"Bonus":0,"Continent":"K54","ID":13495,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13495","ServerKey":"pl181","X":436,"Y":529},{"Bonus":0,"Continent":"K44","ID":13496,"Name":"0015 Szlachcic","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13496","ServerKey":"pl181","X":433,"Y":410},{"Bonus":3,"Continent":"K44","ID":13497,"Name":"0002","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13497","ServerKey":"pl181","X":424,"Y":411},{"Bonus":0,"Continent":"K34","ID":13498,"Name":"0031","PlayerID":699431255,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13498","ServerKey":"pl181","X":451,"Y":379},{"Bonus":3,"Continent":"K53","ID":13499,"Name":"Ok.","PlayerID":849030226,"Points":10543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13499","ServerKey":"pl181","X":387,"Y":527},{"Bonus":0,"Continent":"K44","ID":13500,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13500","ServerKey":"pl181","X":402,"Y":436},{"Bonus":0,"Continent":"K53","ID":13501,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13501","ServerKey":"pl181","X":387,"Y":503},{"Bonus":0,"Continent":"K56","ID":13503,"Name":"PowerPunch","PlayerID":699379895,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13503","ServerKey":"pl181","X":615,"Y":511},{"Bonus":0,"Continent":"K34","ID":13504,"Name":"033","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13504","ServerKey":"pl181","X":486,"Y":382},{"Bonus":0,"Continent":"K54","ID":13505,"Name":"Eeeee","PlayerID":225023,"Points":8453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13505","ServerKey":"pl181","X":420,"Y":581},{"Bonus":0,"Continent":"K64","ID":13506,"Name":"Naboo 1","PlayerID":699383121,"Points":8794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13506","ServerKey":"pl181","X":490,"Y":614},{"Bonus":0,"Continent":"K43","ID":13507,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13507","ServerKey":"pl181","X":392,"Y":454},{"Bonus":0,"Continent":"K35","ID":13508,"Name":"012","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13508","ServerKey":"pl181","X":551,"Y":399},{"Bonus":0,"Continent":"K54","ID":13509,"Name":"Zadupie","PlayerID":869195,"Points":2357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13509","ServerKey":"pl181","X":412,"Y":573},{"Bonus":0,"Continent":"K46","ID":13510,"Name":"014","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13510","ServerKey":"pl181","X":613,"Y":483},{"Bonus":0,"Continent":"K44","ID":13511,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13511","ServerKey":"pl181","X":420,"Y":418},{"Bonus":0,"Continent":"K54","ID":13512,"Name":"--003--","PlayerID":225023,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13512","ServerKey":"pl181","X":432,"Y":597},{"Bonus":0,"Continent":"K65","ID":13513,"Name":"ƚmieszki","PlayerID":3454753,"Points":9055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13513","ServerKey":"pl181","X":532,"Y":614},{"Bonus":9,"Continent":"K34","ID":13514,"Name":"[0006]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13514","ServerKey":"pl181","X":449,"Y":396},{"Bonus":2,"Continent":"K65","ID":13516,"Name":"EKG .::. Siwyy8848/7","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13516","ServerKey":"pl181","X":500,"Y":617},{"Bonus":0,"Continent":"K65","ID":13517,"Name":"End of the Road","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13517","ServerKey":"pl181","X":519,"Y":615},{"Bonus":0,"Continent":"K46","ID":13518,"Name":"Ethan Hunt 08","PlayerID":698702991,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13518","ServerKey":"pl181","X":617,"Y":490},{"Bonus":0,"Continent":"K45","ID":13519,"Name":"Galia","PlayerID":848989855,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13519","ServerKey":"pl181","X":598,"Y":441},{"Bonus":0,"Continent":"K45","ID":13521,"Name":"[308] Chorągiewka na wietrze","PlayerID":848985692,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13521","ServerKey":"pl181","X":596,"Y":434},{"Bonus":0,"Continent":"K45","ID":13522,"Name":"159","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13522","ServerKey":"pl181","X":578,"Y":415},{"Bonus":5,"Continent":"K45","ID":13523,"Name":"[363] Chorągiewka na wietrze","PlayerID":848985692,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13523","ServerKey":"pl181","X":596,"Y":438},{"Bonus":0,"Continent":"K46","ID":13524,"Name":"Jaaa","PlayerID":698635863,"Points":10269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13524","ServerKey":"pl181","X":609,"Y":463},{"Bonus":0,"Continent":"K53","ID":13525,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":5790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13525","ServerKey":"pl181","X":395,"Y":550},{"Bonus":0,"Continent":"K43","ID":13526,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13526","ServerKey":"pl181","X":389,"Y":443},{"Bonus":8,"Continent":"K55","ID":13527,"Name":"Jaaa","PlayerID":698635863,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13527","ServerKey":"pl181","X":571,"Y":593},{"Bonus":0,"Continent":"K35","ID":13528,"Name":"C 010","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13528","ServerKey":"pl181","X":567,"Y":392},{"Bonus":0,"Continent":"K43","ID":13529,"Name":"Mniejsze zƂo 0077","PlayerID":699794765,"Points":10930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13529","ServerKey":"pl181","X":388,"Y":459},{"Bonus":0,"Continent":"K55","ID":13530,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13530","ServerKey":"pl181","X":577,"Y":585},{"Bonus":0,"Continent":"K64","ID":13531,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13531","ServerKey":"pl181","X":459,"Y":612},{"Bonus":0,"Continent":"K34","ID":13532,"Name":".001.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13532","ServerKey":"pl181","X":495,"Y":381},{"Bonus":0,"Continent":"K43","ID":13533,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13533","ServerKey":"pl181","X":387,"Y":474},{"Bonus":0,"Continent":"K46","ID":13534,"Name":"Ethan Hunt 05","PlayerID":698702991,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13534","ServerKey":"pl181","X":617,"Y":485},{"Bonus":1,"Continent":"K54","ID":13535,"Name":"012 (Popeye14)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13535","ServerKey":"pl181","X":415,"Y":582},{"Bonus":0,"Continent":"K53","ID":13536,"Name":"Brat447","PlayerID":699262350,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13536","ServerKey":"pl181","X":384,"Y":505},{"Bonus":0,"Continent":"K64","ID":13537,"Name":"006. Gloria Victis","PlayerID":848886973,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13537","ServerKey":"pl181","X":444,"Y":600},{"Bonus":0,"Continent":"K55","ID":13538,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":9093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13538","ServerKey":"pl181","X":591,"Y":570},{"Bonus":0,"Continent":"K56","ID":13539,"Name":"C001 Las Noches","PlayerID":8096537,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13539","ServerKey":"pl181","X":608,"Y":560},{"Bonus":0,"Continent":"K46","ID":13540,"Name":"Ethan Hunt 07","PlayerID":698702991,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13540","ServerKey":"pl181","X":618,"Y":492},{"Bonus":0,"Continent":"K64","ID":13541,"Name":"scofield darmiarz mehehe","PlayerID":699494488,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13541","ServerKey":"pl181","X":487,"Y":613},{"Bonus":0,"Continent":"K53","ID":13542,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13542","ServerKey":"pl181","X":383,"Y":500},{"Bonus":0,"Continent":"K54","ID":13543,"Name":"0000021@","PlayerID":849089881,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13543","ServerKey":"pl181","X":433,"Y":598},{"Bonus":0,"Continent":"K64","ID":13544,"Name":"#039","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13544","ServerKey":"pl181","X":483,"Y":613},{"Bonus":0,"Continent":"K44","ID":13545,"Name":"FKG 01-23","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13545","ServerKey":"pl181","X":424,"Y":413},{"Bonus":0,"Continent":"K44","ID":13546,"Name":"[0007]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13546","ServerKey":"pl181","X":420,"Y":415},{"Bonus":0,"Continent":"K46","ID":13547,"Name":"008","PlayerID":849006412,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13547","ServerKey":"pl181","X":618,"Y":498},{"Bonus":0,"Continent":"K46","ID":13548,"Name":"123. ZƂote WzgĂłrza","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13548","ServerKey":"pl181","X":618,"Y":474},{"Bonus":2,"Continent":"K43","ID":13549,"Name":"Brat447 XXX","PlayerID":699262350,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13549","ServerKey":"pl181","X":382,"Y":499},{"Bonus":0,"Continent":"K53","ID":13550,"Name":"# Szymi 5","PlayerID":699604515,"Points":5836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13550","ServerKey":"pl181","X":391,"Y":545},{"Bonus":0,"Continent":"K44","ID":13551,"Name":"Gravity","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13551","ServerKey":"pl181","X":401,"Y":445},{"Bonus":0,"Continent":"K45","ID":13552,"Name":"11 im Ɓukszyna","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13552","ServerKey":"pl181","X":591,"Y":428},{"Bonus":0,"Continent":"K34","ID":13553,"Name":"[0028]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13553","ServerKey":"pl181","X":449,"Y":394},{"Bonus":0,"Continent":"K45","ID":13554,"Name":"[350] Chorągiewka na wietrze","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13554","ServerKey":"pl181","X":588,"Y":422},{"Bonus":0,"Continent":"K64","ID":13555,"Name":"~073.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13555","ServerKey":"pl181","X":486,"Y":614},{"Bonus":0,"Continent":"K54","ID":13556,"Name":"08 Suuuuu","PlayerID":9167250,"Points":7665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13556","ServerKey":"pl181","X":405,"Y":568},{"Bonus":0,"Continent":"K55","ID":13557,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13557","ServerKey":"pl181","X":582,"Y":585},{"Bonus":0,"Continent":"K56","ID":13558,"Name":"027 Wioska","PlayerID":8323711,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13558","ServerKey":"pl181","X":612,"Y":521},{"Bonus":0,"Continent":"K44","ID":13559,"Name":"0008","PlayerID":3909522,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13559","ServerKey":"pl181","X":426,"Y":411},{"Bonus":0,"Continent":"K46","ID":13560,"Name":"[224] WEST","PlayerID":848985692,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13560","ServerKey":"pl181","X":608,"Y":459},{"Bonus":0,"Continent":"K54","ID":13561,"Name":"072 - Antwerpia","PlayerID":225023,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13561","ServerKey":"pl181","X":421,"Y":587},{"Bonus":3,"Continent":"K54","ID":13562,"Name":"ww 003","PlayerID":849084740,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13562","ServerKey":"pl181","X":443,"Y":598},{"Bonus":0,"Continent":"K43","ID":13563,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13563","ServerKey":"pl181","X":386,"Y":465},{"Bonus":0,"Continent":"K45","ID":13564,"Name":"HOTEL 2","PlayerID":849064614,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13564","ServerKey":"pl181","X":576,"Y":415},{"Bonus":0,"Continent":"K45","ID":13565,"Name":"[357] Chorągiewka na wietrze","PlayerID":848985692,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13565","ServerKey":"pl181","X":591,"Y":432},{"Bonus":5,"Continent":"K55","ID":13566,"Name":"033","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13566","ServerKey":"pl181","X":591,"Y":576},{"Bonus":0,"Continent":"K44","ID":13568,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13568","ServerKey":"pl181","X":437,"Y":404},{"Bonus":0,"Continent":"K35","ID":13569,"Name":"043 InnyNizWszyscy","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13569","ServerKey":"pl181","X":541,"Y":389},{"Bonus":0,"Continent":"K53","ID":13570,"Name":"124 Wioska barbarzyƄska","PlayerID":699382126,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13570","ServerKey":"pl181","X":399,"Y":562},{"Bonus":0,"Continent":"K54","ID":13571,"Name":"127 s002","PlayerID":699382126,"Points":7344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13571","ServerKey":"pl181","X":400,"Y":560},{"Bonus":0,"Continent":"K46","ID":13572,"Name":"#051.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13572","ServerKey":"pl181","X":616,"Y":486},{"Bonus":0,"Continent":"K45","ID":13574,"Name":"[315] Chorągiewka na wietrze","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13574","ServerKey":"pl181","X":598,"Y":439},{"Bonus":0,"Continent":"K54","ID":13575,"Name":"Wioska sb","PlayerID":9167250,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13575","ServerKey":"pl181","X":405,"Y":572},{"Bonus":0,"Continent":"K65","ID":13577,"Name":"*309*","PlayerID":606407,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13577","ServerKey":"pl181","X":511,"Y":617},{"Bonus":0,"Continent":"K65","ID":13578,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13578","ServerKey":"pl181","X":536,"Y":621},{"Bonus":0,"Continent":"K35","ID":13579,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13579","ServerKey":"pl181","X":526,"Y":387},{"Bonus":4,"Continent":"K64","ID":13580,"Name":"003.xxx","PlayerID":8612358,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13580","ServerKey":"pl181","X":466,"Y":611},{"Bonus":0,"Continent":"K53","ID":13581,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":9011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13581","ServerKey":"pl181","X":380,"Y":516},{"Bonus":0,"Continent":"K43","ID":13582,"Name":"A0014","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13582","ServerKey":"pl181","X":384,"Y":484},{"Bonus":0,"Continent":"K64","ID":13583,"Name":"NIERAJ007","PlayerID":33900,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13583","ServerKey":"pl181","X":467,"Y":609},{"Bonus":6,"Continent":"K46","ID":13584,"Name":"[206] WEST","PlayerID":848985692,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13584","ServerKey":"pl181","X":606,"Y":448},{"Bonus":0,"Continent":"K56","ID":13585,"Name":"010 Anatol","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13585","ServerKey":"pl181","X":617,"Y":519},{"Bonus":0,"Continent":"K46","ID":13586,"Name":"016 Jestem na tak","PlayerID":698829590,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13586","ServerKey":"pl181","X":600,"Y":441},{"Bonus":0,"Continent":"K43","ID":13587,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13587","ServerKey":"pl181","X":389,"Y":457},{"Bonus":5,"Continent":"K54","ID":13588,"Name":"Więcbork","PlayerID":698769107,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13588","ServerKey":"pl181","X":416,"Y":581},{"Bonus":0,"Continent":"K34","ID":13589,"Name":"003","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13589","ServerKey":"pl181","X":497,"Y":383},{"Bonus":0,"Continent":"K54","ID":13590,"Name":"Tuchola","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13590","ServerKey":"pl181","X":412,"Y":575},{"Bonus":0,"Continent":"K46","ID":13591,"Name":"008. Brundisium","PlayerID":849091866,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13591","ServerKey":"pl181","X":611,"Y":465},{"Bonus":0,"Continent":"K34","ID":13593,"Name":"K34 - [068] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13593","ServerKey":"pl181","X":457,"Y":391},{"Bonus":0,"Continent":"K54","ID":13595,"Name":"015. Gloria Victis","PlayerID":848886973,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13595","ServerKey":"pl181","X":424,"Y":592},{"Bonus":0,"Continent":"K65","ID":13596,"Name":"- 020 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13596","ServerKey":"pl181","X":546,"Y":608},{"Bonus":0,"Continent":"K43","ID":13597,"Name":"Wioska Woki606","PlayerID":699523631,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13597","ServerKey":"pl181","X":383,"Y":484},{"Bonus":0,"Continent":"K43","ID":13598,"Name":"A0028","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13598","ServerKey":"pl181","X":388,"Y":478},{"Bonus":0,"Continent":"K54","ID":13599,"Name":"09 Tytanowy kręgosƂup(Maczeta.)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13599","ServerKey":"pl181","X":417,"Y":568},{"Bonus":0,"Continent":"K34","ID":13600,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13600","ServerKey":"pl181","X":442,"Y":398},{"Bonus":0,"Continent":"K53","ID":13601,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":7778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13601","ServerKey":"pl181","X":386,"Y":515},{"Bonus":0,"Continent":"K44","ID":13602,"Name":"[0008] Raf","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13602","ServerKey":"pl181","X":424,"Y":410},{"Bonus":0,"Continent":"K46","ID":13603,"Name":"Ethan Hunt 06","PlayerID":698702991,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13603","ServerKey":"pl181","X":614,"Y":492},{"Bonus":0,"Continent":"K64","ID":13604,"Name":"scoti","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13604","ServerKey":"pl181","X":491,"Y":618},{"Bonus":0,"Continent":"K35","ID":13605,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13605","ServerKey":"pl181","X":553,"Y":396},{"Bonus":0,"Continent":"K44","ID":13606,"Name":"K44 x029","PlayerID":698364331,"Points":6602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13606","ServerKey":"pl181","X":433,"Y":404},{"Bonus":0,"Continent":"K34","ID":13607,"Name":"036","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13607","ServerKey":"pl181","X":485,"Y":382},{"Bonus":0,"Continent":"K64","ID":13609,"Name":"NIERAJ002","PlayerID":33900,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13609","ServerKey":"pl181","X":469,"Y":611},{"Bonus":3,"Continent":"K45","ID":13610,"Name":"060","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13610","ServerKey":"pl181","X":576,"Y":411},{"Bonus":0,"Continent":"K34","ID":13611,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13611","ServerKey":"pl181","X":455,"Y":392},{"Bonus":0,"Continent":"K54","ID":13612,"Name":"010. Gloria Victis","PlayerID":848886973,"Points":10441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13612","ServerKey":"pl181","X":425,"Y":591},{"Bonus":0,"Continent":"K54","ID":13613,"Name":"095 BĘDĘ ICH POZDRAWIAĆ","PlayerID":699382126,"Points":11489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13613","ServerKey":"pl181","X":411,"Y":553},{"Bonus":0,"Continent":"K54","ID":13614,"Name":"0108","PlayerID":698659980,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13614","ServerKey":"pl181","X":461,"Y":550},{"Bonus":0,"Continent":"K53","ID":13615,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":5732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13615","ServerKey":"pl181","X":395,"Y":547},{"Bonus":0,"Continent":"K56","ID":13616,"Name":"011 Anatol","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13616","ServerKey":"pl181","X":616,"Y":518},{"Bonus":0,"Continent":"K46","ID":13617,"Name":"037","PlayerID":849006412,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13617","ServerKey":"pl181","X":614,"Y":487},{"Bonus":0,"Continent":"K44","ID":13618,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13618","ServerKey":"pl181","X":446,"Y":400},{"Bonus":0,"Continent":"K56","ID":13619,"Name":"Wioska wymiany surowcĂłw","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13619","ServerKey":"pl181","X":609,"Y":539},{"Bonus":0,"Continent":"K45","ID":13620,"Name":"[316] Chorągiewka na wietrze","PlayerID":848985692,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13620","ServerKey":"pl181","X":597,"Y":439},{"Bonus":0,"Continent":"K46","ID":13621,"Name":"#005.485|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13621","ServerKey":"pl181","X":604,"Y":447},{"Bonus":0,"Continent":"K46","ID":13622,"Name":"012. Messana","PlayerID":849091866,"Points":9289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13622","ServerKey":"pl181","X":612,"Y":468},{"Bonus":0,"Continent":"K44","ID":13623,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13623","ServerKey":"pl181","X":433,"Y":402},{"Bonus":0,"Continent":"K64","ID":13624,"Name":"Naboo","PlayerID":699383121,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13624","ServerKey":"pl181","X":491,"Y":615},{"Bonus":0,"Continent":"K64","ID":13625,"Name":"~091.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13625","ServerKey":"pl181","X":495,"Y":616},{"Bonus":0,"Continent":"K44","ID":13626,"Name":"0004","PlayerID":3909522,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13626","ServerKey":"pl181","X":423,"Y":412},{"Bonus":0,"Continent":"K43","ID":13627,"Name":"Land of Fire","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13627","ServerKey":"pl181","X":398,"Y":450},{"Bonus":0,"Continent":"K56","ID":13628,"Name":"Gryfios 011","PlayerID":698666810,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13628","ServerKey":"pl181","X":615,"Y":533},{"Bonus":0,"Continent":"K65","ID":13629,"Name":"sony911","PlayerID":1415009,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13629","ServerKey":"pl181","X":562,"Y":610},{"Bonus":0,"Continent":"K55","ID":13630,"Name":"z 012","PlayerID":699342219,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13630","ServerKey":"pl181","X":559,"Y":598},{"Bonus":0,"Continent":"K55","ID":13631,"Name":"A 004","PlayerID":8078914,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13631","ServerKey":"pl181","X":596,"Y":561},{"Bonus":0,"Continent":"K43","ID":13632,"Name":"A0015","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13632","ServerKey":"pl181","X":376,"Y":469},{"Bonus":0,"Continent":"K55","ID":13633,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13633","ServerKey":"pl181","X":586,"Y":582},{"Bonus":0,"Continent":"K55","ID":13634,"Name":"poldi czytaj PW","PlayerID":6929240,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13634","ServerKey":"pl181","X":596,"Y":567},{"Bonus":0,"Continent":"K55","ID":13635,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13635","ServerKey":"pl181","X":583,"Y":585},{"Bonus":0,"Continent":"K45","ID":13636,"Name":"HOTEL 7","PlayerID":849064614,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13636","ServerKey":"pl181","X":571,"Y":407},{"Bonus":0,"Continent":"K65","ID":13637,"Name":"SkƂad","PlayerID":606407,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13637","ServerKey":"pl181","X":510,"Y":614},{"Bonus":0,"Continent":"K64","ID":13638,"Name":"Wall Market","PlayerID":8199417,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13638","ServerKey":"pl181","X":466,"Y":610},{"Bonus":0,"Continent":"K65","ID":13639,"Name":"ƚmieszki","PlayerID":3454753,"Points":9009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13639","ServerKey":"pl181","X":532,"Y":612},{"Bonus":0,"Continent":"K43","ID":13640,"Name":"005","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13640","ServerKey":"pl181","X":392,"Y":499},{"Bonus":0,"Continent":"K46","ID":13641,"Name":"058. Durocorotum","PlayerID":849091866,"Points":8563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13641","ServerKey":"pl181","X":602,"Y":442},{"Bonus":0,"Continent":"K43","ID":13643,"Name":"Land of Fire","PlayerID":698962117,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13643","ServerKey":"pl181","X":397,"Y":450},{"Bonus":0,"Continent":"K54","ID":13644,"Name":"010 (Popeye14)","PlayerID":698769107,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13644","ServerKey":"pl181","X":416,"Y":580},{"Bonus":0,"Continent":"K45","ID":13645,"Name":"[311] Chorągiewka na wietrze","PlayerID":848985692,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13645","ServerKey":"pl181","X":597,"Y":437},{"Bonus":0,"Continent":"K65","ID":13647,"Name":"Mako Reactor 1 - B7F","PlayerID":8199417,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13647","ServerKey":"pl181","X":517,"Y":614},{"Bonus":0,"Continent":"K53","ID":13649,"Name":"Dhaulagiri","PlayerID":699265922,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13649","ServerKey":"pl181","X":382,"Y":500},{"Bonus":0,"Continent":"K46","ID":13650,"Name":"080","PlayerID":699573053,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13650","ServerKey":"pl181","X":618,"Y":494},{"Bonus":0,"Continent":"K44","ID":13651,"Name":"0014 Oz","PlayerID":3909522,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13651","ServerKey":"pl181","X":432,"Y":408},{"Bonus":0,"Continent":"K64","ID":13652,"Name":"EKG .::. Siwyy8848/4","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13652","ServerKey":"pl181","X":494,"Y":616},{"Bonus":0,"Continent":"K34","ID":13654,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13654","ServerKey":"pl181","X":444,"Y":398},{"Bonus":0,"Continent":"K65","ID":13655,"Name":"*306*","PlayerID":606407,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13655","ServerKey":"pl181","X":511,"Y":614},{"Bonus":0,"Continent":"K34","ID":13656,"Name":"[0009]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13656","ServerKey":"pl181","X":449,"Y":398},{"Bonus":0,"Continent":"K65","ID":13657,"Name":"ƚmieszki","PlayerID":3454753,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13657","ServerKey":"pl181","X":533,"Y":614},{"Bonus":0,"Continent":"K64","ID":13658,"Name":"005.xxx","PlayerID":8612358,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13658","ServerKey":"pl181","X":465,"Y":609},{"Bonus":0,"Continent":"K54","ID":13659,"Name":"NOT?","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13659","ServerKey":"pl181","X":409,"Y":549},{"Bonus":0,"Continent":"K43","ID":13660,"Name":"A0024","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13660","ServerKey":"pl181","X":385,"Y":474},{"Bonus":0,"Continent":"K56","ID":13661,"Name":"001.","PlayerID":6520732,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13661","ServerKey":"pl181","X":609,"Y":536},{"Bonus":0,"Continent":"K64","ID":13663,"Name":"#009","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13663","ServerKey":"pl181","X":473,"Y":613},{"Bonus":0,"Continent":"K56","ID":13664,"Name":"022 R3MIX97","PlayerID":8323711,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13664","ServerKey":"pl181","X":621,"Y":518},{"Bonus":0,"Continent":"K44","ID":13665,"Name":"00061 Wioska","PlayerID":3909522,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13665","ServerKey":"pl181","X":428,"Y":410},{"Bonus":9,"Continent":"K43","ID":13666,"Name":"Osada koczownikĂłw","PlayerID":698807570,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13666","ServerKey":"pl181","X":391,"Y":464},{"Bonus":0,"Continent":"K54","ID":13667,"Name":"Wioska loos","PlayerID":9167250,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13667","ServerKey":"pl181","X":411,"Y":574},{"Bonus":0,"Continent":"K55","ID":13668,"Name":"PYRLANDIA 007 POD c","PlayerID":33900,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13668","ServerKey":"pl181","X":569,"Y":594},{"Bonus":0,"Continent":"K35","ID":13669,"Name":"B001","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13669","ServerKey":"pl181","X":509,"Y":385},{"Bonus":0,"Continent":"K55","ID":13670,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13670","ServerKey":"pl181","X":582,"Y":586},{"Bonus":0,"Continent":"K45","ID":13671,"Name":"116","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13671","ServerKey":"pl181","X":583,"Y":419},{"Bonus":6,"Continent":"K64","ID":13672,"Name":"EKG 022","PlayerID":33900,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13672","ServerKey":"pl181","X":494,"Y":619},{"Bonus":0,"Continent":"K54","ID":13673,"Name":"134 S016","PlayerID":699382126,"Points":7228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13673","ServerKey":"pl181","X":402,"Y":563},{"Bonus":0,"Continent":"K35","ID":13674,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13674","ServerKey":"pl181","X":535,"Y":387},{"Bonus":0,"Continent":"K64","ID":13675,"Name":"0325","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13675","ServerKey":"pl181","X":445,"Y":605},{"Bonus":0,"Continent":"K46","ID":13676,"Name":"Szlachcic","PlayerID":7915966,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13676","ServerKey":"pl181","X":613,"Y":468},{"Bonus":0,"Continent":"K43","ID":13677,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13677","ServerKey":"pl181","X":386,"Y":491},{"Bonus":0,"Continent":"K55","ID":13678,"Name":"Wioska 021","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13678","ServerKey":"pl181","X":587,"Y":581},{"Bonus":0,"Continent":"K65","ID":13680,"Name":"06. Aranea Highwind","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13680","ServerKey":"pl181","X":518,"Y":618},{"Bonus":0,"Continent":"K45","ID":13681,"Name":"DOM 6","PlayerID":849064614,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13681","ServerKey":"pl181","X":565,"Y":404},{"Bonus":0,"Continent":"K35","ID":13682,"Name":"061","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13682","ServerKey":"pl181","X":548,"Y":392},{"Bonus":0,"Continent":"K46","ID":13683,"Name":"*0013 Baraki","PlayerID":8459255,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13683","ServerKey":"pl181","X":600,"Y":437},{"Bonus":3,"Continent":"K64","ID":13684,"Name":"#005","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13684","ServerKey":"pl181","X":470,"Y":614},{"Bonus":0,"Continent":"K55","ID":13685,"Name":"067","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13685","ServerKey":"pl181","X":584,"Y":592},{"Bonus":0,"Continent":"K55","ID":13686,"Name":"015.","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13686","ServerKey":"pl181","X":566,"Y":596},{"Bonus":0,"Continent":"K65","ID":13687,"Name":"Sztum","PlayerID":606407,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13687","ServerKey":"pl181","X":511,"Y":618},{"Bonus":0,"Continent":"K45","ID":13688,"Name":"[341] Chorągiewka na wietrze","PlayerID":848985692,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13688","ServerKey":"pl181","X":592,"Y":423},{"Bonus":3,"Continent":"K64","ID":13689,"Name":"#005 S","PlayerID":33900,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13689","ServerKey":"pl181","X":471,"Y":614},{"Bonus":0,"Continent":"K65","ID":13690,"Name":"MƁODE ORƁY 002","PlayerID":33900,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13690","ServerKey":"pl181","X":576,"Y":600},{"Bonus":0,"Continent":"K44","ID":13691,"Name":"Cypis","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13691","ServerKey":"pl181","X":400,"Y":437},{"Bonus":0,"Continent":"K55","ID":13692,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13692","ServerKey":"pl181","X":576,"Y":590},{"Bonus":0,"Continent":"K34","ID":13693,"Name":"020","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13693","ServerKey":"pl181","X":488,"Y":386},{"Bonus":0,"Continent":"K64","ID":13694,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13694","ServerKey":"pl181","X":462,"Y":608},{"Bonus":0,"Continent":"K43","ID":13695,"Name":"Mniejsze zƂo 0013","PlayerID":699794765,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13695","ServerKey":"pl181","X":388,"Y":463},{"Bonus":0,"Continent":"K44","ID":13696,"Name":"00353 Nibylandia","PlayerID":3909522,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13696","ServerKey":"pl181","X":428,"Y":420},{"Bonus":0,"Continent":"K35","ID":13697,"Name":"006","PlayerID":1424656,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13697","ServerKey":"pl181","X":548,"Y":394},{"Bonus":0,"Continent":"K34","ID":13698,"Name":"029","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13698","ServerKey":"pl181","X":488,"Y":382},{"Bonus":0,"Continent":"K34","ID":13699,"Name":"K34 - [066] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13699","ServerKey":"pl181","X":464,"Y":388},{"Bonus":0,"Continent":"K55","ID":13700,"Name":"004.","PlayerID":873575,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13700","ServerKey":"pl181","X":563,"Y":595},{"Bonus":0,"Continent":"K44","ID":13701,"Name":"00173 Wieƛ","PlayerID":3909522,"Points":4856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13701","ServerKey":"pl181","X":434,"Y":405},{"Bonus":0,"Continent":"K35","ID":13702,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13702","ServerKey":"pl181","X":519,"Y":385},{"Bonus":0,"Continent":"K43","ID":13703,"Name":"Nanga Parbat","PlayerID":849013126,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13703","ServerKey":"pl181","X":381,"Y":498},{"Bonus":0,"Continent":"K56","ID":13704,"Name":"028 NOF CHERCH","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13704","ServerKey":"pl181","X":625,"Y":511},{"Bonus":0,"Continent":"K46","ID":13705,"Name":"D06","PlayerID":849093742,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13705","ServerKey":"pl181","X":617,"Y":483},{"Bonus":0,"Continent":"K44","ID":13706,"Name":"00171 dziki ogon","PlayerID":3909522,"Points":4799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13706","ServerKey":"pl181","X":438,"Y":407},{"Bonus":0,"Continent":"K53","ID":13707,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13707","ServerKey":"pl181","X":393,"Y":545},{"Bonus":0,"Continent":"K56","ID":13708,"Name":"01 Molly","PlayerID":699377151,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13708","ServerKey":"pl181","X":616,"Y":503},{"Bonus":0,"Continent":"K65","ID":13709,"Name":"0424","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13709","ServerKey":"pl181","X":547,"Y":609},{"Bonus":0,"Continent":"K34","ID":13711,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13711","ServerKey":"pl181","X":471,"Y":387},{"Bonus":0,"Continent":"K35","ID":13712,"Name":"037","PlayerID":849063849,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13712","ServerKey":"pl181","X":557,"Y":398},{"Bonus":0,"Continent":"K54","ID":13713,"Name":"A.023","PlayerID":849088243,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13713","ServerKey":"pl181","X":412,"Y":581},{"Bonus":0,"Continent":"K46","ID":13714,"Name":"WW8","PlayerID":698845189,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13714","ServerKey":"pl181","X":617,"Y":481},{"Bonus":0,"Continent":"K45","ID":13715,"Name":"023","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13715","ServerKey":"pl181","X":562,"Y":404},{"Bonus":0,"Continent":"K44","ID":13716,"Name":"x03","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13716","ServerKey":"pl181","X":406,"Y":432},{"Bonus":0,"Continent":"K64","ID":13717,"Name":"010. GĂłry Szare","PlayerID":699494488,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13717","ServerKey":"pl181","X":490,"Y":619},{"Bonus":0,"Continent":"K65","ID":13718,"Name":"Teby_26","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13718","ServerKey":"pl181","X":502,"Y":619},{"Bonus":0,"Continent":"K54","ID":13719,"Name":"077 - Stronghold","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13719","ServerKey":"pl181","X":421,"Y":589},{"Bonus":0,"Continent":"K35","ID":13720,"Name":"022","PlayerID":1424656,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13720","ServerKey":"pl181","X":545,"Y":391},{"Bonus":0,"Continent":"K35","ID":13721,"Name":"Twierdza","PlayerID":699368887,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13721","ServerKey":"pl181","X":505,"Y":381},{"Bonus":0,"Continent":"K53","ID":13722,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13722","ServerKey":"pl181","X":384,"Y":508},{"Bonus":0,"Continent":"K55","ID":13723,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13723","ServerKey":"pl181","X":582,"Y":584},{"Bonus":0,"Continent":"K34","ID":13724,"Name":".027.","PlayerID":698489071,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13724","ServerKey":"pl181","X":483,"Y":385},{"Bonus":0,"Continent":"K56","ID":13725,"Name":"SiƂa, Masa, RzeĆșba 13","PlayerID":699379895,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13725","ServerKey":"pl181","X":616,"Y":511},{"Bonus":0,"Continent":"K35","ID":13726,"Name":"011","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13726","ServerKey":"pl181","X":503,"Y":384},{"Bonus":0,"Continent":"K65","ID":13727,"Name":"SSJ 008","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13727","ServerKey":"pl181","X":500,"Y":615},{"Bonus":0,"Continent":"K34","ID":13728,"Name":".017.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13728","ServerKey":"pl181","X":483,"Y":383},{"Bonus":0,"Continent":"K65","ID":13729,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13729","ServerKey":"pl181","X":536,"Y":613},{"Bonus":0,"Continent":"K45","ID":13730,"Name":"Gattacka","PlayerID":699298370,"Points":10556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13730","ServerKey":"pl181","X":578,"Y":498},{"Bonus":0,"Continent":"K55","ID":13731,"Name":"Z 003","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13731","ServerKey":"pl181","X":563,"Y":598},{"Bonus":0,"Continent":"K35","ID":13732,"Name":"A012","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13732","ServerKey":"pl181","X":513,"Y":383},{"Bonus":0,"Continent":"K34","ID":13733,"Name":"K34 - [009] Before Land","PlayerID":699088769,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13733","ServerKey":"pl181","X":458,"Y":389},{"Bonus":0,"Continent":"K64","ID":13734,"Name":"#015","PlayerID":849001572,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13734","ServerKey":"pl181","X":486,"Y":606},{"Bonus":0,"Continent":"K45","ID":13736,"Name":"[336] Chorągiewka na wietrze","PlayerID":848985692,"Points":10527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13736","ServerKey":"pl181","X":587,"Y":421},{"Bonus":0,"Continent":"K54","ID":13737,"Name":"28. Wioska 28","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13737","ServerKey":"pl181","X":409,"Y":570},{"Bonus":0,"Continent":"K54","ID":13738,"Name":"075 - Schowek na bity","PlayerID":225023,"Points":8446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13738","ServerKey":"pl181","X":423,"Y":588},{"Bonus":0,"Continent":"K46","ID":13739,"Name":"Abadonia ZZZ","PlayerID":699347951,"Points":11111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13739","ServerKey":"pl181","X":618,"Y":486},{"Bonus":0,"Continent":"K35","ID":13740,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13740","ServerKey":"pl181","X":526,"Y":383},{"Bonus":0,"Continent":"K55","ID":13741,"Name":"039","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13741","ServerKey":"pl181","X":591,"Y":575},{"Bonus":0,"Continent":"K53","ID":13742,"Name":"NWO","PlayerID":849030226,"Points":9762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13742","ServerKey":"pl181","X":386,"Y":524},{"Bonus":0,"Continent":"K54","ID":13743,"Name":"064 - Nuda","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13743","ServerKey":"pl181","X":427,"Y":587},{"Bonus":0,"Continent":"K35","ID":13744,"Name":"006","PlayerID":849063849,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13744","ServerKey":"pl181","X":565,"Y":399},{"Bonus":0,"Continent":"K64","ID":13745,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13745","ServerKey":"pl181","X":450,"Y":607},{"Bonus":0,"Continent":"K46","ID":13747,"Name":"Jaaa","PlayerID":698635863,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13747","ServerKey":"pl181","X":609,"Y":464},{"Bonus":0,"Continent":"K56","ID":13748,"Name":"0039","PlayerID":6510480,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13748","ServerKey":"pl181","X":615,"Y":519},{"Bonus":0,"Continent":"K35","ID":13749,"Name":"A018","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13749","ServerKey":"pl181","X":518,"Y":383},{"Bonus":0,"Continent":"K45","ID":13751,"Name":"043","PlayerID":7271812,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13751","ServerKey":"pl181","X":568,"Y":407},{"Bonus":0,"Continent":"K55","ID":13752,"Name":"A.013","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13752","ServerKey":"pl181","X":596,"Y":563},{"Bonus":0,"Continent":"K34","ID":13753,"Name":"066","PlayerID":698739350,"Points":8664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13753","ServerKey":"pl181","X":474,"Y":388},{"Bonus":0,"Continent":"K44","ID":13754,"Name":"K44 x005","PlayerID":698364331,"Points":9466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13754","ServerKey":"pl181","X":437,"Y":403},{"Bonus":0,"Continent":"K43","ID":13755,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13755","ServerKey":"pl181","X":392,"Y":456},{"Bonus":0,"Continent":"K54","ID":13756,"Name":"W 001 bombastik","PlayerID":849084740,"Points":9610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13756","ServerKey":"pl181","X":431,"Y":592},{"Bonus":0,"Continent":"K56","ID":13757,"Name":"W.181/15","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13757","ServerKey":"pl181","X":611,"Y":537},{"Bonus":0,"Continent":"K56","ID":13758,"Name":"013","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13758","ServerKey":"pl181","X":612,"Y":529},{"Bonus":0,"Continent":"K35","ID":13759,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13759","ServerKey":"pl181","X":526,"Y":385},{"Bonus":0,"Continent":"K35","ID":13760,"Name":"Wioska MaximusGreat","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13760","ServerKey":"pl181","X":529,"Y":386},{"Bonus":0,"Continent":"K45","ID":13761,"Name":"019","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13761","ServerKey":"pl181","X":573,"Y":408},{"Bonus":0,"Continent":"K35","ID":13762,"Name":"029","PlayerID":849063849,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13762","ServerKey":"pl181","X":557,"Y":394},{"Bonus":0,"Continent":"K43","ID":13763,"Name":"Knowhere","PlayerID":699723284,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13763","ServerKey":"pl181","X":385,"Y":493},{"Bonus":0,"Continent":"K56","ID":13764,"Name":"OldTrafford","PlayerID":699795378,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13764","ServerKey":"pl181","X":620,"Y":509},{"Bonus":0,"Continent":"K55","ID":13765,"Name":"z 004","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13765","ServerKey":"pl181","X":561,"Y":599},{"Bonus":0,"Continent":"K35","ID":13766,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13766","ServerKey":"pl181","X":522,"Y":387},{"Bonus":0,"Continent":"K44","ID":13767,"Name":"Szlachcic","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13767","ServerKey":"pl181","X":486,"Y":467},{"Bonus":1,"Continent":"K54","ID":13768,"Name":"SępĂłlno KrajeƄskie","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13768","ServerKey":"pl181","X":412,"Y":577},{"Bonus":0,"Continent":"K53","ID":13769,"Name":"102 Myknięty jak 102","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13769","ServerKey":"pl181","X":393,"Y":551},{"Bonus":0,"Continent":"K44","ID":13770,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13770","ServerKey":"pl181","X":402,"Y":484},{"Bonus":0,"Continent":"K53","ID":13771,"Name":"*003 Grenlandia","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13771","ServerKey":"pl181","X":389,"Y":540},{"Bonus":0,"Continent":"K34","ID":13772,"Name":"K34 - [069] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13772","ServerKey":"pl181","X":454,"Y":393},{"Bonus":0,"Continent":"K44","ID":13774,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13774","ServerKey":"pl181","X":438,"Y":400},{"Bonus":0,"Continent":"K35","ID":13775,"Name":"A001","PlayerID":699208929,"Points":10356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13775","ServerKey":"pl181","X":520,"Y":368},{"Bonus":7,"Continent":"K56","ID":13776,"Name":"030 Zakyntos","PlayerID":8323711,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13776","ServerKey":"pl181","X":614,"Y":516},{"Bonus":0,"Continent":"K44","ID":13777,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13777","ServerKey":"pl181","X":403,"Y":436},{"Bonus":0,"Continent":"K43","ID":13778,"Name":"Mniejsze zƂo 0075","PlayerID":699794765,"Points":11079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13778","ServerKey":"pl181","X":388,"Y":460},{"Bonus":5,"Continent":"K45","ID":13779,"Name":"078","PlayerID":849064752,"Points":10013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13779","ServerKey":"pl181","X":575,"Y":411},{"Bonus":0,"Continent":"K55","ID":13780,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13780","ServerKey":"pl181","X":581,"Y":584},{"Bonus":0,"Continent":"K56","ID":13781,"Name":"11 VHS","PlayerID":9314079,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13781","ServerKey":"pl181","X":619,"Y":514},{"Bonus":0,"Continent":"K55","ID":13782,"Name":"PYRLANDIA 006","PlayerID":33900,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13782","ServerKey":"pl181","X":569,"Y":593},{"Bonus":0,"Continent":"K44","ID":13783,"Name":"Barba 2","PlayerID":699796330,"Points":9928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13783","ServerKey":"pl181","X":432,"Y":407},{"Bonus":0,"Continent":"K56","ID":13784,"Name":"A.009","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13784","ServerKey":"pl181","X":602,"Y":557},{"Bonus":0,"Continent":"K55","ID":13785,"Name":"069","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13785","ServerKey":"pl181","X":585,"Y":589},{"Bonus":0,"Continent":"K56","ID":13786,"Name":"0017. A -","PlayerID":7125212,"Points":6728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13786","ServerKey":"pl181","X":616,"Y":515},{"Bonus":0,"Continent":"K55","ID":13787,"Name":"Wioska5,","PlayerID":8369778,"Points":8452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13787","ServerKey":"pl181","X":509,"Y":592},{"Bonus":0,"Continent":"K54","ID":13788,"Name":"C Zach 006 Pyskowice","PlayerID":849084740,"Points":7574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13788","ServerKey":"pl181","X":411,"Y":572},{"Bonus":0,"Continent":"K56","ID":13789,"Name":"014","PlayerID":849006412,"Points":10533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13789","ServerKey":"pl181","X":617,"Y":501},{"Bonus":5,"Continent":"K64","ID":13790,"Name":"0037","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13790","ServerKey":"pl181","X":462,"Y":610},{"Bonus":0,"Continent":"K44","ID":13791,"Name":"x12","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13791","ServerKey":"pl181","X":404,"Y":429},{"Bonus":0,"Continent":"K44","ID":13792,"Name":"[0010]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13792","ServerKey":"pl181","X":423,"Y":409},{"Bonus":0,"Continent":"K45","ID":13793,"Name":"* 1 Teraz bedzie Akcja -2","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13793","ServerKey":"pl181","X":595,"Y":434},{"Bonus":0,"Continent":"K44","ID":13794,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13794","ServerKey":"pl181","X":414,"Y":419},{"Bonus":0,"Continent":"K53","ID":13795,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":8397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13795","ServerKey":"pl181","X":395,"Y":549},{"Bonus":0,"Continent":"K44","ID":13796,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13796","ServerKey":"pl181","X":409,"Y":428},{"Bonus":0,"Continent":"K44","ID":13797,"Name":"K44 x016","PlayerID":698364331,"Points":8135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13797","ServerKey":"pl181","X":433,"Y":405},{"Bonus":0,"Continent":"K65","ID":13798,"Name":"CALL 1009","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13798","ServerKey":"pl181","X":525,"Y":613},{"Bonus":0,"Continent":"K46","ID":13800,"Name":"088","PlayerID":699573053,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13800","ServerKey":"pl181","X":615,"Y":492},{"Bonus":0,"Continent":"K65","ID":13801,"Name":"z 008","PlayerID":699342219,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13801","ServerKey":"pl181","X":560,"Y":601},{"Bonus":0,"Continent":"K34","ID":13802,"Name":"[0027]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13802","ServerKey":"pl181","X":448,"Y":393},{"Bonus":0,"Continent":"K34","ID":13804,"Name":"042","PlayerID":698739350,"Points":7200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13804","ServerKey":"pl181","X":498,"Y":381},{"Bonus":0,"Continent":"K53","ID":13805,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13805","ServerKey":"pl181","X":387,"Y":520},{"Bonus":0,"Continent":"K53","ID":13806,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13806","ServerKey":"pl181","X":383,"Y":519},{"Bonus":0,"Continent":"K56","ID":13807,"Name":"012","PlayerID":6160655,"Points":10566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13807","ServerKey":"pl181","X":605,"Y":546},{"Bonus":0,"Continent":"K45","ID":13808,"Name":"Belvedere 003","PlayerID":699756210,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13808","ServerKey":"pl181","X":578,"Y":409},{"Bonus":0,"Continent":"K44","ID":13809,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13809","ServerKey":"pl181","X":435,"Y":401},{"Bonus":7,"Continent":"K55","ID":13810,"Name":"Runing Up That Hill","PlayerID":848926293,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13810","ServerKey":"pl181","X":596,"Y":566},{"Bonus":0,"Continent":"K53","ID":13812,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":6385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13812","ServerKey":"pl181","X":391,"Y":550},{"Bonus":0,"Continent":"K43","ID":13813,"Name":"Negr","PlayerID":699265922,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13813","ServerKey":"pl181","X":381,"Y":493},{"Bonus":0,"Continent":"K35","ID":13814,"Name":"Emklan Biedanu","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13814","ServerKey":"pl181","X":516,"Y":371},{"Bonus":0,"Continent":"K35","ID":13815,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13815","ServerKey":"pl181","X":520,"Y":384},{"Bonus":0,"Continent":"K55","ID":13816,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13816","ServerKey":"pl181","X":540,"Y":532},{"Bonus":0,"Continent":"K54","ID":13817,"Name":"Chojnice","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13817","ServerKey":"pl181","X":409,"Y":571},{"Bonus":0,"Continent":"K45","ID":13819,"Name":"002","PlayerID":849063849,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13819","ServerKey":"pl181","X":567,"Y":401},{"Bonus":0,"Continent":"K64","ID":13820,"Name":"0328","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13820","ServerKey":"pl181","X":449,"Y":605},{"Bonus":0,"Continent":"K64","ID":13822,"Name":"0334","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13822","ServerKey":"pl181","X":447,"Y":603},{"Bonus":0,"Continent":"K53","ID":13823,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13823","ServerKey":"pl181","X":383,"Y":521},{"Bonus":0,"Continent":"K56","ID":13824,"Name":"=003= W czarnym lesie","PlayerID":3781794,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13824","ServerKey":"pl181","X":609,"Y":550},{"Bonus":0,"Continent":"K64","ID":13825,"Name":"0203","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13825","ServerKey":"pl181","X":452,"Y":610},{"Bonus":0,"Continent":"K44","ID":13826,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13826","ServerKey":"pl181","X":413,"Y":418},{"Bonus":0,"Continent":"K54","ID":13827,"Name":"Madryt (Mieszko 1995)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13827","ServerKey":"pl181","X":413,"Y":581},{"Bonus":0,"Continent":"K55","ID":13828,"Name":"Wioska bary20006","PlayerID":1715091,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13828","ServerKey":"pl181","X":589,"Y":576},{"Bonus":0,"Continent":"K34","ID":13829,"Name":"017","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13829","ServerKey":"pl181","X":492,"Y":385},{"Bonus":0,"Continent":"K64","ID":13830,"Name":"050.","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13830","ServerKey":"pl181","X":486,"Y":627},{"Bonus":0,"Continent":"K44","ID":13831,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13831","ServerKey":"pl181","X":400,"Y":433},{"Bonus":0,"Continent":"K34","ID":13832,"Name":".018.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13832","ServerKey":"pl181","X":482,"Y":383},{"Bonus":0,"Continent":"K53","ID":13833,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13833","ServerKey":"pl181","X":383,"Y":514},{"Bonus":3,"Continent":"K54","ID":13834,"Name":"B01. obstawiona (Motonari)","PlayerID":698769107,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13834","ServerKey":"pl181","X":441,"Y":599},{"Bonus":0,"Continent":"K53","ID":13835,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13835","ServerKey":"pl181","X":396,"Y":549},{"Bonus":0,"Continent":"K43","ID":13836,"Name":"A0030","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13836","ServerKey":"pl181","X":387,"Y":481},{"Bonus":0,"Continent":"K56","ID":13837,"Name":"003","PlayerID":6160655,"Points":10563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13837","ServerKey":"pl181","X":606,"Y":545},{"Bonus":0,"Continent":"K34","ID":13838,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13838","ServerKey":"pl181","X":477,"Y":388},{"Bonus":0,"Continent":"K43","ID":13839,"Name":"Oaza","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13839","ServerKey":"pl181","X":380,"Y":496},{"Bonus":0,"Continent":"K34","ID":13840,"Name":"071","PlayerID":698739350,"Points":7378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13840","ServerKey":"pl181","X":481,"Y":381},{"Bonus":0,"Continent":"K53","ID":13841,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13841","ServerKey":"pl181","X":383,"Y":513},{"Bonus":0,"Continent":"K56","ID":13842,"Name":"0012","PlayerID":6510480,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13842","ServerKey":"pl181","X":613,"Y":524},{"Bonus":0,"Continent":"K65","ID":13843,"Name":"amator","PlayerID":848915531,"Points":9176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13843","ServerKey":"pl181","X":527,"Y":613},{"Bonus":0,"Continent":"K64","ID":13844,"Name":"EKG M07","PlayerID":33900,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13844","ServerKey":"pl181","X":476,"Y":615},{"Bonus":0,"Continent":"K55","ID":13845,"Name":"K55","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13845","ServerKey":"pl181","X":544,"Y":538},{"Bonus":0,"Continent":"K45","ID":13846,"Name":"055","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13846","ServerKey":"pl181","X":546,"Y":421},{"Bonus":0,"Continent":"K54","ID":13847,"Name":"016. Gloria Victis","PlayerID":848886973,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13847","ServerKey":"pl181","X":424,"Y":593},{"Bonus":2,"Continent":"K65","ID":13848,"Name":"SkƂad","PlayerID":606407,"Points":8672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13848","ServerKey":"pl181","X":508,"Y":617},{"Bonus":0,"Continent":"K64","ID":13849,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13849","ServerKey":"pl181","X":456,"Y":606},{"Bonus":0,"Continent":"K46","ID":13850,"Name":"23 XXX","PlayerID":699377151,"Points":456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13850","ServerKey":"pl181","X":619,"Y":493},{"Bonus":0,"Continent":"K34","ID":13851,"Name":"023","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13851","ServerKey":"pl181","X":499,"Y":384},{"Bonus":0,"Continent":"K55","ID":13853,"Name":"Gattacka","PlayerID":699298370,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13853","ServerKey":"pl181","X":587,"Y":500},{"Bonus":0,"Continent":"K64","ID":13854,"Name":"NIERAJ003","PlayerID":33900,"Points":10215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13854","ServerKey":"pl181","X":469,"Y":613},{"Bonus":0,"Continent":"K43","ID":13855,"Name":"Wioska xHavajek","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13855","ServerKey":"pl181","X":395,"Y":464},{"Bonus":0,"Continent":"K64","ID":13856,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13856","ServerKey":"pl181","X":459,"Y":613},{"Bonus":3,"Continent":"K35","ID":13857,"Name":"ADEN","PlayerID":698588535,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13857","ServerKey":"pl181","X":521,"Y":383},{"Bonus":0,"Continent":"K44","ID":13858,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13858","ServerKey":"pl181","X":437,"Y":402},{"Bonus":0,"Continent":"K44","ID":13859,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13859","ServerKey":"pl181","X":411,"Y":421},{"Bonus":0,"Continent":"K65","ID":13860,"Name":"006.","PlayerID":873575,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13860","ServerKey":"pl181","X":563,"Y":600},{"Bonus":0,"Continent":"K56","ID":13861,"Name":"033 Lesbos","PlayerID":8323711,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13861","ServerKey":"pl181","X":613,"Y":518},{"Bonus":0,"Continent":"K55","ID":13862,"Name":"002","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13862","ServerKey":"pl181","X":581,"Y":598},{"Bonus":0,"Continent":"K35","ID":13863,"Name":"Wioska henry113","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13863","ServerKey":"pl181","X":512,"Y":384},{"Bonus":0,"Continent":"K56","ID":13864,"Name":"003","PlayerID":849006412,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13864","ServerKey":"pl181","X":615,"Y":500},{"Bonus":0,"Continent":"K43","ID":13865,"Name":"Zulus","PlayerID":699265922,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13865","ServerKey":"pl181","X":384,"Y":489},{"Bonus":0,"Continent":"K53","ID":13866,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13866","ServerKey":"pl181","X":385,"Y":525},{"Bonus":0,"Continent":"K43","ID":13867,"Name":"Czako","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13867","ServerKey":"pl181","X":383,"Y":493},{"Bonus":0,"Continent":"K46","ID":13868,"Name":"L 3","PlayerID":849027653,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13868","ServerKey":"pl181","X":615,"Y":477},{"Bonus":0,"Continent":"K55","ID":13870,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13870","ServerKey":"pl181","X":572,"Y":551},{"Bonus":0,"Continent":"K55","ID":13871,"Name":"PYRLANDIA 004 + 2R","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13871","ServerKey":"pl181","X":567,"Y":593},{"Bonus":0,"Continent":"K65","ID":13872,"Name":"#0020","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13872","ServerKey":"pl181","X":523,"Y":625},{"Bonus":0,"Continent":"K56","ID":13873,"Name":"0022","PlayerID":6510480,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13873","ServerKey":"pl181","X":615,"Y":529},{"Bonus":0,"Continent":"K54","ID":13874,"Name":"041- friday","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13874","ServerKey":"pl181","X":409,"Y":577},{"Bonus":0,"Continent":"K53","ID":13875,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13875","ServerKey":"pl181","X":382,"Y":512},{"Bonus":0,"Continent":"K53","ID":13876,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13876","ServerKey":"pl181","X":382,"Y":509},{"Bonus":0,"Continent":"K53","ID":13877,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13877","ServerKey":"pl181","X":382,"Y":511},{"Bonus":0,"Continent":"K46","ID":13878,"Name":"Wioska (007)","PlayerID":698232227,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13878","ServerKey":"pl181","X":620,"Y":473},{"Bonus":0,"Continent":"K34","ID":13880,"Name":"031","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13880","ServerKey":"pl181","X":489,"Y":381},{"Bonus":0,"Continent":"K45","ID":13881,"Name":"40 im Mieklina","PlayerID":849037469,"Points":6683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13881","ServerKey":"pl181","X":590,"Y":427},{"Bonus":0,"Continent":"K34","ID":13882,"Name":"K34 - [084] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13882","ServerKey":"pl181","X":452,"Y":391},{"Bonus":5,"Continent":"K46","ID":13883,"Name":"A020","PlayerID":699722599,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13883","ServerKey":"pl181","X":602,"Y":444},{"Bonus":0,"Continent":"K35","ID":13884,"Name":"A-003","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13884","ServerKey":"pl181","X":533,"Y":388},{"Bonus":0,"Continent":"K65","ID":13885,"Name":"- 042 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13885","ServerKey":"pl181","X":544,"Y":609},{"Bonus":0,"Continent":"K35","ID":13886,"Name":"D020","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13886","ServerKey":"pl181","X":506,"Y":384},{"Bonus":0,"Continent":"K53","ID":13887,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13887","ServerKey":"pl181","X":381,"Y":516},{"Bonus":0,"Continent":"K55","ID":13888,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13888","ServerKey":"pl181","X":586,"Y":583},{"Bonus":0,"Continent":"K43","ID":13889,"Name":"0008","PlayerID":698807570,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13889","ServerKey":"pl181","X":387,"Y":461},{"Bonus":0,"Continent":"K34","ID":13890,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13890","ServerKey":"pl181","X":416,"Y":399},{"Bonus":0,"Continent":"K43","ID":13891,"Name":"Cho Oyu","PlayerID":699265922,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13891","ServerKey":"pl181","X":383,"Y":494},{"Bonus":0,"Continent":"K35","ID":13892,"Name":"Twierdza #2","PlayerID":699368887,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13892","ServerKey":"pl181","X":505,"Y":382},{"Bonus":0,"Continent":"K34","ID":13893,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13893","ServerKey":"pl181","X":467,"Y":386},{"Bonus":0,"Continent":"K65","ID":13895,"Name":"- 012 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13895","ServerKey":"pl181","X":548,"Y":606},{"Bonus":0,"Continent":"K54","ID":13896,"Name":"0000004%","PlayerID":849089881,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13896","ServerKey":"pl181","X":425,"Y":593},{"Bonus":5,"Continent":"K34","ID":13897,"Name":"K34 - [109] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13897","ServerKey":"pl181","X":452,"Y":390},{"Bonus":0,"Continent":"K43","ID":13898,"Name":"0010","PlayerID":3698627,"Points":10447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13898","ServerKey":"pl181","X":386,"Y":460},{"Bonus":0,"Continent":"K35","ID":13899,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13899","ServerKey":"pl181","X":527,"Y":386},{"Bonus":0,"Continent":"K64","ID":13900,"Name":"#061","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13900","ServerKey":"pl181","X":481,"Y":617},{"Bonus":0,"Continent":"K56","ID":13901,"Name":"017","PlayerID":849006412,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13901","ServerKey":"pl181","X":615,"Y":501},{"Bonus":0,"Continent":"K55","ID":13902,"Name":"Wioska 019","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13902","ServerKey":"pl181","X":591,"Y":577},{"Bonus":0,"Continent":"K34","ID":13903,"Name":"K34 - [072] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13903","ServerKey":"pl181","X":450,"Y":391},{"Bonus":0,"Continent":"K64","ID":13904,"Name":"0330","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13904","ServerKey":"pl181","X":447,"Y":606},{"Bonus":0,"Continent":"K53","ID":13905,"Name":"096 Mienia zawĂłd Roman ChędoĆŒy","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13905","ServerKey":"pl181","X":395,"Y":556},{"Bonus":0,"Continent":"K53","ID":13906,"Name":"092 PYTAƃ BRAK","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13906","ServerKey":"pl181","X":393,"Y":554},{"Bonus":0,"Continent":"K65","ID":13907,"Name":"- 086 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13907","ServerKey":"pl181","X":549,"Y":608},{"Bonus":0,"Continent":"K56","ID":13908,"Name":"W.181/10","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13908","ServerKey":"pl181","X":616,"Y":526},{"Bonus":0,"Continent":"K44","ID":13909,"Name":"FKG 01-06","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13909","ServerKey":"pl181","X":421,"Y":411},{"Bonus":0,"Continent":"K34","ID":13910,"Name":"[0074]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13910","ServerKey":"pl181","X":451,"Y":394},{"Bonus":0,"Continent":"K35","ID":13911,"Name":".:117:. Niangmen","PlayerID":848934935,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13911","ServerKey":"pl181","X":507,"Y":396},{"Bonus":0,"Continent":"K65","ID":13912,"Name":"*304*","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13912","ServerKey":"pl181","X":509,"Y":615},{"Bonus":0,"Continent":"K65","ID":13913,"Name":"026","PlayerID":699878511,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13913","ServerKey":"pl181","X":502,"Y":628},{"Bonus":0,"Continent":"K46","ID":13914,"Name":"A016","PlayerID":699722599,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13914","ServerKey":"pl181","X":608,"Y":447},{"Bonus":0,"Continent":"K44","ID":13915,"Name":"Suppi","PlayerID":699856962,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13915","ServerKey":"pl181","X":426,"Y":424},{"Bonus":0,"Continent":"K53","ID":13916,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13916","ServerKey":"pl181","X":381,"Y":505},{"Bonus":0,"Continent":"K45","ID":13917,"Name":"D010","PlayerID":699761749,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13917","ServerKey":"pl181","X":598,"Y":415},{"Bonus":0,"Continent":"K65","ID":13918,"Name":"ƚmieszki","PlayerID":3454753,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13918","ServerKey":"pl181","X":533,"Y":610},{"Bonus":0,"Continent":"K53","ID":13920,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13920","ServerKey":"pl181","X":388,"Y":537},{"Bonus":0,"Continent":"K44","ID":13921,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13921","ServerKey":"pl181","X":411,"Y":422},{"Bonus":0,"Continent":"K53","ID":13922,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13922","ServerKey":"pl181","X":382,"Y":523},{"Bonus":0,"Continent":"K46","ID":13924,"Name":"[212] WEST","PlayerID":848985692,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13924","ServerKey":"pl181","X":609,"Y":452},{"Bonus":0,"Continent":"K53","ID":13925,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13925","ServerKey":"pl181","X":381,"Y":502},{"Bonus":0,"Continent":"K65","ID":13926,"Name":"ƚmieszki","PlayerID":3454753,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13926","ServerKey":"pl181","X":529,"Y":616},{"Bonus":0,"Continent":"K44","ID":13927,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13927","ServerKey":"pl181","X":436,"Y":402},{"Bonus":0,"Continent":"K53","ID":13928,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13928","ServerKey":"pl181","X":384,"Y":518},{"Bonus":0,"Continent":"K34","ID":13929,"Name":"K34 - [088] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13929","ServerKey":"pl181","X":451,"Y":391},{"Bonus":0,"Continent":"K46","ID":13930,"Name":"JaawmG P","PlayerID":698635863,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13930","ServerKey":"pl181","X":617,"Y":473},{"Bonus":0,"Continent":"K35","ID":13931,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13931","ServerKey":"pl181","X":531,"Y":389},{"Bonus":0,"Continent":"K64","ID":13932,"Name":"#028","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13932","ServerKey":"pl181","X":457,"Y":607},{"Bonus":0,"Continent":"K43","ID":13933,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13933","ServerKey":"pl181","X":390,"Y":458},{"Bonus":0,"Continent":"K53","ID":13934,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13934","ServerKey":"pl181","X":381,"Y":519},{"Bonus":0,"Continent":"K53","ID":13935,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13935","ServerKey":"pl181","X":383,"Y":526},{"Bonus":0,"Continent":"K55","ID":13936,"Name":"Wioska 015","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13936","ServerKey":"pl181","X":593,"Y":576},{"Bonus":0,"Continent":"K44","ID":13937,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13937","ServerKey":"pl181","X":434,"Y":401},{"Bonus":0,"Continent":"K45","ID":13938,"Name":"079 FAT FAT","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13938","ServerKey":"pl181","X":581,"Y":413},{"Bonus":0,"Continent":"K35","ID":13939,"Name":"030","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13939","ServerKey":"pl181","X":501,"Y":374},{"Bonus":0,"Continent":"K53","ID":13940,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13940","ServerKey":"pl181","X":382,"Y":505},{"Bonus":0,"Continent":"K35","ID":13941,"Name":"ADEN","PlayerID":698588535,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13941","ServerKey":"pl181","X":524,"Y":384},{"Bonus":0,"Continent":"K55","ID":13942,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13942","ServerKey":"pl181","X":580,"Y":587},{"Bonus":0,"Continent":"K56","ID":13943,"Name":"rakieta 005","PlayerID":848928486,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13943","ServerKey":"pl181","X":612,"Y":543},{"Bonus":0,"Continent":"K56","ID":13945,"Name":"007","PlayerID":849006412,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13945","ServerKey":"pl181","X":620,"Y":502},{"Bonus":0,"Continent":"K44","ID":13946,"Name":"[0110]","PlayerID":8630972,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13946","ServerKey":"pl181","X":421,"Y":415},{"Bonus":0,"Continent":"K44","ID":13947,"Name":"00172","PlayerID":3909522,"Points":4296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13947","ServerKey":"pl181","X":439,"Y":406},{"Bonus":0,"Continent":"K53","ID":13948,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13948","ServerKey":"pl181","X":380,"Y":512},{"Bonus":0,"Continent":"K55","ID":13949,"Name":"Mzm49","PlayerID":7142659,"Points":8748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13949","ServerKey":"pl181","X":544,"Y":517},{"Bonus":0,"Continent":"K44","ID":13950,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13950","ServerKey":"pl181","X":434,"Y":402},{"Bonus":0,"Continent":"K53","ID":13951,"Name":"Sir Hood 3","PlayerID":1804724,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13951","ServerKey":"pl181","X":385,"Y":531},{"Bonus":0,"Continent":"K65","ID":13952,"Name":"z 024","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13952","ServerKey":"pl181","X":560,"Y":604},{"Bonus":0,"Continent":"K44","ID":13953,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13953","ServerKey":"pl181","X":439,"Y":401},{"Bonus":0,"Continent":"K45","ID":13954,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13954","ServerKey":"pl181","X":598,"Y":495},{"Bonus":0,"Continent":"K53","ID":13955,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13955","ServerKey":"pl181","X":385,"Y":535},{"Bonus":0,"Continent":"K53","ID":13956,"Name":"WB3","PlayerID":849030226,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13956","ServerKey":"pl181","X":387,"Y":529},{"Bonus":0,"Continent":"K43","ID":13957,"Name":"A0026","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13957","ServerKey":"pl181","X":384,"Y":475},{"Bonus":0,"Continent":"K45","ID":13958,"Name":"Szlachcic","PlayerID":699170684,"Points":9453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13958","ServerKey":"pl181","X":587,"Y":418},{"Bonus":0,"Continent":"K45","ID":13959,"Name":"Wioska barbarzyƄska 007|","PlayerID":6343784,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13959","ServerKey":"pl181","X":575,"Y":407},{"Bonus":0,"Continent":"K44","ID":13960,"Name":"[0011]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13960","ServerKey":"pl181","X":420,"Y":414},{"Bonus":0,"Continent":"K35","ID":13961,"Name":"D022","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13961","ServerKey":"pl181","X":508,"Y":382},{"Bonus":0,"Continent":"K35","ID":13962,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13962","ServerKey":"pl181","X":523,"Y":387},{"Bonus":0,"Continent":"K65","ID":13963,"Name":"z 026","PlayerID":699342219,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13963","ServerKey":"pl181","X":561,"Y":603},{"Bonus":0,"Continent":"K43","ID":13964,"Name":"szlachcic","PlayerID":698807570,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13964","ServerKey":"pl181","X":385,"Y":469},{"Bonus":0,"Continent":"K54","ID":13965,"Name":"011. Gloria Victis","PlayerID":848886973,"Points":10449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13965","ServerKey":"pl181","X":424,"Y":589},{"Bonus":0,"Continent":"K45","ID":13966,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13966","ServerKey":"pl181","X":536,"Y":423},{"Bonus":0,"Continent":"K46","ID":13967,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13967","ServerKey":"pl181","X":607,"Y":499},{"Bonus":0,"Continent":"K45","ID":13968,"Name":"035","PlayerID":849063849,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13968","ServerKey":"pl181","X":557,"Y":400},{"Bonus":0,"Continent":"K56","ID":13969,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13969","ServerKey":"pl181","X":600,"Y":567},{"Bonus":0,"Continent":"K56","ID":13970,"Name":"006.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13970","ServerKey":"pl181","X":612,"Y":537},{"Bonus":0,"Continent":"K53","ID":13971,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13971","ServerKey":"pl181","X":387,"Y":526},{"Bonus":0,"Continent":"K46","ID":13972,"Name":"[209] WEST","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13972","ServerKey":"pl181","X":609,"Y":453},{"Bonus":0,"Continent":"K55","ID":13973,"Name":"[081]","PlayerID":848985692,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13973","ServerKey":"pl181","X":532,"Y":528},{"Bonus":0,"Continent":"K45","ID":13974,"Name":"HOTEL 6","PlayerID":849064614,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13974","ServerKey":"pl181","X":570,"Y":407},{"Bonus":0,"Continent":"K35","ID":13975,"Name":"017","PlayerID":849063849,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13975","ServerKey":"pl181","X":557,"Y":397},{"Bonus":0,"Continent":"K46","ID":13976,"Name":"016","PlayerID":849006412,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13976","ServerKey":"pl181","X":617,"Y":496},{"Bonus":0,"Continent":"K53","ID":13977,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13977","ServerKey":"pl181","X":383,"Y":528},{"Bonus":0,"Continent":"K35","ID":13978,"Name":"008","PlayerID":849063849,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13978","ServerKey":"pl181","X":556,"Y":393},{"Bonus":0,"Continent":"K43","ID":13979,"Name":"Land of Fire","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13979","ServerKey":"pl181","X":395,"Y":446},{"Bonus":0,"Continent":"K34","ID":13980,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13980","ServerKey":"pl181","X":476,"Y":383},{"Bonus":0,"Continent":"K54","ID":13981,"Name":"003 (Popeye14)","PlayerID":698769107,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13981","ServerKey":"pl181","X":410,"Y":579},{"Bonus":0,"Continent":"K54","ID":13982,"Name":"W 004","PlayerID":849084740,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13982","ServerKey":"pl181","X":431,"Y":597},{"Bonus":0,"Continent":"K53","ID":13983,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13983","ServerKey":"pl181","X":380,"Y":511},{"Bonus":0,"Continent":"K55","ID":13984,"Name":"In The End","PlayerID":848926293,"Points":9270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13984","ServerKey":"pl181","X":595,"Y":567},{"Bonus":0,"Continent":"K53","ID":13986,"Name":"Gasherbrum I","PlayerID":699265922,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13986","ServerKey":"pl181","X":379,"Y":501},{"Bonus":0,"Continent":"K64","ID":13987,"Name":"012. GĂłra Gundabad","PlayerID":699494488,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13987","ServerKey":"pl181","X":488,"Y":619},{"Bonus":0,"Continent":"K34","ID":13988,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13988","ServerKey":"pl181","X":473,"Y":385},{"Bonus":0,"Continent":"K56","ID":13990,"Name":"08 Crash Test","PlayerID":699377151,"Points":9124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13990","ServerKey":"pl181","X":618,"Y":509},{"Bonus":0,"Continent":"K34","ID":13991,"Name":"[0012]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13991","ServerKey":"pl181","X":453,"Y":394},{"Bonus":0,"Continent":"K56","ID":13992,"Name":"Gryfios 001a","PlayerID":698666810,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13992","ServerKey":"pl181","X":613,"Y":539},{"Bonus":0,"Continent":"K54","ID":13994,"Name":"022 - Lamanai","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13994","ServerKey":"pl181","X":429,"Y":596},{"Bonus":0,"Continent":"K46","ID":13995,"Name":"Wioska (042)","PlayerID":698232227,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13995","ServerKey":"pl181","X":618,"Y":483},{"Bonus":0,"Continent":"K56","ID":13996,"Name":"083","PlayerID":699373599,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13996","ServerKey":"pl181","X":607,"Y":514},{"Bonus":0,"Continent":"K35","ID":13997,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13997","ServerKey":"pl181","X":534,"Y":386},{"Bonus":0,"Continent":"K56","ID":13998,"Name":"002","PlayerID":6160655,"Points":10822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13998","ServerKey":"pl181","X":608,"Y":542},{"Bonus":9,"Continent":"K56","ID":13999,"Name":"A.005","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=13999","ServerKey":"pl181","X":604,"Y":551},{"Bonus":0,"Continent":"K35","ID":14000,"Name":"005 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14000","ServerKey":"pl181","X":529,"Y":379},{"Bonus":0,"Continent":"K65","ID":14001,"Name":"Sony 911","PlayerID":1415009,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14001","ServerKey":"pl181","X":562,"Y":602},{"Bonus":0,"Continent":"K35","ID":14002,"Name":"Foteviken","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14002","ServerKey":"pl181","X":536,"Y":383},{"Bonus":0,"Continent":"K55","ID":14003,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14003","ServerKey":"pl181","X":584,"Y":586},{"Bonus":0,"Continent":"K53","ID":14004,"Name":"006 TiZi iZi","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14004","ServerKey":"pl181","X":384,"Y":560},{"Bonus":0,"Continent":"K55","ID":14005,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14005","ServerKey":"pl181","X":574,"Y":589},{"Bonus":0,"Continent":"K56","ID":14006,"Name":"076","PlayerID":699373599,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14006","ServerKey":"pl181","X":609,"Y":527},{"Bonus":0,"Continent":"K64","ID":14007,"Name":"002. Orkowe WzgĂłrze","PlayerID":699494488,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14007","ServerKey":"pl181","X":488,"Y":618},{"Bonus":9,"Continent":"K44","ID":14008,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14008","ServerKey":"pl181","X":413,"Y":423},{"Bonus":0,"Continent":"K64","ID":14010,"Name":"#029","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14010","ServerKey":"pl181","X":458,"Y":608},{"Bonus":0,"Continent":"K54","ID":14011,"Name":"5. Szopienice","PlayerID":699781762,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14011","ServerKey":"pl181","X":478,"Y":538},{"Bonus":0,"Continent":"K44","ID":14012,"Name":"Barba 4","PlayerID":699796330,"Points":10169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14012","ServerKey":"pl181","X":431,"Y":404},{"Bonus":9,"Continent":"K34","ID":14013,"Name":"005","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14013","ServerKey":"pl181","X":498,"Y":383},{"Bonus":0,"Continent":"K35","ID":14014,"Name":"155","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14014","ServerKey":"pl181","X":549,"Y":390},{"Bonus":0,"Continent":"K64","ID":14015,"Name":"0354","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14015","ServerKey":"pl181","X":445,"Y":606},{"Bonus":0,"Continent":"K35","ID":14016,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14016","ServerKey":"pl181","X":555,"Y":395},{"Bonus":1,"Continent":"K64","ID":14017,"Name":"#006","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14017","ServerKey":"pl181","X":474,"Y":616},{"Bonus":0,"Continent":"K35","ID":14018,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14018","ServerKey":"pl181","X":538,"Y":384},{"Bonus":0,"Continent":"K65","ID":14019,"Name":"#0022","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14019","ServerKey":"pl181","X":543,"Y":611},{"Bonus":0,"Continent":"K45","ID":14020,"Name":"D004","PlayerID":699761749,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14020","ServerKey":"pl181","X":585,"Y":418},{"Bonus":0,"Continent":"K43","ID":14021,"Name":"Mniejsze zƂo 0015","PlayerID":699794765,"Points":8735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14021","ServerKey":"pl181","X":388,"Y":462},{"Bonus":0,"Continent":"K35","ID":14022,"Name":"Taran","PlayerID":699170684,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14022","ServerKey":"pl181","X":543,"Y":388},{"Bonus":0,"Continent":"K64","ID":14023,"Name":"scoti","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14023","ServerKey":"pl181","X":492,"Y":618},{"Bonus":0,"Continent":"K35","ID":14024,"Name":"C003","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14024","ServerKey":"pl181","X":521,"Y":387},{"Bonus":0,"Continent":"K46","ID":14025,"Name":"D02","PlayerID":849093742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14025","ServerKey":"pl181","X":614,"Y":475},{"Bonus":0,"Continent":"K54","ID":14026,"Name":"A.024","PlayerID":849088243,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14026","ServerKey":"pl181","X":411,"Y":579},{"Bonus":0,"Continent":"K44","ID":14027,"Name":"[0013]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14027","ServerKey":"pl181","X":419,"Y":414},{"Bonus":0,"Continent":"K55","ID":14028,"Name":"066","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14028","ServerKey":"pl181","X":585,"Y":597},{"Bonus":0,"Continent":"K55","ID":14029,"Name":"PYRLANDIA 013 $","PlayerID":33900,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14029","ServerKey":"pl181","X":573,"Y":591},{"Bonus":0,"Continent":"K54","ID":14030,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14030","ServerKey":"pl181","X":405,"Y":570},{"Bonus":0,"Continent":"K65","ID":14031,"Name":"- 001 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14031","ServerKey":"pl181","X":551,"Y":604},{"Bonus":0,"Continent":"K53","ID":14032,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14032","ServerKey":"pl181","X":388,"Y":538},{"Bonus":1,"Continent":"K35","ID":14033,"Name":"056 Trelleborg","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14033","ServerKey":"pl181","X":533,"Y":385},{"Bonus":0,"Continent":"K56","ID":14034,"Name":"015 Seba","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14034","ServerKey":"pl181","X":618,"Y":520},{"Bonus":0,"Continent":"K56","ID":14035,"Name":"Bocianikson006","PlayerID":7528491,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14035","ServerKey":"pl181","X":611,"Y":547},{"Bonus":0,"Continent":"K43","ID":14036,"Name":"Avanti!","PlayerID":698625834,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14036","ServerKey":"pl181","X":381,"Y":487},{"Bonus":0,"Continent":"K65","ID":14037,"Name":"0002","PlayerID":848915531,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14037","ServerKey":"pl181","X":529,"Y":617},{"Bonus":0,"Continent":"K43","ID":14038,"Name":"A0022","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14038","ServerKey":"pl181","X":383,"Y":477},{"Bonus":0,"Continent":"K43","ID":14039,"Name":"A0049","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14039","ServerKey":"pl181","X":382,"Y":473},{"Bonus":0,"Continent":"K43","ID":14040,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14040","ServerKey":"pl181","X":391,"Y":460},{"Bonus":0,"Continent":"K65","ID":14041,"Name":"003","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14041","ServerKey":"pl181","X":544,"Y":608},{"Bonus":0,"Continent":"K53","ID":14042,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":7079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14042","ServerKey":"pl181","X":394,"Y":550},{"Bonus":0,"Continent":"K55","ID":14044,"Name":"Wioska barbarzyƄska","PlayerID":930720,"Points":4022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14044","ServerKey":"pl181","X":572,"Y":597},{"Bonus":0,"Continent":"K46","ID":14045,"Name":"[216] WEST","PlayerID":848985692,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14045","ServerKey":"pl181","X":613,"Y":456},{"Bonus":0,"Continent":"K53","ID":14046,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14046","ServerKey":"pl181","X":381,"Y":504},{"Bonus":0,"Continent":"K35","ID":14047,"Name":"A002","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14047","ServerKey":"pl181","X":515,"Y":384},{"Bonus":0,"Continent":"K34","ID":14048,"Name":"Feed me more 012","PlayerID":699756210,"Points":10465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14048","ServerKey":"pl181","X":488,"Y":383},{"Bonus":0,"Continent":"K43","ID":14049,"Name":"s181eo13","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14049","ServerKey":"pl181","X":391,"Y":452},{"Bonus":0,"Continent":"K65","ID":14050,"Name":"CALL 1013","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14050","ServerKey":"pl181","X":524,"Y":616},{"Bonus":0,"Continent":"K44","ID":14051,"Name":"0014 A Wioska","PlayerID":3909522,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14051","ServerKey":"pl181","X":432,"Y":406},{"Bonus":0,"Continent":"K44","ID":14052,"Name":"[0014]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14052","ServerKey":"pl181","X":421,"Y":414},{"Bonus":0,"Continent":"K35","ID":14053,"Name":"ADEN","PlayerID":698588535,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14053","ServerKey":"pl181","X":517,"Y":382},{"Bonus":0,"Continent":"K45","ID":14054,"Name":"009","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14054","ServerKey":"pl181","X":562,"Y":401},{"Bonus":0,"Continent":"K46","ID":14055,"Name":"Twierdza 2","PlayerID":848935020,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14055","ServerKey":"pl181","X":613,"Y":460},{"Bonus":9,"Continent":"K43","ID":14056,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14056","ServerKey":"pl181","X":385,"Y":483},{"Bonus":0,"Continent":"K46","ID":14057,"Name":"025. Venetia","PlayerID":849091866,"Points":9228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14057","ServerKey":"pl181","X":613,"Y":465},{"Bonus":0,"Continent":"K65","ID":14058,"Name":"014.","PlayerID":873575,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14058","ServerKey":"pl181","X":566,"Y":600},{"Bonus":0,"Continent":"K56","ID":14059,"Name":"*023*","PlayerID":698670524,"Points":8462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14059","ServerKey":"pl181","X":619,"Y":521},{"Bonus":0,"Continent":"K56","ID":14060,"Name":"A.010","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14060","ServerKey":"pl181","X":605,"Y":556},{"Bonus":0,"Continent":"K64","ID":14062,"Name":"#035","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14062","ServerKey":"pl181","X":444,"Y":602},{"Bonus":0,"Continent":"K65","ID":14063,"Name":"022.","PlayerID":873575,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14063","ServerKey":"pl181","X":564,"Y":602},{"Bonus":0,"Continent":"K35","ID":14064,"Name":"HOTEL 10","PlayerID":849064614,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14064","ServerKey":"pl181","X":567,"Y":399},{"Bonus":0,"Continent":"K45","ID":14065,"Name":"RHUDAUR f","PlayerID":8155296,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14065","ServerKey":"pl181","X":534,"Y":467},{"Bonus":0,"Continent":"K44","ID":14066,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14066","ServerKey":"pl181","X":407,"Y":425},{"Bonus":0,"Continent":"K65","ID":14067,"Name":"CALL 917","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14067","ServerKey":"pl181","X":554,"Y":607},{"Bonus":0,"Continent":"K64","ID":14068,"Name":"#016 A","PlayerID":33900,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14068","ServerKey":"pl181","X":464,"Y":614},{"Bonus":0,"Continent":"K64","ID":14069,"Name":"004. Gloria Victis","PlayerID":848886973,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14069","ServerKey":"pl181","X":441,"Y":605},{"Bonus":0,"Continent":"K65","ID":14070,"Name":"CALL 921","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14070","ServerKey":"pl181","X":556,"Y":605},{"Bonus":0,"Continent":"K34","ID":14071,"Name":"[0030]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14071","ServerKey":"pl181","X":450,"Y":394},{"Bonus":0,"Continent":"K43","ID":14072,"Name":"s181eo08","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14072","ServerKey":"pl181","X":391,"Y":448},{"Bonus":2,"Continent":"K65","ID":14073,"Name":"- 088 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14073","ServerKey":"pl181","X":549,"Y":606},{"Bonus":0,"Continent":"K53","ID":14074,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14074","ServerKey":"pl181","X":383,"Y":502},{"Bonus":0,"Continent":"K54","ID":14075,"Name":"W 005","PlayerID":849084740,"Points":8002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14075","ServerKey":"pl181","X":431,"Y":598},{"Bonus":0,"Continent":"K34","ID":14077,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14077","ServerKey":"pl181","X":437,"Y":399},{"Bonus":0,"Continent":"K35","ID":14078,"Name":".achim.","PlayerID":6936607,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14078","ServerKey":"pl181","X":524,"Y":385},{"Bonus":0,"Continent":"K34","ID":14079,"Name":"K34 - [062] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14079","ServerKey":"pl181","X":457,"Y":388},{"Bonus":0,"Continent":"K35","ID":14081,"Name":"011","PlayerID":849010255,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14081","ServerKey":"pl181","X":504,"Y":379},{"Bonus":0,"Continent":"K35","ID":14083,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14083","ServerKey":"pl181","X":520,"Y":383},{"Bonus":0,"Continent":"K44","ID":14084,"Name":"s181eo07","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14084","ServerKey":"pl181","X":400,"Y":444},{"Bonus":0,"Continent":"K65","ID":14085,"Name":"CALL 1011","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14085","ServerKey":"pl181","X":524,"Y":613},{"Bonus":0,"Continent":"K45","ID":14086,"Name":"096 Wioska barbarzyƄska","PlayerID":699491076,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14086","ServerKey":"pl181","X":579,"Y":415},{"Bonus":0,"Continent":"K54","ID":14087,"Name":"01. Dzikie Pandy","PlayerID":9167250,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14087","ServerKey":"pl181","X":403,"Y":565},{"Bonus":0,"Continent":"K53","ID":14088,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14088","ServerKey":"pl181","X":380,"Y":517},{"Bonus":0,"Continent":"K46","ID":14089,"Name":"Abadonia XXX","PlayerID":699347951,"Points":11808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14089","ServerKey":"pl181","X":618,"Y":489},{"Bonus":0,"Continent":"K64","ID":14090,"Name":"0552","PlayerID":698659980,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14090","ServerKey":"pl181","X":499,"Y":620},{"Bonus":0,"Continent":"K54","ID":14091,"Name":"szczęƛliwego nowego fejkomatu","PlayerID":699364813,"Points":4037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14091","ServerKey":"pl181","X":402,"Y":562},{"Bonus":0,"Continent":"K53","ID":14092,"Name":"123 S014","PlayerID":699382126,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14092","ServerKey":"pl181","X":397,"Y":558},{"Bonus":0,"Continent":"K64","ID":14093,"Name":"015","PlayerID":699494488,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14093","ServerKey":"pl181","X":484,"Y":620},{"Bonus":0,"Continent":"K64","ID":14094,"Name":"#002","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14094","ServerKey":"pl181","X":468,"Y":613},{"Bonus":2,"Continent":"K55","ID":14095,"Name":"PYRLANDIA 001 S","PlayerID":33900,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14095","ServerKey":"pl181","X":570,"Y":593},{"Bonus":0,"Continent":"K43","ID":14096,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14096","ServerKey":"pl181","X":379,"Y":445},{"Bonus":0,"Continent":"K64","ID":14097,"Name":"#009 A","PlayerID":33900,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14097","ServerKey":"pl181","X":465,"Y":613},{"Bonus":0,"Continent":"K44","ID":14098,"Name":"180 Montevideo","PlayerID":1497168,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14098","ServerKey":"pl181","X":482,"Y":479},{"Bonus":0,"Continent":"K46","ID":14099,"Name":"089","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14099","ServerKey":"pl181","X":618,"Y":493},{"Bonus":0,"Continent":"K44","ID":14100,"Name":"176 Mar Del Plata","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14100","ServerKey":"pl181","X":481,"Y":481},{"Bonus":0,"Continent":"K43","ID":14101,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14101","ServerKey":"pl181","X":398,"Y":436},{"Bonus":0,"Continent":"K34","ID":14102,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14102","ServerKey":"pl181","X":481,"Y":384},{"Bonus":0,"Continent":"K34","ID":14103,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14103","ServerKey":"pl181","X":441,"Y":397},{"Bonus":0,"Continent":"K44","ID":14104,"Name":"0003","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14104","ServerKey":"pl181","X":425,"Y":411},{"Bonus":6,"Continent":"K54","ID":14105,"Name":"-007- (WiotrPitczak)","PlayerID":698769107,"Points":9055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14105","ServerKey":"pl181","X":416,"Y":582},{"Bonus":0,"Continent":"K64","ID":14106,"Name":"EKG M05","PlayerID":33900,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14106","ServerKey":"pl181","X":478,"Y":614},{"Bonus":0,"Continent":"K65","ID":14107,"Name":"043","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14107","ServerKey":"pl181","X":542,"Y":613},{"Bonus":0,"Continent":"K34","ID":14108,"Name":"038","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14108","ServerKey":"pl181","X":493,"Y":383},{"Bonus":0,"Continent":"K64","ID":14109,"Name":"#041","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14109","ServerKey":"pl181","X":452,"Y":608},{"Bonus":0,"Continent":"K44","ID":14110,"Name":"Westcoast.005","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14110","ServerKey":"pl181","X":400,"Y":432},{"Bonus":0,"Continent":"K64","ID":14111,"Name":"018. Gloria Victis","PlayerID":848886973,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14111","ServerKey":"pl181","X":432,"Y":600},{"Bonus":6,"Continent":"K44","ID":14112,"Name":"PataTaj","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14112","ServerKey":"pl181","X":431,"Y":403},{"Bonus":0,"Continent":"K64","ID":14113,"Name":"001. Gloria Victis","PlayerID":699697558,"Points":6989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14113","ServerKey":"pl181","X":436,"Y":602},{"Bonus":0,"Continent":"K43","ID":14114,"Name":"004","PlayerID":3698627,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14114","ServerKey":"pl181","X":386,"Y":459},{"Bonus":3,"Continent":"K34","ID":14115,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14115","ServerKey":"pl181","X":453,"Y":389},{"Bonus":0,"Continent":"K53","ID":14116,"Name":"dawaj ziomek","PlayerID":849095014,"Points":5829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14116","ServerKey":"pl181","X":392,"Y":543},{"Bonus":0,"Continent":"K56","ID":14117,"Name":"003 arepa","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14117","ServerKey":"pl181","X":608,"Y":518},{"Bonus":0,"Continent":"K65","ID":14118,"Name":"0436","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14118","ServerKey":"pl181","X":542,"Y":620},{"Bonus":0,"Continent":"K43","ID":14119,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14119","ServerKey":"pl181","X":388,"Y":457},{"Bonus":0,"Continent":"K54","ID":14120,"Name":"0048","PlayerID":699697558,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14120","ServerKey":"pl181","X":436,"Y":599},{"Bonus":0,"Continent":"K35","ID":14121,"Name":"141","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14121","ServerKey":"pl181","X":545,"Y":393},{"Bonus":0,"Continent":"K44","ID":14122,"Name":"Gravity","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14122","ServerKey":"pl181","X":400,"Y":452},{"Bonus":0,"Continent":"K43","ID":14123,"Name":"s181eo09","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14123","ServerKey":"pl181","X":392,"Y":446},{"Bonus":0,"Continent":"K45","ID":14124,"Name":"[325] Chorągiewka na wietrze RRR","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14124","ServerKey":"pl181","X":599,"Y":433},{"Bonus":0,"Continent":"K35","ID":14125,"Name":"017","PlayerID":1424656,"Points":10460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14125","ServerKey":"pl181","X":544,"Y":392},{"Bonus":0,"Continent":"K44","ID":14126,"Name":"0021 Ja tu tylko po gieƂde","PlayerID":3909522,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14126","ServerKey":"pl181","X":433,"Y":411},{"Bonus":0,"Continent":"K46","ID":14127,"Name":"A009","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14127","ServerKey":"pl181","X":608,"Y":449},{"Bonus":0,"Continent":"K53","ID":14128,"Name":"Wioska Wielkie Oczy","PlayerID":9167250,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14128","ServerKey":"pl181","X":398,"Y":564},{"Bonus":0,"Continent":"K64","ID":14129,"Name":"#017","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14129","ServerKey":"pl181","X":473,"Y":617},{"Bonus":0,"Continent":"K54","ID":14130,"Name":"ESSA (Kamaaam)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14130","ServerKey":"pl181","X":419,"Y":584},{"Bonus":0,"Continent":"K65","ID":14131,"Name":"Teby_27","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14131","ServerKey":"pl181","X":501,"Y":620},{"Bonus":0,"Continent":"K44","ID":14132,"Name":"7.62 mm","PlayerID":699777234,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14132","ServerKey":"pl181","X":479,"Y":438},{"Bonus":0,"Continent":"K43","ID":14134,"Name":"Land of Fire","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14134","ServerKey":"pl181","X":394,"Y":444},{"Bonus":0,"Continent":"K55","ID":14135,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14135","ServerKey":"pl181","X":595,"Y":574},{"Bonus":0,"Continent":"K43","ID":14136,"Name":"Mniejsze zƂo 0020","PlayerID":699794765,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14136","ServerKey":"pl181","X":389,"Y":463},{"Bonus":0,"Continent":"K35","ID":14137,"Name":"019","PlayerID":849063849,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14137","ServerKey":"pl181","X":556,"Y":394},{"Bonus":0,"Continent":"K64","ID":14138,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14138","ServerKey":"pl181","X":460,"Y":609},{"Bonus":0,"Continent":"K65","ID":14139,"Name":"001","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14139","ServerKey":"pl181","X":581,"Y":600},{"Bonus":0,"Continent":"K53","ID":14140,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14140","ServerKey":"pl181","X":382,"Y":517},{"Bonus":0,"Continent":"K45","ID":14141,"Name":"Szlachcic","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14141","ServerKey":"pl181","X":590,"Y":418},{"Bonus":0,"Continent":"K64","ID":14142,"Name":"0041","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14142","ServerKey":"pl181","X":461,"Y":610},{"Bonus":0,"Continent":"K46","ID":14143,"Name":"Najlepszy sąsiad 010","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14143","ServerKey":"pl181","X":602,"Y":441},{"Bonus":0,"Continent":"K56","ID":14144,"Name":"Tylko Tesco JL","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14144","ServerKey":"pl181","X":602,"Y":519},{"Bonus":0,"Continent":"K35","ID":14145,"Name":"A020","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14145","ServerKey":"pl181","X":510,"Y":380},{"Bonus":2,"Continent":"K45","ID":14146,"Name":"Ciiichutko","PlayerID":848985692,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14146","ServerKey":"pl181","X":590,"Y":421},{"Bonus":0,"Continent":"K44","ID":14147,"Name":"0032","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14147","ServerKey":"pl181","X":425,"Y":409},{"Bonus":0,"Continent":"K55","ID":14148,"Name":"035","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14148","ServerKey":"pl181","X":599,"Y":562},{"Bonus":0,"Continent":"K43","ID":14149,"Name":"Buszmen","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14149","ServerKey":"pl181","X":380,"Y":492},{"Bonus":0,"Continent":"K45","ID":14150,"Name":"[343] Chorągiewka na wietrze","PlayerID":848985692,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14150","ServerKey":"pl181","X":593,"Y":424},{"Bonus":0,"Continent":"K45","ID":14151,"Name":"[344] Chorągiewka na wietrze ?","PlayerID":848985692,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14151","ServerKey":"pl181","X":597,"Y":431},{"Bonus":0,"Continent":"K53","ID":14152,"Name":"X04","PlayerID":849030226,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14152","ServerKey":"pl181","X":389,"Y":535},{"Bonus":0,"Continent":"K43","ID":14153,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14153","ServerKey":"pl181","X":390,"Y":455},{"Bonus":0,"Continent":"K64","ID":14154,"Name":".64","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14154","ServerKey":"pl181","X":452,"Y":605},{"Bonus":0,"Continent":"K34","ID":14155,"Name":"K34 - [098] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14155","ServerKey":"pl181","X":463,"Y":387},{"Bonus":0,"Continent":"K54","ID":14156,"Name":"017. Gloria Victis","PlayerID":848886973,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14156","ServerKey":"pl181","X":434,"Y":598},{"Bonus":0,"Continent":"K54","ID":14157,"Name":"026","PlayerID":698659980,"Points":9381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14157","ServerKey":"pl181","X":438,"Y":599},{"Bonus":0,"Continent":"K64","ID":14158,"Name":"EKG M06","PlayerID":33900,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14158","ServerKey":"pl181","X":477,"Y":615},{"Bonus":0,"Continent":"K54","ID":14159,"Name":"004","PlayerID":699697558,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14159","ServerKey":"pl181","X":435,"Y":599},{"Bonus":0,"Continent":"K55","ID":14160,"Name":"*5502*b Meta:)","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14160","ServerKey":"pl181","X":597,"Y":563},{"Bonus":0,"Continent":"K53","ID":14161,"Name":"Wioska","PlayerID":849084005,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14161","ServerKey":"pl181","X":384,"Y":517},{"Bonus":0,"Continent":"K64","ID":14163,"Name":"014. Gloria Victis","PlayerID":848886973,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14163","ServerKey":"pl181","X":442,"Y":601},{"Bonus":0,"Continent":"K35","ID":14164,"Name":"ADEN","PlayerID":698588535,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14164","ServerKey":"pl181","X":522,"Y":383},{"Bonus":0,"Continent":"K65","ID":14165,"Name":"CALL 918","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14165","ServerKey":"pl181","X":553,"Y":607},{"Bonus":0,"Continent":"K46","ID":14166,"Name":"028 Kansas","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14166","ServerKey":"pl181","X":606,"Y":490},{"Bonus":0,"Continent":"K56","ID":14167,"Name":"rakieta 007","PlayerID":848928486,"Points":6783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14167","ServerKey":"pl181","X":617,"Y":529},{"Bonus":0,"Continent":"K64","ID":14168,"Name":"#066","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14168","ServerKey":"pl181","X":486,"Y":602},{"Bonus":7,"Continent":"K44","ID":14169,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14169","ServerKey":"pl181","X":412,"Y":421},{"Bonus":0,"Continent":"K44","ID":14170,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14170","ServerKey":"pl181","X":412,"Y":419},{"Bonus":0,"Continent":"K34","ID":14171,"Name":"Feed me more 006","PlayerID":699756210,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14171","ServerKey":"pl181","X":498,"Y":379},{"Bonus":0,"Continent":"K44","ID":14172,"Name":"x08","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14172","ServerKey":"pl181","X":407,"Y":429},{"Bonus":0,"Continent":"K54","ID":14173,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14173","ServerKey":"pl181","X":418,"Y":590},{"Bonus":0,"Continent":"K53","ID":14174,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14174","ServerKey":"pl181","X":382,"Y":501},{"Bonus":0,"Continent":"K53","ID":14175,"Name":"Ok.","PlayerID":849030226,"Points":9257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14175","ServerKey":"pl181","X":386,"Y":525},{"Bonus":0,"Continent":"K44","ID":14176,"Name":"[0015]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14176","ServerKey":"pl181","X":418,"Y":412},{"Bonus":0,"Continent":"K56","ID":14177,"Name":"0040","PlayerID":6510480,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14177","ServerKey":"pl181","X":619,"Y":519},{"Bonus":0,"Continent":"K56","ID":14178,"Name":"024 Kattegat","PlayerID":699272880,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14178","ServerKey":"pl181","X":609,"Y":558},{"Bonus":0,"Continent":"K56","ID":14179,"Name":"015","PlayerID":849006412,"Points":11347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14179","ServerKey":"pl181","X":619,"Y":503},{"Bonus":0,"Continent":"K55","ID":14180,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14180","ServerKey":"pl181","X":589,"Y":581},{"Bonus":0,"Continent":"K64","ID":14181,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14181","ServerKey":"pl181","X":450,"Y":608},{"Bonus":0,"Continent":"K55","ID":14182,"Name":"181-003","PlayerID":8876551,"Points":2610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14182","ServerKey":"pl181","X":587,"Y":577},{"Bonus":0,"Continent":"K64","ID":14183,"Name":"0136","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14183","ServerKey":"pl181","X":456,"Y":612},{"Bonus":0,"Continent":"K64","ID":14184,"Name":"#014","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14184","ServerKey":"pl181","X":475,"Y":616},{"Bonus":0,"Continent":"K65","ID":14185,"Name":"Teby_16","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14185","ServerKey":"pl181","X":507,"Y":617},{"Bonus":0,"Continent":"K65","ID":14186,"Name":"042","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14186","ServerKey":"pl181","X":541,"Y":613},{"Bonus":0,"Continent":"K65","ID":14187,"Name":"ƚmieszki","PlayerID":3454753,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14187","ServerKey":"pl181","X":536,"Y":616},{"Bonus":0,"Continent":"K56","ID":14189,"Name":"Bocianikson004","PlayerID":7528491,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14189","ServerKey":"pl181","X":608,"Y":544},{"Bonus":0,"Continent":"K55","ID":14190,"Name":"osada Marian","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14190","ServerKey":"pl181","X":567,"Y":598},{"Bonus":0,"Continent":"K55","ID":14192,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14192","ServerKey":"pl181","X":598,"Y":570},{"Bonus":0,"Continent":"K65","ID":14193,"Name":"Teby_14","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14193","ServerKey":"pl181","X":505,"Y":619},{"Bonus":0,"Continent":"K65","ID":14194,"Name":"CALL 916","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14194","ServerKey":"pl181","X":554,"Y":605},{"Bonus":0,"Continent":"K65","ID":14195,"Name":"CALL 989","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14195","ServerKey":"pl181","X":516,"Y":620},{"Bonus":0,"Continent":"K53","ID":14196,"Name":"Brat447","PlayerID":699262350,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14196","ServerKey":"pl181","X":384,"Y":512},{"Bonus":0,"Continent":"K44","ID":14197,"Name":"Suppi","PlayerID":699856962,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14197","ServerKey":"pl181","X":430,"Y":441},{"Bonus":0,"Continent":"K65","ID":14198,"Name":"Teby_13","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14198","ServerKey":"pl181","X":505,"Y":618},{"Bonus":0,"Continent":"K64","ID":14199,"Name":"0325","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14199","ServerKey":"pl181","X":446,"Y":608},{"Bonus":0,"Continent":"K56","ID":14200,"Name":"0041","PlayerID":6510480,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14200","ServerKey":"pl181","X":621,"Y":514},{"Bonus":2,"Continent":"K45","ID":14201,"Name":"B 006","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14201","ServerKey":"pl181","X":584,"Y":415},{"Bonus":0,"Continent":"K44","ID":14202,"Name":"0005","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14202","ServerKey":"pl181","X":426,"Y":408},{"Bonus":0,"Continent":"K35","ID":14203,"Name":"A014","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14203","ServerKey":"pl181","X":513,"Y":379},{"Bonus":0,"Continent":"K65","ID":14204,"Name":"07. Iris Amicitia","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14204","ServerKey":"pl181","X":522,"Y":618},{"Bonus":0,"Continent":"K35","ID":14205,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14205","ServerKey":"pl181","X":552,"Y":393},{"Bonus":0,"Continent":"K44","ID":14206,"Name":"014 Tampa","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14206","ServerKey":"pl181","X":434,"Y":469},{"Bonus":0,"Continent":"K43","ID":14207,"Name":"A0023","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14207","ServerKey":"pl181","X":386,"Y":476},{"Bonus":0,"Continent":"K65","ID":14208,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14208","ServerKey":"pl181","X":538,"Y":611},{"Bonus":0,"Continent":"K65","ID":14209,"Name":"- 027 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14209","ServerKey":"pl181","X":548,"Y":607},{"Bonus":0,"Continent":"K55","ID":14210,"Name":"Wioska SmerfĂłw","PlayerID":1715091,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14210","ServerKey":"pl181","X":595,"Y":572},{"Bonus":0,"Continent":"K54","ID":14212,"Name":"Wioska Karol-boss","PlayerID":8438707,"Points":7086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14212","ServerKey":"pl181","X":457,"Y":579},{"Bonus":6,"Continent":"K34","ID":14213,"Name":"XXXX","PlayerID":849054951,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14213","ServerKey":"pl181","X":492,"Y":384},{"Bonus":0,"Continent":"K44","ID":14214,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14214","ServerKey":"pl181","X":410,"Y":421},{"Bonus":0,"Continent":"K55","ID":14215,"Name":"Highway to Hell","PlayerID":848926293,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14215","ServerKey":"pl181","X":598,"Y":564},{"Bonus":0,"Continent":"K35","ID":14216,"Name":"{004} Shuno","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14216","ServerKey":"pl181","X":534,"Y":384},{"Bonus":4,"Continent":"K65","ID":14217,"Name":"CALL 912","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14217","ServerKey":"pl181","X":558,"Y":601},{"Bonus":0,"Continent":"K45","ID":14218,"Name":"34 im Duszkina","PlayerID":849037469,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14218","ServerKey":"pl181","X":577,"Y":400},{"Bonus":0,"Continent":"K54","ID":14219,"Name":"Pobozowisko","PlayerID":699513260,"Points":10714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14219","ServerKey":"pl181","X":419,"Y":590},{"Bonus":0,"Continent":"K65","ID":14220,"Name":"0425","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14220","ServerKey":"pl181","X":551,"Y":607},{"Bonus":0,"Continent":"K34","ID":14221,"Name":"K34 - [060] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14221","ServerKey":"pl181","X":454,"Y":388},{"Bonus":0,"Continent":"K44","ID":14222,"Name":"Westcoast.009","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14222","ServerKey":"pl181","X":400,"Y":431},{"Bonus":0,"Continent":"K54","ID":14223,"Name":"048 .Maczeta","PlayerID":699382126,"Points":7200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14223","ServerKey":"pl181","X":403,"Y":564},{"Bonus":0,"Continent":"K56","ID":14224,"Name":"0002","PlayerID":477415,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14224","ServerKey":"pl181","X":604,"Y":552},{"Bonus":0,"Continent":"K55","ID":14225,"Name":"9mm","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14225","ServerKey":"pl181","X":568,"Y":599},{"Bonus":0,"Continent":"K43","ID":14226,"Name":"Do Azot i nazot puliku jeden","PlayerID":699711723,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14226","ServerKey":"pl181","X":392,"Y":450},{"Bonus":0,"Continent":"K46","ID":14227,"Name":"006","PlayerID":849006412,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14227","ServerKey":"pl181","X":621,"Y":499},{"Bonus":0,"Continent":"K45","ID":14228,"Name":"HOTEL 8","PlayerID":849064614,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14228","ServerKey":"pl181","X":574,"Y":407},{"Bonus":0,"Continent":"K46","ID":14229,"Name":"[329] Chorągiewka na wietrze ++","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14229","ServerKey":"pl181","X":600,"Y":432},{"Bonus":0,"Continent":"K55","ID":14230,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":9101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14230","ServerKey":"pl181","X":596,"Y":569},{"Bonus":3,"Continent":"K44","ID":14231,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14231","ServerKey":"pl181","X":409,"Y":421},{"Bonus":0,"Continent":"K45","ID":14232,"Name":"Street","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14232","ServerKey":"pl181","X":584,"Y":416},{"Bonus":6,"Continent":"K46","ID":14233,"Name":"AL 002","PlayerID":849027653,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14233","ServerKey":"pl181","X":615,"Y":480},{"Bonus":0,"Continent":"K34","ID":14234,"Name":"Wola 5","PlayerID":849093155,"Points":8341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14234","ServerKey":"pl181","X":478,"Y":385},{"Bonus":0,"Continent":"K35","ID":14235,"Name":"012","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14235","ServerKey":"pl181","X":560,"Y":398},{"Bonus":0,"Continent":"K46","ID":14237,"Name":"022. Barcino","PlayerID":849091866,"Points":9193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14237","ServerKey":"pl181","X":616,"Y":462},{"Bonus":0,"Continent":"K46","ID":14238,"Name":"[205] WEST","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14238","ServerKey":"pl181","X":612,"Y":454},{"Bonus":9,"Continent":"K44","ID":14239,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14239","ServerKey":"pl181","X":402,"Y":434},{"Bonus":0,"Continent":"K46","ID":14240,"Name":"Wioska (044)","PlayerID":698232227,"Points":7950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14240","ServerKey":"pl181","X":617,"Y":492},{"Bonus":0,"Continent":"K65","ID":14241,"Name":"ƚmieszki","PlayerID":3454753,"Points":9058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14241","ServerKey":"pl181","X":534,"Y":615},{"Bonus":0,"Continent":"K64","ID":14243,"Name":"#021","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14243","ServerKey":"pl181","X":472,"Y":617},{"Bonus":0,"Continent":"K45","ID":14244,"Name":"038","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14244","ServerKey":"pl181","X":570,"Y":406},{"Bonus":0,"Continent":"K46","ID":14245,"Name":"Wioska (006)","PlayerID":698232227,"Points":8622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14245","ServerKey":"pl181","X":619,"Y":475},{"Bonus":0,"Continent":"K34","ID":14246,"Name":"Wyzima","PlayerID":699658023,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14246","ServerKey":"pl181","X":483,"Y":373},{"Bonus":0,"Continent":"K46","ID":14247,"Name":"A002","PlayerID":699722599,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14247","ServerKey":"pl181","X":610,"Y":450},{"Bonus":0,"Continent":"K56","ID":14248,"Name":"Mzm12","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14248","ServerKey":"pl181","X":612,"Y":532},{"Bonus":0,"Continent":"K43","ID":14249,"Name":"0014","PlayerID":698807570,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14249","ServerKey":"pl181","X":387,"Y":458},{"Bonus":0,"Continent":"K45","ID":14250,"Name":"193","PlayerID":849064752,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14250","ServerKey":"pl181","X":571,"Y":402},{"Bonus":0,"Continent":"K55","ID":14251,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14251","ServerKey":"pl181","X":579,"Y":590},{"Bonus":2,"Continent":"K65","ID":14252,"Name":"ƚmieszki","PlayerID":3454753,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14252","ServerKey":"pl181","X":535,"Y":616},{"Bonus":0,"Continent":"K34","ID":14253,"Name":"062","PlayerID":698739350,"Points":8153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14253","ServerKey":"pl181","X":492,"Y":367},{"Bonus":0,"Continent":"K64","ID":14254,"Name":"#011","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14254","ServerKey":"pl181","X":471,"Y":616},{"Bonus":0,"Continent":"K65","ID":14255,"Name":"Sector 2 Slums Area","PlayerID":8199417,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14255","ServerKey":"pl181","X":504,"Y":619},{"Bonus":0,"Continent":"K53","ID":14256,"Name":"bohprawdziwy","PlayerID":9167250,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14256","ServerKey":"pl181","X":396,"Y":563},{"Bonus":0,"Continent":"K44","ID":14257,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14257","ServerKey":"pl181","X":439,"Y":400},{"Bonus":0,"Continent":"K44","ID":14258,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14258","ServerKey":"pl181","X":407,"Y":423},{"Bonus":2,"Continent":"K35","ID":14259,"Name":"ADEN","PlayerID":698588535,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14259","ServerKey":"pl181","X":526,"Y":382},{"Bonus":0,"Continent":"K65","ID":14261,"Name":"sony911","PlayerID":1415009,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14261","ServerKey":"pl181","X":565,"Y":601},{"Bonus":0,"Continent":"K44","ID":14262,"Name":"Wioska silnypakiao","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14262","ServerKey":"pl181","X":407,"Y":421},{"Bonus":0,"Continent":"K55","ID":14263,"Name":"Wioska 016","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14263","ServerKey":"pl181","X":590,"Y":580},{"Bonus":0,"Continent":"K35","ID":14264,"Name":"001","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14264","ServerKey":"pl181","X":532,"Y":384},{"Bonus":0,"Continent":"K43","ID":14265,"Name":"Avanti!","PlayerID":698625834,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14265","ServerKey":"pl181","X":380,"Y":483},{"Bonus":0,"Continent":"K45","ID":14266,"Name":"Belvedere 004","PlayerID":699756210,"Points":7762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14266","ServerKey":"pl181","X":580,"Y":412},{"Bonus":0,"Continent":"K45","ID":14267,"Name":"[339] Chorągiewka na wietrze","PlayerID":848985692,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14267","ServerKey":"pl181","X":587,"Y":422},{"Bonus":0,"Continent":"K56","ID":14268,"Name":"Omn4dreN","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14268","ServerKey":"pl181","X":619,"Y":507},{"Bonus":0,"Continent":"K53","ID":14269,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14269","ServerKey":"pl181","X":381,"Y":526},{"Bonus":0,"Continent":"K64","ID":14270,"Name":"0038","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14270","ServerKey":"pl181","X":461,"Y":614},{"Bonus":0,"Continent":"K45","ID":14272,"Name":"Wioska barbarzyƄska 010|","PlayerID":6343784,"Points":9121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14272","ServerKey":"pl181","X":573,"Y":404},{"Bonus":0,"Continent":"K65","ID":14273,"Name":"CALL 919","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14273","ServerKey":"pl181","X":553,"Y":608},{"Bonus":0,"Continent":"K55","ID":14275,"Name":"- 080 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14275","ServerKey":"pl181","X":536,"Y":582},{"Bonus":0,"Continent":"K46","ID":14276,"Name":"030","PlayerID":8459255,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14276","ServerKey":"pl181","X":616,"Y":472},{"Bonus":0,"Continent":"K46","ID":14277,"Name":"038","PlayerID":8459255,"Points":8520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14277","ServerKey":"pl181","X":618,"Y":468},{"Bonus":0,"Continent":"K54","ID":14278,"Name":"008. Gloria Victis","PlayerID":848886973,"Points":10433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14278","ServerKey":"pl181","X":423,"Y":590},{"Bonus":0,"Continent":"K34","ID":14279,"Name":"K34 - [119] Before Land","PlayerID":699088769,"Points":8344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14279","ServerKey":"pl181","X":468,"Y":386},{"Bonus":0,"Continent":"K35","ID":14280,"Name":"009","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14280","ServerKey":"pl181","X":502,"Y":381},{"Bonus":7,"Continent":"K56","ID":14281,"Name":"019 Kayce","PlayerID":699272880,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14281","ServerKey":"pl181","X":604,"Y":563},{"Bonus":0,"Continent":"K65","ID":14282,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14282","ServerKey":"pl181","X":521,"Y":615},{"Bonus":0,"Continent":"K34","ID":14283,"Name":"K34 - [054] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14283","ServerKey":"pl181","X":463,"Y":386},{"Bonus":0,"Continent":"K55","ID":14284,"Name":"Wioska9","PlayerID":8369778,"Points":6310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14284","ServerKey":"pl181","X":502,"Y":589},{"Bonus":0,"Continent":"K34","ID":14285,"Name":"K34 - [042] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14285","ServerKey":"pl181","X":461,"Y":384},{"Bonus":4,"Continent":"K65","ID":14286,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14286","ServerKey":"pl181","X":515,"Y":615},{"Bonus":0,"Continent":"K64","ID":14287,"Name":"#002 MG","PlayerID":33900,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14287","ServerKey":"pl181","X":465,"Y":612},{"Bonus":0,"Continent":"K55","ID":14288,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14288","ServerKey":"pl181","X":592,"Y":573},{"Bonus":0,"Continent":"K65","ID":14289,"Name":"Sector 2","PlayerID":8199417,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14289","ServerKey":"pl181","X":506,"Y":621},{"Bonus":0,"Continent":"K53","ID":14290,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14290","ServerKey":"pl181","X":381,"Y":522},{"Bonus":0,"Continent":"K46","ID":14292,"Name":"A010","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14292","ServerKey":"pl181","X":607,"Y":449},{"Bonus":0,"Continent":"K64","ID":14293,"Name":"0355","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14293","ServerKey":"pl181","X":444,"Y":607},{"Bonus":0,"Continent":"K34","ID":14294,"Name":"[0016]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14294","ServerKey":"pl181","X":442,"Y":395},{"Bonus":0,"Continent":"K64","ID":14295,"Name":"Bucks x Kamiiiru","PlayerID":848955783,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14295","ServerKey":"pl181","X":455,"Y":608},{"Bonus":0,"Continent":"K56","ID":14296,"Name":"038 France","PlayerID":8323711,"Points":5880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14296","ServerKey":"pl181","X":620,"Y":523},{"Bonus":0,"Continent":"K55","ID":14297,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14297","ServerKey":"pl181","X":587,"Y":579},{"Bonus":0,"Continent":"K53","ID":14298,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14298","ServerKey":"pl181","X":385,"Y":539},{"Bonus":0,"Continent":"K54","ID":14299,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14299","ServerKey":"pl181","X":415,"Y":584},{"Bonus":0,"Continent":"K34","ID":14300,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14300","ServerKey":"pl181","X":471,"Y":382},{"Bonus":0,"Continent":"K64","ID":14301,"Name":"051 - A03.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14301","ServerKey":"pl181","X":438,"Y":602},{"Bonus":0,"Continent":"K54","ID":14302,"Name":"005 - ZioƂowo","PlayerID":225023,"Points":8686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14302","ServerKey":"pl181","X":419,"Y":581},{"Bonus":0,"Continent":"K54","ID":14303,"Name":"013. Gloria Victis","PlayerID":848886973,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14303","ServerKey":"pl181","X":422,"Y":591},{"Bonus":0,"Continent":"K53","ID":14304,"Name":"041","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14304","ServerKey":"pl181","X":374,"Y":535},{"Bonus":0,"Continent":"K34","ID":14305,"Name":"K34 - [038] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14305","ServerKey":"pl181","X":462,"Y":388},{"Bonus":0,"Continent":"K65","ID":14306,"Name":"*311*","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14306","ServerKey":"pl181","X":509,"Y":617},{"Bonus":0,"Continent":"K55","ID":14307,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14307","ServerKey":"pl181","X":581,"Y":585},{"Bonus":0,"Continent":"K54","ID":14308,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14308","ServerKey":"pl181","X":496,"Y":554},{"Bonus":0,"Continent":"K46","ID":14309,"Name":"076 Kami","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14309","ServerKey":"pl181","X":620,"Y":482},{"Bonus":0,"Continent":"K53","ID":14310,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14310","ServerKey":"pl181","X":385,"Y":517},{"Bonus":0,"Continent":"K46","ID":14311,"Name":"#014.488|495","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14311","ServerKey":"pl181","X":607,"Y":446},{"Bonus":0,"Continent":"K54","ID":14312,"Name":"0000023@","PlayerID":849089881,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14312","ServerKey":"pl181","X":431,"Y":599},{"Bonus":0,"Continent":"K65","ID":14313,"Name":"02. Lunafreya Nox Fleuret","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14313","ServerKey":"pl181","X":524,"Y":619},{"Bonus":0,"Continent":"K56","ID":14314,"Name":"0026","PlayerID":6510480,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14314","ServerKey":"pl181","X":617,"Y":516},{"Bonus":0,"Continent":"K46","ID":14315,"Name":"Abadonia QQQ","PlayerID":699347951,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14315","ServerKey":"pl181","X":619,"Y":491},{"Bonus":0,"Continent":"K35","ID":14316,"Name":"A-006","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14316","ServerKey":"pl181","X":531,"Y":387},{"Bonus":0,"Continent":"K64","ID":14317,"Name":"#006 M","PlayerID":33900,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14317","ServerKey":"pl181","X":464,"Y":615},{"Bonus":0,"Continent":"K45","ID":14318,"Name":"B001","PlayerID":699722599,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14318","ServerKey":"pl181","X":593,"Y":423},{"Bonus":0,"Continent":"K46","ID":14319,"Name":"[353] Chorągiewka na wietrze","PlayerID":848985692,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14319","ServerKey":"pl181","X":600,"Y":438},{"Bonus":0,"Continent":"K43","ID":14320,"Name":"Mniejsze zƂo 0078","PlayerID":699794765,"Points":10575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14320","ServerKey":"pl181","X":389,"Y":461},{"Bonus":0,"Continent":"K34","ID":14321,"Name":".005.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14321","ServerKey":"pl181","X":499,"Y":379},{"Bonus":0,"Continent":"K34","ID":14322,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14322","ServerKey":"pl181","X":433,"Y":399},{"Bonus":0,"Continent":"K45","ID":14323,"Name":"** Mysia Trutka","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14323","ServerKey":"pl181","X":598,"Y":435},{"Bonus":0,"Continent":"K44","ID":14324,"Name":"FKG 01-13","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14324","ServerKey":"pl181","X":422,"Y":407},{"Bonus":0,"Continent":"K56","ID":14325,"Name":"017 Valyria","PlayerID":699272880,"Points":10142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14325","ServerKey":"pl181","X":606,"Y":565},{"Bonus":0,"Continent":"K53","ID":14326,"Name":"094 TO NASZ ƚWIAT","PlayerID":699382126,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14326","ServerKey":"pl181","X":395,"Y":557},{"Bonus":0,"Continent":"K54","ID":14327,"Name":"smiel","PlayerID":9167250,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14327","ServerKey":"pl181","X":401,"Y":572},{"Bonus":0,"Continent":"K35","ID":14328,"Name":"073 InnyNizWszyscy","PlayerID":699491076,"Points":8883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14328","ServerKey":"pl181","X":539,"Y":389},{"Bonus":0,"Continent":"K65","ID":14329,"Name":"Prabuty","PlayerID":606407,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14329","ServerKey":"pl181","X":508,"Y":619},{"Bonus":0,"Continent":"K55","ID":14330,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14330","ServerKey":"pl181","X":584,"Y":583},{"Bonus":0,"Continent":"K64","ID":14331,"Name":"041.","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14331","ServerKey":"pl181","X":489,"Y":628},{"Bonus":0,"Continent":"K34","ID":14332,"Name":"K34 - [031] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14332","ServerKey":"pl181","X":465,"Y":382},{"Bonus":0,"Continent":"K53","ID":14333,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14333","ServerKey":"pl181","X":388,"Y":540},{"Bonus":0,"Continent":"K44","ID":14334,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14334","ServerKey":"pl181","X":414,"Y":414},{"Bonus":0,"Continent":"K56","ID":14335,"Name":"Mzm09","PlayerID":7142659,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14335","ServerKey":"pl181","X":614,"Y":530},{"Bonus":0,"Continent":"K64","ID":14336,"Name":"0134","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14336","ServerKey":"pl181","X":454,"Y":611},{"Bonus":0,"Continent":"K43","ID":14337,"Name":"Mniejsze zƂo 0014","PlayerID":699794765,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14337","ServerKey":"pl181","X":389,"Y":464},{"Bonus":0,"Continent":"K65","ID":14338,"Name":"01. Noctis Lucis Caelum","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14338","ServerKey":"pl181","X":521,"Y":620},{"Bonus":0,"Continent":"K65","ID":14339,"Name":"Evergreen Park","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14339","ServerKey":"pl181","X":526,"Y":623},{"Bonus":0,"Continent":"K44","ID":14340,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14340","ServerKey":"pl181","X":429,"Y":403},{"Bonus":0,"Continent":"K64","ID":14341,"Name":"Moongoose","PlayerID":699443920,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14341","ServerKey":"pl181","X":467,"Y":626},{"Bonus":0,"Continent":"K44","ID":14342,"Name":"[0017]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14342","ServerKey":"pl181","X":423,"Y":410},{"Bonus":0,"Continent":"K45","ID":14343,"Name":"[312] Chorągiewka na wietrze","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14343","ServerKey":"pl181","X":598,"Y":434},{"Bonus":0,"Continent":"K46","ID":14344,"Name":"L 2","PlayerID":849027653,"Points":10102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14344","ServerKey":"pl181","X":619,"Y":479},{"Bonus":0,"Continent":"K54","ID":14345,"Name":"009. Gloria Victis","PlayerID":848886973,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14345","ServerKey":"pl181","X":422,"Y":590},{"Bonus":0,"Continent":"K64","ID":14346,"Name":"0138","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14346","ServerKey":"pl181","X":453,"Y":613},{"Bonus":0,"Continent":"K64","ID":14347,"Name":"004.","PlayerID":699695167,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14347","ServerKey":"pl181","X":443,"Y":603},{"Bonus":0,"Continent":"K56","ID":14348,"Name":"13 Furioza","PlayerID":699377151,"Points":4858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14348","ServerKey":"pl181","X":620,"Y":508},{"Bonus":0,"Continent":"K56","ID":14349,"Name":"0008. A - Gilead","PlayerID":7125212,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14349","ServerKey":"pl181","X":607,"Y":517},{"Bonus":0,"Continent":"K53","ID":14350,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14350","ServerKey":"pl181","X":384,"Y":521},{"Bonus":3,"Continent":"K35","ID":14351,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14351","ServerKey":"pl181","X":525,"Y":384},{"Bonus":0,"Continent":"K56","ID":14352,"Name":"Bocianikson005","PlayerID":7528491,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14352","ServerKey":"pl181","X":611,"Y":543},{"Bonus":0,"Continent":"K53","ID":14353,"Name":"097 JesieƄ ƛredniowiecza","PlayerID":699382126,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14353","ServerKey":"pl181","X":398,"Y":558},{"Bonus":0,"Continent":"K35","ID":14354,"Name":"062","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14354","ServerKey":"pl181","X":563,"Y":391},{"Bonus":0,"Continent":"K45","ID":14355,"Name":"HOTEL 9","PlayerID":849064614,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14355","ServerKey":"pl181","X":577,"Y":407},{"Bonus":0,"Continent":"K56","ID":14356,"Name":"ccc","PlayerID":7047342,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14356","ServerKey":"pl181","X":609,"Y":554},{"Bonus":0,"Continent":"K34","ID":14357,"Name":"K34 - [112] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14357","ServerKey":"pl181","X":455,"Y":386},{"Bonus":9,"Continent":"K46","ID":14360,"Name":"008 Carvahall","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14360","ServerKey":"pl181","X":614,"Y":470},{"Bonus":0,"Continent":"K44","ID":14361,"Name":"FKG 01-07","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14361","ServerKey":"pl181","X":417,"Y":403},{"Bonus":0,"Continent":"K34","ID":14362,"Name":"HoƂopole","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14362","ServerKey":"pl181","X":493,"Y":385},{"Bonus":0,"Continent":"K34","ID":14363,"Name":"K34 - [039] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14363","ServerKey":"pl181","X":458,"Y":391},{"Bonus":0,"Continent":"K44","ID":14364,"Name":"B013","PlayerID":699299123,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14364","ServerKey":"pl181","X":482,"Y":434},{"Bonus":0,"Continent":"K65","ID":14365,"Name":"048","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14365","ServerKey":"pl181","X":536,"Y":615},{"Bonus":0,"Continent":"K45","ID":14366,"Name":"Szlachcic","PlayerID":699170684,"Points":9453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14366","ServerKey":"pl181","X":587,"Y":417},{"Bonus":0,"Continent":"K55","ID":14367,"Name":"juz po ptakach","PlayerID":699785935,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14367","ServerKey":"pl181","X":579,"Y":598},{"Bonus":0,"Continent":"K43","ID":14368,"Name":"Knowhere","PlayerID":699723284,"Points":7316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14368","ServerKey":"pl181","X":373,"Y":499},{"Bonus":0,"Continent":"K53","ID":14370,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14370","ServerKey":"pl181","X":381,"Y":523},{"Bonus":0,"Continent":"K54","ID":14371,"Name":"A.004","PlayerID":849088243,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14371","ServerKey":"pl181","X":416,"Y":585},{"Bonus":0,"Continent":"K64","ID":14372,"Name":"0198","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14372","ServerKey":"pl181","X":451,"Y":610},{"Bonus":0,"Continent":"K34","ID":14373,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14373","ServerKey":"pl181","X":445,"Y":396},{"Bonus":0,"Continent":"K46","ID":14374,"Name":"[208] WEST","PlayerID":848985692,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14374","ServerKey":"pl181","X":609,"Y":454},{"Bonus":0,"Continent":"K54","ID":14375,"Name":"011 - Yhym","PlayerID":225023,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14375","ServerKey":"pl181","X":421,"Y":593},{"Bonus":0,"Continent":"K64","ID":14376,"Name":"#016","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14376","ServerKey":"pl181","X":466,"Y":613},{"Bonus":0,"Continent":"K43","ID":14377,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14377","ServerKey":"pl181","X":398,"Y":433},{"Bonus":0,"Continent":"K56","ID":14378,"Name":"0009. C - Sithrim","PlayerID":7125212,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14378","ServerKey":"pl181","X":622,"Y":502},{"Bonus":0,"Continent":"K56","ID":14379,"Name":"0042","PlayerID":6510480,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14379","ServerKey":"pl181","X":615,"Y":523},{"Bonus":0,"Continent":"K64","ID":14380,"Name":"004.xxx","PlayerID":8612358,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14380","ServerKey":"pl181","X":461,"Y":612},{"Bonus":0,"Continent":"K46","ID":14381,"Name":"013. Antioch","PlayerID":849091866,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14381","ServerKey":"pl181","X":612,"Y":464},{"Bonus":1,"Continent":"K44","ID":14383,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14383","ServerKey":"pl181","X":407,"Y":422},{"Bonus":0,"Continent":"K56","ID":14384,"Name":"Gainer","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14384","ServerKey":"pl181","X":620,"Y":519},{"Bonus":0,"Continent":"K43","ID":14385,"Name":"A0019","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14385","ServerKey":"pl181","X":382,"Y":481},{"Bonus":1,"Continent":"K65","ID":14386,"Name":"0001","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14386","ServerKey":"pl181","X":529,"Y":615},{"Bonus":0,"Continent":"K35","ID":14387,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14387","ServerKey":"pl181","X":525,"Y":381},{"Bonus":0,"Continent":"K54","ID":14388,"Name":"Pobozowisko","PlayerID":699513260,"Points":10546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14388","ServerKey":"pl181","X":416,"Y":588},{"Bonus":0,"Continent":"K35","ID":14389,"Name":"002","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14389","ServerKey":"pl181","X":532,"Y":385},{"Bonus":0,"Continent":"K65","ID":14390,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14390","ServerKey":"pl181","X":537,"Y":612},{"Bonus":0,"Continent":"K35","ID":14391,"Name":"001","PlayerID":1424656,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14391","ServerKey":"pl181","X":547,"Y":393},{"Bonus":0,"Continent":"K65","ID":14392,"Name":"03. Ignis Scienta","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14392","ServerKey":"pl181","X":525,"Y":618},{"Bonus":0,"Continent":"K35","ID":14393,"Name":"Wioska elli38","PlayerID":3600737,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14393","ServerKey":"pl181","X":558,"Y":388},{"Bonus":0,"Continent":"K44","ID":14394,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14394","ServerKey":"pl181","X":405,"Y":428},{"Bonus":0,"Continent":"K46","ID":14395,"Name":"WW3","PlayerID":849088515,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14395","ServerKey":"pl181","X":621,"Y":480},{"Bonus":0,"Continent":"K53","ID":14396,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14396","ServerKey":"pl181","X":383,"Y":538},{"Bonus":0,"Continent":"K44","ID":14397,"Name":"Szulernia","PlayerID":7249451,"Points":9991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14397","ServerKey":"pl181","X":411,"Y":417},{"Bonus":0,"Continent":"K53","ID":14398,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14398","ServerKey":"pl181","X":382,"Y":529},{"Bonus":0,"Continent":"K44","ID":14400,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14400","ServerKey":"pl181","X":428,"Y":402},{"Bonus":0,"Continent":"K64","ID":14401,"Name":"#004 A","PlayerID":33900,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14401","ServerKey":"pl181","X":459,"Y":614},{"Bonus":0,"Continent":"K54","ID":14402,"Name":"C Zach 007","PlayerID":849084740,"Points":6351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14402","ServerKey":"pl181","X":403,"Y":575},{"Bonus":0,"Continent":"K55","ID":14403,"Name":".RUCH CHORZÓW","PlayerID":6929240,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14403","ServerKey":"pl181","X":595,"Y":573},{"Bonus":0,"Continent":"K34","ID":14404,"Name":"[0018]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14404","ServerKey":"pl181","X":441,"Y":395},{"Bonus":0,"Continent":"K43","ID":14405,"Name":"A0078","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14405","ServerKey":"pl181","X":383,"Y":473},{"Bonus":0,"Continent":"K55","ID":14406,"Name":"Ponad Ląd","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14406","ServerKey":"pl181","X":580,"Y":590},{"Bonus":0,"Continent":"K53","ID":14408,"Name":"*004 Reykjavik","PlayerID":699425709,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14408","ServerKey":"pl181","X":387,"Y":541},{"Bonus":0,"Continent":"K53","ID":14409,"Name":"029","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14409","ServerKey":"pl181","X":382,"Y":533},{"Bonus":0,"Continent":"K45","ID":14410,"Name":"018","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14410","ServerKey":"pl181","X":570,"Y":404},{"Bonus":0,"Continent":"K64","ID":14411,"Name":"074 OZDR","PlayerID":699336777,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14411","ServerKey":"pl181","X":493,"Y":632},{"Bonus":0,"Continent":"K35","ID":14412,"Name":"Taran","PlayerID":699170684,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14412","ServerKey":"pl181","X":545,"Y":386},{"Bonus":0,"Continent":"K45","ID":14413,"Name":"095","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14413","ServerKey":"pl181","X":584,"Y":413},{"Bonus":0,"Continent":"K46","ID":14414,"Name":"A021","PlayerID":699722599,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14414","ServerKey":"pl181","X":615,"Y":452},{"Bonus":0,"Continent":"K53","ID":14415,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14415","ServerKey":"pl181","X":381,"Y":527},{"Bonus":0,"Continent":"K46","ID":14416,"Name":"D04","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14416","ServerKey":"pl181","X":620,"Y":479},{"Bonus":0,"Continent":"K35","ID":14417,"Name":"KoƂobrzeg","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14417","ServerKey":"pl181","X":551,"Y":391},{"Bonus":0,"Continent":"K65","ID":14419,"Name":"- 044 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14419","ServerKey":"pl181","X":544,"Y":610},{"Bonus":0,"Continent":"K43","ID":14421,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14421","ServerKey":"pl181","X":379,"Y":483},{"Bonus":0,"Continent":"K35","ID":14422,"Name":"074 InnyNizWszyscy","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14422","ServerKey":"pl181","X":540,"Y":388},{"Bonus":0,"Continent":"K55","ID":14423,"Name":"Pod","PlayerID":1715091,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14423","ServerKey":"pl181","X":587,"Y":582},{"Bonus":0,"Continent":"K53","ID":14424,"Name":"# Szymi 8","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14424","ServerKey":"pl181","X":389,"Y":542},{"Bonus":0,"Continent":"K55","ID":14425,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14425","ServerKey":"pl181","X":596,"Y":574},{"Bonus":0,"Continent":"K46","ID":14426,"Name":"Piwna 05","PlayerID":699812007,"Points":9181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14426","ServerKey":"pl181","X":617,"Y":438},{"Bonus":0,"Continent":"K44","ID":14427,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14427","ServerKey":"pl181","X":411,"Y":423},{"Bonus":0,"Continent":"K53","ID":14428,"Name":"099 Ja nie panimajet","PlayerID":699382126,"Points":6658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14428","ServerKey":"pl181","X":393,"Y":561},{"Bonus":0,"Continent":"K55","ID":14429,"Name":"Wioska 020","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14429","ServerKey":"pl181","X":588,"Y":580},{"Bonus":0,"Continent":"K55","ID":14430,"Name":"- 220 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14430","ServerKey":"pl181","X":547,"Y":568},{"Bonus":0,"Continent":"K43","ID":14431,"Name":"A0016","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14431","ServerKey":"pl181","X":385,"Y":476},{"Bonus":0,"Continent":"K45","ID":14432,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14432","ServerKey":"pl181","X":598,"Y":428},{"Bonus":0,"Continent":"K55","ID":14433,"Name":"Wioska 024","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14433","ServerKey":"pl181","X":594,"Y":576},{"Bonus":0,"Continent":"K35","ID":14434,"Name":"A016","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14434","ServerKey":"pl181","X":515,"Y":378},{"Bonus":0,"Continent":"K34","ID":14435,"Name":"K34 - [002] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14435","ServerKey":"pl181","X":455,"Y":388},{"Bonus":0,"Continent":"K65","ID":14436,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14436","ServerKey":"pl181","X":516,"Y":617},{"Bonus":0,"Continent":"K56","ID":14437,"Name":"Mzm07","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14437","ServerKey":"pl181","X":618,"Y":532},{"Bonus":0,"Continent":"K35","ID":14438,"Name":"ADEN","PlayerID":698588535,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14438","ServerKey":"pl181","X":520,"Y":382},{"Bonus":0,"Continent":"K56","ID":14439,"Name":"005 ZƂap-Mnie","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14439","ServerKey":"pl181","X":602,"Y":520},{"Bonus":0,"Continent":"K65","ID":14440,"Name":"3. DębieƄsko","PlayerID":606407,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14440","ServerKey":"pl181","X":511,"Y":620},{"Bonus":0,"Continent":"K65","ID":14441,"Name":"047","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14441","ServerKey":"pl181","X":537,"Y":614},{"Bonus":0,"Continent":"K65","ID":14442,"Name":"0003","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14442","ServerKey":"pl181","X":530,"Y":618},{"Bonus":0,"Continent":"K64","ID":14443,"Name":"scofield darmiarz mehehe","PlayerID":699494488,"Points":10240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14443","ServerKey":"pl181","X":489,"Y":618},{"Bonus":0,"Continent":"K65","ID":14444,"Name":"ƚmieszki","PlayerID":3454753,"Points":9008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14444","ServerKey":"pl181","X":527,"Y":615},{"Bonus":0,"Continent":"K54","ID":14445,"Name":"Berlin (Mieszko 1995)","PlayerID":698769107,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14445","ServerKey":"pl181","X":411,"Y":583},{"Bonus":0,"Continent":"K44","ID":14446,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14446","ServerKey":"pl181","X":408,"Y":420},{"Bonus":0,"Continent":"K56","ID":14447,"Name":"W.181/12","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14447","ServerKey":"pl181","X":615,"Y":526},{"Bonus":0,"Continent":"K56","ID":14448,"Name":"Gryfios 004","PlayerID":698666810,"Points":8921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14448","ServerKey":"pl181","X":617,"Y":538},{"Bonus":0,"Continent":"K43","ID":14449,"Name":"A0021","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14449","ServerKey":"pl181","X":383,"Y":476},{"Bonus":4,"Continent":"K44","ID":14450,"Name":"Osada koczownikĂłw","PlayerID":7462660,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14450","ServerKey":"pl181","X":405,"Y":426},{"Bonus":0,"Continent":"K65","ID":14451,"Name":"~019.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14451","ServerKey":"pl181","X":520,"Y":617},{"Bonus":0,"Continent":"K46","ID":14452,"Name":"012 Albo jesteƛ pizz@","PlayerID":699272633,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14452","ServerKey":"pl181","X":623,"Y":463},{"Bonus":0,"Continent":"K45","ID":14453,"Name":"Wioska barbarzyƄska 009|","PlayerID":6343784,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14453","ServerKey":"pl181","X":574,"Y":404},{"Bonus":0,"Continent":"K54","ID":14454,"Name":"023","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14454","ServerKey":"pl181","X":437,"Y":599},{"Bonus":0,"Continent":"K56","ID":14455,"Name":"Gryfios 010","PlayerID":698666810,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14455","ServerKey":"pl181","X":616,"Y":541},{"Bonus":0,"Continent":"K56","ID":14456,"Name":"017 Sebix","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14456","ServerKey":"pl181","X":619,"Y":522},{"Bonus":0,"Continent":"K43","ID":14457,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14457","ServerKey":"pl181","X":399,"Y":438},{"Bonus":0,"Continent":"K46","ID":14458,"Name":"038 - Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14458","ServerKey":"pl181","X":613,"Y":454},{"Bonus":0,"Continent":"K45","ID":14459,"Name":"[342] Chorągiewka na wietrze PAA","PlayerID":848985692,"Points":9264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14459","ServerKey":"pl181","X":592,"Y":421},{"Bonus":0,"Continent":"K43","ID":14460,"Name":"Land of Fire","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14460","ServerKey":"pl181","X":398,"Y":440},{"Bonus":0,"Continent":"K65","ID":14461,"Name":"041","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14461","ServerKey":"pl181","X":541,"Y":616},{"Bonus":0,"Continent":"K43","ID":14462,"Name":"Knowhere","PlayerID":699723284,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14462","ServerKey":"pl181","X":383,"Y":496},{"Bonus":0,"Continent":"K44","ID":14463,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14463","ServerKey":"pl181","X":414,"Y":416},{"Bonus":0,"Continent":"K46","ID":14464,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14464","ServerKey":"pl181","X":607,"Y":441},{"Bonus":0,"Continent":"K54","ID":14465,"Name":"Z barba 013","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14465","ServerKey":"pl181","X":405,"Y":573},{"Bonus":0,"Continent":"K34","ID":14466,"Name":"K34 - [061] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14466","ServerKey":"pl181","X":460,"Y":390},{"Bonus":0,"Continent":"K64","ID":14467,"Name":"EKG .::. Siwyy8848/6","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14467","ServerKey":"pl181","X":496,"Y":619},{"Bonus":0,"Continent":"K56","ID":14468,"Name":"077","PlayerID":699373599,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14468","ServerKey":"pl181","X":618,"Y":530},{"Bonus":0,"Continent":"K43","ID":14469,"Name":"005","PlayerID":3698627,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14469","ServerKey":"pl181","X":385,"Y":458},{"Bonus":0,"Continent":"K64","ID":14470,"Name":"EKG .::. freaky97/3","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14470","ServerKey":"pl181","X":486,"Y":605},{"Bonus":0,"Continent":"K65","ID":14471,"Name":"00011","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14471","ServerKey":"pl181","X":528,"Y":614},{"Bonus":0,"Continent":"K46","ID":14472,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14472","ServerKey":"pl181","X":601,"Y":438},{"Bonus":0,"Continent":"K44","ID":14473,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14473","ServerKey":"pl181","X":416,"Y":419},{"Bonus":0,"Continent":"K53","ID":14474,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14474","ServerKey":"pl181","X":378,"Y":509},{"Bonus":0,"Continent":"K54","ID":14475,"Name":"100 StĂłkwa","PlayerID":699382126,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14475","ServerKey":"pl181","X":400,"Y":565},{"Bonus":0,"Continent":"K56","ID":14476,"Name":"=004= O poranku","PlayerID":3781794,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14476","ServerKey":"pl181","X":608,"Y":553},{"Bonus":0,"Continent":"K56","ID":14477,"Name":"019","PlayerID":849006412,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14477","ServerKey":"pl181","X":620,"Y":504},{"Bonus":0,"Continent":"K43","ID":14478,"Name":"Land of Fire","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14478","ServerKey":"pl181","X":397,"Y":441},{"Bonus":0,"Continent":"K53","ID":14479,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14479","ServerKey":"pl181","X":384,"Y":524},{"Bonus":0,"Continent":"K64","ID":14480,"Name":"009.xxx","PlayerID":8729672,"Points":10125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14480","ServerKey":"pl181","X":465,"Y":615},{"Bonus":0,"Continent":"K43","ID":14481,"Name":"A0013","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14481","ServerKey":"pl181","X":381,"Y":476},{"Bonus":0,"Continent":"K35","ID":14482,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14482","ServerKey":"pl181","X":532,"Y":382},{"Bonus":0,"Continent":"K64","ID":14483,"Name":"0352","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14483","ServerKey":"pl181","X":442,"Y":605},{"Bonus":5,"Continent":"K43","ID":14484,"Name":"A0004","PlayerID":8841266,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14484","ServerKey":"pl181","X":381,"Y":471},{"Bonus":0,"Continent":"K53","ID":14485,"Name":"Bobolice","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14485","ServerKey":"pl181","X":397,"Y":559},{"Bonus":0,"Continent":"K53","ID":14486,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14486","ServerKey":"pl181","X":383,"Y":516},{"Bonus":0,"Continent":"K65","ID":14487,"Name":"033","PlayerID":699878511,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14487","ServerKey":"pl181","X":500,"Y":618},{"Bonus":0,"Continent":"K56","ID":14488,"Name":"004","PlayerID":8428196,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14488","ServerKey":"pl181","X":611,"Y":539},{"Bonus":0,"Continent":"K35","ID":14489,"Name":"OB#001","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14489","ServerKey":"pl181","X":507,"Y":382},{"Bonus":0,"Continent":"K56","ID":14490,"Name":"=005= PrzyjechaƂo czarne","PlayerID":3781794,"Points":10133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14490","ServerKey":"pl181","X":611,"Y":550},{"Bonus":0,"Continent":"K64","ID":14491,"Name":"#015","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14491","ServerKey":"pl181","X":469,"Y":617},{"Bonus":0,"Continent":"K53","ID":14492,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14492","ServerKey":"pl181","X":382,"Y":503},{"Bonus":0,"Continent":"K34","ID":14493,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14493","ServerKey":"pl181","X":438,"Y":395},{"Bonus":0,"Continent":"K45","ID":14494,"Name":"Szlachcic","PlayerID":699170684,"Points":9453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14494","ServerKey":"pl181","X":590,"Y":419},{"Bonus":0,"Continent":"K34","ID":14495,"Name":"K34 - [004] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14495","ServerKey":"pl181","X":455,"Y":387},{"Bonus":0,"Continent":"K44","ID":14496,"Name":"FKG 01-09","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14496","ServerKey":"pl181","X":420,"Y":408},{"Bonus":1,"Continent":"K64","ID":14497,"Name":"#058","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14497","ServerKey":"pl181","X":478,"Y":620},{"Bonus":0,"Continent":"K44","ID":14498,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14498","ServerKey":"pl181","X":404,"Y":425},{"Bonus":0,"Continent":"K55","ID":14499,"Name":"Jaaa","PlayerID":698635863,"Points":10827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14499","ServerKey":"pl181","X":585,"Y":584},{"Bonus":0,"Continent":"K45","ID":14500,"Name":"138","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14500","ServerKey":"pl181","X":588,"Y":416},{"Bonus":0,"Continent":"K44","ID":14501,"Name":"Barba 1","PlayerID":699796330,"Points":9895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14501","ServerKey":"pl181","X":431,"Y":405},{"Bonus":5,"Continent":"K54","ID":14502,"Name":"Pobozowisko","PlayerID":699513260,"Points":8973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14502","ServerKey":"pl181","X":418,"Y":589},{"Bonus":0,"Continent":"K35","ID":14503,"Name":"ADEN","PlayerID":698588535,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14503","ServerKey":"pl181","X":525,"Y":380},{"Bonus":0,"Continent":"K44","ID":14504,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14504","ServerKey":"pl181","X":403,"Y":432},{"Bonus":0,"Continent":"K34","ID":14505,"Name":"Feed me more 014","PlayerID":699756210,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14505","ServerKey":"pl181","X":486,"Y":379},{"Bonus":5,"Continent":"K53","ID":14506,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14506","ServerKey":"pl181","X":380,"Y":525},{"Bonus":0,"Continent":"K44","ID":14507,"Name":"FKG 01-02","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14507","ServerKey":"pl181","X":419,"Y":413},{"Bonus":0,"Continent":"K44","ID":14508,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14508","ServerKey":"pl181","X":402,"Y":493},{"Bonus":0,"Continent":"K43","ID":14509,"Name":"A0017","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14509","ServerKey":"pl181","X":382,"Y":479},{"Bonus":0,"Continent":"K45","ID":14510,"Name":"15 im Galicyna","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14510","ServerKey":"pl181","X":595,"Y":430},{"Bonus":0,"Continent":"K55","ID":14511,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14511","ServerKey":"pl181","X":597,"Y":575},{"Bonus":0,"Continent":"K64","ID":14512,"Name":"020. Gloria Victis","PlayerID":848886973,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14512","ServerKey":"pl181","X":441,"Y":603},{"Bonus":0,"Continent":"K43","ID":14513,"Name":"s181eo14","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14513","ServerKey":"pl181","X":392,"Y":451},{"Bonus":0,"Continent":"K56","ID":14514,"Name":"SantiagoBernabeu","PlayerID":699795378,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14514","ServerKey":"pl181","X":621,"Y":508},{"Bonus":0,"Continent":"K35","ID":14515,"Name":"052","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14515","ServerKey":"pl181","X":559,"Y":398},{"Bonus":0,"Continent":"K53","ID":14516,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14516","ServerKey":"pl181","X":382,"Y":502},{"Bonus":0,"Continent":"K35","ID":14517,"Name":"010","PlayerID":1424656,"Points":9810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14517","ServerKey":"pl181","X":550,"Y":392},{"Bonus":0,"Continent":"K53","ID":14518,"Name":"ZachĂłd - 007","PlayerID":225023,"Points":10088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14518","ServerKey":"pl181","X":398,"Y":565},{"Bonus":0,"Continent":"K64","ID":14519,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14519","ServerKey":"pl181","X":459,"Y":611},{"Bonus":0,"Continent":"K54","ID":14520,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14520","ServerKey":"pl181","X":419,"Y":588},{"Bonus":0,"Continent":"K46","ID":14521,"Name":"#018.487|495","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14521","ServerKey":"pl181","X":606,"Y":446},{"Bonus":0,"Continent":"K44","ID":14522,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14522","ServerKey":"pl181","X":405,"Y":423},{"Bonus":0,"Continent":"K64","ID":14523,"Name":"012. wraca","PlayerID":699494488,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14523","ServerKey":"pl181","X":484,"Y":618},{"Bonus":0,"Continent":"K34","ID":14524,"Name":"058","PlayerID":698739350,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14524","ServerKey":"pl181","X":478,"Y":384},{"Bonus":0,"Continent":"K56","ID":14525,"Name":"03 Prequel","PlayerID":699377151,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14525","ServerKey":"pl181","X":621,"Y":500},{"Bonus":0,"Continent":"K56","ID":14526,"Name":"W.181/22","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14526","ServerKey":"pl181","X":618,"Y":522},{"Bonus":0,"Continent":"K64","ID":14527,"Name":"0205","PlayerID":698659980,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14527","ServerKey":"pl181","X":450,"Y":610},{"Bonus":0,"Continent":"K45","ID":14528,"Name":"0014","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14528","ServerKey":"pl181","X":577,"Y":406},{"Bonus":0,"Continent":"K53","ID":14529,"Name":"Ok.","PlayerID":849030226,"Points":9100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14529","ServerKey":"pl181","X":388,"Y":535},{"Bonus":0,"Continent":"K46","ID":14530,"Name":"[217] WEST","PlayerID":848985692,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14530","ServerKey":"pl181","X":607,"Y":453},{"Bonus":0,"Continent":"K46","ID":14531,"Name":"024 Raikiri","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14531","ServerKey":"pl181","X":613,"Y":459},{"Bonus":0,"Continent":"K46","ID":14532,"Name":"A011","PlayerID":699722599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14532","ServerKey":"pl181","X":607,"Y":448},{"Bonus":0,"Continent":"K56","ID":14533,"Name":"018 Starfall","PlayerID":699272880,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14533","ServerKey":"pl181","X":609,"Y":557},{"Bonus":0,"Continent":"K43","ID":14534,"Name":"Land of Fire","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14534","ServerKey":"pl181","X":399,"Y":440},{"Bonus":0,"Continent":"K55","ID":14535,"Name":"Wioska Matz32 181.1","PlayerID":1715091,"Points":10560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14535","ServerKey":"pl181","X":591,"Y":578},{"Bonus":0,"Continent":"K56","ID":14536,"Name":"023","PlayerID":849006412,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14536","ServerKey":"pl181","X":622,"Y":506},{"Bonus":0,"Continent":"K34","ID":14537,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14537","ServerKey":"pl181","X":469,"Y":386},{"Bonus":0,"Continent":"K56","ID":14538,"Name":"005","PlayerID":848899726,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14538","ServerKey":"pl181","X":602,"Y":562},{"Bonus":0,"Continent":"K64","ID":14539,"Name":"#032","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14539","ServerKey":"pl181","X":479,"Y":621},{"Bonus":0,"Continent":"K53","ID":14540,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14540","ServerKey":"pl181","X":380,"Y":536},{"Bonus":0,"Continent":"K56","ID":14541,"Name":"Gryfios 012","PlayerID":698666810,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14541","ServerKey":"pl181","X":614,"Y":535},{"Bonus":0,"Continent":"K35","ID":14543,"Name":".014.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14543","ServerKey":"pl181","X":503,"Y":380},{"Bonus":0,"Continent":"K34","ID":14545,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14545","ServerKey":"pl181","X":473,"Y":381},{"Bonus":0,"Continent":"K56","ID":14546,"Name":"SiƂa, Masa, RzeĆșba 06","PlayerID":699379895,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14546","ServerKey":"pl181","X":622,"Y":514},{"Bonus":0,"Continent":"K64","ID":14547,"Name":"003. Gloria Victis","PlayerID":848886973,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14547","ServerKey":"pl181","X":440,"Y":606},{"Bonus":0,"Continent":"K45","ID":14549,"Name":"[345] Chorągiewka na wietrze","PlayerID":848985692,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14549","ServerKey":"pl181","X":597,"Y":432},{"Bonus":0,"Continent":"K53","ID":14551,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14551","ServerKey":"pl181","X":380,"Y":528},{"Bonus":0,"Continent":"K53","ID":14552,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":7722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14552","ServerKey":"pl181","X":380,"Y":507},{"Bonus":0,"Continent":"K46","ID":14553,"Name":"#016.491|494","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14553","ServerKey":"pl181","X":610,"Y":445},{"Bonus":0,"Continent":"K55","ID":14554,"Name":"008 NABOSAKASUKA","PlayerID":2999957,"Points":9056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14554","ServerKey":"pl181","X":541,"Y":522},{"Bonus":0,"Continent":"K45","ID":14555,"Name":"145","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14555","ServerKey":"pl181","X":581,"Y":412},{"Bonus":0,"Continent":"K64","ID":14556,"Name":"Castle Rock","PlayerID":699494488,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14556","ServerKey":"pl181","X":483,"Y":622},{"Bonus":0,"Continent":"K56","ID":14557,"Name":"=017= Nowe pokolenie","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14557","ServerKey":"pl181","X":609,"Y":549},{"Bonus":0,"Continent":"K46","ID":14558,"Name":"#013.490|495","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14558","ServerKey":"pl181","X":609,"Y":446},{"Bonus":0,"Continent":"K34","ID":14559,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14559","ServerKey":"pl181","X":491,"Y":378},{"Bonus":0,"Continent":"K45","ID":14560,"Name":"MOTEL 4","PlayerID":849064614,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14560","ServerKey":"pl181","X":566,"Y":400},{"Bonus":4,"Continent":"K65","ID":14561,"Name":"0088","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14561","ServerKey":"pl181","X":548,"Y":611},{"Bonus":0,"Continent":"K56","ID":14563,"Name":"A 002","PlayerID":8078914,"Points":9590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14563","ServerKey":"pl181","X":606,"Y":558},{"Bonus":0,"Continent":"K54","ID":14564,"Name":"CzƂuchĂłw","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14564","ServerKey":"pl181","X":404,"Y":574},{"Bonus":0,"Continent":"K64","ID":14565,"Name":"004. Dol Guldur","PlayerID":699494488,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14565","ServerKey":"pl181","X":488,"Y":621},{"Bonus":0,"Continent":"K35","ID":14566,"Name":"Wioska barbarzyƄska24","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14566","ServerKey":"pl181","X":504,"Y":377},{"Bonus":0,"Continent":"K46","ID":14567,"Name":"[213] WEST","PlayerID":848985692,"Points":10013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14567","ServerKey":"pl181","X":608,"Y":453},{"Bonus":0,"Continent":"K56","ID":14568,"Name":"=006= Auto, od szwagra","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14568","ServerKey":"pl181","X":611,"Y":552},{"Bonus":0,"Continent":"K45","ID":14569,"Name":"[337] Chorągiewka na wietrze","PlayerID":848985692,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14569","ServerKey":"pl181","X":589,"Y":421},{"Bonus":0,"Continent":"K35","ID":14570,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14570","ServerKey":"pl181","X":523,"Y":372},{"Bonus":0,"Continent":"K56","ID":14571,"Name":"0021","PlayerID":6510480,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14571","ServerKey":"pl181","X":615,"Y":530},{"Bonus":0,"Continent":"K45","ID":14572,"Name":"064","PlayerID":849063849,"Points":3676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14572","ServerKey":"pl181","X":572,"Y":424},{"Bonus":0,"Continent":"K56","ID":14573,"Name":"HMB","PlayerID":699379895,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14573","ServerKey":"pl181","X":623,"Y":503},{"Bonus":8,"Continent":"K44","ID":14574,"Name":"002","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14574","ServerKey":"pl181","X":402,"Y":431},{"Bonus":0,"Continent":"K65","ID":14575,"Name":"Mako Reactor 1 - B6F","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14575","ServerKey":"pl181","X":522,"Y":616},{"Bonus":0,"Continent":"K44","ID":14576,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14576","ServerKey":"pl181","X":412,"Y":418},{"Bonus":0,"Continent":"K45","ID":14578,"Name":"084","PlayerID":849064752,"Points":9772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14578","ServerKey":"pl181","X":584,"Y":412},{"Bonus":0,"Continent":"K46","ID":14579,"Name":"020. Cyrene","PlayerID":849091866,"Points":9226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14579","ServerKey":"pl181","X":615,"Y":460},{"Bonus":0,"Continent":"K34","ID":14580,"Name":"Konfederacja + 8","PlayerID":848915730,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14580","ServerKey":"pl181","X":469,"Y":384},{"Bonus":0,"Continent":"K46","ID":14581,"Name":"Jehu_Kingdom_08_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14581","ServerKey":"pl181","X":610,"Y":460},{"Bonus":0,"Continent":"K35","ID":14582,"Name":"24 im Proszyna","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14582","ServerKey":"pl181","X":564,"Y":396},{"Bonus":0,"Continent":"K55","ID":14583,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14583","ServerKey":"pl181","X":575,"Y":595},{"Bonus":0,"Continent":"K44","ID":14584,"Name":"0029","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14584","ServerKey":"pl181","X":427,"Y":406},{"Bonus":0,"Continent":"K53","ID":14585,"Name":"159 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14585","ServerKey":"pl181","X":387,"Y":549},{"Bonus":0,"Continent":"K54","ID":14586,"Name":"Z barba 011","PlayerID":225023,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14586","ServerKey":"pl181","X":408,"Y":576},{"Bonus":0,"Continent":"K46","ID":14587,"Name":"012 Miyazaki","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14587","ServerKey":"pl181","X":621,"Y":481},{"Bonus":0,"Continent":"K34","ID":14588,"Name":"K34 - [046] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14588","ServerKey":"pl181","X":457,"Y":387},{"Bonus":0,"Continent":"K65","ID":14589,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14589","ServerKey":"pl181","X":507,"Y":623},{"Bonus":0,"Continent":"K44","ID":14590,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14590","ServerKey":"pl181","X":427,"Y":403},{"Bonus":0,"Continent":"K43","ID":14591,"Name":"Land of Fire","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14591","ServerKey":"pl181","X":394,"Y":445},{"Bonus":3,"Continent":"K45","ID":14592,"Name":"B 004","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14592","ServerKey":"pl181","X":585,"Y":419},{"Bonus":0,"Continent":"K64","ID":14593,"Name":"077","PlayerID":699336777,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14593","ServerKey":"pl181","X":475,"Y":620},{"Bonus":0,"Continent":"K55","ID":14594,"Name":"Szlachcic","PlayerID":930720,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14594","ServerKey":"pl181","X":578,"Y":592},{"Bonus":0,"Continent":"K54","ID":14595,"Name":"C 014 Ornontowice","PlayerID":849084740,"Points":7420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14595","ServerKey":"pl181","X":419,"Y":587},{"Bonus":0,"Continent":"K56","ID":14596,"Name":"*013*","PlayerID":698670524,"Points":8726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14596","ServerKey":"pl181","X":622,"Y":512},{"Bonus":0,"Continent":"K34","ID":14597,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14597","ServerKey":"pl181","X":473,"Y":382},{"Bonus":0,"Continent":"K46","ID":14598,"Name":"015. Carthago","PlayerID":849091866,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14598","ServerKey":"pl181","X":615,"Y":468},{"Bonus":0,"Continent":"K64","ID":14599,"Name":"Essos","PlayerID":699494488,"Points":6922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14599","ServerKey":"pl181","X":480,"Y":621},{"Bonus":0,"Continent":"K43","ID":14600,"Name":"Makalu","PlayerID":849013126,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14600","ServerKey":"pl181","X":380,"Y":493},{"Bonus":0,"Continent":"K34","ID":14601,"Name":"K34 - [093] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14601","ServerKey":"pl181","X":462,"Y":379},{"Bonus":0,"Continent":"K35","ID":14602,"Name":"102 ***5a*** Wiƛnia","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14602","ServerKey":"pl181","X":540,"Y":385},{"Bonus":0,"Continent":"K43","ID":14603,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14603","ServerKey":"pl181","X":380,"Y":487},{"Bonus":0,"Continent":"K45","ID":14604,"Name":"29 im BelaPorto","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14604","ServerKey":"pl181","X":594,"Y":429},{"Bonus":0,"Continent":"K65","ID":14605,"Name":"Teby_15","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14605","ServerKey":"pl181","X":506,"Y":619},{"Bonus":0,"Continent":"K56","ID":14606,"Name":"0011","PlayerID":6510480,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14606","ServerKey":"pl181","X":614,"Y":528},{"Bonus":0,"Continent":"K53","ID":14607,"Name":"037 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14607","ServerKey":"pl181","X":391,"Y":554},{"Bonus":0,"Continent":"K53","ID":14608,"Name":"166 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14608","ServerKey":"pl181","X":388,"Y":544},{"Bonus":0,"Continent":"K43","ID":14609,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14609","ServerKey":"pl181","X":398,"Y":432},{"Bonus":1,"Continent":"K44","ID":14610,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14610","ServerKey":"pl181","X":401,"Y":434},{"Bonus":0,"Continent":"K46","ID":14611,"Name":"033","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14611","ServerKey":"pl181","X":620,"Y":477},{"Bonus":0,"Continent":"K45","ID":14612,"Name":"Belvedere 005","PlayerID":699756210,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14612","ServerKey":"pl181","X":579,"Y":407},{"Bonus":0,"Continent":"K64","ID":14613,"Name":"063 - Wara***","PlayerID":225023,"Points":6138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14613","ServerKey":"pl181","X":438,"Y":605},{"Bonus":0,"Continent":"K35","ID":14614,"Name":"054","PlayerID":849063849,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14614","ServerKey":"pl181","X":568,"Y":397},{"Bonus":0,"Continent":"K65","ID":14615,"Name":"CALL 992","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14615","ServerKey":"pl181","X":554,"Y":609},{"Bonus":0,"Continent":"K43","ID":14616,"Name":"s181eo29","PlayerID":393668,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14616","ServerKey":"pl181","X":386,"Y":456},{"Bonus":0,"Continent":"K35","ID":14617,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14617","ServerKey":"pl181","X":558,"Y":391},{"Bonus":0,"Continent":"K53","ID":14618,"Name":"Knowhere","PlayerID":699723284,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14618","ServerKey":"pl181","X":377,"Y":501},{"Bonus":0,"Continent":"K44","ID":14619,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14619","ServerKey":"pl181","X":406,"Y":422},{"Bonus":0,"Continent":"K53","ID":14621,"Name":"101 SposobĂłw na","PlayerID":699382126,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14621","ServerKey":"pl181","X":399,"Y":566},{"Bonus":0,"Continent":"K35","ID":14623,"Name":".achim.","PlayerID":6936607,"Points":9863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14623","ServerKey":"pl181","X":538,"Y":389},{"Bonus":0,"Continent":"K46","ID":14624,"Name":"010","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14624","ServerKey":"pl181","X":623,"Y":492},{"Bonus":9,"Continent":"K64","ID":14625,"Name":"011.xxx","PlayerID":8612358,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14625","ServerKey":"pl181","X":472,"Y":618},{"Bonus":0,"Continent":"K34","ID":14626,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14626","ServerKey":"pl181","X":444,"Y":394},{"Bonus":0,"Continent":"K46","ID":14627,"Name":"Jaaa","PlayerID":698635863,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14627","ServerKey":"pl181","X":608,"Y":441},{"Bonus":4,"Continent":"K53","ID":14628,"Name":"Brat447","PlayerID":699262350,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14628","ServerKey":"pl181","X":379,"Y":512},{"Bonus":0,"Continent":"K34","ID":14629,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14629","ServerKey":"pl181","X":474,"Y":381},{"Bonus":0,"Continent":"K44","ID":14630,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14630","ServerKey":"pl181","X":437,"Y":400},{"Bonus":7,"Continent":"K65","ID":14631,"Name":"0004","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14631","ServerKey":"pl181","X":532,"Y":615},{"Bonus":0,"Continent":"K56","ID":14634,"Name":"0015","PlayerID":6510480,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14634","ServerKey":"pl181","X":616,"Y":528},{"Bonus":0,"Continent":"K34","ID":14635,"Name":"K34 - [065] Before Land","PlayerID":699088769,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14635","ServerKey":"pl181","X":467,"Y":382},{"Bonus":0,"Continent":"K56","ID":14636,"Name":"Bocianikson007","PlayerID":7528491,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14636","ServerKey":"pl181","X":609,"Y":547},{"Bonus":0,"Continent":"K53","ID":14637,"Name":"021 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":6174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14637","ServerKey":"pl181","X":394,"Y":561},{"Bonus":0,"Continent":"K64","ID":14638,"Name":"006","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14638","ServerKey":"pl181","X":441,"Y":606},{"Bonus":0,"Continent":"K44","ID":14639,"Name":"Wioska waldziu93","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14639","ServerKey":"pl181","X":404,"Y":427},{"Bonus":0,"Continent":"K34","ID":14640,"Name":"K34 - [047] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14640","ServerKey":"pl181","X":456,"Y":388},{"Bonus":0,"Continent":"K55","ID":14641,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14641","ServerKey":"pl181","X":586,"Y":584},{"Bonus":0,"Continent":"K56","ID":14642,"Name":"SiƂa, Masa, RzeĆșba 02","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14642","ServerKey":"pl181","X":622,"Y":508},{"Bonus":0,"Continent":"K64","ID":14643,"Name":"#018","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14643","ServerKey":"pl181","X":477,"Y":620},{"Bonus":0,"Continent":"K64","ID":14644,"Name":"#007 taki agent","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14644","ServerKey":"pl181","X":467,"Y":615},{"Bonus":0,"Continent":"K65","ID":14645,"Name":"CALL 923","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14645","ServerKey":"pl181","X":556,"Y":604},{"Bonus":0,"Continent":"K56","ID":14646,"Name":"007 Roskilde","PlayerID":699272880,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14646","ServerKey":"pl181","X":603,"Y":567},{"Bonus":0,"Continent":"K45","ID":14647,"Name":"Belvedere 006","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14647","ServerKey":"pl181","X":580,"Y":408},{"Bonus":0,"Continent":"K54","ID":14648,"Name":"--004--","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14648","ServerKey":"pl181","X":432,"Y":599},{"Bonus":0,"Continent":"K53","ID":14649,"Name":"Wioska naja1920ruch","PlayerID":9167250,"Points":9100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14649","ServerKey":"pl181","X":396,"Y":555},{"Bonus":0,"Continent":"K35","ID":14650,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14650","ServerKey":"pl181","X":558,"Y":393},{"Bonus":0,"Continent":"K46","ID":14651,"Name":"[328] Chorągiewka na wietrze","PlayerID":848985692,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14651","ServerKey":"pl181","X":601,"Y":432},{"Bonus":0,"Continent":"K53","ID":14652,"Name":"ZachĂłd - 008","PlayerID":225023,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14652","ServerKey":"pl181","X":399,"Y":564},{"Bonus":0,"Continent":"K55","ID":14653,"Name":"005.Botew","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14653","ServerKey":"pl181","X":599,"Y":571},{"Bonus":0,"Continent":"K43","ID":14654,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14654","ServerKey":"pl181","X":397,"Y":435},{"Bonus":0,"Continent":"K35","ID":14655,"Name":"013","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14655","ServerKey":"pl181","X":506,"Y":379},{"Bonus":0,"Continent":"K44","ID":14656,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14656","ServerKey":"pl181","X":412,"Y":415},{"Bonus":0,"Continent":"K34","ID":14657,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14657","ServerKey":"pl181","X":470,"Y":383},{"Bonus":0,"Continent":"K44","ID":14658,"Name":"006","PlayerID":699788305,"Points":8739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14658","ServerKey":"pl181","X":401,"Y":426},{"Bonus":5,"Continent":"K45","ID":14659,"Name":"Gattacka","PlayerID":699298370,"Points":10384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14659","ServerKey":"pl181","X":599,"Y":429},{"Bonus":0,"Continent":"K65","ID":14660,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14660","ServerKey":"pl181","X":514,"Y":622},{"Bonus":0,"Continent":"K65","ID":14661,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14661","ServerKey":"pl181","X":515,"Y":617},{"Bonus":0,"Continent":"K34","ID":14662,"Name":"VN Ishida Mitsunari","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14662","ServerKey":"pl181","X":478,"Y":382},{"Bonus":0,"Continent":"K64","ID":14663,"Name":"#026","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14663","ServerKey":"pl181","X":498,"Y":618},{"Bonus":0,"Continent":"K56","ID":14664,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14664","ServerKey":"pl181","X":600,"Y":572},{"Bonus":0,"Continent":"K34","ID":14665,"Name":"028","PlayerID":849010255,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14665","ServerKey":"pl181","X":480,"Y":380},{"Bonus":7,"Continent":"K43","ID":14666,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14666","ServerKey":"pl181","X":397,"Y":440},{"Bonus":0,"Continent":"K56","ID":14667,"Name":"012","PlayerID":849006412,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14667","ServerKey":"pl181","X":620,"Y":501},{"Bonus":0,"Continent":"K53","ID":14668,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14668","ServerKey":"pl181","X":384,"Y":540},{"Bonus":0,"Continent":"K65","ID":14669,"Name":"albo jutro","PlayerID":699567608,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14669","ServerKey":"pl181","X":560,"Y":607},{"Bonus":0,"Continent":"K55","ID":14670,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14670","ServerKey":"pl181","X":599,"Y":574},{"Bonus":0,"Continent":"K44","ID":14671,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14671","ServerKey":"pl181","X":408,"Y":426},{"Bonus":0,"Continent":"K65","ID":14672,"Name":"CALL 932","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14672","ServerKey":"pl181","X":554,"Y":611},{"Bonus":0,"Continent":"K53","ID":14673,"Name":"# Szymi 9","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14673","ServerKey":"pl181","X":388,"Y":548},{"Bonus":0,"Continent":"K53","ID":14674,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14674","ServerKey":"pl181","X":382,"Y":526},{"Bonus":0,"Continent":"K64","ID":14675,"Name":"009. GĂłra Gram","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14675","ServerKey":"pl181","X":488,"Y":627},{"Bonus":0,"Continent":"K45","ID":14676,"Name":"[340] Chorągiewka na wietrze","PlayerID":848985692,"Points":10392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14676","ServerKey":"pl181","X":588,"Y":421},{"Bonus":0,"Continent":"K46","ID":14677,"Name":"WW1","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14677","ServerKey":"pl181","X":620,"Y":480},{"Bonus":0,"Continent":"K64","ID":14678,"Name":"scoti","PlayerID":699494488,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14678","ServerKey":"pl181","X":486,"Y":617},{"Bonus":0,"Continent":"K44","ID":14679,"Name":"00978","PlayerID":3909522,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14679","ServerKey":"pl181","X":462,"Y":434},{"Bonus":0,"Continent":"K55","ID":14680,"Name":"-Miasto tonie","PlayerID":699785935,"Points":9576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14680","ServerKey":"pl181","X":517,"Y":513},{"Bonus":0,"Continent":"K35","ID":14681,"Name":"ADEN","PlayerID":698588535,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14681","ServerKey":"pl181","X":526,"Y":380},{"Bonus":0,"Continent":"K65","ID":14682,"Name":"003.","PlayerID":873575,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14682","ServerKey":"pl181","X":563,"Y":601},{"Bonus":0,"Continent":"K56","ID":14683,"Name":"15 Prawdy nie mĂłwi nikt","PlayerID":699377151,"Points":3645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14683","ServerKey":"pl181","X":620,"Y":511},{"Bonus":0,"Continent":"K46","ID":14684,"Name":"Jaaa","PlayerID":698635863,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14684","ServerKey":"pl181","X":603,"Y":437},{"Bonus":0,"Continent":"K34","ID":14685,"Name":"K34 - [086] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14685","ServerKey":"pl181","X":451,"Y":387},{"Bonus":0,"Continent":"K46","ID":14686,"Name":"A005","PlayerID":699722599,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14686","ServerKey":"pl181","X":614,"Y":452},{"Bonus":0,"Continent":"K44","ID":14687,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14687","ServerKey":"pl181","X":408,"Y":419},{"Bonus":0,"Continent":"K65","ID":14688,"Name":"#0030","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14688","ServerKey":"pl181","X":547,"Y":613},{"Bonus":0,"Continent":"K46","ID":14689,"Name":"0022. C -","PlayerID":7125212,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14689","ServerKey":"pl181","X":621,"Y":486},{"Bonus":0,"Continent":"K46","ID":14690,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14690","ServerKey":"pl181","X":607,"Y":439},{"Bonus":0,"Continent":"K34","ID":14691,"Name":"[0019]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14691","ServerKey":"pl181","X":447,"Y":393},{"Bonus":0,"Continent":"K34","ID":14692,"Name":".036.","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14692","ServerKey":"pl181","X":483,"Y":380},{"Bonus":0,"Continent":"K43","ID":14693,"Name":"Land of Fire","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14693","ServerKey":"pl181","X":397,"Y":442},{"Bonus":0,"Continent":"K34","ID":14695,"Name":"K34 - [079] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14695","ServerKey":"pl181","X":464,"Y":385},{"Bonus":0,"Continent":"K56","ID":14696,"Name":"W.181/09","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14696","ServerKey":"pl181","X":614,"Y":532},{"Bonus":0,"Continent":"K64","ID":14697,"Name":"083","PlayerID":699336777,"Points":9216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14697","ServerKey":"pl181","X":471,"Y":620},{"Bonus":0,"Continent":"K56","ID":14698,"Name":"027 Nilfgaard","PlayerID":699272880,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14698","ServerKey":"pl181","X":620,"Y":520},{"Bonus":0,"Continent":"K55","ID":14699,"Name":"Marktoberdorf","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14699","ServerKey":"pl181","X":594,"Y":579},{"Bonus":0,"Continent":"K45","ID":14700,"Name":"Wioska barbarzyƄska 008|","PlayerID":6343784,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14700","ServerKey":"pl181","X":575,"Y":406},{"Bonus":0,"Continent":"K56","ID":14701,"Name":"A 003","PlayerID":8078914,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14701","ServerKey":"pl181","X":607,"Y":562},{"Bonus":0,"Continent":"K53","ID":14702,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14702","ServerKey":"pl181","X":384,"Y":535},{"Bonus":0,"Continent":"K34","ID":14703,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14703","ServerKey":"pl181","X":479,"Y":378},{"Bonus":0,"Continent":"K43","ID":14704,"Name":"s181eo10","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14704","ServerKey":"pl181","X":391,"Y":445},{"Bonus":0,"Continent":"K54","ID":14705,"Name":"Z barba 014","PlayerID":225023,"Points":3431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14705","ServerKey":"pl181","X":401,"Y":565},{"Bonus":0,"Continent":"K34","ID":14706,"Name":"0007","PlayerID":699431255,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14706","ServerKey":"pl181","X":441,"Y":392},{"Bonus":9,"Continent":"K64","ID":14707,"Name":"008.xxx","PlayerID":8612358,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14707","ServerKey":"pl181","X":469,"Y":619},{"Bonus":0,"Continent":"K53","ID":14708,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14708","ServerKey":"pl181","X":380,"Y":527},{"Bonus":0,"Continent":"K64","ID":14709,"Name":"017.xxx","PlayerID":8612358,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14709","ServerKey":"pl181","X":469,"Y":618},{"Bonus":0,"Continent":"K45","ID":14710,"Name":"117","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14710","ServerKey":"pl181","X":581,"Y":408},{"Bonus":0,"Continent":"K54","ID":14711,"Name":"0023 Wioska barbarzyƄska","PlayerID":9060641,"Points":4918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14711","ServerKey":"pl181","X":424,"Y":597},{"Bonus":0,"Continent":"K46","ID":14712,"Name":"600|428 Wioska barbarzyƄska19","PlayerID":6822957,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14712","ServerKey":"pl181","X":600,"Y":428},{"Bonus":0,"Continent":"K34","ID":14713,"Name":"020","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14713","ServerKey":"pl181","X":487,"Y":379},{"Bonus":0,"Continent":"K44","ID":14714,"Name":"Barba 5","PlayerID":699796330,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14714","ServerKey":"pl181","X":430,"Y":403},{"Bonus":0,"Continent":"K44","ID":14715,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14715","ServerKey":"pl181","X":408,"Y":421},{"Bonus":0,"Continent":"K46","ID":14716,"Name":"0021. C -","PlayerID":7125212,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14716","ServerKey":"pl181","X":620,"Y":489},{"Bonus":0,"Continent":"K45","ID":14717,"Name":"Wioska barbarzyƄska 012|","PlayerID":6343784,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14717","ServerKey":"pl181","X":575,"Y":409},{"Bonus":0,"Continent":"K56","ID":14718,"Name":"A.014","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14718","ServerKey":"pl181","X":600,"Y":566},{"Bonus":0,"Continent":"K45","ID":14719,"Name":"0001","PlayerID":8459255,"Points":10341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14719","ServerKey":"pl181","X":598,"Y":426},{"Bonus":1,"Continent":"K35","ID":14720,"Name":"006","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14720","ServerKey":"pl181","X":507,"Y":378},{"Bonus":0,"Continent":"K34","ID":14721,"Name":"064","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14721","ServerKey":"pl181","X":475,"Y":385},{"Bonus":0,"Continent":"K53","ID":14722,"Name":"*005 Vestmannaeyjar","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14722","ServerKey":"pl181","X":388,"Y":539},{"Bonus":0,"Continent":"K44","ID":14723,"Name":"?+44 85 Miribel","PlayerID":698361257,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14723","ServerKey":"pl181","X":456,"Y":488},{"Bonus":0,"Continent":"K65","ID":14724,"Name":"016.","PlayerID":873575,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14724","ServerKey":"pl181","X":562,"Y":605},{"Bonus":0,"Continent":"K46","ID":14725,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14725","ServerKey":"pl181","X":601,"Y":434},{"Bonus":0,"Continent":"K64","ID":14726,"Name":"0016 Bigi","PlayerID":9060641,"Points":8327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14726","ServerKey":"pl181","X":428,"Y":601},{"Bonus":0,"Continent":"K56","ID":14727,"Name":"001","PlayerID":8428196,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14727","ServerKey":"pl181","X":618,"Y":538},{"Bonus":0,"Continent":"K56","ID":14728,"Name":"0043","PlayerID":6510480,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14728","ServerKey":"pl181","X":622,"Y":523},{"Bonus":0,"Continent":"K46","ID":14729,"Name":"#027.490|494","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14729","ServerKey":"pl181","X":609,"Y":445},{"Bonus":0,"Continent":"K53","ID":14730,"Name":"156 Ale mnie gƂówka boli","PlayerID":699382126,"Points":4934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14730","ServerKey":"pl181","X":390,"Y":550},{"Bonus":0,"Continent":"K46","ID":14731,"Name":"076. Utgard","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14731","ServerKey":"pl181","X":626,"Y":477},{"Bonus":0,"Continent":"K35","ID":14732,"Name":"003","PlayerID":849063849,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14732","ServerKey":"pl181","X":564,"Y":399},{"Bonus":0,"Continent":"K43","ID":14733,"Name":"0012","PlayerID":698807570,"Points":10686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14733","ServerKey":"pl181","X":387,"Y":459},{"Bonus":0,"Continent":"K56","ID":14734,"Name":"Gryfios 019","PlayerID":698666810,"Points":11888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14734","ServerKey":"pl181","X":619,"Y":535},{"Bonus":0,"Continent":"K55","ID":14735,"Name":"Wioska 012","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14735","ServerKey":"pl181","X":594,"Y":580},{"Bonus":0,"Continent":"K65","ID":14736,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14736","ServerKey":"pl181","X":517,"Y":618},{"Bonus":9,"Continent":"K64","ID":14737,"Name":"0351","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14737","ServerKey":"pl181","X":444,"Y":604},{"Bonus":0,"Continent":"K65","ID":14738,"Name":"Hojo s Laboratory","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14738","ServerKey":"pl181","X":519,"Y":621},{"Bonus":0,"Continent":"K45","ID":14739,"Name":"149 MIKOX 025","PlayerID":699491076,"Points":9363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14739","ServerKey":"pl181","X":592,"Y":418},{"Bonus":0,"Continent":"K56","ID":14740,"Name":"Taran 007","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14740","ServerKey":"pl181","X":618,"Y":524},{"Bonus":0,"Continent":"K55","ID":14741,"Name":"[022] Patayin ka","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14741","ServerKey":"pl181","X":599,"Y":517},{"Bonus":0,"Continent":"K34","ID":14742,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14742","ServerKey":"pl181","X":430,"Y":399},{"Bonus":0,"Continent":"K45","ID":14743,"Name":"Belvedere 024","PlayerID":699756210,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14743","ServerKey":"pl181","X":582,"Y":408},{"Bonus":0,"Continent":"K43","ID":14744,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14744","ServerKey":"pl181","X":379,"Y":482},{"Bonus":0,"Continent":"K45","ID":14745,"Name":"*Armagedon","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14745","ServerKey":"pl181","X":591,"Y":420},{"Bonus":0,"Continent":"K34","ID":14746,"Name":"0006","PlayerID":699431255,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14746","ServerKey":"pl181","X":444,"Y":393},{"Bonus":0,"Continent":"K46","ID":14747,"Name":"A001","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14747","ServerKey":"pl181","X":624,"Y":491},{"Bonus":8,"Continent":"K43","ID":14748,"Name":"0005","PlayerID":698807570,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14748","ServerKey":"pl181","X":388,"Y":461},{"Bonus":0,"Continent":"K64","ID":14749,"Name":"#019 M","PlayerID":9037756,"Points":10715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14749","ServerKey":"pl181","X":458,"Y":614},{"Bonus":0,"Continent":"K44","ID":14750,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14750","ServerKey":"pl181","X":423,"Y":404},{"Bonus":0,"Continent":"K35","ID":14751,"Name":"0026","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14751","ServerKey":"pl181","X":559,"Y":395},{"Bonus":0,"Continent":"K44","ID":14752,"Name":"0008 JacekDD","PlayerID":3909522,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14752","ServerKey":"pl181","X":427,"Y":412},{"Bonus":0,"Continent":"K64","ID":14753,"Name":"050 - A02.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14753","ServerKey":"pl181","X":439,"Y":602},{"Bonus":9,"Continent":"K44","ID":14754,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14754","ServerKey":"pl181","X":401,"Y":432},{"Bonus":0,"Continent":"K53","ID":14755,"Name":"160 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14755","ServerKey":"pl181","X":387,"Y":548},{"Bonus":0,"Continent":"K45","ID":14756,"Name":"599|426 012","PlayerID":6822957,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14756","ServerKey":"pl181","X":599,"Y":426},{"Bonus":0,"Continent":"K65","ID":14757,"Name":"04. Gladiolus Amicitia","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14757","ServerKey":"pl181","X":524,"Y":617},{"Bonus":0,"Continent":"K64","ID":14758,"Name":"0637","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14758","ServerKey":"pl181","X":437,"Y":600},{"Bonus":0,"Continent":"K56","ID":14759,"Name":"Gryfios 007","PlayerID":698666810,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14759","ServerKey":"pl181","X":617,"Y":535},{"Bonus":0,"Continent":"K56","ID":14760,"Name":"W.181/23","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14760","ServerKey":"pl181","X":617,"Y":520},{"Bonus":0,"Continent":"K43","ID":14761,"Name":"s181eo30","PlayerID":393668,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14761","ServerKey":"pl181","X":390,"Y":456},{"Bonus":0,"Continent":"K35","ID":14762,"Name":"Midgard","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14762","ServerKey":"pl181","X":533,"Y":386},{"Bonus":0,"Continent":"K65","ID":14764,"Name":"ƚmieszki","PlayerID":3454753,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14764","ServerKey":"pl181","X":533,"Y":617},{"Bonus":0,"Continent":"K44","ID":14765,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14765","ServerKey":"pl181","X":413,"Y":420},{"Bonus":0,"Continent":"K44","ID":14766,"Name":"FKG 01-11","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14766","ServerKey":"pl181","X":422,"Y":409},{"Bonus":0,"Continent":"K44","ID":14767,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14767","ServerKey":"pl181","X":404,"Y":426},{"Bonus":0,"Continent":"K65","ID":14768,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14768","ServerKey":"pl181","X":515,"Y":621},{"Bonus":0,"Continent":"K44","ID":14769,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14769","ServerKey":"pl181","X":400,"Y":434},{"Bonus":0,"Continent":"K43","ID":14771,"Name":"A0247","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14771","ServerKey":"pl181","X":379,"Y":494},{"Bonus":0,"Continent":"K65","ID":14772,"Name":"#0022","PlayerID":699728159,"Points":6513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14772","ServerKey":"pl181","X":523,"Y":624},{"Bonus":0,"Continent":"K43","ID":14773,"Name":"Wioska","PlayerID":6258092,"Points":7028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14773","ServerKey":"pl181","X":383,"Y":466},{"Bonus":0,"Continent":"K55","ID":14774,"Name":"085","PlayerID":699373599,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14774","ServerKey":"pl181","X":599,"Y":567},{"Bonus":0,"Continent":"K44","ID":14775,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14775","ServerKey":"pl181","X":412,"Y":416},{"Bonus":0,"Continent":"K54","ID":14776,"Name":"PƂocicz","PlayerID":698769107,"Points":7596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14776","ServerKey":"pl181","X":412,"Y":578},{"Bonus":0,"Continent":"K65","ID":14777,"Name":"Aerith House","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14777","ServerKey":"pl181","X":520,"Y":620},{"Bonus":0,"Continent":"K45","ID":14778,"Name":"xxx","PlayerID":698239813,"Points":7195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14778","ServerKey":"pl181","X":514,"Y":458},{"Bonus":7,"Continent":"K64","ID":14779,"Name":"0099","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14779","ServerKey":"pl181","X":454,"Y":612},{"Bonus":0,"Continent":"K35","ID":14780,"Name":"029","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14780","ServerKey":"pl181","X":539,"Y":384},{"Bonus":0,"Continent":"K35","ID":14781,"Name":"ADEN","PlayerID":698588535,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14781","ServerKey":"pl181","X":523,"Y":378},{"Bonus":0,"Continent":"K56","ID":14782,"Name":"SiƂa, Masa, RzeĆșba 07","PlayerID":699379895,"Points":9509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14782","ServerKey":"pl181","X":621,"Y":515},{"Bonus":0,"Continent":"K65","ID":14783,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14783","ServerKey":"pl181","X":536,"Y":618},{"Bonus":0,"Continent":"K44","ID":14784,"Name":"001","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14784","ServerKey":"pl181","X":422,"Y":400},{"Bonus":0,"Continent":"K34","ID":14785,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14785","ServerKey":"pl181","X":478,"Y":380},{"Bonus":0,"Continent":"K43","ID":14786,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14786","ServerKey":"pl181","X":399,"Y":437},{"Bonus":0,"Continent":"K34","ID":14787,"Name":"K34 - [120] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14787","ServerKey":"pl181","X":449,"Y":388},{"Bonus":0,"Continent":"K53","ID":14788,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14788","ServerKey":"pl181","X":383,"Y":511},{"Bonus":0,"Continent":"K53","ID":14789,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14789","ServerKey":"pl181","X":379,"Y":507},{"Bonus":0,"Continent":"K46","ID":14790,"Name":"[223] WEST KA","PlayerID":848985692,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14790","ServerKey":"pl181","X":611,"Y":453},{"Bonus":0,"Continent":"K64","ID":14791,"Name":"034.","PlayerID":699494488,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14791","ServerKey":"pl181","X":481,"Y":618},{"Bonus":0,"Continent":"K43","ID":14792,"Name":"A0223","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14792","ServerKey":"pl181","X":376,"Y":491},{"Bonus":0,"Continent":"K45","ID":14794,"Name":"14 im Klimowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14794","ServerKey":"pl181","X":595,"Y":427},{"Bonus":0,"Continent":"K35","ID":14795,"Name":"ADEN","PlayerID":698588535,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14795","ServerKey":"pl181","X":521,"Y":381},{"Bonus":0,"Continent":"K53","ID":14796,"Name":"034 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14796","ServerKey":"pl181","X":391,"Y":558},{"Bonus":0,"Continent":"K34","ID":14797,"Name":"Konfederacja +","PlayerID":848915730,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14797","ServerKey":"pl181","X":463,"Y":381},{"Bonus":0,"Continent":"K34","ID":14798,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14798","ServerKey":"pl181","X":428,"Y":399},{"Bonus":7,"Continent":"K46","ID":14799,"Name":"[210] WEST","PlayerID":848985692,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14799","ServerKey":"pl181","X":611,"Y":450},{"Bonus":0,"Continent":"K44","ID":14800,"Name":"020","PlayerID":699510259,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14800","ServerKey":"pl181","X":431,"Y":490},{"Bonus":0,"Continent":"K46","ID":14801,"Name":"004","PlayerID":849006412,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14801","ServerKey":"pl181","X":620,"Y":491},{"Bonus":0,"Continent":"K43","ID":14802,"Name":"A0047","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14802","ServerKey":"pl181","X":381,"Y":469},{"Bonus":0,"Continent":"K44","ID":14803,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14803","ServerKey":"pl181","X":427,"Y":401},{"Bonus":0,"Continent":"K34","ID":14804,"Name":"K34 - [089] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14804","ServerKey":"pl181","X":457,"Y":386},{"Bonus":0,"Continent":"K56","ID":14805,"Name":"rakieta 009","PlayerID":848928486,"Points":5632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14805","ServerKey":"pl181","X":619,"Y":529},{"Bonus":0,"Continent":"K56","ID":14806,"Name":"003","PlayerID":8428196,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14806","ServerKey":"pl181","X":614,"Y":542},{"Bonus":0,"Continent":"K35","ID":14807,"Name":"31 im Lorda Mikiego","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14807","ServerKey":"pl181","X":561,"Y":397},{"Bonus":0,"Continent":"K65","ID":14808,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14808","ServerKey":"pl181","X":546,"Y":613},{"Bonus":0,"Continent":"K53","ID":14809,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14809","ServerKey":"pl181","X":390,"Y":546},{"Bonus":0,"Continent":"K43","ID":14810,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14810","ServerKey":"pl181","X":389,"Y":458},{"Bonus":0,"Continent":"K56","ID":14811,"Name":"12 Vanitas","PlayerID":9314079,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14811","ServerKey":"pl181","X":618,"Y":512},{"Bonus":0,"Continent":"K64","ID":14812,"Name":"#023","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14812","ServerKey":"pl181","X":477,"Y":621},{"Bonus":0,"Continent":"K65","ID":14813,"Name":"#0005 Kumogakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14813","ServerKey":"pl181","X":529,"Y":621},{"Bonus":1,"Continent":"K44","ID":14814,"Name":"0006","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14814","ServerKey":"pl181","X":425,"Y":407},{"Bonus":0,"Continent":"K65","ID":14815,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14815","ServerKey":"pl181","X":513,"Y":623},{"Bonus":0,"Continent":"K64","ID":14816,"Name":"#001 A","PlayerID":9037756,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14816","ServerKey":"pl181","X":460,"Y":614},{"Bonus":0,"Continent":"K46","ID":14817,"Name":"008","PlayerID":849091105,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14817","ServerKey":"pl181","X":621,"Y":494},{"Bonus":0,"Continent":"K54","ID":14818,"Name":"A.014","PlayerID":849088243,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14818","ServerKey":"pl181","X":416,"Y":587},{"Bonus":0,"Continent":"K54","ID":14819,"Name":"A.008","PlayerID":849088243,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14819","ServerKey":"pl181","X":411,"Y":578},{"Bonus":2,"Continent":"K64","ID":14820,"Name":"#004","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14820","ServerKey":"pl181","X":470,"Y":616},{"Bonus":0,"Continent":"K45","ID":14821,"Name":"Szlachcic","PlayerID":699170684,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14821","ServerKey":"pl181","X":589,"Y":419},{"Bonus":0,"Continent":"K64","ID":14822,"Name":"0135","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14822","ServerKey":"pl181","X":453,"Y":612},{"Bonus":0,"Continent":"K34","ID":14823,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14823","ServerKey":"pl181","X":432,"Y":397},{"Bonus":0,"Continent":"K64","ID":14824,"Name":"#007 A","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14824","ServerKey":"pl181","X":464,"Y":613},{"Bonus":0,"Continent":"K46","ID":14825,"Name":"008 Hokkaido","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14825","ServerKey":"pl181","X":623,"Y":483},{"Bonus":0,"Continent":"K46","ID":14826,"Name":"[327] Chorągiewka na wietrze","PlayerID":848985692,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14826","ServerKey":"pl181","X":602,"Y":430},{"Bonus":0,"Continent":"K45","ID":14827,"Name":"151 MIKOX 027","PlayerID":699491076,"Points":9235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14827","ServerKey":"pl181","X":591,"Y":418},{"Bonus":0,"Continent":"K53","ID":14828,"Name":"020 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14828","ServerKey":"pl181","X":393,"Y":563},{"Bonus":0,"Continent":"K65","ID":14830,"Name":"05. Prompto Argentum","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14830","ServerKey":"pl181","X":526,"Y":618},{"Bonus":0,"Continent":"K34","ID":14831,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14831","ServerKey":"pl181","X":480,"Y":382},{"Bonus":0,"Continent":"K65","ID":14832,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14832","ServerKey":"pl181","X":507,"Y":624},{"Bonus":0,"Continent":"K34","ID":14833,"Name":"Feed me more 008","PlayerID":699756210,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14833","ServerKey":"pl181","X":488,"Y":376},{"Bonus":0,"Continent":"K35","ID":14834,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14834","ServerKey":"pl181","X":535,"Y":382},{"Bonus":0,"Continent":"K45","ID":14835,"Name":"088 Wioska barbarzyƄska","PlayerID":699491076,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14835","ServerKey":"pl181","X":594,"Y":422},{"Bonus":0,"Continent":"K56","ID":14836,"Name":"010","PlayerID":849006412,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14836","ServerKey":"pl181","X":622,"Y":501},{"Bonus":0,"Continent":"K34","ID":14837,"Name":"K34 - [073] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14837","ServerKey":"pl181","X":458,"Y":388},{"Bonus":0,"Continent":"K55","ID":14838,"Name":"Jaaa","PlayerID":698635863,"Points":10548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14838","ServerKey":"pl181","X":583,"Y":592},{"Bonus":0,"Continent":"K43","ID":14839,"Name":"Nope","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14839","ServerKey":"pl181","X":392,"Y":479},{"Bonus":0,"Continent":"K44","ID":14840,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14840","ServerKey":"pl181","X":404,"Y":428},{"Bonus":0,"Continent":"K45","ID":14841,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14841","ServerKey":"pl181","X":592,"Y":422},{"Bonus":0,"Continent":"K34","ID":14842,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14842","ServerKey":"pl181","X":472,"Y":380},{"Bonus":5,"Continent":"K64","ID":14843,"Name":"0082","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14843","ServerKey":"pl181","X":458,"Y":616},{"Bonus":0,"Continent":"K45","ID":14844,"Name":"[134] North","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14844","ServerKey":"pl181","X":582,"Y":473},{"Bonus":0,"Continent":"K56","ID":14845,"Name":"Dextrose","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14845","ServerKey":"pl181","X":624,"Y":500},{"Bonus":0,"Continent":"K43","ID":14846,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14846","ServerKey":"pl181","X":383,"Y":461},{"Bonus":0,"Continent":"K34","ID":14847,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14847","ServerKey":"pl181","X":438,"Y":392},{"Bonus":0,"Continent":"K54","ID":14849,"Name":"A.025","PlayerID":849088243,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14849","ServerKey":"pl181","X":406,"Y":575},{"Bonus":0,"Continent":"K45","ID":14850,"Name":"077","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14850","ServerKey":"pl181","X":586,"Y":412},{"Bonus":0,"Continent":"K43","ID":14851,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14851","ServerKey":"pl181","X":395,"Y":437},{"Bonus":0,"Continent":"K35","ID":14852,"Name":"Wioska mateuszek1123","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14852","ServerKey":"pl181","X":553,"Y":391},{"Bonus":0,"Continent":"K56","ID":14853,"Name":"078","PlayerID":699373599,"Points":6869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14853","ServerKey":"pl181","X":621,"Y":530},{"Bonus":0,"Continent":"K56","ID":14854,"Name":"0020","PlayerID":6510480,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14854","ServerKey":"pl181","X":621,"Y":527},{"Bonus":0,"Continent":"K56","ID":14855,"Name":"0044","PlayerID":6510480,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14855","ServerKey":"pl181","X":619,"Y":512},{"Bonus":6,"Continent":"K53","ID":14856,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14856","ServerKey":"pl181","X":385,"Y":545},{"Bonus":0,"Continent":"K46","ID":14857,"Name":"007","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14857","ServerKey":"pl181","X":621,"Y":495},{"Bonus":0,"Continent":"K65","ID":14858,"Name":"z 010","PlayerID":699342219,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14858","ServerKey":"pl181","X":561,"Y":601},{"Bonus":0,"Continent":"K65","ID":14859,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14859","ServerKey":"pl181","X":513,"Y":621},{"Bonus":0,"Continent":"K56","ID":14860,"Name":"Nowa 03","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14860","ServerKey":"pl181","X":605,"Y":561},{"Bonus":0,"Continent":"K55","ID":14861,"Name":"Wioska 026","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14861","ServerKey":"pl181","X":597,"Y":578},{"Bonus":0,"Continent":"K56","ID":14862,"Name":"072","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14862","ServerKey":"pl181","X":618,"Y":529},{"Bonus":5,"Continent":"K35","ID":14863,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14863","ServerKey":"pl181","X":522,"Y":382},{"Bonus":0,"Continent":"K55","ID":14864,"Name":"CiÄ™ĆŒka powieka","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14864","ServerKey":"pl181","X":565,"Y":568},{"Bonus":0,"Continent":"K64","ID":14865,"Name":"EKG 024","PlayerID":33900,"Points":9992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14865","ServerKey":"pl181","X":486,"Y":621},{"Bonus":0,"Continent":"K53","ID":14866,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14866","ServerKey":"pl181","X":380,"Y":509},{"Bonus":0,"Continent":"K56","ID":14867,"Name":"W.181/11","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14867","ServerKey":"pl181","X":617,"Y":528},{"Bonus":0,"Continent":"K35","ID":14868,"Name":"Taran","PlayerID":699170684,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14868","ServerKey":"pl181","X":555,"Y":379},{"Bonus":0,"Continent":"K53","ID":14869,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14869","ServerKey":"pl181","X":381,"Y":512},{"Bonus":0,"Continent":"K65","ID":14870,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":8963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14870","ServerKey":"pl181","X":509,"Y":621},{"Bonus":0,"Continent":"K43","ID":14871,"Name":"makelovenotwar","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14871","ServerKey":"pl181","X":387,"Y":462},{"Bonus":0,"Continent":"K46","ID":14872,"Name":"0027. C -","PlayerID":7125212,"Points":8738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14872","ServerKey":"pl181","X":624,"Y":487},{"Bonus":0,"Continent":"K53","ID":14874,"Name":"103 Cvrvvus","PlayerID":699382126,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14874","ServerKey":"pl181","X":396,"Y":560},{"Bonus":0,"Continent":"K34","ID":14875,"Name":"SoƂtys Wsi Twin1992","PlayerID":849027025,"Points":9293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14875","ServerKey":"pl181","X":438,"Y":397},{"Bonus":0,"Continent":"K35","ID":14876,"Name":"0028","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14876","ServerKey":"pl181","X":561,"Y":393},{"Bonus":0,"Continent":"K65","ID":14877,"Name":"Jaaa","PlayerID":698635863,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14877","ServerKey":"pl181","X":572,"Y":601},{"Bonus":0,"Continent":"K54","ID":14878,"Name":"028 - Manchester","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14878","ServerKey":"pl181","X":407,"Y":579},{"Bonus":3,"Continent":"K46","ID":14879,"Name":"020","PlayerID":699298370,"Points":7343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14879","ServerKey":"pl181","X":605,"Y":435},{"Bonus":0,"Continent":"K34","ID":14880,"Name":"K34 - [007] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14880","ServerKey":"pl181","X":447,"Y":380},{"Bonus":0,"Continent":"K35","ID":14881,"Name":"ADEN","PlayerID":698588535,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14881","ServerKey":"pl181","X":522,"Y":381},{"Bonus":0,"Continent":"K45","ID":14882,"Name":"0004","PlayerID":8459255,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14882","ServerKey":"pl181","X":593,"Y":417},{"Bonus":0,"Continent":"K35","ID":14883,"Name":"010","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14883","ServerKey":"pl181","X":501,"Y":378},{"Bonus":0,"Continent":"K43","ID":14884,"Name":"Sawanna","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14884","ServerKey":"pl181","X":380,"Y":490},{"Bonus":0,"Continent":"K56","ID":14885,"Name":"0011. C - Belatona","PlayerID":7125212,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14885","ServerKey":"pl181","X":624,"Y":502},{"Bonus":5,"Continent":"K56","ID":14886,"Name":"Taran 001","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14886","ServerKey":"pl181","X":620,"Y":531},{"Bonus":0,"Continent":"K56","ID":14887,"Name":"Gryfios 014","PlayerID":698666810,"Points":12002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14887","ServerKey":"pl181","X":617,"Y":542},{"Bonus":0,"Continent":"K34","ID":14888,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14888","ServerKey":"pl181","X":474,"Y":379},{"Bonus":0,"Continent":"K35","ID":14889,"Name":"#0002","PlayerID":7651093,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14889","ServerKey":"pl181","X":517,"Y":377},{"Bonus":0,"Continent":"K56","ID":14890,"Name":"=007= Bez koƂa zapasowego","PlayerID":3781794,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14890","ServerKey":"pl181","X":612,"Y":552},{"Bonus":0,"Continent":"K45","ID":14891,"Name":"001","PlayerID":849070464,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14891","ServerKey":"pl181","X":569,"Y":480},{"Bonus":0,"Continent":"K43","ID":14892,"Name":"Gasherbrum II","PlayerID":699265922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14892","ServerKey":"pl181","X":378,"Y":490},{"Bonus":3,"Continent":"K44","ID":14893,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14893","ServerKey":"pl181","X":409,"Y":422},{"Bonus":0,"Continent":"K55","ID":14894,"Name":"004","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14894","ServerKey":"pl181","X":580,"Y":598},{"Bonus":0,"Continent":"K46","ID":14895,"Name":"Gattacka","PlayerID":699298370,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14895","ServerKey":"pl181","X":600,"Y":427},{"Bonus":0,"Continent":"K65","ID":14896,"Name":"- 015 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14896","ServerKey":"pl181","X":546,"Y":609},{"Bonus":0,"Continent":"K53","ID":14897,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14897","ServerKey":"pl181","X":376,"Y":506},{"Bonus":0,"Continent":"K43","ID":14898,"Name":"s181eo06","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14898","ServerKey":"pl181","X":391,"Y":447},{"Bonus":0,"Continent":"K64","ID":14899,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14899","ServerKey":"pl181","X":437,"Y":615},{"Bonus":0,"Continent":"K55","ID":14900,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14900","ServerKey":"pl181","X":587,"Y":585},{"Bonus":0,"Continent":"K46","ID":14901,"Name":"Wioska (008)","PlayerID":698232227,"Points":8531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14901","ServerKey":"pl181","X":619,"Y":476},{"Bonus":0,"Continent":"K65","ID":14902,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14902","ServerKey":"pl181","X":511,"Y":623},{"Bonus":0,"Continent":"K64","ID":14903,"Name":"043.","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14903","ServerKey":"pl181","X":480,"Y":618},{"Bonus":0,"Continent":"K55","ID":14904,"Name":"068","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14904","ServerKey":"pl181","X":586,"Y":590},{"Bonus":0,"Continent":"K56","ID":14906,"Name":"0045","PlayerID":6510480,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14906","ServerKey":"pl181","X":620,"Y":516},{"Bonus":0,"Continent":"K43","ID":14907,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14907","ServerKey":"pl181","X":397,"Y":439},{"Bonus":0,"Continent":"K55","ID":14909,"Name":"072","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14909","ServerKey":"pl181","X":586,"Y":587},{"Bonus":0,"Continent":"K53","ID":14910,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14910","ServerKey":"pl181","X":382,"Y":519},{"Bonus":0,"Continent":"K44","ID":14911,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14911","ServerKey":"pl181","X":416,"Y":408},{"Bonus":0,"Continent":"K44","ID":14912,"Name":"Wioska vequs","PlayerID":7462660,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14912","ServerKey":"pl181","X":405,"Y":427},{"Bonus":0,"Continent":"K34","ID":14913,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14913","ServerKey":"pl181","X":494,"Y":377},{"Bonus":0,"Continent":"K53","ID":14915,"Name":"049 Zimny LehosƂaw","PlayerID":699382126,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14915","ServerKey":"pl181","X":389,"Y":552},{"Bonus":9,"Continent":"K34","ID":14916,"Name":"K34 - [027] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14916","ServerKey":"pl181","X":465,"Y":383},{"Bonus":0,"Continent":"K44","ID":14917,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14917","ServerKey":"pl181","X":443,"Y":401},{"Bonus":0,"Continent":"K43","ID":14918,"Name":"Sam goroli ciulaja","PlayerID":699711723,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14918","ServerKey":"pl181","X":386,"Y":452},{"Bonus":0,"Continent":"K64","ID":14919,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14919","ServerKey":"pl181","X":432,"Y":603},{"Bonus":0,"Continent":"K55","ID":14920,"Name":"Tanjirou","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14920","ServerKey":"pl181","X":574,"Y":596},{"Bonus":0,"Continent":"K43","ID":14921,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14921","ServerKey":"pl181","X":375,"Y":494},{"Bonus":0,"Continent":"K43","ID":14922,"Name":"Land of Fire","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14922","ServerKey":"pl181","X":394,"Y":441},{"Bonus":0,"Continent":"K44","ID":14923,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14923","ServerKey":"pl181","X":414,"Y":411},{"Bonus":0,"Continent":"K43","ID":14925,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14925","ServerKey":"pl181","X":378,"Y":487},{"Bonus":0,"Continent":"K56","ID":14926,"Name":"Malinki 1","PlayerID":8013349,"Points":6924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14926","ServerKey":"pl181","X":621,"Y":521},{"Bonus":0,"Continent":"K44","ID":14927,"Name":"FKG 01-19","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14927","ServerKey":"pl181","X":415,"Y":412},{"Bonus":0,"Continent":"K53","ID":14928,"Name":"Wioska","PlayerID":849084005,"Points":5902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14928","ServerKey":"pl181","X":388,"Y":553},{"Bonus":0,"Continent":"K34","ID":14929,"Name":"K34 - [043] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14929","ServerKey":"pl181","X":462,"Y":390},{"Bonus":0,"Continent":"K46","ID":14930,"Name":"006","PlayerID":849091105,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14930","ServerKey":"pl181","X":620,"Y":497},{"Bonus":0,"Continent":"K34","ID":14931,"Name":"K34 - [057] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14931","ServerKey":"pl181","X":456,"Y":387},{"Bonus":0,"Continent":"K34","ID":14932,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14932","ServerKey":"pl181","X":472,"Y":383},{"Bonus":0,"Continent":"K65","ID":14933,"Name":"SkƂad","PlayerID":606407,"Points":10249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14933","ServerKey":"pl181","X":512,"Y":618},{"Bonus":0,"Continent":"K46","ID":14934,"Name":"A022","PlayerID":699722599,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14934","ServerKey":"pl181","X":620,"Y":457},{"Bonus":0,"Continent":"K55","ID":14935,"Name":"Wioska 036","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14935","ServerKey":"pl181","X":591,"Y":584},{"Bonus":0,"Continent":"K43","ID":14936,"Name":"Land of Fire","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14936","ServerKey":"pl181","X":395,"Y":441},{"Bonus":0,"Continent":"K65","ID":14937,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14937","ServerKey":"pl181","X":540,"Y":615},{"Bonus":0,"Continent":"K35","ID":14938,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14938","ServerKey":"pl181","X":512,"Y":377},{"Bonus":0,"Continent":"K34","ID":14939,"Name":".035.","PlayerID":698489071,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14939","ServerKey":"pl181","X":486,"Y":378},{"Bonus":0,"Continent":"K35","ID":14941,"Name":"***9ebaabc9d*** Granat","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14941","ServerKey":"pl181","X":550,"Y":388},{"Bonus":0,"Continent":"K43","ID":14942,"Name":"Land of Fire","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14942","ServerKey":"pl181","X":399,"Y":450},{"Bonus":0,"Continent":"K55","ID":14944,"Name":"Wioska 017","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14944","ServerKey":"pl181","X":592,"Y":576},{"Bonus":0,"Continent":"K43","ID":14945,"Name":"A0008","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14945","ServerKey":"pl181","X":378,"Y":482},{"Bonus":0,"Continent":"K35","ID":14946,"Name":"004 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14946","ServerKey":"pl181","X":528,"Y":380},{"Bonus":4,"Continent":"K35","ID":14947,"Name":"165","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14947","ServerKey":"pl181","X":557,"Y":390},{"Bonus":0,"Continent":"K46","ID":14949,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14949","ServerKey":"pl181","X":610,"Y":441},{"Bonus":1,"Continent":"K64","ID":14950,"Name":"0356","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14950","ServerKey":"pl181","X":446,"Y":607},{"Bonus":0,"Continent":"K65","ID":14951,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14951","ServerKey":"pl181","X":515,"Y":622},{"Bonus":0,"Continent":"K54","ID":14952,"Name":"060 - Ukulele","PlayerID":225023,"Points":5158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14952","ServerKey":"pl181","X":424,"Y":595},{"Bonus":0,"Continent":"K64","ID":14953,"Name":"0469","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14953","ServerKey":"pl181","X":449,"Y":609},{"Bonus":0,"Continent":"K64","ID":14954,"Name":"0139","PlayerID":698659980,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14954","ServerKey":"pl181","X":454,"Y":614},{"Bonus":0,"Continent":"K43","ID":14955,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14955","ServerKey":"pl181","X":387,"Y":453},{"Bonus":0,"Continent":"K34","ID":14956,"Name":"VN Aehelfaed","PlayerID":699883079,"Points":9651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14956","ServerKey":"pl181","X":466,"Y":381},{"Bonus":0,"Continent":"K53","ID":14957,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14957","ServerKey":"pl181","X":381,"Y":533},{"Bonus":0,"Continent":"K34","ID":14958,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14958","ServerKey":"pl181","X":482,"Y":378},{"Bonus":0,"Continent":"K45","ID":14959,"Name":"097 Wioska barbarzyƄska","PlayerID":699491076,"Points":8841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14959","ServerKey":"pl181","X":595,"Y":422},{"Bonus":0,"Continent":"K65","ID":14960,"Name":"030","PlayerID":699878511,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14960","ServerKey":"pl181","X":503,"Y":625},{"Bonus":1,"Continent":"K65","ID":14961,"Name":"CALL 925","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14961","ServerKey":"pl181","X":508,"Y":623},{"Bonus":0,"Continent":"K34","ID":14962,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14962","ServerKey":"pl181","X":443,"Y":392},{"Bonus":0,"Continent":"K34","ID":14963,"Name":"7.62 mm","PlayerID":699777234,"Points":6846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14963","ServerKey":"pl181","X":484,"Y":378},{"Bonus":0,"Continent":"K54","ID":14964,"Name":"#0008 Kiedyƛ","PlayerID":848915531,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14964","ServerKey":"pl181","X":490,"Y":545},{"Bonus":0,"Continent":"K56","ID":14965,"Name":"*014*","PlayerID":698670524,"Points":8480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14965","ServerKey":"pl181","X":609,"Y":511},{"Bonus":0,"Continent":"K34","ID":14966,"Name":"Feed me more 015","PlayerID":699756210,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14966","ServerKey":"pl181","X":484,"Y":380},{"Bonus":0,"Continent":"K54","ID":14967,"Name":"Z barba 008","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14967","ServerKey":"pl181","X":405,"Y":578},{"Bonus":0,"Continent":"K35","ID":14968,"Name":"Taran","PlayerID":699170684,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14968","ServerKey":"pl181","X":548,"Y":387},{"Bonus":0,"Continent":"K65","ID":14969,"Name":"010.","PlayerID":873575,"Points":9923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14969","ServerKey":"pl181","X":564,"Y":606},{"Bonus":0,"Continent":"K64","ID":14970,"Name":"012.xxx","PlayerID":8612358,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14970","ServerKey":"pl181","X":465,"Y":617},{"Bonus":0,"Continent":"K56","ID":14971,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14971","ServerKey":"pl181","X":601,"Y":569},{"Bonus":0,"Continent":"K56","ID":14972,"Name":"008","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14972","ServerKey":"pl181","X":601,"Y":574},{"Bonus":0,"Continent":"K55","ID":14973,"Name":"Nic dwa razy","PlayerID":699785935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14973","ServerKey":"pl181","X":573,"Y":597},{"Bonus":0,"Continent":"K44","ID":14974,"Name":"Gravity","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14974","ServerKey":"pl181","X":404,"Y":456},{"Bonus":0,"Continent":"K65","ID":14975,"Name":"008.","PlayerID":873575,"Points":10150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14975","ServerKey":"pl181","X":565,"Y":600},{"Bonus":0,"Continent":"K54","ID":14976,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14976","ServerKey":"pl181","X":408,"Y":590},{"Bonus":0,"Continent":"K35","ID":14977,"Name":"ADEN","PlayerID":698588535,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14977","ServerKey":"pl181","X":527,"Y":381},{"Bonus":0,"Continent":"K65","ID":14978,"Name":"0426","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14978","ServerKey":"pl181","X":548,"Y":610},{"Bonus":0,"Continent":"K46","ID":14979,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14979","ServerKey":"pl181","X":617,"Y":460},{"Bonus":0,"Continent":"K54","ID":14980,"Name":"Warzywniak 019","PlayerID":698290577,"Points":2714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14980","ServerKey":"pl181","X":449,"Y":551},{"Bonus":0,"Continent":"K44","ID":14981,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14981","ServerKey":"pl181","X":414,"Y":413},{"Bonus":0,"Continent":"K64","ID":14982,"Name":"016.xxx","PlayerID":8612358,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14982","ServerKey":"pl181","X":469,"Y":620},{"Bonus":0,"Continent":"K44","ID":14983,"Name":"005","PlayerID":699788305,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14983","ServerKey":"pl181","X":401,"Y":425},{"Bonus":0,"Continent":"K64","ID":14984,"Name":"0357","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14984","ServerKey":"pl181","X":444,"Y":608},{"Bonus":6,"Continent":"K43","ID":14985,"Name":"Westcoast.016","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14985","ServerKey":"pl181","X":391,"Y":439},{"Bonus":0,"Continent":"K56","ID":14986,"Name":"000","PlayerID":8428196,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14986","ServerKey":"pl181","X":613,"Y":541},{"Bonus":0,"Continent":"K55","ID":14988,"Name":"065","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14988","ServerKey":"pl181","X":567,"Y":599},{"Bonus":0,"Continent":"K53","ID":14989,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14989","ServerKey":"pl181","X":377,"Y":509},{"Bonus":0,"Continent":"K53","ID":14990,"Name":"Wioska","PlayerID":849084005,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14990","ServerKey":"pl181","X":383,"Y":529},{"Bonus":0,"Continent":"K43","ID":14991,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14991","ServerKey":"pl181","X":376,"Y":485},{"Bonus":0,"Continent":"K53","ID":14992,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14992","ServerKey":"pl181","X":376,"Y":517},{"Bonus":0,"Continent":"K55","ID":14993,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14993","ServerKey":"pl181","X":574,"Y":598},{"Bonus":0,"Continent":"K64","ID":14994,"Name":"#022 A","PlayerID":9037756,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14994","ServerKey":"pl181","X":458,"Y":615},{"Bonus":0,"Continent":"K54","ID":14995,"Name":"037 - two","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14995","ServerKey":"pl181","X":416,"Y":583},{"Bonus":0,"Continent":"K35","ID":14996,"Name":"ADEN","PlayerID":698588535,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14996","ServerKey":"pl181","X":528,"Y":377},{"Bonus":0,"Continent":"K46","ID":14997,"Name":"Jehu_Kingdom_33_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14997","ServerKey":"pl181","X":616,"Y":461},{"Bonus":0,"Continent":"K46","ID":14999,"Name":"Wioska (043)","PlayerID":698232227,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=14999","ServerKey":"pl181","X":619,"Y":484},{"Bonus":0,"Continent":"K35","ID":15000,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15000","ServerKey":"pl181","X":538,"Y":382},{"Bonus":0,"Continent":"K54","ID":15001,"Name":"A.019","PlayerID":849088243,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15001","ServerKey":"pl181","X":409,"Y":585},{"Bonus":0,"Continent":"K64","ID":15002,"Name":"018.xxx","PlayerID":8612358,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15002","ServerKey":"pl181","X":467,"Y":618},{"Bonus":0,"Continent":"K64","ID":15003,"Name":"006.xxx","PlayerID":8612358,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15003","ServerKey":"pl181","X":472,"Y":619},{"Bonus":0,"Continent":"K53","ID":15004,"Name":"161 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15004","ServerKey":"pl181","X":386,"Y":548},{"Bonus":0,"Continent":"K35","ID":15006,"Name":".achim.","PlayerID":6936607,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15006","ServerKey":"pl181","X":529,"Y":384},{"Bonus":0,"Continent":"K46","ID":15007,"Name":"011","PlayerID":849091105,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15007","ServerKey":"pl181","X":623,"Y":495},{"Bonus":0,"Continent":"K65","ID":15008,"Name":"08. Cindy Aurum","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15008","ServerKey":"pl181","X":520,"Y":619},{"Bonus":0,"Continent":"K46","ID":15009,"Name":"A012","PlayerID":699722599,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15009","ServerKey":"pl181","X":613,"Y":447},{"Bonus":0,"Continent":"K45","ID":15010,"Name":"South K45","PlayerID":699146580,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15010","ServerKey":"pl181","X":591,"Y":421},{"Bonus":0,"Continent":"K55","ID":15011,"Name":"P!nk","PlayerID":699785935,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15011","ServerKey":"pl181","X":580,"Y":591},{"Bonus":0,"Continent":"K55","ID":15012,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15012","ServerKey":"pl181","X":598,"Y":571},{"Bonus":0,"Continent":"K56","ID":15013,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15013","ServerKey":"pl181","X":610,"Y":558},{"Bonus":0,"Continent":"K64","ID":15014,"Name":"005. Dor Daedeloth","PlayerID":699494488,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15014","ServerKey":"pl181","X":489,"Y":621},{"Bonus":0,"Continent":"K46","ID":15015,"Name":"068 Jokohama","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15015","ServerKey":"pl181","X":620,"Y":471},{"Bonus":0,"Continent":"K34","ID":15016,"Name":"K34 - [052] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15016","ServerKey":"pl181","X":454,"Y":389},{"Bonus":0,"Continent":"K34","ID":15017,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15017","ServerKey":"pl181","X":473,"Y":378},{"Bonus":7,"Continent":"K44","ID":15018,"Name":"0004","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15018","ServerKey":"pl181","X":425,"Y":408},{"Bonus":0,"Continent":"K54","ID":15019,"Name":"/05 (Mati72611)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15019","ServerKey":"pl181","X":408,"Y":575},{"Bonus":0,"Continent":"K35","ID":15020,"Name":"008","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15020","ServerKey":"pl181","X":500,"Y":379},{"Bonus":0,"Continent":"K54","ID":15021,"Name":"Z barba 016","PlayerID":225023,"Points":7050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15021","ServerKey":"pl181","X":401,"Y":569},{"Bonus":0,"Continent":"K56","ID":15022,"Name":"Gryfios 006","PlayerID":698666810,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15022","ServerKey":"pl181","X":617,"Y":537},{"Bonus":0,"Continent":"K35","ID":15023,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15023","ServerKey":"pl181","X":525,"Y":382},{"Bonus":0,"Continent":"K54","ID":15024,"Name":"054 - GoldFaber","PlayerID":225023,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15024","ServerKey":"pl181","X":420,"Y":594},{"Bonus":0,"Continent":"K43","ID":15025,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15025","ServerKey":"pl181","X":389,"Y":446},{"Bonus":0,"Continent":"K44","ID":15026,"Name":"Planeta Vegeta","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15026","ServerKey":"pl181","X":410,"Y":409},{"Bonus":0,"Continent":"K56","ID":15027,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15027","ServerKey":"pl181","X":609,"Y":560},{"Bonus":0,"Continent":"K35","ID":15028,"Name":"Taran","PlayerID":699170684,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15028","ServerKey":"pl181","X":551,"Y":378},{"Bonus":0,"Continent":"K45","ID":15029,"Name":"Wioska Altivo","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15029","ServerKey":"pl181","X":572,"Y":442},{"Bonus":0,"Continent":"K55","ID":15030,"Name":"087","PlayerID":699373599,"Points":9087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15030","ServerKey":"pl181","X":599,"Y":568},{"Bonus":3,"Continent":"K35","ID":15031,"Name":"Wioska-003-","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15031","ServerKey":"pl181","X":541,"Y":385},{"Bonus":0,"Continent":"K65","ID":15032,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15032","ServerKey":"pl181","X":527,"Y":622},{"Bonus":0,"Continent":"K64","ID":15033,"Name":"#022","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15033","ServerKey":"pl181","X":467,"Y":616},{"Bonus":0,"Continent":"K56","ID":15034,"Name":"Carnagos","PlayerID":698702991,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15034","ServerKey":"pl181","X":604,"Y":564},{"Bonus":0,"Continent":"K55","ID":15035,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15035","ServerKey":"pl181","X":582,"Y":581},{"Bonus":0,"Continent":"K43","ID":15036,"Name":"K2.","PlayerID":849013126,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15036","ServerKey":"pl181","X":376,"Y":498},{"Bonus":0,"Continent":"K46","ID":15037,"Name":"019","PlayerID":8459255,"Points":10077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15037","ServerKey":"pl181","X":613,"Y":462},{"Bonus":0,"Continent":"K65","ID":15038,"Name":"Teby_21","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15038","ServerKey":"pl181","X":503,"Y":622},{"Bonus":0,"Continent":"K44","ID":15039,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15039","ServerKey":"pl181","X":496,"Y":489},{"Bonus":0,"Continent":"K34","ID":15040,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15040","ServerKey":"pl181","X":488,"Y":377},{"Bonus":0,"Continent":"K44","ID":15041,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15041","ServerKey":"pl181","X":401,"Y":463},{"Bonus":0,"Continent":"K46","ID":15042,"Name":"039- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15042","ServerKey":"pl181","X":612,"Y":460},{"Bonus":0,"Continent":"K43","ID":15043,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15043","ServerKey":"pl181","X":378,"Y":483},{"Bonus":0,"Continent":"K53","ID":15044,"Name":"003 Sir DĆŒony","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15044","ServerKey":"pl181","X":390,"Y":554},{"Bonus":0,"Continent":"K34","ID":15045,"Name":"Bagdad","PlayerID":8847546,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15045","ServerKey":"pl181","X":472,"Y":379},{"Bonus":0,"Continent":"K53","ID":15046,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15046","ServerKey":"pl181","X":385,"Y":543},{"Bonus":0,"Continent":"K44","ID":15047,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15047","ServerKey":"pl181","X":402,"Y":467},{"Bonus":0,"Continent":"K34","ID":15048,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15048","ServerKey":"pl181","X":431,"Y":399},{"Bonus":0,"Continent":"K53","ID":15049,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15049","ServerKey":"pl181","X":390,"Y":502},{"Bonus":0,"Continent":"K65","ID":15050,"Name":"001","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15050","ServerKey":"pl181","X":557,"Y":610},{"Bonus":0,"Continent":"K44","ID":15051,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15051","ServerKey":"pl181","X":428,"Y":400},{"Bonus":0,"Continent":"K55","ID":15052,"Name":"People Are Strange","PlayerID":848926293,"Points":9501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15052","ServerKey":"pl181","X":597,"Y":568},{"Bonus":0,"Continent":"K45","ID":15053,"Name":"150 MIKOX 026","PlayerID":699491076,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15053","ServerKey":"pl181","X":593,"Y":418},{"Bonus":0,"Continent":"K65","ID":15054,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15054","ServerKey":"pl181","X":516,"Y":627},{"Bonus":0,"Continent":"K55","ID":15055,"Name":"Jaaa","PlayerID":698635863,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15055","ServerKey":"pl181","X":580,"Y":593},{"Bonus":0,"Continent":"K43","ID":15056,"Name":"A0037","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15056","ServerKey":"pl181","X":381,"Y":473},{"Bonus":0,"Continent":"K35","ID":15057,"Name":"007","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15057","ServerKey":"pl181","X":505,"Y":378},{"Bonus":0,"Continent":"K35","ID":15058,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15058","ServerKey":"pl181","X":558,"Y":390},{"Bonus":0,"Continent":"K35","ID":15059,"Name":"A021","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15059","ServerKey":"pl181","X":510,"Y":378},{"Bonus":0,"Continent":"K55","ID":15060,"Name":"0048 K55 and987 OZDR","PlayerID":3613413,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15060","ServerKey":"pl181","X":501,"Y":554},{"Bonus":0,"Continent":"K65","ID":15061,"Name":"Teby_20","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15061","ServerKey":"pl181","X":505,"Y":621},{"Bonus":0,"Continent":"K43","ID":15062,"Name":"A0048","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15062","ServerKey":"pl181","X":378,"Y":474},{"Bonus":0,"Continent":"K56","ID":15063,"Name":"=015= Wioska barbarzyƄska","PlayerID":3781794,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15063","ServerKey":"pl181","X":612,"Y":556},{"Bonus":0,"Continent":"K34","ID":15064,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15064","ServerKey":"pl181","X":478,"Y":381},{"Bonus":0,"Continent":"K55","ID":15065,"Name":"ZƂote tarasy","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15065","ServerKey":"pl181","X":576,"Y":597},{"Bonus":0,"Continent":"K65","ID":15066,"Name":"kathare","PlayerID":873575,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15066","ServerKey":"pl181","X":548,"Y":613},{"Bonus":0,"Continent":"K46","ID":15067,"Name":"WW2","PlayerID":849088515,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15067","ServerKey":"pl181","X":621,"Y":478},{"Bonus":0,"Continent":"K55","ID":15068,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15068","ServerKey":"pl181","X":513,"Y":540},{"Bonus":0,"Continent":"K34","ID":15069,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15069","ServerKey":"pl181","X":491,"Y":375},{"Bonus":0,"Continent":"K53","ID":15070,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15070","ServerKey":"pl181","X":383,"Y":540},{"Bonus":0,"Continent":"K43","ID":15072,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15072","ServerKey":"pl181","X":396,"Y":439},{"Bonus":0,"Continent":"K55","ID":15073,"Name":"CALL 943","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15073","ServerKey":"pl181","X":553,"Y":565},{"Bonus":0,"Continent":"K46","ID":15074,"Name":"009","PlayerID":849091105,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15074","ServerKey":"pl181","X":623,"Y":496},{"Bonus":2,"Continent":"K43","ID":15075,"Name":"Land of Fire","PlayerID":698962117,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15075","ServerKey":"pl181","X":388,"Y":451},{"Bonus":0,"Continent":"K64","ID":15076,"Name":"100","PlayerID":849084985,"Points":8715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15076","ServerKey":"pl181","X":449,"Y":612},{"Bonus":0,"Continent":"K34","ID":15077,"Name":"K34 - [041] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15077","ServerKey":"pl181","X":463,"Y":383},{"Bonus":0,"Continent":"K65","ID":15078,"Name":"0007","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15078","ServerKey":"pl181","X":555,"Y":611},{"Bonus":0,"Continent":"K56","ID":15079,"Name":"SiƂa, Masa, RzeĆșba 03","PlayerID":699379895,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15079","ServerKey":"pl181","X":623,"Y":514},{"Bonus":0,"Continent":"K34","ID":15080,"Name":"Feed me more 001","PlayerID":699756210,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15080","ServerKey":"pl181","X":495,"Y":377},{"Bonus":0,"Continent":"K34","ID":15081,"Name":"K34 - [055] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15081","ServerKey":"pl181","X":461,"Y":386},{"Bonus":0,"Continent":"K56","ID":15082,"Name":"*002*","PlayerID":698670524,"Points":8883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15082","ServerKey":"pl181","X":613,"Y":504},{"Bonus":0,"Continent":"K35","ID":15083,"Name":"R-3","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15083","ServerKey":"pl181","X":555,"Y":390},{"Bonus":0,"Continent":"K34","ID":15084,"Name":"038","PlayerID":699783765,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15084","ServerKey":"pl181","X":433,"Y":392},{"Bonus":0,"Continent":"K56","ID":15085,"Name":"0005 MzM","PlayerID":698416970,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15085","ServerKey":"pl181","X":602,"Y":567},{"Bonus":0,"Continent":"K43","ID":15086,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15086","ServerKey":"pl181","X":399,"Y":432},{"Bonus":0,"Continent":"K46","ID":15087,"Name":"Jaaa","PlayerID":698635863,"Points":10261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15087","ServerKey":"pl181","X":617,"Y":459},{"Bonus":0,"Continent":"K43","ID":15088,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15088","ServerKey":"pl181","X":382,"Y":464},{"Bonus":0,"Continent":"K53","ID":15089,"Name":"Jastrowie","PlayerID":698769107,"Points":7946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15089","ServerKey":"pl181","X":398,"Y":580},{"Bonus":0,"Continent":"K45","ID":15090,"Name":"C002","PlayerID":699722599,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15090","ServerKey":"pl181","X":573,"Y":401},{"Bonus":0,"Continent":"K45","ID":15091,"Name":"143 MIKOX 011","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15091","ServerKey":"pl181","X":594,"Y":420},{"Bonus":0,"Continent":"K65","ID":15092,"Name":"Teby_19","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15092","ServerKey":"pl181","X":504,"Y":621},{"Bonus":0,"Continent":"K55","ID":15093,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15093","ServerKey":"pl181","X":584,"Y":591},{"Bonus":3,"Continent":"K53","ID":15094,"Name":"018 Nie mam pomysƂu","PlayerID":699382126,"Points":6757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15094","ServerKey":"pl181","X":393,"Y":564},{"Bonus":0,"Continent":"K43","ID":15095,"Name":"A0031","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15095","ServerKey":"pl181","X":383,"Y":474},{"Bonus":0,"Continent":"K64","ID":15096,"Name":"--005--","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15096","ServerKey":"pl181","X":426,"Y":600},{"Bonus":0,"Continent":"K44","ID":15097,"Name":"030 Atlanta","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15097","ServerKey":"pl181","X":436,"Y":430},{"Bonus":0,"Continent":"K43","ID":15098,"Name":"A0018","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15098","ServerKey":"pl181","X":382,"Y":478},{"Bonus":0,"Continent":"K34","ID":15099,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15099","ServerKey":"pl181","X":477,"Y":378},{"Bonus":0,"Continent":"K34","ID":15100,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15100","ServerKey":"pl181","X":484,"Y":379},{"Bonus":0,"Continent":"K34","ID":15101,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15101","ServerKey":"pl181","X":431,"Y":396},{"Bonus":0,"Continent":"K55","ID":15102,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15102","ServerKey":"pl181","X":588,"Y":586},{"Bonus":0,"Continent":"K34","ID":15103,"Name":"K34 - [029] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15103","ServerKey":"pl181","X":462,"Y":382},{"Bonus":4,"Continent":"K64","ID":15104,"Name":"#003 A","PlayerID":849084985,"Points":9810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15104","ServerKey":"pl181","X":462,"Y":618},{"Bonus":0,"Continent":"K43","ID":15105,"Name":"001","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15105","ServerKey":"pl181","X":397,"Y":498},{"Bonus":0,"Continent":"K35","ID":15106,"Name":"***5b*** Czereƛnia","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15106","ServerKey":"pl181","X":541,"Y":384},{"Bonus":0,"Continent":"K35","ID":15107,"Name":"HoƂopole","PlayerID":699433558,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15107","ServerKey":"pl181","X":500,"Y":395},{"Bonus":0,"Continent":"K56","ID":15108,"Name":"Alfa","PlayerID":699737356,"Points":8958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15108","ServerKey":"pl181","X":607,"Y":564},{"Bonus":0,"Continent":"K34","ID":15109,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15109","ServerKey":"pl181","X":486,"Y":390},{"Bonus":0,"Continent":"K54","ID":15110,"Name":"Lędyczek","PlayerID":698769107,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15110","ServerKey":"pl181","X":401,"Y":577},{"Bonus":0,"Continent":"K34","ID":15111,"Name":"Wyzima","PlayerID":699433558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15111","ServerKey":"pl181","X":497,"Y":390},{"Bonus":0,"Continent":"K55","ID":15112,"Name":"Pod","PlayerID":1715091,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15112","ServerKey":"pl181","X":589,"Y":585},{"Bonus":0,"Continent":"K56","ID":15113,"Name":"A.016","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15113","ServerKey":"pl181","X":603,"Y":568},{"Bonus":0,"Continent":"K54","ID":15114,"Name":"053 - Mleko","PlayerID":225023,"Points":8638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15114","ServerKey":"pl181","X":423,"Y":594},{"Bonus":0,"Continent":"K34","ID":15115,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15115","ServerKey":"pl181","X":496,"Y":396},{"Bonus":0,"Continent":"K56","ID":15116,"Name":"0046","PlayerID":6510480,"Points":9748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15116","ServerKey":"pl181","X":619,"Y":516},{"Bonus":0,"Continent":"K56","ID":15117,"Name":"Delta","PlayerID":699737356,"Points":8665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15117","ServerKey":"pl181","X":608,"Y":565},{"Bonus":0,"Continent":"K64","ID":15118,"Name":"0026 XXARDASS","PlayerID":9060641,"Points":6628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15118","ServerKey":"pl181","X":433,"Y":604},{"Bonus":0,"Continent":"K46","ID":15121,"Name":"014. Lilybaeum","PlayerID":849091866,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15121","ServerKey":"pl181","X":619,"Y":462},{"Bonus":0,"Continent":"K54","ID":15123,"Name":"C Zach 004 Ɓabędy","PlayerID":849084740,"Points":7728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15123","ServerKey":"pl181","X":404,"Y":575},{"Bonus":0,"Continent":"K43","ID":15124,"Name":"A0152","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15124","ServerKey":"pl181","X":379,"Y":469},{"Bonus":0,"Continent":"K53","ID":15125,"Name":"SsSs","PlayerID":1536625,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15125","ServerKey":"pl181","X":392,"Y":500},{"Bonus":0,"Continent":"K44","ID":15126,"Name":"+44 60 Lyon Montchat","PlayerID":698361257,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15126","ServerKey":"pl181","X":408,"Y":466},{"Bonus":0,"Continent":"K53","ID":15127,"Name":"038 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":5411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15127","ServerKey":"pl181","X":391,"Y":553},{"Bonus":0,"Continent":"K53","ID":15128,"Name":"162 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15128","ServerKey":"pl181","X":386,"Y":546},{"Bonus":0,"Continent":"K43","ID":15129,"Name":"s181eo19","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15129","ServerKey":"pl181","X":383,"Y":455},{"Bonus":0,"Continent":"K54","ID":15130,"Name":"(005)","PlayerID":9236866,"Points":9715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15130","ServerKey":"pl181","X":412,"Y":533},{"Bonus":0,"Continent":"K43","ID":15131,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15131","ServerKey":"pl181","X":393,"Y":435},{"Bonus":0,"Continent":"K46","ID":15133,"Name":"wioska 4","PlayerID":848935020,"Points":8013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15133","ServerKey":"pl181","X":624,"Y":489},{"Bonus":0,"Continent":"K53","ID":15134,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15134","ServerKey":"pl181","X":381,"Y":535},{"Bonus":0,"Continent":"K65","ID":15135,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15135","ServerKey":"pl181","X":514,"Y":623},{"Bonus":0,"Continent":"K54","ID":15136,"Name":"A.015","PlayerID":849088243,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15136","ServerKey":"pl181","X":405,"Y":575},{"Bonus":0,"Continent":"K34","ID":15137,"Name":"0122","PlayerID":699431255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15137","ServerKey":"pl181","X":448,"Y":388},{"Bonus":0,"Continent":"K64","ID":15138,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15138","ServerKey":"pl181","X":436,"Y":607},{"Bonus":0,"Continent":"K54","ID":15140,"Name":"A.021","PlayerID":849088243,"Points":8863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15140","ServerKey":"pl181","X":414,"Y":583},{"Bonus":0,"Continent":"K53","ID":15141,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15141","ServerKey":"pl181","X":386,"Y":505},{"Bonus":0,"Continent":"K54","ID":15142,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15142","ServerKey":"pl181","X":415,"Y":589},{"Bonus":0,"Continent":"K55","ID":15143,"Name":"[113]","PlayerID":8000875,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15143","ServerKey":"pl181","X":557,"Y":550},{"Bonus":0,"Continent":"K44","ID":15144,"Name":"FKG 01-21","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15144","ServerKey":"pl181","X":419,"Y":404},{"Bonus":0,"Continent":"K44","ID":15145,"Name":"007","PlayerID":699788305,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15145","ServerKey":"pl181","X":400,"Y":426},{"Bonus":0,"Continent":"K35","ID":15146,"Name":"190","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15146","ServerKey":"pl181","X":569,"Y":397},{"Bonus":0,"Continent":"K65","ID":15147,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15147","ServerKey":"pl181","X":515,"Y":623},{"Bonus":0,"Continent":"K65","ID":15148,"Name":"#0005","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15148","ServerKey":"pl181","X":544,"Y":613},{"Bonus":0,"Continent":"K35","ID":15149,"Name":"A017","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15149","ServerKey":"pl181","X":516,"Y":380},{"Bonus":0,"Continent":"K54","ID":15150,"Name":"Pobozowisko","PlayerID":699513260,"Points":10770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15150","ServerKey":"pl181","X":417,"Y":588},{"Bonus":0,"Continent":"K44","ID":15151,"Name":"CSA","PlayerID":3340647,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15151","ServerKey":"pl181","X":416,"Y":407},{"Bonus":0,"Continent":"K65","ID":15152,"Name":"#0003 Konohagakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15152","ServerKey":"pl181","X":528,"Y":620},{"Bonus":0,"Continent":"K64","ID":15153,"Name":"EKG 020","PlayerID":33900,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15153","ServerKey":"pl181","X":494,"Y":624},{"Bonus":0,"Continent":"K65","ID":15154,"Name":"Bar Seventh Heaven","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15154","ServerKey":"pl181","X":526,"Y":621},{"Bonus":0,"Continent":"K56","ID":15155,"Name":"0027","PlayerID":6510480,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15155","ServerKey":"pl181","X":621,"Y":526},{"Bonus":0,"Continent":"K44","ID":15156,"Name":"Wioska julka2003","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15156","ServerKey":"pl181","X":402,"Y":425},{"Bonus":0,"Continent":"K46","ID":15157,"Name":"Szlachcic","PlayerID":698867446,"Points":9328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15157","ServerKey":"pl181","X":617,"Y":467},{"Bonus":0,"Continent":"K45","ID":15158,"Name":"Jedna czerwona kropka","PlayerID":848921793,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15158","ServerKey":"pl181","X":500,"Y":487},{"Bonus":0,"Continent":"K64","ID":15159,"Name":"EKG 025 + R DODAT","PlayerID":33900,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15159","ServerKey":"pl181","X":484,"Y":622},{"Bonus":0,"Continent":"K35","ID":15160,"Name":"ADEN","PlayerID":698588535,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15160","ServerKey":"pl181","X":526,"Y":384},{"Bonus":2,"Continent":"K34","ID":15161,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15161","ServerKey":"pl181","X":475,"Y":382},{"Bonus":0,"Continent":"K44","ID":15162,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15162","ServerKey":"pl181","X":404,"Y":424},{"Bonus":0,"Continent":"K45","ID":15163,"Name":"Szlachcic","PlayerID":699170684,"Points":9453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15163","ServerKey":"pl181","X":583,"Y":414},{"Bonus":0,"Continent":"K43","ID":15164,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15164","ServerKey":"pl181","X":392,"Y":455},{"Bonus":0,"Continent":"K45","ID":15165,"Name":"098 Wioska barbarzyƄska","PlayerID":699491076,"Points":8728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15165","ServerKey":"pl181","X":596,"Y":420},{"Bonus":0,"Continent":"K35","ID":15166,"Name":"002","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15166","ServerKey":"pl181","X":548,"Y":389},{"Bonus":0,"Continent":"K46","ID":15167,"Name":"A01 Sir Valanzy3","PlayerID":849093742,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15167","ServerKey":"pl181","X":600,"Y":461},{"Bonus":0,"Continent":"K64","ID":15168,"Name":"spoceni xD","PlayerID":699280514,"Points":7286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15168","ServerKey":"pl181","X":437,"Y":608},{"Bonus":6,"Continent":"K64","ID":15169,"Name":"Black Castel","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15169","ServerKey":"pl181","X":481,"Y":619},{"Bonus":0,"Continent":"K44","ID":15170,"Name":"Wioska Nevomex1","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15170","ServerKey":"pl181","X":405,"Y":429},{"Bonus":0,"Continent":"K44","ID":15171,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15171","ServerKey":"pl181","X":409,"Y":420},{"Bonus":0,"Continent":"K64","ID":15172,"Name":"035","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15172","ServerKey":"pl181","X":495,"Y":620},{"Bonus":0,"Continent":"K64","ID":15173,"Name":"#062","PlayerID":699605333,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15173","ServerKey":"pl181","X":481,"Y":621},{"Bonus":0,"Continent":"K44","ID":15174,"Name":"Gravity","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15174","ServerKey":"pl181","X":405,"Y":446},{"Bonus":0,"Continent":"K34","ID":15175,"Name":"032","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15175","ServerKey":"pl181","X":489,"Y":380},{"Bonus":0,"Continent":"K65","ID":15176,"Name":"0437","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15176","ServerKey":"pl181","X":547,"Y":615},{"Bonus":0,"Continent":"K64","ID":15177,"Name":"021.xxx","PlayerID":849084985,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15177","ServerKey":"pl181","X":461,"Y":617},{"Bonus":0,"Continent":"K34","ID":15178,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15178","ServerKey":"pl181","X":479,"Y":381},{"Bonus":0,"Continent":"K46","ID":15179,"Name":"A013","PlayerID":699722599,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15179","ServerKey":"pl181","X":612,"Y":450},{"Bonus":0,"Continent":"K35","ID":15180,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15180","ServerKey":"pl181","X":523,"Y":379},{"Bonus":2,"Continent":"K43","ID":15181,"Name":"Land of Fire","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15181","ServerKey":"pl181","X":393,"Y":446},{"Bonus":0,"Continent":"K65","ID":15182,"Name":"z 031","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15182","ServerKey":"pl181","X":547,"Y":604},{"Bonus":0,"Continent":"K65","ID":15183,"Name":"Yogi","PlayerID":2808172,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15183","ServerKey":"pl181","X":561,"Y":619},{"Bonus":0,"Continent":"K35","ID":15184,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15184","ServerKey":"pl181","X":507,"Y":376},{"Bonus":0,"Continent":"K45","ID":15185,"Name":"099 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15185","ServerKey":"pl181","X":594,"Y":419},{"Bonus":0,"Continent":"K55","ID":15186,"Name":"Wioska 010","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15186","ServerKey":"pl181","X":597,"Y":580},{"Bonus":0,"Continent":"K56","ID":15187,"Name":"Halinanium","PlayerID":698702991,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15187","ServerKey":"pl181","X":603,"Y":564},{"Bonus":0,"Continent":"K34","ID":15188,"Name":"K34 - [063] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15188","ServerKey":"pl181","X":449,"Y":390},{"Bonus":0,"Continent":"K65","ID":15189,"Name":"Mako Reactor 1 - B8F","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15189","ServerKey":"pl181","X":518,"Y":617},{"Bonus":0,"Continent":"K65","ID":15190,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15190","ServerKey":"pl181","X":515,"Y":624},{"Bonus":0,"Continent":"K53","ID":15191,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15191","ServerKey":"pl181","X":378,"Y":505},{"Bonus":0,"Continent":"K53","ID":15192,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15192","ServerKey":"pl181","X":385,"Y":533},{"Bonus":0,"Continent":"K56","ID":15193,"Name":"*025*","PlayerID":698670524,"Points":5660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15193","ServerKey":"pl181","X":623,"Y":501},{"Bonus":0,"Continent":"K53","ID":15194,"Name":"039 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15194","ServerKey":"pl181","X":390,"Y":559},{"Bonus":0,"Continent":"K64","ID":15196,"Name":"028.","PlayerID":699494488,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15196","ServerKey":"pl181","X":486,"Y":624},{"Bonus":0,"Continent":"K46","ID":15197,"Name":"Wioska (022)","PlayerID":698232227,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15197","ServerKey":"pl181","X":623,"Y":475},{"Bonus":0,"Continent":"K56","ID":15198,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15198","ServerKey":"pl181","X":611,"Y":558},{"Bonus":0,"Continent":"K56","ID":15199,"Name":"uprawy","PlayerID":7047342,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15199","ServerKey":"pl181","X":610,"Y":559},{"Bonus":0,"Continent":"K53","ID":15200,"Name":"033 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15200","ServerKey":"pl181","X":389,"Y":558},{"Bonus":0,"Continent":"K65","ID":15201,"Name":"0032","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15201","ServerKey":"pl181","X":549,"Y":609},{"Bonus":7,"Continent":"K34","ID":15202,"Name":"VN Hannibal Barca","PlayerID":699883079,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15202","ServerKey":"pl181","X":466,"Y":380},{"Bonus":0,"Continent":"K65","ID":15203,"Name":"CALL 1005","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15203","ServerKey":"pl181","X":514,"Y":619},{"Bonus":0,"Continent":"K54","ID":15204,"Name":"059 - Sayil","PlayerID":225023,"Points":4554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15204","ServerKey":"pl181","X":427,"Y":597},{"Bonus":0,"Continent":"K53","ID":15205,"Name":"ZachĂłd - 009","PlayerID":225023,"Points":5532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15205","ServerKey":"pl181","X":396,"Y":568},{"Bonus":0,"Continent":"K46","ID":15206,"Name":"Jaaa","PlayerID":698635863,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15206","ServerKey":"pl181","X":609,"Y":437},{"Bonus":0,"Continent":"K34","ID":15207,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15207","ServerKey":"pl181","X":482,"Y":391},{"Bonus":0,"Continent":"K34","ID":15208,"Name":".006.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15208","ServerKey":"pl181","X":496,"Y":376},{"Bonus":0,"Continent":"K43","ID":15209,"Name":"008","PlayerID":3698627,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15209","ServerKey":"pl181","X":384,"Y":456},{"Bonus":0,"Continent":"K46","ID":15210,"Name":"[207] WEST","PlayerID":848985692,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15210","ServerKey":"pl181","X":612,"Y":452},{"Bonus":0,"Continent":"K35","ID":15211,"Name":"001 Parostatkiem piękny rejs","PlayerID":698829590,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15211","ServerKey":"pl181","X":502,"Y":389},{"Bonus":0,"Continent":"K54","ID":15212,"Name":"--001--","PlayerID":225023,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15212","ServerKey":"pl181","X":425,"Y":599},{"Bonus":0,"Continent":"K53","ID":15213,"Name":"167 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15213","ServerKey":"pl181","X":387,"Y":543},{"Bonus":0,"Continent":"K65","ID":15214,"Name":"jest moc","PlayerID":699567608,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15214","ServerKey":"pl181","X":557,"Y":609},{"Bonus":0,"Continent":"K65","ID":15215,"Name":"Teby_28","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15215","ServerKey":"pl181","X":501,"Y":622},{"Bonus":0,"Continent":"K46","ID":15216,"Name":"010. Antium","PlayerID":849091866,"Points":9135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15216","ServerKey":"pl181","X":618,"Y":460},{"Bonus":0,"Continent":"K56","ID":15217,"Name":"015 Tarnag","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15217","ServerKey":"pl181","X":624,"Y":504},{"Bonus":0,"Continent":"K53","ID":15218,"Name":"Wioska .580","PlayerID":849030226,"Points":7875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15218","ServerKey":"pl181","X":383,"Y":532},{"Bonus":0,"Continent":"K34","ID":15219,"Name":"K34 - [035] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15219","ServerKey":"pl181","X":454,"Y":385},{"Bonus":0,"Continent":"K43","ID":15221,"Name":"A0040","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15221","ServerKey":"pl181","X":381,"Y":467},{"Bonus":0,"Continent":"K34","ID":15222,"Name":"[004] Siluca Meletes","PlayerID":699658023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15222","ServerKey":"pl181","X":478,"Y":372},{"Bonus":0,"Continent":"K56","ID":15223,"Name":"Gryfios 005","PlayerID":698666810,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15223","ServerKey":"pl181","X":619,"Y":541},{"Bonus":0,"Continent":"K34","ID":15224,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15224","ServerKey":"pl181","X":480,"Y":379},{"Bonus":0,"Continent":"K64","ID":15225,"Name":"0008 Bigi02","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15225","ServerKey":"pl181","X":430,"Y":605},{"Bonus":0,"Continent":"K35","ID":15226,"Name":"Taran","PlayerID":699170684,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15226","ServerKey":"pl181","X":544,"Y":386},{"Bonus":3,"Continent":"K35","ID":15227,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15227","ServerKey":"pl181","X":542,"Y":384},{"Bonus":0,"Continent":"K34","ID":15228,"Name":"K34 - [034] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15228","ServerKey":"pl181","X":460,"Y":389},{"Bonus":4,"Continent":"K43","ID":15229,"Name":"s181eo26","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15229","ServerKey":"pl181","X":382,"Y":457},{"Bonus":0,"Continent":"K64","ID":15231,"Name":"#033","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15231","ServerKey":"pl181","X":474,"Y":619},{"Bonus":0,"Continent":"K64","ID":15232,"Name":"025.","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15232","ServerKey":"pl181","X":486,"Y":623},{"Bonus":0,"Continent":"K44","ID":15233,"Name":"FKG 01-10","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15233","ServerKey":"pl181","X":421,"Y":408},{"Bonus":0,"Continent":"K35","ID":15234,"Name":"013. Salon kosmetyczny Lalusia","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15234","ServerKey":"pl181","X":566,"Y":393},{"Bonus":0,"Continent":"K45","ID":15236,"Name":"D018","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15236","ServerKey":"pl181","X":580,"Y":410},{"Bonus":8,"Continent":"K65","ID":15237,"Name":"#0002","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15237","ServerKey":"pl181","X":544,"Y":612},{"Bonus":0,"Continent":"K56","ID":15238,"Name":"0019","PlayerID":6510480,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15238","ServerKey":"pl181","X":624,"Y":516},{"Bonus":0,"Continent":"K35","ID":15239,"Name":"Part IX","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15239","ServerKey":"pl181","X":534,"Y":382},{"Bonus":1,"Continent":"K44","ID":15240,"Name":".44","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15240","ServerKey":"pl181","X":410,"Y":420},{"Bonus":0,"Continent":"K53","ID":15241,"Name":"wioska smielii","PlayerID":9167250,"Points":7095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15241","ServerKey":"pl181","X":399,"Y":570},{"Bonus":0,"Continent":"K35","ID":15242,"Name":"Part XIX","PlayerID":698350371,"Points":10196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15242","ServerKey":"pl181","X":535,"Y":379},{"Bonus":0,"Continent":"K34","ID":15243,"Name":"K34 - [022] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15243","ServerKey":"pl181","X":459,"Y":388},{"Bonus":0,"Continent":"K64","ID":15244,"Name":"#036","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15244","ServerKey":"pl181","X":471,"Y":622},{"Bonus":6,"Continent":"K34","ID":15245,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15245","ServerKey":"pl181","X":482,"Y":380},{"Bonus":0,"Continent":"K46","ID":15246,"Name":"006","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15246","ServerKey":"pl181","X":604,"Y":497},{"Bonus":0,"Continent":"K46","ID":15247,"Name":"015 Jestem pizz@","PlayerID":699272633,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15247","ServerKey":"pl181","X":619,"Y":464},{"Bonus":0,"Continent":"K35","ID":15248,"Name":"Jebalnik1","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15248","ServerKey":"pl181","X":507,"Y":379},{"Bonus":0,"Continent":"K34","ID":15249,"Name":"029","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15249","ServerKey":"pl181","X":481,"Y":377},{"Bonus":0,"Continent":"K53","ID":15250,"Name":"Wioska","PlayerID":849084005,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15250","ServerKey":"pl181","X":383,"Y":543},{"Bonus":0,"Continent":"K55","ID":15251,"Name":"Wioska Mwito","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15251","ServerKey":"pl181","X":569,"Y":591},{"Bonus":0,"Continent":"K35","ID":15253,"Name":"DzieƄ Dobry :)","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15253","ServerKey":"pl181","X":534,"Y":380},{"Bonus":0,"Continent":"K35","ID":15254,"Name":"A002","PlayerID":699208929,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15254","ServerKey":"pl181","X":518,"Y":370},{"Bonus":0,"Continent":"K53","ID":15255,"Name":"013 Będzie klinowane","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15255","ServerKey":"pl181","X":391,"Y":561},{"Bonus":0,"Continent":"K64","ID":15257,"Name":"015.xxx","PlayerID":8612358,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15257","ServerKey":"pl181","X":469,"Y":621},{"Bonus":0,"Continent":"K53","ID":15258,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15258","ServerKey":"pl181","X":380,"Y":535},{"Bonus":0,"Continent":"K46","ID":15259,"Name":"A023","PlayerID":699722599,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15259","ServerKey":"pl181","X":616,"Y":451},{"Bonus":0,"Continent":"K43","ID":15260,"Name":"Mniejsze zƂo 0004","PlayerID":699794765,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15260","ServerKey":"pl181","X":376,"Y":480},{"Bonus":0,"Continent":"K43","ID":15261,"Name":"Mniejsze zƂo 0002","PlayerID":699794765,"Points":10249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15261","ServerKey":"pl181","X":380,"Y":478},{"Bonus":0,"Continent":"K56","ID":15263,"Name":"=014= PĂłĆșniej szedƂ taki Zbyszek","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15263","ServerKey":"pl181","X":613,"Y":554},{"Bonus":0,"Continent":"K65","ID":15264,"Name":"0342","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15264","ServerKey":"pl181","X":502,"Y":622},{"Bonus":0,"Continent":"K44","ID":15265,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15265","ServerKey":"pl181","X":428,"Y":401},{"Bonus":0,"Continent":"K53","ID":15266,"Name":"Wioska spiderandsobol","PlayerID":9167250,"Points":7998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15266","ServerKey":"pl181","X":397,"Y":564},{"Bonus":0,"Continent":"K54","ID":15267,"Name":"052 - Boom","PlayerID":225023,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15267","ServerKey":"pl181","X":424,"Y":594},{"Bonus":0,"Continent":"K46","ID":15268,"Name":"Jaaa","PlayerID":698635863,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15268","ServerKey":"pl181","X":609,"Y":442},{"Bonus":0,"Continent":"K34","ID":15269,"Name":"K34 - [064] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15269","ServerKey":"pl181","X":448,"Y":392},{"Bonus":0,"Continent":"K43","ID":15270,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15270","ServerKey":"pl181","X":385,"Y":449},{"Bonus":0,"Continent":"K65","ID":15271,"Name":"Collapsed Expressway","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15271","ServerKey":"pl181","X":525,"Y":620},{"Bonus":0,"Continent":"K35","ID":15272,"Name":"R-5","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15272","ServerKey":"pl181","X":551,"Y":385},{"Bonus":0,"Continent":"K43","ID":15273,"Name":"Mniejsze zƂo 0007","PlayerID":699794765,"Points":8498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15273","ServerKey":"pl181","X":375,"Y":481},{"Bonus":0,"Continent":"K64","ID":15274,"Name":"033 - A09.***","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15274","ServerKey":"pl181","X":439,"Y":604},{"Bonus":0,"Continent":"K53","ID":15275,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15275","ServerKey":"pl181","X":379,"Y":524},{"Bonus":0,"Continent":"K56","ID":15276,"Name":"Cypel","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15276","ServerKey":"pl181","X":613,"Y":549},{"Bonus":0,"Continent":"K43","ID":15277,"Name":"Sahara","PlayerID":699265922,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15277","ServerKey":"pl181","X":376,"Y":495},{"Bonus":0,"Continent":"K65","ID":15278,"Name":"Yogi","PlayerID":2808172,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15278","ServerKey":"pl181","X":534,"Y":616},{"Bonus":0,"Continent":"K44","ID":15279,"Name":"+44 61 Neufchatel Hardelot","PlayerID":698361257,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15279","ServerKey":"pl181","X":413,"Y":469},{"Bonus":0,"Continent":"K34","ID":15280,"Name":"K34 - [077] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15280","ServerKey":"pl181","X":456,"Y":384},{"Bonus":0,"Continent":"K64","ID":15282,"Name":"NIERAJ05","PlayerID":698143931,"Points":8291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15282","ServerKey":"pl181","X":450,"Y":616},{"Bonus":0,"Continent":"K34","ID":15283,"Name":"K34 - [033] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15283","ServerKey":"pl181","X":462,"Y":383},{"Bonus":0,"Continent":"K65","ID":15284,"Name":"066","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15284","ServerKey":"pl181","X":570,"Y":603},{"Bonus":0,"Continent":"K65","ID":15285,"Name":"040","PlayerID":699189792,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15285","ServerKey":"pl181","X":542,"Y":617},{"Bonus":0,"Continent":"K64","ID":15286,"Name":"0027 XXARDASS","PlayerID":9060641,"Points":8100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15286","ServerKey":"pl181","X":432,"Y":601},{"Bonus":0,"Continent":"K34","ID":15288,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15288","ServerKey":"pl181","X":473,"Y":383},{"Bonus":0,"Continent":"K44","ID":15289,"Name":"Tank x 007. Dobry, zƂy i brzydki","PlayerID":698290577,"Points":9281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15289","ServerKey":"pl181","X":404,"Y":499},{"Bonus":0,"Continent":"K46","ID":15291,"Name":"Wioska 5","PlayerID":848935020,"Points":8208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15291","ServerKey":"pl181","X":621,"Y":473},{"Bonus":0,"Continent":"K35","ID":15292,"Name":"002 Wioska oleska2002","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15292","ServerKey":"pl181","X":530,"Y":380},{"Bonus":0,"Continent":"K45","ID":15293,"Name":"108","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15293","ServerKey":"pl181","X":583,"Y":408},{"Bonus":0,"Continent":"K44","ID":15294,"Name":"K44 x033","PlayerID":698364331,"Points":8073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15294","ServerKey":"pl181","X":430,"Y":400},{"Bonus":0,"Continent":"K34","ID":15295,"Name":".010.","PlayerID":698489071,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15295","ServerKey":"pl181","X":495,"Y":378},{"Bonus":0,"Continent":"K54","ID":15296,"Name":"Wioska WojoKox626","PlayerID":699856962,"Points":2772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15296","ServerKey":"pl181","X":435,"Y":549},{"Bonus":0,"Continent":"K53","ID":15297,"Name":"*006 Thorshavn","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15297","ServerKey":"pl181","X":386,"Y":542},{"Bonus":0,"Continent":"K35","ID":15298,"Name":"207","PlayerID":849064752,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15298","ServerKey":"pl181","X":569,"Y":386},{"Bonus":0,"Continent":"K65","ID":15299,"Name":"030","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15299","ServerKey":"pl181","X":565,"Y":607},{"Bonus":0,"Continent":"K54","ID":15300,"Name":"01. Wioska mrPosel","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15300","ServerKey":"pl181","X":469,"Y":586},{"Bonus":0,"Continent":"K34","ID":15301,"Name":"K34 - [085] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15301","ServerKey":"pl181","X":456,"Y":382},{"Bonus":0,"Continent":"K45","ID":15303,"Name":"Wioska barbarzyƄska 013|","PlayerID":6343784,"Points":9180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15303","ServerKey":"pl181","X":580,"Y":404},{"Bonus":7,"Continent":"K44","ID":15304,"Name":"Osada koczownikĂłw","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15304","ServerKey":"pl181","X":404,"Y":419},{"Bonus":0,"Continent":"K56","ID":15305,"Name":"=008= Lampa z przodu","PlayerID":3781794,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15305","ServerKey":"pl181","X":607,"Y":549},{"Bonus":0,"Continent":"K55","ID":15306,"Name":"Wioska 027","PlayerID":848971079,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15306","ServerKey":"pl181","X":599,"Y":578},{"Bonus":0,"Continent":"K44","ID":15307,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15307","ServerKey":"pl181","X":424,"Y":406},{"Bonus":0,"Continent":"K56","ID":15308,"Name":"=009= ByƂa w niezƂym stanie","PlayerID":3781794,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15308","ServerKey":"pl181","X":610,"Y":550},{"Bonus":8,"Continent":"K64","ID":15309,"Name":"003. Orkowa Kopalnia","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15309","ServerKey":"pl181","X":490,"Y":625},{"Bonus":0,"Continent":"K65","ID":15310,"Name":"Teby_23","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15310","ServerKey":"pl181","X":504,"Y":624},{"Bonus":0,"Continent":"K56","ID":15311,"Name":"013.","PlayerID":6520732,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15311","ServerKey":"pl181","X":623,"Y":521},{"Bonus":0,"Continent":"K56","ID":15312,"Name":"021 Driftmark","PlayerID":699272880,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15312","ServerKey":"pl181","X":606,"Y":567},{"Bonus":1,"Continent":"K46","ID":15313,"Name":"21 XXX","PlayerID":699377151,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15313","ServerKey":"pl181","X":619,"Y":481},{"Bonus":0,"Continent":"K65","ID":15314,"Name":"002","PlayerID":699567608,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15314","ServerKey":"pl181","X":560,"Y":609},{"Bonus":0,"Continent":"K55","ID":15315,"Name":"Jaaa","PlayerID":698635863,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15315","ServerKey":"pl181","X":576,"Y":596},{"Bonus":5,"Continent":"K46","ID":15316,"Name":"I Po Co?","PlayerID":7142659,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15316","ServerKey":"pl181","X":621,"Y":483},{"Bonus":0,"Continent":"K64","ID":15317,"Name":"SPARTA","PlayerID":2585846,"Points":9181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15317","ServerKey":"pl181","X":499,"Y":600},{"Bonus":0,"Continent":"K46","ID":15319,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15319","ServerKey":"pl181","X":609,"Y":441},{"Bonus":0,"Continent":"K56","ID":15320,"Name":"030 Lenka","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15320","ServerKey":"pl181","X":633,"Y":504},{"Bonus":0,"Continent":"K46","ID":15321,"Name":"035 Izumi","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15321","ServerKey":"pl181","X":625,"Y":488},{"Bonus":0,"Continent":"K43","ID":15322,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15322","ServerKey":"pl181","X":386,"Y":445},{"Bonus":0,"Continent":"K53","ID":15323,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15323","ServerKey":"pl181","X":393,"Y":504},{"Bonus":0,"Continent":"K44","ID":15324,"Name":"TRR 003","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15324","ServerKey":"pl181","X":407,"Y":417},{"Bonus":0,"Continent":"K34","ID":15326,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15326","ServerKey":"pl181","X":487,"Y":376},{"Bonus":0,"Continent":"K55","ID":15327,"Name":"Jaaa","PlayerID":698635863,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15327","ServerKey":"pl181","X":590,"Y":588},{"Bonus":0,"Continent":"K35","ID":15328,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15328","ServerKey":"pl181","X":533,"Y":383},{"Bonus":0,"Continent":"K55","ID":15329,"Name":"20002","PlayerID":848915531,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15329","ServerKey":"pl181","X":516,"Y":546},{"Bonus":7,"Continent":"K44","ID":15330,"Name":"Wioska","PlayerID":7462660,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15330","ServerKey":"pl181","X":402,"Y":421},{"Bonus":0,"Continent":"K44","ID":15331,"Name":"026","PlayerID":9291984,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15331","ServerKey":"pl181","X":456,"Y":437},{"Bonus":0,"Continent":"K54","ID":15332,"Name":"C Zach 005 kleszczow","PlayerID":849084740,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15332","ServerKey":"pl181","X":405,"Y":574},{"Bonus":0,"Continent":"K64","ID":15333,"Name":"ave why!","PlayerID":698143931,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15333","ServerKey":"pl181","X":449,"Y":614},{"Bonus":0,"Continent":"K65","ID":15334,"Name":"004","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15334","ServerKey":"pl181","X":544,"Y":615},{"Bonus":0,"Continent":"K64","ID":15335,"Name":"006. Gloria Victis","PlayerID":699697558,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15335","ServerKey":"pl181","X":437,"Y":606},{"Bonus":0,"Continent":"K34","ID":15336,"Name":"K34 - [040] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15336","ServerKey":"pl181","X":458,"Y":385},{"Bonus":0,"Continent":"K46","ID":15337,"Name":"018. Pompeii","PlayerID":849091866,"Points":9087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15337","ServerKey":"pl181","X":614,"Y":460},{"Bonus":0,"Continent":"K54","ID":15338,"Name":"A.017","PlayerID":849088243,"Points":9341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15338","ServerKey":"pl181","X":409,"Y":586},{"Bonus":9,"Continent":"K55","ID":15339,"Name":"089","PlayerID":699373599,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15339","ServerKey":"pl181","X":598,"Y":572},{"Bonus":0,"Continent":"K55","ID":15340,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15340","ServerKey":"pl181","X":513,"Y":545},{"Bonus":0,"Continent":"K56","ID":15341,"Name":"0008","PlayerID":6510480,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15341","ServerKey":"pl181","X":622,"Y":524},{"Bonus":0,"Continent":"K46","ID":15342,"Name":"*033*","PlayerID":698670524,"Points":8596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15342","ServerKey":"pl181","X":623,"Y":479},{"Bonus":0,"Continent":"K55","ID":15343,"Name":"Pod","PlayerID":1715091,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15343","ServerKey":"pl181","X":591,"Y":581},{"Bonus":0,"Continent":"K43","ID":15344,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15344","ServerKey":"pl181","X":397,"Y":433},{"Bonus":0,"Continent":"K54","ID":15345,"Name":"Vittese","PlayerID":9167250,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15345","ServerKey":"pl181","X":402,"Y":570},{"Bonus":0,"Continent":"K35","ID":15346,"Name":"Taran","PlayerID":699170684,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15346","ServerKey":"pl181","X":547,"Y":387},{"Bonus":0,"Continent":"K53","ID":15347,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15347","ServerKey":"pl181","X":374,"Y":502},{"Bonus":0,"Continent":"K65","ID":15348,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15348","ServerKey":"pl181","X":531,"Y":630},{"Bonus":0,"Continent":"K34","ID":15349,"Name":"VN Rhya","PlayerID":699883079,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15349","ServerKey":"pl181","X":475,"Y":376},{"Bonus":0,"Continent":"K55","ID":15350,"Name":"003","PlayerID":699698253,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15350","ServerKey":"pl181","X":513,"Y":591},{"Bonus":0,"Continent":"K53","ID":15351,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15351","ServerKey":"pl181","X":378,"Y":513},{"Bonus":0,"Continent":"K43","ID":15352,"Name":"Wioska l2adziu","PlayerID":699523631,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15352","ServerKey":"pl181","X":390,"Y":476},{"Bonus":0,"Continent":"K53","ID":15353,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15353","ServerKey":"pl181","X":379,"Y":519},{"Bonus":0,"Continent":"K46","ID":15354,"Name":"Gattacka","PlayerID":699298370,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15354","ServerKey":"pl181","X":600,"Y":426},{"Bonus":0,"Continent":"K65","ID":15355,"Name":"046","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15355","ServerKey":"pl181","X":539,"Y":619},{"Bonus":0,"Continent":"K35","ID":15356,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15356","ServerKey":"pl181","X":552,"Y":387},{"Bonus":0,"Continent":"K35","ID":15357,"Name":"C 017","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15357","ServerKey":"pl181","X":562,"Y":394},{"Bonus":0,"Continent":"K64","ID":15358,"Name":"030.","PlayerID":699494488,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15358","ServerKey":"pl181","X":493,"Y":624},{"Bonus":0,"Continent":"K45","ID":15359,"Name":"27 im Sazykina","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15359","ServerKey":"pl181","X":594,"Y":417},{"Bonus":0,"Continent":"K54","ID":15360,"Name":"NOT FOR YOU","PlayerID":9236866,"Points":5643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15360","ServerKey":"pl181","X":458,"Y":554},{"Bonus":0,"Continent":"K35","ID":15361,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15361","ServerKey":"pl181","X":540,"Y":382},{"Bonus":0,"Continent":"K45","ID":15362,"Name":"148","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15362","ServerKey":"pl181","X":582,"Y":411},{"Bonus":0,"Continent":"K56","ID":15363,"Name":"0019 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15363","ServerKey":"pl181","X":603,"Y":565},{"Bonus":0,"Continent":"K45","ID":15364,"Name":"085","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15364","ServerKey":"pl181","X":574,"Y":405},{"Bonus":0,"Continent":"K46","ID":15365,"Name":"*032*","PlayerID":698670524,"Points":8433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15365","ServerKey":"pl181","X":622,"Y":482},{"Bonus":0,"Continent":"K65","ID":15366,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15366","ServerKey":"pl181","X":538,"Y":618},{"Bonus":0,"Continent":"K45","ID":15367,"Name":"020","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15367","ServerKey":"pl181","X":576,"Y":405},{"Bonus":0,"Continent":"K64","ID":15368,"Name":"015","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15368","ServerKey":"pl181","X":476,"Y":624},{"Bonus":0,"Continent":"K64","ID":15369,"Name":"Mlask","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15369","ServerKey":"pl181","X":468,"Y":622},{"Bonus":0,"Continent":"K35","ID":15370,"Name":"192","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15370","ServerKey":"pl181","X":570,"Y":395},{"Bonus":0,"Continent":"K45","ID":15371,"Name":"014","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15371","ServerKey":"pl181","X":581,"Y":410},{"Bonus":0,"Continent":"K46","ID":15372,"Name":"Gattacka","PlayerID":699298370,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15372","ServerKey":"pl181","X":605,"Y":430},{"Bonus":0,"Continent":"K35","ID":15373,"Name":"Master Carry","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15373","ServerKey":"pl181","X":507,"Y":368},{"Bonus":0,"Continent":"K35","ID":15374,"Name":"Part XXIII","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15374","ServerKey":"pl181","X":531,"Y":381},{"Bonus":0,"Continent":"K53","ID":15375,"Name":"035 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15375","ServerKey":"pl181","X":390,"Y":555},{"Bonus":0,"Continent":"K46","ID":15376,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15376","ServerKey":"pl181","X":604,"Y":431},{"Bonus":0,"Continent":"K45","ID":15377,"Name":"074","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15377","ServerKey":"pl181","X":586,"Y":408},{"Bonus":0,"Continent":"K64","ID":15378,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15378","ServerKey":"pl181","X":428,"Y":603},{"Bonus":0,"Continent":"K53","ID":15379,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":6652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15379","ServerKey":"pl181","X":380,"Y":514},{"Bonus":0,"Continent":"K53","ID":15381,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15381","ServerKey":"pl181","X":383,"Y":547},{"Bonus":0,"Continent":"K64","ID":15382,"Name":"0031 Wioska barbarzyƄska","PlayerID":9060641,"Points":5445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15382","ServerKey":"pl181","X":431,"Y":603},{"Bonus":0,"Continent":"K35","ID":15383,"Name":"110","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15383","ServerKey":"pl181","X":570,"Y":398},{"Bonus":4,"Continent":"K46","ID":15384,"Name":"005. Neapolis","PlayerID":849091866,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15384","ServerKey":"pl181","X":614,"Y":456},{"Bonus":0,"Continent":"K35","ID":15385,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15385","ServerKey":"pl181","X":527,"Y":382},{"Bonus":0,"Continent":"K43","ID":15386,"Name":"Knowhere","PlayerID":699723284,"Points":10542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15386","ServerKey":"pl181","X":390,"Y":494},{"Bonus":0,"Continent":"K43","ID":15387,"Name":"A0248","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15387","ServerKey":"pl181","X":378,"Y":495},{"Bonus":0,"Continent":"K64","ID":15388,"Name":"058 - Brise","PlayerID":225023,"Points":7689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15388","ServerKey":"pl181","X":423,"Y":600},{"Bonus":0,"Continent":"K45","ID":15389,"Name":"030","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15389","ServerKey":"pl181","X":584,"Y":410},{"Bonus":0,"Continent":"K53","ID":15390,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15390","ServerKey":"pl181","X":377,"Y":526},{"Bonus":0,"Continent":"K64","ID":15391,"Name":"010.xxx","PlayerID":8729672,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15391","ServerKey":"pl181","X":463,"Y":617},{"Bonus":0,"Continent":"K43","ID":15392,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15392","ServerKey":"pl181","X":388,"Y":446},{"Bonus":0,"Continent":"K56","ID":15393,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15393","ServerKey":"pl181","X":612,"Y":558},{"Bonus":0,"Continent":"K43","ID":15394,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15394","ServerKey":"pl181","X":386,"Y":448},{"Bonus":0,"Continent":"K54","ID":15395,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15395","ServerKey":"pl181","X":416,"Y":589},{"Bonus":0,"Continent":"K45","ID":15396,"Name":"HOTEL 5","PlayerID":849064614,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15396","ServerKey":"pl181","X":568,"Y":400},{"Bonus":0,"Continent":"K44","ID":15397,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15397","ServerKey":"pl181","X":406,"Y":417},{"Bonus":0,"Continent":"K53","ID":15398,"Name":"NWO","PlayerID":849030226,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15398","ServerKey":"pl181","X":391,"Y":522},{"Bonus":0,"Continent":"K56","ID":15399,"Name":"Szlachcic 007","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15399","ServerKey":"pl181","X":622,"Y":534},{"Bonus":0,"Continent":"K64","ID":15400,"Name":"ave why!","PlayerID":698143931,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15400","ServerKey":"pl181","X":449,"Y":613},{"Bonus":5,"Continent":"K54","ID":15401,"Name":"wioska smieliiii","PlayerID":9167250,"Points":8381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15401","ServerKey":"pl181","X":401,"Y":571},{"Bonus":0,"Continent":"K34","ID":15402,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15402","ServerKey":"pl181","X":446,"Y":386},{"Bonus":0,"Continent":"K44","ID":15403,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15403","ServerKey":"pl181","X":405,"Y":424},{"Bonus":0,"Continent":"K43","ID":15404,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15404","ServerKey":"pl181","X":397,"Y":437},{"Bonus":0,"Continent":"K43","ID":15405,"Name":"Brat447","PlayerID":699262350,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15405","ServerKey":"pl181","X":374,"Y":494},{"Bonus":0,"Continent":"K54","ID":15406,"Name":"Pobozowisko","PlayerID":699513260,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15406","ServerKey":"pl181","X":417,"Y":591},{"Bonus":0,"Continent":"K64","ID":15407,"Name":"0028 XXARDASS","PlayerID":9060641,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15407","ServerKey":"pl181","X":433,"Y":601},{"Bonus":0,"Continent":"K53","ID":15408,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15408","ServerKey":"pl181","X":380,"Y":510},{"Bonus":0,"Continent":"K54","ID":15409,"Name":"061 - Bonanza","PlayerID":225023,"Points":4138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15409","ServerKey":"pl181","X":423,"Y":593},{"Bonus":0,"Continent":"K34","ID":15410,"Name":"K34 - [008] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15410","ServerKey":"pl181","X":452,"Y":384},{"Bonus":0,"Continent":"K35","ID":15411,"Name":"D011","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15411","ServerKey":"pl181","X":509,"Y":391},{"Bonus":0,"Continent":"K34","ID":15412,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15412","ServerKey":"pl181","X":447,"Y":386},{"Bonus":0,"Continent":"K43","ID":15413,"Name":"Westcoast.003","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15413","ServerKey":"pl181","X":391,"Y":435},{"Bonus":7,"Continent":"K34","ID":15414,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15414","ServerKey":"pl181","X":477,"Y":379},{"Bonus":0,"Continent":"K65","ID":15415,"Name":"0027","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15415","ServerKey":"pl181","X":555,"Y":612},{"Bonus":0,"Continent":"K56","ID":15416,"Name":"ShocK","PlayerID":699379895,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15416","ServerKey":"pl181","X":624,"Y":510},{"Bonus":0,"Continent":"K43","ID":15417,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15417","ServerKey":"pl181","X":380,"Y":482},{"Bonus":0,"Continent":"K35","ID":15418,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15418","ServerKey":"pl181","X":520,"Y":378},{"Bonus":0,"Continent":"K34","ID":15419,"Name":"Vengerberg","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15419","ServerKey":"pl181","X":492,"Y":395},{"Bonus":0,"Continent":"K34","ID":15420,"Name":"0008","PlayerID":699431255,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15420","ServerKey":"pl181","X":444,"Y":389},{"Bonus":0,"Continent":"K64","ID":15421,"Name":"#008","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15421","ServerKey":"pl181","X":469,"Y":609},{"Bonus":0,"Continent":"K35","ID":15422,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15422","ServerKey":"pl181","X":545,"Y":382},{"Bonus":0,"Continent":"K55","ID":15423,"Name":"Jaaa","PlayerID":698635863,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15423","ServerKey":"pl181","X":581,"Y":594},{"Bonus":0,"Continent":"K44","ID":15424,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15424","ServerKey":"pl181","X":408,"Y":414},{"Bonus":0,"Continent":"K34","ID":15426,"Name":"K34 - [021] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15426","ServerKey":"pl181","X":466,"Y":384},{"Bonus":0,"Continent":"K46","ID":15427,"Name":"Jaaa","PlayerID":698635863,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15427","ServerKey":"pl181","X":613,"Y":443},{"Bonus":0,"Continent":"K56","ID":15428,"Name":"0015. C -","PlayerID":7125212,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15428","ServerKey":"pl181","X":621,"Y":506},{"Bonus":0,"Continent":"K46","ID":15429,"Name":"Jaaa","PlayerID":698635863,"Points":10062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15429","ServerKey":"pl181","X":607,"Y":440},{"Bonus":0,"Continent":"K35","ID":15430,"Name":"Defensywa III","PlayerID":698350371,"Points":8186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15430","ServerKey":"pl181","X":575,"Y":399},{"Bonus":0,"Continent":"K54","ID":15431,"Name":"0024 XXARDASS","PlayerID":9060641,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15431","ServerKey":"pl181","X":426,"Y":597},{"Bonus":0,"Continent":"K43","ID":15432,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15432","ServerKey":"pl181","X":380,"Y":465},{"Bonus":3,"Continent":"K46","ID":15433,"Name":"011 ...","PlayerID":699272633,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15433","ServerKey":"pl181","X":622,"Y":470},{"Bonus":0,"Continent":"K46","ID":15434,"Name":"#048.504|527","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15434","ServerKey":"pl181","X":623,"Y":478},{"Bonus":0,"Continent":"K53","ID":15435,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15435","ServerKey":"pl181","X":378,"Y":518},{"Bonus":0,"Continent":"K34","ID":15436,"Name":"K34 - [048] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15436","ServerKey":"pl181","X":457,"Y":383},{"Bonus":0,"Continent":"K43","ID":15437,"Name":"[A]_[019] Dejv.oldplyr","PlayerID":699380607,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15437","ServerKey":"pl181","X":398,"Y":492},{"Bonus":0,"Continent":"K54","ID":15438,"Name":"wioska sbbbb","PlayerID":9167250,"Points":6794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15438","ServerKey":"pl181","X":403,"Y":573},{"Bonus":0,"Continent":"K46","ID":15439,"Name":"[222] WESTsssss","PlayerID":848985692,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15439","ServerKey":"pl181","X":613,"Y":451},{"Bonus":0,"Continent":"K64","ID":15440,"Name":"0012 Wioska barbarzyƄska","PlayerID":9060641,"Points":9360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15440","ServerKey":"pl181","X":425,"Y":602},{"Bonus":5,"Continent":"K65","ID":15441,"Name":"002.","PlayerID":873575,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15441","ServerKey":"pl181","X":564,"Y":605},{"Bonus":0,"Continent":"K64","ID":15442,"Name":"020.","PlayerID":699494488,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15442","ServerKey":"pl181","X":487,"Y":624},{"Bonus":0,"Continent":"K64","ID":15443,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15443","ServerKey":"pl181","X":435,"Y":606},{"Bonus":0,"Continent":"K44","ID":15444,"Name":"PRO8L3M","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15444","ServerKey":"pl181","X":466,"Y":485},{"Bonus":0,"Continent":"K43","ID":15445,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15445","ServerKey":"pl181","X":394,"Y":434},{"Bonus":0,"Continent":"K56","ID":15446,"Name":"=010= GrzybĂłw Janusz","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15446","ServerKey":"pl181","X":612,"Y":550},{"Bonus":0,"Continent":"K43","ID":15447,"Name":"Avanti!","PlayerID":698625834,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15447","ServerKey":"pl181","X":380,"Y":481},{"Bonus":0,"Continent":"K53","ID":15448,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15448","ServerKey":"pl181","X":377,"Y":518},{"Bonus":0,"Continent":"K65","ID":15449,"Name":"Nibelheim","PlayerID":8199417,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15449","ServerKey":"pl181","X":507,"Y":621},{"Bonus":0,"Continent":"K54","ID":15450,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":5885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15450","ServerKey":"pl181","X":400,"Y":570},{"Bonus":0,"Continent":"K35","ID":15451,"Name":"HOTEL 4","PlayerID":849064614,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15451","ServerKey":"pl181","X":567,"Y":398},{"Bonus":0,"Continent":"K53","ID":15452,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15452","ServerKey":"pl181","X":380,"Y":541},{"Bonus":0,"Continent":"K65","ID":15453,"Name":"z 054","PlayerID":699342219,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15453","ServerKey":"pl181","X":585,"Y":603},{"Bonus":0,"Continent":"K46","ID":15454,"Name":"031","PlayerID":8459255,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15454","ServerKey":"pl181","X":622,"Y":469},{"Bonus":0,"Continent":"K34","ID":15455,"Name":"0088","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15455","ServerKey":"pl181","X":459,"Y":383},{"Bonus":0,"Continent":"K34","ID":15456,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15456","ServerKey":"pl181","X":475,"Y":380},{"Bonus":8,"Continent":"K44","ID":15457,"Name":"003","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15457","ServerKey":"pl181","X":400,"Y":430},{"Bonus":0,"Continent":"K45","ID":15458,"Name":"Wioska barbarzyƄska 011|","PlayerID":6343784,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15458","ServerKey":"pl181","X":577,"Y":404},{"Bonus":0,"Continent":"K54","ID":15459,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15459","ServerKey":"pl181","X":416,"Y":590},{"Bonus":0,"Continent":"K53","ID":15460,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15460","ServerKey":"pl181","X":377,"Y":525},{"Bonus":0,"Continent":"K65","ID":15461,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15461","ServerKey":"pl181","X":507,"Y":625},{"Bonus":0,"Continent":"K55","ID":15462,"Name":"My Immortal","PlayerID":699785935,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15462","ServerKey":"pl181","X":580,"Y":592},{"Bonus":0,"Continent":"K44","ID":15463,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15463","ServerKey":"pl181","X":406,"Y":416},{"Bonus":0,"Continent":"K56","ID":15464,"Name":"AWioska barbarzyƄska","PlayerID":7047342,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15464","ServerKey":"pl181","X":614,"Y":552},{"Bonus":0,"Continent":"K53","ID":15465,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15465","ServerKey":"pl181","X":377,"Y":506},{"Bonus":0,"Continent":"K46","ID":15466,"Name":"031.","PlayerID":8900955,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15466","ServerKey":"pl181","X":610,"Y":471},{"Bonus":0,"Continent":"K56","ID":15467,"Name":"0047","PlayerID":6510480,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15467","ServerKey":"pl181","X":621,"Y":524},{"Bonus":0,"Continent":"K34","ID":15468,"Name":".021.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15468","ServerKey":"pl181","X":493,"Y":375},{"Bonus":0,"Continent":"K65","ID":15469,"Name":"031","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15469","ServerKey":"pl181","X":569,"Y":603},{"Bonus":0,"Continent":"K34","ID":15470,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15470","ServerKey":"pl181","X":441,"Y":390},{"Bonus":0,"Continent":"K53","ID":15471,"Name":"043 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15471","ServerKey":"pl181","X":389,"Y":555},{"Bonus":0,"Continent":"K56","ID":15472,"Name":"604|541 013 legatus","PlayerID":6822957,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15472","ServerKey":"pl181","X":604,"Y":541},{"Bonus":0,"Continent":"K35","ID":15473,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15473","ServerKey":"pl181","X":534,"Y":392},{"Bonus":0,"Continent":"K53","ID":15474,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15474","ServerKey":"pl181","X":375,"Y":504},{"Bonus":0,"Continent":"K43","ID":15475,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15475","ServerKey":"pl181","X":384,"Y":478},{"Bonus":0,"Continent":"K54","ID":15476,"Name":"Pobozowisko","PlayerID":699513260,"Points":10626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15476","ServerKey":"pl181","X":411,"Y":586},{"Bonus":0,"Continent":"K46","ID":15477,"Name":"Centrum dowodzenia","PlayerID":9314079,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15477","ServerKey":"pl181","X":631,"Y":491},{"Bonus":8,"Continent":"K53","ID":15478,"Name":"002 To tylko farma","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15478","ServerKey":"pl181","X":389,"Y":559},{"Bonus":0,"Continent":"K64","ID":15479,"Name":"052.","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15479","ServerKey":"pl181","X":485,"Y":623},{"Bonus":0,"Continent":"K56","ID":15480,"Name":"=011= Tego dnia sporo zebraƂ","PlayerID":3781794,"Points":10447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15480","ServerKey":"pl181","X":607,"Y":552},{"Bonus":2,"Continent":"K64","ID":15481,"Name":"0358","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15481","ServerKey":"pl181","X":445,"Y":608},{"Bonus":0,"Continent":"K53","ID":15483,"Name":"111 AK Suisited","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15483","ServerKey":"pl181","X":388,"Y":555},{"Bonus":0,"Continent":"K46","ID":15484,"Name":"Jaaa","PlayerID":698635863,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15484","ServerKey":"pl181","X":607,"Y":435},{"Bonus":0,"Continent":"K56","ID":15485,"Name":"0006","PlayerID":6510480,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15485","ServerKey":"pl181","X":619,"Y":536},{"Bonus":0,"Continent":"K44","ID":15486,"Name":"0063 b13","PlayerID":3909522,"Points":7093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15486","ServerKey":"pl181","X":457,"Y":433},{"Bonus":0,"Continent":"K55","ID":15487,"Name":"Wioska 013","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15487","ServerKey":"pl181","X":597,"Y":579},{"Bonus":7,"Continent":"K35","ID":15488,"Name":"008","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15488","ServerKey":"pl181","X":505,"Y":375},{"Bonus":0,"Continent":"K43","ID":15489,"Name":"s181eo20","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15489","ServerKey":"pl181","X":381,"Y":457},{"Bonus":0,"Continent":"K45","ID":15490,"Name":"090","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15490","ServerKey":"pl181","X":583,"Y":407},{"Bonus":0,"Continent":"K45","ID":15491,"Name":"23 im Sawickej","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15491","ServerKey":"pl181","X":585,"Y":416},{"Bonus":0,"Continent":"K43","ID":15492,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15492","ServerKey":"pl181","X":397,"Y":434},{"Bonus":0,"Continent":"K54","ID":15493,"Name":"C.007","PlayerID":849088243,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15493","ServerKey":"pl181","X":421,"Y":596},{"Bonus":0,"Continent":"K46","ID":15494,"Name":"034 Toyama","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15494","ServerKey":"pl181","X":626,"Y":489},{"Bonus":0,"Continent":"K65","ID":15495,"Name":"021","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15495","ServerKey":"pl181","X":568,"Y":604},{"Bonus":0,"Continent":"K56","ID":15497,"Name":"005","PlayerID":8428196,"Points":9939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15497","ServerKey":"pl181","X":616,"Y":545},{"Bonus":0,"Continent":"K43","ID":15498,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15498","ServerKey":"pl181","X":388,"Y":474},{"Bonus":0,"Continent":"K34","ID":15499,"Name":"Hej hoo","PlayerID":699191449,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15499","ServerKey":"pl181","X":443,"Y":387},{"Bonus":0,"Continent":"K43","ID":15500,"Name":"makelovenotwar2","PlayerID":698807570,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15500","ServerKey":"pl181","X":385,"Y":459},{"Bonus":0,"Continent":"K53","ID":15501,"Name":"32. Wioska 32","PlayerID":849091769,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15501","ServerKey":"pl181","X":393,"Y":568},{"Bonus":0,"Continent":"K53","ID":15502,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15502","ServerKey":"pl181","X":379,"Y":538},{"Bonus":0,"Continent":"K56","ID":15503,"Name":"011","PlayerID":8428196,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15503","ServerKey":"pl181","X":621,"Y":536},{"Bonus":5,"Continent":"K53","ID":15504,"Name":"Osada koczownikĂłw","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15504","ServerKey":"pl181","X":379,"Y":534},{"Bonus":0,"Continent":"K56","ID":15505,"Name":"A 001","PlayerID":8078914,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15505","ServerKey":"pl181","X":606,"Y":561},{"Bonus":0,"Continent":"K46","ID":15506,"Name":"021","PlayerID":8459255,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15506","ServerKey":"pl181","X":618,"Y":467},{"Bonus":0,"Continent":"K65","ID":15507,"Name":"003","PlayerID":699567608,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15507","ServerKey":"pl181","X":560,"Y":610},{"Bonus":0,"Continent":"K64","ID":15508,"Name":"005. Gloria Victis","PlayerID":848886973,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15508","ServerKey":"pl181","X":441,"Y":607},{"Bonus":0,"Continent":"K65","ID":15509,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15509","ServerKey":"pl181","X":514,"Y":626},{"Bonus":0,"Continent":"K35","ID":15510,"Name":"025","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15510","ServerKey":"pl181","X":502,"Y":375},{"Bonus":0,"Continent":"K54","ID":15511,"Name":"Reco","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15511","ServerKey":"pl181","X":489,"Y":545},{"Bonus":0,"Continent":"K53","ID":15512,"Name":"024 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15512","ServerKey":"pl181","X":389,"Y":561},{"Bonus":0,"Continent":"K35","ID":15513,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15513","ServerKey":"pl181","X":531,"Y":382},{"Bonus":0,"Continent":"K34","ID":15514,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15514","ServerKey":"pl181","X":443,"Y":388},{"Bonus":0,"Continent":"K65","ID":15515,"Name":"SSJ 017","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15515","ServerKey":"pl181","X":513,"Y":626},{"Bonus":0,"Continent":"K35","ID":15516,"Name":"XXXVIII","PlayerID":698350371,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15516","ServerKey":"pl181","X":533,"Y":378},{"Bonus":6,"Continent":"K46","ID":15517,"Name":"SiƂa, Masa, RzeĆșba 01","PlayerID":699379895,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15517","ServerKey":"pl181","X":623,"Y":498},{"Bonus":0,"Continent":"K34","ID":15518,"Name":".053.","PlayerID":698489071,"Points":7154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15518","ServerKey":"pl181","X":484,"Y":375},{"Bonus":0,"Continent":"K45","ID":15519,"Name":"Defensywa II","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15519","ServerKey":"pl181","X":574,"Y":400},{"Bonus":2,"Continent":"K53","ID":15520,"Name":"Pobozowisko","PlayerID":699513260,"Points":10076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15520","ServerKey":"pl181","X":396,"Y":571},{"Bonus":0,"Continent":"K45","ID":15521,"Name":"20 im Rusaka","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15521","ServerKey":"pl181","X":583,"Y":405},{"Bonus":0,"Continent":"K46","ID":15522,"Name":"008 Wioska","PlayerID":699671454,"Points":6690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15522","ServerKey":"pl181","X":619,"Y":469},{"Bonus":0,"Continent":"K64","ID":15523,"Name":"002.xxx","PlayerID":8612358,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15523","ServerKey":"pl181","X":466,"Y":617},{"Bonus":1,"Continent":"K45","ID":15524,"Name":"031","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15524","ServerKey":"pl181","X":584,"Y":404},{"Bonus":0,"Continent":"K65","ID":15525,"Name":"0087","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15525","ServerKey":"pl181","X":554,"Y":610},{"Bonus":0,"Continent":"K45","ID":15526,"Name":"Gattacka","PlayerID":699298370,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15526","ServerKey":"pl181","X":597,"Y":425},{"Bonus":0,"Continent":"K56","ID":15527,"Name":"054","PlayerID":698786826,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15527","ServerKey":"pl181","X":602,"Y":587},{"Bonus":0,"Continent":"K46","ID":15528,"Name":"011. San Marino","PlayerID":849091866,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15528","ServerKey":"pl181","X":619,"Y":460},{"Bonus":0,"Continent":"K64","ID":15529,"Name":"018.","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15529","ServerKey":"pl181","X":489,"Y":623},{"Bonus":0,"Continent":"K44","ID":15530,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15530","ServerKey":"pl181","X":444,"Y":403},{"Bonus":0,"Continent":"K56","ID":15531,"Name":"Kilo","PlayerID":699737356,"Points":8665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15531","ServerKey":"pl181","X":610,"Y":560},{"Bonus":8,"Continent":"K64","ID":15532,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15532","ServerKey":"pl181","X":437,"Y":607},{"Bonus":0,"Continent":"K64","ID":15535,"Name":"0014 Wioska barbarzyƄska","PlayerID":9060641,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15535","ServerKey":"pl181","X":422,"Y":600},{"Bonus":0,"Continent":"K56","ID":15536,"Name":"SiƂa, Masa, RzeĆșba 11","PlayerID":699379895,"Points":8921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15536","ServerKey":"pl181","X":626,"Y":515},{"Bonus":0,"Continent":"K46","ID":15537,"Name":"Jaaa","PlayerID":698635863,"Points":10034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15537","ServerKey":"pl181","X":603,"Y":434},{"Bonus":0,"Continent":"K35","ID":15538,"Name":"C004","PlayerID":699722599,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15538","ServerKey":"pl181","X":571,"Y":397},{"Bonus":0,"Continent":"K45","ID":15539,"Name":"D017","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15539","ServerKey":"pl181","X":580,"Y":407},{"Bonus":0,"Continent":"K64","ID":15540,"Name":"Wioska przemomam","PlayerID":699697558,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15540","ServerKey":"pl181","X":440,"Y":608},{"Bonus":0,"Continent":"K35","ID":15541,"Name":"010","PlayerID":849010255,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15541","ServerKey":"pl181","X":505,"Y":379},{"Bonus":0,"Continent":"K56","ID":15542,"Name":"Szlachcic 003","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15542","ServerKey":"pl181","X":617,"Y":533},{"Bonus":0,"Continent":"K34","ID":15543,"Name":"K34 - [101] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15543","ServerKey":"pl181","X":455,"Y":383},{"Bonus":0,"Continent":"K46","ID":15544,"Name":"005 Sewilla","PlayerID":849093875,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15544","ServerKey":"pl181","X":624,"Y":480},{"Bonus":0,"Continent":"K64","ID":15545,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15545","ServerKey":"pl181","X":444,"Y":612},{"Bonus":0,"Continent":"K35","ID":15546,"Name":"Wioska JuanDe","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15546","ServerKey":"pl181","X":536,"Y":380},{"Bonus":0,"Continent":"K53","ID":15547,"Name":"Wioska","PlayerID":849084005,"Points":6928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15547","ServerKey":"pl181","X":383,"Y":546},{"Bonus":0,"Continent":"K34","ID":15548,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15548","ServerKey":"pl181","X":426,"Y":397},{"Bonus":0,"Continent":"K35","ID":15549,"Name":".achim.","PlayerID":6936607,"Points":8080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15549","ServerKey":"pl181","X":535,"Y":390},{"Bonus":0,"Continent":"K54","ID":15550,"Name":"A.020","PlayerID":849088243,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15550","ServerKey":"pl181","X":411,"Y":585},{"Bonus":0,"Continent":"K34","ID":15551,"Name":"012","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15551","ServerKey":"pl181","X":496,"Y":387},{"Bonus":0,"Continent":"K64","ID":15552,"Name":"0032 Wioska barbarzyƄska","PlayerID":9060641,"Points":5939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15552","ServerKey":"pl181","X":434,"Y":609},{"Bonus":0,"Continent":"K43","ID":15553,"Name":"A0162","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15553","ServerKey":"pl181","X":373,"Y":491},{"Bonus":0,"Continent":"K45","ID":15554,"Name":"-x5","PlayerID":848967710,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15554","ServerKey":"pl181","X":501,"Y":496},{"Bonus":0,"Continent":"K53","ID":15555,"Name":"114 MikeJazz","PlayerID":699382126,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15555","ServerKey":"pl181","X":388,"Y":551},{"Bonus":0,"Continent":"K65","ID":15556,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15556","ServerKey":"pl181","X":520,"Y":625},{"Bonus":0,"Continent":"K44","ID":15557,"Name":"...Just like that","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15557","ServerKey":"pl181","X":461,"Y":488},{"Bonus":0,"Continent":"K53","ID":15558,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15558","ServerKey":"pl181","X":377,"Y":512},{"Bonus":0,"Continent":"K56","ID":15559,"Name":"009.","PlayerID":8900955,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15559","ServerKey":"pl181","X":614,"Y":549},{"Bonus":0,"Continent":"K34","ID":15560,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15560","ServerKey":"pl181","X":440,"Y":388},{"Bonus":0,"Continent":"K53","ID":15561,"Name":"ZachĂłd - 016","PlayerID":225023,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15561","ServerKey":"pl181","X":395,"Y":570},{"Bonus":0,"Continent":"K46","ID":15562,"Name":"Wioska (005)","PlayerID":698232227,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15562","ServerKey":"pl181","X":621,"Y":485},{"Bonus":9,"Continent":"K55","ID":15563,"Name":"Excelsior","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15563","ServerKey":"pl181","X":572,"Y":598},{"Bonus":0,"Continent":"K55","ID":15564,"Name":"004. Zmora","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15564","ServerKey":"pl181","X":508,"Y":589},{"Bonus":0,"Continent":"K64","ID":15565,"Name":"0018","PlayerID":33900,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15565","ServerKey":"pl181","X":471,"Y":618},{"Bonus":0,"Continent":"K64","ID":15566,"Name":"~088.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15566","ServerKey":"pl181","X":497,"Y":603},{"Bonus":7,"Continent":"K56","ID":15567,"Name":"Gryfios 008","PlayerID":698666810,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15567","ServerKey":"pl181","X":619,"Y":539},{"Bonus":0,"Continent":"K56","ID":15568,"Name":"0013. C - Tarnag","PlayerID":7125212,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15568","ServerKey":"pl181","X":626,"Y":503},{"Bonus":0,"Continent":"K64","ID":15569,"Name":"0046","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15569","ServerKey":"pl181","X":460,"Y":618},{"Bonus":0,"Continent":"K56","ID":15570,"Name":"0018","PlayerID":6510480,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15570","ServerKey":"pl181","X":619,"Y":526},{"Bonus":0,"Continent":"K64","ID":15571,"Name":"EKG M10 Ɓ","PlayerID":33900,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15571","ServerKey":"pl181","X":479,"Y":609},{"Bonus":0,"Continent":"K35","ID":15572,"Name":"0008","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15572","ServerKey":"pl181","X":557,"Y":381},{"Bonus":0,"Continent":"K54","ID":15573,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15573","ServerKey":"pl181","X":410,"Y":587},{"Bonus":0,"Continent":"K46","ID":15574,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15574","ServerKey":"pl181","X":604,"Y":429},{"Bonus":0,"Continent":"K64","ID":15575,"Name":"039.","PlayerID":699494488,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15575","ServerKey":"pl181","X":484,"Y":625},{"Bonus":0,"Continent":"K44","ID":15576,"Name":"0000 oko","PlayerID":3909522,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15576","ServerKey":"pl181","X":413,"Y":408},{"Bonus":0,"Continent":"K35","ID":15577,"Name":"Jedyneczka","PlayerID":699368887,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15577","ServerKey":"pl181","X":504,"Y":378},{"Bonus":0,"Continent":"K44","ID":15578,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15578","ServerKey":"pl181","X":418,"Y":408},{"Bonus":0,"Continent":"K34","ID":15579,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15579","ServerKey":"pl181","X":482,"Y":394},{"Bonus":0,"Continent":"K55","ID":15580,"Name":"Jaaa","PlayerID":698635863,"Points":10368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15580","ServerKey":"pl181","X":587,"Y":591},{"Bonus":0,"Continent":"K53","ID":15581,"Name":"31. Wioska 31","PlayerID":849091769,"Points":8904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15581","ServerKey":"pl181","X":393,"Y":567},{"Bonus":7,"Continent":"K46","ID":15582,"Name":"[211] WEST","PlayerID":848985692,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15582","ServerKey":"pl181","X":614,"Y":451},{"Bonus":0,"Continent":"K46","ID":15583,"Name":"Wioska14","PlayerID":848935020,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15583","ServerKey":"pl181","X":619,"Y":468},{"Bonus":0,"Continent":"K35","ID":15584,"Name":"006 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15584","ServerKey":"pl181","X":530,"Y":377},{"Bonus":0,"Continent":"K65","ID":15585,"Name":"kathare","PlayerID":873575,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15585","ServerKey":"pl181","X":547,"Y":614},{"Bonus":5,"Continent":"K34","ID":15586,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15586","ServerKey":"pl181","X":478,"Y":378},{"Bonus":0,"Continent":"K35","ID":15587,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15587","ServerKey":"pl181","X":512,"Y":379},{"Bonus":0,"Continent":"K34","ID":15588,"Name":"K34 - [126] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15588","ServerKey":"pl181","X":451,"Y":388},{"Bonus":0,"Continent":"K65","ID":15589,"Name":"011","PlayerID":699878511,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15589","ServerKey":"pl181","X":502,"Y":627},{"Bonus":0,"Continent":"K45","ID":15590,"Name":"087","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15590","ServerKey":"pl181","X":583,"Y":411},{"Bonus":0,"Continent":"K54","ID":15592,"Name":"A.009","PlayerID":849088243,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15592","ServerKey":"pl181","X":405,"Y":576},{"Bonus":0,"Continent":"K44","ID":15593,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15593","ServerKey":"pl181","X":401,"Y":428},{"Bonus":0,"Continent":"K34","ID":15594,"Name":"VN Guan Yu","PlayerID":699883079,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15594","ServerKey":"pl181","X":469,"Y":380},{"Bonus":0,"Continent":"K53","ID":15595,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15595","ServerKey":"pl181","X":380,"Y":537},{"Bonus":0,"Continent":"K46","ID":15596,"Name":"Wioska13","PlayerID":848935020,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15596","ServerKey":"pl181","X":620,"Y":468},{"Bonus":0,"Continent":"K53","ID":15597,"Name":"158 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15597","ServerKey":"pl181","X":387,"Y":550},{"Bonus":0,"Continent":"K43","ID":15598,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15598","ServerKey":"pl181","X":374,"Y":487},{"Bonus":0,"Continent":"K35","ID":15599,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15599","ServerKey":"pl181","X":511,"Y":373},{"Bonus":0,"Continent":"K45","ID":15600,"Name":"Belvedere 007","PlayerID":699756210,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15600","ServerKey":"pl181","X":585,"Y":406},{"Bonus":0,"Continent":"K64","ID":15601,"Name":"053.","PlayerID":699494488,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15601","ServerKey":"pl181","X":484,"Y":624},{"Bonus":0,"Continent":"K43","ID":15602,"Name":"Westcoast.065","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15602","ServerKey":"pl181","X":395,"Y":428},{"Bonus":0,"Continent":"K35","ID":15603,"Name":"Taran","PlayerID":699170684,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15603","ServerKey":"pl181","X":546,"Y":386},{"Bonus":0,"Continent":"K53","ID":15604,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15604","ServerKey":"pl181","X":374,"Y":510},{"Bonus":0,"Continent":"K35","ID":15605,"Name":"XXXII","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15605","ServerKey":"pl181","X":538,"Y":379},{"Bonus":0,"Continent":"K56","ID":15606,"Name":"Vasperland_024","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15606","ServerKey":"pl181","X":623,"Y":513},{"Bonus":0,"Continent":"K34","ID":15607,"Name":"VN Belisarius","PlayerID":699883079,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15607","ServerKey":"pl181","X":469,"Y":381},{"Bonus":0,"Continent":"K64","ID":15608,"Name":"045.","PlayerID":699494488,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15608","ServerKey":"pl181","X":493,"Y":625},{"Bonus":0,"Continent":"K46","ID":15609,"Name":"012","PlayerID":849091105,"Points":10309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15609","ServerKey":"pl181","X":622,"Y":497},{"Bonus":0,"Continent":"K43","ID":15610,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15610","ServerKey":"pl181","X":386,"Y":477},{"Bonus":0,"Continent":"K53","ID":15611,"Name":"SianĂłw","PlayerID":698769107,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15611","ServerKey":"pl181","X":387,"Y":553},{"Bonus":0,"Continent":"K44","ID":15612,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15612","ServerKey":"pl181","X":421,"Y":422},{"Bonus":0,"Continent":"K56","ID":15613,"Name":"[009]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15613","ServerKey":"pl181","X":621,"Y":541},{"Bonus":0,"Continent":"K45","ID":15614,"Name":"0003","PlayerID":8459255,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15614","ServerKey":"pl181","X":597,"Y":421},{"Bonus":0,"Continent":"K44","ID":15615,"Name":"TRR 004","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15615","ServerKey":"pl181","X":407,"Y":416},{"Bonus":4,"Continent":"K45","ID":15616,"Name":"02 im Kirowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15616","ServerKey":"pl181","X":588,"Y":415},{"Bonus":0,"Continent":"K43","ID":15617,"Name":"Ufam Tobie","PlayerID":699265922,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15617","ServerKey":"pl181","X":383,"Y":482},{"Bonus":0,"Continent":"K53","ID":15618,"Name":"Wioska","PlayerID":849030226,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15618","ServerKey":"pl181","X":380,"Y":533},{"Bonus":0,"Continent":"K53","ID":15619,"Name":"Oeste dos","PlayerID":698916948,"Points":5667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15619","ServerKey":"pl181","X":385,"Y":554},{"Bonus":0,"Continent":"K55","ID":15620,"Name":"070","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15620","ServerKey":"pl181","X":588,"Y":590},{"Bonus":0,"Continent":"K64","ID":15621,"Name":"016","PlayerID":699494488,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15621","ServerKey":"pl181","X":483,"Y":623},{"Bonus":0,"Continent":"K43","ID":15622,"Name":"[A]_[002] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15622","ServerKey":"pl181","X":393,"Y":480},{"Bonus":0,"Continent":"K45","ID":15623,"Name":"145 MIKOX 016","PlayerID":699491076,"Points":8755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15623","ServerKey":"pl181","X":589,"Y":413},{"Bonus":0,"Continent":"K43","ID":15624,"Name":"A0041","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15624","ServerKey":"pl181","X":378,"Y":472},{"Bonus":0,"Continent":"K35","ID":15625,"Name":"GOGOLICE","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15625","ServerKey":"pl181","X":514,"Y":376},{"Bonus":0,"Continent":"K65","ID":15626,"Name":"Teby_22","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15626","ServerKey":"pl181","X":506,"Y":622},{"Bonus":0,"Continent":"K64","ID":15627,"Name":"037.","PlayerID":699494488,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15627","ServerKey":"pl181","X":482,"Y":626},{"Bonus":0,"Continent":"K35","ID":15628,"Name":"174","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15628","ServerKey":"pl181","X":549,"Y":386},{"Bonus":0,"Continent":"K43","ID":15629,"Name":"Mniejsze zƂo 0019","PlayerID":699794765,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15629","ServerKey":"pl181","X":375,"Y":483},{"Bonus":0,"Continent":"K64","ID":15630,"Name":"Ulu-mulu","PlayerID":699697558,"Points":5201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15630","ServerKey":"pl181","X":432,"Y":604},{"Bonus":0,"Continent":"K53","ID":15631,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15631","ServerKey":"pl181","X":376,"Y":509},{"Bonus":0,"Continent":"K64","ID":15632,"Name":"EKG 026 Dawid","PlayerID":33900,"Points":10120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15632","ServerKey":"pl181","X":482,"Y":620},{"Bonus":0,"Continent":"K53","ID":15633,"Name":".53","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15633","ServerKey":"pl181","X":382,"Y":514},{"Bonus":0,"Continent":"K46","ID":15634,"Name":"Twierdza 3","PlayerID":848935020,"Points":7786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15634","ServerKey":"pl181","X":624,"Y":486},{"Bonus":5,"Continent":"K65","ID":15635,"Name":"CALL 914","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15635","ServerKey":"pl181","X":509,"Y":626},{"Bonus":0,"Continent":"K56","ID":15636,"Name":"Szlachcic 008","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15636","ServerKey":"pl181","X":619,"Y":533},{"Bonus":0,"Continent":"K45","ID":15637,"Name":"089 Wioska barbarzyƄska","PlayerID":699491076,"Points":9369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15637","ServerKey":"pl181","X":595,"Y":421},{"Bonus":0,"Continent":"K53","ID":15638,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15638","ServerKey":"pl181","X":379,"Y":525},{"Bonus":0,"Continent":"K53","ID":15639,"Name":"znow zawijam lolka z grama","PlayerID":9167250,"Points":5335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15639","ServerKey":"pl181","X":392,"Y":567},{"Bonus":0,"Continent":"K56","ID":15640,"Name":"0013","PlayerID":6510480,"Points":10315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15640","ServerKey":"pl181","X":620,"Y":528},{"Bonus":3,"Continent":"K43","ID":15641,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15641","ServerKey":"pl181","X":397,"Y":430},{"Bonus":0,"Continent":"K43","ID":15642,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15642","ServerKey":"pl181","X":375,"Y":487},{"Bonus":0,"Continent":"K34","ID":15643,"Name":"026","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15643","ServerKey":"pl181","X":427,"Y":395},{"Bonus":0,"Continent":"K56","ID":15644,"Name":"rakieta 010","PlayerID":848928486,"Points":6155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15644","ServerKey":"pl181","X":620,"Y":529},{"Bonus":0,"Continent":"K35","ID":15645,"Name":"Czekam na VS","PlayerID":698350371,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15645","ServerKey":"pl181","X":543,"Y":382},{"Bonus":0,"Continent":"K43","ID":15646,"Name":"Mniejsze zƂo 0001","PlayerID":699794765,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15646","ServerKey":"pl181","X":379,"Y":478},{"Bonus":0,"Continent":"K34","ID":15647,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15647","ServerKey":"pl181","X":442,"Y":387},{"Bonus":0,"Continent":"K46","ID":15648,"Name":"079","PlayerID":699373599,"Points":7818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15648","ServerKey":"pl181","X":624,"Y":497},{"Bonus":0,"Continent":"K64","ID":15649,"Name":"031","PlayerID":849084985,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15649","ServerKey":"pl181","X":447,"Y":613},{"Bonus":0,"Continent":"K35","ID":15650,"Name":"Taran","PlayerID":699170684,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15650","ServerKey":"pl181","X":545,"Y":383},{"Bonus":0,"Continent":"K64","ID":15651,"Name":"099","PlayerID":849084985,"Points":10593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15651","ServerKey":"pl181","X":448,"Y":615},{"Bonus":0,"Continent":"K46","ID":15653,"Name":"A024","PlayerID":699722599,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15653","ServerKey":"pl181","X":617,"Y":451},{"Bonus":0,"Continent":"K34","ID":15654,"Name":"K34 - [030] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15654","ServerKey":"pl181","X":454,"Y":384},{"Bonus":0,"Continent":"K43","ID":15655,"Name":"Pustynia","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15655","ServerKey":"pl181","X":377,"Y":497},{"Bonus":0,"Continent":"K53","ID":15657,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15657","ServerKey":"pl181","X":382,"Y":532},{"Bonus":0,"Continent":"K35","ID":15658,"Name":"Taran","PlayerID":699170684,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15658","ServerKey":"pl181","X":549,"Y":383},{"Bonus":0,"Continent":"K55","ID":15659,"Name":"Wioska 022","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15659","ServerKey":"pl181","X":595,"Y":584},{"Bonus":0,"Continent":"K64","ID":15660,"Name":"075","PlayerID":699336777,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15660","ServerKey":"pl181","X":480,"Y":625},{"Bonus":0,"Continent":"K43","ID":15661,"Name":"Mniejsze zƂo 0033","PlayerID":699794765,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15661","ServerKey":"pl181","X":374,"Y":485},{"Bonus":0,"Continent":"K65","ID":15662,"Name":"HORUS","PlayerID":7756002,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15662","ServerKey":"pl181","X":517,"Y":625},{"Bonus":0,"Continent":"K34","ID":15663,"Name":"055","PlayerID":698739350,"Points":7929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15663","ServerKey":"pl181","X":483,"Y":376},{"Bonus":0,"Continent":"K46","ID":15664,"Name":"B008","PlayerID":9314079,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15664","ServerKey":"pl181","X":624,"Y":496},{"Bonus":0,"Continent":"K43","ID":15665,"Name":"Pigmej","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15665","ServerKey":"pl181","X":376,"Y":488},{"Bonus":0,"Continent":"K45","ID":15666,"Name":"22 im Ɓorenta","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15666","ServerKey":"pl181","X":583,"Y":406},{"Bonus":0,"Continent":"K55","ID":15667,"Name":"Winter is coming","PlayerID":699364813,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15667","ServerKey":"pl181","X":500,"Y":576},{"Bonus":0,"Continent":"K34","ID":15668,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15668","ServerKey":"pl181","X":426,"Y":399},{"Bonus":0,"Continent":"K46","ID":15669,"Name":"WW4","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15669","ServerKey":"pl181","X":618,"Y":481},{"Bonus":0,"Continent":"K56","ID":15670,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15670","ServerKey":"pl181","X":614,"Y":554},{"Bonus":0,"Continent":"K53","ID":15671,"Name":"Knowhere","PlayerID":699723284,"Points":7912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15671","ServerKey":"pl181","X":373,"Y":509},{"Bonus":0,"Continent":"K53","ID":15672,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15672","ServerKey":"pl181","X":380,"Y":542},{"Bonus":0,"Continent":"K46","ID":15673,"Name":"012 Wioska Crawley","PlayerID":699671454,"Points":8583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15673","ServerKey":"pl181","X":622,"Y":475},{"Bonus":0,"Continent":"K53","ID":15674,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15674","ServerKey":"pl181","X":379,"Y":516},{"Bonus":0,"Continent":"K54","ID":15675,"Name":"025 - AAAAA","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15675","ServerKey":"pl181","X":423,"Y":599},{"Bonus":0,"Continent":"K64","ID":15676,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15676","ServerKey":"pl181","X":438,"Y":610},{"Bonus":5,"Continent":"K35","ID":15677,"Name":"Gwiazda ƚmierci","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15677","ServerKey":"pl181","X":541,"Y":381},{"Bonus":0,"Continent":"K64","ID":15678,"Name":"--002--","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15678","ServerKey":"pl181","X":425,"Y":600},{"Bonus":0,"Continent":"K65","ID":15679,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15679","ServerKey":"pl181","X":575,"Y":600},{"Bonus":0,"Continent":"K56","ID":15680,"Name":"Gorzelnia","PlayerID":699795378,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15680","ServerKey":"pl181","X":622,"Y":511},{"Bonus":0,"Continent":"K65","ID":15681,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15681","ServerKey":"pl181","X":516,"Y":622},{"Bonus":0,"Continent":"K35","ID":15682,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15682","ServerKey":"pl181","X":521,"Y":377},{"Bonus":0,"Continent":"K35","ID":15683,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15683","ServerKey":"pl181","X":517,"Y":375},{"Bonus":0,"Continent":"K56","ID":15684,"Name":"0048","PlayerID":6510480,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15684","ServerKey":"pl181","X":623,"Y":520},{"Bonus":0,"Continent":"K44","ID":15685,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15685","ServerKey":"pl181","X":416,"Y":410},{"Bonus":0,"Continent":"K56","ID":15686,"Name":"Bocianikson013","PlayerID":7528491,"Points":7520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15686","ServerKey":"pl181","X":612,"Y":549},{"Bonus":0,"Continent":"K56","ID":15687,"Name":"Gryfios 001b","PlayerID":698666810,"Points":11879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15687","ServerKey":"pl181","X":621,"Y":538},{"Bonus":0,"Continent":"K44","ID":15688,"Name":"FKG 01-12","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15688","ServerKey":"pl181","X":420,"Y":405},{"Bonus":0,"Continent":"K35","ID":15689,"Name":"006. Blaviken","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15689","ServerKey":"pl181","X":566,"Y":392},{"Bonus":0,"Continent":"K43","ID":15690,"Name":"Westcoast.014","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15690","ServerKey":"pl181","X":392,"Y":437},{"Bonus":0,"Continent":"K53","ID":15691,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15691","ServerKey":"pl181","X":375,"Y":521},{"Bonus":0,"Continent":"K65","ID":15692,"Name":"0150","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15692","ServerKey":"pl181","X":549,"Y":614},{"Bonus":0,"Continent":"K53","ID":15693,"Name":"Wioska","PlayerID":849084005,"Points":7303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15693","ServerKey":"pl181","X":386,"Y":552},{"Bonus":0,"Continent":"K56","ID":15694,"Name":"14 K-PAX","PlayerID":699377151,"Points":6259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15694","ServerKey":"pl181","X":622,"Y":509},{"Bonus":0,"Continent":"K64","ID":15695,"Name":"038.","PlayerID":699494488,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15695","ServerKey":"pl181","X":483,"Y":626},{"Bonus":0,"Continent":"K34","ID":15696,"Name":".037.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15696","ServerKey":"pl181","X":489,"Y":375},{"Bonus":0,"Continent":"K43","ID":15697,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15697","ServerKey":"pl181","X":384,"Y":448},{"Bonus":0,"Continent":"K64","ID":15699,"Name":"103","PlayerID":849084985,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15699","ServerKey":"pl181","X":446,"Y":614},{"Bonus":0,"Continent":"K46","ID":15700,"Name":"*0006 Baraki","PlayerID":8459255,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15700","ServerKey":"pl181","X":607,"Y":431},{"Bonus":0,"Continent":"K56","ID":15701,"Name":"Bocianikson008","PlayerID":7528491,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15701","ServerKey":"pl181","X":613,"Y":548},{"Bonus":0,"Continent":"K34","ID":15702,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15702","ServerKey":"pl181","X":477,"Y":375},{"Bonus":0,"Continent":"K64","ID":15703,"Name":"0340","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15703","ServerKey":"pl181","X":498,"Y":622},{"Bonus":0,"Continent":"K44","ID":15704,"Name":"FKG 01-18","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15704","ServerKey":"pl181","X":419,"Y":403},{"Bonus":2,"Continent":"K46","ID":15705,"Name":"003 Osada gazela","PlayerID":699671454,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15705","ServerKey":"pl181","X":622,"Y":467},{"Bonus":0,"Continent":"K34","ID":15706,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15706","ServerKey":"pl181","X":489,"Y":395},{"Bonus":0,"Continent":"K64","ID":15707,"Name":"0157","PlayerID":698659980,"Points":8863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15707","ServerKey":"pl181","X":452,"Y":616},{"Bonus":0,"Continent":"K46","ID":15708,"Name":"069 Fukuoka","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15708","ServerKey":"pl181","X":619,"Y":472},{"Bonus":0,"Continent":"K65","ID":15709,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15709","ServerKey":"pl181","X":528,"Y":624},{"Bonus":0,"Continent":"K46","ID":15710,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15710","ServerKey":"pl181","X":606,"Y":430},{"Bonus":0,"Continent":"K55","ID":15711,"Name":"Wioska 014","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15711","ServerKey":"pl181","X":595,"Y":576},{"Bonus":0,"Continent":"K44","ID":15712,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15712","ServerKey":"pl181","X":404,"Y":416},{"Bonus":0,"Continent":"K35","ID":15713,"Name":"C 018","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15713","ServerKey":"pl181","X":564,"Y":394},{"Bonus":0,"Continent":"K46","ID":15714,"Name":"[220] WEST","PlayerID":848985692,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15714","ServerKey":"pl181","X":616,"Y":454},{"Bonus":0,"Continent":"K53","ID":15715,"Name":"ZachĂłd - 001","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15715","ServerKey":"pl181","X":398,"Y":575},{"Bonus":0,"Continent":"K35","ID":15716,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15716","ServerKey":"pl181","X":523,"Y":367},{"Bonus":0,"Continent":"K54","ID":15717,"Name":"0000027%","PlayerID":849089881,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15717","ServerKey":"pl181","X":420,"Y":596},{"Bonus":0,"Continent":"K46","ID":15718,"Name":"078. Vakar","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15718","ServerKey":"pl181","X":626,"Y":478},{"Bonus":0,"Continent":"K64","ID":15719,"Name":"#064","PlayerID":699605333,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15719","ServerKey":"pl181","X":476,"Y":620},{"Bonus":0,"Continent":"K35","ID":15720,"Name":"R-6","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15720","ServerKey":"pl181","X":550,"Y":384},{"Bonus":0,"Continent":"K56","ID":15721,"Name":"W.181/13","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15721","ServerKey":"pl181","X":620,"Y":527},{"Bonus":0,"Continent":"K44","ID":15722,"Name":"0028","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15722","ServerKey":"pl181","X":420,"Y":403},{"Bonus":0,"Continent":"K46","ID":15723,"Name":"A032","PlayerID":699722599,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15723","ServerKey":"pl181","X":614,"Y":453},{"Bonus":8,"Continent":"K46","ID":15724,"Name":"wioska12","PlayerID":848935020,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15724","ServerKey":"pl181","X":625,"Y":473},{"Bonus":0,"Continent":"K43","ID":15725,"Name":"Czarny","PlayerID":699265922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15725","ServerKey":"pl181","X":380,"Y":494},{"Bonus":0,"Continent":"K34","ID":15726,"Name":"VN Tomyris","PlayerID":699883079,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15726","ServerKey":"pl181","X":466,"Y":379},{"Bonus":0,"Continent":"K55","ID":15727,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15727","ServerKey":"pl181","X":589,"Y":584},{"Bonus":4,"Continent":"K43","ID":15728,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15728","ServerKey":"pl181","X":388,"Y":443},{"Bonus":0,"Continent":"K43","ID":15729,"Name":"A0124","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15729","ServerKey":"pl181","X":375,"Y":489},{"Bonus":0,"Continent":"K54","ID":15730,"Name":"027 - Birmingham","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15730","ServerKey":"pl181","X":405,"Y":580},{"Bonus":0,"Continent":"K65","ID":15731,"Name":"CALL 922","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15731","ServerKey":"pl181","X":556,"Y":615},{"Bonus":0,"Continent":"K45","ID":15732,"Name":"Belvedere 020","PlayerID":699756210,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15732","ServerKey":"pl181","X":588,"Y":408},{"Bonus":0,"Continent":"K64","ID":15733,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15733","ServerKey":"pl181","X":436,"Y":610},{"Bonus":0,"Continent":"K56","ID":15734,"Name":"Gryfios 013","PlayerID":698666810,"Points":11805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15734","ServerKey":"pl181","X":616,"Y":543},{"Bonus":0,"Continent":"K65","ID":15735,"Name":"Wioska ValiossQ","PlayerID":699567608,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15735","ServerKey":"pl181","X":558,"Y":612},{"Bonus":0,"Continent":"K46","ID":15736,"Name":"A014","PlayerID":699722599,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15736","ServerKey":"pl181","X":612,"Y":447},{"Bonus":0,"Continent":"K56","ID":15737,"Name":"*042*","PlayerID":698670524,"Points":3351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15737","ServerKey":"pl181","X":625,"Y":501},{"Bonus":0,"Continent":"K43","ID":15738,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15738","ServerKey":"pl181","X":387,"Y":442},{"Bonus":0,"Continent":"K45","ID":15739,"Name":"Wioska barbarzyƄska 014|","PlayerID":6343784,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15739","ServerKey":"pl181","X":581,"Y":404},{"Bonus":0,"Continent":"K55","ID":15740,"Name":"0029","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15740","ServerKey":"pl181","X":537,"Y":517},{"Bonus":0,"Continent":"K53","ID":15741,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15741","ServerKey":"pl181","X":373,"Y":516},{"Bonus":0,"Continent":"K54","ID":15742,"Name":"069 - Wojenka","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15742","ServerKey":"pl181","X":420,"Y":583},{"Bonus":0,"Continent":"K34","ID":15743,"Name":".028.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15743","ServerKey":"pl181","X":486,"Y":373},{"Bonus":0,"Continent":"K43","ID":15744,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15744","ServerKey":"pl181","X":384,"Y":447},{"Bonus":0,"Continent":"K65","ID":15745,"Name":"Teby_29","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15745","ServerKey":"pl181","X":505,"Y":625},{"Bonus":0,"Continent":"K55","ID":15746,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15746","ServerKey":"pl181","X":577,"Y":598},{"Bonus":0,"Continent":"K53","ID":15747,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15747","ServerKey":"pl181","X":379,"Y":528},{"Bonus":0,"Continent":"K46","ID":15748,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15748","ServerKey":"pl181","X":608,"Y":434},{"Bonus":0,"Continent":"K35","ID":15749,"Name":"Part XXXI","PlayerID":698350371,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15749","ServerKey":"pl181","X":533,"Y":379},{"Bonus":0,"Continent":"K46","ID":15750,"Name":"*024*","PlayerID":698670524,"Points":8108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15750","ServerKey":"pl181","X":625,"Y":481},{"Bonus":0,"Continent":"K43","ID":15751,"Name":"Avanti!","PlayerID":698625834,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15751","ServerKey":"pl181","X":375,"Y":488},{"Bonus":0,"Continent":"K43","ID":15752,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15752","ServerKey":"pl181","X":399,"Y":463},{"Bonus":0,"Continent":"K56","ID":15753,"Name":"Nowa 04","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15753","ServerKey":"pl181","X":612,"Y":557},{"Bonus":0,"Continent":"K56","ID":15754,"Name":"Ciapkowo","PlayerID":699795378,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15754","ServerKey":"pl181","X":623,"Y":502},{"Bonus":0,"Continent":"K56","ID":15755,"Name":"014.","PlayerID":6520732,"Points":9573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15755","ServerKey":"pl181","X":624,"Y":522},{"Bonus":0,"Continent":"K35","ID":15756,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15756","ServerKey":"pl181","X":521,"Y":379},{"Bonus":0,"Continent":"K56","ID":15757,"Name":"Mut4ntMass","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15757","ServerKey":"pl181","X":623,"Y":517},{"Bonus":0,"Continent":"K44","ID":15758,"Name":"009","PlayerID":699788305,"Points":7846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15758","ServerKey":"pl181","X":401,"Y":420},{"Bonus":0,"Continent":"K43","ID":15759,"Name":"A0245","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15759","ServerKey":"pl181","X":377,"Y":493},{"Bonus":0,"Continent":"K35","ID":15760,"Name":"MasterWolf12","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15760","ServerKey":"pl181","X":556,"Y":391},{"Bonus":0,"Continent":"K35","ID":15761,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15761","ServerKey":"pl181","X":520,"Y":374},{"Bonus":4,"Continent":"K44","ID":15762,"Name":"TRR 005","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15762","ServerKey":"pl181","X":411,"Y":414},{"Bonus":0,"Continent":"K53","ID":15763,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15763","ServerKey":"pl181","X":383,"Y":541},{"Bonus":8,"Continent":"K53","ID":15764,"Name":"004 Wolni farmerzy","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15764","ServerKey":"pl181","X":387,"Y":560},{"Bonus":0,"Continent":"K55","ID":15765,"Name":"Wioska 008","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15765","ServerKey":"pl181","X":595,"Y":583},{"Bonus":0,"Continent":"K64","ID":15766,"Name":"#018 A","PlayerID":9037756,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15766","ServerKey":"pl181","X":461,"Y":615},{"Bonus":0,"Continent":"K46","ID":15767,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15767","ServerKey":"pl181","X":611,"Y":441},{"Bonus":0,"Continent":"K56","ID":15768,"Name":"SiƂa, Masa, RzeĆșba 04","PlayerID":699379895,"Points":10578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15768","ServerKey":"pl181","X":625,"Y":515},{"Bonus":0,"Continent":"K35","ID":15769,"Name":"034","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15769","ServerKey":"pl181","X":502,"Y":372},{"Bonus":0,"Continent":"K43","ID":15771,"Name":"Mniejsze zƂo 0041","PlayerID":699794765,"Points":9911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15771","ServerKey":"pl181","X":377,"Y":465},{"Bonus":0,"Continent":"K35","ID":15772,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15772","ServerKey":"pl181","X":522,"Y":375},{"Bonus":0,"Continent":"K64","ID":15773,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15773","ServerKey":"pl181","X":429,"Y":603},{"Bonus":0,"Continent":"K44","ID":15774,"Name":"FKG 01-17","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15774","ServerKey":"pl181","X":418,"Y":405},{"Bonus":0,"Continent":"K35","ID":15775,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15775","ServerKey":"pl181","X":522,"Y":377},{"Bonus":0,"Continent":"K64","ID":15776,"Name":"081 - PATO-orki","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15776","ServerKey":"pl181","X":436,"Y":604},{"Bonus":0,"Continent":"K46","ID":15777,"Name":"A030","PlayerID":699722599,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15777","ServerKey":"pl181","X":618,"Y":454},{"Bonus":0,"Continent":"K44","ID":15778,"Name":"010","PlayerID":699788305,"Points":7406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15778","ServerKey":"pl181","X":400,"Y":420},{"Bonus":0,"Continent":"K64","ID":15779,"Name":"006","PlayerID":8925624,"Points":8513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15779","ServerKey":"pl181","X":478,"Y":605},{"Bonus":0,"Continent":"K53","ID":15780,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15780","ServerKey":"pl181","X":381,"Y":544},{"Bonus":0,"Continent":"K44","ID":15781,"Name":"0009","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15781","ServerKey":"pl181","X":421,"Y":403},{"Bonus":0,"Continent":"K65","ID":15782,"Name":"Piękny ƛwiat*.*","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15782","ServerKey":"pl181","X":566,"Y":604},{"Bonus":0,"Continent":"K35","ID":15783,"Name":"Diablooo","PlayerID":3600737,"Points":9070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15783","ServerKey":"pl181","X":561,"Y":387},{"Bonus":0,"Continent":"K56","ID":15784,"Name":"008.Baltoro Sangri","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15784","ServerKey":"pl181","X":603,"Y":569},{"Bonus":0,"Continent":"K43","ID":15785,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15785","ServerKey":"pl181","X":369,"Y":455},{"Bonus":0,"Continent":"K34","ID":15786,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15786","ServerKey":"pl181","X":460,"Y":381},{"Bonus":0,"Continent":"K45","ID":15787,"Name":"Wioska barbarzyƄska 015|","PlayerID":6343784,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15787","ServerKey":"pl181","X":576,"Y":400},{"Bonus":0,"Continent":"K56","ID":15788,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15788","ServerKey":"pl181","X":611,"Y":559},{"Bonus":0,"Continent":"K34","ID":15789,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15789","ServerKey":"pl181","X":478,"Y":379},{"Bonus":0,"Continent":"K64","ID":15790,"Name":"#014","PlayerID":849001572,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15790","ServerKey":"pl181","X":485,"Y":607},{"Bonus":0,"Continent":"K64","ID":15791,"Name":"scoti","PlayerID":699494488,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15791","ServerKey":"pl181","X":494,"Y":622},{"Bonus":0,"Continent":"K44","ID":15792,"Name":"+44 84 Grezieu la Varenne","PlayerID":698361257,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15792","ServerKey":"pl181","X":449,"Y":485},{"Bonus":0,"Continent":"K55","ID":15793,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15793","ServerKey":"pl181","X":599,"Y":575},{"Bonus":0,"Continent":"K65","ID":15794,"Name":"008","PlayerID":699567608,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15794","ServerKey":"pl181","X":559,"Y":613},{"Bonus":0,"Continent":"K44","ID":15795,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15795","ServerKey":"pl181","X":405,"Y":420},{"Bonus":0,"Continent":"K46","ID":15796,"Name":"030.","PlayerID":8900955,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15796","ServerKey":"pl181","X":616,"Y":479},{"Bonus":0,"Continent":"K53","ID":15797,"Name":"028. Rewir II","PlayerID":9167250,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15797","ServerKey":"pl181","X":398,"Y":569},{"Bonus":0,"Continent":"K46","ID":15798,"Name":"034 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15798","ServerKey":"pl181","X":623,"Y":467},{"Bonus":0,"Continent":"K44","ID":15799,"Name":"Szulernia","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15799","ServerKey":"pl181","X":408,"Y":409},{"Bonus":0,"Continent":"K34","ID":15800,"Name":".007.","PlayerID":698489071,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15800","ServerKey":"pl181","X":496,"Y":377},{"Bonus":0,"Continent":"K35","ID":15801,"Name":"Taran","PlayerID":699170684,"Points":7334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15801","ServerKey":"pl181","X":547,"Y":383},{"Bonus":0,"Continent":"K43","ID":15802,"Name":"Avanti!","PlayerID":698625834,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15802","ServerKey":"pl181","X":377,"Y":478},{"Bonus":0,"Continent":"K53","ID":15803,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15803","ServerKey":"pl181","X":394,"Y":504},{"Bonus":0,"Continent":"K65","ID":15804,"Name":"#0006 Iwagakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15804","ServerKey":"pl181","X":530,"Y":620},{"Bonus":0,"Continent":"K65","ID":15806,"Name":"#0002 Kirigakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15806","ServerKey":"pl181","X":527,"Y":621},{"Bonus":4,"Continent":"K56","ID":15807,"Name":"Osada koczownikĂłw","PlayerID":17714,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15807","ServerKey":"pl181","X":603,"Y":571},{"Bonus":0,"Continent":"K44","ID":15808,"Name":"-036-","PlayerID":9291984,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15808","ServerKey":"pl181","X":460,"Y":424},{"Bonus":0,"Continent":"K44","ID":15809,"Name":"FKG 01-27","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15809","ServerKey":"pl181","X":413,"Y":406},{"Bonus":0,"Continent":"K65","ID":15810,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15810","ServerKey":"pl181","X":540,"Y":620},{"Bonus":0,"Continent":"K43","ID":15811,"Name":"Tank 001. Szykullo","PlayerID":698290577,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15811","ServerKey":"pl181","X":398,"Y":499},{"Bonus":0,"Continent":"K34","ID":15812,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15812","ServerKey":"pl181","X":439,"Y":392},{"Bonus":0,"Continent":"K53","ID":15813,"Name":"Amnesia","PlayerID":9167250,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15813","ServerKey":"pl181","X":397,"Y":569},{"Bonus":0,"Continent":"K53","ID":15814,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15814","ServerKey":"pl181","X":378,"Y":519},{"Bonus":7,"Continent":"K65","ID":15815,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15815","ServerKey":"pl181","X":516,"Y":626},{"Bonus":0,"Continent":"K34","ID":15816,"Name":"VN Centurion","PlayerID":699883079,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15816","ServerKey":"pl181","X":453,"Y":384},{"Bonus":0,"Continent":"K44","ID":15817,"Name":"Wioska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15817","ServerKey":"pl181","X":403,"Y":423},{"Bonus":0,"Continent":"K43","ID":15818,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15818","ServerKey":"pl181","X":384,"Y":449},{"Bonus":0,"Continent":"K43","ID":15819,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15819","ServerKey":"pl181","X":394,"Y":433},{"Bonus":0,"Continent":"K45","ID":15820,"Name":"Gattacka","PlayerID":699298370,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15820","ServerKey":"pl181","X":599,"Y":424},{"Bonus":0,"Continent":"K53","ID":15821,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15821","ServerKey":"pl181","X":382,"Y":535},{"Bonus":3,"Continent":"K56","ID":15822,"Name":"=012= Lecz GraĆŒyna zobaczyƂa","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15822","ServerKey":"pl181","X":612,"Y":553},{"Bonus":0,"Continent":"K35","ID":15823,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15823","ServerKey":"pl181","X":524,"Y":376},{"Bonus":0,"Continent":"K43","ID":15824,"Name":"A0011","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15824","ServerKey":"pl181","X":379,"Y":467},{"Bonus":0,"Continent":"K56","ID":15825,"Name":"[002]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15825","ServerKey":"pl181","X":619,"Y":543},{"Bonus":0,"Continent":"K34","ID":15826,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15826","ServerKey":"pl181","X":425,"Y":399},{"Bonus":0,"Continent":"K43","ID":15827,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15827","ServerKey":"pl181","X":377,"Y":483},{"Bonus":0,"Continent":"K46","ID":15828,"Name":"A015","PlayerID":699722599,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15828","ServerKey":"pl181","X":613,"Y":446},{"Bonus":0,"Continent":"K65","ID":15830,"Name":"Teby_24","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15830","ServerKey":"pl181","X":503,"Y":624},{"Bonus":0,"Continent":"K43","ID":15831,"Name":"A0029","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15831","ServerKey":"pl181","X":379,"Y":473},{"Bonus":0,"Continent":"K34","ID":15832,"Name":"023","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15832","ServerKey":"pl181","X":483,"Y":377},{"Bonus":0,"Continent":"K43","ID":15833,"Name":"SsSs","PlayerID":1536625,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15833","ServerKey":"pl181","X":399,"Y":498},{"Bonus":0,"Continent":"K35","ID":15834,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15834","ServerKey":"pl181","X":556,"Y":386},{"Bonus":0,"Continent":"K53","ID":15835,"Name":"Buk","PlayerID":699265922,"Points":8570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15835","ServerKey":"pl181","X":372,"Y":513},{"Bonus":0,"Continent":"K54","ID":15836,"Name":"0025 XXARDASS","PlayerID":9060641,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15836","ServerKey":"pl181","X":427,"Y":599},{"Bonus":5,"Continent":"K34","ID":15837,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15837","ServerKey":"pl181","X":438,"Y":391},{"Bonus":0,"Continent":"K35","ID":15838,"Name":"Konfederacjan (LXIX) GieƂdanu","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15838","ServerKey":"pl181","X":522,"Y":370},{"Bonus":0,"Continent":"K56","ID":15839,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15839","ServerKey":"pl181","X":613,"Y":558},{"Bonus":0,"Continent":"K35","ID":15840,"Name":"186","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15840","ServerKey":"pl181","X":576,"Y":398},{"Bonus":0,"Continent":"K35","ID":15841,"Name":"Defensywa IV","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15841","ServerKey":"pl181","X":575,"Y":396},{"Bonus":0,"Continent":"K55","ID":15842,"Name":"Winter is coming","PlayerID":699364813,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15842","ServerKey":"pl181","X":503,"Y":578},{"Bonus":0,"Continent":"K44","ID":15843,"Name":"krzysiek1293","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15843","ServerKey":"pl181","X":412,"Y":427},{"Bonus":0,"Continent":"K46","ID":15844,"Name":"023. Lugdunum","PlayerID":849091866,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15844","ServerKey":"pl181","X":616,"Y":463},{"Bonus":0,"Continent":"K53","ID":15845,"Name":"026","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15845","ServerKey":"pl181","X":379,"Y":532},{"Bonus":0,"Continent":"K64","ID":15846,"Name":"003","PlayerID":699859013,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15846","ServerKey":"pl181","X":452,"Y":619},{"Bonus":0,"Continent":"K56","ID":15847,"Name":"003.Annapurna","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15847","ServerKey":"pl181","X":605,"Y":569},{"Bonus":0,"Continent":"K43","ID":15848,"Name":"Mniejsze zƂo 0005","PlayerID":699794765,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15848","ServerKey":"pl181","X":375,"Y":484},{"Bonus":0,"Continent":"K34","ID":15849,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15849","ServerKey":"pl181","X":492,"Y":375},{"Bonus":0,"Continent":"K54","ID":15850,"Name":"Skarbonka (cado)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15850","ServerKey":"pl181","X":416,"Y":591},{"Bonus":0,"Continent":"K43","ID":15851,"Name":"Avanti!","PlayerID":698625834,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15851","ServerKey":"pl181","X":375,"Y":486},{"Bonus":0,"Continent":"K46","ID":15852,"Name":"*0014 Baraki","PlayerID":8459255,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15852","ServerKey":"pl181","X":604,"Y":430},{"Bonus":0,"Continent":"K34","ID":15853,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15853","ServerKey":"pl181","X":436,"Y":395},{"Bonus":0,"Continent":"K45","ID":15854,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15854","ServerKey":"pl181","X":517,"Y":499},{"Bonus":0,"Continent":"K56","ID":15855,"Name":"002.Avicenny","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15855","ServerKey":"pl181","X":604,"Y":573},{"Bonus":0,"Continent":"K64","ID":15856,"Name":"026.xxx","PlayerID":698143931,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15856","ServerKey":"pl181","X":449,"Y":615},{"Bonus":0,"Continent":"K53","ID":15857,"Name":"002b d","PlayerID":9167250,"Points":8938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15857","ServerKey":"pl181","X":394,"Y":569},{"Bonus":0,"Continent":"K34","ID":15858,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15858","ServerKey":"pl181","X":429,"Y":399},{"Bonus":0,"Continent":"K43","ID":15859,"Name":"Kraal","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15859","ServerKey":"pl181","X":377,"Y":498},{"Bonus":0,"Continent":"K46","ID":15860,"Name":"050 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15860","ServerKey":"pl181","X":622,"Y":478},{"Bonus":0,"Continent":"K65","ID":15861,"Name":"#0022","PlayerID":699728159,"Points":7396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15861","ServerKey":"pl181","X":519,"Y":626},{"Bonus":0,"Continent":"K55","ID":15862,"Name":"Wioska 003","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15862","ServerKey":"pl181","X":594,"Y":581},{"Bonus":0,"Continent":"K54","ID":15863,"Name":"0013 BBBB","PlayerID":9060641,"Points":10539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15863","ServerKey":"pl181","X":425,"Y":597},{"Bonus":0,"Continent":"K56","ID":15864,"Name":"SiƂa, Masa, RzeĆșba 08","PlayerID":699379895,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15864","ServerKey":"pl181","X":622,"Y":516},{"Bonus":0,"Continent":"K44","ID":15865,"Name":"FKG 01-24","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15865","ServerKey":"pl181","X":420,"Y":402},{"Bonus":0,"Continent":"K46","ID":15866,"Name":"010 Wioska","PlayerID":699671454,"Points":6471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15866","ServerKey":"pl181","X":625,"Y":472},{"Bonus":0,"Continent":"K64","ID":15867,"Name":"#023 A","PlayerID":9037756,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15867","ServerKey":"pl181","X":457,"Y":615},{"Bonus":0,"Continent":"K45","ID":15868,"Name":"147 MIKOX 021","PlayerID":699491076,"Points":7694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15868","ServerKey":"pl181","X":591,"Y":411},{"Bonus":0,"Continent":"K35","ID":15869,"Name":"001 Wioska DonSzwagreone","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15869","ServerKey":"pl181","X":528,"Y":379},{"Bonus":0,"Continent":"K65","ID":15870,"Name":"0016","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15870","ServerKey":"pl181","X":556,"Y":610},{"Bonus":0,"Continent":"K53","ID":15871,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15871","ServerKey":"pl181","X":377,"Y":535},{"Bonus":4,"Continent":"K53","ID":15872,"Name":"012 Ile typa many","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15872","ServerKey":"pl181","X":390,"Y":563},{"Bonus":0,"Continent":"K53","ID":15873,"Name":"030","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15873","ServerKey":"pl181","X":381,"Y":530},{"Bonus":0,"Continent":"K56","ID":15874,"Name":"Deka","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15874","ServerKey":"pl181","X":627,"Y":500},{"Bonus":0,"Continent":"K65","ID":15875,"Name":"To co masz Ty","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15875","ServerKey":"pl181","X":572,"Y":603},{"Bonus":0,"Continent":"K35","ID":15876,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15876","ServerKey":"pl181","X":519,"Y":376},{"Bonus":0,"Continent":"K46","ID":15877,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15877","ServerKey":"pl181","X":606,"Y":435},{"Bonus":0,"Continent":"K35","ID":15878,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15878","ServerKey":"pl181","X":519,"Y":383},{"Bonus":0,"Continent":"K35","ID":15879,"Name":"Part XXIV","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15879","ServerKey":"pl181","X":537,"Y":377},{"Bonus":0,"Continent":"K35","ID":15880,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15880","ServerKey":"pl181","X":527,"Y":373},{"Bonus":0,"Continent":"K34","ID":15881,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15881","ServerKey":"pl181","X":422,"Y":398},{"Bonus":0,"Continent":"K65","ID":15882,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15882","ServerKey":"pl181","X":527,"Y":625},{"Bonus":0,"Continent":"K34","ID":15883,"Name":"VN Wu Zetian","PlayerID":699883079,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15883","ServerKey":"pl181","X":468,"Y":377},{"Bonus":0,"Continent":"K54","ID":15884,"Name":"013 - melina","PlayerID":225023,"Points":9110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15884","ServerKey":"pl181","X":416,"Y":592},{"Bonus":0,"Continent":"K65","ID":15885,"Name":"HORUS...","PlayerID":7756002,"Points":9939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15885","ServerKey":"pl181","X":516,"Y":624},{"Bonus":0,"Continent":"K56","ID":15886,"Name":"009","PlayerID":8428196,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15886","ServerKey":"pl181","X":619,"Y":544},{"Bonus":0,"Continent":"K45","ID":15887,"Name":"Defensywa I","PlayerID":698350371,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15887","ServerKey":"pl181","X":576,"Y":402},{"Bonus":0,"Continent":"K64","ID":15889,"Name":"043 OZDR","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15889","ServerKey":"pl181","X":463,"Y":623},{"Bonus":0,"Continent":"K65","ID":15890,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15890","ServerKey":"pl181","X":533,"Y":624},{"Bonus":0,"Continent":"K43","ID":15891,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15891","ServerKey":"pl181","X":390,"Y":442},{"Bonus":0,"Continent":"K46","ID":15892,"Name":"005","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15892","ServerKey":"pl181","X":615,"Y":451},{"Bonus":0,"Continent":"K43","ID":15893,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15893","ServerKey":"pl181","X":381,"Y":464},{"Bonus":0,"Continent":"K65","ID":15894,"Name":"0432","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15894","ServerKey":"pl181","X":543,"Y":619},{"Bonus":0,"Continent":"K54","ID":15895,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15895","ServerKey":"pl181","X":409,"Y":590},{"Bonus":0,"Continent":"K43","ID":15896,"Name":"Westcoast.011","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15896","ServerKey":"pl181","X":392,"Y":435},{"Bonus":0,"Continent":"K65","ID":15897,"Name":"#0008 Kusagakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15897","ServerKey":"pl181","X":530,"Y":621},{"Bonus":0,"Continent":"K56","ID":15898,"Name":"W.181/18","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15898","ServerKey":"pl181","X":622,"Y":528},{"Bonus":0,"Continent":"K64","ID":15899,"Name":"xDD","PlayerID":699280514,"Points":6674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15899","ServerKey":"pl181","X":439,"Y":608},{"Bonus":5,"Continent":"K53","ID":15900,"Name":"Berlin","PlayerID":9167250,"Points":9227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15900","ServerKey":"pl181","X":397,"Y":574},{"Bonus":0,"Continent":"K45","ID":15901,"Name":"032","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15901","ServerKey":"pl181","X":585,"Y":411},{"Bonus":0,"Continent":"K35","ID":15902,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15902","ServerKey":"pl181","X":531,"Y":376},{"Bonus":0,"Continent":"K55","ID":15903,"Name":"E 007","PlayerID":8078914,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15903","ServerKey":"pl181","X":590,"Y":591},{"Bonus":0,"Continent":"K45","ID":15904,"Name":"100 Wioska barbarzyƄska","PlayerID":699491076,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15904","ServerKey":"pl181","X":597,"Y":419},{"Bonus":0,"Continent":"K35","ID":15905,"Name":"XXXVI","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15905","ServerKey":"pl181","X":538,"Y":377},{"Bonus":0,"Continent":"K34","ID":15906,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15906","ServerKey":"pl181","X":473,"Y":380},{"Bonus":0,"Continent":"K35","ID":15907,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15907","ServerKey":"pl181","X":529,"Y":376},{"Bonus":0,"Continent":"K35","ID":15908,"Name":"C003","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15908","ServerKey":"pl181","X":574,"Y":399},{"Bonus":0,"Continent":"K64","ID":15909,"Name":"015. Winter is coming","PlayerID":848883684,"Points":10266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15909","ServerKey":"pl181","X":481,"Y":624},{"Bonus":0,"Continent":"K45","ID":15910,"Name":"002 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15910","ServerKey":"pl181","X":596,"Y":418},{"Bonus":0,"Continent":"K35","ID":15911,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15911","ServerKey":"pl181","X":548,"Y":382},{"Bonus":0,"Continent":"K64","ID":15912,"Name":"027.","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15912","ServerKey":"pl181","X":491,"Y":628},{"Bonus":0,"Continent":"K53","ID":15913,"Name":"SƂawno","PlayerID":698769107,"Points":6657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15913","ServerKey":"pl181","X":388,"Y":552},{"Bonus":0,"Continent":"K35","ID":15914,"Name":"003","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15914","ServerKey":"pl181","X":508,"Y":372},{"Bonus":0,"Continent":"K54","ID":15916,"Name":"0003","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15916","ServerKey":"pl181","X":413,"Y":593},{"Bonus":0,"Continent":"K53","ID":15917,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15917","ServerKey":"pl181","X":376,"Y":500},{"Bonus":0,"Continent":"K56","ID":15918,"Name":"=013= Sporego grzyba...","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15918","ServerKey":"pl181","X":613,"Y":552},{"Bonus":0,"Continent":"K35","ID":15919,"Name":"0009","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15919","ServerKey":"pl181","X":566,"Y":381},{"Bonus":0,"Continent":"K54","ID":15921,"Name":"C Pld 002 Kijow","PlayerID":849084740,"Points":6785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15921","ServerKey":"pl181","X":409,"Y":588},{"Bonus":0,"Continent":"K64","ID":15922,"Name":"Wioska barbarzyƄska","PlayerID":699494488,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15922","ServerKey":"pl181","X":484,"Y":623},{"Bonus":0,"Continent":"K53","ID":15923,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15923","ServerKey":"pl181","X":377,"Y":517},{"Bonus":0,"Continent":"K54","ID":15924,"Name":"Sparta_09","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15924","ServerKey":"pl181","X":497,"Y":598},{"Bonus":0,"Continent":"K44","ID":15925,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15925","ServerKey":"pl181","X":405,"Y":422},{"Bonus":0,"Continent":"K46","ID":15926,"Name":"#019.496|503","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15926","ServerKey":"pl181","X":615,"Y":454},{"Bonus":0,"Continent":"K65","ID":15927,"Name":"045","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15927","ServerKey":"pl181","X":543,"Y":618},{"Bonus":0,"Continent":"K46","ID":15928,"Name":"#002.490|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15928","ServerKey":"pl181","X":609,"Y":447},{"Bonus":0,"Continent":"K64","ID":15929,"Name":"014","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15929","ServerKey":"pl181","X":476,"Y":625},{"Bonus":0,"Continent":"K64","ID":15930,"Name":"017.","PlayerID":699494488,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15930","ServerKey":"pl181","X":487,"Y":626},{"Bonus":0,"Continent":"K46","ID":15931,"Name":"Jehu_Kingdom_34_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15931","ServerKey":"pl181","X":618,"Y":452},{"Bonus":0,"Continent":"K46","ID":15932,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15932","ServerKey":"pl181","X":614,"Y":455},{"Bonus":0,"Continent":"K54","ID":15933,"Name":"Pobozowisko","PlayerID":699513260,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15933","ServerKey":"pl181","X":413,"Y":587},{"Bonus":0,"Continent":"K43","ID":15934,"Name":"003","PlayerID":3698627,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15934","ServerKey":"pl181","X":381,"Y":465},{"Bonus":0,"Continent":"K65","ID":15935,"Name":"Hojo s Laboratory Main Level","PlayerID":8199417,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15935","ServerKey":"pl181","X":521,"Y":623},{"Bonus":0,"Continent":"K56","ID":15936,"Name":"Bocianikson011","PlayerID":7528491,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15936","ServerKey":"pl181","X":621,"Y":543},{"Bonus":5,"Continent":"K56","ID":15937,"Name":"005.","PlayerID":6520732,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15937","ServerKey":"pl181","X":614,"Y":547},{"Bonus":0,"Continent":"K34","ID":15939,"Name":"025","PlayerID":699783765,"Points":10718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15939","ServerKey":"pl181","X":429,"Y":395},{"Bonus":0,"Continent":"K46","ID":15940,"Name":"034","PlayerID":849006412,"Points":6795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15940","ServerKey":"pl181","X":627,"Y":485},{"Bonus":0,"Continent":"K64","ID":15941,"Name":"Momito","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15941","ServerKey":"pl181","X":468,"Y":623},{"Bonus":0,"Continent":"K44","ID":15942,"Name":"0055 w","PlayerID":3909522,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15942","ServerKey":"pl181","X":443,"Y":426},{"Bonus":0,"Continent":"K34","ID":15943,"Name":"K34 - [020] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15943","ServerKey":"pl181","X":448,"Y":382},{"Bonus":0,"Continent":"K56","ID":15944,"Name":"Stadio Olimpico","PlayerID":699795378,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15944","ServerKey":"pl181","X":625,"Y":516},{"Bonus":0,"Continent":"K56","ID":15945,"Name":"Wioska","PlayerID":17714,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15945","ServerKey":"pl181","X":606,"Y":569},{"Bonus":0,"Continent":"K64","ID":15946,"Name":"#031","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15946","ServerKey":"pl181","X":468,"Y":619},{"Bonus":0,"Continent":"K65","ID":15947,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15947","ServerKey":"pl181","X":530,"Y":622},{"Bonus":0,"Continent":"K45","ID":15948,"Name":"06 im Jegorowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15948","ServerKey":"pl181","X":584,"Y":405},{"Bonus":0,"Continent":"K55","ID":15949,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15949","ServerKey":"pl181","X":593,"Y":586},{"Bonus":3,"Continent":"K43","ID":15950,"Name":"karas","PlayerID":699265922,"Points":8900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15950","ServerKey":"pl181","X":376,"Y":492},{"Bonus":0,"Continent":"K46","ID":15951,"Name":"Wioska (024)","PlayerID":698232227,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15951","ServerKey":"pl181","X":622,"Y":473},{"Bonus":0,"Continent":"K45","ID":15952,"Name":"144 MIKOX 015","PlayerID":699491076,"Points":9209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15952","ServerKey":"pl181","X":589,"Y":410},{"Bonus":0,"Continent":"K43","ID":15953,"Name":"x001","PlayerID":698290577,"Points":7165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15953","ServerKey":"pl181","X":398,"Y":496},{"Bonus":5,"Continent":"K43","ID":15954,"Name":"Liana","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15954","ServerKey":"pl181","X":372,"Y":495},{"Bonus":0,"Continent":"K43","ID":15955,"Name":"A0125","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15955","ServerKey":"pl181","X":372,"Y":491},{"Bonus":0,"Continent":"K64","ID":15956,"Name":"0062","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15956","ServerKey":"pl181","X":457,"Y":619},{"Bonus":0,"Continent":"K43","ID":15957,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15957","ServerKey":"pl181","X":376,"Y":465},{"Bonus":0,"Continent":"K55","ID":15958,"Name":"Wioska 005","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15958","ServerKey":"pl181","X":595,"Y":579},{"Bonus":0,"Continent":"K34","ID":15959,"Name":"SoƂtys Twojej wsi","PlayerID":849027025,"Points":9481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15959","ServerKey":"pl181","X":435,"Y":389},{"Bonus":9,"Continent":"K44","ID":15960,"Name":"A-005","PlayerID":8419570,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15960","ServerKey":"pl181","X":417,"Y":408},{"Bonus":0,"Continent":"K54","ID":15961,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15961","ServerKey":"pl181","X":412,"Y":590},{"Bonus":0,"Continent":"K34","ID":15962,"Name":"VN Seondeok","PlayerID":699883079,"Points":9636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15962","ServerKey":"pl181","X":470,"Y":376},{"Bonus":0,"Continent":"K55","ID":15963,"Name":"DOOSAN PUMA 2100LMS","PlayerID":699698253,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15963","ServerKey":"pl181","X":530,"Y":568},{"Bonus":0,"Continent":"K34","ID":15964,"Name":"Yyy","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15964","ServerKey":"pl181","X":497,"Y":373},{"Bonus":6,"Continent":"K45","ID":15965,"Name":"A READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15965","ServerKey":"pl181","X":593,"Y":414},{"Bonus":0,"Continent":"K53","ID":15966,"Name":"040 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15966","ServerKey":"pl181","X":388,"Y":557},{"Bonus":0,"Continent":"K64","ID":15967,"Name":"014. Wraca","PlayerID":699494488,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15967","ServerKey":"pl181","X":487,"Y":617},{"Bonus":0,"Continent":"K43","ID":15968,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15968","ServerKey":"pl181","X":380,"Y":461},{"Bonus":0,"Continent":"K46","ID":15969,"Name":"Jaaa","PlayerID":698635863,"Points":10543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15969","ServerKey":"pl181","X":608,"Y":436},{"Bonus":0,"Continent":"K46","ID":15970,"Name":"Piwna 01","PlayerID":699812007,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15970","ServerKey":"pl181","X":613,"Y":435},{"Bonus":0,"Continent":"K35","ID":15971,"Name":"035","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15971","ServerKey":"pl181","X":503,"Y":372},{"Bonus":0,"Continent":"K43","ID":15972,"Name":"Mniejsze zƂo 0080","PlayerID":699794765,"Points":7207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15972","ServerKey":"pl181","X":377,"Y":462},{"Bonus":0,"Continent":"K35","ID":15973,"Name":"007 GrĂłjec","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15973","ServerKey":"pl181","X":549,"Y":388},{"Bonus":0,"Continent":"K64","ID":15975,"Name":"EKG 022 WZ","PlayerID":33900,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15975","ServerKey":"pl181","X":496,"Y":625},{"Bonus":0,"Continent":"K54","ID":15976,"Name":"Vileda","PlayerID":1804724,"Points":10190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15976","ServerKey":"pl181","X":402,"Y":524},{"Bonus":0,"Continent":"K54","ID":15977,"Name":"A.003","PlayerID":849088243,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15977","ServerKey":"pl181","X":408,"Y":587},{"Bonus":0,"Continent":"K46","ID":15978,"Name":"A003","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15978","ServerKey":"pl181","X":614,"Y":445},{"Bonus":0,"Continent":"K35","ID":15979,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15979","ServerKey":"pl181","X":507,"Y":375},{"Bonus":0,"Continent":"K46","ID":15980,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15980","ServerKey":"pl181","X":621,"Y":457},{"Bonus":0,"Continent":"K43","ID":15981,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15981","ServerKey":"pl181","X":381,"Y":452},{"Bonus":0,"Continent":"K65","ID":15982,"Name":"Teby_25","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15982","ServerKey":"pl181","X":505,"Y":623},{"Bonus":0,"Continent":"K43","ID":15984,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15984","ServerKey":"pl181","X":379,"Y":465},{"Bonus":0,"Continent":"K46","ID":15985,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15985","ServerKey":"pl181","X":620,"Y":458},{"Bonus":0,"Continent":"K46","ID":15986,"Name":"021","PlayerID":849006412,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15986","ServerKey":"pl181","X":625,"Y":494},{"Bonus":0,"Continent":"K46","ID":15987,"Name":"D03","PlayerID":849093742,"Points":10036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15987","ServerKey":"pl181","X":622,"Y":468},{"Bonus":0,"Continent":"K46","ID":15988,"Name":"*047*","PlayerID":698670524,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15988","ServerKey":"pl181","X":629,"Y":495},{"Bonus":0,"Continent":"K56","ID":15989,"Name":"006","PlayerID":8428196,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15989","ServerKey":"pl181","X":618,"Y":547},{"Bonus":3,"Continent":"K64","ID":15990,"Name":"008. Angmar","PlayerID":699494488,"Points":10271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15990","ServerKey":"pl181","X":492,"Y":627},{"Bonus":0,"Continent":"K35","ID":15991,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15991","ServerKey":"pl181","X":521,"Y":378},{"Bonus":0,"Continent":"K65","ID":15992,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15992","ServerKey":"pl181","X":530,"Y":624},{"Bonus":0,"Continent":"K43","ID":15993,"Name":"Westcoast.069","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15993","ServerKey":"pl181","X":394,"Y":429},{"Bonus":0,"Continent":"K44","ID":15994,"Name":"008","PlayerID":699788305,"Points":7729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15994","ServerKey":"pl181","X":401,"Y":422},{"Bonus":0,"Continent":"K64","ID":15995,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15995","ServerKey":"pl181","X":435,"Y":609},{"Bonus":8,"Continent":"K54","ID":15996,"Name":"030 - Londyn","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15996","ServerKey":"pl181","X":406,"Y":581},{"Bonus":0,"Continent":"K44","ID":15997,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15997","ServerKey":"pl181","X":404,"Y":417},{"Bonus":0,"Continent":"K64","ID":15998,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15998","ServerKey":"pl181","X":428,"Y":605},{"Bonus":0,"Continent":"K35","ID":15999,"Name":"012","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=15999","ServerKey":"pl181","X":504,"Y":375},{"Bonus":0,"Continent":"K35","ID":16000,"Name":"Taran","PlayerID":699170684,"Points":9374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16000","ServerKey":"pl181","X":546,"Y":382},{"Bonus":0,"Continent":"K44","ID":16001,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16001","ServerKey":"pl181","X":405,"Y":421},{"Bonus":0,"Continent":"K43","ID":16002,"Name":"Westcoast.017","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16002","ServerKey":"pl181","X":389,"Y":439},{"Bonus":0,"Continent":"K35","ID":16003,"Name":"***9f***","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16003","ServerKey":"pl181","X":553,"Y":388},{"Bonus":0,"Continent":"K44","ID":16004,"Name":"FKG 01-34","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16004","ServerKey":"pl181","X":412,"Y":409},{"Bonus":0,"Continent":"K43","ID":16005,"Name":"Wioska MoonWalk","PlayerID":699523631,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16005","ServerKey":"pl181","X":379,"Y":475},{"Bonus":0,"Continent":"K44","ID":16006,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16006","ServerKey":"pl181","X":403,"Y":418},{"Bonus":0,"Continent":"K46","ID":16007,"Name":"A025","PlayerID":699722599,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16007","ServerKey":"pl181","X":617,"Y":457},{"Bonus":0,"Continent":"K65","ID":16008,"Name":"#0007 Otogakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16008","ServerKey":"pl181","X":531,"Y":620},{"Bonus":0,"Continent":"K35","ID":16009,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16009","ServerKey":"pl181","X":524,"Y":379},{"Bonus":0,"Continent":"K43","ID":16010,"Name":"Westcoast.068","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16010","ServerKey":"pl181","X":389,"Y":434},{"Bonus":0,"Continent":"K56","ID":16011,"Name":"Wioska 028","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16011","ServerKey":"pl181","X":600,"Y":578},{"Bonus":0,"Continent":"K53","ID":16012,"Name":"113 Wioska barbarzyƄska","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16012","ServerKey":"pl181","X":387,"Y":552},{"Bonus":0,"Continent":"K35","ID":16013,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16013","ServerKey":"pl181","X":524,"Y":380},{"Bonus":0,"Continent":"K64","ID":16014,"Name":"042 OZDR","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16014","ServerKey":"pl181","X":465,"Y":624},{"Bonus":0,"Continent":"K54","ID":16015,"Name":"Pobozowisko","PlayerID":699513260,"Points":10172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16015","ServerKey":"pl181","X":406,"Y":587},{"Bonus":0,"Continent":"K55","ID":16016,"Name":"Wioska 006","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16016","ServerKey":"pl181","X":592,"Y":582},{"Bonus":0,"Continent":"K54","ID":16017,"Name":"Pobozowisko","PlayerID":699513260,"Points":10945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16017","ServerKey":"pl181","X":417,"Y":590},{"Bonus":0,"Continent":"K56","ID":16018,"Name":"009.Baintha Brakk","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16018","ServerKey":"pl181","X":605,"Y":567},{"Bonus":0,"Continent":"K35","ID":16019,"Name":"Czekam na VS","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16019","ServerKey":"pl181","X":539,"Y":382},{"Bonus":0,"Continent":"K53","ID":16020,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":6557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16020","ServerKey":"pl181","X":390,"Y":548},{"Bonus":0,"Continent":"K46","ID":16021,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16021","ServerKey":"pl181","X":605,"Y":434},{"Bonus":0,"Continent":"K56","ID":16022,"Name":"001","PlayerID":699139964,"Points":4574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16022","ServerKey":"pl181","X":628,"Y":511},{"Bonus":0,"Continent":"K34","ID":16023,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16023","ServerKey":"pl181","X":479,"Y":375},{"Bonus":0,"Continent":"K46","ID":16024,"Name":"A019","PlayerID":699722599,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16024","ServerKey":"pl181","X":616,"Y":453},{"Bonus":0,"Continent":"K35","ID":16025,"Name":"115 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16025","ServerKey":"pl181","X":531,"Y":380},{"Bonus":0,"Continent":"K43","ID":16026,"Name":"Westcoast.028","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16026","ServerKey":"pl181","X":397,"Y":428},{"Bonus":0,"Continent":"K54","ID":16027,"Name":"A.022","PlayerID":849088243,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16027","ServerKey":"pl181","X":404,"Y":577},{"Bonus":0,"Continent":"K65","ID":16028,"Name":"009.","PlayerID":873575,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16028","ServerKey":"pl181","X":563,"Y":606},{"Bonus":0,"Continent":"K43","ID":16029,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16029","ServerKey":"pl181","X":379,"Y":466},{"Bonus":0,"Continent":"K53","ID":16030,"Name":"BiaƂa Cerkiew","PlayerID":849030226,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16030","ServerKey":"pl181","X":377,"Y":534},{"Bonus":0,"Continent":"K64","ID":16031,"Name":"Lagović","PlayerID":699697558,"Points":4172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16031","ServerKey":"pl181","X":436,"Y":609},{"Bonus":1,"Continent":"K44","ID":16032,"Name":"Osada koczownikĂłw","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16032","ServerKey":"pl181","X":400,"Y":424},{"Bonus":0,"Continent":"K53","ID":16034,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16034","ServerKey":"pl181","X":377,"Y":511},{"Bonus":0,"Continent":"K64","ID":16036,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16036","ServerKey":"pl181","X":445,"Y":612},{"Bonus":0,"Continent":"K34","ID":16037,"Name":"K34 - [058] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16037","ServerKey":"pl181","X":457,"Y":384},{"Bonus":0,"Continent":"K65","ID":16038,"Name":"CALL 929","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16038","ServerKey":"pl181","X":509,"Y":624},{"Bonus":0,"Continent":"K35","ID":16039,"Name":"051","PlayerID":849063849,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16039","ServerKey":"pl181","X":568,"Y":394},{"Bonus":4,"Continent":"K43","ID":16040,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16040","ServerKey":"pl181","X":386,"Y":449},{"Bonus":0,"Continent":"K55","ID":16041,"Name":"E 001","PlayerID":8078914,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16041","ServerKey":"pl181","X":592,"Y":593},{"Bonus":0,"Continent":"K56","ID":16042,"Name":"0053","PlayerID":6510480,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16042","ServerKey":"pl181","X":625,"Y":520},{"Bonus":7,"Continent":"K46","ID":16043,"Name":"*044*","PlayerID":698670524,"Points":4951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16043","ServerKey":"pl181","X":625,"Y":490},{"Bonus":0,"Continent":"K54","ID":16044,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16044","ServerKey":"pl181","X":410,"Y":596},{"Bonus":0,"Continent":"K65","ID":16045,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16045","ServerKey":"pl181","X":533,"Y":623},{"Bonus":0,"Continent":"K65","ID":16046,"Name":"sony911","PlayerID":1415009,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16046","ServerKey":"pl181","X":565,"Y":605},{"Bonus":6,"Continent":"K64","ID":16047,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16047","ServerKey":"pl181","X":438,"Y":611},{"Bonus":0,"Continent":"K53","ID":16048,"Name":"098 Aneta 420","PlayerID":699382126,"Points":7190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16048","ServerKey":"pl181","X":390,"Y":558},{"Bonus":0,"Continent":"K35","ID":16049,"Name":"188","PlayerID":849064752,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16049","ServerKey":"pl181","X":569,"Y":398},{"Bonus":0,"Continent":"K64","ID":16051,"Name":"Karhold","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16051","ServerKey":"pl181","X":481,"Y":623},{"Bonus":0,"Continent":"K44","ID":16052,"Name":"0010","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16052","ServerKey":"pl181","X":422,"Y":403},{"Bonus":0,"Continent":"K35","ID":16053,"Name":"U-03","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16053","ServerKey":"pl181","X":561,"Y":389},{"Bonus":0,"Continent":"K64","ID":16054,"Name":"0047","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16054","ServerKey":"pl181","X":455,"Y":619},{"Bonus":0,"Continent":"K35","ID":16055,"Name":"#0003","PlayerID":7651093,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16055","ServerKey":"pl181","X":516,"Y":373},{"Bonus":0,"Continent":"K44","ID":16056,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16056","ServerKey":"pl181","X":406,"Y":414},{"Bonus":6,"Continent":"K53","ID":16057,"Name":"A0305","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16057","ServerKey":"pl181","X":374,"Y":508},{"Bonus":0,"Continent":"K55","ID":16058,"Name":"Jaaa","PlayerID":698635863,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16058","ServerKey":"pl181","X":593,"Y":584},{"Bonus":0,"Continent":"K54","ID":16059,"Name":"Pobozowisko","PlayerID":699513260,"Points":9266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16059","ServerKey":"pl181","X":400,"Y":581},{"Bonus":0,"Continent":"K53","ID":16060,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16060","ServerKey":"pl181","X":381,"Y":541},{"Bonus":0,"Continent":"K34","ID":16061,"Name":"K34 x012","PlayerID":698364331,"Points":8348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16061","ServerKey":"pl181","X":449,"Y":384},{"Bonus":0,"Continent":"K35","ID":16062,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16062","ServerKey":"pl181","X":530,"Y":375},{"Bonus":0,"Continent":"K43","ID":16063,"Name":"A0079","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16063","ServerKey":"pl181","X":374,"Y":475},{"Bonus":0,"Continent":"K34","ID":16064,"Name":".008.","PlayerID":698489071,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16064","ServerKey":"pl181","X":495,"Y":376},{"Bonus":0,"Continent":"K45","ID":16065,"Name":"148 MIKOX 024","PlayerID":699491076,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16065","ServerKey":"pl181","X":592,"Y":411},{"Bonus":0,"Continent":"K56","ID":16066,"Name":"[005]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16066","ServerKey":"pl181","X":620,"Y":539},{"Bonus":0,"Continent":"K35","ID":16067,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16067","ServerKey":"pl181","X":522,"Y":373},{"Bonus":0,"Continent":"K44","ID":16068,"Name":"FKG 01-14","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16068","ServerKey":"pl181","X":421,"Y":405},{"Bonus":0,"Continent":"K55","ID":16069,"Name":"PYRLANDIA 022 Menager s + 8k","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16069","ServerKey":"pl181","X":565,"Y":587},{"Bonus":0,"Continent":"K45","ID":16070,"Name":"21 im Sierowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16070","ServerKey":"pl181","X":583,"Y":404},{"Bonus":0,"Continent":"K55","ID":16071,"Name":"Wioska 011","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16071","ServerKey":"pl181","X":596,"Y":580},{"Bonus":0,"Continent":"K65","ID":16072,"Name":"004","PlayerID":699567608,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16072","ServerKey":"pl181","X":559,"Y":612},{"Bonus":0,"Continent":"K65","ID":16073,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16073","ServerKey":"pl181","X":510,"Y":626},{"Bonus":0,"Continent":"K34","ID":16074,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16074","ServerKey":"pl181","X":430,"Y":393},{"Bonus":0,"Continent":"K34","ID":16075,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16075","ServerKey":"pl181","X":424,"Y":397},{"Bonus":0,"Continent":"K44","ID":16076,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16076","ServerKey":"pl181","X":426,"Y":400},{"Bonus":0,"Continent":"K56","ID":16077,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16077","ServerKey":"pl181","X":614,"Y":551},{"Bonus":0,"Continent":"K34","ID":16078,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16078","ServerKey":"pl181","X":438,"Y":387},{"Bonus":0,"Continent":"K35","ID":16079,"Name":"007 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16079","ServerKey":"pl181","X":532,"Y":376},{"Bonus":0,"Continent":"K54","ID":16080,"Name":"Pobozowisko","PlayerID":699513260,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16080","ServerKey":"pl181","X":408,"Y":585},{"Bonus":9,"Continent":"K43","ID":16081,"Name":"Sfinks","PlayerID":699265922,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16081","ServerKey":"pl181","X":375,"Y":499},{"Bonus":0,"Continent":"K64","ID":16082,"Name":"EKG 021 Broonx","PlayerID":33900,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16082","ServerKey":"pl181","X":490,"Y":623},{"Bonus":0,"Continent":"K35","ID":16083,"Name":"C 008","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16083","ServerKey":"pl181","X":580,"Y":399},{"Bonus":0,"Continent":"K45","ID":16084,"Name":"Belvedere 008","PlayerID":699756210,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16084","ServerKey":"pl181","X":583,"Y":402},{"Bonus":0,"Continent":"K35","ID":16085,"Name":"104 ***9d*** Porzeczka","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16085","ServerKey":"pl181","X":553,"Y":389},{"Bonus":0,"Continent":"K64","ID":16086,"Name":"016.","PlayerID":699494488,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16086","ServerKey":"pl181","X":488,"Y":626},{"Bonus":0,"Continent":"K53","ID":16087,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16087","ServerKey":"pl181","X":375,"Y":501},{"Bonus":3,"Continent":"K35","ID":16088,"Name":"005","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16088","ServerKey":"pl181","X":510,"Y":373},{"Bonus":0,"Continent":"K53","ID":16089,"Name":"sie jara od nocy do rana","PlayerID":9167250,"Points":6235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16089","ServerKey":"pl181","X":399,"Y":571},{"Bonus":0,"Continent":"K46","ID":16090,"Name":"*0008 Baraki","PlayerID":8459255,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16090","ServerKey":"pl181","X":609,"Y":432},{"Bonus":0,"Continent":"K65","ID":16091,"Name":"#0004 Sunagakure","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16091","ServerKey":"pl181","X":529,"Y":620},{"Bonus":0,"Continent":"K56","ID":16092,"Name":"Bocianikson009","PlayerID":7528491,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16092","ServerKey":"pl181","X":615,"Y":549},{"Bonus":0,"Continent":"K46","ID":16093,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16093","ServerKey":"pl181","X":615,"Y":441},{"Bonus":0,"Continent":"K43","ID":16094,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16094","ServerKey":"pl181","X":395,"Y":435},{"Bonus":0,"Continent":"K65","ID":16096,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16096","ServerKey":"pl181","X":536,"Y":620},{"Bonus":0,"Continent":"K46","ID":16097,"Name":"019 OTWÓRZ RYJ TEEEJ","PlayerID":699272633,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16097","ServerKey":"pl181","X":624,"Y":466},{"Bonus":0,"Continent":"K56","ID":16098,"Name":"Vasperland_022","PlayerID":7047342,"Points":10441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16098","ServerKey":"pl181","X":625,"Y":512},{"Bonus":4,"Continent":"K46","ID":16099,"Name":"Wioska (002)","PlayerID":698232227,"Points":8531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16099","ServerKey":"pl181","X":620,"Y":469},{"Bonus":0,"Continent":"K65","ID":16100,"Name":"020","PlayerID":699878511,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16100","ServerKey":"pl181","X":500,"Y":627},{"Bonus":0,"Continent":"K65","ID":16101,"Name":"CALL 926","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16101","ServerKey":"pl181","X":556,"Y":614},{"Bonus":0,"Continent":"K35","ID":16102,"Name":"A001","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16102","ServerKey":"pl181","X":515,"Y":383},{"Bonus":0,"Continent":"K53","ID":16103,"Name":"Wioska","PlayerID":849084005,"Points":6916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16103","ServerKey":"pl181","X":383,"Y":549},{"Bonus":0,"Continent":"K65","ID":16104,"Name":"029","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16104","ServerKey":"pl181","X":565,"Y":608},{"Bonus":0,"Continent":"K44","ID":16105,"Name":"Wioska Aizen-T","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16105","ServerKey":"pl181","X":411,"Y":406},{"Bonus":0,"Continent":"K54","ID":16106,"Name":"0002","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16106","ServerKey":"pl181","X":414,"Y":593},{"Bonus":0,"Continent":"K46","ID":16107,"Name":"Wioska (014)","PlayerID":698232227,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16107","ServerKey":"pl181","X":624,"Y":475},{"Bonus":0,"Continent":"K65","ID":16108,"Name":"09. Gentiana","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16108","ServerKey":"pl181","X":523,"Y":623},{"Bonus":0,"Continent":"K53","ID":16109,"Name":"002 Plantacja Marchewy","PlayerID":9167250,"Points":9234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16109","ServerKey":"pl181","X":394,"Y":568},{"Bonus":0,"Continent":"K55","ID":16110,"Name":"Jaaa","PlayerID":698635863,"Points":10396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16110","ServerKey":"pl181","X":596,"Y":586},{"Bonus":0,"Continent":"K55","ID":16111,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16111","ServerKey":"pl181","X":573,"Y":577},{"Bonus":0,"Continent":"K65","ID":16112,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16112","ServerKey":"pl181","X":576,"Y":602},{"Bonus":0,"Continent":"K55","ID":16113,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16113","ServerKey":"pl181","X":593,"Y":585},{"Bonus":3,"Continent":"K55","ID":16115,"Name":"Jaaa","PlayerID":698635863,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16115","ServerKey":"pl181","X":580,"Y":596},{"Bonus":0,"Continent":"K55","ID":16116,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16116","ServerKey":"pl181","X":576,"Y":578},{"Bonus":0,"Continent":"K35","ID":16117,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16117","ServerKey":"pl181","X":515,"Y":372},{"Bonus":0,"Continent":"K54","ID":16119,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16119","ServerKey":"pl181","X":403,"Y":584},{"Bonus":0,"Continent":"K35","ID":16120,"Name":"037","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16120","ServerKey":"pl181","X":577,"Y":398},{"Bonus":0,"Continent":"K55","ID":16122,"Name":"Shallow","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16122","ServerKey":"pl181","X":575,"Y":599},{"Bonus":0,"Continent":"K46","ID":16123,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16123","ServerKey":"pl181","X":622,"Y":461},{"Bonus":0,"Continent":"K34","ID":16124,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16124","ServerKey":"pl181","X":444,"Y":384},{"Bonus":0,"Continent":"K34","ID":16125,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16125","ServerKey":"pl181","X":445,"Y":390},{"Bonus":0,"Continent":"K64","ID":16126,"Name":"Merin","PlayerID":699494488,"Points":7980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16126","ServerKey":"pl181","X":482,"Y":624},{"Bonus":0,"Continent":"K53","ID":16127,"Name":"30. Wioska 30","PlayerID":849091769,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16127","ServerKey":"pl181","X":392,"Y":566},{"Bonus":0,"Continent":"K46","ID":16128,"Name":"Gattacka","PlayerID":699298370,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16128","ServerKey":"pl181","X":601,"Y":426},{"Bonus":0,"Continent":"K46","ID":16129,"Name":"#001.500|500","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16129","ServerKey":"pl181","X":619,"Y":451},{"Bonus":0,"Continent":"K45","ID":16130,"Name":"Wioska barbarzyƄska","PlayerID":699491076,"Points":5559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16130","ServerKey":"pl181","X":590,"Y":412},{"Bonus":0,"Continent":"K55","ID":16131,"Name":"- 087 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16131","ServerKey":"pl181","X":552,"Y":597},{"Bonus":0,"Continent":"K34","ID":16132,"Name":"K34 - [059] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16132","ServerKey":"pl181","X":455,"Y":384},{"Bonus":0,"Continent":"K56","ID":16133,"Name":"Szlachcic PóƂnoc 004","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16133","ServerKey":"pl181","X":629,"Y":509},{"Bonus":0,"Continent":"K56","ID":16134,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16134","ServerKey":"pl181","X":614,"Y":559},{"Bonus":0,"Continent":"K65","ID":16135,"Name":"Oaza","PlayerID":699785935,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16135","ServerKey":"pl181","X":568,"Y":603},{"Bonus":0,"Continent":"K34","ID":16136,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16136","ServerKey":"pl181","X":461,"Y":379},{"Bonus":0,"Continent":"K53","ID":16137,"Name":"031 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16137","ServerKey":"pl181","X":385,"Y":557},{"Bonus":0,"Continent":"K43","ID":16138,"Name":"A0043","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16138","ServerKey":"pl181","X":378,"Y":470},{"Bonus":0,"Continent":"K55","ID":16139,"Name":"E 010","PlayerID":8078914,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16139","ServerKey":"pl181","X":587,"Y":594},{"Bonus":0,"Continent":"K65","ID":16140,"Name":"Teby_30","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16140","ServerKey":"pl181","X":504,"Y":625},{"Bonus":0,"Continent":"K43","ID":16141,"Name":"A0154","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16141","ServerKey":"pl181","X":373,"Y":471},{"Bonus":0,"Continent":"K53","ID":16142,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16142","ServerKey":"pl181","X":381,"Y":531},{"Bonus":5,"Continent":"K64","ID":16143,"Name":"037 OZDR","PlayerID":699336777,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16143","ServerKey":"pl181","X":467,"Y":625},{"Bonus":0,"Continent":"K55","ID":16144,"Name":"[080]","PlayerID":8000875,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16144","ServerKey":"pl181","X":560,"Y":551},{"Bonus":0,"Continent":"K46","ID":16145,"Name":"Jaaa","PlayerID":698635863,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16145","ServerKey":"pl181","X":613,"Y":444},{"Bonus":0,"Continent":"K55","ID":16146,"Name":"Jaaa","PlayerID":698635863,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16146","ServerKey":"pl181","X":578,"Y":597},{"Bonus":0,"Continent":"K56","ID":16147,"Name":"0028","PlayerID":6510480,"Points":10074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16147","ServerKey":"pl181","X":625,"Y":531},{"Bonus":0,"Continent":"K45","ID":16148,"Name":"03 im Berii","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16148","ServerKey":"pl181","X":595,"Y":414},{"Bonus":0,"Continent":"K43","ID":16149,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16149","ServerKey":"pl181","X":386,"Y":441},{"Bonus":0,"Continent":"K64","ID":16150,"Name":"kkkk","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16150","ServerKey":"pl181","X":425,"Y":605},{"Bonus":4,"Continent":"K65","ID":16151,"Name":"zakƂad pogrzebowy to juĆŒ czas","PlayerID":699364813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16151","ServerKey":"pl181","X":566,"Y":605},{"Bonus":0,"Continent":"K35","ID":16152,"Name":"017","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16152","ServerKey":"pl181","X":503,"Y":376},{"Bonus":9,"Continent":"K44","ID":16153,"Name":"A-006","PlayerID":8419570,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16153","ServerKey":"pl181","X":414,"Y":406},{"Bonus":0,"Continent":"K44","ID":16154,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16154","ServerKey":"pl181","X":417,"Y":409},{"Bonus":0,"Continent":"K64","ID":16155,"Name":"045 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16155","ServerKey":"pl181","X":464,"Y":624},{"Bonus":0,"Continent":"K46","ID":16156,"Name":"014 Wioska","PlayerID":699671454,"Points":8078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16156","ServerKey":"pl181","X":621,"Y":464},{"Bonus":0,"Continent":"K64","ID":16157,"Name":"016","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16157","ServerKey":"pl181","X":476,"Y":626},{"Bonus":0,"Continent":"K43","ID":16158,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16158","ServerKey":"pl181","X":387,"Y":446},{"Bonus":0,"Continent":"K46","ID":16159,"Name":"0150","PlayerID":698416970,"Points":6916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16159","ServerKey":"pl181","X":626,"Y":487},{"Bonus":0,"Continent":"K34","ID":16160,"Name":".012.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16160","ServerKey":"pl181","X":497,"Y":376},{"Bonus":0,"Continent":"K43","ID":16161,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16161","ServerKey":"pl181","X":386,"Y":442},{"Bonus":0,"Continent":"K54","ID":16162,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16162","ServerKey":"pl181","X":410,"Y":588},{"Bonus":0,"Continent":"K43","ID":16163,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16163","ServerKey":"pl181","X":388,"Y":441},{"Bonus":0,"Continent":"K56","ID":16164,"Name":"Bravo","PlayerID":699737356,"Points":8159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16164","ServerKey":"pl181","X":609,"Y":566},{"Bonus":0,"Continent":"K65","ID":16165,"Name":"012.","PlayerID":873575,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16165","ServerKey":"pl181","X":564,"Y":612},{"Bonus":0,"Continent":"K55","ID":16166,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16166","ServerKey":"pl181","X":592,"Y":585},{"Bonus":0,"Continent":"K54","ID":16167,"Name":"0001","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16167","ServerKey":"pl181","X":415,"Y":593},{"Bonus":0,"Continent":"K43","ID":16169,"Name":"Westcoast.051","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16169","ServerKey":"pl181","X":399,"Y":422},{"Bonus":0,"Continent":"K55","ID":16170,"Name":"006","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16170","ServerKey":"pl181","X":581,"Y":599},{"Bonus":0,"Continent":"K56","ID":16171,"Name":"0029","PlayerID":6510480,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16171","ServerKey":"pl181","X":621,"Y":529},{"Bonus":9,"Continent":"K34","ID":16172,"Name":"VN Tomoe Gozen","PlayerID":699883079,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16172","ServerKey":"pl181","X":451,"Y":380},{"Bonus":0,"Continent":"K34","ID":16173,"Name":"SoƂtys Wsi Filters","PlayerID":849027025,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16173","ServerKey":"pl181","X":437,"Y":390},{"Bonus":0,"Continent":"K34","ID":16174,"Name":"VN Hisoka","PlayerID":699883079,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16174","ServerKey":"pl181","X":478,"Y":373},{"Bonus":0,"Continent":"K43","ID":16175,"Name":"Westcoast.002","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16175","ServerKey":"pl181","X":390,"Y":435},{"Bonus":0,"Continent":"K54","ID":16176,"Name":"Pobozowisko","PlayerID":699513260,"Points":9635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16176","ServerKey":"pl181","X":409,"Y":587},{"Bonus":0,"Continent":"K53","ID":16177,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16177","ServerKey":"pl181","X":373,"Y":501},{"Bonus":0,"Continent":"K53","ID":16178,"Name":"023 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":9465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16178","ServerKey":"pl181","X":391,"Y":562},{"Bonus":0,"Continent":"K55","ID":16179,"Name":"Wioska GoƂabek","PlayerID":17714,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16179","ServerKey":"pl181","X":592,"Y":584},{"Bonus":0,"Continent":"K54","ID":16180,"Name":"0004","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16180","ServerKey":"pl181","X":415,"Y":595},{"Bonus":0,"Continent":"K44","ID":16181,"Name":"Szulernia","PlayerID":7249451,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16181","ServerKey":"pl181","X":409,"Y":410},{"Bonus":0,"Continent":"K46","ID":16182,"Name":"A026","PlayerID":699722599,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16182","ServerKey":"pl181","X":617,"Y":456},{"Bonus":0,"Continent":"K35","ID":16183,"Name":"A015","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16183","ServerKey":"pl181","X":514,"Y":378},{"Bonus":0,"Continent":"K34","ID":16184,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16184","ServerKey":"pl181","X":435,"Y":390},{"Bonus":0,"Continent":"K46","ID":16185,"Name":"029. Aquitania","PlayerID":849091866,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16185","ServerKey":"pl181","X":623,"Y":462},{"Bonus":0,"Continent":"K35","ID":16186,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16186","ServerKey":"pl181","X":549,"Y":381},{"Bonus":0,"Continent":"K43","ID":16187,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16187","ServerKey":"pl181","X":387,"Y":448},{"Bonus":0,"Continent":"K34","ID":16188,"Name":"Kokoyashi","PlayerID":699433558,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16188","ServerKey":"pl181","X":491,"Y":390},{"Bonus":0,"Continent":"K43","ID":16189,"Name":"Westcoast.018","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16189","ServerKey":"pl181","X":392,"Y":438},{"Bonus":0,"Continent":"K53","ID":16190,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16190","ServerKey":"pl181","X":374,"Y":500},{"Bonus":0,"Continent":"K64","ID":16191,"Name":"051 OZDR","PlayerID":699336777,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16191","ServerKey":"pl181","X":480,"Y":628},{"Bonus":0,"Continent":"K55","ID":16192,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16192","ServerKey":"pl181","X":581,"Y":597},{"Bonus":0,"Continent":"K65","ID":16193,"Name":"Wioska fikumiku111","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16193","ServerKey":"pl181","X":565,"Y":611},{"Bonus":0,"Continent":"K54","ID":16194,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16194","ServerKey":"pl181","X":411,"Y":590},{"Bonus":0,"Continent":"K65","ID":16195,"Name":"Sony 911","PlayerID":1415009,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16195","ServerKey":"pl181","X":567,"Y":609},{"Bonus":0,"Continent":"K34","ID":16196,"Name":"024","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16196","ServerKey":"pl181","X":430,"Y":396},{"Bonus":0,"Continent":"K34","ID":16197,"Name":"Yyyy","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16197","ServerKey":"pl181","X":499,"Y":371},{"Bonus":0,"Continent":"K45","ID":16198,"Name":"17 im Kanukowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16198","ServerKey":"pl181","X":587,"Y":409},{"Bonus":0,"Continent":"K55","ID":16199,"Name":"010","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16199","ServerKey":"pl181","X":576,"Y":599},{"Bonus":0,"Continent":"K64","ID":16200,"Name":"Ulu-mulu","PlayerID":699697558,"Points":6540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16200","ServerKey":"pl181","X":421,"Y":602},{"Bonus":0,"Continent":"K34","ID":16201,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16201","ServerKey":"pl181","X":433,"Y":390},{"Bonus":0,"Continent":"K45","ID":16202,"Name":"Belvedere 009","PlayerID":699756210,"Points":7180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16202","ServerKey":"pl181","X":580,"Y":406},{"Bonus":0,"Continent":"K45","ID":16203,"Name":"01 Hiszpania","PlayerID":8925695,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16203","ServerKey":"pl181","X":586,"Y":489},{"Bonus":0,"Continent":"K43","ID":16204,"Name":"Westcoast.058","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16204","ServerKey":"pl181","X":390,"Y":439},{"Bonus":0,"Continent":"K34","ID":16205,"Name":"K34 - [012] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16205","ServerKey":"pl181","X":457,"Y":380},{"Bonus":5,"Continent":"K53","ID":16206,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16206","ServerKey":"pl181","X":380,"Y":549},{"Bonus":0,"Continent":"K65","ID":16207,"Name":"044","PlayerID":699189792,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16207","ServerKey":"pl181","X":541,"Y":618},{"Bonus":0,"Continent":"K43","ID":16208,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16208","ServerKey":"pl181","X":381,"Y":448},{"Bonus":0,"Continent":"K55","ID":16209,"Name":"007","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16209","ServerKey":"pl181","X":589,"Y":592},{"Bonus":0,"Continent":"K35","ID":16210,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16210","ServerKey":"pl181","X":531,"Y":383},{"Bonus":1,"Continent":"K46","ID":16211,"Name":"Wioska (012)","PlayerID":698232227,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16211","ServerKey":"pl181","X":625,"Y":470},{"Bonus":0,"Continent":"K35","ID":16212,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16212","ServerKey":"pl181","X":537,"Y":376},{"Bonus":0,"Continent":"K53","ID":16213,"Name":"A0306","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16213","ServerKey":"pl181","X":372,"Y":516},{"Bonus":0,"Continent":"K45","ID":16214,"Name":"D013","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16214","ServerKey":"pl181","X":586,"Y":406},{"Bonus":0,"Continent":"K44","ID":16215,"Name":"FKG 01-22","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16215","ServerKey":"pl181","X":414,"Y":412},{"Bonus":0,"Continent":"K53","ID":16216,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16216","ServerKey":"pl181","X":387,"Y":506},{"Bonus":0,"Continent":"K53","ID":16217,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16217","ServerKey":"pl181","X":380,"Y":538},{"Bonus":0,"Continent":"K34","ID":16218,"Name":"K34 - [036] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16218","ServerKey":"pl181","X":461,"Y":380},{"Bonus":0,"Continent":"K34","ID":16219,"Name":".011.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16219","ServerKey":"pl181","X":497,"Y":375},{"Bonus":7,"Continent":"K34","ID":16220,"Name":".026.","PlayerID":698489071,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16220","ServerKey":"pl181","X":484,"Y":374},{"Bonus":0,"Continent":"K53","ID":16221,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16221","ServerKey":"pl181","X":383,"Y":551},{"Bonus":0,"Continent":"K43","ID":16222,"Name":"A0081","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16222","ServerKey":"pl181","X":371,"Y":487},{"Bonus":0,"Continent":"K45","ID":16223,"Name":"Ob1","PlayerID":8192845,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16223","ServerKey":"pl181","X":599,"Y":416},{"Bonus":0,"Continent":"K34","ID":16224,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16224","ServerKey":"pl181","X":482,"Y":372},{"Bonus":4,"Continent":"K45","ID":16225,"Name":"072","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16225","ServerKey":"pl181","X":586,"Y":403},{"Bonus":0,"Continent":"K65","ID":16226,"Name":"023","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16226","ServerKey":"pl181","X":570,"Y":604},{"Bonus":0,"Continent":"K53","ID":16227,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16227","ServerKey":"pl181","X":380,"Y":550},{"Bonus":0,"Continent":"K53","ID":16228,"Name":"Wioska","PlayerID":849084005,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16228","ServerKey":"pl181","X":381,"Y":551},{"Bonus":0,"Continent":"K34","ID":16229,"Name":"001","PlayerID":1454871,"Points":1374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16229","ServerKey":"pl181","X":482,"Y":376},{"Bonus":0,"Continent":"K46","ID":16230,"Name":"038 Inazawa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16230","ServerKey":"pl181","X":625,"Y":483},{"Bonus":0,"Continent":"K43","ID":16231,"Name":"Brat447","PlayerID":699262350,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16231","ServerKey":"pl181","X":371,"Y":498},{"Bonus":0,"Continent":"K35","ID":16232,"Name":"Part XV","PlayerID":698350371,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16232","ServerKey":"pl181","X":535,"Y":378},{"Bonus":0,"Continent":"K45","ID":16234,"Name":"18 im Dygaja","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16234","ServerKey":"pl181","X":586,"Y":407},{"Bonus":0,"Continent":"K44","ID":16235,"Name":"028 Seattle","PlayerID":9291984,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16235","ServerKey":"pl181","X":433,"Y":437},{"Bonus":0,"Continent":"K55","ID":16236,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":5165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16236","ServerKey":"pl181","X":593,"Y":566},{"Bonus":0,"Continent":"K55","ID":16237,"Name":"-010- K55","PlayerID":8096537,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16237","ServerKey":"pl181","X":591,"Y":592},{"Bonus":0,"Continent":"K35","ID":16238,"Name":"019 020","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16238","ServerKey":"pl181","X":547,"Y":381},{"Bonus":0,"Continent":"K35","ID":16239,"Name":"179","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16239","ServerKey":"pl181","X":548,"Y":385},{"Bonus":0,"Continent":"K46","ID":16240,"Name":"007 Wioska Sir Krzysztof","PlayerID":699671454,"Points":7634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16240","ServerKey":"pl181","X":624,"Y":465},{"Bonus":0,"Continent":"K54","ID":16242,"Name":"012 - ZOBACZYMY","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16242","ServerKey":"pl181","X":414,"Y":596},{"Bonus":0,"Continent":"K64","ID":16243,"Name":"0072","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16243","ServerKey":"pl181","X":453,"Y":618},{"Bonus":8,"Continent":"K43","ID":16244,"Name":"Dzungla","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16244","ServerKey":"pl181","X":373,"Y":495},{"Bonus":0,"Continent":"K44","ID":16245,"Name":"Monia","PlayerID":7462660,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16245","ServerKey":"pl181","X":402,"Y":420},{"Bonus":0,"Continent":"K53","ID":16246,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":6074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16246","ServerKey":"pl181","X":398,"Y":572},{"Bonus":0,"Continent":"K34","ID":16247,"Name":"045","PlayerID":699783765,"Points":10879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16247","ServerKey":"pl181","X":432,"Y":390},{"Bonus":0,"Continent":"K64","ID":16248,"Name":"032.","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16248","ServerKey":"pl181","X":482,"Y":627},{"Bonus":0,"Continent":"K56","ID":16249,"Name":"Gryfios 015","PlayerID":698666810,"Points":11534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16249","ServerKey":"pl181","X":618,"Y":542},{"Bonus":0,"Continent":"K43","ID":16250,"Name":"006","PlayerID":3698627,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16250","ServerKey":"pl181","X":380,"Y":464},{"Bonus":0,"Continent":"K64","ID":16251,"Name":"035","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16251","ServerKey":"pl181","X":479,"Y":626},{"Bonus":0,"Continent":"K44","ID":16252,"Name":"Suppi","PlayerID":699856962,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16252","ServerKey":"pl181","X":432,"Y":444},{"Bonus":0,"Continent":"K65","ID":16253,"Name":"Sony 911","PlayerID":1415009,"Points":10274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16253","ServerKey":"pl181","X":566,"Y":608},{"Bonus":0,"Continent":"K64","ID":16254,"Name":"014.xxx","PlayerID":849084985,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16254","ServerKey":"pl181","X":461,"Y":621},{"Bonus":0,"Continent":"K53","ID":16255,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16255","ServerKey":"pl181","X":377,"Y":523},{"Bonus":0,"Continent":"K35","ID":16257,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16257","ServerKey":"pl181","X":559,"Y":386},{"Bonus":0,"Continent":"K35","ID":16258,"Name":"A008","PlayerID":699208929,"Points":10039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16258","ServerKey":"pl181","X":518,"Y":368},{"Bonus":0,"Continent":"K35","ID":16259,"Name":"Part XXVII","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16259","ServerKey":"pl181","X":531,"Y":379},{"Bonus":0,"Continent":"K44","ID":16260,"Name":"FKG 01-25","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16260","ServerKey":"pl181","X":414,"Y":404},{"Bonus":0,"Continent":"K43","ID":16261,"Name":"susza","PlayerID":699265922,"Points":8550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16261","ServerKey":"pl181","X":375,"Y":498},{"Bonus":0,"Continent":"K35","ID":16262,"Name":"Part XII","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16262","ServerKey":"pl181","X":541,"Y":380},{"Bonus":0,"Continent":"K56","ID":16263,"Name":"Charlie","PlayerID":699737356,"Points":7779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16263","ServerKey":"pl181","X":611,"Y":564},{"Bonus":0,"Continent":"K46","ID":16264,"Name":"B016","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16264","ServerKey":"pl181","X":629,"Y":494},{"Bonus":0,"Continent":"K43","ID":16265,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16265","ServerKey":"pl181","X":381,"Y":449},{"Bonus":0,"Continent":"K35","ID":16266,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16266","ServerKey":"pl181","X":511,"Y":371},{"Bonus":0,"Continent":"K44","ID":16267,"Name":"SLA-03","PlayerID":9291984,"Points":10007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16267","ServerKey":"pl181","X":432,"Y":437},{"Bonus":0,"Continent":"K54","ID":16268,"Name":"059","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16268","ServerKey":"pl181","X":402,"Y":505},{"Bonus":0,"Continent":"K45","ID":16269,"Name":"Belvedere 010","PlayerID":699756210,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16269","ServerKey":"pl181","X":581,"Y":405},{"Bonus":0,"Continent":"K54","ID":16270,"Name":"007","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16270","ServerKey":"pl181","X":401,"Y":582},{"Bonus":0,"Continent":"K43","ID":16271,"Name":"A0249","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16271","ServerKey":"pl181","X":376,"Y":494},{"Bonus":0,"Continent":"K56","ID":16272,"Name":"[011]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16272","ServerKey":"pl181","X":618,"Y":543},{"Bonus":0,"Continent":"K55","ID":16273,"Name":"Yogi","PlayerID":2808172,"Points":8148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16273","ServerKey":"pl181","X":520,"Y":537},{"Bonus":0,"Continent":"K54","ID":16274,"Name":"Z barba 009","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16274","ServerKey":"pl181","X":403,"Y":579},{"Bonus":0,"Continent":"K43","ID":16275,"Name":"Westcoast.052","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16275","ServerKey":"pl181","X":397,"Y":429},{"Bonus":0,"Continent":"K43","ID":16276,"Name":"A0039","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16276","ServerKey":"pl181","X":377,"Y":472},{"Bonus":0,"Continent":"K65","ID":16277,"Name":"RTS 16","PlayerID":848995242,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16277","ServerKey":"pl181","X":571,"Y":609},{"Bonus":0,"Continent":"K64","ID":16278,"Name":"0065","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16278","ServerKey":"pl181","X":456,"Y":618},{"Bonus":0,"Continent":"K43","ID":16279,"Name":"A0042","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16279","ServerKey":"pl181","X":378,"Y":469},{"Bonus":0,"Continent":"K64","ID":16280,"Name":"091","PlayerID":849084985,"Points":3835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16280","ServerKey":"pl181","X":438,"Y":613},{"Bonus":0,"Continent":"K44","ID":16281,"Name":"PRO8L3M","PlayerID":7491093,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16281","ServerKey":"pl181","X":407,"Y":495},{"Bonus":0,"Continent":"K34","ID":16282,"Name":"K34 - [087] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16282","ServerKey":"pl181","X":453,"Y":379},{"Bonus":0,"Continent":"K64","ID":16283,"Name":"040 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16283","ServerKey":"pl181","X":465,"Y":623},{"Bonus":0,"Continent":"K34","ID":16284,"Name":"VN Eulji Mundeok","PlayerID":699883079,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16284","ServerKey":"pl181","X":477,"Y":366},{"Bonus":0,"Continent":"K64","ID":16286,"Name":"005 Wioska barbarzyƄska","PlayerID":699280514,"Points":2012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16286","ServerKey":"pl181","X":437,"Y":609},{"Bonus":0,"Continent":"K35","ID":16287,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16287","ServerKey":"pl181","X":530,"Y":376},{"Bonus":0,"Continent":"K65","ID":16288,"Name":"018","PlayerID":699351301,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16288","ServerKey":"pl181","X":565,"Y":609},{"Bonus":0,"Continent":"K34","ID":16289,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16289","ServerKey":"pl181","X":495,"Y":394},{"Bonus":0,"Continent":"K56","ID":16290,"Name":"0023","PlayerID":6510480,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16290","ServerKey":"pl181","X":623,"Y":540},{"Bonus":0,"Continent":"K35","ID":16291,"Name":"014","PlayerID":849010255,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16291","ServerKey":"pl181","X":505,"Y":376},{"Bonus":0,"Continent":"K65","ID":16292,"Name":"0007","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16292","ServerKey":"pl181","X":542,"Y":622},{"Bonus":0,"Continent":"K46","ID":16293,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16293","ServerKey":"pl181","X":622,"Y":460},{"Bonus":0,"Continent":"K65","ID":16294,"Name":"CALL 1065","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16294","ServerKey":"pl181","X":556,"Y":616},{"Bonus":0,"Continent":"K43","ID":16295,"Name":"Westcoast.049","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16295","ServerKey":"pl181","X":393,"Y":427},{"Bonus":0,"Continent":"K46","ID":16297,"Name":"032 jest dobrze w chu1111","PlayerID":699272633,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16297","ServerKey":"pl181","X":623,"Y":471},{"Bonus":0,"Continent":"K56","ID":16298,"Name":"Hotel","PlayerID":699737356,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16298","ServerKey":"pl181","X":608,"Y":567},{"Bonus":0,"Continent":"K43","ID":16299,"Name":"Westcoast.045","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16299","ServerKey":"pl181","X":390,"Y":434},{"Bonus":0,"Continent":"K64","ID":16300,"Name":"048. F64D","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16300","ServerKey":"pl181","X":483,"Y":631},{"Bonus":0,"Continent":"K35","ID":16301,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16301","ServerKey":"pl181","X":512,"Y":371},{"Bonus":0,"Continent":"K43","ID":16302,"Name":"004","PlayerID":699788305,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16302","ServerKey":"pl181","X":399,"Y":431},{"Bonus":0,"Continent":"K56","ID":16303,"Name":"Malinki 2","PlayerID":8013349,"Points":6605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16303","ServerKey":"pl181","X":626,"Y":522},{"Bonus":3,"Continent":"K64","ID":16304,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16304","ServerKey":"pl181","X":434,"Y":612},{"Bonus":0,"Continent":"K53","ID":16305,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16305","ServerKey":"pl181","X":379,"Y":529},{"Bonus":0,"Continent":"K34","ID":16306,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16306","ServerKey":"pl181","X":427,"Y":399},{"Bonus":0,"Continent":"K53","ID":16307,"Name":"*007 Akureyri","PlayerID":699425709,"Points":8694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16307","ServerKey":"pl181","X":382,"Y":545},{"Bonus":0,"Continent":"K64","ID":16308,"Name":"031.","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16308","ServerKey":"pl181","X":493,"Y":626},{"Bonus":4,"Continent":"K46","ID":16309,"Name":"*043*","PlayerID":698670524,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16309","ServerKey":"pl181","X":627,"Y":498},{"Bonus":0,"Continent":"K56","ID":16310,"Name":"016.","PlayerID":6520732,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16310","ServerKey":"pl181","X":626,"Y":517},{"Bonus":0,"Continent":"K64","ID":16311,"Name":"098","PlayerID":849084985,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16311","ServerKey":"pl181","X":454,"Y":619},{"Bonus":0,"Continent":"K44","ID":16312,"Name":"011","PlayerID":699788305,"Points":7980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16312","ServerKey":"pl181","X":400,"Y":419},{"Bonus":0,"Continent":"K46","ID":16313,"Name":"#024.513|522","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16313","ServerKey":"pl181","X":632,"Y":473},{"Bonus":3,"Continent":"K35","ID":16314,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16314","ServerKey":"pl181","X":518,"Y":373},{"Bonus":0,"Continent":"K46","ID":16315,"Name":"Jaaa","PlayerID":698635863,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16315","ServerKey":"pl181","X":611,"Y":443},{"Bonus":0,"Continent":"K56","ID":16316,"Name":"012","PlayerID":8428196,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16316","ServerKey":"pl181","X":620,"Y":548},{"Bonus":0,"Continent":"K34","ID":16317,"Name":"K34 - [114] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16317","ServerKey":"pl181","X":453,"Y":380},{"Bonus":0,"Continent":"K34","ID":16318,"Name":"VN Frederick I","PlayerID":699883079,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16318","ServerKey":"pl181","X":477,"Y":381},{"Bonus":0,"Continent":"K43","ID":16319,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16319","ServerKey":"pl181","X":379,"Y":451},{"Bonus":0,"Continent":"K64","ID":16320,"Name":"042.","PlayerID":699494488,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16320","ServerKey":"pl181","X":493,"Y":627},{"Bonus":0,"Continent":"K43","ID":16321,"Name":"Westcoast.001","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16321","ServerKey":"pl181","X":390,"Y":433},{"Bonus":0,"Continent":"K56","ID":16322,"Name":"*046*","PlayerID":698670524,"Points":6980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16322","ServerKey":"pl181","X":630,"Y":504},{"Bonus":0,"Continent":"K35","ID":16323,"Name":"Part VIII","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16323","ServerKey":"pl181","X":534,"Y":379},{"Bonus":0,"Continent":"K53","ID":16324,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16324","ServerKey":"pl181","X":372,"Y":510},{"Bonus":0,"Continent":"K46","ID":16325,"Name":"Storm","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16325","ServerKey":"pl181","X":627,"Y":499},{"Bonus":0,"Continent":"K34","ID":16326,"Name":"K34 - [078] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16326","ServerKey":"pl181","X":449,"Y":383},{"Bonus":0,"Continent":"K56","ID":16327,"Name":"Szlachcic 015","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16327","ServerKey":"pl181","X":626,"Y":532},{"Bonus":0,"Continent":"K43","ID":16328,"Name":"Mniejsze zƂo 0021","PlayerID":699794765,"Points":9396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16328","ServerKey":"pl181","X":372,"Y":486},{"Bonus":0,"Continent":"K34","ID":16329,"Name":"VN Ramesses","PlayerID":699883079,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16329","ServerKey":"pl181","X":468,"Y":380},{"Bonus":0,"Continent":"K44","ID":16330,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16330","ServerKey":"pl181","X":402,"Y":417},{"Bonus":0,"Continent":"K53","ID":16331,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16331","ServerKey":"pl181","X":375,"Y":513},{"Bonus":0,"Continent":"K35","ID":16332,"Name":"015","PlayerID":849010255,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16332","ServerKey":"pl181","X":504,"Y":376},{"Bonus":0,"Continent":"K53","ID":16334,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16334","ServerKey":"pl181","X":376,"Y":501},{"Bonus":0,"Continent":"K54","ID":16335,"Name":"056 - Wiocha","PlayerID":225023,"Points":8018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16335","ServerKey":"pl181","X":412,"Y":592},{"Bonus":0,"Continent":"K64","ID":16336,"Name":"012","PlayerID":699878511,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16336","ServerKey":"pl181","X":498,"Y":629},{"Bonus":0,"Continent":"K56","ID":16337,"Name":"CampNou","PlayerID":699795378,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16337","ServerKey":"pl181","X":624,"Y":508},{"Bonus":0,"Continent":"K45","ID":16338,"Name":"28 im GaƂkina","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16338","ServerKey":"pl181","X":593,"Y":416},{"Bonus":0,"Continent":"K34","ID":16339,"Name":"[0095]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16339","ServerKey":"pl181","X":414,"Y":397},{"Bonus":0,"Continent":"K43","ID":16340,"Name":"Avanti!","PlayerID":698625834,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16340","ServerKey":"pl181","X":375,"Y":485},{"Bonus":0,"Continent":"K43","ID":16341,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16341","ServerKey":"pl181","X":387,"Y":441},{"Bonus":0,"Continent":"K54","ID":16342,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16342","ServerKey":"pl181","X":405,"Y":588},{"Bonus":0,"Continent":"K56","ID":16343,"Name":"0007","PlayerID":6510480,"Points":10461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16343","ServerKey":"pl181","X":624,"Y":525},{"Bonus":0,"Continent":"K34","ID":16344,"Name":"VN Sun Tzu","PlayerID":699883079,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16344","ServerKey":"pl181","X":477,"Y":368},{"Bonus":0,"Continent":"K65","ID":16345,"Name":"003","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16345","ServerKey":"pl181","X":580,"Y":600},{"Bonus":0,"Continent":"K56","ID":16346,"Name":"0049","PlayerID":6510480,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16346","ServerKey":"pl181","X":628,"Y":519},{"Bonus":0,"Continent":"K65","ID":16348,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16348","ServerKey":"pl181","X":518,"Y":629},{"Bonus":0,"Continent":"K35","ID":16349,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16349","ServerKey":"pl181","X":563,"Y":387},{"Bonus":0,"Continent":"K43","ID":16350,"Name":"A0131","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16350","ServerKey":"pl181","X":372,"Y":489},{"Bonus":9,"Continent":"K64","ID":16351,"Name":"ave why!","PlayerID":698143931,"Points":10197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16351","ServerKey":"pl181","X":442,"Y":615},{"Bonus":0,"Continent":"K43","ID":16352,"Name":"Mniejsze zƂo 0016","PlayerID":699794765,"Points":9180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16352","ServerKey":"pl181","X":372,"Y":483},{"Bonus":0,"Continent":"K44","ID":16353,"Name":"FKG 01-15","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16353","ServerKey":"pl181","X":419,"Y":405},{"Bonus":0,"Continent":"K34","ID":16354,"Name":"yyyy","PlayerID":699883079,"Points":9942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16354","ServerKey":"pl181","X":498,"Y":372},{"Bonus":0,"Continent":"K54","ID":16355,"Name":"Pobozowisko","PlayerID":699513260,"Points":8265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16355","ServerKey":"pl181","X":408,"Y":589},{"Bonus":0,"Continent":"K65","ID":16356,"Name":"Teby_41","PlayerID":2585846,"Points":3391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16356","ServerKey":"pl181","X":502,"Y":625},{"Bonus":0,"Continent":"K46","ID":16357,"Name":"Wioska (013)","PlayerID":698232227,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16357","ServerKey":"pl181","X":622,"Y":481},{"Bonus":0,"Continent":"K65","ID":16359,"Name":"#0037","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16359","ServerKey":"pl181","X":540,"Y":622},{"Bonus":0,"Continent":"K46","ID":16360,"Name":"Piwna 11","PlayerID":699812007,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16360","ServerKey":"pl181","X":607,"Y":432},{"Bonus":0,"Continent":"K64","ID":16362,"Name":"0056","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16362","ServerKey":"pl181","X":457,"Y":618},{"Bonus":0,"Continent":"K44","ID":16363,"Name":"A-007","PlayerID":8419570,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16363","ServerKey":"pl181","X":413,"Y":405},{"Bonus":0,"Continent":"K53","ID":16364,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16364","ServerKey":"pl181","X":371,"Y":509},{"Bonus":0,"Continent":"K64","ID":16365,"Name":"Montek","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16365","ServerKey":"pl181","X":468,"Y":624},{"Bonus":0,"Continent":"K64","ID":16366,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16366","ServerKey":"pl181","X":443,"Y":615},{"Bonus":0,"Continent":"K46","ID":16367,"Name":"Jaaa","PlayerID":698635863,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16367","ServerKey":"pl181","X":610,"Y":442},{"Bonus":0,"Continent":"K64","ID":16368,"Name":"048","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16368","ServerKey":"pl181","X":443,"Y":616},{"Bonus":0,"Continent":"K35","ID":16369,"Name":"MIKOR 001","PlayerID":6343784,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16369","ServerKey":"pl181","X":559,"Y":389},{"Bonus":0,"Continent":"K56","ID":16370,"Name":"007","PlayerID":8428196,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16370","ServerKey":"pl181","X":620,"Y":547},{"Bonus":0,"Continent":"K34","ID":16371,"Name":"006","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16371","ServerKey":"pl181","X":434,"Y":393},{"Bonus":0,"Continent":"K34","ID":16372,"Name":"K34 - [024] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16372","ServerKey":"pl181","X":462,"Y":377},{"Bonus":0,"Continent":"K53","ID":16373,"Name":"029 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16373","ServerKey":"pl181","X":384,"Y":559},{"Bonus":0,"Continent":"K64","ID":16374,"Name":"Wioska barbarzyƄska","PlayerID":699697558,"Points":1788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16374","ServerKey":"pl181","X":435,"Y":608},{"Bonus":0,"Continent":"K46","ID":16375,"Name":"Jehu_Kingdom_09_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16375","ServerKey":"pl181","X":620,"Y":453},{"Bonus":0,"Continent":"K43","ID":16376,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16376","ServerKey":"pl181","X":370,"Y":456},{"Bonus":0,"Continent":"K43","ID":16377,"Name":"A0219","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16377","ServerKey":"pl181","X":372,"Y":496},{"Bonus":0,"Continent":"K43","ID":16378,"Name":"Land of Fire","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16378","ServerKey":"pl181","X":385,"Y":453},{"Bonus":0,"Continent":"K65","ID":16379,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16379","ServerKey":"pl181","X":508,"Y":628},{"Bonus":0,"Continent":"K56","ID":16380,"Name":"#049#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16380","ServerKey":"pl181","X":629,"Y":506},{"Bonus":0,"Continent":"K35","ID":16381,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16381","ServerKey":"pl181","X":551,"Y":381},{"Bonus":0,"Continent":"K46","ID":16382,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16382","ServerKey":"pl181","X":618,"Y":456},{"Bonus":0,"Continent":"K35","ID":16383,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16383","ServerKey":"pl181","X":509,"Y":372},{"Bonus":0,"Continent":"K65","ID":16384,"Name":"003","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16384","ServerKey":"pl181","X":503,"Y":632},{"Bonus":0,"Continent":"K56","ID":16386,"Name":"0054","PlayerID":6510480,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16386","ServerKey":"pl181","X":624,"Y":517},{"Bonus":8,"Continent":"K35","ID":16387,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16387","ServerKey":"pl181","X":523,"Y":374},{"Bonus":0,"Continent":"K56","ID":16388,"Name":"*041*","PlayerID":698670524,"Points":8921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16388","ServerKey":"pl181","X":625,"Y":500},{"Bonus":0,"Continent":"K53","ID":16389,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16389","ServerKey":"pl181","X":374,"Y":522},{"Bonus":0,"Continent":"K43","ID":16391,"Name":"Westcoast.041","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16391","ServerKey":"pl181","X":398,"Y":422},{"Bonus":0,"Continent":"K64","ID":16392,"Name":"NIERAJ01","PlayerID":8729672,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16392","ServerKey":"pl181","X":453,"Y":620},{"Bonus":0,"Continent":"K46","ID":16393,"Name":"B002","PlayerID":9314079,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16393","ServerKey":"pl181","X":628,"Y":491},{"Bonus":0,"Continent":"K35","ID":16394,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16394","ServerKey":"pl181","X":510,"Y":371},{"Bonus":0,"Continent":"K35","ID":16395,"Name":"South K35","PlayerID":699146580,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16395","ServerKey":"pl181","X":578,"Y":397},{"Bonus":0,"Continent":"K45","ID":16396,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16396","ServerKey":"pl181","X":599,"Y":418},{"Bonus":0,"Continent":"K34","ID":16397,"Name":"003","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16397","ServerKey":"pl181","X":428,"Y":395},{"Bonus":0,"Continent":"K65","ID":16398,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16398","ServerKey":"pl181","X":535,"Y":625},{"Bonus":0,"Continent":"K45","ID":16399,"Name":"D012","PlayerID":699761749,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16399","ServerKey":"pl181","X":595,"Y":413},{"Bonus":0,"Continent":"K43","ID":16400,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16400","ServerKey":"pl181","X":378,"Y":460},{"Bonus":0,"Continent":"K43","ID":16401,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16401","ServerKey":"pl181","X":379,"Y":455},{"Bonus":0,"Continent":"K54","ID":16402,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16402","ServerKey":"pl181","X":410,"Y":592},{"Bonus":0,"Continent":"K64","ID":16403,"Name":"024.","PlayerID":699494488,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16403","ServerKey":"pl181","X":489,"Y":626},{"Bonus":0,"Continent":"K43","ID":16404,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16404","ServerKey":"pl181","X":394,"Y":431},{"Bonus":0,"Continent":"K64","ID":16405,"Name":"078","PlayerID":699336777,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16405","ServerKey":"pl181","X":475,"Y":621},{"Bonus":0,"Continent":"K35","ID":16406,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16406","ServerKey":"pl181","X":558,"Y":383},{"Bonus":0,"Continent":"K46","ID":16407,"Name":"610|431 Wioska barbarzyƄska21","PlayerID":6822957,"Points":8251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16407","ServerKey":"pl181","X":610,"Y":431},{"Bonus":0,"Continent":"K55","ID":16408,"Name":"[181]","PlayerID":848985692,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16408","ServerKey":"pl181","X":544,"Y":518},{"Bonus":0,"Continent":"K43","ID":16409,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16409","ServerKey":"pl181","X":389,"Y":442},{"Bonus":4,"Continent":"K34","ID":16410,"Name":"Konfederacja +","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16410","ServerKey":"pl181","X":458,"Y":377},{"Bonus":0,"Continent":"K55","ID":16411,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16411","ServerKey":"pl181","X":582,"Y":598},{"Bonus":0,"Continent":"K65","ID":16412,"Name":"#0035","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16412","ServerKey":"pl181","X":539,"Y":621},{"Bonus":6,"Continent":"K34","ID":16413,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16413","ServerKey":"pl181","X":469,"Y":376},{"Bonus":0,"Continent":"K45","ID":16414,"Name":"Belvedere 011","PlayerID":699756210,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16414","ServerKey":"pl181","X":588,"Y":412},{"Bonus":0,"Continent":"K53","ID":16415,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16415","ServerKey":"pl181","X":377,"Y":527},{"Bonus":0,"Continent":"K56","ID":16416,"Name":"Malinki 3","PlayerID":8013349,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16416","ServerKey":"pl181","X":624,"Y":521},{"Bonus":0,"Continent":"K56","ID":16417,"Name":"018.","PlayerID":8900955,"Points":5623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16417","ServerKey":"pl181","X":624,"Y":535},{"Bonus":0,"Continent":"K34","ID":16418,"Name":"VN Moctezuma","PlayerID":699883079,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16418","ServerKey":"pl181","X":473,"Y":371},{"Bonus":0,"Continent":"K56","ID":16419,"Name":"BARA","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16419","ServerKey":"pl181","X":630,"Y":506},{"Bonus":0,"Continent":"K64","ID":16420,"Name":"0050","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16420","ServerKey":"pl181","X":459,"Y":619},{"Bonus":0,"Continent":"K65","ID":16421,"Name":"Yogi","PlayerID":2808172,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16421","ServerKey":"pl181","X":558,"Y":616},{"Bonus":0,"Continent":"K43","ID":16422,"Name":"Westcoast.012","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16422","ServerKey":"pl181","X":389,"Y":437},{"Bonus":3,"Continent":"K43","ID":16423,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16423","ServerKey":"pl181","X":381,"Y":462},{"Bonus":0,"Continent":"K56","ID":16424,"Name":"017 - Hospitalet de Llobregat","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16424","ServerKey":"pl181","X":632,"Y":512},{"Bonus":0,"Continent":"K43","ID":16425,"Name":"Avanti!","PlayerID":698625834,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16425","ServerKey":"pl181","X":376,"Y":479},{"Bonus":0,"Continent":"K43","ID":16426,"Name":"Piasek","PlayerID":699265922,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16426","ServerKey":"pl181","X":375,"Y":496},{"Bonus":0,"Continent":"K46","ID":16427,"Name":"Tu Deornoth odpoczywa","PlayerID":699545762,"Points":3989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16427","ServerKey":"pl181","X":626,"Y":474},{"Bonus":0,"Continent":"K45","ID":16428,"Name":"078 k45 001","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16428","ServerKey":"pl181","X":589,"Y":411},{"Bonus":0,"Continent":"K55","ID":16429,"Name":"Wioska 009","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16429","ServerKey":"pl181","X":596,"Y":582},{"Bonus":0,"Continent":"K56","ID":16430,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16430","ServerKey":"pl181","X":614,"Y":557},{"Bonus":0,"Continent":"K35","ID":16431,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16431","ServerKey":"pl181","X":552,"Y":384},{"Bonus":0,"Continent":"K53","ID":16432,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16432","ServerKey":"pl181","X":376,"Y":528},{"Bonus":0,"Continent":"K35","ID":16433,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16433","ServerKey":"pl181","X":577,"Y":395},{"Bonus":0,"Continent":"K43","ID":16434,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16434","ServerKey":"pl181","X":389,"Y":441},{"Bonus":0,"Continent":"K35","ID":16435,"Name":"Wioska barbarzyƄska 019|","PlayerID":6343784,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16435","ServerKey":"pl181","X":542,"Y":380},{"Bonus":0,"Continent":"K43","ID":16436,"Name":"A0050","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16436","ServerKey":"pl181","X":377,"Y":482},{"Bonus":0,"Continent":"K35","ID":16437,"Name":"C 009","PlayerID":6384450,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16437","ServerKey":"pl181","X":578,"Y":396},{"Bonus":7,"Continent":"K35","ID":16438,"Name":"Yyyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16438","ServerKey":"pl181","X":504,"Y":371},{"Bonus":0,"Continent":"K53","ID":16439,"Name":"A0307","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16439","ServerKey":"pl181","X":377,"Y":505},{"Bonus":0,"Continent":"K34","ID":16440,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16440","ServerKey":"pl181","X":438,"Y":385},{"Bonus":0,"Continent":"K44","ID":16441,"Name":"0089","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16441","ServerKey":"pl181","X":448,"Y":405},{"Bonus":0,"Continent":"K65","ID":16442,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16442","ServerKey":"pl181","X":529,"Y":625},{"Bonus":0,"Continent":"K53","ID":16443,"Name":"Pastorlandia 2","PlayerID":849030226,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16443","ServerKey":"pl181","X":374,"Y":530},{"Bonus":0,"Continent":"K65","ID":16444,"Name":"Sony 911","PlayerID":1415009,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16444","ServerKey":"pl181","X":569,"Y":610},{"Bonus":0,"Continent":"K56","ID":16445,"Name":"Nowa 09","PlayerID":698702991,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16445","ServerKey":"pl181","X":613,"Y":562},{"Bonus":0,"Continent":"K46","ID":16446,"Name":"058 Miyoshi","PlayerID":7092442,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16446","ServerKey":"pl181","X":626,"Y":473},{"Bonus":0,"Continent":"K35","ID":16447,"Name":"009","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16447","ServerKey":"pl181","X":507,"Y":371},{"Bonus":0,"Continent":"K46","ID":16449,"Name":"*0009 Baraki","PlayerID":8459255,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16449","ServerKey":"pl181","X":610,"Y":432},{"Bonus":0,"Continent":"K35","ID":16450,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16450","ServerKey":"pl181","X":549,"Y":382},{"Bonus":0,"Continent":"K64","ID":16451,"Name":"0057","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16451","ServerKey":"pl181","X":459,"Y":620},{"Bonus":0,"Continent":"K65","ID":16452,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16452","ServerKey":"pl181","X":527,"Y":623},{"Bonus":0,"Continent":"K53","ID":16453,"Name":"110 Murcia tres","PlayerID":699382126,"Points":9911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16453","ServerKey":"pl181","X":391,"Y":565},{"Bonus":0,"Continent":"K64","ID":16454,"Name":"092","PlayerID":849084985,"Points":10612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16454","ServerKey":"pl181","X":451,"Y":619},{"Bonus":0,"Continent":"K43","ID":16455,"Name":"Mniejsze zƂo 0040","PlayerID":699794765,"Points":10385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16455","ServerKey":"pl181","X":376,"Y":466},{"Bonus":0,"Continent":"K34","ID":16456,"Name":"VN Mulan","PlayerID":699883079,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16456","ServerKey":"pl181","X":467,"Y":377},{"Bonus":0,"Continent":"K34","ID":16457,"Name":"VN El Cid","PlayerID":699883079,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16457","ServerKey":"pl181","X":466,"Y":374},{"Bonus":0,"Continent":"K34","ID":16458,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16458","ServerKey":"pl181","X":407,"Y":399},{"Bonus":0,"Continent":"K34","ID":16459,"Name":"026","PlayerID":849010255,"Points":7680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16459","ServerKey":"pl181","X":481,"Y":375},{"Bonus":2,"Continent":"K34","ID":16460,"Name":"VN Charles Martel","PlayerID":699883079,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16460","ServerKey":"pl181","X":461,"Y":378},{"Bonus":0,"Continent":"K56","ID":16461,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16461","ServerKey":"pl181","X":600,"Y":577},{"Bonus":0,"Continent":"K64","ID":16462,"Name":"004","PlayerID":8729672,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16462","ServerKey":"pl181","X":453,"Y":619},{"Bonus":0,"Continent":"K46","ID":16463,"Name":"*031*","PlayerID":698670524,"Points":7492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16463","ServerKey":"pl181","X":624,"Y":482},{"Bonus":0,"Continent":"K56","ID":16464,"Name":"Vasperland_018","PlayerID":7047342,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16464","ServerKey":"pl181","X":629,"Y":515},{"Bonus":0,"Continent":"K45","ID":16465,"Name":"Belvedere 012","PlayerID":699756210,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16465","ServerKey":"pl181","X":586,"Y":410},{"Bonus":0,"Continent":"K35","ID":16466,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16466","ServerKey":"pl181","X":514,"Y":375},{"Bonus":5,"Continent":"K53","ID":16467,"Name":"023","PlayerID":6853693,"Points":5643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16467","ServerKey":"pl181","X":378,"Y":542},{"Bonus":0,"Continent":"K64","ID":16468,"Name":"scoti","PlayerID":699494488,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16468","ServerKey":"pl181","X":487,"Y":611},{"Bonus":0,"Continent":"K34","ID":16469,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16469","ServerKey":"pl181","X":434,"Y":390},{"Bonus":0,"Continent":"K43","ID":16470,"Name":"rybak","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16470","ServerKey":"pl181","X":379,"Y":490},{"Bonus":0,"Continent":"K46","ID":16471,"Name":"612|424 003 Stolica Kapitana","PlayerID":6822957,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16471","ServerKey":"pl181","X":612,"Y":424},{"Bonus":3,"Continent":"K65","ID":16472,"Name":"MƁODE ORƁY 001","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16472","ServerKey":"pl181","X":575,"Y":602},{"Bonus":0,"Continent":"K64","ID":16473,"Name":"0053","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16473","ServerKey":"pl181","X":459,"Y":621},{"Bonus":4,"Continent":"K64","ID":16474,"Name":"#008 A","PlayerID":698143931,"Points":10947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16474","ServerKey":"pl181","X":458,"Y":621},{"Bonus":0,"Continent":"K46","ID":16475,"Name":"Jaaa","PlayerID":698635863,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16475","ServerKey":"pl181","X":609,"Y":434},{"Bonus":0,"Continent":"K34","ID":16476,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16476","ServerKey":"pl181","X":491,"Y":376},{"Bonus":0,"Continent":"K43","ID":16477,"Name":"A0044","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16477","ServerKey":"pl181","X":375,"Y":470},{"Bonus":0,"Continent":"K35","ID":16478,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16478","ServerKey":"pl181","X":519,"Y":378},{"Bonus":0,"Continent":"K45","ID":16479,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16479","ServerKey":"pl181","X":587,"Y":402},{"Bonus":0,"Continent":"K43","ID":16480,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16480","ServerKey":"pl181","X":393,"Y":436},{"Bonus":0,"Continent":"K65","ID":16481,"Name":"#0038","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16481","ServerKey":"pl181","X":540,"Y":621},{"Bonus":0,"Continent":"K34","ID":16482,"Name":"K34 x022","PlayerID":698364331,"Points":6622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16482","ServerKey":"pl181","X":446,"Y":384},{"Bonus":0,"Continent":"K45","ID":16483,"Name":"105 Doƛć","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16483","ServerKey":"pl181","X":595,"Y":418},{"Bonus":0,"Continent":"K56","ID":16484,"Name":"Szlachcic 013","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16484","ServerKey":"pl181","X":624,"Y":539},{"Bonus":0,"Continent":"K55","ID":16485,"Name":"016","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16485","ServerKey":"pl181","X":599,"Y":586},{"Bonus":0,"Continent":"K64","ID":16486,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16486","ServerKey":"pl181","X":445,"Y":614},{"Bonus":0,"Continent":"K56","ID":16487,"Name":"031 ZbaraĆŒ","PlayerID":699272880,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16487","ServerKey":"pl181","X":607,"Y":581},{"Bonus":0,"Continent":"K35","ID":16488,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16488","ServerKey":"pl181","X":522,"Y":374},{"Bonus":7,"Continent":"K46","ID":16489,"Name":"A018","PlayerID":699722599,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16489","ServerKey":"pl181","X":617,"Y":454},{"Bonus":0,"Continent":"K34","ID":16490,"Name":".047.","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16490","ServerKey":"pl181","X":488,"Y":371},{"Bonus":0,"Continent":"K65","ID":16491,"Name":"sony911","PlayerID":1415009,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16491","ServerKey":"pl181","X":575,"Y":607},{"Bonus":0,"Continent":"K65","ID":16492,"Name":"#0009","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16492","ServerKey":"pl181","X":531,"Y":621},{"Bonus":0,"Continent":"K65","ID":16493,"Name":"Sony 911","PlayerID":1415009,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16493","ServerKey":"pl181","X":564,"Y":608},{"Bonus":0,"Continent":"K64","ID":16494,"Name":"[005]","PlayerID":849084985,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16494","ServerKey":"pl181","X":460,"Y":624},{"Bonus":0,"Continent":"K46","ID":16495,"Name":"Gattacka","PlayerID":699298370,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16495","ServerKey":"pl181","X":610,"Y":421},{"Bonus":0,"Continent":"K44","ID":16496,"Name":"Szulernia","PlayerID":7249451,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16496","ServerKey":"pl181","X":412,"Y":410},{"Bonus":0,"Continent":"K53","ID":16497,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16497","ServerKey":"pl181","X":372,"Y":514},{"Bonus":0,"Continent":"K56","ID":16498,"Name":"011. Czo Oju","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16498","ServerKey":"pl181","X":606,"Y":570},{"Bonus":0,"Continent":"K56","ID":16499,"Name":"0052","PlayerID":6510480,"Points":9249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16499","ServerKey":"pl181","X":627,"Y":519},{"Bonus":0,"Continent":"K34","ID":16500,"Name":"Konfederacja","PlayerID":848915730,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16500","ServerKey":"pl181","X":459,"Y":378},{"Bonus":0,"Continent":"K46","ID":16502,"Name":"004 B","PlayerID":699718269,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16502","ServerKey":"pl181","X":621,"Y":452},{"Bonus":0,"Continent":"K43","ID":16503,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16503","ServerKey":"pl181","X":384,"Y":445},{"Bonus":0,"Continent":"K64","ID":16504,"Name":"030","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16504","ServerKey":"pl181","X":473,"Y":625},{"Bonus":0,"Continent":"K45","ID":16505,"Name":"Bandii nie rĂłb mi tego xd","PlayerID":699756210,"Points":9242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16505","ServerKey":"pl181","X":589,"Y":408},{"Bonus":0,"Continent":"K53","ID":16506,"Name":"032 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":6560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16506","ServerKey":"pl181","X":388,"Y":558},{"Bonus":0,"Continent":"K54","ID":16507,"Name":"0006","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16507","ServerKey":"pl181","X":413,"Y":592},{"Bonus":0,"Continent":"K53","ID":16508,"Name":"Brat447","PlayerID":699262350,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16508","ServerKey":"pl181","X":386,"Y":506},{"Bonus":0,"Continent":"K53","ID":16509,"Name":"020","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16509","ServerKey":"pl181","X":374,"Y":524},{"Bonus":0,"Continent":"K46","ID":16510,"Name":"Emirates Stadium","PlayerID":699795378,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16510","ServerKey":"pl181","X":629,"Y":499},{"Bonus":0,"Continent":"K65","ID":16511,"Name":"CALL 928","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16511","ServerKey":"pl181","X":508,"Y":627},{"Bonus":0,"Continent":"K35","ID":16512,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16512","ServerKey":"pl181","X":505,"Y":371},{"Bonus":0,"Continent":"K46","ID":16513,"Name":"Jaaa","PlayerID":698635863,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16513","ServerKey":"pl181","X":617,"Y":441},{"Bonus":0,"Continent":"K43","ID":16514,"Name":"Westcoast.025","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16514","ServerKey":"pl181","X":398,"Y":419},{"Bonus":9,"Continent":"K46","ID":16515,"Name":"Piwna 07","PlayerID":699812007,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16515","ServerKey":"pl181","X":613,"Y":437},{"Bonus":0,"Continent":"K53","ID":16516,"Name":"ZachĂłd - 005","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16516","ServerKey":"pl181","X":395,"Y":576},{"Bonus":0,"Continent":"K46","ID":16517,"Name":"Wioska (009)","PlayerID":698232227,"Points":8602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16517","ServerKey":"pl181","X":622,"Y":459},{"Bonus":0,"Continent":"K35","ID":16518,"Name":"PART XXV","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16518","ServerKey":"pl181","X":537,"Y":375},{"Bonus":0,"Continent":"K35","ID":16519,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16519","ServerKey":"pl181","X":513,"Y":376},{"Bonus":0,"Continent":"K43","ID":16520,"Name":"Westcoast.057","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16520","ServerKey":"pl181","X":396,"Y":423},{"Bonus":0,"Continent":"K46","ID":16521,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16521","ServerKey":"pl181","X":610,"Y":436},{"Bonus":0,"Continent":"K34","ID":16522,"Name":"VN Dorothy Unsworth","PlayerID":699883079,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16522","ServerKey":"pl181","X":464,"Y":371},{"Bonus":0,"Continent":"K56","ID":16523,"Name":"*045*","PlayerID":698670524,"Points":8173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16523","ServerKey":"pl181","X":628,"Y":505},{"Bonus":0,"Continent":"K44","ID":16525,"Name":"FKG 01-30","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16525","ServerKey":"pl181","X":417,"Y":400},{"Bonus":0,"Continent":"K34","ID":16526,"Name":"064","PlayerID":849027025,"Points":5404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16526","ServerKey":"pl181","X":427,"Y":386},{"Bonus":0,"Continent":"K55","ID":16527,"Name":"Wioska 007","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16527","ServerKey":"pl181","X":596,"Y":581},{"Bonus":0,"Continent":"K65","ID":16528,"Name":"kathare","PlayerID":873575,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16528","ServerKey":"pl181","X":546,"Y":622},{"Bonus":0,"Continent":"K45","ID":16529,"Name":"007 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16529","ServerKey":"pl181","X":598,"Y":414},{"Bonus":3,"Continent":"K46","ID":16530,"Name":"!009.498|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16530","ServerKey":"pl181","X":617,"Y":447},{"Bonus":0,"Continent":"K35","ID":16531,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16531","ServerKey":"pl181","X":527,"Y":372},{"Bonus":0,"Continent":"K35","ID":16532,"Name":"031. Wioska barbarzyƄska","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16532","ServerKey":"pl181","X":576,"Y":396},{"Bonus":0,"Continent":"K64","ID":16533,"Name":"069 OZDR","PlayerID":699336777,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16533","ServerKey":"pl181","X":469,"Y":625},{"Bonus":0,"Continent":"K34","ID":16534,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16534","ServerKey":"pl181","X":449,"Y":381},{"Bonus":0,"Continent":"K34","ID":16535,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16535","ServerKey":"pl181","X":429,"Y":397},{"Bonus":0,"Continent":"K34","ID":16536,"Name":"0011","PlayerID":699431255,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16536","ServerKey":"pl181","X":444,"Y":391},{"Bonus":0,"Continent":"K34","ID":16537,"Name":"VN Yuno","PlayerID":699883079,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16537","ServerKey":"pl181","X":475,"Y":375},{"Bonus":8,"Continent":"K34","ID":16538,"Name":"K34 - [014] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16538","ServerKey":"pl181","X":447,"Y":381},{"Bonus":0,"Continent":"K53","ID":16540,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":6770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16540","ServerKey":"pl181","X":399,"Y":573},{"Bonus":0,"Continent":"K34","ID":16541,"Name":"VN Genghis Khan","PlayerID":699883079,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16541","ServerKey":"pl181","X":467,"Y":376},{"Bonus":0,"Continent":"K43","ID":16542,"Name":"Westcoast.026","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16542","ServerKey":"pl181","X":398,"Y":423},{"Bonus":0,"Continent":"K53","ID":16543,"Name":"Mount Everest","PlayerID":849013126,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16543","ServerKey":"pl181","X":375,"Y":500},{"Bonus":0,"Continent":"K65","ID":16544,"Name":"robie katasy !!!","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16544","ServerKey":"pl181","X":571,"Y":611},{"Bonus":0,"Continent":"K65","ID":16545,"Name":"Partia Razem Szpingischan","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16545","ServerKey":"pl181","X":571,"Y":610},{"Bonus":0,"Continent":"K65","ID":16546,"Name":"CALL 927","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16546","ServerKey":"pl181","X":555,"Y":614},{"Bonus":0,"Continent":"K44","ID":16547,"Name":"001","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16547","ServerKey":"pl181","X":404,"Y":433},{"Bonus":0,"Continent":"K56","ID":16548,"Name":"006.Broad Peak","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16548","ServerKey":"pl181","X":606,"Y":572},{"Bonus":0,"Continent":"K45","ID":16549,"Name":"D016","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16549","ServerKey":"pl181","X":584,"Y":406},{"Bonus":0,"Continent":"K46","ID":16550,"Name":"092.","PlayerID":849094609,"Points":3236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16550","ServerKey":"pl181","X":629,"Y":491},{"Bonus":0,"Continent":"K43","ID":16551,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16551","ServerKey":"pl181","X":378,"Y":454},{"Bonus":0,"Continent":"K54","ID":16552,"Name":"Z barba 015","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16552","ServerKey":"pl181","X":401,"Y":576},{"Bonus":0,"Continent":"K34","ID":16553,"Name":"Konfederacja","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16553","ServerKey":"pl181","X":465,"Y":376},{"Bonus":0,"Continent":"K34","ID":16554,"Name":"K34 - [162] Before Land","PlayerID":699088769,"Points":9558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16554","ServerKey":"pl181","X":439,"Y":387},{"Bonus":0,"Continent":"K46","ID":16555,"Name":"A017","PlayerID":699722599,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16555","ServerKey":"pl181","X":618,"Y":453},{"Bonus":0,"Continent":"K53","ID":16556,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16556","ServerKey":"pl181","X":379,"Y":531},{"Bonus":0,"Continent":"K65","ID":16557,"Name":"HORUS+","PlayerID":7756002,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16557","ServerKey":"pl181","X":523,"Y":628},{"Bonus":2,"Continent":"K44","ID":16558,"Name":"FKG 01-05","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16558","ServerKey":"pl181","X":417,"Y":401},{"Bonus":0,"Continent":"K35","ID":16560,"Name":"018","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16560","ServerKey":"pl181","X":584,"Y":397},{"Bonus":0,"Continent":"K53","ID":16561,"Name":"041 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16561","ServerKey":"pl181","X":387,"Y":558},{"Bonus":0,"Continent":"K53","ID":16562,"Name":"Wioska","PlayerID":849084005,"Points":7736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16562","ServerKey":"pl181","X":381,"Y":546},{"Bonus":0,"Continent":"K35","ID":16563,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16563","ServerKey":"pl181","X":531,"Y":374},{"Bonus":0,"Continent":"K64","ID":16564,"Name":"019.xxx","PlayerID":849084985,"Points":9503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16564","ServerKey":"pl181","X":462,"Y":621},{"Bonus":0,"Continent":"K56","ID":16565,"Name":"[003]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16565","ServerKey":"pl181","X":619,"Y":540},{"Bonus":0,"Continent":"K65","ID":16566,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16566","ServerKey":"pl181","X":533,"Y":626},{"Bonus":0,"Continent":"K56","ID":16567,"Name":"Bocianikson016","PlayerID":7528491,"Points":4642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16567","ServerKey":"pl181","X":622,"Y":538},{"Bonus":0,"Continent":"K46","ID":16568,"Name":"A027","PlayerID":699722599,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16568","ServerKey":"pl181","X":619,"Y":456},{"Bonus":0,"Continent":"K65","ID":16569,"Name":"017.","PlayerID":873575,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16569","ServerKey":"pl181","X":566,"Y":619},{"Bonus":0,"Continent":"K44","ID":16570,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16570","ServerKey":"pl181","X":411,"Y":408},{"Bonus":0,"Continent":"K45","ID":16571,"Name":"015","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16571","ServerKey":"pl181","X":582,"Y":406},{"Bonus":0,"Continent":"K53","ID":16572,"Name":"ZachĂłd - 002","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16572","ServerKey":"pl181","X":397,"Y":576},{"Bonus":0,"Continent":"K56","ID":16573,"Name":"100","PlayerID":849090187,"Points":2243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16573","ServerKey":"pl181","X":628,"Y":518},{"Bonus":0,"Continent":"K43","ID":16574,"Name":"Mniejsze zƂo 0010","PlayerID":699794765,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16574","ServerKey":"pl181","X":375,"Y":477},{"Bonus":0,"Continent":"K65","ID":16576,"Name":"Teby_31","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16576","ServerKey":"pl181","X":505,"Y":626},{"Bonus":0,"Continent":"K65","ID":16577,"Name":"Sony 911","PlayerID":1415009,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16577","ServerKey":"pl181","X":568,"Y":609},{"Bonus":0,"Continent":"K43","ID":16578,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16578","ServerKey":"pl181","X":379,"Y":452},{"Bonus":1,"Continent":"K54","ID":16579,"Name":"031 - Cardiff","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16579","ServerKey":"pl181","X":403,"Y":585},{"Bonus":0,"Continent":"K55","ID":16580,"Name":"034","PlayerID":699373599,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16580","ServerKey":"pl181","X":597,"Y":561},{"Bonus":0,"Continent":"K55","ID":16581,"Name":"Gattacka","PlayerID":699298370,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16581","ServerKey":"pl181","X":584,"Y":501},{"Bonus":0,"Continent":"K46","ID":16582,"Name":"Gattacka","PlayerID":699298370,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16582","ServerKey":"pl181","X":603,"Y":425},{"Bonus":0,"Continent":"K65","ID":16583,"Name":"010","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16583","ServerKey":"pl181","X":517,"Y":633},{"Bonus":0,"Continent":"K35","ID":16585,"Name":"020.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16585","ServerKey":"pl181","X":572,"Y":391},{"Bonus":0,"Continent":"K53","ID":16586,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16586","ServerKey":"pl181","X":371,"Y":511},{"Bonus":0,"Continent":"K56","ID":16587,"Name":"Taran 006","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16587","ServerKey":"pl181","X":626,"Y":529},{"Bonus":0,"Continent":"K65","ID":16588,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16588","ServerKey":"pl181","X":524,"Y":627},{"Bonus":0,"Continent":"K35","ID":16589,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16589","ServerKey":"pl181","X":543,"Y":377},{"Bonus":0,"Continent":"K54","ID":16590,"Name":"004","PlayerID":9264752,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16590","ServerKey":"pl181","X":406,"Y":586},{"Bonus":0,"Continent":"K53","ID":16591,"Name":"019 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16591","ServerKey":"pl181","X":393,"Y":565},{"Bonus":0,"Continent":"K34","ID":16592,"Name":"yyyy","PlayerID":699883079,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16592","ServerKey":"pl181","X":498,"Y":371},{"Bonus":0,"Continent":"K46","ID":16593,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16593","ServerKey":"pl181","X":615,"Y":446},{"Bonus":3,"Continent":"K35","ID":16594,"Name":"002. Skellige","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16594","ServerKey":"pl181","X":567,"Y":389},{"Bonus":0,"Continent":"K55","ID":16595,"Name":"018","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16595","ServerKey":"pl181","X":598,"Y":583},{"Bonus":0,"Continent":"K34","ID":16596,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16596","ServerKey":"pl181","X":493,"Y":372},{"Bonus":6,"Continent":"K34","ID":16597,"Name":"VN Scipio Africanus","PlayerID":699883079,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16597","ServerKey":"pl181","X":474,"Y":375},{"Bonus":0,"Continent":"K56","ID":16598,"Name":"019","PlayerID":8428196,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16598","ServerKey":"pl181","X":625,"Y":548},{"Bonus":0,"Continent":"K55","ID":16599,"Name":"Jaaa","PlayerID":698635863,"Points":10666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16599","ServerKey":"pl181","X":587,"Y":596},{"Bonus":7,"Continent":"K43","ID":16600,"Name":"A0109","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16600","ServerKey":"pl181","X":372,"Y":480},{"Bonus":0,"Continent":"K35","ID":16601,"Name":"ADEN","PlayerID":698588535,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16601","ServerKey":"pl181","X":527,"Y":377},{"Bonus":0,"Continent":"K34","ID":16602,"Name":"Yyyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16602","ServerKey":"pl181","X":499,"Y":373},{"Bonus":0,"Continent":"K55","ID":16603,"Name":"063","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16603","ServerKey":"pl181","X":586,"Y":594},{"Bonus":0,"Continent":"K34","ID":16604,"Name":"K34 x005","PlayerID":698364331,"Points":8953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16604","ServerKey":"pl181","X":447,"Y":383},{"Bonus":4,"Continent":"K64","ID":16605,"Name":"0098","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16605","ServerKey":"pl181","X":453,"Y":616},{"Bonus":0,"Continent":"K64","ID":16606,"Name":"0104","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16606","ServerKey":"pl181","X":458,"Y":619},{"Bonus":0,"Continent":"K53","ID":16607,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16607","ServerKey":"pl181","X":372,"Y":512},{"Bonus":0,"Continent":"K54","ID":16608,"Name":"Pobozowisko","PlayerID":699513260,"Points":7468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16608","ServerKey":"pl181","X":400,"Y":583},{"Bonus":0,"Continent":"K65","ID":16609,"Name":"#0021","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16609","ServerKey":"pl181","X":523,"Y":626},{"Bonus":0,"Continent":"K56","ID":16610,"Name":"Bocianikson012","PlayerID":7528491,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16610","ServerKey":"pl181","X":610,"Y":546},{"Bonus":0,"Continent":"K53","ID":16611,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16611","ServerKey":"pl181","X":373,"Y":517},{"Bonus":0,"Continent":"K64","ID":16612,"Name":"007.xxx","PlayerID":8612358,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16612","ServerKey":"pl181","X":473,"Y":622},{"Bonus":0,"Continent":"K46","ID":16613,"Name":"A028","PlayerID":699722599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16613","ServerKey":"pl181","X":615,"Y":453},{"Bonus":0,"Continent":"K53","ID":16614,"Name":"Oeste tres","PlayerID":698916948,"Points":4889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16614","ServerKey":"pl181","X":383,"Y":555},{"Bonus":0,"Continent":"K64","ID":16615,"Name":"023.","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16615","ServerKey":"pl181","X":490,"Y":626},{"Bonus":0,"Continent":"K35","ID":16616,"Name":"Wioska krzysiuaa","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16616","ServerKey":"pl181","X":509,"Y":369},{"Bonus":0,"Continent":"K43","ID":16617,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16617","ServerKey":"pl181","X":378,"Y":455},{"Bonus":0,"Continent":"K44","ID":16618,"Name":"Wioska Expezo","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16618","ServerKey":"pl181","X":403,"Y":421},{"Bonus":0,"Continent":"K44","ID":16619,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16619","ServerKey":"pl181","X":405,"Y":418},{"Bonus":0,"Continent":"K53","ID":16620,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16620","ServerKey":"pl181","X":372,"Y":502},{"Bonus":0,"Continent":"K64","ID":16621,"Name":"044 OZDR","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16621","ServerKey":"pl181","X":463,"Y":622},{"Bonus":0,"Continent":"K45","ID":16622,"Name":"B 003","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16622","ServerKey":"pl181","X":593,"Y":410},{"Bonus":0,"Continent":"K44","ID":16623,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16623","ServerKey":"pl181","X":405,"Y":417},{"Bonus":0,"Continent":"K56","ID":16624,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16624","ServerKey":"pl181","X":618,"Y":555},{"Bonus":0,"Continent":"K53","ID":16625,"Name":"Brzoza","PlayerID":699265922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16625","ServerKey":"pl181","X":370,"Y":513},{"Bonus":0,"Continent":"K34","ID":16626,"Name":"056","PlayerID":698739350,"Points":6169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16626","ServerKey":"pl181","X":493,"Y":370},{"Bonus":0,"Continent":"K65","ID":16627,"Name":"RTS 6","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16627","ServerKey":"pl181","X":574,"Y":608},{"Bonus":0,"Continent":"K64","ID":16628,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16628","ServerKey":"pl181","X":431,"Y":605},{"Bonus":0,"Continent":"K65","ID":16629,"Name":"z 046","PlayerID":699342219,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16629","ServerKey":"pl181","X":579,"Y":604},{"Bonus":0,"Continent":"K43","ID":16630,"Name":"Wioska audi80lpa","PlayerID":698807570,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16630","ServerKey":"pl181","X":377,"Y":460},{"Bonus":0,"Continent":"K43","ID":16631,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16631","ServerKey":"pl181","X":390,"Y":441},{"Bonus":0,"Continent":"K35","ID":16632,"Name":"027","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16632","ServerKey":"pl181","X":502,"Y":374},{"Bonus":0,"Continent":"K64","ID":16633,"Name":"053 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16633","ServerKey":"pl181","X":475,"Y":623},{"Bonus":0,"Continent":"K56","ID":16634,"Name":"009 barbarzyƄska","PlayerID":9238175,"Points":10367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16634","ServerKey":"pl181","X":610,"Y":564},{"Bonus":0,"Continent":"K56","ID":16635,"Name":"Malinki 4","PlayerID":8013349,"Points":6566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16635","ServerKey":"pl181","X":623,"Y":523},{"Bonus":0,"Continent":"K34","ID":16636,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16636","ServerKey":"pl181","X":440,"Y":385},{"Bonus":0,"Continent":"K55","ID":16638,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16638","ServerKey":"pl181","X":596,"Y":585},{"Bonus":0,"Continent":"K45","ID":16639,"Name":"Belvedere 013","PlayerID":699756210,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16639","ServerKey":"pl181","X":587,"Y":406},{"Bonus":0,"Continent":"K56","ID":16640,"Name":"Taran 003","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16640","ServerKey":"pl181","X":623,"Y":529},{"Bonus":0,"Continent":"K46","ID":16641,"Name":"Wioska tomektonkiel","PlayerID":699351046,"Points":4563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16641","ServerKey":"pl181","X":607,"Y":425},{"Bonus":3,"Continent":"K35","ID":16642,"Name":"0033","PlayerID":699485250,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16642","ServerKey":"pl181","X":562,"Y":390},{"Bonus":0,"Continent":"K44","ID":16643,"Name":"0063 8 Piast","PlayerID":3909522,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16643","ServerKey":"pl181","X":446,"Y":432},{"Bonus":0,"Continent":"K56","ID":16644,"Name":"004.Abi Gamin","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16644","ServerKey":"pl181","X":603,"Y":576},{"Bonus":0,"Continent":"K43","ID":16645,"Name":"Avanti!","PlayerID":698625834,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16645","ServerKey":"pl181","X":373,"Y":480},{"Bonus":0,"Continent":"K53","ID":16646,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16646","ServerKey":"pl181","X":371,"Y":514},{"Bonus":8,"Continent":"K43","ID":16647,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16647","ServerKey":"pl181","X":379,"Y":448},{"Bonus":0,"Continent":"K44","ID":16648,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16648","ServerKey":"pl181","X":418,"Y":400},{"Bonus":0,"Continent":"K34","ID":16649,"Name":"022","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16649","ServerKey":"pl181","X":432,"Y":393},{"Bonus":0,"Continent":"K46","ID":16650,"Name":"0151","PlayerID":698416970,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16650","ServerKey":"pl181","X":625,"Y":487},{"Bonus":0,"Continent":"K56","ID":16651,"Name":"Szlachcic 006","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16651","ServerKey":"pl181","X":623,"Y":536},{"Bonus":0,"Continent":"K53","ID":16652,"Name":"026","PlayerID":6853693,"Points":8128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16652","ServerKey":"pl181","X":368,"Y":536},{"Bonus":0,"Continent":"K43","ID":16653,"Name":"Westcoast.029","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16653","ServerKey":"pl181","X":396,"Y":430},{"Bonus":0,"Continent":"K35","ID":16654,"Name":"Taran","PlayerID":699170684,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16654","ServerKey":"pl181","X":551,"Y":383},{"Bonus":0,"Continent":"K64","ID":16655,"Name":"021.","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16655","ServerKey":"pl181","X":490,"Y":627},{"Bonus":0,"Continent":"K46","ID":16656,"Name":"Piwna 15","PlayerID":699812007,"Points":9181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16656","ServerKey":"pl181","X":608,"Y":429},{"Bonus":0,"Continent":"K46","ID":16657,"Name":"SiƂa, Masa, RzeĆșba 05","PlayerID":699379895,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16657","ServerKey":"pl181","X":627,"Y":495},{"Bonus":0,"Continent":"K65","ID":16658,"Name":"Zakrecona 3","PlayerID":8627359,"Points":9256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16658","ServerKey":"pl181","X":573,"Y":606},{"Bonus":0,"Continent":"K56","ID":16659,"Name":"Tesa 7","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16659","ServerKey":"pl181","X":627,"Y":528},{"Bonus":0,"Continent":"K64","ID":16660,"Name":"001Podbitka","PlayerID":698620694,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16660","ServerKey":"pl181","X":455,"Y":629},{"Bonus":0,"Continent":"K43","ID":16661,"Name":"s181eo16","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16661","ServerKey":"pl181","X":382,"Y":455},{"Bonus":0,"Continent":"K34","ID":16662,"Name":"VN Leonidas","PlayerID":699883079,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16662","ServerKey":"pl181","X":469,"Y":373},{"Bonus":0,"Continent":"K56","ID":16663,"Name":"Szlachcic 005","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16663","ServerKey":"pl181","X":620,"Y":535},{"Bonus":0,"Continent":"K46","ID":16664,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16664","ServerKey":"pl181","X":616,"Y":448},{"Bonus":0,"Continent":"K46","ID":16665,"Name":"!011.507|495","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16665","ServerKey":"pl181","X":626,"Y":446},{"Bonus":0,"Continent":"K65","ID":16666,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16666","ServerKey":"pl181","X":532,"Y":626},{"Bonus":0,"Continent":"K34","ID":16668,"Name":"Konradzik","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16668","ServerKey":"pl181","X":428,"Y":392},{"Bonus":0,"Continent":"K35","ID":16669,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16669","ServerKey":"pl181","X":525,"Y":377},{"Bonus":0,"Continent":"K34","ID":16670,"Name":"Konfederacja","PlayerID":848915730,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16670","ServerKey":"pl181","X":456,"Y":377},{"Bonus":0,"Continent":"K34","ID":16671,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16671","ServerKey":"pl181","X":490,"Y":373},{"Bonus":0,"Continent":"K64","ID":16672,"Name":"027","PlayerID":699336777,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16672","ServerKey":"pl181","X":476,"Y":629},{"Bonus":0,"Continent":"K34","ID":16673,"Name":"0009","PlayerID":699431255,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16673","ServerKey":"pl181","X":444,"Y":385},{"Bonus":0,"Continent":"K53","ID":16674,"Name":"073","PlayerID":6853693,"Points":5904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16674","ServerKey":"pl181","X":373,"Y":523},{"Bonus":0,"Continent":"K34","ID":16675,"Name":"Zzz","PlayerID":699658023,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16675","ServerKey":"pl181","X":488,"Y":370},{"Bonus":0,"Continent":"K64","ID":16676,"Name":"029","PlayerID":699336777,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16676","ServerKey":"pl181","X":474,"Y":625},{"Bonus":0,"Continent":"K46","ID":16677,"Name":"022","PlayerID":849006412,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16677","ServerKey":"pl181","X":631,"Y":498},{"Bonus":0,"Continent":"K64","ID":16678,"Name":"0063","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16678","ServerKey":"pl181","X":456,"Y":617},{"Bonus":0,"Continent":"K35","ID":16679,"Name":"0034","PlayerID":699485250,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16679","ServerKey":"pl181","X":564,"Y":388},{"Bonus":5,"Continent":"K56","ID":16680,"Name":"[006]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16680","ServerKey":"pl181","X":622,"Y":544},{"Bonus":0,"Continent":"K35","ID":16681,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16681","ServerKey":"pl181","X":528,"Y":378},{"Bonus":0,"Continent":"K56","ID":16682,"Name":"0055","PlayerID":6510480,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16682","ServerKey":"pl181","X":627,"Y":520},{"Bonus":0,"Continent":"K34","ID":16683,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16683","ServerKey":"pl181","X":433,"Y":388},{"Bonus":2,"Continent":"K35","ID":16684,"Name":"035.","PlayerID":699799629,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16684","ServerKey":"pl181","X":571,"Y":392},{"Bonus":0,"Continent":"K64","ID":16685,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":6276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16685","ServerKey":"pl181","X":440,"Y":613},{"Bonus":0,"Continent":"K35","ID":16686,"Name":"U-02","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16686","ServerKey":"pl181","X":557,"Y":388},{"Bonus":0,"Continent":"K64","ID":16688,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16688","ServerKey":"pl181","X":425,"Y":604},{"Bonus":0,"Continent":"K56","ID":16689,"Name":"006","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16689","ServerKey":"pl181","X":631,"Y":528},{"Bonus":0,"Continent":"K65","ID":16690,"Name":"CALL 1076","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16690","ServerKey":"pl181","X":554,"Y":613},{"Bonus":0,"Continent":"K56","ID":16691,"Name":"080","PlayerID":699373599,"Points":6016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16691","ServerKey":"pl181","X":619,"Y":528},{"Bonus":0,"Continent":"K56","ID":16692,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16692","ServerKey":"pl181","X":617,"Y":556},{"Bonus":0,"Continent":"K64","ID":16693,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16693","ServerKey":"pl181","X":444,"Y":613},{"Bonus":0,"Continent":"K56","ID":16694,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16694","ServerKey":"pl181","X":618,"Y":550},{"Bonus":0,"Continent":"K65","ID":16697,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16697","ServerKey":"pl181","X":547,"Y":618},{"Bonus":0,"Continent":"K65","ID":16698,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16698","ServerKey":"pl181","X":532,"Y":627},{"Bonus":0,"Continent":"K44","ID":16699,"Name":"FKG 01-33","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16699","ServerKey":"pl181","X":412,"Y":403},{"Bonus":0,"Continent":"K65","ID":16700,"Name":"Twierdza","PlayerID":699567608,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16700","ServerKey":"pl181","X":566,"Y":612},{"Bonus":0,"Continent":"K46","ID":16701,"Name":"082. Aler","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16701","ServerKey":"pl181","X":629,"Y":476},{"Bonus":0,"Continent":"K45","ID":16702,"Name":"039","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16702","ServerKey":"pl181","X":557,"Y":403},{"Bonus":0,"Continent":"K34","ID":16703,"Name":"082","PlayerID":849027025,"Points":7223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16703","ServerKey":"pl181","X":437,"Y":387},{"Bonus":7,"Continent":"K64","ID":16704,"Name":"008","PlayerID":699859013,"Points":8502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16704","ServerKey":"pl181","X":434,"Y":613},{"Bonus":0,"Continent":"K43","ID":16705,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16705","ServerKey":"pl181","X":370,"Y":496},{"Bonus":0,"Continent":"K46","ID":16706,"Name":"031. Aurelia","PlayerID":849091866,"Points":9422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16706","ServerKey":"pl181","X":624,"Y":461},{"Bonus":0,"Continent":"K35","ID":16707,"Name":"Valhalla","PlayerID":698350371,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16707","ServerKey":"pl181","X":539,"Y":375},{"Bonus":0,"Continent":"K64","ID":16708,"Name":"010","PlayerID":849084985,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16708","ServerKey":"pl181","X":448,"Y":620},{"Bonus":0,"Continent":"K53","ID":16709,"Name":"37. Wioska 37","PlayerID":849091769,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16709","ServerKey":"pl181","X":394,"Y":570},{"Bonus":0,"Continent":"K43","ID":16710,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16710","ServerKey":"pl181","X":385,"Y":445},{"Bonus":9,"Continent":"K64","ID":16711,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16711","ServerKey":"pl181","X":498,"Y":626},{"Bonus":0,"Continent":"K34","ID":16712,"Name":"[002] Konata Izumi","PlayerID":699658023,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16712","ServerKey":"pl181","X":479,"Y":371},{"Bonus":0,"Continent":"K34","ID":16713,"Name":"FKG 01-31","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16713","ServerKey":"pl181","X":417,"Y":399},{"Bonus":0,"Continent":"K64","ID":16714,"Name":"097","PlayerID":849084985,"Points":10177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16714","ServerKey":"pl181","X":447,"Y":614},{"Bonus":0,"Continent":"K46","ID":16715,"Name":"A029","PlayerID":699722599,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16715","ServerKey":"pl181","X":619,"Y":454},{"Bonus":0,"Continent":"K65","ID":16716,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16716","ServerKey":"pl181","X":533,"Y":625},{"Bonus":0,"Continent":"K64","ID":16717,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16717","ServerKey":"pl181","X":433,"Y":612},{"Bonus":0,"Continent":"K44","ID":16718,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16718","ServerKey":"pl181","X":466,"Y":412},{"Bonus":0,"Continent":"K53","ID":16719,"Name":"ZachĂłd - 003","PlayerID":225023,"Points":9920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16719","ServerKey":"pl181","X":397,"Y":577},{"Bonus":0,"Continent":"K35","ID":16720,"Name":"Taran","PlayerID":699170684,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16720","ServerKey":"pl181","X":541,"Y":386},{"Bonus":0,"Continent":"K43","ID":16721,"Name":"Westcoast.073","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16721","ServerKey":"pl181","X":391,"Y":427},{"Bonus":0,"Continent":"K34","ID":16722,"Name":"Konradzik","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16722","ServerKey":"pl181","X":428,"Y":393},{"Bonus":0,"Continent":"K65","ID":16723,"Name":"CALL 1064","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16723","ServerKey":"pl181","X":555,"Y":615},{"Bonus":0,"Continent":"K56","ID":16724,"Name":"036 dudek2222","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16724","ServerKey":"pl181","X":626,"Y":513},{"Bonus":0,"Continent":"K35","ID":16725,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16725","ServerKey":"pl181","X":523,"Y":373},{"Bonus":0,"Continent":"K56","ID":16726,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16726","ServerKey":"pl181","X":616,"Y":553},{"Bonus":0,"Continent":"K46","ID":16727,"Name":"609|426 Wioska barbarzyƄska12","PlayerID":6822957,"Points":9487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16727","ServerKey":"pl181","X":609,"Y":426},{"Bonus":0,"Continent":"K64","ID":16728,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16728","ServerKey":"pl181","X":424,"Y":607},{"Bonus":4,"Continent":"K46","ID":16729,"Name":"010 Kioto","PlayerID":7092442,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16729","ServerKey":"pl181","X":626,"Y":476},{"Bonus":0,"Continent":"K56","ID":16730,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16730","ServerKey":"pl181","X":603,"Y":574},{"Bonus":0,"Continent":"K56","ID":16731,"Name":"009 Jokkmokk","PlayerID":699272880,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16731","ServerKey":"pl181","X":609,"Y":567},{"Bonus":0,"Continent":"K35","ID":16732,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16732","ServerKey":"pl181","X":508,"Y":371},{"Bonus":0,"Continent":"K46","ID":16733,"Name":"Wioska 050","PlayerID":848971079,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16733","ServerKey":"pl181","X":634,"Y":497},{"Bonus":0,"Continent":"K53","ID":16734,"Name":"33. Wioska 33","PlayerID":849091769,"Points":9108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16734","ServerKey":"pl181","X":389,"Y":566},{"Bonus":0,"Continent":"K35","ID":16736,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16736","ServerKey":"pl181","X":526,"Y":373},{"Bonus":0,"Continent":"K65","ID":16737,"Name":"kathare","PlayerID":873575,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16737","ServerKey":"pl181","X":547,"Y":621},{"Bonus":0,"Continent":"K53","ID":16738,"Name":"Knowhere","PlayerID":699723284,"Points":3837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16738","ServerKey":"pl181","X":363,"Y":500},{"Bonus":0,"Continent":"K35","ID":16740,"Name":"020 019","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16740","ServerKey":"pl181","X":547,"Y":379},{"Bonus":0,"Continent":"K65","ID":16741,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16741","ServerKey":"pl181","X":507,"Y":627},{"Bonus":0,"Continent":"K43","ID":16742,"Name":"szlachcic","PlayerID":698807570,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16742","ServerKey":"pl181","X":386,"Y":467},{"Bonus":0,"Continent":"K44","ID":16743,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16743","ServerKey":"pl181","X":421,"Y":401},{"Bonus":0,"Continent":"K55","ID":16744,"Name":"-002- K55","PlayerID":8096537,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16744","ServerKey":"pl181","X":591,"Y":595},{"Bonus":0,"Continent":"K53","ID":16745,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16745","ServerKey":"pl181","X":376,"Y":529},{"Bonus":0,"Continent":"K44","ID":16746,"Name":"K44 x022","PlayerID":698364331,"Points":7621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16746","ServerKey":"pl181","X":463,"Y":420},{"Bonus":0,"Continent":"K34","ID":16747,"Name":"084","PlayerID":698364331,"Points":8662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16747","ServerKey":"pl181","X":422,"Y":384},{"Bonus":0,"Continent":"K44","ID":16748,"Name":"FKG 01-20","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16748","ServerKey":"pl181","X":418,"Y":402},{"Bonus":0,"Continent":"K34","ID":16749,"Name":"VN Siren Tium","PlayerID":699883079,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16749","ServerKey":"pl181","X":469,"Y":372},{"Bonus":0,"Continent":"K35","ID":16750,"Name":"016","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16750","ServerKey":"pl181","X":503,"Y":375},{"Bonus":0,"Continent":"K43","ID":16751,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16751","ServerKey":"pl181","X":380,"Y":455},{"Bonus":0,"Continent":"K64","ID":16752,"Name":"A23 Wioska barbarzyƄska","PlayerID":849037407,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16752","ServerKey":"pl181","X":463,"Y":625},{"Bonus":0,"Continent":"K65","ID":16753,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16753","ServerKey":"pl181","X":537,"Y":613},{"Bonus":0,"Continent":"K53","ID":16754,"Name":"031","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16754","ServerKey":"pl181","X":378,"Y":531},{"Bonus":0,"Continent":"K44","ID":16755,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16755","ServerKey":"pl181","X":401,"Y":419},{"Bonus":0,"Continent":"K56","ID":16756,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16756","ServerKey":"pl181","X":618,"Y":553},{"Bonus":0,"Continent":"K35","ID":16757,"Name":"A READY","PlayerID":1553947,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16757","ServerKey":"pl181","X":584,"Y":399},{"Bonus":0,"Continent":"K34","ID":16758,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16758","ServerKey":"pl181","X":490,"Y":376},{"Bonus":0,"Continent":"K53","ID":16759,"Name":"Wioska","PlayerID":849084005,"Points":5622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16759","ServerKey":"pl181","X":375,"Y":520},{"Bonus":0,"Continent":"K35","ID":16760,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16760","ServerKey":"pl181","X":557,"Y":382},{"Bonus":0,"Continent":"K53","ID":16761,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16761","ServerKey":"pl181","X":377,"Y":539},{"Bonus":0,"Continent":"K56","ID":16762,"Name":"010","PlayerID":8428196,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16762","ServerKey":"pl181","X":620,"Y":546},{"Bonus":0,"Continent":"K54","ID":16763,"Name":"0Wioska barbarzyƄska","PlayerID":699189792,"Points":5013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16763","ServerKey":"pl181","X":470,"Y":514},{"Bonus":0,"Continent":"K56","ID":16764,"Name":"Julia","PlayerID":699737356,"Points":9259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16764","ServerKey":"pl181","X":610,"Y":569},{"Bonus":0,"Continent":"K65","ID":16765,"Name":"0438","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16765","ServerKey":"pl181","X":545,"Y":618},{"Bonus":0,"Continent":"K64","ID":16766,"Name":"020","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16766","ServerKey":"pl181","X":471,"Y":629},{"Bonus":0,"Continent":"K53","ID":16767,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16767","ServerKey":"pl181","X":377,"Y":546},{"Bonus":0,"Continent":"K44","ID":16768,"Name":"0063 b55","PlayerID":3909522,"Points":6853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16768","ServerKey":"pl181","X":452,"Y":433},{"Bonus":0,"Continent":"K35","ID":16769,"Name":"029. Wioska barbarzyƄska","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16769","ServerKey":"pl181","X":577,"Y":397},{"Bonus":0,"Continent":"K64","ID":16770,"Name":"030","PlayerID":849084985,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16770","ServerKey":"pl181","X":446,"Y":615},{"Bonus":0,"Continent":"K53","ID":16771,"Name":"Wioska","PlayerID":849084005,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16771","ServerKey":"pl181","X":381,"Y":554},{"Bonus":0,"Continent":"K43","ID":16772,"Name":"s181eo21","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16772","ServerKey":"pl181","X":381,"Y":456},{"Bonus":0,"Continent":"K55","ID":16773,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16773","ServerKey":"pl181","X":588,"Y":594},{"Bonus":0,"Continent":"K64","ID":16774,"Name":"025","PlayerID":699878511,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16774","ServerKey":"pl181","X":496,"Y":631},{"Bonus":0,"Continent":"K64","ID":16775,"Name":"110","PlayerID":849084985,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16775","ServerKey":"pl181","X":460,"Y":621},{"Bonus":0,"Continent":"K35","ID":16776,"Name":"Wioska barbarzyƄska1","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16776","ServerKey":"pl181","X":509,"Y":370},{"Bonus":0,"Continent":"K43","ID":16777,"Name":"Westcoast.019","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16777","ServerKey":"pl181","X":392,"Y":436},{"Bonus":0,"Continent":"K46","ID":16778,"Name":"608|428 Wioska barbarzyƄska18","PlayerID":6822957,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16778","ServerKey":"pl181","X":608,"Y":428},{"Bonus":0,"Continent":"K46","ID":16779,"Name":"Gattacka","PlayerID":699298370,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16779","ServerKey":"pl181","X":605,"Y":422},{"Bonus":0,"Continent":"K56","ID":16780,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16780","ServerKey":"pl181","X":619,"Y":552},{"Bonus":0,"Continent":"K43","ID":16781,"Name":"Westcoast.030","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16781","ServerKey":"pl181","X":388,"Y":439},{"Bonus":0,"Continent":"K34","ID":16782,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16782","ServerKey":"pl181","X":436,"Y":386},{"Bonus":0,"Continent":"K34","ID":16783,"Name":"003","PlayerID":699402816,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16783","ServerKey":"pl181","X":421,"Y":398},{"Bonus":0,"Continent":"K43","ID":16784,"Name":"Westcoast.072","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16784","ServerKey":"pl181","X":390,"Y":428},{"Bonus":0,"Continent":"K43","ID":16785,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16785","ServerKey":"pl181","X":389,"Y":478},{"Bonus":0,"Continent":"K43","ID":16786,"Name":"A0126","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16786","ServerKey":"pl181","X":373,"Y":490},{"Bonus":0,"Continent":"K46","ID":16787,"Name":"610|429 Wioska barbarzyƄska20","PlayerID":6822957,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16787","ServerKey":"pl181","X":610,"Y":429},{"Bonus":0,"Continent":"K53","ID":16788,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16788","ServerKey":"pl181","X":381,"Y":555},{"Bonus":0,"Continent":"K34","ID":16789,"Name":"022","PlayerID":849010255,"Points":8582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16789","ServerKey":"pl181","X":481,"Y":374},{"Bonus":0,"Continent":"K35","ID":16791,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16791","ServerKey":"pl181","X":544,"Y":378},{"Bonus":0,"Continent":"K54","ID":16792,"Name":"0005","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16792","ServerKey":"pl181","X":414,"Y":594},{"Bonus":0,"Continent":"K56","ID":16793,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16793","ServerKey":"pl181","X":622,"Y":548},{"Bonus":0,"Continent":"K55","ID":16794,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16794","ServerKey":"pl181","X":593,"Y":597},{"Bonus":0,"Continent":"K64","ID":16795,"Name":"008","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16795","ServerKey":"pl181","X":492,"Y":630},{"Bonus":0,"Continent":"K56","ID":16796,"Name":"024 Agenci","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16796","ServerKey":"pl181","X":626,"Y":521},{"Bonus":0,"Continent":"K65","ID":16797,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16797","ServerKey":"pl181","X":516,"Y":629},{"Bonus":0,"Continent":"K45","ID":16799,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16799","ServerKey":"pl181","X":591,"Y":406},{"Bonus":0,"Continent":"K43","ID":16800,"Name":"Mniejsze zƂo 0025","PlayerID":699794765,"Points":8875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16800","ServerKey":"pl181","X":372,"Y":477},{"Bonus":0,"Continent":"K46","ID":16802,"Name":"Gattacka","PlayerID":699298370,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16802","ServerKey":"pl181","X":602,"Y":423},{"Bonus":0,"Continent":"K43","ID":16803,"Name":"Mniejsze zƂo 0035","PlayerID":699794765,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16803","ServerKey":"pl181","X":372,"Y":470},{"Bonus":0,"Continent":"K35","ID":16804,"Name":"021 022","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16804","ServerKey":"pl181","X":545,"Y":379},{"Bonus":0,"Continent":"K65","ID":16805,"Name":"Gra pozorĂłw?","PlayerID":699785935,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16805","ServerKey":"pl181","X":579,"Y":600},{"Bonus":0,"Continent":"K35","ID":16806,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16806","ServerKey":"pl181","X":515,"Y":369},{"Bonus":0,"Continent":"K65","ID":16807,"Name":"028","PlayerID":699878511,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16807","ServerKey":"pl181","X":509,"Y":627},{"Bonus":0,"Continent":"K43","ID":16808,"Name":"Westcoast.046","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16808","ServerKey":"pl181","X":395,"Y":429},{"Bonus":0,"Continent":"K56","ID":16809,"Name":"*048*","PlayerID":698670524,"Points":2557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16809","ServerKey":"pl181","X":631,"Y":500},{"Bonus":7,"Continent":"K34","ID":16810,"Name":"Konfederacja +","PlayerID":848915730,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16810","ServerKey":"pl181","X":452,"Y":379},{"Bonus":0,"Continent":"K65","ID":16811,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16811","ServerKey":"pl181","X":511,"Y":625},{"Bonus":0,"Continent":"K43","ID":16812,"Name":"A0082","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16812","ServerKey":"pl181","X":373,"Y":476},{"Bonus":0,"Continent":"K56","ID":16813,"Name":"Szlachcic 017","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16813","ServerKey":"pl181","X":625,"Y":539},{"Bonus":0,"Continent":"K65","ID":16814,"Name":"005","PlayerID":699567608,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16814","ServerKey":"pl181","X":563,"Y":609},{"Bonus":0,"Continent":"K56","ID":16815,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16815","ServerKey":"pl181","X":604,"Y":574},{"Bonus":0,"Continent":"K46","ID":16816,"Name":"#004.505|509","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16816","ServerKey":"pl181","X":624,"Y":460},{"Bonus":0,"Continent":"K35","ID":16817,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16817","ServerKey":"pl181","X":556,"Y":382},{"Bonus":0,"Continent":"K43","ID":16818,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16818","ServerKey":"pl181","X":379,"Y":463},{"Bonus":0,"Continent":"K46","ID":16819,"Name":"Piwna 08","PlayerID":699812007,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16819","ServerKey":"pl181","X":612,"Y":432},{"Bonus":2,"Continent":"K53","ID":16820,"Name":"Pobozowisko","PlayerID":699513260,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16820","ServerKey":"pl181","X":393,"Y":572},{"Bonus":0,"Continent":"K65","ID":16821,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16821","ServerKey":"pl181","X":512,"Y":627},{"Bonus":0,"Continent":"K64","ID":16822,"Name":"NIERAJ03","PlayerID":8729672,"Points":10249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16822","ServerKey":"pl181","X":450,"Y":622},{"Bonus":0,"Continent":"K55","ID":16824,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16824","ServerKey":"pl181","X":585,"Y":598},{"Bonus":0,"Continent":"K55","ID":16825,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16825","ServerKey":"pl181","X":597,"Y":589},{"Bonus":0,"Continent":"K64","ID":16826,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16826","ServerKey":"pl181","X":435,"Y":611},{"Bonus":0,"Continent":"K56","ID":16827,"Name":"Vasperland_019","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16827","ServerKey":"pl181","X":629,"Y":517},{"Bonus":8,"Continent":"K45","ID":16828,"Name":"0004","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16828","ServerKey":"pl181","X":584,"Y":400},{"Bonus":0,"Continent":"K44","ID":16829,"Name":"Zielona cebulka","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16829","ServerKey":"pl181","X":416,"Y":406},{"Bonus":0,"Continent":"K43","ID":16830,"Name":"A0290","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16830","ServerKey":"pl181","X":370,"Y":487},{"Bonus":0,"Continent":"K43","ID":16831,"Name":"001","PlayerID":848921536,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16831","ServerKey":"pl181","X":391,"Y":424},{"Bonus":0,"Continent":"K34","ID":16832,"Name":"VN Saladin","PlayerID":699883079,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16832","ServerKey":"pl181","X":468,"Y":375},{"Bonus":0,"Continent":"K35","ID":16833,"Name":"012. Vengerberg","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16833","ServerKey":"pl181","X":576,"Y":397},{"Bonus":0,"Continent":"K46","ID":16834,"Name":"Piwna 16","PlayerID":699812007,"Points":6535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16834","ServerKey":"pl181","X":613,"Y":434},{"Bonus":0,"Continent":"K65","ID":16835,"Name":"013","PlayerID":699878511,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16835","ServerKey":"pl181","X":502,"Y":629},{"Bonus":0,"Continent":"K55","ID":16836,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16836","ServerKey":"pl181","X":506,"Y":588},{"Bonus":0,"Continent":"K53","ID":16837,"Name":"019","PlayerID":8908002,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16837","ServerKey":"pl181","X":378,"Y":533},{"Bonus":0,"Continent":"K53","ID":16838,"Name":"Pobozowisko","PlayerID":699513260,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16838","ServerKey":"pl181","X":394,"Y":574},{"Bonus":0,"Continent":"K54","ID":16839,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16839","ServerKey":"pl181","X":411,"Y":591},{"Bonus":0,"Continent":"K65","ID":16840,"Name":"031","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16840","ServerKey":"pl181","X":501,"Y":623},{"Bonus":0,"Continent":"K34","ID":16841,"Name":"VN Nobunaga Hazama","PlayerID":699883079,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16841","ServerKey":"pl181","X":475,"Y":374},{"Bonus":0,"Continent":"K53","ID":16842,"Name":"Murcia cuatro","PlayerID":698916948,"Points":3396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16842","ServerKey":"pl181","X":391,"Y":567},{"Bonus":0,"Continent":"K46","ID":16843,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16843","ServerKey":"pl181","X":608,"Y":435},{"Bonus":0,"Continent":"K53","ID":16844,"Name":"Kasztan","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16844","ServerKey":"pl181","X":372,"Y":506},{"Bonus":0,"Continent":"K56","ID":16845,"Name":"B017","PlayerID":9314079,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16845","ServerKey":"pl181","X":630,"Y":503},{"Bonus":0,"Continent":"K65","ID":16846,"Name":"Boxes of Shinra Property","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16846","ServerKey":"pl181","X":527,"Y":628},{"Bonus":0,"Continent":"K53","ID":16848,"Name":"Akacja","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16848","ServerKey":"pl181","X":371,"Y":502},{"Bonus":0,"Continent":"K35","ID":16849,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16849","ServerKey":"pl181","X":518,"Y":375},{"Bonus":0,"Continent":"K53","ID":16850,"Name":"010","PlayerID":6853693,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16850","ServerKey":"pl181","X":371,"Y":524},{"Bonus":0,"Continent":"K55","ID":16851,"Name":"005","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16851","ServerKey":"pl181","X":580,"Y":599},{"Bonus":0,"Continent":"K65","ID":16852,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16852","ServerKey":"pl181","X":510,"Y":630},{"Bonus":0,"Continent":"K56","ID":16853,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16853","ServerKey":"pl181","X":621,"Y":550},{"Bonus":9,"Continent":"K54","ID":16854,"Name":"Pobozowisko","PlayerID":699513260,"Points":8599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16854","ServerKey":"pl181","X":413,"Y":598},{"Bonus":0,"Continent":"K45","ID":16855,"Name":"049","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16855","ServerKey":"pl181","X":561,"Y":406},{"Bonus":0,"Continent":"K46","ID":16856,"Name":"Wioska barbarzyƄska","PlayerID":8192845,"Points":3843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16856","ServerKey":"pl181","X":600,"Y":415},{"Bonus":0,"Continent":"K53","ID":16857,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16857","ServerKey":"pl181","X":373,"Y":513},{"Bonus":0,"Continent":"K43","ID":16858,"Name":"A0118","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16858","ServerKey":"pl181","X":368,"Y":494},{"Bonus":0,"Continent":"K46","ID":16859,"Name":"085. GardƂo","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16859","ServerKey":"pl181","X":627,"Y":468},{"Bonus":4,"Continent":"K46","ID":16860,"Name":"007 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16860","ServerKey":"pl181","X":625,"Y":457},{"Bonus":0,"Continent":"K56","ID":16861,"Name":"[004]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16861","ServerKey":"pl181","X":624,"Y":544},{"Bonus":0,"Continent":"K53","ID":16862,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16862","ServerKey":"pl181","X":374,"Y":532},{"Bonus":0,"Continent":"K35","ID":16863,"Name":"014","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16863","ServerKey":"pl181","X":555,"Y":382},{"Bonus":0,"Continent":"K56","ID":16864,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16864","ServerKey":"pl181","X":620,"Y":554},{"Bonus":0,"Continent":"K45","ID":16865,"Name":"114","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16865","ServerKey":"pl181","X":588,"Y":407},{"Bonus":0,"Continent":"K53","ID":16866,"Name":"022","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16866","ServerKey":"pl181","X":378,"Y":532},{"Bonus":0,"Continent":"K53","ID":16867,"Name":"025 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16867","ServerKey":"pl181","X":387,"Y":563},{"Bonus":0,"Continent":"K54","ID":16868,"Name":"Pobozowisko","PlayerID":699513260,"Points":9136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16868","ServerKey":"pl181","X":415,"Y":598},{"Bonus":0,"Continent":"K34","ID":16869,"Name":"Konradzik","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16869","ServerKey":"pl181","X":427,"Y":391},{"Bonus":0,"Continent":"K53","ID":16870,"Name":"ZachĂłd - 004","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16870","ServerKey":"pl181","X":396,"Y":575},{"Bonus":5,"Continent":"K46","ID":16871,"Name":"B001","PlayerID":9314079,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16871","ServerKey":"pl181","X":628,"Y":494},{"Bonus":0,"Continent":"K54","ID":16872,"Name":"C Pld 001 Kraina kebaba","PlayerID":849084740,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16872","ServerKey":"pl181","X":408,"Y":588},{"Bonus":0,"Continent":"K43","ID":16873,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16873","ServerKey":"pl181","X":374,"Y":484},{"Bonus":0,"Continent":"K64","ID":16874,"Name":"054 OZDR","PlayerID":699336777,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16874","ServerKey":"pl181","X":467,"Y":628},{"Bonus":0,"Continent":"K43","ID":16875,"Name":"Brat447 XXX","PlayerID":699262350,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16875","ServerKey":"pl181","X":369,"Y":499},{"Bonus":0,"Continent":"K54","ID":16876,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16876","ServerKey":"pl181","X":411,"Y":594},{"Bonus":0,"Continent":"K34","ID":16877,"Name":"K34 - [081] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16877","ServerKey":"pl181","X":451,"Y":381},{"Bonus":0,"Continent":"K45","ID":16878,"Name":"086","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16878","ServerKey":"pl181","X":582,"Y":404},{"Bonus":0,"Continent":"K64","ID":16879,"Name":"072 KUZYNI mehehehe","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16879","ServerKey":"pl181","X":480,"Y":630},{"Bonus":0,"Continent":"K65","ID":16880,"Name":"Ruins of the Sector 7","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16880","ServerKey":"pl181","X":529,"Y":628},{"Bonus":0,"Continent":"K56","ID":16881,"Name":"[010]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16881","ServerKey":"pl181","X":621,"Y":542},{"Bonus":0,"Continent":"K64","ID":16882,"Name":"046. F64D","PlayerID":699494488,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16882","ServerKey":"pl181","X":485,"Y":630},{"Bonus":0,"Continent":"K64","ID":16883,"Name":"040.","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16883","ServerKey":"pl181","X":485,"Y":625},{"Bonus":0,"Continent":"K56","ID":16884,"Name":"Papa","PlayerID":699737356,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16884","ServerKey":"pl181","X":613,"Y":568},{"Bonus":0,"Continent":"K53","ID":16885,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16885","ServerKey":"pl181","X":373,"Y":519},{"Bonus":0,"Continent":"K44","ID":16886,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16886","ServerKey":"pl181","X":402,"Y":415},{"Bonus":0,"Continent":"K44","ID":16887,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16887","ServerKey":"pl181","X":408,"Y":407},{"Bonus":0,"Continent":"K54","ID":16888,"Name":"Pobozowisko","PlayerID":699513260,"Points":10620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16888","ServerKey":"pl181","X":408,"Y":593},{"Bonus":0,"Continent":"K43","ID":16889,"Name":"Westcoast.070","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16889","ServerKey":"pl181","X":393,"Y":428},{"Bonus":0,"Continent":"K34","ID":16890,"Name":"K34 x011","PlayerID":698364331,"Points":6293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16890","ServerKey":"pl181","X":444,"Y":380},{"Bonus":0,"Continent":"K34","ID":16891,"Name":"VN Yi Seong-Gye","PlayerID":699883079,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16891","ServerKey":"pl181","X":466,"Y":376},{"Bonus":0,"Continent":"K53","ID":16892,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16892","ServerKey":"pl181","X":373,"Y":505},{"Bonus":0,"Continent":"K56","ID":16893,"Name":"013","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16893","ServerKey":"pl181","X":630,"Y":527},{"Bonus":0,"Continent":"K46","ID":16894,"Name":"613|432 010 Podarta Strona","PlayerID":6822957,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16894","ServerKey":"pl181","X":613,"Y":432},{"Bonus":3,"Continent":"K34","ID":16895,"Name":"Konfederacja +","PlayerID":848915730,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16895","ServerKey":"pl181","X":455,"Y":380},{"Bonus":0,"Continent":"K64","ID":16897,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16897","ServerKey":"pl181","X":433,"Y":613},{"Bonus":0,"Continent":"K46","ID":16898,"Name":"#010.500|497","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16898","ServerKey":"pl181","X":619,"Y":448},{"Bonus":0,"Continent":"K53","ID":16899,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16899","ServerKey":"pl181","X":397,"Y":573},{"Bonus":0,"Continent":"K53","ID":16900,"Name":"Brat447","PlayerID":699262350,"Points":7278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16900","ServerKey":"pl181","X":368,"Y":508},{"Bonus":0,"Continent":"K46","ID":16901,"Name":"[204] WEST","PlayerID":848985692,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16901","ServerKey":"pl181","X":619,"Y":452},{"Bonus":0,"Continent":"K35","ID":16902,"Name":"South K35","PlayerID":699146580,"Points":9060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16902","ServerKey":"pl181","X":576,"Y":392},{"Bonus":0,"Continent":"K35","ID":16903,"Name":"U-5","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16903","ServerKey":"pl181","X":548,"Y":377},{"Bonus":0,"Continent":"K46","ID":16904,"Name":"A003","PlayerID":9314079,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16904","ServerKey":"pl181","X":626,"Y":497},{"Bonus":0,"Continent":"K35","ID":16905,"Name":"Ressier","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16905","ServerKey":"pl181","X":510,"Y":374},{"Bonus":0,"Continent":"K64","ID":16906,"Name":"023","PlayerID":699878511,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16906","ServerKey":"pl181","X":497,"Y":626},{"Bonus":0,"Continent":"K53","ID":16907,"Name":"017 Fasol podziękowaƂ","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16907","ServerKey":"pl181","X":389,"Y":551},{"Bonus":0,"Continent":"K56","ID":16908,"Name":"Taran 005","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16908","ServerKey":"pl181","X":625,"Y":526},{"Bonus":0,"Continent":"K54","ID":16909,"Name":"Pobozowisko","PlayerID":699513260,"Points":10302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16909","ServerKey":"pl181","X":411,"Y":597},{"Bonus":0,"Continent":"K43","ID":16910,"Name":"A0175","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16910","ServerKey":"pl181","X":371,"Y":470},{"Bonus":0,"Continent":"K43","ID":16911,"Name":"0028","PlayerID":3698627,"Points":10447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16911","ServerKey":"pl181","X":375,"Y":463},{"Bonus":0,"Continent":"K65","ID":16912,"Name":"0146","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16912","ServerKey":"pl181","X":553,"Y":621},{"Bonus":0,"Continent":"K34","ID":16913,"Name":"030","PlayerID":849010255,"Points":7223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16913","ServerKey":"pl181","X":491,"Y":371},{"Bonus":6,"Continent":"K65","ID":16914,"Name":"SSJ 012","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16914","ServerKey":"pl181","X":515,"Y":630},{"Bonus":0,"Continent":"K44","ID":16916,"Name":"FKG 01-29","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16916","ServerKey":"pl181","X":415,"Y":402},{"Bonus":0,"Continent":"K43","ID":16917,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16917","ServerKey":"pl181","X":372,"Y":499},{"Bonus":0,"Continent":"K43","ID":16918,"Name":"Westcoast.078","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16918","ServerKey":"pl181","X":386,"Y":435},{"Bonus":6,"Continent":"K44","ID":16919,"Name":"Osada koczownikĂłw","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16919","ServerKey":"pl181","X":403,"Y":415},{"Bonus":0,"Continent":"K56","ID":16920,"Name":"[007]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16920","ServerKey":"pl181","X":620,"Y":540},{"Bonus":0,"Continent":"K35","ID":16921,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":6607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16921","ServerKey":"pl181","X":539,"Y":374},{"Bonus":0,"Continent":"K35","ID":16923,"Name":"33 im OrƂowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16923","ServerKey":"pl181","X":577,"Y":396},{"Bonus":0,"Continent":"K43","ID":16924,"Name":"Westcoast.053","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16924","ServerKey":"pl181","X":397,"Y":423},{"Bonus":0,"Continent":"K54","ID":16925,"Name":"Pobozowisko","PlayerID":699513260,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16925","ServerKey":"pl181","X":401,"Y":581},{"Bonus":0,"Continent":"K64","ID":16926,"Name":"40002","PlayerID":848915531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16926","ServerKey":"pl181","X":488,"Y":631},{"Bonus":0,"Continent":"K35","ID":16927,"Name":"C 006","PlayerID":6384450,"Points":9154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16927","ServerKey":"pl181","X":579,"Y":395},{"Bonus":0,"Continent":"K43","ID":16928,"Name":"A0176","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16928","ServerKey":"pl181","X":376,"Y":475},{"Bonus":0,"Continent":"K53","ID":16929,"Name":"Brat447","PlayerID":699262350,"Points":7069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16929","ServerKey":"pl181","X":368,"Y":506},{"Bonus":0,"Continent":"K54","ID":16930,"Name":"C Zach 003 Rudziniec","PlayerID":849084740,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16930","ServerKey":"pl181","X":403,"Y":578},{"Bonus":0,"Continent":"K53","ID":16931,"Name":"Pobozowisko","PlayerID":699513260,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16931","ServerKey":"pl181","X":395,"Y":579},{"Bonus":0,"Continent":"K64","ID":16932,"Name":"060 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16932","ServerKey":"pl181","X":465,"Y":627},{"Bonus":0,"Continent":"K43","ID":16933,"Name":"s2 Wioska barbarzyƄska","PlayerID":7462660,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16933","ServerKey":"pl181","X":399,"Y":415},{"Bonus":0,"Continent":"K34","ID":16934,"Name":"041","PlayerID":699783765,"Points":10638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16934","ServerKey":"pl181","X":432,"Y":391},{"Bonus":0,"Continent":"K64","ID":16935,"Name":"Wioska barbarzyƄska","PlayerID":699494488,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16935","ServerKey":"pl181","X":479,"Y":630},{"Bonus":0,"Continent":"K35","ID":16936,"Name":"Polska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16936","ServerKey":"pl181","X":541,"Y":375},{"Bonus":0,"Continent":"K45","ID":16937,"Name":"089.","PlayerID":8788366,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16937","ServerKey":"pl181","X":501,"Y":491},{"Bonus":0,"Continent":"K44","ID":16938,"Name":"Xyz","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16938","ServerKey":"pl181","X":436,"Y":444},{"Bonus":0,"Continent":"K46","ID":16939,"Name":"001 Wioska gazela","PlayerID":699671454,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16939","ServerKey":"pl181","X":622,"Y":464},{"Bonus":0,"Continent":"K65","ID":16940,"Name":"073","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16940","ServerKey":"pl181","X":569,"Y":607},{"Bonus":7,"Continent":"K43","ID":16941,"Name":"Osada koczownikĂłw","PlayerID":3698627,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16941","ServerKey":"pl181","X":377,"Y":459},{"Bonus":0,"Continent":"K56","ID":16942,"Name":"C002 Yarikawa","PlayerID":8096537,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16942","ServerKey":"pl181","X":615,"Y":556},{"Bonus":0,"Continent":"K64","ID":16943,"Name":"0011 Wioska barbarzyƄska","PlayerID":9060641,"Points":10092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16943","ServerKey":"pl181","X":423,"Y":601},{"Bonus":0,"Continent":"K64","ID":16944,"Name":"0064","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16944","ServerKey":"pl181","X":457,"Y":621},{"Bonus":0,"Continent":"K43","ID":16945,"Name":"A0083","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16945","ServerKey":"pl181","X":371,"Y":494},{"Bonus":0,"Continent":"K53","ID":16946,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16946","ServerKey":"pl181","X":374,"Y":513},{"Bonus":0,"Continent":"K64","ID":16947,"Name":"050 OZDR","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16947","ServerKey":"pl181","X":469,"Y":628},{"Bonus":4,"Continent":"K53","ID":16948,"Name":"012","PlayerID":6853693,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16948","ServerKey":"pl181","X":376,"Y":546},{"Bonus":0,"Continent":"K35","ID":16950,"Name":"009","PlayerID":1424656,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16950","ServerKey":"pl181","X":568,"Y":391},{"Bonus":0,"Continent":"K34","ID":16951,"Name":"VN Atylla","PlayerID":699883079,"Points":9558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16951","ServerKey":"pl181","X":467,"Y":375},{"Bonus":0,"Continent":"K34","ID":16952,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16952","ServerKey":"pl181","X":459,"Y":376},{"Bonus":0,"Continent":"K55","ID":16953,"Name":"Ruch135","PlayerID":6929240,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16953","ServerKey":"pl181","X":593,"Y":572},{"Bonus":0,"Continent":"K55","ID":16954,"Name":"017","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16954","ServerKey":"pl181","X":597,"Y":587},{"Bonus":6,"Continent":"K34","ID":16955,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16955","ServerKey":"pl181","X":453,"Y":377},{"Bonus":0,"Continent":"K34","ID":16956,"Name":"047","PlayerID":698739350,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16956","ServerKey":"pl181","X":484,"Y":370},{"Bonus":0,"Continent":"K64","ID":16957,"Name":"032","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16957","ServerKey":"pl181","X":470,"Y":626},{"Bonus":0,"Continent":"K35","ID":16958,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16958","ServerKey":"pl181","X":543,"Y":378},{"Bonus":0,"Continent":"K46","ID":16959,"Name":"Jaaa","PlayerID":698635863,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16959","ServerKey":"pl181","X":613,"Y":441},{"Bonus":0,"Continent":"K64","ID":16960,"Name":"40004","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16960","ServerKey":"pl181","X":483,"Y":629},{"Bonus":0,"Continent":"K43","ID":16961,"Name":"A0127","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16961","ServerKey":"pl181","X":369,"Y":484},{"Bonus":0,"Continent":"K43","ID":16962,"Name":"Westcoast.093","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16962","ServerKey":"pl181","X":386,"Y":437},{"Bonus":0,"Continent":"K64","ID":16963,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16963","ServerKey":"pl181","X":432,"Y":612},{"Bonus":0,"Continent":"K53","ID":16964,"Name":"027","PlayerID":6853693,"Points":5465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16964","ServerKey":"pl181","X":371,"Y":526},{"Bonus":0,"Continent":"K44","ID":16965,"Name":"005 VC Palarnia","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16965","ServerKey":"pl181","X":400,"Y":417},{"Bonus":0,"Continent":"K46","ID":16966,"Name":"014 Okayama","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16966","ServerKey":"pl181","X":626,"Y":483},{"Bonus":0,"Continent":"K34","ID":16967,"Name":"Feed me more 016","PlayerID":699756210,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16967","ServerKey":"pl181","X":485,"Y":380},{"Bonus":0,"Continent":"K43","ID":16968,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16968","ServerKey":"pl181","X":383,"Y":451},{"Bonus":0,"Continent":"K65","ID":16969,"Name":"Sector 1 Slums Area","PlayerID":8199417,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16969","ServerKey":"pl181","X":505,"Y":620},{"Bonus":0,"Continent":"K56","ID":16970,"Name":"011 Meereen","PlayerID":699272880,"Points":10249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16970","ServerKey":"pl181","X":614,"Y":568},{"Bonus":0,"Continent":"K46","ID":16971,"Name":"Jan Krosse","PlayerID":879782,"Points":6655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16971","ServerKey":"pl181","X":629,"Y":480},{"Bonus":0,"Continent":"K35","ID":16972,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16972","ServerKey":"pl181","X":526,"Y":372},{"Bonus":0,"Continent":"K53","ID":16973,"Name":"Wioska","PlayerID":849084005,"Points":7903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16973","ServerKey":"pl181","X":381,"Y":549},{"Bonus":0,"Continent":"K46","ID":16974,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16974","ServerKey":"pl181","X":621,"Y":455},{"Bonus":0,"Continent":"K64","ID":16976,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16976","ServerKey":"pl181","X":424,"Y":608},{"Bonus":0,"Continent":"K65","ID":16977,"Name":"Sony 911","PlayerID":1415009,"Points":10046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16977","ServerKey":"pl181","X":566,"Y":610},{"Bonus":0,"Continent":"K53","ID":16978,"Name":"55. Wioska 55","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16978","ServerKey":"pl181","X":377,"Y":550},{"Bonus":0,"Continent":"K64","ID":16979,"Name":"$$$","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16979","ServerKey":"pl181","X":421,"Y":605},{"Bonus":0,"Continent":"K53","ID":16980,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16980","ServerKey":"pl181","X":375,"Y":514},{"Bonus":0,"Continent":"K64","ID":16981,"Name":"ave why!","PlayerID":698143931,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16981","ServerKey":"pl181","X":459,"Y":631},{"Bonus":6,"Continent":"K56","ID":16982,"Name":"002 osada koniki","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16982","ServerKey":"pl181","X":600,"Y":579},{"Bonus":0,"Continent":"K46","ID":16983,"Name":"013 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16983","ServerKey":"pl181","X":621,"Y":449},{"Bonus":0,"Continent":"K56","ID":16984,"Name":"036","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16984","ServerKey":"pl181","X":629,"Y":512},{"Bonus":0,"Continent":"K56","ID":16985,"Name":"Bocianikson010","PlayerID":7528491,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16985","ServerKey":"pl181","X":618,"Y":546},{"Bonus":0,"Continent":"K53","ID":16986,"Name":"017","PlayerID":6853693,"Points":6141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16986","ServerKey":"pl181","X":372,"Y":524},{"Bonus":0,"Continent":"K46","ID":16987,"Name":"A031","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16987","ServerKey":"pl181","X":615,"Y":455},{"Bonus":0,"Continent":"K65","ID":16988,"Name":"0553","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16988","ServerKey":"pl181","X":554,"Y":619},{"Bonus":0,"Continent":"K56","ID":16989,"Name":"[008]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16989","ServerKey":"pl181","X":626,"Y":533},{"Bonus":0,"Continent":"K65","ID":16990,"Name":"CALL 1066","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16990","ServerKey":"pl181","X":555,"Y":616},{"Bonus":0,"Continent":"K46","ID":16991,"Name":"PocaƂuj mnie prosto w d**e","PlayerID":849094111,"Points":2767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16991","ServerKey":"pl181","X":630,"Y":477},{"Bonus":0,"Continent":"K34","ID":16992,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16992","ServerKey":"pl181","X":422,"Y":396},{"Bonus":0,"Continent":"K65","ID":16993,"Name":"CALL 930","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16993","ServerKey":"pl181","X":507,"Y":628},{"Bonus":0,"Continent":"K64","ID":16994,"Name":"011","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16994","ServerKey":"pl181","X":495,"Y":631},{"Bonus":0,"Continent":"K65","ID":16995,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16995","ServerKey":"pl181","X":577,"Y":602},{"Bonus":0,"Continent":"K35","ID":16996,"Name":"021. Hyperporea","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16996","ServerKey":"pl181","X":571,"Y":389},{"Bonus":0,"Continent":"K53","ID":16997,"Name":"Pobozowisko","PlayerID":699513260,"Points":10914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16997","ServerKey":"pl181","X":399,"Y":586},{"Bonus":0,"Continent":"K34","ID":16998,"Name":"K34 - [070] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16998","ServerKey":"pl181","X":462,"Y":376},{"Bonus":1,"Continent":"K65","ID":16999,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=16999","ServerKey":"pl181","X":535,"Y":621},{"Bonus":0,"Continent":"K34","ID":17000,"Name":"c 000 Wioska","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17000","ServerKey":"pl181","X":419,"Y":396},{"Bonus":0,"Continent":"K53","ID":17001,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17001","ServerKey":"pl181","X":393,"Y":571},{"Bonus":0,"Continent":"K46","ID":17002,"Name":"004 Wioska Witcher","PlayerID":699671454,"Points":9255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17002","ServerKey":"pl181","X":623,"Y":458},{"Bonus":0,"Continent":"K64","ID":17003,"Name":"Ulu-mulu","PlayerID":699697558,"Points":7214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17003","ServerKey":"pl181","X":432,"Y":611},{"Bonus":0,"Continent":"K43","ID":17004,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17004","ServerKey":"pl181","X":374,"Y":480},{"Bonus":0,"Continent":"K56","ID":17005,"Name":"024. Primis","PlayerID":849091866,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17005","ServerKey":"pl181","X":619,"Y":554},{"Bonus":0,"Continent":"K65","ID":17006,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17006","ServerKey":"pl181","X":539,"Y":627},{"Bonus":0,"Continent":"K54","ID":17007,"Name":"005","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17007","ServerKey":"pl181","X":406,"Y":591},{"Bonus":0,"Continent":"K43","ID":17008,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17008","ServerKey":"pl181","X":384,"Y":442},{"Bonus":0,"Continent":"K44","ID":17009,"Name":"FKG 01-32","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17009","ServerKey":"pl181","X":415,"Y":400},{"Bonus":0,"Continent":"K43","ID":17010,"Name":"Westcoast.060","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17010","ServerKey":"pl181","X":387,"Y":430},{"Bonus":0,"Continent":"K56","ID":17011,"Name":"015 Cailin","PlayerID":699272880,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17011","ServerKey":"pl181","X":612,"Y":570},{"Bonus":0,"Continent":"K34","ID":17013,"Name":"yyy","PlayerID":699883079,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17013","ServerKey":"pl181","X":494,"Y":371},{"Bonus":0,"Continent":"K44","ID":17014,"Name":"-048-","PlayerID":9291984,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17014","ServerKey":"pl181","X":467,"Y":434},{"Bonus":0,"Continent":"K34","ID":17015,"Name":".043.","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17015","ServerKey":"pl181","X":494,"Y":369},{"Bonus":0,"Continent":"K35","ID":17016,"Name":"Part XXIX","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17016","ServerKey":"pl181","X":534,"Y":378},{"Bonus":0,"Continent":"K56","ID":17017,"Name":"007.Batura Sar","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17017","ServerKey":"pl181","X":605,"Y":571},{"Bonus":0,"Continent":"K54","ID":17018,"Name":"073 - Ruten","PlayerID":225023,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17018","ServerKey":"pl181","X":422,"Y":593},{"Bonus":0,"Continent":"K53","ID":17019,"Name":"XXX Daleko","PlayerID":699425709,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17019","ServerKey":"pl181","X":372,"Y":527},{"Bonus":9,"Continent":"K64","ID":17020,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17020","ServerKey":"pl181","X":422,"Y":603},{"Bonus":0,"Continent":"K65","ID":17021,"Name":"0035","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17021","ServerKey":"pl181","X":555,"Y":617},{"Bonus":0,"Continent":"K35","ID":17022,"Name":"Wioska barbarzyƄska2","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17022","ServerKey":"pl181","X":508,"Y":368},{"Bonus":0,"Continent":"K53","ID":17023,"Name":"011 Teufel666","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17023","ServerKey":"pl181","X":389,"Y":563},{"Bonus":0,"Continent":"K64","ID":17024,"Name":"108","PlayerID":849084985,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17024","ServerKey":"pl181","X":443,"Y":614},{"Bonus":0,"Continent":"K56","ID":17025,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17025","ServerKey":"pl181","X":601,"Y":576},{"Bonus":7,"Continent":"K55","ID":17026,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17026","ServerKey":"pl181","X":582,"Y":597},{"Bonus":0,"Continent":"K43","ID":17027,"Name":"Westcoast.023","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17027","ServerKey":"pl181","X":390,"Y":432},{"Bonus":0,"Continent":"K35","ID":17029,"Name":"181","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17029","ServerKey":"pl181","X":573,"Y":395},{"Bonus":0,"Continent":"K56","ID":17030,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17030","ServerKey":"pl181","X":604,"Y":578},{"Bonus":0,"Continent":"K64","ID":17031,"Name":"048","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17031","ServerKey":"pl181","X":479,"Y":629},{"Bonus":0,"Continent":"K65","ID":17032,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17032","ServerKey":"pl181","X":533,"Y":629},{"Bonus":0,"Continent":"K55","ID":17033,"Name":"065","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17033","ServerKey":"pl181","X":584,"Y":595},{"Bonus":0,"Continent":"K46","ID":17034,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17034","ServerKey":"pl181","X":619,"Y":446},{"Bonus":0,"Continent":"K53","ID":17035,"Name":"Pobozowisko","PlayerID":699513260,"Points":10960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17035","ServerKey":"pl181","X":398,"Y":581},{"Bonus":0,"Continent":"K64","ID":17036,"Name":"0067","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17036","ServerKey":"pl181","X":456,"Y":621},{"Bonus":0,"Continent":"K53","ID":17037,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17037","ServerKey":"pl181","X":367,"Y":504},{"Bonus":0,"Continent":"K64","ID":17038,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17038","ServerKey":"pl181","X":422,"Y":607},{"Bonus":0,"Continent":"K64","ID":17039,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17039","ServerKey":"pl181","X":418,"Y":601},{"Bonus":0,"Continent":"K46","ID":17040,"Name":"Piwna 04","PlayerID":699812007,"Points":8528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17040","ServerKey":"pl181","X":616,"Y":439},{"Bonus":0,"Continent":"K64","ID":17041,"Name":"0550","PlayerID":698659980,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17041","ServerKey":"pl181","X":429,"Y":608},{"Bonus":0,"Continent":"K46","ID":17042,"Name":"Gattacka","PlayerID":699298370,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17042","ServerKey":"pl181","X":602,"Y":426},{"Bonus":0,"Continent":"K35","ID":17043,"Name":"XXXX","PlayerID":699883079,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17043","ServerKey":"pl181","X":504,"Y":370},{"Bonus":4,"Continent":"K56","ID":17044,"Name":"006 Ystad","PlayerID":699272880,"Points":10551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17044","ServerKey":"pl181","X":607,"Y":570},{"Bonus":0,"Continent":"K53","ID":17045,"Name":"030 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17045","ServerKey":"pl181","X":386,"Y":559},{"Bonus":0,"Continent":"K53","ID":17046,"Name":"009 legarda","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17046","ServerKey":"pl181","X":387,"Y":557},{"Bonus":0,"Continent":"K45","ID":17047,"Name":"36 im Diemina","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17047","ServerKey":"pl181","X":584,"Y":401},{"Bonus":0,"Continent":"K35","ID":17049,"Name":"023","PlayerID":1424656,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17049","ServerKey":"pl181","X":562,"Y":387},{"Bonus":0,"Continent":"K64","ID":17050,"Name":"0314","PlayerID":698659980,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17050","ServerKey":"pl181","X":428,"Y":606},{"Bonus":0,"Continent":"K43","ID":17051,"Name":"Tys je pofirtany mamlosie","PlayerID":699711723,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17051","ServerKey":"pl181","X":377,"Y":466},{"Bonus":0,"Continent":"K43","ID":17052,"Name":"A0084","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17052","ServerKey":"pl181","X":373,"Y":474},{"Bonus":0,"Continent":"K34","ID":17053,"Name":".044.","PlayerID":698489071,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17053","ServerKey":"pl181","X":497,"Y":368},{"Bonus":0,"Continent":"K56","ID":17054,"Name":"BACÓWKA |016|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17054","ServerKey":"pl181","X":633,"Y":502},{"Bonus":0,"Continent":"K34","ID":17055,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17055","ServerKey":"pl181","X":493,"Y":371},{"Bonus":0,"Continent":"K34","ID":17056,"Name":"048","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17056","ServerKey":"pl181","X":482,"Y":368},{"Bonus":0,"Continent":"K35","ID":17057,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17057","ServerKey":"pl181","X":534,"Y":375},{"Bonus":0,"Continent":"K34","ID":17058,"Name":"0131","PlayerID":699431255,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17058","ServerKey":"pl181","X":448,"Y":379},{"Bonus":0,"Continent":"K65","ID":17059,"Name":"SSJ 029","PlayerID":699364813,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17059","ServerKey":"pl181","X":506,"Y":632},{"Bonus":0,"Continent":"K53","ID":17060,"Name":"-043-","PlayerID":9167250,"Points":7413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17060","ServerKey":"pl181","X":386,"Y":567},{"Bonus":0,"Continent":"K43","ID":17061,"Name":"A0137","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17061","ServerKey":"pl181","X":371,"Y":480},{"Bonus":4,"Continent":"K46","ID":17062,"Name":"Wioska (003)","PlayerID":698232227,"Points":8529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17062","ServerKey":"pl181","X":624,"Y":467},{"Bonus":0,"Continent":"K53","ID":17063,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17063","ServerKey":"pl181","X":377,"Y":530},{"Bonus":0,"Continent":"K43","ID":17064,"Name":"Westcoast.013","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17064","ServerKey":"pl181","X":389,"Y":435},{"Bonus":0,"Continent":"K34","ID":17065,"Name":"K34 x004","PlayerID":698364331,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17065","ServerKey":"pl181","X":445,"Y":380},{"Bonus":0,"Continent":"K53","ID":17066,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17066","ServerKey":"pl181","X":375,"Y":544},{"Bonus":0,"Continent":"K65","ID":17067,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17067","ServerKey":"pl181","X":539,"Y":626},{"Bonus":0,"Continent":"K46","ID":17068,"Name":"023 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17068","ServerKey":"pl181","X":621,"Y":450},{"Bonus":0,"Continent":"K43","ID":17069,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17069","ServerKey":"pl181","X":399,"Y":414},{"Bonus":0,"Continent":"K35","ID":17070,"Name":"019","PlayerID":1424656,"Points":9449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17070","ServerKey":"pl181","X":553,"Y":380},{"Bonus":0,"Continent":"K65","ID":17071,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17071","ServerKey":"pl181","X":535,"Y":622},{"Bonus":6,"Continent":"K34","ID":17072,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":8896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17072","ServerKey":"pl181","X":482,"Y":374},{"Bonus":0,"Continent":"K43","ID":17073,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17073","ServerKey":"pl181","X":377,"Y":456},{"Bonus":0,"Continent":"K46","ID":17074,"Name":"Po PP","PlayerID":9262877,"Points":6399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17074","ServerKey":"pl181","X":608,"Y":422},{"Bonus":0,"Continent":"K35","ID":17075,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17075","ServerKey":"pl181","X":546,"Y":376},{"Bonus":0,"Continent":"K65","ID":17076,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17076","ServerKey":"pl181","X":534,"Y":625},{"Bonus":0,"Continent":"K64","ID":17077,"Name":"0305","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17077","ServerKey":"pl181","X":425,"Y":608},{"Bonus":0,"Continent":"K35","ID":17078,"Name":"205","PlayerID":849064752,"Points":8651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17078","ServerKey":"pl181","X":573,"Y":396},{"Bonus":0,"Continent":"K65","ID":17079,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17079","ServerKey":"pl181","X":510,"Y":629},{"Bonus":0,"Continent":"K56","ID":17080,"Name":"Bocianikson018","PlayerID":7528491,"Points":7392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17080","ServerKey":"pl181","X":622,"Y":540},{"Bonus":0,"Continent":"K43","ID":17081,"Name":"A0085","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17081","ServerKey":"pl181","X":372,"Y":484},{"Bonus":0,"Continent":"K56","ID":17082,"Name":"18 W domach z betonu","PlayerID":9314079,"Points":4872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17082","ServerKey":"pl181","X":630,"Y":519},{"Bonus":0,"Continent":"K43","ID":17083,"Name":"Westcoast.031","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17083","ServerKey":"pl181","X":390,"Y":430},{"Bonus":0,"Continent":"K56","ID":17085,"Name":"010 Qarth","PlayerID":699272880,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17085","ServerKey":"pl181","X":612,"Y":565},{"Bonus":0,"Continent":"K35","ID":17086,"Name":"#0004","PlayerID":7651093,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17086","ServerKey":"pl181","X":519,"Y":372},{"Bonus":0,"Continent":"K56","ID":17087,"Name":"008","PlayerID":8428196,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17087","ServerKey":"pl181","X":619,"Y":546},{"Bonus":0,"Continent":"K64","ID":17088,"Name":"0003 Wioska barbarzyƄska","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17088","ServerKey":"pl181","X":424,"Y":610},{"Bonus":0,"Continent":"K45","ID":17089,"Name":"26 im Gribowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17089","ServerKey":"pl181","X":581,"Y":401},{"Bonus":0,"Continent":"K64","ID":17090,"Name":"Hornvale","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17090","ServerKey":"pl181","X":484,"Y":631},{"Bonus":0,"Continent":"K56","ID":17091,"Name":"Vasperland_021","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17091","ServerKey":"pl181","X":627,"Y":502},{"Bonus":0,"Continent":"K43","ID":17092,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17092","ServerKey":"pl181","X":385,"Y":443},{"Bonus":0,"Continent":"K43","ID":17093,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17093","ServerKey":"pl181","X":378,"Y":450},{"Bonus":0,"Continent":"K56","ID":17094,"Name":"219 |","PlayerID":8000875,"Points":2817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17094","ServerKey":"pl181","X":621,"Y":540},{"Bonus":0,"Continent":"K46","ID":17095,"Name":"Twierdzą 5","PlayerID":848935020,"Points":7409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17095","ServerKey":"pl181","X":625,"Y":476},{"Bonus":0,"Continent":"K44","ID":17096,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17096","ServerKey":"pl181","X":403,"Y":412},{"Bonus":0,"Continent":"K46","ID":17097,"Name":"B010","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17097","ServerKey":"pl181","X":628,"Y":490},{"Bonus":0,"Continent":"K34","ID":17098,"Name":"K34 x021","PlayerID":698364331,"Points":8251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17098","ServerKey":"pl181","X":468,"Y":393},{"Bonus":0,"Continent":"K54","ID":17099,"Name":"Pobozowisko","PlayerID":699513260,"Points":7736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17099","ServerKey":"pl181","X":400,"Y":582},{"Bonus":0,"Continent":"K53","ID":17100,"Name":"007","PlayerID":699510259,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17100","ServerKey":"pl181","X":395,"Y":500},{"Bonus":0,"Continent":"K56","ID":17101,"Name":"Hel 02","PlayerID":698702991,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17101","ServerKey":"pl181","X":613,"Y":563},{"Bonus":0,"Continent":"K64","ID":17102,"Name":"40003","PlayerID":848915531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17102","ServerKey":"pl181","X":488,"Y":632},{"Bonus":0,"Continent":"K46","ID":17103,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17103","ServerKey":"pl181","X":613,"Y":442},{"Bonus":0,"Continent":"K34","ID":17104,"Name":"VN Illumi Zoldyck","PlayerID":699883079,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17104","ServerKey":"pl181","X":461,"Y":375},{"Bonus":0,"Continent":"K34","ID":17105,"Name":"Konradzik","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17105","ServerKey":"pl181","X":427,"Y":394},{"Bonus":0,"Continent":"K35","ID":17107,"Name":"0031","PlayerID":699485250,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17107","ServerKey":"pl181","X":582,"Y":398},{"Bonus":0,"Continent":"K64","ID":17108,"Name":"0010 Wioska barbarzyƄska","PlayerID":9060641,"Points":9434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17108","ServerKey":"pl181","X":423,"Y":602},{"Bonus":0,"Continent":"K43","ID":17109,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17109","ServerKey":"pl181","X":373,"Y":464},{"Bonus":0,"Continent":"K43","ID":17111,"Name":"Westcoast.067","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17111","ServerKey":"pl181","X":387,"Y":440},{"Bonus":6,"Continent":"K35","ID":17112,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17112","ServerKey":"pl181","X":551,"Y":384},{"Bonus":0,"Continent":"K56","ID":17113,"Name":"015","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17113","ServerKey":"pl181","X":600,"Y":583},{"Bonus":0,"Continent":"K64","ID":17114,"Name":"022.","PlayerID":699494488,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17114","ServerKey":"pl181","X":489,"Y":627},{"Bonus":0,"Continent":"K56","ID":17115,"Name":"012 Asshai","PlayerID":699272880,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17115","ServerKey":"pl181","X":611,"Y":572},{"Bonus":0,"Continent":"K44","ID":17116,"Name":"Szulernia","PlayerID":7249451,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17116","ServerKey":"pl181","X":411,"Y":409},{"Bonus":0,"Continent":"K53","ID":17117,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17117","ServerKey":"pl181","X":381,"Y":521},{"Bonus":0,"Continent":"K34","ID":17118,"Name":"Konradzik","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17118","ServerKey":"pl181","X":428,"Y":394},{"Bonus":0,"Continent":"K53","ID":17119,"Name":"Pastorlandia","PlayerID":849030226,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17119","ServerKey":"pl181","X":374,"Y":531},{"Bonus":0,"Continent":"K35","ID":17120,"Name":"033","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17120","ServerKey":"pl181","X":580,"Y":396},{"Bonus":0,"Continent":"K65","ID":17121,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17121","ServerKey":"pl181","X":525,"Y":625},{"Bonus":1,"Continent":"K34","ID":17122,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17122","ServerKey":"pl181","X":426,"Y":392},{"Bonus":0,"Continent":"K65","ID":17123,"Name":"001","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17123","ServerKey":"pl181","X":524,"Y":622},{"Bonus":0,"Continent":"K55","ID":17124,"Name":"-006- K55","PlayerID":8096537,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17124","ServerKey":"pl181","X":595,"Y":592},{"Bonus":0,"Continent":"K64","ID":17125,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17125","ServerKey":"pl181","X":424,"Y":605},{"Bonus":0,"Continent":"K64","ID":17126,"Name":"014","PlayerID":699878511,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17126","ServerKey":"pl181","X":497,"Y":631},{"Bonus":9,"Continent":"K43","ID":17127,"Name":"Westcoast.054","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17127","ServerKey":"pl181","X":394,"Y":422},{"Bonus":0,"Continent":"K34","ID":17128,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17128","ServerKey":"pl181","X":434,"Y":387},{"Bonus":0,"Continent":"K43","ID":17129,"Name":"Westcoast.047","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17129","ServerKey":"pl181","X":396,"Y":428},{"Bonus":0,"Continent":"K55","ID":17130,"Name":"Essa 004","PlayerID":848987051,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17130","ServerKey":"pl181","X":571,"Y":577},{"Bonus":0,"Continent":"K34","ID":17131,"Name":"049","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17131","ServerKey":"pl181","X":475,"Y":371},{"Bonus":0,"Continent":"K43","ID":17132,"Name":"Mniejsze zƂo 0011","PlayerID":699794765,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17132","ServerKey":"pl181","X":375,"Y":478},{"Bonus":2,"Continent":"K34","ID":17133,"Name":"VN Pelagius","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17133","ServerKey":"pl181","X":476,"Y":371},{"Bonus":0,"Continent":"K64","ID":17134,"Name":"047. F64D","PlayerID":699494488,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17134","ServerKey":"pl181","X":484,"Y":630},{"Bonus":0,"Continent":"K35","ID":17135,"Name":"Taran","PlayerID":699170684,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17135","ServerKey":"pl181","X":548,"Y":381},{"Bonus":0,"Continent":"K65","ID":17136,"Name":"0152","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17136","ServerKey":"pl181","X":552,"Y":621},{"Bonus":0,"Continent":"K46","ID":17137,"Name":"Gattacka","PlayerID":699298370,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17137","ServerKey":"pl181","X":604,"Y":423},{"Bonus":0,"Continent":"K53","ID":17138,"Name":"WKS ZAWISZA BDG","PlayerID":9167250,"Points":5885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17138","ServerKey":"pl181","X":391,"Y":566},{"Bonus":0,"Continent":"K64","ID":17139,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17139","ServerKey":"pl181","X":431,"Y":610},{"Bonus":0,"Continent":"K64","ID":17140,"Name":"0009 Wioska Gernot","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17140","ServerKey":"pl181","X":424,"Y":602},{"Bonus":0,"Continent":"K64","ID":17141,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17141","ServerKey":"pl181","X":439,"Y":617},{"Bonus":0,"Continent":"K65","ID":17142,"Name":"SSJ 047","PlayerID":699364813,"Points":9330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17142","ServerKey":"pl181","X":505,"Y":632},{"Bonus":0,"Continent":"K43","ID":17143,"Name":"Westcoast.034","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17143","ServerKey":"pl181","X":395,"Y":423},{"Bonus":0,"Continent":"K46","ID":17144,"Name":"#020.499|489","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17144","ServerKey":"pl181","X":618,"Y":440},{"Bonus":0,"Continent":"K53","ID":17145,"Name":"028 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17145","ServerKey":"pl181","X":385,"Y":561},{"Bonus":0,"Continent":"K35","ID":17146,"Name":"Taran","PlayerID":699170684,"Points":9173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17146","ServerKey":"pl181","X":549,"Y":377},{"Bonus":0,"Continent":"K46","ID":17147,"Name":"090. ZƂy Kraj","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17147","ServerKey":"pl181","X":625,"Y":468},{"Bonus":1,"Continent":"K64","ID":17148,"Name":"ave why!","PlayerID":698143931,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17148","ServerKey":"pl181","X":455,"Y":622},{"Bonus":0,"Continent":"K44","ID":17149,"Name":"PRO8L3M","PlayerID":7491093,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17149","ServerKey":"pl181","X":470,"Y":485},{"Bonus":0,"Continent":"K35","ID":17150,"Name":"R-4","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17150","ServerKey":"pl181","X":556,"Y":384},{"Bonus":0,"Continent":"K54","ID":17152,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17152","ServerKey":"pl181","X":410,"Y":591},{"Bonus":0,"Continent":"K64","ID":17153,"Name":"026.","PlayerID":699494488,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17153","ServerKey":"pl181","X":491,"Y":627},{"Bonus":0,"Continent":"K64","ID":17154,"Name":"008","PlayerID":699878511,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17154","ServerKey":"pl181","X":498,"Y":632},{"Bonus":0,"Continent":"K53","ID":17155,"Name":"R012","PlayerID":8607734,"Points":5516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17155","ServerKey":"pl181","X":391,"Y":576},{"Bonus":0,"Continent":"K65","ID":17156,"Name":"HORUS","PlayerID":7756002,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17156","ServerKey":"pl181","X":524,"Y":629},{"Bonus":0,"Continent":"K45","ID":17157,"Name":"Belvedere 014","PlayerID":699756210,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17157","ServerKey":"pl181","X":580,"Y":413},{"Bonus":0,"Continent":"K53","ID":17158,"Name":"Pobozowisko","PlayerID":699513260,"Points":10966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17158","ServerKey":"pl181","X":395,"Y":575},{"Bonus":0,"Continent":"K56","ID":17159,"Name":"Wioska 030","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17159","ServerKey":"pl181","X":603,"Y":579},{"Bonus":1,"Continent":"K54","ID":17160,"Name":"Pobozowisko","PlayerID":699513260,"Points":10767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17160","ServerKey":"pl181","X":400,"Y":587},{"Bonus":0,"Continent":"K34","ID":17162,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17162","ServerKey":"pl181","X":435,"Y":391},{"Bonus":0,"Continent":"K35","ID":17163,"Name":"#0001 - CSA","PlayerID":7651093,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17163","ServerKey":"pl181","X":520,"Y":379},{"Bonus":0,"Continent":"K44","ID":17164,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17164","ServerKey":"pl181","X":410,"Y":407},{"Bonus":0,"Continent":"K54","ID":17165,"Name":"Wioska barbarzyƄska","PlayerID":699697558,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17165","ServerKey":"pl181","X":417,"Y":598},{"Bonus":0,"Continent":"K46","ID":17166,"Name":"Jan 029 Ć»yczę powodzenia Nord K","PlayerID":879782,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17166","ServerKey":"pl181","X":637,"Y":499},{"Bonus":0,"Continent":"K43","ID":17168,"Name":"Knowhere","PlayerID":699723284,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17168","ServerKey":"pl181","X":397,"Y":490},{"Bonus":0,"Continent":"K53","ID":17169,"Name":"Murcia dos","PlayerID":698916948,"Points":4082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17169","ServerKey":"pl181","X":390,"Y":567},{"Bonus":0,"Continent":"K65","ID":17170,"Name":"0147","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17170","ServerKey":"pl181","X":550,"Y":622},{"Bonus":0,"Continent":"K43","ID":17171,"Name":"Westcoast.055","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17171","ServerKey":"pl181","X":397,"Y":419},{"Bonus":3,"Continent":"K65","ID":17172,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17172","ServerKey":"pl181","X":572,"Y":607},{"Bonus":0,"Continent":"K45","ID":17173,"Name":"Powolutku","PlayerID":848985692,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17173","ServerKey":"pl181","X":582,"Y":419},{"Bonus":0,"Continent":"K43","ID":17174,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17174","ServerKey":"pl181","X":373,"Y":481},{"Bonus":0,"Continent":"K34","ID":17175,"Name":"0123","PlayerID":699431255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17175","ServerKey":"pl181","X":448,"Y":381},{"Bonus":0,"Continent":"K45","ID":17176,"Name":"Belvedere 015","PlayerID":699756210,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17176","ServerKey":"pl181","X":588,"Y":406},{"Bonus":0,"Continent":"K46","ID":17177,"Name":"005 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17177","ServerKey":"pl181","X":604,"Y":417},{"Bonus":0,"Continent":"K34","ID":17178,"Name":"VN Takeda","PlayerID":699883079,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17178","ServerKey":"pl181","X":466,"Y":373},{"Bonus":0,"Continent":"K65","ID":17179,"Name":"z 044","PlayerID":699342219,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17179","ServerKey":"pl181","X":578,"Y":604},{"Bonus":0,"Continent":"K43","ID":17180,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17180","ServerKey":"pl181","X":381,"Y":441},{"Bonus":0,"Continent":"K45","ID":17181,"Name":"B011","PlayerID":699761749,"Points":7687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17181","ServerKey":"pl181","X":598,"Y":411},{"Bonus":0,"Continent":"K64","ID":17183,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17183","ServerKey":"pl181","X":425,"Y":607},{"Bonus":0,"Continent":"K35","ID":17185,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17185","ServerKey":"pl181","X":526,"Y":369},{"Bonus":3,"Continent":"K64","ID":17186,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17186","ServerKey":"pl181","X":437,"Y":611},{"Bonus":0,"Continent":"K34","ID":17187,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17187","ServerKey":"pl181","X":487,"Y":368},{"Bonus":0,"Continent":"K46","ID":17188,"Name":"014 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17188","ServerKey":"pl181","X":623,"Y":449},{"Bonus":0,"Continent":"K65","ID":17189,"Name":"HORUS","PlayerID":7756002,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17189","ServerKey":"pl181","X":517,"Y":624},{"Bonus":0,"Continent":"K54","ID":17190,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17190","ServerKey":"pl181","X":408,"Y":594},{"Bonus":0,"Continent":"K34","ID":17191,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17191","ServerKey":"pl181","X":446,"Y":382},{"Bonus":0,"Continent":"K43","ID":17192,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17192","ServerKey":"pl181","X":384,"Y":439},{"Bonus":0,"Continent":"K34","ID":17193,"Name":"Zeta Reticuli S3","PlayerID":699323302,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17193","ServerKey":"pl181","X":426,"Y":390},{"Bonus":0,"Continent":"K53","ID":17194,"Name":"Wioska","PlayerID":849084005,"Points":9197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17194","ServerKey":"pl181","X":378,"Y":546},{"Bonus":0,"Continent":"K53","ID":17195,"Name":"Oeste","PlayerID":698916948,"Points":5301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17195","ServerKey":"pl181","X":385,"Y":553},{"Bonus":4,"Continent":"K34","ID":17196,"Name":"K34 - [074] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17196","ServerKey":"pl181","X":450,"Y":382},{"Bonus":0,"Continent":"K43","ID":17197,"Name":"Westcoast.074","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17197","ServerKey":"pl181","X":399,"Y":423},{"Bonus":0,"Continent":"K35","ID":17198,"Name":"025","PlayerID":1424656,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17198","ServerKey":"pl181","X":564,"Y":386},{"Bonus":0,"Continent":"K43","ID":17199,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17199","ServerKey":"pl181","X":381,"Y":450},{"Bonus":0,"Continent":"K35","ID":17200,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17200","ServerKey":"pl181","X":545,"Y":375},{"Bonus":4,"Continent":"K56","ID":17201,"Name":"034 |","PlayerID":8000875,"Points":10105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17201","ServerKey":"pl181","X":622,"Y":543},{"Bonus":0,"Continent":"K34","ID":17202,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17202","ServerKey":"pl181","X":421,"Y":393},{"Bonus":0,"Continent":"K65","ID":17203,"Name":"0154","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17203","ServerKey":"pl181","X":547,"Y":624},{"Bonus":4,"Continent":"K44","ID":17204,"Name":"FKG 01-03","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17204","ServerKey":"pl181","X":414,"Y":403},{"Bonus":0,"Continent":"K43","ID":17205,"Name":"A0128","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17205","ServerKey":"pl181","X":369,"Y":496},{"Bonus":0,"Continent":"K44","ID":17206,"Name":"s5 Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17206","ServerKey":"pl181","X":401,"Y":416},{"Bonus":0,"Continent":"K53","ID":17207,"Name":"A0304","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17207","ServerKey":"pl181","X":373,"Y":506},{"Bonus":0,"Continent":"K56","ID":17208,"Name":"0030","PlayerID":6510480,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17208","ServerKey":"pl181","X":625,"Y":528},{"Bonus":0,"Continent":"K56","ID":17209,"Name":"012","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17209","ServerKey":"pl181","X":611,"Y":579},{"Bonus":0,"Continent":"K43","ID":17210,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17210","ServerKey":"pl181","X":381,"Y":440},{"Bonus":0,"Continent":"K45","ID":17211,"Name":"Belvedere 016","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17211","ServerKey":"pl181","X":585,"Y":410},{"Bonus":0,"Continent":"K65","ID":17212,"Name":"029","PlayerID":699878511,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17212","ServerKey":"pl181","X":509,"Y":628},{"Bonus":0,"Continent":"K64","ID":17213,"Name":"023","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17213","ServerKey":"pl181","X":470,"Y":628},{"Bonus":0,"Continent":"K64","ID":17214,"Name":"Pobozowisko","PlayerID":699513260,"Points":8803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17214","ServerKey":"pl181","X":415,"Y":602},{"Bonus":0,"Continent":"K53","ID":17215,"Name":"Wioska","PlayerID":849084005,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17215","ServerKey":"pl181","X":374,"Y":523},{"Bonus":0,"Continent":"K56","ID":17216,"Name":"0018. C -","PlayerID":7125212,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17216","ServerKey":"pl181","X":627,"Y":504},{"Bonus":0,"Continent":"K34","ID":17217,"Name":"Wioska Strange123","PlayerID":699191449,"Points":3950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17217","ServerKey":"pl181","X":455,"Y":376},{"Bonus":0,"Continent":"K46","ID":17218,"Name":"Gattacka","PlayerID":699298370,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17218","ServerKey":"pl181","X":604,"Y":425},{"Bonus":0,"Continent":"K65","ID":17219,"Name":"005","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17219","ServerKey":"pl181","X":523,"Y":629},{"Bonus":0,"Continent":"K34","ID":17220,"Name":"[0058]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17220","ServerKey":"pl181","X":417,"Y":396},{"Bonus":0,"Continent":"K34","ID":17221,"Name":"K34 - [067] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17221","ServerKey":"pl181","X":461,"Y":376},{"Bonus":0,"Continent":"K45","ID":17222,"Name":"146 MIKOX 019","PlayerID":699491076,"Points":9765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17222","ServerKey":"pl181","X":593,"Y":413},{"Bonus":0,"Continent":"K56","ID":17223,"Name":"W.181/14","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17223","ServerKey":"pl181","X":616,"Y":537},{"Bonus":0,"Continent":"K65","ID":17224,"Name":"012","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17224","ServerKey":"pl181","X":578,"Y":602},{"Bonus":0,"Continent":"K45","ID":17225,"Name":"BossMan (=)","PlayerID":699368887,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17225","ServerKey":"pl181","X":561,"Y":462},{"Bonus":0,"Continent":"K65","ID":17226,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17226","ServerKey":"pl181","X":538,"Y":626},{"Bonus":0,"Continent":"K56","ID":17227,"Name":"20 Art Brud","PlayerID":699377151,"Points":2435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17227","ServerKey":"pl181","X":626,"Y":519},{"Bonus":8,"Continent":"K64","ID":17228,"Name":"055 OZDR","PlayerID":699336777,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17228","ServerKey":"pl181","X":467,"Y":629},{"Bonus":0,"Continent":"K56","ID":17229,"Name":"068","PlayerID":699373599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17229","ServerKey":"pl181","X":630,"Y":524},{"Bonus":0,"Continent":"K56","ID":17230,"Name":"019","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17230","ServerKey":"pl181","X":600,"Y":582},{"Bonus":0,"Continent":"K45","ID":17231,"Name":"A READY","PlayerID":1553947,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17231","ServerKey":"pl181","X":587,"Y":405},{"Bonus":0,"Continent":"K53","ID":17232,"Name":"026 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17232","ServerKey":"pl181","X":387,"Y":561},{"Bonus":0,"Continent":"K56","ID":17233,"Name":"010.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17233","ServerKey":"pl181","X":628,"Y":527},{"Bonus":0,"Continent":"K53","ID":17234,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17234","ServerKey":"pl181","X":393,"Y":577},{"Bonus":0,"Continent":"K55","ID":17235,"Name":"Wioska 023","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17235","ServerKey":"pl181","X":594,"Y":585},{"Bonus":8,"Continent":"K56","ID":17236,"Name":"012.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17236","ServerKey":"pl181","X":628,"Y":530},{"Bonus":0,"Continent":"K35","ID":17237,"Name":"C 004","PlayerID":6384450,"Points":10283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17237","ServerKey":"pl181","X":580,"Y":394},{"Bonus":0,"Continent":"K53","ID":17238,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17238","ServerKey":"pl181","X":378,"Y":536},{"Bonus":0,"Continent":"K45","ID":17239,"Name":"Belvedere 019","PlayerID":699756210,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17239","ServerKey":"pl181","X":587,"Y":404},{"Bonus":0,"Continent":"K65","ID":17240,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17240","ServerKey":"pl181","X":527,"Y":630},{"Bonus":5,"Continent":"K65","ID":17241,"Name":"RTS 1","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17241","ServerKey":"pl181","X":570,"Y":614},{"Bonus":0,"Continent":"K44","ID":17242,"Name":"Darma","PlayerID":356642,"Points":9429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17242","ServerKey":"pl181","X":419,"Y":400},{"Bonus":0,"Continent":"K43","ID":17243,"Name":"A0119","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17243","ServerKey":"pl181","X":372,"Y":493},{"Bonus":7,"Continent":"K45","ID":17244,"Name":"32 im Naumowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17244","ServerKey":"pl181","X":580,"Y":400},{"Bonus":0,"Continent":"K46","ID":17246,"Name":"004 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17246","ServerKey":"pl181","X":602,"Y":418},{"Bonus":0,"Continent":"K34","ID":17247,"Name":"K34 x014","PlayerID":698364331,"Points":7944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17247","ServerKey":"pl181","X":444,"Y":379},{"Bonus":0,"Continent":"K53","ID":17248,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17248","ServerKey":"pl181","X":396,"Y":581},{"Bonus":0,"Continent":"K64","ID":17249,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17249","ServerKey":"pl181","X":426,"Y":605},{"Bonus":0,"Continent":"K45","ID":17250,"Name":"Belvedere 017","PlayerID":699756210,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17250","ServerKey":"pl181","X":584,"Y":411},{"Bonus":0,"Continent":"K35","ID":17251,"Name":"025. Thangorodrim","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17251","ServerKey":"pl181","X":565,"Y":387},{"Bonus":0,"Continent":"K65","ID":17252,"Name":"CALL 931","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17252","ServerKey":"pl181","X":508,"Y":629},{"Bonus":4,"Continent":"K56","ID":17253,"Name":"032 |","PlayerID":8000875,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17253","ServerKey":"pl181","X":623,"Y":545},{"Bonus":0,"Continent":"K43","ID":17254,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17254","ServerKey":"pl181","X":382,"Y":448},{"Bonus":0,"Continent":"K46","ID":17255,"Name":"*0007 Baraki","PlayerID":8459255,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17255","ServerKey":"pl181","X":609,"Y":431},{"Bonus":0,"Continent":"K56","ID":17256,"Name":"November","PlayerID":699737356,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17256","ServerKey":"pl181","X":613,"Y":571},{"Bonus":0,"Continent":"K53","ID":17257,"Name":"Sasowy RĂłg","PlayerID":849030226,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17257","ServerKey":"pl181","X":373,"Y":537},{"Bonus":0,"Continent":"K65","ID":17258,"Name":"Zakręcona 2","PlayerID":8627359,"Points":9159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17258","ServerKey":"pl181","X":575,"Y":604},{"Bonus":0,"Continent":"K35","ID":17259,"Name":"R-2","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17259","ServerKey":"pl181","X":561,"Y":385},{"Bonus":0,"Continent":"K45","ID":17260,"Name":"B 001","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17260","ServerKey":"pl181","X":586,"Y":411},{"Bonus":0,"Continent":"K53","ID":17261,"Name":"A0310","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17261","ServerKey":"pl181","X":369,"Y":519},{"Bonus":0,"Continent":"K34","ID":17262,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17262","ServerKey":"pl181","X":425,"Y":395},{"Bonus":0,"Continent":"K43","ID":17263,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17263","ServerKey":"pl181","X":381,"Y":451},{"Bonus":0,"Continent":"K46","ID":17264,"Name":"[215] WEST","PlayerID":848985692,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17264","ServerKey":"pl181","X":608,"Y":454},{"Bonus":0,"Continent":"K35","ID":17265,"Name":"063","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17265","ServerKey":"pl181","X":563,"Y":388},{"Bonus":0,"Continent":"K54","ID":17266,"Name":"002","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17266","ServerKey":"pl181","X":404,"Y":586},{"Bonus":0,"Continent":"K64","ID":17267,"Name":"029.","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17267","ServerKey":"pl181","X":491,"Y":629},{"Bonus":0,"Continent":"K53","ID":17268,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17268","ServerKey":"pl181","X":378,"Y":537},{"Bonus":0,"Continent":"K53","ID":17269,"Name":"Tank 015. Bez przebaczenia","PlayerID":698290577,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17269","ServerKey":"pl181","X":396,"Y":511},{"Bonus":0,"Continent":"K35","ID":17270,"Name":"Wioska barbarzyƄska3","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17270","ServerKey":"pl181","X":506,"Y":369},{"Bonus":0,"Continent":"K46","ID":17271,"Name":"B011","PlayerID":9314079,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17271","ServerKey":"pl181","X":630,"Y":493},{"Bonus":0,"Continent":"K65","ID":17272,"Name":"001","PlayerID":699878511,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17272","ServerKey":"pl181","X":502,"Y":632},{"Bonus":0,"Continent":"K43","ID":17273,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17273","ServerKey":"pl181","X":378,"Y":465},{"Bonus":0,"Continent":"K43","ID":17274,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17274","ServerKey":"pl181","X":382,"Y":439},{"Bonus":0,"Continent":"K34","ID":17275,"Name":"K34 - [075] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17275","ServerKey":"pl181","X":464,"Y":381},{"Bonus":0,"Continent":"K35","ID":17276,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17276","ServerKey":"pl181","X":550,"Y":382},{"Bonus":1,"Continent":"K43","ID":17277,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17277","ServerKey":"pl181","X":385,"Y":444},{"Bonus":0,"Continent":"K43","ID":17279,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17279","ServerKey":"pl181","X":372,"Y":466},{"Bonus":0,"Continent":"K46","ID":17281,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17281","ServerKey":"pl181","X":614,"Y":442},{"Bonus":0,"Continent":"K34","ID":17283,"Name":"maney","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17283","ServerKey":"pl181","X":420,"Y":395},{"Bonus":0,"Continent":"K43","ID":17284,"Name":"Wioska Kurji","PlayerID":699265922,"Points":9216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17284","ServerKey":"pl181","X":368,"Y":484},{"Bonus":0,"Continent":"K56","ID":17285,"Name":"Wioska","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17285","ServerKey":"pl181","X":611,"Y":571},{"Bonus":0,"Continent":"K53","ID":17286,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17286","ServerKey":"pl181","X":376,"Y":547},{"Bonus":0,"Continent":"K56","ID":17287,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17287","ServerKey":"pl181","X":615,"Y":557},{"Bonus":0,"Continent":"K43","ID":17288,"Name":"Westcoast.048","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17288","ServerKey":"pl181","X":395,"Y":418},{"Bonus":0,"Continent":"K46","ID":17289,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17289","ServerKey":"pl181","X":617,"Y":445},{"Bonus":0,"Continent":"K56","ID":17290,"Name":"016","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17290","ServerKey":"pl181","X":630,"Y":529},{"Bonus":0,"Continent":"K46","ID":17291,"Name":"006 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17291","ServerKey":"pl181","X":603,"Y":418},{"Bonus":0,"Continent":"K35","ID":17292,"Name":"007. Nilfgaard","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17292","ServerKey":"pl181","X":567,"Y":388},{"Bonus":0,"Continent":"K45","ID":17293,"Name":"Belvedere 021","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17293","ServerKey":"pl181","X":590,"Y":407},{"Bonus":0,"Continent":"K56","ID":17294,"Name":"030","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17294","ServerKey":"pl181","X":634,"Y":520},{"Bonus":0,"Continent":"K46","ID":17295,"Name":"031 lecimy kurv@ tutaj","PlayerID":699272633,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17295","ServerKey":"pl181","X":624,"Y":470},{"Bonus":0,"Continent":"K34","ID":17296,"Name":".020.","PlayerID":698489071,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17296","ServerKey":"pl181","X":494,"Y":372},{"Bonus":0,"Continent":"K53","ID":17297,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17297","ServerKey":"pl181","X":375,"Y":542},{"Bonus":0,"Continent":"K65","ID":17299,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17299","ServerKey":"pl181","X":517,"Y":628},{"Bonus":0,"Continent":"K35","ID":17300,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17300","ServerKey":"pl181","X":558,"Y":380},{"Bonus":0,"Continent":"K53","ID":17301,"Name":"ZachĂłd - 013","PlayerID":225023,"Points":7935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17301","ServerKey":"pl181","X":389,"Y":571},{"Bonus":1,"Continent":"K43","ID":17302,"Name":"Westcoast.015","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17302","ServerKey":"pl181","X":389,"Y":436},{"Bonus":0,"Continent":"K46","ID":17303,"Name":"West 06","PlayerID":698702991,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17303","ServerKey":"pl181","X":629,"Y":477},{"Bonus":0,"Continent":"K35","ID":17304,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17304","ServerKey":"pl181","X":516,"Y":368},{"Bonus":0,"Continent":"K64","ID":17305,"Name":"094","PlayerID":849084985,"Points":9264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17305","ServerKey":"pl181","X":449,"Y":622},{"Bonus":0,"Continent":"K35","ID":17306,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17306","ServerKey":"pl181","X":550,"Y":376},{"Bonus":0,"Continent":"K45","ID":17307,"Name":"D020","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17307","ServerKey":"pl181","X":594,"Y":407},{"Bonus":0,"Continent":"K65","ID":17308,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17308","ServerKey":"pl181","X":529,"Y":614},{"Bonus":0,"Continent":"K35","ID":17309,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17309","ServerKey":"pl181","X":529,"Y":371},{"Bonus":0,"Continent":"K45","ID":17310,"Name":"Belvedere 022","PlayerID":699756210,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17310","ServerKey":"pl181","X":588,"Y":405},{"Bonus":0,"Continent":"K64","ID":17311,"Name":"#026 A","PlayerID":698143931,"Points":9261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17311","ServerKey":"pl181","X":456,"Y":624},{"Bonus":0,"Continent":"K34","ID":17312,"Name":"001 Samotnia","PlayerID":698739350,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17312","ServerKey":"pl181","X":497,"Y":381},{"Bonus":0,"Continent":"K53","ID":17313,"Name":"058 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17313","ServerKey":"pl181","X":384,"Y":563},{"Bonus":0,"Continent":"K44","ID":17314,"Name":"A034","PlayerID":8740199,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17314","ServerKey":"pl181","X":450,"Y":409},{"Bonus":0,"Continent":"K43","ID":17315,"Name":"A0086","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17315","ServerKey":"pl181","X":369,"Y":488},{"Bonus":0,"Continent":"K65","ID":17316,"Name":"0000","PlayerID":848915531,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17316","ServerKey":"pl181","X":531,"Y":616},{"Bonus":0,"Continent":"K54","ID":17317,"Name":"Pobozowisko","PlayerID":699513260,"Points":7775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17317","ServerKey":"pl181","X":415,"Y":597},{"Bonus":0,"Continent":"K53","ID":17318,"Name":"Byczyna","PlayerID":849030226,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17318","ServerKey":"pl181","X":376,"Y":535},{"Bonus":0,"Continent":"K64","ID":17319,"Name":"Ulu-mulu","PlayerID":699697558,"Points":5674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17319","ServerKey":"pl181","X":419,"Y":604},{"Bonus":0,"Continent":"K53","ID":17320,"Name":"028","PlayerID":6853693,"Points":6098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17320","ServerKey":"pl181","X":368,"Y":522},{"Bonus":0,"Continent":"K54","ID":17321,"Name":"Pobozowisko","PlayerID":699513260,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17321","ServerKey":"pl181","X":402,"Y":589},{"Bonus":0,"Continent":"K53","ID":17322,"Name":"029","PlayerID":6853693,"Points":5790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17322","ServerKey":"pl181","X":369,"Y":521},{"Bonus":5,"Continent":"K64","ID":17323,"Name":"067","PlayerID":849084985,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17323","ServerKey":"pl181","X":441,"Y":613},{"Bonus":0,"Continent":"K53","ID":17324,"Name":"059 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17324","ServerKey":"pl181","X":382,"Y":563},{"Bonus":0,"Continent":"K46","ID":17326,"Name":"Jaaa","PlayerID":698635863,"Points":10622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17326","ServerKey":"pl181","X":623,"Y":455},{"Bonus":7,"Continent":"K53","ID":17327,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17327","ServerKey":"pl181","X":373,"Y":512},{"Bonus":0,"Continent":"K45","ID":17329,"Name":"[307] Chorągiewka na wietrze","PlayerID":848985692,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17329","ServerKey":"pl181","X":589,"Y":423},{"Bonus":0,"Continent":"K56","ID":17330,"Name":"Szlachcic 012","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17330","ServerKey":"pl181","X":623,"Y":539},{"Bonus":0,"Continent":"K44","ID":17331,"Name":"FKG 01-26","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17331","ServerKey":"pl181","X":414,"Y":405},{"Bonus":0,"Continent":"K64","ID":17332,"Name":"#027 A","PlayerID":698585370,"Points":9930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17332","ServerKey":"pl181","X":454,"Y":624},{"Bonus":0,"Continent":"K64","ID":17333,"Name":"Ulu-mulu","PlayerID":699697558,"Points":7274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17333","ServerKey":"pl181","X":428,"Y":612},{"Bonus":0,"Continent":"K64","ID":17334,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17334","ServerKey":"pl181","X":436,"Y":616},{"Bonus":4,"Continent":"K43","ID":17335,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17335","ServerKey":"pl181","X":382,"Y":449},{"Bonus":0,"Continent":"K53","ID":17336,"Name":"008 O rety rety, lecą karety!","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17336","ServerKey":"pl181","X":389,"Y":569},{"Bonus":0,"Continent":"K44","ID":17337,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17337","ServerKey":"pl181","X":404,"Y":414},{"Bonus":0,"Continent":"K43","ID":17338,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17338","ServerKey":"pl181","X":396,"Y":415},{"Bonus":0,"Continent":"K35","ID":17339,"Name":"016","PlayerID":1424656,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17339","ServerKey":"pl181","X":556,"Y":379},{"Bonus":9,"Continent":"K35","ID":17340,"Name":"001 Monety 1 p600","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17340","ServerKey":"pl181","X":511,"Y":367},{"Bonus":0,"Continent":"K43","ID":17341,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17341","ServerKey":"pl181","X":371,"Y":467},{"Bonus":0,"Continent":"K64","ID":17342,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17342","ServerKey":"pl181","X":438,"Y":617},{"Bonus":0,"Continent":"K43","ID":17343,"Name":"A0132","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17343","ServerKey":"pl181","X":373,"Y":488},{"Bonus":0,"Continent":"K45","ID":17344,"Name":"04 im Owsjenki","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17344","ServerKey":"pl181","X":591,"Y":414},{"Bonus":0,"Continent":"K44","ID":17345,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17345","ServerKey":"pl181","X":405,"Y":410},{"Bonus":9,"Continent":"K44","ID":17346,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17346","ServerKey":"pl181","X":404,"Y":408},{"Bonus":0,"Continent":"K56","ID":17347,"Name":"Wioska 034","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17347","ServerKey":"pl181","X":604,"Y":583},{"Bonus":0,"Continent":"K35","ID":17348,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17348","ServerKey":"pl181","X":546,"Y":375},{"Bonus":0,"Continent":"K34","ID":17349,"Name":"yyyy","PlayerID":699883079,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17349","ServerKey":"pl181","X":497,"Y":371},{"Bonus":0,"Continent":"K55","ID":17350,"Name":"- 127 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17350","ServerKey":"pl181","X":542,"Y":582},{"Bonus":0,"Continent":"K44","ID":17351,"Name":"A-001","PlayerID":8419570,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17351","ServerKey":"pl181","X":415,"Y":405},{"Bonus":0,"Continent":"K45","ID":17352,"Name":"A READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17352","ServerKey":"pl181","X":589,"Y":402},{"Bonus":0,"Continent":"K56","ID":17353,"Name":"Wioska 031","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17353","ServerKey":"pl181","X":602,"Y":585},{"Bonus":0,"Continent":"K35","ID":17354,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17354","ServerKey":"pl181","X":514,"Y":367},{"Bonus":0,"Continent":"K64","ID":17355,"Name":"049. F64D","PlayerID":699494488,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17355","ServerKey":"pl181","X":482,"Y":631},{"Bonus":0,"Continent":"K43","ID":17356,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17356","ServerKey":"pl181","X":374,"Y":465},{"Bonus":0,"Continent":"K44","ID":17358,"Name":"[0090]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17358","ServerKey":"pl181","X":411,"Y":402},{"Bonus":0,"Continent":"K53","ID":17359,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17359","ServerKey":"pl181","X":367,"Y":506},{"Bonus":0,"Continent":"K46","ID":17360,"Name":"Gattacka","PlayerID":699298370,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17360","ServerKey":"pl181","X":603,"Y":423},{"Bonus":0,"Continent":"K65","ID":17361,"Name":"023.","PlayerID":873575,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17361","ServerKey":"pl181","X":565,"Y":613},{"Bonus":0,"Continent":"K43","ID":17362,"Name":"s181eo22","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17362","ServerKey":"pl181","X":378,"Y":457},{"Bonus":0,"Continent":"K56","ID":17363,"Name":"BACÓWKA |018|","PlayerID":7394371,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17363","ServerKey":"pl181","X":630,"Y":501},{"Bonus":0,"Continent":"K35","ID":17364,"Name":"022 021","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17364","ServerKey":"pl181","X":546,"Y":379},{"Bonus":0,"Continent":"K46","ID":17365,"Name":"#062.","PlayerID":556154,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17365","ServerKey":"pl181","X":622,"Y":456},{"Bonus":0,"Continent":"K65","ID":17366,"Name":"Wilczek87","PlayerID":848995242,"Points":9765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17366","ServerKey":"pl181","X":569,"Y":612},{"Bonus":0,"Continent":"K53","ID":17367,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17367","ServerKey":"pl181","X":379,"Y":550},{"Bonus":0,"Continent":"K65","ID":17368,"Name":"WB 02","PlayerID":8627359,"Points":9159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17368","ServerKey":"pl181","X":576,"Y":608},{"Bonus":0,"Continent":"K34","ID":17369,"Name":"0010","PlayerID":699431255,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17369","ServerKey":"pl181","X":442,"Y":382},{"Bonus":0,"Continent":"K65","ID":17370,"Name":"0446","PlayerID":698659980,"Points":8795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17370","ServerKey":"pl181","X":563,"Y":618},{"Bonus":0,"Continent":"K45","ID":17371,"Name":"D019","PlayerID":699761749,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17371","ServerKey":"pl181","X":582,"Y":412},{"Bonus":0,"Continent":"K35","ID":17372,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17372","ServerKey":"pl181","X":527,"Y":370},{"Bonus":0,"Continent":"K35","ID":17373,"Name":"South K35","PlayerID":699146580,"Points":10200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17373","ServerKey":"pl181","X":552,"Y":383},{"Bonus":1,"Continent":"K53","ID":17374,"Name":"Pobozowisko","PlayerID":699513260,"Points":10966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17374","ServerKey":"pl181","X":395,"Y":573},{"Bonus":0,"Continent":"K65","ID":17375,"Name":"015","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17375","ServerKey":"pl181","X":501,"Y":629},{"Bonus":0,"Continent":"K34","ID":17376,"Name":"[0080]","PlayerID":8630972,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17376","ServerKey":"pl181","X":416,"Y":396},{"Bonus":0,"Continent":"K46","ID":17377,"Name":"Piwna 12","PlayerID":699812007,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17377","ServerKey":"pl181","X":614,"Y":436},{"Bonus":0,"Continent":"K43","ID":17378,"Name":"Westcoast.091","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17378","ServerKey":"pl181","X":388,"Y":431},{"Bonus":0,"Continent":"K35","ID":17379,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17379","ServerKey":"pl181","X":507,"Y":366},{"Bonus":0,"Continent":"K53","ID":17380,"Name":"016","PlayerID":6853693,"Points":6121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17380","ServerKey":"pl181","X":371,"Y":523},{"Bonus":0,"Continent":"K64","ID":17381,"Name":"031","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17381","ServerKey":"pl181","X":470,"Y":629},{"Bonus":0,"Continent":"K53","ID":17382,"Name":"027 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17382","ServerKey":"pl181","X":386,"Y":561},{"Bonus":0,"Continent":"K46","ID":17383,"Name":"018 Wioska","PlayerID":699671454,"Points":6381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17383","ServerKey":"pl181","X":630,"Y":467},{"Bonus":0,"Continent":"K56","ID":17384,"Name":"Nowa 01","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17384","ServerKey":"pl181","X":606,"Y":578},{"Bonus":0,"Continent":"K35","ID":17385,"Name":"022. Wioska barbarzyƄska","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17385","ServerKey":"pl181","X":574,"Y":389},{"Bonus":0,"Continent":"K43","ID":17386,"Name":"Mniejsze zƂo 0031","PlayerID":699794765,"Points":8439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17386","ServerKey":"pl181","X":371,"Y":476},{"Bonus":0,"Continent":"K44","ID":17387,"Name":"Wioska .Dwukropek.","PlayerID":698807570,"Points":9417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17387","ServerKey":"pl181","X":400,"Y":451},{"Bonus":0,"Continent":"K45","ID":17388,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17388","ServerKey":"pl181","X":593,"Y":406},{"Bonus":0,"Continent":"K34","ID":17389,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17389","ServerKey":"pl181","X":486,"Y":389},{"Bonus":4,"Continent":"K34","ID":17390,"Name":"zZZ","PlayerID":699658023,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17390","ServerKey":"pl181","X":488,"Y":369},{"Bonus":0,"Continent":"K45","ID":17391,"Name":"0012","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17391","ServerKey":"pl181","X":578,"Y":405},{"Bonus":6,"Continent":"K35","ID":17392,"Name":"040","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17392","ServerKey":"pl181","X":569,"Y":387},{"Bonus":0,"Continent":"K65","ID":17393,"Name":"016","PlayerID":699878511,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17393","ServerKey":"pl181","X":504,"Y":630},{"Bonus":0,"Continent":"K65","ID":17394,"Name":"#0045","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17394","ServerKey":"pl181","X":548,"Y":625},{"Bonus":0,"Continent":"K43","ID":17395,"Name":"Westcoast.075","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17395","ServerKey":"pl181","X":389,"Y":427},{"Bonus":0,"Continent":"K56","ID":17396,"Name":"Szlachcic 014","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17396","ServerKey":"pl181","X":625,"Y":533},{"Bonus":0,"Continent":"K65","ID":17397,"Name":"Sony 911","PlayerID":1415009,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17397","ServerKey":"pl181","X":578,"Y":608},{"Bonus":0,"Continent":"K65","ID":17398,"Name":"#0018","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17398","ServerKey":"pl181","X":546,"Y":626},{"Bonus":0,"Continent":"K43","ID":17399,"Name":"A0213","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17399","ServerKey":"pl181","X":370,"Y":471},{"Bonus":0,"Continent":"K53","ID":17400,"Name":"Cedynia","PlayerID":849030226,"Points":9464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17400","ServerKey":"pl181","X":372,"Y":536},{"Bonus":0,"Continent":"K65","ID":17401,"Name":"Wioska yogi 1","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17401","ServerKey":"pl181","X":548,"Y":609},{"Bonus":0,"Continent":"K53","ID":17402,"Name":"042 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17402","ServerKey":"pl181","X":383,"Y":561},{"Bonus":0,"Continent":"K56","ID":17403,"Name":"BARB","PlayerID":9314079,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17403","ServerKey":"pl181","X":632,"Y":507},{"Bonus":0,"Continent":"K34","ID":17404,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17404","ServerKey":"pl181","X":419,"Y":395},{"Bonus":0,"Continent":"K53","ID":17405,"Name":"Wioska Beniek Pogromca","PlayerID":849030226,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17405","ServerKey":"pl181","X":375,"Y":529},{"Bonus":0,"Continent":"K35","ID":17406,"Name":"Lord Lord Franek .#015","PlayerID":698420691,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17406","ServerKey":"pl181","X":549,"Y":379},{"Bonus":0,"Continent":"K34","ID":17407,"Name":"VN Noelle Silva","PlayerID":699883079,"Points":8985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17407","ServerKey":"pl181","X":466,"Y":372},{"Bonus":0,"Continent":"K35","ID":17408,"Name":"C 007","PlayerID":6384450,"Points":8650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17408","ServerKey":"pl181","X":580,"Y":397},{"Bonus":0,"Continent":"K53","ID":17409,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17409","ServerKey":"pl181","X":377,"Y":542},{"Bonus":0,"Continent":"K54","ID":17410,"Name":"003","PlayerID":9264752,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17410","ServerKey":"pl181","X":404,"Y":585},{"Bonus":0,"Continent":"K35","ID":17411,"Name":"064","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17411","ServerKey":"pl181","X":564,"Y":385},{"Bonus":0,"Continent":"K64","ID":17412,"Name":"009","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17412","ServerKey":"pl181","X":493,"Y":630},{"Bonus":0,"Continent":"K44","ID":17413,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17413","ServerKey":"pl181","X":428,"Y":405},{"Bonus":0,"Continent":"K64","ID":17414,"Name":"0017 Bezimienna","PlayerID":9060641,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17414","ServerKey":"pl181","X":420,"Y":602},{"Bonus":0,"Continent":"K34","ID":17415,"Name":".025.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17415","ServerKey":"pl181","X":496,"Y":369},{"Bonus":0,"Continent":"K45","ID":17416,"Name":"35 im Malkowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17416","ServerKey":"pl181","X":583,"Y":400},{"Bonus":0,"Continent":"K65","ID":17417,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17417","ServerKey":"pl181","X":530,"Y":627},{"Bonus":0,"Continent":"K34","ID":17418,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17418","ServerKey":"pl181","X":439,"Y":383},{"Bonus":0,"Continent":"K54","ID":17419,"Name":"Pobozowisko","PlayerID":699513260,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17419","ServerKey":"pl181","X":408,"Y":596},{"Bonus":0,"Continent":"K64","ID":17420,"Name":"039 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17420","ServerKey":"pl181","X":466,"Y":624},{"Bonus":0,"Continent":"K54","ID":17421,"Name":"068 - FiniteSpace","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17421","ServerKey":"pl181","X":419,"Y":583},{"Bonus":0,"Continent":"K56","ID":17422,"Name":"011","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17422","ServerKey":"pl181","X":609,"Y":579},{"Bonus":0,"Continent":"K64","ID":17423,"Name":"A11 Wioska barbarzyƄska","PlayerID":849037407,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17423","ServerKey":"pl181","X":462,"Y":627},{"Bonus":0,"Continent":"K34","ID":17424,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17424","ServerKey":"pl181","X":472,"Y":387},{"Bonus":0,"Continent":"K43","ID":17425,"Name":"Brat447","PlayerID":699262350,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17425","ServerKey":"pl181","X":374,"Y":492},{"Bonus":0,"Continent":"K45","ID":17426,"Name":"112","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17426","ServerKey":"pl181","X":586,"Y":404},{"Bonus":0,"Continent":"K43","ID":17428,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17428","ServerKey":"pl181","X":375,"Y":454},{"Bonus":0,"Continent":"K64","ID":17429,"Name":"017","PlayerID":699336777,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17429","ServerKey":"pl181","X":471,"Y":628},{"Bonus":0,"Continent":"K53","ID":17430,"Name":"Jarzebina","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17430","ServerKey":"pl181","X":370,"Y":507},{"Bonus":0,"Continent":"K45","ID":17431,"Name":"154 MIKOX 056","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17431","ServerKey":"pl181","X":592,"Y":410},{"Bonus":0,"Continent":"K43","ID":17432,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17432","ServerKey":"pl181","X":382,"Y":441},{"Bonus":0,"Continent":"K34","ID":17433,"Name":"Wiocha","PlayerID":699658023,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17433","ServerKey":"pl181","X":471,"Y":374},{"Bonus":0,"Continent":"K34","ID":17434,"Name":"-1-","PlayerID":699393759,"Points":8777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17434","ServerKey":"pl181","X":460,"Y":376},{"Bonus":0,"Continent":"K34","ID":17435,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17435","ServerKey":"pl181","X":484,"Y":367},{"Bonus":0,"Continent":"K45","ID":17436,"Name":"155 MIKOX 061","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17436","ServerKey":"pl181","X":593,"Y":409},{"Bonus":0,"Continent":"K54","ID":17437,"Name":"Wioska barbarzyƄska","PlayerID":699697558,"Points":6310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17437","ServerKey":"pl181","X":416,"Y":599},{"Bonus":0,"Continent":"K54","ID":17438,"Name":"Pobozowisko","PlayerID":699513260,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17438","ServerKey":"pl181","X":412,"Y":596},{"Bonus":0,"Continent":"K34","ID":17439,"Name":"VN Lemiel Silvamillion","PlayerID":699883079,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17439","ServerKey":"pl181","X":462,"Y":372},{"Bonus":0,"Continent":"K56","ID":17441,"Name":"Wioska 035","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17441","ServerKey":"pl181","X":605,"Y":582},{"Bonus":0,"Continent":"K46","ID":17442,"Name":"088.","PlayerID":849094609,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17442","ServerKey":"pl181","X":635,"Y":489},{"Bonus":0,"Continent":"K46","ID":17443,"Name":"#049.501|533","PlayerID":556154,"Points":9301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17443","ServerKey":"pl181","X":620,"Y":484},{"Bonus":0,"Continent":"K35","ID":17444,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17444","ServerKey":"pl181","X":552,"Y":382},{"Bonus":0,"Continent":"K64","ID":17445,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17445","ServerKey":"pl181","X":432,"Y":610},{"Bonus":0,"Continent":"K56","ID":17446,"Name":"W.181/25","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17446","ServerKey":"pl181","X":630,"Y":523},{"Bonus":2,"Continent":"K35","ID":17447,"Name":"003 Osada koczownikĂłw","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17447","ServerKey":"pl181","X":530,"Y":372},{"Bonus":0,"Continent":"K65","ID":17448,"Name":"SSJ 005","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17448","ServerKey":"pl181","X":508,"Y":631},{"Bonus":0,"Continent":"K56","ID":17449,"Name":"015","PlayerID":849093875,"Points":3736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17449","ServerKey":"pl181","X":629,"Y":500},{"Bonus":8,"Continent":"K46","ID":17450,"Name":"Gattacka","PlayerID":699298370,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17450","ServerKey":"pl181","X":602,"Y":422},{"Bonus":0,"Continent":"K64","ID":17451,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17451","ServerKey":"pl181","X":433,"Y":617},{"Bonus":0,"Continent":"K65","ID":17452,"Name":"Sony 911","PlayerID":1415009,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17452","ServerKey":"pl181","X":577,"Y":610},{"Bonus":0,"Continent":"K65","ID":17453,"Name":"ƚmieszki","PlayerID":3454753,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17453","ServerKey":"pl181","X":529,"Y":619},{"Bonus":3,"Continent":"K65","ID":17454,"Name":"SSJ 010","PlayerID":699364813,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17454","ServerKey":"pl181","X":506,"Y":628},{"Bonus":0,"Continent":"K64","ID":17455,"Name":"High Heart","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17455","ServerKey":"pl181","X":483,"Y":632},{"Bonus":0,"Continent":"K43","ID":17456,"Name":"Westcoast.033","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17456","ServerKey":"pl181","X":382,"Y":435},{"Bonus":0,"Continent":"K54","ID":17457,"Name":"Selonari","PlayerID":698704189,"Points":7487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17457","ServerKey":"pl181","X":461,"Y":564},{"Bonus":0,"Continent":"K43","ID":17458,"Name":"A0087","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17458","ServerKey":"pl181","X":369,"Y":480},{"Bonus":0,"Continent":"K56","ID":17459,"Name":"Jan B Nord K","PlayerID":879782,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17459","ServerKey":"pl181","X":631,"Y":505},{"Bonus":0,"Continent":"K55","ID":17460,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17460","ServerKey":"pl181","X":596,"Y":587},{"Bonus":0,"Continent":"K44","ID":17461,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17461","ServerKey":"pl181","X":431,"Y":402},{"Bonus":0,"Continent":"K53","ID":17462,"Name":"108 Summer Slam","PlayerID":699382126,"Points":10456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17462","ServerKey":"pl181","X":392,"Y":568},{"Bonus":0,"Continent":"K35","ID":17463,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17463","ServerKey":"pl181","X":527,"Y":369},{"Bonus":0,"Continent":"K46","ID":17464,"Name":"013 Lewa Waza","PlayerID":699671454,"Points":7796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17464","ServerKey":"pl181","X":619,"Y":449},{"Bonus":0,"Continent":"K53","ID":17465,"Name":"066","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17465","ServerKey":"pl181","X":367,"Y":517},{"Bonus":0,"Continent":"K46","ID":17466,"Name":"611|425 Wioska barbarzyƄska","PlayerID":6822957,"Points":6642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17466","ServerKey":"pl181","X":611,"Y":425},{"Bonus":0,"Continent":"K64","ID":17467,"Name":"051.","PlayerID":699494488,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17467","ServerKey":"pl181","X":481,"Y":628},{"Bonus":0,"Continent":"K46","ID":17468,"Name":"010.","PlayerID":849094609,"Points":9481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17468","ServerKey":"pl181","X":639,"Y":490},{"Bonus":0,"Continent":"K53","ID":17469,"Name":"A0308","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17469","ServerKey":"pl181","X":371,"Y":508},{"Bonus":0,"Continent":"K34","ID":17470,"Name":"K34 - [003] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17470","ServerKey":"pl181","X":458,"Y":376},{"Bonus":0,"Continent":"K34","ID":17471,"Name":"018","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17471","ServerKey":"pl181","X":431,"Y":386},{"Bonus":0,"Continent":"K56","ID":17472,"Name":"Nowa 06","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17472","ServerKey":"pl181","X":615,"Y":559},{"Bonus":0,"Continent":"K46","ID":17473,"Name":"021 KuryƂƂƂyyhhhhaaa","PlayerID":699272633,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17473","ServerKey":"pl181","X":626,"Y":470},{"Bonus":0,"Continent":"K44","ID":17474,"Name":"Wioska SkanWhite09","PlayerID":9291984,"Points":7718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17474","ServerKey":"pl181","X":431,"Y":435},{"Bonus":0,"Continent":"K64","ID":17475,"Name":"024","PlayerID":699336777,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17475","ServerKey":"pl181","X":475,"Y":631},{"Bonus":0,"Continent":"K54","ID":17476,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17476","ServerKey":"pl181","X":411,"Y":595},{"Bonus":0,"Continent":"K54","ID":17477,"Name":"Pobozowisko","PlayerID":699513260,"Points":10621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17477","ServerKey":"pl181","X":409,"Y":595},{"Bonus":0,"Continent":"K65","ID":17478,"Name":"0029","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17478","ServerKey":"pl181","X":555,"Y":618},{"Bonus":0,"Continent":"K43","ID":17479,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17479","ServerKey":"pl181","X":374,"Y":495},{"Bonus":0,"Continent":"K65","ID":17480,"Name":"Wioska Dominatorxd","PlayerID":699698253,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17480","ServerKey":"pl181","X":508,"Y":600},{"Bonus":0,"Continent":"K45","ID":17481,"Name":"082","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17481","ServerKey":"pl181","X":595,"Y":410},{"Bonus":0,"Continent":"K43","ID":17482,"Name":"Mniejsze zƂo 0042","PlayerID":699794765,"Points":8528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17482","ServerKey":"pl181","X":377,"Y":461},{"Bonus":0,"Continent":"K53","ID":17483,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17483","ServerKey":"pl181","X":368,"Y":502},{"Bonus":0,"Continent":"K64","ID":17484,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17484","ServerKey":"pl181","X":433,"Y":616},{"Bonus":0,"Continent":"K43","ID":17486,"Name":"A0088","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17486","ServerKey":"pl181","X":370,"Y":485},{"Bonus":0,"Continent":"K34","ID":17487,"Name":"K34 - [056] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17487","ServerKey":"pl181","X":458,"Y":379},{"Bonus":0,"Continent":"K43","ID":17488,"Name":"A0120","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17488","ServerKey":"pl181","X":372,"Y":485},{"Bonus":0,"Continent":"K65","ID":17489,"Name":"0031","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17489","ServerKey":"pl181","X":545,"Y":609},{"Bonus":0,"Continent":"K64","ID":17490,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17490","ServerKey":"pl181","X":432,"Y":615},{"Bonus":0,"Continent":"K35","ID":17491,"Name":"208","PlayerID":849064752,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17491","ServerKey":"pl181","X":570,"Y":386},{"Bonus":0,"Continent":"K35","ID":17492,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17492","ServerKey":"pl181","X":511,"Y":369},{"Bonus":0,"Continent":"K46","ID":17493,"Name":"*0011 Baraki","PlayerID":8459255,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17493","ServerKey":"pl181","X":611,"Y":428},{"Bonus":0,"Continent":"K43","ID":17494,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17494","ServerKey":"pl181","X":397,"Y":415},{"Bonus":5,"Continent":"K65","ID":17495,"Name":"005.","PlayerID":873575,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17495","ServerKey":"pl181","X":565,"Y":612},{"Bonus":0,"Continent":"K46","ID":17496,"Name":"608|421 Wioska barbarzyƄska13","PlayerID":6822957,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17496","ServerKey":"pl181","X":608,"Y":421},{"Bonus":0,"Continent":"K56","ID":17497,"Name":"Szlachcic 016","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17497","ServerKey":"pl181","X":630,"Y":530},{"Bonus":0,"Continent":"K56","ID":17498,"Name":"Szlachcic PóƂnoc 005","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17498","ServerKey":"pl181","X":637,"Y":514},{"Bonus":0,"Continent":"K56","ID":17499,"Name":"Mike","PlayerID":699737356,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17499","ServerKey":"pl181","X":613,"Y":572},{"Bonus":0,"Continent":"K35","ID":17500,"Name":"019","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17500","ServerKey":"pl181","X":585,"Y":394},{"Bonus":0,"Continent":"K64","ID":17501,"Name":"0306","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17501","ServerKey":"pl181","X":426,"Y":608},{"Bonus":0,"Continent":"K34","ID":17502,"Name":".029.","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17502","ServerKey":"pl181","X":483,"Y":368},{"Bonus":0,"Continent":"K43","ID":17503,"Name":"Mniejsze zƂo 0037","PlayerID":699794765,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17503","ServerKey":"pl181","X":376,"Y":467},{"Bonus":0,"Continent":"K65","ID":17504,"Name":"017","PlayerID":699878511,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17504","ServerKey":"pl181","X":502,"Y":634},{"Bonus":0,"Continent":"K53","ID":17505,"Name":"060 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17505","ServerKey":"pl181","X":380,"Y":560},{"Bonus":0,"Continent":"K56","ID":17506,"Name":"C003 Brokilon","PlayerID":8096537,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17506","ServerKey":"pl181","X":613,"Y":566},{"Bonus":0,"Continent":"K53","ID":17507,"Name":"XXX Daleko","PlayerID":699425709,"Points":7761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17507","ServerKey":"pl181","X":370,"Y":527},{"Bonus":0,"Continent":"K46","ID":17508,"Name":"Piwna 06","PlayerID":699812007,"Points":7405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17508","ServerKey":"pl181","X":616,"Y":432},{"Bonus":0,"Continent":"K64","ID":17509,"Name":"004","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17509","ServerKey":"pl181","X":494,"Y":631},{"Bonus":0,"Continent":"K34","ID":17511,"Name":"01 Monety 2 p500","PlayerID":699368887,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17511","ServerKey":"pl181","X":493,"Y":377},{"Bonus":0,"Continent":"K55","ID":17512,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17512","ServerKey":"pl181","X":596,"Y":591},{"Bonus":0,"Continent":"K34","ID":17513,"Name":"VN Sylph","PlayerID":699883079,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17513","ServerKey":"pl181","X":473,"Y":375},{"Bonus":0,"Continent":"K46","ID":17514,"Name":"609|428 Wioska barbarzyƄska09","PlayerID":6822957,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17514","ServerKey":"pl181","X":609,"Y":428},{"Bonus":0,"Continent":"K65","ID":17515,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17515","ServerKey":"pl181","X":541,"Y":627},{"Bonus":0,"Continent":"K56","ID":17516,"Name":"003","PlayerID":699139964,"Points":2472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17516","ServerKey":"pl181","X":629,"Y":511},{"Bonus":0,"Continent":"K43","ID":17518,"Name":"A0177","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17518","ServerKey":"pl181","X":372,"Y":475},{"Bonus":0,"Continent":"K44","ID":17519,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17519","ServerKey":"pl181","X":407,"Y":403},{"Bonus":0,"Continent":"K34","ID":17520,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17520","ServerKey":"pl181","X":426,"Y":394},{"Bonus":0,"Continent":"K56","ID":17521,"Name":"=035= Wioska barbarzyƄska","PlayerID":3781794,"Points":8871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17521","ServerKey":"pl181","X":622,"Y":551},{"Bonus":0,"Continent":"K53","ID":17523,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17523","ServerKey":"pl181","X":375,"Y":530},{"Bonus":0,"Continent":"K53","ID":17524,"Name":"Pobozowisko","PlayerID":699513260,"Points":10797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17524","ServerKey":"pl181","X":395,"Y":583},{"Bonus":0,"Continent":"K43","ID":17525,"Name":"Westcoast.032","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17525","ServerKey":"pl181","X":388,"Y":436},{"Bonus":0,"Continent":"K64","ID":17526,"Name":"016Niespodziewanka","PlayerID":698620694,"Points":9249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17526","ServerKey":"pl181","X":457,"Y":627},{"Bonus":0,"Continent":"K56","ID":17527,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17527","ServerKey":"pl181","X":632,"Y":523},{"Bonus":0,"Continent":"K45","ID":17528,"Name":"007","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17528","ServerKey":"pl181","X":585,"Y":404},{"Bonus":0,"Continent":"K43","ID":17529,"Name":"Westcoast.038","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17529","ServerKey":"pl181","X":395,"Y":420},{"Bonus":0,"Continent":"K56","ID":17530,"Name":"B019","PlayerID":9314079,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17530","ServerKey":"pl181","X":631,"Y":501},{"Bonus":0,"Continent":"K46","ID":17531,"Name":"611|427 Wioska barbarzyƄska06","PlayerID":6822957,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17531","ServerKey":"pl181","X":611,"Y":427},{"Bonus":0,"Continent":"K54","ID":17532,"Name":".TO NIE DLA SOSU","PlayerID":698971484,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17532","ServerKey":"pl181","X":414,"Y":549},{"Bonus":0,"Continent":"K65","ID":17533,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17533","ServerKey":"pl181","X":577,"Y":608},{"Bonus":0,"Continent":"K35","ID":17534,"Name":"A004","PlayerID":699208929,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17534","ServerKey":"pl181","X":522,"Y":367},{"Bonus":0,"Continent":"K35","ID":17535,"Name":"yyyy","PlayerID":699883079,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17535","ServerKey":"pl181","X":500,"Y":368},{"Bonus":0,"Continent":"K34","ID":17536,"Name":"0139","PlayerID":699431255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17536","ServerKey":"pl181","X":449,"Y":379},{"Bonus":0,"Continent":"K46","ID":17537,"Name":"Piwna 10","PlayerID":699812007,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17537","ServerKey":"pl181","X":612,"Y":435},{"Bonus":0,"Continent":"K46","ID":17538,"Name":"FB001","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17538","ServerKey":"pl181","X":634,"Y":494},{"Bonus":0,"Continent":"K44","ID":17539,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17539","ServerKey":"pl181","X":401,"Y":411},{"Bonus":0,"Continent":"K45","ID":17540,"Name":"106 Wioska barbarzyƄska","PlayerID":699491076,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17540","ServerKey":"pl181","X":599,"Y":417},{"Bonus":0,"Continent":"K46","ID":17542,"Name":"015 Wioska","PlayerID":699671454,"Points":8870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17542","ServerKey":"pl181","X":631,"Y":469},{"Bonus":0,"Continent":"K64","ID":17543,"Name":"A29 MARUDER stolica","PlayerID":849037407,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17543","ServerKey":"pl181","X":462,"Y":629},{"Bonus":0,"Continent":"K43","ID":17544,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17544","ServerKey":"pl181","X":381,"Y":439},{"Bonus":0,"Continent":"K43","ID":17545,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17545","ServerKey":"pl181","X":370,"Y":454},{"Bonus":0,"Continent":"K46","ID":17546,"Name":"Jaaa","PlayerID":698635863,"Points":10381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17546","ServerKey":"pl181","X":616,"Y":444},{"Bonus":0,"Continent":"K35","ID":17547,"Name":"ADEN","PlayerID":698588535,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17547","ServerKey":"pl181","X":521,"Y":382},{"Bonus":0,"Continent":"K65","ID":17548,"Name":"z 045","PlayerID":699342219,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17548","ServerKey":"pl181","X":581,"Y":606},{"Bonus":0,"Continent":"K34","ID":17549,"Name":".048.","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17549","ServerKey":"pl181","X":496,"Y":367},{"Bonus":0,"Continent":"K35","ID":17550,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17550","ServerKey":"pl181","X":509,"Y":366},{"Bonus":6,"Continent":"K53","ID":17551,"Name":"063","PlayerID":6853693,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17551","ServerKey":"pl181","X":367,"Y":512},{"Bonus":0,"Continent":"K35","ID":17552,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17552","ServerKey":"pl181","X":528,"Y":368},{"Bonus":0,"Continent":"K35","ID":17553,"Name":"Part XXX","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17553","ServerKey":"pl181","X":540,"Y":373},{"Bonus":0,"Continent":"K46","ID":17554,"Name":"092. Favianis","PlayerID":849091866,"Points":8664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17554","ServerKey":"pl181","X":615,"Y":437},{"Bonus":0,"Continent":"K65","ID":17555,"Name":"G001","PlayerID":8627359,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17555","ServerKey":"pl181","X":573,"Y":609},{"Bonus":0,"Continent":"K45","ID":17556,"Name":"034","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17556","ServerKey":"pl181","X":592,"Y":405},{"Bonus":0,"Continent":"K34","ID":17557,"Name":".046.","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17557","ServerKey":"pl181","X":487,"Y":371},{"Bonus":0,"Continent":"K45","ID":17558,"Name":"B 010","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17558","ServerKey":"pl181","X":594,"Y":408},{"Bonus":0,"Continent":"K46","ID":17559,"Name":"609|423 011 FRANKIA","PlayerID":6822957,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17559","ServerKey":"pl181","X":609,"Y":423},{"Bonus":0,"Continent":"K34","ID":17560,"Name":"VN Beyond Netero","PlayerID":699883079,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17560","ServerKey":"pl181","X":458,"Y":374},{"Bonus":0,"Continent":"K35","ID":17561,"Name":"C 005","PlayerID":6384450,"Points":8959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17561","ServerKey":"pl181","X":579,"Y":394},{"Bonus":0,"Continent":"K34","ID":17562,"Name":"VN Meruem","PlayerID":699883079,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17562","ServerKey":"pl181","X":495,"Y":363},{"Bonus":0,"Continent":"K34","ID":17563,"Name":"027","PlayerID":849010255,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17563","ServerKey":"pl181","X":482,"Y":373},{"Bonus":0,"Continent":"K34","ID":17564,"Name":".000.","PlayerID":698489071,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17564","ServerKey":"pl181","X":496,"Y":381},{"Bonus":0,"Continent":"K34","ID":17565,"Name":"yyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17565","ServerKey":"pl181","X":495,"Y":370},{"Bonus":0,"Continent":"K35","ID":17567,"Name":"036","PlayerID":1424656,"Points":9363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17567","ServerKey":"pl181","X":585,"Y":397},{"Bonus":0,"Continent":"K46","ID":17568,"Name":"A004","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17568","ServerKey":"pl181","X":615,"Y":442},{"Bonus":0,"Continent":"K56","ID":17569,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17569","ServerKey":"pl181","X":616,"Y":556},{"Bonus":0,"Continent":"K56","ID":17570,"Name":"Wioska barbarzyƄska","PlayerID":8970390,"Points":2661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17570","ServerKey":"pl181","X":624,"Y":540},{"Bonus":0,"Continent":"K43","ID":17571,"Name":"Westcoast.087","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17571","ServerKey":"pl181","X":387,"Y":427},{"Bonus":0,"Continent":"K53","ID":17572,"Name":"-042-","PlayerID":9167250,"Points":8572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17572","ServerKey":"pl181","X":385,"Y":568},{"Bonus":0,"Continent":"K56","ID":17573,"Name":"Nowa 02","PlayerID":698702991,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17573","ServerKey":"pl181","X":615,"Y":558},{"Bonus":0,"Continent":"K65","ID":17574,"Name":"SSJ 031","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17574","ServerKey":"pl181","X":507,"Y":632},{"Bonus":0,"Continent":"K56","ID":17575,"Name":"Golf","PlayerID":699737356,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17575","ServerKey":"pl181","X":611,"Y":566},{"Bonus":0,"Continent":"K34","ID":17576,"Name":"084","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17576","ServerKey":"pl181","X":480,"Y":368},{"Bonus":0,"Continent":"K46","ID":17577,"Name":"017 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17577","ServerKey":"pl181","X":625,"Y":452},{"Bonus":0,"Continent":"K34","ID":17578,"Name":"0141","PlayerID":699431255,"Points":6793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17578","ServerKey":"pl181","X":432,"Y":384},{"Bonus":0,"Continent":"K46","ID":17579,"Name":"040- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17579","ServerKey":"pl181","X":616,"Y":434},{"Bonus":0,"Continent":"K64","ID":17580,"Name":"A016","PlayerID":699383279,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17580","ServerKey":"pl181","X":474,"Y":632},{"Bonus":0,"Continent":"K56","ID":17581,"Name":"014 Harrenhal","PlayerID":699272880,"Points":10403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17581","ServerKey":"pl181","X":608,"Y":571},{"Bonus":0,"Continent":"K64","ID":17582,"Name":"093","PlayerID":849084985,"Points":10437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17582","ServerKey":"pl181","X":451,"Y":620},{"Bonus":0,"Continent":"K53","ID":17583,"Name":"014","PlayerID":6853693,"Points":5793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17583","ServerKey":"pl181","X":374,"Y":539},{"Bonus":0,"Continent":"K35","ID":17584,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17584","ServerKey":"pl181","X":501,"Y":367},{"Bonus":0,"Continent":"K65","ID":17585,"Name":"Sony 911","PlayerID":1415009,"Points":10212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17585","ServerKey":"pl181","X":577,"Y":611},{"Bonus":0,"Continent":"K43","ID":17586,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17586","ServerKey":"pl181","X":369,"Y":459},{"Bonus":0,"Continent":"K64","ID":17587,"Name":"A31 MARUDER XD","PlayerID":849037407,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17587","ServerKey":"pl181","X":463,"Y":628},{"Bonus":0,"Continent":"K64","ID":17588,"Name":"001. Wioska Orka","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17588","ServerKey":"pl181","X":489,"Y":619},{"Bonus":0,"Continent":"K34","ID":17589,"Name":"Zeta Reticuli S3","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17589","ServerKey":"pl181","X":426,"Y":391},{"Bonus":0,"Continent":"K46","ID":17590,"Name":"A002","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17590","ServerKey":"pl181","X":628,"Y":487},{"Bonus":1,"Continent":"K56","ID":17591,"Name":"0007 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17591","ServerKey":"pl181","X":620,"Y":551},{"Bonus":0,"Continent":"K65","ID":17592,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17592","ServerKey":"pl181","X":531,"Y":625},{"Bonus":0,"Continent":"K43","ID":17593,"Name":"A0291","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17593","ServerKey":"pl181","X":368,"Y":498},{"Bonus":0,"Continent":"K35","ID":17594,"Name":"C 021","PlayerID":6384450,"Points":9006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17594","ServerKey":"pl181","X":581,"Y":394},{"Bonus":0,"Continent":"K64","ID":17595,"Name":"004","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17595","ServerKey":"pl181","X":497,"Y":629},{"Bonus":0,"Continent":"K43","ID":17596,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17596","ServerKey":"pl181","X":387,"Y":472},{"Bonus":0,"Continent":"K53","ID":17597,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17597","ServerKey":"pl181","X":379,"Y":552},{"Bonus":4,"Continent":"K43","ID":17598,"Name":"Westcoast.027","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17598","ServerKey":"pl181","X":389,"Y":428},{"Bonus":0,"Continent":"K35","ID":17599,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17599","ServerKey":"pl181","X":563,"Y":386},{"Bonus":0,"Continent":"K43","ID":17600,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17600","ServerKey":"pl181","X":376,"Y":462},{"Bonus":0,"Continent":"K56","ID":17601,"Name":"Szlachcic 009","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17601","ServerKey":"pl181","X":624,"Y":537},{"Bonus":0,"Continent":"K34","ID":17602,"Name":"025","PlayerID":849010255,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17602","ServerKey":"pl181","X":480,"Y":372},{"Bonus":1,"Continent":"K64","ID":17603,"Name":"007","PlayerID":699878511,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17603","ServerKey":"pl181","X":499,"Y":630},{"Bonus":0,"Continent":"K35","ID":17604,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17604","ServerKey":"pl181","X":502,"Y":369},{"Bonus":0,"Continent":"K46","ID":17605,"Name":"Jaaa","PlayerID":698635863,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17605","ServerKey":"pl181","X":616,"Y":441},{"Bonus":0,"Continent":"K43","ID":17606,"Name":"Dewej na hebel Maryla","PlayerID":699711723,"Points":4789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17606","ServerKey":"pl181","X":376,"Y":450},{"Bonus":0,"Continent":"K35","ID":17607,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17607","ServerKey":"pl181","X":546,"Y":377},{"Bonus":0,"Continent":"K65","ID":17608,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17608","ServerKey":"pl181","X":537,"Y":610},{"Bonus":0,"Continent":"K65","ID":17609,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17609","ServerKey":"pl181","X":542,"Y":625},{"Bonus":0,"Continent":"K64","ID":17610,"Name":"aaaa","PlayerID":6948793,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17610","ServerKey":"pl181","X":480,"Y":632},{"Bonus":0,"Continent":"K46","ID":17611,"Name":"612|427 Wioska barbarzyƄska01","PlayerID":6822957,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17611","ServerKey":"pl181","X":612,"Y":427},{"Bonus":9,"Continent":"K35","ID":17612,"Name":"amonka","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17612","ServerKey":"pl181","X":525,"Y":370},{"Bonus":0,"Continent":"K56","ID":17613,"Name":"012 barbarzyƄska","PlayerID":9238175,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17613","ServerKey":"pl181","X":611,"Y":565},{"Bonus":0,"Continent":"K43","ID":17614,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17614","ServerKey":"pl181","X":385,"Y":446},{"Bonus":0,"Continent":"K53","ID":17615,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17615","ServerKey":"pl181","X":399,"Y":581},{"Bonus":0,"Continent":"K65","ID":17616,"Name":"PIERWSZY KUZYN W KOSMOSIE","PlayerID":698704189,"Points":8653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17616","ServerKey":"pl181","X":521,"Y":629},{"Bonus":0,"Continent":"K34","ID":17617,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17617","ServerKey":"pl181","X":440,"Y":383},{"Bonus":0,"Continent":"K64","ID":17618,"Name":"003","PlayerID":849084985,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17618","ServerKey":"pl181","X":446,"Y":622},{"Bonus":0,"Continent":"K46","ID":17619,"Name":"015 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17619","ServerKey":"pl181","X":622,"Y":449},{"Bonus":0,"Continent":"K56","ID":17620,"Name":"0005","PlayerID":6510480,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17620","ServerKey":"pl181","X":623,"Y":527},{"Bonus":0,"Continent":"K46","ID":17621,"Name":"020 Co się staƂo z p. Witczakiem","PlayerID":699272633,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17621","ServerKey":"pl181","X":628,"Y":468},{"Bonus":3,"Continent":"K43","ID":17622,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17622","ServerKey":"pl181","X":377,"Y":445},{"Bonus":0,"Continent":"K53","ID":17623,"Name":"Pobozowisko","PlayerID":699513260,"Points":10945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17623","ServerKey":"pl181","X":399,"Y":587},{"Bonus":0,"Continent":"K43","ID":17624,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17624","ServerKey":"pl181","X":373,"Y":468},{"Bonus":0,"Continent":"K43","ID":17625,"Name":"Westcoast.089","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17625","ServerKey":"pl181","X":385,"Y":431},{"Bonus":0,"Continent":"K56","ID":17626,"Name":"[046]","PlayerID":698305474,"Points":3606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17626","ServerKey":"pl181","X":630,"Y":522},{"Bonus":0,"Continent":"K35","ID":17628,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":8429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17628","ServerKey":"pl181","X":573,"Y":392},{"Bonus":0,"Continent":"K34","ID":17629,"Name":"[0073]......","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17629","ServerKey":"pl181","X":413,"Y":398},{"Bonus":0,"Continent":"K34","ID":17630,"Name":"VN Yami Sukehiro","PlayerID":699883079,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17630","ServerKey":"pl181","X":470,"Y":373},{"Bonus":0,"Continent":"K35","ID":17631,"Name":"015","PlayerID":1424656,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17631","ServerKey":"pl181","X":555,"Y":380},{"Bonus":0,"Continent":"K45","ID":17632,"Name":".achim.","PlayerID":6936607,"Points":7312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17632","ServerKey":"pl181","X":527,"Y":453},{"Bonus":0,"Continent":"K45","ID":17633,"Name":"WE ARE READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17633","ServerKey":"pl181","X":593,"Y":405},{"Bonus":0,"Continent":"K35","ID":17634,"Name":".achim.","PlayerID":6936607,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17634","ServerKey":"pl181","X":515,"Y":386},{"Bonus":0,"Continent":"K46","ID":17635,"Name":"Jan 018-12 PƂn K","PlayerID":879782,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17635","ServerKey":"pl181","X":632,"Y":495},{"Bonus":0,"Continent":"K53","ID":17636,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17636","ServerKey":"pl181","X":370,"Y":503},{"Bonus":0,"Continent":"K43","ID":17637,"Name":"A0121","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17637","ServerKey":"pl181","X":370,"Y":478},{"Bonus":0,"Continent":"K56","ID":17638,"Name":"C019 Port Hope","PlayerID":8096537,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17638","ServerKey":"pl181","X":619,"Y":563},{"Bonus":0,"Continent":"K35","ID":17639,"Name":"001","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17639","ServerKey":"pl181","X":505,"Y":377},{"Bonus":0,"Continent":"K64","ID":17640,"Name":"Jednak wolę gofry","PlayerID":6180190,"Points":8274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17640","ServerKey":"pl181","X":486,"Y":633},{"Bonus":0,"Continent":"K64","ID":17641,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17641","ServerKey":"pl181","X":498,"Y":628},{"Bonus":0,"Continent":"K53","ID":17642,"Name":"048","PlayerID":8908002,"Points":7195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17642","ServerKey":"pl181","X":371,"Y":540},{"Bonus":0,"Continent":"K46","ID":17643,"Name":"B021","PlayerID":9314079,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17643","ServerKey":"pl181","X":632,"Y":498},{"Bonus":0,"Continent":"K34","ID":17644,"Name":"050","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17644","ServerKey":"pl181","X":475,"Y":368},{"Bonus":0,"Continent":"K55","ID":17645,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17645","ServerKey":"pl181","X":595,"Y":591},{"Bonus":0,"Continent":"K56","ID":17646,"Name":"014 Palma de Mallorca","PlayerID":698416970,"Points":8574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17646","ServerKey":"pl181","X":630,"Y":512},{"Bonus":0,"Continent":"K43","ID":17647,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17647","ServerKey":"pl181","X":383,"Y":439},{"Bonus":0,"Continent":"K43","ID":17648,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17648","ServerKey":"pl181","X":374,"Y":457},{"Bonus":0,"Continent":"K64","ID":17649,"Name":"096","PlayerID":849084985,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17649","ServerKey":"pl181","X":444,"Y":620},{"Bonus":0,"Continent":"K35","ID":17650,"Name":"024","PlayerID":1424656,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17650","ServerKey":"pl181","X":556,"Y":377},{"Bonus":0,"Continent":"K64","ID":17651,"Name":"046","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17651","ServerKey":"pl181","X":479,"Y":628},{"Bonus":0,"Continent":"K45","ID":17652,"Name":"39 im Akimowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17652","ServerKey":"pl181","X":596,"Y":406},{"Bonus":0,"Continent":"K64","ID":17653,"Name":"028","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17653","ServerKey":"pl181","X":476,"Y":630},{"Bonus":0,"Continent":"K46","ID":17654,"Name":"Piwna 02","PlayerID":699812007,"Points":8888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17654","ServerKey":"pl181","X":613,"Y":438},{"Bonus":0,"Continent":"K56","ID":17655,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17655","ServerKey":"pl181","X":601,"Y":587},{"Bonus":9,"Continent":"K46","ID":17656,"Name":"FA001","PlayerID":9314079,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17656","ServerKey":"pl181","X":632,"Y":491},{"Bonus":0,"Continent":"K54","ID":17657,"Name":"Pobozowisko","PlayerID":699513260,"Points":8277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17657","ServerKey":"pl181","X":407,"Y":590},{"Bonus":0,"Continent":"K46","ID":17658,"Name":"Wioska (023)","PlayerID":698232227,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17658","ServerKey":"pl181","X":634,"Y":491},{"Bonus":0,"Continent":"K43","ID":17659,"Name":"s6 Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17659","ServerKey":"pl181","X":398,"Y":415},{"Bonus":0,"Continent":"K56","ID":17660,"Name":"Hel 01","PlayerID":698702991,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17660","ServerKey":"pl181","X":613,"Y":564},{"Bonus":0,"Continent":"K65","ID":17661,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17661","ServerKey":"pl181","X":527,"Y":631},{"Bonus":0,"Continent":"K46","ID":17662,"Name":"_PUSTA","PlayerID":849014413,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17662","ServerKey":"pl181","X":633,"Y":498},{"Bonus":0,"Continent":"K64","ID":17663,"Name":"Ulu-mulu","PlayerID":699697558,"Points":6782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17663","ServerKey":"pl181","X":421,"Y":601},{"Bonus":0,"Continent":"K34","ID":17664,"Name":".022.","PlayerID":698489071,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17664","ServerKey":"pl181","X":486,"Y":371},{"Bonus":0,"Continent":"K65","ID":17665,"Name":"z 042","PlayerID":699342219,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17665","ServerKey":"pl181","X":579,"Y":605},{"Bonus":0,"Continent":"K34","ID":17666,"Name":"VN Charlotte Roselei","PlayerID":699883079,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17666","ServerKey":"pl181","X":469,"Y":374},{"Bonus":0,"Continent":"K35","ID":17667,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17667","ServerKey":"pl181","X":525,"Y":369},{"Bonus":0,"Continent":"K43","ID":17668,"Name":"Brat447","PlayerID":699262350,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17668","ServerKey":"pl181","X":387,"Y":499},{"Bonus":0,"Continent":"K65","ID":17669,"Name":"z 048","PlayerID":699342219,"Points":10385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17669","ServerKey":"pl181","X":581,"Y":607},{"Bonus":0,"Continent":"K45","ID":17670,"Name":"A READY","PlayerID":699759128,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17670","ServerKey":"pl181","X":589,"Y":400},{"Bonus":0,"Continent":"K65","ID":17671,"Name":"HORUS!","PlayerID":7756002,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17671","ServerKey":"pl181","X":519,"Y":629},{"Bonus":0,"Continent":"K45","ID":17672,"Name":"B 005","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17672","ServerKey":"pl181","X":594,"Y":404},{"Bonus":0,"Continent":"K34","ID":17673,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":7228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17673","ServerKey":"pl181","X":486,"Y":362},{"Bonus":0,"Continent":"K46","ID":17674,"Name":"Piwna 14","PlayerID":699812007,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17674","ServerKey":"pl181","X":615,"Y":434},{"Bonus":0,"Continent":"K34","ID":17675,"Name":"Kaer Morhen","PlayerID":699658023,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17675","ServerKey":"pl181","X":478,"Y":369},{"Bonus":0,"Continent":"K46","ID":17676,"Name":"Twierdza 1","PlayerID":848935020,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17676","ServerKey":"pl181","X":637,"Y":470},{"Bonus":0,"Continent":"K45","ID":17677,"Name":"131","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17677","ServerKey":"pl181","X":592,"Y":409},{"Bonus":0,"Continent":"K64","ID":17678,"Name":"Wioska Krz40","PlayerID":699657242,"Points":2932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17678","ServerKey":"pl181","X":417,"Y":604},{"Bonus":0,"Continent":"K56","ID":17679,"Name":"Szlachcic PóƂnoc 001","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17679","ServerKey":"pl181","X":632,"Y":505},{"Bonus":0,"Continent":"K46","ID":17680,"Name":"033.","PlayerID":8900955,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17680","ServerKey":"pl181","X":615,"Y":479},{"Bonus":0,"Continent":"K35","ID":17681,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17681","ServerKey":"pl181","X":521,"Y":372},{"Bonus":0,"Continent":"K56","ID":17682,"Name":"009","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17682","ServerKey":"pl181","X":609,"Y":576},{"Bonus":0,"Continent":"K56","ID":17683,"Name":"012. Chomo Lonzo","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17683","ServerKey":"pl181","X":603,"Y":580},{"Bonus":0,"Continent":"K56","ID":17684,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17684","ServerKey":"pl181","X":607,"Y":580},{"Bonus":0,"Continent":"K34","ID":17685,"Name":"Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17685","ServerKey":"pl181","X":455,"Y":373},{"Bonus":0,"Continent":"K53","ID":17686,"Name":"019","PlayerID":6853693,"Points":5489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17686","ServerKey":"pl181","X":372,"Y":525},{"Bonus":0,"Continent":"K53","ID":17687,"Name":"007","PlayerID":6853693,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17687","ServerKey":"pl181","X":375,"Y":539},{"Bonus":0,"Continent":"K46","ID":17688,"Name":"012 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17688","ServerKey":"pl181","X":624,"Y":448},{"Bonus":0,"Continent":"K35","ID":17689,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17689","ServerKey":"pl181","X":536,"Y":373},{"Bonus":0,"Continent":"K56","ID":17690,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17690","ServerKey":"pl181","X":619,"Y":549},{"Bonus":0,"Continent":"K64","ID":17691,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17691","ServerKey":"pl181","X":418,"Y":602},{"Bonus":0,"Continent":"K55","ID":17692,"Name":"007. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17692","ServerKey":"pl181","X":575,"Y":527},{"Bonus":0,"Continent":"K56","ID":17693,"Name":"007","PlayerID":848899726,"Points":7166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17693","ServerKey":"pl181","X":616,"Y":568},{"Bonus":0,"Continent":"K64","ID":17694,"Name":"052 OZDR","PlayerID":699336777,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17694","ServerKey":"pl181","X":477,"Y":631},{"Bonus":0,"Continent":"K64","ID":17695,"Name":"019","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17695","ServerKey":"pl181","X":472,"Y":628},{"Bonus":0,"Continent":"K35","ID":17696,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17696","ServerKey":"pl181","X":515,"Y":371},{"Bonus":0,"Continent":"K56","ID":17697,"Name":"018.","PlayerID":849094609,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17697","ServerKey":"pl181","X":633,"Y":512},{"Bonus":0,"Continent":"K43","ID":17698,"Name":"Westcoast.035","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17698","ServerKey":"pl181","X":388,"Y":435},{"Bonus":0,"Continent":"K55","ID":17699,"Name":"- 325 - RR","PlayerID":849018239,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17699","ServerKey":"pl181","X":587,"Y":599},{"Bonus":0,"Continent":"K64","ID":17700,"Name":"Ulu-mulu","PlayerID":699697558,"Points":5361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17700","ServerKey":"pl181","X":421,"Y":608},{"Bonus":0,"Continent":"K43","ID":17701,"Name":"A0201","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17701","ServerKey":"pl181","X":370,"Y":473},{"Bonus":0,"Continent":"K65","ID":17702,"Name":"11. Sarah","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17702","ServerKey":"pl181","X":524,"Y":626},{"Bonus":0,"Continent":"K65","ID":17703,"Name":"007.","PlayerID":873575,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17703","ServerKey":"pl181","X":565,"Y":614},{"Bonus":0,"Continent":"K45","ID":17704,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17704","ServerKey":"pl181","X":590,"Y":406},{"Bonus":0,"Continent":"K43","ID":17705,"Name":"Westcoast.006","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17705","ServerKey":"pl181","X":384,"Y":436},{"Bonus":0,"Continent":"K53","ID":17706,"Name":"030","PlayerID":6853693,"Points":5843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17706","ServerKey":"pl181","X":373,"Y":538},{"Bonus":0,"Continent":"K46","ID":17707,"Name":"Gattacka","PlayerID":699298370,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17707","ServerKey":"pl181","X":605,"Y":421},{"Bonus":0,"Continent":"K54","ID":17708,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":12130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17708","ServerKey":"pl181","X":494,"Y":559},{"Bonus":0,"Continent":"K65","ID":17709,"Name":"- 333 - RR","PlayerID":849018239,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17709","ServerKey":"pl181","X":587,"Y":601},{"Bonus":0,"Continent":"K35","ID":17710,"Name":"023. Wioska barbarzyƄska","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17710","ServerKey":"pl181","X":569,"Y":389},{"Bonus":0,"Continent":"K56","ID":17711,"Name":"=019= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17711","ServerKey":"pl181","X":623,"Y":552},{"Bonus":2,"Continent":"K65","ID":17712,"Name":"Sony 911","PlayerID":1415009,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17712","ServerKey":"pl181","X":576,"Y":611},{"Bonus":0,"Continent":"K53","ID":17714,"Name":"Pobozowisko","PlayerID":699513260,"Points":10892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17714","ServerKey":"pl181","X":388,"Y":584},{"Bonus":0,"Continent":"K34","ID":17715,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17715","ServerKey":"pl181","X":420,"Y":394},{"Bonus":0,"Continent":"K64","ID":17716,"Name":"009","PlayerID":699878511,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17716","ServerKey":"pl181","X":498,"Y":633},{"Bonus":0,"Continent":"K64","ID":17717,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17717","ServerKey":"pl181","X":425,"Y":606},{"Bonus":0,"Continent":"K43","ID":17718,"Name":"::: B :::","PlayerID":848917570,"Points":6144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17718","ServerKey":"pl181","X":364,"Y":474},{"Bonus":0,"Continent":"K34","ID":17719,"Name":"020","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17719","ServerKey":"pl181","X":431,"Y":390},{"Bonus":0,"Continent":"K35","ID":17720,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17720","ServerKey":"pl181","X":529,"Y":375},{"Bonus":0,"Continent":"K43","ID":17721,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17721","ServerKey":"pl181","X":377,"Y":450},{"Bonus":0,"Continent":"K45","ID":17722,"Name":"B013","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17722","ServerKey":"pl181","X":596,"Y":407},{"Bonus":0,"Continent":"K45","ID":17723,"Name":"38 im Kadyrowa","PlayerID":849037469,"Points":7949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17723","ServerKey":"pl181","X":595,"Y":406},{"Bonus":0,"Continent":"K53","ID":17724,"Name":"149 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17724","ServerKey":"pl181","X":383,"Y":565},{"Bonus":0,"Continent":"K43","ID":17725,"Name":"A0138","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17725","ServerKey":"pl181","X":368,"Y":479},{"Bonus":0,"Continent":"K43","ID":17726,"Name":"Westcoast.064","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17726","ServerKey":"pl181","X":387,"Y":426},{"Bonus":0,"Continent":"K35","ID":17727,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17727","ServerKey":"pl181","X":561,"Y":381},{"Bonus":0,"Continent":"K46","ID":17729,"Name":"B009","PlayerID":9314079,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17729","ServerKey":"pl181","X":629,"Y":488},{"Bonus":0,"Continent":"K34","ID":17730,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17730","ServerKey":"pl181","X":476,"Y":379},{"Bonus":0,"Continent":"K53","ID":17731,"Name":"A0309","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17731","ServerKey":"pl181","X":370,"Y":515},{"Bonus":0,"Continent":"K43","ID":17732,"Name":"s181eo27","PlayerID":393668,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17732","ServerKey":"pl181","X":379,"Y":457},{"Bonus":0,"Continent":"K35","ID":17734,"Name":"A003","PlayerID":699208929,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17734","ServerKey":"pl181","X":517,"Y":369},{"Bonus":0,"Continent":"K53","ID":17735,"Name":"046","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17735","ServerKey":"pl181","X":369,"Y":522},{"Bonus":0,"Continent":"K65","ID":17736,"Name":"021.","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17736","ServerKey":"pl181","X":568,"Y":615},{"Bonus":0,"Continent":"K65","ID":17737,"Name":"005","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17737","ServerKey":"pl181","X":555,"Y":619},{"Bonus":0,"Continent":"K35","ID":17738,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17738","ServerKey":"pl181","X":506,"Y":371},{"Bonus":0,"Continent":"K55","ID":17739,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17739","ServerKey":"pl181","X":595,"Y":586},{"Bonus":0,"Continent":"K65","ID":17740,"Name":"018.","PlayerID":873575,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17740","ServerKey":"pl181","X":569,"Y":615},{"Bonus":4,"Continent":"K46","ID":17741,"Name":"610|424 001Legatus","PlayerID":6822957,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17741","ServerKey":"pl181","X":610,"Y":424},{"Bonus":0,"Continent":"K43","ID":17742,"Name":"Westcoast.088","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17742","ServerKey":"pl181","X":385,"Y":430},{"Bonus":0,"Continent":"K56","ID":17743,"Name":"[025]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17743","ServerKey":"pl181","X":635,"Y":513},{"Bonus":0,"Continent":"K34","ID":17744,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17744","ServerKey":"pl181","X":483,"Y":370},{"Bonus":0,"Continent":"K64","ID":17745,"Name":"065 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17745","ServerKey":"pl181","X":461,"Y":627},{"Bonus":0,"Continent":"K53","ID":17746,"Name":"005","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17746","ServerKey":"pl181","X":362,"Y":517},{"Bonus":0,"Continent":"K53","ID":17747,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17747","ServerKey":"pl181","X":380,"Y":553},{"Bonus":6,"Continent":"K45","ID":17748,"Name":"A READY","PlayerID":1553947,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17748","ServerKey":"pl181","X":596,"Y":413},{"Bonus":0,"Continent":"K34","ID":17749,"Name":"Feed me more 009","PlayerID":699756210,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17749","ServerKey":"pl181","X":494,"Y":374},{"Bonus":0,"Continent":"K34","ID":17750,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17750","ServerKey":"pl181","X":423,"Y":392},{"Bonus":0,"Continent":"K43","ID":17751,"Name":"A0204","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17751","ServerKey":"pl181","X":366,"Y":479},{"Bonus":0,"Continent":"K56","ID":17752,"Name":"16 PrzebĂłj nocy","PlayerID":9314079,"Points":6116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17752","ServerKey":"pl181","X":628,"Y":520},{"Bonus":0,"Continent":"K65","ID":17753,"Name":"- 326 - RR","PlayerID":849018239,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17753","ServerKey":"pl181","X":584,"Y":600},{"Bonus":0,"Continent":"K35","ID":17754,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17754","ServerKey":"pl181","X":552,"Y":378},{"Bonus":0,"Continent":"K65","ID":17755,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17755","ServerKey":"pl181","X":531,"Y":629},{"Bonus":0,"Continent":"K56","ID":17756,"Name":"Nowa 11","PlayerID":698702991,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17756","ServerKey":"pl181","X":613,"Y":565},{"Bonus":8,"Continent":"K65","ID":17757,"Name":"CALL 1067","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17757","ServerKey":"pl181","X":557,"Y":618},{"Bonus":0,"Continent":"K43","ID":17758,"Name":"A0159","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17758","ServerKey":"pl181","X":367,"Y":476},{"Bonus":0,"Continent":"K43","ID":17759,"Name":"Brat447","PlayerID":699262350,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17759","ServerKey":"pl181","X":368,"Y":496},{"Bonus":0,"Continent":"K35","ID":17760,"Name":"018.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17760","ServerKey":"pl181","X":573,"Y":388},{"Bonus":0,"Continent":"K65","ID":17761,"Name":"Zakrecona 4","PlayerID":8627359,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17761","ServerKey":"pl181","X":574,"Y":605},{"Bonus":0,"Continent":"K35","ID":17762,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17762","ServerKey":"pl181","X":540,"Y":374},{"Bonus":0,"Continent":"K64","ID":17763,"Name":"065","PlayerID":849084985,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17763","ServerKey":"pl181","X":436,"Y":618},{"Bonus":0,"Continent":"K53","ID":17764,"Name":"Brat447","PlayerID":699262350,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17764","ServerKey":"pl181","X":369,"Y":513},{"Bonus":9,"Continent":"K35","ID":17765,"Name":"035","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17765","ServerKey":"pl181","X":570,"Y":390},{"Bonus":0,"Continent":"K53","ID":17766,"Name":"008","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17766","ServerKey":"pl181","X":375,"Y":537},{"Bonus":0,"Continent":"K45","ID":17767,"Name":"A READY","PlayerID":849064752,"Points":10037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17767","ServerKey":"pl181","X":590,"Y":403},{"Bonus":0,"Continent":"K43","ID":17768,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17768","ServerKey":"pl181","X":380,"Y":450},{"Bonus":0,"Continent":"K56","ID":17769,"Name":"044 Warszawa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17769","ServerKey":"pl181","X":633,"Y":508},{"Bonus":0,"Continent":"K43","ID":17770,"Name":"A0002","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17770","ServerKey":"pl181","X":387,"Y":473},{"Bonus":0,"Continent":"K65","ID":17771,"Name":"kathare","PlayerID":873575,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17771","ServerKey":"pl181","X":545,"Y":621},{"Bonus":0,"Continent":"K56","ID":17772,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17772","ServerKey":"pl181","X":618,"Y":558},{"Bonus":0,"Continent":"K64","ID":17773,"Name":"071 OZDR","PlayerID":699336777,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17773","ServerKey":"pl181","X":469,"Y":630},{"Bonus":0,"Continent":"K65","ID":17774,"Name":"Port","PlayerID":8627359,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17774","ServerKey":"pl181","X":578,"Y":610},{"Bonus":0,"Continent":"K56","ID":17776,"Name":"008.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17776","ServerKey":"pl181","X":626,"Y":540},{"Bonus":0,"Continent":"K65","ID":17777,"Name":"SSJ 024","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17777","ServerKey":"pl181","X":511,"Y":631},{"Bonus":0,"Continent":"K55","ID":17778,"Name":"027","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17778","ServerKey":"pl181","X":599,"Y":592},{"Bonus":0,"Continent":"K44","ID":17779,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17779","ServerKey":"pl181","X":400,"Y":416},{"Bonus":0,"Continent":"K55","ID":17780,"Name":"D029 Iwa","PlayerID":8096537,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17780","ServerKey":"pl181","X":598,"Y":592},{"Bonus":0,"Continent":"K34","ID":17782,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17782","ServerKey":"pl181","X":423,"Y":391},{"Bonus":5,"Continent":"K56","ID":17783,"Name":"Vasperland_008","PlayerID":7047342,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17783","ServerKey":"pl181","X":628,"Y":516},{"Bonus":0,"Continent":"K56","ID":17784,"Name":"Nowa 05","PlayerID":698702991,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17784","ServerKey":"pl181","X":615,"Y":566},{"Bonus":0,"Continent":"K35","ID":17785,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17785","ServerKey":"pl181","X":559,"Y":379},{"Bonus":0,"Continent":"K43","ID":17786,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17786","ServerKey":"pl181","X":374,"Y":493},{"Bonus":0,"Continent":"K56","ID":17787,"Name":"007.","PlayerID":6520732,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17787","ServerKey":"pl181","X":627,"Y":538},{"Bonus":0,"Continent":"K56","ID":17789,"Name":"017","PlayerID":8428196,"Points":9859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17789","ServerKey":"pl181","X":627,"Y":545},{"Bonus":0,"Continent":"K53","ID":17790,"Name":"060","PlayerID":6853693,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17790","ServerKey":"pl181","X":366,"Y":511},{"Bonus":0,"Continent":"K35","ID":17792,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17792","ServerKey":"pl181","X":527,"Y":371},{"Bonus":0,"Continent":"K56","ID":17793,"Name":"Foxtrot","PlayerID":699737356,"Points":8782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17793","ServerKey":"pl181","X":612,"Y":567},{"Bonus":0,"Continent":"K35","ID":17794,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17794","ServerKey":"pl181","X":522,"Y":369},{"Bonus":0,"Continent":"K34","ID":17795,"Name":"K34 x009","PlayerID":698364331,"Points":8365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17795","ServerKey":"pl181","X":443,"Y":379},{"Bonus":0,"Continent":"K35","ID":17796,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17796","ServerKey":"pl181","X":545,"Y":374},{"Bonus":0,"Continent":"K65","ID":17798,"Name":"011.","PlayerID":873575,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17798","ServerKey":"pl181","X":566,"Y":613},{"Bonus":0,"Continent":"K34","ID":17799,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17799","ServerKey":"pl181","X":434,"Y":388},{"Bonus":0,"Continent":"K53","ID":17800,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":6920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17800","ServerKey":"pl181","X":372,"Y":537},{"Bonus":0,"Continent":"K43","ID":17801,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17801","ServerKey":"pl181","X":369,"Y":460},{"Bonus":0,"Continent":"K56","ID":17802,"Name":"19 Na audiencji","PlayerID":9314079,"Points":4320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17802","ServerKey":"pl181","X":630,"Y":521},{"Bonus":0,"Continent":"K43","ID":17803,"Name":"Westcoast.061","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17803","ServerKey":"pl181","X":387,"Y":431},{"Bonus":0,"Continent":"K35","ID":17804,"Name":"Part XXVIII","PlayerID":698350371,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17804","ServerKey":"pl181","X":539,"Y":373},{"Bonus":0,"Continent":"K43","ID":17805,"Name":"A0157","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17805","ServerKey":"pl181","X":360,"Y":483},{"Bonus":0,"Continent":"K56","ID":17806,"Name":"013 Tyria","PlayerID":699272880,"Points":10391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17806","ServerKey":"pl181","X":612,"Y":571},{"Bonus":0,"Continent":"K65","ID":17807,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17807","ServerKey":"pl181","X":532,"Y":629},{"Bonus":0,"Continent":"K53","ID":17808,"Name":"ZachĂłd - 006","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17808","ServerKey":"pl181","X":395,"Y":578},{"Bonus":0,"Continent":"K45","ID":17809,"Name":"07 im Jakira","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17809","ServerKey":"pl181","X":597,"Y":428},{"Bonus":0,"Continent":"K53","ID":17810,"Name":"047","PlayerID":6853693,"Points":5845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17810","ServerKey":"pl181","X":368,"Y":524},{"Bonus":0,"Continent":"K65","ID":17811,"Name":"0423","PlayerID":698659980,"Points":8502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17811","ServerKey":"pl181","X":562,"Y":619},{"Bonus":0,"Continent":"K34","ID":17812,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17812","ServerKey":"pl181","X":481,"Y":368},{"Bonus":0,"Continent":"K43","ID":17813,"Name":"Westcoast.085","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17813","ServerKey":"pl181","X":386,"Y":429},{"Bonus":0,"Continent":"K56","ID":17814,"Name":"Wioska (017)","PlayerID":698232227,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17814","ServerKey":"pl181","X":619,"Y":557},{"Bonus":0,"Continent":"K64","ID":17815,"Name":"067 OZDR","PlayerID":699336777,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17815","ServerKey":"pl181","X":458,"Y":625},{"Bonus":0,"Continent":"K65","ID":17816,"Name":"RTS","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17816","ServerKey":"pl181","X":572,"Y":613},{"Bonus":0,"Continent":"K64","ID":17817,"Name":"Dawanie w szyje","PlayerID":9060641,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17817","ServerKey":"pl181","X":415,"Y":605},{"Bonus":0,"Continent":"K35","ID":17818,"Name":"014. BarbarzyƄska Osada","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17818","ServerKey":"pl181","X":568,"Y":385},{"Bonus":0,"Continent":"K54","ID":17819,"Name":"010","PlayerID":7976264,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17819","ServerKey":"pl181","X":479,"Y":589},{"Bonus":0,"Continent":"K53","ID":17820,"Name":"036","PlayerID":6853693,"Points":6428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17820","ServerKey":"pl181","X":366,"Y":520},{"Bonus":0,"Continent":"K34","ID":17821,"Name":"Wioska syisy","PlayerID":699658023,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17821","ServerKey":"pl181","X":483,"Y":363},{"Bonus":0,"Continent":"K46","ID":17822,"Name":"Gattacka","PlayerID":699298370,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17822","ServerKey":"pl181","X":606,"Y":417},{"Bonus":0,"Continent":"K43","ID":17823,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17823","ServerKey":"pl181","X":379,"Y":440},{"Bonus":0,"Continent":"K56","ID":17824,"Name":"Nowa 10","PlayerID":698702991,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17824","ServerKey":"pl181","X":614,"Y":563},{"Bonus":0,"Continent":"K53","ID":17825,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17825","ServerKey":"pl181","X":389,"Y":514},{"Bonus":0,"Continent":"K43","ID":17826,"Name":"A0089","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17826","ServerKey":"pl181","X":366,"Y":490},{"Bonus":0,"Continent":"K65","ID":17827,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17827","ServerKey":"pl181","X":529,"Y":632},{"Bonus":0,"Continent":"K64","ID":17828,"Name":"Jednak wolę gofry","PlayerID":6180190,"Points":10036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17828","ServerKey":"pl181","X":487,"Y":633},{"Bonus":0,"Continent":"K56","ID":17830,"Name":"Mzm10","PlayerID":7142659,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17830","ServerKey":"pl181","X":628,"Y":524},{"Bonus":0,"Continent":"K44","ID":17831,"Name":"[0084]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17831","ServerKey":"pl181","X":413,"Y":401},{"Bonus":0,"Continent":"K55","ID":17832,"Name":"086","PlayerID":699373599,"Points":9739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17832","ServerKey":"pl181","X":599,"Y":570},{"Bonus":0,"Continent":"K56","ID":17833,"Name":"[045]","PlayerID":698305474,"Points":4619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17833","ServerKey":"pl181","X":632,"Y":522},{"Bonus":0,"Continent":"K46","ID":17834,"Name":"*4609*a Patagonia","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17834","ServerKey":"pl181","X":634,"Y":496},{"Bonus":0,"Continent":"K46","ID":17835,"Name":"608|424 Wioska barbarzyƄska15","PlayerID":6822957,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17835","ServerKey":"pl181","X":608,"Y":424},{"Bonus":0,"Continent":"K35","ID":17836,"Name":"008 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17836","ServerKey":"pl181","X":532,"Y":372},{"Bonus":0,"Continent":"K43","ID":17837,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17837","ServerKey":"pl181","X":372,"Y":469},{"Bonus":3,"Continent":"K43","ID":17838,"Name":"Westcoast.021","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17838","ServerKey":"pl181","X":382,"Y":438},{"Bonus":0,"Continent":"K56","ID":17839,"Name":"C008 Yalahar","PlayerID":8096537,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17839","ServerKey":"pl181","X":622,"Y":565},{"Bonus":0,"Continent":"K65","ID":17840,"Name":"SSJ 035","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17840","ServerKey":"pl181","X":515,"Y":631},{"Bonus":0,"Continent":"K44","ID":17841,"Name":"Gravity","PlayerID":698962117,"Points":9758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17841","ServerKey":"pl181","X":409,"Y":452},{"Bonus":0,"Continent":"K34","ID":17842,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17842","ServerKey":"pl181","X":423,"Y":394},{"Bonus":0,"Continent":"K54","ID":17843,"Name":"046 Kurka wĂłdka","PlayerID":699382126,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17843","ServerKey":"pl181","X":411,"Y":557},{"Bonus":0,"Continent":"K34","ID":17844,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17844","ServerKey":"pl181","X":420,"Y":398},{"Bonus":0,"Continent":"K56","ID":17845,"Name":"022","PlayerID":8428196,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17845","ServerKey":"pl181","X":623,"Y":542},{"Bonus":9,"Continent":"K43","ID":17846,"Name":"A0075","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17846","ServerKey":"pl181","X":366,"Y":498},{"Bonus":0,"Continent":"K44","ID":17847,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17847","ServerKey":"pl181","X":403,"Y":409},{"Bonus":0,"Continent":"K65","ID":17848,"Name":"SSJ 013","PlayerID":699364813,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17848","ServerKey":"pl181","X":511,"Y":632},{"Bonus":0,"Continent":"K56","ID":17850,"Name":"Szlachcic 010","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17850","ServerKey":"pl181","X":625,"Y":537},{"Bonus":4,"Continent":"K55","ID":17851,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17851","ServerKey":"pl181","X":598,"Y":593},{"Bonus":0,"Continent":"K64","ID":17852,"Name":"0002 Wiocha","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17852","ServerKey":"pl181","X":424,"Y":612},{"Bonus":0,"Continent":"K64","ID":17853,"Name":"0018 Bezimienna","PlayerID":9060641,"Points":8078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17853","ServerKey":"pl181","X":421,"Y":604},{"Bonus":0,"Continent":"K53","ID":17854,"Name":"ZachĂłd - 011","PlayerID":225023,"Points":8110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17854","ServerKey":"pl181","X":391,"Y":579},{"Bonus":0,"Continent":"K46","ID":17855,"Name":"017 Wioska","PlayerID":699671454,"Points":8290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17855","ServerKey":"pl181","X":632,"Y":471},{"Bonus":0,"Continent":"K35","ID":17856,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17856","ServerKey":"pl181","X":546,"Y":374},{"Bonus":0,"Continent":"K64","ID":17857,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17857","ServerKey":"pl181","X":493,"Y":635},{"Bonus":0,"Continent":"K65","ID":17859,"Name":"RTS 17","PlayerID":848995242,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17859","ServerKey":"pl181","X":570,"Y":612},{"Bonus":0,"Continent":"K54","ID":17860,"Name":"Witam w wietnamie","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17860","ServerKey":"pl181","X":415,"Y":551},{"Bonus":0,"Continent":"K43","ID":17861,"Name":"Westcoast.007","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17861","ServerKey":"pl181","X":381,"Y":436},{"Bonus":0,"Continent":"K64","ID":17862,"Name":"KIELBA 092","PlayerID":699342219,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17862","ServerKey":"pl181","X":459,"Y":626},{"Bonus":0,"Continent":"K56","ID":17863,"Name":"026","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17863","ServerKey":"pl181","X":630,"Y":525},{"Bonus":0,"Continent":"K56","ID":17864,"Name":"026 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17864","ServerKey":"pl181","X":633,"Y":503},{"Bonus":0,"Continent":"K35","ID":17865,"Name":"005","PlayerID":1424656,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17865","ServerKey":"pl181","X":549,"Y":394},{"Bonus":0,"Continent":"K46","ID":17866,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17866","ServerKey":"pl181","X":616,"Y":442},{"Bonus":0,"Continent":"K34","ID":17867,"Name":"052","PlayerID":698364331,"Points":5337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17867","ServerKey":"pl181","X":433,"Y":382},{"Bonus":0,"Continent":"K45","ID":17868,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17868","ServerKey":"pl181","X":592,"Y":406},{"Bonus":7,"Continent":"K34","ID":17869,"Name":"Konfederacja +","PlayerID":848915730,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17869","ServerKey":"pl181","X":456,"Y":373},{"Bonus":0,"Continent":"K56","ID":17870,"Name":"0051","PlayerID":6510480,"Points":9748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17870","ServerKey":"pl181","X":629,"Y":532},{"Bonus":0,"Continent":"K45","ID":17871,"Name":"D011","PlayerID":699761749,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17871","ServerKey":"pl181","X":596,"Y":412},{"Bonus":0,"Continent":"K56","ID":17872,"Name":"Hel 03","PlayerID":698702991,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17872","ServerKey":"pl181","X":614,"Y":564},{"Bonus":0,"Continent":"K65","ID":17873,"Name":"Sony 911","PlayerID":1415009,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17873","ServerKey":"pl181","X":579,"Y":608},{"Bonus":0,"Continent":"K45","ID":17874,"Name":"MasteroN 08","PlayerID":699379895,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17874","ServerKey":"pl181","X":567,"Y":446},{"Bonus":0,"Continent":"K65","ID":17875,"Name":"0148","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17875","ServerKey":"pl181","X":551,"Y":620},{"Bonus":0,"Continent":"K65","ID":17876,"Name":"006","PlayerID":699189792,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17876","ServerKey":"pl181","X":564,"Y":616},{"Bonus":0,"Continent":"K64","ID":17878,"Name":"012","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17878","ServerKey":"pl181","X":494,"Y":630},{"Bonus":0,"Continent":"K64","ID":17880,"Name":"#025 A","PlayerID":698585370,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17880","ServerKey":"pl181","X":457,"Y":623},{"Bonus":0,"Continent":"K43","ID":17881,"Name":"A0178","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17881","ServerKey":"pl181","X":367,"Y":477},{"Bonus":0,"Continent":"K46","ID":17882,"Name":"Deor, kaj się pchosz?","PlayerID":699545762,"Points":3388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17882","ServerKey":"pl181","X":629,"Y":470},{"Bonus":0,"Continent":"K64","ID":17883,"Name":"083","PlayerID":849084985,"Points":8250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17883","ServerKey":"pl181","X":438,"Y":615},{"Bonus":0,"Continent":"K35","ID":17884,"Name":"Lord Lord Franek .#016","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17884","ServerKey":"pl181","X":550,"Y":378},{"Bonus":0,"Continent":"K35","ID":17885,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17885","ServerKey":"pl181","X":505,"Y":369},{"Bonus":0,"Continent":"K53","ID":17886,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17886","ServerKey":"pl181","X":396,"Y":585},{"Bonus":0,"Continent":"K64","ID":17887,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17887","ServerKey":"pl181","X":494,"Y":635},{"Bonus":0,"Continent":"K65","ID":17888,"Name":"0058","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17888","ServerKey":"pl181","X":560,"Y":621},{"Bonus":0,"Continent":"K53","ID":17889,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17889","ServerKey":"pl181","X":381,"Y":552},{"Bonus":0,"Continent":"K65","ID":17890,"Name":"sony911","PlayerID":1415009,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17890","ServerKey":"pl181","X":568,"Y":610},{"Bonus":0,"Continent":"K46","ID":17891,"Name":"Deor czuje dym ;-)","PlayerID":699545762,"Points":5645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17891","ServerKey":"pl181","X":628,"Y":474},{"Bonus":0,"Continent":"K43","ID":17892,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17892","ServerKey":"pl181","X":377,"Y":455},{"Bonus":0,"Continent":"K35","ID":17894,"Name":"020","PlayerID":1424656,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17894","ServerKey":"pl181","X":555,"Y":378},{"Bonus":0,"Continent":"K43","ID":17895,"Name":"Westcoast.094","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17895","ServerKey":"pl181","X":392,"Y":418},{"Bonus":0,"Continent":"K43","ID":17896,"Name":"00000A","PlayerID":3698627,"Points":10690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17896","ServerKey":"pl181","X":376,"Y":461},{"Bonus":0,"Continent":"K43","ID":17897,"Name":"Westcoast.037","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17897","ServerKey":"pl181","X":397,"Y":417},{"Bonus":0,"Continent":"K53","ID":17898,"Name":"NWO","PlayerID":849030226,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17898","ServerKey":"pl181","X":376,"Y":532},{"Bonus":0,"Continent":"K35","ID":17899,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17899","ServerKey":"pl181","X":543,"Y":374},{"Bonus":0,"Continent":"K43","ID":17900,"Name":"A0108","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17900","ServerKey":"pl181","X":363,"Y":488},{"Bonus":0,"Continent":"K46","ID":17901,"Name":"002 B","PlayerID":699718269,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17901","ServerKey":"pl181","X":622,"Y":447},{"Bonus":0,"Continent":"K43","ID":17902,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17902","ServerKey":"pl181","X":373,"Y":456},{"Bonus":0,"Continent":"K53","ID":17903,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17903","ServerKey":"pl181","X":393,"Y":578},{"Bonus":0,"Continent":"K43","ID":17904,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17904","ServerKey":"pl181","X":399,"Y":410},{"Bonus":0,"Continent":"K34","ID":17905,"Name":"0046","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17905","ServerKey":"pl181","X":447,"Y":375},{"Bonus":0,"Continent":"K46","ID":17906,"Name":"Gattacka","PlayerID":699298370,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17906","ServerKey":"pl181","X":606,"Y":424},{"Bonus":0,"Continent":"K56","ID":17907,"Name":"031","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17907","ServerKey":"pl181","X":633,"Y":519},{"Bonus":5,"Continent":"K53","ID":17908,"Name":"Brat447","PlayerID":699262350,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17908","ServerKey":"pl181","X":369,"Y":516},{"Bonus":0,"Continent":"K34","ID":17909,"Name":".031.","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17909","ServerKey":"pl181","X":489,"Y":378},{"Bonus":0,"Continent":"K35","ID":17910,"Name":"R-01","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17910","ServerKey":"pl181","X":560,"Y":384},{"Bonus":0,"Continent":"K53","ID":17911,"Name":"049","PlayerID":8908002,"Points":5638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17911","ServerKey":"pl181","X":371,"Y":538},{"Bonus":0,"Continent":"K35","ID":17912,"Name":"009 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17912","ServerKey":"pl181","X":535,"Y":371},{"Bonus":0,"Continent":"K53","ID":17913,"Name":"# Szymi 4","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17913","ServerKey":"pl181","X":390,"Y":545},{"Bonus":0,"Continent":"K64","ID":17914,"Name":"022.xxx","PlayerID":698143931,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17914","ServerKey":"pl181","X":454,"Y":623},{"Bonus":0,"Continent":"K35","ID":17915,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17915","ServerKey":"pl181","X":521,"Y":366},{"Bonus":0,"Continent":"K35","ID":17916,"Name":"C 015","PlayerID":6384450,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17916","ServerKey":"pl181","X":579,"Y":397},{"Bonus":0,"Continent":"K56","ID":17917,"Name":"Wioska PogĂłrze 1","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17917","ServerKey":"pl181","X":628,"Y":535},{"Bonus":0,"Continent":"K53","ID":17918,"Name":"WaƂcz","PlayerID":698769107,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17918","ServerKey":"pl181","X":394,"Y":577},{"Bonus":0,"Continent":"K34","ID":17919,"Name":"Bagdad","PlayerID":8847546,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17919","ServerKey":"pl181","X":492,"Y":364},{"Bonus":0,"Continent":"K65","ID":17920,"Name":"#0018","PlayerID":699728159,"Points":7888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17920","ServerKey":"pl181","X":520,"Y":634},{"Bonus":0,"Continent":"K55","ID":17921,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17921","ServerKey":"pl181","X":520,"Y":527},{"Bonus":0,"Continent":"K44","ID":17922,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17922","ServerKey":"pl181","X":406,"Y":406},{"Bonus":0,"Continent":"K34","ID":17923,"Name":".024.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17923","ServerKey":"pl181","X":485,"Y":369},{"Bonus":0,"Continent":"K56","ID":17924,"Name":"0031","PlayerID":6510480,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17924","ServerKey":"pl181","X":625,"Y":535},{"Bonus":0,"Continent":"K43","ID":17925,"Name":"A0090","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17925","ServerKey":"pl181","X":368,"Y":487},{"Bonus":0,"Continent":"K44","ID":17926,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17926","ServerKey":"pl181","X":401,"Y":408},{"Bonus":0,"Continent":"K46","ID":17927,"Name":"013 - Vigo","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17927","ServerKey":"pl181","X":634,"Y":487},{"Bonus":0,"Continent":"K35","ID":17928,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17928","ServerKey":"pl181","X":512,"Y":365},{"Bonus":0,"Continent":"K56","ID":17929,"Name":"Szlachcic PóƂnoc 003","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17929","ServerKey":"pl181","X":630,"Y":510},{"Bonus":0,"Continent":"K46","ID":17931,"Name":"097. Kirlan","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17931","ServerKey":"pl181","X":626,"Y":465},{"Bonus":6,"Continent":"K46","ID":17932,"Name":"126 im Gribowa","PlayerID":699491076,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17932","ServerKey":"pl181","X":602,"Y":411},{"Bonus":0,"Continent":"K53","ID":17933,"Name":"Wioska","PlayerID":849084005,"Points":8642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17933","ServerKey":"pl181","X":379,"Y":554},{"Bonus":0,"Continent":"K45","ID":17934,"Name":"A READY","PlayerID":699759128,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17934","ServerKey":"pl181","X":589,"Y":401},{"Bonus":0,"Continent":"K54","ID":17935,"Name":"Pobozowisko","PlayerID":699513260,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17935","ServerKey":"pl181","X":407,"Y":598},{"Bonus":0,"Continent":"K45","ID":17936,"Name":"Belvedere 018","PlayerID":699756210,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17936","ServerKey":"pl181","X":585,"Y":400},{"Bonus":0,"Continent":"K64","ID":17937,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":8844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17937","ServerKey":"pl181","X":435,"Y":618},{"Bonus":0,"Continent":"K46","ID":17938,"Name":"Gattacka","PlayerID":699298370,"Points":9042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17938","ServerKey":"pl181","X":607,"Y":418},{"Bonus":0,"Continent":"K65","ID":17939,"Name":"#0011","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17939","ServerKey":"pl181","X":549,"Y":626},{"Bonus":0,"Continent":"K34","ID":17940,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17940","ServerKey":"pl181","X":441,"Y":382},{"Bonus":0,"Continent":"K46","ID":17941,"Name":"FB006","PlayerID":9314079,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17941","ServerKey":"pl181","X":629,"Y":493},{"Bonus":0,"Continent":"K43","ID":17942,"Name":"A0091","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17942","ServerKey":"pl181","X":364,"Y":491},{"Bonus":0,"Continent":"K56","ID":17943,"Name":"Wioska 032","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17943","ServerKey":"pl181","X":604,"Y":582},{"Bonus":0,"Continent":"K53","ID":17944,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17944","ServerKey":"pl181","X":382,"Y":527},{"Bonus":0,"Continent":"K35","ID":17945,"Name":"014 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17945","ServerKey":"pl181","X":540,"Y":370},{"Bonus":0,"Continent":"K46","ID":17946,"Name":"089.","PlayerID":849094609,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17946","ServerKey":"pl181","X":634,"Y":489},{"Bonus":0,"Continent":"K54","ID":17947,"Name":"004","PlayerID":699425709,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17947","ServerKey":"pl181","X":404,"Y":542},{"Bonus":0,"Continent":"K46","ID":17948,"Name":"016 WymiękƂem w hu11","PlayerID":699272633,"Points":10711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17948","ServerKey":"pl181","X":626,"Y":459},{"Bonus":0,"Continent":"K54","ID":17949,"Name":"088 LUDZI CAƁA MASA","PlayerID":699382126,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17949","ServerKey":"pl181","X":407,"Y":557},{"Bonus":0,"Continent":"K46","ID":17950,"Name":"Wioska (021)","PlayerID":698232227,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17950","ServerKey":"pl181","X":620,"Y":440},{"Bonus":4,"Continent":"K56","ID":17951,"Name":"036|","PlayerID":8000875,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17951","ServerKey":"pl181","X":622,"Y":552},{"Bonus":0,"Continent":"K53","ID":17952,"Name":"032","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17952","ServerKey":"pl181","X":369,"Y":532},{"Bonus":0,"Continent":"K45","ID":17953,"Name":"007","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17953","ServerKey":"pl181","X":554,"Y":400},{"Bonus":0,"Continent":"K46","ID":17954,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17954","ServerKey":"pl181","X":601,"Y":414},{"Bonus":0,"Continent":"K34","ID":17955,"Name":"A-002","PlayerID":8419570,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17955","ServerKey":"pl181","X":412,"Y":397},{"Bonus":0,"Continent":"K64","ID":17956,"Name":"033","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17956","ServerKey":"pl181","X":472,"Y":630},{"Bonus":0,"Continent":"K56","ID":17957,"Name":"B032","PlayerID":9314079,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17957","ServerKey":"pl181","X":634,"Y":512},{"Bonus":0,"Continent":"K53","ID":17958,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17958","ServerKey":"pl181","X":380,"Y":551},{"Bonus":0,"Continent":"K64","ID":17959,"Name":"018","PlayerID":699878511,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17959","ServerKey":"pl181","X":496,"Y":630},{"Bonus":0,"Continent":"K65","ID":17960,"Name":"024","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17960","ServerKey":"pl181","X":591,"Y":600},{"Bonus":0,"Continent":"K54","ID":17961,"Name":"Pobozowisko","PlayerID":699513260,"Points":10765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17961","ServerKey":"pl181","X":412,"Y":599},{"Bonus":0,"Continent":"K35","ID":17962,"Name":"A READY","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17962","ServerKey":"pl181","X":586,"Y":395},{"Bonus":0,"Continent":"K44","ID":17963,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17963","ServerKey":"pl181","X":408,"Y":402},{"Bonus":0,"Continent":"K46","ID":17964,"Name":"615|429 Wioska barbarzyƄska02","PlayerID":6822957,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17964","ServerKey":"pl181","X":615,"Y":429},{"Bonus":0,"Continent":"K64","ID":17965,"Name":"022","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17965","ServerKey":"pl181","X":474,"Y":631},{"Bonus":0,"Continent":"K45","ID":17966,"Name":"Gattacka","PlayerID":699298370,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17966","ServerKey":"pl181","X":590,"Y":492},{"Bonus":0,"Continent":"K46","ID":17967,"Name":"616|429 Wioska barbarzyƄska07","PlayerID":6822957,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17967","ServerKey":"pl181","X":616,"Y":429},{"Bonus":0,"Continent":"K44","ID":17968,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17968","ServerKey":"pl181","X":410,"Y":406},{"Bonus":0,"Continent":"K56","ID":17969,"Name":"Nowa 07","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17969","ServerKey":"pl181","X":615,"Y":570},{"Bonus":0,"Continent":"K34","ID":17970,"Name":"051","PlayerID":698739350,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17970","ServerKey":"pl181","X":471,"Y":368},{"Bonus":0,"Continent":"K46","ID":17971,"Name":"Deor, dej na luz","PlayerID":699545762,"Points":4059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17971","ServerKey":"pl181","X":627,"Y":475},{"Bonus":0,"Continent":"K43","ID":17973,"Name":"Westcoast.039","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17973","ServerKey":"pl181","X":399,"Y":419},{"Bonus":0,"Continent":"K43","ID":17976,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17976","ServerKey":"pl181","X":375,"Y":450},{"Bonus":0,"Continent":"K64","ID":17977,"Name":"070 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17977","ServerKey":"pl181","X":473,"Y":631},{"Bonus":0,"Continent":"K34","ID":17978,"Name":"123","PlayerID":699761749,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17978","ServerKey":"pl181","X":493,"Y":369},{"Bonus":0,"Continent":"K43","ID":17979,"Name":"Westcoast.022","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17979","ServerKey":"pl181","X":389,"Y":433},{"Bonus":0,"Continent":"K44","ID":17980,"Name":"estadio","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17980","ServerKey":"pl181","X":400,"Y":414},{"Bonus":0,"Continent":"K34","ID":17981,"Name":"Darma","PlayerID":356642,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17981","ServerKey":"pl181","X":417,"Y":392},{"Bonus":0,"Continent":"K44","ID":17982,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17982","ServerKey":"pl181","X":404,"Y":409},{"Bonus":0,"Continent":"K34","ID":17983,"Name":"Wioska Czerwonacki Magnat","PlayerID":699402816,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17983","ServerKey":"pl181","X":423,"Y":389},{"Bonus":0,"Continent":"K43","ID":17984,"Name":"A0179","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17984","ServerKey":"pl181","X":368,"Y":476},{"Bonus":0,"Continent":"K56","ID":17985,"Name":"021","PlayerID":699413040,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17985","ServerKey":"pl181","X":628,"Y":528},{"Bonus":0,"Continent":"K34","ID":17986,"Name":"Konfederacja +","PlayerID":848915730,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17986","ServerKey":"pl181","X":457,"Y":374},{"Bonus":0,"Continent":"K54","ID":17987,"Name":"Pobozowisko","PlayerID":699513260,"Points":10821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17987","ServerKey":"pl181","X":408,"Y":599},{"Bonus":0,"Continent":"K43","ID":17988,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17988","ServerKey":"pl181","X":372,"Y":455},{"Bonus":0,"Continent":"K45","ID":17989,"Name":"WE ARE READY!","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17989","ServerKey":"pl181","X":594,"Y":403},{"Bonus":0,"Continent":"K64","ID":17990,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17990","ServerKey":"pl181","X":417,"Y":602},{"Bonus":0,"Continent":"K43","ID":17991,"Name":"s181eo28","PlayerID":393668,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17991","ServerKey":"pl181","X":382,"Y":459},{"Bonus":0,"Continent":"K55","ID":17992,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17992","ServerKey":"pl181","X":595,"Y":589},{"Bonus":0,"Continent":"K35","ID":17993,"Name":"Asgard","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17993","ServerKey":"pl181","X":539,"Y":372},{"Bonus":0,"Continent":"K65","ID":17994,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17994","ServerKey":"pl181","X":523,"Y":630},{"Bonus":0,"Continent":"K46","ID":17995,"Name":"083. GĂłry Dzielące","PlayerID":8337151,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17995","ServerKey":"pl181","X":626,"Y":462},{"Bonus":0,"Continent":"K64","ID":17996,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17996","ServerKey":"pl181","X":431,"Y":615},{"Bonus":0,"Continent":"K46","ID":17997,"Name":"Jaaa","PlayerID":698635863,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17997","ServerKey":"pl181","X":617,"Y":443},{"Bonus":0,"Continent":"K65","ID":17998,"Name":"#0017","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17998","ServerKey":"pl181","X":546,"Y":627},{"Bonus":0,"Continent":"K54","ID":17999,"Name":"B10","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=17999","ServerKey":"pl181","X":411,"Y":555},{"Bonus":0,"Continent":"K53","ID":18000,"Name":"Wioska","PlayerID":849084005,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18000","ServerKey":"pl181","X":372,"Y":542},{"Bonus":0,"Continent":"K53","ID":18001,"Name":"Jesion","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18001","ServerKey":"pl181","X":370,"Y":506},{"Bonus":0,"Continent":"K46","ID":18002,"Name":"D008","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18002","ServerKey":"pl181","X":602,"Y":413},{"Bonus":0,"Continent":"K46","ID":18003,"Name":"024 aaaa pozdro 600","PlayerID":699272633,"Points":9386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18003","ServerKey":"pl181","X":630,"Y":462},{"Bonus":0,"Continent":"K34","ID":18004,"Name":"VN Fanzell Kruger","PlayerID":699883079,"Points":9599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18004","ServerKey":"pl181","X":463,"Y":371},{"Bonus":0,"Continent":"K34","ID":18005,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18005","ServerKey":"pl181","X":442,"Y":379},{"Bonus":3,"Continent":"K46","ID":18006,"Name":"Piwna 03","PlayerID":699812007,"Points":9437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18006","ServerKey":"pl181","X":612,"Y":434},{"Bonus":0,"Continent":"K56","ID":18007,"Name":"023.","PlayerID":849094609,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18007","ServerKey":"pl181","X":632,"Y":504},{"Bonus":0,"Continent":"K56","ID":18008,"Name":"[024]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18008","ServerKey":"pl181","X":632,"Y":514},{"Bonus":0,"Continent":"K53","ID":18009,"Name":"69. Wioska 69","PlayerID":849091769,"Points":3920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18009","ServerKey":"pl181","X":386,"Y":570},{"Bonus":0,"Continent":"K56","ID":18010,"Name":"Nowa 19","PlayerID":698702991,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18010","ServerKey":"pl181","X":618,"Y":567},{"Bonus":0,"Continent":"K55","ID":18011,"Name":"E 003","PlayerID":8078914,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18011","ServerKey":"pl181","X":595,"Y":593},{"Bonus":1,"Continent":"K34","ID":18012,"Name":"yyyy","PlayerID":699883079,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18012","ServerKey":"pl181","X":495,"Y":364},{"Bonus":0,"Continent":"K64","ID":18013,"Name":"068","PlayerID":849084985,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18013","ServerKey":"pl181","X":439,"Y":618},{"Bonus":0,"Continent":"K46","ID":18014,"Name":"614|426 002Legatus","PlayerID":6822957,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18014","ServerKey":"pl181","X":614,"Y":426},{"Bonus":0,"Continent":"K35","ID":18015,"Name":"Kozio","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18015","ServerKey":"pl181","X":564,"Y":383},{"Bonus":0,"Continent":"K43","ID":18016,"Name":"RzeĆșnia","PlayerID":1746216,"Points":8615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18016","ServerKey":"pl181","X":383,"Y":432},{"Bonus":0,"Continent":"K53","ID":18018,"Name":"Wioska barbarzyƄska","PlayerID":698526036,"Points":6415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18018","ServerKey":"pl181","X":391,"Y":572},{"Bonus":0,"Continent":"K34","ID":18019,"Name":"Novigrad","PlayerID":699658023,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18019","ServerKey":"pl181","X":478,"Y":370},{"Bonus":0,"Continent":"K53","ID":18020,"Name":"R008","PlayerID":8607734,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18020","ServerKey":"pl181","X":390,"Y":575},{"Bonus":0,"Continent":"K43","ID":18021,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18021","ServerKey":"pl181","X":372,"Y":464},{"Bonus":0,"Continent":"K35","ID":18022,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":6757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18022","ServerKey":"pl181","X":578,"Y":391},{"Bonus":0,"Continent":"K53","ID":18023,"Name":"010 Opowiem Wam bajeczkę","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18023","ServerKey":"pl181","X":377,"Y":555},{"Bonus":0,"Continent":"K53","ID":18024,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18024","ServerKey":"pl181","X":373,"Y":543},{"Bonus":0,"Continent":"K53","ID":18025,"Name":"Pobozowisko","PlayerID":699513260,"Points":10966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18025","ServerKey":"pl181","X":397,"Y":588},{"Bonus":0,"Continent":"K43","ID":18026,"Name":"Westcoast.036","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18026","ServerKey":"pl181","X":394,"Y":423},{"Bonus":0,"Continent":"K43","ID":18027,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18027","ServerKey":"pl181","X":376,"Y":446},{"Bonus":0,"Continent":"K34","ID":18028,"Name":"[0076]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18028","ServerKey":"pl181","X":417,"Y":398},{"Bonus":0,"Continent":"K65","ID":18029,"Name":"SSJ 048","PlayerID":699054373,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18029","ServerKey":"pl181","X":505,"Y":634},{"Bonus":0,"Continent":"K34","ID":18030,"Name":"Yyyy","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18030","ServerKey":"pl181","X":499,"Y":368},{"Bonus":0,"Continent":"K53","ID":18031,"Name":"061 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18031","ServerKey":"pl181","X":381,"Y":564},{"Bonus":0,"Continent":"K55","ID":18032,"Name":"E 008","PlayerID":8078914,"Points":9939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18032","ServerKey":"pl181","X":592,"Y":594},{"Bonus":0,"Continent":"K53","ID":18033,"Name":"Lipa","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18033","ServerKey":"pl181","X":368,"Y":507},{"Bonus":0,"Continent":"K64","ID":18035,"Name":"40001","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18035","ServerKey":"pl181","X":487,"Y":631},{"Bonus":0,"Continent":"K65","ID":18036,"Name":"005","PlayerID":699878511,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18036","ServerKey":"pl181","X":501,"Y":625},{"Bonus":0,"Continent":"K55","ID":18037,"Name":"026","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18037","ServerKey":"pl181","X":595,"Y":597},{"Bonus":0,"Continent":"K35","ID":18038,"Name":"C013","PlayerID":699761749,"Points":6885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18038","ServerKey":"pl181","X":578,"Y":392},{"Bonus":0,"Continent":"K46","ID":18039,"Name":"616|424 006 PƂyta RedƂowska","PlayerID":6822957,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18039","ServerKey":"pl181","X":616,"Y":424},{"Bonus":0,"Continent":"K43","ID":18040,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18040","ServerKey":"pl181","X":385,"Y":440},{"Bonus":0,"Continent":"K34","ID":18041,"Name":"K34 - [082] Before Land","PlayerID":699088769,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18041","ServerKey":"pl181","X":458,"Y":375},{"Bonus":0,"Continent":"K56","ID":18042,"Name":"056","PlayerID":698786826,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18042","ServerKey":"pl181","X":608,"Y":583},{"Bonus":0,"Continent":"K53","ID":18043,"Name":"ZachĂłd - 010","PlayerID":225023,"Points":8018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18043","ServerKey":"pl181","X":390,"Y":572},{"Bonus":0,"Continent":"K64","ID":18044,"Name":"015","PlayerID":849084985,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18044","ServerKey":"pl181","X":442,"Y":622},{"Bonus":1,"Continent":"K44","ID":18045,"Name":"K44 x036","PlayerID":698364331,"Points":9150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18045","ServerKey":"pl181","X":404,"Y":404},{"Bonus":0,"Continent":"K35","ID":18047,"Name":"WE ARE READY!","PlayerID":699759128,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18047","ServerKey":"pl181","X":587,"Y":397},{"Bonus":0,"Continent":"K54","ID":18048,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18048","ServerKey":"pl181","X":459,"Y":513},{"Bonus":0,"Continent":"K53","ID":18049,"Name":"R001","PlayerID":8607734,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18049","ServerKey":"pl181","X":386,"Y":574},{"Bonus":0,"Continent":"K53","ID":18050,"Name":"Pobozowisko","PlayerID":699513260,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18050","ServerKey":"pl181","X":398,"Y":584},{"Bonus":0,"Continent":"K64","ID":18051,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18051","ServerKey":"pl181","X":482,"Y":634},{"Bonus":0,"Continent":"K35","ID":18052,"Name":"018","PlayerID":1424656,"Points":9607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18052","ServerKey":"pl181","X":557,"Y":378},{"Bonus":0,"Continent":"K34","ID":18053,"Name":"Wioska SoƂtys caƂej wsi","PlayerID":849027025,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18053","ServerKey":"pl181","X":439,"Y":394},{"Bonus":0,"Continent":"K56","ID":18054,"Name":"Wioska PogĂłrze 2","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18054","ServerKey":"pl181","X":627,"Y":535},{"Bonus":0,"Continent":"K43","ID":18055,"Name":"Westcoast.042","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18055","ServerKey":"pl181","X":383,"Y":436},{"Bonus":0,"Continent":"K46","ID":18056,"Name":"042 Takaoka","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18056","ServerKey":"pl181","X":629,"Y":486},{"Bonus":0,"Continent":"K53","ID":18057,"Name":"R009","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18057","ServerKey":"pl181","X":389,"Y":576},{"Bonus":0,"Continent":"K35","ID":18058,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18058","ServerKey":"pl181","X":500,"Y":365},{"Bonus":0,"Continent":"K34","ID":18059,"Name":"0062","PlayerID":699431255,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18059","ServerKey":"pl181","X":459,"Y":368},{"Bonus":0,"Continent":"K56","ID":18060,"Name":"012","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18060","ServerKey":"pl181","X":600,"Y":590},{"Bonus":0,"Continent":"K56","ID":18062,"Name":"Wioska 033","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18062","ServerKey":"pl181","X":604,"Y":587},{"Bonus":0,"Continent":"K35","ID":18063,"Name":"009. Velen","PlayerID":699799629,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18063","ServerKey":"pl181","X":565,"Y":383},{"Bonus":0,"Continent":"K53","ID":18064,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":5263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18064","ServerKey":"pl181","X":392,"Y":573},{"Bonus":0,"Continent":"K65","ID":18065,"Name":"#0007","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18065","ServerKey":"pl181","X":548,"Y":627},{"Bonus":0,"Continent":"K43","ID":18066,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18066","ServerKey":"pl181","X":382,"Y":444},{"Bonus":0,"Continent":"K65","ID":18067,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18067","ServerKey":"pl181","X":520,"Y":628},{"Bonus":0,"Continent":"K46","ID":18068,"Name":"019. Massilia","PlayerID":849091866,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18068","ServerKey":"pl181","X":625,"Y":458},{"Bonus":0,"Continent":"K56","ID":18069,"Name":"[019]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18069","ServerKey":"pl181","X":625,"Y":543},{"Bonus":0,"Continent":"K34","ID":18071,"Name":"[013] Akeno Misaki","PlayerID":699658023,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18071","ServerKey":"pl181","X":481,"Y":369},{"Bonus":0,"Continent":"K43","ID":18072,"Name":"Westcoast.071","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18072","ServerKey":"pl181","X":392,"Y":423},{"Bonus":0,"Continent":"K65","ID":18074,"Name":"SSJ 003","PlayerID":699364813,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18074","ServerKey":"pl181","X":513,"Y":631},{"Bonus":0,"Continent":"K46","ID":18075,"Name":"007 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18075","ServerKey":"pl181","X":626,"Y":451},{"Bonus":0,"Continent":"K34","ID":18076,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18076","ServerKey":"pl181","X":439,"Y":379},{"Bonus":0,"Continent":"K43","ID":18077,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18077","ServerKey":"pl181","X":376,"Y":447},{"Bonus":0,"Continent":"K46","ID":18078,"Name":"014 B","PlayerID":556154,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18078","ServerKey":"pl181","X":624,"Y":453},{"Bonus":0,"Continent":"K64","ID":18079,"Name":"090","PlayerID":849084985,"Points":4152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18079","ServerKey":"pl181","X":440,"Y":615},{"Bonus":0,"Continent":"K34","ID":18080,"Name":"082","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18080","ServerKey":"pl181","X":479,"Y":367},{"Bonus":0,"Continent":"K53","ID":18081,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18081","ServerKey":"pl181","X":376,"Y":542},{"Bonus":0,"Continent":"K53","ID":18082,"Name":"Lolita","PlayerID":849030226,"Points":7453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18082","ServerKey":"pl181","X":368,"Y":528},{"Bonus":0,"Continent":"K35","ID":18083,"Name":"A READY","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18083","ServerKey":"pl181","X":588,"Y":397},{"Bonus":0,"Continent":"K44","ID":18084,"Name":"0090","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18084","ServerKey":"pl181","X":444,"Y":407},{"Bonus":0,"Continent":"K46","ID":18085,"Name":"Wioska 7","PlayerID":848935020,"Points":6827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18085","ServerKey":"pl181","X":634,"Y":481},{"Bonus":0,"Continent":"K53","ID":18087,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18087","ServerKey":"pl181","X":382,"Y":578},{"Bonus":0,"Continent":"K56","ID":18088,"Name":"022.","PlayerID":849094609,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18088","ServerKey":"pl181","X":633,"Y":511},{"Bonus":0,"Continent":"K46","ID":18090,"Name":"012 B","PlayerID":556154,"Points":8643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18090","ServerKey":"pl181","X":621,"Y":447},{"Bonus":0,"Continent":"K34","ID":18092,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18092","ServerKey":"pl181","X":495,"Y":368},{"Bonus":0,"Continent":"K34","ID":18093,"Name":"002. Nottingham","PlayerID":698364331,"Points":10007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18093","ServerKey":"pl181","X":448,"Y":378},{"Bonus":0,"Continent":"K53","ID":18094,"Name":"050","PlayerID":8908002,"Points":5523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18094","ServerKey":"pl181","X":369,"Y":534},{"Bonus":0,"Continent":"K64","ID":18095,"Name":"A08 Wioska barbarzyƄska","PlayerID":849037407,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18095","ServerKey":"pl181","X":467,"Y":631},{"Bonus":0,"Continent":"K56","ID":18096,"Name":"046 KrakĂłw","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18096","ServerKey":"pl181","X":634,"Y":509},{"Bonus":0,"Continent":"K43","ID":18097,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18097","ServerKey":"pl181","X":383,"Y":442},{"Bonus":0,"Continent":"K34","ID":18098,"Name":"yyyy","PlayerID":699883079,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18098","ServerKey":"pl181","X":497,"Y":361},{"Bonus":0,"Continent":"K43","ID":18099,"Name":"A0129","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18099","ServerKey":"pl181","X":371,"Y":482},{"Bonus":0,"Continent":"K34","ID":18100,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18100","ServerKey":"pl181","X":435,"Y":387},{"Bonus":0,"Continent":"K46","ID":18101,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18101","ServerKey":"pl181","X":601,"Y":415},{"Bonus":0,"Continent":"K64","ID":18102,"Name":"0039 Andrzej speaking","PlayerID":9060641,"Points":8266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18102","ServerKey":"pl181","X":414,"Y":605},{"Bonus":0,"Continent":"K53","ID":18103,"Name":"031","PlayerID":6853693,"Points":5607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18103","ServerKey":"pl181","X":368,"Y":521},{"Bonus":0,"Continent":"K55","ID":18104,"Name":"Wioska FANBOY Krolik14","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18104","ServerKey":"pl181","X":597,"Y":522},{"Bonus":0,"Continent":"K46","ID":18105,"Name":"FB005","PlayerID":9314079,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18105","ServerKey":"pl181","X":631,"Y":492},{"Bonus":0,"Continent":"K43","ID":18106,"Name":"Westcoast.063","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18106","ServerKey":"pl181","X":387,"Y":429},{"Bonus":0,"Continent":"K34","ID":18107,"Name":"Konfederacja +","PlayerID":848915730,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18107","ServerKey":"pl181","X":456,"Y":376},{"Bonus":0,"Continent":"K43","ID":18108,"Name":"A0092","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18108","ServerKey":"pl181","X":367,"Y":488},{"Bonus":0,"Continent":"K64","ID":18109,"Name":"NIERAJ02","PlayerID":8729672,"Points":5485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18109","ServerKey":"pl181","X":453,"Y":622},{"Bonus":0,"Continent":"K34","ID":18110,"Name":"059","PlayerID":698364331,"Points":6230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18110","ServerKey":"pl181","X":434,"Y":386},{"Bonus":0,"Continent":"K43","ID":18111,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18111","ServerKey":"pl181","X":372,"Y":465},{"Bonus":0,"Continent":"K35","ID":18112,"Name":".achim.","PlayerID":6936607,"Points":11970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18112","ServerKey":"pl181","X":537,"Y":391},{"Bonus":0,"Continent":"K54","ID":18113,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18113","ServerKey":"pl181","X":404,"Y":595},{"Bonus":0,"Continent":"K43","ID":18114,"Name":"A0093","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18114","ServerKey":"pl181","X":367,"Y":486},{"Bonus":0,"Continent":"K34","ID":18115,"Name":"VN Minamoto","PlayerID":699883079,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18115","ServerKey":"pl181","X":468,"Y":373},{"Bonus":0,"Continent":"K65","ID":18116,"Name":"#0017","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18116","ServerKey":"pl181","X":515,"Y":633},{"Bonus":0,"Continent":"K55","ID":18117,"Name":"-008- K55 Storm","PlayerID":8096537,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18117","ServerKey":"pl181","X":590,"Y":599},{"Bonus":0,"Continent":"K44","ID":18118,"Name":"+44 72 Lyon Sans Souci","PlayerID":698361257,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18118","ServerKey":"pl181","X":424,"Y":471},{"Bonus":0,"Continent":"K64","ID":18119,"Name":"010","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18119","ServerKey":"pl181","X":492,"Y":633},{"Bonus":0,"Continent":"K44","ID":18120,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18120","ServerKey":"pl181","X":427,"Y":466},{"Bonus":0,"Continent":"K55","ID":18121,"Name":"E 009","PlayerID":8078914,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18121","ServerKey":"pl181","X":592,"Y":598},{"Bonus":0,"Continent":"K54","ID":18122,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18122","ServerKey":"pl181","X":402,"Y":595},{"Bonus":0,"Continent":"K53","ID":18123,"Name":"055","PlayerID":6853693,"Points":4621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18123","ServerKey":"pl181","X":370,"Y":529},{"Bonus":0,"Continent":"K64","ID":18124,"Name":"0006 -1-","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18124","ServerKey":"pl181","X":426,"Y":609},{"Bonus":0,"Continent":"K34","ID":18125,"Name":"SoƂtys Wsi craig1","PlayerID":849027025,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18125","ServerKey":"pl181","X":439,"Y":385},{"Bonus":0,"Continent":"K35","ID":18126,"Name":"Taran","PlayerID":699170684,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18126","ServerKey":"pl181","X":551,"Y":376},{"Bonus":0,"Continent":"K34","ID":18127,"Name":"0012","PlayerID":699431255,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18127","ServerKey":"pl181","X":440,"Y":379},{"Bonus":0,"Continent":"K35","ID":18128,"Name":"Taran","PlayerID":699170684,"Points":9440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18128","ServerKey":"pl181","X":549,"Y":374},{"Bonus":0,"Continent":"K34","ID":18129,"Name":"Wioska permo2x","PlayerID":699658023,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18129","ServerKey":"pl181","X":476,"Y":374},{"Bonus":0,"Continent":"K46","ID":18130,"Name":"Piwna 13","PlayerID":699812007,"Points":8697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18130","ServerKey":"pl181","X":614,"Y":435},{"Bonus":0,"Continent":"K43","ID":18131,"Name":"007 New Episode v1","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18131","ServerKey":"pl181","X":399,"Y":413},{"Bonus":0,"Continent":"K65","ID":18132,"Name":"RTS 73","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18132","ServerKey":"pl181","X":569,"Y":613},{"Bonus":0,"Continent":"K34","ID":18133,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18133","ServerKey":"pl181","X":420,"Y":390},{"Bonus":0,"Continent":"K35","ID":18134,"Name":"AMojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18134","ServerKey":"pl181","X":515,"Y":370},{"Bonus":0,"Continent":"K35","ID":18135,"Name":"Wioska 2","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18135","ServerKey":"pl181","X":558,"Y":382},{"Bonus":0,"Continent":"K34","ID":18136,"Name":"[0060]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18136","ServerKey":"pl181","X":418,"Y":398},{"Bonus":0,"Continent":"K46","ID":18137,"Name":"020 | PALESTINA | Msqt [*]","PlayerID":9228039,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18137","ServerKey":"pl181","X":622,"Y":439},{"Bonus":0,"Continent":"K45","ID":18138,"Name":"A READY","PlayerID":1553947,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18138","ServerKey":"pl181","X":591,"Y":401},{"Bonus":0,"Continent":"K65","ID":18139,"Name":"Plate Partition - Interior","PlayerID":8199417,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18139","ServerKey":"pl181","X":525,"Y":631},{"Bonus":0,"Continent":"K46","ID":18140,"Name":"608|420 Wioska barbarzyƄska11","PlayerID":6822957,"Points":9457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18140","ServerKey":"pl181","X":608,"Y":420},{"Bonus":0,"Continent":"K65","ID":18141,"Name":"RTS 4","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18141","ServerKey":"pl181","X":572,"Y":611},{"Bonus":0,"Continent":"K64","ID":18142,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18142","ServerKey":"pl181","X":421,"Y":609},{"Bonus":0,"Continent":"K56","ID":18143,"Name":"022","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18143","ServerKey":"pl181","X":614,"Y":585},{"Bonus":0,"Continent":"K53","ID":18144,"Name":"ZachĂłd - 012","PlayerID":225023,"Points":8313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18144","ServerKey":"pl181","X":390,"Y":579},{"Bonus":0,"Continent":"K35","ID":18145,"Name":"Taran","PlayerID":699170684,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18145","ServerKey":"pl181","X":548,"Y":374},{"Bonus":0,"Continent":"K46","ID":18146,"Name":"034","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18146","ServerKey":"pl181","X":622,"Y":443},{"Bonus":0,"Continent":"K65","ID":18148,"Name":"013.","PlayerID":873575,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18148","ServerKey":"pl181","X":563,"Y":615},{"Bonus":0,"Continent":"K34","ID":18149,"Name":"K34 x007","PlayerID":698364331,"Points":8809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18149","ServerKey":"pl181","X":445,"Y":382},{"Bonus":0,"Continent":"K64","ID":18151,"Name":"A09 Wioska barbarzyƄska","PlayerID":849037407,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18151","ServerKey":"pl181","X":467,"Y":632},{"Bonus":0,"Continent":"K56","ID":18152,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18152","ServerKey":"pl181","X":620,"Y":556},{"Bonus":0,"Continent":"K65","ID":18153,"Name":"#0015","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18153","ServerKey":"pl181","X":517,"Y":635},{"Bonus":0,"Continent":"K46","ID":18154,"Name":"041 Murayama","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18154","ServerKey":"pl181","X":633,"Y":469},{"Bonus":0,"Continent":"K65","ID":18155,"Name":"Kiwi Kiwi","PlayerID":8627359,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18155","ServerKey":"pl181","X":576,"Y":613},{"Bonus":0,"Continent":"K43","ID":18157,"Name":"A0139","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18157","ServerKey":"pl181","X":368,"Y":490},{"Bonus":0,"Continent":"K53","ID":18158,"Name":"064","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18158","ServerKey":"pl181","X":366,"Y":513},{"Bonus":0,"Continent":"K56","ID":18159,"Name":"BACÓWKA |017|","PlayerID":7394371,"Points":12046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18159","ServerKey":"pl181","X":631,"Y":502},{"Bonus":0,"Continent":"K35","ID":18160,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18160","ServerKey":"pl181","X":528,"Y":372},{"Bonus":0,"Continent":"K53","ID":18161,"Name":"069","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18161","ServerKey":"pl181","X":367,"Y":523},{"Bonus":0,"Continent":"K65","ID":18162,"Name":"Sony 911","PlayerID":1415009,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18162","ServerKey":"pl181","X":568,"Y":611},{"Bonus":0,"Continent":"K53","ID":18163,"Name":"Grab","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18163","ServerKey":"pl181","X":364,"Y":501},{"Bonus":0,"Continent":"K46","ID":18164,"Name":"Jehu_Kingdom_66_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18164","ServerKey":"pl181","X":626,"Y":455},{"Bonus":0,"Continent":"K53","ID":18165,"Name":"055 Kuzyn skonfiskowaƂ Stawik","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18165","ServerKey":"pl181","X":380,"Y":565},{"Bonus":0,"Continent":"K35","ID":18166,"Name":"WE ARE READY","PlayerID":1553947,"Points":8205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18166","ServerKey":"pl181","X":594,"Y":399},{"Bonus":0,"Continent":"K53","ID":18167,"Name":"Klon","PlayerID":699265922,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18167","ServerKey":"pl181","X":367,"Y":505},{"Bonus":0,"Continent":"K53","ID":18168,"Name":"049","PlayerID":6853693,"Points":9064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18168","ServerKey":"pl181","X":375,"Y":548},{"Bonus":0,"Continent":"K65","ID":18169,"Name":"SSJ 034","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18169","ServerKey":"pl181","X":511,"Y":636},{"Bonus":0,"Continent":"K65","ID":18170,"Name":"0055","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18170","ServerKey":"pl181","X":561,"Y":621},{"Bonus":0,"Continent":"K53","ID":18171,"Name":"037","PlayerID":6853693,"Points":5699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18171","ServerKey":"pl181","X":365,"Y":521},{"Bonus":0,"Continent":"K64","ID":18172,"Name":"#048 Upsss","PlayerID":699605333,"Points":10585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18172","ServerKey":"pl181","X":446,"Y":625},{"Bonus":0,"Continent":"K65","ID":18173,"Name":"SSJ 062","PlayerID":699364813,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18173","ServerKey":"pl181","X":520,"Y":633},{"Bonus":0,"Continent":"K34","ID":18174,"Name":"034...strazakkk","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18174","ServerKey":"pl181","X":462,"Y":368},{"Bonus":0,"Continent":"K53","ID":18175,"Name":"Pobozowisko","PlayerID":699513260,"Points":8439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18175","ServerKey":"pl181","X":395,"Y":581},{"Bonus":0,"Continent":"K65","ID":18176,"Name":"0427","PlayerID":698659980,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18176","ServerKey":"pl181","X":562,"Y":616},{"Bonus":0,"Continent":"K34","ID":18177,"Name":"VN Fuegoleon Vermillion","PlayerID":699883079,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18177","ServerKey":"pl181","X":460,"Y":370},{"Bonus":0,"Continent":"K56","ID":18178,"Name":"045 GdaƄsk","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18178","ServerKey":"pl181","X":633,"Y":506},{"Bonus":0,"Continent":"K34","ID":18179,"Name":"061","PlayerID":698739350,"Points":6998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18179","ServerKey":"pl181","X":479,"Y":389},{"Bonus":0,"Continent":"K65","ID":18180,"Name":"W.10","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18180","ServerKey":"pl181","X":584,"Y":606},{"Bonus":0,"Continent":"K45","ID":18181,"Name":"South K45","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18181","ServerKey":"pl181","X":593,"Y":431},{"Bonus":0,"Continent":"K35","ID":18182,"Name":"021","PlayerID":1424656,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18182","ServerKey":"pl181","X":565,"Y":384},{"Bonus":0,"Continent":"K35","ID":18183,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18183","ServerKey":"pl181","X":562,"Y":379},{"Bonus":0,"Continent":"K46","ID":18184,"Name":"009 Wioska","PlayerID":699671454,"Points":6975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18184","ServerKey":"pl181","X":633,"Y":473},{"Bonus":0,"Continent":"K53","ID":18185,"Name":"Brat447","PlayerID":699262350,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18185","ServerKey":"pl181","X":368,"Y":511},{"Bonus":0,"Continent":"K53","ID":18186,"Name":"Pobozowisko","PlayerID":699513260,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18186","ServerKey":"pl181","X":387,"Y":575},{"Bonus":0,"Continent":"K35","ID":18187,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18187","ServerKey":"pl181","X":526,"Y":371},{"Bonus":0,"Continent":"K55","ID":18188,"Name":"E 005","PlayerID":8078914,"Points":9767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18188","ServerKey":"pl181","X":590,"Y":598},{"Bonus":0,"Continent":"K56","ID":18189,"Name":"Nowa 18","PlayerID":698702991,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18189","ServerKey":"pl181","X":614,"Y":574},{"Bonus":0,"Continent":"K53","ID":18190,"Name":"038","PlayerID":6853693,"Points":6017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18190","ServerKey":"pl181","X":365,"Y":519},{"Bonus":0,"Continent":"K56","ID":18191,"Name":"201","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18191","ServerKey":"pl181","X":636,"Y":507},{"Bonus":0,"Continent":"K44","ID":18192,"Name":"[0085]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18192","ServerKey":"pl181","X":414,"Y":400},{"Bonus":0,"Continent":"K53","ID":18193,"Name":"27. Wioska 27","PlayerID":849091769,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18193","ServerKey":"pl181","X":375,"Y":549},{"Bonus":0,"Continent":"K43","ID":18194,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18194","ServerKey":"pl181","X":370,"Y":464},{"Bonus":1,"Continent":"K35","ID":18195,"Name":"0005","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18195","ServerKey":"pl181","X":583,"Y":398},{"Bonus":0,"Continent":"K65","ID":18196,"Name":"#0046","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18196","ServerKey":"pl181","X":549,"Y":627},{"Bonus":0,"Continent":"K64","ID":18197,"Name":"40005","PlayerID":848915531,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18197","ServerKey":"pl181","X":488,"Y":633},{"Bonus":0,"Continent":"K65","ID":18198,"Name":"009","PlayerID":699567608,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18198","ServerKey":"pl181","X":561,"Y":617},{"Bonus":0,"Continent":"K43","ID":18199,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18199","ServerKey":"pl181","X":377,"Y":447},{"Bonus":0,"Continent":"K46","ID":18200,"Name":"*4609* Tutaj","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18200","ServerKey":"pl181","X":636,"Y":495},{"Bonus":0,"Continent":"K64","ID":18201,"Name":"PoNocyPoluj a gryfin zasta nie m","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18201","ServerKey":"pl181","X":479,"Y":633},{"Bonus":0,"Continent":"K56","ID":18202,"Name":"1. Baraki","PlayerID":8096537,"Points":8959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18202","ServerKey":"pl181","X":619,"Y":566},{"Bonus":0,"Continent":"K35","ID":18203,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18203","ServerKey":"pl181","X":534,"Y":369},{"Bonus":0,"Continent":"K56","ID":18204,"Name":"0050","PlayerID":6510480,"Points":9395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18204","ServerKey":"pl181","X":631,"Y":530},{"Bonus":0,"Continent":"K43","ID":18205,"Name":"Westcoast.040","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18205","ServerKey":"pl181","X":382,"Y":437},{"Bonus":0,"Continent":"K43","ID":18206,"Name":"Westcoast.043","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18206","ServerKey":"pl181","X":381,"Y":434},{"Bonus":0,"Continent":"K64","ID":18207,"Name":"056 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18207","ServerKey":"pl181","X":465,"Y":628},{"Bonus":0,"Continent":"K34","ID":18208,"Name":"[0089]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18208","ServerKey":"pl181","X":413,"Y":399},{"Bonus":0,"Continent":"K35","ID":18209,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18209","ServerKey":"pl181","X":508,"Y":369},{"Bonus":0,"Continent":"K55","ID":18210,"Name":"E 006","PlayerID":8078914,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18210","ServerKey":"pl181","X":594,"Y":591},{"Bonus":0,"Continent":"K35","ID":18211,"Name":"A READY","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18211","ServerKey":"pl181","X":587,"Y":395},{"Bonus":0,"Continent":"K64","ID":18212,"Name":"063 OZDR","PlayerID":699336777,"Points":7972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18212","ServerKey":"pl181","X":457,"Y":628},{"Bonus":8,"Continent":"K64","ID":18213,"Name":"018 KUZYNI","PlayerID":699336777,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18213","ServerKey":"pl181","X":471,"Y":630},{"Bonus":0,"Continent":"K64","ID":18214,"Name":"066 OZDR","PlayerID":699336777,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18214","ServerKey":"pl181","X":460,"Y":629},{"Bonus":0,"Continent":"K64","ID":18215,"Name":"0037 Węgiel","PlayerID":9060641,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18215","ServerKey":"pl181","X":416,"Y":605},{"Bonus":0,"Continent":"K65","ID":18216,"Name":"024","PlayerID":699878511,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18216","ServerKey":"pl181","X":503,"Y":636},{"Bonus":0,"Continent":"K65","ID":18217,"Name":"#0047","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18217","ServerKey":"pl181","X":547,"Y":625},{"Bonus":7,"Continent":"K53","ID":18218,"Name":"Pobozowisko","PlayerID":699513260,"Points":10960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18218","ServerKey":"pl181","X":399,"Y":584},{"Bonus":0,"Continent":"K65","ID":18219,"Name":"Mako Reactor 1 - B4F","PlayerID":8199417,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18219","ServerKey":"pl181","X":522,"Y":631},{"Bonus":0,"Continent":"K64","ID":18220,"Name":"Pobozowisko","PlayerID":699513260,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18220","ServerKey":"pl181","X":410,"Y":603},{"Bonus":0,"Continent":"K44","ID":18221,"Name":"FKG 01-28","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18221","ServerKey":"pl181","X":415,"Y":401},{"Bonus":0,"Continent":"K53","ID":18222,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18222","ServerKey":"pl181","X":394,"Y":582},{"Bonus":6,"Continent":"K64","ID":18223,"Name":"061 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18223","ServerKey":"pl181","X":458,"Y":627},{"Bonus":0,"Continent":"K55","ID":18224,"Name":"z 022","PlayerID":699342219,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18224","ServerKey":"pl181","X":555,"Y":597},{"Bonus":0,"Continent":"K34","ID":18225,"Name":"[B]_[203] Dejv.oldplyr","PlayerID":699380607,"Points":9148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18225","ServerKey":"pl181","X":430,"Y":382},{"Bonus":0,"Continent":"K56","ID":18226,"Name":"Whiskey In The Jar","PlayerID":848926293,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18226","ServerKey":"pl181","X":609,"Y":578},{"Bonus":0,"Continent":"K53","ID":18227,"Name":"062 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18227","ServerKey":"pl181","X":381,"Y":561},{"Bonus":0,"Continent":"K64","ID":18228,"Name":"0004","PlayerID":6180190,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18228","ServerKey":"pl181","X":482,"Y":635},{"Bonus":0,"Continent":"K53","ID":18229,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18229","ServerKey":"pl181","X":387,"Y":574},{"Bonus":0,"Continent":"K65","ID":18230,"Name":"Wioska Szyderczy promil","PlayerID":8627359,"Points":9122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18230","ServerKey":"pl181","X":572,"Y":615},{"Bonus":0,"Continent":"K56","ID":18231,"Name":"017.","PlayerID":6520732,"Points":5197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18231","ServerKey":"pl181","X":629,"Y":529},{"Bonus":0,"Continent":"K56","ID":18232,"Name":"Mzm19","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18232","ServerKey":"pl181","X":609,"Y":529},{"Bonus":0,"Continent":"K35","ID":18233,"Name":"019.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18233","ServerKey":"pl181","X":571,"Y":388},{"Bonus":0,"Continent":"K35","ID":18234,"Name":"100","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18234","ServerKey":"pl181","X":553,"Y":395},{"Bonus":0,"Continent":"K46","ID":18235,"Name":"03. Matelanka","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18235","ServerKey":"pl181","X":605,"Y":424},{"Bonus":0,"Continent":"K46","ID":18236,"Name":"608|419 010 FRANKIA","PlayerID":6822957,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18236","ServerKey":"pl181","X":608,"Y":419},{"Bonus":0,"Continent":"K45","ID":18237,"Name":"A READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18237","ServerKey":"pl181","X":589,"Y":403},{"Bonus":0,"Continent":"K44","ID":18238,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18238","ServerKey":"pl181","X":407,"Y":402},{"Bonus":0,"Continent":"K56","ID":18239,"Name":"015","PlayerID":8428196,"Points":9910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18239","ServerKey":"pl181","X":627,"Y":546},{"Bonus":0,"Continent":"K35","ID":18240,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18240","ServerKey":"pl181","X":526,"Y":368},{"Bonus":0,"Continent":"K56","ID":18241,"Name":"014","PlayerID":8428196,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18241","ServerKey":"pl181","X":623,"Y":546},{"Bonus":0,"Continent":"K34","ID":18242,"Name":"VN Ragnar Lodbrok","PlayerID":699883079,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18242","ServerKey":"pl181","X":466,"Y":370},{"Bonus":0,"Continent":"K65","ID":18243,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18243","ServerKey":"pl181","X":536,"Y":629},{"Bonus":0,"Continent":"K56","ID":18245,"Name":"012","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18245","ServerKey":"pl181","X":631,"Y":527},{"Bonus":0,"Continent":"K43","ID":18246,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18246","ServerKey":"pl181","X":394,"Y":415},{"Bonus":0,"Continent":"K34","ID":18247,"Name":"0114","PlayerID":699431255,"Points":7561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18247","ServerKey":"pl181","X":437,"Y":379},{"Bonus":0,"Continent":"K34","ID":18248,"Name":"128","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18248","ServerKey":"pl181","X":489,"Y":365},{"Bonus":0,"Continent":"K44","ID":18249,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18249","ServerKey":"pl181","X":439,"Y":402},{"Bonus":0,"Continent":"K64","ID":18250,"Name":"A04 Wioska barbarzyƄska","PlayerID":849037407,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18250","ServerKey":"pl181","X":466,"Y":631},{"Bonus":0,"Continent":"K46","ID":18251,"Name":"025 KTW","PlayerID":848883237,"Points":7300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18251","ServerKey":"pl181","X":627,"Y":448},{"Bonus":0,"Continent":"K34","ID":18252,"Name":"001","PlayerID":849027025,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18252","ServerKey":"pl181","X":428,"Y":385},{"Bonus":0,"Continent":"K45","ID":18253,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18253","ServerKey":"pl181","X":592,"Y":402},{"Bonus":0,"Continent":"K64","ID":18254,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18254","ServerKey":"pl181","X":496,"Y":633},{"Bonus":0,"Continent":"K35","ID":18255,"Name":"Part XXVI","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18255","ServerKey":"pl181","X":537,"Y":374},{"Bonus":0,"Continent":"K45","ID":18256,"Name":"008","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18256","ServerKey":"pl181","X":549,"Y":404},{"Bonus":0,"Continent":"K53","ID":18257,"Name":"018","PlayerID":6853693,"Points":5767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18257","ServerKey":"pl181","X":371,"Y":525},{"Bonus":0,"Continent":"K45","ID":18258,"Name":"002","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18258","ServerKey":"pl181","X":559,"Y":408},{"Bonus":0,"Continent":"K65","ID":18259,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18259","ServerKey":"pl181","X":543,"Y":626},{"Bonus":0,"Continent":"K65","ID":18260,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18260","ServerKey":"pl181","X":539,"Y":607},{"Bonus":0,"Continent":"K46","ID":18261,"Name":"Jan 012 Pln K","PlayerID":879782,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18261","ServerKey":"pl181","X":631,"Y":495},{"Bonus":0,"Continent":"K43","ID":18262,"Name":"A0296","PlayerID":8841266,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18262","ServerKey":"pl181","X":364,"Y":494},{"Bonus":0,"Continent":"K65","ID":18263,"Name":"SSJ 025","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18263","ServerKey":"pl181","X":506,"Y":636},{"Bonus":5,"Continent":"K65","ID":18264,"Name":"SSJ 020","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18264","ServerKey":"pl181","X":511,"Y":633},{"Bonus":0,"Continent":"K64","ID":18265,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18265","ServerKey":"pl181","X":434,"Y":614},{"Bonus":0,"Continent":"K34","ID":18266,"Name":"052","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18266","ServerKey":"pl181","X":477,"Y":369},{"Bonus":0,"Continent":"K53","ID":18267,"Name":"061","PlayerID":6853693,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18267","ServerKey":"pl181","X":365,"Y":516},{"Bonus":0,"Continent":"K34","ID":18268,"Name":"[0111]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18268","ServerKey":"pl181","X":417,"Y":393},{"Bonus":0,"Continent":"K43","ID":18269,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18269","ServerKey":"pl181","X":384,"Y":438},{"Bonus":0,"Continent":"K46","ID":18270,"Name":"008 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18270","ServerKey":"pl181","X":627,"Y":450},{"Bonus":0,"Continent":"K46","ID":18271,"Name":"008 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18271","ServerKey":"pl181","X":604,"Y":416},{"Bonus":0,"Continent":"K53","ID":18272,"Name":"039","PlayerID":6853693,"Points":6901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18272","ServerKey":"pl181","X":376,"Y":541},{"Bonus":0,"Continent":"K55","ID":18273,"Name":"020","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18273","ServerKey":"pl181","X":599,"Y":589},{"Bonus":0,"Continent":"K56","ID":18274,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18274","ServerKey":"pl181","X":621,"Y":554},{"Bonus":0,"Continent":"K53","ID":18276,"Name":"Brat447","PlayerID":699262350,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18276","ServerKey":"pl181","X":365,"Y":500},{"Bonus":0,"Continent":"K46","ID":18277,"Name":"614|432 007 1 Strona","PlayerID":6822957,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18277","ServerKey":"pl181","X":614,"Y":432},{"Bonus":0,"Continent":"K56","ID":18278,"Name":"Zulu","PlayerID":699737356,"Points":8088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18278","ServerKey":"pl181","X":613,"Y":575},{"Bonus":0,"Continent":"K46","ID":18279,"Name":"#017.506|495","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18279","ServerKey":"pl181","X":625,"Y":446},{"Bonus":0,"Continent":"K65","ID":18280,"Name":"006","PlayerID":699878511,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18280","ServerKey":"pl181","X":501,"Y":633},{"Bonus":0,"Continent":"K43","ID":18281,"Name":"Westcoast.062","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18281","ServerKey":"pl181","X":387,"Y":438},{"Bonus":0,"Continent":"K56","ID":18282,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18282","ServerKey":"pl181","X":630,"Y":536},{"Bonus":0,"Continent":"K35","ID":18283,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18283","ServerKey":"pl181","X":518,"Y":367},{"Bonus":0,"Continent":"K54","ID":18284,"Name":"NOT?","PlayerID":9236866,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18284","ServerKey":"pl181","X":416,"Y":534},{"Bonus":0,"Continent":"K65","ID":18285,"Name":"Corneo s Mansion","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18285","ServerKey":"pl181","X":526,"Y":632},{"Bonus":0,"Continent":"K56","ID":18286,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18286","ServerKey":"pl181","X":633,"Y":532},{"Bonus":0,"Continent":"K54","ID":18287,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18287","ServerKey":"pl181","X":412,"Y":598},{"Bonus":0,"Continent":"K54","ID":18288,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18288","ServerKey":"pl181","X":400,"Y":590},{"Bonus":0,"Continent":"K56","ID":18289,"Name":"0017 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18289","ServerKey":"pl181","X":622,"Y":561},{"Bonus":0,"Continent":"K44","ID":18290,"Name":"0063 k","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18290","ServerKey":"pl181","X":452,"Y":431},{"Bonus":0,"Continent":"K53","ID":18291,"Name":"062","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18291","ServerKey":"pl181","X":364,"Y":516},{"Bonus":0,"Continent":"K56","ID":18292,"Name":"026 Daevon","PlayerID":699272880,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18292","ServerKey":"pl181","X":611,"Y":577},{"Bonus":0,"Continent":"K43","ID":18293,"Name":"Westcoast.004","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18293","ServerKey":"pl181","X":388,"Y":434},{"Bonus":0,"Continent":"K56","ID":18294,"Name":"009.","PlayerID":6520732,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18294","ServerKey":"pl181","X":628,"Y":539},{"Bonus":0,"Continent":"K43","ID":18295,"Name":"A0122","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18295","ServerKey":"pl181","X":366,"Y":484},{"Bonus":0,"Continent":"K46","ID":18296,"Name":"Gattacka","PlayerID":699298370,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18296","ServerKey":"pl181","X":610,"Y":418},{"Bonus":0,"Continent":"K64","ID":18297,"Name":"040. Wioska","PlayerID":848928624,"Points":6615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18297","ServerKey":"pl181","X":479,"Y":635},{"Bonus":0,"Continent":"K44","ID":18298,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18298","ServerKey":"pl181","X":405,"Y":406},{"Bonus":0,"Continent":"K46","ID":18299,"Name":"019 - Grenada","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18299","ServerKey":"pl181","X":637,"Y":489},{"Bonus":0,"Continent":"K56","ID":18301,"Name":"Wioska 029","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18301","ServerKey":"pl181","X":603,"Y":581},{"Bonus":0,"Continent":"K43","ID":18302,"Name":"Westcoast.077","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18302","ServerKey":"pl181","X":386,"Y":433},{"Bonus":0,"Continent":"K43","ID":18303,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18303","ServerKey":"pl181","X":375,"Y":446},{"Bonus":0,"Continent":"K46","ID":18304,"Name":"Gattacka","PlayerID":699298370,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18304","ServerKey":"pl181","X":610,"Y":419},{"Bonus":0,"Continent":"K55","ID":18305,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18305","ServerKey":"pl181","X":581,"Y":596},{"Bonus":0,"Continent":"K53","ID":18306,"Name":"067","PlayerID":6853693,"Points":7324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18306","ServerKey":"pl181","X":366,"Y":518},{"Bonus":0,"Continent":"K56","ID":18307,"Name":"010","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18307","ServerKey":"pl181","X":610,"Y":576},{"Bonus":0,"Continent":"K45","ID":18308,"Name":"A READY","PlayerID":1553947,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18308","ServerKey":"pl181","X":596,"Y":409},{"Bonus":0,"Continent":"K54","ID":18309,"Name":"Pobozowisko","PlayerID":699513260,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18309","ServerKey":"pl181","X":402,"Y":597},{"Bonus":0,"Continent":"K46","ID":18310,"Name":"013 B","PlayerID":556154,"Points":6622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18310","ServerKey":"pl181","X":625,"Y":450},{"Bonus":0,"Continent":"K44","ID":18311,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18311","ServerKey":"pl181","X":402,"Y":408},{"Bonus":0,"Continent":"K43","ID":18312,"Name":"Westcoast.092","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18312","ServerKey":"pl181","X":389,"Y":429},{"Bonus":0,"Continent":"K34","ID":18313,"Name":"053","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18313","ServerKey":"pl181","X":476,"Y":369},{"Bonus":0,"Continent":"K34","ID":18314,"Name":"126","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18314","ServerKey":"pl181","X":491,"Y":364},{"Bonus":0,"Continent":"K34","ID":18315,"Name":"054","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18315","ServerKey":"pl181","X":480,"Y":367},{"Bonus":0,"Continent":"K64","ID":18316,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":9874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18316","ServerKey":"pl181","X":496,"Y":637},{"Bonus":0,"Continent":"K65","ID":18317,"Name":"sony911","PlayerID":1415009,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18317","ServerKey":"pl181","X":579,"Y":607},{"Bonus":0,"Continent":"K46","ID":18318,"Name":"#067.","PlayerID":556154,"Points":9272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18318","ServerKey":"pl181","X":626,"Y":453},{"Bonus":0,"Continent":"K65","ID":18319,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18319","ServerKey":"pl181","X":586,"Y":600},{"Bonus":0,"Continent":"K34","ID":18320,"Name":"010","PlayerID":849027025,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18320","ServerKey":"pl181","X":429,"Y":385},{"Bonus":1,"Continent":"K53","ID":18321,"Name":"024","PlayerID":6853693,"Points":5561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18321","ServerKey":"pl181","X":370,"Y":521},{"Bonus":0,"Continent":"K54","ID":18322,"Name":"KIELBA 011","PlayerID":699342219,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18322","ServerKey":"pl181","X":447,"Y":576},{"Bonus":0,"Continent":"K43","ID":18323,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18323","ServerKey":"pl181","X":371,"Y":464},{"Bonus":0,"Continent":"K44","ID":18324,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18324","ServerKey":"pl181","X":405,"Y":409},{"Bonus":0,"Continent":"K43","ID":18325,"Name":"Westcoast.008","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18325","ServerKey":"pl181","X":387,"Y":436},{"Bonus":0,"Continent":"K53","ID":18326,"Name":"063 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18326","ServerKey":"pl181","X":378,"Y":560},{"Bonus":0,"Continent":"K56","ID":18327,"Name":"006. Requiem","PlayerID":254937,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18327","ServerKey":"pl181","X":627,"Y":542},{"Bonus":0,"Continent":"K34","ID":18328,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18328","ServerKey":"pl181","X":421,"Y":396},{"Bonus":0,"Continent":"K54","ID":18329,"Name":"Pobozowisko","PlayerID":699513260,"Points":10667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18329","ServerKey":"pl181","X":407,"Y":595},{"Bonus":0,"Continent":"K43","ID":18330,"Name":"A0133","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18330","ServerKey":"pl181","X":371,"Y":478},{"Bonus":0,"Continent":"K64","ID":18331,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18331","ServerKey":"pl181","X":424,"Y":614},{"Bonus":0,"Continent":"K34","ID":18332,"Name":".049.","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18332","ServerKey":"pl181","X":494,"Y":363},{"Bonus":0,"Continent":"K34","ID":18333,"Name":"043","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18333","ServerKey":"pl181","X":475,"Y":367},{"Bonus":0,"Continent":"K46","ID":18334,"Name":"614|430 Wioska barbarzyƄska14","PlayerID":6822957,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18334","ServerKey":"pl181","X":614,"Y":430},{"Bonus":0,"Continent":"K35","ID":18335,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18335","ServerKey":"pl181","X":536,"Y":367},{"Bonus":0,"Continent":"K65","ID":18336,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18336","ServerKey":"pl181","X":558,"Y":624},{"Bonus":0,"Continent":"K34","ID":18337,"Name":"VN Xerx Lugner","PlayerID":699883079,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18337","ServerKey":"pl181","X":468,"Y":367},{"Bonus":0,"Continent":"K43","ID":18338,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18338","ServerKey":"pl181","X":378,"Y":437},{"Bonus":0,"Continent":"K44","ID":18339,"Name":"023","PlayerID":699510259,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18339","ServerKey":"pl181","X":436,"Y":487},{"Bonus":0,"Continent":"K43","ID":18340,"Name":"A0212","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18340","ServerKey":"pl181","X":366,"Y":495},{"Bonus":9,"Continent":"K43","ID":18341,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18341","ServerKey":"pl181","X":377,"Y":443},{"Bonus":0,"Continent":"K53","ID":18342,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18342","ServerKey":"pl181","X":364,"Y":522},{"Bonus":0,"Continent":"K56","ID":18343,"Name":"C013 Venore","PlayerID":8096537,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18343","ServerKey":"pl181","X":622,"Y":562},{"Bonus":0,"Continent":"K65","ID":18344,"Name":"siedze na tronie","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18344","ServerKey":"pl181","X":572,"Y":610},{"Bonus":0,"Continent":"K64","ID":18345,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18345","ServerKey":"pl181","X":428,"Y":614},{"Bonus":0,"Continent":"K56","ID":18346,"Name":"Lima","PlayerID":699737356,"Points":8783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18346","ServerKey":"pl181","X":612,"Y":574},{"Bonus":0,"Continent":"K43","ID":18347,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18347","ServerKey":"pl181","X":379,"Y":442},{"Bonus":0,"Continent":"K56","ID":18348,"Name":"C007 Jotunheim","PlayerID":8096537,"Points":7803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18348","ServerKey":"pl181","X":619,"Y":562},{"Bonus":0,"Continent":"K56","ID":18349,"Name":"013","PlayerID":699316421,"Points":9124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18349","ServerKey":"pl181","X":600,"Y":589},{"Bonus":0,"Continent":"K43","ID":18350,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18350","ServerKey":"pl181","X":379,"Y":447},{"Bonus":0,"Continent":"K65","ID":18351,"Name":"z 049","PlayerID":699342219,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18351","ServerKey":"pl181","X":582,"Y":605},{"Bonus":0,"Continent":"K46","ID":18352,"Name":"*0033 Baraki","PlayerID":8459255,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18352","ServerKey":"pl181","X":618,"Y":439},{"Bonus":0,"Continent":"K34","ID":18353,"Name":"VN Secre Swallowtail","PlayerID":699883079,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18353","ServerKey":"pl181","X":469,"Y":371},{"Bonus":5,"Continent":"K45","ID":18354,"Name":"B 008","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18354","ServerKey":"pl181","X":596,"Y":410},{"Bonus":0,"Continent":"K53","ID":18355,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18355","ServerKey":"pl181","X":391,"Y":581},{"Bonus":0,"Continent":"K34","ID":18356,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18356","ServerKey":"pl181","X":422,"Y":393},{"Bonus":0,"Continent":"K45","ID":18358,"Name":"25 im Minakowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18358","ServerKey":"pl181","X":598,"Y":409},{"Bonus":0,"Continent":"K65","ID":18359,"Name":"12. KrĂłl Regis Lucis Caelum CXII","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18359","ServerKey":"pl181","X":530,"Y":606},{"Bonus":0,"Continent":"K43","ID":18360,"Name":"Westcoast.076","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18360","ServerKey":"pl181","X":391,"Y":426},{"Bonus":0,"Continent":"K56","ID":18361,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18361","ServerKey":"pl181","X":629,"Y":534},{"Bonus":0,"Continent":"K46","ID":18362,"Name":"#058.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18362","ServerKey":"pl181","X":622,"Y":441},{"Bonus":0,"Continent":"K35","ID":18363,"Name":"010 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18363","ServerKey":"pl181","X":533,"Y":372},{"Bonus":0,"Continent":"K53","ID":18364,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18364","ServerKey":"pl181","X":392,"Y":581},{"Bonus":0,"Continent":"K43","ID":18365,"Name":"A0094","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18365","ServerKey":"pl181","X":365,"Y":486},{"Bonus":0,"Continent":"K46","ID":18366,"Name":"A READY","PlayerID":1553947,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18366","ServerKey":"pl181","X":601,"Y":412},{"Bonus":0,"Continent":"K46","ID":18367,"Name":"Piwna 23","PlayerID":699812007,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18367","ServerKey":"pl181","X":621,"Y":435},{"Bonus":0,"Continent":"K34","ID":18368,"Name":"Zeta Reticuli S3","PlayerID":699323302,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18368","ServerKey":"pl181","X":425,"Y":390},{"Bonus":0,"Continent":"K53","ID":18369,"Name":"54. Wioska 54","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18369","ServerKey":"pl181","X":376,"Y":551},{"Bonus":0,"Continent":"K43","ID":18371,"Name":"Westcoast.024","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18371","ServerKey":"pl181","X":396,"Y":421},{"Bonus":8,"Continent":"K64","ID":18372,"Name":"006","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18372","ServerKey":"pl181","X":447,"Y":626},{"Bonus":0,"Continent":"K65","ID":18373,"Name":"#0006","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18373","ServerKey":"pl181","X":545,"Y":630},{"Bonus":0,"Continent":"K35","ID":18374,"Name":"010. Lyria","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18374","ServerKey":"pl181","X":566,"Y":385},{"Bonus":0,"Continent":"K56","ID":18375,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18375","ServerKey":"pl181","X":618,"Y":564},{"Bonus":0,"Continent":"K53","ID":18376,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18376","ServerKey":"pl181","X":374,"Y":538},{"Bonus":0,"Continent":"K64","ID":18377,"Name":"0005 Kiko210","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18377","ServerKey":"pl181","X":426,"Y":612},{"Bonus":0,"Continent":"K35","ID":18378,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18378","ServerKey":"pl181","X":531,"Y":366},{"Bonus":0,"Continent":"K65","ID":18379,"Name":"Sony 911","PlayerID":1415009,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18379","ServerKey":"pl181","X":578,"Y":611},{"Bonus":0,"Continent":"K53","ID":18380,"Name":"10. Wioska 10","PlayerID":849091769,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18380","ServerKey":"pl181","X":375,"Y":558},{"Bonus":0,"Continent":"K56","ID":18381,"Name":"=016= Lewy nie trafia Karnego","PlayerID":3781794,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18381","ServerKey":"pl181","X":622,"Y":554},{"Bonus":0,"Continent":"K54","ID":18382,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18382","ServerKey":"pl181","X":406,"Y":598},{"Bonus":0,"Continent":"K35","ID":18383,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18383","ServerKey":"pl181","X":564,"Y":384},{"Bonus":0,"Continent":"K43","ID":18385,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18385","ServerKey":"pl181","X":375,"Y":460},{"Bonus":0,"Continent":"K64","ID":18386,"Name":"003","PlayerID":272173,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18386","ServerKey":"pl181","X":487,"Y":634},{"Bonus":0,"Continent":"K45","ID":18387,"Name":"WE ARE READY!","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18387","ServerKey":"pl181","X":593,"Y":401},{"Bonus":0,"Continent":"K65","ID":18389,"Name":"SSJ 036","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18389","ServerKey":"pl181","X":512,"Y":637},{"Bonus":0,"Continent":"K53","ID":18390,"Name":"064 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18390","ServerKey":"pl181","X":382,"Y":562},{"Bonus":0,"Continent":"K34","ID":18391,"Name":"Konfederacja +","PlayerID":848915730,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18391","ServerKey":"pl181","X":456,"Y":374},{"Bonus":0,"Continent":"K53","ID":18392,"Name":"13. Wioska 13","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18392","ServerKey":"pl181","X":373,"Y":554},{"Bonus":0,"Continent":"K56","ID":18393,"Name":"035","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18393","ServerKey":"pl181","X":630,"Y":513},{"Bonus":0,"Continent":"K43","ID":18394,"Name":"A0095","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18394","ServerKey":"pl181","X":365,"Y":492},{"Bonus":0,"Continent":"K54","ID":18395,"Name":"#0039 Bagna","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18395","ServerKey":"pl181","X":494,"Y":549},{"Bonus":0,"Continent":"K56","ID":18396,"Name":"006","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18396","ServerKey":"pl181","X":602,"Y":592},{"Bonus":0,"Continent":"K34","ID":18398,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18398","ServerKey":"pl181","X":454,"Y":373},{"Bonus":0,"Continent":"K65","ID":18399,"Name":"Ja sie nie bije .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18399","ServerKey":"pl181","X":567,"Y":614},{"Bonus":0,"Continent":"K34","ID":18401,"Name":"Lecymy DUR","PlayerID":6169408,"Points":8145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18401","ServerKey":"pl181","X":437,"Y":383},{"Bonus":0,"Continent":"K64","ID":18402,"Name":"003Ɓatki","PlayerID":698620694,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18402","ServerKey":"pl181","X":456,"Y":627},{"Bonus":0,"Continent":"K46","ID":18403,"Name":"005 B","PlayerID":699718269,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18403","ServerKey":"pl181","X":624,"Y":449},{"Bonus":0,"Continent":"K44","ID":18404,"Name":"0001","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18404","ServerKey":"pl181","X":424,"Y":404},{"Bonus":0,"Continent":"K34","ID":18405,"Name":"Zeta Reticuli S3","PlayerID":699323302,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18405","ServerKey":"pl181","X":423,"Y":388},{"Bonus":0,"Continent":"K43","ID":18406,"Name":"s181eo32","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18406","ServerKey":"pl181","X":389,"Y":448},{"Bonus":0,"Continent":"K53","ID":18407,"Name":"R010","PlayerID":8607734,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18407","ServerKey":"pl181","X":390,"Y":576},{"Bonus":0,"Continent":"K46","ID":18408,"Name":"Wioska 3","PlayerID":848935020,"Points":8168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18408","ServerKey":"pl181","X":631,"Y":482},{"Bonus":0,"Continent":"K46","ID":18409,"Name":"Gattacka","PlayerID":699298370,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18409","ServerKey":"pl181","X":609,"Y":418},{"Bonus":0,"Continent":"K34","ID":18410,"Name":"K34 - [092] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18410","ServerKey":"pl181","X":451,"Y":374},{"Bonus":0,"Continent":"K65","ID":18411,"Name":"#0020","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18411","ServerKey":"pl181","X":545,"Y":626},{"Bonus":0,"Continent":"K56","ID":18412,"Name":"0008 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18412","ServerKey":"pl181","X":624,"Y":557},{"Bonus":0,"Continent":"K56","ID":18413,"Name":"[017]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18413","ServerKey":"pl181","X":626,"Y":543},{"Bonus":0,"Continent":"K35","ID":18414,"Name":"Taran","PlayerID":699170684,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18414","ServerKey":"pl181","X":551,"Y":372},{"Bonus":0,"Continent":"K35","ID":18415,"Name":"024. Wioska barbarzyƄska","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18415","ServerKey":"pl181","X":572,"Y":387},{"Bonus":0,"Continent":"K35","ID":18416,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18416","ServerKey":"pl181","X":559,"Y":378},{"Bonus":0,"Continent":"K64","ID":18417,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18417","ServerKey":"pl181","X":476,"Y":635},{"Bonus":0,"Continent":"K64","ID":18418,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18418","ServerKey":"pl181","X":430,"Y":611},{"Bonus":0,"Continent":"K43","ID":18419,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18419","ServerKey":"pl181","X":378,"Y":441},{"Bonus":0,"Continent":"K56","ID":18420,"Name":"F 001","PlayerID":8078914,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18420","ServerKey":"pl181","X":638,"Y":507},{"Bonus":0,"Continent":"K53","ID":18422,"Name":"R002","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18422","ServerKey":"pl181","X":385,"Y":574},{"Bonus":0,"Continent":"K56","ID":18423,"Name":"202","PlayerID":849088515,"Points":6234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18423","ServerKey":"pl181","X":637,"Y":503},{"Bonus":0,"Continent":"K34","ID":18424,"Name":"011","PlayerID":849027025,"Points":11106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18424","ServerKey":"pl181","X":429,"Y":386},{"Bonus":0,"Continent":"K56","ID":18425,"Name":"026. Alexandria","PlayerID":849091866,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18425","ServerKey":"pl181","X":624,"Y":555},{"Bonus":0,"Continent":"K65","ID":18426,"Name":"#0014","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18426","ServerKey":"pl181","X":518,"Y":636},{"Bonus":7,"Continent":"K64","ID":18427,"Name":"012","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18427","ServerKey":"pl181","X":443,"Y":624},{"Bonus":0,"Continent":"K65","ID":18428,"Name":"Wioska Herosek751","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18428","ServerKey":"pl181","X":565,"Y":619},{"Bonus":0,"Continent":"K35","ID":18429,"Name":"C014","PlayerID":699761749,"Points":7358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18429","ServerKey":"pl181","X":578,"Y":394},{"Bonus":0,"Continent":"K56","ID":18430,"Name":"Nowa 15","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18430","ServerKey":"pl181","X":616,"Y":570},{"Bonus":0,"Continent":"K43","ID":18431,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18431","ServerKey":"pl181","X":377,"Y":454},{"Bonus":0,"Continent":"K65","ID":18433,"Name":"SSJ 019","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18433","ServerKey":"pl181","X":507,"Y":635},{"Bonus":0,"Continent":"K34","ID":18434,"Name":"033","PlayerID":7462660,"Points":10836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18434","ServerKey":"pl181","X":425,"Y":388},{"Bonus":0,"Continent":"K56","ID":18435,"Name":"[015]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18435","ServerKey":"pl181","X":629,"Y":543},{"Bonus":0,"Continent":"K34","ID":18436,"Name":"0126","PlayerID":699431255,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18436","ServerKey":"pl181","X":436,"Y":379},{"Bonus":0,"Continent":"K56","ID":18437,"Name":"BWioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18437","ServerKey":"pl181","X":622,"Y":550},{"Bonus":0,"Continent":"K65","ID":18438,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18438","ServerKey":"pl181","X":532,"Y":633},{"Bonus":4,"Continent":"K46","ID":18439,"Name":"019 Osaka","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18439","ServerKey":"pl181","X":636,"Y":477},{"Bonus":0,"Continent":"K46","ID":18440,"Name":"609|422 009 FRANKIA","PlayerID":6822957,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18440","ServerKey":"pl181","X":609,"Y":422},{"Bonus":0,"Continent":"K46","ID":18441,"Name":"084. Wielkie GardƂo","PlayerID":8337151,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18441","ServerKey":"pl181","X":631,"Y":467},{"Bonus":0,"Continent":"K46","ID":18442,"Name":"008 B","PlayerID":699718269,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18442","ServerKey":"pl181","X":625,"Y":449},{"Bonus":0,"Continent":"K56","ID":18443,"Name":"029 Seonon","PlayerID":699272880,"Points":10457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18443","ServerKey":"pl181","X":620,"Y":562},{"Bonus":0,"Continent":"K64","ID":18444,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18444","ServerKey":"pl181","X":487,"Y":637},{"Bonus":0,"Continent":"K56","ID":18446,"Name":"052","PlayerID":698786826,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18446","ServerKey":"pl181","X":608,"Y":586},{"Bonus":0,"Continent":"K46","ID":18447,"Name":"018","PlayerID":849093875,"Points":2587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18447","ServerKey":"pl181","X":632,"Y":484},{"Bonus":0,"Continent":"K43","ID":18448,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18448","ServerKey":"pl181","X":378,"Y":446},{"Bonus":0,"Continent":"K64","ID":18449,"Name":"A12 Wioska barbarzyƄska","PlayerID":849037407,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18449","ServerKey":"pl181","X":466,"Y":633},{"Bonus":0,"Continent":"K56","ID":18451,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18451","ServerKey":"pl181","X":624,"Y":556},{"Bonus":0,"Continent":"K56","ID":18452,"Name":"027","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18452","ServerKey":"pl181","X":637,"Y":519},{"Bonus":0,"Continent":"K34","ID":18453,"Name":"VN Nozel Silva","PlayerID":699883079,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18453","ServerKey":"pl181","X":467,"Y":369},{"Bonus":0,"Continent":"K35","ID":18454,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18454","ServerKey":"pl181","X":560,"Y":376},{"Bonus":0,"Continent":"K35","ID":18455,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18455","ServerKey":"pl181","X":500,"Y":362},{"Bonus":0,"Continent":"K35","ID":18456,"Name":"Wyngiel we wsi","PlayerID":699170684,"Points":5223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18456","ServerKey":"pl181","X":566,"Y":382},{"Bonus":0,"Continent":"K64","ID":18458,"Name":"010","PlayerID":699878511,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18458","ServerKey":"pl181","X":497,"Y":632},{"Bonus":0,"Continent":"K64","ID":18459,"Name":"057 OZDR","PlayerID":699336777,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18459","ServerKey":"pl181","X":460,"Y":626},{"Bonus":0,"Continent":"K43","ID":18460,"Name":"A0294","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18460","ServerKey":"pl181","X":365,"Y":498},{"Bonus":0,"Continent":"K64","ID":18461,"Name":"069","PlayerID":849084985,"Points":7128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18461","ServerKey":"pl181","X":434,"Y":618},{"Bonus":0,"Continent":"K34","ID":18462,"Name":"VN Julius Novachrono","PlayerID":699883079,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18462","ServerKey":"pl181","X":468,"Y":369},{"Bonus":1,"Continent":"K64","ID":18463,"Name":"004","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18463","ServerKey":"pl181","X":447,"Y":624},{"Bonus":0,"Continent":"K55","ID":18464,"Name":"0023","PlayerID":698599365,"Points":8311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18464","ServerKey":"pl181","X":504,"Y":502},{"Bonus":0,"Continent":"K56","ID":18465,"Name":"085.","PlayerID":849094609,"Points":4655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18465","ServerKey":"pl181","X":635,"Y":523},{"Bonus":9,"Continent":"K53","ID":18466,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18466","ServerKey":"pl181","X":378,"Y":550},{"Bonus":0,"Continent":"K46","ID":18467,"Name":"035","PlayerID":849006412,"Points":6351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18467","ServerKey":"pl181","X":632,"Y":482},{"Bonus":0,"Continent":"K53","ID":18468,"Name":"046","PlayerID":8908002,"Points":4601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18468","ServerKey":"pl181","X":369,"Y":541},{"Bonus":0,"Continent":"K53","ID":18469,"Name":"034","PlayerID":6853693,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18469","ServerKey":"pl181","X":364,"Y":519},{"Bonus":0,"Continent":"K45","ID":18470,"Name":"05 im Jepiszewa","PlayerID":849037469,"Points":7468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18470","ServerKey":"pl181","X":593,"Y":408},{"Bonus":0,"Continent":"K64","ID":18471,"Name":"007","PlayerID":849084985,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18471","ServerKey":"pl181","X":445,"Y":619},{"Bonus":0,"Continent":"K43","ID":18472,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18472","ServerKey":"pl181","X":371,"Y":466},{"Bonus":9,"Continent":"K46","ID":18473,"Name":"D001","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18473","ServerKey":"pl181","X":602,"Y":409},{"Bonus":0,"Continent":"K53","ID":18475,"Name":"-055-","PlayerID":699097885,"Points":3843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18475","ServerKey":"pl181","X":384,"Y":568},{"Bonus":0,"Continent":"K65","ID":18476,"Name":"W.01","PlayerID":873575,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18476","ServerKey":"pl181","X":585,"Y":608},{"Bonus":0,"Continent":"K43","ID":18477,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18477","ServerKey":"pl181","X":374,"Y":449},{"Bonus":0,"Continent":"K43","ID":18478,"Name":"A0239","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18478","ServerKey":"pl181","X":368,"Y":463},{"Bonus":0,"Continent":"K65","ID":18479,"Name":"Sony 911","PlayerID":1415009,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18479","ServerKey":"pl181","X":572,"Y":614},{"Bonus":0,"Continent":"K43","ID":18480,"Name":"A0110","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18480","ServerKey":"pl181","X":365,"Y":495},{"Bonus":0,"Continent":"K64","ID":18481,"Name":"059 OZDR","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18481","ServerKey":"pl181","X":468,"Y":629},{"Bonus":0,"Continent":"K46","ID":18482,"Name":"009 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18482","ServerKey":"pl181","X":632,"Y":466},{"Bonus":0,"Continent":"K64","ID":18483,"Name":"0004 Wioska barbarzyƄska","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18483","ServerKey":"pl181","X":424,"Y":615},{"Bonus":7,"Continent":"K45","ID":18484,"Name":"A READY","PlayerID":699759128,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18484","ServerKey":"pl181","X":592,"Y":400},{"Bonus":0,"Continent":"K56","ID":18485,"Name":"082.","PlayerID":849094609,"Points":4187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18485","ServerKey":"pl181","X":633,"Y":520},{"Bonus":5,"Continent":"K43","ID":18486,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18486","ServerKey":"pl181","X":371,"Y":454},{"Bonus":0,"Continent":"K34","ID":18487,"Name":"VN Constantine","PlayerID":699883079,"Points":10043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18487","ServerKey":"pl181","X":476,"Y":375},{"Bonus":0,"Continent":"K56","ID":18488,"Name":"F 002","PlayerID":8078914,"Points":10031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18488","ServerKey":"pl181","X":635,"Y":503},{"Bonus":0,"Continent":"K54","ID":18489,"Name":"011","PlayerID":699364813,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18489","ServerKey":"pl181","X":476,"Y":594},{"Bonus":0,"Continent":"K46","ID":18490,"Name":"Jan 020 (8) K","PlayerID":879782,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18490","ServerKey":"pl181","X":633,"Y":474},{"Bonus":0,"Continent":"K43","ID":18491,"Name":"s181eo24","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18491","ServerKey":"pl181","X":397,"Y":453},{"Bonus":0,"Continent":"K46","ID":18492,"Name":"018 Jak ja nie pije","PlayerID":699272633,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18492","ServerKey":"pl181","X":626,"Y":460},{"Bonus":0,"Continent":"K45","ID":18493,"Name":"005","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18493","ServerKey":"pl181","X":555,"Y":404},{"Bonus":0,"Continent":"K44","ID":18494,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18494","ServerKey":"pl181","X":405,"Y":462},{"Bonus":0,"Continent":"K53","ID":18495,"Name":"070 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18495","ServerKey":"pl181","X":378,"Y":563},{"Bonus":0,"Continent":"K53","ID":18496,"Name":"001 TuniosƂaw","PlayerID":699382126,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18496","ServerKey":"pl181","X":390,"Y":561},{"Bonus":0,"Continent":"K56","ID":18497,"Name":"019","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18497","ServerKey":"pl181","X":628,"Y":529},{"Bonus":0,"Continent":"K56","ID":18498,"Name":"0020 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18498","ServerKey":"pl181","X":624,"Y":554},{"Bonus":0,"Continent":"K34","ID":18499,"Name":"K34 - [091] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18499","ServerKey":"pl181","X":451,"Y":375},{"Bonus":0,"Continent":"K43","ID":18500,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18500","ServerKey":"pl181","X":384,"Y":487},{"Bonus":0,"Continent":"K64","ID":18501,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18501","ServerKey":"pl181","X":497,"Y":637},{"Bonus":0,"Continent":"K64","ID":18502,"Name":"063","PlayerID":849084985,"Points":8256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18502","ServerKey":"pl181","X":439,"Y":622},{"Bonus":0,"Continent":"K65","ID":18503,"Name":"#0010","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18503","ServerKey":"pl181","X":549,"Y":625},{"Bonus":0,"Continent":"K43","ID":18505,"Name":"002","PlayerID":848921536,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18505","ServerKey":"pl181","X":385,"Y":426},{"Bonus":0,"Continent":"K56","ID":18507,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18507","ServerKey":"pl181","X":632,"Y":536},{"Bonus":0,"Continent":"K54","ID":18508,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18508","ServerKey":"pl181","X":406,"Y":593},{"Bonus":0,"Continent":"K53","ID":18509,"Name":"047g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18509","ServerKey":"pl181","X":371,"Y":532},{"Bonus":0,"Continent":"K54","ID":18510,"Name":"ƚmieszkiii","PlayerID":3454753,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18510","ServerKey":"pl181","X":477,"Y":585},{"Bonus":0,"Continent":"K53","ID":18511,"Name":"048","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18511","ServerKey":"pl181","X":371,"Y":535},{"Bonus":0,"Continent":"K46","ID":18512,"Name":"B004","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18512","ServerKey":"pl181","X":603,"Y":413},{"Bonus":0,"Continent":"K64","ID":18513,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18513","ServerKey":"pl181","X":490,"Y":636},{"Bonus":0,"Continent":"K35","ID":18514,"Name":"XXXV","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18514","ServerKey":"pl181","X":542,"Y":371},{"Bonus":0,"Continent":"K65","ID":18515,"Name":"#0021","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18515","ServerKey":"pl181","X":545,"Y":625},{"Bonus":0,"Continent":"K43","ID":18516,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18516","ServerKey":"pl181","X":397,"Y":409},{"Bonus":0,"Continent":"K43","ID":18517,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18517","ServerKey":"pl181","X":378,"Y":436},{"Bonus":0,"Continent":"K46","ID":18518,"Name":"027 Last Templar","PlayerID":9238175,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18518","ServerKey":"pl181","X":635,"Y":498},{"Bonus":0,"Continent":"K46","ID":18519,"Name":"B002","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18519","ServerKey":"pl181","X":605,"Y":410},{"Bonus":0,"Continent":"K46","ID":18520,"Name":"D007","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18520","ServerKey":"pl181","X":603,"Y":412},{"Bonus":0,"Continent":"K53","ID":18521,"Name":"R013","PlayerID":8607734,"Points":6478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18521","ServerKey":"pl181","X":384,"Y":573},{"Bonus":0,"Continent":"K56","ID":18522,"Name":"Szlachcic 011","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18522","ServerKey":"pl181","X":626,"Y":537},{"Bonus":0,"Continent":"K56","ID":18523,"Name":"091.","PlayerID":849094609,"Points":3613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18523","ServerKey":"pl181","X":636,"Y":508},{"Bonus":0,"Continent":"K43","ID":18524,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18524","ServerKey":"pl181","X":380,"Y":446},{"Bonus":0,"Continent":"K53","ID":18525,"Name":"-050-","PlayerID":9167250,"Points":5977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18525","ServerKey":"pl181","X":380,"Y":567},{"Bonus":0,"Continent":"K43","ID":18526,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18526","ServerKey":"pl181","X":392,"Y":458},{"Bonus":0,"Continent":"K65","ID":18527,"Name":"Orkowi Zawodnicy Dominują Rybki2","PlayerID":849090130,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18527","ServerKey":"pl181","X":522,"Y":636},{"Bonus":7,"Continent":"K64","ID":18528,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18528","ServerKey":"pl181","X":433,"Y":618},{"Bonus":0,"Continent":"K35","ID":18529,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18529","ServerKey":"pl181","X":549,"Y":371},{"Bonus":0,"Continent":"K55","ID":18530,"Name":"Jaaa","PlayerID":698635863,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18530","ServerKey":"pl181","X":589,"Y":596},{"Bonus":0,"Continent":"K53","ID":18531,"Name":"R011","PlayerID":8607734,"Points":7073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18531","ServerKey":"pl181","X":388,"Y":577},{"Bonus":0,"Continent":"K43","ID":18532,"Name":"Westcoast.080","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18532","ServerKey":"pl181","X":398,"Y":408},{"Bonus":0,"Continent":"K46","ID":18533,"Name":"091. Morze Puste","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18533","ServerKey":"pl181","X":627,"Y":465},{"Bonus":0,"Continent":"K44","ID":18534,"Name":"K44 x037","PlayerID":698364331,"Points":5889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18534","ServerKey":"pl181","X":402,"Y":403},{"Bonus":0,"Continent":"K54","ID":18535,"Name":"LutĂłwko","PlayerID":698769107,"Points":6596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18535","ServerKey":"pl181","X":412,"Y":579},{"Bonus":0,"Continent":"K65","ID":18537,"Name":"z 043","PlayerID":699342219,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18537","ServerKey":"pl181","X":580,"Y":606},{"Bonus":0,"Continent":"K65","ID":18539,"Name":"#0024","PlayerID":699728159,"Points":4273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18539","ServerKey":"pl181","X":517,"Y":634},{"Bonus":0,"Continent":"K35","ID":18540,"Name":"Taran","PlayerID":699170684,"Points":5586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18540","ServerKey":"pl181","X":546,"Y":372},{"Bonus":0,"Continent":"K45","ID":18542,"Name":"075","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18542","ServerKey":"pl181","X":591,"Y":402},{"Bonus":0,"Continent":"K64","ID":18543,"Name":"001","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18543","ServerKey":"pl181","X":446,"Y":623},{"Bonus":0,"Continent":"K46","ID":18544,"Name":"Wioska 8","PlayerID":848935020,"Points":5937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18544","ServerKey":"pl181","X":635,"Y":480},{"Bonus":9,"Continent":"K53","ID":18545,"Name":"009","PlayerID":6853693,"Points":10116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18545","ServerKey":"pl181","X":373,"Y":539},{"Bonus":0,"Continent":"K53","ID":18547,"Name":"065 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18547","ServerKey":"pl181","X":384,"Y":564},{"Bonus":0,"Continent":"K43","ID":18548,"Name":"009","PlayerID":848921536,"Points":3469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18548","ServerKey":"pl181","X":387,"Y":425},{"Bonus":0,"Continent":"K65","ID":18549,"Name":"016.","PlayerID":699695167,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18549","ServerKey":"pl181","X":564,"Y":621},{"Bonus":1,"Continent":"K64","ID":18550,"Name":"Ave Why!","PlayerID":8729672,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18550","ServerKey":"pl181","X":443,"Y":620},{"Bonus":0,"Continent":"K43","ID":18553,"Name":"A0217","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18553","ServerKey":"pl181","X":364,"Y":497},{"Bonus":0,"Continent":"K43","ID":18554,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18554","ServerKey":"pl181","X":387,"Y":449},{"Bonus":0,"Continent":"K44","ID":18555,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18555","ServerKey":"pl181","X":408,"Y":404},{"Bonus":0,"Continent":"K54","ID":18556,"Name":"Pobozowisko","PlayerID":699513260,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18556","ServerKey":"pl181","X":407,"Y":594},{"Bonus":0,"Continent":"K65","ID":18559,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18559","ServerKey":"pl181","X":542,"Y":626},{"Bonus":0,"Continent":"K35","ID":18561,"Name":"017.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18561","ServerKey":"pl181","X":574,"Y":388},{"Bonus":0,"Continent":"K35","ID":18562,"Name":"047","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18562","ServerKey":"pl181","X":502,"Y":387},{"Bonus":0,"Continent":"K64","ID":18563,"Name":"A24 Wioska barbarzyƄska","PlayerID":849037407,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18563","ServerKey":"pl181","X":457,"Y":626},{"Bonus":0,"Continent":"K64","ID":18564,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18564","ServerKey":"pl181","X":488,"Y":634},{"Bonus":0,"Continent":"K64","ID":18565,"Name":"Ave Why!","PlayerID":8729672,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18565","ServerKey":"pl181","X":450,"Y":625},{"Bonus":0,"Continent":"K46","ID":18566,"Name":"Wioska 2","PlayerID":848935020,"Points":7733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18566","ServerKey":"pl181","X":635,"Y":482},{"Bonus":0,"Continent":"K53","ID":18567,"Name":"056","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18567","ServerKey":"pl181","X":364,"Y":511},{"Bonus":0,"Continent":"K56","ID":18568,"Name":"041","PlayerID":698786826,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18568","ServerKey":"pl181","X":608,"Y":584},{"Bonus":0,"Continent":"K43","ID":18569,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18569","ServerKey":"pl181","X":372,"Y":459},{"Bonus":0,"Continent":"K56","ID":18570,"Name":"011","PlayerID":699316421,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18570","ServerKey":"pl181","X":600,"Y":588},{"Bonus":0,"Continent":"K65","ID":18572,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18572","ServerKey":"pl181","X":530,"Y":631},{"Bonus":2,"Continent":"K34","ID":18573,"Name":"yyyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18573","ServerKey":"pl181","X":497,"Y":364},{"Bonus":0,"Continent":"K64","ID":18574,"Name":"Wioska lee-1","PlayerID":699697558,"Points":11742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18574","ServerKey":"pl181","X":434,"Y":616},{"Bonus":7,"Continent":"K64","ID":18575,"Name":"085 KUZYNI mehehehe","PlayerID":699336777,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18575","ServerKey":"pl181","X":478,"Y":632},{"Bonus":0,"Continent":"K34","ID":18576,"Name":"Konfederacja","PlayerID":848915730,"Points":8835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18576","ServerKey":"pl181","X":454,"Y":370},{"Bonus":0,"Continent":"K64","ID":18577,"Name":"A13 Wioska barbarzyƄska","PlayerID":849037407,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18577","ServerKey":"pl181","X":462,"Y":631},{"Bonus":0,"Continent":"K53","ID":18579,"Name":"032","PlayerID":6853693,"Points":5700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18579","ServerKey":"pl181","X":367,"Y":522},{"Bonus":0,"Continent":"K35","ID":18580,"Name":"Taran","PlayerID":699170684,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18580","ServerKey":"pl181","X":554,"Y":376},{"Bonus":0,"Continent":"K56","ID":18581,"Name":"032","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18581","ServerKey":"pl181","X":636,"Y":520},{"Bonus":0,"Continent":"K64","ID":18582,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18582","ServerKey":"pl181","X":423,"Y":613},{"Bonus":0,"Continent":"K46","ID":18583,"Name":"017 Ze mną wymiękƂeƛ?","PlayerID":699272633,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18583","ServerKey":"pl181","X":627,"Y":462},{"Bonus":0,"Continent":"K53","ID":18584,"Name":"xx GW00","PlayerID":698290577,"Points":9336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18584","ServerKey":"pl181","X":394,"Y":507},{"Bonus":0,"Continent":"K65","ID":18585,"Name":"Barba","PlayerID":8627359,"Points":9209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18585","ServerKey":"pl181","X":578,"Y":614},{"Bonus":0,"Continent":"K65","ID":18586,"Name":"006","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18586","ServerKey":"pl181","X":521,"Y":634},{"Bonus":0,"Continent":"K54","ID":18587,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18587","ServerKey":"pl181","X":402,"Y":598},{"Bonus":5,"Continent":"K64","ID":18588,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18588","ServerKey":"pl181","X":495,"Y":637},{"Bonus":0,"Continent":"K43","ID":18589,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18589","ServerKey":"pl181","X":373,"Y":455},{"Bonus":0,"Continent":"K64","ID":18590,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18590","ServerKey":"pl181","X":478,"Y":633},{"Bonus":0,"Continent":"K64","ID":18591,"Name":"A26 Wioska barbarzyƄska","PlayerID":849037407,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18591","ServerKey":"pl181","X":470,"Y":633},{"Bonus":0,"Continent":"K46","ID":18592,"Name":"033 | PALESTINA","PlayerID":9228039,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18592","ServerKey":"pl181","X":631,"Y":465},{"Bonus":0,"Continent":"K43","ID":18593,"Name":"Dab","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18593","ServerKey":"pl181","X":366,"Y":497},{"Bonus":0,"Continent":"K43","ID":18594,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18594","ServerKey":"pl181","X":372,"Y":461},{"Bonus":0,"Continent":"K65","ID":18595,"Name":"HORUS!","PlayerID":7756002,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18595","ServerKey":"pl181","X":525,"Y":630},{"Bonus":0,"Continent":"K35","ID":18596,"Name":"172","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18596","ServerKey":"pl181","X":587,"Y":394},{"Bonus":0,"Continent":"K56","ID":18597,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18597","ServerKey":"pl181","X":617,"Y":562},{"Bonus":0,"Continent":"K46","ID":18598,"Name":"003 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18598","ServerKey":"pl181","X":624,"Y":454},{"Bonus":0,"Continent":"K34","ID":18599,"Name":"0140","PlayerID":699431255,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18599","ServerKey":"pl181","X":430,"Y":387},{"Bonus":0,"Continent":"K64","ID":18600,"Name":"aaaa","PlayerID":6948793,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18600","ServerKey":"pl181","X":481,"Y":636},{"Bonus":0,"Continent":"K65","ID":18601,"Name":"002","PlayerID":699878511,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18601","ServerKey":"pl181","X":501,"Y":634},{"Bonus":0,"Continent":"K64","ID":18602,"Name":"009","PlayerID":849084985,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18602","ServerKey":"pl181","X":447,"Y":621},{"Bonus":0,"Continent":"K46","ID":18603,"Name":"614|423 005Legatusxi","PlayerID":6822957,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18603","ServerKey":"pl181","X":614,"Y":423},{"Bonus":0,"Continent":"K34","ID":18604,"Name":"VN Mereoleona Vermillion","PlayerID":699883079,"Points":9610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18604","ServerKey":"pl181","X":466,"Y":371},{"Bonus":0,"Continent":"K54","ID":18605,"Name":"Sparta_24","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18605","ServerKey":"pl181","X":494,"Y":594},{"Bonus":0,"Continent":"K34","ID":18606,"Name":"124","PlayerID":699761749,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18606","ServerKey":"pl181","X":493,"Y":368},{"Bonus":0,"Continent":"K46","ID":18607,"Name":"017","PlayerID":849093875,"Points":3262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18607","ServerKey":"pl181","X":633,"Y":499},{"Bonus":0,"Continent":"K53","ID":18608,"Name":"Bronowice","PlayerID":8607734,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18608","ServerKey":"pl181","X":378,"Y":574},{"Bonus":0,"Continent":"K35","ID":18609,"Name":"Wioska Paradoxus","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18609","ServerKey":"pl181","X":561,"Y":380},{"Bonus":0,"Continent":"K64","ID":18610,"Name":"033","PlayerID":849084985,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18610","ServerKey":"pl181","X":443,"Y":626},{"Bonus":8,"Continent":"K55","ID":18611,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18611","ServerKey":"pl181","X":595,"Y":598},{"Bonus":0,"Continent":"K64","ID":18612,"Name":"000","PlayerID":849084985,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18612","ServerKey":"pl181","X":450,"Y":619},{"Bonus":0,"Continent":"K56","ID":18613,"Name":"020","PlayerID":849091105,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18613","ServerKey":"pl181","X":633,"Y":514},{"Bonus":0,"Continent":"K35","ID":18614,"Name":"A005","PlayerID":699208929,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18614","ServerKey":"pl181","X":523,"Y":366},{"Bonus":0,"Continent":"K46","ID":18615,"Name":"Jan Nie mĂłwili PƂn K","PlayerID":879782,"Points":9944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18615","ServerKey":"pl181","X":634,"Y":495},{"Bonus":0,"Continent":"K65","ID":18616,"Name":"SSJ 028","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18616","ServerKey":"pl181","X":516,"Y":632},{"Bonus":0,"Continent":"K34","ID":18617,"Name":"0111","PlayerID":699431255,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18617","ServerKey":"pl181","X":434,"Y":379},{"Bonus":0,"Continent":"K46","ID":18619,"Name":"079. Bezmiar PóƂnocy","PlayerID":8337151,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18619","ServerKey":"pl181","X":630,"Y":473},{"Bonus":0,"Continent":"K34","ID":18620,"Name":"[0020]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18620","ServerKey":"pl181","X":441,"Y":398},{"Bonus":0,"Continent":"K56","ID":18622,"Name":"055","PlayerID":849095227,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18622","ServerKey":"pl181","X":629,"Y":549},{"Bonus":0,"Continent":"K34","ID":18623,"Name":"VN Lohar","PlayerID":699883079,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18623","ServerKey":"pl181","X":454,"Y":380},{"Bonus":0,"Continent":"K53","ID":18624,"Name":"044","PlayerID":8908002,"Points":7984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18624","ServerKey":"pl181","X":368,"Y":539},{"Bonus":0,"Continent":"K64","ID":18625,"Name":"049","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18625","ServerKey":"pl181","X":444,"Y":614},{"Bonus":8,"Continent":"K56","ID":18626,"Name":"005","PlayerID":849095227,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18626","ServerKey":"pl181","X":625,"Y":557},{"Bonus":0,"Continent":"K34","ID":18627,"Name":"055","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18627","ServerKey":"pl181","X":474,"Y":369},{"Bonus":0,"Continent":"K56","ID":18628,"Name":"Nowa 17","PlayerID":698702991,"Points":9775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18628","ServerKey":"pl181","X":618,"Y":565},{"Bonus":0,"Continent":"K46","ID":18629,"Name":"025 na Ƃazarskim rejonie","PlayerID":699272633,"Points":8478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18629","ServerKey":"pl181","X":630,"Y":460},{"Bonus":0,"Continent":"K56","ID":18630,"Name":"039 Brasil","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18630","ServerKey":"pl181","X":633,"Y":510},{"Bonus":0,"Continent":"K64","ID":18631,"Name":"064","PlayerID":849084985,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18631","ServerKey":"pl181","X":440,"Y":620},{"Bonus":0,"Continent":"K53","ID":18632,"Name":"047","PlayerID":8908002,"Points":6896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18632","ServerKey":"pl181","X":371,"Y":542},{"Bonus":0,"Continent":"K56","ID":18633,"Name":"Nowa 20","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18633","ServerKey":"pl181","X":618,"Y":568},{"Bonus":0,"Continent":"K34","ID":18634,"Name":"Bagdad","PlayerID":8847546,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18634","ServerKey":"pl181","X":427,"Y":384},{"Bonus":0,"Continent":"K34","ID":18635,"Name":"PodziękowaƂ 1","PlayerID":699796330,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18635","ServerKey":"pl181","X":457,"Y":377},{"Bonus":0,"Continent":"K53","ID":18636,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":6551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18636","ServerKey":"pl181","X":389,"Y":579},{"Bonus":0,"Continent":"K64","ID":18637,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18637","ServerKey":"pl181","X":484,"Y":637},{"Bonus":0,"Continent":"K34","ID":18638,"Name":"127","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18638","ServerKey":"pl181","X":491,"Y":365},{"Bonus":0,"Continent":"K43","ID":18639,"Name":"Odrodzenie","PlayerID":1746216,"Points":8632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18639","ServerKey":"pl181","X":380,"Y":432},{"Bonus":0,"Continent":"K56","ID":18640,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18640","ServerKey":"pl181","X":623,"Y":561},{"Bonus":0,"Continent":"K53","ID":18641,"Name":"015","PlayerID":6853693,"Points":5967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18641","ServerKey":"pl181","X":374,"Y":540},{"Bonus":0,"Continent":"K35","ID":18642,"Name":"014. Ja tu tylko zbieram PP","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18642","ServerKey":"pl181","X":511,"Y":366},{"Bonus":0,"Continent":"K46","ID":18643,"Name":"*0015 Baraki","PlayerID":8459255,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18643","ServerKey":"pl181","X":618,"Y":430},{"Bonus":0,"Continent":"K65","ID":18644,"Name":"#0019","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18644","ServerKey":"pl181","X":517,"Y":631},{"Bonus":0,"Continent":"K64","ID":18645,"Name":"060","PlayerID":849084985,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18645","ServerKey":"pl181","X":445,"Y":626},{"Bonus":0,"Continent":"K56","ID":18646,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18646","ServerKey":"pl181","X":623,"Y":551},{"Bonus":0,"Continent":"K46","ID":18647,"Name":"*0021 Baraki","PlayerID":8459255,"Points":10074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18647","ServerKey":"pl181","X":621,"Y":433},{"Bonus":1,"Continent":"K65","ID":18648,"Name":"z 047","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18648","ServerKey":"pl181","X":587,"Y":603},{"Bonus":0,"Continent":"K46","ID":18649,"Name":"003 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18649","ServerKey":"pl181","X":631,"Y":459},{"Bonus":0,"Continent":"K65","ID":18650,"Name":"0061","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18650","ServerKey":"pl181","X":561,"Y":623},{"Bonus":0,"Continent":"K64","ID":18651,"Name":"A20 Wioska barbarzyƄska","PlayerID":849037407,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18651","ServerKey":"pl181","X":458,"Y":629},{"Bonus":0,"Continent":"K65","ID":18652,"Name":"#0028","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18652","ServerKey":"pl181","X":553,"Y":628},{"Bonus":0,"Continent":"K43","ID":18653,"Name":"004 VC danield83 @","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18653","ServerKey":"pl181","X":397,"Y":414},{"Bonus":0,"Continent":"K46","ID":18654,"Name":"016 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18654","ServerKey":"pl181","X":623,"Y":450},{"Bonus":9,"Continent":"K53","ID":18655,"Name":"A0150","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18655","ServerKey":"pl181","X":362,"Y":505},{"Bonus":0,"Continent":"K56","ID":18656,"Name":"008","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18656","ServerKey":"pl181","X":626,"Y":552},{"Bonus":0,"Continent":"K34","ID":18657,"Name":"056","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18657","ServerKey":"pl181","X":469,"Y":366},{"Bonus":0,"Continent":"K35","ID":18658,"Name":".:036:. ƁOBUZIK","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18658","ServerKey":"pl181","X":559,"Y":375},{"Bonus":0,"Continent":"K34","ID":18659,"Name":"K34 - [097] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18659","ServerKey":"pl181","X":450,"Y":373},{"Bonus":9,"Continent":"K64","ID":18660,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18660","ServerKey":"pl181","X":430,"Y":613},{"Bonus":0,"Continent":"K46","ID":18661,"Name":"004 | PALESTINA","PlayerID":9228039,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18661","ServerKey":"pl181","X":628,"Y":453},{"Bonus":0,"Continent":"K53","ID":18662,"Name":"003","PlayerID":699621601,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18662","ServerKey":"pl181","X":387,"Y":578},{"Bonus":0,"Continent":"K55","ID":18664,"Name":"~~008~~","PlayerID":7829201,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18664","ServerKey":"pl181","X":599,"Y":596},{"Bonus":0,"Continent":"K46","ID":18665,"Name":"Jehu_Kingdom_37_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18665","ServerKey":"pl181","X":625,"Y":442},{"Bonus":0,"Continent":"K46","ID":18666,"Name":"Gattacka","PlayerID":699298370,"Points":9607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18666","ServerKey":"pl181","X":606,"Y":415},{"Bonus":0,"Continent":"K43","ID":18667,"Name":"007","PlayerID":848921536,"Points":5336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18667","ServerKey":"pl181","X":390,"Y":422},{"Bonus":0,"Continent":"K34","ID":18668,"Name":"007","PlayerID":699783765,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18668","ServerKey":"pl181","X":434,"Y":392},{"Bonus":0,"Continent":"K64","ID":18669,"Name":"Pobozowisko","PlayerID":699513260,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18669","ServerKey":"pl181","X":412,"Y":603},{"Bonus":0,"Continent":"K65","ID":18670,"Name":"RTS 2 .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18670","ServerKey":"pl181","X":577,"Y":613},{"Bonus":0,"Continent":"K46","ID":18671,"Name":"#008.507|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18671","ServerKey":"pl181","X":626,"Y":447},{"Bonus":0,"Continent":"K43","ID":18672,"Name":"002 VC NIC TU NIE MA","PlayerID":3108144,"Points":9204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18672","ServerKey":"pl181","X":394,"Y":411},{"Bonus":0,"Continent":"K43","ID":18673,"Name":"A0111","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18673","ServerKey":"pl181","X":368,"Y":485},{"Bonus":0,"Continent":"K65","ID":18674,"Name":"G002","PlayerID":8627359,"Points":9145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18674","ServerKey":"pl181","X":576,"Y":610},{"Bonus":0,"Continent":"K65","ID":18675,"Name":"#0023","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18675","ServerKey":"pl181","X":547,"Y":630},{"Bonus":0,"Continent":"K35","ID":18676,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18676","ServerKey":"pl181","X":530,"Y":365},{"Bonus":0,"Continent":"K46","ID":18677,"Name":"B003","PlayerID":699761749,"Points":8078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18677","ServerKey":"pl181","X":605,"Y":413},{"Bonus":0,"Continent":"K34","ID":18678,"Name":"067","PlayerID":698739350,"Points":6509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18678","ServerKey":"pl181","X":493,"Y":365},{"Bonus":0,"Continent":"K44","ID":18679,"Name":"[0053]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18679","ServerKey":"pl181","X":413,"Y":400},{"Bonus":0,"Continent":"K64","ID":18680,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18680","ServerKey":"pl181","X":410,"Y":600},{"Bonus":0,"Continent":"K34","ID":18681,"Name":"c ƛtyliwnia","PlayerID":3909522,"Points":8466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18681","ServerKey":"pl181","X":417,"Y":389},{"Bonus":6,"Continent":"K53","ID":18682,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18682","ServerKey":"pl181","X":390,"Y":582},{"Bonus":0,"Continent":"K54","ID":18683,"Name":"Wioska barbarzyƄska","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18683","ServerKey":"pl181","X":488,"Y":507},{"Bonus":0,"Continent":"K46","ID":18684,"Name":"D002","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18684","ServerKey":"pl181","X":604,"Y":408},{"Bonus":0,"Continent":"K35","ID":18685,"Name":"A READY","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18685","ServerKey":"pl181","X":585,"Y":395},{"Bonus":0,"Continent":"K53","ID":18686,"Name":"057 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18686","ServerKey":"pl181","X":376,"Y":557},{"Bonus":0,"Continent":"K64","ID":18687,"Name":"058 OZDR","PlayerID":699336777,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18687","ServerKey":"pl181","X":461,"Y":626},{"Bonus":0,"Continent":"K43","ID":18688,"Name":"Westcoast.066","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18688","ServerKey":"pl181","X":386,"Y":430},{"Bonus":0,"Continent":"K46","ID":18689,"Name":"021 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18689","ServerKey":"pl181","X":629,"Y":454},{"Bonus":0,"Continent":"K56","ID":18690,"Name":"[013]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18690","ServerKey":"pl181","X":636,"Y":524},{"Bonus":0,"Continent":"K56","ID":18691,"Name":"B.034","PlayerID":9188016,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18691","ServerKey":"pl181","X":639,"Y":503},{"Bonus":0,"Continent":"K56","ID":18692,"Name":"10 Ebe ebe","PlayerID":8013349,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18692","ServerKey":"pl181","X":601,"Y":526},{"Bonus":0,"Continent":"K64","ID":18693,"Name":"Ave Why!","PlayerID":8729672,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18693","ServerKey":"pl181","X":452,"Y":623},{"Bonus":0,"Continent":"K65","ID":18694,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18694","ServerKey":"pl181","X":553,"Y":627},{"Bonus":0,"Continent":"K35","ID":18695,"Name":"0013","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18695","ServerKey":"pl181","X":591,"Y":396},{"Bonus":0,"Continent":"K44","ID":18696,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18696","ServerKey":"pl181","X":408,"Y":403},{"Bonus":0,"Continent":"K35","ID":18697,"Name":"DOM 1","PlayerID":849064614,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18697","ServerKey":"pl181","X":560,"Y":399},{"Bonus":0,"Continent":"K64","ID":18698,"Name":"A010","PlayerID":699383279,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18698","ServerKey":"pl181","X":472,"Y":633},{"Bonus":0,"Continent":"K43","ID":18699,"Name":"Westcoast.086","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18699","ServerKey":"pl181","X":385,"Y":432},{"Bonus":0,"Continent":"K35","ID":18700,"Name":"115","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18700","ServerKey":"pl181","X":578,"Y":386},{"Bonus":0,"Continent":"K56","ID":18701,"Name":"B031","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18701","ServerKey":"pl181","X":634,"Y":507},{"Bonus":0,"Continent":"K46","ID":18702,"Name":"FB002","PlayerID":9314079,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18702","ServerKey":"pl181","X":633,"Y":492},{"Bonus":3,"Continent":"K45","ID":18703,"Name":"B 009","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18703","ServerKey":"pl181","X":597,"Y":403},{"Bonus":0,"Continent":"K64","ID":18704,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18704","ServerKey":"pl181","X":432,"Y":618},{"Bonus":0,"Continent":"K43","ID":18705,"Name":"A0299","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18705","ServerKey":"pl181","X":363,"Y":498},{"Bonus":0,"Continent":"K46","ID":18706,"Name":"021 Roma Victrix","PlayerID":699878150,"Points":5457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18706","ServerKey":"pl181","X":640,"Y":494},{"Bonus":0,"Continent":"K53","ID":18708,"Name":"054 Kuzyn skonfiskowaƂ Meszno","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18708","ServerKey":"pl181","X":381,"Y":563},{"Bonus":0,"Continent":"K45","ID":18709,"Name":"065","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18709","ServerKey":"pl181","X":592,"Y":403},{"Bonus":0,"Continent":"K35","ID":18710,"Name":"066","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18710","ServerKey":"pl181","X":570,"Y":381},{"Bonus":0,"Continent":"K35","ID":18711,"Name":"R-7","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18711","ServerKey":"pl181","X":556,"Y":374},{"Bonus":0,"Continent":"K54","ID":18712,"Name":"#0092 ZalutyƄ","PlayerID":9272054,"Points":8855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18712","ServerKey":"pl181","X":475,"Y":552},{"Bonus":0,"Continent":"K54","ID":18713,"Name":"Pobozowisko","PlayerID":699513260,"Points":9418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18713","ServerKey":"pl181","X":400,"Y":591},{"Bonus":0,"Continent":"K43","ID":18714,"Name":"Westcoast.056","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18714","ServerKey":"pl181","X":392,"Y":420},{"Bonus":0,"Continent":"K64","ID":18715,"Name":"005,","PlayerID":8369778,"Points":6161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18715","ServerKey":"pl181","X":488,"Y":636},{"Bonus":0,"Continent":"K56","ID":18716,"Name":"Wioska PogĂłrze 3","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18716","ServerKey":"pl181","X":631,"Y":537},{"Bonus":0,"Continent":"K34","ID":18717,"Name":"A-010","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18717","ServerKey":"pl181","X":409,"Y":397},{"Bonus":0,"Continent":"K35","ID":18718,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18718","ServerKey":"pl181","X":521,"Y":367},{"Bonus":0,"Continent":"K54","ID":18719,"Name":"30000","PlayerID":848915531,"Points":11242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18719","ServerKey":"pl181","X":494,"Y":540},{"Bonus":0,"Continent":"K64","ID":18720,"Name":"Jednak wolę gofry","PlayerID":272173,"Points":6903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18720","ServerKey":"pl181","X":488,"Y":638},{"Bonus":0,"Continent":"K65","ID":18722,"Name":"z 055","PlayerID":699342219,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18722","ServerKey":"pl181","X":586,"Y":604},{"Bonus":0,"Continent":"K56","ID":18723,"Name":"007","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18723","ServerKey":"pl181","X":601,"Y":592},{"Bonus":0,"Continent":"K65","ID":18724,"Name":"019.","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18724","ServerKey":"pl181","X":567,"Y":615},{"Bonus":0,"Continent":"K34","ID":18725,"Name":"0013","PlayerID":699431255,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18725","ServerKey":"pl181","X":435,"Y":383},{"Bonus":0,"Continent":"K64","ID":18726,"Name":"002","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18726","ServerKey":"pl181","X":446,"Y":624},{"Bonus":0,"Continent":"K34","ID":18727,"Name":"mklo","PlayerID":828637,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18727","ServerKey":"pl181","X":498,"Y":367},{"Bonus":0,"Continent":"K64","ID":18728,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18728","ServerKey":"pl181","X":475,"Y":635},{"Bonus":0,"Continent":"K56","ID":18729,"Name":"031","PlayerID":6160655,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18729","ServerKey":"pl181","X":632,"Y":543},{"Bonus":0,"Continent":"K64","ID":18730,"Name":"A14 Wioska barbarzyƄska","PlayerID":849037407,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18730","ServerKey":"pl181","X":461,"Y":629},{"Bonus":0,"Continent":"K45","ID":18731,"Name":"37 im OrƂowa","PlayerID":849037469,"Points":8416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18731","ServerKey":"pl181","X":597,"Y":406},{"Bonus":0,"Continent":"K46","ID":18732,"Name":"!0010","PlayerID":477415,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18732","ServerKey":"pl181","X":623,"Y":438},{"Bonus":0,"Continent":"K56","ID":18733,"Name":"019","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18733","ServerKey":"pl181","X":609,"Y":585},{"Bonus":0,"Continent":"K54","ID":18734,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18734","ServerKey":"pl181","X":405,"Y":599},{"Bonus":0,"Continent":"K56","ID":18735,"Name":"029 Lenka","PlayerID":2135129,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18735","ServerKey":"pl181","X":633,"Y":500},{"Bonus":0,"Continent":"K64","ID":18736,"Name":"psycha sitting","PlayerID":699736927,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18736","ServerKey":"pl181","X":417,"Y":610},{"Bonus":0,"Continent":"K43","ID":18737,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18737","ServerKey":"pl181","X":371,"Y":465},{"Bonus":0,"Continent":"K45","ID":18738,"Name":"Wioska barbarzyƄska","PlayerID":699355601,"Points":4166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18738","ServerKey":"pl181","X":526,"Y":480},{"Bonus":0,"Continent":"K46","ID":18739,"Name":"#031.515|502","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18739","ServerKey":"pl181","X":634,"Y":453},{"Bonus":0,"Continent":"K46","ID":18740,"Name":"613|423 Wioska barbarzyƄska03","PlayerID":6822957,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18740","ServerKey":"pl181","X":613,"Y":423},{"Bonus":0,"Continent":"K46","ID":18741,"Name":"610|426 Wioska barbarzyƄska16","PlayerID":6822957,"Points":9392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18741","ServerKey":"pl181","X":610,"Y":426},{"Bonus":0,"Continent":"K65","ID":18742,"Name":"W.09","PlayerID":873575,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18742","ServerKey":"pl181","X":584,"Y":607},{"Bonus":0,"Continent":"K65","ID":18743,"Name":"Bulle","PlayerID":8627359,"Points":9110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18743","ServerKey":"pl181","X":578,"Y":609},{"Bonus":0,"Continent":"K43","ID":18744,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18744","ServerKey":"pl181","X":373,"Y":450},{"Bonus":0,"Continent":"K54","ID":18745,"Name":"0000005%","PlayerID":849089881,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18745","ServerKey":"pl181","X":425,"Y":594},{"Bonus":0,"Continent":"K56","ID":18746,"Name":"016 Winterfell","PlayerID":699272880,"Points":10329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18746","ServerKey":"pl181","X":617,"Y":564},{"Bonus":0,"Continent":"K64","ID":18747,"Name":"Ave Why!","PlayerID":8729672,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18747","ServerKey":"pl181","X":450,"Y":626},{"Bonus":0,"Continent":"K43","ID":18748,"Name":".Krakers. 002","PlayerID":9163140,"Points":3919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18748","ServerKey":"pl181","X":365,"Y":481},{"Bonus":0,"Continent":"K34","ID":18749,"Name":"005","PlayerID":699402816,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18749","ServerKey":"pl181","X":420,"Y":388},{"Bonus":0,"Continent":"K64","ID":18750,"Name":"A15 Wioska barbarzyƄska","PlayerID":849037407,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18750","ServerKey":"pl181","X":461,"Y":631},{"Bonus":0,"Continent":"K43","ID":18751,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18751","ServerKey":"pl181","X":372,"Y":456},{"Bonus":0,"Continent":"K44","ID":18752,"Name":"Szlachcic","PlayerID":699098531,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18752","ServerKey":"pl181","X":492,"Y":479},{"Bonus":0,"Continent":"K56","ID":18753,"Name":"029","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18753","ServerKey":"pl181","X":636,"Y":515},{"Bonus":0,"Continent":"K64","ID":18754,"Name":"005","PlayerID":8369778,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18754","ServerKey":"pl181","X":486,"Y":636},{"Bonus":0,"Continent":"K53","ID":18755,"Name":"67. Wioska 67","PlayerID":849091769,"Points":7150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18755","ServerKey":"pl181","X":379,"Y":568},{"Bonus":0,"Continent":"K43","ID":18756,"Name":"Westcoast.044","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18756","ServerKey":"pl181","X":380,"Y":435},{"Bonus":0,"Continent":"K35","ID":18757,"Name":"0011","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18757","ServerKey":"pl181","X":571,"Y":384},{"Bonus":0,"Continent":"K46","ID":18758,"Name":"614|424 004 Wioska Kapitana :)","PlayerID":6822957,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18758","ServerKey":"pl181","X":614,"Y":424},{"Bonus":0,"Continent":"K35","ID":18759,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18759","ServerKey":"pl181","X":562,"Y":382},{"Bonus":0,"Continent":"K43","ID":18760,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18760","ServerKey":"pl181","X":378,"Y":445},{"Bonus":0,"Continent":"K35","ID":18761,"Name":"A READY","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18761","ServerKey":"pl181","X":589,"Y":398},{"Bonus":0,"Continent":"K53","ID":18762,"Name":"Pobozowisko","PlayerID":699513260,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18762","ServerKey":"pl181","X":399,"Y":589},{"Bonus":0,"Continent":"K46","ID":18763,"Name":"*0017 Baraki","PlayerID":8459255,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18763","ServerKey":"pl181","X":612,"Y":429},{"Bonus":0,"Continent":"K34","ID":18764,"Name":"c Komarno 001","PlayerID":3909522,"Points":7501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18764","ServerKey":"pl181","X":411,"Y":396},{"Bonus":0,"Continent":"K55","ID":18765,"Name":"E 004","PlayerID":8078914,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18765","ServerKey":"pl181","X":595,"Y":594},{"Bonus":0,"Continent":"K44","ID":18767,"Name":"[0046]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18767","ServerKey":"pl181","X":412,"Y":400},{"Bonus":0,"Continent":"K44","ID":18768,"Name":"FKG 01-04","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18768","ServerKey":"pl181","X":418,"Y":403},{"Bonus":0,"Continent":"K56","ID":18769,"Name":"021","PlayerID":849095227,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18769","ServerKey":"pl181","X":628,"Y":555},{"Bonus":0,"Continent":"K53","ID":18770,"Name":"Twierdza","PlayerID":849030226,"Points":6414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18770","ServerKey":"pl181","X":371,"Y":536},{"Bonus":0,"Continent":"K65","ID":18771,"Name":"#0014","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18771","ServerKey":"pl181","X":547,"Y":629},{"Bonus":0,"Continent":"K34","ID":18772,"Name":"VN William Vangeance","PlayerID":699883079,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18772","ServerKey":"pl181","X":467,"Y":368},{"Bonus":0,"Continent":"K54","ID":18773,"Name":"001","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18773","ServerKey":"pl181","X":455,"Y":599},{"Bonus":0,"Continent":"K35","ID":18774,"Name":".006.Jababing","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18774","ServerKey":"pl181","X":560,"Y":375},{"Bonus":0,"Continent":"K46","ID":18775,"Name":"006 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18775","ServerKey":"pl181","X":621,"Y":451},{"Bonus":0,"Continent":"K46","ID":18776,"Name":"001 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18776","ServerKey":"pl181","X":625,"Y":448},{"Bonus":0,"Continent":"K34","ID":18777,"Name":"Monetio","PlayerID":699191455,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18777","ServerKey":"pl181","X":453,"Y":370},{"Bonus":0,"Continent":"K43","ID":18779,"Name":"A0216","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18779","ServerKey":"pl181","X":366,"Y":477},{"Bonus":0,"Continent":"K55","ID":18780,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18780","ServerKey":"pl181","X":500,"Y":598},{"Bonus":0,"Continent":"K53","ID":18781,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18781","ServerKey":"pl181","X":396,"Y":583},{"Bonus":0,"Continent":"K34","ID":18782,"Name":"118","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18782","ServerKey":"pl181","X":490,"Y":368},{"Bonus":0,"Continent":"K64","ID":18783,"Name":"080","PlayerID":849084985,"Points":9060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18783","ServerKey":"pl181","X":436,"Y":622},{"Bonus":0,"Continent":"K64","ID":18784,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":9290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18784","ServerKey":"pl181","X":435,"Y":622},{"Bonus":0,"Continent":"K64","ID":18785,"Name":"A32","PlayerID":849037407,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18785","ServerKey":"pl181","X":467,"Y":635},{"Bonus":0,"Continent":"K35","ID":18786,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18786","ServerKey":"pl181","X":528,"Y":370},{"Bonus":0,"Continent":"K64","ID":18787,"Name":"025","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18787","ServerKey":"pl181","X":474,"Y":630},{"Bonus":0,"Continent":"K64","ID":18788,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18788","ServerKey":"pl181","X":483,"Y":637},{"Bonus":0,"Continent":"K43","ID":18789,"Name":"003","PlayerID":848921536,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18789","ServerKey":"pl181","X":387,"Y":423},{"Bonus":0,"Continent":"K46","ID":18790,"Name":"002 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18790","ServerKey":"pl181","X":627,"Y":451},{"Bonus":0,"Continent":"K64","ID":18791,"Name":"Ulu-mulu","PlayerID":699697558,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18791","ServerKey":"pl181","X":422,"Y":610},{"Bonus":0,"Continent":"K46","ID":18792,"Name":"nie zesraj się","PlayerID":8812550,"Points":2517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18792","ServerKey":"pl181","X":635,"Y":478},{"Bonus":0,"Continent":"K65","ID":18793,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18793","ServerKey":"pl181","X":529,"Y":634},{"Bonus":0,"Continent":"K34","ID":18794,"Name":"[0077].....","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18794","ServerKey":"pl181","X":415,"Y":396},{"Bonus":0,"Continent":"K35","ID":18795,"Name":"036","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18795","ServerKey":"pl181","X":573,"Y":385},{"Bonus":0,"Continent":"K64","ID":18796,"Name":"013","PlayerID":849084985,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18796","ServerKey":"pl181","X":447,"Y":628},{"Bonus":0,"Continent":"K43","ID":18798,"Name":"Wioska 6","PlayerID":699343887,"Points":3086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18798","ServerKey":"pl181","X":383,"Y":425},{"Bonus":0,"Continent":"K34","ID":18800,"Name":"Lecymy DUR","PlayerID":6169408,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18800","ServerKey":"pl181","X":443,"Y":374},{"Bonus":0,"Continent":"K56","ID":18801,"Name":"043 PoznaƄ","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18801","ServerKey":"pl181","X":627,"Y":503},{"Bonus":1,"Continent":"K65","ID":18802,"Name":"Osada karczownikĂłw .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18802","ServerKey":"pl181","X":570,"Y":615},{"Bonus":0,"Continent":"K46","ID":18803,"Name":"#006.505|491","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18803","ServerKey":"pl181","X":624,"Y":442},{"Bonus":0,"Continent":"K53","ID":18806,"Name":"071","PlayerID":6853693,"Points":7920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18806","ServerKey":"pl181","X":365,"Y":524},{"Bonus":0,"Continent":"K34","ID":18807,"Name":"034","PlayerID":7462660,"Points":10560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18807","ServerKey":"pl181","X":425,"Y":387},{"Bonus":0,"Continent":"K46","ID":18808,"Name":"027.","PlayerID":849094609,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18808","ServerKey":"pl181","X":639,"Y":492},{"Bonus":4,"Continent":"K43","ID":18809,"Name":"A0172","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18809","ServerKey":"pl181","X":369,"Y":470},{"Bonus":0,"Continent":"K65","ID":18810,"Name":"- 004 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18810","ServerKey":"pl181","X":551,"Y":601},{"Bonus":0,"Continent":"K34","ID":18811,"Name":"0132","PlayerID":699431255,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18811","ServerKey":"pl181","X":447,"Y":378},{"Bonus":0,"Continent":"K34","ID":18812,"Name":"024","PlayerID":849010255,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18812","ServerKey":"pl181","X":480,"Y":373},{"Bonus":0,"Continent":"K64","ID":18813,"Name":"016","PlayerID":849084985,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18813","ServerKey":"pl181","X":441,"Y":621},{"Bonus":0,"Continent":"K65","ID":18814,"Name":"SSJ 069","PlayerID":699364813,"Points":9339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18814","ServerKey":"pl181","X":506,"Y":633},{"Bonus":0,"Continent":"K34","ID":18815,"Name":"057","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18815","ServerKey":"pl181","X":470,"Y":368},{"Bonus":0,"Continent":"K46","ID":18816,"Name":"011 - Mroczna Osada","PlayerID":849035905,"Points":10616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18816","ServerKey":"pl181","X":625,"Y":440},{"Bonus":0,"Continent":"K65","ID":18817,"Name":"[0001]","PlayerID":699567608,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18817","ServerKey":"pl181","X":558,"Y":632},{"Bonus":0,"Continent":"K43","ID":18818,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18818","ServerKey":"pl181","X":396,"Y":409},{"Bonus":2,"Continent":"K46","ID":18819,"Name":"001 B","PlayerID":556154,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18819","ServerKey":"pl181","X":622,"Y":445},{"Bonus":0,"Continent":"K43","ID":18820,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18820","ServerKey":"pl181","X":367,"Y":461},{"Bonus":1,"Continent":"K34","ID":18821,"Name":"Zagroda 30 Resztę Burzymy","PlayerID":699191464,"Points":9002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18821","ServerKey":"pl181","X":453,"Y":371},{"Bonus":0,"Continent":"K64","ID":18822,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":7703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18822","ServerKey":"pl181","X":430,"Y":617},{"Bonus":0,"Continent":"K53","ID":18823,"Name":"033","PlayerID":6853693,"Points":6214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18823","ServerKey":"pl181","X":366,"Y":521},{"Bonus":7,"Continent":"K64","ID":18824,"Name":"095","PlayerID":849084985,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18824","ServerKey":"pl181","X":444,"Y":622},{"Bonus":0,"Continent":"K43","ID":18825,"Name":"Za rzeka","PlayerID":699265922,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18825","ServerKey":"pl181","X":363,"Y":484},{"Bonus":0,"Continent":"K65","ID":18826,"Name":"kathare","PlayerID":873575,"Points":10123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18826","ServerKey":"pl181","X":557,"Y":626},{"Bonus":0,"Continent":"K34","ID":18828,"Name":"121","PlayerID":699761749,"Points":9583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18828","ServerKey":"pl181","X":493,"Y":362},{"Bonus":0,"Continent":"K46","ID":18829,"Name":"014 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18829","ServerKey":"pl181","X":632,"Y":461},{"Bonus":0,"Continent":"K54","ID":18830,"Name":"Pobozowisko","PlayerID":699513260,"Points":7990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18830","ServerKey":"pl181","X":401,"Y":592},{"Bonus":0,"Continent":"K46","ID":18831,"Name":"Jan 021-12 PƂn K","PlayerID":879782,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18831","ServerKey":"pl181","X":635,"Y":492},{"Bonus":0,"Continent":"K46","ID":18832,"Name":"002 | PALESTINA","PlayerID":9228039,"Points":9529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18832","ServerKey":"pl181","X":629,"Y":458},{"Bonus":0,"Continent":"K34","ID":18833,"Name":"K34 - [044] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18833","ServerKey":"pl181","X":459,"Y":380},{"Bonus":0,"Continent":"K56","ID":18834,"Name":"048","PlayerID":698786826,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18834","ServerKey":"pl181","X":607,"Y":586},{"Bonus":0,"Continent":"K64","ID":18835,"Name":"A06 Wioska barbarzyƄska","PlayerID":849037407,"Points":10185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18835","ServerKey":"pl181","X":465,"Y":632},{"Bonus":0,"Continent":"K53","ID":18836,"Name":"066 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18836","ServerKey":"pl181","X":383,"Y":564},{"Bonus":0,"Continent":"K46","ID":18837,"Name":"Jan 08_#3 K","PlayerID":879782,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18837","ServerKey":"pl181","X":634,"Y":474},{"Bonus":0,"Continent":"K35","ID":18838,"Name":"Taran","PlayerID":699170684,"Points":4851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18838","ServerKey":"pl181","X":544,"Y":369},{"Bonus":0,"Continent":"K64","ID":18839,"Name":"0036 Wioska Jastrząb z NBP","PlayerID":9060641,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18839","ServerKey":"pl181","X":417,"Y":608},{"Bonus":0,"Continent":"K65","ID":18840,"Name":"SSJ 026","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18840","ServerKey":"pl181","X":502,"Y":637},{"Bonus":0,"Continent":"K53","ID":18841,"Name":"07. Wioska 7","PlayerID":849091769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18841","ServerKey":"pl181","X":373,"Y":555},{"Bonus":0,"Continent":"K35","ID":18842,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18842","ServerKey":"pl181","X":507,"Y":363},{"Bonus":0,"Continent":"K35","ID":18843,"Name":"0015","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18843","ServerKey":"pl181","X":566,"Y":380},{"Bonus":0,"Continent":"K46","ID":18844,"Name":"609|420 008 FRANKIA","PlayerID":6822957,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18844","ServerKey":"pl181","X":609,"Y":420},{"Bonus":0,"Continent":"K35","ID":18845,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18845","ServerKey":"pl181","X":510,"Y":364},{"Bonus":0,"Continent":"K43","ID":18846,"Name":"Boss 04","PlayerID":699523631,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18846","ServerKey":"pl181","X":370,"Y":465},{"Bonus":0,"Continent":"K53","ID":18847,"Name":"082","PlayerID":6853693,"Points":5309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18847","ServerKey":"pl181","X":366,"Y":525},{"Bonus":0,"Continent":"K46","ID":18848,"Name":"003.","PlayerID":849094609,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18848","ServerKey":"pl181","X":635,"Y":486},{"Bonus":0,"Continent":"K53","ID":18849,"Name":"14. Wioska 14","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18849","ServerKey":"pl181","X":373,"Y":553},{"Bonus":0,"Continent":"K56","ID":18850,"Name":"024.","PlayerID":849094609,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18850","ServerKey":"pl181","X":634,"Y":504},{"Bonus":0,"Continent":"K53","ID":18851,"Name":"R005","PlayerID":8607734,"Points":5736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18851","ServerKey":"pl181","X":386,"Y":576},{"Bonus":0,"Continent":"K46","ID":18852,"Name":"002.","PlayerID":849094609,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18852","ServerKey":"pl181","X":638,"Y":479},{"Bonus":0,"Continent":"K64","ID":18853,"Name":"011","PlayerID":849084985,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18853","ServerKey":"pl181","X":448,"Y":622},{"Bonus":5,"Continent":"K54","ID":18854,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18854","ServerKey":"pl181","X":400,"Y":594},{"Bonus":0,"Continent":"K34","ID":18855,"Name":"0142","PlayerID":699431255,"Points":6572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18855","ServerKey":"pl181","X":429,"Y":383},{"Bonus":0,"Continent":"K56","ID":18856,"Name":"049","PlayerID":698786826,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18856","ServerKey":"pl181","X":608,"Y":585},{"Bonus":0,"Continent":"K65","ID":18857,"Name":"#0039","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18857","ServerKey":"pl181","X":554,"Y":626},{"Bonus":0,"Continent":"K46","ID":18858,"Name":"*020*","PlayerID":698670524,"Points":9165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18858","ServerKey":"pl181","X":635,"Y":496},{"Bonus":0,"Continent":"K64","ID":18859,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18859","ServerKey":"pl181","X":427,"Y":612},{"Bonus":0,"Continent":"K64","ID":18860,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18860","ServerKey":"pl181","X":496,"Y":638},{"Bonus":0,"Continent":"K43","ID":18861,"Name":"A0073","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18861","ServerKey":"pl181","X":365,"Y":493},{"Bonus":0,"Continent":"K43","ID":18862,"Name":"A0289","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18862","ServerKey":"pl181","X":366,"Y":496},{"Bonus":0,"Continent":"K34","ID":18863,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18863","ServerKey":"pl181","X":497,"Y":365},{"Bonus":0,"Continent":"K35","ID":18864,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18864","ServerKey":"pl181","X":521,"Y":371},{"Bonus":0,"Continent":"K65","ID":18865,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18865","ServerKey":"pl181","X":575,"Y":610},{"Bonus":0,"Continent":"K65","ID":18866,"Name":"- 334 - RR","PlayerID":849018239,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18866","ServerKey":"pl181","X":587,"Y":602},{"Bonus":0,"Continent":"K43","ID":18867,"Name":"Wioska barbarzyƄska 1","PlayerID":699523631,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18867","ServerKey":"pl181","X":371,"Y":461},{"Bonus":0,"Continent":"K34","ID":18868,"Name":"VN Rill Boismortier","PlayerID":699883079,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18868","ServerKey":"pl181","X":467,"Y":366},{"Bonus":0,"Continent":"K53","ID":18869,"Name":"052","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18869","ServerKey":"pl181","X":369,"Y":545},{"Bonus":7,"Continent":"K64","ID":18870,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18870","ServerKey":"pl181","X":428,"Y":615},{"Bonus":0,"Continent":"K53","ID":18871,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18871","ServerKey":"pl181","X":396,"Y":582},{"Bonus":0,"Continent":"K56","ID":18872,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18872","ServerKey":"pl181","X":632,"Y":533},{"Bonus":9,"Continent":"K34","ID":18873,"Name":"VN Gaius Marius","PlayerID":699883079,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18873","ServerKey":"pl181","X":440,"Y":381},{"Bonus":0,"Continent":"K45","ID":18874,"Name":"127.","PlayerID":8788366,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18874","ServerKey":"pl181","X":509,"Y":483},{"Bonus":0,"Continent":"K64","ID":18875,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18875","ServerKey":"pl181","X":489,"Y":637},{"Bonus":0,"Continent":"K35","ID":18877,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18877","ServerKey":"pl181","X":553,"Y":372},{"Bonus":0,"Continent":"K56","ID":18878,"Name":"034","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18878","ServerKey":"pl181","X":631,"Y":543},{"Bonus":0,"Continent":"K35","ID":18879,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18879","ServerKey":"pl181","X":561,"Y":379},{"Bonus":0,"Continent":"K46","ID":18880,"Name":"020 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18880","ServerKey":"pl181","X":630,"Y":454},{"Bonus":0,"Continent":"K43","ID":18881,"Name":"Westcoast.050","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18881","ServerKey":"pl181","X":380,"Y":436},{"Bonus":0,"Continent":"K64","ID":18882,"Name":"0341","PlayerID":698659980,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18882","ServerKey":"pl181","X":497,"Y":623},{"Bonus":0,"Continent":"K65","ID":18883,"Name":"0045","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18883","ServerKey":"pl181","X":561,"Y":622},{"Bonus":0,"Continent":"K35","ID":18884,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18884","ServerKey":"pl181","X":561,"Y":378},{"Bonus":0,"Continent":"K64","ID":18885,"Name":"073 KUZYNI mehehehe","PlayerID":699336777,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18885","ServerKey":"pl181","X":480,"Y":633},{"Bonus":0,"Continent":"K34","ID":18886,"Name":"0065","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18886","ServerKey":"pl181","X":443,"Y":377},{"Bonus":3,"Continent":"K56","ID":18887,"Name":"014","PlayerID":699099811,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18887","ServerKey":"pl181","X":613,"Y":580},{"Bonus":0,"Continent":"K53","ID":18888,"Name":"-023-","PlayerID":699097885,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18888","ServerKey":"pl181","X":396,"Y":587},{"Bonus":0,"Continent":"K56","ID":18889,"Name":"034","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18889","ServerKey":"pl181","X":632,"Y":513},{"Bonus":0,"Continent":"K46","ID":18890,"Name":"B009","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18890","ServerKey":"pl181","X":600,"Y":409},{"Bonus":0,"Continent":"K43","ID":18891,"Name":"A0180","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18891","ServerKey":"pl181","X":367,"Y":475},{"Bonus":0,"Continent":"K56","ID":18892,"Name":"[018]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18892","ServerKey":"pl181","X":626,"Y":542},{"Bonus":0,"Continent":"K35","ID":18893,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18893","ServerKey":"pl181","X":562,"Y":381},{"Bonus":0,"Continent":"K34","ID":18894,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18894","ServerKey":"pl181","X":437,"Y":382},{"Bonus":0,"Continent":"K56","ID":18895,"Name":"008","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18895","ServerKey":"pl181","X":600,"Y":594},{"Bonus":0,"Continent":"K46","ID":18896,"Name":"Gattacka","PlayerID":699298370,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18896","ServerKey":"pl181","X":609,"Y":417},{"Bonus":0,"Continent":"K43","ID":18898,"Name":"A0112","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18898","ServerKey":"pl181","X":368,"Y":483},{"Bonus":0,"Continent":"K43","ID":18899,"Name":"Wioska 5","PlayerID":699343887,"Points":3086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18899","ServerKey":"pl181","X":383,"Y":430},{"Bonus":0,"Continent":"K34","ID":18900,"Name":"VN Langris Vaude","PlayerID":699883079,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18900","ServerKey":"pl181","X":461,"Y":373},{"Bonus":0,"Continent":"K46","ID":18901,"Name":"089. Rhenus","PlayerID":849091866,"Points":8384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18901","ServerKey":"pl181","X":618,"Y":431},{"Bonus":0,"Continent":"K34","ID":18902,"Name":"[0021]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18902","ServerKey":"pl181","X":451,"Y":397},{"Bonus":0,"Continent":"K46","ID":18903,"Name":"Jehu_Kingdom_44","PlayerID":8785314,"Points":8312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18903","ServerKey":"pl181","X":631,"Y":478},{"Bonus":0,"Continent":"K65","ID":18904,"Name":"021","PlayerID":699878511,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18904","ServerKey":"pl181","X":504,"Y":636},{"Bonus":0,"Continent":"K46","ID":18905,"Name":"039 | PALESTINA","PlayerID":9228039,"Points":6047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18905","ServerKey":"pl181","X":635,"Y":465},{"Bonus":0,"Continent":"K53","ID":18906,"Name":"054","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18906","ServerKey":"pl181","X":362,"Y":513},{"Bonus":0,"Continent":"K53","ID":18907,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18907","ServerKey":"pl181","X":391,"Y":580},{"Bonus":0,"Continent":"K53","ID":18908,"Name":"067 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18908","ServerKey":"pl181","X":380,"Y":563},{"Bonus":0,"Continent":"K65","ID":18909,"Name":"0168","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18909","ServerKey":"pl181","X":551,"Y":626},{"Bonus":0,"Continent":"K53","ID":18910,"Name":"-011-","PlayerID":699097885,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18910","ServerKey":"pl181","X":392,"Y":590},{"Bonus":0,"Continent":"K65","ID":18911,"Name":"Jaaa","PlayerID":698635863,"Points":10027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18911","ServerKey":"pl181","X":587,"Y":606},{"Bonus":0,"Continent":"K65","ID":18913,"Name":"W.05","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18913","ServerKey":"pl181","X":583,"Y":609},{"Bonus":0,"Continent":"K53","ID":18914,"Name":"Pobozowisko","PlayerID":699513260,"Points":8873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18914","ServerKey":"pl181","X":383,"Y":575},{"Bonus":0,"Continent":"K53","ID":18915,"Name":"66. Wioska 66","PlayerID":849091769,"Points":5790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18915","ServerKey":"pl181","X":385,"Y":569},{"Bonus":0,"Continent":"K46","ID":18916,"Name":"Jan 02_v K","PlayerID":879782,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18916","ServerKey":"pl181","X":639,"Y":467},{"Bonus":0,"Continent":"K56","ID":18917,"Name":"Twierdza 6","PlayerID":848935020,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18917","ServerKey":"pl181","X":634,"Y":503},{"Bonus":0,"Continent":"K35","ID":18918,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18918","ServerKey":"pl181","X":553,"Y":371},{"Bonus":0,"Continent":"K43","ID":18919,"Name":"Pomoc","PlayerID":1746216,"Points":5427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18919","ServerKey":"pl181","X":384,"Y":428},{"Bonus":0,"Continent":"K65","ID":18920,"Name":"na blisko .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18920","ServerKey":"pl181","X":568,"Y":616},{"Bonus":0,"Continent":"K35","ID":18921,"Name":"Taran","PlayerID":699170684,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18921","ServerKey":"pl181","X":551,"Y":375},{"Bonus":0,"Continent":"K34","ID":18922,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18922","ServerKey":"pl181","X":418,"Y":392},{"Bonus":0,"Continent":"K34","ID":18923,"Name":"058","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18923","ServerKey":"pl181","X":471,"Y":366},{"Bonus":0,"Continent":"K43","ID":18924,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18924","ServerKey":"pl181","X":369,"Y":457},{"Bonus":0,"Continent":"K34","ID":18925,"Name":"c imperium","PlayerID":3909522,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18925","ServerKey":"pl181","X":417,"Y":388},{"Bonus":0,"Continent":"K43","ID":18926,"Name":"Wioska 2","PlayerID":699343887,"Points":3251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18926","ServerKey":"pl181","X":383,"Y":429},{"Bonus":0,"Continent":"K56","ID":18927,"Name":"Nowa 08","PlayerID":698702991,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18927","ServerKey":"pl181","X":621,"Y":566},{"Bonus":0,"Continent":"K64","ID":18928,"Name":"A16 Wioska barbarzyƄska","PlayerID":849037407,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18928","ServerKey":"pl181","X":460,"Y":630},{"Bonus":0,"Continent":"K56","ID":18929,"Name":"=042= Wioska barbarzyƄska","PlayerID":3781794,"Points":7910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18929","ServerKey":"pl181","X":622,"Y":553},{"Bonus":0,"Continent":"K56","ID":18930,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18930","ServerKey":"pl181","X":619,"Y":560},{"Bonus":0,"Continent":"K64","ID":18931,"Name":"002","PlayerID":272173,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18931","ServerKey":"pl181","X":485,"Y":634},{"Bonus":0,"Continent":"K53","ID":18932,"Name":"Pobozowisko","PlayerID":699513260,"Points":10786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18932","ServerKey":"pl181","X":393,"Y":590},{"Bonus":0,"Continent":"K46","ID":18933,"Name":"Gattacka","PlayerID":699298370,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18933","ServerKey":"pl181","X":608,"Y":413},{"Bonus":0,"Continent":"K45","ID":18934,"Name":"016","PlayerID":849063849,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18934","ServerKey":"pl181","X":583,"Y":412},{"Bonus":0,"Continent":"K56","ID":18935,"Name":"P032 Adachi","PlayerID":8096537,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18935","ServerKey":"pl181","X":636,"Y":501},{"Bonus":0,"Continent":"K53","ID":18936,"Name":"051","PlayerID":8908002,"Points":8579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18936","ServerKey":"pl181","X":370,"Y":545},{"Bonus":0,"Continent":"K35","ID":18937,"Name":"Taran","PlayerID":699170684,"Points":4523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18937","ServerKey":"pl181","X":545,"Y":371},{"Bonus":0,"Continent":"K34","ID":18938,"Name":"004","PlayerID":699402816,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18938","ServerKey":"pl181","X":416,"Y":395},{"Bonus":0,"Continent":"K43","ID":18939,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18939","ServerKey":"pl181","X":375,"Y":442},{"Bonus":4,"Continent":"K34","ID":18940,"Name":"Konfederacja +","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18940","ServerKey":"pl181","X":454,"Y":375},{"Bonus":0,"Continent":"K53","ID":18941,"Name":"147 Oj Mareczku coƛ za duĆŒo cyfr","PlayerID":699382126,"Points":8551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18941","ServerKey":"pl181","X":380,"Y":568},{"Bonus":0,"Continent":"K45","ID":18942,"Name":"152 MIKOX 042","PlayerID":699491076,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18942","ServerKey":"pl181","X":590,"Y":416},{"Bonus":0,"Continent":"K56","ID":18943,"Name":"029 Wwwwwweeeeekkkkkkkk","PlayerID":9238175,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18943","ServerKey":"pl181","X":636,"Y":502},{"Bonus":0,"Continent":"K53","ID":18944,"Name":"San Piero a Sieve","PlayerID":699494480,"Points":9153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18944","ServerKey":"pl181","X":369,"Y":539},{"Bonus":0,"Continent":"K35","ID":18945,"Name":"123","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18945","ServerKey":"pl181","X":574,"Y":385},{"Bonus":0,"Continent":"K34","ID":18946,"Name":"059","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18946","ServerKey":"pl181","X":474,"Y":365},{"Bonus":0,"Continent":"K56","ID":18947,"Name":"=018= Polska 0:0 Meksyk","PlayerID":3781794,"Points":8212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18947","ServerKey":"pl181","X":620,"Y":559},{"Bonus":0,"Continent":"K34","ID":18948,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18948","ServerKey":"pl181","X":441,"Y":378},{"Bonus":0,"Continent":"K53","ID":18949,"Name":"074","PlayerID":6853693,"Points":5050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18949","ServerKey":"pl181","X":367,"Y":518},{"Bonus":0,"Continent":"K53","ID":18950,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18950","ServerKey":"pl181","X":370,"Y":548},{"Bonus":0,"Continent":"K53","ID":18951,"Name":"52. Wioska 52","PlayerID":849091769,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18951","ServerKey":"pl181","X":376,"Y":552},{"Bonus":0,"Continent":"K64","ID":18952,"Name":"Pobozowisko","PlayerID":699513260,"Points":9316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18952","ServerKey":"pl181","X":412,"Y":605},{"Bonus":0,"Continent":"K64","ID":18953,"Name":"0007 Wioska barbarzyƄska","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18953","ServerKey":"pl181","X":425,"Y":615},{"Bonus":0,"Continent":"K53","ID":18955,"Name":"Brat447","PlayerID":699262350,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18955","ServerKey":"pl181","X":367,"Y":501},{"Bonus":9,"Continent":"K43","ID":18956,"Name":"A0074","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18956","ServerKey":"pl181","X":367,"Y":484},{"Bonus":0,"Continent":"K56","ID":18957,"Name":"021","PlayerID":8428196,"Points":9874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18957","ServerKey":"pl181","X":630,"Y":550},{"Bonus":0,"Continent":"K46","ID":18958,"Name":"Wioska barbarzyƄska","PlayerID":7915966,"Points":2374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18958","ServerKey":"pl181","X":610,"Y":408},{"Bonus":0,"Continent":"K35","ID":18959,"Name":"030","PlayerID":1424656,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18959","ServerKey":"pl181","X":555,"Y":372},{"Bonus":0,"Continent":"K53","ID":18960,"Name":"151 Ale mnie gƂówka boli","PlayerID":699382126,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18960","ServerKey":"pl181","X":377,"Y":570},{"Bonus":0,"Continent":"K64","ID":18961,"Name":"Pobozowisko","PlayerID":699513260,"Points":7490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18961","ServerKey":"pl181","X":411,"Y":600},{"Bonus":2,"Continent":"K35","ID":18962,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18962","ServerKey":"pl181","X":558,"Y":377},{"Bonus":0,"Continent":"K53","ID":18963,"Name":"152 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18963","ServerKey":"pl181","X":379,"Y":566},{"Bonus":0,"Continent":"K34","ID":18964,"Name":"c rzeĆșnia","PlayerID":3909522,"Points":10431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18964","ServerKey":"pl181","X":416,"Y":390},{"Bonus":0,"Continent":"K64","ID":18965,"Name":"Ave Why!","PlayerID":8729672,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18965","ServerKey":"pl181","X":451,"Y":630},{"Bonus":0,"Continent":"K65","ID":18966,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18966","ServerKey":"pl181","X":540,"Y":627},{"Bonus":0,"Continent":"K64","ID":18967,"Name":"ave why!","PlayerID":698143931,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18967","ServerKey":"pl181","X":454,"Y":622},{"Bonus":0,"Continent":"K56","ID":18968,"Name":"Nowa 14","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18968","ServerKey":"pl181","X":616,"Y":567},{"Bonus":0,"Continent":"K35","ID":18969,"Name":"006 Wioska kolekjarek","PlayerID":699509239,"Points":6632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18969","ServerKey":"pl181","X":566,"Y":378},{"Bonus":0,"Continent":"K44","ID":18970,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18970","ServerKey":"pl181","X":407,"Y":400},{"Bonus":0,"Continent":"K35","ID":18971,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18971","ServerKey":"pl181","X":520,"Y":366},{"Bonus":0,"Continent":"K56","ID":18972,"Name":"0016. C -","PlayerID":7125212,"Points":4321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18972","ServerKey":"pl181","X":623,"Y":506},{"Bonus":0,"Continent":"K56","ID":18973,"Name":"028","PlayerID":699413040,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18973","ServerKey":"pl181","X":635,"Y":517},{"Bonus":0,"Continent":"K64","ID":18974,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18974","ServerKey":"pl181","X":406,"Y":602},{"Bonus":0,"Continent":"K56","ID":18975,"Name":"045","PlayerID":698786826,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18975","ServerKey":"pl181","X":605,"Y":585},{"Bonus":0,"Continent":"K34","ID":18976,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18976","ServerKey":"pl181","X":453,"Y":372},{"Bonus":0,"Continent":"K35","ID":18977,"Name":"Master Carry1","PlayerID":699368887,"Points":9466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18977","ServerKey":"pl181","X":509,"Y":367},{"Bonus":0,"Continent":"K35","ID":18978,"Name":"Taran","PlayerID":699170684,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18978","ServerKey":"pl181","X":556,"Y":376},{"Bonus":0,"Continent":"K43","ID":18979,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18979","ServerKey":"pl181","X":385,"Y":441},{"Bonus":0,"Continent":"K34","ID":18980,"Name":"115","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18980","ServerKey":"pl181","X":488,"Y":361},{"Bonus":0,"Continent":"K64","ID":18981,"Name":"A25 Wioska barbarzyƄska","PlayerID":849037407,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18981","ServerKey":"pl181","X":459,"Y":629},{"Bonus":0,"Continent":"K65","ID":18982,"Name":"nic","PlayerID":699828685,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18982","ServerKey":"pl181","X":573,"Y":618},{"Bonus":0,"Continent":"K65","ID":18983,"Name":"#0016","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18983","ServerKey":"pl181","X":546,"Y":628},{"Bonus":0,"Continent":"K65","ID":18984,"Name":"HORUS+","PlayerID":7756002,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18984","ServerKey":"pl181","X":525,"Y":636},{"Bonus":0,"Continent":"K46","ID":18985,"Name":"614|427 000 LegatusXI","PlayerID":6822957,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18985","ServerKey":"pl181","X":614,"Y":427},{"Bonus":0,"Continent":"K64","ID":18986,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18986","ServerKey":"pl181","X":494,"Y":636},{"Bonus":0,"Continent":"K53","ID":18987,"Name":"072","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18987","ServerKey":"pl181","X":369,"Y":538},{"Bonus":0,"Continent":"K53","ID":18988,"Name":"075 Lisie gĂłry","PlayerID":699382126,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18988","ServerKey":"pl181","X":381,"Y":568},{"Bonus":0,"Continent":"K65","ID":18989,"Name":"~~035~~","PlayerID":7829201,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18989","ServerKey":"pl181","X":594,"Y":603},{"Bonus":0,"Continent":"K35","ID":18990,"Name":"Taran","PlayerID":699170684,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18990","ServerKey":"pl181","X":554,"Y":374},{"Bonus":0,"Continent":"K65","ID":18991,"Name":"#0013","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18991","ServerKey":"pl181","X":548,"Y":628},{"Bonus":0,"Continent":"K43","ID":18992,"Name":".Krakers. 007","PlayerID":9163140,"Points":1672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18992","ServerKey":"pl181","X":365,"Y":474},{"Bonus":1,"Continent":"K56","ID":18993,"Name":"055","PlayerID":698786826,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18993","ServerKey":"pl181","X":606,"Y":584},{"Bonus":0,"Continent":"K46","ID":18994,"Name":"041- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18994","ServerKey":"pl181","X":622,"Y":437},{"Bonus":0,"Continent":"K64","ID":18995,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18995","ServerKey":"pl181","X":430,"Y":616},{"Bonus":0,"Continent":"K43","ID":18996,"Name":"002","PlayerID":9239515,"Points":8049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18996","ServerKey":"pl181","X":387,"Y":424},{"Bonus":0,"Continent":"K56","ID":18997,"Name":"004","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18997","ServerKey":"pl181","X":617,"Y":569},{"Bonus":0,"Continent":"K53","ID":18998,"Name":"052 Kuzyn skonfiskowaƂ Bull Run","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=18998","ServerKey":"pl181","X":382,"Y":573},{"Bonus":0,"Continent":"K65","ID":19000,"Name":"SSJ 011","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19000","ServerKey":"pl181","X":510,"Y":636},{"Bonus":0,"Continent":"K55","ID":19001,"Name":"005 TASUKA MARAKA","PlayerID":7581876,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19001","ServerKey":"pl181","X":538,"Y":524},{"Bonus":0,"Continent":"K56","ID":19002,"Name":"016","PlayerID":8428196,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19002","ServerKey":"pl181","X":629,"Y":546},{"Bonus":0,"Continent":"K54","ID":19003,"Name":"KIELBA 048","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19003","ServerKey":"pl181","X":461,"Y":583},{"Bonus":0,"Continent":"K34","ID":19004,"Name":"Konfederacja","PlayerID":848915730,"Points":8635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19004","ServerKey":"pl181","X":448,"Y":373},{"Bonus":0,"Continent":"K43","ID":19005,"Name":"Belzebub","PlayerID":1746216,"Points":8584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19005","ServerKey":"pl181","X":384,"Y":427},{"Bonus":0,"Continent":"K46","ID":19006,"Name":"Gattacka","PlayerID":699298370,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19006","ServerKey":"pl181","X":611,"Y":419},{"Bonus":0,"Continent":"K53","ID":19007,"Name":"-052-","PlayerID":9167250,"Points":5737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19007","ServerKey":"pl181","X":383,"Y":567},{"Bonus":0,"Continent":"K53","ID":19008,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19008","ServerKey":"pl181","X":373,"Y":545},{"Bonus":0,"Continent":"K65","ID":19009,"Name":"~~043~~","PlayerID":7829201,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19009","ServerKey":"pl181","X":591,"Y":604},{"Bonus":0,"Continent":"K46","ID":19010,"Name":"FA002","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19010","ServerKey":"pl181","X":640,"Y":496},{"Bonus":0,"Continent":"K46","ID":19011,"Name":"018 - A Coruna","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19011","ServerKey":"pl181","X":636,"Y":490},{"Bonus":0,"Continent":"K46","ID":19012,"Name":"004 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19012","ServerKey":"pl181","X":629,"Y":448},{"Bonus":0,"Continent":"K34","ID":19013,"Name":"119","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19013","ServerKey":"pl181","X":483,"Y":364},{"Bonus":0,"Continent":"K65","ID":19014,"Name":"sony911","PlayerID":1415009,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19014","ServerKey":"pl181","X":580,"Y":613},{"Bonus":0,"Continent":"K44","ID":19015,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19015","ServerKey":"pl181","X":402,"Y":406},{"Bonus":0,"Continent":"K64","ID":19016,"Name":"0038 Zero zaskoczenia","PlayerID":9060641,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19016","ServerKey":"pl181","X":418,"Y":606},{"Bonus":0,"Continent":"K35","ID":19017,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19017","ServerKey":"pl181","X":523,"Y":365},{"Bonus":0,"Continent":"K43","ID":19018,"Name":"Wioska Vexijio","PlayerID":8967440,"Points":7704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19018","ServerKey":"pl181","X":381,"Y":427},{"Bonus":0,"Continent":"K46","ID":19019,"Name":"#064.","PlayerID":556154,"Points":4604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19019","ServerKey":"pl181","X":628,"Y":452},{"Bonus":0,"Continent":"K34","ID":19020,"Name":"060","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19020","ServerKey":"pl181","X":470,"Y":369},{"Bonus":0,"Continent":"K35","ID":19021,"Name":"A READY","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19021","ServerKey":"pl181","X":590,"Y":396},{"Bonus":0,"Continent":"K46","ID":19022,"Name":"026 nie jest kolorowo","PlayerID":699272633,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19022","ServerKey":"pl181","X":637,"Y":472},{"Bonus":0,"Continent":"K56","ID":19023,"Name":"Ć»uraw","PlayerID":849095778,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19023","ServerKey":"pl181","X":624,"Y":571},{"Bonus":4,"Continent":"K64","ID":19024,"Name":"0002","PlayerID":6180190,"Points":10432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19024","ServerKey":"pl181","X":481,"Y":637},{"Bonus":0,"Continent":"K44","ID":19025,"Name":"034 Phoenix","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19025","ServerKey":"pl181","X":448,"Y":461},{"Bonus":0,"Continent":"K43","ID":19026,"Name":"Za miedza","PlayerID":699265922,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19026","ServerKey":"pl181","X":362,"Y":484},{"Bonus":0,"Continent":"K65","ID":19027,"Name":"069","PlayerID":699373599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19027","ServerKey":"pl181","X":596,"Y":602},{"Bonus":0,"Continent":"K34","ID":19028,"Name":"c 00445 !!!","PlayerID":3909522,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19028","ServerKey":"pl181","X":414,"Y":390},{"Bonus":0,"Continent":"K43","ID":19029,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19029","ServerKey":"pl181","X":368,"Y":458},{"Bonus":0,"Continent":"K56","ID":19030,"Name":"021","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19030","ServerKey":"pl181","X":611,"Y":585},{"Bonus":0,"Continent":"K34","ID":19031,"Name":"K34 - [090] Before Land","PlayerID":699088769,"Points":9162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19031","ServerKey":"pl181","X":450,"Y":376},{"Bonus":0,"Continent":"K46","ID":19032,"Name":"023 Ƃaaaa naebaem się w hu11111","PlayerID":699272633,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19032","ServerKey":"pl181","X":634,"Y":472},{"Bonus":0,"Continent":"K35","ID":19033,"Name":"A006","PlayerID":699208929,"Points":10038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19033","ServerKey":"pl181","X":521,"Y":365},{"Bonus":0,"Continent":"K53","ID":19034,"Name":"040","PlayerID":6853693,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19034","ServerKey":"pl181","X":367,"Y":519},{"Bonus":0,"Continent":"K46","ID":19036,"Name":"Wioska17","PlayerID":848935020,"Points":5313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19036","ServerKey":"pl181","X":633,"Y":477},{"Bonus":0,"Continent":"K46","ID":19037,"Name":"#065.","PlayerID":556154,"Points":7411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19037","ServerKey":"pl181","X":628,"Y":454},{"Bonus":0,"Continent":"K65","ID":19038,"Name":"#0009","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19038","ServerKey":"pl181","X":549,"Y":629},{"Bonus":0,"Continent":"K55","ID":19039,"Name":"PYRLANDIA 002 S","PlayerID":33900,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19039","ServerKey":"pl181","X":570,"Y":592},{"Bonus":0,"Continent":"K46","ID":19040,"Name":"036. Ader","PlayerID":849091866,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19040","ServerKey":"pl181","X":629,"Y":453},{"Bonus":3,"Continent":"K43","ID":19041,"Name":"A0077","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19041","ServerKey":"pl181","X":366,"Y":469},{"Bonus":0,"Continent":"K65","ID":19042,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19042","ServerKey":"pl181","X":586,"Y":605},{"Bonus":0,"Continent":"K56","ID":19043,"Name":"0068","PlayerID":6510480,"Points":8135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19043","ServerKey":"pl181","X":636,"Y":530},{"Bonus":0,"Continent":"K56","ID":19044,"Name":"037","PlayerID":699413040,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19044","ServerKey":"pl181","X":638,"Y":515},{"Bonus":0,"Continent":"K65","ID":19046,"Name":"0048","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19046","ServerKey":"pl181","X":557,"Y":621},{"Bonus":0,"Continent":"K54","ID":19047,"Name":"xx 003. ONI","PlayerID":698290577,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19047","ServerKey":"pl181","X":400,"Y":502},{"Bonus":0,"Continent":"K45","ID":19048,"Name":"A READY","PlayerID":699759128,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19048","ServerKey":"pl181","X":590,"Y":400},{"Bonus":0,"Continent":"K43","ID":19049,"Name":"Westcoast.090","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19049","ServerKey":"pl181","X":387,"Y":428},{"Bonus":0,"Continent":"K35","ID":19050,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19050","ServerKey":"pl181","X":515,"Y":362},{"Bonus":0,"Continent":"K64","ID":19051,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19051","ServerKey":"pl181","X":493,"Y":639},{"Bonus":0,"Continent":"K34","ID":19052,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19052","ServerKey":"pl181","X":495,"Y":375},{"Bonus":0,"Continent":"K43","ID":19053,"Name":"A0181","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19053","ServerKey":"pl181","X":361,"Y":490},{"Bonus":0,"Continent":"K56","ID":19054,"Name":"C009 South Lake","PlayerID":8096537,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19054","ServerKey":"pl181","X":620,"Y":564},{"Bonus":0,"Continent":"K43","ID":19055,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19055","ServerKey":"pl181","X":366,"Y":460},{"Bonus":0,"Continent":"K34","ID":19056,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19056","ServerKey":"pl181","X":433,"Y":380},{"Bonus":0,"Continent":"K53","ID":19057,"Name":"007 Bez nazwy","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19057","ServerKey":"pl181","X":382,"Y":561},{"Bonus":0,"Continent":"K35","ID":19058,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19058","ServerKey":"pl181","X":529,"Y":363},{"Bonus":0,"Continent":"K64","ID":19059,"Name":"Pobozowisko","PlayerID":699513260,"Points":10414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19059","ServerKey":"pl181","X":409,"Y":601},{"Bonus":0,"Continent":"K43","ID":19060,"Name":"Westcoast.020","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19060","ServerKey":"pl181","X":385,"Y":436},{"Bonus":0,"Continent":"K54","ID":19061,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19061","ServerKey":"pl181","X":410,"Y":599},{"Bonus":0,"Continent":"K43","ID":19062,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19062","ServerKey":"pl181","X":374,"Y":447},{"Bonus":0,"Continent":"K53","ID":19063,"Name":"057","PlayerID":6853693,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19063","ServerKey":"pl181","X":364,"Y":512},{"Bonus":0,"Continent":"K53","ID":19064,"Name":"Pobozowisko","PlayerID":699513260,"Points":6281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19064","ServerKey":"pl181","X":399,"Y":592},{"Bonus":0,"Continent":"K56","ID":19065,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19065","ServerKey":"pl181","X":631,"Y":529},{"Bonus":0,"Continent":"K34","ID":19066,"Name":"Konfederacja +","PlayerID":848915730,"Points":9728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19066","ServerKey":"pl181","X":449,"Y":371},{"Bonus":0,"Continent":"K65","ID":19067,"Name":"#0013","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19067","ServerKey":"pl181","X":516,"Y":636},{"Bonus":0,"Continent":"K46","ID":19068,"Name":"107 Stop","PlayerID":699491076,"Points":9058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19068","ServerKey":"pl181","X":605,"Y":417},{"Bonus":8,"Continent":"K53","ID":19069,"Name":"006","PlayerID":6853693,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19069","ServerKey":"pl181","X":366,"Y":539},{"Bonus":0,"Continent":"K34","ID":19070,"Name":"VN Shizuku Murasaki","PlayerID":699883079,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19070","ServerKey":"pl181","X":470,"Y":363},{"Bonus":0,"Continent":"K35","ID":19071,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19071","ServerKey":"pl181","X":514,"Y":366},{"Bonus":1,"Continent":"K43","ID":19072,"Name":"s3 Osada koczownikĂłw","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19072","ServerKey":"pl181","X":396,"Y":414},{"Bonus":0,"Continent":"K53","ID":19074,"Name":"072 Największy Dzban","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19074","ServerKey":"pl181","X":377,"Y":563},{"Bonus":0,"Continent":"K53","ID":19075,"Name":"008","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19075","ServerKey":"pl181","X":361,"Y":515},{"Bonus":0,"Continent":"K46","ID":19076,"Name":"022 hyhyhy kuhw@","PlayerID":699272633,"Points":10010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19076","ServerKey":"pl181","X":631,"Y":472},{"Bonus":0,"Continent":"K65","ID":19077,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19077","ServerKey":"pl181","X":507,"Y":634},{"Bonus":0,"Continent":"K64","ID":19078,"Name":"A018","PlayerID":699383279,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19078","ServerKey":"pl181","X":472,"Y":635},{"Bonus":0,"Continent":"K35","ID":19079,"Name":"R-09","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19079","ServerKey":"pl181","X":547,"Y":372},{"Bonus":0,"Continent":"K46","ID":19080,"Name":"D003","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19080","ServerKey":"pl181","X":603,"Y":407},{"Bonus":0,"Continent":"K34","ID":19081,"Name":"c ub","PlayerID":3909522,"Points":6105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19081","ServerKey":"pl181","X":418,"Y":388},{"Bonus":0,"Continent":"K35","ID":19082,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19082","ServerKey":"pl181","X":577,"Y":389},{"Bonus":0,"Continent":"K34","ID":19083,"Name":"VN Alex Louis Armstrong","PlayerID":699883079,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19083","ServerKey":"pl181","X":464,"Y":365},{"Bonus":0,"Continent":"K46","ID":19084,"Name":"009 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19084","ServerKey":"pl181","X":631,"Y":455},{"Bonus":0,"Continent":"K64","ID":19086,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19086","ServerKey":"pl181","X":494,"Y":637},{"Bonus":0,"Continent":"K43","ID":19087,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19087","ServerKey":"pl181","X":370,"Y":453},{"Bonus":0,"Continent":"K34","ID":19088,"Name":"Zeta Reticuli S3","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19088","ServerKey":"pl181","X":424,"Y":389},{"Bonus":0,"Continent":"K43","ID":19089,"Name":"A0215","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19089","ServerKey":"pl181","X":363,"Y":497},{"Bonus":0,"Continent":"K43","ID":19090,"Name":"A0224","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19090","ServerKey":"pl181","X":364,"Y":468},{"Bonus":0,"Continent":"K56","ID":19091,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19091","ServerKey":"pl181","X":632,"Y":531},{"Bonus":0,"Continent":"K34","ID":19092,"Name":"Bagdad","PlayerID":8847546,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19092","ServerKey":"pl181","X":430,"Y":385},{"Bonus":0,"Continent":"K65","ID":19093,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19093","ServerKey":"pl181","X":533,"Y":633},{"Bonus":0,"Continent":"K53","ID":19094,"Name":"Brat447","PlayerID":699262350,"Points":6005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19094","ServerKey":"pl181","X":367,"Y":514},{"Bonus":0,"Continent":"K64","ID":19095,"Name":"Ave Why!","PlayerID":8729672,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19095","ServerKey":"pl181","X":449,"Y":626},{"Bonus":1,"Continent":"K34","ID":19096,"Name":"VN Rose","PlayerID":699883079,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19096","ServerKey":"pl181","X":463,"Y":369},{"Bonus":0,"Continent":"K34","ID":19097,"Name":"0109","PlayerID":699431255,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19097","ServerKey":"pl181","X":435,"Y":378},{"Bonus":0,"Continent":"K44","ID":19098,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19098","ServerKey":"pl181","X":400,"Y":410},{"Bonus":0,"Continent":"K35","ID":19099,"Name":"013 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19099","ServerKey":"pl181","X":538,"Y":368},{"Bonus":0,"Continent":"K56","ID":19100,"Name":"22 XXX","PlayerID":699377151,"Points":971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19100","ServerKey":"pl181","X":632,"Y":525},{"Bonus":0,"Continent":"K43","ID":19101,"Name":"A0293","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19101","ServerKey":"pl181","X":362,"Y":476},{"Bonus":0,"Continent":"K64","ID":19102,"Name":"055. F64D","PlayerID":699494488,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19102","ServerKey":"pl181","X":484,"Y":633},{"Bonus":1,"Continent":"K34","ID":19103,"Name":"Sprzedam Drewno","PlayerID":699191455,"Points":7103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19103","ServerKey":"pl181","X":452,"Y":370},{"Bonus":0,"Continent":"K56","ID":19104,"Name":"[012]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19104","ServerKey":"pl181","X":635,"Y":528},{"Bonus":0,"Continent":"K64","ID":19105,"Name":"A05 Wioska barbarzyƄska","PlayerID":849037407,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19105","ServerKey":"pl181","X":464,"Y":630},{"Bonus":0,"Continent":"K43","ID":19106,"Name":"A0209","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19106","ServerKey":"pl181","X":366,"Y":494},{"Bonus":0,"Continent":"K53","ID":19107,"Name":"Brat447","PlayerID":699262350,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19107","ServerKey":"pl181","X":366,"Y":508},{"Bonus":0,"Continent":"K56","ID":19108,"Name":"0023","PlayerID":699429153,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19108","ServerKey":"pl181","X":600,"Y":503},{"Bonus":0,"Continent":"K56","ID":19109,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19109","ServerKey":"pl181","X":631,"Y":540},{"Bonus":0,"Continent":"K56","ID":19110,"Name":"[021]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19110","ServerKey":"pl181","X":636,"Y":529},{"Bonus":0,"Continent":"K43","ID":19111,"Name":"Manypolis","PlayerID":8967440,"Points":11606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19111","ServerKey":"pl181","X":384,"Y":423},{"Bonus":0,"Continent":"K34","ID":19112,"Name":"113","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19112","ServerKey":"pl181","X":489,"Y":366},{"Bonus":0,"Continent":"K64","ID":19114,"Name":"A17 Wioska barbarzyƄska","PlayerID":849037407,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19114","ServerKey":"pl181","X":462,"Y":630},{"Bonus":0,"Continent":"K53","ID":19116,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19116","ServerKey":"pl181","X":387,"Y":572},{"Bonus":0,"Continent":"K35","ID":19117,"Name":"060","PlayerID":7271812,"Points":9259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19117","ServerKey":"pl181","X":589,"Y":394},{"Bonus":0,"Continent":"K34","ID":19118,"Name":"c Robcio 80002","PlayerID":3909522,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19118","ServerKey":"pl181","X":410,"Y":393},{"Bonus":0,"Continent":"K46","ID":19119,"Name":"020 - Vitoria","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19119","ServerKey":"pl181","X":638,"Y":486},{"Bonus":0,"Continent":"K34","ID":19120,"Name":"Bagdad","PlayerID":8847546,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19120","ServerKey":"pl181","X":499,"Y":364},{"Bonus":0,"Continent":"K64","ID":19121,"Name":"Pobozowisko","PlayerID":699513260,"Points":8785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19121","ServerKey":"pl181","X":411,"Y":604},{"Bonus":0,"Continent":"K54","ID":19122,"Name":"BETI 002","PlayerID":8539216,"Points":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19122","ServerKey":"pl181","X":457,"Y":578},{"Bonus":0,"Continent":"K65","ID":19123,"Name":"RTS 7","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19123","ServerKey":"pl181","X":574,"Y":614},{"Bonus":0,"Continent":"K35","ID":19125,"Name":"Lord Lord Franek .#206","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19125","ServerKey":"pl181","X":512,"Y":362},{"Bonus":0,"Continent":"K34","ID":19126,"Name":"K34 - [076] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19126","ServerKey":"pl181","X":450,"Y":372},{"Bonus":4,"Continent":"K56","ID":19127,"Name":"028 lenka","PlayerID":9238175,"Points":10412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19127","ServerKey":"pl181","X":637,"Y":500},{"Bonus":0,"Continent":"K44","ID":19129,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19129","ServerKey":"pl181","X":407,"Y":404},{"Bonus":0,"Continent":"K43","ID":19130,"Name":"Westcoast.084","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19130","ServerKey":"pl181","X":389,"Y":421},{"Bonus":0,"Continent":"K35","ID":19131,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19131","ServerKey":"pl181","X":599,"Y":398},{"Bonus":0,"Continent":"K56","ID":19132,"Name":"018","PlayerID":699413040,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19132","ServerKey":"pl181","X":633,"Y":526},{"Bonus":0,"Continent":"K43","ID":19133,"Name":"A0246","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19133","ServerKey":"pl181","X":370,"Y":463},{"Bonus":0,"Continent":"K43","ID":19134,"Name":"A0096","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19134","ServerKey":"pl181","X":360,"Y":494},{"Bonus":0,"Continent":"K64","ID":19135,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19135","ServerKey":"pl181","X":477,"Y":637},{"Bonus":0,"Continent":"K46","ID":19136,"Name":"012 - Cordoba","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19136","ServerKey":"pl181","X":633,"Y":485},{"Bonus":0,"Continent":"K43","ID":19137,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":7150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19137","ServerKey":"pl181","X":394,"Y":412},{"Bonus":0,"Continent":"K56","ID":19138,"Name":"004","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19138","ServerKey":"pl181","X":600,"Y":597},{"Bonus":0,"Continent":"K35","ID":19139,"Name":"Wioska niszczyciel1123456","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19139","ServerKey":"pl181","X":528,"Y":366},{"Bonus":0,"Continent":"K43","ID":19140,"Name":"A0097","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19140","ServerKey":"pl181","X":366,"Y":492},{"Bonus":0,"Continent":"K46","ID":19141,"Name":"030.","PlayerID":849094609,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19141","ServerKey":"pl181","X":638,"Y":485},{"Bonus":0,"Continent":"K64","ID":19142,"Name":"0015 Wioska barbarzyƄska","PlayerID":9060641,"Points":6726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19142","ServerKey":"pl181","X":424,"Y":616},{"Bonus":0,"Continent":"K56","ID":19143,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":6181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19143","ServerKey":"pl181","X":623,"Y":567},{"Bonus":0,"Continent":"K34","ID":19144,"Name":"0015","PlayerID":699431255,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19144","ServerKey":"pl181","X":430,"Y":384},{"Bonus":0,"Continent":"K46","ID":19145,"Name":"Gattacka","PlayerID":699298370,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19145","ServerKey":"pl181","X":611,"Y":417},{"Bonus":0,"Continent":"K53","ID":19146,"Name":"Pobozowisko","PlayerID":699513260,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19146","ServerKey":"pl181","X":396,"Y":590},{"Bonus":0,"Continent":"K53","ID":19147,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19147","ServerKey":"pl181","X":393,"Y":584},{"Bonus":0,"Continent":"K43","ID":19148,"Name":".Krakers. 005","PlayerID":9163140,"Points":3498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19148","ServerKey":"pl181","X":364,"Y":479},{"Bonus":0,"Continent":"K35","ID":19149,"Name":"xkikutx","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19149","ServerKey":"pl181","X":519,"Y":358},{"Bonus":0,"Continent":"K65","ID":19150,"Name":"0407","PlayerID":698659980,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19150","ServerKey":"pl181","X":542,"Y":634},{"Bonus":0,"Continent":"K65","ID":19151,"Name":"0066","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19151","ServerKey":"pl181","X":560,"Y":623},{"Bonus":0,"Continent":"K35","ID":19152,"Name":"012 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19152","ServerKey":"pl181","X":538,"Y":370},{"Bonus":0,"Continent":"K46","ID":19153,"Name":"#007.503|476","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19153","ServerKey":"pl181","X":622,"Y":427},{"Bonus":0,"Continent":"K56","ID":19154,"Name":"010","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19154","ServerKey":"pl181","X":600,"Y":593},{"Bonus":0,"Continent":"K35","ID":19155,"Name":"Wioska h","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19155","ServerKey":"pl181","X":563,"Y":378},{"Bonus":0,"Continent":"K46","ID":19156,"Name":"0040","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19156","ServerKey":"pl181","X":615,"Y":421},{"Bonus":0,"Continent":"K65","ID":19157,"Name":"0368","PlayerID":698659980,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19157","ServerKey":"pl181","X":561,"Y":624},{"Bonus":0,"Continent":"K53","ID":19158,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19158","ServerKey":"pl181","X":362,"Y":501},{"Bonus":0,"Continent":"K65","ID":19159,"Name":"SSJ 027","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19159","ServerKey":"pl181","X":513,"Y":638},{"Bonus":0,"Continent":"K56","ID":19160,"Name":"057","PlayerID":698786826,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19160","ServerKey":"pl181","X":608,"Y":582},{"Bonus":0,"Continent":"K65","ID":19162,"Name":"SSJ 022","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19162","ServerKey":"pl181","X":505,"Y":640},{"Bonus":0,"Continent":"K64","ID":19163,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19163","ServerKey":"pl181","X":492,"Y":639},{"Bonus":0,"Continent":"K53","ID":19164,"Name":"Pobozowisko","PlayerID":699513260,"Points":10046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19164","ServerKey":"pl181","X":397,"Y":591},{"Bonus":0,"Continent":"K46","ID":19165,"Name":"#061.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19165","ServerKey":"pl181","X":620,"Y":436},{"Bonus":0,"Continent":"K34","ID":19166,"Name":"013","PlayerID":849027025,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19166","ServerKey":"pl181","X":429,"Y":384},{"Bonus":0,"Continent":"K34","ID":19167,"Name":"[0092]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19167","ServerKey":"pl181","X":417,"Y":394},{"Bonus":0,"Continent":"K53","ID":19168,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19168","ServerKey":"pl181","X":360,"Y":507},{"Bonus":0,"Continent":"K43","ID":19169,"Name":"A0098","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19169","ServerKey":"pl181","X":366,"Y":488},{"Bonus":0,"Continent":"K64","ID":19171,"Name":"[003]","PlayerID":698585370,"Points":10530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19171","ServerKey":"pl181","X":461,"Y":634},{"Bonus":0,"Continent":"K46","ID":19172,"Name":"023 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19172","ServerKey":"pl181","X":631,"Y":457},{"Bonus":0,"Continent":"K65","ID":19173,"Name":"019","PlayerID":699878511,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19173","ServerKey":"pl181","X":500,"Y":635},{"Bonus":0,"Continent":"K64","ID":19174,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19174","ServerKey":"pl181","X":423,"Y":612},{"Bonus":0,"Continent":"K35","ID":19175,"Name":"067","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19175","ServerKey":"pl181","X":552,"Y":394},{"Bonus":0,"Continent":"K65","ID":19176,"Name":"SSJ 030","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19176","ServerKey":"pl181","X":506,"Y":639},{"Bonus":0,"Continent":"K65","ID":19177,"Name":"0374","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19177","ServerKey":"pl181","X":564,"Y":624},{"Bonus":0,"Continent":"K43","ID":19178,"Name":"006","PlayerID":848921536,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19178","ServerKey":"pl181","X":388,"Y":420},{"Bonus":0,"Continent":"K64","ID":19179,"Name":"A019","PlayerID":699383279,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19179","ServerKey":"pl181","X":471,"Y":635},{"Bonus":0,"Continent":"K64","ID":19180,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19180","ServerKey":"pl181","X":498,"Y":635},{"Bonus":0,"Continent":"K53","ID":19181,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19181","ServerKey":"pl181","X":388,"Y":583},{"Bonus":0,"Continent":"K65","ID":19182,"Name":"SSJ 042","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19182","ServerKey":"pl181","X":508,"Y":639},{"Bonus":0,"Continent":"K34","ID":19183,"Name":"c masarniaqqqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":8248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19183","ServerKey":"pl181","X":418,"Y":387},{"Bonus":1,"Continent":"K53","ID":19184,"Name":"Myk i do kieszonki","PlayerID":8908002,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19184","ServerKey":"pl181","X":367,"Y":542},{"Bonus":0,"Continent":"K54","ID":19185,"Name":"Pobozowisko","PlayerID":699513260,"Points":8363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19185","ServerKey":"pl181","X":406,"Y":595},{"Bonus":0,"Continent":"K34","ID":19186,"Name":"0063","PlayerID":699431255,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19186","ServerKey":"pl181","X":460,"Y":367},{"Bonus":0,"Continent":"K34","ID":19187,"Name":"c 00449","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19187","ServerKey":"pl181","X":412,"Y":392},{"Bonus":0,"Continent":"K46","ID":19188,"Name":"007 Legio I Noricorum","PlayerID":699878150,"Points":6029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19188","ServerKey":"pl181","X":638,"Y":490},{"Bonus":2,"Continent":"K43","ID":19189,"Name":"A0205","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19189","ServerKey":"pl181","X":365,"Y":480},{"Bonus":0,"Continent":"K43","ID":19190,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19190","ServerKey":"pl181","X":373,"Y":448},{"Bonus":0,"Continent":"K65","ID":19191,"Name":"0044","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19191","ServerKey":"pl181","X":536,"Y":635},{"Bonus":0,"Continent":"K35","ID":19192,"Name":"B 002","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19192","ServerKey":"pl181","X":596,"Y":398},{"Bonus":0,"Continent":"K34","ID":19193,"Name":"c mordownia","PlayerID":3909522,"Points":7936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19193","ServerKey":"pl181","X":416,"Y":389},{"Bonus":0,"Continent":"K65","ID":19194,"Name":"028","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19194","ServerKey":"pl181","X":593,"Y":602},{"Bonus":0,"Continent":"K65","ID":19195,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19195","ServerKey":"pl181","X":537,"Y":630},{"Bonus":0,"Continent":"K43","ID":19196,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19196","ServerKey":"pl181","X":372,"Y":445},{"Bonus":0,"Continent":"K56","ID":19197,"Name":"Wioska Apfel","PlayerID":849080260,"Points":1776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19197","ServerKey":"pl181","X":601,"Y":589},{"Bonus":0,"Continent":"K53","ID":19198,"Name":"070","PlayerID":6853693,"Points":8021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19198","ServerKey":"pl181","X":367,"Y":531},{"Bonus":0,"Continent":"K56","ID":19199,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19199","ServerKey":"pl181","X":630,"Y":537},{"Bonus":0,"Continent":"K53","ID":19200,"Name":"071 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19200","ServerKey":"pl181","X":378,"Y":562},{"Bonus":0,"Continent":"K43","ID":19201,"Name":"A0113","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19201","ServerKey":"pl181","X":366,"Y":493},{"Bonus":0,"Continent":"K65","ID":19202,"Name":"kathare","PlayerID":873575,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19202","ServerKey":"pl181","X":554,"Y":629},{"Bonus":0,"Continent":"K43","ID":19203,"Name":"A0182","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19203","ServerKey":"pl181","X":359,"Y":476},{"Bonus":0,"Continent":"K46","ID":19204,"Name":"001.","PlayerID":849094609,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19204","ServerKey":"pl181","X":639,"Y":477},{"Bonus":0,"Continent":"K35","ID":19205,"Name":"016.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19205","ServerKey":"pl181","X":571,"Y":385},{"Bonus":0,"Continent":"K43","ID":19206,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19206","ServerKey":"pl181","X":394,"Y":416},{"Bonus":0,"Continent":"K53","ID":19207,"Name":"041","PlayerID":6853693,"Points":5692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19207","ServerKey":"pl181","X":364,"Y":520},{"Bonus":9,"Continent":"K65","ID":19208,"Name":"0005","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19208","ServerKey":"pl181","X":565,"Y":620},{"Bonus":0,"Continent":"K56","ID":19209,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19209","ServerKey":"pl181","X":638,"Y":524},{"Bonus":0,"Continent":"K56","ID":19210,"Name":"Nowa 12","PlayerID":698702991,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19210","ServerKey":"pl181","X":621,"Y":567},{"Bonus":0,"Continent":"K44","ID":19211,"Name":"052","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19211","ServerKey":"pl181","X":411,"Y":486},{"Bonus":0,"Continent":"K46","ID":19212,"Name":"FB004","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19212","ServerKey":"pl181","X":640,"Y":493},{"Bonus":0,"Continent":"K53","ID":19214,"Name":"040","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19214","ServerKey":"pl181","X":364,"Y":529},{"Bonus":0,"Continent":"K43","ID":19215,"Name":"013","PlayerID":848921536,"Points":3154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19215","ServerKey":"pl181","X":389,"Y":424},{"Bonus":4,"Continent":"K35","ID":19216,"Name":"Taran","PlayerID":699170684,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19216","ServerKey":"pl181","X":555,"Y":377},{"Bonus":0,"Continent":"K56","ID":19217,"Name":"009","PlayerID":699573053,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19217","ServerKey":"pl181","X":603,"Y":501},{"Bonus":0,"Continent":"K56","ID":19218,"Name":"B.035","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19218","ServerKey":"pl181","X":640,"Y":503},{"Bonus":0,"Continent":"K53","ID":19219,"Name":"Pobozowisko","PlayerID":699513260,"Points":10665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19219","ServerKey":"pl181","X":396,"Y":588},{"Bonus":0,"Continent":"K35","ID":19220,"Name":"A READY","PlayerID":699759128,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19220","ServerKey":"pl181","X":589,"Y":399},{"Bonus":0,"Continent":"K46","ID":19221,"Name":"B005","PlayerID":699761749,"Points":8129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19221","ServerKey":"pl181","X":603,"Y":410},{"Bonus":0,"Continent":"K65","ID":19222,"Name":"OZDR","PlayerID":2665207,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19222","ServerKey":"pl181","X":521,"Y":638},{"Bonus":0,"Continent":"K45","ID":19223,"Name":"037","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19223","ServerKey":"pl181","X":590,"Y":401},{"Bonus":0,"Continent":"K56","ID":19224,"Name":"Nowa 13","PlayerID":698702991,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19224","ServerKey":"pl181","X":618,"Y":575},{"Bonus":0,"Continent":"K35","ID":19226,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19226","ServerKey":"pl181","X":503,"Y":360},{"Bonus":0,"Continent":"K65","ID":19227,"Name":"0244","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19227","ServerKey":"pl181","X":535,"Y":635},{"Bonus":0,"Continent":"K53","ID":19228,"Name":"054","PlayerID":8908002,"Points":5626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19228","ServerKey":"pl181","X":366,"Y":540},{"Bonus":0,"Continent":"K53","ID":19229,"Name":"039","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19229","ServerKey":"pl181","X":364,"Y":527},{"Bonus":0,"Continent":"K46","ID":19230,"Name":"Jehu_Kingdom_43","PlayerID":8785314,"Points":9373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19230","ServerKey":"pl181","X":634,"Y":463},{"Bonus":0,"Continent":"K64","ID":19231,"Name":"064 OZDR","PlayerID":699336777,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19231","ServerKey":"pl181","X":458,"Y":628},{"Bonus":0,"Continent":"K53","ID":19232,"Name":"56. Wioska 56","PlayerID":849091769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19232","ServerKey":"pl181","X":376,"Y":561},{"Bonus":0,"Continent":"K64","ID":19233,"Name":"Ave Why!","PlayerID":8729672,"Points":7836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19233","ServerKey":"pl181","X":440,"Y":621},{"Bonus":0,"Continent":"K65","ID":19234,"Name":"~~033~~","PlayerID":7829201,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19234","ServerKey":"pl181","X":595,"Y":600},{"Bonus":0,"Continent":"K65","ID":19235,"Name":"Aqueduct 1","PlayerID":8199417,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19235","ServerKey":"pl181","X":528,"Y":631},{"Bonus":7,"Continent":"K56","ID":19236,"Name":"0023 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19236","ServerKey":"pl181","X":630,"Y":553},{"Bonus":0,"Continent":"K35","ID":19237,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19237","ServerKey":"pl181","X":507,"Y":364},{"Bonus":0,"Continent":"K46","ID":19238,"Name":"011 B","PlayerID":699718269,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19238","ServerKey":"pl181","X":627,"Y":446},{"Bonus":0,"Continent":"K64","ID":19239,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19239","ServerKey":"pl181","X":436,"Y":620},{"Bonus":0,"Continent":"K43","ID":19240,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19240","ServerKey":"pl181","X":369,"Y":465},{"Bonus":0,"Continent":"K43","ID":19241,"Name":"Westcoast.095","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19241","ServerKey":"pl181","X":392,"Y":419},{"Bonus":0,"Continent":"K46","ID":19242,"Name":"010 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19242","ServerKey":"pl181","X":631,"Y":462},{"Bonus":0,"Continent":"K34","ID":19244,"Name":"061","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19244","ServerKey":"pl181","X":481,"Y":366},{"Bonus":0,"Continent":"K43","ID":19245,"Name":"A0099","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19245","ServerKey":"pl181","X":362,"Y":490},{"Bonus":0,"Continent":"K46","ID":19246,"Name":"038. Salmantica","PlayerID":849091866,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19246","ServerKey":"pl181","X":632,"Y":457},{"Bonus":0,"Continent":"K53","ID":19247,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19247","ServerKey":"pl181","X":361,"Y":507},{"Bonus":0,"Continent":"K65","ID":19248,"Name":"0373","PlayerID":698659980,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19248","ServerKey":"pl181","X":563,"Y":624},{"Bonus":0,"Continent":"K46","ID":19249,"Name":"*0030 Baraki","PlayerID":8459255,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19249","ServerKey":"pl181","X":620,"Y":439},{"Bonus":0,"Continent":"K34","ID":19250,"Name":"K34 - [108] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19250","ServerKey":"pl181","X":451,"Y":372},{"Bonus":0,"Continent":"K53","ID":19252,"Name":"068","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19252","ServerKey":"pl181","X":361,"Y":511},{"Bonus":0,"Continent":"K43","ID":19253,"Name":"014","PlayerID":848921536,"Points":4034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19253","ServerKey":"pl181","X":389,"Y":418},{"Bonus":0,"Continent":"K46","ID":19254,"Name":"021 - Badalona","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19254","ServerKey":"pl181","X":639,"Y":486},{"Bonus":0,"Continent":"K65","ID":19255,"Name":"HORUS+","PlayerID":7756002,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19255","ServerKey":"pl181","X":524,"Y":637},{"Bonus":0,"Continent":"K35","ID":19256,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19256","ServerKey":"pl181","X":510,"Y":361},{"Bonus":0,"Continent":"K64","ID":19257,"Name":"0001 Wioska Koloalu","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19257","ServerKey":"pl181","X":425,"Y":616},{"Bonus":0,"Continent":"K53","ID":19258,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19258","ServerKey":"pl181","X":373,"Y":542},{"Bonus":0,"Continent":"K46","ID":19259,"Name":"015 | PALESTINA","PlayerID":9228039,"Points":8764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19259","ServerKey":"pl181","X":633,"Y":464},{"Bonus":0,"Continent":"K43","ID":19260,"Name":"::: C :::","PlayerID":848917570,"Points":4302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19260","ServerKey":"pl181","X":365,"Y":477},{"Bonus":0,"Continent":"K64","ID":19262,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19262","ServerKey":"pl181","X":420,"Y":616},{"Bonus":0,"Continent":"K46","ID":19263,"Name":"088. Messambria","PlayerID":849091866,"Points":8671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19263","ServerKey":"pl181","X":619,"Y":434},{"Bonus":0,"Continent":"K43","ID":19264,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19264","ServerKey":"pl181","X":374,"Y":444},{"Bonus":0,"Continent":"K35","ID":19265,"Name":"029 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19265","ServerKey":"pl181","X":540,"Y":363},{"Bonus":0,"Continent":"K46","ID":19266,"Name":"Jan 09 Wuking K","PlayerID":879782,"Points":9436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19266","ServerKey":"pl181","X":634,"Y":464},{"Bonus":0,"Continent":"K44","ID":19267,"Name":"PRO8L3M","PlayerID":7491093,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19267","ServerKey":"pl181","X":412,"Y":494},{"Bonus":0,"Continent":"K34","ID":19268,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19268","ServerKey":"pl181","X":420,"Y":389},{"Bonus":0,"Continent":"K64","ID":19269,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":9903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19269","ServerKey":"pl181","X":494,"Y":638},{"Bonus":0,"Continent":"K65","ID":19271,"Name":"Wioska Szyderczy Promil 2","PlayerID":8627359,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19271","ServerKey":"pl181","X":572,"Y":616},{"Bonus":1,"Continent":"K53","ID":19272,"Name":"Wioska","PlayerID":2443031,"Points":3081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19272","ServerKey":"pl181","X":369,"Y":552},{"Bonus":0,"Continent":"K53","ID":19273,"Name":"015","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19273","ServerKey":"pl181","X":369,"Y":533},{"Bonus":0,"Continent":"K34","ID":19274,"Name":"079","PlayerID":698739350,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19274","ServerKey":"pl181","X":482,"Y":362},{"Bonus":0,"Continent":"K46","ID":19275,"Name":"Gattacka","PlayerID":699298370,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19275","ServerKey":"pl181","X":609,"Y":411},{"Bonus":0,"Continent":"K46","ID":19276,"Name":"019 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19276","ServerKey":"pl181","X":632,"Y":454},{"Bonus":0,"Continent":"K53","ID":19277,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":9387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19277","ServerKey":"pl181","X":365,"Y":505},{"Bonus":0,"Continent":"K53","ID":19278,"Name":"R007","PlayerID":8607734,"Points":6943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19278","ServerKey":"pl181","X":388,"Y":573},{"Bonus":0,"Continent":"K64","ID":19279,"Name":"061","PlayerID":849084985,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19279","ServerKey":"pl181","X":438,"Y":626},{"Bonus":0,"Continent":"K43","ID":19280,"Name":"7.62 mm","PlayerID":699777234,"Points":1473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19280","ServerKey":"pl181","X":377,"Y":438},{"Bonus":0,"Continent":"K46","ID":19281,"Name":"009 Legio I Italica","PlayerID":699878150,"Points":4372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19281","ServerKey":"pl181","X":639,"Y":491},{"Bonus":0,"Continent":"K35","ID":19282,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19282","ServerKey":"pl181","X":563,"Y":381},{"Bonus":0,"Continent":"K64","ID":19283,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19283","ServerKey":"pl181","X":495,"Y":639},{"Bonus":0,"Continent":"K65","ID":19284,"Name":"OZDR","PlayerID":2665207,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19284","ServerKey":"pl181","X":520,"Y":639},{"Bonus":0,"Continent":"K43","ID":19285,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19285","ServerKey":"pl181","X":372,"Y":452},{"Bonus":0,"Continent":"K43","ID":19286,"Name":"A0100","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19286","ServerKey":"pl181","X":361,"Y":494},{"Bonus":0,"Continent":"K64","ID":19287,"Name":"A07 Wioska barbarzyƄska","PlayerID":849037407,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19287","ServerKey":"pl181","X":464,"Y":631},{"Bonus":0,"Continent":"K46","ID":19288,"Name":"074. Helgrind","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19288","ServerKey":"pl181","X":624,"Y":437},{"Bonus":0,"Continent":"K53","ID":19289,"Name":"032","PlayerID":8908002,"Points":9237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19289","ServerKey":"pl181","X":367,"Y":543},{"Bonus":0,"Continent":"K46","ID":19290,"Name":"BARBA","PlayerID":698613394,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19290","ServerKey":"pl181","X":639,"Y":483},{"Bonus":0,"Continent":"K56","ID":19291,"Name":"051 Vallenar","PlayerID":699272880,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19291","ServerKey":"pl181","X":610,"Y":578},{"Bonus":0,"Continent":"K56","ID":19292,"Name":"040","PlayerID":698786826,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19292","ServerKey":"pl181","X":609,"Y":584},{"Bonus":0,"Continent":"K34","ID":19293,"Name":"Konfederacja","PlayerID":848915730,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19293","ServerKey":"pl181","X":455,"Y":371},{"Bonus":0,"Continent":"K34","ID":19294,"Name":"Bagdad","PlayerID":8847546,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19294","ServerKey":"pl181","X":426,"Y":384},{"Bonus":0,"Continent":"K56","ID":19295,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19295","ServerKey":"pl181","X":636,"Y":525},{"Bonus":0,"Continent":"K64","ID":19297,"Name":"036 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19297","ServerKey":"pl181","X":473,"Y":633},{"Bonus":0,"Continent":"K65","ID":19298,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19298","ServerKey":"pl181","X":531,"Y":628},{"Bonus":0,"Continent":"K64","ID":19299,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":9097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19299","ServerKey":"pl181","X":429,"Y":616},{"Bonus":0,"Continent":"K44","ID":19300,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19300","ServerKey":"pl181","X":406,"Y":400},{"Bonus":0,"Continent":"K34","ID":19301,"Name":"Wioska Kuba Takine","PlayerID":699796330,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19301","ServerKey":"pl181","X":423,"Y":383},{"Bonus":0,"Continent":"K65","ID":19302,"Name":"Dziupla .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19302","ServerKey":"pl181","X":571,"Y":619},{"Bonus":0,"Continent":"K53","ID":19303,"Name":"Pobozowisko","PlayerID":699513260,"Points":8304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19303","ServerKey":"pl181","X":396,"Y":586},{"Bonus":0,"Continent":"K65","ID":19304,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19304","ServerKey":"pl181","X":528,"Y":637},{"Bonus":0,"Continent":"K64","ID":19305,"Name":"026","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19305","ServerKey":"pl181","X":472,"Y":631},{"Bonus":0,"Continent":"K64","ID":19306,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":7043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19306","ServerKey":"pl181","X":433,"Y":622},{"Bonus":0,"Continent":"K65","ID":19308,"Name":"sony911","PlayerID":1415009,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19308","ServerKey":"pl181","X":580,"Y":612},{"Bonus":0,"Continent":"K64","ID":19309,"Name":"Ave Why!","PlayerID":8729672,"Points":8316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19309","ServerKey":"pl181","X":448,"Y":626},{"Bonus":0,"Continent":"K34","ID":19310,"Name":"Molinia coerulea","PlayerID":699883079,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19310","ServerKey":"pl181","X":495,"Y":360},{"Bonus":0,"Continent":"K46","ID":19312,"Name":"036.","PlayerID":849094609,"Points":8214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19312","ServerKey":"pl181","X":639,"Y":479},{"Bonus":0,"Continent":"K56","ID":19313,"Name":"Nowa 24","PlayerID":698702991,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19313","ServerKey":"pl181","X":614,"Y":575},{"Bonus":0,"Continent":"K46","ID":19314,"Name":"*0034 Baraki","PlayerID":8459255,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19314","ServerKey":"pl181","X":619,"Y":439},{"Bonus":0,"Continent":"K46","ID":19315,"Name":"028.","PlayerID":849094609,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19315","ServerKey":"pl181","X":639,"Y":493},{"Bonus":0,"Continent":"K64","ID":19316,"Name":"A01 Plebania","PlayerID":849037407,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19316","ServerKey":"pl181","X":464,"Y":632},{"Bonus":0,"Continent":"K56","ID":19317,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19317","ServerKey":"pl181","X":634,"Y":531},{"Bonus":0,"Continent":"K65","ID":19318,"Name":"SSJ 070","PlayerID":699054373,"Points":8431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19318","ServerKey":"pl181","X":504,"Y":640},{"Bonus":0,"Continent":"K34","ID":19319,"Name":"0059","PlayerID":699431255,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19319","ServerKey":"pl181","X":454,"Y":367},{"Bonus":0,"Continent":"K65","ID":19320,"Name":"!Inferno","PlayerID":606407,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19320","ServerKey":"pl181","X":508,"Y":607},{"Bonus":0,"Continent":"K55","ID":19322,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19322","ServerKey":"pl181","X":527,"Y":542},{"Bonus":0,"Continent":"K35","ID":19323,"Name":"Taran","PlayerID":699170684,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19323","ServerKey":"pl181","X":555,"Y":371},{"Bonus":0,"Continent":"K64","ID":19324,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19324","ServerKey":"pl181","X":493,"Y":637},{"Bonus":0,"Continent":"K45","ID":19326,"Name":"D009","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19326","ServerKey":"pl181","X":598,"Y":408},{"Bonus":0,"Continent":"K34","ID":19327,"Name":"yyyy","PlayerID":699883079,"Points":10028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19327","ServerKey":"pl181","X":496,"Y":360},{"Bonus":0,"Continent":"K53","ID":19328,"Name":"Pobozowisko","PlayerID":699513260,"Points":10657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19328","ServerKey":"pl181","X":383,"Y":578},{"Bonus":0,"Continent":"K53","ID":19329,"Name":"Brat447","PlayerID":699262350,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19329","ServerKey":"pl181","X":369,"Y":510},{"Bonus":0,"Continent":"K46","ID":19330,"Name":"015 - Santa Cruz de Tenerife","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19330","ServerKey":"pl181","X":636,"Y":487},{"Bonus":0,"Continent":"K43","ID":19331,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19331","ServerKey":"pl181","X":372,"Y":450},{"Bonus":0,"Continent":"K64","ID":19332,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19332","ServerKey":"pl181","X":498,"Y":641},{"Bonus":0,"Continent":"K53","ID":19333,"Name":"025","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19333","ServerKey":"pl181","X":364,"Y":534},{"Bonus":0,"Continent":"K35","ID":19334,"Name":".007.Alvaro","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19334","ServerKey":"pl181","X":559,"Y":373},{"Bonus":0,"Continent":"K65","ID":19337,"Name":"President s Office","PlayerID":8199417,"Points":11074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19337","ServerKey":"pl181","X":524,"Y":633},{"Bonus":0,"Continent":"K46","ID":19338,"Name":"011 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19338","ServerKey":"pl181","X":633,"Y":454},{"Bonus":0,"Continent":"K46","ID":19339,"Name":"034. Mamucium","PlayerID":849091866,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19339","ServerKey":"pl181","X":628,"Y":455},{"Bonus":0,"Continent":"K34","ID":19340,"Name":"VN Ging Freecss","PlayerID":699883079,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19340","ServerKey":"pl181","X":497,"Y":362},{"Bonus":0,"Continent":"K35","ID":19341,"Name":"C 023","PlayerID":6384450,"Points":6728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19341","ServerKey":"pl181","X":582,"Y":391},{"Bonus":0,"Continent":"K53","ID":19342,"Name":"Brat447","PlayerID":699262350,"Points":3024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19342","ServerKey":"pl181","X":366,"Y":515},{"Bonus":0,"Continent":"K35","ID":19343,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19343","ServerKey":"pl181","X":596,"Y":397},{"Bonus":0,"Continent":"K44","ID":19344,"Name":"Monetki","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19344","ServerKey":"pl181","X":477,"Y":419},{"Bonus":0,"Continent":"K53","ID":19345,"Name":"068 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19345","ServerKey":"pl181","X":378,"Y":561},{"Bonus":0,"Continent":"K43","ID":19346,"Name":"002. Wioska barbarzyƄska","PlayerID":698884287,"Points":9369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19346","ServerKey":"pl181","X":391,"Y":419},{"Bonus":0,"Continent":"K54","ID":19347,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19347","ServerKey":"pl181","X":401,"Y":599},{"Bonus":0,"Continent":"K64","ID":19348,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19348","ServerKey":"pl181","X":415,"Y":604},{"Bonus":0,"Continent":"K53","ID":19349,"Name":"067","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19349","ServerKey":"pl181","X":360,"Y":512},{"Bonus":7,"Continent":"K53","ID":19350,"Name":"016","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19350","ServerKey":"pl181","X":363,"Y":530},{"Bonus":0,"Continent":"K65","ID":19351,"Name":"MoĆŒe coƛ pogram?","PlayerID":699698253,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19351","ServerKey":"pl181","X":506,"Y":606},{"Bonus":0,"Continent":"K35","ID":19352,"Name":"061","PlayerID":7271812,"Points":9143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19352","ServerKey":"pl181","X":586,"Y":391},{"Bonus":0,"Continent":"K34","ID":19353,"Name":"036","PlayerID":7462660,"Points":10638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19353","ServerKey":"pl181","X":425,"Y":386},{"Bonus":0,"Continent":"K44","ID":19354,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19354","ServerKey":"pl181","X":473,"Y":426},{"Bonus":0,"Continent":"K46","ID":19355,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19355","ServerKey":"pl181","X":600,"Y":405},{"Bonus":0,"Continent":"K34","ID":19356,"Name":"[0103]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19356","ServerKey":"pl181","X":410,"Y":395},{"Bonus":0,"Continent":"K56","ID":19357,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19357","ServerKey":"pl181","X":605,"Y":587},{"Bonus":0,"Continent":"K64","ID":19358,"Name":"A02","PlayerID":849037407,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19358","ServerKey":"pl181","X":466,"Y":632},{"Bonus":0,"Continent":"K34","ID":19359,"Name":"Konfederacja","PlayerID":848915730,"Points":10874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19359","ServerKey":"pl181","X":448,"Y":369},{"Bonus":0,"Continent":"K56","ID":19360,"Name":"008","PlayerID":848899726,"Points":8387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19360","ServerKey":"pl181","X":624,"Y":561},{"Bonus":0,"Continent":"K43","ID":19361,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19361","ServerKey":"pl181","X":374,"Y":438},{"Bonus":0,"Continent":"K46","ID":19362,"Name":"090.","PlayerID":849094609,"Points":5002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19362","ServerKey":"pl181","X":634,"Y":486},{"Bonus":0,"Continent":"K34","ID":19363,"Name":"K34 - [018] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19363","ServerKey":"pl181","X":452,"Y":372},{"Bonus":0,"Continent":"K46","ID":19364,"Name":"B007","PlayerID":699761749,"Points":6196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19364","ServerKey":"pl181","X":601,"Y":403},{"Bonus":0,"Continent":"K34","ID":19365,"Name":"0054","PlayerID":699431255,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19365","ServerKey":"pl181","X":444,"Y":375},{"Bonus":0,"Continent":"K65","ID":19366,"Name":"#0011","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19366","ServerKey":"pl181","X":515,"Y":637},{"Bonus":0,"Continent":"K53","ID":19367,"Name":"29. Wioska 29","PlayerID":849091769,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19367","ServerKey":"pl181","X":372,"Y":550},{"Bonus":0,"Continent":"K43","ID":19368,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19368","ServerKey":"pl181","X":374,"Y":437},{"Bonus":3,"Continent":"K56","ID":19369,"Name":"020","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19369","ServerKey":"pl181","X":636,"Y":533},{"Bonus":0,"Continent":"K64","ID":19370,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19370","ServerKey":"pl181","X":420,"Y":609},{"Bonus":0,"Continent":"K65","ID":19371,"Name":"#0041","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19371","ServerKey":"pl181","X":545,"Y":633},{"Bonus":0,"Continent":"K64","ID":19372,"Name":"0199","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19372","ServerKey":"pl181","X":453,"Y":611},{"Bonus":0,"Continent":"K35","ID":19373,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19373","ServerKey":"pl181","X":531,"Y":369},{"Bonus":0,"Continent":"K64","ID":19374,"Name":"A30 MARUDER","PlayerID":849037407,"Points":10197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19374","ServerKey":"pl181","X":464,"Y":629},{"Bonus":0,"Continent":"K53","ID":19375,"Name":"R004","PlayerID":8607734,"Points":8924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19375","ServerKey":"pl181","X":384,"Y":575},{"Bonus":0,"Continent":"K34","ID":19377,"Name":"0127","PlayerID":699431255,"Points":8559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19377","ServerKey":"pl181","X":436,"Y":376},{"Bonus":0,"Continent":"K56","ID":19378,"Name":"018","PlayerID":698786826,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19378","ServerKey":"pl181","X":600,"Y":591},{"Bonus":0,"Continent":"K35","ID":19379,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19379","ServerKey":"pl181","X":511,"Y":359},{"Bonus":0,"Continent":"K53","ID":19380,"Name":"-003-","PlayerID":699097885,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19380","ServerKey":"pl181","X":393,"Y":592},{"Bonus":0,"Continent":"K65","ID":19381,"Name":"Dzisiaj trening .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19381","ServerKey":"pl181","X":570,"Y":621},{"Bonus":0,"Continent":"K43","ID":19382,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19382","ServerKey":"pl181","X":379,"Y":439},{"Bonus":0,"Continent":"K65","ID":19383,"Name":"0370","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19383","ServerKey":"pl181","X":562,"Y":627},{"Bonus":0,"Continent":"K55","ID":19384,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19384","ServerKey":"pl181","X":532,"Y":543},{"Bonus":0,"Continent":"K65","ID":19385,"Name":"sas","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19385","ServerKey":"pl181","X":559,"Y":625},{"Bonus":0,"Continent":"K43","ID":19386,"Name":"No to hetman","PlayerID":6258092,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19386","ServerKey":"pl181","X":368,"Y":470},{"Bonus":0,"Continent":"K64","ID":19387,"Name":"071","PlayerID":849084985,"Points":6445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19387","ServerKey":"pl181","X":437,"Y":623},{"Bonus":3,"Continent":"K46","ID":19388,"Name":"037 Nadindel","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19388","ServerKey":"pl181","X":625,"Y":451},{"Bonus":0,"Continent":"K56","ID":19389,"Name":"028. Tentyra","PlayerID":849091866,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19389","ServerKey":"pl181","X":626,"Y":558},{"Bonus":0,"Continent":"K34","ID":19390,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19390","ServerKey":"pl181","X":419,"Y":393},{"Bonus":0,"Continent":"K56","ID":19391,"Name":"=031= Wioska barbarzyƄska","PlayerID":3781794,"Points":8242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19391","ServerKey":"pl181","X":624,"Y":560},{"Bonus":0,"Continent":"K64","ID":19392,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":8075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19392","ServerKey":"pl181","X":421,"Y":615},{"Bonus":0,"Continent":"K53","ID":19393,"Name":"15. Wioska 15","PlayerID":849091769,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19393","ServerKey":"pl181","X":371,"Y":556},{"Bonus":0,"Continent":"K43","ID":19394,"Name":"A0101","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19394","ServerKey":"pl181","X":364,"Y":488},{"Bonus":0,"Continent":"K43","ID":19395,"Name":"A0229","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19395","ServerKey":"pl181","X":367,"Y":464},{"Bonus":0,"Continent":"K35","ID":19396,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19396","ServerKey":"pl181","X":513,"Y":366},{"Bonus":0,"Continent":"K53","ID":19397,"Name":"055","PlayerID":8908002,"Points":4981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19397","ServerKey":"pl181","X":366,"Y":543},{"Bonus":0,"Continent":"K53","ID":19398,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19398","ServerKey":"pl181","X":362,"Y":508},{"Bonus":0,"Continent":"K34","ID":19399,"Name":"[B]_[204] Dejv.oldplyr","PlayerID":699380607,"Points":6113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19399","ServerKey":"pl181","X":432,"Y":382},{"Bonus":0,"Continent":"K34","ID":19400,"Name":"c piekarnia","PlayerID":3909522,"Points":9213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19400","ServerKey":"pl181","X":418,"Y":386},{"Bonus":0,"Continent":"K46","ID":19401,"Name":"Wioska (036)","PlayerID":698232227,"Points":4975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19401","ServerKey":"pl181","X":635,"Y":461},{"Bonus":0,"Continent":"K43","ID":19402,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":7250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19402","ServerKey":"pl181","X":370,"Y":448},{"Bonus":0,"Continent":"K53","ID":19403,"Name":"034","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19403","ServerKey":"pl181","X":367,"Y":532},{"Bonus":0,"Continent":"K43","ID":19404,"Name":"015","PlayerID":848921536,"Points":3516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19404","ServerKey":"pl181","X":389,"Y":414},{"Bonus":0,"Continent":"K34","ID":19405,"Name":"062","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19405","ServerKey":"pl181","X":469,"Y":365},{"Bonus":0,"Continent":"K46","ID":19406,"Name":"090. Toletum","PlayerID":849091866,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19406","ServerKey":"pl181","X":617,"Y":432},{"Bonus":0,"Continent":"K34","ID":19407,"Name":"VN Cao Cao","PlayerID":699883079,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19407","ServerKey":"pl181","X":462,"Y":365},{"Bonus":0,"Continent":"K53","ID":19408,"Name":"030 181","PlayerID":698807570,"Points":8238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19408","ServerKey":"pl181","X":360,"Y":504},{"Bonus":0,"Continent":"K56","ID":19409,"Name":"Szlachcic PóƂnoc 002","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19409","ServerKey":"pl181","X":637,"Y":512},{"Bonus":0,"Continent":"K64","ID":19411,"Name":"Ave Why!","PlayerID":698585370,"Points":8134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19411","ServerKey":"pl181","X":464,"Y":633},{"Bonus":0,"Continent":"K65","ID":19412,"Name":"kathare","PlayerID":873575,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19412","ServerKey":"pl181","X":556,"Y":625},{"Bonus":0,"Continent":"K64","ID":19413,"Name":"A22 Wioska barbarzyƄska","PlayerID":849037407,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19413","ServerKey":"pl181","X":456,"Y":630},{"Bonus":0,"Continent":"K56","ID":19414,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":5241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19414","ServerKey":"pl181","X":623,"Y":566},{"Bonus":0,"Continent":"K56","ID":19415,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19415","ServerKey":"pl181","X":636,"Y":531},{"Bonus":0,"Continent":"K34","ID":19416,"Name":"K34 - [006] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19416","ServerKey":"pl181","X":444,"Y":371},{"Bonus":0,"Continent":"K35","ID":19417,"Name":"209","PlayerID":849064752,"Points":5277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19417","ServerKey":"pl181","X":577,"Y":386},{"Bonus":0,"Continent":"K65","ID":19418,"Name":"#0012","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19418","ServerKey":"pl181","X":516,"Y":637},{"Bonus":0,"Continent":"K53","ID":19420,"Name":"022","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19420","ServerKey":"pl181","X":362,"Y":526},{"Bonus":0,"Continent":"K65","ID":19421,"Name":"Village","PlayerID":849094067,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19421","ServerKey":"pl181","X":529,"Y":631},{"Bonus":0,"Continent":"K34","ID":19422,"Name":"Konfederacja","PlayerID":848915730,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19422","ServerKey":"pl181","X":457,"Y":367},{"Bonus":0,"Continent":"K46","ID":19423,"Name":"086. Faesulae","PlayerID":849091866,"Points":9176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19423","ServerKey":"pl181","X":621,"Y":436},{"Bonus":0,"Continent":"K53","ID":19424,"Name":"018","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19424","ServerKey":"pl181","X":368,"Y":540},{"Bonus":0,"Continent":"K35","ID":19425,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19425","ServerKey":"pl181","X":526,"Y":363},{"Bonus":0,"Continent":"K34","ID":19426,"Name":"120","PlayerID":699761749,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19426","ServerKey":"pl181","X":494,"Y":361},{"Bonus":0,"Continent":"K35","ID":19427,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19427","ServerKey":"pl181","X":533,"Y":365},{"Bonus":0,"Continent":"K65","ID":19428,"Name":"#0016","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19428","ServerKey":"pl181","X":518,"Y":634},{"Bonus":0,"Continent":"K35","ID":19429,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19429","ServerKey":"pl181","X":525,"Y":365},{"Bonus":0,"Continent":"K34","ID":19430,"Name":"Bagdad","PlayerID":8847546,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19430","ServerKey":"pl181","X":499,"Y":362},{"Bonus":0,"Continent":"K56","ID":19431,"Name":"Sebo1303","PlayerID":7973893,"Points":6605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19431","ServerKey":"pl181","X":617,"Y":575},{"Bonus":0,"Continent":"K35","ID":19432,"Name":"0016","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19432","ServerKey":"pl181","X":568,"Y":380},{"Bonus":0,"Continent":"K64","ID":19433,"Name":"0212","PlayerID":699697558,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19433","ServerKey":"pl181","X":421,"Y":617},{"Bonus":0,"Continent":"K53","ID":19434,"Name":"056","PlayerID":8908002,"Points":4400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19434","ServerKey":"pl181","X":367,"Y":538},{"Bonus":0,"Continent":"K46","ID":19435,"Name":"Gattacka","PlayerID":699298370,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19435","ServerKey":"pl181","X":608,"Y":410},{"Bonus":0,"Continent":"K43","ID":19436,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19436","ServerKey":"pl181","X":377,"Y":436},{"Bonus":0,"Continent":"K53","ID":19437,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19437","ServerKey":"pl181","X":373,"Y":548},{"Bonus":0,"Continent":"K65","ID":19438,"Name":"#0015","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19438","ServerKey":"pl181","X":546,"Y":629},{"Bonus":0,"Continent":"K46","ID":19439,"Name":"021 Belatona","PlayerID":8337151,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19439","ServerKey":"pl181","X":625,"Y":434},{"Bonus":0,"Continent":"K65","ID":19440,"Name":"sony911","PlayerID":1415009,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19440","ServerKey":"pl181","X":576,"Y":616},{"Bonus":0,"Continent":"K53","ID":19441,"Name":"ZachĂłd - 014","PlayerID":225023,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19441","ServerKey":"pl181","X":388,"Y":581},{"Bonus":0,"Continent":"K45","ID":19442,"Name":"154","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19442","ServerKey":"pl181","X":593,"Y":400},{"Bonus":0,"Continent":"K43","ID":19443,"Name":"Westcoast.116","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19443","ServerKey":"pl181","X":376,"Y":433},{"Bonus":0,"Continent":"K53","ID":19444,"Name":"09. Wioska 9","PlayerID":849091769,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19444","ServerKey":"pl181","X":374,"Y":553},{"Bonus":0,"Continent":"K46","ID":19445,"Name":"030. Chersonesus","PlayerID":849091866,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19445","ServerKey":"pl181","X":630,"Y":449},{"Bonus":0,"Continent":"K34","ID":19446,"Name":"0129","PlayerID":699431255,"Points":8973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19446","ServerKey":"pl181","X":436,"Y":374},{"Bonus":0,"Continent":"K56","ID":19448,"Name":"018","PlayerID":8428196,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19448","ServerKey":"pl181","X":628,"Y":542},{"Bonus":0,"Continent":"K35","ID":19449,"Name":"WOJSKO","PlayerID":7651093,"Points":3189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19449","ServerKey":"pl181","X":502,"Y":361},{"Bonus":6,"Continent":"K34","ID":19450,"Name":"K34 - [150] Before Land","PlayerID":699088769,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19450","ServerKey":"pl181","X":433,"Y":383},{"Bonus":0,"Continent":"K53","ID":19451,"Name":"065","PlayerID":6853693,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19451","ServerKey":"pl181","X":366,"Y":514},{"Bonus":0,"Continent":"K34","ID":19452,"Name":"K34 x016","PlayerID":698364331,"Points":6601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19452","ServerKey":"pl181","X":445,"Y":373},{"Bonus":0,"Continent":"K46","ID":19453,"Name":"033 Y13J","PlayerID":2135129,"Points":9300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19453","ServerKey":"pl181","X":639,"Y":494},{"Bonus":0,"Continent":"K46","ID":19454,"Name":"616|427 Wioska barbarzyƄska04","PlayerID":6822957,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19454","ServerKey":"pl181","X":616,"Y":427},{"Bonus":2,"Continent":"K64","ID":19455,"Name":"014","PlayerID":849084985,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19455","ServerKey":"pl181","X":442,"Y":625},{"Bonus":0,"Continent":"K43","ID":19456,"Name":"A0220","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19456","ServerKey":"pl181","X":369,"Y":467},{"Bonus":0,"Continent":"K65","ID":19457,"Name":"WB 01","PlayerID":8627359,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19457","ServerKey":"pl181","X":576,"Y":612},{"Bonus":0,"Continent":"K64","ID":19458,"Name":"0034 Executive Director","PlayerID":9060641,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19458","ServerKey":"pl181","X":416,"Y":607},{"Bonus":0,"Continent":"K43","ID":19459,"Name":"A0114","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19459","ServerKey":"pl181","X":365,"Y":489},{"Bonus":0,"Continent":"K56","ID":19460,"Name":"013","PlayerID":699099811,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19460","ServerKey":"pl181","X":614,"Y":579},{"Bonus":0,"Continent":"K34","ID":19461,"Name":"0053","PlayerID":699431255,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19461","ServerKey":"pl181","X":454,"Y":368},{"Bonus":0,"Continent":"K34","ID":19462,"Name":"c 00446","PlayerID":3909522,"Points":8206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19462","ServerKey":"pl181","X":414,"Y":389},{"Bonus":0,"Continent":"K46","ID":19463,"Name":"Wioska (025)","PlayerID":698232227,"Points":9529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19463","ServerKey":"pl181","X":638,"Y":472},{"Bonus":0,"Continent":"K34","ID":19464,"Name":"035","PlayerID":7462660,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19464","ServerKey":"pl181","X":426,"Y":387},{"Bonus":0,"Continent":"K34","ID":19465,"Name":"[0087]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19465","ServerKey":"pl181","X":415,"Y":394},{"Bonus":6,"Continent":"K64","ID":19466,"Name":"005","PlayerID":849084985,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19466","ServerKey":"pl181","X":444,"Y":625},{"Bonus":0,"Continent":"K65","ID":19467,"Name":"029","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19467","ServerKey":"pl181","X":589,"Y":605},{"Bonus":0,"Continent":"K34","ID":19468,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19468","ServerKey":"pl181","X":441,"Y":379},{"Bonus":0,"Continent":"K56","ID":19469,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19469","ServerKey":"pl181","X":612,"Y":584},{"Bonus":0,"Continent":"K64","ID":19470,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19470","ServerKey":"pl181","X":410,"Y":601},{"Bonus":5,"Continent":"K35","ID":19471,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19471","ServerKey":"pl181","X":516,"Y":364},{"Bonus":0,"Continent":"K64","ID":19472,"Name":"Ave Why!","PlayerID":8729672,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19472","ServerKey":"pl181","X":451,"Y":629},{"Bonus":0,"Continent":"K35","ID":19473,"Name":"XXXIV","PlayerID":698350371,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19473","ServerKey":"pl181","X":540,"Y":371},{"Bonus":6,"Continent":"K65","ID":19474,"Name":"|A22| naleƛniki z granatem","PlayerID":849006145,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19474","ServerKey":"pl181","X":500,"Y":639},{"Bonus":0,"Continent":"K35","ID":19476,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19476","ServerKey":"pl181","X":544,"Y":373},{"Bonus":0,"Continent":"K65","ID":19478,"Name":"005.","PlayerID":699695167,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19478","ServerKey":"pl181","X":559,"Y":621},{"Bonus":0,"Continent":"K54","ID":19479,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19479","ServerKey":"pl181","X":403,"Y":597},{"Bonus":0,"Continent":"K35","ID":19480,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19480","ServerKey":"pl181","X":507,"Y":362},{"Bonus":0,"Continent":"K53","ID":19481,"Name":"013","PlayerID":6853693,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19481","ServerKey":"pl181","X":370,"Y":551},{"Bonus":0,"Continent":"K64","ID":19482,"Name":"Jednak wolę gofry","PlayerID":6948793,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19482","ServerKey":"pl181","X":487,"Y":640},{"Bonus":0,"Continent":"K43","ID":19483,"Name":"003 VC Gangsta116 @","PlayerID":3108144,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19483","ServerKey":"pl181","X":396,"Y":408},{"Bonus":0,"Continent":"K43","ID":19484,"Name":"Armagedon","PlayerID":698884287,"Points":8712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19484","ServerKey":"pl181","X":390,"Y":419},{"Bonus":0,"Continent":"K46","ID":19485,"Name":"*0037 Baraki","PlayerID":8459255,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19485","ServerKey":"pl181","X":620,"Y":433},{"Bonus":0,"Continent":"K44","ID":19486,"Name":"Zeta Reticuli S","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19486","ServerKey":"pl181","X":406,"Y":402},{"Bonus":3,"Continent":"K43","ID":19487,"Name":"s4 Osada koczownikĂłw","PlayerID":7462660,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19487","ServerKey":"pl181","X":395,"Y":413},{"Bonus":0,"Continent":"K64","ID":19488,"Name":"[002]","PlayerID":698585370,"Points":10185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19488","ServerKey":"pl181","X":458,"Y":634},{"Bonus":0,"Continent":"K43","ID":19489,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19489","ServerKey":"pl181","X":372,"Y":441},{"Bonus":0,"Continent":"K46","ID":19490,"Name":"*0032 Baraki","PlayerID":8459255,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19490","ServerKey":"pl181","X":623,"Y":434},{"Bonus":0,"Continent":"K64","ID":19491,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19491","ServerKey":"pl181","X":404,"Y":602},{"Bonus":0,"Continent":"K35","ID":19492,"Name":"011. Temeria","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19492","ServerKey":"pl181","X":565,"Y":380},{"Bonus":0,"Continent":"K53","ID":19493,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":4941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19493","ServerKey":"pl181","X":387,"Y":581},{"Bonus":0,"Continent":"K34","ID":19494,"Name":"Lecymy DUR","PlayerID":6169408,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19494","ServerKey":"pl181","X":441,"Y":376},{"Bonus":0,"Continent":"K35","ID":19495,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19495","ServerKey":"pl181","X":562,"Y":376},{"Bonus":0,"Continent":"K65","ID":19496,"Name":"0131","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19496","ServerKey":"pl181","X":533,"Y":634},{"Bonus":0,"Continent":"K43","ID":19497,"Name":"A0183","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19497","ServerKey":"pl181","X":359,"Y":488},{"Bonus":0,"Continent":"K64","ID":19498,"Name":"076","PlayerID":699783765,"Points":5696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19498","ServerKey":"pl181","X":432,"Y":624},{"Bonus":0,"Continent":"K53","ID":19499,"Name":"045","PlayerID":8908002,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19499","ServerKey":"pl181","X":371,"Y":541},{"Bonus":6,"Continent":"K46","ID":19500,"Name":"Jehu_Kingdom_18_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19500","ServerKey":"pl181","X":636,"Y":475},{"Bonus":0,"Continent":"K64","ID":19501,"Name":"Pobozowisko","PlayerID":699513260,"Points":8758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19501","ServerKey":"pl181","X":408,"Y":605},{"Bonus":0,"Continent":"K53","ID":19502,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19502","ServerKey":"pl181","X":391,"Y":582},{"Bonus":0,"Continent":"K43","ID":19503,"Name":"Westcoast.097","PlayerID":848918380,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19503","ServerKey":"pl181","X":393,"Y":421},{"Bonus":0,"Continent":"K34","ID":19504,"Name":"116","PlayerID":699761749,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19504","ServerKey":"pl181","X":487,"Y":360},{"Bonus":0,"Continent":"K35","ID":19505,"Name":"C 001","PlayerID":6384450,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19505","ServerKey":"pl181","X":586,"Y":390},{"Bonus":0,"Continent":"K35","ID":19506,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19506","ServerKey":"pl181","X":550,"Y":369},{"Bonus":0,"Continent":"K35","ID":19507,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19507","ServerKey":"pl181","X":522,"Y":363},{"Bonus":0,"Continent":"K65","ID":19508,"Name":"0122","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19508","ServerKey":"pl181","X":534,"Y":635},{"Bonus":0,"Continent":"K35","ID":19509,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19509","ServerKey":"pl181","X":514,"Y":360},{"Bonus":0,"Continent":"K53","ID":19510,"Name":"Pobozowisko","PlayerID":699513260,"Points":10923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19510","ServerKey":"pl181","X":399,"Y":591},{"Bonus":0,"Continent":"K46","ID":19511,"Name":"011 - Valladolid","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19511","ServerKey":"pl181","X":635,"Y":485},{"Bonus":0,"Continent":"K43","ID":19512,"Name":"Dania","PlayerID":1746216,"Points":7746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19512","ServerKey":"pl181","X":386,"Y":426},{"Bonus":0,"Continent":"K34","ID":19513,"Name":"080","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19513","ServerKey":"pl181","X":482,"Y":363},{"Bonus":0,"Continent":"K54","ID":19514,"Name":"*Ateny_36","PlayerID":699333701,"Points":2354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19514","ServerKey":"pl181","X":466,"Y":521},{"Bonus":0,"Continent":"K64","ID":19515,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19515","ServerKey":"pl181","X":403,"Y":602},{"Bonus":0,"Continent":"K64","ID":19516,"Name":"022","PlayerID":699878511,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19516","ServerKey":"pl181","X":497,"Y":627},{"Bonus":0,"Continent":"K65","ID":19517,"Name":"#0025","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19517","ServerKey":"pl181","X":545,"Y":631},{"Bonus":0,"Continent":"K65","ID":19518,"Name":"0372","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19518","ServerKey":"pl181","X":563,"Y":626},{"Bonus":0,"Continent":"K64","ID":19519,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19519","ServerKey":"pl181","X":478,"Y":635},{"Bonus":0,"Continent":"K34","ID":19520,"Name":"0119","PlayerID":699431255,"Points":9163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19520","ServerKey":"pl181","X":434,"Y":377},{"Bonus":0,"Continent":"K45","ID":19521,"Name":"B 007","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19521","ServerKey":"pl181","X":596,"Y":403},{"Bonus":0,"Continent":"K55","ID":19522,"Name":"014. WiƂa","PlayerID":699703642,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19522","ServerKey":"pl181","X":510,"Y":566},{"Bonus":0,"Continent":"K46","ID":19523,"Name":"D005","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19523","ServerKey":"pl181","X":605,"Y":408},{"Bonus":0,"Continent":"K35","ID":19525,"Name":"0017","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19525","ServerKey":"pl181","X":569,"Y":380},{"Bonus":7,"Continent":"K53","ID":19526,"Name":"061","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19526","ServerKey":"pl181","X":359,"Y":510},{"Bonus":0,"Continent":"K65","ID":19527,"Name":"RTS 5","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19527","ServerKey":"pl181","X":573,"Y":614},{"Bonus":0,"Continent":"K35","ID":19528,"Name":"R-8","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19528","ServerKey":"pl181","X":562,"Y":374},{"Bonus":0,"Continent":"K46","ID":19529,"Name":"087. Iaurinum","PlayerID":849091866,"Points":8643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19529","ServerKey":"pl181","X":627,"Y":437},{"Bonus":0,"Continent":"K56","ID":19530,"Name":"005","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19530","ServerKey":"pl181","X":601,"Y":595},{"Bonus":0,"Continent":"K54","ID":19531,"Name":"Ateny_70","PlayerID":2585846,"Points":3224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19531","ServerKey":"pl181","X":470,"Y":519},{"Bonus":0,"Continent":"K43","ID":19532,"Name":"Za lasem","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19532","ServerKey":"pl181","X":359,"Y":490},{"Bonus":0,"Continent":"K34","ID":19533,"Name":"001","PlayerID":699883079,"Points":9011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19533","ServerKey":"pl181","X":471,"Y":362},{"Bonus":0,"Continent":"K44","ID":19534,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19534","ServerKey":"pl181","X":403,"Y":400},{"Bonus":0,"Continent":"K34","ID":19535,"Name":"VN Edward Elric","PlayerID":699883079,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19535","ServerKey":"pl181","X":496,"Y":363},{"Bonus":0,"Continent":"K46","ID":19536,"Name":"Jan . izi pizi Nord K","PlayerID":879782,"Points":9635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19536","ServerKey":"pl181","X":639,"Y":499},{"Bonus":7,"Continent":"K43","ID":19537,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19537","ServerKey":"pl181","X":378,"Y":440},{"Bonus":0,"Continent":"K53","ID":19538,"Name":"048","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19538","ServerKey":"pl181","X":362,"Y":518},{"Bonus":0,"Continent":"K43","ID":19539,"Name":"A0184","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19539","ServerKey":"pl181","X":361,"Y":478},{"Bonus":0,"Continent":"K64","ID":19540,"Name":"068 OZDR","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19540","ServerKey":"pl181","X":469,"Y":631},{"Bonus":0,"Continent":"K53","ID":19541,"Name":"077 Zgierzątka","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19541","ServerKey":"pl181","X":381,"Y":567},{"Bonus":0,"Continent":"K43","ID":19542,"Name":"Yeremiah","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19542","ServerKey":"pl181","X":389,"Y":416},{"Bonus":0,"Continent":"K34","ID":19543,"Name":"083","PlayerID":698739350,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19543","ServerKey":"pl181","X":479,"Y":366},{"Bonus":1,"Continent":"K65","ID":19544,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19544","ServerKey":"pl181","X":524,"Y":639},{"Bonus":0,"Continent":"K53","ID":19545,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19545","ServerKey":"pl181","X":373,"Y":547},{"Bonus":0,"Continent":"K64","ID":19546,"Name":"070","PlayerID":849084985,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19546","ServerKey":"pl181","X":437,"Y":626},{"Bonus":0,"Continent":"K54","ID":19547,"Name":"117","PlayerID":699382126,"Points":10628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19547","ServerKey":"pl181","X":401,"Y":553},{"Bonus":0,"Continent":"K43","ID":19548,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19548","ServerKey":"pl181","X":368,"Y":456},{"Bonus":0,"Continent":"K34","ID":19549,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19549","ServerKey":"pl181","X":403,"Y":398},{"Bonus":0,"Continent":"K64","ID":19550,"Name":"A18 Wioska barbarzyƄska","PlayerID":849037407,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19550","ServerKey":"pl181","X":460,"Y":631},{"Bonus":0,"Continent":"K65","ID":19551,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19551","ServerKey":"pl181","X":544,"Y":636},{"Bonus":0,"Continent":"K56","ID":19552,"Name":"Nowa 16","PlayerID":698702991,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19552","ServerKey":"pl181","X":622,"Y":567},{"Bonus":0,"Continent":"K65","ID":19553,"Name":"ObrzeĆŒa 01","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19553","ServerKey":"pl181","X":543,"Y":633},{"Bonus":0,"Continent":"K43","ID":19554,"Name":"A0171","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19554","ServerKey":"pl181","X":367,"Y":470},{"Bonus":0,"Continent":"K64","ID":19555,"Name":"A004","PlayerID":699383279,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19555","ServerKey":"pl181","X":474,"Y":633},{"Bonus":0,"Continent":"K35","ID":19556,"Name":"015 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19556","ServerKey":"pl181","X":537,"Y":366},{"Bonus":0,"Continent":"K35","ID":19557,"Name":"038","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19557","ServerKey":"pl181","X":575,"Y":385},{"Bonus":0,"Continent":"K65","ID":19558,"Name":"kathare","PlayerID":873575,"Points":9921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19558","ServerKey":"pl181","X":555,"Y":625},{"Bonus":0,"Continent":"K64","ID":19559,"Name":"Pobozowisko","PlayerID":699513260,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19559","ServerKey":"pl181","X":411,"Y":610},{"Bonus":0,"Continent":"K53","ID":19560,"Name":"078 Wehjerowo","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19560","ServerKey":"pl181","X":379,"Y":570},{"Bonus":0,"Continent":"K53","ID":19561,"Name":"002","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19561","ServerKey":"pl181","X":366,"Y":533},{"Bonus":0,"Continent":"K35","ID":19562,"Name":"018 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19562","ServerKey":"pl181","X":539,"Y":364},{"Bonus":0,"Continent":"K56","ID":19563,"Name":"[016]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19563","ServerKey":"pl181","X":637,"Y":516},{"Bonus":0,"Continent":"K43","ID":19564,"Name":"Westcoast.059","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19564","ServerKey":"pl181","X":379,"Y":435},{"Bonus":0,"Continent":"K64","ID":19565,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19565","ServerKey":"pl181","X":409,"Y":606},{"Bonus":0,"Continent":"K46","ID":19566,"Name":"016 Legio XXII Deiotariana","PlayerID":699878150,"Points":5463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19566","ServerKey":"pl181","X":638,"Y":492},{"Bonus":0,"Continent":"K43","ID":19567,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19567","ServerKey":"pl181","X":390,"Y":415},{"Bonus":0,"Continent":"K64","ID":19568,"Name":"066","PlayerID":849084985,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19568","ServerKey":"pl181","X":438,"Y":621},{"Bonus":6,"Continent":"K64","ID":19569,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":7901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19569","ServerKey":"pl181","X":431,"Y":620},{"Bonus":0,"Continent":"K56","ID":19570,"Name":"043","PlayerID":698786826,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19570","ServerKey":"pl181","X":606,"Y":590},{"Bonus":0,"Continent":"K56","ID":19571,"Name":"039","PlayerID":698786826,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19571","ServerKey":"pl181","X":610,"Y":584},{"Bonus":0,"Continent":"K65","ID":19572,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19572","ServerKey":"pl181","X":510,"Y":638},{"Bonus":0,"Continent":"K64","ID":19573,"Name":"Ave Why!","PlayerID":698585370,"Points":9198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19573","ServerKey":"pl181","X":453,"Y":627},{"Bonus":0,"Continent":"K64","ID":19574,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19574","ServerKey":"pl181","X":422,"Y":611},{"Bonus":0,"Continent":"K45","ID":19575,"Name":"D015","PlayerID":699761749,"Points":5588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19575","ServerKey":"pl181","X":597,"Y":402},{"Bonus":0,"Continent":"K53","ID":19576,"Name":"005 181","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19576","ServerKey":"pl181","X":359,"Y":509},{"Bonus":0,"Continent":"K43","ID":19577,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19577","ServerKey":"pl181","X":371,"Y":456},{"Bonus":0,"Continent":"K56","ID":19578,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19578","ServerKey":"pl181","X":628,"Y":554},{"Bonus":0,"Continent":"K46","ID":19579,"Name":"Jehu_Kingdom_11","PlayerID":8785314,"Points":8081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19579","ServerKey":"pl181","X":625,"Y":435},{"Bonus":0,"Continent":"K35","ID":19580,"Name":"Majami","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19580","ServerKey":"pl181","X":543,"Y":369},{"Bonus":0,"Continent":"K44","ID":19581,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19581","ServerKey":"pl181","X":400,"Y":405},{"Bonus":0,"Continent":"K43","ID":19582,"Name":"Wioska zygmunciarz","PlayerID":8967440,"Points":5724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19582","ServerKey":"pl181","X":382,"Y":423},{"Bonus":0,"Continent":"K43","ID":19583,"Name":".Krakers. 003","PlayerID":9163140,"Points":3630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19583","ServerKey":"pl181","X":362,"Y":480},{"Bonus":4,"Continent":"K65","ID":19584,"Name":"015","PlayerID":699189792,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19584","ServerKey":"pl181","X":565,"Y":621},{"Bonus":0,"Continent":"K46","ID":19586,"Name":"Szlachcic","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19586","ServerKey":"pl181","X":636,"Y":494},{"Bonus":0,"Continent":"K34","ID":19587,"Name":"Konfederacja +","PlayerID":848915730,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19587","ServerKey":"pl181","X":451,"Y":371},{"Bonus":0,"Continent":"K43","ID":19588,"Name":"Westcoast.104","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19588","ServerKey":"pl181","X":379,"Y":433},{"Bonus":0,"Continent":"K53","ID":19589,"Name":"R014","PlayerID":8607734,"Points":5852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19589","ServerKey":"pl181","X":384,"Y":571},{"Bonus":0,"Continent":"K34","ID":19590,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19590","ServerKey":"pl181","X":476,"Y":361},{"Bonus":0,"Continent":"K65","ID":19591,"Name":"027","PlayerID":699878511,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19591","ServerKey":"pl181","X":507,"Y":637},{"Bonus":0,"Continent":"K53","ID":19592,"Name":"157 Ale mnie gƂówka boli","PlayerID":699382126,"Points":8635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19592","ServerKey":"pl181","X":375,"Y":560},{"Bonus":8,"Continent":"K64","ID":19593,"Name":"Pobozowisko","PlayerID":699513260,"Points":7456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19593","ServerKey":"pl181","X":406,"Y":604},{"Bonus":0,"Continent":"K53","ID":19594,"Name":"014","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19594","ServerKey":"pl181","X":360,"Y":519},{"Bonus":0,"Continent":"K34","ID":19595,"Name":"063","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19595","ServerKey":"pl181","X":476,"Y":364},{"Bonus":0,"Continent":"K53","ID":19596,"Name":"053","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19596","ServerKey":"pl181","X":361,"Y":518},{"Bonus":0,"Continent":"K46","ID":19597,"Name":"040 | PALESTINA","PlayerID":9228039,"Points":6441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19597","ServerKey":"pl181","X":634,"Y":462},{"Bonus":0,"Continent":"K53","ID":19599,"Name":"068","PlayerID":6853693,"Points":6148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19599","ServerKey":"pl181","X":365,"Y":513},{"Bonus":0,"Continent":"K46","ID":19600,"Name":"004.","PlayerID":849094609,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19600","ServerKey":"pl181","X":633,"Y":480},{"Bonus":0,"Continent":"K46","ID":19601,"Name":"Jan 0xxx (08) K","PlayerID":879782,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19601","ServerKey":"pl181","X":636,"Y":473},{"Bonus":0,"Continent":"K65","ID":19602,"Name":"SSJ 014","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19602","ServerKey":"pl181","X":512,"Y":642},{"Bonus":0,"Continent":"K56","ID":19603,"Name":"003","PlayerID":849095227,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19603","ServerKey":"pl181","X":627,"Y":557},{"Bonus":0,"Continent":"K65","ID":19604,"Name":"#0010","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19604","ServerKey":"pl181","X":517,"Y":637},{"Bonus":0,"Continent":"K53","ID":19605,"Name":"057","PlayerID":8908002,"Points":5195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19605","ServerKey":"pl181","X":365,"Y":540},{"Bonus":0,"Continent":"K53","ID":19606,"Name":"148 Oj Mareczku coƛ za duĆŒo cyfr","PlayerID":699382126,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19606","ServerKey":"pl181","X":375,"Y":565},{"Bonus":0,"Continent":"K65","ID":19607,"Name":"#0004","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19607","ServerKey":"pl181","X":548,"Y":626},{"Bonus":0,"Continent":"K35","ID":19608,"Name":"0018","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19608","ServerKey":"pl181","X":547,"Y":369},{"Bonus":0,"Continent":"K35","ID":19609,"Name":".:024:. ƁOBUZIK","PlayerID":848934935,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19609","ServerKey":"pl181","X":554,"Y":369},{"Bonus":0,"Continent":"K34","ID":19610,"Name":"[B]_[201] Dejv.oldplyr","PlayerID":699380607,"Points":9518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19610","ServerKey":"pl181","X":432,"Y":383},{"Bonus":0,"Continent":"K34","ID":19612,"Name":"c Robcio 80003qqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19612","ServerKey":"pl181","X":415,"Y":391},{"Bonus":0,"Continent":"K43","ID":19613,"Name":"HMS Perseus","PlayerID":698884287,"Points":9439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19613","ServerKey":"pl181","X":387,"Y":416},{"Bonus":0,"Continent":"K35","ID":19614,"Name":"C012","PlayerID":699761749,"Points":5019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19614","ServerKey":"pl181","X":584,"Y":387},{"Bonus":0,"Continent":"K65","ID":19615,"Name":"028","PlayerID":699176234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19615","ServerKey":"pl181","X":555,"Y":629},{"Bonus":0,"Continent":"K64","ID":19616,"Name":"0207","PlayerID":699697558,"Points":5155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19616","ServerKey":"pl181","X":418,"Y":615},{"Bonus":0,"Continent":"K53","ID":19617,"Name":"055","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19617","ServerKey":"pl181","X":360,"Y":521},{"Bonus":0,"Continent":"K53","ID":19618,"Name":"018","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19618","ServerKey":"pl181","X":362,"Y":528},{"Bonus":0,"Continent":"K65","ID":19619,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19619","ServerKey":"pl181","X":552,"Y":628},{"Bonus":0,"Continent":"K35","ID":19620,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19620","ServerKey":"pl181","X":518,"Y":362},{"Bonus":0,"Continent":"K65","ID":19621,"Name":"#0003","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19621","ServerKey":"pl181","X":546,"Y":623},{"Bonus":0,"Continent":"K56","ID":19622,"Name":"029","PlayerID":849095227,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19622","ServerKey":"pl181","X":630,"Y":551},{"Bonus":0,"Continent":"K34","ID":19623,"Name":"[0070]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19623","ServerKey":"pl181","X":411,"Y":397},{"Bonus":0,"Continent":"K43","ID":19624,"Name":".Krakers. 004","PlayerID":9163140,"Points":3626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19624","ServerKey":"pl181","X":364,"Y":478},{"Bonus":0,"Continent":"K56","ID":19625,"Name":"F 004","PlayerID":8078914,"Points":10137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19625","ServerKey":"pl181","X":639,"Y":502},{"Bonus":0,"Continent":"K56","ID":19626,"Name":"P031 Sakai","PlayerID":8096537,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19626","ServerKey":"pl181","X":637,"Y":507},{"Bonus":0,"Continent":"K65","ID":19627,"Name":"SSJ 004","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19627","ServerKey":"pl181","X":510,"Y":640},{"Bonus":0,"Continent":"K43","ID":19628,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19628","ServerKey":"pl181","X":375,"Y":437},{"Bonus":0,"Continent":"K65","ID":19629,"Name":"Sony 911","PlayerID":1415009,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19629","ServerKey":"pl181","X":576,"Y":615},{"Bonus":0,"Continent":"K46","ID":19630,"Name":"Gattacka","PlayerID":699298370,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19630","ServerKey":"pl181","X":608,"Y":417},{"Bonus":0,"Continent":"K65","ID":19631,"Name":"0254","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19631","ServerKey":"pl181","X":537,"Y":631},{"Bonus":0,"Continent":"K34","ID":19632,"Name":"064","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19632","ServerKey":"pl181","X":473,"Y":362},{"Bonus":0,"Continent":"K65","ID":19633,"Name":"0227","PlayerID":698659980,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19633","ServerKey":"pl181","X":516,"Y":600},{"Bonus":0,"Continent":"K65","ID":19634,"Name":"~~012~~","PlayerID":7829201,"Points":9760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19634","ServerKey":"pl181","X":596,"Y":600},{"Bonus":0,"Continent":"K64","ID":19635,"Name":"Ave Why!","PlayerID":698585370,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19635","ServerKey":"pl181","X":492,"Y":644},{"Bonus":0,"Continent":"K34","ID":19636,"Name":"[0083]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19636","ServerKey":"pl181","X":414,"Y":394},{"Bonus":0,"Continent":"K43","ID":19637,"Name":"A0300","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19637","ServerKey":"pl181","X":362,"Y":499},{"Bonus":0,"Continent":"K64","ID":19638,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19638","ServerKey":"pl181","X":496,"Y":640},{"Bonus":0,"Continent":"K46","ID":19639,"Name":"A READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19639","ServerKey":"pl181","X":602,"Y":407},{"Bonus":0,"Continent":"K35","ID":19640,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19640","ServerKey":"pl181","X":524,"Y":364},{"Bonus":0,"Continent":"K65","ID":19641,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19641","ServerKey":"pl181","X":525,"Y":633},{"Bonus":0,"Continent":"K35","ID":19642,"Name":"135","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19642","ServerKey":"pl181","X":574,"Y":381},{"Bonus":0,"Continent":"K34","ID":19643,"Name":"VN Vanica Zogriatis","PlayerID":699883079,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19643","ServerKey":"pl181","X":465,"Y":363},{"Bonus":0,"Continent":"K53","ID":19644,"Name":"58. Wioska 58","PlayerID":849091769,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19644","ServerKey":"pl181","X":372,"Y":552},{"Bonus":0,"Continent":"K53","ID":19645,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19645","ServerKey":"pl181","X":399,"Y":597},{"Bonus":0,"Continent":"K54","ID":19646,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19646","ServerKey":"pl181","X":403,"Y":596},{"Bonus":0,"Continent":"K35","ID":19647,"Name":"Taran","PlayerID":699170684,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19647","ServerKey":"pl181","X":551,"Y":374},{"Bonus":0,"Continent":"K46","ID":19648,"Name":"009.","PlayerID":849094609,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19648","ServerKey":"pl181","X":637,"Y":479},{"Bonus":0,"Continent":"K35","ID":19649,"Name":"023 024","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19649","ServerKey":"pl181","X":530,"Y":363},{"Bonus":0,"Continent":"K56","ID":19650,"Name":"[023]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19650","ServerKey":"pl181","X":634,"Y":527},{"Bonus":0,"Continent":"K35","ID":19651,"Name":"Wioska barbarzyƄska","PlayerID":699208929,"Points":5752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19651","ServerKey":"pl181","X":524,"Y":363},{"Bonus":0,"Continent":"K53","ID":19652,"Name":"069 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19652","ServerKey":"pl181","X":381,"Y":565},{"Bonus":0,"Continent":"K43","ID":19653,"Name":"Wioska orton150","PlayerID":699523631,"Points":5470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19653","ServerKey":"pl181","X":371,"Y":457},{"Bonus":0,"Continent":"K43","ID":19654,"Name":"WiedĆșma - Celebryci","PlayerID":698884287,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19654","ServerKey":"pl181","X":385,"Y":421},{"Bonus":0,"Continent":"K34","ID":19655,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19655","ServerKey":"pl181","X":439,"Y":377},{"Bonus":0,"Continent":"K34","ID":19656,"Name":".052.","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19656","ServerKey":"pl181","X":485,"Y":361},{"Bonus":0,"Continent":"K34","ID":19657,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19657","ServerKey":"pl181","X":480,"Y":365},{"Bonus":0,"Continent":"K43","ID":19658,"Name":"004","PlayerID":848921536,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19658","ServerKey":"pl181","X":385,"Y":425},{"Bonus":7,"Continent":"K43","ID":19659,"Name":"Mniejsze zƂo 0026","PlayerID":699794765,"Points":7375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19659","ServerKey":"pl181","X":363,"Y":465},{"Bonus":0,"Continent":"K53","ID":19660,"Name":"Pobozowisko","PlayerID":699513260,"Points":10603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19660","ServerKey":"pl181","X":384,"Y":579},{"Bonus":0,"Continent":"K56","ID":19661,"Name":"*5604* LuncherS","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19661","ServerKey":"pl181","X":620,"Y":575},{"Bonus":0,"Continent":"K56","ID":19662,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19662","ServerKey":"pl181","X":631,"Y":541},{"Bonus":0,"Continent":"K56","ID":19663,"Name":"001","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19663","ServerKey":"pl181","X":604,"Y":596},{"Bonus":0,"Continent":"K43","ID":19664,"Name":"A0140","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19664","ServerKey":"pl181","X":362,"Y":487},{"Bonus":0,"Continent":"K53","ID":19665,"Name":"026","PlayerID":698641566,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19665","ServerKey":"pl181","X":364,"Y":533},{"Bonus":0,"Continent":"K64","ID":19666,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19666","ServerKey":"pl181","X":499,"Y":640},{"Bonus":0,"Continent":"K34","ID":19667,"Name":"060","PlayerID":698739350,"Points":5805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19667","ServerKey":"pl181","X":494,"Y":365},{"Bonus":0,"Continent":"K56","ID":19668,"Name":"036 Pelargir","PlayerID":699272880,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19668","ServerKey":"pl181","X":615,"Y":580},{"Bonus":0,"Continent":"K53","ID":19669,"Name":"16. Wioska 16","PlayerID":849091769,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19669","ServerKey":"pl181","X":369,"Y":551},{"Bonus":0,"Continent":"K34","ID":19670,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19670","ServerKey":"pl181","X":441,"Y":377},{"Bonus":0,"Continent":"K34","ID":19671,"Name":"VN Chrollo Lucilfer","PlayerID":699883079,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19671","ServerKey":"pl181","X":466,"Y":365},{"Bonus":0,"Continent":"K56","ID":19672,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19672","ServerKey":"pl181","X":639,"Y":530},{"Bonus":0,"Continent":"K43","ID":19673,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19673","ServerKey":"pl181","X":368,"Y":447},{"Bonus":0,"Continent":"K43","ID":19675,"Name":"006 VC Wioska barbarzyƄska","PlayerID":3108144,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19675","ServerKey":"pl181","X":392,"Y":414},{"Bonus":9,"Continent":"K64","ID":19676,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19676","ServerKey":"pl181","X":416,"Y":614},{"Bonus":0,"Continent":"K46","ID":19677,"Name":"029 na Ƃazarskim rejonie","PlayerID":699272633,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19677","ServerKey":"pl181","X":637,"Y":467},{"Bonus":0,"Continent":"K46","ID":19678,"Name":"Gattacka","PlayerID":699298370,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19678","ServerKey":"pl181","X":610,"Y":413},{"Bonus":0,"Continent":"K65","ID":19679,"Name":"Ryszard ty draniu ,oddaj rower!!","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19679","ServerKey":"pl181","X":574,"Y":619},{"Bonus":0,"Continent":"K46","ID":19680,"Name":"070. Lindum","PlayerID":849091866,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19680","ServerKey":"pl181","X":631,"Y":448},{"Bonus":0,"Continent":"K43","ID":19681,"Name":"::: A ::: I","PlayerID":848917570,"Points":5021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19681","ServerKey":"pl181","X":363,"Y":476},{"Bonus":0,"Continent":"K64","ID":19682,"Name":"Ave Why!","PlayerID":698585370,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19682","ServerKey":"pl181","X":468,"Y":638},{"Bonus":0,"Continent":"K46","ID":19683,"Name":"051 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19683","ServerKey":"pl181","X":626,"Y":442},{"Bonus":8,"Continent":"K53","ID":19684,"Name":"039","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19684","ServerKey":"pl181","X":371,"Y":553},{"Bonus":0,"Continent":"K35","ID":19685,"Name":"042","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19685","ServerKey":"pl181","X":545,"Y":399},{"Bonus":0,"Continent":"K53","ID":19686,"Name":"079 Radom","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19686","ServerKey":"pl181","X":381,"Y":569},{"Bonus":0,"Continent":"K53","ID":19687,"Name":"Pobozowisko","PlayerID":699513260,"Points":10558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19687","ServerKey":"pl181","X":397,"Y":592},{"Bonus":0,"Continent":"K53","ID":19688,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19688","ServerKey":"pl181","X":387,"Y":584},{"Bonus":0,"Continent":"K35","ID":19689,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19689","ServerKey":"pl181","X":510,"Y":362},{"Bonus":0,"Continent":"K46","ID":19690,"Name":"D006","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19690","ServerKey":"pl181","X":603,"Y":405},{"Bonus":0,"Continent":"K46","ID":19692,"Name":".KSU","PlayerID":6929240,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19692","ServerKey":"pl181","X":638,"Y":498},{"Bonus":0,"Continent":"K54","ID":19693,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19693","ServerKey":"pl181","X":404,"Y":596},{"Bonus":0,"Continent":"K64","ID":19694,"Name":"KsiądĆș do spania dzieciaku","PlayerID":698585370,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19694","ServerKey":"pl181","X":462,"Y":637},{"Bonus":0,"Continent":"K45","ID":19695,"Name":".achim.","PlayerID":6936607,"Points":7602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19695","ServerKey":"pl181","X":533,"Y":445},{"Bonus":0,"Continent":"K43","ID":19696,"Name":"A0102","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19696","ServerKey":"pl181","X":361,"Y":492},{"Bonus":4,"Continent":"K34","ID":19697,"Name":"Konfederacja +","PlayerID":848915730,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19697","ServerKey":"pl181","X":448,"Y":375},{"Bonus":0,"Continent":"K56","ID":19698,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19698","ServerKey":"pl181","X":619,"Y":575},{"Bonus":0,"Continent":"K53","ID":19699,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19699","ServerKey":"pl181","X":361,"Y":508},{"Bonus":0,"Continent":"K46","ID":19700,"Name":"054 | PALESTINA","PlayerID":9228039,"Points":4018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19700","ServerKey":"pl181","X":628,"Y":459},{"Bonus":0,"Continent":"K64","ID":19701,"Name":"Ave Why!","PlayerID":8729672,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19701","ServerKey":"pl181","X":450,"Y":623},{"Bonus":3,"Continent":"K64","ID":19702,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19702","ServerKey":"pl181","X":415,"Y":614},{"Bonus":0,"Continent":"K53","ID":19704,"Name":"Pobozowisko","PlayerID":699513260,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19704","ServerKey":"pl181","X":392,"Y":582},{"Bonus":0,"Continent":"K35","ID":19705,"Name":"Taran","PlayerID":699170684,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19705","ServerKey":"pl181","X":547,"Y":368},{"Bonus":0,"Continent":"K35","ID":19706,"Name":"WE ARE READY!","PlayerID":1553947,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19706","ServerKey":"pl181","X":597,"Y":399},{"Bonus":0,"Continent":"K64","ID":19707,"Name":"ave why!","PlayerID":698143931,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19707","ServerKey":"pl181","X":450,"Y":632},{"Bonus":0,"Continent":"K35","ID":19708,"Name":"173","PlayerID":849064752,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19708","ServerKey":"pl181","X":587,"Y":392},{"Bonus":0,"Continent":"K56","ID":19709,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19709","ServerKey":"pl181","X":634,"Y":541},{"Bonus":0,"Continent":"K65","ID":19710,"Name":"W.03","PlayerID":873575,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19710","ServerKey":"pl181","X":583,"Y":610},{"Bonus":0,"Continent":"K64","ID":19711,"Name":"A27 Wioska barbarzyƄska","PlayerID":849037407,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19711","ServerKey":"pl181","X":469,"Y":634},{"Bonus":0,"Continent":"K35","ID":19712,"Name":"V 002","PlayerID":6384450,"Points":9141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19712","ServerKey":"pl181","X":585,"Y":390},{"Bonus":0,"Continent":"K53","ID":19713,"Name":"-021-","PlayerID":699097885,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19713","ServerKey":"pl181","X":393,"Y":593},{"Bonus":0,"Continent":"K53","ID":19714,"Name":"59. Wioska 59","PlayerID":849091769,"Points":8716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19714","ServerKey":"pl181","X":371,"Y":552},{"Bonus":9,"Continent":"K46","ID":19715,"Name":"Jehu_Kingdom_17_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19715","ServerKey":"pl181","X":632,"Y":467},{"Bonus":0,"Continent":"K64","ID":19716,"Name":"032.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19716","ServerKey":"pl181","X":471,"Y":637},{"Bonus":0,"Continent":"K53","ID":19717,"Name":"35. Wioska 35","PlayerID":849091769,"Points":10046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19717","ServerKey":"pl181","X":381,"Y":572},{"Bonus":0,"Continent":"K35","ID":19718,"Name":"204","PlayerID":849064752,"Points":5682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19718","ServerKey":"pl181","X":585,"Y":393},{"Bonus":0,"Continent":"K35","ID":19719,"Name":"210","PlayerID":849064752,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19719","ServerKey":"pl181","X":580,"Y":384},{"Bonus":0,"Continent":"K56","ID":19720,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":7135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19720","ServerKey":"pl181","X":637,"Y":515},{"Bonus":0,"Continent":"K34","ID":19721,"Name":"0138","PlayerID":699431255,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19721","ServerKey":"pl181","X":429,"Y":379},{"Bonus":0,"Continent":"K53","ID":19722,"Name":"033","PlayerID":8908002,"Points":8535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19722","ServerKey":"pl181","X":367,"Y":544},{"Bonus":0,"Continent":"K43","ID":19723,"Name":"0030","PlayerID":6258092,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19723","ServerKey":"pl181","X":367,"Y":472},{"Bonus":0,"Continent":"K34","ID":19724,"Name":"Hepatica nobilis","PlayerID":699883079,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19724","ServerKey":"pl181","X":493,"Y":358},{"Bonus":0,"Continent":"K53","ID":19725,"Name":"Pobozowisko","PlayerID":699513260,"Points":3572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19725","ServerKey":"pl181","X":389,"Y":588},{"Bonus":0,"Continent":"K53","ID":19726,"Name":"038","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19726","ServerKey":"pl181","X":365,"Y":528},{"Bonus":0,"Continent":"K35","ID":19727,"Name":"C 011","PlayerID":6384450,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19727","ServerKey":"pl181","X":584,"Y":389},{"Bonus":0,"Continent":"K35","ID":19728,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19728","ServerKey":"pl181","X":561,"Y":376},{"Bonus":0,"Continent":"K46","ID":19729,"Name":"007.","PlayerID":849094609,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19729","ServerKey":"pl181","X":640,"Y":482},{"Bonus":0,"Continent":"K65","ID":19730,"Name":"0554","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19730","ServerKey":"pl181","X":564,"Y":627},{"Bonus":7,"Continent":"K35","ID":19731,"Name":"015 016","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19731","ServerKey":"pl181","X":540,"Y":367},{"Bonus":0,"Continent":"K35","ID":19732,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19732","ServerKey":"pl181","X":564,"Y":374},{"Bonus":0,"Continent":"K35","ID":19733,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19733","ServerKey":"pl181","X":502,"Y":359},{"Bonus":0,"Continent":"K34","ID":19734,"Name":"0121","PlayerID":699431255,"Points":8357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19734","ServerKey":"pl181","X":438,"Y":376},{"Bonus":0,"Continent":"K35","ID":19735,"Name":"A007","PlayerID":699208929,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19735","ServerKey":"pl181","X":521,"Y":363},{"Bonus":0,"Continent":"K34","ID":19736,"Name":"SoƂtys Wsi Misinho","PlayerID":849027025,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19736","ServerKey":"pl181","X":437,"Y":397},{"Bonus":0,"Continent":"K35","ID":19737,"Name":"01.","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19737","ServerKey":"pl181","X":509,"Y":361},{"Bonus":0,"Continent":"K46","ID":19738,"Name":"617|429 Wioska barbarzyƄska08","PlayerID":6822957,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19738","ServerKey":"pl181","X":617,"Y":429},{"Bonus":0,"Continent":"K64","ID":19739,"Name":"047","PlayerID":849084985,"Points":8058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19739","ServerKey":"pl181","X":443,"Y":628},{"Bonus":0,"Continent":"K64","ID":19740,"Name":"Pobozowisko","PlayerID":699513260,"Points":8962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19740","ServerKey":"pl181","X":410,"Y":609},{"Bonus":0,"Continent":"K44","ID":19741,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19741","ServerKey":"pl181","X":404,"Y":403},{"Bonus":0,"Continent":"K43","ID":19742,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":8671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19742","ServerKey":"pl181","X":388,"Y":412},{"Bonus":0,"Continent":"K64","ID":19743,"Name":"053","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19743","ServerKey":"pl181","X":441,"Y":629},{"Bonus":0,"Continent":"K64","ID":19744,"Name":"014. Minas Morgul","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19744","ServerKey":"pl181","X":488,"Y":628},{"Bonus":0,"Continent":"K34","ID":19745,"Name":"125","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19745","ServerKey":"pl181","X":491,"Y":363},{"Bonus":0,"Continent":"K46","ID":19746,"Name":"004 Ɓysy Las","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19746","ServerKey":"pl181","X":620,"Y":425},{"Bonus":0,"Continent":"K65","ID":19747,"Name":"z 056","PlayerID":699342219,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19747","ServerKey":"pl181","X":587,"Y":604},{"Bonus":0,"Continent":"K35","ID":19748,"Name":"015.","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19748","ServerKey":"pl181","X":572,"Y":384},{"Bonus":0,"Continent":"K46","ID":19750,"Name":"*0010 Baraki","PlayerID":8459255,"Points":10198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19750","ServerKey":"pl181","X":621,"Y":429},{"Bonus":0,"Continent":"K43","ID":19751,"Name":"K43 x001","PlayerID":698364331,"Points":5865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19751","ServerKey":"pl181","X":399,"Y":407},{"Bonus":0,"Continent":"K56","ID":19752,"Name":"017","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19752","ServerKey":"pl181","X":615,"Y":583},{"Bonus":0,"Continent":"K65","ID":19753,"Name":"Residential Area","PlayerID":8199417,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19753","ServerKey":"pl181","X":526,"Y":633},{"Bonus":0,"Continent":"K46","ID":19754,"Name":"019 Legio I Brittannica","PlayerID":699878150,"Points":5161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19754","ServerKey":"pl181","X":642,"Y":499},{"Bonus":0,"Continent":"K46","ID":19755,"Name":"Szlachcic","PlayerID":699098531,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19755","ServerKey":"pl181","X":636,"Y":491},{"Bonus":0,"Continent":"K64","ID":19756,"Name":"A21 Wioska barbarzyƄska","PlayerID":849037407,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19756","ServerKey":"pl181","X":458,"Y":631},{"Bonus":0,"Continent":"K46","ID":19757,"Name":"B001","PlayerID":699761749,"Points":9665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19757","ServerKey":"pl181","X":605,"Y":407},{"Bonus":0,"Continent":"K56","ID":19758,"Name":"019","PlayerID":698786826,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19758","ServerKey":"pl181","X":608,"Y":592},{"Bonus":0,"Continent":"K53","ID":19759,"Name":"060","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19759","ServerKey":"pl181","X":358,"Y":510},{"Bonus":0,"Continent":"K35","ID":19760,"Name":"167","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19760","ServerKey":"pl181","X":583,"Y":389},{"Bonus":0,"Continent":"K34","ID":19761,"Name":"0052","PlayerID":699431255,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19761","ServerKey":"pl181","X":452,"Y":366},{"Bonus":0,"Continent":"K43","ID":19762,"Name":"A0236","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19762","ServerKey":"pl181","X":363,"Y":464},{"Bonus":0,"Continent":"K35","ID":19763,"Name":"140","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19763","ServerKey":"pl181","X":574,"Y":379},{"Bonus":0,"Continent":"K45","ID":19764,"Name":"142 MIKOX 010","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19764","ServerKey":"pl181","X":596,"Y":416},{"Bonus":0,"Continent":"K64","ID":19765,"Name":"0005","PlayerID":6180190,"Points":10431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19765","ServerKey":"pl181","X":481,"Y":635},{"Bonus":0,"Continent":"K46","ID":19767,"Name":"ƚlachcic","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19767","ServerKey":"pl181","X":639,"Y":497},{"Bonus":0,"Continent":"K53","ID":19768,"Name":"181","PlayerID":8305343,"Points":2332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19768","ServerKey":"pl181","X":387,"Y":582},{"Bonus":0,"Continent":"K53","ID":19769,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":9158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19769","ServerKey":"pl181","X":363,"Y":503},{"Bonus":0,"Continent":"K46","ID":19770,"Name":"108 Wioska barbarzyƄska","PlayerID":699491076,"Points":9122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19770","ServerKey":"pl181","X":605,"Y":414},{"Bonus":2,"Continent":"K53","ID":19771,"Name":"Osada koczownikĂłw","PlayerID":699621601,"Points":8364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19771","ServerKey":"pl181","X":385,"Y":576},{"Bonus":0,"Continent":"K35","ID":19772,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19772","ServerKey":"pl181","X":534,"Y":367},{"Bonus":0,"Continent":"K56","ID":19773,"Name":"=036= Wioska barbarzyƄska","PlayerID":3781794,"Points":9100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19773","ServerKey":"pl181","X":631,"Y":554},{"Bonus":3,"Continent":"K56","ID":19774,"Name":"002","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19774","ServerKey":"pl181","X":626,"Y":557},{"Bonus":0,"Continent":"K46","ID":19775,"Name":"Jehu_Kingdom_10_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19775","ServerKey":"pl181","X":629,"Y":449},{"Bonus":0,"Continent":"K56","ID":19776,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19776","ServerKey":"pl181","X":636,"Y":539},{"Bonus":0,"Continent":"K65","ID":19777,"Name":"Druga Dla MOSE","PlayerID":699560327,"Points":5638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19777","ServerKey":"pl181","X":580,"Y":615},{"Bonus":0,"Continent":"K65","ID":19778,"Name":"SSJ 021","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19778","ServerKey":"pl181","X":508,"Y":637},{"Bonus":0,"Continent":"K46","ID":19779,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19779","ServerKey":"pl181","X":621,"Y":425},{"Bonus":0,"Continent":"K34","ID":19780,"Name":"0144","PlayerID":699431255,"Points":5894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19780","ServerKey":"pl181","X":431,"Y":376},{"Bonus":0,"Continent":"K53","ID":19781,"Name":"050","PlayerID":6853693,"Points":6906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19781","ServerKey":"pl181","X":374,"Y":551},{"Bonus":0,"Continent":"K65","ID":19782,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19782","ServerKey":"pl181","X":526,"Y":640},{"Bonus":0,"Continent":"K43","ID":19783,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19783","ServerKey":"pl181","X":399,"Y":408},{"Bonus":0,"Continent":"K43","ID":19784,"Name":"HMS Warspite","PlayerID":8967440,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19784","ServerKey":"pl181","X":384,"Y":422},{"Bonus":7,"Continent":"K45","ID":19785,"Name":"B016","PlayerID":699761749,"Points":8280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19785","ServerKey":"pl181","X":599,"Y":405},{"Bonus":0,"Continent":"K46","ID":19786,"Name":"006.","PlayerID":849094609,"Points":9250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19786","ServerKey":"pl181","X":631,"Y":480},{"Bonus":0,"Continent":"K56","ID":19787,"Name":"034","PlayerID":698786826,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19787","ServerKey":"pl181","X":610,"Y":580},{"Bonus":0,"Continent":"K35","ID":19789,"Name":"059 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19789","ServerKey":"pl181","X":535,"Y":366},{"Bonus":8,"Continent":"K65","ID":19790,"Name":"0001","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19790","ServerKey":"pl181","X":538,"Y":633},{"Bonus":0,"Continent":"K34","ID":19791,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19791","ServerKey":"pl181","X":421,"Y":387},{"Bonus":0,"Continent":"K43","ID":19792,"Name":"A0222","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19792","ServerKey":"pl181","X":365,"Y":465},{"Bonus":0,"Continent":"K64","ID":19793,"Name":"0019 Bezimienna","PlayerID":9060641,"Points":11727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19793","ServerKey":"pl181","X":416,"Y":610},{"Bonus":0,"Continent":"K64","ID":19794,"Name":"010Rolety","PlayerID":698620694,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19794","ServerKey":"pl181","X":448,"Y":630},{"Bonus":0,"Continent":"K56","ID":19795,"Name":"WschĂłd Droga 004","PlayerID":698562644,"Points":9187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19795","ServerKey":"pl181","X":632,"Y":544},{"Bonus":0,"Continent":"K35","ID":19796,"Name":"A READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19796","ServerKey":"pl181","X":592,"Y":399},{"Bonus":0,"Continent":"K43","ID":19797,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19797","ServerKey":"pl181","X":377,"Y":437},{"Bonus":0,"Continent":"K35","ID":19798,"Name":".:134:. Niangmen","PlayerID":848934935,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19798","ServerKey":"pl181","X":506,"Y":360},{"Bonus":0,"Continent":"K46","ID":19799,"Name":"Wioska (027)","PlayerID":698232227,"Points":9188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19799","ServerKey":"pl181","X":637,"Y":468},{"Bonus":0,"Continent":"K65","ID":19801,"Name":"0039","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19801","ServerKey":"pl181","X":538,"Y":635},{"Bonus":6,"Continent":"K43","ID":19802,"Name":"Osada","PlayerID":699644054,"Points":1141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19802","ServerKey":"pl181","X":380,"Y":430},{"Bonus":0,"Continent":"K53","ID":19804,"Name":"-053-","PlayerID":699097885,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19804","ServerKey":"pl181","X":377,"Y":571},{"Bonus":0,"Continent":"K64","ID":19805,"Name":"Ave Why!","PlayerID":698585370,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19805","ServerKey":"pl181","X":465,"Y":639},{"Bonus":0,"Continent":"K43","ID":19806,"Name":"WiedĆșma - Barbakan","PlayerID":698884287,"Points":6772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19806","ServerKey":"pl181","X":384,"Y":417},{"Bonus":0,"Continent":"K65","ID":19807,"Name":"SSJ 038","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19807","ServerKey":"pl181","X":515,"Y":640},{"Bonus":0,"Continent":"K64","ID":19808,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19808","ServerKey":"pl181","X":494,"Y":639},{"Bonus":0,"Continent":"K65","ID":19809,"Name":"#0033","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19809","ServerKey":"pl181","X":545,"Y":628},{"Bonus":0,"Continent":"K34","ID":19810,"Name":"0044","PlayerID":699431255,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19810","ServerKey":"pl181","X":451,"Y":368},{"Bonus":0,"Continent":"K64","ID":19811,"Name":"A003","PlayerID":699383279,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19811","ServerKey":"pl181","X":474,"Y":638},{"Bonus":0,"Continent":"K56","ID":19812,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19812","ServerKey":"pl181","X":636,"Y":527},{"Bonus":0,"Continent":"K35","ID":19813,"Name":"Bagdad","PlayerID":8847546,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19813","ServerKey":"pl181","X":500,"Y":366},{"Bonus":0,"Continent":"K46","ID":19814,"Name":"615|426 Wioska barbarzyƄska05","PlayerID":6822957,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19814","ServerKey":"pl181","X":615,"Y":426},{"Bonus":0,"Continent":"K35","ID":19816,"Name":"Belvedere 023","PlayerID":699756210,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19816","ServerKey":"pl181","X":586,"Y":398},{"Bonus":0,"Continent":"K65","ID":19817,"Name":"OZDR","PlayerID":2665207,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19817","ServerKey":"pl181","X":520,"Y":638},{"Bonus":0,"Continent":"K43","ID":19818,"Name":"WiedĆșma - Ateny","PlayerID":698884287,"Points":10705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19818","ServerKey":"pl181","X":386,"Y":422},{"Bonus":0,"Continent":"K64","ID":19819,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19819","ServerKey":"pl181","X":406,"Y":600},{"Bonus":9,"Continent":"K35","ID":19820,"Name":"Lord Lord Franek .#207","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19820","ServerKey":"pl181","X":512,"Y":361},{"Bonus":0,"Continent":"K45","ID":19821,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19821","ServerKey":"pl181","X":516,"Y":453},{"Bonus":0,"Continent":"K35","ID":19822,"Name":"Taran","PlayerID":699170684,"Points":5332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19822","ServerKey":"pl181","X":542,"Y":369},{"Bonus":0,"Continent":"K65","ID":19823,"Name":"W.02","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19823","ServerKey":"pl181","X":586,"Y":607},{"Bonus":0,"Continent":"K34","ID":19824,"Name":"c 055d","PlayerID":3909522,"Points":5977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19824","ServerKey":"pl181","X":423,"Y":385},{"Bonus":0,"Continent":"K65","ID":19826,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19826","ServerKey":"pl181","X":509,"Y":637},{"Bonus":0,"Continent":"K56","ID":19828,"Name":"[027]","PlayerID":698305474,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19828","ServerKey":"pl181","X":637,"Y":513},{"Bonus":0,"Continent":"K56","ID":19829,"Name":"Wioska PogĂłrze 4","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19829","ServerKey":"pl181","X":635,"Y":536},{"Bonus":0,"Continent":"K64","ID":19831,"Name":"0208","PlayerID":6910361,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19831","ServerKey":"pl181","X":419,"Y":615},{"Bonus":0,"Continent":"K53","ID":19832,"Name":"Wioska","PlayerID":849084005,"Points":7591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19832","ServerKey":"pl181","X":370,"Y":550},{"Bonus":0,"Continent":"K65","ID":19833,"Name":"#0043","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19833","ServerKey":"pl181","X":546,"Y":632},{"Bonus":0,"Continent":"K56","ID":19834,"Name":"Nowa 21","PlayerID":698702991,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19834","ServerKey":"pl181","X":622,"Y":569},{"Bonus":0,"Continent":"K65","ID":19835,"Name":"0239","PlayerID":698659980,"Points":9276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19835","ServerKey":"pl181","X":537,"Y":635},{"Bonus":0,"Continent":"K46","ID":19836,"Name":"#012.510|489","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19836","ServerKey":"pl181","X":629,"Y":440},{"Bonus":0,"Continent":"K65","ID":19837,"Name":"SSJ 039","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19837","ServerKey":"pl181","X":511,"Y":642},{"Bonus":0,"Continent":"K53","ID":19838,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19838","ServerKey":"pl181","X":381,"Y":573},{"Bonus":1,"Continent":"K35","ID":19839,"Name":"A016","PlayerID":699761749,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19839","ServerKey":"pl181","X":585,"Y":386},{"Bonus":0,"Continent":"K53","ID":19840,"Name":"013","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19840","ServerKey":"pl181","X":360,"Y":516},{"Bonus":0,"Continent":"K65","ID":19841,"Name":"mys","PlayerID":699828685,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19841","ServerKey":"pl181","X":570,"Y":625},{"Bonus":3,"Continent":"K35","ID":19842,"Name":"XXXIII","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19842","ServerKey":"pl181","X":541,"Y":371},{"Bonus":0,"Continent":"K53","ID":19843,"Name":"056","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19843","ServerKey":"pl181","X":360,"Y":522},{"Bonus":0,"Continent":"K53","ID":19844,"Name":"063","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19844","ServerKey":"pl181","X":358,"Y":513},{"Bonus":0,"Continent":"K65","ID":19845,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19845","ServerKey":"pl181","X":527,"Y":634},{"Bonus":0,"Continent":"K64","ID":19846,"Name":"Ave Why!","PlayerID":698585370,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19846","ServerKey":"pl181","X":460,"Y":635},{"Bonus":0,"Continent":"K34","ID":19847,"Name":"Darma","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19847","ServerKey":"pl181","X":417,"Y":390},{"Bonus":0,"Continent":"K45","ID":19848,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19848","ServerKey":"pl181","X":598,"Y":400},{"Bonus":0,"Continent":"K64","ID":19849,"Name":"084 KUZYNI mehehehe","PlayerID":699336777,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19849","ServerKey":"pl181","X":472,"Y":634},{"Bonus":0,"Continent":"K44","ID":19850,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19850","ServerKey":"pl181","X":416,"Y":405},{"Bonus":0,"Continent":"K64","ID":19851,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":6670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19851","ServerKey":"pl181","X":433,"Y":619},{"Bonus":2,"Continent":"K43","ID":19852,"Name":"Za rogiem","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19852","ServerKey":"pl181","X":357,"Y":496},{"Bonus":0,"Continent":"K53","ID":19853,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19853","ServerKey":"pl181","X":371,"Y":546},{"Bonus":0,"Continent":"K43","ID":19854,"Name":"010","PlayerID":848921536,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19854","ServerKey":"pl181","X":387,"Y":421},{"Bonus":0,"Continent":"K56","ID":19856,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":8057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19856","ServerKey":"pl181","X":636,"Y":526},{"Bonus":0,"Continent":"K64","ID":19857,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19857","ServerKey":"pl181","X":405,"Y":600},{"Bonus":0,"Continent":"K35","ID":19858,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19858","ServerKey":"pl181","X":548,"Y":366},{"Bonus":0,"Continent":"K35","ID":19859,"Name":"A READY","PlayerID":699759128,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19859","ServerKey":"pl181","X":592,"Y":396},{"Bonus":0,"Continent":"K34","ID":19860,"Name":"039","PlayerID":698739350,"Points":9513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19860","ServerKey":"pl181","X":491,"Y":382},{"Bonus":0,"Continent":"K35","ID":19861,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19861","ServerKey":"pl181","X":513,"Y":361},{"Bonus":0,"Continent":"K35","ID":19862,"Name":"Lord Lord Franek .#208","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19862","ServerKey":"pl181","X":517,"Y":359},{"Bonus":0,"Continent":"K64","ID":19864,"Name":"Pobozowisko","PlayerID":699513260,"Points":6352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19864","ServerKey":"pl181","X":413,"Y":612},{"Bonus":0,"Continent":"K65","ID":19865,"Name":"006. darthmoth298","PlayerID":699567608,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19865","ServerKey":"pl181","X":560,"Y":625},{"Bonus":0,"Continent":"K56","ID":19866,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19866","ServerKey":"pl181","X":629,"Y":553},{"Bonus":0,"Continent":"K43","ID":19867,"Name":"A0185","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19867","ServerKey":"pl181","X":360,"Y":485},{"Bonus":0,"Continent":"K65","ID":19868,"Name":"w kupie siƂa .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19868","ServerKey":"pl181","X":572,"Y":619},{"Bonus":0,"Continent":"K43","ID":19869,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19869","ServerKey":"pl181","X":394,"Y":408},{"Bonus":0,"Continent":"K43","ID":19870,"Name":"A0230","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19870","ServerKey":"pl181","X":364,"Y":466},{"Bonus":0,"Continent":"K46","ID":19871,"Name":"027 czasem zapija się smutki","PlayerID":699272633,"Points":8994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19871","ServerKey":"pl181","X":638,"Y":471},{"Bonus":4,"Continent":"K34","ID":19872,"Name":"K34 - [147] Before Land","PlayerID":699088769,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19872","ServerKey":"pl181","X":446,"Y":370},{"Bonus":0,"Continent":"K53","ID":19873,"Name":"Pobozowisko","PlayerID":699513260,"Points":9152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19873","ServerKey":"pl181","X":390,"Y":587},{"Bonus":0,"Continent":"K56","ID":19874,"Name":".Elana ToruƄ.","PlayerID":6929240,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19874","ServerKey":"pl181","X":623,"Y":571},{"Bonus":0,"Continent":"K34","ID":19875,"Name":"c 00448","PlayerID":3909522,"Points":8783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19875","ServerKey":"pl181","X":413,"Y":391},{"Bonus":0,"Continent":"K53","ID":19877,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19877","ServerKey":"pl181","X":391,"Y":584},{"Bonus":0,"Continent":"K64","ID":19878,"Name":"Bizy 2","PlayerID":698585370,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19878","ServerKey":"pl181","X":499,"Y":638},{"Bonus":0,"Continent":"K53","ID":19879,"Name":"003","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19879","ServerKey":"pl181","X":365,"Y":533},{"Bonus":0,"Continent":"K34","ID":19880,"Name":"[0102]","PlayerID":8630972,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19880","ServerKey":"pl181","X":406,"Y":396},{"Bonus":0,"Continent":"K64","ID":19881,"Name":"017","PlayerID":849084985,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19881","ServerKey":"pl181","X":442,"Y":629},{"Bonus":0,"Continent":"K34","ID":19882,"Name":"c 0044 Wioska","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19882","ServerKey":"pl181","X":413,"Y":388},{"Bonus":0,"Continent":"K56","ID":19883,"Name":"B.028","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19883","ServerKey":"pl181","X":642,"Y":516},{"Bonus":0,"Continent":"K56","ID":19884,"Name":"Wioska barbarzyƄska","PlayerID":699800992,"Points":6057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19884","ServerKey":"pl181","X":616,"Y":582},{"Bonus":0,"Continent":"K34","ID":19885,"Name":"0064","PlayerID":699431255,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19885","ServerKey":"pl181","X":462,"Y":366},{"Bonus":0,"Continent":"K35","ID":19886,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19886","ServerKey":"pl181","X":520,"Y":361},{"Bonus":0,"Continent":"K34","ID":19887,"Name":"c Tva","PlayerID":3909522,"Points":10142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19887","ServerKey":"pl181","X":405,"Y":394},{"Bonus":0,"Continent":"K65","ID":19888,"Name":"- 332 - RR","PlayerID":849018239,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19888","ServerKey":"pl181","X":591,"Y":607},{"Bonus":0,"Continent":"K43","ID":19889,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19889","ServerKey":"pl181","X":395,"Y":405},{"Bonus":0,"Continent":"K46","ID":19890,"Name":"Gattacka","PlayerID":699298370,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19890","ServerKey":"pl181","X":614,"Y":414},{"Bonus":0,"Continent":"K35","ID":19891,"Name":"Taran","PlayerID":699170684,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19891","ServerKey":"pl181","X":556,"Y":373},{"Bonus":0,"Continent":"K34","ID":19892,"Name":"032","PlayerID":849010255,"Points":6905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19892","ServerKey":"pl181","X":483,"Y":362},{"Bonus":0,"Continent":"K43","ID":19893,"Name":"Westcoast.010","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19893","ServerKey":"pl181","X":383,"Y":437},{"Bonus":0,"Continent":"K64","ID":19894,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":6393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19894","ServerKey":"pl181","X":432,"Y":622},{"Bonus":0,"Continent":"K65","ID":19895,"Name":"001) Filipets","PlayerID":7589468,"Points":8999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19895","ServerKey":"pl181","X":533,"Y":637},{"Bonus":0,"Continent":"K65","ID":19896,"Name":"011","PlayerID":699567608,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19896","ServerKey":"pl181","X":589,"Y":611},{"Bonus":3,"Continent":"K53","ID":19897,"Name":"012","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19897","ServerKey":"pl181","X":366,"Y":534},{"Bonus":0,"Continent":"K35","ID":19898,"Name":"211","PlayerID":849064752,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19898","ServerKey":"pl181","X":579,"Y":385},{"Bonus":9,"Continent":"K64","ID":19899,"Name":"A03","PlayerID":849037407,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19899","ServerKey":"pl181","X":463,"Y":633},{"Bonus":0,"Continent":"K43","ID":19900,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19900","ServerKey":"pl181","X":394,"Y":409},{"Bonus":0,"Continent":"K53","ID":19901,"Name":"-015-","PlayerID":699097885,"Points":9163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19901","ServerKey":"pl181","X":394,"Y":589},{"Bonus":0,"Continent":"K65","ID":19902,"Name":"#0032","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19902","ServerKey":"pl181","X":553,"Y":626},{"Bonus":0,"Continent":"K46","ID":19903,"Name":"008 Legio I Flavia Martis","PlayerID":699878150,"Points":6765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19903","ServerKey":"pl181","X":639,"Y":488},{"Bonus":0,"Continent":"K43","ID":19904,"Name":"Mniejsze zƂo 0023","PlayerID":699794765,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19904","ServerKey":"pl181","X":361,"Y":467},{"Bonus":0,"Continent":"K64","ID":19905,"Name":"Pobozowisko","PlayerID":699513260,"Points":10755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19905","ServerKey":"pl181","X":412,"Y":611},{"Bonus":0,"Continent":"K46","ID":19907,"Name":"014 - Alicante","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19907","ServerKey":"pl181","X":636,"Y":483},{"Bonus":0,"Continent":"K43","ID":19909,"Name":"A0115","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19909","ServerKey":"pl181","X":363,"Y":495},{"Bonus":0,"Continent":"K46","ID":19910,"Name":"049 | PALESTINA","PlayerID":9228039,"Points":5193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19910","ServerKey":"pl181","X":637,"Y":465},{"Bonus":0,"Continent":"K65","ID":19911,"Name":"SSJ 033","PlayerID":699054373,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19911","ServerKey":"pl181","X":513,"Y":640},{"Bonus":0,"Continent":"K35","ID":19912,"Name":"001 Wioska dechami zabita","PlayerID":699509239,"Points":7005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19912","ServerKey":"pl181","X":568,"Y":377},{"Bonus":0,"Continent":"K46","ID":19913,"Name":"!0011","PlayerID":477415,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19913","ServerKey":"pl181","X":624,"Y":438},{"Bonus":0,"Continent":"K35","ID":19914,"Name":"C 020","PlayerID":6384450,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19914","ServerKey":"pl181","X":587,"Y":387},{"Bonus":0,"Continent":"K64","ID":19915,"Name":"062","PlayerID":849084985,"Points":7527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19915","ServerKey":"pl181","X":441,"Y":623},{"Bonus":0,"Continent":"K35","ID":19916,"Name":"R-10","PlayerID":3600737,"Points":8291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19916","ServerKey":"pl181","X":575,"Y":382},{"Bonus":0,"Continent":"K43","ID":19917,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19917","ServerKey":"pl181","X":394,"Y":405},{"Bonus":0,"Continent":"K53","ID":19918,"Name":"028","PlayerID":8908002,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19918","ServerKey":"pl181","X":367,"Y":540},{"Bonus":0,"Continent":"K65","ID":19919,"Name":"wƂadca pieczeni","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19919","ServerKey":"pl181","X":571,"Y":617},{"Bonus":0,"Continent":"K35","ID":19920,"Name":"C010","PlayerID":699761749,"Points":8609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19920","ServerKey":"pl181","X":586,"Y":388},{"Bonus":0,"Continent":"K46","ID":19921,"Name":"009. Hierosolyma","PlayerID":849091866,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19921","ServerKey":"pl181","X":614,"Y":468},{"Bonus":0,"Continent":"K64","ID":19922,"Name":"015. Minas Tirith","PlayerID":699494488,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19922","ServerKey":"pl181","X":485,"Y":616},{"Bonus":0,"Continent":"K34","ID":19924,"Name":"114","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19924","ServerKey":"pl181","X":488,"Y":360},{"Bonus":0,"Continent":"K46","ID":19925,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19925","ServerKey":"pl181","X":600,"Y":402},{"Bonus":0,"Continent":"K35","ID":19926,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19926","ServerKey":"pl181","X":510,"Y":360},{"Bonus":0,"Continent":"K65","ID":19927,"Name":"0376","PlayerID":698659980,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19927","ServerKey":"pl181","X":579,"Y":618},{"Bonus":0,"Continent":"K64","ID":19928,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19928","ServerKey":"pl181","X":401,"Y":601},{"Bonus":0,"Continent":"K46","ID":19929,"Name":"054 Konosu","PlayerID":7092442,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19929","ServerKey":"pl181","X":639,"Y":475},{"Bonus":0,"Continent":"K65","ID":19930,"Name":"#0048","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19930","ServerKey":"pl181","X":550,"Y":627},{"Bonus":0,"Continent":"K34","ID":19931,"Name":"c 077d","PlayerID":3909522,"Points":5426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19931","ServerKey":"pl181","X":419,"Y":384},{"Bonus":0,"Continent":"K65","ID":19932,"Name":"W.04","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19932","ServerKey":"pl181","X":585,"Y":610},{"Bonus":0,"Continent":"K56","ID":19933,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19933","ServerKey":"pl181","X":627,"Y":563},{"Bonus":0,"Continent":"K35","ID":19934,"Name":"014 ByƂem Tam Kolego","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19934","ServerKey":"pl181","X":531,"Y":363},{"Bonus":0,"Continent":"K35","ID":19935,"Name":"178","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19935","ServerKey":"pl181","X":563,"Y":371},{"Bonus":0,"Continent":"K34","ID":19936,"Name":"010","PlayerID":699883079,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19936","ServerKey":"pl181","X":466,"Y":364},{"Bonus":0,"Continent":"K56","ID":19937,"Name":"014","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19937","ServerKey":"pl181","X":635,"Y":533},{"Bonus":0,"Continent":"K46","ID":19938,"Name":"A02 Rosario","PlayerID":699272880,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19938","ServerKey":"pl181","X":642,"Y":496},{"Bonus":0,"Continent":"K46","ID":19939,"Name":"*0036 Baraki","PlayerID":8459255,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19939","ServerKey":"pl181","X":620,"Y":435},{"Bonus":0,"Continent":"K35","ID":19940,"Name":"R-14","PlayerID":3600737,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19940","ServerKey":"pl181","X":577,"Y":383},{"Bonus":0,"Continent":"K65","ID":19941,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19941","ServerKey":"pl181","X":530,"Y":634},{"Bonus":0,"Continent":"K65","ID":19942,"Name":"#0024","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19942","ServerKey":"pl181","X":546,"Y":631},{"Bonus":0,"Continent":"K64","ID":19943,"Name":"073","PlayerID":849084985,"Points":6758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19943","ServerKey":"pl181","X":434,"Y":622},{"Bonus":0,"Continent":"K46","ID":19944,"Name":"#059.","PlayerID":556154,"Points":7439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19944","ServerKey":"pl181","X":627,"Y":439},{"Bonus":0,"Continent":"K35","ID":19945,"Name":"020 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19945","ServerKey":"pl181","X":542,"Y":366},{"Bonus":0,"Continent":"K53","ID":19946,"Name":"045","PlayerID":6853693,"Points":6739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19946","ServerKey":"pl181","X":364,"Y":537},{"Bonus":0,"Continent":"K35","ID":19947,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19947","ServerKey":"pl181","X":564,"Y":378},{"Bonus":0,"Continent":"K34","ID":19948,"Name":"045","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19948","ServerKey":"pl181","X":471,"Y":364},{"Bonus":0,"Continent":"K35","ID":19949,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19949","ServerKey":"pl181","X":500,"Y":364},{"Bonus":0,"Continent":"K35","ID":19950,"Name":"A009","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19950","ServerKey":"pl181","X":513,"Y":389},{"Bonus":0,"Continent":"K43","ID":19951,"Name":"A0211","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19951","ServerKey":"pl181","X":361,"Y":498},{"Bonus":0,"Continent":"K35","ID":19952,"Name":"Lord Lord Franek .#181","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19952","ServerKey":"pl181","X":513,"Y":358},{"Bonus":0,"Continent":"K46","ID":19953,"Name":"011 Legio I Flavia Pacis (D)","PlayerID":699878150,"Points":4931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19953","ServerKey":"pl181","X":637,"Y":488},{"Bonus":0,"Continent":"K53","ID":19954,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19954","ServerKey":"pl181","X":378,"Y":573},{"Bonus":0,"Continent":"K43","ID":19955,"Name":"A0123","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19955","ServerKey":"pl181","X":353,"Y":495},{"Bonus":0,"Continent":"K35","ID":19956,"Name":"162","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19956","ServerKey":"pl181","X":588,"Y":392},{"Bonus":0,"Continent":"K64","ID":19957,"Name":"arkach","PlayerID":8588789,"Points":8790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19957","ServerKey":"pl181","X":437,"Y":621},{"Bonus":0,"Continent":"K56","ID":19958,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19958","ServerKey":"pl181","X":633,"Y":533},{"Bonus":6,"Continent":"K65","ID":19959,"Name":"015","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19959","ServerKey":"pl181","X":551,"Y":633},{"Bonus":0,"Continent":"K65","ID":19960,"Name":"Sony 911","PlayerID":1415009,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19960","ServerKey":"pl181","X":581,"Y":614},{"Bonus":0,"Continent":"K43","ID":19961,"Name":"017","PlayerID":848921536,"Points":3795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19961","ServerKey":"pl181","X":389,"Y":415},{"Bonus":0,"Continent":"K65","ID":19963,"Name":"SSJ 001","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19963","ServerKey":"pl181","X":509,"Y":641},{"Bonus":0,"Continent":"K46","ID":19964,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19964","ServerKey":"pl181","X":619,"Y":424},{"Bonus":0,"Continent":"K55","ID":19966,"Name":"E 002","PlayerID":8078914,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19966","ServerKey":"pl181","X":596,"Y":597},{"Bonus":0,"Continent":"K65","ID":19967,"Name":"0036","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19967","ServerKey":"pl181","X":538,"Y":637},{"Bonus":0,"Continent":"K34","ID":19968,"Name":"K34 - [149] Before Land","PlayerID":699088769,"Points":5343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19968","ServerKey":"pl181","X":443,"Y":373},{"Bonus":0,"Continent":"K44","ID":19969,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":7164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19969","ServerKey":"pl181","X":410,"Y":419},{"Bonus":0,"Continent":"K65","ID":19970,"Name":"nic","PlayerID":699828685,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19970","ServerKey":"pl181","X":572,"Y":624},{"Bonus":0,"Continent":"K34","ID":19971,"Name":"107","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19971","ServerKey":"pl181","X":484,"Y":358},{"Bonus":0,"Continent":"K43","ID":19972,"Name":"Jojo","PlayerID":7462660,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19972","ServerKey":"pl181","X":392,"Y":416},{"Bonus":0,"Continent":"K55","ID":19973,"Name":"- 340 - RR","PlayerID":849018239,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19973","ServerKey":"pl181","X":599,"Y":599},{"Bonus":0,"Continent":"K43","ID":19974,"Name":"A0207","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19974","ServerKey":"pl181","X":365,"Y":470},{"Bonus":0,"Continent":"K65","ID":19975,"Name":"Gniazdko","PlayerID":8627359,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19975","ServerKey":"pl181","X":579,"Y":610},{"Bonus":0,"Continent":"K35","ID":19976,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":7959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19976","ServerKey":"pl181","X":562,"Y":377},{"Bonus":7,"Continent":"K64","ID":19977,"Name":"Ave Why!","PlayerID":698585370,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19977","ServerKey":"pl181","X":492,"Y":641},{"Bonus":0,"Continent":"K64","ID":19978,"Name":"Ave Why!","PlayerID":698585370,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19978","ServerKey":"pl181","X":492,"Y":642},{"Bonus":0,"Continent":"K43","ID":19979,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19979","ServerKey":"pl181","X":368,"Y":450},{"Bonus":0,"Continent":"K34","ID":19980,"Name":"c Kolwicz 003","PlayerID":3909522,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19980","ServerKey":"pl181","X":409,"Y":390},{"Bonus":0,"Continent":"K65","ID":19981,"Name":"gram w kuchni .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19981","ServerKey":"pl181","X":574,"Y":622},{"Bonus":0,"Continent":"K53","ID":19982,"Name":"R016","PlayerID":8607734,"Points":3980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19982","ServerKey":"pl181","X":383,"Y":571},{"Bonus":0,"Continent":"K65","ID":19983,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19983","ServerKey":"pl181","X":558,"Y":625},{"Bonus":0,"Continent":"K56","ID":19984,"Name":"020","PlayerID":8428196,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19984","ServerKey":"pl181","X":631,"Y":549},{"Bonus":0,"Continent":"K46","ID":19985,"Name":"Jan III Nord K","PlayerID":879782,"Points":9686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19985","ServerKey":"pl181","X":633,"Y":458},{"Bonus":0,"Continent":"K65","ID":19986,"Name":"001","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19986","ServerKey":"pl181","X":589,"Y":610},{"Bonus":6,"Continent":"K34","ID":19987,"Name":"c 006 Osada","PlayerID":3909522,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19987","ServerKey":"pl181","X":413,"Y":394},{"Bonus":0,"Continent":"K56","ID":19988,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19988","ServerKey":"pl181","X":636,"Y":541},{"Bonus":0,"Continent":"K65","ID":19989,"Name":"nic","PlayerID":699828685,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19989","ServerKey":"pl181","X":570,"Y":622},{"Bonus":0,"Continent":"K34","ID":19990,"Name":"c Kolwicz 001","PlayerID":3909522,"Points":8832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19990","ServerKey":"pl181","X":407,"Y":391},{"Bonus":0,"Continent":"K56","ID":19991,"Name":"020","PlayerID":849095227,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19991","ServerKey":"pl181","X":630,"Y":549},{"Bonus":0,"Continent":"K43","ID":19992,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19992","ServerKey":"pl181","X":371,"Y":453},{"Bonus":0,"Continent":"K45","ID":19993,"Name":"Wioska s","PlayerID":849044961,"Points":4368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19993","ServerKey":"pl181","X":507,"Y":404},{"Bonus":0,"Continent":"K64","ID":19994,"Name":"054","PlayerID":849084985,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19994","ServerKey":"pl181","X":444,"Y":628},{"Bonus":0,"Continent":"K53","ID":19995,"Name":"077","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19995","ServerKey":"pl181","X":359,"Y":519},{"Bonus":0,"Continent":"K34","ID":19996,"Name":"0125","PlayerID":699431255,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19996","ServerKey":"pl181","X":435,"Y":376},{"Bonus":0,"Continent":"K35","ID":19997,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19997","ServerKey":"pl181","X":532,"Y":397},{"Bonus":0,"Continent":"K34","ID":19998,"Name":"0143","PlayerID":699431255,"Points":7249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19998","ServerKey":"pl181","X":432,"Y":377},{"Bonus":8,"Continent":"K46","ID":19999,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=19999","ServerKey":"pl181","X":606,"Y":407},{"Bonus":0,"Continent":"K56","ID":20001,"Name":"025 Rivia","PlayerID":699272880,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20001","ServerKey":"pl181","X":612,"Y":579},{"Bonus":0,"Continent":"K46","ID":20002,"Name":"006 Legio I Flavia Gallicana","PlayerID":699878150,"Points":8107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20002","ServerKey":"pl181","X":640,"Y":491},{"Bonus":0,"Continent":"K65","ID":20003,"Name":"0375","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20003","ServerKey":"pl181","X":565,"Y":623},{"Bonus":0,"Continent":"K34","ID":20004,"Name":"033","PlayerID":849010255,"Points":6542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20004","ServerKey":"pl181","X":481,"Y":361},{"Bonus":0,"Continent":"K35","ID":20005,"Name":"U-7","PlayerID":3600737,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20005","ServerKey":"pl181","X":578,"Y":385},{"Bonus":0,"Continent":"K64","ID":20006,"Name":"0033 Wioska barbarzyƄska","PlayerID":9060641,"Points":5807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20006","ServerKey":"pl181","X":410,"Y":610},{"Bonus":0,"Continent":"K46","ID":20007,"Name":"038 Orthiad","PlayerID":8337151,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20007","ServerKey":"pl181","X":626,"Y":434},{"Bonus":0,"Continent":"K64","ID":20009,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":8639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20009","ServerKey":"pl181","X":433,"Y":620},{"Bonus":0,"Continent":"K34","ID":20010,"Name":"Konfederacja","PlayerID":848915730,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20010","ServerKey":"pl181","X":455,"Y":369},{"Bonus":0,"Continent":"K65","ID":20011,"Name":"nic","PlayerID":699828685,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20011","ServerKey":"pl181","X":573,"Y":622},{"Bonus":0,"Continent":"K64","ID":20013,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20013","ServerKey":"pl181","X":468,"Y":637},{"Bonus":0,"Continent":"K64","ID":20014,"Name":"Pobozowisko","PlayerID":699513260,"Points":10558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20014","ServerKey":"pl181","X":409,"Y":607},{"Bonus":0,"Continent":"K65","ID":20015,"Name":"Sony 911","PlayerID":1415009,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20015","ServerKey":"pl181","X":582,"Y":611},{"Bonus":0,"Continent":"K53","ID":20016,"Name":"155 Ale mnie gƂówka boli","PlayerID":699382126,"Points":7241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20016","ServerKey":"pl181","X":376,"Y":566},{"Bonus":0,"Continent":"K46","ID":20017,"Name":"018 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20017","ServerKey":"pl181","X":632,"Y":451},{"Bonus":0,"Continent":"K45","ID":20018,"Name":"Paulina ObroƄca Kuwety","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20018","ServerKey":"pl181","X":538,"Y":429},{"Bonus":0,"Continent":"K43","ID":20019,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20019","ServerKey":"pl181","X":369,"Y":442},{"Bonus":0,"Continent":"K53","ID":20020,"Name":"153 Ale mnie gƂówka boli","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20020","ServerKey":"pl181","X":376,"Y":567},{"Bonus":0,"Continent":"K34","ID":20021,"Name":"008","PlayerID":699883079,"Points":9672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20021","ServerKey":"pl181","X":456,"Y":366},{"Bonus":0,"Continent":"K46","ID":20022,"Name":"017 Legio XV Apollinaris","PlayerID":699878150,"Points":4194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20022","ServerKey":"pl181","X":640,"Y":497},{"Bonus":0,"Continent":"K46","ID":20023,"Name":"Jehu_Kingdom_58","PlayerID":8785314,"Points":6036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20023","ServerKey":"pl181","X":637,"Y":476},{"Bonus":0,"Continent":"K64","ID":20025,"Name":"Ave Why!","PlayerID":698585370,"Points":9029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20025","ServerKey":"pl181","X":459,"Y":636},{"Bonus":0,"Continent":"K56","ID":20026,"Name":"084","PlayerID":699351301,"Points":6294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20026","ServerKey":"pl181","X":642,"Y":511},{"Bonus":0,"Continent":"K65","ID":20027,"Name":"kathare","PlayerID":873575,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20027","ServerKey":"pl181","X":547,"Y":636},{"Bonus":0,"Continent":"K43","ID":20028,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20028","ServerKey":"pl181","X":370,"Y":457},{"Bonus":0,"Continent":"K65","ID":20029,"Name":"0023","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20029","ServerKey":"pl181","X":538,"Y":638},{"Bonus":0,"Continent":"K56","ID":20030,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20030","ServerKey":"pl181","X":638,"Y":531},{"Bonus":0,"Continent":"K53","ID":20031,"Name":"pepe","PlayerID":849030226,"Points":6715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20031","ServerKey":"pl181","X":361,"Y":530},{"Bonus":0,"Continent":"K53","ID":20032,"Name":"002","PlayerID":699621601,"Points":8746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20032","ServerKey":"pl181","X":384,"Y":572},{"Bonus":0,"Continent":"K46","ID":20033,"Name":"#029.516|501","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20033","ServerKey":"pl181","X":635,"Y":452},{"Bonus":0,"Continent":"K34","ID":20034,"Name":"K34 - [146] Before Land","PlayerID":699088769,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20034","ServerKey":"pl181","X":445,"Y":371},{"Bonus":0,"Continent":"K53","ID":20035,"Name":"042","PlayerID":6853693,"Points":6425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20035","ServerKey":"pl181","X":367,"Y":548},{"Bonus":0,"Continent":"K64","ID":20036,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20036","ServerKey":"pl181","X":491,"Y":637},{"Bonus":0,"Continent":"K56","ID":20037,"Name":"080","PlayerID":699351301,"Points":8140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20037","ServerKey":"pl181","X":637,"Y":522},{"Bonus":0,"Continent":"K35","ID":20038,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20038","ServerKey":"pl181","X":522,"Y":378},{"Bonus":0,"Continent":"K53","ID":20039,"Name":"027","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20039","ServerKey":"pl181","X":361,"Y":531},{"Bonus":4,"Continent":"K53","ID":20040,"Name":"007","PlayerID":698641566,"Points":4344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20040","ServerKey":"pl181","X":363,"Y":519},{"Bonus":0,"Continent":"K46","ID":20041,"Name":"0043","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20041","ServerKey":"pl181","X":620,"Y":423},{"Bonus":0,"Continent":"K46","ID":20042,"Name":"612|422 Wioska barbarzyƄska10","PlayerID":6822957,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20042","ServerKey":"pl181","X":612,"Y":422},{"Bonus":0,"Continent":"K36","ID":20043,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20043","ServerKey":"pl181","X":600,"Y":398},{"Bonus":0,"Continent":"K43","ID":20044,"Name":"A0202","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20044","ServerKey":"pl181","X":365,"Y":471},{"Bonus":0,"Continent":"K65","ID":20045,"Name":"#0027","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20045","ServerKey":"pl181","X":547,"Y":627},{"Bonus":0,"Continent":"K43","ID":20046,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20046","ServerKey":"pl181","X":366,"Y":450},{"Bonus":4,"Continent":"K53","ID":20047,"Name":"003","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20047","ServerKey":"pl181","X":365,"Y":542},{"Bonus":0,"Continent":"K56","ID":20048,"Name":"009","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20048","ServerKey":"pl181","X":631,"Y":547},{"Bonus":0,"Continent":"K53","ID":20049,"Name":"053","PlayerID":6853693,"Points":6381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20049","ServerKey":"pl181","X":364,"Y":518},{"Bonus":0,"Continent":"K65","ID":20050,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20050","ServerKey":"pl181","X":547,"Y":620},{"Bonus":0,"Continent":"K56","ID":20051,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20051","ServerKey":"pl181","X":625,"Y":567},{"Bonus":0,"Continent":"K53","ID":20052,"Name":"021","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20052","ServerKey":"pl181","X":361,"Y":516},{"Bonus":0,"Continent":"K64","ID":20053,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20053","ServerKey":"pl181","X":496,"Y":639},{"Bonus":0,"Continent":"K43","ID":20054,"Name":"A0221","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20054","ServerKey":"pl181","X":366,"Y":472},{"Bonus":0,"Continent":"K43","ID":20055,"Name":"Westcoast.108","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20055","ServerKey":"pl181","X":379,"Y":432},{"Bonus":0,"Continent":"K35","ID":20056,"Name":"yyyy","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20056","ServerKey":"pl181","X":504,"Y":363},{"Bonus":0,"Continent":"K65","ID":20057,"Name":"nic","PlayerID":699828685,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20057","ServerKey":"pl181","X":574,"Y":621},{"Bonus":0,"Continent":"K35","ID":20058,"Name":"CSA","PlayerID":7651093,"Points":6169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20058","ServerKey":"pl181","X":525,"Y":362},{"Bonus":0,"Continent":"K64","ID":20059,"Name":"A33","PlayerID":849037407,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20059","ServerKey":"pl181","X":463,"Y":635},{"Bonus":0,"Continent":"K53","ID":20060,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20060","ServerKey":"pl181","X":393,"Y":587},{"Bonus":0,"Continent":"K43","ID":20061,"Name":"Mniejsze zƂo 0027","PlayerID":699794765,"Points":9229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20061","ServerKey":"pl181","X":363,"Y":470},{"Bonus":2,"Continent":"K53","ID":20062,"Name":"056 Kuzyn skonfiskowaƂ Drewnik","PlayerID":699382126,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20062","ServerKey":"pl181","X":378,"Y":569},{"Bonus":0,"Continent":"K44","ID":20063,"Name":"No Way","PlayerID":6258092,"Points":9048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20063","ServerKey":"pl181","X":402,"Y":470},{"Bonus":0,"Continent":"K56","ID":20064,"Name":"*5622*a WesoƂa","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20064","ServerKey":"pl181","X":638,"Y":523},{"Bonus":0,"Continent":"K34","ID":20065,"Name":"0057","PlayerID":699431255,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20065","ServerKey":"pl181","X":444,"Y":368},{"Bonus":0,"Continent":"K64","ID":20067,"Name":"019","PlayerID":849084985,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20067","ServerKey":"pl181","X":445,"Y":629},{"Bonus":0,"Continent":"K43","ID":20068,"Name":"Westcoast.083","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20068","ServerKey":"pl181","X":396,"Y":411},{"Bonus":0,"Continent":"K43","ID":20069,"Name":"Westcoast.109","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20069","ServerKey":"pl181","X":378,"Y":434},{"Bonus":0,"Continent":"K34","ID":20070,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20070","ServerKey":"pl181","X":433,"Y":381},{"Bonus":0,"Continent":"K35","ID":20072,"Name":"011 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20072","ServerKey":"pl181","X":535,"Y":368},{"Bonus":0,"Continent":"K56","ID":20073,"Name":"[168]","PlayerID":8000875,"Points":6823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20073","ServerKey":"pl181","X":633,"Y":547},{"Bonus":0,"Continent":"K46","ID":20074,"Name":"026.","PlayerID":849094609,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20074","ServerKey":"pl181","X":643,"Y":493},{"Bonus":0,"Continent":"K35","ID":20075,"Name":"212","PlayerID":849064752,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20075","ServerKey":"pl181","X":577,"Y":380},{"Bonus":0,"Continent":"K34","ID":20076,"Name":"0056","PlayerID":699431255,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20076","ServerKey":"pl181","X":449,"Y":367},{"Bonus":0,"Continent":"K53","ID":20078,"Name":"pepe","PlayerID":849030226,"Points":6048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20078","ServerKey":"pl181","X":361,"Y":524},{"Bonus":0,"Continent":"K34","ID":20079,"Name":"#0032 gram w ligę","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20079","ServerKey":"pl181","X":462,"Y":364},{"Bonus":0,"Continent":"K35","ID":20080,"Name":"051 Wioska barbarzyƄska","PlayerID":699854484,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20080","ServerKey":"pl181","X":543,"Y":365},{"Bonus":0,"Continent":"K65","ID":20081,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20081","ServerKey":"pl181","X":504,"Y":643},{"Bonus":0,"Continent":"K45","ID":20082,"Name":"Ć»elazna","PlayerID":698349125,"Points":6502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20082","ServerKey":"pl181","X":506,"Y":488},{"Bonus":0,"Continent":"K45","ID":20083,"Name":"A READY","PlayerID":7915966,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20083","ServerKey":"pl181","X":591,"Y":403},{"Bonus":0,"Continent":"K65","ID":20084,"Name":"kathare","PlayerID":873575,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20084","ServerKey":"pl181","X":556,"Y":632},{"Bonus":0,"Continent":"K44","ID":20085,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20085","ServerKey":"pl181","X":401,"Y":405},{"Bonus":0,"Continent":"K35","ID":20086,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20086","ServerKey":"pl181","X":548,"Y":365},{"Bonus":0,"Continent":"K56","ID":20087,"Name":"C012 Ankhsunamon","PlayerID":8096537,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20087","ServerKey":"pl181","X":623,"Y":564},{"Bonus":0,"Continent":"K64","ID":20088,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20088","ServerKey":"pl181","X":498,"Y":639},{"Bonus":0,"Continent":"K65","ID":20089,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20089","ServerKey":"pl181","X":536,"Y":637},{"Bonus":0,"Continent":"K65","ID":20090,"Name":"sony911","PlayerID":1415009,"Points":9060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20090","ServerKey":"pl181","X":575,"Y":618},{"Bonus":1,"Continent":"K43","ID":20091,"Name":"WiedĆșma - Dragoni","PlayerID":698884287,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20091","ServerKey":"pl181","X":386,"Y":423},{"Bonus":0,"Continent":"K43","ID":20092,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20092","ServerKey":"pl181","X":367,"Y":452},{"Bonus":0,"Continent":"K43","ID":20093,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20093","ServerKey":"pl181","X":394,"Y":413},{"Bonus":0,"Continent":"K46","ID":20094,"Name":"*0018 Baraki","PlayerID":8459255,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20094","ServerKey":"pl181","X":623,"Y":433},{"Bonus":0,"Continent":"K43","ID":20095,"Name":"A0148","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20095","ServerKey":"pl181","X":356,"Y":496},{"Bonus":0,"Continent":"K65","ID":20096,"Name":"Sony 911","PlayerID":1415009,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20096","ServerKey":"pl181","X":576,"Y":617},{"Bonus":0,"Continent":"K46","ID":20097,"Name":"003 Hello Moto","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20097","ServerKey":"pl181","X":600,"Y":419},{"Bonus":0,"Continent":"K65","ID":20098,"Name":"0074","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20098","ServerKey":"pl181","X":559,"Y":624},{"Bonus":0,"Continent":"K34","ID":20100,"Name":"044","PlayerID":699783765,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20100","ServerKey":"pl181","X":433,"Y":389},{"Bonus":0,"Continent":"K46","ID":20101,"Name":"#021.510|488","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20101","ServerKey":"pl181","X":629,"Y":439},{"Bonus":0,"Continent":"K46","ID":20102,"Name":"Wioska (029)","PlayerID":698232227,"Points":8907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20102","ServerKey":"pl181","X":639,"Y":472},{"Bonus":0,"Continent":"K64","ID":20103,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20103","ServerKey":"pl181","X":493,"Y":640},{"Bonus":0,"Continent":"K34","ID":20104,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20104","ServerKey":"pl181","X":481,"Y":383},{"Bonus":0,"Continent":"K34","ID":20105,"Name":"Fresio","PlayerID":699660539,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20105","ServerKey":"pl181","X":435,"Y":374},{"Bonus":0,"Continent":"K56","ID":20106,"Name":"B.037","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20106","ServerKey":"pl181","X":642,"Y":504},{"Bonus":0,"Continent":"K46","ID":20107,"Name":"Gattacka","PlayerID":699298370,"Points":8844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20107","ServerKey":"pl181","X":609,"Y":408},{"Bonus":0,"Continent":"K64","ID":20108,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20108","ServerKey":"pl181","X":485,"Y":642},{"Bonus":0,"Continent":"K43","ID":20109,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20109","ServerKey":"pl181","X":365,"Y":453},{"Bonus":0,"Continent":"K64","ID":20110,"Name":"Pobozowisko","PlayerID":699513260,"Points":8331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20110","ServerKey":"pl181","X":407,"Y":608},{"Bonus":0,"Continent":"K65","ID":20111,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20111","ServerKey":"pl181","X":552,"Y":634},{"Bonus":0,"Continent":"K46","ID":20112,"Name":"012 Legio I Illyricorum","PlayerID":699878150,"Points":7816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20112","ServerKey":"pl181","X":642,"Y":487},{"Bonus":0,"Continent":"K65","ID":20113,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20113","ServerKey":"pl181","X":531,"Y":633},{"Bonus":0,"Continent":"K35","ID":20115,"Name":"0019","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20115","ServerKey":"pl181","X":548,"Y":369},{"Bonus":0,"Continent":"K35","ID":20116,"Name":"028. Hakerrrrr","PlayerID":699799629,"Points":6834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20116","ServerKey":"pl181","X":576,"Y":385},{"Bonus":0,"Continent":"K65","ID":20117,"Name":"0369","PlayerID":698659980,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20117","ServerKey":"pl181","X":561,"Y":627},{"Bonus":0,"Continent":"K34","ID":20119,"Name":"065","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20119","ServerKey":"pl181","X":465,"Y":361},{"Bonus":0,"Continent":"K45","ID":20120,"Name":"0031","PlayerID":698599365,"Points":9490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20120","ServerKey":"pl181","X":508,"Y":497},{"Bonus":0,"Continent":"K46","ID":20121,"Name":"021 | PALESTINA | Msqt [*]","PlayerID":9228039,"Points":7939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20121","ServerKey":"pl181","X":630,"Y":453},{"Bonus":0,"Continent":"K35","ID":20122,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20122","ServerKey":"pl181","X":508,"Y":360},{"Bonus":0,"Continent":"K56","ID":20123,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20123","ServerKey":"pl181","X":622,"Y":568},{"Bonus":0,"Continent":"K65","ID":20124,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699725436,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20124","ServerKey":"pl181","X":501,"Y":643},{"Bonus":0,"Continent":"K46","ID":20125,"Name":"#063.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20125","ServerKey":"pl181","X":622,"Y":435},{"Bonus":0,"Continent":"K43","ID":20126,"Name":"Wioska 3","PlayerID":699343887,"Points":3086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20126","ServerKey":"pl181","X":382,"Y":427},{"Bonus":0,"Continent":"K56","ID":20127,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20127","ServerKey":"pl181","X":634,"Y":539},{"Bonus":0,"Continent":"K64","ID":20128,"Name":"Pobozowisko","PlayerID":699513260,"Points":9193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20128","ServerKey":"pl181","X":408,"Y":607},{"Bonus":0,"Continent":"K34","ID":20130,"Name":"0066","PlayerID":699431255,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20130","ServerKey":"pl181","X":456,"Y":369},{"Bonus":0,"Continent":"K53","ID":20132,"Name":"084","PlayerID":6853693,"Points":6951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20132","ServerKey":"pl181","X":365,"Y":544},{"Bonus":0,"Continent":"K64","ID":20133,"Name":"Ave Why!","PlayerID":698585370,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20133","ServerKey":"pl181","X":491,"Y":643},{"Bonus":3,"Continent":"K53","ID":20134,"Name":"011","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20134","ServerKey":"pl181","X":358,"Y":517},{"Bonus":0,"Continent":"K56","ID":20135,"Name":"[014]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20135","ServerKey":"pl181","X":636,"Y":536},{"Bonus":0,"Continent":"K46","ID":20136,"Name":"*0031 Baraki","PlayerID":8459255,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20136","ServerKey":"pl181","X":625,"Y":437},{"Bonus":5,"Continent":"K46","ID":20137,"Name":"018 Tronjheim","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20137","ServerKey":"pl181","X":626,"Y":435},{"Bonus":0,"Continent":"K56","ID":20138,"Name":"015","PlayerID":698786826,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20138","ServerKey":"pl181","X":605,"Y":596},{"Bonus":0,"Continent":"K53","ID":20139,"Name":"25. Wioska 25","PlayerID":849091769,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20139","ServerKey":"pl181","X":373,"Y":552},{"Bonus":0,"Continent":"K43","ID":20140,"Name":"011","PlayerID":848921536,"Points":3962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20140","ServerKey":"pl181","X":387,"Y":422},{"Bonus":0,"Continent":"K35","ID":20141,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20141","ServerKey":"pl181","X":506,"Y":363},{"Bonus":0,"Continent":"K35","ID":20142,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20142","ServerKey":"pl181","X":514,"Y":363},{"Bonus":0,"Continent":"K64","ID":20143,"Name":"020","PlayerID":849084985,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20143","ServerKey":"pl181","X":444,"Y":631},{"Bonus":0,"Continent":"K43","ID":20144,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20144","ServerKey":"pl181","X":387,"Y":418},{"Bonus":0,"Continent":"K53","ID":20145,"Name":"059","PlayerID":6853693,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20145","ServerKey":"pl181","X":363,"Y":513},{"Bonus":0,"Continent":"K65","ID":20146,"Name":"025","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20146","ServerKey":"pl181","X":590,"Y":608},{"Bonus":0,"Continent":"K34","ID":20147,"Name":"066","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20147","ServerKey":"pl181","X":468,"Y":360},{"Bonus":0,"Continent":"K46","ID":20148,"Name":"0046","PlayerID":699429153,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20148","ServerKey":"pl181","X":621,"Y":422},{"Bonus":0,"Continent":"K65","ID":20149,"Name":"0021","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20149","ServerKey":"pl181","X":537,"Y":638},{"Bonus":0,"Continent":"K64","ID":20150,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20150","ServerKey":"pl181","X":415,"Y":615},{"Bonus":0,"Continent":"K56","ID":20151,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20151","ServerKey":"pl181","X":633,"Y":551},{"Bonus":0,"Continent":"K34","ID":20152,"Name":"0112","PlayerID":699431255,"Points":9002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20152","ServerKey":"pl181","X":436,"Y":378},{"Bonus":7,"Continent":"K35","ID":20153,"Name":"093","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20153","ServerKey":"pl181","X":584,"Y":385},{"Bonus":0,"Continent":"K43","ID":20154,"Name":"A0186","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20154","ServerKey":"pl181","X":360,"Y":477},{"Bonus":0,"Continent":"K35","ID":20155,"Name":"025 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20155","ServerKey":"pl181","X":538,"Y":365},{"Bonus":0,"Continent":"K45","ID":20156,"Name":"012 Pole Mokotowskie","PlayerID":8155296,"Points":4477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20156","ServerKey":"pl181","X":538,"Y":468},{"Bonus":0,"Continent":"K64","ID":20157,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20157","ServerKey":"pl181","X":495,"Y":643},{"Bonus":0,"Continent":"K34","ID":20158,"Name":"122","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20158","ServerKey":"pl181","X":490,"Y":362},{"Bonus":3,"Continent":"K56","ID":20159,"Name":"012","PlayerID":849095227,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20159","ServerKey":"pl181","X":635,"Y":549},{"Bonus":0,"Continent":"K34","ID":20160,"Name":"067","PlayerID":698739350,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20160","ServerKey":"pl181","X":471,"Y":361},{"Bonus":0,"Continent":"K43","ID":20161,"Name":"A0143","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20161","ServerKey":"pl181","X":360,"Y":495},{"Bonus":0,"Continent":"K64","ID":20162,"Name":"|X| Roguebell","PlayerID":698147372,"Points":9191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20162","ServerKey":"pl181","X":467,"Y":640},{"Bonus":0,"Continent":"K53","ID":20163,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20163","ServerKey":"pl181","X":370,"Y":547},{"Bonus":0,"Continent":"K64","ID":20164,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20164","ServerKey":"pl181","X":420,"Y":613},{"Bonus":0,"Continent":"K64","ID":20165,"Name":"ƚpij sƂodko naleƛniczku","PlayerID":6948793,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20165","ServerKey":"pl181","X":483,"Y":639},{"Bonus":5,"Continent":"K43","ID":20166,"Name":"Osada koczownikĂłw","PlayerID":699644054,"Points":1244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20166","ServerKey":"pl181","X":376,"Y":429},{"Bonus":0,"Continent":"K43","ID":20167,"Name":"Westcoast.098","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20167","ServerKey":"pl181","X":378,"Y":430},{"Bonus":0,"Continent":"K64","ID":20169,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20169","ServerKey":"pl181","X":470,"Y":640},{"Bonus":0,"Continent":"K53","ID":20170,"Name":"57. Wioska 57","PlayerID":849091769,"Points":6858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20170","ServerKey":"pl181","X":366,"Y":548},{"Bonus":0,"Continent":"K53","ID":20171,"Name":"Pobozowisko","PlayerID":699513260,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20171","ServerKey":"pl181","X":386,"Y":587},{"Bonus":0,"Continent":"K65","ID":20172,"Name":"#0040","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20172","ServerKey":"pl181","X":542,"Y":631},{"Bonus":0,"Continent":"K64","ID":20173,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20173","ServerKey":"pl181","X":484,"Y":639},{"Bonus":4,"Continent":"K34","ID":20174,"Name":"Konfederacja +","PlayerID":848915730,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20174","ServerKey":"pl181","X":456,"Y":368},{"Bonus":0,"Continent":"K65","ID":20175,"Name":"0408","PlayerID":698659980,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20175","ServerKey":"pl181","X":540,"Y":636},{"Bonus":0,"Continent":"K34","ID":20176,"Name":"034","PlayerID":849010255,"Points":8092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20176","ServerKey":"pl181","X":483,"Y":360},{"Bonus":0,"Continent":"K43","ID":20177,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20177","ServerKey":"pl181","X":369,"Y":456},{"Bonus":0,"Continent":"K34","ID":20178,"Name":"[B]_[202] Dejv.oldplyr","PlayerID":699380607,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20178","ServerKey":"pl181","X":431,"Y":382},{"Bonus":0,"Continent":"K34","ID":20179,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20179","ServerKey":"pl181","X":441,"Y":370},{"Bonus":0,"Continent":"K34","ID":20180,"Name":"0041","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20180","ServerKey":"pl181","X":453,"Y":367},{"Bonus":0,"Continent":"K53","ID":20181,"Name":"05. Wioska 5","PlayerID":849091769,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20181","ServerKey":"pl181","X":372,"Y":556},{"Bonus":0,"Continent":"K34","ID":20182,"Name":"039....STRAZAK","PlayerID":6920960,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20182","ServerKey":"pl181","X":459,"Y":363},{"Bonus":0,"Continent":"K34","ID":20183,"Name":"Lecymy DUR","PlayerID":6169408,"Points":5929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20183","ServerKey":"pl181","X":433,"Y":373},{"Bonus":0,"Continent":"K43","ID":20184,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20184","ServerKey":"pl181","X":367,"Y":446},{"Bonus":0,"Continent":"K56","ID":20185,"Name":"016","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20185","ServerKey":"pl181","X":611,"Y":583},{"Bonus":0,"Continent":"K35","ID":20186,"Name":"024 023","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20186","ServerKey":"pl181","X":533,"Y":362},{"Bonus":0,"Continent":"K34","ID":20187,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20187","ServerKey":"pl181","X":443,"Y":375},{"Bonus":0,"Continent":"K43","ID":20188,"Name":"Wioska 1","PlayerID":699343887,"Points":6029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20188","ServerKey":"pl181","X":382,"Y":428},{"Bonus":0,"Continent":"K56","ID":20189,"Name":"F 003","PlayerID":8078914,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20189","ServerKey":"pl181","X":637,"Y":508},{"Bonus":0,"Continent":"K65","ID":20190,"Name":"~~020~~","PlayerID":7829201,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20190","ServerKey":"pl181","X":598,"Y":605},{"Bonus":0,"Continent":"K53","ID":20191,"Name":"037","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20191","ServerKey":"pl181","X":366,"Y":529},{"Bonus":7,"Continent":"K56","ID":20192,"Name":"0016 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20192","ServerKey":"pl181","X":621,"Y":565},{"Bonus":0,"Continent":"K34","ID":20193,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20193","ServerKey":"pl181","X":442,"Y":370},{"Bonus":0,"Continent":"K35","ID":20194,"Name":"025 026","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20194","ServerKey":"pl181","X":536,"Y":363},{"Bonus":0,"Continent":"K35","ID":20195,"Name":"012 Wioska barbarzyƄska","PlayerID":699509239,"Points":6340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20195","ServerKey":"pl181","X":567,"Y":376},{"Bonus":0,"Continent":"K64","ID":20196,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20196","ServerKey":"pl181","X":497,"Y":640},{"Bonus":0,"Continent":"K34","ID":20197,"Name":"129","PlayerID":7271812,"Points":5610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20197","ServerKey":"pl181","X":475,"Y":360},{"Bonus":0,"Continent":"K56","ID":20198,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20198","ServerKey":"pl181","X":618,"Y":579},{"Bonus":0,"Continent":"K34","ID":20199,"Name":"033...strazak","PlayerID":6920960,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20199","ServerKey":"pl181","X":461,"Y":365},{"Bonus":0,"Continent":"K65","ID":20200,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20200","ServerKey":"pl181","X":552,"Y":629},{"Bonus":0,"Continent":"K34","ID":20201,"Name":"Fresio","PlayerID":699660539,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20201","ServerKey":"pl181","X":434,"Y":373},{"Bonus":0,"Continent":"K45","ID":20202,"Name":"*3 Myszki Harcują","PlayerID":848985692,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20202","ServerKey":"pl181","X":588,"Y":429},{"Bonus":0,"Continent":"K35","ID":20203,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20203","ServerKey":"pl181","X":505,"Y":359},{"Bonus":0,"Continent":"K56","ID":20204,"Name":"007","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20204","ServerKey":"pl181","X":631,"Y":557},{"Bonus":0,"Continent":"K53","ID":20206,"Name":"Wioska barbarzyƄska","PlayerID":699326171,"Points":8150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20206","ServerKey":"pl181","X":372,"Y":554},{"Bonus":0,"Continent":"K65","ID":20207,"Name":"~~038~~","PlayerID":7829201,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20207","ServerKey":"pl181","X":596,"Y":603},{"Bonus":0,"Continent":"K46","ID":20208,"Name":"*0012 Baraki","PlayerID":8459255,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20208","ServerKey":"pl181","X":620,"Y":429},{"Bonus":0,"Continent":"K64","ID":20209,"Name":"008Gąsiory","PlayerID":698620694,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20209","ServerKey":"pl181","X":450,"Y":633},{"Bonus":9,"Continent":"K43","ID":20210,"Name":"WiedĆșma - Honolulu","PlayerID":698884287,"Points":9474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20210","ServerKey":"pl181","X":381,"Y":420},{"Bonus":0,"Continent":"K56","ID":20212,"Name":"024","PlayerID":849095227,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20212","ServerKey":"pl181","X":627,"Y":561},{"Bonus":0,"Continent":"K56","ID":20213,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20213","ServerKey":"pl181","X":633,"Y":537},{"Bonus":0,"Continent":"K34","ID":20214,"Name":"037","PlayerID":698364331,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20214","ServerKey":"pl181","X":424,"Y":385},{"Bonus":0,"Continent":"K34","ID":20215,"Name":"068","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20215","ServerKey":"pl181","X":476,"Y":363},{"Bonus":0,"Continent":"K64","ID":20216,"Name":"|X| Caveham","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20216","ServerKey":"pl181","X":468,"Y":639},{"Bonus":0,"Continent":"K43","ID":20217,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20217","ServerKey":"pl181","X":371,"Y":443},{"Bonus":0,"Continent":"K65","ID":20218,"Name":"W.08","PlayerID":873575,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20218","ServerKey":"pl181","X":582,"Y":614},{"Bonus":0,"Continent":"K53","ID":20219,"Name":"-056-","PlayerID":699097885,"Points":5638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20219","ServerKey":"pl181","X":377,"Y":569},{"Bonus":0,"Continent":"K53","ID":20220,"Name":"014 181","PlayerID":698807570,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20220","ServerKey":"pl181","X":358,"Y":502},{"Bonus":0,"Continent":"K43","ID":20221,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20221","ServerKey":"pl181","X":366,"Y":452},{"Bonus":0,"Continent":"K35","ID":20222,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20222","ServerKey":"pl181","X":558,"Y":370},{"Bonus":0,"Continent":"K64","ID":20223,"Name":"A014","PlayerID":699383279,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20223","ServerKey":"pl181","X":477,"Y":638},{"Bonus":0,"Continent":"K65","ID":20224,"Name":"015","PlayerID":699567608,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20224","ServerKey":"pl181","X":588,"Y":609},{"Bonus":0,"Continent":"K64","ID":20225,"Name":"062","PlayerID":699783765,"Points":4813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20225","ServerKey":"pl181","X":427,"Y":623},{"Bonus":0,"Continent":"K53","ID":20226,"Name":"Pobozowisko","PlayerID":699513260,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20226","ServerKey":"pl181","X":398,"Y":593},{"Bonus":0,"Continent":"K53","ID":20227,"Name":"031 181","PlayerID":698807570,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20227","ServerKey":"pl181","X":360,"Y":500},{"Bonus":0,"Continent":"K56","ID":20228,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20228","ServerKey":"pl181","X":618,"Y":576},{"Bonus":0,"Continent":"K53","ID":20229,"Name":"063 #Ć»WMP","PlayerID":8908002,"Points":9565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20229","ServerKey":"pl181","X":370,"Y":544},{"Bonus":7,"Continent":"K43","ID":20231,"Name":"Westcoast.101","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20231","ServerKey":"pl181","X":376,"Y":430},{"Bonus":0,"Continent":"K43","ID":20233,"Name":"A0187","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20233","ServerKey":"pl181","X":360,"Y":487},{"Bonus":0,"Continent":"K56","ID":20234,"Name":"0014 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20234","ServerKey":"pl181","X":613,"Y":581},{"Bonus":0,"Continent":"K56","ID":20235,"Name":"W.181/19","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20235","ServerKey":"pl181","X":639,"Y":529},{"Bonus":0,"Continent":"K35","ID":20236,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20236","ServerKey":"pl181","X":525,"Y":363},{"Bonus":0,"Continent":"K34","ID":20237,"Name":"081","PlayerID":698739350,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20237","ServerKey":"pl181","X":482,"Y":360},{"Bonus":0,"Continent":"K53","ID":20238,"Name":"028","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20238","ServerKey":"pl181","X":360,"Y":530},{"Bonus":0,"Continent":"K34","ID":20239,"Name":"0118","PlayerID":699431255,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20239","ServerKey":"pl181","X":434,"Y":376},{"Bonus":0,"Continent":"K46","ID":20240,"Name":"Gattacka","PlayerID":699298370,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20240","ServerKey":"pl181","X":608,"Y":412},{"Bonus":0,"Continent":"K53","ID":20241,"Name":"38. Wioska 38","PlayerID":849091769,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20241","ServerKey":"pl181","X":376,"Y":569},{"Bonus":0,"Continent":"K34","ID":20242,"Name":"0055","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20242","ServerKey":"pl181","X":460,"Y":366},{"Bonus":0,"Continent":"K46","ID":20243,"Name":"Gattacka","PlayerID":699298370,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20243","ServerKey":"pl181","X":610,"Y":415},{"Bonus":0,"Continent":"K35","ID":20244,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20244","ServerKey":"pl181","X":511,"Y":361},{"Bonus":0,"Continent":"K35","ID":20245,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20245","ServerKey":"pl181","X":524,"Y":365},{"Bonus":0,"Continent":"K53","ID":20246,"Name":"06. Wioska 6","PlayerID":849091769,"Points":8861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20246","ServerKey":"pl181","X":371,"Y":560},{"Bonus":0,"Continent":"K56","ID":20247,"Name":"046","PlayerID":698786826,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20247","ServerKey":"pl181","X":604,"Y":593},{"Bonus":0,"Continent":"K53","ID":20248,"Name":"023","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20248","ServerKey":"pl181","X":363,"Y":534},{"Bonus":0,"Continent":"K34","ID":20249,"Name":"VN Killua Zoldyck","PlayerID":699883079,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20249","ServerKey":"pl181","X":467,"Y":365},{"Bonus":0,"Continent":"K53","ID":20250,"Name":"058","PlayerID":8908002,"Points":3779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20250","ServerKey":"pl181","X":364,"Y":538},{"Bonus":0,"Continent":"K65","ID":20251,"Name":"- 341 - RR","PlayerID":849018239,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20251","ServerKey":"pl181","X":593,"Y":609},{"Bonus":0,"Continent":"K43","ID":20252,"Name":"Mniejsze zƂo 0028","PlayerID":699794765,"Points":7848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20252","ServerKey":"pl181","X":364,"Y":461},{"Bonus":0,"Continent":"K35","ID":20253,"Name":"030 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20253","ServerKey":"pl181","X":540,"Y":364},{"Bonus":0,"Continent":"K56","ID":20254,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20254","ServerKey":"pl181","X":635,"Y":543},{"Bonus":2,"Continent":"K53","ID":20255,"Name":"-040-","PlayerID":699097885,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20255","ServerKey":"pl181","X":387,"Y":579},{"Bonus":0,"Continent":"K56","ID":20256,"Name":"002","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20256","ServerKey":"pl181","X":604,"Y":597},{"Bonus":0,"Continent":"K46","ID":20257,"Name":"Jehu_Kingdom_35_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20257","ServerKey":"pl181","X":627,"Y":447},{"Bonus":0,"Continent":"K65","ID":20258,"Name":"014","PlayerID":699567608,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20258","ServerKey":"pl181","X":588,"Y":608},{"Bonus":0,"Continent":"K56","ID":20259,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":6509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20259","ServerKey":"pl181","X":626,"Y":564},{"Bonus":0,"Continent":"K34","ID":20260,"Name":"072","PlayerID":699796330,"Points":7230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20260","ServerKey":"pl181","X":430,"Y":375},{"Bonus":0,"Continent":"K43","ID":20261,"Name":"A0144","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20261","ServerKey":"pl181","X":358,"Y":494},{"Bonus":0,"Continent":"K56","ID":20262,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20262","ServerKey":"pl181","X":629,"Y":555},{"Bonus":0,"Continent":"K64","ID":20263,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20263","ServerKey":"pl181","X":488,"Y":637},{"Bonus":0,"Continent":"K46","ID":20264,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20264","ServerKey":"pl181","X":606,"Y":403},{"Bonus":0,"Continent":"K46","ID":20265,"Name":"0053","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20265","ServerKey":"pl181","X":614,"Y":412},{"Bonus":5,"Continent":"K64","ID":20266,"Name":"Pobozowisko","PlayerID":699513260,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20266","ServerKey":"pl181","X":405,"Y":606},{"Bonus":0,"Continent":"K43","ID":20267,"Name":"Wioska 4","PlayerID":699343887,"Points":3086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20267","ServerKey":"pl181","X":382,"Y":429},{"Bonus":0,"Continent":"K35","ID":20268,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20268","ServerKey":"pl181","X":513,"Y":362},{"Bonus":0,"Continent":"K64","ID":20269,"Name":"Astapor","PlayerID":6948793,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20269","ServerKey":"pl181","X":466,"Y":636},{"Bonus":0,"Continent":"K43","ID":20270,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20270","ServerKey":"pl181","X":367,"Y":448},{"Bonus":0,"Continent":"K43","ID":20271,"Name":"A0188","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20271","ServerKey":"pl181","X":364,"Y":486},{"Bonus":0,"Continent":"K64","ID":20272,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20272","ServerKey":"pl181","X":490,"Y":641},{"Bonus":2,"Continent":"K34","ID":20273,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20273","ServerKey":"pl181","X":401,"Y":396},{"Bonus":0,"Continent":"K53","ID":20274,"Name":"Knowhere","PlayerID":699723284,"Points":5060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20274","ServerKey":"pl181","X":357,"Y":506},{"Bonus":0,"Continent":"K43","ID":20275,"Name":"tutaj","PlayerID":698884287,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20275","ServerKey":"pl181","X":387,"Y":417},{"Bonus":5,"Continent":"K53","ID":20276,"Name":"005","PlayerID":6853693,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20276","ServerKey":"pl181","X":370,"Y":546},{"Bonus":0,"Continent":"K34","ID":20277,"Name":"001. Las Sherwood","PlayerID":698364331,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20277","ServerKey":"pl181","X":449,"Y":378},{"Bonus":0,"Continent":"K35","ID":20278,"Name":"WE ARE READY!","PlayerID":699759128,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20278","ServerKey":"pl181","X":593,"Y":398},{"Bonus":0,"Continent":"K64","ID":20279,"Name":"049.","PlayerID":849034882,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20279","ServerKey":"pl181","X":469,"Y":635},{"Bonus":4,"Continent":"K53","ID":20280,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20280","ServerKey":"pl181","X":399,"Y":596},{"Bonus":0,"Continent":"K35","ID":20281,"Name":".:091:. ƁOBUZIK","PlayerID":848934935,"Points":5966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20281","ServerKey":"pl181","X":553,"Y":366},{"Bonus":0,"Continent":"K43","ID":20282,"Name":".Krakers. 006","PlayerID":9163140,"Points":2064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20282","ServerKey":"pl181","X":361,"Y":479},{"Bonus":0,"Continent":"K53","ID":20283,"Name":"043","PlayerID":6853693,"Points":5707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20283","ServerKey":"pl181","X":364,"Y":521},{"Bonus":0,"Continent":"K35","ID":20284,"Name":"C 022","PlayerID":6384450,"Points":4953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20284","ServerKey":"pl181","X":589,"Y":391},{"Bonus":0,"Continent":"K43","ID":20285,"Name":"::: B ::: I","PlayerID":848917570,"Points":4155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20285","ServerKey":"pl181","X":365,"Y":475},{"Bonus":0,"Continent":"K65","ID":20286,"Name":"0238","PlayerID":698659980,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20286","ServerKey":"pl181","X":532,"Y":634},{"Bonus":0,"Continent":"K43","ID":20287,"Name":".Krakers. 001","PlayerID":9163140,"Points":5136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20287","ServerKey":"pl181","X":364,"Y":481},{"Bonus":0,"Continent":"K56","ID":20288,"Name":"015","PlayerID":699099811,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20288","ServerKey":"pl181","X":610,"Y":583},{"Bonus":0,"Continent":"K43","ID":20289,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20289","ServerKey":"pl181","X":365,"Y":452},{"Bonus":0,"Continent":"K64","ID":20290,"Name":"018","PlayerID":849084985,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20290","ServerKey":"pl181","X":444,"Y":629},{"Bonus":0,"Continent":"K64","ID":20291,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20291","ServerKey":"pl181","X":474,"Y":637},{"Bonus":0,"Continent":"K43","ID":20292,"Name":"Knowhere","PlayerID":699723284,"Points":10506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20292","ServerKey":"pl181","X":382,"Y":496},{"Bonus":0,"Continent":"K65","ID":20293,"Name":"~~026~~","PlayerID":7829201,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20293","ServerKey":"pl181","X":595,"Y":605},{"Bonus":0,"Continent":"K64","ID":20294,"Name":"Ave Why!","PlayerID":698585370,"Points":7473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20294","ServerKey":"pl181","X":455,"Y":636},{"Bonus":0,"Continent":"K46","ID":20295,"Name":"009. Manchester","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20295","ServerKey":"pl181","X":634,"Y":446},{"Bonus":0,"Continent":"K46","ID":20296,"Name":"004 Legio I Flavia Constantia R","PlayerID":699878150,"Points":5794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20296","ServerKey":"pl181","X":640,"Y":488},{"Bonus":0,"Continent":"K34","ID":20297,"Name":"110","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20297","ServerKey":"pl181","X":478,"Y":360},{"Bonus":0,"Continent":"K34","ID":20298,"Name":"c 0013","PlayerID":3909522,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20298","ServerKey":"pl181","X":411,"Y":389},{"Bonus":0,"Continent":"K35","ID":20299,"Name":"*2*","PlayerID":849064614,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20299","ServerKey":"pl181","X":580,"Y":385},{"Bonus":0,"Continent":"K35","ID":20300,"Name":"026 025","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20300","ServerKey":"pl181","X":542,"Y":362},{"Bonus":0,"Continent":"K35","ID":20301,"Name":"027 028","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20301","ServerKey":"pl181","X":538,"Y":363},{"Bonus":0,"Continent":"K43","ID":20302,"Name":"Westcoast.081","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20302","ServerKey":"pl181","X":397,"Y":407},{"Bonus":0,"Continent":"K34","ID":20303,"Name":"Bagdad","PlayerID":8847546,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20303","ServerKey":"pl181","X":424,"Y":383},{"Bonus":0,"Continent":"K43","ID":20304,"Name":"A0288","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20304","ServerKey":"pl181","X":358,"Y":481},{"Bonus":0,"Continent":"K64","ID":20305,"Name":"0006","PlayerID":6180190,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20305","ServerKey":"pl181","X":480,"Y":637},{"Bonus":0,"Continent":"K35","ID":20306,"Name":"213","PlayerID":849064752,"Points":9104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20306","ServerKey":"pl181","X":579,"Y":387},{"Bonus":0,"Continent":"K35","ID":20307,"Name":"009 Wioska barbarzyƄska","PlayerID":699509239,"Points":4773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20307","ServerKey":"pl181","X":566,"Y":376},{"Bonus":0,"Continent":"K46","ID":20308,"Name":"021.","PlayerID":849094609,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20308","ServerKey":"pl181","X":634,"Y":457},{"Bonus":0,"Continent":"K56","ID":20309,"Name":"016","PlayerID":698786826,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20309","ServerKey":"pl181","X":607,"Y":595},{"Bonus":0,"Continent":"K56","ID":20310,"Name":"=025= Wioska barbarzyƄska","PlayerID":3781794,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20310","ServerKey":"pl181","X":628,"Y":552},{"Bonus":0,"Continent":"K64","ID":20311,"Name":"055","PlayerID":849084985,"Points":8126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20311","ServerKey":"pl181","X":439,"Y":625},{"Bonus":0,"Continent":"K64","ID":20312,"Name":"056","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20312","ServerKey":"pl181","X":440,"Y":624},{"Bonus":0,"Continent":"K64","ID":20313,"Name":"019","PlayerID":699783765,"Points":5610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20313","ServerKey":"pl181","X":430,"Y":622},{"Bonus":0,"Continent":"K64","ID":20314,"Name":"A015","PlayerID":699383279,"Points":9474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20314","ServerKey":"pl181","X":471,"Y":641},{"Bonus":0,"Continent":"K53","ID":20315,"Name":"01. Wioska 1","PlayerID":849091769,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20315","ServerKey":"pl181","X":373,"Y":560},{"Bonus":0,"Continent":"K64","ID":20316,"Name":"Pobozowisko","PlayerID":699513260,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20316","ServerKey":"pl181","X":402,"Y":604},{"Bonus":0,"Continent":"K35","ID":20317,"Name":".:022:. ƁOBUZIK","PlayerID":848934935,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20317","ServerKey":"pl181","X":554,"Y":368},{"Bonus":0,"Continent":"K43","ID":20318,"Name":"005","PlayerID":848921536,"Points":9395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20318","ServerKey":"pl181","X":384,"Y":426},{"Bonus":0,"Continent":"K35","ID":20319,"Name":"Lord Lord Franek .#203","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20319","ServerKey":"pl181","X":515,"Y":358},{"Bonus":0,"Continent":"K56","ID":20320,"Name":"Jaaa","PlayerID":698635863,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20320","ServerKey":"pl181","X":615,"Y":582},{"Bonus":0,"Continent":"K53","ID":20321,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20321","ServerKey":"pl181","X":391,"Y":587},{"Bonus":0,"Continent":"K56","ID":20322,"Name":"042","PlayerID":698786826,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20322","ServerKey":"pl181","X":609,"Y":591},{"Bonus":0,"Continent":"K65","ID":20323,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20323","ServerKey":"pl181","X":510,"Y":639},{"Bonus":0,"Continent":"K46","ID":20324,"Name":"016. Smoke","PlayerID":849095599,"Points":8911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20324","ServerKey":"pl181","X":636,"Y":455},{"Bonus":0,"Continent":"K54","ID":20325,"Name":"keepo","PlayerID":848967710,"Points":4141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20325","ServerKey":"pl181","X":477,"Y":513},{"Bonus":0,"Continent":"K56","ID":20327,"Name":"Salamony","PlayerID":849095778,"Points":6467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20327","ServerKey":"pl181","X":626,"Y":570},{"Bonus":0,"Continent":"K64","ID":20328,"Name":"#044","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20328","ServerKey":"pl181","X":492,"Y":617},{"Bonus":0,"Continent":"K43","ID":20329,"Name":"::: A ::: II","PlayerID":848917570,"Points":4987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20329","ServerKey":"pl181","X":363,"Y":475},{"Bonus":0,"Continent":"K35","ID":20330,"Name":"013 Laleczka Chucky","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20330","ServerKey":"pl181","X":539,"Y":365},{"Bonus":0,"Continent":"K46","ID":20331,"Name":"Gattacka","PlayerID":699298370,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20331","ServerKey":"pl181","X":612,"Y":414},{"Bonus":0,"Continent":"K53","ID":20332,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20332","ServerKey":"pl181","X":399,"Y":594},{"Bonus":0,"Continent":"K56","ID":20333,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20333","ServerKey":"pl181","X":632,"Y":558},{"Bonus":0,"Continent":"K56","ID":20334,"Name":"0010 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20334","ServerKey":"pl181","X":618,"Y":544},{"Bonus":0,"Continent":"K35","ID":20335,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20335","ServerKey":"pl181","X":551,"Y":368},{"Bonus":0,"Continent":"K56","ID":20337,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":5788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20337","ServerKey":"pl181","X":627,"Y":562},{"Bonus":0,"Continent":"K64","ID":20338,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20338","ServerKey":"pl181","X":491,"Y":639},{"Bonus":0,"Continent":"K35","ID":20339,"Name":"Lord Lord Franek .#198","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20339","ServerKey":"pl181","X":514,"Y":357},{"Bonus":0,"Continent":"K65","ID":20340,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20340","ServerKey":"pl181","X":548,"Y":618},{"Bonus":0,"Continent":"K34","ID":20341,"Name":"Syringa vulgaris","PlayerID":699883079,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20341","ServerKey":"pl181","X":494,"Y":356},{"Bonus":0,"Continent":"K46","ID":20342,"Name":"Jan 019 K","PlayerID":879782,"Points":9425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20342","ServerKey":"pl181","X":640,"Y":471},{"Bonus":0,"Continent":"K56","ID":20343,"Name":"020","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20343","ServerKey":"pl181","X":610,"Y":585},{"Bonus":0,"Continent":"K34","ID":20344,"Name":"c Wioska","PlayerID":3909522,"Points":7331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20344","ServerKey":"pl181","X":416,"Y":385},{"Bonus":0,"Continent":"K35","ID":20345,"Name":"170","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20345","ServerKey":"pl181","X":573,"Y":378},{"Bonus":0,"Continent":"K65","ID":20346,"Name":"0381","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20346","ServerKey":"pl181","X":583,"Y":617},{"Bonus":0,"Continent":"K53","ID":20347,"Name":"062","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20347","ServerKey":"pl181","X":359,"Y":511},{"Bonus":0,"Continent":"K53","ID":20348,"Name":"004","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20348","ServerKey":"pl181","X":360,"Y":544},{"Bonus":0,"Continent":"K46","ID":20349,"Name":"015 Legio I Flavia Virtutis (G)","PlayerID":699878150,"Points":10034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20349","ServerKey":"pl181","X":644,"Y":489},{"Bonus":0,"Continent":"K43","ID":20350,"Name":"Mniejsze zƂo 0060","PlayerID":699794765,"Points":6218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20350","ServerKey":"pl181","X":363,"Y":460},{"Bonus":0,"Continent":"K65","ID":20351,"Name":"- 330 - RR","PlayerID":849018239,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20351","ServerKey":"pl181","X":599,"Y":603},{"Bonus":0,"Continent":"K43","ID":20352,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20352","ServerKey":"pl181","X":375,"Y":438},{"Bonus":0,"Continent":"K35","ID":20353,"Name":"010 Wioska barbarzyƄska","PlayerID":699509239,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20353","ServerKey":"pl181","X":569,"Y":376},{"Bonus":0,"Continent":"K65","ID":20355,"Name":"030","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20355","ServerKey":"pl181","X":585,"Y":609},{"Bonus":0,"Continent":"K35","ID":20356,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20356","ServerKey":"pl181","X":545,"Y":367},{"Bonus":0,"Continent":"K65","ID":20358,"Name":"#0012","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20358","ServerKey":"pl181","X":550,"Y":628},{"Bonus":0,"Continent":"K46","ID":20359,"Name":"023 Legio I Martia","PlayerID":699878150,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20359","ServerKey":"pl181","X":641,"Y":499},{"Bonus":0,"Continent":"K34","ID":20360,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20360","ServerKey":"pl181","X":440,"Y":369},{"Bonus":0,"Continent":"K35","ID":20361,"Name":"Lord Lord Franek .#205","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20361","ServerKey":"pl181","X":519,"Y":359},{"Bonus":0,"Continent":"K65","ID":20362,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20362","ServerKey":"pl181","X":520,"Y":640},{"Bonus":0,"Continent":"K53","ID":20363,"Name":"Pobozowisko","PlayerID":699513260,"Points":10928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20363","ServerKey":"pl181","X":388,"Y":592},{"Bonus":0,"Continent":"K65","ID":20364,"Name":"0380","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20364","ServerKey":"pl181","X":582,"Y":616},{"Bonus":0,"Continent":"K55","ID":20365,"Name":"lady anima","PlayerID":699703642,"Points":10451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20365","ServerKey":"pl181","X":512,"Y":573},{"Bonus":0,"Continent":"K46","ID":20366,"Name":"0039","PlayerID":699429153,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20366","ServerKey":"pl181","X":614,"Y":418},{"Bonus":0,"Continent":"K46","ID":20367,"Name":"Gattacka","PlayerID":699298370,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20367","ServerKey":"pl181","X":610,"Y":410},{"Bonus":0,"Continent":"K64","ID":20368,"Name":"Ave Why!","PlayerID":698585370,"Points":9320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20368","ServerKey":"pl181","X":467,"Y":637},{"Bonus":0,"Continent":"K64","ID":20369,"Name":"Ulu-mulu","PlayerID":699697558,"Points":2262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20369","ServerKey":"pl181","X":418,"Y":619},{"Bonus":0,"Continent":"K65","ID":20370,"Name":"- 331 - RR","PlayerID":849018239,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20370","ServerKey":"pl181","X":594,"Y":609},{"Bonus":0,"Continent":"K56","ID":20371,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20371","ServerKey":"pl181","X":636,"Y":544},{"Bonus":0,"Continent":"K56","ID":20372,"Name":"074","PlayerID":699351301,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20372","ServerKey":"pl181","X":642,"Y":524},{"Bonus":0,"Continent":"K56","ID":20373,"Name":"[022]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20373","ServerKey":"pl181","X":635,"Y":527},{"Bonus":0,"Continent":"K65","ID":20374,"Name":"0250","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20374","ServerKey":"pl181","X":535,"Y":633},{"Bonus":0,"Continent":"K64","ID":20375,"Name":"040","PlayerID":849084985,"Points":9070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20375","ServerKey":"pl181","X":440,"Y":628},{"Bonus":0,"Continent":"K34","ID":20376,"Name":"069","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20376","ServerKey":"pl181","X":477,"Y":363},{"Bonus":0,"Continent":"K65","ID":20377,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20377","ServerKey":"pl181","X":518,"Y":642},{"Bonus":0,"Continent":"K56","ID":20378,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":9302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20378","ServerKey":"pl181","X":625,"Y":569},{"Bonus":0,"Continent":"K35","ID":20379,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20379","ServerKey":"pl181","X":525,"Y":359},{"Bonus":0,"Continent":"K53","ID":20380,"Name":"Pobozowisko","PlayerID":699513260,"Points":8916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20380","ServerKey":"pl181","X":390,"Y":584},{"Bonus":0,"Continent":"K64","ID":20381,"Name":"aaaa","PlayerID":6948793,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20381","ServerKey":"pl181","X":467,"Y":636},{"Bonus":0,"Continent":"K65","ID":20382,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20382","ServerKey":"pl181","X":557,"Y":629},{"Bonus":0,"Continent":"K53","ID":20383,"Name":"49. Wioska 49","PlayerID":849091769,"Points":6391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20383","ServerKey":"pl181","X":364,"Y":548},{"Bonus":0,"Continent":"K53","ID":20384,"Name":"073 Tu się nie ƛpi harry88","PlayerID":699382126,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20384","ServerKey":"pl181","X":382,"Y":572},{"Bonus":0,"Continent":"K65","ID":20385,"Name":"WB003","PlayerID":8627359,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20385","ServerKey":"pl181","X":581,"Y":615},{"Bonus":0,"Continent":"K63","ID":20386,"Name":"Pobozowisko","PlayerID":699513260,"Points":10966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20386","ServerKey":"pl181","X":398,"Y":601},{"Bonus":0,"Continent":"K65","ID":20387,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20387","ServerKey":"pl181","X":531,"Y":634},{"Bonus":0,"Continent":"K46","ID":20388,"Name":"094. Zama Regia","PlayerID":849091866,"Points":8397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20388","ServerKey":"pl181","X":634,"Y":455},{"Bonus":0,"Continent":"K34","ID":20389,"Name":"0120","PlayerID":699431255,"Points":7887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20389","ServerKey":"pl181","X":436,"Y":377},{"Bonus":0,"Continent":"K34","ID":20390,"Name":"Oxalis acetosella","PlayerID":699883079,"Points":9513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20390","ServerKey":"pl181","X":492,"Y":356},{"Bonus":0,"Continent":"K35","ID":20391,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20391","ServerKey":"pl181","X":521,"Y":361},{"Bonus":0,"Continent":"K43","ID":20392,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20392","ServerKey":"pl181","X":371,"Y":446},{"Bonus":0,"Continent":"K35","ID":20393,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20393","ServerKey":"pl181","X":524,"Y":362},{"Bonus":0,"Continent":"K34","ID":20395,"Name":"c Robcio 80004","PlayerID":3909522,"Points":9311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20395","ServerKey":"pl181","X":414,"Y":391},{"Bonus":0,"Continent":"K43","ID":20396,"Name":"A0163","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20396","ServerKey":"pl181","X":361,"Y":477},{"Bonus":0,"Continent":"K35","ID":20397,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20397","ServerKey":"pl181","X":550,"Y":366},{"Bonus":0,"Continent":"K46","ID":20398,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20398","ServerKey":"pl181","X":600,"Y":498},{"Bonus":0,"Continent":"K65","ID":20399,"Name":"0386","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20399","ServerKey":"pl181","X":586,"Y":615},{"Bonus":0,"Continent":"K46","ID":20400,"Name":"001 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20400","ServerKey":"pl181","X":633,"Y":444},{"Bonus":0,"Continent":"K56","ID":20401,"Name":"050","PlayerID":698786826,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20401","ServerKey":"pl181","X":612,"Y":585},{"Bonus":7,"Continent":"K43","ID":20402,"Name":"Za sciana","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20402","ServerKey":"pl181","X":359,"Y":496},{"Bonus":0,"Continent":"K53","ID":20403,"Name":"Wioska barbarzyƄska","PlayerID":849095992,"Points":5797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20403","ServerKey":"pl181","X":378,"Y":572},{"Bonus":0,"Continent":"K35","ID":20404,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20404","ServerKey":"pl181","X":508,"Y":359},{"Bonus":0,"Continent":"K64","ID":20405,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20405","ServerKey":"pl181","X":499,"Y":643},{"Bonus":0,"Continent":"K65","ID":20406,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":9211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20406","ServerKey":"pl181","X":532,"Y":640},{"Bonus":0,"Continent":"K64","ID":20407,"Name":"002KątĂłwka aku","PlayerID":698620694,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20407","ServerKey":"pl181","X":446,"Y":631},{"Bonus":0,"Continent":"K46","ID":20408,"Name":"B006","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20408","ServerKey":"pl181","X":603,"Y":409},{"Bonus":5,"Continent":"K46","ID":20409,"Name":"Gattacka","PlayerID":699298370,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20409","ServerKey":"pl181","X":608,"Y":414},{"Bonus":0,"Continent":"K43","ID":20410,"Name":"--3. Zadupie","PlayerID":698345556,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20410","ServerKey":"pl181","X":390,"Y":409},{"Bonus":0,"Continent":"K43","ID":20411,"Name":"A0208","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20411","ServerKey":"pl181","X":366,"Y":473},{"Bonus":0,"Continent":"K46","ID":20412,"Name":"017 - Mroczna Osada","PlayerID":849035905,"Points":10329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20412","ServerKey":"pl181","X":626,"Y":439},{"Bonus":2,"Continent":"K46","ID":20413,"Name":"0025 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20413","ServerKey":"pl181","X":638,"Y":460},{"Bonus":0,"Continent":"K35","ID":20414,"Name":"109 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20414","ServerKey":"pl181","X":536,"Y":361},{"Bonus":0,"Continent":"K65","ID":20415,"Name":"Orkowi Zawodnicy Dominują Rybki1","PlayerID":849090130,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20415","ServerKey":"pl181","X":523,"Y":636},{"Bonus":0,"Continent":"K56","ID":20417,"Name":"081","PlayerID":699351301,"Points":6255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20417","ServerKey":"pl181","X":641,"Y":523},{"Bonus":0,"Continent":"K64","ID":20419,"Name":"A005","PlayerID":699383279,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20419","ServerKey":"pl181","X":477,"Y":639},{"Bonus":0,"Continent":"K53","ID":20420,"Name":"42. Wioska 42","PlayerID":849091769,"Points":8102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20420","ServerKey":"pl181","X":374,"Y":566},{"Bonus":0,"Continent":"K46","ID":20421,"Name":"B017","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20421","ServerKey":"pl181","X":607,"Y":408},{"Bonus":0,"Continent":"K56","ID":20422,"Name":"B.061","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20422","ServerKey":"pl181","X":642,"Y":509},{"Bonus":0,"Continent":"K46","ID":20423,"Name":"Jehu_Kingdom_36_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20423","ServerKey":"pl181","X":628,"Y":443},{"Bonus":0,"Continent":"K53","ID":20424,"Name":"03. Wioska 3","PlayerID":849091769,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20424","ServerKey":"pl181","X":372,"Y":561},{"Bonus":0,"Continent":"K34","ID":20425,"Name":".050.","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20425","ServerKey":"pl181","X":483,"Y":361},{"Bonus":4,"Continent":"K65","ID":20426,"Name":"000002","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20426","ServerKey":"pl181","X":584,"Y":614},{"Bonus":0,"Continent":"K53","ID":20428,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20428","ServerKey":"pl181","X":398,"Y":594},{"Bonus":0,"Continent":"K43","ID":20429,"Name":"A0149","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20429","ServerKey":"pl181","X":356,"Y":491},{"Bonus":0,"Continent":"K35","ID":20430,"Name":"028 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20430","ServerKey":"pl181","X":539,"Y":367},{"Bonus":0,"Continent":"K53","ID":20431,"Name":"23. Wioska 23","PlayerID":849091769,"Points":8524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20431","ServerKey":"pl181","X":365,"Y":548},{"Bonus":0,"Continent":"K56","ID":20432,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20432","ServerKey":"pl181","X":620,"Y":577},{"Bonus":0,"Continent":"K43","ID":20433,"Name":"A0189","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20433","ServerKey":"pl181","X":357,"Y":482},{"Bonus":0,"Continent":"K34","ID":20435,"Name":"102","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20435","ServerKey":"pl181","X":485,"Y":359},{"Bonus":0,"Continent":"K46","ID":20436,"Name":"017 | PALESTINA | Msqt [*]","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20436","ServerKey":"pl181","X":627,"Y":441},{"Bonus":0,"Continent":"K34","ID":20437,"Name":"032...strazak","PlayerID":6920960,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20437","ServerKey":"pl181","X":460,"Y":363},{"Bonus":2,"Continent":"K34","ID":20438,"Name":"yyyy","PlayerID":699883079,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20438","ServerKey":"pl181","X":492,"Y":362},{"Bonus":0,"Continent":"K34","ID":20440,"Name":"060","PlayerID":698160606,"Points":7872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20440","ServerKey":"pl181","X":420,"Y":381},{"Bonus":0,"Continent":"K65","ID":20441,"Name":"- 345 - RR","PlayerID":849018239,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20441","ServerKey":"pl181","X":599,"Y":602},{"Bonus":0,"Continent":"K43","ID":20442,"Name":"A0164","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20442","ServerKey":"pl181","X":360,"Y":489},{"Bonus":0,"Continent":"K56","ID":20443,"Name":"017","PlayerID":698786826,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20443","ServerKey":"pl181","X":608,"Y":593},{"Bonus":0,"Continent":"K35","ID":20444,"Name":"Wioska barbarzyƄska","PlayerID":7158871,"Points":6373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20444","ServerKey":"pl181","X":542,"Y":363},{"Bonus":0,"Continent":"K43","ID":20445,"Name":"::: A :::","PlayerID":848917570,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20445","ServerKey":"pl181","X":364,"Y":476},{"Bonus":0,"Continent":"K65","ID":20446,"Name":"SSJ 023","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20446","ServerKey":"pl181","X":512,"Y":641},{"Bonus":0,"Continent":"K43","ID":20447,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20447","ServerKey":"pl181","X":395,"Y":404},{"Bonus":0,"Continent":"K64","ID":20448,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20448","ServerKey":"pl181","X":480,"Y":638},{"Bonus":8,"Continent":"K65","ID":20449,"Name":"~~001~~","PlayerID":7829201,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20449","ServerKey":"pl181","X":599,"Y":605},{"Bonus":0,"Continent":"K64","ID":20450,"Name":"Pobozowisko","PlayerID":699513260,"Points":8775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20450","ServerKey":"pl181","X":410,"Y":608},{"Bonus":0,"Continent":"K53","ID":20451,"Name":"ZachĂłd - 015","PlayerID":225023,"Points":7042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20451","ServerKey":"pl181","X":388,"Y":580},{"Bonus":0,"Continent":"K64","ID":20452,"Name":"Ave Why!","PlayerID":698585370,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20452","ServerKey":"pl181","X":462,"Y":640},{"Bonus":0,"Continent":"K34","ID":20453,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20453","ServerKey":"pl181","X":401,"Y":397},{"Bonus":1,"Continent":"K35","ID":20454,"Name":"0010","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20454","ServerKey":"pl181","X":579,"Y":386},{"Bonus":0,"Continent":"K65","ID":20455,"Name":"0379","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20455","ServerKey":"pl181","X":582,"Y":618},{"Bonus":0,"Continent":"K43","ID":20456,"Name":"A0141","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20456","ServerKey":"pl181","X":356,"Y":493},{"Bonus":0,"Continent":"K43","ID":20457,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20457","ServerKey":"pl181","X":372,"Y":439},{"Bonus":0,"Continent":"K56","ID":20458,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20458","ServerKey":"pl181","X":630,"Y":556},{"Bonus":0,"Continent":"K53","ID":20459,"Name":"070","PlayerID":698641566,"Points":8824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20459","ServerKey":"pl181","X":359,"Y":521},{"Bonus":0,"Continent":"K34","ID":20460,"Name":"c 002 Wioska","PlayerID":3909522,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20460","ServerKey":"pl181","X":410,"Y":389},{"Bonus":0,"Continent":"K43","ID":20461,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20461","ServerKey":"pl181","X":393,"Y":409},{"Bonus":0,"Continent":"K46","ID":20462,"Name":"045. Olisipo","PlayerID":849091866,"Points":9241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20462","ServerKey":"pl181","X":636,"Y":456},{"Bonus":0,"Continent":"K35","ID":20463,"Name":"068","PlayerID":698739350,"Points":8591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20463","ServerKey":"pl181","X":505,"Y":367},{"Bonus":0,"Continent":"K56","ID":20464,"Name":"Pigi 1","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20464","ServerKey":"pl181","X":620,"Y":588},{"Bonus":0,"Continent":"K56","ID":20465,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":9191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20465","ServerKey":"pl181","X":623,"Y":569},{"Bonus":0,"Continent":"K43","ID":20466,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20466","ServerKey":"pl181","X":370,"Y":451},{"Bonus":0,"Continent":"K53","ID":20468,"Name":"006","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20468","ServerKey":"pl181","X":367,"Y":539},{"Bonus":0,"Continent":"K64","ID":20469,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":8468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20469","ServerKey":"pl181","X":437,"Y":629},{"Bonus":0,"Continent":"K53","ID":20470,"Name":"006","PlayerID":699621601,"Points":4339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20470","ServerKey":"pl181","X":386,"Y":578},{"Bonus":0,"Continent":"K46","ID":20471,"Name":"616|426 Wioska barbarzyƄska17","PlayerID":6822957,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20471","ServerKey":"pl181","X":616,"Y":426},{"Bonus":0,"Continent":"K53","ID":20472,"Name":"011","PlayerID":8908002,"Points":7617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20472","ServerKey":"pl181","X":362,"Y":543},{"Bonus":0,"Continent":"K53","ID":20473,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":7035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20473","ServerKey":"pl181","X":357,"Y":509},{"Bonus":2,"Continent":"K46","ID":20474,"Name":"002 PƂaska Kotlina","PlayerID":699429153,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20474","ServerKey":"pl181","X":623,"Y":425},{"Bonus":0,"Continent":"K53","ID":20475,"Name":"024 181","PlayerID":698807570,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20475","ServerKey":"pl181","X":357,"Y":503},{"Bonus":0,"Continent":"K53","ID":20476,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20476","ServerKey":"pl181","X":385,"Y":586},{"Bonus":0,"Continent":"K43","ID":20478,"Name":"M181_058","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20478","ServerKey":"pl181","X":371,"Y":437},{"Bonus":0,"Continent":"K46","ID":20480,"Name":"030 roni21","PlayerID":9238175,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20480","ServerKey":"pl181","X":640,"Y":499},{"Bonus":0,"Continent":"K64","ID":20481,"Name":"0003","PlayerID":699117178,"Points":5297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20481","ServerKey":"pl181","X":479,"Y":640},{"Bonus":0,"Continent":"K43","ID":20482,"Name":"[C]_[004] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20482","ServerKey":"pl181","X":358,"Y":474},{"Bonus":0,"Continent":"K35","ID":20483,"Name":"041","PlayerID":849010255,"Points":7298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20483","ServerKey":"pl181","X":501,"Y":357},{"Bonus":0,"Continent":"K56","ID":20484,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20484","ServerKey":"pl181","X":630,"Y":554},{"Bonus":3,"Continent":"K46","ID":20485,"Name":"011 Miyagi","PlayerID":7092442,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20485","ServerKey":"pl181","X":640,"Y":480},{"Bonus":0,"Continent":"K43","ID":20486,"Name":"Westcoast.107","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20486","ServerKey":"pl181","X":372,"Y":432},{"Bonus":0,"Continent":"K54","ID":20487,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20487","ServerKey":"pl181","X":403,"Y":598},{"Bonus":0,"Continent":"K35","ID":20488,"Name":"A017","PlayerID":699761749,"Points":7071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20488","ServerKey":"pl181","X":584,"Y":386},{"Bonus":0,"Continent":"K64","ID":20489,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20489","ServerKey":"pl181","X":414,"Y":613},{"Bonus":0,"Continent":"K64","ID":20490,"Name":"057","PlayerID":849084985,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20490","ServerKey":"pl181","X":441,"Y":630},{"Bonus":0,"Continent":"K53","ID":20491,"Name":"032 181","PlayerID":698807570,"Points":8326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20491","ServerKey":"pl181","X":357,"Y":505},{"Bonus":0,"Continent":"K64","ID":20492,"Name":"A36","PlayerID":849037407,"Points":9940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20492","ServerKey":"pl181","X":474,"Y":643},{"Bonus":0,"Continent":"K46","ID":20493,"Name":"010 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20493","ServerKey":"pl181","X":625,"Y":432},{"Bonus":0,"Continent":"K65","ID":20494,"Name":"0028","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20494","ServerKey":"pl181","X":537,"Y":637},{"Bonus":0,"Continent":"K34","ID":20495,"Name":"0039","PlayerID":699431255,"Points":10015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20495","ServerKey":"pl181","X":449,"Y":366},{"Bonus":0,"Continent":"K65","ID":20496,"Name":"kathare","PlayerID":873575,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20496","ServerKey":"pl181","X":551,"Y":641},{"Bonus":0,"Continent":"K65","ID":20497,"Name":"~~034~~","PlayerID":849018239,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20497","ServerKey":"pl181","X":593,"Y":608},{"Bonus":0,"Continent":"K65","ID":20498,"Name":"0124","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20498","ServerKey":"pl181","X":533,"Y":635},{"Bonus":0,"Continent":"K46","ID":20499,"Name":"089. Zatoka Szara","PlayerID":8337151,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20499","ServerKey":"pl181","X":636,"Y":457},{"Bonus":0,"Continent":"K53","ID":20500,"Name":"036","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20500","ServerKey":"pl181","X":365,"Y":529},{"Bonus":0,"Continent":"K46","ID":20501,"Name":"005.","PlayerID":849094609,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20501","ServerKey":"pl181","X":638,"Y":477},{"Bonus":0,"Continent":"K56","ID":20502,"Name":"0064","PlayerID":6510480,"Points":9238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20502","ServerKey":"pl181","X":639,"Y":528},{"Bonus":0,"Continent":"K53","ID":20503,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":2352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20503","ServerKey":"pl181","X":363,"Y":528},{"Bonus":0,"Continent":"K53","ID":20504,"Name":"033 181","PlayerID":698807570,"Points":8099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20504","ServerKey":"pl181","X":360,"Y":501},{"Bonus":0,"Continent":"K65","ID":20505,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20505","ServerKey":"pl181","X":525,"Y":638},{"Bonus":6,"Continent":"K35","ID":20506,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20506","ServerKey":"pl181","X":557,"Y":368},{"Bonus":0,"Continent":"K54","ID":20507,"Name":"Majin Buu 012","PlayerID":699054373,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20507","ServerKey":"pl181","X":438,"Y":563},{"Bonus":0,"Continent":"K53","ID":20508,"Name":"072","PlayerID":6853693,"Points":7389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20508","ServerKey":"pl181","X":363,"Y":523},{"Bonus":5,"Continent":"K43","ID":20509,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20509","ServerKey":"pl181","X":373,"Y":445},{"Bonus":0,"Continent":"K43","ID":20511,"Name":"Wioska barbarzyƄska","PlayerID":6171569,"Points":2574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20511","ServerKey":"pl181","X":394,"Y":404},{"Bonus":0,"Continent":"K65","ID":20512,"Name":"SSJ 032","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20512","ServerKey":"pl181","X":510,"Y":643},{"Bonus":0,"Continent":"K53","ID":20513,"Name":"Pobozowisko","PlayerID":699513260,"Points":10558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20513","ServerKey":"pl181","X":392,"Y":596},{"Bonus":0,"Continent":"K46","ID":20514,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20514","ServerKey":"pl181","X":600,"Y":403},{"Bonus":0,"Continent":"K35","ID":20515,"Name":"005 Wioska barbarzyƄska","PlayerID":699509239,"Points":4966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20515","ServerKey":"pl181","X":568,"Y":376},{"Bonus":0,"Continent":"K35","ID":20516,"Name":"Skellige","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20516","ServerKey":"pl181","X":529,"Y":365},{"Bonus":0,"Continent":"K46","ID":20517,"Name":"0038","PlayerID":699429153,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20517","ServerKey":"pl181","X":615,"Y":417},{"Bonus":0,"Continent":"K43","ID":20518,"Name":"004 181","PlayerID":698807570,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20518","ServerKey":"pl181","X":355,"Y":499},{"Bonus":0,"Continent":"K53","ID":20519,"Name":"075","PlayerID":6853693,"Points":6221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20519","ServerKey":"pl181","X":366,"Y":537},{"Bonus":0,"Continent":"K64","ID":20520,"Name":"107","PlayerID":849084985,"Points":7815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20520","ServerKey":"pl181","X":443,"Y":617},{"Bonus":0,"Continent":"K46","ID":20521,"Name":"#028.517|500","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20521","ServerKey":"pl181","X":636,"Y":451},{"Bonus":3,"Continent":"K43","ID":20522,"Name":"A0076","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20522","ServerKey":"pl181","X":366,"Y":468},{"Bonus":0,"Continent":"K43","ID":20523,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20523","ServerKey":"pl181","X":367,"Y":455},{"Bonus":0,"Continent":"K43","ID":20524,"Name":"A0190","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20524","ServerKey":"pl181","X":361,"Y":487},{"Bonus":0,"Continent":"K35","ID":20525,"Name":"Wioska barbarzyƄska","PlayerID":699208929,"Points":7157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20525","ServerKey":"pl181","X":521,"Y":360},{"Bonus":0,"Continent":"K53","ID":20526,"Name":"012 181","PlayerID":698807570,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20526","ServerKey":"pl181","X":359,"Y":500},{"Bonus":0,"Continent":"K64","ID":20527,"Name":"005","PlayerID":699783765,"Points":4531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20527","ServerKey":"pl181","X":429,"Y":621},{"Bonus":0,"Continent":"K45","ID":20528,"Name":"ADEN","PlayerID":698588535,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20528","ServerKey":"pl181","X":581,"Y":434},{"Bonus":0,"Continent":"K64","ID":20529,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":8044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20529","ServerKey":"pl181","X":423,"Y":618},{"Bonus":0,"Continent":"K46","ID":20530,"Name":"Wioska (035)","PlayerID":698232227,"Points":6060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20530","ServerKey":"pl181","X":637,"Y":459},{"Bonus":0,"Continent":"K34","ID":20531,"Name":"c 001 Wioska","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20531","ServerKey":"pl181","X":410,"Y":387},{"Bonus":0,"Continent":"K64","ID":20532,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":7584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20532","ServerKey":"pl181","X":426,"Y":619},{"Bonus":0,"Continent":"K43","ID":20533,"Name":"013 181","PlayerID":698807570,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20533","ServerKey":"pl181","X":359,"Y":499},{"Bonus":0,"Continent":"K56","ID":20534,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20534","ServerKey":"pl181","X":622,"Y":571},{"Bonus":0,"Continent":"K34","ID":20535,"Name":"Fresio","PlayerID":699660539,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20535","ServerKey":"pl181","X":435,"Y":373},{"Bonus":0,"Continent":"K53","ID":20536,"Name":"086","PlayerID":6853693,"Points":6232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20536","ServerKey":"pl181","X":366,"Y":545},{"Bonus":0,"Continent":"K65","ID":20537,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20537","ServerKey":"pl181","X":547,"Y":637},{"Bonus":0,"Continent":"K53","ID":20538,"Name":"007 181","PlayerID":698807570,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20538","ServerKey":"pl181","X":356,"Y":501},{"Bonus":0,"Continent":"K56","ID":20539,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20539","ServerKey":"pl181","X":637,"Y":544},{"Bonus":0,"Continent":"K65","ID":20540,"Name":"SSJ 058","PlayerID":699054373,"Points":9281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20540","ServerKey":"pl181","X":515,"Y":642},{"Bonus":0,"Continent":"K35","ID":20541,"Name":"A005","PlayerID":699761749,"Points":7502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20541","ServerKey":"pl181","X":598,"Y":394},{"Bonus":7,"Continent":"K46","ID":20542,"Name":"B008","PlayerID":699761749,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20542","ServerKey":"pl181","X":601,"Y":405},{"Bonus":0,"Continent":"K56","ID":20543,"Name":"030","PlayerID":849006412,"Points":5989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20543","ServerKey":"pl181","X":642,"Y":523},{"Bonus":0,"Continent":"K53","ID":20544,"Name":"074 Największy dzban","PlayerID":699382126,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20544","ServerKey":"pl181","X":377,"Y":564},{"Bonus":9,"Continent":"K34","ID":20545,"Name":"K34 - [083] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20545","ServerKey":"pl181","X":447,"Y":367},{"Bonus":0,"Continent":"K64","ID":20548,"Name":"0103","PlayerID":699697558,"Points":7091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20548","ServerKey":"pl181","X":420,"Y":618},{"Bonus":0,"Continent":"K43","ID":20549,"Name":"001 VC Vandip","PlayerID":3108144,"Points":7866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20549","ServerKey":"pl181","X":392,"Y":413},{"Bonus":3,"Continent":"K64","ID":20550,"Name":"024","PlayerID":849084985,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20550","ServerKey":"pl181","X":448,"Y":633},{"Bonus":0,"Continent":"K53","ID":20551,"Name":"off 100 %","PlayerID":849012521,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20551","ServerKey":"pl181","X":367,"Y":555},{"Bonus":0,"Continent":"K53","ID":20552,"Name":"011 181","PlayerID":698807570,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20552","ServerKey":"pl181","X":359,"Y":505},{"Bonus":0,"Continent":"K64","ID":20553,"Name":"009WrĂłblĂłwki","PlayerID":698620694,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20553","ServerKey":"pl181","X":451,"Y":632},{"Bonus":0,"Continent":"K34","ID":20554,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20554","ServerKey":"pl181","X":442,"Y":369},{"Bonus":0,"Continent":"K43","ID":20555,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20555","ServerKey":"pl181","X":369,"Y":440},{"Bonus":0,"Continent":"K56","ID":20557,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20557","ServerKey":"pl181","X":624,"Y":573},{"Bonus":0,"Continent":"K46","ID":20558,"Name":"018 - Mroczna Osada","PlayerID":849035905,"Points":12146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20558","ServerKey":"pl181","X":626,"Y":438},{"Bonus":0,"Continent":"K64","ID":20559,"Name":"021 KUZYNI","PlayerID":699336777,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20559","ServerKey":"pl181","X":486,"Y":641},{"Bonus":0,"Continent":"K65","ID":20560,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20560","ServerKey":"pl181","X":533,"Y":640},{"Bonus":0,"Continent":"K35","ID":20561,"Name":".:025:. ƁOBUZIK","PlayerID":848934935,"Points":9210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20561","ServerKey":"pl181","X":556,"Y":368},{"Bonus":0,"Continent":"K35","ID":20562,"Name":"166","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20562","ServerKey":"pl181","X":580,"Y":381},{"Bonus":0,"Continent":"K64","ID":20563,"Name":"0021","PlayerID":9060641,"Points":6676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20563","ServerKey":"pl181","X":414,"Y":612},{"Bonus":0,"Continent":"K56","ID":20564,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20564","ServerKey":"pl181","X":630,"Y":559},{"Bonus":0,"Continent":"K56","ID":20565,"Name":"WelcomeToTheJungle","PlayerID":699795378,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20565","ServerKey":"pl181","X":621,"Y":505},{"Bonus":0,"Continent":"K46","ID":20566,"Name":"*0020 Baraki","PlayerID":8459255,"Points":10082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20566","ServerKey":"pl181","X":620,"Y":428},{"Bonus":0,"Continent":"K64","ID":20567,"Name":"023","PlayerID":849084985,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20567","ServerKey":"pl181","X":448,"Y":632},{"Bonus":0,"Continent":"K64","ID":20568,"Name":"06. Nevada","PlayerID":9060641,"Points":10941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20568","ServerKey":"pl181","X":407,"Y":613},{"Bonus":0,"Continent":"K53","ID":20569,"Name":"Pobozowisko","PlayerID":699513260,"Points":7643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20569","ServerKey":"pl181","X":389,"Y":587},{"Bonus":0,"Continent":"K56","ID":20570,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20570","ServerKey":"pl181","X":638,"Y":545},{"Bonus":0,"Continent":"K34","ID":20571,"Name":"VN Neferpitou","PlayerID":699883079,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20571","ServerKey":"pl181","X":493,"Y":357},{"Bonus":0,"Continent":"K65","ID":20572,"Name":"=001-006-A=+@#-4-","PlayerID":699287032,"Points":10193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20572","ServerKey":"pl181","X":569,"Y":626},{"Bonus":0,"Continent":"K65","ID":20573,"Name":"001 myself","PlayerID":699828685,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20573","ServerKey":"pl181","X":567,"Y":636},{"Bonus":0,"Continent":"K65","ID":20575,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20575","ServerKey":"pl181","X":522,"Y":639},{"Bonus":0,"Continent":"K56","ID":20576,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20576","ServerKey":"pl181","X":625,"Y":574},{"Bonus":0,"Continent":"K43","ID":20577,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20577","ServerKey":"pl181","X":372,"Y":440},{"Bonus":0,"Continent":"K35","ID":20578,"Name":"Taran","PlayerID":699170684,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20578","ServerKey":"pl181","X":544,"Y":365},{"Bonus":0,"Continent":"K43","ID":20579,"Name":"Maszlug kolonia XIII","PlayerID":848977649,"Points":5215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20579","ServerKey":"pl181","X":370,"Y":437},{"Bonus":0,"Continent":"K56","ID":20580,"Name":"Nowa 23","PlayerID":698702991,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20580","ServerKey":"pl181","X":614,"Y":578},{"Bonus":0,"Continent":"K65","ID":20581,"Name":"0652","PlayerID":698659980,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20581","ServerKey":"pl181","X":567,"Y":629},{"Bonus":0,"Continent":"K46","ID":20582,"Name":"036 Nirasaki","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20582","ServerKey":"pl181","X":638,"Y":475},{"Bonus":0,"Continent":"K63","ID":20583,"Name":"006","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20583","ServerKey":"pl181","X":399,"Y":600},{"Bonus":0,"Continent":"K35","ID":20584,"Name":"004 UmyƂem Ząbki","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20584","ServerKey":"pl181","X":534,"Y":362},{"Bonus":0,"Continent":"K56","ID":20585,"Name":"0066","PlayerID":6510480,"Points":8782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20585","ServerKey":"pl181","X":638,"Y":517},{"Bonus":0,"Continent":"K35","ID":20586,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20586","ServerKey":"pl181","X":529,"Y":361},{"Bonus":0,"Continent":"K46","ID":20587,"Name":"024 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20587","ServerKey":"pl181","X":637,"Y":455},{"Bonus":0,"Continent":"K46","ID":20588,"Name":"028 i bywa czilaƂtowo","PlayerID":699272633,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20588","ServerKey":"pl181","X":639,"Y":471},{"Bonus":0,"Continent":"K56","ID":20589,"Name":"B.039","PlayerID":9188016,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20589","ServerKey":"pl181","X":644,"Y":502},{"Bonus":0,"Continent":"K46","ID":20590,"Name":"020 This land is ours!","PlayerID":699878150,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20590","ServerKey":"pl181","X":643,"Y":491},{"Bonus":0,"Continent":"K65","ID":20591,"Name":"011. Barbarian Village","PlayerID":699567608,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20591","ServerKey":"pl181","X":555,"Y":626},{"Bonus":0,"Continent":"K35","ID":20592,"Name":"Lord Lord Franek .#211","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20592","ServerKey":"pl181","X":518,"Y":359},{"Bonus":0,"Continent":"K64","ID":20593,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20593","ServerKey":"pl181","X":435,"Y":627},{"Bonus":0,"Continent":"K43","ID":20594,"Name":"Westcoast.117","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20594","ServerKey":"pl181","X":373,"Y":435},{"Bonus":0,"Continent":"K65","ID":20595,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20595","ServerKey":"pl181","X":512,"Y":623},{"Bonus":0,"Continent":"K43","ID":20596,"Name":"012","PlayerID":848921536,"Points":4189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20596","ServerKey":"pl181","X":388,"Y":417},{"Bonus":0,"Continent":"K43","ID":20597,"Name":"A0155","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20597","ServerKey":"pl181","X":359,"Y":486},{"Bonus":0,"Continent":"K65","ID":20598,"Name":"0409","PlayerID":698659980,"Points":8425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20598","ServerKey":"pl181","X":543,"Y":637},{"Bonus":0,"Continent":"K46","ID":20599,"Name":"019 | PALESTINA | Msqt [*]","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20599","ServerKey":"pl181","X":629,"Y":441},{"Bonus":0,"Continent":"K46","ID":20600,"Name":"0041","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20600","ServerKey":"pl181","X":616,"Y":423},{"Bonus":0,"Continent":"K64","ID":20601,"Name":"A19 Wioska barbarzyƄska","PlayerID":849037407,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20601","ServerKey":"pl181","X":463,"Y":634},{"Bonus":0,"Continent":"K65","ID":20602,"Name":"0555","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20602","ServerKey":"pl181","X":567,"Y":628},{"Bonus":0,"Continent":"K43","ID":20603,"Name":"K43 x002","PlayerID":698364331,"Points":5007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20603","ServerKey":"pl181","X":393,"Y":406},{"Bonus":0,"Continent":"K46","ID":20604,"Name":"Wioska barbarzyƄska","PlayerID":698613394,"Points":1638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20604","ServerKey":"pl181","X":639,"Y":482},{"Bonus":0,"Continent":"K43","ID":20605,"Name":"022 VC HMS Cheshire","PlayerID":3108144,"Points":8648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20605","ServerKey":"pl181","X":383,"Y":422},{"Bonus":0,"Continent":"K35","ID":20606,"Name":"Taki Pan","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20606","ServerKey":"pl181","X":520,"Y":357},{"Bonus":0,"Continent":"K53","ID":20607,"Name":"035","PlayerID":698641566,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20607","ServerKey":"pl181","X":365,"Y":532},{"Bonus":0,"Continent":"K53","ID":20608,"Name":"049","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20608","ServerKey":"pl181","X":357,"Y":517},{"Bonus":0,"Continent":"K46","ID":20609,"Name":"075. Marna","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20609","ServerKey":"pl181","X":627,"Y":435},{"Bonus":0,"Continent":"K64","ID":20610,"Name":"022|| Leo Minor","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20610","ServerKey":"pl181","X":487,"Y":641},{"Bonus":0,"Continent":"K53","ID":20611,"Name":"017","PlayerID":8908002,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20611","ServerKey":"pl181","X":361,"Y":540},{"Bonus":0,"Continent":"K34","ID":20612,"Name":"c Kolwicz 002","PlayerID":3909522,"Points":9414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20612","ServerKey":"pl181","X":408,"Y":390},{"Bonus":0,"Continent":"K64","ID":20613,"Name":"Pobozowisko","PlayerID":699513260,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20613","ServerKey":"pl181","X":404,"Y":605},{"Bonus":0,"Continent":"K65","ID":20614,"Name":"Mako Reactor 1 - B5F","PlayerID":8199417,"Points":3360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20614","ServerKey":"pl181","X":553,"Y":632},{"Bonus":0,"Continent":"K53","ID":20615,"Name":"-048-","PlayerID":699097885,"Points":7047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20615","ServerKey":"pl181","X":381,"Y":575},{"Bonus":0,"Continent":"K65","ID":20616,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20616","ServerKey":"pl181","X":530,"Y":636},{"Bonus":0,"Continent":"K34","ID":20617,"Name":"c Wioska","PlayerID":3909522,"Points":8301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20617","ServerKey":"pl181","X":416,"Y":387},{"Bonus":0,"Continent":"K35","ID":20618,"Name":"062","PlayerID":7271812,"Points":5042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20618","ServerKey":"pl181","X":588,"Y":391},{"Bonus":0,"Continent":"K65","ID":20619,"Name":"kathare","PlayerID":873575,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20619","ServerKey":"pl181","X":555,"Y":630},{"Bonus":0,"Continent":"K53","ID":20620,"Name":"11. Wioska 11","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20620","ServerKey":"pl181","X":374,"Y":556},{"Bonus":0,"Continent":"K35","ID":20621,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20621","ServerKey":"pl181","X":599,"Y":399},{"Bonus":0,"Continent":"K43","ID":20623,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20623","ServerKey":"pl181","X":369,"Y":443},{"Bonus":0,"Continent":"K35","ID":20624,"Name":"A024","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20624","ServerKey":"pl181","X":585,"Y":384},{"Bonus":0,"Continent":"K65","ID":20626,"Name":"0059","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20626","ServerKey":"pl181","X":535,"Y":634},{"Bonus":0,"Continent":"K35","ID":20627,"Name":".:060:. ƁOBUZIK","PlayerID":848934935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20627","ServerKey":"pl181","X":508,"Y":358},{"Bonus":0,"Continent":"K65","ID":20628,"Name":"kathare","PlayerID":873575,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20628","ServerKey":"pl181","X":555,"Y":633},{"Bonus":0,"Continent":"K46","ID":20629,"Name":"017","PlayerID":699298370,"Points":9454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20629","ServerKey":"pl181","X":610,"Y":407},{"Bonus":0,"Continent":"K53","ID":20630,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20630","ServerKey":"pl181","X":399,"Y":595},{"Bonus":0,"Continent":"K56","ID":20631,"Name":"009","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20631","ServerKey":"pl181","X":603,"Y":592},{"Bonus":0,"Continent":"K53","ID":20632,"Name":"029","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20632","ServerKey":"pl181","X":360,"Y":529},{"Bonus":0,"Continent":"K34","ID":20633,"Name":"K34 - [148] Before Land","PlayerID":699088769,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20633","ServerKey":"pl181","X":445,"Y":369},{"Bonus":0,"Continent":"K56","ID":20634,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20634","ServerKey":"pl181","X":629,"Y":557},{"Bonus":0,"Continent":"K64","ID":20635,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":8725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20635","ServerKey":"pl181","X":438,"Y":630},{"Bonus":0,"Continent":"K56","ID":20636,"Name":"025","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20636","ServerKey":"pl181","X":643,"Y":522},{"Bonus":0,"Continent":"K64","ID":20637,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20637","ServerKey":"pl181","X":492,"Y":638},{"Bonus":0,"Continent":"K35","ID":20638,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20638","ServerKey":"pl181","X":511,"Y":358},{"Bonus":0,"Continent":"K64","ID":20639,"Name":"[007]","PlayerID":8729672,"Points":8785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20639","ServerKey":"pl181","X":455,"Y":635},{"Bonus":0,"Continent":"K64","ID":20640,"Name":"Pobozowisko","PlayerID":699513260,"Points":5134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20640","ServerKey":"pl181","X":411,"Y":608},{"Bonus":0,"Continent":"K43","ID":20641,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20641","ServerKey":"pl181","X":368,"Y":440},{"Bonus":0,"Continent":"K46","ID":20642,"Name":"033 ChƂopaki nie bijcie","PlayerID":698829590,"Points":4767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20642","ServerKey":"pl181","X":631,"Y":440},{"Bonus":0,"Continent":"K65","ID":20643,"Name":"kathare","PlayerID":873575,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20643","ServerKey":"pl181","X":549,"Y":636},{"Bonus":0,"Continent":"K65","ID":20644,"Name":"0556","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20644","ServerKey":"pl181","X":563,"Y":629},{"Bonus":0,"Continent":"K46","ID":20645,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20645","ServerKey":"pl181","X":629,"Y":437},{"Bonus":0,"Continent":"K56","ID":20647,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20647","ServerKey":"pl181","X":634,"Y":548},{"Bonus":8,"Continent":"K65","ID":20649,"Name":"0006","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20649","ServerKey":"pl181","X":578,"Y":621},{"Bonus":0,"Continent":"K56","ID":20650,"Name":"053","PlayerID":698786826,"Points":6591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20650","ServerKey":"pl181","X":614,"Y":586},{"Bonus":0,"Continent":"K64","ID":20651,"Name":"011Deszcz","PlayerID":698620694,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20651","ServerKey":"pl181","X":450,"Y":630},{"Bonus":0,"Continent":"K53","ID":20652,"Name":"071","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20652","ServerKey":"pl181","X":356,"Y":512},{"Bonus":0,"Continent":"K64","ID":20653,"Name":"Ulu-mulu","PlayerID":699697558,"Points":2956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20653","ServerKey":"pl181","X":419,"Y":620},{"Bonus":0,"Continent":"K35","ID":20654,"Name":"214","PlayerID":849064752,"Points":7925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20654","ServerKey":"pl181","X":576,"Y":380},{"Bonus":2,"Continent":"K65","ID":20655,"Name":"0008","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20655","ServerKey":"pl181","X":572,"Y":623},{"Bonus":0,"Continent":"K34","ID":20656,"Name":"Bagdad","PlayerID":8847546,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20656","ServerKey":"pl181","X":499,"Y":360},{"Bonus":0,"Continent":"K65","ID":20657,"Name":"#0025","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20657","ServerKey":"pl181","X":542,"Y":637},{"Bonus":0,"Continent":"K34","ID":20658,"Name":"0115","PlayerID":699431255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20658","ServerKey":"pl181","X":434,"Y":375},{"Bonus":0,"Continent":"K64","ID":20659,"Name":"aaaa","PlayerID":6948793,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20659","ServerKey":"pl181","X":484,"Y":642},{"Bonus":0,"Continent":"K56","ID":20660,"Name":"BƂaszki","PlayerID":849095778,"Points":10718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20660","ServerKey":"pl181","X":625,"Y":572},{"Bonus":0,"Continent":"K56","ID":20661,"Name":"B.036","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20661","ServerKey":"pl181","X":640,"Y":504},{"Bonus":0,"Continent":"K65","ID":20662,"Name":"0557","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20662","ServerKey":"pl181","X":568,"Y":627},{"Bonus":0,"Continent":"K53","ID":20663,"Name":"003","PlayerID":6853693,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20663","ServerKey":"pl181","X":373,"Y":540},{"Bonus":0,"Continent":"K46","ID":20664,"Name":"036 | PALESTINA","PlayerID":9228039,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20664","ServerKey":"pl181","X":636,"Y":464},{"Bonus":0,"Continent":"K43","ID":20666,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20666","ServerKey":"pl181","X":373,"Y":442},{"Bonus":0,"Continent":"K54","ID":20667,"Name":"Karka-han (LazyShiro)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20667","ServerKey":"pl181","X":413,"Y":578},{"Bonus":0,"Continent":"K64","ID":20668,"Name":"022","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20668","ServerKey":"pl181","X":447,"Y":632},{"Bonus":0,"Continent":"K35","ID":20669,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20669","ServerKey":"pl181","X":530,"Y":360},{"Bonus":0,"Continent":"K65","ID":20670,"Name":"SSJ 046","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20670","ServerKey":"pl181","X":515,"Y":644},{"Bonus":0,"Continent":"K35","ID":20671,"Name":"C 012","PlayerID":6384450,"Points":5425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20671","ServerKey":"pl181","X":590,"Y":390},{"Bonus":0,"Continent":"K34","ID":20672,"Name":"070","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20672","ServerKey":"pl181","X":470,"Y":365},{"Bonus":0,"Continent":"K56","ID":20673,"Name":"B.042","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20673","ServerKey":"pl181","X":642,"Y":519},{"Bonus":0,"Continent":"K65","ID":20674,"Name":"SSJ 071","PlayerID":699054373,"Points":8184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20674","ServerKey":"pl181","X":504,"Y":641},{"Bonus":0,"Continent":"K34","ID":20675,"Name":"113","PlayerID":7271812,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20675","ServerKey":"pl181","X":476,"Y":358},{"Bonus":0,"Continent":"K43","ID":20677,"Name":"A0191","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20677","ServerKey":"pl181","X":360,"Y":486},{"Bonus":0,"Continent":"K64","ID":20679,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":8760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20679","ServerKey":"pl181","X":488,"Y":639},{"Bonus":0,"Continent":"K53","ID":20680,"Name":"010 181","PlayerID":698807570,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20680","ServerKey":"pl181","X":355,"Y":503},{"Bonus":0,"Continent":"K43","ID":20681,"Name":"Westcoast.096","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20681","ServerKey":"pl181","X":392,"Y":421},{"Bonus":0,"Continent":"K56","ID":20682,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20682","ServerKey":"pl181","X":630,"Y":563},{"Bonus":0,"Continent":"K64","ID":20683,"Name":"Ave Why!","PlayerID":698585370,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20683","ServerKey":"pl181","X":462,"Y":639},{"Bonus":0,"Continent":"K43","ID":20684,"Name":"MELISKA","PlayerID":699794765,"Points":8894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20684","ServerKey":"pl181","X":358,"Y":469},{"Bonus":0,"Continent":"K35","ID":20686,"Name":"Z001","PlayerID":699208929,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20686","ServerKey":"pl181","X":523,"Y":359},{"Bonus":9,"Continent":"K65","ID":20687,"Name":"0558","PlayerID":698659980,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20687","ServerKey":"pl181","X":565,"Y":626},{"Bonus":0,"Continent":"K56","ID":20688,"Name":"~~015~~","PlayerID":7829201,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20688","ServerKey":"pl181","X":609,"Y":595},{"Bonus":0,"Continent":"K43","ID":20689,"Name":"A0134","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20689","ServerKey":"pl181","X":356,"Y":489},{"Bonus":6,"Continent":"K35","ID":20690,"Name":"A READY","PlayerID":699759128,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20690","ServerKey":"pl181","X":594,"Y":396},{"Bonus":0,"Continent":"K56","ID":20691,"Name":"061","PlayerID":698786826,"Points":5762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20691","ServerKey":"pl181","X":615,"Y":589},{"Bonus":0,"Continent":"K53","ID":20692,"Name":"!OFF 100 %","PlayerID":849012521,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20692","ServerKey":"pl181","X":384,"Y":585},{"Bonus":0,"Continent":"K53","ID":20693,"Name":"004","PlayerID":699621601,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20693","ServerKey":"pl181","X":385,"Y":581},{"Bonus":0,"Continent":"K35","ID":20694,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20694","ServerKey":"pl181","X":511,"Y":360},{"Bonus":0,"Continent":"K64","ID":20695,"Name":"A013","PlayerID":699383279,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20695","ServerKey":"pl181","X":473,"Y":641},{"Bonus":0,"Continent":"K56","ID":20696,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20696","ServerKey":"pl181","X":628,"Y":561},{"Bonus":0,"Continent":"K64","ID":20697,"Name":"Pobozowisko","PlayerID":699513260,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20697","ServerKey":"pl181","X":406,"Y":610},{"Bonus":0,"Continent":"K46","ID":20698,"Name":"B005","PlayerID":9314079,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20698","ServerKey":"pl181","X":645,"Y":494},{"Bonus":0,"Continent":"K46","ID":20699,"Name":"Gattacka","PlayerID":699298370,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20699","ServerKey":"pl181","X":611,"Y":410},{"Bonus":0,"Continent":"K55","ID":20700,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20700","ServerKey":"pl181","X":570,"Y":559},{"Bonus":0,"Continent":"K53","ID":20701,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20701","ServerKey":"pl181","X":359,"Y":533},{"Bonus":0,"Continent":"K53","ID":20702,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20702","ServerKey":"pl181","X":387,"Y":583},{"Bonus":0,"Continent":"K53","ID":20703,"Name":"150 Ale mnie gƂówka boli","PlayerID":699382126,"Points":5173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20703","ServerKey":"pl181","X":376,"Y":568},{"Bonus":0,"Continent":"K65","ID":20704,"Name":"Orkowi Zawodnicy Dominują Rybki3","PlayerID":849090130,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20704","ServerKey":"pl181","X":523,"Y":638},{"Bonus":0,"Continent":"K65","ID":20705,"Name":"#0023","PlayerID":699728159,"Points":5933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20705","ServerKey":"pl181","X":517,"Y":639},{"Bonus":0,"Continent":"K35","ID":20706,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20706","ServerKey":"pl181","X":557,"Y":369},{"Bonus":0,"Continent":"K43","ID":20707,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20707","ServerKey":"pl181","X":380,"Y":497},{"Bonus":0,"Continent":"K65","ID":20708,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20708","ServerKey":"pl181","X":556,"Y":634},{"Bonus":0,"Continent":"K46","ID":20709,"Name":"#023.511|491","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20709","ServerKey":"pl181","X":630,"Y":442},{"Bonus":0,"Continent":"K35","ID":20710,"Name":"Niegodziwoƛci","PlayerID":699072129,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20710","ServerKey":"pl181","X":547,"Y":364},{"Bonus":0,"Continent":"K43","ID":20711,"Name":"A0192","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20711","ServerKey":"pl181","X":355,"Y":485},{"Bonus":0,"Continent":"K64","ID":20712,"Name":"[001]","PlayerID":699238479,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20712","ServerKey":"pl181","X":459,"Y":634},{"Bonus":0,"Continent":"K34","ID":20713,"Name":"c 080d","PlayerID":3909522,"Points":5654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20713","ServerKey":"pl181","X":416,"Y":383},{"Bonus":0,"Continent":"K53","ID":20714,"Name":"066","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20714","ServerKey":"pl181","X":361,"Y":512},{"Bonus":0,"Continent":"K53","ID":20715,"Name":"038","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20715","ServerKey":"pl181","X":371,"Y":565},{"Bonus":0,"Continent":"K56","ID":20716,"Name":"B020","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20716","ServerKey":"pl181","X":645,"Y":501},{"Bonus":0,"Continent":"K43","ID":20717,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20717","ServerKey":"pl181","X":367,"Y":458},{"Bonus":0,"Continent":"K64","ID":20718,"Name":"021","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20718","ServerKey":"pl181","X":449,"Y":631},{"Bonus":0,"Continent":"K56","ID":20719,"Name":"Nowa 22","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20719","ServerKey":"pl181","X":619,"Y":571},{"Bonus":0,"Continent":"K53","ID":20720,"Name":"031","PlayerID":698641566,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20720","ServerKey":"pl181","X":362,"Y":532},{"Bonus":0,"Continent":"K65","ID":20721,"Name":"0387","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20721","ServerKey":"pl181","X":586,"Y":616},{"Bonus":0,"Continent":"K34","ID":20722,"Name":"005","PlayerID":699883079,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20722","ServerKey":"pl181","X":458,"Y":367},{"Bonus":0,"Continent":"K35","ID":20723,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20723","ServerKey":"pl181","X":500,"Y":360},{"Bonus":0,"Continent":"K46","ID":20724,"Name":"001 Legio I Adiutrix (G)","PlayerID":699878150,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20724","ServerKey":"pl181","X":641,"Y":490},{"Bonus":0,"Continent":"K56","ID":20725,"Name":".Wioska .","PlayerID":6929240,"Points":5553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20725","ServerKey":"pl181","X":639,"Y":537},{"Bonus":0,"Continent":"K65","ID":20726,"Name":"0559","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20726","ServerKey":"pl181","X":567,"Y":623},{"Bonus":0,"Continent":"K53","ID":20727,"Name":"026 181","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20727","ServerKey":"pl181","X":356,"Y":504},{"Bonus":0,"Continent":"K43","ID":20728,"Name":"A0214","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20728","ServerKey":"pl181","X":364,"Y":469},{"Bonus":0,"Continent":"K46","ID":20729,"Name":"035 Y13J","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20729","ServerKey":"pl181","X":644,"Y":493},{"Bonus":0,"Continent":"K53","ID":20730,"Name":"051 Kuzyn skonfiskowaƂ Eneidę","PlayerID":699382126,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20730","ServerKey":"pl181","X":379,"Y":578},{"Bonus":0,"Continent":"K53","ID":20731,"Name":"Pobozowisko","PlayerID":699513260,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20731","ServerKey":"pl181","X":395,"Y":598},{"Bonus":0,"Continent":"K35","ID":20732,"Name":".:085:. ƁOBUZIK","PlayerID":848934935,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20732","ServerKey":"pl181","X":555,"Y":369},{"Bonus":6,"Continent":"K46","ID":20733,"Name":"007. Acapulco","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20733","ServerKey":"pl181","X":636,"Y":454},{"Bonus":0,"Continent":"K56","ID":20734,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20734","ServerKey":"pl181","X":625,"Y":575},{"Bonus":0,"Continent":"K53","ID":20735,"Name":"-034-","PlayerID":699097885,"Points":4118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20735","ServerKey":"pl181","X":383,"Y":586},{"Bonus":0,"Continent":"K55","ID":20736,"Name":"017","PlayerID":699316421,"Points":9665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20736","ServerKey":"pl181","X":544,"Y":524},{"Bonus":0,"Continent":"K65","ID":20737,"Name":"**A bo co...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20737","ServerKey":"pl181","X":576,"Y":624},{"Bonus":0,"Continent":"K55","ID":20738,"Name":"Szlachcic 059","PlayerID":758104,"Points":5292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20738","ServerKey":"pl181","X":546,"Y":522},{"Bonus":0,"Continent":"K35","ID":20739,"Name":"136","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20739","ServerKey":"pl181","X":578,"Y":383},{"Bonus":0,"Continent":"K53","ID":20740,"Name":"069","PlayerID":698641566,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20740","ServerKey":"pl181","X":356,"Y":518},{"Bonus":0,"Continent":"K64","ID":20741,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":6050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20741","ServerKey":"pl181","X":435,"Y":629},{"Bonus":6,"Continent":"K65","ID":20742,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20742","ServerKey":"pl181","X":557,"Y":627},{"Bonus":0,"Continent":"K56","ID":20743,"Name":"017","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20743","ServerKey":"pl181","X":635,"Y":534},{"Bonus":0,"Continent":"K64","ID":20744,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20744","ServerKey":"pl181","X":434,"Y":623},{"Bonus":0,"Continent":"K46","ID":20745,"Name":"005. Maroko","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20745","ServerKey":"pl181","X":638,"Y":455},{"Bonus":0,"Continent":"K53","ID":20746,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20746","ServerKey":"pl181","X":357,"Y":527},{"Bonus":0,"Continent":"K65","ID":20747,"Name":"kathare","PlayerID":873575,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20747","ServerKey":"pl181","X":557,"Y":633},{"Bonus":0,"Continent":"K65","ID":20748,"Name":"180","PlayerID":8627359,"Points":9285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20748","ServerKey":"pl181","X":581,"Y":618},{"Bonus":0,"Continent":"K64","ID":20749,"Name":"Ave Why!","PlayerID":698585370,"Points":4833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20749","ServerKey":"pl181","X":469,"Y":638},{"Bonus":0,"Continent":"K53","ID":20750,"Name":"Pobozowisko","PlayerID":699513260,"Points":8556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20750","ServerKey":"pl181","X":389,"Y":584},{"Bonus":0,"Continent":"K53","ID":20751,"Name":"073","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20751","ServerKey":"pl181","X":356,"Y":513},{"Bonus":0,"Continent":"K56","ID":20752,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20752","ServerKey":"pl181","X":619,"Y":579},{"Bonus":0,"Continent":"K35","ID":20753,"Name":"WE ARE READY!","PlayerID":1553947,"Points":8411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20753","ServerKey":"pl181","X":594,"Y":397},{"Bonus":0,"Continent":"K35","ID":20754,"Name":"Lord Lord Franek .#219","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20754","ServerKey":"pl181","X":518,"Y":357},{"Bonus":0,"Continent":"K56","ID":20755,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20755","ServerKey":"pl181","X":637,"Y":539},{"Bonus":0,"Continent":"K65","ID":20756,"Name":"[0008]","PlayerID":699567608,"Points":10253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20756","ServerKey":"pl181","X":559,"Y":633},{"Bonus":0,"Continent":"K35","ID":20757,"Name":"R-12","PlayerID":3600737,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20757","ServerKey":"pl181","X":582,"Y":384},{"Bonus":0,"Continent":"K45","ID":20758,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20758","ServerKey":"pl181","X":504,"Y":445},{"Bonus":0,"Continent":"K46","ID":20759,"Name":"*0005 Baraki","PlayerID":8459255,"Points":10679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20759","ServerKey":"pl181","X":618,"Y":424},{"Bonus":0,"Continent":"K56","ID":20760,"Name":"024","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20760","ServerKey":"pl181","X":639,"Y":523},{"Bonus":0,"Continent":"K65","ID":20761,"Name":"0097","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20761","ServerKey":"pl181","X":539,"Y":633},{"Bonus":0,"Continent":"K46","ID":20762,"Name":"002 Legio XXI Rapax","PlayerID":699878150,"Points":7529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20762","ServerKey":"pl181","X":643,"Y":488},{"Bonus":0,"Continent":"K56","ID":20763,"Name":"~~017~~","PlayerID":7829201,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20763","ServerKey":"pl181","X":614,"Y":589},{"Bonus":0,"Continent":"K46","ID":20764,"Name":"018 Legio I Pontica","PlayerID":699878150,"Points":4152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20764","ServerKey":"pl181","X":641,"Y":498},{"Bonus":0,"Continent":"K53","ID":20765,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":5279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20765","ServerKey":"pl181","X":359,"Y":528},{"Bonus":0,"Continent":"K46","ID":20766,"Name":"020.","PlayerID":849094609,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20766","ServerKey":"pl181","X":640,"Y":461},{"Bonus":0,"Continent":"K34","ID":20767,"Name":"0137","PlayerID":699431255,"Points":8093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20767","ServerKey":"pl181","X":439,"Y":372},{"Bonus":0,"Continent":"K54","ID":20768,"Name":"Pobozowisko","PlayerID":699513260,"Points":10735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20768","ServerKey":"pl181","X":401,"Y":598},{"Bonus":0,"Continent":"K64","ID":20769,"Name":"Wioska zielonelody","PlayerID":2105150,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20769","ServerKey":"pl181","X":429,"Y":625},{"Bonus":0,"Continent":"K46","ID":20770,"Name":"0026 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20770","ServerKey":"pl181","X":639,"Y":462},{"Bonus":0,"Continent":"K64","ID":20771,"Name":"016","PlayerID":699783765,"Points":4196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20771","ServerKey":"pl181","X":428,"Y":627},{"Bonus":0,"Continent":"K64","ID":20772,"Name":"0020","PlayerID":9060641,"Points":6726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20772","ServerKey":"pl181","X":414,"Y":611},{"Bonus":0,"Continent":"K34","ID":20773,"Name":"071","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20773","ServerKey":"pl181","X":470,"Y":364},{"Bonus":0,"Continent":"K34","ID":20774,"Name":"0128","PlayerID":699431255,"Points":7887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20774","ServerKey":"pl181","X":438,"Y":375},{"Bonus":0,"Continent":"K34","ID":20775,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20775","ServerKey":"pl181","X":436,"Y":369},{"Bonus":0,"Continent":"K65","ID":20776,"Name":"0024","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20776","ServerKey":"pl181","X":539,"Y":639},{"Bonus":0,"Continent":"K35","ID":20777,"Name":"-001- Celia","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20777","ServerKey":"pl181","X":558,"Y":367},{"Bonus":0,"Continent":"K56","ID":20778,"Name":"jaaa","PlayerID":698635863,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20778","ServerKey":"pl181","X":634,"Y":555},{"Bonus":0,"Continent":"K53","ID":20779,"Name":"015","PlayerID":8908002,"Points":9548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20779","ServerKey":"pl181","X":361,"Y":539},{"Bonus":0,"Continent":"K65","ID":20780,"Name":"[0011]","PlayerID":699567608,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20780","ServerKey":"pl181","X":559,"Y":629},{"Bonus":2,"Continent":"K56","ID":20781,"Name":"*5603* KKS Kalisz","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20781","ServerKey":"pl181","X":620,"Y":574},{"Bonus":0,"Continent":"K56","ID":20782,"Name":"WschĂłd Droga 003","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20782","ServerKey":"pl181","X":637,"Y":545},{"Bonus":0,"Continent":"K65","ID":20783,"Name":"0128","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20783","ServerKey":"pl181","X":536,"Y":641},{"Bonus":0,"Continent":"K64","ID":20784,"Name":"060","PlayerID":699783765,"Points":5831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20784","ServerKey":"pl181","X":427,"Y":621},{"Bonus":0,"Continent":"K53","ID":20785,"Name":"076","PlayerID":6853693,"Points":6671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20785","ServerKey":"pl181","X":364,"Y":539},{"Bonus":0,"Continent":"K35","ID":20786,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20786","ServerKey":"pl181","X":559,"Y":371},{"Bonus":0,"Continent":"K53","ID":20787,"Name":"off 100 %","PlayerID":849012521,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20787","ServerKey":"pl181","X":382,"Y":581},{"Bonus":0,"Continent":"K46","ID":20788,"Name":"011. Koczkodan","PlayerID":849095599,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20788","ServerKey":"pl181","X":637,"Y":457},{"Bonus":0,"Continent":"K34","ID":20789,"Name":"035","PlayerID":849010255,"Points":7036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20789","ServerKey":"pl181","X":487,"Y":361},{"Bonus":0,"Continent":"K64","ID":20790,"Name":"Jednak wolę gofry","PlayerID":6948793,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20790","ServerKey":"pl181","X":486,"Y":639},{"Bonus":0,"Continent":"K43","ID":20791,"Name":"Westcoast.105","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20791","ServerKey":"pl181","X":375,"Y":435},{"Bonus":0,"Continent":"K53","ID":20792,"Name":"016 181","PlayerID":698807570,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20792","ServerKey":"pl181","X":354,"Y":501},{"Bonus":0,"Continent":"K34","ID":20793,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20793","ServerKey":"pl181","X":473,"Y":389},{"Bonus":0,"Continent":"K53","ID":20794,"Name":"64. Wioska 64","PlayerID":849091769,"Points":7604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20794","ServerKey":"pl181","X":369,"Y":563},{"Bonus":0,"Continent":"K64","ID":20795,"Name":"0111","PlayerID":699697558,"Points":1781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20795","ServerKey":"pl181","X":419,"Y":619},{"Bonus":0,"Continent":"K46","ID":20796,"Name":"Gattacka","PlayerID":699298370,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20796","ServerKey":"pl181","X":609,"Y":407},{"Bonus":0,"Continent":"K35","ID":20797,"Name":"Lord Lord Franek .#212","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20797","ServerKey":"pl181","X":511,"Y":356},{"Bonus":0,"Continent":"K35","ID":20798,"Name":".004.KƂalaLumpur","PlayerID":699072129,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20798","ServerKey":"pl181","X":567,"Y":372},{"Bonus":0,"Continent":"K46","ID":20799,"Name":"003 Niska GĂłra","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20799","ServerKey":"pl181","X":617,"Y":423},{"Bonus":0,"Continent":"K35","ID":20800,"Name":".:118:. Niangmen","PlayerID":848934935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20800","ServerKey":"pl181","X":506,"Y":396},{"Bonus":0,"Continent":"K43","ID":20802,"Name":"A0218","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20802","ServerKey":"pl181","X":363,"Y":472},{"Bonus":0,"Continent":"K35","ID":20803,"Name":".002.Alabastia","PlayerID":699072129,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20803","ServerKey":"pl181","X":563,"Y":375},{"Bonus":8,"Continent":"K53","ID":20804,"Name":"019","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20804","ServerKey":"pl181","X":359,"Y":524},{"Bonus":0,"Continent":"K53","ID":20805,"Name":"Pobozowisko","PlayerID":699513260,"Points":8762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20805","ServerKey":"pl181","X":395,"Y":587},{"Bonus":0,"Continent":"K65","ID":20806,"Name":"- 338 - RR","PlayerID":849018239,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20806","ServerKey":"pl181","X":592,"Y":607},{"Bonus":0,"Continent":"K35","ID":20807,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20807","ServerKey":"pl181","X":562,"Y":369},{"Bonus":0,"Continent":"K35","ID":20808,"Name":"Lord Lord Franek .#199","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20808","ServerKey":"pl181","X":513,"Y":357},{"Bonus":0,"Continent":"K46","ID":20809,"Name":"025 Wioska","PlayerID":699671454,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20809","ServerKey":"pl181","X":645,"Y":487},{"Bonus":0,"Continent":"K43","ID":20810,"Name":"A0173","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20810","ServerKey":"pl181","X":357,"Y":478},{"Bonus":0,"Continent":"K53","ID":20811,"Name":"Pobozowisko","PlayerID":699513260,"Points":8721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20811","ServerKey":"pl181","X":391,"Y":593},{"Bonus":0,"Continent":"K46","ID":20812,"Name":"020","PlayerID":849093875,"Points":3746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20812","ServerKey":"pl181","X":642,"Y":475},{"Bonus":0,"Continent":"K43","ID":20813,"Name":"A0080","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20813","ServerKey":"pl181","X":355,"Y":492},{"Bonus":0,"Continent":"K46","ID":20814,"Name":"039 Maryland","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20814","ServerKey":"pl181","X":607,"Y":481},{"Bonus":0,"Continent":"K35","ID":20815,"Name":".001.Xenomorf","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20815","ServerKey":"pl181","X":564,"Y":370},{"Bonus":0,"Continent":"K64","ID":20816,"Name":"Tylko nie pƂacz","PlayerID":699364813,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20816","ServerKey":"pl181","X":457,"Y":601},{"Bonus":0,"Continent":"K43","ID":20817,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20817","ServerKey":"pl181","X":363,"Y":455},{"Bonus":1,"Continent":"K65","ID":20818,"Name":"Drewno","PlayerID":7589468,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20818","ServerKey":"pl181","X":533,"Y":642},{"Bonus":0,"Continent":"K43","ID":20819,"Name":"Mniejsze zƂo 0045","PlayerID":699794765,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20819","ServerKey":"pl181","X":364,"Y":465},{"Bonus":0,"Continent":"K64","ID":20820,"Name":"Pobozowisko","PlayerID":699513260,"Points":8956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20820","ServerKey":"pl181","X":405,"Y":604},{"Bonus":0,"Continent":"K53","ID":20821,"Name":"-017-","PlayerID":699097885,"Points":8988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20821","ServerKey":"pl181","X":391,"Y":589},{"Bonus":0,"Continent":"K46","ID":20822,"Name":"017 FOXX","PlayerID":9238175,"Points":10409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20822","ServerKey":"pl181","X":641,"Y":494},{"Bonus":0,"Continent":"K35","ID":20823,"Name":"C007","PlayerID":699761749,"Points":7816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20823","ServerKey":"pl181","X":587,"Y":385},{"Bonus":0,"Continent":"K34","ID":20824,"Name":"077","PlayerID":698739350,"Points":10713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20824","ServerKey":"pl181","X":481,"Y":359},{"Bonus":0,"Continent":"K53","ID":20825,"Name":"053","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20825","ServerKey":"pl181","X":369,"Y":549},{"Bonus":0,"Continent":"K64","ID":20826,"Name":"007Przeciąg","PlayerID":698620694,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20826","ServerKey":"pl181","X":447,"Y":631},{"Bonus":0,"Continent":"K64","ID":20827,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":6882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20827","ServerKey":"pl181","X":422,"Y":618},{"Bonus":0,"Continent":"K56","ID":20828,"Name":"015","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20828","ServerKey":"pl181","X":638,"Y":522},{"Bonus":0,"Continent":"K64","ID":20829,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20829","ServerKey":"pl181","X":407,"Y":611},{"Bonus":0,"Continent":"K34","ID":20830,"Name":"0061","PlayerID":699431255,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20830","ServerKey":"pl181","X":456,"Y":362},{"Bonus":0,"Continent":"K35","ID":20831,"Name":"171","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20831","ServerKey":"pl181","X":583,"Y":386},{"Bonus":0,"Continent":"K65","ID":20832,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20832","ServerKey":"pl181","X":534,"Y":636},{"Bonus":0,"Continent":"K34","ID":20833,"Name":"0051","PlayerID":699431255,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20833","ServerKey":"pl181","X":450,"Y":367},{"Bonus":0,"Continent":"K64","ID":20834,"Name":"Ave Why!","PlayerID":698585370,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20834","ServerKey":"pl181","X":454,"Y":637},{"Bonus":0,"Continent":"K53","ID":20836,"Name":"Pobozowisko","PlayerID":699513260,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20836","ServerKey":"pl181","X":391,"Y":590},{"Bonus":0,"Continent":"K53","ID":20837,"Name":"!Myk i do kieszonki","PlayerID":699621601,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20837","ServerKey":"pl181","X":381,"Y":582},{"Bonus":0,"Continent":"K34","ID":20838,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20838","ServerKey":"pl181","X":421,"Y":378},{"Bonus":0,"Continent":"K64","ID":20839,"Name":"Ave Why!","PlayerID":698585370,"Points":7718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20839","ServerKey":"pl181","X":453,"Y":634},{"Bonus":0,"Continent":"K34","ID":20840,"Name":"0135","PlayerID":699431255,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20840","ServerKey":"pl181","X":430,"Y":374},{"Bonus":0,"Continent":"K64","ID":20841,"Name":"Ave Why!","PlayerID":8729672,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20841","ServerKey":"pl181","X":448,"Y":627},{"Bonus":0,"Continent":"K56","ID":20842,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20842","ServerKey":"pl181","X":632,"Y":554},{"Bonus":0,"Continent":"K53","ID":20843,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20843","ServerKey":"pl181","X":355,"Y":508},{"Bonus":9,"Continent":"K34","ID":20844,"Name":"Osada koczownikĂłw","PlayerID":699402816,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20844","ServerKey":"pl181","X":411,"Y":385},{"Bonus":0,"Continent":"K65","ID":20845,"Name":"0052","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20845","ServerKey":"pl181","X":540,"Y":635},{"Bonus":0,"Continent":"K64","ID":20846,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":3817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20846","ServerKey":"pl181","X":429,"Y":620},{"Bonus":0,"Continent":"K46","ID":20848,"Name":"*0023 Baraki","PlayerID":8459255,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20848","ServerKey":"pl181","X":629,"Y":431},{"Bonus":0,"Continent":"K65","ID":20849,"Name":"~~006~~","PlayerID":7829201,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20849","ServerKey":"pl181","X":597,"Y":608},{"Bonus":0,"Continent":"K43","ID":20850,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20850","ServerKey":"pl181","X":390,"Y":405},{"Bonus":0,"Continent":"K66","ID":20851,"Name":"~~010~~","PlayerID":7829201,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20851","ServerKey":"pl181","X":604,"Y":601},{"Bonus":0,"Continent":"K56","ID":20852,"Name":"025","PlayerID":849095227,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20852","ServerKey":"pl181","X":628,"Y":559},{"Bonus":0,"Continent":"K65","ID":20853,"Name":"003","PlayerID":699567608,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20853","ServerKey":"pl181","X":588,"Y":611},{"Bonus":0,"Continent":"K65","ID":20854,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7417116,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20854","ServerKey":"pl181","X":522,"Y":642},{"Bonus":0,"Continent":"K34","ID":20855,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20855","ServerKey":"pl181","X":438,"Y":372},{"Bonus":0,"Continent":"K35","ID":20857,"Name":"033 034","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20857","ServerKey":"pl181","X":531,"Y":362},{"Bonus":0,"Continent":"K35","ID":20859,"Name":"143","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20859","ServerKey":"pl181","X":587,"Y":384},{"Bonus":0,"Continent":"K65","ID":20860,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20860","ServerKey":"pl181","X":546,"Y":638},{"Bonus":0,"Continent":"K46","ID":20861,"Name":"60. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20861","ServerKey":"pl181","X":625,"Y":478},{"Bonus":0,"Continent":"K53","ID":20862,"Name":"Wioska","PlayerID":699621601,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20862","ServerKey":"pl181","X":383,"Y":587},{"Bonus":0,"Continent":"K56","ID":20863,"Name":"B.026","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20863","ServerKey":"pl181","X":643,"Y":520},{"Bonus":0,"Continent":"K43","ID":20864,"Name":"HMS Drake","PlayerID":698884287,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20864","ServerKey":"pl181","X":386,"Y":420},{"Bonus":0,"Continent":"K64","ID":20865,"Name":"Pobozowisko","PlayerID":699513260,"Points":5254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20865","ServerKey":"pl181","X":403,"Y":606},{"Bonus":3,"Continent":"K56","ID":20866,"Name":"*5622* Happy happy","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20866","ServerKey":"pl181","X":641,"Y":527},{"Bonus":0,"Continent":"K53","ID":20867,"Name":"kiki","PlayerID":849095992,"Points":4586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20867","ServerKey":"pl181","X":375,"Y":575},{"Bonus":0,"Continent":"K35","ID":20868,"Name":"033 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20868","ServerKey":"pl181","X":544,"Y":364},{"Bonus":0,"Continent":"K53","ID":20869,"Name":"Wioska Kaimek","PlayerID":699797252,"Points":3077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20869","ServerKey":"pl181","X":367,"Y":554},{"Bonus":0,"Continent":"K64","ID":20870,"Name":"Pobozowisko","PlayerID":699513260,"Points":7159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20870","ServerKey":"pl181","X":407,"Y":606},{"Bonus":0,"Continent":"K34","ID":20871,"Name":"VN Menthuthuyoup","PlayerID":699883079,"Points":10409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20871","ServerKey":"pl181","X":492,"Y":357},{"Bonus":0,"Continent":"K35","ID":20872,"Name":"Taran","PlayerID":699170684,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20872","ServerKey":"pl181","X":546,"Y":367},{"Bonus":0,"Continent":"K46","ID":20873,"Name":"010 Legio I Parthica","PlayerID":699878150,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20873","ServerKey":"pl181","X":641,"Y":493},{"Bonus":0,"Continent":"K56","ID":20874,"Name":"003","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20874","ServerKey":"pl181","X":600,"Y":598},{"Bonus":8,"Continent":"K43","ID":20875,"Name":"Chatachama","PlayerID":698884287,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20875","ServerKey":"pl181","X":384,"Y":416},{"Bonus":0,"Continent":"K53","ID":20877,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20877","ServerKey":"pl181","X":382,"Y":574},{"Bonus":0,"Continent":"K35","ID":20878,"Name":"003 Wioska IdzieJesien","PlayerID":699509239,"Points":7824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20878","ServerKey":"pl181","X":569,"Y":372},{"Bonus":0,"Continent":"K64","ID":20879,"Name":"Ave Why!","PlayerID":698585370,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20879","ServerKey":"pl181","X":494,"Y":644},{"Bonus":0,"Continent":"K65","ID":20880,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20880","ServerKey":"pl181","X":545,"Y":634},{"Bonus":0,"Continent":"K56","ID":20881,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20881","ServerKey":"pl181","X":639,"Y":532},{"Bonus":0,"Continent":"K64","ID":20882,"Name":"Ave Why!","PlayerID":698585370,"Points":8990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20882","ServerKey":"pl181","X":466,"Y":637},{"Bonus":0,"Continent":"K65","ID":20883,"Name":"ObrzeĆŒa 06","PlayerID":848915531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20883","ServerKey":"pl181","X":544,"Y":632},{"Bonus":0,"Continent":"K35","ID":20884,"Name":"083","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20884","ServerKey":"pl181","X":585,"Y":382},{"Bonus":0,"Continent":"K44","ID":20885,"Name":"001","PlayerID":699788305,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20885","ServerKey":"pl181","X":403,"Y":431},{"Bonus":0,"Continent":"K65","ID":20886,"Name":"0384","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20886","ServerKey":"pl181","X":584,"Y":619},{"Bonus":0,"Continent":"K35","ID":20887,"Name":"xkikutx","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20887","ServerKey":"pl181","X":520,"Y":359},{"Bonus":0,"Continent":"K46","ID":20888,"Name":"042- Mroczna Osada","PlayerID":849035905,"Points":10459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20888","ServerKey":"pl181","X":636,"Y":447},{"Bonus":0,"Continent":"K64","ID":20889,"Name":"A017","PlayerID":699383279,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20889","ServerKey":"pl181","X":479,"Y":644},{"Bonus":0,"Continent":"K65","ID":20890,"Name":"W.07","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20890","ServerKey":"pl181","X":582,"Y":613},{"Bonus":0,"Continent":"K35","ID":20891,"Name":"A017","PlayerID":699761749,"Points":4044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20891","ServerKey":"pl181","X":583,"Y":385},{"Bonus":0,"Continent":"K35","ID":20892,"Name":"111 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20892","ServerKey":"pl181","X":534,"Y":359},{"Bonus":0,"Continent":"K65","ID":20893,"Name":"Yogi","PlayerID":2808172,"Points":8458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20893","ServerKey":"pl181","X":553,"Y":634},{"Bonus":0,"Continent":"K34","ID":20894,"Name":"0113","PlayerID":699431255,"Points":8616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20894","ServerKey":"pl181","X":435,"Y":377},{"Bonus":0,"Continent":"K46","ID":20895,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":8442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20895","ServerKey":"pl181","X":605,"Y":400},{"Bonus":0,"Continent":"K56","ID":20896,"Name":"$9.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20896","ServerKey":"pl181","X":635,"Y":551},{"Bonus":0,"Continent":"K43","ID":20897,"Name":"Wioska barbarzyƄsk33","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20897","ServerKey":"pl181","X":387,"Y":411},{"Bonus":0,"Continent":"K46","ID":20898,"Name":"*0019 Baraki","PlayerID":8459255,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20898","ServerKey":"pl181","X":621,"Y":430},{"Bonus":0,"Continent":"K43","ID":20899,"Name":"--006--","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20899","ServerKey":"pl181","X":382,"Y":415},{"Bonus":0,"Continent":"K66","ID":20900,"Name":"~~005~~","PlayerID":7829201,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20900","ServerKey":"pl181","X":600,"Y":603},{"Bonus":0,"Continent":"K65","ID":20901,"Name":"- 339 - RR","PlayerID":849018239,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20901","ServerKey":"pl181","X":598,"Y":603},{"Bonus":0,"Continent":"K53","ID":20902,"Name":"36. Wioska 36","PlayerID":849091769,"Points":8369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20902","ServerKey":"pl181","X":373,"Y":569},{"Bonus":0,"Continent":"K35","ID":20903,"Name":"039","PlayerID":849010255,"Points":6771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20903","ServerKey":"pl181","X":502,"Y":358},{"Bonus":0,"Continent":"K53","ID":20904,"Name":"04. Wioska 4","PlayerID":849091769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20904","ServerKey":"pl181","X":374,"Y":560},{"Bonus":7,"Continent":"K65","ID":20905,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20905","ServerKey":"pl181","X":525,"Y":639},{"Bonus":0,"Continent":"K64","ID":20906,"Name":"003.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20906","ServerKey":"pl181","X":484,"Y":650},{"Bonus":0,"Continent":"K64","ID":20907,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20907","ServerKey":"pl181","X":411,"Y":615},{"Bonus":0,"Continent":"K56","ID":20909,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20909","ServerKey":"pl181","X":617,"Y":578},{"Bonus":0,"Continent":"K65","ID":20911,"Name":"0022","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20911","ServerKey":"pl181","X":537,"Y":639},{"Bonus":0,"Continent":"K46","ID":20913,"Name":"#035.519|501","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20913","ServerKey":"pl181","X":638,"Y":452},{"Bonus":0,"Continent":"K43","ID":20914,"Name":"A0232","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20914","ServerKey":"pl181","X":365,"Y":463},{"Bonus":0,"Continent":"K65","ID":20915,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20915","ServerKey":"pl181","X":507,"Y":645},{"Bonus":0,"Continent":"K53","ID":20916,"Name":"030","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20916","ServerKey":"pl181","X":362,"Y":531},{"Bonus":0,"Continent":"K53","ID":20917,"Name":"46. Wioska 46","PlayerID":849091769,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20917","ServerKey":"pl181","X":366,"Y":549},{"Bonus":0,"Continent":"K46","ID":20918,"Name":"115","PlayerID":7085502,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20918","ServerKey":"pl181","X":622,"Y":424},{"Bonus":0,"Continent":"K64","ID":20919,"Name":"0009","PlayerID":6180190,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20919","ServerKey":"pl181","X":483,"Y":644},{"Bonus":0,"Continent":"K56","ID":20920,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":8114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20920","ServerKey":"pl181","X":629,"Y":561},{"Bonus":0,"Continent":"K35","ID":20921,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20921","ServerKey":"pl181","X":502,"Y":360},{"Bonus":0,"Continent":"K34","ID":20922,"Name":"108","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20922","ServerKey":"pl181","X":485,"Y":355},{"Bonus":0,"Continent":"K64","ID":20923,"Name":"026","PlayerID":849084985,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20923","ServerKey":"pl181","X":451,"Y":637},{"Bonus":0,"Continent":"K64","ID":20924,"Name":"Ulu-mulu","PlayerID":699697558,"Points":2149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20924","ServerKey":"pl181","X":420,"Y":621},{"Bonus":0,"Continent":"K46","ID":20925,"Name":"#060.","PlayerID":556154,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20925","ServerKey":"pl181","X":629,"Y":434},{"Bonus":0,"Continent":"K46","ID":20926,"Name":"057 Yatomi","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20926","ServerKey":"pl181","X":642,"Y":476},{"Bonus":0,"Continent":"K64","ID":20927,"Name":"A35","PlayerID":849037407,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20927","ServerKey":"pl181","X":472,"Y":644},{"Bonus":0,"Continent":"K46","ID":20928,"Name":"#030.516|502","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20928","ServerKey":"pl181","X":635,"Y":453},{"Bonus":0,"Continent":"K53","ID":20931,"Name":"059","PlayerID":698641566,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20931","ServerKey":"pl181","X":358,"Y":511},{"Bonus":0,"Continent":"K35","ID":20932,"Name":"215","PlayerID":849064752,"Points":5030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20932","ServerKey":"pl181","X":579,"Y":384},{"Bonus":0,"Continent":"K43","ID":20933,"Name":"Aldrajch to nie Slonsk gorolu","PlayerID":699711723,"Points":5765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20933","ServerKey":"pl181","X":375,"Y":439},{"Bonus":0,"Continent":"K44","ID":20934,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20934","ServerKey":"pl181","X":400,"Y":401},{"Bonus":0,"Continent":"K46","ID":20935,"Name":"#022.518|500","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20935","ServerKey":"pl181","X":637,"Y":451},{"Bonus":0,"Continent":"K53","ID":20936,"Name":"004","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20936","ServerKey":"pl181","X":362,"Y":534},{"Bonus":0,"Continent":"K56","ID":20937,"Name":"35k$ Grvvyq","PlayerID":699676005,"Points":10428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20937","ServerKey":"pl181","X":634,"Y":550},{"Bonus":0,"Continent":"K46","ID":20938,"Name":"Jan na kraƄcu ƛwiata","PlayerID":879782,"Points":8620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20938","ServerKey":"pl181","X":645,"Y":499},{"Bonus":0,"Continent":"K53","ID":20939,"Name":"53. Wioska 53","PlayerID":849091769,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20939","ServerKey":"pl181","X":364,"Y":546},{"Bonus":0,"Continent":"K46","ID":20940,"Name":"*0027 Baraki","PlayerID":8459255,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20940","ServerKey":"pl181","X":626,"Y":431},{"Bonus":0,"Continent":"K35","ID":20941,"Name":"0023","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20941","ServerKey":"pl181","X":593,"Y":383},{"Bonus":0,"Continent":"K65","ID":20942,"Name":"RTS 12","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20942","ServerKey":"pl181","X":577,"Y":621},{"Bonus":0,"Continent":"K46","ID":20943,"Name":"Wioska barbarzyƄska","PlayerID":8337151,"Points":5308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20943","ServerKey":"pl181","X":623,"Y":430},{"Bonus":0,"Continent":"K56","ID":20944,"Name":"082","PlayerID":699351301,"Points":6821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20944","ServerKey":"pl181","X":641,"Y":512},{"Bonus":0,"Continent":"K65","ID":20945,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20945","ServerKey":"pl181","X":526,"Y":643},{"Bonus":0,"Continent":"K64","ID":20946,"Name":"Pobozowisko","PlayerID":699513260,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20946","ServerKey":"pl181","X":409,"Y":613},{"Bonus":0,"Continent":"K46","ID":20947,"Name":"Jan 013 k","PlayerID":879782,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20947","ServerKey":"pl181","X":642,"Y":472},{"Bonus":0,"Continent":"K65","ID":20948,"Name":"0371","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20948","ServerKey":"pl181","X":562,"Y":628},{"Bonus":0,"Continent":"K53","ID":20949,"Name":"005","PlayerID":699621601,"Points":9610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20949","ServerKey":"pl181","X":393,"Y":570},{"Bonus":0,"Continent":"K34","ID":20950,"Name":"072","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20950","ServerKey":"pl181","X":469,"Y":361},{"Bonus":0,"Continent":"K54","ID":20951,"Name":"Wioska Polanski19ooo7","PlayerID":699698253,"Points":2818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20951","ServerKey":"pl181","X":453,"Y":543},{"Bonus":0,"Continent":"K65","ID":20952,"Name":"0030","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20952","ServerKey":"pl181","X":535,"Y":640},{"Bonus":0,"Continent":"K53","ID":20953,"Name":"02. Wioska 2","PlayerID":849091769,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20953","ServerKey":"pl181","X":372,"Y":560},{"Bonus":0,"Continent":"K35","ID":20954,"Name":"122","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20954","ServerKey":"pl181","X":576,"Y":382},{"Bonus":0,"Continent":"K56","ID":20955,"Name":"033","PlayerID":699413040,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20955","ServerKey":"pl181","X":638,"Y":512},{"Bonus":0,"Continent":"K53","ID":20956,"Name":"60. Wioska 60","PlayerID":849091769,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20956","ServerKey":"pl181","X":370,"Y":554},{"Bonus":0,"Continent":"K43","ID":20957,"Name":"A0295","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20957","ServerKey":"pl181","X":361,"Y":488},{"Bonus":5,"Continent":"K64","ID":20958,"Name":"0004","PlayerID":699117178,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20958","ServerKey":"pl181","X":479,"Y":643},{"Bonus":0,"Continent":"K34","ID":20959,"Name":"127","PlayerID":7271812,"Points":6567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20959","ServerKey":"pl181","X":475,"Y":358},{"Bonus":0,"Continent":"K56","ID":20960,"Name":"035","PlayerID":698786826,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20960","ServerKey":"pl181","X":611,"Y":587},{"Bonus":0,"Continent":"K64","ID":20961,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":5254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20961","ServerKey":"pl181","X":491,"Y":641},{"Bonus":0,"Continent":"K46","ID":20962,"Name":"*0022 Baraki","PlayerID":8459255,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20962","ServerKey":"pl181","X":622,"Y":432},{"Bonus":0,"Continent":"K65","ID":20963,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20963","ServerKey":"pl181","X":546,"Y":635},{"Bonus":0,"Continent":"K64","ID":20964,"Name":"034","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20964","ServerKey":"pl181","X":449,"Y":637},{"Bonus":0,"Continent":"K64","ID":20965,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20965","ServerKey":"pl181","X":417,"Y":619},{"Bonus":0,"Continent":"K43","ID":20966,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20966","ServerKey":"pl181","X":391,"Y":405},{"Bonus":0,"Continent":"K46","ID":20967,"Name":"0042","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20967","ServerKey":"pl181","X":617,"Y":421},{"Bonus":0,"Continent":"K46","ID":20968,"Name":"Gattacka","PlayerID":699298370,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20968","ServerKey":"pl181","X":609,"Y":404},{"Bonus":8,"Continent":"K46","ID":20969,"Name":"Gattacka","PlayerID":699298370,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20969","ServerKey":"pl181","X":607,"Y":405},{"Bonus":0,"Continent":"K34","ID":20971,"Name":"Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20971","ServerKey":"pl181","X":449,"Y":368},{"Bonus":0,"Continent":"K34","ID":20972,"Name":"0145","PlayerID":699431255,"Points":6016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20972","ServerKey":"pl181","X":430,"Y":372},{"Bonus":0,"Continent":"K56","ID":20973,"Name":"B.040","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20973","ServerKey":"pl181","X":644,"Y":503},{"Bonus":0,"Continent":"K35","ID":20974,"Name":"WE ARE READY!","PlayerID":1553947,"Points":6442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20974","ServerKey":"pl181","X":597,"Y":391},{"Bonus":0,"Continent":"K35","ID":20975,"Name":".:128:. Niangmen","PlayerID":848934935,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20975","ServerKey":"pl181","X":506,"Y":398},{"Bonus":0,"Continent":"K46","ID":20976,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20976","ServerKey":"pl181","X":621,"Y":419},{"Bonus":0,"Continent":"K56","ID":20977,"Name":"034 Armeria","PlayerID":699272880,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20977","ServerKey":"pl181","X":618,"Y":585},{"Bonus":0,"Continent":"K34","ID":20978,"Name":"044","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20978","ServerKey":"pl181","X":472,"Y":360},{"Bonus":0,"Continent":"K46","ID":20979,"Name":"006.Critical 2.0","PlayerID":699429153,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20979","ServerKey":"pl181","X":632,"Y":441},{"Bonus":0,"Continent":"K64","ID":20980,"Name":"A012","PlayerID":699383279,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20980","ServerKey":"pl181","X":474,"Y":641},{"Bonus":0,"Continent":"K65","ID":20981,"Name":"0025","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20981","ServerKey":"pl181","X":539,"Y":640},{"Bonus":0,"Continent":"K35","ID":20982,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20982","ServerKey":"pl181","X":526,"Y":379},{"Bonus":0,"Continent":"K43","ID":20983,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20983","ServerKey":"pl181","X":394,"Y":401},{"Bonus":0,"Continent":"K53","ID":20984,"Name":"off 100 %","PlayerID":849012521,"Points":10163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20984","ServerKey":"pl181","X":382,"Y":583},{"Bonus":0,"Continent":"K35","ID":20985,"Name":"V 001","PlayerID":6384450,"Points":8988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20985","ServerKey":"pl181","X":589,"Y":390},{"Bonus":0,"Continent":"K46","ID":20986,"Name":"Jan 028 (1)","PlayerID":879782,"Points":9001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20986","ServerKey":"pl181","X":641,"Y":469},{"Bonus":0,"Continent":"K46","ID":20987,"Name":"Gattacka","PlayerID":699298370,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20987","ServerKey":"pl181","X":611,"Y":414},{"Bonus":0,"Continent":"K34","ID":20988,"Name":"111","PlayerID":699761749,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20988","ServerKey":"pl181","X":483,"Y":356},{"Bonus":0,"Continent":"K56","ID":20989,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20989","ServerKey":"pl181","X":622,"Y":577},{"Bonus":0,"Continent":"K34","ID":20990,"Name":"0058","PlayerID":699431255,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20990","ServerKey":"pl181","X":448,"Y":365},{"Bonus":0,"Continent":"K35","ID":20991,"Name":"012 Dobry Film","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20991","ServerKey":"pl181","X":537,"Y":362},{"Bonus":0,"Continent":"K56","ID":20992,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20992","ServerKey":"pl181","X":638,"Y":527},{"Bonus":0,"Continent":"K56","ID":20993,"Name":"[012]","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20993","ServerKey":"pl181","X":609,"Y":590},{"Bonus":0,"Continent":"K53","ID":20994,"Name":"024","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20994","ServerKey":"pl181","X":362,"Y":527},{"Bonus":7,"Continent":"K53","ID":20995,"Name":"025","PlayerID":6853693,"Points":5562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20995","ServerKey":"pl181","X":362,"Y":536},{"Bonus":0,"Continent":"K35","ID":20996,"Name":"A009","PlayerID":699208929,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20996","ServerKey":"pl181","X":518,"Y":361},{"Bonus":0,"Continent":"K43","ID":20997,"Name":"WiedĆșma","PlayerID":698884287,"Points":4586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20997","ServerKey":"pl181","X":382,"Y":420},{"Bonus":0,"Continent":"K64","ID":20999,"Name":"Ave Why!","PlayerID":698585370,"Points":7944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=20999","ServerKey":"pl181","X":490,"Y":640},{"Bonus":0,"Continent":"K65","ID":21000,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21000","ServerKey":"pl181","X":527,"Y":640},{"Bonus":0,"Continent":"K65","ID":21001,"Name":"W.06","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21001","ServerKey":"pl181","X":585,"Y":613},{"Bonus":0,"Continent":"K56","ID":21002,"Name":"051","PlayerID":698786826,"Points":8870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21002","ServerKey":"pl181","X":614,"Y":587},{"Bonus":0,"Continent":"K34","ID":21004,"Name":"103","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21004","ServerKey":"pl181","X":486,"Y":356},{"Bonus":0,"Continent":"K56","ID":21005,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":7241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21005","ServerKey":"pl181","X":641,"Y":532},{"Bonus":0,"Continent":"K46","ID":21006,"Name":"Janxxv 01 K","PlayerID":879782,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21006","ServerKey":"pl181","X":642,"Y":469},{"Bonus":0,"Continent":"K53","ID":21007,"Name":"Wioska","PlayerID":849084005,"Points":8308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21007","ServerKey":"pl181","X":366,"Y":547},{"Bonus":0,"Continent":"K53","ID":21008,"Name":"053 Kuzyn skonfiskowaƂ Atlantydę","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21008","ServerKey":"pl181","X":378,"Y":577},{"Bonus":0,"Continent":"K56","ID":21009,"Name":"[026]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21009","ServerKey":"pl181","X":639,"Y":514},{"Bonus":6,"Continent":"K34","ID":21010,"Name":"0035","PlayerID":699431255,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21010","ServerKey":"pl181","X":449,"Y":365},{"Bonus":0,"Continent":"K34","ID":21011,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21011","ServerKey":"pl181","X":440,"Y":371},{"Bonus":0,"Continent":"K46","ID":21013,"Name":"Jehu_Kingdom_47","PlayerID":8785314,"Points":7580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21013","ServerKey":"pl181","X":642,"Y":467},{"Bonus":0,"Continent":"K43","ID":21014,"Name":"A0193","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21014","ServerKey":"pl181","X":360,"Y":481},{"Bonus":0,"Continent":"K53","ID":21015,"Name":".3.","PlayerID":849012521,"Points":8373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21015","ServerKey":"pl181","X":366,"Y":555},{"Bonus":0,"Continent":"K56","ID":21016,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":6528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21016","ServerKey":"pl181","X":641,"Y":513},{"Bonus":0,"Continent":"K34","ID":21017,"Name":"119","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21017","ServerKey":"pl181","X":471,"Y":357},{"Bonus":0,"Continent":"K64","ID":21018,"Name":"aaaa","PlayerID":6948793,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21018","ServerKey":"pl181","X":479,"Y":642},{"Bonus":0,"Continent":"K43","ID":21019,"Name":"Westcoast.099","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21019","ServerKey":"pl181","X":374,"Y":430},{"Bonus":1,"Continent":"K35","ID":21020,"Name":"016 015","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21020","ServerKey":"pl181","X":537,"Y":361},{"Bonus":0,"Continent":"K56","ID":21021,"Name":"012","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21021","ServerKey":"pl181","X":605,"Y":593},{"Bonus":0,"Continent":"K46","ID":21022,"Name":"091. Byblus","PlayerID":849091866,"Points":9289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21022","ServerKey":"pl181","X":626,"Y":432},{"Bonus":0,"Continent":"K65","ID":21023,"Name":"Lesne dzbany","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21023","ServerKey":"pl181","X":579,"Y":620},{"Bonus":0,"Continent":"K64","ID":21024,"Name":"Ave Why!","PlayerID":698585370,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21024","ServerKey":"pl181","X":463,"Y":639},{"Bonus":0,"Continent":"K34","ID":21025,"Name":"Wioska_1","PlayerID":848942968,"Points":3577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21025","ServerKey":"pl181","X":489,"Y":356},{"Bonus":0,"Continent":"K56","ID":21026,"Name":"Hey You","PlayerID":848926293,"Points":7537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21026","ServerKey":"pl181","X":625,"Y":568},{"Bonus":0,"Continent":"K34","ID":21027,"Name":"#0029 gram w ligę","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21027","ServerKey":"pl181","X":461,"Y":363},{"Bonus":0,"Continent":"K64","ID":21028,"Name":"ave why!","PlayerID":698143931,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21028","ServerKey":"pl181","X":449,"Y":634},{"Bonus":0,"Continent":"K43","ID":21029,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21029","ServerKey":"pl181","X":369,"Y":446},{"Bonus":0,"Continent":"K53","ID":21030,"Name":"22. Wioska 22","PlayerID":849091769,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21030","ServerKey":"pl181","X":366,"Y":557},{"Bonus":6,"Continent":"K64","ID":21031,"Name":"054","PlayerID":699783765,"Points":5723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21031","ServerKey":"pl181","X":426,"Y":621},{"Bonus":0,"Continent":"K35","ID":21032,"Name":"A022","PlayerID":699485250,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21032","ServerKey":"pl181","X":587,"Y":383},{"Bonus":0,"Continent":"K56","ID":21033,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21033","ServerKey":"pl181","X":614,"Y":581},{"Bonus":0,"Continent":"K65","ID":21034,"Name":"RTS 10","PlayerID":848995242,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21034","ServerKey":"pl181","X":580,"Y":622},{"Bonus":0,"Continent":"K43","ID":21035,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21035","ServerKey":"pl181","X":366,"Y":455},{"Bonus":0,"Continent":"K65","ID":21036,"Name":"003. PiszczaƂka","PlayerID":848928624,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21036","ServerKey":"pl181","X":504,"Y":642},{"Bonus":0,"Continent":"K34","ID":21037,"Name":"Szlachcic","PlayerID":698388578,"Points":8267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21037","ServerKey":"pl181","X":426,"Y":376},{"Bonus":2,"Continent":"K65","ID":21038,"Name":"Osada koczownikĂłw","PlayerID":7589468,"Points":8884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21038","ServerKey":"pl181","X":526,"Y":638},{"Bonus":0,"Continent":"K56","ID":21039,"Name":"monetki D","PlayerID":698768565,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21039","ServerKey":"pl181","X":637,"Y":548},{"Bonus":0,"Continent":"K65","ID":21040,"Name":"0560","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21040","ServerKey":"pl181","X":568,"Y":628},{"Bonus":0,"Continent":"K35","ID":21041,"Name":"Lord Lord Franek .#180","PlayerID":698420691,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21041","ServerKey":"pl181","X":515,"Y":355},{"Bonus":0,"Continent":"K53","ID":21042,"Name":"006","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21042","ServerKey":"pl181","X":360,"Y":517},{"Bonus":0,"Continent":"K56","ID":21043,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21043","ServerKey":"pl181","X":624,"Y":564},{"Bonus":0,"Continent":"K34","ID":21044,"Name":"0093","PlayerID":699431255,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21044","ServerKey":"pl181","X":459,"Y":397},{"Bonus":0,"Continent":"K43","ID":21045,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21045","ServerKey":"pl181","X":386,"Y":418},{"Bonus":2,"Continent":"K64","ID":21046,"Name":"004","PlayerID":699783765,"Points":4328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21046","ServerKey":"pl181","X":429,"Y":623},{"Bonus":0,"Continent":"K46","ID":21047,"Name":"B007","PlayerID":9314079,"Points":10890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21047","ServerKey":"pl181","X":645,"Y":489},{"Bonus":0,"Continent":"K35","ID":21048,"Name":".005.MulęRĂłĆŒ","PlayerID":699072129,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21048","ServerKey":"pl181","X":561,"Y":373},{"Bonus":0,"Continent":"K56","ID":21049,"Name":"036","PlayerID":698786826,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21049","ServerKey":"pl181","X":612,"Y":589},{"Bonus":0,"Continent":"K43","ID":21050,"Name":"MELISKA","PlayerID":699794765,"Points":10369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21050","ServerKey":"pl181","X":358,"Y":470},{"Bonus":0,"Continent":"K64","ID":21051,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21051","ServerKey":"pl181","X":454,"Y":639},{"Bonus":0,"Continent":"K53","ID":21052,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21052","ServerKey":"pl181","X":358,"Y":528},{"Bonus":7,"Continent":"K56","ID":21053,"Name":"052","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21053","ServerKey":"pl181","X":642,"Y":532},{"Bonus":0,"Continent":"K34","ID":21054,"Name":"A-026","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21054","ServerKey":"pl181","X":400,"Y":399},{"Bonus":0,"Continent":"K34","ID":21055,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21055","ServerKey":"pl181","X":404,"Y":396},{"Bonus":0,"Continent":"K56","ID":21056,"Name":"008.","PlayerID":849094609,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21056","ServerKey":"pl181","X":645,"Y":502},{"Bonus":0,"Continent":"K35","ID":21057,"Name":"A007","PlayerID":699761749,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21057","ServerKey":"pl181","X":598,"Y":393},{"Bonus":0,"Continent":"K56","ID":21059,"Name":"014","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21059","ServerKey":"pl181","X":607,"Y":592},{"Bonus":0,"Continent":"K64","ID":21060,"Name":"A011","PlayerID":699383279,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21060","ServerKey":"pl181","X":472,"Y":641},{"Bonus":0,"Continent":"K46","ID":21062,"Name":"#.43 Wioska barbarzyƄska","PlayerID":849054582,"Points":4622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21062","ServerKey":"pl181","X":638,"Y":482},{"Bonus":0,"Continent":"K65","ID":21063,"Name":"[0006] Franek 154","PlayerID":699567608,"Points":9011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21063","ServerKey":"pl181","X":560,"Y":629},{"Bonus":0,"Continent":"K46","ID":21064,"Name":"Gattacka","PlayerID":699298370,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21064","ServerKey":"pl181","X":612,"Y":416},{"Bonus":0,"Continent":"K34","ID":21065,"Name":"VN Franklin Bordeau","PlayerID":699883079,"Points":8458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21065","ServerKey":"pl181","X":455,"Y":366},{"Bonus":0,"Continent":"K43","ID":21066,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21066","ServerKey":"pl181","X":392,"Y":407},{"Bonus":0,"Continent":"K46","ID":21067,"Name":"Jan 6 mdomek 02 K","PlayerID":879782,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21067","ServerKey":"pl181","X":639,"Y":470},{"Bonus":0,"Continent":"K43","ID":21068,"Name":"Westcoast.110","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21068","ServerKey":"pl181","X":376,"Y":435},{"Bonus":0,"Continent":"K35","ID":21069,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21069","ServerKey":"pl181","X":597,"Y":398},{"Bonus":0,"Continent":"K55","ID":21070,"Name":"0046","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21070","ServerKey":"pl181","X":560,"Y":528},{"Bonus":0,"Continent":"K66","ID":21071,"Name":"~~002~~","PlayerID":7829201,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21071","ServerKey":"pl181","X":601,"Y":602},{"Bonus":0,"Continent":"K53","ID":21072,"Name":"Idris","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21072","ServerKey":"pl181","X":382,"Y":576},{"Bonus":0,"Continent":"K65","ID":21073,"Name":"K65","PlayerID":7589468,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21073","ServerKey":"pl181","X":534,"Y":637},{"Bonus":0,"Continent":"K63","ID":21074,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21074","ServerKey":"pl181","X":399,"Y":601},{"Bonus":0,"Continent":"K34","ID":21075,"Name":"067","PlayerID":698388578,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21075","ServerKey":"pl181","X":427,"Y":378},{"Bonus":0,"Continent":"K44","ID":21076,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21076","ServerKey":"pl181","X":405,"Y":407},{"Bonus":0,"Continent":"K34","ID":21077,"Name":"Szlachcic","PlayerID":698388578,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21077","ServerKey":"pl181","X":425,"Y":377},{"Bonus":0,"Continent":"K35","ID":21078,"Name":"A009","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21078","ServerKey":"pl181","X":580,"Y":377},{"Bonus":0,"Continent":"K35","ID":21079,"Name":"065 Biedronkowo PP","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21079","ServerKey":"pl181","X":537,"Y":364},{"Bonus":0,"Continent":"K46","ID":21080,"Name":"014. Troja","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21080","ServerKey":"pl181","X":637,"Y":447},{"Bonus":0,"Continent":"K35","ID":21081,"Name":"Bogdaniec","PlayerID":699755859,"Points":5017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21081","ServerKey":"pl181","X":505,"Y":390},{"Bonus":0,"Continent":"K53","ID":21082,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21082","ServerKey":"pl181","X":359,"Y":508},{"Bonus":0,"Continent":"K34","ID":21083,"Name":"Szlachcic","PlayerID":698388578,"Points":7735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21083","ServerKey":"pl181","X":426,"Y":374},{"Bonus":0,"Continent":"K35","ID":21084,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21084","ServerKey":"pl181","X":526,"Y":357},{"Bonus":0,"Continent":"K43","ID":21085,"Name":"Afro","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21085","ServerKey":"pl181","X":379,"Y":493},{"Bonus":0,"Continent":"K46","ID":21086,"Name":"016 Wioska","PlayerID":699671454,"Points":5752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21086","ServerKey":"pl181","X":634,"Y":458},{"Bonus":0,"Continent":"K53","ID":21087,"Name":"Wioska barbarzyƄska","PlayerID":9167250,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21087","ServerKey":"pl181","X":399,"Y":567},{"Bonus":0,"Continent":"K33","ID":21088,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21088","ServerKey":"pl181","X":397,"Y":398},{"Bonus":0,"Continent":"K64","ID":21089,"Name":"Pobozowisko","PlayerID":699513260,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21089","ServerKey":"pl181","X":411,"Y":611},{"Bonus":0,"Continent":"K34","ID":21090,"Name":"c 061d","PlayerID":3909522,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21090","ServerKey":"pl181","X":417,"Y":380},{"Bonus":3,"Continent":"K34","ID":21091,"Name":"K34 - [023] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21091","ServerKey":"pl181","X":441,"Y":373},{"Bonus":0,"Continent":"K43","ID":21092,"Name":"A0145","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21092","ServerKey":"pl181","X":360,"Y":497},{"Bonus":0,"Continent":"K65","ID":21093,"Name":"SSJ 044","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21093","ServerKey":"pl181","X":512,"Y":643},{"Bonus":0,"Continent":"K46","ID":21094,"Name":"022 | PALESTINA | Msqt [*]","PlayerID":9228039,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21094","ServerKey":"pl181","X":624,"Y":428},{"Bonus":0,"Continent":"K64","ID":21095,"Name":"0002","PlayerID":699117178,"Points":5268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21095","ServerKey":"pl181","X":476,"Y":643},{"Bonus":0,"Continent":"K64","ID":21096,"Name":"017","PlayerID":699783765,"Points":5033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21096","ServerKey":"pl181","X":429,"Y":622},{"Bonus":0,"Continent":"K46","ID":21097,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21097","ServerKey":"pl181","X":606,"Y":401},{"Bonus":0,"Continent":"K53","ID":21098,"Name":"Pobozowisko","PlayerID":699513260,"Points":5156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21098","ServerKey":"pl181","X":395,"Y":595},{"Bonus":0,"Continent":"K54","ID":21099,"Name":"Pobozowisko","PlayerID":699513260,"Points":10858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21099","ServerKey":"pl181","X":400,"Y":598},{"Bonus":0,"Continent":"K65","ID":21101,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21101","ServerKey":"pl181","X":508,"Y":643},{"Bonus":0,"Continent":"K56","ID":21103,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21103","ServerKey":"pl181","X":638,"Y":550},{"Bonus":0,"Continent":"K34","ID":21105,"Name":"073","PlayerID":698739350,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21105","ServerKey":"pl181","X":465,"Y":359},{"Bonus":0,"Continent":"K53","ID":21106,"Name":"043","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21106","ServerKey":"pl181","X":370,"Y":564},{"Bonus":0,"Continent":"K36","ID":21107,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21107","ServerKey":"pl181","X":602,"Y":395},{"Bonus":0,"Continent":"K34","ID":21108,"Name":"K34 - [115] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21108","ServerKey":"pl181","X":450,"Y":380},{"Bonus":0,"Continent":"K65","ID":21109,"Name":"0410","PlayerID":698659980,"Points":8954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21109","ServerKey":"pl181","X":541,"Y":634},{"Bonus":0,"Continent":"K34","ID":21110,"Name":"070","PlayerID":699796330,"Points":8031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21110","ServerKey":"pl181","X":429,"Y":376},{"Bonus":0,"Continent":"K64","ID":21111,"Name":"Pobozowisko","PlayerID":699513260,"Points":8594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21111","ServerKey":"pl181","X":410,"Y":613},{"Bonus":0,"Continent":"K34","ID":21112,"Name":"c 00447","PlayerID":3909522,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21112","ServerKey":"pl181","X":413,"Y":390},{"Bonus":0,"Continent":"K35","ID":21113,"Name":"Lord Lord Franek .#209","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21113","ServerKey":"pl181","X":518,"Y":358},{"Bonus":0,"Continent":"K34","ID":21114,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21114","ServerKey":"pl181","X":497,"Y":356},{"Bonus":0,"Continent":"K64","ID":21115,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":5296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21115","ServerKey":"pl181","X":433,"Y":628},{"Bonus":0,"Continent":"K56","ID":21116,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21116","ServerKey":"pl181","X":621,"Y":583},{"Bonus":0,"Continent":"K53","ID":21117,"Name":"JUHUUUUUUU :P","PlayerID":849095992,"Points":4961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21117","ServerKey":"pl181","X":381,"Y":585},{"Bonus":0,"Continent":"K65","ID":21118,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21118","ServerKey":"pl181","X":527,"Y":641},{"Bonus":0,"Continent":"K35","ID":21119,"Name":".:058:. ƁOBUZIK","PlayerID":848934935,"Points":3108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21119","ServerKey":"pl181","X":552,"Y":365},{"Bonus":0,"Continent":"K53","ID":21120,"Name":"154 Ale mnie gƂówka boli","PlayerID":699382126,"Points":7988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21120","ServerKey":"pl181","X":375,"Y":567},{"Bonus":0,"Continent":"K64","ID":21121,"Name":"#003","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21121","ServerKey":"pl181","X":472,"Y":611},{"Bonus":0,"Continent":"K34","ID":21122,"Name":"Szlachcic","PlayerID":698388578,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21122","ServerKey":"pl181","X":423,"Y":376},{"Bonus":0,"Continent":"K46","ID":21123,"Name":"Gattacka","PlayerID":699298370,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21123","ServerKey":"pl181","X":613,"Y":416},{"Bonus":0,"Continent":"K35","ID":21124,"Name":"C002","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21124","ServerKey":"pl181","X":594,"Y":387},{"Bonus":0,"Continent":"K34","ID":21125,"Name":"Wioska barbarzyƄska","PlayerID":848942968,"Points":3761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21125","ServerKey":"pl181","X":491,"Y":358},{"Bonus":0,"Continent":"K34","ID":21126,"Name":"c Fyra 3","PlayerID":3909522,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21126","ServerKey":"pl181","X":402,"Y":394},{"Bonus":0,"Continent":"K53","ID":21127,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21127","ServerKey":"pl181","X":360,"Y":525},{"Bonus":0,"Continent":"K64","ID":21128,"Name":"0rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21128","ServerKey":"pl181","X":419,"Y":616},{"Bonus":0,"Continent":"K64","ID":21129,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":6673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21129","ServerKey":"pl181","X":425,"Y":620},{"Bonus":0,"Continent":"K65","ID":21130,"Name":"0405","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21130","ServerKey":"pl181","X":553,"Y":637},{"Bonus":0,"Continent":"K53","ID":21131,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21131","ServerKey":"pl181","X":357,"Y":533},{"Bonus":0,"Continent":"K35","ID":21133,"Name":"R-11","PlayerID":3600737,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21133","ServerKey":"pl181","X":588,"Y":384},{"Bonus":0,"Continent":"K43","ID":21134,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21134","ServerKey":"pl181","X":369,"Y":451},{"Bonus":0,"Continent":"K35","ID":21135,"Name":"C011","PlayerID":699761749,"Points":6376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21135","ServerKey":"pl181","X":584,"Y":388},{"Bonus":0,"Continent":"K43","ID":21137,"Name":"016","PlayerID":848921536,"Points":3142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21137","ServerKey":"pl181","X":387,"Y":415},{"Bonus":0,"Continent":"K56","ID":21138,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21138","ServerKey":"pl181","X":638,"Y":549},{"Bonus":0,"Continent":"K46","ID":21139,"Name":"Gattacka","PlayerID":699298370,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21139","ServerKey":"pl181","X":609,"Y":410},{"Bonus":0,"Continent":"K53","ID":21140,"Name":"013","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21140","ServerKey":"pl181","X":360,"Y":546},{"Bonus":0,"Continent":"K53","ID":21141,"Name":"024","PlayerID":8908002,"Points":7613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21141","ServerKey":"pl181","X":363,"Y":542},{"Bonus":0,"Continent":"K53","ID":21142,"Name":"Pobozowisko","PlayerID":699513260,"Points":9639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21142","ServerKey":"pl181","X":395,"Y":596},{"Bonus":0,"Continent":"K43","ID":21143,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21143","ServerKey":"pl181","X":372,"Y":443},{"Bonus":0,"Continent":"K64","ID":21144,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21144","ServerKey":"pl181","X":497,"Y":642},{"Bonus":0,"Continent":"K35","ID":21145,"Name":"ZDERZENIE Z BETONEM","PlayerID":699761749,"Points":8444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21145","ServerKey":"pl181","X":578,"Y":393},{"Bonus":0,"Continent":"K46","ID":21146,"Name":"Wioska (037)","PlayerID":698232227,"Points":7932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21146","ServerKey":"pl181","X":644,"Y":479},{"Bonus":0,"Continent":"K34","ID":21147,"Name":"c 057d","PlayerID":3909522,"Points":6656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21147","ServerKey":"pl181","X":422,"Y":382},{"Bonus":0,"Continent":"K56","ID":21148,"Name":"058","PlayerID":698786826,"Points":8554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21148","ServerKey":"pl181","X":619,"Y":585},{"Bonus":0,"Continent":"K65","ID":21149,"Name":"001 RTS CZW","PlayerID":699567608,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21149","ServerKey":"pl181","X":579,"Y":624},{"Bonus":0,"Continent":"K64","ID":21150,"Name":"101","PlayerID":849084985,"Points":9206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21150","ServerKey":"pl181","X":454,"Y":636},{"Bonus":0,"Continent":"K65","ID":21151,"Name":"SSJ 009","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21151","ServerKey":"pl181","X":507,"Y":640},{"Bonus":0,"Continent":"K35","ID":21152,"Name":"A037","PlayerID":699485250,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21152","ServerKey":"pl181","X":571,"Y":373},{"Bonus":0,"Continent":"K65","ID":21155,"Name":"lubie ogieƄ .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21155","ServerKey":"pl181","X":580,"Y":621},{"Bonus":0,"Continent":"K34","ID":21156,"Name":"Konfederacja +","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21156","ServerKey":"pl181","X":466,"Y":375},{"Bonus":0,"Continent":"K64","ID":21157,"Name":"|A| Elderbourne","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21157","ServerKey":"pl181","X":480,"Y":643},{"Bonus":0,"Continent":"K34","ID":21158,"Name":"104","PlayerID":7271812,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21158","ServerKey":"pl181","X":477,"Y":356},{"Bonus":0,"Continent":"K64","ID":21159,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21159","ServerKey":"pl181","X":400,"Y":606},{"Bonus":0,"Continent":"K46","ID":21160,"Name":"024","PlayerID":699298370,"Points":7735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21160","ServerKey":"pl181","X":610,"Y":405},{"Bonus":0,"Continent":"K34","ID":21162,"Name":"104","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21162","ServerKey":"pl181","X":483,"Y":357},{"Bonus":0,"Continent":"K43","ID":21163,"Name":"A0168","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21163","ServerKey":"pl181","X":354,"Y":484},{"Bonus":0,"Continent":"K56","ID":21164,"Name":"B.014","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21164","ServerKey":"pl181","X":646,"Y":515},{"Bonus":0,"Continent":"K56","ID":21165,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":7882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21165","ServerKey":"pl181","X":631,"Y":563},{"Bonus":0,"Continent":"K65","ID":21166,"Name":"Prawa","PlayerID":7589468,"Points":8884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21166","ServerKey":"pl181","X":544,"Y":639},{"Bonus":0,"Continent":"K56","ID":21167,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21167","ServerKey":"pl181","X":635,"Y":540},{"Bonus":0,"Continent":"K34","ID":21168,"Name":"106","PlayerID":7271812,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21168","ServerKey":"pl181","X":474,"Y":358},{"Bonus":0,"Continent":"K56","ID":21169,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21169","ServerKey":"pl181","X":613,"Y":583},{"Bonus":0,"Continent":"K34","ID":21171,"Name":"Wioska Dam2314","PlayerID":699630110,"Points":4776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21171","ServerKey":"pl181","X":496,"Y":356},{"Bonus":0,"Continent":"K53","ID":21172,"Name":"pepe","PlayerID":849030226,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21172","ServerKey":"pl181","X":360,"Y":524},{"Bonus":0,"Continent":"K43","ID":21174,"Name":"Westcoast.111","PlayerID":848918380,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21174","ServerKey":"pl181","X":378,"Y":428},{"Bonus":0,"Continent":"K46","ID":21175,"Name":"003 Legio I Iulia Alpina (R)","PlayerID":699878150,"Points":6956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21175","ServerKey":"pl181","X":642,"Y":492},{"Bonus":0,"Continent":"K53","ID":21176,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":2827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21176","ServerKey":"pl181","X":388,"Y":586},{"Bonus":0,"Continent":"K34","ID":21177,"Name":"c Kolwicz 006","PlayerID":3909522,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21177","ServerKey":"pl181","X":408,"Y":392},{"Bonus":0,"Continent":"K34","ID":21178,"Name":"007","PlayerID":699883079,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21178","ServerKey":"pl181","X":464,"Y":363},{"Bonus":0,"Continent":"K56","ID":21179,"Name":"019","PlayerID":849095227,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21179","ServerKey":"pl181","X":630,"Y":555},{"Bonus":0,"Continent":"K64","ID":21180,"Name":"000","PlayerID":698143931,"Points":8753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21180","ServerKey":"pl181","X":450,"Y":634},{"Bonus":0,"Continent":"K56","ID":21181,"Name":"Nowa 25","PlayerID":698702991,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21181","ServerKey":"pl181","X":628,"Y":567},{"Bonus":0,"Continent":"K65","ID":21182,"Name":"**Asap","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21182","ServerKey":"pl181","X":576,"Y":625},{"Bonus":0,"Continent":"K53","ID":21183,"Name":"033","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21183","ServerKey":"pl181","X":361,"Y":534},{"Bonus":0,"Continent":"K64","ID":21184,"Name":"Darmowe przeprowadzki","PlayerID":699383279,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21184","ServerKey":"pl181","X":480,"Y":645},{"Bonus":0,"Continent":"K65","ID":21185,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21185","ServerKey":"pl181","X":529,"Y":639},{"Bonus":0,"Continent":"K43","ID":21186,"Name":"Zbieram PP","PlayerID":849034917,"Points":9091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21186","ServerKey":"pl181","X":382,"Y":484},{"Bonus":0,"Continent":"K46","ID":21187,"Name":"016. Kacundzk","PlayerID":849094609,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21187","ServerKey":"pl181","X":641,"Y":481},{"Bonus":0,"Continent":"K35","ID":21188,"Name":"04 Twierdza ZachĂłd","PlayerID":849108780,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21188","ServerKey":"pl181","X":544,"Y":361},{"Bonus":0,"Continent":"K43","ID":21189,"Name":"MELISKA","PlayerID":699794765,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21189","ServerKey":"pl181","X":359,"Y":471},{"Bonus":0,"Continent":"K63","ID":21190,"Name":"-008-","PlayerID":699097885,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21190","ServerKey":"pl181","X":390,"Y":600},{"Bonus":0,"Continent":"K46","ID":21191,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21191","ServerKey":"pl181","X":601,"Y":401},{"Bonus":0,"Continent":"K35","ID":21192,"Name":"A READY","PlayerID":1553947,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21192","ServerKey":"pl181","X":594,"Y":390},{"Bonus":0,"Continent":"K43","ID":21193,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21193","ServerKey":"pl181","X":392,"Y":401},{"Bonus":0,"Continent":"K65","ID":21194,"Name":"~~019~~","PlayerID":7829201,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21194","ServerKey":"pl181","X":596,"Y":606},{"Bonus":8,"Continent":"K35","ID":21195,"Name":"Kovir","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21195","ServerKey":"pl181","X":528,"Y":362},{"Bonus":0,"Continent":"K64","ID":21196,"Name":"Pobozowisko","PlayerID":699513260,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21196","ServerKey":"pl181","X":408,"Y":610},{"Bonus":0,"Continent":"K64","ID":21197,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":3637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21197","ServerKey":"pl181","X":432,"Y":625},{"Bonus":0,"Continent":"K35","ID":21198,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21198","ServerKey":"pl181","X":563,"Y":374},{"Bonus":0,"Continent":"K46","ID":21199,"Name":"026 KTW","PlayerID":848883237,"Points":8704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21199","ServerKey":"pl181","X":635,"Y":451},{"Bonus":0,"Continent":"K35","ID":21200,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21200","ServerKey":"pl181","X":563,"Y":370},{"Bonus":0,"Continent":"K46","ID":21201,"Name":"0034","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21201","ServerKey":"pl181","X":614,"Y":417},{"Bonus":0,"Continent":"K53","ID":21202,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21202","ServerKey":"pl181","X":387,"Y":585},{"Bonus":0,"Continent":"K35","ID":21203,"Name":".003.PędziBolec","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21203","ServerKey":"pl181","X":564,"Y":373},{"Bonus":0,"Continent":"K64","ID":21204,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699725436,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21204","ServerKey":"pl181","X":499,"Y":642},{"Bonus":0,"Continent":"K53","ID":21205,"Name":"065","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21205","ServerKey":"pl181","X":360,"Y":513},{"Bonus":0,"Continent":"K54","ID":21206,"Name":"001.","PlayerID":8779575,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21206","ServerKey":"pl181","X":426,"Y":546},{"Bonus":0,"Continent":"K43","ID":21207,"Name":"A0146","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21207","ServerKey":"pl181","X":357,"Y":495},{"Bonus":0,"Continent":"K64","ID":21208,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":7177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21208","ServerKey":"pl181","X":436,"Y":631},{"Bonus":0,"Continent":"K34","ID":21209,"Name":"Lecymy DUR","PlayerID":6169408,"Points":5449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21209","ServerKey":"pl181","X":432,"Y":373},{"Bonus":0,"Continent":"K35","ID":21210,"Name":"Lord Lord Franek .#220","PlayerID":698420691,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21210","ServerKey":"pl181","X":509,"Y":354},{"Bonus":0,"Continent":"K65","ID":21211,"Name":"002. Lubię rude","PlayerID":848928624,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21211","ServerKey":"pl181","X":503,"Y":647},{"Bonus":0,"Continent":"K53","ID":21212,"Name":"014","PlayerID":8908002,"Points":7186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21212","ServerKey":"pl181","X":364,"Y":544},{"Bonus":0,"Continent":"K35","ID":21214,"Name":"Lord Lord Franek .#200","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21214","ServerKey":"pl181","X":514,"Y":358},{"Bonus":0,"Continent":"K43","ID":21215,"Name":"Za progiem","PlayerID":699265922,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21215","ServerKey":"pl181","X":355,"Y":494},{"Bonus":0,"Continent":"K43","ID":21216,"Name":"Mniejsze zƂo 0046","PlayerID":699794765,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21216","ServerKey":"pl181","X":360,"Y":462},{"Bonus":0,"Continent":"K64","ID":21217,"Name":"025","PlayerID":849084985,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21217","ServerKey":"pl181","X":452,"Y":634},{"Bonus":0,"Continent":"K33","ID":21218,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21218","ServerKey":"pl181","X":397,"Y":397},{"Bonus":0,"Continent":"K46","ID":21219,"Name":"030 Wioska","PlayerID":699671454,"Points":8598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21219","ServerKey":"pl181","X":647,"Y":489},{"Bonus":0,"Continent":"K53","ID":21220,"Name":"34.Sparta","PlayerID":698807570,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21220","ServerKey":"pl181","X":353,"Y":501},{"Bonus":0,"Continent":"K46","ID":21221,"Name":"016","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21221","ServerKey":"pl181","X":617,"Y":411},{"Bonus":0,"Continent":"K64","ID":21222,"Name":"0120","PlayerID":6910361,"Points":1699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21222","ServerKey":"pl181","X":425,"Y":626},{"Bonus":6,"Continent":"K64","ID":21223,"Name":"0105","PlayerID":6910361,"Points":2865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21223","ServerKey":"pl181","X":422,"Y":623},{"Bonus":0,"Continent":"K53","ID":21224,"Name":"-019-","PlayerID":699097885,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21224","ServerKey":"pl181","X":387,"Y":591},{"Bonus":0,"Continent":"K53","ID":21225,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21225","ServerKey":"pl181","X":358,"Y":509},{"Bonus":0,"Continent":"K56","ID":21226,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21226","ServerKey":"pl181","X":622,"Y":581},{"Bonus":0,"Continent":"K56","ID":21227,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21227","ServerKey":"pl181","X":640,"Y":544},{"Bonus":0,"Continent":"K34","ID":21228,"Name":"Szlachcic","PlayerID":698388578,"Points":9020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21228","ServerKey":"pl181","X":427,"Y":375},{"Bonus":0,"Continent":"K46","ID":21229,"Name":"006. Blaviken","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21229","ServerKey":"pl181","X":637,"Y":452},{"Bonus":0,"Continent":"K43","ID":21230,"Name":"006","PlayerID":699510259,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21230","ServerKey":"pl181","X":391,"Y":497},{"Bonus":0,"Continent":"K46","ID":21231,"Name":"0044","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21231","ServerKey":"pl181","X":621,"Y":417},{"Bonus":0,"Continent":"K46","ID":21232,"Name":"02 KALINA","PlayerID":699524891,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21232","ServerKey":"pl181","X":637,"Y":453},{"Bonus":0,"Continent":"K65","ID":21233,"Name":"RTS 3","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21233","ServerKey":"pl181","X":580,"Y":620},{"Bonus":0,"Continent":"K56","ID":21234,"Name":"B.066","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21234","ServerKey":"pl181","X":644,"Y":509},{"Bonus":0,"Continent":"K65","ID":21235,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21235","ServerKey":"pl181","X":508,"Y":647},{"Bonus":0,"Continent":"K43","ID":21236,"Name":"[C]_[010] Dejv.oldplyr","PlayerID":699380607,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21236","ServerKey":"pl181","X":360,"Y":459},{"Bonus":0,"Continent":"K35","ID":21237,"Name":"002","PlayerID":699072129,"Points":8871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21237","ServerKey":"pl181","X":549,"Y":362},{"Bonus":0,"Continent":"K53","ID":21238,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21238","ServerKey":"pl181","X":371,"Y":571},{"Bonus":1,"Continent":"K46","ID":21239,"Name":"066. Gandava","PlayerID":849091866,"Points":10302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21239","ServerKey":"pl181","X":631,"Y":442},{"Bonus":0,"Continent":"K35","ID":21240,"Name":"011 Grane Blindy 125/250","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21240","ServerKey":"pl181","X":541,"Y":361},{"Bonus":0,"Continent":"K35","ID":21241,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21241","ServerKey":"pl181","X":530,"Y":356},{"Bonus":0,"Continent":"K34","ID":21242,"Name":"PodziękowaƂ 4","PlayerID":699796330,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21242","ServerKey":"pl181","X":421,"Y":377},{"Bonus":0,"Continent":"K46","ID":21243,"Name":"44. KaruTown","PlayerID":699298370,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21243","ServerKey":"pl181","X":614,"Y":406},{"Bonus":1,"Continent":"K46","ID":21244,"Name":"002. Night City","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21244","ServerKey":"pl181","X":634,"Y":445},{"Bonus":0,"Continent":"K64","ID":21246,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":1350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21246","ServerKey":"pl181","X":424,"Y":622},{"Bonus":0,"Continent":"K46","ID":21247,"Name":"005 Legio VI Victrix","PlayerID":699878150,"Points":8515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21247","ServerKey":"pl181","X":641,"Y":489},{"Bonus":0,"Continent":"K46","ID":21249,"Name":"Jehu_Kingdom_45","PlayerID":8785314,"Points":7629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21249","ServerKey":"pl181","X":641,"Y":476},{"Bonus":1,"Continent":"K65","ID":21250,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21250","ServerKey":"pl181","X":510,"Y":646},{"Bonus":0,"Continent":"K46","ID":21252,"Name":"0036","PlayerID":699429153,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21252","ServerKey":"pl181","X":619,"Y":416},{"Bonus":0,"Continent":"K43","ID":21253,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21253","ServerKey":"pl181","X":383,"Y":413},{"Bonus":0,"Continent":"K35","ID":21254,"Name":"023 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21254","ServerKey":"pl181","X":544,"Y":363},{"Bonus":0,"Continent":"K34","ID":21255,"Name":"c 0011 leƛniowice","PlayerID":3909522,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21255","ServerKey":"pl181","X":410,"Y":388},{"Bonus":0,"Continent":"K64","ID":21257,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21257","ServerKey":"pl181","X":406,"Y":612},{"Bonus":0,"Continent":"K56","ID":21258,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21258","ServerKey":"pl181","X":642,"Y":531},{"Bonus":0,"Continent":"K46","ID":21259,"Name":"0137","PlayerID":698416970,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21259","ServerKey":"pl181","X":642,"Y":462},{"Bonus":0,"Continent":"K43","ID":21260,"Name":"Za domem","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21260","ServerKey":"pl181","X":357,"Y":493},{"Bonus":0,"Continent":"K64","ID":21261,"Name":"Ave Why!","PlayerID":698585370,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21261","ServerKey":"pl181","X":459,"Y":640},{"Bonus":2,"Continent":"K43","ID":21262,"Name":"Barbachama","PlayerID":8967440,"Points":5731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21262","ServerKey":"pl181","X":377,"Y":423},{"Bonus":0,"Continent":"K53","ID":21264,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21264","ServerKey":"pl181","X":354,"Y":507},{"Bonus":0,"Continent":"K65","ID":21266,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21266","ServerKey":"pl181","X":565,"Y":632},{"Bonus":0,"Continent":"K46","ID":21267,"Name":"*0035 Baraki","PlayerID":8459255,"Points":9201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21267","ServerKey":"pl181","X":622,"Y":430},{"Bonus":0,"Continent":"K64","ID":21268,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21268","ServerKey":"pl181","X":475,"Y":645},{"Bonus":0,"Continent":"K56","ID":21269,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21269","ServerKey":"pl181","X":633,"Y":552},{"Bonus":0,"Continent":"K64","ID":21270,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21270","ServerKey":"pl181","X":497,"Y":646},{"Bonus":0,"Continent":"K56","ID":21271,"Name":"079","PlayerID":699351301,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21271","ServerKey":"pl181","X":643,"Y":531},{"Bonus":0,"Continent":"K46","ID":21272,"Name":"072. Pisae","PlayerID":849091866,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21272","ServerKey":"pl181","X":633,"Y":442},{"Bonus":0,"Continent":"K43","ID":21273,"Name":"A0256","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21273","ServerKey":"pl181","X":354,"Y":494},{"Bonus":0,"Continent":"K35","ID":21274,"Name":"Lord Lord Franek .#213","PlayerID":698420691,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21274","ServerKey":"pl181","X":511,"Y":354},{"Bonus":0,"Continent":"K34","ID":21275,"Name":"107","PlayerID":7271812,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21275","ServerKey":"pl181","X":476,"Y":356},{"Bonus":0,"Continent":"K46","ID":21276,"Name":"Flinii","PlayerID":848883237,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21276","ServerKey":"pl181","X":626,"Y":427},{"Bonus":0,"Continent":"K65","ID":21277,"Name":"- 343 - RR","PlayerID":849018239,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21277","ServerKey":"pl181","X":594,"Y":610},{"Bonus":0,"Continent":"K53","ID":21278,"Name":"064","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21278","ServerKey":"pl181","X":360,"Y":511},{"Bonus":0,"Continent":"K34","ID":21279,"Name":"c Ett","PlayerID":3909522,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21279","ServerKey":"pl181","X":405,"Y":393},{"Bonus":0,"Continent":"K56","ID":21280,"Name":"Ohne Dich","PlayerID":848926293,"Points":4937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21280","ServerKey":"pl181","X":621,"Y":573},{"Bonus":0,"Continent":"K53","ID":21281,"Name":"-022-","PlayerID":699097885,"Points":8228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21281","ServerKey":"pl181","X":389,"Y":590},{"Bonus":0,"Continent":"K56","ID":21282,"Name":"[166]","PlayerID":8000875,"Points":8691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21282","ServerKey":"pl181","X":631,"Y":555},{"Bonus":0,"Continent":"K35","ID":21283,"Name":"060 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21283","ServerKey":"pl181","X":536,"Y":358},{"Bonus":0,"Continent":"K64","ID":21284,"Name":"amzi x1","PlayerID":698585370,"Points":8468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21284","ServerKey":"pl181","X":469,"Y":643},{"Bonus":0,"Continent":"K34","ID":21285,"Name":"117","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21285","ServerKey":"pl181","X":487,"Y":354},{"Bonus":2,"Continent":"K53","ID":21286,"Name":"Brat447","PlayerID":699262350,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21286","ServerKey":"pl181","X":355,"Y":509},{"Bonus":0,"Continent":"K35","ID":21287,"Name":"131 DaSilva2402","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21287","ServerKey":"pl181","X":522,"Y":358},{"Bonus":0,"Continent":"K53","ID":21288,"Name":"34. Wioska 34","PlayerID":849091769,"Points":9465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21288","ServerKey":"pl181","X":373,"Y":567},{"Bonus":0,"Continent":"K53","ID":21289,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21289","ServerKey":"pl181","X":357,"Y":524},{"Bonus":1,"Continent":"K65","ID":21290,"Name":"kathare","PlayerID":873575,"Points":10428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21290","ServerKey":"pl181","X":553,"Y":630},{"Bonus":0,"Continent":"K53","ID":21291,"Name":"68. Wioska 68","PlayerID":849091769,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21291","ServerKey":"pl181","X":370,"Y":562},{"Bonus":0,"Continent":"K35","ID":21292,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21292","ServerKey":"pl181","X":509,"Y":359},{"Bonus":0,"Continent":"K43","ID":21293,"Name":"Barbachama II","PlayerID":8967440,"Points":3914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21293","ServerKey":"pl181","X":378,"Y":423},{"Bonus":0,"Continent":"K56","ID":21294,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21294","ServerKey":"pl181","X":642,"Y":534},{"Bonus":0,"Continent":"K34","ID":21295,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21295","ServerKey":"pl181","X":440,"Y":370},{"Bonus":0,"Continent":"K53","ID":21296,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21296","ServerKey":"pl181","X":359,"Y":529},{"Bonus":0,"Continent":"K34","ID":21297,"Name":"VN Alphonse Elric","PlayerID":699883079,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21297","ServerKey":"pl181","X":464,"Y":361},{"Bonus":0,"Continent":"K46","ID":21298,"Name":"118","PlayerID":7085502,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21298","ServerKey":"pl181","X":620,"Y":421},{"Bonus":0,"Continent":"K53","ID":21299,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21299","ServerKey":"pl181","X":355,"Y":514},{"Bonus":0,"Continent":"K34","ID":21300,"Name":"101","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21300","ServerKey":"pl181","X":487,"Y":358},{"Bonus":0,"Continent":"K65","ID":21301,"Name":"*0ST","PlayerID":699567608,"Points":9123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21301","ServerKey":"pl181","X":580,"Y":624},{"Bonus":0,"Continent":"K43","ID":21302,"Name":"Mniejsze zƂo 0036","PlayerID":699794765,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21302","ServerKey":"pl181","X":361,"Y":469},{"Bonus":0,"Continent":"K65","ID":21303,"Name":"032","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21303","ServerKey":"pl181","X":592,"Y":612},{"Bonus":0,"Continent":"K35","ID":21305,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21305","ServerKey":"pl181","X":559,"Y":372},{"Bonus":0,"Continent":"K65","ID":21306,"Name":"- 342 - RR","PlayerID":849018239,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21306","ServerKey":"pl181","X":596,"Y":609},{"Bonus":0,"Continent":"K43","ID":21307,"Name":"Yeremiah 2","PlayerID":698884287,"Points":10131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21307","ServerKey":"pl181","X":386,"Y":415},{"Bonus":0,"Continent":"K56","ID":21308,"Name":"001","PlayerID":849095227,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21308","ServerKey":"pl181","X":627,"Y":560},{"Bonus":0,"Continent":"K34","ID":21309,"Name":"0042","PlayerID":699431255,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21309","ServerKey":"pl181","X":447,"Y":363},{"Bonus":0,"Continent":"K43","ID":21310,"Name":"--010--","PlayerID":698884287,"Points":8512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21310","ServerKey":"pl181","X":385,"Y":411},{"Bonus":0,"Continent":"K56","ID":21311,"Name":"047","PlayerID":698786826,"Points":7518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21311","ServerKey":"pl181","X":607,"Y":591},{"Bonus":6,"Continent":"K46","ID":21312,"Name":"019.","PlayerID":849094609,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21312","ServerKey":"pl181","X":645,"Y":476},{"Bonus":0,"Continent":"K44","ID":21313,"Name":"B037","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21313","ServerKey":"pl181","X":497,"Y":458},{"Bonus":0,"Continent":"K64","ID":21314,"Name":"Pobozowisko","PlayerID":699513260,"Points":7661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21314","ServerKey":"pl181","X":407,"Y":610},{"Bonus":0,"Continent":"K46","ID":21315,"Name":"Wioska (026)","PlayerID":698232227,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21315","ServerKey":"pl181","X":641,"Y":477},{"Bonus":0,"Continent":"K53","ID":21316,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21316","ServerKey":"pl181","X":358,"Y":534},{"Bonus":0,"Continent":"K53","ID":21317,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21317","ServerKey":"pl181","X":356,"Y":529},{"Bonus":0,"Continent":"K43","ID":21318,"Name":"Maszlug kolonia IX","PlayerID":848977649,"Points":9311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21318","ServerKey":"pl181","X":370,"Y":433},{"Bonus":0,"Continent":"K46","ID":21319,"Name":"*0024 Baraki","PlayerID":8459255,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21319","ServerKey":"pl181","X":628,"Y":428},{"Bonus":0,"Continent":"K43","ID":21320,"Name":"od biedy do potęgi 6","PlayerID":699783765,"Points":2481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21320","ServerKey":"pl181","X":370,"Y":445},{"Bonus":0,"Continent":"K56","ID":21321,"Name":"jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21321","ServerKey":"pl181","X":635,"Y":558},{"Bonus":0,"Continent":"K34","ID":21322,"Name":"047...POƁUDNIE","PlayerID":6920960,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21322","ServerKey":"pl181","X":463,"Y":360},{"Bonus":0,"Continent":"K34","ID":21323,"Name":"Lecymy DUR","PlayerID":6169408,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21323","ServerKey":"pl181","X":439,"Y":371},{"Bonus":0,"Continent":"K43","ID":21324,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21324","ServerKey":"pl181","X":362,"Y":454},{"Bonus":0,"Continent":"K64","ID":21325,"Name":"przed potoom","PlayerID":699736927,"Points":9048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21325","ServerKey":"pl181","X":465,"Y":643},{"Bonus":1,"Continent":"K53","ID":21326,"Name":"017","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21326","ServerKey":"pl181","X":361,"Y":533},{"Bonus":0,"Continent":"K53","ID":21327,"Name":"off 100 %","PlayerID":849012521,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21327","ServerKey":"pl181","X":360,"Y":556},{"Bonus":0,"Continent":"K53","ID":21328,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21328","ServerKey":"pl181","X":355,"Y":523},{"Bonus":0,"Continent":"K35","ID":21329,"Name":".:086:. ƁOBUZIK","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21329","ServerKey":"pl181","X":558,"Y":365},{"Bonus":0,"Continent":"K65","ID":21330,"Name":"nic","PlayerID":699828685,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21330","ServerKey":"pl181","X":573,"Y":623},{"Bonus":0,"Continent":"K56","ID":21331,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21331","ServerKey":"pl181","X":635,"Y":557},{"Bonus":0,"Continent":"K34","ID":21332,"Name":"North Barba 033","PlayerID":699796330,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21332","ServerKey":"pl181","X":428,"Y":371},{"Bonus":0,"Continent":"K65","ID":21334,"Name":"SSJ 037","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21334","ServerKey":"pl181","X":514,"Y":641},{"Bonus":0,"Continent":"K53","ID":21335,"Name":"Pobozowisko","PlayerID":699513260,"Points":9336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21335","ServerKey":"pl181","X":391,"Y":594},{"Bonus":0,"Continent":"K56","ID":21336,"Name":"010","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21336","ServerKey":"pl181","X":630,"Y":562},{"Bonus":0,"Continent":"K43","ID":21337,"Name":"A0142","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21337","ServerKey":"pl181","X":359,"Y":495},{"Bonus":0,"Continent":"K65","ID":21338,"Name":"0453","PlayerID":698659980,"Points":9261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21338","ServerKey":"pl181","X":549,"Y":640},{"Bonus":0,"Continent":"K34","ID":21339,"Name":"Konfederacja +","PlayerID":848915730,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21339","ServerKey":"pl181","X":455,"Y":365},{"Bonus":0,"Continent":"K43","ID":21340,"Name":"Westcoast.112","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21340","ServerKey":"pl181","X":372,"Y":434},{"Bonus":0,"Continent":"K34","ID":21341,"Name":"Stalker2","PlayerID":848942968,"Points":4065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21341","ServerKey":"pl181","X":491,"Y":357},{"Bonus":0,"Continent":"K34","ID":21344,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21344","ServerKey":"pl181","X":425,"Y":376},{"Bonus":0,"Continent":"K34","ID":21345,"Name":"#0093 barbarzyƄska","PlayerID":1238300,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21345","ServerKey":"pl181","X":467,"Y":357},{"Bonus":0,"Continent":"K53","ID":21346,"Name":"65. Wioska 65","PlayerID":849091769,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21346","ServerKey":"pl181","X":374,"Y":563},{"Bonus":0,"Continent":"K43","ID":21347,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21347","ServerKey":"pl181","X":393,"Y":403},{"Bonus":0,"Continent":"K53","ID":21348,"Name":"43. Wioska 43","PlayerID":849091769,"Points":7533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21348","ServerKey":"pl181","X":365,"Y":546},{"Bonus":9,"Continent":"K35","ID":21349,"Name":"Osada koczownikĂłw","PlayerID":699368887,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21349","ServerKey":"pl181","X":512,"Y":359},{"Bonus":0,"Continent":"K56","ID":21351,"Name":"020","PlayerID":698786826,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21351","ServerKey":"pl181","X":612,"Y":595},{"Bonus":0,"Continent":"K66","ID":21352,"Name":"~~021~~","PlayerID":7829201,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21352","ServerKey":"pl181","X":603,"Y":601},{"Bonus":0,"Continent":"K56","ID":21353,"Name":"B.068","PlayerID":9188016,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21353","ServerKey":"pl181","X":644,"Y":510},{"Bonus":0,"Continent":"K64","ID":21355,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":5602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21355","ServerKey":"pl181","X":418,"Y":622},{"Bonus":0,"Continent":"K35","ID":21357,"Name":"061 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21357","ServerKey":"pl181","X":536,"Y":357},{"Bonus":0,"Continent":"K43","ID":21358,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21358","ServerKey":"pl181","X":365,"Y":445},{"Bonus":0,"Continent":"K64","ID":21359,"Name":"049|| Microscopium","PlayerID":849035525,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21359","ServerKey":"pl181","X":469,"Y":639},{"Bonus":0,"Continent":"K65","ID":21361,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21361","ServerKey":"pl181","X":522,"Y":643},{"Bonus":0,"Continent":"K43","ID":21362,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21362","ServerKey":"pl181","X":364,"Y":450},{"Bonus":0,"Continent":"K46","ID":21363,"Name":"0059","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21363","ServerKey":"pl181","X":620,"Y":418},{"Bonus":0,"Continent":"K34","ID":21365,"Name":"074...barbarka centr","PlayerID":6920960,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21365","ServerKey":"pl181","X":460,"Y":358},{"Bonus":0,"Continent":"K34","ID":21366,"Name":"XXXX","PlayerID":849054951,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21366","ServerKey":"pl181","X":475,"Y":357},{"Bonus":0,"Continent":"K65","ID":21367,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21367","ServerKey":"pl181","X":522,"Y":640},{"Bonus":0,"Continent":"K34","ID":21368,"Name":"128","PlayerID":7271812,"Points":5962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21368","ServerKey":"pl181","X":475,"Y":359},{"Bonus":0,"Continent":"K64","ID":21369,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21369","ServerKey":"pl181","X":435,"Y":626},{"Bonus":0,"Continent":"K65","ID":21370,"Name":"- 335 - RR","PlayerID":849018239,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21370","ServerKey":"pl181","X":591,"Y":609},{"Bonus":0,"Continent":"K43","ID":21371,"Name":"MELISKA","PlayerID":699794765,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21371","ServerKey":"pl181","X":357,"Y":469},{"Bonus":0,"Continent":"K35","ID":21372,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21372","ServerKey":"pl181","X":555,"Y":363},{"Bonus":0,"Continent":"K53","ID":21373,"Name":"077","PlayerID":6853693,"Points":5821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21373","ServerKey":"pl181","X":364,"Y":541},{"Bonus":0,"Continent":"K65","ID":21374,"Name":"Prawa","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21374","ServerKey":"pl181","X":542,"Y":638},{"Bonus":0,"Continent":"K64","ID":21375,"Name":"Pobozowisko","PlayerID":699513260,"Points":7320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21375","ServerKey":"pl181","X":404,"Y":609},{"Bonus":0,"Continent":"K53","ID":21376,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21376","ServerKey":"pl181","X":355,"Y":507},{"Bonus":6,"Continent":"K56","ID":21377,"Name":"0012 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21377","ServerKey":"pl181","X":612,"Y":592},{"Bonus":0,"Continent":"K53","ID":21378,"Name":"027 181 181","PlayerID":698807570,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21378","ServerKey":"pl181","X":358,"Y":505},{"Bonus":0,"Continent":"K64","ID":21379,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":6752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21379","ServerKey":"pl181","X":436,"Y":628},{"Bonus":0,"Continent":"K56","ID":21380,"Name":"*5604*b Ten mecz","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21380","ServerKey":"pl181","X":622,"Y":583},{"Bonus":0,"Continent":"K35","ID":21381,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21381","ServerKey":"pl181","X":564,"Y":369},{"Bonus":0,"Continent":"K56","ID":21382,"Name":"018","PlayerID":699099811,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21382","ServerKey":"pl181","X":613,"Y":584},{"Bonus":0,"Continent":"K34","ID":21383,"Name":"#0038 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21383","ServerKey":"pl181","X":465,"Y":358},{"Bonus":0,"Continent":"K43","ID":21384,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":11349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21384","ServerKey":"pl181","X":398,"Y":472},{"Bonus":0,"Continent":"K34","ID":21385,"Name":"VN Phinks Magcub","PlayerID":699883079,"Points":9651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21385","ServerKey":"pl181","X":457,"Y":361},{"Bonus":0,"Continent":"K64","ID":21386,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21386","ServerKey":"pl181","X":498,"Y":646},{"Bonus":0,"Continent":"K34","ID":21387,"Name":"c 001a","PlayerID":3909522,"Points":8646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21387","ServerKey":"pl181","X":409,"Y":386},{"Bonus":0,"Continent":"K53","ID":21388,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21388","ServerKey":"pl181","X":368,"Y":548},{"Bonus":0,"Continent":"K43","ID":21389,"Name":"Mniejsze zƂo 00100","PlayerID":699794765,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21389","ServerKey":"pl181","X":356,"Y":472},{"Bonus":0,"Continent":"K65","ID":21390,"Name":"**Adango","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21390","ServerKey":"pl181","X":574,"Y":624},{"Bonus":0,"Continent":"K35","ID":21391,"Name":"Spać","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21391","ServerKey":"pl181","X":551,"Y":388},{"Bonus":0,"Continent":"K35","ID":21393,"Name":"Ambrela 015","PlayerID":698823542,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21393","ServerKey":"pl181","X":571,"Y":372},{"Bonus":0,"Continent":"K64","ID":21394,"Name":"0117","PlayerID":6910361,"Points":1772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21394","ServerKey":"pl181","X":424,"Y":624},{"Bonus":0,"Continent":"K64","ID":21395,"Name":"Pobozowisko","PlayerID":699513260,"Points":11111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21395","ServerKey":"pl181","X":405,"Y":612},{"Bonus":0,"Continent":"K64","ID":21396,"Name":"Ave Why!","PlayerID":698585370,"Points":7678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21396","ServerKey":"pl181","X":493,"Y":641},{"Bonus":5,"Continent":"K35","ID":21397,"Name":"003 PƂaciƂem Za KsiÄ…ĆŒki","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21397","ServerKey":"pl181","X":540,"Y":359},{"Bonus":0,"Continent":"K45","ID":21398,"Name":".:014:. Chillout","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21398","ServerKey":"pl181","X":508,"Y":421},{"Bonus":0,"Continent":"K43","ID":21399,"Name":"--9. Parzymiechy GĂłrne","PlayerID":698345556,"Points":7646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21399","ServerKey":"pl181","X":386,"Y":405},{"Bonus":0,"Continent":"K46","ID":21400,"Name":"#036.518|497","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21400","ServerKey":"pl181","X":637,"Y":448},{"Bonus":0,"Continent":"K43","ID":21402,"Name":"--005--","PlayerID":698884287,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21402","ServerKey":"pl181","X":382,"Y":412},{"Bonus":0,"Continent":"K35","ID":21403,"Name":"125","PlayerID":699491076,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21403","ServerKey":"pl181","X":545,"Y":360},{"Bonus":0,"Continent":"K53","ID":21405,"Name":"50. Wioska 50","PlayerID":849091769,"Points":7438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21405","ServerKey":"pl181","X":365,"Y":545},{"Bonus":0,"Continent":"K56","ID":21406,"Name":"[009]","PlayerID":1715091,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21406","ServerKey":"pl181","X":610,"Y":591},{"Bonus":0,"Continent":"K35","ID":21407,"Name":"Lord Lord Franek .#221","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21407","ServerKey":"pl181","X":523,"Y":356},{"Bonus":0,"Continent":"K35","ID":21408,"Name":"A011","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21408","ServerKey":"pl181","X":579,"Y":379},{"Bonus":0,"Continent":"K46","ID":21409,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":9874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21409","ServerKey":"pl181","X":607,"Y":401},{"Bonus":0,"Continent":"K65","ID":21411,"Name":"**SIxMileLake","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21411","ServerKey":"pl181","X":575,"Y":627},{"Bonus":0,"Continent":"K53","ID":21412,"Name":"008","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21412","ServerKey":"pl181","X":363,"Y":544},{"Bonus":0,"Continent":"K64","ID":21413,"Name":"0206","PlayerID":699697558,"Points":3088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21413","ServerKey":"pl181","X":417,"Y":615},{"Bonus":0,"Continent":"K64","ID":21414,"Name":"016","PlayerID":698650301,"Points":9421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21414","ServerKey":"pl181","X":492,"Y":646},{"Bonus":0,"Continent":"K46","ID":21415,"Name":"B014","PlayerID":9314079,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21415","ServerKey":"pl181","X":648,"Y":498},{"Bonus":0,"Continent":"K43","ID":21416,"Name":"[C]_[007] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21416","ServerKey":"pl181","X":359,"Y":475},{"Bonus":0,"Continent":"K53","ID":21417,"Name":"-005-","PlayerID":699097885,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21417","ServerKey":"pl181","X":387,"Y":593},{"Bonus":0,"Continent":"K34","ID":21418,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21418","ServerKey":"pl181","X":439,"Y":368},{"Bonus":0,"Continent":"K64","ID":21419,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21419","ServerKey":"pl181","X":403,"Y":611},{"Bonus":0,"Continent":"K35","ID":21420,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21420","ServerKey":"pl181","X":565,"Y":370},{"Bonus":0,"Continent":"K34","ID":21421,"Name":"003","PlayerID":699883079,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21421","ServerKey":"pl181","X":463,"Y":375},{"Bonus":0,"Continent":"K34","ID":21422,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21422","ServerKey":"pl181","X":420,"Y":378},{"Bonus":0,"Continent":"K46","ID":21424,"Name":"017. Watykan","PlayerID":849095599,"Points":8990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21424","ServerKey":"pl181","X":631,"Y":444},{"Bonus":3,"Continent":"K56","ID":21425,"Name":"011","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21425","ServerKey":"pl181","X":629,"Y":562},{"Bonus":0,"Continent":"K46","ID":21426,"Name":"030 Eoam","PlayerID":8337151,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21426","ServerKey":"pl181","X":629,"Y":433},{"Bonus":0,"Continent":"K53","ID":21427,"Name":"deff 100 %","PlayerID":849012521,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21427","ServerKey":"pl181","X":383,"Y":581},{"Bonus":0,"Continent":"K46","ID":21428,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21428","ServerKey":"pl181","X":602,"Y":400},{"Bonus":0,"Continent":"K35","ID":21429,"Name":"Taran","PlayerID":699170684,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21429","ServerKey":"pl181","X":557,"Y":370},{"Bonus":6,"Continent":"K64","ID":21430,"Name":"0003","PlayerID":6180190,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21430","ServerKey":"pl181","X":489,"Y":644},{"Bonus":0,"Continent":"K43","ID":21432,"Name":"004","PlayerID":9239515,"Points":5293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21432","ServerKey":"pl181","X":379,"Y":423},{"Bonus":0,"Continent":"K46","ID":21433,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21433","ServerKey":"pl181","X":608,"Y":400},{"Bonus":0,"Continent":"K56","ID":21434,"Name":"*5603*a RKS CHUWDU","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21434","ServerKey":"pl181","X":624,"Y":576},{"Bonus":0,"Continent":"K34","ID":21435,"Name":"#0040 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21435","ServerKey":"pl181","X":462,"Y":357},{"Bonus":0,"Continent":"K43","ID":21436,"Name":"Westcoast.082","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21436","ServerKey":"pl181","X":397,"Y":408},{"Bonus":0,"Continent":"K34","ID":21437,"Name":"Szlachcic","PlayerID":698388578,"Points":7178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21437","ServerKey":"pl181","X":418,"Y":378},{"Bonus":0,"Continent":"K46","ID":21438,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21438","ServerKey":"pl181","X":622,"Y":425},{"Bonus":0,"Continent":"K43","ID":21439,"Name":"Wioska andrzej84","PlayerID":6171569,"Points":5659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21439","ServerKey":"pl181","X":391,"Y":401},{"Bonus":0,"Continent":"K46","ID":21440,"Name":"020 Wioska","PlayerID":699671454,"Points":6273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21440","ServerKey":"pl181","X":639,"Y":460},{"Bonus":0,"Continent":"K46","ID":21441,"Name":"0045","PlayerID":699429153,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21441","ServerKey":"pl181","X":619,"Y":422},{"Bonus":0,"Continent":"K56","ID":21442,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21442","ServerKey":"pl181","X":635,"Y":542},{"Bonus":0,"Continent":"K65","ID":21443,"Name":"RTS 8","PlayerID":848995242,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21443","ServerKey":"pl181","X":580,"Y":618},{"Bonus":0,"Continent":"K64","ID":21444,"Name":"Pobozowisko","PlayerID":699513260,"Points":10629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21444","ServerKey":"pl181","X":412,"Y":612},{"Bonus":0,"Continent":"K53","ID":21445,"Name":"006 181","PlayerID":698807570,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21445","ServerKey":"pl181","X":354,"Y":505},{"Bonus":0,"Continent":"K35","ID":21446,"Name":".:059:. ƁOBUZIK","PlayerID":848934935,"Points":4847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21446","ServerKey":"pl181","X":553,"Y":365},{"Bonus":0,"Continent":"K34","ID":21447,"Name":"066","PlayerID":698388578,"Points":6881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21447","ServerKey":"pl181","X":426,"Y":377},{"Bonus":0,"Continent":"K65","ID":21448,"Name":"031","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21448","ServerKey":"pl181","X":586,"Y":617},{"Bonus":0,"Continent":"K34","ID":21449,"Name":"009","PlayerID":699883079,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21449","ServerKey":"pl181","X":461,"Y":359},{"Bonus":0,"Continent":"K46","ID":21450,"Name":"041. Moguntiacum","PlayerID":849091866,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21450","ServerKey":"pl181","X":632,"Y":437},{"Bonus":0,"Continent":"K53","ID":21451,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21451","ServerKey":"pl181","X":357,"Y":525},{"Bonus":0,"Continent":"K43","ID":21453,"Name":"WiedĆșma - Imperium","PlayerID":698884287,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21453","ServerKey":"pl181","X":384,"Y":418},{"Bonus":0,"Continent":"K35","ID":21454,"Name":"013 Wioska barbarzyƄska","PlayerID":699509239,"Points":4766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21454","ServerKey":"pl181","X":568,"Y":371},{"Bonus":0,"Continent":"K53","ID":21455,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21455","ServerKey":"pl181","X":353,"Y":517},{"Bonus":0,"Continent":"K64","ID":21456,"Name":"031|| Centaurus","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21456","ServerKey":"pl181","X":488,"Y":644},{"Bonus":0,"Continent":"K65","ID":21457,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21457","ServerKey":"pl181","X":530,"Y":639},{"Bonus":0,"Continent":"K53","ID":21458,"Name":".4.","PlayerID":849012521,"Points":9021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21458","ServerKey":"pl181","X":366,"Y":553},{"Bonus":0,"Continent":"K43","ID":21459,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":6036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21459","ServerKey":"pl181","X":364,"Y":443},{"Bonus":0,"Continent":"K53","ID":21460,"Name":"059","PlayerID":8908002,"Points":3704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21460","ServerKey":"pl181","X":366,"Y":544},{"Bonus":0,"Continent":"K33","ID":21461,"Name":"A-004","PlayerID":8419570,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21461","ServerKey":"pl181","X":397,"Y":399},{"Bonus":0,"Continent":"K34","ID":21462,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21462","ServerKey":"pl181","X":497,"Y":359},{"Bonus":0,"Continent":"K53","ID":21463,"Name":"034 181","PlayerID":698807570,"Points":6717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21463","ServerKey":"pl181","X":355,"Y":505},{"Bonus":0,"Continent":"K65","ID":21464,"Name":"SSJ 053","PlayerID":699054373,"Points":9517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21464","ServerKey":"pl181","X":502,"Y":647},{"Bonus":0,"Continent":"K65","ID":21465,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21465","ServerKey":"pl181","X":524,"Y":645},{"Bonus":0,"Continent":"K53","ID":21466,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":2562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21466","ServerKey":"pl181","X":381,"Y":577},{"Bonus":0,"Continent":"K46","ID":21467,"Name":"071. Ptolemais","PlayerID":849091866,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21467","ServerKey":"pl181","X":632,"Y":442},{"Bonus":0,"Continent":"K46","ID":21468,"Name":"044 | PALESTINA","PlayerID":9228039,"Points":4759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21468","ServerKey":"pl181","X":640,"Y":467},{"Bonus":0,"Continent":"K65","ID":21470,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21470","ServerKey":"pl181","X":554,"Y":632},{"Bonus":0,"Continent":"K53","ID":21471,"Name":"078","PlayerID":6853693,"Points":6521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21471","ServerKey":"pl181","X":366,"Y":546},{"Bonus":0,"Continent":"K46","ID":21472,"Name":"B006","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21472","ServerKey":"pl181","X":647,"Y":495},{"Bonus":0,"Continent":"K35","ID":21473,"Name":"022 Wioska barbarzyƄska","PlayerID":699854484,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21473","ServerKey":"pl181","X":541,"Y":360},{"Bonus":0,"Continent":"K45","ID":21474,"Name":"015 Mario","PlayerID":849031818,"Points":8978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21474","ServerKey":"pl181","X":560,"Y":469},{"Bonus":0,"Continent":"K34","ID":21475,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21475","ServerKey":"pl181","X":499,"Y":357},{"Bonus":1,"Continent":"K63","ID":21476,"Name":"Pobozowisko","PlayerID":699513260,"Points":10622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21476","ServerKey":"pl181","X":395,"Y":602},{"Bonus":0,"Continent":"K34","ID":21477,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":5612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21477","ServerKey":"pl181","X":486,"Y":383},{"Bonus":0,"Continent":"K43","ID":21478,"Name":"A0244","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21478","ServerKey":"pl181","X":352,"Y":498},{"Bonus":0,"Continent":"K53","ID":21479,"Name":"Valhalla A8","PlayerID":849097002,"Points":4968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21479","ServerKey":"pl181","X":375,"Y":577},{"Bonus":0,"Continent":"K53","ID":21480,"Name":"020","PlayerID":8908002,"Points":7414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21480","ServerKey":"pl181","X":361,"Y":545},{"Bonus":0,"Continent":"K56","ID":21481,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21481","ServerKey":"pl181","X":641,"Y":541},{"Bonus":0,"Continent":"K43","ID":21482,"Name":"005","PlayerID":9239515,"Points":4963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21482","ServerKey":"pl181","X":379,"Y":420},{"Bonus":0,"Continent":"K35","ID":21483,"Name":"142","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21483","ServerKey":"pl181","X":584,"Y":383},{"Bonus":0,"Continent":"K43","ID":21484,"Name":"Westcoast.106","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21484","ServerKey":"pl181","X":372,"Y":435},{"Bonus":0,"Continent":"K65","ID":21485,"Name":"014. AƂa","PlayerID":848928624,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21485","ServerKey":"pl181","X":503,"Y":643},{"Bonus":0,"Continent":"K65","ID":21486,"Name":"SSJ 041","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21486","ServerKey":"pl181","X":512,"Y":644},{"Bonus":4,"Continent":"K34","ID":21487,"Name":"#0015 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21487","ServerKey":"pl181","X":464,"Y":356},{"Bonus":0,"Continent":"K54","ID":21488,"Name":"yogi","PlayerID":2808172,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21488","ServerKey":"pl181","X":488,"Y":530},{"Bonus":0,"Continent":"K43","ID":21490,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21490","ServerKey":"pl181","X":395,"Y":401},{"Bonus":0,"Continent":"K55","ID":21491,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21491","ServerKey":"pl181","X":575,"Y":587},{"Bonus":0,"Continent":"K33","ID":21492,"Name":"WB02","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21492","ServerKey":"pl181","X":398,"Y":395},{"Bonus":0,"Continent":"K43","ID":21493,"Name":"Mniejsze zƂo 0043","PlayerID":699794765,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21493","ServerKey":"pl181","X":361,"Y":464},{"Bonus":0,"Continent":"K35","ID":21494,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21494","ServerKey":"pl181","X":550,"Y":364},{"Bonus":0,"Continent":"K65","ID":21495,"Name":"183","PlayerID":8627359,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21495","ServerKey":"pl181","X":578,"Y":622},{"Bonus":8,"Continent":"K35","ID":21496,"Name":"062 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21496","ServerKey":"pl181","X":542,"Y":359},{"Bonus":0,"Continent":"K43","ID":21497,"Name":"Arnswalde","PlayerID":8967440,"Points":7262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21497","ServerKey":"pl181","X":379,"Y":424},{"Bonus":0,"Continent":"K53","ID":21499,"Name":"-027-","PlayerID":699665152,"Points":7068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21499","ServerKey":"pl181","X":389,"Y":597},{"Bonus":2,"Continent":"K65","ID":21500,"Name":"SSJ 018","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21500","ServerKey":"pl181","X":511,"Y":641},{"Bonus":0,"Continent":"K65","ID":21501,"Name":"Mobil","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21501","ServerKey":"pl181","X":532,"Y":639},{"Bonus":0,"Continent":"K65","ID":21502,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21502","ServerKey":"pl181","X":534,"Y":638},{"Bonus":0,"Continent":"K34","ID":21503,"Name":"077...barbarka","PlayerID":6920960,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21503","ServerKey":"pl181","X":458,"Y":358},{"Bonus":0,"Continent":"K35","ID":21504,"Name":"Lord Lord Franek .#222","PlayerID":698420691,"Points":9461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21504","ServerKey":"pl181","X":510,"Y":355},{"Bonus":0,"Continent":"K35","ID":21505,"Name":"C 013","PlayerID":6384450,"Points":5419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21505","ServerKey":"pl181","X":590,"Y":391},{"Bonus":0,"Continent":"K64","ID":21506,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":5875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21506","ServerKey":"pl181","X":435,"Y":631},{"Bonus":0,"Continent":"K56","ID":21507,"Name":"B.038","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21507","ServerKey":"pl181","X":643,"Y":505},{"Bonus":0,"Continent":"K56","ID":21509,"Name":"018","PlayerID":849095227,"Points":9731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21509","ServerKey":"pl181","X":635,"Y":554},{"Bonus":0,"Continent":"K56","ID":21510,"Name":"Sweet Child O Mine","PlayerID":848926293,"Points":7939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21510","ServerKey":"pl181","X":629,"Y":565},{"Bonus":0,"Continent":"K43","ID":21511,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":4592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21511","ServerKey":"pl181","X":363,"Y":444},{"Bonus":0,"Continent":"K33","ID":21512,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21512","ServerKey":"pl181","X":398,"Y":393},{"Bonus":0,"Continent":"K43","ID":21513,"Name":"080","PlayerID":6258092,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21513","ServerKey":"pl181","X":356,"Y":463},{"Bonus":0,"Continent":"K35","ID":21516,"Name":"Lord Lord Franek .#195","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21516","ServerKey":"pl181","X":516,"Y":358},{"Bonus":0,"Continent":"K56","ID":21518,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21518","ServerKey":"pl181","X":621,"Y":576},{"Bonus":0,"Continent":"K43","ID":21519,"Name":"od biedy do potęgi 4","PlayerID":699783765,"Points":4927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21519","ServerKey":"pl181","X":366,"Y":446},{"Bonus":0,"Continent":"K34","ID":21521,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21521","ServerKey":"pl181","X":498,"Y":355},{"Bonus":0,"Continent":"K36","ID":21522,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":4127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21522","ServerKey":"pl181","X":603,"Y":394},{"Bonus":0,"Continent":"K35","ID":21523,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21523","ServerKey":"pl181","X":558,"Y":369},{"Bonus":0,"Continent":"K64","ID":21524,"Name":"! Siwa Wrona","PlayerID":606407,"Points":10685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21524","ServerKey":"pl181","X":492,"Y":603},{"Bonus":7,"Continent":"K35","ID":21525,"Name":"A038","PlayerID":699485250,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21525","ServerKey":"pl181","X":570,"Y":373},{"Bonus":0,"Continent":"K43","ID":21526,"Name":"AA08 Norwegia","PlayerID":483145,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21526","ServerKey":"pl181","X":379,"Y":417},{"Bonus":0,"Continent":"K64","ID":21527,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21527","ServerKey":"pl181","X":404,"Y":612},{"Bonus":0,"Continent":"K35","ID":21528,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21528","ServerKey":"pl181","X":561,"Y":368},{"Bonus":0,"Continent":"K34","ID":21529,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21529","ServerKey":"pl181","X":422,"Y":375},{"Bonus":0,"Continent":"K56","ID":21530,"Name":"B.041","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21530","ServerKey":"pl181","X":641,"Y":508},{"Bonus":0,"Continent":"K46","ID":21531,"Name":"Wioska (031)","PlayerID":698232227,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21531","ServerKey":"pl181","X":644,"Y":476},{"Bonus":0,"Continent":"K53","ID":21532,"Name":"-009-","PlayerID":699097885,"Points":8316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21532","ServerKey":"pl181","X":392,"Y":599},{"Bonus":0,"Continent":"K65","ID":21533,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21533","ServerKey":"pl181","X":526,"Y":639},{"Bonus":0,"Continent":"K34","ID":21534,"Name":"005","PlayerID":698364331,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21534","ServerKey":"pl181","X":430,"Y":373},{"Bonus":0,"Continent":"K64","ID":21535,"Name":"Ave Why!","PlayerID":698585370,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21535","ServerKey":"pl181","X":463,"Y":640},{"Bonus":0,"Continent":"K53","ID":21536,"Name":"-064-","PlayerID":699097885,"Points":4831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21536","ServerKey":"pl181","X":376,"Y":570},{"Bonus":0,"Continent":"K53","ID":21537,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21537","ServerKey":"pl181","X":355,"Y":510},{"Bonus":0,"Continent":"K56","ID":21538,"Name":"0065","PlayerID":6510480,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21538","ServerKey":"pl181","X":642,"Y":540},{"Bonus":4,"Continent":"K53","ID":21539,"Name":"036","PlayerID":8908002,"Points":8160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21539","ServerKey":"pl181","X":372,"Y":569},{"Bonus":0,"Continent":"K34","ID":21540,"Name":"c 0012","PlayerID":3909522,"Points":9040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21540","ServerKey":"pl181","X":411,"Y":388},{"Bonus":0,"Continent":"K53","ID":21541,"Name":"K05..","PlayerID":849090130,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21541","ServerKey":"pl181","X":370,"Y":577},{"Bonus":0,"Continent":"K65","ID":21542,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21542","ServerKey":"pl181","X":500,"Y":644},{"Bonus":0,"Continent":"K35","ID":21543,"Name":"xkikutx","PlayerID":1990750,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21543","ServerKey":"pl181","X":521,"Y":359},{"Bonus":0,"Continent":"K43","ID":21544,"Name":"A0243","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21544","ServerKey":"pl181","X":362,"Y":464},{"Bonus":0,"Continent":"K46","ID":21545,"Name":"B030","PlayerID":9314079,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21545","ServerKey":"pl181","X":643,"Y":499},{"Bonus":0,"Continent":"K53","ID":21546,"Name":"016","PlayerID":8908002,"Points":7413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21546","ServerKey":"pl181","X":361,"Y":541},{"Bonus":0,"Continent":"K35","ID":21547,"Name":"164","PlayerID":849064752,"Points":9480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21547","ServerKey":"pl181","X":571,"Y":378},{"Bonus":0,"Continent":"K53","ID":21548,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":8494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21548","ServerKey":"pl181","X":366,"Y":563},{"Bonus":0,"Continent":"K65","ID":21549,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21549","ServerKey":"pl181","X":521,"Y":640},{"Bonus":0,"Continent":"K35","ID":21550,"Name":".:023:. ƁOBUZIK","PlayerID":848934935,"Points":7368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21550","ServerKey":"pl181","X":556,"Y":364},{"Bonus":0,"Continent":"K65","ID":21551,"Name":"**Unexpected","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21551","ServerKey":"pl181","X":573,"Y":628},{"Bonus":0,"Continent":"K56","ID":21552,"Name":"0067","PlayerID":6510480,"Points":8051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21552","ServerKey":"pl181","X":640,"Y":530},{"Bonus":7,"Continent":"K64","ID":21553,"Name":"Dzikie wsparcie","PlayerID":699383279,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21553","ServerKey":"pl181","X":481,"Y":646},{"Bonus":0,"Continent":"K65","ID":21554,"Name":"**Agon","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21554","ServerKey":"pl181","X":575,"Y":626},{"Bonus":0,"Continent":"K65","ID":21555,"Name":"0385","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21555","ServerKey":"pl181","X":585,"Y":615},{"Bonus":0,"Continent":"K56","ID":21556,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21556","ServerKey":"pl181","X":640,"Y":543},{"Bonus":0,"Continent":"K35","ID":21557,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21557","ServerKey":"pl181","X":527,"Y":355},{"Bonus":0,"Continent":"K46","ID":21558,"Name":"038.","PlayerID":849094609,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21558","ServerKey":"pl181","X":645,"Y":478},{"Bonus":0,"Continent":"K65","ID":21559,"Name":"kathare","PlayerID":873575,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21559","ServerKey":"pl181","X":548,"Y":633},{"Bonus":0,"Continent":"K56","ID":21560,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21560","ServerKey":"pl181","X":637,"Y":553},{"Bonus":0,"Continent":"K33","ID":21561,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21561","ServerKey":"pl181","X":396,"Y":399},{"Bonus":0,"Continent":"K34","ID":21562,"Name":"0043","PlayerID":699431255,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21562","ServerKey":"pl181","X":446,"Y":367},{"Bonus":0,"Continent":"K65","ID":21563,"Name":"182","PlayerID":8627359,"Points":9134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21563","ServerKey":"pl181","X":580,"Y":619},{"Bonus":0,"Continent":"K64","ID":21564,"Name":"Pobozowisko","PlayerID":699513260,"Points":8699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21564","ServerKey":"pl181","X":402,"Y":607},{"Bonus":0,"Continent":"K53","ID":21565,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21565","ServerKey":"pl181","X":353,"Y":508},{"Bonus":2,"Continent":"K56","ID":21566,"Name":"B.015","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21566","ServerKey":"pl181","X":646,"Y":518},{"Bonus":0,"Continent":"K43","ID":21567,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21567","ServerKey":"pl181","X":357,"Y":471},{"Bonus":0,"Continent":"K35","ID":21568,"Name":"028 027","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21568","ServerKey":"pl181","X":543,"Y":361},{"Bonus":0,"Continent":"K35","ID":21569,"Name":"A035","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21569","ServerKey":"pl181","X":575,"Y":373},{"Bonus":0,"Continent":"K34","ID":21570,"Name":"0130","PlayerID":699431255,"Points":5594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21570","ServerKey":"pl181","X":434,"Y":374},{"Bonus":0,"Continent":"K64","ID":21571,"Name":"Pobozowisko","PlayerID":699513260,"Points":10321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21571","ServerKey":"pl181","X":404,"Y":606},{"Bonus":0,"Continent":"K53","ID":21572,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":3946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21572","ServerKey":"pl181","X":384,"Y":584},{"Bonus":0,"Continent":"K34","ID":21573,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":10293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21573","ServerKey":"pl181","X":441,"Y":369},{"Bonus":0,"Continent":"K65","ID":21575,"Name":"0388","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21575","ServerKey":"pl181","X":587,"Y":616},{"Bonus":5,"Continent":"K46","ID":21576,"Name":"Gattacka","PlayerID":699298370,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21576","ServerKey":"pl181","X":610,"Y":411},{"Bonus":0,"Continent":"K46","ID":21577,"Name":"09. Amon Din","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21577","ServerKey":"pl181","X":634,"Y":429},{"Bonus":0,"Continent":"K64","ID":21578,"Name":"Pobozowisko","PlayerID":699513260,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21578","ServerKey":"pl181","X":406,"Y":613},{"Bonus":0,"Continent":"K53","ID":21579,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":2178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21579","ServerKey":"pl181","X":381,"Y":587},{"Bonus":0,"Continent":"K43","ID":21580,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21580","ServerKey":"pl181","X":363,"Y":447},{"Bonus":0,"Continent":"K53","ID":21581,"Name":"004","PlayerID":6853693,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21581","ServerKey":"pl181","X":359,"Y":539},{"Bonus":0,"Continent":"K35","ID":21582,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21582","ServerKey":"pl181","X":524,"Y":372},{"Bonus":0,"Continent":"K46","ID":21583,"Name":"FB003","PlayerID":9314079,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21583","ServerKey":"pl181","X":642,"Y":493},{"Bonus":0,"Continent":"K65","ID":21584,"Name":"0259","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21584","ServerKey":"pl181","X":537,"Y":644},{"Bonus":0,"Continent":"K64","ID":21585,"Name":"A34","PlayerID":849037407,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21585","ServerKey":"pl181","X":463,"Y":637},{"Bonus":0,"Continent":"K64","ID":21586,"Name":"021|| Pyxis","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21586","ServerKey":"pl181","X":490,"Y":648},{"Bonus":7,"Continent":"K64","ID":21587,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21587","ServerKey":"pl181","X":401,"Y":605},{"Bonus":0,"Continent":"K65","ID":21588,"Name":"0382","PlayerID":698659980,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21588","ServerKey":"pl181","X":583,"Y":620},{"Bonus":0,"Continent":"K43","ID":21589,"Name":"AA10 Anglia","PlayerID":483145,"Points":5066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21589","ServerKey":"pl181","X":377,"Y":422},{"Bonus":0,"Continent":"K46","ID":21590,"Name":"0133","PlayerID":698416970,"Points":8626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21590","ServerKey":"pl181","X":642,"Y":465},{"Bonus":0,"Continent":"K43","ID":21591,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21591","ServerKey":"pl181","X":388,"Y":405},{"Bonus":0,"Continent":"K53","ID":21592,"Name":"023","PlayerID":8908002,"Points":6861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21592","ServerKey":"pl181","X":362,"Y":546},{"Bonus":0,"Continent":"K56","ID":21594,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21594","ServerKey":"pl181","X":640,"Y":526},{"Bonus":0,"Continent":"K64","ID":21595,"Name":"Ave Why!","PlayerID":698585370,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21595","ServerKey":"pl181","X":464,"Y":641},{"Bonus":0,"Continent":"K34","ID":21596,"Name":"Lecymy DUR","PlayerID":6169408,"Points":5524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21596","ServerKey":"pl181","X":433,"Y":371},{"Bonus":0,"Continent":"K64","ID":21597,"Name":"001","PlayerID":848883684,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21597","ServerKey":"pl181","X":464,"Y":651},{"Bonus":0,"Continent":"K34","ID":21598,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":6505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21598","ServerKey":"pl181","X":438,"Y":365},{"Bonus":0,"Continent":"K34","ID":21599,"Name":"c 065d","PlayerID":3909522,"Points":4217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21599","ServerKey":"pl181","X":422,"Y":381},{"Bonus":0,"Continent":"K64","ID":21600,"Name":"Belek","PlayerID":849089459,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21600","ServerKey":"pl181","X":471,"Y":647},{"Bonus":0,"Continent":"K65","ID":21601,"Name":"[0007]","PlayerID":699567608,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21601","ServerKey":"pl181","X":561,"Y":630},{"Bonus":7,"Continent":"K53","ID":21602,"Name":"002","PlayerID":6853693,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21602","ServerKey":"pl181","X":357,"Y":537},{"Bonus":0,"Continent":"K56","ID":21603,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21603","ServerKey":"pl181","X":633,"Y":549},{"Bonus":0,"Continent":"K34","ID":21604,"Name":"c 062d","PlayerID":3909522,"Points":7602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21604","ServerKey":"pl181","X":415,"Y":381},{"Bonus":0,"Continent":"K36","ID":21605,"Name":"Gattacka","PlayerID":699298370,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21605","ServerKey":"pl181","X":606,"Y":398},{"Bonus":0,"Continent":"K65","ID":21606,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7417116,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21606","ServerKey":"pl181","X":519,"Y":642},{"Bonus":0,"Continent":"K43","ID":21607,"Name":"AA01 Polska","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21607","ServerKey":"pl181","X":379,"Y":413},{"Bonus":0,"Continent":"K46","ID":21608,"Name":"019 Wioska","PlayerID":699671454,"Points":8069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21608","ServerKey":"pl181","X":636,"Y":459},{"Bonus":0,"Continent":"K64","ID":21609,"Name":"B01","PlayerID":849037407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21609","ServerKey":"pl181","X":461,"Y":640},{"Bonus":0,"Continent":"K34","ID":21610,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21610","ServerKey":"pl181","X":418,"Y":377},{"Bonus":0,"Continent":"K34","ID":21611,"Name":"Pamiętasz tamte czasy?","PlayerID":848942968,"Points":5047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21611","ServerKey":"pl181","X":491,"Y":359},{"Bonus":0,"Continent":"K36","ID":21612,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21612","ServerKey":"pl181","X":600,"Y":395},{"Bonus":3,"Continent":"K56","ID":21613,"Name":"jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21613","ServerKey":"pl181","X":642,"Y":544},{"Bonus":0,"Continent":"K53","ID":21614,"Name":"001","PlayerID":699621601,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21614","ServerKey":"pl181","X":382,"Y":582},{"Bonus":0,"Continent":"K65","ID":21615,"Name":"kathare","PlayerID":873575,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21615","ServerKey":"pl181","X":549,"Y":637},{"Bonus":0,"Continent":"K56","ID":21616,"Name":"037","PlayerID":698786826,"Points":9313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21616","ServerKey":"pl181","X":615,"Y":591},{"Bonus":0,"Continent":"K35","ID":21617,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21617","ServerKey":"pl181","X":564,"Y":367},{"Bonus":0,"Continent":"K43","ID":21618,"Name":"[C]_[008] Dejv.oldplyr","PlayerID":699380607,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21618","ServerKey":"pl181","X":361,"Y":460},{"Bonus":0,"Continent":"K34","ID":21619,"Name":"c 001b","PlayerID":3909522,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21619","ServerKey":"pl181","X":410,"Y":383},{"Bonus":0,"Continent":"K46","ID":21620,"Name":"0035","PlayerID":699429153,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21620","ServerKey":"pl181","X":615,"Y":415},{"Bonus":0,"Continent":"K53","ID":21621,"Name":"Pobozowisko","PlayerID":699513260,"Points":10608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21621","ServerKey":"pl181","X":387,"Y":595},{"Bonus":0,"Continent":"K64","ID":21622,"Name":"058","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21622","ServerKey":"pl181","X":440,"Y":631},{"Bonus":0,"Continent":"K46","ID":21623,"Name":"029 Wioska","PlayerID":699671454,"Points":8214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21623","ServerKey":"pl181","X":644,"Y":488},{"Bonus":0,"Continent":"K53","ID":21624,"Name":"Pobozowisko","PlayerID":699513260,"Points":7502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21624","ServerKey":"pl181","X":391,"Y":591},{"Bonus":0,"Continent":"K64","ID":21625,"Name":"005|| Leo","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21625","ServerKey":"pl181","X":491,"Y":645},{"Bonus":0,"Continent":"K34","ID":21626,"Name":"c Fyra 2","PlayerID":3909522,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21626","ServerKey":"pl181","X":401,"Y":394},{"Bonus":0,"Continent":"K46","ID":21627,"Name":"006 Ogromny PagĂłrek","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21627","ServerKey":"pl181","X":620,"Y":422},{"Bonus":9,"Continent":"K56","ID":21628,"Name":"B.030","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21628","ServerKey":"pl181","X":645,"Y":511},{"Bonus":0,"Continent":"K65","ID":21629,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21629","ServerKey":"pl181","X":519,"Y":641},{"Bonus":0,"Continent":"K64","ID":21630,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21630","ServerKey":"pl181","X":467,"Y":642},{"Bonus":8,"Continent":"K56","ID":21631,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21631","ServerKey":"pl181","X":619,"Y":582},{"Bonus":0,"Continent":"K34","ID":21632,"Name":"031","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21632","ServerKey":"pl181","X":481,"Y":353},{"Bonus":0,"Continent":"K65","ID":21633,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21633","ServerKey":"pl181","X":540,"Y":643},{"Bonus":0,"Continent":"K46","ID":21634,"Name":"Piwna 18","PlayerID":699812007,"Points":7227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21634","ServerKey":"pl181","X":627,"Y":431},{"Bonus":0,"Continent":"K43","ID":21635,"Name":"Mniejsze zƂo 0052","PlayerID":699794765,"Points":7676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21635","ServerKey":"pl181","X":360,"Y":461},{"Bonus":0,"Continent":"K53","ID":21636,"Name":"Dąbrowa 0008","PlayerID":849096972,"Points":3500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21636","ServerKey":"pl181","X":384,"Y":592},{"Bonus":0,"Continent":"K43","ID":21637,"Name":"A0156","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21637","ServerKey":"pl181","X":354,"Y":486},{"Bonus":0,"Continent":"K66","ID":21638,"Name":"070","PlayerID":699373599,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21638","ServerKey":"pl181","X":601,"Y":600},{"Bonus":0,"Continent":"K43","ID":21639,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21639","ServerKey":"pl181","X":360,"Y":454},{"Bonus":0,"Continent":"K34","ID":21640,"Name":"North Barba 004","PlayerID":699796330,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21640","ServerKey":"pl181","X":430,"Y":370},{"Bonus":0,"Continent":"K35","ID":21642,"Name":"169","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21642","ServerKey":"pl181","X":582,"Y":381},{"Bonus":0,"Continent":"K34","ID":21643,"Name":"0014","PlayerID":699431255,"Points":9715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21643","ServerKey":"pl181","X":428,"Y":380},{"Bonus":0,"Continent":"K36","ID":21644,"Name":"Los Santos","PlayerID":699298370,"Points":10116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21644","ServerKey":"pl181","X":603,"Y":395},{"Bonus":0,"Continent":"K46","ID":21645,"Name":"027","PlayerID":699298370,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21645","ServerKey":"pl181","X":613,"Y":404},{"Bonus":0,"Continent":"K46","ID":21646,"Name":"!034.519|498","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21646","ServerKey":"pl181","X":638,"Y":449},{"Bonus":0,"Continent":"K65","ID":21647,"Name":"[ Szukam Guza ]","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21647","ServerKey":"pl181","X":579,"Y":619},{"Bonus":0,"Continent":"K46","ID":21648,"Name":"035.","PlayerID":849094609,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21648","ServerKey":"pl181","X":645,"Y":482},{"Bonus":0,"Continent":"K64","ID":21649,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21649","ServerKey":"pl181","X":493,"Y":638},{"Bonus":0,"Continent":"K64","ID":21650,"Name":"011.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21650","ServerKey":"pl181","X":486,"Y":647},{"Bonus":0,"Continent":"K64","ID":21651,"Name":"Ave Why!","PlayerID":698585370,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21651","ServerKey":"pl181","X":478,"Y":646},{"Bonus":0,"Continent":"K35","ID":21652,"Name":"A010","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21652","ServerKey":"pl181","X":590,"Y":382},{"Bonus":0,"Continent":"K64","ID":21653,"Name":"002","PlayerID":699783765,"Points":4487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21653","ServerKey":"pl181","X":428,"Y":626},{"Bonus":0,"Continent":"K34","ID":21654,"Name":"117","PlayerID":7271812,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21654","ServerKey":"pl181","X":472,"Y":359},{"Bonus":0,"Continent":"K44","ID":21655,"Name":"Gravity","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21655","ServerKey":"pl181","X":404,"Y":449},{"Bonus":0,"Continent":"K34","ID":21656,"Name":"053...barbarka","PlayerID":6920960,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21656","ServerKey":"pl181","X":455,"Y":359},{"Bonus":0,"Continent":"K53","ID":21657,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21657","ServerKey":"pl181","X":354,"Y":506},{"Bonus":0,"Continent":"K43","ID":21658,"Name":"Baa","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21658","ServerKey":"pl181","X":380,"Y":488},{"Bonus":0,"Continent":"K53","ID":21659,"Name":"deff 100 %","PlayerID":849012521,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21659","ServerKey":"pl181","X":377,"Y":581},{"Bonus":0,"Continent":"K53","ID":21660,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21660","ServerKey":"pl181","X":356,"Y":530},{"Bonus":0,"Continent":"K34","ID":21661,"Name":"Szlachcic","PlayerID":698388578,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21661","ServerKey":"pl181","X":420,"Y":375},{"Bonus":0,"Continent":"K43","ID":21662,"Name":"Busz","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21662","ServerKey":"pl181","X":379,"Y":491},{"Bonus":0,"Continent":"K35","ID":21663,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21663","ServerKey":"pl181","X":566,"Y":367},{"Bonus":0,"Continent":"K56","ID":21664,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21664","ServerKey":"pl181","X":640,"Y":539},{"Bonus":0,"Continent":"K64","ID":21665,"Name":"038","PlayerID":849084985,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21665","ServerKey":"pl181","X":445,"Y":638},{"Bonus":0,"Continent":"K56","ID":21666,"Name":"035","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21666","ServerKey":"pl181","X":644,"Y":548},{"Bonus":0,"Continent":"K53","ID":21667,"Name":"Pobozowisko","PlayerID":699513260,"Points":10270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21667","ServerKey":"pl181","X":386,"Y":589},{"Bonus":0,"Continent":"K34","ID":21668,"Name":"147...ksiÄ…ĆŒÄ™ plemienia","PlayerID":6920960,"Points":8334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21668","ServerKey":"pl181","X":452,"Y":361},{"Bonus":0,"Continent":"K53","ID":21669,"Name":"025","PlayerID":8908002,"Points":6190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21669","ServerKey":"pl181","X":364,"Y":542},{"Bonus":0,"Continent":"K56","ID":21670,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21670","ServerKey":"pl181","X":639,"Y":542},{"Bonus":0,"Continent":"K64","ID":21671,"Name":"001-MiƂoƛć","PlayerID":6910361,"Points":3976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21671","ServerKey":"pl181","X":433,"Y":629},{"Bonus":0,"Continent":"K43","ID":21672,"Name":"M181_057","PlayerID":393668,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21672","ServerKey":"pl181","X":367,"Y":437},{"Bonus":0,"Continent":"K65","ID":21673,"Name":"kathare","PlayerID":873575,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21673","ServerKey":"pl181","X":551,"Y":636},{"Bonus":0,"Continent":"K56","ID":21674,"Name":"011","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21674","ServerKey":"pl181","X":606,"Y":598},{"Bonus":0,"Continent":"K64","ID":21675,"Name":"Ave Why!","PlayerID":698585370,"Points":8016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21675","ServerKey":"pl181","X":460,"Y":642},{"Bonus":0,"Continent":"K43","ID":21676,"Name":"Cardiff","PlayerID":8967440,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21676","ServerKey":"pl181","X":377,"Y":424},{"Bonus":0,"Continent":"K56","ID":21677,"Name":"B.064","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21677","ServerKey":"pl181","X":645,"Y":506},{"Bonus":0,"Continent":"K53","ID":21678,"Name":"012","PlayerID":8908002,"Points":7826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21678","ServerKey":"pl181","X":362,"Y":542},{"Bonus":0,"Continent":"K64","ID":21679,"Name":"Pobozowisko","PlayerID":699513260,"Points":11819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21679","ServerKey":"pl181","X":406,"Y":611},{"Bonus":0,"Continent":"K43","ID":21680,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21680","ServerKey":"pl181","X":369,"Y":445},{"Bonus":0,"Continent":"K46","ID":21682,"Name":"0057","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21682","ServerKey":"pl181","X":619,"Y":415},{"Bonus":7,"Continent":"K35","ID":21683,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21683","ServerKey":"pl181","X":528,"Y":357},{"Bonus":0,"Continent":"K34","ID":21685,"Name":"087...barbarka","PlayerID":6920960,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21685","ServerKey":"pl181","X":455,"Y":362},{"Bonus":2,"Continent":"K46","ID":21686,"Name":"Jan osada 03 K","PlayerID":879782,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21686","ServerKey":"pl181","X":639,"Y":469},{"Bonus":0,"Continent":"K66","ID":21687,"Name":"zzzGranica Bledu 03","PlayerID":699778867,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21687","ServerKey":"pl181","X":606,"Y":602},{"Bonus":0,"Continent":"K46","ID":21688,"Name":"067. Gesoriacum","PlayerID":849091866,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21688","ServerKey":"pl181","X":631,"Y":439},{"Bonus":0,"Continent":"K64","ID":21689,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":8386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21689","ServerKey":"pl181","X":440,"Y":634},{"Bonus":0,"Continent":"K46","ID":21690,"Name":"0029","PlayerID":699429153,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21690","ServerKey":"pl181","X":620,"Y":420},{"Bonus":0,"Continent":"K53","ID":21691,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21691","ServerKey":"pl181","X":356,"Y":534},{"Bonus":0,"Continent":"K43","ID":21693,"Name":"M181_056","PlayerID":393668,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21693","ServerKey":"pl181","X":368,"Y":438},{"Bonus":0,"Continent":"K43","ID":21694,"Name":"s181eo23","PlayerID":393668,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21694","ServerKey":"pl181","X":393,"Y":452},{"Bonus":0,"Continent":"K65","ID":21695,"Name":"kathare","PlayerID":873575,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21695","ServerKey":"pl181","X":551,"Y":637},{"Bonus":0,"Continent":"K64","ID":21696,"Name":"Ulu-mulu","PlayerID":699697558,"Points":2857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21696","ServerKey":"pl181","X":420,"Y":620},{"Bonus":0,"Continent":"K65","ID":21697,"Name":"kathare","PlayerID":873575,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21697","ServerKey":"pl181","X":548,"Y":637},{"Bonus":0,"Continent":"K46","ID":21698,"Name":"zima","PlayerID":849095435,"Points":9543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21698","ServerKey":"pl181","X":625,"Y":421},{"Bonus":0,"Continent":"K43","ID":21699,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21699","ServerKey":"pl181","X":363,"Y":454},{"Bonus":0,"Continent":"K65","ID":21700,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21700","ServerKey":"pl181","X":542,"Y":641},{"Bonus":0,"Continent":"K46","ID":21701,"Name":"121","PlayerID":7085502,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21701","ServerKey":"pl181","X":615,"Y":412},{"Bonus":0,"Continent":"K56","ID":21702,"Name":"Wioska Totenhaim","PlayerID":3364735,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21702","ServerKey":"pl181","X":602,"Y":538},{"Bonus":0,"Continent":"K35","ID":21703,"Name":"002 Wioska hspr1","PlayerID":699509239,"Points":5030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21703","ServerKey":"pl181","X":569,"Y":374},{"Bonus":0,"Continent":"K36","ID":21704,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21704","ServerKey":"pl181","X":601,"Y":397},{"Bonus":7,"Continent":"K64","ID":21705,"Name":"0113","PlayerID":699697558,"Points":6780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21705","ServerKey":"pl181","X":417,"Y":617},{"Bonus":0,"Continent":"K64","ID":21706,"Name":"020|| Monoceros","PlayerID":849035525,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21706","ServerKey":"pl181","X":459,"Y":638},{"Bonus":0,"Continent":"K65","ID":21707,"Name":"kathare","PlayerID":873575,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21707","ServerKey":"pl181","X":558,"Y":635},{"Bonus":2,"Continent":"K64","ID":21708,"Name":"Why dominuje Orki!","PlayerID":698585370,"Points":9838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21708","ServerKey":"pl181","X":496,"Y":647},{"Bonus":0,"Continent":"K64","ID":21709,"Name":"015","PlayerID":699238479,"Points":5542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21709","ServerKey":"pl181","X":475,"Y":646},{"Bonus":0,"Continent":"K56","ID":21710,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21710","ServerKey":"pl181","X":640,"Y":527},{"Bonus":0,"Continent":"K64","ID":21711,"Name":"086","PlayerID":849084985,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21711","ServerKey":"pl181","X":453,"Y":638},{"Bonus":0,"Continent":"K35","ID":21712,"Name":"A023","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21712","ServerKey":"pl181","X":586,"Y":383},{"Bonus":0,"Continent":"K64","ID":21713,"Name":"Ave Why!","PlayerID":698585370,"Points":7773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21713","ServerKey":"pl181","X":465,"Y":642},{"Bonus":0,"Continent":"K35","ID":21714,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21714","ServerKey":"pl181","X":558,"Y":363},{"Bonus":0,"Continent":"K64","ID":21715,"Name":"Pobozowisko","PlayerID":699513260,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21715","ServerKey":"pl181","X":410,"Y":614},{"Bonus":0,"Continent":"K65","ID":21716,"Name":"SSJ 040","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21716","ServerKey":"pl181","X":517,"Y":645},{"Bonus":0,"Continent":"K66","ID":21717,"Name":"hbmacko","PlayerID":7829201,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21717","ServerKey":"pl181","X":600,"Y":602},{"Bonus":0,"Continent":"K43","ID":21718,"Name":"MELISKA","PlayerID":699794765,"Points":10036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21718","ServerKey":"pl181","X":357,"Y":468},{"Bonus":5,"Continent":"K46","ID":21719,"Name":"Wioska barbarzyƄska","PlayerID":848915730,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21719","ServerKey":"pl181","X":609,"Y":406},{"Bonus":0,"Continent":"K34","ID":21721,"Name":"Wioska_2","PlayerID":848942968,"Points":3816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21721","ServerKey":"pl181","X":489,"Y":358},{"Bonus":0,"Continent":"K53","ID":21722,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21722","ServerKey":"pl181","X":358,"Y":525},{"Bonus":0,"Continent":"K34","ID":21723,"Name":"#0035 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21723","ServerKey":"pl181","X":466,"Y":357},{"Bonus":0,"Continent":"K43","ID":21724,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21724","ServerKey":"pl181","X":357,"Y":459},{"Bonus":0,"Continent":"K56","ID":21725,"Name":"34k$ Grvvyq","PlayerID":699676005,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21725","ServerKey":"pl181","X":637,"Y":550},{"Bonus":0,"Continent":"K64","ID":21726,"Name":"Pobozowisko","PlayerID":699513260,"Points":7760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21726","ServerKey":"pl181","X":405,"Y":605},{"Bonus":0,"Continent":"K35","ID":21727,"Name":"*1*","PlayerID":849064614,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21727","ServerKey":"pl181","X":581,"Y":382},{"Bonus":0,"Continent":"K34","ID":21728,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21728","ServerKey":"pl181","X":437,"Y":367},{"Bonus":0,"Continent":"K43","ID":21729,"Name":"A0292","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21729","ServerKey":"pl181","X":355,"Y":481},{"Bonus":0,"Continent":"K53","ID":21731,"Name":"142 Nowy początek","PlayerID":699382126,"Points":7375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21731","ServerKey":"pl181","X":373,"Y":568},{"Bonus":0,"Continent":"K65","ID":21732,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21732","ServerKey":"pl181","X":518,"Y":644},{"Bonus":0,"Continent":"K36","ID":21733,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21733","ServerKey":"pl181","X":603,"Y":399},{"Bonus":0,"Continent":"K54","ID":21734,"Name":"Nowa Nadzieja 5","PlayerID":699383121,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21734","ServerKey":"pl181","X":494,"Y":598},{"Bonus":0,"Continent":"K56","ID":21735,"Name":"*5621* Happy","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21735","ServerKey":"pl181","X":640,"Y":525},{"Bonus":0,"Continent":"K56","ID":21736,"Name":"032","PlayerID":849006412,"Points":5425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21736","ServerKey":"pl181","X":643,"Y":523},{"Bonus":0,"Continent":"K53","ID":21737,"Name":"off 100 %","PlayerID":849012521,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21737","ServerKey":"pl181","X":362,"Y":555},{"Bonus":0,"Continent":"K43","ID":21738,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21738","ServerKey":"pl181","X":364,"Y":454},{"Bonus":0,"Continent":"K63","ID":21739,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21739","ServerKey":"pl181","X":398,"Y":603},{"Bonus":0,"Continent":"K65","ID":21740,"Name":"**Algonquin","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21740","ServerKey":"pl181","X":574,"Y":627},{"Bonus":0,"Continent":"K65","ID":21741,"Name":"0390","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21741","ServerKey":"pl181","X":587,"Y":614},{"Bonus":0,"Continent":"K64","ID":21742,"Name":"0007","PlayerID":6180190,"Points":10637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21742","ServerKey":"pl181","X":475,"Y":643},{"Bonus":0,"Continent":"K65","ID":21743,"Name":"001. Wioska Mr Bizy","PlayerID":848928624,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21743","ServerKey":"pl181","X":502,"Y":643},{"Bonus":0,"Continent":"K46","ID":21744,"Name":"069. Nicaea","PlayerID":849091866,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21744","ServerKey":"pl181","X":632,"Y":443},{"Bonus":0,"Continent":"K64","ID":21745,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":6388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21745","ServerKey":"pl181","X":434,"Y":631},{"Bonus":0,"Continent":"K56","ID":21746,"Name":"013","PlayerID":698786826,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21746","ServerKey":"pl181","X":607,"Y":598},{"Bonus":0,"Continent":"K43","ID":21747,"Name":"___","PlayerID":699523631,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21747","ServerKey":"pl181","X":378,"Y":471},{"Bonus":0,"Continent":"K35","ID":21748,"Name":"063 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21748","ServerKey":"pl181","X":546,"Y":359},{"Bonus":0,"Continent":"K64","ID":21749,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21749","ServerKey":"pl181","X":425,"Y":627},{"Bonus":0,"Continent":"K35","ID":21750,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21750","ServerKey":"pl181","X":552,"Y":368},{"Bonus":0,"Continent":"K63","ID":21751,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21751","ServerKey":"pl181","X":391,"Y":606},{"Bonus":0,"Continent":"K43","ID":21752,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21752","ServerKey":"pl181","X":354,"Y":479},{"Bonus":0,"Continent":"K64","ID":21754,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21754","ServerKey":"pl181","X":400,"Y":600},{"Bonus":0,"Continent":"K56","ID":21755,"Name":"Bunkier 002","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21755","ServerKey":"pl181","X":618,"Y":588},{"Bonus":0,"Continent":"K65","ID":21756,"Name":"nic","PlayerID":699828685,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21756","ServerKey":"pl181","X":575,"Y":621},{"Bonus":0,"Continent":"K46","ID":21757,"Name":"011","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21757","ServerKey":"pl181","X":621,"Y":416},{"Bonus":2,"Continent":"K35","ID":21758,"Name":"A012","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21758","ServerKey":"pl181","X":599,"Y":392},{"Bonus":0,"Continent":"K34","ID":21759,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21759","ServerKey":"pl181","X":422,"Y":377},{"Bonus":0,"Continent":"K53","ID":21760,"Name":"08. Wioska 8","PlayerID":849091769,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21760","ServerKey":"pl181","X":370,"Y":560},{"Bonus":0,"Continent":"K34","ID":21761,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21761","ServerKey":"pl181","X":403,"Y":387},{"Bonus":0,"Continent":"K34","ID":21762,"Name":"069","PlayerID":699796330,"Points":6475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21762","ServerKey":"pl181","X":430,"Y":376},{"Bonus":0,"Continent":"K43","ID":21763,"Name":"Reginopolis","PlayerID":699644054,"Points":4496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21763","ServerKey":"pl181","X":380,"Y":431},{"Bonus":0,"Continent":"K64","ID":21764,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21764","ServerKey":"pl181","X":410,"Y":617},{"Bonus":0,"Continent":"K46","ID":21765,"Name":"033.","PlayerID":849094609,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21765","ServerKey":"pl181","X":643,"Y":476},{"Bonus":0,"Continent":"K46","ID":21767,"Name":"015. Kacundzk","PlayerID":849094609,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21767","ServerKey":"pl181","X":642,"Y":478},{"Bonus":0,"Continent":"K46","ID":21768,"Name":"Ƃaweczka","PlayerID":849095435,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21768","ServerKey":"pl181","X":629,"Y":427},{"Bonus":0,"Continent":"K34","ID":21769,"Name":"c Konarskiego 2","PlayerID":3909522,"Points":7007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21769","ServerKey":"pl181","X":407,"Y":388},{"Bonus":0,"Continent":"K65","ID":21770,"Name":"**After","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21770","ServerKey":"pl181","X":574,"Y":625},{"Bonus":0,"Continent":"K53","ID":21771,"Name":"pepe","PlayerID":849030226,"Points":7852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21771","ServerKey":"pl181","X":358,"Y":526},{"Bonus":0,"Continent":"K35","ID":21772,"Name":"ARE YOU READY?","PlayerID":699485250,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21772","ServerKey":"pl181","X":592,"Y":388},{"Bonus":0,"Continent":"K34","ID":21773,"Name":"Lecymy DUR","PlayerID":6169408,"Points":2624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21773","ServerKey":"pl181","X":444,"Y":363},{"Bonus":0,"Continent":"K66","ID":21774,"Name":"~~023~~","PlayerID":7829201,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21774","ServerKey":"pl181","X":601,"Y":607},{"Bonus":0,"Continent":"K46","ID":21775,"Name":"014. Kacundzk","PlayerID":849094609,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21775","ServerKey":"pl181","X":648,"Y":486},{"Bonus":0,"Continent":"K35","ID":21776,"Name":"008 Wioska barbarzyƄska","PlayerID":699509239,"Points":7190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21776","ServerKey":"pl181","X":569,"Y":375},{"Bonus":0,"Continent":"K65","ID":21777,"Name":"kathare","PlayerID":873575,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21777","ServerKey":"pl181","X":547,"Y":638},{"Bonus":7,"Continent":"K64","ID":21778,"Name":"058","PlayerID":699783765,"Points":4797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21778","ServerKey":"pl181","X":427,"Y":622},{"Bonus":0,"Continent":"K56","ID":21779,"Name":"Pigi 1 Blisko","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21779","ServerKey":"pl181","X":619,"Y":589},{"Bonus":0,"Continent":"K43","ID":21780,"Name":"A0169","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21780","ServerKey":"pl181","X":353,"Y":487},{"Bonus":0,"Continent":"K53","ID":21781,"Name":"zXanadu","PlayerID":699849210,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21781","ServerKey":"pl181","X":391,"Y":595},{"Bonus":0,"Continent":"K56","ID":21782,"Name":"028","PlayerID":849095227,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21782","ServerKey":"pl181","X":632,"Y":551},{"Bonus":0,"Continent":"K46","ID":21783,"Name":"011.","PlayerID":849094609,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21783","ServerKey":"pl181","X":648,"Y":493},{"Bonus":0,"Continent":"K35","ID":21784,"Name":"xkikutx","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21784","ServerKey":"pl181","X":520,"Y":358},{"Bonus":0,"Continent":"K46","ID":21785,"Name":"#032.517|499","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21785","ServerKey":"pl181","X":636,"Y":450},{"Bonus":0,"Continent":"K65","ID":21786,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21786","ServerKey":"pl181","X":520,"Y":641},{"Bonus":0,"Continent":"K43","ID":21788,"Name":"A0194","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21788","ServerKey":"pl181","X":356,"Y":486},{"Bonus":0,"Continent":"K53","ID":21789,"Name":"002","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21789","ServerKey":"pl181","X":359,"Y":542},{"Bonus":0,"Continent":"K35","ID":21790,"Name":"xWioska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21790","ServerKey":"pl181","X":525,"Y":353},{"Bonus":0,"Continent":"K53","ID":21791,"Name":"058","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21791","ServerKey":"pl181","X":357,"Y":512},{"Bonus":0,"Continent":"K43","ID":21792,"Name":"[C]_[001] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21792","ServerKey":"pl181","X":358,"Y":472},{"Bonus":0,"Continent":"K64","ID":21793,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21793","ServerKey":"pl181","X":466,"Y":642},{"Bonus":0,"Continent":"K34","ID":21794,"Name":"074","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21794","ServerKey":"pl181","X":470,"Y":361},{"Bonus":0,"Continent":"K64","ID":21795,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21795","ServerKey":"pl181","X":465,"Y":638},{"Bonus":0,"Continent":"K34","ID":21796,"Name":"034","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21796","ServerKey":"pl181","X":484,"Y":353},{"Bonus":0,"Continent":"K65","ID":21797,"Name":"WB004","PlayerID":8627359,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21797","ServerKey":"pl181","X":585,"Y":619},{"Bonus":0,"Continent":"K34","ID":21798,"Name":"Konfederacja +","PlayerID":848915730,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21798","ServerKey":"pl181","X":456,"Y":365},{"Bonus":0,"Continent":"K46","ID":21800,"Name":"019","PlayerID":849093875,"Points":3811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21800","ServerKey":"pl181","X":643,"Y":475},{"Bonus":0,"Continent":"K34","ID":21801,"Name":"Szlachcic","PlayerID":698388578,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21801","ServerKey":"pl181","X":425,"Y":374},{"Bonus":0,"Continent":"K36","ID":21802,"Name":"A 023","PlayerID":6384450,"Points":8268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21802","ServerKey":"pl181","X":600,"Y":393},{"Bonus":0,"Continent":"K35","ID":21803,"Name":"WE ARE READY!","PlayerID":1553947,"Points":8510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21803","ServerKey":"pl181","X":594,"Y":385},{"Bonus":0,"Continent":"K34","ID":21804,"Name":"102","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21804","ServerKey":"pl181","X":476,"Y":354},{"Bonus":0,"Continent":"K64","ID":21805,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":5005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21805","ServerKey":"pl181","X":422,"Y":622},{"Bonus":0,"Continent":"K53","ID":21806,"Name":"Wioska 2","PlayerID":699621601,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21806","ServerKey":"pl181","X":382,"Y":586},{"Bonus":0,"Continent":"K46","ID":21807,"Name":"026","PlayerID":699298370,"Points":3690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21807","ServerKey":"pl181","X":613,"Y":406},{"Bonus":0,"Continent":"K64","ID":21808,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21808","ServerKey":"pl181","X":461,"Y":643},{"Bonus":0,"Continent":"K36","ID":21809,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21809","ServerKey":"pl181","X":603,"Y":397},{"Bonus":0,"Continent":"K35","ID":21810,"Name":"112 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21810","ServerKey":"pl181","X":537,"Y":357},{"Bonus":0,"Continent":"K46","ID":21811,"Name":"026 Wioska","PlayerID":699671454,"Points":6482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21811","ServerKey":"pl181","X":643,"Y":486},{"Bonus":0,"Continent":"K46","ID":21812,"Name":"0031","PlayerID":699429153,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21812","ServerKey":"pl181","X":624,"Y":421},{"Bonus":5,"Continent":"K43","ID":21814,"Name":"--4. Pole kalafiorĂłw","PlayerID":698345556,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21814","ServerKey":"pl181","X":386,"Y":407},{"Bonus":0,"Continent":"K35","ID":21816,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21816","ServerKey":"pl181","X":528,"Y":358},{"Bonus":0,"Continent":"K35","ID":21817,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21817","ServerKey":"pl181","X":563,"Y":367},{"Bonus":0,"Continent":"K36","ID":21818,"Name":"#001","PlayerID":7555180,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21818","ServerKey":"pl181","X":605,"Y":395},{"Bonus":0,"Continent":"K43","ID":21819,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21819","ServerKey":"pl181","X":361,"Y":448},{"Bonus":9,"Continent":"K43","ID":21820,"Name":"A-003","PlayerID":8419570,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21820","ServerKey":"pl181","X":388,"Y":402},{"Bonus":0,"Continent":"K53","ID":21821,"Name":"079","PlayerID":6853693,"Points":4882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21821","ServerKey":"pl181","X":360,"Y":540},{"Bonus":0,"Continent":"K64","ID":21822,"Name":"0024 - teraz się obudziƂ","PlayerID":33900,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21822","ServerKey":"pl181","X":488,"Y":645},{"Bonus":0,"Continent":"K34","ID":21823,"Name":"c Fyra 1","PlayerID":3909522,"Points":9137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21823","ServerKey":"pl181","X":400,"Y":397},{"Bonus":0,"Continent":"K46","ID":21824,"Name":"025 - Mostoles","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21824","ServerKey":"pl181","X":643,"Y":481},{"Bonus":0,"Continent":"K35","ID":21825,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":8884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21825","ServerKey":"pl181","X":546,"Y":363},{"Bonus":0,"Continent":"K46","ID":21826,"Name":"B018","PlayerID":9314079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21826","ServerKey":"pl181","X":641,"Y":459},{"Bonus":0,"Continent":"K56","ID":21827,"Name":"040","PlayerID":699351301,"Points":6138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21827","ServerKey":"pl181","X":644,"Y":517},{"Bonus":0,"Continent":"K44","ID":21828,"Name":"00193","PlayerID":3909522,"Points":5429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21828","ServerKey":"pl181","X":440,"Y":413},{"Bonus":0,"Continent":"K43","ID":21829,"Name":"Kurczak PoĆŒogi","PlayerID":3713020,"Points":4609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21829","ServerKey":"pl181","X":358,"Y":473},{"Bonus":0,"Continent":"K64","ID":21830,"Name":"006|| Virgo","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21830","ServerKey":"pl181","X":487,"Y":644},{"Bonus":0,"Continent":"K35","ID":21831,"Name":"Lord Lord Franek .#196","PlayerID":698420691,"Points":9187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21831","ServerKey":"pl181","X":504,"Y":352},{"Bonus":5,"Continent":"K64","ID":21832,"Name":"Ave Why!","PlayerID":698585370,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21832","ServerKey":"pl181","X":456,"Y":639},{"Bonus":0,"Continent":"K53","ID":21833,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21833","ServerKey":"pl181","X":366,"Y":564},{"Bonus":0,"Continent":"K64","ID":21834,"Name":"ave why!","PlayerID":698143931,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21834","ServerKey":"pl181","X":435,"Y":634},{"Bonus":0,"Continent":"K65","ID":21835,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21835","ServerKey":"pl181","X":539,"Y":644},{"Bonus":0,"Continent":"K64","ID":21836,"Name":"087","PlayerID":849084985,"Points":3140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21836","ServerKey":"pl181","X":445,"Y":639},{"Bonus":0,"Continent":"K35","ID":21837,"Name":"132 DaSilva2402","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21837","ServerKey":"pl181","X":517,"Y":353},{"Bonus":0,"Continent":"K56","ID":21838,"Name":"021","PlayerID":698786826,"Points":7013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21838","ServerKey":"pl181","X":609,"Y":598},{"Bonus":0,"Continent":"K65","ID":21839,"Name":"**Easy","PlayerID":699443920,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21839","ServerKey":"pl181","X":570,"Y":631},{"Bonus":0,"Continent":"K56","ID":21840,"Name":"B.043","PlayerID":9188016,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21840","ServerKey":"pl181","X":649,"Y":513},{"Bonus":0,"Continent":"K65","ID":21841,"Name":"0288","PlayerID":698659980,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21841","ServerKey":"pl181","X":535,"Y":641},{"Bonus":0,"Continent":"K53","ID":21842,"Name":"027","PlayerID":8908002,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21842","ServerKey":"pl181","X":361,"Y":547},{"Bonus":0,"Continent":"K34","ID":21843,"Name":"031...strazacki","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21843","ServerKey":"pl181","X":460,"Y":362},{"Bonus":0,"Continent":"K53","ID":21844,"Name":"44. Wioska 44","PlayerID":849091769,"Points":9921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21844","ServerKey":"pl181","X":370,"Y":566},{"Bonus":0,"Continent":"K53","ID":21845,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":5962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21845","ServerKey":"pl181","X":374,"Y":577},{"Bonus":0,"Continent":"K56","ID":21846,"Name":"B.044","PlayerID":9188016,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21846","ServerKey":"pl181","X":647,"Y":511},{"Bonus":0,"Continent":"K53","ID":21847,"Name":"deff 100 %","PlayerID":849012521,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21847","ServerKey":"pl181","X":364,"Y":557},{"Bonus":0,"Continent":"K35","ID":21848,"Name":"Ambrela 001","PlayerID":698823542,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21848","ServerKey":"pl181","X":575,"Y":372},{"Bonus":0,"Continent":"K46","ID":21849,"Name":"#.44 Wioska barbarzyƄska","PlayerID":849054582,"Points":4060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21849","ServerKey":"pl181","X":641,"Y":483},{"Bonus":0,"Continent":"K53","ID":21850,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":3366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21850","ServerKey":"pl181","X":381,"Y":580},{"Bonus":0,"Continent":"K53","ID":21851,"Name":"Pobozowisko","PlayerID":699513260,"Points":7591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21851","ServerKey":"pl181","X":389,"Y":591},{"Bonus":0,"Continent":"K56","ID":21852,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21852","ServerKey":"pl181","X":639,"Y":553},{"Bonus":0,"Continent":"K64","ID":21854,"Name":"003|| Gemini","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21854","ServerKey":"pl181","X":485,"Y":645},{"Bonus":0,"Continent":"K35","ID":21855,"Name":"029 030","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21855","ServerKey":"pl181","X":539,"Y":361},{"Bonus":0,"Continent":"K64","ID":21856,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21856","ServerKey":"pl181","X":418,"Y":624},{"Bonus":0,"Continent":"K43","ID":21857,"Name":"A0195","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21857","ServerKey":"pl181","X":356,"Y":492},{"Bonus":0,"Continent":"K56","ID":21858,"Name":"BZioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21858","ServerKey":"pl181","X":638,"Y":551},{"Bonus":2,"Continent":"K53","ID":21859,"Name":"-024-","PlayerID":699097885,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21859","ServerKey":"pl181","X":389,"Y":592},{"Bonus":0,"Continent":"K64","ID":21860,"Name":"0107","PlayerID":699697558,"Points":5906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21860","ServerKey":"pl181","X":418,"Y":618},{"Bonus":0,"Continent":"K43","ID":21861,"Name":"Westcoast.113","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21861","ServerKey":"pl181","X":377,"Y":426},{"Bonus":0,"Continent":"K56","ID":21862,"Name":"jaaa","PlayerID":698635863,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21862","ServerKey":"pl181","X":641,"Y":542},{"Bonus":0,"Continent":"K56","ID":21863,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21863","ServerKey":"pl181","X":635,"Y":563},{"Bonus":0,"Continent":"K56","ID":21864,"Name":"jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21864","ServerKey":"pl181","X":631,"Y":568},{"Bonus":0,"Continent":"K34","ID":21865,"Name":"078","PlayerID":698739350,"Points":10713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21865","ServerKey":"pl181","X":483,"Y":359},{"Bonus":0,"Continent":"K34","ID":21866,"Name":"114","PlayerID":7271812,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21866","ServerKey":"pl181","X":478,"Y":356},{"Bonus":0,"Continent":"K46","ID":21867,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21867","ServerKey":"pl181","X":642,"Y":455},{"Bonus":0,"Continent":"K43","ID":21868,"Name":"Wioska barbarzyƄska","PlayerID":699753640,"Points":4204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21868","ServerKey":"pl181","X":372,"Y":428},{"Bonus":0,"Continent":"K65","ID":21869,"Name":"0085","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21869","ServerKey":"pl181","X":531,"Y":643},{"Bonus":0,"Continent":"K34","ID":21870,"Name":"K34 - [026] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21870","ServerKey":"pl181","X":443,"Y":370},{"Bonus":0,"Continent":"K46","ID":21871,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21871","ServerKey":"pl181","X":608,"Y":401},{"Bonus":0,"Continent":"K43","ID":21872,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21872","ServerKey":"pl181","X":357,"Y":470},{"Bonus":0,"Continent":"K64","ID":21873,"Name":"Ulu-mulu","PlayerID":699697558,"Points":4785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21873","ServerKey":"pl181","X":414,"Y":615},{"Bonus":0,"Continent":"K46","ID":21874,"Name":"Jehu_Kingdom_46","PlayerID":8785314,"Points":10304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21874","ServerKey":"pl181","X":645,"Y":472},{"Bonus":0,"Continent":"K34","ID":21876,"Name":"c 003 jĂłzefin","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21876","ServerKey":"pl181","X":412,"Y":386},{"Bonus":0,"Continent":"K34","ID":21877,"Name":"106","PlayerID":699761749,"Points":10137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21877","ServerKey":"pl181","X":485,"Y":353},{"Bonus":0,"Continent":"K35","ID":21878,"Name":"yyyy","PlayerID":699883079,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21878","ServerKey":"pl181","X":500,"Y":355},{"Bonus":0,"Continent":"K56","ID":21879,"Name":"B.063","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21879","ServerKey":"pl181","X":645,"Y":504},{"Bonus":0,"Continent":"K34","ID":21880,"Name":"046","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21880","ServerKey":"pl181","X":469,"Y":360},{"Bonus":0,"Continent":"K65","ID":21881,"Name":"- 328 - RR","PlayerID":849018239,"Points":9465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21881","ServerKey":"pl181","X":592,"Y":615},{"Bonus":0,"Continent":"K64","ID":21882,"Name":"0001","PlayerID":699117178,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21882","ServerKey":"pl181","X":478,"Y":643},{"Bonus":0,"Continent":"K43","ID":21883,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21883","ServerKey":"pl181","X":360,"Y":451},{"Bonus":0,"Continent":"K35","ID":21884,"Name":"wioska strachu","PlayerID":699072129,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21884","ServerKey":"pl181","X":547,"Y":361},{"Bonus":0,"Continent":"K53","ID":21885,"Name":"005","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21885","ServerKey":"pl181","X":361,"Y":544},{"Bonus":0,"Continent":"K43","ID":21886,"Name":"Mniejsze zƂo 0061","PlayerID":699794765,"Points":6936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21886","ServerKey":"pl181","X":363,"Y":459},{"Bonus":0,"Continent":"K34","ID":21887,"Name":"0110","PlayerID":699431255,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21887","ServerKey":"pl181","X":436,"Y":375},{"Bonus":0,"Continent":"K43","ID":21888,"Name":"--8. Parzymiechy Dolne","PlayerID":698345556,"Points":7848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21888","ServerKey":"pl181","X":384,"Y":407},{"Bonus":0,"Continent":"K34","ID":21889,"Name":"0036","PlayerID":699431255,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21889","ServerKey":"pl181","X":443,"Y":367},{"Bonus":0,"Continent":"K43","ID":21890,"Name":"Westcoast.102","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21890","ServerKey":"pl181","X":369,"Y":431},{"Bonus":0,"Continent":"K35","ID":21891,"Name":"068","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21891","ServerKey":"pl181","X":583,"Y":379},{"Bonus":0,"Continent":"K43","ID":21892,"Name":"A0103","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21892","ServerKey":"pl181","X":355,"Y":489},{"Bonus":0,"Continent":"K64","ID":21894,"Name":"Ave Why!","PlayerID":698585370,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21894","ServerKey":"pl181","X":442,"Y":636},{"Bonus":0,"Continent":"K35","ID":21895,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21895","ServerKey":"pl181","X":552,"Y":360},{"Bonus":0,"Continent":"K64","ID":21896,"Name":"08. Wiocha","PlayerID":6910361,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21896","ServerKey":"pl181","X":435,"Y":630},{"Bonus":0,"Continent":"K56","ID":21897,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21897","ServerKey":"pl181","X":633,"Y":557},{"Bonus":0,"Continent":"K65","ID":21898,"Name":"mys","PlayerID":699828685,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21898","ServerKey":"pl181","X":563,"Y":635},{"Bonus":0,"Continent":"K46","ID":21899,"Name":"012.","PlayerID":849094609,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21899","ServerKey":"pl181","X":643,"Y":496},{"Bonus":0,"Continent":"K56","ID":21900,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21900","ServerKey":"pl181","X":642,"Y":545},{"Bonus":0,"Continent":"K64","ID":21901,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21901","ServerKey":"pl181","X":476,"Y":641},{"Bonus":0,"Continent":"K53","ID":21902,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21902","ServerKey":"pl181","X":364,"Y":550},{"Bonus":0,"Continent":"K46","ID":21903,"Name":"#033.518|499","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21903","ServerKey":"pl181","X":637,"Y":450},{"Bonus":5,"Continent":"K34","ID":21904,"Name":"0049","PlayerID":699431255,"Points":9923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21904","ServerKey":"pl181","X":443,"Y":365},{"Bonus":0,"Continent":"K56","ID":21905,"Name":"071","PlayerID":699351301,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21905","ServerKey":"pl181","X":643,"Y":532},{"Bonus":0,"Continent":"K64","ID":21906,"Name":"029","PlayerID":849084985,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21906","ServerKey":"pl181","X":451,"Y":640},{"Bonus":0,"Continent":"K43","ID":21907,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21907","ServerKey":"pl181","X":365,"Y":449},{"Bonus":0,"Continent":"K53","ID":21908,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21908","ServerKey":"pl181","X":353,"Y":518},{"Bonus":0,"Continent":"K64","ID":21909,"Name":"Ave Why!","PlayerID":698585370,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21909","ServerKey":"pl181","X":456,"Y":640},{"Bonus":0,"Continent":"K53","ID":21910,"Name":"Valhalla A7","PlayerID":849097002,"Points":4894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21910","ServerKey":"pl181","X":374,"Y":578},{"Bonus":2,"Continent":"K46","ID":21911,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21911","ServerKey":"pl181","X":603,"Y":400},{"Bonus":0,"Continent":"K64","ID":21912,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":5734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21912","ServerKey":"pl181","X":425,"Y":619},{"Bonus":0,"Continent":"K35","ID":21913,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":9665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21913","ServerKey":"pl181","X":533,"Y":354},{"Bonus":0,"Continent":"K35","ID":21914,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21914","ServerKey":"pl181","X":528,"Y":359},{"Bonus":0,"Continent":"K56","ID":21915,"Name":"023 - Sabadell","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21915","ServerKey":"pl181","X":643,"Y":514},{"Bonus":0,"Continent":"K64","ID":21916,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21916","ServerKey":"pl181","X":424,"Y":618},{"Bonus":0,"Continent":"K56","ID":21917,"Name":"014","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21917","ServerKey":"pl181","X":637,"Y":549},{"Bonus":0,"Continent":"K34","ID":21918,"Name":"VN Shaiapouf","PlayerID":699883079,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21918","ServerKey":"pl181","X":496,"Y":355},{"Bonus":0,"Continent":"K65","ID":21919,"Name":"SSJ 043","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21919","ServerKey":"pl181","X":514,"Y":644},{"Bonus":0,"Continent":"K34","ID":21920,"Name":"145","PlayerID":6920960,"Points":7226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21920","ServerKey":"pl181","X":450,"Y":361},{"Bonus":0,"Continent":"K43","ID":21921,"Name":"Wioska raj","PlayerID":6171569,"Points":2445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21921","ServerKey":"pl181","X":392,"Y":402},{"Bonus":0,"Continent":"K53","ID":21922,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21922","ServerKey":"pl181","X":352,"Y":508},{"Bonus":0,"Continent":"K65","ID":21923,"Name":"- 344 - RR","PlayerID":849018239,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21923","ServerKey":"pl181","X":595,"Y":610},{"Bonus":8,"Continent":"K64","ID":21924,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21924","ServerKey":"pl181","X":437,"Y":630},{"Bonus":0,"Continent":"K35","ID":21925,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21925","ServerKey":"pl181","X":533,"Y":387},{"Bonus":0,"Continent":"K66","ID":21926,"Name":"aAa Szlaban 4","PlayerID":699778867,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21926","ServerKey":"pl181","X":601,"Y":601},{"Bonus":0,"Continent":"K33","ID":21927,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21927","ServerKey":"pl181","X":391,"Y":398},{"Bonus":0,"Continent":"K34","ID":21928,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21928","ServerKey":"pl181","X":498,"Y":357},{"Bonus":2,"Continent":"K43","ID":21929,"Name":"Osada koczownikĂłw","PlayerID":699088529,"Points":8486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21929","ServerKey":"pl181","X":366,"Y":443},{"Bonus":0,"Continent":"K35","ID":21930,"Name":"A021","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21930","ServerKey":"pl181","X":587,"Y":382},{"Bonus":0,"Continent":"K64","ID":21931,"Name":"003","PlayerID":2289134,"Points":4325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21931","ServerKey":"pl181","X":427,"Y":626},{"Bonus":9,"Continent":"K65","ID":21932,"Name":"000000000","PlayerID":873575,"Points":10390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21932","ServerKey":"pl181","X":553,"Y":633},{"Bonus":0,"Continent":"K43","ID":21933,"Name":"--7. Zimna Dziura","PlayerID":698345556,"Points":8636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21933","ServerKey":"pl181","X":386,"Y":408},{"Bonus":0,"Continent":"K34","ID":21934,"Name":"0045","PlayerID":699431255,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21934","ServerKey":"pl181","X":445,"Y":364},{"Bonus":6,"Continent":"K46","ID":21935,"Name":"Wioska (010)","PlayerID":698232227,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21935","ServerKey":"pl181","X":627,"Y":434},{"Bonus":0,"Continent":"K36","ID":21936,"Name":"#008","PlayerID":7555180,"Points":9300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21936","ServerKey":"pl181","X":604,"Y":397},{"Bonus":0,"Continent":"K56","ID":21937,"Name":"078","PlayerID":699351301,"Points":9552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21937","ServerKey":"pl181","X":647,"Y":525},{"Bonus":0,"Continent":"K43","ID":21938,"Name":"Wioska 002","PlayerID":6171569,"Points":3194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21938","ServerKey":"pl181","X":389,"Y":401},{"Bonus":0,"Continent":"K65","ID":21939,"Name":"0561","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21939","ServerKey":"pl181","X":568,"Y":631},{"Bonus":0,"Continent":"K34","ID":21940,"Name":"0136","PlayerID":699431255,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21940","ServerKey":"pl181","X":437,"Y":371},{"Bonus":0,"Continent":"K43","ID":21941,"Name":"AB14 Kosowo","PlayerID":483145,"Points":4716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21941","ServerKey":"pl181","X":382,"Y":417},{"Bonus":0,"Continent":"K65","ID":21942,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21942","ServerKey":"pl181","X":507,"Y":643},{"Bonus":0,"Continent":"K34","ID":21943,"Name":"VN Machi Komacine","PlayerID":699883079,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21943","ServerKey":"pl181","X":457,"Y":362},{"Bonus":0,"Continent":"K43","ID":21945,"Name":"A0147","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21945","ServerKey":"pl181","X":353,"Y":497},{"Bonus":0,"Continent":"K56","ID":21946,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21946","ServerKey":"pl181","X":641,"Y":536},{"Bonus":0,"Continent":"K34","ID":21948,"Name":"c 086d","PlayerID":3909522,"Points":5611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21948","ServerKey":"pl181","X":413,"Y":381},{"Bonus":0,"Continent":"K35","ID":21949,"Name":"C004","PlayerID":699761749,"Points":7156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21949","ServerKey":"pl181","X":596,"Y":385},{"Bonus":0,"Continent":"K56","ID":21950,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21950","ServerKey":"pl181","X":641,"Y":544},{"Bonus":0,"Continent":"K65","ID":21951,"Name":"033","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21951","ServerKey":"pl181","X":585,"Y":618},{"Bonus":0,"Continent":"K35","ID":21952,"Name":"015 Wioska barbarzyƄska","PlayerID":699509239,"Points":5219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21952","ServerKey":"pl181","X":568,"Y":370},{"Bonus":6,"Continent":"K46","ID":21953,"Name":"013 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21953","ServerKey":"pl181","X":639,"Y":446},{"Bonus":0,"Continent":"K34","ID":21954,"Name":"Lecymy DUR","PlayerID":6169408,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21954","ServerKey":"pl181","X":444,"Y":366},{"Bonus":0,"Continent":"K43","ID":21955,"Name":"Fto mi moplik dupnoƂ gorole","PlayerID":699711723,"Points":6166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21955","ServerKey":"pl181","X":360,"Y":453},{"Bonus":0,"Continent":"K46","ID":21956,"Name":"Gattacka","PlayerID":699298370,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21956","ServerKey":"pl181","X":610,"Y":403},{"Bonus":0,"Continent":"K64","ID":21957,"Name":"002","PlayerID":848953066,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21957","ServerKey":"pl181","X":495,"Y":645},{"Bonus":0,"Continent":"K64","ID":21958,"Name":"Ulu-mulu","PlayerID":699697558,"Points":1531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21958","ServerKey":"pl181","X":416,"Y":619},{"Bonus":0,"Continent":"K43","ID":21959,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21959","ServerKey":"pl181","X":385,"Y":406},{"Bonus":0,"Continent":"K35","ID":21960,"Name":"168","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21960","ServerKey":"pl181","X":573,"Y":377},{"Bonus":0,"Continent":"K34","ID":21961,"Name":"c 010 Oaza 8","PlayerID":3909522,"Points":9294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21961","ServerKey":"pl181","X":414,"Y":380},{"Bonus":0,"Continent":"K53","ID":21962,"Name":"037","PlayerID":8908002,"Points":8358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21962","ServerKey":"pl181","X":371,"Y":566},{"Bonus":0,"Continent":"K56","ID":21963,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21963","ServerKey":"pl181","X":623,"Y":577},{"Bonus":0,"Continent":"K65","ID":21965,"Name":"~~025~~","PlayerID":7829201,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21965","ServerKey":"pl181","X":596,"Y":607},{"Bonus":0,"Continent":"K55","ID":21966,"Name":"cichy oszust","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21966","ServerKey":"pl181","X":588,"Y":577},{"Bonus":0,"Continent":"K34","ID":21967,"Name":"#0037 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21967","ServerKey":"pl181","X":466,"Y":358},{"Bonus":0,"Continent":"K34","ID":21968,"Name":"#0001 messi1996","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21968","ServerKey":"pl181","X":468,"Y":353},{"Bonus":0,"Continent":"K43","ID":21969,"Name":"A0104","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21969","ServerKey":"pl181","X":353,"Y":488},{"Bonus":0,"Continent":"K56","ID":21970,"Name":"jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21970","ServerKey":"pl181","X":627,"Y":566},{"Bonus":0,"Continent":"K35","ID":21971,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21971","ServerKey":"pl181","X":572,"Y":371},{"Bonus":0,"Continent":"K64","ID":21972,"Name":"050","PlayerID":699783765,"Points":4630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21972","ServerKey":"pl181","X":427,"Y":624},{"Bonus":0,"Continent":"K34","ID":21973,"Name":"BiaƂoƂęka","PlayerID":849027025,"Points":9446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21973","ServerKey":"pl181","X":402,"Y":388},{"Bonus":0,"Continent":"K64","ID":21974,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21974","ServerKey":"pl181","X":420,"Y":627},{"Bonus":0,"Continent":"K35","ID":21975,"Name":"030 031","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21975","ServerKey":"pl181","X":543,"Y":362},{"Bonus":0,"Continent":"K43","ID":21977,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21977","ServerKey":"pl181","X":398,"Y":400},{"Bonus":0,"Continent":"K46","ID":21978,"Name":"111","PlayerID":7085502,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21978","ServerKey":"pl181","X":628,"Y":424},{"Bonus":0,"Continent":"K46","ID":21979,"Name":"012 | PALESTINA","PlayerID":9228039,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21979","ServerKey":"pl181","X":633,"Y":438},{"Bonus":0,"Continent":"K65","ID":21980,"Name":"SSJ 061","PlayerID":699054373,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21980","ServerKey":"pl181","X":521,"Y":648},{"Bonus":0,"Continent":"K64","ID":21982,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21982","ServerKey":"pl181","X":496,"Y":646},{"Bonus":0,"Continent":"K64","ID":21983,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21983","ServerKey":"pl181","X":429,"Y":634},{"Bonus":0,"Continent":"K34","ID":21984,"Name":"c 001c","PlayerID":3909522,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21984","ServerKey":"pl181","X":409,"Y":382},{"Bonus":0,"Continent":"K43","ID":21985,"Name":"Mniejsze zƂo 0038","PlayerID":699794765,"Points":7496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21985","ServerKey":"pl181","X":361,"Y":468},{"Bonus":0,"Continent":"K53","ID":21986,"Name":"Iluminacja","PlayerID":849095992,"Points":4521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21986","ServerKey":"pl181","X":377,"Y":576},{"Bonus":0,"Continent":"K56","ID":21987,"Name":"B.008","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21987","ServerKey":"pl181","X":649,"Y":511},{"Bonus":0,"Continent":"K65","ID":21988,"Name":"[0017]","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21988","ServerKey":"pl181","X":555,"Y":632},{"Bonus":0,"Continent":"K64","ID":21989,"Name":"029","PlayerID":698650301,"Points":8473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21989","ServerKey":"pl181","X":470,"Y":645},{"Bonus":0,"Continent":"K46","ID":21990,"Name":"#037.520|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21990","ServerKey":"pl181","X":639,"Y":447},{"Bonus":0,"Continent":"K34","ID":21991,"Name":"Szlachcic","PlayerID":698388578,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21991","ServerKey":"pl181","X":433,"Y":370},{"Bonus":0,"Continent":"K64","ID":21992,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21992","ServerKey":"pl181","X":427,"Y":614},{"Bonus":5,"Continent":"K56","ID":21993,"Name":"014 Legio I Herculia (G)","PlayerID":699878150,"Points":9165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21993","ServerKey":"pl181","X":650,"Y":500},{"Bonus":0,"Continent":"K34","ID":21994,"Name":"105","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21994","ServerKey":"pl181","X":488,"Y":354},{"Bonus":0,"Continent":"K44","ID":21995,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21995","ServerKey":"pl181","X":405,"Y":402},{"Bonus":0,"Continent":"K65","ID":21996,"Name":"- 337 - RR","PlayerID":849018239,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21996","ServerKey":"pl181","X":595,"Y":612},{"Bonus":0,"Continent":"K34","ID":21997,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21997","ServerKey":"pl181","X":400,"Y":391},{"Bonus":0,"Continent":"K64","ID":21998,"Name":"010-Patryk","PlayerID":6910361,"Points":3491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21998","ServerKey":"pl181","X":431,"Y":628},{"Bonus":0,"Continent":"K35","ID":21999,"Name":"125","PlayerID":7271812,"Points":7039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=21999","ServerKey":"pl181","X":505,"Y":354},{"Bonus":0,"Continent":"K43","ID":22000,"Name":"--6. Ruska Rafineria","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22000","ServerKey":"pl181","X":388,"Y":411},{"Bonus":0,"Continent":"K34","ID":22001,"Name":"Szlachcic","PlayerID":698388578,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22001","ServerKey":"pl181","X":424,"Y":375},{"Bonus":0,"Continent":"K53","ID":22002,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":5452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22002","ServerKey":"pl181","X":371,"Y":575},{"Bonus":0,"Continent":"K35","ID":22003,"Name":"A008","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22003","ServerKey":"pl181","X":580,"Y":373},{"Bonus":0,"Continent":"K53","ID":22004,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22004","ServerKey":"pl181","X":357,"Y":528},{"Bonus":0,"Continent":"K53","ID":22005,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22005","ServerKey":"pl181","X":352,"Y":513},{"Bonus":0,"Continent":"K56","ID":22006,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22006","ServerKey":"pl181","X":632,"Y":557},{"Bonus":0,"Continent":"K53","ID":22007,"Name":"Pobozowisko","PlayerID":699513260,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22007","ServerKey":"pl181","X":375,"Y":581},{"Bonus":0,"Continent":"K46","ID":22008,"Name":"013 Legio I Isaura Sagitaria","PlayerID":699878150,"Points":4056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22008","ServerKey":"pl181","X":646,"Y":486},{"Bonus":0,"Continent":"K34","ID":22009,"Name":"#0020 kamilsan993","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22009","ServerKey":"pl181","X":469,"Y":357},{"Bonus":0,"Continent":"K56","ID":22010,"Name":"030 Sibir","PlayerID":699272880,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22010","ServerKey":"pl181","X":616,"Y":584},{"Bonus":0,"Continent":"K43","ID":22011,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22011","ServerKey":"pl181","X":390,"Y":416},{"Bonus":0,"Continent":"K35","ID":22012,"Name":"South K35","PlayerID":699146580,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22012","ServerKey":"pl181","X":555,"Y":366},{"Bonus":0,"Continent":"K43","ID":22013,"Name":"A0165","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22013","ServerKey":"pl181","X":352,"Y":491},{"Bonus":0,"Continent":"K34","ID":22014,"Name":"046...CENTRO","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22014","ServerKey":"pl181","X":455,"Y":357},{"Bonus":0,"Continent":"K43","ID":22015,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22015","ServerKey":"pl181","X":391,"Y":408},{"Bonus":0,"Continent":"K46","ID":22016,"Name":"Piwna 19","PlayerID":699812007,"Points":6330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22016","ServerKey":"pl181","X":631,"Y":435},{"Bonus":4,"Continent":"K35","ID":22017,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22017","ServerKey":"pl181","X":571,"Y":371},{"Bonus":0,"Continent":"K53","ID":22018,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22018","ServerKey":"pl181","X":396,"Y":599},{"Bonus":0,"Continent":"K56","ID":22019,"Name":"062","PlayerID":698786826,"Points":5194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22019","ServerKey":"pl181","X":618,"Y":591},{"Bonus":0,"Continent":"K65","ID":22021,"Name":"0026","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22021","ServerKey":"pl181","X":538,"Y":641},{"Bonus":0,"Continent":"K43","ID":22022,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22022","ServerKey":"pl181","X":362,"Y":452},{"Bonus":0,"Continent":"K46","ID":22023,"Name":"Jan Nord K","PlayerID":879782,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22023","ServerKey":"pl181","X":642,"Y":458},{"Bonus":0,"Continent":"K64","ID":22024,"Name":"Ulu-mulu","PlayerID":699697558,"Points":2535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22024","ServerKey":"pl181","X":413,"Y":620},{"Bonus":0,"Continent":"K65","ID":22025,"Name":"Daje w szyje .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22025","ServerKey":"pl181","X":578,"Y":627},{"Bonus":0,"Continent":"K34","ID":22026,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22026","ServerKey":"pl181","X":403,"Y":395},{"Bonus":0,"Continent":"K34","ID":22027,"Name":"Lecymy DUR","PlayerID":6169408,"Points":8369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22027","ServerKey":"pl181","X":435,"Y":368},{"Bonus":0,"Continent":"K64","ID":22028,"Name":"059","PlayerID":849084985,"Points":8478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22028","ServerKey":"pl181","X":438,"Y":632},{"Bonus":0,"Continent":"K34","ID":22029,"Name":"North Barba 015","PlayerID":699796330,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22029","ServerKey":"pl181","X":431,"Y":368},{"Bonus":0,"Continent":"K35","ID":22030,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22030","ServerKey":"pl181","X":563,"Y":366},{"Bonus":0,"Continent":"K65","ID":22031,"Name":"**Killarney","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22031","ServerKey":"pl181","X":575,"Y":629},{"Bonus":0,"Continent":"K63","ID":22032,"Name":"Pobozowisko","PlayerID":699513260,"Points":10945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22032","ServerKey":"pl181","X":393,"Y":601},{"Bonus":0,"Continent":"K64","ID":22033,"Name":"081","PlayerID":849084985,"Points":8372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22033","ServerKey":"pl181","X":450,"Y":638},{"Bonus":0,"Continent":"K53","ID":22034,"Name":"-003-","PlayerID":9253494,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22034","ServerKey":"pl181","X":358,"Y":544},{"Bonus":0,"Continent":"K65","ID":22035,"Name":"019. Winner","PlayerID":848928624,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22035","ServerKey":"pl181","X":503,"Y":648},{"Bonus":0,"Continent":"K65","ID":22036,"Name":"Wioska barbarzyƄska,","PlayerID":848995242,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22036","ServerKey":"pl181","X":582,"Y":621},{"Bonus":0,"Continent":"K46","ID":22037,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22037","ServerKey":"pl181","X":607,"Y":402},{"Bonus":9,"Continent":"K56","ID":22038,"Name":"monetki B","PlayerID":698768565,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22038","ServerKey":"pl181","X":621,"Y":577},{"Bonus":0,"Continent":"K55","ID":22039,"Name":"Eilonia","PlayerID":849066849,"Points":8759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22039","ServerKey":"pl181","X":516,"Y":570},{"Bonus":0,"Continent":"K34","ID":22040,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22040","ServerKey":"pl181","X":438,"Y":366},{"Bonus":0,"Continent":"K53","ID":22041,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22041","ServerKey":"pl181","X":353,"Y":520},{"Bonus":0,"Continent":"K36","ID":22043,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22043","ServerKey":"pl181","X":602,"Y":398},{"Bonus":0,"Continent":"K65","ID":22044,"Name":"Coruscant","PlayerID":699383121,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22044","ServerKey":"pl181","X":501,"Y":602},{"Bonus":0,"Continent":"K33","ID":22046,"Name":"c Agnesiara","PlayerID":3909522,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22046","ServerKey":"pl181","X":399,"Y":390},{"Bonus":0,"Continent":"K35","ID":22047,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22047","ServerKey":"pl181","X":557,"Y":367},{"Bonus":0,"Continent":"K43","ID":22048,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":4096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22048","ServerKey":"pl181","X":362,"Y":442},{"Bonus":0,"Continent":"K53","ID":22049,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22049","ServerKey":"pl181","X":358,"Y":560},{"Bonus":0,"Continent":"K34","ID":22050,"Name":"c 004 Wioska","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22050","ServerKey":"pl181","X":413,"Y":387},{"Bonus":0,"Continent":"K43","ID":22051,"Name":"Mniejsze zƂo 0062","PlayerID":699794765,"Points":5641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22051","ServerKey":"pl181","X":362,"Y":460},{"Bonus":0,"Continent":"K35","ID":22052,"Name":"126","PlayerID":7271812,"Points":6883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22052","ServerKey":"pl181","X":508,"Y":353},{"Bonus":0,"Continent":"K43","ID":22053,"Name":"#004 Zenit WƂadca ƚwiata","PlayerID":849096215,"Points":2052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22053","ServerKey":"pl181","X":365,"Y":440},{"Bonus":0,"Continent":"K46","ID":22054,"Name":"Jan 04 K","PlayerID":879782,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22054","ServerKey":"pl181","X":639,"Y":457},{"Bonus":0,"Continent":"K56","ID":22055,"Name":"B.045","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22055","ServerKey":"pl181","X":644,"Y":520},{"Bonus":0,"Continent":"K65","ID":22056,"Name":"~~039~~","PlayerID":849018239,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22056","ServerKey":"pl181","X":596,"Y":608},{"Bonus":0,"Continent":"K35","ID":22057,"Name":"A012","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22057","ServerKey":"pl181","X":578,"Y":377},{"Bonus":0,"Continent":"K34","ID":22058,"Name":"Amsterdam","PlayerID":699244334,"Points":3700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22058","ServerKey":"pl181","X":492,"Y":351},{"Bonus":0,"Continent":"K53","ID":22059,"Name":"008 181","PlayerID":698807570,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22059","ServerKey":"pl181","X":356,"Y":500},{"Bonus":0,"Continent":"K64","ID":22060,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22060","ServerKey":"pl181","X":415,"Y":621},{"Bonus":0,"Continent":"K54","ID":22061,"Name":"Nowa Nadzieja 4","PlayerID":699383121,"Points":7307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22061","ServerKey":"pl181","X":497,"Y":591},{"Bonus":0,"Continent":"K53","ID":22062,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":7821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22062","ServerKey":"pl181","X":368,"Y":567},{"Bonus":0,"Continent":"K63","ID":22063,"Name":"B006","PlayerID":699383279,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22063","ServerKey":"pl181","X":399,"Y":605},{"Bonus":0,"Continent":"K53","ID":22064,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22064","ServerKey":"pl181","X":369,"Y":567},{"Bonus":0,"Continent":"K43","ID":22065,"Name":"Maszlug kolonia","PlayerID":848977649,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22065","ServerKey":"pl181","X":367,"Y":432},{"Bonus":0,"Continent":"K53","ID":22066,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22066","ServerKey":"pl181","X":359,"Y":548},{"Bonus":9,"Continent":"K35","ID":22067,"Name":"027","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22067","ServerKey":"pl181","X":579,"Y":380},{"Bonus":0,"Continent":"K53","ID":22068,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22068","ServerKey":"pl181","X":387,"Y":596},{"Bonus":0,"Continent":"K65","ID":22069,"Name":"Mobil","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22069","ServerKey":"pl181","X":539,"Y":643},{"Bonus":0,"Continent":"K35","ID":22070,"Name":"006 Robię Papiery","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22070","ServerKey":"pl181","X":545,"Y":363},{"Bonus":0,"Continent":"K46","ID":22071,"Name":"Rohan","PlayerID":699298370,"Points":7450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22071","ServerKey":"pl181","X":612,"Y":407},{"Bonus":0,"Continent":"K43","ID":22073,"Name":"MELISKA","PlayerID":699794765,"Points":9330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22073","ServerKey":"pl181","X":357,"Y":466},{"Bonus":0,"Continent":"K35","ID":22074,"Name":"008 Sprzątana Ɓazienka","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22074","ServerKey":"pl181","X":539,"Y":362},{"Bonus":0,"Continent":"K53","ID":22075,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22075","ServerKey":"pl181","X":367,"Y":565},{"Bonus":0,"Continent":"K33","ID":22077,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22077","ServerKey":"pl181","X":396,"Y":397},{"Bonus":0,"Continent":"K53","ID":22078,"Name":"!!off 100 %","PlayerID":849012521,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22078","ServerKey":"pl181","X":364,"Y":555},{"Bonus":0,"Continent":"K64","ID":22079,"Name":"Ulu-mulu","PlayerID":699697558,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22079","ServerKey":"pl181","X":414,"Y":617},{"Bonus":0,"Continent":"K35","ID":22080,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22080","ServerKey":"pl181","X":553,"Y":363},{"Bonus":0,"Continent":"K64","ID":22081,"Name":"|A| Nightcross","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22081","ServerKey":"pl181","X":480,"Y":649},{"Bonus":0,"Continent":"K64","ID":22082,"Name":"009.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22082","ServerKey":"pl181","X":485,"Y":647},{"Bonus":0,"Continent":"K34","ID":22083,"Name":"Aleksandria","PlayerID":699244334,"Points":4167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22083","ServerKey":"pl181","X":493,"Y":353},{"Bonus":0,"Continent":"K56","ID":22085,"Name":"023 Alta","PlayerID":699272880,"Points":10172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22085","ServerKey":"pl181","X":617,"Y":585},{"Bonus":6,"Continent":"K34","ID":22086,"Name":"North PataTaj","PlayerID":699796330,"Points":9923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22086","ServerKey":"pl181","X":431,"Y":369},{"Bonus":0,"Continent":"K46","ID":22087,"Name":"037.","PlayerID":849094609,"Points":7385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22087","ServerKey":"pl181","X":640,"Y":479},{"Bonus":0,"Continent":"K44","ID":22088,"Name":"-x4","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22088","ServerKey":"pl181","X":499,"Y":499},{"Bonus":0,"Continent":"K53","ID":22089,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22089","ServerKey":"pl181","X":374,"Y":581},{"Bonus":0,"Continent":"K43","ID":22090,"Name":"od biedy do potęgi 3","PlayerID":849094603,"Points":3341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22090","ServerKey":"pl181","X":366,"Y":439},{"Bonus":0,"Continent":"K34","ID":22091,"Name":"0048","PlayerID":699431255,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22091","ServerKey":"pl181","X":451,"Y":363},{"Bonus":0,"Continent":"K65","ID":22092,"Name":"SSJ 045","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22092","ServerKey":"pl181","X":514,"Y":646},{"Bonus":0,"Continent":"K34","ID":22093,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22093","ServerKey":"pl181","X":423,"Y":371},{"Bonus":0,"Continent":"K34","ID":22094,"Name":"120","PlayerID":7271812,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22094","ServerKey":"pl181","X":475,"Y":353},{"Bonus":0,"Continent":"K43","ID":22095,"Name":"Mniejsze zƂo 0047","PlayerID":699794765,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22095","ServerKey":"pl181","X":361,"Y":463},{"Bonus":0,"Continent":"K64","ID":22096,"Name":"Ulu-mulu","PlayerID":699697558,"Points":2788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22096","ServerKey":"pl181","X":412,"Y":620},{"Bonus":0,"Continent":"K53","ID":22097,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":4564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22097","ServerKey":"pl181","X":373,"Y":577},{"Bonus":0,"Continent":"K56","ID":22098,"Name":"022","PlayerID":698786826,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22098","ServerKey":"pl181","X":615,"Y":592},{"Bonus":0,"Continent":"K34","ID":22099,"Name":"Konfederacja +","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22099","ServerKey":"pl181","X":449,"Y":369},{"Bonus":0,"Continent":"K35","ID":22100,"Name":"064 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22100","ServerKey":"pl181","X":537,"Y":359},{"Bonus":0,"Continent":"K53","ID":22102,"Name":"Opactwo","PlayerID":8607734,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22102","ServerKey":"pl181","X":378,"Y":582},{"Bonus":0,"Continent":"K64","ID":22104,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22104","ServerKey":"pl181","X":425,"Y":622},{"Bonus":0,"Continent":"K35","ID":22105,"Name":"065 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22105","ServerKey":"pl181","X":544,"Y":357},{"Bonus":0,"Continent":"K35","ID":22106,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22106","ServerKey":"pl181","X":564,"Y":366},{"Bonus":0,"Continent":"K35","ID":22107,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22107","ServerKey":"pl181","X":560,"Y":369},{"Bonus":0,"Continent":"K64","ID":22108,"Name":"A008","PlayerID":699383279,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22108","ServerKey":"pl181","X":475,"Y":641},{"Bonus":0,"Continent":"K56","ID":22109,"Name":"B022","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22109","ServerKey":"pl181","X":646,"Y":502},{"Bonus":0,"Continent":"K53","ID":22110,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22110","ServerKey":"pl181","X":358,"Y":533},{"Bonus":0,"Continent":"K65","ID":22111,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22111","ServerKey":"pl181","X":523,"Y":647},{"Bonus":0,"Continent":"K53","ID":22112,"Name":"47. Wioska 47","PlayerID":849091769,"Points":7720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22112","ServerKey":"pl181","X":363,"Y":549},{"Bonus":0,"Continent":"K66","ID":22113,"Name":"~~047~~","PlayerID":7829201,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22113","ServerKey":"pl181","X":600,"Y":610},{"Bonus":0,"Continent":"K53","ID":22114,"Name":"Herrmein","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22114","ServerKey":"pl181","X":371,"Y":572},{"Bonus":0,"Continent":"K53","ID":22115,"Name":"Pobozowisko","PlayerID":699513260,"Points":7890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22115","ServerKey":"pl181","X":392,"Y":594},{"Bonus":0,"Continent":"K65","ID":22116,"Name":"0562","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22116","ServerKey":"pl181","X":567,"Y":631},{"Bonus":0,"Continent":"K56","ID":22117,"Name":"B.010","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22117","ServerKey":"pl181","X":648,"Y":509},{"Bonus":0,"Continent":"K43","ID":22118,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":7882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22118","ServerKey":"pl181","X":364,"Y":442},{"Bonus":0,"Continent":"K53","ID":22119,"Name":"080","PlayerID":6853693,"Points":5375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22119","ServerKey":"pl181","X":358,"Y":536},{"Bonus":0,"Continent":"K46","ID":22120,"Name":"Gattacka","PlayerID":699298370,"Points":11422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22120","ServerKey":"pl181","X":620,"Y":414},{"Bonus":0,"Continent":"K53","ID":22121,"Name":"Pobozowisko","PlayerID":699513260,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22121","ServerKey":"pl181","X":395,"Y":597},{"Bonus":0,"Continent":"K43","ID":22123,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22123","ServerKey":"pl181","X":363,"Y":451},{"Bonus":0,"Continent":"K34","ID":22124,"Name":"006","PlayerID":699883079,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22124","ServerKey":"pl181","X":462,"Y":360},{"Bonus":0,"Continent":"K46","ID":22125,"Name":"B012","PlayerID":9314079,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22125","ServerKey":"pl181","X":643,"Y":490},{"Bonus":0,"Continent":"K65","ID":22126,"Name":"=002-00=Szlachcic=@#-4-","PlayerID":699287032,"Points":6344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22126","ServerKey":"pl181","X":564,"Y":634},{"Bonus":0,"Continent":"K64","ID":22127,"Name":"074","PlayerID":849084985,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22127","ServerKey":"pl181","X":438,"Y":635},{"Bonus":0,"Continent":"K53","ID":22128,"Name":"087","PlayerID":6853693,"Points":4016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22128","ServerKey":"pl181","X":356,"Y":540},{"Bonus":0,"Continent":"K34","ID":22129,"Name":"North Barba 036","PlayerID":699796330,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22129","ServerKey":"pl181","X":433,"Y":367},{"Bonus":0,"Continent":"K56","ID":22130,"Name":"023","PlayerID":698786826,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22130","ServerKey":"pl181","X":611,"Y":596},{"Bonus":0,"Continent":"K34","ID":22131,"Name":"Hieracium pilosella","PlayerID":699883079,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22131","ServerKey":"pl181","X":496,"Y":352},{"Bonus":8,"Continent":"K35","ID":22132,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22132","ServerKey":"pl181","X":557,"Y":363},{"Bonus":0,"Continent":"K43","ID":22133,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22133","ServerKey":"pl181","X":362,"Y":451},{"Bonus":2,"Continent":"K53","ID":22134,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22134","ServerKey":"pl181","X":354,"Y":525},{"Bonus":0,"Continent":"K46","ID":22135,"Name":"113","PlayerID":7085502,"Points":11215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22135","ServerKey":"pl181","X":624,"Y":416},{"Bonus":0,"Continent":"K65","ID":22136,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":7910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22136","ServerKey":"pl181","X":501,"Y":647},{"Bonus":0,"Continent":"K46","ID":22137,"Name":"B004","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22137","ServerKey":"pl181","X":647,"Y":493},{"Bonus":0,"Continent":"K56","ID":22138,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22138","ServerKey":"pl181","X":631,"Y":569},{"Bonus":0,"Continent":"K65","ID":22139,"Name":"SSJ 057","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22139","ServerKey":"pl181","X":514,"Y":649},{"Bonus":0,"Continent":"K65","ID":22140,"Name":"- 336 - RR","PlayerID":849018239,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22140","ServerKey":"pl181","X":596,"Y":613},{"Bonus":0,"Continent":"K65","ID":22141,"Name":"**Unlikely","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22141","ServerKey":"pl181","X":573,"Y":629},{"Bonus":0,"Continent":"K56","ID":22142,"Name":"005","PlayerID":698702991,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22142","ServerKey":"pl181","X":637,"Y":557},{"Bonus":0,"Continent":"K34","ID":22143,"Name":"North Barba 005","PlayerID":699796330,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22143","ServerKey":"pl181","X":430,"Y":368},{"Bonus":0,"Continent":"K65","ID":22144,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22144","ServerKey":"pl181","X":511,"Y":648},{"Bonus":0,"Continent":"K46","ID":22145,"Name":"004. Nightmare","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22145","ServerKey":"pl181","X":632,"Y":438},{"Bonus":0,"Continent":"K35","ID":22146,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22146","ServerKey":"pl181","X":569,"Y":373},{"Bonus":0,"Continent":"K34","ID":22147,"Name":"027","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22147","ServerKey":"pl181","X":478,"Y":352},{"Bonus":0,"Continent":"K54","ID":22148,"Name":"Brat447","PlayerID":699262350,"Points":10779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22148","ServerKey":"pl181","X":461,"Y":505},{"Bonus":0,"Continent":"K64","ID":22149,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22149","ServerKey":"pl181","X":476,"Y":645},{"Bonus":0,"Continent":"K34","ID":22150,"Name":"c 088d","PlayerID":3909522,"Points":5606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22150","ServerKey":"pl181","X":412,"Y":381},{"Bonus":0,"Continent":"K34","ID":22151,"Name":"dawidek","PlayerID":849027025,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22151","ServerKey":"pl181","X":401,"Y":387},{"Bonus":0,"Continent":"K43","ID":22153,"Name":"Westcoast.103","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22153","ServerKey":"pl181","X":368,"Y":429},{"Bonus":0,"Continent":"K33","ID":22155,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22155","ServerKey":"pl181","X":396,"Y":394},{"Bonus":0,"Continent":"K35","ID":22156,"Name":"133 DaSilva2402","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22156","ServerKey":"pl181","X":518,"Y":351},{"Bonus":0,"Continent":"K64","ID":22157,"Name":"Mexico3","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22157","ServerKey":"pl181","X":458,"Y":643},{"Bonus":0,"Continent":"K46","ID":22159,"Name":"012. Ebe ebe","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22159","ServerKey":"pl181","X":634,"Y":443},{"Bonus":0,"Continent":"K64","ID":22161,"Name":"|A| Heartcall..","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22161","ServerKey":"pl181","X":490,"Y":647},{"Bonus":0,"Continent":"K65","ID":22162,"Name":"**Joy","PlayerID":699443920,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22162","ServerKey":"pl181","X":571,"Y":631},{"Bonus":0,"Continent":"K34","ID":22163,"Name":"K34 - [118] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22163","ServerKey":"pl181","X":446,"Y":360},{"Bonus":0,"Continent":"K35","ID":22164,"Name":"Lord Lord Franek .#201","PlayerID":698420691,"Points":9143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22164","ServerKey":"pl181","X":500,"Y":352},{"Bonus":0,"Continent":"K43","ID":22165,"Name":"A0166","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22165","ServerKey":"pl181","X":354,"Y":490},{"Bonus":0,"Continent":"K56","ID":22166,"Name":"jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22166","ServerKey":"pl181","X":634,"Y":564},{"Bonus":4,"Continent":"K64","ID":22167,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22167","ServerKey":"pl181","X":452,"Y":642},{"Bonus":0,"Continent":"K35","ID":22169,"Name":"A011","PlayerID":699761749,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22169","ServerKey":"pl181","X":587,"Y":386},{"Bonus":0,"Continent":"K46","ID":22170,"Name":"0055","PlayerID":699429153,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22170","ServerKey":"pl181","X":617,"Y":412},{"Bonus":0,"Continent":"K34","ID":22171,"Name":"c Tre1","PlayerID":3909522,"Points":7210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22171","ServerKey":"pl181","X":400,"Y":392},{"Bonus":0,"Continent":"K34","ID":22173,"Name":"Lecymy DUR","PlayerID":6169408,"Points":4555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22173","ServerKey":"pl181","X":442,"Y":362},{"Bonus":0,"Continent":"K46","ID":22174,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22174","ServerKey":"pl181","X":630,"Y":437},{"Bonus":0,"Continent":"K63","ID":22175,"Name":"Pobozowisko","PlayerID":699513260,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22175","ServerKey":"pl181","X":399,"Y":606},{"Bonus":0,"Continent":"K43","ID":22178,"Name":"Mniejsze zƂo 0048","PlayerID":699794765,"Points":6450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22178","ServerKey":"pl181","X":357,"Y":462},{"Bonus":0,"Continent":"K46","ID":22180,"Name":"126. Agary","PlayerID":8337151,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22180","ServerKey":"pl181","X":630,"Y":424},{"Bonus":0,"Continent":"K43","ID":22181,"Name":"A0206","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22181","ServerKey":"pl181","X":357,"Y":481},{"Bonus":0,"Continent":"K46","ID":22182,"Name":"059 Koganei","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22182","ServerKey":"pl181","X":640,"Y":466},{"Bonus":0,"Continent":"K46","ID":22183,"Name":"B015","PlayerID":9314079,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22183","ServerKey":"pl181","X":647,"Y":494},{"Bonus":0,"Continent":"K35","ID":22184,"Name":"034.","PlayerID":699799629,"Points":2590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22184","ServerKey":"pl181","X":577,"Y":374},{"Bonus":0,"Continent":"K64","ID":22186,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":6160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22186","ServerKey":"pl181","X":424,"Y":619},{"Bonus":0,"Continent":"K36","ID":22187,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22187","ServerKey":"pl181","X":609,"Y":394},{"Bonus":0,"Continent":"K46","ID":22188,"Name":"Konfederacja ?","PlayerID":849094147,"Points":7521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22188","ServerKey":"pl181","X":613,"Y":401},{"Bonus":0,"Continent":"K46","ID":22189,"Name":"015 Szare Ć»ycie","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22189","ServerKey":"pl181","X":617,"Y":408},{"Bonus":0,"Continent":"K65","ID":22190,"Name":"nic","PlayerID":699828685,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22190","ServerKey":"pl181","X":573,"Y":624},{"Bonus":0,"Continent":"K35","ID":22191,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22191","ServerKey":"pl181","X":556,"Y":367},{"Bonus":8,"Continent":"K35","ID":22192,"Name":"xOsada koczownikĂłw","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22192","ServerKey":"pl181","X":530,"Y":355},{"Bonus":0,"Continent":"K64","ID":22193,"Name":"019.","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22193","ServerKey":"pl181","X":486,"Y":622},{"Bonus":0,"Continent":"K64","ID":22194,"Name":"Pobozowisko","PlayerID":699513260,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22194","ServerKey":"pl181","X":403,"Y":612},{"Bonus":0,"Continent":"K35","ID":22195,"Name":"Lord Lord Franek .#223","PlayerID":698420691,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22195","ServerKey":"pl181","X":524,"Y":355},{"Bonus":0,"Continent":"K64","ID":22196,"Name":"Pobozowisko","PlayerID":699513260,"Points":10920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22196","ServerKey":"pl181","X":405,"Y":611},{"Bonus":0,"Continent":"K56","ID":22197,"Name":"050","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22197","ServerKey":"pl181","X":646,"Y":533},{"Bonus":0,"Continent":"K56","ID":22198,"Name":"017","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22198","ServerKey":"pl181","X":639,"Y":552},{"Bonus":0,"Continent":"K34","ID":22199,"Name":"c 005 Wioska","PlayerID":3909522,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22199","ServerKey":"pl181","X":403,"Y":388},{"Bonus":8,"Continent":"K43","ID":22200,"Name":"A0058","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22200","ServerKey":"pl181","X":350,"Y":492},{"Bonus":0,"Continent":"K65","ID":22202,"Name":"kathare","PlayerID":873575,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22202","ServerKey":"pl181","X":552,"Y":638},{"Bonus":0,"Continent":"K56","ID":22203,"Name":"016","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22203","ServerKey":"pl181","X":639,"Y":546},{"Bonus":0,"Continent":"K64","ID":22204,"Name":"Ulu-mulu","PlayerID":699697558,"Points":5660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22204","ServerKey":"pl181","X":411,"Y":618},{"Bonus":0,"Continent":"K64","ID":22206,"Name":"Ave Why!","PlayerID":698585370,"Points":6992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22206","ServerKey":"pl181","X":455,"Y":637},{"Bonus":0,"Continent":"K53","ID":22207,"Name":"Pobozowisko","PlayerID":699513260,"Points":3719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22207","ServerKey":"pl181","X":394,"Y":598},{"Bonus":0,"Continent":"K35","ID":22208,"Name":"x=ALFA=","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22208","ServerKey":"pl181","X":527,"Y":357},{"Bonus":0,"Continent":"K33","ID":22209,"Name":"A-022","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22209","ServerKey":"pl181","X":392,"Y":396},{"Bonus":0,"Continent":"K65","ID":22210,"Name":"0563","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22210","ServerKey":"pl181","X":567,"Y":630},{"Bonus":0,"Continent":"K56","ID":22211,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22211","ServerKey":"pl181","X":624,"Y":578},{"Bonus":0,"Continent":"K56","ID":22212,"Name":"B.046","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22212","ServerKey":"pl181","X":649,"Y":515},{"Bonus":0,"Continent":"K56","ID":22213,"Name":"120","PlayerID":7038651,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22213","ServerKey":"pl181","X":644,"Y":536},{"Bonus":0,"Continent":"K43","ID":22214,"Name":"AA05 Portugalia","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22214","ServerKey":"pl181","X":380,"Y":416},{"Bonus":2,"Continent":"K43","ID":22215,"Name":"Maszlug kolonia II","PlayerID":848977649,"Points":9137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22215","ServerKey":"pl181","X":368,"Y":435},{"Bonus":0,"Continent":"K46","ID":22216,"Name":"#.02 Baza Gliwice","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22216","ServerKey":"pl181","X":652,"Y":480},{"Bonus":0,"Continent":"K53","ID":22217,"Name":"-026-","PlayerID":699665152,"Points":7590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22217","ServerKey":"pl181","X":388,"Y":595},{"Bonus":0,"Continent":"K56","ID":22219,"Name":"067","PlayerID":699351301,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22219","ServerKey":"pl181","X":647,"Y":529},{"Bonus":0,"Continent":"K43","ID":22220,"Name":"Brat447","PlayerID":699262350,"Points":10709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22220","ServerKey":"pl181","X":354,"Y":477},{"Bonus":0,"Continent":"K43","ID":22221,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":8052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22221","ServerKey":"pl181","X":366,"Y":444},{"Bonus":0,"Continent":"K35","ID":22223,"Name":"yyyy","PlayerID":699883079,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22223","ServerKey":"pl181","X":501,"Y":350},{"Bonus":0,"Continent":"K65","ID":22224,"Name":"- 236 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22224","ServerKey":"pl181","X":590,"Y":619},{"Bonus":6,"Continent":"K43","ID":22225,"Name":"--2. Generalne Gubernatorstwo","PlayerID":698345556,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22225","ServerKey":"pl181","X":385,"Y":409},{"Bonus":0,"Continent":"K64","ID":22226,"Name":"Ave Why!","PlayerID":698585370,"Points":8610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22226","ServerKey":"pl181","X":440,"Y":637},{"Bonus":6,"Continent":"K63","ID":22227,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22227","ServerKey":"pl181","X":397,"Y":608},{"Bonus":0,"Continent":"K34","ID":22228,"Name":"Lecymy DUR","PlayerID":6169408,"Points":1628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22228","ServerKey":"pl181","X":441,"Y":367},{"Bonus":0,"Continent":"K56","ID":22229,"Name":"B.067","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22229","ServerKey":"pl181","X":643,"Y":508},{"Bonus":0,"Continent":"K64","ID":22230,"Name":"Barbara 002","PlayerID":699730998,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22230","ServerKey":"pl181","X":419,"Y":623},{"Bonus":0,"Continent":"K46","ID":22231,"Name":"035 | PALESTINA","PlayerID":9228039,"Points":5019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22231","ServerKey":"pl181","X":635,"Y":434},{"Bonus":0,"Continent":"K53","ID":22232,"Name":".1.","PlayerID":849012521,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22232","ServerKey":"pl181","X":365,"Y":555},{"Bonus":0,"Continent":"K43","ID":22233,"Name":"Maszlug kolonia XIV","PlayerID":848977649,"Points":5630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22233","ServerKey":"pl181","X":373,"Y":433},{"Bonus":0,"Continent":"K46","ID":22234,"Name":"037 Nakagawa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22234","ServerKey":"pl181","X":643,"Y":480},{"Bonus":0,"Continent":"K53","ID":22235,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22235","ServerKey":"pl181","X":382,"Y":593},{"Bonus":0,"Continent":"K34","ID":22236,"Name":"028","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22236","ServerKey":"pl181","X":484,"Y":352},{"Bonus":0,"Continent":"K56","ID":22237,"Name":"024","PlayerID":698786826,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22237","ServerKey":"pl181","X":611,"Y":597},{"Bonus":0,"Continent":"K43","ID":22238,"Name":"066","PlayerID":6258092,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22238","ServerKey":"pl181","X":354,"Y":468},{"Bonus":0,"Continent":"K43","ID":22239,"Name":"Maszlug kolonia III","PlayerID":848977649,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22239","ServerKey":"pl181","X":366,"Y":431},{"Bonus":0,"Continent":"K43","ID":22240,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22240","ServerKey":"pl181","X":357,"Y":454},{"Bonus":0,"Continent":"K34","ID":22241,"Name":"c 063d","PlayerID":3909522,"Points":6896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22241","ServerKey":"pl181","X":415,"Y":380},{"Bonus":0,"Continent":"K64","ID":22243,"Name":"B03 radzik354","PlayerID":849037407,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22243","ServerKey":"pl181","X":466,"Y":645},{"Bonus":0,"Continent":"K53","ID":22244,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22244","ServerKey":"pl181","X":354,"Y":509},{"Bonus":0,"Continent":"K35","ID":22245,"Name":"216","PlayerID":849064752,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22245","ServerKey":"pl181","X":573,"Y":386},{"Bonus":0,"Continent":"K56","ID":22246,"Name":"073","PlayerID":699351301,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22246","ServerKey":"pl181","X":643,"Y":528},{"Bonus":0,"Continent":"K56","ID":22247,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22247","ServerKey":"pl181","X":639,"Y":551},{"Bonus":0,"Continent":"K34","ID":22248,"Name":"Szlachcic","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22248","ServerKey":"pl181","X":406,"Y":387},{"Bonus":0,"Continent":"K65","ID":22249,"Name":"kathare","PlayerID":873575,"Points":9910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22249","ServerKey":"pl181","X":554,"Y":637},{"Bonus":0,"Continent":"K35","ID":22251,"Name":"xkikutx","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22251","ServerKey":"pl181","X":507,"Y":350},{"Bonus":0,"Continent":"K64","ID":22252,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6948793,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22252","ServerKey":"pl181","X":493,"Y":636},{"Bonus":0,"Continent":"K53","ID":22253,"Name":"zMakadi Bay","PlayerID":699849210,"Points":10077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22253","ServerKey":"pl181","X":391,"Y":596},{"Bonus":0,"Continent":"K53","ID":22254,"Name":"034","PlayerID":8908002,"Points":8136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22254","ServerKey":"pl181","X":359,"Y":544},{"Bonus":0,"Continent":"K64","ID":22255,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":4968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22255","ServerKey":"pl181","X":421,"Y":624},{"Bonus":0,"Continent":"K43","ID":22256,"Name":"A0160","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22256","ServerKey":"pl181","X":356,"Y":495},{"Bonus":0,"Continent":"K34","ID":22257,"Name":"Ahmadabad","PlayerID":699244334,"Points":4676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22257","ServerKey":"pl181","X":492,"Y":353},{"Bonus":0,"Continent":"K64","ID":22258,"Name":"045","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22258","ServerKey":"pl181","X":441,"Y":634},{"Bonus":0,"Continent":"K64","ID":22259,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22259","ServerKey":"pl181","X":468,"Y":646},{"Bonus":0,"Continent":"K34","ID":22260,"Name":"0040","PlayerID":699431255,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22260","ServerKey":"pl181","X":451,"Y":362},{"Bonus":0,"Continent":"K46","ID":22261,"Name":"0030","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22261","ServerKey":"pl181","X":624,"Y":420},{"Bonus":0,"Continent":"K43","ID":22262,"Name":"Maszlug kolonia V","PlayerID":848977649,"Points":9103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22262","ServerKey":"pl181","X":368,"Y":432},{"Bonus":0,"Continent":"K34","ID":22263,"Name":"0037","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22263","ServerKey":"pl181","X":450,"Y":364},{"Bonus":0,"Continent":"K65","ID":22264,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22264","ServerKey":"pl181","X":562,"Y":634},{"Bonus":0,"Continent":"K43","ID":22265,"Name":"Wioska barbarzyƄska","PlayerID":699753640,"Points":2429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22265","ServerKey":"pl181","X":370,"Y":428},{"Bonus":0,"Continent":"K46","ID":22266,"Name":"0047","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22266","ServerKey":"pl181","X":616,"Y":410},{"Bonus":0,"Continent":"K43","ID":22267,"Name":"#003 Kocham Zenita","PlayerID":849096215,"Points":3889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22267","ServerKey":"pl181","X":365,"Y":441},{"Bonus":0,"Continent":"K46","ID":22268,"Name":"Tomall78","PlayerID":699524891,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22268","ServerKey":"pl181","X":633,"Y":430},{"Bonus":0,"Continent":"K64","ID":22269,"Name":"|X| Xenxa","PlayerID":698147372,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22269","ServerKey":"pl181","X":469,"Y":646},{"Bonus":0,"Continent":"K36","ID":22270,"Name":"Gattacka","PlayerID":699298370,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22270","ServerKey":"pl181","X":604,"Y":395},{"Bonus":0,"Continent":"K53","ID":22271,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":8084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22271","ServerKey":"pl181","X":366,"Y":569},{"Bonus":8,"Continent":"K53","ID":22272,"Name":"020","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22272","ServerKey":"pl181","X":359,"Y":526},{"Bonus":0,"Continent":"K64","ID":22274,"Name":"Beka z why","PlayerID":6180190,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22274","ServerKey":"pl181","X":488,"Y":646},{"Bonus":0,"Continent":"K65","ID":22275,"Name":"0378","PlayerID":698659980,"Points":7658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22275","ServerKey":"pl181","X":581,"Y":625},{"Bonus":0,"Continent":"K63","ID":22276,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22276","ServerKey":"pl181","X":399,"Y":609},{"Bonus":0,"Continent":"K43","ID":22277,"Name":"108","PlayerID":6258092,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22277","ServerKey":"pl181","X":354,"Y":464},{"Bonus":0,"Continent":"K44","ID":22278,"Name":"Pf Konfederacja +","PlayerID":848915730,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22278","ServerKey":"pl181","X":494,"Y":497},{"Bonus":0,"Continent":"K53","ID":22279,"Name":"015 181","PlayerID":698807570,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22279","ServerKey":"pl181","X":354,"Y":502},{"Bonus":0,"Continent":"K64","ID":22280,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22280","ServerKey":"pl181","X":482,"Y":645},{"Bonus":0,"Continent":"K65","ID":22281,"Name":"026. Oranje","PlayerID":848928624,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22281","ServerKey":"pl181","X":502,"Y":649},{"Bonus":0,"Continent":"K43","ID":22282,"Name":"++002++","PlayerID":698884287,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22282","ServerKey":"pl181","X":382,"Y":414},{"Bonus":0,"Continent":"K65","ID":22283,"Name":"0391","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22283","ServerKey":"pl181","X":588,"Y":614},{"Bonus":0,"Continent":"K65","ID":22284,"Name":"Sony 911","PlayerID":1415009,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22284","ServerKey":"pl181","X":575,"Y":612},{"Bonus":0,"Continent":"K64","ID":22285,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22285","ServerKey":"pl181","X":416,"Y":625},{"Bonus":0,"Continent":"K43","ID":22286,"Name":"A0135","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22286","ServerKey":"pl181","X":353,"Y":489},{"Bonus":0,"Continent":"K43","ID":22287,"Name":"Za oknem","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22287","ServerKey":"pl181","X":355,"Y":493},{"Bonus":0,"Continent":"K64","ID":22288,"Name":"Wioska 2","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22288","ServerKey":"pl181","X":468,"Y":641},{"Bonus":0,"Continent":"K46","ID":22289,"Name":"0139","PlayerID":698416970,"Points":7031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22289","ServerKey":"pl181","X":644,"Y":462},{"Bonus":0,"Continent":"K64","ID":22290,"Name":"029|| Canis Major","PlayerID":849035525,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22290","ServerKey":"pl181","X":490,"Y":646},{"Bonus":0,"Continent":"K35","ID":22291,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22291","ServerKey":"pl181","X":555,"Y":367},{"Bonus":0,"Continent":"K56","ID":22292,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22292","ServerKey":"pl181","X":641,"Y":543},{"Bonus":0,"Continent":"K66","ID":22293,"Name":"~~013~~","PlayerID":7829201,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22293","ServerKey":"pl181","X":603,"Y":600},{"Bonus":0,"Continent":"K43","ID":22294,"Name":"MELISKA","PlayerID":699794765,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22294","ServerKey":"pl181","X":358,"Y":465},{"Bonus":0,"Continent":"K64","ID":22295,"Name":"0112","PlayerID":6910361,"Points":2016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22295","ServerKey":"pl181","X":423,"Y":624},{"Bonus":7,"Continent":"K35","ID":22296,"Name":"A044","PlayerID":699485250,"Points":5132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22296","ServerKey":"pl181","X":583,"Y":380},{"Bonus":0,"Continent":"K35","ID":22298,"Name":"014 Wioska barbarzyƄska","PlayerID":699509239,"Points":5303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22298","ServerKey":"pl181","X":569,"Y":370},{"Bonus":3,"Continent":"K53","ID":22299,"Name":"Centauria","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22299","ServerKey":"pl181","X":375,"Y":578},{"Bonus":0,"Continent":"K35","ID":22300,"Name":"0022","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22300","ServerKey":"pl181","X":592,"Y":384},{"Bonus":0,"Continent":"K46","ID":22301,"Name":"015. Ale kac","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22301","ServerKey":"pl181","X":634,"Y":437},{"Bonus":0,"Continent":"K65","ID":22302,"Name":"- 101 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22302","ServerKey":"pl181","X":588,"Y":621},{"Bonus":0,"Continent":"K64","ID":22303,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22303","ServerKey":"pl181","X":476,"Y":648},{"Bonus":0,"Continent":"K53","ID":22304,"Name":"24. Altanka u banana","PlayerID":8665783,"Points":8866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22304","ServerKey":"pl181","X":379,"Y":588},{"Bonus":0,"Continent":"K43","ID":22305,"Name":"Wioska barbarzyƄska.","PlayerID":699753640,"Points":2036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22305","ServerKey":"pl181","X":374,"Y":427},{"Bonus":0,"Continent":"K46","ID":22306,"Name":"Jan 014 K","PlayerID":879782,"Points":9310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22306","ServerKey":"pl181","X":642,"Y":471},{"Bonus":0,"Continent":"K34","ID":22307,"Name":"c 0031","PlayerID":3909522,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22307","ServerKey":"pl181","X":412,"Y":385},{"Bonus":1,"Continent":"K43","ID":22308,"Name":"AB15 Ukraina","PlayerID":483145,"Points":4224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22308","ServerKey":"pl181","X":375,"Y":417},{"Bonus":0,"Continent":"K64","ID":22309,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22309","ServerKey":"pl181","X":430,"Y":615},{"Bonus":0,"Continent":"K64","ID":22310,"Name":"Ave Why!","PlayerID":698585370,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22310","ServerKey":"pl181","X":457,"Y":638},{"Bonus":0,"Continent":"K64","ID":22311,"Name":"Alicization 6","PlayerID":699849210,"Points":9029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22311","ServerKey":"pl181","X":462,"Y":647},{"Bonus":0,"Continent":"K64","ID":22312,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22312","ServerKey":"pl181","X":404,"Y":616},{"Bonus":0,"Continent":"K64","ID":22313,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22313","ServerKey":"pl181","X":452,"Y":647},{"Bonus":0,"Continent":"K53","ID":22314,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22314","ServerKey":"pl181","X":354,"Y":526},{"Bonus":0,"Continent":"K46","ID":22315,"Name":"010. Benten","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22315","ServerKey":"pl181","X":634,"Y":447},{"Bonus":0,"Continent":"K53","ID":22316,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22316","ServerKey":"pl181","X":354,"Y":522},{"Bonus":0,"Continent":"K56","ID":22317,"Name":"$5.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22317","ServerKey":"pl181","X":635,"Y":550},{"Bonus":0,"Continent":"K43","ID":22318,"Name":"--004--","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22318","ServerKey":"pl181","X":381,"Y":411},{"Bonus":0,"Continent":"K35","ID":22319,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22319","ServerKey":"pl181","X":548,"Y":360},{"Bonus":0,"Continent":"K46","ID":22320,"Name":"#038.520|498","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22320","ServerKey":"pl181","X":639,"Y":449},{"Bonus":0,"Continent":"K43","ID":22321,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22321","ServerKey":"pl181","X":382,"Y":408},{"Bonus":0,"Continent":"K65","ID":22322,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22322","ServerKey":"pl181","X":530,"Y":647},{"Bonus":0,"Continent":"K64","ID":22324,"Name":"Pobozowisko","PlayerID":699513260,"Points":7213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22324","ServerKey":"pl181","X":404,"Y":610},{"Bonus":0,"Continent":"K63","ID":22325,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22325","ServerKey":"pl181","X":397,"Y":603},{"Bonus":0,"Continent":"K64","ID":22326,"Name":"10. Hell","PlayerID":9060641,"Points":9184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22326","ServerKey":"pl181","X":408,"Y":616},{"Bonus":0,"Continent":"K43","ID":22327,"Name":"AA07 Grecja","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22327","ServerKey":"pl181","X":378,"Y":414},{"Bonus":0,"Continent":"K43","ID":22328,"Name":"Westcoast.114","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22328","ServerKey":"pl181","X":378,"Y":425},{"Bonus":0,"Continent":"K65","ID":22329,"Name":"021. Szczupaka","PlayerID":848928624,"Points":9402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22329","ServerKey":"pl181","X":507,"Y":649},{"Bonus":0,"Continent":"K64","ID":22330,"Name":"|A| Mistrun..","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22330","ServerKey":"pl181","X":484,"Y":644},{"Bonus":0,"Continent":"K55","ID":22331,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22331","ServerKey":"pl181","X":572,"Y":570},{"Bonus":0,"Continent":"K56","ID":22332,"Name":"24k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22332","ServerKey":"pl181","X":638,"Y":554},{"Bonus":0,"Continent":"K53","ID":22333,"Name":"26. Okuninka","PlayerID":8665783,"Points":7293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22333","ServerKey":"pl181","X":379,"Y":587},{"Bonus":0,"Continent":"K34","ID":22334,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22334","ServerKey":"pl181","X":403,"Y":386},{"Bonus":0,"Continent":"K64","ID":22335,"Name":"|A| Roguehollow","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22335","ServerKey":"pl181","X":480,"Y":646},{"Bonus":0,"Continent":"K34","ID":22336,"Name":"075","PlayerID":698739350,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22336","ServerKey":"pl181","X":467,"Y":360},{"Bonus":0,"Continent":"K53","ID":22337,"Name":"Cisza 2","PlayerID":698769107,"Points":4971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22337","ServerKey":"pl181","X":356,"Y":543},{"Bonus":2,"Continent":"K35","ID":22338,"Name":"017 018","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22338","ServerKey":"pl181","X":537,"Y":360},{"Bonus":0,"Continent":"K64","ID":22339,"Name":"Ulu-mulu","PlayerID":699697558,"Points":7717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22339","ServerKey":"pl181","X":431,"Y":607},{"Bonus":0,"Continent":"K43","ID":22340,"Name":"A0298","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22340","ServerKey":"pl181","X":354,"Y":481},{"Bonus":0,"Continent":"K63","ID":22341,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22341","ServerKey":"pl181","X":397,"Y":607},{"Bonus":0,"Continent":"K56","ID":22342,"Name":"jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22342","ServerKey":"pl181","X":632,"Y":567},{"Bonus":0,"Continent":"K56","ID":22343,"Name":"064","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22343","ServerKey":"pl181","X":647,"Y":520},{"Bonus":0,"Continent":"K65","ID":22344,"Name":"kathare","PlayerID":873575,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22344","ServerKey":"pl181","X":551,"Y":634},{"Bonus":0,"Continent":"K64","ID":22345,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22345","ServerKey":"pl181","X":417,"Y":623},{"Bonus":0,"Continent":"K35","ID":22346,"Name":"CSA","PlayerID":7651093,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22346","ServerKey":"pl181","X":521,"Y":357},{"Bonus":3,"Continent":"K46","ID":22347,"Name":"65. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22347","ServerKey":"pl181","X":642,"Y":450},{"Bonus":0,"Continent":"K46","ID":22348,"Name":"Jehu_Kingdom_52","PlayerID":8785314,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22348","ServerKey":"pl181","X":638,"Y":454},{"Bonus":0,"Continent":"K56","ID":22349,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22349","ServerKey":"pl181","X":639,"Y":539},{"Bonus":0,"Continent":"K35","ID":22350,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22350","ServerKey":"pl181","X":552,"Y":361},{"Bonus":0,"Continent":"K46","ID":22351,"Name":"WW26","PlayerID":698845189,"Points":7056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22351","ServerKey":"pl181","X":646,"Y":464},{"Bonus":2,"Continent":"K53","ID":22352,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22352","ServerKey":"pl181","X":353,"Y":533},{"Bonus":0,"Continent":"K43","ID":22354,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22354","ServerKey":"pl181","X":352,"Y":477},{"Bonus":0,"Continent":"K43","ID":22355,"Name":"[C]_[002] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22355","ServerKey":"pl181","X":359,"Y":473},{"Bonus":0,"Continent":"K34","ID":22356,"Name":"K34 - [117] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22356","ServerKey":"pl181","X":449,"Y":358},{"Bonus":0,"Continent":"K56","ID":22357,"Name":"032","PlayerID":699351301,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22357","ServerKey":"pl181","X":647,"Y":521},{"Bonus":0,"Continent":"K35","ID":22358,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22358","ServerKey":"pl181","X":569,"Y":371},{"Bonus":0,"Continent":"K53","ID":22359,"Name":"deff 100 %","PlayerID":849012521,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22359","ServerKey":"pl181","X":364,"Y":558},{"Bonus":0,"Continent":"K35","ID":22360,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22360","ServerKey":"pl181","X":528,"Y":355},{"Bonus":0,"Continent":"K64","ID":22361,"Name":"0029 Wioska barbarzyƄska","PlayerID":9060641,"Points":8003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22361","ServerKey":"pl181","X":408,"Y":615},{"Bonus":0,"Continent":"K65","ID":22362,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22362","ServerKey":"pl181","X":522,"Y":646},{"Bonus":0,"Continent":"K34","ID":22363,"Name":"c Kolwicz 005","PlayerID":3909522,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22363","ServerKey":"pl181","X":402,"Y":391},{"Bonus":0,"Continent":"K34","ID":22364,"Name":"0050","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22364","ServerKey":"pl181","X":447,"Y":355},{"Bonus":0,"Continent":"K56","ID":22365,"Name":"025","PlayerID":698786826,"Points":7315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22365","ServerKey":"pl181","X":613,"Y":593},{"Bonus":0,"Continent":"K56","ID":22366,"Name":"Godynice","PlayerID":849095778,"Points":7161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22366","ServerKey":"pl181","X":625,"Y":571},{"Bonus":0,"Continent":"K53","ID":22367,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":6823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22367","ServerKey":"pl181","X":354,"Y":547},{"Bonus":0,"Continent":"K56","ID":22368,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22368","ServerKey":"pl181","X":643,"Y":538},{"Bonus":0,"Continent":"K35","ID":22370,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22370","ServerKey":"pl181","X":550,"Y":363},{"Bonus":0,"Continent":"K66","ID":22371,"Name":"~~052~~","PlayerID":7829201,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22371","ServerKey":"pl181","X":606,"Y":606},{"Bonus":0,"Continent":"K34","ID":22372,"Name":"076","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22372","ServerKey":"pl181","X":467,"Y":359},{"Bonus":0,"Continent":"K43","ID":22373,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22373","ServerKey":"pl181","X":391,"Y":404},{"Bonus":0,"Continent":"K53","ID":22374,"Name":"021","PlayerID":8908002,"Points":7366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22374","ServerKey":"pl181","X":361,"Y":546},{"Bonus":0,"Continent":"K46","ID":22375,"Name":"#.11 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22375","ServerKey":"pl181","X":649,"Y":477},{"Bonus":0,"Continent":"K65","ID":22376,"Name":"0043","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22376","ServerKey":"pl181","X":541,"Y":635},{"Bonus":0,"Continent":"K56","ID":22377,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22377","ServerKey":"pl181","X":624,"Y":582},{"Bonus":0,"Continent":"K35","ID":22379,"Name":"Wioska barbarzyƄska","PlayerID":699368887,"Points":7826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22379","ServerKey":"pl181","X":509,"Y":357},{"Bonus":0,"Continent":"K35","ID":22380,"Name":"111","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22380","ServerKey":"pl181","X":532,"Y":355},{"Bonus":0,"Continent":"K35","ID":22381,"Name":"Owp Konfederacja","PlayerID":848915730,"Points":7947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22381","ServerKey":"pl181","X":593,"Y":386},{"Bonus":0,"Continent":"K44","ID":22382,"Name":"149 San Cristobal","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22382","ServerKey":"pl181","X":467,"Y":494},{"Bonus":0,"Continent":"K43","ID":22384,"Name":"003","PlayerID":6171569,"Points":1965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22384","ServerKey":"pl181","X":388,"Y":401},{"Bonus":0,"Continent":"K64","ID":22385,"Name":"006","PlayerID":699783765,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22385","ServerKey":"pl181","X":430,"Y":631},{"Bonus":0,"Continent":"K43","ID":22386,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22386","ServerKey":"pl181","X":363,"Y":453},{"Bonus":0,"Continent":"K34","ID":22387,"Name":"036","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22387","ServerKey":"pl181","X":485,"Y":351},{"Bonus":0,"Continent":"K65","ID":22388,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22388","ServerKey":"pl181","X":528,"Y":641},{"Bonus":2,"Continent":"K65","ID":22389,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22389","ServerKey":"pl181","X":548,"Y":640},{"Bonus":0,"Continent":"K56","ID":22391,"Name":"041","PlayerID":699351301,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22391","ServerKey":"pl181","X":645,"Y":521},{"Bonus":0,"Continent":"K46","ID":22392,"Name":"Wioska (034)","PlayerID":698232227,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22392","ServerKey":"pl181","X":645,"Y":477},{"Bonus":0,"Continent":"K64","ID":22393,"Name":"046","PlayerID":849084985,"Points":10542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22393","ServerKey":"pl181","X":441,"Y":635},{"Bonus":0,"Continent":"K43","ID":22394,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22394","ServerKey":"pl181","X":364,"Y":453},{"Bonus":0,"Continent":"K35","ID":22395,"Name":"202","PlayerID":849064752,"Points":5398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22395","ServerKey":"pl181","X":573,"Y":376},{"Bonus":0,"Continent":"K56","ID":22396,"Name":"-004- K56","PlayerID":8096537,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22396","ServerKey":"pl181","X":649,"Y":503},{"Bonus":0,"Continent":"K35","ID":22398,"Name":"A043","PlayerID":699485250,"Points":4325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22398","ServerKey":"pl181","X":584,"Y":380},{"Bonus":0,"Continent":"K35","ID":22399,"Name":"C 014","PlayerID":6384450,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22399","ServerKey":"pl181","X":591,"Y":388},{"Bonus":0,"Continent":"K36","ID":22401,"Name":"R-15","PlayerID":3600737,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22401","ServerKey":"pl181","X":601,"Y":392},{"Bonus":0,"Continent":"K53","ID":22404,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22404","ServerKey":"pl181","X":355,"Y":534},{"Bonus":0,"Continent":"K53","ID":22405,"Name":"035 181","PlayerID":698807570,"Points":7712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22405","ServerKey":"pl181","X":355,"Y":502},{"Bonus":0,"Continent":"K53","ID":22406,"Name":"145 Wioska 01","PlayerID":699382126,"Points":7319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22406","ServerKey":"pl181","X":373,"Y":579},{"Bonus":0,"Continent":"K34","ID":22407,"Name":"105","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22407","ServerKey":"pl181","X":479,"Y":353},{"Bonus":0,"Continent":"K53","ID":22408,"Name":"-010-","PlayerID":699097885,"Points":8391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22408","ServerKey":"pl181","X":385,"Y":595},{"Bonus":0,"Continent":"K65","ID":22409,"Name":"yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22409","ServerKey":"pl181","X":558,"Y":636},{"Bonus":0,"Continent":"K35","ID":22410,"Name":".achim.","PlayerID":6936607,"Points":9578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22410","ServerKey":"pl181","X":536,"Y":391},{"Bonus":0,"Continent":"K34","ID":22411,"Name":"Wojo","PlayerID":699883079,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22411","ServerKey":"pl181","X":498,"Y":354},{"Bonus":0,"Continent":"K36","ID":22412,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22412","ServerKey":"pl181","X":601,"Y":396},{"Bonus":0,"Continent":"K34","ID":22413,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22413","ServerKey":"pl181","X":499,"Y":351},{"Bonus":0,"Continent":"K65","ID":22414,"Name":"0389","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22414","ServerKey":"pl181","X":587,"Y":615},{"Bonus":0,"Continent":"K43","ID":22415,"Name":"--007--","PlayerID":698884287,"Points":8284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22415","ServerKey":"pl181","X":384,"Y":414},{"Bonus":0,"Continent":"K65","ID":22416,"Name":"- 030 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22416","ServerKey":"pl181","X":584,"Y":622},{"Bonus":0,"Continent":"K43","ID":22417,"Name":"AA09 WƂochy","PlayerID":483145,"Points":7632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22417","ServerKey":"pl181","X":376,"Y":422},{"Bonus":0,"Continent":"K66","ID":22418,"Name":"zzzGranica Bledu 04","PlayerID":699778867,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22418","ServerKey":"pl181","X":611,"Y":602},{"Bonus":0,"Continent":"K44","ID":22419,"Name":"Gravity","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22419","ServerKey":"pl181","X":417,"Y":456},{"Bonus":0,"Continent":"K34","ID":22420,"Name":"142","PlayerID":6920960,"Points":7510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22420","ServerKey":"pl181","X":454,"Y":360},{"Bonus":0,"Continent":"K64","ID":22421,"Name":"0101","PlayerID":699697558,"Points":4894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22421","ServerKey":"pl181","X":419,"Y":618},{"Bonus":0,"Continent":"K53","ID":22422,"Name":"Pobozowisko","PlayerID":699513260,"Points":7592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22422","ServerKey":"pl181","X":385,"Y":594},{"Bonus":0,"Continent":"K53","ID":22423,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22423","ServerKey":"pl181","X":351,"Y":504},{"Bonus":5,"Continent":"K53","ID":22424,"Name":"off 100 %","PlayerID":849012521,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22424","ServerKey":"pl181","X":361,"Y":559},{"Bonus":0,"Continent":"K34","ID":22425,"Name":"Szlachcic","PlayerID":698388578,"Points":7669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22425","ServerKey":"pl181","X":426,"Y":370},{"Bonus":0,"Continent":"K46","ID":22426,"Name":"Wioska (020)","PlayerID":698232227,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22426","ServerKey":"pl181","X":637,"Y":454},{"Bonus":8,"Continent":"K43","ID":22427,"Name":"A0059","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22427","ServerKey":"pl181","X":350,"Y":490},{"Bonus":0,"Continent":"K65","ID":22429,"Name":"**Konkol","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22429","ServerKey":"pl181","X":576,"Y":630},{"Bonus":0,"Continent":"K56","ID":22430,"Name":"008 Hobro","PlayerID":699272880,"Points":10548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22430","ServerKey":"pl181","X":620,"Y":584},{"Bonus":0,"Continent":"K53","ID":22431,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22431","ServerKey":"pl181","X":352,"Y":527},{"Bonus":0,"Continent":"K53","ID":22432,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22432","ServerKey":"pl181","X":353,"Y":522},{"Bonus":0,"Continent":"K46","ID":22433,"Name":"122","PlayerID":7085502,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22433","ServerKey":"pl181","X":616,"Y":412},{"Bonus":0,"Continent":"K56","ID":22435,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22435","ServerKey":"pl181","X":638,"Y":546},{"Bonus":0,"Continent":"K65","ID":22436,"Name":"0084","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22436","ServerKey":"pl181","X":530,"Y":643},{"Bonus":0,"Continent":"K43","ID":22437,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22437","ServerKey":"pl181","X":357,"Y":460},{"Bonus":0,"Continent":"K53","ID":22439,"Name":".2.","PlayerID":849012521,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22439","ServerKey":"pl181","X":365,"Y":554},{"Bonus":0,"Continent":"K46","ID":22440,"Name":"0032","PlayerID":699429153,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22440","ServerKey":"pl181","X":617,"Y":415},{"Bonus":0,"Continent":"K34","ID":22441,"Name":"K34 - [099] Before Land","PlayerID":699088769,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22441","ServerKey":"pl181","X":449,"Y":359},{"Bonus":0,"Continent":"K35","ID":22442,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22442","ServerKey":"pl181","X":546,"Y":357},{"Bonus":0,"Continent":"K34","ID":22443,"Name":"c Fyra 4","PlayerID":3909522,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22443","ServerKey":"pl181","X":403,"Y":394},{"Bonus":7,"Continent":"K43","ID":22444,"Name":"M181_059","PlayerID":393668,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22444","ServerKey":"pl181","X":365,"Y":437},{"Bonus":0,"Continent":"K46","ID":22445,"Name":"#.36 Wioska barbarzyƄska","PlayerID":849054582,"Points":3198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22445","ServerKey":"pl181","X":649,"Y":476},{"Bonus":2,"Continent":"K43","ID":22446,"Name":"PI3","PlayerID":6258092,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22446","ServerKey":"pl181","X":354,"Y":460},{"Bonus":0,"Continent":"K35","ID":22447,"Name":"A020","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22447","ServerKey":"pl181","X":587,"Y":381},{"Bonus":0,"Continent":"K65","ID":22448,"Name":"013. Rumpel","PlayerID":848928624,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22448","ServerKey":"pl181","X":508,"Y":650},{"Bonus":0,"Continent":"K43","ID":22449,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":2955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22449","ServerKey":"pl181","X":364,"Y":440},{"Bonus":0,"Continent":"K35","ID":22451,"Name":"Lord Lord Franek .#214","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22451","ServerKey":"pl181","X":511,"Y":355},{"Bonus":0,"Continent":"K46","ID":22452,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22452","ServerKey":"pl181","X":623,"Y":424},{"Bonus":0,"Continent":"K64","ID":22453,"Name":"Ulu-mulu","PlayerID":699697558,"Points":6101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22453","ServerKey":"pl181","X":412,"Y":615},{"Bonus":0,"Continent":"K64","ID":22454,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":8899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22454","ServerKey":"pl181","X":433,"Y":633},{"Bonus":5,"Continent":"K34","ID":22455,"Name":"K34 - [010] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22455","ServerKey":"pl181","X":443,"Y":361},{"Bonus":0,"Continent":"K56","ID":22456,"Name":"037","PlayerID":849095227,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22456","ServerKey":"pl181","X":642,"Y":550},{"Bonus":0,"Continent":"K65","ID":22457,"Name":"- 029 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22457","ServerKey":"pl181","X":588,"Y":622},{"Bonus":0,"Continent":"K53","ID":22460,"Name":"Wioska barbarzyƄska","PlayerID":6853693,"Points":3730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22460","ServerKey":"pl181","X":363,"Y":555},{"Bonus":0,"Continent":"K64","ID":22461,"Name":"105","PlayerID":849084985,"Points":2875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22461","ServerKey":"pl181","X":439,"Y":637},{"Bonus":0,"Continent":"K53","ID":22462,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22462","ServerKey":"pl181","X":355,"Y":513},{"Bonus":0,"Continent":"K53","ID":22463,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22463","ServerKey":"pl181","X":352,"Y":521},{"Bonus":0,"Continent":"K43","ID":22464,"Name":"[C]_[003] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22464","ServerKey":"pl181","X":359,"Y":472},{"Bonus":6,"Continent":"K34","ID":22465,"Name":"112","PlayerID":699761749,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22465","ServerKey":"pl181","X":484,"Y":356},{"Bonus":0,"Continent":"K64","ID":22466,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22466","ServerKey":"pl181","X":471,"Y":648},{"Bonus":0,"Continent":"K64","ID":22468,"Name":"025","PlayerID":699783765,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22468","ServerKey":"pl181","X":434,"Y":630},{"Bonus":0,"Continent":"K35","ID":22469,"Name":"217","PlayerID":849064752,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22469","ServerKey":"pl181","X":575,"Y":377},{"Bonus":0,"Continent":"K46","ID":22470,"Name":"031 Barba","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22470","ServerKey":"pl181","X":651,"Y":487},{"Bonus":0,"Continent":"K56","ID":22471,"Name":"035","PlayerID":849095227,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22471","ServerKey":"pl181","X":641,"Y":548},{"Bonus":0,"Continent":"K53","ID":22472,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22472","ServerKey":"pl181","X":356,"Y":564},{"Bonus":0,"Continent":"K65","ID":22473,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22473","ServerKey":"pl181","X":517,"Y":647},{"Bonus":0,"Continent":"K34","ID":22474,"Name":"146","PlayerID":6920960,"Points":7781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22474","ServerKey":"pl181","X":453,"Y":362},{"Bonus":0,"Continent":"K53","ID":22475,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22475","ServerKey":"pl181","X":356,"Y":532},{"Bonus":0,"Continent":"K64","ID":22476,"Name":"Pobozowisko","PlayerID":699513260,"Points":10844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22476","ServerKey":"pl181","X":402,"Y":603},{"Bonus":0,"Continent":"K64","ID":22477,"Name":"Wioska Hajkon","PlayerID":699238479,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22477","ServerKey":"pl181","X":474,"Y":644},{"Bonus":0,"Continent":"K43","ID":22478,"Name":"007","PlayerID":848945529,"Points":3413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22478","ServerKey":"pl181","X":375,"Y":418},{"Bonus":0,"Continent":"K46","ID":22480,"Name":"016 MONETKI","PlayerID":7588382,"Points":8783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22480","ServerKey":"pl181","X":646,"Y":483},{"Bonus":0,"Continent":"K56","ID":22481,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22481","ServerKey":"pl181","X":636,"Y":552},{"Bonus":0,"Continent":"K53","ID":22482,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22482","ServerKey":"pl181","X":352,"Y":507},{"Bonus":0,"Continent":"K64","ID":22483,"Name":"002. Oto ja!","PlayerID":699736927,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22483","ServerKey":"pl181","X":439,"Y":641},{"Bonus":0,"Continent":"K36","ID":22484,"Name":"43. GĂłry Sine","PlayerID":8976313,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22484","ServerKey":"pl181","X":606,"Y":397},{"Bonus":0,"Continent":"K35","ID":22485,"Name":"A045","PlayerID":699485250,"Points":5594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22485","ServerKey":"pl181","X":583,"Y":378},{"Bonus":0,"Continent":"K43","ID":22486,"Name":"Za luba","PlayerID":699265922,"Points":9252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22486","ServerKey":"pl181","X":354,"Y":495},{"Bonus":0,"Continent":"K35","ID":22488,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22488","ServerKey":"pl181","X":550,"Y":357},{"Bonus":0,"Continent":"K33","ID":22489,"Name":"A-018","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22489","ServerKey":"pl181","X":391,"Y":395},{"Bonus":0,"Continent":"K53","ID":22490,"Name":"001","PlayerID":6853693,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22490","ServerKey":"pl181","X":358,"Y":537},{"Bonus":0,"Continent":"K53","ID":22491,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22491","ServerKey":"pl181","X":365,"Y":568},{"Bonus":0,"Continent":"K55","ID":22492,"Name":"001. PoƂudnica","PlayerID":699703642,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22492","ServerKey":"pl181","X":507,"Y":591},{"Bonus":0,"Continent":"K34","ID":22493,"Name":"VN Kalluto Zoldyck","PlayerID":699883079,"Points":9865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22493","ServerKey":"pl181","X":459,"Y":359},{"Bonus":0,"Continent":"K34","ID":22495,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22495","ServerKey":"pl181","X":421,"Y":375},{"Bonus":0,"Continent":"K46","ID":22496,"Name":"27. KaruTown","PlayerID":699298370,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22496","ServerKey":"pl181","X":615,"Y":403},{"Bonus":0,"Continent":"K64","ID":22497,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22497","ServerKey":"pl181","X":499,"Y":645},{"Bonus":0,"Continent":"K53","ID":22498,"Name":"Wioska RADZA121","PlayerID":699621601,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22498","ServerKey":"pl181","X":383,"Y":588},{"Bonus":0,"Continent":"K64","ID":22499,"Name":"Pobozowisko","PlayerID":699513260,"Points":10610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22499","ServerKey":"pl181","X":405,"Y":614},{"Bonus":0,"Continent":"K64","ID":22500,"Name":"|A| Windbarrow..","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22500","ServerKey":"pl181","X":481,"Y":649},{"Bonus":0,"Continent":"K43","ID":22501,"Name":"A0066","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22501","ServerKey":"pl181","X":350,"Y":484},{"Bonus":0,"Continent":"K53","ID":22502,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22502","ServerKey":"pl181","X":353,"Y":523},{"Bonus":0,"Continent":"K35","ID":22503,"Name":"CSA","PlayerID":7651093,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22503","ServerKey":"pl181","X":524,"Y":353},{"Bonus":0,"Continent":"K43","ID":22504,"Name":"A0130","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22504","ServerKey":"pl181","X":351,"Y":498},{"Bonus":0,"Continent":"K65","ID":22506,"Name":"- 327 - RR","PlayerID":849018239,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22506","ServerKey":"pl181","X":591,"Y":615},{"Bonus":0,"Continent":"K35","ID":22507,"Name":"C003","PlayerID":699761749,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22507","ServerKey":"pl181","X":591,"Y":383},{"Bonus":0,"Continent":"K64","ID":22508,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22508","ServerKey":"pl181","X":469,"Y":650},{"Bonus":0,"Continent":"K36","ID":22509,"Name":"A 013","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22509","ServerKey":"pl181","X":600,"Y":388},{"Bonus":0,"Continent":"K65","ID":22510,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22510","ServerKey":"pl181","X":563,"Y":634},{"Bonus":0,"Continent":"K65","ID":22511,"Name":"kathare","PlayerID":873575,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22511","ServerKey":"pl181","X":554,"Y":638},{"Bonus":0,"Continent":"K34","ID":22512,"Name":"074","PlayerID":699796330,"Points":6625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22512","ServerKey":"pl181","X":428,"Y":374},{"Bonus":0,"Continent":"K64","ID":22513,"Name":"012","PlayerID":699783765,"Points":4701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22513","ServerKey":"pl181","X":427,"Y":627},{"Bonus":0,"Continent":"K46","ID":22514,"Name":"Jan Ii K","PlayerID":879782,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22514","ServerKey":"pl181","X":644,"Y":474},{"Bonus":0,"Continent":"K34","ID":22515,"Name":"070","PlayerID":698739350,"Points":8340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22515","ServerKey":"pl181","X":481,"Y":385},{"Bonus":0,"Continent":"K35","ID":22516,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22516","ServerKey":"pl181","X":563,"Y":368},{"Bonus":0,"Continent":"K56","ID":22518,"Name":"020 Summerhall","PlayerID":699272880,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22518","ServerKey":"pl181","X":621,"Y":585},{"Bonus":0,"Continent":"K63","ID":22519,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22519","ServerKey":"pl181","X":398,"Y":604},{"Bonus":0,"Continent":"K43","ID":22520,"Name":"[C]_[006] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22520","ServerKey":"pl181","X":356,"Y":475},{"Bonus":0,"Continent":"K46","ID":22521,"Name":"#057.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22521","ServerKey":"pl181","X":642,"Y":448},{"Bonus":0,"Continent":"K64","ID":22522,"Name":"ave why!","PlayerID":698143931,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22522","ServerKey":"pl181","X":434,"Y":633},{"Bonus":0,"Continent":"K34","ID":22523,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22523","ServerKey":"pl181","X":438,"Y":368},{"Bonus":0,"Continent":"K44","ID":22524,"Name":"024","PlayerID":699510259,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22524","ServerKey":"pl181","X":434,"Y":487},{"Bonus":0,"Continent":"K43","ID":22525,"Name":"091","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22525","ServerKey":"pl181","X":355,"Y":458},{"Bonus":0,"Continent":"K35","ID":22526,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22526","ServerKey":"pl181","X":562,"Y":365},{"Bonus":0,"Continent":"K65","ID":22527,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22527","ServerKey":"pl181","X":509,"Y":648},{"Bonus":0,"Continent":"K64","ID":22529,"Name":"078","PlayerID":849084985,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22529","ServerKey":"pl181","X":442,"Y":638},{"Bonus":0,"Continent":"K65","ID":22530,"Name":"054. Snoob","PlayerID":848928624,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22530","ServerKey":"pl181","X":515,"Y":651},{"Bonus":0,"Continent":"K64","ID":22531,"Name":"A10 Wioska barbarzyƄska","PlayerID":849037407,"Points":10270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22531","ServerKey":"pl181","X":466,"Y":635},{"Bonus":0,"Continent":"K35","ID":22532,"Name":"Rudy rydz sie pisze a nie ryc","PlayerID":699509239,"Points":9417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22532","ServerKey":"pl181","X":570,"Y":372},{"Bonus":0,"Continent":"K34","ID":22533,"Name":"112","PlayerID":7271812,"Points":7085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22533","ServerKey":"pl181","X":478,"Y":357},{"Bonus":0,"Continent":"K56","ID":22534,"Name":"058","PlayerID":699351301,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22534","ServerKey":"pl181","X":648,"Y":517},{"Bonus":0,"Continent":"K34","ID":22535,"Name":"c Fyra","PlayerID":3909522,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22535","ServerKey":"pl181","X":402,"Y":393},{"Bonus":0,"Continent":"K34","ID":22536,"Name":"144","PlayerID":6920960,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22536","ServerKey":"pl181","X":451,"Y":358},{"Bonus":0,"Continent":"K35","ID":22537,"Name":"A015","PlayerID":699761749,"Points":4167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22537","ServerKey":"pl181","X":593,"Y":388},{"Bonus":0,"Continent":"K53","ID":22539,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22539","ServerKey":"pl181","X":351,"Y":526},{"Bonus":0,"Continent":"K46","ID":22540,"Name":"015 MONETKI","PlayerID":7588382,"Points":8840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22540","ServerKey":"pl181","X":648,"Y":484},{"Bonus":0,"Continent":"K64","ID":22541,"Name":"024|| Antlia","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22541","ServerKey":"pl181","X":485,"Y":638},{"Bonus":0,"Continent":"K65","ID":22542,"Name":"Mobil","PlayerID":7589468,"Points":8831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22542","ServerKey":"pl181","X":538,"Y":645},{"Bonus":9,"Continent":"K53","ID":22543,"Name":"080 Osada koczownikĂłw","PlayerID":699382126,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22543","ServerKey":"pl181","X":375,"Y":574},{"Bonus":0,"Continent":"K43","ID":22544,"Name":"Maszlug kolonia VI","PlayerID":848977649,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22544","ServerKey":"pl181","X":367,"Y":431},{"Bonus":0,"Continent":"K53","ID":22545,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22545","ServerKey":"pl181","X":352,"Y":517},{"Bonus":0,"Continent":"K65","ID":22546,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":5784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22546","ServerKey":"pl181","X":501,"Y":645},{"Bonus":0,"Continent":"K53","ID":22547,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22547","ServerKey":"pl181","X":355,"Y":521},{"Bonus":0,"Continent":"K34","ID":22548,"Name":"North Barba 016","PlayerID":699796330,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22548","ServerKey":"pl181","X":429,"Y":367},{"Bonus":0,"Continent":"K56","ID":22549,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22549","ServerKey":"pl181","X":646,"Y":525},{"Bonus":0,"Continent":"K34","ID":22550,"Name":"108","PlayerID":7271812,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22550","ServerKey":"pl181","X":476,"Y":351},{"Bonus":0,"Continent":"K56","ID":22551,"Name":"086","PlayerID":849095227,"Points":7982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22551","ServerKey":"pl181","X":632,"Y":565},{"Bonus":0,"Continent":"K34","ID":22553,"Name":"101","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22553","ServerKey":"pl181","X":474,"Y":353},{"Bonus":0,"Continent":"K43","ID":22555,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22555","ServerKey":"pl181","X":354,"Y":474},{"Bonus":0,"Continent":"K43","ID":22556,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22556","ServerKey":"pl181","X":355,"Y":474},{"Bonus":0,"Continent":"K35","ID":22557,"Name":"yyyy","PlayerID":699883079,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22557","ServerKey":"pl181","X":500,"Y":353},{"Bonus":0,"Continent":"K35","ID":22558,"Name":"0025","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22558","ServerKey":"pl181","X":595,"Y":385},{"Bonus":0,"Continent":"K34","ID":22559,"Name":"PodziękowaƂ 3","PlayerID":699796330,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22559","ServerKey":"pl181","X":424,"Y":374},{"Bonus":0,"Continent":"K63","ID":22560,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22560","ServerKey":"pl181","X":391,"Y":603},{"Bonus":0,"Continent":"K46","ID":22561,"Name":"#.42 Wioska barbarzyƄska","PlayerID":849054582,"Points":4273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22561","ServerKey":"pl181","X":651,"Y":486},{"Bonus":0,"Continent":"K35","ID":22562,"Name":"036 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22562","ServerKey":"pl181","X":538,"Y":360},{"Bonus":0,"Continent":"K56","ID":22563,"Name":"022 Revyl","PlayerID":699272880,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22563","ServerKey":"pl181","X":620,"Y":585},{"Bonus":0,"Continent":"K35","ID":22564,"Name":"007 Wioska barbarzyƄska","PlayerID":699509239,"Points":5036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22564","ServerKey":"pl181","X":566,"Y":371},{"Bonus":0,"Continent":"K56","ID":22565,"Name":"B.004","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22565","ServerKey":"pl181","X":650,"Y":512},{"Bonus":0,"Continent":"K56","ID":22566,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22566","ServerKey":"pl181","X":632,"Y":562},{"Bonus":0,"Continent":"K64","ID":22567,"Name":"051|| Pegasus","PlayerID":849035525,"Points":9903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22567","ServerKey":"pl181","X":494,"Y":651},{"Bonus":0,"Continent":"K43","ID":22568,"Name":"AA06 Islandia","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22568","ServerKey":"pl181","X":381,"Y":417},{"Bonus":0,"Continent":"K56","ID":22569,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22569","ServerKey":"pl181","X":644,"Y":529},{"Bonus":0,"Continent":"K46","ID":22570,"Name":"018 | PALESTINA | Msqt [*]","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22570","ServerKey":"pl181","X":630,"Y":434},{"Bonus":0,"Continent":"K34","ID":22571,"Name":"Szlachcic","PlayerID":698388578,"Points":8413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22571","ServerKey":"pl181","X":426,"Y":371},{"Bonus":0,"Continent":"K64","ID":22573,"Name":"Wioska barbarzyƄska","PlayerID":699238479,"Points":8756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22573","ServerKey":"pl181","X":473,"Y":644},{"Bonus":0,"Continent":"K46","ID":22574,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22574","ServerKey":"pl181","X":639,"Y":456},{"Bonus":0,"Continent":"K46","ID":22575,"Name":"0037","PlayerID":699429153,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22575","ServerKey":"pl181","X":618,"Y":416},{"Bonus":5,"Continent":"K35","ID":22576,"Name":"WE ARE READY!","PlayerID":1553947,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22576","ServerKey":"pl181","X":594,"Y":383},{"Bonus":0,"Continent":"K64","ID":22577,"Name":"044","PlayerID":849084985,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22577","ServerKey":"pl181","X":446,"Y":641},{"Bonus":0,"Continent":"K46","ID":22579,"Name":"0052","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22579","ServerKey":"pl181","X":618,"Y":411},{"Bonus":0,"Continent":"K55","ID":22580,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22580","ServerKey":"pl181","X":570,"Y":505},{"Bonus":0,"Continent":"K43","ID":22581,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22581","ServerKey":"pl181","X":355,"Y":473},{"Bonus":8,"Continent":"K65","ID":22583,"Name":"0002","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22583","ServerKey":"pl181","X":538,"Y":640},{"Bonus":0,"Continent":"K46","ID":22584,"Name":"005 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22584","ServerKey":"pl181","X":639,"Y":440},{"Bonus":0,"Continent":"K46","ID":22585,"Name":"B003","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22585","ServerKey":"pl181","X":648,"Y":494},{"Bonus":0,"Continent":"K56","ID":22586,"Name":"069","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22586","ServerKey":"pl181","X":643,"Y":534},{"Bonus":0,"Continent":"K56","ID":22587,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22587","ServerKey":"pl181","X":637,"Y":554},{"Bonus":0,"Continent":"K53","ID":22588,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":5956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22588","ServerKey":"pl181","X":373,"Y":576},{"Bonus":0,"Continent":"K64","ID":22589,"Name":"Ave Why!","PlayerID":698585370,"Points":7739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22589","ServerKey":"pl181","X":455,"Y":638},{"Bonus":0,"Continent":"K35","ID":22590,"Name":"Lord Lord Franek .#224","PlayerID":698420691,"Points":8910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22590","ServerKey":"pl181","X":525,"Y":354},{"Bonus":0,"Continent":"K56","ID":22591,"Name":"GaƂki","PlayerID":849095778,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22591","ServerKey":"pl181","X":627,"Y":570},{"Bonus":0,"Continent":"K46","ID":22592,"Name":"#039.519|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22592","ServerKey":"pl181","X":638,"Y":447},{"Bonus":0,"Continent":"K46","ID":22593,"Name":"Jan 017 K","PlayerID":879782,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22593","ServerKey":"pl181","X":643,"Y":465},{"Bonus":0,"Continent":"K35","ID":22594,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22594","ServerKey":"pl181","X":565,"Y":365},{"Bonus":0,"Continent":"K64","ID":22595,"Name":"A007","PlayerID":699383279,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22595","ServerKey":"pl181","X":473,"Y":634},{"Bonus":0,"Continent":"K56","ID":22596,"Name":"Brąszewice","PlayerID":849095778,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22596","ServerKey":"pl181","X":626,"Y":576},{"Bonus":9,"Continent":"K43","ID":22597,"Name":"M181_060","PlayerID":393668,"Points":10592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22597","ServerKey":"pl181","X":365,"Y":433},{"Bonus":0,"Continent":"K46","ID":22598,"Name":"020. DePRESJA","PlayerID":849095599,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22598","ServerKey":"pl181","X":635,"Y":443},{"Bonus":0,"Continent":"K46","ID":22599,"Name":"#025.520|499","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22599","ServerKey":"pl181","X":639,"Y":450},{"Bonus":0,"Continent":"K64","ID":22600,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22600","ServerKey":"pl181","X":481,"Y":644},{"Bonus":0,"Continent":"K56","ID":22601,"Name":"S181","PlayerID":131972,"Points":1438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22601","ServerKey":"pl181","X":629,"Y":568},{"Bonus":0,"Continent":"K66","ID":22602,"Name":"zzzGranica Bledu 01","PlayerID":699778867,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22602","ServerKey":"pl181","X":607,"Y":604},{"Bonus":7,"Continent":"K53","ID":22603,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22603","ServerKey":"pl181","X":361,"Y":550},{"Bonus":0,"Continent":"K34","ID":22605,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22605","ServerKey":"pl181","X":419,"Y":372},{"Bonus":0,"Continent":"K66","ID":22606,"Name":"~~018~~","PlayerID":7829201,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22606","ServerKey":"pl181","X":606,"Y":605},{"Bonus":0,"Continent":"K53","ID":22607,"Name":"019 181","PlayerID":698807570,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22607","ServerKey":"pl181","X":352,"Y":501},{"Bonus":0,"Continent":"K35","ID":22608,"Name":"002 Oglądam PowtĂłrkę CZE - POR","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22608","ServerKey":"pl181","X":540,"Y":358},{"Bonus":0,"Continent":"K64","ID":22609,"Name":"014","PlayerID":699783765,"Points":5992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22609","ServerKey":"pl181","X":427,"Y":628},{"Bonus":0,"Continent":"K64","ID":22610,"Name":"038|| Norma","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22610","ServerKey":"pl181","X":480,"Y":650},{"Bonus":0,"Continent":"K56","ID":22611,"Name":"037","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22611","ServerKey":"pl181","X":644,"Y":543},{"Bonus":0,"Continent":"K35","ID":22612,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22612","ServerKey":"pl181","X":551,"Y":364},{"Bonus":0,"Continent":"K43","ID":22613,"Name":"AA04 Hiszpania","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22613","ServerKey":"pl181","X":378,"Y":411},{"Bonus":0,"Continent":"K64","ID":22614,"Name":"Ulu-mulu","PlayerID":699697558,"Points":7025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22614","ServerKey":"pl181","X":408,"Y":619},{"Bonus":0,"Continent":"K65","ID":22615,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22615","ServerKey":"pl181","X":509,"Y":649},{"Bonus":0,"Continent":"K56","ID":22616,"Name":"B.013","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22616","ServerKey":"pl181","X":647,"Y":512},{"Bonus":0,"Continent":"K66","ID":22618,"Name":"~~007~~","PlayerID":7829201,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22618","ServerKey":"pl181","X":603,"Y":603},{"Bonus":0,"Continent":"K56","ID":22619,"Name":"038","PlayerID":698786826,"Points":6018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22619","ServerKey":"pl181","X":613,"Y":590},{"Bonus":0,"Continent":"K63","ID":22620,"Name":"Pobozowisko","PlayerID":699513260,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22620","ServerKey":"pl181","X":396,"Y":606},{"Bonus":0,"Continent":"K65","ID":22621,"Name":"kathare","PlayerID":873575,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22621","ServerKey":"pl181","X":557,"Y":639},{"Bonus":0,"Continent":"K46","ID":22622,"Name":"109","PlayerID":7085502,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22622","ServerKey":"pl181","X":622,"Y":417},{"Bonus":0,"Continent":"K53","ID":22624,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22624","ServerKey":"pl181","X":356,"Y":523},{"Bonus":0,"Continent":"K65","ID":22626,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22626","ServerKey":"pl181","X":524,"Y":646},{"Bonus":0,"Continent":"K56","ID":22627,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22627","ServerKey":"pl181","X":638,"Y":552},{"Bonus":0,"Continent":"K65","ID":22628,"Name":"007. Bond James Bond","PlayerID":848928624,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22628","ServerKey":"pl181","X":506,"Y":646},{"Bonus":0,"Continent":"K46","ID":22629,"Name":"B013","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22629","ServerKey":"pl181","X":648,"Y":496},{"Bonus":0,"Continent":"K64","ID":22630,"Name":"Ave Why!","PlayerID":698585370,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22630","ServerKey":"pl181","X":477,"Y":648},{"Bonus":0,"Continent":"K56","ID":22631,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22631","ServerKey":"pl181","X":633,"Y":572},{"Bonus":0,"Continent":"K34","ID":22632,"Name":"K34 - [113] Before Land","PlayerID":699088769,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22632","ServerKey":"pl181","X":447,"Y":361},{"Bonus":0,"Continent":"K36","ID":22633,"Name":"wioska","PlayerID":849061374,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22633","ServerKey":"pl181","X":604,"Y":394},{"Bonus":0,"Continent":"K46","ID":22634,"Name":"WW27","PlayerID":698845189,"Points":5697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22634","ServerKey":"pl181","X":645,"Y":466},{"Bonus":0,"Continent":"K65","ID":22635,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22635","ServerKey":"pl181","X":554,"Y":647},{"Bonus":0,"Continent":"K65","ID":22636,"Name":"kathare","PlayerID":873575,"Points":9884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22636","ServerKey":"pl181","X":546,"Y":641},{"Bonus":0,"Continent":"K64","ID":22637,"Name":"024","PlayerID":699783765,"Points":8361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22637","ServerKey":"pl181","X":433,"Y":630},{"Bonus":0,"Continent":"K43","ID":22638,"Name":"Wioska Barba I","PlayerID":8967440,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22638","ServerKey":"pl181","X":383,"Y":407},{"Bonus":0,"Continent":"K53","ID":22639,"Name":"K08","PlayerID":849090130,"Points":2210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22639","ServerKey":"pl181","X":369,"Y":577},{"Bonus":0,"Continent":"K34","ID":22640,"Name":"020","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22640","ServerKey":"pl181","X":489,"Y":349},{"Bonus":0,"Continent":"K64","ID":22641,"Name":"B02 wrĂłciƂaƛ do mnie :)","PlayerID":849037407,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22641","ServerKey":"pl181","X":458,"Y":642},{"Bonus":0,"Continent":"K34","ID":22642,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22642","ServerKey":"pl181","X":438,"Y":367},{"Bonus":0,"Continent":"K33","ID":22643,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22643","ServerKey":"pl181","X":398,"Y":394},{"Bonus":0,"Continent":"K35","ID":22644,"Name":"A010","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22644","ServerKey":"pl181","X":579,"Y":378},{"Bonus":0,"Continent":"K64","ID":22645,"Name":"004.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22645","ServerKey":"pl181","X":487,"Y":650},{"Bonus":0,"Continent":"K46","ID":22646,"Name":"0058","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22646","ServerKey":"pl181","X":623,"Y":411},{"Bonus":0,"Continent":"K65","ID":22647,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":7472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22647","ServerKey":"pl181","X":596,"Y":616},{"Bonus":0,"Continent":"K64","ID":22648,"Name":"No. 1","PlayerID":698585370,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22648","ServerKey":"pl181","X":477,"Y":653},{"Bonus":0,"Continent":"K46","ID":22649,"Name":"031 | PALESTINA","PlayerID":9228039,"Points":9232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22649","ServerKey":"pl181","X":631,"Y":433},{"Bonus":0,"Continent":"K46","ID":22650,"Name":"627|423 Wioska barbarzyƄska22","PlayerID":6822957,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22650","ServerKey":"pl181","X":627,"Y":423},{"Bonus":0,"Continent":"K34","ID":22651,"Name":"0047","PlayerID":699431255,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22651","ServerKey":"pl181","X":444,"Y":365},{"Bonus":0,"Continent":"K53","ID":22652,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22652","ServerKey":"pl181","X":350,"Y":549},{"Bonus":0,"Continent":"K35","ID":22653,"Name":"yyyyy","PlayerID":699883079,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22653","ServerKey":"pl181","X":504,"Y":354},{"Bonus":0,"Continent":"K53","ID":22654,"Name":"035","PlayerID":6853693,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22654","ServerKey":"pl181","X":360,"Y":541},{"Bonus":0,"Continent":"K64","ID":22655,"Name":"008","PlayerID":699783765,"Points":5632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22655","ServerKey":"pl181","X":428,"Y":630},{"Bonus":0,"Continent":"K34","ID":22656,"Name":"c Kolwicz 004","PlayerID":3909522,"Points":10477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22656","ServerKey":"pl181","X":403,"Y":392},{"Bonus":0,"Continent":"K35","ID":22657,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22657","ServerKey":"pl181","X":560,"Y":367},{"Bonus":0,"Continent":"K65","ID":22658,"Name":"kathare","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22658","ServerKey":"pl181","X":548,"Y":639},{"Bonus":0,"Continent":"K56","ID":22659,"Name":"P027 Royal Kush","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22659","ServerKey":"pl181","X":650,"Y":519},{"Bonus":0,"Continent":"K43","ID":22660,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":7097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22660","ServerKey":"pl181","X":372,"Y":419},{"Bonus":0,"Continent":"K55","ID":22661,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22661","ServerKey":"pl181","X":526,"Y":503},{"Bonus":0,"Continent":"K34","ID":22662,"Name":"K34 - [049] Before Land","PlayerID":699088769,"Points":7529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22662","ServerKey":"pl181","X":445,"Y":359},{"Bonus":0,"Continent":"K43","ID":22663,"Name":"Brat447","PlayerID":699262350,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22663","ServerKey":"pl181","X":355,"Y":478},{"Bonus":0,"Continent":"K53","ID":22664,"Name":"Jotunheim","PlayerID":8607734,"Points":8196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22664","ServerKey":"pl181","X":376,"Y":576},{"Bonus":0,"Continent":"K34","ID":22665,"Name":"076....barbakra","PlayerID":6920960,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22665","ServerKey":"pl181","X":456,"Y":359},{"Bonus":0,"Continent":"K35","ID":22666,"Name":"CSA","PlayerID":7651093,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22666","ServerKey":"pl181","X":516,"Y":354},{"Bonus":0,"Continent":"K46","ID":22667,"Name":"018. Rzym","PlayerID":849095599,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22667","ServerKey":"pl181","X":632,"Y":436},{"Bonus":0,"Continent":"K35","ID":22668,"Name":"CSA","PlayerID":7651093,"Points":7900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22668","ServerKey":"pl181","X":519,"Y":352},{"Bonus":0,"Continent":"K43","ID":22669,"Name":"AB11 Turcja","PlayerID":483145,"Points":6678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22669","ServerKey":"pl181","X":375,"Y":421},{"Bonus":0,"Continent":"K43","ID":22670,"Name":"A0065","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22670","ServerKey":"pl181","X":350,"Y":488},{"Bonus":0,"Continent":"K43","ID":22671,"Name":"Westcoast.115","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22671","ServerKey":"pl181","X":373,"Y":429},{"Bonus":2,"Continent":"K46","ID":22672,"Name":"Jan 07 K","PlayerID":879782,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22672","ServerKey":"pl181","X":642,"Y":464},{"Bonus":0,"Continent":"K56","ID":22673,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22673","ServerKey":"pl181","X":632,"Y":561},{"Bonus":0,"Continent":"K35","ID":22674,"Name":"Lord Lord Franek .#225","PlayerID":698420691,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22674","ServerKey":"pl181","X":510,"Y":353},{"Bonus":0,"Continent":"K43","ID":22675,"Name":"032 VW xyz","PlayerID":3108144,"Points":11278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22675","ServerKey":"pl181","X":379,"Y":412},{"Bonus":0,"Continent":"K53","ID":22676,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22676","ServerKey":"pl181","X":352,"Y":531},{"Bonus":0,"Continent":"K35","ID":22678,"Name":"094 duko 3","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22678","ServerKey":"pl181","X":547,"Y":357},{"Bonus":0,"Continent":"K34","ID":22680,"Name":"Monetio","PlayerID":699393759,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22680","ServerKey":"pl181","X":444,"Y":359},{"Bonus":0,"Continent":"K44","ID":22681,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22681","ServerKey":"pl181","X":400,"Y":403},{"Bonus":0,"Continent":"K63","ID":22682,"Name":"B002","PlayerID":699383279,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22682","ServerKey":"pl181","X":396,"Y":608},{"Bonus":0,"Continent":"K43","ID":22683,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":7117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22683","ServerKey":"pl181","X":359,"Y":443},{"Bonus":0,"Continent":"K56","ID":22684,"Name":"M002","PlayerID":848899726,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22684","ServerKey":"pl181","X":650,"Y":505},{"Bonus":0,"Continent":"K44","ID":22685,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22685","ServerKey":"pl181","X":400,"Y":406},{"Bonus":0,"Continent":"K53","ID":22686,"Name":"Pobozowisko","PlayerID":699513260,"Points":9468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22686","ServerKey":"pl181","X":385,"Y":597},{"Bonus":0,"Continent":"K46","ID":22687,"Name":"032 | PALESTINA","PlayerID":9228039,"Points":8032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22687","ServerKey":"pl181","X":638,"Y":437},{"Bonus":0,"Continent":"K64","ID":22688,"Name":"012","PlayerID":698650301,"Points":6725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22688","ServerKey":"pl181","X":469,"Y":645},{"Bonus":0,"Continent":"K34","ID":22689,"Name":"0060","PlayerID":699431255,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22689","ServerKey":"pl181","X":443,"Y":366},{"Bonus":0,"Continent":"K56","ID":22690,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22690","ServerKey":"pl181","X":625,"Y":583},{"Bonus":0,"Continent":"K53","ID":22691,"Name":"48. Wioska 48","PlayerID":849091769,"Points":7846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22691","ServerKey":"pl181","X":362,"Y":547},{"Bonus":0,"Continent":"K35","ID":22692,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22692","ServerKey":"pl181","X":534,"Y":354},{"Bonus":0,"Continent":"K64","ID":22693,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":6456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22693","ServerKey":"pl181","X":433,"Y":632},{"Bonus":0,"Continent":"K34","ID":22694,"Name":"002...CENTR_Jazda_D","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22694","ServerKey":"pl181","X":463,"Y":353},{"Bonus":0,"Continent":"K43","ID":22695,"Name":"Wioska barbarzyƄska","PlayerID":699753640,"Points":3170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22695","ServerKey":"pl181","X":371,"Y":429},{"Bonus":0,"Continent":"K35","ID":22696,"Name":"076 Atlanda","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22696","ServerKey":"pl181","X":543,"Y":358},{"Bonus":0,"Continent":"K35","ID":22697,"Name":"018","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22697","ServerKey":"pl181","X":520,"Y":350},{"Bonus":8,"Continent":"K46","ID":22698,"Name":"012","PlayerID":699298370,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22698","ServerKey":"pl181","X":613,"Y":400},{"Bonus":0,"Continent":"K43","ID":22699,"Name":"008","PlayerID":848945529,"Points":3596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22699","ServerKey":"pl181","X":373,"Y":421},{"Bonus":0,"Continent":"K53","ID":22700,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22700","ServerKey":"pl181","X":350,"Y":519},{"Bonus":0,"Continent":"K43","ID":22701,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22701","ServerKey":"pl181","X":358,"Y":459},{"Bonus":8,"Continent":"K43","ID":22702,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22702","ServerKey":"pl181","X":352,"Y":466},{"Bonus":0,"Continent":"K64","ID":22704,"Name":"09. Shine it","PlayerID":849100262,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22704","ServerKey":"pl181","X":498,"Y":648},{"Bonus":0,"Continent":"K53","ID":22705,"Name":"off 100 %","PlayerID":849012521,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22705","ServerKey":"pl181","X":362,"Y":556},{"Bonus":0,"Continent":"K63","ID":22706,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22706","ServerKey":"pl181","X":388,"Y":603},{"Bonus":0,"Continent":"K56","ID":22707,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22707","ServerKey":"pl181","X":628,"Y":576},{"Bonus":0,"Continent":"K43","ID":22708,"Name":"A0136","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22708","ServerKey":"pl181","X":348,"Y":495},{"Bonus":0,"Continent":"K64","ID":22709,"Name":"A006","PlayerID":699383279,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22709","ServerKey":"pl181","X":474,"Y":640},{"Bonus":0,"Continent":"K53","ID":22710,"Name":"040","PlayerID":8908002,"Points":8153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22710","ServerKey":"pl181","X":371,"Y":567},{"Bonus":0,"Continent":"K53","ID":22711,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22711","ServerKey":"pl181","X":351,"Y":530},{"Bonus":0,"Continent":"K64","ID":22712,"Name":"Jednak wolę gofry","PlayerID":848913998,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22712","ServerKey":"pl181","X":430,"Y":635},{"Bonus":0,"Continent":"K53","ID":22713,"Name":"Wioska 03","PlayerID":699621601,"Points":3422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22713","ServerKey":"pl181","X":384,"Y":589},{"Bonus":0,"Continent":"K64","ID":22714,"Name":"043","PlayerID":849084985,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22714","ServerKey":"pl181","X":444,"Y":640},{"Bonus":0,"Continent":"K66","ID":22715,"Name":"kropka.","PlayerID":699778867,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22715","ServerKey":"pl181","X":601,"Y":611},{"Bonus":0,"Continent":"K34","ID":22717,"Name":"#0002 Farmer155","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22717","ServerKey":"pl181","X":466,"Y":352},{"Bonus":0,"Continent":"K43","ID":22718,"Name":"[C]_[005] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22718","ServerKey":"pl181","X":352,"Y":475},{"Bonus":0,"Continent":"K55","ID":22719,"Name":"CALL 987","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22719","ServerKey":"pl181","X":555,"Y":550},{"Bonus":0,"Continent":"K35","ID":22720,"Name":"Lord Lord Franek .#215","PlayerID":698420691,"Points":9250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22720","ServerKey":"pl181","X":500,"Y":349},{"Bonus":4,"Continent":"K56","ID":22721,"Name":"023","PlayerID":849095227,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22721","ServerKey":"pl181","X":636,"Y":555},{"Bonus":0,"Continent":"K53","ID":22722,"Name":"A004.Wioska barbarzyƄska","PlayerID":699665152,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22722","ServerKey":"pl181","X":392,"Y":597},{"Bonus":0,"Continent":"K34","ID":22723,"Name":"c 087d","PlayerID":3909522,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22723","ServerKey":"pl181","X":411,"Y":383},{"Bonus":0,"Continent":"K53","ID":22724,"Name":"Klinton","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22724","ServerKey":"pl181","X":374,"Y":576},{"Bonus":0,"Continent":"K43","ID":22725,"Name":"--009--","PlayerID":698884287,"Points":7734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22725","ServerKey":"pl181","X":381,"Y":408},{"Bonus":0,"Continent":"K56","ID":22726,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22726","ServerKey":"pl181","X":632,"Y":574},{"Bonus":0,"Continent":"K56","ID":22727,"Name":"057","PlayerID":849095227,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22727","ServerKey":"pl181","X":636,"Y":562},{"Bonus":0,"Continent":"K64","ID":22728,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22728","ServerKey":"pl181","X":470,"Y":651},{"Bonus":0,"Continent":"K43","ID":22729,"Name":"089","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22729","ServerKey":"pl181","X":355,"Y":459},{"Bonus":0,"Continent":"K53","ID":22730,"Name":"035 #Aquel","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22730","ServerKey":"pl181","X":371,"Y":569},{"Bonus":0,"Continent":"K66","ID":22731,"Name":"~~048~~","PlayerID":7829201,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22731","ServerKey":"pl181","X":603,"Y":611},{"Bonus":0,"Continent":"K36","ID":22732,"Name":"C009","PlayerID":699761749,"Points":5973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22732","ServerKey":"pl181","X":600,"Y":386},{"Bonus":0,"Continent":"K53","ID":22733,"Name":"061","PlayerID":8908002,"Points":4568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22733","ServerKey":"pl181","X":364,"Y":536},{"Bonus":0,"Continent":"K46","ID":22734,"Name":"021 Barba","PlayerID":2135129,"Points":9010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22734","ServerKey":"pl181","X":650,"Y":485},{"Bonus":0,"Continent":"K53","ID":22735,"Name":"Wioska barbarzyƄska","PlayerID":699621601,"Points":3685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22735","ServerKey":"pl181","X":380,"Y":587},{"Bonus":0,"Continent":"K34","ID":22736,"Name":"110","PlayerID":699761749,"Points":9008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22736","ServerKey":"pl181","X":483,"Y":355},{"Bonus":0,"Continent":"K43","ID":22737,"Name":"AB12 Węgry","PlayerID":483145,"Points":4723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22737","ServerKey":"pl181","X":376,"Y":420},{"Bonus":0,"Continent":"K64","ID":22738,"Name":"[004]","PlayerID":698585370,"Points":10191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22738","ServerKey":"pl181","X":456,"Y":641},{"Bonus":0,"Continent":"K35","ID":22739,"Name":"A018","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22739","ServerKey":"pl181","X":590,"Y":379},{"Bonus":0,"Continent":"K56","ID":22741,"Name":"[147]","PlayerID":8000875,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22741","ServerKey":"pl181","X":636,"Y":567},{"Bonus":0,"Continent":"K64","ID":22742,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22742","ServerKey":"pl181","X":417,"Y":630},{"Bonus":0,"Continent":"K33","ID":22743,"Name":"c kinderki","PlayerID":3909522,"Points":8314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22743","ServerKey":"pl181","X":398,"Y":387},{"Bonus":0,"Continent":"K46","ID":22744,"Name":"001. Gotham","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22744","ServerKey":"pl181","X":633,"Y":447},{"Bonus":0,"Continent":"K36","ID":22745,"Name":"Gattacka","PlayerID":699298370,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22745","ServerKey":"pl181","X":605,"Y":396},{"Bonus":0,"Continent":"K65","ID":22746,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22746","ServerKey":"pl181","X":529,"Y":643},{"Bonus":0,"Continent":"K63","ID":22747,"Name":"042.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22747","ServerKey":"pl181","X":398,"Y":618},{"Bonus":0,"Continent":"K35","ID":22748,"Name":"Lord Lord Franek .#191","PlayerID":698420691,"Points":5312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22748","ServerKey":"pl181","X":505,"Y":348},{"Bonus":0,"Continent":"K46","ID":22749,"Name":"Piwna 20","PlayerID":699812007,"Points":5902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22749","ServerKey":"pl181","X":638,"Y":438},{"Bonus":0,"Continent":"K65","ID":22750,"Name":"kathare","PlayerID":873575,"Points":9910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22750","ServerKey":"pl181","X":552,"Y":636},{"Bonus":0,"Continent":"K43","ID":22751,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22751","ServerKey":"pl181","X":376,"Y":413},{"Bonus":0,"Continent":"K53","ID":22752,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22752","ServerKey":"pl181","X":357,"Y":529},{"Bonus":0,"Continent":"K64","ID":22753,"Name":"0121","PlayerID":6910361,"Points":1448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22753","ServerKey":"pl181","X":424,"Y":627},{"Bonus":0,"Continent":"K34","ID":22754,"Name":"K34 - [100] Before Land","PlayerID":699088769,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22754","ServerKey":"pl181","X":448,"Y":359},{"Bonus":0,"Continent":"K65","ID":22755,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22755","ServerKey":"pl181","X":525,"Y":643},{"Bonus":3,"Continent":"K43","ID":22756,"Name":"002 Minas Tirith","PlayerID":8967440,"Points":5569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22756","ServerKey":"pl181","X":385,"Y":401},{"Bonus":0,"Continent":"K35","ID":22757,"Name":"C 002","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22757","ServerKey":"pl181","X":592,"Y":380},{"Bonus":0,"Continent":"K64","ID":22758,"Name":"Hydrawydra","PlayerID":849095601,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22758","ServerKey":"pl181","X":426,"Y":616},{"Bonus":0,"Continent":"K34","ID":22759,"Name":"149...ksiÄ…ĆŒÄ™ plemienia","PlayerID":6920960,"Points":8481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22759","ServerKey":"pl181","X":453,"Y":359},{"Bonus":0,"Continent":"K34","ID":22760,"Name":"c 011 PrzystaƄ 4","PlayerID":3909522,"Points":10328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22760","ServerKey":"pl181","X":413,"Y":377},{"Bonus":0,"Continent":"K35","ID":22761,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22761","ServerKey":"pl181","X":570,"Y":370},{"Bonus":0,"Continent":"K34","ID":22762,"Name":"032","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22762","ServerKey":"pl181","X":479,"Y":352},{"Bonus":0,"Continent":"K35","ID":22763,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22763","ServerKey":"pl181","X":570,"Y":365},{"Bonus":0,"Continent":"K53","ID":22764,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22764","ServerKey":"pl181","X":357,"Y":532},{"Bonus":0,"Continent":"K35","ID":22765,"Name":"Lord Lord Franek .#226","PlayerID":698420691,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22765","ServerKey":"pl181","X":523,"Y":355},{"Bonus":0,"Continent":"K35","ID":22766,"Name":"A034","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22766","ServerKey":"pl181","X":577,"Y":372},{"Bonus":0,"Continent":"K66","ID":22767,"Name":"~~024~~","PlayerID":7829201,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22767","ServerKey":"pl181","X":604,"Y":606},{"Bonus":5,"Continent":"K43","ID":22768,"Name":"Lord Arsey I","PlayerID":698349125,"Points":2819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22768","ServerKey":"pl181","X":371,"Y":424},{"Bonus":0,"Continent":"K65","ID":22770,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22770","ServerKey":"pl181","X":541,"Y":641},{"Bonus":0,"Continent":"K35","ID":22771,"Name":"Kikut","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22771","ServerKey":"pl181","X":515,"Y":349},{"Bonus":0,"Continent":"K43","ID":22772,"Name":"Knowhere","PlayerID":699723284,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22772","ServerKey":"pl181","X":376,"Y":489},{"Bonus":0,"Continent":"K63","ID":22773,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22773","ServerKey":"pl181","X":385,"Y":604},{"Bonus":0,"Continent":"K65","ID":22774,"Name":"SSJ 049","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22774","ServerKey":"pl181","X":515,"Y":647},{"Bonus":0,"Continent":"K46","ID":22775,"Name":"29. KaruTown","PlayerID":699298370,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22775","ServerKey":"pl181","X":616,"Y":403},{"Bonus":0,"Continent":"K64","ID":22776,"Name":"Ashemark","PlayerID":699736927,"Points":9425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22776","ServerKey":"pl181","X":452,"Y":639},{"Bonus":0,"Continent":"K53","ID":22777,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22777","ServerKey":"pl181","X":355,"Y":511},{"Bonus":9,"Continent":"K64","ID":22778,"Name":"027","PlayerID":849084985,"Points":10033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22778","ServerKey":"pl181","X":451,"Y":638},{"Bonus":0,"Continent":"K56","ID":22779,"Name":"Hiszpan1","PlayerID":7038651,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22779","ServerKey":"pl181","X":646,"Y":543},{"Bonus":0,"Continent":"K64","ID":22780,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22780","ServerKey":"pl181","X":403,"Y":614},{"Bonus":0,"Continent":"K46","ID":22782,"Name":"Wioska 9","PlayerID":848935020,"Points":7605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22782","ServerKey":"pl181","X":648,"Y":468},{"Bonus":4,"Continent":"K33","ID":22783,"Name":"A-014","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22783","ServerKey":"pl181","X":391,"Y":394},{"Bonus":0,"Continent":"K34","ID":22784,"Name":"0007","PlayerID":699402816,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22784","ServerKey":"pl181","X":403,"Y":383},{"Bonus":0,"Continent":"K43","ID":22785,"Name":"od biedy do potęgi 5","PlayerID":849094603,"Points":3592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22785","ServerKey":"pl181","X":362,"Y":443},{"Bonus":0,"Continent":"K53","ID":22786,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22786","ServerKey":"pl181","X":346,"Y":506},{"Bonus":0,"Continent":"K65","ID":22787,"Name":"- 224 - RR","PlayerID":849018239,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22787","ServerKey":"pl181","X":586,"Y":620},{"Bonus":0,"Continent":"K53","ID":22788,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":6240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22788","ServerKey":"pl181","X":369,"Y":572},{"Bonus":0,"Continent":"K56","ID":22790,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22790","ServerKey":"pl181","X":640,"Y":545},{"Bonus":0,"Continent":"K64","ID":22791,"Name":"Pobozowisko","PlayerID":699513260,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22791","ServerKey":"pl181","X":407,"Y":614},{"Bonus":0,"Continent":"K65","ID":22792,"Name":"- 346 - RR","PlayerID":849018239,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22792","ServerKey":"pl181","X":596,"Y":610},{"Bonus":0,"Continent":"K34","ID":22793,"Name":"038","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22793","ServerKey":"pl181","X":481,"Y":350},{"Bonus":0,"Continent":"K34","ID":22794,"Name":"021","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22794","ServerKey":"pl181","X":488,"Y":349},{"Bonus":0,"Continent":"K34","ID":22795,"Name":"118","PlayerID":7271812,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22795","ServerKey":"pl181","X":474,"Y":357},{"Bonus":0,"Continent":"K35","ID":22796,"Name":"066 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22796","ServerKey":"pl181","X":537,"Y":353},{"Bonus":0,"Continent":"K35","ID":22797,"Name":"02 Forteca","PlayerID":849108780,"Points":9098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22797","ServerKey":"pl181","X":548,"Y":358},{"Bonus":0,"Continent":"K65","ID":22798,"Name":"- 239 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22798","ServerKey":"pl181","X":592,"Y":618},{"Bonus":0,"Continent":"K65","ID":22799,"Name":"kathare","PlayerID":873575,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22799","ServerKey":"pl181","X":559,"Y":637},{"Bonus":0,"Continent":"K46","ID":22800,"Name":"040","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22800","ServerKey":"pl181","X":652,"Y":484},{"Bonus":0,"Continent":"K64","ID":22801,"Name":"Posterunek 002","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22801","ServerKey":"pl181","X":400,"Y":613},{"Bonus":0,"Continent":"K53","ID":22802,"Name":"025 181","PlayerID":698807570,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22802","ServerKey":"pl181","X":354,"Y":500},{"Bonus":0,"Continent":"K56","ID":22803,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22803","ServerKey":"pl181","X":622,"Y":579},{"Bonus":0,"Continent":"K65","ID":22804,"Name":"kathare","PlayerID":873575,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22804","ServerKey":"pl181","X":551,"Y":638},{"Bonus":0,"Continent":"K53","ID":22805,"Name":"021","PlayerID":6853693,"Points":5749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22805","ServerKey":"pl181","X":359,"Y":537},{"Bonus":0,"Continent":"K43","ID":22806,"Name":"--008--","PlayerID":698884287,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22806","ServerKey":"pl181","X":382,"Y":413},{"Bonus":0,"Continent":"K46","ID":22807,"Name":"0060","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22807","ServerKey":"pl181","X":623,"Y":415},{"Bonus":0,"Continent":"K56","ID":22808,"Name":"026","PlayerID":698786826,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22808","ServerKey":"pl181","X":614,"Y":597},{"Bonus":0,"Continent":"K54","ID":22809,"Name":"0203","PlayerID":7085510,"Points":6383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22809","ServerKey":"pl181","X":405,"Y":513},{"Bonus":0,"Continent":"K64","ID":22811,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":3842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22811","ServerKey":"pl181","X":414,"Y":625},{"Bonus":0,"Continent":"K46","ID":22812,"Name":"021. Pacanowo","PlayerID":849095599,"Points":9413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22812","ServerKey":"pl181","X":637,"Y":435},{"Bonus":0,"Continent":"K46","ID":22813,"Name":"027 Wioska","PlayerID":699671454,"Points":9082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22813","ServerKey":"pl181","X":646,"Y":490},{"Bonus":0,"Continent":"K53","ID":22814,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22814","ServerKey":"pl181","X":355,"Y":524},{"Bonus":0,"Continent":"K53","ID":22815,"Name":"deff 100 %","PlayerID":849012521,"Points":8131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22815","ServerKey":"pl181","X":374,"Y":580},{"Bonus":0,"Continent":"K64","ID":22816,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22816","ServerKey":"pl181","X":498,"Y":649},{"Bonus":0,"Continent":"K43","ID":22817,"Name":"031 VW GD --011--","PlayerID":3108144,"Points":3163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22817","ServerKey":"pl181","X":380,"Y":409},{"Bonus":0,"Continent":"K46","ID":22818,"Name":"0049","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22818","ServerKey":"pl181","X":617,"Y":409},{"Bonus":0,"Continent":"K35","ID":22819,"Name":"004 Wioska konri2008","PlayerID":699509239,"Points":5457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22819","ServerKey":"pl181","X":568,"Y":372},{"Bonus":0,"Continent":"K65","ID":22820,"Name":"**Skill","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22820","ServerKey":"pl181","X":571,"Y":632},{"Bonus":0,"Continent":"K53","ID":22821,"Name":"007","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22821","ServerKey":"pl181","X":377,"Y":533},{"Bonus":0,"Continent":"K65","ID":22822,"Name":"*Lebioda","PlayerID":699443920,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22822","ServerKey":"pl181","X":573,"Y":632},{"Bonus":0,"Continent":"K64","ID":22823,"Name":"Mexico","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22823","ServerKey":"pl181","X":455,"Y":642},{"Bonus":0,"Continent":"K64","ID":22824,"Name":"0035 Wioska barbarzyƄska","PlayerID":9060641,"Points":6353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22824","ServerKey":"pl181","X":405,"Y":615},{"Bonus":0,"Continent":"K64","ID":22825,"Name":"Wioska shokode","PlayerID":849037699,"Points":6430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22825","ServerKey":"pl181","X":486,"Y":657},{"Bonus":0,"Continent":"K35","ID":22826,"Name":"Lord Lord Franek .#136","PlayerID":698420691,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22826","ServerKey":"pl181","X":506,"Y":351},{"Bonus":0,"Continent":"K53","ID":22827,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22827","ServerKey":"pl181","X":361,"Y":563},{"Bonus":0,"Continent":"K46","ID":22828,"Name":"B023","PlayerID":9314079,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22828","ServerKey":"pl181","X":649,"Y":487},{"Bonus":0,"Continent":"K56","ID":22829,"Name":"jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22829","ServerKey":"pl181","X":630,"Y":569},{"Bonus":0,"Continent":"K35","ID":22830,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22830","ServerKey":"pl181","X":569,"Y":366},{"Bonus":0,"Continent":"K43","ID":22831,"Name":"MELISKA","PlayerID":699794765,"Points":8802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22831","ServerKey":"pl181","X":357,"Y":464},{"Bonus":0,"Continent":"K56","ID":22832,"Name":"Jaaa","PlayerID":698635863,"Points":10389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22832","ServerKey":"pl181","X":622,"Y":588},{"Bonus":0,"Continent":"K46","ID":22833,"Name":"67. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22833","ServerKey":"pl181","X":641,"Y":450},{"Bonus":0,"Continent":"K35","ID":22834,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22834","ServerKey":"pl181","X":569,"Y":365},{"Bonus":0,"Continent":"K34","ID":22835,"Name":"#0039 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22835","ServerKey":"pl181","X":465,"Y":356},{"Bonus":0,"Continent":"K46","ID":22836,"Name":"#.29 Wioska barbarzyƄska","PlayerID":849054582,"Points":4554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22836","ServerKey":"pl181","X":647,"Y":472},{"Bonus":0,"Continent":"K46","ID":22837,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22837","ServerKey":"pl181","X":646,"Y":461},{"Bonus":0,"Continent":"K34","ID":22838,"Name":"0038","PlayerID":699431255,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22838","ServerKey":"pl181","X":450,"Y":363},{"Bonus":0,"Continent":"K34","ID":22839,"Name":"Szlachcic","PlayerID":698388578,"Points":8856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22839","ServerKey":"pl181","X":426,"Y":369},{"Bonus":0,"Continent":"K63","ID":22840,"Name":"Pobozowisko","PlayerID":699513260,"Points":9007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22840","ServerKey":"pl181","X":392,"Y":606},{"Bonus":0,"Continent":"K53","ID":22841,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22841","ServerKey":"pl181","X":356,"Y":547},{"Bonus":0,"Continent":"K35","ID":22842,"Name":"C 003","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22842","ServerKey":"pl181","X":595,"Y":383},{"Bonus":2,"Continent":"K46","ID":22843,"Name":"WIOSKA","PlayerID":699429153,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22843","ServerKey":"pl181","X":631,"Y":438},{"Bonus":0,"Continent":"K43","ID":22844,"Name":"A0167","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22844","ServerKey":"pl181","X":353,"Y":482},{"Bonus":0,"Continent":"K56","ID":22845,"Name":"059","PlayerID":698786826,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22845","ServerKey":"pl181","X":618,"Y":586},{"Bonus":0,"Continent":"K35","ID":22846,"Name":"Wioska cacciatore","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22846","ServerKey":"pl181","X":534,"Y":381},{"Bonus":0,"Continent":"K65","ID":22847,"Name":"0377","PlayerID":698659980,"Points":8922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22847","ServerKey":"pl181","X":581,"Y":623},{"Bonus":0,"Continent":"K56","ID":22848,"Name":"054","PlayerID":699351301,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22848","ServerKey":"pl181","X":646,"Y":537},{"Bonus":0,"Continent":"K63","ID":22849,"Name":"-007-","PlayerID":699097885,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22849","ServerKey":"pl181","X":389,"Y":602},{"Bonus":0,"Continent":"K46","ID":22850,"Name":"#.13 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22850","ServerKey":"pl181","X":648,"Y":475},{"Bonus":0,"Continent":"K34","ID":22851,"Name":"A-008","PlayerID":8419570,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22851","ServerKey":"pl181","X":400,"Y":398},{"Bonus":0,"Continent":"K43","ID":22852,"Name":"Wioska 1","PlayerID":6171569,"Points":4035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22852","ServerKey":"pl181","X":390,"Y":400},{"Bonus":0,"Continent":"K35","ID":22854,"Name":".:057:.ƁOBUZIK","PlayerID":848934935,"Points":5598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22854","ServerKey":"pl181","X":553,"Y":364},{"Bonus":0,"Continent":"K43","ID":22855,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22855","ServerKey":"pl181","X":376,"Y":412},{"Bonus":0,"Continent":"K46","ID":22856,"Name":"019. Florencja","PlayerID":849095599,"Points":9066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22856","ServerKey":"pl181","X":631,"Y":436},{"Bonus":0,"Continent":"K35","ID":22857,"Name":"05 Nowa Szpica","PlayerID":849108780,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22857","ServerKey":"pl181","X":544,"Y":359},{"Bonus":0,"Continent":"K64","ID":22858,"Name":"|A| Lightgulch","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22858","ServerKey":"pl181","X":479,"Y":650},{"Bonus":0,"Continent":"K53","ID":22859,"Name":"Pobozowisko","PlayerID":699513260,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22859","ServerKey":"pl181","X":386,"Y":595},{"Bonus":0,"Continent":"K64","ID":22860,"Name":"Ave Why!","PlayerID":698585370,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22860","ServerKey":"pl181","X":479,"Y":648},{"Bonus":0,"Continent":"K46","ID":22861,"Name":"#040.521|499","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22861","ServerKey":"pl181","X":640,"Y":450},{"Bonus":0,"Continent":"K43","ID":22862,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22862","ServerKey":"pl181","X":351,"Y":472},{"Bonus":4,"Continent":"K65","ID":22863,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22863","ServerKey":"pl181","X":537,"Y":647},{"Bonus":0,"Continent":"K35","ID":22864,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":12138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22864","ServerKey":"pl181","X":510,"Y":349},{"Bonus":0,"Continent":"K46","ID":22865,"Name":"116","PlayerID":7085502,"Points":9303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22865","ServerKey":"pl181","X":629,"Y":425},{"Bonus":0,"Continent":"K65","ID":22866,"Name":"SSJ 051","PlayerID":699054373,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22866","ServerKey":"pl181","X":503,"Y":645},{"Bonus":0,"Continent":"K46","ID":22867,"Name":"D 010","PlayerID":8078914,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22867","ServerKey":"pl181","X":650,"Y":499},{"Bonus":1,"Continent":"K64","ID":22868,"Name":"Ave Why!","PlayerID":698585370,"Points":7930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22868","ServerKey":"pl181","X":438,"Y":634},{"Bonus":0,"Continent":"K64","ID":22869,"Name":"084","PlayerID":849084985,"Points":10286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22869","ServerKey":"pl181","X":441,"Y":640},{"Bonus":0,"Continent":"K35","ID":22870,"Name":"031 030","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22870","ServerKey":"pl181","X":543,"Y":359},{"Bonus":0,"Continent":"K64","ID":22871,"Name":"Osada 003","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22871","ServerKey":"pl181","X":400,"Y":615},{"Bonus":0,"Continent":"K65","ID":22872,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22872","ServerKey":"pl181","X":535,"Y":642},{"Bonus":0,"Continent":"K34","ID":22874,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":8854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22874","ServerKey":"pl181","X":408,"Y":382},{"Bonus":0,"Continent":"K53","ID":22875,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22875","ServerKey":"pl181","X":352,"Y":524},{"Bonus":0,"Continent":"K64","ID":22876,"Name":"015","PlayerID":699783765,"Points":4765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22876","ServerKey":"pl181","X":429,"Y":628},{"Bonus":0,"Continent":"K34","ID":22877,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22877","ServerKey":"pl181","X":424,"Y":373},{"Bonus":0,"Continent":"K34","ID":22878,"Name":"115","PlayerID":7271812,"Points":7155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22878","ServerKey":"pl181","X":478,"Y":354},{"Bonus":0,"Continent":"K46","ID":22879,"Name":"042","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22879","ServerKey":"pl181","X":651,"Y":484},{"Bonus":0,"Continent":"K53","ID":22881,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22881","ServerKey":"pl181","X":349,"Y":502},{"Bonus":0,"Continent":"K56","ID":22882,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22882","ServerKey":"pl181","X":632,"Y":575},{"Bonus":0,"Continent":"K46","ID":22883,"Name":"42. KaruTown","PlayerID":699298370,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22883","ServerKey":"pl181","X":615,"Y":400},{"Bonus":0,"Continent":"K43","ID":22884,"Name":"Wioska Barba II","PlayerID":698884287,"Points":7453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22884","ServerKey":"pl181","X":382,"Y":407},{"Bonus":0,"Continent":"K35","ID":22885,"Name":"A002","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22885","ServerKey":"pl181","X":597,"Y":385},{"Bonus":0,"Continent":"K35","ID":22886,"Name":"immortale bo morale","PlayerID":9140898,"Points":5426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22886","ServerKey":"pl181","X":511,"Y":350},{"Bonus":0,"Continent":"K43","ID":22887,"Name":"030","PlayerID":6258092,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22887","ServerKey":"pl181","X":353,"Y":470},{"Bonus":0,"Continent":"K63","ID":22888,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22888","ServerKey":"pl181","X":392,"Y":601},{"Bonus":0,"Continent":"K35","ID":22889,"Name":"Tylos","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22889","ServerKey":"pl181","X":549,"Y":363},{"Bonus":0,"Continent":"K64","ID":22890,"Name":"011","PlayerID":699783765,"Points":5282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22890","ServerKey":"pl181","X":424,"Y":631},{"Bonus":0,"Continent":"K65","ID":22891,"Name":"- 329 - RR","PlayerID":849018239,"Points":9049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22891","ServerKey":"pl181","X":593,"Y":613},{"Bonus":0,"Continent":"K46","ID":22892,"Name":"30. KaruTown","PlayerID":699298370,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22892","ServerKey":"pl181","X":615,"Y":405},{"Bonus":0,"Continent":"K65","ID":22893,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22893","ServerKey":"pl181","X":565,"Y":633},{"Bonus":0,"Continent":"K34","ID":22894,"Name":"Szlachcic","PlayerID":698388578,"Points":6644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22894","ServerKey":"pl181","X":415,"Y":378},{"Bonus":6,"Continent":"K64","ID":22895,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22895","ServerKey":"pl181","X":450,"Y":644},{"Bonus":0,"Continent":"K64","ID":22896,"Name":"ETAT Z POƚREDNIAKA","PlayerID":848913998,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22896","ServerKey":"pl181","X":423,"Y":620},{"Bonus":0,"Continent":"K46","ID":22897,"Name":"054. Gades","PlayerID":849091866,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22897","ServerKey":"pl181","X":645,"Y":471},{"Bonus":0,"Continent":"K65","ID":22898,"Name":"*Lajs","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22898","ServerKey":"pl181","X":577,"Y":636},{"Bonus":0,"Continent":"K43","ID":22899,"Name":"100","PlayerID":6258092,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22899","ServerKey":"pl181","X":356,"Y":462},{"Bonus":0,"Continent":"K64","ID":22900,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22900","ServerKey":"pl181","X":412,"Y":631},{"Bonus":0,"Continent":"K46","ID":22901,"Name":"*0025 Baraki","PlayerID":8459255,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22901","ServerKey":"pl181","X":626,"Y":425},{"Bonus":0,"Continent":"K35","ID":22902,"Name":"Lord Lord Franek .#197","PlayerID":698420691,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22902","ServerKey":"pl181","X":505,"Y":352},{"Bonus":0,"Continent":"K35","ID":22903,"Name":"A014","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22903","ServerKey":"pl181","X":580,"Y":371},{"Bonus":0,"Continent":"K43","ID":22905,"Name":"028 VW GD --017--","PlayerID":3108144,"Points":3941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22905","ServerKey":"pl181","X":370,"Y":422},{"Bonus":0,"Continent":"K35","ID":22906,"Name":"A007","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22906","ServerKey":"pl181","X":581,"Y":374},{"Bonus":0,"Continent":"K34","ID":22907,"Name":"c Sztum","PlayerID":3909522,"Points":8288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22907","ServerKey":"pl181","X":400,"Y":389},{"Bonus":0,"Continent":"K35","ID":22908,"Name":"Lord Lord Franek .#044","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22908","ServerKey":"pl181","X":533,"Y":353},{"Bonus":0,"Continent":"K64","ID":22909,"Name":"Wioska DamianDK","PlayerID":849095642,"Points":3330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22909","ServerKey":"pl181","X":416,"Y":622},{"Bonus":0,"Continent":"K56","ID":22910,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22910","ServerKey":"pl181","X":631,"Y":578},{"Bonus":0,"Continent":"K53","ID":22911,"Name":"x012","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22911","ServerKey":"pl181","X":359,"Y":567},{"Bonus":0,"Continent":"K65","ID":22912,"Name":"006. :D","PlayerID":848928624,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22912","ServerKey":"pl181","X":506,"Y":647},{"Bonus":0,"Continent":"K34","ID":22913,"Name":"103","PlayerID":7271812,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22913","ServerKey":"pl181","X":476,"Y":355},{"Bonus":0,"Continent":"K46","ID":22914,"Name":"BACÓWKA |009|","PlayerID":7394371,"Points":11989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22914","ServerKey":"pl181","X":620,"Y":408},{"Bonus":0,"Continent":"K46","ID":22915,"Name":"120","PlayerID":7085502,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22915","ServerKey":"pl181","X":624,"Y":417},{"Bonus":0,"Continent":"K35","ID":22916,"Name":"Wioska Trer Ceiri","PlayerID":698350371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22916","ServerKey":"pl181","X":539,"Y":385},{"Bonus":0,"Continent":"K35","ID":22917,"Name":"Lord Lord Franek .#202","PlayerID":698420691,"Points":10483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22917","ServerKey":"pl181","X":504,"Y":350},{"Bonus":0,"Continent":"K65","ID":22918,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22918","ServerKey":"pl181","X":526,"Y":644},{"Bonus":0,"Continent":"K46","ID":22919,"Name":"024 Legio I Claudia","PlayerID":699878150,"Points":5373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22919","ServerKey":"pl181","X":650,"Y":489},{"Bonus":0,"Continent":"K44","ID":22920,"Name":"Monetki","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22920","ServerKey":"pl181","X":468,"Y":408},{"Bonus":0,"Continent":"K64","ID":22921,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22921","ServerKey":"pl181","X":483,"Y":645},{"Bonus":0,"Continent":"K64","ID":22922,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22922","ServerKey":"pl181","X":417,"Y":628},{"Bonus":0,"Continent":"K36","ID":22924,"Name":"Szczęƛliwego Nowego Roku ;)","PlayerID":699368887,"Points":8352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22924","ServerKey":"pl181","X":610,"Y":396},{"Bonus":0,"Continent":"K43","ID":22925,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22925","ServerKey":"pl181","X":362,"Y":439},{"Bonus":0,"Continent":"K64","ID":22926,"Name":"ave why!","PlayerID":698143931,"Points":9269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22926","ServerKey":"pl181","X":434,"Y":636},{"Bonus":0,"Continent":"K64","ID":22927,"Name":"0118","PlayerID":6910361,"Points":3923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22927","ServerKey":"pl181","X":423,"Y":625},{"Bonus":0,"Continent":"K35","ID":22928,"Name":"CSA","PlayerID":7651093,"Points":8592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22928","ServerKey":"pl181","X":518,"Y":353},{"Bonus":0,"Continent":"K53","ID":22929,"Name":"Skazany Na Instynkt","PlayerID":8004076,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22929","ServerKey":"pl181","X":368,"Y":575},{"Bonus":0,"Continent":"K46","ID":22930,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22930","ServerKey":"pl181","X":619,"Y":400},{"Bonus":0,"Continent":"K63","ID":22931,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22931","ServerKey":"pl181","X":393,"Y":600},{"Bonus":0,"Continent":"K53","ID":22932,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22932","ServerKey":"pl181","X":352,"Y":514},{"Bonus":0,"Continent":"K46","ID":22933,"Name":"0033","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22933","ServerKey":"pl181","X":623,"Y":422},{"Bonus":0,"Continent":"K65","ID":22934,"Name":"0162","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22934","ServerKey":"pl181","X":537,"Y":648},{"Bonus":0,"Continent":"K34","ID":22935,"Name":"North Barba 031","PlayerID":699796330,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22935","ServerKey":"pl181","X":431,"Y":371},{"Bonus":0,"Continent":"K43","ID":22936,"Name":"Wioska Smarze","PlayerID":8419570,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22936","ServerKey":"pl181","X":386,"Y":401},{"Bonus":0,"Continent":"K43","ID":22937,"Name":"M181_055","PlayerID":393668,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22937","ServerKey":"pl181","X":365,"Y":431},{"Bonus":0,"Continent":"K53","ID":22938,"Name":"-005","PlayerID":9253494,"Points":6301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22938","ServerKey":"pl181","X":358,"Y":543},{"Bonus":0,"Continent":"K65","ID":22939,"Name":"0470","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22939","ServerKey":"pl181","X":536,"Y":648},{"Bonus":5,"Continent":"K65","ID":22940,"Name":"0089","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22940","ServerKey":"pl181","X":532,"Y":648},{"Bonus":0,"Continent":"K64","ID":22941,"Name":"Jednak wolę gofry","PlayerID":848913998,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22941","ServerKey":"pl181","X":437,"Y":637},{"Bonus":0,"Continent":"K53","ID":22942,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":7283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22942","ServerKey":"pl181","X":370,"Y":569},{"Bonus":4,"Continent":"K46","ID":22943,"Name":"034.","PlayerID":849094609,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22943","ServerKey":"pl181","X":645,"Y":481},{"Bonus":0,"Continent":"K35","ID":22944,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22944","ServerKey":"pl181","X":562,"Y":367},{"Bonus":0,"Continent":"K65","ID":22945,"Name":"Prawa","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22945","ServerKey":"pl181","X":545,"Y":639},{"Bonus":0,"Continent":"K56","ID":22946,"Name":"[030]","PlayerID":698305474,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22946","ServerKey":"pl181","X":641,"Y":528},{"Bonus":0,"Continent":"K53","ID":22947,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22947","ServerKey":"pl181","X":372,"Y":576},{"Bonus":0,"Continent":"K34","ID":22948,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":6569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22948","ServerKey":"pl181","X":482,"Y":354},{"Bonus":0,"Continent":"K64","ID":22949,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22949","ServerKey":"pl181","X":420,"Y":626},{"Bonus":0,"Continent":"K56","ID":22950,"Name":"B.006","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22950","ServerKey":"pl181","X":647,"Y":507},{"Bonus":0,"Continent":"K34","ID":22952,"Name":"019","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22952","ServerKey":"pl181","X":489,"Y":348},{"Bonus":0,"Continent":"K35","ID":22953,"Name":"A019","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22953","ServerKey":"pl181","X":588,"Y":378},{"Bonus":0,"Continent":"K35","ID":22954,"Name":"Wyngiel we wsi","PlayerID":699072129,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22954","ServerKey":"pl181","X":556,"Y":359},{"Bonus":0,"Continent":"K56","ID":22955,"Name":"~~016~~","PlayerID":7829201,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22955","ServerKey":"pl181","X":610,"Y":596},{"Bonus":0,"Continent":"K65","ID":22956,"Name":"mys","PlayerID":699828685,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22956","ServerKey":"pl181","X":565,"Y":634},{"Bonus":0,"Continent":"K34","ID":22957,"Name":"030","PlayerID":698739350,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22957","ServerKey":"pl181","X":480,"Y":353},{"Bonus":0,"Continent":"K64","ID":22958,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22958","ServerKey":"pl181","X":420,"Y":629},{"Bonus":0,"Continent":"K56","ID":22959,"Name":"034","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22959","ServerKey":"pl181","X":644,"Y":544},{"Bonus":0,"Continent":"K35","ID":22960,"Name":"134 DaSilva2402","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22960","ServerKey":"pl181","X":518,"Y":352},{"Bonus":0,"Continent":"K43","ID":22961,"Name":"A0158","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22961","ServerKey":"pl181","X":352,"Y":486},{"Bonus":0,"Continent":"K66","ID":22962,"Name":"~~009~~","PlayerID":7829201,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22962","ServerKey":"pl181","X":600,"Y":601},{"Bonus":0,"Continent":"K64","ID":22963,"Name":"B003","PlayerID":699383279,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22963","ServerKey":"pl181","X":400,"Y":610},{"Bonus":0,"Continent":"K64","ID":22964,"Name":"KUZYN KUZYNOWI KUZYNEM","PlayerID":848913998,"Points":6109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22964","ServerKey":"pl181","X":429,"Y":638},{"Bonus":0,"Continent":"K65","ID":22965,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22965","ServerKey":"pl181","X":526,"Y":646},{"Bonus":0,"Continent":"K34","ID":22966,"Name":"015...PƁD WSCH","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22966","ServerKey":"pl181","X":465,"Y":357},{"Bonus":0,"Continent":"K53","ID":22967,"Name":"K07","PlayerID":849090130,"Points":2521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22967","ServerKey":"pl181","X":368,"Y":577},{"Bonus":0,"Continent":"K35","ID":22968,"Name":"Ambrela 014","PlayerID":698823542,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22968","ServerKey":"pl181","X":580,"Y":378},{"Bonus":0,"Continent":"K64","ID":22969,"Name":"036","PlayerID":849084985,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22969","ServerKey":"pl181","X":447,"Y":640},{"Bonus":0,"Continent":"K53","ID":22970,"Name":"!!!off 100 %","PlayerID":849012521,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22970","ServerKey":"pl181","X":357,"Y":563},{"Bonus":0,"Continent":"K34","ID":22971,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22971","ServerKey":"pl181","X":406,"Y":384},{"Bonus":0,"Continent":"K56","ID":22972,"Name":"600","PlayerID":7038651,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22972","ServerKey":"pl181","X":645,"Y":545},{"Bonus":0,"Continent":"K46","ID":22973,"Name":"117","PlayerID":7085502,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22973","ServerKey":"pl181","X":623,"Y":413},{"Bonus":0,"Continent":"K34","ID":22974,"Name":"042...CENTRUM_POƁUDNIE","PlayerID":6920960,"Points":10315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22974","ServerKey":"pl181","X":457,"Y":356},{"Bonus":0,"Continent":"K56","ID":22975,"Name":"027","PlayerID":698786826,"Points":8283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22975","ServerKey":"pl181","X":612,"Y":594},{"Bonus":0,"Continent":"K56","ID":22976,"Name":"B.032","PlayerID":9188016,"Points":7608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22976","ServerKey":"pl181","X":650,"Y":515},{"Bonus":0,"Continent":"K65","ID":22977,"Name":"Wioska barbarzyƄska ....","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22977","ServerKey":"pl181","X":578,"Y":630},{"Bonus":0,"Continent":"K53","ID":22978,"Name":"D01..","PlayerID":849090130,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22978","ServerKey":"pl181","X":364,"Y":573},{"Bonus":0,"Continent":"K65","ID":22979,"Name":"007","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22979","ServerKey":"pl181","X":518,"Y":627},{"Bonus":0,"Continent":"K34","ID":22980,"Name":"PrzystaƄ 5","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22980","ServerKey":"pl181","X":405,"Y":382},{"Bonus":0,"Continent":"K53","ID":22981,"Name":"044","PlayerID":6853693,"Points":5951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22981","ServerKey":"pl181","X":360,"Y":539},{"Bonus":0,"Continent":"K64","ID":22982,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22982","ServerKey":"pl181","X":408,"Y":620},{"Bonus":0,"Continent":"K56","ID":22984,"Name":"031","PlayerID":699351301,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22984","ServerKey":"pl181","X":646,"Y":523},{"Bonus":0,"Continent":"K53","ID":22985,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22985","ServerKey":"pl181","X":353,"Y":541},{"Bonus":0,"Continent":"K43","ID":22986,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22986","ServerKey":"pl181","X":351,"Y":477},{"Bonus":0,"Continent":"K43","ID":22987,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22987","ServerKey":"pl181","X":357,"Y":447},{"Bonus":0,"Continent":"K65","ID":22988,"Name":"SSJ 054","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22988","ServerKey":"pl181","X":505,"Y":648},{"Bonus":0,"Continent":"K64","ID":22989,"Name":"Makima2","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22989","ServerKey":"pl181","X":460,"Y":644},{"Bonus":0,"Continent":"K65","ID":22990,"Name":"051","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22990","ServerKey":"pl181","X":516,"Y":650},{"Bonus":0,"Continent":"K65","ID":22991,"Name":"039. Bootes","PlayerID":699703642,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22991","ServerKey":"pl181","X":597,"Y":615},{"Bonus":0,"Continent":"K46","ID":22992,"Name":"#.23 Wioska barbarzyƄska","PlayerID":849054582,"Points":7317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22992","ServerKey":"pl181","X":649,"Y":482},{"Bonus":0,"Continent":"K46","ID":22993,"Name":"#.30 Wioska barbarzyƄska","PlayerID":849054582,"Points":4625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22993","ServerKey":"pl181","X":647,"Y":474},{"Bonus":0,"Continent":"K35","ID":22994,"Name":"A032","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22994","ServerKey":"pl181","X":579,"Y":372},{"Bonus":0,"Continent":"K64","ID":22995,"Name":"0001","PlayerID":6180190,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22995","ServerKey":"pl181","X":487,"Y":639},{"Bonus":0,"Continent":"K65","ID":22996,"Name":"0403","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22996","ServerKey":"pl181","X":549,"Y":639},{"Bonus":0,"Continent":"K64","ID":22997,"Name":"001","PlayerID":272173,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22997","ServerKey":"pl181","X":487,"Y":635},{"Bonus":0,"Continent":"K56","ID":22998,"Name":"B.024","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22998","ServerKey":"pl181","X":646,"Y":517},{"Bonus":0,"Continent":"K63","ID":22999,"Name":"Forteca","PlayerID":848912772,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=22999","ServerKey":"pl181","X":398,"Y":615},{"Bonus":2,"Continent":"K35","ID":23000,"Name":"0021","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23000","ServerKey":"pl181","X":591,"Y":385},{"Bonus":0,"Continent":"K64","ID":23001,"Name":"019|| Hydra","PlayerID":849035525,"Points":9227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23001","ServerKey":"pl181","X":475,"Y":651},{"Bonus":0,"Continent":"K64","ID":23002,"Name":"Alicization 5","PlayerID":699849210,"Points":8490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23002","ServerKey":"pl181","X":461,"Y":647},{"Bonus":0,"Continent":"K56","ID":23003,"Name":"B.027","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23003","ServerKey":"pl181","X":650,"Y":517},{"Bonus":0,"Continent":"K53","ID":23004,"Name":"0467","PlayerID":698659980,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23004","ServerKey":"pl181","X":383,"Y":597},{"Bonus":0,"Continent":"K65","ID":23005,"Name":"- 232 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23005","ServerKey":"pl181","X":594,"Y":618},{"Bonus":0,"Continent":"K66","ID":23006,"Name":"zzzGranica Bledu 02","PlayerID":699778867,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23006","ServerKey":"pl181","X":606,"Y":601},{"Bonus":8,"Continent":"K43","ID":23007,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23007","ServerKey":"pl181","X":362,"Y":446},{"Bonus":0,"Continent":"K65","ID":23008,"Name":"**Zabajone","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23008","ServerKey":"pl181","X":574,"Y":630},{"Bonus":7,"Continent":"K64","ID":23009,"Name":"Makima","PlayerID":699849210,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23009","ServerKey":"pl181","X":463,"Y":645},{"Bonus":0,"Continent":"K46","ID":23010,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23010","ServerKey":"pl181","X":634,"Y":440},{"Bonus":0,"Continent":"K36","ID":23011,"Name":"A 007","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23011","ServerKey":"pl181","X":602,"Y":386},{"Bonus":0,"Continent":"K65","ID":23012,"Name":"017","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23012","ServerKey":"pl181","X":564,"Y":636},{"Bonus":0,"Continent":"K56","ID":23013,"Name":"028","PlayerID":698786826,"Points":7498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23013","ServerKey":"pl181","X":611,"Y":599},{"Bonus":0,"Continent":"K53","ID":23014,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23014","ServerKey":"pl181","X":355,"Y":528},{"Bonus":0,"Continent":"K35","ID":23015,"Name":"Charfa","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23015","ServerKey":"pl181","X":522,"Y":349},{"Bonus":0,"Continent":"K64","ID":23016,"Name":"019.","PlayerID":849034882,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23016","ServerKey":"pl181","X":491,"Y":650},{"Bonus":0,"Continent":"K64","ID":23017,"Name":"077","PlayerID":849084985,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23017","ServerKey":"pl181","X":444,"Y":639},{"Bonus":0,"Continent":"K53","ID":23018,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":8298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23018","ServerKey":"pl181","X":364,"Y":568},{"Bonus":0,"Continent":"K34","ID":23019,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23019","ServerKey":"pl181","X":407,"Y":383},{"Bonus":0,"Continent":"K34","ID":23020,"Name":"116","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23020","ServerKey":"pl181","X":472,"Y":357},{"Bonus":0,"Continent":"K43","ID":23021,"Name":"029 VW GD --018--","PlayerID":3108144,"Points":3668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23021","ServerKey":"pl181","X":371,"Y":423},{"Bonus":8,"Continent":"K65","ID":23022,"Name":"0004","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23022","ServerKey":"pl181","X":544,"Y":646},{"Bonus":0,"Continent":"K65","ID":23023,"Name":"0383","PlayerID":698659980,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23023","ServerKey":"pl181","X":584,"Y":624},{"Bonus":0,"Continent":"K64","ID":23024,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23024","ServerKey":"pl181","X":474,"Y":647},{"Bonus":0,"Continent":"K34","ID":23025,"Name":"Lecymy DUR","PlayerID":6169408,"Points":4730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23025","ServerKey":"pl181","X":436,"Y":363},{"Bonus":0,"Continent":"K65","ID":23026,"Name":"0318","PlayerID":698659980,"Points":8188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23026","ServerKey":"pl181","X":541,"Y":643},{"Bonus":0,"Continent":"K46","ID":23027,"Name":"041","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23027","ServerKey":"pl181","X":649,"Y":484},{"Bonus":0,"Continent":"K53","ID":23029,"Name":"deff 100 %","PlayerID":849012521,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23029","ServerKey":"pl181","X":378,"Y":581},{"Bonus":0,"Continent":"K43","ID":23031,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23031","ServerKey":"pl181","X":352,"Y":472},{"Bonus":0,"Continent":"K34","ID":23032,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23032","ServerKey":"pl181","X":421,"Y":376},{"Bonus":0,"Continent":"K65","ID":23033,"Name":"Sony 911","PlayerID":1415009,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23033","ServerKey":"pl181","X":584,"Y":626},{"Bonus":0,"Continent":"K46","ID":23034,"Name":"#.12 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23034","ServerKey":"pl181","X":650,"Y":479},{"Bonus":0,"Continent":"K46","ID":23035,"Name":"WW28","PlayerID":1715091,"Points":5951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23035","ServerKey":"pl181","X":648,"Y":465},{"Bonus":0,"Continent":"K35","ID":23036,"Name":"03 Forteca ZachĂłd","PlayerID":849108780,"Points":7645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23036","ServerKey":"pl181","X":546,"Y":360},{"Bonus":0,"Continent":"K53","ID":23037,"Name":"Caravaggio","PlayerID":849095992,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23037","ServerKey":"pl181","X":375,"Y":587},{"Bonus":0,"Continent":"K64","ID":23038,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23038","ServerKey":"pl181","X":430,"Y":634},{"Bonus":0,"Continent":"K43","ID":23039,"Name":"AA03 Niemcy","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23039","ServerKey":"pl181","X":380,"Y":412},{"Bonus":0,"Continent":"K34","ID":23041,"Name":"141","PlayerID":6920960,"Points":9062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23041","ServerKey":"pl181","X":452,"Y":358},{"Bonus":0,"Continent":"K34","ID":23042,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23042","ServerKey":"pl181","X":408,"Y":381},{"Bonus":0,"Continent":"K35","ID":23043,"Name":"WE ARE READY!","PlayerID":1553947,"Points":8814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23043","ServerKey":"pl181","X":595,"Y":387},{"Bonus":0,"Continent":"K56","ID":23044,"Name":"031","PlayerID":849095227,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23044","ServerKey":"pl181","X":642,"Y":551},{"Bonus":0,"Continent":"K33","ID":23045,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23045","ServerKey":"pl181","X":396,"Y":398},{"Bonus":0,"Continent":"K34","ID":23046,"Name":"143","PlayerID":6920960,"Points":9121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23046","ServerKey":"pl181","X":452,"Y":357},{"Bonus":0,"Continent":"K43","ID":23047,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23047","ServerKey":"pl181","X":363,"Y":448},{"Bonus":0,"Continent":"K53","ID":23048,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23048","ServerKey":"pl181","X":356,"Y":527},{"Bonus":0,"Continent":"K34","ID":23049,"Name":"WspĂłlna 15","PlayerID":849027025,"Points":6578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23049","ServerKey":"pl181","X":404,"Y":384},{"Bonus":0,"Continent":"K35","ID":23050,"Name":"***001***","PlayerID":8843774,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23050","ServerKey":"pl181","X":506,"Y":348},{"Bonus":0,"Continent":"K56","ID":23051,"Name":"100","PlayerID":7038651,"Points":10960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23051","ServerKey":"pl181","X":646,"Y":544},{"Bonus":0,"Continent":"K43","ID":23052,"Name":"A0196","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23052","ServerKey":"pl181","X":354,"Y":485},{"Bonus":0,"Continent":"K65","ID":23053,"Name":"063","PlayerID":2293376,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23053","ServerKey":"pl181","X":518,"Y":652},{"Bonus":0,"Continent":"K35","ID":23054,"Name":"CSA","PlayerID":7651093,"Points":7903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23054","ServerKey":"pl181","X":513,"Y":350},{"Bonus":7,"Continent":"K34","ID":23055,"Name":"c Moje kochanie","PlayerID":3909522,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23055","ServerKey":"pl181","X":406,"Y":386},{"Bonus":0,"Continent":"K65","ID":23056,"Name":"kathare","PlayerID":873575,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23056","ServerKey":"pl181","X":551,"Y":642},{"Bonus":0,"Continent":"K65","ID":23057,"Name":"kathare","PlayerID":873575,"Points":9896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23057","ServerKey":"pl181","X":553,"Y":641},{"Bonus":1,"Continent":"K34","ID":23058,"Name":"PodziękowaƂ 5","PlayerID":699796330,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23058","ServerKey":"pl181","X":418,"Y":376},{"Bonus":0,"Continent":"K35","ID":23060,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23060","ServerKey":"pl181","X":560,"Y":361},{"Bonus":0,"Continent":"K56","ID":23061,"Name":"029","PlayerID":698786826,"Points":5573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23061","ServerKey":"pl181","X":610,"Y":599},{"Bonus":0,"Continent":"K64","ID":23062,"Name":"047|| Lyra","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23062","ServerKey":"pl181","X":469,"Y":649},{"Bonus":0,"Continent":"K55","ID":23063,"Name":"No sory","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23063","ServerKey":"pl181","X":559,"Y":562},{"Bonus":0,"Continent":"K56","ID":23064,"Name":"M007","PlayerID":848899726,"Points":5131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23064","ServerKey":"pl181","X":653,"Y":507},{"Bonus":0,"Continent":"K56","ID":23066,"Name":"B.062","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23066","ServerKey":"pl181","X":646,"Y":504},{"Bonus":1,"Continent":"K35","ID":23067,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23067","ServerKey":"pl181","X":548,"Y":361},{"Bonus":0,"Continent":"K46","ID":23068,"Name":"123","PlayerID":7085502,"Points":10661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23068","ServerKey":"pl181","X":625,"Y":416},{"Bonus":0,"Continent":"K33","ID":23069,"Name":"A-019","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23069","ServerKey":"pl181","X":388,"Y":396},{"Bonus":0,"Continent":"K53","ID":23070,"Name":"Dajanka 01","PlayerID":849012843,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23070","ServerKey":"pl181","X":352,"Y":557},{"Bonus":0,"Continent":"K43","ID":23071,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23071","ServerKey":"pl181","X":358,"Y":445},{"Bonus":0,"Continent":"K64","ID":23072,"Name":"Pobozowisko","PlayerID":699513260,"Points":10769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23072","ServerKey":"pl181","X":411,"Y":612},{"Bonus":0,"Continent":"K35","ID":23073,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23073","ServerKey":"pl181","X":552,"Y":359},{"Bonus":0,"Continent":"K64","ID":23075,"Name":"Czarodziejka z Marsa","PlayerID":849006145,"Points":7839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23075","ServerKey":"pl181","X":430,"Y":636},{"Bonus":0,"Continent":"K65","ID":23076,"Name":"- 234 - RR","PlayerID":849018239,"Points":6796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23076","ServerKey":"pl181","X":589,"Y":617},{"Bonus":0,"Continent":"K43","ID":23077,"Name":"M181_054","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23077","ServerKey":"pl181","X":363,"Y":434},{"Bonus":0,"Continent":"K43","ID":23078,"Name":"A0197","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23078","ServerKey":"pl181","X":352,"Y":485},{"Bonus":0,"Continent":"K53","ID":23079,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23079","ServerKey":"pl181","X":365,"Y":562},{"Bonus":1,"Continent":"K56","ID":23080,"Name":"B.012","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23080","ServerKey":"pl181","X":649,"Y":514},{"Bonus":0,"Continent":"K53","ID":23081,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23081","ServerKey":"pl181","X":355,"Y":533},{"Bonus":5,"Continent":"K43","ID":23082,"Name":"A0054","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23082","ServerKey":"pl181","X":348,"Y":494},{"Bonus":0,"Continent":"K46","ID":23083,"Name":"024 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23083","ServerKey":"pl181","X":631,"Y":449},{"Bonus":0,"Continent":"K56","ID":23084,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23084","ServerKey":"pl181","X":638,"Y":553},{"Bonus":0,"Continent":"K35","ID":23085,"Name":"Metallica","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23085","ServerKey":"pl181","X":555,"Y":359},{"Bonus":0,"Continent":"K53","ID":23086,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23086","ServerKey":"pl181","X":354,"Y":516},{"Bonus":0,"Continent":"K65","ID":23087,"Name":"034. Aquarius","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23087","ServerKey":"pl181","X":599,"Y":614},{"Bonus":0,"Continent":"K64","ID":23088,"Name":"Medyna","PlayerID":849089459,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23088","ServerKey":"pl181","X":472,"Y":649},{"Bonus":0,"Continent":"K56","ID":23089,"Name":"051","PlayerID":699351301,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23089","ServerKey":"pl181","X":646,"Y":532},{"Bonus":0,"Continent":"K66","ID":23090,"Name":"historia","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23090","ServerKey":"pl181","X":617,"Y":602},{"Bonus":0,"Continent":"K53","ID":23091,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23091","ServerKey":"pl181","X":358,"Y":548},{"Bonus":0,"Continent":"K56","ID":23092,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":6368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23092","ServerKey":"pl181","X":651,"Y":522},{"Bonus":0,"Continent":"K36","ID":23093,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23093","ServerKey":"pl181","X":606,"Y":390},{"Bonus":0,"Continent":"K56","ID":23094,"Name":"020","PlayerID":699351301,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23094","ServerKey":"pl181","X":650,"Y":521},{"Bonus":0,"Continent":"K34","ID":23095,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23095","ServerKey":"pl181","X":440,"Y":364},{"Bonus":1,"Continent":"K66","ID":23096,"Name":"~~011~~","PlayerID":7829201,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23096","ServerKey":"pl181","X":600,"Y":607},{"Bonus":0,"Continent":"K43","ID":23097,"Name":"Maszlug kolonia XII","PlayerID":848977649,"Points":7002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23097","ServerKey":"pl181","X":369,"Y":425},{"Bonus":3,"Continent":"K36","ID":23098,"Name":"Minas Tirith","PlayerID":848915730,"Points":7507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23098","ServerKey":"pl181","X":613,"Y":396},{"Bonus":0,"Continent":"K35","ID":23099,"Name":".:056:.ƁOBUZIK","PlayerID":848934935,"Points":7927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23099","ServerKey":"pl181","X":556,"Y":361},{"Bonus":0,"Continent":"K53","ID":23100,"Name":"062","PlayerID":8908002,"Points":4561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23100","ServerKey":"pl181","X":354,"Y":541},{"Bonus":0,"Continent":"K64","ID":23101,"Name":"Ave Why!","PlayerID":698585370,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23101","ServerKey":"pl181","X":458,"Y":638},{"Bonus":0,"Continent":"K34","ID":23102,"Name":"#0013 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23102","ServerKey":"pl181","X":468,"Y":350},{"Bonus":0,"Continent":"K64","ID":23103,"Name":"ave why!","PlayerID":698143931,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23103","ServerKey":"pl181","X":434,"Y":632},{"Bonus":0,"Continent":"K34","ID":23104,"Name":"North Barba 034","PlayerID":699796330,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23104","ServerKey":"pl181","X":427,"Y":371},{"Bonus":0,"Continent":"K53","ID":23105,"Name":"deff 100 %","PlayerID":849012521,"Points":10172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23105","ServerKey":"pl181","X":376,"Y":581},{"Bonus":0,"Continent":"K65","ID":23106,"Name":"010","PlayerID":699567608,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23106","ServerKey":"pl181","X":558,"Y":613},{"Bonus":0,"Continent":"K43","ID":23107,"Name":"Wioska barbarzyƄska","PlayerID":699753640,"Points":2425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23107","ServerKey":"pl181","X":369,"Y":426},{"Bonus":0,"Continent":"K35","ID":23108,"Name":"Wioska -STRONGHOLD-","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23108","ServerKey":"pl181","X":526,"Y":352},{"Bonus":0,"Continent":"K46","ID":23109,"Name":"13. GargamelĂłwa","PlayerID":699298370,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23109","ServerKey":"pl181","X":617,"Y":403},{"Bonus":0,"Continent":"K46","ID":23110,"Name":"BACÓWKA |010|","PlayerID":7394371,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23110","ServerKey":"pl181","X":621,"Y":407},{"Bonus":0,"Continent":"K35","ID":23111,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23111","ServerKey":"pl181","X":574,"Y":369},{"Bonus":0,"Continent":"K34","ID":23112,"Name":"0058","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23112","ServerKey":"pl181","X":419,"Y":371},{"Bonus":0,"Continent":"K46","ID":23113,"Name":"043","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23113","ServerKey":"pl181","X":652,"Y":489},{"Bonus":0,"Continent":"K34","ID":23114,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23114","ServerKey":"pl181","X":438,"Y":364},{"Bonus":0,"Continent":"K34","ID":23115,"Name":"067...barbarka","PlayerID":6920960,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23115","ServerKey":"pl181","X":460,"Y":359},{"Bonus":0,"Continent":"K46","ID":23116,"Name":"#041.520|502","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23116","ServerKey":"pl181","X":639,"Y":453},{"Bonus":0,"Continent":"K56","ID":23117,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23117","ServerKey":"pl181","X":625,"Y":584},{"Bonus":8,"Continent":"K56","ID":23118,"Name":"015","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23118","ServerKey":"pl181","X":641,"Y":550},{"Bonus":0,"Continent":"K56","ID":23119,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23119","ServerKey":"pl181","X":650,"Y":527},{"Bonus":0,"Continent":"K34","ID":23120,"Name":"Aleppo","PlayerID":699244334,"Points":3404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23120","ServerKey":"pl181","X":492,"Y":349},{"Bonus":0,"Continent":"K46","ID":23121,"Name":"stop","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23121","ServerKey":"pl181","X":620,"Y":404},{"Bonus":0,"Continent":"K35","ID":23122,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23122","ServerKey":"pl181","X":562,"Y":363},{"Bonus":0,"Continent":"K56","ID":23123,"Name":"059","PlayerID":849095227,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23123","ServerKey":"pl181","X":635,"Y":556},{"Bonus":0,"Continent":"K66","ID":23124,"Name":"zzzGranica Bledu 05","PlayerID":699778867,"Points":9241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23124","ServerKey":"pl181","X":601,"Y":614},{"Bonus":0,"Continent":"K53","ID":23125,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23125","ServerKey":"pl181","X":390,"Y":596},{"Bonus":0,"Continent":"K56","ID":23126,"Name":"jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23126","ServerKey":"pl181","X":632,"Y":577},{"Bonus":0,"Continent":"K65","ID":23127,"Name":"- 005 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23127","ServerKey":"pl181","X":553,"Y":610},{"Bonus":0,"Continent":"K56","ID":23128,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23128","ServerKey":"pl181","X":636,"Y":570},{"Bonus":0,"Continent":"K46","ID":23129,"Name":"*0028 Baraki","PlayerID":8459255,"Points":10384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23129","ServerKey":"pl181","X":630,"Y":429},{"Bonus":0,"Continent":"K46","ID":23130,"Name":"Tomall78","PlayerID":699524891,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23130","ServerKey":"pl181","X":633,"Y":428},{"Bonus":0,"Continent":"K65","ID":23131,"Name":"- 238 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23131","ServerKey":"pl181","X":592,"Y":617},{"Bonus":0,"Continent":"K64","ID":23132,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23132","ServerKey":"pl181","X":404,"Y":618},{"Bonus":0,"Continent":"K46","ID":23133,"Name":"038","PlayerID":9148043,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23133","ServerKey":"pl181","X":620,"Y":406},{"Bonus":0,"Continent":"K46","ID":23134,"Name":"#.35 Wioska barbarzyƄska","PlayerID":849054582,"Points":3748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23134","ServerKey":"pl181","X":650,"Y":481},{"Bonus":0,"Continent":"K64","ID":23135,"Name":"Serenity","PlayerID":849006145,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23135","ServerKey":"pl181","X":430,"Y":637},{"Bonus":0,"Continent":"K64","ID":23136,"Name":"ave why!","PlayerID":698143931,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23136","ServerKey":"pl181","X":456,"Y":631},{"Bonus":0,"Continent":"K34","ID":23137,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23137","ServerKey":"pl181","X":436,"Y":367},{"Bonus":0,"Continent":"K34","ID":23138,"Name":"#0067 barbarzyƄska","PlayerID":1238300,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23138","ServerKey":"pl181","X":471,"Y":353},{"Bonus":0,"Continent":"K35","ID":23139,"Name":"Lord Lord Franek .#017","PlayerID":698420691,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23139","ServerKey":"pl181","X":536,"Y":351},{"Bonus":5,"Continent":"K35","ID":23140,"Name":"A013","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23140","ServerKey":"pl181","X":594,"Y":380},{"Bonus":0,"Continent":"K64","ID":23141,"Name":"Ave Why!","PlayerID":698585370,"Points":9376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23141","ServerKey":"pl181","X":459,"Y":639},{"Bonus":0,"Continent":"K46","ID":23143,"Name":"B05","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23143","ServerKey":"pl181","X":643,"Y":447},{"Bonus":0,"Continent":"K53","ID":23144,"Name":"001","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23144","ServerKey":"pl181","X":360,"Y":543},{"Bonus":0,"Continent":"K43","ID":23145,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":7856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23145","ServerKey":"pl181","X":356,"Y":448},{"Bonus":1,"Continent":"K56","ID":23146,"Name":"B.002","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23146","ServerKey":"pl181","X":653,"Y":508},{"Bonus":0,"Continent":"K46","ID":23147,"Name":"0048","PlayerID":699429153,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23147","ServerKey":"pl181","X":621,"Y":414},{"Bonus":0,"Continent":"K34","ID":23148,"Name":"North Barba 038","PlayerID":699796330,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23148","ServerKey":"pl181","X":423,"Y":369},{"Bonus":0,"Continent":"K66","ID":23149,"Name":"MEH 001","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23149","ServerKey":"pl181","X":615,"Y":606},{"Bonus":0,"Continent":"K43","ID":23150,"Name":"d 001","PlayerID":3909522,"Points":7313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23150","ServerKey":"pl181","X":393,"Y":400},{"Bonus":0,"Continent":"K46","ID":23151,"Name":"016 - Gijon","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23151","ServerKey":"pl181","X":641,"Y":443},{"Bonus":0,"Continent":"K34","ID":23152,"Name":"022...POƁUDNIE","PlayerID":6920960,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23152","ServerKey":"pl181","X":456,"Y":357},{"Bonus":0,"Continent":"K33","ID":23153,"Name":"A-027","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23153","ServerKey":"pl181","X":388,"Y":399},{"Bonus":0,"Continent":"K34","ID":23154,"Name":"c 085d","PlayerID":3909522,"Points":6084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23154","ServerKey":"pl181","X":414,"Y":381},{"Bonus":0,"Continent":"K64","ID":23155,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23155","ServerKey":"pl181","X":413,"Y":618},{"Bonus":0,"Continent":"K34","ID":23156,"Name":"056... barbarka","PlayerID":6920960,"Points":10325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23156","ServerKey":"pl181","X":454,"Y":354},{"Bonus":0,"Continent":"K64","ID":23157,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23157","ServerKey":"pl181","X":454,"Y":647},{"Bonus":0,"Continent":"K65","ID":23158,"Name":"0471","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23158","ServerKey":"pl181","X":534,"Y":648},{"Bonus":0,"Continent":"K46","ID":23159,"Name":"#.01 Wioska Pompka15","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23159","ServerKey":"pl181","X":650,"Y":477},{"Bonus":0,"Continent":"K63","ID":23160,"Name":"B001","PlayerID":699383279,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23160","ServerKey":"pl181","X":397,"Y":606},{"Bonus":0,"Continent":"K45","ID":23161,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23161","ServerKey":"pl181","X":516,"Y":495},{"Bonus":0,"Continent":"K53","ID":23162,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23162","ServerKey":"pl181","X":350,"Y":518},{"Bonus":0,"Continent":"K46","ID":23163,"Name":"PDWB","PlayerID":9314079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23163","ServerKey":"pl181","X":642,"Y":451},{"Bonus":0,"Continent":"K46","ID":23164,"Name":"0051","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23164","ServerKey":"pl181","X":617,"Y":410},{"Bonus":0,"Continent":"K65","ID":23165,"Name":"kathare","PlayerID":873575,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23165","ServerKey":"pl181","X":559,"Y":635},{"Bonus":0,"Continent":"K43","ID":23166,"Name":"A0057","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23166","ServerKey":"pl181","X":348,"Y":487},{"Bonus":0,"Continent":"K53","ID":23167,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23167","ServerKey":"pl181","X":360,"Y":559},{"Bonus":0,"Continent":"K35","ID":23168,"Name":"yyyy","PlayerID":699883079,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23168","ServerKey":"pl181","X":502,"Y":350},{"Bonus":0,"Continent":"K64","ID":23169,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23169","ServerKey":"pl181","X":432,"Y":632},{"Bonus":0,"Continent":"K65","ID":23170,"Name":"S_007","PlayerID":849049155,"Points":11191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23170","ServerKey":"pl181","X":512,"Y":651},{"Bonus":0,"Continent":"K35","ID":23171,"Name":"019","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23171","ServerKey":"pl181","X":521,"Y":351},{"Bonus":5,"Continent":"K34","ID":23172,"Name":"Lecymy DUR","PlayerID":6169408,"Points":8880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23172","ServerKey":"pl181","X":437,"Y":361},{"Bonus":0,"Continent":"K46","ID":23173,"Name":"Piwna 21","PlayerID":699812007,"Points":5130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23173","ServerKey":"pl181","X":638,"Y":434},{"Bonus":0,"Continent":"K46","ID":23174,"Name":"122. Seyen","PlayerID":8337151,"Points":4290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23174","ServerKey":"pl181","X":631,"Y":423},{"Bonus":0,"Continent":"K56","ID":23175,"Name":"038 Hella","PlayerID":699272880,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23175","ServerKey":"pl181","X":624,"Y":588},{"Bonus":5,"Continent":"K35","ID":23176,"Name":"0007","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23176","ServerKey":"pl181","X":582,"Y":376},{"Bonus":0,"Continent":"K64","ID":23177,"Name":"028","PlayerID":849084985,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23177","ServerKey":"pl181","X":446,"Y":639},{"Bonus":0,"Continent":"K34","ID":23178,"Name":"0043","PlayerID":848913037,"Points":8496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23178","ServerKey":"pl181","X":412,"Y":374},{"Bonus":0,"Continent":"K65","ID":23180,"Name":"kathare","PlayerID":873575,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23180","ServerKey":"pl181","X":550,"Y":637},{"Bonus":0,"Continent":"K65","ID":23181,"Name":"0564","PlayerID":698659980,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23181","ServerKey":"pl181","X":546,"Y":645},{"Bonus":0,"Continent":"K53","ID":23182,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23182","ServerKey":"pl181","X":349,"Y":520},{"Bonus":0,"Continent":"K46","ID":23183,"Name":"007 Suche Jezioro","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23183","ServerKey":"pl181","X":625,"Y":422},{"Bonus":0,"Continent":"K35","ID":23185,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23185","ServerKey":"pl181","X":573,"Y":371},{"Bonus":0,"Continent":"K35","ID":23186,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23186","ServerKey":"pl181","X":521,"Y":369},{"Bonus":0,"Continent":"K64","ID":23187,"Name":"Pobozowisko","PlayerID":699513260,"Points":9003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23187","ServerKey":"pl181","X":402,"Y":612},{"Bonus":0,"Continent":"K35","ID":23188,"Name":"C001","PlayerID":699208929,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23188","ServerKey":"pl181","X":521,"Y":352},{"Bonus":0,"Continent":"K43","ID":23189,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23189","ServerKey":"pl181","X":354,"Y":466},{"Bonus":0,"Continent":"K35","ID":23190,"Name":"Charfa","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23190","ServerKey":"pl181","X":556,"Y":357},{"Bonus":0,"Continent":"K53","ID":23191,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23191","ServerKey":"pl181","X":347,"Y":506},{"Bonus":0,"Continent":"K35","ID":23192,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23192","ServerKey":"pl181","X":578,"Y":369},{"Bonus":0,"Continent":"K43","ID":23193,"Name":"003","PlayerID":9239515,"Points":5730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23193","ServerKey":"pl181","X":377,"Y":419},{"Bonus":4,"Continent":"K43","ID":23194,"Name":"A0053","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23194","ServerKey":"pl181","X":349,"Y":494},{"Bonus":0,"Continent":"K53","ID":23195,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23195","ServerKey":"pl181","X":356,"Y":535},{"Bonus":0,"Continent":"K53","ID":23196,"Name":"deff 100 %","PlayerID":849012521,"Points":8592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23196","ServerKey":"pl181","X":362,"Y":559},{"Bonus":0,"Continent":"K56","ID":23197,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23197","ServerKey":"pl181","X":641,"Y":554},{"Bonus":0,"Continent":"K43","ID":23198,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23198","ServerKey":"pl181","X":375,"Y":411},{"Bonus":0,"Continent":"K46","ID":23199,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23199","ServerKey":"pl181","X":644,"Y":449},{"Bonus":0,"Continent":"K34","ID":23200,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23200","ServerKey":"pl181","X":470,"Y":357},{"Bonus":0,"Continent":"K43","ID":23201,"Name":"Wioska Jaro","PlayerID":8967440,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23201","ServerKey":"pl181","X":373,"Y":420},{"Bonus":0,"Continent":"K43","ID":23202,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23202","ServerKey":"pl181","X":383,"Y":403},{"Bonus":0,"Continent":"K56","ID":23203,"Name":"058","PlayerID":849095227,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23203","ServerKey":"pl181","X":635,"Y":566},{"Bonus":0,"Continent":"K65","ID":23204,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23204","ServerKey":"pl181","X":529,"Y":644},{"Bonus":0,"Continent":"K53","ID":23205,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23205","ServerKey":"pl181","X":349,"Y":509},{"Bonus":0,"Continent":"K46","ID":23206,"Name":"110. PóƂwysep MaƂy Dartan","PlayerID":8337151,"Points":5547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23206","ServerKey":"pl181","X":630,"Y":426},{"Bonus":0,"Continent":"K36","ID":23207,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":8707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23207","ServerKey":"pl181","X":609,"Y":398},{"Bonus":0,"Continent":"K35","ID":23208,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23208","ServerKey":"pl181","X":568,"Y":363},{"Bonus":0,"Continent":"K43","ID":23209,"Name":"Wioska barbarzyƄska","PlayerID":699753640,"Points":2658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23209","ServerKey":"pl181","X":367,"Y":426},{"Bonus":0,"Continent":"K34","ID":23210,"Name":"006...CENTR_ogarek2","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23210","ServerKey":"pl181","X":460,"Y":352},{"Bonus":0,"Continent":"K43","ID":23211,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23211","ServerKey":"pl181","X":358,"Y":458},{"Bonus":0,"Continent":"K46","ID":23212,"Name":"041 | PALESTINA","PlayerID":9228039,"Points":5108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23212","ServerKey":"pl181","X":635,"Y":435},{"Bonus":0,"Continent":"K66","ID":23213,"Name":"zzzGranica Bledu 14","PlayerID":699778867,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23213","ServerKey":"pl181","X":611,"Y":605},{"Bonus":0,"Continent":"K34","ID":23214,"Name":"048...CENTR","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23214","ServerKey":"pl181","X":458,"Y":352},{"Bonus":0,"Continent":"K43","ID":23215,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":7444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23215","ServerKey":"pl181","X":371,"Y":417},{"Bonus":0,"Continent":"K44","ID":23216,"Name":"178 Punta del Este","PlayerID":1497168,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23216","ServerKey":"pl181","X":477,"Y":478},{"Bonus":0,"Continent":"K56","ID":23217,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23217","ServerKey":"pl181","X":626,"Y":584},{"Bonus":0,"Continent":"K34","ID":23218,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23218","ServerKey":"pl181","X":437,"Y":363},{"Bonus":0,"Continent":"K64","ID":23219,"Name":"Alicization 1","PlayerID":699849210,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23219","ServerKey":"pl181","X":458,"Y":647},{"Bonus":0,"Continent":"K56","ID":23220,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23220","ServerKey":"pl181","X":645,"Y":537},{"Bonus":0,"Continent":"K33","ID":23221,"Name":"SoƂtys wsi Agnes96","PlayerID":849027025,"Points":11021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23221","ServerKey":"pl181","X":399,"Y":388},{"Bonus":0,"Continent":"K46","ID":23222,"Name":"0135","PlayerID":698416970,"Points":8332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23222","ServerKey":"pl181","X":643,"Y":462},{"Bonus":0,"Continent":"K35","ID":23223,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23223","ServerKey":"pl181","X":556,"Y":358},{"Bonus":0,"Continent":"K65","ID":23224,"Name":"7 barba","PlayerID":848995242,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23224","ServerKey":"pl181","X":578,"Y":628},{"Bonus":6,"Continent":"K56","ID":23225,"Name":"044","PlayerID":698786826,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23225","ServerKey":"pl181","X":612,"Y":599},{"Bonus":0,"Continent":"K56","ID":23226,"Name":"MRF 002","PlayerID":118121,"Points":9085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23226","ServerKey":"pl181","X":630,"Y":579},{"Bonus":0,"Continent":"K36","ID":23227,"Name":"A 014","PlayerID":6384450,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23227","ServerKey":"pl181","X":600,"Y":389},{"Bonus":0,"Continent":"K65","ID":23229,"Name":"0241","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23229","ServerKey":"pl181","X":543,"Y":647},{"Bonus":0,"Continent":"K65","ID":23230,"Name":"0245","PlayerID":698659980,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23230","ServerKey":"pl181","X":541,"Y":646},{"Bonus":0,"Continent":"K56","ID":23231,"Name":"P024 Kair","PlayerID":8096537,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23231","ServerKey":"pl181","X":652,"Y":518},{"Bonus":0,"Continent":"K35","ID":23232,"Name":"A042","PlayerID":699485250,"Points":6750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23232","ServerKey":"pl181","X":586,"Y":380},{"Bonus":0,"Continent":"K35","ID":23233,"Name":"101","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23233","ServerKey":"pl181","X":584,"Y":381},{"Bonus":0,"Continent":"K53","ID":23234,"Name":"DajankA 18","PlayerID":849012843,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23234","ServerKey":"pl181","X":356,"Y":544},{"Bonus":0,"Continent":"K46","ID":23235,"Name":"Wioska (038)","PlayerID":698232227,"Points":7277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23235","ServerKey":"pl181","X":646,"Y":476},{"Bonus":0,"Continent":"K64","ID":23236,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23236","ServerKey":"pl181","X":471,"Y":649},{"Bonus":0,"Continent":"K64","ID":23237,"Name":"Ave Why!","PlayerID":698585370,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23237","ServerKey":"pl181","X":457,"Y":640},{"Bonus":0,"Continent":"K65","ID":23238,"Name":"025. Pędzę","PlayerID":848928624,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23238","ServerKey":"pl181","X":505,"Y":650},{"Bonus":0,"Continent":"K46","ID":23239,"Name":"028 Wioska","PlayerID":699671454,"Points":9018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23239","ServerKey":"pl181","X":647,"Y":483},{"Bonus":0,"Continent":"K35","ID":23240,"Name":"***003***","PlayerID":8843774,"Points":4052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23240","ServerKey":"pl181","X":504,"Y":351},{"Bonus":0,"Continent":"K46","ID":23241,"Name":"Gattacka","PlayerID":699298370,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23241","ServerKey":"pl181","X":623,"Y":414},{"Bonus":0,"Continent":"K43","ID":23242,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23242","ServerKey":"pl181","X":356,"Y":450},{"Bonus":0,"Continent":"K46","ID":23243,"Name":"013 Deportacja z Polski","PlayerID":699298370,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23243","ServerKey":"pl181","X":613,"Y":405},{"Bonus":0,"Continent":"K35","ID":23244,"Name":"A009","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23244","ServerKey":"pl181","X":593,"Y":380},{"Bonus":0,"Continent":"K34","ID":23245,"Name":"AsyĆŒ","PlayerID":699244334,"Points":2665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23245","ServerKey":"pl181","X":492,"Y":350},{"Bonus":0,"Continent":"K36","ID":23246,"Name":"A 015","PlayerID":6384450,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23246","ServerKey":"pl181","X":601,"Y":388},{"Bonus":0,"Continent":"K46","ID":23247,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23247","ServerKey":"pl181","X":636,"Y":440},{"Bonus":0,"Continent":"K53","ID":23248,"Name":"-002-","PlayerID":9253494,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23248","ServerKey":"pl181","X":357,"Y":545},{"Bonus":0,"Continent":"K65","ID":23249,"Name":"016","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23249","ServerKey":"pl181","X":565,"Y":637},{"Bonus":0,"Continent":"K34","ID":23251,"Name":"Szlachcic","PlayerID":698388578,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23251","ServerKey":"pl181","X":415,"Y":377},{"Bonus":0,"Continent":"K65","ID":23252,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23252","ServerKey":"pl181","X":525,"Y":646},{"Bonus":0,"Continent":"K36","ID":23253,"Name":"I#034","PlayerID":2065730,"Points":5259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23253","ServerKey":"pl181","X":603,"Y":389},{"Bonus":0,"Continent":"K64","ID":23254,"Name":"021","PlayerID":699783765,"Points":4474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23254","ServerKey":"pl181","X":424,"Y":630},{"Bonus":0,"Continent":"K66","ID":23255,"Name":"zzzGranica Bledu 07","PlayerID":699778867,"Points":8651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23255","ServerKey":"pl181","X":608,"Y":607},{"Bonus":0,"Continent":"K56","ID":23257,"Name":"013","PlayerID":849095227,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23257","ServerKey":"pl181","X":636,"Y":558},{"Bonus":0,"Continent":"K43","ID":23258,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23258","ServerKey":"pl181","X":375,"Y":414},{"Bonus":6,"Continent":"K56","ID":23259,"Name":"053","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23259","ServerKey":"pl181","X":646,"Y":540},{"Bonus":0,"Continent":"K56","ID":23260,"Name":"B.009","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23260","ServerKey":"pl181","X":651,"Y":506},{"Bonus":0,"Continent":"K65","ID":23261,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23261","ServerKey":"pl181","X":511,"Y":647},{"Bonus":0,"Continent":"K35","ID":23262,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23262","ServerKey":"pl181","X":546,"Y":361},{"Bonus":0,"Continent":"K43","ID":23263,"Name":"Westcoast.100","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23263","ServerKey":"pl181","X":369,"Y":430},{"Bonus":0,"Continent":"K46","ID":23264,"Name":"WW30","PlayerID":1715091,"Points":3819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23264","ServerKey":"pl181","X":650,"Y":465},{"Bonus":0,"Continent":"K65","ID":23265,"Name":"kathare","PlayerID":873575,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23265","ServerKey":"pl181","X":555,"Y":638},{"Bonus":7,"Continent":"K56","ID":23267,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23267","ServerKey":"pl181","X":629,"Y":579},{"Bonus":0,"Continent":"K65","ID":23268,"Name":"jestem Boomerem !!!!","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23268","ServerKey":"pl181","X":588,"Y":626},{"Bonus":0,"Continent":"K63","ID":23269,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23269","ServerKey":"pl181","X":396,"Y":603},{"Bonus":0,"Continent":"K64","ID":23270,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23270","ServerKey":"pl181","X":455,"Y":644},{"Bonus":0,"Continent":"K34","ID":23271,"Name":"#0065 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23271","ServerKey":"pl181","X":471,"Y":352},{"Bonus":0,"Continent":"K43","ID":23272,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23272","ServerKey":"pl181","X":364,"Y":422},{"Bonus":0,"Continent":"K65","ID":23273,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23273","ServerKey":"pl181","X":529,"Y":647},{"Bonus":6,"Continent":"K35","ID":23274,"Name":"093 duko 2","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23274","ServerKey":"pl181","X":546,"Y":355},{"Bonus":0,"Continent":"K56","ID":23275,"Name":"034 Y13J","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23275","ServerKey":"pl181","X":653,"Y":502},{"Bonus":0,"Continent":"K34","ID":23276,"Name":"Cladonia arbuscula","PlayerID":699883079,"Points":9517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23276","ServerKey":"pl181","X":495,"Y":352},{"Bonus":0,"Continent":"K35","ID":23277,"Name":"135 DaSilva2402","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23277","ServerKey":"pl181","X":517,"Y":352},{"Bonus":0,"Continent":"K53","ID":23278,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23278","ServerKey":"pl181","X":355,"Y":529},{"Bonus":0,"Continent":"K34","ID":23279,"Name":"165...Kalichore","PlayerID":6920960,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23279","ServerKey":"pl181","X":453,"Y":355},{"Bonus":0,"Continent":"K65","ID":23280,"Name":"Sony 911","PlayerID":1415009,"Points":10097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23280","ServerKey":"pl181","X":580,"Y":626},{"Bonus":0,"Continent":"K34","ID":23281,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23281","ServerKey":"pl181","X":441,"Y":364},{"Bonus":0,"Continent":"K43","ID":23282,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23282","ServerKey":"pl181","X":359,"Y":449},{"Bonus":0,"Continent":"K65","ID":23283,"Name":"WB005","PlayerID":8627359,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23283","ServerKey":"pl181","X":589,"Y":618},{"Bonus":0,"Continent":"K64","ID":23285,"Name":"006.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23285","ServerKey":"pl181","X":482,"Y":652},{"Bonus":0,"Continent":"K65","ID":23286,"Name":"Wioska Syriusz1","PlayerID":8627359,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23286","ServerKey":"pl181","X":571,"Y":608},{"Bonus":0,"Continent":"K64","ID":23287,"Name":"14 Helmowy Jar","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23287","ServerKey":"pl181","X":457,"Y":644},{"Bonus":0,"Continent":"K56","ID":23288,"Name":"030","PlayerID":698786826,"Points":6486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23288","ServerKey":"pl181","X":614,"Y":595},{"Bonus":0,"Continent":"K65","ID":23289,"Name":"- 233 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23289","ServerKey":"pl181","X":593,"Y":622},{"Bonus":0,"Continent":"K34","ID":23290,"Name":"c 001c","PlayerID":3909522,"Points":9269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23290","ServerKey":"pl181","X":410,"Y":382},{"Bonus":0,"Continent":"K53","ID":23292,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23292","ServerKey":"pl181","X":354,"Y":529},{"Bonus":0,"Continent":"K46","ID":23293,"Name":"024 Ceunon","PlayerID":8337151,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23293","ServerKey":"pl181","X":602,"Y":474},{"Bonus":0,"Continent":"K43","ID":23294,"Name":"--5. Ɓysa Polana","PlayerID":698345556,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23294","ServerKey":"pl181","X":387,"Y":407},{"Bonus":0,"Continent":"K35","ID":23296,"Name":"Kikut","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23296","ServerKey":"pl181","X":516,"Y":350},{"Bonus":0,"Continent":"K53","ID":23297,"Name":"Valhalla A5","PlayerID":849097002,"Points":6077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23297","ServerKey":"pl181","X":373,"Y":584},{"Bonus":0,"Continent":"K56","ID":23299,"Name":"032","PlayerID":849095227,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23299","ServerKey":"pl181","X":643,"Y":552},{"Bonus":0,"Continent":"K53","ID":23300,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23300","ServerKey":"pl181","X":349,"Y":545},{"Bonus":0,"Continent":"K65","ID":23301,"Name":"kathare","PlayerID":873575,"Points":9779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23301","ServerKey":"pl181","X":558,"Y":637},{"Bonus":0,"Continent":"K33","ID":23302,"Name":"SoƂtys wsi Agnes96","PlayerID":849027025,"Points":10309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23302","ServerKey":"pl181","X":399,"Y":389},{"Bonus":0,"Continent":"K65","ID":23303,"Name":"kathare","PlayerID":873575,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23303","ServerKey":"pl181","X":546,"Y":643},{"Bonus":0,"Continent":"K56","ID":23304,"Name":"[075]","PlayerID":8000875,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23304","ServerKey":"pl181","X":639,"Y":561},{"Bonus":0,"Continent":"K53","ID":23305,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23305","ServerKey":"pl181","X":351,"Y":517},{"Bonus":0,"Continent":"K35","ID":23306,"Name":"A017","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23306","ServerKey":"pl181","X":590,"Y":377},{"Bonus":0,"Continent":"K65","ID":23307,"Name":"0284","PlayerID":698659980,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23307","ServerKey":"pl181","X":545,"Y":646},{"Bonus":0,"Continent":"K53","ID":23308,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23308","ServerKey":"pl181","X":351,"Y":538},{"Bonus":0,"Continent":"K64","ID":23309,"Name":"|A| Hazelvalley","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23309","ServerKey":"pl181","X":479,"Y":647},{"Bonus":1,"Continent":"K53","ID":23310,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23310","ServerKey":"pl181","X":348,"Y":520},{"Bonus":0,"Continent":"K55","ID":23311,"Name":"Shinra Building - Perimeter","PlayerID":8199417,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23311","ServerKey":"pl181","X":508,"Y":592},{"Bonus":0,"Continent":"K65","ID":23312,"Name":"ILO","PlayerID":6417987,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23312","ServerKey":"pl181","X":599,"Y":617},{"Bonus":0,"Continent":"K34","ID":23313,"Name":"243...SOUTH","PlayerID":6920960,"Points":8776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23313","ServerKey":"pl181","X":478,"Y":348},{"Bonus":0,"Continent":"K66","ID":23314,"Name":"~~027~~","PlayerID":7829201,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23314","ServerKey":"pl181","X":603,"Y":608},{"Bonus":0,"Continent":"K36","ID":23316,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23316","ServerKey":"pl181","X":608,"Y":392},{"Bonus":0,"Continent":"K43","ID":23317,"Name":"A0297","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23317","ServerKey":"pl181","X":353,"Y":480},{"Bonus":0,"Continent":"K35","ID":23318,"Name":"Siara","PlayerID":849101144,"Points":3665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23318","ServerKey":"pl181","X":537,"Y":351},{"Bonus":0,"Continent":"K43","ID":23319,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23319","ServerKey":"pl181","X":357,"Y":443},{"Bonus":0,"Continent":"K34","ID":23320,"Name":"c 0055 Wioska","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23320","ServerKey":"pl181","X":403,"Y":389},{"Bonus":0,"Continent":"K34","ID":23321,"Name":"c 010 Oaza 9","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23321","ServerKey":"pl181","X":414,"Y":379},{"Bonus":0,"Continent":"K56","ID":23322,"Name":"B.019","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23322","ServerKey":"pl181","X":648,"Y":507},{"Bonus":1,"Continent":"K46","ID":23323,"Name":"Jan 011 Watergate K","PlayerID":879782,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23323","ServerKey":"pl181","X":648,"Y":462},{"Bonus":0,"Continent":"K43","ID":23324,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23324","ServerKey":"pl181","X":349,"Y":499},{"Bonus":0,"Continent":"K56","ID":23325,"Name":".Wioska barbarzyƄska","PlayerID":6929240,"Points":6021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23325","ServerKey":"pl181","X":637,"Y":565},{"Bonus":0,"Continent":"K56","ID":23326,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23326","ServerKey":"pl181","X":627,"Y":582},{"Bonus":0,"Continent":"K43","ID":23327,"Name":"A0062","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23327","ServerKey":"pl181","X":351,"Y":488},{"Bonus":0,"Continent":"K45","ID":23328,"Name":"069","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23328","ServerKey":"pl181","X":560,"Y":402},{"Bonus":0,"Continent":"K64","ID":23329,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":8261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23329","ServerKey":"pl181","X":422,"Y":632},{"Bonus":0,"Continent":"K34","ID":23330,"Name":"033","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23330","ServerKey":"pl181","X":482,"Y":353},{"Bonus":0,"Continent":"K35","ID":23331,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23331","ServerKey":"pl181","X":573,"Y":370},{"Bonus":0,"Continent":"K46","ID":23332,"Name":"BUNKIER 004","PlayerID":7588382,"Points":8171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23332","ServerKey":"pl181","X":636,"Y":437},{"Bonus":0,"Continent":"K46","ID":23333,"Name":"029.","PlayerID":849094609,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23333","ServerKey":"pl181","X":644,"Y":491},{"Bonus":0,"Continent":"K43","ID":23334,"Name":"A0105","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23334","ServerKey":"pl181","X":350,"Y":498},{"Bonus":0,"Continent":"K65","ID":23335,"Name":"kathare","PlayerID":873575,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23335","ServerKey":"pl181","X":559,"Y":638},{"Bonus":0,"Continent":"K53","ID":23336,"Name":"010","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23336","ServerKey":"pl181","X":366,"Y":535},{"Bonus":0,"Continent":"K46","ID":23337,"Name":"BACÓWKA |021|","PlayerID":7394371,"Points":7475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23337","ServerKey":"pl181","X":628,"Y":422},{"Bonus":6,"Continent":"K53","ID":23338,"Name":"33.OrƂy","PlayerID":8665783,"Points":10465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23338","ServerKey":"pl181","X":379,"Y":595},{"Bonus":0,"Continent":"K53","ID":23339,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23339","ServerKey":"pl181","X":353,"Y":530},{"Bonus":0,"Continent":"K64","ID":23340,"Name":"006Okna","PlayerID":698620694,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23340","ServerKey":"pl181","X":447,"Y":635},{"Bonus":0,"Continent":"K56","ID":23341,"Name":"JaawmG","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23341","ServerKey":"pl181","X":645,"Y":547},{"Bonus":0,"Continent":"K34","ID":23342,"Name":"023","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23342","ServerKey":"pl181","X":480,"Y":351},{"Bonus":0,"Continent":"K65","ID":23343,"Name":"yogi","PlayerID":2808172,"Points":7283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23343","ServerKey":"pl181","X":572,"Y":637},{"Bonus":0,"Continent":"K46","ID":23344,"Name":"#055.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23344","ServerKey":"pl181","X":643,"Y":448},{"Bonus":5,"Continent":"K43","ID":23345,"Name":"++001++","PlayerID":698884287,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23345","ServerKey":"pl181","X":381,"Y":413},{"Bonus":0,"Continent":"K64","ID":23346,"Name":"009 nie ma spania na wyjazdach","PlayerID":699238479,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23346","ServerKey":"pl181","X":446,"Y":644},{"Bonus":0,"Continent":"K64","ID":23347,"Name":"Ave Why!","PlayerID":698585370,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23347","ServerKey":"pl181","X":483,"Y":655},{"Bonus":0,"Continent":"K33","ID":23348,"Name":"A-020","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23348","ServerKey":"pl181","X":390,"Y":395},{"Bonus":8,"Continent":"K53","ID":23349,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23349","ServerKey":"pl181","X":352,"Y":516},{"Bonus":0,"Continent":"K64","ID":23350,"Name":"050","PlayerID":849084985,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23350","ServerKey":"pl181","X":443,"Y":642},{"Bonus":0,"Continent":"K64","ID":23351,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":6637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23351","ServerKey":"pl181","X":426,"Y":630},{"Bonus":0,"Continent":"K53","ID":23352,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23352","ServerKey":"pl181","X":355,"Y":543},{"Bonus":0,"Continent":"K56","ID":23353,"Name":"065","PlayerID":699351301,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23353","ServerKey":"pl181","X":646,"Y":529},{"Bonus":0,"Continent":"K33","ID":23354,"Name":"A-023","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23354","ServerKey":"pl181","X":386,"Y":397},{"Bonus":0,"Continent":"K65","ID":23355,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23355","ServerKey":"pl181","X":520,"Y":648},{"Bonus":0,"Continent":"K43","ID":23356,"Name":"Wioska barbarzyƄska","PlayerID":699088529,"Points":4793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23356","ServerKey":"pl181","X":361,"Y":443},{"Bonus":0,"Continent":"K56","ID":23357,"Name":"063","PlayerID":699351301,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23357","ServerKey":"pl181","X":649,"Y":527},{"Bonus":0,"Continent":"K64","ID":23358,"Name":"Pobozowisko","PlayerID":699513260,"Points":7209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23358","ServerKey":"pl181","X":402,"Y":605},{"Bonus":0,"Continent":"K56","ID":23359,"Name":"jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23359","ServerKey":"pl181","X":630,"Y":578},{"Bonus":1,"Continent":"K53","ID":23360,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23360","ServerKey":"pl181","X":364,"Y":566},{"Bonus":0,"Continent":"K64","ID":23361,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23361","ServerKey":"pl181","X":473,"Y":650},{"Bonus":0,"Continent":"K34","ID":23362,"Name":"100","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23362","ServerKey":"pl181","X":475,"Y":354},{"Bonus":1,"Continent":"K35","ID":23363,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23363","ServerKey":"pl181","X":544,"Y":355},{"Bonus":0,"Continent":"K64","ID":23364,"Name":"Punta Cana","PlayerID":699736927,"Points":7680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23364","ServerKey":"pl181","X":457,"Y":645},{"Bonus":0,"Continent":"K43","ID":23365,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23365","ServerKey":"pl181","X":352,"Y":478},{"Bonus":0,"Continent":"K46","ID":23366,"Name":"Jehu_Kingdom_19_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23366","ServerKey":"pl181","X":645,"Y":469},{"Bonus":0,"Continent":"K65","ID":23367,"Name":"kathare","PlayerID":873575,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23367","ServerKey":"pl181","X":556,"Y":637},{"Bonus":0,"Continent":"K43","ID":23368,"Name":"Wioska barbarzyƄska M","PlayerID":8967440,"Points":3402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23368","ServerKey":"pl181","X":372,"Y":423},{"Bonus":0,"Continent":"K46","ID":23369,"Name":"Jan o8 II","PlayerID":879782,"Points":8902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23369","ServerKey":"pl181","X":641,"Y":457},{"Bonus":0,"Continent":"K35","ID":23370,"Name":"123","PlayerID":7271812,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23370","ServerKey":"pl181","X":507,"Y":347},{"Bonus":0,"Continent":"K35","ID":23371,"Name":"06 Jar Kapitolu","PlayerID":849108780,"Points":2164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23371","ServerKey":"pl181","X":546,"Y":356},{"Bonus":0,"Continent":"K53","ID":23372,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23372","ServerKey":"pl181","X":357,"Y":548},{"Bonus":0,"Continent":"K64","ID":23373,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23373","ServerKey":"pl181","X":437,"Y":627},{"Bonus":0,"Continent":"K56","ID":23374,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23374","ServerKey":"pl181","X":624,"Y":590},{"Bonus":0,"Continent":"K35","ID":23375,"Name":"A041","PlayerID":699485250,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23375","ServerKey":"pl181","X":587,"Y":380},{"Bonus":0,"Continent":"K34","ID":23376,"Name":"017","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23376","ServerKey":"pl181","X":480,"Y":349},{"Bonus":0,"Continent":"K36","ID":23378,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":4508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23378","ServerKey":"pl181","X":606,"Y":392},{"Bonus":0,"Continent":"K64","ID":23379,"Name":"026 serniczek na urodziny","PlayerID":8954402,"Points":9767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23379","ServerKey":"pl181","X":493,"Y":647},{"Bonus":0,"Continent":"K43","ID":23380,"Name":"029 181","PlayerID":698807570,"Points":8675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23380","ServerKey":"pl181","X":348,"Y":499},{"Bonus":3,"Continent":"K53","ID":23381,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23381","ServerKey":"pl181","X":352,"Y":523},{"Bonus":0,"Continent":"K64","ID":23383,"Name":"Ulu-mulu","PlayerID":699697558,"Points":5476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23383","ServerKey":"pl181","X":410,"Y":620},{"Bonus":0,"Continent":"K53","ID":23384,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23384","ServerKey":"pl181","X":362,"Y":562},{"Bonus":0,"Continent":"K65","ID":23385,"Name":"Wioska barbarzyƄska .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23385","ServerKey":"pl181","X":581,"Y":627},{"Bonus":0,"Continent":"K35","ID":23386,"Name":"Wioska Przeklętych","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23386","ServerKey":"pl181","X":553,"Y":360},{"Bonus":0,"Continent":"K64","ID":23387,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":4759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23387","ServerKey":"pl181","X":417,"Y":626},{"Bonus":0,"Continent":"K46","ID":23388,"Name":"022","PlayerID":699429153,"Points":7050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23388","ServerKey":"pl181","X":626,"Y":419},{"Bonus":0,"Continent":"K33","ID":23389,"Name":"A-028","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23389","ServerKey":"pl181","X":391,"Y":397},{"Bonus":0,"Continent":"K46","ID":23390,"Name":"121","PlayerID":7085502,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23390","ServerKey":"pl181","X":626,"Y":421},{"Bonus":0,"Continent":"K53","ID":23391,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23391","ServerKey":"pl181","X":360,"Y":548},{"Bonus":8,"Continent":"K65","ID":23392,"Name":"kathare","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23392","ServerKey":"pl181","X":548,"Y":643},{"Bonus":0,"Continent":"K46","ID":23393,"Name":"002 - Mroczna Osada","PlayerID":849035905,"Points":11085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23393","ServerKey":"pl181","X":634,"Y":426},{"Bonus":0,"Continent":"K56","ID":23394,"Name":"B.017","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23394","ServerKey":"pl181","X":657,"Y":508},{"Bonus":0,"Continent":"K35","ID":23395,"Name":"013","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23395","ServerKey":"pl181","X":521,"Y":350},{"Bonus":0,"Continent":"K46","ID":23396,"Name":"114 Tonami","PlayerID":7092442,"Points":8040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23396","ServerKey":"pl181","X":645,"Y":462},{"Bonus":0,"Continent":"K34","ID":23397,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23397","ServerKey":"pl181","X":408,"Y":384},{"Bonus":0,"Continent":"K43","ID":23398,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23398","ServerKey":"pl181","X":355,"Y":455},{"Bonus":0,"Continent":"K64","ID":23399,"Name":"Ave Why!","PlayerID":698585370,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23399","ServerKey":"pl181","X":472,"Y":652},{"Bonus":0,"Continent":"K33","ID":23400,"Name":"1.1","PlayerID":8967440,"Points":10177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23400","ServerKey":"pl181","X":390,"Y":393},{"Bonus":0,"Continent":"K64","ID":23401,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23401","ServerKey":"pl181","X":418,"Y":623},{"Bonus":0,"Continent":"K43","ID":23402,"Name":"M181_053","PlayerID":393668,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23402","ServerKey":"pl181","X":364,"Y":427},{"Bonus":0,"Continent":"K53","ID":23403,"Name":"Hipnagogia","PlayerID":849095992,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23403","ServerKey":"pl181","X":372,"Y":587},{"Bonus":0,"Continent":"K56","ID":23404,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23404","ServerKey":"pl181","X":625,"Y":578},{"Bonus":0,"Continent":"K56","ID":23405,"Name":"zz To nie byƂ przypadek Magiorek","PlayerID":699778867,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23405","ServerKey":"pl181","X":618,"Y":598},{"Bonus":0,"Continent":"K46","ID":23406,"Name":"052. Tripolis","PlayerID":849091866,"Points":9548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23406","ServerKey":"pl181","X":646,"Y":468},{"Bonus":0,"Continent":"K65","ID":23407,"Name":"012. Ć»eby kĂłzka.....","PlayerID":848928624,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23407","ServerKey":"pl181","X":508,"Y":653},{"Bonus":0,"Continent":"K35","ID":23408,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23408","ServerKey":"pl181","X":571,"Y":366},{"Bonus":0,"Continent":"K46","ID":23409,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23409","ServerKey":"pl181","X":622,"Y":407},{"Bonus":0,"Continent":"K36","ID":23410,"Name":"A 012","PlayerID":6384450,"Points":4676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23410","ServerKey":"pl181","X":607,"Y":389},{"Bonus":0,"Continent":"K56","ID":23411,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23411","ServerKey":"pl181","X":624,"Y":583},{"Bonus":0,"Continent":"K64","ID":23412,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23412","ServerKey":"pl181","X":452,"Y":640},{"Bonus":0,"Continent":"K64","ID":23413,"Name":"029","PlayerID":699736927,"Points":9072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23413","ServerKey":"pl181","X":438,"Y":639},{"Bonus":0,"Continent":"K43","ID":23414,"Name":"001","PlayerID":9239515,"Points":8240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23414","ServerKey":"pl181","X":376,"Y":418},{"Bonus":0,"Continent":"K35","ID":23415,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23415","ServerKey":"pl181","X":565,"Y":360},{"Bonus":0,"Continent":"K63","ID":23416,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23416","ServerKey":"pl181","X":384,"Y":601},{"Bonus":0,"Continent":"K46","ID":23417,"Name":"#.28 Wioska barbarzyƄska","PlayerID":849054582,"Points":5912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23417","ServerKey":"pl181","X":648,"Y":472},{"Bonus":0,"Continent":"K53","ID":23418,"Name":"25. Speluna","PlayerID":8665783,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23418","ServerKey":"pl181","X":378,"Y":587},{"Bonus":0,"Continent":"K46","ID":23419,"Name":"008. Hawaje","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23419","ServerKey":"pl181","X":639,"Y":437},{"Bonus":0,"Continent":"K63","ID":23420,"Name":"Pobozowisko","PlayerID":699513260,"Points":7169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23420","ServerKey":"pl181","X":385,"Y":601},{"Bonus":0,"Continent":"K34","ID":23421,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23421","ServerKey":"pl181","X":449,"Y":386},{"Bonus":0,"Continent":"K46","ID":23422,"Name":"041","PlayerID":9148043,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23422","ServerKey":"pl181","X":623,"Y":406},{"Bonus":0,"Continent":"K34","ID":23423,"Name":"c Boniu30","PlayerID":3909522,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23423","ServerKey":"pl181","X":406,"Y":388},{"Bonus":0,"Continent":"K53","ID":23424,"Name":"buuu","PlayerID":9167250,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23424","ServerKey":"pl181","X":395,"Y":567},{"Bonus":0,"Continent":"K46","ID":23425,"Name":"001 GĂłrzysta Dolina","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23425","ServerKey":"pl181","X":623,"Y":423},{"Bonus":0,"Continent":"K35","ID":23426,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23426","ServerKey":"pl181","X":529,"Y":352},{"Bonus":0,"Continent":"K64","ID":23427,"Name":"009|| Sagittarius","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23427","ServerKey":"pl181","X":483,"Y":648},{"Bonus":0,"Continent":"K65","ID":23428,"Name":"Wioska","PlayerID":8627359,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23428","ServerKey":"pl181","X":592,"Y":621},{"Bonus":0,"Continent":"K56","ID":23429,"Name":"93k$ Grvvyq","PlayerID":699676005,"Points":4608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23429","ServerKey":"pl181","X":645,"Y":548},{"Bonus":0,"Continent":"K35","ID":23430,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23430","ServerKey":"pl181","X":505,"Y":351},{"Bonus":0,"Continent":"K44","ID":23431,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23431","ServerKey":"pl181","X":498,"Y":474},{"Bonus":0,"Continent":"K63","ID":23432,"Name":"Pobozowisko","PlayerID":699513260,"Points":10907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23432","ServerKey":"pl181","X":385,"Y":607},{"Bonus":0,"Continent":"K43","ID":23433,"Name":"093","PlayerID":6258092,"Points":8942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23433","ServerKey":"pl181","X":357,"Y":457},{"Bonus":0,"Continent":"K56","ID":23434,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23434","ServerKey":"pl181","X":631,"Y":574},{"Bonus":0,"Continent":"K64","ID":23435,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23435","ServerKey":"pl181","X":422,"Y":633},{"Bonus":0,"Continent":"K63","ID":23436,"Name":"Pobozowisko","PlayerID":699513260,"Points":6977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23436","ServerKey":"pl181","X":389,"Y":606},{"Bonus":0,"Continent":"K56","ID":23437,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23437","ServerKey":"pl181","X":628,"Y":574},{"Bonus":0,"Continent":"K63","ID":23438,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23438","ServerKey":"pl181","X":391,"Y":604},{"Bonus":0,"Continent":"K64","ID":23439,"Name":"006 Danowiec City","PlayerID":849006145,"Points":10333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23439","ServerKey":"pl181","X":433,"Y":639},{"Bonus":0,"Continent":"K53","ID":23440,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23440","ServerKey":"pl181","X":347,"Y":518},{"Bonus":0,"Continent":"K46","ID":23441,"Name":"D 009","PlayerID":8078914,"Points":9776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23441","ServerKey":"pl181","X":650,"Y":498},{"Bonus":0,"Continent":"K35","ID":23442,"Name":"Lord Lord Franek .#041","PlayerID":698420691,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23442","ServerKey":"pl181","X":528,"Y":351},{"Bonus":0,"Continent":"K43","ID":23443,"Name":"106","PlayerID":6258092,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23443","ServerKey":"pl181","X":352,"Y":463},{"Bonus":0,"Continent":"K46","ID":23444,"Name":"Jehu_Kingdom_21_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23444","ServerKey":"pl181","X":644,"Y":455},{"Bonus":0,"Continent":"K65","ID":23445,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23445","ServerKey":"pl181","X":569,"Y":632},{"Bonus":6,"Continent":"K35","ID":23446,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23446","ServerKey":"pl181","X":572,"Y":369},{"Bonus":0,"Continent":"K64","ID":23447,"Name":"042","PlayerID":849084985,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23447","ServerKey":"pl181","X":443,"Y":639},{"Bonus":0,"Continent":"K56","ID":23448,"Name":"048","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23448","ServerKey":"pl181","X":649,"Y":526},{"Bonus":0,"Continent":"K43","ID":23449,"Name":"M181_017","PlayerID":393668,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23449","ServerKey":"pl181","X":361,"Y":430},{"Bonus":0,"Continent":"K56","ID":23450,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23450","ServerKey":"pl181","X":634,"Y":571},{"Bonus":0,"Continent":"K43","ID":23451,"Name":"085","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23451","ServerKey":"pl181","X":355,"Y":461},{"Bonus":0,"Continent":"K46","ID":23452,"Name":"#.15 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23452","ServerKey":"pl181","X":649,"Y":473},{"Bonus":4,"Continent":"K46","ID":23453,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23453","ServerKey":"pl181","X":611,"Y":400},{"Bonus":0,"Continent":"K43","ID":23454,"Name":"[C]_[009] Dejv.oldplyr","PlayerID":699380607,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23454","ServerKey":"pl181","X":358,"Y":462},{"Bonus":0,"Continent":"K53","ID":23455,"Name":"Pobozowisko","PlayerID":699513260,"Points":7217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23455","ServerKey":"pl181","X":383,"Y":594},{"Bonus":0,"Continent":"K64","ID":23456,"Name":"PaczaƂkowo","PlayerID":849006145,"Points":10197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23456","ServerKey":"pl181","X":427,"Y":637},{"Bonus":0,"Continent":"K46","ID":23457,"Name":"0050","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23457","ServerKey":"pl181","X":618,"Y":408},{"Bonus":0,"Continent":"K64","ID":23458,"Name":"A28 Braunschweig","PlayerID":849037407,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23458","ServerKey":"pl181","X":469,"Y":633},{"Bonus":0,"Continent":"K35","ID":23459,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23459","ServerKey":"pl181","X":553,"Y":355},{"Bonus":0,"Continent":"K43","ID":23460,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":4083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23460","ServerKey":"pl181","X":385,"Y":402},{"Bonus":0,"Continent":"K35","ID":23461,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23461","ServerKey":"pl181","X":573,"Y":368},{"Bonus":7,"Continent":"K65","ID":23462,"Name":"#0008","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23462","ServerKey":"pl181","X":550,"Y":646},{"Bonus":0,"Continent":"K53","ID":23463,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23463","ServerKey":"pl181","X":357,"Y":557},{"Bonus":0,"Continent":"K46","ID":23464,"Name":"#.09 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23464","ServerKey":"pl181","X":651,"Y":478},{"Bonus":0,"Continent":"K64","ID":23465,"Name":"Ave Why!","PlayerID":698585370,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23465","ServerKey":"pl181","X":457,"Y":641},{"Bonus":0,"Continent":"K56","ID":23466,"Name":"004.","PlayerID":6520732,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23466","ServerKey":"pl181","X":614,"Y":546},{"Bonus":0,"Continent":"K34","ID":23467,"Name":"025","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23467","ServerKey":"pl181","X":479,"Y":350},{"Bonus":0,"Continent":"K63","ID":23468,"Name":"Pobozowisko","PlayerID":699513260,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23468","ServerKey":"pl181","X":393,"Y":606},{"Bonus":0,"Continent":"K64","ID":23469,"Name":"0119","PlayerID":6910361,"Points":4674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23469","ServerKey":"pl181","X":424,"Y":626},{"Bonus":0,"Continent":"K64","ID":23470,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":5127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23470","ServerKey":"pl181","X":425,"Y":634},{"Bonus":0,"Continent":"K65","ID":23471,"Name":"- 228 - RR","PlayerID":849018239,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23471","ServerKey":"pl181","X":595,"Y":619},{"Bonus":0,"Continent":"K34","ID":23472,"Name":"0015","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23472","ServerKey":"pl181","X":418,"Y":369},{"Bonus":0,"Continent":"K54","ID":23473,"Name":"Sparta_76","PlayerID":2585846,"Points":2146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23473","ServerKey":"pl181","X":479,"Y":583},{"Bonus":0,"Continent":"K56","ID":23474,"Name":"022","PlayerID":849095227,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23474","ServerKey":"pl181","X":638,"Y":557},{"Bonus":0,"Continent":"K35","ID":23475,"Name":"Wioska 4","PlayerID":849097220,"Points":1428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23475","ServerKey":"pl181","X":537,"Y":356},{"Bonus":0,"Continent":"K34","ID":23476,"Name":"North Barba 025","PlayerID":699796330,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23476","ServerKey":"pl181","X":424,"Y":366},{"Bonus":0,"Continent":"K34","ID":23477,"Name":"003","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23477","ServerKey":"pl181","X":489,"Y":347},{"Bonus":0,"Continent":"K65","ID":23478,"Name":"045","PlayerID":699828685,"Points":9232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23478","ServerKey":"pl181","X":571,"Y":635},{"Bonus":0,"Continent":"K46","ID":23479,"Name":"038 | PALESTINA","PlayerID":9228039,"Points":5967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23479","ServerKey":"pl181","X":639,"Y":442},{"Bonus":0,"Continent":"K53","ID":23480,"Name":"A0259","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23480","ServerKey":"pl181","X":351,"Y":500},{"Bonus":6,"Continent":"K65","ID":23481,"Name":"RTS 71","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23481","ServerKey":"pl181","X":579,"Y":626},{"Bonus":0,"Continent":"K53","ID":23482,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23482","ServerKey":"pl181","X":349,"Y":518},{"Bonus":0,"Continent":"K53","ID":23483,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23483","ServerKey":"pl181","X":347,"Y":521},{"Bonus":0,"Continent":"K64","ID":23484,"Name":"080.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23484","ServerKey":"pl181","X":489,"Y":657},{"Bonus":0,"Continent":"K63","ID":23485,"Name":"Wiocha 003","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23485","ServerKey":"pl181","X":393,"Y":611},{"Bonus":0,"Continent":"K64","ID":23486,"Name":"032","PlayerID":849084985,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23486","ServerKey":"pl181","X":428,"Y":634},{"Bonus":0,"Continent":"K53","ID":23487,"Name":"Chekku - meito","PlayerID":9280477,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23487","ServerKey":"pl181","X":343,"Y":523},{"Bonus":0,"Continent":"K66","ID":23488,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23488","ServerKey":"pl181","X":600,"Y":616},{"Bonus":0,"Continent":"K53","ID":23489,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23489","ServerKey":"pl181","X":366,"Y":567},{"Bonus":0,"Continent":"K36","ID":23490,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":4482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23490","ServerKey":"pl181","X":606,"Y":393},{"Bonus":0,"Continent":"K53","ID":23492,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23492","ServerKey":"pl181","X":346,"Y":512},{"Bonus":0,"Continent":"K35","ID":23493,"Name":"C002","PlayerID":699208929,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23493","ServerKey":"pl181","X":520,"Y":352},{"Bonus":0,"Continent":"K56","ID":23494,"Name":"31k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23494","ServerKey":"pl181","X":639,"Y":557},{"Bonus":0,"Continent":"K56","ID":23495,"Name":"048","PlayerID":699351301,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23495","ServerKey":"pl181","X":646,"Y":524},{"Bonus":0,"Continent":"K43","ID":23496,"Name":"Mniejsze zƂo 0068","PlayerID":699794765,"Points":6188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23496","ServerKey":"pl181","X":353,"Y":462},{"Bonus":0,"Continent":"K35","ID":23497,"Name":"Lord Lord Franek .#018","PlayerID":698420691,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23497","ServerKey":"pl181","X":533,"Y":349},{"Bonus":0,"Continent":"K53","ID":23498,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23498","ServerKey":"pl181","X":354,"Y":534},{"Bonus":0,"Continent":"K53","ID":23499,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23499","ServerKey":"pl181","X":348,"Y":516},{"Bonus":0,"Continent":"K43","ID":23500,"Name":"#001 Mentor Zenit","PlayerID":849096215,"Points":3249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23500","ServerKey":"pl181","X":358,"Y":441},{"Bonus":0,"Continent":"K56","ID":23501,"Name":"B.047","PlayerID":9188016,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23501","ServerKey":"pl181","X":653,"Y":516},{"Bonus":0,"Continent":"K63","ID":23502,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23502","ServerKey":"pl181","X":386,"Y":604},{"Bonus":0,"Continent":"K64","ID":23504,"Name":"Ave Why!","PlayerID":8729672,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23504","ServerKey":"pl181","X":455,"Y":633},{"Bonus":0,"Continent":"K56","ID":23505,"Name":"KREV 005","PlayerID":848988744,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23505","ServerKey":"pl181","X":638,"Y":563},{"Bonus":0,"Continent":"K53","ID":23506,"Name":"Darkheim","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23506","ServerKey":"pl181","X":377,"Y":582},{"Bonus":0,"Continent":"K35","ID":23507,"Name":"Wioska xkikutx","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23507","ServerKey":"pl181","X":526,"Y":356},{"Bonus":0,"Continent":"K33","ID":23508,"Name":"A-021","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23508","ServerKey":"pl181","X":393,"Y":392},{"Bonus":0,"Continent":"K46","ID":23509,"Name":"Flinii","PlayerID":848883237,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23509","ServerKey":"pl181","X":632,"Y":421},{"Bonus":0,"Continent":"K53","ID":23511,"Name":"K04.","PlayerID":849090130,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23511","ServerKey":"pl181","X":369,"Y":578},{"Bonus":0,"Continent":"K34","ID":23512,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23512","ServerKey":"pl181","X":402,"Y":384},{"Bonus":0,"Continent":"K34","ID":23513,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23513","ServerKey":"pl181","X":403,"Y":385},{"Bonus":0,"Continent":"K46","ID":23514,"Name":"001 Grudziądz","PlayerID":2135129,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23514","ServerKey":"pl181","X":649,"Y":498},{"Bonus":0,"Continent":"K56","ID":23515,"Name":"The Unforgiven","PlayerID":848926293,"Points":8464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23515","ServerKey":"pl181","X":626,"Y":586},{"Bonus":0,"Continent":"K35","ID":23516,"Name":"A033","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23516","ServerKey":"pl181","X":578,"Y":372},{"Bonus":0,"Continent":"K36","ID":23517,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":5295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23517","ServerKey":"pl181","X":600,"Y":391},{"Bonus":0,"Continent":"K46","ID":23518,"Name":"W 01","PlayerID":699524891,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23518","ServerKey":"pl181","X":647,"Y":451},{"Bonus":0,"Continent":"K64","ID":23519,"Name":"001","PlayerID":699783765,"Points":8811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23519","ServerKey":"pl181","X":429,"Y":631},{"Bonus":0,"Continent":"K46","ID":23520,"Name":"BUNKIER 002","PlayerID":7588382,"Points":11215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23520","ServerKey":"pl181","X":636,"Y":429},{"Bonus":0,"Continent":"K64","ID":23521,"Name":"A020","PlayerID":699383279,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23521","ServerKey":"pl181","X":470,"Y":637},{"Bonus":0,"Continent":"K56","ID":23522,"Name":"B.031","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23522","ServerKey":"pl181","X":648,"Y":513},{"Bonus":0,"Continent":"K63","ID":23523,"Name":"B005","PlayerID":699383279,"Points":9810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23523","ServerKey":"pl181","X":397,"Y":609},{"Bonus":0,"Continent":"K65","ID":23524,"Name":"0081","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23524","ServerKey":"pl181","X":532,"Y":644},{"Bonus":0,"Continent":"K53","ID":23525,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23525","ServerKey":"pl181","X":358,"Y":554},{"Bonus":0,"Continent":"K64","ID":23526,"Name":"psycha sitting","PlayerID":699736927,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23526","ServerKey":"pl181","X":445,"Y":644},{"Bonus":0,"Continent":"K44","ID":23527,"Name":"NOT","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23527","ServerKey":"pl181","X":417,"Y":428},{"Bonus":0,"Continent":"K56","ID":23528,"Name":"038","PlayerID":699351301,"Points":5966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23528","ServerKey":"pl181","X":653,"Y":523},{"Bonus":0,"Continent":"K35","ID":23530,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23530","ServerKey":"pl181","X":578,"Y":370},{"Bonus":0,"Continent":"K65","ID":23531,"Name":"- 225 - RR","PlayerID":849018239,"Points":7134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23531","ServerKey":"pl181","X":589,"Y":620},{"Bonus":9,"Continent":"K56","ID":23532,"Name":"060","PlayerID":849095227,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23532","ServerKey":"pl181","X":635,"Y":571},{"Bonus":0,"Continent":"K46","ID":23533,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23533","ServerKey":"pl181","X":644,"Y":452},{"Bonus":0,"Continent":"K34","ID":23534,"Name":"c 011 PrzystaƄ 2","PlayerID":3909522,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23534","ServerKey":"pl181","X":412,"Y":377},{"Bonus":0,"Continent":"K35","ID":23535,"Name":"Lord Lord Franek .#227","PlayerID":698420691,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23535","ServerKey":"pl181","X":524,"Y":354},{"Bonus":0,"Continent":"K34","ID":23536,"Name":"075...barbarka centr -----------","PlayerID":6920960,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23536","ServerKey":"pl181","X":462,"Y":354},{"Bonus":0,"Continent":"K35","ID":23537,"Name":"006) Sulistrowiczki","PlayerID":849097103,"Points":4203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23537","ServerKey":"pl181","X":540,"Y":351},{"Bonus":0,"Continent":"K35","ID":23538,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23538","ServerKey":"pl181","X":553,"Y":357},{"Bonus":0,"Continent":"K53","ID":23539,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23539","ServerKey":"pl181","X":353,"Y":513},{"Bonus":0,"Continent":"K43","ID":23540,"Name":"A0025","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23540","ServerKey":"pl181","X":385,"Y":472},{"Bonus":0,"Continent":"K64","ID":23541,"Name":"Alicization8","PlayerID":699736927,"Points":8366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23541","ServerKey":"pl181","X":461,"Y":645},{"Bonus":0,"Continent":"K65","ID":23542,"Name":"kathare","PlayerID":873575,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23542","ServerKey":"pl181","X":561,"Y":636},{"Bonus":0,"Continent":"K54","ID":23543,"Name":"NOT?","PlayerID":9236866,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23543","ServerKey":"pl181","X":428,"Y":543},{"Bonus":0,"Continent":"K34","ID":23544,"Name":"#0014 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23544","ServerKey":"pl181","X":464,"Y":352},{"Bonus":0,"Continent":"K35","ID":23545,"Name":"0024","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23545","ServerKey":"pl181","X":594,"Y":384},{"Bonus":0,"Continent":"K53","ID":23546,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23546","ServerKey":"pl181","X":352,"Y":540},{"Bonus":0,"Continent":"K53","ID":23547,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23547","ServerKey":"pl181","X":352,"Y":529},{"Bonus":0,"Continent":"K53","ID":23548,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23548","ServerKey":"pl181","X":358,"Y":549},{"Bonus":0,"Continent":"K56","ID":23549,"Name":"025","PlayerID":849006412,"Points":7110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23549","ServerKey":"pl181","X":653,"Y":506},{"Bonus":0,"Continent":"K53","ID":23550,"Name":"off 100 %","PlayerID":849012521,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23550","ServerKey":"pl181","X":359,"Y":564},{"Bonus":0,"Continent":"K56","ID":23551,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23551","ServerKey":"pl181","X":627,"Y":575},{"Bonus":0,"Continent":"K43","ID":23552,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23552","ServerKey":"pl181","X":372,"Y":415},{"Bonus":0,"Continent":"K34","ID":23553,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23553","ServerKey":"pl181","X":432,"Y":366},{"Bonus":0,"Continent":"K46","ID":23554,"Name":"028 - Cartagena","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23554","ServerKey":"pl181","X":640,"Y":442},{"Bonus":0,"Continent":"K64","ID":23555,"Name":"046|| Telescopium","PlayerID":849035525,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23555","ServerKey":"pl181","X":473,"Y":648},{"Bonus":0,"Continent":"K46","ID":23556,"Name":"*0026 Baraki","PlayerID":8459255,"Points":10088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23556","ServerKey":"pl181","X":630,"Y":425},{"Bonus":0,"Continent":"K53","ID":23557,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":6125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23557","ServerKey":"pl181","X":363,"Y":557},{"Bonus":0,"Continent":"K34","ID":23558,"Name":"010","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23558","ServerKey":"pl181","X":481,"Y":347},{"Bonus":0,"Continent":"K53","ID":23559,"Name":"off 100 %","PlayerID":849012521,"Points":7351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23559","ServerKey":"pl181","X":370,"Y":573},{"Bonus":0,"Continent":"K65","ID":23560,"Name":"020. Morning","PlayerID":848928624,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23560","ServerKey":"pl181","X":506,"Y":653},{"Bonus":0,"Continent":"K65","ID":23561,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23561","ServerKey":"pl181","X":569,"Y":631},{"Bonus":0,"Continent":"K65","ID":23562,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23562","ServerKey":"pl181","X":526,"Y":650},{"Bonus":0,"Continent":"K63","ID":23563,"Name":"Pobozowisko","PlayerID":699513260,"Points":7727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23563","ServerKey":"pl181","X":396,"Y":613},{"Bonus":0,"Continent":"K35","ID":23564,"Name":"010 Towar Wydany","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23564","ServerKey":"pl181","X":540,"Y":355},{"Bonus":0,"Continent":"K46","ID":23565,"Name":"Jehu_Kingdom_12_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23565","ServerKey":"pl181","X":632,"Y":422},{"Bonus":0,"Continent":"K53","ID":23566,"Name":"28. koƂo bila","PlayerID":8665783,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23566","ServerKey":"pl181","X":376,"Y":587},{"Bonus":0,"Continent":"K35","ID":23567,"Name":"005 LeciaƂem Na Hulajce","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23567","ServerKey":"pl181","X":543,"Y":354},{"Bonus":0,"Continent":"K64","ID":23568,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23568","ServerKey":"pl181","X":497,"Y":652},{"Bonus":0,"Continent":"K66","ID":23569,"Name":"aAa Szlaban 5","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23569","ServerKey":"pl181","X":606,"Y":610},{"Bonus":0,"Continent":"K46","ID":23570,"Name":"039","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23570","ServerKey":"pl181","X":652,"Y":486},{"Bonus":0,"Continent":"K65","ID":23571,"Name":"*Lan","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23571","ServerKey":"pl181","X":575,"Y":634},{"Bonus":0,"Continent":"K35","ID":23572,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23572","ServerKey":"pl181","X":563,"Y":360},{"Bonus":0,"Continent":"K64","ID":23573,"Name":"Pobozowisko","PlayerID":699513260,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23573","ServerKey":"pl181","X":407,"Y":620},{"Bonus":0,"Continent":"K46","ID":23574,"Name":"013 MONETKI","PlayerID":7588382,"Points":8869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23574","ServerKey":"pl181","X":652,"Y":488},{"Bonus":1,"Continent":"K35","ID":23575,"Name":"yyyyy","PlayerID":699883079,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23575","ServerKey":"pl181","X":503,"Y":352},{"Bonus":0,"Continent":"K43","ID":23576,"Name":"003 181","PlayerID":698807570,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23576","ServerKey":"pl181","X":352,"Y":495},{"Bonus":0,"Continent":"K35","ID":23577,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23577","ServerKey":"pl181","X":564,"Y":363},{"Bonus":0,"Continent":"K34","ID":23578,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23578","ServerKey":"pl181","X":422,"Y":371},{"Bonus":0,"Continent":"K43","ID":23579,"Name":"AA02 Francja","PlayerID":483145,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23579","ServerKey":"pl181","X":378,"Y":413},{"Bonus":0,"Continent":"K36","ID":23580,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":7066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23580","ServerKey":"pl181","X":607,"Y":395},{"Bonus":0,"Continent":"K35","ID":23582,"Name":"Lord Lord Franek .#137","PlayerID":698420691,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23582","ServerKey":"pl181","X":515,"Y":347},{"Bonus":0,"Continent":"K53","ID":23583,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":5743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23583","ServerKey":"pl181","X":371,"Y":573},{"Bonus":0,"Continent":"K65","ID":23584,"Name":"0472","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23584","ServerKey":"pl181","X":533,"Y":649},{"Bonus":0,"Continent":"K63","ID":23585,"Name":"042 wioska barbarka","PlayerID":6354098,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23585","ServerKey":"pl181","X":391,"Y":609},{"Bonus":0,"Continent":"K33","ID":23586,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":2135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23586","ServerKey":"pl181","X":386,"Y":395},{"Bonus":0,"Continent":"K64","ID":23587,"Name":"057","PlayerID":699783765,"Points":5556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23587","ServerKey":"pl181","X":426,"Y":631},{"Bonus":0,"Continent":"K64","ID":23588,"Name":"Wioska Zielony2607","PlayerID":699238479,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23588","ServerKey":"pl181","X":472,"Y":645},{"Bonus":0,"Continent":"K65","ID":23589,"Name":"SSJ 064","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23589","ServerKey":"pl181","X":515,"Y":653},{"Bonus":0,"Continent":"K53","ID":23590,"Name":"-004-","PlayerID":9253494,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23590","ServerKey":"pl181","X":358,"Y":545},{"Bonus":0,"Continent":"K46","ID":23591,"Name":"006 C3tiv","PlayerID":2135129,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23591","ServerKey":"pl181","X":653,"Y":487},{"Bonus":0,"Continent":"K56","ID":23592,"Name":"018 Barba","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23592","ServerKey":"pl181","X":654,"Y":500},{"Bonus":0,"Continent":"K64","ID":23593,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":6663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23593","ServerKey":"pl181","X":431,"Y":619},{"Bonus":0,"Continent":"K64","ID":23594,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23594","ServerKey":"pl181","X":440,"Y":642},{"Bonus":0,"Continent":"K56","ID":23595,"Name":"200","PlayerID":7038651,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23595","ServerKey":"pl181","X":645,"Y":541},{"Bonus":0,"Continent":"K34","ID":23596,"Name":"Lecymy DUR","PlayerID":6169408,"Points":2731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23596","ServerKey":"pl181","X":441,"Y":362},{"Bonus":2,"Continent":"K64","ID":23597,"Name":"Ave Why!","PlayerID":698585370,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23597","ServerKey":"pl181","X":496,"Y":654},{"Bonus":0,"Continent":"K53","ID":23598,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23598","ServerKey":"pl181","X":362,"Y":561},{"Bonus":0,"Continent":"K65","ID":23599,"Name":"**Quetico","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23599","ServerKey":"pl181","X":575,"Y":628},{"Bonus":0,"Continent":"K65","ID":23600,"Name":"0473","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23600","ServerKey":"pl181","X":537,"Y":649},{"Bonus":0,"Continent":"K35","ID":23601,"Name":"Wioska 3","PlayerID":849097220,"Points":3049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23601","ServerKey":"pl181","X":538,"Y":354},{"Bonus":0,"Continent":"K64","ID":23602,"Name":"Ave Why!","PlayerID":698585370,"Points":6176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23602","ServerKey":"pl181","X":464,"Y":642},{"Bonus":0,"Continent":"K64","ID":23603,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":7670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23603","ServerKey":"pl181","X":423,"Y":632},{"Bonus":0,"Continent":"K56","ID":23604,"Name":"81k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23604","ServerKey":"pl181","X":643,"Y":544},{"Bonus":0,"Continent":"K65","ID":23605,"Name":"*Loch","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23605","ServerKey":"pl181","X":574,"Y":634},{"Bonus":0,"Continent":"K34","ID":23606,"Name":"Charizard","PlayerID":699883079,"Points":10332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23606","ServerKey":"pl181","X":498,"Y":352},{"Bonus":0,"Continent":"K66","ID":23607,"Name":"~~004~~","PlayerID":7829201,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23607","ServerKey":"pl181","X":605,"Y":600},{"Bonus":0,"Continent":"K56","ID":23608,"Name":"B.048","PlayerID":9188016,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23608","ServerKey":"pl181","X":654,"Y":516},{"Bonus":0,"Continent":"K64","ID":23609,"Name":"0040 Wioska barbarzyƄska","PlayerID":9060641,"Points":6453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23609","ServerKey":"pl181","X":406,"Y":614},{"Bonus":0,"Continent":"K43","ID":23610,"Name":"7.62 mm","PlayerID":848886056,"Points":2177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23610","ServerKey":"pl181","X":379,"Y":404},{"Bonus":0,"Continent":"K46","ID":23611,"Name":"020 Barba","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23611","ServerKey":"pl181","X":653,"Y":492},{"Bonus":0,"Continent":"K43","ID":23612,"Name":"A0055","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23612","ServerKey":"pl181","X":347,"Y":489},{"Bonus":0,"Continent":"K46","ID":23614,"Name":"074 Rozpusta4","PlayerID":9238175,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23614","ServerKey":"pl181","X":638,"Y":430},{"Bonus":0,"Continent":"K53","ID":23615,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23615","ServerKey":"pl181","X":351,"Y":525},{"Bonus":0,"Continent":"K53","ID":23616,"Name":"-018-","PlayerID":699097885,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23616","ServerKey":"pl181","X":377,"Y":587},{"Bonus":0,"Continent":"K53","ID":23617,"Name":"041","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23617","ServerKey":"pl181","X":370,"Y":563},{"Bonus":0,"Continent":"K53","ID":23618,"Name":"Dajanka 13","PlayerID":849012843,"Points":6451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23618","ServerKey":"pl181","X":356,"Y":555},{"Bonus":0,"Continent":"K34","ID":23619,"Name":"150...ksiÄ…ĆŒÄ™ plemienia","PlayerID":6920960,"Points":7276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23619","ServerKey":"pl181","X":453,"Y":360},{"Bonus":0,"Continent":"K56","ID":23620,"Name":"022","PlayerID":849091105,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23620","ServerKey":"pl181","X":652,"Y":502},{"Bonus":0,"Continent":"K46","ID":23621,"Name":"007 - Mroczna Osada","PlayerID":849035905,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23621","ServerKey":"pl181","X":628,"Y":415},{"Bonus":0,"Continent":"K65","ID":23622,"Name":"0142","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23622","ServerKey":"pl181","X":536,"Y":644},{"Bonus":0,"Continent":"K64","ID":23623,"Name":"023|| Canis Minor","PlayerID":849035525,"Points":9920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23623","ServerKey":"pl181","X":491,"Y":648},{"Bonus":0,"Continent":"K43","ID":23624,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23624","ServerKey":"pl181","X":351,"Y":475},{"Bonus":0,"Continent":"K43","ID":23625,"Name":"A0060","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23625","ServerKey":"pl181","X":349,"Y":487},{"Bonus":0,"Continent":"K35","ID":23626,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23626","ServerKey":"pl181","X":561,"Y":365},{"Bonus":0,"Continent":"K43","ID":23627,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23627","ServerKey":"pl181","X":350,"Y":480},{"Bonus":0,"Continent":"K43","ID":23628,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23628","ServerKey":"pl181","X":395,"Y":465},{"Bonus":0,"Continent":"K56","ID":23629,"Name":"jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23629","ServerKey":"pl181","X":636,"Y":573},{"Bonus":0,"Continent":"K64","ID":23630,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":8204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23630","ServerKey":"pl181","X":423,"Y":627},{"Bonus":0,"Continent":"K65","ID":23631,"Name":"SSJ 050","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23631","ServerKey":"pl181","X":511,"Y":649},{"Bonus":4,"Continent":"K53","ID":23632,"Name":"-012-","PlayerID":699097885,"Points":9266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23632","ServerKey":"pl181","X":378,"Y":588},{"Bonus":0,"Continent":"K34","ID":23633,"Name":"109","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23633","ServerKey":"pl181","X":485,"Y":356},{"Bonus":0,"Continent":"K34","ID":23634,"Name":"North Barba 029","PlayerID":699796330,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23634","ServerKey":"pl181","X":430,"Y":369},{"Bonus":0,"Continent":"K34","ID":23635,"Name":"008...PƁD_Ogar","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23635","ServerKey":"pl181","X":456,"Y":358},{"Bonus":0,"Continent":"K34","ID":23636,"Name":"#0023 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23636","ServerKey":"pl181","X":468,"Y":355},{"Bonus":0,"Continent":"K34","ID":23637,"Name":"0012","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23637","ServerKey":"pl181","X":420,"Y":368},{"Bonus":0,"Continent":"K66","ID":23638,"Name":"zzzGranica Bledu 10","PlayerID":699778867,"Points":9026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23638","ServerKey":"pl181","X":607,"Y":608},{"Bonus":0,"Continent":"K46","ID":23639,"Name":"W 02","PlayerID":699524891,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23639","ServerKey":"pl181","X":643,"Y":455},{"Bonus":0,"Continent":"K43","ID":23640,"Name":"067","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23640","ServerKey":"pl181","X":355,"Y":465},{"Bonus":0,"Continent":"K65","ID":23641,"Name":"0474","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23641","ServerKey":"pl181","X":532,"Y":652},{"Bonus":0,"Continent":"K43","ID":23642,"Name":"A0225","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23642","ServerKey":"pl181","X":347,"Y":499},{"Bonus":0,"Continent":"K56","ID":23643,"Name":"86k$ Grvvyq","PlayerID":699676005,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23643","ServerKey":"pl181","X":646,"Y":546},{"Bonus":0,"Continent":"K64","ID":23644,"Name":"B004","PlayerID":699383279,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23644","ServerKey":"pl181","X":401,"Y":610},{"Bonus":0,"Continent":"K56","ID":23645,"Name":"036","PlayerID":849095227,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23645","ServerKey":"pl181","X":636,"Y":564},{"Bonus":3,"Continent":"K46","ID":23646,"Name":"Jan 05 K","PlayerID":879782,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23646","ServerKey":"pl181","X":645,"Y":464},{"Bonus":0,"Continent":"K56","ID":23647,"Name":"B.033","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23647","ServerKey":"pl181","X":654,"Y":514},{"Bonus":0,"Continent":"K46","ID":23648,"Name":"115 Sagae","PlayerID":7092442,"Points":5807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23648","ServerKey":"pl181","X":651,"Y":465},{"Bonus":0,"Continent":"K65","ID":23649,"Name":"Nowe 4","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23649","ServerKey":"pl181","X":537,"Y":645},{"Bonus":0,"Continent":"K65","ID":23650,"Name":"- 242 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23650","ServerKey":"pl181","X":596,"Y":618},{"Bonus":0,"Continent":"K65","ID":23651,"Name":"mioduch001","PlayerID":698385619,"Points":2663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23651","ServerKey":"pl181","X":585,"Y":628},{"Bonus":0,"Continent":"K35","ID":23652,"Name":"A001","PlayerID":699761749,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23652","ServerKey":"pl181","X":599,"Y":386},{"Bonus":0,"Continent":"K64","ID":23654,"Name":"psycha sitting","PlayerID":699736927,"Points":8229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23654","ServerKey":"pl181","X":454,"Y":643},{"Bonus":0,"Continent":"K35","ID":23655,"Name":"Sque zostaje","PlayerID":7181335,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23655","ServerKey":"pl181","X":524,"Y":348},{"Bonus":0,"Continent":"K34","ID":23656,"Name":"K34 - [110] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23656","ServerKey":"pl181","X":444,"Y":360},{"Bonus":0,"Continent":"K43","ID":23657,"Name":"A0106","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23657","ServerKey":"pl181","X":352,"Y":490},{"Bonus":0,"Continent":"K64","ID":23658,"Name":"A004","PlayerID":848912772,"Points":7886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23658","ServerKey":"pl181","X":405,"Y":616},{"Bonus":0,"Continent":"K63","ID":23660,"Name":"Wiocha 001","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23660","ServerKey":"pl181","X":394,"Y":613},{"Bonus":0,"Continent":"K34","ID":23661,"Name":"0146","PlayerID":699431255,"Points":10903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23661","ServerKey":"pl181","X":425,"Y":371},{"Bonus":0,"Continent":"K36","ID":23662,"Name":"Isengard","PlayerID":848915730,"Points":6201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23662","ServerKey":"pl181","X":611,"Y":395},{"Bonus":0,"Continent":"K63","ID":23663,"Name":"Pobozowisko","PlayerID":699513260,"Points":10871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23663","ServerKey":"pl181","X":395,"Y":606},{"Bonus":0,"Continent":"K46","ID":23664,"Name":"0057","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23664","ServerKey":"pl181","X":620,"Y":411},{"Bonus":0,"Continent":"K43","ID":23665,"Name":"A0170","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23665","ServerKey":"pl181","X":355,"Y":486},{"Bonus":0,"Continent":"K65","ID":23666,"Name":"kathare","PlayerID":873575,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23666","ServerKey":"pl181","X":558,"Y":643},{"Bonus":0,"Continent":"K64","ID":23667,"Name":"Ave Why!","PlayerID":8729672,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23667","ServerKey":"pl181","X":452,"Y":630},{"Bonus":0,"Continent":"K43","ID":23668,"Name":"A0210","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23668","ServerKey":"pl181","X":368,"Y":473},{"Bonus":0,"Continent":"K35","ID":23669,"Name":"A025","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23669","ServerKey":"pl181","X":585,"Y":370},{"Bonus":0,"Continent":"K64","ID":23670,"Name":"15 Gondolin","PlayerID":699736927,"Points":8041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23670","ServerKey":"pl181","X":458,"Y":645},{"Bonus":0,"Continent":"K56","ID":23671,"Name":"jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23671","ServerKey":"pl181","X":629,"Y":582},{"Bonus":0,"Continent":"K65","ID":23672,"Name":"0475","PlayerID":698659980,"Points":9901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23672","ServerKey":"pl181","X":536,"Y":649},{"Bonus":0,"Continent":"K35","ID":23673,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23673","ServerKey":"pl181","X":572,"Y":364},{"Bonus":0,"Continent":"K35","ID":23674,"Name":"067 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23674","ServerKey":"pl181","X":549,"Y":355},{"Bonus":0,"Continent":"K56","ID":23675,"Name":"004","PlayerID":699351301,"Points":12134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23675","ServerKey":"pl181","X":649,"Y":533},{"Bonus":0,"Continent":"K64","ID":23676,"Name":"Ave Why!","PlayerID":698585370,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23676","ServerKey":"pl181","X":482,"Y":659},{"Bonus":0,"Continent":"K34","ID":23677,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23677","ServerKey":"pl181","X":435,"Y":360},{"Bonus":3,"Continent":"K34","ID":23678,"Name":"yyyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23678","ServerKey":"pl181","X":490,"Y":345},{"Bonus":0,"Continent":"K46","ID":23679,"Name":"013. Daro Lew","PlayerID":849095599,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23679","ServerKey":"pl181","X":639,"Y":441},{"Bonus":0,"Continent":"K35","ID":23680,"Name":"Charfa","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23680","ServerKey":"pl181","X":517,"Y":349},{"Bonus":0,"Continent":"K43","ID":23681,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23681","ServerKey":"pl181","X":388,"Y":442},{"Bonus":0,"Continent":"K34","ID":23682,"Name":"Monetio","PlayerID":849017820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23682","ServerKey":"pl181","X":443,"Y":357},{"Bonus":0,"Continent":"K35","ID":23683,"Name":"Vataha","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23683","ServerKey":"pl181","X":554,"Y":357},{"Bonus":0,"Continent":"K33","ID":23684,"Name":"A-029","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23684","ServerKey":"pl181","X":383,"Y":399},{"Bonus":0,"Continent":"K35","ID":23685,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23685","ServerKey":"pl181","X":574,"Y":364},{"Bonus":0,"Continent":"K46","ID":23687,"Name":"#.06 KWASIOR","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23687","ServerKey":"pl181","X":651,"Y":467},{"Bonus":0,"Continent":"K64","ID":23688,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23688","ServerKey":"pl181","X":439,"Y":640},{"Bonus":0,"Continent":"K63","ID":23689,"Name":"Pobozowisko","PlayerID":699513260,"Points":10960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23689","ServerKey":"pl181","X":395,"Y":609},{"Bonus":0,"Continent":"K34","ID":23690,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23690","ServerKey":"pl181","X":432,"Y":361},{"Bonus":0,"Continent":"K56","ID":23691,"Name":"MRF 001","PlayerID":118121,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23691","ServerKey":"pl181","X":629,"Y":580},{"Bonus":0,"Continent":"K46","ID":23692,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23692","ServerKey":"pl181","X":637,"Y":440},{"Bonus":0,"Continent":"K34","ID":23693,"Name":"042","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23693","ServerKey":"pl181","X":484,"Y":351},{"Bonus":0,"Continent":"K46","ID":23694,"Name":"#.21 Wioska barbarzyƄska","PlayerID":849054582,"Points":8063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23694","ServerKey":"pl181","X":648,"Y":478},{"Bonus":0,"Continent":"K35","ID":23695,"Name":"Owp Konfederacja","PlayerID":848915730,"Points":9278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23695","ServerKey":"pl181","X":595,"Y":384},{"Bonus":0,"Continent":"K53","ID":23696,"Name":"017 181","PlayerID":698807570,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23696","ServerKey":"pl181","X":352,"Y":502},{"Bonus":0,"Continent":"K34","ID":23697,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23697","ServerKey":"pl181","X":499,"Y":350},{"Bonus":0,"Continent":"K53","ID":23698,"Name":"A0311","PlayerID":8841266,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23698","ServerKey":"pl181","X":346,"Y":505},{"Bonus":0,"Continent":"K43","ID":23699,"Name":"A0151","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23699","ServerKey":"pl181","X":348,"Y":490},{"Bonus":0,"Continent":"K43","ID":23700,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23700","ServerKey":"pl181","X":372,"Y":416},{"Bonus":0,"Continent":"K34","ID":23701,"Name":"131...centr","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23701","ServerKey":"pl181","X":459,"Y":355},{"Bonus":0,"Continent":"K53","ID":23702,"Name":"off 100 %","PlayerID":849012521,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23702","ServerKey":"pl181","X":361,"Y":554},{"Bonus":0,"Continent":"K35","ID":23703,"Name":"A READY","PlayerID":1553947,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23703","ServerKey":"pl181","X":595,"Y":397},{"Bonus":0,"Continent":"K43","ID":23704,"Name":"AB13 Szkocja","PlayerID":483145,"Points":4424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23704","ServerKey":"pl181","X":377,"Y":417},{"Bonus":0,"Continent":"K64","ID":23705,"Name":"Ave Why!","PlayerID":698585370,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23705","ServerKey":"pl181","X":460,"Y":640},{"Bonus":0,"Continent":"K34","ID":23706,"Name":"XXXX","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23706","ServerKey":"pl181","X":496,"Y":346},{"Bonus":0,"Continent":"K46","ID":23707,"Name":"Flinii","PlayerID":848883237,"Points":6303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23707","ServerKey":"pl181","X":632,"Y":431},{"Bonus":0,"Continent":"K64","ID":23709,"Name":"075","PlayerID":849084985,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23709","ServerKey":"pl181","X":437,"Y":636},{"Bonus":0,"Continent":"K35","ID":23710,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23710","ServerKey":"pl181","X":561,"Y":359},{"Bonus":9,"Continent":"K43","ID":23711,"Name":"003","PlayerID":848945529,"Points":7880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23711","ServerKey":"pl181","X":376,"Y":415},{"Bonus":0,"Continent":"K64","ID":23712,"Name":"Dzikie wsparcie","PlayerID":698807570,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23712","ServerKey":"pl181","X":468,"Y":653},{"Bonus":0,"Continent":"K53","ID":23713,"Name":"DajankA 08","PlayerID":849012843,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23713","ServerKey":"pl181","X":355,"Y":557},{"Bonus":0,"Continent":"K43","ID":23715,"Name":"A0107","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23715","ServerKey":"pl181","X":352,"Y":492},{"Bonus":7,"Continent":"K35","ID":23716,"Name":"018 017","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23716","ServerKey":"pl181","X":539,"Y":355},{"Bonus":0,"Continent":"K35","ID":23717,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23717","ServerKey":"pl181","X":565,"Y":363},{"Bonus":0,"Continent":"K64","ID":23718,"Name":"Ave Why!","PlayerID":698585370,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23718","ServerKey":"pl181","X":472,"Y":651},{"Bonus":6,"Continent":"K53","ID":23719,"Name":"009 181","PlayerID":698807570,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23719","ServerKey":"pl181","X":352,"Y":506},{"Bonus":0,"Continent":"K56","ID":23720,"Name":"058","PlayerID":698999105,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23720","ServerKey":"pl181","X":651,"Y":528},{"Bonus":0,"Continent":"K43","ID":23721,"Name":"027 VW GD --016--","PlayerID":3108144,"Points":4495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23721","ServerKey":"pl181","X":370,"Y":421},{"Bonus":0,"Continent":"K34","ID":23722,"Name":"007...PƁD_Ogarniamy","PlayerID":6920960,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23722","ServerKey":"pl181","X":456,"Y":356},{"Bonus":0,"Continent":"K43","ID":23723,"Name":"Stany","PlayerID":1746216,"Points":5150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23723","ServerKey":"pl181","X":372,"Y":422},{"Bonus":0,"Continent":"K64","ID":23724,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23724","ServerKey":"pl181","X":414,"Y":626},{"Bonus":0,"Continent":"K35","ID":23725,"Name":"Lord Lord Franek .#138","PlayerID":698420691,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23725","ServerKey":"pl181","X":518,"Y":349},{"Bonus":2,"Continent":"K46","ID":23726,"Name":"002 MONETKI","PlayerID":7588382,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23726","ServerKey":"pl181","X":648,"Y":485},{"Bonus":0,"Continent":"K35","ID":23727,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23727","ServerKey":"pl181","X":527,"Y":387},{"Bonus":0,"Continent":"K34","ID":23728,"Name":"Wioska barbarzyƄska","PlayerID":699244334,"Points":4230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23728","ServerKey":"pl181","X":497,"Y":347},{"Bonus":0,"Continent":"K64","ID":23729,"Name":"Ave Why!","PlayerID":698585370,"Points":8554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23729","ServerKey":"pl181","X":497,"Y":655},{"Bonus":0,"Continent":"K43","ID":23730,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23730","ServerKey":"pl181","X":349,"Y":466},{"Bonus":0,"Continent":"K43","ID":23731,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23731","ServerKey":"pl181","X":350,"Y":474},{"Bonus":0,"Continent":"K34","ID":23732,"Name":"009","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23732","ServerKey":"pl181","X":483,"Y":348},{"Bonus":0,"Continent":"K43","ID":23733,"Name":"Maszlug Stolica","PlayerID":848977649,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23733","ServerKey":"pl181","X":366,"Y":432},{"Bonus":0,"Continent":"K64","ID":23734,"Name":"Mandarynki1","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23734","ServerKey":"pl181","X":457,"Y":648},{"Bonus":1,"Continent":"K35","ID":23735,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23735","ServerKey":"pl181","X":557,"Y":356},{"Bonus":0,"Continent":"K46","ID":23736,"Name":"#.03 AVEWiking","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23736","ServerKey":"pl181","X":652,"Y":471},{"Bonus":0,"Continent":"K43","ID":23737,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23737","ServerKey":"pl181","X":374,"Y":416},{"Bonus":0,"Continent":"K35","ID":23738,"Name":"Lord Lord Franek .#045","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23738","ServerKey":"pl181","X":516,"Y":346},{"Bonus":0,"Continent":"K64","ID":23739,"Name":"Joker pozdrawia ;)","PlayerID":849006145,"Points":7350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23739","ServerKey":"pl181","X":426,"Y":636},{"Bonus":0,"Continent":"K65","ID":23740,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23740","ServerKey":"pl181","X":538,"Y":644},{"Bonus":0,"Continent":"K53","ID":23741,"Name":"K02..","PlayerID":849090130,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23741","ServerKey":"pl181","X":367,"Y":580},{"Bonus":0,"Continent":"K35","ID":23742,"Name":"Ulmus glabra","PlayerID":699883079,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23742","ServerKey":"pl181","X":503,"Y":346},{"Bonus":0,"Continent":"K53","ID":23743,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23743","ServerKey":"pl181","X":360,"Y":564},{"Bonus":0,"Continent":"K56","ID":23744,"Name":"B.049","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23744","ServerKey":"pl181","X":650,"Y":516},{"Bonus":0,"Continent":"K35","ID":23745,"Name":"A013","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23745","ServerKey":"pl181","X":581,"Y":371},{"Bonus":0,"Continent":"K53","ID":23746,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23746","ServerKey":"pl181","X":353,"Y":531},{"Bonus":0,"Continent":"K64","ID":23748,"Name":"Mandarynki 3","PlayerID":699736927,"Points":8440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23748","ServerKey":"pl181","X":459,"Y":649},{"Bonus":0,"Continent":"K53","ID":23749,"Name":"Wioska Don Kargul","PlayerID":3529695,"Points":9163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23749","ServerKey":"pl181","X":349,"Y":536},{"Bonus":0,"Continent":"K65","ID":23750,"Name":"0252","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23750","ServerKey":"pl181","X":541,"Y":647},{"Bonus":0,"Continent":"K64","ID":23751,"Name":"KUZYN REMONCIARZ","PlayerID":848913998,"Points":4553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23751","ServerKey":"pl181","X":427,"Y":630},{"Bonus":0,"Continent":"K53","ID":23753,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23753","ServerKey":"pl181","X":347,"Y":513},{"Bonus":0,"Continent":"K63","ID":23754,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23754","ServerKey":"pl181","X":388,"Y":606},{"Bonus":0,"Continent":"K53","ID":23755,"Name":"060","PlayerID":8908002,"Points":4696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23755","ServerKey":"pl181","X":355,"Y":541},{"Bonus":0,"Continent":"K64","ID":23756,"Name":"Alicization 3","PlayerID":699849210,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23756","ServerKey":"pl181","X":459,"Y":647},{"Bonus":0,"Continent":"K65","ID":23757,"Name":"045|| Vulpecula","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23757","ServerKey":"pl181","X":501,"Y":652},{"Bonus":8,"Continent":"K56","ID":23758,"Name":"B.001","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23758","ServerKey":"pl181","X":651,"Y":514},{"Bonus":0,"Continent":"K45","ID":23759,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23759","ServerKey":"pl181","X":582,"Y":485},{"Bonus":0,"Continent":"K43","ID":23760,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23760","ServerKey":"pl181","X":358,"Y":444},{"Bonus":0,"Continent":"K65","ID":23761,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23761","ServerKey":"pl181","X":526,"Y":652},{"Bonus":0,"Continent":"K53","ID":23762,"Name":"off 100 %","PlayerID":849012521,"Points":8690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23762","ServerKey":"pl181","X":359,"Y":556},{"Bonus":0,"Continent":"K64","ID":23763,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23763","ServerKey":"pl181","X":453,"Y":646},{"Bonus":0,"Continent":"K65","ID":23764,"Name":"- 227 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23764","ServerKey":"pl181","X":596,"Y":621},{"Bonus":0,"Continent":"K34","ID":23765,"Name":"North Barba 027","PlayerID":699796330,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23765","ServerKey":"pl181","X":428,"Y":368},{"Bonus":0,"Continent":"K34","ID":23766,"Name":"Wioska barbarzyƄska 024","PlayerID":6343784,"Points":7244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23766","ServerKey":"pl181","X":498,"Y":346},{"Bonus":0,"Continent":"K65","ID":23767,"Name":"0476","PlayerID":698659980,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23767","ServerKey":"pl181","X":517,"Y":649},{"Bonus":0,"Continent":"K53","ID":23768,"Name":"009","PlayerID":8908002,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23768","ServerKey":"pl181","X":357,"Y":542},{"Bonus":0,"Continent":"K43","ID":23769,"Name":"Mniejsze zƂo 0079","PlayerID":699794765,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23769","ServerKey":"pl181","X":389,"Y":459},{"Bonus":0,"Continent":"K56","ID":23770,"Name":"900","PlayerID":7038651,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23770","ServerKey":"pl181","X":645,"Y":539},{"Bonus":0,"Continent":"K34","ID":23771,"Name":"134","PlayerID":7271812,"Points":5754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23771","ServerKey":"pl181","X":482,"Y":350},{"Bonus":0,"Continent":"K64","ID":23772,"Name":"No. 2","PlayerID":698585370,"Points":9201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23772","ServerKey":"pl181","X":477,"Y":652},{"Bonus":0,"Continent":"K64","ID":23773,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23773","ServerKey":"pl181","X":475,"Y":649},{"Bonus":0,"Continent":"K43","ID":23774,"Name":"A0226","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23774","ServerKey":"pl181","X":346,"Y":499},{"Bonus":0,"Continent":"K35","ID":23775,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23775","ServerKey":"pl181","X":560,"Y":365},{"Bonus":0,"Continent":"K34","ID":23776,"Name":"010...CENTR_FOX","PlayerID":6920960,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23776","ServerKey":"pl181","X":462,"Y":353},{"Bonus":8,"Continent":"K53","ID":23777,"Name":"Brat447","PlayerID":699262350,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23777","ServerKey":"pl181","X":348,"Y":506},{"Bonus":0,"Continent":"K64","ID":23778,"Name":"A002","PlayerID":699383279,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23778","ServerKey":"pl181","X":474,"Y":639},{"Bonus":0,"Continent":"K34","ID":23779,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23779","ServerKey":"pl181","X":401,"Y":388},{"Bonus":0,"Continent":"K64","ID":23780,"Name":"ave why!","PlayerID":698143931,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23780","ServerKey":"pl181","X":447,"Y":642},{"Bonus":0,"Continent":"K46","ID":23781,"Name":"Jehu_Kingdom_22","PlayerID":8785314,"Points":8152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23781","ServerKey":"pl181","X":649,"Y":485},{"Bonus":0,"Continent":"K46","ID":23782,"Name":"#.31 Wioska grunwald45","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23782","ServerKey":"pl181","X":653,"Y":483},{"Bonus":0,"Continent":"K53","ID":23783,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23783","ServerKey":"pl181","X":358,"Y":551},{"Bonus":0,"Continent":"K43","ID":23784,"Name":"Maszlug kolonia VII","PlayerID":848977649,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23784","ServerKey":"pl181","X":366,"Y":430},{"Bonus":0,"Continent":"K53","ID":23785,"Name":"23. Altanka u pompa","PlayerID":8665783,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23785","ServerKey":"pl181","X":375,"Y":588},{"Bonus":1,"Continent":"K56","ID":23786,"Name":"003","PlayerID":849095963,"Points":10668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23786","ServerKey":"pl181","X":642,"Y":557},{"Bonus":0,"Continent":"K64","ID":23787,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23787","ServerKey":"pl181","X":442,"Y":644},{"Bonus":0,"Continent":"K43","ID":23788,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23788","ServerKey":"pl181","X":353,"Y":467},{"Bonus":0,"Continent":"K34","ID":23789,"Name":"040","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23789","ServerKey":"pl181","X":485,"Y":345},{"Bonus":0,"Continent":"K43","ID":23790,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23790","ServerKey":"pl181","X":375,"Y":408},{"Bonus":0,"Continent":"K53","ID":23791,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23791","ServerKey":"pl181","X":365,"Y":569},{"Bonus":0,"Continent":"K65","ID":23792,"Name":"S_010","PlayerID":849100262,"Points":10653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23792","ServerKey":"pl181","X":503,"Y":653},{"Bonus":0,"Continent":"K56","ID":23793,"Name":"PZ033","PlayerID":8096537,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23793","ServerKey":"pl181","X":654,"Y":520},{"Bonus":0,"Continent":"K46","ID":23794,"Name":"0054","PlayerID":699429153,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23794","ServerKey":"pl181","X":621,"Y":410},{"Bonus":0,"Continent":"K56","ID":23795,"Name":"[148]","PlayerID":8000875,"Points":9607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23795","ServerKey":"pl181","X":633,"Y":566},{"Bonus":0,"Continent":"K56","ID":23796,"Name":"D 008","PlayerID":8078914,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23796","ServerKey":"pl181","X":655,"Y":503},{"Bonus":0,"Continent":"K34","ID":23797,"Name":"0039","PlayerID":848913037,"Points":8830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23797","ServerKey":"pl181","X":418,"Y":373},{"Bonus":0,"Continent":"K63","ID":23799,"Name":"Pobozowisko","PlayerID":699513260,"Points":10950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23799","ServerKey":"pl181","X":393,"Y":605},{"Bonus":0,"Continent":"K66","ID":23800,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23800","ServerKey":"pl181","X":602,"Y":617},{"Bonus":0,"Continent":"K64","ID":23801,"Name":"Edirne","PlayerID":849089459,"Points":8444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23801","ServerKey":"pl181","X":418,"Y":629},{"Bonus":0,"Continent":"K43","ID":23802,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23802","ServerKey":"pl181","X":347,"Y":483},{"Bonus":0,"Continent":"K34","ID":23803,"Name":"Szlachcic","PlayerID":698388578,"Points":4355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23803","ServerKey":"pl181","X":436,"Y":365},{"Bonus":0,"Continent":"K53","ID":23804,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23804","ServerKey":"pl181","X":349,"Y":529},{"Bonus":0,"Continent":"K64","ID":23805,"Name":"08 KsiÄ™ĆŒyc, uĆŒywając motyki","PlayerID":699121671,"Points":9599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23805","ServerKey":"pl181","X":465,"Y":650},{"Bonus":0,"Continent":"K35","ID":23806,"Name":"A046","PlayerID":699485250,"Points":8224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23806","ServerKey":"pl181","X":586,"Y":371},{"Bonus":0,"Continent":"K64","ID":23807,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23807","ServerKey":"pl181","X":403,"Y":618},{"Bonus":4,"Continent":"K43","ID":23808,"Name":"Szlachcic","PlayerID":6258092,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23808","ServerKey":"pl181","X":355,"Y":449},{"Bonus":0,"Continent":"K63","ID":23809,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23809","ServerKey":"pl181","X":398,"Y":609},{"Bonus":0,"Continent":"K64","ID":23810,"Name":"085","PlayerID":849084985,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23810","ServerKey":"pl181","X":439,"Y":639},{"Bonus":0,"Continent":"K43","ID":23811,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23811","ServerKey":"pl181","X":375,"Y":412},{"Bonus":0,"Continent":"K65","ID":23812,"Name":"S_012","PlayerID":849100262,"Points":7688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23812","ServerKey":"pl181","X":507,"Y":655},{"Bonus":0,"Continent":"K35","ID":23814,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23814","ServerKey":"pl181","X":571,"Y":367},{"Bonus":0,"Continent":"K65","ID":23815,"Name":"0280","PlayerID":698659980,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23815","ServerKey":"pl181","X":546,"Y":646},{"Bonus":0,"Continent":"K56","ID":23816,"Name":"069","PlayerID":849095227,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23816","ServerKey":"pl181","X":637,"Y":572},{"Bonus":0,"Continent":"K43","ID":23817,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23817","ServerKey":"pl181","X":355,"Y":444},{"Bonus":0,"Continent":"K36","ID":23818,"Name":"A006","PlayerID":699761749,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23818","ServerKey":"pl181","X":601,"Y":386},{"Bonus":4,"Continent":"K63","ID":23819,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23819","ServerKey":"pl181","X":397,"Y":612},{"Bonus":0,"Continent":"K56","ID":23820,"Name":"031","PlayerID":698786826,"Points":7745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23820","ServerKey":"pl181","X":616,"Y":598},{"Bonus":0,"Continent":"K65","ID":23821,"Name":"020","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23821","ServerKey":"pl181","X":564,"Y":641},{"Bonus":0,"Continent":"K54","ID":23822,"Name":"101","PlayerID":8779575,"Points":3161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23822","ServerKey":"pl181","X":429,"Y":557},{"Bonus":0,"Continent":"K46","ID":23823,"Name":"078 cevelel","PlayerID":9238175,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23823","ServerKey":"pl181","X":638,"Y":429},{"Bonus":0,"Continent":"K43","ID":23824,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23824","ServerKey":"pl181","X":368,"Y":448},{"Bonus":0,"Continent":"K34","ID":23825,"Name":"Szlachcic","PlayerID":698388578,"Points":8662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23825","ServerKey":"pl181","X":424,"Y":370},{"Bonus":0,"Continent":"K64","ID":23826,"Name":"089","PlayerID":849084985,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23826","ServerKey":"pl181","X":438,"Y":637},{"Bonus":0,"Continent":"K64","ID":23827,"Name":"010","PlayerID":699783765,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23827","ServerKey":"pl181","X":425,"Y":632},{"Bonus":0,"Continent":"K34","ID":23828,"Name":"109","PlayerID":7271812,"Points":7765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23828","ServerKey":"pl181","X":475,"Y":352},{"Bonus":0,"Continent":"K65","ID":23829,"Name":"039","PlayerID":698659980,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23829","ServerKey":"pl181","X":546,"Y":647},{"Bonus":0,"Continent":"K43","ID":23830,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":9216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23830","ServerKey":"pl181","X":359,"Y":453},{"Bonus":0,"Continent":"K43","ID":23831,"Name":"A0116","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23831","ServerKey":"pl181","X":349,"Y":497},{"Bonus":0,"Continent":"K64","ID":23832,"Name":"0001.","PlayerID":848999671,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23832","ServerKey":"pl181","X":475,"Y":647},{"Bonus":0,"Continent":"K65","ID":23833,"Name":"*Loslosos","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23833","ServerKey":"pl181","X":576,"Y":633},{"Bonus":0,"Continent":"K64","ID":23836,"Name":"Posterunek 001","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23836","ServerKey":"pl181","X":400,"Y":616},{"Bonus":0,"Continent":"K64","ID":23837,"Name":"007","PlayerID":699783765,"Points":6805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23837","ServerKey":"pl181","X":421,"Y":631},{"Bonus":0,"Continent":"K65","ID":23838,"Name":"- 226 - RR","PlayerID":849018239,"Points":8696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23838","ServerKey":"pl181","X":591,"Y":619},{"Bonus":0,"Continent":"K33","ID":23839,"Name":"c Wronki","PlayerID":3909522,"Points":7092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23839","ServerKey":"pl181","X":396,"Y":385},{"Bonus":0,"Continent":"K35","ID":23840,"Name":"Wioska 2","PlayerID":849097220,"Points":4718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23840","ServerKey":"pl181","X":538,"Y":353},{"Bonus":0,"Continent":"K56","ID":23842,"Name":"032","PlayerID":698786826,"Points":6083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23842","ServerKey":"pl181","X":613,"Y":599},{"Bonus":0,"Continent":"K34","ID":23843,"Name":"Oaza 8","PlayerID":699402816,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23843","ServerKey":"pl181","X":405,"Y":380},{"Bonus":0,"Continent":"K34","ID":23845,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23845","ServerKey":"pl181","X":430,"Y":361},{"Bonus":9,"Continent":"K43","ID":23846,"Name":"A0051","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23846","ServerKey":"pl181","X":348,"Y":488},{"Bonus":0,"Continent":"K35","ID":23847,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23847","ServerKey":"pl181","X":551,"Y":360},{"Bonus":0,"Continent":"K43","ID":23848,"Name":"102","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23848","ServerKey":"pl181","X":351,"Y":464},{"Bonus":0,"Continent":"K35","ID":23849,"Name":"A003","PlayerID":699761749,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23849","ServerKey":"pl181","X":597,"Y":384},{"Bonus":0,"Continent":"K35","ID":23850,"Name":"110 Wioska barbarzyƄska","PlayerID":699491076,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23850","ServerKey":"pl181","X":539,"Y":357},{"Bonus":0,"Continent":"K35","ID":23851,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23851","ServerKey":"pl181","X":551,"Y":358},{"Bonus":0,"Continent":"K45","ID":23852,"Name":".achim.","PlayerID":6936607,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23852","ServerKey":"pl181","X":528,"Y":447},{"Bonus":0,"Continent":"K53","ID":23853,"Name":"#005 nazwa","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23853","ServerKey":"pl181","X":374,"Y":589},{"Bonus":0,"Continent":"K53","ID":23854,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23854","ServerKey":"pl181","X":357,"Y":549},{"Bonus":0,"Continent":"K34","ID":23855,"Name":"VN Maes Hughes","PlayerID":699883079,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23855","ServerKey":"pl181","X":465,"Y":373},{"Bonus":0,"Continent":"K64","ID":23856,"Name":"007.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23856","ServerKey":"pl181","X":482,"Y":653},{"Bonus":0,"Continent":"K35","ID":23857,"Name":"Grahamek","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23857","ServerKey":"pl181","X":533,"Y":355},{"Bonus":0,"Continent":"K65","ID":23858,"Name":"sony911","PlayerID":1415009,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23858","ServerKey":"pl181","X":581,"Y":629},{"Bonus":0,"Continent":"K56","ID":23859,"Name":"052 Bethesda","PlayerID":699272880,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23859","ServerKey":"pl181","X":625,"Y":588},{"Bonus":0,"Continent":"K46","ID":23860,"Name":"#.32 Wioska grunwald45.2","PlayerID":849054582,"Points":4067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23860","ServerKey":"pl181","X":653,"Y":482},{"Bonus":0,"Continent":"K63","ID":23861,"Name":"Pobozowisko","PlayerID":699513260,"Points":4105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23861","ServerKey":"pl181","X":386,"Y":605},{"Bonus":7,"Continent":"K56","ID":23862,"Name":"32k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23862","ServerKey":"pl181","X":639,"Y":556},{"Bonus":0,"Continent":"K35","ID":23863,"Name":"Wioska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23863","ServerKey":"pl181","X":557,"Y":362},{"Bonus":0,"Continent":"K46","ID":23864,"Name":"#042.520|494","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23864","ServerKey":"pl181","X":639,"Y":445},{"Bonus":0,"Continent":"K34","ID":23865,"Name":"037...CENTRUM_POƁUDNIE","PlayerID":6920960,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23865","ServerKey":"pl181","X":458,"Y":356},{"Bonus":0,"Continent":"K43","ID":23866,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23866","ServerKey":"pl181","X":355,"Y":452},{"Bonus":0,"Continent":"K46","ID":23867,"Name":"31.KaruTown","PlayerID":699298370,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23867","ServerKey":"pl181","X":616,"Y":401},{"Bonus":0,"Continent":"K56","ID":23868,"Name":"71k$ Grvvyq","PlayerID":699676005,"Points":9441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23868","ServerKey":"pl181","X":639,"Y":569},{"Bonus":0,"Continent":"K35","ID":23870,"Name":"032 033","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23870","ServerKey":"pl181","X":542,"Y":356},{"Bonus":0,"Continent":"K34","ID":23871,"Name":"Szlachcic","PlayerID":698388578,"Points":8677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23871","ServerKey":"pl181","X":415,"Y":376},{"Bonus":0,"Continent":"K34","ID":23872,"Name":"024","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23872","ServerKey":"pl181","X":487,"Y":351},{"Bonus":0,"Continent":"K56","ID":23874,"Name":"WschĂłd Droga 008","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23874","ServerKey":"pl181","X":631,"Y":584},{"Bonus":0,"Continent":"K46","ID":23875,"Name":"030 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23875","ServerKey":"pl181","X":637,"Y":436},{"Bonus":0,"Continent":"K46","ID":23876,"Name":"B13","PlayerID":849093742,"Points":9004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23876","ServerKey":"pl181","X":647,"Y":450},{"Bonus":0,"Continent":"K34","ID":23877,"Name":"124","PlayerID":7271812,"Points":3056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23877","ServerKey":"pl181","X":474,"Y":352},{"Bonus":0,"Continent":"K35","ID":23878,"Name":"I#002","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23878","ServerKey":"pl181","X":598,"Y":381},{"Bonus":0,"Continent":"K56","ID":23879,"Name":"[106]","PlayerID":8000875,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23879","ServerKey":"pl181","X":634,"Y":568},{"Bonus":0,"Continent":"K34","ID":23880,"Name":"009...CENTR_FOX","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23880","ServerKey":"pl181","X":460,"Y":353},{"Bonus":0,"Continent":"K56","ID":23881,"Name":"Jaaa","PlayerID":698635863,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23881","ServerKey":"pl181","X":618,"Y":595},{"Bonus":0,"Continent":"K66","ID":23883,"Name":"zzzGranica Bledu 08","PlayerID":699778867,"Points":8872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23883","ServerKey":"pl181","X":612,"Y":607},{"Bonus":0,"Continent":"K53","ID":23884,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23884","ServerKey":"pl181","X":350,"Y":521},{"Bonus":0,"Continent":"K53","ID":23885,"Name":"Dajanka 05","PlayerID":849012843,"Points":10360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23885","ServerKey":"pl181","X":356,"Y":557},{"Bonus":0,"Continent":"K46","ID":23886,"Name":"A021 Goƛć095879 gƂówna","PlayerID":113796,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23886","ServerKey":"pl181","X":653,"Y":459},{"Bonus":0,"Continent":"K34","ID":23887,"Name":"North Barba 032","PlayerID":699796330,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23887","ServerKey":"pl181","X":423,"Y":370},{"Bonus":0,"Continent":"K53","ID":23888,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23888","ServerKey":"pl181","X":352,"Y":528},{"Bonus":0,"Continent":"K66","ID":23889,"Name":"kropka..","PlayerID":699778867,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23889","ServerKey":"pl181","X":602,"Y":614},{"Bonus":0,"Continent":"K43","ID":23890,"Name":"A0238","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23890","ServerKey":"pl181","X":351,"Y":481},{"Bonus":0,"Continent":"K34","ID":23891,"Name":"001","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23891","ServerKey":"pl181","X":483,"Y":347},{"Bonus":0,"Continent":"K34","ID":23892,"Name":"0027","PlayerID":848913037,"Points":4969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23892","ServerKey":"pl181","X":416,"Y":370},{"Bonus":0,"Continent":"K33","ID":23893,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":6182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23893","ServerKey":"pl181","X":384,"Y":399},{"Bonus":0,"Continent":"K53","ID":23894,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23894","ServerKey":"pl181","X":347,"Y":502},{"Bonus":0,"Continent":"K53","ID":23895,"Name":"-028-","PlayerID":699097885,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23895","ServerKey":"pl181","X":382,"Y":595},{"Bonus":0,"Continent":"K46","ID":23896,"Name":"0058","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23896","ServerKey":"pl181","X":620,"Y":412},{"Bonus":0,"Continent":"K43","ID":23897,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23897","ServerKey":"pl181","X":384,"Y":464},{"Bonus":0,"Continent":"K34","ID":23898,"Name":"007","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23898","ServerKey":"pl181","X":491,"Y":349},{"Bonus":0,"Continent":"K64","ID":23899,"Name":"025","PlayerID":698650301,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23899","ServerKey":"pl181","X":468,"Y":650},{"Bonus":0,"Continent":"K35","ID":23900,"Name":"xkikutx","PlayerID":1990750,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23900","ServerKey":"pl181","X":507,"Y":351},{"Bonus":0,"Continent":"K53","ID":23901,"Name":"D04.","PlayerID":849090130,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23901","ServerKey":"pl181","X":367,"Y":574},{"Bonus":0,"Continent":"K35","ID":23902,"Name":"Lord Lord Franek .#001","PlayerID":698420691,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23902","ServerKey":"pl181","X":526,"Y":344},{"Bonus":0,"Continent":"K56","ID":23903,"Name":"WschĂłd Droga 001","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23903","ServerKey":"pl181","X":644,"Y":549},{"Bonus":1,"Continent":"K33","ID":23904,"Name":"A-015","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23904","ServerKey":"pl181","X":390,"Y":397},{"Bonus":0,"Continent":"K64","ID":23905,"Name":"S1Joker","PlayerID":698585370,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23905","ServerKey":"pl181","X":476,"Y":656},{"Bonus":0,"Continent":"K65","ID":23906,"Name":"0477","PlayerID":698659980,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23906","ServerKey":"pl181","X":538,"Y":649},{"Bonus":0,"Continent":"K33","ID":23907,"Name":"A-009","PlayerID":8419570,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23907","ServerKey":"pl181","X":394,"Y":392},{"Bonus":0,"Continent":"K46","ID":23908,"Name":"#066.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23908","ServerKey":"pl181","X":621,"Y":428},{"Bonus":0,"Continent":"K64","ID":23910,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23910","ServerKey":"pl181","X":402,"Y":618},{"Bonus":0,"Continent":"K53","ID":23911,"Name":"081","PlayerID":6853693,"Points":6121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23911","ServerKey":"pl181","X":356,"Y":542},{"Bonus":0,"Continent":"K65","ID":23912,"Name":"kathare","PlayerID":873575,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23912","ServerKey":"pl181","X":557,"Y":644},{"Bonus":0,"Continent":"K65","ID":23913,"Name":"Bąk z wanny .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23913","ServerKey":"pl181","X":586,"Y":626},{"Bonus":0,"Continent":"K56","ID":23915,"Name":"010","PlayerID":699351301,"Points":8928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23915","ServerKey":"pl181","X":651,"Y":533},{"Bonus":0,"Continent":"K34","ID":23916,"Name":"K34 - [107] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23916","ServerKey":"pl181","X":443,"Y":355},{"Bonus":0,"Continent":"K65","ID":23917,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":3874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23917","ServerKey":"pl181","X":586,"Y":627},{"Bonus":0,"Continent":"K34","ID":23918,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23918","ServerKey":"pl181","X":400,"Y":382},{"Bonus":0,"Continent":"K43","ID":23919,"Name":"Szlachcic","PlayerID":6258092,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23919","ServerKey":"pl181","X":351,"Y":455},{"Bonus":0,"Continent":"K64","ID":23920,"Name":"Dziadostwo Atakuje","PlayerID":698264828,"Points":2799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23920","ServerKey":"pl181","X":453,"Y":651},{"Bonus":0,"Continent":"K36","ID":23921,"Name":"019","PlayerID":699298370,"Points":8548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23921","ServerKey":"pl181","X":612,"Y":396},{"Bonus":0,"Continent":"K43","ID":23922,"Name":"M181_052","PlayerID":393668,"Points":9088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23922","ServerKey":"pl181","X":364,"Y":428},{"Bonus":0,"Continent":"K56","ID":23923,"Name":"70k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23923","ServerKey":"pl181","X":638,"Y":571},{"Bonus":0,"Continent":"K53","ID":23924,"Name":"Pobozowisko","PlayerID":699513260,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23924","ServerKey":"pl181","X":386,"Y":597},{"Bonus":0,"Continent":"K53","ID":23925,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23925","ServerKey":"pl181","X":351,"Y":536},{"Bonus":0,"Continent":"K35","ID":23926,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23926","ServerKey":"pl181","X":554,"Y":360},{"Bonus":0,"Continent":"K56","ID":23927,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23927","ServerKey":"pl181","X":626,"Y":582},{"Bonus":0,"Continent":"K35","ID":23928,"Name":"U-08","PlayerID":3600737,"Points":5097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23928","ServerKey":"pl181","X":586,"Y":378},{"Bonus":0,"Continent":"K65","ID":23929,"Name":"011 nica","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23929","ServerKey":"pl181","X":567,"Y":638},{"Bonus":0,"Continent":"K46","ID":23930,"Name":"#.16 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23930","ServerKey":"pl181","X":651,"Y":475},{"Bonus":0,"Continent":"K43","ID":23931,"Name":"marcovia","PlayerID":8967440,"Points":8750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23931","ServerKey":"pl181","X":372,"Y":425},{"Bonus":0,"Continent":"K53","ID":23932,"Name":"Pobozowisko","PlayerID":699513260,"Points":5561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23932","ServerKey":"pl181","X":382,"Y":594},{"Bonus":0,"Continent":"K53","ID":23933,"Name":"K03..","PlayerID":849090130,"Points":6894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23933","ServerKey":"pl181","X":368,"Y":579},{"Bonus":0,"Continent":"K63","ID":23934,"Name":"Posterunek 003","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23934","ServerKey":"pl181","X":397,"Y":613},{"Bonus":0,"Continent":"K56","ID":23935,"Name":"M001","PlayerID":848899726,"Points":7208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23935","ServerKey":"pl181","X":650,"Y":508},{"Bonus":0,"Continent":"K43","ID":23936,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23936","ServerKey":"pl181","X":380,"Y":439},{"Bonus":5,"Continent":"K35","ID":23937,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23937","ServerKey":"pl181","X":565,"Y":364},{"Bonus":0,"Continent":"K53","ID":23938,"Name":"001","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23938","ServerKey":"pl181","X":359,"Y":530},{"Bonus":0,"Continent":"K46","ID":23939,"Name":"*0029 Baraki","PlayerID":8459255,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23939","ServerKey":"pl181","X":631,"Y":427},{"Bonus":0,"Continent":"K35","ID":23941,"Name":"Lord Lord Franek .#046","PlayerID":698420691,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23941","ServerKey":"pl181","X":535,"Y":352},{"Bonus":0,"Continent":"K35","ID":23942,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23942","ServerKey":"pl181","X":510,"Y":346},{"Bonus":0,"Continent":"K35","ID":23943,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23943","ServerKey":"pl181","X":580,"Y":369},{"Bonus":0,"Continent":"K65","ID":23944,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23944","ServerKey":"pl181","X":524,"Y":648},{"Bonus":0,"Continent":"K53","ID":23945,"Name":"Dajanka 03","PlayerID":849012843,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23945","ServerKey":"pl181","X":355,"Y":556},{"Bonus":0,"Continent":"K53","ID":23946,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23946","ServerKey":"pl181","X":347,"Y":504},{"Bonus":0,"Continent":"K64","ID":23947,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23947","ServerKey":"pl181","X":417,"Y":632},{"Bonus":0,"Continent":"K65","ID":23948,"Name":"0478","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23948","ServerKey":"pl181","X":534,"Y":650},{"Bonus":0,"Continent":"K64","ID":23949,"Name":"030","PlayerID":699736927,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23949","ServerKey":"pl181","X":441,"Y":638},{"Bonus":0,"Continent":"K34","ID":23950,"Name":"122","PlayerID":7271812,"Points":5151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23950","ServerKey":"pl181","X":472,"Y":351},{"Bonus":0,"Continent":"K35","ID":23951,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23951","ServerKey":"pl181","X":567,"Y":362},{"Bonus":0,"Continent":"K35","ID":23952,"Name":"Lord Lord Franek .#019","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23952","ServerKey":"pl181","X":532,"Y":350},{"Bonus":3,"Continent":"K64","ID":23953,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23953","ServerKey":"pl181","X":498,"Y":653},{"Bonus":0,"Continent":"K36","ID":23954,"Name":"A 016","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23954","ServerKey":"pl181","X":604,"Y":388},{"Bonus":0,"Continent":"K46","ID":23955,"Name":"BACÓWKA |020|","PlayerID":7394371,"Points":8619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23955","ServerKey":"pl181","X":629,"Y":422},{"Bonus":0,"Continent":"K43","ID":23956,"Name":"A0312","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23956","ServerKey":"pl181","X":345,"Y":488},{"Bonus":0,"Continent":"K65","ID":23957,"Name":"kathare","PlayerID":873575,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23957","ServerKey":"pl181","X":553,"Y":646},{"Bonus":0,"Continent":"K64","ID":23958,"Name":"Mexico4","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23958","ServerKey":"pl181","X":458,"Y":644},{"Bonus":0,"Continent":"K66","ID":23959,"Name":"Magik69","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23959","ServerKey":"pl181","X":610,"Y":603},{"Bonus":0,"Continent":"K36","ID":23960,"Name":"A 003","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23960","ServerKey":"pl181","X":605,"Y":388},{"Bonus":0,"Continent":"K65","ID":23961,"Name":"005","PlayerID":848953066,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23961","ServerKey":"pl181","X":501,"Y":650},{"Bonus":0,"Continent":"K64","ID":23962,"Name":"Mandarynki 2","PlayerID":699736927,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23962","ServerKey":"pl181","X":457,"Y":649},{"Bonus":0,"Continent":"K64","ID":23963,"Name":"A003","PlayerID":848912772,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23963","ServerKey":"pl181","X":406,"Y":620},{"Bonus":9,"Continent":"K46","ID":23964,"Name":"017. Londinium","PlayerID":849091866,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23964","ServerKey":"pl181","X":653,"Y":471},{"Bonus":0,"Continent":"K33","ID":23965,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":6574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23965","ServerKey":"pl181","X":384,"Y":398},{"Bonus":0,"Continent":"K65","ID":23966,"Name":"014","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23966","ServerKey":"pl181","X":560,"Y":643},{"Bonus":0,"Continent":"K35","ID":23967,"Name":"X-01","PlayerID":3600737,"Points":7754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23967","ServerKey":"pl181","X":595,"Y":377},{"Bonus":0,"Continent":"K64","ID":23968,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":6730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23968","ServerKey":"pl181","X":425,"Y":633},{"Bonus":0,"Continent":"K34","ID":23969,"Name":"Wioska barbarzyƄska 022|","PlayerID":6343784,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23969","ServerKey":"pl181","X":497,"Y":348},{"Bonus":0,"Continent":"K35","ID":23970,"Name":"Lord Lord Franek .#020","PlayerID":698420691,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23970","ServerKey":"pl181","X":534,"Y":351},{"Bonus":0,"Continent":"K66","ID":23971,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23971","ServerKey":"pl181","X":601,"Y":618},{"Bonus":0,"Continent":"K56","ID":23973,"Name":"700","PlayerID":7038651,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23973","ServerKey":"pl181","X":648,"Y":540},{"Bonus":0,"Continent":"K64","ID":23974,"Name":"psycha sitting","PlayerID":699736927,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23974","ServerKey":"pl181","X":446,"Y":645},{"Bonus":0,"Continent":"K46","ID":23975,"Name":"#.22 Wioska barbarzyƄska","PlayerID":849054582,"Points":8369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23975","ServerKey":"pl181","X":649,"Y":481},{"Bonus":0,"Continent":"K36","ID":23976,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":4784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23976","ServerKey":"pl181","X":609,"Y":393},{"Bonus":0,"Continent":"K35","ID":23977,"Name":"113 Wioska barbarzyƄska","PlayerID":699491076,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23977","ServerKey":"pl181","X":543,"Y":357},{"Bonus":0,"Continent":"K64","ID":23979,"Name":"Jednak wolę gofry","PlayerID":848913998,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23979","ServerKey":"pl181","X":436,"Y":640},{"Bonus":0,"Continent":"K64","ID":23980,"Name":"BEZDZIETNY KAWALER :)","PlayerID":848913998,"Points":6363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23980","ServerKey":"pl181","X":411,"Y":628},{"Bonus":0,"Continent":"K53","ID":23981,"Name":"020 181","PlayerID":698807570,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23981","ServerKey":"pl181","X":351,"Y":501},{"Bonus":0,"Continent":"K65","ID":23983,"Name":"Bizy 8","PlayerID":8954402,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23983","ServerKey":"pl181","X":503,"Y":654},{"Bonus":0,"Continent":"K56","ID":23985,"Name":"050 Laval","PlayerID":699272880,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23985","ServerKey":"pl181","X":620,"Y":590},{"Bonus":0,"Continent":"K35","ID":23986,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23986","ServerKey":"pl181","X":555,"Y":355},{"Bonus":0,"Continent":"K53","ID":23987,"Name":"018 181","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23987","ServerKey":"pl181","X":356,"Y":507},{"Bonus":0,"Continent":"K56","ID":23988,"Name":"jaaa","PlayerID":698635863,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23988","ServerKey":"pl181","X":636,"Y":559},{"Bonus":0,"Continent":"K43","ID":23989,"Name":"M181_051","PlayerID":393668,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23989","ServerKey":"pl181","X":363,"Y":431},{"Bonus":0,"Continent":"K64","ID":23990,"Name":"psycha sitting","PlayerID":699736927,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23990","ServerKey":"pl181","X":451,"Y":645},{"Bonus":0,"Continent":"K65","ID":23991,"Name":"kathare","PlayerID":873575,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23991","ServerKey":"pl181","X":554,"Y":646},{"Bonus":0,"Continent":"K64","ID":23992,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23992","ServerKey":"pl181","X":412,"Y":623},{"Bonus":0,"Continent":"K43","ID":23993,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23993","ServerKey":"pl181","X":350,"Y":456},{"Bonus":0,"Continent":"K43","ID":23994,"Name":"7.62 mm","PlayerID":848886056,"Points":3040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23994","ServerKey":"pl181","X":379,"Y":402},{"Bonus":3,"Continent":"K43","ID":23995,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23995","ServerKey":"pl181","X":381,"Y":401},{"Bonus":0,"Continent":"K53","ID":23996,"Name":"Dajanka 11","PlayerID":849012843,"Points":7973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23996","ServerKey":"pl181","X":360,"Y":555},{"Bonus":0,"Continent":"K53","ID":23997,"Name":"07. Boi","PlayerID":8665783,"Points":9463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23997","ServerKey":"pl181","X":378,"Y":594},{"Bonus":0,"Continent":"K35","ID":23998,"Name":"Owp Konfederacja","PlayerID":848915730,"Points":6055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23998","ServerKey":"pl181","X":596,"Y":384},{"Bonus":0,"Continent":"K46","ID":23999,"Name":"B04","PlayerID":849093742,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=23999","ServerKey":"pl181","X":641,"Y":439},{"Bonus":0,"Continent":"K65","ID":24000,"Name":"- 248 - RR","PlayerID":849018239,"Points":5499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24000","ServerKey":"pl181","X":593,"Y":625},{"Bonus":0,"Continent":"K43","ID":24001,"Name":"031","PlayerID":6258092,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24001","ServerKey":"pl181","X":354,"Y":470},{"Bonus":0,"Continent":"K35","ID":24002,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24002","ServerKey":"pl181","X":560,"Y":358},{"Bonus":0,"Continent":"K65","ID":24003,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24003","ServerKey":"pl181","X":509,"Y":651},{"Bonus":0,"Continent":"K34","ID":24004,"Name":"043...CENTRUM POƁ","PlayerID":6920960,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24004","ServerKey":"pl181","X":458,"Y":357},{"Bonus":0,"Continent":"K35","ID":24005,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24005","ServerKey":"pl181","X":573,"Y":364},{"Bonus":0,"Continent":"K64","ID":24006,"Name":"No. 3","PlayerID":698585370,"Points":9201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24006","ServerKey":"pl181","X":478,"Y":654},{"Bonus":0,"Continent":"K43","ID":24007,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24007","ServerKey":"pl181","X":358,"Y":443},{"Bonus":0,"Continent":"K35","ID":24008,"Name":"001 Montuje Plisy","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24008","ServerKey":"pl181","X":541,"Y":355},{"Bonus":0,"Continent":"K64","ID":24009,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24009","ServerKey":"pl181","X":456,"Y":648},{"Bonus":5,"Continent":"K33","ID":24010,"Name":"A-016","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24010","ServerKey":"pl181","X":392,"Y":393},{"Bonus":0,"Continent":"K43","ID":24011,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24011","ServerKey":"pl181","X":351,"Y":445},{"Bonus":0,"Continent":"K56","ID":24012,"Name":"MRF 003","PlayerID":118121,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24012","ServerKey":"pl181","X":629,"Y":584},{"Bonus":0,"Continent":"K43","ID":24013,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24013","ServerKey":"pl181","X":355,"Y":448},{"Bonus":0,"Continent":"K43","ID":24014,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24014","ServerKey":"pl181","X":357,"Y":446},{"Bonus":0,"Continent":"K65","ID":24015,"Name":"Yogi","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24015","ServerKey":"pl181","X":545,"Y":649},{"Bonus":0,"Continent":"K34","ID":24016,"Name":"148...ksiÄ…ĆŒÄ™ plemienia","PlayerID":6920960,"Points":8324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24016","ServerKey":"pl181","X":452,"Y":359},{"Bonus":0,"Continent":"K65","ID":24017,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24017","ServerKey":"pl181","X":566,"Y":640},{"Bonus":0,"Continent":"K33","ID":24018,"Name":"A-011","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24018","ServerKey":"pl181","X":392,"Y":397},{"Bonus":0,"Continent":"K34","ID":24020,"Name":"#0028 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24020","ServerKey":"pl181","X":471,"Y":347},{"Bonus":0,"Continent":"K65","ID":24021,"Name":"SSJ 068","PlayerID":699364813,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24021","ServerKey":"pl181","X":518,"Y":653},{"Bonus":0,"Continent":"K64","ID":24022,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":7986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24022","ServerKey":"pl181","X":425,"Y":635},{"Bonus":0,"Continent":"K34","ID":24023,"Name":"#0022 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24023","ServerKey":"pl181","X":470,"Y":354},{"Bonus":0,"Continent":"K65","ID":24024,"Name":"0479","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24024","ServerKey":"pl181","X":519,"Y":650},{"Bonus":0,"Continent":"K56","ID":24025,"Name":"310","PlayerID":7038651,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24025","ServerKey":"pl181","X":648,"Y":546},{"Bonus":0,"Continent":"K43","ID":24026,"Name":"Maszlug kolonia IV","PlayerID":848977649,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24026","ServerKey":"pl181","X":366,"Y":433},{"Bonus":0,"Continent":"K53","ID":24028,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24028","ServerKey":"pl181","X":346,"Y":518},{"Bonus":0,"Continent":"K65","ID":24029,"Name":"017. Pepe","PlayerID":848928624,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24029","ServerKey":"pl181","X":501,"Y":651},{"Bonus":0,"Continent":"K43","ID":24030,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24030","ServerKey":"pl181","X":351,"Y":479},{"Bonus":0,"Continent":"K65","ID":24031,"Name":"010. Fishing","PlayerID":698585370,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24031","ServerKey":"pl181","X":502,"Y":650},{"Bonus":0,"Continent":"K53","ID":24032,"Name":"0460","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24032","ServerKey":"pl181","X":379,"Y":598},{"Bonus":0,"Continent":"K56","ID":24033,"Name":"053","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24033","ServerKey":"pl181","X":649,"Y":520},{"Bonus":0,"Continent":"K56","ID":24034,"Name":"085","PlayerID":849095227,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24034","ServerKey":"pl181","X":642,"Y":559},{"Bonus":0,"Continent":"K35","ID":24035,"Name":"Lord Lord Franek .#216","PlayerID":698420691,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24035","ServerKey":"pl181","X":509,"Y":348},{"Bonus":0,"Continent":"K56","ID":24036,"Name":"055","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24036","ServerKey":"pl181","X":647,"Y":535},{"Bonus":0,"Continent":"K53","ID":24037,"Name":"D02..","PlayerID":849090130,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24037","ServerKey":"pl181","X":364,"Y":574},{"Bonus":0,"Continent":"K56","ID":24039,"Name":"JawmaG P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24039","ServerKey":"pl181","X":620,"Y":591},{"Bonus":0,"Continent":"K56","ID":24040,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24040","ServerKey":"pl181","X":633,"Y":568},{"Bonus":0,"Continent":"K56","ID":24041,"Name":"zzz Magiorkowy kleks","PlayerID":699778867,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24041","ServerKey":"pl181","X":618,"Y":599},{"Bonus":0,"Continent":"K53","ID":24042,"Name":"Valhalla A6","PlayerID":849097002,"Points":5266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24042","ServerKey":"pl181","X":373,"Y":581},{"Bonus":0,"Continent":"K65","ID":24043,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24043","ServerKey":"pl181","X":526,"Y":653},{"Bonus":0,"Continent":"K43","ID":24045,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24045","ServerKey":"pl181","X":374,"Y":410},{"Bonus":0,"Continent":"K34","ID":24046,"Name":"North Barba 030","PlayerID":699796330,"Points":10454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24046","ServerKey":"pl181","X":425,"Y":369},{"Bonus":0,"Continent":"K65","ID":24047,"Name":"RTS 15","PlayerID":848995242,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24047","ServerKey":"pl181","X":587,"Y":624},{"Bonus":0,"Continent":"K36","ID":24048,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24048","ServerKey":"pl181","X":608,"Y":389},{"Bonus":0,"Continent":"K46","ID":24049,"Name":"B19","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24049","ServerKey":"pl181","X":647,"Y":459},{"Bonus":0,"Continent":"K53","ID":24050,"Name":"Pobozowisko","PlayerID":699513260,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24050","ServerKey":"pl181","X":382,"Y":591},{"Bonus":0,"Continent":"K65","ID":24051,"Name":"003 cho1sen","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24051","ServerKey":"pl181","X":570,"Y":635},{"Bonus":0,"Continent":"K34","ID":24052,"Name":"045...Centrum zach","PlayerID":6920960,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24052","ServerKey":"pl181","X":457,"Y":353},{"Bonus":0,"Continent":"K64","ID":24053,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":4236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24053","ServerKey":"pl181","X":419,"Y":625},{"Bonus":0,"Continent":"K65","ID":24054,"Name":"- 053 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24054","ServerKey":"pl181","X":590,"Y":622},{"Bonus":0,"Continent":"K43","ID":24055,"Name":"makelovenotwar6","PlayerID":698807570,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24055","ServerKey":"pl181","X":384,"Y":466},{"Bonus":0,"Continent":"K43","ID":24056,"Name":"A0069","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24056","ServerKey":"pl181","X":346,"Y":490},{"Bonus":0,"Continent":"K35","ID":24057,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24057","ServerKey":"pl181","X":552,"Y":358},{"Bonus":0,"Continent":"K56","ID":24058,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24058","ServerKey":"pl181","X":635,"Y":570},{"Bonus":0,"Continent":"K34","ID":24059,"Name":"038...CENTRUM","PlayerID":6920960,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24059","ServerKey":"pl181","X":458,"Y":353},{"Bonus":0,"Continent":"K35","ID":24060,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24060","ServerKey":"pl181","X":582,"Y":367},{"Bonus":0,"Continent":"K36","ID":24061,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":6806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24061","ServerKey":"pl181","X":607,"Y":394},{"Bonus":0,"Continent":"K63","ID":24062,"Name":"Posterunek 004","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24062","ServerKey":"pl181","X":399,"Y":616},{"Bonus":0,"Continent":"K35","ID":24063,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24063","ServerKey":"pl181","X":552,"Y":354},{"Bonus":0,"Continent":"K64","ID":24064,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24064","ServerKey":"pl181","X":449,"Y":648},{"Bonus":0,"Continent":"K56","ID":24065,"Name":"040","PlayerID":849095227,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24065","ServerKey":"pl181","X":643,"Y":556},{"Bonus":0,"Continent":"K43","ID":24066,"Name":"MELISKA","PlayerID":699794765,"Points":2120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24066","ServerKey":"pl181","X":358,"Y":454},{"Bonus":0,"Continent":"K35","ID":24067,"Name":".achim.","PlayerID":6936607,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24067","ServerKey":"pl181","X":519,"Y":388},{"Bonus":0,"Continent":"K65","ID":24068,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24068","ServerKey":"pl181","X":527,"Y":649},{"Bonus":0,"Continent":"K63","ID":24069,"Name":"Pobozowisko","PlayerID":699513260,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24069","ServerKey":"pl181","X":392,"Y":610},{"Bonus":0,"Continent":"K34","ID":24070,"Name":"011","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24070","ServerKey":"pl181","X":481,"Y":348},{"Bonus":8,"Continent":"K35","ID":24071,"Name":"0006","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24071","ServerKey":"pl181","X":588,"Y":372},{"Bonus":0,"Continent":"K43","ID":24072,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":8953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24072","ServerKey":"pl181","X":373,"Y":418},{"Bonus":0,"Continent":"K53","ID":24073,"Name":"Denger 19","PlayerID":698353083,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24073","ServerKey":"pl181","X":368,"Y":584},{"Bonus":0,"Continent":"K45","ID":24074,"Name":"Sangeda","PlayerID":848986287,"Points":7480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24074","ServerKey":"pl181","X":539,"Y":429},{"Bonus":0,"Continent":"K35","ID":24075,"Name":"A002","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24075","ServerKey":"pl181","X":588,"Y":374},{"Bonus":0,"Continent":"K46","ID":24076,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24076","ServerKey":"pl181","X":646,"Y":460},{"Bonus":0,"Continent":"K34","ID":24077,"Name":"2.6","PlayerID":699402816,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24077","ServerKey":"pl181","X":403,"Y":378},{"Bonus":0,"Continent":"K43","ID":24079,"Name":"M181_050","PlayerID":393668,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24079","ServerKey":"pl181","X":367,"Y":425},{"Bonus":0,"Continent":"K53","ID":24080,"Name":"Skazany Na Instynkt","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24080","ServerKey":"pl181","X":370,"Y":580},{"Bonus":0,"Continent":"K35","ID":24081,"Name":"I#037","PlayerID":2065730,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24081","ServerKey":"pl181","X":596,"Y":378},{"Bonus":0,"Continent":"K64","ID":24082,"Name":"007-Dzieci","PlayerID":6910361,"Points":4502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24082","ServerKey":"pl181","X":432,"Y":630},{"Bonus":0,"Continent":"K34","ID":24083,"Name":"#0010 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24083","ServerKey":"pl181","X":464,"Y":351},{"Bonus":0,"Continent":"K36","ID":24084,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24084","ServerKey":"pl181","X":608,"Y":391},{"Bonus":0,"Continent":"K44","ID":24085,"Name":"0063 9 RakĂłwqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24085","ServerKey":"pl181","X":445,"Y":434},{"Bonus":0,"Continent":"K65","ID":24086,"Name":"0480","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24086","ServerKey":"pl181","X":516,"Y":649},{"Bonus":0,"Continent":"K65","ID":24087,"Name":"- 250 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24087","ServerKey":"pl181","X":594,"Y":617},{"Bonus":0,"Continent":"K56","ID":24088,"Name":"061 |","PlayerID":8000875,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24088","ServerKey":"pl181","X":647,"Y":551},{"Bonus":0,"Continent":"K53","ID":24089,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":8215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24089","ServerKey":"pl181","X":367,"Y":568},{"Bonus":0,"Continent":"K64","ID":24090,"Name":"A002","PlayerID":848912772,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24090","ServerKey":"pl181","X":405,"Y":620},{"Bonus":0,"Continent":"K35","ID":24091,"Name":"Lord Lord Franek .#228","PlayerID":698420691,"Points":8472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24091","ServerKey":"pl181","X":515,"Y":346},{"Bonus":0,"Continent":"K65","ID":24092,"Name":"044|| Lacerta","PlayerID":849035525,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24092","ServerKey":"pl181","X":502,"Y":653},{"Bonus":0,"Continent":"K36","ID":24093,"Name":"054","PlayerID":849010255,"Points":4000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24093","ServerKey":"pl181","X":606,"Y":387},{"Bonus":0,"Continent":"K34","ID":24094,"Name":"014...PƁD","PlayerID":6920960,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24094","ServerKey":"pl181","X":455,"Y":356},{"Bonus":8,"Continent":"K65","ID":24095,"Name":"- 007 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24095","ServerKey":"pl181","X":587,"Y":622},{"Bonus":0,"Continent":"K34","ID":24097,"Name":"#0026 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24097","ServerKey":"pl181","X":471,"Y":350},{"Bonus":0,"Continent":"K53","ID":24098,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24098","ServerKey":"pl181","X":352,"Y":541},{"Bonus":0,"Continent":"K65","ID":24099,"Name":"*Lulu","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24099","ServerKey":"pl181","X":574,"Y":638},{"Bonus":0,"Continent":"K35","ID":24101,"Name":"Lord Lord Franek .#111","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24101","ServerKey":"pl181","X":505,"Y":345},{"Bonus":0,"Continent":"K64","ID":24102,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24102","ServerKey":"pl181","X":434,"Y":642},{"Bonus":0,"Continent":"K55","ID":24103,"Name":"Dunharrow","PlayerID":849091897,"Points":7950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24103","ServerKey":"pl181","X":500,"Y":504},{"Bonus":0,"Continent":"K35","ID":24104,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24104","ServerKey":"pl181","X":549,"Y":354},{"Bonus":0,"Continent":"K54","ID":24105,"Name":"058","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24105","ServerKey":"pl181","X":403,"Y":506},{"Bonus":0,"Continent":"K33","ID":24106,"Name":"Wioska 004","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24106","ServerKey":"pl181","X":390,"Y":390},{"Bonus":0,"Continent":"K53","ID":24108,"Name":"Brat447","PlayerID":699262350,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24108","ServerKey":"pl181","X":347,"Y":505},{"Bonus":0,"Continent":"K56","ID":24109,"Name":"027","PlayerID":699351301,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24109","ServerKey":"pl181","X":652,"Y":538},{"Bonus":0,"Continent":"K53","ID":24110,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24110","ServerKey":"pl181","X":347,"Y":528},{"Bonus":0,"Continent":"K53","ID":24111,"Name":"Pobozowisko","PlayerID":699513260,"Points":7743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24111","ServerKey":"pl181","X":388,"Y":599},{"Bonus":0,"Continent":"K46","ID":24112,"Name":"011 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24112","ServerKey":"pl181","X":635,"Y":460},{"Bonus":0,"Continent":"K43","ID":24113,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24113","ServerKey":"pl181","X":363,"Y":429},{"Bonus":9,"Continent":"K64","ID":24114,"Name":"028","PlayerID":698143931,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24114","ServerKey":"pl181","X":437,"Y":639},{"Bonus":0,"Continent":"K65","ID":24115,"Name":"0481","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24115","ServerKey":"pl181","X":540,"Y":649},{"Bonus":0,"Continent":"K34","ID":24116,"Name":"K34 - [032] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24116","ServerKey":"pl181","X":445,"Y":356},{"Bonus":0,"Continent":"K36","ID":24117,"Name":"I#036","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24117","ServerKey":"pl181","X":605,"Y":392},{"Bonus":0,"Continent":"K34","ID":24118,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24118","ServerKey":"pl181","X":407,"Y":382},{"Bonus":0,"Continent":"K43","ID":24119,"Name":"Wioska Jaro2","PlayerID":8967440,"Points":8401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24119","ServerKey":"pl181","X":370,"Y":419},{"Bonus":0,"Continent":"K65","ID":24120,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24120","ServerKey":"pl181","X":548,"Y":644},{"Bonus":0,"Continent":"K65","ID":24121,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24121","ServerKey":"pl181","X":520,"Y":654},{"Bonus":0,"Continent":"K64","ID":24122,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24122","ServerKey":"pl181","X":459,"Y":650},{"Bonus":0,"Continent":"K46","ID":24123,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24123","ServerKey":"pl181","X":648,"Y":458},{"Bonus":0,"Continent":"K53","ID":24124,"Name":"off 100 %","PlayerID":849012521,"Points":7714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24124","ServerKey":"pl181","X":362,"Y":571},{"Bonus":0,"Continent":"K35","ID":24125,"Name":"Lord Lord Franek .#002","PlayerID":698420691,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24125","ServerKey":"pl181","X":528,"Y":346},{"Bonus":0,"Continent":"K34","ID":24126,"Name":"Qzuri","PlayerID":699883079,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24126","ServerKey":"pl181","X":493,"Y":354},{"Bonus":0,"Continent":"K43","ID":24127,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24127","ServerKey":"pl181","X":357,"Y":451},{"Bonus":0,"Continent":"K55","ID":24128,"Name":"Winter is coming","PlayerID":699364813,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24128","ServerKey":"pl181","X":505,"Y":585},{"Bonus":0,"Continent":"K53","ID":24129,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24129","ServerKey":"pl181","X":344,"Y":507},{"Bonus":4,"Continent":"K65","ID":24130,"Name":"0011","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24130","ServerKey":"pl181","X":581,"Y":634},{"Bonus":0,"Continent":"K46","ID":24131,"Name":"#.37 Wioska barbarzyƄska","PlayerID":849054582,"Points":2930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24131","ServerKey":"pl181","X":651,"Y":480},{"Bonus":0,"Continent":"K43","ID":24132,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24132","ServerKey":"pl181","X":356,"Y":451},{"Bonus":0,"Continent":"K46","ID":24133,"Name":"jan Dzik I","PlayerID":879782,"Points":9101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24133","ServerKey":"pl181","X":643,"Y":435},{"Bonus":0,"Continent":"K53","ID":24134,"Name":"deff 100 %","PlayerID":849012521,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24134","ServerKey":"pl181","X":357,"Y":560},{"Bonus":0,"Continent":"K46","ID":24135,"Name":"D 007","PlayerID":8078914,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24135","ServerKey":"pl181","X":651,"Y":497},{"Bonus":0,"Continent":"K35","ID":24136,"Name":"0020","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24136","ServerKey":"pl181","X":591,"Y":381},{"Bonus":0,"Continent":"K53","ID":24137,"Name":"Odmienny Stan ƚwiadomoƛci","PlayerID":8004076,"Points":8589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24137","ServerKey":"pl181","X":366,"Y":570},{"Bonus":0,"Continent":"K44","ID":24139,"Name":"0063 b14 WisƂa","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24139","ServerKey":"pl181","X":455,"Y":432},{"Bonus":0,"Continent":"K53","ID":24140,"Name":"-002-","PlayerID":699097885,"Points":9241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24140","ServerKey":"pl181","X":380,"Y":590},{"Bonus":0,"Continent":"K56","ID":24141,"Name":"009","PlayerID":699351301,"Points":10818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24141","ServerKey":"pl181","X":650,"Y":530},{"Bonus":5,"Continent":"K46","ID":24142,"Name":"W 04","PlayerID":699524891,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24142","ServerKey":"pl181","X":644,"Y":451},{"Bonus":0,"Continent":"K64","ID":24143,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24143","ServerKey":"pl181","X":475,"Y":650},{"Bonus":0,"Continent":"K34","ID":24144,"Name":"cc spoko pobawimy się do jutra","PlayerID":3909522,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24144","ServerKey":"pl181","X":408,"Y":375},{"Bonus":0,"Continent":"K34","ID":24145,"Name":"PodziękowaƂ 7","PlayerID":699796330,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24145","ServerKey":"pl181","X":417,"Y":375},{"Bonus":0,"Continent":"K46","ID":24146,"Name":"053. Caprae","PlayerID":849091866,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24146","ServerKey":"pl181","X":647,"Y":467},{"Bonus":0,"Continent":"K43","ID":24147,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24147","ServerKey":"pl181","X":345,"Y":479},{"Bonus":0,"Continent":"K46","ID":24148,"Name":"040","PlayerID":9148043,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24148","ServerKey":"pl181","X":624,"Y":405},{"Bonus":0,"Continent":"K65","ID":24150,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24150","ServerKey":"pl181","X":527,"Y":652},{"Bonus":0,"Continent":"K43","ID":24151,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":4863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24151","ServerKey":"pl181","X":354,"Y":459},{"Bonus":0,"Continent":"K43","ID":24152,"Name":"005","PlayerID":848945529,"Points":6583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24152","ServerKey":"pl181","X":374,"Y":420},{"Bonus":0,"Continent":"K66","ID":24153,"Name":"078","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24153","ServerKey":"pl181","X":620,"Y":603},{"Bonus":0,"Continent":"K66","ID":24154,"Name":"0011","PlayerID":6417987,"Points":8936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24154","ServerKey":"pl181","X":611,"Y":610},{"Bonus":4,"Continent":"K66","ID":24155,"Name":"hed","PlayerID":6417987,"Points":4816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24155","ServerKey":"pl181","X":610,"Y":611},{"Bonus":0,"Continent":"K34","ID":24156,"Name":"c 011 Oaza 7","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24156","ServerKey":"pl181","X":411,"Y":378},{"Bonus":0,"Continent":"K53","ID":24157,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24157","ServerKey":"pl181","X":361,"Y":562},{"Bonus":0,"Continent":"K46","ID":24158,"Name":"047","PlayerID":2135129,"Points":9137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24158","ServerKey":"pl181","X":654,"Y":487},{"Bonus":0,"Continent":"K43","ID":24159,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24159","ServerKey":"pl181","X":376,"Y":406},{"Bonus":0,"Continent":"K65","ID":24160,"Name":"ObrzeĆŒa 04","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24160","ServerKey":"pl181","X":544,"Y":649},{"Bonus":0,"Continent":"K43","ID":24161,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24161","ServerKey":"pl181","X":372,"Y":412},{"Bonus":0,"Continent":"K43","ID":24162,"Name":"4AA","PlayerID":7765098,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24162","ServerKey":"pl181","X":357,"Y":435},{"Bonus":0,"Continent":"K64","ID":24163,"Name":"12 Kuba 3 zero zero 7","PlayerID":848883684,"Points":9350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24163","ServerKey":"pl181","X":464,"Y":649},{"Bonus":0,"Continent":"K34","ID":24164,"Name":"North Barba 023","PlayerID":699796330,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24164","ServerKey":"pl181","X":422,"Y":368},{"Bonus":0,"Continent":"K53","ID":24165,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":7476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24165","ServerKey":"pl181","X":353,"Y":542},{"Bonus":0,"Continent":"K43","ID":24166,"Name":"Maszlug kolonia X","PlayerID":848977649,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24166","ServerKey":"pl181","X":368,"Y":423},{"Bonus":0,"Continent":"K55","ID":24167,"Name":"ladyanima","PlayerID":699703642,"Points":9083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24167","ServerKey":"pl181","X":511,"Y":572},{"Bonus":0,"Continent":"K56","ID":24168,"Name":"002","PlayerID":849095963,"Points":10660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24168","ServerKey":"pl181","X":643,"Y":561},{"Bonus":0,"Continent":"K43","ID":24169,"Name":"A0063","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24169","ServerKey":"pl181","X":346,"Y":495},{"Bonus":8,"Continent":"K43","ID":24170,"Name":"Vasteroy135","PlayerID":393668,"Points":5808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24170","ServerKey":"pl181","X":362,"Y":431},{"Bonus":0,"Continent":"K46","ID":24171,"Name":"#043.521|495","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24171","ServerKey":"pl181","X":640,"Y":446},{"Bonus":0,"Continent":"K35","ID":24172,"Name":"A015","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24172","ServerKey":"pl181","X":581,"Y":370},{"Bonus":0,"Continent":"K53","ID":24173,"Name":"x010","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24173","ServerKey":"pl181","X":358,"Y":565},{"Bonus":0,"Continent":"K56","ID":24174,"Name":"M005","PlayerID":848899726,"Points":6638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24174","ServerKey":"pl181","X":650,"Y":503},{"Bonus":0,"Continent":"K35","ID":24175,"Name":"A005","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24175","ServerKey":"pl181","X":585,"Y":373},{"Bonus":0,"Continent":"K65","ID":24176,"Name":"sony911","PlayerID":1415009,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24176","ServerKey":"pl181","X":579,"Y":634},{"Bonus":0,"Continent":"K33","ID":24177,"Name":"2.8","PlayerID":8419570,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24177","ServerKey":"pl181","X":393,"Y":383},{"Bonus":0,"Continent":"K35","ID":24178,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24178","ServerKey":"pl181","X":575,"Y":371},{"Bonus":0,"Continent":"K65","ID":24179,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24179","ServerKey":"pl181","X":527,"Y":647},{"Bonus":0,"Continent":"K64","ID":24180,"Name":"024","PlayerID":698650301,"Points":9990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24180","ServerKey":"pl181","X":465,"Y":656},{"Bonus":0,"Continent":"K56","ID":24181,"Name":"011","PlayerID":699351301,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24181","ServerKey":"pl181","X":652,"Y":531},{"Bonus":0,"Continent":"K35","ID":24182,"Name":"109","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24182","ServerKey":"pl181","X":584,"Y":382},{"Bonus":0,"Continent":"K46","ID":24183,"Name":"116 Murayama","PlayerID":7092442,"Points":4995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24183","ServerKey":"pl181","X":648,"Y":467},{"Bonus":0,"Continent":"K63","ID":24184,"Name":"024 Piwo moje paliwo","PlayerID":8268010,"Points":5791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24184","ServerKey":"pl181","X":396,"Y":617},{"Bonus":0,"Continent":"K56","ID":24185,"Name":"300","PlayerID":7038651,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24185","ServerKey":"pl181","X":646,"Y":542},{"Bonus":0,"Continent":"K56","ID":24186,"Name":"Swarzędz","PlayerID":849095963,"Points":11713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24186","ServerKey":"pl181","X":644,"Y":560},{"Bonus":0,"Continent":"K35","ID":24187,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24187","ServerKey":"pl181","X":578,"Y":368},{"Bonus":0,"Continent":"K35","ID":24188,"Name":"***002***","PlayerID":8843774,"Points":6895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24188","ServerKey":"pl181","X":503,"Y":347},{"Bonus":0,"Continent":"K46","ID":24189,"Name":"119","PlayerID":7085502,"Points":7943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24189","ServerKey":"pl181","X":626,"Y":416},{"Bonus":0,"Continent":"K34","ID":24190,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24190","ServerKey":"pl181","X":422,"Y":372},{"Bonus":1,"Continent":"K34","ID":24191,"Name":"K34 - [144] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24191","ServerKey":"pl181","X":451,"Y":355},{"Bonus":0,"Continent":"K56","ID":24192,"Name":"027","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24192","ServerKey":"pl181","X":640,"Y":557},{"Bonus":0,"Continent":"K43","ID":24193,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24193","ServerKey":"pl181","X":372,"Y":410},{"Bonus":7,"Continent":"K56","ID":24194,"Name":"P025 Maple Kush","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24194","ServerKey":"pl181","X":655,"Y":519},{"Bonus":0,"Continent":"K35","ID":24195,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24195","ServerKey":"pl181","X":567,"Y":364},{"Bonus":0,"Continent":"K64","ID":24196,"Name":"013","PlayerID":699783765,"Points":8230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24196","ServerKey":"pl181","X":428,"Y":632},{"Bonus":0,"Continent":"K64","ID":24197,"Name":"Punta Cana 3","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24197","ServerKey":"pl181","X":456,"Y":646},{"Bonus":0,"Continent":"K63","ID":24198,"Name":"Pobozowisko","PlayerID":699513260,"Points":7275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24198","ServerKey":"pl181","X":387,"Y":601},{"Bonus":0,"Continent":"K64","ID":24199,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24199","ServerKey":"pl181","X":467,"Y":647},{"Bonus":0,"Continent":"K43","ID":24200,"Name":"006","PlayerID":848945529,"Points":3393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24200","ServerKey":"pl181","X":376,"Y":405},{"Bonus":0,"Continent":"K44","ID":24201,"Name":"0079 wojsƂawice","PlayerID":3909522,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24201","ServerKey":"pl181","X":446,"Y":441},{"Bonus":0,"Continent":"K56","ID":24202,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24202","ServerKey":"pl181","X":642,"Y":554},{"Bonus":4,"Continent":"K65","ID":24203,"Name":"002 cesarok","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24203","ServerKey":"pl181","X":569,"Y":634},{"Bonus":0,"Continent":"K64","ID":24204,"Name":"[021]","PlayerID":9094538,"Points":1969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24204","ServerKey":"pl181","X":449,"Y":646},{"Bonus":0,"Continent":"K65","ID":24205,"Name":"- 243 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24205","ServerKey":"pl181","X":595,"Y":621},{"Bonus":0,"Continent":"K56","ID":24206,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24206","ServerKey":"pl181","X":606,"Y":582},{"Bonus":0,"Continent":"K64","ID":24207,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24207","ServerKey":"pl181","X":415,"Y":624},{"Bonus":0,"Continent":"K64","ID":24208,"Name":"|A| Dimstair","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24208","ServerKey":"pl181","X":481,"Y":650},{"Bonus":0,"Continent":"K33","ID":24209,"Name":"A-032","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24209","ServerKey":"pl181","X":394,"Y":389},{"Bonus":0,"Continent":"K35","ID":24210,"Name":"Wioska barbarzyƄska","PlayerID":9140898,"Points":2349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24210","ServerKey":"pl181","X":511,"Y":351},{"Bonus":0,"Continent":"K33","ID":24211,"Name":"2.1","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24211","ServerKey":"pl181","X":386,"Y":393},{"Bonus":0,"Continent":"K43","ID":24212,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24212","ServerKey":"pl181","X":364,"Y":424},{"Bonus":0,"Continent":"K53","ID":24213,"Name":"DajankA 10","PlayerID":849012843,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24213","ServerKey":"pl181","X":357,"Y":558},{"Bonus":0,"Continent":"K46","ID":24214,"Name":"074. Mursa","PlayerID":849091866,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24214","ServerKey":"pl181","X":624,"Y":432},{"Bonus":0,"Continent":"K56","ID":24215,"Name":"0024 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24215","ServerKey":"pl181","X":624,"Y":593},{"Bonus":0,"Continent":"K56","ID":24216,"Name":"jaaa","PlayerID":698635863,"Points":10289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24216","ServerKey":"pl181","X":640,"Y":569},{"Bonus":0,"Continent":"K65","ID":24217,"Name":"0482","PlayerID":698659980,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24217","ServerKey":"pl181","X":518,"Y":649},{"Bonus":0,"Continent":"K65","ID":24218,"Name":"kathare","PlayerID":873575,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24218","ServerKey":"pl181","X":557,"Y":642},{"Bonus":0,"Continent":"K65","ID":24219,"Name":"S_003","PlayerID":849100262,"Points":11965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24219","ServerKey":"pl181","X":509,"Y":656},{"Bonus":0,"Continent":"K56","ID":24220,"Name":"035 Vattweir","PlayerID":699272880,"Points":10058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24220","ServerKey":"pl181","X":623,"Y":587},{"Bonus":7,"Continent":"K33","ID":24221,"Name":"A-017","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24221","ServerKey":"pl181","X":390,"Y":398},{"Bonus":0,"Continent":"K35","ID":24223,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24223","ServerKey":"pl181","X":568,"Y":361},{"Bonus":0,"Continent":"K64","ID":24224,"Name":"|A| Darkdale","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24224","ServerKey":"pl181","X":479,"Y":649},{"Bonus":0,"Continent":"K65","ID":24225,"Name":"kathare","PlayerID":873575,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24225","ServerKey":"pl181","X":550,"Y":644},{"Bonus":0,"Continent":"K34","ID":24226,"Name":"VN Artemisia","PlayerID":699883079,"Points":9639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24226","ServerKey":"pl181","X":464,"Y":377},{"Bonus":0,"Continent":"K43","ID":24227,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24227","ServerKey":"pl181","X":372,"Y":414},{"Bonus":0,"Continent":"K53","ID":24228,"Name":"Zorg","PlayerID":8607734,"Points":6826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24228","ServerKey":"pl181","X":371,"Y":588},{"Bonus":0,"Continent":"K56","ID":24229,"Name":"B.050","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24229","ServerKey":"pl181","X":654,"Y":509},{"Bonus":0,"Continent":"K64","ID":24230,"Name":"0001. HMS Prince Royal (1663)","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24230","ServerKey":"pl181","X":460,"Y":652},{"Bonus":0,"Continent":"K65","ID":24231,"Name":"Sony 911","PlayerID":1415009,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24231","ServerKey":"pl181","X":584,"Y":627},{"Bonus":0,"Continent":"K46","ID":24232,"Name":"028","PlayerID":7085502,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24232","ServerKey":"pl181","X":655,"Y":497},{"Bonus":0,"Continent":"K43","ID":24233,"Name":"A0038","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24233","ServerKey":"pl181","X":384,"Y":469},{"Bonus":0,"Continent":"K53","ID":24234,"Name":"Skazany Na Instynkt","PlayerID":8004076,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24234","ServerKey":"pl181","X":367,"Y":578},{"Bonus":0,"Continent":"K64","ID":24235,"Name":"041","PlayerID":849084985,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24235","ServerKey":"pl181","X":445,"Y":637},{"Bonus":0,"Continent":"K56","ID":24236,"Name":"jaaa","PlayerID":698635863,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24236","ServerKey":"pl181","X":637,"Y":575},{"Bonus":0,"Continent":"K36","ID":24237,"Name":"A 006","PlayerID":6384450,"Points":6356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24237","ServerKey":"pl181","X":609,"Y":387},{"Bonus":0,"Continent":"K36","ID":24238,"Name":"025","PlayerID":699298370,"Points":8719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24238","ServerKey":"pl181","X":615,"Y":399},{"Bonus":0,"Continent":"K64","ID":24239,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24239","ServerKey":"pl181","X":471,"Y":650},{"Bonus":0,"Continent":"K43","ID":24240,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24240","ServerKey":"pl181","X":347,"Y":480},{"Bonus":0,"Continent":"K56","ID":24241,"Name":"33k$ Grvvyq","PlayerID":699676005,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24241","ServerKey":"pl181","X":639,"Y":555},{"Bonus":0,"Continent":"K64","ID":24242,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24242","ServerKey":"pl181","X":438,"Y":641},{"Bonus":0,"Continent":"K63","ID":24243,"Name":"Pobozowisko","PlayerID":699513260,"Points":10092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24243","ServerKey":"pl181","X":391,"Y":610},{"Bonus":0,"Continent":"K64","ID":24244,"Name":"008.","PlayerID":849034882,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24244","ServerKey":"pl181","X":486,"Y":651},{"Bonus":0,"Continent":"K53","ID":24245,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24245","ServerKey":"pl181","X":351,"Y":537},{"Bonus":0,"Continent":"K65","ID":24246,"Name":"sony911","PlayerID":1415009,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24246","ServerKey":"pl181","X":580,"Y":633},{"Bonus":0,"Continent":"K43","ID":24247,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24247","ServerKey":"pl181","X":349,"Y":474},{"Bonus":0,"Continent":"K34","ID":24248,"Name":"K34 - [050] Before Land","PlayerID":699088769,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24248","ServerKey":"pl181","X":442,"Y":356},{"Bonus":0,"Continent":"K56","ID":24249,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24249","ServerKey":"pl181","X":630,"Y":581},{"Bonus":0,"Continent":"K65","ID":24250,"Name":"SSJ 059","PlayerID":699054373,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24250","ServerKey":"pl181","X":511,"Y":654},{"Bonus":0,"Continent":"K64","ID":24251,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24251","ServerKey":"pl181","X":467,"Y":646},{"Bonus":0,"Continent":"K55","ID":24252,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24252","ServerKey":"pl181","X":583,"Y":589},{"Bonus":0,"Continent":"K65","ID":24253,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24253","ServerKey":"pl181","X":529,"Y":653},{"Bonus":0,"Continent":"K34","ID":24254,"Name":"#0021 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24254","ServerKey":"pl181","X":470,"Y":353},{"Bonus":0,"Continent":"K53","ID":24255,"Name":"Dajanka 14","PlayerID":849012843,"Points":6910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24255","ServerKey":"pl181","X":358,"Y":553},{"Bonus":2,"Continent":"K56","ID":24256,"Name":"B.003","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24256","ServerKey":"pl181","X":650,"Y":507},{"Bonus":0,"Continent":"K63","ID":24257,"Name":"Pobozowisko","PlayerID":699513260,"Points":10960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24257","ServerKey":"pl181","X":384,"Y":604},{"Bonus":0,"Continent":"K46","ID":24258,"Name":"*4626* Dzielnica cesarska","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24258","ServerKey":"pl181","X":640,"Y":435},{"Bonus":0,"Continent":"K43","ID":24259,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":7682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24259","ServerKey":"pl181","X":356,"Y":446},{"Bonus":0,"Continent":"K64","ID":24260,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24260","ServerKey":"pl181","X":444,"Y":644},{"Bonus":0,"Continent":"K35","ID":24261,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24261","ServerKey":"pl181","X":555,"Y":358},{"Bonus":6,"Continent":"K53","ID":24262,"Name":"022 181","PlayerID":698807570,"Points":9015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24262","ServerKey":"pl181","X":349,"Y":510},{"Bonus":0,"Continent":"K46","ID":24263,"Name":"Piwna 17","PlayerID":699812007,"Points":7759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24263","ServerKey":"pl181","X":626,"Y":428},{"Bonus":0,"Continent":"K64","ID":24264,"Name":"Nahrawan","PlayerID":849089459,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24264","ServerKey":"pl181","X":435,"Y":638},{"Bonus":0,"Continent":"K64","ID":24265,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24265","ServerKey":"pl181","X":431,"Y":634},{"Bonus":0,"Continent":"K63","ID":24266,"Name":"Pobozowisko","PlayerID":699513260,"Points":6110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24266","ServerKey":"pl181","X":384,"Y":600},{"Bonus":0,"Continent":"K56","ID":24267,"Name":"042","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24267","ServerKey":"pl181","X":649,"Y":550},{"Bonus":0,"Continent":"K36","ID":24268,"Name":"Owp Konfederacja","PlayerID":848915730,"Points":5977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24268","ServerKey":"pl181","X":600,"Y":382},{"Bonus":0,"Continent":"K34","ID":24269,"Name":"OgĂłrkowy baron","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24269","ServerKey":"pl181","X":405,"Y":396},{"Bonus":0,"Continent":"K65","ID":24270,"Name":"kathare","PlayerID":873575,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24270","ServerKey":"pl181","X":552,"Y":641},{"Bonus":0,"Continent":"K64","ID":24271,"Name":"046.","PlayerID":2665207,"Points":8098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24271","ServerKey":"pl181","X":407,"Y":623},{"Bonus":0,"Continent":"K46","ID":24272,"Name":"West","PlayerID":1086351,"Points":6183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24272","ServerKey":"pl181","X":624,"Y":406},{"Bonus":0,"Continent":"K35","ID":24274,"Name":"CSA","PlayerID":7651093,"Points":8736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24274","ServerKey":"pl181","X":511,"Y":344},{"Bonus":0,"Continent":"K65","ID":24275,"Name":"*Leser","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24275","ServerKey":"pl181","X":574,"Y":633},{"Bonus":0,"Continent":"K34","ID":24276,"Name":"0026","PlayerID":848913037,"Points":7802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24276","ServerKey":"pl181","X":417,"Y":370},{"Bonus":0,"Continent":"K64","ID":24277,"Name":"011|| Aquarius","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24277","ServerKey":"pl181","X":481,"Y":645},{"Bonus":0,"Continent":"K46","ID":24278,"Name":"037 | PALESTINA","PlayerID":9228039,"Points":5359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24278","ServerKey":"pl181","X":643,"Y":439},{"Bonus":8,"Continent":"K64","ID":24279,"Name":"Alicization 2","PlayerID":699849210,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24279","ServerKey":"pl181","X":455,"Y":649},{"Bonus":0,"Continent":"K53","ID":24280,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24280","ServerKey":"pl181","X":349,"Y":538},{"Bonus":0,"Continent":"K34","ID":24281,"Name":"#0003 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24281","ServerKey":"pl181","X":467,"Y":351},{"Bonus":0,"Continent":"K56","ID":24282,"Name":"Jaaa","PlayerID":698635863,"Points":10269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24282","ServerKey":"pl181","X":622,"Y":592},{"Bonus":0,"Continent":"K46","ID":24283,"Name":"025 Legio I Claudia Pia Fidelis","PlayerID":699878150,"Points":5504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24283","ServerKey":"pl181","X":651,"Y":488},{"Bonus":8,"Continent":"K65","ID":24284,"Name":"kathare","PlayerID":873575,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24284","ServerKey":"pl181","X":556,"Y":640},{"Bonus":0,"Continent":"K46","ID":24286,"Name":"*4621* Pierwszy gol","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24286","ServerKey":"pl181","X":643,"Y":444},{"Bonus":0,"Continent":"K35","ID":24287,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24287","ServerKey":"pl181","X":568,"Y":364},{"Bonus":0,"Continent":"K35","ID":24288,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24288","ServerKey":"pl181","X":576,"Y":368},{"Bonus":6,"Continent":"K53","ID":24289,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24289","ServerKey":"pl181","X":347,"Y":533},{"Bonus":0,"Continent":"K54","ID":24290,"Name":"Z barba 010","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24290","ServerKey":"pl181","X":406,"Y":576},{"Bonus":7,"Continent":"K35","ID":24291,"Name":"Lord Lord Franek .#013","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24291","ServerKey":"pl181","X":520,"Y":345},{"Bonus":0,"Continent":"K65","ID":24292,"Name":"0483","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24292","ServerKey":"pl181","X":538,"Y":650},{"Bonus":0,"Continent":"K35","ID":24293,"Name":"Happy New Year 2k23","PlayerID":7462660,"Points":8975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24293","ServerKey":"pl181","X":595,"Y":375},{"Bonus":0,"Continent":"K43","ID":24294,"Name":"Mniejsze zƂo 0029","PlayerID":699794765,"Points":8128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24294","ServerKey":"pl181","X":345,"Y":498},{"Bonus":0,"Continent":"K43","ID":24295,"Name":"Wioska","PlayerID":6258092,"Points":7821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24295","ServerKey":"pl181","X":351,"Y":454},{"Bonus":0,"Continent":"K53","ID":24296,"Name":"001 181","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24296","ServerKey":"pl181","X":356,"Y":502},{"Bonus":0,"Continent":"K65","ID":24297,"Name":"18. A kit go wie","PlayerID":849092769,"Points":11839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24297","ServerKey":"pl181","X":508,"Y":656},{"Bonus":0,"Continent":"K63","ID":24298,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24298","ServerKey":"pl181","X":393,"Y":608},{"Bonus":0,"Continent":"K46","ID":24299,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24299","ServerKey":"pl181","X":629,"Y":417},{"Bonus":0,"Continent":"K53","ID":24300,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24300","ServerKey":"pl181","X":350,"Y":545},{"Bonus":0,"Continent":"K34","ID":24301,"Name":"K34 - [053] Before Land","PlayerID":699088769,"Points":7464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24301","ServerKey":"pl181","X":441,"Y":357},{"Bonus":0,"Continent":"K46","ID":24302,"Name":"Tomall78","PlayerID":699524891,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24302","ServerKey":"pl181","X":635,"Y":427},{"Bonus":0,"Continent":"K35","ID":24303,"Name":"Lord Lord Franek .#010","PlayerID":698420691,"Points":10244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24303","ServerKey":"pl181","X":535,"Y":348},{"Bonus":0,"Continent":"K46","ID":24304,"Name":"BACÓWKA |022|","PlayerID":7394371,"Points":7938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24304","ServerKey":"pl181","X":631,"Y":418},{"Bonus":0,"Continent":"K56","ID":24305,"Name":"061","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24305","ServerKey":"pl181","X":648,"Y":533},{"Bonus":0,"Continent":"K34","ID":24306,"Name":"029","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24306","ServerKey":"pl181","X":478,"Y":351},{"Bonus":0,"Continent":"K34","ID":24307,"Name":"0061","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24307","ServerKey":"pl181","X":418,"Y":371},{"Bonus":0,"Continent":"K36","ID":24308,"Name":"A 002","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24308","ServerKey":"pl181","X":610,"Y":392},{"Bonus":0,"Continent":"K56","ID":24309,"Name":"026","PlayerID":699351301,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24309","ServerKey":"pl181","X":652,"Y":539},{"Bonus":3,"Continent":"K53","ID":24310,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24310","ServerKey":"pl181","X":355,"Y":561},{"Bonus":0,"Continent":"K53","ID":24311,"Name":"002 181","PlayerID":698807570,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24311","ServerKey":"pl181","X":355,"Y":500},{"Bonus":0,"Continent":"K43","ID":24312,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":10118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24312","ServerKey":"pl181","X":364,"Y":426},{"Bonus":0,"Continent":"K46","ID":24313,"Name":"049. Ardwen","PlayerID":8337151,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24313","ServerKey":"pl181","X":637,"Y":425},{"Bonus":0,"Continent":"K53","ID":24314,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24314","ServerKey":"pl181","X":345,"Y":516},{"Bonus":0,"Continent":"K53","ID":24315,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24315","ServerKey":"pl181","X":349,"Y":511},{"Bonus":0,"Continent":"K65","ID":24316,"Name":"0077","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24316","ServerKey":"pl181","X":532,"Y":647},{"Bonus":0,"Continent":"K35","ID":24317,"Name":"Lord Lord Franek .#021","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24317","ServerKey":"pl181","X":523,"Y":344},{"Bonus":0,"Continent":"K56","ID":24318,"Name":"035","PlayerID":699351301,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24318","ServerKey":"pl181","X":648,"Y":523},{"Bonus":0,"Continent":"K35","ID":24319,"Name":"008","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24319","ServerKey":"pl181","X":518,"Y":346},{"Bonus":0,"Continent":"K56","ID":24320,"Name":"jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24320","ServerKey":"pl181","X":637,"Y":576},{"Bonus":9,"Continent":"K34","ID":24321,"Name":"Monetio","PlayerID":699308637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24321","ServerKey":"pl181","X":445,"Y":354},{"Bonus":0,"Continent":"K64","ID":24322,"Name":"Ave Why!","PlayerID":698585370,"Points":9414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24322","ServerKey":"pl181","X":464,"Y":644},{"Bonus":0,"Continent":"K34","ID":24323,"Name":"K34 - [130] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24323","ServerKey":"pl181","X":440,"Y":355},{"Bonus":0,"Continent":"K43","ID":24324,"Name":"033","PlayerID":6258092,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24324","ServerKey":"pl181","X":353,"Y":471},{"Bonus":0,"Continent":"K36","ID":24325,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":5179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24325","ServerKey":"pl181","X":611,"Y":392},{"Bonus":0,"Continent":"K53","ID":24326,"Name":"Belweder","PlayerID":849095992,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24326","ServerKey":"pl181","X":374,"Y":593},{"Bonus":0,"Continent":"K65","ID":24327,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24327","ServerKey":"pl181","X":541,"Y":651},{"Bonus":0,"Continent":"K64","ID":24328,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24328","ServerKey":"pl181","X":459,"Y":643},{"Bonus":0,"Continent":"K43","ID":24329,"Name":"7.62 mm","PlayerID":848886056,"Points":2697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24329","ServerKey":"pl181","X":380,"Y":400},{"Bonus":0,"Continent":"K34","ID":24330,"Name":"093","PlayerID":698364331,"Points":6022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24330","ServerKey":"pl181","X":415,"Y":374},{"Bonus":0,"Continent":"K63","ID":24331,"Name":"Pobozowisko","PlayerID":699513260,"Points":5694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24331","ServerKey":"pl181","X":386,"Y":608},{"Bonus":0,"Continent":"K65","ID":24332,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24332","ServerKey":"pl181","X":506,"Y":649},{"Bonus":0,"Continent":"K46","ID":24333,"Name":"#044.522|497","PlayerID":556154,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24333","ServerKey":"pl181","X":641,"Y":448},{"Bonus":0,"Continent":"K56","ID":24334,"Name":"M003","PlayerID":848899726,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24334","ServerKey":"pl181","X":651,"Y":507},{"Bonus":0,"Continent":"K43","ID":24335,"Name":"M181_049","PlayerID":393668,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24335","ServerKey":"pl181","X":363,"Y":428},{"Bonus":9,"Continent":"K64","ID":24336,"Name":"KUZYN NA MALEDIWACH","PlayerID":848913998,"Points":9173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24336","ServerKey":"pl181","X":419,"Y":630},{"Bonus":0,"Continent":"K65","ID":24337,"Name":"Sony911","PlayerID":1415009,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24337","ServerKey":"pl181","X":585,"Y":631},{"Bonus":0,"Continent":"K53","ID":24338,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24338","ServerKey":"pl181","X":350,"Y":516},{"Bonus":0,"Continent":"K65","ID":24339,"Name":"009 toples145","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24339","ServerKey":"pl181","X":560,"Y":641},{"Bonus":0,"Continent":"K56","ID":24341,"Name":"070","PlayerID":699351301,"Points":6342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24341","ServerKey":"pl181","X":652,"Y":530},{"Bonus":0,"Continent":"K56","ID":24342,"Name":"Wioska Kaffik VI","PlayerID":6136757,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24342","ServerKey":"pl181","X":635,"Y":580},{"Bonus":0,"Continent":"K56","ID":24343,"Name":"019","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24343","ServerKey":"pl181","X":647,"Y":524},{"Bonus":0,"Continent":"K63","ID":24344,"Name":"Pobozowisko","PlayerID":699513260,"Points":6141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24344","ServerKey":"pl181","X":389,"Y":600},{"Bonus":4,"Continent":"K35","ID":24345,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24345","ServerKey":"pl181","X":564,"Y":364},{"Bonus":0,"Continent":"K35","ID":24347,"Name":"Lord Lord Franek .#022","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24347","ServerKey":"pl181","X":529,"Y":346},{"Bonus":0,"Continent":"K35","ID":24348,"Name":"A016","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24348","ServerKey":"pl181","X":580,"Y":370},{"Bonus":0,"Continent":"K34","ID":24349,"Name":"0033","PlayerID":848913037,"Points":4948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24349","ServerKey":"pl181","X":416,"Y":371},{"Bonus":0,"Continent":"K66","ID":24350,"Name":"~~050~~","PlayerID":7829201,"Points":9597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24350","ServerKey":"pl181","X":607,"Y":612},{"Bonus":0,"Continent":"K56","ID":24351,"Name":"Nowa 27","PlayerID":698702991,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24351","ServerKey":"pl181","X":638,"Y":567},{"Bonus":2,"Continent":"K34","ID":24352,"Name":"North glinianka","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24352","ServerKey":"pl181","X":422,"Y":364},{"Bonus":0,"Continent":"K65","ID":24354,"Name":"Bizy 5","PlayerID":8954402,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24354","ServerKey":"pl181","X":505,"Y":657},{"Bonus":0,"Continent":"K35","ID":24355,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24355","ServerKey":"pl181","X":566,"Y":357},{"Bonus":0,"Continent":"K33","ID":24356,"Name":"Wioska Pabols 1","PlayerID":8967440,"Points":5707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24356","ServerKey":"pl181","X":382,"Y":396},{"Bonus":0,"Continent":"K35","ID":24357,"Name":"Taki Pan","PlayerID":698739350,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24357","ServerKey":"pl181","X":504,"Y":345},{"Bonus":0,"Continent":"K34","ID":24358,"Name":"137","PlayerID":7271812,"Points":3117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24358","ServerKey":"pl181","X":473,"Y":351},{"Bonus":0,"Continent":"K33","ID":24359,"Name":"2.2","PlayerID":698364331,"Points":2737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24359","ServerKey":"pl181","X":388,"Y":392},{"Bonus":0,"Continent":"K43","ID":24360,"Name":"M181_018","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24360","ServerKey":"pl181","X":364,"Y":430},{"Bonus":0,"Continent":"K53","ID":24361,"Name":"Denger 22","PlayerID":698353083,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24361","ServerKey":"pl181","X":374,"Y":585},{"Bonus":0,"Continent":"K65","ID":24362,"Name":"S_008","PlayerID":849100262,"Points":11741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24362","ServerKey":"pl181","X":506,"Y":657},{"Bonus":0,"Continent":"K46","ID":24363,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24363","ServerKey":"pl181","X":645,"Y":453},{"Bonus":0,"Continent":"K56","ID":24365,"Name":"Wioska Kaffik IV","PlayerID":6136757,"Points":7432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24365","ServerKey":"pl181","X":633,"Y":581},{"Bonus":0,"Continent":"K43","ID":24366,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":7511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24366","ServerKey":"pl181","X":371,"Y":418},{"Bonus":0,"Continent":"K53","ID":24367,"Name":"off 100 %","PlayerID":849012521,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24367","ServerKey":"pl181","X":355,"Y":562},{"Bonus":0,"Continent":"K43","ID":24368,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24368","ServerKey":"pl181","X":356,"Y":458},{"Bonus":0,"Continent":"K43","ID":24369,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24369","ServerKey":"pl181","X":353,"Y":453},{"Bonus":0,"Continent":"K65","ID":24370,"Name":"011. Erwin Domel","PlayerID":848928624,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24370","ServerKey":"pl181","X":507,"Y":650},{"Bonus":0,"Continent":"K64","ID":24371,"Name":"019","PlayerID":699238479,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24371","ServerKey":"pl181","X":474,"Y":653},{"Bonus":0,"Continent":"K35","ID":24372,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24372","ServerKey":"pl181","X":576,"Y":370},{"Bonus":0,"Continent":"K65","ID":24373,"Name":"Sony 911","PlayerID":1415009,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24373","ServerKey":"pl181","X":583,"Y":631},{"Bonus":0,"Continent":"K65","ID":24374,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24374","ServerKey":"pl181","X":542,"Y":651},{"Bonus":0,"Continent":"K34","ID":24375,"Name":"Lecymy DUR","PlayerID":6169408,"Points":7766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24375","ServerKey":"pl181","X":428,"Y":361},{"Bonus":0,"Continent":"K64","ID":24376,"Name":"021","PlayerID":698650301,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24376","ServerKey":"pl181","X":467,"Y":650},{"Bonus":0,"Continent":"K43","ID":24377,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24377","ServerKey":"pl181","X":348,"Y":468},{"Bonus":0,"Continent":"K35","ID":24378,"Name":"Lord Lord Franek .#179","PlayerID":698420691,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24378","ServerKey":"pl181","X":516,"Y":349},{"Bonus":0,"Continent":"K53","ID":24379,"Name":"x006","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24379","ServerKey":"pl181","X":359,"Y":566},{"Bonus":0,"Continent":"K53","ID":24380,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24380","ServerKey":"pl181","X":370,"Y":581},{"Bonus":0,"Continent":"K66","ID":24381,"Name":"historia blisko 4","PlayerID":699778867,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24381","ServerKey":"pl181","X":614,"Y":604},{"Bonus":0,"Continent":"K56","ID":24383,"Name":"013","PlayerID":699351301,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24383","ServerKey":"pl181","X":653,"Y":534},{"Bonus":1,"Continent":"K53","ID":24384,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24384","ServerKey":"pl181","X":346,"Y":508},{"Bonus":0,"Continent":"K64","ID":24385,"Name":"|B| Avlefirr","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24385","ServerKey":"pl181","X":486,"Y":655},{"Bonus":0,"Continent":"K65","ID":24386,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24386","ServerKey":"pl181","X":521,"Y":654},{"Bonus":0,"Continent":"K45","ID":24387,"Name":"[319] Chorągiewka na wietrze","PlayerID":848985692,"Points":10395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24387","ServerKey":"pl181","X":591,"Y":437},{"Bonus":0,"Continent":"K65","ID":24388,"Name":"043","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24388","ServerKey":"pl181","X":570,"Y":639},{"Bonus":0,"Continent":"K66","ID":24389,"Name":"zzzGranica Bledu 06","PlayerID":699778867,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24389","ServerKey":"pl181","X":607,"Y":611},{"Bonus":0,"Continent":"K56","ID":24391,"Name":"B.007","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24391","ServerKey":"pl181","X":652,"Y":514},{"Bonus":0,"Continent":"K56","ID":24392,"Name":"008","PlayerID":849095963,"Points":7478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24392","ServerKey":"pl181","X":645,"Y":561},{"Bonus":0,"Continent":"K36","ID":24393,"Name":"Szlachcic:Taran","PlayerID":698241117,"Points":5095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24393","ServerKey":"pl181","X":617,"Y":396},{"Bonus":0,"Continent":"K43","ID":24394,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24394","ServerKey":"pl181","X":380,"Y":401},{"Bonus":0,"Continent":"K46","ID":24395,"Name":"B03","PlayerID":849093742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24395","ServerKey":"pl181","X":645,"Y":439},{"Bonus":0,"Continent":"K56","ID":24397,"Name":"Epitaph","PlayerID":848926293,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24397","ServerKey":"pl181","X":639,"Y":564},{"Bonus":0,"Continent":"K65","ID":24398,"Name":"SSJ 055","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24398","ServerKey":"pl181","X":508,"Y":652},{"Bonus":0,"Continent":"K64","ID":24399,"Name":"039","PlayerID":849084985,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24399","ServerKey":"pl181","X":446,"Y":640},{"Bonus":0,"Continent":"K64","ID":24400,"Name":"ave why!","PlayerID":698143931,"Points":9122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24400","ServerKey":"pl181","X":445,"Y":642},{"Bonus":0,"Continent":"K63","ID":24401,"Name":"Pobozowisko","PlayerID":699513260,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24401","ServerKey":"pl181","X":383,"Y":609},{"Bonus":0,"Continent":"K64","ID":24402,"Name":"002|| Taurus","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24402","ServerKey":"pl181","X":487,"Y":651},{"Bonus":0,"Continent":"K45","ID":24403,"Name":"BBB","PlayerID":1006847,"Points":8713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24403","ServerKey":"pl181","X":561,"Y":415},{"Bonus":0,"Continent":"K65","ID":24404,"Name":"019","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24404","ServerKey":"pl181","X":563,"Y":640},{"Bonus":0,"Continent":"K53","ID":24405,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":6953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24405","ServerKey":"pl181","X":354,"Y":543},{"Bonus":0,"Continent":"K65","ID":24406,"Name":"Wioska 2","PlayerID":8627359,"Points":9274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24406","ServerKey":"pl181","X":589,"Y":629},{"Bonus":0,"Continent":"K46","ID":24407,"Name":"006 - Mroczna Osada","PlayerID":849035905,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24407","ServerKey":"pl181","X":630,"Y":418},{"Bonus":0,"Continent":"K43","ID":24408,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24408","ServerKey":"pl181","X":373,"Y":408},{"Bonus":0,"Continent":"K35","ID":24409,"Name":"I#024","PlayerID":2065730,"Points":6503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24409","ServerKey":"pl181","X":598,"Y":378},{"Bonus":0,"Continent":"K64","ID":24410,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":4425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24410","ServerKey":"pl181","X":416,"Y":630},{"Bonus":0,"Continent":"K43","ID":24411,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24411","ServerKey":"pl181","X":374,"Y":406},{"Bonus":0,"Continent":"K64","ID":24412,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24412","ServerKey":"pl181","X":440,"Y":645},{"Bonus":0,"Continent":"K45","ID":24413,"Name":"005","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24413","ServerKey":"pl181","X":520,"Y":465},{"Bonus":0,"Continent":"K64","ID":24414,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24414","ServerKey":"pl181","X":429,"Y":640},{"Bonus":0,"Continent":"K53","ID":24415,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24415","ServerKey":"pl181","X":349,"Y":534},{"Bonus":0,"Continent":"K64","ID":24416,"Name":"Pobozowisko","PlayerID":699513260,"Points":8276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24416","ServerKey":"pl181","X":407,"Y":616},{"Bonus":0,"Continent":"K53","ID":24417,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24417","ServerKey":"pl181","X":350,"Y":511},{"Bonus":0,"Continent":"K64","ID":24418,"Name":"020","PlayerID":699783765,"Points":8680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24418","ServerKey":"pl181","X":427,"Y":632},{"Bonus":0,"Continent":"K65","ID":24419,"Name":"SSJ 052","PlayerID":699054373,"Points":9517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24419","ServerKey":"pl181","X":511,"Y":651},{"Bonus":0,"Continent":"K53","ID":24421,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24421","ServerKey":"pl181","X":351,"Y":527},{"Bonus":0,"Continent":"K55","ID":24422,"Name":"ladyanima","PlayerID":699703642,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24422","ServerKey":"pl181","X":518,"Y":571},{"Bonus":2,"Continent":"K53","ID":24423,"Name":"The sweetest ass in the world","PlayerID":849095992,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24423","ServerKey":"pl181","X":375,"Y":591},{"Bonus":0,"Continent":"K64","ID":24424,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24424","ServerKey":"pl181","X":452,"Y":645},{"Bonus":0,"Continent":"K53","ID":24425,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24425","ServerKey":"pl181","X":360,"Y":563},{"Bonus":3,"Continent":"K46","ID":24426,"Name":"BACÓWKA |003|","PlayerID":7394371,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24426","ServerKey":"pl181","X":631,"Y":416},{"Bonus":0,"Continent":"K53","ID":24427,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":4117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24427","ServerKey":"pl181","X":368,"Y":572},{"Bonus":0,"Continent":"K56","ID":24428,"Name":"Wioska Kaffik I","PlayerID":6136757,"Points":6964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24428","ServerKey":"pl181","X":633,"Y":579},{"Bonus":0,"Continent":"K56","ID":24429,"Name":"B.029","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24429","ServerKey":"pl181","X":650,"Y":518},{"Bonus":3,"Continent":"K53","ID":24430,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24430","ServerKey":"pl181","X":350,"Y":513},{"Bonus":0,"Continent":"K34","ID":24431,"Name":"244...SOUTH","PlayerID":6920960,"Points":6764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24431","ServerKey":"pl181","X":474,"Y":348},{"Bonus":0,"Continent":"K34","ID":24432,"Name":"North Barba 003","PlayerID":699796330,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24432","ServerKey":"pl181","X":421,"Y":366},{"Bonus":0,"Continent":"K64","ID":24433,"Name":"Ave Why!","PlayerID":698585370,"Points":9212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24433","ServerKey":"pl181","X":459,"Y":641},{"Bonus":0,"Continent":"K46","ID":24434,"Name":"B02","PlayerID":849093742,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24434","ServerKey":"pl181","X":647,"Y":452},{"Bonus":0,"Continent":"K34","ID":24435,"Name":"002","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24435","ServerKey":"pl181","X":485,"Y":342},{"Bonus":0,"Continent":"K63","ID":24436,"Name":"Pobozowisko","PlayerID":699513260,"Points":4585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24436","ServerKey":"pl181","X":387,"Y":605},{"Bonus":0,"Continent":"K56","ID":24437,"Name":"071","PlayerID":849095227,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24437","ServerKey":"pl181","X":648,"Y":553},{"Bonus":0,"Continent":"K56","ID":24438,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24438","ServerKey":"pl181","X":633,"Y":583},{"Bonus":0,"Continent":"K53","ID":24439,"Name":"Koszalin","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24439","ServerKey":"pl181","X":384,"Y":554},{"Bonus":0,"Continent":"K34","ID":24440,"Name":"040...CENTRUM","PlayerID":6920960,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24440","ServerKey":"pl181","X":459,"Y":354},{"Bonus":0,"Continent":"K64","ID":24441,"Name":"018|| Camelopardalis","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24441","ServerKey":"pl181","X":474,"Y":650},{"Bonus":0,"Continent":"K46","ID":24442,"Name":"Jehu_Kingdom_13","PlayerID":8785314,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24442","ServerKey":"pl181","X":641,"Y":433},{"Bonus":0,"Continent":"K35","ID":24443,"Name":"Lord Lord Franek .#204","PlayerID":698420691,"Points":9775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24443","ServerKey":"pl181","X":501,"Y":349},{"Bonus":0,"Continent":"K65","ID":24444,"Name":"037.1 mys","PlayerID":699828685,"Points":9303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24444","ServerKey":"pl181","X":553,"Y":648},{"Bonus":0,"Continent":"K34","ID":24445,"Name":"073...barbarka","PlayerID":6920960,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24445","ServerKey":"pl181","X":459,"Y":350},{"Bonus":0,"Continent":"K34","ID":24446,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":8021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24446","ServerKey":"pl181","X":492,"Y":343},{"Bonus":0,"Continent":"K34","ID":24447,"Name":"017...CENTR","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24447","ServerKey":"pl181","X":456,"Y":352},{"Bonus":0,"Continent":"K43","ID":24448,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24448","ServerKey":"pl181","X":351,"Y":478},{"Bonus":0,"Continent":"K43","ID":24449,"Name":"M181_048","PlayerID":393668,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24449","ServerKey":"pl181","X":362,"Y":435},{"Bonus":0,"Continent":"K43","ID":24450,"Name":"Terrestre","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24450","ServerKey":"pl181","X":347,"Y":462},{"Bonus":0,"Continent":"K46","ID":24451,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24451","ServerKey":"pl181","X":645,"Y":456},{"Bonus":0,"Continent":"K34","ID":24452,"Name":"000000VN Zenon Zogriatis","PlayerID":699883079,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24452","ServerKey":"pl181","X":466,"Y":369},{"Bonus":0,"Continent":"K64","ID":24453,"Name":"Taka006","PlayerID":848999671,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24453","ServerKey":"pl181","X":474,"Y":652},{"Bonus":0,"Continent":"K56","ID":24454,"Name":"M008","PlayerID":848899726,"Points":4839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24454","ServerKey":"pl181","X":653,"Y":504},{"Bonus":0,"Continent":"K65","ID":24455,"Name":"~005.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24455","ServerKey":"pl181","X":502,"Y":608},{"Bonus":0,"Continent":"K43","ID":24456,"Name":"011","PlayerID":849059457,"Points":5460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24456","ServerKey":"pl181","X":382,"Y":401},{"Bonus":0,"Continent":"K65","ID":24457,"Name":"Raz na wozie,raz w nawozie","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24457","ServerKey":"pl181","X":578,"Y":629},{"Bonus":0,"Continent":"K65","ID":24458,"Name":"034","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24458","ServerKey":"pl181","X":570,"Y":637},{"Bonus":0,"Continent":"K43","ID":24459,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":7517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24459","ServerKey":"pl181","X":356,"Y":449},{"Bonus":0,"Continent":"K35","ID":24460,"Name":"A030","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24460","ServerKey":"pl181","X":589,"Y":378},{"Bonus":0,"Continent":"K65","ID":24461,"Name":"kathare","PlayerID":873575,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24461","ServerKey":"pl181","X":554,"Y":641},{"Bonus":0,"Continent":"K64","ID":24462,"Name":"037","PlayerID":849084985,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24462","ServerKey":"pl181","X":450,"Y":641},{"Bonus":0,"Continent":"K34","ID":24463,"Name":"013...CENTR","PlayerID":6920960,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24463","ServerKey":"pl181","X":460,"Y":351},{"Bonus":0,"Continent":"K53","ID":24465,"Name":"-033-","PlayerID":699097885,"Points":7384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24465","ServerKey":"pl181","X":378,"Y":590},{"Bonus":0,"Continent":"K43","ID":24466,"Name":"Mniejsze zƂo 0044","PlayerID":699794765,"Points":6483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24466","ServerKey":"pl181","X":344,"Y":497},{"Bonus":0,"Continent":"K35","ID":24467,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24467","ServerKey":"pl181","X":580,"Y":368},{"Bonus":0,"Continent":"K64","ID":24469,"Name":"0008","PlayerID":6180190,"Points":10637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24469","ServerKey":"pl181","X":476,"Y":651},{"Bonus":0,"Continent":"K64","ID":24470,"Name":"Quzynafide","PlayerID":848913998,"Points":5929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24470","ServerKey":"pl181","X":408,"Y":625},{"Bonus":0,"Continent":"K35","ID":24471,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24471","ServerKey":"pl181","X":506,"Y":345},{"Bonus":0,"Continent":"K43","ID":24472,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24472","ServerKey":"pl181","X":350,"Y":475},{"Bonus":0,"Continent":"K53","ID":24473,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24473","ServerKey":"pl181","X":349,"Y":541},{"Bonus":0,"Continent":"K46","ID":24474,"Name":"Flinii","PlayerID":848883237,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24474","ServerKey":"pl181","X":635,"Y":421},{"Bonus":0,"Continent":"K65","ID":24475,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24475","ServerKey":"pl181","X":529,"Y":651},{"Bonus":0,"Continent":"K43","ID":24476,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24476","ServerKey":"pl181","X":347,"Y":468},{"Bonus":0,"Continent":"K64","ID":24477,"Name":"013|| Cepheus","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24477","ServerKey":"pl181","X":490,"Y":653},{"Bonus":0,"Continent":"K64","ID":24478,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24478","ServerKey":"pl181","X":463,"Y":653},{"Bonus":0,"Continent":"K53","ID":24479,"Name":"Mockingbird","PlayerID":849095992,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24479","ServerKey":"pl181","X":374,"Y":592},{"Bonus":0,"Continent":"K56","ID":24480,"Name":"026","PlayerID":849006412,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24480","ServerKey":"pl181","X":655,"Y":508},{"Bonus":0,"Continent":"K35","ID":24482,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24482","ServerKey":"pl181","X":575,"Y":363},{"Bonus":0,"Continent":"K54","ID":24483,"Name":"Carsultyal.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24483","ServerKey":"pl181","X":485,"Y":555},{"Bonus":0,"Continent":"K56","ID":24484,"Name":"jaaa","PlayerID":698635863,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24484","ServerKey":"pl181","X":641,"Y":571},{"Bonus":0,"Continent":"K56","ID":24485,"Name":"B.051","PlayerID":9188016,"Points":6040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24485","ServerKey":"pl181","X":657,"Y":506},{"Bonus":0,"Continent":"K43","ID":24486,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24486","ServerKey":"pl181","X":350,"Y":472},{"Bonus":0,"Continent":"K65","ID":24487,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24487","ServerKey":"pl181","X":527,"Y":654},{"Bonus":0,"Continent":"K66","ID":24488,"Name":"Ambroambro","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24488","ServerKey":"pl181","X":614,"Y":603},{"Bonus":0,"Continent":"K64","ID":24489,"Name":"Ulu-mulu","PlayerID":699697558,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24489","ServerKey":"pl181","X":412,"Y":622},{"Bonus":0,"Continent":"K64","ID":24490,"Name":"017.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24490","ServerKey":"pl181","X":401,"Y":623},{"Bonus":0,"Continent":"K34","ID":24491,"Name":"North Barba 001","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24491","ServerKey":"pl181","X":421,"Y":365},{"Bonus":0,"Continent":"K34","ID":24492,"Name":"088...bar","PlayerID":6920960,"Points":10459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24492","ServerKey":"pl181","X":453,"Y":351},{"Bonus":0,"Continent":"K34","ID":24493,"Name":"Wioska barbarzyƄska","PlayerID":699244334,"Points":2929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24493","ServerKey":"pl181","X":491,"Y":347},{"Bonus":0,"Continent":"K53","ID":24494,"Name":"Avanti!","PlayerID":698625834,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24494","ServerKey":"pl181","X":349,"Y":506},{"Bonus":0,"Continent":"K35","ID":24495,"Name":"Taki Pan","PlayerID":698739350,"Points":7282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24495","ServerKey":"pl181","X":507,"Y":344},{"Bonus":0,"Continent":"K56","ID":24496,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24496","ServerKey":"pl181","X":627,"Y":584},{"Bonus":0,"Continent":"K64","ID":24497,"Name":"ave why!","PlayerID":698143931,"Points":7096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24497","ServerKey":"pl181","X":436,"Y":636},{"Bonus":0,"Continent":"K35","ID":24498,"Name":"Lord Lord Franek .#023","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24498","ServerKey":"pl181","X":526,"Y":347},{"Bonus":0,"Continent":"K66","ID":24499,"Name":"~~055~~","PlayerID":7829201,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24499","ServerKey":"pl181","X":605,"Y":614},{"Bonus":0,"Continent":"K34","ID":24500,"Name":"0057","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24500","ServerKey":"pl181","X":420,"Y":372},{"Bonus":0,"Continent":"K53","ID":24501,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24501","ServerKey":"pl181","X":357,"Y":567},{"Bonus":0,"Continent":"K46","ID":24502,"Name":"BUNKIER 001","PlayerID":7588382,"Points":11215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24502","ServerKey":"pl181","X":635,"Y":428},{"Bonus":0,"Continent":"K36","ID":24503,"Name":"Wioska barbarzyƄska","PlayerID":698241117,"Points":3706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24503","ServerKey":"pl181","X":614,"Y":394},{"Bonus":0,"Continent":"K35","ID":24504,"Name":"A004","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24504","ServerKey":"pl181","X":586,"Y":373},{"Bonus":0,"Continent":"K64","ID":24505,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":5133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24505","ServerKey":"pl181","X":424,"Y":634},{"Bonus":0,"Continent":"K66","ID":24506,"Name":"Magik69 2","PlayerID":699778867,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24506","ServerKey":"pl181","X":609,"Y":605},{"Bonus":0,"Continent":"K65","ID":24507,"Name":"kathare","PlayerID":873575,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24507","ServerKey":"pl181","X":549,"Y":644},{"Bonus":0,"Continent":"K46","ID":24508,"Name":"079 barbarzyƄska","PlayerID":9238175,"Points":8162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24508","ServerKey":"pl181","X":640,"Y":428},{"Bonus":0,"Continent":"K43","ID":24509,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24509","ServerKey":"pl181","X":348,"Y":483},{"Bonus":0,"Continent":"K64","ID":24510,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24510","ServerKey":"pl181","X":448,"Y":643},{"Bonus":0,"Continent":"K66","ID":24511,"Name":"Ć»UBRAWKA A002","PlayerID":33900,"Points":10272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24511","ServerKey":"pl181","X":603,"Y":615},{"Bonus":0,"Continent":"K65","ID":24512,"Name":"- 230 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24512","ServerKey":"pl181","X":591,"Y":621},{"Bonus":0,"Continent":"K36","ID":24513,"Name":"Owp Konfederacja","PlayerID":848915730,"Points":7101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24513","ServerKey":"pl181","X":601,"Y":382},{"Bonus":0,"Continent":"K43","ID":24514,"Name":"8AA","PlayerID":7765098,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24514","ServerKey":"pl181","X":358,"Y":437},{"Bonus":0,"Continent":"K56","ID":24515,"Name":"B.052","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24515","ServerKey":"pl181","X":654,"Y":517},{"Bonus":0,"Continent":"K43","ID":24516,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24516","ServerKey":"pl181","X":370,"Y":416},{"Bonus":0,"Continent":"K53","ID":24517,"Name":"12. Wioska 12","PlayerID":849091769,"Points":7035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24517","ServerKey":"pl181","X":362,"Y":564},{"Bonus":0,"Continent":"K65","ID":24518,"Name":"kathare","PlayerID":873575,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24518","ServerKey":"pl181","X":554,"Y":645},{"Bonus":0,"Continent":"K65","ID":24519,"Name":"Mehehehe","PlayerID":699494488,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24519","ServerKey":"pl181","X":518,"Y":651},{"Bonus":0,"Continent":"K35","ID":24520,"Name":"CSA","PlayerID":7651093,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24520","ServerKey":"pl181","X":512,"Y":347},{"Bonus":0,"Continent":"K35","ID":24521,"Name":"003","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24521","ServerKey":"pl181","X":524,"Y":345},{"Bonus":0,"Continent":"K53","ID":24522,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24522","ServerKey":"pl181","X":346,"Y":502},{"Bonus":0,"Continent":"K65","ID":24524,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24524","ServerKey":"pl181","X":515,"Y":650},{"Bonus":9,"Continent":"K53","ID":24525,"Name":"x002","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24525","ServerKey":"pl181","X":362,"Y":572},{"Bonus":0,"Continent":"K56","ID":24526,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24526","ServerKey":"pl181","X":641,"Y":553},{"Bonus":0,"Continent":"K34","ID":24527,"Name":"022","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24527","ServerKey":"pl181","X":490,"Y":349},{"Bonus":0,"Continent":"K64","ID":24528,"Name":"Macarnia","PlayerID":849089459,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24528","ServerKey":"pl181","X":432,"Y":634},{"Bonus":0,"Continent":"K34","ID":24529,"Name":"Wiocha 5","PlayerID":849096544,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24529","ServerKey":"pl181","X":427,"Y":360},{"Bonus":0,"Continent":"K64","ID":24530,"Name":"STOP ZWIAD - GET OFF","PlayerID":698585370,"Points":6100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24530","ServerKey":"pl181","X":496,"Y":658},{"Bonus":0,"Continent":"K53","ID":24531,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24531","ServerKey":"pl181","X":345,"Y":503},{"Bonus":0,"Continent":"K54","ID":24532,"Name":"Yogi","PlayerID":2808172,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24532","ServerKey":"pl181","X":491,"Y":530},{"Bonus":0,"Continent":"K43","ID":24533,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":8771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24533","ServerKey":"pl181","X":352,"Y":456},{"Bonus":0,"Continent":"K53","ID":24534,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24534","ServerKey":"pl181","X":348,"Y":522},{"Bonus":0,"Continent":"K64","ID":24535,"Name":"047.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24535","ServerKey":"pl181","X":481,"Y":655},{"Bonus":0,"Continent":"K65","ID":24536,"Name":"0143","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24536","ServerKey":"pl181","X":530,"Y":651},{"Bonus":0,"Continent":"K34","ID":24537,"Name":"070...barbarka centr","PlayerID":6920960,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24537","ServerKey":"pl181","X":457,"Y":351},{"Bonus":0,"Continent":"K35","ID":24538,"Name":"Lord Lord Franek .#047","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24538","ServerKey":"pl181","X":534,"Y":352},{"Bonus":0,"Continent":"K63","ID":24539,"Name":"Pobozowisko","PlayerID":699513260,"Points":7358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24539","ServerKey":"pl181","X":384,"Y":602},{"Bonus":0,"Continent":"K56","ID":24540,"Name":"053 Sligo","PlayerID":699272880,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24540","ServerKey":"pl181","X":625,"Y":587},{"Bonus":0,"Continent":"K46","ID":24541,"Name":"013.","PlayerID":849094609,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24541","ServerKey":"pl181","X":647,"Y":468},{"Bonus":0,"Continent":"K46","ID":24542,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24542","ServerKey":"pl181","X":648,"Y":452},{"Bonus":0,"Continent":"K43","ID":24543,"Name":"002. Dla flag","PlayerID":698630507,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24543","ServerKey":"pl181","X":354,"Y":438},{"Bonus":0,"Continent":"K53","ID":24544,"Name":"Dąbrowa 0016","PlayerID":849096972,"Points":8140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24544","ServerKey":"pl181","X":377,"Y":590},{"Bonus":0,"Continent":"K56","ID":24545,"Name":"PZ038","PlayerID":8096537,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24545","ServerKey":"pl181","X":656,"Y":522},{"Bonus":0,"Continent":"K34","ID":24546,"Name":"Wioska barbarzyƄska 023","PlayerID":6343784,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24546","ServerKey":"pl181","X":499,"Y":348},{"Bonus":0,"Continent":"K63","ID":24547,"Name":"020Ferdek","PlayerID":698620694,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24547","ServerKey":"pl181","X":390,"Y":611},{"Bonus":0,"Continent":"K56","ID":24548,"Name":"Jaaa","PlayerID":698635863,"Points":10261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24548","ServerKey":"pl181","X":628,"Y":588},{"Bonus":0,"Continent":"K34","ID":24549,"Name":"Wioska barbarzyƄska","PlayerID":699244334,"Points":2715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24549","ServerKey":"pl181","X":497,"Y":345},{"Bonus":0,"Continent":"K56","ID":24550,"Name":"072","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24550","ServerKey":"pl181","X":646,"Y":539},{"Bonus":0,"Continent":"K53","ID":24551,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24551","ServerKey":"pl181","X":348,"Y":532},{"Bonus":0,"Continent":"K36","ID":24552,"Name":"Oww Konfederacja +","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24552","ServerKey":"pl181","X":607,"Y":390},{"Bonus":0,"Continent":"K64","ID":24553,"Name":"014.","PlayerID":849034882,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24553","ServerKey":"pl181","X":488,"Y":653},{"Bonus":0,"Continent":"K43","ID":24554,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":9474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24554","ServerKey":"pl181","X":354,"Y":455},{"Bonus":0,"Continent":"K35","ID":24555,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24555","ServerKey":"pl181","X":569,"Y":360},{"Bonus":0,"Continent":"K56","ID":24556,"Name":"002","PlayerID":8428196,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24556","ServerKey":"pl181","X":615,"Y":545},{"Bonus":0,"Continent":"K65","ID":24557,"Name":"037","PlayerID":8954402,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24557","ServerKey":"pl181","X":502,"Y":652},{"Bonus":0,"Continent":"K34","ID":24558,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24558","ServerKey":"pl181","X":434,"Y":357},{"Bonus":0,"Continent":"K66","ID":24559,"Name":"majonespzn","PlayerID":6417987,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24559","ServerKey":"pl181","X":606,"Y":611},{"Bonus":4,"Continent":"K43","ID":24560,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24560","ServerKey":"pl181","X":346,"Y":479},{"Bonus":0,"Continent":"K46","ID":24561,"Name":"#.10 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24561","ServerKey":"pl181","X":650,"Y":473},{"Bonus":0,"Continent":"K43","ID":24562,"Name":"Kanada","PlayerID":1746216,"Points":2743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24562","ServerKey":"pl181","X":372,"Y":421},{"Bonus":0,"Continent":"K46","ID":24563,"Name":"062 xyz","PlayerID":9238175,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24563","ServerKey":"pl181","X":638,"Y":431},{"Bonus":0,"Continent":"K33","ID":24564,"Name":"017","PlayerID":849059457,"Points":2314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24564","ServerKey":"pl181","X":379,"Y":399},{"Bonus":0,"Continent":"K65","ID":24565,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24565","ServerKey":"pl181","X":521,"Y":656},{"Bonus":0,"Continent":"K65","ID":24566,"Name":"kathare","PlayerID":873575,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24566","ServerKey":"pl181","X":553,"Y":642},{"Bonus":0,"Continent":"K34","ID":24567,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24567","ServerKey":"pl181","X":434,"Y":358},{"Bonus":0,"Continent":"K53","ID":24568,"Name":"C002..","PlayerID":849090130,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24568","ServerKey":"pl181","X":368,"Y":582},{"Bonus":0,"Continent":"K53","ID":24569,"Name":"K06","PlayerID":849090130,"Points":2375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24569","ServerKey":"pl181","X":369,"Y":579},{"Bonus":0,"Continent":"K64","ID":24570,"Name":"ave why!","PlayerID":698143931,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24570","ServerKey":"pl181","X":448,"Y":642},{"Bonus":0,"Continent":"K65","ID":24571,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24571","ServerKey":"pl181","X":599,"Y":615},{"Bonus":0,"Continent":"K56","ID":24572,"Name":"033","PlayerID":849095227,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24572","ServerKey":"pl181","X":641,"Y":561},{"Bonus":0,"Continent":"K46","ID":24573,"Name":"010 Wiatr","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24573","ServerKey":"pl181","X":656,"Y":484},{"Bonus":0,"Continent":"K64","ID":24574,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24574","ServerKey":"pl181","X":441,"Y":641},{"Bonus":0,"Continent":"K64","ID":24575,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24575","ServerKey":"pl181","X":420,"Y":628},{"Bonus":0,"Continent":"K53","ID":24576,"Name":"Dajanka 17","PlayerID":849012843,"Points":5036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24576","ServerKey":"pl181","X":357,"Y":551},{"Bonus":0,"Continent":"K46","ID":24577,"Name":"#.14 Wioska barbarzyƄska","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24577","ServerKey":"pl181","X":656,"Y":481},{"Bonus":0,"Continent":"K56","ID":24578,"Name":"Wioska Kaffiks XIII","PlayerID":6136757,"Points":5970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24578","ServerKey":"pl181","X":631,"Y":585},{"Bonus":0,"Continent":"K34","ID":24579,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":4688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24579","ServerKey":"pl181","X":475,"Y":345},{"Bonus":0,"Continent":"K35","ID":24580,"Name":"C003","PlayerID":699208929,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24580","ServerKey":"pl181","X":520,"Y":351},{"Bonus":0,"Continent":"K46","ID":24581,"Name":"003 Krotu","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24581","ServerKey":"pl181","X":656,"Y":490},{"Bonus":0,"Continent":"K65","ID":24582,"Name":"15. Ɓo Cię Krynca","PlayerID":849092769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24582","ServerKey":"pl181","X":512,"Y":654},{"Bonus":0,"Continent":"K56","ID":24583,"Name":"043","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24583","ServerKey":"pl181","X":648,"Y":551},{"Bonus":0,"Continent":"K34","ID":24584,"Name":"016","PlayerID":698739350,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24584","ServerKey":"pl181","X":486,"Y":347},{"Bonus":0,"Continent":"K46","ID":24585,"Name":"A006","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24585","ServerKey":"pl181","X":613,"Y":457},{"Bonus":9,"Continent":"K56","ID":24586,"Name":"014 M","PlayerID":699351301,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24586","ServerKey":"pl181","X":654,"Y":526},{"Bonus":0,"Continent":"K64","ID":24587,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24587","ServerKey":"pl181","X":438,"Y":642},{"Bonus":0,"Continent":"K34","ID":24588,"Name":"K34 x001","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24588","ServerKey":"pl181","X":446,"Y":383},{"Bonus":0,"Continent":"K53","ID":24589,"Name":"Chekku - meito","PlayerID":9280477,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24589","ServerKey":"pl181","X":345,"Y":527},{"Bonus":0,"Continent":"K34","ID":24590,"Name":"North 1","PlayerID":699796330,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24590","ServerKey":"pl181","X":420,"Y":365},{"Bonus":0,"Continent":"K65","ID":24591,"Name":"0274","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24591","ServerKey":"pl181","X":544,"Y":650},{"Bonus":0,"Continent":"K56","ID":24592,"Name":"027","PlayerID":849006412,"Points":6520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24592","ServerKey":"pl181","X":652,"Y":505},{"Bonus":0,"Continent":"K56","ID":24593,"Name":"Nowa 28","PlayerID":698702991,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24593","ServerKey":"pl181","X":639,"Y":568},{"Bonus":0,"Continent":"K43","ID":24595,"Name":"001. Dla Flag","PlayerID":698630507,"Points":10027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24595","ServerKey":"pl181","X":354,"Y":439},{"Bonus":0,"Continent":"K33","ID":24596,"Name":"c Strzelce Opolskie","PlayerID":3909522,"Points":8360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24596","ServerKey":"pl181","X":395,"Y":386},{"Bonus":0,"Continent":"K34","ID":24597,"Name":"aaaaaaaaa","PlayerID":699191464,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24597","ServerKey":"pl181","X":451,"Y":357},{"Bonus":0,"Continent":"K46","ID":24598,"Name":"048- Mroczna Osada","PlayerID":849035905,"Points":3670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24598","ServerKey":"pl181","X":628,"Y":410},{"Bonus":0,"Continent":"K43","ID":24599,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24599","ServerKey":"pl181","X":354,"Y":453},{"Bonus":0,"Continent":"K43","ID":24600,"Name":"A0198","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24600","ServerKey":"pl181","X":342,"Y":490},{"Bonus":0,"Continent":"K65","ID":24601,"Name":"Sony 911","PlayerID":1415009,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24601","ServerKey":"pl181","X":586,"Y":630},{"Bonus":0,"Continent":"K43","ID":24602,"Name":"[05] Huelva","PlayerID":6258092,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24602","ServerKey":"pl181","X":354,"Y":457},{"Bonus":0,"Continent":"K56","ID":24603,"Name":"jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24603","ServerKey":"pl181","X":634,"Y":570},{"Bonus":0,"Continent":"K44","ID":24604,"Name":"[0022] Rafalek","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24604","ServerKey":"pl181","X":426,"Y":409},{"Bonus":3,"Continent":"K64","ID":24605,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24605","ServerKey":"pl181","X":436,"Y":639},{"Bonus":0,"Continent":"K53","ID":24606,"Name":"Dajanka 15","PlayerID":849012843,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24606","ServerKey":"pl181","X":351,"Y":553},{"Bonus":0,"Continent":"K43","ID":24607,"Name":"A0072","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24607","ServerKey":"pl181","X":347,"Y":486},{"Bonus":0,"Continent":"K35","ID":24608,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24608","ServerKey":"pl181","X":532,"Y":353},{"Bonus":0,"Continent":"K64","ID":24609,"Name":"03. Reina R","PlayerID":849100262,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24609","ServerKey":"pl181","X":482,"Y":656},{"Bonus":0,"Continent":"K65","ID":24610,"Name":"kathare","PlayerID":873575,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24610","ServerKey":"pl181","X":547,"Y":642},{"Bonus":0,"Continent":"K33","ID":24611,"Name":"c Patole","PlayerID":3909522,"Points":8301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24611","ServerKey":"pl181","X":397,"Y":384},{"Bonus":0,"Continent":"K35","ID":24612,"Name":"I#009","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24612","ServerKey":"pl181","X":599,"Y":383},{"Bonus":0,"Continent":"K56","ID":24613,"Name":"068","PlayerID":699351301,"Points":9410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24613","ServerKey":"pl181","X":655,"Y":523},{"Bonus":0,"Continent":"K56","ID":24614,"Name":"810","PlayerID":7038651,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24614","ServerKey":"pl181","X":651,"Y":542},{"Bonus":0,"Continent":"K53","ID":24615,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24615","ServerKey":"pl181","X":347,"Y":524},{"Bonus":0,"Continent":"K65","ID":24616,"Name":"Wioska barbarzyƄska","PlayerID":699796630,"Points":2424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24616","ServerKey":"pl181","X":598,"Y":616},{"Bonus":0,"Continent":"K64","ID":24617,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24617","ServerKey":"pl181","X":459,"Y":651},{"Bonus":0,"Continent":"K46","ID":24618,"Name":"W 08","PlayerID":699524891,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24618","ServerKey":"pl181","X":647,"Y":458},{"Bonus":0,"Continent":"K46","ID":24619,"Name":"024 - Terrassa","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24619","ServerKey":"pl181","X":644,"Y":440},{"Bonus":0,"Continent":"K46","ID":24620,"Name":"Twierdza 8","PlayerID":848935020,"Points":5243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24620","ServerKey":"pl181","X":653,"Y":464},{"Bonus":0,"Continent":"K65","ID":24621,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24621","ServerKey":"pl181","X":511,"Y":656},{"Bonus":0,"Continent":"K64","ID":24622,"Name":"A005","PlayerID":848912772,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24622","ServerKey":"pl181","X":404,"Y":626},{"Bonus":0,"Continent":"K64","ID":24623,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":8393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24623","ServerKey":"pl181","X":429,"Y":639},{"Bonus":0,"Continent":"K35","ID":24624,"Name":"Lord Lord Franek .#217","PlayerID":698420691,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24624","ServerKey":"pl181","X":508,"Y":347},{"Bonus":0,"Continent":"K64","ID":24625,"Name":"017.","PlayerID":849034882,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24625","ServerKey":"pl181","X":486,"Y":653},{"Bonus":0,"Continent":"K46","ID":24626,"Name":"W 03","PlayerID":699524891,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24626","ServerKey":"pl181","X":646,"Y":455},{"Bonus":0,"Continent":"K53","ID":24627,"Name":"Parking","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24627","ServerKey":"pl181","X":372,"Y":584},{"Bonus":0,"Continent":"K46","ID":24628,"Name":"0061","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24628","ServerKey":"pl181","X":626,"Y":410},{"Bonus":0,"Continent":"K56","ID":24629,"Name":"B.018","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24629","ServerKey":"pl181","X":657,"Y":505},{"Bonus":0,"Continent":"K56","ID":24630,"Name":"005","PlayerID":699351301,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24630","ServerKey":"pl181","X":651,"Y":526},{"Bonus":0,"Continent":"K35","ID":24631,"Name":"Lord Lord Franek .#024","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24631","ServerKey":"pl181","X":524,"Y":347},{"Bonus":0,"Continent":"K56","ID":24632,"Name":"054 Gwalijar","PlayerID":699272880,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24632","ServerKey":"pl181","X":623,"Y":588},{"Bonus":0,"Continent":"K66","ID":24633,"Name":"historia blisko 2","PlayerID":699778867,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24633","ServerKey":"pl181","X":616,"Y":601},{"Bonus":0,"Continent":"K53","ID":24635,"Name":"Pobozowisko","PlayerID":699513260,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24635","ServerKey":"pl181","X":384,"Y":599},{"Bonus":0,"Continent":"K56","ID":24636,"Name":"Jaaa","PlayerID":698635863,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24636","ServerKey":"pl181","X":625,"Y":595},{"Bonus":0,"Continent":"K35","ID":24637,"Name":"A001","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24637","ServerKey":"pl181","X":588,"Y":373},{"Bonus":0,"Continent":"K33","ID":24638,"Name":"2.3","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24638","ServerKey":"pl181","X":391,"Y":390},{"Bonus":0,"Continent":"K34","ID":24639,"Name":"cc 089d","PlayerID":3909522,"Points":4118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24639","ServerKey":"pl181","X":411,"Y":375},{"Bonus":0,"Continent":"K63","ID":24640,"Name":"Pobozowisko","PlayerID":699513260,"Points":5331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24640","ServerKey":"pl181","X":384,"Y":606},{"Bonus":0,"Continent":"K35","ID":24641,"Name":"C006","PlayerID":699761749,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24641","ServerKey":"pl181","X":599,"Y":384},{"Bonus":0,"Continent":"K46","ID":24642,"Name":"004 MONETKI","PlayerID":7588382,"Points":8968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24642","ServerKey":"pl181","X":657,"Y":487},{"Bonus":0,"Continent":"K43","ID":24643,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24643","ServerKey":"pl181","X":348,"Y":472},{"Bonus":0,"Continent":"K35","ID":24644,"Name":".:107:. Niangmen","PlayerID":848934935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24644","ServerKey":"pl181","X":505,"Y":396},{"Bonus":0,"Continent":"K34","ID":24646,"Name":"aaaaaaaaa","PlayerID":699191464,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24646","ServerKey":"pl181","X":450,"Y":354},{"Bonus":0,"Continent":"K43","ID":24647,"Name":"Bagienko.Anker..","PlayerID":699713515,"Points":8620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24647","ServerKey":"pl181","X":380,"Y":403},{"Bonus":0,"Continent":"K46","ID":24648,"Name":"Jan dzik V K","PlayerID":879782,"Points":9631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24648","ServerKey":"pl181","X":636,"Y":432},{"Bonus":9,"Continent":"K63","ID":24649,"Name":"000","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24649","ServerKey":"pl181","X":390,"Y":610},{"Bonus":0,"Continent":"K65","ID":24650,"Name":"#0049","PlayerID":1536231,"Points":8724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24650","ServerKey":"pl181","X":551,"Y":646},{"Bonus":0,"Continent":"K65","ID":24651,"Name":"0544","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24651","ServerKey":"pl181","X":517,"Y":659},{"Bonus":0,"Continent":"K33","ID":24652,"Name":"Oksywie","PlayerID":8419570,"Points":8860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24652","ServerKey":"pl181","X":390,"Y":389},{"Bonus":0,"Continent":"K56","ID":24653,"Name":"008","PlayerID":699351301,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24653","ServerKey":"pl181","X":654,"Y":530},{"Bonus":0,"Continent":"K65","ID":24654,"Name":"015","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24654","ServerKey":"pl181","X":565,"Y":636},{"Bonus":0,"Continent":"K53","ID":24655,"Name":"007.Oko","PlayerID":1830149,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24655","ServerKey":"pl181","X":344,"Y":511},{"Bonus":0,"Continent":"K35","ID":24656,"Name":"068 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24656","ServerKey":"pl181","X":541,"Y":349},{"Bonus":3,"Continent":"K34","ID":24657,"Name":"0003","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24657","ServerKey":"pl181","X":418,"Y":365},{"Bonus":0,"Continent":"K33","ID":24658,"Name":"K33 x001","PlayerID":698364331,"Points":4423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24658","ServerKey":"pl181","X":396,"Y":387},{"Bonus":0,"Continent":"K65","ID":24659,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24659","ServerKey":"pl181","X":525,"Y":654},{"Bonus":0,"Continent":"K65","ID":24660,"Name":"S_009","PlayerID":849100262,"Points":11421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24660","ServerKey":"pl181","X":509,"Y":652},{"Bonus":0,"Continent":"K35","ID":24661,"Name":"Taki Pan","PlayerID":698739350,"Points":8061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24661","ServerKey":"pl181","X":511,"Y":343},{"Bonus":0,"Continent":"K56","ID":24662,"Name":"Nowa 26","PlayerID":698702991,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24662","ServerKey":"pl181","X":641,"Y":570},{"Bonus":0,"Continent":"K46","ID":24663,"Name":"093. PóƂnocna Granica","PlayerID":8337151,"Points":7721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24663","ServerKey":"pl181","X":636,"Y":419},{"Bonus":0,"Continent":"K64","ID":24664,"Name":"039|| Ophiuchus","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24664","ServerKey":"pl181","X":480,"Y":651},{"Bonus":0,"Continent":"K53","ID":24665,"Name":"Wioska Atillaa","PlayerID":2819255,"Points":4043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24665","ServerKey":"pl181","X":350,"Y":539},{"Bonus":0,"Continent":"K53","ID":24666,"Name":"off 100 %","PlayerID":849012521,"Points":5535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24666","ServerKey":"pl181","X":361,"Y":572},{"Bonus":0,"Continent":"K35","ID":24667,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24667","ServerKey":"pl181","X":568,"Y":358},{"Bonus":0,"Continent":"K46","ID":24668,"Name":"077 cybil","PlayerID":9238175,"Points":10355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24668","ServerKey":"pl181","X":641,"Y":428},{"Bonus":0,"Continent":"K35","ID":24669,"Name":"I#033","PlayerID":2065730,"Points":7342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24669","ServerKey":"pl181","X":596,"Y":377},{"Bonus":0,"Continent":"K46","ID":24671,"Name":"022 - Oviedo","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24671","ServerKey":"pl181","X":641,"Y":441},{"Bonus":0,"Continent":"K34","ID":24672,"Name":"K34 - [131] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24672","ServerKey":"pl181","X":433,"Y":357},{"Bonus":0,"Continent":"K64","ID":24673,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24673","ServerKey":"pl181","X":425,"Y":638},{"Bonus":0,"Continent":"K56","ID":24674,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24674","ServerKey":"pl181","X":632,"Y":582},{"Bonus":0,"Continent":"K43","ID":24675,"Name":"002","PlayerID":848945529,"Points":6978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24675","ServerKey":"pl181","X":379,"Y":407},{"Bonus":0,"Continent":"K65","ID":24676,"Name":"0141","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24676","ServerKey":"pl181","X":579,"Y":631},{"Bonus":0,"Continent":"K64","ID":24677,"Name":"005 Szczęƛciarz","PlayerID":849006145,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24677","ServerKey":"pl181","X":432,"Y":641},{"Bonus":0,"Continent":"K64","ID":24678,"Name":"002.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24678","ServerKey":"pl181","X":400,"Y":622},{"Bonus":0,"Continent":"K43","ID":24679,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24679","ServerKey":"pl181","X":355,"Y":454},{"Bonus":0,"Continent":"K56","ID":24680,"Name":"012","PlayerID":699351301,"Points":9100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24680","ServerKey":"pl181","X":653,"Y":531},{"Bonus":0,"Continent":"K46","ID":24681,"Name":"BACÓWKA |004|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24681","ServerKey":"pl181","X":629,"Y":415},{"Bonus":0,"Continent":"K46","ID":24682,"Name":"Jehu_Kingdom_50","PlayerID":8785314,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24682","ServerKey":"pl181","X":642,"Y":436},{"Bonus":0,"Continent":"K43","ID":24683,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24683","ServerKey":"pl181","X":347,"Y":473},{"Bonus":0,"Continent":"K33","ID":24684,"Name":"Wioska barbarzyƄska Lo","PlayerID":8967440,"Points":3515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24684","ServerKey":"pl181","X":381,"Y":399},{"Bonus":0,"Continent":"K53","ID":24685,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24685","ServerKey":"pl181","X":347,"Y":517},{"Bonus":0,"Continent":"K53","ID":24686,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24686","ServerKey":"pl181","X":349,"Y":540},{"Bonus":0,"Continent":"K53","ID":24687,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24687","ServerKey":"pl181","X":360,"Y":545},{"Bonus":0,"Continent":"K64","ID":24688,"Name":"005.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24688","ServerKey":"pl181","X":483,"Y":652},{"Bonus":0,"Continent":"K46","ID":24689,"Name":"021 - Mroczna Osada","PlayerID":849035905,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24689","ServerKey":"pl181","X":633,"Y":411},{"Bonus":0,"Continent":"K35","ID":24691,"Name":"136 DaSilva2402","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24691","ServerKey":"pl181","X":520,"Y":349},{"Bonus":0,"Continent":"K53","ID":24692,"Name":".///...//././././././././","PlayerID":849097937,"Points":8147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24692","ServerKey":"pl181","X":383,"Y":598},{"Bonus":0,"Continent":"K56","ID":24693,"Name":"M004","PlayerID":848899726,"Points":6080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24693","ServerKey":"pl181","X":654,"Y":507},{"Bonus":0,"Continent":"K34","ID":24694,"Name":"North Barba 021","PlayerID":699796330,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24694","ServerKey":"pl181","X":424,"Y":368},{"Bonus":0,"Continent":"K45","ID":24695,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24695","ServerKey":"pl181","X":513,"Y":472},{"Bonus":0,"Continent":"K64","ID":24696,"Name":"Alicization 4","PlayerID":699849210,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24696","ServerKey":"pl181","X":460,"Y":647},{"Bonus":0,"Continent":"K43","ID":24697,"Name":"s181eo15","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24697","ServerKey":"pl181","X":389,"Y":449},{"Bonus":0,"Continent":"K43","ID":24698,"Name":"DW7","PlayerID":393668,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24698","ServerKey":"pl181","X":348,"Y":448},{"Bonus":0,"Continent":"K46","ID":24699,"Name":"*4622* Stalowy potwĂłr","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24699","ServerKey":"pl181","X":644,"Y":445},{"Bonus":0,"Continent":"K46","ID":24700,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24700","ServerKey":"pl181","X":629,"Y":414},{"Bonus":0,"Continent":"K64","ID":24701,"Name":"wMirajane","PlayerID":699849210,"Points":4892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24701","ServerKey":"pl181","X":446,"Y":646},{"Bonus":0,"Continent":"K66","ID":24702,"Name":"aAa Szlaban 1","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24702","ServerKey":"pl181","X":608,"Y":608},{"Bonus":0,"Continent":"K34","ID":24703,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24703","ServerKey":"pl181","X":485,"Y":343},{"Bonus":0,"Continent":"K64","ID":24704,"Name":"KUZYN FARMACEUTA","PlayerID":848913998,"Points":7652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24704","ServerKey":"pl181","X":426,"Y":638},{"Bonus":0,"Continent":"K64","ID":24705,"Name":"015","PlayerID":698650301,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24705","ServerKey":"pl181","X":462,"Y":651},{"Bonus":0,"Continent":"K35","ID":24706,"Name":"034 033","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24706","ServerKey":"pl181","X":548,"Y":351},{"Bonus":0,"Continent":"K34","ID":24707,"Name":"0007","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24707","ServerKey":"pl181","X":418,"Y":367},{"Bonus":0,"Continent":"K46","ID":24709,"Name":"BACÓWKA |015|","PlayerID":7394371,"Points":8237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24709","ServerKey":"pl181","X":623,"Y":409},{"Bonus":6,"Continent":"K56","ID":24710,"Name":"P017 Gigas","PlayerID":8096537,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24710","ServerKey":"pl181","X":655,"Y":506},{"Bonus":0,"Continent":"K56","ID":24711,"Name":"P016 Heisneberg","PlayerID":8096537,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24711","ServerKey":"pl181","X":657,"Y":509},{"Bonus":0,"Continent":"K34","ID":24712,"Name":"Wiocha 6","PlayerID":849096544,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24712","ServerKey":"pl181","X":424,"Y":362},{"Bonus":0,"Continent":"K34","ID":24714,"Name":"Trelis","PlayerID":849048216,"Points":5192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24714","ServerKey":"pl181","X":480,"Y":345},{"Bonus":0,"Continent":"K35","ID":24715,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24715","ServerKey":"pl181","X":577,"Y":370},{"Bonus":0,"Continent":"K56","ID":24716,"Name":"[142]","PlayerID":8000875,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24716","ServerKey":"pl181","X":636,"Y":568},{"Bonus":0,"Continent":"K46","ID":24717,"Name":"BUNKIER 003","PlayerID":7588382,"Points":6684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24717","ServerKey":"pl181","X":640,"Y":433},{"Bonus":0,"Continent":"K43","ID":24718,"Name":"A0199","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24718","ServerKey":"pl181","X":343,"Y":491},{"Bonus":0,"Continent":"K64","ID":24719,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24719","ServerKey":"pl181","X":498,"Y":652},{"Bonus":0,"Continent":"K34","ID":24720,"Name":"aaaaaaa","PlayerID":699191449,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24720","ServerKey":"pl181","X":439,"Y":356},{"Bonus":0,"Continent":"K34","ID":24721,"Name":"0021","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24721","ServerKey":"pl181","X":414,"Y":371},{"Bonus":0,"Continent":"K65","ID":24722,"Name":"SSJ 066","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24722","ServerKey":"pl181","X":514,"Y":652},{"Bonus":0,"Continent":"K43","ID":24723,"Name":"Westcoast.079","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24723","ServerKey":"pl181","X":386,"Y":436},{"Bonus":0,"Continent":"K64","ID":24724,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24724","ServerKey":"pl181","X":410,"Y":630},{"Bonus":0,"Continent":"K34","ID":24725,"Name":"#0025 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24725","ServerKey":"pl181","X":467,"Y":346},{"Bonus":0,"Continent":"K64","ID":24726,"Name":"psycha sitting","PlayerID":699736927,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24726","ServerKey":"pl181","X":452,"Y":649},{"Bonus":0,"Continent":"K64","ID":24727,"Name":"|A| Ironminster","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24727","ServerKey":"pl181","X":480,"Y":653},{"Bonus":0,"Continent":"K35","ID":24728,"Name":"Taki Pan","PlayerID":698739350,"Points":7206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24728","ServerKey":"pl181","X":507,"Y":342},{"Bonus":0,"Continent":"K53","ID":24729,"Name":"#001 Altdorf","PlayerID":8607734,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24729","ServerKey":"pl181","X":375,"Y":590},{"Bonus":0,"Continent":"K56","ID":24730,"Name":"Nowa 30","PlayerID":698702991,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24730","ServerKey":"pl181","X":636,"Y":566},{"Bonus":0,"Continent":"K63","ID":24731,"Name":"Pobozowisko","PlayerID":699513260,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24731","ServerKey":"pl181","X":391,"Y":611},{"Bonus":0,"Continent":"K56","ID":24732,"Name":"065","PlayerID":698786826,"Points":7569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24732","ServerKey":"pl181","X":623,"Y":599},{"Bonus":1,"Continent":"K43","ID":24733,"Name":"MELISKA","PlayerID":699794765,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24733","ServerKey":"pl181","X":352,"Y":462},{"Bonus":0,"Continent":"K34","ID":24734,"Name":"PodziękowaƂ 6","PlayerID":699796330,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24734","ServerKey":"pl181","X":417,"Y":374},{"Bonus":0,"Continent":"K63","ID":24735,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24735","ServerKey":"pl181","X":387,"Y":608},{"Bonus":0,"Continent":"K53","ID":24736,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24736","ServerKey":"pl181","X":346,"Y":513},{"Bonus":0,"Continent":"K56","ID":24737,"Name":"052","PlayerID":698999105,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24737","ServerKey":"pl181","X":639,"Y":573},{"Bonus":0,"Continent":"K35","ID":24738,"Name":"035 036","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24738","ServerKey":"pl181","X":547,"Y":351},{"Bonus":0,"Continent":"K35","ID":24739,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24739","ServerKey":"pl181","X":559,"Y":353},{"Bonus":0,"Continent":"K56","ID":24740,"Name":"061","PlayerID":698999105,"Points":9731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24740","ServerKey":"pl181","X":629,"Y":588},{"Bonus":0,"Continent":"K36","ID":24741,"Name":"Wioska barbarzyƄska","PlayerID":699351046,"Points":3439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24741","ServerKey":"pl181","X":607,"Y":386},{"Bonus":0,"Continent":"K33","ID":24742,"Name":"008","PlayerID":849027025,"Points":7818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24742","ServerKey":"pl181","X":398,"Y":382},{"Bonus":0,"Continent":"K56","ID":24743,"Name":"P010 Banuta","PlayerID":8096537,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24743","ServerKey":"pl181","X":657,"Y":513},{"Bonus":0,"Continent":"K35","ID":24744,"Name":"Lord Lord Franek .#139","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24744","ServerKey":"pl181","X":514,"Y":349},{"Bonus":8,"Continent":"K35","ID":24745,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24745","ServerKey":"pl181","X":579,"Y":368},{"Bonus":0,"Continent":"K43","ID":24746,"Name":"A0233","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24746","ServerKey":"pl181","X":344,"Y":484},{"Bonus":0,"Continent":"K35","ID":24747,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24747","ServerKey":"pl181","X":530,"Y":350},{"Bonus":0,"Continent":"K35","ID":24748,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24748","ServerKey":"pl181","X":576,"Y":369},{"Bonus":0,"Continent":"K43","ID":24749,"Name":"026 VW GajdaDawid","PlayerID":3108144,"Points":8639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24749","ServerKey":"pl181","X":369,"Y":422},{"Bonus":0,"Continent":"K46","ID":24750,"Name":"#.33 Wioska barbarzyƄska","PlayerID":849054582,"Points":4559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24750","ServerKey":"pl181","X":657,"Y":482},{"Bonus":0,"Continent":"K56","ID":24751,"Name":"056","PlayerID":849095227,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24751","ServerKey":"pl181","X":638,"Y":574},{"Bonus":0,"Continent":"K43","ID":24753,"Name":"M181_021","PlayerID":393668,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24753","ServerKey":"pl181","X":360,"Y":427},{"Bonus":0,"Continent":"K65","ID":24754,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24754","ServerKey":"pl181","X":542,"Y":652},{"Bonus":0,"Continent":"K34","ID":24755,"Name":"015","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24755","ServerKey":"pl181","X":483,"Y":345},{"Bonus":0,"Continent":"K64","ID":24756,"Name":"017 nie ma spania na wyjazdach","PlayerID":699238479,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24756","ServerKey":"pl181","X":447,"Y":648},{"Bonus":0,"Continent":"K43","ID":24757,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24757","ServerKey":"pl181","X":346,"Y":474},{"Bonus":0,"Continent":"K43","ID":24758,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24758","ServerKey":"pl181","X":348,"Y":476},{"Bonus":0,"Continent":"K56","ID":24759,"Name":"Jaaa","PlayerID":698635863,"Points":10266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24759","ServerKey":"pl181","X":626,"Y":592},{"Bonus":0,"Continent":"K53","ID":24760,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24760","ServerKey":"pl181","X":343,"Y":505},{"Bonus":0,"Continent":"K35","ID":24761,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24761","ServerKey":"pl181","X":558,"Y":357},{"Bonus":0,"Continent":"K36","ID":24762,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24762","ServerKey":"pl181","X":611,"Y":390},{"Bonus":1,"Continent":"K43","ID":24763,"Name":"A0061","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24763","ServerKey":"pl181","X":344,"Y":492},{"Bonus":0,"Continent":"K65","ID":24764,"Name":"RTS 14","PlayerID":699567608,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24764","ServerKey":"pl181","X":586,"Y":628},{"Bonus":0,"Continent":"K65","ID":24765,"Name":"*Lipa","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24765","ServerKey":"pl181","X":575,"Y":635},{"Bonus":0,"Continent":"K56","ID":24766,"Name":"14k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24766","ServerKey":"pl181","X":637,"Y":552},{"Bonus":0,"Continent":"K46","ID":24767,"Name":"0056","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24767","ServerKey":"pl181","X":621,"Y":408},{"Bonus":0,"Continent":"K65","ID":24768,"Name":"*Lastmoon","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24768","ServerKey":"pl181","X":574,"Y":639},{"Bonus":0,"Continent":"K46","ID":24769,"Name":"050. Geneva","PlayerID":849091866,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24769","ServerKey":"pl181","X":650,"Y":466},{"Bonus":0,"Continent":"K56","ID":24770,"Name":"068","PlayerID":849095227,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24770","ServerKey":"pl181","X":646,"Y":556},{"Bonus":0,"Continent":"K35","ID":24771,"Name":"Taki Pan","PlayerID":698739350,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24771","ServerKey":"pl181","X":500,"Y":344},{"Bonus":0,"Continent":"K35","ID":24772,"Name":"Lord Lord Franek .#025","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24772","ServerKey":"pl181","X":522,"Y":347},{"Bonus":0,"Continent":"K35","ID":24773,"Name":"Lord Lord Franek .#048","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24773","ServerKey":"pl181","X":517,"Y":343},{"Bonus":0,"Continent":"K34","ID":24774,"Name":"0005","PlayerID":699402816,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24774","ServerKey":"pl181","X":404,"Y":377},{"Bonus":0,"Continent":"K65","ID":24775,"Name":"kathare","PlayerID":873575,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24775","ServerKey":"pl181","X":555,"Y":645},{"Bonus":0,"Continent":"K35","ID":24776,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24776","ServerKey":"pl181","X":570,"Y":364},{"Bonus":0,"Continent":"K66","ID":24777,"Name":"Grvvyq 121k$","PlayerID":699676005,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24777","ServerKey":"pl181","X":606,"Y":613},{"Bonus":0,"Continent":"K64","ID":24778,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":3639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24778","ServerKey":"pl181","X":412,"Y":625},{"Bonus":0,"Continent":"K34","ID":24779,"Name":"039","PlayerID":698739350,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24779","ServerKey":"pl181","X":482,"Y":349},{"Bonus":0,"Continent":"K64","ID":24780,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24780","ServerKey":"pl181","X":460,"Y":643},{"Bonus":0,"Continent":"K35","ID":24781,"Name":"I#022","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24781","ServerKey":"pl181","X":598,"Y":379},{"Bonus":0,"Continent":"K65","ID":24782,"Name":"SSJ 065","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24782","ServerKey":"pl181","X":517,"Y":654},{"Bonus":0,"Continent":"K56","ID":24784,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24784","ServerKey":"pl181","X":641,"Y":557},{"Bonus":0,"Continent":"K64","ID":24785,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":4838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24785","ServerKey":"pl181","X":415,"Y":626},{"Bonus":0,"Continent":"K53","ID":24786,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24786","ServerKey":"pl181","X":344,"Y":506},{"Bonus":0,"Continent":"K34","ID":24787,"Name":"#0011 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24787","ServerKey":"pl181","X":465,"Y":351},{"Bonus":0,"Continent":"K35","ID":24788,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24788","ServerKey":"pl181","X":568,"Y":360},{"Bonus":0,"Continent":"K64","ID":24789,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24789","ServerKey":"pl181","X":423,"Y":603},{"Bonus":0,"Continent":"K64","ID":24790,"Name":"016","PlayerID":849089459,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24790","ServerKey":"pl181","X":427,"Y":638},{"Bonus":0,"Continent":"K53","ID":24791,"Name":"off 100 %","PlayerID":849012521,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24791","ServerKey":"pl181","X":359,"Y":570},{"Bonus":0,"Continent":"K65","ID":24792,"Name":"0484","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24792","ServerKey":"pl181","X":538,"Y":651},{"Bonus":0,"Continent":"K46","ID":24793,"Name":"022 Legio I Maximiana","PlayerID":699878150,"Points":5526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24793","ServerKey":"pl181","X":652,"Y":483},{"Bonus":0,"Continent":"K64","ID":24794,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24794","ServerKey":"pl181","X":497,"Y":654},{"Bonus":0,"Continent":"K64","ID":24795,"Name":"Ave Why!","PlayerID":698585370,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24795","ServerKey":"pl181","X":465,"Y":652},{"Bonus":0,"Continent":"K66","ID":24796,"Name":"Kozaki 4","PlayerID":699778867,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24796","ServerKey":"pl181","X":615,"Y":607},{"Bonus":0,"Continent":"K46","ID":24797,"Name":"#.26 Wioska barbarzyƄska","PlayerID":849054582,"Points":5028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24797","ServerKey":"pl181","X":653,"Y":473},{"Bonus":0,"Continent":"K35","ID":24798,"Name":"009 Karta Nie Idzie","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24798","ServerKey":"pl181","X":550,"Y":350},{"Bonus":0,"Continent":"K64","ID":24799,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24799","ServerKey":"pl181","X":416,"Y":632},{"Bonus":0,"Continent":"K34","ID":24800,"Name":"K34 - [095] Before Land","PlayerID":699088769,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24800","ServerKey":"pl181","X":442,"Y":353},{"Bonus":0,"Continent":"K63","ID":24801,"Name":"Pobozowisko","PlayerID":699513260,"Points":4627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24801","ServerKey":"pl181","X":389,"Y":605},{"Bonus":0,"Continent":"K35","ID":24802,"Name":"xyz #010 TerrorMachine","PlayerID":7555180,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24802","ServerKey":"pl181","X":580,"Y":363},{"Bonus":0,"Continent":"K46","ID":24803,"Name":"002 Wioska gazela","PlayerID":699671454,"Points":8010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24803","ServerKey":"pl181","X":630,"Y":466},{"Bonus":0,"Continent":"K34","ID":24804,"Name":"K34 - [051] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24804","ServerKey":"pl181","X":444,"Y":358},{"Bonus":0,"Continent":"K35","ID":24805,"Name":"Lord Lord Franek .#003","PlayerID":698420691,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24805","ServerKey":"pl181","X":534,"Y":350},{"Bonus":0,"Continent":"K46","ID":24806,"Name":"018 MONETKI","PlayerID":7588382,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24806","ServerKey":"pl181","X":652,"Y":490},{"Bonus":0,"Continent":"K65","ID":24807,"Name":"- 246 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24807","ServerKey":"pl181","X":596,"Y":620},{"Bonus":0,"Continent":"K56","ID":24808,"Name":"RON","PlayerID":698768565,"Points":8260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24808","ServerKey":"pl181","X":652,"Y":537},{"Bonus":0,"Continent":"K44","ID":24809,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":10405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24809","ServerKey":"pl181","X":404,"Y":463},{"Bonus":0,"Continent":"K34","ID":24810,"Name":"037","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24810","ServerKey":"pl181","X":479,"Y":347},{"Bonus":0,"Continent":"K64","ID":24811,"Name":"ave why!","PlayerID":698143931,"Points":10202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24811","ServerKey":"pl181","X":451,"Y":626},{"Bonus":0,"Continent":"K34","ID":24812,"Name":"Wiocha 3","PlayerID":849096544,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24812","ServerKey":"pl181","X":426,"Y":361},{"Bonus":0,"Continent":"K65","ID":24813,"Name":"**Ahtala","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24813","ServerKey":"pl181","X":575,"Y":625},{"Bonus":0,"Continent":"K43","ID":24814,"Name":"005.Dla flag","PlayerID":698630507,"Points":8765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24814","ServerKey":"pl181","X":355,"Y":440},{"Bonus":0,"Continent":"K34","ID":24815,"Name":"Szlachcic","PlayerID":698160606,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24815","ServerKey":"pl181","X":405,"Y":374},{"Bonus":5,"Continent":"K53","ID":24816,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24816","ServerKey":"pl181","X":362,"Y":568},{"Bonus":0,"Continent":"K56","ID":24817,"Name":"jaaa","PlayerID":698635863,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24817","ServerKey":"pl181","X":642,"Y":567},{"Bonus":0,"Continent":"K34","ID":24818,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24818","ServerKey":"pl181","X":400,"Y":383},{"Bonus":0,"Continent":"K35","ID":24819,"Name":"036 035","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24819","ServerKey":"pl181","X":541,"Y":354},{"Bonus":0,"Continent":"K46","ID":24820,"Name":"036 Galust2","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24820","ServerKey":"pl181","X":654,"Y":499},{"Bonus":0,"Continent":"K64","ID":24821,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":8787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24821","ServerKey":"pl181","X":414,"Y":633},{"Bonus":0,"Continent":"K43","ID":24822,"Name":"A0067","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24822","ServerKey":"pl181","X":344,"Y":493},{"Bonus":0,"Continent":"K56","ID":24823,"Name":"060","PlayerID":698999105,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24823","ServerKey":"pl181","X":630,"Y":587},{"Bonus":0,"Continent":"K56","ID":24824,"Name":"jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24824","ServerKey":"pl181","X":634,"Y":577},{"Bonus":3,"Continent":"K35","ID":24825,"Name":"Lord Lord Franek .#009","PlayerID":698420691,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24825","ServerKey":"pl181","X":525,"Y":346},{"Bonus":0,"Continent":"K64","ID":24826,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24826","ServerKey":"pl181","X":498,"Y":655},{"Bonus":0,"Continent":"K53","ID":24827,"Name":"Brat447","PlayerID":699262350,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24827","ServerKey":"pl181","X":367,"Y":507},{"Bonus":0,"Continent":"K34","ID":24828,"Name":"018","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24828","ServerKey":"pl181","X":486,"Y":348},{"Bonus":0,"Continent":"K56","ID":24829,"Name":"800","PlayerID":7038651,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24829","ServerKey":"pl181","X":650,"Y":542},{"Bonus":0,"Continent":"K46","ID":24830,"Name":"llllllll","PlayerID":699429153,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24830","ServerKey":"pl181","X":624,"Y":403},{"Bonus":0,"Continent":"K56","ID":24831,"Name":"M006","PlayerID":848899726,"Points":5662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24831","ServerKey":"pl181","X":655,"Y":507},{"Bonus":0,"Continent":"K33","ID":24832,"Name":"014","PlayerID":849059457,"Points":3930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24832","ServerKey":"pl181","X":383,"Y":396},{"Bonus":0,"Continent":"K35","ID":24833,"Name":"Lord Lord Franek .#004","PlayerID":698420691,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24833","ServerKey":"pl181","X":535,"Y":346},{"Bonus":0,"Continent":"K34","ID":24834,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24834","ServerKey":"pl181","X":435,"Y":357},{"Bonus":0,"Continent":"K36","ID":24835,"Name":"033","PlayerID":699298370,"Points":3784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24835","ServerKey":"pl181","X":612,"Y":394},{"Bonus":0,"Continent":"K33","ID":24836,"Name":"Szatana","PlayerID":606706,"Points":8198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24836","ServerKey":"pl181","X":392,"Y":384},{"Bonus":0,"Continent":"K53","ID":24837,"Name":"0466","PlayerID":699513260,"Points":4254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24837","ServerKey":"pl181","X":379,"Y":597},{"Bonus":0,"Continent":"K34","ID":24838,"Name":"Wiocha 2","PlayerID":849096544,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24838","ServerKey":"pl181","X":427,"Y":363},{"Bonus":0,"Continent":"K64","ID":24839,"Name":"015.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24839","ServerKey":"pl181","X":486,"Y":656},{"Bonus":0,"Continent":"K53","ID":24840,"Name":"off 100 %","PlayerID":849012521,"Points":10253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24840","ServerKey":"pl181","X":355,"Y":563},{"Bonus":0,"Continent":"K46","ID":24841,"Name":"Jamapet","PlayerID":699735020,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24841","ServerKey":"pl181","X":633,"Y":425},{"Bonus":0,"Continent":"K43","ID":24842,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24842","ServerKey":"pl181","X":352,"Y":449},{"Bonus":0,"Continent":"K65","ID":24843,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24843","ServerKey":"pl181","X":522,"Y":657},{"Bonus":0,"Continent":"K46","ID":24844,"Name":"PDWB","PlayerID":9314079,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24844","ServerKey":"pl181","X":651,"Y":450},{"Bonus":0,"Continent":"K64","ID":24845,"Name":"102","PlayerID":849084985,"Points":9039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24845","ServerKey":"pl181","X":442,"Y":640},{"Bonus":0,"Continent":"K35","ID":24846,"Name":"I#038","PlayerID":2065730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24846","ServerKey":"pl181","X":594,"Y":376},{"Bonus":0,"Continent":"K53","ID":24847,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24847","ServerKey":"pl181","X":347,"Y":542},{"Bonus":0,"Continent":"K34","ID":24848,"Name":"#0012 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24848","ServerKey":"pl181","X":465,"Y":350},{"Bonus":0,"Continent":"K34","ID":24849,"Name":"Z 005","PlayerID":6384450,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24849","ServerKey":"pl181","X":487,"Y":342},{"Bonus":0,"Continent":"K35","ID":24850,"Name":"I#001","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24850","ServerKey":"pl181","X":599,"Y":380},{"Bonus":0,"Continent":"K36","ID":24851,"Name":"I#005","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24851","ServerKey":"pl181","X":600,"Y":380},{"Bonus":0,"Continent":"K35","ID":24852,"Name":"Lord Lord Franek .#049","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24852","ServerKey":"pl181","X":531,"Y":351},{"Bonus":0,"Continent":"K34","ID":24853,"Name":"Taki Pan","PlayerID":698739350,"Points":6193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24853","ServerKey":"pl181","X":499,"Y":344},{"Bonus":0,"Continent":"K64","ID":24854,"Name":"006.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24854","ServerKey":"pl181","X":401,"Y":624},{"Bonus":0,"Continent":"K33","ID":24855,"Name":"c Wioska pp","PlayerID":3909522,"Points":6445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24855","ServerKey":"pl181","X":399,"Y":383},{"Bonus":0,"Continent":"K43","ID":24856,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24856","ServerKey":"pl181","X":345,"Y":480},{"Bonus":8,"Continent":"K35","ID":24857,"Name":"xxOsada koczownikĂłw","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24857","ServerKey":"pl181","X":530,"Y":351},{"Bonus":0,"Continent":"K65","ID":24858,"Name":"- 223 - RR","PlayerID":849018239,"Points":8434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24858","ServerKey":"pl181","X":592,"Y":622},{"Bonus":0,"Continent":"K46","ID":24859,"Name":"41. KaruTown","PlayerID":699298370,"Points":7847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24859","ServerKey":"pl181","X":616,"Y":400},{"Bonus":0,"Continent":"K43","ID":24860,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24860","ServerKey":"pl181","X":382,"Y":403},{"Bonus":0,"Continent":"K64","ID":24861,"Name":"Hama","PlayerID":849089459,"Points":8200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24861","ServerKey":"pl181","X":432,"Y":635},{"Bonus":0,"Continent":"K35","ID":24862,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24862","ServerKey":"pl181","X":551,"Y":357},{"Bonus":2,"Continent":"K43","ID":24863,"Name":"Osada koczownikĂłw","PlayerID":848886056,"Points":5586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24863","ServerKey":"pl181","X":384,"Y":402},{"Bonus":0,"Continent":"K56","ID":24864,"Name":"PZ034","PlayerID":8096537,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24864","ServerKey":"pl181","X":658,"Y":508},{"Bonus":0,"Continent":"K64","ID":24865,"Name":"Quzynafide","PlayerID":848913998,"Points":3080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24865","ServerKey":"pl181","X":406,"Y":628},{"Bonus":0,"Continent":"K43","ID":24867,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24867","ServerKey":"pl181","X":373,"Y":412},{"Bonus":0,"Continent":"K34","ID":24868,"Name":"001...CENTR_Czeczen","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24868","ServerKey":"pl181","X":461,"Y":354},{"Bonus":0,"Continent":"K64","ID":24869,"Name":"Ave Why!","PlayerID":698585370,"Points":9493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24869","ServerKey":"pl181","X":480,"Y":657},{"Bonus":0,"Continent":"K35","ID":24870,"Name":"Dyy","PlayerID":699485250,"Points":5687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24870","ServerKey":"pl181","X":574,"Y":361},{"Bonus":0,"Continent":"K65","ID":24871,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24871","ServerKey":"pl181","X":527,"Y":651},{"Bonus":0,"Continent":"K46","ID":24872,"Name":"D 006","PlayerID":8078914,"Points":10034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24872","ServerKey":"pl181","X":651,"Y":498},{"Bonus":0,"Continent":"K56","ID":24873,"Name":"022","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24873","ServerKey":"pl181","X":641,"Y":522},{"Bonus":0,"Continent":"K43","ID":24874,"Name":"103","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24874","ServerKey":"pl181","X":350,"Y":463},{"Bonus":0,"Continent":"K33","ID":24875,"Name":"A-030","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24875","ServerKey":"pl181","X":385,"Y":398},{"Bonus":0,"Continent":"K56","ID":24876,"Name":"[162]","PlayerID":8000875,"Points":7865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24876","ServerKey":"pl181","X":637,"Y":567},{"Bonus":0,"Continent":"K46","ID":24877,"Name":"Wioska (028)","PlayerID":698232227,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24877","ServerKey":"pl181","X":634,"Y":422},{"Bonus":0,"Continent":"K43","ID":24878,"Name":"A0227","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24878","ServerKey":"pl181","X":345,"Y":495},{"Bonus":0,"Continent":"K46","ID":24879,"Name":"042. Trapezus","PlayerID":849091866,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24879","ServerKey":"pl181","X":637,"Y":431},{"Bonus":0,"Continent":"K46","ID":24880,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24880","ServerKey":"pl181","X":651,"Y":455},{"Bonus":0,"Continent":"K65","ID":24881,"Name":"Sony 911","PlayerID":1415009,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24881","ServerKey":"pl181","X":586,"Y":633},{"Bonus":0,"Continent":"K43","ID":24882,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":7805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24882","ServerKey":"pl181","X":349,"Y":452},{"Bonus":0,"Continent":"K65","ID":24883,"Name":"012","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24883","ServerKey":"pl181","X":568,"Y":639},{"Bonus":0,"Continent":"K43","ID":24884,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24884","ServerKey":"pl181","X":374,"Y":411},{"Bonus":0,"Continent":"K65","ID":24885,"Name":"sony911","PlayerID":1415009,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24885","ServerKey":"pl181","X":587,"Y":632},{"Bonus":1,"Continent":"K63","ID":24886,"Name":"005KraƄcĂłwki","PlayerID":698620694,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24886","ServerKey":"pl181","X":391,"Y":612},{"Bonus":0,"Continent":"K35","ID":24887,"Name":"Z moralami nie wygrasz","PlayerID":849096594,"Points":1562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24887","ServerKey":"pl181","X":504,"Y":341},{"Bonus":0,"Continent":"K36","ID":24888,"Name":"MotoMyszy ?","PlayerID":849094147,"Points":7754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24888","ServerKey":"pl181","X":613,"Y":398},{"Bonus":0,"Continent":"K35","ID":24889,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24889","ServerKey":"pl181","X":562,"Y":359},{"Bonus":0,"Continent":"K65","ID":24890,"Name":"#0050","PlayerID":1536231,"Points":9397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24890","ServerKey":"pl181","X":551,"Y":649},{"Bonus":0,"Continent":"K53","ID":24891,"Name":"002.AJaTamNieWiem","PlayerID":1830149,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24891","ServerKey":"pl181","X":343,"Y":510},{"Bonus":0,"Continent":"K35","ID":24892,"Name":"Happy New Year 2k23","PlayerID":7462660,"Points":8040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24892","ServerKey":"pl181","X":595,"Y":374},{"Bonus":0,"Continent":"K64","ID":24893,"Name":"004","PlayerID":848953066,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24893","ServerKey":"pl181","X":498,"Y":657},{"Bonus":0,"Continent":"K36","ID":24894,"Name":"056","PlayerID":849010255,"Points":5817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24894","ServerKey":"pl181","X":604,"Y":384},{"Bonus":4,"Continent":"K43","ID":24895,"Name":"A0056","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24895","ServerKey":"pl181","X":347,"Y":496},{"Bonus":0,"Continent":"K34","ID":24896,"Name":"050KZ","PlayerID":849063849,"Points":7448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24896","ServerKey":"pl181","X":484,"Y":339},{"Bonus":0,"Continent":"K64","ID":24897,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24897","ServerKey":"pl181","X":456,"Y":652},{"Bonus":0,"Continent":"K34","ID":24898,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24898","ServerKey":"pl181","X":431,"Y":360},{"Bonus":0,"Continent":"K46","ID":24899,"Name":"063 tete","PlayerID":9238175,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24899","ServerKey":"pl181","X":635,"Y":422},{"Bonus":0,"Continent":"K46","ID":24900,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24900","ServerKey":"pl181","X":648,"Y":461},{"Bonus":0,"Continent":"K36","ID":24901,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24901","ServerKey":"pl181","X":610,"Y":389},{"Bonus":0,"Continent":"K45","ID":24902,"Name":"Szlachcic","PlayerID":699098531,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24902","ServerKey":"pl181","X":502,"Y":476},{"Bonus":0,"Continent":"K43","ID":24903,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24903","ServerKey":"pl181","X":371,"Y":412},{"Bonus":0,"Continent":"K46","ID":24904,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24904","ServerKey":"pl181","X":628,"Y":408},{"Bonus":0,"Continent":"K64","ID":24905,"Name":"A001","PlayerID":848912772,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24905","ServerKey":"pl181","X":405,"Y":619},{"Bonus":0,"Continent":"K56","ID":24906,"Name":"020","PlayerID":6160655,"Points":9146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24906","ServerKey":"pl181","X":637,"Y":584},{"Bonus":0,"Continent":"K63","ID":24907,"Name":"Ave why !","PlayerID":698620694,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24907","ServerKey":"pl181","X":391,"Y":615},{"Bonus":0,"Continent":"K34","ID":24908,"Name":"Zakręt 6","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24908","ServerKey":"pl181","X":410,"Y":375},{"Bonus":0,"Continent":"K65","ID":24909,"Name":"Bizy 7","PlayerID":8954402,"Points":8931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24909","ServerKey":"pl181","X":500,"Y":653},{"Bonus":0,"Continent":"K56","ID":24911,"Name":"B.005","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24911","ServerKey":"pl181","X":652,"Y":509},{"Bonus":0,"Continent":"K65","ID":24912,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24912","ServerKey":"pl181","X":528,"Y":654},{"Bonus":0,"Continent":"K34","ID":24913,"Name":"K34 - [106] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24913","ServerKey":"pl181","X":450,"Y":353},{"Bonus":0,"Continent":"K64","ID":24914,"Name":"Ave Why!","PlayerID":698585370,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24914","ServerKey":"pl181","X":485,"Y":661},{"Bonus":0,"Continent":"K65","ID":24915,"Name":"0485","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24915","ServerKey":"pl181","X":541,"Y":652},{"Bonus":0,"Continent":"K43","ID":24916,"Name":"9AA","PlayerID":7765098,"Points":8665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24916","ServerKey":"pl181","X":357,"Y":439},{"Bonus":0,"Continent":"K46","ID":24917,"Name":"027 - Pamplona","PlayerID":698342159,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24917","ServerKey":"pl181","X":641,"Y":444},{"Bonus":0,"Continent":"K64","ID":24918,"Name":"051","PlayerID":849084985,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24918","ServerKey":"pl181","X":444,"Y":641},{"Bonus":0,"Continent":"K36","ID":24919,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24919","ServerKey":"pl181","X":620,"Y":396},{"Bonus":0,"Continent":"K56","ID":24920,"Name":"30k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24920","ServerKey":"pl181","X":647,"Y":561},{"Bonus":0,"Continent":"K53","ID":24921,"Name":"K01..","PlayerID":849090130,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24921","ServerKey":"pl181","X":366,"Y":579},{"Bonus":0,"Continent":"K34","ID":24922,"Name":"0059","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24922","ServerKey":"pl181","X":419,"Y":370},{"Bonus":0,"Continent":"K53","ID":24923,"Name":"004.Ciabas","PlayerID":1830149,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24923","ServerKey":"pl181","X":342,"Y":511},{"Bonus":0,"Continent":"K64","ID":24924,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":5385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24924","ServerKey":"pl181","X":454,"Y":640},{"Bonus":0,"Continent":"K64","ID":24925,"Name":"Ulu-mulu","PlayerID":699697558,"Points":8023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24925","ServerKey":"pl181","X":409,"Y":623},{"Bonus":0,"Continent":"K46","ID":24926,"Name":"014 MONETKI","PlayerID":7588382,"Points":8634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24926","ServerKey":"pl181","X":653,"Y":495},{"Bonus":0,"Continent":"K64","ID":24927,"Name":"106","PlayerID":849084985,"Points":4585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24927","ServerKey":"pl181","X":442,"Y":641},{"Bonus":0,"Continent":"K35","ID":24928,"Name":"I#023","PlayerID":2065730,"Points":8709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24928","ServerKey":"pl181","X":596,"Y":374},{"Bonus":0,"Continent":"K46","ID":24929,"Name":"B01","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24929","ServerKey":"pl181","X":648,"Y":445},{"Bonus":0,"Continent":"K56","ID":24930,"Name":"STOLYCA","PlayerID":699351301,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24930","ServerKey":"pl181","X":649,"Y":532},{"Bonus":0,"Continent":"K56","ID":24931,"Name":"610","PlayerID":7038651,"Points":8606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24931","ServerKey":"pl181","X":647,"Y":547},{"Bonus":0,"Continent":"K34","ID":24932,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":8952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24932","ServerKey":"pl181","X":494,"Y":343},{"Bonus":0,"Continent":"K65","ID":24933,"Name":"Sony 911","PlayerID":1415009,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24933","ServerKey":"pl181","X":591,"Y":627},{"Bonus":0,"Continent":"K65","ID":24934,"Name":"0243","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24934","ServerKey":"pl181","X":538,"Y":647},{"Bonus":0,"Continent":"K54","ID":24935,"Name":"Sparta_57","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24935","ServerKey":"pl181","X":488,"Y":577},{"Bonus":0,"Continent":"K33","ID":24936,"Name":"K33 x003","PlayerID":698364331,"Points":2875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24936","ServerKey":"pl181","X":390,"Y":386},{"Bonus":0,"Continent":"K46","ID":24937,"Name":"36. KaruTown","PlayerID":849060446,"Points":6960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24937","ServerKey":"pl181","X":635,"Y":416},{"Bonus":0,"Continent":"K65","ID":24938,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24938","ServerKey":"pl181","X":523,"Y":657},{"Bonus":0,"Continent":"K53","ID":24939,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24939","ServerKey":"pl181","X":357,"Y":522},{"Bonus":0,"Continent":"K66","ID":24940,"Name":"zzzGranica Bledu 09","PlayerID":699778867,"Points":9310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24940","ServerKey":"pl181","X":607,"Y":614},{"Bonus":0,"Continent":"K65","ID":24941,"Name":"- 048 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24941","ServerKey":"pl181","X":594,"Y":623},{"Bonus":0,"Continent":"K35","ID":24942,"Name":"017)","PlayerID":849097103,"Points":4799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24942","ServerKey":"pl181","X":541,"Y":346},{"Bonus":0,"Continent":"K43","ID":24943,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24943","ServerKey":"pl181","X":392,"Y":406},{"Bonus":0,"Continent":"K35","ID":24944,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24944","ServerKey":"pl181","X":567,"Y":363},{"Bonus":0,"Continent":"K36","ID":24945,"Name":"A 001","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24945","ServerKey":"pl181","X":603,"Y":393},{"Bonus":0,"Continent":"K64","ID":24946,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24946","ServerKey":"pl181","X":416,"Y":634},{"Bonus":0,"Continent":"K43","ID":24947,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24947","ServerKey":"pl181","X":344,"Y":469},{"Bonus":0,"Continent":"K64","ID":24948,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24948","ServerKey":"pl181","X":466,"Y":653},{"Bonus":0,"Continent":"K53","ID":24949,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24949","ServerKey":"pl181","X":344,"Y":509},{"Bonus":0,"Continent":"K34","ID":24950,"Name":"068...felus","PlayerID":6920960,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24950","ServerKey":"pl181","X":456,"Y":353},{"Bonus":0,"Continent":"K33","ID":24951,"Name":"2.7","PlayerID":698364331,"Points":3011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24951","ServerKey":"pl181","X":397,"Y":382},{"Bonus":0,"Continent":"K35","ID":24952,"Name":"XXXX","PlayerID":699883079,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24952","ServerKey":"pl181","X":503,"Y":364},{"Bonus":0,"Continent":"K43","ID":24953,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24953","ServerKey":"pl181","X":372,"Y":407},{"Bonus":0,"Continent":"K34","ID":24954,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24954","ServerKey":"pl181","X":432,"Y":362},{"Bonus":0,"Continent":"K63","ID":24955,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24955","ServerKey":"pl181","X":384,"Y":608},{"Bonus":2,"Continent":"K64","ID":24956,"Name":"022","PlayerID":849089459,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24956","ServerKey":"pl181","X":424,"Y":637},{"Bonus":0,"Continent":"K43","ID":24957,"Name":"Szlachcic","PlayerID":6258092,"Points":8547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24957","ServerKey":"pl181","X":347,"Y":460},{"Bonus":0,"Continent":"K65","ID":24958,"Name":"0486","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24958","ServerKey":"pl181","X":519,"Y":651},{"Bonus":0,"Continent":"K53","ID":24959,"Name":"Kumpel","PlayerID":699604515,"Points":8492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24959","ServerKey":"pl181","X":348,"Y":519},{"Bonus":0,"Continent":"K43","ID":24960,"Name":"A0242","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24960","ServerKey":"pl181","X":343,"Y":485},{"Bonus":0,"Continent":"K46","ID":24961,"Name":"BACÓWKA |014|","PlayerID":7394371,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24961","ServerKey":"pl181","X":627,"Y":407},{"Bonus":0,"Continent":"K65","ID":24962,"Name":"043","PlayerID":698659980,"Points":10015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24962","ServerKey":"pl181","X":548,"Y":647},{"Bonus":0,"Continent":"K56","ID":24963,"Name":"Nowa 35","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24963","ServerKey":"pl181","X":637,"Y":578},{"Bonus":0,"Continent":"K63","ID":24964,"Name":"Osada 001","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24964","ServerKey":"pl181","X":399,"Y":614},{"Bonus":0,"Continent":"K34","ID":24965,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24965","ServerKey":"pl181","X":436,"Y":361},{"Bonus":0,"Continent":"K34","ID":24966,"Name":"cc 092d","PlayerID":3909522,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24966","ServerKey":"pl181","X":410,"Y":376},{"Bonus":0,"Continent":"K34","ID":24967,"Name":"cc pol008","PlayerID":3909522,"Points":5693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24967","ServerKey":"pl181","X":400,"Y":376},{"Bonus":0,"Continent":"K43","ID":24968,"Name":"A0052","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24968","ServerKey":"pl181","X":347,"Y":491},{"Bonus":0,"Continent":"K63","ID":24969,"Name":".///...//././././././././","PlayerID":849097937,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24969","ServerKey":"pl181","X":382,"Y":604},{"Bonus":0,"Continent":"K35","ID":24970,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24970","ServerKey":"pl181","X":551,"Y":355},{"Bonus":0,"Continent":"K35","ID":24971,"Name":"Lord Lord Franek .#218","PlayerID":698420691,"Points":8885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24971","ServerKey":"pl181","X":501,"Y":346},{"Bonus":0,"Continent":"K65","ID":24972,"Name":"0240","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24972","ServerKey":"pl181","X":545,"Y":647},{"Bonus":0,"Continent":"K65","ID":24973,"Name":"- 231 - RR","PlayerID":849018239,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24973","ServerKey":"pl181","X":596,"Y":622},{"Bonus":0,"Continent":"K43","ID":24975,"Name":"7AA","PlayerID":7765098,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24975","ServerKey":"pl181","X":358,"Y":435},{"Bonus":0,"Continent":"K56","ID":24976,"Name":"055","PlayerID":698999105,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24976","ServerKey":"pl181","X":651,"Y":525},{"Bonus":0,"Continent":"K43","ID":24977,"Name":"A0117","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24977","ServerKey":"pl181","X":348,"Y":497},{"Bonus":0,"Continent":"K43","ID":24979,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24979","ServerKey":"pl181","X":349,"Y":476},{"Bonus":0,"Continent":"K64","ID":24980,"Name":"ave why!","PlayerID":698143931,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24980","ServerKey":"pl181","X":448,"Y":641},{"Bonus":0,"Continent":"K65","ID":24981,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24981","ServerKey":"pl181","X":582,"Y":632},{"Bonus":0,"Continent":"K35","ID":24982,"Name":"Potworna","PlayerID":570100,"Points":8106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24982","ServerKey":"pl181","X":540,"Y":350},{"Bonus":0,"Continent":"K43","ID":24983,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24983","ServerKey":"pl181","X":349,"Y":470},{"Bonus":0,"Continent":"K56","ID":24984,"Name":"037","PlayerID":699351301,"Points":4675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24984","ServerKey":"pl181","X":654,"Y":529},{"Bonus":1,"Continent":"K46","ID":24985,"Name":"Jan 010 The White Rabbit K","PlayerID":879782,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24985","ServerKey":"pl181","X":654,"Y":468},{"Bonus":0,"Continent":"K46","ID":24986,"Name":"050. Anora","PlayerID":8337151,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24986","ServerKey":"pl181","X":638,"Y":424},{"Bonus":0,"Continent":"K34","ID":24987,"Name":"Szlachcic","PlayerID":698160606,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24987","ServerKey":"pl181","X":407,"Y":374},{"Bonus":0,"Continent":"K65","ID":24988,"Name":"#0034","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24988","ServerKey":"pl181","X":551,"Y":647},{"Bonus":0,"Continent":"K53","ID":24989,"Name":"Cannabinol","PlayerID":848980237,"Points":8776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24989","ServerKey":"pl181","X":364,"Y":580},{"Bonus":0,"Continent":"K56","ID":24990,"Name":"030","PlayerID":699351301,"Points":4184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24990","ServerKey":"pl181","X":653,"Y":529},{"Bonus":0,"Continent":"K35","ID":24991,"Name":"004","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24991","ServerKey":"pl181","X":523,"Y":342},{"Bonus":0,"Continent":"K53","ID":24992,"Name":"Granica","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24992","ServerKey":"pl181","X":370,"Y":574},{"Bonus":0,"Continent":"K65","ID":24993,"Name":"?003 buRoczki LC :)","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24993","ServerKey":"pl181","X":539,"Y":654},{"Bonus":0,"Continent":"K46","ID":24994,"Name":"Jehu_Kingdom_39_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24994","ServerKey":"pl181","X":644,"Y":433},{"Bonus":0,"Continent":"K53","ID":24995,"Name":"off 100 %","PlayerID":849012521,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24995","ServerKey":"pl181","X":357,"Y":562},{"Bonus":0,"Continent":"K34","ID":24996,"Name":"SoƂtys Wsi danio007xd","PlayerID":849027025,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24996","ServerKey":"pl181","X":428,"Y":386},{"Bonus":0,"Continent":"K35","ID":24997,"Name":"Taki Pan","PlayerID":698739350,"Points":7673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24997","ServerKey":"pl181","X":503,"Y":342},{"Bonus":0,"Continent":"K43","ID":24999,"Name":"Maszlug kolonia XI","PlayerID":848977649,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=24999","ServerKey":"pl181","X":367,"Y":423},{"Bonus":0,"Continent":"K53","ID":25000,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25000","ServerKey":"pl181","X":353,"Y":549},{"Bonus":0,"Continent":"K56","ID":25001,"Name":"049","PlayerID":849095227,"Points":9295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25001","ServerKey":"pl181","X":646,"Y":554},{"Bonus":0,"Continent":"K64","ID":25002,"Name":"041 OZDR","PlayerID":699336777,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25002","ServerKey":"pl181","X":465,"Y":622},{"Bonus":0,"Continent":"K34","ID":25003,"Name":"North Barba 002","PlayerID":699796330,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25003","ServerKey":"pl181","X":420,"Y":364},{"Bonus":0,"Continent":"K46","ID":25004,"Name":"#.25 Wioska barbarzyƄska","PlayerID":849054582,"Points":6667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25004","ServerKey":"pl181","X":654,"Y":474},{"Bonus":0,"Continent":"K34","ID":25005,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25005","ServerKey":"pl181","X":439,"Y":360},{"Bonus":0,"Continent":"K46","ID":25006,"Name":"Tomall78","PlayerID":699524891,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25006","ServerKey":"pl181","X":634,"Y":425},{"Bonus":0,"Continent":"K53","ID":25007,"Name":"005.KambodĆŒa","PlayerID":1830149,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25007","ServerKey":"pl181","X":344,"Y":510},{"Bonus":0,"Continent":"K43","ID":25008,"Name":"A0234","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25008","ServerKey":"pl181","X":341,"Y":489},{"Bonus":0,"Continent":"K65","ID":25009,"Name":"- 060 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25009","ServerKey":"pl181","X":591,"Y":622},{"Bonus":0,"Continent":"K64","ID":25010,"Name":"Ave Why!","PlayerID":698585370,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25010","ServerKey":"pl181","X":473,"Y":651},{"Bonus":2,"Continent":"K64","ID":25011,"Name":"19 Angmar","PlayerID":699849210,"Points":4726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25011","ServerKey":"pl181","X":453,"Y":652},{"Bonus":0,"Continent":"K53","ID":25012,"Name":"Skazany Na Instynkt","PlayerID":8004076,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25012","ServerKey":"pl181","X":365,"Y":580},{"Bonus":4,"Continent":"K65","ID":25013,"Name":"000002","PlayerID":873575,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25013","ServerKey":"pl181","X":557,"Y":647},{"Bonus":0,"Continent":"K46","ID":25014,"Name":"Jehu_Kingdom_56","PlayerID":8785314,"Points":4261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25014","ServerKey":"pl181","X":635,"Y":479},{"Bonus":0,"Continent":"K35","ID":25015,"Name":"Lord Lord Franek .#026","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25015","ServerKey":"pl181","X":532,"Y":351},{"Bonus":0,"Continent":"K35","ID":25016,"Name":"Klaudek9","PlayerID":849092309,"Points":6361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25016","ServerKey":"pl181","X":593,"Y":374},{"Bonus":0,"Continent":"K65","ID":25017,"Name":"19. ###","PlayerID":849092769,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25017","ServerKey":"pl181","X":504,"Y":653},{"Bonus":0,"Continent":"K35","ID":25018,"Name":"A040","PlayerID":699485250,"Points":8631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25018","ServerKey":"pl181","X":591,"Y":374},{"Bonus":0,"Continent":"K43","ID":25019,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25019","ServerKey":"pl181","X":372,"Y":406},{"Bonus":0,"Continent":"K35","ID":25020,"Name":"A006","PlayerID":699485250,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25020","ServerKey":"pl181","X":584,"Y":372},{"Bonus":0,"Continent":"K64","ID":25021,"Name":"018.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25021","ServerKey":"pl181","X":487,"Y":658},{"Bonus":0,"Continent":"K46","ID":25022,"Name":"BACÓWKA |019|","PlayerID":7394371,"Points":8444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25022","ServerKey":"pl181","X":633,"Y":414},{"Bonus":0,"Continent":"K64","ID":25023,"Name":"Dzikie wsparcie","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25023","ServerKey":"pl181","X":465,"Y":648},{"Bonus":0,"Continent":"K34","ID":25024,"Name":"cc 090d","PlayerID":3909522,"Points":6188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25024","ServerKey":"pl181","X":411,"Y":376},{"Bonus":0,"Continent":"K65","ID":25025,"Name":"kathare","PlayerID":873575,"Points":8085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25025","ServerKey":"pl181","X":553,"Y":649},{"Bonus":0,"Continent":"K36","ID":25026,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25026","ServerKey":"pl181","X":619,"Y":399},{"Bonus":0,"Continent":"K65","ID":25027,"Name":"040 Knykieć Dyl","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25027","ServerKey":"pl181","X":569,"Y":637},{"Bonus":0,"Continent":"K46","ID":25028,"Name":"075 hallo","PlayerID":9238175,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25028","ServerKey":"pl181","X":639,"Y":426},{"Bonus":0,"Continent":"K45","ID":25029,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25029","ServerKey":"pl181","X":505,"Y":448},{"Bonus":0,"Continent":"K36","ID":25030,"Name":"I#006","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25030","ServerKey":"pl181","X":602,"Y":379},{"Bonus":0,"Continent":"K43","ID":25031,"Name":"Mniejsze zƂo 0003","PlayerID":699794765,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25031","ServerKey":"pl181","X":379,"Y":479},{"Bonus":0,"Continent":"K53","ID":25032,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25032","ServerKey":"pl181","X":341,"Y":502},{"Bonus":1,"Continent":"K43","ID":25033,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25033","ServerKey":"pl181","X":346,"Y":481},{"Bonus":0,"Continent":"K53","ID":25034,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25034","ServerKey":"pl181","X":363,"Y":581},{"Bonus":0,"Continent":"K35","ID":25035,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25035","ServerKey":"pl181","X":558,"Y":352},{"Bonus":0,"Continent":"K46","ID":25036,"Name":"007 Galust1","PlayerID":2135129,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25036","ServerKey":"pl181","X":654,"Y":498},{"Bonus":0,"Continent":"K35","ID":25037,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25037","ServerKey":"pl181","X":555,"Y":352},{"Bonus":6,"Continent":"K43","ID":25038,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25038","ServerKey":"pl181","X":347,"Y":475},{"Bonus":0,"Continent":"K36","ID":25039,"Name":"I#035","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25039","ServerKey":"pl181","X":605,"Y":390},{"Bonus":0,"Continent":"K56","ID":25040,"Name":"WWWioska Daniels88","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25040","ServerKey":"pl181","X":619,"Y":597},{"Bonus":0,"Continent":"K36","ID":25041,"Name":"C008","PlayerID":699761749,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25041","ServerKey":"pl181","X":600,"Y":385},{"Bonus":0,"Continent":"K63","ID":25042,"Name":"Wioska 005","PlayerID":848912772,"Points":7052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25042","ServerKey":"pl181","X":392,"Y":616},{"Bonus":0,"Continent":"K46","ID":25043,"Name":"A03 Mendoza","PlayerID":699272880,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25043","ServerKey":"pl181","X":643,"Y":497},{"Bonus":0,"Continent":"K53","ID":25044,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25044","ServerKey":"pl181","X":342,"Y":519},{"Bonus":0,"Continent":"K34","ID":25045,"Name":"PrzystaƄ 9","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25045","ServerKey":"pl181","X":405,"Y":381},{"Bonus":0,"Continent":"K64","ID":25046,"Name":"Ave Why!","PlayerID":698585370,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25046","ServerKey":"pl181","X":474,"Y":651},{"Bonus":0,"Continent":"K65","ID":25047,"Name":"0285","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25047","ServerKey":"pl181","X":545,"Y":652},{"Bonus":0,"Continent":"K34","ID":25048,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25048","ServerKey":"pl181","X":421,"Y":370},{"Bonus":0,"Continent":"K64","ID":25049,"Name":"052|| Piscis Austrinus","PlayerID":849035525,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25049","ServerKey":"pl181","X":476,"Y":652},{"Bonus":0,"Continent":"K34","ID":25050,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25050","ServerKey":"pl181","X":437,"Y":360},{"Bonus":0,"Continent":"K64","ID":25052,"Name":"B07","PlayerID":698652014,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25052","ServerKey":"pl181","X":491,"Y":652},{"Bonus":0,"Continent":"K63","ID":25053,"Name":".///...//././././././././","PlayerID":849097937,"Points":8166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25053","ServerKey":"pl181","X":384,"Y":609},{"Bonus":0,"Continent":"K56","ID":25054,"Name":"D 017","PlayerID":8078914,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25054","ServerKey":"pl181","X":658,"Y":502},{"Bonus":0,"Continent":"K64","ID":25055,"Name":"014|| Cassiopeia","PlayerID":849035525,"Points":9552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25055","ServerKey":"pl181","X":494,"Y":652},{"Bonus":0,"Continent":"K56","ID":25056,"Name":"JaamwG P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25056","ServerKey":"pl181","X":645,"Y":546},{"Bonus":0,"Continent":"K43","ID":25057,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25057","ServerKey":"pl181","X":348,"Y":478},{"Bonus":0,"Continent":"K56","ID":25058,"Name":"420","PlayerID":7038651,"Points":7414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25058","ServerKey":"pl181","X":649,"Y":539},{"Bonus":0,"Continent":"K34","ID":25059,"Name":"041","PlayerID":698739350,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25059","ServerKey":"pl181","X":490,"Y":348},{"Bonus":0,"Continent":"K46","ID":25061,"Name":"042","PlayerID":9148043,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25061","ServerKey":"pl181","X":621,"Y":405},{"Bonus":0,"Continent":"K46","ID":25062,"Name":"Twierdza 7","PlayerID":848935020,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25062","ServerKey":"pl181","X":653,"Y":463},{"Bonus":0,"Continent":"K65","ID":25063,"Name":"Bizy 4","PlayerID":8954402,"Points":7027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25063","ServerKey":"pl181","X":501,"Y":657},{"Bonus":0,"Continent":"K35","ID":25064,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":8341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25064","ServerKey":"pl181","X":502,"Y":344},{"Bonus":0,"Continent":"K65","ID":25065,"Name":"z 034","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25065","ServerKey":"pl181","X":573,"Y":641},{"Bonus":0,"Continent":"K56","ID":25066,"Name":"B.065","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25066","ServerKey":"pl181","X":656,"Y":507},{"Bonus":0,"Continent":"K53","ID":25067,"Name":"C003..","PlayerID":849090130,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25067","ServerKey":"pl181","X":366,"Y":581},{"Bonus":0,"Continent":"K64","ID":25069,"Name":"Pobozowisko","PlayerID":699513260,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25069","ServerKey":"pl181","X":401,"Y":617},{"Bonus":0,"Continent":"K34","ID":25070,"Name":"K34 - [105] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25070","ServerKey":"pl181","X":441,"Y":356},{"Bonus":0,"Continent":"K43","ID":25071,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25071","ServerKey":"pl181","X":372,"Y":411},{"Bonus":0,"Continent":"K34","ID":25072,"Name":"019...CENTR PÓƁ_A","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25072","ServerKey":"pl181","X":464,"Y":347},{"Bonus":0,"Continent":"K65","ID":25073,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25073","ServerKey":"pl181","X":525,"Y":657},{"Bonus":0,"Continent":"K35","ID":25074,"Name":"A027","PlayerID":699485250,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25074","ServerKey":"pl181","X":587,"Y":368},{"Bonus":0,"Continent":"K35","ID":25075,"Name":"I#031","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25075","ServerKey":"pl181","X":597,"Y":376},{"Bonus":0,"Continent":"K66","ID":25076,"Name":"0003","PlayerID":6417987,"Points":7014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25076","ServerKey":"pl181","X":613,"Y":611},{"Bonus":0,"Continent":"K64","ID":25077,"Name":"002 Missisipi","PlayerID":699238479,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25077","ServerKey":"pl181","X":477,"Y":655},{"Bonus":0,"Continent":"K43","ID":25078,"Name":"AA14","PlayerID":699783765,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25078","ServerKey":"pl181","X":357,"Y":441},{"Bonus":0,"Continent":"K46","ID":25079,"Name":"070 Nakano","PlayerID":7092442,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25079","ServerKey":"pl181","X":656,"Y":480},{"Bonus":0,"Continent":"K65","ID":25080,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25080","ServerKey":"pl181","X":527,"Y":650},{"Bonus":0,"Continent":"K46","ID":25081,"Name":"Dolina Krzemu","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25081","ServerKey":"pl181","X":625,"Y":401},{"Bonus":0,"Continent":"K34","ID":25082,"Name":"yyyy","PlayerID":699883079,"Points":10350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25082","ServerKey":"pl181","X":492,"Y":341},{"Bonus":0,"Continent":"K65","ID":25083,"Name":"008 miliony monet","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25083","ServerKey":"pl181","X":567,"Y":643},{"Bonus":0,"Continent":"K35","ID":25085,"Name":"002)Pieszyce","PlayerID":849097103,"Points":8209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25085","ServerKey":"pl181","X":544,"Y":348},{"Bonus":0,"Continent":"K36","ID":25086,"Name":"I#014","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25086","ServerKey":"pl181","X":600,"Y":376},{"Bonus":0,"Continent":"K65","ID":25087,"Name":"Sony 911","PlayerID":1415009,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25087","ServerKey":"pl181","X":589,"Y":632},{"Bonus":0,"Continent":"K43","ID":25088,"Name":"003. Dla flag","PlayerID":698630507,"Points":8422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25088","ServerKey":"pl181","X":354,"Y":440},{"Bonus":0,"Continent":"K43","ID":25089,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25089","ServerKey":"pl181","X":343,"Y":482},{"Bonus":0,"Continent":"K33","ID":25091,"Name":"A-036","PlayerID":8419570,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25091","ServerKey":"pl181","X":386,"Y":388},{"Bonus":0,"Continent":"K46","ID":25092,"Name":"006 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25092","ServerKey":"pl181","X":645,"Y":441},{"Bonus":0,"Continent":"K53","ID":25093,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25093","ServerKey":"pl181","X":346,"Y":529},{"Bonus":0,"Continent":"K34","ID":25095,"Name":"OKO ZA OKO ZAB ZA ZAB","PlayerID":699191464,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25095","ServerKey":"pl181","X":448,"Y":353},{"Bonus":0,"Continent":"K35","ID":25096,"Name":"I#018","PlayerID":2065730,"Points":7113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25096","ServerKey":"pl181","X":597,"Y":377},{"Bonus":0,"Continent":"K35","ID":25097,"Name":"Ambrela 032","PlayerID":698823542,"Points":5441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25097","ServerKey":"pl181","X":578,"Y":364},{"Bonus":0,"Continent":"K34","ID":25098,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25098","ServerKey":"pl181","X":433,"Y":362},{"Bonus":0,"Continent":"K43","ID":25099,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25099","ServerKey":"pl181","X":363,"Y":423},{"Bonus":0,"Continent":"K64","ID":25100,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":5495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25100","ServerKey":"pl181","X":436,"Y":645},{"Bonus":0,"Continent":"K64","ID":25101,"Name":"ave why!","PlayerID":698143931,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25101","ServerKey":"pl181","X":443,"Y":643},{"Bonus":0,"Continent":"K56","ID":25102,"Name":"041","PlayerID":849095227,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25102","ServerKey":"pl181","X":642,"Y":558},{"Bonus":0,"Continent":"K35","ID":25103,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25103","ServerKey":"pl181","X":555,"Y":356},{"Bonus":0,"Continent":"K35","ID":25104,"Name":"Lord Lord Franek .#027","PlayerID":698420691,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25104","ServerKey":"pl181","X":527,"Y":345},{"Bonus":0,"Continent":"K43","ID":25105,"Name":"110","PlayerID":6258092,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25105","ServerKey":"pl181","X":350,"Y":468},{"Bonus":0,"Continent":"K46","ID":25106,"Name":"BACÓWKA |024|","PlayerID":7394371,"Points":5425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25106","ServerKey":"pl181","X":632,"Y":411},{"Bonus":0,"Continent":"K43","ID":25107,"Name":"Wioska barbarzyƄska","PlayerID":698884287,"Points":6168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25107","ServerKey":"pl181","X":384,"Y":400},{"Bonus":0,"Continent":"K46","ID":25108,"Name":"044","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25108","ServerKey":"pl181","X":654,"Y":485},{"Bonus":9,"Continent":"K33","ID":25109,"Name":"ZbĂłjnik.","PlayerID":606706,"Points":5444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25109","ServerKey":"pl181","X":391,"Y":384},{"Bonus":0,"Continent":"K56","ID":25110,"Name":"039","PlayerID":699316421,"Points":7209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25110","ServerKey":"pl181","X":648,"Y":555},{"Bonus":0,"Continent":"K35","ID":25111,"Name":"Klaudek2","PlayerID":849092309,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25111","ServerKey":"pl181","X":590,"Y":371},{"Bonus":0,"Continent":"K45","ID":25112,"Name":"xxx","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25112","ServerKey":"pl181","X":507,"Y":443},{"Bonus":0,"Continent":"K35","ID":25113,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25113","ServerKey":"pl181","X":572,"Y":366},{"Bonus":0,"Continent":"K65","ID":25114,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25114","ServerKey":"pl181","X":537,"Y":651},{"Bonus":0,"Continent":"K35","ID":25115,"Name":"015) Niuniuƛ","PlayerID":849097103,"Points":4208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25115","ServerKey":"pl181","X":536,"Y":348},{"Bonus":0,"Continent":"K64","ID":25116,"Name":"047.","PlayerID":699665152,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25116","ServerKey":"pl181","X":407,"Y":622},{"Bonus":0,"Continent":"K56","ID":25117,"Name":"006","PlayerID":849095963,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25117","ServerKey":"pl181","X":646,"Y":561},{"Bonus":0,"Continent":"K64","ID":25118,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":698585370,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25118","ServerKey":"pl181","X":497,"Y":653},{"Bonus":0,"Continent":"K43","ID":25119,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25119","ServerKey":"pl181","X":356,"Y":441},{"Bonus":0,"Continent":"K53","ID":25120,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25120","ServerKey":"pl181","X":350,"Y":532},{"Bonus":0,"Continent":"K34","ID":25121,"Name":"Szlachcic","PlayerID":698160606,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25121","ServerKey":"pl181","X":404,"Y":373},{"Bonus":0,"Continent":"K53","ID":25122,"Name":"Valhalla 7","PlayerID":849097002,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25122","ServerKey":"pl181","X":373,"Y":594},{"Bonus":0,"Continent":"K43","ID":25123,"Name":"A0068","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25123","ServerKey":"pl181","X":347,"Y":490},{"Bonus":0,"Continent":"K65","ID":25124,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25124","ServerKey":"pl181","X":521,"Y":653},{"Bonus":0,"Continent":"K53","ID":25125,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":7633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25125","ServerKey":"pl181","X":350,"Y":538},{"Bonus":0,"Continent":"K35","ID":25126,"Name":"I#003","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25126","ServerKey":"pl181","X":599,"Y":381},{"Bonus":0,"Continent":"K43","ID":25128,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25128","ServerKey":"pl181","X":345,"Y":482},{"Bonus":0,"Continent":"K44","ID":25129,"Name":"Monetki","PlayerID":699098531,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25129","ServerKey":"pl181","X":475,"Y":418},{"Bonus":0,"Continent":"K53","ID":25130,"Name":"Cisza 2","PlayerID":698769107,"Points":4550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25130","ServerKey":"pl181","X":348,"Y":542},{"Bonus":0,"Continent":"K53","ID":25131,"Name":"X001-Czarna Strefa","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25131","ServerKey":"pl181","X":360,"Y":573},{"Bonus":0,"Continent":"K53","ID":25132,"Name":"Norynberg","PlayerID":8607734,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25132","ServerKey":"pl181","X":369,"Y":587},{"Bonus":0,"Continent":"K53","ID":25133,"Name":"X003","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25133","ServerKey":"pl181","X":360,"Y":570},{"Bonus":8,"Continent":"K35","ID":25134,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25134","ServerKey":"pl181","X":565,"Y":357},{"Bonus":0,"Continent":"K63","ID":25135,"Name":"004Knaki","PlayerID":698620694,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25135","ServerKey":"pl181","X":391,"Y":614},{"Bonus":0,"Continent":"K66","ID":25136,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25136","ServerKey":"pl181","X":600,"Y":618},{"Bonus":0,"Continent":"K63","ID":25137,"Name":"0468","PlayerID":698659980,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25137","ServerKey":"pl181","X":380,"Y":604},{"Bonus":0,"Continent":"K35","ID":25138,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25138","ServerKey":"pl181","X":554,"Y":353},{"Bonus":0,"Continent":"K65","ID":25139,"Name":"019 serniczek z galaretką","PlayerID":8954402,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25139","ServerKey":"pl181","X":503,"Y":656},{"Bonus":0,"Continent":"K53","ID":25140,"Name":"Denger 21","PlayerID":698353083,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25140","ServerKey":"pl181","X":370,"Y":588},{"Bonus":0,"Continent":"K43","ID":25141,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25141","ServerKey":"pl181","X":373,"Y":413},{"Bonus":0,"Continent":"K65","ID":25142,"Name":"0565","PlayerID":698659980,"Points":8927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25142","ServerKey":"pl181","X":548,"Y":645},{"Bonus":0,"Continent":"K44","ID":25143,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25143","ServerKey":"pl181","X":409,"Y":470},{"Bonus":0,"Continent":"K34","ID":25144,"Name":"016...CENTR","PlayerID":6920960,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25144","ServerKey":"pl181","X":460,"Y":350},{"Bonus":0,"Continent":"K34","ID":25145,"Name":"Yyyyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25145","ServerKey":"pl181","X":497,"Y":344},{"Bonus":0,"Continent":"K46","ID":25146,"Name":"B09","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25146","ServerKey":"pl181","X":647,"Y":447},{"Bonus":0,"Continent":"K63","ID":25147,"Name":"Wiocha 004","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25147","ServerKey":"pl181","X":393,"Y":610},{"Bonus":0,"Continent":"K35","ID":25148,"Name":"025","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25148","ServerKey":"pl181","X":514,"Y":343},{"Bonus":0,"Continent":"K34","ID":25149,"Name":"K34 - [028] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25149","ServerKey":"pl181","X":444,"Y":356},{"Bonus":0,"Continent":"K66","ID":25150,"Name":"096","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25150","ServerKey":"pl181","X":619,"Y":604},{"Bonus":0,"Continent":"K46","ID":25151,"Name":"#045.520|497","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25151","ServerKey":"pl181","X":639,"Y":448},{"Bonus":0,"Continent":"K35","ID":25152,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25152","ServerKey":"pl181","X":578,"Y":363},{"Bonus":0,"Continent":"K65","ID":25153,"Name":"Wioska barbarzyƄska","PlayerID":699796630,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25153","ServerKey":"pl181","X":598,"Y":617},{"Bonus":0,"Continent":"K46","ID":25154,"Name":"32. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25154","ServerKey":"pl181","X":635,"Y":425},{"Bonus":0,"Continent":"K65","ID":25155,"Name":"Sony 911","PlayerID":1415009,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25155","ServerKey":"pl181","X":584,"Y":632},{"Bonus":0,"Continent":"K56","ID":25156,"Name":"B024","PlayerID":9314079,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25156","ServerKey":"pl181","X":655,"Y":500},{"Bonus":0,"Continent":"K35","ID":25157,"Name":"I#019","PlayerID":2065730,"Points":6650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25157","ServerKey":"pl181","X":597,"Y":374},{"Bonus":0,"Continent":"K63","ID":25158,"Name":"-006-","PlayerID":699097885,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25158","ServerKey":"pl181","X":385,"Y":603},{"Bonus":0,"Continent":"K35","ID":25159,"Name":"Taki Pan","PlayerID":698739350,"Points":7960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25159","ServerKey":"pl181","X":504,"Y":343},{"Bonus":0,"Continent":"K34","ID":25160,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":5147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25160","ServerKey":"pl181","X":478,"Y":347},{"Bonus":0,"Continent":"K65","ID":25161,"Name":"042 kryzys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25161","ServerKey":"pl181","X":570,"Y":638},{"Bonus":0,"Continent":"K66","ID":25162,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25162","ServerKey":"pl181","X":611,"Y":607},{"Bonus":0,"Continent":"K65","ID":25163,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25163","ServerKey":"pl181","X":525,"Y":658},{"Bonus":0,"Continent":"K43","ID":25164,"Name":"3AA","PlayerID":7765098,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25164","ServerKey":"pl181","X":356,"Y":431},{"Bonus":0,"Continent":"K56","ID":25165,"Name":"001","PlayerID":849095963,"Points":10890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25165","ServerKey":"pl181","X":645,"Y":560},{"Bonus":0,"Continent":"K45","ID":25166,"Name":"Szlachcic","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25166","ServerKey":"pl181","X":583,"Y":490},{"Bonus":0,"Continent":"K56","ID":25167,"Name":"064","PlayerID":698786826,"Points":7905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25167","ServerKey":"pl181","X":618,"Y":597},{"Bonus":0,"Continent":"K35","ID":25168,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25168","ServerKey":"pl181","X":561,"Y":358},{"Bonus":0,"Continent":"K34","ID":25169,"Name":"PrzystaƄ 8","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25169","ServerKey":"pl181","X":408,"Y":374},{"Bonus":0,"Continent":"K56","ID":25170,"Name":"028","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25170","ServerKey":"pl181","X":652,"Y":534},{"Bonus":0,"Continent":"K56","ID":25171,"Name":"jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25171","ServerKey":"pl181","X":637,"Y":571},{"Bonus":0,"Continent":"K35","ID":25172,"Name":"Lord Lord Franek .#028","PlayerID":698420691,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25172","ServerKey":"pl181","X":524,"Y":344},{"Bonus":0,"Continent":"K35","ID":25173,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25173","ServerKey":"pl181","X":558,"Y":355},{"Bonus":0,"Continent":"K35","ID":25174,"Name":"023","PlayerID":699072129,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25174","ServerKey":"pl181","X":519,"Y":344},{"Bonus":3,"Continent":"K46","ID":25175,"Name":"#.08 Osada koczownikĂłw","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25175","ServerKey":"pl181","X":651,"Y":479},{"Bonus":0,"Continent":"K65","ID":25176,"Name":"szping","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25176","ServerKey":"pl181","X":596,"Y":626},{"Bonus":0,"Continent":"K56","ID":25177,"Name":"Jaaa","PlayerID":698635863,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25177","ServerKey":"pl181","X":624,"Y":596},{"Bonus":9,"Continent":"K46","ID":25178,"Name":"W 05","PlayerID":699524891,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25178","ServerKey":"pl181","X":647,"Y":455},{"Bonus":0,"Continent":"K53","ID":25179,"Name":"51. Wioska 51","PlayerID":849091769,"Points":7444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25179","ServerKey":"pl181","X":355,"Y":546},{"Bonus":0,"Continent":"K56","ID":25180,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25180","ServerKey":"pl181","X":633,"Y":577},{"Bonus":0,"Continent":"K46","ID":25181,"Name":"021 MONETKI","PlayerID":7588382,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25181","ServerKey":"pl181","X":659,"Y":495},{"Bonus":0,"Continent":"K43","ID":25182,"Name":"M181_016","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25182","ServerKey":"pl181","X":361,"Y":429},{"Bonus":0,"Continent":"K46","ID":25183,"Name":"BACÓWKA |013|","PlayerID":7394371,"Points":9578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25183","ServerKey":"pl181","X":626,"Y":409},{"Bonus":0,"Continent":"K66","ID":25184,"Name":"aAa Szlaban 3","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25184","ServerKey":"pl181","X":609,"Y":606},{"Bonus":0,"Continent":"K64","ID":25185,"Name":"Samana3","PlayerID":699736927,"Points":5433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25185","ServerKey":"pl181","X":460,"Y":653},{"Bonus":0,"Continent":"K46","ID":25186,"Name":"037. Pons Aelius","PlayerID":849091866,"Points":9468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25186","ServerKey":"pl181","X":651,"Y":470},{"Bonus":0,"Continent":"K56","ID":25187,"Name":"Jaaa","PlayerID":698635863,"Points":10272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25187","ServerKey":"pl181","X":630,"Y":593},{"Bonus":0,"Continent":"K64","ID":25188,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25188","ServerKey":"pl181","X":467,"Y":656},{"Bonus":0,"Continent":"K64","ID":25189,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":9321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25189","ServerKey":"pl181","X":423,"Y":636},{"Bonus":0,"Continent":"K65","ID":25190,"Name":"wez otworz .","PlayerID":848995242,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25190","ServerKey":"pl181","X":577,"Y":632},{"Bonus":0,"Continent":"K64","ID":25191,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":4990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25191","ServerKey":"pl181","X":440,"Y":643},{"Bonus":0,"Continent":"K65","ID":25192,"Name":"?007","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25192","ServerKey":"pl181","X":541,"Y":654},{"Bonus":0,"Continent":"K53","ID":25193,"Name":"Wioska Krycek","PlayerID":849060099,"Points":9097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25193","ServerKey":"pl181","X":348,"Y":511},{"Bonus":0,"Continent":"K53","ID":25194,"Name":"Denger 23","PlayerID":698353083,"Points":10687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25194","ServerKey":"pl181","X":375,"Y":589},{"Bonus":0,"Continent":"K65","ID":25195,"Name":"#0044","PlayerID":1536231,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25195","ServerKey":"pl181","X":539,"Y":624},{"Bonus":0,"Continent":"K34","ID":25196,"Name":".004.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25196","ServerKey":"pl181","X":493,"Y":378},{"Bonus":0,"Continent":"K35","ID":25197,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25197","ServerKey":"pl181","X":551,"Y":354},{"Bonus":0,"Continent":"K53","ID":25198,"Name":"06. LutkowszczaƄscy tubylcy","PlayerID":8665783,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25198","ServerKey":"pl181","X":376,"Y":596},{"Bonus":0,"Continent":"K64","ID":25199,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25199","ServerKey":"pl181","X":444,"Y":643},{"Bonus":0,"Continent":"K46","ID":25200,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25200","ServerKey":"pl181","X":648,"Y":446},{"Bonus":0,"Continent":"K46","ID":25201,"Name":"RozƂam","PlayerID":699491076,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25201","ServerKey":"pl181","X":626,"Y":403},{"Bonus":0,"Continent":"K53","ID":25202,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25202","ServerKey":"pl181","X":342,"Y":509},{"Bonus":0,"Continent":"K34","ID":25203,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25203","ServerKey":"pl181","X":489,"Y":342},{"Bonus":0,"Continent":"K34","ID":25204,"Name":"040","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25204","ServerKey":"pl181","X":485,"Y":375},{"Bonus":0,"Continent":"K34","ID":25205,"Name":"SINGED X SZEF","PlayerID":699368887,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25205","ServerKey":"pl181","X":495,"Y":379},{"Bonus":0,"Continent":"K65","ID":25206,"Name":"0488","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25206","ServerKey":"pl181","X":532,"Y":651},{"Bonus":0,"Continent":"K34","ID":25208,"Name":"0060","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25208","ServerKey":"pl181","X":420,"Y":370},{"Bonus":0,"Continent":"K64","ID":25209,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25209","ServerKey":"pl181","X":455,"Y":653},{"Bonus":0,"Continent":"K35","ID":25210,"Name":"077 Duko 1","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25210","ServerKey":"pl181","X":547,"Y":355},{"Bonus":0,"Continent":"K46","ID":25211,"Name":"BACÓWKA |006|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25211","ServerKey":"pl181","X":627,"Y":408},{"Bonus":0,"Continent":"K65","ID":25212,"Name":"044","PlayerID":2808172,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25212","ServerKey":"pl181","X":546,"Y":650},{"Bonus":6,"Continent":"K56","ID":25213,"Name":"P006 Roshammul","PlayerID":8096537,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25213","ServerKey":"pl181","X":658,"Y":511},{"Bonus":0,"Continent":"K56","ID":25215,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25215","ServerKey":"pl181","X":632,"Y":573},{"Bonus":0,"Continent":"K65","ID":25216,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25216","ServerKey":"pl181","X":530,"Y":655},{"Bonus":0,"Continent":"K65","ID":25218,"Name":"007 big girls do not cry","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25218","ServerKey":"pl181","X":565,"Y":643},{"Bonus":0,"Continent":"K34","ID":25220,"Name":"018...MONETKI","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25220","ServerKey":"pl181","X":453,"Y":347},{"Bonus":0,"Continent":"K46","ID":25221,"Name":"037 Galust3","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25221","ServerKey":"pl181","X":655,"Y":496},{"Bonus":0,"Continent":"K43","ID":25223,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25223","ServerKey":"pl181","X":373,"Y":411},{"Bonus":0,"Continent":"K56","ID":25224,"Name":"066","PlayerID":699351301,"Points":10382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25224","ServerKey":"pl181","X":654,"Y":527},{"Bonus":0,"Continent":"K34","ID":25225,"Name":"Konfederacja","PlayerID":848915730,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25225","ServerKey":"pl181","X":461,"Y":377},{"Bonus":0,"Continent":"K65","ID":25226,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25226","ServerKey":"pl181","X":525,"Y":655},{"Bonus":0,"Continent":"K53","ID":25227,"Name":"---011","PlayerID":8607734,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25227","ServerKey":"pl181","X":369,"Y":586},{"Bonus":0,"Continent":"K64","ID":25228,"Name":"009","PlayerID":849089459,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25228","ServerKey":"pl181","X":431,"Y":640},{"Bonus":0,"Continent":"K65","ID":25229,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25229","ServerKey":"pl181","X":526,"Y":655},{"Bonus":0,"Continent":"K35","ID":25230,"Name":"Lord Lord Franek .#008","PlayerID":698420691,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25230","ServerKey":"pl181","X":519,"Y":339},{"Bonus":0,"Continent":"K65","ID":25231,"Name":"SX001","PlayerID":8627359,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25231","ServerKey":"pl181","X":572,"Y":640},{"Bonus":0,"Continent":"K34","ID":25232,"Name":"014","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25232","ServerKey":"pl181","X":484,"Y":348},{"Bonus":0,"Continent":"K56","ID":25233,"Name":"[116]","PlayerID":8000875,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25233","ServerKey":"pl181","X":636,"Y":574},{"Bonus":0,"Continent":"K64","ID":25234,"Name":"Wioska 5","PlayerID":699736927,"Points":5114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25234","ServerKey":"pl181","X":425,"Y":641},{"Bonus":0,"Continent":"K53","ID":25235,"Name":"-004-","PlayerID":699097885,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25235","ServerKey":"pl181","X":376,"Y":593},{"Bonus":0,"Continent":"K34","ID":25236,"Name":"131","PlayerID":7271812,"Points":4605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25236","ServerKey":"pl181","X":476,"Y":345},{"Bonus":0,"Continent":"K66","ID":25237,"Name":"Wioska Hubs1","PlayerID":699853308,"Points":3290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25237","ServerKey":"pl181","X":620,"Y":601},{"Bonus":0,"Continent":"K46","ID":25238,"Name":"049. Heliopolis","PlayerID":849091866,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25238","ServerKey":"pl181","X":653,"Y":467},{"Bonus":0,"Continent":"K36","ID":25239,"Name":"Bergen op Zon","PlayerID":9103424,"Points":5674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25239","ServerKey":"pl181","X":604,"Y":380},{"Bonus":0,"Continent":"K64","ID":25240,"Name":"Quzynafide","PlayerID":848913998,"Points":3777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25240","ServerKey":"pl181","X":407,"Y":627},{"Bonus":0,"Continent":"K46","ID":25241,"Name":"017 MONETKI","PlayerID":7588382,"Points":9490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25241","ServerKey":"pl181","X":656,"Y":496},{"Bonus":0,"Continent":"K36","ID":25242,"Name":"030","PlayerID":699298370,"Points":6970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25242","ServerKey":"pl181","X":614,"Y":397},{"Bonus":0,"Continent":"K46","ID":25243,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":8204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25243","ServerKey":"pl181","X":645,"Y":450},{"Bonus":0,"Continent":"K35","ID":25245,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25245","ServerKey":"pl181","X":556,"Y":355},{"Bonus":0,"Continent":"K64","ID":25246,"Name":"04. Monster Machine","PlayerID":849100262,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25246","ServerKey":"pl181","X":494,"Y":654},{"Bonus":0,"Continent":"K53","ID":25247,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25247","ServerKey":"pl181","X":355,"Y":548},{"Bonus":0,"Continent":"K56","ID":25248,"Name":"057","PlayerID":698999105,"Points":8806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25248","ServerKey":"pl181","X":656,"Y":519},{"Bonus":0,"Continent":"K34","ID":25249,"Name":"213...barba","PlayerID":6920960,"Points":4947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25249","ServerKey":"pl181","X":465,"Y":346},{"Bonus":7,"Continent":"K53","ID":25250,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25250","ServerKey":"pl181","X":342,"Y":516},{"Bonus":0,"Continent":"K34","ID":25251,"Name":"0007","PlayerID":699402816,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25251","ServerKey":"pl181","X":402,"Y":376},{"Bonus":0,"Continent":"K65","ID":25252,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25252","ServerKey":"pl181","X":525,"Y":650},{"Bonus":0,"Continent":"K53","ID":25253,"Name":"Wioska pit","PlayerID":849095992,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25253","ServerKey":"pl181","X":375,"Y":594},{"Bonus":0,"Continent":"K64","ID":25254,"Name":"Pobozowisko","PlayerID":699513260,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25254","ServerKey":"pl181","X":406,"Y":622},{"Bonus":0,"Continent":"K65","ID":25255,"Name":"?012 Tawern","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25255","ServerKey":"pl181","X":536,"Y":656},{"Bonus":0,"Continent":"K65","ID":25256,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25256","ServerKey":"pl181","X":538,"Y":654},{"Bonus":0,"Continent":"K34","ID":25257,"Name":"Szlachcic","PlayerID":698160606,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25257","ServerKey":"pl181","X":407,"Y":371},{"Bonus":0,"Continent":"K43","ID":25258,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":7478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25258","ServerKey":"pl181","X":351,"Y":443},{"Bonus":0,"Continent":"K56","ID":25259,"Name":"033","PlayerID":698786826,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25259","ServerKey":"pl181","X":616,"Y":599},{"Bonus":0,"Continent":"K34","ID":25260,"Name":"K34 - [025] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25260","ServerKey":"pl181","X":444,"Y":357},{"Bonus":0,"Continent":"K56","ID":25261,"Name":"jaaa","PlayerID":698635863,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25261","ServerKey":"pl181","X":636,"Y":582},{"Bonus":0,"Continent":"K43","ID":25262,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":5041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25262","ServerKey":"pl181","X":363,"Y":427},{"Bonus":0,"Continent":"K44","ID":25263,"Name":"Monetki","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25263","ServerKey":"pl181","X":476,"Y":412},{"Bonus":0,"Continent":"K33","ID":25264,"Name":"007","PlayerID":849059457,"Points":7002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25264","ServerKey":"pl181","X":384,"Y":395},{"Bonus":0,"Continent":"K43","ID":25265,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25265","ServerKey":"pl181","X":351,"Y":457},{"Bonus":0,"Continent":"K46","ID":25266,"Name":"011 MONETKI","PlayerID":7588382,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25266","ServerKey":"pl181","X":657,"Y":469},{"Bonus":0,"Continent":"K53","ID":25267,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25267","ServerKey":"pl181","X":347,"Y":520},{"Bonus":8,"Continent":"K56","ID":25268,"Name":"002","PlayerID":699351301,"Points":11300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25268","ServerKey":"pl181","X":652,"Y":533},{"Bonus":0,"Continent":"K34","ID":25269,"Name":"0034","PlayerID":848913037,"Points":5395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25269","ServerKey":"pl181","X":420,"Y":369},{"Bonus":3,"Continent":"K46","ID":25270,"Name":"A016 Goƛć ĆŒelazo","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25270","ServerKey":"pl181","X":653,"Y":456},{"Bonus":0,"Continent":"K33","ID":25271,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25271","ServerKey":"pl181","X":378,"Y":399},{"Bonus":0,"Continent":"K35","ID":25272,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25272","ServerKey":"pl181","X":577,"Y":364},{"Bonus":0,"Continent":"K53","ID":25273,"Name":"Dąbrowa 0015","PlayerID":849096972,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25273","ServerKey":"pl181","X":363,"Y":577},{"Bonus":0,"Continent":"K34","ID":25274,"Name":"#0017 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25274","ServerKey":"pl181","X":467,"Y":349},{"Bonus":0,"Continent":"K34","ID":25275,"Name":"Monetio","PlayerID":699191449,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25275","ServerKey":"pl181","X":441,"Y":352},{"Bonus":4,"Continent":"K34","ID":25276,"Name":"004","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25276","ServerKey":"pl181","X":482,"Y":348},{"Bonus":0,"Continent":"K35","ID":25277,"Name":"I#025","PlayerID":2065730,"Points":9058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25277","ServerKey":"pl181","X":596,"Y":379},{"Bonus":0,"Continent":"K53","ID":25278,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25278","ServerKey":"pl181","X":346,"Y":533},{"Bonus":0,"Continent":"K34","ID":25279,"Name":"K34 - [111] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25279","ServerKey":"pl181","X":441,"Y":358},{"Bonus":0,"Continent":"K43","ID":25280,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":7944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25280","ServerKey":"pl181","X":362,"Y":426},{"Bonus":0,"Continent":"K36","ID":25281,"Name":"032","PlayerID":699298370,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25281","ServerKey":"pl181","X":616,"Y":396},{"Bonus":0,"Continent":"K43","ID":25282,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25282","ServerKey":"pl181","X":354,"Y":454},{"Bonus":0,"Continent":"K65","ID":25283,"Name":"Village","PlayerID":849094067,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25283","ServerKey":"pl181","X":518,"Y":655},{"Bonus":0,"Continent":"K36","ID":25284,"Name":"A008","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25284","ServerKey":"pl181","X":603,"Y":387},{"Bonus":0,"Continent":"K33","ID":25285,"Name":"1.3","PlayerID":849095959,"Points":1819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25285","ServerKey":"pl181","X":393,"Y":382},{"Bonus":0,"Continent":"K43","ID":25286,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25286","ServerKey":"pl181","X":346,"Y":480},{"Bonus":8,"Continent":"K66","ID":25287,"Name":"Prawdziwa Osada koczownikĂłw","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25287","ServerKey":"pl181","X":614,"Y":606},{"Bonus":0,"Continent":"K53","ID":25288,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":10240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25288","ServerKey":"pl181","X":361,"Y":577},{"Bonus":0,"Continent":"K63","ID":25289,"Name":"Wiocha 002","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25289","ServerKey":"pl181","X":393,"Y":612},{"Bonus":0,"Continent":"K43","ID":25290,"Name":"Maszlug kolonia XVIII","PlayerID":848977649,"Points":4206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25290","ServerKey":"pl181","X":363,"Y":417},{"Bonus":0,"Continent":"K46","ID":25291,"Name":"B025","PlayerID":9314079,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25291","ServerKey":"pl181","X":655,"Y":494},{"Bonus":0,"Continent":"K36","ID":25292,"Name":"A 020","PlayerID":6384450,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25292","ServerKey":"pl181","X":602,"Y":381},{"Bonus":0,"Continent":"K34","ID":25294,"Name":"#0016 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25294","ServerKey":"pl181","X":467,"Y":347},{"Bonus":0,"Continent":"K36","ID":25296,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25296","ServerKey":"pl181","X":613,"Y":388},{"Bonus":0,"Continent":"K44","ID":25297,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25297","ServerKey":"pl181","X":465,"Y":419},{"Bonus":0,"Continent":"K53","ID":25298,"Name":"off 100 %","PlayerID":849012521,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25298","ServerKey":"pl181","X":358,"Y":569},{"Bonus":0,"Continent":"K56","ID":25300,"Name":"PZ035","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25300","ServerKey":"pl181","X":656,"Y":517},{"Bonus":0,"Continent":"K43","ID":25301,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25301","ServerKey":"pl181","X":372,"Y":405},{"Bonus":0,"Continent":"K56","ID":25302,"Name":"KREV 004","PlayerID":848988744,"Points":7336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25302","ServerKey":"pl181","X":642,"Y":565},{"Bonus":0,"Continent":"K53","ID":25303,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25303","ServerKey":"pl181","X":354,"Y":550},{"Bonus":7,"Continent":"K65","ID":25304,"Name":"wolna.","PlayerID":699828685,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25304","ServerKey":"pl181","X":561,"Y":647},{"Bonus":0,"Continent":"K64","ID":25305,"Name":"033|| Corvus","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25305","ServerKey":"pl181","X":452,"Y":650},{"Bonus":0,"Continent":"K53","ID":25306,"Name":"deff 100 %","PlayerID":849012521,"Points":7620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25306","ServerKey":"pl181","X":357,"Y":559},{"Bonus":0,"Continent":"K66","ID":25307,"Name":"Kozaki 1","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25307","ServerKey":"pl181","X":614,"Y":605},{"Bonus":0,"Continent":"K53","ID":25308,"Name":"0462","PlayerID":699513260,"Points":3737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25308","ServerKey":"pl181","X":380,"Y":599},{"Bonus":0,"Continent":"K33","ID":25309,"Name":"0010 BiaƂystok","PlayerID":849096882,"Points":8200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25309","ServerKey":"pl181","X":393,"Y":381},{"Bonus":0,"Continent":"K65","ID":25310,"Name":"SSJ 063","PlayerID":699364813,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25310","ServerKey":"pl181","X":514,"Y":653},{"Bonus":0,"Continent":"K64","ID":25311,"Name":"052.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25311","ServerKey":"pl181","X":416,"Y":628},{"Bonus":0,"Continent":"K35","ID":25312,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25312","ServerKey":"pl181","X":566,"Y":359},{"Bonus":0,"Continent":"K35","ID":25313,"Name":"Lord Lord Franek .#029","PlayerID":698420691,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25313","ServerKey":"pl181","X":525,"Y":343},{"Bonus":0,"Continent":"K33","ID":25314,"Name":"A-024","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25314","ServerKey":"pl181","X":387,"Y":395},{"Bonus":0,"Continent":"K35","ID":25315,"Name":"xxx #002#TerrorMachine x Miniqo","PlayerID":7555180,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25315","ServerKey":"pl181","X":584,"Y":364},{"Bonus":0,"Continent":"K53","ID":25316,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":7218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25316","ServerKey":"pl181","X":364,"Y":583},{"Bonus":0,"Continent":"K56","ID":25317,"Name":"410","PlayerID":7038651,"Points":8611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25317","ServerKey":"pl181","X":649,"Y":538},{"Bonus":0,"Continent":"K66","ID":25318,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25318","ServerKey":"pl181","X":603,"Y":617},{"Bonus":0,"Continent":"K46","ID":25319,"Name":"Tomall78","PlayerID":699524891,"Points":10635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25319","ServerKey":"pl181","X":636,"Y":426},{"Bonus":0,"Continent":"K43","ID":25320,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25320","ServerKey":"pl181","X":351,"Y":441},{"Bonus":0,"Continent":"K46","ID":25321,"Name":"007","PlayerID":699429153,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25321","ServerKey":"pl181","X":626,"Y":406},{"Bonus":0,"Continent":"K65","ID":25322,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25322","ServerKey":"pl181","X":527,"Y":653},{"Bonus":0,"Continent":"K46","ID":25323,"Name":"004 Krotu2","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25323","ServerKey":"pl181","X":655,"Y":488},{"Bonus":0,"Continent":"K35","ID":25324,"Name":"Lord Lord Franek .#050","PlayerID":698420691,"Points":10112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25324","ServerKey":"pl181","X":519,"Y":343},{"Bonus":0,"Continent":"K35","ID":25325,"Name":"Banan#4","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25325","ServerKey":"pl181","X":584,"Y":368},{"Bonus":0,"Continent":"K35","ID":25326,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25326","ServerKey":"pl181","X":569,"Y":361},{"Bonus":0,"Continent":"K65","ID":25328,"Name":"SSJ 067","PlayerID":699364813,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25328","ServerKey":"pl181","X":517,"Y":653},{"Bonus":0,"Continent":"K35","ID":25330,"Name":"A003","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25330","ServerKey":"pl181","X":587,"Y":372},{"Bonus":0,"Continent":"K53","ID":25331,"Name":"Dajanka 06","PlayerID":849012843,"Points":8477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25331","ServerKey":"pl181","X":354,"Y":559},{"Bonus":0,"Continent":"K53","ID":25332,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25332","ServerKey":"pl181","X":346,"Y":507},{"Bonus":0,"Continent":"K34","ID":25333,"Name":"K34 - [136] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25333","ServerKey":"pl181","X":433,"Y":354},{"Bonus":0,"Continent":"K65","ID":25334,"Name":"ObrzeĆŒa 02","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25334","ServerKey":"pl181","X":538,"Y":652},{"Bonus":0,"Continent":"K46","ID":25335,"Name":"35. KaruTown","PlayerID":849060446,"Points":8012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25335","ServerKey":"pl181","X":636,"Y":416},{"Bonus":5,"Continent":"K53","ID":25336,"Name":"D03.","PlayerID":849090130,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25336","ServerKey":"pl181","X":366,"Y":574},{"Bonus":0,"Continent":"K66","ID":25337,"Name":"Ć»UBRAWKA A001 rufus997","PlayerID":33900,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25337","ServerKey":"pl181","X":602,"Y":615},{"Bonus":0,"Continent":"K64","ID":25338,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25338","ServerKey":"pl181","X":455,"Y":647},{"Bonus":0,"Continent":"K35","ID":25339,"Name":"037 038","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25339","ServerKey":"pl181","X":550,"Y":351},{"Bonus":0,"Continent":"K65","ID":25340,"Name":"musze sie napić .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25340","ServerKey":"pl181","X":593,"Y":626},{"Bonus":0,"Continent":"K35","ID":25341,"Name":"Darma Tomi77","PlayerID":699368887,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25341","ServerKey":"pl181","X":514,"Y":383},{"Bonus":0,"Continent":"K65","ID":25342,"Name":"006 king rysio","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25342","ServerKey":"pl181","X":566,"Y":643},{"Bonus":0,"Continent":"K65","ID":25343,"Name":"Village","PlayerID":849094067,"Points":7656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25343","ServerKey":"pl181","X":579,"Y":635},{"Bonus":0,"Continent":"K53","ID":25344,"Name":"0461","PlayerID":698659980,"Points":3775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25344","ServerKey":"pl181","X":380,"Y":598},{"Bonus":0,"Continent":"K35","ID":25345,"Name":"Banan#2","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25345","ServerKey":"pl181","X":589,"Y":369},{"Bonus":0,"Continent":"K65","ID":25346,"Name":"HORUS...","PlayerID":7756002,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25346","ServerKey":"pl181","X":544,"Y":645},{"Bonus":0,"Continent":"K53","ID":25347,"Name":"004","PlayerID":1830149,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25347","ServerKey":"pl181","X":341,"Y":519},{"Bonus":0,"Continent":"K33","ID":25348,"Name":"011","PlayerID":849027025,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25348","ServerKey":"pl181","X":398,"Y":380},{"Bonus":0,"Continent":"K43","ID":25349,"Name":"AA10","PlayerID":7765098,"Points":8958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25349","ServerKey":"pl181","X":358,"Y":440},{"Bonus":0,"Continent":"K33","ID":25350,"Name":"A-025","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25350","ServerKey":"pl181","X":386,"Y":396},{"Bonus":0,"Continent":"K35","ID":25351,"Name":"Klaudek.1","PlayerID":849092309,"Points":8369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25351","ServerKey":"pl181","X":592,"Y":371},{"Bonus":0,"Continent":"K56","ID":25352,"Name":"RON L","PlayerID":698768565,"Points":6939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25352","ServerKey":"pl181","X":656,"Y":532},{"Bonus":0,"Continent":"K34","ID":25353,"Name":"K34 - [011] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25353","ServerKey":"pl181","X":445,"Y":357},{"Bonus":0,"Continent":"K35","ID":25354,"Name":"038 037","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25354","ServerKey":"pl181","X":549,"Y":351},{"Bonus":0,"Continent":"K46","ID":25355,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25355","ServerKey":"pl181","X":647,"Y":453},{"Bonus":0,"Continent":"K34","ID":25356,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":8780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25356","ServerKey":"pl181","X":433,"Y":363},{"Bonus":4,"Continent":"K65","ID":25357,"Name":"003","PlayerID":699336777,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25357","ServerKey":"pl181","X":506,"Y":654},{"Bonus":0,"Continent":"K64","ID":25358,"Name":"Samana","PlayerID":699849210,"Points":7107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25358","ServerKey":"pl181","X":452,"Y":651},{"Bonus":0,"Continent":"K43","ID":25359,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25359","ServerKey":"pl181","X":343,"Y":467},{"Bonus":0,"Continent":"K56","ID":25360,"Name":"jaaa","PlayerID":698635863,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25360","ServerKey":"pl181","X":639,"Y":567},{"Bonus":0,"Continent":"K34","ID":25361,"Name":"013","PlayerID":698739350,"Points":10128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25361","ServerKey":"pl181","X":484,"Y":347},{"Bonus":0,"Continent":"K53","ID":25362,"Name":"off 100 %","PlayerID":849012521,"Points":10031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25362","ServerKey":"pl181","X":361,"Y":574},{"Bonus":0,"Continent":"K43","ID":25363,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25363","ServerKey":"pl181","X":343,"Y":479},{"Bonus":0,"Continent":"K43","ID":25364,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25364","ServerKey":"pl181","X":345,"Y":460},{"Bonus":0,"Continent":"K65","ID":25365,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25365","ServerKey":"pl181","X":549,"Y":652},{"Bonus":0,"Continent":"K65","ID":25366,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25366","ServerKey":"pl181","X":541,"Y":650},{"Bonus":0,"Continent":"K56","ID":25367,"Name":"=063= Wioska barbarzyƄska","PlayerID":3781794,"Points":10148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25367","ServerKey":"pl181","X":652,"Y":550},{"Bonus":0,"Continent":"K44","ID":25368,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25368","ServerKey":"pl181","X":471,"Y":424},{"Bonus":0,"Continent":"K43","ID":25369,"Name":"105","PlayerID":6258092,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25369","ServerKey":"pl181","X":351,"Y":461},{"Bonus":0,"Continent":"K34","ID":25370,"Name":"aaaaaaaaaaa","PlayerID":699191455,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25370","ServerKey":"pl181","X":442,"Y":358},{"Bonus":0,"Continent":"K33","ID":25371,"Name":"A-037","PlayerID":8419570,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25371","ServerKey":"pl181","X":384,"Y":391},{"Bonus":0,"Continent":"K46","ID":25372,"Name":"051. Tridentum","PlayerID":849091866,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25372","ServerKey":"pl181","X":655,"Y":468},{"Bonus":0,"Continent":"K43","ID":25373,"Name":"Maszlug kolonia XVII","PlayerID":848977649,"Points":4561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25373","ServerKey":"pl181","X":365,"Y":418},{"Bonus":0,"Continent":"K34","ID":25374,"Name":"North Barba 022","PlayerID":699796330,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25374","ServerKey":"pl181","X":423,"Y":365},{"Bonus":0,"Continent":"K53","ID":25375,"Name":"008.Wioska BenyZSZ","PlayerID":1830149,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25375","ServerKey":"pl181","X":346,"Y":510},{"Bonus":0,"Continent":"K35","ID":25376,"Name":"Lord Lord Franek .#042","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25376","ServerKey":"pl181","X":531,"Y":348},{"Bonus":0,"Continent":"K65","ID":25377,"Name":"013 so sick","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25377","ServerKey":"pl181","X":560,"Y":642},{"Bonus":1,"Continent":"K64","ID":25378,"Name":"Dzikie wsparcie","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25378","ServerKey":"pl181","X":471,"Y":657},{"Bonus":0,"Continent":"K44","ID":25379,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25379","ServerKey":"pl181","X":483,"Y":416},{"Bonus":0,"Continent":"K63","ID":25380,"Name":"0663","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25380","ServerKey":"pl181","X":379,"Y":600},{"Bonus":4,"Continent":"K63","ID":25381,"Name":"037.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25381","ServerKey":"pl181","X":397,"Y":622},{"Bonus":0,"Continent":"K43","ID":25382,"Name":"1AA","PlayerID":7765098,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25382","ServerKey":"pl181","X":356,"Y":434},{"Bonus":0,"Continent":"K34","ID":25383,"Name":"GrĂłd 4","PlayerID":699204478,"Points":2960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25383","ServerKey":"pl181","X":475,"Y":344},{"Bonus":0,"Continent":"K44","ID":25384,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25384","ServerKey":"pl181","X":474,"Y":410},{"Bonus":0,"Continent":"K56","ID":25385,"Name":"B.025","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25385","ServerKey":"pl181","X":645,"Y":512},{"Bonus":0,"Continent":"K35","ID":25386,"Name":"I#004","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25386","ServerKey":"pl181","X":598,"Y":382},{"Bonus":0,"Continent":"K56","ID":25388,"Name":"JaawmG P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25388","ServerKey":"pl181","X":649,"Y":558},{"Bonus":0,"Continent":"K33","ID":25389,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25389","ServerKey":"pl181","X":380,"Y":396},{"Bonus":0,"Continent":"K35","ID":25390,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25390","ServerKey":"pl181","X":570,"Y":361},{"Bonus":0,"Continent":"K66","ID":25391,"Name":"Wioska MokryRick","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25391","ServerKey":"pl181","X":624,"Y":601},{"Bonus":0,"Continent":"K46","ID":25392,"Name":"027 - Mroczna Osada","PlayerID":849035905,"Points":12143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25392","ServerKey":"pl181","X":640,"Y":423},{"Bonus":0,"Continent":"K35","ID":25393,"Name":"Lord Lord Franek .#005","PlayerID":698420691,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25393","ServerKey":"pl181","X":529,"Y":345},{"Bonus":0,"Continent":"K46","ID":25394,"Name":"033. Dubris","PlayerID":849091866,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25394","ServerKey":"pl181","X":653,"Y":470},{"Bonus":3,"Continent":"K53","ID":25395,"Name":"023 181","PlayerID":698807570,"Points":9332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25395","ServerKey":"pl181","X":344,"Y":501},{"Bonus":0,"Continent":"K65","ID":25396,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25396","ServerKey":"pl181","X":514,"Y":659},{"Bonus":0,"Continent":"K65","ID":25397,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":10255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25397","ServerKey":"pl181","X":578,"Y":636},{"Bonus":0,"Continent":"K44","ID":25398,"Name":"Wioska Flip i Flap ;]","PlayerID":9291984,"Points":7798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25398","ServerKey":"pl181","X":465,"Y":421},{"Bonus":0,"Continent":"K43","ID":25399,"Name":"#008 Zenit Postrach Plemion","PlayerID":849096215,"Points":2268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25399","ServerKey":"pl181","X":359,"Y":432},{"Bonus":0,"Continent":"K43","ID":25400,"Name":"#007 Zenituƛ","PlayerID":849096215,"Points":1595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25400","ServerKey":"pl181","X":360,"Y":431},{"Bonus":0,"Continent":"K34","ID":25402,"Name":"North Barba 013","PlayerID":699796330,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25402","ServerKey":"pl181","X":422,"Y":362},{"Bonus":0,"Continent":"K56","ID":25403,"Name":"B.011","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25403","ServerKey":"pl181","X":646,"Y":512},{"Bonus":0,"Continent":"K34","ID":25404,"Name":"Szulernia","PlayerID":7249451,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25404","ServerKey":"pl181","X":417,"Y":363},{"Bonus":0,"Continent":"K46","ID":25405,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25405","ServerKey":"pl181","X":630,"Y":408},{"Bonus":0,"Continent":"K65","ID":25406,"Name":"0151","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25406","ServerKey":"pl181","X":546,"Y":652},{"Bonus":0,"Continent":"K66","ID":25407,"Name":"079","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25407","ServerKey":"pl181","X":619,"Y":606},{"Bonus":0,"Continent":"K43","ID":25408,"Name":"7.62 mm","PlayerID":8967440,"Points":6208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25408","ServerKey":"pl181","X":373,"Y":402},{"Bonus":0,"Continent":"K66","ID":25409,"Name":"Lekka Jazda.","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25409","ServerKey":"pl181","X":608,"Y":617},{"Bonus":0,"Continent":"K64","ID":25410,"Name":"No. 4","PlayerID":698585370,"Points":9201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25410","ServerKey":"pl181","X":478,"Y":655},{"Bonus":0,"Continent":"K46","ID":25411,"Name":"B07","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25411","ServerKey":"pl181","X":644,"Y":447},{"Bonus":0,"Continent":"K64","ID":25412,"Name":"009.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25412","ServerKey":"pl181","X":402,"Y":626},{"Bonus":0,"Continent":"K34","ID":25413,"Name":"Zakręt 1","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25413","ServerKey":"pl181","X":408,"Y":376},{"Bonus":0,"Continent":"K65","ID":25414,"Name":"?001","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25414","ServerKey":"pl181","X":539,"Y":655},{"Bonus":0,"Continent":"K53","ID":25415,"Name":"08. Pelc","PlayerID":8665783,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25415","ServerKey":"pl181","X":377,"Y":594},{"Bonus":0,"Continent":"K56","ID":25416,"Name":"066","PlayerID":698786826,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25416","ServerKey":"pl181","X":625,"Y":599},{"Bonus":0,"Continent":"K35","ID":25417,"Name":"004 Lowland","PlayerID":699072129,"Points":8143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25417","ServerKey":"pl181","X":552,"Y":348},{"Bonus":0,"Continent":"K35","ID":25418,"Name":".:026:. ƁOBUZIK","PlayerID":848934935,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25418","ServerKey":"pl181","X":555,"Y":368},{"Bonus":0,"Continent":"K34","ID":25420,"Name":"Szlachcic","PlayerID":698160606,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25420","ServerKey":"pl181","X":403,"Y":372},{"Bonus":0,"Continent":"K34","ID":25421,"Name":"North Barba 006","PlayerID":699796330,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25421","ServerKey":"pl181","X":422,"Y":365},{"Bonus":0,"Continent":"K46","ID":25422,"Name":"002 Winterfell","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25422","ServerKey":"pl181","X":653,"Y":484},{"Bonus":0,"Continent":"K56","ID":25423,"Name":"KREV 001","PlayerID":848988744,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25423","ServerKey":"pl181","X":642,"Y":563},{"Bonus":1,"Continent":"K35","ID":25424,"Name":"Lord Lord Franek .#014","PlayerID":698420691,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25424","ServerKey":"pl181","X":520,"Y":343},{"Bonus":0,"Continent":"K46","ID":25425,"Name":"073 zxc","PlayerID":9238175,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25425","ServerKey":"pl181","X":638,"Y":427},{"Bonus":0,"Continent":"K35","ID":25426,"Name":"CHARFA","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25426","ServerKey":"pl181","X":512,"Y":341},{"Bonus":0,"Continent":"K46","ID":25427,"Name":"#.07 *Osada 1*","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25427","ServerKey":"pl181","X":659,"Y":473},{"Bonus":0,"Continent":"K46","ID":25428,"Name":"066 | PALESTINA","PlayerID":9228039,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25428","ServerKey":"pl181","X":638,"Y":432},{"Bonus":0,"Continent":"K65","ID":25430,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25430","ServerKey":"pl181","X":518,"Y":659},{"Bonus":0,"Continent":"K36","ID":25431,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25431","ServerKey":"pl181","X":621,"Y":397},{"Bonus":0,"Continent":"K46","ID":25432,"Name":"051. Az Ragni","PlayerID":8337151,"Points":10118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25432","ServerKey":"pl181","X":638,"Y":418},{"Bonus":0,"Continent":"K56","ID":25433,"Name":"023","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25433","ServerKey":"pl181","X":641,"Y":521},{"Bonus":0,"Continent":"K33","ID":25434,"Name":"007","PlayerID":849027025,"Points":6774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25434","ServerKey":"pl181","X":397,"Y":381},{"Bonus":8,"Continent":"K65","ID":25435,"Name":"004 memyselfandi","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25435","ServerKey":"pl181","X":566,"Y":644},{"Bonus":0,"Continent":"K46","ID":25437,"Name":"112","PlayerID":7085502,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25437","ServerKey":"pl181","X":629,"Y":411},{"Bonus":7,"Continent":"K65","ID":25438,"Name":"0487","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25438","ServerKey":"pl181","X":532,"Y":653},{"Bonus":0,"Continent":"K64","ID":25439,"Name":"Ave Why!","PlayerID":698585370,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25439","ServerKey":"pl181","X":499,"Y":656},{"Bonus":0,"Continent":"K35","ID":25440,"Name":"Lord Lord Franek .#030","PlayerID":698420691,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25440","ServerKey":"pl181","X":520,"Y":346},{"Bonus":0,"Continent":"K56","ID":25441,"Name":".happy2","PlayerID":6929240,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25441","ServerKey":"pl181","X":643,"Y":529},{"Bonus":0,"Continent":"K56","ID":25442,"Name":"=045= Wioska barbarzyƄska","PlayerID":3781794,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25442","ServerKey":"pl181","X":651,"Y":551},{"Bonus":0,"Continent":"K53","ID":25443,"Name":"Chekku - meito","PlayerID":9280477,"Points":7947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25443","ServerKey":"pl181","X":345,"Y":531},{"Bonus":0,"Continent":"K35","ID":25444,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25444","ServerKey":"pl181","X":567,"Y":366},{"Bonus":0,"Continent":"K35","ID":25445,"Name":"Lord Lord Franek .#031","PlayerID":698420691,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25445","ServerKey":"pl181","X":527,"Y":343},{"Bonus":0,"Continent":"K34","ID":25446,"Name":"082...barb","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25446","ServerKey":"pl181","X":457,"Y":348},{"Bonus":0,"Continent":"K33","ID":25447,"Name":"A-038","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25447","ServerKey":"pl181","X":385,"Y":397},{"Bonus":0,"Continent":"K46","ID":25448,"Name":"022 - Mroczna Osada","PlayerID":849035905,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25448","ServerKey":"pl181","X":631,"Y":411},{"Bonus":0,"Continent":"K43","ID":25449,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25449","ServerKey":"pl181","X":370,"Y":411},{"Bonus":0,"Continent":"K64","ID":25450,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25450","ServerKey":"pl181","X":413,"Y":629},{"Bonus":0,"Continent":"K43","ID":25451,"Name":"Zadupiee","PlayerID":8967440,"Points":7464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25451","ServerKey":"pl181","X":366,"Y":408},{"Bonus":0,"Continent":"K64","ID":25452,"Name":"008","PlayerID":699494488,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25452","ServerKey":"pl181","X":494,"Y":626},{"Bonus":0,"Continent":"K56","ID":25453,"Name":"004","PlayerID":849095963,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25453","ServerKey":"pl181","X":642,"Y":561},{"Bonus":0,"Continent":"K63","ID":25454,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25454","ServerKey":"pl181","X":390,"Y":606},{"Bonus":0,"Continent":"K34","ID":25455,"Name":"0040","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25455","ServerKey":"pl181","X":412,"Y":373},{"Bonus":0,"Continent":"K34","ID":25456,"Name":"Giser","PlayerID":849096310,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25456","ServerKey":"pl181","X":435,"Y":354},{"Bonus":0,"Continent":"K34","ID":25457,"Name":"071...barbarka centr","PlayerID":6920960,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25457","ServerKey":"pl181","X":458,"Y":350},{"Bonus":0,"Continent":"K56","ID":25458,"Name":"Jaaa","PlayerID":698635863,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25458","ServerKey":"pl181","X":626,"Y":591},{"Bonus":0,"Continent":"K64","ID":25459,"Name":"0036","PlayerID":698585370,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25459","ServerKey":"pl181","X":470,"Y":652},{"Bonus":0,"Continent":"K56","ID":25460,"Name":"036","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25460","ServerKey":"pl181","X":649,"Y":556},{"Bonus":0,"Continent":"K66","ID":25461,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":8131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25461","ServerKey":"pl181","X":606,"Y":618},{"Bonus":0,"Continent":"K46","ID":25462,"Name":"okok","PlayerID":849095435,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25462","ServerKey":"pl181","X":627,"Y":409},{"Bonus":1,"Continent":"K35","ID":25463,"Name":"004) Ɓagiewniki","PlayerID":849097103,"Points":6151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25463","ServerKey":"pl181","X":542,"Y":348},{"Bonus":0,"Continent":"K53","ID":25464,"Name":"-014-","PlayerID":699097885,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25464","ServerKey":"pl181","X":373,"Y":599},{"Bonus":0,"Continent":"K56","ID":25465,"Name":"P021 Gotham","PlayerID":8096537,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25465","ServerKey":"pl181","X":658,"Y":503},{"Bonus":0,"Continent":"K44","ID":25466,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25466","ServerKey":"pl181","X":475,"Y":412},{"Bonus":0,"Continent":"K34","ID":25467,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25467","ServerKey":"pl181","X":427,"Y":358},{"Bonus":0,"Continent":"K43","ID":25468,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25468","ServerKey":"pl181","X":343,"Y":471},{"Bonus":0,"Continent":"K64","ID":25469,"Name":"008","PlayerID":849084985,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25469","ServerKey":"pl181","X":446,"Y":626},{"Bonus":0,"Continent":"K46","ID":25470,"Name":"B14","PlayerID":849093742,"Points":8111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25470","ServerKey":"pl181","X":652,"Y":449},{"Bonus":0,"Continent":"K65","ID":25472,"Name":"030","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25472","ServerKey":"pl181","X":568,"Y":643},{"Bonus":0,"Continent":"K64","ID":25473,"Name":"0002. HMS Prince (1670)","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25473","ServerKey":"pl181","X":468,"Y":654},{"Bonus":0,"Continent":"K33","ID":25474,"Name":"A-034","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25474","ServerKey":"pl181","X":390,"Y":388},{"Bonus":0,"Continent":"K53","ID":25475,"Name":"K53 040 Castamere","PlayerID":1830149,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25475","ServerKey":"pl181","X":345,"Y":509},{"Bonus":0,"Continent":"K33","ID":25477,"Name":"009","PlayerID":849027025,"Points":8133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25477","ServerKey":"pl181","X":398,"Y":384},{"Bonus":0,"Continent":"K46","ID":25478,"Name":"BACÓWKA |039|","PlayerID":7394371,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25478","ServerKey":"pl181","X":622,"Y":403},{"Bonus":0,"Continent":"K34","ID":25479,"Name":".023.","PlayerID":698489071,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25479","ServerKey":"pl181","X":485,"Y":368},{"Bonus":0,"Continent":"K56","ID":25480,"Name":"D 014","PlayerID":8078914,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25480","ServerKey":"pl181","X":662,"Y":504},{"Bonus":0,"Continent":"K56","ID":25482,"Name":"RON","PlayerID":698768565,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25482","ServerKey":"pl181","X":656,"Y":534},{"Bonus":0,"Continent":"K34","ID":25483,"Name":"007","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25483","ServerKey":"pl181","X":401,"Y":376},{"Bonus":0,"Continent":"K36","ID":25484,"Name":"C001","PlayerID":699485250,"Points":6950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25484","ServerKey":"pl181","X":607,"Y":384},{"Bonus":0,"Continent":"K56","ID":25485,"Name":"016","PlayerID":699351301,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25485","ServerKey":"pl181","X":653,"Y":544},{"Bonus":0,"Continent":"K35","ID":25488,"Name":"A031","PlayerID":699485250,"Points":8722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25488","ServerKey":"pl181","X":590,"Y":369},{"Bonus":0,"Continent":"K64","ID":25489,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25489","ServerKey":"pl181","X":454,"Y":657},{"Bonus":0,"Continent":"K35","ID":25490,"Name":"Krosno 10","PlayerID":7485877,"Points":3552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25490","ServerKey":"pl181","X":532,"Y":343},{"Bonus":0,"Continent":"K64","ID":25492,"Name":"Ave Why!","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25492","ServerKey":"pl181","X":490,"Y":654},{"Bonus":0,"Continent":"K66","ID":25493,"Name":"*055","PlayerID":699567608,"Points":9289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25493","ServerKey":"pl181","X":602,"Y":624},{"Bonus":0,"Continent":"K64","ID":25494,"Name":"A006","PlayerID":848912772,"Points":4318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25494","ServerKey":"pl181","X":404,"Y":627},{"Bonus":0,"Continent":"K43","ID":25495,"Name":"M181_040","PlayerID":393668,"Points":9770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25495","ServerKey":"pl181","X":356,"Y":428},{"Bonus":0,"Continent":"K35","ID":25496,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25496","ServerKey":"pl181","X":566,"Y":365},{"Bonus":0,"Continent":"K35","ID":25497,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25497","ServerKey":"pl181","X":557,"Y":355},{"Bonus":0,"Continent":"K65","ID":25498,"Name":"sony911","PlayerID":1415009,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25498","ServerKey":"pl181","X":586,"Y":635},{"Bonus":0,"Continent":"K36","ID":25499,"Name":"Wioska barbarzyƄska","PlayerID":698241117,"Points":7256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25499","ServerKey":"pl181","X":617,"Y":393},{"Bonus":0,"Continent":"K46","ID":25500,"Name":"028","PlayerID":849006412,"Points":7860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25500","ServerKey":"pl181","X":657,"Y":495},{"Bonus":0,"Continent":"K43","ID":25501,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25501","ServerKey":"pl181","X":343,"Y":469},{"Bonus":0,"Continent":"K46","ID":25502,"Name":"035","PlayerID":7085502,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25502","ServerKey":"pl181","X":659,"Y":497},{"Bonus":0,"Continent":"K43","ID":25503,"Name":"004. Dla flag","PlayerID":698630507,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25503","ServerKey":"pl181","X":353,"Y":437},{"Bonus":0,"Continent":"K43","ID":25504,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":7929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25504","ServerKey":"pl181","X":354,"Y":444},{"Bonus":0,"Continent":"K43","ID":25505,"Name":"RE3","PlayerID":6258092,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25505","ServerKey":"pl181","X":348,"Y":453},{"Bonus":0,"Continent":"K65","ID":25506,"Name":"Antyszczepany","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25506","ServerKey":"pl181","X":599,"Y":624},{"Bonus":0,"Continent":"K56","ID":25507,"Name":"017","PlayerID":699351301,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25507","ServerKey":"pl181","X":655,"Y":535},{"Bonus":0,"Continent":"K33","ID":25509,"Name":"Wioska 006","PlayerID":8419570,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25509","ServerKey":"pl181","X":388,"Y":387},{"Bonus":2,"Continent":"K56","ID":25510,"Name":"0029 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25510","ServerKey":"pl181","X":624,"Y":595},{"Bonus":0,"Continent":"K36","ID":25511,"Name":"C004","PlayerID":699485250,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25511","ServerKey":"pl181","X":610,"Y":384},{"Bonus":0,"Continent":"K46","ID":25512,"Name":"Jan 015 Nord K","PlayerID":879782,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25512","ServerKey":"pl181","X":650,"Y":450},{"Bonus":0,"Continent":"K56","ID":25513,"Name":"Wioska Kaffiks X","PlayerID":6136757,"Points":6231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25513","ServerKey":"pl181","X":639,"Y":579},{"Bonus":0,"Continent":"K66","ID":25514,"Name":"94k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25514","ServerKey":"pl181","X":608,"Y":619},{"Bonus":0,"Continent":"K35","ID":25515,"Name":"Lord Lord Franek .#112","PlayerID":698420691,"Points":10431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25515","ServerKey":"pl181","X":529,"Y":342},{"Bonus":0,"Continent":"K43","ID":25516,"Name":"A0064","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25516","ServerKey":"pl181","X":346,"Y":491},{"Bonus":0,"Continent":"K64","ID":25517,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25517","ServerKey":"pl181","X":438,"Y":644},{"Bonus":0,"Continent":"K35","ID":25518,"Name":"A028","PlayerID":699485250,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25518","ServerKey":"pl181","X":586,"Y":368},{"Bonus":0,"Continent":"K64","ID":25519,"Name":"[019]","PlayerID":9094538,"Points":3130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25519","ServerKey":"pl181","X":450,"Y":650},{"Bonus":0,"Continent":"K65","ID":25520,"Name":"Bizy 9","PlayerID":8954402,"Points":8956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25520","ServerKey":"pl181","X":504,"Y":656},{"Bonus":0,"Continent":"K53","ID":25521,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25521","ServerKey":"pl181","X":350,"Y":552},{"Bonus":0,"Continent":"K46","ID":25522,"Name":"Wioska barbarzyƄska","PlayerID":849095879,"Points":5001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25522","ServerKey":"pl181","X":652,"Y":458},{"Bonus":0,"Continent":"K63","ID":25523,"Name":"Wioska Lolitkaa","PlayerID":699007059,"Points":6536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25523","ServerKey":"pl181","X":389,"Y":607},{"Bonus":0,"Continent":"K53","ID":25524,"Name":"Starszyzna","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25524","ServerKey":"pl181","X":370,"Y":587},{"Bonus":0,"Continent":"K53","ID":25525,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25525","ServerKey":"pl181","X":346,"Y":514},{"Bonus":0,"Continent":"K65","ID":25526,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25526","ServerKey":"pl181","X":514,"Y":660},{"Bonus":0,"Continent":"K46","ID":25527,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":5776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25527","ServerKey":"pl181","X":655,"Y":462},{"Bonus":0,"Continent":"K43","ID":25528,"Name":"#010 Zenitek Love","PlayerID":849096215,"Points":2764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25528","ServerKey":"pl181","X":359,"Y":433},{"Bonus":0,"Continent":"K43","ID":25529,"Name":"#009 Zenit Pan K43","PlayerID":849096215,"Points":2368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25529","ServerKey":"pl181","X":360,"Y":434},{"Bonus":0,"Continent":"K53","ID":25530,"Name":"026.Barbara10","PlayerID":1830149,"Points":4985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25530","ServerKey":"pl181","X":340,"Y":514},{"Bonus":0,"Continent":"K63","ID":25531,"Name":"Pobozowisko","PlayerID":699513260,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25531","ServerKey":"pl181","X":392,"Y":609},{"Bonus":0,"Continent":"K65","ID":25532,"Name":"044","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25532","ServerKey":"pl181","X":570,"Y":642},{"Bonus":0,"Continent":"K34","ID":25533,"Name":"#0005 ScorpioSTW","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25533","ServerKey":"pl181","X":472,"Y":347},{"Bonus":0,"Continent":"K65","ID":25534,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25534","ServerKey":"pl181","X":521,"Y":652},{"Bonus":0,"Continent":"K34","ID":25535,"Name":"Yyyy","PlayerID":699883079,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25535","ServerKey":"pl181","X":491,"Y":342},{"Bonus":0,"Continent":"K56","ID":25536,"Name":"022","PlayerID":699351301,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25536","ServerKey":"pl181","X":655,"Y":520},{"Bonus":0,"Continent":"K53","ID":25537,"Name":"C001","PlayerID":849090130,"Points":6727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25537","ServerKey":"pl181","X":365,"Y":582},{"Bonus":0,"Continent":"K56","ID":25538,"Name":"jaaa","PlayerID":698635863,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25538","ServerKey":"pl181","X":638,"Y":576},{"Bonus":0,"Continent":"K33","ID":25539,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25539","ServerKey":"pl181","X":376,"Y":398},{"Bonus":0,"Continent":"K34","ID":25540,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":10022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25540","ServerKey":"pl181","X":494,"Y":342},{"Bonus":0,"Continent":"K34","ID":25541,"Name":"0013","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25541","ServerKey":"pl181","X":419,"Y":366},{"Bonus":0,"Continent":"K34","ID":25542,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25542","ServerKey":"pl181","X":491,"Y":343},{"Bonus":0,"Continent":"K43","ID":25543,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25543","ServerKey":"pl181","X":351,"Y":444},{"Bonus":0,"Continent":"K33","ID":25544,"Name":"Wioska 003","PlayerID":8419570,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25544","ServerKey":"pl181","X":382,"Y":392},{"Bonus":0,"Continent":"K34","ID":25545,"Name":"North Sochaczew","PlayerID":699796330,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25545","ServerKey":"pl181","X":423,"Y":359},{"Bonus":0,"Continent":"K53","ID":25546,"Name":"10. Grzybek","PlayerID":8665783,"Points":9381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25546","ServerKey":"pl181","X":376,"Y":599},{"Bonus":0,"Continent":"K46","ID":25547,"Name":"#056.","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25547","ServerKey":"pl181","X":645,"Y":433},{"Bonus":0,"Continent":"K63","ID":25548,"Name":".///...//././././././././","PlayerID":849097937,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25548","ServerKey":"pl181","X":379,"Y":606},{"Bonus":0,"Continent":"K35","ID":25549,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25549","ServerKey":"pl181","X":507,"Y":341},{"Bonus":0,"Continent":"K35","ID":25550,"Name":"Lord Lord Franek .#032","PlayerID":698420691,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25550","ServerKey":"pl181","X":525,"Y":345},{"Bonus":0,"Continent":"K56","ID":25551,"Name":"B 019","PlayerID":8078914,"Points":9227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25551","ServerKey":"pl181","X":657,"Y":537},{"Bonus":0,"Continent":"K56","ID":25552,"Name":"Wioska Kaffik VII","PlayerID":6136757,"Points":7035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25552","ServerKey":"pl181","X":635,"Y":579},{"Bonus":0,"Continent":"K34","ID":25553,"Name":"cc Wielka M3","PlayerID":3909522,"Points":6835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25553","ServerKey":"pl181","X":403,"Y":374},{"Bonus":0,"Continent":"K43","ID":25554,"Name":"Wioska","PlayerID":848946608,"Points":6016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25554","ServerKey":"pl181","X":350,"Y":453},{"Bonus":0,"Continent":"K34","ID":25555,"Name":"0042","PlayerID":848913037,"Points":8572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25555","ServerKey":"pl181","X":411,"Y":370},{"Bonus":0,"Continent":"K46","ID":25556,"Name":"BACÓWKA |026|","PlayerID":7394371,"Points":5450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25556","ServerKey":"pl181","X":632,"Y":420},{"Bonus":0,"Continent":"K56","ID":25557,"Name":"P028 Afgan Skun","PlayerID":8096537,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25557","ServerKey":"pl181","X":658,"Y":523},{"Bonus":0,"Continent":"K56","ID":25558,"Name":"029","PlayerID":699351301,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25558","ServerKey":"pl181","X":647,"Y":526},{"Bonus":0,"Continent":"K34","ID":25559,"Name":"North Barba 018","PlayerID":699796330,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25559","ServerKey":"pl181","X":421,"Y":361},{"Bonus":0,"Continent":"K34","ID":25560,"Name":"K34 - [016] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25560","ServerKey":"pl181","X":445,"Y":350},{"Bonus":0,"Continent":"K53","ID":25561,"Name":"x013","PlayerID":9264752,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25561","ServerKey":"pl181","X":358,"Y":566},{"Bonus":0,"Continent":"K33","ID":25562,"Name":"A-046-Heffitto","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25562","ServerKey":"pl181","X":389,"Y":387},{"Bonus":0,"Continent":"K34","ID":25563,"Name":"0016","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25563","ServerKey":"pl181","X":416,"Y":366},{"Bonus":0,"Continent":"K46","ID":25564,"Name":"046- Mroczna Osada","PlayerID":849035905,"Points":6135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25564","ServerKey":"pl181","X":629,"Y":413},{"Bonus":0,"Continent":"K64","ID":25565,"Name":"Ave Why!","PlayerID":698585370,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25565","ServerKey":"pl181","X":491,"Y":644},{"Bonus":0,"Continent":"K56","ID":25566,"Name":"B.016","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25566","ServerKey":"pl181","X":666,"Y":507},{"Bonus":0,"Continent":"K56","ID":25567,"Name":"001","PlayerID":699301458,"Points":1475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25567","ServerKey":"pl181","X":645,"Y":570},{"Bonus":0,"Continent":"K34","ID":25568,"Name":"Szlachcic","PlayerID":698160606,"Points":10425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25568","ServerKey":"pl181","X":408,"Y":373},{"Bonus":0,"Continent":"K35","ID":25569,"Name":"Wyngiel we wsi","PlayerID":699072129,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25569","ServerKey":"pl181","X":554,"Y":348},{"Bonus":5,"Continent":"K56","ID":25570,"Name":"021","PlayerID":699351301,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25570","ServerKey":"pl181","X":654,"Y":523},{"Bonus":0,"Continent":"K64","ID":25572,"Name":"016.","PlayerID":849034882,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25572","ServerKey":"pl181","X":488,"Y":656},{"Bonus":3,"Continent":"K53","ID":25573,"Name":"03. Maj preszysz","PlayerID":8665783,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25573","ServerKey":"pl181","X":369,"Y":593},{"Bonus":0,"Continent":"K56","ID":25574,"Name":"500","PlayerID":7038651,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25574","ServerKey":"pl181","X":649,"Y":544},{"Bonus":0,"Continent":"K34","ID":25575,"Name":"0014","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25575","ServerKey":"pl181","X":419,"Y":368},{"Bonus":0,"Continent":"K53","ID":25577,"Name":"-013-","PlayerID":699097885,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25577","ServerKey":"pl181","X":372,"Y":598},{"Bonus":0,"Continent":"K66","ID":25580,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":8660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25580","ServerKey":"pl181","X":607,"Y":616},{"Bonus":0,"Continent":"K66","ID":25582,"Name":"Ć»UBRAWKA 003","PlayerID":33900,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25582","ServerKey":"pl181","X":604,"Y":623},{"Bonus":0,"Continent":"K53","ID":25583,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":10283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25583","ServerKey":"pl181","X":365,"Y":583},{"Bonus":0,"Continent":"K46","ID":25584,"Name":"024 MONETKI","PlayerID":7588382,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25584","ServerKey":"pl181","X":654,"Y":482},{"Bonus":0,"Continent":"K56","ID":25585,"Name":"62k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25585","ServerKey":"pl181","X":648,"Y":563},{"Bonus":0,"Continent":"K56","ID":25586,"Name":"=038= Wioska barbarzyƄska","PlayerID":3781794,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25586","ServerKey":"pl181","X":651,"Y":552},{"Bonus":0,"Continent":"K46","ID":25587,"Name":"W 06","PlayerID":699524891,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25587","ServerKey":"pl181","X":654,"Y":455},{"Bonus":0,"Continent":"K53","ID":25588,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25588","ServerKey":"pl181","X":342,"Y":521},{"Bonus":0,"Continent":"K66","ID":25589,"Name":"0004","PlayerID":6417987,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25589","ServerKey":"pl181","X":613,"Y":614},{"Bonus":0,"Continent":"K65","ID":25590,"Name":"017.","PlayerID":699695167,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25590","ServerKey":"pl181","X":559,"Y":648},{"Bonus":0,"Continent":"K64","ID":25591,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25591","ServerKey":"pl181","X":499,"Y":636},{"Bonus":0,"Continent":"K46","ID":25592,"Name":"B06","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25592","ServerKey":"pl181","X":645,"Y":445},{"Bonus":7,"Continent":"K35","ID":25593,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25593","ServerKey":"pl181","X":550,"Y":348},{"Bonus":0,"Continent":"K56","ID":25594,"Name":"Wioska Kaffiks XII","PlayerID":6136757,"Points":4277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25594","ServerKey":"pl181","X":632,"Y":579},{"Bonus":0,"Continent":"K64","ID":25595,"Name":"KrĂłlestwo Pledos ASPKTO","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25595","ServerKey":"pl181","X":488,"Y":659},{"Bonus":0,"Continent":"K53","ID":25598,"Name":"off 100 %","PlayerID":849012521,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25598","ServerKey":"pl181","X":355,"Y":570},{"Bonus":0,"Continent":"K46","ID":25599,"Name":"BACÓWKA |031|","PlayerID":7394371,"Points":5808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25599","ServerKey":"pl181","X":625,"Y":410},{"Bonus":0,"Continent":"K53","ID":25600,"Name":"014.","PlayerID":1830149,"Points":9758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25600","ServerKey":"pl181","X":341,"Y":520},{"Bonus":0,"Continent":"K56","ID":25601,"Name":"PZ036","PlayerID":8096537,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25601","ServerKey":"pl181","X":656,"Y":520},{"Bonus":0,"Continent":"K46","ID":25602,"Name":"026 - Elx","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25602","ServerKey":"pl181","X":644,"Y":443},{"Bonus":6,"Continent":"K65","ID":25603,"Name":"*LoƂmont","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25603","ServerKey":"pl181","X":575,"Y":636},{"Bonus":0,"Continent":"K64","ID":25604,"Name":"104","PlayerID":849084985,"Points":4739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25604","ServerKey":"pl181","X":442,"Y":643},{"Bonus":0,"Continent":"K64","ID":25605,"Name":"Ave Why!","PlayerID":8729672,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25605","ServerKey":"pl181","X":451,"Y":628},{"Bonus":0,"Continent":"K35","ID":25606,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25606","ServerKey":"pl181","X":567,"Y":359},{"Bonus":0,"Continent":"K65","ID":25607,"Name":"kathare","PlayerID":873575,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25607","ServerKey":"pl181","X":557,"Y":645},{"Bonus":0,"Continent":"K35","ID":25608,"Name":"Lord Lord Franek .#210","PlayerID":698420691,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25608","ServerKey":"pl181","X":508,"Y":346},{"Bonus":0,"Continent":"K43","ID":25609,"Name":"*252*","PlayerID":699273451,"Points":9317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25609","ServerKey":"pl181","X":355,"Y":435},{"Bonus":0,"Continent":"K35","ID":25610,"Name":"020","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25610","ServerKey":"pl181","X":514,"Y":341},{"Bonus":0,"Continent":"K63","ID":25611,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25611","ServerKey":"pl181","X":386,"Y":603},{"Bonus":0,"Continent":"K53","ID":25613,"Name":"off 100 %","PlayerID":849012521,"Points":8795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25613","ServerKey":"pl181","X":358,"Y":568},{"Bonus":0,"Continent":"K43","ID":25614,"Name":"A0237","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25614","ServerKey":"pl181","X":343,"Y":487},{"Bonus":0,"Continent":"K65","ID":25615,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":7626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25615","ServerKey":"pl181","X":551,"Y":653},{"Bonus":0,"Continent":"K35","ID":25616,"Name":"Wioska barbarzyƄska 030","PlayerID":6343784,"Points":7437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25616","ServerKey":"pl181","X":501,"Y":340},{"Bonus":0,"Continent":"K35","ID":25617,"Name":"Lord Lord Franek .#051","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25617","ServerKey":"pl181","X":536,"Y":343},{"Bonus":0,"Continent":"K65","ID":25618,"Name":"Wioska Fellipe23","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25618","ServerKey":"pl181","X":587,"Y":627},{"Bonus":0,"Continent":"K43","ID":25619,"Name":"A0071","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25619","ServerKey":"pl181","X":346,"Y":486},{"Bonus":0,"Continent":"K65","ID":25620,"Name":"SSJ 060","PlayerID":699054373,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25620","ServerKey":"pl181","X":506,"Y":655},{"Bonus":0,"Continent":"K53","ID":25621,"Name":"Chekku - meito","PlayerID":9280477,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25621","ServerKey":"pl181","X":342,"Y":527},{"Bonus":0,"Continent":"K34","ID":25622,"Name":"North Barba Zeus","PlayerID":699796330,"Points":10456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25622","ServerKey":"pl181","X":424,"Y":364},{"Bonus":0,"Continent":"K53","ID":25624,"Name":"off 100 %","PlayerID":849012521,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25624","ServerKey":"pl181","X":352,"Y":562},{"Bonus":0,"Continent":"K43","ID":25625,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25625","ServerKey":"pl181","X":369,"Y":415},{"Bonus":0,"Continent":"K34","ID":25626,"Name":"072...barbarka centr","PlayerID":6920960,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25626","ServerKey":"pl181","X":457,"Y":350},{"Bonus":0,"Continent":"K46","ID":25627,"Name":"B18","PlayerID":849093742,"Points":7944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25627","ServerKey":"pl181","X":647,"Y":448},{"Bonus":0,"Continent":"K35","ID":25628,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25628","ServerKey":"pl181","X":510,"Y":342},{"Bonus":0,"Continent":"K43","ID":25629,"Name":"Wioska barbarzyƄska III","PlayerID":8967440,"Points":2415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25629","ServerKey":"pl181","X":377,"Y":404},{"Bonus":0,"Continent":"K43","ID":25631,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25631","ServerKey":"pl181","X":351,"Y":442},{"Bonus":0,"Continent":"K65","ID":25632,"Name":"033","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25632","ServerKey":"pl181","X":571,"Y":639},{"Bonus":0,"Continent":"K56","ID":25633,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25633","ServerKey":"pl181","X":664,"Y":510},{"Bonus":0,"Continent":"K53","ID":25634,"Name":"Mamm60n","PlayerID":849095992,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25634","ServerKey":"pl181","X":375,"Y":596},{"Bonus":0,"Continent":"K54","ID":25635,"Name":"Karolina3116 (Karolina3116)","PlayerID":698769107,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25635","ServerKey":"pl181","X":414,"Y":578},{"Bonus":0,"Continent":"K46","ID":25636,"Name":"038","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25636","ServerKey":"pl181","X":653,"Y":489},{"Bonus":0,"Continent":"K63","ID":25637,"Name":"0464","PlayerID":698659980,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25637","ServerKey":"pl181","X":382,"Y":601},{"Bonus":0,"Continent":"K43","ID":25638,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25638","ServerKey":"pl181","X":352,"Y":442},{"Bonus":0,"Continent":"K35","ID":25639,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25639","ServerKey":"pl181","X":560,"Y":352},{"Bonus":0,"Continent":"K53","ID":25640,"Name":"off 100 %","PlayerID":849012521,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25640","ServerKey":"pl181","X":356,"Y":570},{"Bonus":0,"Continent":"K35","ID":25641,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25641","ServerKey":"pl181","X":579,"Y":364},{"Bonus":0,"Continent":"K64","ID":25642,"Name":"12 Esgaroth","PlayerID":699849210,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25642","ServerKey":"pl181","X":451,"Y":654},{"Bonus":0,"Continent":"K56","ID":25643,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25643","ServerKey":"pl181","X":626,"Y":589},{"Bonus":0,"Continent":"K53","ID":25644,"Name":"x011","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25644","ServerKey":"pl181","X":353,"Y":563},{"Bonus":0,"Continent":"K43","ID":25645,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25645","ServerKey":"pl181","X":344,"Y":481},{"Bonus":0,"Continent":"K64","ID":25646,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25646","ServerKey":"pl181","X":434,"Y":646},{"Bonus":0,"Continent":"K33","ID":25647,"Name":"Wioska 011","PlayerID":8419570,"Points":8775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25647","ServerKey":"pl181","X":381,"Y":392},{"Bonus":0,"Continent":"K65","ID":25648,"Name":"wƂodek :)","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25648","ServerKey":"pl181","X":563,"Y":646},{"Bonus":0,"Continent":"K64","ID":25649,"Name":"B06","PlayerID":698652014,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25649","ServerKey":"pl181","X":491,"Y":654},{"Bonus":0,"Continent":"K53","ID":25650,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25650","ServerKey":"pl181","X":362,"Y":557},{"Bonus":0,"Continent":"K34","ID":25651,"Name":"078...barbarka ------------","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25651","ServerKey":"pl181","X":458,"Y":347},{"Bonus":0,"Continent":"K64","ID":25652,"Name":"S1Joker","PlayerID":698585370,"Points":11213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25652","ServerKey":"pl181","X":476,"Y":657},{"Bonus":0,"Continent":"K53","ID":25653,"Name":"off 100 %","PlayerID":849012521,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25653","ServerKey":"pl181","X":358,"Y":567},{"Bonus":0,"Continent":"K64","ID":25654,"Name":"Edessa","PlayerID":849089459,"Points":8149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25654","ServerKey":"pl181","X":431,"Y":643},{"Bonus":0,"Continent":"K36","ID":25655,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":6182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25655","ServerKey":"pl181","X":609,"Y":389},{"Bonus":0,"Continent":"K34","ID":25656,"Name":"012","PlayerID":698739350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25656","ServerKey":"pl181","X":484,"Y":345},{"Bonus":0,"Continent":"K53","ID":25657,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25657","ServerKey":"pl181","X":351,"Y":560},{"Bonus":0,"Continent":"K56","ID":25658,"Name":"Wioska Kaffiks XIV","PlayerID":6136757,"Points":6375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25658","ServerKey":"pl181","X":631,"Y":586},{"Bonus":0,"Continent":"K53","ID":25659,"Name":"off 100 %","PlayerID":849012521,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25659","ServerKey":"pl181","X":356,"Y":571},{"Bonus":0,"Continent":"K65","ID":25661,"Name":"?005","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25661","ServerKey":"pl181","X":537,"Y":655},{"Bonus":0,"Continent":"K36","ID":25662,"Name":"A 021","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25662","ServerKey":"pl181","X":603,"Y":377},{"Bonus":0,"Continent":"K66","ID":25663,"Name":"Ronin P","PlayerID":698768565,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25663","ServerKey":"pl181","X":612,"Y":611},{"Bonus":0,"Continent":"K43","ID":25664,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25664","ServerKey":"pl181","X":346,"Y":482},{"Bonus":0,"Continent":"K53","ID":25665,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25665","ServerKey":"pl181","X":345,"Y":505},{"Bonus":0,"Continent":"K56","ID":25666,"Name":"jaaa","PlayerID":698635863,"Points":10545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25666","ServerKey":"pl181","X":641,"Y":566},{"Bonus":0,"Continent":"K35","ID":25667,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25667","ServerKey":"pl181","X":508,"Y":343},{"Bonus":0,"Continent":"K53","ID":25668,"Name":"023.Barbara 7","PlayerID":1830149,"Points":4261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25668","ServerKey":"pl181","X":340,"Y":508},{"Bonus":0,"Continent":"K53","ID":25669,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25669","ServerKey":"pl181","X":347,"Y":537},{"Bonus":0,"Continent":"K34","ID":25670,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25670","ServerKey":"pl181","X":433,"Y":358},{"Bonus":0,"Continent":"K56","ID":25671,"Name":"220","PlayerID":7038651,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25671","ServerKey":"pl181","X":653,"Y":540},{"Bonus":0,"Continent":"K53","ID":25672,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25672","ServerKey":"pl181","X":360,"Y":565},{"Bonus":0,"Continent":"K46","ID":25673,"Name":"050","PlayerID":7085502,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25673","ServerKey":"pl181","X":661,"Y":498},{"Bonus":0,"Continent":"K33","ID":25674,"Name":"0005 Warszawa","PlayerID":699402816,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25674","ServerKey":"pl181","X":394,"Y":380},{"Bonus":0,"Continent":"K43","ID":25675,"Name":"7.62 mm","PlayerID":699777234,"Points":5619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25675","ServerKey":"pl181","X":368,"Y":418},{"Bonus":0,"Continent":"K56","ID":25677,"Name":"Szlachcic","PlayerID":930720,"Points":6227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25677","ServerKey":"pl181","X":633,"Y":590},{"Bonus":0,"Continent":"K46","ID":25678,"Name":"047. Florentia","PlayerID":849091866,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25678","ServerKey":"pl181","X":651,"Y":468},{"Bonus":0,"Continent":"K56","ID":25679,"Name":"045 Providence","PlayerID":699272880,"Points":5837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25679","ServerKey":"pl181","X":634,"Y":587},{"Bonus":0,"Continent":"K34","ID":25680,"Name":"094","PlayerID":698364331,"Points":3958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25680","ServerKey":"pl181","X":408,"Y":370},{"Bonus":0,"Continent":"K35","ID":25681,"Name":"069 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25681","ServerKey":"pl181","X":546,"Y":350},{"Bonus":0,"Continent":"K34","ID":25682,"Name":"089...bar","PlayerID":6920960,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25682","ServerKey":"pl181","X":459,"Y":345},{"Bonus":0,"Continent":"K56","ID":25683,"Name":"076","PlayerID":699351301,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25683","ServerKey":"pl181","X":657,"Y":522},{"Bonus":0,"Continent":"K53","ID":25684,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25684","ServerKey":"pl181","X":350,"Y":546},{"Bonus":0,"Continent":"K34","ID":25686,"Name":"aaaaaaaaaa","PlayerID":699191455,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25686","ServerKey":"pl181","X":438,"Y":358},{"Bonus":0,"Continent":"K46","ID":25688,"Name":"Jan dzik II","PlayerID":879782,"Points":7497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25688","ServerKey":"pl181","X":647,"Y":435},{"Bonus":0,"Continent":"K65","ID":25689,"Name":"027","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25689","ServerKey":"pl181","X":561,"Y":645},{"Bonus":0,"Continent":"K46","ID":25690,"Name":"B16","PlayerID":849093742,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25690","ServerKey":"pl181","X":650,"Y":446},{"Bonus":0,"Continent":"K64","ID":25691,"Name":"Ave Why!","PlayerID":698585370,"Points":9686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25691","ServerKey":"pl181","X":477,"Y":659},{"Bonus":0,"Continent":"K65","ID":25692,"Name":"0489","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25692","ServerKey":"pl181","X":533,"Y":652},{"Bonus":0,"Continent":"K66","ID":25693,"Name":"zzzGranica Bledu 11","PlayerID":699778867,"Points":8510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25693","ServerKey":"pl181","X":609,"Y":610},{"Bonus":0,"Continent":"K64","ID":25694,"Name":"Dublin","PlayerID":699736927,"Points":9736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25694","ServerKey":"pl181","X":431,"Y":642},{"Bonus":0,"Continent":"K65","ID":25695,"Name":"0545","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25695","ServerKey":"pl181","X":531,"Y":658},{"Bonus":6,"Continent":"K56","ID":25696,"Name":"079","PlayerID":849095227,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25696","ServerKey":"pl181","X":645,"Y":556},{"Bonus":0,"Continent":"K46","ID":25697,"Name":"032","PlayerID":7085502,"Points":9864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25697","ServerKey":"pl181","X":658,"Y":498},{"Bonus":0,"Continent":"K43","ID":25698,"Name":"Bardzo czyƛciutko tutaj","PlayerID":6258092,"Points":4125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25698","ServerKey":"pl181","X":346,"Y":452},{"Bonus":0,"Continent":"K65","ID":25699,"Name":"*Lusita","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25699","ServerKey":"pl181","X":574,"Y":635},{"Bonus":0,"Continent":"K35","ID":25700,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25700","ServerKey":"pl181","X":563,"Y":352},{"Bonus":0,"Continent":"K36","ID":25701,"Name":"A 004","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25701","ServerKey":"pl181","X":605,"Y":387},{"Bonus":0,"Continent":"K35","ID":25702,"Name":"124 xx2","PlayerID":699491076,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25702","ServerKey":"pl181","X":548,"Y":349},{"Bonus":0,"Continent":"K64","ID":25704,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":5232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25704","ServerKey":"pl181","X":421,"Y":634},{"Bonus":7,"Continent":"K65","ID":25705,"Name":"005 serniczek na zimno","PlayerID":8954402,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25705","ServerKey":"pl181","X":503,"Y":661},{"Bonus":0,"Continent":"K34","ID":25707,"Name":"Flotsam2","PlayerID":849048216,"Points":3020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25707","ServerKey":"pl181","X":484,"Y":340},{"Bonus":0,"Continent":"K64","ID":25708,"Name":"W odwiedzinach u kuzyna","PlayerID":848913998,"Points":11470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25708","ServerKey":"pl181","X":431,"Y":639},{"Bonus":0,"Continent":"K56","ID":25709,"Name":"jaaa","PlayerID":698635863,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25709","ServerKey":"pl181","X":638,"Y":575},{"Bonus":0,"Continent":"K53","ID":25710,"Name":"Denger 20","PlayerID":698353083,"Points":9139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25710","ServerKey":"pl181","X":368,"Y":587},{"Bonus":0,"Continent":"K64","ID":25711,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":7352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25711","ServerKey":"pl181","X":434,"Y":641},{"Bonus":0,"Continent":"K64","ID":25712,"Name":"Wioska barbarzyƄska","PlayerID":8501514,"Points":8225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25712","ServerKey":"pl181","X":487,"Y":661},{"Bonus":0,"Continent":"K63","ID":25713,"Name":"Valhalla B0","PlayerID":849097002,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25713","ServerKey":"pl181","X":379,"Y":605},{"Bonus":0,"Continent":"K34","ID":25714,"Name":"North Barba 009","PlayerID":699796330,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25714","ServerKey":"pl181","X":424,"Y":360},{"Bonus":0,"Continent":"K33","ID":25715,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":4096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25715","ServerKey":"pl181","X":377,"Y":398},{"Bonus":0,"Continent":"K43","ID":25717,"Name":"107","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25717","ServerKey":"pl181","X":351,"Y":460},{"Bonus":9,"Continent":"K43","ID":25718,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25718","ServerKey":"pl181","X":373,"Y":409},{"Bonus":0,"Continent":"K46","ID":25719,"Name":"lllllllllllllllll","PlayerID":699429153,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25719","ServerKey":"pl181","X":624,"Y":401},{"Bonus":0,"Continent":"K56","ID":25720,"Name":"RON","PlayerID":698768565,"Points":6552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25720","ServerKey":"pl181","X":655,"Y":537},{"Bonus":0,"Continent":"K34","ID":25721,"Name":"004...CENTR_na przĂłd","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25721","ServerKey":"pl181","X":461,"Y":352},{"Bonus":0,"Continent":"K56","ID":25722,"Name":"063","PlayerID":698786826,"Points":5057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25722","ServerKey":"pl181","X":619,"Y":598},{"Bonus":0,"Continent":"K64","ID":25723,"Name":"psycha sitting","PlayerID":699736927,"Points":9590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25723","ServerKey":"pl181","X":451,"Y":649},{"Bonus":0,"Continent":"K36","ID":25724,"Name":"Belle Fourche","PlayerID":699298370,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25724","ServerKey":"pl181","X":619,"Y":391},{"Bonus":0,"Continent":"K56","ID":25725,"Name":"023","PlayerID":699099811,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25725","ServerKey":"pl181","X":630,"Y":585},{"Bonus":0,"Continent":"K55","ID":25726,"Name":"0009 ah ten stan","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25726","ServerKey":"pl181","X":504,"Y":505},{"Bonus":0,"Continent":"K64","ID":25727,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25727","ServerKey":"pl181","X":454,"Y":649},{"Bonus":0,"Continent":"K34","ID":25728,"Name":"K34 - [096] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25728","ServerKey":"pl181","X":444,"Y":355},{"Bonus":0,"Continent":"K53","ID":25729,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25729","ServerKey":"pl181","X":348,"Y":529},{"Bonus":0,"Continent":"K65","ID":25730,"Name":"0587","PlayerID":698659980,"Points":8331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25730","ServerKey":"pl181","X":542,"Y":656},{"Bonus":0,"Continent":"K43","ID":25731,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25731","ServerKey":"pl181","X":345,"Y":478},{"Bonus":0,"Continent":"K43","ID":25732,"Name":"KrakĂłw","PlayerID":848886056,"Points":5650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25732","ServerKey":"pl181","X":375,"Y":401},{"Bonus":0,"Continent":"K53","ID":25733,"Name":"Wioska barbarzyƄska","PlayerID":9280477,"Points":2039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25733","ServerKey":"pl181","X":340,"Y":523},{"Bonus":0,"Continent":"K46","ID":25734,"Name":"032.","PlayerID":849094609,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25734","ServerKey":"pl181","X":642,"Y":482},{"Bonus":0,"Continent":"K36","ID":25735,"Name":"A 018","PlayerID":6384450,"Points":8768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25735","ServerKey":"pl181","X":605,"Y":385},{"Bonus":0,"Continent":"K33","ID":25736,"Name":"1.2","PlayerID":8967440,"Points":3480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25736","ServerKey":"pl181","X":392,"Y":390},{"Bonus":0,"Continent":"K53","ID":25737,"Name":"off 100 %","PlayerID":849012521,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25737","ServerKey":"pl181","X":357,"Y":569},{"Bonus":0,"Continent":"K34","ID":25738,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25738","ServerKey":"pl181","X":489,"Y":345},{"Bonus":0,"Continent":"K46","ID":25739,"Name":"Wioska zbiku1990","PlayerID":699524891,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25739","ServerKey":"pl181","X":646,"Y":450},{"Bonus":0,"Continent":"K35","ID":25740,"Name":"I#007","PlayerID":2065730,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25740","ServerKey":"pl181","X":599,"Y":378},{"Bonus":0,"Continent":"K35","ID":25741,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25741","ServerKey":"pl181","X":565,"Y":354},{"Bonus":0,"Continent":"K65","ID":25742,"Name":"tego nie","PlayerID":699494488,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25742","ServerKey":"pl181","X":513,"Y":656},{"Bonus":0,"Continent":"K43","ID":25743,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25743","ServerKey":"pl181","X":343,"Y":478},{"Bonus":0,"Continent":"K65","ID":25744,"Name":"010 lord cesarok","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25744","ServerKey":"pl181","X":562,"Y":643},{"Bonus":0,"Continent":"K53","ID":25745,"Name":"Dajanka 02","PlayerID":849012843,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25745","ServerKey":"pl181","X":350,"Y":556},{"Bonus":0,"Continent":"K53","ID":25746,"Name":"19. Holenderscy likwidatorzy","PlayerID":8665783,"Points":8712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25746","ServerKey":"pl181","X":369,"Y":594},{"Bonus":3,"Continent":"K65","ID":25747,"Name":"021 serniczek krĂłlewski","PlayerID":8954402,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25747","ServerKey":"pl181","X":511,"Y":660},{"Bonus":0,"Continent":"K35","ID":25748,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25748","ServerKey":"pl181","X":544,"Y":354},{"Bonus":0,"Continent":"K34","ID":25749,"Name":"026","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25749","ServerKey":"pl181","X":483,"Y":344},{"Bonus":0,"Continent":"K35","ID":25750,"Name":"Klaudek3","PlayerID":849092309,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25750","ServerKey":"pl181","X":592,"Y":369},{"Bonus":0,"Continent":"K65","ID":25751,"Name":"*051","PlayerID":699567608,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25751","ServerKey":"pl181","X":590,"Y":631},{"Bonus":0,"Continent":"K34","ID":25752,"Name":"081...CENTR","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25752","ServerKey":"pl181","X":454,"Y":350},{"Bonus":0,"Continent":"K65","ID":25753,"Name":"kathare","PlayerID":873575,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25753","ServerKey":"pl181","X":558,"Y":648},{"Bonus":0,"Continent":"K35","ID":25755,"Name":"002 Halland","PlayerID":699072129,"Points":8313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25755","ServerKey":"pl181","X":552,"Y":351},{"Bonus":0,"Continent":"K43","ID":25756,"Name":"A0235","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25756","ServerKey":"pl181","X":342,"Y":485},{"Bonus":0,"Continent":"K56","ID":25757,"Name":"053","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25757","ServerKey":"pl181","X":658,"Y":520},{"Bonus":0,"Continent":"K56","ID":25759,"Name":"D 005","PlayerID":8078914,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25759","ServerKey":"pl181","X":659,"Y":508},{"Bonus":0,"Continent":"K64","ID":25760,"Name":"Maniek PZGXR","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25760","ServerKey":"pl181","X":491,"Y":660},{"Bonus":0,"Continent":"K34","ID":25761,"Name":"Wiocha 4","PlayerID":849096544,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25761","ServerKey":"pl181","X":427,"Y":361},{"Bonus":0,"Continent":"K46","ID":25762,"Name":"B026","PlayerID":9314079,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25762","ServerKey":"pl181","X":654,"Y":494},{"Bonus":0,"Continent":"K43","ID":25763,"Name":"No way","PlayerID":6258092,"Points":11348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25763","ServerKey":"pl181","X":346,"Y":456},{"Bonus":0,"Continent":"K36","ID":25764,"Name":"A 005","PlayerID":6384450,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25764","ServerKey":"pl181","X":608,"Y":387},{"Bonus":0,"Continent":"K56","ID":25765,"Name":"007","PlayerID":849095963,"Points":9042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25765","ServerKey":"pl181","X":644,"Y":558},{"Bonus":0,"Continent":"K43","ID":25766,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25766","ServerKey":"pl181","X":372,"Y":408},{"Bonus":0,"Continent":"K46","ID":25768,"Name":"B08","PlayerID":849093742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25768","ServerKey":"pl181","X":649,"Y":450},{"Bonus":0,"Continent":"K65","ID":25769,"Name":"004 serniczek z truskawkami","PlayerID":8954402,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25769","ServerKey":"pl181","X":502,"Y":661},{"Bonus":0,"Continent":"K35","ID":25770,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":4125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25770","ServerKey":"pl181","X":582,"Y":361},{"Bonus":0,"Continent":"K43","ID":25772,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25772","ServerKey":"pl181","X":342,"Y":466},{"Bonus":0,"Continent":"K65","ID":25773,"Name":"sony911","PlayerID":1415009,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25773","ServerKey":"pl181","X":585,"Y":629},{"Bonus":0,"Continent":"K46","ID":25775,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25775","ServerKey":"pl181","X":650,"Y":455},{"Bonus":0,"Continent":"K53","ID":25776,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25776","ServerKey":"pl181","X":342,"Y":503},{"Bonus":0,"Continent":"K43","ID":25777,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25777","ServerKey":"pl181","X":370,"Y":405},{"Bonus":0,"Continent":"K36","ID":25778,"Name":"Wioska Wstydu i Rozpaczy","PlayerID":699298370,"Points":7896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25778","ServerKey":"pl181","X":621,"Y":393},{"Bonus":3,"Continent":"K64","ID":25779,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25779","ServerKey":"pl181","X":470,"Y":657},{"Bonus":0,"Continent":"K63","ID":25780,"Name":"0633","PlayerID":698659980,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25780","ServerKey":"pl181","X":377,"Y":601},{"Bonus":0,"Continent":"K46","ID":25781,"Name":"18.Wszystko si","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25781","ServerKey":"pl181","X":635,"Y":411},{"Bonus":0,"Continent":"K34","ID":25782,"Name":"020...PÓƁNOCKA","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25782","ServerKey":"pl181","X":463,"Y":349},{"Bonus":0,"Continent":"K34","ID":25783,"Name":"Taki Pan","PlayerID":698739350,"Points":6264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25783","ServerKey":"pl181","X":499,"Y":343},{"Bonus":0,"Continent":"K65","ID":25784,"Name":"tego nie","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25784","ServerKey":"pl181","X":515,"Y":659},{"Bonus":0,"Continent":"K53","ID":25785,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25785","ServerKey":"pl181","X":352,"Y":550},{"Bonus":0,"Continent":"K36","ID":25786,"Name":"75.","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25786","ServerKey":"pl181","X":622,"Y":398},{"Bonus":0,"Continent":"K56","ID":25787,"Name":"067","PlayerID":698786826,"Points":9457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25787","ServerKey":"pl181","X":627,"Y":596},{"Bonus":0,"Continent":"K46","ID":25788,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25788","ServerKey":"pl181","X":633,"Y":412},{"Bonus":0,"Continent":"K43","ID":25789,"Name":"RE5","PlayerID":6258092,"Points":8655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25789","ServerKey":"pl181","X":350,"Y":450},{"Bonus":0,"Continent":"K34","ID":25790,"Name":"021...PóƂnoc","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25790","ServerKey":"pl181","X":463,"Y":345},{"Bonus":0,"Continent":"K34","ID":25791,"Name":"Z 004","PlayerID":6384450,"Points":7771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25791","ServerKey":"pl181","X":493,"Y":339},{"Bonus":4,"Continent":"K35","ID":25792,"Name":"Silva","PlayerID":699491076,"Points":8060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25792","ServerKey":"pl181","X":523,"Y":348},{"Bonus":0,"Continent":"K34","ID":25793,"Name":"Lecymy DUR","PlayerID":6169408,"Points":5513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25793","ServerKey":"pl181","X":428,"Y":360},{"Bonus":0,"Continent":"K34","ID":25794,"Name":"023...PÓƁNOC","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25794","ServerKey":"pl181","X":461,"Y":350},{"Bonus":0,"Continent":"K63","ID":25795,"Name":"0457","PlayerID":699513260,"Points":4634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25795","ServerKey":"pl181","X":379,"Y":602},{"Bonus":0,"Continent":"K63","ID":25796,"Name":"0465","PlayerID":699513260,"Points":3408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25796","ServerKey":"pl181","X":376,"Y":600},{"Bonus":0,"Continent":"K35","ID":25797,"Name":"114 Wioska barbarzyƄska","PlayerID":699491076,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25797","ServerKey":"pl181","X":545,"Y":346},{"Bonus":0,"Continent":"K35","ID":25798,"Name":"Lord Lord Franek .#033","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25798","ServerKey":"pl181","X":526,"Y":342},{"Bonus":0,"Continent":"K53","ID":25799,"Name":"Pobozowisko","PlayerID":699513260,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25799","ServerKey":"pl181","X":388,"Y":597},{"Bonus":0,"Continent":"K35","ID":25800,"Name":"Lord Lord Franek .#052","PlayerID":698420691,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25800","ServerKey":"pl181","X":533,"Y":343},{"Bonus":0,"Continent":"K65","ID":25801,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25801","ServerKey":"pl181","X":569,"Y":645},{"Bonus":0,"Continent":"K34","ID":25802,"Name":"#0263 deleted","PlayerID":1238300,"Points":2705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25802","ServerKey":"pl181","X":474,"Y":346},{"Bonus":0,"Continent":"K34","ID":25803,"Name":"#0019 kamilsan993","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25803","ServerKey":"pl181","X":465,"Y":343},{"Bonus":0,"Continent":"K34","ID":25804,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":7485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25804","ServerKey":"pl181","X":493,"Y":345},{"Bonus":0,"Continent":"K66","ID":25806,"Name":"MInas Morgul","PlayerID":849096285,"Points":4411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25806","ServerKey":"pl181","X":627,"Y":600},{"Bonus":0,"Continent":"K64","ID":25807,"Name":"049.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25807","ServerKey":"pl181","X":410,"Y":627},{"Bonus":0,"Continent":"K66","ID":25808,"Name":"097","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25808","ServerKey":"pl181","X":622,"Y":605},{"Bonus":9,"Continent":"K34","ID":25809,"Name":"Szlachcic","PlayerID":698160606,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25809","ServerKey":"pl181","X":404,"Y":371},{"Bonus":0,"Continent":"K35","ID":25810,"Name":"CSA","PlayerID":698739350,"Points":3892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25810","ServerKey":"pl181","X":500,"Y":340},{"Bonus":0,"Continent":"K34","ID":25811,"Name":"cc 008","PlayerID":3909522,"Points":8495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25811","ServerKey":"pl181","X":401,"Y":378},{"Bonus":6,"Continent":"K65","ID":25812,"Name":"0086","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25812","ServerKey":"pl181","X":585,"Y":630},{"Bonus":0,"Continent":"K53","ID":25813,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25813","ServerKey":"pl181","X":346,"Y":503},{"Bonus":0,"Continent":"K35","ID":25814,"Name":"Klaudek6","PlayerID":849092309,"Points":7172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25814","ServerKey":"pl181","X":592,"Y":368},{"Bonus":0,"Continent":"K34","ID":25815,"Name":"245...SOUTH","PlayerID":6920960,"Points":4283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25815","ServerKey":"pl181","X":476,"Y":347},{"Bonus":0,"Continent":"K43","ID":25816,"Name":"M181_024","PlayerID":393668,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25816","ServerKey":"pl181","X":357,"Y":424},{"Bonus":0,"Continent":"K35","ID":25817,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25817","ServerKey":"pl181","X":561,"Y":357},{"Bonus":0,"Continent":"K64","ID":25818,"Name":"012|| Pisces","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25818","ServerKey":"pl181","X":470,"Y":636},{"Bonus":0,"Continent":"K43","ID":25819,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25819","ServerKey":"pl181","X":346,"Y":478},{"Bonus":0,"Continent":"K43","ID":25820,"Name":"2AA","PlayerID":7765098,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25820","ServerKey":"pl181","X":355,"Y":434},{"Bonus":0,"Continent":"K44","ID":25821,"Name":"Monetki","PlayerID":699098531,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25821","ServerKey":"pl181","X":476,"Y":417},{"Bonus":0,"Continent":"K64","ID":25822,"Name":"010 nie ma spania na wyjazdach","PlayerID":699238479,"Points":4752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25822","ServerKey":"pl181","X":445,"Y":650},{"Bonus":0,"Continent":"K56","ID":25823,"Name":"043 Kirkwall","PlayerID":699272880,"Points":8324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25823","ServerKey":"pl181","X":629,"Y":593},{"Bonus":6,"Continent":"K64","ID":25824,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25824","ServerKey":"pl181","X":473,"Y":658},{"Bonus":0,"Continent":"K53","ID":25825,"Name":"36.","PlayerID":8004076,"Points":5282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25825","ServerKey":"pl181","X":352,"Y":548},{"Bonus":0,"Continent":"K35","ID":25826,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25826","ServerKey":"pl181","X":564,"Y":354},{"Bonus":3,"Continent":"K35","ID":25827,"Name":"Banan#3","PlayerID":699485250,"Points":8152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25827","ServerKey":"pl181","X":588,"Y":370},{"Bonus":0,"Continent":"K33","ID":25828,"Name":"#001","PlayerID":8967440,"Points":7018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25828","ServerKey":"pl181","X":379,"Y":395},{"Bonus":0,"Continent":"K64","ID":25829,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25829","ServerKey":"pl181","X":451,"Y":642},{"Bonus":0,"Continent":"K64","ID":25830,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":4216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25830","ServerKey":"pl181","X":432,"Y":644},{"Bonus":0,"Continent":"K35","ID":25831,"Name":"Lord Lord Franek .#034","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25831","ServerKey":"pl181","X":523,"Y":347},{"Bonus":0,"Continent":"K43","ID":25832,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25832","ServerKey":"pl181","X":374,"Y":408},{"Bonus":8,"Continent":"K56","ID":25833,"Name":"P023 Soul Society","PlayerID":8096537,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25833","ServerKey":"pl181","X":653,"Y":519},{"Bonus":0,"Continent":"K66","ID":25834,"Name":"wioska Papatryk94","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25834","ServerKey":"pl181","X":623,"Y":600},{"Bonus":0,"Continent":"K34","ID":25835,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25835","ServerKey":"pl181","X":431,"Y":358},{"Bonus":0,"Continent":"K43","ID":25836,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25836","ServerKey":"pl181","X":370,"Y":412},{"Bonus":0,"Continent":"K56","ID":25837,"Name":"0033 MzM","PlayerID":698416970,"Points":9128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25837","ServerKey":"pl181","X":625,"Y":593},{"Bonus":0,"Continent":"K46","ID":25838,"Name":"Wioska (039)","PlayerID":698232227,"Points":5022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25838","ServerKey":"pl181","X":644,"Y":438},{"Bonus":0,"Continent":"K46","ID":25839,"Name":"025 MONETKI","PlayerID":7588382,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25839","ServerKey":"pl181","X":657,"Y":489},{"Bonus":0,"Continent":"K35","ID":25840,"Name":"Taki Pan","PlayerID":698739350,"Points":4677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25840","ServerKey":"pl181","X":512,"Y":340},{"Bonus":0,"Continent":"K65","ID":25841,"Name":"039 kryzys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25841","ServerKey":"pl181","X":570,"Y":641},{"Bonus":0,"Continent":"K65","ID":25842,"Name":"Sony 911","PlayerID":1415009,"Points":10464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25842","ServerKey":"pl181","X":587,"Y":631},{"Bonus":0,"Continent":"K34","ID":25843,"Name":"K34 - [125] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25843","ServerKey":"pl181","X":439,"Y":351},{"Bonus":0,"Continent":"K65","ID":25844,"Name":"sony911","PlayerID":1415009,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25844","ServerKey":"pl181","X":583,"Y":633},{"Bonus":0,"Continent":"K36","ID":25845,"Name":"Gattacka","PlayerID":699298370,"Points":10142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25845","ServerKey":"pl181","X":618,"Y":390},{"Bonus":0,"Continent":"K56","ID":25846,"Name":"KREV 002","PlayerID":848988744,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25846","ServerKey":"pl181","X":644,"Y":567},{"Bonus":0,"Continent":"K53","ID":25848,"Name":"Macp 3","PlayerID":61791,"Points":5614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25848","ServerKey":"pl181","X":340,"Y":512},{"Bonus":0,"Continent":"K36","ID":25849,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25849","ServerKey":"pl181","X":621,"Y":396},{"Bonus":0,"Continent":"K63","ID":25850,"Name":"Valhalla 5","PlayerID":849097002,"Points":8443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25850","ServerKey":"pl181","X":381,"Y":606},{"Bonus":0,"Continent":"K34","ID":25851,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25851","ServerKey":"pl181","X":400,"Y":379},{"Bonus":0,"Continent":"K53","ID":25853,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25853","ServerKey":"pl181","X":355,"Y":565},{"Bonus":0,"Continent":"K64","ID":25854,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":4425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25854","ServerKey":"pl181","X":432,"Y":623},{"Bonus":0,"Continent":"K35","ID":25855,"Name":"005) Strzelin","PlayerID":849097103,"Points":5004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25855","ServerKey":"pl181","X":545,"Y":344},{"Bonus":0,"Continent":"K43","ID":25857,"Name":"A0240","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25857","ServerKey":"pl181","X":342,"Y":487},{"Bonus":0,"Continent":"K65","ID":25858,"Name":"Wioska barbarzyƄska","PlayerID":529552,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25858","ServerKey":"pl181","X":533,"Y":654},{"Bonus":0,"Continent":"K64","ID":25859,"Name":"085.","PlayerID":849034882,"Points":9341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25859","ServerKey":"pl181","X":485,"Y":654},{"Bonus":0,"Continent":"K53","ID":25860,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25860","ServerKey":"pl181","X":343,"Y":529},{"Bonus":0,"Continent":"K43","ID":25861,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25861","ServerKey":"pl181","X":345,"Y":483},{"Bonus":0,"Continent":"K33","ID":25862,"Name":"Wioska 014","PlayerID":8419570,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25862","ServerKey":"pl181","X":392,"Y":389},{"Bonus":0,"Continent":"K65","ID":25863,"Name":"*Nalfabet ulic","PlayerID":699443920,"Points":5326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25863","ServerKey":"pl181","X":575,"Y":643},{"Bonus":0,"Continent":"K35","ID":25864,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25864","ServerKey":"pl181","X":562,"Y":355},{"Bonus":0,"Continent":"K33","ID":25865,"Name":"K33 x002","PlayerID":698364331,"Points":3941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25865","ServerKey":"pl181","X":394,"Y":387},{"Bonus":0,"Continent":"K56","ID":25866,"Name":"MInas Ithil","PlayerID":849096285,"Points":4596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25866","ServerKey":"pl181","X":626,"Y":599},{"Bonus":0,"Continent":"K34","ID":25867,"Name":"K34 - [104] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25867","ServerKey":"pl181","X":442,"Y":354},{"Bonus":0,"Continent":"K46","ID":25868,"Name":"025 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25868","ServerKey":"pl181","X":646,"Y":444},{"Bonus":0,"Continent":"K63","ID":25869,"Name":"010.","PlayerID":2665207,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25869","ServerKey":"pl181","X":399,"Y":626},{"Bonus":0,"Continent":"K56","ID":25870,"Name":"093","PlayerID":699351301,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25870","ServerKey":"pl181","X":656,"Y":543},{"Bonus":0,"Continent":"K46","ID":25871,"Name":"A035 Wioska barbarzyƄska","PlayerID":113796,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25871","ServerKey":"pl181","X":650,"Y":460},{"Bonus":0,"Continent":"K66","ID":25872,"Name":"080","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25872","ServerKey":"pl181","X":624,"Y":603},{"Bonus":0,"Continent":"K46","ID":25873,"Name":"#.27 Wioska barbarzyƄska","PlayerID":849054582,"Points":6113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25873","ServerKey":"pl181","X":659,"Y":479},{"Bonus":0,"Continent":"K46","ID":25874,"Name":"B10","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25874","ServerKey":"pl181","X":647,"Y":446},{"Bonus":0,"Continent":"K34","ID":25875,"Name":"Szlachcic","PlayerID":698160606,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25875","ServerKey":"pl181","X":409,"Y":374},{"Bonus":5,"Continent":"K46","ID":25876,"Name":"mpiechu","PlayerID":113796,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25876","ServerKey":"pl181","X":652,"Y":456},{"Bonus":0,"Continent":"K34","ID":25877,"Name":"Mordor","PlayerID":849096310,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25877","ServerKey":"pl181","X":438,"Y":350},{"Bonus":0,"Continent":"K65","ID":25878,"Name":"025","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25878","ServerKey":"pl181","X":564,"Y":645},{"Bonus":0,"Continent":"K66","ID":25879,"Name":"Ć»UBRAWKA 004","PlayerID":33900,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25879","ServerKey":"pl181","X":600,"Y":622},{"Bonus":0,"Continent":"K65","ID":25880,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25880","ServerKey":"pl181","X":520,"Y":660},{"Bonus":0,"Continent":"K36","ID":25881,"Name":"Twierdza","PlayerID":699298370,"Points":8172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25881","ServerKey":"pl181","X":618,"Y":393},{"Bonus":0,"Continent":"K64","ID":25882,"Name":"011.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25882","ServerKey":"pl181","X":400,"Y":623},{"Bonus":0,"Continent":"K63","ID":25883,"Name":"059.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25883","ServerKey":"pl181","X":391,"Y":622},{"Bonus":0,"Continent":"K65","ID":25884,"Name":"Wioska barbarzyƄska .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25884","ServerKey":"pl181","X":582,"Y":637},{"Bonus":0,"Continent":"K34","ID":25886,"Name":"035","PlayerID":698739350,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25886","ServerKey":"pl181","X":481,"Y":345},{"Bonus":0,"Continent":"K43","ID":25888,"Name":"DW3","PlayerID":6258092,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25888","ServerKey":"pl181","X":346,"Y":449},{"Bonus":0,"Continent":"K53","ID":25889,"Name":"Skazany Na Instynkt","PlayerID":8004076,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25889","ServerKey":"pl181","X":366,"Y":578},{"Bonus":0,"Continent":"K64","ID":25890,"Name":"20 Osgiliath","PlayerID":699849210,"Points":3539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25890","ServerKey":"pl181","X":452,"Y":653},{"Bonus":0,"Continent":"K34","ID":25892,"Name":"K34 - [138] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25892","ServerKey":"pl181","X":433,"Y":353},{"Bonus":0,"Continent":"K46","ID":25893,"Name":"cofnąć","PlayerID":699429153,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25893","ServerKey":"pl181","X":627,"Y":400},{"Bonus":2,"Continent":"K66","ID":25894,"Name":"LadyAnimavillis","PlayerID":699703642,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25894","ServerKey":"pl181","X":601,"Y":620},{"Bonus":0,"Continent":"K63","ID":25895,"Name":"039.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25895","ServerKey":"pl181","X":398,"Y":622},{"Bonus":0,"Continent":"K35","ID":25896,"Name":"Taki Pan","PlayerID":698739350,"Points":7923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25896","ServerKey":"pl181","X":508,"Y":344},{"Bonus":0,"Continent":"K53","ID":25897,"Name":"KlikKlak","PlayerID":849096458,"Points":8883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25897","ServerKey":"pl181","X":341,"Y":528},{"Bonus":0,"Continent":"K66","ID":25898,"Name":"081","PlayerID":698786826,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25898","ServerKey":"pl181","X":625,"Y":602},{"Bonus":0,"Continent":"K46","ID":25900,"Name":"051 csodo","PlayerID":2135129,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25900","ServerKey":"pl181","X":658,"Y":484},{"Bonus":0,"Continent":"K34","ID":25902,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25902","ServerKey":"pl181","X":431,"Y":362},{"Bonus":0,"Continent":"K65","ID":25903,"Name":"0490","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25903","ServerKey":"pl181","X":531,"Y":653},{"Bonus":0,"Continent":"K53","ID":25905,"Name":"04. Przystanek pod palcem","PlayerID":8665783,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25905","ServerKey":"pl181","X":370,"Y":595},{"Bonus":0,"Continent":"K43","ID":25906,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25906","ServerKey":"pl181","X":368,"Y":411},{"Bonus":0,"Continent":"K53","ID":25907,"Name":"Chekku - meito","PlayerID":9280477,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25907","ServerKey":"pl181","X":343,"Y":530},{"Bonus":0,"Continent":"K65","ID":25908,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25908","ServerKey":"pl181","X":531,"Y":654},{"Bonus":0,"Continent":"K53","ID":25909,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25909","ServerKey":"pl181","X":346,"Y":516},{"Bonus":0,"Continent":"K56","ID":25910,"Name":"040","PlayerID":699316421,"Points":7549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25910","ServerKey":"pl181","X":652,"Y":556},{"Bonus":0,"Continent":"K64","ID":25911,"Name":"016 jogurtowy serniczek","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25911","ServerKey":"pl181","X":499,"Y":655},{"Bonus":0,"Continent":"K35","ID":25912,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25912","ServerKey":"pl181","X":561,"Y":352},{"Bonus":0,"Continent":"K64","ID":25913,"Name":"Tars","PlayerID":849089459,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25913","ServerKey":"pl181","X":420,"Y":636},{"Bonus":0,"Continent":"K65","ID":25914,"Name":"*Nesco","PlayerID":699443920,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25914","ServerKey":"pl181","X":572,"Y":644},{"Bonus":0,"Continent":"K46","ID":25915,"Name":"026 MONETKI","PlayerID":7588382,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25915","ServerKey":"pl181","X":659,"Y":484},{"Bonus":0,"Continent":"K56","ID":25916,"Name":"043","PlayerID":699316421,"Points":5815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25916","ServerKey":"pl181","X":651,"Y":553},{"Bonus":0,"Continent":"K43","ID":25917,"Name":"Początek","PlayerID":393668,"Points":6154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25917","ServerKey":"pl181","X":354,"Y":433},{"Bonus":0,"Continent":"K56","ID":25918,"Name":"Wioska Kaffiks IX","PlayerID":6136757,"Points":5152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25918","ServerKey":"pl181","X":636,"Y":579},{"Bonus":9,"Continent":"K63","ID":25919,"Name":"Osada cadownikĂłw","PlayerID":8607734,"Points":9859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25919","ServerKey":"pl181","X":376,"Y":604},{"Bonus":0,"Continent":"K34","ID":25920,"Name":"cc 02 Wioska barbarzyƄska","PlayerID":3909522,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25920","ServerKey":"pl181","X":406,"Y":375},{"Bonus":0,"Continent":"K34","ID":25921,"Name":"North Barba 008","PlayerID":699796330,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25921","ServerKey":"pl181","X":420,"Y":363},{"Bonus":0,"Continent":"K46","ID":25922,"Name":"#.34 Wioska barbarzyƄska","PlayerID":849054582,"Points":5221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25922","ServerKey":"pl181","X":658,"Y":478},{"Bonus":0,"Continent":"K35","ID":25923,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25923","ServerKey":"pl181","X":571,"Y":356},{"Bonus":0,"Continent":"K36","ID":25924,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":6884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25924","ServerKey":"pl181","X":601,"Y":390},{"Bonus":0,"Continent":"K34","ID":25925,"Name":"North Barba 014","PlayerID":699796330,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25925","ServerKey":"pl181","X":426,"Y":357},{"Bonus":0,"Continent":"K34","ID":25926,"Name":"Lecymy DUR","PlayerID":6169408,"Points":5213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25926","ServerKey":"pl181","X":432,"Y":356},{"Bonus":0,"Continent":"K66","ID":25927,"Name":"~~051~~","PlayerID":7829201,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25927","ServerKey":"pl181","X":607,"Y":613},{"Bonus":0,"Continent":"K53","ID":25929,"Name":"15. Kamper","PlayerID":8665783,"Points":9176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25929","ServerKey":"pl181","X":378,"Y":595},{"Bonus":9,"Continent":"K64","ID":25930,"Name":"083.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25930","ServerKey":"pl181","X":483,"Y":657},{"Bonus":0,"Continent":"K65","ID":25931,"Name":"Wioska koliber2","PlayerID":529552,"Points":2163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25931","ServerKey":"pl181","X":541,"Y":658},{"Bonus":0,"Continent":"K63","ID":25932,"Name":"004.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25932","ServerKey":"pl181","X":398,"Y":621},{"Bonus":0,"Continent":"K65","ID":25934,"Name":"038 kryzys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25934","ServerKey":"pl181","X":569,"Y":643},{"Bonus":0,"Continent":"K43","ID":25935,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25935","ServerKey":"pl181","X":364,"Y":423},{"Bonus":0,"Continent":"K46","ID":25936,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25936","ServerKey":"pl181","X":648,"Y":455},{"Bonus":0,"Continent":"K35","ID":25937,"Name":"115 Wioska barbarzyƄska","PlayerID":699491076,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25937","ServerKey":"pl181","X":548,"Y":346},{"Bonus":0,"Continent":"K56","ID":25938,"Name":"D18","PlayerID":848995478,"Points":5017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25938","ServerKey":"pl181","X":656,"Y":542},{"Bonus":0,"Continent":"K56","ID":25940,"Name":"Wioska Kaffik VIII","PlayerID":6136757,"Points":6340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25940","ServerKey":"pl181","X":635,"Y":578},{"Bonus":0,"Continent":"K64","ID":25941,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25941","ServerKey":"pl181","X":424,"Y":636},{"Bonus":0,"Continent":"K46","ID":25942,"Name":"BACÓWKA |001|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25942","ServerKey":"pl181","X":632,"Y":413},{"Bonus":0,"Continent":"K53","ID":25943,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25943","ServerKey":"pl181","X":346,"Y":546},{"Bonus":0,"Continent":"K53","ID":25944,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25944","ServerKey":"pl181","X":346,"Y":524},{"Bonus":0,"Continent":"K34","ID":25945,"Name":"#0259 deleted","PlayerID":1238300,"Points":2205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25945","ServerKey":"pl181","X":479,"Y":340},{"Bonus":0,"Continent":"K53","ID":25946,"Name":"Dąbrowa 0005","PlayerID":849096972,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25946","ServerKey":"pl181","X":366,"Y":589},{"Bonus":0,"Continent":"K34","ID":25947,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":6419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25947","ServerKey":"pl181","X":442,"Y":357},{"Bonus":0,"Continent":"K35","ID":25948,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25948","ServerKey":"pl181","X":567,"Y":353},{"Bonus":0,"Continent":"K36","ID":25949,"Name":"Owp Konfederacja","PlayerID":848915730,"Points":6620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25949","ServerKey":"pl181","X":603,"Y":382},{"Bonus":0,"Continent":"K34","ID":25950,"Name":"K34 - [121] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25950","ServerKey":"pl181","X":438,"Y":351},{"Bonus":0,"Continent":"K53","ID":25951,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25951","ServerKey":"pl181","X":345,"Y":517},{"Bonus":0,"Continent":"K56","ID":25952,"Name":"MRF 004","PlayerID":118121,"Points":8782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25952","ServerKey":"pl181","X":630,"Y":584},{"Bonus":0,"Continent":"K43","ID":25953,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25953","ServerKey":"pl181","X":370,"Y":415},{"Bonus":0,"Continent":"K53","ID":25954,"Name":"DajankA 07","PlayerID":849012843,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25954","ServerKey":"pl181","X":353,"Y":555},{"Bonus":0,"Continent":"K63","ID":25955,"Name":"Wioska 001","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25955","ServerKey":"pl181","X":390,"Y":615},{"Bonus":3,"Continent":"K65","ID":25956,"Name":"kathare","PlayerID":873575,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25956","ServerKey":"pl181","X":559,"Y":645},{"Bonus":0,"Continent":"K53","ID":25957,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25957","ServerKey":"pl181","X":344,"Y":531},{"Bonus":0,"Continent":"K35","ID":25958,"Name":"xyz #014 TerrorMachine","PlayerID":7555180,"Points":6321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25958","ServerKey":"pl181","X":580,"Y":362},{"Bonus":0,"Continent":"K56","ID":25959,"Name":"031","PlayerID":849006412,"Points":5482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25959","ServerKey":"pl181","X":659,"Y":513},{"Bonus":0,"Continent":"K56","ID":25960,"Name":"B 049","PlayerID":8078914,"Points":7713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25960","ServerKey":"pl181","X":660,"Y":521},{"Bonus":0,"Continent":"K46","ID":25961,"Name":"A027 Greg Wioska 6","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25961","ServerKey":"pl181","X":651,"Y":443},{"Bonus":0,"Continent":"K34","ID":25962,"Name":"cc Wioska 675","PlayerID":3909522,"Points":6030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25962","ServerKey":"pl181","X":401,"Y":373},{"Bonus":0,"Continent":"K33","ID":25963,"Name":"Wioska Barba III","PlayerID":8967440,"Points":3451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25963","ServerKey":"pl181","X":382,"Y":398},{"Bonus":0,"Continent":"K35","ID":25964,"Name":"Krosno 9","PlayerID":7485877,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25964","ServerKey":"pl181","X":530,"Y":348},{"Bonus":0,"Continent":"K66","ID":25965,"Name":"Ć»UBRAWKA 002","PlayerID":33900,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25965","ServerKey":"pl181","X":603,"Y":620},{"Bonus":0,"Continent":"K56","ID":25966,"Name":"062","PlayerID":699351301,"Points":9552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25966","ServerKey":"pl181","X":655,"Y":525},{"Bonus":9,"Continent":"K35","ID":25967,"Name":"007 Jurassik World","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25967","ServerKey":"pl181","X":543,"Y":348},{"Bonus":0,"Continent":"K43","ID":25968,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25968","ServerKey":"pl181","X":349,"Y":461},{"Bonus":0,"Continent":"K43","ID":25969,"Name":"*014 Nemeczek*","PlayerID":2415972,"Points":8931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25969","ServerKey":"pl181","X":363,"Y":414},{"Bonus":0,"Continent":"K43","ID":25970,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25970","ServerKey":"pl181","X":344,"Y":482},{"Bonus":0,"Continent":"K53","ID":25971,"Name":"Chekku - meito","PlayerID":9280477,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25971","ServerKey":"pl181","X":345,"Y":524},{"Bonus":0,"Continent":"K63","ID":25972,"Name":"0458","PlayerID":699513260,"Points":4897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25972","ServerKey":"pl181","X":381,"Y":602},{"Bonus":9,"Continent":"K43","ID":25973,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25973","ServerKey":"pl181","X":371,"Y":406},{"Bonus":0,"Continent":"K53","ID":25974,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25974","ServerKey":"pl181","X":352,"Y":555},{"Bonus":0,"Continent":"K34","ID":25975,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25975","ServerKey":"pl181","X":428,"Y":357},{"Bonus":0,"Continent":"K43","ID":25976,"Name":"2.03","PlayerID":6258092,"Points":4979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25976","ServerKey":"pl181","X":344,"Y":454},{"Bonus":0,"Continent":"K64","ID":25977,"Name":"Aulas","PlayerID":849089459,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25977","ServerKey":"pl181","X":420,"Y":639},{"Bonus":0,"Continent":"K53","ID":25978,"Name":"Chekku - meito","PlayerID":9280477,"Points":9002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25978","ServerKey":"pl181","X":342,"Y":525},{"Bonus":0,"Continent":"K56","ID":25979,"Name":"PZ037","PlayerID":8096537,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25979","ServerKey":"pl181","X":657,"Y":515},{"Bonus":0,"Continent":"K46","ID":25980,"Name":"B027","PlayerID":9314079,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25980","ServerKey":"pl181","X":655,"Y":490},{"Bonus":0,"Continent":"K53","ID":25981,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25981","ServerKey":"pl181","X":344,"Y":543},{"Bonus":0,"Continent":"K46","ID":25982,"Name":"028 MONETKI","PlayerID":7588382,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25982","ServerKey":"pl181","X":661,"Y":480},{"Bonus":0,"Continent":"K43","ID":25983,"Name":"7.62 mm","PlayerID":699777234,"Points":5631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25983","ServerKey":"pl181","X":367,"Y":408},{"Bonus":0,"Continent":"K53","ID":25984,"Name":"#004 Grunburg","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25984","ServerKey":"pl181","X":374,"Y":590},{"Bonus":0,"Continent":"K46","ID":25985,"Name":"20. Czuwaj","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25985","ServerKey":"pl181","X":627,"Y":410},{"Bonus":0,"Continent":"K53","ID":25986,"Name":"05. Wiadukt na dopko","PlayerID":8665783,"Points":10377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25986","ServerKey":"pl181","X":376,"Y":595},{"Bonus":3,"Continent":"K34","ID":25987,"Name":"005...ZACH_A","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25987","ServerKey":"pl181","X":454,"Y":347},{"Bonus":0,"Continent":"K43","ID":25988,"Name":"A0231","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25988","ServerKey":"pl181","X":343,"Y":497},{"Bonus":0,"Continent":"K64","ID":25989,"Name":"Ave Why!","PlayerID":698585370,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25989","ServerKey":"pl181","X":438,"Y":636},{"Bonus":0,"Continent":"K65","ID":25990,"Name":"[0009]","PlayerID":699567608,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25990","ServerKey":"pl181","X":560,"Y":630},{"Bonus":0,"Continent":"K43","ID":25991,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25991","ServerKey":"pl181","X":371,"Y":405},{"Bonus":0,"Continent":"K46","ID":25993,"Name":"*4624* Piko","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25993","ServerKey":"pl181","X":648,"Y":437},{"Bonus":0,"Continent":"K65","ID":25994,"Name":"(+)(+)","PlayerID":1415009,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25994","ServerKey":"pl181","X":587,"Y":636},{"Bonus":0,"Continent":"K65","ID":25995,"Name":"035","PlayerID":699828685,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25995","ServerKey":"pl181","X":570,"Y":645},{"Bonus":0,"Continent":"K46","ID":25996,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25996","ServerKey":"pl181","X":632,"Y":414},{"Bonus":0,"Continent":"K56","ID":25997,"Name":"068","PlayerID":698786826,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25997","ServerKey":"pl181","X":620,"Y":598},{"Bonus":0,"Continent":"K53","ID":25998,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25998","ServerKey":"pl181","X":341,"Y":507},{"Bonus":0,"Continent":"K53","ID":25999,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=25999","ServerKey":"pl181","X":348,"Y":539},{"Bonus":0,"Continent":"K56","ID":26000,"Name":"0078","PlayerID":698416970,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26000","ServerKey":"pl181","X":628,"Y":599},{"Bonus":0,"Continent":"K46","ID":26001,"Name":"stop","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26001","ServerKey":"pl181","X":618,"Y":403},{"Bonus":0,"Continent":"K46","ID":26002,"Name":"046. Oea","PlayerID":849091866,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26002","ServerKey":"pl181","X":658,"Y":467},{"Bonus":0,"Continent":"K56","ID":26003,"Name":"D 019","PlayerID":8078914,"Points":3865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26003","ServerKey":"pl181","X":658,"Y":501},{"Bonus":0,"Continent":"K34","ID":26004,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26004","ServerKey":"pl181","X":431,"Y":357},{"Bonus":0,"Continent":"K65","ID":26005,"Name":"0121","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26005","ServerKey":"pl181","X":581,"Y":633},{"Bonus":0,"Continent":"K43","ID":26006,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26006","ServerKey":"pl181","X":339,"Y":495},{"Bonus":0,"Continent":"K53","ID":26007,"Name":"16. Wiejskie potupanki","PlayerID":8665783,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26007","ServerKey":"pl181","X":368,"Y":592},{"Bonus":0,"Continent":"K46","ID":26008,"Name":"023 - Mroczna Osada","PlayerID":849035905,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26008","ServerKey":"pl181","X":636,"Y":418},{"Bonus":0,"Continent":"K43","ID":26009,"Name":"#002 Zenit to KRÓL","PlayerID":849096215,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26009","ServerKey":"pl181","X":353,"Y":441},{"Bonus":0,"Continent":"K35","ID":26010,"Name":"CSA","PlayerID":7651093,"Points":3203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26010","ServerKey":"pl181","X":502,"Y":340},{"Bonus":0,"Continent":"K64","ID":26012,"Name":"|024| Faliraki","PlayerID":699393742,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26012","ServerKey":"pl181","X":498,"Y":662},{"Bonus":0,"Continent":"K43","ID":26013,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26013","ServerKey":"pl181","X":340,"Y":477},{"Bonus":0,"Continent":"K33","ID":26014,"Name":"A-035","PlayerID":8419570,"Points":10332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26014","ServerKey":"pl181","X":387,"Y":387},{"Bonus":0,"Continent":"K64","ID":26015,"Name":"05. Yellowbird","PlayerID":849100262,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26015","ServerKey":"pl181","X":495,"Y":661},{"Bonus":4,"Continent":"K43","ID":26016,"Name":"M181_044","PlayerID":393668,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26016","ServerKey":"pl181","X":360,"Y":432},{"Bonus":0,"Continent":"K33","ID":26017,"Name":"005 Mekka","PlayerID":849059457,"Points":8969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26017","ServerKey":"pl181","X":379,"Y":394},{"Bonus":0,"Continent":"K56","ID":26018,"Name":"0152","PlayerID":698416970,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26018","ServerKey":"pl181","X":630,"Y":596},{"Bonus":0,"Continent":"K53","ID":26019,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26019","ServerKey":"pl181","X":344,"Y":551},{"Bonus":6,"Continent":"K46","ID":26020,"Name":"Jehu_Kingdom_20","PlayerID":8785314,"Points":8498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26020","ServerKey":"pl181","X":650,"Y":461},{"Bonus":0,"Continent":"K46","ID":26021,"Name":"011 Deiren","PlayerID":9238175,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26021","ServerKey":"pl181","X":642,"Y":422},{"Bonus":0,"Continent":"K53","ID":26022,"Name":"Dajanka 16","PlayerID":849012843,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26022","ServerKey":"pl181","X":352,"Y":551},{"Bonus":0,"Continent":"K63","ID":26023,"Name":"041 VANITAS","PlayerID":6354098,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26023","ServerKey":"pl181","X":388,"Y":611},{"Bonus":0,"Continent":"K43","ID":26024,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26024","ServerKey":"pl181","X":346,"Y":464},{"Bonus":0,"Continent":"K36","ID":26025,"Name":"A 008","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26025","ServerKey":"pl181","X":606,"Y":379},{"Bonus":0,"Continent":"K53","ID":26026,"Name":"Dajanka 12","PlayerID":849012843,"Points":7421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26026","ServerKey":"pl181","X":350,"Y":554},{"Bonus":0,"Continent":"K65","ID":26027,"Name":"17. GĂłrna Wilda","PlayerID":849092769,"Points":11526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26027","ServerKey":"pl181","X":506,"Y":660},{"Bonus":0,"Continent":"K35","ID":26028,"Name":"CHARFA","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26028","ServerKey":"pl181","X":516,"Y":342},{"Bonus":0,"Continent":"K43","ID":26029,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26029","ServerKey":"pl181","X":339,"Y":499},{"Bonus":0,"Continent":"K46","ID":26030,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26030","ServerKey":"pl181","X":631,"Y":408},{"Bonus":0,"Continent":"K35","ID":26031,"Name":"070 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26031","ServerKey":"pl181","X":542,"Y":351},{"Bonus":0,"Continent":"K56","ID":26032,"Name":"039","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26032","ServerKey":"pl181","X":651,"Y":549},{"Bonus":0,"Continent":"K46","ID":26033,"Name":"029 | PALESTINA","PlayerID":9228039,"Points":7803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26033","ServerKey":"pl181","X":643,"Y":440},{"Bonus":0,"Continent":"K34","ID":26034,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26034","ServerKey":"pl181","X":431,"Y":356},{"Bonus":0,"Continent":"K64","ID":26035,"Name":"018 nie ma spania na wyjazdach","PlayerID":699238479,"Points":5608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26035","ServerKey":"pl181","X":444,"Y":645},{"Bonus":0,"Continent":"K65","ID":26036,"Name":"0491","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26036","ServerKey":"pl181","X":536,"Y":658},{"Bonus":0,"Continent":"K53","ID":26037,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26037","ServerKey":"pl181","X":346,"Y":538},{"Bonus":0,"Continent":"K56","ID":26038,"Name":"089","PlayerID":699351301,"Points":3281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26038","ServerKey":"pl181","X":658,"Y":549},{"Bonus":0,"Continent":"K46","ID":26039,"Name":"036","PlayerID":7085502,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26039","ServerKey":"pl181","X":658,"Y":496},{"Bonus":0,"Continent":"K53","ID":26040,"Name":"off 100 %","PlayerID":849012521,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26040","ServerKey":"pl181","X":352,"Y":565},{"Bonus":4,"Continent":"K56","ID":26041,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26041","ServerKey":"pl181","X":627,"Y":594},{"Bonus":0,"Continent":"K56","ID":26042,"Name":"[028]","PlayerID":698305474,"Points":8176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26042","ServerKey":"pl181","X":642,"Y":530},{"Bonus":0,"Continent":"K34","ID":26043,"Name":"North Barba 012","PlayerID":699796330,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26043","ServerKey":"pl181","X":421,"Y":367},{"Bonus":0,"Continent":"K53","ID":26044,"Name":"Dodowo","PlayerID":849096458,"Points":9323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26044","ServerKey":"pl181","X":345,"Y":529},{"Bonus":0,"Continent":"K53","ID":26045,"Name":"Denger 16","PlayerID":698353083,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26045","ServerKey":"pl181","X":364,"Y":587},{"Bonus":6,"Continent":"K43","ID":26046,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26046","ServerKey":"pl181","X":342,"Y":465},{"Bonus":0,"Continent":"K46","ID":26047,"Name":"#.38 Wioska barbarzyƄska","PlayerID":849054582,"Points":3160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26047","ServerKey":"pl181","X":658,"Y":476},{"Bonus":0,"Continent":"K34","ID":26048,"Name":"#0027 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26048","ServerKey":"pl181","X":467,"Y":345},{"Bonus":1,"Continent":"K46","ID":26049,"Name":"003 MONETKI","PlayerID":7588382,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26049","ServerKey":"pl181","X":656,"Y":464},{"Bonus":0,"Continent":"K64","ID":26050,"Name":"004","PlayerID":698650301,"Points":8494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26050","ServerKey":"pl181","X":491,"Y":661},{"Bonus":0,"Continent":"K56","ID":26051,"Name":"037","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26051","ServerKey":"pl181","X":650,"Y":561},{"Bonus":0,"Continent":"K43","ID":26053,"Name":"Skowronek","PlayerID":699265922,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26053","ServerKey":"pl181","X":338,"Y":499},{"Bonus":0,"Continent":"K43","ID":26056,"Name":"A0241","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26056","ServerKey":"pl181","X":340,"Y":492},{"Bonus":0,"Continent":"K64","ID":26057,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26057","ServerKey":"pl181","X":435,"Y":648},{"Bonus":0,"Continent":"K53","ID":26059,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26059","ServerKey":"pl181","X":340,"Y":522},{"Bonus":0,"Continent":"K64","ID":26060,"Name":"048.","PlayerID":2665207,"Points":8787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26060","ServerKey":"pl181","X":406,"Y":630},{"Bonus":8,"Continent":"K56","ID":26061,"Name":"003","PlayerID":699351301,"Points":11803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26061","ServerKey":"pl181","X":655,"Y":534},{"Bonus":0,"Continent":"K46","ID":26062,"Name":"106","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26062","ServerKey":"pl181","X":650,"Y":442},{"Bonus":0,"Continent":"K35","ID":26063,"Name":"013) JordanĂłw ƚląski","PlayerID":849097103,"Points":5673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26063","ServerKey":"pl181","X":540,"Y":348},{"Bonus":0,"Continent":"K46","ID":26064,"Name":"070 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26064","ServerKey":"pl181","X":635,"Y":420},{"Bonus":0,"Continent":"K46","ID":26065,"Name":"BACÓWKA |007|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26065","ServerKey":"pl181","X":627,"Y":405},{"Bonus":0,"Continent":"K66","ID":26066,"Name":"historia blisko 3","PlayerID":699778867,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26066","ServerKey":"pl181","X":619,"Y":601},{"Bonus":0,"Continent":"K65","ID":26067,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26067","ServerKey":"pl181","X":520,"Y":647},{"Bonus":0,"Continent":"K53","ID":26068,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26068","ServerKey":"pl181","X":351,"Y":550},{"Bonus":0,"Continent":"K46","ID":26069,"Name":"072 rest","PlayerID":9238175,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26069","ServerKey":"pl181","X":641,"Y":429},{"Bonus":0,"Continent":"K33","ID":26070,"Name":"Zbira","PlayerID":606706,"Points":5815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26070","ServerKey":"pl181","X":394,"Y":383},{"Bonus":0,"Continent":"K53","ID":26071,"Name":"deff 100%","PlayerID":849012521,"Points":5692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26071","ServerKey":"pl181","X":358,"Y":573},{"Bonus":0,"Continent":"K46","ID":26072,"Name":"036 barbarzyƄska","PlayerID":9238175,"Points":6705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26072","ServerKey":"pl181","X":641,"Y":427},{"Bonus":0,"Continent":"K64","ID":26073,"Name":"Czarodziejka z Wenus","PlayerID":849006145,"Points":5873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26073","ServerKey":"pl181","X":425,"Y":637},{"Bonus":0,"Continent":"K65","ID":26074,"Name":"?002","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26074","ServerKey":"pl181","X":539,"Y":656},{"Bonus":0,"Continent":"K34","ID":26075,"Name":"#0008 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26075","ServerKey":"pl181","X":464,"Y":350},{"Bonus":0,"Continent":"K34","ID":26076,"Name":"Monetio","PlayerID":699191464,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26076","ServerKey":"pl181","X":445,"Y":352},{"Bonus":0,"Continent":"K46","ID":26077,"Name":"Jan dzik IV","PlayerID":879782,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26077","ServerKey":"pl181","X":643,"Y":436},{"Bonus":2,"Continent":"K33","ID":26078,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":8443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26078","ServerKey":"pl181","X":380,"Y":397},{"Bonus":0,"Continent":"K46","ID":26079,"Name":"012 Eldorado","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26079","ServerKey":"pl181","X":657,"Y":491},{"Bonus":0,"Continent":"K65","ID":26080,"Name":"?008","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26080","ServerKey":"pl181","X":541,"Y":657},{"Bonus":0,"Continent":"K43","ID":26081,"Name":"012. Dla flag","PlayerID":698630507,"Points":2309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26081","ServerKey":"pl181","X":352,"Y":440},{"Bonus":0,"Continent":"K46","ID":26082,"Name":"llllllllll","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26082","ServerKey":"pl181","X":624,"Y":400},{"Bonus":0,"Continent":"K35","ID":26083,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26083","ServerKey":"pl181","X":562,"Y":353},{"Bonus":0,"Continent":"K56","ID":26084,"Name":"027","PlayerID":7085502,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26084","ServerKey":"pl181","X":662,"Y":500},{"Bonus":0,"Continent":"K53","ID":26085,"Name":"Chekku - meito","PlayerID":9280477,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26085","ServerKey":"pl181","X":341,"Y":515},{"Bonus":0,"Continent":"K35","ID":26086,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26086","ServerKey":"pl181","X":564,"Y":355},{"Bonus":0,"Continent":"K65","ID":26087,"Name":"Darma dla zawodnika","PlayerID":849004274,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26087","ServerKey":"pl181","X":510,"Y":660},{"Bonus":0,"Continent":"K56","ID":26088,"Name":"044","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26088","ServerKey":"pl181","X":651,"Y":547},{"Bonus":0,"Continent":"K64","ID":26089,"Name":"079","PlayerID":849084985,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26089","ServerKey":"pl181","X":440,"Y":638},{"Bonus":0,"Continent":"K34","ID":26090,"Name":"Lecymy DUR","PlayerID":6169408,"Points":6206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26090","ServerKey":"pl181","X":437,"Y":358},{"Bonus":0,"Continent":"K64","ID":26091,"Name":"020 Ellander","PlayerID":699834004,"Points":7745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26091","ServerKey":"pl181","X":458,"Y":655},{"Bonus":0,"Continent":"K43","ID":26092,"Name":"Szlachcic","PlayerID":6258092,"Points":7701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26092","ServerKey":"pl181","X":344,"Y":458},{"Bonus":0,"Continent":"K43","ID":26094,"Name":"M181_041","PlayerID":393668,"Points":8885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26094","ServerKey":"pl181","X":358,"Y":429},{"Bonus":0,"Continent":"K46","ID":26095,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26095","ServerKey":"pl181","X":626,"Y":407},{"Bonus":0,"Continent":"K34","ID":26096,"Name":"North Barba 017","PlayerID":699796330,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26096","ServerKey":"pl181","X":423,"Y":360},{"Bonus":0,"Continent":"K35","ID":26098,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26098","ServerKey":"pl181","X":501,"Y":338},{"Bonus":0,"Continent":"K46","ID":26099,"Name":"B028","PlayerID":9314079,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26099","ServerKey":"pl181","X":657,"Y":493},{"Bonus":0,"Continent":"K65","ID":26100,"Name":"kathare","PlayerID":873575,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26100","ServerKey":"pl181","X":556,"Y":638},{"Bonus":0,"Continent":"K35","ID":26101,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26101","ServerKey":"pl181","X":557,"Y":353},{"Bonus":0,"Continent":"K55","ID":26102,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26102","ServerKey":"pl181","X":576,"Y":505},{"Bonus":0,"Continent":"K64","ID":26103,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26103","ServerKey":"pl181","X":436,"Y":644},{"Bonus":0,"Continent":"K36","ID":26104,"Name":"C005","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26104","ServerKey":"pl181","X":610,"Y":386},{"Bonus":0,"Continent":"K36","ID":26105,"Name":"Taran 016","PlayerID":7462660,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26105","ServerKey":"pl181","X":600,"Y":372},{"Bonus":4,"Continent":"K35","ID":26106,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26106","ServerKey":"pl181","X":552,"Y":346},{"Bonus":0,"Continent":"K43","ID":26108,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26108","ServerKey":"pl181","X":371,"Y":408},{"Bonus":0,"Continent":"K43","ID":26109,"Name":"DW1","PlayerID":393668,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26109","ServerKey":"pl181","X":347,"Y":448},{"Bonus":4,"Continent":"K53","ID":26110,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26110","ServerKey":"pl181","X":351,"Y":552},{"Bonus":0,"Continent":"K56","ID":26111,"Name":"078","PlayerID":698999105,"Points":6714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26111","ServerKey":"pl181","X":629,"Y":591},{"Bonus":0,"Continent":"K63","ID":26112,"Name":"Pobozowisko","PlayerID":699513260,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26112","ServerKey":"pl181","X":385,"Y":612},{"Bonus":0,"Continent":"K53","ID":26113,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26113","ServerKey":"pl181","X":357,"Y":566},{"Bonus":0,"Continent":"K64","ID":26114,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":5789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26114","ServerKey":"pl181","X":435,"Y":646},{"Bonus":0,"Continent":"K46","ID":26115,"Name":"A019 goƛć KamilToJa","PlayerID":113796,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26115","ServerKey":"pl181","X":651,"Y":458},{"Bonus":0,"Continent":"K53","ID":26116,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26116","ServerKey":"pl181","X":350,"Y":548},{"Bonus":0,"Continent":"K53","ID":26117,"Name":"012.zbyszek","PlayerID":1830149,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26117","ServerKey":"pl181","X":341,"Y":518},{"Bonus":0,"Continent":"K43","ID":26118,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26118","ServerKey":"pl181","X":369,"Y":410},{"Bonus":0,"Continent":"K35","ID":26120,"Name":"Krosno 2","PlayerID":7485877,"Points":6562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26120","ServerKey":"pl181","X":534,"Y":341},{"Bonus":0,"Continent":"K43","ID":26121,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26121","ServerKey":"pl181","X":369,"Y":406},{"Bonus":0,"Continent":"K56","ID":26123,"Name":"062","PlayerID":698999105,"Points":8740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26123","ServerKey":"pl181","X":630,"Y":589},{"Bonus":0,"Continent":"K53","ID":26124,"Name":"off 100 %","PlayerID":849012521,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26124","ServerKey":"pl181","X":356,"Y":569},{"Bonus":0,"Continent":"K63","ID":26125,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26125","ServerKey":"pl181","X":390,"Y":619},{"Bonus":1,"Continent":"K65","ID":26126,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26126","ServerKey":"pl181","X":516,"Y":662},{"Bonus":0,"Continent":"K35","ID":26127,"Name":"ADEN","PlayerID":698588535,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26127","ServerKey":"pl181","X":516,"Y":374},{"Bonus":0,"Continent":"K65","ID":26128,"Name":"ObrzeĆŒa 093","PlayerID":848915531,"Points":5251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26128","ServerKey":"pl181","X":555,"Y":652},{"Bonus":0,"Continent":"K35","ID":26129,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26129","ServerKey":"pl181","X":561,"Y":355},{"Bonus":0,"Continent":"K43","ID":26130,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26130","ServerKey":"pl181","X":373,"Y":403},{"Bonus":0,"Continent":"K63","ID":26131,"Name":"Pobozowisko","PlayerID":699513260,"Points":5836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26131","ServerKey":"pl181","X":385,"Y":606},{"Bonus":0,"Continent":"K64","ID":26132,"Name":"004|| Cancer","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26132","ServerKey":"pl181","X":479,"Y":658},{"Bonus":0,"Continent":"K43","ID":26133,"Name":"Szlachcic","PlayerID":6258092,"Points":9050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26133","ServerKey":"pl181","X":348,"Y":460},{"Bonus":0,"Continent":"K56","ID":26134,"Name":"036","PlayerID":699351301,"Points":8309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26134","ServerKey":"pl181","X":653,"Y":533},{"Bonus":0,"Continent":"K65","ID":26135,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26135","ServerKey":"pl181","X":537,"Y":657},{"Bonus":0,"Continent":"K34","ID":26136,"Name":"North Barba 011","PlayerID":699796330,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26136","ServerKey":"pl181","X":419,"Y":363},{"Bonus":0,"Continent":"K53","ID":26137,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26137","ServerKey":"pl181","X":343,"Y":517},{"Bonus":0,"Continent":"K56","ID":26138,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26138","ServerKey":"pl181","X":639,"Y":574},{"Bonus":0,"Continent":"K46","ID":26139,"Name":"#.24 Wioska barbarzyƄska","PlayerID":849054582,"Points":6183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26139","ServerKey":"pl181","X":655,"Y":474},{"Bonus":0,"Continent":"K34","ID":26140,"Name":"#0045 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26140","ServerKey":"pl181","X":469,"Y":344},{"Bonus":0,"Continent":"K34","ID":26141,"Name":"0134","PlayerID":699431255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26141","ServerKey":"pl181","X":429,"Y":375},{"Bonus":0,"Continent":"K43","ID":26142,"Name":"011 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":5936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26142","ServerKey":"pl181","X":366,"Y":409},{"Bonus":0,"Continent":"K36","ID":26143,"Name":"I#013","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26143","ServerKey":"pl181","X":601,"Y":377},{"Bonus":0,"Continent":"K43","ID":26144,"Name":"DW10","PlayerID":393668,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26144","ServerKey":"pl181","X":345,"Y":446},{"Bonus":0,"Continent":"K34","ID":26145,"Name":"Szlachcic","PlayerID":698160606,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26145","ServerKey":"pl181","X":404,"Y":370},{"Bonus":0,"Continent":"K64","ID":26146,"Name":"Czarodziejka z Merkurego","PlayerID":849006145,"Points":9089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26146","ServerKey":"pl181","X":426,"Y":637},{"Bonus":0,"Continent":"K34","ID":26147,"Name":"Polanie","PlayerID":849048216,"Points":5322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26147","ServerKey":"pl181","X":480,"Y":341},{"Bonus":0,"Continent":"K34","ID":26148,"Name":"Wioska barbarzyƄska","PlayerID":699244334,"Points":1702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26148","ServerKey":"pl181","X":479,"Y":344},{"Bonus":0,"Continent":"K34","ID":26149,"Name":"K34 - [103] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26149","ServerKey":"pl181","X":450,"Y":351},{"Bonus":0,"Continent":"K56","ID":26151,"Name":"Wioska Kaffik V","PlayerID":6136757,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26151","ServerKey":"pl181","X":634,"Y":583},{"Bonus":0,"Continent":"K33","ID":26152,"Name":"A-012","PlayerID":8419570,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26152","ServerKey":"pl181","X":393,"Y":387},{"Bonus":0,"Continent":"K33","ID":26153,"Name":"A-031","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26153","ServerKey":"pl181","X":392,"Y":387},{"Bonus":0,"Continent":"K65","ID":26154,"Name":"021","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26154","ServerKey":"pl181","X":510,"Y":657},{"Bonus":0,"Continent":"K53","ID":26155,"Name":"14. Altanka u pleƛni","PlayerID":8665783,"Points":8702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26155","ServerKey":"pl181","X":377,"Y":595},{"Bonus":0,"Continent":"K46","ID":26156,"Name":"A023 Ateny","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26156","ServerKey":"pl181","X":653,"Y":458},{"Bonus":0,"Continent":"K63","ID":26157,"Name":"Pobozowisko","PlayerID":699513260,"Points":7399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26157","ServerKey":"pl181","X":388,"Y":608},{"Bonus":0,"Continent":"K53","ID":26158,"Name":"C004..","PlayerID":849090130,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26158","ServerKey":"pl181","X":366,"Y":582},{"Bonus":0,"Continent":"K56","ID":26159,"Name":"Malinki 5","PlayerID":8013349,"Points":6418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26159","ServerKey":"pl181","X":657,"Y":518},{"Bonus":0,"Continent":"K55","ID":26160,"Name":"Monia i Ruch","PlayerID":8742874,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26160","ServerKey":"pl181","X":594,"Y":566},{"Bonus":0,"Continent":"K53","ID":26161,"Name":"Dajanka 04","PlayerID":849012843,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26161","ServerKey":"pl181","X":355,"Y":559},{"Bonus":0,"Continent":"K33","ID":26162,"Name":"0011","PlayerID":8419570,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26162","ServerKey":"pl181","X":387,"Y":382},{"Bonus":0,"Continent":"K46","ID":26163,"Name":"044. Valentia","PlayerID":849091866,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26163","ServerKey":"pl181","X":653,"Y":469},{"Bonus":0,"Continent":"K64","ID":26165,"Name":"04 Wioska","PlayerID":698993706,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26165","ServerKey":"pl181","X":443,"Y":651},{"Bonus":0,"Continent":"K53","ID":26166,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26166","ServerKey":"pl181","X":342,"Y":506},{"Bonus":0,"Continent":"K35","ID":26167,"Name":"Taki Pan","PlayerID":698739350,"Points":6286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26167","ServerKey":"pl181","X":506,"Y":338},{"Bonus":0,"Continent":"K65","ID":26168,"Name":"kathare","PlayerID":873575,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26168","ServerKey":"pl181","X":557,"Y":648},{"Bonus":0,"Continent":"K64","ID":26169,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26169","ServerKey":"pl181","X":457,"Y":650},{"Bonus":0,"Continent":"K34","ID":26170,"Name":"Krab","PlayerID":849096310,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26170","ServerKey":"pl181","X":434,"Y":353},{"Bonus":0,"Continent":"K36","ID":26171,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26171","ServerKey":"pl181","X":614,"Y":387},{"Bonus":0,"Continent":"K64","ID":26172,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26172","ServerKey":"pl181","X":473,"Y":655},{"Bonus":0,"Continent":"K64","ID":26174,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26174","ServerKey":"pl181","X":436,"Y":649},{"Bonus":0,"Continent":"K43","ID":26175,"Name":"NI4","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26175","ServerKey":"pl181","X":345,"Y":459},{"Bonus":0,"Continent":"K53","ID":26176,"Name":"Dajanka 35","PlayerID":849012843,"Points":2125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26176","ServerKey":"pl181","X":356,"Y":576},{"Bonus":6,"Continent":"K65","ID":26177,"Name":".najazd i ostrzal zrobiony","PlayerID":7589468,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26177","ServerKey":"pl181","X":550,"Y":652},{"Bonus":0,"Continent":"K54","ID":26178,"Name":"Zero Stresu","PlayerID":698971484,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26178","ServerKey":"pl181","X":445,"Y":536},{"Bonus":0,"Continent":"K53","ID":26179,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26179","ServerKey":"pl181","X":353,"Y":551},{"Bonus":0,"Continent":"K33","ID":26183,"Name":"002 Elizjum","PlayerID":849059457,"Points":8682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26183","ServerKey":"pl181","X":378,"Y":393},{"Bonus":0,"Continent":"K56","ID":26184,"Name":"Igneum Castrum","PlayerID":8337151,"Points":9245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26184","ServerKey":"pl181","X":631,"Y":594},{"Bonus":0,"Continent":"K63","ID":26185,"Name":"013.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26185","ServerKey":"pl181","X":395,"Y":623},{"Bonus":0,"Continent":"K35","ID":26186,"Name":"095 duko 4","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26186","ServerKey":"pl181","X":549,"Y":353},{"Bonus":0,"Continent":"K66","ID":26187,"Name":"Bunkier 001","PlayerID":699778867,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26187","ServerKey":"pl181","X":614,"Y":607},{"Bonus":0,"Continent":"K64","ID":26188,"Name":"Ave Why!","PlayerID":698585370,"Points":10116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26188","ServerKey":"pl181","X":477,"Y":654},{"Bonus":0,"Continent":"K34","ID":26189,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":8401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26189","ServerKey":"pl181","X":488,"Y":343},{"Bonus":8,"Continent":"K64","ID":26190,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26190","ServerKey":"pl181","X":416,"Y":631},{"Bonus":0,"Continent":"K53","ID":26191,"Name":"02.02.02","PlayerID":8665783,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26191","ServerKey":"pl181","X":371,"Y":594},{"Bonus":4,"Continent":"K63","ID":26192,"Name":".///...//././././././././","PlayerID":849097937,"Points":9772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26192","ServerKey":"pl181","X":392,"Y":620},{"Bonus":0,"Continent":"K43","ID":26194,"Name":"008. Dla flag","PlayerID":698630507,"Points":6669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26194","ServerKey":"pl181","X":356,"Y":440},{"Bonus":1,"Continent":"K34","ID":26195,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26195","ServerKey":"pl181","X":410,"Y":365},{"Bonus":0,"Continent":"K66","ID":26196,"Name":"Sexxy P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26196","ServerKey":"pl181","X":606,"Y":621},{"Bonus":0,"Continent":"K65","ID":26197,"Name":"0492","PlayerID":698659980,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26197","ServerKey":"pl181","X":530,"Y":658},{"Bonus":0,"Continent":"K56","ID":26198,"Name":"007","PlayerID":699351301,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26198","ServerKey":"pl181","X":659,"Y":526},{"Bonus":0,"Continent":"K65","ID":26199,"Name":"017|| Ursa Major","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26199","ServerKey":"pl181","X":500,"Y":659},{"Bonus":0,"Continent":"K64","ID":26200,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26200","ServerKey":"pl181","X":436,"Y":647},{"Bonus":0,"Continent":"K65","ID":26201,"Name":"044,xxx","PlayerID":849004274,"Points":10402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26201","ServerKey":"pl181","X":512,"Y":660},{"Bonus":0,"Continent":"K46","ID":26202,"Name":"015 barbarzyƄska","PlayerID":9238175,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26202","ServerKey":"pl181","X":642,"Y":421},{"Bonus":0,"Continent":"K35","ID":26203,"Name":"Lord Lord Franek .#053","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26203","ServerKey":"pl181","X":528,"Y":343},{"Bonus":0,"Continent":"K66","ID":26204,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26204","ServerKey":"pl181","X":600,"Y":624},{"Bonus":0,"Continent":"K46","ID":26205,"Name":"041","PlayerID":7085502,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26205","ServerKey":"pl181","X":659,"Y":492},{"Bonus":0,"Continent":"K35","ID":26206,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26206","ServerKey":"pl181","X":563,"Y":355},{"Bonus":0,"Continent":"K34","ID":26207,"Name":"#0094 barbarzyƄska","PlayerID":1238300,"Points":8854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26207","ServerKey":"pl181","X":460,"Y":343},{"Bonus":0,"Continent":"K35","ID":26208,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26208","ServerKey":"pl181","X":535,"Y":344},{"Bonus":0,"Continent":"K53","ID":26209,"Name":"Chekku - meito","PlayerID":9280477,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26209","ServerKey":"pl181","X":343,"Y":526},{"Bonus":0,"Continent":"K46","ID":26210,"Name":"035 barbarzyƄska","PlayerID":9238175,"Points":6153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26210","ServerKey":"pl181","X":643,"Y":425},{"Bonus":0,"Continent":"K64","ID":26211,"Name":"015","PlayerID":849089459,"Points":9022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26211","ServerKey":"pl181","X":425,"Y":639},{"Bonus":0,"Continent":"K56","ID":26212,"Name":"D 011","PlayerID":8078914,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26212","ServerKey":"pl181","X":661,"Y":503},{"Bonus":0,"Continent":"K53","ID":26213,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26213","ServerKey":"pl181","X":343,"Y":539},{"Bonus":0,"Continent":"K64","ID":26214,"Name":"019.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26214","ServerKey":"pl181","X":400,"Y":625},{"Bonus":0,"Continent":"K46","ID":26216,"Name":"BACÓWKA |044|","PlayerID":7394371,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26216","ServerKey":"pl181","X":627,"Y":401},{"Bonus":0,"Continent":"K65","ID":26217,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26217","ServerKey":"pl181","X":528,"Y":660},{"Bonus":0,"Continent":"K34","ID":26218,"Name":"0008","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26218","ServerKey":"pl181","X":417,"Y":366},{"Bonus":0,"Continent":"K46","ID":26219,"Name":"061. Ariminium","PlayerID":849091866,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26219","ServerKey":"pl181","X":645,"Y":468},{"Bonus":0,"Continent":"K34","ID":26220,"Name":"211...barba","PlayerID":6920960,"Points":4758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26220","ServerKey":"pl181","X":465,"Y":348},{"Bonus":0,"Continent":"K34","ID":26221,"Name":"North Barba 026","PlayerID":699796330,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26221","ServerKey":"pl181","X":422,"Y":361},{"Bonus":0,"Continent":"K64","ID":26222,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":8538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26222","ServerKey":"pl181","X":415,"Y":635},{"Bonus":0,"Continent":"K64","ID":26223,"Name":"Wioska pdw78","PlayerID":698585370,"Points":9164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26223","ServerKey":"pl181","X":472,"Y":650},{"Bonus":0,"Continent":"K34","ID":26224,"Name":"K34 - [102] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26224","ServerKey":"pl181","X":443,"Y":351},{"Bonus":0,"Continent":"K46","ID":26225,"Name":"#.41 Wioska barbarzyƄska","PlayerID":849054582,"Points":2773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26225","ServerKey":"pl181","X":648,"Y":470},{"Bonus":0,"Continent":"K46","ID":26226,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26226","ServerKey":"pl181","X":653,"Y":453},{"Bonus":0,"Continent":"K34","ID":26227,"Name":"K34 - [013] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26227","ServerKey":"pl181","X":447,"Y":349},{"Bonus":0,"Continent":"K53","ID":26228,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26228","ServerKey":"pl181","X":359,"Y":581},{"Bonus":0,"Continent":"K43","ID":26229,"Name":"013. Dla flag","PlayerID":698630507,"Points":8082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26229","ServerKey":"pl181","X":349,"Y":442},{"Bonus":0,"Continent":"K53","ID":26230,"Name":"Dąbrowa 0014","PlayerID":849096972,"Points":10718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26230","ServerKey":"pl181","X":364,"Y":576},{"Bonus":0,"Continent":"K34","ID":26231,"Name":"#0004 BigKnaga","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26231","ServerKey":"pl181","X":467,"Y":343},{"Bonus":0,"Continent":"K64","ID":26232,"Name":"A007","PlayerID":848912772,"Points":4378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26232","ServerKey":"pl181","X":405,"Y":625},{"Bonus":0,"Continent":"K33","ID":26234,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":8711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26234","ServerKey":"pl181","X":377,"Y":399},{"Bonus":0,"Continent":"K43","ID":26235,"Name":"015 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":5420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26235","ServerKey":"pl181","X":363,"Y":415},{"Bonus":0,"Continent":"K46","ID":26236,"Name":"BACÓWKA |008|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26236","ServerKey":"pl181","X":632,"Y":412},{"Bonus":0,"Continent":"K35","ID":26237,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26237","ServerKey":"pl181","X":577,"Y":361},{"Bonus":0,"Continent":"K63","ID":26240,"Name":".///...//././././././././","PlayerID":849097937,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26240","ServerKey":"pl181","X":377,"Y":607},{"Bonus":0,"Continent":"K64","ID":26241,"Name":"|A| Capitol","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26241","ServerKey":"pl181","X":480,"Y":648},{"Bonus":0,"Continent":"K35","ID":26243,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26243","ServerKey":"pl181","X":568,"Y":353},{"Bonus":0,"Continent":"K66","ID":26244,"Name":"0009","PlayerID":6417987,"Points":7366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26244","ServerKey":"pl181","X":612,"Y":610},{"Bonus":0,"Continent":"K34","ID":26245,"Name":"North Barba 020","PlayerID":699796330,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26245","ServerKey":"pl181","X":425,"Y":355},{"Bonus":0,"Continent":"K46","ID":26247,"Name":"qqq","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26247","ServerKey":"pl181","X":628,"Y":400},{"Bonus":0,"Continent":"K46","ID":26248,"Name":"007 MONETKI","PlayerID":7588382,"Points":8401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26248","ServerKey":"pl181","X":654,"Y":469},{"Bonus":0,"Continent":"K53","ID":26249,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26249","ServerKey":"pl181","X":348,"Y":560},{"Bonus":0,"Continent":"K53","ID":26251,"Name":"20. ƁowczaƄskie wygibasy","PlayerID":8665783,"Points":8512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26251","ServerKey":"pl181","X":370,"Y":593},{"Bonus":0,"Continent":"K64","ID":26252,"Name":"Aboard na","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26252","ServerKey":"pl181","X":489,"Y":659},{"Bonus":0,"Continent":"K53","ID":26253,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26253","ServerKey":"pl181","X":345,"Y":513},{"Bonus":0,"Continent":"K46","ID":26254,"Name":"Jehu_Kingdom_59","PlayerID":8785314,"Points":4635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26254","ServerKey":"pl181","X":644,"Y":437},{"Bonus":0,"Continent":"K66","ID":26255,"Name":"098","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26255","ServerKey":"pl181","X":618,"Y":607},{"Bonus":0,"Continent":"K53","ID":26257,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26257","ServerKey":"pl181","X":344,"Y":522},{"Bonus":0,"Continent":"K56","ID":26259,"Name":"*036*","PlayerID":698670524,"Points":8289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26259","ServerKey":"pl181","X":631,"Y":590},{"Bonus":0,"Continent":"K66","ID":26260,"Name":"099","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26260","ServerKey":"pl181","X":620,"Y":606},{"Bonus":0,"Continent":"K63","ID":26261,"Name":"Valhalla A2","PlayerID":849097002,"Points":8071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26261","ServerKey":"pl181","X":376,"Y":603},{"Bonus":0,"Continent":"K46","ID":26262,"Name":"A029 La Mata","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26262","ServerKey":"pl181","X":655,"Y":457},{"Bonus":0,"Continent":"K65","ID":26263,"Name":"*Lister","PlayerID":699443920,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26263","ServerKey":"pl181","X":576,"Y":638},{"Bonus":6,"Continent":"K53","ID":26264,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26264","ServerKey":"pl181","X":348,"Y":536},{"Bonus":0,"Continent":"K46","ID":26265,"Name":"071 | PALESTINA","PlayerID":9228039,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26265","ServerKey":"pl181","X":636,"Y":421},{"Bonus":0,"Continent":"K53","ID":26266,"Name":"Hibana","PlayerID":849095992,"Points":8733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26266","ServerKey":"pl181","X":372,"Y":590},{"Bonus":7,"Continent":"K65","ID":26267,"Name":"Krzychu , kadetem tera .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26267","ServerKey":"pl181","X":588,"Y":630},{"Bonus":0,"Continent":"K65","ID":26268,"Name":"*Nomad","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26268","ServerKey":"pl181","X":578,"Y":642},{"Bonus":0,"Continent":"K43","ID":26269,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26269","ServerKey":"pl181","X":346,"Y":461},{"Bonus":0,"Continent":"K65","ID":26270,"Name":"032","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26270","ServerKey":"pl181","X":569,"Y":641},{"Bonus":0,"Continent":"K43","ID":26271,"Name":"Wioska Tomek z Tyyrra X Adam547","PlayerID":610196,"Points":398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26271","ServerKey":"pl181","X":371,"Y":400},{"Bonus":0,"Continent":"K53","ID":26272,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26272","ServerKey":"pl181","X":337,"Y":501},{"Bonus":0,"Continent":"K65","ID":26274,"Name":"0588","PlayerID":698659980,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26274","ServerKey":"pl181","X":544,"Y":656},{"Bonus":0,"Continent":"K53","ID":26275,"Name":"off 100 %","PlayerID":849012521,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26275","ServerKey":"pl181","X":361,"Y":575},{"Bonus":5,"Continent":"K35","ID":26276,"Name":"Taras","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26276","ServerKey":"pl181","X":590,"Y":365},{"Bonus":0,"Continent":"K56","ID":26278,"Name":"024","PlayerID":699351301,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26278","ServerKey":"pl181","X":656,"Y":526},{"Bonus":0,"Continent":"K65","ID":26279,"Name":"*Nonsens","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26279","ServerKey":"pl181","X":577,"Y":643},{"Bonus":0,"Continent":"K43","ID":26280,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26280","ServerKey":"pl181","X":347,"Y":446},{"Bonus":0,"Continent":"K53","ID":26281,"Name":"Chekku - meito","PlayerID":9280477,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26281","ServerKey":"pl181","X":339,"Y":525},{"Bonus":0,"Continent":"K35","ID":26282,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26282","ServerKey":"pl181","X":510,"Y":338},{"Bonus":0,"Continent":"K34","ID":26284,"Name":"079...barbarka","PlayerID":6920960,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26284","ServerKey":"pl181","X":460,"Y":346},{"Bonus":9,"Continent":"K46","ID":26285,"Name":"034","PlayerID":7085502,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26285","ServerKey":"pl181","X":659,"Y":490},{"Bonus":0,"Continent":"K35","ID":26287,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26287","ServerKey":"pl181","X":570,"Y":358},{"Bonus":0,"Continent":"K66","ID":26288,"Name":"Wioska majonespzn","PlayerID":6417987,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26288","ServerKey":"pl181","X":614,"Y":613},{"Bonus":0,"Continent":"K56","ID":26289,"Name":"98k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26289","ServerKey":"pl181","X":652,"Y":559},{"Bonus":0,"Continent":"K33","ID":26290,"Name":"c Wioska 015","PlayerID":3909522,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26290","ServerKey":"pl181","X":395,"Y":387},{"Bonus":0,"Continent":"K56","ID":26291,"Name":"Nowa 31","PlayerID":698702991,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26291","ServerKey":"pl181","X":646,"Y":567},{"Bonus":0,"Continent":"K43","ID":26292,"Name":"No Way","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26292","ServerKey":"pl181","X":345,"Y":451},{"Bonus":0,"Continent":"K43","ID":26293,"Name":"109","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26293","ServerKey":"pl181","X":348,"Y":459},{"Bonus":0,"Continent":"K53","ID":26294,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26294","ServerKey":"pl181","X":345,"Y":515},{"Bonus":0,"Continent":"K56","ID":26295,"Name":"Battery","PlayerID":848926293,"Points":4789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26295","ServerKey":"pl181","X":630,"Y":595},{"Bonus":0,"Continent":"K43","ID":26296,"Name":"Maszlug kolonia XVI","PlayerID":848977649,"Points":5360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26296","ServerKey":"pl181","X":364,"Y":420},{"Bonus":0,"Continent":"K56","ID":26297,"Name":"079","PlayerID":698999105,"Points":3585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26297","ServerKey":"pl181","X":628,"Y":597},{"Bonus":0,"Continent":"K56","ID":26298,"Name":"083","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26298","ServerKey":"pl181","X":653,"Y":556},{"Bonus":0,"Continent":"K34","ID":26299,"Name":"064...barbarka","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26299","ServerKey":"pl181","X":456,"Y":346},{"Bonus":0,"Continent":"K63","ID":26300,"Name":"Wioska 002","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26300","ServerKey":"pl181","X":388,"Y":614},{"Bonus":0,"Continent":"K53","ID":26301,"Name":"024.barbara 8","PlayerID":1830149,"Points":4451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26301","ServerKey":"pl181","X":339,"Y":508},{"Bonus":0,"Continent":"K63","ID":26302,"Name":"0630","PlayerID":698659980,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26302","ServerKey":"pl181","X":379,"Y":601},{"Bonus":0,"Continent":"K56","ID":26303,"Name":"JawwmG P","PlayerID":698635863,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26303","ServerKey":"pl181","X":651,"Y":561},{"Bonus":0,"Continent":"K35","ID":26304,"Name":"A047","PlayerID":699485250,"Points":7699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26304","ServerKey":"pl181","X":587,"Y":365},{"Bonus":0,"Continent":"K46","ID":26305,"Name":"16. Trumienka","PlayerID":699298370,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26305","ServerKey":"pl181","X":637,"Y":412},{"Bonus":0,"Continent":"K53","ID":26306,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26306","ServerKey":"pl181","X":339,"Y":500},{"Bonus":0,"Continent":"K56","ID":26307,"Name":"041","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26307","ServerKey":"pl181","X":649,"Y":552},{"Bonus":0,"Continent":"K64","ID":26308,"Name":"Ave Why!","PlayerID":698585370,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26308","ServerKey":"pl181","X":497,"Y":658},{"Bonus":0,"Continent":"K56","ID":26309,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26309","ServerKey":"pl181","X":623,"Y":596},{"Bonus":0,"Continent":"K64","ID":26310,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":4267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26310","ServerKey":"pl181","X":428,"Y":639},{"Bonus":0,"Continent":"K56","ID":26311,"Name":"O22 Inari","PlayerID":699272880,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26311","ServerKey":"pl181","X":660,"Y":523},{"Bonus":0,"Continent":"K56","ID":26313,"Name":"045","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26313","ServerKey":"pl181","X":655,"Y":547},{"Bonus":0,"Continent":"K66","ID":26314,"Name":"Wioska barbarzyƄska","PlayerID":6417987,"Points":5719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26314","ServerKey":"pl181","X":612,"Y":609},{"Bonus":0,"Continent":"K34","ID":26315,"Name":"0023","PlayerID":848913037,"Points":8580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26315","ServerKey":"pl181","X":413,"Y":366},{"Bonus":0,"Continent":"K34","ID":26316,"Name":".030.","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26316","ServerKey":"pl181","X":486,"Y":370},{"Bonus":0,"Continent":"K65","ID":26317,"Name":"0293","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26317","ServerKey":"pl181","X":533,"Y":659},{"Bonus":0,"Continent":"K35","ID":26318,"Name":"Lord Lord Franek .#054","PlayerID":698420691,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26318","ServerKey":"pl181","X":532,"Y":344},{"Bonus":0,"Continent":"K53","ID":26319,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26319","ServerKey":"pl181","X":349,"Y":550},{"Bonus":0,"Continent":"K65","ID":26320,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26320","ServerKey":"pl181","X":522,"Y":656},{"Bonus":0,"Continent":"K54","ID":26321,"Name":"kulik 000","PlayerID":698290577,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26321","ServerKey":"pl181","X":400,"Y":508},{"Bonus":0,"Continent":"K56","ID":26322,"Name":"Wioska barbarzyƄska","PlayerID":699316421,"Points":1851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26322","ServerKey":"pl181","X":649,"Y":567},{"Bonus":0,"Continent":"K43","ID":26324,"Name":"A0250","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26324","ServerKey":"pl181","X":338,"Y":488},{"Bonus":0,"Continent":"K64","ID":26325,"Name":"KUZYN","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26325","ServerKey":"pl181","X":413,"Y":637},{"Bonus":0,"Continent":"K66","ID":26326,"Name":"082","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26326","ServerKey":"pl181","X":617,"Y":606},{"Bonus":0,"Continent":"K53","ID":26327,"Name":"Macp 4","PlayerID":61791,"Points":4104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26327","ServerKey":"pl181","X":339,"Y":514},{"Bonus":0,"Continent":"K33","ID":26329,"Name":"ona","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26329","ServerKey":"pl181","X":389,"Y":386},{"Bonus":0,"Continent":"K34","ID":26330,"Name":"K34 - [019] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26330","ServerKey":"pl181","X":450,"Y":355},{"Bonus":0,"Continent":"K34","ID":26331,"Name":"K34 - [127] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26331","ServerKey":"pl181","X":444,"Y":347},{"Bonus":0,"Continent":"K64","ID":26334,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26334","ServerKey":"pl181","X":474,"Y":660},{"Bonus":0,"Continent":"K65","ID":26335,"Name":"037 mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26335","ServerKey":"pl181","X":556,"Y":648},{"Bonus":0,"Continent":"K43","ID":26336,"Name":"M181_043","PlayerID":393668,"Points":9321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26336","ServerKey":"pl181","X":358,"Y":425},{"Bonus":0,"Continent":"K63","ID":26337,"Name":"Wioska 003","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26337","ServerKey":"pl181","X":388,"Y":613},{"Bonus":0,"Continent":"K34","ID":26338,"Name":"090...bar","PlayerID":6920960,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26338","ServerKey":"pl181","X":457,"Y":343},{"Bonus":0,"Continent":"K34","ID":26339,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26339","ServerKey":"pl181","X":483,"Y":369},{"Bonus":0,"Continent":"K63","ID":26340,"Name":"0456","PlayerID":698659980,"Points":3942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26340","ServerKey":"pl181","X":378,"Y":602},{"Bonus":0,"Continent":"K65","ID":26341,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26341","ServerKey":"pl181","X":527,"Y":658},{"Bonus":0,"Continent":"K46","ID":26342,"Name":"23. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26342","ServerKey":"pl181","X":638,"Y":413},{"Bonus":0,"Continent":"K46","ID":26343,"Name":"#.18 XXX","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26343","ServerKey":"pl181","X":661,"Y":475},{"Bonus":0,"Continent":"K34","ID":26345,"Name":"Szulernia","PlayerID":7249451,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26345","ServerKey":"pl181","X":410,"Y":364},{"Bonus":0,"Continent":"K64","ID":26346,"Name":"010","PlayerID":848953066,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26346","ServerKey":"pl181","X":484,"Y":657},{"Bonus":0,"Continent":"K34","ID":26347,"Name":"Wiocha","PlayerID":849096544,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26347","ServerKey":"pl181","X":426,"Y":363},{"Bonus":0,"Continent":"K56","ID":26348,"Name":"KREV 003","PlayerID":848988744,"Points":9188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26348","ServerKey":"pl181","X":644,"Y":564},{"Bonus":0,"Continent":"K65","ID":26349,"Name":"0193","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26349","ServerKey":"pl181","X":556,"Y":650},{"Bonus":0,"Continent":"K66","ID":26350,"Name":"Ć»UBRAWKA 009","PlayerID":33900,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26350","ServerKey":"pl181","X":600,"Y":629},{"Bonus":0,"Continent":"K35","ID":26351,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26351","ServerKey":"pl181","X":511,"Y":342},{"Bonus":0,"Continent":"K65","ID":26352,"Name":"*040","PlayerID":699567608,"Points":9387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26352","ServerKey":"pl181","X":590,"Y":635},{"Bonus":0,"Continent":"K35","ID":26353,"Name":"Lord Lord Franek .#035","PlayerID":698420691,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26353","ServerKey":"pl181","X":521,"Y":344},{"Bonus":0,"Continent":"K64","ID":26354,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26354","ServerKey":"pl181","X":448,"Y":649},{"Bonus":3,"Continent":"K43","ID":26355,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26355","ServerKey":"pl181","X":338,"Y":497},{"Bonus":0,"Continent":"K56","ID":26356,"Name":"038","PlayerID":849095227,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26356","ServerKey":"pl181","X":654,"Y":545},{"Bonus":0,"Continent":"K34","ID":26357,"Name":"#0060 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26357","ServerKey":"pl181","X":468,"Y":341},{"Bonus":0,"Continent":"K43","ID":26358,"Name":"NI2","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26358","ServerKey":"pl181","X":347,"Y":458},{"Bonus":0,"Continent":"K34","ID":26359,"Name":"0024","PlayerID":848913037,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26359","ServerKey":"pl181","X":415,"Y":369},{"Bonus":0,"Continent":"K43","ID":26360,"Name":"Szlachcic","PlayerID":6258092,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26360","ServerKey":"pl181","X":347,"Y":465},{"Bonus":0,"Continent":"K35","ID":26361,"Name":"Lord Lord Franek .#055","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26361","ServerKey":"pl181","X":534,"Y":343},{"Bonus":0,"Continent":"K34","ID":26362,"Name":"Dzielnica handlowa","PlayerID":849048216,"Points":4918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26362","ServerKey":"pl181","X":481,"Y":341},{"Bonus":0,"Continent":"K53","ID":26363,"Name":"off 100 %","PlayerID":849012521,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26363","ServerKey":"pl181","X":355,"Y":572},{"Bonus":0,"Continent":"K35","ID":26364,"Name":"016) PustkĂłw Wilczkowski","PlayerID":849097103,"Points":2807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26364","ServerKey":"pl181","X":538,"Y":348},{"Bonus":0,"Continent":"K35","ID":26365,"Name":"Krosno 11","PlayerID":7485877,"Points":4281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26365","ServerKey":"pl181","X":532,"Y":341},{"Bonus":0,"Continent":"K34","ID":26366,"Name":"041...ZACHÓD","PlayerID":6920960,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26366","ServerKey":"pl181","X":453,"Y":345},{"Bonus":0,"Continent":"K35","ID":26367,"Name":"I#021","PlayerID":2065730,"Points":8287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26367","ServerKey":"pl181","X":598,"Y":372},{"Bonus":0,"Continent":"K34","ID":26368,"Name":"0024","PlayerID":699431255,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26368","ServerKey":"pl181","X":418,"Y":358},{"Bonus":0,"Continent":"K35","ID":26369,"Name":"Lord Lord Franek .#056","PlayerID":698420691,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26369","ServerKey":"pl181","X":537,"Y":343},{"Bonus":0,"Continent":"K33","ID":26370,"Name":"SoƂtys Wsi Legionistars","PlayerID":849027025,"Points":7586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26370","ServerKey":"pl181","X":396,"Y":377},{"Bonus":0,"Continent":"K65","ID":26371,"Name":"yogi czysta","PlayerID":2808172,"Points":6469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26371","ServerKey":"pl181","X":546,"Y":651},{"Bonus":0,"Continent":"K53","ID":26372,"Name":"022 PotÄ™ĆŒny Dzban","PlayerID":699382126,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26372","ServerKey":"pl181","X":392,"Y":561},{"Bonus":0,"Continent":"K56","ID":26373,"Name":"049","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26373","ServerKey":"pl181","X":638,"Y":532},{"Bonus":0,"Continent":"K64","ID":26374,"Name":"011","PlayerID":848953066,"Points":9197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26374","ServerKey":"pl181","X":484,"Y":663},{"Bonus":0,"Continent":"K43","ID":26376,"Name":"Wioska barbarzyƄska II","PlayerID":8967440,"Points":2861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26376","ServerKey":"pl181","X":377,"Y":402},{"Bonus":0,"Continent":"K53","ID":26377,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26377","ServerKey":"pl181","X":345,"Y":540},{"Bonus":0,"Continent":"K56","ID":26378,"Name":"Sony 911","PlayerID":1415009,"Points":7947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26378","ServerKey":"pl181","X":639,"Y":585},{"Bonus":0,"Continent":"K34","ID":26379,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26379","ServerKey":"pl181","X":436,"Y":358},{"Bonus":0,"Continent":"K56","ID":26380,"Name":"D 004","PlayerID":8078914,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26380","ServerKey":"pl181","X":659,"Y":503},{"Bonus":0,"Continent":"K64","ID":26382,"Name":"014","PlayerID":698650301,"Points":7148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26382","ServerKey":"pl181","X":458,"Y":652},{"Bonus":0,"Continent":"K43","ID":26383,"Name":"M181_020","PlayerID":393668,"Points":9675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26383","ServerKey":"pl181","X":359,"Y":429},{"Bonus":0,"Continent":"K35","ID":26384,"Name":"troja4","PlayerID":698290319,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26384","ServerKey":"pl181","X":560,"Y":350},{"Bonus":0,"Continent":"K34","ID":26385,"Name":"K34 x033","PlayerID":698364331,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26385","ServerKey":"pl181","X":409,"Y":367},{"Bonus":0,"Continent":"K36","ID":26386,"Name":"Wioska barbarzyƄska","PlayerID":698241117,"Points":6980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26386","ServerKey":"pl181","X":618,"Y":389},{"Bonus":0,"Continent":"K34","ID":26387,"Name":"cc Sqnow","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26387","ServerKey":"pl181","X":409,"Y":376},{"Bonus":0,"Continent":"K43","ID":26388,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26388","ServerKey":"pl181","X":345,"Y":461},{"Bonus":0,"Continent":"K63","ID":26389,"Name":"005 Mikrus V","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26389","ServerKey":"pl181","X":392,"Y":619},{"Bonus":0,"Continent":"K35","ID":26390,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26390","ServerKey":"pl181","X":574,"Y":360},{"Bonus":0,"Continent":"K46","ID":26391,"Name":"110","PlayerID":7085502,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26391","ServerKey":"pl181","X":630,"Y":410},{"Bonus":0,"Continent":"K63","ID":26392,"Name":"12. Danucha","PlayerID":8665783,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26392","ServerKey":"pl181","X":372,"Y":600},{"Bonus":0,"Continent":"K53","ID":26393,"Name":"x005","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26393","ServerKey":"pl181","X":357,"Y":568},{"Bonus":0,"Continent":"K35","ID":26394,"Name":"ZƂa","PlayerID":570100,"Points":4661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26394","ServerKey":"pl181","X":540,"Y":349},{"Bonus":0,"Continent":"K33","ID":26395,"Name":"cc pol006","PlayerID":3909522,"Points":5446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26395","ServerKey":"pl181","X":398,"Y":376},{"Bonus":0,"Continent":"K35","ID":26396,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26396","ServerKey":"pl181","X":511,"Y":340},{"Bonus":0,"Continent":"K35","ID":26397,"Name":"008) SƂupiec","PlayerID":849097103,"Points":2574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26397","ServerKey":"pl181","X":545,"Y":350},{"Bonus":0,"Continent":"K35","ID":26398,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26398","ServerKey":"pl181","X":572,"Y":354},{"Bonus":0,"Continent":"K34","ID":26399,"Name":"cc Wielka Mqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26399","ServerKey":"pl181","X":407,"Y":376},{"Bonus":0,"Continent":"K65","ID":26400,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26400","ServerKey":"pl181","X":514,"Y":656},{"Bonus":0,"Continent":"K56","ID":26401,"Name":"=037= Wioska barbarzyƄska","PlayerID":3781794,"Points":8874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26401","ServerKey":"pl181","X":655,"Y":552},{"Bonus":0,"Continent":"K65","ID":26402,"Name":"Janusz biznesu","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26402","ServerKey":"pl181","X":590,"Y":627},{"Bonus":0,"Continent":"K35","ID":26403,"Name":"017 bounce xD","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26403","ServerKey":"pl181","X":589,"Y":365},{"Bonus":0,"Continent":"K65","ID":26404,"Name":"026","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26404","ServerKey":"pl181","X":564,"Y":646},{"Bonus":0,"Continent":"K35","ID":26405,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26405","ServerKey":"pl181","X":559,"Y":352},{"Bonus":0,"Continent":"K64","ID":26406,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":9118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26406","ServerKey":"pl181","X":418,"Y":635},{"Bonus":0,"Continent":"K46","ID":26408,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26408","ServerKey":"pl181","X":659,"Y":469},{"Bonus":0,"Continent":"K64","ID":26409,"Name":"Dzikie wsparcie","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26409","ServerKey":"pl181","X":470,"Y":658},{"Bonus":0,"Continent":"K53","ID":26410,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26410","ServerKey":"pl181","X":359,"Y":578},{"Bonus":9,"Continent":"K46","ID":26411,"Name":"018 koczownikĂłw","PlayerID":9238175,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26411","ServerKey":"pl181","X":641,"Y":424},{"Bonus":0,"Continent":"K65","ID":26412,"Name":"ObrzeĆŒa 092","PlayerID":848915531,"Points":7712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26412","ServerKey":"pl181","X":551,"Y":652},{"Bonus":0,"Continent":"K46","ID":26413,"Name":"Jaaa","PlayerID":698635863,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26413","ServerKey":"pl181","X":660,"Y":489},{"Bonus":0,"Continent":"K64","ID":26414,"Name":"JEDNORĘKI BANDYTA","PlayerID":848913998,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26414","ServerKey":"pl181","X":411,"Y":634},{"Bonus":0,"Continent":"K56","ID":26415,"Name":"Wioska 037","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26415","ServerKey":"pl181","X":632,"Y":591},{"Bonus":0,"Continent":"K35","ID":26416,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26416","ServerKey":"pl181","X":508,"Y":340},{"Bonus":0,"Continent":"K34","ID":26417,"Name":"044...PÓƁNOC","PlayerID":6920960,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26417","ServerKey":"pl181","X":461,"Y":344},{"Bonus":8,"Continent":"K34","ID":26418,"Name":"0041","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26418","ServerKey":"pl181","X":417,"Y":367},{"Bonus":0,"Continent":"K64","ID":26419,"Name":"017","PlayerID":699736927,"Points":3637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26419","ServerKey":"pl181","X":424,"Y":642},{"Bonus":0,"Continent":"K64","ID":26420,"Name":"Wioska NePtuNn998","PlayerID":698807570,"Points":10118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26420","ServerKey":"pl181","X":465,"Y":660},{"Bonus":0,"Continent":"K43","ID":26421,"Name":"DW9","PlayerID":393668,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26421","ServerKey":"pl181","X":346,"Y":446},{"Bonus":0,"Continent":"K65","ID":26422,"Name":"0197","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26422","ServerKey":"pl181","X":557,"Y":650},{"Bonus":0,"Continent":"K46","ID":26423,"Name":"A017 goƛć D0dG3r3k","PlayerID":113796,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26423","ServerKey":"pl181","X":657,"Y":465},{"Bonus":0,"Continent":"K33","ID":26424,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26424","ServerKey":"pl181","X":379,"Y":398},{"Bonus":0,"Continent":"K43","ID":26425,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":7540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26425","ServerKey":"pl181","X":346,"Y":445},{"Bonus":0,"Continent":"K34","ID":26426,"Name":"cc Wioska M6","PlayerID":3909522,"Points":8201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26426","ServerKey":"pl181","X":403,"Y":375},{"Bonus":0,"Continent":"K65","ID":26427,"Name":"sony911","PlayerID":1415009,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26427","ServerKey":"pl181","X":586,"Y":639},{"Bonus":0,"Continent":"K53","ID":26428,"Name":"Chekku - meito","PlayerID":9280477,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26428","ServerKey":"pl181","X":344,"Y":528},{"Bonus":0,"Continent":"K64","ID":26429,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26429","ServerKey":"pl181","X":414,"Y":632},{"Bonus":0,"Continent":"K46","ID":26430,"Name":"067 | PALESTINA","PlayerID":9228039,"Points":3469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26430","ServerKey":"pl181","X":642,"Y":427},{"Bonus":0,"Continent":"K34","ID":26431,"Name":"North PƂoƄsk","PlayerID":699796330,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26431","ServerKey":"pl181","X":426,"Y":356},{"Bonus":0,"Continent":"K34","ID":26432,"Name":"Szlachcic","PlayerID":698160606,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26432","ServerKey":"pl181","X":405,"Y":372},{"Bonus":0,"Continent":"K53","ID":26433,"Name":"Chekku - meito","PlayerID":9280477,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26433","ServerKey":"pl181","X":343,"Y":533},{"Bonus":0,"Continent":"K34","ID":26434,"Name":"0002","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26434","ServerKey":"pl181","X":412,"Y":370},{"Bonus":0,"Continent":"K56","ID":26435,"Name":"049","PlayerID":699316421,"Points":9425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26435","ServerKey":"pl181","X":645,"Y":565},{"Bonus":0,"Continent":"K33","ID":26436,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":7532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26436","ServerKey":"pl181","X":399,"Y":371},{"Bonus":0,"Continent":"K56","ID":26437,"Name":"*034*","PlayerID":698670524,"Points":7205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26437","ServerKey":"pl181","X":633,"Y":588},{"Bonus":2,"Continent":"K63","ID":26438,"Name":"Pobozowisko","PlayerID":699513260,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26438","ServerKey":"pl181","X":384,"Y":613},{"Bonus":0,"Continent":"K43","ID":26439,"Name":"019 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":6279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26439","ServerKey":"pl181","X":368,"Y":421},{"Bonus":0,"Continent":"K64","ID":26440,"Name":"08. Maximum Acceleration","PlayerID":849100262,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26440","ServerKey":"pl181","X":495,"Y":657},{"Bonus":0,"Continent":"K64","ID":26441,"Name":"psycha sitting","PlayerID":699736927,"Points":5018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26441","ServerKey":"pl181","X":457,"Y":651},{"Bonus":0,"Continent":"K64","ID":26442,"Name":"033 NePtuNn998","PlayerID":699834004,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26442","ServerKey":"pl181","X":468,"Y":658},{"Bonus":0,"Continent":"K46","ID":26443,"Name":"029","PlayerID":849006412,"Points":7703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26443","ServerKey":"pl181","X":660,"Y":495},{"Bonus":0,"Continent":"K46","ID":26444,"Name":"028 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26444","ServerKey":"pl181","X":638,"Y":425},{"Bonus":0,"Continent":"K65","ID":26445,"Name":"z 035","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26445","ServerKey":"pl181","X":587,"Y":639},{"Bonus":0,"Continent":"K35","ID":26446,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26446","ServerKey":"pl181","X":568,"Y":359},{"Bonus":0,"Continent":"K33","ID":26447,"Name":"Wioska barbarzyƄska","PlayerID":698364331,"Points":1491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26447","ServerKey":"pl181","X":394,"Y":393},{"Bonus":0,"Continent":"K53","ID":26448,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":3210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26448","ServerKey":"pl181","X":342,"Y":541},{"Bonus":0,"Continent":"K43","ID":26451,"Name":"A0302","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26451","ServerKey":"pl181","X":340,"Y":487},{"Bonus":7,"Continent":"K34","ID":26452,"Name":"0011","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26452","ServerKey":"pl181","X":418,"Y":363},{"Bonus":0,"Continent":"K56","ID":26453,"Name":"O27 Valga","PlayerID":699272880,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26453","ServerKey":"pl181","X":660,"Y":512},{"Bonus":0,"Continent":"K33","ID":26454,"Name":"Wioska 007","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26454","ServerKey":"pl181","X":387,"Y":388},{"Bonus":0,"Continent":"K34","ID":26455,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26455","ServerKey":"pl181","X":499,"Y":337},{"Bonus":0,"Continent":"K66","ID":26456,"Name":"100","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26456","ServerKey":"pl181","X":624,"Y":605},{"Bonus":0,"Continent":"K56","ID":26458,"Name":"Wioska 000","PlayerID":2999957,"Points":7035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26458","ServerKey":"pl181","X":659,"Y":530},{"Bonus":0,"Continent":"K53","ID":26460,"Name":"Skazany Na Instynkt","PlayerID":8004076,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26460","ServerKey":"pl181","X":367,"Y":583},{"Bonus":0,"Continent":"K43","ID":26461,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26461","ServerKey":"pl181","X":340,"Y":476},{"Bonus":0,"Continent":"K33","ID":26462,"Name":"0015 centrum","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26462","ServerKey":"pl181","X":389,"Y":380},{"Bonus":0,"Continent":"K44","ID":26463,"Name":"FKG 01-08","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26463","ServerKey":"pl181","X":415,"Y":415},{"Bonus":0,"Continent":"K63","ID":26464,"Name":".14. Limoges a","PlayerID":272173,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26464","ServerKey":"pl181","X":370,"Y":600},{"Bonus":0,"Continent":"K64","ID":26465,"Name":"Wioska 4","PlayerID":699736927,"Points":8790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26465","ServerKey":"pl181","X":423,"Y":638},{"Bonus":0,"Continent":"K53","ID":26466,"Name":"0459","PlayerID":699513260,"Points":4009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26466","ServerKey":"pl181","X":379,"Y":599},{"Bonus":0,"Continent":"K43","ID":26467,"Name":"A0251","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26467","ServerKey":"pl181","X":340,"Y":491},{"Bonus":0,"Continent":"K46","ID":26468,"Name":"021 Wioska","PlayerID":699671454,"Points":6079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26468","ServerKey":"pl181","X":656,"Y":465},{"Bonus":0,"Continent":"K64","ID":26469,"Name":"wCana","PlayerID":699849210,"Points":4959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26469","ServerKey":"pl181","X":444,"Y":652},{"Bonus":0,"Continent":"K56","ID":26470,"Name":"Jaaa","PlayerID":698635863,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26470","ServerKey":"pl181","X":629,"Y":592},{"Bonus":0,"Continent":"K64","ID":26471,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":5154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26471","ServerKey":"pl181","X":415,"Y":638},{"Bonus":0,"Continent":"K46","ID":26472,"Name":"A020 darek jackr1","PlayerID":113796,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26472","ServerKey":"pl181","X":659,"Y":452},{"Bonus":0,"Continent":"K66","ID":26473,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26473","ServerKey":"pl181","X":608,"Y":616},{"Bonus":0,"Continent":"K35","ID":26474,"Name":"Lord Lord Franek .#012","PlayerID":698420691,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26474","ServerKey":"pl181","X":535,"Y":347},{"Bonus":0,"Continent":"K56","ID":26475,"Name":"B 012","PlayerID":8078914,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26475","ServerKey":"pl181","X":658,"Y":529},{"Bonus":0,"Continent":"K56","ID":26476,"Name":"045","PlayerID":699316421,"Points":8433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26476","ServerKey":"pl181","X":647,"Y":554},{"Bonus":0,"Continent":"K64","ID":26477,"Name":"005.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26477","ServerKey":"pl181","X":402,"Y":627},{"Bonus":0,"Continent":"K56","ID":26478,"Name":"076","PlayerID":698786826,"Points":8416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26478","ServerKey":"pl181","X":622,"Y":599},{"Bonus":0,"Continent":"K34","ID":26479,"Name":"0017","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26479","ServerKey":"pl181","X":415,"Y":366},{"Bonus":0,"Continent":"K56","ID":26480,"Name":"B 044","PlayerID":8078914,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26480","ServerKey":"pl181","X":654,"Y":531},{"Bonus":0,"Continent":"K35","ID":26481,"Name":"Lord Lord Franek .#057","PlayerID":698420691,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26481","ServerKey":"pl181","X":521,"Y":340},{"Bonus":0,"Continent":"K53","ID":26482,"Name":"Wioska barbarzyƄska","PlayerID":699262350,"Points":5683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26482","ServerKey":"pl181","X":338,"Y":519},{"Bonus":0,"Continent":"K33","ID":26483,"Name":"004 Eden","PlayerID":849059457,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26483","ServerKey":"pl181","X":380,"Y":393},{"Bonus":0,"Continent":"K65","ID":26484,"Name":"0493","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26484","ServerKey":"pl181","X":541,"Y":653},{"Bonus":0,"Continent":"K43","ID":26485,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26485","ServerKey":"pl181","X":340,"Y":481},{"Bonus":0,"Continent":"K43","ID":26487,"Name":"Szlachcic","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26487","ServerKey":"pl181","X":348,"Y":451},{"Bonus":0,"Continent":"K64","ID":26488,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26488","ServerKey":"pl181","X":471,"Y":656},{"Bonus":0,"Continent":"K64","ID":26489,"Name":"022.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26489","ServerKey":"pl181","X":401,"Y":630},{"Bonus":0,"Continent":"K35","ID":26490,"Name":"Lord Lord Franek .#036","PlayerID":698420691,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26490","ServerKey":"pl181","X":530,"Y":346},{"Bonus":0,"Continent":"K33","ID":26491,"Name":"016","PlayerID":849059457,"Points":2512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26491","ServerKey":"pl181","X":381,"Y":395},{"Bonus":0,"Continent":"K34","ID":26492,"Name":"011...ZACH_O","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26492","ServerKey":"pl181","X":454,"Y":352},{"Bonus":0,"Continent":"K43","ID":26493,"Name":"A0070","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26493","ServerKey":"pl181","X":343,"Y":493},{"Bonus":0,"Continent":"K34","ID":26495,"Name":"0025","PlayerID":848913037,"Points":6655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26495","ServerKey":"pl181","X":413,"Y":367},{"Bonus":0,"Continent":"K35","ID":26496,"Name":"039 040","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26496","ServerKey":"pl181","X":550,"Y":346},{"Bonus":0,"Continent":"K34","ID":26497,"Name":"Yyyy","PlayerID":699883079,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26497","ServerKey":"pl181","X":496,"Y":342},{"Bonus":0,"Continent":"K56","ID":26498,"Name":"039","PlayerID":7085502,"Points":9229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26498","ServerKey":"pl181","X":663,"Y":505},{"Bonus":0,"Continent":"K56","ID":26499,"Name":"=046= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26499","ServerKey":"pl181","X":655,"Y":548},{"Bonus":0,"Continent":"K35","ID":26500,"Name":"A026","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26500","ServerKey":"pl181","X":587,"Y":369},{"Bonus":0,"Continent":"K63","ID":26501,"Name":".///...//././././././././","PlayerID":849097937,"Points":8425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26501","ServerKey":"pl181","X":389,"Y":619},{"Bonus":7,"Continent":"K34","ID":26502,"Name":"cc Osada 11","PlayerID":3909522,"Points":5846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26502","ServerKey":"pl181","X":400,"Y":374},{"Bonus":0,"Continent":"K56","ID":26503,"Name":"jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26503","ServerKey":"pl181","X":634,"Y":581},{"Bonus":0,"Continent":"K64","ID":26504,"Name":"No. 8","PlayerID":849089459,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26504","ServerKey":"pl181","X":479,"Y":662},{"Bonus":0,"Continent":"K53","ID":26505,"Name":"022","PlayerID":6853693,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26505","ServerKey":"pl181","X":358,"Y":540},{"Bonus":0,"Continent":"K35","ID":26506,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26506","ServerKey":"pl181","X":576,"Y":360},{"Bonus":0,"Continent":"K64","ID":26507,"Name":"025","PlayerID":849089459,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26507","ServerKey":"pl181","X":419,"Y":639},{"Bonus":0,"Continent":"K43","ID":26508,"Name":"2.10","PlayerID":6258092,"Points":9440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26508","ServerKey":"pl181","X":345,"Y":455},{"Bonus":0,"Continent":"K64","ID":26509,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26509","ServerKey":"pl181","X":413,"Y":635},{"Bonus":0,"Continent":"K35","ID":26510,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26510","ServerKey":"pl181","X":549,"Y":345},{"Bonus":0,"Continent":"K63","ID":26511,"Name":"Pobozowisko","PlayerID":699513260,"Points":10806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26511","ServerKey":"pl181","X":385,"Y":611},{"Bonus":0,"Continent":"K34","ID":26512,"Name":"#0047 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26512","ServerKey":"pl181","X":473,"Y":340},{"Bonus":0,"Continent":"K65","ID":26513,"Name":"sony911","PlayerID":1415009,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26513","ServerKey":"pl181","X":588,"Y":633},{"Bonus":0,"Continent":"K56","ID":26514,"Name":"042","PlayerID":849095227,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26514","ServerKey":"pl181","X":651,"Y":544},{"Bonus":0,"Continent":"K65","ID":26515,"Name":"20. Morasko","PlayerID":849092769,"Points":11946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26515","ServerKey":"pl181","X":508,"Y":658},{"Bonus":0,"Continent":"K46","ID":26516,"Name":"B11","PlayerID":849093742,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26516","ServerKey":"pl181","X":647,"Y":444},{"Bonus":0,"Continent":"K56","ID":26517,"Name":"B 045","PlayerID":8078914,"Points":9256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26517","ServerKey":"pl181","X":661,"Y":528},{"Bonus":0,"Continent":"K35","ID":26518,"Name":"Lord Lord Franek .#151","PlayerID":698420691,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26518","ServerKey":"pl181","X":503,"Y":340},{"Bonus":0,"Continent":"K56","ID":26519,"Name":"044","PlayerID":699316421,"Points":6270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26519","ServerKey":"pl181","X":649,"Y":562},{"Bonus":0,"Continent":"K43","ID":26520,"Name":"2.06","PlayerID":3502565,"Points":7592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26520","ServerKey":"pl181","X":342,"Y":455},{"Bonus":0,"Continent":"K64","ID":26521,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26521","ServerKey":"pl181","X":415,"Y":632},{"Bonus":0,"Continent":"K36","ID":26522,"Name":"A 010","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26522","ServerKey":"pl181","X":603,"Y":376},{"Bonus":0,"Continent":"K53","ID":26524,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26524","ServerKey":"pl181","X":349,"Y":558},{"Bonus":0,"Continent":"K64","ID":26525,"Name":"Alicization7","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26525","ServerKey":"pl181","X":461,"Y":646},{"Bonus":0,"Continent":"K65","ID":26526,"Name":"*Noname","PlayerID":699443920,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26526","ServerKey":"pl181","X":576,"Y":642},{"Bonus":0,"Continent":"K64","ID":26527,"Name":"005 Oxenfurt","PlayerID":699834004,"Points":7765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26527","ServerKey":"pl181","X":467,"Y":659},{"Bonus":0,"Continent":"K64","ID":26528,"Name":"Krakowskie Przedmieƛcie CXSPĆ»","PlayerID":849004274,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26528","ServerKey":"pl181","X":489,"Y":662},{"Bonus":0,"Continent":"K46","ID":26529,"Name":"01. Jamajka","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26529","ServerKey":"pl181","X":637,"Y":413},{"Bonus":0,"Continent":"K43","ID":26530,"Name":"Szlachcic","PlayerID":6258092,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26530","ServerKey":"pl181","X":345,"Y":464},{"Bonus":0,"Continent":"K33","ID":26531,"Name":"0012","PlayerID":8419570,"Points":9837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26531","ServerKey":"pl181","X":386,"Y":384},{"Bonus":0,"Continent":"K33","ID":26533,"Name":"Wioska Conana","PlayerID":8967440,"Points":3956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26533","ServerKey":"pl181","X":383,"Y":395},{"Bonus":0,"Continent":"K34","ID":26534,"Name":"Marshmike","PlayerID":849096592,"Points":5414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26534","ServerKey":"pl181","X":493,"Y":335},{"Bonus":0,"Continent":"K53","ID":26535,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26535","ServerKey":"pl181","X":354,"Y":572},{"Bonus":1,"Continent":"K43","ID":26536,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26536","ServerKey":"pl181","X":345,"Y":475},{"Bonus":0,"Continent":"K64","ID":26538,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":11041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26538","ServerKey":"pl181","X":473,"Y":663},{"Bonus":0,"Continent":"K36","ID":26539,"Name":"0094","PlayerID":698416970,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26539","ServerKey":"pl181","X":622,"Y":395},{"Bonus":0,"Continent":"K36","ID":26540,"Name":"Postarajcie się bardziej ;*","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26540","ServerKey":"pl181","X":600,"Y":371},{"Bonus":0,"Continent":"K35","ID":26541,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26541","ServerKey":"pl181","X":503,"Y":338},{"Bonus":3,"Continent":"K35","ID":26542,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26542","ServerKey":"pl181","X":581,"Y":361},{"Bonus":0,"Continent":"K34","ID":26543,"Name":"#0006 deleted","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26543","ServerKey":"pl181","X":474,"Y":339},{"Bonus":0,"Continent":"K46","ID":26544,"Name":"032 Barba","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26544","ServerKey":"pl181","X":657,"Y":488},{"Bonus":0,"Continent":"K53","ID":26545,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26545","ServerKey":"pl181","X":345,"Y":522},{"Bonus":0,"Continent":"K66","ID":26546,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26546","ServerKey":"pl181","X":607,"Y":624},{"Bonus":0,"Continent":"K33","ID":26547,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":7175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26547","ServerKey":"pl181","X":376,"Y":394},{"Bonus":0,"Continent":"K56","ID":26548,"Name":"043","PlayerID":699351301,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26548","ServerKey":"pl181","X":660,"Y":531},{"Bonus":0,"Continent":"K35","ID":26549,"Name":"009) WiązĂłw","PlayerID":849097103,"Points":2910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26549","ServerKey":"pl181","X":545,"Y":343},{"Bonus":0,"Continent":"K46","ID":26550,"Name":"056. Metis","PlayerID":849091866,"Points":9193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26550","ServerKey":"pl181","X":658,"Y":468},{"Bonus":0,"Continent":"K65","ID":26551,"Name":"0495","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26551","ServerKey":"pl181","X":517,"Y":658},{"Bonus":0,"Continent":"K35","ID":26552,"Name":"009 Niuniuniuniu","PlayerID":849108623,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26552","ServerKey":"pl181","X":539,"Y":346},{"Bonus":0,"Continent":"K36","ID":26553,"Name":"lllllllll","PlayerID":699429153,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26553","ServerKey":"pl181","X":623,"Y":399},{"Bonus":0,"Continent":"K53","ID":26554,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26554","ServerKey":"pl181","X":374,"Y":545},{"Bonus":0,"Continent":"K46","ID":26555,"Name":"023 MONETKI","PlayerID":7588382,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26555","ServerKey":"pl181","X":661,"Y":495},{"Bonus":0,"Continent":"K35","ID":26556,"Name":"Wyngiel we wsi","PlayerID":699072129,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26556","ServerKey":"pl181","X":552,"Y":347},{"Bonus":0,"Continent":"K56","ID":26557,"Name":"O17 Caripito","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26557","ServerKey":"pl181","X":661,"Y":526},{"Bonus":0,"Continent":"K65","ID":26558,"Name":"kathare","PlayerID":873575,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26558","ServerKey":"pl181","X":555,"Y":648},{"Bonus":0,"Continent":"K46","ID":26559,"Name":"030 MONETKI","PlayerID":7588382,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26559","ServerKey":"pl181","X":661,"Y":482},{"Bonus":0,"Continent":"K65","ID":26560,"Name":"kathare","PlayerID":873575,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26560","ServerKey":"pl181","X":560,"Y":651},{"Bonus":0,"Continent":"K55","ID":26561,"Name":"001. A-RE-SE-EY","PlayerID":848967710,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26561","ServerKey":"pl181","X":590,"Y":528},{"Bonus":0,"Continent":"K64","ID":26562,"Name":"Wioska barbarzyƄska","PlayerID":698585370,"Points":8843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26562","ServerKey":"pl181","X":485,"Y":662},{"Bonus":0,"Continent":"K34","ID":26563,"Name":"K34 - [159] Before Land","PlayerID":699088769,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26563","ServerKey":"pl181","X":448,"Y":346},{"Bonus":0,"Continent":"K36","ID":26565,"Name":"Mordor","PlayerID":699759128,"Points":8246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26565","ServerKey":"pl181","X":623,"Y":397},{"Bonus":0,"Continent":"K64","ID":26567,"Name":"008","PlayerID":698650301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26567","ServerKey":"pl181","X":492,"Y":656},{"Bonus":0,"Continent":"K63","ID":26568,"Name":"022 Harry Potter","PlayerID":8268010,"Points":7324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26568","ServerKey":"pl181","X":394,"Y":618},{"Bonus":9,"Continent":"K46","ID":26569,"Name":"*4623* KoƄ mechaniczny","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26569","ServerKey":"pl181","X":649,"Y":437},{"Bonus":0,"Continent":"K35","ID":26570,"Name":"I#020","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26570","ServerKey":"pl181","X":597,"Y":372},{"Bonus":0,"Continent":"K65","ID":26571,"Name":"010","PlayerID":699316421,"Points":6404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26571","ServerKey":"pl181","X":593,"Y":632},{"Bonus":0,"Continent":"K66","ID":26572,"Name":"aAa Szlaban 2","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26572","ServerKey":"pl181","X":607,"Y":615},{"Bonus":0,"Continent":"K35","ID":26573,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26573","ServerKey":"pl181","X":573,"Y":357},{"Bonus":0,"Continent":"K56","ID":26575,"Name":"Wioska 106","PlayerID":848971079,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26575","ServerKey":"pl181","X":640,"Y":583},{"Bonus":0,"Continent":"K46","ID":26576,"Name":"W 07","PlayerID":699524891,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26576","ServerKey":"pl181","X":646,"Y":437},{"Bonus":0,"Continent":"K64","ID":26577,"Name":"Aleje Jerozolimskie BO","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26577","ServerKey":"pl181","X":494,"Y":664},{"Bonus":0,"Continent":"K65","ID":26578,"Name":"0496","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26578","ServerKey":"pl181","X":534,"Y":657},{"Bonus":0,"Continent":"K65","ID":26579,"Name":"023","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26579","ServerKey":"pl181","X":564,"Y":643},{"Bonus":8,"Continent":"K65","ID":26580,"Name":"z 006","PlayerID":699342219,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26580","ServerKey":"pl181","X":574,"Y":640},{"Bonus":0,"Continent":"K63","ID":26581,"Name":"0662","PlayerID":698659980,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26581","ServerKey":"pl181","X":380,"Y":602},{"Bonus":0,"Continent":"K64","ID":26582,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":9449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26582","ServerKey":"pl181","X":417,"Y":633},{"Bonus":0,"Continent":"K56","ID":26583,"Name":"PUSTA","PlayerID":6929240,"Points":7208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26583","ServerKey":"pl181","X":634,"Y":590},{"Bonus":0,"Continent":"K34","ID":26584,"Name":"Szulernia","PlayerID":7249451,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26584","ServerKey":"pl181","X":411,"Y":365},{"Bonus":0,"Continent":"K65","ID":26585,"Name":"0497","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26585","ServerKey":"pl181","X":526,"Y":661},{"Bonus":0,"Continent":"K65","ID":26586,"Name":"041","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26586","ServerKey":"pl181","X":570,"Y":640},{"Bonus":0,"Continent":"K43","ID":26587,"Name":"Valevag 140","PlayerID":393668,"Points":2906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26587","ServerKey":"pl181","X":357,"Y":434},{"Bonus":0,"Continent":"K36","ID":26588,"Name":"Gattacka","PlayerID":699298370,"Points":10890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26588","ServerKey":"pl181","X":613,"Y":386},{"Bonus":0,"Continent":"K53","ID":26589,"Name":"Wioska","PlayerID":849096458,"Points":8647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26589","ServerKey":"pl181","X":340,"Y":535},{"Bonus":0,"Continent":"K64","ID":26590,"Name":"053.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26590","ServerKey":"pl181","X":408,"Y":633},{"Bonus":0,"Continent":"K34","ID":26592,"Name":"Oman","PlayerID":849048216,"Points":4646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26592","ServerKey":"pl181","X":482,"Y":338},{"Bonus":0,"Continent":"K34","ID":26593,"Name":"006","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26593","ServerKey":"pl181","X":456,"Y":342},{"Bonus":0,"Continent":"K35","ID":26594,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26594","ServerKey":"pl181","X":559,"Y":355},{"Bonus":8,"Continent":"K66","ID":26595,"Name":"101","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26595","ServerKey":"pl181","X":623,"Y":604},{"Bonus":0,"Continent":"K55","ID":26596,"Name":"Wioska","PlayerID":698845189,"Points":7490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26596","ServerKey":"pl181","X":597,"Y":520},{"Bonus":0,"Continent":"K64","ID":26597,"Name":"No. 5","PlayerID":848999671,"Points":9025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26597","ServerKey":"pl181","X":476,"Y":658},{"Bonus":0,"Continent":"K34","ID":26598,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26598","ServerKey":"pl181","X":489,"Y":341},{"Bonus":0,"Continent":"K63","ID":26599,"Name":"040.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26599","ServerKey":"pl181","X":397,"Y":619},{"Bonus":4,"Continent":"K36","ID":26600,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26600","ServerKey":"pl181","X":617,"Y":387},{"Bonus":0,"Continent":"K64","ID":26601,"Name":"002.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26601","ServerKey":"pl181","X":484,"Y":654},{"Bonus":0,"Continent":"K65","ID":26602,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26602","ServerKey":"pl181","X":514,"Y":663},{"Bonus":0,"Continent":"K35","ID":26603,"Name":"Szczytno","PlayerID":849108784,"Points":2696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26603","ServerKey":"pl181","X":542,"Y":343},{"Bonus":0,"Continent":"K46","ID":26604,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26604","ServerKey":"pl181","X":657,"Y":451},{"Bonus":0,"Continent":"K35","ID":26605,"Name":"Lord Lord Franek .#058","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26605","ServerKey":"pl181","X":521,"Y":338},{"Bonus":0,"Continent":"K43","ID":26606,"Name":"*085*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26606","ServerKey":"pl181","X":359,"Y":416},{"Bonus":0,"Continent":"K34","ID":26607,"Name":"116...centr","PlayerID":6920960,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26607","ServerKey":"pl181","X":457,"Y":342},{"Bonus":0,"Continent":"K36","ID":26608,"Name":"046","PlayerID":849010255,"Points":10039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26608","ServerKey":"pl181","X":612,"Y":381},{"Bonus":0,"Continent":"K64","ID":26609,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":2741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26609","ServerKey":"pl181","X":423,"Y":644},{"Bonus":6,"Continent":"K53","ID":26610,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26610","ServerKey":"pl181","X":338,"Y":515},{"Bonus":0,"Continent":"K43","ID":26612,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":9874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26612","ServerKey":"pl181","X":352,"Y":443},{"Bonus":0,"Continent":"K66","ID":26613,"Name":"Maradona","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26613","ServerKey":"pl181","X":611,"Y":613},{"Bonus":0,"Continent":"K43","ID":26614,"Name":"Mniejsze zƂo 0034","PlayerID":699794765,"Points":7856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26614","ServerKey":"pl181","X":342,"Y":499},{"Bonus":0,"Continent":"K33","ID":26615,"Name":"Gorgoneion","PlayerID":8419570,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26615","ServerKey":"pl181","X":382,"Y":393},{"Bonus":0,"Continent":"K53","ID":26616,"Name":"off 100 %","PlayerID":849012521,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26616","ServerKey":"pl181","X":353,"Y":567},{"Bonus":0,"Continent":"K35","ID":26617,"Name":"Wioska barbarzyƄska 029","PlayerID":6343784,"Points":4634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26617","ServerKey":"pl181","X":500,"Y":339},{"Bonus":0,"Continent":"K63","ID":26618,"Name":"021 Straszne jaskinie","PlayerID":8268010,"Points":7479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26618","ServerKey":"pl181","X":394,"Y":615},{"Bonus":0,"Continent":"K36","ID":26619,"Name":"harley","PlayerID":699298370,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26619","ServerKey":"pl181","X":620,"Y":391},{"Bonus":0,"Continent":"K36","ID":26620,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26620","ServerKey":"pl181","X":615,"Y":394},{"Bonus":0,"Continent":"K53","ID":26621,"Name":"PIERWSZA","PlayerID":698353083,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26621","ServerKey":"pl181","X":363,"Y":585},{"Bonus":0,"Continent":"K56","ID":26622,"Name":"070","PlayerID":698786826,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26622","ServerKey":"pl181","X":629,"Y":595},{"Bonus":0,"Continent":"K34","ID":26623,"Name":"#0090 barbarzyƄska","PlayerID":1238300,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26623","ServerKey":"pl181","X":478,"Y":337},{"Bonus":0,"Continent":"K35","ID":26624,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26624","ServerKey":"pl181","X":585,"Y":361},{"Bonus":0,"Continent":"K33","ID":26625,"Name":"Wioska 013","PlayerID":8419570,"Points":8236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26625","ServerKey":"pl181","X":381,"Y":388},{"Bonus":0,"Continent":"K53","ID":26626,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26626","ServerKey":"pl181","X":356,"Y":567},{"Bonus":4,"Continent":"K56","ID":26627,"Name":"Lessie","PlayerID":699851345,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26627","ServerKey":"pl181","X":663,"Y":510},{"Bonus":0,"Continent":"K35","ID":26628,"Name":"116 Wioska barbarzyƄska","PlayerID":699491076,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26628","ServerKey":"pl181","X":544,"Y":349},{"Bonus":0,"Continent":"K46","ID":26629,"Name":"045","PlayerID":7085502,"Points":7463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26629","ServerKey":"pl181","X":661,"Y":497},{"Bonus":0,"Continent":"K35","ID":26630,"Name":"Charfa","PlayerID":699072129,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26630","ServerKey":"pl181","X":518,"Y":343},{"Bonus":0,"Continent":"K43","ID":26631,"Name":"#011 WƂadca PiekieƂ ZENIT","PlayerID":849096215,"Points":1982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26631","ServerKey":"pl181","X":350,"Y":438},{"Bonus":0,"Continent":"K64","ID":26632,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26632","ServerKey":"pl181","X":416,"Y":635},{"Bonus":0,"Continent":"K33","ID":26633,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":5945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26633","ServerKey":"pl181","X":377,"Y":393},{"Bonus":0,"Continent":"K53","ID":26634,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26634","ServerKey":"pl181","X":357,"Y":581},{"Bonus":0,"Continent":"K65","ID":26635,"Name":"0246","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26635","ServerKey":"pl181","X":558,"Y":652},{"Bonus":0,"Continent":"K43","ID":26636,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26636","ServerKey":"pl181","X":337,"Y":493},{"Bonus":0,"Continent":"K66","ID":26637,"Name":"Maradona","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26637","ServerKey":"pl181","X":610,"Y":614},{"Bonus":0,"Continent":"K36","ID":26638,"Name":"A004","PlayerID":699761749,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26638","ServerKey":"pl181","X":612,"Y":380},{"Bonus":0,"Continent":"K46","ID":26639,"Name":"25. KaruTown","PlayerID":849060446,"Points":8474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26639","ServerKey":"pl181","X":634,"Y":412},{"Bonus":0,"Continent":"K64","ID":26640,"Name":"001.","PlayerID":849034882,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26640","ServerKey":"pl181","X":491,"Y":662},{"Bonus":0,"Continent":"K64","ID":26641,"Name":"Dzikie wsparcie","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26641","ServerKey":"pl181","X":473,"Y":657},{"Bonus":0,"Continent":"K56","ID":26642,"Name":"051","PlayerID":698999105,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26642","ServerKey":"pl181","X":661,"Y":521},{"Bonus":2,"Continent":"K53","ID":26643,"Name":"Chekku - Meito","PlayerID":9280477,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26643","ServerKey":"pl181","X":343,"Y":509},{"Bonus":0,"Continent":"K34","ID":26644,"Name":"003...CENTR","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26644","ServerKey":"pl181","X":457,"Y":352},{"Bonus":0,"Continent":"K66","ID":26645,"Name":"BETON 004","PlayerID":699277039,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26645","ServerKey":"pl181","X":621,"Y":610},{"Bonus":0,"Continent":"K46","ID":26646,"Name":"Jaaa","PlayerID":698635863,"Points":10169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26646","ServerKey":"pl181","X":662,"Y":489},{"Bonus":0,"Continent":"K65","ID":26647,"Name":"029","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26647","ServerKey":"pl181","X":567,"Y":648},{"Bonus":0,"Continent":"K53","ID":26648,"Name":"004 Wioska barbarzyƄska","PlayerID":915113,"Points":4200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26648","ServerKey":"pl181","X":336,"Y":508},{"Bonus":0,"Continent":"K55","ID":26649,"Name":"Free Stevie!","PlayerID":699785935,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26649","ServerKey":"pl181","X":500,"Y":505},{"Bonus":0,"Continent":"K34","ID":26650,"Name":"_2_","PlayerID":9113064,"Points":2746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26650","ServerKey":"pl181","X":490,"Y":336},{"Bonus":0,"Continent":"K46","ID":26652,"Name":"016 barbarzyƄska","PlayerID":9238175,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26652","ServerKey":"pl181","X":643,"Y":422},{"Bonus":0,"Continent":"K35","ID":26653,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26653","ServerKey":"pl181","X":573,"Y":360},{"Bonus":0,"Continent":"K46","ID":26654,"Name":"Jehu_Kingdom_15_","PlayerID":8785314,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26654","ServerKey":"pl181","X":651,"Y":437},{"Bonus":1,"Continent":"K35","ID":26655,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26655","ServerKey":"pl181","X":509,"Y":340},{"Bonus":0,"Continent":"K35","ID":26656,"Name":"Okropna","PlayerID":570100,"Points":3655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26656","ServerKey":"pl181","X":542,"Y":349},{"Bonus":0,"Continent":"K65","ID":26657,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26657","ServerKey":"pl181","X":588,"Y":637},{"Bonus":0,"Continent":"K46","ID":26658,"Name":"004 Azyl","PlayerID":9238175,"Points":10097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26658","ServerKey":"pl181","X":641,"Y":422},{"Bonus":5,"Continent":"K53","ID":26659,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26659","ServerKey":"pl181","X":347,"Y":536},{"Bonus":0,"Continent":"K65","ID":26660,"Name":"tego nie","PlayerID":699494488,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26660","ServerKey":"pl181","X":516,"Y":657},{"Bonus":0,"Continent":"K64","ID":26661,"Name":"KUZYN","PlayerID":848913998,"Points":4552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26661","ServerKey":"pl181","X":413,"Y":639},{"Bonus":0,"Continent":"K65","ID":26662,"Name":"*Newbee","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26662","ServerKey":"pl181","X":577,"Y":642},{"Bonus":0,"Continent":"K35","ID":26663,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26663","ServerKey":"pl181","X":555,"Y":348},{"Bonus":0,"Continent":"K63","ID":26664,"Name":"038.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26664","ServerKey":"pl181","X":399,"Y":621},{"Bonus":1,"Continent":"K34","ID":26665,"Name":"Szulernia","PlayerID":7249451,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26665","ServerKey":"pl181","X":406,"Y":366},{"Bonus":0,"Continent":"K65","ID":26666,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26666","ServerKey":"pl181","X":525,"Y":659},{"Bonus":0,"Continent":"K53","ID":26667,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26667","ServerKey":"pl181","X":352,"Y":553},{"Bonus":0,"Continent":"K56","ID":26668,"Name":"046","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26668","ServerKey":"pl181","X":658,"Y":539},{"Bonus":0,"Continent":"K34","ID":26669,"Name":"K34 - [122] Before Land","PlayerID":699088769,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26669","ServerKey":"pl181","X":434,"Y":350},{"Bonus":0,"Continent":"K65","ID":26670,"Name":"Mobil","PlayerID":7589468,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26670","ServerKey":"pl181","X":537,"Y":652},{"Bonus":0,"Continent":"K65","ID":26671,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26671","ServerKey":"pl181","X":529,"Y":652},{"Bonus":0,"Continent":"K56","ID":26672,"Name":"68k$ Grvvyq","PlayerID":699676005,"Points":7353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26672","ServerKey":"pl181","X":641,"Y":572},{"Bonus":0,"Continent":"K65","ID":26673,"Name":"0404","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26673","ServerKey":"pl181","X":548,"Y":635},{"Bonus":0,"Continent":"K43","ID":26674,"Name":"Wioska barbarzyƄska Krrr","PlayerID":8967440,"Points":3065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26674","ServerKey":"pl181","X":370,"Y":404},{"Bonus":0,"Continent":"K35","ID":26675,"Name":"040 039","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26675","ServerKey":"pl181","X":549,"Y":350},{"Bonus":0,"Continent":"K53","ID":26676,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26676","ServerKey":"pl181","X":354,"Y":570},{"Bonus":0,"Continent":"K34","ID":26677,"Name":"K34 - [015] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26677","ServerKey":"pl181","X":444,"Y":350},{"Bonus":0,"Continent":"K56","ID":26678,"Name":"O23 Kiruna","PlayerID":699272880,"Points":10520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26678","ServerKey":"pl181","X":662,"Y":514},{"Bonus":0,"Continent":"K65","ID":26679,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26679","ServerKey":"pl181","X":528,"Y":650},{"Bonus":0,"Continent":"K65","ID":26680,"Name":"Village","PlayerID":849094067,"Points":8541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26680","ServerKey":"pl181","X":520,"Y":655},{"Bonus":9,"Continent":"K56","ID":26681,"Name":"B 013","PlayerID":8078914,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26681","ServerKey":"pl181","X":660,"Y":536},{"Bonus":0,"Continent":"K43","ID":26682,"Name":"*011 Nemeczek*","PlayerID":2415972,"Points":9097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26682","ServerKey":"pl181","X":362,"Y":411},{"Bonus":0,"Continent":"K65","ID":26683,"Name":"amator","PlayerID":848915531,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26683","ServerKey":"pl181","X":554,"Y":652},{"Bonus":0,"Continent":"K56","ID":26684,"Name":"=040= Wioska barbarzyƄska","PlayerID":3781794,"Points":8293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26684","ServerKey":"pl181","X":653,"Y":553},{"Bonus":0,"Continent":"K64","ID":26685,"Name":"Bizy 1","PlayerID":698585370,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26685","ServerKey":"pl181","X":499,"Y":657},{"Bonus":0,"Continent":"K43","ID":26686,"Name":"M181_047","PlayerID":393668,"Points":7186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26686","ServerKey":"pl181","X":358,"Y":428},{"Bonus":0,"Continent":"K56","ID":26687,"Name":"[154]","PlayerID":8000875,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26687","ServerKey":"pl181","X":638,"Y":581},{"Bonus":0,"Continent":"K64","ID":26688,"Name":"06 Wioska","PlayerID":698993706,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26688","ServerKey":"pl181","X":441,"Y":651},{"Bonus":0,"Continent":"K56","ID":26689,"Name":"=043= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26689","ServerKey":"pl181","X":651,"Y":550},{"Bonus":5,"Continent":"K43","ID":26690,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26690","ServerKey":"pl181","X":340,"Y":475},{"Bonus":0,"Continent":"K33","ID":26691,"Name":"cc pol005qqqqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":6008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26691","ServerKey":"pl181","X":395,"Y":381},{"Bonus":0,"Continent":"K35","ID":26692,"Name":"013 Wioska zwiadowcza","PlayerID":699072129,"Points":4674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26692","ServerKey":"pl181","X":551,"Y":347},{"Bonus":0,"Continent":"K64","ID":26693,"Name":"Darmowe przeprowadzki","PlayerID":698807570,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26693","ServerKey":"pl181","X":468,"Y":656},{"Bonus":0,"Continent":"K56","ID":26694,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26694","ServerKey":"pl181","X":663,"Y":509},{"Bonus":0,"Continent":"K66","ID":26695,"Name":"083","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26695","ServerKey":"pl181","X":619,"Y":613},{"Bonus":0,"Continent":"K53","ID":26696,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26696","ServerKey":"pl181","X":347,"Y":547},{"Bonus":0,"Continent":"K56","ID":26697,"Name":"jaaa","PlayerID":698635863,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26697","ServerKey":"pl181","X":637,"Y":580},{"Bonus":0,"Continent":"K65","ID":26698,"Name":"Darma dla zawodnika","PlayerID":7860453,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26698","ServerKey":"pl181","X":524,"Y":662},{"Bonus":0,"Continent":"K34","ID":26699,"Name":"#0007 SnniKeer","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26699","ServerKey":"pl181","X":473,"Y":341},{"Bonus":0,"Continent":"K64","ID":26700,"Name":"Psycha Siada","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26700","ServerKey":"pl181","X":459,"Y":659},{"Bonus":0,"Continent":"K65","ID":26701,"Name":"007","PlayerID":699316421,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26701","ServerKey":"pl181","X":589,"Y":631},{"Bonus":0,"Continent":"K65","ID":26702,"Name":"ObrzeĆŒa 094","PlayerID":848915531,"Points":6484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26702","ServerKey":"pl181","X":556,"Y":649},{"Bonus":0,"Continent":"K64","ID":26703,"Name":"Seljukia","PlayerID":849089459,"Points":7036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26703","ServerKey":"pl181","X":422,"Y":638},{"Bonus":0,"Continent":"K66","ID":26704,"Name":"Wioska barbarzyƄska ,","PlayerID":848995242,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26704","ServerKey":"pl181","X":603,"Y":626},{"Bonus":0,"Continent":"K43","ID":26705,"Name":"NI5","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26705","ServerKey":"pl181","X":346,"Y":458},{"Bonus":0,"Continent":"K43","ID":26706,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26706","ServerKey":"pl181","X":374,"Y":407},{"Bonus":0,"Continent":"K46","ID":26707,"Name":"51. KaruTown","PlayerID":849091866,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26707","ServerKey":"pl181","X":642,"Y":434},{"Bonus":0,"Continent":"K64","ID":26708,"Name":"Jeruzalem","PlayerID":699736927,"Points":6824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26708","ServerKey":"pl181","X":419,"Y":641},{"Bonus":0,"Continent":"K56","ID":26710,"Name":"050","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26710","ServerKey":"pl181","X":662,"Y":520},{"Bonus":0,"Continent":"K36","ID":26711,"Name":"I#015","PlayerID":2065730,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26711","ServerKey":"pl181","X":603,"Y":379},{"Bonus":0,"Continent":"K46","ID":26712,"Name":"Jan dzik III","PlayerID":879782,"Points":8777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26712","ServerKey":"pl181","X":644,"Y":439},{"Bonus":0,"Continent":"K46","ID":26713,"Name":"111","PlayerID":849088515,"Points":8920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26713","ServerKey":"pl181","X":653,"Y":439},{"Bonus":0,"Continent":"K65","ID":26714,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26714","ServerKey":"pl181","X":528,"Y":645},{"Bonus":0,"Continent":"K34","ID":26715,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26715","ServerKey":"pl181","X":409,"Y":372},{"Bonus":9,"Continent":"K43","ID":26716,"Name":"M181_026","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26716","ServerKey":"pl181","X":360,"Y":421},{"Bonus":0,"Continent":"K34","ID":26717,"Name":".019.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26717","ServerKey":"pl181","X":492,"Y":374},{"Bonus":0,"Continent":"K53","ID":26718,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26718","ServerKey":"pl181","X":366,"Y":585},{"Bonus":0,"Continent":"K56","ID":26719,"Name":"O06 Alicante","PlayerID":699272880,"Points":10234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26719","ServerKey":"pl181","X":661,"Y":518},{"Bonus":7,"Continent":"K46","ID":26720,"Name":"043. Malaca","PlayerID":849091866,"Points":9284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26720","ServerKey":"pl181","X":645,"Y":438},{"Bonus":0,"Continent":"K35","ID":26721,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26721","ServerKey":"pl181","X":585,"Y":362},{"Bonus":0,"Continent":"K44","ID":26722,"Name":"K44 x010","PlayerID":698364331,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26722","ServerKey":"pl181","X":431,"Y":413},{"Bonus":0,"Continent":"K35","ID":26723,"Name":"xyz #006 TerrorMachine","PlayerID":7555180,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26723","ServerKey":"pl181","X":581,"Y":363},{"Bonus":0,"Continent":"K64","ID":26724,"Name":"018.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26724","ServerKey":"pl181","X":402,"Y":631},{"Bonus":0,"Continent":"K43","ID":26725,"Name":"004 RVW Wioska barbarzyƄska","PlayerID":3108144,"Points":6119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26725","ServerKey":"pl181","X":364,"Y":408},{"Bonus":0,"Continent":"K65","ID":26726,"Name":"028 serniczkowe lody","PlayerID":8954402,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26726","ServerKey":"pl181","X":511,"Y":664},{"Bonus":0,"Continent":"K53","ID":26727,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":9119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26727","ServerKey":"pl181","X":350,"Y":570},{"Bonus":0,"Continent":"K35","ID":26728,"Name":"Frombork","PlayerID":849108784,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26728","ServerKey":"pl181","X":541,"Y":342},{"Bonus":0,"Continent":"K34","ID":26730,"Name":"#0009 BudzikRide","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26730","ServerKey":"pl181","X":469,"Y":339},{"Bonus":0,"Continent":"K56","ID":26731,"Name":"=058= Wioska barbarzyƄska","PlayerID":3781794,"Points":8533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26731","ServerKey":"pl181","X":654,"Y":548},{"Bonus":0,"Continent":"K34","ID":26732,"Name":"130","PlayerID":7271812,"Points":4303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26732","ServerKey":"pl181","X":473,"Y":346},{"Bonus":0,"Continent":"K36","ID":26733,"Name":"A 022","PlayerID":6384450,"Points":8714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26733","ServerKey":"pl181","X":607,"Y":375},{"Bonus":0,"Continent":"K46","ID":26734,"Name":"A030 Sierpc","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26734","ServerKey":"pl181","X":656,"Y":458},{"Bonus":0,"Continent":"K65","ID":26735,"Name":"amator","PlayerID":848915531,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26735","ServerKey":"pl181","X":555,"Y":654},{"Bonus":0,"Continent":"K35","ID":26736,"Name":"014) ƻórawina","PlayerID":849097103,"Points":4001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26736","ServerKey":"pl181","X":540,"Y":342},{"Bonus":0,"Continent":"K43","ID":26737,"Name":"2.02","PlayerID":3502565,"Points":7483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26737","ServerKey":"pl181","X":344,"Y":453},{"Bonus":0,"Continent":"K53","ID":26738,"Name":"Wioska barbarzyƄska","PlayerID":699262350,"Points":5075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26738","ServerKey":"pl181","X":337,"Y":518},{"Bonus":0,"Continent":"K64","ID":26740,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26740","ServerKey":"pl181","X":430,"Y":645},{"Bonus":0,"Continent":"K64","ID":26741,"Name":"Tunis","PlayerID":699736927,"Points":8844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26741","ServerKey":"pl181","X":414,"Y":641},{"Bonus":0,"Continent":"K34","ID":26743,"Name":"Taki Pan","PlayerID":698739350,"Points":6176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26743","ServerKey":"pl181","X":497,"Y":340},{"Bonus":0,"Continent":"K46","ID":26744,"Name":"035. Luguvalium","PlayerID":849091866,"Points":9597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26744","ServerKey":"pl181","X":655,"Y":472},{"Bonus":0,"Continent":"K35","ID":26745,"Name":"Dek","PlayerID":699485250,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26745","ServerKey":"pl181","X":575,"Y":361},{"Bonus":0,"Continent":"K43","ID":26746,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26746","ServerKey":"pl181","X":349,"Y":445},{"Bonus":0,"Continent":"K43","ID":26747,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":7519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26747","ServerKey":"pl181","X":350,"Y":451},{"Bonus":0,"Continent":"K46","ID":26748,"Name":"013 Blocksberg","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26748","ServerKey":"pl181","X":661,"Y":484},{"Bonus":0,"Continent":"K64","ID":26749,"Name":"wLevy","PlayerID":699849210,"Points":3894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26749","ServerKey":"pl181","X":445,"Y":655},{"Bonus":0,"Continent":"K46","ID":26750,"Name":"025 pawelk95","PlayerID":2135129,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26750","ServerKey":"pl181","X":664,"Y":486},{"Bonus":0,"Continent":"K35","ID":26751,"Name":"Klaudek8","PlayerID":849092309,"Points":7754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26751","ServerKey":"pl181","X":594,"Y":368},{"Bonus":0,"Continent":"K36","ID":26752,"Name":"--Polan222","PlayerID":8096537,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26752","ServerKey":"pl181","X":619,"Y":386},{"Bonus":0,"Continent":"K35","ID":26753,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26753","ServerKey":"pl181","X":568,"Y":352},{"Bonus":0,"Continent":"K43","ID":26754,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26754","ServerKey":"pl181","X":341,"Y":462},{"Bonus":0,"Continent":"K34","ID":26755,"Name":"Hej hoo","PlayerID":699191455,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26755","ServerKey":"pl181","X":438,"Y":355},{"Bonus":0,"Continent":"K43","ID":26756,"Name":"A0252","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26756","ServerKey":"pl181","X":340,"Y":488},{"Bonus":0,"Continent":"K65","ID":26757,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26757","ServerKey":"pl181","X":526,"Y":658},{"Bonus":0,"Continent":"K35","ID":26758,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26758","ServerKey":"pl181","X":572,"Y":358},{"Bonus":2,"Continent":"K46","ID":26759,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26759","ServerKey":"pl181","X":629,"Y":409},{"Bonus":0,"Continent":"K35","ID":26760,"Name":"Terrolowelove","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26760","ServerKey":"pl181","X":590,"Y":366},{"Bonus":0,"Continent":"K36","ID":26761,"Name":"034","PlayerID":699298370,"Points":3663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26761","ServerKey":"pl181","X":616,"Y":392},{"Bonus":0,"Continent":"K33","ID":26762,"Name":"cc Radom","PlayerID":3909522,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26762","ServerKey":"pl181","X":396,"Y":375},{"Bonus":0,"Continent":"K43","ID":26763,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26763","ServerKey":"pl181","X":345,"Y":448},{"Bonus":0,"Continent":"K35","ID":26764,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26764","ServerKey":"pl181","X":557,"Y":350},{"Bonus":0,"Continent":"K43","ID":26765,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26765","ServerKey":"pl181","X":339,"Y":486},{"Bonus":0,"Continent":"K64","ID":26766,"Name":"013 Brugge","PlayerID":699834004,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26766","ServerKey":"pl181","X":466,"Y":658},{"Bonus":0,"Continent":"K56","ID":26767,"Name":"52k$ Grvvyq","PlayerID":699676005,"Points":7184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26767","ServerKey":"pl181","X":647,"Y":571},{"Bonus":0,"Continent":"K66","ID":26768,"Name":"Ć»UBRAWKA 008","PlayerID":33900,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26768","ServerKey":"pl181","X":600,"Y":628},{"Bonus":0,"Continent":"K34","ID":26769,"Name":"K34 - [116] Before Land","PlayerID":699088769,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26769","ServerKey":"pl181","X":451,"Y":351},{"Bonus":0,"Continent":"K46","ID":26770,"Name":"019","PlayerID":7085502,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26770","ServerKey":"pl181","X":664,"Y":494},{"Bonus":0,"Continent":"K34","ID":26771,"Name":"083...TOM","PlayerID":6920960,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26771","ServerKey":"pl181","X":483,"Y":337},{"Bonus":0,"Continent":"K43","ID":26772,"Name":"BrzozĂłwka","PlayerID":6258092,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26772","ServerKey":"pl181","X":343,"Y":457},{"Bonus":0,"Continent":"K64","ID":26773,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26773","ServerKey":"pl181","X":453,"Y":655},{"Bonus":0,"Continent":"K64","ID":26774,"Name":"Wioska 3","PlayerID":699736927,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26774","ServerKey":"pl181","X":420,"Y":640},{"Bonus":0,"Continent":"K56","ID":26775,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26775","ServerKey":"pl181","X":664,"Y":509},{"Bonus":0,"Continent":"K65","ID":26776,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26776","ServerKey":"pl181","X":517,"Y":657},{"Bonus":0,"Continent":"K65","ID":26777,"Name":"0392","PlayerID":698659980,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26777","ServerKey":"pl181","X":559,"Y":654},{"Bonus":0,"Continent":"K33","ID":26778,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":7924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26778","ServerKey":"pl181","X":399,"Y":373},{"Bonus":0,"Continent":"K64","ID":26780,"Name":"wBisca","PlayerID":699849210,"Points":8463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26780","ServerKey":"pl181","X":449,"Y":655},{"Bonus":0,"Continent":"K34","ID":26781,"Name":"#0058 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26781","ServerKey":"pl181","X":471,"Y":339},{"Bonus":0,"Continent":"K33","ID":26782,"Name":"pol003","PlayerID":849027025,"Points":6695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26782","ServerKey":"pl181","X":395,"Y":378},{"Bonus":0,"Continent":"K43","ID":26783,"Name":"*117*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26783","ServerKey":"pl181","X":360,"Y":419},{"Bonus":8,"Continent":"K65","ID":26784,"Name":"005 always remember LC","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26784","ServerKey":"pl181","X":565,"Y":644},{"Bonus":0,"Continent":"K34","ID":26785,"Name":"_4_","PlayerID":9113064,"Points":2536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26785","ServerKey":"pl181","X":493,"Y":336},{"Bonus":0,"Continent":"K56","ID":26786,"Name":"B 020","PlayerID":8078914,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26786","ServerKey":"pl181","X":659,"Y":527},{"Bonus":0,"Continent":"K65","ID":26788,"Name":"S_011","PlayerID":849049155,"Points":7740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26788","ServerKey":"pl181","X":512,"Y":662},{"Bonus":0,"Continent":"K34","ID":26789,"Name":"Szulernia","PlayerID":7249451,"Points":9991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26789","ServerKey":"pl181","X":413,"Y":362},{"Bonus":4,"Continent":"K43","ID":26790,"Name":"Tere fere hihihi","PlayerID":8967440,"Points":9399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26790","ServerKey":"pl181","X":372,"Y":404},{"Bonus":0,"Continent":"K33","ID":26791,"Name":"SoƂtys Wsi Legionistars","PlayerID":849027025,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26791","ServerKey":"pl181","X":397,"Y":377},{"Bonus":0,"Continent":"K46","ID":26792,"Name":"A036 Wioska barbarzyƄska","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26792","ServerKey":"pl181","X":655,"Y":459},{"Bonus":0,"Continent":"K53","ID":26793,"Name":"J02.","PlayerID":849090130,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26793","ServerKey":"pl181","X":364,"Y":593},{"Bonus":0,"Continent":"K35","ID":26794,"Name":"Lord Lord Franek .#059","PlayerID":698420691,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26794","ServerKey":"pl181","X":534,"Y":345},{"Bonus":0,"Continent":"K44","ID":26795,"Name":"00503Ciapek","PlayerID":3909522,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26795","ServerKey":"pl181","X":435,"Y":430},{"Bonus":0,"Continent":"K64","ID":26796,"Name":"psycha sitting","PlayerID":699736927,"Points":9072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26796","ServerKey":"pl181","X":446,"Y":654},{"Bonus":0,"Continent":"K46","ID":26797,"Name":"039","PlayerID":699351301,"Points":8058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26797","ServerKey":"pl181","X":665,"Y":497},{"Bonus":0,"Continent":"K36","ID":26798,"Name":"A 019","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26798","ServerKey":"pl181","X":604,"Y":376},{"Bonus":0,"Continent":"K64","ID":26799,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":4912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26799","ServerKey":"pl181","X":455,"Y":659},{"Bonus":0,"Continent":"K36","ID":26800,"Name":"083","PlayerID":2502956,"Points":8484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26800","ServerKey":"pl181","X":605,"Y":378},{"Bonus":0,"Continent":"K35","ID":26801,"Name":"Charfa","PlayerID":699072129,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26801","ServerKey":"pl181","X":513,"Y":343},{"Bonus":0,"Continent":"K64","ID":26802,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":6144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26802","ServerKey":"pl181","X":428,"Y":640},{"Bonus":0,"Continent":"K56","ID":26803,"Name":"Grvvyq 115k$","PlayerID":699676005,"Points":4682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26803","ServerKey":"pl181","X":633,"Y":595},{"Bonus":0,"Continent":"K65","ID":26804,"Name":"0498","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26804","ServerKey":"pl181","X":532,"Y":655},{"Bonus":0,"Continent":"K46","ID":26805,"Name":"121","PlayerID":7085502,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26805","ServerKey":"pl181","X":625,"Y":424},{"Bonus":0,"Continent":"K56","ID":26806,"Name":"=067= Wioska barbarzyƄska","PlayerID":3781794,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26806","ServerKey":"pl181","X":653,"Y":551},{"Bonus":0,"Continent":"K65","ID":26807,"Name":"024","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26807","ServerKey":"pl181","X":565,"Y":645},{"Bonus":0,"Continent":"K56","ID":26808,"Name":"Wioska Ysiek","PlayerID":699739523,"Points":2771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26808","ServerKey":"pl181","X":656,"Y":551},{"Bonus":0,"Continent":"K43","ID":26809,"Name":"2.01","PlayerID":3502565,"Points":5681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26809","ServerKey":"pl181","X":343,"Y":451},{"Bonus":6,"Continent":"K56","ID":26810,"Name":"049 Mallaig","PlayerID":699272880,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26810","ServerKey":"pl181","X":629,"Y":594},{"Bonus":0,"Continent":"K64","ID":26811,"Name":"016|| Draco","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26811","ServerKey":"pl181","X":497,"Y":661},{"Bonus":0,"Continent":"K35","ID":26812,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26812","ServerKey":"pl181","X":561,"Y":354},{"Bonus":0,"Continent":"K63","ID":26813,"Name":"0157","PlayerID":7085510,"Points":9224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26813","ServerKey":"pl181","X":391,"Y":623},{"Bonus":0,"Continent":"K35","ID":26814,"Name":"041 040","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26814","ServerKey":"pl181","X":551,"Y":349},{"Bonus":0,"Continent":"K53","ID":26816,"Name":"off 100 %","PlayerID":849012521,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26816","ServerKey":"pl181","X":350,"Y":566},{"Bonus":0,"Continent":"K46","ID":26817,"Name":"#.40 Wioska barbarzyƄska","PlayerID":849054582,"Points":3672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26817","ServerKey":"pl181","X":661,"Y":469},{"Bonus":0,"Continent":"K46","ID":26818,"Name":"074 Kofu","PlayerID":7092442,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26818","ServerKey":"pl181","X":655,"Y":454},{"Bonus":0,"Continent":"K56","ID":26819,"Name":"B 017","PlayerID":8078914,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26819","ServerKey":"pl181","X":658,"Y":530},{"Bonus":0,"Continent":"K56","ID":26820,"Name":"O05 Ourense","PlayerID":699272880,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26820","ServerKey":"pl181","X":660,"Y":518},{"Bonus":0,"Continent":"K65","ID":26821,"Name":"ObrzeĆŒa 095","PlayerID":848915531,"Points":4201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26821","ServerKey":"pl181","X":556,"Y":652},{"Bonus":0,"Continent":"K33","ID":26822,"Name":"SoƂtys Wsi Enaor1990","PlayerID":849027025,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26822","ServerKey":"pl181","X":398,"Y":378},{"Bonus":0,"Continent":"K46","ID":26823,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26823","ServerKey":"pl181","X":651,"Y":454},{"Bonus":0,"Continent":"K35","ID":26824,"Name":"Klaudek11","PlayerID":849092309,"Points":7378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26824","ServerKey":"pl181","X":595,"Y":372},{"Bonus":0,"Continent":"K66","ID":26825,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26825","ServerKey":"pl181","X":617,"Y":608},{"Bonus":0,"Continent":"K64","ID":26826,"Name":"016 nie ma spania na wyjazdach","PlayerID":699238479,"Points":4333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26826","ServerKey":"pl181","X":443,"Y":647},{"Bonus":0,"Continent":"K65","ID":26828,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26828","ServerKey":"pl181","X":526,"Y":659},{"Bonus":0,"Continent":"K35","ID":26829,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26829","ServerKey":"pl181","X":560,"Y":347},{"Bonus":0,"Continent":"K33","ID":26830,"Name":"cc GorzkĂłw","PlayerID":3909522,"Points":7834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26830","ServerKey":"pl181","X":397,"Y":376},{"Bonus":0,"Continent":"K43","ID":26831,"Name":"A0255","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26831","ServerKey":"pl181","X":340,"Y":490},{"Bonus":0,"Continent":"K46","ID":26832,"Name":"034 Buongiorno","PlayerID":698829590,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26832","ServerKey":"pl181","X":606,"Y":455},{"Bonus":0,"Continent":"K64","ID":26833,"Name":"Ave Why!","PlayerID":698585370,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26833","ServerKey":"pl181","X":476,"Y":663},{"Bonus":0,"Continent":"K56","ID":26834,"Name":"O13 Stokkseyri","PlayerID":699272880,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26834","ServerKey":"pl181","X":661,"Y":523},{"Bonus":0,"Continent":"K53","ID":26835,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":5882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26835","ServerKey":"pl181","X":365,"Y":584},{"Bonus":0,"Continent":"K64","ID":26836,"Name":"040|| Lupus","PlayerID":849035525,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26836","ServerKey":"pl181","X":482,"Y":660},{"Bonus":0,"Continent":"K46","ID":26837,"Name":"15. Budujemy mosty","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26837","ServerKey":"pl181","X":636,"Y":412},{"Bonus":0,"Continent":"K53","ID":26838,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26838","ServerKey":"pl181","X":341,"Y":526},{"Bonus":0,"Continent":"K34","ID":26839,"Name":"115...center","PlayerID":6920960,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26839","ServerKey":"pl181","X":451,"Y":345},{"Bonus":0,"Continent":"K34","ID":26840,"Name":"Szulernia","PlayerID":7249451,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26840","ServerKey":"pl181","X":410,"Y":363},{"Bonus":0,"Continent":"K56","ID":26841,"Name":"O02 Pyke","PlayerID":699272880,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26841","ServerKey":"pl181","X":660,"Y":519},{"Bonus":0,"Continent":"K65","ID":26843,"Name":"0196","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26843","ServerKey":"pl181","X":556,"Y":654},{"Bonus":0,"Continent":"K56","ID":26844,"Name":"P022 Karakura","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26844","ServerKey":"pl181","X":655,"Y":512},{"Bonus":0,"Continent":"K34","ID":26845,"Name":"North Barba 040","PlayerID":699796330,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26845","ServerKey":"pl181","X":420,"Y":358},{"Bonus":0,"Continent":"K56","ID":26846,"Name":"015 M","PlayerID":699351301,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26846","ServerKey":"pl181","X":651,"Y":520},{"Bonus":0,"Continent":"K64","ID":26847,"Name":"psycha sitting","PlayerID":699736927,"Points":4973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26847","ServerKey":"pl181","X":429,"Y":647},{"Bonus":0,"Continent":"K46","ID":26848,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26848","ServerKey":"pl181","X":651,"Y":449},{"Bonus":0,"Continent":"K56","ID":26849,"Name":"D 015","PlayerID":8078914,"Points":8961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26849","ServerKey":"pl181","X":661,"Y":504},{"Bonus":0,"Continent":"K43","ID":26850,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26850","ServerKey":"pl181","X":347,"Y":443},{"Bonus":0,"Continent":"K56","ID":26852,"Name":"D 013","PlayerID":8078914,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26852","ServerKey":"pl181","X":664,"Y":506},{"Bonus":0,"Continent":"K35","ID":26853,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26853","ServerKey":"pl181","X":561,"Y":353},{"Bonus":0,"Continent":"K35","ID":26854,"Name":"Wioska barbarzyƄska 021|","PlayerID":6343784,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26854","ServerKey":"pl181","X":546,"Y":343},{"Bonus":0,"Continent":"K63","ID":26855,"Name":"004 Czarna pantera","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26855","ServerKey":"pl181","X":392,"Y":621},{"Bonus":0,"Continent":"K65","ID":26856,"Name":"0499","PlayerID":698659980,"Points":8979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26856","ServerKey":"pl181","X":531,"Y":660},{"Bonus":0,"Continent":"K63","ID":26857,"Name":"Wioska Ukryta w Liƛciach","PlayerID":8607734,"Points":9456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26857","ServerKey":"pl181","X":373,"Y":603},{"Bonus":0,"Continent":"K46","ID":26858,"Name":"026 Legio I Traiana Fortis","PlayerID":699878150,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26858","ServerKey":"pl181","X":643,"Y":489},{"Bonus":0,"Continent":"K64","ID":26859,"Name":"051.","PlayerID":2665207,"Points":8961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26859","ServerKey":"pl181","X":407,"Y":635},{"Bonus":0,"Continent":"K56","ID":26860,"Name":"067","PlayerID":849095227,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26860","ServerKey":"pl181","X":656,"Y":550},{"Bonus":0,"Continent":"K65","ID":26861,"Name":"?004","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26861","ServerKey":"pl181","X":538,"Y":656},{"Bonus":5,"Continent":"K35","ID":26862,"Name":"A039","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26862","ServerKey":"pl181","X":594,"Y":374},{"Bonus":0,"Continent":"K64","ID":26863,"Name":"|B| Claywood","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26863","ServerKey":"pl181","X":485,"Y":660},{"Bonus":0,"Continent":"K46","ID":26864,"Name":"BACÓWKA |027|","PlayerID":7394371,"Points":4817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26864","ServerKey":"pl181","X":633,"Y":415},{"Bonus":0,"Continent":"K64","ID":26865,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26865","ServerKey":"pl181","X":425,"Y":646},{"Bonus":0,"Continent":"K44","ID":26866,"Name":"Wioska","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26866","ServerKey":"pl181","X":403,"Y":422},{"Bonus":0,"Continent":"K65","ID":26867,"Name":"Sony 911","PlayerID":1415009,"Points":10278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26867","ServerKey":"pl181","X":582,"Y":641},{"Bonus":0,"Continent":"K36","ID":26869,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26869","ServerKey":"pl181","X":622,"Y":397},{"Bonus":0,"Continent":"K36","ID":26870,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26870","ServerKey":"pl181","X":618,"Y":388},{"Bonus":0,"Continent":"K36","ID":26871,"Name":"--Rapid City","PlayerID":8096537,"Points":9376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26871","ServerKey":"pl181","X":623,"Y":393},{"Bonus":0,"Continent":"K53","ID":26872,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26872","ServerKey":"pl181","X":346,"Y":555},{"Bonus":0,"Continent":"K34","ID":26873,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":7602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26873","ServerKey":"pl181","X":400,"Y":371},{"Bonus":0,"Continent":"K43","ID":26874,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26874","ServerKey":"pl181","X":337,"Y":491},{"Bonus":0,"Continent":"K65","ID":26875,"Name":"kathare","PlayerID":873575,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26875","ServerKey":"pl181","X":561,"Y":649},{"Bonus":0,"Continent":"K36","ID":26876,"Name":"609|373","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26876","ServerKey":"pl181","X":606,"Y":377},{"Bonus":0,"Continent":"K65","ID":26877,"Name":"16. Cytadela","PlayerID":849092769,"Points":10299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26877","ServerKey":"pl181","X":506,"Y":661},{"Bonus":0,"Continent":"K65","ID":26878,"Name":"0500","PlayerID":698659980,"Points":8399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26878","ServerKey":"pl181","X":535,"Y":660},{"Bonus":0,"Continent":"K35","ID":26879,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26879","ServerKey":"pl181","X":588,"Y":363},{"Bonus":0,"Continent":"K65","ID":26880,"Name":"*Lubicz","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26880","ServerKey":"pl181","X":575,"Y":638},{"Bonus":0,"Continent":"K53","ID":26881,"Name":"Mniejsze zƂo 0070","PlayerID":699794765,"Points":6624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26881","ServerKey":"pl181","X":340,"Y":505},{"Bonus":0,"Continent":"K65","ID":26882,"Name":"wolna","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26882","ServerKey":"pl181","X":563,"Y":649},{"Bonus":0,"Continent":"K35","ID":26883,"Name":"026","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26883","ServerKey":"pl181","X":515,"Y":341},{"Bonus":0,"Continent":"K46","ID":26884,"Name":"057. Liburnum","PlayerID":849091866,"Points":9207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26884","ServerKey":"pl181","X":654,"Y":471},{"Bonus":0,"Continent":"K34","ID":26885,"Name":"cc Wioska","PlayerID":3909522,"Points":8037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26885","ServerKey":"pl181","X":402,"Y":377},{"Bonus":0,"Continent":"K43","ID":26886,"Name":"007","PlayerID":3698627,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26886","ServerKey":"pl181","X":390,"Y":457},{"Bonus":0,"Continent":"K43","ID":26887,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26887","ServerKey":"pl181","X":338,"Y":474},{"Bonus":0,"Continent":"K63","ID":26888,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26888","ServerKey":"pl181","X":394,"Y":626},{"Bonus":0,"Continent":"K66","ID":26889,"Name":"0002","PlayerID":6417987,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26889","ServerKey":"pl181","X":615,"Y":612},{"Bonus":0,"Continent":"K46","ID":26890,"Name":"*4626*a Czas przyspiesza","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26890","ServerKey":"pl181","X":646,"Y":430},{"Bonus":0,"Continent":"K43","ID":26891,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26891","ServerKey":"pl181","X":350,"Y":435},{"Bonus":0,"Continent":"K34","ID":26892,"Name":"North Barba 039","PlayerID":699796330,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26892","ServerKey":"pl181","X":421,"Y":358},{"Bonus":0,"Continent":"K46","ID":26893,"Name":"027 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26893","ServerKey":"pl181","X":639,"Y":424},{"Bonus":0,"Continent":"K34","ID":26894,"Name":"North Barba 010","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26894","ServerKey":"pl181","X":421,"Y":363},{"Bonus":0,"Continent":"K46","ID":26895,"Name":"071 Shimada","PlayerID":7092442,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26895","ServerKey":"pl181","X":659,"Y":476},{"Bonus":0,"Continent":"K64","ID":26896,"Name":"Nowa Aleksandria","PlayerID":699736927,"Points":6683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26896","ServerKey":"pl181","X":415,"Y":640},{"Bonus":0,"Continent":"K35","ID":26897,"Name":".:137:. Niangmen","PlayerID":848934935,"Points":6136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26897","ServerKey":"pl181","X":500,"Y":342},{"Bonus":0,"Continent":"K36","ID":26898,"Name":"Gattacka","PlayerID":699298370,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26898","ServerKey":"pl181","X":613,"Y":391},{"Bonus":0,"Continent":"K43","ID":26899,"Name":"*266*","PlayerID":699273451,"Points":2607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26899","ServerKey":"pl181","X":353,"Y":428},{"Bonus":0,"Continent":"K64","ID":26900,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":11218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26900","ServerKey":"pl181","X":471,"Y":662},{"Bonus":0,"Continent":"K65","ID":26901,"Name":"031","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26901","ServerKey":"pl181","X":571,"Y":643},{"Bonus":0,"Continent":"K65","ID":26902,"Name":"*Lupita","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26902","ServerKey":"pl181","X":573,"Y":643},{"Bonus":5,"Continent":"K56","ID":26903,"Name":"$2.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26903","ServerKey":"pl181","X":648,"Y":571},{"Bonus":0,"Continent":"K65","ID":26904,"Name":"amator czysta","PlayerID":848915531,"Points":7468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26904","ServerKey":"pl181","X":544,"Y":653},{"Bonus":0,"Continent":"K46","ID":26906,"Name":"039. Durnovaria","PlayerID":849091866,"Points":10640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26906","ServerKey":"pl181","X":657,"Y":474},{"Bonus":0,"Continent":"K36","ID":26907,"Name":"C003","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26907","ServerKey":"pl181","X":609,"Y":383},{"Bonus":0,"Continent":"K35","ID":26908,"Name":"Yyyy","PlayerID":699883079,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26908","ServerKey":"pl181","X":502,"Y":371},{"Bonus":0,"Continent":"K63","ID":26909,"Name":".///...//././././././././","PlayerID":849097937,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26909","ServerKey":"pl181","X":378,"Y":607},{"Bonus":0,"Continent":"K43","ID":26910,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26910","ServerKey":"pl181","X":341,"Y":468},{"Bonus":0,"Continent":"K34","ID":26911,"Name":"Polanie2","PlayerID":849048216,"Points":2561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26911","ServerKey":"pl181","X":482,"Y":340},{"Bonus":0,"Continent":"K56","ID":26912,"Name":"Prędzej martwy niĆŒ za kratkami","PlayerID":699851345,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26912","ServerKey":"pl181","X":663,"Y":512},{"Bonus":0,"Continent":"K43","ID":26913,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26913","ServerKey":"pl181","X":344,"Y":460},{"Bonus":0,"Continent":"K56","ID":26914,"Name":"035","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26914","ServerKey":"pl181","X":650,"Y":558},{"Bonus":0,"Continent":"K53","ID":26915,"Name":"J03","PlayerID":849090130,"Points":6418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26915","ServerKey":"pl181","X":365,"Y":594},{"Bonus":0,"Continent":"K34","ID":26916,"Name":"Szlachcic","PlayerID":698160606,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26916","ServerKey":"pl181","X":409,"Y":371},{"Bonus":0,"Continent":"K34","ID":26917,"Name":"#0018 kamilsan993","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26917","ServerKey":"pl181","X":464,"Y":346},{"Bonus":0,"Continent":"K36","ID":26918,"Name":"--custer","PlayerID":8096537,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26918","ServerKey":"pl181","X":624,"Y":395},{"Bonus":0,"Continent":"K63","ID":26919,"Name":"007 YNO ROW","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26919","ServerKey":"pl181","X":388,"Y":618},{"Bonus":0,"Continent":"K46","ID":26920,"Name":"61. KaruTown","PlayerID":7394371,"Points":6233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26920","ServerKey":"pl181","X":629,"Y":405},{"Bonus":0,"Continent":"K43","ID":26922,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26922","ServerKey":"pl181","X":335,"Y":486},{"Bonus":0,"Continent":"K34","ID":26923,"Name":"#0135 barbarzyƄska","PlayerID":1238300,"Points":6566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26923","ServerKey":"pl181","X":467,"Y":340},{"Bonus":0,"Continent":"K56","ID":26924,"Name":"B.053","PlayerID":9188016,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26924","ServerKey":"pl181","X":659,"Y":506},{"Bonus":0,"Continent":"K43","ID":26925,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26925","ServerKey":"pl181","X":350,"Y":443},{"Bonus":1,"Continent":"K46","ID":26926,"Name":"121. Seneletta","PlayerID":8337151,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26926","ServerKey":"pl181","X":644,"Y":422},{"Bonus":0,"Continent":"K46","ID":26927,"Name":"#.17 Wioska SmackHQ","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26927","ServerKey":"pl181","X":660,"Y":474},{"Bonus":0,"Continent":"K36","ID":26928,"Name":"037","PlayerID":699298370,"Points":2730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26928","ServerKey":"pl181","X":615,"Y":392},{"Bonus":0,"Continent":"K65","ID":26929,"Name":"0153","PlayerID":698659980,"Points":11074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26929","ServerKey":"pl181","X":548,"Y":654},{"Bonus":0,"Continent":"K65","ID":26930,"Name":"sony911","PlayerID":1415009,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26930","ServerKey":"pl181","X":588,"Y":638},{"Bonus":0,"Continent":"K53","ID":26931,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26931","ServerKey":"pl181","X":361,"Y":584},{"Bonus":0,"Continent":"K46","ID":26932,"Name":"101","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26932","ServerKey":"pl181","X":654,"Y":442},{"Bonus":0,"Continent":"K53","ID":26933,"Name":"Wetlina","PlayerID":849096458,"Points":8953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26933","ServerKey":"pl181","X":338,"Y":532},{"Bonus":0,"Continent":"K53","ID":26934,"Name":"021.Barbara 5","PlayerID":1830149,"Points":5003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26934","ServerKey":"pl181","X":337,"Y":507},{"Bonus":0,"Continent":"K56","ID":26935,"Name":"Tesa 9","PlayerID":698845189,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26935","ServerKey":"pl181","X":661,"Y":530},{"Bonus":0,"Continent":"K66","ID":26936,"Name":"Ć»UBRAWKA 012","PlayerID":33900,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26936","ServerKey":"pl181","X":604,"Y":625},{"Bonus":0,"Continent":"K64","ID":26937,"Name":"034.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26937","ServerKey":"pl181","X":406,"Y":635},{"Bonus":0,"Continent":"K56","ID":26938,"Name":"O25 Tijuana","PlayerID":699272880,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26938","ServerKey":"pl181","X":660,"Y":515},{"Bonus":0,"Continent":"K56","ID":26939,"Name":"D 003","PlayerID":8078914,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26939","ServerKey":"pl181","X":663,"Y":506},{"Bonus":0,"Continent":"K64","ID":26940,"Name":"011","PlayerID":698650301,"Points":9106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26940","ServerKey":"pl181","X":459,"Y":655},{"Bonus":0,"Continent":"K46","ID":26941,"Name":"033","PlayerID":7085502,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26941","ServerKey":"pl181","X":662,"Y":495},{"Bonus":0,"Continent":"K34","ID":26942,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26942","ServerKey":"pl181","X":407,"Y":369},{"Bonus":0,"Continent":"K66","ID":26943,"Name":"084","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26943","ServerKey":"pl181","X":623,"Y":607},{"Bonus":0,"Continent":"K53","ID":26944,"Name":"deff 100 %","PlayerID":849012521,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26944","ServerKey":"pl181","X":351,"Y":567},{"Bonus":0,"Continent":"K34","ID":26945,"Name":".:138:. Niangmen","PlayerID":848934935,"Points":5926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26945","ServerKey":"pl181","X":498,"Y":341},{"Bonus":0,"Continent":"K53","ID":26946,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26946","ServerKey":"pl181","X":341,"Y":537},{"Bonus":0,"Continent":"K34","ID":26947,"Name":"Szulernia","PlayerID":7249451,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26947","ServerKey":"pl181","X":415,"Y":361},{"Bonus":0,"Continent":"K43","ID":26948,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26948","ServerKey":"pl181","X":340,"Y":478},{"Bonus":0,"Continent":"K65","ID":26949,"Name":"*Lust","PlayerID":699443920,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26949","ServerKey":"pl181","X":574,"Y":643},{"Bonus":0,"Continent":"K53","ID":26950,"Name":"09. chrubieszĂłw","PlayerID":8665783,"Points":9069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26950","ServerKey":"pl181","X":374,"Y":599},{"Bonus":0,"Continent":"K65","ID":26951,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26951","ServerKey":"pl181","X":523,"Y":659},{"Bonus":0,"Continent":"K34","ID":26952,"Name":"c ZagnaƄska 155","PlayerID":3909522,"Points":8506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26952","ServerKey":"pl181","X":406,"Y":389},{"Bonus":0,"Continent":"K46","ID":26953,"Name":"#.20 ZZZ","PlayerID":849054582,"Points":9285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26953","ServerKey":"pl181","X":659,"Y":471},{"Bonus":0,"Continent":"K63","ID":26954,"Name":"30. Ɓopuszka wielka","PlayerID":8665783,"Points":8918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26954","ServerKey":"pl181","X":376,"Y":602},{"Bonus":0,"Continent":"K64","ID":26955,"Name":"Elsche x Astaroth Smacznego x3","PlayerID":699736927,"Points":7867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26955","ServerKey":"pl181","X":455,"Y":645},{"Bonus":0,"Continent":"K65","ID":26956,"Name":"0194","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26956","ServerKey":"pl181","X":548,"Y":655},{"Bonus":2,"Continent":"K35","ID":26957,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26957","ServerKey":"pl181","X":575,"Y":358},{"Bonus":0,"Continent":"K35","ID":26958,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26958","ServerKey":"pl181","X":564,"Y":348},{"Bonus":0,"Continent":"K64","ID":26959,"Name":"bbb","PlayerID":848999671,"Points":8969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26959","ServerKey":"pl181","X":486,"Y":660},{"Bonus":0,"Continent":"K64","ID":26960,"Name":"088","PlayerID":849084985,"Points":8054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26960","ServerKey":"pl181","X":436,"Y":637},{"Bonus":0,"Continent":"K66","ID":26961,"Name":"102","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26961","ServerKey":"pl181","X":623,"Y":602},{"Bonus":0,"Continent":"K65","ID":26963,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26963","ServerKey":"pl181","X":527,"Y":655},{"Bonus":0,"Continent":"K43","ID":26964,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26964","ServerKey":"pl181","X":348,"Y":452},{"Bonus":0,"Continent":"K53","ID":26965,"Name":"Mniejsze zƂo 0072","PlayerID":699794765,"Points":6568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26965","ServerKey":"pl181","X":340,"Y":507},{"Bonus":0,"Continent":"K65","ID":26966,"Name":"*No ĆŒesz...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26966","ServerKey":"pl181","X":579,"Y":640},{"Bonus":0,"Continent":"K56","ID":26967,"Name":"P011 Hawkins","PlayerID":8096537,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26967","ServerKey":"pl181","X":657,"Y":512},{"Bonus":0,"Continent":"K46","ID":26968,"Name":"cofnąć","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26968","ServerKey":"pl181","X":624,"Y":402},{"Bonus":0,"Continent":"K64","ID":26969,"Name":"012","PlayerID":848953066,"Points":8691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26969","ServerKey":"pl181","X":486,"Y":659},{"Bonus":0,"Continent":"K53","ID":26970,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":5817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26970","ServerKey":"pl181","X":347,"Y":553},{"Bonus":0,"Continent":"K35","ID":26971,"Name":"003 Kirkjubour","PlayerID":699072129,"Points":6605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26971","ServerKey":"pl181","X":552,"Y":350},{"Bonus":0,"Continent":"K66","ID":26972,"Name":"0001","PlayerID":6417987,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26972","ServerKey":"pl181","X":614,"Y":614},{"Bonus":0,"Continent":"K63","ID":26973,"Name":"J0091.","PlayerID":849090130,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26973","ServerKey":"pl181","X":373,"Y":602},{"Bonus":0,"Continent":"K35","ID":26974,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":6612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26974","ServerKey":"pl181","X":583,"Y":362},{"Bonus":0,"Continent":"K43","ID":26975,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26975","ServerKey":"pl181","X":361,"Y":426},{"Bonus":0,"Continent":"K46","ID":26976,"Name":"BACÓWKA |005|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26976","ServerKey":"pl181","X":631,"Y":407},{"Bonus":0,"Continent":"K46","ID":26977,"Name":"026 - Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26977","ServerKey":"pl181","X":637,"Y":415},{"Bonus":0,"Continent":"K56","ID":26978,"Name":"041 Lazarevac","PlayerID":699272880,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26978","ServerKey":"pl181","X":628,"Y":594},{"Bonus":0,"Continent":"K36","ID":26979,"Name":"052- Mroczna Osada","PlayerID":849035905,"Points":10609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26979","ServerKey":"pl181","X":629,"Y":397},{"Bonus":0,"Continent":"K35","ID":26980,"Name":"Wioska barbarzyƄska 030 a","PlayerID":6343784,"Points":4705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26980","ServerKey":"pl181","X":504,"Y":338},{"Bonus":0,"Continent":"K33","ID":26981,"Name":"015","PlayerID":849059457,"Points":2954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26981","ServerKey":"pl181","X":378,"Y":394},{"Bonus":0,"Continent":"K66","ID":26982,"Name":"025.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26982","ServerKey":"pl181","X":612,"Y":620},{"Bonus":0,"Continent":"K33","ID":26983,"Name":"Wioska barbarzyƄska","PlayerID":610196,"Points":380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26983","ServerKey":"pl181","X":373,"Y":397},{"Bonus":0,"Continent":"K64","ID":26984,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26984","ServerKey":"pl181","X":495,"Y":638},{"Bonus":0,"Continent":"K65","ID":26985,"Name":"kopię prądem .","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26985","ServerKey":"pl181","X":584,"Y":634},{"Bonus":0,"Continent":"K56","ID":26986,"Name":"041","PlayerID":699316421,"Points":7732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26986","ServerKey":"pl181","X":650,"Y":554},{"Bonus":0,"Continent":"K43","ID":26987,"Name":"*082*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26987","ServerKey":"pl181","X":360,"Y":413},{"Bonus":0,"Continent":"K43","ID":26988,"Name":"020.Avalon","PlayerID":3108144,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26988","ServerKey":"pl181","X":369,"Y":404},{"Bonus":0,"Continent":"K44","ID":26989,"Name":"K44 x024","PlayerID":698364331,"Points":10396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26989","ServerKey":"pl181","X":433,"Y":413},{"Bonus":0,"Continent":"K35","ID":26990,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26990","ServerKey":"pl181","X":506,"Y":339},{"Bonus":0,"Continent":"K43","ID":26991,"Name":"017 VW.Low Key","PlayerID":3108144,"Points":6459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26991","ServerKey":"pl181","X":362,"Y":409},{"Bonus":5,"Continent":"K64","ID":26992,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26992","ServerKey":"pl181","X":456,"Y":655},{"Bonus":0,"Continent":"K56","ID":26993,"Name":"Wioska Kaffiks XV","PlayerID":6136757,"Points":5814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26993","ServerKey":"pl181","X":635,"Y":584},{"Bonus":0,"Continent":"K35","ID":26994,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26994","ServerKey":"pl181","X":569,"Y":358},{"Bonus":0,"Continent":"K53","ID":26996,"Name":"013.Wioska barbarzyƄska","PlayerID":1830149,"Points":7224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26996","ServerKey":"pl181","X":341,"Y":517},{"Bonus":0,"Continent":"K56","ID":26997,"Name":"=075= Darmę dostaƂem xD","PlayerID":3781794,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26997","ServerKey":"pl181","X":654,"Y":547},{"Bonus":0,"Continent":"K63","ID":26998,"Name":"Pobozowisko","PlayerID":699513260,"Points":10102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26998","ServerKey":"pl181","X":381,"Y":615},{"Bonus":0,"Continent":"K64","ID":26999,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=26999","ServerKey":"pl181","X":445,"Y":651},{"Bonus":0,"Continent":"K56","ID":27000,"Name":"011 Amaterasu","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27000","ServerKey":"pl181","X":661,"Y":501},{"Bonus":0,"Continent":"K53","ID":27001,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27001","ServerKey":"pl181","X":342,"Y":520},{"Bonus":0,"Continent":"K66","ID":27002,"Name":"085","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27002","ServerKey":"pl181","X":622,"Y":604},{"Bonus":0,"Continent":"K56","ID":27003,"Name":"67k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27003","ServerKey":"pl181","X":642,"Y":571},{"Bonus":0,"Continent":"K43","ID":27004,"Name":"001","PlayerID":393668,"Points":4794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27004","ServerKey":"pl181","X":348,"Y":439},{"Bonus":0,"Continent":"K56","ID":27005,"Name":"*035*","PlayerID":698670524,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27005","ServerKey":"pl181","X":633,"Y":585},{"Bonus":0,"Continent":"K56","ID":27006,"Name":"004","PlayerID":699301458,"Points":1396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27006","ServerKey":"pl181","X":641,"Y":578},{"Bonus":0,"Continent":"K46","ID":27007,"Name":"Jaaa","PlayerID":698635863,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27007","ServerKey":"pl181","X":665,"Y":485},{"Bonus":0,"Continent":"K46","ID":27008,"Name":"#.05 Wioska jelonqqq","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27008","ServerKey":"pl181","X":657,"Y":477},{"Bonus":0,"Continent":"K64","ID":27009,"Name":"[020]","PlayerID":9094538,"Points":2913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27009","ServerKey":"pl181","X":449,"Y":649},{"Bonus":0,"Continent":"K35","ID":27010,"Name":"Gumi","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27010","ServerKey":"pl181","X":558,"Y":341},{"Bonus":0,"Continent":"K43","ID":27011,"Name":"6AA","PlayerID":7765098,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27011","ServerKey":"pl181","X":352,"Y":431},{"Bonus":0,"Continent":"K65","ID":27012,"Name":"0362","PlayerID":698659980,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27012","ServerKey":"pl181","X":545,"Y":658},{"Bonus":0,"Continent":"K35","ID":27013,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":5303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27013","ServerKey":"pl181","X":595,"Y":365},{"Bonus":0,"Continent":"K34","ID":27014,"Name":"#0073 barbarzyƄska","PlayerID":1238300,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27014","ServerKey":"pl181","X":468,"Y":338},{"Bonus":0,"Continent":"K53","ID":27015,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27015","ServerKey":"pl181","X":342,"Y":539},{"Bonus":0,"Continent":"K64","ID":27016,"Name":"Samana 2","PlayerID":699849210,"Points":6314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27016","ServerKey":"pl181","X":454,"Y":652},{"Bonus":0,"Continent":"K63","ID":27017,"Name":"012.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27017","ServerKey":"pl181","X":397,"Y":627},{"Bonus":0,"Continent":"K43","ID":27018,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27018","ServerKey":"pl181","X":361,"Y":424},{"Bonus":0,"Continent":"K64","ID":27019,"Name":"009 Wioska na gwarancji","PlayerID":698650301,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27019","ServerKey":"pl181","X":481,"Y":660},{"Bonus":0,"Continent":"K46","ID":27020,"Name":"049 BOBI 3","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27020","ServerKey":"pl181","X":663,"Y":486},{"Bonus":0,"Continent":"K65","ID":27022,"Name":"?006","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27022","ServerKey":"pl181","X":538,"Y":658},{"Bonus":0,"Continent":"K65","ID":27023,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27023","ServerKey":"pl181","X":573,"Y":648},{"Bonus":0,"Continent":"K43","ID":27024,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27024","ServerKey":"pl181","X":337,"Y":474},{"Bonus":0,"Continent":"K66","ID":27025,"Name":"086","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27025","ServerKey":"pl181","X":621,"Y":611},{"Bonus":0,"Continent":"K46","ID":27026,"Name":"038","PlayerID":7085502,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27026","ServerKey":"pl181","X":658,"Y":495},{"Bonus":0,"Continent":"K65","ID":27027,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27027","ServerKey":"pl181","X":570,"Y":644},{"Bonus":0,"Continent":"K43","ID":27028,"Name":"006.Dla flag","PlayerID":698630507,"Points":7603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27028","ServerKey":"pl181","X":352,"Y":437},{"Bonus":0,"Continent":"K56","ID":27029,"Name":"=049= Wioska barbarzyƄska","PlayerID":3781794,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27029","ServerKey":"pl181","X":644,"Y":578},{"Bonus":0,"Continent":"K43","ID":27030,"Name":"Patatajnia","PlayerID":6258092,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27030","ServerKey":"pl181","X":345,"Y":452},{"Bonus":0,"Continent":"K35","ID":27031,"Name":"CHARFA","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27031","ServerKey":"pl181","X":511,"Y":339},{"Bonus":0,"Continent":"K64","ID":27032,"Name":"|015| Gazi","PlayerID":699393742,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27032","ServerKey":"pl181","X":498,"Y":660},{"Bonus":0,"Continent":"K43","ID":27033,"Name":"UwaĆŒaj Jurkowski","PlayerID":393668,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27033","ServerKey":"pl181","X":349,"Y":435},{"Bonus":0,"Continent":"K46","ID":27034,"Name":"BACÓWKA |002|","PlayerID":7394371,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27034","ServerKey":"pl181","X":635,"Y":407},{"Bonus":0,"Continent":"K63","ID":27035,"Name":"Pobozowisko","PlayerID":699513260,"Points":7334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27035","ServerKey":"pl181","X":384,"Y":618},{"Bonus":0,"Continent":"K43","ID":27036,"Name":"M181_039","PlayerID":393668,"Points":8712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27036","ServerKey":"pl181","X":354,"Y":429},{"Bonus":0,"Continent":"K56","ID":27037,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":6735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27037","ServerKey":"pl181","X":657,"Y":523},{"Bonus":0,"Continent":"K43","ID":27038,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27038","ServerKey":"pl181","X":340,"Y":496},{"Bonus":0,"Continent":"K53","ID":27039,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27039","ServerKey":"pl181","X":360,"Y":578},{"Bonus":0,"Continent":"K35","ID":27040,"Name":"001","PlayerID":849087786,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27040","ServerKey":"pl181","X":545,"Y":341},{"Bonus":0,"Continent":"K35","ID":27041,"Name":"Lord Lord Franek .#037","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27041","ServerKey":"pl181","X":524,"Y":340},{"Bonus":0,"Continent":"K35","ID":27042,"Name":"018)","PlayerID":849097103,"Points":3214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27042","ServerKey":"pl181","X":538,"Y":345},{"Bonus":9,"Continent":"K43","ID":27043,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27043","ServerKey":"pl181","X":340,"Y":498},{"Bonus":0,"Continent":"K46","ID":27044,"Name":"049","PlayerID":7085502,"Points":8214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27044","ServerKey":"pl181","X":660,"Y":490},{"Bonus":0,"Continent":"K64","ID":27045,"Name":"001|| Aries","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27045","ServerKey":"pl181","X":487,"Y":645},{"Bonus":0,"Continent":"K33","ID":27046,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27046","ServerKey":"pl181","X":379,"Y":396},{"Bonus":0,"Continent":"K63","ID":27047,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27047","ServerKey":"pl181","X":387,"Y":603},{"Bonus":2,"Continent":"K36","ID":27048,"Name":"I#011","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27048","ServerKey":"pl181","X":603,"Y":380},{"Bonus":0,"Continent":"K56","ID":27049,"Name":"P026 Alfheim","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27049","ServerKey":"pl181","X":658,"Y":517},{"Bonus":0,"Continent":"K43","ID":27050,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27050","ServerKey":"pl181","X":342,"Y":471},{"Bonus":0,"Continent":"K56","ID":27052,"Name":"Wioska Kaffiks XI","PlayerID":6136757,"Points":6163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27052","ServerKey":"pl181","X":643,"Y":578},{"Bonus":0,"Continent":"K36","ID":27053,"Name":"072","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27053","ServerKey":"pl181","X":603,"Y":370},{"Bonus":0,"Continent":"K34","ID":27054,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27054","ServerKey":"pl181","X":433,"Y":356},{"Bonus":0,"Continent":"K44","ID":27055,"Name":"Szlachcic","PlayerID":699098531,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27055","ServerKey":"pl181","X":495,"Y":466},{"Bonus":0,"Continent":"K34","ID":27056,"Name":"gĂłra","PlayerID":849096310,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27056","ServerKey":"pl181","X":434,"Y":351},{"Bonus":0,"Continent":"K56","ID":27057,"Name":"O29 Struer","PlayerID":699272880,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27057","ServerKey":"pl181","X":661,"Y":519},{"Bonus":0,"Continent":"K56","ID":27058,"Name":"36k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27058","ServerKey":"pl181","X":648,"Y":574},{"Bonus":0,"Continent":"K53","ID":27059,"Name":"011","PlayerID":6853693,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27059","ServerKey":"pl181","X":376,"Y":525},{"Bonus":0,"Continent":"K43","ID":27060,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27060","ServerKey":"pl181","X":339,"Y":482},{"Bonus":0,"Continent":"K53","ID":27061,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27061","ServerKey":"pl181","X":353,"Y":574},{"Bonus":0,"Continent":"K64","ID":27062,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27062","ServerKey":"pl181","X":471,"Y":655},{"Bonus":0,"Continent":"K56","ID":27064,"Name":"071","PlayerID":698786826,"Points":9423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27064","ServerKey":"pl181","X":629,"Y":597},{"Bonus":0,"Continent":"K65","ID":27065,"Name":"14. tego nie","PlayerID":849100262,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27065","ServerKey":"pl181","X":509,"Y":659},{"Bonus":0,"Continent":"K65","ID":27066,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27066","ServerKey":"pl181","X":517,"Y":663},{"Bonus":6,"Continent":"K56","ID":27067,"Name":"044 Qarinus","PlayerID":699272880,"Points":10028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27067","ServerKey":"pl181","X":633,"Y":587},{"Bonus":0,"Continent":"K64","ID":27068,"Name":"001 Syjon","PlayerID":698650301,"Points":9234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27068","ServerKey":"pl181","X":480,"Y":664},{"Bonus":0,"Continent":"K35","ID":27069,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27069","ServerKey":"pl181","X":579,"Y":358},{"Bonus":0,"Continent":"K65","ID":27070,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27070","ServerKey":"pl181","X":564,"Y":649},{"Bonus":0,"Continent":"K65","ID":27071,"Name":"Sony 911","PlayerID":1415009,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27071","ServerKey":"pl181","X":585,"Y":639},{"Bonus":0,"Continent":"K65","ID":27072,"Name":"ObrzeĆŒa 07","PlayerID":848915531,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27072","ServerKey":"pl181","X":554,"Y":651},{"Bonus":0,"Continent":"K46","ID":27073,"Name":"B15","PlayerID":849093742,"Points":8347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27073","ServerKey":"pl181","X":649,"Y":447},{"Bonus":0,"Continent":"K46","ID":27074,"Name":"*4624*a Bawaria","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27074","ServerKey":"pl181","X":649,"Y":436},{"Bonus":0,"Continent":"K34","ID":27075,"Name":"North Barba 041","PlayerID":699796330,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27075","ServerKey":"pl181","X":423,"Y":357},{"Bonus":0,"Continent":"K35","ID":27077,"Name":"Saturn","PlayerID":699797805,"Points":4274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27077","ServerKey":"pl181","X":547,"Y":343},{"Bonus":0,"Continent":"K63","ID":27078,"Name":"1v9 machine","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27078","ServerKey":"pl181","X":387,"Y":618},{"Bonus":0,"Continent":"K53","ID":27079,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27079","ServerKey":"pl181","X":358,"Y":582},{"Bonus":0,"Continent":"K36","ID":27080,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27080","ServerKey":"pl181","X":615,"Y":387},{"Bonus":0,"Continent":"K53","ID":27081,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27081","ServerKey":"pl181","X":357,"Y":580},{"Bonus":0,"Continent":"K53","ID":27083,"Name":"x Wioska grzegorz1806","PlayerID":698290577,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27083","ServerKey":"pl181","X":398,"Y":510},{"Bonus":0,"Continent":"K63","ID":27084,"Name":"058.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27084","ServerKey":"pl181","X":392,"Y":623},{"Bonus":0,"Continent":"K65","ID":27085,"Name":"Sony 911","PlayerID":1415009,"Points":6000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27085","ServerKey":"pl181","X":586,"Y":636},{"Bonus":0,"Continent":"K56","ID":27086,"Name":"B 021","PlayerID":8078914,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27086","ServerKey":"pl181","X":660,"Y":529},{"Bonus":0,"Continent":"K36","ID":27087,"Name":"Szlachcic Siedmiomilowy","PlayerID":848924219,"Points":7718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27087","ServerKey":"pl181","X":617,"Y":379},{"Bonus":0,"Continent":"K63","ID":27088,"Name":"11. Remiza","PlayerID":8665783,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27088","ServerKey":"pl181","X":373,"Y":600},{"Bonus":0,"Continent":"K34","ID":27089,"Name":"Szulernia","PlayerID":7249451,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27089","ServerKey":"pl181","X":416,"Y":363},{"Bonus":0,"Continent":"K43","ID":27090,"Name":"Liƛciaste Rozstaje","PlayerID":6258092,"Points":3597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27090","ServerKey":"pl181","X":345,"Y":453},{"Bonus":0,"Continent":"K53","ID":27091,"Name":"022. Barbara 6","PlayerID":1830149,"Points":6786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27091","ServerKey":"pl181","X":338,"Y":505},{"Bonus":3,"Continent":"K56","ID":27092,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27092","ServerKey":"pl181","X":649,"Y":571},{"Bonus":0,"Continent":"K64","ID":27093,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27093","ServerKey":"pl181","X":473,"Y":649},{"Bonus":0,"Continent":"K56","ID":27094,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":6803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27094","ServerKey":"pl181","X":662,"Y":509},{"Bonus":0,"Continent":"K66","ID":27096,"Name":"0006","PlayerID":6417987,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27096","ServerKey":"pl181","X":611,"Y":614},{"Bonus":0,"Continent":"K35","ID":27097,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27097","ServerKey":"pl181","X":580,"Y":351},{"Bonus":0,"Continent":"K43","ID":27098,"Name":"Chamabuda","PlayerID":8967440,"Points":4270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27098","ServerKey":"pl181","X":366,"Y":403},{"Bonus":0,"Continent":"K46","ID":27099,"Name":"008 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27099","ServerKey":"pl181","X":648,"Y":429},{"Bonus":0,"Continent":"K35","ID":27100,"Name":"Lord Lord Franek .#152","PlayerID":698420691,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27100","ServerKey":"pl181","X":505,"Y":337},{"Bonus":0,"Continent":"K33","ID":27101,"Name":"cc Wioska jqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":5959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27101","ServerKey":"pl181","X":397,"Y":375},{"Bonus":0,"Continent":"K65","ID":27102,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27102","ServerKey":"pl181","X":589,"Y":635},{"Bonus":0,"Continent":"K46","ID":27103,"Name":"B12","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27103","ServerKey":"pl181","X":649,"Y":446},{"Bonus":0,"Continent":"K34","ID":27105,"Name":"K34 - [128] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27105","ServerKey":"pl181","X":438,"Y":352},{"Bonus":0,"Continent":"K65","ID":27106,"Name":"Sony 911","PlayerID":1415009,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27106","ServerKey":"pl181","X":583,"Y":642},{"Bonus":0,"Continent":"K56","ID":27108,"Name":"039","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27108","ServerKey":"pl181","X":655,"Y":544},{"Bonus":0,"Continent":"K64","ID":27109,"Name":"012.","PlayerID":849034882,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27109","ServerKey":"pl181","X":483,"Y":658},{"Bonus":0,"Continent":"K64","ID":27110,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27110","ServerKey":"pl181","X":443,"Y":649},{"Bonus":0,"Continent":"K46","ID":27111,"Name":"016 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27111","ServerKey":"pl181","X":649,"Y":428},{"Bonus":4,"Continent":"K65","ID":27112,"Name":"*Nie ma to jak...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27112","ServerKey":"pl181","X":577,"Y":644},{"Bonus":0,"Continent":"K34","ID":27113,"Name":"#0046 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27113","ServerKey":"pl181","X":466,"Y":341},{"Bonus":0,"Continent":"K34","ID":27114,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27114","ServerKey":"pl181","X":408,"Y":371},{"Bonus":0,"Continent":"K65","ID":27115,"Name":"0501","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27115","ServerKey":"pl181","X":535,"Y":659},{"Bonus":0,"Continent":"K53","ID":27116,"Name":"DajankA 09","PlayerID":849012843,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27116","ServerKey":"pl181","X":352,"Y":560},{"Bonus":0,"Continent":"K65","ID":27117,"Name":"*041","PlayerID":699567608,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27117","ServerKey":"pl181","X":593,"Y":637},{"Bonus":0,"Continent":"K64","ID":27118,"Name":"01.Czekam Na","PlayerID":361125,"Points":4546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27118","ServerKey":"pl181","X":457,"Y":654},{"Bonus":0,"Continent":"K56","ID":27119,"Name":"077","PlayerID":698786826,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27119","ServerKey":"pl181","X":630,"Y":594},{"Bonus":0,"Continent":"K64","ID":27120,"Name":"5..","PlayerID":699736927,"Points":7773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27120","ServerKey":"pl181","X":432,"Y":648},{"Bonus":0,"Continent":"K43","ID":27121,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27121","ServerKey":"pl181","X":338,"Y":490},{"Bonus":2,"Continent":"K56","ID":27122,"Name":"63k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27122","ServerKey":"pl181","X":649,"Y":563},{"Bonus":0,"Continent":"K34","ID":27124,"Name":"091...bar","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27124","ServerKey":"pl181","X":455,"Y":342},{"Bonus":0,"Continent":"K35","ID":27125,"Name":"MojeDnoToWaszSzczyt +","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27125","ServerKey":"pl181","X":566,"Y":352},{"Bonus":0,"Continent":"K46","ID":27126,"Name":"A028 Hurghada","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27126","ServerKey":"pl181","X":654,"Y":460},{"Bonus":0,"Continent":"K34","ID":27127,"Name":"K34 - [160] Before Land","PlayerID":699088769,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27127","ServerKey":"pl181","X":449,"Y":350},{"Bonus":0,"Continent":"K53","ID":27128,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27128","ServerKey":"pl181","X":362,"Y":578},{"Bonus":0,"Continent":"K53","ID":27129,"Name":"Denger 14","PlayerID":698353083,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27129","ServerKey":"pl181","X":362,"Y":590},{"Bonus":0,"Continent":"K43","ID":27130,"Name":"007. Dla flag","PlayerID":698630507,"Points":6822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27130","ServerKey":"pl181","X":353,"Y":438},{"Bonus":0,"Continent":"K65","ID":27131,"Name":"0502","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27131","ServerKey":"pl181","X":533,"Y":655},{"Bonus":0,"Continent":"K56","ID":27132,"Name":"=047= Wioska barbarzyƄska","PlayerID":3781794,"Points":8057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27132","ServerKey":"pl181","X":653,"Y":550},{"Bonus":0,"Continent":"K56","ID":27133,"Name":"=061= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27133","ServerKey":"pl181","X":652,"Y":553},{"Bonus":0,"Continent":"K56","ID":27134,"Name":"042","PlayerID":699351301,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27134","ServerKey":"pl181","X":656,"Y":529},{"Bonus":0,"Continent":"K56","ID":27135,"Name":"Wioska barbarzyƄska","PlayerID":699316421,"Points":1429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27135","ServerKey":"pl181","X":648,"Y":572},{"Bonus":0,"Continent":"K66","ID":27136,"Name":"ladyanima","PlayerID":699703642,"Points":6418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27136","ServerKey":"pl181","X":605,"Y":621},{"Bonus":0,"Continent":"K34","ID":27137,"Name":"#0055 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27137","ServerKey":"pl181","X":470,"Y":340},{"Bonus":0,"Continent":"K64","ID":27138,"Name":"Abdoulxx","PlayerID":849089459,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27138","ServerKey":"pl181","X":473,"Y":660},{"Bonus":0,"Continent":"K35","ID":27139,"Name":"Lord Lord Franek .#153","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27139","ServerKey":"pl181","X":510,"Y":340},{"Bonus":0,"Continent":"K66","ID":27140,"Name":"Ć»UBRAWKA 005","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27140","ServerKey":"pl181","X":604,"Y":627},{"Bonus":0,"Continent":"K64","ID":27141,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":6297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27141","ServerKey":"pl181","X":456,"Y":660},{"Bonus":0,"Continent":"K46","ID":27142,"Name":"105","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27142","ServerKey":"pl181","X":654,"Y":443},{"Bonus":0,"Continent":"K34","ID":27143,"Name":"036...Zachodzik","PlayerID":6920960,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27143","ServerKey":"pl181","X":452,"Y":343},{"Bonus":0,"Continent":"K43","ID":27144,"Name":"Mroczne Rozlewisko","PlayerID":848886056,"Points":5128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27144","ServerKey":"pl181","X":366,"Y":405},{"Bonus":0,"Continent":"K43","ID":27145,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27145","ServerKey":"pl181","X":356,"Y":425},{"Bonus":0,"Continent":"K35","ID":27146,"Name":"Lord Lord Franek .#113","PlayerID":698420691,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27146","ServerKey":"pl181","X":514,"Y":335},{"Bonus":0,"Continent":"K43","ID":27147,"Name":"Niger1","PlayerID":848886056,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27147","ServerKey":"pl181","X":362,"Y":403},{"Bonus":2,"Continent":"K43","ID":27148,"Name":"M181_023","PlayerID":393668,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27148","ServerKey":"pl181","X":360,"Y":425},{"Bonus":0,"Continent":"K34","ID":27150,"Name":"Wiocha 7","PlayerID":849096544,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27150","ServerKey":"pl181","X":426,"Y":359},{"Bonus":0,"Continent":"K46","ID":27151,"Name":"Jehu_Kingdom_49","PlayerID":8785314,"Points":4799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27151","ServerKey":"pl181","X":651,"Y":432},{"Bonus":0,"Continent":"K63","ID":27152,"Name":"Wioska 006","PlayerID":848912772,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27152","ServerKey":"pl181","X":386,"Y":616},{"Bonus":0,"Continent":"K36","ID":27153,"Name":"068 front","PlayerID":2502956,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27153","ServerKey":"pl181","X":600,"Y":368},{"Bonus":0,"Continent":"K36","ID":27154,"Name":"llllllllll","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27154","ServerKey":"pl181","X":627,"Y":399},{"Bonus":0,"Continent":"K33","ID":27155,"Name":"0008","PlayerID":8419570,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27155","ServerKey":"pl181","X":390,"Y":382},{"Bonus":0,"Continent":"K53","ID":27157,"Name":"Dajanka 20","PlayerID":849012843,"Points":1787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27157","ServerKey":"pl181","X":342,"Y":550},{"Bonus":0,"Continent":"K34","ID":27158,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":6371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27158","ServerKey":"pl181","X":400,"Y":370},{"Bonus":0,"Continent":"K34","ID":27159,"Name":"#0084 barbarzyƄska","PlayerID":1238300,"Points":8313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27159","ServerKey":"pl181","X":471,"Y":337},{"Bonus":0,"Continent":"K65","ID":27160,"Name":"Mobil","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27160","ServerKey":"pl181","X":537,"Y":653},{"Bonus":0,"Continent":"K43","ID":27161,"Name":"Wioska barbarzyƄska","PlayerID":849097716,"Points":2859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27161","ServerKey":"pl181","X":348,"Y":434},{"Bonus":4,"Continent":"K33","ID":27162,"Name":"Szulernia","PlayerID":7249451,"Points":6243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27162","ServerKey":"pl181","X":394,"Y":375},{"Bonus":0,"Continent":"K64","ID":27163,"Name":"...","PlayerID":848999671,"Points":8111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27163","ServerKey":"pl181","X":486,"Y":661},{"Bonus":0,"Continent":"K65","ID":27164,"Name":"036","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27164","ServerKey":"pl181","X":568,"Y":645},{"Bonus":0,"Continent":"K35","ID":27165,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27165","ServerKey":"pl181","X":573,"Y":352},{"Bonus":0,"Continent":"K35","ID":27166,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27166","ServerKey":"pl181","X":565,"Y":355},{"Bonus":0,"Continent":"K43","ID":27167,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27167","ServerKey":"pl181","X":344,"Y":465},{"Bonus":0,"Continent":"K34","ID":27168,"Name":"North Barba 049","PlayerID":699796330,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27168","ServerKey":"pl181","X":423,"Y":353},{"Bonus":0,"Continent":"K63","ID":27169,"Name":"0454","PlayerID":699513260,"Points":4629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27169","ServerKey":"pl181","X":377,"Y":602},{"Bonus":0,"Continent":"K43","ID":27170,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":5199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27170","ServerKey":"pl181","X":349,"Y":441},{"Bonus":0,"Continent":"K43","ID":27171,"Name":"M181_045","PlayerID":393668,"Points":8529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27171","ServerKey":"pl181","X":349,"Y":436},{"Bonus":0,"Continent":"K35","ID":27172,"Name":"010) Borek StrzeliƄski","PlayerID":849097103,"Points":2166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27172","ServerKey":"pl181","X":543,"Y":344},{"Bonus":0,"Continent":"K53","ID":27173,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27173","ServerKey":"pl181","X":354,"Y":530},{"Bonus":0,"Continent":"K65","ID":27174,"Name":"gƂową bigos mieszam .","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27174","ServerKey":"pl181","X":580,"Y":640},{"Bonus":0,"Continent":"K43","ID":27175,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27175","ServerKey":"pl181","X":344,"Y":468},{"Bonus":0,"Continent":"K65","ID":27176,"Name":"kathare","PlayerID":873575,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27176","ServerKey":"pl181","X":560,"Y":648},{"Bonus":0,"Continent":"K35","ID":27177,"Name":"012) Oleƛnica MaƂa","PlayerID":849097103,"Points":1829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27177","ServerKey":"pl181","X":545,"Y":342},{"Bonus":0,"Continent":"K53","ID":27178,"Name":"SƂoneczna 63","PlayerID":849095992,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27178","ServerKey":"pl181","X":374,"Y":597},{"Bonus":0,"Continent":"K56","ID":27179,"Name":"WschĂłd Droga 002","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27179","ServerKey":"pl181","X":647,"Y":559},{"Bonus":0,"Continent":"K64","ID":27180,"Name":"019","PlayerID":698650301,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27180","ServerKey":"pl181","X":451,"Y":655},{"Bonus":0,"Continent":"K56","ID":27182,"Name":"910","PlayerID":7038651,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27182","ServerKey":"pl181","X":653,"Y":546},{"Bonus":0,"Continent":"K43","ID":27183,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27183","ServerKey":"pl181","X":353,"Y":427},{"Bonus":0,"Continent":"K56","ID":27184,"Name":"Sony 911","PlayerID":1415009,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27184","ServerKey":"pl181","X":641,"Y":583},{"Bonus":0,"Continent":"K43","ID":27185,"Name":"M181_042","PlayerID":393668,"Points":8893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27185","ServerKey":"pl181","X":358,"Y":427},{"Bonus":0,"Continent":"K44","ID":27186,"Name":"1. Kattegat","PlayerID":699660539,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27186","ServerKey":"pl181","X":426,"Y":428},{"Bonus":0,"Continent":"K65","ID":27187,"Name":"0661","PlayerID":698659980,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27187","ServerKey":"pl181","X":546,"Y":657},{"Bonus":5,"Continent":"K46","ID":27188,"Name":"003 - Mroczna Osada","PlayerID":849035905,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27188","ServerKey":"pl181","X":640,"Y":425},{"Bonus":0,"Continent":"K33","ID":27189,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":2736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27189","ServerKey":"pl181","X":382,"Y":384},{"Bonus":0,"Continent":"K43","ID":27190,"Name":"#012 AUUUUUUUUU","PlayerID":849096215,"Points":2061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27190","ServerKey":"pl181","X":350,"Y":439},{"Bonus":0,"Continent":"K65","ID":27191,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27191","ServerKey":"pl181","X":599,"Y":627},{"Bonus":0,"Continent":"K34","ID":27192,"Name":"North Barba 019","PlayerID":699796330,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27192","ServerKey":"pl181","X":421,"Y":360},{"Bonus":0,"Continent":"K65","ID":27193,"Name":"Ć»UBRAWKA 021 tiriolenin","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27193","ServerKey":"pl181","X":596,"Y":631},{"Bonus":0,"Continent":"K53","ID":27194,"Name":"Macp 2","PlayerID":61791,"Points":8364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27194","ServerKey":"pl181","X":339,"Y":513},{"Bonus":0,"Continent":"K35","ID":27196,"Name":"003) Bielawa","PlayerID":849097103,"Points":7166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27196","ServerKey":"pl181","X":545,"Y":347},{"Bonus":0,"Continent":"K65","ID":27197,"Name":"Village","PlayerID":849094067,"Points":9137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27197","ServerKey":"pl181","X":568,"Y":646},{"Bonus":0,"Continent":"K46","ID":27198,"Name":"BACÓWKA |028|","PlayerID":7394371,"Points":6849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27198","ServerKey":"pl181","X":632,"Y":405},{"Bonus":9,"Continent":"K34","ID":27199,"Name":"[B]_[021] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27199","ServerKey":"pl181","X":430,"Y":353},{"Bonus":0,"Continent":"K35","ID":27200,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27200","ServerKey":"pl181","X":567,"Y":351},{"Bonus":0,"Continent":"K53","ID":27201,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27201","ServerKey":"pl181","X":343,"Y":527},{"Bonus":0,"Continent":"K35","ID":27202,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27202","ServerKey":"pl181","X":551,"Y":348},{"Bonus":0,"Continent":"K65","ID":27203,"Name":"Ć»UBRAWKA 023","PlayerID":33900,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27203","ServerKey":"pl181","X":594,"Y":635},{"Bonus":0,"Continent":"K65","ID":27204,"Name":"SX002","PlayerID":8627359,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27204","ServerKey":"pl181","X":575,"Y":648},{"Bonus":0,"Continent":"K36","ID":27205,"Name":"Orlando, Floryda","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27205","ServerKey":"pl181","X":602,"Y":375},{"Bonus":0,"Continent":"K65","ID":27206,"Name":"0503","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27206","ServerKey":"pl181","X":534,"Y":655},{"Bonus":0,"Continent":"K34","ID":27207,"Name":"092...bar","PlayerID":6920960,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27207","ServerKey":"pl181","X":459,"Y":344},{"Bonus":0,"Continent":"K66","ID":27208,"Name":"Ć»UBRAWKA 007","PlayerID":33900,"Points":9943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27208","ServerKey":"pl181","X":602,"Y":626},{"Bonus":0,"Continent":"K64","ID":27209,"Name":"06. GT-R","PlayerID":849100262,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27209","ServerKey":"pl181","X":494,"Y":662},{"Bonus":0,"Continent":"K46","ID":27210,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27210","ServerKey":"pl181","X":661,"Y":468},{"Bonus":0,"Continent":"K36","ID":27211,"Name":"OhhhnOoo","PlayerID":699759128,"Points":8255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27211","ServerKey":"pl181","X":625,"Y":392},{"Bonus":0,"Continent":"K56","ID":27212,"Name":"010","PlayerID":849095963,"Points":5072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27212","ServerKey":"pl181","X":645,"Y":574},{"Bonus":0,"Continent":"K64","ID":27213,"Name":"006","PlayerID":698650301,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27213","ServerKey":"pl181","X":464,"Y":657},{"Bonus":0,"Continent":"K34","ID":27214,"Name":"North Barba 028","PlayerID":699796330,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27214","ServerKey":"pl181","X":427,"Y":354},{"Bonus":4,"Continent":"K56","ID":27215,"Name":"026","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27215","ServerKey":"pl181","X":647,"Y":562},{"Bonus":0,"Continent":"K56","ID":27216,"Name":"#110#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27216","ServerKey":"pl181","X":636,"Y":594},{"Bonus":0,"Continent":"K53","ID":27217,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27217","ServerKey":"pl181","X":339,"Y":509},{"Bonus":0,"Continent":"K34","ID":27218,"Name":"170...monlib","PlayerID":6920960,"Points":6718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27218","ServerKey":"pl181","X":451,"Y":346},{"Bonus":0,"Continent":"K46","ID":27219,"Name":"Jehu_Kingdom_53","PlayerID":8785314,"Points":6358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27219","ServerKey":"pl181","X":649,"Y":429},{"Bonus":0,"Continent":"K34","ID":27220,"Name":"K34 - [145] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27220","ServerKey":"pl181","X":437,"Y":348},{"Bonus":0,"Continent":"K56","ID":27221,"Name":"O04 Toledo","PlayerID":699272880,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27221","ServerKey":"pl181","X":661,"Y":517},{"Bonus":0,"Continent":"K43","ID":27222,"Name":"Maszlug kolonia XX","PlayerID":848977649,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27222","ServerKey":"pl181","X":367,"Y":414},{"Bonus":0,"Continent":"K34","ID":27223,"Name":"133","PlayerID":7271812,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27223","ServerKey":"pl181","X":475,"Y":342},{"Bonus":0,"Continent":"K64","ID":27224,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27224","ServerKey":"pl181","X":456,"Y":657},{"Bonus":0,"Continent":"K43","ID":27225,"Name":"-11-","PlayerID":765188,"Points":6163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27225","ServerKey":"pl181","X":334,"Y":499},{"Bonus":0,"Continent":"K33","ID":27226,"Name":"A-033","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27226","ServerKey":"pl181","X":383,"Y":393},{"Bonus":0,"Continent":"K35","ID":27227,"Name":"Klaudek.4","PlayerID":849092309,"Points":8573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27227","ServerKey":"pl181","X":591,"Y":368},{"Bonus":3,"Continent":"K43","ID":27228,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27228","ServerKey":"pl181","X":343,"Y":473},{"Bonus":0,"Continent":"K53","ID":27229,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27229","ServerKey":"pl181","X":349,"Y":552},{"Bonus":0,"Continent":"K53","ID":27230,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27230","ServerKey":"pl181","X":346,"Y":539},{"Bonus":0,"Continent":"K35","ID":27232,"Name":"007) Nowa Ruda","PlayerID":849097103,"Points":3191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27232","ServerKey":"pl181","X":546,"Y":349},{"Bonus":0,"Continent":"K36","ID":27233,"Name":"C005","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27233","ServerKey":"pl181","X":611,"Y":380},{"Bonus":0,"Continent":"K35","ID":27234,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27234","ServerKey":"pl181","X":565,"Y":350},{"Bonus":0,"Continent":"K56","ID":27235,"Name":"Grvvyq 110k$","PlayerID":699676005,"Points":4551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27235","ServerKey":"pl181","X":652,"Y":563},{"Bonus":0,"Continent":"K53","ID":27236,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27236","ServerKey":"pl181","X":345,"Y":535},{"Bonus":0,"Continent":"K63","ID":27237,"Name":"Valhalla A4","PlayerID":849097002,"Points":7463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27237","ServerKey":"pl181","X":377,"Y":606},{"Bonus":0,"Continent":"K35","ID":27238,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":5446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27238","ServerKey":"pl181","X":502,"Y":337},{"Bonus":0,"Continent":"K36","ID":27239,"Name":"608|375","PlayerID":699580120,"Points":8703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27239","ServerKey":"pl181","X":606,"Y":373},{"Bonus":8,"Continent":"K64","ID":27240,"Name":"Ave Why!","PlayerID":698585370,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27240","ServerKey":"pl181","X":485,"Y":659},{"Bonus":0,"Continent":"K34","ID":27242,"Name":"#0031 GL01N","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27242","ServerKey":"pl181","X":469,"Y":338},{"Bonus":0,"Continent":"K36","ID":27243,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27243","ServerKey":"pl181","X":617,"Y":382},{"Bonus":0,"Continent":"K36","ID":27245,"Name":"I#016","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27245","ServerKey":"pl181","X":605,"Y":381},{"Bonus":0,"Continent":"K64","ID":27246,"Name":"Tight OB","PlayerID":849004274,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27246","ServerKey":"pl181","X":495,"Y":665},{"Bonus":0,"Continent":"K43","ID":27247,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27247","ServerKey":"pl181","X":336,"Y":494},{"Bonus":0,"Continent":"K63","ID":27248,"Name":"Pobozowisko","PlayerID":699513260,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27248","ServerKey":"pl181","X":382,"Y":617},{"Bonus":0,"Continent":"K35","ID":27249,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27249","ServerKey":"pl181","X":574,"Y":353},{"Bonus":0,"Continent":"K56","ID":27250,"Name":"*037*","PlayerID":698670524,"Points":8308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27250","ServerKey":"pl181","X":633,"Y":593},{"Bonus":0,"Continent":"K66","ID":27251,"Name":"Sir develes","PlayerID":698786826,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27251","ServerKey":"pl181","X":618,"Y":613},{"Bonus":0,"Continent":"K46","ID":27252,"Name":"A020 Darek sxdf","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27252","ServerKey":"pl181","X":656,"Y":449},{"Bonus":0,"Continent":"K33","ID":27253,"Name":"Wioska ƚmiechu","PlayerID":8967440,"Points":3277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27253","ServerKey":"pl181","X":380,"Y":394},{"Bonus":0,"Continent":"K64","ID":27254,"Name":"Wioska barbarzyƄska","PlayerID":699849210,"Points":3439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27254","ServerKey":"pl181","X":448,"Y":653},{"Bonus":0,"Continent":"K53","ID":27255,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27255","ServerKey":"pl181","X":348,"Y":550},{"Bonus":0,"Continent":"K65","ID":27256,"Name":"011 serniczek z niespodzianką","PlayerID":8954402,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27256","ServerKey":"pl181","X":501,"Y":661},{"Bonus":0,"Continent":"K64","ID":27257,"Name":"Darmowe przeprowadzki","PlayerID":698807570,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27257","ServerKey":"pl181","X":476,"Y":661},{"Bonus":0,"Continent":"K66","ID":27258,"Name":"Sir develes","PlayerID":698786826,"Points":9327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27258","ServerKey":"pl181","X":625,"Y":606},{"Bonus":0,"Continent":"K46","ID":27259,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27259","ServerKey":"pl181","X":660,"Y":468},{"Bonus":0,"Continent":"K66","ID":27260,"Name":"~~076~~","PlayerID":7829201,"Points":7326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27260","ServerKey":"pl181","X":614,"Y":618},{"Bonus":0,"Continent":"K63","ID":27261,"Name":"013 WesoƂy Cyrk","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27261","ServerKey":"pl181","X":392,"Y":618},{"Bonus":0,"Continent":"K53","ID":27262,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27262","ServerKey":"pl181","X":354,"Y":565},{"Bonus":0,"Continent":"K64","ID":27263,"Name":"003 Vengerberg","PlayerID":699834004,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27263","ServerKey":"pl181","X":469,"Y":660},{"Bonus":0,"Continent":"K43","ID":27264,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27264","ServerKey":"pl181","X":335,"Y":482},{"Bonus":0,"Continent":"K34","ID":27266,"Name":"K34 x032","PlayerID":698364331,"Points":6145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27266","ServerKey":"pl181","X":410,"Y":368},{"Bonus":0,"Continent":"K56","ID":27267,"Name":"B 022","PlayerID":8078914,"Points":9631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27267","ServerKey":"pl181","X":662,"Y":529},{"Bonus":0,"Continent":"K53","ID":27268,"Name":"22. PrzybudĂłwka u sebcia","PlayerID":8665783,"Points":8957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27268","ServerKey":"pl181","X":369,"Y":599},{"Bonus":0,"Continent":"K64","ID":27269,"Name":"006","PlayerID":848953066,"Points":6431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27269","ServerKey":"pl181","X":499,"Y":660},{"Bonus":0,"Continent":"K65","ID":27270,"Name":"020 serniczek na biszkopcie","PlayerID":8954402,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27270","ServerKey":"pl181","X":509,"Y":664},{"Bonus":0,"Continent":"K64","ID":27271,"Name":"KUZYN","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27271","ServerKey":"pl181","X":411,"Y":638},{"Bonus":6,"Continent":"K46","ID":27272,"Name":"057 xxx","PlayerID":9238175,"Points":10545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27272","ServerKey":"pl181","X":640,"Y":426},{"Bonus":0,"Continent":"K55","ID":27273,"Name":"053","PlayerID":699189792,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27273","ServerKey":"pl181","X":529,"Y":577},{"Bonus":0,"Continent":"K34","ID":27274,"Name":"North Barba 043","PlayerID":699796330,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27274","ServerKey":"pl181","X":427,"Y":352},{"Bonus":0,"Continent":"K43","ID":27275,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":2337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27275","ServerKey":"pl181","X":347,"Y":439},{"Bonus":0,"Continent":"K43","ID":27276,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27276","ServerKey":"pl181","X":339,"Y":460},{"Bonus":0,"Continent":"K56","ID":27277,"Name":"080","PlayerID":849095227,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27277","ServerKey":"pl181","X":656,"Y":554},{"Bonus":0,"Continent":"K65","ID":27278,"Name":"0546","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27278","ServerKey":"pl181","X":531,"Y":659},{"Bonus":4,"Continent":"K35","ID":27279,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":6971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27279","ServerKey":"pl181","X":576,"Y":356},{"Bonus":0,"Continent":"K43","ID":27280,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27280","ServerKey":"pl181","X":337,"Y":488},{"Bonus":0,"Continent":"K63","ID":27281,"Name":"054.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27281","ServerKey":"pl181","X":390,"Y":625},{"Bonus":0,"Continent":"K34","ID":27282,"Name":"cc 44","PlayerID":3909522,"Points":4038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27282","ServerKey":"pl181","X":400,"Y":375},{"Bonus":0,"Continent":"K35","ID":27283,"Name":"Lord Lord Franek .#154","PlayerID":698420691,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27283","ServerKey":"pl181","X":504,"Y":334},{"Bonus":5,"Continent":"K53","ID":27284,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27284","ServerKey":"pl181","X":339,"Y":532},{"Bonus":0,"Continent":"K64","ID":27285,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27285","ServerKey":"pl181","X":471,"Y":652},{"Bonus":0,"Continent":"K64","ID":27286,"Name":"Psycha Siada i sie nie podnosi","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27286","ServerKey":"pl181","X":466,"Y":656},{"Bonus":0,"Continent":"K64","ID":27287,"Name":"072","PlayerID":849084985,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27287","ServerKey":"pl181","X":444,"Y":635},{"Bonus":0,"Continent":"K64","ID":27288,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27288","ServerKey":"pl181","X":462,"Y":659},{"Bonus":0,"Continent":"K33","ID":27289,"Name":"016 Neapol","PlayerID":8419570,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27289","ServerKey":"pl181","X":380,"Y":385},{"Bonus":0,"Continent":"K34","ID":27290,"Name":"#0079 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27290","ServerKey":"pl181","X":475,"Y":336},{"Bonus":0,"Continent":"K33","ID":27291,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":8505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27291","ServerKey":"pl181","X":375,"Y":392},{"Bonus":0,"Continent":"K64","ID":27292,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27292","ServerKey":"pl181","X":476,"Y":636},{"Bonus":0,"Continent":"K46","ID":27293,"Name":"BACÓWKA |029|","PlayerID":7394371,"Points":8053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27293","ServerKey":"pl181","X":631,"Y":406},{"Bonus":0,"Continent":"K46","ID":27294,"Name":"Jehu_Kingdom_38","PlayerID":8785314,"Points":7179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27294","ServerKey":"pl181","X":644,"Y":435},{"Bonus":0,"Continent":"K35","ID":27295,"Name":"Lord Lord Franek .#114","PlayerID":698420691,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27295","ServerKey":"pl181","X":517,"Y":338},{"Bonus":0,"Continent":"K64","ID":27296,"Name":"021.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27296","ServerKey":"pl181","X":400,"Y":627},{"Bonus":0,"Continent":"K35","ID":27297,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27297","ServerKey":"pl181","X":568,"Y":350},{"Bonus":0,"Continent":"K66","ID":27298,"Name":"xxx - 04","PlayerID":699778867,"Points":10318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27298","ServerKey":"pl181","X":605,"Y":629},{"Bonus":0,"Continent":"K35","ID":27299,"Name":"Wyngiel we wsi","PlayerID":699072129,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27299","ServerKey":"pl181","X":556,"Y":347},{"Bonus":0,"Continent":"K43","ID":27300,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27300","ServerKey":"pl181","X":339,"Y":472},{"Bonus":0,"Continent":"K66","ID":27301,"Name":"094","PlayerID":698786826,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27301","ServerKey":"pl181","X":619,"Y":611},{"Bonus":0,"Continent":"K46","ID":27302,"Name":"001 MONETKI","PlayerID":7588382,"Points":9108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27302","ServerKey":"pl181","X":659,"Y":467},{"Bonus":0,"Continent":"K35","ID":27303,"Name":"Klaudek12","PlayerID":849092309,"Points":4566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27303","ServerKey":"pl181","X":592,"Y":365},{"Bonus":0,"Continent":"K36","ID":27304,"Name":"A 011","PlayerID":6384450,"Points":8768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27304","ServerKey":"pl181","X":604,"Y":377},{"Bonus":0,"Continent":"K64","ID":27305,"Name":"Elevation WY","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27305","ServerKey":"pl181","X":490,"Y":663},{"Bonus":0,"Continent":"K46","ID":27306,"Name":"028 - Mroczna Osada","PlayerID":849035905,"Points":8382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27306","ServerKey":"pl181","X":639,"Y":416},{"Bonus":0,"Continent":"K53","ID":27307,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":3031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27307","ServerKey":"pl181","X":344,"Y":553},{"Bonus":0,"Continent":"K46","ID":27308,"Name":"006 MONETKI","PlayerID":7588382,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27308","ServerKey":"pl181","X":660,"Y":467},{"Bonus":0,"Continent":"K53","ID":27309,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27309","ServerKey":"pl181","X":362,"Y":582},{"Bonus":0,"Continent":"K53","ID":27310,"Name":"017. Barbara1","PlayerID":1830149,"Points":2957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27310","ServerKey":"pl181","X":335,"Y":506},{"Bonus":0,"Continent":"K35","ID":27311,"Name":"011) RadkĂłw","PlayerID":849097103,"Points":2137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27311","ServerKey":"pl181","X":548,"Y":348},{"Bonus":0,"Continent":"K56","ID":27312,"Name":"005","PlayerID":849095963,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27312","ServerKey":"pl181","X":646,"Y":562},{"Bonus":0,"Continent":"K64","ID":27313,"Name":"020 Psycha SiadƂa :D","PlayerID":698650301,"Points":4354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27313","ServerKey":"pl181","X":460,"Y":655},{"Bonus":0,"Continent":"K53","ID":27314,"Name":"deff 100 %","PlayerID":849012521,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27314","ServerKey":"pl181","X":351,"Y":569},{"Bonus":5,"Continent":"K63","ID":27315,"Name":"041.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27315","ServerKey":"pl181","X":394,"Y":622},{"Bonus":0,"Continent":"K66","ID":27316,"Name":"Wioska barbarzyƄska","PlayerID":848993505,"Points":2228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27316","ServerKey":"pl181","X":631,"Y":602},{"Bonus":0,"Continent":"K43","ID":27317,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27317","ServerKey":"pl181","X":341,"Y":496},{"Bonus":0,"Continent":"K66","ID":27318,"Name":"Gra o Tron","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27318","ServerKey":"pl181","X":614,"Y":617},{"Bonus":0,"Continent":"K46","ID":27320,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":5399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27320","ServerKey":"pl181","X":662,"Y":463},{"Bonus":2,"Continent":"K56","ID":27321,"Name":"023","PlayerID":699351301,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27321","ServerKey":"pl181","X":660,"Y":524},{"Bonus":0,"Continent":"K34","ID":27322,"Name":"Szulernia","PlayerID":7249451,"Points":10638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27322","ServerKey":"pl181","X":407,"Y":363},{"Bonus":0,"Continent":"K35","ID":27323,"Name":"Lord Lord Franek .#115","PlayerID":698420691,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27323","ServerKey":"pl181","X":515,"Y":336},{"Bonus":0,"Continent":"K53","ID":27325,"Name":"Wieƛmak","PlayerID":849096458,"Points":8426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27325","ServerKey":"pl181","X":334,"Y":529},{"Bonus":0,"Continent":"K65","ID":27326,"Name":"amator czysto","PlayerID":848915531,"Points":7919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27326","ServerKey":"pl181","X":544,"Y":654},{"Bonus":0,"Continent":"K66","ID":27327,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27327","ServerKey":"pl181","X":600,"Y":626},{"Bonus":0,"Continent":"K53","ID":27328,"Name":"Dąbrowa 0006","PlayerID":849096972,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27328","ServerKey":"pl181","X":367,"Y":590},{"Bonus":0,"Continent":"K34","ID":27329,"Name":"#0097 barbarzyƄska","PlayerID":1238300,"Points":8869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27329","ServerKey":"pl181","X":460,"Y":342},{"Bonus":0,"Continent":"K64","ID":27330,"Name":"Kirkus","PlayerID":849089459,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27330","ServerKey":"pl181","X":422,"Y":639},{"Bonus":0,"Continent":"K43","ID":27331,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27331","ServerKey":"pl181","X":339,"Y":475},{"Bonus":0,"Continent":"K34","ID":27332,"Name":"132","PlayerID":7271812,"Points":8002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27332","ServerKey":"pl181","X":473,"Y":343},{"Bonus":0,"Continent":"K35","ID":27333,"Name":"Lord Lord Franek .#038","PlayerID":698420691,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27333","ServerKey":"pl181","X":524,"Y":343},{"Bonus":0,"Continent":"K46","ID":27334,"Name":"009 MONETKI","PlayerID":7588382,"Points":8903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27334","ServerKey":"pl181","X":662,"Y":465},{"Bonus":0,"Continent":"K43","ID":27335,"Name":"Maszlug kolonia XV","PlayerID":848977649,"Points":5996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27335","ServerKey":"pl181","X":367,"Y":407},{"Bonus":0,"Continent":"K56","ID":27336,"Name":"B 046","PlayerID":8078914,"Points":9057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27336","ServerKey":"pl181","X":657,"Y":531},{"Bonus":0,"Continent":"K46","ID":27337,"Name":"001 - Mroczna Osada","PlayerID":849035905,"Points":9306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27337","ServerKey":"pl181","X":639,"Y":418},{"Bonus":0,"Continent":"K33","ID":27338,"Name":"Wioska 002","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27338","ServerKey":"pl181","X":383,"Y":391},{"Bonus":0,"Continent":"K33","ID":27339,"Name":"Soltys Waszych Wsi","PlayerID":849027025,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27339","ServerKey":"pl181","X":398,"Y":377},{"Bonus":0,"Continent":"K46","ID":27340,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":6234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27340","ServerKey":"pl181","X":658,"Y":454},{"Bonus":0,"Continent":"K33","ID":27341,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":6824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27341","ServerKey":"pl181","X":376,"Y":395},{"Bonus":0,"Continent":"K64","ID":27342,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":7373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27342","ServerKey":"pl181","X":416,"Y":641},{"Bonus":0,"Continent":"K33","ID":27343,"Name":"003 Arkadia","PlayerID":849059457,"Points":8478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27343","ServerKey":"pl181","X":378,"Y":392},{"Bonus":0,"Continent":"K35","ID":27344,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27344","ServerKey":"pl181","X":582,"Y":359},{"Bonus":0,"Continent":"K64","ID":27345,"Name":"025.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27345","ServerKey":"pl181","X":404,"Y":632},{"Bonus":0,"Continent":"K43","ID":27346,"Name":"112","PlayerID":6258092,"Points":5043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27346","ServerKey":"pl181","X":347,"Y":452},{"Bonus":0,"Continent":"K36","ID":27347,"Name":"BACÓWKA |033|","PlayerID":7394371,"Points":8925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27347","ServerKey":"pl181","X":625,"Y":397},{"Bonus":8,"Continent":"K53","ID":27348,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27348","ServerKey":"pl181","X":347,"Y":543},{"Bonus":0,"Continent":"K56","ID":27349,"Name":"0141","PlayerID":698416970,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27349","ServerKey":"pl181","X":625,"Y":592},{"Bonus":0,"Continent":"K53","ID":27350,"Name":"Mniejsze zƂo 0071","PlayerID":699794765,"Points":4879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27350","ServerKey":"pl181","X":338,"Y":502},{"Bonus":0,"Continent":"K66","ID":27351,"Name":"095","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27351","ServerKey":"pl181","X":622,"Y":602},{"Bonus":0,"Continent":"K35","ID":27352,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27352","ServerKey":"pl181","X":574,"Y":354},{"Bonus":0,"Continent":"K35","ID":27353,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27353","ServerKey":"pl181","X":565,"Y":353},{"Bonus":0,"Continent":"K43","ID":27354,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27354","ServerKey":"pl181","X":338,"Y":477},{"Bonus":0,"Continent":"K33","ID":27355,"Name":"010","PlayerID":849059457,"Points":5602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27355","ServerKey":"pl181","X":377,"Y":391},{"Bonus":0,"Continent":"K53","ID":27356,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27356","ServerKey":"pl181","X":338,"Y":523},{"Bonus":0,"Continent":"K56","ID":27357,"Name":"29k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27357","ServerKey":"pl181","X":647,"Y":563},{"Bonus":8,"Continent":"K34","ID":27358,"Name":"Szulernia","PlayerID":7249451,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27358","ServerKey":"pl181","X":412,"Y":362},{"Bonus":0,"Continent":"K64","ID":27359,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27359","ServerKey":"pl181","X":436,"Y":648},{"Bonus":0,"Continent":"K56","ID":27360,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":5863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27360","ServerKey":"pl181","X":663,"Y":513},{"Bonus":1,"Continent":"K53","ID":27361,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27361","ServerKey":"pl181","X":341,"Y":549},{"Bonus":0,"Continent":"K35","ID":27363,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27363","ServerKey":"pl181","X":507,"Y":337},{"Bonus":0,"Continent":"K46","ID":27365,"Name":"034 barbarzyƄska","PlayerID":9238175,"Points":7993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27365","ServerKey":"pl181","X":642,"Y":425},{"Bonus":0,"Continent":"K46","ID":27366,"Name":"076 terror","PlayerID":9238175,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27366","ServerKey":"pl181","X":640,"Y":422},{"Bonus":0,"Continent":"K34","ID":27367,"Name":"North WyszkĂłw","PlayerID":699796330,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27367","ServerKey":"pl181","X":427,"Y":357},{"Bonus":0,"Continent":"K35","ID":27368,"Name":"Lord Lord Franek .#060","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27368","ServerKey":"pl181","X":521,"Y":335},{"Bonus":0,"Continent":"K46","ID":27370,"Name":"A 003","PlayerID":849027653,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27370","ServerKey":"pl181","X":643,"Y":463},{"Bonus":0,"Continent":"K35","ID":27371,"Name":"Charfa","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27371","ServerKey":"pl181","X":514,"Y":339},{"Bonus":0,"Continent":"K65","ID":27373,"Name":"0504","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27373","ServerKey":"pl181","X":534,"Y":660},{"Bonus":2,"Continent":"K35","ID":27374,"Name":"Lord Lord Franek .#099","PlayerID":698420691,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27374","ServerKey":"pl181","X":513,"Y":335},{"Bonus":0,"Continent":"K56","ID":27375,"Name":"002","PlayerID":699301458,"Points":1612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27375","ServerKey":"pl181","X":643,"Y":572},{"Bonus":0,"Continent":"K36","ID":27376,"Name":"668|371","PlayerID":699580120,"Points":5710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27376","ServerKey":"pl181","X":608,"Y":375},{"Bonus":0,"Continent":"K34","ID":27377,"Name":"0019","PlayerID":699431255,"Points":10046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27377","ServerKey":"pl181","X":412,"Y":358},{"Bonus":0,"Continent":"K63","ID":27378,"Name":"Wioska 004","PlayerID":848912772,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27378","ServerKey":"pl181","X":387,"Y":615},{"Bonus":0,"Continent":"K33","ID":27380,"Name":"LortMort__1__","PlayerID":8967440,"Points":6774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27380","ServerKey":"pl181","X":381,"Y":398},{"Bonus":0,"Continent":"K65","ID":27381,"Name":"*No i po...","PlayerID":699443920,"Points":8392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27381","ServerKey":"pl181","X":574,"Y":646},{"Bonus":0,"Continent":"K43","ID":27382,"Name":"001 Roma","PlayerID":848945529,"Points":7270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27382","ServerKey":"pl181","X":378,"Y":406},{"Bonus":0,"Continent":"K53","ID":27383,"Name":"MaƂomice","PlayerID":849095992,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27383","ServerKey":"pl181","X":372,"Y":599},{"Bonus":0,"Continent":"K43","ID":27384,"Name":"014. Dla flag","PlayerID":698630507,"Points":3745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27384","ServerKey":"pl181","X":350,"Y":441},{"Bonus":0,"Continent":"K63","ID":27385,"Name":"Pobozowisko","PlayerID":699513260,"Points":8410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27385","ServerKey":"pl181","X":385,"Y":618},{"Bonus":0,"Continent":"K43","ID":27386,"Name":"WiedĆșma - Gwiazda","PlayerID":698884287,"Points":6253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27386","ServerKey":"pl181","X":385,"Y":416},{"Bonus":0,"Continent":"K64","ID":27387,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27387","ServerKey":"pl181","X":464,"Y":648},{"Bonus":0,"Continent":"K65","ID":27388,"Name":"0191","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27388","ServerKey":"pl181","X":546,"Y":654},{"Bonus":0,"Continent":"K56","ID":27389,"Name":"006","PlayerID":849095227,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27389","ServerKey":"pl181","X":629,"Y":554},{"Bonus":0,"Continent":"K43","ID":27390,"Name":"4.02","PlayerID":393668,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27390","ServerKey":"pl181","X":346,"Y":443},{"Bonus":0,"Continent":"K35","ID":27391,"Name":"I#008","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27391","ServerKey":"pl181","X":599,"Y":375},{"Bonus":0,"Continent":"K53","ID":27392,"Name":"Macp 1","PlayerID":61791,"Points":9152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27392","ServerKey":"pl181","X":339,"Y":512},{"Bonus":0,"Continent":"K43","ID":27393,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27393","ServerKey":"pl181","X":342,"Y":468},{"Bonus":0,"Continent":"K64","ID":27394,"Name":"08 Wioska","PlayerID":698993706,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27394","ServerKey":"pl181","X":441,"Y":649},{"Bonus":0,"Continent":"K65","ID":27395,"Name":"myself","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27395","ServerKey":"pl181","X":562,"Y":647},{"Bonus":0,"Continent":"K56","ID":27396,"Name":"Nowa 32","PlayerID":698702991,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27396","ServerKey":"pl181","X":650,"Y":569},{"Bonus":3,"Continent":"K35","ID":27397,"Name":"Osada koczownikĂłw","PlayerID":699066118,"Points":6857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27397","ServerKey":"pl181","X":542,"Y":340},{"Bonus":0,"Continent":"K65","ID":27398,"Name":"046","PlayerID":699828685,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27398","ServerKey":"pl181","X":570,"Y":648},{"Bonus":0,"Continent":"K34","ID":27399,"Name":"0025","PlayerID":699431255,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27399","ServerKey":"pl181","X":419,"Y":358},{"Bonus":0,"Continent":"K43","ID":27400,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27400","ServerKey":"pl181","X":336,"Y":488},{"Bonus":0,"Continent":"K56","ID":27401,"Name":"B.054","PlayerID":9188016,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27401","ServerKey":"pl181","X":665,"Y":504},{"Bonus":1,"Continent":"K33","ID":27402,"Name":"cc Zoƛka","PlayerID":3909522,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27402","ServerKey":"pl181","X":399,"Y":370},{"Bonus":0,"Continent":"K35","ID":27403,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27403","ServerKey":"pl181","X":561,"Y":349},{"Bonus":0,"Continent":"K56","ID":27404,"Name":"Wioska barbarzyƄska","PlayerID":8337151,"Points":5765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27404","ServerKey":"pl181","X":631,"Y":596},{"Bonus":0,"Continent":"K36","ID":27405,"Name":"Wioska semunus","PlayerID":699758688,"Points":1316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27405","ServerKey":"pl181","X":626,"Y":392},{"Bonus":0,"Continent":"K43","ID":27406,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27406","ServerKey":"pl181","X":339,"Y":496},{"Bonus":0,"Continent":"K65","ID":27407,"Name":"012 serniczek na ciepƂo","PlayerID":8954402,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27407","ServerKey":"pl181","X":500,"Y":664},{"Bonus":0,"Continent":"K43","ID":27408,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27408","ServerKey":"pl181","X":342,"Y":472},{"Bonus":0,"Continent":"K43","ID":27409,"Name":"Wioska barbarzyƄska Krr","PlayerID":8967440,"Points":3184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27409","ServerKey":"pl181","X":368,"Y":402},{"Bonus":0,"Continent":"K34","ID":27410,"Name":"Szulernia","PlayerID":7249451,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27410","ServerKey":"pl181","X":415,"Y":362},{"Bonus":2,"Continent":"K66","ID":27411,"Name":"Kozaki 2","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27411","ServerKey":"pl181","X":629,"Y":604},{"Bonus":0,"Continent":"K34","ID":27413,"Name":"0044","PlayerID":848913037,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27413","ServerKey":"pl181","X":409,"Y":370},{"Bonus":0,"Continent":"K53","ID":27414,"Name":"Denger 18","PlayerID":698353083,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27414","ServerKey":"pl181","X":366,"Y":587},{"Bonus":0,"Continent":"K46","ID":27415,"Name":"066","PlayerID":7085502,"Points":8742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27415","ServerKey":"pl181","X":665,"Y":484},{"Bonus":0,"Continent":"K33","ID":27416,"Name":"0002","PlayerID":8419570,"Points":10480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27416","ServerKey":"pl181","X":394,"Y":382},{"Bonus":0,"Continent":"K54","ID":27417,"Name":"Sparta_26","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27417","ServerKey":"pl181","X":488,"Y":591},{"Bonus":0,"Continent":"K53","ID":27418,"Name":"17.solidna tama","PlayerID":8665783,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27418","ServerKey":"pl181","X":367,"Y":592},{"Bonus":0,"Continent":"K64","ID":27419,"Name":"Lece bokiem","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27419","ServerKey":"pl181","X":463,"Y":651},{"Bonus":0,"Continent":"K35","ID":27420,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27420","ServerKey":"pl181","X":508,"Y":341},{"Bonus":0,"Continent":"K43","ID":27421,"Name":"--1. Chatka Wielkiego WƂadka","PlayerID":698345556,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27421","ServerKey":"pl181","X":388,"Y":409},{"Bonus":0,"Continent":"K33","ID":27422,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":9058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27422","ServerKey":"pl181","X":376,"Y":393},{"Bonus":0,"Continent":"K34","ID":27423,"Name":"#0063 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27423","ServerKey":"pl181","X":468,"Y":343},{"Bonus":0,"Continent":"K46","ID":27424,"Name":"Jehu_Kingdom_60","PlayerID":8785314,"Points":4777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27424","ServerKey":"pl181","X":649,"Y":431},{"Bonus":0,"Continent":"K46","ID":27425,"Name":"102","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27425","ServerKey":"pl181","X":653,"Y":442},{"Bonus":0,"Continent":"K56","ID":27427,"Name":"Szczebel","PlayerID":8337151,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27427","ServerKey":"pl181","X":631,"Y":597},{"Bonus":0,"Continent":"K33","ID":27428,"Name":"lupi","PlayerID":699842853,"Points":1289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27428","ServerKey":"pl181","X":374,"Y":395},{"Bonus":0,"Continent":"K35","ID":27429,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27429","ServerKey":"pl181","X":569,"Y":353},{"Bonus":0,"Continent":"K65","ID":27430,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27430","ServerKey":"pl181","X":524,"Y":657},{"Bonus":0,"Continent":"K65","ID":27431,"Name":"013 serniczek zagƂady","PlayerID":8954402,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27431","ServerKey":"pl181","X":504,"Y":663},{"Bonus":0,"Continent":"K63","ID":27432,"Name":"001 DĆŒinek","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27432","ServerKey":"pl181","X":391,"Y":618},{"Bonus":0,"Continent":"K64","ID":27433,"Name":"KUZYN","PlayerID":848913998,"Points":3023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27433","ServerKey":"pl181","X":412,"Y":642},{"Bonus":0,"Continent":"K35","ID":27434,"Name":"Krosno 1","PlayerID":7485877,"Points":4815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27434","ServerKey":"pl181","X":533,"Y":341},{"Bonus":0,"Continent":"K35","ID":27435,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27435","ServerKey":"pl181","X":592,"Y":361},{"Bonus":0,"Continent":"K36","ID":27436,"Name":"Gattacka","PlayerID":699298370,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27436","ServerKey":"pl181","X":613,"Y":382},{"Bonus":9,"Continent":"K53","ID":27437,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27437","ServerKey":"pl181","X":346,"Y":551},{"Bonus":0,"Continent":"K63","ID":27438,"Name":"J006","PlayerID":849090130,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27438","ServerKey":"pl181","X":366,"Y":605},{"Bonus":0,"Continent":"K46","ID":27439,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27439","ServerKey":"pl181","X":662,"Y":470},{"Bonus":0,"Continent":"K33","ID":27440,"Name":"A-013","PlayerID":8419570,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27440","ServerKey":"pl181","X":385,"Y":399},{"Bonus":4,"Continent":"K43","ID":27441,"Name":"005 VW AreKing","PlayerID":3108144,"Points":8266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27441","ServerKey":"pl181","X":364,"Y":410},{"Bonus":0,"Continent":"K36","ID":27442,"Name":"Gattacka","PlayerID":699298370,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27442","ServerKey":"pl181","X":619,"Y":385},{"Bonus":0,"Continent":"K53","ID":27443,"Name":"Dajanka 34","PlayerID":849012843,"Points":1553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27443","ServerKey":"pl181","X":352,"Y":576},{"Bonus":0,"Continent":"K36","ID":27444,"Name":"053","PlayerID":849010255,"Points":3089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27444","ServerKey":"pl181","X":609,"Y":380},{"Bonus":0,"Continent":"K36","ID":27445,"Name":"Gattacka","PlayerID":699298370,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27445","ServerKey":"pl181","X":615,"Y":384},{"Bonus":0,"Continent":"K43","ID":27446,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":7063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27446","ServerKey":"pl181","X":342,"Y":449},{"Bonus":0,"Continent":"K65","ID":27447,"Name":"?010 barbarzyƄska","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27447","ServerKey":"pl181","X":539,"Y":659},{"Bonus":0,"Continent":"K65","ID":27448,"Name":"SSJ 007","PlayerID":699054373,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27448","ServerKey":"pl181","X":510,"Y":631},{"Bonus":0,"Continent":"K66","ID":27449,"Name":"0005","PlayerID":6417987,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27449","ServerKey":"pl181","X":612,"Y":614},{"Bonus":0,"Continent":"K64","ID":27450,"Name":"A33","PlayerID":698652014,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27450","ServerKey":"pl181","X":472,"Y":664},{"Bonus":0,"Continent":"K36","ID":27451,"Name":"607|369","PlayerID":699580120,"Points":6544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27451","ServerKey":"pl181","X":605,"Y":379},{"Bonus":0,"Continent":"K46","ID":27452,"Name":"107","PlayerID":849088515,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27452","ServerKey":"pl181","X":655,"Y":440},{"Bonus":0,"Continent":"K46","ID":27453,"Name":"042","PlayerID":7085502,"Points":8748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27453","ServerKey":"pl181","X":660,"Y":484},{"Bonus":0,"Continent":"K63","ID":27454,"Name":"Valhalla B1","PlayerID":849097002,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27454","ServerKey":"pl181","X":378,"Y":605},{"Bonus":0,"Continent":"K34","ID":27455,"Name":"Z 001","PlayerID":6384450,"Points":7396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27455","ServerKey":"pl181","X":487,"Y":338},{"Bonus":0,"Continent":"K35","ID":27456,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27456","ServerKey":"pl181","X":578,"Y":354},{"Bonus":0,"Continent":"K35","ID":27457,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27457","ServerKey":"pl181","X":556,"Y":344},{"Bonus":0,"Continent":"K34","ID":27459,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":5936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27459","ServerKey":"pl181","X":403,"Y":368},{"Bonus":0,"Continent":"K53","ID":27460,"Name":"X009","PlayerID":9264752,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27460","ServerKey":"pl181","X":352,"Y":564},{"Bonus":0,"Continent":"K63","ID":27461,"Name":"012Wybuch gazu","PlayerID":698620694,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27461","ServerKey":"pl181","X":389,"Y":615},{"Bonus":6,"Continent":"K35","ID":27462,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27462","ServerKey":"pl181","X":577,"Y":352},{"Bonus":0,"Continent":"K34","ID":27463,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":9073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27463","ServerKey":"pl181","X":428,"Y":350},{"Bonus":0,"Continent":"K64","ID":27464,"Name":"|001| Chania","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27464","ServerKey":"pl181","X":496,"Y":670},{"Bonus":0,"Continent":"K46","ID":27465,"Name":"012 MONETKI","PlayerID":7588382,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27465","ServerKey":"pl181","X":661,"Y":467},{"Bonus":0,"Continent":"K34","ID":27466,"Name":"086...barba centr","PlayerID":6920960,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27466","ServerKey":"pl181","X":457,"Y":347},{"Bonus":0,"Continent":"K65","ID":27467,"Name":"*Nontendo","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27467","ServerKey":"pl181","X":575,"Y":644},{"Bonus":0,"Continent":"K35","ID":27468,"Name":"ADEN","PlayerID":698588535,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27468","ServerKey":"pl181","X":572,"Y":350},{"Bonus":0,"Continent":"K36","ID":27470,"Name":"666|375","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27470","ServerKey":"pl181","X":609,"Y":375},{"Bonus":0,"Continent":"K36","ID":27471,"Name":"Gattacka","PlayerID":699298370,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27471","ServerKey":"pl181","X":618,"Y":385},{"Bonus":0,"Continent":"K63","ID":27472,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27472","ServerKey":"pl181","X":393,"Y":627},{"Bonus":0,"Continent":"K53","ID":27473,"Name":"001 Gex1992","PlayerID":915113,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27473","ServerKey":"pl181","X":336,"Y":511},{"Bonus":9,"Continent":"K36","ID":27474,"Name":"I#010","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27474","ServerKey":"pl181","X":602,"Y":378},{"Bonus":0,"Continent":"K46","ID":27475,"Name":"029 - Mroczna Osada","PlayerID":849035905,"Points":6441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27475","ServerKey":"pl181","X":642,"Y":417},{"Bonus":0,"Continent":"K56","ID":27476,"Name":"O09 Almada","PlayerID":699272880,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27476","ServerKey":"pl181","X":665,"Y":523},{"Bonus":0,"Continent":"K64","ID":27477,"Name":"|B| Silentshear","PlayerID":698147372,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27477","ServerKey":"pl181","X":487,"Y":665},{"Bonus":0,"Continent":"K56","ID":27478,"Name":"65k$ Grvvyq","PlayerID":699676005,"Points":9275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27478","ServerKey":"pl181","X":650,"Y":562},{"Bonus":0,"Continent":"K46","ID":27479,"Name":"059. Puteoli","PlayerID":849091866,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27479","ServerKey":"pl181","X":657,"Y":466},{"Bonus":0,"Continent":"K33","ID":27480,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":5814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27480","ServerKey":"pl181","X":380,"Y":386},{"Bonus":0,"Continent":"K35","ID":27481,"Name":".:072:. Chillout","PlayerID":848934935,"Points":3937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27481","ServerKey":"pl181","X":506,"Y":395},{"Bonus":0,"Continent":"K63","ID":27482,"Name":"Pobozowisko","PlayerID":699513260,"Points":6791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27482","ServerKey":"pl181","X":384,"Y":614},{"Bonus":1,"Continent":"K65","ID":27483,"Name":"0013","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27483","ServerKey":"pl181","X":536,"Y":662},{"Bonus":0,"Continent":"K66","ID":27484,"Name":"#105#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27484","ServerKey":"pl181","X":633,"Y":601},{"Bonus":0,"Continent":"K53","ID":27485,"Name":"Ludzikowo","PlayerID":849096458,"Points":8643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27485","ServerKey":"pl181","X":338,"Y":534},{"Bonus":0,"Continent":"K34","ID":27487,"Name":".055.","PlayerID":698489071,"Points":7430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27487","ServerKey":"pl181","X":467,"Y":341},{"Bonus":0,"Continent":"K34","ID":27488,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":7255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27488","ServerKey":"pl181","X":401,"Y":371},{"Bonus":0,"Continent":"K63","ID":27489,"Name":"Pobozowisko","PlayerID":699513260,"Points":5822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27489","ServerKey":"pl181","X":389,"Y":618},{"Bonus":0,"Continent":"K43","ID":27490,"Name":"Zygmunciarz 2","PlayerID":8967440,"Points":4108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27490","ServerKey":"pl181","X":380,"Y":425},{"Bonus":0,"Continent":"K53","ID":27491,"Name":"off 100 %","PlayerID":849012521,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27491","ServerKey":"pl181","X":361,"Y":576},{"Bonus":0,"Continent":"K56","ID":27493,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":8341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27493","ServerKey":"pl181","X":664,"Y":508},{"Bonus":0,"Continent":"K35","ID":27495,"Name":"Lord Lord Franek .#155","PlayerID":698420691,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27495","ServerKey":"pl181","X":505,"Y":336},{"Bonus":0,"Continent":"K63","ID":27496,"Name":"31. SkoƂoszĂłw skrzyĆŒowanie","PlayerID":8665783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27496","ServerKey":"pl181","X":373,"Y":606},{"Bonus":0,"Continent":"K35","ID":27497,"Name":"Taki Pan","PlayerID":698739350,"Points":5970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27497","ServerKey":"pl181","X":513,"Y":336},{"Bonus":0,"Continent":"K65","ID":27498,"Name":"006 serniczek z kawą","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27498","ServerKey":"pl181","X":504,"Y":660},{"Bonus":0,"Continent":"K64","ID":27499,"Name":"017","PlayerID":698650301,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27499","ServerKey":"pl181","X":460,"Y":656},{"Bonus":0,"Continent":"K66","ID":27500,"Name":"Grvvyq 117k$","PlayerID":699676005,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27500","ServerKey":"pl181","X":613,"Y":618},{"Bonus":0,"Continent":"K56","ID":27501,"Name":"D 001","PlayerID":8078914,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27501","ServerKey":"pl181","X":663,"Y":504},{"Bonus":0,"Continent":"K53","ID":27502,"Name":"-04-","PlayerID":765188,"Points":10062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27502","ServerKey":"pl181","X":333,"Y":502},{"Bonus":0,"Continent":"K34","ID":27503,"Name":"#0044 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27503","ServerKey":"pl181","X":470,"Y":344},{"Bonus":0,"Continent":"K43","ID":27504,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27504","ServerKey":"pl181","X":344,"Y":448},{"Bonus":0,"Continent":"K53","ID":27505,"Name":"01Wioska","PlayerID":8607734,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27505","ServerKey":"pl181","X":368,"Y":598},{"Bonus":0,"Continent":"K65","ID":27506,"Name":"029 weekend z serniczkiem","PlayerID":8954402,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27506","ServerKey":"pl181","X":506,"Y":664},{"Bonus":0,"Continent":"K56","ID":27507,"Name":"=064= Wioska barbarzyƄska","PlayerID":3781794,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27507","ServerKey":"pl181","X":657,"Y":552},{"Bonus":0,"Continent":"K43","ID":27508,"Name":"Maszlug kolonia XXI","PlayerID":848977649,"Points":3993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27508","ServerKey":"pl181","X":362,"Y":415},{"Bonus":0,"Continent":"K65","ID":27509,"Name":"mys","PlayerID":699828685,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27509","ServerKey":"pl181","X":573,"Y":649},{"Bonus":0,"Continent":"K56","ID":27510,"Name":"=050= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27510","ServerKey":"pl181","X":644,"Y":579},{"Bonus":2,"Continent":"K64","ID":27511,"Name":"022","PlayerID":698650301,"Points":4390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27511","ServerKey":"pl181","X":450,"Y":651},{"Bonus":0,"Continent":"K56","ID":27512,"Name":"B 038","PlayerID":8078914,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27512","ServerKey":"pl181","X":662,"Y":532},{"Bonus":0,"Continent":"K34","ID":27513,"Name":"#0081 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27513","ServerKey":"pl181","X":471,"Y":336},{"Bonus":1,"Continent":"K65","ID":27514,"Name":"0010","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27514","ServerKey":"pl181","X":534,"Y":662},{"Bonus":0,"Continent":"K53","ID":27515,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27515","ServerKey":"pl181","X":345,"Y":545},{"Bonus":0,"Continent":"K66","ID":27516,"Name":"087","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27516","ServerKey":"pl181","X":621,"Y":605},{"Bonus":0,"Continent":"K53","ID":27517,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":3454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27517","ServerKey":"pl181","X":346,"Y":544},{"Bonus":0,"Continent":"K53","ID":27518,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27518","ServerKey":"pl181","X":339,"Y":544},{"Bonus":0,"Continent":"K56","ID":27519,"Name":"Ɓajka","PlayerID":699851345,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27519","ServerKey":"pl181","X":663,"Y":507},{"Bonus":0,"Continent":"K43","ID":27521,"Name":"-08-","PlayerID":765188,"Points":6188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27521","ServerKey":"pl181","X":334,"Y":498},{"Bonus":0,"Continent":"K35","ID":27522,"Name":"Lord Lord Franek .#039","PlayerID":698420691,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27522","ServerKey":"pl181","X":522,"Y":343},{"Bonus":0,"Continent":"K56","ID":27523,"Name":"B 023","PlayerID":8078914,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27523","ServerKey":"pl181","X":663,"Y":534},{"Bonus":0,"Continent":"K36","ID":27524,"Name":"Tylko pp /","PlayerID":7559093,"Points":5667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27524","ServerKey":"pl181","X":620,"Y":392},{"Bonus":0,"Continent":"K56","ID":27525,"Name":"050","PlayerID":849095227,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27525","ServerKey":"pl181","X":662,"Y":542},{"Bonus":0,"Continent":"K43","ID":27526,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27526","ServerKey":"pl181","X":393,"Y":481},{"Bonus":0,"Continent":"K55","ID":27527,"Name":"[160]","PlayerID":8000875,"Points":9024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27527","ServerKey":"pl181","X":566,"Y":555},{"Bonus":0,"Continent":"K65","ID":27528,"Name":"Urged nal","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27528","ServerKey":"pl181","X":510,"Y":661},{"Bonus":0,"Continent":"K34","ID":27529,"Name":"#0077 barbarzyƄska","PlayerID":1238300,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27529","ServerKey":"pl181","X":473,"Y":335},{"Bonus":0,"Continent":"K35","ID":27530,"Name":"xyz #004 TerrorMachine","PlayerID":7555180,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27530","ServerKey":"pl181","X":580,"Y":361},{"Bonus":3,"Continent":"K64","ID":27531,"Name":"008.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27531","ServerKey":"pl181","X":400,"Y":630},{"Bonus":0,"Continent":"K53","ID":27532,"Name":"Wioska barbarzyƄska","PlayerID":9280477,"Points":1038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27532","ServerKey":"pl181","X":339,"Y":515},{"Bonus":0,"Continent":"K63","ID":27533,"Name":"Pobozowisko","PlayerID":699513260,"Points":10688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27533","ServerKey":"pl181","X":378,"Y":613},{"Bonus":0,"Continent":"K35","ID":27535,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27535","ServerKey":"pl181","X":503,"Y":369},{"Bonus":0,"Continent":"K43","ID":27536,"Name":"5AA","PlayerID":7765098,"Points":8594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27536","ServerKey":"pl181","X":355,"Y":432},{"Bonus":0,"Continent":"K45","ID":27537,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27537","ServerKey":"pl181","X":506,"Y":475},{"Bonus":0,"Continent":"K56","ID":27538,"Name":"B 047","PlayerID":8078914,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27538","ServerKey":"pl181","X":657,"Y":530},{"Bonus":0,"Continent":"K34","ID":27539,"Name":"North Barba 044","PlayerID":699796330,"Points":9396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27539","ServerKey":"pl181","X":424,"Y":356},{"Bonus":0,"Continent":"K46","ID":27541,"Name":"048","PlayerID":7085502,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27541","ServerKey":"pl181","X":664,"Y":496},{"Bonus":0,"Continent":"K64","ID":27542,"Name":"KUZYN","PlayerID":848913998,"Points":3230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27542","ServerKey":"pl181","X":417,"Y":641},{"Bonus":0,"Continent":"K43","ID":27543,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":2267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27543","ServerKey":"pl181","X":344,"Y":445},{"Bonus":0,"Continent":"K64","ID":27544,"Name":"05 Wioska","PlayerID":698993706,"Points":7455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27544","ServerKey":"pl181","X":442,"Y":653},{"Bonus":7,"Continent":"K35","ID":27545,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":6524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27545","ServerKey":"pl181","X":591,"Y":362},{"Bonus":0,"Continent":"K34","ID":27546,"Name":"Bagdad","PlayerID":8847546,"Points":10368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27546","ServerKey":"pl181","X":495,"Y":339},{"Bonus":0,"Continent":"K34","ID":27547,"Name":"Szulernia","PlayerID":7249451,"Points":10169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27547","ServerKey":"pl181","X":409,"Y":363},{"Bonus":0,"Continent":"K64","ID":27548,"Name":"Darmowe przeprowadzki","PlayerID":698807570,"Points":11297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27548","ServerKey":"pl181","X":476,"Y":662},{"Bonus":0,"Continent":"K65","ID":27549,"Name":"sas","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27549","ServerKey":"pl181","X":557,"Y":622},{"Bonus":0,"Continent":"K34","ID":27550,"Name":"Szulernia","PlayerID":7249451,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27550","ServerKey":"pl181","X":411,"Y":361},{"Bonus":4,"Continent":"K53","ID":27551,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27551","ServerKey":"pl181","X":357,"Y":583},{"Bonus":0,"Continent":"K63","ID":27552,"Name":"003.","PlayerID":2665207,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27552","ServerKey":"pl181","X":397,"Y":626},{"Bonus":0,"Continent":"K63","ID":27553,"Name":"0463","PlayerID":698659980,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27553","ServerKey":"pl181","X":380,"Y":605},{"Bonus":7,"Continent":"K56","ID":27554,"Name":"038","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27554","ServerKey":"pl181","X":649,"Y":561},{"Bonus":0,"Continent":"K35","ID":27555,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27555","ServerKey":"pl181","X":507,"Y":340},{"Bonus":0,"Continent":"K34","ID":27556,"Name":"Szlachcic","PlayerID":698160606,"Points":10253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27556","ServerKey":"pl181","X":406,"Y":368},{"Bonus":0,"Continent":"K36","ID":27557,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27557","ServerKey":"pl181","X":617,"Y":388},{"Bonus":0,"Continent":"K46","ID":27558,"Name":"068 xyz013","PlayerID":9238175,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27558","ServerKey":"pl181","X":644,"Y":427},{"Bonus":4,"Continent":"K63","ID":27559,"Name":"13 - Osada","PlayerID":8607734,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27559","ServerKey":"pl181","X":376,"Y":610},{"Bonus":2,"Continent":"K35","ID":27561,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27561","ServerKey":"pl181","X":557,"Y":343},{"Bonus":0,"Continent":"K36","ID":27562,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27562","ServerKey":"pl181","X":615,"Y":386},{"Bonus":0,"Continent":"K56","ID":27563,"Name":"[170]","PlayerID":8000875,"Points":7340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27563","ServerKey":"pl181","X":641,"Y":576},{"Bonus":0,"Continent":"K66","ID":27564,"Name":"Ronin P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27564","ServerKey":"pl181","X":611,"Y":620},{"Bonus":0,"Continent":"K56","ID":27565,"Name":"083","PlayerID":699351301,"Points":5460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27565","ServerKey":"pl181","X":661,"Y":525},{"Bonus":0,"Continent":"K53","ID":27566,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27566","ServerKey":"pl181","X":379,"Y":511},{"Bonus":0,"Continent":"K34","ID":27567,"Name":"North Kutno","PlayerID":699796330,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27567","ServerKey":"pl181","X":420,"Y":356},{"Bonus":0,"Continent":"K64","ID":27568,"Name":"024.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27568","ServerKey":"pl181","X":401,"Y":633},{"Bonus":0,"Continent":"K55","ID":27569,"Name":"Erebor 1","PlayerID":699383121,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27569","ServerKey":"pl181","X":501,"Y":592},{"Bonus":0,"Continent":"K34","ID":27570,"Name":"012...PƁD_O","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27570","ServerKey":"pl181","X":455,"Y":358},{"Bonus":0,"Continent":"K33","ID":27571,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":3397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27571","ServerKey":"pl181","X":379,"Y":386},{"Bonus":0,"Continent":"K46","ID":27572,"Name":"026","PlayerID":7085502,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27572","ServerKey":"pl181","X":664,"Y":499},{"Bonus":0,"Continent":"K64","ID":27573,"Name":"004Wioska","PlayerID":698807570,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27573","ServerKey":"pl181","X":463,"Y":656},{"Bonus":7,"Continent":"K34","ID":27574,"Name":"#0072 barbarzyƄska","PlayerID":1238300,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27574","ServerKey":"pl181","X":469,"Y":337},{"Bonus":0,"Continent":"K43","ID":27575,"Name":"M181_025","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27575","ServerKey":"pl181","X":359,"Y":423},{"Bonus":0,"Continent":"K65","ID":27576,"Name":"045.xxx","PlayerID":849004274,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27576","ServerKey":"pl181","X":512,"Y":661},{"Bonus":0,"Continent":"K44","ID":27577,"Name":"024 Boston","PlayerID":9291984,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27577","ServerKey":"pl181","X":430,"Y":434},{"Bonus":0,"Continent":"K35","ID":27578,"Name":"Lord Lord Franek .#116","PlayerID":698420691,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27578","ServerKey":"pl181","X":519,"Y":340},{"Bonus":0,"Continent":"K33","ID":27579,"Name":"0008 GdaƄsk","PlayerID":849096882,"Points":6723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27579","ServerKey":"pl181","X":377,"Y":381},{"Bonus":0,"Continent":"K65","ID":27580,"Name":"0505","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27580","ServerKey":"pl181","X":533,"Y":657},{"Bonus":0,"Continent":"K36","ID":27582,"Name":"0000","PlayerID":848924219,"Points":2772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27582","ServerKey":"pl181","X":618,"Y":382},{"Bonus":0,"Continent":"K56","ID":27583,"Name":"Grvvyq 102k$","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27583","ServerKey":"pl181","X":653,"Y":558},{"Bonus":5,"Continent":"K35","ID":27584,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27584","ServerKey":"pl181","X":502,"Y":338},{"Bonus":0,"Continent":"K54","ID":27585,"Name":"Pobozowisko","PlayerID":699513260,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27585","ServerKey":"pl181","X":409,"Y":589},{"Bonus":0,"Continent":"K35","ID":27586,"Name":"xyz #012 TerrorMachine","PlayerID":7555180,"Points":6806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27586","ServerKey":"pl181","X":583,"Y":364},{"Bonus":0,"Continent":"K35","ID":27587,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27587","ServerKey":"pl181","X":581,"Y":359},{"Bonus":0,"Continent":"K34","ID":27588,"Name":"#0034 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27588","ServerKey":"pl181","X":464,"Y":343},{"Bonus":0,"Continent":"K53","ID":27589,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27589","ServerKey":"pl181","X":346,"Y":559},{"Bonus":0,"Continent":"K64","ID":27590,"Name":"wErza","PlayerID":699849210,"Points":5482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27590","ServerKey":"pl181","X":449,"Y":654},{"Bonus":6,"Continent":"K34","ID":27591,"Name":"026... ZachĂłd","PlayerID":6920960,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27591","ServerKey":"pl181","X":434,"Y":349},{"Bonus":0,"Continent":"K64","ID":27592,"Name":"|A| Timberfrost","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27592","ServerKey":"pl181","X":478,"Y":649},{"Bonus":0,"Continent":"K43","ID":27593,"Name":"012 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":4174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27593","ServerKey":"pl181","X":365,"Y":412},{"Bonus":0,"Continent":"K34","ID":27594,"Name":"cc 01 Wioska barbarzyƄska","PlayerID":3909522,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27594","ServerKey":"pl181","X":402,"Y":370},{"Bonus":0,"Continent":"K66","ID":27595,"Name":"0088","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27595","ServerKey":"pl181","X":606,"Y":628},{"Bonus":0,"Continent":"K66","ID":27596,"Name":"*056","PlayerID":699567608,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27596","ServerKey":"pl181","X":602,"Y":625},{"Bonus":0,"Continent":"K56","ID":27597,"Name":"O08 Sintra","PlayerID":699272880,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27597","ServerKey":"pl181","X":665,"Y":522},{"Bonus":0,"Continent":"K65","ID":27598,"Name":"0506","PlayerID":698659980,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27598","ServerKey":"pl181","X":532,"Y":661},{"Bonus":0,"Continent":"K46","ID":27599,"Name":"010 barbarzyƄska","PlayerID":9238175,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27599","ServerKey":"pl181","X":642,"Y":423},{"Bonus":0,"Continent":"K43","ID":27600,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27600","ServerKey":"pl181","X":348,"Y":444},{"Bonus":0,"Continent":"K34","ID":27601,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27601","ServerKey":"pl181","X":403,"Y":371},{"Bonus":0,"Continent":"K34","ID":27602,"Name":"#0074 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27602","ServerKey":"pl181","X":472,"Y":335},{"Bonus":0,"Continent":"K64","ID":27604,"Name":"Akra","PlayerID":699736927,"Points":9067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27604","ServerKey":"pl181","X":418,"Y":643},{"Bonus":0,"Continent":"K35","ID":27605,"Name":"002","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27605","ServerKey":"pl181","X":599,"Y":366},{"Bonus":0,"Continent":"K66","ID":27606,"Name":"BETON 024","PlayerID":699277039,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27606","ServerKey":"pl181","X":623,"Y":605},{"Bonus":0,"Continent":"K35","ID":27607,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27607","ServerKey":"pl181","X":564,"Y":351},{"Bonus":0,"Continent":"K33","ID":27608,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":1848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27608","ServerKey":"pl181","X":385,"Y":382},{"Bonus":0,"Continent":"K46","ID":27609,"Name":"030","PlayerID":7085502,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27609","ServerKey":"pl181","X":663,"Y":484},{"Bonus":0,"Continent":"K35","ID":27610,"Name":"Krosno 3","PlayerID":7485877,"Points":5807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27610","ServerKey":"pl181","X":537,"Y":338},{"Bonus":0,"Continent":"K65","ID":27611,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27611","ServerKey":"pl181","X":522,"Y":663},{"Bonus":0,"Continent":"K35","ID":27612,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27612","ServerKey":"pl181","X":558,"Y":347},{"Bonus":0,"Continent":"K65","ID":27613,"Name":"ObrzeĆŒa 09","PlayerID":848915531,"Points":5983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27613","ServerKey":"pl181","X":552,"Y":655},{"Bonus":0,"Continent":"K43","ID":27614,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27614","ServerKey":"pl181","X":335,"Y":497},{"Bonus":0,"Continent":"K43","ID":27615,"Name":"A0301","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27615","ServerKey":"pl181","X":340,"Y":486},{"Bonus":0,"Continent":"K65","ID":27616,"Name":"0536","PlayerID":698659980,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27616","ServerKey":"pl181","X":562,"Y":659},{"Bonus":0,"Continent":"K34","ID":27617,"Name":"Bagdad","PlayerID":8847546,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27617","ServerKey":"pl181","X":496,"Y":334},{"Bonus":0,"Continent":"K53","ID":27618,"Name":"32. Na WaƂbrzych","PlayerID":8665783,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27618","ServerKey":"pl181","X":373,"Y":598},{"Bonus":0,"Continent":"K56","ID":27619,"Name":"D 002","PlayerID":8078914,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27619","ServerKey":"pl181","X":660,"Y":505},{"Bonus":0,"Continent":"K46","ID":27620,"Name":"Jaaa","PlayerID":698635863,"Points":10555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27620","ServerKey":"pl181","X":665,"Y":486},{"Bonus":0,"Continent":"K43","ID":27621,"Name":"Rabsztyn","PlayerID":848945529,"Points":8906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27621","ServerKey":"pl181","X":378,"Y":407},{"Bonus":0,"Continent":"K56","ID":27622,"Name":"O15 Alftanes","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27622","ServerKey":"pl181","X":664,"Y":517},{"Bonus":0,"Continent":"K46","ID":27623,"Name":"A007","PlayerID":699722599,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27623","ServerKey":"pl181","X":617,"Y":453},{"Bonus":0,"Continent":"K35","ID":27624,"Name":"Lord Lord Franek .#061","PlayerID":698420691,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27624","ServerKey":"pl181","X":535,"Y":342},{"Bonus":0,"Continent":"K64","ID":27625,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27625","ServerKey":"pl181","X":412,"Y":635},{"Bonus":0,"Continent":"K43","ID":27626,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27626","ServerKey":"pl181","X":369,"Y":407},{"Bonus":0,"Continent":"K34","ID":27627,"Name":"Szulernia","PlayerID":7249451,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27627","ServerKey":"pl181","X":409,"Y":365},{"Bonus":0,"Continent":"K56","ID":27628,"Name":"O26 Songdo","PlayerID":699272880,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27628","ServerKey":"pl181","X":664,"Y":524},{"Bonus":0,"Continent":"K65","ID":27629,"Name":"*052","PlayerID":699567608,"Points":9728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27629","ServerKey":"pl181","X":593,"Y":631},{"Bonus":0,"Continent":"K65","ID":27630,"Name":"0507","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27630","ServerKey":"pl181","X":519,"Y":660},{"Bonus":0,"Continent":"K46","ID":27631,"Name":"010 MONETKI","PlayerID":7588382,"Points":8757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27631","ServerKey":"pl181","X":656,"Y":466},{"Bonus":0,"Continent":"K63","ID":27633,"Name":"Pobozowisko","PlayerID":699513260,"Points":7332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27633","ServerKey":"pl181","X":383,"Y":615},{"Bonus":0,"Continent":"K53","ID":27634,"Name":"off 100 %","PlayerID":849012521,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27634","ServerKey":"pl181","X":352,"Y":566},{"Bonus":0,"Continent":"K34","ID":27635,"Name":"102...tomecz","PlayerID":6920960,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27635","ServerKey":"pl181","X":483,"Y":335},{"Bonus":0,"Continent":"K64","ID":27636,"Name":"wJuvia","PlayerID":699849210,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27636","ServerKey":"pl181","X":447,"Y":656},{"Bonus":0,"Continent":"K53","ID":27637,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27637","ServerKey":"pl181","X":348,"Y":564},{"Bonus":0,"Continent":"K36","ID":27638,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27638","ServerKey":"pl181","X":617,"Y":386},{"Bonus":0,"Continent":"K34","ID":27639,"Name":"K34 - [132] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27639","ServerKey":"pl181","X":437,"Y":353},{"Bonus":0,"Continent":"K34","ID":27640,"Name":"North Barba 047","PlayerID":699796330,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27640","ServerKey":"pl181","X":425,"Y":357},{"Bonus":0,"Continent":"K34","ID":27641,"Name":"111","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27641","ServerKey":"pl181","X":473,"Y":352},{"Bonus":0,"Continent":"K43","ID":27642,"Name":"Selawi","PlayerID":6258092,"Points":8873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27642","ServerKey":"pl181","X":344,"Y":456},{"Bonus":0,"Continent":"K56","ID":27643,"Name":"B 030","PlayerID":8078914,"Points":9509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27643","ServerKey":"pl181","X":660,"Y":535},{"Bonus":0,"Continent":"K34","ID":27644,"Name":"0023","PlayerID":699431255,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27644","ServerKey":"pl181","X":417,"Y":355},{"Bonus":0,"Continent":"K43","ID":27645,"Name":"utopia","PlayerID":8967440,"Points":8506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27645","ServerKey":"pl181","X":365,"Y":415},{"Bonus":0,"Continent":"K53","ID":27646,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27646","ServerKey":"pl181","X":362,"Y":581},{"Bonus":0,"Continent":"K56","ID":27647,"Name":"059","PlayerID":698999105,"Points":8620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27647","ServerKey":"pl181","X":665,"Y":518},{"Bonus":0,"Continent":"K46","ID":27648,"Name":"025 - Mroczna Osada","PlayerID":849035905,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27648","ServerKey":"pl181","X":636,"Y":410},{"Bonus":5,"Continent":"K66","ID":27649,"Name":"Sexxy P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27649","ServerKey":"pl181","X":609,"Y":617},{"Bonus":0,"Continent":"K56","ID":27650,"Name":"Nowa 34","PlayerID":698702991,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27650","ServerKey":"pl181","X":646,"Y":572},{"Bonus":0,"Continent":"K53","ID":27651,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27651","ServerKey":"pl181","X":358,"Y":583},{"Bonus":0,"Continent":"K64","ID":27652,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27652","ServerKey":"pl181","X":412,"Y":634},{"Bonus":0,"Continent":"K64","ID":27653,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27653","ServerKey":"pl181","X":459,"Y":662},{"Bonus":0,"Continent":"K56","ID":27654,"Name":"=041= Wioska barbarzyƄska","PlayerID":3781794,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27654","ServerKey":"pl181","X":650,"Y":555},{"Bonus":0,"Continent":"K34","ID":27655,"Name":"North Brzeƛć Kujawski","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27655","ServerKey":"pl181","X":418,"Y":355},{"Bonus":0,"Continent":"K46","ID":27656,"Name":"24. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27656","ServerKey":"pl181","X":634,"Y":405},{"Bonus":0,"Continent":"K63","ID":27657,"Name":"J004.","PlayerID":849090130,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27657","ServerKey":"pl181","X":367,"Y":601},{"Bonus":0,"Continent":"K66","ID":27658,"Name":"0012","PlayerID":6417987,"Points":7756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27658","ServerKey":"pl181","X":612,"Y":616},{"Bonus":0,"Continent":"K33","ID":27659,"Name":"Zapora","PlayerID":606706,"Points":2587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27659","ServerKey":"pl181","X":391,"Y":380},{"Bonus":0,"Continent":"K34","ID":27660,"Name":"cc pol004","PlayerID":3909522,"Points":6197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27660","ServerKey":"pl181","X":400,"Y":373},{"Bonus":0,"Continent":"K65","ID":27661,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27661","ServerKey":"pl181","X":570,"Y":646},{"Bonus":0,"Continent":"K33","ID":27662,"Name":"0001 KrakĂłw","PlayerID":699402816,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27662","ServerKey":"pl181","X":391,"Y":378},{"Bonus":0,"Continent":"K33","ID":27663,"Name":"CC Choroszcz","PlayerID":3909522,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27663","ServerKey":"pl181","X":395,"Y":372},{"Bonus":0,"Continent":"K53","ID":27664,"Name":"J06","PlayerID":849090130,"Points":3047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27664","ServerKey":"pl181","X":365,"Y":596},{"Bonus":0,"Continent":"K43","ID":27665,"Name":"*244*","PlayerID":699273451,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27665","ServerKey":"pl181","X":351,"Y":437},{"Bonus":0,"Continent":"K43","ID":27666,"Name":"Wioska Tomek85","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27666","ServerKey":"pl181","X":388,"Y":496},{"Bonus":0,"Continent":"K66","ID":27667,"Name":"Sir develes","PlayerID":698786826,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27667","ServerKey":"pl181","X":622,"Y":608},{"Bonus":0,"Continent":"K46","ID":27668,"Name":"POMIDOR","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27668","ServerKey":"pl181","X":662,"Y":471},{"Bonus":0,"Continent":"K53","ID":27669,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":8419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27669","ServerKey":"pl181","X":338,"Y":521},{"Bonus":0,"Continent":"K64","ID":27670,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27670","ServerKey":"pl181","X":425,"Y":655},{"Bonus":0,"Continent":"K34","ID":27671,"Name":"#0089 barbarzyƄska","PlayerID":1238300,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27671","ServerKey":"pl181","X":471,"Y":343},{"Bonus":0,"Continent":"K64","ID":27672,"Name":"001 Teneesse","PlayerID":698585370,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27672","ServerKey":"pl181","X":476,"Y":655},{"Bonus":0,"Continent":"K53","ID":27673,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27673","ServerKey":"pl181","X":349,"Y":560},{"Bonus":0,"Continent":"K46","ID":27674,"Name":"048. Hispalis","PlayerID":849091866,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27674","ServerKey":"pl181","X":630,"Y":455},{"Bonus":0,"Continent":"K34","ID":27675,"Name":"Szlachcic","PlayerID":698160606,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27675","ServerKey":"pl181","X":403,"Y":373},{"Bonus":0,"Continent":"K65","ID":27676,"Name":"027. Propaganda","PlayerID":848928624,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27676","ServerKey":"pl181","X":512,"Y":666},{"Bonus":0,"Continent":"K36","ID":27677,"Name":"Minneapolis, Minnesota","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27677","ServerKey":"pl181","X":602,"Y":371},{"Bonus":0,"Continent":"K34","ID":27678,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":7534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27678","ServerKey":"pl181","X":402,"Y":365},{"Bonus":6,"Continent":"K65","ID":27679,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27679","ServerKey":"pl181","X":586,"Y":638},{"Bonus":0,"Continent":"K66","ID":27680,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27680","ServerKey":"pl181","X":616,"Y":616},{"Bonus":0,"Continent":"K56","ID":27681,"Name":"Nowa 29","PlayerID":698702991,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27681","ServerKey":"pl181","X":644,"Y":569},{"Bonus":0,"Continent":"K35","ID":27682,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":5401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27682","ServerKey":"pl181","X":540,"Y":338},{"Bonus":0,"Continent":"K34","ID":27683,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27683","ServerKey":"pl181","X":409,"Y":364},{"Bonus":0,"Continent":"K63","ID":27684,"Name":"J007.","PlayerID":849090130,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27684","ServerKey":"pl181","X":369,"Y":601},{"Bonus":0,"Continent":"K64","ID":27685,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27685","ServerKey":"pl181","X":442,"Y":657},{"Bonus":0,"Continent":"K65","ID":27686,"Name":"0547","PlayerID":698659980,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27686","ServerKey":"pl181","X":528,"Y":663},{"Bonus":0,"Continent":"K44","ID":27687,"Name":"Szlachcic","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27687","ServerKey":"pl181","X":456,"Y":416},{"Bonus":0,"Continent":"K46","ID":27688,"Name":"BACÓWKA |023|","PlayerID":7394371,"Points":7047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27688","ServerKey":"pl181","X":640,"Y":410},{"Bonus":0,"Continent":"K36","ID":27689,"Name":"02 tonieostatnieslowo","PlayerID":699861004,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27689","ServerKey":"pl181","X":606,"Y":371},{"Bonus":0,"Continent":"K46","ID":27690,"Name":"BACÓWKA |037|","PlayerID":7394371,"Points":5667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27690","ServerKey":"pl181","X":633,"Y":403},{"Bonus":0,"Continent":"K46","ID":27692,"Name":"020","PlayerID":7085502,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27692","ServerKey":"pl181","X":661,"Y":490},{"Bonus":0,"Continent":"K63","ID":27693,"Name":"015.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27693","ServerKey":"pl181","X":396,"Y":624},{"Bonus":0,"Continent":"K43","ID":27695,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27695","ServerKey":"pl181","X":336,"Y":493},{"Bonus":0,"Continent":"K36","ID":27696,"Name":"609|372","PlayerID":699580120,"Points":5627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27696","ServerKey":"pl181","X":607,"Y":374},{"Bonus":7,"Continent":"K53","ID":27697,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":3549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27697","ServerKey":"pl181","X":340,"Y":543},{"Bonus":0,"Continent":"K64","ID":27698,"Name":"Ave Why!","PlayerID":698585370,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27698","ServerKey":"pl181","X":456,"Y":638},{"Bonus":0,"Continent":"K65","ID":27699,"Name":"011","PlayerID":849097799,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27699","ServerKey":"pl181","X":595,"Y":635},{"Bonus":1,"Continent":"K65","ID":27700,"Name":"0015","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27700","ServerKey":"pl181","X":556,"Y":656},{"Bonus":0,"Continent":"K33","ID":27701,"Name":"008","PlayerID":849059457,"Points":4490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27701","ServerKey":"pl181","X":380,"Y":392},{"Bonus":0,"Continent":"K43","ID":27702,"Name":"Stawiamy pƂotek","PlayerID":6258092,"Points":2083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27702","ServerKey":"pl181","X":347,"Y":451},{"Bonus":0,"Continent":"K53","ID":27703,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27703","ServerKey":"pl181","X":348,"Y":554},{"Bonus":0,"Continent":"K43","ID":27704,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27704","ServerKey":"pl181","X":337,"Y":498},{"Bonus":0,"Continent":"K66","ID":27705,"Name":"0089","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27705","ServerKey":"pl181","X":614,"Y":623},{"Bonus":0,"Continent":"K33","ID":27706,"Name":"cc Tworki","PlayerID":3909522,"Points":10027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27706","ServerKey":"pl181","X":396,"Y":371},{"Bonus":0,"Continent":"K35","ID":27707,"Name":"117 Wioska barbarzyƄska","PlayerID":699491076,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27707","ServerKey":"pl181","X":548,"Y":344},{"Bonus":0,"Continent":"K63","ID":27708,"Name":"Pobozowisko","PlayerID":699513260,"Points":7998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27708","ServerKey":"pl181","X":377,"Y":611},{"Bonus":0,"Continent":"K46","ID":27709,"Name":"012","PlayerID":7085502,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27709","ServerKey":"pl181","X":662,"Y":492},{"Bonus":0,"Continent":"K65","ID":27710,"Name":"*Neptek","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27710","ServerKey":"pl181","X":580,"Y":646},{"Bonus":0,"Continent":"K43","ID":27711,"Name":"*095*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27711","ServerKey":"pl181","X":359,"Y":413},{"Bonus":9,"Continent":"K56","ID":27712,"Name":"084","PlayerID":849095227,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27712","ServerKey":"pl181","X":654,"Y":556},{"Bonus":0,"Continent":"K35","ID":27713,"Name":"Banan#1","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27713","ServerKey":"pl181","X":593,"Y":367},{"Bonus":0,"Continent":"K53","ID":27714,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27714","ServerKey":"pl181","X":359,"Y":576},{"Bonus":0,"Continent":"K56","ID":27715,"Name":"049","PlayerID":698999105,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27715","ServerKey":"pl181","X":657,"Y":553},{"Bonus":0,"Continent":"K33","ID":27716,"Name":"Wioska 001","PlayerID":8419570,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27716","ServerKey":"pl181","X":384,"Y":388},{"Bonus":0,"Continent":"K64","ID":27717,"Name":"014.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27717","ServerKey":"pl181","X":403,"Y":628},{"Bonus":0,"Continent":"K46","ID":27718,"Name":"023 pawelk95","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27718","ServerKey":"pl181","X":661,"Y":487},{"Bonus":0,"Continent":"K46","ID":27719,"Name":"26. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27719","ServerKey":"pl181","X":635,"Y":405},{"Bonus":0,"Continent":"K64","ID":27720,"Name":"A001","PlayerID":699383279,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27720","ServerKey":"pl181","X":472,"Y":639},{"Bonus":0,"Continent":"K53","ID":27721,"Name":"Kuku na Muniu","PlayerID":849096458,"Points":8652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27721","ServerKey":"pl181","X":344,"Y":536},{"Bonus":0,"Continent":"K53","ID":27722,"Name":"Chekku - meito","PlayerID":9280477,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27722","ServerKey":"pl181","X":336,"Y":525},{"Bonus":0,"Continent":"K64","ID":27723,"Name":"18 Belegost","PlayerID":699736927,"Points":6871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27723","ServerKey":"pl181","X":458,"Y":649},{"Bonus":0,"Continent":"K65","ID":27724,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27724","ServerKey":"pl181","X":524,"Y":658},{"Bonus":0,"Continent":"K43","ID":27725,"Name":"-007-","PlayerID":393668,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27725","ServerKey":"pl181","X":344,"Y":446},{"Bonus":0,"Continent":"K35","ID":27726,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27726","ServerKey":"pl181","X":566,"Y":350},{"Bonus":0,"Continent":"K53","ID":27727,"Name":"076 komornicy","PlayerID":699510259,"Points":2622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27727","ServerKey":"pl181","X":341,"Y":544},{"Bonus":0,"Continent":"K64","ID":27729,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27729","ServerKey":"pl181","X":424,"Y":644},{"Bonus":0,"Continent":"K66","ID":27730,"Name":"Kozaki 3","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27730","ServerKey":"pl181","X":616,"Y":609},{"Bonus":0,"Continent":"K35","ID":27731,"Name":"006 Speyside","PlayerID":699072129,"Points":6081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27731","ServerKey":"pl181","X":554,"Y":345},{"Bonus":0,"Continent":"K56","ID":27732,"Name":"=051= Wioska barbarzyƄska","PlayerID":3781794,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27732","ServerKey":"pl181","X":642,"Y":575},{"Bonus":0,"Continent":"K36","ID":27733,"Name":"--keystone","PlayerID":8096537,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27733","ServerKey":"pl181","X":623,"Y":390},{"Bonus":0,"Continent":"K56","ID":27734,"Name":"040","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27734","ServerKey":"pl181","X":655,"Y":543},{"Bonus":0,"Continent":"K34","ID":27735,"Name":"135","PlayerID":7271812,"Points":6810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27735","ServerKey":"pl181","X":475,"Y":335},{"Bonus":0,"Continent":"K46","ID":27737,"Name":"BACÓWKA |030|","PlayerID":7394371,"Points":5878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27737","ServerKey":"pl181","X":631,"Y":405},{"Bonus":0,"Continent":"K46","ID":27738,"Name":"I009","PlayerID":699722599,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27738","ServerKey":"pl181","X":664,"Y":450},{"Bonus":0,"Continent":"K66","ID":27739,"Name":"0086","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27739","ServerKey":"pl181","X":609,"Y":625},{"Bonus":0,"Continent":"K66","ID":27740,"Name":"088","PlayerID":698786826,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27740","ServerKey":"pl181","X":622,"Y":603},{"Bonus":0,"Continent":"K64","ID":27741,"Name":"07 Wioska","PlayerID":698993706,"Points":6548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27741","ServerKey":"pl181","X":440,"Y":651},{"Bonus":0,"Continent":"K64","ID":27742,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27742","ServerKey":"pl181","X":467,"Y":657},{"Bonus":0,"Continent":"K56","ID":27743,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27743","ServerKey":"pl181","X":664,"Y":526},{"Bonus":0,"Continent":"K53","ID":27746,"Name":"Dodowo mniejsze","PlayerID":849096458,"Points":8998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27746","ServerKey":"pl181","X":339,"Y":533},{"Bonus":0,"Continent":"K66","ID":27747,"Name":"0030","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27747","ServerKey":"pl181","X":612,"Y":625},{"Bonus":0,"Continent":"K56","ID":27748,"Name":"003","PlayerID":699301458,"Points":1563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27748","ServerKey":"pl181","X":650,"Y":565},{"Bonus":0,"Continent":"K53","ID":27749,"Name":"005 Jeszcze ĆŒyje","PlayerID":915113,"Points":5716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27749","ServerKey":"pl181","X":337,"Y":508},{"Bonus":0,"Continent":"K65","ID":27750,"Name":"007 serniczek z czekoladą","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27750","ServerKey":"pl181","X":504,"Y":662},{"Bonus":0,"Continent":"K56","ID":27751,"Name":"072","PlayerID":698786826,"Points":8892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27751","ServerKey":"pl181","X":627,"Y":598},{"Bonus":0,"Continent":"K64","ID":27752,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27752","ServerKey":"pl181","X":457,"Y":655},{"Bonus":0,"Continent":"K65","ID":27753,"Name":"0195","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27753","ServerKey":"pl181","X":546,"Y":656},{"Bonus":0,"Continent":"K56","ID":27754,"Name":"=048= Wioska barbarzyƄska","PlayerID":3781794,"Points":10526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27754","ServerKey":"pl181","X":657,"Y":550},{"Bonus":0,"Continent":"K66","ID":27755,"Name":"## Nieznana ##","PlayerID":699778867,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27755","ServerKey":"pl181","X":630,"Y":602},{"Bonus":0,"Continent":"K35","ID":27756,"Name":"Krosno 6","PlayerID":7485877,"Points":5263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27756","ServerKey":"pl181","X":538,"Y":341},{"Bonus":0,"Continent":"K35","ID":27757,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27757","ServerKey":"pl181","X":508,"Y":338},{"Bonus":0,"Continent":"K53","ID":27758,"Name":"006.Lille","PlayerID":1830149,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27758","ServerKey":"pl181","X":336,"Y":507},{"Bonus":0,"Continent":"K63","ID":27759,"Name":"Pobozowisko","PlayerID":699513260,"Points":9474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27759","ServerKey":"pl181","X":381,"Y":616},{"Bonus":0,"Continent":"K56","ID":27760,"Name":"011.","PlayerID":6520732,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27760","ServerKey":"pl181","X":624,"Y":524},{"Bonus":0,"Continent":"K63","ID":27761,"Name":"023 MƂodzieƄcza radoƛć","PlayerID":8268010,"Points":8777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27761","ServerKey":"pl181","X":391,"Y":620},{"Bonus":0,"Continent":"K56","ID":27762,"Name":"B.08","PlayerID":699737356,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27762","ServerKey":"pl181","X":667,"Y":510},{"Bonus":0,"Continent":"K35","ID":27763,"Name":"Lord Lord Franek .#062","PlayerID":698420691,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27763","ServerKey":"pl181","X":527,"Y":341},{"Bonus":6,"Continent":"K66","ID":27764,"Name":"Ć»UBRAWKA 001","PlayerID":33900,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27764","ServerKey":"pl181","X":603,"Y":622},{"Bonus":0,"Continent":"K64","ID":27765,"Name":"004","PlayerID":849089459,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27765","ServerKey":"pl181","X":423,"Y":641},{"Bonus":0,"Continent":"K53","ID":27766,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27766","ServerKey":"pl181","X":348,"Y":565},{"Bonus":0,"Continent":"K64","ID":27767,"Name":"Ave Why!","PlayerID":698585370,"Points":9194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27767","ServerKey":"pl181","X":477,"Y":666},{"Bonus":0,"Continent":"K64","ID":27768,"Name":"Samarkanda","PlayerID":849089459,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27768","ServerKey":"pl181","X":426,"Y":644},{"Bonus":0,"Continent":"K56","ID":27770,"Name":"Grvvyq 100k$","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27770","ServerKey":"pl181","X":653,"Y":559},{"Bonus":0,"Continent":"K65","ID":27772,"Name":"0283","PlayerID":698659980,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27772","ServerKey":"pl181","X":554,"Y":657},{"Bonus":5,"Continent":"K43","ID":27773,"Name":"NI1","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27773","ServerKey":"pl181","X":346,"Y":457},{"Bonus":0,"Continent":"K43","ID":27774,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27774","ServerKey":"pl181","X":333,"Y":492},{"Bonus":0,"Continent":"K35","ID":27775,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27775","ServerKey":"pl181","X":564,"Y":353},{"Bonus":4,"Continent":"K65","ID":27776,"Name":"ObrzeĆŒa 03","PlayerID":848915531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27776","ServerKey":"pl181","X":554,"Y":655},{"Bonus":0,"Continent":"K53","ID":27777,"Name":"FifonĆŒ","PlayerID":849096458,"Points":9459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27777","ServerKey":"pl181","X":339,"Y":529},{"Bonus":0,"Continent":"K36","ID":27778,"Name":"012","PlayerID":1018357,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27778","ServerKey":"pl181","X":602,"Y":368},{"Bonus":0,"Continent":"K65","ID":27779,"Name":"*Nic nowego...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27779","ServerKey":"pl181","X":578,"Y":646},{"Bonus":0,"Continent":"K53","ID":27780,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":4589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27780","ServerKey":"pl181","X":338,"Y":541},{"Bonus":0,"Continent":"K33","ID":27781,"Name":"Jamachama","PlayerID":8967440,"Points":6965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27781","ServerKey":"pl181","X":367,"Y":398},{"Bonus":0,"Continent":"K56","ID":27782,"Name":"12k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27782","ServerKey":"pl181","X":657,"Y":567},{"Bonus":0,"Continent":"K43","ID":27783,"Name":"-01-","PlayerID":765188,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27783","ServerKey":"pl181","X":332,"Y":497},{"Bonus":0,"Continent":"K64","ID":27784,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":5197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27784","ServerKey":"pl181","X":422,"Y":644},{"Bonus":0,"Continent":"K56","ID":27786,"Name":"=052= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27786","ServerKey":"pl181","X":644,"Y":576},{"Bonus":0,"Continent":"K53","ID":27787,"Name":"Chekku - meito","PlayerID":9280477,"Points":8207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27787","ServerKey":"pl181","X":334,"Y":519},{"Bonus":0,"Continent":"K53","ID":27788,"Name":"003 Wioska barbarzyƄska","PlayerID":915113,"Points":8685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27788","ServerKey":"pl181","X":335,"Y":515},{"Bonus":0,"Continent":"K36","ID":27789,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27789","ServerKey":"pl181","X":612,"Y":385},{"Bonus":0,"Continent":"K66","ID":27790,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27790","ServerKey":"pl181","X":617,"Y":615},{"Bonus":0,"Continent":"K46","ID":27791,"Name":"Osięciny-morra12311","PlayerID":7340529,"Points":10534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27791","ServerKey":"pl181","X":650,"Y":425},{"Bonus":0,"Continent":"K65","ID":27792,"Name":"z 057","PlayerID":699342219,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27792","ServerKey":"pl181","X":583,"Y":640},{"Bonus":0,"Continent":"K46","ID":27793,"Name":"A033 Wioska 7","PlayerID":113796,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27793","ServerKey":"pl181","X":657,"Y":443},{"Bonus":0,"Continent":"K64","ID":27794,"Name":"001","PlayerID":849089459,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27794","ServerKey":"pl181","X":422,"Y":640},{"Bonus":0,"Continent":"K66","ID":27795,"Name":"Ć»UBRAWKA B002","PlayerID":33900,"Points":9149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27795","ServerKey":"pl181","X":618,"Y":617},{"Bonus":0,"Continent":"K56","ID":27797,"Name":"[172]","PlayerID":8000875,"Points":7170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27797","ServerKey":"pl181","X":637,"Y":586},{"Bonus":0,"Continent":"K65","ID":27798,"Name":"ObrzeĆŒa 05","PlayerID":848915531,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27798","ServerKey":"pl181","X":554,"Y":653},{"Bonus":0,"Continent":"K43","ID":27799,"Name":"DW5","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27799","ServerKey":"pl181","X":347,"Y":449},{"Bonus":0,"Continent":"K46","ID":27801,"Name":"026 barbarzyƄska","PlayerID":9238175,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27801","ServerKey":"pl181","X":643,"Y":418},{"Bonus":0,"Continent":"K64","ID":27802,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":11143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27802","ServerKey":"pl181","X":466,"Y":659},{"Bonus":0,"Continent":"K53","ID":27803,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27803","ServerKey":"pl181","X":336,"Y":518},{"Bonus":0,"Continent":"K34","ID":27804,"Name":"0028","PlayerID":699431255,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27804","ServerKey":"pl181","X":416,"Y":357},{"Bonus":0,"Continent":"K63","ID":27805,"Name":"Valhalla 8.","PlayerID":849097002,"Points":9078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27805","ServerKey":"pl181","X":375,"Y":602},{"Bonus":0,"Continent":"K63","ID":27806,"Name":"056.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27806","ServerKey":"pl181","X":392,"Y":624},{"Bonus":0,"Continent":"K34","ID":27807,"Name":"North Barba 045","PlayerID":699796330,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27807","ServerKey":"pl181","X":426,"Y":353},{"Bonus":0,"Continent":"K64","ID":27808,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":9487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27808","ServerKey":"pl181","X":416,"Y":645},{"Bonus":0,"Continent":"K36","ID":27809,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27809","ServerKey":"pl181","X":618,"Y":383},{"Bonus":0,"Continent":"K65","ID":27810,"Name":"0508","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27810","ServerKey":"pl181","X":541,"Y":662},{"Bonus":0,"Continent":"K34","ID":27811,"Name":"North Barba 037","PlayerID":699796330,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27811","ServerKey":"pl181","X":421,"Y":357},{"Bonus":0,"Continent":"K35","ID":27812,"Name":"Lord Lord Franek .#156","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27812","ServerKey":"pl181","X":503,"Y":339},{"Bonus":0,"Continent":"K56","ID":27813,"Name":"B 058","PlayerID":8078914,"Points":5924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27813","ServerKey":"pl181","X":664,"Y":531},{"Bonus":0,"Continent":"K56","ID":27814,"Name":"073","PlayerID":698786826,"Points":8761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27814","ServerKey":"pl181","X":629,"Y":596},{"Bonus":0,"Continent":"K65","ID":27816,"Name":"ObrzeĆŒa 091","PlayerID":848915531,"Points":5641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27816","ServerKey":"pl181","X":553,"Y":655},{"Bonus":0,"Continent":"K35","ID":27817,"Name":"Taran","PlayerID":699170684,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27817","ServerKey":"pl181","X":544,"Y":385},{"Bonus":0,"Continent":"K46","ID":27818,"Name":"A034 Wioska 8","PlayerID":113796,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27818","ServerKey":"pl181","X":654,"Y":452},{"Bonus":7,"Continent":"K43","ID":27819,"Name":"*142*","PlayerID":699273451,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27819","ServerKey":"pl181","X":358,"Y":416},{"Bonus":0,"Continent":"K63","ID":27820,"Name":"Valhalla 9","PlayerID":849097002,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27820","ServerKey":"pl181","X":374,"Y":603},{"Bonus":0,"Continent":"K35","ID":27821,"Name":"Taki Pan","PlayerID":698739350,"Points":6487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27821","ServerKey":"pl181","X":501,"Y":336},{"Bonus":0,"Continent":"K56","ID":27822,"Name":"79k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27822","ServerKey":"pl181","X":655,"Y":564},{"Bonus":0,"Continent":"K43","ID":27823,"Name":"2.05","PlayerID":3502565,"Points":6818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27823","ServerKey":"pl181","X":343,"Y":456},{"Bonus":0,"Continent":"K35","ID":27825,"Name":"Krosno 5","PlayerID":7485877,"Points":4926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27825","ServerKey":"pl181","X":538,"Y":339},{"Bonus":0,"Continent":"K64","ID":27826,"Name":"0006","PlayerID":699736927,"Points":4390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27826","ServerKey":"pl181","X":424,"Y":643},{"Bonus":7,"Continent":"K65","ID":27827,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27827","ServerKey":"pl181","X":518,"Y":667},{"Bonus":0,"Continent":"K36","ID":27828,"Name":"Zachodnie skrzydlo","PlayerID":848924219,"Points":4233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27828","ServerKey":"pl181","X":614,"Y":383},{"Bonus":0,"Continent":"K46","ID":27829,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27829","ServerKey":"pl181","X":633,"Y":407},{"Bonus":0,"Continent":"K35","ID":27830,"Name":"Lord Lord Franek .#157","PlayerID":698420691,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27830","ServerKey":"pl181","X":501,"Y":332},{"Bonus":0,"Continent":"K64","ID":27831,"Name":"Ave Why!","PlayerID":698585370,"Points":9387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27831","ServerKey":"pl181","X":480,"Y":666},{"Bonus":0,"Continent":"K35","ID":27832,"Name":"Lord Lord Franek .#007","PlayerID":698420691,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27832","ServerKey":"pl181","X":525,"Y":335},{"Bonus":0,"Continent":"K64","ID":27833,"Name":"023","PlayerID":698650301,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27833","ServerKey":"pl181","X":452,"Y":655},{"Bonus":0,"Continent":"K43","ID":27834,"Name":"Avanti!","PlayerID":698625834,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27834","ServerKey":"pl181","X":381,"Y":485},{"Bonus":0,"Continent":"K56","ID":27835,"Name":"O12 Barbosa","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27835","ServerKey":"pl181","X":662,"Y":519},{"Bonus":0,"Continent":"K45","ID":27836,"Name":"10 im Mironowa","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27836","ServerKey":"pl181","X":591,"Y":430},{"Bonus":0,"Continent":"K34","ID":27837,"Name":"Bagdad","PlayerID":8847546,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27837","ServerKey":"pl181","X":498,"Y":337},{"Bonus":0,"Continent":"K56","ID":27838,"Name":"=068= Wioska barbarzyƄska","PlayerID":3781794,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27838","ServerKey":"pl181","X":659,"Y":550},{"Bonus":0,"Continent":"K65","ID":27839,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27839","ServerKey":"pl181","X":573,"Y":647},{"Bonus":0,"Continent":"K66","ID":27840,"Name":"113. Morze Garyjskie","PlayerID":8337151,"Points":7968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27840","ServerKey":"pl181","X":634,"Y":600},{"Bonus":0,"Continent":"K46","ID":27841,"Name":"024 pawelk95","PlayerID":2135129,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27841","ServerKey":"pl181","X":663,"Y":483},{"Bonus":0,"Continent":"K46","ID":27842,"Name":"030 - Mroczna Osada","PlayerID":849035905,"Points":6848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27842","ServerKey":"pl181","X":642,"Y":414},{"Bonus":0,"Continent":"K53","ID":27843,"Name":"Dajanka 30","PlayerID":849012843,"Points":446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27843","ServerKey":"pl181","X":353,"Y":575},{"Bonus":0,"Continent":"K64","ID":27844,"Name":"|016| Kato Zakros","PlayerID":699393742,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27844","ServerKey":"pl181","X":493,"Y":662},{"Bonus":0,"Continent":"K34","ID":27845,"Name":"130...centr","PlayerID":6920960,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27845","ServerKey":"pl181","X":447,"Y":344},{"Bonus":0,"Continent":"K35","ID":27846,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27846","ServerKey":"pl181","X":583,"Y":360},{"Bonus":0,"Continent":"K35","ID":27847,"Name":"Taki Pan","PlayerID":698739350,"Points":5208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27847","ServerKey":"pl181","X":513,"Y":333},{"Bonus":0,"Continent":"K64","ID":27848,"Name":"wStyx","PlayerID":699849210,"Points":5960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27848","ServerKey":"pl181","X":447,"Y":658},{"Bonus":0,"Continent":"K64","ID":27849,"Name":"|019| Gialos","PlayerID":699393742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27849","ServerKey":"pl181","X":499,"Y":668},{"Bonus":0,"Continent":"K64","ID":27850,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27850","ServerKey":"pl181","X":462,"Y":664},{"Bonus":0,"Continent":"K54","ID":27851,"Name":"000000","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27851","ServerKey":"pl181","X":415,"Y":583},{"Bonus":0,"Continent":"K46","ID":27852,"Name":"D 016","PlayerID":8078914,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27852","ServerKey":"pl181","X":662,"Y":499},{"Bonus":0,"Continent":"K43","ID":27853,"Name":"Maszlug kolonia XIX","PlayerID":848977649,"Points":4531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27853","ServerKey":"pl181","X":361,"Y":419},{"Bonus":0,"Continent":"K66","ID":27854,"Name":"0087","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27854","ServerKey":"pl181","X":610,"Y":627},{"Bonus":0,"Continent":"K64","ID":27855,"Name":"027.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27855","ServerKey":"pl181","X":406,"Y":636},{"Bonus":0,"Continent":"K35","ID":27856,"Name":"Lord Lord Franek .#063","PlayerID":698420691,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27856","ServerKey":"pl181","X":535,"Y":343},{"Bonus":0,"Continent":"K63","ID":27857,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27857","ServerKey":"pl181","X":382,"Y":619},{"Bonus":0,"Continent":"K65","ID":27858,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27858","ServerKey":"pl181","X":522,"Y":661},{"Bonus":0,"Continent":"K34","ID":27859,"Name":"K34 - [129] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27859","ServerKey":"pl181","X":441,"Y":349},{"Bonus":0,"Continent":"K56","ID":27860,"Name":"#113#","PlayerID":692803,"Points":8257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27860","ServerKey":"pl181","X":638,"Y":592},{"Bonus":0,"Continent":"K64","ID":27861,"Name":"A22","PlayerID":698652014,"Points":10842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27861","ServerKey":"pl181","X":476,"Y":667},{"Bonus":0,"Continent":"K65","ID":27862,"Name":"ObrzeĆŒa 08","PlayerID":848915531,"Points":6731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27862","ServerKey":"pl181","X":553,"Y":651},{"Bonus":0,"Continent":"K35","ID":27863,"Name":"A029","PlayerID":699485250,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27863","ServerKey":"pl181","X":595,"Y":370},{"Bonus":0,"Continent":"K43","ID":27864,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27864","ServerKey":"pl181","X":337,"Y":475},{"Bonus":0,"Continent":"K46","ID":27865,"Name":"llllllllllllllll","PlayerID":699429153,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27865","ServerKey":"pl181","X":626,"Y":400},{"Bonus":0,"Continent":"K46","ID":27866,"Name":"104","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27866","ServerKey":"pl181","X":654,"Y":445},{"Bonus":0,"Continent":"K43","ID":27867,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27867","ServerKey":"pl181","X":340,"Y":464},{"Bonus":0,"Continent":"K53","ID":27868,"Name":"13. Stara ujeĆŒdĆŒalnia","PlayerID":8665783,"Points":8984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27868","ServerKey":"pl181","X":371,"Y":596},{"Bonus":0,"Continent":"K64","ID":27870,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27870","ServerKey":"pl181","X":421,"Y":647},{"Bonus":0,"Continent":"K34","ID":27871,"Name":"[B]_[027] Dejv.oldplyr","PlayerID":699380607,"Points":9441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27871","ServerKey":"pl181","X":434,"Y":345},{"Bonus":0,"Continent":"K53","ID":27872,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27872","ServerKey":"pl181","X":342,"Y":538},{"Bonus":0,"Continent":"K64","ID":27874,"Name":"002","PlayerID":849089459,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27874","ServerKey":"pl181","X":423,"Y":640},{"Bonus":0,"Continent":"K46","ID":27875,"Name":"005 MONETKI","PlayerID":7588382,"Points":8911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27875","ServerKey":"pl181","X":657,"Y":467},{"Bonus":0,"Continent":"K35","ID":27877,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27877","ServerKey":"pl181","X":565,"Y":347},{"Bonus":0,"Continent":"K34","ID":27878,"Name":"0022","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27878","ServerKey":"pl181","X":414,"Y":363},{"Bonus":0,"Continent":"K64","ID":27879,"Name":"Ave Why!","PlayerID":698585370,"Points":11297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27879","ServerKey":"pl181","X":476,"Y":660},{"Bonus":0,"Continent":"K46","ID":27880,"Name":"Piwna 26","PlayerID":699812007,"Points":7583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27880","ServerKey":"pl181","X":648,"Y":426},{"Bonus":0,"Continent":"K34","ID":27882,"Name":"Bagdad","PlayerID":8847546,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27882","ServerKey":"pl181","X":499,"Y":336},{"Bonus":0,"Continent":"K35","ID":27883,"Name":"Lord Lord Franek .#178","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27883","ServerKey":"pl181","X":531,"Y":337},{"Bonus":0,"Continent":"K53","ID":27884,"Name":"Chekku - meito","PlayerID":9280477,"Points":8719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27884","ServerKey":"pl181","X":343,"Y":531},{"Bonus":0,"Continent":"K36","ID":27885,"Name":"--Lead","PlayerID":8096537,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27885","ServerKey":"pl181","X":623,"Y":386},{"Bonus":0,"Continent":"K36","ID":27887,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27887","ServerKey":"pl181","X":613,"Y":376},{"Bonus":0,"Continent":"K35","ID":27888,"Name":"Lord Lord Franek .#064","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27888","ServerKey":"pl181","X":525,"Y":337},{"Bonus":0,"Continent":"K56","ID":27889,"Name":"009","PlayerID":849095963,"Points":5946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27889","ServerKey":"pl181","X":646,"Y":570},{"Bonus":0,"Continent":"K64","ID":27890,"Name":"Psycha Siada","PlayerID":698807570,"Points":9214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27890","ServerKey":"pl181","X":457,"Y":661},{"Bonus":0,"Continent":"K64","ID":27891,"Name":"Lech PoznaƄ NWR","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27891","ServerKey":"pl181","X":491,"Y":668},{"Bonus":0,"Continent":"K64","ID":27892,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27892","ServerKey":"pl181","X":464,"Y":656},{"Bonus":0,"Continent":"K43","ID":27893,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27893","ServerKey":"pl181","X":338,"Y":480},{"Bonus":0,"Continent":"K46","ID":27894,"Name":"029 MONETKI","PlayerID":7588382,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27894","ServerKey":"pl181","X":662,"Y":476},{"Bonus":0,"Continent":"K56","ID":27895,"Name":"052","PlayerID":849095227,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27895","ServerKey":"pl181","X":663,"Y":537},{"Bonus":0,"Continent":"K53","ID":27896,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27896","ServerKey":"pl181","X":338,"Y":501},{"Bonus":0,"Continent":"K64","ID":27897,"Name":"Nowy ƚwiat RCxD","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27897","ServerKey":"pl181","X":487,"Y":660},{"Bonus":0,"Continent":"K35","ID":27899,"Name":"xyz #016 TerrorMachine","PlayerID":7555180,"Points":5753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27899","ServerKey":"pl181","X":583,"Y":363},{"Bonus":0,"Continent":"K46","ID":27900,"Name":"639|410 Wioska barbarzyƄska","PlayerID":6822957,"Points":7089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27900","ServerKey":"pl181","X":639,"Y":410},{"Bonus":0,"Continent":"K64","ID":27901,"Name":"Ave Why!","PlayerID":698585370,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27901","ServerKey":"pl181","X":477,"Y":665},{"Bonus":0,"Continent":"K43","ID":27902,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27902","ServerKey":"pl181","X":337,"Y":478},{"Bonus":0,"Continent":"K35","ID":27903,"Name":"I#030","PlayerID":2065730,"Points":8385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27903","ServerKey":"pl181","X":598,"Y":368},{"Bonus":0,"Continent":"K53","ID":27904,"Name":"Dajanka 29","PlayerID":849012843,"Points":2214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27904","ServerKey":"pl181","X":353,"Y":580},{"Bonus":0,"Continent":"K34","ID":27905,"Name":"North PƂock","PlayerID":699796330,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27905","ServerKey":"pl181","X":426,"Y":355},{"Bonus":0,"Continent":"K64","ID":27906,"Name":"039 Attre","PlayerID":699834004,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27906","ServerKey":"pl181","X":468,"Y":663},{"Bonus":0,"Continent":"K53","ID":27907,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27907","ServerKey":"pl181","X":341,"Y":543},{"Bonus":0,"Continent":"K53","ID":27908,"Name":"WKS","PlayerID":849097614,"Points":9405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27908","ServerKey":"pl181","X":332,"Y":506},{"Bonus":0,"Continent":"K64","ID":27909,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27909","ServerKey":"pl181","X":473,"Y":652},{"Bonus":0,"Continent":"K65","ID":27910,"Name":"*Ness","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27910","ServerKey":"pl181","X":576,"Y":645},{"Bonus":0,"Continent":"K56","ID":27912,"Name":"50k$ Grvvyq","PlayerID":699676005,"Points":8098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27912","ServerKey":"pl181","X":650,"Y":570},{"Bonus":0,"Continent":"K56","ID":27913,"Name":"Wioska 065","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27913","ServerKey":"pl181","X":640,"Y":590},{"Bonus":0,"Continent":"K43","ID":27914,"Name":"*245*","PlayerID":699273451,"Points":9322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27914","ServerKey":"pl181","X":353,"Y":431},{"Bonus":1,"Continent":"K65","ID":27915,"Name":"002 serniczek z rodzynkami","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27915","ServerKey":"pl181","X":500,"Y":668},{"Bonus":0,"Continent":"K55","ID":27917,"Name":"yogi","PlayerID":2808172,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27917","ServerKey":"pl181","X":531,"Y":543},{"Bonus":0,"Continent":"K64","ID":27918,"Name":"KUZYN","PlayerID":848913998,"Points":2943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27918","ServerKey":"pl181","X":415,"Y":642},{"Bonus":0,"Continent":"K65","ID":27919,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27919","ServerKey":"pl181","X":577,"Y":649},{"Bonus":0,"Continent":"K63","ID":27920,"Name":"18. Podlascy inwigilatorzy","PlayerID":8665783,"Points":9238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27920","ServerKey":"pl181","X":373,"Y":605},{"Bonus":0,"Continent":"K35","ID":27921,"Name":"127 Village Name 2","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27921","ServerKey":"pl181","X":598,"Y":365},{"Bonus":0,"Continent":"K46","ID":27922,"Name":"032 barbarzyƄska","PlayerID":9238175,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27922","ServerKey":"pl181","X":644,"Y":419},{"Bonus":0,"Continent":"K34","ID":27923,"Name":"Taki Pan","PlayerID":698739350,"Points":5937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27923","ServerKey":"pl181","X":499,"Y":339},{"Bonus":0,"Continent":"K33","ID":27924,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":7236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27924","ServerKey":"pl181","X":379,"Y":385},{"Bonus":0,"Continent":"K56","ID":27925,"Name":"=059= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27925","ServerKey":"pl181","X":645,"Y":581},{"Bonus":0,"Continent":"K35","ID":27926,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27926","ServerKey":"pl181","X":556,"Y":343},{"Bonus":0,"Continent":"K64","ID":27927,"Name":"Mexico2","PlayerID":699736927,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27927","ServerKey":"pl181","X":455,"Y":643},{"Bonus":0,"Continent":"K65","ID":27928,"Name":"0566","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27928","ServerKey":"pl181","X":567,"Y":653},{"Bonus":0,"Continent":"K35","ID":27930,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27930","ServerKey":"pl181","X":576,"Y":352},{"Bonus":0,"Continent":"K66","ID":27931,"Name":"020","PlayerID":699567608,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27931","ServerKey":"pl181","X":627,"Y":610},{"Bonus":0,"Continent":"K56","ID":27932,"Name":"B 016","PlayerID":8078914,"Points":10458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27932","ServerKey":"pl181","X":662,"Y":535},{"Bonus":0,"Continent":"K64","ID":27933,"Name":"wWendy","PlayerID":699849210,"Points":7087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27933","ServerKey":"pl181","X":448,"Y":655},{"Bonus":0,"Continent":"K65","ID":27934,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27934","ServerKey":"pl181","X":565,"Y":650},{"Bonus":0,"Continent":"K35","ID":27935,"Name":"Lord Lord Franek .#065","PlayerID":698420691,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27935","ServerKey":"pl181","X":532,"Y":337},{"Bonus":0,"Continent":"K63","ID":27936,"Name":"Pobozowisko","PlayerID":699513260,"Points":8580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27936","ServerKey":"pl181","X":385,"Y":613},{"Bonus":0,"Continent":"K65","ID":27937,"Name":"0161","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27937","ServerKey":"pl181","X":535,"Y":667},{"Bonus":0,"Continent":"K35","ID":27938,"Name":"I#029","PlayerID":2065730,"Points":5811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27938","ServerKey":"pl181","X":597,"Y":368},{"Bonus":0,"Continent":"K46","ID":27939,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27939","ServerKey":"pl181","X":667,"Y":491},{"Bonus":0,"Continent":"K35","ID":27940,"Name":"Ziemia","PlayerID":699797805,"Points":3450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27940","ServerKey":"pl181","X":549,"Y":341},{"Bonus":0,"Continent":"K33","ID":27941,"Name":"GrabĂłwek","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27941","ServerKey":"pl181","X":387,"Y":386},{"Bonus":0,"Continent":"K53","ID":27942,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27942","ServerKey":"pl181","X":334,"Y":504},{"Bonus":0,"Continent":"K65","ID":27943,"Name":"Sony 911","PlayerID":1415009,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27943","ServerKey":"pl181","X":582,"Y":645},{"Bonus":0,"Continent":"K63","ID":27944,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27944","ServerKey":"pl181","X":393,"Y":626},{"Bonus":0,"Continent":"K56","ID":27945,"Name":"D 012","PlayerID":8078914,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27945","ServerKey":"pl181","X":666,"Y":504},{"Bonus":0,"Continent":"K56","ID":27946,"Name":"[157]","PlayerID":8000875,"Points":8236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27946","ServerKey":"pl181","X":642,"Y":587},{"Bonus":0,"Continent":"K34","ID":27947,"Name":"#0091 barbarzyƄska","PlayerID":1238300,"Points":9438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27947","ServerKey":"pl181","X":479,"Y":337},{"Bonus":3,"Continent":"K34","ID":27948,"Name":"K34 - [134] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27948","ServerKey":"pl181","X":432,"Y":353},{"Bonus":0,"Continent":"K56","ID":27950,"Name":"B.055","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27950","ServerKey":"pl181","X":665,"Y":507},{"Bonus":9,"Continent":"K64","ID":27951,"Name":"Ave Why!","PlayerID":698585370,"Points":9465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27951","ServerKey":"pl181","X":476,"Y":665},{"Bonus":0,"Continent":"K35","ID":27952,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27952","ServerKey":"pl181","X":588,"Y":361},{"Bonus":0,"Continent":"K64","ID":27953,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27953","ServerKey":"pl181","X":465,"Y":664},{"Bonus":0,"Continent":"K65","ID":27954,"Name":"0509","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27954","ServerKey":"pl181","X":521,"Y":665},{"Bonus":0,"Continent":"K34","ID":27956,"Name":"030...Ob","PlayerID":6920960,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27956","ServerKey":"pl181","X":453,"Y":344},{"Bonus":0,"Continent":"K53","ID":27957,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27957","ServerKey":"pl181","X":349,"Y":554},{"Bonus":0,"Continent":"K35","ID":27958,"Name":"Lord Lord Franek .#040","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27958","ServerKey":"pl181","X":525,"Y":342},{"Bonus":0,"Continent":"K64","ID":27959,"Name":"021 Anor Londo","PlayerID":699834004,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27959","ServerKey":"pl181","X":487,"Y":671},{"Bonus":0,"Continent":"K34","ID":27960,"Name":"029...OPELEK","PlayerID":6920960,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27960","ServerKey":"pl181","X":441,"Y":345},{"Bonus":0,"Continent":"K35","ID":27961,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27961","ServerKey":"pl181","X":580,"Y":353},{"Bonus":0,"Continent":"K53","ID":27962,"Name":"Rework","PlayerID":849095992,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27962","ServerKey":"pl181","X":366,"Y":592},{"Bonus":0,"Continent":"K35","ID":27963,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27963","ServerKey":"pl181","X":565,"Y":348},{"Bonus":0,"Continent":"K35","ID":27964,"Name":"Lord Lord Franek .#066","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27964","ServerKey":"pl181","X":534,"Y":337},{"Bonus":0,"Continent":"K35","ID":27966,"Name":"Lord Lord Franek .#117","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27966","ServerKey":"pl181","X":509,"Y":332},{"Bonus":0,"Continent":"K53","ID":27967,"Name":"Wioska klez 017","PlayerID":698295651,"Points":6967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27967","ServerKey":"pl181","X":335,"Y":511},{"Bonus":0,"Continent":"K36","ID":27968,"Name":"Gattacka","PlayerID":699298370,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27968","ServerKey":"pl181","X":613,"Y":378},{"Bonus":0,"Continent":"K64","ID":27969,"Name":"036 Thurn","PlayerID":699834004,"Points":3426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27969","ServerKey":"pl181","X":442,"Y":655},{"Bonus":0,"Continent":"K35","ID":27970,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27970","ServerKey":"pl181","X":554,"Y":342},{"Bonus":0,"Continent":"K35","ID":27971,"Name":"-0003-","PlayerID":2972329,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27971","ServerKey":"pl181","X":543,"Y":339},{"Bonus":0,"Continent":"K63","ID":27972,"Name":"Valhalla 3","PlayerID":849097002,"Points":9218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27972","ServerKey":"pl181","X":369,"Y":603},{"Bonus":0,"Continent":"K64","ID":27973,"Name":"011","PlayerID":849089459,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27973","ServerKey":"pl181","X":433,"Y":651},{"Bonus":0,"Continent":"K34","ID":27974,"Name":"121...centr","PlayerID":6920960,"Points":7611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27974","ServerKey":"pl181","X":457,"Y":341},{"Bonus":0,"Continent":"K35","ID":27976,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27976","ServerKey":"pl181","X":553,"Y":343},{"Bonus":0,"Continent":"K34","ID":27977,"Name":"134...barba","PlayerID":6920960,"Points":9074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27977","ServerKey":"pl181","X":458,"Y":338},{"Bonus":0,"Continent":"K36","ID":27978,"Name":"--wall drug","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27978","ServerKey":"pl181","X":624,"Y":387},{"Bonus":0,"Continent":"K53","ID":27980,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27980","ServerKey":"pl181","X":337,"Y":516},{"Bonus":0,"Continent":"K64","ID":27981,"Name":"Ave Why!","PlayerID":698585370,"Points":11297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27981","ServerKey":"pl181","X":479,"Y":661},{"Bonus":0,"Continent":"K35","ID":27982,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27982","ServerKey":"pl181","X":510,"Y":337},{"Bonus":0,"Continent":"K53","ID":27983,"Name":"004 nazwa","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27983","ServerKey":"pl181","X":363,"Y":597},{"Bonus":0,"Continent":"K33","ID":27984,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27984","ServerKey":"pl181","X":379,"Y":384},{"Bonus":0,"Continent":"K64","ID":27985,"Name":"026|| Puppis","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27985","ServerKey":"pl181","X":490,"Y":638},{"Bonus":0,"Continent":"K65","ID":27986,"Name":"Ć»UBRAWKA 024","PlayerID":33900,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27986","ServerKey":"pl181","X":592,"Y":636},{"Bonus":0,"Continent":"K64","ID":27987,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27987","ServerKey":"pl181","X":461,"Y":656},{"Bonus":0,"Continent":"K53","ID":27988,"Name":"02Wioska","PlayerID":8607734,"Points":7643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27988","ServerKey":"pl181","X":367,"Y":599},{"Bonus":0,"Continent":"K65","ID":27989,"Name":"Ć»ubr .::. Metanol Lecter/1","PlayerID":33900,"Points":6812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27989","ServerKey":"pl181","X":597,"Y":630},{"Bonus":0,"Continent":"K35","ID":27990,"Name":"118 Wioska barbarzyƄska","PlayerID":699491076,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27990","ServerKey":"pl181","X":548,"Y":345},{"Bonus":0,"Continent":"K53","ID":27991,"Name":"Dajanka 21","PlayerID":849012843,"Points":1925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27991","ServerKey":"pl181","X":341,"Y":542},{"Bonus":0,"Continent":"K36","ID":27992,"Name":"0019","PlayerID":699857387,"Points":6173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27992","ServerKey":"pl181","X":625,"Y":388},{"Bonus":0,"Continent":"K53","ID":27993,"Name":"Dąbrowa 0001","PlayerID":849096972,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27993","ServerKey":"pl181","X":359,"Y":592},{"Bonus":0,"Continent":"K35","ID":27994,"Name":"Jowisz","PlayerID":699797805,"Points":4202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27994","ServerKey":"pl181","X":550,"Y":341},{"Bonus":5,"Continent":"K35","ID":27995,"Name":"CHARFA","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27995","ServerKey":"pl181","X":512,"Y":339},{"Bonus":0,"Continent":"K65","ID":27996,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27996","ServerKey":"pl181","X":524,"Y":659},{"Bonus":0,"Continent":"K46","ID":27997,"Name":"#.19 YYY","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27997","ServerKey":"pl181","X":659,"Y":472},{"Bonus":0,"Continent":"K44","ID":27998,"Name":"[0023]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27998","ServerKey":"pl181","X":419,"Y":415},{"Bonus":0,"Continent":"K44","ID":27999,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=27999","ServerKey":"pl181","X":496,"Y":471},{"Bonus":0,"Continent":"K66","ID":28000,"Name":"Ć»UBRAWKA 014","PlayerID":33900,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28000","ServerKey":"pl181","X":602,"Y":628},{"Bonus":0,"Continent":"K65","ID":28001,"Name":"009","PlayerID":699316421,"Points":7991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28001","ServerKey":"pl181","X":593,"Y":640},{"Bonus":0,"Continent":"K35","ID":28002,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28002","ServerKey":"pl181","X":580,"Y":357},{"Bonus":0,"Continent":"K43","ID":28003,"Name":"023 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":3363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28003","ServerKey":"pl181","X":362,"Y":407},{"Bonus":0,"Continent":"K36","ID":28005,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28005","ServerKey":"pl181","X":622,"Y":394},{"Bonus":0,"Continent":"K64","ID":28006,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28006","ServerKey":"pl181","X":462,"Y":662},{"Bonus":0,"Continent":"K56","ID":28007,"Name":"047","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28007","ServerKey":"pl181","X":661,"Y":536},{"Bonus":0,"Continent":"K53","ID":28008,"Name":"34. Lutkow litra na Ƃep","PlayerID":8665783,"Points":7442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28008","ServerKey":"pl181","X":378,"Y":575},{"Bonus":0,"Continent":"K33","ID":28009,"Name":"Wioska","PlayerID":8419570,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28009","ServerKey":"pl181","X":386,"Y":380},{"Bonus":0,"Continent":"K35","ID":28011,"Name":"Krosno","PlayerID":7485877,"Points":7335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28011","ServerKey":"pl181","X":533,"Y":339},{"Bonus":0,"Continent":"K44","ID":28012,"Name":"[0024]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28012","ServerKey":"pl181","X":416,"Y":413},{"Bonus":0,"Continent":"K66","ID":28013,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28013","ServerKey":"pl181","X":619,"Y":617},{"Bonus":0,"Continent":"K46","ID":28015,"Name":"Jaaa","PlayerID":698635863,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28015","ServerKey":"pl181","X":666,"Y":498},{"Bonus":4,"Continent":"K65","ID":28016,"Name":"*007","PlayerID":699567608,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28016","ServerKey":"pl181","X":591,"Y":639},{"Bonus":0,"Continent":"K43","ID":28017,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28017","ServerKey":"pl181","X":351,"Y":428},{"Bonus":0,"Continent":"K46","ID":28018,"Name":"77.","PlayerID":7394371,"Points":6539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28018","ServerKey":"pl181","X":634,"Y":401},{"Bonus":0,"Continent":"K65","ID":28019,"Name":"Itself SA","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28019","ServerKey":"pl181","X":511,"Y":666},{"Bonus":0,"Continent":"K65","ID":28020,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28020","ServerKey":"pl181","X":523,"Y":661},{"Bonus":0,"Continent":"K35","ID":28021,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28021","ServerKey":"pl181","X":561,"Y":345},{"Bonus":0,"Continent":"K56","ID":28022,"Name":"=053= Wioska barbarzyƄska","PlayerID":3781794,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28022","ServerKey":"pl181","X":645,"Y":579},{"Bonus":0,"Continent":"K35","ID":28024,"Name":"Taki Pan","PlayerID":698739350,"Points":6167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28024","ServerKey":"pl181","X":513,"Y":337},{"Bonus":0,"Continent":"K66","ID":28025,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28025","ServerKey":"pl181","X":617,"Y":610},{"Bonus":0,"Continent":"K63","ID":28026,"Name":"001.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28026","ServerKey":"pl181","X":398,"Y":624},{"Bonus":0,"Continent":"K53","ID":28027,"Name":"Mniejsze zƂo 0085","PlayerID":699794765,"Points":5180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28027","ServerKey":"pl181","X":339,"Y":505},{"Bonus":0,"Continent":"K56","ID":28028,"Name":"060","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28028","ServerKey":"pl181","X":656,"Y":541},{"Bonus":0,"Continent":"K53","ID":28029,"Name":"deff 100 %","PlayerID":849012521,"Points":8982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28029","ServerKey":"pl181","X":347,"Y":568},{"Bonus":0,"Continent":"K53","ID":28030,"Name":"001.Wioska zbyszek2609","PlayerID":1830149,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28030","ServerKey":"pl181","X":333,"Y":506},{"Bonus":0,"Continent":"K34","ID":28031,"Name":"016","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28031","ServerKey":"pl181","X":454,"Y":339},{"Bonus":0,"Continent":"K43","ID":28032,"Name":"009. Dla flag","PlayerID":698630507,"Points":7188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28032","ServerKey":"pl181","X":348,"Y":437},{"Bonus":0,"Continent":"K46","ID":28033,"Name":"015","PlayerID":7085502,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28033","ServerKey":"pl181","X":667,"Y":488},{"Bonus":0,"Continent":"K53","ID":28034,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28034","ServerKey":"pl181","X":348,"Y":552},{"Bonus":0,"Continent":"K64","ID":28035,"Name":"03 Wioska","PlayerID":698993706,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28035","ServerKey":"pl181","X":442,"Y":652},{"Bonus":0,"Continent":"K33","ID":28036,"Name":"Wioska 009","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28036","ServerKey":"pl181","X":386,"Y":387},{"Bonus":0,"Continent":"K65","ID":28037,"Name":"nosze klapki marki Kubota","PlayerID":848995242,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28037","ServerKey":"pl181","X":581,"Y":639},{"Bonus":0,"Continent":"K46","ID":28038,"Name":"E#001","PlayerID":2065730,"Points":5829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28038","ServerKey":"pl181","X":634,"Y":406},{"Bonus":0,"Continent":"K65","ID":28039,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28039","ServerKey":"pl181","X":515,"Y":660},{"Bonus":0,"Continent":"K65","ID":28040,"Name":"Ć»UBRAWKA 015","PlayerID":33900,"Points":8000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28040","ServerKey":"pl181","X":596,"Y":629},{"Bonus":0,"Continent":"K46","ID":28041,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28041","ServerKey":"pl181","X":668,"Y":496},{"Bonus":0,"Continent":"K66","ID":28042,"Name":"zzzRezygnacja 01","PlayerID":848971079,"Points":11270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28042","ServerKey":"pl181","X":631,"Y":606},{"Bonus":0,"Continent":"K46","ID":28043,"Name":"112","PlayerID":849088515,"Points":7270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28043","ServerKey":"pl181","X":652,"Y":439},{"Bonus":0,"Continent":"K33","ID":28044,"Name":"cc Kobierzynqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28044","ServerKey":"pl181","X":394,"Y":373},{"Bonus":4,"Continent":"K64","ID":28045,"Name":"Ave Why!","PlayerID":698585370,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28045","ServerKey":"pl181","X":481,"Y":665},{"Bonus":0,"Continent":"K34","ID":28046,"Name":"#0098 barbarzyƄska","PlayerID":1238300,"Points":7959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28046","ServerKey":"pl181","X":460,"Y":344},{"Bonus":0,"Continent":"K35","ID":28047,"Name":"Lord Lord Franek .#067","PlayerID":698420691,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28047","ServerKey":"pl181","X":523,"Y":335},{"Bonus":0,"Continent":"K46","ID":28049,"Name":"A032 Wioska 3","PlayerID":113796,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28049","ServerKey":"pl181","X":658,"Y":445},{"Bonus":0,"Continent":"K34","ID":28050,"Name":"Hej hoo","PlayerID":699393759,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28050","ServerKey":"pl181","X":436,"Y":350},{"Bonus":0,"Continent":"K53","ID":28051,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28051","ServerKey":"pl181","X":349,"Y":561},{"Bonus":0,"Continent":"K34","ID":28052,"Name":".achim.","PlayerID":6936607,"Points":10266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28052","ServerKey":"pl181","X":490,"Y":334},{"Bonus":0,"Continent":"K63","ID":28053,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28053","ServerKey":"pl181","X":395,"Y":630},{"Bonus":0,"Continent":"K53","ID":28054,"Name":"-016-","PlayerID":699097885,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28054","ServerKey":"pl181","X":371,"Y":598},{"Bonus":0,"Continent":"K64","ID":28055,"Name":"[A]013","PlayerID":849097175,"Points":3335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28055","ServerKey":"pl181","X":430,"Y":650},{"Bonus":0,"Continent":"K64","ID":28056,"Name":"A01","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28056","ServerKey":"pl181","X":472,"Y":666},{"Bonus":0,"Continent":"K64","ID":28057,"Name":"050.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28057","ServerKey":"pl181","X":406,"Y":634},{"Bonus":0,"Continent":"K46","ID":28058,"Name":"031","PlayerID":7085502,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28058","ServerKey":"pl181","X":667,"Y":484},{"Bonus":0,"Continent":"K53","ID":28059,"Name":"Nowy ƛwiat 3","PlayerID":849084005,"Points":6927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28059","ServerKey":"pl181","X":344,"Y":560},{"Bonus":0,"Continent":"K63","ID":28060,"Name":"8047","PlayerID":8607734,"Points":8480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28060","ServerKey":"pl181","X":375,"Y":605},{"Bonus":0,"Continent":"K64","ID":28061,"Name":"Aila","PlayerID":699736927,"Points":7441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28061","ServerKey":"pl181","X":419,"Y":646},{"Bonus":0,"Continent":"K53","ID":28062,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28062","ServerKey":"pl181","X":335,"Y":526},{"Bonus":0,"Continent":"K35","ID":28063,"Name":"Lord Lord Franek .#158","PlayerID":698420691,"Points":10299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28063","ServerKey":"pl181","X":509,"Y":333},{"Bonus":0,"Continent":"K66","ID":28064,"Name":"089","PlayerID":698786826,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28064","ServerKey":"pl181","X":623,"Y":609},{"Bonus":0,"Continent":"K63","ID":28065,"Name":"Valhalla A3","PlayerID":849097002,"Points":7321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28065","ServerKey":"pl181","X":374,"Y":602},{"Bonus":0,"Continent":"K46","ID":28066,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":4082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28066","ServerKey":"pl181","X":661,"Y":463},{"Bonus":0,"Continent":"K35","ID":28067,"Name":"A036","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28067","ServerKey":"pl181","X":574,"Y":372},{"Bonus":0,"Continent":"K64","ID":28068,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":3731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28068","ServerKey":"pl181","X":413,"Y":644},{"Bonus":9,"Continent":"K46","ID":28069,"Name":"66. KaruTown","PlayerID":7394371,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28069","ServerKey":"pl181","X":631,"Y":402},{"Bonus":0,"Continent":"K46","ID":28070,"Name":"042 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28070","ServerKey":"pl181","X":645,"Y":421},{"Bonus":0,"Continent":"K64","ID":28071,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":10753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28071","ServerKey":"pl181","X":468,"Y":661},{"Bonus":0,"Continent":"K66","ID":28072,"Name":"xxx - 06","PlayerID":6520732,"Points":10374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28072","ServerKey":"pl181","X":609,"Y":620},{"Bonus":0,"Continent":"K65","ID":28073,"Name":"007","PlayerID":849097799,"Points":8401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28073","ServerKey":"pl181","X":598,"Y":632},{"Bonus":0,"Continent":"K65","ID":28074,"Name":"008 serniczek z karmelem","PlayerID":8954402,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28074","ServerKey":"pl181","X":502,"Y":664},{"Bonus":0,"Continent":"K64","ID":28075,"Name":"psycha sitting","PlayerID":699736927,"Points":7380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28075","ServerKey":"pl181","X":428,"Y":651},{"Bonus":0,"Continent":"K43","ID":28076,"Name":"M181_022","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28076","ServerKey":"pl181","X":356,"Y":427},{"Bonus":0,"Continent":"K64","ID":28077,"Name":"023.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28077","ServerKey":"pl181","X":401,"Y":629},{"Bonus":0,"Continent":"K53","ID":28078,"Name":"Denger 13","PlayerID":698353083,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28078","ServerKey":"pl181","X":360,"Y":589},{"Bonus":0,"Continent":"K65","ID":28079,"Name":"0510","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28079","ServerKey":"pl181","X":533,"Y":661},{"Bonus":0,"Continent":"K46","ID":28080,"Name":"040","PlayerID":7085502,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28080","ServerKey":"pl181","X":662,"Y":498},{"Bonus":1,"Continent":"K65","ID":28081,"Name":"*No i co z tego...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28081","ServerKey":"pl181","X":575,"Y":645},{"Bonus":0,"Continent":"K43","ID":28082,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28082","ServerKey":"pl181","X":333,"Y":487},{"Bonus":0,"Continent":"K35","ID":28083,"Name":"003","PlayerID":849087786,"Points":3356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28083","ServerKey":"pl181","X":545,"Y":340},{"Bonus":0,"Continent":"K64","ID":28084,"Name":"016.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28084","ServerKey":"pl181","X":403,"Y":629},{"Bonus":0,"Continent":"K56","ID":28085,"Name":"025","PlayerID":699351301,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28085","ServerKey":"pl181","X":653,"Y":538},{"Bonus":0,"Continent":"K35","ID":28086,"Name":"Lord Lord Franek .#118","PlayerID":698420691,"Points":8273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28086","ServerKey":"pl181","X":518,"Y":333},{"Bonus":0,"Continent":"K64","ID":28087,"Name":"008 Gors Velen","PlayerID":699834004,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28087","ServerKey":"pl181","X":466,"Y":660},{"Bonus":0,"Continent":"K34","ID":28088,"Name":"052KZ","PlayerID":849063849,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28088","ServerKey":"pl181","X":486,"Y":332},{"Bonus":0,"Continent":"K35","ID":28089,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":5154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28089","ServerKey":"pl181","X":540,"Y":337},{"Bonus":0,"Continent":"K36","ID":28090,"Name":"070","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28090","ServerKey":"pl181","X":602,"Y":372},{"Bonus":9,"Continent":"K36","ID":28091,"Name":"022","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28091","ServerKey":"pl181","X":603,"Y":367},{"Bonus":0,"Continent":"K65","ID":28092,"Name":"0297","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28092","ServerKey":"pl181","X":568,"Y":654},{"Bonus":2,"Continent":"K35","ID":28093,"Name":"002","PlayerID":849087786,"Points":5150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28093","ServerKey":"pl181","X":547,"Y":341},{"Bonus":0,"Continent":"K34","ID":28094,"Name":"093...bar","PlayerID":6920960,"Points":9464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28094","ServerKey":"pl181","X":453,"Y":339},{"Bonus":0,"Continent":"K65","ID":28095,"Name":"Darma dla zawodnika","PlayerID":7860453,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28095","ServerKey":"pl181","X":527,"Y":663},{"Bonus":0,"Continent":"K46","ID":28096,"Name":"#.39 Wioska barbarzyƄska","PlayerID":849054582,"Points":4058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28096","ServerKey":"pl181","X":662,"Y":474},{"Bonus":2,"Continent":"K46","ID":28097,"Name":"019 - Mroczna Osada","PlayerID":849035905,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28097","ServerKey":"pl181","X":635,"Y":410},{"Bonus":0,"Continent":"K34","ID":28098,"Name":"025... PóƂ zach","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28098","ServerKey":"pl181","X":450,"Y":344},{"Bonus":0,"Continent":"K46","ID":28099,"Name":"B.09","PlayerID":699737356,"Points":7473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28099","ServerKey":"pl181","X":663,"Y":495},{"Bonus":0,"Continent":"K63","ID":28100,"Name":"---010","PlayerID":8607734,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28100","ServerKey":"pl181","X":375,"Y":612},{"Bonus":0,"Continent":"K64","ID":28101,"Name":"026.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28101","ServerKey":"pl181","X":401,"Y":632},{"Bonus":5,"Continent":"K53","ID":28102,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28102","ServerKey":"pl181","X":358,"Y":578},{"Bonus":0,"Continent":"K56","ID":28103,"Name":"42k$ Grvvyq","PlayerID":699676005,"Points":10421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28103","ServerKey":"pl181","X":649,"Y":578},{"Bonus":0,"Continent":"K64","ID":28104,"Name":"|B| Crystalshell.","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28104","ServerKey":"pl181","X":488,"Y":667},{"Bonus":0,"Continent":"K56","ID":28106,"Name":"072","PlayerID":849095227,"Points":7967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28106","ServerKey":"pl181","X":659,"Y":551},{"Bonus":0,"Continent":"K46","ID":28107,"Name":"*4625*a Remont","PlayerID":7973893,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28107","ServerKey":"pl181","X":646,"Y":429},{"Bonus":0,"Continent":"K65","ID":28108,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28108","ServerKey":"pl181","X":576,"Y":648},{"Bonus":0,"Continent":"K53","ID":28109,"Name":"27. W buszu","PlayerID":8665783,"Points":8109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28109","ServerKey":"pl181","X":360,"Y":592},{"Bonus":0,"Continent":"K63","ID":28110,"Name":"J009","PlayerID":849090130,"Points":6391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28110","ServerKey":"pl181","X":365,"Y":601},{"Bonus":0,"Continent":"K65","ID":28111,"Name":"009 serniczek z makrelą","PlayerID":8954402,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28111","ServerKey":"pl181","X":502,"Y":663},{"Bonus":0,"Continent":"K56","ID":28112,"Name":"B.056","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28112","ServerKey":"pl181","X":668,"Y":506},{"Bonus":0,"Continent":"K63","ID":28113,"Name":"Valhalla 1","PlayerID":849097002,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28113","ServerKey":"pl181","X":369,"Y":605},{"Bonus":0,"Continent":"K66","ID":28114,"Name":"zzzRezygnacja 04","PlayerID":699778867,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28114","ServerKey":"pl181","X":627,"Y":601},{"Bonus":0,"Continent":"K34","ID":28115,"Name":"045KZ","PlayerID":849063849,"Points":8716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28115","ServerKey":"pl181","X":483,"Y":334},{"Bonus":0,"Continent":"K66","ID":28116,"Name":"*025","PlayerID":699567608,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28116","ServerKey":"pl181","X":600,"Y":635},{"Bonus":0,"Continent":"K35","ID":28117,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28117","ServerKey":"pl181","X":591,"Y":360},{"Bonus":0,"Continent":"K46","ID":28118,"Name":"027 MONETKI","PlayerID":7588382,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28118","ServerKey":"pl181","X":663,"Y":482},{"Bonus":0,"Continent":"K56","ID":28119,"Name":"Wioska Kaffik II","PlayerID":6136757,"Points":6769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28119","ServerKey":"pl181","X":634,"Y":582},{"Bonus":0,"Continent":"K33","ID":28120,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":7025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28120","ServerKey":"pl181","X":384,"Y":386},{"Bonus":0,"Continent":"K66","ID":28122,"Name":"090","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28122","ServerKey":"pl181","X":622,"Y":609},{"Bonus":7,"Continent":"K65","ID":28123,"Name":"0233","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28123","ServerKey":"pl181","X":540,"Y":661},{"Bonus":0,"Continent":"K34","ID":28124,"Name":"113...centr","PlayerID":6920960,"Points":8672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28124","ServerKey":"pl181","X":453,"Y":346},{"Bonus":0,"Continent":"K65","ID":28125,"Name":"0235","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28125","ServerKey":"pl181","X":558,"Y":656},{"Bonus":0,"Continent":"K43","ID":28126,"Name":"*01 Nemeczek*","PlayerID":2415972,"Points":10177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28126","ServerKey":"pl181","X":362,"Y":412},{"Bonus":0,"Continent":"K43","ID":28127,"Name":"Klan Wilka","PlayerID":849097716,"Points":8035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28127","ServerKey":"pl181","X":346,"Y":435},{"Bonus":0,"Continent":"K54","ID":28128,"Name":"Kasyno","PlayerID":7249451,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28128","ServerKey":"pl181","X":449,"Y":512},{"Bonus":0,"Continent":"K35","ID":28129,"Name":"Lord Lord Franek .#106","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28129","ServerKey":"pl181","X":516,"Y":339},{"Bonus":0,"Continent":"K53","ID":28130,"Name":"X008","PlayerID":9264752,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28130","ServerKey":"pl181","X":351,"Y":563},{"Bonus":0,"Continent":"K36","ID":28131,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28131","ServerKey":"pl181","X":615,"Y":383},{"Bonus":0,"Continent":"K35","ID":28132,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28132","ServerKey":"pl181","X":543,"Y":343},{"Bonus":0,"Continent":"K36","ID":28133,"Name":"--Lyon","PlayerID":8096537,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28133","ServerKey":"pl181","X":619,"Y":384},{"Bonus":0,"Continent":"K34","ID":28134,"Name":"Dzielnica klasztorna","PlayerID":849048216,"Points":5120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28134","ServerKey":"pl181","X":481,"Y":340},{"Bonus":0,"Continent":"K46","ID":28135,"Name":"Twierdzą 4","PlayerID":848935020,"Points":7670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28135","ServerKey":"pl181","X":660,"Y":464},{"Bonus":0,"Continent":"K63","ID":28136,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28136","ServerKey":"pl181","X":394,"Y":627},{"Bonus":0,"Continent":"K63","ID":28137,"Name":"Valhalla A1","PlayerID":849097002,"Points":7614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28137","ServerKey":"pl181","X":374,"Y":604},{"Bonus":0,"Continent":"K34","ID":28138,"Name":"0067","PlayerID":699431255,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28138","ServerKey":"pl181","X":424,"Y":352},{"Bonus":0,"Continent":"K46","ID":28140,"Name":"048 BOBI 4","PlayerID":2135129,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28140","ServerKey":"pl181","X":662,"Y":481},{"Bonus":0,"Continent":"K33","ID":28141,"Name":"cc Z0000000000000","PlayerID":3909522,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28141","ServerKey":"pl181","X":393,"Y":377},{"Bonus":0,"Continent":"K64","ID":28142,"Name":"022","PlayerID":699834004,"Points":7688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28142","ServerKey":"pl181","X":470,"Y":661},{"Bonus":0,"Continent":"K56","ID":28143,"Name":"046 Essex","PlayerID":699272880,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28143","ServerKey":"pl181","X":632,"Y":592},{"Bonus":0,"Continent":"K53","ID":28144,"Name":"Wuwuzela","PlayerID":849096458,"Points":8703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28144","ServerKey":"pl181","X":340,"Y":534},{"Bonus":0,"Continent":"K56","ID":28145,"Name":"B 018","PlayerID":8078914,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28145","ServerKey":"pl181","X":661,"Y":537},{"Bonus":0,"Continent":"K35","ID":28146,"Name":"Lord Lord Franek .#159","PlayerID":698420691,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28146","ServerKey":"pl181","X":503,"Y":334},{"Bonus":0,"Continent":"K46","ID":28147,"Name":"018","PlayerID":7092442,"Points":5600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28147","ServerKey":"pl181","X":634,"Y":404},{"Bonus":0,"Continent":"K56","ID":28148,"Name":"O33 Florida","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28148","ServerKey":"pl181","X":667,"Y":522},{"Bonus":0,"Continent":"K53","ID":28149,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28149","ServerKey":"pl181","X":353,"Y":571},{"Bonus":0,"Continent":"K33","ID":28150,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28150","ServerKey":"pl181","X":371,"Y":399},{"Bonus":0,"Continent":"K33","ID":28151,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":4092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28151","ServerKey":"pl181","X":384,"Y":383},{"Bonus":0,"Continent":"K63","ID":28152,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28152","ServerKey":"pl181","X":391,"Y":619},{"Bonus":0,"Continent":"K53","ID":28153,"Name":"054","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28153","ServerKey":"pl181","X":356,"Y":517},{"Bonus":0,"Continent":"K65","ID":28154,"Name":"014 serniczek z posypką","PlayerID":8954402,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28154","ServerKey":"pl181","X":504,"Y":661},{"Bonus":0,"Continent":"K64","ID":28155,"Name":"012 Beauclair","PlayerID":699834004,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28155","ServerKey":"pl181","X":460,"Y":658},{"Bonus":0,"Continent":"K46","ID":28156,"Name":"53. KaruTown","PlayerID":7092442,"Points":4863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28156","ServerKey":"pl181","X":636,"Y":405},{"Bonus":0,"Continent":"K34","ID":28157,"Name":"Bagdad","PlayerID":8847546,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28157","ServerKey":"pl181","X":498,"Y":334},{"Bonus":0,"Continent":"K43","ID":28158,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28158","ServerKey":"pl181","X":337,"Y":462},{"Bonus":0,"Continent":"K65","ID":28159,"Name":"chata z basenem","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28159","ServerKey":"pl181","X":594,"Y":637},{"Bonus":0,"Continent":"K53","ID":28160,"Name":"deff 100 %","PlayerID":849012521,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28160","ServerKey":"pl181","X":349,"Y":570},{"Bonus":0,"Continent":"K35","ID":28161,"Name":"Lord Lord Franek .#068","PlayerID":698420691,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28161","ServerKey":"pl181","X":526,"Y":335},{"Bonus":0,"Continent":"K34","ID":28162,"Name":"[B]_[003] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28162","ServerKey":"pl181","X":429,"Y":351},{"Bonus":0,"Continent":"K53","ID":28163,"Name":"016.Barbara","PlayerID":1830149,"Points":4927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28163","ServerKey":"pl181","X":335,"Y":507},{"Bonus":0,"Continent":"K64","ID":28164,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28164","ServerKey":"pl181","X":466,"Y":663},{"Bonus":0,"Continent":"K34","ID":28165,"Name":"North Barba 048","PlayerID":699796330,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28165","ServerKey":"pl181","X":423,"Y":351},{"Bonus":0,"Continent":"K56","ID":28166,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28166","ServerKey":"pl181","X":661,"Y":539},{"Bonus":0,"Continent":"K46","ID":28167,"Name":"008 MONETKI","PlayerID":7588382,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28167","ServerKey":"pl181","X":663,"Y":477},{"Bonus":0,"Continent":"K55","ID":28168,"Name":"013W-Będzin","PlayerID":8323711,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28168","ServerKey":"pl181","X":558,"Y":510},{"Bonus":0,"Continent":"K35","ID":28169,"Name":"Lord Lord Franek .#069","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28169","ServerKey":"pl181","X":517,"Y":336},{"Bonus":0,"Continent":"K65","ID":28170,"Name":"nie budzić !!!","PlayerID":848995242,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28170","ServerKey":"pl181","X":582,"Y":646},{"Bonus":0,"Continent":"K34","ID":28172,"Name":"K34 - [139] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28172","ServerKey":"pl181","X":442,"Y":347},{"Bonus":3,"Continent":"K56","ID":28173,"Name":"0030 MzM","PlayerID":698416970,"Points":8788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28173","ServerKey":"pl181","X":634,"Y":592},{"Bonus":0,"Continent":"K46","ID":28174,"Name":"010 - Mroczna Osada","PlayerID":849035905,"Points":10602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28174","ServerKey":"pl181","X":640,"Y":421},{"Bonus":0,"Continent":"K66","ID":28175,"Name":"WB 10","PlayerID":2269943,"Points":3480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28175","ServerKey":"pl181","X":632,"Y":604},{"Bonus":0,"Continent":"K35","ID":28176,"Name":"Lord Lord Franek .#070","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28176","ServerKey":"pl181","X":526,"Y":338},{"Bonus":0,"Continent":"K53","ID":28177,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28177","ServerKey":"pl181","X":347,"Y":562},{"Bonus":0,"Continent":"K33","ID":28178,"Name":"Szulernia","PlayerID":7249451,"Points":10898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28178","ServerKey":"pl181","X":383,"Y":378},{"Bonus":0,"Continent":"K36","ID":28179,"Name":"Budal","PlayerID":699298370,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28179","ServerKey":"pl181","X":620,"Y":390},{"Bonus":0,"Continent":"K43","ID":28180,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":7122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28180","ServerKey":"pl181","X":350,"Y":430},{"Bonus":0,"Continent":"K65","ID":28181,"Name":"Sony 911","PlayerID":1415009,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28181","ServerKey":"pl181","X":588,"Y":636},{"Bonus":0,"Continent":"K35","ID":28182,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28182","ServerKey":"pl181","X":566,"Y":347},{"Bonus":0,"Continent":"K35","ID":28183,"Name":"Lord Lord Franek .#119","PlayerID":698420691,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28183","ServerKey":"pl181","X":511,"Y":333},{"Bonus":0,"Continent":"K53","ID":28184,"Name":"X007","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28184","ServerKey":"pl181","X":352,"Y":563},{"Bonus":0,"Continent":"K63","ID":28185,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28185","ServerKey":"pl181","X":392,"Y":628},{"Bonus":0,"Continent":"K53","ID":28186,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":4042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28186","ServerKey":"pl181","X":341,"Y":551},{"Bonus":0,"Continent":"K53","ID":28187,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28187","ServerKey":"pl181","X":338,"Y":538},{"Bonus":0,"Continent":"K34","ID":28188,"Name":"136","PlayerID":7271812,"Points":7535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28188","ServerKey":"pl181","X":476,"Y":337},{"Bonus":0,"Continent":"K34","ID":28189,"Name":"#0042 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28189","ServerKey":"pl181","X":470,"Y":338},{"Bonus":0,"Continent":"K65","ID":28190,"Name":"amator","PlayerID":848915531,"Points":8811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28190","ServerKey":"pl181","X":554,"Y":654},{"Bonus":0,"Continent":"K35","ID":28191,"Name":"Klaudek","PlayerID":849092309,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28191","ServerKey":"pl181","X":591,"Y":370},{"Bonus":0,"Continent":"K43","ID":28192,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28192","ServerKey":"pl181","X":336,"Y":463},{"Bonus":0,"Continent":"K56","ID":28193,"Name":"043","PlayerID":849095227,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28193","ServerKey":"pl181","X":660,"Y":539},{"Bonus":0,"Continent":"K66","ID":28195,"Name":"Grvvyq 116k$","PlayerID":699676005,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28195","ServerKey":"pl181","X":612,"Y":617},{"Bonus":0,"Continent":"K43","ID":28196,"Name":"*080*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28196","ServerKey":"pl181","X":358,"Y":413},{"Bonus":0,"Continent":"K34","ID":28197,"Name":"Z 002","PlayerID":6384450,"Points":6744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28197","ServerKey":"pl181","X":488,"Y":338},{"Bonus":0,"Continent":"K46","ID":28198,"Name":"004 - Mroczna Osada","PlayerID":849035905,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28198","ServerKey":"pl181","X":642,"Y":419},{"Bonus":0,"Continent":"K56","ID":28199,"Name":"089","PlayerID":849095227,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28199","ServerKey":"pl181","X":658,"Y":556},{"Bonus":0,"Continent":"K35","ID":28200,"Name":"Lord Lord Franek .#160","PlayerID":698420691,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28200","ServerKey":"pl181","X":505,"Y":334},{"Bonus":0,"Continent":"K65","ID":28201,"Name":"02. StraĆŒ miejska na Zawadach","PlayerID":849092769,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28201","ServerKey":"pl181","X":505,"Y":668},{"Bonus":0,"Continent":"K46","ID":28202,"Name":"020 MONETKI","PlayerID":7588382,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28202","ServerKey":"pl181","X":662,"Y":479},{"Bonus":0,"Continent":"K63","ID":28203,"Name":"Valhalla A0","PlayerID":849097002,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28203","ServerKey":"pl181","X":372,"Y":603},{"Bonus":0,"Continent":"K64","ID":28204,"Name":"Cezaria","PlayerID":849096944,"Points":8598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28204","ServerKey":"pl181","X":408,"Y":637},{"Bonus":0,"Continent":"K64","ID":28205,"Name":"::::35:::","PlayerID":699849210,"Points":8179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28205","ServerKey":"pl181","X":447,"Y":657},{"Bonus":0,"Continent":"K65","ID":28207,"Name":"033 serniczek rosa","PlayerID":8954402,"Points":10970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28207","ServerKey":"pl181","X":515,"Y":667},{"Bonus":0,"Continent":"K43","ID":28208,"Name":"*013 Nemeczek*","PlayerID":2415972,"Points":9274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28208","ServerKey":"pl181","X":363,"Y":413},{"Bonus":0,"Continent":"K43","ID":28209,"Name":"*064*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28209","ServerKey":"pl181","X":356,"Y":416},{"Bonus":0,"Continent":"K65","ID":28210,"Name":"0653","PlayerID":698659980,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28210","ServerKey":"pl181","X":539,"Y":667},{"Bonus":0,"Continent":"K35","ID":28211,"Name":"Klaudek7","PlayerID":849092309,"Points":7160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28211","ServerKey":"pl181","X":594,"Y":369},{"Bonus":0,"Continent":"K64","ID":28212,"Name":"[A]001","PlayerID":699736927,"Points":7561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28212","ServerKey":"pl181","X":425,"Y":651},{"Bonus":0,"Continent":"K46","ID":28213,"Name":"A022 Alicante","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28213","ServerKey":"pl181","X":658,"Y":459},{"Bonus":0,"Continent":"K36","ID":28214,"Name":"BACÓWKA |036|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28214","ServerKey":"pl181","X":631,"Y":399},{"Bonus":0,"Continent":"K34","ID":28215,"Name":"Z 003","PlayerID":6384450,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28215","ServerKey":"pl181","X":488,"Y":339},{"Bonus":0,"Continent":"K64","ID":28216,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28216","ServerKey":"pl181","X":451,"Y":660},{"Bonus":0,"Continent":"K35","ID":28217,"Name":"Lord Lord Franek .#161","PlayerID":698420691,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28217","ServerKey":"pl181","X":501,"Y":334},{"Bonus":0,"Continent":"K34","ID":28218,"Name":"[B]_[007] Dejv.oldplyr","PlayerID":699380607,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28218","ServerKey":"pl181","X":424,"Y":350},{"Bonus":0,"Continent":"K43","ID":28219,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":5940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28219","ServerKey":"pl181","X":349,"Y":444},{"Bonus":0,"Continent":"K43","ID":28220,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28220","ServerKey":"pl181","X":338,"Y":462},{"Bonus":0,"Continent":"K35","ID":28221,"Name":"Lord Lord Franek .#120","PlayerID":698420691,"Points":8406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28221","ServerKey":"pl181","X":516,"Y":332},{"Bonus":0,"Continent":"K64","ID":28222,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":7130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28222","ServerKey":"pl181","X":422,"Y":653},{"Bonus":0,"Continent":"K36","ID":28223,"Name":"A 009","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28223","ServerKey":"pl181","X":608,"Y":378},{"Bonus":0,"Continent":"K63","ID":28224,"Name":".///...//././././././././","PlayerID":849097937,"Points":9190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28224","ServerKey":"pl181","X":390,"Y":628},{"Bonus":0,"Continent":"K43","ID":28225,"Name":"005.Coma","PlayerID":8967440,"Points":8158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28225","ServerKey":"pl181","X":366,"Y":404},{"Bonus":0,"Continent":"K34","ID":28226,"Name":"[B]_[013] Dejv.oldplyr","PlayerID":699380607,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28226","ServerKey":"pl181","X":428,"Y":349},{"Bonus":9,"Continent":"K53","ID":28227,"Name":"C005","PlayerID":8607734,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28227","ServerKey":"pl181","X":361,"Y":588},{"Bonus":0,"Continent":"K35","ID":28228,"Name":"005 fristajloo","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28228","ServerKey":"pl181","X":595,"Y":363},{"Bonus":0,"Continent":"K46","ID":28229,"Name":"A026 Gradac","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28229","ServerKey":"pl181","X":660,"Y":458},{"Bonus":0,"Continent":"K34","ID":28230,"Name":"0026","PlayerID":699431255,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28230","ServerKey":"pl181","X":413,"Y":355},{"Bonus":0,"Continent":"K35","ID":28231,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28231","ServerKey":"pl181","X":532,"Y":399},{"Bonus":0,"Continent":"K53","ID":28232,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28232","ServerKey":"pl181","X":339,"Y":538},{"Bonus":0,"Continent":"K65","ID":28233,"Name":"% 2 % spocone dziadki","PlayerID":848995242,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28233","ServerKey":"pl181","X":582,"Y":638},{"Bonus":0,"Continent":"K63","ID":28234,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28234","ServerKey":"pl181","X":397,"Y":634},{"Bonus":0,"Continent":"K46","ID":28235,"Name":"Jehu_Kingdom_14","PlayerID":8785314,"Points":7604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28235","ServerKey":"pl181","X":650,"Y":431},{"Bonus":0,"Continent":"K35","ID":28236,"Name":"005","PlayerID":849087786,"Points":1629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28236","ServerKey":"pl181","X":546,"Y":339},{"Bonus":0,"Continent":"K35","ID":28237,"Name":".achim.","PlayerID":6936607,"Points":8801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28237","ServerKey":"pl181","X":526,"Y":386},{"Bonus":0,"Continent":"K35","ID":28238,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":7410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28238","ServerKey":"pl181","X":597,"Y":363},{"Bonus":0,"Continent":"K34","ID":28239,"Name":"North Barba 050","PlayerID":699796330,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28239","ServerKey":"pl181","X":426,"Y":349},{"Bonus":0,"Continent":"K36","ID":28240,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28240","ServerKey":"pl181","X":625,"Y":390},{"Bonus":0,"Continent":"K65","ID":28241,"Name":"0171","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28241","ServerKey":"pl181","X":546,"Y":662},{"Bonus":0,"Continent":"K64","ID":28242,"Name":"|023| Rodos","PlayerID":699393742,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28242","ServerKey":"pl181","X":498,"Y":664},{"Bonus":0,"Continent":"K35","ID":28243,"Name":"Krosno 7","PlayerID":7485877,"Points":2964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28243","ServerKey":"pl181","X":535,"Y":341},{"Bonus":0,"Continent":"K43","ID":28245,"Name":"Wioska barbarzyƄska C","PlayerID":8967440,"Points":2851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28245","ServerKey":"pl181","X":365,"Y":404},{"Bonus":0,"Continent":"K64","ID":28246,"Name":"Wioska Foxter","PlayerID":698585370,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28246","ServerKey":"pl181","X":473,"Y":647},{"Bonus":0,"Continent":"K43","ID":28247,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28247","ServerKey":"pl181","X":334,"Y":492},{"Bonus":0,"Continent":"K35","ID":28248,"Name":"-0004-","PlayerID":2972329,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28248","ServerKey":"pl181","X":540,"Y":340},{"Bonus":0,"Continent":"K56","ID":28249,"Name":"48k$ Grvvyq","PlayerID":699676005,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28249","ServerKey":"pl181","X":652,"Y":571},{"Bonus":0,"Continent":"K64","ID":28250,"Name":"028.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28250","ServerKey":"pl181","X":404,"Y":637},{"Bonus":0,"Continent":"K35","ID":28251,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28251","ServerKey":"pl181","X":589,"Y":357},{"Bonus":4,"Continent":"K64","ID":28252,"Name":"012","PlayerID":699246032,"Points":9226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28252","ServerKey":"pl181","X":435,"Y":652},{"Bonus":0,"Continent":"K66","ID":28253,"Name":"Sexxy P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28253","ServerKey":"pl181","X":614,"Y":619},{"Bonus":0,"Continent":"K43","ID":28254,"Name":"*131*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28254","ServerKey":"pl181","X":354,"Y":416},{"Bonus":0,"Continent":"K56","ID":28255,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28255","ServerKey":"pl181","X":664,"Y":538},{"Bonus":0,"Continent":"K34","ID":28256,"Name":"#0101 barbarzyƄska","PlayerID":1238300,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28256","ServerKey":"pl181","X":478,"Y":339},{"Bonus":0,"Continent":"K56","ID":28257,"Name":"=033= Wioska barbarzyƄska","PlayerID":3781794,"Points":8043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28257","ServerKey":"pl181","X":655,"Y":554},{"Bonus":0,"Continent":"K53","ID":28258,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28258","ServerKey":"pl181","X":334,"Y":513},{"Bonus":1,"Continent":"K64","ID":28259,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28259","ServerKey":"pl181","X":462,"Y":663},{"Bonus":0,"Continent":"K65","ID":28260,"Name":"030 serniczek z budyniem","PlayerID":8954402,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28260","ServerKey":"pl181","X":510,"Y":666},{"Bonus":0,"Continent":"K46","ID":28261,"Name":"Częstochowa","PlayerID":699737356,"Points":8488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28261","ServerKey":"pl181","X":669,"Y":498},{"Bonus":0,"Continent":"K64","ID":28262,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":4263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28262","ServerKey":"pl181","X":441,"Y":655},{"Bonus":0,"Continent":"K65","ID":28263,"Name":"0511","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28263","ServerKey":"pl181","X":536,"Y":659},{"Bonus":0,"Continent":"K53","ID":28264,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28264","ServerKey":"pl181","X":336,"Y":524},{"Bonus":0,"Continent":"K53","ID":28265,"Name":"CRESOVIA","PlayerID":849097614,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28265","ServerKey":"pl181","X":336,"Y":513},{"Bonus":0,"Continent":"K33","ID":28266,"Name":"cc Bimbrownia","PlayerID":3909522,"Points":9144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28266","ServerKey":"pl181","X":397,"Y":368},{"Bonus":0,"Continent":"K65","ID":28268,"Name":"*Nokturn","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28268","ServerKey":"pl181","X":577,"Y":641},{"Bonus":0,"Continent":"K46","ID":28269,"Name":"Izbica Kujawska-morra12311","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28269","ServerKey":"pl181","X":650,"Y":427},{"Bonus":0,"Continent":"K56","ID":28270,"Name":"081","PlayerID":849095227,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28270","ServerKey":"pl181","X":659,"Y":555},{"Bonus":0,"Continent":"K43","ID":28271,"Name":"*157*","PlayerID":699273451,"Points":8053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28271","ServerKey":"pl181","X":357,"Y":412},{"Bonus":0,"Continent":"K64","ID":28273,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28273","ServerKey":"pl181","X":463,"Y":661},{"Bonus":0,"Continent":"K34","ID":28274,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28274","ServerKey":"pl181","X":445,"Y":344},{"Bonus":0,"Continent":"K34","ID":28275,"Name":"066...barbarka","PlayerID":6920960,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28275","ServerKey":"pl181","X":441,"Y":343},{"Bonus":3,"Continent":"K65","ID":28276,"Name":"005","PlayerID":849097799,"Points":9070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28276","ServerKey":"pl181","X":596,"Y":636},{"Bonus":0,"Continent":"K56","ID":28277,"Name":"O03 Isengard","PlayerID":699272880,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28277","ServerKey":"pl181","X":661,"Y":516},{"Bonus":0,"Continent":"K35","ID":28278,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28278","ServerKey":"pl181","X":570,"Y":351},{"Bonus":0,"Continent":"K35","ID":28279,"Name":"A READY","PlayerID":1553947,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28279","ServerKey":"pl181","X":595,"Y":399},{"Bonus":0,"Continent":"K43","ID":28280,"Name":"*012 Nemeczek*","PlayerID":2415972,"Points":8806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28280","ServerKey":"pl181","X":361,"Y":413},{"Bonus":0,"Continent":"K35","ID":28281,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28281","ServerKey":"pl181","X":579,"Y":353},{"Bonus":0,"Continent":"K53","ID":28282,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28282","ServerKey":"pl181","X":348,"Y":559},{"Bonus":0,"Continent":"K34","ID":28283,"Name":"Bagdad","PlayerID":8847546,"Points":10368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28283","ServerKey":"pl181","X":497,"Y":338},{"Bonus":0,"Continent":"K33","ID":28284,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":7836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28284","ServerKey":"pl181","X":384,"Y":384},{"Bonus":0,"Continent":"K56","ID":28285,"Name":"042","PlayerID":699316421,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28285","ServerKey":"pl181","X":653,"Y":555},{"Bonus":0,"Continent":"K64","ID":28286,"Name":"Ave Why!","PlayerID":698585370,"Points":10863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28286","ServerKey":"pl181","X":475,"Y":660},{"Bonus":0,"Continent":"K65","ID":28287,"Name":"031 serniczek z owocami","PlayerID":8954402,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28287","ServerKey":"pl181","X":507,"Y":665},{"Bonus":0,"Continent":"K53","ID":28288,"Name":"Denger 17","PlayerID":698353083,"Points":9651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28288","ServerKey":"pl181","X":364,"Y":590},{"Bonus":9,"Continent":"K46","ID":28289,"Name":"I002 uuuu","PlayerID":699722599,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28289","ServerKey":"pl181","X":663,"Y":457},{"Bonus":0,"Continent":"K65","ID":28290,"Name":"Ć»UBRAWKA 022 wioska 123","PlayerID":33900,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28290","ServerKey":"pl181","X":595,"Y":633},{"Bonus":0,"Continent":"K35","ID":28292,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28292","ServerKey":"pl181","X":551,"Y":344},{"Bonus":0,"Continent":"K65","ID":28293,"Name":"001 serniczek","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28293","ServerKey":"pl181","X":501,"Y":664},{"Bonus":0,"Continent":"K53","ID":28294,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28294","ServerKey":"pl181","X":334,"Y":534},{"Bonus":0,"Continent":"K64","ID":28296,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":6910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28296","ServerKey":"pl181","X":452,"Y":659},{"Bonus":0,"Continent":"K65","ID":28297,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28297","ServerKey":"pl181","X":523,"Y":664},{"Bonus":5,"Continent":"K33","ID":28298,"Name":"Chamachata","PlayerID":8967440,"Points":4562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28298","ServerKey":"pl181","X":378,"Y":390},{"Bonus":0,"Continent":"K35","ID":28299,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28299","ServerKey":"pl181","X":581,"Y":352},{"Bonus":0,"Continent":"K66","ID":28300,"Name":"Ć»UBR .::.B.E.T.O.N /1","PlayerID":33900,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28300","ServerKey":"pl181","X":621,"Y":616},{"Bonus":0,"Continent":"K53","ID":28301,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28301","ServerKey":"pl181","X":342,"Y":560},{"Bonus":0,"Continent":"K34","ID":28302,"Name":"005","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28302","ServerKey":"pl181","X":477,"Y":352},{"Bonus":0,"Continent":"K56","ID":28303,"Name":"047","PlayerID":699351301,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28303","ServerKey":"pl181","X":664,"Y":540},{"Bonus":0,"Continent":"K34","ID":28304,"Name":"K34 - [123] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28304","ServerKey":"pl181","X":444,"Y":346},{"Bonus":4,"Continent":"K53","ID":28305,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":4283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28305","ServerKey":"pl181","X":357,"Y":579},{"Bonus":0,"Continent":"K64","ID":28306,"Name":"No. 7","PlayerID":698826986,"Points":9092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28306","ServerKey":"pl181","X":481,"Y":662},{"Bonus":0,"Continent":"K35","ID":28307,"Name":"Lord Lord Franek .#071","PlayerID":698420691,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28307","ServerKey":"pl181","X":526,"Y":339},{"Bonus":0,"Continent":"K34","ID":28308,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28308","ServerKey":"pl181","X":417,"Y":361},{"Bonus":0,"Continent":"K56","ID":28309,"Name":"048","PlayerID":699316421,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28309","ServerKey":"pl181","X":649,"Y":566},{"Bonus":0,"Continent":"K64","ID":28310,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":5441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28310","ServerKey":"pl181","X":450,"Y":660},{"Bonus":8,"Continent":"K43","ID":28311,"Name":"DW4","PlayerID":393668,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28311","ServerKey":"pl181","X":341,"Y":448},{"Bonus":0,"Continent":"K56","ID":28312,"Name":"Wioska Kaffik III","PlayerID":6136757,"Points":8060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28312","ServerKey":"pl181","X":642,"Y":578},{"Bonus":0,"Continent":"K36","ID":28313,"Name":"Modesto, Kalifornia","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28313","ServerKey":"pl181","X":603,"Y":373},{"Bonus":0,"Continent":"K56","ID":28314,"Name":"O11 Logrono","PlayerID":699272880,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28314","ServerKey":"pl181","X":660,"Y":520},{"Bonus":0,"Continent":"K46","ID":28315,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28315","ServerKey":"pl181","X":664,"Y":468},{"Bonus":0,"Continent":"K66","ID":28316,"Name":"Ć»UBRAWKA 016","PlayerID":33900,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28316","ServerKey":"pl181","X":604,"Y":630},{"Bonus":0,"Continent":"K65","ID":28317,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28317","ServerKey":"pl181","X":554,"Y":660},{"Bonus":0,"Continent":"K46","ID":28318,"Name":"020 - Mroczna Osada","PlayerID":849035905,"Points":10830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28318","ServerKey":"pl181","X":636,"Y":408},{"Bonus":0,"Continent":"K53","ID":28319,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28319","ServerKey":"pl181","X":349,"Y":566},{"Bonus":0,"Continent":"K64","ID":28320,"Name":"A20","PlayerID":698652014,"Points":10834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28320","ServerKey":"pl181","X":474,"Y":664},{"Bonus":0,"Continent":"K66","ID":28321,"Name":"0081","PlayerID":698416970,"Points":8549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28321","ServerKey":"pl181","X":628,"Y":604},{"Bonus":0,"Continent":"K56","ID":28323,"Name":"Xray","PlayerID":699737356,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28323","ServerKey":"pl181","X":671,"Y":504},{"Bonus":0,"Continent":"K65","ID":28324,"Name":"0172","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28324","ServerKey":"pl181","X":545,"Y":663},{"Bonus":0,"Continent":"K43","ID":28325,"Name":"Faring","PlayerID":849097716,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28325","ServerKey":"pl181","X":347,"Y":435},{"Bonus":0,"Continent":"K43","ID":28326,"Name":"Nordson","PlayerID":393668,"Points":6720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28326","ServerKey":"pl181","X":352,"Y":428},{"Bonus":0,"Continent":"K35","ID":28327,"Name":"ADEN","PlayerID":698588535,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28327","ServerKey":"pl181","X":571,"Y":348},{"Bonus":0,"Continent":"K33","ID":28328,"Name":"Szulernia","PlayerID":7249451,"Points":2712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28328","ServerKey":"pl181","X":392,"Y":377},{"Bonus":0,"Continent":"K43","ID":28329,"Name":"1.08","PlayerID":3502565,"Points":4284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28329","ServerKey":"pl181","X":339,"Y":454},{"Bonus":0,"Continent":"K56","ID":28330,"Name":"055 Shinsoo","PlayerID":699272880,"Points":7184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28330","ServerKey":"pl181","X":627,"Y":589},{"Bonus":0,"Continent":"K53","ID":28331,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28331","ServerKey":"pl181","X":358,"Y":579},{"Bonus":0,"Continent":"K56","ID":28332,"Name":"Wioska VEGE 2","PlayerID":87575,"Points":6148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28332","ServerKey":"pl181","X":657,"Y":559},{"Bonus":0,"Continent":"K56","ID":28333,"Name":"B.057","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28333","ServerKey":"pl181","X":667,"Y":504},{"Bonus":0,"Continent":"K56","ID":28334,"Name":"Jestem Przestępcą","PlayerID":699851345,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28334","ServerKey":"pl181","X":663,"Y":511},{"Bonus":0,"Continent":"K53","ID":28335,"Name":"Denger 10","PlayerID":698353083,"Points":10386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28335","ServerKey":"pl181","X":360,"Y":584},{"Bonus":0,"Continent":"K56","ID":28337,"Name":"B 048","PlayerID":8078914,"Points":9281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28337","ServerKey":"pl181","X":662,"Y":528},{"Bonus":1,"Continent":"K33","ID":28338,"Name":"cc Cedron","PlayerID":3909522,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28338","ServerKey":"pl181","X":391,"Y":373},{"Bonus":0,"Continent":"K53","ID":28339,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28339","ServerKey":"pl181","X":335,"Y":503},{"Bonus":0,"Continent":"K64","ID":28340,"Name":"030.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28340","ServerKey":"pl181","X":401,"Y":636},{"Bonus":0,"Continent":"K65","ID":28342,"Name":"nowa parcela","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28342","ServerKey":"pl181","X":580,"Y":641},{"Bonus":0,"Continent":"K65","ID":28343,"Name":"008","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28343","ServerKey":"pl181","X":595,"Y":631},{"Bonus":0,"Continent":"K66","ID":28345,"Name":"Ć»UBRAWKA 005 kuba","PlayerID":33900,"Points":10037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28345","ServerKey":"pl181","X":600,"Y":625},{"Bonus":0,"Continent":"K35","ID":28346,"Name":"Lord Lord Franek .#072","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28346","ServerKey":"pl181","X":532,"Y":335},{"Bonus":0,"Continent":"K43","ID":28347,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28347","ServerKey":"pl181","X":332,"Y":482},{"Bonus":0,"Continent":"K35","ID":28348,"Name":"Klaudek5","PlayerID":849092309,"Points":3599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28348","ServerKey":"pl181","X":591,"Y":365},{"Bonus":0,"Continent":"K34","ID":28349,"Name":"#0080 barbarzyƄska","PlayerID":1238300,"Points":8646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28349","ServerKey":"pl181","X":474,"Y":338},{"Bonus":0,"Continent":"K53","ID":28350,"Name":"TORPEDA","PlayerID":849097614,"Points":9212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28350","ServerKey":"pl181","X":331,"Y":510},{"Bonus":0,"Continent":"K56","ID":28351,"Name":"37k$ Grvvyq","PlayerID":699676005,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28351","ServerKey":"pl181","X":649,"Y":574},{"Bonus":0,"Continent":"K43","ID":28352,"Name":"M181_035","PlayerID":393668,"Points":9705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28352","ServerKey":"pl181","X":348,"Y":427},{"Bonus":0,"Continent":"K64","ID":28354,"Name":"031.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28354","ServerKey":"pl181","X":403,"Y":636},{"Bonus":0,"Continent":"K66","ID":28355,"Name":"021","PlayerID":699567608,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28355","ServerKey":"pl181","X":625,"Y":613},{"Bonus":0,"Continent":"K56","ID":28356,"Name":"049","PlayerID":699316421,"Points":7313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28356","ServerKey":"pl181","X":649,"Y":569},{"Bonus":0,"Continent":"K56","ID":28357,"Name":"002.","PlayerID":6520732,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28357","ServerKey":"pl181","X":609,"Y":538},{"Bonus":9,"Continent":"K56","ID":28358,"Name":"=044= Osada koczownikĂłw","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28358","ServerKey":"pl181","X":656,"Y":549},{"Bonus":0,"Continent":"K64","ID":28359,"Name":"001 Arcadia Bay","PlayerID":699834004,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28359","ServerKey":"pl181","X":468,"Y":660},{"Bonus":0,"Continent":"K56","ID":28360,"Name":"B 024","PlayerID":8078914,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28360","ServerKey":"pl181","X":661,"Y":535},{"Bonus":0,"Continent":"K34","ID":28361,"Name":"049KZ","PlayerID":849063849,"Points":5963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28361","ServerKey":"pl181","X":487,"Y":331},{"Bonus":0,"Continent":"K34","ID":28362,"Name":"aaaaaaaaa","PlayerID":699308637,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28362","ServerKey":"pl181","X":435,"Y":349},{"Bonus":0,"Continent":"K35","ID":28363,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":8728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28363","ServerKey":"pl181","X":586,"Y":362},{"Bonus":0,"Continent":"K63","ID":28364,"Name":"055.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28364","ServerKey":"pl181","X":389,"Y":623},{"Bonus":0,"Continent":"K36","ID":28365,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28365","ServerKey":"pl181","X":627,"Y":389},{"Bonus":0,"Continent":"K35","ID":28366,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":5228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28366","ServerKey":"pl181","X":594,"Y":359},{"Bonus":8,"Continent":"K56","ID":28367,"Name":"$3.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28367","ServerKey":"pl181","X":644,"Y":574},{"Bonus":0,"Continent":"K63","ID":28368,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28368","ServerKey":"pl181","X":392,"Y":629},{"Bonus":0,"Continent":"K64","ID":28369,"Name":"|004| Retimno","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28369","ServerKey":"pl181","X":496,"Y":665},{"Bonus":0,"Continent":"K35","ID":28370,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28370","ServerKey":"pl181","X":586,"Y":361},{"Bonus":0,"Continent":"K56","ID":28371,"Name":"=054= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28371","ServerKey":"pl181","X":644,"Y":577},{"Bonus":0,"Continent":"K43","ID":28372,"Name":"-09-","PlayerID":765188,"Points":5707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28372","ServerKey":"pl181","X":333,"Y":496},{"Bonus":0,"Continent":"K64","ID":28373,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":2083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28373","ServerKey":"pl181","X":420,"Y":646},{"Bonus":0,"Continent":"K63","ID":28374,"Name":"001 nazwa","PlayerID":8607734,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28374","ServerKey":"pl181","X":362,"Y":603},{"Bonus":0,"Continent":"K33","ID":28375,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":7452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28375","ServerKey":"pl181","X":397,"Y":367},{"Bonus":0,"Continent":"K46","ID":28377,"Name":"I010 Stado PingwinĂłw","PlayerID":699722599,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28377","ServerKey":"pl181","X":661,"Y":454},{"Bonus":0,"Continent":"K66","ID":28379,"Name":"Ć»UBRAWKA 018","PlayerID":33900,"Points":4877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28379","ServerKey":"pl181","X":609,"Y":626},{"Bonus":0,"Continent":"K64","ID":28380,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28380","ServerKey":"pl181","X":428,"Y":648},{"Bonus":0,"Continent":"K35","ID":28381,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28381","ServerKey":"pl181","X":567,"Y":349},{"Bonus":0,"Continent":"K46","ID":28382,"Name":"Jehu_Kingdom_40","PlayerID":8785314,"Points":7769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28382","ServerKey":"pl181","X":649,"Y":434},{"Bonus":0,"Continent":"K43","ID":28383,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28383","ServerKey":"pl181","X":357,"Y":452},{"Bonus":0,"Continent":"K56","ID":28384,"Name":"P014 Balacha","PlayerID":8096537,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28384","ServerKey":"pl181","X":667,"Y":505},{"Bonus":0,"Continent":"K56","ID":28385,"Name":"Didus P","PlayerID":849070946,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28385","ServerKey":"pl181","X":655,"Y":562},{"Bonus":0,"Continent":"K36","ID":28387,"Name":"Gattacka","PlayerID":699298370,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28387","ServerKey":"pl181","X":614,"Y":384},{"Bonus":0,"Continent":"K33","ID":28388,"Name":"Moria","PlayerID":848886056,"Points":6055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28388","ServerKey":"pl181","X":372,"Y":396},{"Bonus":0,"Continent":"K36","ID":28389,"Name":".2.","PlayerID":7462660,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28389","ServerKey":"pl181","X":600,"Y":370},{"Bonus":0,"Continent":"K64","ID":28390,"Name":"Dzikie wsparcie","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28390","ServerKey":"pl181","X":469,"Y":659},{"Bonus":0,"Continent":"K66","ID":28391,"Name":"Ć»UBRAWKA 010","PlayerID":33900,"Points":9941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28391","ServerKey":"pl181","X":601,"Y":629},{"Bonus":0,"Continent":"K34","ID":28393,"Name":"114...centr","PlayerID":6920960,"Points":6865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28393","ServerKey":"pl181","X":451,"Y":343},{"Bonus":0,"Continent":"K54","ID":28394,"Name":"060. ALFI","PlayerID":8539216,"Points":872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28394","ServerKey":"pl181","X":464,"Y":562},{"Bonus":0,"Continent":"K64","ID":28395,"Name":"Taka001","PlayerID":848999671,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28395","ServerKey":"pl181","X":479,"Y":664},{"Bonus":0,"Continent":"K46","ID":28396,"Name":"17. Ɓysy ekipa","PlayerID":849060446,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28396","ServerKey":"pl181","X":636,"Y":411},{"Bonus":0,"Continent":"K65","ID":28397,"Name":"nowa parcelaa","PlayerID":848995242,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28397","ServerKey":"pl181","X":582,"Y":639},{"Bonus":0,"Continent":"K35","ID":28399,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28399","ServerKey":"pl181","X":588,"Y":358},{"Bonus":0,"Continent":"K66","ID":28400,"Name":"Ć»UBRAWKA 006 Kantero","PlayerID":33900,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28400","ServerKey":"pl181","X":602,"Y":629},{"Bonus":0,"Continent":"K65","ID":28401,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28401","ServerKey":"pl181","X":556,"Y":659},{"Bonus":0,"Continent":"K45","ID":28402,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28402","ServerKey":"pl181","X":525,"Y":412},{"Bonus":0,"Continent":"K34","ID":28403,"Name":"Wioska barbarzyƄska 032","PlayerID":6343784,"Points":6590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28403","ServerKey":"pl181","X":490,"Y":339},{"Bonus":0,"Continent":"K63","ID":28404,"Name":"044.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28404","ServerKey":"pl181","X":389,"Y":626},{"Bonus":0,"Continent":"K46","ID":28405,"Name":"14. Palce w Natalce","PlayerID":849060446,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28405","ServerKey":"pl181","X":637,"Y":408},{"Bonus":0,"Continent":"K65","ID":28407,"Name":"DzieƄ sądu nadszedƂ","PlayerID":849004274,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28407","ServerKey":"pl181","X":511,"Y":661},{"Bonus":0,"Continent":"K64","ID":28408,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28408","ServerKey":"pl181","X":424,"Y":645},{"Bonus":6,"Continent":"K43","ID":28409,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28409","ServerKey":"pl181","X":336,"Y":482},{"Bonus":0,"Continent":"K43","ID":28410,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28410","ServerKey":"pl181","X":336,"Y":484},{"Bonus":0,"Continent":"K46","ID":28411,"Name":"BACÓWKA |045|","PlayerID":7394371,"Points":7313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28411","ServerKey":"pl181","X":631,"Y":401},{"Bonus":0,"Continent":"K64","ID":28412,"Name":"016","PlayerID":699736927,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28412","ServerKey":"pl181","X":427,"Y":649},{"Bonus":0,"Continent":"K43","ID":28413,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28413","ServerKey":"pl181","X":338,"Y":471},{"Bonus":0,"Continent":"K43","ID":28414,"Name":"jedziemy dalej","PlayerID":849098784,"Points":2676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28414","ServerKey":"pl181","X":347,"Y":441},{"Bonus":0,"Continent":"K34","ID":28415,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28415","ServerKey":"pl181","X":408,"Y":359},{"Bonus":0,"Continent":"K34","ID":28417,"Name":"Wioska b21","PlayerID":698239813,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28417","ServerKey":"pl181","X":495,"Y":332},{"Bonus":0,"Continent":"K34","ID":28418,"Name":"133...centr barb","PlayerID":6920960,"Points":8552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28418","ServerKey":"pl181","X":449,"Y":345},{"Bonus":0,"Continent":"K34","ID":28419,"Name":"Szulernia","PlayerID":7249451,"Points":10010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28419","ServerKey":"pl181","X":410,"Y":360},{"Bonus":0,"Continent":"K64","ID":28421,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":2810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28421","ServerKey":"pl181","X":417,"Y":646},{"Bonus":0,"Continent":"K64","ID":28422,"Name":"JEDNORĘKI BANDYTA","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28422","ServerKey":"pl181","X":411,"Y":635},{"Bonus":0,"Continent":"K34","ID":28423,"Name":"#0088 barbarzyƄska","PlayerID":1238300,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28423","ServerKey":"pl181","X":477,"Y":337},{"Bonus":0,"Continent":"K43","ID":28424,"Name":"*141*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28424","ServerKey":"pl181","X":358,"Y":415},{"Bonus":0,"Continent":"K34","ID":28426,"Name":"[B]_[012] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28426","ServerKey":"pl181","X":425,"Y":349},{"Bonus":0,"Continent":"K34","ID":28427,"Name":"021","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28427","ServerKey":"pl181","X":457,"Y":344},{"Bonus":0,"Continent":"K46","ID":28428,"Name":"DMN 003","PlayerID":698998882,"Points":5316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28428","ServerKey":"pl181","X":650,"Y":421},{"Bonus":7,"Continent":"K34","ID":28429,"Name":"[B][04] Bottom Lounge","PlayerID":699380621,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28429","ServerKey":"pl181","X":433,"Y":344},{"Bonus":0,"Continent":"K43","ID":28430,"Name":"Wioska Kora","PlayerID":699523631,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28430","ServerKey":"pl181","X":395,"Y":468},{"Bonus":0,"Continent":"K64","ID":28432,"Name":"|C18| Naleƛniki z ramen","PlayerID":8966820,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28432","ServerKey":"pl181","X":450,"Y":662},{"Bonus":0,"Continent":"K36","ID":28434,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28434","ServerKey":"pl181","X":612,"Y":373},{"Bonus":0,"Continent":"K34","ID":28435,"Name":"008","PlayerID":698739350,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28435","ServerKey":"pl181","X":482,"Y":352},{"Bonus":0,"Continent":"K56","ID":28436,"Name":"58k$ Grvvyq","PlayerID":699676005,"Points":7557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28436","ServerKey":"pl181","X":646,"Y":581},{"Bonus":0,"Continent":"K43","ID":28438,"Name":"010 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":6440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28438","ServerKey":"pl181","X":363,"Y":408},{"Bonus":0,"Continent":"K63","ID":28439,"Name":".///...//././././././././","PlayerID":849097937,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28439","ServerKey":"pl181","X":381,"Y":609},{"Bonus":0,"Continent":"K65","ID":28440,"Name":"0512","PlayerID":698659980,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28440","ServerKey":"pl181","X":520,"Y":668},{"Bonus":1,"Continent":"K34","ID":28441,"Name":"0017","PlayerID":699431255,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28441","ServerKey":"pl181","X":415,"Y":356},{"Bonus":0,"Continent":"K45","ID":28442,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":10079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28442","ServerKey":"pl181","X":595,"Y":402},{"Bonus":0,"Continent":"K53","ID":28443,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":2818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28443","ServerKey":"pl181","X":345,"Y":547},{"Bonus":0,"Continent":"K35","ID":28445,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28445","ServerKey":"pl181","X":577,"Y":357},{"Bonus":0,"Continent":"K65","ID":28446,"Name":"021","PlayerID":849097799,"Points":7627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28446","ServerKey":"pl181","X":597,"Y":634},{"Bonus":0,"Continent":"K46","ID":28447,"Name":"Jaaa","PlayerID":698635863,"Points":10618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28447","ServerKey":"pl181","X":664,"Y":487},{"Bonus":0,"Continent":"K34","ID":28448,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28448","ServerKey":"pl181","X":408,"Y":362},{"Bonus":0,"Continent":"K34","ID":28449,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28449","ServerKey":"pl181","X":496,"Y":337},{"Bonus":0,"Continent":"K64","ID":28450,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":11065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28450","ServerKey":"pl181","X":474,"Y":662},{"Bonus":0,"Continent":"K43","ID":28451,"Name":"001.Phantom Menace","PlayerID":8967440,"Points":8876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28451","ServerKey":"pl181","X":361,"Y":409},{"Bonus":0,"Continent":"K63","ID":28453,"Name":"043.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28453","ServerKey":"pl181","X":388,"Y":626},{"Bonus":0,"Continent":"K63","ID":28454,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28454","ServerKey":"pl181","X":380,"Y":619},{"Bonus":0,"Continent":"K65","ID":28455,"Name":"034 plemienny serniczek","PlayerID":8954402,"Points":10829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28455","ServerKey":"pl181","X":517,"Y":665},{"Bonus":3,"Continent":"K33","ID":28456,"Name":"cc Zarabie","PlayerID":3909522,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28456","ServerKey":"pl181","X":394,"Y":372},{"Bonus":0,"Continent":"K53","ID":28457,"Name":"009.Wioska jedyny1taki","PlayerID":1830149,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28457","ServerKey":"pl181","X":333,"Y":510},{"Bonus":0,"Continent":"K34","ID":28458,"Name":"158...wSCHODDD","PlayerID":6920960,"Points":8699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28458","ServerKey":"pl181","X":493,"Y":331},{"Bonus":0,"Continent":"K35","ID":28459,"Name":"Lord Lord Franek .#006","PlayerID":698420691,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28459","ServerKey":"pl181","X":525,"Y":333},{"Bonus":0,"Continent":"K64","ID":28460,"Name":"Zamek Drakenhof","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28460","ServerKey":"pl181","X":428,"Y":647},{"Bonus":0,"Continent":"K35","ID":28461,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28461","ServerKey":"pl181","X":583,"Y":359},{"Bonus":0,"Continent":"K35","ID":28462,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28462","ServerKey":"pl181","X":590,"Y":362},{"Bonus":0,"Continent":"K43","ID":28463,"Name":"MELISKA","PlayerID":699794765,"Points":8799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28463","ServerKey":"pl181","X":340,"Y":466},{"Bonus":0,"Continent":"K63","ID":28465,"Name":"J001.","PlayerID":849090130,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28465","ServerKey":"pl181","X":364,"Y":602},{"Bonus":0,"Continent":"K34","ID":28466,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28466","ServerKey":"pl181","X":437,"Y":344},{"Bonus":0,"Continent":"K63","ID":28467,"Name":"1v9 machine","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28467","ServerKey":"pl181","X":387,"Y":620},{"Bonus":0,"Continent":"K56","ID":28468,"Name":"B.058","PlayerID":9188016,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28468","ServerKey":"pl181","X":668,"Y":508},{"Bonus":0,"Continent":"K65","ID":28469,"Name":"0513","PlayerID":698659980,"Points":9636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28469","ServerKey":"pl181","X":530,"Y":665},{"Bonus":0,"Continent":"K34","ID":28471,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":8086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28471","ServerKey":"pl181","X":400,"Y":363},{"Bonus":0,"Continent":"K65","ID":28472,"Name":"0567","PlayerID":698659980,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28472","ServerKey":"pl181","X":564,"Y":653},{"Bonus":0,"Continent":"K46","ID":28473,"Name":"Jehu_Kingdom_41","PlayerID":8785314,"Points":7802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28473","ServerKey":"pl181","X":647,"Y":427},{"Bonus":0,"Continent":"K65","ID":28474,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28474","ServerKey":"pl181","X":596,"Y":630},{"Bonus":0,"Continent":"K46","ID":28475,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28475","ServerKey":"pl181","X":665,"Y":477},{"Bonus":0,"Continent":"K56","ID":28477,"Name":"074","PlayerID":698786826,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28477","ServerKey":"pl181","X":630,"Y":598},{"Bonus":0,"Continent":"K35","ID":28478,"Name":"001) DzierĆŒoniĂłw","PlayerID":849097103,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28478","ServerKey":"pl181","X":544,"Y":347},{"Bonus":0,"Continent":"K63","ID":28479,"Name":"Pobozowisko","PlayerID":699513260,"Points":10951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28479","ServerKey":"pl181","X":381,"Y":619},{"Bonus":0,"Continent":"K46","ID":28480,"Name":"062 | PALESTINA","PlayerID":9228039,"Points":2945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28480","ServerKey":"pl181","X":648,"Y":428},{"Bonus":0,"Continent":"K53","ID":28481,"Name":"deff 100 %","PlayerID":849012521,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28481","ServerKey":"pl181","X":350,"Y":568},{"Bonus":0,"Continent":"K35","ID":28482,"Name":"Lord Lord Franek .#121","PlayerID":698420691,"Points":7931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28482","ServerKey":"pl181","X":527,"Y":336},{"Bonus":0,"Continent":"K56","ID":28483,"Name":"B 025","PlayerID":8078914,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28483","ServerKey":"pl181","X":661,"Y":533},{"Bonus":0,"Continent":"K53","ID":28485,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28485","ServerKey":"pl181","X":359,"Y":583},{"Bonus":0,"Continent":"K64","ID":28486,"Name":"Taka007","PlayerID":848999671,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28486","ServerKey":"pl181","X":477,"Y":664},{"Bonus":0,"Continent":"K53","ID":28487,"Name":"Denger 11","PlayerID":698353083,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28487","ServerKey":"pl181","X":360,"Y":586},{"Bonus":0,"Continent":"K64","ID":28488,"Name":"Abdoulxx","PlayerID":849089459,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28488","ServerKey":"pl181","X":474,"Y":657},{"Bonus":0,"Continent":"K46","ID":28489,"Name":"Jaaa","PlayerID":698635863,"Points":9214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28489","ServerKey":"pl181","X":665,"Y":493},{"Bonus":0,"Continent":"K66","ID":28491,"Name":"028","PlayerID":699567608,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28491","ServerKey":"pl181","X":627,"Y":612},{"Bonus":0,"Continent":"K56","ID":28492,"Name":"0010","PlayerID":6510480,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28492","ServerKey":"pl181","X":621,"Y":523},{"Bonus":0,"Continent":"K64","ID":28493,"Name":"020.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28493","ServerKey":"pl181","X":402,"Y":634},{"Bonus":0,"Continent":"K34","ID":28494,"Name":"A-039","PlayerID":8419570,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28494","ServerKey":"pl181","X":403,"Y":361},{"Bonus":0,"Continent":"K35","ID":28495,"Name":"Lord Lord Franek .#162","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28495","ServerKey":"pl181","X":508,"Y":335},{"Bonus":0,"Continent":"K56","ID":28496,"Name":"O18 Temuco","PlayerID":699272880,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28496","ServerKey":"pl181","X":663,"Y":521},{"Bonus":0,"Continent":"K35","ID":28498,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28498","ServerKey":"pl181","X":562,"Y":350},{"Bonus":0,"Continent":"K53","ID":28499,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":5518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28499","ServerKey":"pl181","X":345,"Y":554},{"Bonus":0,"Continent":"K46","ID":28500,"Name":"I004","PlayerID":699722599,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28500","ServerKey":"pl181","X":663,"Y":458},{"Bonus":0,"Continent":"K65","ID":28501,"Name":"sony911","PlayerID":1415009,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28501","ServerKey":"pl181","X":584,"Y":646},{"Bonus":0,"Continent":"K66","ID":28502,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28502","ServerKey":"pl181","X":620,"Y":619},{"Bonus":0,"Continent":"K56","ID":28503,"Name":"46k$ Grvvyq","PlayerID":699676005,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28503","ServerKey":"pl181","X":650,"Y":571},{"Bonus":0,"Continent":"K53","ID":28504,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":5304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28504","ServerKey":"pl181","X":340,"Y":556},{"Bonus":0,"Continent":"K56","ID":28507,"Name":"O21 Valdivia","PlayerID":699272880,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28507","ServerKey":"pl181","X":664,"Y":532},{"Bonus":0,"Continent":"K34","ID":28508,"Name":"Wioska barbarzyƄska","PlayerID":8847546,"Points":8309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28508","ServerKey":"pl181","X":492,"Y":340},{"Bonus":0,"Continent":"K65","ID":28510,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28510","ServerKey":"pl181","X":517,"Y":666},{"Bonus":0,"Continent":"K64","ID":28511,"Name":"009 Cidaris","PlayerID":699834004,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28511","ServerKey":"pl181","X":469,"Y":663},{"Bonus":0,"Continent":"K36","ID":28512,"Name":"--one eye jack","PlayerID":8096537,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28512","ServerKey":"pl181","X":622,"Y":390},{"Bonus":0,"Continent":"K43","ID":28513,"Name":"*268*","PlayerID":699273451,"Points":2339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28513","ServerKey":"pl181","X":353,"Y":429},{"Bonus":0,"Continent":"K53","ID":28514,"Name":"Dajanka 19","PlayerID":849012843,"Points":1442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28514","ServerKey":"pl181","X":343,"Y":549},{"Bonus":0,"Continent":"K56","ID":28515,"Name":"078","PlayerID":849095227,"Points":9767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28515","ServerKey":"pl181","X":654,"Y":558},{"Bonus":0,"Continent":"K65","ID":28516,"Name":"0256","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28516","ServerKey":"pl181","X":561,"Y":655},{"Bonus":0,"Continent":"K43","ID":28517,"Name":"2.04","PlayerID":3502565,"Points":3648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28517","ServerKey":"pl181","X":343,"Y":453},{"Bonus":0,"Continent":"K64","ID":28518,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":4915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28518","ServerKey":"pl181","X":416,"Y":646},{"Bonus":0,"Continent":"K35","ID":28519,"Name":"004","PlayerID":849087786,"Points":6039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28519","ServerKey":"pl181","X":550,"Y":340},{"Bonus":0,"Continent":"K65","ID":28520,"Name":"*002","PlayerID":699567608,"Points":8862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28520","ServerKey":"pl181","X":596,"Y":638},{"Bonus":0,"Continent":"K63","ID":28521,"Name":"Pobozowisko","PlayerID":699513260,"Points":8121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28521","ServerKey":"pl181","X":380,"Y":609},{"Bonus":0,"Continent":"K46","ID":28522,"Name":"I070","PlayerID":699722599,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28522","ServerKey":"pl181","X":662,"Y":455},{"Bonus":0,"Continent":"K33","ID":28523,"Name":"drewutnia","PlayerID":8419570,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28523","ServerKey":"pl181","X":385,"Y":375},{"Bonus":0,"Continent":"K56","ID":28524,"Name":"046","PlayerID":699351301,"Points":4922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28524","ServerKey":"pl181","X":662,"Y":508},{"Bonus":0,"Continent":"K45","ID":28526,"Name":"180","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28526","ServerKey":"pl181","X":579,"Y":421},{"Bonus":0,"Continent":"K43","ID":28527,"Name":"M181_036","PlayerID":393668,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28527","ServerKey":"pl181","X":347,"Y":425},{"Bonus":0,"Continent":"K65","ID":28528,"Name":"0514","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28528","ServerKey":"pl181","X":537,"Y":660},{"Bonus":0,"Continent":"K66","ID":28529,"Name":"026","PlayerID":699567608,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28529","ServerKey":"pl181","X":628,"Y":607},{"Bonus":0,"Continent":"K65","ID":28530,"Name":"0541","PlayerID":698659980,"Points":5938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28530","ServerKey":"pl181","X":563,"Y":655},{"Bonus":0,"Continent":"K56","ID":28531,"Name":"057","PlayerID":699413040,"Points":6551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28531","ServerKey":"pl181","X":667,"Y":523},{"Bonus":6,"Continent":"K34","ID":28532,"Name":"#0075 barbarzyƄska","PlayerID":1238300,"Points":8738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28532","ServerKey":"pl181","X":473,"Y":336},{"Bonus":0,"Continent":"K34","ID":28533,"Name":"Lord Lord Franek .#163","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28533","ServerKey":"pl181","X":499,"Y":333},{"Bonus":0,"Continent":"K34","ID":28534,"Name":"#0179 MiBM","PlayerID":1238300,"Points":7184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28534","ServerKey":"pl181","X":490,"Y":331},{"Bonus":0,"Continent":"K33","ID":28535,"Name":"Wioska 10","PlayerID":849096544,"Points":3875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28535","ServerKey":"pl181","X":378,"Y":384},{"Bonus":0,"Continent":"K43","ID":28536,"Name":",,,","PlayerID":849098784,"Points":2137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28536","ServerKey":"pl181","X":348,"Y":443},{"Bonus":0,"Continent":"K43","ID":28537,"Name":"M181_003","PlayerID":393668,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28537","ServerKey":"pl181","X":345,"Y":431},{"Bonus":0,"Continent":"K63","ID":28538,"Name":"039 Boru1996 #3","PlayerID":6354098,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28538","ServerKey":"pl181","X":386,"Y":625},{"Bonus":7,"Continent":"K53","ID":28539,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":8321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28539","ServerKey":"pl181","X":350,"Y":576},{"Bonus":0,"Continent":"K66","ID":28540,"Name":"0088","PlayerID":698416970,"Points":8911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28540","ServerKey":"pl181","X":612,"Y":627},{"Bonus":0,"Continent":"K56","ID":28541,"Name":"046","PlayerID":849095227,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28541","ServerKey":"pl181","X":658,"Y":547},{"Bonus":0,"Continent":"K46","ID":28542,"Name":"A018 goƛć fabianello","PlayerID":113796,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28542","ServerKey":"pl181","X":660,"Y":463},{"Bonus":0,"Continent":"K46","ID":28543,"Name":"I028 3 W Nocy","PlayerID":699722599,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28543","ServerKey":"pl181","X":659,"Y":440},{"Bonus":0,"Continent":"K64","ID":28545,"Name":"A34","PlayerID":698652014,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28545","ServerKey":"pl181","X":472,"Y":663},{"Bonus":0,"Continent":"K34","ID":28546,"Name":"North Barba 024","PlayerID":699796330,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28546","ServerKey":"pl181","X":426,"Y":354},{"Bonus":0,"Continent":"K63","ID":28548,"Name":".:004:.","PlayerID":7417116,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28548","ServerKey":"pl181","X":374,"Y":610},{"Bonus":0,"Continent":"K64","ID":28549,"Name":"KUZYN","PlayerID":848913998,"Points":7993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28549","ServerKey":"pl181","X":416,"Y":642},{"Bonus":0,"Continent":"K53","ID":28550,"Name":"018.Barbara2","PlayerID":1830149,"Points":3749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28550","ServerKey":"pl181","X":334,"Y":509},{"Bonus":0,"Continent":"K53","ID":28551,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28551","ServerKey":"pl181","X":360,"Y":582},{"Bonus":0,"Continent":"K43","ID":28552,"Name":"*138*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28552","ServerKey":"pl181","X":357,"Y":417},{"Bonus":0,"Continent":"K35","ID":28553,"Name":".:027:. ƁOBUZIK","PlayerID":848934935,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28553","ServerKey":"pl181","X":553,"Y":370},{"Bonus":0,"Continent":"K35","ID":28554,"Name":"119 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28554","ServerKey":"pl181","X":555,"Y":345},{"Bonus":0,"Continent":"K34","ID":28555,"Name":"024... FELEK_PóƂnoc","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28555","ServerKey":"pl181","X":461,"Y":348},{"Bonus":0,"Continent":"K56","ID":28556,"Name":"=055= Wioska barbarzyƄska","PlayerID":3781794,"Points":8647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28556","ServerKey":"pl181","X":645,"Y":583},{"Bonus":0,"Continent":"K66","ID":28557,"Name":"zzzRezygnacja 02","PlayerID":699778867,"Points":10131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28557","ServerKey":"pl181","X":630,"Y":607},{"Bonus":0,"Continent":"K65","ID":28558,"Name":"0234","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28558","ServerKey":"pl181","X":535,"Y":662},{"Bonus":0,"Continent":"K64","ID":28559,"Name":"Wioska TakaTo","PlayerID":848999671,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28559","ServerKey":"pl181","X":476,"Y":654},{"Bonus":0,"Continent":"K56","ID":28560,"Name":"046","PlayerID":699413040,"Points":9245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28560","ServerKey":"pl181","X":668,"Y":519},{"Bonus":0,"Continent":"K43","ID":28561,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28561","ServerKey":"pl181","X":394,"Y":465},{"Bonus":0,"Continent":"K43","ID":28562,"Name":"Khorinis","PlayerID":849097716,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28562","ServerKey":"pl181","X":343,"Y":436},{"Bonus":0,"Continent":"K63","ID":28563,"Name":"Valhalla 4.","PlayerID":849097002,"Points":9774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28563","ServerKey":"pl181","X":371,"Y":604},{"Bonus":0,"Continent":"K65","ID":28565,"Name":"0568","PlayerID":698659980,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28565","ServerKey":"pl181","X":568,"Y":655},{"Bonus":0,"Continent":"K66","ID":28566,"Name":"Pustostan","PlayerID":2269943,"Points":6738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28566","ServerKey":"pl181","X":635,"Y":603},{"Bonus":0,"Continent":"K64","ID":28567,"Name":"Psycha Siada","PlayerID":698807570,"Points":8622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28567","ServerKey":"pl181","X":457,"Y":660},{"Bonus":0,"Continent":"K65","ID":28568,"Name":"sony911","PlayerID":1415009,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28568","ServerKey":"pl181","X":583,"Y":646},{"Bonus":0,"Continent":"K34","ID":28569,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28569","ServerKey":"pl181","X":499,"Y":335},{"Bonus":0,"Continent":"K35","ID":28570,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28570","ServerKey":"pl181","X":562,"Y":345},{"Bonus":0,"Continent":"K34","ID":28571,"Name":"K34 - [137] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28571","ServerKey":"pl181","X":441,"Y":348},{"Bonus":0,"Continent":"K46","ID":28572,"Name":"43. KaruTown","PlayerID":6822957,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28572","ServerKey":"pl181","X":641,"Y":410},{"Bonus":0,"Continent":"K64","ID":28573,"Name":"A09","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28573","ServerKey":"pl181","X":469,"Y":664},{"Bonus":0,"Continent":"K64","ID":28574,"Name":"010.","PlayerID":849034882,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28574","ServerKey":"pl181","X":485,"Y":648},{"Bonus":0,"Continent":"K56","ID":28577,"Name":"B 026","PlayerID":8078914,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28577","ServerKey":"pl181","X":659,"Y":537},{"Bonus":0,"Continent":"K34","ID":28578,"Name":"0016","PlayerID":699431255,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28578","ServerKey":"pl181","X":414,"Y":356},{"Bonus":0,"Continent":"K34","ID":28579,"Name":"#0100 barbarzyƄska","PlayerID":1238300,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28579","ServerKey":"pl181","X":463,"Y":336},{"Bonus":9,"Continent":"K64","ID":28580,"Name":"|008| Elunda !!!!!!!!!!!!!!!!","PlayerID":699393742,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28580","ServerKey":"pl181","X":490,"Y":668},{"Bonus":0,"Continent":"K64","ID":28581,"Name":"004 Cintra","PlayerID":699834004,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28581","ServerKey":"pl181","X":471,"Y":661},{"Bonus":0,"Continent":"K46","ID":28583,"Name":"031 MONETKI","PlayerID":7588382,"Points":9311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28583","ServerKey":"pl181","X":665,"Y":482},{"Bonus":0,"Continent":"K43","ID":28584,"Name":"DW6","PlayerID":393668,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28584","ServerKey":"pl181","X":346,"Y":448},{"Bonus":0,"Continent":"K53","ID":28585,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28585","ServerKey":"pl181","X":334,"Y":518},{"Bonus":0,"Continent":"K64","ID":28587,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":4565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28587","ServerKey":"pl181","X":428,"Y":653},{"Bonus":0,"Continent":"K53","ID":28588,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":6353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28588","ServerKey":"pl181","X":341,"Y":556},{"Bonus":0,"Continent":"K35","ID":28589,"Name":"Klaudek23","PlayerID":849092309,"Points":4136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28589","ServerKey":"pl181","X":595,"Y":364},{"Bonus":0,"Continent":"K43","ID":28590,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28590","ServerKey":"pl181","X":361,"Y":404},{"Bonus":0,"Continent":"K46","ID":28591,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28591","ServerKey":"pl181","X":665,"Y":469},{"Bonus":0,"Continent":"K36","ID":28592,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28592","ServerKey":"pl181","X":627,"Y":388},{"Bonus":0,"Continent":"K64","ID":28593,"Name":"Stanowisko lepienia pierogĂłw","PlayerID":849006145,"Points":7144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28593","ServerKey":"pl181","X":427,"Y":646},{"Bonus":0,"Continent":"K44","ID":28594,"Name":"Popas12","PlayerID":699265922,"Points":9199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28594","ServerKey":"pl181","X":406,"Y":498},{"Bonus":0,"Continent":"K34","ID":28595,"Name":"[B]_[017] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28595","ServerKey":"pl181","X":430,"Y":349},{"Bonus":0,"Continent":"K35","ID":28597,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":3174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28597","ServerKey":"pl181","X":590,"Y":361},{"Bonus":0,"Continent":"K56","ID":28598,"Name":"054","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28598","ServerKey":"pl181","X":661,"Y":534},{"Bonus":0,"Continent":"K65","ID":28599,"Name":"*Nantek","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28599","ServerKey":"pl181","X":572,"Y":646},{"Bonus":0,"Continent":"K64","ID":28600,"Name":"A30","PlayerID":698652014,"Points":3522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28600","ServerKey":"pl181","X":478,"Y":669},{"Bonus":0,"Continent":"K63","ID":28601,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28601","ServerKey":"pl181","X":399,"Y":634},{"Bonus":0,"Continent":"K35","ID":28602,"Name":"kon trojanski","PlayerID":698290319,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28602","ServerKey":"pl181","X":561,"Y":350},{"Bonus":0,"Continent":"K63","ID":28603,"Name":"J008.","PlayerID":849090130,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28603","ServerKey":"pl181","X":367,"Y":600},{"Bonus":0,"Continent":"K34","ID":28604,"Name":"0022","PlayerID":699431255,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28604","ServerKey":"pl181","X":417,"Y":354},{"Bonus":0,"Continent":"K43","ID":28605,"Name":"1.10","PlayerID":3502565,"Points":4603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28605","ServerKey":"pl181","X":340,"Y":444},{"Bonus":0,"Continent":"K66","ID":28606,"Name":"Wioska Krnik","PlayerID":101074,"Points":5557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28606","ServerKey":"pl181","X":604,"Y":626},{"Bonus":0,"Continent":"K53","ID":28607,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28607","ServerKey":"pl181","X":336,"Y":538},{"Bonus":5,"Continent":"K66","ID":28608,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28608","ServerKey":"pl181","X":618,"Y":616},{"Bonus":0,"Continent":"K34","ID":28609,"Name":"027...JEDZIEMY","PlayerID":6920960,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28609","ServerKey":"pl181","X":452,"Y":338},{"Bonus":0,"Continent":"K56","ID":28610,"Name":"22k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28610","ServerKey":"pl181","X":651,"Y":577},{"Bonus":0,"Continent":"K35","ID":28611,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28611","ServerKey":"pl181","X":557,"Y":341},{"Bonus":0,"Continent":"K56","ID":28612,"Name":"=020= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28612","ServerKey":"pl181","X":646,"Y":579},{"Bonus":8,"Continent":"K65","ID":28613,"Name":"*Nadeptane zębem czasu...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28613","ServerKey":"pl181","X":579,"Y":645},{"Bonus":0,"Continent":"K63","ID":28614,"Name":"Valhalla 6.","PlayerID":849097002,"Points":8189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28614","ServerKey":"pl181","X":369,"Y":604},{"Bonus":0,"Continent":"K46","ID":28615,"Name":"103","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28615","ServerKey":"pl181","X":654,"Y":441},{"Bonus":0,"Continent":"K53","ID":28616,"Name":"Dajanka 36","PlayerID":849012843,"Points":832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28616","ServerKey":"pl181","X":355,"Y":575},{"Bonus":0,"Continent":"K55","ID":28617,"Name":"001 Ruda.","PlayerID":699099811,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28617","ServerKey":"pl181","X":593,"Y":565},{"Bonus":0,"Continent":"K64","ID":28618,"Name":"033.","PlayerID":2665207,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28618","ServerKey":"pl181","X":407,"Y":636},{"Bonus":0,"Continent":"K34","ID":28619,"Name":"_3_","PlayerID":9113064,"Points":2826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28619","ServerKey":"pl181","X":495,"Y":334},{"Bonus":0,"Continent":"K36","ID":28620,"Name":"07tonieostatnieslowo","PlayerID":699861004,"Points":7506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28620","ServerKey":"pl181","X":605,"Y":370},{"Bonus":0,"Continent":"K46","ID":28621,"Name":"I012","PlayerID":699722599,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28621","ServerKey":"pl181","X":664,"Y":461},{"Bonus":0,"Continent":"K64","ID":28623,"Name":"C01","PlayerID":698652014,"Points":3570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28623","ServerKey":"pl181","X":439,"Y":652},{"Bonus":0,"Continent":"K35","ID":28624,"Name":"WesoƂych ƚwiąt +","PlayerID":848915730,"Points":8882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28624","ServerKey":"pl181","X":585,"Y":354},{"Bonus":0,"Continent":"K35","ID":28626,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28626","ServerKey":"pl181","X":580,"Y":355},{"Bonus":5,"Continent":"K35","ID":28627,"Name":"Lord Lord Franek .#073","PlayerID":698420691,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28627","ServerKey":"pl181","X":537,"Y":336},{"Bonus":0,"Continent":"K56","ID":28628,"Name":"$1.000 Wioska Groovyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28628","ServerKey":"pl181","X":650,"Y":577},{"Bonus":0,"Continent":"K46","ID":28629,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28629","ServerKey":"pl181","X":665,"Y":479},{"Bonus":0,"Continent":"K64","ID":28630,"Name":"Guardian Star","PlayerID":849006145,"Points":11348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28630","ServerKey":"pl181","X":427,"Y":636},{"Bonus":0,"Continent":"K56","ID":28631,"Name":"075","PlayerID":698786826,"Points":9198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28631","ServerKey":"pl181","X":629,"Y":599},{"Bonus":0,"Continent":"K36","ID":28632,"Name":"026.","PlayerID":699491076,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28632","ServerKey":"pl181","X":630,"Y":393},{"Bonus":0,"Continent":"K43","ID":28633,"Name":"Veni vidi kici kici","PlayerID":6258092,"Points":5966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28633","ServerKey":"pl181","X":340,"Y":459},{"Bonus":0,"Continent":"K56","ID":28634,"Name":"045","PlayerID":699351301,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28634","ServerKey":"pl181","X":663,"Y":547},{"Bonus":0,"Continent":"K65","ID":28635,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28635","ServerKey":"pl181","X":520,"Y":663},{"Bonus":0,"Continent":"K56","ID":28637,"Name":"#108#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28637","ServerKey":"pl181","X":639,"Y":596},{"Bonus":0,"Continent":"K64","ID":28639,"Name":"Ave Why!","PlayerID":698585370,"Points":3478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28639","ServerKey":"pl181","X":492,"Y":666},{"Bonus":0,"Continent":"K34","ID":28640,"Name":"0021","PlayerID":699431255,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28640","ServerKey":"pl181","X":413,"Y":358},{"Bonus":0,"Continent":"K34","ID":28641,"Name":"055KZ","PlayerID":849063849,"Points":4803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28641","ServerKey":"pl181","X":489,"Y":336},{"Bonus":0,"Continent":"K33","ID":28642,"Name":"012","PlayerID":849059457,"Points":4812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28642","ServerKey":"pl181","X":367,"Y":397},{"Bonus":0,"Continent":"K43","ID":28643,"Name":"Wioska KKK","PlayerID":8967440,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28643","ServerKey":"pl181","X":371,"Y":402},{"Bonus":0,"Continent":"K43","ID":28644,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28644","ServerKey":"pl181","X":337,"Y":497},{"Bonus":0,"Continent":"K56","ID":28646,"Name":"075","PlayerID":699351301,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28646","ServerKey":"pl181","X":660,"Y":541},{"Bonus":9,"Continent":"K64","ID":28647,"Name":"KUZYNEIRO","PlayerID":848913998,"Points":8706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28647","ServerKey":"pl181","X":407,"Y":641},{"Bonus":0,"Continent":"K35","ID":28648,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28648","ServerKey":"pl181","X":509,"Y":337},{"Bonus":0,"Continent":"K65","ID":28649,"Name":"0540","PlayerID":698659980,"Points":6326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28649","ServerKey":"pl181","X":564,"Y":655},{"Bonus":0,"Continent":"K64","ID":28650,"Name":"013","PlayerID":698650301,"Points":8217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28650","ServerKey":"pl181","X":483,"Y":665},{"Bonus":0,"Continent":"K43","ID":28651,"Name":"1.09","PlayerID":3502565,"Points":7849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28651","ServerKey":"pl181","X":340,"Y":445},{"Bonus":0,"Continent":"K46","ID":28652,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28652","ServerKey":"pl181","X":667,"Y":475},{"Bonus":0,"Continent":"K53","ID":28653,"Name":"Dąbrowa 0017","PlayerID":849096972,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28653","ServerKey":"pl181","X":359,"Y":591},{"Bonus":0,"Continent":"K43","ID":28654,"Name":"Lululu955","PlayerID":848886056,"Points":4637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28654","ServerKey":"pl181","X":374,"Y":401},{"Bonus":0,"Continent":"K33","ID":28655,"Name":"001 Eldorado","PlayerID":849059457,"Points":10037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28655","ServerKey":"pl181","X":379,"Y":392},{"Bonus":0,"Continent":"K64","ID":28656,"Name":"035 Rivia","PlayerID":699834004,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28656","ServerKey":"pl181","X":469,"Y":662},{"Bonus":0,"Continent":"K43","ID":28657,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28657","ServerKey":"pl181","X":334,"Y":494},{"Bonus":0,"Continent":"K64","ID":28658,"Name":"A16","PlayerID":698652014,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28658","ServerKey":"pl181","X":455,"Y":662},{"Bonus":0,"Continent":"K63","ID":28659,"Name":".///...//././././././././","PlayerID":849097937,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28659","ServerKey":"pl181","X":384,"Y":620},{"Bonus":0,"Continent":"K35","ID":28660,"Name":"Malbork","PlayerID":849108784,"Points":5354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28660","ServerKey":"pl181","X":539,"Y":340},{"Bonus":0,"Continent":"K34","ID":28661,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28661","ServerKey":"pl181","X":408,"Y":363},{"Bonus":0,"Continent":"K56","ID":28662,"Name":"B 004","PlayerID":8078914,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28662","ServerKey":"pl181","X":665,"Y":533},{"Bonus":0,"Continent":"K53","ID":28663,"Name":"Wioska barbarzyƄska","PlayerID":7333216,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28663","ServerKey":"pl181","X":349,"Y":565},{"Bonus":0,"Continent":"K43","ID":28665,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28665","ServerKey":"pl181","X":335,"Y":491},{"Bonus":0,"Continent":"K64","ID":28666,"Name":"Yellow","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28666","ServerKey":"pl181","X":489,"Y":660},{"Bonus":0,"Continent":"K65","ID":28667,"Name":"0264","PlayerID":698659980,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28667","ServerKey":"pl181","X":548,"Y":662},{"Bonus":0,"Continent":"K35","ID":28668,"Name":"Lord Lord Franek .#074","PlayerID":698420691,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28668","ServerKey":"pl181","X":521,"Y":337},{"Bonus":0,"Continent":"K53","ID":28669,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28669","ServerKey":"pl181","X":342,"Y":544},{"Bonus":0,"Continent":"K43","ID":28670,"Name":"Wioska barbarzyƄska D","PlayerID":8967440,"Points":2885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28670","ServerKey":"pl181","X":364,"Y":405},{"Bonus":0,"Continent":"K53","ID":28671,"Name":"deff 100 %","PlayerID":849012521,"Points":8637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28671","ServerKey":"pl181","X":348,"Y":568},{"Bonus":0,"Continent":"K53","ID":28672,"Name":"KAMIOKA","PlayerID":7318949,"Points":5074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28672","ServerKey":"pl181","X":349,"Y":572},{"Bonus":0,"Continent":"K46","ID":28673,"Name":"Grand Hill","PlayerID":1086351,"Points":5527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28673","ServerKey":"pl181","X":649,"Y":418},{"Bonus":0,"Continent":"K64","ID":28674,"Name":"Wioska yen3","PlayerID":950985,"Points":3897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28674","ServerKey":"pl181","X":456,"Y":663},{"Bonus":0,"Continent":"K56","ID":28675,"Name":"O10 Goiania","PlayerID":699272880,"Points":10848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28675","ServerKey":"pl181","X":666,"Y":520},{"Bonus":0,"Continent":"K35","ID":28676,"Name":"ADEN","PlayerID":698588535,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28676","ServerKey":"pl181","X":573,"Y":347},{"Bonus":0,"Continent":"K64","ID":28677,"Name":"Psycha Siada","PlayerID":698807570,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28677","ServerKey":"pl181","X":457,"Y":663},{"Bonus":0,"Continent":"K65","ID":28678,"Name":"017 najlepszy serniczek","PlayerID":8954402,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28678","ServerKey":"pl181","X":507,"Y":663},{"Bonus":0,"Continent":"K53","ID":28679,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28679","ServerKey":"pl181","X":358,"Y":580},{"Bonus":0,"Continent":"K43","ID":28680,"Name":"005 Czerwona Twierdza","PlayerID":699823490,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28680","ServerKey":"pl181","X":332,"Y":481},{"Bonus":6,"Continent":"K56","ID":28681,"Name":"13k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28681","ServerKey":"pl181","X":657,"Y":565},{"Bonus":0,"Continent":"K53","ID":28682,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28682","ServerKey":"pl181","X":341,"Y":538},{"Bonus":0,"Continent":"K34","ID":28683,"Name":"108...centr","PlayerID":6920960,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28683","ServerKey":"pl181","X":454,"Y":342},{"Bonus":0,"Continent":"K56","ID":28684,"Name":"E004","PlayerID":8428196,"Points":9051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28684","ServerKey":"pl181","X":657,"Y":558},{"Bonus":0,"Continent":"K36","ID":28685,"Name":"Wioska barbarzyƄska","PlayerID":699861004,"Points":4811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28685","ServerKey":"pl181","X":606,"Y":370},{"Bonus":0,"Continent":"K63","ID":28686,"Name":"Valhalla 2.","PlayerID":849097002,"Points":9607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28686","ServerKey":"pl181","X":371,"Y":606},{"Bonus":0,"Continent":"K35","ID":28688,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28688","ServerKey":"pl181","X":573,"Y":355},{"Bonus":0,"Continent":"K56","ID":28689,"Name":"Wioska 066","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28689","ServerKey":"pl181","X":638,"Y":587},{"Bonus":0,"Continent":"K34","ID":28690,"Name":"#0146 Thorus5","PlayerID":1238300,"Points":6265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28690","ServerKey":"pl181","X":473,"Y":332},{"Bonus":0,"Continent":"K63","ID":28691,"Name":"Gromkowie 5","PlayerID":7417116,"Points":8780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28691","ServerKey":"pl181","X":370,"Y":609},{"Bonus":0,"Continent":"K65","ID":28692,"Name":"sony911","PlayerID":1415009,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28692","ServerKey":"pl181","X":586,"Y":647},{"Bonus":0,"Continent":"K53","ID":28693,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28693","ServerKey":"pl181","X":337,"Y":541},{"Bonus":0,"Continent":"K35","ID":28694,"Name":"Lord Lord Franek .#164","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28694","ServerKey":"pl181","X":502,"Y":334},{"Bonus":0,"Continent":"K35","ID":28695,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28695","ServerKey":"pl181","X":581,"Y":351},{"Bonus":0,"Continent":"K53","ID":28697,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28697","ServerKey":"pl181","X":341,"Y":535},{"Bonus":0,"Continent":"K65","ID":28698,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28698","ServerKey":"pl181","X":518,"Y":662},{"Bonus":0,"Continent":"K53","ID":28699,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28699","ServerKey":"pl181","X":330,"Y":503},{"Bonus":0,"Continent":"K46","ID":28700,"Name":"39. KaruTown","PlayerID":849060446,"Points":6937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28700","ServerKey":"pl181","X":637,"Y":405},{"Bonus":0,"Continent":"K66","ID":28701,"Name":"Pudelko","PlayerID":2269943,"Points":5692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28701","ServerKey":"pl181","X":633,"Y":604},{"Bonus":0,"Continent":"K35","ID":28702,"Name":"ADEN","PlayerID":698588535,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28702","ServerKey":"pl181","X":573,"Y":349},{"Bonus":0,"Continent":"K35","ID":28703,"Name":"MojeDnoToWaszSzczyt +","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28703","ServerKey":"pl181","X":569,"Y":352},{"Bonus":0,"Continent":"K33","ID":28704,"Name":"Szulernia","PlayerID":7249451,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28704","ServerKey":"pl181","X":387,"Y":377},{"Bonus":0,"Continent":"K33","ID":28705,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":4132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28705","ServerKey":"pl181","X":371,"Y":392},{"Bonus":0,"Continent":"K34","ID":28706,"Name":"North Grudziądz","PlayerID":699796330,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28706","ServerKey":"pl181","X":422,"Y":352},{"Bonus":0,"Continent":"K64","ID":28707,"Name":"029.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28707","ServerKey":"pl181","X":402,"Y":636},{"Bonus":2,"Continent":"K64","ID":28708,"Name":"Witam","PlayerID":698807570,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28708","ServerKey":"pl181","X":452,"Y":656},{"Bonus":0,"Continent":"K35","ID":28710,"Name":"012 Glen Moray","PlayerID":699072129,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28710","ServerKey":"pl181","X":550,"Y":339},{"Bonus":0,"Continent":"K64","ID":28711,"Name":"Psycha Siada","PlayerID":698807570,"Points":8681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28711","ServerKey":"pl181","X":455,"Y":664},{"Bonus":0,"Continent":"K64","ID":28712,"Name":"Taka004","PlayerID":848999671,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28712","ServerKey":"pl181","X":475,"Y":661},{"Bonus":0,"Continent":"K64","ID":28713,"Name":"KUZYN","PlayerID":848913998,"Points":5393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28713","ServerKey":"pl181","X":415,"Y":641},{"Bonus":0,"Continent":"K34","ID":28714,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":8748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28714","ServerKey":"pl181","X":438,"Y":346},{"Bonus":0,"Continent":"K46","ID":28715,"Name":"003. Wiocha","PlayerID":849095599,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28715","ServerKey":"pl181","X":630,"Y":441},{"Bonus":0,"Continent":"K66","ID":28716,"Name":"Gra o Tron","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28716","ServerKey":"pl181","X":614,"Y":616},{"Bonus":0,"Continent":"K53","ID":28718,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28718","ServerKey":"pl181","X":347,"Y":564},{"Bonus":0,"Continent":"K34","ID":28719,"Name":"K34 - [140] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28719","ServerKey":"pl181","X":441,"Y":347},{"Bonus":0,"Continent":"K46","ID":28720,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":7881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28720","ServerKey":"pl181","X":658,"Y":458},{"Bonus":0,"Continent":"K35","ID":28721,"Name":"I#026","PlayerID":2065730,"Points":8480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28721","ServerKey":"pl181","X":597,"Y":369},{"Bonus":0,"Continent":"K34","ID":28723,"Name":"aaaaaaaaaaa","PlayerID":699308637,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28723","ServerKey":"pl181","X":440,"Y":345},{"Bonus":0,"Continent":"K34","ID":28724,"Name":"109...centr","PlayerID":6920960,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28724","ServerKey":"pl181","X":460,"Y":339},{"Bonus":0,"Continent":"K53","ID":28725,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28725","ServerKey":"pl181","X":344,"Y":548},{"Bonus":0,"Continent":"K66","ID":28726,"Name":"091","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28726","ServerKey":"pl181","X":623,"Y":610},{"Bonus":0,"Continent":"K64","ID":28727,"Name":"07. Wangan Midnight","PlayerID":849100262,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28727","ServerKey":"pl181","X":494,"Y":663},{"Bonus":0,"Continent":"K54","ID":28728,"Name":"x Wioska Lord CrazY","PlayerID":698290577,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28728","ServerKey":"pl181","X":404,"Y":505},{"Bonus":0,"Continent":"K35","ID":28729,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28729","ServerKey":"pl181","X":568,"Y":351},{"Bonus":4,"Continent":"K56","ID":28730,"Name":"a moĆŒe off? :)","PlayerID":698768565,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28730","ServerKey":"pl181","X":646,"Y":578},{"Bonus":0,"Continent":"K63","ID":28731,"Name":"007.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28731","ServerKey":"pl181","X":394,"Y":632},{"Bonus":0,"Continent":"K43","ID":28732,"Name":"*151*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28732","ServerKey":"pl181","X":357,"Y":411},{"Bonus":0,"Continent":"K36","ID":28733,"Name":"0115","PlayerID":698416970,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28733","ServerKey":"pl181","X":627,"Y":396},{"Bonus":0,"Continent":"K46","ID":28734,"Name":"I011","PlayerID":699722599,"Points":10128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28734","ServerKey":"pl181","X":662,"Y":458},{"Bonus":0,"Continent":"K53","ID":28735,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28735","ServerKey":"pl181","X":330,"Y":502},{"Bonus":0,"Continent":"K56","ID":28736,"Name":"=056= Wioska barbarzyƄska","PlayerID":3781794,"Points":9932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28736","ServerKey":"pl181","X":646,"Y":580},{"Bonus":0,"Continent":"K53","ID":28737,"Name":"Dajanka 27","PlayerID":849012843,"Points":1623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28737","ServerKey":"pl181","X":354,"Y":583},{"Bonus":0,"Continent":"K36","ID":28738,"Name":"028.","PlayerID":699491076,"Points":6965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28738","ServerKey":"pl181","X":628,"Y":392},{"Bonus":0,"Continent":"K34","ID":28739,"Name":"012","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28739","ServerKey":"pl181","X":455,"Y":338},{"Bonus":7,"Continent":"K64","ID":28740,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28740","ServerKey":"pl181","X":464,"Y":664},{"Bonus":0,"Continent":"K35","ID":28741,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":7531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28741","ServerKey":"pl181","X":583,"Y":355},{"Bonus":0,"Continent":"K33","ID":28743,"Name":"0014","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28743","ServerKey":"pl181","X":390,"Y":379},{"Bonus":0,"Continent":"K46","ID":28744,"Name":"Jehu_Kingdom_42","PlayerID":8785314,"Points":6541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28744","ServerKey":"pl181","X":654,"Y":438},{"Bonus":0,"Continent":"K46","ID":28745,"Name":"Jaaa","PlayerID":698635863,"Points":8902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28745","ServerKey":"pl181","X":670,"Y":498},{"Bonus":0,"Continent":"K46","ID":28746,"Name":"061","PlayerID":7085502,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28746","ServerKey":"pl181","X":662,"Y":486},{"Bonus":0,"Continent":"K64","ID":28747,"Name":"0008","PlayerID":849097175,"Points":4304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28747","ServerKey":"pl181","X":436,"Y":654},{"Bonus":0,"Continent":"K64","ID":28748,"Name":"wLucy","PlayerID":699849210,"Points":5604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28748","ServerKey":"pl181","X":449,"Y":658},{"Bonus":0,"Continent":"K65","ID":28749,"Name":"028","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28749","ServerKey":"pl181","X":563,"Y":650},{"Bonus":0,"Continent":"K46","ID":28750,"Name":"57. KaruTown","PlayerID":9238175,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28750","ServerKey":"pl181","X":655,"Y":431},{"Bonus":0,"Continent":"K53","ID":28751,"Name":"Marvila","PlayerID":699494480,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28751","ServerKey":"pl181","X":354,"Y":587},{"Bonus":0,"Continent":"K64","ID":28752,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28752","ServerKey":"pl181","X":447,"Y":661},{"Bonus":0,"Continent":"K64","ID":28753,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28753","ServerKey":"pl181","X":448,"Y":661},{"Bonus":0,"Continent":"K34","ID":28754,"Name":"#0106 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28754","ServerKey":"pl181","X":480,"Y":333},{"Bonus":0,"Continent":"K46","ID":28755,"Name":"I014 Jamnik","PlayerID":699722599,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28755","ServerKey":"pl181","X":662,"Y":450},{"Bonus":0,"Continent":"K46","ID":28757,"Name":"A025 Flap 1","PlayerID":113796,"Points":6632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28757","ServerKey":"pl181","X":661,"Y":445},{"Bonus":0,"Continent":"K53","ID":28758,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28758","ServerKey":"pl181","X":337,"Y":540},{"Bonus":0,"Continent":"K35","ID":28759,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":5262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28759","ServerKey":"pl181","X":595,"Y":360},{"Bonus":0,"Continent":"K46","ID":28760,"Name":"013 - Mroczna Osada","PlayerID":849035905,"Points":10817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28760","ServerKey":"pl181","X":650,"Y":423},{"Bonus":0,"Continent":"K43","ID":28761,"Name":"V003","PlayerID":849097737,"Points":7395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28761","ServerKey":"pl181","X":350,"Y":423},{"Bonus":0,"Continent":"K65","ID":28762,"Name":"029","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28762","ServerKey":"pl181","X":528,"Y":667},{"Bonus":0,"Continent":"K46","ID":28763,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":9832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28763","ServerKey":"pl181","X":666,"Y":482},{"Bonus":4,"Continent":"K43","ID":28764,"Name":"M181_005","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28764","ServerKey":"pl181","X":346,"Y":428},{"Bonus":0,"Continent":"K34","ID":28765,"Name":"007","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28765","ServerKey":"pl181","X":463,"Y":340},{"Bonus":0,"Continent":"K43","ID":28766,"Name":"4.01","PlayerID":3502565,"Points":7566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28766","ServerKey":"pl181","X":347,"Y":444},{"Bonus":0,"Continent":"K53","ID":28767,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":8717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28767","ServerKey":"pl181","X":348,"Y":571},{"Bonus":0,"Continent":"K56","ID":28768,"Name":"051","PlayerID":849095227,"Points":8550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28768","ServerKey":"pl181","X":658,"Y":537},{"Bonus":0,"Continent":"K56","ID":28769,"Name":"042 Isparta","PlayerID":699272880,"Points":10276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28769","ServerKey":"pl181","X":631,"Y":592},{"Bonus":0,"Continent":"K53","ID":28770,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28770","ServerKey":"pl181","X":336,"Y":541},{"Bonus":0,"Continent":"K65","ID":28771,"Name":"0589","PlayerID":698659980,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28771","ServerKey":"pl181","X":545,"Y":657},{"Bonus":0,"Continent":"K34","ID":28772,"Name":"Szulernia","PlayerID":7249451,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28772","ServerKey":"pl181","X":410,"Y":361},{"Bonus":0,"Continent":"K66","ID":28773,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28773","ServerKey":"pl181","X":610,"Y":630},{"Bonus":0,"Continent":"K65","ID":28774,"Name":"0535","PlayerID":698659980,"Points":5982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28774","ServerKey":"pl181","X":561,"Y":658},{"Bonus":0,"Continent":"K46","ID":28775,"Name":"115","PlayerID":849088515,"Points":8337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28775","ServerKey":"pl181","X":655,"Y":448},{"Bonus":0,"Continent":"K43","ID":28776,"Name":"*096*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28776","ServerKey":"pl181","X":353,"Y":416},{"Bonus":0,"Continent":"K46","ID":28777,"Name":"116","PlayerID":849088515,"Points":7304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28777","ServerKey":"pl181","X":652,"Y":424},{"Bonus":0,"Continent":"K65","ID":28778,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28778","ServerKey":"pl181","X":520,"Y":658},{"Bonus":0,"Continent":"K53","ID":28779,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28779","ServerKey":"pl181","X":337,"Y":502},{"Bonus":0,"Continent":"K65","ID":28780,"Name":"008","PlayerID":849097799,"Points":8314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28780","ServerKey":"pl181","X":599,"Y":639},{"Bonus":0,"Continent":"K53","ID":28781,"Name":"TAJFUN","PlayerID":849097614,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28781","ServerKey":"pl181","X":333,"Y":507},{"Bonus":0,"Continent":"K34","ID":28782,"Name":"#0061 Disco1Panda","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28782","ServerKey":"pl181","X":476,"Y":339},{"Bonus":0,"Continent":"K36","ID":28783,"Name":"Gattacka","PlayerID":699298370,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28783","ServerKey":"pl181","X":616,"Y":375},{"Bonus":0,"Continent":"K64","ID":28784,"Name":"Sk010","PlayerID":8954402,"Points":8450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28784","ServerKey":"pl181","X":443,"Y":661},{"Bonus":0,"Continent":"K64","ID":28785,"Name":"Tu tak trochę sƂabo grzane byƂo","PlayerID":8954402,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28785","ServerKey":"pl181","X":445,"Y":660},{"Bonus":0,"Continent":"K33","ID":28786,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28786","ServerKey":"pl181","X":393,"Y":368},{"Bonus":0,"Continent":"K34","ID":28788,"Name":"Wi005","PlayerID":698239813,"Points":9178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28788","ServerKey":"pl181","X":497,"Y":329},{"Bonus":0,"Continent":"K33","ID":28789,"Name":"cc Lipinki","PlayerID":3909522,"Points":8134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28789","ServerKey":"pl181","X":392,"Y":370},{"Bonus":0,"Continent":"K53","ID":28790,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28790","ServerKey":"pl181","X":354,"Y":578},{"Bonus":0,"Continent":"K35","ID":28791,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28791","ServerKey":"pl181","X":552,"Y":339},{"Bonus":0,"Continent":"K65","ID":28792,"Name":"0515","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28792","ServerKey":"pl181","X":536,"Y":660},{"Bonus":6,"Continent":"K56","ID":28793,"Name":"17k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28793","ServerKey":"pl181","X":653,"Y":574},{"Bonus":0,"Continent":"K34","ID":28794,"Name":"001 Ronaldinho","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28794","ServerKey":"pl181","X":456,"Y":335},{"Bonus":0,"Continent":"K56","ID":28795,"Name":"$7.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28795","ServerKey":"pl181","X":651,"Y":578},{"Bonus":0,"Continent":"K64","ID":28796,"Name":"KUZYN","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28796","ServerKey":"pl181","X":412,"Y":638},{"Bonus":0,"Continent":"K53","ID":28797,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28797","ServerKey":"pl181","X":332,"Y":524},{"Bonus":0,"Continent":"K43","ID":28798,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28798","ServerKey":"pl181","X":334,"Y":490},{"Bonus":0,"Continent":"K63","ID":28799,"Name":"057.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28799","ServerKey":"pl181","X":391,"Y":624},{"Bonus":0,"Continent":"K34","ID":28800,"Name":"125...centr","PlayerID":6920960,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28800","ServerKey":"pl181","X":460,"Y":336},{"Bonus":0,"Continent":"K64","ID":28801,"Name":"Psycha Siada","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28801","ServerKey":"pl181","X":458,"Y":659},{"Bonus":0,"Continent":"K66","ID":28802,"Name":"Grvvyq 120k$","PlayerID":699676005,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28802","ServerKey":"pl181","X":609,"Y":629},{"Bonus":0,"Continent":"K43","ID":28803,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28803","ServerKey":"pl181","X":333,"Y":490},{"Bonus":0,"Continent":"K65","ID":28804,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":9313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28804","ServerKey":"pl181","X":588,"Y":643},{"Bonus":0,"Continent":"K35","ID":28805,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28805","ServerKey":"pl181","X":556,"Y":346},{"Bonus":0,"Continent":"K53","ID":28806,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28806","ServerKey":"pl181","X":343,"Y":548},{"Bonus":0,"Continent":"K64","ID":28807,"Name":"KUZYNEIRO","PlayerID":848913998,"Points":6620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28807","ServerKey":"pl181","X":405,"Y":639},{"Bonus":0,"Continent":"K34","ID":28808,"Name":"069...jaka","PlayerID":6920960,"Points":11063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28808","ServerKey":"pl181","X":448,"Y":350},{"Bonus":0,"Continent":"K65","ID":28809,"Name":"0289","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28809","ServerKey":"pl181","X":539,"Y":662},{"Bonus":0,"Continent":"K64","ID":28810,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28810","ServerKey":"pl181","X":461,"Y":662},{"Bonus":0,"Continent":"K56","ID":28811,"Name":"=060= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28811","ServerKey":"pl181","X":646,"Y":582},{"Bonus":0,"Continent":"K43","ID":28813,"Name":"*079*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28813","ServerKey":"pl181","X":355,"Y":419},{"Bonus":0,"Continent":"K64","ID":28814,"Name":"181","PlayerID":698383417,"Points":8694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28814","ServerKey":"pl181","X":402,"Y":637},{"Bonus":0,"Continent":"K35","ID":28815,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28815","ServerKey":"pl181","X":552,"Y":341},{"Bonus":0,"Continent":"K53","ID":28816,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28816","ServerKey":"pl181","X":362,"Y":589},{"Bonus":0,"Continent":"K66","ID":28818,"Name":"#118#","PlayerID":692803,"Points":8635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28818","ServerKey":"pl181","X":618,"Y":622},{"Bonus":0,"Continent":"K63","ID":28819,"Name":"Pobozowisko","PlayerID":699513260,"Points":5347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28819","ServerKey":"pl181","X":380,"Y":616},{"Bonus":0,"Continent":"K35","ID":28820,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28820","ServerKey":"pl181","X":552,"Y":343},{"Bonus":0,"Continent":"K53","ID":28821,"Name":"Rodzinne historie","PlayerID":698338524,"Points":5853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28821","ServerKey":"pl181","X":336,"Y":529},{"Bonus":0,"Continent":"K36","ID":28822,"Name":"--spearfish","PlayerID":8096537,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28822","ServerKey":"pl181","X":622,"Y":392},{"Bonus":0,"Continent":"K34","ID":28823,"Name":"Konfederacja 8","PlayerID":848915730,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28823","ServerKey":"pl181","X":459,"Y":370},{"Bonus":0,"Continent":"K66","ID":28824,"Name":"010","PlayerID":849097799,"Points":8268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28824","ServerKey":"pl181","X":605,"Y":633},{"Bonus":2,"Continent":"K53","ID":28825,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28825","ServerKey":"pl181","X":353,"Y":576},{"Bonus":0,"Continent":"K56","ID":28826,"Name":"Sony 911","PlayerID":1415009,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28826","ServerKey":"pl181","X":639,"Y":590},{"Bonus":0,"Continent":"K34","ID":28827,"Name":"#0136 Thorus5","PlayerID":1238300,"Points":8657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28827","ServerKey":"pl181","X":474,"Y":332},{"Bonus":0,"Continent":"K56","ID":28828,"Name":"Wioska 067","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28828","ServerKey":"pl181","X":639,"Y":592},{"Bonus":0,"Continent":"K65","ID":28830,"Name":"0516","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28830","ServerKey":"pl181","X":534,"Y":661},{"Bonus":0,"Continent":"K34","ID":28831,"Name":"111...centr","PlayerID":6920960,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28831","ServerKey":"pl181","X":452,"Y":340},{"Bonus":0,"Continent":"K35","ID":28832,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":5599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28832","ServerKey":"pl181","X":530,"Y":340},{"Bonus":0,"Continent":"K56","ID":28834,"Name":"B.04","PlayerID":699737356,"Points":7327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28834","ServerKey":"pl181","X":669,"Y":502},{"Bonus":0,"Continent":"K64","ID":28835,"Name":"006 Tretogor","PlayerID":699834004,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28835","ServerKey":"pl181","X":476,"Y":659},{"Bonus":0,"Continent":"K64","ID":28836,"Name":"Psycha Siada","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28836","ServerKey":"pl181","X":456,"Y":661},{"Bonus":0,"Continent":"K35","ID":28837,"Name":"Lord Lord Franek .#075","PlayerID":698420691,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28837","ServerKey":"pl181","X":527,"Y":335},{"Bonus":0,"Continent":"K66","ID":28838,"Name":"PUSTA","PlayerID":6929240,"Points":4858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28838","ServerKey":"pl181","X":631,"Y":600},{"Bonus":0,"Continent":"K46","ID":28839,"Name":"Jehu_Kingdom_51","PlayerID":8785314,"Points":5708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28839","ServerKey":"pl181","X":653,"Y":434},{"Bonus":0,"Continent":"K53","ID":28840,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28840","ServerKey":"pl181","X":350,"Y":578},{"Bonus":0,"Continent":"K44","ID":28841,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":7857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28841","ServerKey":"pl181","X":436,"Y":436},{"Bonus":0,"Continent":"K43","ID":28842,"Name":"*140*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28842","ServerKey":"pl181","X":355,"Y":412},{"Bonus":0,"Continent":"K34","ID":28843,"Name":"080...barbarka----------","PlayerID":6920960,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28843","ServerKey":"pl181","X":475,"Y":333},{"Bonus":0,"Continent":"K66","ID":28844,"Name":"014","PlayerID":849097799,"Points":8203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28844","ServerKey":"pl181","X":602,"Y":632},{"Bonus":0,"Continent":"K35","ID":28845,"Name":"Taki Pan","PlayerID":698739350,"Points":4525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28845","ServerKey":"pl181","X":505,"Y":332},{"Bonus":0,"Continent":"K35","ID":28846,"Name":"Wrath 011","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28846","ServerKey":"pl181","X":567,"Y":346},{"Bonus":0,"Continent":"K64","ID":28847,"Name":"003","PlayerID":698650301,"Points":8104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28847","ServerKey":"pl181","X":475,"Y":657},{"Bonus":0,"Continent":"K43","ID":28848,"Name":"Trelis","PlayerID":849097716,"Points":6265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28848","ServerKey":"pl181","X":343,"Y":435},{"Bonus":0,"Continent":"K36","ID":28849,"Name":"--DOBRA MAC","PlayerID":8096537,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28849","ServerKey":"pl181","X":622,"Y":385},{"Bonus":0,"Continent":"K43","ID":28850,"Name":"wieƛ 2","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28850","ServerKey":"pl181","X":347,"Y":429},{"Bonus":0,"Continent":"K53","ID":28852,"Name":"Nowy ƛwiatA","PlayerID":849084005,"Points":4407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28852","ServerKey":"pl181","X":342,"Y":558},{"Bonus":0,"Continent":"K53","ID":28854,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28854","ServerKey":"pl181","X":335,"Y":535},{"Bonus":0,"Continent":"K46","ID":28855,"Name":"008 - Mroczna Osada","PlayerID":849035905,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28855","ServerKey":"pl181","X":647,"Y":417},{"Bonus":0,"Continent":"K64","ID":28856,"Name":"Wioska sobie 016","PlayerID":7349282,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28856","ServerKey":"pl181","X":403,"Y":638},{"Bonus":8,"Continent":"K46","ID":28857,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28857","ServerKey":"pl181","X":662,"Y":472},{"Bonus":0,"Continent":"K46","ID":28858,"Name":"031 - Mroczna Osada","PlayerID":849035905,"Points":7648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28858","ServerKey":"pl181","X":641,"Y":418},{"Bonus":0,"Continent":"K36","ID":28859,"Name":"greeece","PlayerID":698290319,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28859","ServerKey":"pl181","X":635,"Y":398},{"Bonus":0,"Continent":"K65","ID":28860,"Name":"4 barb","PlayerID":848995242,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28860","ServerKey":"pl181","X":584,"Y":645},{"Bonus":0,"Continent":"K56","ID":28862,"Name":"=065= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28862","ServerKey":"pl181","X":656,"Y":556},{"Bonus":0,"Continent":"K43","ID":28863,"Name":"*213*","PlayerID":699273451,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28863","ServerKey":"pl181","X":364,"Y":404},{"Bonus":0,"Continent":"K56","ID":28864,"Name":"Grvvyq 109k$","PlayerID":699676005,"Points":3544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28864","ServerKey":"pl181","X":656,"Y":566},{"Bonus":0,"Continent":"K35","ID":28865,"Name":"-0001-","PlayerID":2972329,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28865","ServerKey":"pl181","X":542,"Y":335},{"Bonus":0,"Continent":"K46","ID":28866,"Name":"035 - Mroczna Osada","PlayerID":849035905,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28866","ServerKey":"pl181","X":645,"Y":412},{"Bonus":0,"Continent":"K35","ID":28867,"Name":"troja2","PlayerID":698290319,"Points":8933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28867","ServerKey":"pl181","X":563,"Y":346},{"Bonus":0,"Continent":"K46","ID":28868,"Name":"asd","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28868","ServerKey":"pl181","X":669,"Y":479},{"Bonus":0,"Continent":"K65","ID":28869,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28869","ServerKey":"pl181","X":576,"Y":650},{"Bonus":0,"Continent":"K54","ID":28870,"Name":"KARTAGINA ..6","PlayerID":8438707,"Points":8698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28870","ServerKey":"pl181","X":455,"Y":579},{"Bonus":0,"Continent":"K35","ID":28871,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":7775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28871","ServerKey":"pl181","X":546,"Y":337},{"Bonus":0,"Continent":"K43","ID":28872,"Name":"*144*","PlayerID":699273451,"Points":8405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28872","ServerKey":"pl181","X":355,"Y":411},{"Bonus":0,"Continent":"K35","ID":28873,"Name":"berkuza 3","PlayerID":7340529,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28873","ServerKey":"pl181","X":591,"Y":356},{"Bonus":0,"Continent":"K66","ID":28874,"Name":"#007#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28874","ServerKey":"pl181","X":619,"Y":615},{"Bonus":0,"Continent":"K34","ID":28875,"Name":"0105","PlayerID":699431255,"Points":4602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28875","ServerKey":"pl181","X":409,"Y":356},{"Bonus":0,"Continent":"K53","ID":28876,"Name":"000","PlayerID":7333216,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28876","ServerKey":"pl181","X":344,"Y":572},{"Bonus":0,"Continent":"K34","ID":28877,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":3699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28877","ServerKey":"pl181","X":493,"Y":332},{"Bonus":0,"Continent":"K65","ID":28878,"Name":"0517","PlayerID":698659980,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28878","ServerKey":"pl181","X":531,"Y":661},{"Bonus":0,"Continent":"K64","ID":28879,"Name":"psycha sitting","PlayerID":699736927,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28879","ServerKey":"pl181","X":429,"Y":654},{"Bonus":0,"Continent":"K35","ID":28881,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28881","ServerKey":"pl181","X":565,"Y":351},{"Bonus":0,"Continent":"K64","ID":28882,"Name":"KUZYN","PlayerID":848913998,"Points":5731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28882","ServerKey":"pl181","X":417,"Y":642},{"Bonus":0,"Continent":"K35","ID":28883,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28883","ServerKey":"pl181","X":566,"Y":351},{"Bonus":0,"Continent":"K46","ID":28884,"Name":"110","PlayerID":849088515,"Points":7971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28884","ServerKey":"pl181","X":652,"Y":441},{"Bonus":0,"Continent":"K46","ID":28885,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28885","ServerKey":"pl181","X":663,"Y":467},{"Bonus":0,"Continent":"K46","ID":28886,"Name":"016","PlayerID":7085502,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28886","ServerKey":"pl181","X":667,"Y":497},{"Bonus":0,"Continent":"K64","ID":28887,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28887","ServerKey":"pl181","X":414,"Y":647},{"Bonus":0,"Continent":"K33","ID":28888,"Name":"Zulu","PlayerID":699842853,"Points":1273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28888","ServerKey":"pl181","X":375,"Y":389},{"Bonus":0,"Continent":"K43","ID":28889,"Name":"DW8","PlayerID":393668,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28889","ServerKey":"pl181","X":343,"Y":446},{"Bonus":0,"Continent":"K53","ID":28890,"Name":"J05","PlayerID":849090130,"Points":3226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28890","ServerKey":"pl181","X":365,"Y":595},{"Bonus":0,"Continent":"K56","ID":28891,"Name":"Wioska barbarzyƄska","PlayerID":8337151,"Points":5251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28891","ServerKey":"pl181","X":632,"Y":596},{"Bonus":0,"Continent":"K35","ID":28892,"Name":"Wrath 001","PlayerID":699756210,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28892","ServerKey":"pl181","X":570,"Y":346},{"Bonus":0,"Continent":"K34","ID":28893,"Name":"#0124 tomek791103","PlayerID":1238300,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28893","ServerKey":"pl181","X":484,"Y":333},{"Bonus":0,"Continent":"K43","ID":28894,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28894","ServerKey":"pl181","X":335,"Y":461},{"Bonus":0,"Continent":"K34","ID":28895,"Name":"ZachĂłd","PlayerID":849096310,"Points":8846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28895","ServerKey":"pl181","X":431,"Y":350},{"Bonus":0,"Continent":"K34","ID":28896,"Name":"049...CLIO","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28896","ServerKey":"pl181","X":444,"Y":340},{"Bonus":0,"Continent":"K65","ID":28897,"Name":"ObrzeĆŒa 098","PlayerID":848915531,"Points":6437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28897","ServerKey":"pl181","X":553,"Y":662},{"Bonus":0,"Continent":"K53","ID":28898,"Name":"Vasco da Gama","PlayerID":699494480,"Points":9480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28898","ServerKey":"pl181","X":356,"Y":586},{"Bonus":0,"Continent":"K65","ID":28899,"Name":"mys","PlayerID":699828685,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28899","ServerKey":"pl181","X":567,"Y":650},{"Bonus":0,"Continent":"K43","ID":28900,"Name":"1.01","PlayerID":3502565,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28900","ServerKey":"pl181","X":339,"Y":449},{"Bonus":0,"Continent":"K65","ID":28901,"Name":"0569","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28901","ServerKey":"pl181","X":566,"Y":652},{"Bonus":0,"Continent":"K54","ID":28902,"Name":"Fajna 036","PlayerID":8438707,"Points":8801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28902","ServerKey":"pl181","X":456,"Y":576},{"Bonus":0,"Continent":"K33","ID":28903,"Name":"Szulernia","PlayerID":7249451,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28903","ServerKey":"pl181","X":383,"Y":376},{"Bonus":0,"Continent":"K66","ID":28904,"Name":"020","PlayerID":849097799,"Points":7793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28904","ServerKey":"pl181","X":604,"Y":634},{"Bonus":0,"Continent":"K36","ID":28906,"Name":"Gattacka","PlayerID":699298370,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28906","ServerKey":"pl181","X":614,"Y":382},{"Bonus":0,"Continent":"K46","ID":28907,"Name":"021","PlayerID":7085502,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28907","ServerKey":"pl181","X":665,"Y":490},{"Bonus":0,"Continent":"K56","ID":28908,"Name":"57k$ Grvvyq","PlayerID":699676005,"Points":7123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28908","ServerKey":"pl181","X":655,"Y":568},{"Bonus":0,"Continent":"K43","ID":28909,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28909","ServerKey":"pl181","X":337,"Y":459},{"Bonus":0,"Continent":"K43","ID":28910,"Name":"1.05","PlayerID":3502565,"Points":6666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28910","ServerKey":"pl181","X":338,"Y":447},{"Bonus":0,"Continent":"K56","ID":28911,"Name":"D 018","PlayerID":8078914,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28911","ServerKey":"pl181","X":664,"Y":505},{"Bonus":0,"Continent":"K35","ID":28912,"Name":"085 ƚwięta BoĆŒego Narodzenia","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28912","ServerKey":"pl181","X":599,"Y":364},{"Bonus":0,"Continent":"K35","ID":28913,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28913","ServerKey":"pl181","X":559,"Y":341},{"Bonus":0,"Continent":"K56","ID":28914,"Name":"Wioska barbarzyƄska","PlayerID":699851345,"Points":4733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28914","ServerKey":"pl181","X":663,"Y":508},{"Bonus":0,"Continent":"K64","ID":28915,"Name":"DO6orzeƂ z poƂamanymi skrzydƂami","PlayerID":849037407,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28915","ServerKey":"pl181","X":459,"Y":665},{"Bonus":0,"Continent":"K53","ID":28916,"Name":"Dąbrowa 0002","PlayerID":849096972,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28916","ServerKey":"pl181","X":357,"Y":591},{"Bonus":0,"Continent":"K34","ID":28917,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":7236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28917","ServerKey":"pl181","X":400,"Y":362},{"Bonus":0,"Continent":"K35","ID":28919,"Name":"Wioska 1","PlayerID":849097220,"Points":8911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28919","ServerKey":"pl181","X":539,"Y":352},{"Bonus":0,"Continent":"K34","ID":28920,"Name":"#0096 barbarzyƄska","PlayerID":1238300,"Points":8139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28920","ServerKey":"pl181","X":461,"Y":342},{"Bonus":0,"Continent":"K34","ID":28921,"Name":"0068","PlayerID":699431255,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28921","ServerKey":"pl181","X":417,"Y":351},{"Bonus":0,"Continent":"K34","ID":28922,"Name":"#0099 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28922","ServerKey":"pl181","X":463,"Y":335},{"Bonus":0,"Continent":"K65","ID":28923,"Name":"0290","PlayerID":698659980,"Points":9078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28923","ServerKey":"pl181","X":557,"Y":653},{"Bonus":0,"Continent":"K64","ID":28924,"Name":"Ave Why!","PlayerID":698585370,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28924","ServerKey":"pl181","X":499,"Y":667},{"Bonus":0,"Continent":"K33","ID":28925,"Name":"Szlachcic","PlayerID":698160606,"Points":7359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28925","ServerKey":"pl181","X":392,"Y":368},{"Bonus":0,"Continent":"K36","ID":28926,"Name":"Wioska barbarzyƄska","PlayerID":699759128,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28926","ServerKey":"pl181","X":631,"Y":393},{"Bonus":0,"Continent":"K64","ID":28927,"Name":"Taka002","PlayerID":848999671,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28927","ServerKey":"pl181","X":480,"Y":665},{"Bonus":0,"Continent":"K35","ID":28928,"Name":"Lord Lord Franek .#076","PlayerID":698420691,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28928","ServerKey":"pl181","X":535,"Y":333},{"Bonus":0,"Continent":"K56","ID":28929,"Name":"O40 Fethiye","PlayerID":699272880,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28929","ServerKey":"pl181","X":662,"Y":536},{"Bonus":0,"Continent":"K46","ID":28930,"Name":"030 PAKOL TI VI","PlayerID":699272633,"Points":9330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28930","ServerKey":"pl181","X":658,"Y":448},{"Bonus":0,"Continent":"K65","ID":28931,"Name":"ƚmieszki","PlayerID":3454753,"Points":9100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28931","ServerKey":"pl181","X":534,"Y":614},{"Bonus":0,"Continent":"K33","ID":28932,"Name":"009","PlayerID":849059457,"Points":7661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28932","ServerKey":"pl181","X":379,"Y":387},{"Bonus":0,"Continent":"K35","ID":28933,"Name":"Wioska 02","PlayerID":849041192,"Points":2852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28933","ServerKey":"pl181","X":596,"Y":362},{"Bonus":0,"Continent":"K53","ID":28934,"Name":"Dajanka 25","PlayerID":849012843,"Points":2192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28934","ServerKey":"pl181","X":354,"Y":582},{"Bonus":0,"Continent":"K53","ID":28935,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28935","ServerKey":"pl181","X":354,"Y":577},{"Bonus":0,"Continent":"K43","ID":28936,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":5538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28936","ServerKey":"pl181","X":360,"Y":406},{"Bonus":0,"Continent":"K64","ID":28938,"Name":"Psycha Siada","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28938","ServerKey":"pl181","X":454,"Y":663},{"Bonus":0,"Continent":"K43","ID":28939,"Name":"-02-","PlayerID":765188,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28939","ServerKey":"pl181","X":333,"Y":497},{"Bonus":0,"Continent":"K35","ID":28940,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28940","ServerKey":"pl181","X":585,"Y":359},{"Bonus":9,"Continent":"K46","ID":28941,"Name":"050 BOBI 2","PlayerID":2135129,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28941","ServerKey":"pl181","X":664,"Y":484},{"Bonus":0,"Continent":"K64","ID":28942,"Name":"035.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28942","ServerKey":"pl181","X":408,"Y":636},{"Bonus":0,"Continent":"K36","ID":28943,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28943","ServerKey":"pl181","X":626,"Y":388},{"Bonus":0,"Continent":"K64","ID":28944,"Name":"psycha sitting","PlayerID":699736927,"Points":9405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28944","ServerKey":"pl181","X":430,"Y":651},{"Bonus":0,"Continent":"K64","ID":28945,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28945","ServerKey":"pl181","X":418,"Y":648},{"Bonus":0,"Continent":"K56","ID":28946,"Name":"=069= Wioska barbarzyƄska","PlayerID":3781794,"Points":8695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28946","ServerKey":"pl181","X":657,"Y":549},{"Bonus":0,"Continent":"K46","ID":28947,"Name":"068 | PALESTINA","PlayerID":9228039,"Points":5544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28947","ServerKey":"pl181","X":646,"Y":418},{"Bonus":0,"Continent":"K64","ID":28948,"Name":"007","PlayerID":849089459,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28948","ServerKey":"pl181","X":433,"Y":643},{"Bonus":0,"Continent":"K64","ID":28949,"Name":"034 Rakverelin","PlayerID":699834004,"Points":8431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28949","ServerKey":"pl181","X":469,"Y":667},{"Bonus":0,"Continent":"K46","ID":28950,"Name":"033 lecimy tutaj","PlayerID":699272633,"Points":9154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28950","ServerKey":"pl181","X":659,"Y":450},{"Bonus":0,"Continent":"K33","ID":28951,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":3357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28951","ServerKey":"pl181","X":382,"Y":382},{"Bonus":0,"Continent":"K34","ID":28953,"Name":"GrĂłd 3","PlayerID":699204478,"Points":4483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28953","ServerKey":"pl181","X":474,"Y":333},{"Bonus":0,"Continent":"K64","ID":28954,"Name":"|B| Arrowgrove","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28954","ServerKey":"pl181","X":489,"Y":664},{"Bonus":0,"Continent":"K43","ID":28955,"Name":"1.04","PlayerID":3502565,"Points":6281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28955","ServerKey":"pl181","X":338,"Y":451},{"Bonus":0,"Continent":"K43","ID":28956,"Name":"003","PlayerID":393668,"Points":3797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28956","ServerKey":"pl181","X":347,"Y":440},{"Bonus":0,"Continent":"K45","ID":28957,"Name":"058","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28957","ServerKey":"pl181","X":546,"Y":405},{"Bonus":0,"Continent":"K36","ID":28958,"Name":"A014","PlayerID":699761749,"Points":4455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28958","ServerKey":"pl181","X":612,"Y":379},{"Bonus":0,"Continent":"K35","ID":28959,"Name":"MAKS","PlayerID":699072129,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28959","ServerKey":"pl181","X":555,"Y":343},{"Bonus":0,"Continent":"K34","ID":28960,"Name":"#0235 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28960","ServerKey":"pl181","X":466,"Y":333},{"Bonus":3,"Continent":"K35","ID":28962,"Name":"Wrath 002","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28962","ServerKey":"pl181","X":572,"Y":345},{"Bonus":0,"Continent":"K43","ID":28963,"Name":"008","PlayerID":848921536,"Points":3149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28963","ServerKey":"pl181","X":388,"Y":426},{"Bonus":0,"Continent":"K43","ID":28964,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28964","ServerKey":"pl181","X":340,"Y":463},{"Bonus":0,"Continent":"K46","ID":28965,"Name":"Jaaa","PlayerID":698635863,"Points":9900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28965","ServerKey":"pl181","X":669,"Y":495},{"Bonus":0,"Continent":"K64","ID":28966,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":4900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28966","ServerKey":"pl181","X":416,"Y":647},{"Bonus":0,"Continent":"K56","ID":28967,"Name":"O16 Talca","PlayerID":699272880,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28967","ServerKey":"pl181","X":663,"Y":526},{"Bonus":0,"Continent":"K65","ID":28968,"Name":"0248","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28968","ServerKey":"pl181","X":559,"Y":653},{"Bonus":0,"Continent":"K35","ID":28969,"Name":"AAA","PlayerID":1006847,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28969","ServerKey":"pl181","X":533,"Y":332},{"Bonus":0,"Continent":"K34","ID":28970,"Name":"Bagdad","PlayerID":8847546,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28970","ServerKey":"pl181","X":489,"Y":331},{"Bonus":0,"Continent":"K35","ID":28971,"Name":"Krosno 4","PlayerID":7485877,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28971","ServerKey":"pl181","X":537,"Y":337},{"Bonus":0,"Continent":"K53","ID":28972,"Name":"WKRA","PlayerID":849097614,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28972","ServerKey":"pl181","X":334,"Y":508},{"Bonus":0,"Continent":"K34","ID":28973,"Name":"006","PlayerID":698739350,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28973","ServerKey":"pl181","X":483,"Y":352},{"Bonus":0,"Continent":"K66","ID":28974,"Name":"xxx - 08","PlayerID":699778867,"Points":10110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28974","ServerKey":"pl181","X":614,"Y":624},{"Bonus":0,"Continent":"K65","ID":28975,"Name":"022 serniczek z oreo","PlayerID":8954402,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28975","ServerKey":"pl181","X":505,"Y":671},{"Bonus":0,"Continent":"K64","ID":28976,"Name":"036.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28976","ServerKey":"pl181","X":408,"Y":635},{"Bonus":0,"Continent":"K46","ID":28978,"Name":"Jaaa","PlayerID":698635863,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28978","ServerKey":"pl181","X":663,"Y":491},{"Bonus":0,"Continent":"K56","ID":28979,"Name":"44k$ Grvvyq","PlayerID":699676005,"Points":7229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28979","ServerKey":"pl181","X":649,"Y":579},{"Bonus":0,"Continent":"K65","ID":28980,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28980","ServerKey":"pl181","X":575,"Y":649},{"Bonus":0,"Continent":"K54","ID":28982,"Name":"*Ateny_11","PlayerID":698971484,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28982","ServerKey":"pl181","X":475,"Y":536},{"Bonus":0,"Continent":"K53","ID":28983,"Name":"N003","PlayerID":272173,"Points":5758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28983","ServerKey":"pl181","X":343,"Y":568},{"Bonus":5,"Continent":"K64","ID":28984,"Name":"Ave Why!","PlayerID":698585370,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28984","ServerKey":"pl181","X":497,"Y":669},{"Bonus":0,"Continent":"K64","ID":28985,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28985","ServerKey":"pl181","X":415,"Y":648},{"Bonus":0,"Continent":"K46","ID":28986,"Name":"108","PlayerID":849088515,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28986","ServerKey":"pl181","X":655,"Y":446},{"Bonus":0,"Continent":"K56","ID":28987,"Name":"O49 Lendava","PlayerID":699272880,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28987","ServerKey":"pl181","X":660,"Y":551},{"Bonus":0,"Continent":"K64","ID":28988,"Name":"082","PlayerID":849084985,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28988","ServerKey":"pl181","X":440,"Y":635},{"Bonus":2,"Continent":"K35","ID":28989,"Name":"Wrath 012","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28989","ServerKey":"pl181","X":571,"Y":345},{"Bonus":0,"Continent":"K43","ID":28990,"Name":"M181_014","PlayerID":393668,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28990","ServerKey":"pl181","X":344,"Y":432},{"Bonus":0,"Continent":"K46","ID":28992,"Name":"A010 Jospe D","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28992","ServerKey":"pl181","X":664,"Y":452},{"Bonus":0,"Continent":"K64","ID":28993,"Name":"On average ƚR","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28993","ServerKey":"pl181","X":493,"Y":669},{"Bonus":0,"Continent":"K65","ID":28995,"Name":"15. Rezerwacja w Pachy","PlayerID":698659980,"Points":8797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28995","ServerKey":"pl181","X":520,"Y":667},{"Bonus":0,"Continent":"K36","ID":28996,"Name":"BACÓWKA |035|","PlayerID":7394371,"Points":5630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28996","ServerKey":"pl181","X":632,"Y":397},{"Bonus":0,"Continent":"K63","ID":28997,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28997","ServerKey":"pl181","X":385,"Y":617},{"Bonus":0,"Continent":"K65","ID":28998,"Name":"|C| Swampforest","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28998","ServerKey":"pl181","X":505,"Y":669},{"Bonus":0,"Continent":"K35","ID":28999,"Name":"ADEN","PlayerID":698588535,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=28999","ServerKey":"pl181","X":572,"Y":347},{"Bonus":0,"Continent":"K63","ID":29001,"Name":".///...//././././././././","PlayerID":849097937,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29001","ServerKey":"pl181","X":376,"Y":617},{"Bonus":0,"Continent":"K64","ID":29002,"Name":"Akaria","PlayerID":849089459,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29002","ServerKey":"pl181","X":418,"Y":649},{"Bonus":0,"Continent":"K56","ID":29003,"Name":"045","PlayerID":699413040,"Points":8690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29003","ServerKey":"pl181","X":670,"Y":517},{"Bonus":0,"Continent":"K64","ID":29004,"Name":"3..","PlayerID":6910361,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29004","ServerKey":"pl181","X":421,"Y":651},{"Bonus":0,"Continent":"K63","ID":29005,"Name":"8068","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29005","ServerKey":"pl181","X":376,"Y":607},{"Bonus":0,"Continent":"K65","ID":29006,"Name":"#0026","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29006","ServerKey":"pl181","X":546,"Y":625},{"Bonus":0,"Continent":"K34","ID":29007,"Name":"K34 x030","PlayerID":698364331,"Points":6364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29007","ServerKey":"pl181","X":409,"Y":357},{"Bonus":0,"Continent":"K43","ID":29009,"Name":"V009","PlayerID":849097737,"Points":4370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29009","ServerKey":"pl181","X":352,"Y":424},{"Bonus":0,"Continent":"K65","ID":29011,"Name":"Alice Rose","PlayerID":849106383,"Points":3529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29011","ServerKey":"pl181","X":546,"Y":663},{"Bonus":0,"Continent":"K66","ID":29012,"Name":"0031","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29012","ServerKey":"pl181","X":616,"Y":623},{"Bonus":0,"Continent":"K53","ID":29013,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29013","ServerKey":"pl181","X":341,"Y":546},{"Bonus":9,"Continent":"K56","ID":29014,"Name":"10k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29014","ServerKey":"pl181","X":649,"Y":575},{"Bonus":0,"Continent":"K35","ID":29015,"Name":"181 Zulu Gula !","PlayerID":2571407,"Points":3879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29015","ServerKey":"pl181","X":521,"Y":332},{"Bonus":0,"Continent":"K66","ID":29016,"Name":"~~075~~","PlayerID":7829201,"Points":7474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29016","ServerKey":"pl181","X":616,"Y":618},{"Bonus":0,"Continent":"K53","ID":29017,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29017","ServerKey":"pl181","X":334,"Y":515},{"Bonus":0,"Continent":"K56","ID":29018,"Name":"B 027","PlayerID":8078914,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29018","ServerKey":"pl181","X":668,"Y":535},{"Bonus":0,"Continent":"K64","ID":29019,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":5316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29019","ServerKey":"pl181","X":457,"Y":658},{"Bonus":0,"Continent":"K64","ID":29020,"Name":"A21","PlayerID":698652014,"Points":10643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29020","ServerKey":"pl181","X":473,"Y":664},{"Bonus":0,"Continent":"K33","ID":29021,"Name":"021 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":3700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29021","ServerKey":"pl181","X":365,"Y":397},{"Bonus":0,"Continent":"K46","ID":29022,"Name":"A003 Thais 2","PlayerID":113796,"Points":8064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29022","ServerKey":"pl181","X":660,"Y":448},{"Bonus":0,"Continent":"K63","ID":29024,"Name":"017 Szachy - Skoczek","PlayerID":8268010,"Points":7360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29024","ServerKey":"pl181","X":366,"Y":606},{"Bonus":0,"Continent":"K34","ID":29025,"Name":"#0068 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29025","ServerKey":"pl181","X":477,"Y":331},{"Bonus":0,"Continent":"K65","ID":29026,"Name":"*011","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29026","ServerKey":"pl181","X":594,"Y":641},{"Bonus":0,"Continent":"K53","ID":29027,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29027","ServerKey":"pl181","X":353,"Y":579},{"Bonus":0,"Continent":"K56","ID":29028,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29028","ServerKey":"pl181","X":651,"Y":574},{"Bonus":0,"Continent":"K35","ID":29029,"Name":"Uran","PlayerID":699797805,"Points":2744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29029","ServerKey":"pl181","X":549,"Y":336},{"Bonus":0,"Continent":"K35","ID":29031,"Name":"Wrath 014","PlayerID":699756210,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29031","ServerKey":"pl181","X":569,"Y":343},{"Bonus":0,"Continent":"K35","ID":29032,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29032","ServerKey":"pl181","X":591,"Y":364},{"Bonus":0,"Continent":"K35","ID":29033,"Name":"Lord Lord Franek .#165","PlayerID":698420691,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29033","ServerKey":"pl181","X":511,"Y":332},{"Bonus":0,"Continent":"K36","ID":29035,"Name":"03 tonieostatnieslowo","PlayerID":699861004,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29035","ServerKey":"pl181","X":607,"Y":370},{"Bonus":0,"Continent":"K33","ID":29036,"Name":"Szulernia","PlayerID":7249451,"Points":10483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29036","ServerKey":"pl181","X":398,"Y":367},{"Bonus":0,"Continent":"K64","ID":29037,"Name":"[A]008","PlayerID":699736927,"Points":6937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29037","ServerKey":"pl181","X":423,"Y":651},{"Bonus":0,"Continent":"K46","ID":29038,"Name":"I005","PlayerID":699722599,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29038","ServerKey":"pl181","X":663,"Y":456},{"Bonus":0,"Continent":"K34","ID":29039,"Name":"028...OPELEK","PlayerID":6920960,"Points":10279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29039","ServerKey":"pl181","X":446,"Y":341},{"Bonus":0,"Continent":"K53","ID":29040,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29040","ServerKey":"pl181","X":355,"Y":582},{"Bonus":0,"Continent":"K66","ID":29041,"Name":"SIR DEVELES","PlayerID":698786826,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29041","ServerKey":"pl181","X":620,"Y":611},{"Bonus":0,"Continent":"K34","ID":29042,"Name":"K34 - [142] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29042","ServerKey":"pl181","X":437,"Y":345},{"Bonus":0,"Continent":"K34","ID":29043,"Name":"052...qashqai","PlayerID":6920960,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29043","ServerKey":"pl181","X":442,"Y":342},{"Bonus":0,"Continent":"K43","ID":29044,"Name":"Zeta Reticuli S2","PlayerID":699323302,"Points":8506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29044","ServerKey":"pl181","X":364,"Y":400},{"Bonus":0,"Continent":"K36","ID":29045,"Name":"0103","PlayerID":698416970,"Points":3612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29045","ServerKey":"pl181","X":634,"Y":399},{"Bonus":0,"Continent":"K43","ID":29046,"Name":"*134*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29046","ServerKey":"pl181","X":355,"Y":414},{"Bonus":0,"Continent":"K66","ID":29047,"Name":"#103#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29047","ServerKey":"pl181","X":631,"Y":605},{"Bonus":0,"Continent":"K64","ID":29048,"Name":"Ave Why!","PlayerID":698585370,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29048","ServerKey":"pl181","X":498,"Y":667},{"Bonus":0,"Continent":"K64","ID":29049,"Name":"|B| Newmouth","PlayerID":698147372,"Points":6077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29049","ServerKey":"pl181","X":484,"Y":664},{"Bonus":0,"Continent":"K33","ID":29050,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29050","ServerKey":"pl181","X":365,"Y":399},{"Bonus":0,"Continent":"K34","ID":29051,"Name":"#0180 MiBM","PlayerID":1238300,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29051","ServerKey":"pl181","X":487,"Y":330},{"Bonus":0,"Continent":"K56","ID":29052,"Name":"E010","PlayerID":8428196,"Points":7610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29052","ServerKey":"pl181","X":660,"Y":553},{"Bonus":5,"Continent":"K56","ID":29053,"Name":"059","PlayerID":699351301,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29053","ServerKey":"pl181","X":658,"Y":544},{"Bonus":0,"Continent":"K64","ID":29054,"Name":"|005| Kissamos","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29054","ServerKey":"pl181","X":493,"Y":667},{"Bonus":0,"Continent":"K34","ID":29055,"Name":"0018","PlayerID":699431255,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29055","ServerKey":"pl181","X":412,"Y":356},{"Bonus":0,"Continent":"K56","ID":29056,"Name":"Wioska 099","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29056","ServerKey":"pl181","X":647,"Y":587},{"Bonus":0,"Continent":"K34","ID":29057,"Name":"#0086 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29057","ServerKey":"pl181","X":472,"Y":334},{"Bonus":0,"Continent":"K46","ID":29058,"Name":"#.04 Wioska Natalka69","PlayerID":849054582,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29058","ServerKey":"pl181","X":649,"Y":472},{"Bonus":0,"Continent":"K34","ID":29059,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29059","ServerKey":"pl181","X":442,"Y":344},{"Bonus":0,"Continent":"K36","ID":29060,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29060","ServerKey":"pl181","X":613,"Y":374},{"Bonus":0,"Continent":"K53","ID":29061,"Name":"Wioska klez 014","PlayerID":698295651,"Points":7170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29061","ServerKey":"pl181","X":333,"Y":509},{"Bonus":0,"Continent":"K53","ID":29062,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29062","ServerKey":"pl181","X":340,"Y":557},{"Bonus":0,"Continent":"K63","ID":29063,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29063","ServerKey":"pl181","X":394,"Y":630},{"Bonus":0,"Continent":"K65","ID":29064,"Name":"032 serniczek na ƛniadanie","PlayerID":8954402,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29064","ServerKey":"pl181","X":511,"Y":665},{"Bonus":5,"Continent":"K53","ID":29065,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29065","ServerKey":"pl181","X":336,"Y":516},{"Bonus":0,"Continent":"K65","ID":29067,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":8765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29067","ServerKey":"pl181","X":579,"Y":650},{"Bonus":0,"Continent":"K46","ID":29068,"Name":"032 MONETKI","PlayerID":7588382,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29068","ServerKey":"pl181","X":666,"Y":480},{"Bonus":0,"Continent":"K36","ID":29069,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29069","ServerKey":"pl181","X":612,"Y":372},{"Bonus":9,"Continent":"K43","ID":29070,"Name":"Westfold.010","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29070","ServerKey":"pl181","X":347,"Y":424},{"Bonus":0,"Continent":"K65","ID":29071,"Name":"?013","PlayerID":699828685,"Points":8412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29071","ServerKey":"pl181","X":540,"Y":658},{"Bonus":0,"Continent":"K43","ID":29072,"Name":"06. Ofir","PlayerID":848910122,"Points":1348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29072","ServerKey":"pl181","X":337,"Y":458},{"Bonus":0,"Continent":"K35","ID":29073,"Name":"008 Campbeltown","PlayerID":699072129,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29073","ServerKey":"pl181","X":555,"Y":346},{"Bonus":0,"Continent":"K53","ID":29074,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":4843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29074","ServerKey":"pl181","X":342,"Y":545},{"Bonus":0,"Continent":"K54","ID":29075,"Name":"OmoĆŒe","PlayerID":699443920,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29075","ServerKey":"pl181","X":432,"Y":560},{"Bonus":0,"Continent":"K34","ID":29076,"Name":"080...sƂąbiak","PlayerID":699308637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29076","ServerKey":"pl181","X":433,"Y":349},{"Bonus":0,"Continent":"K65","ID":29077,"Name":"*042","PlayerID":699567608,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29077","ServerKey":"pl181","X":597,"Y":636},{"Bonus":0,"Continent":"K33","ID":29078,"Name":"CC Wioska z","PlayerID":3909522,"Points":5116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29078","ServerKey":"pl181","X":389,"Y":373},{"Bonus":0,"Continent":"K53","ID":29079,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29079","ServerKey":"pl181","X":345,"Y":557},{"Bonus":0,"Continent":"K53","ID":29081,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29081","ServerKey":"pl181","X":382,"Y":579},{"Bonus":0,"Continent":"K34","ID":29082,"Name":"112...center","PlayerID":6920960,"Points":8929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29082","ServerKey":"pl181","X":450,"Y":342},{"Bonus":1,"Continent":"K33","ID":29083,"Name":"0003 Zakopane","PlayerID":849096882,"Points":8955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29083","ServerKey":"pl181","X":388,"Y":379},{"Bonus":0,"Continent":"K43","ID":29084,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29084","ServerKey":"pl181","X":338,"Y":479},{"Bonus":0,"Continent":"K46","ID":29085,"Name":"A013 darekdd","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29085","ServerKey":"pl181","X":658,"Y":450},{"Bonus":0,"Continent":"K35","ID":29086,"Name":"Lord Lord Franek .#122","PlayerID":698420691,"Points":7635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29086","ServerKey":"pl181","X":519,"Y":334},{"Bonus":0,"Continent":"K64","ID":29087,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29087","ServerKey":"pl181","X":457,"Y":662},{"Bonus":0,"Continent":"K66","ID":29088,"Name":"Ć»UBR .::.B.E.T.O.N /10","PlayerID":33900,"Points":10192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29088","ServerKey":"pl181","X":625,"Y":617},{"Bonus":0,"Continent":"K34","ID":29089,"Name":"North Barba 051","PlayerID":699796330,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29089","ServerKey":"pl181","X":425,"Y":350},{"Bonus":0,"Continent":"K46","ID":29090,"Name":"asd","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29090","ServerKey":"pl181","X":670,"Y":478},{"Bonus":0,"Continent":"K43","ID":29091,"Name":"M181_004","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29091","ServerKey":"pl181","X":345,"Y":430},{"Bonus":0,"Continent":"K35","ID":29092,"Name":"Lord Lord Franek .#123","PlayerID":698420691,"Points":7830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29092","ServerKey":"pl181","X":527,"Y":331},{"Bonus":0,"Continent":"K46","ID":29093,"Name":"054","PlayerID":7085502,"Points":9123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29093","ServerKey":"pl181","X":665,"Y":489},{"Bonus":0,"Continent":"K65","ID":29094,"Name":"*Naturalna kolej rzeczy...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29094","ServerKey":"pl181","X":576,"Y":646},{"Bonus":4,"Continent":"K64","ID":29095,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29095","ServerKey":"pl181","X":453,"Y":665},{"Bonus":0,"Continent":"K34","ID":29096,"Name":"#0083 barbarzyƄska","PlayerID":1238300,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29096","ServerKey":"pl181","X":475,"Y":337},{"Bonus":0,"Continent":"K64","ID":29097,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29097","ServerKey":"pl181","X":481,"Y":669},{"Bonus":0,"Continent":"K53","ID":29098,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29098","ServerKey":"pl181","X":346,"Y":567},{"Bonus":0,"Continent":"K64","ID":29099,"Name":"|003| Agia Pelagia","PlayerID":699393742,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29099","ServerKey":"pl181","X":492,"Y":668},{"Bonus":0,"Continent":"K64","ID":29100,"Name":"A03","PlayerID":698652014,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29100","ServerKey":"pl181","X":469,"Y":669},{"Bonus":0,"Continent":"K53","ID":29101,"Name":"Wioska klez 008","PlayerID":698295651,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29101","ServerKey":"pl181","X":332,"Y":513},{"Bonus":0,"Continent":"K56","ID":29102,"Name":"Wioska 104","PlayerID":848971079,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29102","ServerKey":"pl181","X":647,"Y":588},{"Bonus":0,"Continent":"K65","ID":29103,"Name":"0393","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29103","ServerKey":"pl181","X":551,"Y":661},{"Bonus":0,"Continent":"K63","ID":29104,"Name":"Valhalla 5","PlayerID":7417116,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29104","ServerKey":"pl181","X":371,"Y":609},{"Bonus":0,"Continent":"K64","ID":29105,"Name":"041 Ban Gleann","PlayerID":699834004,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29105","ServerKey":"pl181","X":460,"Y":661},{"Bonus":0,"Continent":"K63","ID":29106,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29106","ServerKey":"pl181","X":369,"Y":611},{"Bonus":0,"Continent":"K53","ID":29107,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29107","ServerKey":"pl181","X":343,"Y":554},{"Bonus":9,"Continent":"K35","ID":29108,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29108","ServerKey":"pl181","X":551,"Y":342},{"Bonus":0,"Continent":"K56","ID":29109,"Name":"*5610* Brudki Stare","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29109","ServerKey":"pl181","X":650,"Y":583},{"Bonus":0,"Continent":"K43","ID":29110,"Name":"002","PlayerID":6258092,"Points":5731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29110","ServerKey":"pl181","X":341,"Y":458},{"Bonus":0,"Continent":"K35","ID":29112,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29112","ServerKey":"pl181","X":560,"Y":348},{"Bonus":0,"Continent":"K34","ID":29113,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29113","ServerKey":"pl181","X":451,"Y":336},{"Bonus":0,"Continent":"K35","ID":29114,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29114","ServerKey":"pl181","X":577,"Y":353},{"Bonus":0,"Continent":"K34","ID":29115,"Name":"aaaaaaaaa","PlayerID":699308637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29115","ServerKey":"pl181","X":439,"Y":347},{"Bonus":0,"Continent":"K36","ID":29116,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":6670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29116","ServerKey":"pl181","X":625,"Y":393},{"Bonus":0,"Continent":"K46","ID":29117,"Name":"A002 La La Laggerx","PlayerID":113796,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29117","ServerKey":"pl181","X":663,"Y":451},{"Bonus":0,"Continent":"K56","ID":29118,"Name":"Wioska 063","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29118","ServerKey":"pl181","X":639,"Y":599},{"Bonus":0,"Continent":"K34","ID":29119,"Name":"#0109 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29119","ServerKey":"pl181","X":482,"Y":330},{"Bonus":0,"Continent":"K66","ID":29120,"Name":"WB 05","PlayerID":2269943,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29120","ServerKey":"pl181","X":634,"Y":605},{"Bonus":0,"Continent":"K46","ID":29121,"Name":"053 | PALESTINA","PlayerID":9228039,"Points":4315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29121","ServerKey":"pl181","X":648,"Y":424},{"Bonus":0,"Continent":"K64","ID":29122,"Name":"[12]","PlayerID":699698079,"Points":3305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29122","ServerKey":"pl181","X":431,"Y":657},{"Bonus":7,"Continent":"K64","ID":29123,"Name":"A12","PlayerID":698652014,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29123","ServerKey":"pl181","X":469,"Y":668},{"Bonus":0,"Continent":"K64","ID":29124,"Name":"Warownia 3","PlayerID":849089459,"Points":9639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29124","ServerKey":"pl181","X":431,"Y":654},{"Bonus":0,"Continent":"K65","ID":29125,"Name":"Twferdza Nie do zfobycia","PlayerID":9314153,"Points":3781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29125","ServerKey":"pl181","X":518,"Y":665},{"Bonus":0,"Continent":"K53","ID":29126,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29126","ServerKey":"pl181","X":335,"Y":533},{"Bonus":0,"Continent":"K64","ID":29127,"Name":"|009| Malia","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29127","ServerKey":"pl181","X":499,"Y":666},{"Bonus":0,"Continent":"K35","ID":29128,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29128","ServerKey":"pl181","X":558,"Y":343},{"Bonus":0,"Continent":"K65","ID":29129,"Name":"0267","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29129","ServerKey":"pl181","X":552,"Y":659},{"Bonus":0,"Continent":"K36","ID":29130,"Name":"029.","PlayerID":699491076,"Points":6981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29130","ServerKey":"pl181","X":632,"Y":394},{"Bonus":0,"Continent":"K66","ID":29131,"Name":"092","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29131","ServerKey":"pl181","X":620,"Y":613},{"Bonus":0,"Continent":"K53","ID":29132,"Name":"Pomost","PlayerID":699265922,"Points":7827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29132","ServerKey":"pl181","X":335,"Y":544},{"Bonus":0,"Continent":"K66","ID":29133,"Name":"PUSTA","PlayerID":6929240,"Points":5407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29133","ServerKey":"pl181","X":630,"Y":604},{"Bonus":0,"Continent":"K64","ID":29134,"Name":"A29","PlayerID":698652014,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29134","ServerKey":"pl181","X":478,"Y":668},{"Bonus":0,"Continent":"K64","ID":29135,"Name":"Tyr","PlayerID":849089459,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29135","ServerKey":"pl181","X":419,"Y":649},{"Bonus":0,"Continent":"K53","ID":29136,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29136","ServerKey":"pl181","X":347,"Y":573},{"Bonus":0,"Continent":"K53","ID":29137,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29137","ServerKey":"pl181","X":340,"Y":538},{"Bonus":0,"Continent":"K56","ID":29138,"Name":"B 006","PlayerID":8078914,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29138","ServerKey":"pl181","X":663,"Y":529},{"Bonus":0,"Continent":"K65","ID":29139,"Name":"scofield","PlayerID":699494488,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29139","ServerKey":"pl181","X":525,"Y":665},{"Bonus":0,"Continent":"K33","ID":29140,"Name":"0009 Szczecin","PlayerID":849096882,"Points":4541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29140","ServerKey":"pl181","X":372,"Y":376},{"Bonus":0,"Continent":"K46","ID":29141,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29141","ServerKey":"pl181","X":667,"Y":476},{"Bonus":0,"Continent":"K64","ID":29142,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":8265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29142","ServerKey":"pl181","X":415,"Y":649},{"Bonus":0,"Continent":"K34","ID":29143,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29143","ServerKey":"pl181","X":434,"Y":399},{"Bonus":0,"Continent":"K35","ID":29144,"Name":"005 Highlands","PlayerID":699072129,"Points":9021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29144","ServerKey":"pl181","X":554,"Y":346},{"Bonus":0,"Continent":"K43","ID":29145,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29145","ServerKey":"pl181","X":329,"Y":497},{"Bonus":1,"Continent":"K43","ID":29146,"Name":"011. Dla flag","PlayerID":698630507,"Points":8317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29146","ServerKey":"pl181","X":351,"Y":432},{"Bonus":0,"Continent":"K43","ID":29147,"Name":"*090*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29147","ServerKey":"pl181","X":359,"Y":417},{"Bonus":0,"Continent":"K65","ID":29148,"Name":"047","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29148","ServerKey":"pl181","X":516,"Y":671},{"Bonus":0,"Continent":"K56","ID":29149,"Name":"046","PlayerID":699316421,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29149","ServerKey":"pl181","X":654,"Y":557},{"Bonus":0,"Continent":"K53","ID":29150,"Name":"Myk i do kieszonki","PlayerID":7333216,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29150","ServerKey":"pl181","X":345,"Y":566},{"Bonus":0,"Continent":"K66","ID":29151,"Name":"Grvvyq 119k$","PlayerID":699676005,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29151","ServerKey":"pl181","X":615,"Y":620},{"Bonus":0,"Continent":"K53","ID":29152,"Name":"WISƁA","PlayerID":849097614,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29152","ServerKey":"pl181","X":332,"Y":504},{"Bonus":0,"Continent":"K56","ID":29153,"Name":"Delaware","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29153","ServerKey":"pl181","X":668,"Y":521},{"Bonus":0,"Continent":"K36","ID":29154,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29154","ServerKey":"pl181","X":618,"Y":378},{"Bonus":0,"Continent":"K64","ID":29155,"Name":"Warownia","PlayerID":849006145,"Points":4800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29155","ServerKey":"pl181","X":431,"Y":655},{"Bonus":0,"Continent":"K66","ID":29156,"Name":"002","PlayerID":849097799,"Points":9765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29156","ServerKey":"pl181","X":604,"Y":635},{"Bonus":0,"Continent":"K56","ID":29157,"Name":"O14 Warzazat","PlayerID":699272880,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29157","ServerKey":"pl181","X":666,"Y":525},{"Bonus":1,"Continent":"K56","ID":29158,"Name":"Sony 911","PlayerID":1415009,"Points":7532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29158","ServerKey":"pl181","X":640,"Y":589},{"Bonus":0,"Continent":"K34","ID":29159,"Name":"K34 - [154] Before Land","PlayerID":699088769,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29159","ServerKey":"pl181","X":439,"Y":346},{"Bonus":0,"Continent":"K46","ID":29160,"Name":"Jaaa","PlayerID":698635863,"Points":10134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29160","ServerKey":"pl181","X":666,"Y":494},{"Bonus":0,"Continent":"K35","ID":29161,"Name":"Lord Lord Franek .#166","PlayerID":698420691,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29161","ServerKey":"pl181","X":508,"Y":334},{"Bonus":0,"Continent":"K46","ID":29162,"Name":"28. KaruTown","PlayerID":849060446,"Points":6988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29162","ServerKey":"pl181","X":638,"Y":403},{"Bonus":0,"Continent":"K64","ID":29163,"Name":"Sk_019","PlayerID":8954402,"Points":4041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29163","ServerKey":"pl181","X":438,"Y":653},{"Bonus":0,"Continent":"K36","ID":29164,"Name":"0014","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29164","ServerKey":"pl181","X":627,"Y":384},{"Bonus":0,"Continent":"K46","ID":29165,"Name":"BUNKIER 005","PlayerID":7588382,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29165","ServerKey":"pl181","X":643,"Y":427},{"Bonus":0,"Continent":"K66","ID":29166,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29166","ServerKey":"pl181","X":621,"Y":621},{"Bonus":0,"Continent":"K33","ID":29167,"Name":"jaskinia","PlayerID":8419570,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29167","ServerKey":"pl181","X":388,"Y":375},{"Bonus":0,"Continent":"K34","ID":29168,"Name":"021 Radom","PlayerID":698364331,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29168","ServerKey":"pl181","X":402,"Y":360},{"Bonus":0,"Continent":"K56","ID":29169,"Name":"O30 Konoha","PlayerID":699272880,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29169","ServerKey":"pl181","X":662,"Y":531},{"Bonus":0,"Continent":"K43","ID":29170,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29170","ServerKey":"pl181","X":336,"Y":467},{"Bonus":0,"Continent":"K56","ID":29171,"Name":"042","PlayerID":699413040,"Points":10283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29171","ServerKey":"pl181","X":666,"Y":517},{"Bonus":0,"Continent":"K46","ID":29172,"Name":"I036","PlayerID":699722599,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29172","ServerKey":"pl181","X":656,"Y":437},{"Bonus":0,"Continent":"K53","ID":29173,"Name":"Nowy ƛwiat 6","PlayerID":849084005,"Points":5116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29173","ServerKey":"pl181","X":342,"Y":566},{"Bonus":0,"Continent":"K46","ID":29174,"Name":"Jaaa","PlayerID":698635863,"Points":9538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29174","ServerKey":"pl181","X":667,"Y":495},{"Bonus":0,"Continent":"K34","ID":29175,"Name":"Szulernia","PlayerID":7249451,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29175","ServerKey":"pl181","X":410,"Y":362},{"Bonus":0,"Continent":"K64","ID":29176,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29176","ServerKey":"pl181","X":459,"Y":663},{"Bonus":0,"Continent":"K35","ID":29177,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29177","ServerKey":"pl181","X":556,"Y":345},{"Bonus":0,"Continent":"K34","ID":29178,"Name":"Flotsam","PlayerID":849048216,"Points":3307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29178","ServerKey":"pl181","X":481,"Y":337},{"Bonus":0,"Continent":"K63","ID":29179,"Name":".///...//././././././././","PlayerID":849097937,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29179","ServerKey":"pl181","X":376,"Y":615},{"Bonus":0,"Continent":"K66","ID":29180,"Name":"Dal","PlayerID":849091897,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29180","ServerKey":"pl181","X":612,"Y":624},{"Bonus":0,"Continent":"K34","ID":29181,"Name":"#0087 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29181","ServerKey":"pl181","X":474,"Y":334},{"Bonus":0,"Continent":"K63","ID":29182,"Name":"J003.","PlayerID":849090130,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29182","ServerKey":"pl181","X":366,"Y":603},{"Bonus":0,"Continent":"K56","ID":29183,"Name":"E002","PlayerID":8428196,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29183","ServerKey":"pl181","X":659,"Y":559},{"Bonus":0,"Continent":"K56","ID":29184,"Name":"B.059","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29184","ServerKey":"pl181","X":668,"Y":507},{"Bonus":0,"Continent":"K34","ID":29185,"Name":"063...Agent Pumba","PlayerID":6920960,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29185","ServerKey":"pl181","X":443,"Y":346},{"Bonus":0,"Continent":"K53","ID":29186,"Name":"Dąbrowa 0018","PlayerID":849096972,"Points":4819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29186","ServerKey":"pl181","X":353,"Y":589},{"Bonus":0,"Continent":"K53","ID":29187,"Name":"Nowy ƛwiat 5","PlayerID":849084005,"Points":5055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29187","ServerKey":"pl181","X":342,"Y":565},{"Bonus":0,"Continent":"K56","ID":29188,"Name":"[161]","PlayerID":8000875,"Points":6449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29188","ServerKey":"pl181","X":642,"Y":583},{"Bonus":0,"Continent":"K33","ID":29190,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29190","ServerKey":"pl181","X":371,"Y":397},{"Bonus":0,"Continent":"K43","ID":29191,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29191","ServerKey":"pl181","X":339,"Y":469},{"Bonus":0,"Continent":"K36","ID":29192,"Name":"0001","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29192","ServerKey":"pl181","X":626,"Y":385},{"Bonus":0,"Continent":"K53","ID":29193,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29193","ServerKey":"pl181","X":329,"Y":500},{"Bonus":0,"Continent":"K64","ID":29195,"Name":"pierwsza gwiazdka","PlayerID":8954402,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29195","ServerKey":"pl181","X":442,"Y":659},{"Bonus":0,"Continent":"K34","ID":29196,"Name":"084...TOM-----------","PlayerID":6920960,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29196","ServerKey":"pl181","X":475,"Y":334},{"Bonus":0,"Continent":"K55","ID":29197,"Name":"Wioska Ewelina1809","PlayerID":1715091,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29197","ServerKey":"pl181","X":593,"Y":583},{"Bonus":0,"Continent":"K66","ID":29198,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29198","ServerKey":"pl181","X":618,"Y":625},{"Bonus":0,"Continent":"K65","ID":29199,"Name":"#0029","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29199","ServerKey":"pl181","X":564,"Y":657},{"Bonus":0,"Continent":"K53","ID":29200,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29200","ServerKey":"pl181","X":355,"Y":577},{"Bonus":0,"Continent":"K34","ID":29201,"Name":"#0141 barbarzyƄska","PlayerID":1238300,"Points":6262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29201","ServerKey":"pl181","X":469,"Y":334},{"Bonus":0,"Continent":"K46","ID":29202,"Name":"Wioska (040)","PlayerID":698232227,"Points":7153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29202","ServerKey":"pl181","X":667,"Y":463},{"Bonus":0,"Continent":"K35","ID":29203,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29203","ServerKey":"pl181","X":582,"Y":353},{"Bonus":0,"Continent":"K35","ID":29204,"Name":"WesoƂych ƚwiąt +","PlayerID":848915730,"Points":5682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29204","ServerKey":"pl181","X":592,"Y":356},{"Bonus":0,"Continent":"K43","ID":29205,"Name":"Hiszpania","PlayerID":1746216,"Points":4832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29205","ServerKey":"pl181","X":340,"Y":457},{"Bonus":0,"Continent":"K43","ID":29206,"Name":"018 VW.King Tulip","PlayerID":3108144,"Points":7010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29206","ServerKey":"pl181","X":364,"Y":407},{"Bonus":0,"Continent":"K64","ID":29207,"Name":"032.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29207","ServerKey":"pl181","X":404,"Y":636},{"Bonus":0,"Continent":"K65","ID":29208,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29208","ServerKey":"pl181","X":583,"Y":648},{"Bonus":0,"Continent":"K46","ID":29209,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29209","ServerKey":"pl181","X":670,"Y":491},{"Bonus":0,"Continent":"K43","ID":29210,"Name":"-06-","PlayerID":765188,"Points":7057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29210","ServerKey":"pl181","X":330,"Y":494},{"Bonus":0,"Continent":"K35","ID":29211,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29211","ServerKey":"pl181","X":583,"Y":353},{"Bonus":0,"Continent":"K56","ID":29213,"Name":"45k$ Grvvyq","PlayerID":699676005,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29213","ServerKey":"pl181","X":649,"Y":577},{"Bonus":5,"Continent":"K65","ID":29214,"Name":"003 serniczek z brzoskwiniami","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29214","ServerKey":"pl181","X":505,"Y":672},{"Bonus":0,"Continent":"K65","ID":29216,"Name":"*003","PlayerID":699567608,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29216","ServerKey":"pl181","X":598,"Y":637},{"Bonus":8,"Continent":"K53","ID":29217,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29217","ServerKey":"pl181","X":347,"Y":559},{"Bonus":0,"Continent":"K56","ID":29218,"Name":"047","PlayerID":849095227,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29218","ServerKey":"pl181","X":660,"Y":546},{"Bonus":0,"Continent":"K43","ID":29220,"Name":"*264*","PlayerID":699273451,"Points":2863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29220","ServerKey":"pl181","X":351,"Y":430},{"Bonus":0,"Continent":"K34","ID":29221,"Name":"#0085 barbarzyƄska","PlayerID":1238300,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29221","ServerKey":"pl181","X":470,"Y":337},{"Bonus":0,"Continent":"K35","ID":29222,"Name":"wieƛ2","PlayerID":7340529,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29222","ServerKey":"pl181","X":590,"Y":356},{"Bonus":0,"Continent":"K43","ID":29223,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29223","ServerKey":"pl181","X":340,"Y":465},{"Bonus":0,"Continent":"K34","ID":29224,"Name":"[B]_[014] Dejv.oldplyr","PlayerID":699380607,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29224","ServerKey":"pl181","X":429,"Y":350},{"Bonus":0,"Continent":"K34","ID":29225,"Name":"#0052 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29225","ServerKey":"pl181","X":468,"Y":331},{"Bonus":0,"Continent":"K56","ID":29226,"Name":"#112#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29226","ServerKey":"pl181","X":635,"Y":597},{"Bonus":0,"Continent":"K64","ID":29227,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":7503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29227","ServerKey":"pl181","X":412,"Y":645},{"Bonus":0,"Continent":"K43","ID":29228,"Name":"*063*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29228","ServerKey":"pl181","X":355,"Y":416},{"Bonus":0,"Continent":"K33","ID":29229,"Name":"pusta","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29229","ServerKey":"pl181","X":386,"Y":378},{"Bonus":0,"Continent":"K63","ID":29230,"Name":"Pobozowisko","PlayerID":699513260,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29230","ServerKey":"pl181","X":376,"Y":614},{"Bonus":0,"Continent":"K46","ID":29231,"Name":"04. Maroko","PlayerID":699491076,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29231","ServerKey":"pl181","X":640,"Y":402},{"Bonus":0,"Continent":"K53","ID":29232,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29232","ServerKey":"pl181","X":334,"Y":517},{"Bonus":0,"Continent":"K46","ID":29233,"Name":"05. Kolumbia","PlayerID":699491076,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29233","ServerKey":"pl181","X":640,"Y":404},{"Bonus":0,"Continent":"K65","ID":29234,"Name":"0548","PlayerID":698659980,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29234","ServerKey":"pl181","X":531,"Y":662},{"Bonus":0,"Continent":"K53","ID":29235,"Name":"Dajanka 23","PlayerID":849012843,"Points":2172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29235","ServerKey":"pl181","X":351,"Y":581},{"Bonus":0,"Continent":"K66","ID":29236,"Name":"Ć»ubr .::. Metanol Lecter/2","PlayerID":33900,"Points":10364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29236","ServerKey":"pl181","X":608,"Y":630},{"Bonus":0,"Continent":"K64","ID":29237,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29237","ServerKey":"pl181","X":460,"Y":663},{"Bonus":0,"Continent":"K36","ID":29238,"Name":"--badlands","PlayerID":8096537,"Points":8503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29238","ServerKey":"pl181","X":622,"Y":387},{"Bonus":0,"Continent":"K35","ID":29239,"Name":"071 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29239","ServerKey":"pl181","X":546,"Y":348},{"Bonus":0,"Continent":"K35","ID":29240,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29240","ServerKey":"pl181","X":588,"Y":356},{"Bonus":0,"Continent":"K63","ID":29241,"Name":"1v9 machine","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29241","ServerKey":"pl181","X":388,"Y":621},{"Bonus":0,"Continent":"K63","ID":29242,"Name":"Pobozowisko","PlayerID":699513260,"Points":7454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29242","ServerKey":"pl181","X":384,"Y":622},{"Bonus":0,"Continent":"K65","ID":29243,"Name":"|030| Lindos","PlayerID":699393742,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29243","ServerKey":"pl181","X":501,"Y":670},{"Bonus":0,"Continent":"K43","ID":29244,"Name":"4.02","PlayerID":3502565,"Points":5017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29244","ServerKey":"pl181","X":344,"Y":444},{"Bonus":0,"Continent":"K34","ID":29245,"Name":"Wioska 11","PlayerID":951823,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29245","ServerKey":"pl181","X":499,"Y":329},{"Bonus":0,"Continent":"K34","ID":29246,"Name":"#0104 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29246","ServerKey":"pl181","X":480,"Y":330},{"Bonus":0,"Continent":"K66","ID":29247,"Name":"Puszcza","PlayerID":2269943,"Points":5959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29247","ServerKey":"pl181","X":638,"Y":601},{"Bonus":0,"Continent":"K46","ID":29248,"Name":"024 - Mroczna Osada","PlayerID":849035905,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29248","ServerKey":"pl181","X":642,"Y":411},{"Bonus":0,"Continent":"K65","ID":29249,"Name":"Ave Why!","PlayerID":698585370,"Points":4741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29249","ServerKey":"pl181","X":501,"Y":669},{"Bonus":0,"Continent":"K53","ID":29251,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29251","ServerKey":"pl181","X":350,"Y":567},{"Bonus":0,"Continent":"K63","ID":29252,"Name":"Pobozowisko","PlayerID":699513260,"Points":10705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29252","ServerKey":"pl181","X":377,"Y":608},{"Bonus":0,"Continent":"K56","ID":29253,"Name":"=074= Wioska 0","PlayerID":3781794,"Points":9026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29253","ServerKey":"pl181","X":655,"Y":553},{"Bonus":0,"Continent":"K65","ID":29254,"Name":"zaraz bede .","PlayerID":848995242,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29254","ServerKey":"pl181","X":583,"Y":643},{"Bonus":0,"Continent":"K35","ID":29255,"Name":"043","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29255","ServerKey":"pl181","X":559,"Y":384},{"Bonus":0,"Continent":"K66","ID":29256,"Name":"023","PlayerID":699567608,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29256","ServerKey":"pl181","X":629,"Y":612},{"Bonus":0,"Continent":"K64","ID":29257,"Name":"A04","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29257","ServerKey":"pl181","X":473,"Y":669},{"Bonus":0,"Continent":"K53","ID":29258,"Name":"Wioska barbarzyƄska","PlayerID":3990066,"Points":2389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29258","ServerKey":"pl181","X":348,"Y":580},{"Bonus":0,"Continent":"K43","ID":29259,"Name":"*132*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29259","ServerKey":"pl181","X":354,"Y":417},{"Bonus":0,"Continent":"K65","ID":29260,"Name":"Sony 911","PlayerID":1415009,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29260","ServerKey":"pl181","X":587,"Y":642},{"Bonus":0,"Continent":"K53","ID":29261,"Name":"Dąbrowa 0009","PlayerID":849096972,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29261","ServerKey":"pl181","X":362,"Y":597},{"Bonus":0,"Continent":"K36","ID":29262,"Name":"pomiędzy","PlayerID":699832463,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29262","ServerKey":"pl181","X":628,"Y":396},{"Bonus":0,"Continent":"K65","ID":29263,"Name":"S_013","PlayerID":849049155,"Points":7025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29263","ServerKey":"pl181","X":514,"Y":668},{"Bonus":0,"Continent":"K65","ID":29264,"Name":"6 barba","PlayerID":848995242,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29264","ServerKey":"pl181","X":584,"Y":643},{"Bonus":0,"Continent":"K43","ID":29265,"Name":"V006","PlayerID":849097737,"Points":4124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29265","ServerKey":"pl181","X":350,"Y":417},{"Bonus":0,"Continent":"K56","ID":29266,"Name":"=070= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29266","ServerKey":"pl181","X":658,"Y":552},{"Bonus":0,"Continent":"K64","ID":29267,"Name":"007 Aldersberg","PlayerID":699834004,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29267","ServerKey":"pl181","X":466,"Y":662},{"Bonus":0,"Continent":"K65","ID":29269,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29269","ServerKey":"pl181","X":587,"Y":643},{"Bonus":0,"Continent":"K34","ID":29270,"Name":"050...JUKE","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29270","ServerKey":"pl181","X":451,"Y":342},{"Bonus":0,"Continent":"K43","ID":29271,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29271","ServerKey":"pl181","X":336,"Y":471},{"Bonus":0,"Continent":"K53","ID":29272,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29272","ServerKey":"pl181","X":328,"Y":501},{"Bonus":0,"Continent":"K56","ID":29273,"Name":"xxx","PlayerID":1415009,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29273","ServerKey":"pl181","X":641,"Y":587},{"Bonus":0,"Continent":"K64","ID":29274,"Name":"Forza 12","PlayerID":849100323,"Points":4875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29274","ServerKey":"pl181","X":438,"Y":652},{"Bonus":0,"Continent":"K46","ID":29276,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29276","ServerKey":"pl181","X":668,"Y":470},{"Bonus":0,"Continent":"K64","ID":29277,"Name":"wLisanna","PlayerID":699849210,"Points":2824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29277","ServerKey":"pl181","X":446,"Y":659},{"Bonus":0,"Continent":"K46","ID":29278,"Name":"I037","PlayerID":699722599,"Points":10115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29278","ServerKey":"pl181","X":661,"Y":441},{"Bonus":0,"Continent":"K56","ID":29279,"Name":"075","PlayerID":849095227,"Points":9198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29279","ServerKey":"pl181","X":650,"Y":567},{"Bonus":0,"Continent":"K36","ID":29280,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29280","ServerKey":"pl181","X":635,"Y":396},{"Bonus":0,"Continent":"K64","ID":29281,"Name":"psycha sitting","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29281","ServerKey":"pl181","X":425,"Y":656},{"Bonus":0,"Continent":"K66","ID":29282,"Name":"BETON 026","PlayerID":699277039,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29282","ServerKey":"pl181","X":622,"Y":610},{"Bonus":0,"Continent":"K53","ID":29283,"Name":"Chekku - meito","PlayerID":9280477,"Points":10296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29283","ServerKey":"pl181","X":340,"Y":527},{"Bonus":0,"Continent":"K35","ID":29284,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29284","ServerKey":"pl181","X":511,"Y":329},{"Bonus":0,"Continent":"K35","ID":29285,"Name":"Lord Lord Franek .#077","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29285","ServerKey":"pl181","X":520,"Y":334},{"Bonus":0,"Continent":"K36","ID":29286,"Name":"Po ƛwiętach","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29286","ServerKey":"pl181","X":604,"Y":369},{"Bonus":0,"Continent":"K34","ID":29287,"Name":"Wioska 12","PlayerID":951823,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29287","ServerKey":"pl181","X":496,"Y":333},{"Bonus":0,"Continent":"K36","ID":29288,"Name":"--hill city","PlayerID":8096537,"Points":7955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29288","ServerKey":"pl181","X":622,"Y":388},{"Bonus":6,"Continent":"K36","ID":29289,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29289","ServerKey":"pl181","X":612,"Y":374},{"Bonus":0,"Continent":"K45","ID":29290,"Name":"Szlachcic","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29290","ServerKey":"pl181","X":505,"Y":458},{"Bonus":0,"Continent":"K46","ID":29291,"Name":"017","PlayerID":7085502,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29291","ServerKey":"pl181","X":668,"Y":497},{"Bonus":0,"Continent":"K63","ID":29292,"Name":".:001:.","PlayerID":7417116,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29292","ServerKey":"pl181","X":373,"Y":611},{"Bonus":0,"Continent":"K35","ID":29293,"Name":"Lord Lord Franek .#078","PlayerID":698420691,"Points":10299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29293","ServerKey":"pl181","X":517,"Y":333},{"Bonus":0,"Continent":"K65","ID":29294,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29294","ServerKey":"pl181","X":572,"Y":652},{"Bonus":0,"Continent":"K43","ID":29295,"Name":"*078*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29295","ServerKey":"pl181","X":357,"Y":418},{"Bonus":0,"Continent":"K65","ID":29296,"Name":"Wigor","PlayerID":849097386,"Points":3559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29296","ServerKey":"pl181","X":577,"Y":650},{"Bonus":0,"Continent":"K53","ID":29297,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29297","ServerKey":"pl181","X":348,"Y":578},{"Bonus":0,"Continent":"K34","ID":29298,"Name":"#0160 deleted","PlayerID":1238300,"Points":8905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29298","ServerKey":"pl181","X":470,"Y":331},{"Bonus":0,"Continent":"K36","ID":29299,"Name":"049- Mroczna Osada","PlayerID":849035905,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29299","ServerKey":"pl181","X":630,"Y":397},{"Bonus":0,"Continent":"K53","ID":29300,"Name":"025. barbara9","PlayerID":1830149,"Points":3711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29300","ServerKey":"pl181","X":333,"Y":501},{"Bonus":0,"Continent":"K34","ID":29301,"Name":"055...barbarka","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29301","ServerKey":"pl181","X":449,"Y":341},{"Bonus":3,"Continent":"K66","ID":29302,"Name":"Ć»UBRAWKA 039","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29302","ServerKey":"pl181","X":609,"Y":633},{"Bonus":0,"Continent":"K64","ID":29303,"Name":"018","PlayerID":849089459,"Points":3040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29303","ServerKey":"pl181","X":424,"Y":641},{"Bonus":0,"Continent":"K65","ID":29304,"Name":"0533","PlayerID":698659980,"Points":5839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29304","ServerKey":"pl181","X":559,"Y":659},{"Bonus":0,"Continent":"K35","ID":29305,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29305","ServerKey":"pl181","X":590,"Y":353},{"Bonus":0,"Continent":"K34","ID":29306,"Name":"014","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29306","ServerKey":"pl181","X":454,"Y":341},{"Bonus":0,"Continent":"K43","ID":29307,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29307","ServerKey":"pl181","X":333,"Y":462},{"Bonus":0,"Continent":"K65","ID":29308,"Name":"*010","PlayerID":699567608,"Points":9073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29308","ServerKey":"pl181","X":594,"Y":640},{"Bonus":0,"Continent":"K66","ID":29309,"Name":"*043","PlayerID":699567608,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29309","ServerKey":"pl181","X":600,"Y":634},{"Bonus":0,"Continent":"K43","ID":29310,"Name":"M181_007","PlayerID":393668,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29310","ServerKey":"pl181","X":345,"Y":425},{"Bonus":0,"Continent":"K43","ID":29311,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29311","ServerKey":"pl181","X":335,"Y":458},{"Bonus":0,"Continent":"K36","ID":29312,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29312","ServerKey":"pl181","X":612,"Y":371},{"Bonus":0,"Continent":"K53","ID":29313,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29313","ServerKey":"pl181","X":329,"Y":504},{"Bonus":0,"Continent":"K46","ID":29314,"Name":"I013 Solnik","PlayerID":699722599,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29314","ServerKey":"pl181","X":664,"Y":460},{"Bonus":0,"Continent":"K33","ID":29315,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29315","ServerKey":"pl181","X":364,"Y":397},{"Bonus":0,"Continent":"K53","ID":29316,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29316","ServerKey":"pl181","X":338,"Y":553},{"Bonus":0,"Continent":"K35","ID":29317,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29317","ServerKey":"pl181","X":586,"Y":356},{"Bonus":0,"Continent":"K65","ID":29318,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29318","ServerKey":"pl181","X":518,"Y":664},{"Bonus":0,"Continent":"K36","ID":29319,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29319","ServerKey":"pl181","X":613,"Y":371},{"Bonus":0,"Continent":"K46","ID":29321,"Name":"014 - Mroczna Osada","PlayerID":849035905,"Points":10318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29321","ServerKey":"pl181","X":643,"Y":409},{"Bonus":0,"Continent":"K34","ID":29322,"Name":"K34 x034","PlayerID":698364331,"Points":4224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29322","ServerKey":"pl181","X":406,"Y":356},{"Bonus":0,"Continent":"K46","ID":29323,"Name":"Jehu_Kingdom_57","PlayerID":8785314,"Points":5384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29323","ServerKey":"pl181","X":656,"Y":428},{"Bonus":0,"Continent":"K34","ID":29324,"Name":"North Barba 007","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29324","ServerKey":"pl181","X":419,"Y":364},{"Bonus":0,"Continent":"K64","ID":29325,"Name":"Wioska sobie 015","PlayerID":7349282,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29325","ServerKey":"pl181","X":402,"Y":640},{"Bonus":0,"Continent":"K66","ID":29326,"Name":"Ć»UBRAWKA 017","PlayerID":33900,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29326","ServerKey":"pl181","X":605,"Y":630},{"Bonus":0,"Continent":"K35","ID":29327,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":4394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29327","ServerKey":"pl181","X":595,"Y":357},{"Bonus":2,"Continent":"K34","ID":29328,"Name":"#0111 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29328","ServerKey":"pl181","X":483,"Y":331},{"Bonus":0,"Continent":"K46","ID":29329,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29329","ServerKey":"pl181","X":670,"Y":490},{"Bonus":0,"Continent":"K33","ID":29330,"Name":"cc 110 7","PlayerID":3909522,"Points":7733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29330","ServerKey":"pl181","X":375,"Y":384},{"Bonus":5,"Continent":"K34","ID":29331,"Name":"[B]_[044] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29331","ServerKey":"pl181","X":419,"Y":350},{"Bonus":0,"Continent":"K34","ID":29332,"Name":"119...centr","PlayerID":6920960,"Points":8382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29332","ServerKey":"pl181","X":459,"Y":341},{"Bonus":0,"Continent":"K56","ID":29333,"Name":"B 037","PlayerID":8078914,"Points":8660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29333","ServerKey":"pl181","X":663,"Y":531},{"Bonus":2,"Continent":"K43","ID":29334,"Name":"*135*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29334","ServerKey":"pl181","X":353,"Y":413},{"Bonus":0,"Continent":"K43","ID":29335,"Name":"1.14","PlayerID":3502565,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29335","ServerKey":"pl181","X":335,"Y":452},{"Bonus":0,"Continent":"K36","ID":29336,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29336","ServerKey":"pl181","X":636,"Y":395},{"Bonus":0,"Continent":"K34","ID":29337,"Name":"A-041","PlayerID":8419570,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29337","ServerKey":"pl181","X":402,"Y":363},{"Bonus":0,"Continent":"K53","ID":29338,"Name":"Chekku - meito","PlayerID":9280477,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29338","ServerKey":"pl181","X":331,"Y":522},{"Bonus":0,"Continent":"K36","ID":29339,"Name":"--buffalo chip","PlayerID":8096537,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29339","ServerKey":"pl181","X":624,"Y":393},{"Bonus":0,"Continent":"K65","ID":29340,"Name":"022. Madzikostwo Wielkie","PlayerID":849004274,"Points":10170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29340","ServerKey":"pl181","X":510,"Y":664},{"Bonus":0,"Continent":"K65","ID":29341,"Name":"0271","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29341","ServerKey":"pl181","X":543,"Y":666},{"Bonus":0,"Continent":"K35","ID":29342,"Name":"xxx #013#TerrorMachine x Miniqo","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29342","ServerKey":"pl181","X":586,"Y":355},{"Bonus":0,"Continent":"K36","ID":29343,"Name":"014","PlayerID":1018357,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29343","ServerKey":"pl181","X":600,"Y":364},{"Bonus":0,"Continent":"K34","ID":29344,"Name":"[B]_[011] Dejv.oldplyr","PlayerID":699380607,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29344","ServerKey":"pl181","X":428,"Y":346},{"Bonus":8,"Continent":"K64","ID":29345,"Name":"002 Maribour","PlayerID":699834004,"Points":10521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29345","ServerKey":"pl181","X":459,"Y":660},{"Bonus":0,"Continent":"K43","ID":29346,"Name":"3.02","PlayerID":393668,"Points":7012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29346","ServerKey":"pl181","X":344,"Y":440},{"Bonus":0,"Continent":"K56","ID":29347,"Name":"19k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29347","ServerKey":"pl181","X":654,"Y":570},{"Bonus":0,"Continent":"K64","ID":29348,"Name":"wNatsu","PlayerID":699849210,"Points":7348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29348","ServerKey":"pl181","X":450,"Y":658},{"Bonus":0,"Continent":"K56","ID":29349,"Name":"Wioska 119","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29349","ServerKey":"pl181","X":671,"Y":520},{"Bonus":0,"Continent":"K43","ID":29350,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29350","ServerKey":"pl181","X":331,"Y":491},{"Bonus":0,"Continent":"K53","ID":29351,"Name":"Denger 12","PlayerID":698353083,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29351","ServerKey":"pl181","X":360,"Y":588},{"Bonus":0,"Continent":"K53","ID":29352,"Name":"Parque das Nacoes","PlayerID":699494480,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29352","ServerKey":"pl181","X":356,"Y":587},{"Bonus":0,"Continent":"K63","ID":29354,"Name":"Skrzypas en","PlayerID":849014147,"Points":5033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29354","ServerKey":"pl181","X":360,"Y":601},{"Bonus":0,"Continent":"K36","ID":29355,"Name":"greeece2","PlayerID":698290319,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29355","ServerKey":"pl181","X":636,"Y":398},{"Bonus":0,"Continent":"K64","ID":29356,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29356","ServerKey":"pl181","X":463,"Y":662},{"Bonus":3,"Continent":"K33","ID":29357,"Name":"Szulernia","PlayerID":7249451,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29357","ServerKey":"pl181","X":393,"Y":376},{"Bonus":0,"Continent":"K65","ID":29358,"Name":"010 kocham serniczek","PlayerID":8954402,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29358","ServerKey":"pl181","X":502,"Y":666},{"Bonus":0,"Continent":"K43","ID":29359,"Name":"M181_038","PlayerID":393668,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29359","ServerKey":"pl181","X":345,"Y":426},{"Bonus":0,"Continent":"K65","ID":29360,"Name":"*044","PlayerID":699567608,"Points":9397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29360","ServerKey":"pl181","X":599,"Y":634},{"Bonus":0,"Continent":"K65","ID":29361,"Name":"Avalon","PlayerID":699567608,"Points":8075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29361","ServerKey":"pl181","X":573,"Y":656},{"Bonus":0,"Continent":"K43","ID":29363,"Name":"Mięguszowiecki Szczyt Poƛredni","PlayerID":849013126,"Points":5962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29363","ServerKey":"pl181","X":332,"Y":483},{"Bonus":0,"Continent":"K43","ID":29364,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29364","ServerKey":"pl181","X":342,"Y":445},{"Bonus":0,"Continent":"K35","ID":29365,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29365","ServerKey":"pl181","X":556,"Y":340},{"Bonus":0,"Continent":"K56","ID":29366,"Name":"E009","PlayerID":8428196,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29366","ServerKey":"pl181","X":661,"Y":554},{"Bonus":9,"Continent":"K35","ID":29367,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29367","ServerKey":"pl181","X":570,"Y":350},{"Bonus":0,"Continent":"K65","ID":29368,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29368","ServerKey":"pl181","X":523,"Y":663},{"Bonus":0,"Continent":"K65","ID":29370,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29370","ServerKey":"pl181","X":520,"Y":665},{"Bonus":0,"Continent":"K35","ID":29371,"Name":"-008-","PlayerID":698588812,"Points":2987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29371","ServerKey":"pl181","X":538,"Y":332},{"Bonus":0,"Continent":"K53","ID":29372,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29372","ServerKey":"pl181","X":345,"Y":532},{"Bonus":0,"Continent":"K56","ID":29373,"Name":"O20 Quillota","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29373","ServerKey":"pl181","X":666,"Y":539},{"Bonus":0,"Continent":"K53","ID":29374,"Name":"Chekku - meito","PlayerID":9280477,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29374","ServerKey":"pl181","X":344,"Y":526},{"Bonus":0,"Continent":"K53","ID":29375,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":6649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29375","ServerKey":"pl181","X":340,"Y":548},{"Bonus":0,"Continent":"K43","ID":29377,"Name":"M181_034","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29377","ServerKey":"pl181","X":348,"Y":430},{"Bonus":4,"Continent":"K46","ID":29378,"Name":"002","PlayerID":7085502,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29378","ServerKey":"pl181","X":667,"Y":489},{"Bonus":0,"Continent":"K33","ID":29381,"Name":"025 Rzym","PlayerID":848978297,"Points":7396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29381","ServerKey":"pl181","X":383,"Y":385},{"Bonus":0,"Continent":"K33","ID":29383,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":6139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29383","ServerKey":"pl181","X":381,"Y":382},{"Bonus":0,"Continent":"K53","ID":29385,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29385","ServerKey":"pl181","X":332,"Y":530},{"Bonus":0,"Continent":"K65","ID":29386,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29386","ServerKey":"pl181","X":571,"Y":651},{"Bonus":9,"Continent":"K53","ID":29387,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29387","ServerKey":"pl181","X":333,"Y":538},{"Bonus":0,"Continent":"K35","ID":29389,"Name":"-0010-","PlayerID":2972329,"Points":7990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29389","ServerKey":"pl181","X":540,"Y":334},{"Bonus":0,"Continent":"K35","ID":29390,"Name":"Lord Lord Franek .#124","PlayerID":698420691,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29390","ServerKey":"pl181","X":512,"Y":333},{"Bonus":0,"Continent":"K43","ID":29391,"Name":"G01","PlayerID":393668,"Points":5693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29391","ServerKey":"pl181","X":347,"Y":426},{"Bonus":6,"Continent":"K34","ID":29392,"Name":"[B]_[042] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29392","ServerKey":"pl181","X":423,"Y":350},{"Bonus":0,"Continent":"K33","ID":29393,"Name":"Wioska 008","PlayerID":8419570,"Points":8840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29393","ServerKey":"pl181","X":381,"Y":387},{"Bonus":0,"Continent":"K53","ID":29394,"Name":"011 nazwa","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29394","ServerKey":"pl181","X":364,"Y":597},{"Bonus":0,"Continent":"K46","ID":29395,"Name":"I038 Kaszanka na zimno","PlayerID":699722599,"Points":10202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29395","ServerKey":"pl181","X":658,"Y":438},{"Bonus":0,"Continent":"K53","ID":29396,"Name":"C0138","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29396","ServerKey":"pl181","X":330,"Y":523},{"Bonus":0,"Continent":"K56","ID":29398,"Name":"=062= Wioska barbarzyƄska","PlayerID":3781794,"Points":8456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29398","ServerKey":"pl181","X":645,"Y":578},{"Bonus":7,"Continent":"K65","ID":29399,"Name":"0360","PlayerID":698659980,"Points":7577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29399","ServerKey":"pl181","X":551,"Y":663},{"Bonus":0,"Continent":"K53","ID":29400,"Name":"001","PlayerID":699265922,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29400","ServerKey":"pl181","X":336,"Y":531},{"Bonus":0,"Continent":"K56","ID":29401,"Name":"053","PlayerID":849095227,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29401","ServerKey":"pl181","X":665,"Y":542},{"Bonus":6,"Continent":"K64","ID":29402,"Name":"A06","PlayerID":698652014,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29402","ServerKey":"pl181","X":476,"Y":666},{"Bonus":0,"Continent":"K64","ID":29403,"Name":"Wioska Pigula1983","PlayerID":699828338,"Points":5474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29403","ServerKey":"pl181","X":445,"Y":657},{"Bonus":0,"Continent":"K53","ID":29404,"Name":"KAMIONKA 1","PlayerID":7318949,"Points":3091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29404","ServerKey":"pl181","X":349,"Y":573},{"Bonus":0,"Continent":"K33","ID":29405,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":2764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29405","ServerKey":"pl181","X":373,"Y":386},{"Bonus":0,"Continent":"K35","ID":29408,"Name":"006","PlayerID":849087786,"Points":2069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29408","ServerKey":"pl181","X":547,"Y":340},{"Bonus":0,"Continent":"K35","ID":29410,"Name":"Ceres","PlayerID":699797805,"Points":3401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29410","ServerKey":"pl181","X":548,"Y":342},{"Bonus":0,"Continent":"K66","ID":29412,"Name":"## Nieznana ##","PlayerID":699778867,"Points":7957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29412","ServerKey":"pl181","X":627,"Y":605},{"Bonus":0,"Continent":"K53","ID":29413,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29413","ServerKey":"pl181","X":339,"Y":535},{"Bonus":0,"Continent":"K53","ID":29414,"Name":"Rodziny się nie wybiera","PlayerID":698338524,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29414","ServerKey":"pl181","X":337,"Y":530},{"Bonus":0,"Continent":"K64","ID":29415,"Name":"Forza 06","PlayerID":699849210,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29415","ServerKey":"pl181","X":433,"Y":658},{"Bonus":0,"Continent":"K53","ID":29416,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29416","ServerKey":"pl181","X":332,"Y":536},{"Bonus":0,"Continent":"K53","ID":29417,"Name":"Szarak ?","PlayerID":698338524,"Points":9213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29417","ServerKey":"pl181","X":336,"Y":526},{"Bonus":0,"Continent":"K36","ID":29418,"Name":"054- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29418","ServerKey":"pl181","X":629,"Y":396},{"Bonus":0,"Continent":"K63","ID":29419,"Name":"10 - Wioska","PlayerID":8607734,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29419","ServerKey":"pl181","X":373,"Y":608},{"Bonus":0,"Continent":"K35","ID":29420,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29420","ServerKey":"pl181","X":554,"Y":341},{"Bonus":6,"Continent":"K64","ID":29421,"Name":"007","PlayerID":698650301,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29421","ServerKey":"pl181","X":482,"Y":667},{"Bonus":0,"Continent":"K65","ID":29422,"Name":"0298","PlayerID":698659980,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29422","ServerKey":"pl181","X":569,"Y":658},{"Bonus":0,"Continent":"K56","ID":29423,"Name":"23k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29423","ServerKey":"pl181","X":650,"Y":575},{"Bonus":0,"Continent":"K35","ID":29424,"Name":"-0002-","PlayerID":2972329,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29424","ServerKey":"pl181","X":542,"Y":338},{"Bonus":0,"Continent":"K53","ID":29425,"Name":"Wioska klez 006","PlayerID":698295651,"Points":7540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29425","ServerKey":"pl181","X":330,"Y":511},{"Bonus":0,"Continent":"K36","ID":29426,"Name":"04 tonieostatnieslowo","PlayerID":699861004,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29426","ServerKey":"pl181","X":605,"Y":371},{"Bonus":0,"Continent":"K35","ID":29427,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29427","ServerKey":"pl181","X":553,"Y":341},{"Bonus":0,"Continent":"K65","ID":29428,"Name":"006","PlayerID":699316421,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29428","ServerKey":"pl181","X":592,"Y":642},{"Bonus":0,"Continent":"K43","ID":29429,"Name":"*136*","PlayerID":699273451,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29429","ServerKey":"pl181","X":357,"Y":416},{"Bonus":0,"Continent":"K56","ID":29430,"Name":"B 014","PlayerID":8078914,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29430","ServerKey":"pl181","X":667,"Y":536},{"Bonus":0,"Continent":"K35","ID":29431,"Name":"Lord Lord Franek .#125","PlayerID":698420691,"Points":9992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29431","ServerKey":"pl181","X":508,"Y":331},{"Bonus":0,"Continent":"K46","ID":29432,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29432","ServerKey":"pl181","X":669,"Y":488},{"Bonus":0,"Continent":"K53","ID":29433,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":5373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29433","ServerKey":"pl181","X":339,"Y":540},{"Bonus":0,"Continent":"K53","ID":29434,"Name":"Baixa","PlayerID":699494480,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29434","ServerKey":"pl181","X":349,"Y":588},{"Bonus":0,"Continent":"K46","ID":29435,"Name":"032 - Mroczna Osada","PlayerID":849035905,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29435","ServerKey":"pl181","X":644,"Y":415},{"Bonus":0,"Continent":"K56","ID":29436,"Name":"O48 Bovec","PlayerID":699272880,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29436","ServerKey":"pl181","X":663,"Y":548},{"Bonus":0,"Continent":"K46","ID":29437,"Name":"I015","PlayerID":699722599,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29437","ServerKey":"pl181","X":665,"Y":450},{"Bonus":0,"Continent":"K36","ID":29438,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29438","ServerKey":"pl181","X":625,"Y":389},{"Bonus":0,"Continent":"K46","ID":29439,"Name":"109","PlayerID":849088515,"Points":7998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29439","ServerKey":"pl181","X":656,"Y":439},{"Bonus":0,"Continent":"K46","ID":29440,"Name":"A015 Barba 2","PlayerID":113796,"Points":9148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29440","ServerKey":"pl181","X":666,"Y":454},{"Bonus":0,"Continent":"K33","ID":29441,"Name":"cc Wioska pqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":6296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29441","ServerKey":"pl181","X":390,"Y":372},{"Bonus":0,"Continent":"K66","ID":29442,"Name":"093","PlayerID":698786826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29442","ServerKey":"pl181","X":620,"Y":612},{"Bonus":0,"Continent":"K35","ID":29443,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29443","ServerKey":"pl181","X":579,"Y":351},{"Bonus":0,"Continent":"K65","ID":29444,"Name":"Piorunek1996","PlayerID":699567608,"Points":9160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29444","ServerKey":"pl181","X":572,"Y":656},{"Bonus":0,"Continent":"K63","ID":29445,"Name":"Pobozowisko","PlayerID":699513260,"Points":4999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29445","ServerKey":"pl181","X":368,"Y":608},{"Bonus":0,"Continent":"K33","ID":29446,"Name":"cc Walercia","PlayerID":3909522,"Points":8211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29446","ServerKey":"pl181","X":391,"Y":370},{"Bonus":0,"Continent":"K53","ID":29447,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29447","ServerKey":"pl181","X":334,"Y":505},{"Bonus":0,"Continent":"K33","ID":29448,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":9073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29448","ServerKey":"pl181","X":363,"Y":398},{"Bonus":0,"Continent":"K66","ID":29449,"Name":"004","PlayerID":849097799,"Points":9076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29449","ServerKey":"pl181","X":605,"Y":636},{"Bonus":0,"Continent":"K64","ID":29450,"Name":"Ave Why!","PlayerID":698585370,"Points":5747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29450","ServerKey":"pl181","X":497,"Y":671},{"Bonus":0,"Continent":"K36","ID":29451,"Name":"Wyspa 012","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29451","ServerKey":"pl181","X":619,"Y":380},{"Bonus":0,"Continent":"K36","ID":29452,"Name":"0003","PlayerID":848915730,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29452","ServerKey":"pl181","X":626,"Y":384},{"Bonus":0,"Continent":"K64","ID":29453,"Name":"Taka005","PlayerID":848999671,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29453","ServerKey":"pl181","X":477,"Y":663},{"Bonus":0,"Continent":"K36","ID":29454,"Name":"045","PlayerID":849010255,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29454","ServerKey":"pl181","X":628,"Y":383},{"Bonus":0,"Continent":"K46","ID":29455,"Name":"I016 Gwiezdny Patrol","PlayerID":699722599,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29455","ServerKey":"pl181","X":662,"Y":451},{"Bonus":0,"Continent":"K56","ID":29458,"Name":"51k$ Grvvyq","PlayerID":699676005,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29458","ServerKey":"pl181","X":654,"Y":578},{"Bonus":0,"Continent":"K36","ID":29459,"Name":".:017:. kr","PlayerID":849098782,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29459","ServerKey":"pl181","X":629,"Y":386},{"Bonus":0,"Continent":"K64","ID":29460,"Name":"wHappy","PlayerID":699849210,"Points":5649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29460","ServerKey":"pl181","X":446,"Y":656},{"Bonus":0,"Continent":"K36","ID":29461,"Name":"--Silver Haze","PlayerID":8096537,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29461","ServerKey":"pl181","X":625,"Y":382},{"Bonus":0,"Continent":"K33","ID":29462,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":9604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29462","ServerKey":"pl181","X":387,"Y":378},{"Bonus":0,"Continent":"K53","ID":29463,"Name":"Nowy ƛwiat 4","PlayerID":849084005,"Points":6292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29463","ServerKey":"pl181","X":349,"Y":567},{"Bonus":0,"Continent":"K46","ID":29464,"Name":"I029","PlayerID":699722599,"Points":10308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29464","ServerKey":"pl181","X":658,"Y":441},{"Bonus":0,"Continent":"K56","ID":29465,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":6707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29465","ServerKey":"pl181","X":646,"Y":573},{"Bonus":0,"Continent":"K56","ID":29466,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29466","ServerKey":"pl181","X":662,"Y":541},{"Bonus":0,"Continent":"K35","ID":29467,"Name":"Wioska tomiwet","PlayerID":699066118,"Points":7672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29467","ServerKey":"pl181","X":544,"Y":336},{"Bonus":3,"Continent":"K65","ID":29468,"Name":"*Null nic nie znaczy...","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29468","ServerKey":"pl181","X":580,"Y":647},{"Bonus":0,"Continent":"K56","ID":29469,"Name":"046","PlayerID":2135129,"Points":10453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29469","ServerKey":"pl181","X":669,"Y":501},{"Bonus":0,"Continent":"K46","ID":29470,"Name":"020 barbarzyƄska","PlayerID":9238175,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29470","ServerKey":"pl181","X":645,"Y":417},{"Bonus":0,"Continent":"K35","ID":29472,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":7531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29472","ServerKey":"pl181","X":582,"Y":356},{"Bonus":0,"Continent":"K35","ID":29473,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29473","ServerKey":"pl181","X":553,"Y":342},{"Bonus":0,"Continent":"K34","ID":29474,"Name":"#0041 GL01N","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29474","ServerKey":"pl181","X":469,"Y":330},{"Bonus":0,"Continent":"K64","ID":29475,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29475","ServerKey":"pl181","X":465,"Y":662},{"Bonus":0,"Continent":"K33","ID":29476,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":6836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29476","ServerKey":"pl181","X":367,"Y":391},{"Bonus":0,"Continent":"K63","ID":29477,"Name":"016 Szachy - WieĆŒa","PlayerID":8268010,"Points":9237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29477","ServerKey":"pl181","X":367,"Y":605},{"Bonus":0,"Continent":"K56","ID":29479,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29479","ServerKey":"pl181","X":664,"Y":525},{"Bonus":0,"Continent":"K43","ID":29480,"Name":"DW2","PlayerID":393668,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29480","ServerKey":"pl181","X":342,"Y":448},{"Bonus":0,"Continent":"K35","ID":29481,"Name":"ADEN","PlayerID":698588535,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29481","ServerKey":"pl181","X":574,"Y":347},{"Bonus":7,"Continent":"K34","ID":29482,"Name":"101...tomecz","PlayerID":6920960,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29482","ServerKey":"pl181","X":482,"Y":335},{"Bonus":0,"Continent":"K65","ID":29483,"Name":"Taurogi","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29483","ServerKey":"pl181","X":574,"Y":653},{"Bonus":0,"Continent":"K66","ID":29484,"Name":"022","PlayerID":849097799,"Points":7627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29484","ServerKey":"pl181","X":603,"Y":638},{"Bonus":0,"Continent":"K34","ID":29485,"Name":"0094","PlayerID":699431255,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29485","ServerKey":"pl181","X":418,"Y":350},{"Bonus":0,"Continent":"K65","ID":29486,"Name":"0417","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29486","ServerKey":"pl181","X":552,"Y":661},{"Bonus":0,"Continent":"K34","ID":29487,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":8256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29487","ServerKey":"pl181","X":402,"Y":359},{"Bonus":0,"Continent":"K35","ID":29489,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":7711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29489","ServerKey":"pl181","X":583,"Y":350},{"Bonus":0,"Continent":"K33","ID":29491,"Name":"0016 centurm","PlayerID":8419570,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29491","ServerKey":"pl181","X":390,"Y":378},{"Bonus":0,"Continent":"K34","ID":29492,"Name":"035...PÓƁNOC VIS","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29492","ServerKey":"pl181","X":462,"Y":337},{"Bonus":0,"Continent":"K65","ID":29493,"Name":"047","PlayerID":699828685,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29493","ServerKey":"pl181","X":563,"Y":652},{"Bonus":0,"Continent":"K63","ID":29494,"Name":"017 Kto mnie ten zƂom zapƂaci?","PlayerID":6354098,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29494","ServerKey":"pl181","X":385,"Y":628},{"Bonus":0,"Continent":"K36","ID":29495,"Name":"Wioska barbarzyƄska","PlayerID":698241117,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29495","ServerKey":"pl181","X":624,"Y":391},{"Bonus":0,"Continent":"K34","ID":29496,"Name":"0034","PlayerID":699431255,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29496","ServerKey":"pl181","X":415,"Y":358},{"Bonus":0,"Continent":"K33","ID":29497,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":8275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29497","ServerKey":"pl181","X":364,"Y":396},{"Bonus":0,"Continent":"K64","ID":29498,"Name":"|006| Gramvousa","PlayerID":699393742,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29498","ServerKey":"pl181","X":493,"Y":665},{"Bonus":0,"Continent":"K53","ID":29499,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29499","ServerKey":"pl181","X":332,"Y":519},{"Bonus":0,"Continent":"K35","ID":29500,"Name":"Lord Lord Franek .#110","PlayerID":698420691,"Points":10538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29500","ServerKey":"pl181","X":511,"Y":328},{"Bonus":0,"Continent":"K64","ID":29501,"Name":"#Sk_016","PlayerID":699849210,"Points":3489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29501","ServerKey":"pl181","X":436,"Y":660},{"Bonus":0,"Continent":"K53","ID":29502,"Name":"Dajanka 31","PlayerID":849012843,"Points":710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29502","ServerKey":"pl181","X":349,"Y":575},{"Bonus":0,"Continent":"K64","ID":29503,"Name":"014 Anchor","PlayerID":699834004,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29503","ServerKey":"pl181","X":464,"Y":660},{"Bonus":0,"Continent":"K35","ID":29504,"Name":"Co to byƂo","PlayerID":849041192,"Points":6221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29504","ServerKey":"pl181","X":598,"Y":360},{"Bonus":0,"Continent":"K66","ID":29505,"Name":"104. Wyspy PrzybrzeĆŒne","PlayerID":8337151,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29505","ServerKey":"pl181","X":634,"Y":602},{"Bonus":0,"Continent":"K53","ID":29506,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29506","ServerKey":"pl181","X":345,"Y":561},{"Bonus":0,"Continent":"K36","ID":29507,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29507","ServerKey":"pl181","X":615,"Y":378},{"Bonus":0,"Continent":"K65","ID":29508,"Name":"Sony 911","PlayerID":1415009,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29508","ServerKey":"pl181","X":588,"Y":640},{"Bonus":3,"Continent":"K64","ID":29509,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29509","ServerKey":"pl181","X":439,"Y":659},{"Bonus":0,"Continent":"K65","ID":29510,"Name":"0518","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29510","ServerKey":"pl181","X":521,"Y":664},{"Bonus":0,"Continent":"K65","ID":29511,"Name":"027 serniczek z bezą","PlayerID":8954402,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29511","ServerKey":"pl181","X":507,"Y":668},{"Bonus":0,"Continent":"K43","ID":29512,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29512","ServerKey":"pl181","X":335,"Y":480},{"Bonus":0,"Continent":"K56","ID":29513,"Name":"O19 Iquique","PlayerID":699272880,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29513","ServerKey":"pl181","X":666,"Y":541},{"Bonus":0,"Continent":"K63","ID":29514,"Name":"045.","PlayerID":2665207,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29514","ServerKey":"pl181","X":389,"Y":627},{"Bonus":0,"Continent":"K65","ID":29515,"Name":"0519","PlayerID":698659980,"Points":8435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29515","ServerKey":"pl181","X":533,"Y":662},{"Bonus":0,"Continent":"K34","ID":29516,"Name":"Wioska ba3","PlayerID":6118079,"Points":7703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29516","ServerKey":"pl181","X":498,"Y":329},{"Bonus":0,"Continent":"K64","ID":29517,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":5712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29517","ServerKey":"pl181","X":416,"Y":648},{"Bonus":0,"Continent":"K56","ID":29518,"Name":"082","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29518","ServerKey":"pl181","X":659,"Y":554},{"Bonus":0,"Continent":"K35","ID":29519,"Name":"ADEN","PlayerID":698588535,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29519","ServerKey":"pl181","X":575,"Y":348},{"Bonus":0,"Continent":"K34","ID":29520,"Name":"217...barba","PlayerID":6920960,"Points":8528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29520","ServerKey":"pl181","X":461,"Y":332},{"Bonus":0,"Continent":"K43","ID":29521,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29521","ServerKey":"pl181","X":330,"Y":471},{"Bonus":0,"Continent":"K64","ID":29522,"Name":"Ave Why!","PlayerID":698585370,"Points":9235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29522","ServerKey":"pl181","X":498,"Y":668},{"Bonus":0,"Continent":"K56","ID":29523,"Name":"B.05","PlayerID":699737356,"Points":7282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29523","ServerKey":"pl181","X":667,"Y":501},{"Bonus":0,"Continent":"K43","ID":29524,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29524","ServerKey":"pl181","X":349,"Y":427},{"Bonus":0,"Continent":"K56","ID":29525,"Name":"103. Szczyty KsiÄ…ĆŒÄ™ce","PlayerID":8337151,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29525","ServerKey":"pl181","X":644,"Y":594},{"Bonus":0,"Continent":"K64","ID":29526,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":3168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29526","ServerKey":"pl181","X":421,"Y":646},{"Bonus":0,"Continent":"K65","ID":29527,"Name":"025","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29527","ServerKey":"pl181","X":524,"Y":670},{"Bonus":0,"Continent":"K34","ID":29528,"Name":"015","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29528","ServerKey":"pl181","X":456,"Y":340},{"Bonus":0,"Continent":"K35","ID":29529,"Name":"Lord Lord Franek .#167","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29529","ServerKey":"pl181","X":510,"Y":332},{"Bonus":0,"Continent":"K46","ID":29530,"Name":"Yankee","PlayerID":699737356,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29530","ServerKey":"pl181","X":670,"Y":499},{"Bonus":0,"Continent":"K64","ID":29532,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":1798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29532","ServerKey":"pl181","X":416,"Y":651},{"Bonus":0,"Continent":"K34","ID":29533,"Name":"121","PlayerID":7271812,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29533","ServerKey":"pl181","X":472,"Y":354},{"Bonus":0,"Continent":"K35","ID":29534,"Name":"Rzym","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29534","ServerKey":"pl181","X":585,"Y":356},{"Bonus":0,"Continent":"K56","ID":29535,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":8839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29535","ServerKey":"pl181","X":669,"Y":536},{"Bonus":0,"Continent":"K33","ID":29536,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":2960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29536","ServerKey":"pl181","X":384,"Y":382},{"Bonus":2,"Continent":"K64","ID":29537,"Name":"A02","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29537","ServerKey":"pl181","X":471,"Y":667},{"Bonus":0,"Continent":"K35","ID":29538,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29538","ServerKey":"pl181","X":577,"Y":354},{"Bonus":0,"Continent":"K64","ID":29539,"Name":"D02 A jednak udaƂo się .","PlayerID":849037407,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29539","ServerKey":"pl181","X":459,"Y":666},{"Bonus":0,"Continent":"K46","ID":29541,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29541","ServerKey":"pl181","X":671,"Y":480},{"Bonus":0,"Continent":"K36","ID":29542,"Name":"**20**","PlayerID":849098782,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29542","ServerKey":"pl181","X":630,"Y":391},{"Bonus":0,"Continent":"K35","ID":29543,"Name":"Lord Lord Franek .#126","PlayerID":698420691,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29543","ServerKey":"pl181","X":517,"Y":334},{"Bonus":0,"Continent":"K36","ID":29544,"Name":"048 front","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29544","ServerKey":"pl181","X":601,"Y":367},{"Bonus":0,"Continent":"K56","ID":29545,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29545","ServerKey":"pl181","X":652,"Y":573},{"Bonus":0,"Continent":"K35","ID":29546,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29546","ServerKey":"pl181","X":572,"Y":352},{"Bonus":0,"Continent":"K65","ID":29547,"Name":"Wioska Mayweather 7","PlayerID":699567608,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29547","ServerKey":"pl181","X":597,"Y":640},{"Bonus":0,"Continent":"K36","ID":29548,"Name":"008","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29548","ServerKey":"pl181","X":602,"Y":364},{"Bonus":0,"Continent":"K53","ID":29549,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29549","ServerKey":"pl181","X":331,"Y":518},{"Bonus":0,"Continent":"K64","ID":29550,"Name":"Ave Why!","PlayerID":698585370,"Points":6175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29550","ServerKey":"pl181","X":496,"Y":666},{"Bonus":0,"Continent":"K63","ID":29551,"Name":"Pobozowisko","PlayerID":699513260,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29551","ServerKey":"pl181","X":380,"Y":614},{"Bonus":0,"Continent":"K46","ID":29552,"Name":"**30**","PlayerID":849098782,"Points":9350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29552","ServerKey":"pl181","X":661,"Y":440},{"Bonus":0,"Continent":"K35","ID":29553,"Name":"troja","PlayerID":698290319,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29553","ServerKey":"pl181","X":562,"Y":341},{"Bonus":0,"Continent":"K63","ID":29554,"Name":"Valhalla A9","PlayerID":849097002,"Points":2829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29554","ServerKey":"pl181","X":369,"Y":613},{"Bonus":0,"Continent":"K35","ID":29555,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29555","ServerKey":"pl181","X":516,"Y":329},{"Bonus":0,"Continent":"K56","ID":29556,"Name":"Orle","PlayerID":849039310,"Points":8228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29556","ServerKey":"pl181","X":655,"Y":584},{"Bonus":0,"Continent":"K46","ID":29557,"Name":"I041","PlayerID":699722599,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29557","ServerKey":"pl181","X":659,"Y":436},{"Bonus":0,"Continent":"K64","ID":29558,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29558","ServerKey":"pl181","X":461,"Y":664},{"Bonus":0,"Continent":"K46","ID":29559,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29559","ServerKey":"pl181","X":667,"Y":469},{"Bonus":0,"Continent":"K35","ID":29560,"Name":"berkuza 2","PlayerID":7340529,"Points":9015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29560","ServerKey":"pl181","X":588,"Y":355},{"Bonus":0,"Continent":"K64","ID":29561,"Name":"A26","PlayerID":698652014,"Points":1871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29561","ServerKey":"pl181","X":470,"Y":666},{"Bonus":0,"Continent":"K53","ID":29562,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29562","ServerKey":"pl181","X":354,"Y":513},{"Bonus":0,"Continent":"K35","ID":29565,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":5762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29565","ServerKey":"pl181","X":539,"Y":336},{"Bonus":0,"Continent":"K53","ID":29566,"Name":"Plutosea 026","PlayerID":699523631,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29566","ServerKey":"pl181","X":330,"Y":534},{"Bonus":0,"Continent":"K65","ID":29567,"Name":"0279","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29567","ServerKey":"pl181","X":547,"Y":659},{"Bonus":0,"Continent":"K53","ID":29568,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29568","ServerKey":"pl181","X":335,"Y":550},{"Bonus":0,"Continent":"K46","ID":29569,"Name":"157 Nocny Jastrząb 002","PlayerID":699491076,"Points":8443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29569","ServerKey":"pl181","X":643,"Y":406},{"Bonus":6,"Continent":"K43","ID":29570,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29570","ServerKey":"pl181","X":332,"Y":475},{"Bonus":0,"Continent":"K63","ID":29571,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29571","ServerKey":"pl181","X":380,"Y":621},{"Bonus":0,"Continent":"K46","ID":29572,"Name":"79.","PlayerID":699429153,"Points":7390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29572","ServerKey":"pl181","X":632,"Y":401},{"Bonus":0,"Continent":"K34","ID":29573,"Name":".achim.","PlayerID":6936607,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29573","ServerKey":"pl181","X":490,"Y":335},{"Bonus":0,"Continent":"K35","ID":29574,"Name":"Lord Lord Franek .#079","PlayerID":698420691,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29574","ServerKey":"pl181","X":530,"Y":334},{"Bonus":0,"Continent":"K65","ID":29576,"Name":"#101 C","PlayerID":9037756,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29576","ServerKey":"pl181","X":531,"Y":669},{"Bonus":8,"Continent":"K66","ID":29577,"Name":"tylna","PlayerID":6417987,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29577","ServerKey":"pl181","X":627,"Y":614},{"Bonus":0,"Continent":"K56","ID":29578,"Name":"$8.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29578","ServerKey":"pl181","X":658,"Y":568},{"Bonus":0,"Continent":"K43","ID":29579,"Name":"1.011","PlayerID":3502565,"Points":8764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29579","ServerKey":"pl181","X":338,"Y":444},{"Bonus":0,"Continent":"K53","ID":29580,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29580","ServerKey":"pl181","X":329,"Y":524},{"Bonus":0,"Continent":"K63","ID":29581,"Name":".:003:.","PlayerID":7417116,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29581","ServerKey":"pl181","X":373,"Y":610},{"Bonus":0,"Continent":"K56","ID":29583,"Name":"B 031","PlayerID":8078914,"Points":8406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29583","ServerKey":"pl181","X":667,"Y":531},{"Bonus":0,"Continent":"K56","ID":29584,"Name":"VADER","PlayerID":699845400,"Points":7157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29584","ServerKey":"pl181","X":655,"Y":573},{"Bonus":0,"Continent":"K34","ID":29585,"Name":"057...barbarka","PlayerID":6920960,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29585","ServerKey":"pl181","X":451,"Y":341},{"Bonus":0,"Continent":"K35","ID":29586,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":6525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29586","ServerKey":"pl181","X":596,"Y":363},{"Bonus":0,"Continent":"K53","ID":29587,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29587","ServerKey":"pl181","X":333,"Y":513},{"Bonus":0,"Continent":"K53","ID":29588,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29588","ServerKey":"pl181","X":340,"Y":539},{"Bonus":0,"Continent":"K34","ID":29589,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":6369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29589","ServerKey":"pl181","X":497,"Y":330},{"Bonus":0,"Continent":"K43","ID":29590,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29590","ServerKey":"pl181","X":331,"Y":481},{"Bonus":2,"Continent":"K53","ID":29591,"Name":"003.Bordeaux","PlayerID":1830149,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29591","ServerKey":"pl181","X":332,"Y":501},{"Bonus":0,"Continent":"K34","ID":29592,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29592","ServerKey":"pl181","X":493,"Y":328},{"Bonus":0,"Continent":"K56","ID":29593,"Name":"D 020","PlayerID":8078914,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29593","ServerKey":"pl181","X":671,"Y":511},{"Bonus":0,"Continent":"K46","ID":29594,"Name":"I042","PlayerID":699722599,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29594","ServerKey":"pl181","X":657,"Y":437},{"Bonus":0,"Continent":"K43","ID":29595,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29595","ServerKey":"pl181","X":328,"Y":498},{"Bonus":0,"Continent":"K46","ID":29596,"Name":"07. DMN","PlayerID":9238175,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29596","ServerKey":"pl181","X":651,"Y":417},{"Bonus":0,"Continent":"K43","ID":29597,"Name":"*143*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29597","ServerKey":"pl181","X":357,"Y":415},{"Bonus":0,"Continent":"K34","ID":29598,"Name":"[B][03] Avondale","PlayerID":699380621,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29598","ServerKey":"pl181","X":429,"Y":344},{"Bonus":0,"Continent":"K65","ID":29599,"Name":"sony911","PlayerID":1415009,"Points":10124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29599","ServerKey":"pl181","X":589,"Y":639},{"Bonus":0,"Continent":"K63","ID":29600,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29600","ServerKey":"pl181","X":399,"Y":638},{"Bonus":0,"Continent":"K36","ID":29602,"Name":"--Deadwood","PlayerID":8096537,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29602","ServerKey":"pl181","X":622,"Y":389},{"Bonus":0,"Continent":"K35","ID":29603,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29603","ServerKey":"pl181","X":568,"Y":342},{"Bonus":0,"Continent":"K35","ID":29604,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29604","ServerKey":"pl181","X":581,"Y":357},{"Bonus":0,"Continent":"K34","ID":29605,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":9029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29605","ServerKey":"pl181","X":441,"Y":344},{"Bonus":0,"Continent":"K56","ID":29607,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29607","ServerKey":"pl181","X":658,"Y":548},{"Bonus":0,"Continent":"K65","ID":29608,"Name":"0537","PlayerID":698659980,"Points":6288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29608","ServerKey":"pl181","X":562,"Y":655},{"Bonus":0,"Continent":"K35","ID":29609,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29609","ServerKey":"pl181","X":581,"Y":356},{"Bonus":0,"Continent":"K53","ID":29610,"Name":"Francuzik","PlayerID":698338524,"Points":2019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29610","ServerKey":"pl181","X":337,"Y":528},{"Bonus":0,"Continent":"K64","ID":29611,"Name":"Psycha Siada","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29611","ServerKey":"pl181","X":457,"Y":664},{"Bonus":0,"Continent":"K36","ID":29612,"Name":"Gattacka","PlayerID":699298370,"Points":9451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29612","ServerKey":"pl181","X":620,"Y":376},{"Bonus":0,"Continent":"K63","ID":29613,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29613","ServerKey":"pl181","X":392,"Y":635},{"Bonus":0,"Continent":"K53","ID":29614,"Name":"010","PlayerID":699265922,"Points":6077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29614","ServerKey":"pl181","X":336,"Y":533},{"Bonus":0,"Continent":"K63","ID":29615,"Name":"015 Szachy - KrĂłl","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29615","ServerKey":"pl181","X":364,"Y":606},{"Bonus":0,"Continent":"K65","ID":29616,"Name":"Sony 911","PlayerID":1415009,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29616","ServerKey":"pl181","X":583,"Y":651},{"Bonus":0,"Continent":"K66","ID":29618,"Name":"BETON 053","PlayerID":699277039,"Points":7105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29618","ServerKey":"pl181","X":623,"Y":618},{"Bonus":0,"Continent":"K35","ID":29619,"Name":"Lord Lord Franek .#080","PlayerID":698420691,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29619","ServerKey":"pl181","X":532,"Y":338},{"Bonus":0,"Continent":"K36","ID":29620,"Name":"Szlachcic;taran!","PlayerID":849092309,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29620","ServerKey":"pl181","X":635,"Y":394},{"Bonus":5,"Continent":"K64","ID":29621,"Name":"psycha sitting","PlayerID":699736927,"Points":7010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29621","ServerKey":"pl181","X":441,"Y":657},{"Bonus":0,"Continent":"K33","ID":29623,"Name":"Szarlatan","PlayerID":606706,"Points":4909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29623","ServerKey":"pl181","X":389,"Y":381},{"Bonus":0,"Continent":"K65","ID":29624,"Name":"0570","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29624","ServerKey":"pl181","X":565,"Y":652},{"Bonus":0,"Continent":"K53","ID":29625,"Name":"Cyk","PlayerID":698338524,"Points":5836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29625","ServerKey":"pl181","X":341,"Y":524},{"Bonus":0,"Continent":"K43","ID":29626,"Name":"V002","PlayerID":849097737,"Points":7349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29626","ServerKey":"pl181","X":350,"Y":420},{"Bonus":0,"Continent":"K34","ID":29627,"Name":"110...tomcz","PlayerID":6920960,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29627","ServerKey":"pl181","X":482,"Y":328},{"Bonus":0,"Continent":"K66","ID":29628,"Name":"026.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29628","ServerKey":"pl181","X":612,"Y":621},{"Bonus":0,"Continent":"K46","ID":29629,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29629","ServerKey":"pl181","X":670,"Y":489},{"Bonus":0,"Continent":"K65","ID":29630,"Name":"0140","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29630","ServerKey":"pl181","X":536,"Y":666},{"Bonus":0,"Continent":"K43","ID":29631,"Name":"025 VW Wioska barbarzyƄska","PlayerID":3108144,"Points":3912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29631","ServerKey":"pl181","X":362,"Y":406},{"Bonus":4,"Continent":"K53","ID":29632,"Name":"Deff robi brrr","PlayerID":7333216,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29632","ServerKey":"pl181","X":348,"Y":573},{"Bonus":0,"Continent":"K66","ID":29633,"Name":"Wioska Yator11","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29633","ServerKey":"pl181","X":616,"Y":617},{"Bonus":0,"Continent":"K64","ID":29634,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":4155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29634","ServerKey":"pl181","X":434,"Y":651},{"Bonus":0,"Continent":"K65","ID":29635,"Name":"0520","PlayerID":698659980,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29635","ServerKey":"pl181","X":531,"Y":663},{"Bonus":0,"Continent":"K56","ID":29636,"Name":"106. Wyspy KoƄca","PlayerID":8337151,"Points":8252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29636","ServerKey":"pl181","X":644,"Y":591},{"Bonus":0,"Continent":"K64","ID":29637,"Name":"psycha sitting","PlayerID":699736927,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29637","ServerKey":"pl181","X":423,"Y":656},{"Bonus":0,"Continent":"K53","ID":29638,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":4062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29638","ServerKey":"pl181","X":340,"Y":542},{"Bonus":0,"Continent":"K53","ID":29639,"Name":"Dąbrowa 0022","PlayerID":849096972,"Points":3321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29639","ServerKey":"pl181","X":355,"Y":590},{"Bonus":0,"Continent":"K53","ID":29640,"Name":"Nowy ƛwiat 5","PlayerID":849084005,"Points":5490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29640","ServerKey":"pl181","X":343,"Y":562},{"Bonus":0,"Continent":"K53","ID":29641,"Name":"Nowy ƛwiat","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29641","ServerKey":"pl181","X":345,"Y":564},{"Bonus":0,"Continent":"K33","ID":29642,"Name":"Szlachcic","PlayerID":698160606,"Points":10430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29642","ServerKey":"pl181","X":391,"Y":365},{"Bonus":0,"Continent":"K66","ID":29643,"Name":"WB 08","PlayerID":2269943,"Points":8316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29643","ServerKey":"pl181","X":635,"Y":606},{"Bonus":0,"Continent":"K46","ID":29644,"Name":"Jehu_Kingdom_62","PlayerID":8785314,"Points":5707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29644","ServerKey":"pl181","X":651,"Y":421},{"Bonus":0,"Continent":"K56","ID":29645,"Name":"Master Od Puppets","PlayerID":848926293,"Points":4499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29645","ServerKey":"pl181","X":633,"Y":598},{"Bonus":0,"Continent":"K53","ID":29646,"Name":"Oeste cuatro","PlayerID":698916948,"Points":4797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29646","ServerKey":"pl181","X":383,"Y":556},{"Bonus":0,"Continent":"K35","ID":29647,"Name":"-006-","PlayerID":698588812,"Points":4688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29647","ServerKey":"pl181","X":537,"Y":334},{"Bonus":0,"Continent":"K46","ID":29648,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29648","ServerKey":"pl181","X":670,"Y":479},{"Bonus":0,"Continent":"K43","ID":29649,"Name":"M181_002","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29649","ServerKey":"pl181","X":344,"Y":431},{"Bonus":0,"Continent":"K53","ID":29650,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29650","ServerKey":"pl181","X":347,"Y":563},{"Bonus":0,"Continent":"K46","ID":29651,"Name":"Piwna 24","PlayerID":699812007,"Points":4695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29651","ServerKey":"pl181","X":653,"Y":418},{"Bonus":0,"Continent":"K46","ID":29652,"Name":"033 - Mroczna Osada","PlayerID":849035905,"Points":8951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29652","ServerKey":"pl181","X":645,"Y":413},{"Bonus":0,"Continent":"K36","ID":29653,"Name":"I#012","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29653","ServerKey":"pl181","X":613,"Y":370},{"Bonus":1,"Continent":"K53","ID":29654,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29654","ServerKey":"pl181","X":337,"Y":525},{"Bonus":0,"Continent":"K53","ID":29655,"Name":"Rowerowo","PlayerID":8607734,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29655","ServerKey":"pl181","X":361,"Y":599},{"Bonus":0,"Continent":"K46","ID":29656,"Name":"Jaaa","PlayerID":698635863,"Points":8830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29656","ServerKey":"pl181","X":666,"Y":489},{"Bonus":0,"Continent":"K43","ID":29657,"Name":"Wioska barbarzyƄska Kr","PlayerID":8967440,"Points":3915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29657","ServerKey":"pl181","X":368,"Y":400},{"Bonus":0,"Continent":"K53","ID":29658,"Name":"Wioska klez 002","PlayerID":698295651,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29658","ServerKey":"pl181","X":330,"Y":513},{"Bonus":0,"Continent":"K53","ID":29659,"Name":"deff 100 %","PlayerID":849012521,"Points":9240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29659","ServerKey":"pl181","X":345,"Y":569},{"Bonus":0,"Continent":"K44","ID":29660,"Name":"K44 x038","PlayerID":698364331,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29660","ServerKey":"pl181","X":465,"Y":400},{"Bonus":0,"Continent":"K36","ID":29661,"Name":"Wyspa 018","PlayerID":699756210,"Points":7021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29661","ServerKey":"pl181","X":620,"Y":377},{"Bonus":0,"Continent":"K65","ID":29662,"Name":"0149","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29662","ServerKey":"pl181","X":541,"Y":665},{"Bonus":0,"Continent":"K63","ID":29663,"Name":".:010:.","PlayerID":7417116,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29663","ServerKey":"pl181","X":374,"Y":616},{"Bonus":0,"Continent":"K65","ID":29664,"Name":"0363","PlayerID":698659980,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29664","ServerKey":"pl181","X":552,"Y":663},{"Bonus":0,"Continent":"K66","ID":29665,"Name":"030","PlayerID":699567608,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29665","ServerKey":"pl181","X":625,"Y":614},{"Bonus":0,"Continent":"K64","ID":29666,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29666","ServerKey":"pl181","X":482,"Y":671},{"Bonus":0,"Continent":"K43","ID":29667,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29667","ServerKey":"pl181","X":334,"Y":475},{"Bonus":0,"Continent":"K65","ID":29668,"Name":"0286","PlayerID":698659980,"Points":9268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29668","ServerKey":"pl181","X":552,"Y":658},{"Bonus":0,"Continent":"K56","ID":29669,"Name":"085","PlayerID":699351301,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29669","ServerKey":"pl181","X":667,"Y":515},{"Bonus":0,"Continent":"K53","ID":29670,"Name":"deff 100 %","PlayerID":849012521,"Points":10254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29670","ServerKey":"pl181","X":344,"Y":569},{"Bonus":2,"Continent":"K63","ID":29671,"Name":"Pobozowisko","PlayerID":699513260,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29671","ServerKey":"pl181","X":378,"Y":614},{"Bonus":0,"Continent":"K56","ID":29672,"Name":"Grvvyq 112k$","PlayerID":699676005,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29672","ServerKey":"pl181","X":633,"Y":596},{"Bonus":0,"Continent":"K43","ID":29673,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29673","ServerKey":"pl181","X":332,"Y":485},{"Bonus":0,"Continent":"K64","ID":29674,"Name":"Esfarajen","PlayerID":849089459,"Points":5266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29674","ServerKey":"pl181","X":431,"Y":658},{"Bonus":0,"Continent":"K33","ID":29675,"Name":"Szulernia","PlayerID":7249451,"Points":3537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29675","ServerKey":"pl181","X":385,"Y":371},{"Bonus":0,"Continent":"K46","ID":29676,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":8312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29676","ServerKey":"pl181","X":652,"Y":427},{"Bonus":0,"Continent":"K43","ID":29677,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29677","ServerKey":"pl181","X":330,"Y":498},{"Bonus":0,"Continent":"K56","ID":29678,"Name":"001","PlayerID":6929240,"Points":8000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29678","ServerKey":"pl181","X":663,"Y":549},{"Bonus":0,"Continent":"K53","ID":29679,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29679","ServerKey":"pl181","X":351,"Y":586},{"Bonus":0,"Continent":"K65","ID":29680,"Name":"*006","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29680","ServerKey":"pl181","X":594,"Y":646},{"Bonus":0,"Continent":"K64","ID":29681,"Name":"014RozwĂłd","PlayerID":698620694,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29681","ServerKey":"pl181","X":433,"Y":653},{"Bonus":0,"Continent":"K56","ID":29682,"Name":"B 008","PlayerID":8078914,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29682","ServerKey":"pl181","X":666,"Y":531},{"Bonus":0,"Continent":"K65","ID":29683,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29683","ServerKey":"pl181","X":558,"Y":661},{"Bonus":0,"Continent":"K64","ID":29684,"Name":"019","PlayerID":699246032,"Points":2927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29684","ServerKey":"pl181","X":434,"Y":652},{"Bonus":0,"Continent":"K43","ID":29685,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29685","ServerKey":"pl181","X":335,"Y":498},{"Bonus":0,"Continent":"K53","ID":29686,"Name":"~005~","PlayerID":849014147,"Points":7422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29686","ServerKey":"pl181","X":356,"Y":595},{"Bonus":0,"Continent":"K64","ID":29687,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29687","ServerKey":"pl181","X":459,"Y":664},{"Bonus":0,"Continent":"K36","ID":29688,"Name":"0007","PlayerID":699857387,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29688","ServerKey":"pl181","X":624,"Y":388},{"Bonus":0,"Continent":"K43","ID":29689,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29689","ServerKey":"pl181","X":333,"Y":491},{"Bonus":0,"Continent":"K46","ID":29692,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29692","ServerKey":"pl181","X":672,"Y":485},{"Bonus":0,"Continent":"K35","ID":29693,"Name":"AAA","PlayerID":1006847,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29693","ServerKey":"pl181","X":531,"Y":331},{"Bonus":0,"Continent":"K65","ID":29694,"Name":"|C| Lagoonwatch","PlayerID":698147372,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29694","ServerKey":"pl181","X":510,"Y":669},{"Bonus":0,"Continent":"K46","ID":29696,"Name":"Jehu_Kingdom_54","PlayerID":8785314,"Points":5592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29696","ServerKey":"pl181","X":659,"Y":433},{"Bonus":0,"Continent":"K36","ID":29697,"Name":"Taran 005","PlayerID":699298370,"Points":10947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29697","ServerKey":"pl181","X":615,"Y":373},{"Bonus":0,"Continent":"K46","ID":29698,"Name":"KrĂłlestwo","PlayerID":1086351,"Points":7598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29698","ServerKey":"pl181","X":645,"Y":405},{"Bonus":0,"Continent":"K56","ID":29699,"Name":"#106#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29699","ServerKey":"pl181","X":636,"Y":596},{"Bonus":0,"Continent":"K56","ID":29700,"Name":"048","PlayerID":849095227,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29700","ServerKey":"pl181","X":666,"Y":550},{"Bonus":0,"Continent":"K34","ID":29701,"Name":"002 Rasiak","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29701","ServerKey":"pl181","X":453,"Y":336},{"Bonus":0,"Continent":"K53","ID":29702,"Name":"081 komornicy","PlayerID":699510259,"Points":2789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29702","ServerKey":"pl181","X":340,"Y":547},{"Bonus":0,"Continent":"K36","ID":29703,"Name":"034.","PlayerID":699491076,"Points":10587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29703","ServerKey":"pl181","X":638,"Y":395},{"Bonus":0,"Continent":"K63","ID":29704,"Name":"011 Kabelki to jest ĆŒycie...","PlayerID":6354098,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29704","ServerKey":"pl181","X":384,"Y":625},{"Bonus":0,"Continent":"K36","ID":29705,"Name":"Wioska barbarzyƄska","PlayerID":310729,"Points":2533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29705","ServerKey":"pl181","X":611,"Y":369},{"Bonus":9,"Continent":"K63","ID":29706,"Name":"---009","PlayerID":8607734,"Points":10199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29706","ServerKey":"pl181","X":374,"Y":611},{"Bonus":0,"Continent":"K35","ID":29707,"Name":"S AKUKU","PlayerID":699491076,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29707","ServerKey":"pl181","X":596,"Y":361},{"Bonus":0,"Continent":"K46","ID":29708,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29708","ServerKey":"pl181","X":664,"Y":479},{"Bonus":0,"Continent":"K64","ID":29709,"Name":"011 Aedd Gynvael","PlayerID":699834004,"Points":6174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29709","ServerKey":"pl181","X":465,"Y":659},{"Bonus":0,"Continent":"K35","ID":29710,"Name":"ADEN","PlayerID":698588535,"Points":6516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29710","ServerKey":"pl181","X":595,"Y":358},{"Bonus":0,"Continent":"K64","ID":29711,"Name":"A27","PlayerID":698652014,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29711","ServerKey":"pl181","X":477,"Y":669},{"Bonus":0,"Continent":"K56","ID":29712,"Name":"xqq","PlayerID":699845400,"Points":5421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29712","ServerKey":"pl181","X":656,"Y":572},{"Bonus":0,"Continent":"K46","ID":29713,"Name":"016 - Mroczna Osada","PlayerID":849035905,"Points":11807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29713","ServerKey":"pl181","X":643,"Y":410},{"Bonus":0,"Continent":"K35","ID":29714,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29714","ServerKey":"pl181","X":563,"Y":353},{"Bonus":0,"Continent":"K64","ID":29715,"Name":"Psycha Siada","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29715","ServerKey":"pl181","X":451,"Y":662},{"Bonus":0,"Continent":"K46","ID":29716,"Name":"013","PlayerID":7085502,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29716","ServerKey":"pl181","X":667,"Y":496},{"Bonus":0,"Continent":"K63","ID":29717,"Name":"006 Polibuda","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29717","ServerKey":"pl181","X":390,"Y":629},{"Bonus":0,"Continent":"K53","ID":29718,"Name":"RADOM","PlayerID":699794765,"Points":6757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29718","ServerKey":"pl181","X":339,"Y":549},{"Bonus":1,"Continent":"K63","ID":29719,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29719","ServerKey":"pl181","X":390,"Y":630},{"Bonus":0,"Continent":"K46","ID":29720,"Name":"016 Tyranus2","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29720","ServerKey":"pl181","X":671,"Y":496},{"Bonus":0,"Continent":"K46","ID":29721,"Name":"45. KaruTown","PlayerID":699491076,"Points":5178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29721","ServerKey":"pl181","X":641,"Y":401},{"Bonus":0,"Continent":"K46","ID":29722,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29722","ServerKey":"pl181","X":665,"Y":475},{"Bonus":0,"Continent":"K63","ID":29723,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29723","ServerKey":"pl181","X":387,"Y":630},{"Bonus":0,"Continent":"K65","ID":29724,"Name":"0521","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29724","ServerKey":"pl181","X":537,"Y":668},{"Bonus":0,"Continent":"K56","ID":29725,"Name":"Sony 911","PlayerID":1415009,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29725","ServerKey":"pl181","X":643,"Y":588},{"Bonus":0,"Continent":"K33","ID":29727,"Name":"Szulernia","PlayerID":7249451,"Points":7013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29727","ServerKey":"pl181","X":382,"Y":379},{"Bonus":0,"Continent":"K53","ID":29728,"Name":"AZBUD","PlayerID":849097614,"Points":9254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29728","ServerKey":"pl181","X":331,"Y":509},{"Bonus":0,"Continent":"K34","ID":29729,"Name":"[B]_[016] Dejv.oldplyr","PlayerID":699380607,"Points":10326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29729","ServerKey":"pl181","X":429,"Y":349},{"Bonus":0,"Continent":"K56","ID":29730,"Name":"wiosna","PlayerID":849097445,"Points":661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29730","ServerKey":"pl181","X":660,"Y":549},{"Bonus":0,"Continent":"K53","ID":29731,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29731","ServerKey":"pl181","X":338,"Y":550},{"Bonus":0,"Continent":"K65","ID":29732,"Name":"0522","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29732","ServerKey":"pl181","X":525,"Y":671},{"Bonus":0,"Continent":"K56","ID":29733,"Name":"E006","PlayerID":8428196,"Points":6079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29733","ServerKey":"pl181","X":659,"Y":560},{"Bonus":0,"Continent":"K35","ID":29734,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29734","ServerKey":"pl181","X":581,"Y":355},{"Bonus":0,"Continent":"K34","ID":29735,"Name":"095...TOMECZEK","PlayerID":6920960,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29735","ServerKey":"pl181","X":477,"Y":334},{"Bonus":0,"Continent":"K46","ID":29736,"Name":"I017","PlayerID":699722599,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29736","ServerKey":"pl181","X":658,"Y":442},{"Bonus":0,"Continent":"K36","ID":29737,"Name":"0011","PlayerID":848915730,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29737","ServerKey":"pl181","X":626,"Y":386},{"Bonus":0,"Continent":"K64","ID":29738,"Name":"pa tera","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29738","ServerKey":"pl181","X":463,"Y":655},{"Bonus":0,"Continent":"K63","ID":29739,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29739","ServerKey":"pl181","X":393,"Y":635},{"Bonus":0,"Continent":"K64","ID":29740,"Name":"Ave Why!","PlayerID":698585370,"Points":4847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29740","ServerKey":"pl181","X":496,"Y":668},{"Bonus":0,"Continent":"K34","ID":29741,"Name":"#0076 barbarzyƄska","PlayerID":1238300,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29741","ServerKey":"pl181","X":474,"Y":335},{"Bonus":0,"Continent":"K35","ID":29742,"Name":"!!35 59 xxx","PlayerID":698361257,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29742","ServerKey":"pl181","X":596,"Y":356},{"Bonus":0,"Continent":"K34","ID":29743,"Name":"227...barba","PlayerID":6920960,"Points":5959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29743","ServerKey":"pl181","X":460,"Y":332},{"Bonus":0,"Continent":"K36","ID":29745,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29745","ServerKey":"pl181","X":611,"Y":375},{"Bonus":0,"Continent":"K66","ID":29746,"Name":"Ć»UBR .::.B.E.T.O.N /7","PlayerID":33900,"Points":9903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29746","ServerKey":"pl181","X":627,"Y":618},{"Bonus":0,"Continent":"K36","ID":29747,"Name":"--sturgis","PlayerID":8096537,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29747","ServerKey":"pl181","X":621,"Y":385},{"Bonus":0,"Continent":"K64","ID":29748,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":6688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29748","ServerKey":"pl181","X":428,"Y":650},{"Bonus":0,"Continent":"K65","ID":29749,"Name":"2 barba *","PlayerID":848995242,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29749","ServerKey":"pl181","X":581,"Y":645},{"Bonus":0,"Continent":"K56","ID":29750,"Name":"Chop Suey","PlayerID":848926293,"Points":5730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29750","ServerKey":"pl181","X":641,"Y":589},{"Bonus":0,"Continent":"K65","ID":29751,"Name":"tego nie","PlayerID":699494488,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29751","ServerKey":"pl181","X":519,"Y":665},{"Bonus":0,"Continent":"K65","ID":29752,"Name":"Sony 911","PlayerID":1415009,"Points":10270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29752","ServerKey":"pl181","X":586,"Y":642},{"Bonus":0,"Continent":"K56","ID":29753,"Name":"wkonfitura groo xdd","PlayerID":699845400,"Points":6615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29753","ServerKey":"pl181","X":654,"Y":574},{"Bonus":0,"Continent":"K53","ID":29754,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29754","ServerKey":"pl181","X":338,"Y":547},{"Bonus":0,"Continent":"K65","ID":29755,"Name":"039","PlayerID":2293376,"Points":8355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29755","ServerKey":"pl181","X":534,"Y":665},{"Bonus":0,"Continent":"K56","ID":29756,"Name":"B.07","PlayerID":699737356,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29756","ServerKey":"pl181","X":667,"Y":503},{"Bonus":0,"Continent":"K33","ID":29757,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":7492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29757","ServerKey":"pl181","X":396,"Y":366},{"Bonus":0,"Continent":"K53","ID":29758,"Name":"deff 100 %","PlayerID":849012521,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29758","ServerKey":"pl181","X":346,"Y":568},{"Bonus":0,"Continent":"K66","ID":29759,"Name":"Wioska odyn123","PlayerID":848993505,"Points":8420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29759","ServerKey":"pl181","X":633,"Y":603},{"Bonus":0,"Continent":"K63","ID":29760,"Name":"Gromkowie 4","PlayerID":7417116,"Points":5478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29760","ServerKey":"pl181","X":370,"Y":614},{"Bonus":0,"Continent":"K63","ID":29761,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29761","ServerKey":"pl181","X":396,"Y":634},{"Bonus":0,"Continent":"K65","ID":29762,"Name":"1barba","PlayerID":848995242,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29762","ServerKey":"pl181","X":585,"Y":648},{"Bonus":0,"Continent":"K53","ID":29763,"Name":"Mniejsze zƂo 0081","PlayerID":699794765,"Points":5590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29763","ServerKey":"pl181","X":333,"Y":542},{"Bonus":0,"Continent":"K66","ID":29764,"Name":"BETON 038","PlayerID":699567608,"Points":8685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29764","ServerKey":"pl181","X":628,"Y":611},{"Bonus":0,"Continent":"K43","ID":29765,"Name":"-004-","PlayerID":8184383,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29765","ServerKey":"pl181","X":335,"Y":448},{"Bonus":0,"Continent":"K46","ID":29766,"Name":"005","PlayerID":699429153,"Points":7959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29766","ServerKey":"pl181","X":636,"Y":401},{"Bonus":0,"Continent":"K65","ID":29767,"Name":"0265","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29767","ServerKey":"pl181","X":545,"Y":665},{"Bonus":0,"Continent":"K35","ID":29768,"Name":"WesoƂych ƚwiąt +","PlayerID":848915730,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29768","ServerKey":"pl181","X":590,"Y":358},{"Bonus":0,"Continent":"K34","ID":29769,"Name":"K34 x028","PlayerID":698364331,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29769","ServerKey":"pl181","X":408,"Y":356},{"Bonus":0,"Continent":"K65","ID":29770,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29770","ServerKey":"pl181","X":510,"Y":623},{"Bonus":0,"Continent":"K65","ID":29771,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29771","ServerKey":"pl181","X":504,"Y":673},{"Bonus":0,"Continent":"K53","ID":29772,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29772","ServerKey":"pl181","X":337,"Y":531},{"Bonus":0,"Continent":"K46","ID":29773,"Name":"A011 Jospe 2","PlayerID":113796,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29773","ServerKey":"pl181","X":663,"Y":452},{"Bonus":0,"Continent":"K63","ID":29774,"Name":"Pobozowisko","PlayerID":699513260,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29774","ServerKey":"pl181","X":378,"Y":615},{"Bonus":0,"Continent":"K43","ID":29775,"Name":"Westfold.014","PlayerID":848918380,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29775","ServerKey":"pl181","X":348,"Y":424},{"Bonus":0,"Continent":"K53","ID":29776,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29776","ServerKey":"pl181","X":348,"Y":575},{"Bonus":0,"Continent":"K35","ID":29777,"Name":"FanBednar","PlayerID":849034666,"Points":3137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29777","ServerKey":"pl181","X":588,"Y":357},{"Bonus":0,"Continent":"K56","ID":29778,"Name":"38k$ Grvvyq","PlayerID":699676005,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29778","ServerKey":"pl181","X":648,"Y":576},{"Bonus":0,"Continent":"K56","ID":29779,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":8477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29779","ServerKey":"pl181","X":668,"Y":537},{"Bonus":0,"Continent":"K35","ID":29780,"Name":"Lord Lord Franek .#168","PlayerID":698420691,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29780","ServerKey":"pl181","X":505,"Y":330},{"Bonus":0,"Continent":"K65","ID":29781,"Name":"0534","PlayerID":698659980,"Points":9018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29781","ServerKey":"pl181","X":561,"Y":659},{"Bonus":3,"Continent":"K33","ID":29782,"Name":"Szulernia","PlayerID":7249451,"Points":10288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29782","ServerKey":"pl181","X":381,"Y":379},{"Bonus":0,"Continent":"K65","ID":29783,"Name":"0523","PlayerID":698659980,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29783","ServerKey":"pl181","X":540,"Y":664},{"Bonus":0,"Continent":"K66","ID":29784,"Name":"111. Morze Zwarte","PlayerID":8337151,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29784","ServerKey":"pl181","X":632,"Y":602},{"Bonus":0,"Continent":"K43","ID":29786,"Name":"Wioska barbarzyƄska Ph","PlayerID":8967440,"Points":3259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29786","ServerKey":"pl181","X":361,"Y":408},{"Bonus":0,"Continent":"K36","ID":29787,"Name":"Wyspa 011","PlayerID":699756210,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29787","ServerKey":"pl181","X":622,"Y":380},{"Bonus":0,"Continent":"K66","ID":29788,"Name":"#009#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29788","ServerKey":"pl181","X":626,"Y":625},{"Bonus":0,"Continent":"K65","ID":29789,"Name":"**Sorrow","PlayerID":699443920,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29789","ServerKey":"pl181","X":572,"Y":627},{"Bonus":0,"Continent":"K46","ID":29791,"Name":"034 - Mroczna Osada","PlayerID":849035905,"Points":7151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29791","ServerKey":"pl181","X":642,"Y":412},{"Bonus":0,"Continent":"K33","ID":29792,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":1959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29792","ServerKey":"pl181","X":379,"Y":378},{"Bonus":0,"Continent":"K63","ID":29793,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29793","ServerKey":"pl181","X":392,"Y":633},{"Bonus":0,"Continent":"K35","ID":29794,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":6143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29794","ServerKey":"pl181","X":590,"Y":360},{"Bonus":0,"Continent":"K43","ID":29795,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29795","ServerKey":"pl181","X":329,"Y":490},{"Bonus":0,"Continent":"K53","ID":29796,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29796","ServerKey":"pl181","X":338,"Y":549},{"Bonus":5,"Continent":"K35","ID":29797,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29797","ServerKey":"pl181","X":586,"Y":357},{"Bonus":0,"Continent":"K53","ID":29798,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29798","ServerKey":"pl181","X":333,"Y":539},{"Bonus":0,"Continent":"K46","ID":29799,"Name":"emoriar","PlayerID":699574408,"Points":5438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29799","ServerKey":"pl181","X":663,"Y":442},{"Bonus":0,"Continent":"K36","ID":29800,"Name":"032.","PlayerID":699491076,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29800","ServerKey":"pl181","X":636,"Y":396},{"Bonus":0,"Continent":"K35","ID":29801,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":5391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29801","ServerKey":"pl181","X":549,"Y":334},{"Bonus":0,"Continent":"K34","ID":29802,"Name":"Wioska zomo","PlayerID":6118079,"Points":7012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29802","ServerKey":"pl181","X":498,"Y":328},{"Bonus":0,"Continent":"K33","ID":29804,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":4865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29804","ServerKey":"pl181","X":374,"Y":386},{"Bonus":0,"Continent":"K46","ID":29805,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29805","ServerKey":"pl181","X":669,"Y":485},{"Bonus":0,"Continent":"K66","ID":29806,"Name":"031","PlayerID":699567608,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29806","ServerKey":"pl181","X":628,"Y":612},{"Bonus":3,"Continent":"K65","ID":29807,"Name":"0014","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29807","ServerKey":"pl181","X":542,"Y":661},{"Bonus":0,"Continent":"K64","ID":29808,"Name":"#Mareleona","PlayerID":699849210,"Points":9456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29808","ServerKey":"pl181","X":437,"Y":657},{"Bonus":0,"Continent":"K53","ID":29809,"Name":"Wioska klez 005","PlayerID":698295651,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29809","ServerKey":"pl181","X":328,"Y":510},{"Bonus":0,"Continent":"K35","ID":29810,"Name":"Lord Lord Franek .#104","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29810","ServerKey":"pl181","X":523,"Y":330},{"Bonus":0,"Continent":"K33","ID":29811,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":2272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29811","ServerKey":"pl181","X":381,"Y":383},{"Bonus":0,"Continent":"K53","ID":29812,"Name":"010.Wioska wachul9","PlayerID":1830149,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29812","ServerKey":"pl181","X":337,"Y":504},{"Bonus":0,"Continent":"K66","ID":29813,"Name":"022","PlayerID":699567608,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29813","ServerKey":"pl181","X":626,"Y":611},{"Bonus":0,"Continent":"K33","ID":29814,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":7440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29814","ServerKey":"pl181","X":396,"Y":365},{"Bonus":0,"Continent":"K35","ID":29816,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":7219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29816","ServerKey":"pl181","X":587,"Y":358},{"Bonus":0,"Continent":"K43","ID":29817,"Name":"A0280","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29817","ServerKey":"pl181","X":328,"Y":482},{"Bonus":0,"Continent":"K36","ID":29818,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29818","ServerKey":"pl181","X":614,"Y":377},{"Bonus":0,"Continent":"K65","ID":29820,"Name":"0237","PlayerID":698659980,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29820","ServerKey":"pl181","X":543,"Y":667},{"Bonus":0,"Continent":"K34","ID":29821,"Name":"#0043 GL01N","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29821","ServerKey":"pl181","X":466,"Y":330},{"Bonus":0,"Continent":"K35","ID":29822,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29822","ServerKey":"pl181","X":553,"Y":335},{"Bonus":2,"Continent":"K53","ID":29823,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29823","ServerKey":"pl181","X":348,"Y":577},{"Bonus":0,"Continent":"K43","ID":29825,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29825","ServerKey":"pl181","X":330,"Y":490},{"Bonus":0,"Continent":"K35","ID":29826,"Name":"Taki Pan","PlayerID":698739350,"Points":5322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29826","ServerKey":"pl181","X":508,"Y":333},{"Bonus":0,"Continent":"K65","ID":29827,"Name":"0102","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29827","ServerKey":"pl181","X":543,"Y":668},{"Bonus":0,"Continent":"K66","ID":29828,"Name":"027","PlayerID":699567608,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29828","ServerKey":"pl181","X":627,"Y":608},{"Bonus":5,"Continent":"K64","ID":29829,"Name":"#Leopold","PlayerID":699849210,"Points":7802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29829","ServerKey":"pl181","X":437,"Y":662},{"Bonus":0,"Continent":"K43","ID":29830,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29830","ServerKey":"pl181","X":337,"Y":470},{"Bonus":0,"Continent":"K34","ID":29831,"Name":"#0078 barbarzyƄska","PlayerID":1238300,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29831","ServerKey":"pl181","X":469,"Y":333},{"Bonus":0,"Continent":"K56","ID":29832,"Name":"D05","PlayerID":848995478,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29832","ServerKey":"pl181","X":665,"Y":554},{"Bonus":0,"Continent":"K56","ID":29833,"Name":"[167]","PlayerID":8000875,"Points":6153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29833","ServerKey":"pl181","X":650,"Y":582},{"Bonus":6,"Continent":"K34","ID":29834,"Name":"North FiFa 3","PlayerID":699796330,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29834","ServerKey":"pl181","X":435,"Y":342},{"Bonus":0,"Continent":"K34","ID":29835,"Name":"017","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29835","ServerKey":"pl181","X":465,"Y":328},{"Bonus":0,"Continent":"K34","ID":29836,"Name":"#0102 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29836","ServerKey":"pl181","X":461,"Y":338},{"Bonus":0,"Continent":"K66","ID":29837,"Name":"Ć»UBRAWKA 040","PlayerID":33900,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29837","ServerKey":"pl181","X":607,"Y":633},{"Bonus":0,"Continent":"K34","ID":29838,"Name":"127...centr","PlayerID":6920960,"Points":8720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29838","ServerKey":"pl181","X":449,"Y":343},{"Bonus":0,"Continent":"K36","ID":29839,"Name":"Wyspa 019","PlayerID":699756210,"Points":7281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29839","ServerKey":"pl181","X":624,"Y":381},{"Bonus":0,"Continent":"K35","ID":29840,"Name":"Lord Lord Franek .#088","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29840","ServerKey":"pl181","X":517,"Y":327},{"Bonus":0,"Continent":"K34","ID":29841,"Name":"0029","PlayerID":699431255,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29841","ServerKey":"pl181","X":412,"Y":353},{"Bonus":0,"Continent":"K53","ID":29842,"Name":"Dąbrowa 0024","PlayerID":849096972,"Points":3005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29842","ServerKey":"pl181","X":354,"Y":585},{"Bonus":0,"Continent":"K43","ID":29843,"Name":"A0287","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29843","ServerKey":"pl181","X":328,"Y":484},{"Bonus":0,"Continent":"K66","ID":29844,"Name":"0144","PlayerID":698416970,"Points":7298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29844","ServerKey":"pl181","X":633,"Y":605},{"Bonus":0,"Continent":"K46","ID":29845,"Name":"015 - Mroczna Osada","PlayerID":849035905,"Points":12134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29845","ServerKey":"pl181","X":644,"Y":408},{"Bonus":0,"Continent":"K35","ID":29846,"Name":"Wioska 08","PlayerID":951823,"Points":5582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29846","ServerKey":"pl181","X":501,"Y":328},{"Bonus":0,"Continent":"K64","ID":29847,"Name":"[A]012","PlayerID":849097175,"Points":4247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29847","ServerKey":"pl181","X":429,"Y":649},{"Bonus":0,"Continent":"K65","ID":29848,"Name":"017","PlayerID":849097799,"Points":8038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29848","ServerKey":"pl181","X":599,"Y":635},{"Bonus":0,"Continent":"K53","ID":29849,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29849","ServerKey":"pl181","X":347,"Y":535},{"Bonus":0,"Continent":"K66","ID":29850,"Name":"Gra o Tron","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29850","ServerKey":"pl181","X":617,"Y":617},{"Bonus":0,"Continent":"K43","ID":29851,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":11348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29851","ServerKey":"pl181","X":334,"Y":455},{"Bonus":0,"Continent":"K64","ID":29852,"Name":"Psycha Siada","PlayerID":698807570,"Points":6542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29852","ServerKey":"pl181","X":449,"Y":664},{"Bonus":0,"Continent":"K64","ID":29853,"Name":"R 011 ~Szaikan~","PlayerID":699195358,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29853","ServerKey":"pl181","X":485,"Y":671},{"Bonus":0,"Continent":"K66","ID":29854,"Name":"001","PlayerID":849097799,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29854","ServerKey":"pl181","X":602,"Y":638},{"Bonus":0,"Continent":"K35","ID":29855,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29855","ServerKey":"pl181","X":578,"Y":351},{"Bonus":0,"Continent":"K66","ID":29856,"Name":"Bunkier 003","PlayerID":699778867,"Points":7846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29856","ServerKey":"pl181","X":619,"Y":623},{"Bonus":0,"Continent":"K66","ID":29857,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29857","ServerKey":"pl181","X":618,"Y":623},{"Bonus":0,"Continent":"K46","ID":29858,"Name":"*4623*c Cymbalowo","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29858","ServerKey":"pl181","X":653,"Y":433},{"Bonus":0,"Continent":"K53","ID":29859,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29859","ServerKey":"pl181","X":332,"Y":525},{"Bonus":0,"Continent":"K46","ID":29860,"Name":"Blackhaven","PlayerID":699574408,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29860","ServerKey":"pl181","X":670,"Y":471},{"Bonus":0,"Continent":"K53","ID":29861,"Name":"Taran","PlayerID":6180190,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29861","ServerKey":"pl181","X":343,"Y":573},{"Bonus":0,"Continent":"K66","ID":29862,"Name":"Wioska 110","PlayerID":848971079,"Points":8830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29862","ServerKey":"pl181","X":642,"Y":606},{"Bonus":0,"Continent":"K56","ID":29863,"Name":"B.060","PlayerID":9188016,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29863","ServerKey":"pl181","X":668,"Y":505},{"Bonus":0,"Continent":"K64","ID":29864,"Name":"#Vangeance","PlayerID":699849210,"Points":7369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29864","ServerKey":"pl181","X":436,"Y":655},{"Bonus":0,"Continent":"K35","ID":29865,"Name":"Wioska barbarzyƄska 028","PlayerID":6343784,"Points":6341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29865","ServerKey":"pl181","X":512,"Y":330},{"Bonus":0,"Continent":"K43","ID":29866,"Name":"*152*","PlayerID":699273451,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29866","ServerKey":"pl181","X":353,"Y":419},{"Bonus":0,"Continent":"K63","ID":29867,"Name":".///...//././././././././","PlayerID":849097937,"Points":9465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29867","ServerKey":"pl181","X":391,"Y":627},{"Bonus":0,"Continent":"K34","ID":29868,"Name":"North Fifa 2","PlayerID":699796330,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29868","ServerKey":"pl181","X":437,"Y":341},{"Bonus":0,"Continent":"K56","ID":29869,"Name":"Sony 911","PlayerID":1415009,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29869","ServerKey":"pl181","X":644,"Y":589},{"Bonus":0,"Continent":"K43","ID":29870,"Name":"wieƛ","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29870","ServerKey":"pl181","X":346,"Y":430},{"Bonus":0,"Continent":"K53","ID":29871,"Name":"come on","PlayerID":699523631,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29871","ServerKey":"pl181","X":332,"Y":531},{"Bonus":0,"Continent":"K46","ID":29872,"Name":"043 | PALESTINA","PlayerID":9228039,"Points":7881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29872","ServerKey":"pl181","X":654,"Y":422},{"Bonus":7,"Continent":"K53","ID":29873,"Name":"deff 100 %","PlayerID":849012521,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29873","ServerKey":"pl181","X":348,"Y":569},{"Bonus":0,"Continent":"K46","ID":29874,"Name":"02. California","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29874","ServerKey":"pl181","X":637,"Y":409},{"Bonus":0,"Continent":"K64","ID":29875,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":2658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29875","ServerKey":"pl181","X":414,"Y":650},{"Bonus":0,"Continent":"K34","ID":29876,"Name":"#0119 tomek791103","PlayerID":1238300,"Points":8637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29876","ServerKey":"pl181","X":478,"Y":333},{"Bonus":0,"Continent":"K65","ID":29877,"Name":"amator czysto","PlayerID":848915531,"Points":6255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29877","ServerKey":"pl181","X":558,"Y":663},{"Bonus":0,"Continent":"K46","ID":29878,"Name":"033","PlayerID":699351301,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29878","ServerKey":"pl181","X":666,"Y":488},{"Bonus":0,"Continent":"K43","ID":29879,"Name":"Wioska barbarzyƄska","PlayerID":699323302,"Points":2924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29879","ServerKey":"pl181","X":357,"Y":406},{"Bonus":8,"Continent":"K46","ID":29880,"Name":"027 pawelk95","PlayerID":2135129,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29880","ServerKey":"pl181","X":666,"Y":477},{"Bonus":0,"Continent":"K64","ID":29881,"Name":"A05","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29881","ServerKey":"pl181","X":472,"Y":667},{"Bonus":0,"Continent":"K34","ID":29882,"Name":"Wioska ba11","PlayerID":6118079,"Points":6789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29882","ServerKey":"pl181","X":499,"Y":331},{"Bonus":0,"Continent":"K43","ID":29884,"Name":"A0281","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29884","ServerKey":"pl181","X":327,"Y":488},{"Bonus":0,"Continent":"K36","ID":29885,"Name":"0016","PlayerID":848915730,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29885","ServerKey":"pl181","X":625,"Y":383},{"Bonus":9,"Continent":"K64","ID":29886,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29886","ServerKey":"pl181","X":450,"Y":659},{"Bonus":0,"Continent":"K53","ID":29887,"Name":"Knowhere","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29887","ServerKey":"pl181","X":382,"Y":510},{"Bonus":0,"Continent":"K35","ID":29888,"Name":"AAA","PlayerID":1006847,"Points":9417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29888","ServerKey":"pl181","X":534,"Y":331},{"Bonus":0,"Continent":"K46","ID":29889,"Name":"asd","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29889","ServerKey":"pl181","X":664,"Y":476},{"Bonus":2,"Continent":"K65","ID":29890,"Name":"0019","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29890","ServerKey":"pl181","X":568,"Y":658},{"Bonus":0,"Continent":"K33","ID":29891,"Name":"cc BiaƂystok","PlayerID":3909522,"Points":8040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29891","ServerKey":"pl181","X":392,"Y":369},{"Bonus":0,"Continent":"K33","ID":29892,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":3589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29892","ServerKey":"pl181","X":370,"Y":394},{"Bonus":0,"Continent":"K53","ID":29893,"Name":"Dajanka 22","PlayerID":849012843,"Points":1196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29893","ServerKey":"pl181","X":354,"Y":581},{"Bonus":0,"Continent":"K33","ID":29894,"Name":"1.5","PlayerID":849095959,"Points":4149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29894","ServerKey":"pl181","X":367,"Y":390},{"Bonus":0,"Continent":"K34","ID":29895,"Name":"231...CENTR","PlayerID":6920960,"Points":6071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29895","ServerKey":"pl181","X":458,"Y":332},{"Bonus":0,"Continent":"K53","ID":29896,"Name":"J01","PlayerID":849090130,"Points":3805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29896","ServerKey":"pl181","X":363,"Y":595},{"Bonus":0,"Continent":"K56","ID":29897,"Name":"Wioska apysia","PlayerID":699845400,"Points":6560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29897","ServerKey":"pl181","X":658,"Y":571},{"Bonus":0,"Continent":"K35","ID":29898,"Name":"ADEN","PlayerID":698588535,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29898","ServerKey":"pl181","X":575,"Y":347},{"Bonus":0,"Continent":"K35","ID":29899,"Name":"CHARFA","PlayerID":699072129,"Points":10441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29899","ServerKey":"pl181","X":514,"Y":342},{"Bonus":0,"Continent":"K35","ID":29900,"Name":"Lord Lord Franek .#081","PlayerID":698420691,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29900","ServerKey":"pl181","X":528,"Y":332},{"Bonus":0,"Continent":"K65","ID":29901,"Name":"0186","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29901","ServerKey":"pl181","X":545,"Y":659},{"Bonus":0,"Continent":"K34","ID":29902,"Name":"216...barba","PlayerID":6920960,"Points":5294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29902","ServerKey":"pl181","X":463,"Y":333},{"Bonus":0,"Continent":"K35","ID":29903,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":2841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29903","ServerKey":"pl181","X":545,"Y":333},{"Bonus":0,"Continent":"K34","ID":29904,"Name":"K34 - [124] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29904","ServerKey":"pl181","X":438,"Y":345},{"Bonus":1,"Continent":"K33","ID":29905,"Name":"*130*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29905","ServerKey":"pl181","X":369,"Y":393},{"Bonus":0,"Continent":"K36","ID":29906,"Name":"! Stark Tower","PlayerID":699723284,"Points":5468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29906","ServerKey":"pl181","X":629,"Y":384},{"Bonus":0,"Continent":"K36","ID":29907,"Name":"050- Mroczna Osada","PlayerID":849035905,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29907","ServerKey":"pl181","X":629,"Y":394},{"Bonus":0,"Continent":"K35","ID":29908,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":1653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29908","ServerKey":"pl181","X":530,"Y":332},{"Bonus":0,"Continent":"K63","ID":29909,"Name":".:018:.","PlayerID":7417116,"Points":6968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29909","ServerKey":"pl181","X":372,"Y":606},{"Bonus":0,"Continent":"K33","ID":29911,"Name":"1.4","PlayerID":849095959,"Points":5055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29911","ServerKey":"pl181","X":376,"Y":383},{"Bonus":4,"Continent":"K64","ID":29912,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29912","ServerKey":"pl181","X":464,"Y":665},{"Bonus":0,"Continent":"K64","ID":29913,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29913","ServerKey":"pl181","X":461,"Y":663},{"Bonus":0,"Continent":"K34","ID":29915,"Name":"_6_","PlayerID":9113064,"Points":2900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29915","ServerKey":"pl181","X":493,"Y":333},{"Bonus":0,"Continent":"K65","ID":29916,"Name":"045","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29916","ServerKey":"pl181","X":521,"Y":671},{"Bonus":0,"Continent":"K64","ID":29917,"Name":"038","PlayerID":699736927,"Points":5683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29917","ServerKey":"pl181","X":422,"Y":647},{"Bonus":0,"Continent":"K34","ID":29918,"Name":"North Barba 042","PlayerID":699796330,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29918","ServerKey":"pl181","X":432,"Y":348},{"Bonus":0,"Continent":"K66","ID":29919,"Name":"Dana Point","PlayerID":848932879,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29919","ServerKey":"pl181","X":615,"Y":625},{"Bonus":0,"Continent":"K64","ID":29920,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":6244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29920","ServerKey":"pl181","X":418,"Y":632},{"Bonus":0,"Continent":"K43","ID":29921,"Name":"V007","PlayerID":849097737,"Points":5826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29921","ServerKey":"pl181","X":352,"Y":423},{"Bonus":0,"Continent":"K63","ID":29922,"Name":"Pobozowisko","PlayerID":699513260,"Points":8405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29922","ServerKey":"pl181","X":372,"Y":607},{"Bonus":0,"Continent":"K54","ID":29923,"Name":"#029 A","PlayerID":9037756,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29923","ServerKey":"pl181","X":444,"Y":596},{"Bonus":0,"Continent":"K63","ID":29924,"Name":"---012","PlayerID":8607734,"Points":7503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29924","ServerKey":"pl181","X":361,"Y":600},{"Bonus":0,"Continent":"K66","ID":29926,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29926","ServerKey":"pl181","X":636,"Y":606},{"Bonus":0,"Continent":"K54","ID":29927,"Name":"TROJA.12","PlayerID":8438707,"Points":7359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29927","ServerKey":"pl181","X":455,"Y":576},{"Bonus":0,"Continent":"K36","ID":29928,"Name":"Wioska barbarzyƄska","PlayerID":848924219,"Points":2336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29928","ServerKey":"pl181","X":620,"Y":378},{"Bonus":0,"Continent":"K65","ID":29929,"Name":"mys","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29929","ServerKey":"pl181","X":570,"Y":650},{"Bonus":0,"Continent":"K34","ID":29930,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":7729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29930","ServerKey":"pl181","X":451,"Y":337},{"Bonus":0,"Continent":"K64","ID":29931,"Name":"031. Night Raid-","PlayerID":699684062,"Points":11041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29931","ServerKey":"pl181","X":476,"Y":670},{"Bonus":0,"Continent":"K65","ID":29932,"Name":"0524","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29932","ServerKey":"pl181","X":543,"Y":664},{"Bonus":0,"Continent":"K43","ID":29933,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":7781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29933","ServerKey":"pl181","X":362,"Y":400},{"Bonus":0,"Continent":"K34","ID":29934,"Name":"[B]_[046] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29934","ServerKey":"pl181","X":417,"Y":353},{"Bonus":0,"Continent":"K65","ID":29935,"Name":"|C| Northreach","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29935","ServerKey":"pl181","X":506,"Y":668},{"Bonus":0,"Continent":"K33","ID":29936,"Name":"0004 PoznaƄ","PlayerID":849096882,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29936","ServerKey":"pl181","X":377,"Y":377},{"Bonus":0,"Continent":"K34","ID":29937,"Name":"054...barbarka","PlayerID":6920960,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29937","ServerKey":"pl181","X":449,"Y":342},{"Bonus":0,"Continent":"K46","ID":29938,"Name":"103. Brigetio","PlayerID":849091866,"Points":5338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29938","ServerKey":"pl181","X":648,"Y":416},{"Bonus":0,"Continent":"K43","ID":29939,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":3956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29939","ServerKey":"pl181","X":356,"Y":402},{"Bonus":0,"Continent":"K56","ID":29940,"Name":"O41 Sharjila","PlayerID":699272880,"Points":10797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29940","ServerKey":"pl181","X":663,"Y":541},{"Bonus":0,"Continent":"K46","ID":29941,"Name":"I018","PlayerID":699722599,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29941","ServerKey":"pl181","X":669,"Y":464},{"Bonus":0,"Continent":"K53","ID":29942,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29942","ServerKey":"pl181","X":334,"Y":503},{"Bonus":0,"Continent":"K56","ID":29943,"Name":"PUSTO","PlayerID":1415009,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29943","ServerKey":"pl181","X":642,"Y":584},{"Bonus":0,"Continent":"K35","ID":29944,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29944","ServerKey":"pl181","X":587,"Y":355},{"Bonus":0,"Continent":"K63","ID":29945,"Name":"Pobozowisko","PlayerID":699513260,"Points":10928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29945","ServerKey":"pl181","X":368,"Y":609},{"Bonus":0,"Continent":"K46","ID":29946,"Name":"A024 FlapFactor","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29946","ServerKey":"pl181","X":660,"Y":445},{"Bonus":0,"Continent":"K46","ID":29947,"Name":"I043","PlayerID":699722599,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29947","ServerKey":"pl181","X":665,"Y":461},{"Bonus":0,"Continent":"K65","ID":29949,"Name":"3 barba","PlayerID":848995242,"Points":10018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29949","ServerKey":"pl181","X":584,"Y":649},{"Bonus":0,"Continent":"K56","ID":29950,"Name":"Wioska 108","PlayerID":848971079,"Points":7706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29950","ServerKey":"pl181","X":642,"Y":588},{"Bonus":0,"Continent":"K65","ID":29951,"Name":"Sony 911","PlayerID":1415009,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29951","ServerKey":"pl181","X":586,"Y":644},{"Bonus":0,"Continent":"K46","ID":29952,"Name":"113","PlayerID":849088515,"Points":7002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29952","ServerKey":"pl181","X":655,"Y":428},{"Bonus":0,"Continent":"K56","ID":29953,"Name":"Wioska 064","PlayerID":848971079,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29953","ServerKey":"pl181","X":638,"Y":594},{"Bonus":0,"Continent":"K34","ID":29954,"Name":"Ob Konfederacja +","PlayerID":848915730,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29954","ServerKey":"pl181","X":436,"Y":339},{"Bonus":0,"Continent":"K33","ID":29955,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":6123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29955","ServerKey":"pl181","X":368,"Y":397},{"Bonus":0,"Continent":"K33","ID":29956,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":6338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29956","ServerKey":"pl181","X":367,"Y":392},{"Bonus":0,"Continent":"K34","ID":29958,"Name":"K34 - [141] Before Land","PlayerID":699088769,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29958","ServerKey":"pl181","X":436,"Y":346},{"Bonus":0,"Continent":"K64","ID":29959,"Name":"|032| Prasonisi","PlayerID":699393742,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29959","ServerKey":"pl181","X":496,"Y":667},{"Bonus":0,"Continent":"K64","ID":29960,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29960","ServerKey":"pl181","X":465,"Y":669},{"Bonus":0,"Continent":"K64","ID":29961,"Name":"#Sk_014","PlayerID":699849210,"Points":2668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29961","ServerKey":"pl181","X":438,"Y":663},{"Bonus":0,"Continent":"K65","ID":29962,"Name":"0571","PlayerID":698659980,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29962","ServerKey":"pl181","X":568,"Y":660},{"Bonus":0,"Continent":"K34","ID":29963,"Name":"#0030 GL01N","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29963","ServerKey":"pl181","X":465,"Y":336},{"Bonus":0,"Continent":"K35","ID":29964,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29964","ServerKey":"pl181","X":560,"Y":339},{"Bonus":0,"Continent":"K34","ID":29965,"Name":"North Olsztyn","PlayerID":699796330,"Points":9930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29965","ServerKey":"pl181","X":425,"Y":347},{"Bonus":0,"Continent":"K56","ID":29966,"Name":"E007","PlayerID":8428196,"Points":8428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29966","ServerKey":"pl181","X":660,"Y":557},{"Bonus":0,"Continent":"K65","ID":29967,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29967","ServerKey":"pl181","X":503,"Y":674},{"Bonus":0,"Continent":"K35","ID":29968,"Name":"ADEN","PlayerID":698588535,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29968","ServerKey":"pl181","X":576,"Y":348},{"Bonus":0,"Continent":"K43","ID":29969,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29969","ServerKey":"pl181","X":331,"Y":474},{"Bonus":0,"Continent":"K63","ID":29970,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29970","ServerKey":"pl181","X":388,"Y":625},{"Bonus":0,"Continent":"K36","ID":29971,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29971","ServerKey":"pl181","X":621,"Y":378},{"Bonus":0,"Continent":"K65","ID":29972,"Name":"024 imprezowy serniczek","PlayerID":8954402,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29972","ServerKey":"pl181","X":511,"Y":668},{"Bonus":0,"Continent":"K63","ID":29973,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29973","ServerKey":"pl181","X":395,"Y":634},{"Bonus":0,"Continent":"K65","ID":29974,"Name":"0257","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29974","ServerKey":"pl181","X":555,"Y":661},{"Bonus":0,"Continent":"K53","ID":29975,"Name":"ƚmierdzi potem x","PlayerID":7318415,"Points":4657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29975","ServerKey":"pl181","X":352,"Y":590},{"Bonus":0,"Continent":"K35","ID":29976,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29976","ServerKey":"pl181","X":567,"Y":345},{"Bonus":0,"Continent":"K46","ID":29977,"Name":"Witoszyn-morra12311","PlayerID":7340529,"Points":8998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29977","ServerKey":"pl181","X":654,"Y":426},{"Bonus":0,"Continent":"K34","ID":29978,"Name":"137...barb","PlayerID":6920960,"Points":6403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29978","ServerKey":"pl181","X":446,"Y":338},{"Bonus":0,"Continent":"K33","ID":29979,"Name":"Wiocha 8","PlayerID":849096544,"Points":7537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29979","ServerKey":"pl181","X":377,"Y":384},{"Bonus":0,"Continent":"K33","ID":29980,"Name":"Szulernia","PlayerID":7249451,"Points":4453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29980","ServerKey":"pl181","X":385,"Y":372},{"Bonus":0,"Continent":"K65","ID":29981,"Name":"07. Piękny rynek","PlayerID":849092769,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29981","ServerKey":"pl181","X":509,"Y":669},{"Bonus":0,"Continent":"K66","ID":29982,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29982","ServerKey":"pl181","X":621,"Y":619},{"Bonus":0,"Continent":"K46","ID":29983,"Name":"08 im Riutina","PlayerID":849037469,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29983","ServerKey":"pl181","X":607,"Y":428},{"Bonus":0,"Continent":"K64","ID":29984,"Name":"KUZYNEIRO","PlayerID":848913998,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29984","ServerKey":"pl181","X":405,"Y":642},{"Bonus":0,"Continent":"K43","ID":29986,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29986","ServerKey":"pl181","X":358,"Y":402},{"Bonus":0,"Continent":"K34","ID":29987,"Name":"0073","PlayerID":699431255,"Points":6050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29987","ServerKey":"pl181","X":413,"Y":350},{"Bonus":0,"Continent":"K53","ID":29988,"Name":"000 Plutosea","PlayerID":9280477,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29988","ServerKey":"pl181","X":334,"Y":540},{"Bonus":0,"Continent":"K63","ID":29989,"Name":"014","PlayerID":699083129,"Points":9599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29989","ServerKey":"pl181","X":364,"Y":603},{"Bonus":0,"Continent":"K35","ID":29991,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29991","ServerKey":"pl181","X":561,"Y":340},{"Bonus":0,"Continent":"K63","ID":29992,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29992","ServerKey":"pl181","X":379,"Y":621},{"Bonus":0,"Continent":"K35","ID":29993,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29993","ServerKey":"pl181","X":583,"Y":357},{"Bonus":0,"Continent":"K43","ID":29994,"Name":"Mora Sul","PlayerID":849097716,"Points":6653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29994","ServerKey":"pl181","X":344,"Y":435},{"Bonus":0,"Continent":"K64","ID":29995,"Name":"Ave Why!","PlayerID":699121671,"Points":9280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29995","ServerKey":"pl181","X":480,"Y":670},{"Bonus":0,"Continent":"K65","ID":29996,"Name":"5 barba","PlayerID":848995242,"Points":10018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29996","ServerKey":"pl181","X":585,"Y":650},{"Bonus":0,"Continent":"K34","ID":29997,"Name":"126...TOMCZ","PlayerID":6920960,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29997","ServerKey":"pl181","X":479,"Y":335},{"Bonus":0,"Continent":"K55","ID":29998,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29998","ServerKey":"pl181","X":572,"Y":595},{"Bonus":0,"Continent":"K36","ID":29999,"Name":"**13**","PlayerID":849098782,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=29999","ServerKey":"pl181","X":632,"Y":389},{"Bonus":0,"Continent":"K35","ID":30000,"Name":"Lord Lord Franek .#011","PlayerID":698420691,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30000","ServerKey":"pl181","X":519,"Y":332},{"Bonus":0,"Continent":"K46","ID":30001,"Name":"015 Tyranus1","PlayerID":2135129,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30001","ServerKey":"pl181","X":669,"Y":496},{"Bonus":0,"Continent":"K33","ID":30002,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":8697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30002","ServerKey":"pl181","X":365,"Y":398},{"Bonus":9,"Continent":"K63","ID":30003,"Name":"Gromkowie 3","PlayerID":698908184,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30003","ServerKey":"pl181","X":370,"Y":613},{"Bonus":0,"Continent":"K34","ID":30004,"Name":"North WƂocƂawek","PlayerID":699796330,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30004","ServerKey":"pl181","X":420,"Y":354},{"Bonus":0,"Continent":"K64","ID":30005,"Name":"D03 Brown gubisz się","PlayerID":849037407,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30005","ServerKey":"pl181","X":458,"Y":666},{"Bonus":0,"Continent":"K53","ID":30006,"Name":"NAREW","PlayerID":849097614,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30006","ServerKey":"pl181","X":332,"Y":509},{"Bonus":0,"Continent":"K65","ID":30007,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30007","ServerKey":"pl181","X":555,"Y":665},{"Bonus":0,"Continent":"K64","ID":30008,"Name":"|B| Madmoor","PlayerID":698147372,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30008","ServerKey":"pl181","X":490,"Y":667},{"Bonus":0,"Continent":"K64","ID":30009,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":9536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30009","ServerKey":"pl181","X":414,"Y":648},{"Bonus":0,"Continent":"K65","ID":30010,"Name":"0167","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30010","ServerKey":"pl181","X":549,"Y":664},{"Bonus":0,"Continent":"K35","ID":30011,"Name":"troja3","PlayerID":698290319,"Points":8708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30011","ServerKey":"pl181","X":562,"Y":342},{"Bonus":0,"Continent":"K53","ID":30012,"Name":"Chekku - meito","PlayerID":9280477,"Points":8191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30012","ServerKey":"pl181","X":328,"Y":524},{"Bonus":0,"Continent":"K65","ID":30013,"Name":"23. WHY!","PlayerID":849092769,"Points":4960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30013","ServerKey":"pl181","X":513,"Y":670},{"Bonus":0,"Continent":"K46","ID":30014,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30014","ServerKey":"pl181","X":670,"Y":484},{"Bonus":0,"Continent":"K64","ID":30015,"Name":":::2:::Koniki","PlayerID":699827112,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30015","ServerKey":"pl181","X":456,"Y":664},{"Bonus":0,"Continent":"K53","ID":30016,"Name":"Dąbrowa 0011","PlayerID":849096972,"Points":8589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30016","ServerKey":"pl181","X":356,"Y":592},{"Bonus":1,"Continent":"K34","ID":30017,"Name":"#0051 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30017","ServerKey":"pl181","X":467,"Y":330},{"Bonus":0,"Continent":"K66","ID":30018,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30018","ServerKey":"pl181","X":631,"Y":601},{"Bonus":0,"Continent":"K56","ID":30019,"Name":"53k$ Grvvyq","PlayerID":699676005,"Points":8049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30019","ServerKey":"pl181","X":655,"Y":576},{"Bonus":0,"Continent":"K53","ID":30020,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30020","ServerKey":"pl181","X":331,"Y":535},{"Bonus":0,"Continent":"K65","ID":30021,"Name":"024. Mazgajkiewo MaƂe","PlayerID":848928624,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30021","ServerKey":"pl181","X":513,"Y":666},{"Bonus":0,"Continent":"K34","ID":30022,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":6139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30022","ServerKey":"pl181","X":401,"Y":357},{"Bonus":0,"Continent":"K53","ID":30023,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30023","ServerKey":"pl181","X":331,"Y":524},{"Bonus":0,"Continent":"K46","ID":30025,"Name":"03. Meksyk","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30025","ServerKey":"pl181","X":637,"Y":403},{"Bonus":0,"Continent":"K43","ID":30026,"Name":"*202*","PlayerID":699273451,"Points":7656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30026","ServerKey":"pl181","X":356,"Y":407},{"Bonus":0,"Continent":"K36","ID":30027,"Name":"607|374","PlayerID":699580120,"Points":4049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30027","ServerKey":"pl181","X":609,"Y":372},{"Bonus":0,"Continent":"K36","ID":30028,"Name":"Szlachcic/Taran","PlayerID":699491076,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30028","ServerKey":"pl181","X":636,"Y":392},{"Bonus":3,"Continent":"K65","ID":30029,"Name":"*012","PlayerID":699567608,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30029","ServerKey":"pl181","X":598,"Y":641},{"Bonus":0,"Continent":"K43","ID":30030,"Name":"1.15","PlayerID":3502565,"Points":3157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30030","ServerKey":"pl181","X":341,"Y":442},{"Bonus":0,"Continent":"K65","ID":30031,"Name":"scofield","PlayerID":699494488,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30031","ServerKey":"pl181","X":525,"Y":666},{"Bonus":0,"Continent":"K64","ID":30032,"Name":"|B| Darkcoast","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30032","ServerKey":"pl181","X":488,"Y":668},{"Bonus":0,"Continent":"K63","ID":30033,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30033","ServerKey":"pl181","X":395,"Y":629},{"Bonus":6,"Continent":"K63","ID":30034,"Name":"A 049","PlayerID":699342219,"Points":8290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30034","ServerKey":"pl181","X":371,"Y":617},{"Bonus":0,"Continent":"K35","ID":30035,"Name":"Lord Lord Franek .#127","PlayerID":698420691,"Points":7771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30035","ServerKey":"pl181","X":513,"Y":326},{"Bonus":0,"Continent":"K53","ID":30036,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30036","ServerKey":"pl181","X":339,"Y":554},{"Bonus":0,"Continent":"K66","ID":30037,"Name":"xxx - 11","PlayerID":699778867,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30037","ServerKey":"pl181","X":615,"Y":630},{"Bonus":0,"Continent":"K56","ID":30038,"Name":"077","PlayerID":699351301,"Points":9780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30038","ServerKey":"pl181","X":664,"Y":527},{"Bonus":0,"Continent":"K56","ID":30039,"Name":"0143","PlayerID":698416970,"Points":7974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30039","ServerKey":"pl181","X":629,"Y":598},{"Bonus":0,"Continent":"K36","ID":30040,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30040","ServerKey":"pl181","X":610,"Y":374},{"Bonus":0,"Continent":"K53","ID":30041,"Name":"GÓRNIK","PlayerID":849097614,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30041","ServerKey":"pl181","X":331,"Y":505},{"Bonus":0,"Continent":"K35","ID":30042,"Name":"Lord Lord Franek .#090","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30042","ServerKey":"pl181","X":517,"Y":328},{"Bonus":0,"Continent":"K65","ID":30043,"Name":"*026","PlayerID":699567608,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30043","ServerKey":"pl181","X":593,"Y":646},{"Bonus":0,"Continent":"K46","ID":30044,"Name":"[022] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30044","ServerKey":"pl181","X":661,"Y":438},{"Bonus":0,"Continent":"K36","ID":30045,"Name":"**1234**","PlayerID":849098782,"Points":11422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30045","ServerKey":"pl181","X":634,"Y":385},{"Bonus":0,"Continent":"K46","ID":30046,"Name":"BACÓWKA |032|","PlayerID":7394371,"Points":5244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30046","ServerKey":"pl181","X":641,"Y":408},{"Bonus":0,"Continent":"K53","ID":30047,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30047","ServerKey":"pl181","X":334,"Y":524},{"Bonus":1,"Continent":"K35","ID":30048,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30048","ServerKey":"pl181","X":589,"Y":352},{"Bonus":0,"Continent":"K46","ID":30049,"Name":"026 pawelk95","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30049","ServerKey":"pl181","X":667,"Y":477},{"Bonus":0,"Continent":"K33","ID":30050,"Name":"*226*","PlayerID":699273451,"Points":9101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30050","ServerKey":"pl181","X":378,"Y":376},{"Bonus":0,"Continent":"K64","ID":30052,"Name":"|B| Oakenview","PlayerID":698147372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30052","ServerKey":"pl181","X":487,"Y":668},{"Bonus":0,"Continent":"K53","ID":30053,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30053","ServerKey":"pl181","X":340,"Y":549},{"Bonus":0,"Continent":"K63","ID":30054,"Name":".///...//././././././././","PlayerID":849097937,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30054","ServerKey":"pl181","X":376,"Y":611},{"Bonus":0,"Continent":"K36","ID":30055,"Name":"010 Unternehmen Barbarossa","PlayerID":849091899,"Points":4581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30055","ServerKey":"pl181","X":604,"Y":362},{"Bonus":0,"Continent":"K46","ID":30056,"Name":"Jaaa","PlayerID":698635863,"Points":8702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30056","ServerKey":"pl181","X":667,"Y":487},{"Bonus":0,"Continent":"K35","ID":30057,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30057","ServerKey":"pl181","X":561,"Y":343},{"Bonus":0,"Continent":"K34","ID":30058,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30058","ServerKey":"pl181","X":433,"Y":340},{"Bonus":0,"Continent":"K65","ID":30059,"Name":"sony911","PlayerID":1415009,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30059","ServerKey":"pl181","X":589,"Y":648},{"Bonus":0,"Continent":"K45","ID":30060,"Name":"051","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30060","ServerKey":"pl181","X":565,"Y":410},{"Bonus":0,"Continent":"K35","ID":30061,"Name":"Lord Lord Franek .#128","PlayerID":698420691,"Points":7915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30061","ServerKey":"pl181","X":523,"Y":334},{"Bonus":0,"Continent":"K35","ID":30062,"Name":"Cary k Tampa","PlayerID":849061374,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30062","ServerKey":"pl181","X":597,"Y":355},{"Bonus":0,"Continent":"K53","ID":30063,"Name":"Chekku - meito","PlayerID":9280477,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30063","ServerKey":"pl181","X":337,"Y":533},{"Bonus":0,"Continent":"K53","ID":30064,"Name":"181..","PlayerID":849090130,"Points":6199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30064","ServerKey":"pl181","X":351,"Y":590},{"Bonus":0,"Continent":"K43","ID":30065,"Name":"Westfold.003","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30065","ServerKey":"pl181","X":347,"Y":416},{"Bonus":0,"Continent":"K35","ID":30066,"Name":"Wioska II","PlayerID":698200480,"Points":6964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30066","ServerKey":"pl181","X":581,"Y":347},{"Bonus":0,"Continent":"K34","ID":30067,"Name":"#0105 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30067","ServerKey":"pl181","X":478,"Y":327},{"Bonus":0,"Continent":"K53","ID":30068,"Name":"-015-","PlayerID":8004076,"Points":7488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30068","ServerKey":"pl181","X":339,"Y":560},{"Bonus":0,"Continent":"K64","ID":30069,"Name":"030. Night Raid-","PlayerID":699684062,"Points":10909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30069","ServerKey":"pl181","X":476,"Y":673},{"Bonus":0,"Continent":"K64","ID":30070,"Name":"KUZYNEIRO","PlayerID":848913998,"Points":8167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30070","ServerKey":"pl181","X":407,"Y":643},{"Bonus":0,"Continent":"K43","ID":30071,"Name":"A0286","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30071","ServerKey":"pl181","X":329,"Y":482},{"Bonus":6,"Continent":"K34","ID":30072,"Name":"#0070 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30072","ServerKey":"pl181","X":478,"Y":329},{"Bonus":0,"Continent":"K56","ID":30073,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":6471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30073","ServerKey":"pl181","X":668,"Y":525},{"Bonus":0,"Continent":"K46","ID":30074,"Name":"I019","PlayerID":699722599,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30074","ServerKey":"pl181","X":661,"Y":459},{"Bonus":0,"Continent":"K35","ID":30075,"Name":"Lord Lord Franek .#082","PlayerID":698420691,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30075","ServerKey":"pl181","X":526,"Y":334},{"Bonus":0,"Continent":"K63","ID":30076,"Name":"Gromkowie 2","PlayerID":698908184,"Points":11874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30076","ServerKey":"pl181","X":369,"Y":612},{"Bonus":0,"Continent":"K34","ID":30077,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30077","ServerKey":"pl181","X":493,"Y":326},{"Bonus":0,"Continent":"K65","ID":30078,"Name":"057","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30078","ServerKey":"pl181","X":536,"Y":670},{"Bonus":0,"Continent":"K43","ID":30079,"Name":"1.12","PlayerID":3502565,"Points":3958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30079","ServerKey":"pl181","X":340,"Y":446},{"Bonus":0,"Continent":"K56","ID":30080,"Name":"B 032","PlayerID":8078914,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30080","ServerKey":"pl181","X":670,"Y":530},{"Bonus":0,"Continent":"K34","ID":30081,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30081","ServerKey":"pl181","X":496,"Y":386},{"Bonus":0,"Continent":"K35","ID":30082,"Name":"Wrath 007","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30082","ServerKey":"pl181","X":574,"Y":343},{"Bonus":0,"Continent":"K66","ID":30083,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30083","ServerKey":"pl181","X":619,"Y":624},{"Bonus":0,"Continent":"K53","ID":30084,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30084","ServerKey":"pl181","X":342,"Y":564},{"Bonus":0,"Continent":"K63","ID":30085,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30085","ServerKey":"pl181","X":395,"Y":632},{"Bonus":0,"Continent":"K53","ID":30086,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30086","ServerKey":"pl181","X":327,"Y":517},{"Bonus":0,"Continent":"K65","ID":30087,"Name":"011","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30087","ServerKey":"pl181","X":516,"Y":670},{"Bonus":0,"Continent":"K33","ID":30088,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30088","ServerKey":"pl181","X":383,"Y":372},{"Bonus":0,"Continent":"K43","ID":30089,"Name":"*169*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30089","ServerKey":"pl181","X":349,"Y":415},{"Bonus":0,"Continent":"K34","ID":30090,"Name":"[B]_[048] Dejv.oldplyr","PlayerID":699380607,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30090","ServerKey":"pl181","X":427,"Y":348},{"Bonus":0,"Continent":"K46","ID":30091,"Name":"104. Egara","PlayerID":849091866,"Points":9604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30091","ServerKey":"pl181","X":647,"Y":411},{"Bonus":0,"Continent":"K34","ID":30092,"Name":"North Barba 055","PlayerID":699796330,"Points":7083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30092","ServerKey":"pl181","X":407,"Y":355},{"Bonus":0,"Continent":"K53","ID":30093,"Name":"Moczy kij","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30093","ServerKey":"pl181","X":331,"Y":541},{"Bonus":0,"Continent":"K34","ID":30094,"Name":"Szulernia","PlayerID":7249451,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30094","ServerKey":"pl181","X":408,"Y":364},{"Bonus":0,"Continent":"K53","ID":30095,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30095","ServerKey":"pl181","X":333,"Y":521},{"Bonus":0,"Continent":"K64","ID":30096,"Name":"KUZYNEIRO","PlayerID":848913998,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30096","ServerKey":"pl181","X":407,"Y":642},{"Bonus":0,"Continent":"K34","ID":30097,"Name":"#0182 MiBM","PlayerID":1238300,"Points":6561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30097","ServerKey":"pl181","X":489,"Y":328},{"Bonus":0,"Continent":"K43","ID":30098,"Name":"Radek","PlayerID":699523631,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30098","ServerKey":"pl181","X":398,"Y":470},{"Bonus":0,"Continent":"K34","ID":30099,"Name":".achim.","PlayerID":6936607,"Points":10946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30099","ServerKey":"pl181","X":491,"Y":333},{"Bonus":0,"Continent":"K63","ID":30100,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30100","ServerKey":"pl181","X":390,"Y":633},{"Bonus":0,"Continent":"K35","ID":30101,"Name":"MojeDnoToWaszSzczyt","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30101","ServerKey":"pl181","X":565,"Y":346},{"Bonus":0,"Continent":"K64","ID":30102,"Name":"[A]009","PlayerID":699736927,"Points":6110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30102","ServerKey":"pl181","X":424,"Y":651},{"Bonus":8,"Continent":"K64","ID":30103,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30103","ServerKey":"pl181","X":406,"Y":647},{"Bonus":0,"Continent":"K43","ID":30104,"Name":"A0263","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30104","ServerKey":"pl181","X":330,"Y":487},{"Bonus":0,"Continent":"K35","ID":30105,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30105","ServerKey":"pl181","X":561,"Y":342},{"Bonus":0,"Continent":"K33","ID":30106,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30106","ServerKey":"pl181","X":362,"Y":394},{"Bonus":0,"Continent":"K53","ID":30107,"Name":"Dąbrowa 0012","PlayerID":849096972,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30107","ServerKey":"pl181","X":354,"Y":588},{"Bonus":6,"Continent":"K34","ID":30108,"Name":"Szulernia","PlayerID":7249451,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30108","ServerKey":"pl181","X":407,"Y":362},{"Bonus":0,"Continent":"K64","ID":30109,"Name":"Jednak wolę gofry","PlayerID":848913998,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30109","ServerKey":"pl181","X":410,"Y":649},{"Bonus":0,"Continent":"K43","ID":30111,"Name":"Oddej te koƂo bo ci ciulna","PlayerID":699711723,"Points":3182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30111","ServerKey":"pl181","X":329,"Y":464},{"Bonus":0,"Continent":"K34","ID":30112,"Name":"Bagdad","PlayerID":8847546,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30112","ServerKey":"pl181","X":497,"Y":334},{"Bonus":0,"Continent":"K53","ID":30113,"Name":"!off 100 %","PlayerID":849012521,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30113","ServerKey":"pl181","X":348,"Y":570},{"Bonus":0,"Continent":"K46","ID":30114,"Name":"WB6","PlayerID":1086351,"Points":2917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30114","ServerKey":"pl181","X":651,"Y":413},{"Bonus":0,"Continent":"K46","ID":30115,"Name":"005 Wioska FredS","PlayerID":699671454,"Points":7743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30115","ServerKey":"pl181","X":626,"Y":467},{"Bonus":0,"Continent":"K64","ID":30116,"Name":"Ave Why!","PlayerID":698585370,"Points":4550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30116","ServerKey":"pl181","X":496,"Y":669},{"Bonus":0,"Continent":"K34","ID":30117,"Name":"K34 - [143] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30117","ServerKey":"pl181","X":439,"Y":344},{"Bonus":0,"Continent":"K46","ID":30118,"Name":"Muaq","PlayerID":699574408,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30118","ServerKey":"pl181","X":675,"Y":477},{"Bonus":0,"Continent":"K36","ID":30119,"Name":"660|387","PlayerID":699580120,"Points":7695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30119","ServerKey":"pl181","X":609,"Y":373},{"Bonus":0,"Continent":"K43","ID":30120,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30120","ServerKey":"pl181","X":335,"Y":465},{"Bonus":0,"Continent":"K46","ID":30121,"Name":"047 | PALESTINA","PlayerID":9228039,"Points":6761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30121","ServerKey":"pl181","X":655,"Y":423},{"Bonus":0,"Continent":"K46","ID":30122,"Name":"Gattacka","PlayerID":699298370,"Points":9041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30122","ServerKey":"pl181","X":603,"Y":424},{"Bonus":0,"Continent":"K65","ID":30123,"Name":"*014","PlayerID":699567608,"Points":8862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30123","ServerKey":"pl181","X":595,"Y":641},{"Bonus":0,"Continent":"K46","ID":30124,"Name":"06. Dubaj","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30124","ServerKey":"pl181","X":647,"Y":414},{"Bonus":0,"Continent":"K44","ID":30125,"Name":"Wioska barbarzyƄska","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30125","ServerKey":"pl181","X":406,"Y":415},{"Bonus":0,"Continent":"K64","ID":30126,"Name":"022 Raya Lucaria","PlayerID":699834004,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30126","ServerKey":"pl181","X":486,"Y":672},{"Bonus":0,"Continent":"K66","ID":30127,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30127","ServerKey":"pl181","X":637,"Y":600},{"Bonus":0,"Continent":"K45","ID":30128,"Name":"[326] Chorągiewka na wietrze","PlayerID":848985692,"Points":10397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30128","ServerKey":"pl181","X":595,"Y":439},{"Bonus":0,"Continent":"K53","ID":30129,"Name":"Nowy ƛwiat 2","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30129","ServerKey":"pl181","X":345,"Y":563},{"Bonus":0,"Continent":"K34","ID":30130,"Name":"003","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30130","ServerKey":"pl181","X":456,"Y":329},{"Bonus":0,"Continent":"K34","ID":30131,"Name":"120...tomcz","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30131","ServerKey":"pl181","X":485,"Y":331},{"Bonus":0,"Continent":"K53","ID":30132,"Name":"Pobozowisko","PlayerID":699513260,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30132","ServerKey":"pl181","X":386,"Y":586},{"Bonus":0,"Continent":"K35","ID":30133,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30133","ServerKey":"pl181","X":556,"Y":335},{"Bonus":0,"Continent":"K66","ID":30134,"Name":"0010","PlayerID":6417987,"Points":8295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30134","ServerKey":"pl181","X":614,"Y":611},{"Bonus":0,"Continent":"K66","ID":30135,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30135","ServerKey":"pl181","X":620,"Y":616},{"Bonus":0,"Continent":"K53","ID":30136,"Name":"Dąbrowa 0003","PlayerID":849096972,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30136","ServerKey":"pl181","X":360,"Y":595},{"Bonus":0,"Continent":"K65","ID":30137,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30137","ServerKey":"pl181","X":557,"Y":664},{"Bonus":0,"Continent":"K33","ID":30138,"Name":"2.5","PlayerID":849095959,"Points":5171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30138","ServerKey":"pl181","X":373,"Y":385},{"Bonus":0,"Continent":"K64","ID":30139,"Name":"[A]002","PlayerID":699736927,"Points":7992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30139","ServerKey":"pl181","X":424,"Y":650},{"Bonus":0,"Continent":"K35","ID":30140,"Name":"Lord Lord Franek .#101","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30140","ServerKey":"pl181","X":524,"Y":328},{"Bonus":0,"Continent":"K56","ID":30141,"Name":"040","PlayerID":699413040,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30141","ServerKey":"pl181","X":672,"Y":516},{"Bonus":0,"Continent":"K43","ID":30142,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30142","ServerKey":"pl181","X":334,"Y":460},{"Bonus":0,"Continent":"K46","ID":30143,"Name":"Jaaa","PlayerID":698635863,"Points":10402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30143","ServerKey":"pl181","X":671,"Y":488},{"Bonus":0,"Continent":"K35","ID":30144,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":3393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30144","ServerKey":"pl181","X":597,"Y":362},{"Bonus":0,"Continent":"K53","ID":30145,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":7406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30145","ServerKey":"pl181","X":346,"Y":570},{"Bonus":0,"Continent":"K65","ID":30146,"Name":"Sony 911","PlayerID":1415009,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30146","ServerKey":"pl181","X":590,"Y":649},{"Bonus":0,"Continent":"K34","ID":30147,"Name":"[B][02] Aragon Ballroom","PlayerID":699380621,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30147","ServerKey":"pl181","X":434,"Y":344},{"Bonus":0,"Continent":"K43","ID":30148,"Name":"Westfold.020","PlayerID":848918380,"Points":8854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30148","ServerKey":"pl181","X":346,"Y":423},{"Bonus":0,"Continent":"K66","ID":30149,"Name":"Adasko22","PlayerID":2269943,"Points":4650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30149","ServerKey":"pl181","X":631,"Y":613},{"Bonus":0,"Continent":"K56","ID":30150,"Name":"Oscar","PlayerID":699737356,"Points":8026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30150","ServerKey":"pl181","X":673,"Y":507},{"Bonus":0,"Continent":"K46","ID":30151,"Name":"Jehu_Kingdom_55","PlayerID":8785314,"Points":7098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30151","ServerKey":"pl181","X":648,"Y":425},{"Bonus":0,"Continent":"K35","ID":30152,"Name":"-0009-","PlayerID":2972329,"Points":6536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30152","ServerKey":"pl181","X":540,"Y":333},{"Bonus":0,"Continent":"K33","ID":30153,"Name":"cz 10 4","PlayerID":3909522,"Points":9926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30153","ServerKey":"pl181","X":367,"Y":389},{"Bonus":0,"Continent":"K53","ID":30154,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":6775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30154","ServerKey":"pl181","X":335,"Y":557},{"Bonus":0,"Continent":"K34","ID":30155,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":7434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30155","ServerKey":"pl181","X":401,"Y":360},{"Bonus":0,"Continent":"K35","ID":30156,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30156","ServerKey":"pl181","X":555,"Y":339},{"Bonus":0,"Continent":"K36","ID":30157,"Name":"Wyspa 006","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30157","ServerKey":"pl181","X":625,"Y":381},{"Bonus":0,"Continent":"K46","ID":30158,"Name":"A003 Thais","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30158","ServerKey":"pl181","X":661,"Y":448},{"Bonus":0,"Continent":"K33","ID":30159,"Name":"cz Wioska 15","PlayerID":3909522,"Points":4377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30159","ServerKey":"pl181","X":367,"Y":388},{"Bonus":0,"Continent":"K66","ID":30160,"Name":"Grvvyq 118k$","PlayerID":699676005,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30160","ServerKey":"pl181","X":614,"Y":627},{"Bonus":0,"Continent":"K53","ID":30161,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":2190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30161","ServerKey":"pl181","X":341,"Y":557},{"Bonus":0,"Continent":"K35","ID":30162,"Name":"SƂoƄce","PlayerID":699797805,"Points":3976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30162","ServerKey":"pl181","X":546,"Y":338},{"Bonus":0,"Continent":"K64","ID":30163,"Name":"Nawet przytulnie tutaj","PlayerID":8954402,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30163","ServerKey":"pl181","X":444,"Y":659},{"Bonus":0,"Continent":"K34","ID":30164,"Name":"128...centr","PlayerID":6920960,"Points":8591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30164","ServerKey":"pl181","X":445,"Y":343},{"Bonus":0,"Continent":"K35","ID":30165,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30165","ServerKey":"pl181","X":566,"Y":341},{"Bonus":0,"Continent":"K53","ID":30166,"Name":"012","PlayerID":8839171,"Points":3547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30166","ServerKey":"pl181","X":343,"Y":571},{"Bonus":0,"Continent":"K36","ID":30167,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":8695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30167","ServerKey":"pl181","X":639,"Y":397},{"Bonus":0,"Continent":"K56","ID":30168,"Name":"=057= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30168","ServerKey":"pl181","X":647,"Y":584},{"Bonus":0,"Continent":"K33","ID":30169,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30169","ServerKey":"pl181","X":364,"Y":399},{"Bonus":0,"Continent":"K35","ID":30170,"Name":"81 .ƚroda.","PlayerID":2571407,"Points":2611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30170","ServerKey":"pl181","X":521,"Y":331},{"Bonus":0,"Continent":"K35","ID":30171,"Name":"81 Wtorek","PlayerID":2571407,"Points":3955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30171","ServerKey":"pl181","X":522,"Y":332},{"Bonus":0,"Continent":"K46","ID":30172,"Name":"645|411 Wioska barbarzyƄska","PlayerID":6822957,"Points":5159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30172","ServerKey":"pl181","X":645,"Y":411},{"Bonus":0,"Continent":"K35","ID":30173,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30173","ServerKey":"pl181","X":553,"Y":340},{"Bonus":0,"Continent":"K46","ID":30174,"Name":"**41**","PlayerID":849098782,"Points":9441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30174","ServerKey":"pl181","X":664,"Y":440},{"Bonus":0,"Continent":"K64","ID":30175,"Name":"032. Night Raid-","PlayerID":699684062,"Points":10686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30175","ServerKey":"pl181","X":477,"Y":673},{"Bonus":0,"Continent":"K65","ID":30176,"Name":"0266","PlayerID":698659980,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30176","ServerKey":"pl181","X":538,"Y":664},{"Bonus":0,"Continent":"K36","ID":30177,"Name":"**24**","PlayerID":849098782,"Points":10878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30177","ServerKey":"pl181","X":633,"Y":395},{"Bonus":0,"Continent":"K64","ID":30178,"Name":"Vccc-2","PlayerID":699736927,"Points":6922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30178","ServerKey":"pl181","X":414,"Y":645},{"Bonus":0,"Continent":"K43","ID":30180,"Name":"A0264","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30180","ServerKey":"pl181","X":329,"Y":487},{"Bonus":0,"Continent":"K35","ID":30181,"Name":"Salt Lake City","PlayerID":699491076,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30181","ServerKey":"pl181","X":599,"Y":360},{"Bonus":0,"Continent":"K66","ID":30182,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30182","ServerKey":"pl181","X":638,"Y":605},{"Bonus":0,"Continent":"K53","ID":30183,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30183","ServerKey":"pl181","X":342,"Y":555},{"Bonus":0,"Continent":"K35","ID":30184,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30184","ServerKey":"pl181","X":552,"Y":340},{"Bonus":0,"Continent":"K66","ID":30185,"Name":"*007","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30185","ServerKey":"pl181","X":600,"Y":640},{"Bonus":0,"Continent":"K56","ID":30186,"Name":"B 029","PlayerID":8078914,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30186","ServerKey":"pl181","X":663,"Y":535},{"Bonus":0,"Continent":"K53","ID":30187,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30187","ServerKey":"pl181","X":339,"Y":553},{"Bonus":0,"Continent":"K34","ID":30188,"Name":"#0059 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30188","ServerKey":"pl181","X":471,"Y":329},{"Bonus":0,"Continent":"K36","ID":30189,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30189","ServerKey":"pl181","X":619,"Y":378},{"Bonus":0,"Continent":"K43","ID":30190,"Name":"*263*","PlayerID":699273451,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30190","ServerKey":"pl181","X":336,"Y":445},{"Bonus":0,"Continent":"K56","ID":30191,"Name":"B 007","PlayerID":8078914,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30191","ServerKey":"pl181","X":673,"Y":540},{"Bonus":6,"Continent":"K64","ID":30192,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30192","ServerKey":"pl181","X":409,"Y":642},{"Bonus":0,"Continent":"K56","ID":30193,"Name":"Grvvyq 111k$","PlayerID":699676005,"Points":5488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30193","ServerKey":"pl181","X":655,"Y":565},{"Bonus":0,"Continent":"K65","ID":30194,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30194","ServerKey":"pl181","X":580,"Y":649},{"Bonus":0,"Continent":"K43","ID":30195,"Name":"*077*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30195","ServerKey":"pl181","X":356,"Y":414},{"Bonus":0,"Continent":"K64","ID":30196,"Name":"Ave Why!","PlayerID":698585370,"Points":4547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30196","ServerKey":"pl181","X":498,"Y":670},{"Bonus":0,"Continent":"K46","ID":30197,"Name":"[021] Audi A szczy","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30197","ServerKey":"pl181","X":662,"Y":438},{"Bonus":0,"Continent":"K53","ID":30198,"Name":"Samotna wioska 8","PlayerID":698353083,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30198","ServerKey":"pl181","X":355,"Y":592},{"Bonus":9,"Continent":"K64","ID":30199,"Name":"KUZYN","PlayerID":848913998,"Points":4097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30199","ServerKey":"pl181","X":410,"Y":640},{"Bonus":0,"Continent":"K35","ID":30200,"Name":"-007-","PlayerID":698588812,"Points":3759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30200","ServerKey":"pl181","X":539,"Y":331},{"Bonus":0,"Continent":"K33","ID":30201,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30201","ServerKey":"pl181","X":363,"Y":397},{"Bonus":6,"Continent":"K36","ID":30202,"Name":"Wyspa 004","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30202","ServerKey":"pl181","X":623,"Y":381},{"Bonus":0,"Continent":"K33","ID":30203,"Name":"Ɓoƛ z gƂową ƛlimaka","PlayerID":848886056,"Points":6523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30203","ServerKey":"pl181","X":373,"Y":391},{"Bonus":0,"Continent":"K65","ID":30204,"Name":"0159","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30204","ServerKey":"pl181","X":556,"Y":655},{"Bonus":0,"Continent":"K43","ID":30205,"Name":"Wioska barbarzyƄska","PlayerID":849096547,"Points":2174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30205","ServerKey":"pl181","X":350,"Y":412},{"Bonus":0,"Continent":"K34","ID":30206,"Name":"008","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30206","ServerKey":"pl181","X":455,"Y":334},{"Bonus":0,"Continent":"K34","ID":30207,"Name":"#0178 MiBM","PlayerID":1238300,"Points":8133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30207","ServerKey":"pl181","X":488,"Y":330},{"Bonus":0,"Continent":"K63","ID":30208,"Name":"047.","PlayerID":2665207,"Points":6232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30208","ServerKey":"pl181","X":389,"Y":628},{"Bonus":0,"Continent":"K33","ID":30209,"Name":"Wiocha 9","PlayerID":849096544,"Points":6602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30209","ServerKey":"pl181","X":378,"Y":385},{"Bonus":0,"Continent":"K46","ID":30210,"Name":"Village","PlayerID":1086351,"Points":7742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30210","ServerKey":"pl181","X":649,"Y":417},{"Bonus":3,"Continent":"K56","ID":30211,"Name":"O32 Alaska","PlayerID":699272880,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30211","ServerKey":"pl181","X":669,"Y":523},{"Bonus":0,"Continent":"K64","ID":30212,"Name":"015|| Ursa Minor","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30212","ServerKey":"pl181","X":496,"Y":672},{"Bonus":0,"Continent":"K64","ID":30213,"Name":"010","PlayerID":698650301,"Points":9583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30213","ServerKey":"pl181","X":483,"Y":667},{"Bonus":0,"Continent":"K33","ID":30214,"Name":"Szlachcic","PlayerID":698160606,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30214","ServerKey":"pl181","X":393,"Y":363},{"Bonus":0,"Continent":"K35","ID":30215,"Name":"...","PlayerID":699072129,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30215","ServerKey":"pl181","X":564,"Y":339},{"Bonus":0,"Continent":"K65","ID":30217,"Name":"wokalista zespoƂu,,, Leszcze","PlayerID":848995242,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30217","ServerKey":"pl181","X":594,"Y":638},{"Bonus":0,"Continent":"K33","ID":30218,"Name":"cc Lanckorona","PlayerID":3909522,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30218","ServerKey":"pl181","X":391,"Y":372},{"Bonus":0,"Continent":"K53","ID":30219,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30219","ServerKey":"pl181","X":329,"Y":522},{"Bonus":0,"Continent":"K35","ID":30220,"Name":"010 Aberlou","PlayerID":699072129,"Points":5322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30220","ServerKey":"pl181","X":557,"Y":337},{"Bonus":0,"Continent":"K36","ID":30221,"Name":"**22**","PlayerID":849098782,"Points":5634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30221","ServerKey":"pl181","X":633,"Y":394},{"Bonus":6,"Continent":"K53","ID":30222,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30222","ServerKey":"pl181","X":337,"Y":557},{"Bonus":0,"Continent":"K44","ID":30223,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30223","ServerKey":"pl181","X":434,"Y":404},{"Bonus":0,"Continent":"K63","ID":30224,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30224","ServerKey":"pl181","X":389,"Y":630},{"Bonus":4,"Continent":"K43","ID":30225,"Name":"1.02","PlayerID":3502565,"Points":8634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30225","ServerKey":"pl181","X":337,"Y":446},{"Bonus":0,"Continent":"K35","ID":30227,"Name":"AAA","PlayerID":1006847,"Points":9673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30227","ServerKey":"pl181","X":528,"Y":328},{"Bonus":0,"Continent":"K56","ID":30228,"Name":"021.","PlayerID":6520732,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30228","ServerKey":"pl181","X":651,"Y":585},{"Bonus":0,"Continent":"K33","ID":30229,"Name":"Szulernia","PlayerID":7249451,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30229","ServerKey":"pl181","X":390,"Y":368},{"Bonus":0,"Continent":"K34","ID":30230,"Name":"[B]_[036] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30230","ServerKey":"pl181","X":421,"Y":345},{"Bonus":0,"Continent":"K43","ID":30231,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30231","ServerKey":"pl181","X":336,"Y":472},{"Bonus":0,"Continent":"K33","ID":30232,"Name":"Wioska TakiKris","PlayerID":8419570,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30232","ServerKey":"pl181","X":386,"Y":379},{"Bonus":0,"Continent":"K56","ID":30233,"Name":"28k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30233","ServerKey":"pl181","X":656,"Y":576},{"Bonus":0,"Continent":"K43","ID":30234,"Name":"A0045","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30234","ServerKey":"pl181","X":377,"Y":473},{"Bonus":0,"Continent":"K66","ID":30235,"Name":"Ć»UBRAWKA 041","PlayerID":33900,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30235","ServerKey":"pl181","X":609,"Y":635},{"Bonus":0,"Continent":"K43","ID":30236,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30236","ServerKey":"pl181","X":353,"Y":457},{"Bonus":0,"Continent":"K64","ID":30237,"Name":"New World","PlayerID":698152377,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30237","ServerKey":"pl181","X":493,"Y":673},{"Bonus":0,"Continent":"K36","ID":30239,"Name":"I#017","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30239","ServerKey":"pl181","X":618,"Y":368},{"Bonus":0,"Continent":"K35","ID":30240,"Name":"Wioska barbarzyƄska 026","PlayerID":6343784,"Points":8733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30240","ServerKey":"pl181","X":512,"Y":331},{"Bonus":0,"Continent":"K65","ID":30241,"Name":"053","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30241","ServerKey":"pl181","X":532,"Y":669},{"Bonus":0,"Continent":"K65","ID":30242,"Name":"0160","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30242","ServerKey":"pl181","X":548,"Y":664},{"Bonus":0,"Continent":"K64","ID":30243,"Name":"psycha sitting","PlayerID":699736927,"Points":10013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30243","ServerKey":"pl181","X":417,"Y":653},{"Bonus":5,"Continent":"K66","ID":30244,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30244","ServerKey":"pl181","X":636,"Y":600},{"Bonus":0,"Continent":"K43","ID":30245,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30245","ServerKey":"pl181","X":342,"Y":447},{"Bonus":0,"Continent":"K64","ID":30246,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30246","ServerKey":"pl181","X":479,"Y":672},{"Bonus":0,"Continent":"K43","ID":30247,"Name":"A0265","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30247","ServerKey":"pl181","X":333,"Y":480},{"Bonus":0,"Continent":"K43","ID":30248,"Name":"V005","PlayerID":849097737,"Points":6376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30248","ServerKey":"pl181","X":346,"Y":420},{"Bonus":0,"Continent":"K65","ID":30249,"Name":"0049","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30249","ServerKey":"pl181","X":553,"Y":618},{"Bonus":0,"Continent":"K53","ID":30250,"Name":"Wonderwall","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30250","ServerKey":"pl181","X":333,"Y":547},{"Bonus":0,"Continent":"K53","ID":30251,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30251","ServerKey":"pl181","X":343,"Y":556},{"Bonus":0,"Continent":"K56","ID":30252,"Name":"E008","PlayerID":8428196,"Points":6997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30252","ServerKey":"pl181","X":661,"Y":562},{"Bonus":0,"Continent":"K65","ID":30255,"Name":"0654","PlayerID":698659980,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30255","ServerKey":"pl181","X":566,"Y":659},{"Bonus":0,"Continent":"K43","ID":30256,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30256","ServerKey":"pl181","X":325,"Y":491},{"Bonus":0,"Continent":"K65","ID":30257,"Name":"*005","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30257","ServerKey":"pl181","X":594,"Y":645},{"Bonus":0,"Continent":"K46","ID":30258,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30258","ServerKey":"pl181","X":665,"Y":476},{"Bonus":0,"Continent":"K46","ID":30259,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30259","ServerKey":"pl181","X":672,"Y":482},{"Bonus":0,"Continent":"K33","ID":30260,"Name":"Szulernia","PlayerID":7249451,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30260","ServerKey":"pl181","X":386,"Y":370},{"Bonus":0,"Continent":"K36","ID":30261,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30261","ServerKey":"pl181","X":610,"Y":368},{"Bonus":0,"Continent":"K43","ID":30262,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":7200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30262","ServerKey":"pl181","X":364,"Y":401},{"Bonus":0,"Continent":"K34","ID":30263,"Name":"117...tomcz","PlayerID":6920960,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30263","ServerKey":"pl181","X":482,"Y":329},{"Bonus":0,"Continent":"K54","ID":30264,"Name":"ZiOm2311Gacek","PlayerID":849028088,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30264","ServerKey":"pl181","X":442,"Y":577},{"Bonus":0,"Continent":"K43","ID":30265,"Name":"Gotha","PlayerID":849097716,"Points":3912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30265","ServerKey":"pl181","X":345,"Y":438},{"Bonus":0,"Continent":"K65","ID":30266,"Name":"0247","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30266","ServerKey":"pl181","X":540,"Y":662},{"Bonus":0,"Continent":"K64","ID":30267,"Name":"Wioska barbarzyƄska","PlayerID":699849210,"Points":2159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30267","ServerKey":"pl181","X":439,"Y":661},{"Bonus":0,"Continent":"K34","ID":30268,"Name":"103...tomcz","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30268","ServerKey":"pl181","X":479,"Y":333},{"Bonus":0,"Continent":"K64","ID":30269,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30269","ServerKey":"pl181","X":474,"Y":672},{"Bonus":0,"Continent":"K46","ID":30270,"Name":"008 Stromy PƂaskowyĆŒ","PlayerID":699429153,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30270","ServerKey":"pl181","X":626,"Y":424},{"Bonus":0,"Continent":"K56","ID":30271,"Name":"[042]","PlayerID":698305474,"Points":7175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30271","ServerKey":"pl181","X":644,"Y":586},{"Bonus":0,"Continent":"K53","ID":30272,"Name":"Skocz po Deff do OZDR","PlayerID":7333216,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30272","ServerKey":"pl181","X":348,"Y":572},{"Bonus":0,"Continent":"K43","ID":30273,"Name":"Kaj jo je, sam ino gorole sa","PlayerID":699711723,"Points":5394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30273","ServerKey":"pl181","X":330,"Y":466},{"Bonus":0,"Continent":"K34","ID":30274,"Name":"#0064 Saturennr","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30274","ServerKey":"pl181","X":472,"Y":353},{"Bonus":9,"Continent":"K64","ID":30275,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30275","ServerKey":"pl181","X":428,"Y":655},{"Bonus":0,"Continent":"K36","ID":30276,"Name":"Wyspa 008","PlayerID":699756210,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30276","ServerKey":"pl181","X":623,"Y":383},{"Bonus":0,"Continent":"K46","ID":30277,"Name":"Jehu_Kingdom_63","PlayerID":8785314,"Points":6426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30277","ServerKey":"pl181","X":659,"Y":431},{"Bonus":0,"Continent":"K66","ID":30280,"Name":"Ć»UBR .::.B.E.T.O.N /4","PlayerID":33900,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30280","ServerKey":"pl181","X":625,"Y":618},{"Bonus":0,"Continent":"K66","ID":30281,"Name":"029","PlayerID":699567608,"Points":9171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30281","ServerKey":"pl181","X":631,"Y":611},{"Bonus":0,"Continent":"K43","ID":30282,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30282","ServerKey":"pl181","X":327,"Y":493},{"Bonus":0,"Continent":"K43","ID":30283,"Name":"V004","PlayerID":849097737,"Points":6134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30283","ServerKey":"pl181","X":350,"Y":411},{"Bonus":0,"Continent":"K34","ID":30284,"Name":"0069","PlayerID":699431255,"Points":7158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30284","ServerKey":"pl181","X":417,"Y":349},{"Bonus":0,"Continent":"K65","ID":30285,"Name":"|C| Northgarde","PlayerID":698147372,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30285","ServerKey":"pl181","X":510,"Y":668},{"Bonus":0,"Continent":"K46","ID":30286,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30286","ServerKey":"pl181","X":672,"Y":468},{"Bonus":0,"Continent":"K64","ID":30287,"Name":"#045","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30287","ServerKey":"pl181","X":493,"Y":612},{"Bonus":0,"Continent":"K34","ID":30288,"Name":"Wioska ba13","PlayerID":6118079,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30288","ServerKey":"pl181","X":499,"Y":327},{"Bonus":0,"Continent":"K33","ID":30289,"Name":"Szlachcic","PlayerID":698160606,"Points":8815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30289","ServerKey":"pl181","X":390,"Y":366},{"Bonus":0,"Continent":"K64","ID":30291,"Name":"Mosul","PlayerID":849089459,"Points":5403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30291","ServerKey":"pl181","X":430,"Y":654},{"Bonus":0,"Continent":"K33","ID":30292,"Name":"*223*","PlayerID":699273451,"Points":6437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30292","ServerKey":"pl181","X":380,"Y":382},{"Bonus":5,"Continent":"K56","ID":30293,"Name":"O39 Katmandu","PlayerID":699272880,"Points":10546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30293","ServerKey":"pl181","X":664,"Y":545},{"Bonus":0,"Continent":"K64","ID":30294,"Name":"Wioska barbarzyƄska","PlayerID":699849210,"Points":2692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30294","ServerKey":"pl181","X":438,"Y":656},{"Bonus":0,"Continent":"K34","ID":30295,"Name":"_5_","PlayerID":9113064,"Points":3416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30295","ServerKey":"pl181","X":494,"Y":333},{"Bonus":0,"Continent":"K34","ID":30296,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30296","ServerKey":"pl181","X":485,"Y":328},{"Bonus":0,"Continent":"K53","ID":30297,"Name":"N005","PlayerID":272173,"Points":3766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30297","ServerKey":"pl181","X":342,"Y":569},{"Bonus":0,"Continent":"K33","ID":30298,"Name":"cc Wioska prince","PlayerID":3909522,"Points":3825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30298","ServerKey":"pl181","X":396,"Y":362},{"Bonus":0,"Continent":"K43","ID":30299,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30299","ServerKey":"pl181","X":361,"Y":405},{"Bonus":0,"Continent":"K66","ID":30300,"Name":"#111#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30300","ServerKey":"pl181","X":638,"Y":600},{"Bonus":0,"Continent":"K66","ID":30301,"Name":"0142","PlayerID":698416970,"Points":9300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30301","ServerKey":"pl181","X":631,"Y":610},{"Bonus":0,"Continent":"K34","ID":30302,"Name":"[B]_[005] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30302","ServerKey":"pl181","X":429,"Y":354},{"Bonus":0,"Continent":"K36","ID":30303,"Name":"010","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30303","ServerKey":"pl181","X":603,"Y":365},{"Bonus":0,"Continent":"K35","ID":30304,"Name":"81 .:5:.","PlayerID":2571407,"Points":4017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30304","ServerKey":"pl181","X":522,"Y":329},{"Bonus":0,"Continent":"K64","ID":30305,"Name":"030","PlayerID":698650301,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30305","ServerKey":"pl181","X":478,"Y":672},{"Bonus":4,"Continent":"K64","ID":30306,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30306","ServerKey":"pl181","X":462,"Y":669},{"Bonus":0,"Continent":"K33","ID":30307,"Name":"Szulernia","PlayerID":7249451,"Points":9625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30307","ServerKey":"pl181","X":378,"Y":379},{"Bonus":0,"Continent":"K33","ID":30308,"Name":"Szulernia","PlayerID":7249451,"Points":7820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30308","ServerKey":"pl181","X":379,"Y":379},{"Bonus":0,"Continent":"K56","ID":30309,"Name":"Grvvyq 107k$","PlayerID":699676005,"Points":3749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30309","ServerKey":"pl181","X":655,"Y":570},{"Bonus":0,"Continent":"K53","ID":30310,"Name":"Chekku - meito","PlayerID":9280477,"Points":9896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30310","ServerKey":"pl181","X":334,"Y":522},{"Bonus":0,"Continent":"K33","ID":30311,"Name":"Wioska 005","PlayerID":8419570,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30311","ServerKey":"pl181","X":383,"Y":388},{"Bonus":0,"Continent":"K53","ID":30312,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30312","ServerKey":"pl181","X":334,"Y":535},{"Bonus":0,"Continent":"K65","ID":30314,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30314","ServerKey":"pl181","X":575,"Y":656},{"Bonus":0,"Continent":"K34","ID":30315,"Name":"#0048 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30315","ServerKey":"pl181","X":469,"Y":329},{"Bonus":0,"Continent":"K56","ID":30316,"Name":"Szlachcic","PlayerID":699098531,"Points":8047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30316","ServerKey":"pl181","X":667,"Y":500},{"Bonus":0,"Continent":"K35","ID":30317,"Name":"Lord Lord Franek .#169","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30317","ServerKey":"pl181","X":509,"Y":325},{"Bonus":0,"Continent":"K56","ID":30318,"Name":"Wioska 059","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30318","ServerKey":"pl181","X":647,"Y":593},{"Bonus":0,"Continent":"K34","ID":30319,"Name":"#0145 Thorus5","PlayerID":1238300,"Points":6371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30319","ServerKey":"pl181","X":474,"Y":331},{"Bonus":0,"Continent":"K56","ID":30320,"Name":"102. PóƂwysep Akara","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30320","ServerKey":"pl181","X":642,"Y":598},{"Bonus":2,"Continent":"K34","ID":30321,"Name":"A-040","PlayerID":8419570,"Points":10332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30321","ServerKey":"pl181","X":401,"Y":365},{"Bonus":0,"Continent":"K53","ID":30322,"Name":"KoƄsko","PlayerID":849014147,"Points":9064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30322","ServerKey":"pl181","X":354,"Y":596},{"Bonus":0,"Continent":"K64","ID":30323,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":7845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30323","ServerKey":"pl181","X":413,"Y":647},{"Bonus":0,"Continent":"K53","ID":30325,"Name":"Wioska klez 004","PlayerID":698295651,"Points":8393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30325","ServerKey":"pl181","X":330,"Y":514},{"Bonus":0,"Continent":"K36","ID":30326,"Name":"Wyspa 017","PlayerID":699756210,"Points":7657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30326","ServerKey":"pl181","X":625,"Y":380},{"Bonus":0,"Continent":"K34","ID":30327,"Name":"046","PlayerID":2502956,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30327","ServerKey":"pl181","X":457,"Y":333},{"Bonus":0,"Continent":"K66","ID":30328,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30328","ServerKey":"pl181","X":639,"Y":601},{"Bonus":0,"Continent":"K66","ID":30329,"Name":"Ć»ubr .::. Metanol Lecter/3","PlayerID":33900,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30329","ServerKey":"pl181","X":607,"Y":632},{"Bonus":0,"Continent":"K43","ID":30330,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30330","ServerKey":"pl181","X":327,"Y":495},{"Bonus":0,"Continent":"K53","ID":30331,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30331","ServerKey":"pl181","X":332,"Y":518},{"Bonus":0,"Continent":"K65","ID":30332,"Name":"*Nobo","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30332","ServerKey":"pl181","X":578,"Y":647},{"Bonus":0,"Continent":"K53","ID":30333,"Name":"Chekku - meito","PlayerID":9280477,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30333","ServerKey":"pl181","X":331,"Y":527},{"Bonus":0,"Continent":"K53","ID":30334,"Name":"Dąbrowa 0004","PlayerID":849096972,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30334","ServerKey":"pl181","X":359,"Y":596},{"Bonus":0,"Continent":"K65","ID":30335,"Name":"0262","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30335","ServerKey":"pl181","X":555,"Y":658},{"Bonus":0,"Continent":"K65","ID":30336,"Name":"|027| Archangelos","PlayerID":699393742,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30336","ServerKey":"pl181","X":506,"Y":672},{"Bonus":0,"Continent":"K43","ID":30337,"Name":"A0279","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30337","ServerKey":"pl181","X":326,"Y":485},{"Bonus":0,"Continent":"K65","ID":30338,"Name":"ObrzeĆŒa 099","PlayerID":848915531,"Points":5660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30338","ServerKey":"pl181","X":553,"Y":663},{"Bonus":0,"Continent":"K66","ID":30339,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30339","ServerKey":"pl181","X":637,"Y":603},{"Bonus":0,"Continent":"K64","ID":30340,"Name":"KUZYNEIRO","PlayerID":848913998,"Points":9501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30340","ServerKey":"pl181","X":407,"Y":640},{"Bonus":4,"Continent":"K53","ID":30341,"Name":"Deff robi brrr","PlayerID":7333216,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30341","ServerKey":"pl181","X":346,"Y":573},{"Bonus":0,"Continent":"K35","ID":30342,"Name":"002","PlayerID":7340529,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30342","ServerKey":"pl181","X":592,"Y":357},{"Bonus":0,"Continent":"K34","ID":30343,"Name":"226...barba","PlayerID":6920960,"Points":5115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30343","ServerKey":"pl181","X":462,"Y":333},{"Bonus":5,"Continent":"K33","ID":30344,"Name":"Szulernia","PlayerID":7249451,"Points":9270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30344","ServerKey":"pl181","X":388,"Y":370},{"Bonus":0,"Continent":"K63","ID":30345,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30345","ServerKey":"pl181","X":386,"Y":632},{"Bonus":0,"Continent":"K34","ID":30346,"Name":"233...CENTR","PlayerID":6920960,"Points":4446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30346","ServerKey":"pl181","X":461,"Y":331},{"Bonus":0,"Continent":"K35","ID":30348,"Name":"Lord Lord Franek .#129","PlayerID":698420691,"Points":8360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30348","ServerKey":"pl181","X":517,"Y":329},{"Bonus":0,"Continent":"K64","ID":30349,"Name":"Ave Why!","PlayerID":698585370,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30349","ServerKey":"pl181","X":491,"Y":642},{"Bonus":0,"Continent":"K63","ID":30350,"Name":".:012:.","PlayerID":698908184,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30350","ServerKey":"pl181","X":371,"Y":616},{"Bonus":0,"Continent":"K33","ID":30351,"Name":"Szulernia","PlayerID":7249451,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30351","ServerKey":"pl181","X":389,"Y":370},{"Bonus":0,"Continent":"K66","ID":30352,"Name":"Ć»ubr .::. Metanol Lecter/4","PlayerID":33900,"Points":8069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30352","ServerKey":"pl181","X":609,"Y":631},{"Bonus":0,"Continent":"K64","ID":30353,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30353","ServerKey":"pl181","X":452,"Y":664},{"Bonus":0,"Continent":"K33","ID":30354,"Name":"Szulernia","PlayerID":7249451,"Points":9415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30354","ServerKey":"pl181","X":383,"Y":370},{"Bonus":0,"Continent":"K53","ID":30355,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30355","ServerKey":"pl181","X":341,"Y":545},{"Bonus":0,"Continent":"K43","ID":30356,"Name":"Wioska barbarzyƄska","PlayerID":849097716,"Points":3629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30356","ServerKey":"pl181","X":347,"Y":434},{"Bonus":2,"Continent":"K56","ID":30357,"Name":"O37 Bator","PlayerID":699272880,"Points":10963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30357","ServerKey":"pl181","X":664,"Y":539},{"Bonus":0,"Continent":"K43","ID":30358,"Name":"M181_006","PlayerID":393668,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30358","ServerKey":"pl181","X":344,"Y":426},{"Bonus":0,"Continent":"K46","ID":30359,"Name":"I030","PlayerID":699722599,"Points":10302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30359","ServerKey":"pl181","X":660,"Y":441},{"Bonus":0,"Continent":"K66","ID":30360,"Name":"031","PlayerID":849097799,"Points":7201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30360","ServerKey":"pl181","X":605,"Y":632},{"Bonus":0,"Continent":"K64","ID":30361,"Name":"S1Joker","PlayerID":698585370,"Points":10962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30361","ServerKey":"pl181","X":479,"Y":666},{"Bonus":0,"Continent":"K53","ID":30362,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30362","ServerKey":"pl181","X":334,"Y":549},{"Bonus":0,"Continent":"K63","ID":30363,"Name":"Normandiz en","PlayerID":849014147,"Points":3803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30363","ServerKey":"pl181","X":359,"Y":603},{"Bonus":0,"Continent":"K43","ID":30364,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30364","ServerKey":"pl181","X":335,"Y":456},{"Bonus":0,"Continent":"K56","ID":30365,"Name":"045","PlayerID":2135129,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30365","ServerKey":"pl181","X":668,"Y":500},{"Bonus":0,"Continent":"K46","ID":30366,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30366","ServerKey":"pl181","X":666,"Y":475},{"Bonus":0,"Continent":"K53","ID":30367,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30367","ServerKey":"pl181","X":339,"Y":545},{"Bonus":0,"Continent":"K35","ID":30368,"Name":"-012-","PlayerID":698588812,"Points":3774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30368","ServerKey":"pl181","X":540,"Y":331},{"Bonus":0,"Continent":"K64","ID":30369,"Name":"|012| Zaros","PlayerID":698152377,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30369","ServerKey":"pl181","X":498,"Y":675},{"Bonus":0,"Continent":"K66","ID":30370,"Name":"przeprawa","PlayerID":699567608,"Points":9200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30370","ServerKey":"pl181","X":601,"Y":641},{"Bonus":0,"Continent":"K34","ID":30371,"Name":"#0062 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30371","ServerKey":"pl181","X":467,"Y":337},{"Bonus":0,"Continent":"K36","ID":30372,"Name":"027.","PlayerID":699491076,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30372","ServerKey":"pl181","X":629,"Y":393},{"Bonus":0,"Continent":"K43","ID":30373,"Name":"Westfold.022","PlayerID":848918380,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30373","ServerKey":"pl181","X":345,"Y":424},{"Bonus":0,"Continent":"K46","ID":30374,"Name":"Jaaa","PlayerID":698635863,"Points":10435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30374","ServerKey":"pl181","X":673,"Y":493},{"Bonus":0,"Continent":"K64","ID":30375,"Name":"Ave Why!","PlayerID":699121671,"Points":9207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30375","ServerKey":"pl181","X":482,"Y":672},{"Bonus":0,"Continent":"K34","ID":30376,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":9374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30376","ServerKey":"pl181","X":451,"Y":335},{"Bonus":0,"Continent":"K43","ID":30377,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30377","ServerKey":"pl181","X":355,"Y":403},{"Bonus":7,"Continent":"K53","ID":30378,"Name":"Miasys 1","PlayerID":849090130,"Points":5461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30378","ServerKey":"pl181","X":350,"Y":574},{"Bonus":0,"Continent":"K53","ID":30379,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30379","ServerKey":"pl181","X":340,"Y":551},{"Bonus":0,"Continent":"K63","ID":30380,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30380","ServerKey":"pl181","X":394,"Y":633},{"Bonus":0,"Continent":"K34","ID":30381,"Name":"#0033 GL01N","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30381","ServerKey":"pl181","X":469,"Y":332},{"Bonus":7,"Continent":"K35","ID":30382,"Name":"Lord Lord Franek .#043","PlayerID":698420691,"Points":10498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30382","ServerKey":"pl181","X":517,"Y":331},{"Bonus":0,"Continent":"K43","ID":30383,"Name":"Cape Dun","PlayerID":849097716,"Points":11376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30383","ServerKey":"pl181","X":342,"Y":435},{"Bonus":0,"Continent":"K65","ID":30384,"Name":"Muchomor *020*","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30384","ServerKey":"pl181","X":515,"Y":672},{"Bonus":0,"Continent":"K36","ID":30385,"Name":"**19**","PlayerID":849098782,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30385","ServerKey":"pl181","X":630,"Y":390},{"Bonus":0,"Continent":"K63","ID":30386,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30386","ServerKey":"pl181","X":367,"Y":609},{"Bonus":0,"Continent":"K53","ID":30387,"Name":"Villaggio","PlayerID":8607734,"Points":7484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30387","ServerKey":"pl181","X":362,"Y":593},{"Bonus":0,"Continent":"K63","ID":30388,"Name":"Grupka 7 wiosek 7","PlayerID":698353083,"Points":10425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30388","ServerKey":"pl181","X":358,"Y":604},{"Bonus":0,"Continent":"K36","ID":30389,"Name":"cycedoziemi","PlayerID":698281649,"Points":8500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30389","ServerKey":"pl181","X":629,"Y":392},{"Bonus":0,"Continent":"K64","ID":30390,"Name":"[A]010","PlayerID":699736927,"Points":7734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30390","ServerKey":"pl181","X":422,"Y":650},{"Bonus":0,"Continent":"K53","ID":30391,"Name":"Miasys 2","PlayerID":849090130,"Points":4017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30391","ServerKey":"pl181","X":348,"Y":581},{"Bonus":0,"Continent":"K64","ID":30392,"Name":"Wioska barbarzyƄska","PlayerID":699849210,"Points":1852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30392","ServerKey":"pl181","X":439,"Y":660},{"Bonus":0,"Continent":"K43","ID":30393,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30393","ServerKey":"pl181","X":346,"Y":442},{"Bonus":0,"Continent":"K33","ID":30394,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":6392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30394","ServerKey":"pl181","X":371,"Y":388},{"Bonus":0,"Continent":"K36","ID":30395,"Name":"nowa","PlayerID":1990750,"Points":6742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30395","ServerKey":"pl181","X":600,"Y":361},{"Bonus":0,"Continent":"K63","ID":30396,"Name":"DejMon3","PlayerID":699805839,"Points":8989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30396","ServerKey":"pl181","X":371,"Y":619},{"Bonus":0,"Continent":"K66","ID":30397,"Name":"Gra o Tron","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30397","ServerKey":"pl181","X":620,"Y":627},{"Bonus":0,"Continent":"K46","ID":30398,"Name":"54. KaruTown","PlayerID":849060446,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30398","ServerKey":"pl181","X":656,"Y":427},{"Bonus":0,"Continent":"K43","ID":30400,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30400","ServerKey":"pl181","X":334,"Y":465},{"Bonus":0,"Continent":"K43","ID":30401,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30401","ServerKey":"pl181","X":334,"Y":469},{"Bonus":0,"Continent":"K34","ID":30404,"Name":"North FiFa 1","PlayerID":699796330,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30404","ServerKey":"pl181","X":436,"Y":342},{"Bonus":0,"Continent":"K35","ID":30405,"Name":"Wioska ba22","PlayerID":6118079,"Points":8136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30405","ServerKey":"pl181","X":500,"Y":331},{"Bonus":0,"Continent":"K63","ID":30406,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30406","ServerKey":"pl181","X":398,"Y":640},{"Bonus":0,"Continent":"K36","ID":30407,"Name":"Gamma","PlayerID":848924219,"Points":4126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30407","ServerKey":"pl181","X":624,"Y":382},{"Bonus":0,"Continent":"K64","ID":30408,"Name":"|013| Jerapetra","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30408","ServerKey":"pl181","X":492,"Y":669},{"Bonus":0,"Continent":"K66","ID":30409,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30409","ServerKey":"pl181","X":632,"Y":611},{"Bonus":0,"Continent":"K34","ID":30410,"Name":"011","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30410","ServerKey":"pl181","X":457,"Y":334},{"Bonus":7,"Continent":"K35","ID":30411,"Name":"-003-","PlayerID":698588812,"Points":8349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30411","ServerKey":"pl181","X":540,"Y":332},{"Bonus":0,"Continent":"K35","ID":30412,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":3114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30412","ServerKey":"pl181","X":505,"Y":331},{"Bonus":0,"Continent":"K56","ID":30413,"Name":"O24 Puebla","PlayerID":699272880,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30413","ServerKey":"pl181","X":669,"Y":534},{"Bonus":0,"Continent":"K36","ID":30414,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30414","ServerKey":"pl181","X":615,"Y":368},{"Bonus":0,"Continent":"K34","ID":30415,"Name":"094...bar","PlayerID":6920960,"Points":10352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30415","ServerKey":"pl181","X":442,"Y":335},{"Bonus":0,"Continent":"K34","ID":30416,"Name":"[B]_[009] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30416","ServerKey":"pl181","X":428,"Y":345},{"Bonus":8,"Continent":"K46","ID":30417,"Name":"005 Kocz","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30417","ServerKey":"pl181","X":670,"Y":469},{"Bonus":0,"Continent":"K53","ID":30418,"Name":"Chiado","PlayerID":699494480,"Points":7159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30418","ServerKey":"pl181","X":350,"Y":587},{"Bonus":0,"Continent":"K43","ID":30419,"Name":"*237*","PlayerID":699273451,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30419","ServerKey":"pl181","X":335,"Y":444},{"Bonus":0,"Continent":"K33","ID":30420,"Name":"Szlachcic","PlayerID":698160606,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30420","ServerKey":"pl181","X":393,"Y":364},{"Bonus":0,"Continent":"K35","ID":30421,"Name":"Lord Lord Franek .#130","PlayerID":698420691,"Points":7841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30421","ServerKey":"pl181","X":518,"Y":328},{"Bonus":0,"Continent":"K63","ID":30422,"Name":"022 To nie są tanie rzeczy","PlayerID":6354098,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30422","ServerKey":"pl181","X":386,"Y":626},{"Bonus":0,"Continent":"K65","ID":30423,"Name":"|C| Scorchhallow","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30423","ServerKey":"pl181","X":502,"Y":669},{"Bonus":0,"Continent":"K53","ID":30424,"Name":"RUCH","PlayerID":849097614,"Points":10079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30424","ServerKey":"pl181","X":333,"Y":505},{"Bonus":0,"Continent":"K43","ID":30425,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30425","ServerKey":"pl181","X":327,"Y":477},{"Bonus":0,"Continent":"K33","ID":30426,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":7260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30426","ServerKey":"pl181","X":378,"Y":383},{"Bonus":0,"Continent":"K33","ID":30427,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":2988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30427","ServerKey":"pl181","X":375,"Y":386},{"Bonus":0,"Continent":"K46","ID":30428,"Name":"Daruj sobie","PlayerID":1086351,"Points":3589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30428","ServerKey":"pl181","X":647,"Y":408},{"Bonus":0,"Continent":"K34","ID":30429,"Name":"#0173 Asmo17","PlayerID":1238300,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30429","ServerKey":"pl181","X":485,"Y":332},{"Bonus":0,"Continent":"K63","ID":30430,"Name":"008 Thriller","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30430","ServerKey":"pl181","X":387,"Y":624},{"Bonus":0,"Continent":"K56","ID":30431,"Name":"056","PlayerID":698999105,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30431","ServerKey":"pl181","X":668,"Y":513},{"Bonus":0,"Continent":"K35","ID":30433,"Name":"Wioska 2","PlayerID":698680806,"Points":7574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30433","ServerKey":"pl181","X":504,"Y":325},{"Bonus":0,"Continent":"K53","ID":30434,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":5707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30434","ServerKey":"pl181","X":390,"Y":515},{"Bonus":0,"Continent":"K43","ID":30435,"Name":"wieƛ 3","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30435","ServerKey":"pl181","X":345,"Y":428},{"Bonus":0,"Continent":"K34","ID":30436,"Name":"Wioska ba16","PlayerID":698239813,"Points":8061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30436","ServerKey":"pl181","X":495,"Y":325},{"Bonus":0,"Continent":"K35","ID":30437,"Name":"Lord Lord Franek .#170","PlayerID":698420691,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30437","ServerKey":"pl181","X":512,"Y":332},{"Bonus":0,"Continent":"K63","ID":30438,"Name":"A 004","PlayerID":699342219,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30438","ServerKey":"pl181","X":370,"Y":617},{"Bonus":0,"Continent":"K34","ID":30439,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30439","ServerKey":"pl181","X":432,"Y":336},{"Bonus":0,"Continent":"K43","ID":30440,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":3779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30440","ServerKey":"pl181","X":332,"Y":478},{"Bonus":0,"Continent":"K34","ID":30441,"Name":"North SuwaƂki","PlayerID":699796330,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30441","ServerKey":"pl181","X":433,"Y":336},{"Bonus":0,"Continent":"K65","ID":30443,"Name":"*004","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30443","ServerKey":"pl181","X":594,"Y":644},{"Bonus":0,"Continent":"K65","ID":30444,"Name":"*021","PlayerID":699567608,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30444","ServerKey":"pl181","X":597,"Y":637},{"Bonus":0,"Continent":"K34","ID":30445,"Name":"#0171 Asmo17","PlayerID":1238300,"Points":9548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30445","ServerKey":"pl181","X":486,"Y":328},{"Bonus":0,"Continent":"K53","ID":30446,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30446","ServerKey":"pl181","X":355,"Y":535},{"Bonus":0,"Continent":"K65","ID":30447,"Name":"#106 C","PlayerID":9037756,"Points":7994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30447","ServerKey":"pl181","X":529,"Y":669},{"Bonus":0,"Continent":"K56","ID":30448,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30448","ServerKey":"pl181","X":669,"Y":538},{"Bonus":4,"Continent":"K36","ID":30449,"Name":"Gattacka","PlayerID":699298370,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30449","ServerKey":"pl181","X":619,"Y":376},{"Bonus":0,"Continent":"K35","ID":30450,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30450","ServerKey":"pl181","X":588,"Y":352},{"Bonus":0,"Continent":"K64","ID":30451,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":8806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30451","ServerKey":"pl181","X":415,"Y":647},{"Bonus":0,"Continent":"K43","ID":30452,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30452","ServerKey":"pl181","X":334,"Y":471},{"Bonus":0,"Continent":"K53","ID":30453,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":2407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30453","ServerKey":"pl181","X":346,"Y":581},{"Bonus":0,"Continent":"K35","ID":30455,"Name":"Lord Lord Franek .#095","PlayerID":698420691,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30455","ServerKey":"pl181","X":510,"Y":326},{"Bonus":0,"Continent":"K35","ID":30456,"Name":"Taki Pan","PlayerID":698739350,"Points":6428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30456","ServerKey":"pl181","X":514,"Y":333},{"Bonus":0,"Continent":"K56","ID":30457,"Name":"O55 Orzammar","PlayerID":699272880,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30457","ServerKey":"pl181","X":673,"Y":530},{"Bonus":0,"Continent":"K64","ID":30458,"Name":"Mashhad","PlayerID":849089459,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30458","ServerKey":"pl181","X":431,"Y":659},{"Bonus":0,"Continent":"K43","ID":30459,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30459","ServerKey":"pl181","X":343,"Y":444},{"Bonus":0,"Continent":"K33","ID":30460,"Name":"Szulernia","PlayerID":7249451,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30460","ServerKey":"pl181","X":390,"Y":370},{"Bonus":0,"Continent":"K66","ID":30461,"Name":"024","PlayerID":699567608,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30461","ServerKey":"pl181","X":629,"Y":609},{"Bonus":0,"Continent":"K54","ID":30462,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30462","ServerKey":"pl181","X":489,"Y":505},{"Bonus":0,"Continent":"K53","ID":30463,"Name":"off 100 %","PlayerID":849012521,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30463","ServerKey":"pl181","X":343,"Y":575},{"Bonus":0,"Continent":"K43","ID":30464,"Name":"M181_046","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30464","ServerKey":"pl181","X":339,"Y":434},{"Bonus":0,"Continent":"K64","ID":30465,"Name":"052","PlayerID":849084985,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30465","ServerKey":"pl181","X":448,"Y":650},{"Bonus":0,"Continent":"K63","ID":30466,"Name":"001 Wioska MiaƂa Być Pusta","PlayerID":6354098,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30466","ServerKey":"pl181","X":381,"Y":627},{"Bonus":0,"Continent":"K65","ID":30467,"Name":"0590","PlayerID":698659980,"Points":8667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30467","ServerKey":"pl181","X":550,"Y":659},{"Bonus":0,"Continent":"K43","ID":30468,"Name":"A0285","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30468","ServerKey":"pl181","X":328,"Y":483},{"Bonus":0,"Continent":"K34","ID":30469,"Name":"[B][05] Ashbarys","PlayerID":699380621,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30469","ServerKey":"pl181","X":428,"Y":347},{"Bonus":9,"Continent":"K66","ID":30470,"Name":"~~092~~","PlayerID":699567608,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30470","ServerKey":"pl181","X":632,"Y":616},{"Bonus":0,"Continent":"K35","ID":30471,"Name":"Wrath 003","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30471","ServerKey":"pl181","X":572,"Y":343},{"Bonus":0,"Continent":"K66","ID":30472,"Name":"*009","PlayerID":699567608,"Points":8869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30472","ServerKey":"pl181","X":600,"Y":643},{"Bonus":0,"Continent":"K33","ID":30473,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":7564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30473","ServerKey":"pl181","X":361,"Y":399},{"Bonus":0,"Continent":"K66","ID":30474,"Name":"Monetkownia","PlayerID":699759128,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30474","ServerKey":"pl181","X":619,"Y":620},{"Bonus":0,"Continent":"K66","ID":30475,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30475","ServerKey":"pl181","X":622,"Y":624},{"Bonus":0,"Continent":"K63","ID":30476,"Name":"Grupka 7 wiosek 7+","PlayerID":698353083,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30476","ServerKey":"pl181","X":359,"Y":601},{"Bonus":0,"Continent":"K63","ID":30477,"Name":"013 Akoooord!","PlayerID":6354098,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30477","ServerKey":"pl181","X":377,"Y":624},{"Bonus":0,"Continent":"K35","ID":30478,"Name":"berkuza","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30478","ServerKey":"pl181","X":587,"Y":356},{"Bonus":0,"Continent":"K53","ID":30479,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30479","ServerKey":"pl181","X":342,"Y":573},{"Bonus":0,"Continent":"K34","ID":30480,"Name":"pusta","PlayerID":8847546,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30480","ServerKey":"pl181","X":494,"Y":331},{"Bonus":0,"Continent":"K64","ID":30481,"Name":"A23","PlayerID":698652014,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30481","ServerKey":"pl181","X":475,"Y":666},{"Bonus":3,"Continent":"K65","ID":30482,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30482","ServerKey":"pl181","X":524,"Y":672},{"Bonus":0,"Continent":"K65","ID":30483,"Name":"tego nie","PlayerID":699494488,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30483","ServerKey":"pl181","X":528,"Y":671},{"Bonus":0,"Continent":"K53","ID":30484,"Name":"Dajanka 32","PlayerID":849012843,"Points":1262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30484","ServerKey":"pl181","X":350,"Y":575},{"Bonus":0,"Continent":"K36","ID":30485,"Name":"Gattacka","PlayerID":699298370,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30485","ServerKey":"pl181","X":619,"Y":375},{"Bonus":0,"Continent":"K65","ID":30486,"Name":"Kreskowo_5","PlayerID":699567608,"Points":8174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30486","ServerKey":"pl181","X":591,"Y":649},{"Bonus":0,"Continent":"K66","ID":30487,"Name":"#011#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30487","ServerKey":"pl181","X":629,"Y":616},{"Bonus":0,"Continent":"K36","ID":30488,"Name":"**16**","PlayerID":849098782,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30488","ServerKey":"pl181","X":635,"Y":388},{"Bonus":0,"Continent":"K56","ID":30489,"Name":"043","PlayerID":699413040,"Points":8964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30489","ServerKey":"pl181","X":670,"Y":514},{"Bonus":0,"Continent":"K43","ID":30490,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30490","ServerKey":"pl181","X":335,"Y":468},{"Bonus":0,"Continent":"K56","ID":30491,"Name":"B 028","PlayerID":8078914,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30491","ServerKey":"pl181","X":670,"Y":531},{"Bonus":0,"Continent":"K53","ID":30492,"Name":"Chekku - meito","PlayerID":9280477,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30492","ServerKey":"pl181","X":332,"Y":527},{"Bonus":0,"Continent":"K53","ID":30493,"Name":"Graca","PlayerID":699494480,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30493","ServerKey":"pl181","X":349,"Y":587},{"Bonus":0,"Continent":"K34","ID":30495,"Name":"tarka","PlayerID":6118079,"Points":7364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30495","ServerKey":"pl181","X":497,"Y":325},{"Bonus":0,"Continent":"K65","ID":30496,"Name":"0525","PlayerID":698659980,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30496","ServerKey":"pl181","X":534,"Y":666},{"Bonus":0,"Continent":"K56","ID":30497,"Name":"O42 Georgia","PlayerID":699272880,"Points":8583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30497","ServerKey":"pl181","X":668,"Y":524},{"Bonus":0,"Continent":"K53","ID":30498,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30498","ServerKey":"pl181","X":342,"Y":556},{"Bonus":0,"Continent":"K35","ID":30499,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":4780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30499","ServerKey":"pl181","X":550,"Y":336},{"Bonus":0,"Continent":"K64","ID":30500,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30500","ServerKey":"pl181","X":425,"Y":645},{"Bonus":0,"Continent":"K63","ID":30501,"Name":"Dąbrowa 0007","PlayerID":849096972,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30501","ServerKey":"pl181","X":359,"Y":600},{"Bonus":0,"Continent":"K64","ID":30502,"Name":"A18","PlayerID":698652014,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30502","ServerKey":"pl181","X":467,"Y":668},{"Bonus":0,"Continent":"K53","ID":30503,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30503","ServerKey":"pl181","X":328,"Y":528},{"Bonus":0,"Continent":"K63","ID":30504,"Name":"Pobozowisko","PlayerID":699513260,"Points":7550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30504","ServerKey":"pl181","X":381,"Y":621},{"Bonus":0,"Continent":"K66","ID":30505,"Name":"030","PlayerID":849097799,"Points":7397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30505","ServerKey":"pl181","X":601,"Y":638},{"Bonus":0,"Continent":"K33","ID":30506,"Name":"Szulernia","PlayerID":7249451,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30506","ServerKey":"pl181","X":383,"Y":380},{"Bonus":0,"Continent":"K56","ID":30507,"Name":"64k$ Grvvyq","PlayerID":699676005,"Points":8886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30507","ServerKey":"pl181","X":659,"Y":569},{"Bonus":0,"Continent":"K46","ID":30508,"Name":"Kholinar","PlayerID":699574408,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30508","ServerKey":"pl181","X":667,"Y":470},{"Bonus":0,"Continent":"K43","ID":30510,"Name":"*247*","PlayerID":699273451,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30510","ServerKey":"pl181","X":333,"Y":452},{"Bonus":0,"Continent":"K43","ID":30511,"Name":"*241*","PlayerID":699273451,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30511","ServerKey":"pl181","X":336,"Y":443},{"Bonus":0,"Continent":"K33","ID":30512,"Name":"Szlachcic","PlayerID":3484132,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30512","ServerKey":"pl181","X":396,"Y":359},{"Bonus":0,"Continent":"K65","ID":30513,"Name":"0299","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30513","ServerKey":"pl181","X":539,"Y":663},{"Bonus":0,"Continent":"K65","ID":30514,"Name":"0433","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30514","ServerKey":"pl181","X":558,"Y":659},{"Bonus":0,"Continent":"K54","ID":30515,"Name":"Warzywniak 012","PlayerID":698290577,"Points":1319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30515","ServerKey":"pl181","X":447,"Y":545},{"Bonus":0,"Continent":"K43","ID":30516,"Name":"Dewej ta frela bo ci ciulna","PlayerID":699711723,"Points":4004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30516","ServerKey":"pl181","X":328,"Y":466},{"Bonus":0,"Continent":"K66","ID":30517,"Name":"015","PlayerID":849097799,"Points":8246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30517","ServerKey":"pl181","X":610,"Y":635},{"Bonus":0,"Continent":"K53","ID":30518,"Name":"N004","PlayerID":272173,"Points":3950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30518","ServerKey":"pl181","X":341,"Y":566},{"Bonus":0,"Continent":"K63","ID":30520,"Name":"006","PlayerID":699083129,"Points":9022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30520","ServerKey":"pl181","X":365,"Y":608},{"Bonus":0,"Continent":"K36","ID":30522,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30522","ServerKey":"pl181","X":611,"Y":365},{"Bonus":0,"Continent":"K43","ID":30523,"Name":"Westfold.011","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30523","ServerKey":"pl181","X":345,"Y":418},{"Bonus":0,"Continent":"K56","ID":30524,"Name":"xvc","PlayerID":699845400,"Points":5585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30524","ServerKey":"pl181","X":653,"Y":572},{"Bonus":0,"Continent":"K33","ID":30525,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":4524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30525","ServerKey":"pl181","X":369,"Y":391},{"Bonus":0,"Continent":"K65","ID":30526,"Name":"0166","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30526","ServerKey":"pl181","X":553,"Y":659},{"Bonus":0,"Continent":"K64","ID":30527,"Name":"A25 Night Raid-","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30527","ServerKey":"pl181","X":475,"Y":667},{"Bonus":0,"Continent":"K65","ID":30528,"Name":"01. Na ƚrĂłdce znow wypadek","PlayerID":849092769,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30528","ServerKey":"pl181","X":507,"Y":667},{"Bonus":0,"Continent":"K33","ID":30529,"Name":"Szlachcic","PlayerID":698160606,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30529","ServerKey":"pl181","X":392,"Y":364},{"Bonus":0,"Continent":"K64","ID":30530,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30530","ServerKey":"pl181","X":424,"Y":657},{"Bonus":0,"Continent":"K53","ID":30531,"Name":"deff 100%","PlayerID":849012521,"Points":5382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30531","ServerKey":"pl181","X":348,"Y":586},{"Bonus":0,"Continent":"K64","ID":30532,"Name":"D.008","PlayerID":849088243,"Points":8831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30532","ServerKey":"pl181","X":404,"Y":645},{"Bonus":0,"Continent":"K46","ID":30533,"Name":"Jaaa","PlayerID":698635863,"Points":9457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30533","ServerKey":"pl181","X":668,"Y":490},{"Bonus":0,"Continent":"K43","ID":30534,"Name":"Westfold.018","PlayerID":848918380,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30534","ServerKey":"pl181","X":347,"Y":422},{"Bonus":0,"Continent":"K63","ID":30535,"Name":".///...//././././././././","PlayerID":849097937,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30535","ServerKey":"pl181","X":377,"Y":616},{"Bonus":0,"Continent":"K56","ID":30536,"Name":"Roger","PlayerID":699737356,"Points":9531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30536","ServerKey":"pl181","X":674,"Y":501},{"Bonus":0,"Continent":"K43","ID":30537,"Name":"M181_037","PlayerID":393668,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30537","ServerKey":"pl181","X":346,"Y":426},{"Bonus":0,"Continent":"K43","ID":30538,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30538","ServerKey":"pl181","X":353,"Y":406},{"Bonus":0,"Continent":"K53","ID":30539,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30539","ServerKey":"pl181","X":326,"Y":500},{"Bonus":0,"Continent":"K53","ID":30540,"Name":"Dąbrowa 0013","PlayerID":849096972,"Points":8373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30540","ServerKey":"pl181","X":359,"Y":590},{"Bonus":7,"Continent":"K33","ID":30541,"Name":"Szulernia","PlayerID":7249451,"Points":8977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30541","ServerKey":"pl181","X":387,"Y":370},{"Bonus":0,"Continent":"K46","ID":30542,"Name":"BACÓWKA |011|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30542","ServerKey":"pl181","X":615,"Y":404},{"Bonus":0,"Continent":"K56","ID":30543,"Name":"041","PlayerID":699413040,"Points":11583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30543","ServerKey":"pl181","X":674,"Y":516},{"Bonus":0,"Continent":"K63","ID":30544,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30544","ServerKey":"pl181","X":382,"Y":618},{"Bonus":0,"Continent":"K34","ID":30545,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30545","ServerKey":"pl181","X":447,"Y":336},{"Bonus":0,"Continent":"K36","ID":30546,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30546","ServerKey":"pl181","X":633,"Y":392},{"Bonus":0,"Continent":"K66","ID":30547,"Name":"Laguna Niguel","PlayerID":848932879,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30547","ServerKey":"pl181","X":616,"Y":624},{"Bonus":0,"Continent":"K43","ID":30548,"Name":"1.012","PlayerID":3502565,"Points":9285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30548","ServerKey":"pl181","X":337,"Y":447},{"Bonus":0,"Continent":"K65","ID":30550,"Name":"012","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30550","ServerKey":"pl181","X":522,"Y":671},{"Bonus":0,"Continent":"K45","ID":30551,"Name":"042","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30551","ServerKey":"pl181","X":579,"Y":400},{"Bonus":0,"Continent":"K36","ID":30552,"Name":"Gattacka","PlayerID":699298370,"Points":9466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30552","ServerKey":"pl181","X":618,"Y":375},{"Bonus":0,"Continent":"K46","ID":30553,"Name":"80. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30553","ServerKey":"pl181","X":661,"Y":432},{"Bonus":0,"Continent":"K65","ID":30554,"Name":"#199 C","PlayerID":9037756,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30554","ServerKey":"pl181","X":530,"Y":671},{"Bonus":0,"Continent":"K65","ID":30555,"Name":"Wioska krĂłlowej","PlayerID":849096977,"Points":3842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30555","ServerKey":"pl181","X":512,"Y":667},{"Bonus":0,"Continent":"K56","ID":30557,"Name":"047","PlayerID":699413040,"Points":7677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30557","ServerKey":"pl181","X":671,"Y":512},{"Bonus":0,"Continent":"K54","ID":30558,"Name":"0peƂnalodĂłwka","PlayerID":699189792,"Points":4542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30558","ServerKey":"pl181","X":470,"Y":512},{"Bonus":0,"Continent":"K64","ID":30559,"Name":"S1Joker","PlayerID":698585370,"Points":11297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30559","ServerKey":"pl181","X":480,"Y":667},{"Bonus":0,"Continent":"K64","ID":30560,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30560","ServerKey":"pl181","X":465,"Y":666},{"Bonus":0,"Continent":"K53","ID":30561,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30561","ServerKey":"pl181","X":338,"Y":551},{"Bonus":0,"Continent":"K64","ID":30563,"Name":"Sk_009","PlayerID":8954402,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30563","ServerKey":"pl181","X":442,"Y":660},{"Bonus":3,"Continent":"K33","ID":30564,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30564","ServerKey":"pl181","X":366,"Y":387},{"Bonus":0,"Continent":"K63","ID":30565,"Name":".:013:.","PlayerID":7417116,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30565","ServerKey":"pl181","X":363,"Y":606},{"Bonus":0,"Continent":"K66","ID":30566,"Name":"029","PlayerID":849097799,"Points":7509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30566","ServerKey":"pl181","X":603,"Y":639},{"Bonus":9,"Continent":"K63","ID":30567,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30567","ServerKey":"pl181","X":387,"Y":632},{"Bonus":0,"Continent":"K64","ID":30568,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":5540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30568","ServerKey":"pl181","X":457,"Y":669},{"Bonus":0,"Continent":"K35","ID":30569,"Name":"-001- Hę?","PlayerID":698588812,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30569","ServerKey":"pl181","X":541,"Y":332},{"Bonus":0,"Continent":"K64","ID":30570,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30570","ServerKey":"pl181","X":421,"Y":652},{"Bonus":3,"Continent":"K56","ID":30571,"Name":"Wioska 118","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30571","ServerKey":"pl181","X":674,"Y":523},{"Bonus":0,"Continent":"K65","ID":30572,"Name":"0572","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30572","ServerKey":"pl181","X":567,"Y":659},{"Bonus":0,"Continent":"K64","ID":30573,"Name":"DĆŒokej77","PlayerID":8954402,"Points":8055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30573","ServerKey":"pl181","X":444,"Y":660},{"Bonus":0,"Continent":"K56","ID":30574,"Name":"O50 Apatin","PlayerID":699272880,"Points":8875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30574","ServerKey":"pl181","X":663,"Y":540},{"Bonus":0,"Continent":"K43","ID":30575,"Name":"1.07","PlayerID":3502565,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30575","ServerKey":"pl181","X":337,"Y":453},{"Bonus":0,"Continent":"K53","ID":30576,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30576","ServerKey":"pl181","X":331,"Y":534},{"Bonus":0,"Continent":"K53","ID":30577,"Name":"Wioska klez 011","PlayerID":698295651,"Points":6626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30577","ServerKey":"pl181","X":326,"Y":520},{"Bonus":0,"Continent":"K34","ID":30578,"Name":"#0184 MiBM","PlayerID":1238300,"Points":6518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30578","ServerKey":"pl181","X":489,"Y":329},{"Bonus":0,"Continent":"K34","ID":30579,"Name":"0027","PlayerID":699431255,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30579","ServerKey":"pl181","X":415,"Y":354},{"Bonus":8,"Continent":"K65","ID":30580,"Name":"poludnie1","PlayerID":699567608,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30580","ServerKey":"pl181","X":598,"Y":644},{"Bonus":0,"Continent":"K34","ID":30581,"Name":"[B]_[006] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30581","ServerKey":"pl181","X":413,"Y":351},{"Bonus":0,"Continent":"K53","ID":30582,"Name":"NoeyPL 3","PlayerID":849000135,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30582","ServerKey":"pl181","X":334,"Y":557},{"Bonus":0,"Continent":"K65","ID":30583,"Name":"0539","PlayerID":698659980,"Points":7412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30583","ServerKey":"pl181","X":565,"Y":655},{"Bonus":0,"Continent":"K53","ID":30584,"Name":"Mniejsze zƂo 0086","PlayerID":699794765,"Points":4212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30584","ServerKey":"pl181","X":335,"Y":539},{"Bonus":0,"Continent":"K56","ID":30585,"Name":"Tokio","PlayerID":849070946,"Points":3511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30585","ServerKey":"pl181","X":655,"Y":566},{"Bonus":0,"Continent":"K53","ID":30586,"Name":"056 komornicy","PlayerID":699510259,"Points":7266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30586","ServerKey":"pl181","X":332,"Y":544},{"Bonus":0,"Continent":"K46","ID":30587,"Name":"A005 Legionas Racuchy","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30587","ServerKey":"pl181","X":667,"Y":454},{"Bonus":0,"Continent":"K66","ID":30588,"Name":"*058","PlayerID":699567608,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30588","ServerKey":"pl181","X":604,"Y":642},{"Bonus":4,"Continent":"K35","ID":30589,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30589","ServerKey":"pl181","X":594,"Y":352},{"Bonus":0,"Continent":"K53","ID":30590,"Name":"C0135","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30590","ServerKey":"pl181","X":331,"Y":520},{"Bonus":0,"Continent":"K36","ID":30591,"Name":"Szczęƛliwego Nowego Roku","PlayerID":699088769,"Points":6322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30591","ServerKey":"pl181","X":626,"Y":380},{"Bonus":0,"Continent":"K56","ID":30592,"Name":"045","PlayerID":849095227,"Points":9281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30592","ServerKey":"pl181","X":665,"Y":548},{"Bonus":0,"Continent":"K65","ID":30593,"Name":"% 6 % SOPLICA","PlayerID":699567608,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30593","ServerKey":"pl181","X":586,"Y":656},{"Bonus":0,"Continent":"K35","ID":30594,"Name":"ADEN","PlayerID":698588535,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30594","ServerKey":"pl181","X":572,"Y":348},{"Bonus":0,"Continent":"K65","ID":30595,"Name":"0291","PlayerID":698659980,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30595","ServerKey":"pl181","X":565,"Y":660},{"Bonus":0,"Continent":"K65","ID":30596,"Name":"scofield","PlayerID":699494488,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30596","ServerKey":"pl181","X":524,"Y":669},{"Bonus":0,"Continent":"K36","ID":30598,"Name":"greeece3","PlayerID":698290319,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30598","ServerKey":"pl181","X":636,"Y":397},{"Bonus":0,"Continent":"K43","ID":30599,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30599","ServerKey":"pl181","X":356,"Y":404},{"Bonus":0,"Continent":"K63","ID":30601,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30601","ServerKey":"pl181","X":364,"Y":610},{"Bonus":0,"Continent":"K36","ID":30602,"Name":"107","PlayerID":7085502,"Points":7328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30602","ServerKey":"pl181","X":620,"Y":373},{"Bonus":0,"Continent":"K65","ID":30603,"Name":"#102 C","PlayerID":9037756,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30603","ServerKey":"pl181","X":530,"Y":668},{"Bonus":0,"Continent":"K64","ID":30604,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":5038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30604","ServerKey":"pl181","X":456,"Y":667},{"Bonus":0,"Continent":"K43","ID":30605,"Name":"Shinso","PlayerID":699800377,"Points":2362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30605","ServerKey":"pl181","X":342,"Y":440},{"Bonus":0,"Continent":"K46","ID":30606,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30606","ServerKey":"pl181","X":672,"Y":484},{"Bonus":0,"Continent":"K35","ID":30607,"Name":"Lord Lord Franek .#098","PlayerID":698420691,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30607","ServerKey":"pl181","X":509,"Y":326},{"Bonus":0,"Continent":"K64","ID":30608,"Name":"D.018","PlayerID":849088243,"Points":4753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30608","ServerKey":"pl181","X":404,"Y":647},{"Bonus":0,"Continent":"K36","ID":30609,"Name":"Taran 017","PlayerID":699098531,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30609","ServerKey":"pl181","X":608,"Y":366},{"Bonus":0,"Continent":"K66","ID":30610,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30610","ServerKey":"pl181","X":620,"Y":625},{"Bonus":0,"Continent":"K43","ID":30611,"Name":"*236*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30611","ServerKey":"pl181","X":336,"Y":444},{"Bonus":0,"Continent":"K65","ID":30612,"Name":"061","PlayerID":2293376,"Points":9129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30612","ServerKey":"pl181","X":525,"Y":670},{"Bonus":0,"Continent":"K43","ID":30613,"Name":"Zrąb #6","PlayerID":393668,"Points":4054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30613","ServerKey":"pl181","X":349,"Y":424},{"Bonus":0,"Continent":"K64","ID":30614,"Name":"|018| Aija Rumeli","PlayerID":699393742,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30614","ServerKey":"pl181","X":496,"Y":671},{"Bonus":5,"Continent":"K46","ID":30615,"Name":"021 echo","PlayerID":9238175,"Points":10446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30615","ServerKey":"pl181","X":655,"Y":430},{"Bonus":0,"Continent":"K64","ID":30616,"Name":"psycha sitting","PlayerID":699736927,"Points":5736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30616","ServerKey":"pl181","X":427,"Y":658},{"Bonus":0,"Continent":"K53","ID":30617,"Name":"off 100 %","PlayerID":849012521,"Points":7933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30617","ServerKey":"pl181","X":343,"Y":576},{"Bonus":0,"Continent":"K63","ID":30618,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30618","ServerKey":"pl181","X":385,"Y":627},{"Bonus":0,"Continent":"K34","ID":30619,"Name":"fff","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30619","ServerKey":"pl181","X":485,"Y":324},{"Bonus":0,"Continent":"K63","ID":30620,"Name":"018 Waldemar Etykietyyyy!","PlayerID":6354098,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30620","ServerKey":"pl181","X":376,"Y":624},{"Bonus":0,"Continent":"K65","ID":30621,"Name":"|C| Grassfrost.","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30621","ServerKey":"pl181","X":504,"Y":672},{"Bonus":0,"Continent":"K65","ID":30622,"Name":"|C| Oldfort","PlayerID":698147372,"Points":5207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30622","ServerKey":"pl181","X":501,"Y":672},{"Bonus":0,"Continent":"K56","ID":30623,"Name":"E001","PlayerID":8428196,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30623","ServerKey":"pl181","X":659,"Y":558},{"Bonus":0,"Continent":"K46","ID":30624,"Name":"036 ... i zamiƂowanie","PlayerID":699272633,"Points":5758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30624","ServerKey":"pl181","X":661,"Y":450},{"Bonus":0,"Continent":"K63","ID":30625,"Name":"011","PlayerID":699083129,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30625","ServerKey":"pl181","X":363,"Y":604},{"Bonus":0,"Continent":"K43","ID":30626,"Name":"Ciapek 97","PlayerID":1746216,"Points":6004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30626","ServerKey":"pl181","X":344,"Y":436},{"Bonus":0,"Continent":"K34","ID":30627,"Name":"#0181 MiBM","PlayerID":1238300,"Points":6698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30627","ServerKey":"pl181","X":490,"Y":330},{"Bonus":0,"Continent":"K36","ID":30628,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30628","ServerKey":"pl181","X":610,"Y":371},{"Bonus":0,"Continent":"K63","ID":30629,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30629","ServerKey":"pl181","X":390,"Y":635},{"Bonus":0,"Continent":"K64","ID":30630,"Name":"0014","PlayerID":849097175,"Points":1924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30630","ServerKey":"pl181","X":435,"Y":655},{"Bonus":0,"Continent":"K53","ID":30631,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30631","ServerKey":"pl181","X":337,"Y":565},{"Bonus":0,"Continent":"K46","ID":30633,"Name":"Amsterdam","PlayerID":699737356,"Points":8774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30633","ServerKey":"pl181","X":667,"Y":499},{"Bonus":0,"Continent":"K56","ID":30634,"Name":"88k$ Grvvyq","PlayerID":699676005,"Points":7465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30634","ServerKey":"pl181","X":655,"Y":578},{"Bonus":0,"Continent":"K53","ID":30635,"Name":"Dąbrowa 0010","PlayerID":849096972,"Points":9504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30635","ServerKey":"pl181","X":358,"Y":596},{"Bonus":0,"Continent":"K64","ID":30636,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":6508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30636","ServerKey":"pl181","X":460,"Y":664},{"Bonus":0,"Continent":"K66","ID":30637,"Name":"Wioska 107","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30637","ServerKey":"pl181","X":639,"Y":603},{"Bonus":0,"Continent":"K65","ID":30638,"Name":"Wioska RATRYK","PlayerID":699567608,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30638","ServerKey":"pl181","X":595,"Y":647},{"Bonus":0,"Continent":"K56","ID":30639,"Name":"D07","PlayerID":848995478,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30639","ServerKey":"pl181","X":667,"Y":550},{"Bonus":0,"Continent":"K53","ID":30640,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30640","ServerKey":"pl181","X":329,"Y":527},{"Bonus":0,"Continent":"K34","ID":30641,"Name":"Szulernia","PlayerID":7249451,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30641","ServerKey":"pl181","X":400,"Y":358},{"Bonus":0,"Continent":"K65","ID":30642,"Name":"0253","PlayerID":698659980,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30642","ServerKey":"pl181","X":553,"Y":666},{"Bonus":9,"Continent":"K46","ID":30643,"Name":"I001","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30643","ServerKey":"pl181","X":666,"Y":449},{"Bonus":0,"Continent":"K64","ID":30644,"Name":"034","PlayerID":699878511,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30644","ServerKey":"pl181","X":494,"Y":617},{"Bonus":0,"Continent":"K56","ID":30645,"Name":"Wioska 057","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30645","ServerKey":"pl181","X":648,"Y":591},{"Bonus":0,"Continent":"K46","ID":30646,"Name":"052 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30646","ServerKey":"pl181","X":617,"Y":439},{"Bonus":0,"Continent":"K53","ID":30647,"Name":"Plotka","PlayerID":699265922,"Points":8545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30647","ServerKey":"pl181","X":330,"Y":543},{"Bonus":0,"Continent":"K35","ID":30648,"Name":"Lord Lord Franek .#131","PlayerID":698420691,"Points":7579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30648","ServerKey":"pl181","X":512,"Y":326},{"Bonus":0,"Continent":"K64","ID":30649,"Name":"Sk_010","PlayerID":8954402,"Points":4265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30649","ServerKey":"pl181","X":440,"Y":659},{"Bonus":0,"Continent":"K34","ID":30650,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30650","ServerKey":"pl181","X":442,"Y":337},{"Bonus":0,"Continent":"K65","ID":30651,"Name":"008","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30651","ServerKey":"pl181","X":535,"Y":672},{"Bonus":0,"Continent":"K56","ID":30652,"Name":"B 005","PlayerID":8078914,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30652","ServerKey":"pl181","X":670,"Y":538},{"Bonus":0,"Continent":"K53","ID":30653,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30653","ServerKey":"pl181","X":326,"Y":503},{"Bonus":0,"Continent":"K43","ID":30654,"Name":"*201*","PlayerID":699273451,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30654","ServerKey":"pl181","X":353,"Y":409},{"Bonus":0,"Continent":"K34","ID":30655,"Name":"0020","PlayerID":699431255,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30655","ServerKey":"pl181","X":412,"Y":357},{"Bonus":0,"Continent":"K43","ID":30656,"Name":"WARSZAWA","PlayerID":849097681,"Points":5029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30656","ServerKey":"pl181","X":348,"Y":423},{"Bonus":0,"Continent":"K65","ID":30657,"Name":"Robi wraĆŒenie...","PlayerID":848995242,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30657","ServerKey":"pl181","X":584,"Y":654},{"Bonus":0,"Continent":"K33","ID":30658,"Name":"North Barba 056","PlayerID":699796330,"Points":2904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30658","ServerKey":"pl181","X":395,"Y":363},{"Bonus":0,"Continent":"K63","ID":30659,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30659","ServerKey":"pl181","X":393,"Y":637},{"Bonus":0,"Continent":"K34","ID":30660,"Name":"K34 x015","PlayerID":698364331,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30660","ServerKey":"pl181","X":407,"Y":356},{"Bonus":0,"Continent":"K64","ID":30661,"Name":"033. Night Raid-","PlayerID":699684062,"Points":10909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30661","ServerKey":"pl181","X":476,"Y":672},{"Bonus":0,"Continent":"K46","ID":30662,"Name":"060 Wioska 006","PlayerID":9238175,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30662","ServerKey":"pl181","X":659,"Y":430},{"Bonus":0,"Continent":"K66","ID":30663,"Name":"0077","PlayerID":698416970,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30663","ServerKey":"pl181","X":639,"Y":600},{"Bonus":3,"Continent":"K34","ID":30664,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30664","ServerKey":"pl181","X":490,"Y":325},{"Bonus":0,"Continent":"K34","ID":30665,"Name":"K34 x029","PlayerID":698364331,"Points":4683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30665","ServerKey":"pl181","X":401,"Y":356},{"Bonus":0,"Continent":"K36","ID":30666,"Name":"Gattacka","PlayerID":699298370,"Points":9422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30666","ServerKey":"pl181","X":621,"Y":375},{"Bonus":0,"Continent":"K34","ID":30667,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":6386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30667","ServerKey":"pl181","X":450,"Y":332},{"Bonus":1,"Continent":"K56","ID":30668,"Name":"O36 Irkuck","PlayerID":699272880,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30668","ServerKey":"pl181","X":672,"Y":531},{"Bonus":0,"Continent":"K36","ID":30669,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30669","ServerKey":"pl181","X":631,"Y":394},{"Bonus":0,"Continent":"K53","ID":30670,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30670","ServerKey":"pl181","X":337,"Y":538},{"Bonus":0,"Continent":"K46","ID":30671,"Name":"T.M","PlayerID":1086351,"Points":7230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30671","ServerKey":"pl181","X":651,"Y":406},{"Bonus":0,"Continent":"K63","ID":30672,"Name":".:007:.","PlayerID":7417116,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30672","ServerKey":"pl181","X":373,"Y":612},{"Bonus":0,"Continent":"K33","ID":30673,"Name":"*127*","PlayerID":699273451,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30673","ServerKey":"pl181","X":363,"Y":391},{"Bonus":0,"Continent":"K43","ID":30674,"Name":"Wioska","PlayerID":848946608,"Points":6644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30674","ServerKey":"pl181","X":329,"Y":457},{"Bonus":0,"Continent":"K46","ID":30675,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30675","ServerKey":"pl181","X":668,"Y":478},{"Bonus":0,"Continent":"K33","ID":30676,"Name":"*218*","PlayerID":699273451,"Points":6658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30676","ServerKey":"pl181","X":379,"Y":380},{"Bonus":0,"Continent":"K35","ID":30677,"Name":"Wioska","PlayerID":951823,"Points":8723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30677","ServerKey":"pl181","X":500,"Y":324},{"Bonus":0,"Continent":"K53","ID":30678,"Name":"Wioska barbarzyƄska","PlayerID":849046232,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30678","ServerKey":"pl181","X":345,"Y":584},{"Bonus":0,"Continent":"K43","ID":30679,"Name":"Monrera","PlayerID":849097716,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30679","ServerKey":"pl181","X":342,"Y":438},{"Bonus":0,"Continent":"K43","ID":30681,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":2056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30681","ServerKey":"pl181","X":343,"Y":430},{"Bonus":0,"Continent":"K66","ID":30683,"Name":"Ć»UBRAWKA A003 NeXi","PlayerID":33900,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30683","ServerKey":"pl181","X":607,"Y":610},{"Bonus":0,"Continent":"K46","ID":30684,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30684","ServerKey":"pl181","X":672,"Y":473},{"Bonus":0,"Continent":"K35","ID":30685,"Name":"Mars","PlayerID":699797805,"Points":3775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30685","ServerKey":"pl181","X":552,"Y":338},{"Bonus":0,"Continent":"K36","ID":30686,"Name":"018 Schwere Panzer-Abteilung 501","PlayerID":849091899,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30686","ServerKey":"pl181","X":601,"Y":361},{"Bonus":0,"Continent":"K53","ID":30687,"Name":"deff 100 %","PlayerID":849012521,"Points":5321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30687","ServerKey":"pl181","X":347,"Y":574},{"Bonus":0,"Continent":"K65","ID":30688,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30688","ServerKey":"pl181","X":556,"Y":663},{"Bonus":6,"Continent":"K66","ID":30689,"Name":"0032 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30689","ServerKey":"pl181","X":630,"Y":610},{"Bonus":0,"Continent":"K53","ID":30690,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30690","ServerKey":"pl181","X":335,"Y":552},{"Bonus":0,"Continent":"K43","ID":30691,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":6321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30691","ServerKey":"pl181","X":359,"Y":404},{"Bonus":0,"Continent":"K46","ID":30692,"Name":"[019] Skoda KaƂszkaj","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30692","ServerKey":"pl181","X":664,"Y":438},{"Bonus":0,"Continent":"K34","ID":30693,"Name":"#0196 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30693","ServerKey":"pl181","X":460,"Y":329},{"Bonus":0,"Continent":"K64","ID":30694,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30694","ServerKey":"pl181","X":462,"Y":667},{"Bonus":0,"Continent":"K35","ID":30695,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30695","ServerKey":"pl181","X":558,"Y":338},{"Bonus":4,"Continent":"K64","ID":30696,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30696","ServerKey":"pl181","X":415,"Y":650},{"Bonus":0,"Continent":"K63","ID":30697,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30697","ServerKey":"pl181","X":396,"Y":638},{"Bonus":0,"Continent":"K46","ID":30698,"Name":"I040","PlayerID":699722599,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30698","ServerKey":"pl181","X":665,"Y":455},{"Bonus":0,"Continent":"K65","ID":30699,"Name":"Wioska Szwonik","PlayerID":848995242,"Points":1716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30699","ServerKey":"pl181","X":586,"Y":649},{"Bonus":0,"Continent":"K53","ID":30700,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30700","ServerKey":"pl181","X":333,"Y":554},{"Bonus":2,"Continent":"K34","ID":30701,"Name":"061...SKRZYP POƁUDNIE","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30701","ServerKey":"pl181","X":439,"Y":343},{"Bonus":0,"Continent":"K65","ID":30702,"Name":"#0019","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30702","ServerKey":"pl181","X":545,"Y":627},{"Bonus":0,"Continent":"K65","ID":30703,"Name":"0249","PlayerID":698659980,"Points":8430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30703","ServerKey":"pl181","X":551,"Y":666},{"Bonus":0,"Continent":"K66","ID":30704,"Name":"Stanly","PlayerID":699567608,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30704","ServerKey":"pl181","X":606,"Y":638},{"Bonus":0,"Continent":"K53","ID":30705,"Name":"Cais do Sodre","PlayerID":699494480,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30705","ServerKey":"pl181","X":351,"Y":588},{"Bonus":0,"Continent":"K64","ID":30706,"Name":"[08]","PlayerID":699698079,"Points":6093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30706","ServerKey":"pl181","X":428,"Y":660},{"Bonus":0,"Continent":"K66","ID":30707,"Name":"0032","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30707","ServerKey":"pl181","X":604,"Y":629},{"Bonus":0,"Continent":"K46","ID":30708,"Name":"045 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30708","ServerKey":"pl181","X":656,"Y":419},{"Bonus":0,"Continent":"K63","ID":30710,"Name":"012 Jaaaadu Jaduuuu","PlayerID":6354098,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30710","ServerKey":"pl181","X":377,"Y":626},{"Bonus":0,"Continent":"K65","ID":30711,"Name":"% 8 %","PlayerID":699567608,"Points":9032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30711","ServerKey":"pl181","X":590,"Y":650},{"Bonus":0,"Continent":"K56","ID":30712,"Name":"43k$ Grvvyq","PlayerID":699676005,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30712","ServerKey":"pl181","X":650,"Y":578},{"Bonus":0,"Continent":"K46","ID":30713,"Name":"POMIDOR","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30713","ServerKey":"pl181","X":663,"Y":472},{"Bonus":0,"Continent":"K33","ID":30714,"Name":"Szulernia","PlayerID":7249451,"Points":5333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30714","ServerKey":"pl181","X":381,"Y":372},{"Bonus":0,"Continent":"K46","ID":30715,"Name":"Piwna 22","PlayerID":699812007,"Points":5635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30715","ServerKey":"pl181","X":649,"Y":416},{"Bonus":0,"Continent":"K35","ID":30716,"Name":"wieƛ3","PlayerID":7340529,"Points":8417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30716","ServerKey":"pl181","X":591,"Y":352},{"Bonus":0,"Continent":"K65","ID":30717,"Name":"Muchomor *015*","PlayerID":606407,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30717","ServerKey":"pl181","X":515,"Y":673},{"Bonus":0,"Continent":"K65","ID":30718,"Name":"Wioska r 12","PlayerID":848915531,"Points":6909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30718","ServerKey":"pl181","X":553,"Y":668},{"Bonus":0,"Continent":"K63","ID":30719,"Name":"Pobozowisko","PlayerID":699513260,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30719","ServerKey":"pl181","X":377,"Y":614},{"Bonus":0,"Continent":"K66","ID":30721,"Name":"018","PlayerID":849097799,"Points":8066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30721","ServerKey":"pl181","X":605,"Y":635},{"Bonus":0,"Continent":"K46","ID":30722,"Name":"34. KaruTown","PlayerID":6822957,"Points":7295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30722","ServerKey":"pl181","X":642,"Y":410},{"Bonus":0,"Continent":"K65","ID":30723,"Name":"% 7 %","PlayerID":699567608,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30723","ServerKey":"pl181","X":579,"Y":656},{"Bonus":0,"Continent":"K64","ID":30724,"Name":"005. Barry","PlayerID":848999671,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30724","ServerKey":"pl181","X":480,"Y":669},{"Bonus":0,"Continent":"K65","ID":30725,"Name":"|C| Knightwater","PlayerID":698147372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30725","ServerKey":"pl181","X":502,"Y":671},{"Bonus":0,"Continent":"K63","ID":30726,"Name":"J005.","PlayerID":849090130,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30726","ServerKey":"pl181","X":365,"Y":602},{"Bonus":0,"Continent":"K33","ID":30727,"Name":"Szulernia","PlayerID":7249451,"Points":9280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30727","ServerKey":"pl181","X":387,"Y":368},{"Bonus":0,"Continent":"K46","ID":30728,"Name":"051 Wioska","PlayerID":9238175,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30728","ServerKey":"pl181","X":660,"Y":429},{"Bonus":0,"Continent":"K36","ID":30729,"Name":"028 * Lady Porto *","PlayerID":699406750,"Points":6040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30729","ServerKey":"pl181","X":643,"Y":398},{"Bonus":0,"Continent":"K65","ID":30730,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30730","ServerKey":"pl181","X":505,"Y":673},{"Bonus":0,"Continent":"K56","ID":30731,"Name":"D01","PlayerID":848995478,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30731","ServerKey":"pl181","X":666,"Y":555},{"Bonus":4,"Continent":"K64","ID":30732,"Name":"Z|012| Mordor","PlayerID":699393742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30732","ServerKey":"pl181","X":469,"Y":671},{"Bonus":0,"Continent":"K36","ID":30733,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30733","ServerKey":"pl181","X":615,"Y":369},{"Bonus":0,"Continent":"K43","ID":30734,"Name":"1.06","PlayerID":3502565,"Points":6588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30734","ServerKey":"pl181","X":337,"Y":448},{"Bonus":5,"Continent":"K56","ID":30735,"Name":"16k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30735","ServerKey":"pl181","X":654,"Y":579},{"Bonus":0,"Continent":"K55","ID":30737,"Name":"Qmple","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30737","ServerKey":"pl181","X":566,"Y":566},{"Bonus":2,"Continent":"K34","ID":30738,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30738","ServerKey":"pl181","X":488,"Y":333},{"Bonus":0,"Continent":"K65","ID":30739,"Name":"*053","PlayerID":699567608,"Points":9770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30739","ServerKey":"pl181","X":571,"Y":658},{"Bonus":0,"Continent":"K53","ID":30740,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":5728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30740","ServerKey":"pl181","X":335,"Y":559},{"Bonus":0,"Continent":"K35","ID":30741,"Name":"Pretoria 2","PlayerID":699072129,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30741","ServerKey":"pl181","X":555,"Y":333},{"Bonus":0,"Continent":"K64","ID":30742,"Name":"04. Stadion Miejski","PlayerID":849092769,"Points":7785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30742","ServerKey":"pl181","X":495,"Y":669},{"Bonus":0,"Continent":"K56","ID":30744,"Name":"Sekou","PlayerID":699737356,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30744","ServerKey":"pl181","X":672,"Y":508},{"Bonus":3,"Continent":"K46","ID":30745,"Name":"028 Ć»elazko","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30745","ServerKey":"pl181","X":674,"Y":499},{"Bonus":0,"Continent":"K33","ID":30746,"Name":"Szulernia","PlayerID":7249451,"Points":9054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30746","ServerKey":"pl181","X":391,"Y":368},{"Bonus":0,"Continent":"K53","ID":30747,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30747","ServerKey":"pl181","X":330,"Y":518},{"Bonus":2,"Continent":"K63","ID":30748,"Name":"006 nazwa","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30748","ServerKey":"pl181","X":362,"Y":602},{"Bonus":0,"Continent":"K35","ID":30749,"Name":"203","PlayerID":849064752,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30749","ServerKey":"pl181","X":583,"Y":377},{"Bonus":0,"Continent":"K56","ID":30750,"Name":"Wioska VEGE 3","PlayerID":87575,"Points":4680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30750","ServerKey":"pl181","X":659,"Y":563},{"Bonus":0,"Continent":"K64","ID":30752,"Name":"2:0","PlayerID":699736927,"Points":5246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30752","ServerKey":"pl181","X":420,"Y":651},{"Bonus":0,"Continent":"K33","ID":30754,"Name":"cz Wioska 77","PlayerID":3909522,"Points":5529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30754","ServerKey":"pl181","X":369,"Y":384},{"Bonus":0,"Continent":"K34","ID":30755,"Name":"#0057 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30755","ServerKey":"pl181","X":468,"Y":332},{"Bonus":0,"Continent":"K65","ID":30756,"Name":"0655","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30756","ServerKey":"pl181","X":531,"Y":665},{"Bonus":0,"Continent":"K43","ID":30757,"Name":"M181_008","PlayerID":393668,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30757","ServerKey":"pl181","X":338,"Y":435},{"Bonus":0,"Continent":"K56","ID":30758,"Name":"_PUSTA","PlayerID":698768565,"Points":7732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30758","ServerKey":"pl181","X":649,"Y":590},{"Bonus":0,"Continent":"K34","ID":30760,"Name":"Wioska 05","PlayerID":951823,"Points":5340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30760","ServerKey":"pl181","X":499,"Y":325},{"Bonus":0,"Continent":"K66","ID":30761,"Name":"*030","PlayerID":699567608,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30761","ServerKey":"pl181","X":604,"Y":641},{"Bonus":0,"Continent":"K46","ID":30762,"Name":"003","PlayerID":699737356,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30762","ServerKey":"pl181","X":673,"Y":496},{"Bonus":0,"Continent":"K46","ID":30763,"Name":"012 - Mroczna Osada","PlayerID":849035905,"Points":10705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30763","ServerKey":"pl181","X":653,"Y":424},{"Bonus":0,"Continent":"K64","ID":30764,"Name":"Psycha Siada","PlayerID":698807570,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30764","ServerKey":"pl181","X":453,"Y":666},{"Bonus":0,"Continent":"K53","ID":30765,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30765","ServerKey":"pl181","X":333,"Y":524},{"Bonus":0,"Continent":"K53","ID":30766,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30766","ServerKey":"pl181","X":336,"Y":544},{"Bonus":0,"Continent":"K33","ID":30767,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":3620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30767","ServerKey":"pl181","X":376,"Y":378},{"Bonus":9,"Continent":"K43","ID":30768,"Name":"M181_009","PlayerID":393668,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30768","ServerKey":"pl181","X":338,"Y":436},{"Bonus":0,"Continent":"K36","ID":30769,"Name":".:016:. kr","PlayerID":849098782,"Points":10535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30769","ServerKey":"pl181","X":632,"Y":387},{"Bonus":0,"Continent":"K66","ID":30770,"Name":"Wioska 128","PlayerID":848971079,"Points":7557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30770","ServerKey":"pl181","X":635,"Y":609},{"Bonus":0,"Continent":"K33","ID":30771,"Name":"*125*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30771","ServerKey":"pl181","X":361,"Y":392},{"Bonus":0,"Continent":"K64","ID":30772,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30772","ServerKey":"pl181","X":457,"Y":667},{"Bonus":0,"Continent":"K33","ID":30773,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":5991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30773","ServerKey":"pl181","X":375,"Y":387},{"Bonus":0,"Continent":"K66","ID":30774,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30774","ServerKey":"pl181","X":637,"Y":606},{"Bonus":0,"Continent":"K63","ID":30775,"Name":"Pobozowisko","PlayerID":699513260,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30775","ServerKey":"pl181","X":373,"Y":616},{"Bonus":0,"Continent":"K46","ID":30776,"Name":"005 - Mroczna Osada","PlayerID":849035905,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30776","ServerKey":"pl181","X":644,"Y":410},{"Bonus":0,"Continent":"K33","ID":30778,"Name":"Szulernia","PlayerID":7249451,"Points":11137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30778","ServerKey":"pl181","X":388,"Y":367},{"Bonus":0,"Continent":"K65","ID":30779,"Name":"043","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30779","ServerKey":"pl181","X":527,"Y":671},{"Bonus":0,"Continent":"K36","ID":30781,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30781","ServerKey":"pl181","X":622,"Y":373},{"Bonus":0,"Continent":"K33","ID":30782,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30782","ServerKey":"pl181","X":357,"Y":399},{"Bonus":0,"Continent":"K64","ID":30784,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30784","ServerKey":"pl181","X":415,"Y":651},{"Bonus":0,"Continent":"K65","ID":30785,"Name":"003","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30785","ServerKey":"pl181","X":532,"Y":673},{"Bonus":0,"Continent":"K35","ID":30786,"Name":"Lord Lord Franek .#085","PlayerID":698420691,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30786","ServerKey":"pl181","X":518,"Y":325},{"Bonus":0,"Continent":"K35","ID":30787,"Name":"-0005-","PlayerID":2972329,"Points":8638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30787","ServerKey":"pl181","X":542,"Y":334},{"Bonus":0,"Continent":"K65","ID":30788,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30788","ServerKey":"pl181","X":504,"Y":676},{"Bonus":0,"Continent":"K56","ID":30789,"Name":"47k$ Grvvyq","PlayerID":699676005,"Points":10102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30789","ServerKey":"pl181","X":656,"Y":578},{"Bonus":0,"Continent":"K43","ID":30790,"Name":"Vengard","PlayerID":849097716,"Points":10958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30790","ServerKey":"pl181","X":344,"Y":437},{"Bonus":0,"Continent":"K43","ID":30791,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30791","ServerKey":"pl181","X":329,"Y":462},{"Bonus":0,"Continent":"K46","ID":30792,"Name":"I044","PlayerID":699722599,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30792","ServerKey":"pl181","X":667,"Y":461},{"Bonus":0,"Continent":"K64","ID":30793,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30793","ServerKey":"pl181","X":456,"Y":668},{"Bonus":9,"Continent":"K53","ID":30794,"Name":"C0277","PlayerID":8841266,"Points":10191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30794","ServerKey":"pl181","X":327,"Y":506},{"Bonus":0,"Continent":"K65","ID":30795,"Name":"018","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30795","ServerKey":"pl181","X":564,"Y":638},{"Bonus":0,"Continent":"K34","ID":30796,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30796","ServerKey":"pl181","X":439,"Y":336},{"Bonus":0,"Continent":"K43","ID":30797,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30797","ServerKey":"pl181","X":348,"Y":426},{"Bonus":0,"Continent":"K53","ID":30798,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30798","ServerKey":"pl181","X":336,"Y":562},{"Bonus":0,"Continent":"K65","ID":30799,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30799","ServerKey":"pl181","X":502,"Y":676},{"Bonus":0,"Continent":"K53","ID":30801,"Name":"Leszcz","PlayerID":699265922,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30801","ServerKey":"pl181","X":333,"Y":549},{"Bonus":0,"Continent":"K64","ID":30802,"Name":"0004. HMS Charles (1668)","PlayerID":699121671,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30802","ServerKey":"pl181","X":483,"Y":674},{"Bonus":0,"Continent":"K46","ID":30803,"Name":"Barcelona","PlayerID":699737356,"Points":7897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30803","ServerKey":"pl181","X":672,"Y":497},{"Bonus":1,"Continent":"K64","ID":30804,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30804","ServerKey":"pl181","X":457,"Y":665},{"Bonus":0,"Continent":"K64","ID":30805,"Name":"Ave Why!","PlayerID":699121671,"Points":7196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30805","ServerKey":"pl181","X":483,"Y":670},{"Bonus":0,"Continent":"K46","ID":30806,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30806","ServerKey":"pl181","X":671,"Y":479},{"Bonus":0,"Continent":"K63","ID":30807,"Name":"007 Wioska barbarzyƄska","PlayerID":6354098,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30807","ServerKey":"pl181","X":383,"Y":626},{"Bonus":0,"Continent":"K34","ID":30808,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30808","ServerKey":"pl181","X":451,"Y":334},{"Bonus":0,"Continent":"K64","ID":30809,"Name":"R 017 ~BiaƂa GraƄ~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30809","ServerKey":"pl181","X":483,"Y":677},{"Bonus":0,"Continent":"K43","ID":30810,"Name":"Wioska barbarzyƄska","PlayerID":699823490,"Points":4035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30810","ServerKey":"pl181","X":329,"Y":494},{"Bonus":3,"Continent":"K46","ID":30811,"Name":"006","PlayerID":7085502,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30811","ServerKey":"pl181","X":669,"Y":493},{"Bonus":0,"Continent":"K43","ID":30812,"Name":"M181_001","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30812","ServerKey":"pl181","X":342,"Y":432},{"Bonus":0,"Continent":"K36","ID":30813,"Name":"**21**","PlayerID":849098782,"Points":10437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30813","ServerKey":"pl181","X":633,"Y":393},{"Bonus":0,"Continent":"K34","ID":30814,"Name":"107...tomcz","PlayerID":6920960,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30814","ServerKey":"pl181","X":476,"Y":331},{"Bonus":0,"Continent":"K34","ID":30815,"Name":"085...TOM D----------","PlayerID":6920960,"Points":10590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30815","ServerKey":"pl181","X":476,"Y":338},{"Bonus":0,"Continent":"K66","ID":30816,"Name":"Ć»UBR .::.B.E.T.O.N /2","PlayerID":33900,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30816","ServerKey":"pl181","X":623,"Y":617},{"Bonus":4,"Continent":"K56","ID":30817,"Name":"B 001","PlayerID":8078914,"Points":9942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30817","ServerKey":"pl181","X":668,"Y":533},{"Bonus":0,"Continent":"K46","ID":30818,"Name":"#053.","PlayerID":556154,"Points":7349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30818","ServerKey":"pl181","X":663,"Y":434},{"Bonus":0,"Continent":"K63","ID":30819,"Name":"Dejmon7","PlayerID":699805839,"Points":5224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30819","ServerKey":"pl181","X":372,"Y":622},{"Bonus":0,"Continent":"K63","ID":30820,"Name":".///...//././././././././","PlayerID":849097937,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30820","ServerKey":"pl181","X":372,"Y":615},{"Bonus":0,"Continent":"K63","ID":30821,"Name":"002 Wioska barbarzyƄska","PlayerID":6354098,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30821","ServerKey":"pl181","X":382,"Y":627},{"Bonus":0,"Continent":"K34","ID":30822,"Name":"0100","PlayerID":699431255,"Points":4588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30822","ServerKey":"pl181","X":413,"Y":347},{"Bonus":0,"Continent":"K63","ID":30823,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30823","ServerKey":"pl181","X":369,"Y":608},{"Bonus":0,"Continent":"K66","ID":30824,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30824","ServerKey":"pl181","X":635,"Y":607},{"Bonus":0,"Continent":"K64","ID":30825,"Name":"|011| Agios Nikolaos","PlayerID":699393742,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30825","ServerKey":"pl181","X":499,"Y":676},{"Bonus":0,"Continent":"K34","ID":30826,"Name":"[B]_[037] Dejv.oldplyr","PlayerID":699380607,"Points":6514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30826","ServerKey":"pl181","X":420,"Y":343},{"Bonus":0,"Continent":"K33","ID":30827,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":8723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30827","ServerKey":"pl181","X":399,"Y":364},{"Bonus":0,"Continent":"K46","ID":30828,"Name":"009 Barbara","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30828","ServerKey":"pl181","X":673,"Y":497},{"Bonus":0,"Continent":"K65","ID":30829,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30829","ServerKey":"pl181","X":555,"Y":662},{"Bonus":0,"Continent":"K56","ID":30830,"Name":"105. Wyspy OkrągƂe","PlayerID":8337151,"Points":7552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30830","ServerKey":"pl181","X":642,"Y":593},{"Bonus":0,"Continent":"K56","ID":30831,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30831","ServerKey":"pl181","X":671,"Y":535},{"Bonus":0,"Continent":"K55","ID":30832,"Name":"Jaaa","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30832","ServerKey":"pl181","X":569,"Y":561},{"Bonus":0,"Continent":"K35","ID":30833,"Name":"Wioska III","PlayerID":698200480,"Points":5556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30833","ServerKey":"pl181","X":584,"Y":347},{"Bonus":0,"Continent":"K56","ID":30834,"Name":"005","PlayerID":6929240,"Points":1789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30834","ServerKey":"pl181","X":667,"Y":548},{"Bonus":0,"Continent":"K35","ID":30835,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30835","ServerKey":"pl181","X":599,"Y":359},{"Bonus":0,"Continent":"K35","ID":30836,"Name":"Wioska barbarzyƄska 025","PlayerID":6343784,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30836","ServerKey":"pl181","X":504,"Y":329},{"Bonus":0,"Continent":"K36","ID":30837,"Name":"wioska","PlayerID":848915730,"Points":1570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30837","ServerKey":"pl181","X":607,"Y":366},{"Bonus":0,"Continent":"K65","ID":30838,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30838","ServerKey":"pl181","X":527,"Y":672},{"Bonus":0,"Continent":"K53","ID":30839,"Name":"29. Pod chatą","PlayerID":8665783,"Points":7921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30839","ServerKey":"pl181","X":356,"Y":590},{"Bonus":0,"Continent":"K64","ID":30840,"Name":"New World","PlayerID":698152377,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30840","ServerKey":"pl181","X":494,"Y":673},{"Bonus":0,"Continent":"K65","ID":30841,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30841","ServerKey":"pl181","X":507,"Y":673},{"Bonus":0,"Continent":"K56","ID":30842,"Name":"D 021","PlayerID":8078914,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30842","ServerKey":"pl181","X":671,"Y":509},{"Bonus":0,"Continent":"K64","ID":30843,"Name":"Ave Why!","PlayerID":698585370,"Points":6036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30843","ServerKey":"pl181","X":494,"Y":669},{"Bonus":0,"Continent":"K65","ID":30844,"Name":"Muchomor *021*","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30844","ServerKey":"pl181","X":523,"Y":674},{"Bonus":0,"Continent":"K64","ID":30845,"Name":"|031| Kiotari","PlayerID":699393742,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30845","ServerKey":"pl181","X":497,"Y":670},{"Bonus":0,"Continent":"K66","ID":30846,"Name":"WB 06","PlayerID":2269943,"Points":8455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30846","ServerKey":"pl181","X":638,"Y":607},{"Bonus":0,"Continent":"K46","ID":30847,"Name":"DMN 004","PlayerID":698998882,"Points":5877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30847","ServerKey":"pl181","X":649,"Y":421},{"Bonus":0,"Continent":"K43","ID":30848,"Name":"V001","PlayerID":849097737,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30848","ServerKey":"pl181","X":350,"Y":421},{"Bonus":0,"Continent":"K46","ID":30849,"Name":"Jehu_Kingdom_48","PlayerID":8785314,"Points":6508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30849","ServerKey":"pl181","X":655,"Y":433},{"Bonus":5,"Continent":"K66","ID":30850,"Name":"019","PlayerID":849097799,"Points":7824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30850","ServerKey":"pl181","X":602,"Y":637},{"Bonus":0,"Continent":"K36","ID":30851,"Name":"Springfield, Massachusetts","PlayerID":849061374,"Points":10214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30851","ServerKey":"pl181","X":600,"Y":357},{"Bonus":0,"Continent":"K53","ID":30853,"Name":"Mniejsze zƂo 0069","PlayerID":699794765,"Points":7178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30853","ServerKey":"pl181","X":331,"Y":538},{"Bonus":0,"Continent":"K34","ID":30854,"Name":"123...tomcz","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30854","ServerKey":"pl181","X":477,"Y":332},{"Bonus":0,"Continent":"K63","ID":30855,"Name":"J002.","PlayerID":849090130,"Points":8991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30855","ServerKey":"pl181","X":364,"Y":601},{"Bonus":0,"Continent":"K34","ID":30856,"Name":"#0170 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30856","ServerKey":"pl181","X":489,"Y":325},{"Bonus":0,"Continent":"K43","ID":30857,"Name":"A0266","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30857","ServerKey":"pl181","X":327,"Y":487},{"Bonus":0,"Continent":"K35","ID":30858,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":6876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30858","ServerKey":"pl181","X":592,"Y":355},{"Bonus":0,"Continent":"K46","ID":30859,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30859","ServerKey":"pl181","X":673,"Y":485},{"Bonus":0,"Continent":"K46","ID":30860,"Name":"Sierra","PlayerID":699737356,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30860","ServerKey":"pl181","X":675,"Y":498},{"Bonus":0,"Continent":"K43","ID":30861,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30861","ServerKey":"pl181","X":335,"Y":459},{"Bonus":0,"Continent":"K56","ID":30862,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30862","ServerKey":"pl181","X":670,"Y":535},{"Bonus":0,"Continent":"K35","ID":30863,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":5219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30863","ServerKey":"pl181","X":596,"Y":358},{"Bonus":0,"Continent":"K34","ID":30864,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30864","ServerKey":"pl181","X":484,"Y":328},{"Bonus":0,"Continent":"K33","ID":30865,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":8804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30865","ServerKey":"pl181","X":362,"Y":395},{"Bonus":0,"Continent":"K65","ID":30866,"Name":"0439","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30866","ServerKey":"pl181","X":539,"Y":672},{"Bonus":0,"Continent":"K46","ID":30867,"Name":"A031 Wioska 2","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30867","ServerKey":"pl181","X":659,"Y":445},{"Bonus":0,"Continent":"K35","ID":30868,"Name":".051.","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30868","ServerKey":"pl181","X":501,"Y":381},{"Bonus":0,"Continent":"K64","ID":30869,"Name":"New World","PlayerID":698152377,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30869","ServerKey":"pl181","X":492,"Y":674},{"Bonus":0,"Continent":"K53","ID":30870,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30870","ServerKey":"pl181","X":326,"Y":527},{"Bonus":0,"Continent":"K64","ID":30871,"Name":"010 Welen.V2","PlayerID":699834004,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30871","ServerKey":"pl181","X":464,"Y":668},{"Bonus":0,"Continent":"K56","ID":30872,"Name":"034","PlayerID":849095227,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30872","ServerKey":"pl181","X":632,"Y":552},{"Bonus":0,"Continent":"K34","ID":30873,"Name":"#0183 MiBM","PlayerID":1238300,"Points":6492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30873","ServerKey":"pl181","X":488,"Y":326},{"Bonus":0,"Continent":"K56","ID":30874,"Name":"056 Goku","PlayerID":699272880,"Points":9578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30874","ServerKey":"pl181","X":641,"Y":596},{"Bonus":0,"Continent":"K35","ID":30875,"Name":"-0012-","PlayerID":2972329,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30875","ServerKey":"pl181","X":545,"Y":332},{"Bonus":0,"Continent":"K56","ID":30876,"Name":"$6.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30876","ServerKey":"pl181","X":656,"Y":577},{"Bonus":0,"Continent":"K36","ID":30877,"Name":"Po ƛwiętach","PlayerID":848915730,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30877","ServerKey":"pl181","X":606,"Y":365},{"Bonus":6,"Continent":"K64","ID":30878,"Name":"025. Night Raid-","PlayerID":699684062,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30878","ServerKey":"pl181","X":472,"Y":672},{"Bonus":0,"Continent":"K43","ID":30879,"Name":"Westfold.002","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30879","ServerKey":"pl181","X":346,"Y":415},{"Bonus":0,"Continent":"K33","ID":30880,"Name":"Szulernia","PlayerID":7249451,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30880","ServerKey":"pl181","X":386,"Y":368},{"Bonus":2,"Continent":"K56","ID":30881,"Name":"Echo","PlayerID":699737356,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30881","ServerKey":"pl181","X":676,"Y":505},{"Bonus":0,"Continent":"K35","ID":30882,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":5319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30882","ServerKey":"pl181","X":513,"Y":332},{"Bonus":0,"Continent":"K33","ID":30883,"Name":"Szlachcic","PlayerID":698160606,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30883","ServerKey":"pl181","X":389,"Y":365},{"Bonus":0,"Continent":"K63","ID":30884,"Name":"023 To Ty nic nie umiesz?","PlayerID":6354098,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30884","ServerKey":"pl181","X":383,"Y":630},{"Bonus":0,"Continent":"K56","ID":30885,"Name":"Wioska 070","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30885","ServerKey":"pl181","X":646,"Y":592},{"Bonus":1,"Continent":"K53","ID":30886,"Name":"deff 100 %","PlayerID":849012521,"Points":10243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30886","ServerKey":"pl181","X":343,"Y":577},{"Bonus":0,"Continent":"K53","ID":30887,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30887","ServerKey":"pl181","X":343,"Y":528},{"Bonus":0,"Continent":"K35","ID":30888,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30888","ServerKey":"pl181","X":519,"Y":325},{"Bonus":0,"Continent":"K66","ID":30889,"Name":"009","PlayerID":849097799,"Points":8286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30889","ServerKey":"pl181","X":606,"Y":641},{"Bonus":0,"Continent":"K34","ID":30890,"Name":"041","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30890","ServerKey":"pl181","X":448,"Y":336},{"Bonus":0,"Continent":"K66","ID":30891,"Name":"027","PlayerID":849097799,"Points":7419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30891","ServerKey":"pl181","X":609,"Y":634},{"Bonus":0,"Continent":"K56","ID":30892,"Name":"E003","PlayerID":8428196,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30892","ServerKey":"pl181","X":658,"Y":558},{"Bonus":0,"Continent":"K43","ID":30893,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30893","ServerKey":"pl181","X":326,"Y":472},{"Bonus":0,"Continent":"K56","ID":30894,"Name":"Bukowy Las","PlayerID":849039310,"Points":7289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30894","ServerKey":"pl181","X":652,"Y":586},{"Bonus":0,"Continent":"K66","ID":30895,"Name":"012","PlayerID":849097799,"Points":8213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30895","ServerKey":"pl181","X":608,"Y":643},{"Bonus":0,"Continent":"K34","ID":30896,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":4701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30896","ServerKey":"pl181","X":451,"Y":332},{"Bonus":0,"Continent":"K35","ID":30897,"Name":"Wioska barbarzyƄska","PlayerID":698680806,"Points":3567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30897","ServerKey":"pl181","X":508,"Y":328},{"Bonus":0,"Continent":"K33","ID":30898,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":8550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30898","ServerKey":"pl181","X":372,"Y":387},{"Bonus":0,"Continent":"K43","ID":30899,"Name":"Klan MƂota","PlayerID":849097716,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30899","ServerKey":"pl181","X":343,"Y":437},{"Bonus":0,"Continent":"K34","ID":30900,"Name":"118...tomcz","PlayerID":6920960,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30900","ServerKey":"pl181","X":479,"Y":332},{"Bonus":0,"Continent":"K56","ID":30901,"Name":"D16","PlayerID":848995478,"Points":4510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30901","ServerKey":"pl181","X":666,"Y":543},{"Bonus":0,"Continent":"K43","ID":30903,"Name":"Wioska","PlayerID":848946608,"Points":2586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30903","ServerKey":"pl181","X":333,"Y":457},{"Bonus":0,"Continent":"K36","ID":30904,"Name":"006 Schwere Panzer-Abteilung 507","PlayerID":849091899,"Points":9440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30904","ServerKey":"pl181","X":605,"Y":363},{"Bonus":0,"Continent":"K64","ID":30905,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30905","ServerKey":"pl181","X":484,"Y":670},{"Bonus":0,"Continent":"K53","ID":30906,"Name":"Myk i do kieszonki","PlayerID":7333216,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30906","ServerKey":"pl181","X":342,"Y":568},{"Bonus":0,"Continent":"K64","ID":30907,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":1931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30907","ServerKey":"pl181","X":427,"Y":625},{"Bonus":0,"Continent":"K34","ID":30908,"Name":"[B]_[010] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30908","ServerKey":"pl181","X":421,"Y":346},{"Bonus":0,"Continent":"K63","ID":30909,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30909","ServerKey":"pl181","X":389,"Y":636},{"Bonus":0,"Continent":"K64","ID":30910,"Name":"Ulu-mulu","PlayerID":699697558,"Points":9217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30910","ServerKey":"pl181","X":433,"Y":615},{"Bonus":0,"Continent":"K46","ID":30911,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30911","ServerKey":"pl181","X":674,"Y":482},{"Bonus":0,"Continent":"K64","ID":30912,"Name":"BEZDZIETNY KAWALER","PlayerID":848913998,"Points":5922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30912","ServerKey":"pl181","X":418,"Y":625},{"Bonus":0,"Continent":"K63","ID":30913,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30913","ServerKey":"pl181","X":390,"Y":632},{"Bonus":0,"Continent":"K65","ID":30914,"Name":"0183","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30914","ServerKey":"pl181","X":549,"Y":655},{"Bonus":0,"Continent":"K56","ID":30915,"Name":"O58 Halland","PlayerID":699272880,"Points":8776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30915","ServerKey":"pl181","X":668,"Y":547},{"Bonus":0,"Continent":"K43","ID":30916,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30916","ServerKey":"pl181","X":356,"Y":405},{"Bonus":0,"Continent":"K34","ID":30917,"Name":"104...tommcz","PlayerID":6920960,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30917","ServerKey":"pl181","X":476,"Y":330},{"Bonus":2,"Continent":"K34","ID":30918,"Name":"#0103 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30918","ServerKey":"pl181","X":479,"Y":328},{"Bonus":0,"Continent":"K43","ID":30919,"Name":"FLAGI","PlayerID":699780873,"Points":6192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30919","ServerKey":"pl181","X":324,"Y":482},{"Bonus":0,"Continent":"K65","ID":30920,"Name":"0100","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30920","ServerKey":"pl181","X":548,"Y":667},{"Bonus":0,"Continent":"K53","ID":30921,"Name":"Coimbra","PlayerID":699494480,"Points":7149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30921","ServerKey":"pl181","X":354,"Y":592},{"Bonus":0,"Continent":"K35","ID":30922,"Name":"J#025","PlayerID":2065730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30922","ServerKey":"pl181","X":576,"Y":343},{"Bonus":0,"Continent":"K56","ID":30923,"Name":"[039]","PlayerID":698305474,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30923","ServerKey":"pl181","X":650,"Y":590},{"Bonus":0,"Continent":"K46","ID":30925,"Name":"Centrum 6","PlayerID":1086351,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30925","ServerKey":"pl181","X":649,"Y":411},{"Bonus":4,"Continent":"K64","ID":30926,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30926","ServerKey":"pl181","X":404,"Y":643},{"Bonus":0,"Continent":"K65","ID":30927,"Name":"*054","PlayerID":699567608,"Points":9369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30927","ServerKey":"pl181","X":583,"Y":654},{"Bonus":0,"Continent":"K56","ID":30928,"Name":"Wioska 001","PlayerID":2999957,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30928","ServerKey":"pl181","X":674,"Y":528},{"Bonus":0,"Continent":"K56","ID":30929,"Name":"69k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30929","ServerKey":"pl181","X":640,"Y":570},{"Bonus":0,"Continent":"K43","ID":30930,"Name":"A0267","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30930","ServerKey":"pl181","X":330,"Y":477},{"Bonus":0,"Continent":"K46","ID":30931,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30931","ServerKey":"pl181","X":678,"Y":493},{"Bonus":0,"Continent":"K43","ID":30932,"Name":"Braga","PlayerID":849097716,"Points":6942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30932","ServerKey":"pl181","X":342,"Y":436},{"Bonus":0,"Continent":"K65","ID":30933,"Name":"002.","PlayerID":1270916,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30933","ServerKey":"pl181","X":578,"Y":658},{"Bonus":0,"Continent":"K65","ID":30934,"Name":"036","PlayerID":8954402,"Points":5843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30934","ServerKey":"pl181","X":516,"Y":668},{"Bonus":0,"Continent":"K53","ID":30935,"Name":"027.Barbara11","PlayerID":1830149,"Points":4459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30935","ServerKey":"pl181","X":331,"Y":501},{"Bonus":0,"Continent":"K56","ID":30936,"Name":"*5614* Nowy Targ","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30936","ServerKey":"pl181","X":660,"Y":566},{"Bonus":0,"Continent":"K53","ID":30937,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":6338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30937","ServerKey":"pl181","X":325,"Y":507},{"Bonus":0,"Continent":"K46","ID":30938,"Name":"emoriar","PlayerID":699574408,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30938","ServerKey":"pl181","X":666,"Y":442},{"Bonus":0,"Continent":"K64","ID":30939,"Name":"08 Rivendell","PlayerID":699736927,"Points":8484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30939","ServerKey":"pl181","X":434,"Y":664},{"Bonus":0,"Continent":"K34","ID":30940,"Name":"[B]_[015] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30940","ServerKey":"pl181","X":428,"Y":348},{"Bonus":0,"Continent":"K43","ID":30941,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30941","ServerKey":"pl181","X":327,"Y":471},{"Bonus":0,"Continent":"K64","ID":30942,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30942","ServerKey":"pl181","X":420,"Y":653},{"Bonus":0,"Continent":"K34","ID":30943,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":6820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30943","ServerKey":"pl181","X":448,"Y":339},{"Bonus":0,"Continent":"K66","ID":30944,"Name":"#067#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30944","ServerKey":"pl181","X":624,"Y":624},{"Bonus":0,"Continent":"K64","ID":30945,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":5021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30945","ServerKey":"pl181","X":410,"Y":648},{"Bonus":0,"Continent":"K65","ID":30946,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30946","ServerKey":"pl181","X":575,"Y":657},{"Bonus":2,"Continent":"K63","ID":30947,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30947","ServerKey":"pl181","X":377,"Y":620},{"Bonus":0,"Continent":"K53","ID":30948,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":4710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30948","ServerKey":"pl181","X":337,"Y":556},{"Bonus":0,"Continent":"K35","ID":30949,"Name":"AAA","PlayerID":1006847,"Points":7071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30949","ServerKey":"pl181","X":535,"Y":328},{"Bonus":0,"Continent":"K46","ID":30950,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":2975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30950","ServerKey":"pl181","X":662,"Y":445},{"Bonus":0,"Continent":"K65","ID":30951,"Name":"|062| Osiedle Zielone","PlayerID":699781762,"Points":8878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30951","ServerKey":"pl181","X":513,"Y":682},{"Bonus":0,"Continent":"K56","ID":30952,"Name":"661|559 Wioska barbarzyƄska","PlayerID":6822957,"Points":7710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30952","ServerKey":"pl181","X":661,"Y":559},{"Bonus":0,"Continent":"K46","ID":30953,"Name":"095. Kanaza","PlayerID":8337151,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30953","ServerKey":"pl181","X":618,"Y":480},{"Bonus":0,"Continent":"K34","ID":30954,"Name":"129...OPELU","PlayerID":6920960,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30954","ServerKey":"pl181","X":442,"Y":333},{"Bonus":0,"Continent":"K36","ID":30955,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30955","ServerKey":"pl181","X":620,"Y":381},{"Bonus":0,"Continent":"K63","ID":30956,"Name":"A 011","PlayerID":699342219,"Points":5982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30956","ServerKey":"pl181","X":369,"Y":615},{"Bonus":0,"Continent":"K53","ID":30957,"Name":"Grupka 7 wiosek 3","PlayerID":698353083,"Points":8298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30957","ServerKey":"pl181","X":355,"Y":598},{"Bonus":0,"Continent":"K36","ID":30958,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30958","ServerKey":"pl181","X":640,"Y":398},{"Bonus":0,"Continent":"K34","ID":30959,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30959","ServerKey":"pl181","X":449,"Y":331},{"Bonus":0,"Continent":"K46","ID":30960,"Name":"009 - Mroczna Osada","PlayerID":849035905,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30960","ServerKey":"pl181","X":646,"Y":407},{"Bonus":0,"Continent":"K33","ID":30961,"Name":"Wioska Westor","PlayerID":699530673,"Points":6049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30961","ServerKey":"pl181","X":358,"Y":395},{"Bonus":0,"Continent":"K35","ID":30962,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30962","ServerKey":"pl181","X":514,"Y":328},{"Bonus":0,"Continent":"K55","ID":30963,"Name":"Szlachcic","PlayerID":699759128,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30963","ServerKey":"pl181","X":593,"Y":500},{"Bonus":0,"Continent":"K53","ID":30964,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":5103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30964","ServerKey":"pl181","X":336,"Y":557},{"Bonus":0,"Continent":"K56","ID":30965,"Name":"039","PlayerID":699413040,"Points":10442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30965","ServerKey":"pl181","X":671,"Y":515},{"Bonus":0,"Continent":"K46","ID":30966,"Name":"I049","PlayerID":699722599,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30966","ServerKey":"pl181","X":657,"Y":436},{"Bonus":0,"Continent":"K64","ID":30967,"Name":"B03","PlayerID":8954402,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30967","ServerKey":"pl181","X":490,"Y":676},{"Bonus":0,"Continent":"K56","ID":30968,"Name":"O01 Dunharrow","PlayerID":699272880,"Points":10671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30968","ServerKey":"pl181","X":667,"Y":520},{"Bonus":0,"Continent":"K65","ID":30969,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30969","ServerKey":"pl181","X":506,"Y":676},{"Bonus":0,"Continent":"K53","ID":30971,"Name":"Wioska klez 001","PlayerID":698295651,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30971","ServerKey":"pl181","X":329,"Y":512},{"Bonus":0,"Continent":"K64","ID":30973,"Name":"027|| Lynx","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30973","ServerKey":"pl181","X":498,"Y":672},{"Bonus":0,"Continent":"K46","ID":30974,"Name":"Minas","PlayerID":699737356,"Points":8715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30974","ServerKey":"pl181","X":675,"Y":494},{"Bonus":0,"Continent":"K56","ID":30975,"Name":"074","PlayerID":849095227,"Points":8457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30975","ServerKey":"pl181","X":662,"Y":562},{"Bonus":0,"Continent":"K46","ID":30977,"Name":"I007","PlayerID":699722599,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30977","ServerKey":"pl181","X":665,"Y":447},{"Bonus":0,"Continent":"K43","ID":30978,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30978","ServerKey":"pl181","X":331,"Y":490},{"Bonus":0,"Continent":"K65","ID":30979,"Name":"0295","PlayerID":698659980,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30979","ServerKey":"pl181","X":569,"Y":657},{"Bonus":0,"Continent":"K56","ID":30980,"Name":"038","PlayerID":699413040,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30980","ServerKey":"pl181","X":669,"Y":514},{"Bonus":0,"Continent":"K64","ID":30981,"Name":"|007| Balos","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30981","ServerKey":"pl181","X":482,"Y":670},{"Bonus":0,"Continent":"K64","ID":30982,"Name":"D04 orzeƂ nie wyląduje tu.","PlayerID":849037407,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30982","ServerKey":"pl181","X":459,"Y":667},{"Bonus":0,"Continent":"K56","ID":30983,"Name":"25k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30983","ServerKey":"pl181","X":663,"Y":566},{"Bonus":0,"Continent":"K64","ID":30984,"Name":"A10","PlayerID":698652014,"Points":5275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30984","ServerKey":"pl181","X":468,"Y":670},{"Bonus":0,"Continent":"K56","ID":30985,"Name":"049","PlayerID":699413040,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30985","ServerKey":"pl181","X":676,"Y":515},{"Bonus":0,"Continent":"K56","ID":30986,"Name":"Wioska 051","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30986","ServerKey":"pl181","X":644,"Y":596},{"Bonus":0,"Continent":"K66","ID":30987,"Name":"Ć»UBR .::.B.E.T.O.N /3","PlayerID":33900,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30987","ServerKey":"pl181","X":625,"Y":616},{"Bonus":0,"Continent":"K53","ID":30988,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30988","ServerKey":"pl181","X":343,"Y":567},{"Bonus":0,"Continent":"K63","ID":30989,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30989","ServerKey":"pl181","X":395,"Y":638},{"Bonus":9,"Continent":"K63","ID":30990,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30990","ServerKey":"pl181","X":399,"Y":644},{"Bonus":0,"Continent":"K35","ID":30991,"Name":"!!35 59 xyx","PlayerID":698361257,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30991","ServerKey":"pl181","X":598,"Y":354},{"Bonus":0,"Continent":"K64","ID":30992,"Name":"#Yamiiiii","PlayerID":699849210,"Points":4405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30992","ServerKey":"pl181","X":434,"Y":660},{"Bonus":0,"Continent":"K65","ID":30993,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30993","ServerKey":"pl181","X":503,"Y":675},{"Bonus":0,"Continent":"K46","ID":30994,"Name":"Centrum 5","PlayerID":1086351,"Points":5496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30994","ServerKey":"pl181","X":649,"Y":408},{"Bonus":0,"Continent":"K34","ID":30995,"Name":"060...Skrzyp Centr","PlayerID":6920960,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30995","ServerKey":"pl181","X":445,"Y":339},{"Bonus":0,"Continent":"K43","ID":30996,"Name":"08. Vengerberg","PlayerID":848910122,"Points":955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30996","ServerKey":"pl181","X":330,"Y":456},{"Bonus":0,"Continent":"K43","ID":30997,"Name":"*251*","PlayerID":699273451,"Points":6115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30997","ServerKey":"pl181","X":336,"Y":446},{"Bonus":0,"Continent":"K46","ID":30998,"Name":"[023] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30998","ServerKey":"pl181","X":660,"Y":439},{"Bonus":0,"Continent":"K34","ID":30999,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=30999","ServerKey":"pl181","X":485,"Y":397},{"Bonus":0,"Continent":"K63","ID":31000,"Name":"Pobozowisko","PlayerID":699513260,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31000","ServerKey":"pl181","X":373,"Y":619},{"Bonus":0,"Continent":"K65","ID":31002,"Name":"Muchomor *016*","PlayerID":606407,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31002","ServerKey":"pl181","X":517,"Y":671},{"Bonus":0,"Continent":"K33","ID":31003,"Name":"Szulernia","PlayerID":7249451,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31003","ServerKey":"pl181","X":381,"Y":371},{"Bonus":0,"Continent":"K36","ID":31004,"Name":"Surprise, Arizona","PlayerID":1990750,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31004","ServerKey":"pl181","X":600,"Y":360},{"Bonus":0,"Continent":"K46","ID":31005,"Name":"I034","PlayerID":699722599,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31005","ServerKey":"pl181","X":665,"Y":458},{"Bonus":0,"Continent":"K63","ID":31006,"Name":"003 ChaƂupa na wzgĂłrzu","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31006","ServerKey":"pl181","X":372,"Y":618},{"Bonus":0,"Continent":"K65","ID":31007,"Name":"0179","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31007","ServerKey":"pl181","X":548,"Y":658},{"Bonus":0,"Continent":"K46","ID":31008,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31008","ServerKey":"pl181","X":676,"Y":492},{"Bonus":8,"Continent":"K56","ID":31009,"Name":"D 022","PlayerID":8078914,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31009","ServerKey":"pl181","X":669,"Y":513},{"Bonus":0,"Continent":"K43","ID":31010,"Name":"1.03","PlayerID":3502565,"Points":7199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31010","ServerKey":"pl181","X":336,"Y":449},{"Bonus":0,"Continent":"K43","ID":31011,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31011","ServerKey":"pl181","X":328,"Y":460},{"Bonus":2,"Continent":"K35","ID":31012,"Name":"Wrath 004","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31012","ServerKey":"pl181","X":573,"Y":343},{"Bonus":0,"Continent":"K64","ID":31013,"Name":"A32","PlayerID":698652014,"Points":7238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31013","ServerKey":"pl181","X":479,"Y":671},{"Bonus":0,"Continent":"K53","ID":31014,"Name":"Nowy ƛwiat","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31014","ServerKey":"pl181","X":333,"Y":555},{"Bonus":0,"Continent":"K34","ID":31015,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31015","ServerKey":"pl181","X":449,"Y":334},{"Bonus":0,"Continent":"K36","ID":31016,"Name":"333","PlayerID":849092309,"Points":5621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31016","ServerKey":"pl181","X":634,"Y":393},{"Bonus":0,"Continent":"K53","ID":31017,"Name":"Plutosea BarbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31017","ServerKey":"pl181","X":330,"Y":545},{"Bonus":5,"Continent":"K63","ID":31018,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31018","ServerKey":"pl181","X":392,"Y":638},{"Bonus":0,"Continent":"K66","ID":31019,"Name":"Wioska K A J T E K","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31019","ServerKey":"pl181","X":625,"Y":604},{"Bonus":0,"Continent":"K53","ID":31020,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31020","ServerKey":"pl181","X":329,"Y":501},{"Bonus":0,"Continent":"K66","ID":31021,"Name":"Wioska 094","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31021","ServerKey":"pl181","X":642,"Y":601},{"Bonus":0,"Continent":"K56","ID":31022,"Name":"C.04","PlayerID":699737356,"Points":8849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31022","ServerKey":"pl181","X":675,"Y":524},{"Bonus":2,"Continent":"K43","ID":31023,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31023","ServerKey":"pl181","X":352,"Y":406},{"Bonus":0,"Continent":"K36","ID":31024,"Name":"444","PlayerID":849092309,"Points":5160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31024","ServerKey":"pl181","X":634,"Y":394},{"Bonus":0,"Continent":"K53","ID":31025,"Name":"Wonderwall","PlayerID":698962117,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31025","ServerKey":"pl181","X":331,"Y":547},{"Bonus":7,"Continent":"K33","ID":31026,"Name":"Szulernia","PlayerID":7249451,"Points":3189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31026","ServerKey":"pl181","X":379,"Y":382},{"Bonus":0,"Continent":"K65","ID":31027,"Name":"0263","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31027","ServerKey":"pl181","X":544,"Y":669},{"Bonus":0,"Continent":"K56","ID":31028,"Name":"[040]","PlayerID":698305474,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31028","ServerKey":"pl181","X":648,"Y":588},{"Bonus":0,"Continent":"K64","ID":31029,"Name":"Tu teĆŒ przytulnie","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31029","ServerKey":"pl181","X":443,"Y":659},{"Bonus":0,"Continent":"K35","ID":31030,"Name":"Wioska barbarzyƄska 027","PlayerID":6343784,"Points":8510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31030","ServerKey":"pl181","X":514,"Y":330},{"Bonus":0,"Continent":"K65","ID":31031,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31031","ServerKey":"pl181","X":521,"Y":659},{"Bonus":0,"Continent":"K34","ID":31032,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31032","ServerKey":"pl181","X":486,"Y":330},{"Bonus":0,"Continent":"K65","ID":31033,"Name":"|026| Kolymbia","PlayerID":699781762,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31033","ServerKey":"pl181","X":504,"Y":674},{"Bonus":0,"Continent":"K43","ID":31034,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":5789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31034","ServerKey":"pl181","X":359,"Y":405},{"Bonus":0,"Continent":"K56","ID":31035,"Name":"20k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31035","ServerKey":"pl181","X":657,"Y":572},{"Bonus":0,"Continent":"K34","ID":31036,"Name":"[B]_[041] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31036","ServerKey":"pl181","X":425,"Y":346},{"Bonus":0,"Continent":"K53","ID":31037,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31037","ServerKey":"pl181","X":330,"Y":531},{"Bonus":1,"Continent":"K64","ID":31038,"Name":"New World","PlayerID":698152377,"Points":10612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31038","ServerKey":"pl181","X":493,"Y":674},{"Bonus":0,"Continent":"K65","ID":31039,"Name":"Wioska P1ter 1","PlayerID":699567608,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31039","ServerKey":"pl181","X":598,"Y":647},{"Bonus":0,"Continent":"K53","ID":31040,"Name":"Wioska klez 013","PlayerID":698295651,"Points":6870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31040","ServerKey":"pl181","X":326,"Y":510},{"Bonus":0,"Continent":"K34","ID":31041,"Name":"K34 x027","PlayerID":698364331,"Points":5588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31041","ServerKey":"pl181","X":403,"Y":353},{"Bonus":0,"Continent":"K34","ID":31042,"Name":"Wioska ba","PlayerID":6118079,"Points":7250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31042","ServerKey":"pl181","X":498,"Y":323},{"Bonus":0,"Continent":"K54","ID":31043,"Name":"Awaryjne ƛwiatƂa!","PlayerID":699785935,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31043","ServerKey":"pl181","X":498,"Y":504},{"Bonus":0,"Continent":"K65","ID":31044,"Name":"0573","PlayerID":698659980,"Points":8944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31044","ServerKey":"pl181","X":564,"Y":661},{"Bonus":0,"Continent":"K63","ID":31045,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":8946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31045","ServerKey":"pl181","X":383,"Y":631},{"Bonus":0,"Continent":"K66","ID":31047,"Name":"Wioska 129","PlayerID":848971079,"Points":8891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31047","ServerKey":"pl181","X":635,"Y":605},{"Bonus":0,"Continent":"K64","ID":31048,"Name":"020.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31048","ServerKey":"pl181","X":486,"Y":658},{"Bonus":0,"Continent":"K64","ID":31049,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31049","ServerKey":"pl181","X":461,"Y":661},{"Bonus":0,"Continent":"K53","ID":31050,"Name":"Za darmo","PlayerID":8607734,"Points":2264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31050","ServerKey":"pl181","X":361,"Y":597},{"Bonus":0,"Continent":"K64","ID":31051,"Name":"|041| Tirana","PlayerID":698152377,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31051","ServerKey":"pl181","X":496,"Y":675},{"Bonus":0,"Continent":"K36","ID":31052,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31052","ServerKey":"pl181","X":612,"Y":369},{"Bonus":0,"Continent":"K64","ID":31053,"Name":"|002| Heraklion","PlayerID":699393742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31053","ServerKey":"pl181","X":495,"Y":671},{"Bonus":0,"Continent":"K36","ID":31054,"Name":".:007:. gr","PlayerID":849078297,"Points":6921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31054","ServerKey":"pl181","X":635,"Y":386},{"Bonus":0,"Continent":"K46","ID":31055,"Name":"022 Wioska","PlayerID":699671454,"Points":5428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31055","ServerKey":"pl181","X":659,"Y":429},{"Bonus":0,"Continent":"K63","ID":31056,"Name":"__28__ Setarrif","PlayerID":6354098,"Points":4120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31056","ServerKey":"pl181","X":376,"Y":620},{"Bonus":0,"Continent":"K56","ID":31057,"Name":"B 033","PlayerID":8078914,"Points":9197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31057","ServerKey":"pl181","X":667,"Y":529},{"Bonus":0,"Continent":"K36","ID":31058,"Name":"Wyspa 007","PlayerID":699756210,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31058","ServerKey":"pl181","X":624,"Y":383},{"Bonus":0,"Continent":"K64","ID":31059,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31059","ServerKey":"pl181","X":460,"Y":672},{"Bonus":0,"Continent":"K35","ID":31060,"Name":"Wioska 03","PlayerID":951823,"Points":8186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31060","ServerKey":"pl181","X":503,"Y":327},{"Bonus":0,"Continent":"K36","ID":31061,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31061","ServerKey":"pl181","X":601,"Y":359},{"Bonus":0,"Continent":"K66","ID":31062,"Name":"Mallutka","PlayerID":2269943,"Points":4268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31062","ServerKey":"pl181","X":634,"Y":603},{"Bonus":0,"Continent":"K65","ID":31063,"Name":"046","PlayerID":2293376,"Points":7865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31063","ServerKey":"pl181","X":518,"Y":672},{"Bonus":0,"Continent":"K35","ID":31064,"Name":"- Dragon1","PlayerID":699825236,"Points":8492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31064","ServerKey":"pl181","X":548,"Y":334},{"Bonus":0,"Continent":"K43","ID":31065,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":3944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31065","ServerKey":"pl181","X":356,"Y":403},{"Bonus":0,"Continent":"K36","ID":31066,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31066","ServerKey":"pl181","X":642,"Y":398},{"Bonus":0,"Continent":"K66","ID":31067,"Name":"Grvvyq 114k$","PlayerID":699676005,"Points":7868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31067","ServerKey":"pl181","X":630,"Y":613},{"Bonus":0,"Continent":"K33","ID":31068,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":5452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31068","ServerKey":"pl181","X":366,"Y":390},{"Bonus":0,"Continent":"K33","ID":31069,"Name":"Wiocha 11","PlayerID":849096544,"Points":4826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31069","ServerKey":"pl181","X":378,"Y":382},{"Bonus":0,"Continent":"K66","ID":31070,"Name":"~~086~~","PlayerID":7829201,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31070","ServerKey":"pl181","X":634,"Y":613},{"Bonus":0,"Continent":"K46","ID":31071,"Name":"AAA","PlayerID":699574408,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31071","ServerKey":"pl181","X":674,"Y":479},{"Bonus":0,"Continent":"K53","ID":31072,"Name":"Wioska barbarzyƄska","PlayerID":61791,"Points":3665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31072","ServerKey":"pl181","X":326,"Y":514},{"Bonus":0,"Continent":"K65","ID":31073,"Name":"0440","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31073","ServerKey":"pl181","X":537,"Y":672},{"Bonus":0,"Continent":"K53","ID":31074,"Name":"Nowy ƛwiat 7","PlayerID":849084005,"Points":5463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31074","ServerKey":"pl181","X":342,"Y":562},{"Bonus":0,"Continent":"K63","ID":31075,"Name":"020 Jo ni ma Fasola","PlayerID":6354098,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31075","ServerKey":"pl181","X":381,"Y":624},{"Bonus":0,"Continent":"K36","ID":31076,"Name":"Gattacka","PlayerID":699298370,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31076","ServerKey":"pl181","X":619,"Y":373},{"Bonus":0,"Continent":"K65","ID":31077,"Name":"0304","PlayerID":698659980,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31077","ServerKey":"pl181","X":574,"Y":661},{"Bonus":0,"Continent":"K35","ID":31078,"Name":"Wioska IV","PlayerID":698200480,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31078","ServerKey":"pl181","X":577,"Y":346},{"Bonus":0,"Continent":"K65","ID":31079,"Name":"crackhouse","PlayerID":848995242,"Points":3255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31079","ServerKey":"pl181","X":582,"Y":652},{"Bonus":3,"Continent":"K34","ID":31080,"Name":"#0110 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31080","ServerKey":"pl181","X":482,"Y":331},{"Bonus":0,"Continent":"K53","ID":31081,"Name":"01. kololand","PlayerID":8665783,"Points":11271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31081","ServerKey":"pl181","X":374,"Y":596},{"Bonus":0,"Continent":"K56","ID":31082,"Name":"D12","PlayerID":848995478,"Points":3128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31082","ServerKey":"pl181","X":665,"Y":551},{"Bonus":0,"Continent":"K36","ID":31083,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31083","ServerKey":"pl181","X":616,"Y":377},{"Bonus":0,"Continent":"K65","ID":31084,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31084","ServerKey":"pl181","X":524,"Y":653},{"Bonus":0,"Continent":"K56","ID":31085,"Name":"070","PlayerID":849095227,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31085","ServerKey":"pl181","X":663,"Y":552},{"Bonus":0,"Continent":"K63","ID":31086,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31086","ServerKey":"pl181","X":388,"Y":630},{"Bonus":0,"Continent":"K65","ID":31088,"Name":"0073","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31088","ServerKey":"pl181","X":554,"Y":664},{"Bonus":0,"Continent":"K43","ID":31090,"Name":"-010-","PlayerID":8184383,"Points":7348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31090","ServerKey":"pl181","X":334,"Y":452},{"Bonus":0,"Continent":"K35","ID":31091,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31091","ServerKey":"pl181","X":584,"Y":346},{"Bonus":0,"Continent":"K43","ID":31093,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31093","ServerKey":"pl181","X":332,"Y":469},{"Bonus":0,"Continent":"K35","ID":31094,"Name":"ADEN","PlayerID":698588535,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31094","ServerKey":"pl181","X":575,"Y":349},{"Bonus":0,"Continent":"K46","ID":31095,"Name":"A001 Mpiechu 2","PlayerID":113796,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31095","ServerKey":"pl181","X":670,"Y":451},{"Bonus":0,"Continent":"K33","ID":31096,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":7734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31096","ServerKey":"pl181","X":381,"Y":370},{"Bonus":0,"Continent":"K64","ID":31097,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31097","ServerKey":"pl181","X":420,"Y":655},{"Bonus":0,"Continent":"K46","ID":31098,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31098","ServerKey":"pl181","X":674,"Y":481},{"Bonus":0,"Continent":"K35","ID":31099,"Name":"yyyy","PlayerID":699883079,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31099","ServerKey":"pl181","X":500,"Y":369},{"Bonus":0,"Continent":"K53","ID":31100,"Name":"052","PlayerID":6853693,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31100","ServerKey":"pl181","X":339,"Y":570},{"Bonus":0,"Continent":"K56","ID":31101,"Name":"Asaret","PlayerID":699611673,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31101","ServerKey":"pl181","X":650,"Y":593},{"Bonus":0,"Continent":"K36","ID":31102,"Name":"Cleveland","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31102","ServerKey":"pl181","X":601,"Y":354},{"Bonus":0,"Continent":"K56","ID":31103,"Name":"E012","PlayerID":8428196,"Points":4212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31103","ServerKey":"pl181","X":661,"Y":560},{"Bonus":0,"Continent":"K56","ID":31104,"Name":"002","PlayerID":6929240,"Points":4347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31104","ServerKey":"pl181","X":662,"Y":549},{"Bonus":6,"Continent":"K53","ID":31105,"Name":"184..","PlayerID":849090130,"Points":6298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31105","ServerKey":"pl181","X":350,"Y":592},{"Bonus":0,"Continent":"K35","ID":31106,"Name":"Lord Lord Franek .#096","PlayerID":698420691,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31106","ServerKey":"pl181","X":511,"Y":324},{"Bonus":0,"Continent":"K46","ID":31107,"Name":"ASD","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31107","ServerKey":"pl181","X":680,"Y":490},{"Bonus":0,"Continent":"K43","ID":31108,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31108","ServerKey":"pl181","X":342,"Y":428},{"Bonus":0,"Continent":"K56","ID":31109,"Name":"Didi","PlayerID":849070946,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31109","ServerKey":"pl181","X":654,"Y":584},{"Bonus":0,"Continent":"K46","ID":31110,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31110","ServerKey":"pl181","X":672,"Y":480},{"Bonus":0,"Continent":"K34","ID":31111,"Name":"168...LordRDW","PlayerID":6920960,"Points":6611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31111","ServerKey":"pl181","X":443,"Y":336},{"Bonus":0,"Continent":"K65","ID":31113,"Name":"0292","PlayerID":698659980,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31113","ServerKey":"pl181","X":570,"Y":654},{"Bonus":0,"Continent":"K34","ID":31114,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":5488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31114","ServerKey":"pl181","X":453,"Y":334},{"Bonus":0,"Continent":"K35","ID":31115,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":9232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31115","ServerKey":"pl181","X":522,"Y":326},{"Bonus":0,"Continent":"K33","ID":31116,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31116","ServerKey":"pl181","X":394,"Y":358},{"Bonus":0,"Continent":"K53","ID":31117,"Name":"Amur","PlayerID":699265922,"Points":7398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31117","ServerKey":"pl181","X":329,"Y":545},{"Bonus":0,"Continent":"K53","ID":31118,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31118","ServerKey":"pl181","X":327,"Y":523},{"Bonus":0,"Continent":"K46","ID":31120,"Name":"58. KaruTown","PlayerID":9238175,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31120","ServerKey":"pl181","X":662,"Y":431},{"Bonus":3,"Continent":"K56","ID":31121,"Name":"*5612*e Nasza szansa","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31121","ServerKey":"pl181","X":657,"Y":580},{"Bonus":0,"Continent":"K53","ID":31122,"Name":"-013-","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31122","ServerKey":"pl181","X":339,"Y":559},{"Bonus":0,"Continent":"K36","ID":31123,"Name":"**15**","PlayerID":849098782,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31123","ServerKey":"pl181","X":634,"Y":387},{"Bonus":0,"Continent":"K53","ID":31124,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31124","ServerKey":"pl181","X":329,"Y":516},{"Bonus":0,"Continent":"K63","ID":31125,"Name":"014 ZƂoty dziewięćdziesiąt pięć","PlayerID":6354098,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31125","ServerKey":"pl181","X":386,"Y":629},{"Bonus":0,"Continent":"K63","ID":31126,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31126","ServerKey":"pl181","X":375,"Y":620},{"Bonus":0,"Continent":"K56","ID":31127,"Name":"Wioska 102","PlayerID":848971079,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31127","ServerKey":"pl181","X":649,"Y":586},{"Bonus":0,"Continent":"K54","ID":31128,"Name":"Erebor 5","PlayerID":699383121,"Points":8953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31128","ServerKey":"pl181","X":498,"Y":590},{"Bonus":0,"Continent":"K36","ID":31129,"Name":"Po ƛwiętach","PlayerID":848915730,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31129","ServerKey":"pl181","X":607,"Y":365},{"Bonus":0,"Continent":"K65","ID":31130,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31130","ServerKey":"pl181","X":507,"Y":676},{"Bonus":0,"Continent":"K46","ID":31131,"Name":"Jaaa","PlayerID":698635863,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31131","ServerKey":"pl181","X":670,"Y":494},{"Bonus":0,"Continent":"K46","ID":31132,"Name":"52. KaruTown","PlayerID":849091866,"Points":6041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31132","ServerKey":"pl181","X":642,"Y":402},{"Bonus":0,"Continent":"K35","ID":31133,"Name":"Krosno 8","PlayerID":7485877,"Points":2819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31133","ServerKey":"pl181","X":534,"Y":333},{"Bonus":0,"Continent":"K35","ID":31134,"Name":"- DragonA","PlayerID":699825236,"Points":9145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31134","ServerKey":"pl181","X":547,"Y":329},{"Bonus":0,"Continent":"K35","ID":31135,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31135","ServerKey":"pl181","X":563,"Y":335},{"Bonus":0,"Continent":"K64","ID":31136,"Name":"#Bakasta","PlayerID":699849210,"Points":8582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31136","ServerKey":"pl181","X":436,"Y":661},{"Bonus":0,"Continent":"K64","ID":31137,"Name":"027 Pont Vanis","PlayerID":699834004,"Points":6598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31137","ServerKey":"pl181","X":467,"Y":671},{"Bonus":0,"Continent":"K65","ID":31139,"Name":"02 Zamek","PlayerID":849097981,"Points":8454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31139","ServerKey":"pl181","X":539,"Y":674},{"Bonus":0,"Continent":"K34","ID":31140,"Name":"136...barb","PlayerID":6920960,"Points":6565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31140","ServerKey":"pl181","X":444,"Y":336},{"Bonus":5,"Continent":"K64","ID":31141,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31141","ServerKey":"pl181","X":417,"Y":647},{"Bonus":0,"Continent":"K34","ID":31142,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":8412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31142","ServerKey":"pl181","X":452,"Y":330},{"Bonus":0,"Continent":"K53","ID":31143,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":6086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31143","ServerKey":"pl181","X":347,"Y":572},{"Bonus":0,"Continent":"K65","ID":31144,"Name":"0165","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31144","ServerKey":"pl181","X":544,"Y":665},{"Bonus":0,"Continent":"K56","ID":31145,"Name":"Bocianikson019","PlayerID":7528491,"Points":5022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31145","ServerKey":"pl181","X":660,"Y":568},{"Bonus":0,"Continent":"K66","ID":31146,"Name":"Sony 911","PlayerID":1415009,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31146","ServerKey":"pl181","X":616,"Y":632},{"Bonus":0,"Continent":"K36","ID":31147,"Name":"! Stark Tower","PlayerID":699723284,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31147","ServerKey":"pl181","X":627,"Y":385},{"Bonus":0,"Continent":"K66","ID":31148,"Name":"WB 04","PlayerID":2269943,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31148","ServerKey":"pl181","X":637,"Y":608},{"Bonus":0,"Continent":"K43","ID":31149,"Name":"M181_030","PlayerID":393668,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31149","ServerKey":"pl181","X":340,"Y":432},{"Bonus":0,"Continent":"K63","ID":31150,"Name":"009","PlayerID":699083129,"Points":9284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31150","ServerKey":"pl181","X":362,"Y":604},{"Bonus":0,"Continent":"K36","ID":31151,"Name":"Wyspa 014","PlayerID":699756210,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31151","ServerKey":"pl181","X":624,"Y":379},{"Bonus":0,"Continent":"K64","ID":31152,"Name":"#Sk_015","PlayerID":699849210,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31152","ServerKey":"pl181","X":437,"Y":664},{"Bonus":0,"Continent":"K34","ID":31153,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31153","ServerKey":"pl181","X":485,"Y":325},{"Bonus":0,"Continent":"K46","ID":31154,"Name":"*4601* Ostra gra","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31154","ServerKey":"pl181","X":675,"Y":484},{"Bonus":0,"Continent":"K64","ID":31155,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":6867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31155","ServerKey":"pl181","X":458,"Y":664},{"Bonus":0,"Continent":"K35","ID":31156,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31156","ServerKey":"pl181","X":556,"Y":336},{"Bonus":5,"Continent":"K66","ID":31157,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31157","ServerKey":"pl181","X":639,"Y":604},{"Bonus":0,"Continent":"K56","ID":31158,"Name":"Wioska 047","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31158","ServerKey":"pl181","X":646,"Y":597},{"Bonus":0,"Continent":"K53","ID":31159,"Name":"C0273","PlayerID":8841266,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31159","ServerKey":"pl181","X":325,"Y":513},{"Bonus":0,"Continent":"K35","ID":31160,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":7523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31160","ServerKey":"pl181","X":544,"Y":337},{"Bonus":0,"Continent":"K56","ID":31161,"Name":"41k$ Grvvyq","PlayerID":699676005,"Points":9514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31161","ServerKey":"pl181","X":652,"Y":578},{"Bonus":0,"Continent":"K35","ID":31162,"Name":"- Dragon3","PlayerID":699825236,"Points":7321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31162","ServerKey":"pl181","X":548,"Y":332},{"Bonus":0,"Continent":"K63","ID":31163,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31163","ServerKey":"pl181","X":393,"Y":638},{"Bonus":0,"Continent":"K35","ID":31164,"Name":"Merkury","PlayerID":699797805,"Points":4326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31164","ServerKey":"pl181","X":547,"Y":337},{"Bonus":0,"Continent":"K64","ID":31165,"Name":"017 Bremervoord","PlayerID":699834004,"Points":8524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31165","ServerKey":"pl181","X":468,"Y":669},{"Bonus":0,"Continent":"K64","ID":31166,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31166","ServerKey":"pl181","X":418,"Y":656},{"Bonus":0,"Continent":"K65","ID":31167,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31167","ServerKey":"pl181","X":582,"Y":656},{"Bonus":0,"Continent":"K36","ID":31168,"Name":"Gattacka","PlayerID":699298370,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31168","ServerKey":"pl181","X":617,"Y":374},{"Bonus":0,"Continent":"K53","ID":31169,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31169","ServerKey":"pl181","X":336,"Y":554},{"Bonus":0,"Continent":"K56","ID":31170,"Name":"49k$ Grvvyq","PlayerID":699676005,"Points":7436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31170","ServerKey":"pl181","X":655,"Y":577},{"Bonus":0,"Continent":"K56","ID":31171,"Name":"Wioska 121","PlayerID":848971079,"Points":9294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31171","ServerKey":"pl181","X":672,"Y":524},{"Bonus":5,"Continent":"K65","ID":31172,"Name":"|C| Southgulf","PlayerID":698147372,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31172","ServerKey":"pl181","X":508,"Y":669},{"Bonus":0,"Continent":"K43","ID":31173,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31173","ServerKey":"pl181","X":332,"Y":461},{"Bonus":0,"Continent":"K53","ID":31174,"Name":"deff 100 %","PlayerID":849012521,"Points":8945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31174","ServerKey":"pl181","X":346,"Y":569},{"Bonus":0,"Continent":"K34","ID":31175,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":8753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31175","ServerKey":"pl181","X":448,"Y":333},{"Bonus":0,"Continent":"K53","ID":31176,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31176","ServerKey":"pl181","X":330,"Y":517},{"Bonus":0,"Continent":"K43","ID":31177,"Name":"*174*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31177","ServerKey":"pl181","X":347,"Y":414},{"Bonus":0,"Continent":"K66","ID":31178,"Name":"Ć»UBR .::.B.E.T.O.N /6","PlayerID":33900,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31178","ServerKey":"pl181","X":626,"Y":619},{"Bonus":0,"Continent":"K35","ID":31179,"Name":"Wrath 008","PlayerID":699756210,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31179","ServerKey":"pl181","X":574,"Y":344},{"Bonus":0,"Continent":"K64","ID":31180,"Name":"028","PlayerID":698650301,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31180","ServerKey":"pl181","X":477,"Y":670},{"Bonus":0,"Continent":"K43","ID":31181,"Name":"Westfold.015","PlayerID":848918380,"Points":7555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31181","ServerKey":"pl181","X":346,"Y":419},{"Bonus":0,"Continent":"K46","ID":31182,"Name":"Wallie","PlayerID":1086351,"Points":4141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31182","ServerKey":"pl181","X":647,"Y":413},{"Bonus":0,"Continent":"K66","ID":31183,"Name":"Ć»UBR .::.Adaczu/01","PlayerID":33900,"Points":7104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31183","ServerKey":"pl181","X":608,"Y":631},{"Bonus":9,"Continent":"K46","ID":31184,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31184","ServerKey":"pl181","X":675,"Y":499},{"Bonus":0,"Continent":"K36","ID":31185,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31185","ServerKey":"pl181","X":610,"Y":369},{"Bonus":0,"Continent":"K33","ID":31186,"Name":"*128*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31186","ServerKey":"pl181","X":365,"Y":391},{"Bonus":0,"Continent":"K56","ID":31187,"Name":"O35 Akita","PlayerID":699272880,"Points":8246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31187","ServerKey":"pl181","X":671,"Y":519},{"Bonus":0,"Continent":"K66","ID":31188,"Name":"Gra o Tron","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31188","ServerKey":"pl181","X":612,"Y":631},{"Bonus":0,"Continent":"K56","ID":31189,"Name":"_PUSTA+","PlayerID":699628084,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31189","ServerKey":"pl181","X":669,"Y":552},{"Bonus":0,"Continent":"K36","ID":31190,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31190","ServerKey":"pl181","X":601,"Y":395},{"Bonus":8,"Continent":"K43","ID":31191,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31191","ServerKey":"pl181","X":354,"Y":406},{"Bonus":0,"Continent":"K46","ID":31192,"Name":"A001 mpiechu","PlayerID":113796,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31192","ServerKey":"pl181","X":669,"Y":450},{"Bonus":0,"Continent":"K43","ID":31193,"Name":"A0268","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31193","ServerKey":"pl181","X":328,"Y":487},{"Bonus":0,"Continent":"K34","ID":31194,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":8860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31194","ServerKey":"pl181","X":400,"Y":357},{"Bonus":0,"Continent":"K53","ID":31195,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31195","ServerKey":"pl181","X":325,"Y":526},{"Bonus":0,"Continent":"K34","ID":31196,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31196","ServerKey":"pl181","X":487,"Y":328},{"Bonus":0,"Continent":"K66","ID":31197,"Name":"*022","PlayerID":699567608,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31197","ServerKey":"pl181","X":602,"Y":643},{"Bonus":0,"Continent":"K66","ID":31200,"Name":"zzzRezygnacja 03","PlayerID":699778867,"Points":9141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31200","ServerKey":"pl181","X":630,"Y":608},{"Bonus":0,"Continent":"K34","ID":31201,"Name":"139...barba","PlayerID":6920960,"Points":5984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31201","ServerKey":"pl181","X":443,"Y":341},{"Bonus":0,"Continent":"K33","ID":31202,"Name":"*056*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31202","ServerKey":"pl181","X":360,"Y":392},{"Bonus":0,"Continent":"K34","ID":31203,"Name":"#0092 barbarzyƄska","PlayerID":1238300,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31203","ServerKey":"pl181","X":467,"Y":329},{"Bonus":0,"Continent":"K35","ID":31204,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":6592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31204","ServerKey":"pl181","X":590,"Y":349},{"Bonus":0,"Continent":"K56","ID":31205,"Name":"#114#","PlayerID":692803,"Points":8575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31205","ServerKey":"pl181","X":639,"Y":597},{"Bonus":0,"Continent":"K34","ID":31207,"Name":"[B]_[019] Dejv.oldplyr","PlayerID":699380607,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31207","ServerKey":"pl181","X":422,"Y":341},{"Bonus":0,"Continent":"K53","ID":31208,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31208","ServerKey":"pl181","X":340,"Y":577},{"Bonus":0,"Continent":"K34","ID":31209,"Name":"#0053 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31209","ServerKey":"pl181","X":469,"Y":326},{"Bonus":0,"Continent":"K46","ID":31210,"Name":"Jaaa","PlayerID":698635863,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31210","ServerKey":"pl181","X":676,"Y":488},{"Bonus":0,"Continent":"K66","ID":31211,"Name":"0148","PlayerID":698416970,"Points":6074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31211","ServerKey":"pl181","X":635,"Y":611},{"Bonus":0,"Continent":"K66","ID":31213,"Name":"sony911","PlayerID":1415009,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31213","ServerKey":"pl181","X":619,"Y":630},{"Bonus":0,"Continent":"K34","ID":31214,"Name":"#0069 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31214","ServerKey":"pl181","X":479,"Y":331},{"Bonus":0,"Continent":"K46","ID":31215,"Name":"A014 Barba","PlayerID":113796,"Points":10379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31215","ServerKey":"pl181","X":663,"Y":445},{"Bonus":0,"Continent":"K43","ID":31216,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":11074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31216","ServerKey":"pl181","X":334,"Y":458},{"Bonus":0,"Continent":"K64","ID":31217,"Name":"Psycha Siada","PlayerID":698807570,"Points":7668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31217","ServerKey":"pl181","X":449,"Y":668},{"Bonus":0,"Continent":"K53","ID":31218,"Name":"Wioska barbarzyƄska","PlayerID":849014147,"Points":2330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31218","ServerKey":"pl181","X":351,"Y":594},{"Bonus":0,"Continent":"K53","ID":31219,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31219","ServerKey":"pl181","X":330,"Y":540},{"Bonus":0,"Continent":"K35","ID":31220,"Name":"J#018","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31220","ServerKey":"pl181","X":574,"Y":339},{"Bonus":0,"Continent":"K35","ID":31221,"Name":"- Dragon2","PlayerID":699825236,"Points":7760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31221","ServerKey":"pl181","X":548,"Y":333},{"Bonus":0,"Continent":"K53","ID":31222,"Name":"C0068","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31222","ServerKey":"pl181","X":324,"Y":517},{"Bonus":0,"Continent":"K35","ID":31223,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31223","ServerKey":"pl181","X":564,"Y":338},{"Bonus":0,"Continent":"K43","ID":31224,"Name":"*249*","PlayerID":699273451,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31224","ServerKey":"pl181","X":337,"Y":442},{"Bonus":0,"Continent":"K46","ID":31225,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31225","ServerKey":"pl181","X":672,"Y":483},{"Bonus":0,"Continent":"K46","ID":31226,"Name":"Happy station","PlayerID":1086351,"Points":3636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31226","ServerKey":"pl181","X":643,"Y":401},{"Bonus":0,"Continent":"K53","ID":31227,"Name":"deff 100 %","PlayerID":849012521,"Points":8864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31227","ServerKey":"pl181","X":344,"Y":570},{"Bonus":0,"Continent":"K54","ID":31228,"Name":"~046.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31228","ServerKey":"pl181","X":473,"Y":596},{"Bonus":0,"Continent":"K66","ID":31229,"Name":"Sony 911","PlayerID":1415009,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31229","ServerKey":"pl181","X":619,"Y":628},{"Bonus":0,"Continent":"K43","ID":31230,"Name":"Szlachcic","PlayerID":6258092,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31230","ServerKey":"pl181","X":395,"Y":486},{"Bonus":0,"Continent":"K34","ID":31231,"Name":"#0107 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31231","ServerKey":"pl181","X":481,"Y":331},{"Bonus":0,"Continent":"K35","ID":31232,"Name":"J#022","PlayerID":2065730,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31232","ServerKey":"pl181","X":573,"Y":340},{"Bonus":0,"Continent":"K36","ID":31233,"Name":"**11**","PlayerID":849098782,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31233","ServerKey":"pl181","X":633,"Y":388},{"Bonus":0,"Continent":"K33","ID":31234,"Name":"Szlachcic","PlayerID":3484132,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31234","ServerKey":"pl181","X":397,"Y":359},{"Bonus":0,"Continent":"K36","ID":31235,"Name":"Inny plan","PlayerID":7555180,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31235","ServerKey":"pl181","X":629,"Y":378},{"Bonus":0,"Continent":"K56","ID":31236,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31236","ServerKey":"pl181","X":608,"Y":561},{"Bonus":0,"Continent":"K46","ID":31237,"Name":"ABC","PlayerID":1086351,"Points":8989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31237","ServerKey":"pl181","X":652,"Y":419},{"Bonus":0,"Continent":"K46","ID":31238,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31238","ServerKey":"pl181","X":677,"Y":492},{"Bonus":0,"Continent":"K35","ID":31239,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":5137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31239","ServerKey":"pl181","X":595,"Y":350},{"Bonus":0,"Continent":"K65","ID":31240,"Name":"*016","PlayerID":699567608,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31240","ServerKey":"pl181","X":595,"Y":642},{"Bonus":0,"Continent":"K34","ID":31241,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":5834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31241","ServerKey":"pl181","X":435,"Y":340},{"Bonus":0,"Continent":"K46","ID":31242,"Name":"078. Ambracia","PlayerID":849091866,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31242","ServerKey":"pl181","X":653,"Y":412},{"Bonus":2,"Continent":"K65","ID":31243,"Name":"*001","PlayerID":699567608,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31243","ServerKey":"pl181","X":598,"Y":643},{"Bonus":0,"Continent":"K65","ID":31244,"Name":"0230","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31244","ServerKey":"pl181","X":555,"Y":663},{"Bonus":0,"Continent":"K55","ID":31245,"Name":"[192]","PlayerID":8000875,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31245","ServerKey":"pl181","X":539,"Y":513},{"Bonus":0,"Continent":"K46","ID":31246,"Name":"156 Nocny Jastrząb 001","PlayerID":699491076,"Points":9070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31246","ServerKey":"pl181","X":645,"Y":400},{"Bonus":0,"Continent":"K64","ID":31247,"Name":"D05 Macko więcej deffa.","PlayerID":849037407,"Points":7084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31247","ServerKey":"pl181","X":459,"Y":668},{"Bonus":0,"Continent":"K53","ID":31248,"Name":"Klen","PlayerID":699265922,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31248","ServerKey":"pl181","X":330,"Y":542},{"Bonus":0,"Continent":"K66","ID":31250,"Name":"PUSTO","PlayerID":698191218,"Points":4404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31250","ServerKey":"pl181","X":637,"Y":604},{"Bonus":0,"Continent":"K46","ID":31251,"Name":"Qadros","PlayerID":699574408,"Points":10151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31251","ServerKey":"pl181","X":675,"Y":475},{"Bonus":0,"Continent":"K63","ID":31252,"Name":"008 Wioska barbarzyƄska","PlayerID":6354098,"Points":8859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31252","ServerKey":"pl181","X":383,"Y":627},{"Bonus":0,"Continent":"K34","ID":31253,"Name":"North Barba 046","PlayerID":699796330,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31253","ServerKey":"pl181","X":423,"Y":349},{"Bonus":0,"Continent":"K46","ID":31254,"Name":"**43**","PlayerID":849098782,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31254","ServerKey":"pl181","X":665,"Y":442},{"Bonus":0,"Continent":"K63","ID":31255,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31255","ServerKey":"pl181","X":389,"Y":635},{"Bonus":0,"Continent":"K53","ID":31256,"Name":"C0164","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31256","ServerKey":"pl181","X":328,"Y":539},{"Bonus":0,"Continent":"K33","ID":31257,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":4010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31257","ServerKey":"pl181","X":372,"Y":386},{"Bonus":0,"Continent":"K34","ID":31258,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31258","ServerKey":"pl181","X":483,"Y":326},{"Bonus":0,"Continent":"K65","ID":31259,"Name":"sony911","PlayerID":1415009,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31259","ServerKey":"pl181","X":589,"Y":650},{"Bonus":0,"Continent":"K46","ID":31260,"Name":"I050","PlayerID":699722599,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31260","ServerKey":"pl181","X":668,"Y":452},{"Bonus":0,"Continent":"K65","ID":31261,"Name":"Be patient","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31261","ServerKey":"pl181","X":509,"Y":676},{"Bonus":0,"Continent":"K34","ID":31262,"Name":"0072","PlayerID":699431255,"Points":6569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31262","ServerKey":"pl181","X":409,"Y":350},{"Bonus":0,"Continent":"K56","ID":31263,"Name":"B.021","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31263","ServerKey":"pl181","X":677,"Y":502},{"Bonus":8,"Continent":"K65","ID":31264,"Name":"Osada koczownikĂłw","PlayerID":848915531,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31264","ServerKey":"pl181","X":549,"Y":662},{"Bonus":0,"Continent":"K43","ID":31265,"Name":"*214*","PlayerID":699273451,"Points":5364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31265","ServerKey":"pl181","X":350,"Y":415},{"Bonus":3,"Continent":"K43","ID":31266,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31266","ServerKey":"pl181","X":328,"Y":459},{"Bonus":0,"Continent":"K56","ID":31267,"Name":"073","PlayerID":849095227,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31267","ServerKey":"pl181","X":661,"Y":565},{"Bonus":0,"Continent":"K46","ID":31268,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31268","ServerKey":"pl181","X":673,"Y":490},{"Bonus":0,"Continent":"K56","ID":31269,"Name":"56k$ Grvvyq","PlayerID":699676005,"Points":8837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31269","ServerKey":"pl181","X":653,"Y":575},{"Bonus":0,"Continent":"K35","ID":31270,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":7171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31270","ServerKey":"pl181","X":544,"Y":335},{"Bonus":3,"Continent":"K35","ID":31271,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31271","ServerKey":"pl181","X":578,"Y":350},{"Bonus":0,"Continent":"K56","ID":31272,"Name":"[171]","PlayerID":8000875,"Points":8218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31272","ServerKey":"pl181","X":649,"Y":581},{"Bonus":0,"Continent":"K33","ID":31273,"Name":"*126*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31273","ServerKey":"pl181","X":363,"Y":389},{"Bonus":0,"Continent":"K36","ID":31274,"Name":"003 Ɓuk Kurski","PlayerID":849091899,"Points":11281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31274","ServerKey":"pl181","X":608,"Y":361},{"Bonus":0,"Continent":"K35","ID":31275,"Name":"Lord Lord Franek .#171","PlayerID":698420691,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31275","ServerKey":"pl181","X":507,"Y":327},{"Bonus":0,"Continent":"K56","ID":31276,"Name":"064","PlayerID":699413040,"Points":6932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31276","ServerKey":"pl181","X":677,"Y":501},{"Bonus":0,"Continent":"K33","ID":31277,"Name":"Szlachcic","PlayerID":3484132,"Points":8250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31277","ServerKey":"pl181","X":396,"Y":360},{"Bonus":0,"Continent":"K46","ID":31278,"Name":"Dark hill","PlayerID":1086351,"Points":3706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31278","ServerKey":"pl181","X":647,"Y":409},{"Bonus":0,"Continent":"K34","ID":31279,"Name":"Wioska bada","PlayerID":6118079,"Points":6250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31279","ServerKey":"pl181","X":494,"Y":329},{"Bonus":0,"Continent":"K63","ID":31280,"Name":"Pobozowisko","PlayerID":699513260,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31280","ServerKey":"pl181","X":364,"Y":609},{"Bonus":0,"Continent":"K43","ID":31281,"Name":"*248*","PlayerID":699273451,"Points":6641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31281","ServerKey":"pl181","X":335,"Y":440},{"Bonus":0,"Continent":"K43","ID":31282,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31282","ServerKey":"pl181","X":355,"Y":404},{"Bonus":0,"Continent":"K65","ID":31283,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31283","ServerKey":"pl181","X":596,"Y":646},{"Bonus":0,"Continent":"K65","ID":31284,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31284","ServerKey":"pl181","X":578,"Y":655},{"Bonus":7,"Continent":"K56","ID":31285,"Name":"044","PlayerID":849095227,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31285","ServerKey":"pl181","X":665,"Y":545},{"Bonus":0,"Continent":"K53","ID":31286,"Name":"Bairro Alto","PlayerID":699494480,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31286","ServerKey":"pl181","X":348,"Y":587},{"Bonus":0,"Continent":"K65","ID":31287,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31287","ServerKey":"pl181","X":510,"Y":674},{"Bonus":0,"Continent":"K66","ID":31288,"Name":"006","PlayerID":849097799,"Points":8414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31288","ServerKey":"pl181","X":601,"Y":636},{"Bonus":0,"Continent":"K63","ID":31289,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31289","ServerKey":"pl181","X":384,"Y":631},{"Bonus":0,"Continent":"K65","ID":31291,"Name":"0276","PlayerID":698659980,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31291","ServerKey":"pl181","X":555,"Y":666},{"Bonus":0,"Continent":"K35","ID":31292,"Name":"Lord Lord Franek .#182","PlayerID":698420691,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31292","ServerKey":"pl181","X":543,"Y":330},{"Bonus":0,"Continent":"K65","ID":31293,"Name":"0428","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31293","ServerKey":"pl181","X":551,"Y":668},{"Bonus":0,"Continent":"K35","ID":31294,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31294","ServerKey":"pl181","X":561,"Y":341},{"Bonus":0,"Continent":"K66","ID":31295,"Name":"Ć»ubr .::. Metanol Lecter/5","PlayerID":33900,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31295","ServerKey":"pl181","X":607,"Y":634},{"Bonus":0,"Continent":"K66","ID":31296,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31296","ServerKey":"pl181","X":640,"Y":607},{"Bonus":0,"Continent":"K35","ID":31297,"Name":"81 Ta ostatnia Niedziela :)998(:","PlayerID":2571407,"Points":5650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31297","ServerKey":"pl181","X":523,"Y":332},{"Bonus":0,"Continent":"K44","ID":31298,"Name":"00571 Wioska","PlayerID":3909522,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31298","ServerKey":"pl181","X":446,"Y":425},{"Bonus":0,"Continent":"K35","ID":31299,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31299","ServerKey":"pl181","X":558,"Y":340},{"Bonus":0,"Continent":"K56","ID":31300,"Name":"E013","PlayerID":8428196,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31300","ServerKey":"pl181","X":660,"Y":560},{"Bonus":0,"Continent":"K64","ID":31301,"Name":"Psycha Siada","PlayerID":698807570,"Points":7653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31301","ServerKey":"pl181","X":447,"Y":668},{"Bonus":0,"Continent":"K55","ID":31302,"Name":"Village","PlayerID":849094067,"Points":11466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31302","ServerKey":"pl181","X":506,"Y":569},{"Bonus":0,"Continent":"K36","ID":31303,"Name":"Taran 033","PlayerID":699098531,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31303","ServerKey":"pl181","X":620,"Y":374},{"Bonus":0,"Continent":"K64","ID":31304,"Name":"EKG .::. Mat26/1","PlayerID":33900,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31304","ServerKey":"pl181","X":496,"Y":615},{"Bonus":0,"Continent":"K65","ID":31305,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31305","ServerKey":"pl181","X":579,"Y":655},{"Bonus":0,"Continent":"K65","ID":31306,"Name":"Ave Why!","PlayerID":698585370,"Points":4309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31306","ServerKey":"pl181","X":500,"Y":670},{"Bonus":0,"Continent":"K46","ID":31307,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":9157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31307","ServerKey":"pl181","X":677,"Y":485},{"Bonus":0,"Continent":"K63","ID":31308,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31308","ServerKey":"pl181","X":398,"Y":639},{"Bonus":0,"Continent":"K33","ID":31309,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":6575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31309","ServerKey":"pl181","X":360,"Y":398},{"Bonus":0,"Continent":"K64","ID":31310,"Name":"Sk_006","PlayerID":8954402,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31310","ServerKey":"pl181","X":438,"Y":660},{"Bonus":0,"Continent":"K53","ID":31311,"Name":"Wioska barbarzyƄska","PlayerID":8877156,"Points":6606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31311","ServerKey":"pl181","X":352,"Y":597},{"Bonus":0,"Continent":"K33","ID":31313,"Name":"*051*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31313","ServerKey":"pl181","X":356,"Y":396},{"Bonus":0,"Continent":"K65","ID":31314,"Name":"#0051","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31314","ServerKey":"pl181","X":541,"Y":628},{"Bonus":0,"Continent":"K36","ID":31315,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":4270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31315","ServerKey":"pl181","X":602,"Y":362},{"Bonus":0,"Continent":"K46","ID":31317,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31317","ServerKey":"pl181","X":672,"Y":477},{"Bonus":0,"Continent":"K64","ID":31318,"Name":"0615","PlayerID":698650301,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31318","ServerKey":"pl181","X":478,"Y":675},{"Bonus":0,"Continent":"K33","ID":31319,"Name":"Szulernia","PlayerID":7249451,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31319","ServerKey":"pl181","X":387,"Y":366},{"Bonus":0,"Continent":"K53","ID":31320,"Name":"C0276","PlayerID":8841266,"Points":7999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31320","ServerKey":"pl181","X":326,"Y":508},{"Bonus":0,"Continent":"K64","ID":31321,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31321","ServerKey":"pl181","X":419,"Y":657},{"Bonus":0,"Continent":"K34","ID":31322,"Name":"[B]_[020] Dejv.oldplyr","PlayerID":699380607,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31322","ServerKey":"pl181","X":422,"Y":342},{"Bonus":0,"Continent":"K35","ID":31323,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31323","ServerKey":"pl181","X":562,"Y":343},{"Bonus":0,"Continent":"K64","ID":31324,"Name":"Forza 11","PlayerID":8954402,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31324","ServerKey":"pl181","X":440,"Y":663},{"Bonus":0,"Continent":"K46","ID":31325,"Name":"120","PlayerID":849088515,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31325","ServerKey":"pl181","X":652,"Y":422},{"Bonus":0,"Continent":"K34","ID":31326,"Name":"0074","PlayerID":699431255,"Points":6482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31326","ServerKey":"pl181","X":416,"Y":344},{"Bonus":9,"Continent":"K53","ID":31328,"Name":"C004","PlayerID":8607734,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31328","ServerKey":"pl181","X":361,"Y":598},{"Bonus":0,"Continent":"K35","ID":31330,"Name":"001.","PlayerID":699797805,"Points":2347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31330","ServerKey":"pl181","X":557,"Y":334},{"Bonus":0,"Continent":"K46","ID":31331,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31331","ServerKey":"pl181","X":673,"Y":471},{"Bonus":0,"Continent":"K63","ID":31332,"Name":"014 Szachy - Hetman","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31332","ServerKey":"pl181","X":364,"Y":607},{"Bonus":0,"Continent":"K46","ID":31333,"Name":"Plls2","PlayerID":1086351,"Points":3914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31333","ServerKey":"pl181","X":654,"Y":412},{"Bonus":0,"Continent":"K33","ID":31334,"Name":"Wioska Westor 5","PlayerID":699530673,"Points":4629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31334","ServerKey":"pl181","X":358,"Y":398},{"Bonus":0,"Continent":"K35","ID":31335,"Name":"krytl11","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31335","ServerKey":"pl181","X":514,"Y":324},{"Bonus":0,"Continent":"K65","ID":31336,"Name":"0442","PlayerID":698659980,"Points":7836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31336","ServerKey":"pl181","X":534,"Y":671},{"Bonus":0,"Continent":"K65","ID":31337,"Name":"Bezimienni Bytom","PlayerID":848995242,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31337","ServerKey":"pl181","X":585,"Y":651},{"Bonus":0,"Continent":"K63","ID":31338,"Name":"A 002","PlayerID":699342219,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31338","ServerKey":"pl181","X":367,"Y":618},{"Bonus":0,"Continent":"K56","ID":31339,"Name":"Wioska 103","PlayerID":848971079,"Points":7071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31339","ServerKey":"pl181","X":648,"Y":590},{"Bonus":0,"Continent":"K35","ID":31340,"Name":"AAA","PlayerID":1006847,"Points":9656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31340","ServerKey":"pl181","X":529,"Y":327},{"Bonus":0,"Continent":"K56","ID":31341,"Name":"59k$ Grvvyq","PlayerID":699676005,"Points":7615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31341","ServerKey":"pl181","X":654,"Y":575},{"Bonus":0,"Continent":"K36","ID":31342,"Name":"108","PlayerID":7085502,"Points":5700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31342","ServerKey":"pl181","X":616,"Y":367},{"Bonus":2,"Continent":"K43","ID":31344,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31344","ServerKey":"pl181","X":330,"Y":454},{"Bonus":0,"Continent":"K65","ID":31345,"Name":"0574","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31345","ServerKey":"pl181","X":565,"Y":658},{"Bonus":0,"Continent":"K66","ID":31346,"Name":"025","PlayerID":849097799,"Points":7512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31346","ServerKey":"pl181","X":602,"Y":640},{"Bonus":0,"Continent":"K63","ID":31347,"Name":"011 TrĂłjmiasto 2/3","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31347","ServerKey":"pl181","X":388,"Y":628},{"Bonus":7,"Continent":"K65","ID":31348,"Name":"0075","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31348","ServerKey":"pl181","X":545,"Y":668},{"Bonus":0,"Continent":"K55","ID":31349,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31349","ServerKey":"pl181","X":526,"Y":545},{"Bonus":0,"Continent":"K46","ID":31350,"Name":"Jaaa","PlayerID":698635863,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31350","ServerKey":"pl181","X":672,"Y":489},{"Bonus":0,"Continent":"K46","ID":31351,"Name":"City","PlayerID":1086351,"Points":4945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31351","ServerKey":"pl181","X":655,"Y":408},{"Bonus":0,"Continent":"K65","ID":31352,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31352","ServerKey":"pl181","X":575,"Y":661},{"Bonus":0,"Continent":"K46","ID":31353,"Name":"I045 Czy ten Pan i Pani","PlayerID":699722599,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31353","ServerKey":"pl181","X":670,"Y":458},{"Bonus":0,"Continent":"K46","ID":31354,"Name":"I020","PlayerID":699722599,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31354","ServerKey":"pl181","X":665,"Y":451},{"Bonus":0,"Continent":"K34","ID":31355,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31355","ServerKey":"pl181","X":487,"Y":327},{"Bonus":0,"Continent":"K65","ID":31356,"Name":"|C| Oflashoot","PlayerID":698147372,"Points":6297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31356","ServerKey":"pl181","X":500,"Y":672},{"Bonus":0,"Continent":"K53","ID":31357,"Name":"Dąbrowa 0019","PlayerID":849096972,"Points":4503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31357","ServerKey":"pl181","X":359,"Y":597},{"Bonus":0,"Continent":"K33","ID":31358,"Name":"Szulernia","PlayerID":7249451,"Points":3362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31358","ServerKey":"pl181","X":379,"Y":373},{"Bonus":0,"Continent":"K36","ID":31359,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31359","ServerKey":"pl181","X":603,"Y":357},{"Bonus":0,"Continent":"K53","ID":31360,"Name":"C0283","PlayerID":8841266,"Points":5763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31360","ServerKey":"pl181","X":324,"Y":512},{"Bonus":0,"Continent":"K35","ID":31361,"Name":"Berlin","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31361","ServerKey":"pl181","X":548,"Y":355},{"Bonus":0,"Continent":"K66","ID":31362,"Name":"Wioska 097","PlayerID":848971079,"Points":8680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31362","ServerKey":"pl181","X":644,"Y":601},{"Bonus":0,"Continent":"K36","ID":31363,"Name":".9.","PlayerID":1990750,"Points":8117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31363","ServerKey":"pl181","X":610,"Y":361},{"Bonus":0,"Continent":"K46","ID":31364,"Name":"002","PlayerID":1086351,"Points":8450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31364","ServerKey":"pl181","X":651,"Y":407},{"Bonus":0,"Continent":"K64","ID":31365,"Name":"|039| Symi","PlayerID":699393742,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31365","ServerKey":"pl181","X":490,"Y":671},{"Bonus":0,"Continent":"K54","ID":31367,"Name":"Zero Stresu","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31367","ServerKey":"pl181","X":447,"Y":535},{"Bonus":0,"Continent":"K43","ID":31368,"Name":"A0269","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31368","ServerKey":"pl181","X":329,"Y":476},{"Bonus":0,"Continent":"K55","ID":31369,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31369","ServerKey":"pl181","X":582,"Y":582},{"Bonus":0,"Continent":"K46","ID":31370,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31370","ServerKey":"pl181","X":670,"Y":467},{"Bonus":0,"Continent":"K45","ID":31371,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31371","ServerKey":"pl181","X":514,"Y":425},{"Bonus":0,"Continent":"K35","ID":31372,"Name":"AAA","PlayerID":1006847,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31372","ServerKey":"pl181","X":532,"Y":327},{"Bonus":0,"Continent":"K66","ID":31373,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31373","ServerKey":"pl181","X":628,"Y":624},{"Bonus":0,"Continent":"K34","ID":31374,"Name":"234...cENTR","PlayerID":6920960,"Points":4177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31374","ServerKey":"pl181","X":463,"Y":332},{"Bonus":0,"Continent":"K35","ID":31375,"Name":"Lord Lord Franek .#132","PlayerID":698420691,"Points":7748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31375","ServerKey":"pl181","X":519,"Y":331},{"Bonus":0,"Continent":"K35","ID":31376,"Name":"AAA","PlayerID":1006847,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31376","ServerKey":"pl181","X":538,"Y":329},{"Bonus":0,"Continent":"K46","ID":31377,"Name":"024 idea","PlayerID":9238175,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31377","ServerKey":"pl181","X":660,"Y":430},{"Bonus":0,"Continent":"K43","ID":31378,"Name":"M181_027","PlayerID":393668,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31378","ServerKey":"pl181","X":338,"Y":437},{"Bonus":2,"Continent":"K43","ID":31379,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31379","ServerKey":"pl181","X":330,"Y":461},{"Bonus":0,"Continent":"K65","ID":31380,"Name":"|021| Samaria","PlayerID":699781762,"Points":9147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31380","ServerKey":"pl181","X":501,"Y":676},{"Bonus":0,"Continent":"K33","ID":31381,"Name":"*061*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31381","ServerKey":"pl181","X":354,"Y":399},{"Bonus":0,"Continent":"K64","ID":31383,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31383","ServerKey":"pl181","X":461,"Y":671},{"Bonus":0,"Continent":"K64","ID":31384,"Name":"B004","PlayerID":8954402,"Points":10975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31384","ServerKey":"pl181","X":470,"Y":674},{"Bonus":0,"Continent":"K33","ID":31385,"Name":"*189*","PlayerID":699273451,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31385","ServerKey":"pl181","X":374,"Y":375},{"Bonus":0,"Continent":"K66","ID":31386,"Name":"*024","PlayerID":699567608,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31386","ServerKey":"pl181","X":602,"Y":642},{"Bonus":0,"Continent":"K36","ID":31387,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31387","ServerKey":"pl181","X":600,"Y":352},{"Bonus":0,"Continent":"K33","ID":31388,"Name":"006 Avalon","PlayerID":849059457,"Points":6945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31388","ServerKey":"pl181","X":374,"Y":381},{"Bonus":0,"Continent":"K35","ID":31389,"Name":"Wioska barbarzyƄska","PlayerID":699066118,"Points":6256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31389","ServerKey":"pl181","X":546,"Y":335},{"Bonus":0,"Continent":"K33","ID":31390,"Name":"Szulernia","PlayerID":7249451,"Points":3036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31390","ServerKey":"pl181","X":380,"Y":371},{"Bonus":0,"Continent":"K43","ID":31391,"Name":"Westfold.005","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31391","ServerKey":"pl181","X":348,"Y":421},{"Bonus":0,"Continent":"K33","ID":31392,"Name":"Wioska Westor 3","PlayerID":699530673,"Points":4735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31392","ServerKey":"pl181","X":358,"Y":396},{"Bonus":0,"Continent":"K35","ID":31393,"Name":"016 .10. Infanterie-Division","PlayerID":849091899,"Points":2239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31393","ServerKey":"pl181","X":597,"Y":358},{"Bonus":0,"Continent":"K46","ID":31394,"Name":"0062","PlayerID":698416970,"Points":6508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31394","ServerKey":"pl181","X":671,"Y":460},{"Bonus":0,"Continent":"K43","ID":31395,"Name":"1.11","PlayerID":3502565,"Points":5154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31395","ServerKey":"pl181","X":339,"Y":446},{"Bonus":0,"Continent":"K63","ID":31396,"Name":"A 010","PlayerID":699342219,"Points":5894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31396","ServerKey":"pl181","X":371,"Y":618},{"Bonus":0,"Continent":"K36","ID":31397,"Name":".:001:. gr","PlayerID":849078297,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31397","ServerKey":"pl181","X":635,"Y":384},{"Bonus":0,"Continent":"K53","ID":31398,"Name":"C0262","PlayerID":8841266,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31398","ServerKey":"pl181","X":323,"Y":515},{"Bonus":0,"Continent":"K34","ID":31399,"Name":"fff","PlayerID":698239813,"Points":8672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31399","ServerKey":"pl181","X":491,"Y":323},{"Bonus":0,"Continent":"K35","ID":31400,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31400","ServerKey":"pl181","X":564,"Y":342},{"Bonus":0,"Continent":"K36","ID":31402,"Name":"**18**","PlayerID":849098782,"Points":9057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31402","ServerKey":"pl181","X":630,"Y":389},{"Bonus":0,"Continent":"K53","ID":31403,"Name":"Dajanka 33","PlayerID":849012843,"Points":1099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31403","ServerKey":"pl181","X":347,"Y":575},{"Bonus":0,"Continent":"K56","ID":31404,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31404","ServerKey":"pl181","X":669,"Y":519},{"Bonus":0,"Continent":"K43","ID":31405,"Name":"*007*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31405","ServerKey":"pl181","X":355,"Y":400},{"Bonus":0,"Continent":"K43","ID":31406,"Name":"*150*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31406","ServerKey":"pl181","X":351,"Y":417},{"Bonus":3,"Continent":"K63","ID":31407,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31407","ServerKey":"pl181","X":399,"Y":639},{"Bonus":0,"Continent":"K65","ID":31408,"Name":"Wioska r 1","PlayerID":848915531,"Points":4803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31408","ServerKey":"pl181","X":555,"Y":668},{"Bonus":7,"Continent":"K56","ID":31409,"Name":"Osada koczownikĂłw","PlayerID":849039310,"Points":8884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31409","ServerKey":"pl181","X":655,"Y":586},{"Bonus":0,"Continent":"K34","ID":31410,"Name":"Wioska 06","PlayerID":951823,"Points":7747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31410","ServerKey":"pl181","X":499,"Y":323},{"Bonus":0,"Continent":"K64","ID":31411,"Name":"A24","PlayerID":698652014,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31411","ServerKey":"pl181","X":473,"Y":670},{"Bonus":0,"Continent":"K55","ID":31412,"Name":"Gilonia","PlayerID":849066849,"Points":7688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31412","ServerKey":"pl181","X":513,"Y":556},{"Bonus":0,"Continent":"K65","ID":31413,"Name":"017","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31413","ServerKey":"pl181","X":518,"Y":670},{"Bonus":0,"Continent":"K63","ID":31414,"Name":"012 TrĂłjmiasto 3/3","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31414","ServerKey":"pl181","X":385,"Y":635},{"Bonus":0,"Continent":"K33","ID":31415,"Name":"*129*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31415","ServerKey":"pl181","X":365,"Y":392},{"Bonus":0,"Continent":"K53","ID":31416,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31416","ServerKey":"pl181","X":325,"Y":519},{"Bonus":0,"Continent":"K65","ID":31417,"Name":"Kreskowo_4","PlayerID":699567608,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31417","ServerKey":"pl181","X":594,"Y":649},{"Bonus":0,"Continent":"K43","ID":31418,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31418","ServerKey":"pl181","X":326,"Y":470},{"Bonus":0,"Continent":"K64","ID":31419,"Name":"Z|001| Mediolan","PlayerID":699393742,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31419","ServerKey":"pl181","X":471,"Y":673},{"Bonus":0,"Continent":"K46","ID":31420,"Name":"OSADA II","PlayerID":699598425,"Points":8143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31420","ServerKey":"pl181","X":677,"Y":499},{"Bonus":0,"Continent":"K33","ID":31421,"Name":"Szulernia","PlayerID":7249451,"Points":8061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31421","ServerKey":"pl181","X":382,"Y":368},{"Bonus":0,"Continent":"K56","ID":31422,"Name":"21k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31422","ServerKey":"pl181","X":657,"Y":568},{"Bonus":0,"Continent":"K53","ID":31423,"Name":"Dąbrowa 0021","PlayerID":849096972,"Points":5126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31423","ServerKey":"pl181","X":356,"Y":591},{"Bonus":0,"Continent":"K43","ID":31424,"Name":"002","PlayerID":699800377,"Points":2764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31424","ServerKey":"pl181","X":335,"Y":441},{"Bonus":0,"Continent":"K46","ID":31425,"Name":"[020] VW Klupo","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31425","ServerKey":"pl181","X":663,"Y":436},{"Bonus":0,"Continent":"K36","ID":31426,"Name":"ADEN","PlayerID":698588535,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31426","ServerKey":"pl181","X":602,"Y":355},{"Bonus":0,"Continent":"K33","ID":31427,"Name":"Szulernia","PlayerID":7249451,"Points":9209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31427","ServerKey":"pl181","X":387,"Y":369},{"Bonus":0,"Continent":"K66","ID":31428,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31428","ServerKey":"pl181","X":625,"Y":625},{"Bonus":0,"Continent":"K46","ID":31429,"Name":"I051","PlayerID":699722599,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31429","ServerKey":"pl181","X":670,"Y":455},{"Bonus":0,"Continent":"K35","ID":31430,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":8306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31430","ServerKey":"pl181","X":569,"Y":337},{"Bonus":0,"Continent":"K66","ID":31431,"Name":"Bunkier 004","PlayerID":699778867,"Points":7631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31431","ServerKey":"pl181","X":621,"Y":627},{"Bonus":0,"Continent":"K46","ID":31432,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31432","ServerKey":"pl181","X":677,"Y":490},{"Bonus":0,"Continent":"K53","ID":31433,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31433","ServerKey":"pl181","X":335,"Y":555},{"Bonus":0,"Continent":"K66","ID":31434,"Name":"Warkoczynka 2","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31434","ServerKey":"pl181","X":611,"Y":611},{"Bonus":0,"Continent":"K35","ID":31435,"Name":"Lord Lord Franek .#086","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31435","ServerKey":"pl181","X":517,"Y":325},{"Bonus":0,"Continent":"K33","ID":31436,"Name":"040 Rabka ZdrĂłj Akademia","PlayerID":848978297,"Points":2946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31436","ServerKey":"pl181","X":371,"Y":375},{"Bonus":0,"Continent":"K36","ID":31437,"Name":"026 * Lady Porto *","PlayerID":699406750,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31437","ServerKey":"pl181","X":644,"Y":397},{"Bonus":0,"Continent":"K36","ID":31438,"Name":".:004:. gr","PlayerID":849078297,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31438","ServerKey":"pl181","X":636,"Y":385},{"Bonus":0,"Continent":"K66","ID":31439,"Name":"BETON","PlayerID":2269943,"Points":7959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31439","ServerKey":"pl181","X":634,"Y":611},{"Bonus":0,"Continent":"K56","ID":31440,"Name":"B 034","PlayerID":8078914,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31440","ServerKey":"pl181","X":667,"Y":534},{"Bonus":0,"Continent":"K65","ID":31441,"Name":"001. Wioska Krugal 02","PlayerID":1270916,"Points":8833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31441","ServerKey":"pl181","X":577,"Y":658},{"Bonus":0,"Continent":"K65","ID":31442,"Name":"030. Upss","PlayerID":848928624,"Points":7110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31442","ServerKey":"pl181","X":514,"Y":670},{"Bonus":0,"Continent":"K43","ID":31443,"Name":"09. Cintra","PlayerID":848910122,"Points":612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31443","ServerKey":"pl181","X":331,"Y":457},{"Bonus":0,"Continent":"K63","ID":31444,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31444","ServerKey":"pl181","X":378,"Y":620},{"Bonus":9,"Continent":"K33","ID":31445,"Name":"cc Ć»or","PlayerID":3909522,"Points":9350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31445","ServerKey":"pl181","X":391,"Y":369},{"Bonus":0,"Continent":"K34","ID":31447,"Name":"Lecymy DUR","PlayerID":6169408,"Points":3648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31447","ServerKey":"pl181","X":441,"Y":363},{"Bonus":0,"Continent":"K35","ID":31448,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31448","ServerKey":"pl181","X":553,"Y":336},{"Bonus":0,"Continent":"K36","ID":31451,"Name":"009","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31451","ServerKey":"pl181","X":604,"Y":365},{"Bonus":0,"Continent":"K53","ID":31452,"Name":"Ƃódka","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31452","ServerKey":"pl181","X":329,"Y":549},{"Bonus":0,"Continent":"K36","ID":31453,"Name":"Wioska barbarzyƄska","PlayerID":310729,"Points":5618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31453","ServerKey":"pl181","X":611,"Y":363},{"Bonus":0,"Continent":"K56","ID":31454,"Name":"055","PlayerID":699413040,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31454","ServerKey":"pl181","X":676,"Y":502},{"Bonus":0,"Continent":"K64","ID":31455,"Name":"Adidas 2","PlayerID":9191031,"Points":5357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31455","ServerKey":"pl181","X":417,"Y":652},{"Bonus":0,"Continent":"K56","ID":31456,"Name":"029 - Jerez de la Frontera","PlayerID":698342159,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31456","ServerKey":"pl181","X":676,"Y":519},{"Bonus":0,"Continent":"K36","ID":31457,"Name":"001","PlayerID":1990750,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31457","ServerKey":"pl181","X":611,"Y":360},{"Bonus":0,"Continent":"K64","ID":31458,"Name":"027","PlayerID":698650301,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31458","ServerKey":"pl181","X":477,"Y":671},{"Bonus":0,"Continent":"K36","ID":31460,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31460","ServerKey":"pl181","X":613,"Y":366},{"Bonus":3,"Continent":"K35","ID":31461,"Name":"-005-","PlayerID":698588812,"Points":5363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31461","ServerKey":"pl181","X":544,"Y":331},{"Bonus":0,"Continent":"K33","ID":31462,"Name":"cz Wioska 16","PlayerID":3909522,"Points":4466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31462","ServerKey":"pl181","X":365,"Y":386},{"Bonus":0,"Continent":"K43","ID":31463,"Name":"M181_033","PlayerID":393668,"Points":10321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31463","ServerKey":"pl181","X":339,"Y":430},{"Bonus":0,"Continent":"K55","ID":31464,"Name":"-004- Amazonia","PlayerID":699111651,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31464","ServerKey":"pl181","X":578,"Y":586},{"Bonus":0,"Continent":"K46","ID":31465,"Name":"Centrum 2","PlayerID":1086351,"Points":4302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31465","ServerKey":"pl181","X":652,"Y":412},{"Bonus":4,"Continent":"K35","ID":31466,"Name":"Wioska 01","PlayerID":951823,"Points":7822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31466","ServerKey":"pl181","X":502,"Y":324},{"Bonus":0,"Continent":"K36","ID":31467,"Name":"O tutaj","PlayerID":849041192,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31467","ServerKey":"pl181","X":601,"Y":362},{"Bonus":0,"Continent":"K43","ID":31468,"Name":"*139*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31468","ServerKey":"pl181","X":356,"Y":410},{"Bonus":0,"Continent":"K66","ID":31469,"Name":"229 |","PlayerID":8000875,"Points":7207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31469","ServerKey":"pl181","X":644,"Y":605},{"Bonus":0,"Continent":"K46","ID":31470,"Name":"Jaaa","PlayerID":698635863,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31470","ServerKey":"pl181","X":671,"Y":486},{"Bonus":9,"Continent":"K56","ID":31471,"Name":"OFF","PlayerID":1563417,"Points":8809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31471","ServerKey":"pl181","X":670,"Y":524},{"Bonus":0,"Continent":"K43","ID":31472,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31472","ServerKey":"pl181","X":325,"Y":476},{"Bonus":0,"Continent":"K53","ID":31473,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":4901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31473","ServerKey":"pl181","X":340,"Y":562},{"Bonus":0,"Continent":"K65","ID":31474,"Name":"0287","PlayerID":698659980,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31474","ServerKey":"pl181","X":545,"Y":671},{"Bonus":0,"Continent":"K46","ID":31475,"Name":"WB2","PlayerID":1086351,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31475","ServerKey":"pl181","X":654,"Y":410},{"Bonus":0,"Continent":"K54","ID":31476,"Name":"070 - woli","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31476","ServerKey":"pl181","X":426,"Y":582},{"Bonus":0,"Continent":"K46","ID":31477,"Name":"Whiskey","PlayerID":699737356,"Points":8902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31477","ServerKey":"pl181","X":674,"Y":496},{"Bonus":9,"Continent":"K63","ID":31478,"Name":"007","PlayerID":699083129,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31478","ServerKey":"pl181","X":359,"Y":606},{"Bonus":0,"Continent":"K55","ID":31479,"Name":"Wioska 9","PlayerID":699385139,"Points":7909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31479","ServerKey":"pl181","X":531,"Y":517},{"Bonus":0,"Continent":"K46","ID":31480,"Name":"002","PlayerID":699737356,"Points":7520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31480","ServerKey":"pl181","X":675,"Y":495},{"Bonus":0,"Continent":"K46","ID":31481,"Name":"Jaaa","PlayerID":698635863,"Points":9024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31481","ServerKey":"pl181","X":671,"Y":498},{"Bonus":0,"Continent":"K43","ID":31482,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31482","ServerKey":"pl181","X":325,"Y":473},{"Bonus":0,"Continent":"K33","ID":31483,"Name":"Szulernia","PlayerID":7249451,"Points":4315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31483","ServerKey":"pl181","X":378,"Y":370},{"Bonus":0,"Continent":"K46","ID":31484,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31484","ServerKey":"pl181","X":669,"Y":448},{"Bonus":6,"Continent":"K43","ID":31485,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31485","ServerKey":"pl181","X":327,"Y":462},{"Bonus":0,"Continent":"K53","ID":31486,"Name":"deff 100 %","PlayerID":849012521,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31486","ServerKey":"pl181","X":342,"Y":578},{"Bonus":0,"Continent":"K65","ID":31487,"Name":"golisz nogi ?","PlayerID":848995242,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31487","ServerKey":"pl181","X":592,"Y":652},{"Bonus":0,"Continent":"K53","ID":31488,"Name":"Paranoje","PlayerID":7318415,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31488","ServerKey":"pl181","X":344,"Y":581},{"Bonus":0,"Continent":"K56","ID":31489,"Name":"054","PlayerID":849095227,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31489","ServerKey":"pl181","X":669,"Y":545},{"Bonus":0,"Continent":"K36","ID":31490,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31490","ServerKey":"pl181","X":619,"Y":366},{"Bonus":0,"Continent":"K43","ID":31491,"Name":"1.13","PlayerID":3502565,"Points":4326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31491","ServerKey":"pl181","X":335,"Y":450},{"Bonus":0,"Continent":"K56","ID":31492,"Name":"O43 Trabzon","PlayerID":699272880,"Points":9003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31492","ServerKey":"pl181","X":671,"Y":543},{"Bonus":0,"Continent":"K36","ID":31493,"Name":"071","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31493","ServerKey":"pl181","X":601,"Y":358},{"Bonus":0,"Continent":"K43","ID":31494,"Name":"Wioska barbarzyƄska","PlayerID":7012651,"Points":2095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31494","ServerKey":"pl181","X":331,"Y":452},{"Bonus":0,"Continent":"K34","ID":31495,"Name":"010","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31495","ServerKey":"pl181","X":456,"Y":332},{"Bonus":0,"Continent":"K35","ID":31496,"Name":"Stamford, Connecticut","PlayerID":699491076,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31496","ServerKey":"pl181","X":598,"Y":359},{"Bonus":0,"Continent":"K64","ID":31497,"Name":"psycha sitting","PlayerID":699736927,"Points":2852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31497","ServerKey":"pl181","X":426,"Y":657},{"Bonus":0,"Continent":"K35","ID":31498,"Name":"AAA","PlayerID":1006847,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31498","ServerKey":"pl181","X":535,"Y":329},{"Bonus":0,"Continent":"K56","ID":31499,"Name":"B 060","PlayerID":8078914,"Points":7119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31499","ServerKey":"pl181","X":671,"Y":541},{"Bonus":0,"Continent":"K43","ID":31500,"Name":"-012-","PlayerID":8184383,"Points":5691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31500","ServerKey":"pl181","X":336,"Y":453},{"Bonus":0,"Continent":"K66","ID":31501,"Name":"Bunkier 005","PlayerID":699778867,"Points":6559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31501","ServerKey":"pl181","X":623,"Y":624},{"Bonus":5,"Continent":"K65","ID":31502,"Name":"0526","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31502","ServerKey":"pl181","X":534,"Y":672},{"Bonus":0,"Continent":"K36","ID":31503,"Name":"Taran 001","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31503","ServerKey":"pl181","X":606,"Y":362},{"Bonus":0,"Continent":"K34","ID":31504,"Name":"#0128 Thorus5","PlayerID":1238300,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31504","ServerKey":"pl181","X":474,"Y":329},{"Bonus":0,"Continent":"K33","ID":31506,"Name":"222","PlayerID":699711706,"Points":5608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31506","ServerKey":"pl181","X":373,"Y":381},{"Bonus":0,"Continent":"K63","ID":31507,"Name":".///...//././././././././","PlayerID":849097937,"Points":7362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31507","ServerKey":"pl181","X":371,"Y":611},{"Bonus":0,"Continent":"K46","ID":31508,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31508","ServerKey":"pl181","X":677,"Y":498},{"Bonus":0,"Continent":"K65","ID":31509,"Name":"0268","PlayerID":698659980,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31509","ServerKey":"pl181","X":542,"Y":670},{"Bonus":0,"Continent":"K63","ID":31510,"Name":"Grupka 7 wiosek 5","PlayerID":698353083,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31510","ServerKey":"pl181","X":356,"Y":601},{"Bonus":0,"Continent":"K35","ID":31511,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31511","ServerKey":"pl181","X":551,"Y":338},{"Bonus":0,"Continent":"K46","ID":31512,"Name":"060 | PALESTINA","PlayerID":9228039,"Points":6673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31512","ServerKey":"pl181","X":655,"Y":417},{"Bonus":0,"Continent":"K43","ID":31513,"Name":"Nie fulaj dewej na halba mamyjo","PlayerID":699711723,"Points":3567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31513","ServerKey":"pl181","X":328,"Y":461},{"Bonus":0,"Continent":"K46","ID":31514,"Name":"Castle","PlayerID":1086351,"Points":9240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31514","ServerKey":"pl181","X":652,"Y":410},{"Bonus":0,"Continent":"K53","ID":31515,"Name":"Chekku - meito","PlayerID":9280477,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31515","ServerKey":"pl181","X":326,"Y":529},{"Bonus":0,"Continent":"K64","ID":31516,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31516","ServerKey":"pl181","X":467,"Y":673},{"Bonus":0,"Continent":"K56","ID":31517,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31517","ServerKey":"pl181","X":669,"Y":539},{"Bonus":0,"Continent":"K64","ID":31518,"Name":"Wioska sobie 028","PlayerID":7349282,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31518","ServerKey":"pl181","X":401,"Y":639},{"Bonus":0,"Continent":"K53","ID":31519,"Name":"C0142","PlayerID":8841266,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31519","ServerKey":"pl181","X":329,"Y":520},{"Bonus":2,"Continent":"K65","ID":31520,"Name":"Winna","PlayerID":6818593,"Points":5542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31520","ServerKey":"pl181","X":574,"Y":659},{"Bonus":0,"Continent":"K53","ID":31521,"Name":"*010*","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31521","ServerKey":"pl181","X":324,"Y":546},{"Bonus":0,"Continent":"K34","ID":31522,"Name":"055","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31522","ServerKey":"pl181","X":459,"Y":327},{"Bonus":0,"Continent":"K65","ID":31523,"Name":"0275","PlayerID":698659980,"Points":8249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31523","ServerKey":"pl181","X":540,"Y":669},{"Bonus":0,"Continent":"K34","ID":31524,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31524","ServerKey":"pl181","X":451,"Y":329},{"Bonus":0,"Continent":"K36","ID":31525,"Name":"371|619 Wioska barbarzyƄska","PlayerID":6822957,"Points":6499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31525","ServerKey":"pl181","X":619,"Y":371},{"Bonus":0,"Continent":"K66","ID":31526,"Name":"BETON 065","PlayerID":699277039,"Points":5216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31526","ServerKey":"pl181","X":634,"Y":616},{"Bonus":0,"Continent":"K33","ID":31527,"Name":"001Marcinmesi","PlayerID":848978297,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31527","ServerKey":"pl181","X":379,"Y":371},{"Bonus":0,"Continent":"K53","ID":31528,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31528","ServerKey":"pl181","X":347,"Y":578},{"Bonus":0,"Continent":"K35","ID":31529,"Name":"AAA","PlayerID":1006847,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31529","ServerKey":"pl181","X":536,"Y":327},{"Bonus":0,"Continent":"K64","ID":31530,"Name":"Ave Why!","PlayerID":699121671,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31530","ServerKey":"pl181","X":475,"Y":673},{"Bonus":0,"Continent":"K65","ID":31531,"Name":"019","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31531","ServerKey":"pl181","X":527,"Y":675},{"Bonus":0,"Continent":"K64","ID":31532,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31532","ServerKey":"pl181","X":456,"Y":669},{"Bonus":7,"Continent":"K35","ID":31533,"Name":"Osada koczownikĂłw","PlayerID":699797805,"Points":2680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31533","ServerKey":"pl181","X":550,"Y":329},{"Bonus":0,"Continent":"K56","ID":31534,"Name":"Lubieszyn","PlayerID":849039310,"Points":8661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31534","ServerKey":"pl181","X":656,"Y":587},{"Bonus":0,"Continent":"K33","ID":31535,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":5632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31535","ServerKey":"pl181","X":385,"Y":369},{"Bonus":0,"Continent":"K65","ID":31536,"Name":"?009","PlayerID":699828685,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31536","ServerKey":"pl181","X":542,"Y":655},{"Bonus":0,"Continent":"K64","ID":31537,"Name":"Adidas 3","PlayerID":9191031,"Points":4093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31537","ServerKey":"pl181","X":415,"Y":652},{"Bonus":0,"Continent":"K33","ID":31538,"Name":"Szlachcic","PlayerID":698160606,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31538","ServerKey":"pl181","X":380,"Y":368},{"Bonus":6,"Continent":"K56","ID":31539,"Name":"_PUSTA !","PlayerID":1563417,"Points":6777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31539","ServerKey":"pl181","X":674,"Y":525},{"Bonus":0,"Continent":"K53","ID":31540,"Name":"Wonderwall","PlayerID":698962117,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31540","ServerKey":"pl181","X":332,"Y":546},{"Bonus":0,"Continent":"K56","ID":31541,"Name":"Wioska 044","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31541","ServerKey":"pl181","X":646,"Y":598},{"Bonus":0,"Continent":"K46","ID":31542,"Name":"Jehu_Kingdom_64","PlayerID":8785314,"Points":5605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31542","ServerKey":"pl181","X":661,"Y":427},{"Bonus":0,"Continent":"K64","ID":31543,"Name":"|071| BlackBird 6","PlayerID":699393742,"Points":10909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31543","ServerKey":"pl181","X":473,"Y":675},{"Bonus":0,"Continent":"K46","ID":31545,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31545","ServerKey":"pl181","X":672,"Y":467},{"Bonus":0,"Continent":"K66","ID":31546,"Name":"*057","PlayerID":699567608,"Points":9175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31546","ServerKey":"pl181","X":604,"Y":637},{"Bonus":0,"Continent":"K65","ID":31547,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31547","ServerKey":"pl181","X":578,"Y":657},{"Bonus":0,"Continent":"K64","ID":31548,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31548","ServerKey":"pl181","X":426,"Y":662},{"Bonus":0,"Continent":"K36","ID":31549,"Name":".:013:.","PlayerID":849078297,"Points":4855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31549","ServerKey":"pl181","X":631,"Y":383},{"Bonus":0,"Continent":"K46","ID":31550,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31550","ServerKey":"pl181","X":672,"Y":461},{"Bonus":0,"Continent":"K53","ID":31551,"Name":"060 komornicy","PlayerID":699510259,"Points":6458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31551","ServerKey":"pl181","X":335,"Y":545},{"Bonus":0,"Continent":"K34","ID":31552,"Name":"[B]_[040] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31552","ServerKey":"pl181","X":430,"Y":343},{"Bonus":0,"Continent":"K65","ID":31553,"Name":"bandzior","PlayerID":606407,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31553","ServerKey":"pl181","X":520,"Y":671},{"Bonus":0,"Continent":"K63","ID":31555,"Name":"040 Szkoda mi Pe Pe na mur ;c","PlayerID":6354098,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31555","ServerKey":"pl181","X":387,"Y":628},{"Bonus":0,"Continent":"K64","ID":31556,"Name":"Wioska barbarzyƄska","PlayerID":699849210,"Points":1912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31556","ServerKey":"pl181","X":440,"Y":662},{"Bonus":0,"Continent":"K36","ID":31557,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31557","ServerKey":"pl181","X":641,"Y":396},{"Bonus":0,"Continent":"K65","ID":31558,"Name":"Wioska r 8","PlayerID":848915531,"Points":5623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31558","ServerKey":"pl181","X":555,"Y":667},{"Bonus":7,"Continent":"K36","ID":31559,"Name":".:002:.","PlayerID":849098782,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31559","ServerKey":"pl181","X":632,"Y":384},{"Bonus":0,"Continent":"K64","ID":31560,"Name":"R 019 ~Wichrowy Tron~","PlayerID":699195358,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31560","ServerKey":"pl181","X":485,"Y":674},{"Bonus":0,"Continent":"K34","ID":31561,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":7187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31561","ServerKey":"pl181","X":454,"Y":330},{"Bonus":0,"Continent":"K43","ID":31562,"Name":"Witam Sąsiedzie :))","PlayerID":699800377,"Points":1245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31562","ServerKey":"pl181","X":339,"Y":441},{"Bonus":0,"Continent":"K65","ID":31563,"Name":"004.","PlayerID":1270916,"Points":7315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31563","ServerKey":"pl181","X":579,"Y":657},{"Bonus":0,"Continent":"K36","ID":31564,"Name":"I#027","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31564","ServerKey":"pl181","X":616,"Y":365},{"Bonus":0,"Continent":"K65","ID":31565,"Name":"Jadę na mopie !!","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31565","ServerKey":"pl181","X":587,"Y":654},{"Bonus":0,"Continent":"K34","ID":31566,"Name":"[B]_[031] Dejv.oldplyr","PlayerID":699380607,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31566","ServerKey":"pl181","X":418,"Y":342},{"Bonus":0,"Continent":"K46","ID":31567,"Name":"Silver dream","PlayerID":1086351,"Points":3394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31567","ServerKey":"pl181","X":648,"Y":403},{"Bonus":0,"Continent":"K36","ID":31568,"Name":"011 Unternehmen Seelowe","PlayerID":849091899,"Points":4810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31568","ServerKey":"pl181","X":605,"Y":362},{"Bonus":0,"Continent":"K36","ID":31569,"Name":"625|336","PlayerID":699580120,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31569","ServerKey":"pl181","X":607,"Y":369},{"Bonus":0,"Continent":"K64","ID":31570,"Name":"psycha sitting","PlayerID":699736927,"Points":3446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31570","ServerKey":"pl181","X":436,"Y":664},{"Bonus":7,"Continent":"K36","ID":31571,"Name":"002 Stalingrad","PlayerID":849091899,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31571","ServerKey":"pl181","X":605,"Y":360},{"Bonus":5,"Continent":"K35","ID":31573,"Name":"ADEN","PlayerID":698588535,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31573","ServerKey":"pl181","X":578,"Y":347},{"Bonus":0,"Continent":"K53","ID":31574,"Name":"Wioska klez 015","PlayerID":698295651,"Points":6127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31574","ServerKey":"pl181","X":324,"Y":513},{"Bonus":0,"Continent":"K43","ID":31575,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31575","ServerKey":"pl181","X":325,"Y":493},{"Bonus":0,"Continent":"K56","ID":31576,"Name":"087","PlayerID":849095227,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31576","ServerKey":"pl181","X":664,"Y":569},{"Bonus":0,"Continent":"K36","ID":31577,"Name":"001","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31577","ServerKey":"pl181","X":603,"Y":364},{"Bonus":0,"Continent":"K63","ID":31578,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31578","ServerKey":"pl181","X":399,"Y":646},{"Bonus":0,"Continent":"K33","ID":31579,"Name":"*076*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31579","ServerKey":"pl181","X":362,"Y":388},{"Bonus":0,"Continent":"K53","ID":31580,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":2846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31580","ServerKey":"pl181","X":338,"Y":561},{"Bonus":0,"Continent":"K36","ID":31581,"Name":"06 tonieostatnieslowo","PlayerID":699861004,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31581","ServerKey":"pl181","X":610,"Y":364},{"Bonus":0,"Continent":"K65","ID":31582,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31582","ServerKey":"pl181","X":570,"Y":660},{"Bonus":0,"Continent":"K64","ID":31583,"Name":"023","PlayerID":699238479,"Points":8875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31583","ServerKey":"pl181","X":469,"Y":670},{"Bonus":0,"Continent":"K34","ID":31584,"Name":"#0056 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31584","ServerKey":"pl181","X":469,"Y":328},{"Bonus":0,"Continent":"K46","ID":31585,"Name":"Wioska plls","PlayerID":1086351,"Points":8218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31585","ServerKey":"pl181","X":652,"Y":409},{"Bonus":0,"Continent":"K63","ID":31586,"Name":".///...//././././././././","PlayerID":849097937,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31586","ServerKey":"pl181","X":375,"Y":618},{"Bonus":0,"Continent":"K33","ID":31587,"Name":"*183*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31587","ServerKey":"pl181","X":378,"Y":374},{"Bonus":0,"Continent":"K34","ID":31588,"Name":"Bagdad","PlayerID":8847546,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31588","ServerKey":"pl181","X":491,"Y":325},{"Bonus":0,"Continent":"K65","ID":31589,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31589","ServerKey":"pl181","X":571,"Y":660},{"Bonus":0,"Continent":"K64","ID":31590,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":4097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31590","ServerKey":"pl181","X":421,"Y":658},{"Bonus":0,"Continent":"K56","ID":31591,"Name":"Nowa 49","PlayerID":698702991,"Points":7702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31591","ServerKey":"pl181","X":662,"Y":576},{"Bonus":0,"Continent":"K34","ID":31592,"Name":"[B]_[028] Dejv.oldplyr","PlayerID":699380607,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31592","ServerKey":"pl181","X":434,"Y":336},{"Bonus":0,"Continent":"K33","ID":31593,"Name":"013","PlayerID":849059457,"Points":3708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31593","ServerKey":"pl181","X":373,"Y":384},{"Bonus":0,"Continent":"K35","ID":31594,"Name":"Lord Lord Franek .#089","PlayerID":698420691,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31594","ServerKey":"pl181","X":520,"Y":325},{"Bonus":0,"Continent":"K43","ID":31595,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31595","ServerKey":"pl181","X":353,"Y":404},{"Bonus":0,"Continent":"K35","ID":31596,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31596","ServerKey":"pl181","X":555,"Y":338},{"Bonus":0,"Continent":"K56","ID":31597,"Name":"B 056","PlayerID":8078914,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31597","ServerKey":"pl181","X":675,"Y":536},{"Bonus":0,"Continent":"K46","ID":31598,"Name":"Centrum","PlayerID":1086351,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31598","ServerKey":"pl181","X":653,"Y":410},{"Bonus":0,"Continent":"K53","ID":31599,"Name":"deff 100 %","PlayerID":849012521,"Points":7014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31599","ServerKey":"pl181","X":338,"Y":572},{"Bonus":0,"Continent":"K53","ID":31600,"Name":"Wioska klez 016","PlayerID":698295651,"Points":6710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31600","ServerKey":"pl181","X":330,"Y":507},{"Bonus":0,"Continent":"K66","ID":31601,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31601","ServerKey":"pl181","X":620,"Y":622},{"Bonus":0,"Continent":"K46","ID":31602,"Name":"114","PlayerID":849088515,"Points":6808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31602","ServerKey":"pl181","X":658,"Y":430},{"Bonus":0,"Continent":"K35","ID":31603,"Name":"Wioska V","PlayerID":698200480,"Points":7588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31603","ServerKey":"pl181","X":581,"Y":348},{"Bonus":0,"Continent":"K65","ID":31604,"Name":"Wioska r 15","PlayerID":848915531,"Points":3516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31604","ServerKey":"pl181","X":559,"Y":667},{"Bonus":0,"Continent":"K43","ID":31605,"Name":"07. Rivia","PlayerID":848910122,"Points":1131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31605","ServerKey":"pl181","X":333,"Y":453},{"Bonus":9,"Continent":"K56","ID":31606,"Name":"B 009","PlayerID":8078914,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31606","ServerKey":"pl181","X":668,"Y":531},{"Bonus":0,"Continent":"K63","ID":31607,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31607","ServerKey":"pl181","X":395,"Y":640},{"Bonus":0,"Continent":"K56","ID":31608,"Name":"B.06","PlayerID":699737356,"Points":9420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31608","ServerKey":"pl181","X":670,"Y":506},{"Bonus":0,"Continent":"K36","ID":31610,"Name":".:008:.","PlayerID":849078297,"Points":5751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31610","ServerKey":"pl181","X":635,"Y":383},{"Bonus":0,"Continent":"K63","ID":31611,"Name":"018 Szachy - Goniec","PlayerID":8268010,"Points":5410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31611","ServerKey":"pl181","X":361,"Y":603},{"Bonus":0,"Continent":"K63","ID":31612,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":6195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31612","ServerKey":"pl181","X":367,"Y":614},{"Bonus":0,"Continent":"K64","ID":31613,"Name":"A28","PlayerID":698652014,"Points":8763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31613","ServerKey":"pl181","X":475,"Y":670},{"Bonus":1,"Continent":"K56","ID":31614,"Name":"B 002","PlayerID":8078914,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31614","ServerKey":"pl181","X":667,"Y":535},{"Bonus":0,"Continent":"K46","ID":31616,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31616","ServerKey":"pl181","X":673,"Y":472},{"Bonus":0,"Continent":"K43","ID":31617,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31617","ServerKey":"pl181","X":328,"Y":469},{"Bonus":0,"Continent":"K56","ID":31618,"Name":"210","PlayerID":7038651,"Points":8471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31618","ServerKey":"pl181","X":668,"Y":550},{"Bonus":0,"Continent":"K63","ID":31619,"Name":"A 001","PlayerID":699342219,"Points":10946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31619","ServerKey":"pl181","X":369,"Y":618},{"Bonus":0,"Continent":"K53","ID":31620,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31620","ServerKey":"pl181","X":328,"Y":521},{"Bonus":0,"Continent":"K46","ID":31621,"Name":"Wypizdow dolny","PlayerID":699574408,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31621","ServerKey":"pl181","X":673,"Y":467},{"Bonus":0,"Continent":"K35","ID":31622,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31622","ServerKey":"pl181","X":567,"Y":343},{"Bonus":0,"Continent":"K63","ID":31623,"Name":"A 007","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31623","ServerKey":"pl181","X":368,"Y":616},{"Bonus":0,"Continent":"K35","ID":31624,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31624","ServerKey":"pl181","X":588,"Y":351},{"Bonus":0,"Continent":"K34","ID":31625,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31625","ServerKey":"pl181","X":443,"Y":335},{"Bonus":0,"Continent":"K46","ID":31626,"Name":"I031","PlayerID":699722599,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31626","ServerKey":"pl181","X":665,"Y":456},{"Bonus":0,"Continent":"K66","ID":31627,"Name":"025","PlayerID":699567608,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31627","ServerKey":"pl181","X":631,"Y":612},{"Bonus":0,"Continent":"K43","ID":31628,"Name":"*137*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31628","ServerKey":"pl181","X":352,"Y":413},{"Bonus":0,"Continent":"K43","ID":31629,"Name":"13. Metinna","PlayerID":848910122,"Points":295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31629","ServerKey":"pl181","X":333,"Y":456},{"Bonus":0,"Continent":"K56","ID":31630,"Name":"053 Arkansas","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31630","ServerKey":"pl181","X":675,"Y":518},{"Bonus":0,"Continent":"K34","ID":31631,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31631","ServerKey":"pl181","X":437,"Y":334},{"Bonus":0,"Continent":"K66","ID":31632,"Name":"#003#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31632","ServerKey":"pl181","X":625,"Y":619},{"Bonus":0,"Continent":"K33","ID":31633,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":3135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31633","ServerKey":"pl181","X":374,"Y":385},{"Bonus":0,"Continent":"K43","ID":31634,"Name":"*133*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31634","ServerKey":"pl181","X":353,"Y":414},{"Bonus":0,"Continent":"K34","ID":31635,"Name":"GrĂłd 2","PlayerID":699204478,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31635","ServerKey":"pl181","X":471,"Y":325},{"Bonus":0,"Continent":"K46","ID":31636,"Name":"055 | PALESTINA","PlayerID":9228039,"Points":4098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31636","ServerKey":"pl181","X":652,"Y":423},{"Bonus":9,"Continent":"K35","ID":31637,"Name":"AAA","PlayerID":1006847,"Points":9573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31637","ServerKey":"pl181","X":531,"Y":329},{"Bonus":0,"Continent":"K64","ID":31638,"Name":"03.Mordo :)","PlayerID":361125,"Points":3182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31638","ServerKey":"pl181","X":448,"Y":662},{"Bonus":0,"Continent":"K34","ID":31639,"Name":"065","PlayerID":2502956,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31639","ServerKey":"pl181","X":452,"Y":331},{"Bonus":0,"Continent":"K36","ID":31640,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31640","ServerKey":"pl181","X":631,"Y":379},{"Bonus":0,"Continent":"K56","ID":31641,"Name":"Sekou","PlayerID":699737356,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31641","ServerKey":"pl181","X":676,"Y":509},{"Bonus":0,"Continent":"K36","ID":31642,"Name":"=|29|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31642","ServerKey":"pl181","X":641,"Y":393},{"Bonus":0,"Continent":"K65","ID":31643,"Name":"Ruska onuca","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31643","ServerKey":"pl181","X":588,"Y":652},{"Bonus":9,"Continent":"K46","ID":31644,"Name":"WB3","PlayerID":1086351,"Points":6551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31644","ServerKey":"pl181","X":650,"Y":413},{"Bonus":0,"Continent":"K46","ID":31645,"Name":"Jaaa","PlayerID":698635863,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31645","ServerKey":"pl181","X":672,"Y":487},{"Bonus":0,"Continent":"K63","ID":31646,"Name":"010","PlayerID":699083129,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31646","ServerKey":"pl181","X":363,"Y":605},{"Bonus":0,"Continent":"K53","ID":31647,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":2510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31647","ServerKey":"pl181","X":338,"Y":562},{"Bonus":0,"Continent":"K34","ID":31648,"Name":"K34 x026","PlayerID":698364331,"Points":7163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31648","ServerKey":"pl181","X":402,"Y":356},{"Bonus":0,"Continent":"K65","ID":31649,"Name":"025 przepis na serniczek","PlayerID":8954402,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31649","ServerKey":"pl181","X":506,"Y":675},{"Bonus":8,"Continent":"K56","ID":31650,"Name":"11k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31650","ServerKey":"pl181","X":663,"Y":568},{"Bonus":0,"Continent":"K65","ID":31651,"Name":"2.Santander","PlayerID":698215322,"Points":6866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31651","ServerKey":"pl181","X":562,"Y":667},{"Bonus":0,"Continent":"K64","ID":31652,"Name":"Darmowe przeprowadzki","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31652","ServerKey":"pl181","X":461,"Y":672},{"Bonus":0,"Continent":"K66","ID":31653,"Name":"#054#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31653","ServerKey":"pl181","X":627,"Y":625},{"Bonus":0,"Continent":"K35","ID":31654,"Name":"Lord Lord Franek .#107","PlayerID":698420691,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31654","ServerKey":"pl181","X":507,"Y":323},{"Bonus":0,"Continent":"K43","ID":31655,"Name":"A0270","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31655","ServerKey":"pl181","X":328,"Y":475},{"Bonus":0,"Continent":"K53","ID":31656,"Name":"057 komornicy","PlayerID":699510259,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31656","ServerKey":"pl181","X":331,"Y":539},{"Bonus":0,"Continent":"K34","ID":31657,"Name":"fff","PlayerID":698239813,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31657","ServerKey":"pl181","X":488,"Y":322},{"Bonus":0,"Continent":"K56","ID":31658,"Name":"Wioska 117","PlayerID":848971079,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31658","ServerKey":"pl181","X":670,"Y":526},{"Bonus":0,"Continent":"K46","ID":31659,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31659","ServerKey":"pl181","X":673,"Y":464},{"Bonus":0,"Continent":"K46","ID":31660,"Name":"I021","PlayerID":699722599,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31660","ServerKey":"pl181","X":668,"Y":464},{"Bonus":0,"Continent":"K64","ID":31661,"Name":"0617","PlayerID":698650301,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31661","ServerKey":"pl181","X":475,"Y":674},{"Bonus":0,"Continent":"K43","ID":31662,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":3825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31662","ServerKey":"pl181","X":323,"Y":492},{"Bonus":0,"Continent":"K33","ID":31663,"Name":"*192*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31663","ServerKey":"pl181","X":378,"Y":371},{"Bonus":0,"Continent":"K53","ID":31664,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31664","ServerKey":"pl181","X":337,"Y":552},{"Bonus":0,"Continent":"K65","ID":31665,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31665","ServerKey":"pl181","X":571,"Y":659},{"Bonus":0,"Continent":"K53","ID":31666,"Name":"C0272","PlayerID":8841266,"Points":9121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31666","ServerKey":"pl181","X":325,"Y":515},{"Bonus":0,"Continent":"K34","ID":31667,"Name":"069","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31667","ServerKey":"pl181","X":451,"Y":330},{"Bonus":9,"Continent":"K63","ID":31668,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31668","ServerKey":"pl181","X":396,"Y":640},{"Bonus":0,"Continent":"K65","ID":31669,"Name":"018","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31669","ServerKey":"pl181","X":533,"Y":673},{"Bonus":0,"Continent":"K56","ID":31670,"Name":"023","PlayerID":8428196,"Points":7084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31670","ServerKey":"pl181","X":664,"Y":557},{"Bonus":0,"Continent":"K64","ID":31671,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31671","ServerKey":"pl181","X":426,"Y":658},{"Bonus":0,"Continent":"K53","ID":31672,"Name":"C0281","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31672","ServerKey":"pl181","X":325,"Y":508},{"Bonus":0,"Continent":"K63","ID":31673,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31673","ServerKey":"pl181","X":388,"Y":631},{"Bonus":0,"Continent":"K35","ID":31674,"Name":"[020]","PlayerID":848915730,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31674","ServerKey":"pl181","X":582,"Y":348},{"Bonus":0,"Continent":"K46","ID":31675,"Name":"080. Napoca","PlayerID":849091866,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31675","ServerKey":"pl181","X":655,"Y":413},{"Bonus":7,"Continent":"K63","ID":31676,"Name":"A 028","PlayerID":699342219,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31676","ServerKey":"pl181","X":368,"Y":615},{"Bonus":0,"Continent":"K46","ID":31677,"Name":"#.45 Wioska barbarzyƄska","PlayerID":849054582,"Points":4338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31677","ServerKey":"pl181","X":670,"Y":463},{"Bonus":0,"Continent":"K34","ID":31678,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31678","ServerKey":"pl181","X":440,"Y":336},{"Bonus":0,"Continent":"K64","ID":31679,"Name":"psycha sitting","PlayerID":699736927,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31679","ServerKey":"pl181","X":452,"Y":643},{"Bonus":0,"Continent":"K53","ID":31680,"Name":"059 komornicy","PlayerID":699510259,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31680","ServerKey":"pl181","X":331,"Y":542},{"Bonus":0,"Continent":"K53","ID":31681,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31681","ServerKey":"pl181","X":338,"Y":514},{"Bonus":0,"Continent":"K33","ID":31682,"Name":"cz Wioska 78","PlayerID":3909522,"Points":4711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31682","ServerKey":"pl181","X":367,"Y":383},{"Bonus":0,"Continent":"K63","ID":31683,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31683","ServerKey":"pl181","X":391,"Y":640},{"Bonus":0,"Continent":"K53","ID":31684,"Name":"KampajĂłwka","PlayerID":698338524,"Points":6782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31684","ServerKey":"pl181","X":324,"Y":529},{"Bonus":0,"Continent":"K46","ID":31685,"Name":"I022 Ty masz ten idealny stan","PlayerID":699722599,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31685","ServerKey":"pl181","X":667,"Y":462},{"Bonus":0,"Continent":"K33","ID":31686,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31686","ServerKey":"pl181","X":390,"Y":359},{"Bonus":0,"Continent":"K63","ID":31687,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31687","ServerKey":"pl181","X":390,"Y":638},{"Bonus":6,"Continent":"K66","ID":31688,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31688","ServerKey":"pl181","X":637,"Y":611},{"Bonus":0,"Continent":"K46","ID":31689,"Name":"001 Kuba","PlayerID":699737356,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31689","ServerKey":"pl181","X":675,"Y":489},{"Bonus":0,"Continent":"K66","ID":31690,"Name":"Wioska 105","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31690","ServerKey":"pl181","X":642,"Y":602},{"Bonus":0,"Continent":"K46","ID":31691,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31691","ServerKey":"pl181","X":662,"Y":446},{"Bonus":0,"Continent":"K53","ID":31692,"Name":"off 100 %","PlayerID":849012521,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31692","ServerKey":"pl181","X":340,"Y":570},{"Bonus":4,"Continent":"K33","ID":31693,"Name":"*068*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31693","ServerKey":"pl181","X":361,"Y":388},{"Bonus":0,"Continent":"K64","ID":31694,"Name":"A005","PlayerID":8954402,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31694","ServerKey":"pl181","X":491,"Y":678},{"Bonus":0,"Continent":"K56","ID":31695,"Name":"KNATIGOR","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31695","ServerKey":"pl181","X":678,"Y":500},{"Bonus":0,"Continent":"K66","ID":31696,"Name":"023","PlayerID":849097799,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31696","ServerKey":"pl181","X":605,"Y":643},{"Bonus":0,"Continent":"K33","ID":31697,"Name":"Arka Noego","PlayerID":8419570,"Points":9481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31697","ServerKey":"pl181","X":383,"Y":375},{"Bonus":0,"Continent":"K63","ID":31698,"Name":"005","PlayerID":699083129,"Points":8955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31698","ServerKey":"pl181","X":363,"Y":609},{"Bonus":0,"Continent":"K56","ID":31699,"Name":"069","PlayerID":698786826,"Points":7652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31699","ServerKey":"pl181","X":620,"Y":599},{"Bonus":0,"Continent":"K53","ID":31700,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31700","ServerKey":"pl181","X":347,"Y":577},{"Bonus":0,"Continent":"K53","ID":31701,"Name":"Komornik 004","PlayerID":698290577,"Points":5222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31701","ServerKey":"pl181","X":329,"Y":540},{"Bonus":0,"Continent":"K43","ID":31702,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31702","ServerKey":"pl181","X":332,"Y":457},{"Bonus":0,"Continent":"K66","ID":31703,"Name":"Monetkownia","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31703","ServerKey":"pl181","X":616,"Y":626},{"Bonus":0,"Continent":"K35","ID":31704,"Name":"AAA","PlayerID":1006847,"Points":8760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31704","ServerKey":"pl181","X":519,"Y":323},{"Bonus":0,"Continent":"K33","ID":31705,"Name":"Wioska 010","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31705","ServerKey":"pl181","X":384,"Y":385},{"Bonus":0,"Continent":"K34","ID":31706,"Name":"K34 x018","PlayerID":698364331,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31706","ServerKey":"pl181","X":410,"Y":352},{"Bonus":0,"Continent":"K33","ID":31707,"Name":"0012 Podole","PlayerID":849096882,"Points":6464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31707","ServerKey":"pl181","X":386,"Y":376},{"Bonus":0,"Continent":"K53","ID":31708,"Name":"C0052","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31708","ServerKey":"pl181","X":326,"Y":519},{"Bonus":0,"Continent":"K34","ID":31709,"Name":"020 KrakĂłw","PlayerID":848978297,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31709","ServerKey":"pl181","X":405,"Y":354},{"Bonus":0,"Continent":"K33","ID":31710,"Name":"*055*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31710","ServerKey":"pl181","X":356,"Y":397},{"Bonus":0,"Continent":"K33","ID":31711,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":2628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31711","ServerKey":"pl181","X":373,"Y":383},{"Bonus":0,"Continent":"K43","ID":31712,"Name":"*167*","PlayerID":699273451,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31712","ServerKey":"pl181","X":348,"Y":411},{"Bonus":0,"Continent":"K66","ID":31713,"Name":"0007","PlayerID":6417987,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31713","ServerKey":"pl181","X":616,"Y":613},{"Bonus":0,"Continent":"K34","ID":31714,"Name":"A-042-Heffito","PlayerID":8419570,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31714","ServerKey":"pl181","X":404,"Y":347},{"Bonus":0,"Continent":"K65","ID":31715,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31715","ServerKey":"pl181","X":503,"Y":673},{"Bonus":2,"Continent":"K63","ID":31716,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31716","ServerKey":"pl181","X":381,"Y":633},{"Bonus":0,"Continent":"K66","ID":31717,"Name":"~~090~~","PlayerID":7829201,"Points":8181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31717","ServerKey":"pl181","X":635,"Y":617},{"Bonus":0,"Continent":"K33","ID":31718,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":8559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31718","ServerKey":"pl181","X":362,"Y":399},{"Bonus":0,"Continent":"K63","ID":31719,"Name":".:002:.","PlayerID":7417116,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31719","ServerKey":"pl181","X":372,"Y":620},{"Bonus":0,"Continent":"K65","ID":31720,"Name":"0538","PlayerID":698659980,"Points":5676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31720","ServerKey":"pl181","X":563,"Y":664},{"Bonus":0,"Continent":"K46","ID":31721,"Name":"Jaaa","PlayerID":698635863,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31721","ServerKey":"pl181","X":672,"Y":491},{"Bonus":0,"Continent":"K65","ID":31722,"Name":"Muchomor *014*","PlayerID":606407,"Points":10433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31722","ServerKey":"pl181","X":517,"Y":675},{"Bonus":0,"Continent":"K36","ID":31723,"Name":"Wyspa 002","PlayerID":699756210,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31723","ServerKey":"pl181","X":623,"Y":380},{"Bonus":0,"Continent":"K65","ID":31724,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31724","ServerKey":"pl181","X":503,"Y":672},{"Bonus":3,"Continent":"K64","ID":31725,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31725","ServerKey":"pl181","X":455,"Y":670},{"Bonus":0,"Continent":"K35","ID":31726,"Name":"Lord Lord Franek .#149","PlayerID":698420691,"Points":7984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31726","ServerKey":"pl181","X":507,"Y":324},{"Bonus":0,"Continent":"K46","ID":31727,"Name":"Ow Konfederacja +","PlayerID":848915730,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31727","ServerKey":"pl181","X":612,"Y":402},{"Bonus":0,"Continent":"K36","ID":31729,"Name":"**14**","PlayerID":849098782,"Points":9573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31729","ServerKey":"pl181","X":633,"Y":389},{"Bonus":0,"Continent":"K53","ID":31730,"Name":"Dąbrowa 0020","PlayerID":849096972,"Points":5448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31730","ServerKey":"pl181","X":357,"Y":594},{"Bonus":1,"Continent":"K53","ID":31731,"Name":"-014-","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31731","ServerKey":"pl181","X":337,"Y":561},{"Bonus":0,"Continent":"K43","ID":31732,"Name":"007","PlayerID":699879556,"Points":3118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31732","ServerKey":"pl181","X":332,"Y":458},{"Bonus":0,"Continent":"K46","ID":31733,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31733","ServerKey":"pl181","X":675,"Y":492},{"Bonus":0,"Continent":"K34","ID":31734,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":5753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31734","ServerKey":"pl181","X":462,"Y":329},{"Bonus":0,"Continent":"K34","ID":31735,"Name":"wioska","PlayerID":699854830,"Points":7119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31735","ServerKey":"pl181","X":409,"Y":348},{"Bonus":7,"Continent":"K36","ID":31736,"Name":"364|616Osada koczownikĂłw1","PlayerID":6822957,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31736","ServerKey":"pl181","X":616,"Y":364},{"Bonus":0,"Continent":"K46","ID":31737,"Name":"660|426 Wioska barbarzyƄska","PlayerID":6822957,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31737","ServerKey":"pl181","X":660,"Y":426},{"Bonus":0,"Continent":"K56","ID":31738,"Name":"Sekou","PlayerID":699737356,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31738","ServerKey":"pl181","X":674,"Y":507},{"Bonus":0,"Continent":"K64","ID":31739,"Name":"#Fuegoleon","PlayerID":699849210,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31739","ServerKey":"pl181","X":436,"Y":659},{"Bonus":0,"Continent":"K64","ID":31740,"Name":"012# Angelina","PlayerID":3933666,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31740","ServerKey":"pl181","X":472,"Y":673},{"Bonus":0,"Continent":"K43","ID":31741,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31741","ServerKey":"pl181","X":324,"Y":472},{"Bonus":0,"Continent":"K33","ID":31742,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31742","ServerKey":"pl181","X":395,"Y":357},{"Bonus":0,"Continent":"K65","ID":31743,"Name":"0394","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31743","ServerKey":"pl181","X":556,"Y":665},{"Bonus":0,"Continent":"K35","ID":31744,"Name":"Lord Lord Franek .#102","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31744","ServerKey":"pl181","X":524,"Y":329},{"Bonus":0,"Continent":"K35","ID":31745,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":6472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31745","ServerKey":"pl181","X":596,"Y":352},{"Bonus":0,"Continent":"K66","ID":31746,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31746","ServerKey":"pl181","X":626,"Y":624},{"Bonus":0,"Continent":"K63","ID":31747,"Name":".///...//././././././././","PlayerID":849097937,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31747","ServerKey":"pl181","X":376,"Y":618},{"Bonus":0,"Continent":"K33","ID":31748,"Name":"*216*","PlayerID":699273451,"Points":6269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31748","ServerKey":"pl181","X":371,"Y":377},{"Bonus":0,"Continent":"K33","ID":31749,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31749","ServerKey":"pl181","X":384,"Y":362},{"Bonus":0,"Continent":"K43","ID":31750,"Name":"-013-","PlayerID":699273451,"Points":5200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31750","ServerKey":"pl181","X":339,"Y":440},{"Bonus":0,"Continent":"K34","ID":31751,"Name":"#0108 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31751","ServerKey":"pl181","X":477,"Y":328},{"Bonus":0,"Continent":"K65","ID":31752,"Name":"0272","PlayerID":698659980,"Points":9531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31752","ServerKey":"pl181","X":541,"Y":670},{"Bonus":0,"Continent":"K66","ID":31753,"Name":"Ć»UBR .::.B.E.T.O.N /9","PlayerID":33900,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31753","ServerKey":"pl181","X":629,"Y":621},{"Bonus":0,"Continent":"K46","ID":31754,"Name":"**35**","PlayerID":849098782,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31754","ServerKey":"pl181","X":668,"Y":432},{"Bonus":0,"Continent":"K35","ID":31755,"Name":"Wioska 02","PlayerID":951823,"Points":7342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31755","ServerKey":"pl181","X":500,"Y":327},{"Bonus":0,"Continent":"K33","ID":31756,"Name":"*190*","PlayerID":699273451,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31756","ServerKey":"pl181","X":372,"Y":375},{"Bonus":0,"Continent":"K43","ID":31757,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31757","ServerKey":"pl181","X":323,"Y":489},{"Bonus":0,"Continent":"K64","ID":31758,"Name":"22. Las Venturas","PlayerID":849092769,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31758","ServerKey":"pl181","X":497,"Y":673},{"Bonus":0,"Continent":"K35","ID":31759,"Name":"Lord Lord Franek .#185","PlayerID":698420691,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31759","ServerKey":"pl181","X":544,"Y":330},{"Bonus":0,"Continent":"K33","ID":31760,"Name":"*196*","PlayerID":699273451,"Points":6249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31760","ServerKey":"pl181","X":364,"Y":389},{"Bonus":1,"Continent":"K56","ID":31761,"Name":"B.020","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31761","ServerKey":"pl181","X":677,"Y":500},{"Bonus":0,"Continent":"K64","ID":31762,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31762","ServerKey":"pl181","X":447,"Y":662},{"Bonus":0,"Continent":"K64","ID":31763,"Name":"0614","PlayerID":698650301,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31763","ServerKey":"pl181","X":478,"Y":674},{"Bonus":0,"Continent":"K43","ID":31764,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31764","ServerKey":"pl181","X":329,"Y":495},{"Bonus":0,"Continent":"K53","ID":31765,"Name":"Myk i do kieszonki","PlayerID":849012521,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31765","ServerKey":"pl181","X":346,"Y":580},{"Bonus":0,"Continent":"K35","ID":31766,"Name":"0050","PlayerID":699485250,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31766","ServerKey":"pl181","X":567,"Y":327},{"Bonus":0,"Continent":"K63","ID":31767,"Name":".///...//././././././././","PlayerID":849097937,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31767","ServerKey":"pl181","X":381,"Y":623},{"Bonus":0,"Continent":"K55","ID":31768,"Name":"0083","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31768","ServerKey":"pl181","X":543,"Y":525},{"Bonus":0,"Continent":"K64","ID":31769,"Name":"New World","PlayerID":698152377,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31769","ServerKey":"pl181","X":495,"Y":674},{"Bonus":6,"Continent":"K43","ID":31770,"Name":"1.013","PlayerID":3502565,"Points":9135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31770","ServerKey":"pl181","X":335,"Y":451},{"Bonus":0,"Continent":"K46","ID":31772,"Name":"080 tulpa","PlayerID":9238175,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31772","ServerKey":"pl181","X":650,"Y":417},{"Bonus":0,"Continent":"K63","ID":31773,"Name":"Wieƛ 11","PlayerID":8877156,"Points":9003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31773","ServerKey":"pl181","X":353,"Y":600},{"Bonus":0,"Continent":"K35","ID":31774,"Name":"Wioska maƂa","PlayerID":6118079,"Points":7682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31774","ServerKey":"pl181","X":503,"Y":322},{"Bonus":0,"Continent":"K64","ID":31775,"Name":"R 012 ~Gwiazda Zaranna~","PlayerID":699195358,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31775","ServerKey":"pl181","X":487,"Y":674},{"Bonus":0,"Continent":"K56","ID":31776,"Name":"Sekou","PlayerID":699737356,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31776","ServerKey":"pl181","X":672,"Y":507},{"Bonus":0,"Continent":"K36","ID":31777,"Name":"009 Panzergruppe Afrika","PlayerID":849091899,"Points":5420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31777","ServerKey":"pl181","X":606,"Y":361},{"Bonus":0,"Continent":"K43","ID":31778,"Name":"M181_029","PlayerID":393668,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31778","ServerKey":"pl181","X":337,"Y":431},{"Bonus":0,"Continent":"K34","ID":31779,"Name":"0091","PlayerID":699431255,"Points":3567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31779","ServerKey":"pl181","X":412,"Y":351},{"Bonus":0,"Continent":"K35","ID":31780,"Name":"Moja","PlayerID":570100,"Points":8823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31780","ServerKey":"pl181","X":541,"Y":353},{"Bonus":0,"Continent":"K36","ID":31781,"Name":"Po sasiedzku","PlayerID":848924219,"Points":7496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31781","ServerKey":"pl181","X":615,"Y":372},{"Bonus":0,"Continent":"K43","ID":31782,"Name":"M181_028","PlayerID":393668,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31782","ServerKey":"pl181","X":338,"Y":432},{"Bonus":0,"Continent":"K66","ID":31783,"Name":"#038#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31783","ServerKey":"pl181","X":625,"Y":622},{"Bonus":0,"Continent":"K56","ID":31784,"Name":"$4.000 Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31784","ServerKey":"pl181","X":658,"Y":576},{"Bonus":0,"Continent":"K35","ID":31785,"Name":"Wioska XV","PlayerID":698200480,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31785","ServerKey":"pl181","X":576,"Y":344},{"Bonus":0,"Continent":"K35","ID":31786,"Name":"AAA","PlayerID":1006847,"Points":9032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31786","ServerKey":"pl181","X":534,"Y":328},{"Bonus":1,"Continent":"K46","ID":31787,"Name":"Osada koczownikĂłw","PlayerID":699574408,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31787","ServerKey":"pl181","X":676,"Y":467},{"Bonus":0,"Continent":"K65","ID":31788,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31788","ServerKey":"pl181","X":511,"Y":677},{"Bonus":6,"Continent":"K63","ID":31789,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31789","ServerKey":"pl181","X":397,"Y":637},{"Bonus":0,"Continent":"K53","ID":31790,"Name":"Mosty","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31790","ServerKey":"pl181","X":352,"Y":587},{"Bonus":0,"Continent":"K64","ID":31791,"Name":"008","PlayerID":699246032,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31791","ServerKey":"pl181","X":409,"Y":651},{"Bonus":0,"Continent":"K46","ID":31792,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31792","ServerKey":"pl181","X":673,"Y":463},{"Bonus":0,"Continent":"K35","ID":31793,"Name":"South K35","PlayerID":699146580,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31793","ServerKey":"pl181","X":556,"Y":395},{"Bonus":0,"Continent":"K35","ID":31794,"Name":"@LL ok","PlayerID":849059491,"Points":4397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31794","ServerKey":"pl181","X":595,"Y":352},{"Bonus":0,"Continent":"K33","ID":31795,"Name":"Szulernia","PlayerID":7249451,"Points":9832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31795","ServerKey":"pl181","X":387,"Y":367},{"Bonus":0,"Continent":"K35","ID":31796,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31796","ServerKey":"pl181","X":561,"Y":363},{"Bonus":0,"Continent":"K64","ID":31797,"Name":"0610","PlayerID":698650301,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31797","ServerKey":"pl181","X":480,"Y":674},{"Bonus":4,"Continent":"K64","ID":31798,"Name":"|010| Agia Meriadia","PlayerID":699393742,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31798","ServerKey":"pl181","X":495,"Y":679},{"Bonus":0,"Continent":"K55","ID":31799,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31799","ServerKey":"pl181","X":580,"Y":580},{"Bonus":0,"Continent":"K53","ID":31801,"Name":"Wioska klez 010","PlayerID":698295651,"Points":6783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31801","ServerKey":"pl181","X":329,"Y":519},{"Bonus":4,"Continent":"K63","ID":31802,"Name":"003 Osada koczownikĂłw","PlayerID":6354098,"Points":8904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31802","ServerKey":"pl181","X":378,"Y":624},{"Bonus":0,"Continent":"K55","ID":31803,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31803","ServerKey":"pl181","X":578,"Y":569},{"Bonus":0,"Continent":"K35","ID":31804,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31804","ServerKey":"pl181","X":558,"Y":337},{"Bonus":0,"Continent":"K55","ID":31805,"Name":"004 Kabul","PlayerID":699524362,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31805","ServerKey":"pl181","X":585,"Y":592},{"Bonus":0,"Continent":"K43","ID":31806,"Name":"*207*","PlayerID":699273451,"Points":6884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31806","ServerKey":"pl181","X":346,"Y":412},{"Bonus":3,"Continent":"K43","ID":31807,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31807","ServerKey":"pl181","X":329,"Y":491},{"Bonus":0,"Continent":"K63","ID":31808,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31808","ServerKey":"pl181","X":388,"Y":640},{"Bonus":0,"Continent":"K46","ID":31809,"Name":"Jaaa","PlayerID":698635863,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31809","ServerKey":"pl181","X":675,"Y":487},{"Bonus":0,"Continent":"K43","ID":31810,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31810","ServerKey":"pl181","X":338,"Y":430},{"Bonus":0,"Continent":"K33","ID":31811,"Name":"Szlachcic","PlayerID":3484132,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31811","ServerKey":"pl181","X":395,"Y":356},{"Bonus":0,"Continent":"K53","ID":31812,"Name":"Dajanka 28","PlayerID":849012843,"Points":1166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31812","ServerKey":"pl181","X":349,"Y":580},{"Bonus":0,"Continent":"K56","ID":31813,"Name":"O53 Bildudalur","PlayerID":699272880,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31813","ServerKey":"pl181","X":675,"Y":533},{"Bonus":0,"Continent":"K43","ID":31814,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31814","ServerKey":"pl181","X":321,"Y":497},{"Bonus":0,"Continent":"K56","ID":31815,"Name":"D 023","PlayerID":8078914,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31815","ServerKey":"pl181","X":671,"Y":510},{"Bonus":0,"Continent":"K65","ID":31816,"Name":"054","PlayerID":2293376,"Points":9327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31816","ServerKey":"pl181","X":523,"Y":677},{"Bonus":0,"Continent":"K43","ID":31817,"Name":"*215*","PlayerID":699273451,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31817","ServerKey":"pl181","X":349,"Y":413},{"Bonus":0,"Continent":"K36","ID":31818,"Name":"Wioska barbarzyƄska","PlayerID":848915730,"Points":2023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31818","ServerKey":"pl181","X":608,"Y":365},{"Bonus":7,"Continent":"K43","ID":31820,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31820","ServerKey":"pl181","X":327,"Y":469},{"Bonus":0,"Continent":"K35","ID":31821,"Name":"AAA","PlayerID":1006847,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31821","ServerKey":"pl181","X":532,"Y":328},{"Bonus":0,"Continent":"K43","ID":31822,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31822","ServerKey":"pl181","X":328,"Y":495},{"Bonus":0,"Continent":"K34","ID":31823,"Name":"[B]_[033] Dejv.oldplyr","PlayerID":699380607,"Points":6765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31823","ServerKey":"pl181","X":416,"Y":342},{"Bonus":0,"Continent":"K56","ID":31824,"Name":"61k$ Grvvyq","PlayerID":699676005,"Points":7123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31824","ServerKey":"pl181","X":655,"Y":575},{"Bonus":0,"Continent":"K63","ID":31825,"Name":"DejMon2","PlayerID":699805839,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31825","ServerKey":"pl181","X":370,"Y":623},{"Bonus":0,"Continent":"K44","ID":31826,"Name":"Monetki","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31826","ServerKey":"pl181","X":475,"Y":419},{"Bonus":0,"Continent":"K46","ID":31827,"Name":"Dijon","PlayerID":699737356,"Points":8610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31827","ServerKey":"pl181","X":677,"Y":496},{"Bonus":0,"Continent":"K34","ID":31828,"Name":"Wioska 04","PlayerID":951823,"Points":6051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31828","ServerKey":"pl181","X":498,"Y":326},{"Bonus":0,"Continent":"K63","ID":31829,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31829","ServerKey":"pl181","X":392,"Y":639},{"Bonus":7,"Continent":"K36","ID":31830,"Name":".:003:. kr","PlayerID":849098782,"Points":9474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31830","ServerKey":"pl181","X":630,"Y":385},{"Bonus":0,"Continent":"K65","ID":31831,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31831","ServerKey":"pl181","X":575,"Y":655},{"Bonus":0,"Continent":"K46","ID":31832,"Name":"063 | PALESTINA","PlayerID":9228039,"Points":6614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31832","ServerKey":"pl181","X":655,"Y":419},{"Bonus":0,"Continent":"K35","ID":31834,"Name":"Lord Lord Franek .#105","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31834","ServerKey":"pl181","X":526,"Y":329},{"Bonus":0,"Continent":"K46","ID":31835,"Name":"037 troll7","PlayerID":9238175,"Points":10388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31835","ServerKey":"pl181","X":664,"Y":431},{"Bonus":0,"Continent":"K64","ID":31836,"Name":"#SecreSwallowtail","PlayerID":699849210,"Points":4274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31836","ServerKey":"pl181","X":434,"Y":657},{"Bonus":4,"Continent":"K64","ID":31837,"Name":"026","PlayerID":698650301,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31837","ServerKey":"pl181","X":479,"Y":674},{"Bonus":0,"Continent":"K43","ID":31838,"Name":"M181_032","PlayerID":393668,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31838","ServerKey":"pl181","X":340,"Y":430},{"Bonus":0,"Continent":"K53","ID":31839,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31839","ServerKey":"pl181","X":336,"Y":556},{"Bonus":0,"Continent":"K46","ID":31840,"Name":"034 yhyyy","PlayerID":699272633,"Points":8496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31840","ServerKey":"pl181","X":669,"Y":446},{"Bonus":0,"Continent":"K56","ID":31841,"Name":"008 Mord","PlayerID":2135129,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31841","ServerKey":"pl181","X":678,"Y":512},{"Bonus":0,"Continent":"K56","ID":31842,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31842","ServerKey":"pl181","X":674,"Y":539},{"Bonus":0,"Continent":"K63","ID":31843,"Name":"A 003","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31843","ServerKey":"pl181","X":366,"Y":618},{"Bonus":0,"Continent":"K35","ID":31844,"Name":"AAA","PlayerID":1006847,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31844","ServerKey":"pl181","X":530,"Y":326},{"Bonus":0,"Continent":"K36","ID":31845,"Name":"=|28|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31845","ServerKey":"pl181","X":640,"Y":392},{"Bonus":0,"Continent":"K36","ID":31846,"Name":"001.","PlayerID":699098531,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31846","ServerKey":"pl181","X":622,"Y":370},{"Bonus":0,"Continent":"K35","ID":31847,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31847","ServerKey":"pl181","X":563,"Y":341},{"Bonus":0,"Continent":"K64","ID":31848,"Name":"[07]","PlayerID":699849210,"Points":8326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31848","ServerKey":"pl181","X":428,"Y":664},{"Bonus":0,"Continent":"K43","ID":31849,"Name":"Westfold.004","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31849","ServerKey":"pl181","X":344,"Y":421},{"Bonus":0,"Continent":"K53","ID":31850,"Name":"Komornik 003","PlayerID":698290577,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31850","ServerKey":"pl181","X":330,"Y":537},{"Bonus":0,"Continent":"K36","ID":31851,"Name":"Wyspa 016","PlayerID":699756210,"Points":10399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31851","ServerKey":"pl181","X":619,"Y":377},{"Bonus":0,"Continent":"K64","ID":31852,"Name":"B003","PlayerID":8954402,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31852","ServerKey":"pl181","X":468,"Y":673},{"Bonus":0,"Continent":"K43","ID":31853,"Name":"Westfold.012","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31853","ServerKey":"pl181","X":338,"Y":425},{"Bonus":0,"Continent":"K53","ID":31854,"Name":"N001","PlayerID":272173,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31854","ServerKey":"pl181","X":340,"Y":574},{"Bonus":1,"Continent":"K56","ID":31855,"Name":"15k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31855","ServerKey":"pl181","X":662,"Y":573},{"Bonus":0,"Continent":"K64","ID":31856,"Name":"B001","PlayerID":8954402,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31856","ServerKey":"pl181","X":469,"Y":672},{"Bonus":0,"Continent":"K36","ID":31857,"Name":"368|617 Wioska barbarzyƄska","PlayerID":6822957,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31857","ServerKey":"pl181","X":617,"Y":368},{"Bonus":0,"Continent":"K64","ID":31858,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31858","ServerKey":"pl181","X":431,"Y":662},{"Bonus":0,"Continent":"K53","ID":31859,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":2221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31859","ServerKey":"pl181","X":337,"Y":562},{"Bonus":7,"Continent":"K64","ID":31860,"Name":"A07","PlayerID":698652014,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31860","ServerKey":"pl181","X":468,"Y":671},{"Bonus":0,"Continent":"K36","ID":31861,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31861","ServerKey":"pl181","X":633,"Y":391},{"Bonus":0,"Continent":"K46","ID":31862,"Name":"022 pawelk95","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31862","ServerKey":"pl181","X":661,"Y":483},{"Bonus":0,"Continent":"K34","ID":31863,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":8562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31863","ServerKey":"pl181","X":430,"Y":337},{"Bonus":0,"Continent":"K46","ID":31864,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31864","ServerKey":"pl181","X":675,"Y":464},{"Bonus":0,"Continent":"K35","ID":31865,"Name":"017 .11. Infanterie-Division","PlayerID":849091899,"Points":3416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31865","ServerKey":"pl181","X":597,"Y":356},{"Bonus":0,"Continent":"K66","ID":31866,"Name":"historia blisko 1","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31866","ServerKey":"pl181","X":617,"Y":603},{"Bonus":0,"Continent":"K66","ID":31867,"Name":"Sony 911","PlayerID":1415009,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31867","ServerKey":"pl181","X":621,"Y":630},{"Bonus":0,"Continent":"K35","ID":31868,"Name":"Lord Lord Franek .#097","PlayerID":698420691,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31868","ServerKey":"pl181","X":511,"Y":325},{"Bonus":0,"Continent":"K34","ID":31869,"Name":"K34 - [153] Before Land","PlayerID":699088769,"Points":7619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31869","ServerKey":"pl181","X":428,"Y":337},{"Bonus":0,"Continent":"K65","ID":31870,"Name":"0411","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31870","ServerKey":"pl181","X":544,"Y":635},{"Bonus":0,"Continent":"K64","ID":31871,"Name":"#[10]","PlayerID":699849210,"Points":4657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31871","ServerKey":"pl181","X":431,"Y":661},{"Bonus":0,"Continent":"K64","ID":31872,"Name":"Premium","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31872","ServerKey":"pl181","X":410,"Y":650},{"Bonus":0,"Continent":"K34","ID":31873,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":7254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31873","ServerKey":"pl181","X":441,"Y":335},{"Bonus":0,"Continent":"K46","ID":31874,"Name":"I046 Sa w sobie zakochani","PlayerID":699722599,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31874","ServerKey":"pl181","X":667,"Y":457},{"Bonus":0,"Continent":"K46","ID":31875,"Name":"ABB","PlayerID":1086351,"Points":5295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31875","ServerKey":"pl181","X":657,"Y":416},{"Bonus":0,"Continent":"K34","ID":31876,"Name":"K34 x024","PlayerID":698364331,"Points":7569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31876","ServerKey":"pl181","X":405,"Y":356},{"Bonus":0,"Continent":"K64","ID":31877,"Name":"Psycha Siada","PlayerID":698807570,"Points":5372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31877","ServerKey":"pl181","X":443,"Y":666},{"Bonus":0,"Continent":"K46","ID":31878,"Name":"xdd","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31878","ServerKey":"pl181","X":679,"Y":496},{"Bonus":0,"Continent":"K53","ID":31879,"Name":"NAPLETON","PlayerID":7183372,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31879","ServerKey":"pl181","X":351,"Y":599},{"Bonus":0,"Continent":"K64","ID":31880,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31880","ServerKey":"pl181","X":427,"Y":661},{"Bonus":0,"Continent":"K64","ID":31882,"Name":"psycha sitting","PlayerID":699736927,"Points":4611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31882","ServerKey":"pl181","X":433,"Y":664},{"Bonus":0,"Continent":"K36","ID":31883,"Name":"1000","PlayerID":699150527,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31883","ServerKey":"pl181","X":620,"Y":365},{"Bonus":0,"Continent":"K33","ID":31884,"Name":"Szulernia","PlayerID":7249451,"Points":3463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31884","ServerKey":"pl181","X":376,"Y":375},{"Bonus":0,"Continent":"K64","ID":31885,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":2934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31885","ServerKey":"pl181","X":409,"Y":650},{"Bonus":0,"Continent":"K35","ID":31886,"Name":"Wioska 5","PlayerID":698680806,"Points":5566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31886","ServerKey":"pl181","X":504,"Y":326},{"Bonus":0,"Continent":"K66","ID":31887,"Name":"*023","PlayerID":699567608,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31887","ServerKey":"pl181","X":604,"Y":640},{"Bonus":0,"Continent":"K46","ID":31889,"Name":"Odprysk KsiÄ™ĆŒyca01","PlayerID":699574408,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31889","ServerKey":"pl181","X":675,"Y":474},{"Bonus":0,"Continent":"K64","ID":31890,"Name":"Psycha Siada","PlayerID":698807570,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31890","ServerKey":"pl181","X":442,"Y":669},{"Bonus":0,"Continent":"K33","ID":31891,"Name":"Szulernia","PlayerID":7249451,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31891","ServerKey":"pl181","X":380,"Y":380},{"Bonus":0,"Continent":"K35","ID":31892,"Name":"Lord Lord Franek .#093","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31892","ServerKey":"pl181","X":517,"Y":322},{"Bonus":0,"Continent":"K56","ID":31893,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31893","ServerKey":"pl181","X":674,"Y":514},{"Bonus":2,"Continent":"K35","ID":31894,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31894","ServerKey":"pl181","X":567,"Y":342},{"Bonus":0,"Continent":"K34","ID":31895,"Name":"216","PlayerID":7271812,"Points":6948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31895","ServerKey":"pl181","X":433,"Y":335},{"Bonus":0,"Continent":"K34","ID":31896,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31896","ServerKey":"pl181","X":434,"Y":338},{"Bonus":0,"Continent":"K43","ID":31897,"Name":"Wioska barbarzyƄska","PlayerID":8503255,"Points":2580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31897","ServerKey":"pl181","X":346,"Y":410},{"Bonus":0,"Continent":"K53","ID":31898,"Name":"Taran","PlayerID":6180190,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31898","ServerKey":"pl181","X":340,"Y":576},{"Bonus":0,"Continent":"K43","ID":31899,"Name":"A0260","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31899","ServerKey":"pl181","X":329,"Y":479},{"Bonus":0,"Continent":"K35","ID":31900,"Name":"Wrath 013","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31900","ServerKey":"pl181","X":570,"Y":344},{"Bonus":0,"Continent":"K63","ID":31901,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":6835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31901","ServerKey":"pl181","X":383,"Y":629},{"Bonus":0,"Continent":"K66","ID":31902,"Name":"Ć»UBR .::.B.E.T.O.N /5","PlayerID":33900,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31902","ServerKey":"pl181","X":626,"Y":618},{"Bonus":0,"Continent":"K65","ID":31903,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31903","ServerKey":"pl181","X":575,"Y":662},{"Bonus":0,"Continent":"K35","ID":31904,"Name":"ADEN","PlayerID":698588535,"Points":7220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31904","ServerKey":"pl181","X":598,"Y":356},{"Bonus":0,"Continent":"K33","ID":31905,"Name":"cz 10 9","PlayerID":3909522,"Points":8185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31905","ServerKey":"pl181","X":371,"Y":383},{"Bonus":0,"Continent":"K46","ID":31906,"Name":"**34**","PlayerID":849098782,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31906","ServerKey":"pl181","X":664,"Y":441},{"Bonus":0,"Continent":"K36","ID":31907,"Name":"Wyspa 001","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31907","ServerKey":"pl181","X":624,"Y":380},{"Bonus":0,"Continent":"K63","ID":31908,"Name":"019","PlayerID":699083129,"Points":5512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31908","ServerKey":"pl181","X":361,"Y":604},{"Bonus":7,"Continent":"K46","ID":31909,"Name":"032. Alesia","PlayerID":849091866,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31909","ServerKey":"pl181","X":652,"Y":421},{"Bonus":0,"Continent":"K66","ID":31910,"Name":"033","PlayerID":849097799,"Points":7005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31910","ServerKey":"pl181","X":607,"Y":641},{"Bonus":0,"Continent":"K45","ID":31911,"Name":"DOM 10","PlayerID":849064614,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31911","ServerKey":"pl181","X":564,"Y":409},{"Bonus":0,"Continent":"K34","ID":31912,"Name":"#0189 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31912","ServerKey":"pl181","X":463,"Y":327},{"Bonus":0,"Continent":"K46","ID":31913,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31913","ServerKey":"pl181","X":677,"Y":468},{"Bonus":0,"Continent":"K53","ID":31914,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31914","ServerKey":"pl181","X":327,"Y":524},{"Bonus":0,"Continent":"K53","ID":31915,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31915","ServerKey":"pl181","X":326,"Y":530},{"Bonus":0,"Continent":"K43","ID":31916,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31916","ServerKey":"pl181","X":324,"Y":471},{"Bonus":0,"Continent":"K36","ID":31917,"Name":"017 Wioska Kolegi","PlayerID":6822957,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31917","ServerKey":"pl181","X":613,"Y":362},{"Bonus":0,"Continent":"K36","ID":31918,"Name":"369|621 Wioska barbarzyƄska","PlayerID":6822957,"Points":6705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31918","ServerKey":"pl181","X":621,"Y":369},{"Bonus":0,"Continent":"K35","ID":31919,"Name":"Lord Lord Franek .#133","PlayerID":698420691,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31919","ServerKey":"pl181","X":523,"Y":326},{"Bonus":0,"Continent":"K35","ID":31920,"Name":"Makemake","PlayerID":699797805,"Points":3699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31920","ServerKey":"pl181","X":551,"Y":335},{"Bonus":0,"Continent":"K66","ID":31921,"Name":"WB 07","PlayerID":2269943,"Points":8298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31921","ServerKey":"pl181","X":636,"Y":609},{"Bonus":0,"Continent":"K36","ID":31922,"Name":"=|31|=","PlayerID":9101574,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31922","ServerKey":"pl181","X":647,"Y":398},{"Bonus":0,"Continent":"K33","ID":31923,"Name":"*219*","PlayerID":699273451,"Points":6296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31923","ServerKey":"pl181","X":379,"Y":377},{"Bonus":0,"Continent":"K64","ID":31924,"Name":"oriental","PlayerID":8980651,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31924","ServerKey":"pl181","X":454,"Y":665},{"Bonus":0,"Continent":"K35","ID":31925,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31925","ServerKey":"pl181","X":555,"Y":332},{"Bonus":0,"Continent":"K33","ID":31926,"Name":"cz Wioska 76","PlayerID":3909522,"Points":4601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31926","ServerKey":"pl181","X":370,"Y":385},{"Bonus":0,"Continent":"K35","ID":31927,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31927","ServerKey":"pl181","X":559,"Y":339},{"Bonus":0,"Continent":"K63","ID":31928,"Name":"024 Walduƛ dziaƂej!","PlayerID":6354098,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31928","ServerKey":"pl181","X":375,"Y":623},{"Bonus":0,"Continent":"K53","ID":31930,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":7488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31930","ServerKey":"pl181","X":342,"Y":571},{"Bonus":0,"Continent":"K65","ID":31932,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31932","ServerKey":"pl181","X":566,"Y":661},{"Bonus":0,"Continent":"K35","ID":31933,"Name":"- Arctos","PlayerID":699825236,"Points":6894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31933","ServerKey":"pl181","X":551,"Y":326},{"Bonus":0,"Continent":"K35","ID":31934,"Name":"- Dragon4","PlayerID":699825236,"Points":8966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31934","ServerKey":"pl181","X":547,"Y":333},{"Bonus":0,"Continent":"K53","ID":31935,"Name":"Wonderwall","PlayerID":698962117,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31935","ServerKey":"pl181","X":334,"Y":541},{"Bonus":0,"Continent":"K43","ID":31936,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31936","ServerKey":"pl181","X":328,"Y":453},{"Bonus":0,"Continent":"K35","ID":31937,"Name":"A.08 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31937","ServerKey":"pl181","X":561,"Y":334},{"Bonus":0,"Continent":"K36","ID":31938,"Name":".:005:.","PlayerID":849098782,"Points":9085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31938","ServerKey":"pl181","X":634,"Y":384},{"Bonus":0,"Continent":"K46","ID":31939,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31939","ServerKey":"pl181","X":672,"Y":469},{"Bonus":0,"Continent":"K63","ID":31940,"Name":"Grupka 7 wiosek 1","PlayerID":698353083,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31940","ServerKey":"pl181","X":354,"Y":600},{"Bonus":6,"Continent":"K35","ID":31941,"Name":"-004-","PlayerID":698588812,"Points":7601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31941","ServerKey":"pl181","X":539,"Y":326},{"Bonus":0,"Continent":"K46","ID":31942,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31942","ServerKey":"pl181","X":674,"Y":491},{"Bonus":0,"Continent":"K63","ID":31943,"Name":"025 Mom to gdzieƛ ida do dom","PlayerID":6354098,"Points":8730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31943","ServerKey":"pl181","X":374,"Y":623},{"Bonus":0,"Continent":"K35","ID":31944,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31944","ServerKey":"pl181","X":555,"Y":336},{"Bonus":0,"Continent":"K34","ID":31945,"Name":"fff","PlayerID":698239813,"Points":10388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31945","ServerKey":"pl181","X":489,"Y":322},{"Bonus":0,"Continent":"K35","ID":31946,"Name":"AAA","PlayerID":1006847,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31946","ServerKey":"pl181","X":528,"Y":323},{"Bonus":0,"Continent":"K53","ID":31947,"Name":"NoeyPL","PlayerID":849000135,"Points":4958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31947","ServerKey":"pl181","X":331,"Y":557},{"Bonus":0,"Continent":"K64","ID":31948,"Name":"0612","PlayerID":698650301,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31948","ServerKey":"pl181","X":482,"Y":673},{"Bonus":0,"Continent":"K35","ID":31949,"Name":"Wrath 005","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31949","ServerKey":"pl181","X":573,"Y":344},{"Bonus":0,"Continent":"K35","ID":31950,"Name":"Drakonia","PlayerID":699825236,"Points":5234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31950","ServerKey":"pl181","X":551,"Y":329},{"Bonus":0,"Continent":"K53","ID":31951,"Name":"051","PlayerID":6853693,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31951","ServerKey":"pl181","X":341,"Y":573},{"Bonus":0,"Continent":"K63","ID":31952,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31952","ServerKey":"pl181","X":389,"Y":634},{"Bonus":0,"Continent":"K56","ID":31953,"Name":"D 024","PlayerID":8078914,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31953","ServerKey":"pl181","X":673,"Y":513},{"Bonus":0,"Continent":"K53","ID":31954,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31954","ServerKey":"pl181","X":327,"Y":516},{"Bonus":0,"Continent":"K43","ID":31955,"Name":"M181_031","PlayerID":393668,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31955","ServerKey":"pl181","X":340,"Y":431},{"Bonus":0,"Continent":"K66","ID":31956,"Name":"BETON 055","PlayerID":699277039,"Points":6441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31956","ServerKey":"pl181","X":624,"Y":618},{"Bonus":0,"Continent":"K53","ID":31957,"Name":"Ajuda","PlayerID":699494480,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31957","ServerKey":"pl181","X":347,"Y":589},{"Bonus":2,"Continent":"K43","ID":31958,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31958","ServerKey":"pl181","X":324,"Y":490},{"Bonus":0,"Continent":"K64","ID":31959,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":3876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31959","ServerKey":"pl181","X":411,"Y":650},{"Bonus":0,"Continent":"K53","ID":31960,"Name":"N002","PlayerID":272173,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31960","ServerKey":"pl181","X":341,"Y":570},{"Bonus":0,"Continent":"K53","ID":31961,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31961","ServerKey":"pl181","X":330,"Y":552},{"Bonus":0,"Continent":"K65","ID":31962,"Name":"Sony 911","PlayerID":1415009,"Points":9774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31962","ServerKey":"pl181","X":581,"Y":658},{"Bonus":0,"Continent":"K66","ID":31963,"Name":"Wioska 039","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31963","ServerKey":"pl181","X":648,"Y":601},{"Bonus":0,"Continent":"K46","ID":31964,"Name":"020 toni","PlayerID":849098769,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31964","ServerKey":"pl181","X":678,"Y":465},{"Bonus":0,"Continent":"K34","ID":31965,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":8880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31965","ServerKey":"pl181","X":450,"Y":330},{"Bonus":0,"Continent":"K66","ID":31966,"Name":"Sony 911","PlayerID":1415009,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31966","ServerKey":"pl181","X":618,"Y":632},{"Bonus":0,"Continent":"K65","ID":31967,"Name":"023 serniczek z napojem","PlayerID":8954402,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31967","ServerKey":"pl181","X":506,"Y":673},{"Bonus":0,"Continent":"K56","ID":31968,"Name":"Wioska 054","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31968","ServerKey":"pl181","X":642,"Y":599},{"Bonus":0,"Continent":"K43","ID":31969,"Name":"Sam fridhof uƂomow i pofirtnacow","PlayerID":699711723,"Points":4144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31969","ServerKey":"pl181","X":328,"Y":465},{"Bonus":0,"Continent":"K53","ID":31970,"Name":"off 100 %","PlayerID":849012521,"Points":8516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31970","ServerKey":"pl181","X":339,"Y":571},{"Bonus":0,"Continent":"K36","ID":31971,"Name":"Gattacka","PlayerID":699298370,"Points":9449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31971","ServerKey":"pl181","X":623,"Y":372},{"Bonus":0,"Continent":"K56","ID":31972,"Name":"B 035","PlayerID":8078914,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31972","ServerKey":"pl181","X":671,"Y":531},{"Bonus":0,"Continent":"K56","ID":31973,"Name":"Wioska 042","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31973","ServerKey":"pl181","X":649,"Y":599},{"Bonus":6,"Continent":"K36","ID":31974,"Name":"014.","PlayerID":699491076,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31974","ServerKey":"pl181","X":636,"Y":393},{"Bonus":0,"Continent":"K46","ID":31976,"Name":"[017] KrĂłlowie klozetĂłw","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31976","ServerKey":"pl181","X":665,"Y":435},{"Bonus":7,"Continent":"K34","ID":31977,"Name":"#0143 Thorus5","PlayerID":1238300,"Points":6616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31977","ServerKey":"pl181","X":470,"Y":324},{"Bonus":0,"Continent":"K46","ID":31978,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31978","ServerKey":"pl181","X":670,"Y":476},{"Bonus":0,"Continent":"K35","ID":31979,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31979","ServerKey":"pl181","X":588,"Y":348},{"Bonus":0,"Continent":"K33","ID":31981,"Name":"045 Toporowa cyrhla II","PlayerID":848978297,"Points":2836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31981","ServerKey":"pl181","X":378,"Y":377},{"Bonus":0,"Continent":"K36","ID":31982,"Name":"XDX","PlayerID":699098531,"Points":10822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31982","ServerKey":"pl181","X":624,"Y":371},{"Bonus":0,"Continent":"K63","ID":31983,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31983","ServerKey":"pl181","X":394,"Y":638},{"Bonus":0,"Continent":"K53","ID":31984,"Name":"C0167","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31984","ServerKey":"pl181","X":327,"Y":537},{"Bonus":0,"Continent":"K35","ID":31985,"Name":"Wioska VI","PlayerID":698200480,"Points":6391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31985","ServerKey":"pl181","X":584,"Y":342},{"Bonus":0,"Continent":"K65","ID":31987,"Name":"01 Kapitol","PlayerID":849097981,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31987","ServerKey":"pl181","X":539,"Y":675},{"Bonus":0,"Continent":"K64","ID":31988,"Name":"#019. Wstyd za Artura","PlayerID":848896948,"Points":8649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31988","ServerKey":"pl181","X":453,"Y":673},{"Bonus":0,"Continent":"K46","ID":31989,"Name":"emoriar","PlayerID":699574408,"Points":6088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31989","ServerKey":"pl181","X":664,"Y":442},{"Bonus":0,"Continent":"K66","ID":31990,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31990","ServerKey":"pl181","X":627,"Y":622},{"Bonus":0,"Continent":"K53","ID":31991,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31991","ServerKey":"pl181","X":335,"Y":556},{"Bonus":0,"Continent":"K66","ID":31992,"Name":"#001#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31992","ServerKey":"pl181","X":627,"Y":623},{"Bonus":0,"Continent":"K64","ID":31993,"Name":"rotes idz spac misiu","PlayerID":698807570,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31993","ServerKey":"pl181","X":456,"Y":674},{"Bonus":0,"Continent":"K46","ID":31994,"Name":"21. KaruTown","PlayerID":9238175,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31994","ServerKey":"pl181","X":650,"Y":416},{"Bonus":0,"Continent":"K56","ID":31995,"Name":"E011","PlayerID":8428196,"Points":6999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31995","ServerKey":"pl181","X":664,"Y":552},{"Bonus":0,"Continent":"K43","ID":31996,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31996","ServerKey":"pl181","X":323,"Y":494},{"Bonus":0,"Continent":"K36","ID":31997,"Name":"01 tonieostatnieslowo","PlayerID":699861004,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31997","ServerKey":"pl181","X":609,"Y":364},{"Bonus":0,"Continent":"K53","ID":31998,"Name":"055 komornicy","PlayerID":699510259,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31998","ServerKey":"pl181","X":333,"Y":543},{"Bonus":0,"Continent":"K43","ID":31999,"Name":"V012","PlayerID":849097737,"Points":3379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=31999","ServerKey":"pl181","X":341,"Y":420},{"Bonus":0,"Continent":"K65","ID":32000,"Name":"Wioska r 9","PlayerID":848915531,"Points":5887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32000","ServerKey":"pl181","X":556,"Y":671},{"Bonus":0,"Continent":"K56","ID":32001,"Name":"[165]","PlayerID":8000875,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32001","ServerKey":"pl181","X":649,"Y":585},{"Bonus":8,"Continent":"K56","ID":32002,"Name":"O62 Makeb","PlayerID":699272880,"Points":10402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32002","ServerKey":"pl181","X":675,"Y":511},{"Bonus":0,"Continent":"K53","ID":32003,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32003","ServerKey":"pl181","X":333,"Y":553},{"Bonus":0,"Continent":"K46","ID":32004,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32004","ServerKey":"pl181","X":675,"Y":478},{"Bonus":0,"Continent":"K65","ID":32005,"Name":"Wioska r 18","PlayerID":848915531,"Points":3306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32005","ServerKey":"pl181","X":559,"Y":668},{"Bonus":0,"Continent":"K34","ID":32006,"Name":"[B]_[004] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32006","ServerKey":"pl181","X":428,"Y":340},{"Bonus":0,"Continent":"K63","ID":32007,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32007","ServerKey":"pl181","X":398,"Y":641},{"Bonus":0,"Continent":"K46","ID":32008,"Name":"I023 Dzisiaj spisz w szafie","PlayerID":699722599,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32008","ServerKey":"pl181","X":666,"Y":463},{"Bonus":0,"Continent":"K64","ID":32009,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32009","ServerKey":"pl181","X":460,"Y":673},{"Bonus":3,"Continent":"K34","ID":32010,"Name":"[B]_[008] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32010","ServerKey":"pl181","X":426,"Y":344},{"Bonus":0,"Continent":"K56","ID":32011,"Name":"B 055","PlayerID":8078914,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32011","ServerKey":"pl181","X":673,"Y":531},{"Bonus":0,"Continent":"K66","ID":32012,"Name":"Sony 911","PlayerID":1415009,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32012","ServerKey":"pl181","X":618,"Y":631},{"Bonus":0,"Continent":"K63","ID":32013,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32013","ServerKey":"pl181","X":389,"Y":632},{"Bonus":0,"Continent":"K66","ID":32014,"Name":"Bunkier 006","PlayerID":699778867,"Points":7628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32014","ServerKey":"pl181","X":624,"Y":625},{"Bonus":0,"Continent":"K56","ID":32015,"Name":"090","PlayerID":699351301,"Points":1842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32015","ServerKey":"pl181","X":662,"Y":559},{"Bonus":0,"Continent":"K64","ID":32016,"Name":"R 003 ~Alisia~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32016","ServerKey":"pl181","X":488,"Y":678},{"Bonus":0,"Continent":"K66","ID":32017,"Name":"sony911","PlayerID":1415009,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32017","ServerKey":"pl181","X":617,"Y":632},{"Bonus":0,"Continent":"K66","ID":32018,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32018","ServerKey":"pl181","X":623,"Y":622},{"Bonus":0,"Continent":"K35","ID":32019,"Name":"Krytl13","PlayerID":1990750,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32019","ServerKey":"pl181","X":509,"Y":321},{"Bonus":6,"Continent":"K46","ID":32020,"Name":"0043","PlayerID":698416970,"Points":8227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32020","ServerKey":"pl181","X":675,"Y":465},{"Bonus":0,"Continent":"K56","ID":32021,"Name":"$AtlantaHawks","PlayerID":699795378,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32021","ServerKey":"pl181","X":677,"Y":523},{"Bonus":0,"Continent":"K46","ID":32022,"Name":"Centrum 3","PlayerID":1086351,"Points":5926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32022","ServerKey":"pl181","X":651,"Y":405},{"Bonus":0,"Continent":"K36","ID":32023,"Name":"370|618 Wioska barbarzyƄska","PlayerID":6822957,"Points":7942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32023","ServerKey":"pl181","X":618,"Y":370},{"Bonus":0,"Continent":"K33","ID":32025,"Name":"Szlachcic","PlayerID":3484132,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32025","ServerKey":"pl181","X":394,"Y":361},{"Bonus":0,"Continent":"K64","ID":32026,"Name":"Hello hello","PlayerID":8966820,"Points":4124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32026","ServerKey":"pl181","X":437,"Y":667},{"Bonus":0,"Continent":"K64","ID":32027,"Name":"|035| Mandriko","PlayerID":699393742,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32027","ServerKey":"pl181","X":495,"Y":678},{"Bonus":0,"Continent":"K35","ID":32028,"Name":"Wioska Ida Madame","PlayerID":698200480,"Points":5521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32028","ServerKey":"pl181","X":578,"Y":344},{"Bonus":0,"Continent":"K43","ID":32029,"Name":"*234*","PlayerID":699273451,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32029","ServerKey":"pl181","X":331,"Y":445},{"Bonus":1,"Continent":"K33","ID":32030,"Name":"Szlachcic","PlayerID":698160606,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32030","ServerKey":"pl181","X":378,"Y":369},{"Bonus":0,"Continent":"K65","ID":32031,"Name":"Kreskowo _1","PlayerID":699567608,"Points":9774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32031","ServerKey":"pl181","X":592,"Y":646},{"Bonus":0,"Continent":"K34","ID":32032,"Name":"Wioska barbarzyƄska","PlayerID":698239813,"Points":5852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32032","ServerKey":"pl181","X":495,"Y":324},{"Bonus":0,"Continent":"K63","ID":32033,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32033","ServerKey":"pl181","X":388,"Y":642},{"Bonus":0,"Continent":"K43","ID":32034,"Name":"*233*","PlayerID":699273451,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32034","ServerKey":"pl181","X":332,"Y":443},{"Bonus":0,"Continent":"K36","ID":32035,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32035","ServerKey":"pl181","X":638,"Y":396},{"Bonus":2,"Continent":"K65","ID":32036,"Name":"Osada koczownikĂłw","PlayerID":699567608,"Points":9243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32036","ServerKey":"pl181","X":594,"Y":647},{"Bonus":0,"Continent":"K34","ID":32037,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32037","ServerKey":"pl181","X":485,"Y":366},{"Bonus":0,"Continent":"K33","ID":32038,"Name":"*041*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32038","ServerKey":"pl181","X":356,"Y":394},{"Bonus":0,"Continent":"K43","ID":32039,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32039","ServerKey":"pl181","X":325,"Y":495},{"Bonus":0,"Continent":"K53","ID":32040,"Name":"C0048","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32040","ServerKey":"pl181","X":322,"Y":521},{"Bonus":0,"Continent":"K43","ID":32041,"Name":"Wioska DANIEL48","PlayerID":849073314,"Points":1192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32041","ServerKey":"pl181","X":340,"Y":421},{"Bonus":0,"Continent":"K65","ID":32042,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32042","ServerKey":"pl181","X":504,"Y":679},{"Bonus":0,"Continent":"K46","ID":32043,"Name":"A007 Dumel","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32043","ServerKey":"pl181","X":671,"Y":447},{"Bonus":0,"Continent":"K34","ID":32044,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":7786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32044","ServerKey":"pl181","X":467,"Y":326},{"Bonus":0,"Continent":"K35","ID":32045,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32045","ServerKey":"pl181","X":594,"Y":353},{"Bonus":0,"Continent":"K36","ID":32046,"Name":"Ani przed, ani po","PlayerID":699478692,"Points":5346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32046","ServerKey":"pl181","X":609,"Y":365},{"Bonus":0,"Continent":"K33","ID":32047,"Name":"Wioska malaula","PlayerID":699711706,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32047","ServerKey":"pl181","X":374,"Y":377},{"Bonus":0,"Continent":"K43","ID":32048,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32048","ServerKey":"pl181","X":329,"Y":473},{"Bonus":0,"Continent":"K43","ID":32049,"Name":"*240*","PlayerID":699273451,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32049","ServerKey":"pl181","X":331,"Y":444},{"Bonus":0,"Continent":"K33","ID":32050,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32050","ServerKey":"pl181","X":379,"Y":370},{"Bonus":0,"Continent":"K34","ID":32051,"Name":"044","PlayerID":2502956,"Points":9911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32051","ServerKey":"pl181","X":456,"Y":333},{"Bonus":0,"Continent":"K35","ID":32052,"Name":"Wąski","PlayerID":849101144,"Points":4808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32052","ServerKey":"pl181","X":541,"Y":351},{"Bonus":4,"Continent":"K43","ID":32053,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32053","ServerKey":"pl181","X":331,"Y":473},{"Bonus":0,"Continent":"K43","ID":32054,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32054","ServerKey":"pl181","X":328,"Y":499},{"Bonus":0,"Continent":"K65","ID":32055,"Name":"006","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32055","ServerKey":"pl181","X":535,"Y":673},{"Bonus":0,"Continent":"K64","ID":32057,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32057","ServerKey":"pl181","X":400,"Y":646},{"Bonus":0,"Continent":"K64","ID":32058,"Name":"Szale $$$","PlayerID":8966820,"Points":6922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32058","ServerKey":"pl181","X":444,"Y":669},{"Bonus":0,"Continent":"K63","ID":32059,"Name":"016 Przerwa na szpuli!","PlayerID":6354098,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32059","ServerKey":"pl181","X":379,"Y":630},{"Bonus":5,"Continent":"K53","ID":32060,"Name":"Grupka 7 wiosek Koszary","PlayerID":698353083,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32060","ServerKey":"pl181","X":357,"Y":598},{"Bonus":0,"Continent":"K34","ID":32061,"Name":"XXXX","PlayerID":849054951,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32061","ServerKey":"pl181","X":491,"Y":329},{"Bonus":0,"Continent":"K46","ID":32062,"Name":"050 Wioska","PlayerID":9238175,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32062","ServerKey":"pl181","X":658,"Y":422},{"Bonus":7,"Continent":"K65","ID":32063,"Name":"- 290 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32063","ServerKey":"pl181","X":542,"Y":672},{"Bonus":0,"Continent":"K56","ID":32064,"Name":"Wioska barbarzyƄska","PlayerID":478956,"Points":1427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32064","ServerKey":"pl181","X":661,"Y":580},{"Bonus":0,"Continent":"K66","ID":32065,"Name":"013","PlayerID":849097799,"Points":8340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32065","ServerKey":"pl181","X":606,"Y":635},{"Bonus":0,"Continent":"K43","ID":32066,"Name":"*229*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32066","ServerKey":"pl181","X":333,"Y":438},{"Bonus":0,"Continent":"K66","ID":32067,"Name":"A041","PlayerID":9023703,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32067","ServerKey":"pl181","X":607,"Y":643},{"Bonus":0,"Continent":"K56","ID":32068,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32068","ServerKey":"pl181","X":676,"Y":516},{"Bonus":0,"Continent":"K43","ID":32069,"Name":"Westfold.007","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32069","ServerKey":"pl181","X":345,"Y":422},{"Bonus":0,"Continent":"K63","ID":32070,"Name":"03Wioska barbarzyƄska","PlayerID":699704542,"Points":8407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32070","ServerKey":"pl181","X":386,"Y":631},{"Bonus":0,"Continent":"K36","ID":32071,"Name":"106","PlayerID":7085502,"Points":8011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32071","ServerKey":"pl181","X":617,"Y":369},{"Bonus":0,"Continent":"K43","ID":32072,"Name":"*203*","PlayerID":699273451,"Points":8026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32072","ServerKey":"pl181","X":344,"Y":412},{"Bonus":0,"Continent":"K64","ID":32073,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32073","ServerKey":"pl181","X":470,"Y":655},{"Bonus":0,"Continent":"K46","ID":32074,"Name":"059 | PALESTINA","PlayerID":9228039,"Points":6781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32074","ServerKey":"pl181","X":657,"Y":414},{"Bonus":0,"Continent":"K43","ID":32075,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":5700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32075","ServerKey":"pl181","X":326,"Y":499},{"Bonus":0,"Continent":"K35","ID":32076,"Name":"AAA","PlayerID":1006847,"Points":9205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32076","ServerKey":"pl181","X":536,"Y":330},{"Bonus":0,"Continent":"K65","ID":32077,"Name":"0575","PlayerID":698659980,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32077","ServerKey":"pl181","X":552,"Y":671},{"Bonus":0,"Continent":"K64","ID":32078,"Name":"Wioska conradox","PlayerID":848999671,"Points":9758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32078","ServerKey":"pl181","X":473,"Y":654},{"Bonus":0,"Continent":"K33","ID":32079,"Name":"Bagienko.Anker...","PlayerID":699713515,"Points":3963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32079","ServerKey":"pl181","X":371,"Y":386},{"Bonus":0,"Continent":"K34","ID":32080,"Name":"[B]_[002] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32080","ServerKey":"pl181","X":420,"Y":346},{"Bonus":0,"Continent":"K64","ID":32081,"Name":"Psycha Siada","PlayerID":698807570,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32081","ServerKey":"pl181","X":441,"Y":669},{"Bonus":0,"Continent":"K43","ID":32082,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32082","ServerKey":"pl181","X":328,"Y":492},{"Bonus":0,"Continent":"K65","ID":32083,"Name":"026","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32083","ServerKey":"pl181","X":538,"Y":670},{"Bonus":0,"Continent":"K43","ID":32084,"Name":"Lord Arsey III","PlayerID":698349125,"Points":2768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32084","ServerKey":"pl181","X":339,"Y":421},{"Bonus":0,"Continent":"K35","ID":32085,"Name":"81 Czwartek","PlayerID":2571407,"Points":3487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32085","ServerKey":"pl181","X":522,"Y":330},{"Bonus":0,"Continent":"K34","ID":32086,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32086","ServerKey":"pl181","X":483,"Y":325},{"Bonus":0,"Continent":"K35","ID":32087,"Name":"Wioska 2","PlayerID":7560474,"Points":5024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32087","ServerKey":"pl181","X":571,"Y":335},{"Bonus":0,"Continent":"K43","ID":32088,"Name":"Klan Ognia","PlayerID":393668,"Points":6575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32088","ServerKey":"pl181","X":341,"Y":435},{"Bonus":0,"Continent":"K35","ID":32089,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32089","ServerKey":"pl181","X":586,"Y":348},{"Bonus":0,"Continent":"K35","ID":32090,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32090","ServerKey":"pl181","X":595,"Y":349},{"Bonus":0,"Continent":"K53","ID":32091,"Name":"Chekku - meito","PlayerID":9280477,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32091","ServerKey":"pl181","X":325,"Y":531},{"Bonus":0,"Continent":"K34","ID":32092,"Name":"024","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32092","ServerKey":"pl181","X":449,"Y":330},{"Bonus":0,"Continent":"K34","ID":32094,"Name":"218...barba","PlayerID":6920960,"Points":4257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32094","ServerKey":"pl181","X":460,"Y":331},{"Bonus":0,"Continent":"K64","ID":32095,"Name":"New World","PlayerID":698152377,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32095","ServerKey":"pl181","X":496,"Y":676},{"Bonus":0,"Continent":"K35","ID":32096,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":9235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32096","ServerKey":"pl181","X":522,"Y":325},{"Bonus":0,"Continent":"K66","ID":32097,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32097","ServerKey":"pl181","X":621,"Y":626},{"Bonus":9,"Continent":"K63","ID":32098,"Name":"niespodzianka :)","PlayerID":698908184,"Points":11874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32098","ServerKey":"pl181","X":364,"Y":614},{"Bonus":0,"Continent":"K56","ID":32099,"Name":"Wioska 002","PlayerID":2999957,"Points":8061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32099","ServerKey":"pl181","X":676,"Y":528},{"Bonus":0,"Continent":"K66","ID":32100,"Name":"Wioska 095","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32100","ServerKey":"pl181","X":641,"Y":602},{"Bonus":0,"Continent":"K46","ID":32101,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32101","ServerKey":"pl181","X":680,"Y":496},{"Bonus":0,"Continent":"K53","ID":32102,"Name":"Wioska klez 018","PlayerID":698295651,"Points":4556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32102","ServerKey":"pl181","X":321,"Y":506},{"Bonus":0,"Continent":"K63","ID":32103,"Name":"026 Jo Cie dupia.exe","PlayerID":6354098,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32103","ServerKey":"pl181","X":374,"Y":622},{"Bonus":0,"Continent":"K36","ID":32104,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":7242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32104","ServerKey":"pl181","X":614,"Y":369},{"Bonus":4,"Continent":"K34","ID":32105,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32105","ServerKey":"pl181","X":434,"Y":339},{"Bonus":0,"Continent":"K63","ID":32106,"Name":"027 minus pięćset","PlayerID":6354098,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32106","ServerKey":"pl181","X":374,"Y":624},{"Bonus":0,"Continent":"K34","ID":32107,"Name":"BOTLEY","PlayerID":8123790,"Points":1704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32107","ServerKey":"pl181","X":402,"Y":350},{"Bonus":0,"Continent":"K46","ID":32108,"Name":"A012 Dla mpiechu Killeros","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32108","ServerKey":"pl181","X":671,"Y":456},{"Bonus":0,"Continent":"K36","ID":32109,"Name":".:020:. kr","PlayerID":849098782,"Points":9088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32109","ServerKey":"pl181","X":632,"Y":385},{"Bonus":0,"Continent":"K66","ID":32110,"Name":"ZUBRAWKA 050","PlayerID":33900,"Points":9982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32110","ServerKey":"pl181","X":615,"Y":631},{"Bonus":0,"Continent":"K53","ID":32111,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32111","ServerKey":"pl181","X":332,"Y":535},{"Bonus":0,"Continent":"K56","ID":32112,"Name":"Wioska 043","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32112","ServerKey":"pl181","X":647,"Y":598},{"Bonus":8,"Continent":"K65","ID":32113,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32113","ServerKey":"pl181","X":511,"Y":678},{"Bonus":0,"Continent":"K53","ID":32115,"Name":"NoeyPL 2","PlayerID":849000135,"Points":5414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32115","ServerKey":"pl181","X":329,"Y":555},{"Bonus":0,"Continent":"K63","ID":32116,"Name":"D.024","PlayerID":849088243,"Points":3856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32116","ServerKey":"pl181","X":395,"Y":645},{"Bonus":0,"Continent":"K65","ID":32117,"Name":"*031","PlayerID":699567608,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32117","ServerKey":"pl181","X":596,"Y":650},{"Bonus":0,"Continent":"K53","ID":32118,"Name":"thats not gonna be easy","PlayerID":699523631,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32118","ServerKey":"pl181","X":330,"Y":532},{"Bonus":0,"Continent":"K65","ID":32119,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32119","ServerKey":"pl181","X":568,"Y":659},{"Bonus":0,"Continent":"K53","ID":32120,"Name":"C0285","PlayerID":8841266,"Points":5933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32120","ServerKey":"pl181","X":322,"Y":508},{"Bonus":0,"Continent":"K43","ID":32121,"Name":"A0261","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32121","ServerKey":"pl181","X":324,"Y":483},{"Bonus":0,"Continent":"K56","ID":32122,"Name":"Nowa 33","PlayerID":698702991,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32122","ServerKey":"pl181","X":660,"Y":579},{"Bonus":0,"Continent":"K56","ID":32123,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32123","ServerKey":"pl181","X":672,"Y":536},{"Bonus":0,"Continent":"K35","ID":32124,"Name":"AAA","PlayerID":1006847,"Points":9454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32124","ServerKey":"pl181","X":539,"Y":327},{"Bonus":0,"Continent":"K53","ID":32125,"Name":"Wioska klez 007","PlayerID":698295651,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32125","ServerKey":"pl181","X":328,"Y":516},{"Bonus":0,"Continent":"K64","ID":32126,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32126","ServerKey":"pl181","X":417,"Y":656},{"Bonus":0,"Continent":"K56","ID":32127,"Name":"090 Tomek","PlayerID":2135129,"Points":7510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32127","ServerKey":"pl181","X":679,"Y":513},{"Bonus":0,"Continent":"K53","ID":32128,"Name":"Komornik 002","PlayerID":698290577,"Points":6616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32128","ServerKey":"pl181","X":330,"Y":536},{"Bonus":0,"Continent":"K46","ID":32129,"Name":"Centrum 4","PlayerID":1086351,"Points":6220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32129","ServerKey":"pl181","X":649,"Y":410},{"Bonus":0,"Continent":"K56","ID":32130,"Name":"27k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32130","ServerKey":"pl181","X":657,"Y":576},{"Bonus":0,"Continent":"K43","ID":32131,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32131","ServerKey":"pl181","X":327,"Y":474},{"Bonus":0,"Continent":"K53","ID":32132,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32132","ServerKey":"pl181","X":350,"Y":524},{"Bonus":0,"Continent":"K33","ID":32133,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":7281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32133","ServerKey":"pl181","X":370,"Y":395},{"Bonus":0,"Continent":"K34","ID":32134,"Name":"0071","PlayerID":699431255,"Points":6067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32134","ServerKey":"pl181","X":418,"Y":347},{"Bonus":0,"Continent":"K63","ID":32135,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32135","ServerKey":"pl181","X":397,"Y":640},{"Bonus":0,"Continent":"K35","ID":32136,"Name":"Sin City","PlayerID":8908544,"Points":5624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32136","ServerKey":"pl181","X":563,"Y":334},{"Bonus":0,"Continent":"K36","ID":32137,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32137","ServerKey":"pl181","X":627,"Y":383},{"Bonus":0,"Continent":"K56","ID":32138,"Name":"O44 Derinkuyu","PlayerID":699272880,"Points":6761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32138","ServerKey":"pl181","X":669,"Y":542},{"Bonus":0,"Continent":"K53","ID":32139,"Name":"Szlachcic","PlayerID":698388578,"Points":7509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32139","ServerKey":"pl181","X":322,"Y":529},{"Bonus":0,"Continent":"K53","ID":32140,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32140","ServerKey":"pl181","X":328,"Y":540},{"Bonus":0,"Continent":"K34","ID":32141,"Name":"0075","PlayerID":699431255,"Points":6052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32141","ServerKey":"pl181","X":420,"Y":348},{"Bonus":0,"Continent":"K43","ID":32142,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32142","ServerKey":"pl181","X":323,"Y":473},{"Bonus":0,"Continent":"K53","ID":32143,"Name":"183.","PlayerID":849090130,"Points":7438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32143","ServerKey":"pl181","X":352,"Y":592},{"Bonus":0,"Continent":"K35","ID":32144,"Name":"Lord Lord Franek .#172","PlayerID":698420691,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32144","ServerKey":"pl181","X":516,"Y":321},{"Bonus":0,"Continent":"K34","ID":32145,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32145","ServerKey":"pl181","X":492,"Y":336},{"Bonus":0,"Continent":"K65","ID":32146,"Name":"007","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32146","ServerKey":"pl181","X":536,"Y":673},{"Bonus":0,"Continent":"K34","ID":32147,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32147","ServerKey":"pl181","X":482,"Y":322},{"Bonus":0,"Continent":"K46","ID":32148,"Name":"I032","PlayerID":699722599,"Points":9775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32148","ServerKey":"pl181","X":667,"Y":445},{"Bonus":0,"Continent":"K56","ID":32150,"Name":"[043]","PlayerID":698305474,"Points":3897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32150","ServerKey":"pl181","X":650,"Y":587},{"Bonus":0,"Continent":"K34","ID":32151,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32151","ServerKey":"pl181","X":446,"Y":337},{"Bonus":0,"Continent":"K55","ID":32152,"Name":"wioska dla myszy nie tykać","PlayerID":8742874,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32152","ServerKey":"pl181","X":591,"Y":583},{"Bonus":0,"Continent":"K65","ID":32153,"Name":"witojcie pamponie ,","PlayerID":848995242,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32153","ServerKey":"pl181","X":592,"Y":651},{"Bonus":0,"Continent":"K36","ID":32154,"Name":".:010:. ma","PlayerID":699406750,"Points":3540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32154","ServerKey":"pl181","X":636,"Y":384},{"Bonus":3,"Continent":"K46","ID":32155,"Name":"A009 Ć»elazo","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32155","ServerKey":"pl181","X":670,"Y":441},{"Bonus":0,"Continent":"K64","ID":32156,"Name":"psycha sitting","PlayerID":699736927,"Points":5664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32156","ServerKey":"pl181","X":422,"Y":657},{"Bonus":0,"Continent":"K64","ID":32157,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":6120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32157","ServerKey":"pl181","X":404,"Y":652},{"Bonus":0,"Continent":"K53","ID":32158,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32158","ServerKey":"pl181","X":330,"Y":560},{"Bonus":0,"Continent":"K36","ID":32159,"Name":"k36","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32159","ServerKey":"pl181","X":602,"Y":361},{"Bonus":0,"Continent":"K65","ID":32160,"Name":"*032","PlayerID":699567608,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32160","ServerKey":"pl181","X":598,"Y":650},{"Bonus":0,"Continent":"K64","ID":32161,"Name":"Psycha Siada","PlayerID":698807570,"Points":6994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32161","ServerKey":"pl181","X":454,"Y":668},{"Bonus":0,"Continent":"K33","ID":32162,"Name":"Szulernia","PlayerID":7249451,"Points":2267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32162","ServerKey":"pl181","X":386,"Y":365},{"Bonus":0,"Continent":"K46","ID":32163,"Name":"070 Wioska 010","PlayerID":9238175,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32163","ServerKey":"pl181","X":659,"Y":428},{"Bonus":0,"Continent":"K63","ID":32164,"Name":"szkolna 17","PlayerID":849014147,"Points":2600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32164","ServerKey":"pl181","X":353,"Y":604},{"Bonus":0,"Continent":"K35","ID":32165,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":5498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32165","ServerKey":"pl181","X":571,"Y":334},{"Bonus":0,"Continent":"K46","ID":32166,"Name":"052 Wioska 005","PlayerID":9238175,"Points":10323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32166","ServerKey":"pl181","X":658,"Y":419},{"Bonus":0,"Continent":"K65","ID":32167,"Name":"08 Klasztor","PlayerID":849097981,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32167","ServerKey":"pl181","X":539,"Y":673},{"Bonus":0,"Continent":"K36","ID":32168,"Name":"=|26|=","PlayerID":9101574,"Points":6019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32168","ServerKey":"pl181","X":639,"Y":387},{"Bonus":0,"Continent":"K43","ID":32169,"Name":"*208*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32169","ServerKey":"pl181","X":343,"Y":414},{"Bonus":0,"Continent":"K36","ID":32170,"Name":"Wyspa 005","PlayerID":699756210,"Points":9120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32170","ServerKey":"pl181","X":626,"Y":381},{"Bonus":0,"Continent":"K35","ID":32171,"Name":"AAA","PlayerID":1006847,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32171","ServerKey":"pl181","X":528,"Y":324},{"Bonus":0,"Continent":"K36","ID":32172,"Name":"Wyspa 023","PlayerID":699756210,"Points":3607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32172","ServerKey":"pl181","X":628,"Y":378},{"Bonus":0,"Continent":"K53","ID":32173,"Name":"067 komornicy","PlayerID":699510259,"Points":7785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32173","ServerKey":"pl181","X":335,"Y":547},{"Bonus":0,"Continent":"K64","ID":32174,"Name":"#[09]","PlayerID":699849210,"Points":5044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32174","ServerKey":"pl181","X":430,"Y":662},{"Bonus":0,"Continent":"K53","ID":32175,"Name":"deff 100 %","PlayerID":849012521,"Points":7919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32175","ServerKey":"pl181","X":341,"Y":572},{"Bonus":0,"Continent":"K43","ID":32176,"Name":"A0271","PlayerID":8841266,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32176","ServerKey":"pl181","X":327,"Y":475},{"Bonus":0,"Continent":"K35","ID":32177,"Name":"Wioska barbarzyƄska","PlayerID":699797805,"Points":2687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32177","ServerKey":"pl181","X":552,"Y":329},{"Bonus":0,"Continent":"K43","ID":32178,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32178","ServerKey":"pl181","X":323,"Y":471},{"Bonus":0,"Continent":"K34","ID":32179,"Name":"#0193 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32179","ServerKey":"pl181","X":464,"Y":324},{"Bonus":0,"Continent":"K64","ID":32181,"Name":"nie wolno","PlayerID":8966820,"Points":2453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32181","ServerKey":"pl181","X":438,"Y":668},{"Bonus":0,"Continent":"K65","ID":32182,"Name":"0576","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32182","ServerKey":"pl181","X":551,"Y":671},{"Bonus":0,"Continent":"K53","ID":32183,"Name":"Wioska klez 003","PlayerID":698295651,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32183","ServerKey":"pl181","X":328,"Y":513},{"Bonus":4,"Continent":"K43","ID":32184,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32184","ServerKey":"pl181","X":327,"Y":491},{"Bonus":0,"Continent":"K65","ID":32185,"Name":"kathare","PlayerID":873575,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32185","ServerKey":"pl181","X":551,"Y":628},{"Bonus":0,"Continent":"K53","ID":32186,"Name":"Wonderwall","PlayerID":698962117,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32186","ServerKey":"pl181","X":333,"Y":548},{"Bonus":0,"Continent":"K46","ID":32187,"Name":"**39**","PlayerID":849098782,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32187","ServerKey":"pl181","X":670,"Y":442},{"Bonus":0,"Continent":"K43","ID":32188,"Name":"*250*","PlayerID":699273451,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32188","ServerKey":"pl181","X":334,"Y":448},{"Bonus":0,"Continent":"K63","ID":32189,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32189","ServerKey":"pl181","X":362,"Y":615},{"Bonus":0,"Continent":"K46","ID":32190,"Name":"Stolica","PlayerID":1086351,"Points":3706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32190","ServerKey":"pl181","X":652,"Y":408},{"Bonus":0,"Continent":"K63","ID":32192,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":7425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32192","ServerKey":"pl181","X":365,"Y":615},{"Bonus":0,"Continent":"K46","ID":32193,"Name":"#054.","PlayerID":556154,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32193","ServerKey":"pl181","X":666,"Y":432},{"Bonus":0,"Continent":"K36","ID":32194,"Name":"Taran 010","PlayerID":2600387,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32194","ServerKey":"pl181","X":622,"Y":360},{"Bonus":0,"Continent":"K43","ID":32195,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32195","ServerKey":"pl181","X":330,"Y":462},{"Bonus":0,"Continent":"K64","ID":32196,"Name":"R 001 ~Micz~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32196","ServerKey":"pl181","X":488,"Y":677},{"Bonus":0,"Continent":"K64","ID":32197,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":8524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32197","ServerKey":"pl181","X":461,"Y":668},{"Bonus":0,"Continent":"K66","ID":32198,"Name":"~~088~~","PlayerID":7829201,"Points":8751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32198","ServerKey":"pl181","X":630,"Y":616},{"Bonus":1,"Continent":"K36","ID":32199,"Name":"Gattacka","PlayerID":699298370,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32199","ServerKey":"pl181","X":618,"Y":372},{"Bonus":0,"Continent":"K35","ID":32200,"Name":"-0007-","PlayerID":2972329,"Points":8720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32200","ServerKey":"pl181","X":544,"Y":327},{"Bonus":0,"Continent":"K65","ID":32201,"Name":"Sony 911","PlayerID":1415009,"Points":7674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32201","ServerKey":"pl181","X":581,"Y":657},{"Bonus":0,"Continent":"K46","ID":32202,"Name":"**06**","PlayerID":849098782,"Points":11954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32202","ServerKey":"pl181","X":667,"Y":439},{"Bonus":0,"Continent":"K46","ID":32203,"Name":"B.01","PlayerID":699737356,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32203","ServerKey":"pl181","X":675,"Y":496},{"Bonus":0,"Continent":"K64","ID":32204,"Name":"R 024","PlayerID":699195358,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32204","ServerKey":"pl181","X":486,"Y":676},{"Bonus":0,"Continent":"K63","ID":32205,"Name":"marchewka","PlayerID":698908184,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32205","ServerKey":"pl181","X":364,"Y":616},{"Bonus":0,"Continent":"K43","ID":32206,"Name":"*060*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32206","ServerKey":"pl181","X":349,"Y":411},{"Bonus":0,"Continent":"K43","ID":32207,"Name":"*232*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32207","ServerKey":"pl181","X":332,"Y":441},{"Bonus":0,"Continent":"K34","ID":32209,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":8292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32209","ServerKey":"pl181","X":429,"Y":335},{"Bonus":0,"Continent":"K63","ID":32210,"Name":"Wioska Ukryta w Liƛciach","PlayerID":8607734,"Points":7755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32210","ServerKey":"pl181","X":360,"Y":603},{"Bonus":0,"Continent":"K43","ID":32211,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32211","ServerKey":"pl181","X":341,"Y":428},{"Bonus":0,"Continent":"K56","ID":32213,"Name":"Tango","PlayerID":699737356,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32213","ServerKey":"pl181","X":679,"Y":500},{"Bonus":0,"Continent":"K43","ID":32215,"Name":"V015","PlayerID":849097737,"Points":8793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32215","ServerKey":"pl181","X":340,"Y":423},{"Bonus":0,"Continent":"K35","ID":32216,"Name":"Lord Lord Franek .#145","PlayerID":698420691,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32216","ServerKey":"pl181","X":515,"Y":322},{"Bonus":0,"Continent":"K64","ID":32217,"Name":"Adidsa 4","PlayerID":9191031,"Points":3969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32217","ServerKey":"pl181","X":412,"Y":652},{"Bonus":0,"Continent":"K66","ID":32218,"Name":"BETON 076","PlayerID":699277039,"Points":4662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32218","ServerKey":"pl181","X":630,"Y":617},{"Bonus":0,"Continent":"K56","ID":32219,"Name":"O45 Fatsa","PlayerID":699272880,"Points":8631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32219","ServerKey":"pl181","X":671,"Y":526},{"Bonus":0,"Continent":"K35","ID":32220,"Name":"AAA","PlayerID":1006847,"Points":9008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32220","ServerKey":"pl181","X":519,"Y":322},{"Bonus":0,"Continent":"K63","ID":32221,"Name":"002","PlayerID":7183372,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32221","ServerKey":"pl181","X":347,"Y":601},{"Bonus":0,"Continent":"K56","ID":32222,"Name":"054 California","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32222","ServerKey":"pl181","X":674,"Y":519},{"Bonus":0,"Continent":"K64","ID":32223,"Name":"R 027","PlayerID":699195358,"Points":9758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32223","ServerKey":"pl181","X":489,"Y":677},{"Bonus":0,"Continent":"K35","ID":32224,"Name":"UltraInstynkt-/=","PlayerID":699710633,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32224","ServerKey":"pl181","X":577,"Y":338},{"Bonus":0,"Continent":"K65","ID":32225,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32225","ServerKey":"pl181","X":538,"Y":671},{"Bonus":0,"Continent":"K53","ID":32226,"Name":"Miasys 5","PlayerID":849090130,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32226","ServerKey":"pl181","X":344,"Y":583},{"Bonus":0,"Continent":"K46","ID":32227,"Name":"002","PlayerID":699598425,"Points":8344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32227","ServerKey":"pl181","X":675,"Y":490},{"Bonus":0,"Continent":"K65","ID":32228,"Name":"*059","PlayerID":699567608,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32228","ServerKey":"pl181","X":585,"Y":659},{"Bonus":0,"Continent":"K56","ID":32229,"Name":"Garczyn","PlayerID":849039310,"Points":4273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32229","ServerKey":"pl181","X":654,"Y":582},{"Bonus":0,"Continent":"K66","ID":32230,"Name":"024","PlayerID":849097799,"Points":7699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32230","ServerKey":"pl181","X":611,"Y":633},{"Bonus":0,"Continent":"K66","ID":32231,"Name":"WB 01","PlayerID":2269943,"Points":8262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32231","ServerKey":"pl181","X":638,"Y":617},{"Bonus":0,"Continent":"K53","ID":32232,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":5480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32232","ServerKey":"pl181","X":325,"Y":505},{"Bonus":0,"Continent":"K63","ID":32233,"Name":"__29__ Thorniara","PlayerID":6354098,"Points":3273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32233","ServerKey":"pl181","X":377,"Y":622},{"Bonus":0,"Continent":"K65","ID":32234,"Name":"002","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32234","ServerKey":"pl181","X":528,"Y":675},{"Bonus":0,"Continent":"K63","ID":32235,"Name":"A 008","PlayerID":699342219,"Points":6091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32235","ServerKey":"pl181","X":368,"Y":619},{"Bonus":0,"Continent":"K34","ID":32236,"Name":"K34 x017","PlayerID":698364331,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32236","ServerKey":"pl181","X":403,"Y":354},{"Bonus":0,"Continent":"K53","ID":32237,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32237","ServerKey":"pl181","X":327,"Y":525},{"Bonus":6,"Continent":"K56","ID":32238,"Name":"B 003","PlayerID":8078914,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32238","ServerKey":"pl181","X":670,"Y":533},{"Bonus":0,"Continent":"K63","ID":32239,"Name":"005 Wioska Plemienna","PlayerID":6354098,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32239","ServerKey":"pl181","X":377,"Y":630},{"Bonus":0,"Continent":"K64","ID":32240,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32240","ServerKey":"pl181","X":477,"Y":675},{"Bonus":0,"Continent":"K36","ID":32241,"Name":"Wioska barbarzyƄska","PlayerID":699759128,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32241","ServerKey":"pl181","X":612,"Y":370},{"Bonus":0,"Continent":"K35","ID":32242,"Name":"Wrath 006","PlayerID":699756210,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32242","ServerKey":"pl181","X":572,"Y":342},{"Bonus":0,"Continent":"K34","ID":32243,"Name":"Quattro","PlayerID":699854830,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32243","ServerKey":"pl181","X":407,"Y":345},{"Bonus":0,"Continent":"K53","ID":32244,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32244","ServerKey":"pl181","X":336,"Y":553},{"Bonus":0,"Continent":"K46","ID":32245,"Name":"008 Alianz Arena","PlayerID":849098769,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32245","ServerKey":"pl181","X":673,"Y":458},{"Bonus":0,"Continent":"K35","ID":32246,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32246","ServerKey":"pl181","X":557,"Y":339},{"Bonus":0,"Continent":"K43","ID":32247,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32247","ServerKey":"pl181","X":326,"Y":480},{"Bonus":6,"Continent":"K65","ID":32248,"Name":"Wioska1","PlayerID":699567608,"Points":7632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32248","ServerKey":"pl181","X":581,"Y":655},{"Bonus":0,"Continent":"K63","ID":32249,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32249","ServerKey":"pl181","X":391,"Y":639},{"Bonus":0,"Continent":"K35","ID":32250,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32250","ServerKey":"pl181","X":593,"Y":346},{"Bonus":0,"Continent":"K34","ID":32251,"Name":"K34 x031","PlayerID":698364331,"Points":5612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32251","ServerKey":"pl181","X":404,"Y":352},{"Bonus":0,"Continent":"K36","ID":32252,"Name":"008.","PlayerID":699098531,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32252","ServerKey":"pl181","X":624,"Y":370},{"Bonus":0,"Continent":"K35","ID":32253,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32253","ServerKey":"pl181","X":595,"Y":347},{"Bonus":0,"Continent":"K34","ID":32254,"Name":"Bagdad","PlayerID":8847546,"Points":9935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32254","ServerKey":"pl181","X":490,"Y":326},{"Bonus":0,"Continent":"K35","ID":32255,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32255","ServerKey":"pl181","X":568,"Y":339},{"Bonus":0,"Continent":"K35","ID":32256,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32256","ServerKey":"pl181","X":521,"Y":327},{"Bonus":0,"Continent":"K46","ID":32257,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32257","ServerKey":"pl181","X":678,"Y":483},{"Bonus":0,"Continent":"K34","ID":32258,"Name":"169...lord rdw","PlayerID":6920960,"Points":6835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32258","ServerKey":"pl181","X":450,"Y":327},{"Bonus":0,"Continent":"K35","ID":32259,"Name":"Neptun","PlayerID":699797805,"Points":4147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32259","ServerKey":"pl181","X":552,"Y":335},{"Bonus":0,"Continent":"K53","ID":32260,"Name":"Wonderwall","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32260","ServerKey":"pl181","X":333,"Y":545},{"Bonus":0,"Continent":"K46","ID":32261,"Name":"Piczki","PlayerID":1086351,"Points":3683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32261","ServerKey":"pl181","X":648,"Y":410},{"Bonus":0,"Continent":"K56","ID":32262,"Name":"Nowa 41","PlayerID":698702991,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32262","ServerKey":"pl181","X":664,"Y":571},{"Bonus":0,"Continent":"K34","ID":32263,"Name":"#0116 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32263","ServerKey":"pl181","X":478,"Y":326},{"Bonus":0,"Continent":"K56","ID":32264,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":8623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32264","ServerKey":"pl181","X":667,"Y":540},{"Bonus":0,"Continent":"K56","ID":32265,"Name":"Wioska 038","PlayerID":848971079,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32265","ServerKey":"pl181","X":650,"Y":596},{"Bonus":0,"Continent":"K43","ID":32266,"Name":"M181_013","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32266","ServerKey":"pl181","X":339,"Y":436},{"Bonus":0,"Continent":"K64","ID":32267,"Name":"Psycha Siada","PlayerID":698807570,"Points":8600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32267","ServerKey":"pl181","X":453,"Y":667},{"Bonus":2,"Continent":"K46","ID":32268,"Name":"*4602* DuĆŒe kƂopoty","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32268","ServerKey":"pl181","X":676,"Y":485},{"Bonus":0,"Continent":"K46","ID":32269,"Name":"I087","PlayerID":699722599,"Points":10227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32269","ServerKey":"pl181","X":671,"Y":448},{"Bonus":0,"Continent":"K43","ID":32270,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32270","ServerKey":"pl181","X":341,"Y":426},{"Bonus":0,"Continent":"K65","ID":32271,"Name":"*032","PlayerID":699567608,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32271","ServerKey":"pl181","X":595,"Y":652},{"Bonus":0,"Continent":"K35","ID":32272,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32272","ServerKey":"pl181","X":554,"Y":333},{"Bonus":0,"Continent":"K64","ID":32273,"Name":"rotes idz spac misiu","PlayerID":698807570,"Points":8604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32273","ServerKey":"pl181","X":466,"Y":676},{"Bonus":0,"Continent":"K35","ID":32274,"Name":"AAA","PlayerID":1006847,"Points":6679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32274","ServerKey":"pl181","X":531,"Y":323},{"Bonus":0,"Continent":"K43","ID":32275,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32275","ServerKey":"pl181","X":331,"Y":470},{"Bonus":0,"Continent":"K46","ID":32276,"Name":"#052.","PlayerID":556154,"Points":7636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32276","ServerKey":"pl181","X":665,"Y":430},{"Bonus":0,"Continent":"K53","ID":32277,"Name":"Bromberg","PlayerID":8877156,"Points":8630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32277","ServerKey":"pl181","X":352,"Y":595},{"Bonus":0,"Continent":"K64","ID":32279,"Name":"B005","PlayerID":8954402,"Points":10966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32279","ServerKey":"pl181","X":472,"Y":674},{"Bonus":0,"Continent":"K46","ID":32280,"Name":"#Sewa#005","PlayerID":113796,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32280","ServerKey":"pl181","X":671,"Y":445},{"Bonus":0,"Continent":"K33","ID":32281,"Name":"039 Brzezinki akademia","PlayerID":848978297,"Points":4039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32281","ServerKey":"pl181","X":377,"Y":376},{"Bonus":0,"Continent":"K43","ID":32282,"Name":"*164*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32282","ServerKey":"pl181","X":348,"Y":409},{"Bonus":0,"Continent":"K64","ID":32283,"Name":"|022| Goudouras","PlayerID":699393742,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32283","ServerKey":"pl181","X":494,"Y":680},{"Bonus":0,"Continent":"K64","ID":32284,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32284","ServerKey":"pl181","X":466,"Y":673},{"Bonus":0,"Continent":"K46","ID":32285,"Name":"I024","PlayerID":699722599,"Points":9896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32285","ServerKey":"pl181","X":665,"Y":445},{"Bonus":0,"Continent":"K63","ID":32286,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32286","ServerKey":"pl181","X":362,"Y":614},{"Bonus":0,"Continent":"K63","ID":32287,"Name":"028 PaƂa na hali!","PlayerID":6354098,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32287","ServerKey":"pl181","X":385,"Y":629},{"Bonus":0,"Continent":"K36","ID":32288,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32288","ServerKey":"pl181","X":616,"Y":368},{"Bonus":0,"Continent":"K56","ID":32289,"Name":"Connecticut","PlayerID":699851345,"Points":6895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32289","ServerKey":"pl181","X":676,"Y":522},{"Bonus":0,"Continent":"K36","ID":32290,"Name":"Wioska barbarzyƄska","PlayerID":699857387,"Points":7142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32290","ServerKey":"pl181","X":618,"Y":365},{"Bonus":0,"Continent":"K36","ID":32291,"Name":".:011:.","PlayerID":849078297,"Points":3626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32291","ServerKey":"pl181","X":635,"Y":381},{"Bonus":0,"Continent":"K65","ID":32292,"Name":"#107 C","PlayerID":9037756,"Points":8682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32292","ServerKey":"pl181","X":527,"Y":673},{"Bonus":0,"Continent":"K56","ID":32293,"Name":"Wioska 055","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32293","ServerKey":"pl181","X":642,"Y":597},{"Bonus":0,"Continent":"K63","ID":32294,"Name":"Dejmon6","PlayerID":699805839,"Points":6037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32294","ServerKey":"pl181","X":370,"Y":620},{"Bonus":0,"Continent":"K46","ID":32295,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32295","ServerKey":"pl181","X":675,"Y":466},{"Bonus":0,"Continent":"K35","ID":32296,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32296","ServerKey":"pl181","X":564,"Y":357},{"Bonus":0,"Continent":"K63","ID":32297,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32297","ServerKey":"pl181","X":381,"Y":635},{"Bonus":0,"Continent":"K56","ID":32298,"Name":"Didek","PlayerID":849070946,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32298","ServerKey":"pl181","X":666,"Y":562},{"Bonus":0,"Continent":"K34","ID":32299,"Name":"Wioska barbarzyƄska","PlayerID":699380607,"Points":2563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32299","ServerKey":"pl181","X":410,"Y":345},{"Bonus":0,"Continent":"K34","ID":32300,"Name":"105...tomcz","PlayerID":6920960,"Points":10425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32300","ServerKey":"pl181","X":484,"Y":323},{"Bonus":0,"Continent":"K64","ID":32301,"Name":"R 006 ~KsiÄ…ĆŒÄ™~","PlayerID":699195358,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32301","ServerKey":"pl181","X":487,"Y":679},{"Bonus":0,"Continent":"K34","ID":32302,"Name":"0097","PlayerID":699431255,"Points":2145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32302","ServerKey":"pl181","X":411,"Y":352},{"Bonus":0,"Continent":"K43","ID":32303,"Name":"Wioska barbarzyƄska","PlayerID":699823490,"Points":4232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32303","ServerKey":"pl181","X":327,"Y":464},{"Bonus":0,"Continent":"K33","ID":32304,"Name":"Szlachcic","PlayerID":698160606,"Points":7932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32304","ServerKey":"pl181","X":385,"Y":364},{"Bonus":0,"Continent":"K64","ID":32306,"Name":"031","PlayerID":698650301,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32306","ServerKey":"pl181","X":478,"Y":671},{"Bonus":0,"Continent":"K64","ID":32307,"Name":"Homs","PlayerID":849089459,"Points":7871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32307","ServerKey":"pl181","X":417,"Y":651},{"Bonus":0,"Continent":"K56","ID":32308,"Name":"D11","PlayerID":848995478,"Points":3481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32308","ServerKey":"pl181","X":667,"Y":544},{"Bonus":0,"Continent":"K56","ID":32309,"Name":"003","PlayerID":699251542,"Points":4563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32309","ServerKey":"pl181","X":655,"Y":592},{"Bonus":0,"Continent":"K35","ID":32310,"Name":".:110:. Niangmen","PlayerID":848934935,"Points":4302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32310","ServerKey":"pl181","X":509,"Y":327},{"Bonus":0,"Continent":"K63","ID":32311,"Name":"013","PlayerID":699083129,"Points":8180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32311","ServerKey":"pl181","X":359,"Y":605},{"Bonus":0,"Continent":"K35","ID":32312,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32312","ServerKey":"pl181","X":588,"Y":349},{"Bonus":0,"Continent":"K64","ID":32313,"Name":"038 Assengard","PlayerID":699834004,"Points":11024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32313","ServerKey":"pl181","X":475,"Y":677},{"Bonus":0,"Continent":"K64","ID":32314,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":2032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32314","ServerKey":"pl181","X":418,"Y":654},{"Bonus":0,"Continent":"K46","ID":32315,"Name":"63. KaruTown","PlayerID":9238175,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32315","ServerKey":"pl181","X":661,"Y":420},{"Bonus":0,"Continent":"K35","ID":32316,"Name":"A.09 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":6010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32316","ServerKey":"pl181","X":564,"Y":332},{"Bonus":0,"Continent":"K64","ID":32317,"Name":"015 Ard Carraigh","PlayerID":699834004,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32317","ServerKey":"pl181","X":467,"Y":669},{"Bonus":0,"Continent":"K34","ID":32318,"Name":"Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32318","ServerKey":"pl181","X":484,"Y":326},{"Bonus":0,"Continent":"K54","ID":32319,"Name":"Suppi","PlayerID":699856962,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32319","ServerKey":"pl181","X":470,"Y":540},{"Bonus":0,"Continent":"K56","ID":32320,"Name":"665|552 Wioska barbarzyƄska","PlayerID":6822957,"Points":6211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32320","ServerKey":"pl181","X":665,"Y":552},{"Bonus":0,"Continent":"K64","ID":32321,"Name":"Istanbul","PlayerID":849089459,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32321","ServerKey":"pl181","X":419,"Y":633},{"Bonus":0,"Continent":"K66","ID":32322,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32322","ServerKey":"pl181","X":632,"Y":622},{"Bonus":0,"Continent":"K35","ID":32323,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32323","ServerKey":"pl181","X":564,"Y":336},{"Bonus":4,"Continent":"K64","ID":32324,"Name":"|020| Livadia","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32324","ServerKey":"pl181","X":496,"Y":673},{"Bonus":0,"Continent":"K53","ID":32325,"Name":"off 100 %","PlayerID":849012521,"Points":10110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32325","ServerKey":"pl181","X":337,"Y":568},{"Bonus":1,"Continent":"K64","ID":32327,"Name":"0611","PlayerID":698650301,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32327","ServerKey":"pl181","X":484,"Y":674},{"Bonus":0,"Continent":"K65","ID":32328,"Name":"Wioska P1ter","PlayerID":699567608,"Points":9431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32328","ServerKey":"pl181","X":597,"Y":647},{"Bonus":0,"Continent":"K56","ID":32329,"Name":"Wioska 056","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32329","ServerKey":"pl181","X":643,"Y":595},{"Bonus":0,"Continent":"K53","ID":32330,"Name":"Wioska barbarzyƄska","PlayerID":7098955,"Points":8007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32330","ServerKey":"pl181","X":322,"Y":502},{"Bonus":0,"Continent":"K34","ID":32331,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32331","ServerKey":"pl181","X":430,"Y":334},{"Bonus":0,"Continent":"K33","ID":32332,"Name":"*191*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32332","ServerKey":"pl181","X":378,"Y":372},{"Bonus":0,"Continent":"K53","ID":32333,"Name":"C0163","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32333","ServerKey":"pl181","X":328,"Y":538},{"Bonus":0,"Continent":"K46","ID":32334,"Name":"[008] ZasƂaƂem Ć‚ĂłĆŒko","PlayerID":849095068,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32334","ServerKey":"pl181","X":669,"Y":436},{"Bonus":0,"Continent":"K34","ID":32335,"Name":"138...barba","PlayerID":6920960,"Points":6400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32335","ServerKey":"pl181","X":444,"Y":338},{"Bonus":0,"Continent":"K43","ID":32336,"Name":"*168*","PlayerID":699273451,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32336","ServerKey":"pl181","X":342,"Y":415},{"Bonus":0,"Continent":"K64","ID":32337,"Name":"B12","PlayerID":698652014,"Points":5928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32337","ServerKey":"pl181","X":476,"Y":677},{"Bonus":0,"Continent":"K43","ID":32339,"Name":"M181_015","PlayerID":393668,"Points":9451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32339","ServerKey":"pl181","X":344,"Y":428},{"Bonus":0,"Continent":"K33","ID":32340,"Name":"Szulernia","PlayerID":7249451,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32340","ServerKey":"pl181","X":398,"Y":360},{"Bonus":0,"Continent":"K35","ID":32341,"Name":"AAA","PlayerID":1006847,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32341","ServerKey":"pl181","X":530,"Y":329},{"Bonus":0,"Continent":"K46","ID":32342,"Name":"Wioska Czesieekk","PlayerID":699574408,"Points":8956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32342","ServerKey":"pl181","X":674,"Y":475},{"Bonus":0,"Continent":"K33","ID":32343,"Name":"Szlachcic","PlayerID":698160606,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32343","ServerKey":"pl181","X":394,"Y":364},{"Bonus":0,"Continent":"K64","ID":32344,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32344","ServerKey":"pl181","X":418,"Y":659},{"Bonus":0,"Continent":"K64","ID":32345,"Name":"D.017","PlayerID":849088243,"Points":6129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32345","ServerKey":"pl181","X":402,"Y":650},{"Bonus":2,"Continent":"K36","ID":32346,"Name":"42 GĂłry Smocze","PlayerID":8976313,"Points":6496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32346","ServerKey":"pl181","X":620,"Y":368},{"Bonus":0,"Continent":"K34","ID":32347,"Name":"North Savek","PlayerID":699796330,"Points":520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32347","ServerKey":"pl181","X":420,"Y":339},{"Bonus":0,"Continent":"K66","ID":32348,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32348","ServerKey":"pl181","X":614,"Y":634},{"Bonus":0,"Continent":"K66","ID":32349,"Name":"#081#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32349","ServerKey":"pl181","X":622,"Y":633},{"Bonus":0,"Continent":"K63","ID":32350,"Name":"024","PlayerID":699083129,"Points":8069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32350","ServerKey":"pl181","X":361,"Y":607},{"Bonus":0,"Continent":"K36","ID":32351,"Name":"Po ƛwiętach","PlayerID":848915730,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32351","ServerKey":"pl181","X":604,"Y":366},{"Bonus":0,"Continent":"K36","ID":32352,"Name":"Gattacka","PlayerID":699298370,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32352","ServerKey":"pl181","X":619,"Y":374},{"Bonus":0,"Continent":"K65","ID":32353,"Name":"amator","PlayerID":848915531,"Points":5297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32353","ServerKey":"pl181","X":560,"Y":666},{"Bonus":0,"Continent":"K43","ID":32354,"Name":"GuRu18.1","PlayerID":393668,"Points":5076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32354","ServerKey":"pl181","X":337,"Y":428},{"Bonus":0,"Continent":"K34","ID":32355,"Name":"A-043-Hefitto","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32355","ServerKey":"pl181","X":404,"Y":350},{"Bonus":0,"Continent":"K53","ID":32356,"Name":"C0056","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32356","ServerKey":"pl181","X":321,"Y":525},{"Bonus":0,"Continent":"K56","ID":32357,"Name":"Sekou","PlayerID":699737356,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32357","ServerKey":"pl181","X":675,"Y":512},{"Bonus":0,"Continent":"K53","ID":32358,"Name":"Brat bierz","PlayerID":699262350,"Points":5358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32358","ServerKey":"pl181","X":327,"Y":500},{"Bonus":0,"Continent":"K64","ID":32359,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32359","ServerKey":"pl181","X":425,"Y":661},{"Bonus":0,"Continent":"K64","ID":32360,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32360","ServerKey":"pl181","X":415,"Y":659},{"Bonus":0,"Continent":"K43","ID":32361,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32361","ServerKey":"pl181","X":338,"Y":423},{"Bonus":0,"Continent":"K35","ID":32362,"Name":"A.01 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32362","ServerKey":"pl181","X":565,"Y":335},{"Bonus":0,"Continent":"K65","ID":32363,"Name":"- 259 - SS","PlayerID":849018239,"Points":7615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32363","ServerKey":"pl181","X":536,"Y":677},{"Bonus":7,"Continent":"K34","ID":32364,"Name":"fff","PlayerID":698239813,"Points":9328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32364","ServerKey":"pl181","X":492,"Y":322},{"Bonus":0,"Continent":"K34","ID":32365,"Name":"132...opelu","PlayerID":6920960,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32365","ServerKey":"pl181","X":442,"Y":331},{"Bonus":0,"Continent":"K65","ID":32366,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32366","ServerKey":"pl181","X":502,"Y":673},{"Bonus":0,"Continent":"K64","ID":32367,"Name":"Sk_001","PlayerID":8954402,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32367","ServerKey":"pl181","X":441,"Y":663},{"Bonus":0,"Continent":"K45","ID":32368,"Name":"ADEN","PlayerID":698588535,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32368","ServerKey":"pl181","X":576,"Y":425},{"Bonus":0,"Continent":"K46","ID":32369,"Name":"064 Wioska 009","PlayerID":9238175,"Points":9739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32369","ServerKey":"pl181","X":660,"Y":428},{"Bonus":0,"Continent":"K65","ID":32370,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32370","ServerKey":"pl181","X":526,"Y":678},{"Bonus":0,"Continent":"K43","ID":32371,"Name":"*238*","PlayerID":699273451,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32371","ServerKey":"pl181","X":334,"Y":445},{"Bonus":0,"Continent":"K65","ID":32372,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32372","ServerKey":"pl181","X":523,"Y":679},{"Bonus":0,"Continent":"K43","ID":32373,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32373","ServerKey":"pl181","X":330,"Y":474},{"Bonus":2,"Continent":"K33","ID":32374,"Name":"Magdalenakwa82","PlayerID":849084920,"Points":4129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32374","ServerKey":"pl181","X":359,"Y":392},{"Bonus":0,"Continent":"K66","ID":32375,"Name":"A007","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32375","ServerKey":"pl181","X":601,"Y":648},{"Bonus":0,"Continent":"K34","ID":32376,"Name":"223","PlayerID":7271812,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32376","ServerKey":"pl181","X":424,"Y":338},{"Bonus":0,"Continent":"K34","ID":32379,"Name":"216","PlayerID":698365960,"Points":8006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32379","ServerKey":"pl181","X":449,"Y":327},{"Bonus":0,"Continent":"K65","ID":32381,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32381","ServerKey":"pl181","X":573,"Y":659},{"Bonus":0,"Continent":"K56","ID":32382,"Name":"B 011","PlayerID":8078914,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32382","ServerKey":"pl181","X":660,"Y":533},{"Bonus":0,"Continent":"K43","ID":32383,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":5890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32383","ServerKey":"pl181","X":333,"Y":439},{"Bonus":0,"Continent":"K46","ID":32384,"Name":"081. Pentele","PlayerID":849091866,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32384","ServerKey":"pl181","X":654,"Y":408},{"Bonus":5,"Continent":"K56","ID":32385,"Name":"B.023","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32385","ServerKey":"pl181","X":678,"Y":501},{"Bonus":0,"Continent":"K43","ID":32386,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32386","ServerKey":"pl181","X":324,"Y":468},{"Bonus":0,"Continent":"K43","ID":32387,"Name":"11. Tretogor","PlayerID":848910122,"Points":395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32387","ServerKey":"pl181","X":334,"Y":456},{"Bonus":0,"Continent":"K65","ID":32388,"Name":"Wioska r 19","PlayerID":848915531,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32388","ServerKey":"pl181","X":554,"Y":669},{"Bonus":0,"Continent":"K64","ID":32389,"Name":"004","PlayerID":272173,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32389","ServerKey":"pl181","X":486,"Y":634},{"Bonus":0,"Continent":"K66","ID":32390,"Name":"A001","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32390","ServerKey":"pl181","X":600,"Y":646},{"Bonus":0,"Continent":"K66","ID":32391,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32391","ServerKey":"pl181","X":640,"Y":603},{"Bonus":0,"Continent":"K56","ID":32392,"Name":"[036]","PlayerID":698305474,"Points":8575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32392","ServerKey":"pl181","X":667,"Y":549},{"Bonus":0,"Continent":"K66","ID":32393,"Name":"072. Nia","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32393","ServerKey":"pl181","X":644,"Y":614},{"Bonus":0,"Continent":"K65","ID":32394,"Name":"2.Getafe","PlayerID":698215322,"Points":7548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32394","ServerKey":"pl181","X":563,"Y":669},{"Bonus":0,"Continent":"K53","ID":32395,"Name":"Svaneke","PlayerID":849098387,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32395","ServerKey":"pl181","X":337,"Y":571},{"Bonus":0,"Continent":"K64","ID":32396,"Name":"003","PlayerID":848953066,"Points":9923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32396","ServerKey":"pl181","X":496,"Y":632},{"Bonus":0,"Continent":"K34","ID":32397,"Name":"218","PlayerID":698365960,"Points":7372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32397","ServerKey":"pl181","X":448,"Y":328},{"Bonus":0,"Continent":"K63","ID":32398,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32398","ServerKey":"pl181","X":397,"Y":642},{"Bonus":0,"Continent":"K56","ID":32399,"Name":"B 050","PlayerID":8078914,"Points":6858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32399","ServerKey":"pl181","X":677,"Y":533},{"Bonus":0,"Continent":"K53","ID":32401,"Name":"C0042","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32401","ServerKey":"pl181","X":323,"Y":520},{"Bonus":0,"Continent":"K64","ID":32402,"Name":"032|| Hercules","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32402","ServerKey":"pl181","X":486,"Y":644},{"Bonus":0,"Continent":"K33","ID":32403,"Name":"Szlachcic","PlayerID":3484132,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32403","ServerKey":"pl181","X":397,"Y":352},{"Bonus":0,"Continent":"K34","ID":32405,"Name":"0070","PlayerID":699431255,"Points":8418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32405","ServerKey":"pl181","X":412,"Y":349},{"Bonus":0,"Continent":"K64","ID":32406,"Name":"PrzewidziaƂeƛ ĆŒe ja oddasz?","PlayerID":6948793,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32406","ServerKey":"pl181","X":481,"Y":638},{"Bonus":0,"Continent":"K35","ID":32407,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32407","ServerKey":"pl181","X":519,"Y":327},{"Bonus":0,"Continent":"K64","ID":32408,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32408","ServerKey":"pl181","X":499,"Y":641},{"Bonus":0,"Continent":"K35","ID":32409,"Name":"A.14 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32409","ServerKey":"pl181","X":561,"Y":332},{"Bonus":0,"Continent":"K36","ID":32410,"Name":"015","PlayerID":6822957,"Points":8807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32410","ServerKey":"pl181","X":610,"Y":363},{"Bonus":0,"Continent":"K34","ID":32411,"Name":"#0197 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32411","ServerKey":"pl181","X":463,"Y":325},{"Bonus":0,"Continent":"K53","ID":32412,"Name":"Dąbrowa 0023","PlayerID":849096972,"Points":3905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32412","ServerKey":"pl181","X":349,"Y":591},{"Bonus":0,"Continent":"K35","ID":32413,"Name":"Wioska VII","PlayerID":698200480,"Points":4679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32413","ServerKey":"pl181","X":585,"Y":343},{"Bonus":0,"Continent":"K64","ID":32414,"Name":"Niszapur","PlayerID":849089459,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32414","ServerKey":"pl181","X":430,"Y":658},{"Bonus":0,"Continent":"K46","ID":32415,"Name":"158 Nocny Jastrząb 003","PlayerID":699491076,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32415","ServerKey":"pl181","X":644,"Y":403},{"Bonus":0,"Continent":"K53","ID":32416,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32416","ServerKey":"pl181","X":335,"Y":562},{"Bonus":0,"Continent":"K66","ID":32417,"Name":"Ć»UBR .::.B.E.T.O.N /8","PlayerID":33900,"Points":10118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32417","ServerKey":"pl181","X":630,"Y":621},{"Bonus":0,"Continent":"K53","ID":32418,"Name":"Sandacz","PlayerID":699265922,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32418","ServerKey":"pl181","X":328,"Y":552},{"Bonus":0,"Continent":"K63","ID":32419,"Name":"025","PlayerID":699083129,"Points":7721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32419","ServerKey":"pl181","X":360,"Y":608},{"Bonus":0,"Continent":"K64","ID":32420,"Name":"049","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32420","ServerKey":"pl181","X":478,"Y":631},{"Bonus":0,"Continent":"K65","ID":32421,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32421","ServerKey":"pl181","X":511,"Y":674},{"Bonus":0,"Continent":"K36","ID":32422,"Name":"I#028","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32422","ServerKey":"pl181","X":620,"Y":363},{"Bonus":0,"Continent":"K35","ID":32423,"Name":"Wioska 07","PlayerID":951823,"Points":7040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32423","ServerKey":"pl181","X":501,"Y":322},{"Bonus":0,"Continent":"K66","ID":32424,"Name":"070. Parlim","PlayerID":8337151,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32424","ServerKey":"pl181","X":645,"Y":612},{"Bonus":0,"Continent":"K35","ID":32425,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32425","ServerKey":"pl181","X":559,"Y":335},{"Bonus":0,"Continent":"K63","ID":32426,"Name":"002 CegƂowa wioska","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32426","ServerKey":"pl181","X":367,"Y":619},{"Bonus":3,"Continent":"K35","ID":32428,"Name":"AAA","PlayerID":1006847,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32428","ServerKey":"pl181","X":535,"Y":323},{"Bonus":0,"Continent":"K66","ID":32429,"Name":"003","PlayerID":849097799,"Points":9088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32429","ServerKey":"pl181","X":608,"Y":642},{"Bonus":0,"Continent":"K63","ID":32430,"Name":"Grupka 7 wiosek 2","PlayerID":698353083,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32430","ServerKey":"pl181","X":354,"Y":602},{"Bonus":0,"Continent":"K35","ID":32431,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32431","ServerKey":"pl181","X":563,"Y":337},{"Bonus":0,"Continent":"K34","ID":32432,"Name":"K34 - [155] Before Land","PlayerID":699088769,"Points":9199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32432","ServerKey":"pl181","X":432,"Y":337},{"Bonus":2,"Continent":"K63","ID":32433,"Name":"C120","PlayerID":699383279,"Points":12111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32433","ServerKey":"pl181","X":365,"Y":620},{"Bonus":0,"Continent":"K33","ID":32434,"Name":"Szlachcic","PlayerID":3484132,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32434","ServerKey":"pl181","X":396,"Y":353},{"Bonus":0,"Continent":"K53","ID":32435,"Name":"Taran","PlayerID":6180190,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32435","ServerKey":"pl181","X":341,"Y":585},{"Bonus":0,"Continent":"K34","ID":32436,"Name":"K34 x019","PlayerID":698364331,"Points":8824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32436","ServerKey":"pl181","X":403,"Y":356},{"Bonus":0,"Continent":"K53","ID":32437,"Name":"Pstrag","PlayerID":699265922,"Points":7727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32437","ServerKey":"pl181","X":326,"Y":546},{"Bonus":0,"Continent":"K53","ID":32438,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32438","ServerKey":"pl181","X":331,"Y":554},{"Bonus":0,"Continent":"K34","ID":32439,"Name":"K34 - [156] Before Land","PlayerID":699088769,"Points":7906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32439","ServerKey":"pl181","X":431,"Y":335},{"Bonus":0,"Continent":"K53","ID":32440,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32440","ServerKey":"pl181","X":322,"Y":527},{"Bonus":4,"Continent":"K64","ID":32441,"Name":"R 004 ~Kaprys~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32441","ServerKey":"pl181","X":490,"Y":679},{"Bonus":0,"Continent":"K43","ID":32442,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32442","ServerKey":"pl181","X":322,"Y":495},{"Bonus":0,"Continent":"K34","ID":32443,"Name":"K34 x020","PlayerID":698364331,"Points":8546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32443","ServerKey":"pl181","X":404,"Y":355},{"Bonus":0,"Continent":"K34","ID":32444,"Name":"[B]_[045] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32444","ServerKey":"pl181","X":431,"Y":340},{"Bonus":0,"Continent":"K64","ID":32445,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32445","ServerKey":"pl181","X":481,"Y":673},{"Bonus":0,"Continent":"K64","ID":32446,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":6180190,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32446","ServerKey":"pl181","X":490,"Y":637},{"Bonus":0,"Continent":"K46","ID":32447,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32447","ServerKey":"pl181","X":677,"Y":489},{"Bonus":0,"Continent":"K63","ID":32449,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32449","ServerKey":"pl181","X":392,"Y":642},{"Bonus":0,"Continent":"K46","ID":32450,"Name":"I052","PlayerID":699722599,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32450","ServerKey":"pl181","X":672,"Y":457},{"Bonus":0,"Continent":"K43","ID":32451,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32451","ServerKey":"pl181","X":323,"Y":474},{"Bonus":0,"Continent":"K36","ID":32452,"Name":"**12**","PlayerID":849098782,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32452","ServerKey":"pl181","X":632,"Y":388},{"Bonus":0,"Continent":"K46","ID":32453,"Name":"**08**","PlayerID":849098782,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32453","ServerKey":"pl181","X":670,"Y":431},{"Bonus":0,"Continent":"K43","ID":32454,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32454","ServerKey":"pl181","X":328,"Y":454},{"Bonus":0,"Continent":"K34","ID":32455,"Name":"109.Stradi","PlayerID":698365960,"Points":8691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32455","ServerKey":"pl181","X":447,"Y":327},{"Bonus":0,"Continent":"K53","ID":32456,"Name":"Wioska barbarzyƄska","PlayerID":849012521,"Points":2391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32456","ServerKey":"pl181","X":337,"Y":564},{"Bonus":4,"Continent":"K46","ID":32457,"Name":"101. Camulodunum","PlayerID":849091866,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32457","ServerKey":"pl181","X":656,"Y":412},{"Bonus":0,"Continent":"K64","ID":32460,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32460","ServerKey":"pl181","X":419,"Y":659},{"Bonus":0,"Continent":"K64","ID":32461,"Name":"007|| Libra","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32461","ServerKey":"pl181","X":488,"Y":647},{"Bonus":0,"Continent":"K43","ID":32462,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32462","ServerKey":"pl181","X":323,"Y":465},{"Bonus":0,"Continent":"K64","ID":32463,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32463","ServerKey":"pl181","X":461,"Y":674},{"Bonus":0,"Continent":"K43","ID":32464,"Name":"Wioska","PlayerID":848946608,"Points":3614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32464","ServerKey":"pl181","X":328,"Y":457},{"Bonus":0,"Continent":"K56","ID":32465,"Name":"C 013","PlayerID":8078914,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32465","ServerKey":"pl181","X":677,"Y":516},{"Bonus":0,"Continent":"K64","ID":32466,"Name":"aaaa","PlayerID":6948793,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32466","ServerKey":"pl181","X":483,"Y":641},{"Bonus":0,"Continent":"K33","ID":32467,"Name":"cz Wioska 79","PlayerID":3909522,"Points":4669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32467","ServerKey":"pl181","X":366,"Y":381},{"Bonus":0,"Continent":"K53","ID":32469,"Name":"AJJ","PlayerID":7318415,"Points":2793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32469","ServerKey":"pl181","X":345,"Y":585},{"Bonus":0,"Continent":"K43","ID":32470,"Name":"*255*","PlayerID":699273451,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32470","ServerKey":"pl181","X":337,"Y":438},{"Bonus":0,"Continent":"K33","ID":32471,"Name":"Szulernia","PlayerID":7249451,"Points":3356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32471","ServerKey":"pl181","X":379,"Y":366},{"Bonus":0,"Continent":"K46","ID":32472,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32472","ServerKey":"pl181","X":678,"Y":497},{"Bonus":0,"Continent":"K43","ID":32473,"Name":"A0272","PlayerID":8841266,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32473","ServerKey":"pl181","X":323,"Y":485},{"Bonus":0,"Continent":"K33","ID":32476,"Name":"Szlachcic","PlayerID":3484132,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32476","ServerKey":"pl181","X":392,"Y":360},{"Bonus":0,"Continent":"K64","ID":32477,"Name":"xdd","PlayerID":6180190,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32477","ServerKey":"pl181","X":491,"Y":636},{"Bonus":0,"Continent":"K56","ID":32478,"Name":"Wioska 048","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32478","ServerKey":"pl181","X":645,"Y":597},{"Bonus":0,"Continent":"K46","ID":32479,"Name":"057 | PALESTINA","PlayerID":9228039,"Points":5287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32479","ServerKey":"pl181","X":662,"Y":426},{"Bonus":0,"Continent":"K36","ID":32480,"Name":"Wyspa 003","PlayerID":699756210,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32480","ServerKey":"pl181","X":627,"Y":381},{"Bonus":0,"Continent":"K34","ID":32482,"Name":"#0130 Thorus5","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32482","ServerKey":"pl181","X":477,"Y":325},{"Bonus":0,"Continent":"K36","ID":32483,"Name":"Gattacka","PlayerID":699298370,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32483","ServerKey":"pl181","X":621,"Y":373},{"Bonus":0,"Continent":"K33","ID":32484,"Name":"*044*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32484","ServerKey":"pl181","X":352,"Y":399},{"Bonus":0,"Continent":"K46","ID":32485,"Name":"004","PlayerID":7085502,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32485","ServerKey":"pl181","X":677,"Y":487},{"Bonus":0,"Continent":"K64","ID":32486,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32486","ServerKey":"pl181","X":436,"Y":669},{"Bonus":0,"Continent":"K63","ID":32488,"Name":"Komornicy 023","PlayerID":699336777,"Points":6807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32488","ServerKey":"pl181","X":353,"Y":603},{"Bonus":0,"Continent":"K64","ID":32489,"Name":"|A| Farmeadow","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32489","ServerKey":"pl181","X":482,"Y":646},{"Bonus":0,"Continent":"K34","ID":32490,"Name":"#0125 korniczeks","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32490","ServerKey":"pl181","X":476,"Y":324},{"Bonus":0,"Continent":"K63","ID":32491,"Name":"A 012","PlayerID":699342219,"Points":6062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32491","ServerKey":"pl181","X":368,"Y":620},{"Bonus":0,"Continent":"K46","ID":32493,"Name":"Barba2","PlayerID":1086351,"Points":4487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32493","ServerKey":"pl181","X":651,"Y":408},{"Bonus":0,"Continent":"K64","ID":32494,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32494","ServerKey":"pl181","X":489,"Y":640},{"Bonus":0,"Continent":"K64","ID":32495,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32495","ServerKey":"pl181","X":486,"Y":640},{"Bonus":0,"Continent":"K43","ID":32496,"Name":"A0273","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32496","ServerKey":"pl181","X":323,"Y":484},{"Bonus":0,"Continent":"K65","ID":32497,"Name":"0130","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32497","ServerKey":"pl181","X":543,"Y":673},{"Bonus":0,"Continent":"K43","ID":32498,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32498","ServerKey":"pl181","X":323,"Y":479},{"Bonus":0,"Continent":"K64","ID":32499,"Name":"R 010 ~The end~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32499","ServerKey":"pl181","X":486,"Y":678},{"Bonus":0,"Continent":"K35","ID":32500,"Name":"Lord Lord Franek .#103","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32500","ServerKey":"pl181","X":523,"Y":329},{"Bonus":0,"Continent":"K63","ID":32501,"Name":"019 Lux robota!","PlayerID":6354098,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32501","ServerKey":"pl181","X":379,"Y":631},{"Bonus":0,"Continent":"K56","ID":32502,"Name":"O56 Fano","PlayerID":699272880,"Points":10234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32502","ServerKey":"pl181","X":675,"Y":534},{"Bonus":3,"Continent":"K66","ID":32503,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32503","ServerKey":"pl181","X":625,"Y":630},{"Bonus":0,"Continent":"K65","ID":32504,"Name":"0412","PlayerID":698659980,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32504","ServerKey":"pl181","X":533,"Y":672},{"Bonus":0,"Continent":"K53","ID":32505,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":3941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32505","ServerKey":"pl181","X":338,"Y":576},{"Bonus":0,"Continent":"K43","ID":32506,"Name":"005","PlayerID":848895676,"Points":2099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32506","ServerKey":"pl181","X":322,"Y":466},{"Bonus":0,"Continent":"K34","ID":32507,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":5487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32507","ServerKey":"pl181","X":466,"Y":323},{"Bonus":0,"Continent":"K66","ID":32508,"Name":"Ć»UBR PSYCHIATRYK 001","PlayerID":33900,"Points":8278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32508","ServerKey":"pl181","X":611,"Y":643},{"Bonus":0,"Continent":"K53","ID":32509,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":2461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32509","ServerKey":"pl181","X":347,"Y":581},{"Bonus":6,"Continent":"K63","ID":32510,"Name":"bromberg","PlayerID":849014147,"Points":7700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32510","ServerKey":"pl181","X":352,"Y":605},{"Bonus":0,"Continent":"K45","ID":32511,"Name":"12 Ɓotwa","PlayerID":8925695,"Points":10341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32511","ServerKey":"pl181","X":593,"Y":491},{"Bonus":0,"Continent":"K64","ID":32512,"Name":"Ave Why!","PlayerID":698585370,"Points":8053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32512","ServerKey":"pl181","X":454,"Y":673},{"Bonus":0,"Continent":"K66","ID":32513,"Name":"Wioska bprog","PlayerID":699432672,"Points":8183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32513","ServerKey":"pl181","X":642,"Y":610},{"Bonus":0,"Continent":"K33","ID":32514,"Name":"Szulernia","PlayerID":7249451,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32514","ServerKey":"pl181","X":382,"Y":367},{"Bonus":0,"Continent":"K34","ID":32516,"Name":"[B]_[030] Dejv.oldplyr","PlayerID":699380607,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32516","ServerKey":"pl181","X":424,"Y":344},{"Bonus":0,"Continent":"K63","ID":32517,"Name":"A 015","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32517","ServerKey":"pl181","X":362,"Y":612},{"Bonus":0,"Continent":"K56","ID":32518,"Name":"Wioska 100","PlayerID":848971079,"Points":10418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32518","ServerKey":"pl181","X":646,"Y":588},{"Bonus":0,"Continent":"K56","ID":32520,"Name":"B 051","PlayerID":8078914,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32520","ServerKey":"pl181","X":674,"Y":542},{"Bonus":0,"Continent":"K33","ID":32521,"Name":"Szulernia","PlayerID":7249451,"Points":8760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32521","ServerKey":"pl181","X":388,"Y":368},{"Bonus":0,"Continent":"K36","ID":32522,"Name":"008 .10.Panzergrenadier Division","PlayerID":849091899,"Points":6162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32522","ServerKey":"pl181","X":605,"Y":359},{"Bonus":0,"Continent":"K65","ID":32523,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32523","ServerKey":"pl181","X":509,"Y":674},{"Bonus":5,"Continent":"K63","ID":32524,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32524","ServerKey":"pl181","X":395,"Y":643},{"Bonus":0,"Continent":"K36","ID":32525,"Name":"Taran 004","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32525","ServerKey":"pl181","X":622,"Y":375},{"Bonus":0,"Continent":"K64","ID":32526,"Name":"Ave Why!","PlayerID":698585370,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32526","ServerKey":"pl181","X":446,"Y":669},{"Bonus":0,"Continent":"K65","ID":32527,"Name":"Wioska r 2","PlayerID":848915531,"Points":5218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32527","ServerKey":"pl181","X":555,"Y":669},{"Bonus":0,"Continent":"K64","ID":32528,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":6973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32528","ServerKey":"pl181","X":465,"Y":671},{"Bonus":0,"Continent":"K65","ID":32529,"Name":"0361","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32529","ServerKey":"pl181","X":559,"Y":666},{"Bonus":0,"Continent":"K66","ID":32530,"Name":"sony911","PlayerID":1415009,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32530","ServerKey":"pl181","X":615,"Y":632},{"Bonus":0,"Continent":"K63","ID":32532,"Name":"029 Firma na Pana liczy!","PlayerID":6354098,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32532","ServerKey":"pl181","X":374,"Y":627},{"Bonus":0,"Continent":"K53","ID":32533,"Name":"C0192","PlayerID":8841266,"Points":7367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32533","ServerKey":"pl181","X":322,"Y":531},{"Bonus":0,"Continent":"K65","ID":32534,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32534","ServerKey":"pl181","X":588,"Y":651},{"Bonus":0,"Continent":"K65","ID":32536,"Name":"0105","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32536","ServerKey":"pl181","X":543,"Y":669},{"Bonus":0,"Continent":"K56","ID":32537,"Name":"66k$ Grvvyq","PlayerID":699676005,"Points":7439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32537","ServerKey":"pl181","X":658,"Y":569},{"Bonus":7,"Continent":"K56","ID":32538,"Name":"_PUSTA","PlayerID":699628084,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32538","ServerKey":"pl181","X":672,"Y":552},{"Bonus":0,"Continent":"K65","ID":32539,"Name":"amator czysta","PlayerID":848915531,"Points":5621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32539","ServerKey":"pl181","X":557,"Y":665},{"Bonus":0,"Continent":"K43","ID":32540,"Name":"*242*","PlayerID":699273451,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32540","ServerKey":"pl181","X":332,"Y":448},{"Bonus":0,"Continent":"K53","ID":32541,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32541","ServerKey":"pl181","X":350,"Y":598},{"Bonus":0,"Continent":"K46","ID":32542,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32542","ServerKey":"pl181","X":673,"Y":468},{"Bonus":0,"Continent":"K43","ID":32543,"Name":"*057*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32543","ServerKey":"pl181","X":354,"Y":400},{"Bonus":0,"Continent":"K34","ID":32544,"Name":"fff","PlayerID":698239813,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32544","ServerKey":"pl181","X":493,"Y":321},{"Bonus":0,"Continent":"K35","ID":32545,"Name":"krytl09","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32545","ServerKey":"pl181","X":515,"Y":320},{"Bonus":0,"Continent":"K35","ID":32546,"Name":".009. Love Hate","PlayerID":698489071,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32546","ServerKey":"pl181","X":501,"Y":377},{"Bonus":0,"Continent":"K64","ID":32547,"Name":"#11","PlayerID":699849210,"Points":3830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32547","ServerKey":"pl181","X":432,"Y":661},{"Bonus":0,"Continent":"K56","ID":32548,"Name":"Sekou 1","PlayerID":699737356,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32548","ServerKey":"pl181","X":676,"Y":508},{"Bonus":0,"Continent":"K53","ID":32549,"Name":"Miasys 4","PlayerID":849090130,"Points":5967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32549","ServerKey":"pl181","X":344,"Y":584},{"Bonus":0,"Continent":"K35","ID":32550,"Name":"AAA","PlayerID":1006847,"Points":6791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32550","ServerKey":"pl181","X":531,"Y":322},{"Bonus":0,"Continent":"K34","ID":32551,"Name":"#0121 tomek791103","PlayerID":1238300,"Points":8327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32551","ServerKey":"pl181","X":479,"Y":320},{"Bonus":0,"Continent":"K64","ID":32552,"Name":"|057| Barba","PlayerID":699393742,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32552","ServerKey":"pl181","X":498,"Y":679},{"Bonus":0,"Continent":"K34","ID":32553,"Name":"#0115 tomek791103","PlayerID":1238300,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32553","ServerKey":"pl181","X":478,"Y":322},{"Bonus":0,"Continent":"K34","ID":32554,"Name":"K34 - [157] Before Land","PlayerID":699088769,"Points":8708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32554","ServerKey":"pl181","X":431,"Y":338},{"Bonus":0,"Continent":"K43","ID":32555,"Name":"V013","PlayerID":849097737,"Points":2307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32555","ServerKey":"pl181","X":338,"Y":419},{"Bonus":0,"Continent":"K46","ID":32556,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":2170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32556","ServerKey":"pl181","X":670,"Y":452},{"Bonus":0,"Continent":"K63","ID":32557,"Name":"012","PlayerID":699083129,"Points":7829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32557","ServerKey":"pl181","X":357,"Y":607},{"Bonus":0,"Continent":"K46","ID":32558,"Name":"067","PlayerID":7085502,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32558","ServerKey":"pl181","X":675,"Y":491},{"Bonus":0,"Continent":"K53","ID":32559,"Name":"(006)Rall Elorim","PlayerID":849098695,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32559","ServerKey":"pl181","X":334,"Y":567},{"Bonus":0,"Continent":"K35","ID":32560,"Name":"Wioska Natka1968_05","PlayerID":699644852,"Points":1633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32560","ServerKey":"pl181","X":526,"Y":324},{"Bonus":0,"Continent":"K63","ID":32561,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32561","ServerKey":"pl181","X":360,"Y":615},{"Bonus":0,"Continent":"K53","ID":32563,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32563","ServerKey":"pl181","X":326,"Y":528},{"Bonus":0,"Continent":"K65","ID":32564,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32564","ServerKey":"pl181","X":506,"Y":680},{"Bonus":6,"Continent":"K64","ID":32565,"Name":":::2:::Koniki","PlayerID":699827112,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32565","ServerKey":"pl181","X":450,"Y":666},{"Bonus":0,"Continent":"K53","ID":32566,"Name":"Grupka 7 wiosek 4","PlayerID":698353083,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32566","ServerKey":"pl181","X":355,"Y":599},{"Bonus":0,"Continent":"K43","ID":32567,"Name":"*054*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32567","ServerKey":"pl181","X":353,"Y":400},{"Bonus":0,"Continent":"K56","ID":32568,"Name":"B 036","PlayerID":8078914,"Points":8703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32568","ServerKey":"pl181","X":674,"Y":522},{"Bonus":0,"Continent":"K56","ID":32569,"Name":"052 Arizona","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32569","ServerKey":"pl181","X":674,"Y":521},{"Bonus":0,"Continent":"K36","ID":32570,"Name":"=|25|=","PlayerID":9101574,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32570","ServerKey":"pl181","X":637,"Y":388},{"Bonus":0,"Continent":"K63","ID":32571,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32571","ServerKey":"pl181","X":386,"Y":637},{"Bonus":0,"Continent":"K64","ID":32572,"Name":"#Sk_011","PlayerID":699849210,"Points":3308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32572","ServerKey":"pl181","X":438,"Y":662},{"Bonus":0,"Continent":"K65","ID":32573,"Name":"#103 C","PlayerID":9037756,"Points":8348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32573","ServerKey":"pl181","X":530,"Y":672},{"Bonus":0,"Continent":"K65","ID":32574,"Name":"wąchaj wora !!!","PlayerID":848995242,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32574","ServerKey":"pl181","X":589,"Y":654},{"Bonus":0,"Continent":"K53","ID":32575,"Name":"Wzdręga","PlayerID":699265922,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32575","ServerKey":"pl181","X":329,"Y":550},{"Bonus":0,"Continent":"K65","ID":32576,"Name":"amator czysta","PlayerID":848915531,"Points":5519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32576","ServerKey":"pl181","X":552,"Y":665},{"Bonus":0,"Continent":"K35","ID":32577,"Name":"TWIERDZA #2","PlayerID":849063793,"Points":4365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32577","ServerKey":"pl181","X":587,"Y":343},{"Bonus":0,"Continent":"K36","ID":32578,"Name":"030","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32578","ServerKey":"pl181","X":600,"Y":355},{"Bonus":0,"Continent":"K56","ID":32579,"Name":"O34 Sendai","PlayerID":699272880,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32579","ServerKey":"pl181","X":676,"Y":523},{"Bonus":0,"Continent":"K53","ID":32580,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32580","ServerKey":"pl181","X":344,"Y":574},{"Bonus":0,"Continent":"K53","ID":32581,"Name":"C0043","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32581","ServerKey":"pl181","X":323,"Y":519},{"Bonus":0,"Continent":"K43","ID":32583,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32583","ServerKey":"pl181","X":330,"Y":453},{"Bonus":0,"Continent":"K63","ID":32584,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32584","ServerKey":"pl181","X":389,"Y":640},{"Bonus":0,"Continent":"K34","ID":32585,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":8415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32585","ServerKey":"pl181","X":461,"Y":326},{"Bonus":0,"Continent":"K53","ID":32586,"Name":"J04","PlayerID":849090130,"Points":6379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32586","ServerKey":"pl181","X":365,"Y":597},{"Bonus":2,"Continent":"K43","ID":32587,"Name":"Parole","PlayerID":699595556,"Points":6048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32587","ServerKey":"pl181","X":350,"Y":403},{"Bonus":0,"Continent":"K63","ID":32588,"Name":"018","PlayerID":699083129,"Points":4715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32588","ServerKey":"pl181","X":361,"Y":606},{"Bonus":0,"Continent":"K53","ID":32589,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32589","ServerKey":"pl181","X":328,"Y":517},{"Bonus":0,"Continent":"K46","ID":32590,"Name":"117","PlayerID":849088515,"Points":6830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32590","ServerKey":"pl181","X":659,"Y":426},{"Bonus":0,"Continent":"K35","ID":32591,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32591","ServerKey":"pl181","X":552,"Y":333},{"Bonus":0,"Continent":"K35","ID":32592,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32592","ServerKey":"pl181","X":562,"Y":334},{"Bonus":0,"Continent":"K63","ID":32593,"Name":"008","PlayerID":699083129,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32593","ServerKey":"pl181","X":356,"Y":606},{"Bonus":0,"Continent":"K36","ID":32594,"Name":"005 Schwere Panzer-Abteilung 502","PlayerID":849091899,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32594","ServerKey":"pl181","X":604,"Y":360},{"Bonus":0,"Continent":"K35","ID":32596,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32596","ServerKey":"pl181","X":599,"Y":358},{"Bonus":0,"Continent":"K53","ID":32597,"Name":"polska","PlayerID":849014147,"Points":2192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32597","ServerKey":"pl181","X":351,"Y":595},{"Bonus":0,"Continent":"K65","ID":32598,"Name":"witam somsiadow","PlayerID":848995242,"Points":10170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32598","ServerKey":"pl181","X":587,"Y":659},{"Bonus":3,"Continent":"K64","ID":32599,"Name":"A13","PlayerID":698652014,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32599","ServerKey":"pl181","X":463,"Y":675},{"Bonus":0,"Continent":"K34","ID":32600,"Name":"XXXX","PlayerID":8847546,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32600","ServerKey":"pl181","X":489,"Y":326},{"Bonus":0,"Continent":"K53","ID":32601,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32601","ServerKey":"pl181","X":338,"Y":573},{"Bonus":0,"Continent":"K46","ID":32602,"Name":"I088","PlayerID":699722599,"Points":8245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32602","ServerKey":"pl181","X":672,"Y":448},{"Bonus":0,"Continent":"K63","ID":32603,"Name":"Komornicy 021","PlayerID":699336777,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32603","ServerKey":"pl181","X":353,"Y":606},{"Bonus":0,"Continent":"K63","ID":32604,"Name":"D.028","PlayerID":849088243,"Points":3282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32604","ServerKey":"pl181","X":395,"Y":647},{"Bonus":0,"Continent":"K56","ID":32605,"Name":"C.01","PlayerID":699737356,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32605","ServerKey":"pl181","X":681,"Y":515},{"Bonus":0,"Continent":"K36","ID":32606,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32606","ServerKey":"pl181","X":635,"Y":380},{"Bonus":0,"Continent":"K65","ID":32607,"Name":"0542","PlayerID":698659980,"Points":6533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32607","ServerKey":"pl181","X":562,"Y":663},{"Bonus":0,"Continent":"K53","ID":32608,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32608","ServerKey":"pl181","X":327,"Y":538},{"Bonus":0,"Continent":"K35","ID":32609,"Name":"Wrath 010","PlayerID":699756210,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32609","ServerKey":"pl181","X":575,"Y":342},{"Bonus":0,"Continent":"K34","ID":32610,"Name":"A-051-Heffitto","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32610","ServerKey":"pl181","X":401,"Y":348},{"Bonus":0,"Continent":"K36","ID":32611,"Name":"021 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32611","ServerKey":"pl181","X":645,"Y":394},{"Bonus":0,"Continent":"K53","ID":32612,"Name":"182.","PlayerID":849090130,"Points":7537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32612","ServerKey":"pl181","X":352,"Y":591},{"Bonus":0,"Continent":"K66","ID":32613,"Name":"~~094~~","PlayerID":699567608,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32613","ServerKey":"pl181","X":630,"Y":615},{"Bonus":0,"Continent":"K35","ID":32614,"Name":"AAA","PlayerID":1006847,"Points":4793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32614","ServerKey":"pl181","X":528,"Y":329},{"Bonus":0,"Continent":"K64","ID":32615,"Name":"Psycha Siada","PlayerID":698807570,"Points":8628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32615","ServerKey":"pl181","X":448,"Y":666},{"Bonus":0,"Continent":"K63","ID":32616,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32616","ServerKey":"pl181","X":386,"Y":641},{"Bonus":0,"Continent":"K64","ID":32617,"Name":"030|| Vela","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32617","ServerKey":"pl181","X":468,"Y":679},{"Bonus":0,"Continent":"K43","ID":32618,"Name":"*239*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32618","ServerKey":"pl181","X":333,"Y":444},{"Bonus":0,"Continent":"K53","ID":32619,"Name":"Komornik 001","PlayerID":698290577,"Points":8249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32619","ServerKey":"pl181","X":329,"Y":536},{"Bonus":0,"Continent":"K53","ID":32620,"Name":"Alfama","PlayerID":699494480,"Points":7471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32620","ServerKey":"pl181","X":350,"Y":588},{"Bonus":0,"Continent":"K63","ID":32621,"Name":"001","PlayerID":699083129,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32621","ServerKey":"pl181","X":362,"Y":610},{"Bonus":0,"Continent":"K43","ID":32622,"Name":"A0277","PlayerID":8841266,"Points":9381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32622","ServerKey":"pl181","X":321,"Y":483},{"Bonus":0,"Continent":"K35","ID":32623,"Name":"UltraInstynkt++","PlayerID":699710633,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32623","ServerKey":"pl181","X":585,"Y":341},{"Bonus":0,"Continent":"K43","ID":32624,"Name":"Out of Touch","PlayerID":698962117,"Points":3906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32624","ServerKey":"pl181","X":331,"Y":437},{"Bonus":1,"Continent":"K64","ID":32625,"Name":"Szale","PlayerID":698807570,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32625","ServerKey":"pl181","X":463,"Y":676},{"Bonus":0,"Continent":"K53","ID":32626,"Name":"C0035","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32626","ServerKey":"pl181","X":321,"Y":520},{"Bonus":0,"Continent":"K43","ID":32627,"Name":"M181_012","PlayerID":393668,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32627","ServerKey":"pl181","X":338,"Y":434},{"Bonus":0,"Continent":"K56","ID":32628,"Name":"O64 Miryang","PlayerID":699272880,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32628","ServerKey":"pl181","X":674,"Y":552},{"Bonus":0,"Continent":"K35","ID":32629,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32629","ServerKey":"pl181","X":557,"Y":328},{"Bonus":0,"Continent":"K46","ID":32630,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32630","ServerKey":"pl181","X":677,"Y":471},{"Bonus":0,"Continent":"K64","ID":32631,"Name":"A003","PlayerID":8954402,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32631","ServerKey":"pl181","X":487,"Y":680},{"Bonus":7,"Continent":"K66","ID":32632,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32632","ServerKey":"pl181","X":623,"Y":628},{"Bonus":0,"Continent":"K46","ID":32633,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32633","ServerKey":"pl181","X":681,"Y":498},{"Bonus":0,"Continent":"K66","ID":32634,"Name":"#079#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32634","ServerKey":"pl181","X":618,"Y":636},{"Bonus":0,"Continent":"K53","ID":32635,"Name":"146 Oj Mareczku coƛ za duĆŒo cyfr","PlayerID":699382126,"Points":6043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32635","ServerKey":"pl181","X":372,"Y":580},{"Bonus":0,"Continent":"K65","ID":32636,"Name":"Sony 911","PlayerID":1415009,"Points":7141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32636","ServerKey":"pl181","X":580,"Y":657},{"Bonus":0,"Continent":"K35","ID":32637,"Name":"Wieƛ Arhibitsusa","PlayerID":849098136,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32637","ServerKey":"pl181","X":549,"Y":325},{"Bonus":0,"Continent":"K35","ID":32639,"Name":"Lord Lord Franek .#148","PlayerID":698420691,"Points":8463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32639","ServerKey":"pl181","X":508,"Y":319},{"Bonus":0,"Continent":"K36","ID":32640,"Name":"=|10|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32640","ServerKey":"pl181","X":638,"Y":387},{"Bonus":0,"Continent":"K33","ID":32641,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32641","ServerKey":"pl181","X":370,"Y":375},{"Bonus":0,"Continent":"K64","ID":32642,"Name":"Ave Why!","PlayerID":698585370,"Points":6001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32642","ServerKey":"pl181","X":452,"Y":672},{"Bonus":0,"Continent":"K36","ID":32643,"Name":"025.","PlayerID":9048764,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32643","ServerKey":"pl181","X":618,"Y":374},{"Bonus":0,"Continent":"K34","ID":32644,"Name":"#0126 korniczeks","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32644","ServerKey":"pl181","X":474,"Y":323},{"Bonus":0,"Continent":"K35","ID":32645,"Name":"- DragonB","PlayerID":699825236,"Points":6591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32645","ServerKey":"pl181","X":547,"Y":327},{"Bonus":0,"Continent":"K64","ID":32646,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32646","ServerKey":"pl181","X":478,"Y":679},{"Bonus":0,"Continent":"K55","ID":32647,"Name":"Normalnie nie","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32647","ServerKey":"pl181","X":575,"Y":569},{"Bonus":0,"Continent":"K63","ID":32648,"Name":"A 005","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32648","ServerKey":"pl181","X":369,"Y":616},{"Bonus":0,"Continent":"K34","ID":32649,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32649","ServerKey":"pl181","X":440,"Y":337},{"Bonus":0,"Continent":"K56","ID":32650,"Name":"002","PlayerID":699493750,"Points":7971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32650","ServerKey":"pl181","X":668,"Y":564},{"Bonus":0,"Continent":"K53","ID":32651,"Name":"012","PlayerID":7097727,"Points":4394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32651","ServerKey":"pl181","X":319,"Y":502},{"Bonus":0,"Continent":"K36","ID":32652,"Name":"Taran 009","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32652","ServerKey":"pl181","X":623,"Y":367},{"Bonus":0,"Continent":"K53","ID":32653,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32653","ServerKey":"pl181","X":333,"Y":560},{"Bonus":0,"Continent":"K34","ID":32654,"Name":"064","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32654","ServerKey":"pl181","X":452,"Y":332},{"Bonus":0,"Continent":"K63","ID":32655,"Name":"Pobozowisko","PlayerID":699513260,"Points":4946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32655","ServerKey":"pl181","X":367,"Y":610},{"Bonus":0,"Continent":"K56","ID":32656,"Name":"WschĂłd Droga 007","PlayerID":698562644,"Points":5330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32656","ServerKey":"pl181","X":665,"Y":559},{"Bonus":0,"Continent":"K64","ID":32657,"Name":"#013. Nobody Like Me","PlayerID":848896948,"Points":8590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32657","ServerKey":"pl181","X":457,"Y":676},{"Bonus":0,"Continent":"K36","ID":32658,"Name":"016","PlayerID":6822957,"Points":8901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32658","ServerKey":"pl181","X":614,"Y":360},{"Bonus":0,"Continent":"K33","ID":32659,"Name":"Wioska Westor 2","PlayerID":699530673,"Points":4380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32659","ServerKey":"pl181","X":358,"Y":394},{"Bonus":0,"Continent":"K53","ID":32660,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32660","ServerKey":"pl181","X":348,"Y":596},{"Bonus":0,"Continent":"K64","ID":32661,"Name":"Psycha Siada","PlayerID":698807570,"Points":5029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32661","ServerKey":"pl181","X":448,"Y":672},{"Bonus":0,"Continent":"K33","ID":32662,"Name":"Wioska Cray123","PlayerID":699711706,"Points":1117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32662","ServerKey":"pl181","X":373,"Y":380},{"Bonus":0,"Continent":"K46","ID":32663,"Name":"I025","PlayerID":699722599,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32663","ServerKey":"pl181","X":667,"Y":447},{"Bonus":0,"Continent":"K36","ID":32665,"Name":".:015:.","PlayerID":849078297,"Points":4763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32665","ServerKey":"pl181","X":634,"Y":378},{"Bonus":0,"Continent":"K35","ID":32666,"Name":"-0006-","PlayerID":2972329,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32666","ServerKey":"pl181","X":543,"Y":326},{"Bonus":0,"Continent":"K35","ID":32667,"Name":"AAA","PlayerID":1006847,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32667","ServerKey":"pl181","X":532,"Y":322},{"Bonus":0,"Continent":"K53","ID":32668,"Name":"C0241","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32668","ServerKey":"pl181","X":327,"Y":521},{"Bonus":0,"Continent":"K35","ID":32669,"Name":"Wioska XIV","PlayerID":698200480,"Points":7784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32669","ServerKey":"pl181","X":577,"Y":345},{"Bonus":0,"Continent":"K34","ID":32670,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32670","ServerKey":"pl181","X":428,"Y":335},{"Bonus":0,"Continent":"K65","ID":32671,"Name":"*032","PlayerID":699567608,"Points":9004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32671","ServerKey":"pl181","X":595,"Y":650},{"Bonus":0,"Continent":"K53","ID":32672,"Name":"Taran","PlayerID":6180190,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32672","ServerKey":"pl181","X":342,"Y":581},{"Bonus":0,"Continent":"K64","ID":32673,"Name":"Psycha Siada","PlayerID":8099868,"Points":730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32673","ServerKey":"pl181","X":462,"Y":670},{"Bonus":0,"Continent":"K56","ID":32674,"Name":"044","PlayerID":699413040,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32674","ServerKey":"pl181","X":673,"Y":511},{"Bonus":0,"Continent":"K46","ID":32676,"Name":"[025] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32676","ServerKey":"pl181","X":667,"Y":436},{"Bonus":0,"Continent":"K43","ID":32678,"Name":"*230*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32678","ServerKey":"pl181","X":332,"Y":438},{"Bonus":0,"Continent":"K34","ID":32679,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32679","ServerKey":"pl181","X":437,"Y":335},{"Bonus":0,"Continent":"K65","ID":32680,"Name":"*008","PlayerID":699567608,"Points":9129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32680","ServerKey":"pl181","X":598,"Y":646},{"Bonus":0,"Continent":"K33","ID":32681,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":7533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32681","ServerKey":"pl181","X":384,"Y":371},{"Bonus":0,"Continent":"K64","ID":32682,"Name":"|025| RIO","PlayerID":699781762,"Points":8864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32682","ServerKey":"pl181","X":499,"Y":680},{"Bonus":0,"Continent":"K36","ID":32683,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32683","ServerKey":"pl181","X":634,"Y":391},{"Bonus":0,"Continent":"K34","ID":32684,"Name":"097...tomecz","PlayerID":6920960,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32684","ServerKey":"pl181","X":480,"Y":326},{"Bonus":0,"Continent":"K35","ID":32685,"Name":"- Apokalipto181","PlayerID":699825236,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32685","ServerKey":"pl181","X":547,"Y":328},{"Bonus":0,"Continent":"K35","ID":32686,"Name":"Lord Lord Franek .#092","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32686","ServerKey":"pl181","X":515,"Y":324},{"Bonus":0,"Continent":"K66","ID":32687,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32687","ServerKey":"pl181","X":634,"Y":614},{"Bonus":0,"Continent":"K35","ID":32688,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":9089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32688","ServerKey":"pl181","X":594,"Y":347},{"Bonus":0,"Continent":"K43","ID":32689,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32689","ServerKey":"pl181","X":335,"Y":455},{"Bonus":0,"Continent":"K43","ID":32690,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32690","ServerKey":"pl181","X":343,"Y":424},{"Bonus":0,"Continent":"K56","ID":32691,"Name":"014 zs 1","PlayerID":2135129,"Points":9586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32691","ServerKey":"pl181","X":675,"Y":503},{"Bonus":0,"Continent":"K56","ID":32692,"Name":"Wioska 090","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32692","ServerKey":"pl181","X":659,"Y":587},{"Bonus":0,"Continent":"K53","ID":32693,"Name":"053 komornicy","PlayerID":699510259,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32693","ServerKey":"pl181","X":332,"Y":545},{"Bonus":0,"Continent":"K33","ID":32694,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32694","ServerKey":"pl181","X":393,"Y":358},{"Bonus":0,"Continent":"K66","ID":32695,"Name":"Monetkownia","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32695","ServerKey":"pl181","X":621,"Y":631},{"Bonus":0,"Continent":"K34","ID":32696,"Name":"106.Stradi","PlayerID":698365960,"Points":10390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32696","ServerKey":"pl181","X":454,"Y":328},{"Bonus":4,"Continent":"K53","ID":32697,"Name":"Certa","PlayerID":699265922,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32697","ServerKey":"pl181","X":333,"Y":552},{"Bonus":0,"Continent":"K34","ID":32698,"Name":"217","PlayerID":7271812,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32698","ServerKey":"pl181","X":433,"Y":332},{"Bonus":0,"Continent":"K63","ID":32699,"Name":"A 018","PlayerID":699342219,"Points":10749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32699","ServerKey":"pl181","X":363,"Y":619},{"Bonus":0,"Continent":"K35","ID":32700,"Name":"UltraInstynkt=","PlayerID":699710633,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32700","ServerKey":"pl181","X":579,"Y":338},{"Bonus":0,"Continent":"K46","ID":32701,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32701","ServerKey":"pl181","X":672,"Y":475},{"Bonus":0,"Continent":"K34","ID":32703,"Name":"#0199 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32703","ServerKey":"pl181","X":458,"Y":325},{"Bonus":0,"Continent":"K35","ID":32704,"Name":"A.03 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32704","ServerKey":"pl181","X":560,"Y":333},{"Bonus":0,"Continent":"K34","ID":32705,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":6124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32705","ServerKey":"pl181","X":465,"Y":325},{"Bonus":0,"Continent":"K36","ID":32706,"Name":"-24-","PlayerID":699837826,"Points":2471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32706","ServerKey":"pl181","X":629,"Y":376},{"Bonus":0,"Continent":"K35","ID":32707,"Name":"J#011","PlayerID":2065730,"Points":8802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32707","ServerKey":"pl181","X":569,"Y":333},{"Bonus":0,"Continent":"K35","ID":32708,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32708","ServerKey":"pl181","X":554,"Y":336},{"Bonus":0,"Continent":"K33","ID":32709,"Name":"2.4","PlayerID":849095959,"Points":1941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32709","ServerKey":"pl181","X":371,"Y":382},{"Bonus":0,"Continent":"K63","ID":32710,"Name":"Wioska barbarzyƄska","PlayerID":849014147,"Points":2365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32710","ServerKey":"pl181","X":355,"Y":603},{"Bonus":0,"Continent":"K65","ID":32711,"Name":"Muchomor *017*","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32711","ServerKey":"pl181","X":520,"Y":674},{"Bonus":0,"Continent":"K34","ID":32712,"Name":"013","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32712","ServerKey":"pl181","X":457,"Y":329},{"Bonus":0,"Continent":"K43","ID":32713,"Name":"Bania u Cygana","PlayerID":849098299,"Points":3396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32713","ServerKey":"pl181","X":342,"Y":412},{"Bonus":0,"Continent":"K36","ID":32714,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32714","ServerKey":"pl181","X":641,"Y":395},{"Bonus":0,"Continent":"K36","ID":32715,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":5998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32715","ServerKey":"pl181","X":630,"Y":378},{"Bonus":0,"Continent":"K64","ID":32716,"Name":"A004","PlayerID":8954402,"Points":8683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32716","ServerKey":"pl181","X":493,"Y":679},{"Bonus":0,"Continent":"K56","ID":32717,"Name":"Wioska Sir Zordon 002","PlayerID":478956,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32717","ServerKey":"pl181","X":666,"Y":574},{"Bonus":0,"Continent":"K56","ID":32718,"Name":"$MinnesotaTimberwolves","PlayerID":699795378,"Points":6768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32718","ServerKey":"pl181","X":680,"Y":519},{"Bonus":0,"Continent":"K63","ID":32719,"Name":"Niby 01","PlayerID":8607734,"Points":5918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32719","ServerKey":"pl181","X":357,"Y":605},{"Bonus":0,"Continent":"K65","ID":32720,"Name":"0441","PlayerID":698659980,"Points":8705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32720","ServerKey":"pl181","X":537,"Y":669},{"Bonus":0,"Continent":"K56","ID":32721,"Name":"Sekou","PlayerID":699737356,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32721","ServerKey":"pl181","X":674,"Y":509},{"Bonus":7,"Continent":"K46","ID":32722,"Name":"077. Acyra","PlayerID":849091866,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32722","ServerKey":"pl181","X":653,"Y":409},{"Bonus":0,"Continent":"K56","ID":32723,"Name":"S-F. Elektryczna Mysz","PlayerID":849098693,"Points":6732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32723","ServerKey":"pl181","X":662,"Y":579},{"Bonus":0,"Continent":"K53","ID":32724,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32724","ServerKey":"pl181","X":326,"Y":525},{"Bonus":0,"Continent":"K34","ID":32725,"Name":"#0071 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32725","ServerKey":"pl181","X":478,"Y":331},{"Bonus":0,"Continent":"K64","ID":32726,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32726","ServerKey":"pl181","X":400,"Y":643},{"Bonus":8,"Continent":"K46","ID":32727,"Name":"hell","PlayerID":1086351,"Points":7930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32727","ServerKey":"pl181","X":649,"Y":406},{"Bonus":0,"Continent":"K34","ID":32728,"Name":"018","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32728","ServerKey":"pl181","X":460,"Y":327},{"Bonus":0,"Continent":"K36","ID":32729,"Name":"080 ƚwiąteczna Bombka","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32729","ServerKey":"pl181","X":649,"Y":399},{"Bonus":0,"Continent":"K65","ID":32730,"Name":"0294","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32730","ServerKey":"pl181","X":547,"Y":671},{"Bonus":0,"Continent":"K43","ID":32731,"Name":"V011","PlayerID":849097737,"Points":4179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32731","ServerKey":"pl181","X":338,"Y":417},{"Bonus":0,"Continent":"K35","ID":32732,"Name":"Wioska XIII","PlayerID":698200480,"Points":7794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32732","ServerKey":"pl181","X":582,"Y":343},{"Bonus":0,"Continent":"K35","ID":32733,"Name":"Pretoria 1","PlayerID":699072129,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32733","ServerKey":"pl181","X":558,"Y":331},{"Bonus":0,"Continent":"K43","ID":32734,"Name":"A0282","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32734","ServerKey":"pl181","X":325,"Y":484},{"Bonus":0,"Continent":"K64","ID":32735,"Name":"Nie","PlayerID":8966820,"Points":2235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32735","ServerKey":"pl181","X":441,"Y":666},{"Bonus":0,"Continent":"K33","ID":32736,"Name":"Szlachcic","PlayerID":698160606,"Points":7652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32736","ServerKey":"pl181","X":381,"Y":369},{"Bonus":0,"Continent":"K53","ID":32737,"Name":"083 Ludzie tu nikogo nie ma","PlayerID":699382126,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32737","ServerKey":"pl181","X":332,"Y":571},{"Bonus":0,"Continent":"K35","ID":32738,"Name":"AAA","PlayerID":1006847,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32738","ServerKey":"pl181","X":531,"Y":326},{"Bonus":0,"Continent":"K33","ID":32739,"Name":"*002*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32739","ServerKey":"pl181","X":357,"Y":388},{"Bonus":0,"Continent":"K34","ID":32740,"Name":"#0114 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32740","ServerKey":"pl181","X":479,"Y":323},{"Bonus":0,"Continent":"K64","ID":32741,"Name":"Brown","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32741","ServerKey":"pl181","X":492,"Y":675},{"Bonus":0,"Continent":"K35","ID":32742,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":4487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32742","ServerKey":"pl181","X":594,"Y":346},{"Bonus":0,"Continent":"K65","ID":32743,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32743","ServerKey":"pl181","X":514,"Y":680},{"Bonus":0,"Continent":"K46","ID":32744,"Name":"[026] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32744","ServerKey":"pl181","X":667,"Y":434},{"Bonus":0,"Continent":"K35","ID":32745,"Name":"Wioska Samuraj","PlayerID":698680806,"Points":8791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32745","ServerKey":"pl181","X":500,"Y":320},{"Bonus":0,"Continent":"K34","ID":32746,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32746","ServerKey":"pl181","X":436,"Y":331},{"Bonus":0,"Continent":"K64","ID":32747,"Name":"002 PoĆŒarski na wynos","PlayerID":698650301,"Points":8803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32747","ServerKey":"pl181","X":479,"Y":660},{"Bonus":0,"Continent":"K53","ID":32748,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32748","ServerKey":"pl181","X":337,"Y":575},{"Bonus":0,"Continent":"K35","ID":32750,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32750","ServerKey":"pl181","X":591,"Y":350},{"Bonus":0,"Continent":"K66","ID":32751,"Name":"Ć»UBRAWKA 057 .::.nic tu nie ma","PlayerID":33900,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32751","ServerKey":"pl181","X":613,"Y":643},{"Bonus":0,"Continent":"K53","ID":32752,"Name":"Gudhjem","PlayerID":849098387,"Points":8341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32752","ServerKey":"pl181","X":335,"Y":569},{"Bonus":0,"Continent":"K66","ID":32753,"Name":"#005#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32753","ServerKey":"pl181","X":619,"Y":636},{"Bonus":0,"Continent":"K65","ID":32754,"Name":"059","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32754","ServerKey":"pl181","X":534,"Y":670},{"Bonus":0,"Continent":"K63","ID":32755,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":7780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32755","ServerKey":"pl181","X":363,"Y":615},{"Bonus":0,"Continent":"K35","ID":32756,"Name":"AAA","PlayerID":1006847,"Points":9295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32756","ServerKey":"pl181","X":528,"Y":321},{"Bonus":0,"Continent":"K66","ID":32758,"Name":"Redemption Song","PlayerID":2269943,"Points":8394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32758","ServerKey":"pl181","X":645,"Y":604},{"Bonus":2,"Continent":"K53","ID":32759,"Name":"Setubal","PlayerID":699494480,"Points":9625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32759","ServerKey":"pl181","X":349,"Y":590},{"Bonus":0,"Continent":"K43","ID":32760,"Name":"V010","PlayerID":849097737,"Points":4473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32760","ServerKey":"pl181","X":340,"Y":418},{"Bonus":0,"Continent":"K65","ID":32761,"Name":"037","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32761","ServerKey":"pl181","X":530,"Y":677},{"Bonus":0,"Continent":"K36","ID":32762,"Name":"Wyspa 010","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32762","ServerKey":"pl181","X":628,"Y":376},{"Bonus":0,"Continent":"K66","ID":32763,"Name":"#065#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32763","ServerKey":"pl181","X":624,"Y":623},{"Bonus":0,"Continent":"K64","ID":32764,"Name":"B05","PlayerID":698652014,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32764","ServerKey":"pl181","X":476,"Y":679},{"Bonus":0,"Continent":"K56","ID":32765,"Name":"052","PlayerID":699413040,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32765","ServerKey":"pl181","X":675,"Y":515},{"Bonus":0,"Continent":"K66","ID":32766,"Name":"#004#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32766","ServerKey":"pl181","X":629,"Y":632},{"Bonus":0,"Continent":"K43","ID":32767,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32767","ServerKey":"pl181","X":355,"Y":405},{"Bonus":0,"Continent":"K36","ID":32768,"Name":"Miami, Floryda","PlayerID":7462660,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32768","ServerKey":"pl181","X":603,"Y":371},{"Bonus":0,"Continent":"K46","ID":32769,"Name":"B.02","PlayerID":699737356,"Points":8748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32769","ServerKey":"pl181","X":675,"Y":493},{"Bonus":0,"Continent":"K63","ID":32770,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32770","ServerKey":"pl181","X":391,"Y":642},{"Bonus":0,"Continent":"K66","ID":32771,"Name":"lolo","PlayerID":849092639,"Points":2334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32771","ServerKey":"pl181","X":625,"Y":628},{"Bonus":0,"Continent":"K43","ID":32772,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32772","ServerKey":"pl181","X":354,"Y":403},{"Bonus":0,"Continent":"K63","ID":32773,"Name":"025 Nowy rok","PlayerID":8268010,"Points":4971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32773","ServerKey":"pl181","X":356,"Y":611},{"Bonus":0,"Continent":"K36","ID":32774,"Name":"084","PlayerID":2502956,"Points":7029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32774","ServerKey":"pl181","X":627,"Y":373},{"Bonus":0,"Continent":"K46","ID":32775,"Name":"**36**","PlayerID":849098782,"Points":10643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32775","ServerKey":"pl181","X":668,"Y":441},{"Bonus":0,"Continent":"K43","ID":32776,"Name":"SJ3","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32776","ServerKey":"pl181","X":327,"Y":449},{"Bonus":0,"Continent":"K33","ID":32777,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":7544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32777","ServerKey":"pl181","X":382,"Y":370},{"Bonus":0,"Continent":"K43","ID":32778,"Name":"Barbababarba","PlayerID":849098299,"Points":2703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32778","ServerKey":"pl181","X":345,"Y":409},{"Bonus":0,"Continent":"K43","ID":32779,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32779","ServerKey":"pl181","X":323,"Y":461},{"Bonus":0,"Continent":"K35","ID":32782,"Name":"AAA","PlayerID":1006847,"Points":4465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32782","ServerKey":"pl181","X":540,"Y":325},{"Bonus":0,"Continent":"K46","ID":32783,"Name":"Jehu_Kingdom_69","PlayerID":8785314,"Points":670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32783","ServerKey":"pl181","X":664,"Y":436},{"Bonus":0,"Continent":"K46","ID":32784,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32784","ServerKey":"pl181","X":680,"Y":482},{"Bonus":0,"Continent":"K46","ID":32785,"Name":"125. Bezmiar Wschodni Daleki","PlayerID":8337151,"Points":7143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32785","ServerKey":"pl181","X":644,"Y":400},{"Bonus":0,"Continent":"K43","ID":32786,"Name":"Westfold.016","PlayerID":848918380,"Points":8361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32786","ServerKey":"pl181","X":338,"Y":427},{"Bonus":0,"Continent":"K34","ID":32787,"Name":"[B]_[029] Dejv.oldplyr","PlayerID":699380607,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32787","ServerKey":"pl181","X":424,"Y":343},{"Bonus":0,"Continent":"K36","ID":32788,"Name":"Taran 022","PlayerID":699098531,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32788","ServerKey":"pl181","X":639,"Y":381},{"Bonus":0,"Continent":"K66","ID":32789,"Name":"WB 02","PlayerID":2269943,"Points":8295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32789","ServerKey":"pl181","X":639,"Y":611},{"Bonus":0,"Continent":"K46","ID":32790,"Name":"A004 PASTOR","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32790","ServerKey":"pl181","X":663,"Y":449},{"Bonus":0,"Continent":"K46","ID":32791,"Name":"46. KaruTown","PlayerID":849091866,"Points":6879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32791","ServerKey":"pl181","X":641,"Y":400},{"Bonus":0,"Continent":"K33","ID":32792,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32792","ServerKey":"pl181","X":387,"Y":361},{"Bonus":0,"Continent":"K65","ID":32793,"Name":"042","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32793","ServerKey":"pl181","X":522,"Y":680},{"Bonus":0,"Continent":"K36","ID":32794,"Name":"0017","PlayerID":848924219,"Points":4835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32794","ServerKey":"pl181","X":628,"Y":389},{"Bonus":0,"Continent":"K34","ID":32795,"Name":"122...tomcz","PlayerID":6920960,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32795","ServerKey":"pl181","X":477,"Y":321},{"Bonus":3,"Continent":"K64","ID":32796,"Name":"[02]","PlayerID":699849210,"Points":8235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32796","ServerKey":"pl181","X":428,"Y":662},{"Bonus":0,"Continent":"K56","ID":32797,"Name":"Wioska barbarzyƄska","PlayerID":849045915,"Points":8108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32797","ServerKey":"pl181","X":663,"Y":560},{"Bonus":7,"Continent":"K65","ID":32798,"Name":"0656","PlayerID":698659980,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32798","ServerKey":"pl181","X":551,"Y":670},{"Bonus":0,"Continent":"K65","ID":32799,"Name":"009","PlayerID":2293376,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32799","ServerKey":"pl181","X":525,"Y":673},{"Bonus":0,"Continent":"K53","ID":32800,"Name":"Taran","PlayerID":6180190,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32800","ServerKey":"pl181","X":342,"Y":583},{"Bonus":0,"Continent":"K65","ID":32801,"Name":"|061| Idą ƚwięta","PlayerID":699781762,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32801","ServerKey":"pl181","X":509,"Y":681},{"Bonus":0,"Continent":"K36","ID":32802,"Name":"=|37|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32802","ServerKey":"pl181","X":640,"Y":390},{"Bonus":0,"Continent":"K53","ID":32803,"Name":"AJY","PlayerID":7318415,"Points":3663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32803","ServerKey":"pl181","X":343,"Y":586},{"Bonus":0,"Continent":"K35","ID":32804,"Name":"Lord Lord Franek .#147","PlayerID":698420691,"Points":10101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32804","ServerKey":"pl181","X":508,"Y":323},{"Bonus":0,"Continent":"K33","ID":32805,"Name":"Szulernia","PlayerID":7249451,"Points":3233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32805","ServerKey":"pl181","X":374,"Y":374},{"Bonus":0,"Continent":"K34","ID":32806,"Name":"0124","PlayerID":699431255,"Points":5082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32806","ServerKey":"pl181","X":411,"Y":347},{"Bonus":2,"Continent":"K43","ID":32807,"Name":"A0262","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32807","ServerKey":"pl181","X":328,"Y":476},{"Bonus":0,"Continent":"K53","ID":32809,"Name":"C0148","PlayerID":8841266,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32809","ServerKey":"pl181","X":324,"Y":532},{"Bonus":0,"Continent":"K35","ID":32810,"Name":"26. 335i","PlayerID":699072129,"Points":10697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32810","ServerKey":"pl181","X":552,"Y":326},{"Bonus":0,"Continent":"K36","ID":32812,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32812","ServerKey":"pl181","X":630,"Y":380},{"Bonus":0,"Continent":"K46","ID":32814,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32814","ServerKey":"pl181","X":675,"Y":470},{"Bonus":0,"Continent":"K35","ID":32815,"Name":"Lord Lord Franek .#134","PlayerID":698420691,"Points":7389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32815","ServerKey":"pl181","X":519,"Y":328},{"Bonus":0,"Continent":"K35","ID":32817,"Name":"012","PlayerID":7340529,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32817","ServerKey":"pl181","X":591,"Y":351},{"Bonus":0,"Continent":"K65","ID":32818,"Name":"0444","PlayerID":698659980,"Points":8776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32818","ServerKey":"pl181","X":559,"Y":670},{"Bonus":0,"Continent":"K53","ID":32819,"Name":"(011)Panatham","PlayerID":849098695,"Points":8946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32819","ServerKey":"pl181","X":332,"Y":567},{"Bonus":0,"Continent":"K56","ID":32820,"Name":"_PUSTA","PlayerID":698768565,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32820","ServerKey":"pl181","X":650,"Y":591},{"Bonus":0,"Continent":"K35","ID":32821,"Name":"002 Rabarbarum","PlayerID":699576407,"Points":7505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32821","ServerKey":"pl181","X":592,"Y":343},{"Bonus":0,"Continent":"K43","ID":32822,"Name":"Brat447","PlayerID":699262350,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32822","ServerKey":"pl181","X":391,"Y":499},{"Bonus":0,"Continent":"K43","ID":32823,"Name":"006","PlayerID":7127455,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32823","ServerKey":"pl181","X":322,"Y":476},{"Bonus":0,"Continent":"K46","ID":32824,"Name":"025 gĂłra","PlayerID":9238175,"Points":10508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32824","ServerKey":"pl181","X":661,"Y":433},{"Bonus":0,"Continent":"K34","ID":32825,"Name":"#0122 tomek791103","PlayerID":1238300,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32825","ServerKey":"pl181","X":480,"Y":319},{"Bonus":0,"Continent":"K33","ID":32826,"Name":"ZachĂłd 002","PlayerID":8967440,"Points":3516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32826","ServerKey":"pl181","X":369,"Y":387},{"Bonus":0,"Continent":"K34","ID":32827,"Name":"#0113 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32827","ServerKey":"pl181","X":477,"Y":322},{"Bonus":0,"Continent":"K56","ID":32828,"Name":"Wioska Sir Zordon","PlayerID":478956,"Points":8909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32828","ServerKey":"pl181","X":665,"Y":574},{"Bonus":0,"Continent":"K35","ID":32829,"Name":"krytl01","PlayerID":1990750,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32829","ServerKey":"pl181","X":510,"Y":319},{"Bonus":6,"Continent":"K64","ID":32830,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32830","ServerKey":"pl181","X":464,"Y":673},{"Bonus":0,"Continent":"K35","ID":32831,"Name":"Wioska JasJ","PlayerID":7560474,"Points":11083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32831","ServerKey":"pl181","X":573,"Y":341},{"Bonus":0,"Continent":"K56","ID":32832,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":8315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32832","ServerKey":"pl181","X":675,"Y":538},{"Bonus":0,"Continent":"K43","ID":32833,"Name":"*059*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32833","ServerKey":"pl181","X":350,"Y":410},{"Bonus":0,"Continent":"K65","ID":32834,"Name":"Wioska r 10","PlayerID":848915531,"Points":4257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32834","ServerKey":"pl181","X":557,"Y":671},{"Bonus":0,"Continent":"K65","ID":32835,"Name":"- 295 - SS","PlayerID":849018239,"Points":8542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32835","ServerKey":"pl181","X":544,"Y":677},{"Bonus":0,"Continent":"K43","ID":32836,"Name":"Wioska barbarzyƄska","PlayerID":699323302,"Points":2403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32836","ServerKey":"pl181","X":353,"Y":402},{"Bonus":0,"Continent":"K65","ID":32837,"Name":"- 291- SS","PlayerID":849018239,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32837","ServerKey":"pl181","X":544,"Y":675},{"Bonus":0,"Continent":"K56","ID":32838,"Name":"Wioska Sir Zordon 003","PlayerID":478956,"Points":7431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32838","ServerKey":"pl181","X":664,"Y":576},{"Bonus":0,"Continent":"K36","ID":32839,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32839","ServerKey":"pl181","X":640,"Y":394},{"Bonus":0,"Continent":"K35","ID":32840,"Name":"AAA","PlayerID":1006847,"Points":7040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32840","ServerKey":"pl181","X":530,"Y":321},{"Bonus":0,"Continent":"K35","ID":32841,"Name":"32. Sophisticated","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32841","ServerKey":"pl181","X":557,"Y":330},{"Bonus":0,"Continent":"K63","ID":32842,"Name":"A 052","PlayerID":699342219,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32842","ServerKey":"pl181","X":369,"Y":625},{"Bonus":0,"Continent":"K35","ID":32843,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32843","ServerKey":"pl181","X":554,"Y":332},{"Bonus":0,"Continent":"K56","ID":32844,"Name":"054. Eldor","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32844","ServerKey":"pl181","X":657,"Y":590},{"Bonus":0,"Continent":"K43","ID":32845,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":8748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32845","ServerKey":"pl181","X":322,"Y":477},{"Bonus":0,"Continent":"K66","ID":32846,"Name":"Freytaga II","PlayerID":2269943,"Points":8124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32846","ServerKey":"pl181","X":641,"Y":609},{"Bonus":0,"Continent":"K65","ID":32847,"Name":"2.Leganes","PlayerID":698215322,"Points":5004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32847","ServerKey":"pl181","X":563,"Y":668},{"Bonus":0,"Continent":"K36","ID":32848,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32848","ServerKey":"pl181","X":640,"Y":397},{"Bonus":0,"Continent":"K36","ID":32849,"Name":"Wioska barbarzyƄska","PlayerID":699837826,"Points":3403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32849","ServerKey":"pl181","X":629,"Y":380},{"Bonus":0,"Continent":"K63","ID":32850,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32850","ServerKey":"pl181","X":350,"Y":603},{"Bonus":0,"Continent":"K34","ID":32851,"Name":"MMMMMM","PlayerID":698239813,"Points":10340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32851","ServerKey":"pl181","X":490,"Y":324},{"Bonus":0,"Continent":"K56","ID":32852,"Name":"Grvvyq 108k$","PlayerID":699676005,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32852","ServerKey":"pl181","X":680,"Y":530},{"Bonus":0,"Continent":"K64","ID":32853,"Name":"D.005","PlayerID":849088243,"Points":8503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32853","ServerKey":"pl181","X":403,"Y":648},{"Bonus":0,"Continent":"K46","ID":32854,"Name":"046 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32854","ServerKey":"pl181","X":657,"Y":419},{"Bonus":0,"Continent":"K53","ID":32855,"Name":"Taran","PlayerID":6180190,"Points":9328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32855","ServerKey":"pl181","X":344,"Y":580},{"Bonus":0,"Continent":"K43","ID":32857,"Name":"Westfold.019","PlayerID":848918380,"Points":8642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32857","ServerKey":"pl181","X":336,"Y":428},{"Bonus":0,"Continent":"K64","ID":32858,"Name":"R 018 ~Morthal~","PlayerID":699195358,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32858","ServerKey":"pl181","X":487,"Y":675},{"Bonus":0,"Continent":"K65","ID":32859,"Name":"107","PlayerID":849097799,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32859","ServerKey":"pl181","X":593,"Y":649},{"Bonus":0,"Continent":"K35","ID":32860,"Name":"Pikachu","PlayerID":849098136,"Points":5708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32860","ServerKey":"pl181","X":550,"Y":327},{"Bonus":0,"Continent":"K46","ID":32862,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32862","ServerKey":"pl181","X":675,"Y":476},{"Bonus":0,"Continent":"K64","ID":32863,"Name":"A001","PlayerID":8954402,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32863","ServerKey":"pl181","X":492,"Y":678},{"Bonus":0,"Continent":"K34","ID":32864,"Name":"#0095 barbarzyƄska","PlayerID":1238300,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32864","ServerKey":"pl181","X":472,"Y":329},{"Bonus":0,"Continent":"K65","ID":32865,"Name":"Tykocin","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32865","ServerKey":"pl181","X":576,"Y":658},{"Bonus":0,"Continent":"K64","ID":32866,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32866","ServerKey":"pl181","X":419,"Y":656},{"Bonus":0,"Continent":"K56","ID":32867,"Name":"Wioska Brzydal 3-5","PlayerID":9151549,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32867","ServerKey":"pl181","X":669,"Y":553},{"Bonus":0,"Continent":"K63","ID":32868,"Name":"DejMon4","PlayerID":699805839,"Points":9715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32868","ServerKey":"pl181","X":366,"Y":622},{"Bonus":0,"Continent":"K33","ID":32869,"Name":"Szlachcic","PlayerID":698160606,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32869","ServerKey":"pl181","X":383,"Y":366},{"Bonus":0,"Continent":"K63","ID":32870,"Name":"DejMon","PlayerID":699805839,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32870","ServerKey":"pl181","X":371,"Y":620},{"Bonus":0,"Continent":"K43","ID":32871,"Name":"Wioska","PlayerID":848946608,"Points":2846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32871","ServerKey":"pl181","X":327,"Y":454},{"Bonus":0,"Continent":"K43","ID":32872,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32872","ServerKey":"pl181","X":329,"Y":454},{"Bonus":0,"Continent":"K64","ID":32873,"Name":"Ave Why!","PlayerID":698585370,"Points":9085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32873","ServerKey":"pl181","X":445,"Y":672},{"Bonus":0,"Continent":"K65","ID":32874,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32874","ServerKey":"pl181","X":517,"Y":679},{"Bonus":0,"Continent":"K33","ID":32875,"Name":"Szlachcic","PlayerID":3484132,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32875","ServerKey":"pl181","X":398,"Y":355},{"Bonus":0,"Continent":"K35","ID":32876,"Name":"Wioska b1","PlayerID":6118079,"Points":7616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32876","ServerKey":"pl181","X":503,"Y":317},{"Bonus":0,"Continent":"K56","ID":32877,"Name":"004 Wioska barbarzyƄska","PlayerID":6409472,"Points":4488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32877","ServerKey":"pl181","X":606,"Y":505},{"Bonus":0,"Continent":"K64","ID":32878,"Name":"02.Twoje Offy","PlayerID":361125,"Points":3786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32878","ServerKey":"pl181","X":448,"Y":670},{"Bonus":0,"Continent":"K35","ID":32879,"Name":"TAKE It","PlayerID":699710633,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32879","ServerKey":"pl181","X":578,"Y":338},{"Bonus":0,"Continent":"K63","ID":32880,"Name":"A 006","PlayerID":699342219,"Points":8643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32880","ServerKey":"pl181","X":366,"Y":619},{"Bonus":0,"Continent":"K64","ID":32881,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":5902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32881","ServerKey":"pl181","X":408,"Y":649},{"Bonus":0,"Continent":"K63","ID":32882,"Name":"Niby 02","PlayerID":8607734,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32882","ServerKey":"pl181","X":355,"Y":602},{"Bonus":0,"Continent":"K65","ID":32883,"Name":"- 255 - SS","PlayerID":849018239,"Points":8132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32883","ServerKey":"pl181","X":537,"Y":676},{"Bonus":0,"Continent":"K33","ID":32884,"Name":"Szlachcic","PlayerID":698160606,"Points":10675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32884","ServerKey":"pl181","X":382,"Y":366},{"Bonus":0,"Continent":"K63","ID":32885,"Name":"038 Boru1996 #2","PlayerID":6354098,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32885","ServerKey":"pl181","X":375,"Y":630},{"Bonus":0,"Continent":"K34","ID":32886,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":5191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32886","ServerKey":"pl181","X":460,"Y":325},{"Bonus":0,"Continent":"K35","ID":32887,"Name":"AAA","PlayerID":1006847,"Points":9246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32887","ServerKey":"pl181","X":536,"Y":324},{"Bonus":0,"Continent":"K46","ID":32888,"Name":"BB1","PlayerID":1086351,"Points":4535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32888","ServerKey":"pl181","X":650,"Y":409},{"Bonus":0,"Continent":"K64","ID":32889,"Name":":::2:::Koniki","PlayerID":699827112,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32889","ServerKey":"pl181","X":450,"Y":667},{"Bonus":0,"Continent":"K65","ID":32890,"Name":"#104 C","PlayerID":9037756,"Points":8821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32890","ServerKey":"pl181","X":529,"Y":672},{"Bonus":0,"Continent":"K34","ID":32891,"Name":"053","PlayerID":2502956,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32891","ServerKey":"pl181","X":458,"Y":329},{"Bonus":0,"Continent":"K34","ID":32892,"Name":"224","PlayerID":7271812,"Points":7492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32892","ServerKey":"pl181","X":420,"Y":337},{"Bonus":0,"Continent":"K35","ID":32893,"Name":"Wioska 3","PlayerID":7560474,"Points":6320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32893","ServerKey":"pl181","X":574,"Y":334},{"Bonus":0,"Continent":"K63","ID":32894,"Name":"004 LordDaymon","PlayerID":6354098,"Points":9330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32894","ServerKey":"pl181","X":378,"Y":630},{"Bonus":0,"Continent":"K35","ID":32895,"Name":"-009-","PlayerID":698588812,"Points":3305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32895","ServerKey":"pl181","X":541,"Y":325},{"Bonus":0,"Continent":"K65","ID":32896,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32896","ServerKey":"pl181","X":521,"Y":678},{"Bonus":0,"Continent":"K35","ID":32897,"Name":"Wioska #1","PlayerID":849063793,"Points":3759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32897","ServerKey":"pl181","X":589,"Y":344},{"Bonus":0,"Continent":"K33","ID":32899,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":6281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32899","ServerKey":"pl181","X":359,"Y":398},{"Bonus":0,"Continent":"K43","ID":32900,"Name":"*062*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32900","ServerKey":"pl181","X":349,"Y":412},{"Bonus":0,"Continent":"K36","ID":32901,"Name":"030.","PlayerID":698361257,"Points":3976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32901","ServerKey":"pl181","X":633,"Y":378},{"Bonus":0,"Continent":"K34","ID":32902,"Name":"#0049 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32902","ServerKey":"pl181","X":470,"Y":329},{"Bonus":0,"Continent":"K46","ID":32903,"Name":"Brickstone","PlayerID":1086351,"Points":2647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32903","ServerKey":"pl181","X":647,"Y":404},{"Bonus":0,"Continent":"K43","ID":32904,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32904","ServerKey":"pl181","X":325,"Y":471},{"Bonus":0,"Continent":"K63","ID":32905,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32905","ServerKey":"pl181","X":351,"Y":603},{"Bonus":0,"Continent":"K36","ID":32906,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32906","ServerKey":"pl181","X":639,"Y":383},{"Bonus":0,"Continent":"K65","ID":32907,"Name":"AdamĂłw","PlayerID":698723158,"Points":8102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32907","ServerKey":"pl181","X":568,"Y":665},{"Bonus":0,"Continent":"K66","ID":32908,"Name":"Maradonna","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32908","ServerKey":"pl181","X":623,"Y":625},{"Bonus":0,"Continent":"K46","ID":32909,"Name":"I006","PlayerID":699722599,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32909","ServerKey":"pl181","X":666,"Y":448},{"Bonus":0,"Continent":"K64","ID":32910,"Name":"Psycha Siada","PlayerID":698807570,"Points":5579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32910","ServerKey":"pl181","X":445,"Y":669},{"Bonus":0,"Continent":"K34","ID":32911,"Name":"Wioska ba15","PlayerID":6118079,"Points":7021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32911","ServerKey":"pl181","X":496,"Y":324},{"Bonus":0,"Continent":"K43","ID":32912,"Name":"Guru18","PlayerID":849098192,"Points":6610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32912","ServerKey":"pl181","X":332,"Y":431},{"Bonus":0,"Continent":"K33","ID":32913,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":3812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32913","ServerKey":"pl181","X":376,"Y":374},{"Bonus":0,"Continent":"K43","ID":32914,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32914","ServerKey":"pl181","X":322,"Y":469},{"Bonus":0,"Continent":"K43","ID":32916,"Name":"02. Novigrad","PlayerID":848910122,"Points":10539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32916","ServerKey":"pl181","X":331,"Y":449},{"Bonus":0,"Continent":"K64","ID":32917,"Name":"Barba","PlayerID":849089459,"Points":3741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32917","ServerKey":"pl181","X":414,"Y":660},{"Bonus":0,"Continent":"K43","ID":32918,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32918","ServerKey":"pl181","X":351,"Y":407},{"Bonus":0,"Continent":"K34","ID":32919,"Name":"021","PlayerID":849010255,"Points":8696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32919","ServerKey":"pl181","X":483,"Y":372},{"Bonus":0,"Continent":"K63","ID":32920,"Name":"030 Maaooooo!","PlayerID":6354098,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32920","ServerKey":"pl181","X":383,"Y":633},{"Bonus":0,"Continent":"K33","ID":32921,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32921","ServerKey":"pl181","X":392,"Y":353},{"Bonus":0,"Continent":"K64","ID":32922,"Name":"A14","PlayerID":698652014,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32922","ServerKey":"pl181","X":466,"Y":674},{"Bonus":2,"Continent":"K46","ID":32923,"Name":"Osada koczownikĂłw","PlayerID":699574408,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32923","ServerKey":"pl181","X":675,"Y":479},{"Bonus":0,"Continent":"K35","ID":32924,"Name":"Pretoria 3","PlayerID":699072129,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32924","ServerKey":"pl181","X":558,"Y":332},{"Bonus":0,"Continent":"K54","ID":32925,"Name":"043","PlayerID":698290577,"Points":876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32925","ServerKey":"pl181","X":449,"Y":548},{"Bonus":0,"Continent":"K53","ID":32926,"Name":"C0027","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32926","ServerKey":"pl181","X":320,"Y":515},{"Bonus":0,"Continent":"K46","ID":32927,"Name":"046 Numer","PlayerID":9238175,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32927","ServerKey":"pl181","X":658,"Y":420},{"Bonus":0,"Continent":"K45","ID":32928,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32928","ServerKey":"pl181","X":518,"Y":490},{"Bonus":0,"Continent":"K43","ID":32930,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32930","ServerKey":"pl181","X":342,"Y":424},{"Bonus":0,"Continent":"K46","ID":32932,"Name":"056 Wioska 001","PlayerID":9238175,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32932","ServerKey":"pl181","X":659,"Y":418},{"Bonus":0,"Continent":"K35","ID":32933,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32933","ServerKey":"pl181","X":557,"Y":331},{"Bonus":0,"Continent":"K65","ID":32934,"Name":"060","PlayerID":2293376,"Points":9651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32934","ServerKey":"pl181","X":530,"Y":679},{"Bonus":0,"Continent":"K53","ID":32935,"Name":"C0071","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32935","ServerKey":"pl181","X":322,"Y":514},{"Bonus":0,"Continent":"K43","ID":32936,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32936","ServerKey":"pl181","X":320,"Y":489},{"Bonus":0,"Continent":"K53","ID":32937,"Name":"Komornik 005","PlayerID":698290577,"Points":6305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32937","ServerKey":"pl181","X":326,"Y":537},{"Bonus":0,"Continent":"K33","ID":32939,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32939","ServerKey":"pl181","X":383,"Y":362},{"Bonus":0,"Continent":"K35","ID":32941,"Name":"Lord Lord Franek .#135","PlayerID":698420691,"Points":8140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32941","ServerKey":"pl181","X":527,"Y":321},{"Bonus":0,"Continent":"K56","ID":32942,"Name":"0011 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32942","ServerKey":"pl181","X":614,"Y":556},{"Bonus":0,"Continent":"K64","ID":32943,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32943","ServerKey":"pl181","X":438,"Y":671},{"Bonus":0,"Continent":"K53","ID":32945,"Name":"Lin","PlayerID":699265922,"Points":7729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32945","ServerKey":"pl181","X":330,"Y":550},{"Bonus":7,"Continent":"K64","ID":32946,"Name":"Osada koczownikĂłw","PlayerID":699736927,"Points":6184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32946","ServerKey":"pl181","X":403,"Y":654},{"Bonus":0,"Continent":"K56","ID":32947,"Name":"Did","PlayerID":849070946,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32947","ServerKey":"pl181","X":669,"Y":562},{"Bonus":0,"Continent":"K65","ID":32948,"Name":"0307","PlayerID":698659980,"Points":9015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32948","ServerKey":"pl181","X":552,"Y":675},{"Bonus":0,"Continent":"K66","ID":32949,"Name":"ZUBRAWKA 052 pinkolinka","PlayerID":33900,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32949","ServerKey":"pl181","X":615,"Y":637},{"Bonus":0,"Continent":"K43","ID":32950,"Name":"New Land 23","PlayerID":849064752,"Points":2456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32950","ServerKey":"pl181","X":344,"Y":413},{"Bonus":0,"Continent":"K35","ID":32951,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32951","ServerKey":"pl181","X":589,"Y":351},{"Bonus":0,"Continent":"K56","ID":32952,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32952","ServerKey":"pl181","X":639,"Y":526},{"Bonus":0,"Continent":"K66","ID":32953,"Name":"Ć»ubr .::. Metanol Lecter/6","PlayerID":33900,"Points":8167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32953","ServerKey":"pl181","X":610,"Y":637},{"Bonus":3,"Continent":"K34","ID":32954,"Name":"#0185 KacperII","PlayerID":1238300,"Points":5732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32954","ServerKey":"pl181","X":466,"Y":322},{"Bonus":0,"Continent":"K33","ID":32955,"Name":"*220*","PlayerID":699273451,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32955","ServerKey":"pl181","X":370,"Y":376},{"Bonus":0,"Continent":"K34","ID":32956,"Name":"188...Segador M","PlayerID":6920960,"Points":9337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32956","ServerKey":"pl181","X":445,"Y":329},{"Bonus":0,"Continent":"K64","ID":32957,"Name":"029.xxx","PlayerID":699393742,"Points":7869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32957","ServerKey":"pl181","X":494,"Y":677},{"Bonus":0,"Continent":"K56","ID":32958,"Name":"[020]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32958","ServerKey":"pl181","X":635,"Y":529},{"Bonus":0,"Continent":"K43","ID":32959,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":5223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32959","ServerKey":"pl181","X":325,"Y":499},{"Bonus":0,"Continent":"K36","ID":32960,"Name":"Wioska barbarzyƄska","PlayerID":699857387,"Points":6705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32960","ServerKey":"pl181","X":620,"Y":366},{"Bonus":0,"Continent":"K53","ID":32961,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32961","ServerKey":"pl181","X":344,"Y":592},{"Bonus":0,"Continent":"K65","ID":32962,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32962","ServerKey":"pl181","X":503,"Y":678},{"Bonus":0,"Continent":"K46","ID":32963,"Name":"005","PlayerID":7085502,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32963","ServerKey":"pl181","X":676,"Y":486},{"Bonus":0,"Continent":"K56","ID":32964,"Name":"Wioska 060","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32964","ServerKey":"pl181","X":652,"Y":595},{"Bonus":0,"Continent":"K46","ID":32965,"Name":"Centrum 7","PlayerID":1086351,"Points":2925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32965","ServerKey":"pl181","X":648,"Y":408},{"Bonus":0,"Continent":"K56","ID":32966,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32966","ServerKey":"pl181","X":641,"Y":531},{"Bonus":0,"Continent":"K43","ID":32968,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32968","ServerKey":"pl181","X":318,"Y":488},{"Bonus":0,"Continent":"K35","ID":32969,"Name":"TWIERDZA #4","PlayerID":849063793,"Points":3997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32969","ServerKey":"pl181","X":584,"Y":341},{"Bonus":0,"Continent":"K34","ID":32970,"Name":"100...tomecz","PlayerID":6920960,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32970","ServerKey":"pl181","X":481,"Y":322},{"Bonus":0,"Continent":"K63","ID":32971,"Name":"DejMon8","PlayerID":699805839,"Points":4298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32971","ServerKey":"pl181","X":366,"Y":623},{"Bonus":0,"Continent":"K36","ID":32972,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32972","ServerKey":"pl181","X":633,"Y":380},{"Bonus":0,"Continent":"K64","ID":32973,"Name":"Psycha Siada","PlayerID":698807570,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32973","ServerKey":"pl181","X":440,"Y":669},{"Bonus":0,"Continent":"K35","ID":32974,"Name":"J#021","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32974","ServerKey":"pl181","X":582,"Y":339},{"Bonus":0,"Continent":"K43","ID":32975,"Name":"*049*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32975","ServerKey":"pl181","X":350,"Y":400},{"Bonus":0,"Continent":"K33","ID":32976,"Name":"*050*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32976","ServerKey":"pl181","X":360,"Y":393},{"Bonus":0,"Continent":"K34","ID":32977,"Name":"104.Stradi","PlayerID":698365960,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32977","ServerKey":"pl181","X":455,"Y":327},{"Bonus":0,"Continent":"K66","ID":32978,"Name":"A042","PlayerID":9023703,"Points":8730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32978","ServerKey":"pl181","X":609,"Y":645},{"Bonus":0,"Continent":"K33","ID":32979,"Name":"*042*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32979","ServerKey":"pl181","X":359,"Y":390},{"Bonus":0,"Continent":"K34","ID":32980,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32980","ServerKey":"pl181","X":495,"Y":326},{"Bonus":0,"Continent":"K66","ID":32981,"Name":"Wioska barbarzyƄska x","PlayerID":1900364,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32981","ServerKey":"pl181","X":650,"Y":602},{"Bonus":0,"Continent":"K43","ID":32982,"Name":"Out of Touch","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32982","ServerKey":"pl181","X":329,"Y":444},{"Bonus":0,"Continent":"K36","ID":32984,"Name":"Lord Lord Franek .#194","PlayerID":698420691,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32984","ServerKey":"pl181","X":611,"Y":358},{"Bonus":0,"Continent":"K64","ID":32985,"Name":"Mekka","PlayerID":849089459,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32985","ServerKey":"pl181","X":475,"Y":656},{"Bonus":0,"Continent":"K33","ID":32986,"Name":"*217*","PlayerID":699273451,"Points":6467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32986","ServerKey":"pl181","X":370,"Y":377},{"Bonus":0,"Continent":"K56","ID":32987,"Name":"Didek","PlayerID":849070946,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32987","ServerKey":"pl181","X":667,"Y":559},{"Bonus":0,"Continent":"K35","ID":32988,"Name":"AAA","PlayerID":1006847,"Points":7595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32988","ServerKey":"pl181","X":536,"Y":326},{"Bonus":0,"Continent":"K63","ID":32989,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32989","ServerKey":"pl181","X":351,"Y":600},{"Bonus":0,"Continent":"K65","ID":32990,"Name":"Wioska r 6","PlayerID":848915531,"Points":5474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32990","ServerKey":"pl181","X":560,"Y":668},{"Bonus":0,"Continent":"K64","ID":32991,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32991","ServerKey":"pl181","X":431,"Y":671},{"Bonus":0,"Continent":"K35","ID":32992,"Name":"AAA","PlayerID":1006847,"Points":6512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32992","ServerKey":"pl181","X":537,"Y":323},{"Bonus":0,"Continent":"K66","ID":32993,"Name":"026","PlayerID":849097799,"Points":7478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32993","ServerKey":"pl181","X":609,"Y":639},{"Bonus":0,"Continent":"K64","ID":32994,"Name":"020","PlayerID":699736927,"Points":6365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32994","ServerKey":"pl181","X":411,"Y":657},{"Bonus":0,"Continent":"K46","ID":32995,"Name":"[018] Hans Klop s","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32995","ServerKey":"pl181","X":665,"Y":438},{"Bonus":0,"Continent":"K64","ID":32996,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32996","ServerKey":"pl181","X":419,"Y":661},{"Bonus":0,"Continent":"K36","ID":32997,"Name":"Vanaheim","PlayerID":699837826,"Points":10310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32997","ServerKey":"pl181","X":626,"Y":377},{"Bonus":0,"Continent":"K43","ID":32998,"Name":"*163*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32998","ServerKey":"pl181","X":345,"Y":411},{"Bonus":0,"Continent":"K35","ID":32999,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=32999","ServerKey":"pl181","X":523,"Y":320},{"Bonus":0,"Continent":"K63","ID":33000,"Name":"Mroczny Zamek 019","PlayerID":699269923,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33000","ServerKey":"pl181","X":384,"Y":640},{"Bonus":0,"Continent":"K33","ID":33001,"Name":"cz 110 3","PlayerID":3909522,"Points":8456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33001","ServerKey":"pl181","X":369,"Y":379},{"Bonus":0,"Continent":"K33","ID":33002,"Name":"zachod 002","PlayerID":8967440,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33002","ServerKey":"pl181","X":369,"Y":383},{"Bonus":0,"Continent":"K66","ID":33003,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33003","ServerKey":"pl181","X":622,"Y":629},{"Bonus":0,"Continent":"K46","ID":33004,"Name":"0006","PlayerID":699574408,"Points":9391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33004","ServerKey":"pl181","X":673,"Y":465},{"Bonus":0,"Continent":"K46","ID":33005,"Name":"59. KaruTown","PlayerID":9238175,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33005","ServerKey":"pl181","X":662,"Y":433},{"Bonus":0,"Continent":"K46","ID":33006,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33006","ServerKey":"pl181","X":676,"Y":489},{"Bonus":0,"Continent":"K66","ID":33008,"Name":"Bunkier 007","PlayerID":699778867,"Points":6253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33008","ServerKey":"pl181","X":621,"Y":625},{"Bonus":0,"Continent":"K56","ID":33009,"Name":"Liniewo","PlayerID":849039310,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33009","ServerKey":"pl181","X":656,"Y":589},{"Bonus":0,"Continent":"K46","ID":33010,"Name":"Gold dream","PlayerID":1086351,"Points":4052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33010","ServerKey":"pl181","X":647,"Y":403},{"Bonus":0,"Continent":"K35","ID":33012,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33012","ServerKey":"pl181","X":518,"Y":324},{"Bonus":9,"Continent":"K36","ID":33013,"Name":"=|27|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33013","ServerKey":"pl181","X":641,"Y":389},{"Bonus":0,"Continent":"K56","ID":33014,"Name":"056","PlayerID":699413040,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33014","ServerKey":"pl181","X":676,"Y":501},{"Bonus":0,"Continent":"K65","ID":33015,"Name":"041","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33015","ServerKey":"pl181","X":535,"Y":671},{"Bonus":0,"Continent":"K56","ID":33016,"Name":"WschĂłd Droga 009","PlayerID":698562644,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33016","ServerKey":"pl181","X":673,"Y":556},{"Bonus":0,"Continent":"K64","ID":33017,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33017","ServerKey":"pl181","X":465,"Y":673},{"Bonus":0,"Continent":"K65","ID":33018,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33018","ServerKey":"pl181","X":505,"Y":680},{"Bonus":0,"Continent":"K35","ID":33019,"Name":"Lord Lord Franek .#186","PlayerID":698420691,"Points":11489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33019","ServerKey":"pl181","X":545,"Y":330},{"Bonus":0,"Continent":"K46","ID":33020,"Name":"I039","PlayerID":699722599,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33020","ServerKey":"pl181","X":669,"Y":454},{"Bonus":0,"Continent":"K34","ID":33021,"Name":"[B]_[018] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33021","ServerKey":"pl181","X":421,"Y":342},{"Bonus":0,"Continent":"K34","ID":33022,"Name":"220","PlayerID":7271812,"Points":6431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33022","ServerKey":"pl181","X":427,"Y":336},{"Bonus":0,"Continent":"K34","ID":33024,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33024","ServerKey":"pl181","X":430,"Y":335},{"Bonus":5,"Continent":"K35","ID":33027,"Name":"J#023","PlayerID":2065730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33027","ServerKey":"pl181","X":573,"Y":338},{"Bonus":3,"Continent":"K65","ID":33029,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33029","ServerKey":"pl181","X":503,"Y":676},{"Bonus":0,"Continent":"K46","ID":33030,"Name":"#046.521|496","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33030","ServerKey":"pl181","X":640,"Y":447},{"Bonus":0,"Continent":"K34","ID":33031,"Name":"#0190 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33031","ServerKey":"pl181","X":460,"Y":328},{"Bonus":0,"Continent":"K66","ID":33032,"Name":"05 BorĂłwka","PlayerID":8224678,"Points":2020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33032","ServerKey":"pl181","X":646,"Y":605},{"Bonus":0,"Continent":"K34","ID":33034,"Name":"A-049-Heffitto","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33034","ServerKey":"pl181","X":403,"Y":348},{"Bonus":0,"Continent":"K35","ID":33035,"Name":"Wioska VIII","PlayerID":698200480,"Points":6874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33035","ServerKey":"pl181","X":582,"Y":346},{"Bonus":0,"Continent":"K66","ID":33036,"Name":"Ć»UBRAWKA 054","PlayerID":33900,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33036","ServerKey":"pl181","X":612,"Y":643},{"Bonus":0,"Continent":"K36","ID":33037,"Name":"BACÓWKA |038|","PlayerID":7394371,"Points":11307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33037","ServerKey":"pl181","X":634,"Y":395},{"Bonus":0,"Continent":"K65","ID":33038,"Name":"Wioska0","PlayerID":699567608,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33038","ServerKey":"pl181","X":578,"Y":659},{"Bonus":0,"Continent":"K63","ID":33039,"Name":"A 013","PlayerID":699342219,"Points":6395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33039","ServerKey":"pl181","X":369,"Y":620},{"Bonus":0,"Continent":"K53","ID":33041,"Name":"Wonderwall","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33041","ServerKey":"pl181","X":325,"Y":550},{"Bonus":0,"Continent":"K33","ID":33042,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33042","ServerKey":"pl181","X":396,"Y":356},{"Bonus":0,"Continent":"K36","ID":33043,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33043","ServerKey":"pl181","X":639,"Y":393},{"Bonus":0,"Continent":"K53","ID":33044,"Name":"071 komornicy","PlayerID":699510259,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33044","ServerKey":"pl181","X":326,"Y":547},{"Bonus":0,"Continent":"K43","ID":33045,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33045","ServerKey":"pl181","X":323,"Y":478},{"Bonus":0,"Continent":"K46","ID":33046,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33046","ServerKey":"pl181","X":679,"Y":472},{"Bonus":0,"Continent":"K34","ID":33048,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33048","ServerKey":"pl181","X":436,"Y":336},{"Bonus":0,"Continent":"K64","ID":33049,"Name":"A002","PlayerID":8954402,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33049","ServerKey":"pl181","X":491,"Y":677},{"Bonus":0,"Continent":"K64","ID":33050,"Name":"Psycha Siada","PlayerID":698807570,"Points":8160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33050","ServerKey":"pl181","X":449,"Y":667},{"Bonus":0,"Continent":"K53","ID":33051,"Name":"Pluszaki","PlayerID":698338524,"Points":5828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33051","ServerKey":"pl181","X":325,"Y":536},{"Bonus":0,"Continent":"K64","ID":33052,"Name":"Ave Why!","PlayerID":698585370,"Points":4975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33052","ServerKey":"pl181","X":449,"Y":674},{"Bonus":0,"Continent":"K46","ID":33053,"Name":"48. KaruTown","PlayerID":699491076,"Points":7971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33053","ServerKey":"pl181","X":642,"Y":400},{"Bonus":0,"Continent":"K36","ID":33054,"Name":"020 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33054","ServerKey":"pl181","X":646,"Y":394},{"Bonus":0,"Continent":"K33","ID":33055,"Name":"*071*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33055","ServerKey":"pl181","X":360,"Y":387},{"Bonus":0,"Continent":"K63","ID":33056,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33056","ServerKey":"pl181","X":396,"Y":645},{"Bonus":0,"Continent":"K46","ID":33057,"Name":"**42**","PlayerID":849098782,"Points":8347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33057","ServerKey":"pl181","X":672,"Y":443},{"Bonus":0,"Continent":"K46","ID":33058,"Name":"098. Heraclea","PlayerID":849091866,"Points":5194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33058","ServerKey":"pl181","X":657,"Y":409},{"Bonus":0,"Continent":"K43","ID":33059,"Name":"*058*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33059","ServerKey":"pl181","X":357,"Y":400},{"Bonus":0,"Continent":"K53","ID":33060,"Name":"Taran","PlayerID":6180190,"Points":9343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33060","ServerKey":"pl181","X":342,"Y":575},{"Bonus":0,"Continent":"K33","ID":33061,"Name":"Szlachcic","PlayerID":3484132,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33061","ServerKey":"pl181","X":391,"Y":356},{"Bonus":9,"Continent":"K64","ID":33062,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":5279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33062","ServerKey":"pl181","X":463,"Y":672},{"Bonus":0,"Continent":"K43","ID":33063,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33063","ServerKey":"pl181","X":323,"Y":472},{"Bonus":0,"Continent":"K43","ID":33064,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33064","ServerKey":"pl181","X":320,"Y":474},{"Bonus":0,"Continent":"K65","ID":33065,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33065","ServerKey":"pl181","X":513,"Y":676},{"Bonus":0,"Continent":"K64","ID":33066,"Name":"New World","PlayerID":698152377,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33066","ServerKey":"pl181","X":493,"Y":675},{"Bonus":0,"Continent":"K66","ID":33067,"Name":"#053#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33067","ServerKey":"pl181","X":626,"Y":626},{"Bonus":0,"Continent":"K35","ID":33068,"Name":"AAA","PlayerID":1006847,"Points":6720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33068","ServerKey":"pl181","X":535,"Y":321},{"Bonus":0,"Continent":"K53","ID":33069,"Name":"--19--","PlayerID":8877156,"Points":7537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33069","ServerKey":"pl181","X":348,"Y":591},{"Bonus":0,"Continent":"K36","ID":33070,"Name":"014 .2. Infanterie-Division","PlayerID":849091899,"Points":3878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33070","ServerKey":"pl181","X":606,"Y":354},{"Bonus":0,"Continent":"K56","ID":33071,"Name":"D03","PlayerID":848995478,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33071","ServerKey":"pl181","X":667,"Y":553},{"Bonus":0,"Continent":"K46","ID":33072,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33072","ServerKey":"pl181","X":679,"Y":471},{"Bonus":0,"Continent":"K65","ID":33073,"Name":"dalej nie idę !!!","PlayerID":848995242,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33073","ServerKey":"pl181","X":590,"Y":655},{"Bonus":0,"Continent":"K64","ID":33074,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":5908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33074","ServerKey":"pl181","X":419,"Y":663},{"Bonus":0,"Continent":"K63","ID":33075,"Name":"031 Czemu mnie maszyna stoi?","PlayerID":6354098,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33075","ServerKey":"pl181","X":383,"Y":632},{"Bonus":0,"Continent":"K35","ID":33076,"Name":"Lord Lord Franek .#108","PlayerID":698420691,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33076","ServerKey":"pl181","X":512,"Y":325},{"Bonus":0,"Continent":"K64","ID":33077,"Name":"0607","PlayerID":698659980,"Points":8795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33077","ServerKey":"pl181","X":481,"Y":678},{"Bonus":0,"Continent":"K46","ID":33078,"Name":"ABD","PlayerID":1086351,"Points":4282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33078","ServerKey":"pl181","X":660,"Y":412},{"Bonus":0,"Continent":"K63","ID":33079,"Name":"037 Boru1996","PlayerID":6354098,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33079","ServerKey":"pl181","X":374,"Y":630},{"Bonus":0,"Continent":"K64","ID":33081,"Name":"R 016 ~Samotnia~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33081","ServerKey":"pl181","X":483,"Y":678},{"Bonus":0,"Continent":"K45","ID":33082,"Name":"[334] Mroczna Myszka ZBUD","PlayerID":848985692,"Points":10530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33082","ServerKey":"pl181","X":584,"Y":424},{"Bonus":0,"Continent":"K64","ID":33083,"Name":"029. Night Raid-","PlayerID":699684062,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33083","ServerKey":"pl181","X":471,"Y":675},{"Bonus":0,"Continent":"K34","ID":33084,"Name":"[B]_[001] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33084","ServerKey":"pl181","X":422,"Y":344},{"Bonus":0,"Continent":"K35","ID":33085,"Name":"011","PlayerID":7340529,"Points":8855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33085","ServerKey":"pl181","X":592,"Y":351},{"Bonus":0,"Continent":"K65","ID":33086,"Name":"tego nie","PlayerID":699494488,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33086","ServerKey":"pl181","X":528,"Y":674},{"Bonus":0,"Continent":"K46","ID":33087,"Name":"096. Naissus","PlayerID":849091866,"Points":5716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33087","ServerKey":"pl181","X":656,"Y":409},{"Bonus":0,"Continent":"K46","ID":33088,"Name":"044 rychuzdk002","PlayerID":9238175,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33088","ServerKey":"pl181","X":659,"Y":420},{"Bonus":0,"Continent":"K43","ID":33089,"Name":"*260*","PlayerID":699273451,"Points":4394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33089","ServerKey":"pl181","X":333,"Y":437},{"Bonus":0,"Continent":"K64","ID":33090,"Name":"0609","PlayerID":698650301,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33090","ServerKey":"pl181","X":480,"Y":675},{"Bonus":0,"Continent":"K56","ID":33091,"Name":"TWIERDZA .:052:.","PlayerID":7154207,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33091","ServerKey":"pl181","X":668,"Y":561},{"Bonus":0,"Continent":"K66","ID":33092,"Name":"~~089~~","PlayerID":7829201,"Points":8837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33092","ServerKey":"pl181","X":634,"Y":618},{"Bonus":2,"Continent":"K64","ID":33093,"Name":"Theoden King","PlayerID":848896948,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33093","ServerKey":"pl181","X":460,"Y":676},{"Bonus":0,"Continent":"K46","ID":33094,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33094","ServerKey":"pl181","X":681,"Y":490},{"Bonus":0,"Continent":"K66","ID":33095,"Name":"BETON 070","PlayerID":699277039,"Points":4366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33095","ServerKey":"pl181","X":630,"Y":618},{"Bonus":0,"Continent":"K64","ID":33096,"Name":"|033| Macheria","PlayerID":698152377,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33096","ServerKey":"pl181","X":497,"Y":676},{"Bonus":0,"Continent":"K53","ID":33097,"Name":"C0274","PlayerID":8841266,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33097","ServerKey":"pl181","X":325,"Y":512},{"Bonus":0,"Continent":"K64","ID":33098,"Name":"Naggaroth","PlayerID":699736927,"Points":8506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33098","ServerKey":"pl181","X":413,"Y":653},{"Bonus":0,"Continent":"K44","ID":33099,"Name":"022","PlayerID":699510259,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33099","ServerKey":"pl181","X":430,"Y":491},{"Bonus":0,"Continent":"K64","ID":33100,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":4837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33100","ServerKey":"pl181","X":402,"Y":653},{"Bonus":0,"Continent":"K53","ID":33101,"Name":"Mietus","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33101","ServerKey":"pl181","X":324,"Y":547},{"Bonus":0,"Continent":"K46","ID":33102,"Name":"22. Szeksox 1","PlayerID":699804790,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33102","ServerKey":"pl181","X":678,"Y":478},{"Bonus":0,"Continent":"K35","ID":33103,"Name":"Lord Lord Franek .#187","PlayerID":698420691,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33103","ServerKey":"pl181","X":542,"Y":331},{"Bonus":0,"Continent":"K36","ID":33104,"Name":"pęczek drutu","PlayerID":1990750,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33104","ServerKey":"pl181","X":612,"Y":359},{"Bonus":0,"Continent":"K66","ID":33105,"Name":"A011","PlayerID":9023703,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33105","ServerKey":"pl181","X":607,"Y":647},{"Bonus":0,"Continent":"K43","ID":33107,"Name":"*158*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33107","ServerKey":"pl181","X":340,"Y":412},{"Bonus":0,"Continent":"K36","ID":33108,"Name":"K36 - [004] Before Land","PlayerID":699088769,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33108","ServerKey":"pl181","X":625,"Y":370},{"Bonus":0,"Continent":"K56","ID":33110,"Name":"O31 Kumogakure","PlayerID":699272880,"Points":9270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33110","ServerKey":"pl181","X":673,"Y":542},{"Bonus":0,"Continent":"K56","ID":33111,"Name":"[041]","PlayerID":698305474,"Points":8189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33111","ServerKey":"pl181","X":654,"Y":587},{"Bonus":0,"Continent":"K46","ID":33112,"Name":"099. Drobeta","PlayerID":849091866,"Points":8251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33112","ServerKey":"pl181","X":656,"Y":410},{"Bonus":0,"Continent":"K43","ID":33113,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33113","ServerKey":"pl181","X":328,"Y":463},{"Bonus":0,"Continent":"K36","ID":33114,"Name":"367|617 Wioska barbarzyƄska","PlayerID":6822957,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33114","ServerKey":"pl181","X":617,"Y":367},{"Bonus":0,"Continent":"K36","ID":33115,"Name":"xxx","PlayerID":6625437,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33115","ServerKey":"pl181","X":626,"Y":369},{"Bonus":0,"Continent":"K34","ID":33116,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":6394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33116","ServerKey":"pl181","X":461,"Y":329},{"Bonus":0,"Continent":"K36","ID":33117,"Name":"XDX","PlayerID":699098531,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33117","ServerKey":"pl181","X":610,"Y":358},{"Bonus":0,"Continent":"K43","ID":33118,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":6696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33118","ServerKey":"pl181","X":335,"Y":424},{"Bonus":0,"Continent":"K36","ID":33119,"Name":"Wioska Misiaczki","PlayerID":699759128,"Points":7688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33119","ServerKey":"pl181","X":612,"Y":366},{"Bonus":0,"Continent":"K64","ID":33120,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33120","ServerKey":"pl181","X":465,"Y":672},{"Bonus":0,"Continent":"K46","ID":33121,"Name":"998 Stoch","PlayerID":699491076,"Points":9459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33121","ServerKey":"pl181","X":665,"Y":423},{"Bonus":0,"Continent":"K56","ID":33122,"Name":"O54 Aasiaat","PlayerID":699272880,"Points":9694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33122","ServerKey":"pl181","X":674,"Y":535},{"Bonus":0,"Continent":"K55","ID":33123,"Name":"P.P.","PlayerID":8742874,"Points":4745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33123","ServerKey":"pl181","X":593,"Y":568},{"Bonus":0,"Continent":"K64","ID":33124,"Name":"psycha sitting","PlayerID":699736927,"Points":6191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33124","ServerKey":"pl181","X":425,"Y":658},{"Bonus":0,"Continent":"K34","ID":33125,"Name":"051...OPEL","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33125","ServerKey":"pl181","X":441,"Y":329},{"Bonus":0,"Continent":"K56","ID":33126,"Name":"C 004","PlayerID":8078914,"Points":6696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33126","ServerKey":"pl181","X":681,"Y":521},{"Bonus":0,"Continent":"K53","ID":33127,"Name":"!XXX","PlayerID":849012521,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33127","ServerKey":"pl181","X":337,"Y":563},{"Bonus":0,"Continent":"K53","ID":33128,"Name":"--20--","PlayerID":8877156,"Points":7119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33128","ServerKey":"pl181","X":349,"Y":598},{"Bonus":0,"Continent":"K55","ID":33129,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33129","ServerKey":"pl181","X":515,"Y":536},{"Bonus":9,"Continent":"K33","ID":33130,"Name":"Szulernia","PlayerID":7249451,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33130","ServerKey":"pl181","X":376,"Y":376},{"Bonus":0,"Continent":"K43","ID":33131,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33131","ServerKey":"pl181","X":327,"Y":472},{"Bonus":0,"Continent":"K36","ID":33132,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33132","ServerKey":"pl181","X":603,"Y":348},{"Bonus":1,"Continent":"K43","ID":33133,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33133","ServerKey":"pl181","X":320,"Y":471},{"Bonus":0,"Continent":"K56","ID":33134,"Name":"038","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33134","ServerKey":"pl181","X":643,"Y":545},{"Bonus":0,"Continent":"K64","ID":33135,"Name":"New World","PlayerID":698807570,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33135","ServerKey":"pl181","X":434,"Y":666},{"Bonus":0,"Continent":"K46","ID":33136,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33136","ServerKey":"pl181","X":674,"Y":490},{"Bonus":0,"Continent":"K35","ID":33137,"Name":"J#026","PlayerID":2065730,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33137","ServerKey":"pl181","X":577,"Y":342},{"Bonus":0,"Continent":"K46","ID":33138,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33138","ServerKey":"pl181","X":679,"Y":466},{"Bonus":0,"Continent":"K34","ID":33140,"Name":"096...tomeczek","PlayerID":6920960,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33140","ServerKey":"pl181","X":476,"Y":325},{"Bonus":0,"Continent":"K36","ID":33142,"Name":"007 .3.Panzergrenadier Division","PlayerID":849091899,"Points":6682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33142","ServerKey":"pl181","X":604,"Y":359},{"Bonus":0,"Continent":"K64","ID":33143,"Name":"R 002 ~Waleriana~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33143","ServerKey":"pl181","X":485,"Y":676},{"Bonus":0,"Continent":"K64","ID":33144,"Name":"R 007 ~Ć»ona~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33144","ServerKey":"pl181","X":487,"Y":678},{"Bonus":0,"Continent":"K46","ID":33145,"Name":"059 Wioska 011","PlayerID":9238175,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33145","ServerKey":"pl181","X":660,"Y":418},{"Bonus":0,"Continent":"K35","ID":33146,"Name":"Wioska 001","PlayerID":699703295,"Points":8724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33146","ServerKey":"pl181","X":573,"Y":339},{"Bonus":0,"Continent":"K34","ID":33147,"Name":"077.Stradi","PlayerID":698365960,"Points":10376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33147","ServerKey":"pl181","X":446,"Y":326},{"Bonus":0,"Continent":"K36","ID":33148,"Name":"!XXX","PlayerID":698361257,"Points":6801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33148","ServerKey":"pl181","X":607,"Y":353},{"Bonus":2,"Continent":"K35","ID":33149,"Name":"Lord Lord Franek .#087","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33149","ServerKey":"pl181","X":517,"Y":321},{"Bonus":0,"Continent":"K46","ID":33151,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33151","ServerKey":"pl181","X":680,"Y":467},{"Bonus":0,"Continent":"K35","ID":33152,"Name":"ADEN","PlayerID":698588535,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33152","ServerKey":"pl181","X":599,"Y":356},{"Bonus":0,"Continent":"K46","ID":33153,"Name":"I026","PlayerID":699722599,"Points":9586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33153","ServerKey":"pl181","X":674,"Y":452},{"Bonus":0,"Continent":"K34","ID":33154,"Name":"Wioska barbarzyƄska","PlayerID":698239813,"Points":5708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33154","ServerKey":"pl181","X":495,"Y":319},{"Bonus":0,"Continent":"K35","ID":33155,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33155","ServerKey":"pl181","X":562,"Y":329},{"Bonus":0,"Continent":"K34","ID":33156,"Name":"North Barba 052","PlayerID":699796330,"Points":8251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33156","ServerKey":"pl181","X":406,"Y":352},{"Bonus":0,"Continent":"K33","ID":33157,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":2194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33157","ServerKey":"pl181","X":370,"Y":374},{"Bonus":0,"Continent":"K63","ID":33158,"Name":"010 Solary = Dolary","PlayerID":6354098,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33158","ServerKey":"pl181","X":378,"Y":632},{"Bonus":0,"Continent":"K56","ID":33159,"Name":"O47 Tuzla","PlayerID":699272880,"Points":8129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33159","ServerKey":"pl181","X":678,"Y":530},{"Bonus":0,"Continent":"K36","ID":33160,"Name":"Andrzej","PlayerID":849056744,"Points":8079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33160","ServerKey":"pl181","X":609,"Y":354},{"Bonus":8,"Continent":"K35","ID":33161,"Name":"Lord Lord Franek .#100","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33161","ServerKey":"pl181","X":525,"Y":328},{"Bonus":0,"Continent":"K35","ID":33162,"Name":"UltraInstynkt-","PlayerID":699710633,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33162","ServerKey":"pl181","X":579,"Y":335},{"Bonus":0,"Continent":"K63","ID":33163,"Name":"DejMon9","PlayerID":699805839,"Points":4092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33163","ServerKey":"pl181","X":367,"Y":623},{"Bonus":0,"Continent":"K66","ID":33164,"Name":"Wioska KrĂłl Jaƛ","PlayerID":1900364,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33164","ServerKey":"pl181","X":649,"Y":607},{"Bonus":0,"Continent":"K46","ID":33165,"Name":"084. Perusia","PlayerID":849091866,"Points":9255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33165","ServerKey":"pl181","X":649,"Y":405},{"Bonus":0,"Continent":"K36","ID":33166,"Name":"Ogonek","PlayerID":698420691,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33166","ServerKey":"pl181","X":613,"Y":356},{"Bonus":0,"Continent":"K65","ID":33167,"Name":"Muchomor *023*","PlayerID":606407,"Points":8455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33167","ServerKey":"pl181","X":517,"Y":680},{"Bonus":0,"Continent":"K65","ID":33168,"Name":"Wioska r 4","PlayerID":848915531,"Points":5956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33168","ServerKey":"pl181","X":558,"Y":670},{"Bonus":0,"Continent":"K35","ID":33169,"Name":"Ruda Dolnoƛląska","PlayerID":849110711,"Points":2545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33169","ServerKey":"pl181","X":551,"Y":333},{"Bonus":0,"Continent":"K36","ID":33170,"Name":"*002* CSA-Zaiwaniać","PlayerID":849095068,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33170","ServerKey":"pl181","X":625,"Y":367},{"Bonus":0,"Continent":"K64","ID":33171,"Name":"#Keep Calm","PlayerID":848896948,"Points":6357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33171","ServerKey":"pl181","X":459,"Y":676},{"Bonus":0,"Continent":"K34","ID":33172,"Name":"GrĂłd","PlayerID":699204478,"Points":11360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33172","ServerKey":"pl181","X":474,"Y":324},{"Bonus":0,"Continent":"K35","ID":33173,"Name":"TRAILER PARK BOYS","PlayerID":699072129,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33173","ServerKey":"pl181","X":551,"Y":346},{"Bonus":0,"Continent":"K53","ID":33174,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33174","ServerKey":"pl181","X":341,"Y":558},{"Bonus":0,"Continent":"K36","ID":33175,"Name":"devils tower","PlayerID":7340529,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33175","ServerKey":"pl181","X":639,"Y":384},{"Bonus":0,"Continent":"K53","ID":33176,"Name":"C0165","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33176","ServerKey":"pl181","X":329,"Y":542},{"Bonus":0,"Continent":"K63","ID":33177,"Name":"021 Tu ciągle nie ma miejsca...","PlayerID":6354098,"Points":7616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33177","ServerKey":"pl181","X":379,"Y":623},{"Bonus":0,"Continent":"K65","ID":33178,"Name":"Wioska P1ter 2","PlayerID":699567608,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33178","ServerKey":"pl181","X":598,"Y":648},{"Bonus":0,"Continent":"K35","ID":33179,"Name":"UltraInstynkt-","PlayerID":699710633,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33179","ServerKey":"pl181","X":589,"Y":341},{"Bonus":0,"Continent":"K35","ID":33180,"Name":"krytl05","PlayerID":1990750,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33180","ServerKey":"pl181","X":513,"Y":321},{"Bonus":0,"Continent":"K34","ID":33181,"Name":"135...opelu","PlayerID":6920960,"Points":7893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33181","ServerKey":"pl181","X":443,"Y":333},{"Bonus":0,"Continent":"K56","ID":33182,"Name":"ASre","PlayerID":699611673,"Points":3641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33182","ServerKey":"pl181","X":649,"Y":592},{"Bonus":0,"Continent":"K56","ID":33183,"Name":"Savi2","PlayerID":848899726,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33183","ServerKey":"pl181","X":676,"Y":504},{"Bonus":0,"Continent":"K36","ID":33184,"Name":"*001* CSA się byƂo uczyć!","PlayerID":849095068,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33184","ServerKey":"pl181","X":604,"Y":350},{"Bonus":0,"Continent":"K46","ID":33185,"Name":"Jaaa","PlayerID":698635863,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33185","ServerKey":"pl181","X":675,"Y":486},{"Bonus":0,"Continent":"K66","ID":33186,"Name":"#016#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33186","ServerKey":"pl181","X":628,"Y":623},{"Bonus":0,"Continent":"K64","ID":33187,"Name":"[03]","PlayerID":699827112,"Points":7172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33187","ServerKey":"pl181","X":428,"Y":667},{"Bonus":0,"Continent":"K63","ID":33188,"Name":".///...//././././././././","PlayerID":849097937,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33188","ServerKey":"pl181","X":375,"Y":608},{"Bonus":0,"Continent":"K65","ID":33189,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33189","ServerKey":"pl181","X":504,"Y":677},{"Bonus":0,"Continent":"K64","ID":33190,"Name":"|017| Fajstos","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33190","ServerKey":"pl181","X":490,"Y":672},{"Bonus":0,"Continent":"K66","ID":33191,"Name":"Sony 911","PlayerID":1415009,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33191","ServerKey":"pl181","X":620,"Y":630},{"Bonus":0,"Continent":"K36","ID":33193,"Name":"1002","PlayerID":699150527,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33193","ServerKey":"pl181","X":621,"Y":362},{"Bonus":0,"Continent":"K34","ID":33194,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":5834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33194","ServerKey":"pl181","X":436,"Y":337},{"Bonus":0,"Continent":"K53","ID":33195,"Name":"Taran","PlayerID":6180190,"Points":9212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33195","ServerKey":"pl181","X":337,"Y":577},{"Bonus":0,"Continent":"K35","ID":33196,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33196","ServerKey":"pl181","X":560,"Y":330},{"Bonus":0,"Continent":"K63","ID":33197,"Name":"Komornicy 019","PlayerID":699336777,"Points":8731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33197","ServerKey":"pl181","X":352,"Y":607},{"Bonus":0,"Continent":"K53","ID":33198,"Name":"Brrzana","PlayerID":699265922,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33198","ServerKey":"pl181","X":329,"Y":546},{"Bonus":0,"Continent":"K36","ID":33199,"Name":"Wyspa 022","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33199","ServerKey":"pl181","X":625,"Y":374},{"Bonus":0,"Continent":"K56","ID":33200,"Name":"GerHIs","PlayerID":699611673,"Points":3899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33200","ServerKey":"pl181","X":650,"Y":595},{"Bonus":0,"Continent":"K65","ID":33201,"Name":"001","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33201","ServerKey":"pl181","X":531,"Y":675},{"Bonus":0,"Continent":"K56","ID":33203,"Name":"Nowa 40","PlayerID":698702991,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33203","ServerKey":"pl181","X":662,"Y":585},{"Bonus":0,"Continent":"K36","ID":33205,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33205","ServerKey":"pl181","X":613,"Y":367},{"Bonus":0,"Continent":"K64","ID":33206,"Name":"R 009 ~Nami~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33206","ServerKey":"pl181","X":486,"Y":677},{"Bonus":0,"Continent":"K35","ID":33207,"Name":"J#015","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33207","ServerKey":"pl181","X":578,"Y":336},{"Bonus":8,"Continent":"K53","ID":33208,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33208","ServerKey":"pl181","X":325,"Y":503},{"Bonus":0,"Continent":"K66","ID":33209,"Name":"#014#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33209","ServerKey":"pl181","X":631,"Y":625},{"Bonus":0,"Continent":"K65","ID":33210,"Name":"reco","PlayerID":698704189,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33210","ServerKey":"pl181","X":508,"Y":682},{"Bonus":0,"Continent":"K65","ID":33211,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33211","ServerKey":"pl181","X":508,"Y":678},{"Bonus":0,"Continent":"K56","ID":33212,"Name":"053. Flam","PlayerID":8337151,"Points":9837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33212","ServerKey":"pl181","X":658,"Y":589},{"Bonus":4,"Continent":"K46","ID":33213,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33213","ServerKey":"pl181","X":682,"Y":486},{"Bonus":0,"Continent":"K53","ID":33214,"Name":"(031)Iri","PlayerID":849098695,"Points":2974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33214","ServerKey":"pl181","X":335,"Y":567},{"Bonus":0,"Continent":"K64","ID":33215,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33215","ServerKey":"pl181","X":477,"Y":674},{"Bonus":0,"Continent":"K36","ID":33216,"Name":"1006","PlayerID":699150527,"Points":9910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33216","ServerKey":"pl181","X":614,"Y":364},{"Bonus":0,"Continent":"K53","ID":33217,"Name":"001","PlayerID":7183372,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33217","ServerKey":"pl181","X":343,"Y":594},{"Bonus":0,"Continent":"K66","ID":33218,"Name":"Wioska 046","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33218","ServerKey":"pl181","X":646,"Y":603},{"Bonus":0,"Continent":"K46","ID":33219,"Name":"657|422 Wioska barbarzyƄska","PlayerID":6822957,"Points":2556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33219","ServerKey":"pl181","X":657,"Y":422},{"Bonus":0,"Continent":"K56","ID":33220,"Name":"B 064","PlayerID":8078914,"Points":8476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33220","ServerKey":"pl181","X":678,"Y":532},{"Bonus":0,"Continent":"K46","ID":33221,"Name":"026#Sewa#002","PlayerID":849098769,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33221","ServerKey":"pl181","X":671,"Y":444},{"Bonus":0,"Continent":"K64","ID":33222,"Name":"Psycha Siada","PlayerID":698807570,"Points":5871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33222","ServerKey":"pl181","X":444,"Y":665},{"Bonus":0,"Continent":"K64","ID":33223,"Name":"Z|010| Rzym","PlayerID":699393742,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33223","ServerKey":"pl181","X":461,"Y":678},{"Bonus":0,"Continent":"K53","ID":33224,"Name":"C0154","PlayerID":8841266,"Points":10246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33224","ServerKey":"pl181","X":321,"Y":528},{"Bonus":0,"Continent":"K53","ID":33225,"Name":"C0271","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33225","ServerKey":"pl181","X":323,"Y":507},{"Bonus":0,"Continent":"K34","ID":33226,"Name":"Wioska barbarzyƄska 031","PlayerID":6343784,"Points":6470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33226","ServerKey":"pl181","X":460,"Y":322},{"Bonus":0,"Continent":"K33","ID":33227,"Name":"Szlachcic","PlayerID":3484132,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33227","ServerKey":"pl181","X":398,"Y":356},{"Bonus":0,"Continent":"K65","ID":33228,"Name":"010","PlayerID":2293376,"Points":7206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33228","ServerKey":"pl181","X":526,"Y":675},{"Bonus":0,"Continent":"K53","ID":33229,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33229","ServerKey":"pl181","X":325,"Y":528},{"Bonus":0,"Continent":"K53","ID":33230,"Name":"Ronne","PlayerID":849098387,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33230","ServerKey":"pl181","X":329,"Y":562},{"Bonus":0,"Continent":"K64","ID":33231,"Name":"rotes idz spac misiu","PlayerID":698807570,"Points":6772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33231","ServerKey":"pl181","X":454,"Y":674},{"Bonus":0,"Continent":"K66","ID":33232,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33232","ServerKey":"pl181","X":638,"Y":614},{"Bonus":0,"Continent":"K65","ID":33233,"Name":"Wioska r 14","PlayerID":848915531,"Points":4069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33233","ServerKey":"pl181","X":553,"Y":667},{"Bonus":0,"Continent":"K35","ID":33234,"Name":"-013-","PlayerID":698588812,"Points":3312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33234","ServerKey":"pl181","X":541,"Y":329},{"Bonus":0,"Continent":"K64","ID":33235,"Name":"Brakuje drewna mĂłj panie","PlayerID":8954402,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33235","ServerKey":"pl181","X":441,"Y":665},{"Bonus":0,"Continent":"K66","ID":33236,"Name":"Wioska kamilatak","PlayerID":848942587,"Points":6104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33236","ServerKey":"pl181","X":641,"Y":617},{"Bonus":0,"Continent":"K64","ID":33237,"Name":"Psycha Siada","PlayerID":698807570,"Points":6299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33237","ServerKey":"pl181","X":441,"Y":667},{"Bonus":0,"Continent":"K56","ID":33238,"Name":"$Curry","PlayerID":699795378,"Points":5876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33238","ServerKey":"pl181","X":679,"Y":526},{"Bonus":0,"Continent":"K35","ID":33239,"Name":"Wioska 3","PlayerID":698680806,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33239","ServerKey":"pl181","X":500,"Y":323},{"Bonus":0,"Continent":"K65","ID":33240,"Name":"Muchomor *012*","PlayerID":606407,"Points":10527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33240","ServerKey":"pl181","X":518,"Y":676},{"Bonus":0,"Continent":"K64","ID":33241,"Name":"Wioska barbarzyƄska","PlayerID":699516268,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33241","ServerKey":"pl181","X":404,"Y":656},{"Bonus":0,"Continent":"K64","ID":33242,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33242","ServerKey":"pl181","X":445,"Y":675},{"Bonus":0,"Continent":"K65","ID":33244,"Name":"0429","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33244","ServerKey":"pl181","X":551,"Y":667},{"Bonus":0,"Continent":"K56","ID":33245,"Name":"050","PlayerID":699413040,"Points":5888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33245","ServerKey":"pl181","X":677,"Y":515},{"Bonus":0,"Continent":"K63","ID":33246,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33246","ServerKey":"pl181","X":364,"Y":611},{"Bonus":0,"Continent":"K36","ID":33247,"Name":"=|36|=","PlayerID":9101574,"Points":4562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33247","ServerKey":"pl181","X":644,"Y":392},{"Bonus":0,"Continent":"K34","ID":33248,"Name":"137.Stradi","PlayerID":698365960,"Points":3313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33248","ServerKey":"pl181","X":451,"Y":326},{"Bonus":0,"Continent":"K46","ID":33249,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":7343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33249","ServerKey":"pl181","X":674,"Y":473},{"Bonus":0,"Continent":"K33","ID":33250,"Name":"028 Zakopane akademia","PlayerID":848978297,"Points":3616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33250","ServerKey":"pl181","X":379,"Y":374},{"Bonus":0,"Continent":"K63","ID":33251,"Name":"032 Toffifeeeeee!","PlayerID":6354098,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33251","ServerKey":"pl181","X":372,"Y":630},{"Bonus":0,"Continent":"K66","ID":33252,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33252","ServerKey":"pl181","X":622,"Y":626},{"Bonus":0,"Continent":"K36","ID":33254,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":5511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33254","ServerKey":"pl181","X":601,"Y":352},{"Bonus":0,"Continent":"K35","ID":33255,"Name":"AAA","PlayerID":1006847,"Points":7024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33255","ServerKey":"pl181","X":533,"Y":324},{"Bonus":0,"Continent":"K46","ID":33256,"Name":"033","PlayerID":7588382,"Points":8125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33256","ServerKey":"pl181","X":670,"Y":459},{"Bonus":0,"Continent":"K64","ID":33257,"Name":"Wioska barbarzyƄska","PlayerID":699516268,"Points":7324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33257","ServerKey":"pl181","X":407,"Y":651},{"Bonus":0,"Continent":"K35","ID":33258,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":6979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33258","ServerKey":"pl181","X":596,"Y":349},{"Bonus":0,"Continent":"K56","ID":33259,"Name":"C.03","PlayerID":699737356,"Points":8378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33259","ServerKey":"pl181","X":680,"Y":518},{"Bonus":0,"Continent":"K64","ID":33260,"Name":"Psycha Siada","PlayerID":698807570,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33260","ServerKey":"pl181","X":444,"Y":670},{"Bonus":0,"Continent":"K66","ID":33261,"Name":"A004","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33261","ServerKey":"pl181","X":603,"Y":647},{"Bonus":0,"Continent":"K56","ID":33262,"Name":"B 052","PlayerID":8078914,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33262","ServerKey":"pl181","X":673,"Y":541},{"Bonus":0,"Continent":"K64","ID":33263,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33263","ServerKey":"pl181","X":443,"Y":674},{"Bonus":0,"Continent":"K43","ID":33264,"Name":"008","PlayerID":7127455,"Points":5888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33264","ServerKey":"pl181","X":319,"Y":477},{"Bonus":0,"Continent":"K36","ID":33265,"Name":"015 530i","PlayerID":698361257,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33265","ServerKey":"pl181","X":615,"Y":360},{"Bonus":0,"Continent":"K46","ID":33267,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33267","ServerKey":"pl181","X":677,"Y":486},{"Bonus":0,"Continent":"K66","ID":33268,"Name":"Gabsaw","PlayerID":2269943,"Points":8046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33268","ServerKey":"pl181","X":641,"Y":611},{"Bonus":0,"Continent":"K35","ID":33269,"Name":"Wioska 4","PlayerID":698680806,"Points":6935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33269","ServerKey":"pl181","X":503,"Y":326},{"Bonus":6,"Continent":"K64","ID":33270,"Name":"#022. Ster, Ć»eglarz i Okręt","PlayerID":848896948,"Points":9047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33270","ServerKey":"pl181","X":441,"Y":671},{"Bonus":0,"Continent":"K63","ID":33272,"Name":"Wioska galĂłw","PlayerID":8877156,"Points":3063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33272","ServerKey":"pl181","X":351,"Y":601},{"Bonus":0,"Continent":"K34","ID":33273,"Name":"Wioska barbarzyƄska","PlayerID":698680806,"Points":7587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33273","ServerKey":"pl181","X":476,"Y":318},{"Bonus":0,"Continent":"K56","ID":33274,"Name":"[044]","PlayerID":698305474,"Points":4472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33274","ServerKey":"pl181","X":661,"Y":577},{"Bonus":0,"Continent":"K64","ID":33275,"Name":"R 013 ~Falkret~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33275","ServerKey":"pl181","X":485,"Y":681},{"Bonus":0,"Continent":"K35","ID":33276,"Name":"krytl15","PlayerID":1990750,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33276","ServerKey":"pl181","X":508,"Y":318},{"Bonus":0,"Continent":"K56","ID":33277,"Name":"60k$ Grvvyq","PlayerID":699676005,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33277","ServerKey":"pl181","X":659,"Y":574},{"Bonus":0,"Continent":"K56","ID":33278,"Name":"B.022","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33278","ServerKey":"pl181","X":675,"Y":502},{"Bonus":0,"Continent":"K53","ID":33279,"Name":"Miasys 3","PlayerID":849090130,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33279","ServerKey":"pl181","X":343,"Y":583},{"Bonus":0,"Continent":"K64","ID":33280,"Name":"Bagdad","PlayerID":849089459,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33280","ServerKey":"pl181","X":426,"Y":661},{"Bonus":0,"Continent":"K33","ID":33281,"Name":"Szlachcic","PlayerID":3484132,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33281","ServerKey":"pl181","X":393,"Y":360},{"Bonus":0,"Continent":"K43","ID":33282,"Name":"Westfold.001","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33282","ServerKey":"pl181","X":342,"Y":417},{"Bonus":0,"Continent":"K35","ID":33283,"Name":"AAA","PlayerID":1006847,"Points":8040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33283","ServerKey":"pl181","X":547,"Y":323},{"Bonus":0,"Continent":"K56","ID":33284,"Name":"_PUSTA","PlayerID":698768565,"Points":10199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33284","ServerKey":"pl181","X":654,"Y":599},{"Bonus":0,"Continent":"K64","ID":33285,"Name":"076","PlayerID":699336777,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33285","ServerKey":"pl181","X":476,"Y":616},{"Bonus":0,"Continent":"K34","ID":33286,"Name":"217","PlayerID":698365960,"Points":7128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33286","ServerKey":"pl181","X":447,"Y":328},{"Bonus":0,"Continent":"K36","ID":33287,"Name":"019 * Lady Porto *","PlayerID":699406750,"Points":6104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33287","ServerKey":"pl181","X":644,"Y":396},{"Bonus":0,"Continent":"K64","ID":33288,"Name":"Wioska barbarzyƄska","PlayerID":699516268,"Points":4352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33288","ServerKey":"pl181","X":408,"Y":652},{"Bonus":0,"Continent":"K34","ID":33289,"Name":"124...OPELU","PlayerID":6920960,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33289","ServerKey":"pl181","X":442,"Y":334},{"Bonus":0,"Continent":"K46","ID":33290,"Name":"I047","PlayerID":699722599,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33290","ServerKey":"pl181","X":669,"Y":449},{"Bonus":0,"Continent":"K33","ID":33292,"Name":"Szulernia","PlayerID":7249451,"Points":3753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33292","ServerKey":"pl181","X":368,"Y":373},{"Bonus":0,"Continent":"K43","ID":33294,"Name":"Wioska barbarzyƄska","PlayerID":848918380,"Points":5032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33294","ServerKey":"pl181","X":342,"Y":418},{"Bonus":0,"Continent":"K56","ID":33295,"Name":"002","PlayerID":699251542,"Points":5481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33295","ServerKey":"pl181","X":650,"Y":592},{"Bonus":0,"Continent":"K63","ID":33296,"Name":"D.032","PlayerID":849088243,"Points":3040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33296","ServerKey":"pl181","X":390,"Y":640},{"Bonus":0,"Continent":"K35","ID":33298,"Name":"Wioska Natka1968_02","PlayerID":699644852,"Points":2945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33298","ServerKey":"pl181","X":526,"Y":323},{"Bonus":0,"Continent":"K64","ID":33299,"Name":"Psycha Siada","PlayerID":698807570,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33299","ServerKey":"pl181","X":446,"Y":670},{"Bonus":0,"Continent":"K53","ID":33300,"Name":"Restelo","PlayerID":699494480,"Points":9272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33300","ServerKey":"pl181","X":346,"Y":589},{"Bonus":0,"Continent":"K64","ID":33301,"Name":"Forza 7","PlayerID":699849210,"Points":3298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33301","ServerKey":"pl181","X":435,"Y":662},{"Bonus":0,"Continent":"K65","ID":33302,"Name":"0651","PlayerID":698659980,"Points":5889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33302","ServerKey":"pl181","X":574,"Y":662},{"Bonus":0,"Continent":"K46","ID":33303,"Name":"I027","PlayerID":699722599,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33303","ServerKey":"pl181","X":676,"Y":452},{"Bonus":2,"Continent":"K35","ID":33304,"Name":"Lord Lord Franek .#173","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33304","ServerKey":"pl181","X":518,"Y":321},{"Bonus":0,"Continent":"K36","ID":33305,"Name":"Wyspa 009","PlayerID":699756210,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33305","ServerKey":"pl181","X":628,"Y":381},{"Bonus":0,"Continent":"K35","ID":33306,"Name":"szpiegula","PlayerID":6118079,"Points":8123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33306","ServerKey":"pl181","X":505,"Y":324},{"Bonus":0,"Continent":"K65","ID":33308,"Name":"055","PlayerID":2293376,"Points":8294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33308","ServerKey":"pl181","X":527,"Y":680},{"Bonus":0,"Continent":"K35","ID":33309,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33309","ServerKey":"pl181","X":505,"Y":317},{"Bonus":0,"Continent":"K34","ID":33310,"Name":"SZYNCHIL","PlayerID":3484132,"Points":5800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33310","ServerKey":"pl181","X":400,"Y":351},{"Bonus":0,"Continent":"K36","ID":33311,"Name":"027 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33311","ServerKey":"pl181","X":645,"Y":397},{"Bonus":0,"Continent":"K33","ID":33312,"Name":"Szulernia","PlayerID":7249451,"Points":2586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33312","ServerKey":"pl181","X":372,"Y":369},{"Bonus":0,"Continent":"K35","ID":33313,"Name":"Wioska 6","PlayerID":698680806,"Points":6627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33313","ServerKey":"pl181","X":520,"Y":327},{"Bonus":0,"Continent":"K56","ID":33314,"Name":"044","PlayerID":699351301,"Points":7232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33314","ServerKey":"pl181","X":676,"Y":529},{"Bonus":0,"Continent":"K65","ID":33315,"Name":"yankes6","PlayerID":699567608,"Points":7552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33315","ServerKey":"pl181","X":588,"Y":656},{"Bonus":0,"Continent":"K43","ID":33316,"Name":"Out of Touch","PlayerID":698962117,"Points":9061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33316","ServerKey":"pl181","X":328,"Y":441},{"Bonus":0,"Continent":"K63","ID":33317,"Name":"Hard2","PlayerID":699805839,"Points":2170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33317","ServerKey":"pl181","X":366,"Y":624},{"Bonus":0,"Continent":"K56","ID":33318,"Name":"051","PlayerID":699413040,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33318","ServerKey":"pl181","X":676,"Y":513},{"Bonus":0,"Continent":"K43","ID":33319,"Name":"Out of Touch","PlayerID":698962117,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33319","ServerKey":"pl181","X":328,"Y":439},{"Bonus":0,"Continent":"K43","ID":33320,"Name":"Wioska barbarzyƄska","PlayerID":849013126,"Points":3522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33320","ServerKey":"pl181","X":321,"Y":487},{"Bonus":0,"Continent":"K43","ID":33321,"Name":"Wioska barbarzyƄska","PlayerID":848886056,"Points":8277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33321","ServerKey":"pl181","X":378,"Y":402},{"Bonus":0,"Continent":"K33","ID":33322,"Name":"Szlachcic","PlayerID":698160606,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33322","ServerKey":"pl181","X":385,"Y":362},{"Bonus":0,"Continent":"K63","ID":33323,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33323","ServerKey":"pl181","X":348,"Y":600},{"Bonus":0,"Continent":"K43","ID":33324,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":4595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33324","ServerKey":"pl181","X":325,"Y":467},{"Bonus":0,"Continent":"K43","ID":33325,"Name":"Wioska 13","PlayerID":849075836,"Points":4613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33325","ServerKey":"pl181","X":318,"Y":489},{"Bonus":0,"Continent":"K36","ID":33326,"Name":"-21-","PlayerID":699837826,"Points":5729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33326","ServerKey":"pl181","X":631,"Y":373},{"Bonus":0,"Continent":"K34","ID":33328,"Name":"#0176 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33328","ServerKey":"pl181","X":488,"Y":318},{"Bonus":0,"Continent":"K53","ID":33329,"Name":"C0156","PlayerID":8841266,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33329","ServerKey":"pl181","X":320,"Y":527},{"Bonus":0,"Continent":"K64","ID":33330,"Name":"A15","PlayerID":698652014,"Points":4573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33330","ServerKey":"pl181","X":466,"Y":679},{"Bonus":0,"Continent":"K66","ID":33331,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33331","ServerKey":"pl181","X":637,"Y":619},{"Bonus":0,"Continent":"K53","ID":33332,"Name":"Wioska barbarzyƄska","PlayerID":3990066,"Points":2374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33332","ServerKey":"pl181","X":339,"Y":587},{"Bonus":0,"Continent":"K65","ID":33333,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33333","ServerKey":"pl181","X":501,"Y":681},{"Bonus":5,"Continent":"K43","ID":33334,"Name":"*176*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33334","ServerKey":"pl181","X":345,"Y":412},{"Bonus":0,"Continent":"K33","ID":33335,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":5532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33335","ServerKey":"pl181","X":372,"Y":380},{"Bonus":0,"Continent":"K56","ID":33336,"Name":"D02","PlayerID":848995478,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33336","ServerKey":"pl181","X":673,"Y":550},{"Bonus":0,"Continent":"K65","ID":33337,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33337","ServerKey":"pl181","X":502,"Y":682},{"Bonus":0,"Continent":"K45","ID":33338,"Name":"A17","PlayerID":849093742,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33338","ServerKey":"pl181","X":597,"Y":467},{"Bonus":0,"Continent":"K35","ID":33339,"Name":"Wioska XVII","PlayerID":698200480,"Points":3662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33339","ServerKey":"pl181","X":574,"Y":336},{"Bonus":0,"Continent":"K65","ID":33340,"Name":"0413","PlayerID":698659980,"Points":8950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33340","ServerKey":"pl181","X":533,"Y":677},{"Bonus":3,"Continent":"K53","ID":33341,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33341","ServerKey":"pl181","X":342,"Y":584},{"Bonus":0,"Continent":"K65","ID":33342,"Name":"0395","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33342","ServerKey":"pl181","X":564,"Y":667},{"Bonus":0,"Continent":"K65","ID":33343,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33343","ServerKey":"pl181","X":543,"Y":674},{"Bonus":0,"Continent":"K63","ID":33345,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":8387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33345","ServerKey":"pl181","X":394,"Y":640},{"Bonus":0,"Continent":"K65","ID":33347,"Name":"0449","PlayerID":698659980,"Points":9104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33347","ServerKey":"pl181","X":533,"Y":675},{"Bonus":0,"Continent":"K46","ID":33348,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33348","ServerKey":"pl181","X":679,"Y":463},{"Bonus":0,"Continent":"K66","ID":33349,"Name":"A002","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33349","ServerKey":"pl181","X":601,"Y":646},{"Bonus":0,"Continent":"K35","ID":33350,"Name":"Defolij 1","PlayerID":849098136,"Points":4102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33350","ServerKey":"pl181","X":554,"Y":327},{"Bonus":0,"Continent":"K46","ID":33351,"Name":"Radomice-Hubix","PlayerID":8675636,"Points":5887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33351","ServerKey":"pl181","X":663,"Y":422},{"Bonus":0,"Continent":"K34","ID":33352,"Name":"057","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33352","ServerKey":"pl181","X":453,"Y":323},{"Bonus":0,"Continent":"K65","ID":33353,"Name":"0308","PlayerID":698659980,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33353","ServerKey":"pl181","X":574,"Y":663},{"Bonus":0,"Continent":"K36","ID":33354,"Name":"Wyspa 024","PlayerID":699756210,"Points":4327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33354","ServerKey":"pl181","X":628,"Y":374},{"Bonus":0,"Continent":"K64","ID":33355,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33355","ServerKey":"pl181","X":418,"Y":662},{"Bonus":0,"Continent":"K43","ID":33356,"Name":"*162*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33356","ServerKey":"pl181","X":345,"Y":410},{"Bonus":0,"Continent":"K33","ID":33357,"Name":"*047*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33357","ServerKey":"pl181","X":351,"Y":397},{"Bonus":0,"Continent":"K64","ID":33358,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33358","ServerKey":"pl181","X":414,"Y":653},{"Bonus":0,"Continent":"K35","ID":33359,"Name":"ADEN","PlayerID":698588535,"Points":10177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33359","ServerKey":"pl181","X":578,"Y":343},{"Bonus":0,"Continent":"K64","ID":33361,"Name":"Adidas 5","PlayerID":9191031,"Points":3175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33361","ServerKey":"pl181","X":410,"Y":651},{"Bonus":0,"Continent":"K64","ID":33362,"Name":"010","PlayerID":699246032,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33362","ServerKey":"pl181","X":408,"Y":659},{"Bonus":0,"Continent":"K34","ID":33363,"Name":"#0132 Thorus5","PlayerID":1238300,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33363","ServerKey":"pl181","X":472,"Y":327},{"Bonus":0,"Continent":"K46","ID":33364,"Name":"0045","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33364","ServerKey":"pl181","X":677,"Y":457},{"Bonus":0,"Continent":"K43","ID":33365,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33365","ServerKey":"pl181","X":318,"Y":486},{"Bonus":0,"Continent":"K63","ID":33366,"Name":"009 Twardy Sen","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33366","ServerKey":"pl181","X":380,"Y":633},{"Bonus":0,"Continent":"K43","ID":33367,"Name":"HiƄczowa Turnia","PlayerID":849013126,"Points":3719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33367","ServerKey":"pl181","X":318,"Y":480},{"Bonus":0,"Continent":"K46","ID":33368,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":4086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33368","ServerKey":"pl181","X":670,"Y":453},{"Bonus":0,"Continent":"K53","ID":33369,"Name":"deff 100 %","PlayerID":849012521,"Points":7881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33369","ServerKey":"pl181","X":337,"Y":573},{"Bonus":0,"Continent":"K65","ID":33370,"Name":"Wioska r 17","PlayerID":848915531,"Points":4141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33370","ServerKey":"pl181","X":552,"Y":670},{"Bonus":0,"Continent":"K56","ID":33371,"Name":"Kingdom","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33371","ServerKey":"pl181","X":680,"Y":503},{"Bonus":0,"Continent":"K35","ID":33372,"Name":"AAA","PlayerID":1006847,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33372","ServerKey":"pl181","X":537,"Y":324},{"Bonus":0,"Continent":"K36","ID":33373,"Name":"Najpiękniejsza","PlayerID":7555180,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33373","ServerKey":"pl181","X":627,"Y":375},{"Bonus":0,"Continent":"K46","ID":33374,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33374","ServerKey":"pl181","X":678,"Y":488},{"Bonus":0,"Continent":"K53","ID":33375,"Name":"-009-","PlayerID":8710047,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33375","ServerKey":"pl181","X":334,"Y":573},{"Bonus":0,"Continent":"K43","ID":33376,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33376","ServerKey":"pl181","X":326,"Y":473},{"Bonus":0,"Continent":"K66","ID":33378,"Name":"Freytaga I","PlayerID":2269943,"Points":8099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33378","ServerKey":"pl181","X":640,"Y":609},{"Bonus":0,"Continent":"K33","ID":33379,"Name":"cz 013 CORSA","PlayerID":3909522,"Points":7447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33379","ServerKey":"pl181","X":367,"Y":378},{"Bonus":0,"Continent":"K34","ID":33380,"Name":"#0138 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33380","ServerKey":"pl181","X":479,"Y":318},{"Bonus":0,"Continent":"K43","ID":33381,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33381","ServerKey":"pl181","X":319,"Y":473},{"Bonus":0,"Continent":"K34","ID":33382,"Name":"056","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33382","ServerKey":"pl181","X":454,"Y":325},{"Bonus":0,"Continent":"K35","ID":33383,"Name":"Wrath 015","PlayerID":699756210,"Points":8954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33383","ServerKey":"pl181","X":574,"Y":335},{"Bonus":0,"Continent":"K65","ID":33384,"Name":"*027","PlayerID":699567608,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33384","ServerKey":"pl181","X":598,"Y":651},{"Bonus":0,"Continent":"K34","ID":33385,"Name":"[B]_[043] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33385","ServerKey":"pl181","X":425,"Y":334},{"Bonus":6,"Continent":"K56","ID":33386,"Name":"B 010","PlayerID":8078914,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33386","ServerKey":"pl181","X":673,"Y":532},{"Bonus":0,"Continent":"K36","ID":33387,"Name":"56. KaruTown","PlayerID":849091866,"Points":6549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33387","ServerKey":"pl181","X":644,"Y":399},{"Bonus":0,"Continent":"K56","ID":33388,"Name":"Lubieszynek","PlayerID":849039310,"Points":7591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33388","ServerKey":"pl181","X":655,"Y":591},{"Bonus":0,"Continent":"K33","ID":33389,"Name":"Szlachcic","PlayerID":698160606,"Points":9915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33389","ServerKey":"pl181","X":383,"Y":361},{"Bonus":0,"Continent":"K66","ID":33390,"Name":"A008","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33390","ServerKey":"pl181","X":602,"Y":649},{"Bonus":0,"Continent":"K36","ID":33391,"Name":"Wioska barbarzyƄska","PlayerID":698241117,"Points":3876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33391","ServerKey":"pl181","X":643,"Y":390},{"Bonus":0,"Continent":"K43","ID":33392,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":8641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33392","ServerKey":"pl181","X":318,"Y":491},{"Bonus":0,"Continent":"K35","ID":33393,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":8384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33393","ServerKey":"pl181","X":599,"Y":348},{"Bonus":0,"Continent":"K43","ID":33394,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33394","ServerKey":"pl181","X":319,"Y":494},{"Bonus":0,"Continent":"K65","ID":33395,"Name":"Kreskowo_3","PlayerID":699567608,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33395","ServerKey":"pl181","X":594,"Y":652},{"Bonus":0,"Continent":"K64","ID":33396,"Name":"025|| Crater","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33396","ServerKey":"pl181","X":467,"Y":679},{"Bonus":0,"Continent":"K56","ID":33397,"Name":"Didiek","PlayerID":849070946,"Points":6437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33397","ServerKey":"pl181","X":669,"Y":567},{"Bonus":0,"Continent":"K43","ID":33398,"Name":"M181_011","PlayerID":393668,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33398","ServerKey":"pl181","X":337,"Y":435},{"Bonus":0,"Continent":"K36","ID":33399,"Name":"!!36 94 Adancata","PlayerID":698361257,"Points":6310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33399","ServerKey":"pl181","X":649,"Y":395},{"Bonus":0,"Continent":"K64","ID":33401,"Name":"[011]","PlayerID":9094538,"Points":8109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33401","ServerKey":"pl181","X":423,"Y":659},{"Bonus":0,"Continent":"K64","ID":33403,"Name":"R 014 ~Markart~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33403","ServerKey":"pl181","X":485,"Y":680},{"Bonus":0,"Continent":"K65","ID":33404,"Name":"024","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33404","ServerKey":"pl181","X":530,"Y":681},{"Bonus":0,"Continent":"K33","ID":33405,"Name":"Pparkerowska","PlayerID":849098299,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33405","ServerKey":"pl181","X":355,"Y":387},{"Bonus":0,"Continent":"K53","ID":33406,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33406","ServerKey":"pl181","X":346,"Y":598},{"Bonus":4,"Continent":"K46","ID":33407,"Name":"#026.548|482","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33407","ServerKey":"pl181","X":667,"Y":433},{"Bonus":0,"Continent":"K53","ID":33408,"Name":"Taran","PlayerID":6180190,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33408","ServerKey":"pl181","X":339,"Y":584},{"Bonus":0,"Continent":"K66","ID":33409,"Name":"~~087~~","PlayerID":699567608,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33409","ServerKey":"pl181","X":631,"Y":617},{"Bonus":0,"Continent":"K43","ID":33410,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33410","ServerKey":"pl181","X":321,"Y":493},{"Bonus":0,"Continent":"K35","ID":33411,"Name":"Wioska IX","PlayerID":698200480,"Points":6904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33411","ServerKey":"pl181","X":580,"Y":340},{"Bonus":0,"Continent":"K64","ID":33412,"Name":"079","PlayerID":699336777,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33412","ServerKey":"pl181","X":472,"Y":616},{"Bonus":0,"Continent":"K63","ID":33413,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33413","ServerKey":"pl181","X":383,"Y":637},{"Bonus":0,"Continent":"K36","ID":33415,"Name":"ADEN","PlayerID":698588535,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33415","ServerKey":"pl181","X":603,"Y":350},{"Bonus":0,"Continent":"K34","ID":33416,"Name":"Ob Konfederacja +","PlayerID":848915730,"Points":7275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33416","ServerKey":"pl181","X":436,"Y":334},{"Bonus":0,"Continent":"K43","ID":33417,"Name":"Barbakasia","PlayerID":849098299,"Points":2743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33417","ServerKey":"pl181","X":344,"Y":410},{"Bonus":0,"Continent":"K66","ID":33418,"Name":"Wioska 109","PlayerID":848971079,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33418","ServerKey":"pl181","X":638,"Y":608},{"Bonus":0,"Continent":"K56","ID":33419,"Name":"Wioska 123","PlayerID":848971079,"Points":7135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33419","ServerKey":"pl181","X":682,"Y":523},{"Bonus":0,"Continent":"K64","ID":33420,"Name":"B002","PlayerID":8954402,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33420","ServerKey":"pl181","X":468,"Y":672},{"Bonus":0,"Continent":"K34","ID":33421,"Name":"059","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33421","ServerKey":"pl181","X":455,"Y":324},{"Bonus":7,"Continent":"K53","ID":33422,"Name":"Mniejsze zƂo 0093","PlayerID":699794765,"Points":6100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33422","ServerKey":"pl181","X":322,"Y":540},{"Bonus":0,"Continent":"K36","ID":33423,"Name":"-04-","PlayerID":699837826,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33423","ServerKey":"pl181","X":623,"Y":371},{"Bonus":0,"Continent":"K53","ID":33424,"Name":"Wioska barbarzyƄska","PlayerID":8877156,"Points":7806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33424","ServerKey":"pl181","X":348,"Y":599},{"Bonus":7,"Continent":"K65","ID":33425,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33425","ServerKey":"pl181","X":591,"Y":650},{"Bonus":0,"Continent":"K65","ID":33426,"Name":"AG16","PlayerID":699876345,"Points":6210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33426","ServerKey":"pl181","X":590,"Y":659},{"Bonus":0,"Continent":"K46","ID":33427,"Name":"#050.","PlayerID":556154,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33427","ServerKey":"pl181","X":666,"Y":429},{"Bonus":0,"Continent":"K43","ID":33428,"Name":"Out of Touch","PlayerID":698962117,"Points":2881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33428","ServerKey":"pl181","X":329,"Y":447},{"Bonus":0,"Continent":"K46","ID":33429,"Name":"058 | PALESTINA","PlayerID":9228039,"Points":8262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33429","ServerKey":"pl181","X":656,"Y":417},{"Bonus":0,"Continent":"K34","ID":33430,"Name":"[0285]","PlayerID":8630972,"Points":4740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33430","ServerKey":"pl181","X":475,"Y":319},{"Bonus":0,"Continent":"K66","ID":33431,"Name":"#052#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33431","ServerKey":"pl181","X":625,"Y":631},{"Bonus":0,"Continent":"K34","ID":33432,"Name":"098...tomecz","PlayerID":6920960,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33432","ServerKey":"pl181","X":479,"Y":325},{"Bonus":0,"Continent":"K56","ID":33433,"Name":"004","PlayerID":699493750,"Points":6404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33433","ServerKey":"pl181","X":668,"Y":569},{"Bonus":0,"Continent":"K35","ID":33434,"Name":"AAA","PlayerID":1006847,"Points":6677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33434","ServerKey":"pl181","X":533,"Y":321},{"Bonus":0,"Continent":"K56","ID":33435,"Name":"Wioska 125","PlayerID":848971079,"Points":8223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33435","ServerKey":"pl181","X":680,"Y":525},{"Bonus":0,"Continent":"K65","ID":33436,"Name":"*045","PlayerID":699567608,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33436","ServerKey":"pl181","X":590,"Y":651},{"Bonus":0,"Continent":"K34","ID":33437,"Name":"[B]_[022] Dejv.oldplyr","PlayerID":699380607,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33437","ServerKey":"pl181","X":419,"Y":342},{"Bonus":0,"Continent":"K35","ID":33438,"Name":"A.04 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":4881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33438","ServerKey":"pl181","X":564,"Y":334},{"Bonus":0,"Continent":"K56","ID":33439,"Name":"B 053","PlayerID":8078914,"Points":5974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33439","ServerKey":"pl181","X":671,"Y":540},{"Bonus":0,"Continent":"K56","ID":33440,"Name":"O51 Saloniki","PlayerID":699272880,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33440","ServerKey":"pl181","X":675,"Y":535},{"Bonus":0,"Continent":"K36","ID":33441,"Name":"I#032","PlayerID":2065730,"Points":7566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33441","ServerKey":"pl181","X":621,"Y":363},{"Bonus":0,"Continent":"K34","ID":33442,"Name":"060","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33442","ServerKey":"pl181","X":451,"Y":331},{"Bonus":2,"Continent":"K43","ID":33443,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33443","ServerKey":"pl181","X":324,"Y":492},{"Bonus":0,"Continent":"K46","ID":33444,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33444","ServerKey":"pl181","X":683,"Y":498},{"Bonus":0,"Continent":"K33","ID":33445,"Name":"Szlachcic","PlayerID":3484132,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33445","ServerKey":"pl181","X":394,"Y":354},{"Bonus":0,"Continent":"K63","ID":33446,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33446","ServerKey":"pl181","X":389,"Y":642},{"Bonus":0,"Continent":"K56","ID":33447,"Name":"E.01","PlayerID":699737356,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33447","ServerKey":"pl181","X":679,"Y":505},{"Bonus":0,"Continent":"K36","ID":33448,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":8336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33448","ServerKey":"pl181","X":642,"Y":395},{"Bonus":0,"Continent":"K64","ID":33449,"Name":"|036| Kalavarda","PlayerID":699393742,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33449","ServerKey":"pl181","X":494,"Y":679},{"Bonus":0,"Continent":"K65","ID":33450,"Name":"?011 Lowruks","PlayerID":699828685,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33450","ServerKey":"pl181","X":541,"Y":659},{"Bonus":0,"Continent":"K35","ID":33451,"Name":"Wioska 1","PlayerID":7560474,"Points":7654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33451","ServerKey":"pl181","X":573,"Y":335},{"Bonus":0,"Continent":"K33","ID":33452,"Name":"*075*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33452","ServerKey":"pl181","X":360,"Y":390},{"Bonus":0,"Continent":"K35","ID":33453,"Name":"ADEN","PlayerID":698588535,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33453","ServerKey":"pl181","X":579,"Y":343},{"Bonus":0,"Continent":"K34","ID":33454,"Name":"177...Segadorr-m","PlayerID":6920960,"Points":10713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33454","ServerKey":"pl181","X":443,"Y":325},{"Bonus":0,"Continent":"K66","ID":33455,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33455","ServerKey":"pl181","X":620,"Y":639},{"Bonus":0,"Continent":"K63","ID":33456,"Name":"D.021","PlayerID":849088243,"Points":8303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33456","ServerKey":"pl181","X":393,"Y":643},{"Bonus":0,"Continent":"K45","ID":33457,"Name":"Wioska barbarzyƄska 2","PlayerID":698349125,"Points":6614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33457","ServerKey":"pl181","X":502,"Y":482},{"Bonus":0,"Continent":"K53","ID":33458,"Name":"wioska","PlayerID":7183372,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33458","ServerKey":"pl181","X":350,"Y":599},{"Bonus":0,"Continent":"K64","ID":33459,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":5879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33459","ServerKey":"pl181","X":420,"Y":663},{"Bonus":0,"Continent":"K34","ID":33460,"Name":"080.Stradi","PlayerID":698365960,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33460","ServerKey":"pl181","X":446,"Y":329},{"Bonus":0,"Continent":"K43","ID":33461,"Name":"-005-","PlayerID":1693936,"Points":3487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33461","ServerKey":"pl181","X":347,"Y":400},{"Bonus":0,"Continent":"K34","ID":33462,"Name":"#0194 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33462","ServerKey":"pl181","X":462,"Y":323},{"Bonus":0,"Continent":"K34","ID":33463,"Name":".achim.","PlayerID":6936607,"Points":7164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33463","ServerKey":"pl181","X":486,"Y":317},{"Bonus":0,"Continent":"K56","ID":33464,"Name":"Nowa 52","PlayerID":698702991,"Points":7795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33464","ServerKey":"pl181","X":669,"Y":560},{"Bonus":0,"Continent":"K53","ID":33465,"Name":"XXDe","PlayerID":849096458,"Points":7577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33465","ServerKey":"pl181","X":326,"Y":557},{"Bonus":0,"Continent":"K43","ID":33466,"Name":"Out of Touch","PlayerID":698962117,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33466","ServerKey":"pl181","X":327,"Y":442},{"Bonus":0,"Continent":"K36","ID":33467,"Name":"Duolingo","PlayerID":7973893,"Points":7702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33467","ServerKey":"pl181","X":647,"Y":396},{"Bonus":0,"Continent":"K56","ID":33468,"Name":"O60 Roslagen","PlayerID":699272880,"Points":5423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33468","ServerKey":"pl181","X":672,"Y":556},{"Bonus":0,"Continent":"K66","ID":33469,"Name":"Lady Madelaine","PlayerID":2269943,"Points":7008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33469","ServerKey":"pl181","X":644,"Y":608},{"Bonus":0,"Continent":"K64","ID":33470,"Name":"Z|007| Bari","PlayerID":699393742,"Points":7723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33470","ServerKey":"pl181","X":466,"Y":683},{"Bonus":0,"Continent":"K53","ID":33471,"Name":"C0267","PlayerID":8841266,"Points":7032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33471","ServerKey":"pl181","X":317,"Y":506},{"Bonus":0,"Continent":"K46","ID":33472,"Name":"City","PlayerID":699491076,"Points":5112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33472","ServerKey":"pl181","X":645,"Y":402},{"Bonus":0,"Continent":"K36","ID":33473,"Name":"111","PlayerID":849092309,"Points":5743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33473","ServerKey":"pl181","X":637,"Y":381},{"Bonus":0,"Continent":"K65","ID":33474,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33474","ServerKey":"pl181","X":511,"Y":675},{"Bonus":9,"Continent":"K63","ID":33475,"Name":"A 096","PlayerID":7085510,"Points":8542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33475","ServerKey":"pl181","X":377,"Y":635},{"Bonus":0,"Continent":"K55","ID":33476,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33476","ServerKey":"pl181","X":564,"Y":563},{"Bonus":0,"Continent":"K53","ID":33477,"Name":"Nexo","PlayerID":849098387,"Points":5914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33477","ServerKey":"pl181","X":329,"Y":564},{"Bonus":0,"Continent":"K36","ID":33478,"Name":"K36 - [006] Before Land","PlayerID":699088769,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33478","ServerKey":"pl181","X":625,"Y":368},{"Bonus":0,"Continent":"K46","ID":33479,"Name":"#Sewa#004","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33479","ServerKey":"pl181","X":669,"Y":442},{"Bonus":0,"Continent":"K35","ID":33480,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":7256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33480","ServerKey":"pl181","X":565,"Y":334},{"Bonus":0,"Continent":"K63","ID":33481,"Name":"033 Dawaj dawaj Pomagaj pomagaj!","PlayerID":6354098,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33481","ServerKey":"pl181","X":380,"Y":634},{"Bonus":0,"Continent":"K64","ID":33482,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33482","ServerKey":"pl181","X":414,"Y":654},{"Bonus":0,"Continent":"K35","ID":33483,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33483","ServerKey":"pl181","X":558,"Y":330},{"Bonus":0,"Continent":"K35","ID":33484,"Name":"AAA","PlayerID":1006847,"Points":8149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33484","ServerKey":"pl181","X":528,"Y":319},{"Bonus":0,"Continent":"K64","ID":33485,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33485","ServerKey":"pl181","X":444,"Y":674},{"Bonus":0,"Continent":"K33","ID":33486,"Name":"Wioska Westor 4","PlayerID":699530673,"Points":4249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33486","ServerKey":"pl181","X":357,"Y":395},{"Bonus":0,"Continent":"K66","ID":33487,"Name":"#097#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33487","ServerKey":"pl181","X":627,"Y":630},{"Bonus":0,"Continent":"K65","ID":33489,"Name":"0129","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33489","ServerKey":"pl181","X":549,"Y":674},{"Bonus":0,"Continent":"K34","ID":33490,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33490","ServerKey":"pl181","X":433,"Y":329},{"Bonus":0,"Continent":"K53","ID":33491,"Name":"106","PlayerID":7098955,"Points":9504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33491","ServerKey":"pl181","X":319,"Y":505},{"Bonus":0,"Continent":"K46","ID":33492,"Name":"021 toni","PlayerID":849098769,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33492","ServerKey":"pl181","X":677,"Y":462},{"Bonus":0,"Continent":"K56","ID":33493,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33493","ServerKey":"pl181","X":678,"Y":544},{"Bonus":0,"Continent":"K46","ID":33494,"Name":"039 Mucharadza","PlayerID":9238175,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33494","ServerKey":"pl181","X":664,"Y":418},{"Bonus":0,"Continent":"K46","ID":33495,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33495","ServerKey":"pl181","X":611,"Y":401},{"Bonus":0,"Continent":"K56","ID":33496,"Name":"Didi","PlayerID":849070946,"Points":8991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33496","ServerKey":"pl181","X":671,"Y":558},{"Bonus":0,"Continent":"K65","ID":33497,"Name":"|046| Wioska Mikimixx","PlayerID":699781762,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33497","ServerKey":"pl181","X":502,"Y":679},{"Bonus":0,"Continent":"K53","ID":33498,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33498","ServerKey":"pl181","X":323,"Y":525},{"Bonus":0,"Continent":"K65","ID":33500,"Name":"02. Mamy To!","PlayerID":699423167,"Points":3936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33500","ServerKey":"pl181","X":589,"Y":660},{"Bonus":0,"Continent":"K64","ID":33501,"Name":"D.004","PlayerID":849088243,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33501","ServerKey":"pl181","X":401,"Y":654},{"Bonus":0,"Continent":"K63","ID":33502,"Name":"017","PlayerID":699083129,"Points":5340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33502","ServerKey":"pl181","X":355,"Y":611},{"Bonus":0,"Continent":"K53","ID":33503,"Name":"Mniejsze zƂo 0099","PlayerID":699794765,"Points":8130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33503","ServerKey":"pl181","X":323,"Y":541},{"Bonus":0,"Continent":"K53","ID":33504,"Name":"Wedkarz","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33504","ServerKey":"pl181","X":330,"Y":546},{"Bonus":0,"Continent":"K43","ID":33505,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33505","ServerKey":"pl181","X":320,"Y":472},{"Bonus":0,"Continent":"K65","ID":33506,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33506","ServerKey":"pl181","X":505,"Y":681},{"Bonus":0,"Continent":"K44","ID":33507,"Name":"00631 Wioska","PlayerID":3909522,"Points":7333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33507","ServerKey":"pl181","X":446,"Y":426},{"Bonus":0,"Continent":"K46","ID":33508,"Name":"022 :)","PlayerID":9238175,"Points":10465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33508","ServerKey":"pl181","X":658,"Y":418},{"Bonus":0,"Continent":"K43","ID":33509,"Name":"*258*","PlayerID":699273451,"Points":2875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33509","ServerKey":"pl181","X":342,"Y":414},{"Bonus":0,"Continent":"K66","ID":33510,"Name":"Monetkownia","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33510","ServerKey":"pl181","X":621,"Y":629},{"Bonus":0,"Continent":"K36","ID":33511,"Name":"XDX","PlayerID":699098531,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33511","ServerKey":"pl181","X":610,"Y":352},{"Bonus":0,"Continent":"K66","ID":33512,"Name":"ZUBRAWKA 051","PlayerID":33900,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33512","ServerKey":"pl181","X":614,"Y":635},{"Bonus":0,"Continent":"K36","ID":33513,"Name":"081 ƚwiąteczna Bombka","PlayerID":699491076,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33513","ServerKey":"pl181","X":653,"Y":399},{"Bonus":0,"Continent":"K35","ID":33514,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":5771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33514","ServerKey":"pl181","X":596,"Y":351},{"Bonus":0,"Continent":"K33","ID":33515,"Name":"Szlachcic","PlayerID":698160606,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33515","ServerKey":"pl181","X":384,"Y":366},{"Bonus":0,"Continent":"K34","ID":33516,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":6954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33516","ServerKey":"pl181","X":430,"Y":336},{"Bonus":0,"Continent":"K33","ID":33517,"Name":"*003*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33517","ServerKey":"pl181","X":352,"Y":391},{"Bonus":0,"Continent":"K65","ID":33518,"Name":"0251","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33518","ServerKey":"pl181","X":534,"Y":678},{"Bonus":0,"Continent":"K43","ID":33519,"Name":"Wioska barbarzyƄska","PlayerID":699323302,"Points":3218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33519","ServerKey":"pl181","X":355,"Y":402},{"Bonus":0,"Continent":"K46","ID":33520,"Name":"065 Wioska 014","PlayerID":9238175,"Points":9206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33520","ServerKey":"pl181","X":663,"Y":415},{"Bonus":0,"Continent":"K43","ID":33521,"Name":"SJ1","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33521","ServerKey":"pl181","X":322,"Y":457},{"Bonus":0,"Continent":"K46","ID":33522,"Name":"048 | PALESTINA","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33522","ServerKey":"pl181","X":662,"Y":419},{"Bonus":0,"Continent":"K46","ID":33523,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33523","ServerKey":"pl181","X":677,"Y":459},{"Bonus":0,"Continent":"K43","ID":33524,"Name":"*246*","PlayerID":699273451,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33524","ServerKey":"pl181","X":335,"Y":437},{"Bonus":0,"Continent":"K33","ID":33525,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33525","ServerKey":"pl181","X":395,"Y":354},{"Bonus":0,"Continent":"K63","ID":33526,"Name":"Opol","PlayerID":699864013,"Points":4240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33526","ServerKey":"pl181","X":357,"Y":613},{"Bonus":0,"Continent":"K35","ID":33527,"Name":"Suppi","PlayerID":7462660,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33527","ServerKey":"pl181","X":595,"Y":348},{"Bonus":0,"Continent":"K53","ID":33528,"Name":"Komornik 006","PlayerID":698290577,"Points":8171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33528","ServerKey":"pl181","X":325,"Y":537},{"Bonus":0,"Continent":"K43","ID":33529,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33529","ServerKey":"pl181","X":329,"Y":455},{"Bonus":0,"Continent":"K65","ID":33531,"Name":"0300","PlayerID":698659980,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33531","ServerKey":"pl181","X":569,"Y":662},{"Bonus":0,"Continent":"K65","ID":33532,"Name":"amator","PlayerID":848915531,"Points":5548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33532","ServerKey":"pl181","X":561,"Y":666},{"Bonus":0,"Continent":"K66","ID":33533,"Name":"#051#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33533","ServerKey":"pl181","X":628,"Y":632},{"Bonus":0,"Continent":"K63","ID":33534,"Name":"A 033","PlayerID":699342219,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33534","ServerKey":"pl181","X":370,"Y":625},{"Bonus":0,"Continent":"K43","ID":33535,"Name":"*254*","PlayerID":699273451,"Points":3106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33535","ServerKey":"pl181","X":339,"Y":412},{"Bonus":0,"Continent":"K56","ID":33536,"Name":"B 039","PlayerID":8078914,"Points":7104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33536","ServerKey":"pl181","X":675,"Y":530},{"Bonus":0,"Continent":"K36","ID":33537,"Name":".:006:.","PlayerID":849078297,"Points":7384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33537","ServerKey":"pl181","X":632,"Y":383},{"Bonus":0,"Continent":"K46","ID":33539,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33539","ServerKey":"pl181","X":673,"Y":459},{"Bonus":6,"Continent":"K53","ID":33540,"Name":"!Wszystkie rybki mają ...?","PlayerID":849012521,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33540","ServerKey":"pl181","X":331,"Y":567},{"Bonus":0,"Continent":"K46","ID":33541,"Name":"Victor","PlayerID":699737356,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33541","ServerKey":"pl181","X":678,"Y":499},{"Bonus":0,"Continent":"K64","ID":33542,"Name":"D.003","PlayerID":849088243,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33542","ServerKey":"pl181","X":401,"Y":652},{"Bonus":0,"Continent":"K53","ID":33543,"Name":"Taran","PlayerID":6180190,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33543","ServerKey":"pl181","X":336,"Y":579},{"Bonus":0,"Continent":"K53","ID":33544,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33544","ServerKey":"pl181","X":334,"Y":561},{"Bonus":0,"Continent":"K53","ID":33545,"Name":"C0160","PlayerID":8841266,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33545","ServerKey":"pl181","X":324,"Y":535},{"Bonus":0,"Continent":"K56","ID":33546,"Name":"Iskierka","PlayerID":848932879,"Points":1800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33546","ServerKey":"pl181","X":677,"Y":550},{"Bonus":0,"Continent":"K43","ID":33547,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33547","ServerKey":"pl181","X":324,"Y":498},{"Bonus":0,"Continent":"K66","ID":33548,"Name":"Wioska 096","PlayerID":848971079,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33548","ServerKey":"pl181","X":645,"Y":603},{"Bonus":0,"Continent":"K66","ID":33549,"Name":"Sony 911","PlayerID":1415009,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33549","ServerKey":"pl181","X":617,"Y":631},{"Bonus":0,"Continent":"K66","ID":33550,"Name":"WB 03","PlayerID":2269943,"Points":8295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33550","ServerKey":"pl181","X":638,"Y":611},{"Bonus":0,"Continent":"K33","ID":33551,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33551","ServerKey":"pl181","X":391,"Y":353},{"Bonus":0,"Continent":"K64","ID":33552,"Name":"045 Brenna","PlayerID":699834004,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33552","ServerKey":"pl181","X":466,"Y":681},{"Bonus":0,"Continent":"K64","ID":33553,"Name":"|034| Kamiros Skala","PlayerID":699393742,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33553","ServerKey":"pl181","X":497,"Y":679},{"Bonus":0,"Continent":"K46","ID":33554,"Name":"DarudĆŒystan181","PlayerID":699574408,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33554","ServerKey":"pl181","X":674,"Y":470},{"Bonus":0,"Continent":"K65","ID":33555,"Name":"Muchomor *011*","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33555","ServerKey":"pl181","X":518,"Y":678},{"Bonus":0,"Continent":"K33","ID":33556,"Name":"Szlachcic","PlayerID":698160606,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33556","ServerKey":"pl181","X":382,"Y":359},{"Bonus":0,"Continent":"K64","ID":33557,"Name":"0003. HMS St Andrew 96 (1670)","PlayerID":699121671,"Points":7710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33557","ServerKey":"pl181","X":473,"Y":676},{"Bonus":0,"Continent":"K46","ID":33558,"Name":"Jaaa","PlayerID":698635863,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33558","ServerKey":"pl181","X":675,"Y":488},{"Bonus":0,"Continent":"K56","ID":33559,"Name":"055. Gaena","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33559","ServerKey":"pl181","X":659,"Y":590},{"Bonus":0,"Continent":"K53","ID":33560,"Name":"off 100 %","PlayerID":849012521,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33560","ServerKey":"pl181","X":338,"Y":571},{"Bonus":0,"Continent":"K53","ID":33561,"Name":"Most","PlayerID":699265922,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33561","ServerKey":"pl181","X":327,"Y":549},{"Bonus":0,"Continent":"K43","ID":33562,"Name":"12. Lyria","PlayerID":848910122,"Points":389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33562","ServerKey":"pl181","X":330,"Y":450},{"Bonus":0,"Continent":"K53","ID":33563,"Name":"000 Plutosea","PlayerID":9280477,"Points":11307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33563","ServerKey":"pl181","X":327,"Y":554},{"Bonus":0,"Continent":"K36","ID":33564,"Name":"023 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33564","ServerKey":"pl181","X":646,"Y":393},{"Bonus":0,"Continent":"K53","ID":33565,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33565","ServerKey":"pl181","X":331,"Y":556},{"Bonus":0,"Continent":"K65","ID":33566,"Name":"03 Twierdza","PlayerID":849097981,"Points":6119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33566","ServerKey":"pl181","X":539,"Y":676},{"Bonus":0,"Continent":"K64","ID":33567,"Name":"Psycha Siada","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33567","ServerKey":"pl181","X":451,"Y":668},{"Bonus":0,"Continent":"K33","ID":33568,"Name":"*025*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33568","ServerKey":"pl181","X":357,"Y":389},{"Bonus":0,"Continent":"K43","ID":33569,"Name":"Out of Touch","PlayerID":698962117,"Points":7943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33569","ServerKey":"pl181","X":327,"Y":441},{"Bonus":0,"Continent":"K46","ID":33570,"Name":"Partyzantka ludowa","PlayerID":699574408,"Points":10010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33570","ServerKey":"pl181","X":674,"Y":464},{"Bonus":0,"Continent":"K44","ID":33571,"Name":"Szlachcic","PlayerID":699098531,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33571","ServerKey":"pl181","X":493,"Y":479},{"Bonus":0,"Continent":"K56","ID":33572,"Name":"Didi","PlayerID":849070946,"Points":7475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33572","ServerKey":"pl181","X":667,"Y":564},{"Bonus":0,"Continent":"K65","ID":33573,"Name":"04 Bastion","PlayerID":849097981,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33573","ServerKey":"pl181","X":541,"Y":673},{"Bonus":0,"Continent":"K56","ID":33574,"Name":"Chrztowo","PlayerID":849039310,"Points":7058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33574","ServerKey":"pl181","X":656,"Y":583},{"Bonus":1,"Continent":"K46","ID":33575,"Name":"[007] Kupa po pachy","PlayerID":849095068,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33575","ServerKey":"pl181","X":673,"Y":437},{"Bonus":0,"Continent":"K53","ID":33576,"Name":"(014)Frostlands","PlayerID":849098695,"Points":6393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33576","ServerKey":"pl181","X":334,"Y":564},{"Bonus":0,"Continent":"K63","ID":33577,"Name":"Mroczny Zamek 030","PlayerID":699699601,"Points":6039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33577","ServerKey":"pl181","X":384,"Y":639},{"Bonus":0,"Continent":"K35","ID":33578,"Name":"-0008-","PlayerID":2972329,"Points":6339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33578","ServerKey":"pl181","X":544,"Y":328},{"Bonus":0,"Continent":"K35","ID":33579,"Name":"AAA","PlayerID":1006847,"Points":6549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33579","ServerKey":"pl181","X":532,"Y":320},{"Bonus":0,"Continent":"K43","ID":33580,"Name":"Out of Touch","PlayerID":698962117,"Points":3640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33580","ServerKey":"pl181","X":328,"Y":437},{"Bonus":0,"Continent":"K56","ID":33581,"Name":"B 040","PlayerID":8078914,"Points":7621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33581","ServerKey":"pl181","X":680,"Y":534},{"Bonus":0,"Continent":"K43","ID":33583,"Name":"*269*","PlayerID":699273451,"Points":2286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33583","ServerKey":"pl181","X":345,"Y":407},{"Bonus":0,"Continent":"K46","ID":33584,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":4045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33584","ServerKey":"pl181","X":672,"Y":451},{"Bonus":0,"Continent":"K35","ID":33585,"Name":"Sparta","PlayerID":698680806,"Points":8914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33585","ServerKey":"pl181","X":503,"Y":323},{"Bonus":0,"Continent":"K63","ID":33586,"Name":"015 Dajesz Pan radę?","PlayerID":6354098,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33586","ServerKey":"pl181","X":376,"Y":625},{"Bonus":0,"Continent":"K34","ID":33588,"Name":"fff","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33588","ServerKey":"pl181","X":473,"Y":321},{"Bonus":0,"Continent":"K63","ID":33589,"Name":"022","PlayerID":699083129,"Points":4455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33589","ServerKey":"pl181","X":355,"Y":607},{"Bonus":0,"Continent":"K33","ID":33590,"Name":"Szlachcic","PlayerID":3484132,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33590","ServerKey":"pl181","X":395,"Y":358},{"Bonus":0,"Continent":"K56","ID":33591,"Name":"_PUSTA","PlayerID":698768565,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33591","ServerKey":"pl181","X":653,"Y":594},{"Bonus":0,"Continent":"K34","ID":33592,"Name":"POOL","PlayerID":8123790,"Points":1340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33592","ServerKey":"pl181","X":401,"Y":351},{"Bonus":0,"Continent":"K33","ID":33593,"Name":"*231*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33593","ServerKey":"pl181","X":361,"Y":386},{"Bonus":0,"Continent":"K64","ID":33594,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33594","ServerKey":"pl181","X":435,"Y":670},{"Bonus":0,"Continent":"K35","ID":33595,"Name":"Lord Lord Franek .#174","PlayerID":698420691,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33595","ServerKey":"pl181","X":519,"Y":321},{"Bonus":0,"Continent":"K36","ID":33596,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33596","ServerKey":"pl181","X":612,"Y":360},{"Bonus":0,"Continent":"K43","ID":33597,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33597","ServerKey":"pl181","X":338,"Y":424},{"Bonus":0,"Continent":"K64","ID":33598,"Name":"014 Wirginia","PlayerID":699238479,"Points":5679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33598","ServerKey":"pl181","X":491,"Y":683},{"Bonus":0,"Continent":"K46","ID":33600,"Name":"061 | PALESTINA","PlayerID":9228039,"Points":4314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33600","ServerKey":"pl181","X":656,"Y":416},{"Bonus":0,"Continent":"K46","ID":33601,"Name":"079. Hadrianopolis","PlayerID":849091866,"Points":8781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33601","ServerKey":"pl181","X":654,"Y":414},{"Bonus":0,"Continent":"K43","ID":33602,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":8354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33602","ServerKey":"pl181","X":322,"Y":478},{"Bonus":0,"Continent":"K64","ID":33603,"Name":"013","PlayerID":8966820,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33603","ServerKey":"pl181","X":443,"Y":668},{"Bonus":0,"Continent":"K65","ID":33604,"Name":"005","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33604","ServerKey":"pl181","X":531,"Y":679},{"Bonus":0,"Continent":"K53","ID":33605,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33605","ServerKey":"pl181","X":338,"Y":500},{"Bonus":0,"Continent":"K53","ID":33606,"Name":"C0173","PlayerID":8841266,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33606","ServerKey":"pl181","X":317,"Y":514},{"Bonus":0,"Continent":"K36","ID":33607,"Name":"Wioska Luk160","PlayerID":699857387,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33607","ServerKey":"pl181","X":618,"Y":366},{"Bonus":0,"Continent":"K56","ID":33608,"Name":"Wioska Sir Zordon 007","PlayerID":478956,"Points":3731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33608","ServerKey":"pl181","X":660,"Y":580},{"Bonus":0,"Continent":"K64","ID":33609,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33609","ServerKey":"pl181","X":444,"Y":672},{"Bonus":0,"Continent":"K56","ID":33610,"Name":"D10","PlayerID":848995478,"Points":3384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33610","ServerKey":"pl181","X":667,"Y":556},{"Bonus":0,"Continent":"K64","ID":33611,"Name":"005","PlayerID":699246032,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33611","ServerKey":"pl181","X":408,"Y":655},{"Bonus":0,"Continent":"K35","ID":33612,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33612","ServerKey":"pl181","X":520,"Y":319},{"Bonus":0,"Continent":"K56","ID":33613,"Name":"Nowa 50","PlayerID":698702991,"Points":6988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33613","ServerKey":"pl181","X":657,"Y":581},{"Bonus":0,"Continent":"K53","ID":33614,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33614","ServerKey":"pl181","X":324,"Y":527},{"Bonus":0,"Continent":"K34","ID":33615,"Name":"Wioska 10","PlayerID":951823,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33615","ServerKey":"pl181","X":496,"Y":323},{"Bonus":0,"Continent":"K53","ID":33616,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33616","ServerKey":"pl181","X":330,"Y":558},{"Bonus":0,"Continent":"K64","ID":33617,"Name":"Miejsce","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33617","ServerKey":"pl181","X":489,"Y":668},{"Bonus":0,"Continent":"K36","ID":33618,"Name":"12.","PlayerID":699562182,"Points":5171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33618","ServerKey":"pl181","X":631,"Y":371},{"Bonus":0,"Continent":"K43","ID":33619,"Name":"Bona Mediolan","PlayerID":849098299,"Points":6203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33619","ServerKey":"pl181","X":344,"Y":409},{"Bonus":0,"Continent":"K65","ID":33620,"Name":"097 invidia","PlayerID":849093426,"Points":9306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33620","ServerKey":"pl181","X":523,"Y":676},{"Bonus":0,"Continent":"K36","ID":33621,"Name":"139 Dolina Trzciny","PlayerID":699491076,"Points":6773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33621","ServerKey":"pl181","X":649,"Y":398},{"Bonus":0,"Continent":"K44","ID":33622,"Name":"...Just like that","PlayerID":699723284,"Points":7862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33622","ServerKey":"pl181","X":466,"Y":470},{"Bonus":0,"Continent":"K36","ID":33623,"Name":"Colorado Springs","PlayerID":1990750,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33623","ServerKey":"pl181","X":603,"Y":355},{"Bonus":0,"Continent":"K53","ID":33624,"Name":"C0258","PlayerID":8841266,"Points":7921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33624","ServerKey":"pl181","X":317,"Y":508},{"Bonus":0,"Continent":"K56","ID":33625,"Name":"O59 Uppland","PlayerID":699272880,"Points":5302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33625","ServerKey":"pl181","X":673,"Y":547},{"Bonus":0,"Continent":"K64","ID":33626,"Name":"R 005 ~Samanta~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33626","ServerKey":"pl181","X":488,"Y":675},{"Bonus":0,"Continent":"K33","ID":33627,"Name":"*178*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33627","ServerKey":"pl181","X":373,"Y":373},{"Bonus":0,"Continent":"K33","ID":33628,"Name":"*104*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33628","ServerKey":"pl181","X":363,"Y":380},{"Bonus":0,"Continent":"K36","ID":33629,"Name":"-14-","PlayerID":699837826,"Points":2989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33629","ServerKey":"pl181","X":625,"Y":377},{"Bonus":0,"Continent":"K46","ID":33630,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33630","ServerKey":"pl181","X":679,"Y":470},{"Bonus":0,"Continent":"K34","ID":33631,"Name":"[B]_[039] Dejv.oldplyr","PlayerID":699380607,"Points":4399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33631","ServerKey":"pl181","X":419,"Y":343},{"Bonus":0,"Continent":"K55","ID":33632,"Name":"Wioska dziwas2","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33632","ServerKey":"pl181","X":525,"Y":536},{"Bonus":0,"Continent":"K46","ID":33633,"Name":"085. Raphae","PlayerID":849091866,"Points":9002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33633","ServerKey":"pl181","X":656,"Y":413},{"Bonus":6,"Continent":"K53","ID":33634,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33634","ServerKey":"pl181","X":330,"Y":559},{"Bonus":0,"Continent":"K53","ID":33635,"Name":"Allinge","PlayerID":849098387,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33635","ServerKey":"pl181","X":335,"Y":571},{"Bonus":0,"Continent":"K34","ID":33636,"Name":"225","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33636","ServerKey":"pl181","X":422,"Y":338},{"Bonus":0,"Continent":"K35","ID":33637,"Name":"UltraInstynkt","PlayerID":699710633,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33637","ServerKey":"pl181","X":578,"Y":333},{"Bonus":8,"Continent":"K43","ID":33638,"Name":"SJ4","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33638","ServerKey":"pl181","X":324,"Y":453},{"Bonus":0,"Continent":"K43","ID":33640,"Name":"Wioska Markus2008","PlayerID":2418002,"Points":10034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33640","ServerKey":"pl181","X":334,"Y":422},{"Bonus":0,"Continent":"K56","ID":33641,"Name":"_PUSTA","PlayerID":698768565,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33641","ServerKey":"pl181","X":654,"Y":595},{"Bonus":0,"Continent":"K46","ID":33642,"Name":"102. Aenus","PlayerID":849091866,"Points":5504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33642","ServerKey":"pl181","X":659,"Y":410},{"Bonus":0,"Continent":"K34","ID":33643,"Name":"#0191 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33643","ServerKey":"pl181","X":458,"Y":327},{"Bonus":0,"Continent":"K63","ID":33644,"Name":"Komornicy 007","PlayerID":699336777,"Points":7405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33644","ServerKey":"pl181","X":355,"Y":608},{"Bonus":0,"Continent":"K63","ID":33645,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33645","ServerKey":"pl181","X":383,"Y":641},{"Bonus":0,"Continent":"K35","ID":33646,"Name":"- Arbos","PlayerID":699825236,"Points":6561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33646","ServerKey":"pl181","X":552,"Y":327},{"Bonus":8,"Continent":"K66","ID":33647,"Name":"Wioska 002","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33647","ServerKey":"pl181","X":648,"Y":600},{"Bonus":0,"Continent":"K46","ID":33648,"Name":"005 KTW","PlayerID":848883237,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33648","ServerKey":"pl181","X":635,"Y":456},{"Bonus":0,"Continent":"K63","ID":33649,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33649","ServerKey":"pl181","X":385,"Y":634},{"Bonus":0,"Continent":"K43","ID":33650,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33650","ServerKey":"pl181","X":316,"Y":499},{"Bonus":0,"Continent":"K33","ID":33651,"Name":"Szulernia","PlayerID":7249451,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33651","ServerKey":"pl181","X":376,"Y":368},{"Bonus":0,"Continent":"K43","ID":33652,"Name":"Rubiez16","PlayerID":699265922,"Points":4201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33652","ServerKey":"pl181","X":321,"Y":463},{"Bonus":0,"Continent":"K35","ID":33653,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":4758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33653","ServerKey":"pl181","X":594,"Y":344},{"Bonus":0,"Continent":"K65","ID":33654,"Name":"0527","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33654","ServerKey":"pl181","X":532,"Y":658},{"Bonus":0,"Continent":"K33","ID":33655,"Name":"Szlachcic","PlayerID":698160606,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33655","ServerKey":"pl181","X":388,"Y":356},{"Bonus":4,"Continent":"K35","ID":33656,"Name":"-002-","PlayerID":698588812,"Points":7960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33656","ServerKey":"pl181","X":542,"Y":324},{"Bonus":0,"Continent":"K63","ID":33657,"Name":"A 029","PlayerID":699342219,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33657","ServerKey":"pl181","X":368,"Y":624},{"Bonus":0,"Continent":"K53","ID":33658,"Name":"C0083","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33658","ServerKey":"pl181","X":319,"Y":510},{"Bonus":0,"Continent":"K64","ID":33659,"Name":"025 HoƂopole","PlayerID":699834004,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33659","ServerKey":"pl181","X":465,"Y":675},{"Bonus":0,"Continent":"K56","ID":33660,"Name":"Bukowe Pole","PlayerID":849039310,"Points":7514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33660","ServerKey":"pl181","X":653,"Y":586},{"Bonus":0,"Continent":"K33","ID":33661,"Name":"Szlachcic","PlayerID":3484132,"Points":10821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33661","ServerKey":"pl181","X":397,"Y":348},{"Bonus":0,"Continent":"K65","ID":33662,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33662","ServerKey":"pl181","X":502,"Y":681},{"Bonus":0,"Continent":"K53","ID":33663,"Name":"C0157","PlayerID":8841266,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33663","ServerKey":"pl181","X":320,"Y":528},{"Bonus":0,"Continent":"K53","ID":33664,"Name":"Szlachcic","PlayerID":698388578,"Points":7725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33664","ServerKey":"pl181","X":322,"Y":539},{"Bonus":5,"Continent":"K43","ID":33665,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33665","ServerKey":"pl181","X":320,"Y":468},{"Bonus":0,"Continent":"K64","ID":33666,"Name":"#Finral","PlayerID":699849210,"Points":5353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33666","ServerKey":"pl181","X":427,"Y":666},{"Bonus":0,"Continent":"K46","ID":33667,"Name":"095. Vitudurum","PlayerID":849091866,"Points":7330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33667","ServerKey":"pl181","X":652,"Y":405},{"Bonus":0,"Continent":"K65","ID":33668,"Name":"Muchomor *022*","PlayerID":606407,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33668","ServerKey":"pl181","X":524,"Y":675},{"Bonus":0,"Continent":"K66","ID":33669,"Name":"Ć»UBRAWKA 054","PlayerID":33900,"Points":9464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33669","ServerKey":"pl181","X":616,"Y":640},{"Bonus":0,"Continent":"K35","ID":33670,"Name":"A.11 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":7991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33670","ServerKey":"pl181","X":563,"Y":332},{"Bonus":0,"Continent":"K66","ID":33671,"Name":"BETON 078","PlayerID":699277039,"Points":4220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33671","ServerKey":"pl181","X":635,"Y":614},{"Bonus":8,"Continent":"K64","ID":33672,"Name":"Kair","PlayerID":849089459,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33672","ServerKey":"pl181","X":412,"Y":660},{"Bonus":0,"Continent":"K63","ID":33673,"Name":"A 009","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33673","ServerKey":"pl181","X":367,"Y":616},{"Bonus":0,"Continent":"K34","ID":33674,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":7883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33674","ServerKey":"pl181","X":428,"Y":338},{"Bonus":0,"Continent":"K35","ID":33675,"Name":"Wrath 009","PlayerID":699756210,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33675","ServerKey":"pl181","X":571,"Y":339},{"Bonus":5,"Continent":"K66","ID":33676,"Name":"Ć»UBR PSYCHIATRYK 005","PlayerID":33900,"Points":7156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33676","ServerKey":"pl181","X":612,"Y":641},{"Bonus":0,"Continent":"K34","ID":33677,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33677","ServerKey":"pl181","X":428,"Y":334},{"Bonus":0,"Continent":"K64","ID":33678,"Name":"Psycha Siada","PlayerID":698807570,"Points":8532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33678","ServerKey":"pl181","X":445,"Y":670},{"Bonus":0,"Continent":"K33","ID":33679,"Name":"Szlachcic","PlayerID":3484132,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33679","ServerKey":"pl181","X":394,"Y":359},{"Bonus":0,"Continent":"K34","ID":33680,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":7147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33680","ServerKey":"pl181","X":430,"Y":333},{"Bonus":0,"Continent":"K33","ID":33681,"Name":"cz Kielce","PlayerID":3909522,"Points":5976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33681","ServerKey":"pl181","X":366,"Y":377},{"Bonus":0,"Continent":"K56","ID":33682,"Name":"GƂodowo","PlayerID":849039310,"Points":3957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33682","ServerKey":"pl181","X":668,"Y":575},{"Bonus":0,"Continent":"K65","ID":33683,"Name":"Auu 02","PlayerID":699567608,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33683","ServerKey":"pl181","X":578,"Y":667},{"Bonus":0,"Continent":"K46","ID":33684,"Name":"997 Ć»yƂa","PlayerID":699491076,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33684","ServerKey":"pl181","X":666,"Y":424},{"Bonus":4,"Continent":"K35","ID":33685,"Name":"J#002","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33685","ServerKey":"pl181","X":571,"Y":330},{"Bonus":0,"Continent":"K35","ID":33686,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33686","ServerKey":"pl181","X":590,"Y":348},{"Bonus":0,"Continent":"K36","ID":33687,"Name":"004 Leningrad","PlayerID":849091899,"Points":10652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33687","ServerKey":"pl181","X":607,"Y":358},{"Bonus":0,"Continent":"K65","ID":33688,"Name":"06 Posterunek","PlayerID":849097981,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33688","ServerKey":"pl181","X":541,"Y":676},{"Bonus":0,"Continent":"K36","ID":33689,"Name":"K36 - [005] Before Land","PlayerID":699088769,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33689","ServerKey":"pl181","X":625,"Y":373},{"Bonus":0,"Continent":"K43","ID":33690,"Name":"Out of Touch","PlayerID":698962117,"Points":7742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33690","ServerKey":"pl181","X":330,"Y":436},{"Bonus":0,"Continent":"K53","ID":33691,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33691","ServerKey":"pl181","X":330,"Y":561},{"Bonus":0,"Continent":"K53","ID":33692,"Name":"-001-","PlayerID":849012521,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33692","ServerKey":"pl181","X":328,"Y":565},{"Bonus":0,"Continent":"K33","ID":33693,"Name":"Szlachcic","PlayerID":3484132,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33693","ServerKey":"pl181","X":395,"Y":352},{"Bonus":9,"Continent":"K66","ID":33694,"Name":"~~093~~","PlayerID":7829201,"Points":9188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33694","ServerKey":"pl181","X":635,"Y":616},{"Bonus":0,"Continent":"K46","ID":33695,"Name":"0013","PlayerID":699574408,"Points":9093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33695","ServerKey":"pl181","X":680,"Y":464},{"Bonus":0,"Continent":"K34","ID":33696,"Name":"[B]_[047] Dejv.oldplyr","PlayerID":699380607,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33696","ServerKey":"pl181","X":425,"Y":337},{"Bonus":3,"Continent":"K35","ID":33697,"Name":"ƚwiat fistaszkĂłw","PlayerID":849098136,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33697","ServerKey":"pl181","X":555,"Y":327},{"Bonus":0,"Continent":"K53","ID":33698,"Name":"C0107","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33698","ServerKey":"pl181","X":318,"Y":522},{"Bonus":0,"Continent":"K35","ID":33699,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33699","ServerKey":"pl181","X":551,"Y":330},{"Bonus":0,"Continent":"K35","ID":33700,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33700","ServerKey":"pl181","X":522,"Y":324},{"Bonus":0,"Continent":"K46","ID":33701,"Name":"Modzerowo-Hubix","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33701","ServerKey":"pl181","X":664,"Y":422},{"Bonus":0,"Continent":"K56","ID":33702,"Name":"RĂłwne","PlayerID":849039310,"Points":5219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33702","ServerKey":"pl181","X":657,"Y":583},{"Bonus":0,"Continent":"K64","ID":33703,"Name":"040 Ban Ard","PlayerID":699834004,"Points":7155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33703","ServerKey":"pl181","X":474,"Y":677},{"Bonus":1,"Continent":"K34","ID":33704,"Name":"[0286]","PlayerID":8630972,"Points":5996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33704","ServerKey":"pl181","X":473,"Y":319},{"Bonus":0,"Continent":"K43","ID":33705,"Name":"Westfold.017","PlayerID":848918380,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33705","ServerKey":"pl181","X":337,"Y":425},{"Bonus":0,"Continent":"K65","ID":33706,"Name":"*103","PlayerID":699567608,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33706","ServerKey":"pl181","X":579,"Y":663},{"Bonus":0,"Continent":"K33","ID":33708,"Name":"Szulernia","PlayerID":7249451,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33708","ServerKey":"pl181","X":378,"Y":368},{"Bonus":0,"Continent":"K56","ID":33709,"Name":"Kingdom 4","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33709","ServerKey":"pl181","X":682,"Y":503},{"Bonus":0,"Continent":"K56","ID":33710,"Name":"Utah","PlayerID":699737356,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33710","ServerKey":"pl181","X":678,"Y":502},{"Bonus":0,"Continent":"K43","ID":33711,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33711","ServerKey":"pl181","X":348,"Y":405},{"Bonus":0,"Continent":"K36","ID":33712,"Name":"Wioska barbarzyƄska","PlayerID":699857387,"Points":4497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33712","ServerKey":"pl181","X":620,"Y":367},{"Bonus":0,"Continent":"K34","ID":33713,"Name":"0156","PlayerID":699431255,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33713","ServerKey":"pl181","X":412,"Y":343},{"Bonus":0,"Continent":"K66","ID":33715,"Name":"A056","PlayerID":9023703,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33715","ServerKey":"pl181","X":607,"Y":649},{"Bonus":0,"Continent":"K34","ID":33716,"Name":"Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33716","ServerKey":"pl181","X":485,"Y":317},{"Bonus":0,"Continent":"K43","ID":33717,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":8143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33717","ServerKey":"pl181","X":340,"Y":428},{"Bonus":0,"Continent":"K63","ID":33718,"Name":"Hard","PlayerID":699805839,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33718","ServerKey":"pl181","X":365,"Y":622},{"Bonus":1,"Continent":"K64","ID":33719,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33719","ServerKey":"pl181","X":418,"Y":664},{"Bonus":0,"Continent":"K43","ID":33721,"Name":"-006-","PlayerID":1693936,"Points":3541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33721","ServerKey":"pl181","X":346,"Y":400},{"Bonus":0,"Continent":"K34","ID":33722,"Name":"fff","PlayerID":698239813,"Points":8763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33722","ServerKey":"pl181","X":489,"Y":319},{"Bonus":0,"Continent":"K33","ID":33723,"Name":"*111*","PlayerID":699273451,"Points":9942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33723","ServerKey":"pl181","X":362,"Y":382},{"Bonus":0,"Continent":"K36","ID":33724,"Name":"XDX","PlayerID":699098531,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33724","ServerKey":"pl181","X":610,"Y":354},{"Bonus":0,"Continent":"K65","ID":33725,"Name":"067","PlayerID":2293376,"Points":8677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33725","ServerKey":"pl181","X":542,"Y":678},{"Bonus":0,"Continent":"K64","ID":33726,"Name":"#Forza 01","PlayerID":699849210,"Points":7007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33726","ServerKey":"pl181","X":437,"Y":668},{"Bonus":0,"Continent":"K53","ID":33727,"Name":"015 ksieciunio68","PlayerID":926823,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33727","ServerKey":"pl181","X":324,"Y":506},{"Bonus":0,"Continent":"K53","ID":33728,"Name":"deff 100 %","PlayerID":849012521,"Points":8153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33728","ServerKey":"pl181","X":347,"Y":586},{"Bonus":4,"Continent":"K35","ID":33729,"Name":"J#001","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33729","ServerKey":"pl181","X":572,"Y":331},{"Bonus":0,"Continent":"K65","ID":33730,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33730","ServerKey":"pl181","X":577,"Y":660},{"Bonus":0,"Continent":"K63","ID":33731,"Name":"014","PlayerID":7183372,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33731","ServerKey":"pl181","X":348,"Y":602},{"Bonus":0,"Continent":"K43","ID":33732,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33732","ServerKey":"pl181","X":326,"Y":459},{"Bonus":0,"Continent":"K33","ID":33733,"Name":"Wioska barbarzyƄska","PlayerID":699711706,"Points":7679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33733","ServerKey":"pl181","X":373,"Y":376},{"Bonus":0,"Continent":"K36","ID":33734,"Name":"Wesolych ƚwiąt","PlayerID":699088769,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33734","ServerKey":"pl181","X":626,"Y":368},{"Bonus":0,"Continent":"K65","ID":33735,"Name":"*060","PlayerID":699567608,"Points":7883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33735","ServerKey":"pl181","X":584,"Y":660},{"Bonus":0,"Continent":"K63","ID":33736,"Name":"034 Puƛcisz to dzisio?","PlayerID":6354098,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33736","ServerKey":"pl181","X":372,"Y":629},{"Bonus":0,"Continent":"K46","ID":33737,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33737","ServerKey":"pl181","X":679,"Y":465},{"Bonus":0,"Continent":"K43","ID":33739,"Name":"Wioska barbarzyƄska","PlayerID":8503255,"Points":3102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33739","ServerKey":"pl181","X":341,"Y":414},{"Bonus":0,"Continent":"K63","ID":33740,"Name":"003","PlayerID":699083129,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33740","ServerKey":"pl181","X":356,"Y":612},{"Bonus":0,"Continent":"K34","ID":33741,"Name":"Wioska 7","PlayerID":698680806,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33741","ServerKey":"pl181","X":499,"Y":322},{"Bonus":0,"Continent":"K46","ID":33742,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33742","ServerKey":"pl181","X":675,"Y":462},{"Bonus":0,"Continent":"K34","ID":33743,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":8519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33743","ServerKey":"pl181","X":402,"Y":352},{"Bonus":0,"Continent":"K36","ID":33744,"Name":"-22-","PlayerID":699837826,"Points":3769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33744","ServerKey":"pl181","X":633,"Y":375},{"Bonus":6,"Continent":"K36","ID":33745,"Name":"Wyspa 021","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33745","ServerKey":"pl181","X":631,"Y":374},{"Bonus":0,"Continent":"K36","ID":33746,"Name":"sarnow","PlayerID":698290319,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33746","ServerKey":"pl181","X":610,"Y":373},{"Bonus":0,"Continent":"K34","ID":33747,"Name":"K34 - [135] Before Land","PlayerID":699088769,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33747","ServerKey":"pl181","X":431,"Y":336},{"Bonus":0,"Continent":"K65","ID":33748,"Name":"- 271 - SS","PlayerID":849018239,"Points":7657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33748","ServerKey":"pl181","X":539,"Y":679},{"Bonus":0,"Continent":"K65","ID":33749,"Name":"07 Fort","PlayerID":849097981,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33749","ServerKey":"pl181","X":540,"Y":677},{"Bonus":6,"Continent":"K53","ID":33750,"Name":"070 komornicy","PlayerID":699510259,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33750","ServerKey":"pl181","X":329,"Y":552},{"Bonus":0,"Continent":"K46","ID":33751,"Name":"I090","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33751","ServerKey":"pl181","X":672,"Y":445},{"Bonus":0,"Continent":"K35","ID":33752,"Name":"Wioska 6","PlayerID":7560474,"Points":4937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33752","ServerKey":"pl181","X":575,"Y":336},{"Bonus":0,"Continent":"K46","ID":33754,"Name":"014 Glina Wykopana","PlayerID":699298370,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33754","ServerKey":"pl181","X":614,"Y":407},{"Bonus":0,"Continent":"K63","ID":33755,"Name":"010 TrĂłjmiasto 1/3","PlayerID":8268010,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33755","ServerKey":"pl181","X":386,"Y":635},{"Bonus":0,"Continent":"K34","ID":33756,"Name":"0157","PlayerID":699431255,"Points":4979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33756","ServerKey":"pl181","X":408,"Y":342},{"Bonus":0,"Continent":"K34","ID":33757,"Name":"???","PlayerID":698489071,"Points":8575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33757","ServerKey":"pl181","X":485,"Y":318},{"Bonus":0,"Continent":"K34","ID":33758,"Name":"#0192 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33758","ServerKey":"pl181","X":458,"Y":324},{"Bonus":0,"Continent":"K43","ID":33760,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33760","ServerKey":"pl181","X":326,"Y":462},{"Bonus":0,"Continent":"K46","ID":33761,"Name":"025Sewa#001","PlayerID":849098769,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33761","ServerKey":"pl181","X":670,"Y":444},{"Bonus":0,"Continent":"K66","ID":33762,"Name":"#019#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33762","ServerKey":"pl181","X":627,"Y":634},{"Bonus":2,"Continent":"K56","ID":33763,"Name":"*5612*d Kraina przepowiedni","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33763","ServerKey":"pl181","X":663,"Y":586},{"Bonus":0,"Continent":"K66","ID":33764,"Name":"OFF","PlayerID":849014413,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33764","ServerKey":"pl181","X":647,"Y":600},{"Bonus":0,"Continent":"K43","ID":33765,"Name":"Westfold.021","PlayerID":848918380,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33765","ServerKey":"pl181","X":337,"Y":426},{"Bonus":0,"Continent":"K65","ID":33766,"Name":"0415","PlayerID":698659980,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33766","ServerKey":"pl181","X":534,"Y":673},{"Bonus":2,"Continent":"K63","ID":33767,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33767","ServerKey":"pl181","X":382,"Y":632},{"Bonus":0,"Continent":"K35","ID":33769,"Name":"AAA","PlayerID":1006847,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33769","ServerKey":"pl181","X":539,"Y":325},{"Bonus":0,"Continent":"K53","ID":33770,"Name":"C0049","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33770","ServerKey":"pl181","X":324,"Y":519},{"Bonus":0,"Continent":"K64","ID":33771,"Name":"[16]","PlayerID":8966820,"Points":3308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33771","ServerKey":"pl181","X":434,"Y":663},{"Bonus":0,"Continent":"K33","ID":33772,"Name":"Szlachcic","PlayerID":698160606,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33772","ServerKey":"pl181","X":380,"Y":360},{"Bonus":1,"Continent":"K46","ID":33773,"Name":"A006 Drewno","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33773","ServerKey":"pl181","X":673,"Y":446},{"Bonus":0,"Continent":"K65","ID":33774,"Name":"044","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33774","ServerKey":"pl181","X":527,"Y":674},{"Bonus":0,"Continent":"K43","ID":33775,"Name":"Wioska barbarzyƄska","PlayerID":849064752,"Points":2219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33775","ServerKey":"pl181","X":350,"Y":407},{"Bonus":0,"Continent":"K53","ID":33776,"Name":"065 komornicy","PlayerID":699510259,"Points":5461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33776","ServerKey":"pl181","X":324,"Y":534},{"Bonus":4,"Continent":"K35","ID":33777,"Name":"Lord Lord Franek .#091","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33777","ServerKey":"pl181","X":512,"Y":324},{"Bonus":0,"Continent":"K43","ID":33779,"Name":"A0278","PlayerID":8841266,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33779","ServerKey":"pl181","X":322,"Y":483},{"Bonus":0,"Continent":"K33","ID":33780,"Name":"Szulernia","PlayerID":7249451,"Points":10790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33780","ServerKey":"pl181","X":380,"Y":365},{"Bonus":8,"Continent":"K65","ID":33781,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33781","ServerKey":"pl181","X":511,"Y":676},{"Bonus":0,"Continent":"K36","ID":33782,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33782","ServerKey":"pl181","X":637,"Y":389},{"Bonus":0,"Continent":"K53","ID":33783,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33783","ServerKey":"pl181","X":332,"Y":552},{"Bonus":0,"Continent":"K65","ID":33784,"Name":"032","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33784","ServerKey":"pl181","X":536,"Y":681},{"Bonus":0,"Continent":"K64","ID":33785,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":2620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33785","ServerKey":"pl181","X":416,"Y":656},{"Bonus":4,"Continent":"K53","ID":33786,"Name":"C0058","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33786","ServerKey":"pl181","X":325,"Y":523},{"Bonus":0,"Continent":"K66","ID":33787,"Name":"#024#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33787","ServerKey":"pl181","X":627,"Y":629},{"Bonus":0,"Continent":"K64","ID":33788,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33788","ServerKey":"pl181","X":437,"Y":672},{"Bonus":0,"Continent":"K63","ID":33789,"Name":"006 KrĂłlestwo RickyKeki","PlayerID":6354098,"Points":8944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33789","ServerKey":"pl181","X":378,"Y":627},{"Bonus":0,"Continent":"K66","ID":33791,"Name":"016","PlayerID":849097799,"Points":7965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33791","ServerKey":"pl181","X":614,"Y":645},{"Bonus":0,"Continent":"K64","ID":33793,"Name":"#Finesse","PlayerID":699849210,"Points":8759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33793","ServerKey":"pl181","X":427,"Y":665},{"Bonus":0,"Continent":"K46","ID":33794,"Name":"034 Wioska barbarzyƄska","PlayerID":849098769,"Points":6916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33794","ServerKey":"pl181","X":678,"Y":462},{"Bonus":0,"Continent":"K63","ID":33795,"Name":"A 016","PlayerID":699342219,"Points":5894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33795","ServerKey":"pl181","X":369,"Y":621},{"Bonus":0,"Continent":"K36","ID":33796,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33796","ServerKey":"pl181","X":623,"Y":364},{"Bonus":0,"Continent":"K56","ID":33797,"Name":"B 062","PlayerID":8078914,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33797","ServerKey":"pl181","X":677,"Y":528},{"Bonus":0,"Continent":"K63","ID":33798,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33798","ServerKey":"pl181","X":390,"Y":642},{"Bonus":0,"Continent":"K56","ID":33799,"Name":"000","PlayerID":1715091,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33799","ServerKey":"pl181","X":675,"Y":558},{"Bonus":0,"Continent":"K64","ID":33800,"Name":"Ulu-mulu","PlayerID":699697558,"Points":3233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33800","ServerKey":"pl181","X":431,"Y":609},{"Bonus":0,"Continent":"K53","ID":33801,"Name":"C0158","PlayerID":8841266,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33801","ServerKey":"pl181","X":318,"Y":529},{"Bonus":0,"Continent":"K63","ID":33802,"Name":"016","PlayerID":699083129,"Points":5790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33802","ServerKey":"pl181","X":357,"Y":612},{"Bonus":0,"Continent":"K36","ID":33803,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":6039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33803","ServerKey":"pl181","X":624,"Y":364},{"Bonus":0,"Continent":"K33","ID":33804,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33804","ServerKey":"pl181","X":376,"Y":371},{"Bonus":0,"Continent":"K34","ID":33805,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":8777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33805","ServerKey":"pl181","X":431,"Y":331},{"Bonus":0,"Continent":"K66","ID":33806,"Name":"Monetkownia","PlayerID":699759128,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33806","ServerKey":"pl181","X":620,"Y":631},{"Bonus":0,"Continent":"K35","ID":33807,"Name":"WiedĆșma","PlayerID":570100,"Points":2842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33807","ServerKey":"pl181","X":557,"Y":327},{"Bonus":0,"Continent":"K34","ID":33808,"Name":"North Barba 035","PlayerID":699796330,"Points":10245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33808","ServerKey":"pl181","X":405,"Y":349},{"Bonus":0,"Continent":"K33","ID":33809,"Name":"Szlachcic","PlayerID":698160606,"Points":10034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33809","ServerKey":"pl181","X":389,"Y":361},{"Bonus":2,"Continent":"K65","ID":33810,"Name":"0094","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33810","ServerKey":"pl181","X":572,"Y":665},{"Bonus":0,"Continent":"K65","ID":33811,"Name":"0315","PlayerID":698659980,"Points":9884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33811","ServerKey":"pl181","X":560,"Y":670},{"Bonus":0,"Continent":"K64","ID":33812,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33812","ServerKey":"pl181","X":405,"Y":652},{"Bonus":6,"Continent":"K53","ID":33813,"Name":"004","PlayerID":849012521,"Points":7066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33813","ServerKey":"pl181","X":332,"Y":563},{"Bonus":0,"Continent":"K56","ID":33814,"Name":"B 054","PlayerID":8078914,"Points":5889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33814","ServerKey":"pl181","X":677,"Y":536},{"Bonus":0,"Continent":"K46","ID":33815,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33815","ServerKey":"pl181","X":676,"Y":464},{"Bonus":0,"Continent":"K35","ID":33816,"Name":"A.03 spóƂdzielnia gryzoni","PlayerID":849026145,"Points":3189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33816","ServerKey":"pl181","X":564,"Y":327},{"Bonus":0,"Continent":"K34","ID":33817,"Name":"[0287]","PlayerID":8630972,"Points":2921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33817","ServerKey":"pl181","X":475,"Y":318},{"Bonus":0,"Continent":"K56","ID":33818,"Name":"Wioska Zoodix","PlayerID":699251542,"Points":9810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33818","ServerKey":"pl181","X":652,"Y":592},{"Bonus":0,"Continent":"K34","ID":33819,"Name":"fff","PlayerID":698239813,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33819","ServerKey":"pl181","X":490,"Y":319},{"Bonus":0,"Continent":"K43","ID":33820,"Name":"V014","PlayerID":849097737,"Points":2563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33820","ServerKey":"pl181","X":339,"Y":416},{"Bonus":0,"Continent":"K36","ID":33821,"Name":"Wioska barbarzyƄska","PlayerID":6986891,"Points":1583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33821","ServerKey":"pl181","X":647,"Y":389},{"Bonus":0,"Continent":"K34","ID":33822,"Name":"173...Segadorr","PlayerID":6920960,"Points":10616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33822","ServerKey":"pl181","X":442,"Y":326},{"Bonus":0,"Continent":"K33","ID":33823,"Name":"*008*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33823","ServerKey":"pl181","X":353,"Y":388},{"Bonus":0,"Continent":"K46","ID":33824,"Name":"23. Szeksox 2","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33824","ServerKey":"pl181","X":678,"Y":477},{"Bonus":0,"Continent":"K35","ID":33825,"Name":"Lord Lord Franek .#188","PlayerID":698420691,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33825","ServerKey":"pl181","X":543,"Y":329},{"Bonus":0,"Continent":"K46","ID":33826,"Name":"I065","PlayerID":699722599,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33826","ServerKey":"pl181","X":680,"Y":461},{"Bonus":0,"Continent":"K36","ID":33827,"Name":"012 .1. Infanterie-Division","PlayerID":1990750,"Points":7140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33827","ServerKey":"pl181","X":604,"Y":354},{"Bonus":0,"Continent":"K43","ID":33829,"Name":"004 Winterfel","PlayerID":699823490,"Points":8134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33829","ServerKey":"pl181","X":321,"Y":486},{"Bonus":0,"Continent":"K56","ID":33830,"Name":"Sekou 2","PlayerID":699737356,"Points":8071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33830","ServerKey":"pl181","X":677,"Y":511},{"Bonus":0,"Continent":"K46","ID":33831,"Name":"0016","PlayerID":699574408,"Points":8234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33831","ServerKey":"pl181","X":681,"Y":464},{"Bonus":8,"Continent":"K53","ID":33832,"Name":"-002-","PlayerID":7183372,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33832","ServerKey":"pl181","X":334,"Y":578},{"Bonus":0,"Continent":"K36","ID":33833,"Name":"Midgard","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33833","ServerKey":"pl181","X":628,"Y":373},{"Bonus":0,"Continent":"K64","ID":33834,"Name":"tuaj","PlayerID":8966820,"Points":7599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33834","ServerKey":"pl181","X":459,"Y":681},{"Bonus":0,"Continent":"K65","ID":33835,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33835","ServerKey":"pl181","X":585,"Y":662},{"Bonus":0,"Continent":"K66","ID":33836,"Name":"Wioska brabarzyƄcĂłw","PlayerID":8224678,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33836","ServerKey":"pl181","X":652,"Y":610},{"Bonus":0,"Continent":"K64","ID":33837,"Name":"R 021","PlayerID":699195358,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33837","ServerKey":"pl181","X":485,"Y":684},{"Bonus":0,"Continent":"K53","ID":33839,"Name":"Belem","PlayerID":699494480,"Points":9286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33839","ServerKey":"pl181","X":345,"Y":588},{"Bonus":0,"Continent":"K65","ID":33840,"Name":"05 Baza","PlayerID":849097981,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33840","ServerKey":"pl181","X":542,"Y":674},{"Bonus":0,"Continent":"K36","ID":33841,"Name":"Szlachcic","PlayerID":1990750,"Points":8219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33841","ServerKey":"pl181","X":602,"Y":346},{"Bonus":0,"Continent":"K56","ID":33842,"Name":"OFF","PlayerID":1563417,"Points":7389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33842","ServerKey":"pl181","X":680,"Y":532},{"Bonus":0,"Continent":"K65","ID":33843,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33843","ServerKey":"pl181","X":541,"Y":631},{"Bonus":0,"Continent":"K36","ID":33844,"Name":"=|30|=","PlayerID":9101574,"Points":7806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33844","ServerKey":"pl181","X":644,"Y":387},{"Bonus":0,"Continent":"K34","ID":33845,"Name":"#0311 sliwatojo","PlayerID":1238300,"Points":4928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33845","ServerKey":"pl181","X":462,"Y":320},{"Bonus":0,"Continent":"K46","ID":33846,"Name":"24. Szeksox 3","PlayerID":699804790,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33846","ServerKey":"pl181","X":680,"Y":478},{"Bonus":0,"Continent":"K35","ID":33847,"Name":"120 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33847","ServerKey":"pl181","X":537,"Y":378},{"Bonus":0,"Continent":"K34","ID":33848,"Name":"061","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33848","ServerKey":"pl181","X":455,"Y":330},{"Bonus":8,"Continent":"K43","ID":33849,"Name":"Westfold.009","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33849","ServerKey":"pl181","X":335,"Y":431},{"Bonus":0,"Continent":"K53","ID":33850,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33850","ServerKey":"pl181","X":338,"Y":575},{"Bonus":0,"Continent":"K53","ID":33852,"Name":"C0176","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33852","ServerKey":"pl181","X":325,"Y":540},{"Bonus":0,"Continent":"K35","ID":33853,"Name":"AAA","PlayerID":1006847,"Points":6176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33853","ServerKey":"pl181","X":537,"Y":322},{"Bonus":0,"Continent":"K43","ID":33854,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33854","ServerKey":"pl181","X":329,"Y":453},{"Bonus":0,"Continent":"K34","ID":33855,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":7325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33855","ServerKey":"pl181","X":401,"Y":353},{"Bonus":0,"Continent":"K53","ID":33856,"Name":"C0186","PlayerID":8841266,"Points":8462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33856","ServerKey":"pl181","X":320,"Y":531},{"Bonus":0,"Continent":"K36","ID":33858,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33858","ServerKey":"pl181","X":604,"Y":356},{"Bonus":0,"Continent":"K64","ID":33859,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33859","ServerKey":"pl181","X":420,"Y":662},{"Bonus":0,"Continent":"K35","ID":33860,"Name":"Wioska Natka1968","PlayerID":699644852,"Points":3764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33860","ServerKey":"pl181","X":525,"Y":322},{"Bonus":0,"Continent":"K56","ID":33861,"Name":"052. Edda","PlayerID":8337151,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33861","ServerKey":"pl181","X":660,"Y":591},{"Bonus":1,"Continent":"K35","ID":33862,"Name":"ADEN","PlayerID":698588535,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33862","ServerKey":"pl181","X":580,"Y":343},{"Bonus":0,"Continent":"K34","ID":33863,"Name":"###1","PlayerID":849064614,"Points":9061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33863","ServerKey":"pl181","X":486,"Y":323},{"Bonus":0,"Continent":"K36","ID":33864,"Name":"364|615 MaƂy GrĂłd","PlayerID":6822957,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33864","ServerKey":"pl181","X":615,"Y":364},{"Bonus":0,"Continent":"K66","ID":33865,"Name":"#045#","PlayerID":692803,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33865","ServerKey":"pl181","X":635,"Y":624},{"Bonus":6,"Continent":"K65","ID":33866,"Name":"0657","PlayerID":698659980,"Points":9590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33866","ServerKey":"pl181","X":549,"Y":669},{"Bonus":0,"Continent":"K56","ID":33868,"Name":"O46 Drvenik","PlayerID":699272880,"Points":8930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33868","ServerKey":"pl181","X":683,"Y":519},{"Bonus":0,"Continent":"K53","ID":33869,"Name":"off 100 %","PlayerID":849012521,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33869","ServerKey":"pl181","X":336,"Y":570},{"Bonus":0,"Continent":"K64","ID":33870,"Name":"0549","PlayerID":698650301,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33870","ServerKey":"pl181","X":477,"Y":676},{"Bonus":0,"Continent":"K63","ID":33871,"Name":"A 014","PlayerID":699342219,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33871","ServerKey":"pl181","X":368,"Y":622},{"Bonus":0,"Continent":"K65","ID":33872,"Name":"Muchomor *019*","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33872","ServerKey":"pl181","X":515,"Y":679},{"Bonus":0,"Continent":"K36","ID":33874,"Name":"Lord Lord Franek .#183","PlayerID":698420691,"Points":7555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33874","ServerKey":"pl181","X":611,"Y":356},{"Bonus":0,"Continent":"K34","ID":33875,"Name":"183...segador","PlayerID":6920960,"Points":7541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33875","ServerKey":"pl181","X":437,"Y":330},{"Bonus":0,"Continent":"K65","ID":33876,"Name":"*102","PlayerID":699567608,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33876","ServerKey":"pl181","X":581,"Y":664},{"Bonus":0,"Continent":"K34","ID":33877,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33877","ServerKey":"pl181","X":441,"Y":333},{"Bonus":0,"Continent":"K56","ID":33878,"Name":"Didi","PlayerID":849070946,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33878","ServerKey":"pl181","X":669,"Y":573},{"Bonus":3,"Continent":"K64","ID":33879,"Name":"Avelorn","PlayerID":699736927,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33879","ServerKey":"pl181","X":405,"Y":654},{"Bonus":0,"Continent":"K43","ID":33880,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33880","ServerKey":"pl181","X":324,"Y":477},{"Bonus":0,"Continent":"K46","ID":33881,"Name":"067 Wioska 012","PlayerID":9238175,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33881","ServerKey":"pl181","X":661,"Y":417},{"Bonus":0,"Continent":"K65","ID":33882,"Name":"Wioska","PlayerID":3264534,"Points":10698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33882","ServerKey":"pl181","X":514,"Y":677},{"Bonus":0,"Continent":"K63","ID":33883,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":699269923,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33883","ServerKey":"pl181","X":380,"Y":640},{"Bonus":0,"Continent":"K36","ID":33884,"Name":"011.","PlayerID":698361257,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33884","ServerKey":"pl181","X":633,"Y":379},{"Bonus":0,"Continent":"K56","ID":33885,"Name":"[033]","PlayerID":698305474,"Points":8082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33885","ServerKey":"pl181","X":663,"Y":582},{"Bonus":0,"Continent":"K35","ID":33887,"Name":"AAA","PlayerID":1006847,"Points":6349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33887","ServerKey":"pl181","X":545,"Y":323},{"Bonus":0,"Continent":"K46","ID":33888,"Name":"I081 Nie trzeba tęgich gƂow","PlayerID":699722599,"Points":9776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33888","ServerKey":"pl181","X":672,"Y":447},{"Bonus":0,"Continent":"K35","ID":33889,"Name":"A.01 spóƂdzielnia gryzoni","PlayerID":849026145,"Points":5937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33889","ServerKey":"pl181","X":567,"Y":331},{"Bonus":0,"Continent":"K65","ID":33890,"Name":"004","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33890","ServerKey":"pl181","X":532,"Y":680},{"Bonus":0,"Continent":"K34","ID":33891,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33891","ServerKey":"pl181","X":435,"Y":330},{"Bonus":0,"Continent":"K34","ID":33892,"Name":"[B]_[032] Dejv.oldplyr","PlayerID":699380607,"Points":8403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33892","ServerKey":"pl181","X":418,"Y":343},{"Bonus":0,"Continent":"K53","ID":33893,"Name":"Na Skraju Raju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33893","ServerKey":"pl181","X":324,"Y":542},{"Bonus":0,"Continent":"K53","ID":33894,"Name":"C0185","PlayerID":8841266,"Points":7932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33894","ServerKey":"pl181","X":320,"Y":533},{"Bonus":0,"Continent":"K33","ID":33895,"Name":"*012*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33895","ServerKey":"pl181","X":356,"Y":388},{"Bonus":0,"Continent":"K36","ID":33896,"Name":"031.","PlayerID":699098531,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33896","ServerKey":"pl181","X":623,"Y":369},{"Bonus":0,"Continent":"K65","ID":33897,"Name":"Muchomor *010*","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33897","ServerKey":"pl181","X":516,"Y":682},{"Bonus":0,"Continent":"K35","ID":33898,"Name":"AAA","PlayerID":1006847,"Points":11898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33898","ServerKey":"pl181","X":548,"Y":323},{"Bonus":0,"Continent":"K63","ID":33899,"Name":"wioska","PlayerID":849014147,"Points":7492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33899","ServerKey":"pl181","X":353,"Y":605},{"Bonus":0,"Continent":"K43","ID":33900,"Name":"-007-","PlayerID":1693936,"Points":2070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33900","ServerKey":"pl181","X":348,"Y":403},{"Bonus":0,"Continent":"K66","ID":33901,"Name":"A044","PlayerID":9023703,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33901","ServerKey":"pl181","X":611,"Y":646},{"Bonus":0,"Continent":"K53","ID":33902,"Name":"C0171","PlayerID":8841266,"Points":8733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33902","ServerKey":"pl181","X":318,"Y":514},{"Bonus":0,"Continent":"K46","ID":33903,"Name":"019 MONETKI","PlayerID":7588382,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33903","ServerKey":"pl181","X":678,"Y":472},{"Bonus":0,"Continent":"K34","ID":33904,"Name":"LONDON","PlayerID":8123790,"Points":1113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33904","ServerKey":"pl181","X":403,"Y":351},{"Bonus":0,"Continent":"K34","ID":33905,"Name":"#0169 yasoke19","PlayerID":1238300,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33905","ServerKey":"pl181","X":491,"Y":316},{"Bonus":0,"Continent":"K36","ID":33906,"Name":"k36 2","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33906","ServerKey":"pl181","X":612,"Y":354},{"Bonus":2,"Continent":"K46","ID":33907,"Name":"A008 Glina","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33907","ServerKey":"pl181","X":668,"Y":440},{"Bonus":0,"Continent":"K63","ID":33908,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33908","ServerKey":"pl181","X":380,"Y":635},{"Bonus":0,"Continent":"K33","ID":33909,"Name":"Szlachcic","PlayerID":698160606,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33909","ServerKey":"pl181","X":384,"Y":360},{"Bonus":0,"Continent":"K65","ID":33910,"Name":"001. Bordeaux","PlayerID":8627359,"Points":9149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33910","ServerKey":"pl181","X":573,"Y":602},{"Bonus":0,"Continent":"K34","ID":33911,"Name":"0009","PlayerID":2321390,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33911","ServerKey":"pl181","X":430,"Y":332},{"Bonus":0,"Continent":"K34","ID":33913,"Name":"fff","PlayerID":698239813,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33913","ServerKey":"pl181","X":489,"Y":323},{"Bonus":0,"Continent":"K64","ID":33914,"Name":"KRAKPOLIS","PlayerID":699516268,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33914","ServerKey":"pl181","X":403,"Y":656},{"Bonus":0,"Continent":"K34","ID":33915,"Name":"019","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33915","ServerKey":"pl181","X":449,"Y":329},{"Bonus":0,"Continent":"K33","ID":33916,"Name":"Szlachcic","PlayerID":698160606,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33916","ServerKey":"pl181","X":388,"Y":362},{"Bonus":0,"Continent":"K33","ID":33917,"Name":"Szulernia","PlayerID":7249451,"Points":7385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33917","ServerKey":"pl181","X":382,"Y":369},{"Bonus":0,"Continent":"K65","ID":33918,"Name":"117","PlayerID":849097799,"Points":3871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33918","ServerKey":"pl181","X":592,"Y":657},{"Bonus":0,"Continent":"K56","ID":33919,"Name":"Wioska barbarzyƄska01","PlayerID":7973893,"Points":2613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33919","ServerKey":"pl181","X":670,"Y":545},{"Bonus":0,"Continent":"K64","ID":33920,"Name":"Barba","PlayerID":849089459,"Points":2898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33920","ServerKey":"pl181","X":415,"Y":658},{"Bonus":0,"Continent":"K63","ID":33921,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33921","ServerKey":"pl181","X":382,"Y":637},{"Bonus":0,"Continent":"K46","ID":33922,"Name":"[243] Arrivederci","PlayerID":848985692,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33922","ServerKey":"pl181","X":607,"Y":456},{"Bonus":0,"Continent":"K43","ID":33923,"Name":"Out of Touch","PlayerID":698962117,"Points":4066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33923","ServerKey":"pl181","X":328,"Y":431},{"Bonus":1,"Continent":"K34","ID":33924,"Name":"[B]_[023] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33924","ServerKey":"pl181","X":416,"Y":338},{"Bonus":0,"Continent":"K65","ID":33925,"Name":"Wierzbica","PlayerID":698723158,"Points":6048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33925","ServerKey":"pl181","X":572,"Y":669},{"Bonus":0,"Continent":"K43","ID":33926,"Name":"*179*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33926","ServerKey":"pl181","X":339,"Y":414},{"Bonus":0,"Continent":"K53","ID":33927,"Name":"FILIPOWO BRODWINO","PlayerID":7183372,"Points":9468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33927","ServerKey":"pl181","X":345,"Y":591},{"Bonus":0,"Continent":"K43","ID":33928,"Name":"A0274","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33928","ServerKey":"pl181","X":323,"Y":483},{"Bonus":0,"Continent":"K65","ID":33929,"Name":"115","PlayerID":849097799,"Points":4652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33929","ServerKey":"pl181","X":593,"Y":656},{"Bonus":0,"Continent":"K64","ID":33930,"Name":"psycha sitting","PlayerID":699736927,"Points":4998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33930","ServerKey":"pl181","X":435,"Y":664},{"Bonus":0,"Continent":"K66","ID":33931,"Name":"A003","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33931","ServerKey":"pl181","X":602,"Y":646},{"Bonus":0,"Continent":"K36","ID":33932,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33932","ServerKey":"pl181","X":640,"Y":389},{"Bonus":0,"Continent":"K36","ID":33933,"Name":".:018:.","PlayerID":849098782,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33933","ServerKey":"pl181","X":635,"Y":382},{"Bonus":0,"Continent":"K36","ID":33934,"Name":"ADEN","PlayerID":698588535,"Points":9503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33934","ServerKey":"pl181","X":600,"Y":348},{"Bonus":0,"Continent":"K53","ID":33935,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":7077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33935","ServerKey":"pl181","X":332,"Y":561},{"Bonus":0,"Continent":"K53","ID":33936,"Name":"(019)Marat","PlayerID":849098695,"Points":5652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33936","ServerKey":"pl181","X":329,"Y":565},{"Bonus":0,"Continent":"K33","ID":33937,"Name":"Szulernia","PlayerID":7249451,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33937","ServerKey":"pl181","X":383,"Y":368},{"Bonus":0,"Continent":"K36","ID":33938,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":7890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33938","ServerKey":"pl181","X":622,"Y":365},{"Bonus":0,"Continent":"K53","ID":33939,"Name":"C0175","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33939","ServerKey":"pl181","X":316,"Y":508},{"Bonus":0,"Continent":"K53","ID":33940,"Name":"-008-","PlayerID":8004076,"Points":9567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33940","ServerKey":"pl181","X":328,"Y":561},{"Bonus":0,"Continent":"K43","ID":33941,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33941","ServerKey":"pl181","X":322,"Y":471},{"Bonus":0,"Continent":"K64","ID":33942,"Name":"031.xxx","PlayerID":699393742,"Points":3965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33942","ServerKey":"pl181","X":498,"Y":681},{"Bonus":0,"Continent":"K43","ID":33943,"Name":"002","PlayerID":7127455,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33943","ServerKey":"pl181","X":318,"Y":476},{"Bonus":0,"Continent":"K34","ID":33944,"Name":"Wioska 09","PlayerID":951823,"Points":6742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33944","ServerKey":"pl181","X":496,"Y":318},{"Bonus":0,"Continent":"K46","ID":33945,"Name":"035 tutaj pierwsza miƂoƛć","PlayerID":699272633,"Points":7235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33945","ServerKey":"pl181","X":670,"Y":446},{"Bonus":0,"Continent":"K34","ID":33946,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":7502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33946","ServerKey":"pl181","X":461,"Y":327},{"Bonus":0,"Continent":"K64","ID":33947,"Name":"003 Alaska","PlayerID":699238479,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33947","ServerKey":"pl181","X":489,"Y":682},{"Bonus":0,"Continent":"K64","ID":33948,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33948","ServerKey":"pl181","X":417,"Y":662},{"Bonus":0,"Continent":"K66","ID":33949,"Name":"A043","PlayerID":9023703,"Points":8689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33949","ServerKey":"pl181","X":610,"Y":646},{"Bonus":0,"Continent":"K56","ID":33950,"Name":"B 041","PlayerID":8078914,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33950","ServerKey":"pl181","X":671,"Y":542},{"Bonus":0,"Continent":"K35","ID":33951,"Name":"AAA","PlayerID":1006847,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33951","ServerKey":"pl181","X":532,"Y":325},{"Bonus":0,"Continent":"K34","ID":33952,"Name":"[B]_[038] Dejv.oldplyr","PlayerID":699380607,"Points":4532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33952","ServerKey":"pl181","X":417,"Y":339},{"Bonus":0,"Continent":"K66","ID":33953,"Name":"A038","PlayerID":9023703,"Points":10031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33953","ServerKey":"pl181","X":607,"Y":645},{"Bonus":0,"Continent":"K36","ID":33954,"Name":"Lord Lord Franek .#184","PlayerID":698420691,"Points":9100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33954","ServerKey":"pl181","X":611,"Y":357},{"Bonus":0,"Continent":"K35","ID":33955,"Name":"A.02 spóƂdzielnia gryzoni","PlayerID":849026145,"Points":3137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33955","ServerKey":"pl181","X":564,"Y":331},{"Bonus":0,"Continent":"K56","ID":33956,"Name":"088","PlayerID":849095227,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33956","ServerKey":"pl181","X":664,"Y":567},{"Bonus":0,"Continent":"K64","ID":33957,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33957","ServerKey":"pl181","X":424,"Y":661},{"Bonus":0,"Continent":"K63","ID":33958,"Name":"009 ƚw181**001 kubuƛ","PlayerID":6354098,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33958","ServerKey":"pl181","X":376,"Y":626},{"Bonus":0,"Continent":"K34","ID":33959,"Name":"#0133 DannyQ","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33959","ServerKey":"pl181","X":474,"Y":325},{"Bonus":0,"Continent":"K33","ID":33960,"Name":"*039*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33960","ServerKey":"pl181","X":353,"Y":395},{"Bonus":0,"Continent":"K64","ID":33961,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33961","ServerKey":"pl181","X":449,"Y":677},{"Bonus":0,"Continent":"K43","ID":33962,"Name":"Wioska barbarzyƄska","PlayerID":849096547,"Points":2260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33962","ServerKey":"pl181","X":341,"Y":416},{"Bonus":7,"Continent":"K63","ID":33963,"Name":"1v9 machine","PlayerID":699697558,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33963","ServerKey":"pl181","X":393,"Y":642},{"Bonus":0,"Continent":"K35","ID":33964,"Name":"-011-","PlayerID":698588812,"Points":2893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33964","ServerKey":"pl181","X":543,"Y":321},{"Bonus":0,"Continent":"K53","ID":33965,"Name":"Karp","PlayerID":699265922,"Points":8280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33965","ServerKey":"pl181","X":326,"Y":539},{"Bonus":0,"Continent":"K65","ID":33966,"Name":"023","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33966","ServerKey":"pl181","X":527,"Y":682},{"Bonus":0,"Continent":"K63","ID":33967,"Name":"020","PlayerID":699083129,"Points":5246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33967","ServerKey":"pl181","X":354,"Y":613},{"Bonus":0,"Continent":"K54","ID":33968,"Name":"-= 011 =-","PlayerID":698971484,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33968","ServerKey":"pl181","X":445,"Y":518},{"Bonus":0,"Continent":"K56","ID":33969,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":6795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33969","ServerKey":"pl181","X":676,"Y":538},{"Bonus":0,"Continent":"K46","ID":33970,"Name":"065 | PALESTINA","PlayerID":9228039,"Points":3302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33970","ServerKey":"pl181","X":656,"Y":415},{"Bonus":0,"Continent":"K53","ID":33971,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33971","ServerKey":"pl181","X":322,"Y":500},{"Bonus":2,"Continent":"K65","ID":33972,"Name":"0018","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33972","ServerKey":"pl181","X":530,"Y":680},{"Bonus":0,"Continent":"K63","ID":33973,"Name":"131","PlayerID":699269923,"Points":5532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33973","ServerKey":"pl181","X":392,"Y":649},{"Bonus":0,"Continent":"K65","ID":33974,"Name":"Wioska barbarzyƄska","PlayerID":8627359,"Points":4063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33974","ServerKey":"pl181","X":585,"Y":657},{"Bonus":0,"Continent":"K53","ID":33975,"Name":"Jesiotr","PlayerID":699265922,"Points":6465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33975","ServerKey":"pl181","X":326,"Y":550},{"Bonus":0,"Continent":"K34","ID":33976,"Name":"059.Stradi","PlayerID":698365960,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33976","ServerKey":"pl181","X":452,"Y":323},{"Bonus":0,"Continent":"K63","ID":33977,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33977","ServerKey":"pl181","X":383,"Y":636},{"Bonus":0,"Continent":"K65","ID":33978,"Name":"0577","PlayerID":698659980,"Points":8260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33978","ServerKey":"pl181","X":568,"Y":667},{"Bonus":0,"Continent":"K36","ID":33979,"Name":"**23**","PlayerID":849098782,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33979","ServerKey":"pl181","X":637,"Y":386},{"Bonus":0,"Continent":"K56","ID":33980,"Name":"WschĂłd Droga 006","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33980","ServerKey":"pl181","X":670,"Y":571},{"Bonus":0,"Continent":"K36","ID":33981,"Name":"**17**","PlayerID":849098782,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33981","ServerKey":"pl181","X":631,"Y":389},{"Bonus":0,"Continent":"K56","ID":33982,"Name":"Didek","PlayerID":849070946,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33982","ServerKey":"pl181","X":669,"Y":565},{"Bonus":0,"Continent":"K56","ID":33983,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33983","ServerKey":"pl181","X":682,"Y":511},{"Bonus":0,"Continent":"K34","ID":33984,"Name":"#0172 yasoke19","PlayerID":1238300,"Points":6249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33984","ServerKey":"pl181","X":490,"Y":316},{"Bonus":0,"Continent":"K64","ID":33985,"Name":"|044| Durres","PlayerID":699393742,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33985","ServerKey":"pl181","X":493,"Y":685},{"Bonus":0,"Continent":"K53","ID":33986,"Name":"(004)Kholinar","PlayerID":849098695,"Points":8639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33986","ServerKey":"pl181","X":331,"Y":566},{"Bonus":0,"Continent":"K46","ID":33987,"Name":"011. Bemowo","PlayerID":7494497,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33987","ServerKey":"pl181","X":685,"Y":475},{"Bonus":0,"Continent":"K64","ID":33988,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33988","ServerKey":"pl181","X":421,"Y":663},{"Bonus":0,"Continent":"K65","ID":33989,"Name":"La Burdello III","PlayerID":8501514,"Points":3321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33989","ServerKey":"pl181","X":507,"Y":683},{"Bonus":0,"Continent":"K43","ID":33990,"Name":"Wioska 6","PlayerID":699821755,"Points":7188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33990","ServerKey":"pl181","X":331,"Y":428},{"Bonus":0,"Continent":"K66","ID":33991,"Name":"01 Banan","PlayerID":8224678,"Points":10414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33991","ServerKey":"pl181","X":641,"Y":613},{"Bonus":0,"Continent":"K33","ID":33992,"Name":"Szlachcic","PlayerID":3484132,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33992","ServerKey":"pl181","X":394,"Y":353},{"Bonus":1,"Continent":"K64","ID":33993,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33993","ServerKey":"pl181","X":434,"Y":672},{"Bonus":0,"Continent":"K43","ID":33994,"Name":"Gwoli ƚcisƂoƛci","PlayerID":849098299,"Points":6083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33994","ServerKey":"pl181","X":342,"Y":406},{"Bonus":0,"Continent":"K56","ID":33995,"Name":"110","PlayerID":7038651,"Points":7308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33995","ServerKey":"pl181","X":674,"Y":560},{"Bonus":0,"Continent":"K66","ID":33996,"Name":"028","PlayerID":849097799,"Points":7553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33996","ServerKey":"pl181","X":612,"Y":636},{"Bonus":0,"Continent":"K63","ID":33997,"Name":"008","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33997","ServerKey":"pl181","X":345,"Y":601},{"Bonus":0,"Continent":"K46","ID":33998,"Name":"043 Mucharadza","PlayerID":9238175,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33998","ServerKey":"pl181","X":663,"Y":420},{"Bonus":2,"Continent":"K35","ID":33999,"Name":"AAA","PlayerID":1006847,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=33999","ServerKey":"pl181","X":530,"Y":319},{"Bonus":0,"Continent":"K66","ID":34000,"Name":"Wioska 085","PlayerID":848971079,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34000","ServerKey":"pl181","X":646,"Y":612},{"Bonus":0,"Continent":"K66","ID":34001,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34001","ServerKey":"pl181","X":635,"Y":626},{"Bonus":0,"Continent":"K63","ID":34002,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34002","ServerKey":"pl181","X":349,"Y":606},{"Bonus":0,"Continent":"K33","ID":34003,"Name":"Szlachcic","PlayerID":3484132,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34003","ServerKey":"pl181","X":391,"Y":358},{"Bonus":0,"Continent":"K65","ID":34004,"Name":"018.","PlayerID":699695167,"Points":8200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34004","ServerKey":"pl181","X":557,"Y":620},{"Bonus":0,"Continent":"K66","ID":34005,"Name":"A039","PlayerID":9023703,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34005","ServerKey":"pl181","X":608,"Y":647},{"Bonus":0,"Continent":"K63","ID":34006,"Name":"A 090","PlayerID":699269923,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34006","ServerKey":"pl181","X":374,"Y":635},{"Bonus":0,"Continent":"K43","ID":34008,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":5267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34008","ServerKey":"pl181","X":324,"Y":454},{"Bonus":5,"Continent":"K43","ID":34009,"Name":"SJ2","PlayerID":6258092,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34009","ServerKey":"pl181","X":322,"Y":455},{"Bonus":0,"Continent":"K64","ID":34010,"Name":"004 Arizona","PlayerID":699238479,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34010","ServerKey":"pl181","X":490,"Y":683},{"Bonus":0,"Continent":"K65","ID":34011,"Name":"Auu 05","PlayerID":699567608,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34011","ServerKey":"pl181","X":582,"Y":662},{"Bonus":0,"Continent":"K34","ID":34013,"Name":"062...skrzyp póƂnoc","PlayerID":6920960,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34013","ServerKey":"pl181","X":439,"Y":329},{"Bonus":0,"Continent":"K64","ID":34014,"Name":"043 BiaƂy Most","PlayerID":699834004,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34014","ServerKey":"pl181","X":469,"Y":677},{"Bonus":0,"Continent":"K64","ID":34015,"Name":"052.","PlayerID":849034882,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34015","ServerKey":"pl181","X":458,"Y":678},{"Bonus":0,"Continent":"K66","ID":34016,"Name":"_PUSTA","PlayerID":698768565,"Points":10082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34016","ServerKey":"pl181","X":657,"Y":601},{"Bonus":0,"Continent":"K53","ID":34017,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34017","ServerKey":"pl181","X":336,"Y":576},{"Bonus":0,"Continent":"K34","ID":34018,"Name":"191...segador","PlayerID":6920960,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34018","ServerKey":"pl181","X":456,"Y":323},{"Bonus":0,"Continent":"K46","ID":34019,"Name":"Jaaa","PlayerID":698635863,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34019","ServerKey":"pl181","X":676,"Y":490},{"Bonus":0,"Continent":"K64","ID":34020,"Name":"Damietta","PlayerID":849089459,"Points":8643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34020","ServerKey":"pl181","X":412,"Y":658},{"Bonus":0,"Continent":"K64","ID":34021,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34021","ServerKey":"pl181","X":419,"Y":658},{"Bonus":0,"Continent":"K65","ID":34023,"Name":"0296","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34023","ServerKey":"pl181","X":573,"Y":664},{"Bonus":0,"Continent":"K35","ID":34024,"Name":"10. Netflix and chill","PlayerID":699072129,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34024","ServerKey":"pl181","X":555,"Y":326},{"Bonus":0,"Continent":"K56","ID":34025,"Name":"GĂłra ƛw Anny","PlayerID":848932879,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34025","ServerKey":"pl181","X":675,"Y":551},{"Bonus":0,"Continent":"K46","ID":34026,"Name":"019 Barba","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34026","ServerKey":"pl181","X":684,"Y":497},{"Bonus":0,"Continent":"K36","ID":34027,"Name":"4 Vienna","PlayerID":699857387,"Points":4669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34027","ServerKey":"pl181","X":621,"Y":366},{"Bonus":0,"Continent":"K35","ID":34028,"Name":"ADEN","PlayerID":698588535,"Points":7068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34028","ServerKey":"pl181","X":599,"Y":347},{"Bonus":0,"Continent":"K64","ID":34029,"Name":"Wioska arek1s","PlayerID":1578509,"Points":8119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34029","ServerKey":"pl181","X":457,"Y":679},{"Bonus":0,"Continent":"K46","ID":34030,"Name":"wreszcie moja","PlayerID":1086351,"Points":8115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34030","ServerKey":"pl181","X":651,"Y":401},{"Bonus":0,"Continent":"K65","ID":34031,"Name":"Wyspa_32","PlayerID":2585846,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34031","ServerKey":"pl181","X":505,"Y":684},{"Bonus":0,"Continent":"K64","ID":34032,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34032","ServerKey":"pl181","X":403,"Y":657},{"Bonus":0,"Continent":"K65","ID":34033,"Name":"A037","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34033","ServerKey":"pl181","X":598,"Y":657},{"Bonus":0,"Continent":"K46","ID":34034,"Name":"26. Siedlik12345","PlayerID":699804790,"Points":8779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34034","ServerKey":"pl181","X":678,"Y":473},{"Bonus":0,"Continent":"K56","ID":34035,"Name":"Wioska 004","PlayerID":2999957,"Points":7862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34035","ServerKey":"pl181","X":678,"Y":531},{"Bonus":0,"Continent":"K64","ID":34037,"Name":"006","PlayerID":699246032,"Points":8950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34037","ServerKey":"pl181","X":410,"Y":659},{"Bonus":0,"Continent":"K64","ID":34038,"Name":"[01]","PlayerID":699849210,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34038","ServerKey":"pl181","X":430,"Y":668},{"Bonus":0,"Continent":"K65","ID":34039,"Name":"036","PlayerID":2293376,"Points":7184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34039","ServerKey":"pl181","X":529,"Y":680},{"Bonus":0,"Continent":"K66","ID":34040,"Name":"Sony 911","PlayerID":1415009,"Points":8860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34040","ServerKey":"pl181","X":621,"Y":637},{"Bonus":0,"Continent":"K56","ID":34041,"Name":"C 014","PlayerID":8078914,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34041","ServerKey":"pl181","X":678,"Y":517},{"Bonus":0,"Continent":"K43","ID":34042,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34042","ServerKey":"pl181","X":325,"Y":479},{"Bonus":0,"Continent":"K36","ID":34043,"Name":"Venlo","PlayerID":9103424,"Points":4394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34043","ServerKey":"pl181","X":607,"Y":357},{"Bonus":0,"Continent":"K64","ID":34044,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34044","ServerKey":"pl181","X":437,"Y":673},{"Bonus":0,"Continent":"K34","ID":34045,"Name":"0153","PlayerID":699431255,"Points":2837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34045","ServerKey":"pl181","X":410,"Y":341},{"Bonus":0,"Continent":"K65","ID":34046,"Name":"|063| Ponton","PlayerID":699781762,"Points":8760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34046","ServerKey":"pl181","X":508,"Y":679},{"Bonus":0,"Continent":"K65","ID":34047,"Name":"0414","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34047","ServerKey":"pl181","X":544,"Y":634},{"Bonus":0,"Continent":"K36","ID":34048,"Name":".:009:.","PlayerID":849078297,"Points":5317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34048","ServerKey":"pl181","X":633,"Y":383},{"Bonus":0,"Continent":"K56","ID":34049,"Name":"Wioska Sir Zordon 001","PlayerID":478956,"Points":8886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34049","ServerKey":"pl181","X":663,"Y":574},{"Bonus":0,"Continent":"K66","ID":34050,"Name":"TK2","PlayerID":1900364,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34050","ServerKey":"pl181","X":651,"Y":602},{"Bonus":0,"Continent":"K63","ID":34051,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34051","ServerKey":"pl181","X":381,"Y":641},{"Bonus":0,"Continent":"K53","ID":34052,"Name":"C0023","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34052","ServerKey":"pl181","X":316,"Y":514},{"Bonus":0,"Continent":"K53","ID":34053,"Name":"Wonderwall","PlayerID":698962117,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34053","ServerKey":"pl181","X":328,"Y":549},{"Bonus":0,"Continent":"K43","ID":34054,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34054","ServerKey":"pl181","X":318,"Y":496},{"Bonus":0,"Continent":"K65","ID":34055,"Name":"% 10 % spocone dziadki","PlayerID":848995242,"Points":1592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34055","ServerKey":"pl181","X":587,"Y":656},{"Bonus":0,"Continent":"K33","ID":34056,"Name":"Szulernia","PlayerID":7249451,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34056","ServerKey":"pl181","X":375,"Y":374},{"Bonus":0,"Continent":"K53","ID":34057,"Name":"Mniejsze zƂo 0097","PlayerID":699794765,"Points":8284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34057","ServerKey":"pl181","X":324,"Y":541},{"Bonus":0,"Continent":"K63","ID":34058,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34058","ServerKey":"pl181","X":390,"Y":639},{"Bonus":0,"Continent":"K34","ID":34059,"Name":"A-050-Heffitto","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34059","ServerKey":"pl181","X":403,"Y":349},{"Bonus":0,"Continent":"K33","ID":34060,"Name":"cz 110 8","PlayerID":3909522,"Points":6098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34060","ServerKey":"pl181","X":367,"Y":375},{"Bonus":0,"Continent":"K36","ID":34061,"Name":"082 ƚwiąteczna Bombka","PlayerID":699491076,"Points":7997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34061","ServerKey":"pl181","X":650,"Y":399},{"Bonus":0,"Continent":"K46","ID":34062,"Name":"100. Aquae Sextiae","PlayerID":849091866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34062","ServerKey":"pl181","X":658,"Y":409},{"Bonus":0,"Continent":"K53","ID":34063,"Name":"C0284","PlayerID":8841266,"Points":6613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34063","ServerKey":"pl181","X":322,"Y":506},{"Bonus":0,"Continent":"K35","ID":34064,"Name":"J#006","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34064","ServerKey":"pl181","X":571,"Y":332},{"Bonus":0,"Continent":"K65","ID":34065,"Name":"- 292 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34065","ServerKey":"pl181","X":548,"Y":673},{"Bonus":0,"Continent":"K64","ID":34066,"Name":"#014. NightWalk","PlayerID":848896948,"Points":9009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34066","ServerKey":"pl181","X":456,"Y":676},{"Bonus":0,"Continent":"K65","ID":34067,"Name":"Auu 03","PlayerID":848995242,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34067","ServerKey":"pl181","X":577,"Y":667},{"Bonus":0,"Continent":"K63","ID":34068,"Name":"Nadolice","PlayerID":699864013,"Points":5410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34068","ServerKey":"pl181","X":355,"Y":614},{"Bonus":0,"Continent":"K36","ID":34069,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":8963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34069","ServerKey":"pl181","X":623,"Y":365},{"Bonus":0,"Continent":"K33","ID":34070,"Name":"Szulernia","PlayerID":7249451,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34070","ServerKey":"pl181","X":380,"Y":366},{"Bonus":0,"Continent":"K35","ID":34071,"Name":"J#016","PlayerID":2065730,"Points":5910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34071","ServerKey":"pl181","X":579,"Y":334},{"Bonus":0,"Continent":"K33","ID":34072,"Name":"Szulernia","PlayerID":7249451,"Points":10102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34072","ServerKey":"pl181","X":375,"Y":371},{"Bonus":0,"Continent":"K56","ID":34073,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34073","ServerKey":"pl181","X":681,"Y":512},{"Bonus":0,"Continent":"K43","ID":34074,"Name":"007 Haty","PlayerID":6258092,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34074","ServerKey":"pl181","X":347,"Y":454},{"Bonus":0,"Continent":"K65","ID":34075,"Name":"PoƂudnie.009","PlayerID":873575,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34075","ServerKey":"pl181","X":555,"Y":671},{"Bonus":0,"Continent":"K33","ID":34076,"Name":"Szlachcic","PlayerID":3484132,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34076","ServerKey":"pl181","X":396,"Y":349},{"Bonus":0,"Continent":"K34","ID":34077,"Name":"Winterhome.037","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34077","ServerKey":"pl181","X":494,"Y":315},{"Bonus":0,"Continent":"K35","ID":34078,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34078","ServerKey":"pl181","X":526,"Y":317},{"Bonus":0,"Continent":"K43","ID":34079,"Name":"Jaksięmaszkochaniefilllaarako","PlayerID":849098299,"Points":8455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34079","ServerKey":"pl181","X":343,"Y":410},{"Bonus":0,"Continent":"K33","ID":34080,"Name":"*048*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34080","ServerKey":"pl181","X":358,"Y":391},{"Bonus":0,"Continent":"K46","ID":34081,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":7395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34081","ServerKey":"pl181","X":674,"Y":462},{"Bonus":0,"Continent":"K36","ID":34082,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":9301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34082","ServerKey":"pl181","X":641,"Y":383},{"Bonus":0,"Continent":"K43","ID":34083,"Name":"001","PlayerID":7127455,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34083","ServerKey":"pl181","X":318,"Y":478},{"Bonus":0,"Continent":"K46","ID":34084,"Name":"I055","PlayerID":699722599,"Points":9944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34084","ServerKey":"pl181","X":677,"Y":452},{"Bonus":0,"Continent":"K65","ID":34085,"Name":"058","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34085","ServerKey":"pl181","X":513,"Y":683},{"Bonus":0,"Continent":"K46","ID":34086,"Name":"[036] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34086","ServerKey":"pl181","X":674,"Y":443},{"Bonus":0,"Continent":"K66","ID":34087,"Name":"Sony 911","PlayerID":1415009,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34087","ServerKey":"pl181","X":620,"Y":632},{"Bonus":0,"Continent":"K64","ID":34088,"Name":"Wioska V","PlayerID":848896948,"Points":7846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34088","ServerKey":"pl181","X":456,"Y":675},{"Bonus":0,"Continent":"K46","ID":34090,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34090","ServerKey":"pl181","X":680,"Y":486},{"Bonus":0,"Continent":"K33","ID":34091,"Name":"Szlachcic","PlayerID":698160606,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34091","ServerKey":"pl181","X":386,"Y":359},{"Bonus":0,"Continent":"K35","ID":34092,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":3761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34092","ServerKey":"pl181","X":584,"Y":340},{"Bonus":0,"Continent":"K36","ID":34093,"Name":"WesoƂych ƚwiąt 2","PlayerID":7340529,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34093","ServerKey":"pl181","X":639,"Y":380},{"Bonus":0,"Continent":"K63","ID":34094,"Name":"A 091","PlayerID":699342219,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34094","ServerKey":"pl181","X":375,"Y":635},{"Bonus":0,"Continent":"K63","ID":34095,"Name":"A 074","PlayerID":699342219,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34095","ServerKey":"pl181","X":368,"Y":629},{"Bonus":0,"Continent":"K63","ID":34096,"Name":"DejMon5","PlayerID":699805839,"Points":7720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34096","ServerKey":"pl181","X":371,"Y":622},{"Bonus":0,"Continent":"K65","ID":34097,"Name":"PoƂudnie.010","PlayerID":873575,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34097","ServerKey":"pl181","X":556,"Y":673},{"Bonus":0,"Continent":"K33","ID":34098,"Name":"Szlachcic","PlayerID":3484132,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34098","ServerKey":"pl181","X":392,"Y":358},{"Bonus":0,"Continent":"K56","ID":34099,"Name":"IƂownica","PlayerID":849039310,"Points":4144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34099","ServerKey":"pl181","X":667,"Y":574},{"Bonus":0,"Continent":"K46","ID":34100,"Name":"083. Utinum","PlayerID":849091866,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34100","ServerKey":"pl181","X":656,"Y":406},{"Bonus":0,"Continent":"K65","ID":34101,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34101","ServerKey":"pl181","X":577,"Y":662},{"Bonus":0,"Continent":"K36","ID":34102,"Name":".4.","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34102","ServerKey":"pl181","X":606,"Y":356},{"Bonus":0,"Continent":"K34","ID":34103,"Name":"Wioska barbarzyƄska","PlayerID":698239813,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34103","ServerKey":"pl181","X":495,"Y":321},{"Bonus":0,"Continent":"K35","ID":34104,"Name":"A.10 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":7800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34104","ServerKey":"pl181","X":563,"Y":333},{"Bonus":0,"Continent":"K34","ID":34105,"Name":"189...barba","PlayerID":6920960,"Points":5157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34105","ServerKey":"pl181","X":439,"Y":325},{"Bonus":0,"Continent":"K63","ID":34106,"Name":"003","PlayerID":7183372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34106","ServerKey":"pl181","X":347,"Y":602},{"Bonus":0,"Continent":"K43","ID":34107,"Name":"Out of Touch","PlayerID":698962117,"Points":3469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34107","ServerKey":"pl181","X":327,"Y":439},{"Bonus":0,"Continent":"K53","ID":34108,"Name":"C0062","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34108","ServerKey":"pl181","X":321,"Y":523},{"Bonus":0,"Continent":"K34","ID":34109,"Name":"fff","PlayerID":698239813,"Points":9190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34109","ServerKey":"pl181","X":491,"Y":318},{"Bonus":4,"Continent":"K34","ID":34110,"Name":"A-045-Heffitto","PlayerID":8419570,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34110","ServerKey":"pl181","X":402,"Y":347},{"Bonus":0,"Continent":"K36","ID":34111,"Name":"0084","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34111","ServerKey":"pl181","X":609,"Y":351},{"Bonus":0,"Continent":"K35","ID":34112,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":3673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34112","ServerKey":"pl181","X":506,"Y":319},{"Bonus":0,"Continent":"K56","ID":34113,"Name":"060 pfennig","PlayerID":2135129,"Points":8437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34113","ServerKey":"pl181","X":682,"Y":508},{"Bonus":0,"Continent":"K36","ID":34114,"Name":"003","PlayerID":1990750,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34114","ServerKey":"pl181","X":608,"Y":350},{"Bonus":0,"Continent":"K64","ID":34115,"Name":"#015. Tony Hawk","PlayerID":848896948,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34115","ServerKey":"pl181","X":451,"Y":678},{"Bonus":0,"Continent":"K65","ID":34116,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34116","ServerKey":"pl181","X":526,"Y":682},{"Bonus":0,"Continent":"K46","ID":34117,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34117","ServerKey":"pl181","X":679,"Y":483},{"Bonus":0,"Continent":"K64","ID":34118,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34118","ServerKey":"pl181","X":444,"Y":675},{"Bonus":0,"Continent":"K63","ID":34119,"Name":"-001-","PlayerID":849096354,"Points":4127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34119","ServerKey":"pl181","X":375,"Y":637},{"Bonus":0,"Continent":"K33","ID":34120,"Name":"*124*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34120","ServerKey":"pl181","X":364,"Y":383},{"Bonus":0,"Continent":"K56","ID":34121,"Name":"B 057","PlayerID":8078914,"Points":8307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34121","ServerKey":"pl181","X":678,"Y":535},{"Bonus":0,"Continent":"K33","ID":34123,"Name":"Szulernia","PlayerID":7249451,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34123","ServerKey":"pl181","X":376,"Y":370},{"Bonus":0,"Continent":"K34","ID":34124,"Name":"073.Stradi","PlayerID":698365960,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34124","ServerKey":"pl181","X":454,"Y":322},{"Bonus":0,"Continent":"K33","ID":34125,"Name":"cz WoƂów","PlayerID":3909522,"Points":4230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34125","ServerKey":"pl181","X":365,"Y":383},{"Bonus":0,"Continent":"K46","ID":34126,"Name":"Wioska lejto27","PlayerID":699574408,"Points":10123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34126","ServerKey":"pl181","X":680,"Y":469},{"Bonus":0,"Continent":"K53","ID":34127,"Name":"(032)Rira","PlayerID":849012521,"Points":9436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34127","ServerKey":"pl181","X":336,"Y":567},{"Bonus":0,"Continent":"K33","ID":34128,"Name":"Szulernia","PlayerID":7249451,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34128","ServerKey":"pl181","X":370,"Y":371},{"Bonus":0,"Continent":"K43","ID":34129,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34129","ServerKey":"pl181","X":320,"Y":490},{"Bonus":0,"Continent":"K43","ID":34130,"Name":"010. Dla flag","PlayerID":698630507,"Points":8556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34130","ServerKey":"pl181","X":354,"Y":435},{"Bonus":0,"Continent":"K56","ID":34131,"Name":"Sobącz","PlayerID":849039310,"Points":6885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34131","ServerKey":"pl181","X":653,"Y":589},{"Bonus":0,"Continent":"K36","ID":34132,"Name":"Wyspa 015","PlayerID":699756210,"Points":8679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34132","ServerKey":"pl181","X":631,"Y":380},{"Bonus":0,"Continent":"K65","ID":34133,"Name":"0260","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34133","ServerKey":"pl181","X":555,"Y":653},{"Bonus":0,"Continent":"K43","ID":34134,"Name":"Wioska barbarzyƄska","PlayerID":699823490,"Points":3471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34134","ServerKey":"pl181","X":316,"Y":495},{"Bonus":0,"Continent":"K33","ID":34135,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34135","ServerKey":"pl181","X":391,"Y":352},{"Bonus":0,"Continent":"K66","ID":34136,"Name":"#064#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34136","ServerKey":"pl181","X":629,"Y":625},{"Bonus":0,"Continent":"K45","ID":34137,"Name":"008","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34137","ServerKey":"pl181","X":550,"Y":407},{"Bonus":0,"Continent":"K34","ID":34138,"Name":"[B]_[035] Dejv.oldplyr","PlayerID":699380607,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34138","ServerKey":"pl181","X":417,"Y":344},{"Bonus":0,"Continent":"K34","ID":34139,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34139","ServerKey":"pl181","X":437,"Y":331},{"Bonus":0,"Continent":"K36","ID":34140,"Name":"0002","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34140","ServerKey":"pl181","X":625,"Y":384},{"Bonus":0,"Continent":"K56","ID":34142,"Name":"PƂachty","PlayerID":849039310,"Points":5860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34142","ServerKey":"pl181","X":659,"Y":583},{"Bonus":0,"Continent":"K43","ID":34143,"Name":"Wioska barbarzyƄska","PlayerID":849013126,"Points":3715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34143","ServerKey":"pl181","X":320,"Y":485},{"Bonus":0,"Continent":"K64","ID":34144,"Name":"050","PlayerID":699834004,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34144","ServerKey":"pl181","X":475,"Y":676},{"Bonus":0,"Continent":"K34","ID":34145,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34145","ServerKey":"pl181","X":429,"Y":333},{"Bonus":0,"Continent":"K56","ID":34146,"Name":"O57 Winnipeg","PlayerID":699272880,"Points":7676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34146","ServerKey":"pl181","X":670,"Y":554},{"Bonus":0,"Continent":"K33","ID":34147,"Name":"*066*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34147","ServerKey":"pl181","X":356,"Y":386},{"Bonus":0,"Continent":"K66","ID":34148,"Name":"Ć»UBR PSYCHIATRYK 003","PlayerID":33900,"Points":8644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34148","ServerKey":"pl181","X":612,"Y":639},{"Bonus":0,"Continent":"K56","ID":34149,"Name":"003","PlayerID":699598425,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34149","ServerKey":"pl181","X":680,"Y":506},{"Bonus":0,"Continent":"K43","ID":34150,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34150","ServerKey":"pl181","X":315,"Y":490},{"Bonus":0,"Continent":"K66","ID":34151,"Name":"A015","PlayerID":9023703,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34151","ServerKey":"pl181","X":611,"Y":649},{"Bonus":0,"Continent":"K34","ID":34152,"Name":"fff","PlayerID":698239813,"Points":8830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34152","ServerKey":"pl181","X":488,"Y":319},{"Bonus":0,"Continent":"K35","ID":34153,"Name":"J#019","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34153","ServerKey":"pl181","X":571,"Y":337},{"Bonus":0,"Continent":"K46","ID":34154,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34154","ServerKey":"pl181","X":684,"Y":496},{"Bonus":0,"Continent":"K65","ID":34155,"Name":"2.Badalona","PlayerID":698215322,"Points":5532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34155","ServerKey":"pl181","X":565,"Y":672},{"Bonus":0,"Continent":"K63","ID":34156,"Name":"035 Brak doƛwiadczenia na maszyn","PlayerID":6354098,"Points":8549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34156","ServerKey":"pl181","X":373,"Y":628},{"Bonus":0,"Continent":"K43","ID":34157,"Name":"Out of Touch","PlayerID":698962117,"Points":9838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34157","ServerKey":"pl181","X":327,"Y":443},{"Bonus":0,"Continent":"K65","ID":34158,"Name":"- 296 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34158","ServerKey":"pl181","X":549,"Y":673},{"Bonus":0,"Continent":"K36","ID":34159,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":6962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34159","ServerKey":"pl181","X":622,"Y":363},{"Bonus":0,"Continent":"K64","ID":34160,"Name":"No.19","PlayerID":698826986,"Points":2515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34160","ServerKey":"pl181","X":478,"Y":682},{"Bonus":0,"Continent":"K43","ID":34161,"Name":"002. BrwinĂłw","PlayerID":849098966,"Points":7339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34161","ServerKey":"pl181","X":322,"Y":447},{"Bonus":0,"Continent":"K46","ID":34162,"Name":"055 Wioska 015","PlayerID":9238175,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34162","ServerKey":"pl181","X":660,"Y":421},{"Bonus":0,"Continent":"K64","ID":34163,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34163","ServerKey":"pl181","X":446,"Y":678},{"Bonus":0,"Continent":"K34","ID":34164,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34164","ServerKey":"pl181","X":415,"Y":337},{"Bonus":0,"Continent":"K63","ID":34165,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34165","ServerKey":"pl181","X":382,"Y":641},{"Bonus":0,"Continent":"K43","ID":34166,"Name":"*261*","PlayerID":699273451,"Points":2955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34166","ServerKey":"pl181","X":339,"Y":415},{"Bonus":0,"Continent":"K65","ID":34167,"Name":"Muchomor *007*","PlayerID":606407,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34167","ServerKey":"pl181","X":511,"Y":685},{"Bonus":0,"Continent":"K34","ID":34168,"Name":"#0312 sliwatojo","PlayerID":1238300,"Points":6636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34168","ServerKey":"pl181","X":460,"Y":321},{"Bonus":6,"Continent":"K56","ID":34170,"Name":"094. Zatoka KrĂłlewska","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34170","ServerKey":"pl181","X":665,"Y":583},{"Bonus":0,"Continent":"K66","ID":34171,"Name":"LordAlamar","PlayerID":699797508,"Points":6739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34171","ServerKey":"pl181","X":636,"Y":615},{"Bonus":0,"Continent":"K53","ID":34172,"Name":"(007)Thaylen City","PlayerID":849098695,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34172","ServerKey":"pl181","X":328,"Y":568},{"Bonus":0,"Continent":"K36","ID":34173,"Name":"Wyspa 027","PlayerID":699756210,"Points":6276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34173","ServerKey":"pl181","X":636,"Y":374},{"Bonus":0,"Continent":"K56","ID":34174,"Name":"_PUSTA","PlayerID":698768565,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34174","ServerKey":"pl181","X":660,"Y":592},{"Bonus":0,"Continent":"K36","ID":34175,"Name":"Wyspa 020","PlayerID":699756210,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34175","ServerKey":"pl181","X":629,"Y":375},{"Bonus":0,"Continent":"K64","ID":34176,"Name":"B006","PlayerID":8954402,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34176","ServerKey":"pl181","X":473,"Y":679},{"Bonus":0,"Continent":"K56","ID":34177,"Name":"TWIERDZA .:047:.","PlayerID":7154207,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34177","ServerKey":"pl181","X":667,"Y":562},{"Bonus":0,"Continent":"K46","ID":34178,"Name":"BACÓWKA |040|","PlayerID":7394371,"Points":7142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34178","ServerKey":"pl181","X":661,"Y":408},{"Bonus":0,"Continent":"K63","ID":34179,"Name":"019 CzarnoksiÄ™ĆŒnik","PlayerID":8268010,"Points":6620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34179","ServerKey":"pl181","X":366,"Y":627},{"Bonus":0,"Continent":"K64","ID":34180,"Name":"042 Belhaven","PlayerID":699834004,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34180","ServerKey":"pl181","X":471,"Y":678},{"Bonus":0,"Continent":"K36","ID":34181,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34181","ServerKey":"pl181","X":630,"Y":377},{"Bonus":0,"Continent":"K36","ID":34182,"Name":".:012:.","PlayerID":849078297,"Points":4577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34182","ServerKey":"pl181","X":637,"Y":380},{"Bonus":0,"Continent":"K65","ID":34184,"Name":"- 293 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34184","ServerKey":"pl181","X":544,"Y":674},{"Bonus":4,"Continent":"K33","ID":34185,"Name":"Szulernia","PlayerID":7249451,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34185","ServerKey":"pl181","X":374,"Y":373},{"Bonus":0,"Continent":"K53","ID":34186,"Name":"C0025","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34186","ServerKey":"pl181","X":320,"Y":520},{"Bonus":0,"Continent":"K64","ID":34187,"Name":"021","PlayerID":699736927,"Points":6475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34187","ServerKey":"pl181","X":412,"Y":657},{"Bonus":0,"Continent":"K64","ID":34188,"Name":"028# Lajrra","PlayerID":3933666,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34188","ServerKey":"pl181","X":457,"Y":680},{"Bonus":0,"Continent":"K53","ID":34189,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34189","ServerKey":"pl181","X":343,"Y":589},{"Bonus":0,"Continent":"K36","ID":34190,"Name":"Gattacka","PlayerID":699298370,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34190","ServerKey":"pl181","X":622,"Y":372},{"Bonus":0,"Continent":"K35","ID":34191,"Name":"Lord Lord Franek .#143","PlayerID":698420691,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34191","ServerKey":"pl181","X":514,"Y":322},{"Bonus":0,"Continent":"K46","ID":34192,"Name":"037","PlayerID":7085502,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34192","ServerKey":"pl181","X":677,"Y":479},{"Bonus":0,"Continent":"K64","ID":34193,"Name":"034.xxx","PlayerID":699393742,"Points":4161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34193","ServerKey":"pl181","X":479,"Y":684},{"Bonus":0,"Continent":"K35","ID":34194,"Name":"007 Islay","PlayerID":699072129,"Points":6541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34194","ServerKey":"pl181","X":557,"Y":325},{"Bonus":0,"Continent":"K56","ID":34195,"Name":"75k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34195","ServerKey":"pl181","X":673,"Y":566},{"Bonus":0,"Continent":"K36","ID":34196,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":5217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34196","ServerKey":"pl181","X":628,"Y":368},{"Bonus":0,"Continent":"K34","ID":34197,"Name":"200 km","PlayerID":699854830,"Points":4012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34197","ServerKey":"pl181","X":408,"Y":344},{"Bonus":0,"Continent":"K46","ID":34198,"Name":"[014] Klocuchowo","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34198","ServerKey":"pl181","X":673,"Y":435},{"Bonus":0,"Continent":"K64","ID":34199,"Name":"rotes idz spac misiu","PlayerID":698807570,"Points":8632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34199","ServerKey":"pl181","X":462,"Y":675},{"Bonus":0,"Continent":"K65","ID":34200,"Name":"114","PlayerID":849097799,"Points":5199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34200","ServerKey":"pl181","X":595,"Y":656},{"Bonus":6,"Continent":"K43","ID":34201,"Name":"SJ5","PlayerID":6258092,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34201","ServerKey":"pl181","X":330,"Y":448},{"Bonus":0,"Continent":"K33","ID":34202,"Name":"-003-","PlayerID":1693936,"Points":3934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34202","ServerKey":"pl181","X":346,"Y":396},{"Bonus":0,"Continent":"K36","ID":34203,"Name":"Myszki to ĆŒart tego serwera :)","PlayerID":849057572,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34203","ServerKey":"pl181","X":605,"Y":347},{"Bonus":0,"Continent":"K34","ID":34204,"Name":"209","PlayerID":7271812,"Points":3496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34204","ServerKey":"pl181","X":422,"Y":333},{"Bonus":5,"Continent":"K43","ID":34205,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":5940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34205","ServerKey":"pl181","X":318,"Y":474},{"Bonus":0,"Continent":"K65","ID":34206,"Name":"0578","PlayerID":698659980,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34206","ServerKey":"pl181","X":566,"Y":665},{"Bonus":0,"Continent":"K53","ID":34207,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34207","ServerKey":"pl181","X":324,"Y":524},{"Bonus":0,"Continent":"K35","ID":34208,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34208","ServerKey":"pl181","X":592,"Y":347},{"Bonus":0,"Continent":"K65","ID":34209,"Name":"0020","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34209","ServerKey":"pl181","X":546,"Y":671},{"Bonus":0,"Continent":"K64","ID":34210,"Name":"080","PlayerID":699336777,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34210","ServerKey":"pl181","X":474,"Y":614},{"Bonus":0,"Continent":"K43","ID":34211,"Name":"A0283","PlayerID":8841266,"Points":9257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34211","ServerKey":"pl181","X":321,"Y":485},{"Bonus":0,"Continent":"K64","ID":34212,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34212","ServerKey":"pl181","X":442,"Y":676},{"Bonus":0,"Continent":"K63","ID":34213,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":699269923,"Points":9832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34213","ServerKey":"pl181","X":380,"Y":641},{"Bonus":0,"Continent":"K35","ID":34214,"Name":"Wioska 4","PlayerID":7560474,"Points":7042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34214","ServerKey":"pl181","X":575,"Y":333},{"Bonus":0,"Continent":"K66","ID":34215,"Name":"A057","PlayerID":9023703,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34215","ServerKey":"pl181","X":606,"Y":651},{"Bonus":0,"Continent":"K34","ID":34216,"Name":"0154","PlayerID":699431255,"Points":2414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34216","ServerKey":"pl181","X":411,"Y":343},{"Bonus":0,"Continent":"K46","ID":34217,"Name":"village 2","PlayerID":1086351,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34217","ServerKey":"pl181","X":650,"Y":402},{"Bonus":0,"Continent":"K34","ID":34219,"Name":"#0134 golek95","PlayerID":1238300,"Points":8230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34219","ServerKey":"pl181","X":477,"Y":319},{"Bonus":0,"Continent":"K35","ID":34220,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":5003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34220","ServerKey":"pl181","X":598,"Y":348},{"Bonus":0,"Continent":"K36","ID":34221,"Name":"047- Mroczna Osada","PlayerID":849035905,"Points":9552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34221","ServerKey":"pl181","X":651,"Y":394},{"Bonus":0,"Continent":"K46","ID":34222,"Name":"OSADA III","PlayerID":699598425,"Points":10582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34222","ServerKey":"pl181","X":679,"Y":499},{"Bonus":0,"Continent":"K64","ID":34223,"Name":"Psycha Siada","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34223","ServerKey":"pl181","X":441,"Y":668},{"Bonus":0,"Continent":"K43","ID":34224,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34224","ServerKey":"pl181","X":323,"Y":470},{"Bonus":0,"Continent":"K46","ID":34225,"Name":"I056","PlayerID":699722599,"Points":10377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34225","ServerKey":"pl181","X":681,"Y":461},{"Bonus":0,"Continent":"K36","ID":34226,"Name":"Almere","PlayerID":1990750,"Points":9480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34226","ServerKey":"pl181","X":603,"Y":353},{"Bonus":0,"Continent":"K46","ID":34227,"Name":"**38**","PlayerID":849098782,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34227","ServerKey":"pl181","X":672,"Y":439},{"Bonus":0,"Continent":"K43","ID":34228,"Name":"*235*","PlayerID":699273451,"Points":10433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34228","ServerKey":"pl181","X":333,"Y":445},{"Bonus":0,"Continent":"K53","ID":34229,"Name":"C0072","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34229","ServerKey":"pl181","X":320,"Y":512},{"Bonus":0,"Continent":"K43","ID":34230,"Name":"*243*","PlayerID":699273451,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34230","ServerKey":"pl181","X":336,"Y":437},{"Bonus":0,"Continent":"K36","ID":34231,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":3668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34231","ServerKey":"pl181","X":628,"Y":375},{"Bonus":0,"Continent":"K63","ID":34232,"Name":"A 030","PlayerID":699342219,"Points":8916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34232","ServerKey":"pl181","X":368,"Y":628},{"Bonus":0,"Continent":"K36","ID":34233,"Name":"138 Dolina Konopii","PlayerID":699491076,"Points":8250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34233","ServerKey":"pl181","X":648,"Y":399},{"Bonus":0,"Continent":"K64","ID":34234,"Name":"012 Mordor","PlayerID":698585370,"Points":9739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34234","ServerKey":"pl181","X":456,"Y":677},{"Bonus":0,"Continent":"K64","ID":34235,"Name":"0608","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34235","ServerKey":"pl181","X":476,"Y":683},{"Bonus":0,"Continent":"K64","ID":34236,"Name":"XXX","PlayerID":699827112,"Points":8662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34236","ServerKey":"pl181","X":461,"Y":676},{"Bonus":0,"Continent":"K43","ID":34237,"Name":"Westfold.008","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34237","ServerKey":"pl181","X":331,"Y":422},{"Bonus":0,"Continent":"K53","ID":34238,"Name":"C0084","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34238","ServerKey":"pl181","X":319,"Y":511},{"Bonus":0,"Continent":"K34","ID":34239,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":6703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34239","ServerKey":"pl181","X":460,"Y":324},{"Bonus":8,"Continent":"K53","ID":34240,"Name":"001","PlayerID":849012521,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34240","ServerKey":"pl181","X":324,"Y":557},{"Bonus":0,"Continent":"K36","ID":34241,"Name":"=|38|=","PlayerID":9101574,"Points":4291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34241","ServerKey":"pl181","X":645,"Y":391},{"Bonus":0,"Continent":"K43","ID":34242,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":3857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34242","ServerKey":"pl181","X":321,"Y":452},{"Bonus":0,"Continent":"K56","ID":34244,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34244","ServerKey":"pl181","X":679,"Y":516},{"Bonus":0,"Continent":"K56","ID":34245,"Name":"Farcik","PlayerID":2269943,"Points":6215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34245","ServerKey":"pl181","X":660,"Y":585},{"Bonus":0,"Continent":"K35","ID":34246,"Name":"ToruƄ","PlayerID":849108784,"Points":3162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34246","ServerKey":"pl181","X":555,"Y":323},{"Bonus":0,"Continent":"K63","ID":34247,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34247","ServerKey":"pl181","X":384,"Y":633},{"Bonus":0,"Continent":"K34","ID":34248,"Name":"#0165 yasoke19","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34248","ServerKey":"pl181","X":490,"Y":318},{"Bonus":0,"Continent":"K35","ID":34249,"Name":"Krytl07","PlayerID":1990750,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34249","ServerKey":"pl181","X":512,"Y":320},{"Bonus":0,"Continent":"K65","ID":34250,"Name":"C004 Liskota","PlayerID":9023703,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34250","ServerKey":"pl181","X":591,"Y":661},{"Bonus":0,"Continent":"K36","ID":34251,"Name":"0052","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34251","ServerKey":"pl181","X":602,"Y":353},{"Bonus":0,"Continent":"K65","ID":34252,"Name":"Mirzec","PlayerID":698723158,"Points":5805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34252","ServerKey":"pl181","X":572,"Y":667},{"Bonus":0,"Continent":"K53","ID":34253,"Name":"S1Joker pozdrawia ;)","PlayerID":849098695,"Points":6757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34253","ServerKey":"pl181","X":333,"Y":570},{"Bonus":0,"Continent":"K53","ID":34254,"Name":"Wioska barbarzyƄska","PlayerID":7098955,"Points":8730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34254","ServerKey":"pl181","X":318,"Y":506},{"Bonus":0,"Continent":"K34","ID":34255,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34255","ServerKey":"pl181","X":427,"Y":331},{"Bonus":0,"Continent":"K64","ID":34256,"Name":"No.17","PlayerID":698826986,"Points":1713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34256","ServerKey":"pl181","X":473,"Y":678},{"Bonus":0,"Continent":"K64","ID":34257,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34257","ServerKey":"pl181","X":435,"Y":668},{"Bonus":0,"Continent":"K43","ID":34258,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34258","ServerKey":"pl181","X":319,"Y":458},{"Bonus":0,"Continent":"K33","ID":34259,"Name":"*030*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34259","ServerKey":"pl181","X":349,"Y":393},{"Bonus":0,"Continent":"K35","ID":34260,"Name":"J#017","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34260","ServerKey":"pl181","X":576,"Y":337},{"Bonus":0,"Continent":"K33","ID":34261,"Name":"*009*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34261","ServerKey":"pl181","X":354,"Y":387},{"Bonus":0,"Continent":"K66","ID":34262,"Name":"#086#","PlayerID":692803,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34262","ServerKey":"pl181","X":633,"Y":625},{"Bonus":0,"Continent":"K34","ID":34263,"Name":"155...hubertw25","PlayerID":6920960,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34263","ServerKey":"pl181","X":441,"Y":326},{"Bonus":0,"Continent":"K36","ID":34264,"Name":"-10-","PlayerID":699837826,"Points":6835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34264","ServerKey":"pl181","X":624,"Y":373},{"Bonus":4,"Continent":"K33","ID":34265,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34265","ServerKey":"pl181","X":379,"Y":359},{"Bonus":0,"Continent":"K43","ID":34266,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":8470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34266","ServerKey":"pl181","X":332,"Y":422},{"Bonus":0,"Continent":"K36","ID":34267,"Name":"140 Dolina WilkĂłw","PlayerID":699491076,"Points":5495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34267","ServerKey":"pl181","X":649,"Y":397},{"Bonus":32,"Continent":"K64","ID":34268,"Name":"Twierdza (GETTO)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34268","ServerKey":"pl181","X":477,"Y":636},{"Bonus":0,"Continent":"K64","ID":34269,"Name":"016 Claremont","PlayerID":699834004,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34269","ServerKey":"pl181","X":476,"Y":678},{"Bonus":0,"Continent":"K64","ID":34270,"Name":"003 Desant","PlayerID":698620694,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34270","ServerKey":"pl181","X":480,"Y":682},{"Bonus":0,"Continent":"K66","ID":34271,"Name":"Wioska Rublow","PlayerID":1900364,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34271","ServerKey":"pl181","X":650,"Y":601},{"Bonus":0,"Continent":"K56","ID":34272,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":8006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34272","ServerKey":"pl181","X":685,"Y":512},{"Bonus":0,"Continent":"K33","ID":34274,"Name":"cz zachod 005","PlayerID":3909522,"Points":3351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34274","ServerKey":"pl181","X":364,"Y":377},{"Bonus":0,"Continent":"K46","ID":34275,"Name":"0003","PlayerID":699574408,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34275","ServerKey":"pl181","X":677,"Y":465},{"Bonus":0,"Continent":"K53","ID":34276,"Name":"C0057","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34276","ServerKey":"pl181","X":319,"Y":515},{"Bonus":0,"Continent":"K66","ID":34277,"Name":"Wioska 045","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34277","ServerKey":"pl181","X":647,"Y":603},{"Bonus":0,"Continent":"K64","ID":34278,"Name":"#Forza 03","PlayerID":699849210,"Points":6814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34278","ServerKey":"pl181","X":434,"Y":667},{"Bonus":0,"Continent":"K64","ID":34279,"Name":"Dlaczego..?","PlayerID":699684693,"Points":9124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34279","ServerKey":"pl181","X":413,"Y":667},{"Bonus":0,"Continent":"K46","ID":34280,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34280","ServerKey":"pl181","X":679,"Y":497},{"Bonus":0,"Continent":"K66","ID":34281,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34281","ServerKey":"pl181","X":642,"Y":617},{"Bonus":2,"Continent":"K43","ID":34282,"Name":"Wioska KrĂłlowo ZƂota 3","PlayerID":7012651,"Points":4114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34282","ServerKey":"pl181","X":328,"Y":433},{"Bonus":0,"Continent":"K56","ID":34283,"Name":"_PUSTA","PlayerID":698768565,"Points":10338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34283","ServerKey":"pl181","X":658,"Y":592},{"Bonus":0,"Continent":"K35","ID":34284,"Name":"Ten tego","PlayerID":699710633,"Points":9134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34284","ServerKey":"pl181","X":565,"Y":333},{"Bonus":0,"Continent":"K65","ID":34285,"Name":"PoƂudnie.006","PlayerID":873575,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34285","ServerKey":"pl181","X":555,"Y":675},{"Bonus":0,"Continent":"K63","ID":34286,"Name":"021","PlayerID":699083129,"Points":4223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34286","ServerKey":"pl181","X":358,"Y":606},{"Bonus":0,"Continent":"K46","ID":34287,"Name":"006 Liberty Stadium","PlayerID":849098769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34287","ServerKey":"pl181","X":675,"Y":445},{"Bonus":0,"Continent":"K53","ID":34288,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34288","ServerKey":"pl181","X":344,"Y":591},{"Bonus":0,"Continent":"K43","ID":34290,"Name":"Out of Touch","PlayerID":698962117,"Points":8948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34290","ServerKey":"pl181","X":327,"Y":431},{"Bonus":0,"Continent":"K35","ID":34291,"Name":"J#007","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34291","ServerKey":"pl181","X":572,"Y":332},{"Bonus":0,"Continent":"K64","ID":34292,"Name":"007 Nebraska","PlayerID":699238479,"Points":4285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34292","ServerKey":"pl181","X":487,"Y":684},{"Bonus":0,"Continent":"K56","ID":34293,"Name":"080. Morze Eniwetty","PlayerID":8337151,"Points":7600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34293","ServerKey":"pl181","X":666,"Y":579},{"Bonus":0,"Continent":"K43","ID":34294,"Name":"Out of Touch","PlayerID":698962117,"Points":2761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34294","ServerKey":"pl181","X":330,"Y":431},{"Bonus":0,"Continent":"K64","ID":34295,"Name":"A37","PlayerID":849037407,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34295","ServerKey":"pl181","X":471,"Y":644},{"Bonus":0,"Continent":"K56","ID":34296,"Name":"076","PlayerID":849095227,"Points":9407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34296","ServerKey":"pl181","X":663,"Y":573},{"Bonus":0,"Continent":"K43","ID":34298,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34298","ServerKey":"pl181","X":325,"Y":472},{"Bonus":0,"Continent":"K65","ID":34299,"Name":"0397","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34299","ServerKey":"pl181","X":564,"Y":669},{"Bonus":0,"Continent":"K43","ID":34300,"Name":"New Land 24","PlayerID":849064752,"Points":2299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34300","ServerKey":"pl181","X":337,"Y":412},{"Bonus":0,"Continent":"K46","ID":34301,"Name":"097. Italica","PlayerID":849091866,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34301","ServerKey":"pl181","X":658,"Y":407},{"Bonus":0,"Continent":"K64","ID":34302,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34302","ServerKey":"pl181","X":459,"Y":674},{"Bonus":8,"Continent":"K36","ID":34304,"Name":"016art","PlayerID":1990750,"Points":10116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34304","ServerKey":"pl181","X":605,"Y":348},{"Bonus":0,"Continent":"K43","ID":34305,"Name":"Kamyk","PlayerID":849098400,"Points":3972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34305","ServerKey":"pl181","X":320,"Y":454},{"Bonus":0,"Continent":"K53","ID":34306,"Name":"002 FF","PlayerID":7097727,"Points":6569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34306","ServerKey":"pl181","X":314,"Y":504},{"Bonus":0,"Continent":"K36","ID":34307,"Name":"019 Schwere Panzer-Abteilung 504","PlayerID":849091899,"Points":3884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34307","ServerKey":"pl181","X":605,"Y":356},{"Bonus":0,"Continent":"K65","ID":34308,"Name":"0236","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34308","ServerKey":"pl181","X":533,"Y":680},{"Bonus":0,"Continent":"K36","ID":34309,"Name":"1001","PlayerID":699150527,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34309","ServerKey":"pl181","X":622,"Y":361},{"Bonus":0,"Continent":"K43","ID":34310,"Name":"Wioska","PlayerID":848946608,"Points":3904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34310","ServerKey":"pl181","X":324,"Y":456},{"Bonus":0,"Continent":"K46","ID":34311,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34311","ServerKey":"pl181","X":685,"Y":492},{"Bonus":0,"Continent":"K65","ID":34312,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":4068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34312","ServerKey":"pl181","X":511,"Y":680},{"Bonus":0,"Continent":"K35","ID":34314,"Name":"Lord Lord Franek .#146","PlayerID":698420691,"Points":10110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34314","ServerKey":"pl181","X":509,"Y":322},{"Bonus":1,"Continent":"K56","ID":34315,"Name":"092 Tomek","PlayerID":2135129,"Points":6497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34315","ServerKey":"pl181","X":685,"Y":510},{"Bonus":0,"Continent":"K46","ID":34316,"Name":"015 arena","PlayerID":849098769,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34316","ServerKey":"pl181","X":678,"Y":448},{"Bonus":0,"Continent":"K53","ID":34317,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34317","ServerKey":"pl181","X":343,"Y":599},{"Bonus":0,"Continent":"K56","ID":34318,"Name":"_PUSTA","PlayerID":698768565,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34318","ServerKey":"pl181","X":656,"Y":596},{"Bonus":0,"Continent":"K46","ID":34319,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34319","ServerKey":"pl181","X":682,"Y":498},{"Bonus":0,"Continent":"K35","ID":34321,"Name":"07 Cytadela PóƂnocna","PlayerID":849108780,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34321","ServerKey":"pl181","X":564,"Y":330},{"Bonus":0,"Continent":"K53","ID":34322,"Name":"C0149","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34322","ServerKey":"pl181","X":320,"Y":526},{"Bonus":0,"Continent":"K56","ID":34323,"Name":"089 Tomek","PlayerID":2135129,"Points":7862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34323","ServerKey":"pl181","X":680,"Y":512},{"Bonus":0,"Continent":"K64","ID":34325,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34325","ServerKey":"pl181","X":432,"Y":670},{"Bonus":0,"Continent":"K53","ID":34326,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":4117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34326","ServerKey":"pl181","X":344,"Y":589},{"Bonus":0,"Continent":"K64","ID":34327,"Name":"No.15","PlayerID":698826986,"Points":1237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34327","ServerKey":"pl181","X":477,"Y":677},{"Bonus":0,"Continent":"K56","ID":34328,"Name":"OFF","PlayerID":849014413,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34328","ServerKey":"pl181","X":654,"Y":598},{"Bonus":0,"Continent":"K43","ID":34329,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34329","ServerKey":"pl181","X":318,"Y":462},{"Bonus":0,"Continent":"K63","ID":34330,"Name":"ORLE","PlayerID":699864013,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34330","ServerKey":"pl181","X":356,"Y":616},{"Bonus":0,"Continent":"K34","ID":34331,"Name":"081.Stradi","PlayerID":698365960,"Points":10308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34331","ServerKey":"pl181","X":447,"Y":326},{"Bonus":0,"Continent":"K64","ID":34332,"Name":"R 026","PlayerID":699195358,"Points":9055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34332","ServerKey":"pl181","X":486,"Y":680},{"Bonus":0,"Continent":"K66","ID":34333,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34333","ServerKey":"pl181","X":636,"Y":624},{"Bonus":0,"Continent":"K35","ID":34334,"Name":"Wioska J","PlayerID":7560474,"Points":3809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34334","ServerKey":"pl181","X":572,"Y":338},{"Bonus":0,"Continent":"K56","ID":34335,"Name":"510","PlayerID":7038651,"Points":8314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34335","ServerKey":"pl181","X":676,"Y":554},{"Bonus":0,"Continent":"K46","ID":34336,"Name":"Wieniec-Hubix","PlayerID":7142659,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34336","ServerKey":"pl181","X":660,"Y":423},{"Bonus":0,"Continent":"K56","ID":34337,"Name":"059 pfennig","PlayerID":2135129,"Points":8129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34337","ServerKey":"pl181","X":684,"Y":509},{"Bonus":0,"Continent":"K34","ID":34338,"Name":".achim.","PlayerID":6936607,"Points":7969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34338","ServerKey":"pl181","X":484,"Y":312},{"Bonus":0,"Continent":"K33","ID":34339,"Name":"*045*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34339","ServerKey":"pl181","X":344,"Y":398},{"Bonus":0,"Continent":"K56","ID":34340,"Name":"OFF","PlayerID":849014413,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34340","ServerKey":"pl181","X":654,"Y":594},{"Bonus":0,"Continent":"K56","ID":34341,"Name":"Nowa 39","PlayerID":698702991,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34341","ServerKey":"pl181","X":662,"Y":587},{"Bonus":0,"Continent":"K53","ID":34342,"Name":"C0177","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34342","ServerKey":"pl181","X":325,"Y":541},{"Bonus":0,"Continent":"K65","ID":34343,"Name":"Auu 07","PlayerID":848995242,"Points":7096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34343","ServerKey":"pl181","X":578,"Y":668},{"Bonus":0,"Continent":"K56","ID":34344,"Name":"Wioska Sir Zordon 004","PlayerID":478956,"Points":6064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34344","ServerKey":"pl181","X":664,"Y":574},{"Bonus":0,"Continent":"K43","ID":34345,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34345","ServerKey":"pl181","X":320,"Y":495},{"Bonus":0,"Continent":"K34","ID":34346,"Name":"195...Segadro","PlayerID":6920960,"Points":10650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34346","ServerKey":"pl181","X":456,"Y":325},{"Bonus":0,"Continent":"K36","ID":34347,"Name":"Mayans","PlayerID":7973893,"Points":9269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34347","ServerKey":"pl181","X":649,"Y":392},{"Bonus":0,"Continent":"K64","ID":34348,"Name":"R 015 ~Pęknina~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34348","ServerKey":"pl181","X":484,"Y":678},{"Bonus":0,"Continent":"K56","ID":34349,"Name":"Didek","PlayerID":849070946,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34349","ServerKey":"pl181","X":671,"Y":561},{"Bonus":0,"Continent":"K34","ID":34350,"Name":"214","PlayerID":7271812,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34350","ServerKey":"pl181","X":433,"Y":331},{"Bonus":0,"Continent":"K56","ID":34351,"Name":"Sekou 3","PlayerID":699737356,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34351","ServerKey":"pl181","X":679,"Y":509},{"Bonus":0,"Continent":"K53","ID":34352,"Name":"C0044","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34352","ServerKey":"pl181","X":323,"Y":521},{"Bonus":0,"Continent":"K43","ID":34353,"Name":"Out of Touch","PlayerID":698962117,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34353","ServerKey":"pl181","X":324,"Y":443},{"Bonus":0,"Continent":"K35","ID":34354,"Name":"Wioska X","PlayerID":698200480,"Points":7234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34354","ServerKey":"pl181","X":580,"Y":339},{"Bonus":0,"Continent":"K53","ID":34355,"Name":"C0169","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34355","ServerKey":"pl181","X":319,"Y":519},{"Bonus":0,"Continent":"K43","ID":34356,"Name":"*228*","PlayerID":699273451,"Points":8183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34356","ServerKey":"pl181","X":331,"Y":438},{"Bonus":0,"Continent":"K46","ID":34357,"Name":"0044","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34357","ServerKey":"pl181","X":678,"Y":463},{"Bonus":0,"Continent":"K65","ID":34358,"Name":"Wioska r 3","PlayerID":848915531,"Points":5286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34358","ServerKey":"pl181","X":558,"Y":668},{"Bonus":0,"Continent":"K36","ID":34359,"Name":"Taran 008","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34359","ServerKey":"pl181","X":607,"Y":360},{"Bonus":0,"Continent":"K35","ID":34360,"Name":"22. Dayz","PlayerID":699072129,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34360","ServerKey":"pl181","X":555,"Y":325},{"Bonus":0,"Continent":"K46","ID":34361,"Name":"016 Wioska barbarzyƄska","PlayerID":849098769,"Points":8553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34361","ServerKey":"pl181","X":679,"Y":450},{"Bonus":0,"Continent":"K66","ID":34362,"Name":"Ć»UBR PSYCHIATRYK 004","PlayerID":33900,"Points":8218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34362","ServerKey":"pl181","X":616,"Y":642},{"Bonus":0,"Continent":"K56","ID":34363,"Name":"B 015","PlayerID":8078914,"Points":9770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34363","ServerKey":"pl181","X":675,"Y":550},{"Bonus":0,"Continent":"K53","ID":34364,"Name":"C0031","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34364","ServerKey":"pl181","X":316,"Y":522},{"Bonus":0,"Continent":"K36","ID":34365,"Name":"016 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34365","ServerKey":"pl181","X":646,"Y":396},{"Bonus":0,"Continent":"K43","ID":34366,"Name":"New Land 17","PlayerID":849064752,"Points":3887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34366","ServerKey":"pl181","X":342,"Y":403},{"Bonus":7,"Continent":"K36","ID":34367,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34367","ServerKey":"pl181","X":634,"Y":375},{"Bonus":0,"Continent":"K53","ID":34369,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34369","ServerKey":"pl181","X":321,"Y":526},{"Bonus":0,"Continent":"K56","ID":34370,"Name":"B 059","PlayerID":8078914,"Points":7005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34370","ServerKey":"pl181","X":677,"Y":534},{"Bonus":0,"Continent":"K53","ID":34371,"Name":"109 And another one","PlayerID":699382126,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34371","ServerKey":"pl181","X":334,"Y":571},{"Bonus":9,"Continent":"K34","ID":34372,"Name":"[B]_[026] Dejv.oldplyr","PlayerID":699380607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34372","ServerKey":"pl181","X":416,"Y":336},{"Bonus":0,"Continent":"K53","ID":34373,"Name":"-05-","PlayerID":765188,"Points":8127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34373","ServerKey":"pl181","X":322,"Y":516},{"Bonus":0,"Continent":"K35","ID":34374,"Name":"Winterhome.069","PlayerID":848918380,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34374","ServerKey":"pl181","X":504,"Y":314},{"Bonus":0,"Continent":"K34","ID":34375,"Name":"#0198 Segadorr dar","PlayerID":1238300,"Points":7578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34375","ServerKey":"pl181","X":460,"Y":319},{"Bonus":0,"Continent":"K46","ID":34376,"Name":"019 Mucharadza","PlayerID":9238175,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34376","ServerKey":"pl181","X":663,"Y":426},{"Bonus":0,"Continent":"K46","ID":34378,"Name":"999 Kubacki","PlayerID":699491076,"Points":5830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34378","ServerKey":"pl181","X":669,"Y":421},{"Bonus":0,"Continent":"K34","ID":34379,"Name":"Prosto do nieba czwĂłrkami szli..","PlayerID":699590236,"Points":3029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34379","ServerKey":"pl181","X":449,"Y":328},{"Bonus":0,"Continent":"K46","ID":34380,"Name":"058 Wioska 004","PlayerID":9238175,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34380","ServerKey":"pl181","X":663,"Y":416},{"Bonus":0,"Continent":"K64","ID":34381,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":2803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34381","ServerKey":"pl181","X":416,"Y":660},{"Bonus":0,"Continent":"K34","ID":34382,"Name":"172...Segadorr","PlayerID":6920960,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34382","ServerKey":"pl181","X":438,"Y":329},{"Bonus":4,"Continent":"K46","ID":34383,"Name":"009","PlayerID":7085502,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34383","ServerKey":"pl181","X":678,"Y":495},{"Bonus":0,"Continent":"K56","ID":34384,"Name":"Nowa 47","PlayerID":698702991,"Points":7695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34384","ServerKey":"pl181","X":664,"Y":568},{"Bonus":0,"Continent":"K34","ID":34385,"Name":"Winterhome.042","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34385","ServerKey":"pl181","X":493,"Y":314},{"Bonus":0,"Continent":"K56","ID":34386,"Name":"Hiszpan2","PlayerID":7038651,"Points":10389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34386","ServerKey":"pl181","X":672,"Y":551},{"Bonus":0,"Continent":"K56","ID":34387,"Name":"WschĂłd X1","PlayerID":698562644,"Points":7987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34387","ServerKey":"pl181","X":684,"Y":529},{"Bonus":0,"Continent":"K53","ID":34389,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34389","ServerKey":"pl181","X":341,"Y":583},{"Bonus":0,"Continent":"K46","ID":34390,"Name":"022 toni","PlayerID":849098769,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34390","ServerKey":"pl181","X":683,"Y":457},{"Bonus":0,"Continent":"K66","ID":34391,"Name":"A064","PlayerID":9023703,"Points":8543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34391","ServerKey":"pl181","X":603,"Y":654},{"Bonus":0,"Continent":"K53","ID":34393,"Name":"007","PlayerID":7097727,"Points":6689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34393","ServerKey":"pl181","X":315,"Y":505},{"Bonus":0,"Continent":"K34","ID":34394,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":6298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34394","ServerKey":"pl181","X":467,"Y":325},{"Bonus":0,"Continent":"K34","ID":34395,"Name":"208","PlayerID":7271812,"Points":3739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34395","ServerKey":"pl181","X":421,"Y":331},{"Bonus":0,"Continent":"K34","ID":34396,"Name":"184...skrzyp","PlayerID":6920960,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34396","ServerKey":"pl181","X":444,"Y":325},{"Bonus":0,"Continent":"K35","ID":34397,"Name":".015.","PlayerID":698489071,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34397","ServerKey":"pl181","X":503,"Y":379},{"Bonus":0,"Continent":"K65","ID":34398,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34398","ServerKey":"pl181","X":506,"Y":683},{"Bonus":0,"Continent":"K65","ID":34399,"Name":"START 06","PlayerID":698723158,"Points":3398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34399","ServerKey":"pl181","X":574,"Y":670},{"Bonus":0,"Continent":"K56","ID":34400,"Name":"C 005","PlayerID":8078914,"Points":7517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34400","ServerKey":"pl181","X":682,"Y":514},{"Bonus":8,"Continent":"K56","ID":34401,"Name":"Metalchem","PlayerID":848932879,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34401","ServerKey":"pl181","X":682,"Y":539},{"Bonus":0,"Continent":"K65","ID":34403,"Name":"Wioska r 11","PlayerID":848915531,"Points":3949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34403","ServerKey":"pl181","X":556,"Y":672},{"Bonus":0,"Continent":"K34","ID":34404,"Name":"#0292 nt","PlayerID":1238300,"Points":7757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34404","ServerKey":"pl181","X":466,"Y":318},{"Bonus":0,"Continent":"K53","ID":34405,"Name":"Jaz","PlayerID":699265922,"Points":6351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34405","ServerKey":"pl181","X":322,"Y":551},{"Bonus":0,"Continent":"K33","ID":34406,"Name":"*001*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34406","ServerKey":"pl181","X":353,"Y":392},{"Bonus":0,"Continent":"K66","ID":34407,"Name":"sony911","PlayerID":1415009,"Points":10560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34407","ServerKey":"pl181","X":621,"Y":642},{"Bonus":0,"Continent":"K33","ID":34408,"Name":"*094*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34408","ServerKey":"pl181","X":360,"Y":380},{"Bonus":0,"Continent":"K53","ID":34409,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34409","ServerKey":"pl181","X":334,"Y":562},{"Bonus":9,"Continent":"K33","ID":34410,"Name":"*100*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34410","ServerKey":"pl181","X":360,"Y":381},{"Bonus":0,"Continent":"K35","ID":34411,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34411","ServerKey":"pl181","X":553,"Y":331},{"Bonus":0,"Continent":"K36","ID":34412,"Name":"WesoƂych ƚwiąt","PlayerID":848924219,"Points":3541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34412","ServerKey":"pl181","X":638,"Y":377},{"Bonus":0,"Continent":"K64","ID":34413,"Name":"Z|006| Foggia","PlayerID":699393742,"Points":8918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34413","ServerKey":"pl181","X":474,"Y":684},{"Bonus":0,"Continent":"K64","ID":34414,"Name":"Helms Deep","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34414","ServerKey":"pl181","X":459,"Y":679},{"Bonus":0,"Continent":"K64","ID":34416,"Name":"|065| Ostry","PlayerID":699393742,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34416","ServerKey":"pl181","X":488,"Y":682},{"Bonus":0,"Continent":"K66","ID":34417,"Name":"#023#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34417","ServerKey":"pl181","X":620,"Y":634},{"Bonus":0,"Continent":"K64","ID":34418,"Name":"0601","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34418","ServerKey":"pl181","X":488,"Y":680},{"Bonus":0,"Continent":"K36","ID":34419,"Name":"sundance","PlayerID":7340529,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34419","ServerKey":"pl181","X":640,"Y":383},{"Bonus":0,"Continent":"K53","ID":34420,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":5717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34420","ServerKey":"pl181","X":345,"Y":596},{"Bonus":0,"Continent":"K55","ID":34421,"Name":"niemanieba","PlayerID":699785935,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34421","ServerKey":"pl181","X":502,"Y":519},{"Bonus":0,"Continent":"K53","ID":34422,"Name":"Wioska BarbarzyƄska","PlayerID":3990066,"Points":5130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34422","ServerKey":"pl181","X":339,"Y":586},{"Bonus":0,"Continent":"K64","ID":34423,"Name":"Adidas","PlayerID":9191031,"Points":8029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34423","ServerKey":"pl181","X":418,"Y":658},{"Bonus":0,"Continent":"K34","ID":34424,"Name":"#0118 tomek791103","PlayerID":1238300,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34424","ServerKey":"pl181","X":473,"Y":320},{"Bonus":0,"Continent":"K34","ID":34425,"Name":"182...segador M","PlayerID":6920960,"Points":8336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34425","ServerKey":"pl181","X":443,"Y":327},{"Bonus":0,"Continent":"K64","ID":34426,"Name":"Proposal WN","PlayerID":849004274,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34426","ServerKey":"pl181","X":496,"Y":683},{"Bonus":0,"Continent":"K65","ID":34427,"Name":"Wyspa_33","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34427","ServerKey":"pl181","X":506,"Y":684},{"Bonus":0,"Continent":"K65","ID":34428,"Name":"Kuzyn BƂaĆŒej","PlayerID":849098628,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34428","ServerKey":"pl181","X":545,"Y":678},{"Bonus":0,"Continent":"K64","ID":34429,"Name":"0322","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34429","ServerKey":"pl181","X":446,"Y":605},{"Bonus":0,"Continent":"K66","ID":34430,"Name":"#017#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34430","ServerKey":"pl181","X":630,"Y":631},{"Bonus":0,"Continent":"K63","ID":34431,"Name":"C113","PlayerID":699383279,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34431","ServerKey":"pl181","X":368,"Y":631},{"Bonus":0,"Continent":"K33","ID":34432,"Name":"Szulernia","PlayerID":7249451,"Points":3238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34432","ServerKey":"pl181","X":368,"Y":369},{"Bonus":0,"Continent":"K53","ID":34433,"Name":"014","PlayerID":7097727,"Points":5019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34433","ServerKey":"pl181","X":320,"Y":501},{"Bonus":0,"Continent":"K65","ID":34434,"Name":"020","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34434","ServerKey":"pl181","X":535,"Y":677},{"Bonus":0,"Continent":"K64","ID":34435,"Name":"011 Montana","PlayerID":699238479,"Points":7573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34435","ServerKey":"pl181","X":495,"Y":684},{"Bonus":0,"Continent":"K43","ID":34436,"Name":"A0276","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34436","ServerKey":"pl181","X":322,"Y":484},{"Bonus":0,"Continent":"K46","ID":34438,"Name":"005 Emirates Stadium","PlayerID":849098769,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34438","ServerKey":"pl181","X":677,"Y":448},{"Bonus":0,"Continent":"K63","ID":34439,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34439","ServerKey":"pl181","X":389,"Y":645},{"Bonus":0,"Continent":"K33","ID":34440,"Name":"-004-","PlayerID":1693936,"Points":3812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34440","ServerKey":"pl181","X":347,"Y":398},{"Bonus":0,"Continent":"K65","ID":34441,"Name":"A034","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34441","ServerKey":"pl181","X":599,"Y":655},{"Bonus":0,"Continent":"K56","ID":34442,"Name":"#1 Imperium","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34442","ServerKey":"pl181","X":659,"Y":586},{"Bonus":0,"Continent":"K46","ID":34443,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":6508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34443","ServerKey":"pl181","X":683,"Y":470},{"Bonus":0,"Continent":"K34","ID":34444,"Name":"008 I myk pierwsza darma","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34444","ServerKey":"pl181","X":499,"Y":390},{"Bonus":0,"Continent":"K36","ID":34445,"Name":"Dolina RzeĆșnikĂłw","PlayerID":7973893,"Points":7043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34445","ServerKey":"pl181","X":646,"Y":390},{"Bonus":7,"Continent":"K53","ID":34446,"Name":"Taran","PlayerID":6180190,"Points":6948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34446","ServerKey":"pl181","X":338,"Y":583},{"Bonus":0,"Continent":"K43","ID":34447,"Name":"Barbabasia","PlayerID":849098299,"Points":2410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34447","ServerKey":"pl181","X":343,"Y":412},{"Bonus":0,"Continent":"K43","ID":34448,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34448","ServerKey":"pl181","X":319,"Y":487},{"Bonus":0,"Continent":"K66","ID":34449,"Name":"#006#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34449","ServerKey":"pl181","X":631,"Y":632},{"Bonus":0,"Continent":"K66","ID":34450,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34450","ServerKey":"pl181","X":642,"Y":619},{"Bonus":0,"Continent":"K35","ID":34451,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":8083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34451","ServerKey":"pl181","X":592,"Y":348},{"Bonus":0,"Continent":"K56","ID":34452,"Name":"B 061","PlayerID":8078914,"Points":9831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34452","ServerKey":"pl181","X":677,"Y":531},{"Bonus":0,"Continent":"K36","ID":34453,"Name":"017 * Lady Porto *","PlayerID":699406750,"Points":6022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34453","ServerKey":"pl181","X":646,"Y":395},{"Bonus":0,"Continent":"K46","ID":34454,"Name":"083 ƚwiąteczna Bombka","PlayerID":699491076,"Points":9266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34454","ServerKey":"pl181","X":653,"Y":400},{"Bonus":0,"Continent":"K66","ID":34455,"Name":"Ronin P","PlayerID":8815749,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34455","ServerKey":"pl181","X":641,"Y":629},{"Bonus":0,"Continent":"K46","ID":34456,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":4070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34456","ServerKey":"pl181","X":672,"Y":455},{"Bonus":0,"Continent":"K36","ID":34457,"Name":"=|48|=","PlayerID":9101574,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34457","ServerKey":"pl181","X":650,"Y":394},{"Bonus":0,"Continent":"K64","ID":34458,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34458","ServerKey":"pl181","X":424,"Y":663},{"Bonus":0,"Continent":"K65","ID":34459,"Name":"PoƂudnie.018","PlayerID":873575,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34459","ServerKey":"pl181","X":552,"Y":677},{"Bonus":0,"Continent":"K35","ID":34460,"Name":"-010-","PlayerID":698588812,"Points":2352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34460","ServerKey":"pl181","X":543,"Y":324},{"Bonus":0,"Continent":"K56","ID":34462,"Name":"#4 Centrum","PlayerID":699778867,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34462","ServerKey":"pl181","X":661,"Y":586},{"Bonus":0,"Continent":"K56","ID":34463,"Name":"016 Teirm","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34463","ServerKey":"pl181","X":658,"Y":590},{"Bonus":0,"Continent":"K36","ID":34464,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34464","ServerKey":"pl181","X":642,"Y":394},{"Bonus":0,"Continent":"K34","ID":34466,"Name":"K34 - [161] Before Land","PlayerID":699088769,"Points":8440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34466","ServerKey":"pl181","X":429,"Y":330},{"Bonus":0,"Continent":"K34","ID":34467,"Name":"210","PlayerID":7271812,"Points":5584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34467","ServerKey":"pl181","X":423,"Y":333},{"Bonus":0,"Continent":"K53","ID":34468,"Name":"003","PlayerID":7097727,"Points":8581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34468","ServerKey":"pl181","X":314,"Y":502},{"Bonus":0,"Continent":"K33","ID":34469,"Name":"*116*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34469","ServerKey":"pl181","X":361,"Y":381},{"Bonus":0,"Continent":"K46","ID":34470,"Name":"**33**","PlayerID":849098782,"Points":10913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34470","ServerKey":"pl181","X":666,"Y":434},{"Bonus":0,"Continent":"K66","ID":34471,"Name":"#094#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34471","ServerKey":"pl181","X":622,"Y":634},{"Bonus":0,"Continent":"K34","ID":34472,"Name":"[B]_[025] Dejv.oldplyr","PlayerID":699380607,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34472","ServerKey":"pl181","X":428,"Y":336},{"Bonus":0,"Continent":"K66","ID":34473,"Name":"#012#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34473","ServerKey":"pl181","X":623,"Y":630},{"Bonus":0,"Continent":"K64","ID":34474,"Name":"psycha sitting","PlayerID":699736927,"Points":6206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34474","ServerKey":"pl181","X":409,"Y":661},{"Bonus":0,"Continent":"K43","ID":34475,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34475","ServerKey":"pl181","X":318,"Y":468},{"Bonus":0,"Continent":"K66","ID":34476,"Name":"0008","PlayerID":6417987,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34476","ServerKey":"pl181","X":615,"Y":610},{"Bonus":0,"Continent":"K63","ID":34477,"Name":"009","PlayerID":7183372,"Points":10015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34477","ServerKey":"pl181","X":345,"Y":602},{"Bonus":2,"Continent":"K63","ID":34478,"Name":"002","PlayerID":699083129,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34478","ServerKey":"pl181","X":361,"Y":610},{"Bonus":0,"Continent":"K65","ID":34479,"Name":"MaƂyszyn","PlayerID":698723158,"Points":6824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34479","ServerKey":"pl181","X":573,"Y":667},{"Bonus":0,"Continent":"K64","ID":34480,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34480","ServerKey":"pl181","X":498,"Y":682},{"Bonus":0,"Continent":"K56","ID":34481,"Name":"_PUSTA","PlayerID":698768565,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34481","ServerKey":"pl181","X":656,"Y":598},{"Bonus":0,"Continent":"K46","ID":34482,"Name":"Romeo","PlayerID":699737356,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34482","ServerKey":"pl181","X":684,"Y":490},{"Bonus":0,"Continent":"K56","ID":34483,"Name":"Nowa 45","PlayerID":698702991,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34483","ServerKey":"pl181","X":665,"Y":570},{"Bonus":0,"Continent":"K46","ID":34484,"Name":"038 Mucharadza","PlayerID":9238175,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34484","ServerKey":"pl181","X":664,"Y":419},{"Bonus":0,"Continent":"K65","ID":34485,"Name":"0302","PlayerID":698659980,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34485","ServerKey":"pl181","X":571,"Y":665},{"Bonus":0,"Continent":"K65","ID":34486,"Name":"0579","PlayerID":698659980,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34486","ServerKey":"pl181","X":550,"Y":671},{"Bonus":0,"Continent":"K53","ID":34487,"Name":"(015)Herdaz","PlayerID":849098695,"Points":7327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34487","ServerKey":"pl181","X":329,"Y":567},{"Bonus":0,"Continent":"K56","ID":34488,"Name":"710","PlayerID":7038651,"Points":8245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34488","ServerKey":"pl181","X":675,"Y":559},{"Bonus":0,"Continent":"K46","ID":34490,"Name":"**44**","PlayerID":849098782,"Points":7745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34490","ServerKey":"pl181","X":676,"Y":442},{"Bonus":0,"Continent":"K35","ID":34491,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34491","ServerKey":"pl181","X":516,"Y":372},{"Bonus":0,"Continent":"K56","ID":34492,"Name":"Grvvyq 101k$","PlayerID":699676005,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34492","ServerKey":"pl181","X":679,"Y":539},{"Bonus":0,"Continent":"K66","ID":34493,"Name":"#174#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34493","ServerKey":"pl181","X":643,"Y":619},{"Bonus":0,"Continent":"K65","ID":34494,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34494","ServerKey":"pl181","X":510,"Y":683},{"Bonus":0,"Continent":"K56","ID":34495,"Name":"B 042","PlayerID":8078914,"Points":6952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34495","ServerKey":"pl181","X":684,"Y":530},{"Bonus":0,"Continent":"K34","ID":34497,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":6855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34497","ServerKey":"pl181","X":462,"Y":325},{"Bonus":0,"Continent":"K65","ID":34498,"Name":"0416","PlayerID":698659980,"Points":8128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34498","ServerKey":"pl181","X":546,"Y":634},{"Bonus":0,"Continent":"K35","ID":34499,"Name":"Taran","PlayerID":1990750,"Points":7674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34499","ServerKey":"pl181","X":598,"Y":342},{"Bonus":0,"Continent":"K36","ID":34500,"Name":"--Tinka","PlayerID":8096537,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34500","ServerKey":"pl181","X":620,"Y":385},{"Bonus":0,"Continent":"K66","ID":34501,"Name":"sony911","PlayerID":1415009,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34501","ServerKey":"pl181","X":624,"Y":639},{"Bonus":0,"Continent":"K66","ID":34502,"Name":"A031","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34502","ServerKey":"pl181","X":602,"Y":655},{"Bonus":0,"Continent":"K35","ID":34503,"Name":"Wioska 002","PlayerID":699703295,"Points":4227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34503","ServerKey":"pl181","X":572,"Y":336},{"Bonus":0,"Continent":"K43","ID":34504,"Name":"004","PlayerID":7097727,"Points":7491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34504","ServerKey":"pl181","X":314,"Y":499},{"Bonus":0,"Continent":"K53","ID":34505,"Name":"FILIPOWO Aga2201199 ZƁO","PlayerID":6180190,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34505","ServerKey":"pl181","X":345,"Y":581},{"Bonus":0,"Continent":"K53","ID":34506,"Name":"Sullivanum [3]","PlayerID":1606425,"Points":11875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34506","ServerKey":"pl181","X":336,"Y":588},{"Bonus":0,"Continent":"K36","ID":34507,"Name":"022 GypsyLand","PlayerID":699098531,"Points":6525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34507","ServerKey":"pl181","X":615,"Y":355},{"Bonus":0,"Continent":"K33","ID":34508,"Name":"*046*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34508","ServerKey":"pl181","X":348,"Y":396},{"Bonus":0,"Continent":"K65","ID":34509,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34509","ServerKey":"pl181","X":524,"Y":682},{"Bonus":0,"Continent":"K64","ID":34510,"Name":"0604","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34510","ServerKey":"pl181","X":488,"Y":683},{"Bonus":0,"Continent":"K35","ID":34511,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34511","ServerKey":"pl181","X":521,"Y":318},{"Bonus":5,"Continent":"K65","ID":34512,"Name":"- 245 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34512","ServerKey":"pl181","X":537,"Y":682},{"Bonus":0,"Continent":"K44","ID":34513,"Name":"A040","PlayerID":8740199,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34513","ServerKey":"pl181","X":444,"Y":402},{"Bonus":0,"Continent":"K56","ID":34514,"Name":"Liniewko","PlayerID":849039310,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34514","ServerKey":"pl181","X":656,"Y":588},{"Bonus":0,"Continent":"K64","ID":34515,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34515","ServerKey":"pl181","X":469,"Y":681},{"Bonus":0,"Continent":"K66","ID":34516,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34516","ServerKey":"pl181","X":647,"Y":614},{"Bonus":0,"Continent":"K46","ID":34517,"Name":"Wioska (004)","PlayerID":698232227,"Points":3143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34517","ServerKey":"pl181","X":673,"Y":456},{"Bonus":0,"Continent":"K46","ID":34518,"Name":"**51**","PlayerID":849098782,"Points":7979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34518","ServerKey":"pl181","X":670,"Y":424},{"Bonus":0,"Continent":"K46","ID":34519,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34519","ServerKey":"pl181","X":678,"Y":466},{"Bonus":0,"Continent":"K65","ID":34520,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34520","ServerKey":"pl181","X":517,"Y":686},{"Bonus":0,"Continent":"K53","ID":34521,"Name":"Taran","PlayerID":6180190,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34521","ServerKey":"pl181","X":337,"Y":583},{"Bonus":0,"Continent":"K36","ID":34522,"Name":".:019:.","PlayerID":849078297,"Points":6292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34522","ServerKey":"pl181","X":635,"Y":378},{"Bonus":0,"Continent":"K34","ID":34523,"Name":"#0117 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34523","ServerKey":"pl181","X":479,"Y":322},{"Bonus":0,"Continent":"K56","ID":34524,"Name":"048","PlayerID":699413040,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34524","ServerKey":"pl181","X":672,"Y":513},{"Bonus":0,"Continent":"K56","ID":34525,"Name":"320","PlayerID":7038651,"Points":8827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34525","ServerKey":"pl181","X":674,"Y":557},{"Bonus":0,"Continent":"K46","ID":34526,"Name":"082. Vicentia","PlayerID":849091866,"Points":7506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34526","ServerKey":"pl181","X":654,"Y":409},{"Bonus":0,"Continent":"K34","ID":34527,"Name":"4.Lipovka","PlayerID":849098648,"Points":7176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34527","ServerKey":"pl181","X":412,"Y":336},{"Bonus":0,"Continent":"K33","ID":34528,"Name":"Szlachcic","PlayerID":698160606,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34528","ServerKey":"pl181","X":383,"Y":359},{"Bonus":0,"Continent":"K35","ID":34529,"Name":"B.15 duchy serca puszczy","PlayerID":849026145,"Points":3322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34529","ServerKey":"pl181","X":551,"Y":321},{"Bonus":0,"Continent":"K63","ID":34531,"Name":"A 050","PlayerID":699342219,"Points":3131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34531","ServerKey":"pl181","X":368,"Y":623},{"Bonus":0,"Continent":"K34","ID":34532,"Name":"218","PlayerID":7271812,"Points":7482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34532","ServerKey":"pl181","X":427,"Y":337},{"Bonus":7,"Continent":"K53","ID":34533,"Name":"C0033","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34533","ServerKey":"pl181","X":321,"Y":517},{"Bonus":0,"Continent":"K64","ID":34534,"Name":"psycha sitting","PlayerID":699736927,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34534","ServerKey":"pl181","X":422,"Y":668},{"Bonus":0,"Continent":"K35","ID":34535,"Name":"AAA","PlayerID":1006847,"Points":6877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34535","ServerKey":"pl181","X":529,"Y":322},{"Bonus":0,"Continent":"K56","ID":34536,"Name":"016","PlayerID":6160655,"Points":9016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34536","ServerKey":"pl181","X":670,"Y":570},{"Bonus":0,"Continent":"K53","ID":34537,"Name":"C0266","PlayerID":8841266,"Points":5251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34537","ServerKey":"pl181","X":314,"Y":508},{"Bonus":0,"Continent":"K46","ID":34538,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34538","ServerKey":"pl181","X":680,"Y":485},{"Bonus":0,"Continent":"K56","ID":34539,"Name":"OFF","PlayerID":1563417,"Points":8150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34539","ServerKey":"pl181","X":683,"Y":527},{"Bonus":3,"Continent":"K65","ID":34540,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34540","ServerKey":"pl181","X":500,"Y":681},{"Bonus":0,"Continent":"K64","ID":34541,"Name":"Szale","PlayerID":698807570,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34541","ServerKey":"pl181","X":460,"Y":682},{"Bonus":0,"Continent":"K56","ID":34542,"Name":"C 006","PlayerID":8078914,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34542","ServerKey":"pl181","X":681,"Y":519},{"Bonus":0,"Continent":"K56","ID":34543,"Name":"058 pfennig","PlayerID":2135129,"Points":7684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34543","ServerKey":"pl181","X":680,"Y":509},{"Bonus":0,"Continent":"K34","ID":34544,"Name":"Kariko Village","PlayerID":849048216,"Points":1968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34544","ServerKey":"pl181","X":478,"Y":318},{"Bonus":0,"Continent":"K34","ID":34545,"Name":"xddd","PlayerID":699393759,"Points":5258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34545","ServerKey":"pl181","X":468,"Y":320},{"Bonus":0,"Continent":"K53","ID":34547,"Name":"(016)Tu Bayla","PlayerID":849098695,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34547","ServerKey":"pl181","X":331,"Y":569},{"Bonus":0,"Continent":"K64","ID":34548,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34548","ServerKey":"pl181","X":433,"Y":671},{"Bonus":0,"Continent":"K63","ID":34549,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34549","ServerKey":"pl181","X":390,"Y":641},{"Bonus":0,"Continent":"K63","ID":34550,"Name":".///...//././././././././","PlayerID":849097937,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34550","ServerKey":"pl181","X":370,"Y":630},{"Bonus":0,"Continent":"K65","ID":34551,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34551","ServerKey":"pl181","X":514,"Y":681},{"Bonus":0,"Continent":"K35","ID":34553,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34553","ServerKey":"pl181","X":596,"Y":347},{"Bonus":0,"Continent":"K63","ID":34554,"Name":"A 019","PlayerID":699342219,"Points":7118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34554","ServerKey":"pl181","X":365,"Y":621},{"Bonus":0,"Continent":"K56","ID":34557,"Name":"Wioska 003","PlayerID":2999957,"Points":7953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34557","ServerKey":"pl181","X":680,"Y":527},{"Bonus":0,"Continent":"K64","ID":34558,"Name":"007","PlayerID":848953066,"Points":4489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34558","ServerKey":"pl181","X":491,"Y":684},{"Bonus":0,"Continent":"K53","ID":34559,"Name":"Ajjj","PlayerID":7318415,"Points":6133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34559","ServerKey":"pl181","X":343,"Y":588},{"Bonus":0,"Continent":"K65","ID":34560,"Name":"048","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34560","ServerKey":"pl181","X":540,"Y":680},{"Bonus":0,"Continent":"K33","ID":34561,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34561","ServerKey":"pl181","X":373,"Y":363},{"Bonus":0,"Continent":"K46","ID":34562,"Name":"**32**","PlayerID":849098782,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34562","ServerKey":"pl181","X":675,"Y":436},{"Bonus":0,"Continent":"K66","ID":34563,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":5146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34563","ServerKey":"pl181","X":646,"Y":609},{"Bonus":0,"Continent":"K43","ID":34564,"Name":"V008","PlayerID":849097737,"Points":8445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34564","ServerKey":"pl181","X":337,"Y":419},{"Bonus":7,"Continent":"K64","ID":34565,"Name":"New World","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34565","ServerKey":"pl181","X":437,"Y":676},{"Bonus":0,"Continent":"K43","ID":34566,"Name":"ups pomyƂka","PlayerID":7012651,"Points":7247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34566","ServerKey":"pl181","X":333,"Y":433},{"Bonus":0,"Continent":"K63","ID":34567,"Name":"Thuzal 5","PlayerID":699699601,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34567","ServerKey":"pl181","X":358,"Y":616},{"Bonus":0,"Continent":"K34","ID":34568,"Name":"ZULA","PlayerID":8123790,"Points":4492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34568","ServerKey":"pl181","X":400,"Y":343},{"Bonus":5,"Continent":"K36","ID":34569,"Name":"Czarny 8","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34569","ServerKey":"pl181","X":603,"Y":351},{"Bonus":0,"Continent":"K43","ID":34570,"Name":"New Land 29","PlayerID":849064752,"Points":2667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34570","ServerKey":"pl181","X":345,"Y":403},{"Bonus":0,"Continent":"K53","ID":34571,"Name":"Staw","PlayerID":699265922,"Points":6341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34571","ServerKey":"pl181","X":320,"Y":543},{"Bonus":0,"Continent":"K66","ID":34572,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34572","ServerKey":"pl181","X":640,"Y":617},{"Bonus":0,"Continent":"K34","ID":34573,"Name":"066","PlayerID":2502956,"Points":8652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34573","ServerKey":"pl181","X":452,"Y":329},{"Bonus":2,"Continent":"K36","ID":34574,"Name":"Szlachcic","PlayerID":848924219,"Points":6821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34574","ServerKey":"pl181","X":631,"Y":372},{"Bonus":0,"Continent":"K53","ID":34575,"Name":"Wioska Goƛć098607","PlayerID":849098607,"Points":2021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34575","ServerKey":"pl181","X":326,"Y":543},{"Bonus":0,"Continent":"K65","ID":34576,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":8048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34576","ServerKey":"pl181","X":568,"Y":669},{"Bonus":0,"Continent":"K46","ID":34577,"Name":"017 arena","PlayerID":849098769,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34577","ServerKey":"pl181","X":678,"Y":447},{"Bonus":0,"Continent":"K66","ID":34578,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34578","ServerKey":"pl181","X":638,"Y":618},{"Bonus":0,"Continent":"K35","ID":34579,"Name":"AAA","PlayerID":1006847,"Points":6722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34579","ServerKey":"pl181","X":540,"Y":320},{"Bonus":0,"Continent":"K36","ID":34580,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":6409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34580","ServerKey":"pl181","X":624,"Y":368},{"Bonus":0,"Continent":"K66","ID":34581,"Name":"Ć»UBR PSYCHIATRYK 002","PlayerID":33900,"Points":7814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34581","ServerKey":"pl181","X":611,"Y":642},{"Bonus":0,"Continent":"K34","ID":34582,"Name":"[B][01] House of Blues","PlayerID":699380621,"Points":10809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34582","ServerKey":"pl181","X":426,"Y":339},{"Bonus":0,"Continent":"K64","ID":34583,"Name":"Psycha Siada","PlayerID":698807570,"Points":7163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34583","ServerKey":"pl181","X":440,"Y":671},{"Bonus":0,"Continent":"K33","ID":34584,"Name":"*257*","PlayerID":699273451,"Points":2208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34584","ServerKey":"pl181","X":355,"Y":386},{"Bonus":0,"Continent":"K63","ID":34585,"Name":"A 022","PlayerID":699342219,"Points":5757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34585","ServerKey":"pl181","X":365,"Y":629},{"Bonus":0,"Continent":"K65","ID":34586,"Name":"- 269 - SS","PlayerID":849018239,"Points":7399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34586","ServerKey":"pl181","X":539,"Y":678},{"Bonus":0,"Continent":"K53","ID":34587,"Name":"Tolpyga","PlayerID":699265922,"Points":5996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34587","ServerKey":"pl181","X":324,"Y":550},{"Bonus":7,"Continent":"K53","ID":34588,"Name":"Osada koczownikĂłw","PlayerID":7183372,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34588","ServerKey":"pl181","X":340,"Y":596},{"Bonus":0,"Continent":"K63","ID":34589,"Name":"Komornicy 011","PlayerID":699336777,"Points":5458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34589","ServerKey":"pl181","X":350,"Y":609},{"Bonus":0,"Continent":"K34","ID":34590,"Name":"fff","PlayerID":698239813,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34590","ServerKey":"pl181","X":488,"Y":323},{"Bonus":0,"Continent":"K65","ID":34591,"Name":"Wioska barbarzyƄska,","PlayerID":848995242,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34591","ServerKey":"pl181","X":590,"Y":653},{"Bonus":0,"Continent":"K35","ID":34592,"Name":"Wioska barbarzyƄska","PlayerID":699244334,"Points":2247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34592","ServerKey":"pl181","X":544,"Y":322},{"Bonus":0,"Continent":"K56","ID":34593,"Name":"Nowa 44","PlayerID":698702991,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34593","ServerKey":"pl181","X":662,"Y":578},{"Bonus":0,"Continent":"K53","ID":34594,"Name":"Na Skraju Raju","PlayerID":8004076,"Points":7995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34594","ServerKey":"pl181","X":320,"Y":547},{"Bonus":0,"Continent":"K43","ID":34595,"Name":"*160","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34595","ServerKey":"pl181","X":342,"Y":409},{"Bonus":3,"Continent":"K65","ID":34596,"Name":"Stanisko","PlayerID":1415009,"Points":3250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34596","ServerKey":"pl181","X":581,"Y":659},{"Bonus":0,"Continent":"K63","ID":34597,"Name":"Wioska Tomko119","PlayerID":699269923,"Points":9625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34597","ServerKey":"pl181","X":387,"Y":646},{"Bonus":0,"Continent":"K34","ID":34598,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34598","ServerKey":"pl181","X":441,"Y":332},{"Bonus":2,"Continent":"K56","ID":34599,"Name":"39k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34599","ServerKey":"pl181","X":674,"Y":563},{"Bonus":0,"Continent":"K66","ID":34600,"Name":"Ć»UBRAWKA 011","PlayerID":33900,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34600","ServerKey":"pl181","X":603,"Y":630},{"Bonus":0,"Continent":"K34","ID":34601,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34601","ServerKey":"pl181","X":420,"Y":336},{"Bonus":0,"Continent":"K65","ID":34602,"Name":"Ronin P","PlayerID":698768565,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34602","ServerKey":"pl181","X":598,"Y":618},{"Bonus":0,"Continent":"K53","ID":34603,"Name":"C0170","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34603","ServerKey":"pl181","X":327,"Y":541},{"Bonus":0,"Continent":"K43","ID":34604,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34604","ServerKey":"pl181","X":336,"Y":418},{"Bonus":0,"Continent":"K36","ID":34605,"Name":"=|18|=","PlayerID":9101574,"Points":6271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34605","ServerKey":"pl181","X":642,"Y":381},{"Bonus":0,"Continent":"K35","ID":34606,"Name":"026 Stormveil Castle","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34606","ServerKey":"pl181","X":514,"Y":315},{"Bonus":0,"Continent":"K53","ID":34607,"Name":"C0102","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34607","ServerKey":"pl181","X":319,"Y":521},{"Bonus":0,"Continent":"K63","ID":34608,"Name":"Wioska pawel1980r","PlayerID":699269923,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34608","ServerKey":"pl181","X":387,"Y":648},{"Bonus":0,"Continent":"K64","ID":34609,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34609","ServerKey":"pl181","X":442,"Y":675},{"Bonus":0,"Continent":"K64","ID":34610,"Name":"Z|005| Neapol","PlayerID":699393742,"Points":9421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34610","ServerKey":"pl181","X":470,"Y":678},{"Bonus":0,"Continent":"K43","ID":34611,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34611","ServerKey":"pl181","X":323,"Y":460},{"Bonus":0,"Continent":"K64","ID":34612,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34612","ServerKey":"pl181","X":436,"Y":673},{"Bonus":0,"Continent":"K35","ID":34613,"Name":"[003] Revenge 33333","PlayerID":699710633,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34613","ServerKey":"pl181","X":569,"Y":334},{"Bonus":0,"Continent":"K46","ID":34614,"Name":"036 Wioska barbarzyƄska","PlayerID":849098769,"Points":7633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34614","ServerKey":"pl181","X":672,"Y":452},{"Bonus":0,"Continent":"K43","ID":34615,"Name":"Rakieta","PlayerID":849098727,"Points":2958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34615","ServerKey":"pl181","X":328,"Y":432},{"Bonus":0,"Continent":"K43","ID":34616,"Name":"Out of Touch","PlayerID":698962117,"Points":2571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34616","ServerKey":"pl181","X":327,"Y":446},{"Bonus":0,"Continent":"K35","ID":34617,"Name":"Wioska barbarzyƄska","PlayerID":7563943,"Points":2572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34617","ServerKey":"pl181","X":575,"Y":325},{"Bonus":0,"Continent":"K36","ID":34618,"Name":"=|32|=","PlayerID":9101574,"Points":7129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34618","ServerKey":"pl181","X":646,"Y":398},{"Bonus":0,"Continent":"K53","ID":34619,"Name":"RADOM","PlayerID":699794765,"Points":6191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34619","ServerKey":"pl181","X":323,"Y":537},{"Bonus":0,"Continent":"K65","ID":34620,"Name":"0309","PlayerID":698659980,"Points":8336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34620","ServerKey":"pl181","X":570,"Y":668},{"Bonus":0,"Continent":"K46","ID":34621,"Name":"16. Denver","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34621","ServerKey":"pl181","X":685,"Y":481},{"Bonus":0,"Continent":"K43","ID":34622,"Name":"Wioska 7","PlayerID":849075836,"Points":8514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34622","ServerKey":"pl181","X":315,"Y":486},{"Bonus":0,"Continent":"K33","ID":34623,"Name":"cz Agnes","PlayerID":3909522,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34623","ServerKey":"pl181","X":365,"Y":379},{"Bonus":0,"Continent":"K65","ID":34624,"Name":"- 294 - SS","PlayerID":849018239,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34624","ServerKey":"pl181","X":544,"Y":676},{"Bonus":0,"Continent":"K35","ID":34625,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34625","ServerKey":"pl181","X":559,"Y":329},{"Bonus":0,"Continent":"K66","ID":34626,"Name":"03 BrokuƂ","PlayerID":8224678,"Points":9210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34626","ServerKey":"pl181","X":642,"Y":615},{"Bonus":0,"Continent":"K53","ID":34627,"Name":"C0280","PlayerID":8841266,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34627","ServerKey":"pl181","X":321,"Y":504},{"Bonus":0,"Continent":"K65","ID":34628,"Name":"AG18","PlayerID":699876345,"Points":8224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34628","ServerKey":"pl181","X":585,"Y":666},{"Bonus":0,"Continent":"K46","ID":34630,"Name":"13. Roch","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34630","ServerKey":"pl181","X":682,"Y":482},{"Bonus":0,"Continent":"K65","ID":34631,"Name":"2.Burgos","PlayerID":698215322,"Points":5136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34631","ServerKey":"pl181","X":562,"Y":670},{"Bonus":0,"Continent":"K43","ID":34632,"Name":"Wioska KrĂłlowo ZƂota 2","PlayerID":7012651,"Points":5917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34632","ServerKey":"pl181","X":334,"Y":434},{"Bonus":0,"Continent":"K56","ID":34633,"Name":"400","PlayerID":7038651,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34633","ServerKey":"pl181","X":675,"Y":555},{"Bonus":0,"Continent":"K53","ID":34634,"Name":"Wioska kimic19","PlayerID":7183372,"Points":3031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34634","ServerKey":"pl181","X":344,"Y":590},{"Bonus":3,"Continent":"K34","ID":34635,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34635","ServerKey":"pl181","X":435,"Y":332},{"Bonus":0,"Continent":"K64","ID":34636,"Name":"R 020 ~Zimowa Twierdza~","PlayerID":699195358,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34636","ServerKey":"pl181","X":484,"Y":684},{"Bonus":0,"Continent":"K64","ID":34637,"Name":"B02","PlayerID":698652014,"Points":8662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34637","ServerKey":"pl181","X":476,"Y":681},{"Bonus":0,"Continent":"K53","ID":34638,"Name":"-03-","PlayerID":765188,"Points":6055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34638","ServerKey":"pl181","X":322,"Y":504},{"Bonus":0,"Continent":"K56","ID":34639,"Name":"Kingdom 2","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34639","ServerKey":"pl181","X":680,"Y":504},{"Bonus":1,"Continent":"K56","ID":34640,"Name":"C01","PlayerID":848995478,"Points":10776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34640","ServerKey":"pl181","X":678,"Y":542},{"Bonus":0,"Continent":"K33","ID":34642,"Name":"*017*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34642","ServerKey":"pl181","X":358,"Y":389},{"Bonus":0,"Continent":"K65","ID":34643,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34643","ServerKey":"pl181","X":506,"Y":679},{"Bonus":0,"Continent":"K34","ID":34644,"Name":"066.Stradi","PlayerID":698365960,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34644","ServerKey":"pl181","X":454,"Y":323},{"Bonus":0,"Continent":"K64","ID":34645,"Name":"rotes idz spac misiu","PlayerID":698807570,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34645","ServerKey":"pl181","X":453,"Y":674},{"Bonus":0,"Continent":"K64","ID":34646,"Name":"0605","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34646","ServerKey":"pl181","X":490,"Y":686},{"Bonus":0,"Continent":"K46","ID":34647,"Name":"Wioska NATSONI I","PlayerID":699598425,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34647","ServerKey":"pl181","X":679,"Y":498},{"Bonus":0,"Continent":"K34","ID":34648,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":9194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34648","ServerKey":"pl181","X":433,"Y":326},{"Bonus":0,"Continent":"K36","ID":34649,"Name":"Szlachcic;taran","PlayerID":1990750,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34649","ServerKey":"pl181","X":618,"Y":363},{"Bonus":2,"Continent":"K34","ID":34650,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34650","ServerKey":"pl181","X":432,"Y":333},{"Bonus":0,"Continent":"K43","ID":34651,"Name":"Wioska 6","PlayerID":849075836,"Points":7921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34651","ServerKey":"pl181","X":315,"Y":487},{"Bonus":0,"Continent":"K43","ID":34652,"Name":"Wioska barbarzyƄska","PlayerID":849096547,"Points":2467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34652","ServerKey":"pl181","X":344,"Y":405},{"Bonus":0,"Continent":"K64","ID":34653,"Name":"psycha sitting","PlayerID":699736927,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34653","ServerKey":"pl181","X":407,"Y":662},{"Bonus":0,"Continent":"K35","ID":34654,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34654","ServerKey":"pl181","X":585,"Y":338},{"Bonus":0,"Continent":"K63","ID":34655,"Name":"015","PlayerID":699083129,"Points":4837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34655","ServerKey":"pl181","X":357,"Y":608},{"Bonus":8,"Continent":"K46","ID":34656,"Name":"[006] Pierdziszewo","PlayerID":849095068,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34656","ServerKey":"pl181","X":675,"Y":437},{"Bonus":0,"Continent":"K65","ID":34657,"Name":"PoƂudnie.019","PlayerID":873575,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34657","ServerKey":"pl181","X":554,"Y":675},{"Bonus":0,"Continent":"K35","ID":34658,"Name":"- Dragon1","PlayerID":699825236,"Points":6238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34658","ServerKey":"pl181","X":543,"Y":323},{"Bonus":0,"Continent":"K46","ID":34659,"Name":"I080","PlayerID":699722599,"Points":9558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34659","ServerKey":"pl181","X":676,"Y":441},{"Bonus":0,"Continent":"K65","ID":34660,"Name":"Muchomor *013*","PlayerID":606407,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34660","ServerKey":"pl181","X":518,"Y":679},{"Bonus":0,"Continent":"K34","ID":34661,"Name":"0155","PlayerID":699431255,"Points":2762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34661","ServerKey":"pl181","X":411,"Y":342},{"Bonus":0,"Continent":"K35","ID":34662,"Name":"Lord Lord Franek .#142","PlayerID":698420691,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34662","ServerKey":"pl181","X":513,"Y":320},{"Bonus":0,"Continent":"K36","ID":34663,"Name":"GRIGOR-2007","PlayerID":6625437,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34663","ServerKey":"pl181","X":623,"Y":363},{"Bonus":0,"Continent":"K65","ID":34664,"Name":"Sony 911","PlayerID":1415009,"Points":10849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34664","ServerKey":"pl181","X":590,"Y":654},{"Bonus":0,"Continent":"K36","ID":34665,"Name":"Minas Ithil","PlayerID":699857387,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34665","ServerKey":"pl181","X":624,"Y":363},{"Bonus":0,"Continent":"K46","ID":34666,"Name":"092 Nowy Rok","PlayerID":699491076,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34666","ServerKey":"pl181","X":656,"Y":402},{"Bonus":3,"Continent":"K53","ID":34667,"Name":"Kielb","PlayerID":699265922,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34667","ServerKey":"pl181","X":325,"Y":547},{"Bonus":0,"Continent":"K36","ID":34668,"Name":"K36 - [002] Before Land","PlayerID":699088769,"Points":4785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34668","ServerKey":"pl181","X":626,"Y":371},{"Bonus":0,"Continent":"K56","ID":34669,"Name":"057","PlayerID":699351301,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34669","ServerKey":"pl181","X":645,"Y":522},{"Bonus":0,"Continent":"K53","ID":34670,"Name":"C0051","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34670","ServerKey":"pl181","X":323,"Y":523},{"Bonus":0,"Continent":"K66","ID":34671,"Name":"020.","PlayerID":6520732,"Points":8017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34671","ServerKey":"pl181","X":649,"Y":610},{"Bonus":0,"Continent":"K66","ID":34672,"Name":"#044#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34672","ServerKey":"pl181","X":635,"Y":629},{"Bonus":0,"Continent":"K56","ID":34673,"Name":"F01","PlayerID":848995478,"Points":7011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34673","ServerKey":"pl181","X":685,"Y":525},{"Bonus":0,"Continent":"K46","ID":34674,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34674","ServerKey":"pl181","X":686,"Y":492},{"Bonus":0,"Continent":"K64","ID":34675,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34675","ServerKey":"pl181","X":431,"Y":635},{"Bonus":0,"Continent":"K46","ID":34676,"Name":"035 Wioska barbarzyƄska","PlayerID":849098769,"Points":7625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34676","ServerKey":"pl181","X":673,"Y":449},{"Bonus":0,"Continent":"K46","ID":34677,"Name":"003 Wanda Metropolitano","PlayerID":849098769,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34677","ServerKey":"pl181","X":676,"Y":453},{"Bonus":0,"Continent":"K65","ID":34678,"Name":"*046","PlayerID":699567608,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34678","ServerKey":"pl181","X":598,"Y":653},{"Bonus":0,"Continent":"K35","ID":34679,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34679","ServerKey":"pl181","X":587,"Y":337},{"Bonus":0,"Continent":"K35","ID":34680,"Name":"Wioska barbarzyƄska","PlayerID":570100,"Points":3258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34680","ServerKey":"pl181","X":560,"Y":325},{"Bonus":0,"Continent":"K63","ID":34681,"Name":"Komornicy 004","PlayerID":699336777,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34681","ServerKey":"pl181","X":349,"Y":607},{"Bonus":0,"Continent":"K34","ID":34682,"Name":"159...lord rdw","PlayerID":6920960,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34682","ServerKey":"pl181","X":440,"Y":330},{"Bonus":0,"Continent":"K54","ID":34683,"Name":"#0009 Ɓobuz kocha najbardziej","PlayerID":9272054,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34683","ServerKey":"pl181","X":499,"Y":556},{"Bonus":0,"Continent":"K36","ID":34684,"Name":"222","PlayerID":849092309,"Points":6001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34684","ServerKey":"pl181","X":636,"Y":378},{"Bonus":0,"Continent":"K34","ID":34685,"Name":"Ob Konfederacja +","PlayerID":848915730,"Points":7144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34685","ServerKey":"pl181","X":434,"Y":330},{"Bonus":0,"Continent":"K64","ID":34686,"Name":"#017. Polska Gola","PlayerID":848896948,"Points":8395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34686","ServerKey":"pl181","X":451,"Y":676},{"Bonus":0,"Continent":"K53","ID":34687,"Name":"C0151","PlayerID":8841266,"Points":9035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34687","ServerKey":"pl181","X":319,"Y":526},{"Bonus":0,"Continent":"K64","ID":34688,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34688","ServerKey":"pl181","X":417,"Y":661},{"Bonus":0,"Continent":"K46","ID":34689,"Name":"027Wioska barbarzyƄska","PlayerID":849098769,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34689","ServerKey":"pl181","X":679,"Y":448},{"Bonus":0,"Continent":"K56","ID":34690,"Name":"xDD","PlayerID":849045915,"Points":8774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34690","ServerKey":"pl181","X":673,"Y":562},{"Bonus":0,"Continent":"K53","ID":34691,"Name":"Jezioro","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34691","ServerKey":"pl181","X":325,"Y":553},{"Bonus":0,"Continent":"K56","ID":34692,"Name":"O61 Cesvaine","PlayerID":699272880,"Points":11534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34692","ServerKey":"pl181","X":674,"Y":559},{"Bonus":0,"Continent":"K36","ID":34693,"Name":"ADEN","PlayerID":698588535,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34693","ServerKey":"pl181","X":603,"Y":346},{"Bonus":1,"Continent":"K46","ID":34694,"Name":"024 toni","PlayerID":849098769,"Points":8716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34694","ServerKey":"pl181","X":676,"Y":457},{"Bonus":0,"Continent":"K43","ID":34695,"Name":"Wioska 12","PlayerID":849075836,"Points":5954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34695","ServerKey":"pl181","X":319,"Y":486},{"Bonus":0,"Continent":"K46","ID":34696,"Name":"I057","PlayerID":699722599,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34696","ServerKey":"pl181","X":675,"Y":450},{"Bonus":0,"Continent":"K33","ID":34697,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34697","ServerKey":"pl181","X":361,"Y":387},{"Bonus":0,"Continent":"K33","ID":34699,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34699","ServerKey":"pl181","X":396,"Y":355},{"Bonus":0,"Continent":"K35","ID":34700,"Name":"Gniezno","PlayerID":849108784,"Points":4938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34700","ServerKey":"pl181","X":553,"Y":323},{"Bonus":0,"Continent":"K35","ID":34701,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":4508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34701","ServerKey":"pl181","X":570,"Y":333},{"Bonus":0,"Continent":"K64","ID":34702,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34702","ServerKey":"pl181","X":416,"Y":662},{"Bonus":0,"Continent":"K46","ID":34703,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34703","ServerKey":"pl181","X":680,"Y":488},{"Bonus":0,"Continent":"K34","ID":34704,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34704","ServerKey":"pl181","X":417,"Y":341},{"Bonus":0,"Continent":"K63","ID":34705,"Name":"011","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34705","ServerKey":"pl181","X":348,"Y":603},{"Bonus":0,"Continent":"K43","ID":34706,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34706","ServerKey":"pl181","X":317,"Y":488},{"Bonus":0,"Continent":"K46","ID":34707,"Name":"12. Grzesiu","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34707","ServerKey":"pl181","X":684,"Y":481},{"Bonus":0,"Continent":"K56","ID":34708,"Name":"003","PlayerID":699829916,"Points":3006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34708","ServerKey":"pl181","X":682,"Y":538},{"Bonus":0,"Continent":"K46","ID":34709,"Name":"049 zzz012","PlayerID":9238175,"Points":10293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34709","ServerKey":"pl181","X":664,"Y":415},{"Bonus":0,"Continent":"K64","ID":34710,"Name":"A31","PlayerID":698652014,"Points":9940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34710","ServerKey":"pl181","X":462,"Y":677},{"Bonus":0,"Continent":"K43","ID":34711,"Name":"Lord Arsey II","PlayerID":698349125,"Points":3233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34711","ServerKey":"pl181","X":341,"Y":421},{"Bonus":0,"Continent":"K46","ID":34712,"Name":"[028] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34712","ServerKey":"pl181","X":671,"Y":436},{"Bonus":0,"Continent":"K36","ID":34713,"Name":"wounded knee","PlayerID":7340529,"Points":7370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34713","ServerKey":"pl181","X":638,"Y":385},{"Bonus":0,"Continent":"K66","ID":34714,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34714","ServerKey":"pl181","X":637,"Y":625},{"Bonus":0,"Continent":"K35","ID":34715,"Name":"Wioska barbarzyƄska","PlayerID":699710633,"Points":3209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34715","ServerKey":"pl181","X":581,"Y":333},{"Bonus":0,"Continent":"K36","ID":34716,"Name":"=|50|=","PlayerID":9101574,"Points":2641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34716","ServerKey":"pl181","X":650,"Y":390},{"Bonus":0,"Continent":"K66","ID":34717,"Name":"LAST !!!","PlayerID":849014413,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34717","ServerKey":"pl181","X":646,"Y":601},{"Bonus":0,"Continent":"K35","ID":34718,"Name":"krytl17","PlayerID":1990750,"Points":7375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34718","ServerKey":"pl181","X":508,"Y":316},{"Bonus":0,"Continent":"K46","ID":34719,"Name":"**07**","PlayerID":849098782,"Points":11752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34719","ServerKey":"pl181","X":666,"Y":435},{"Bonus":0,"Continent":"K36","ID":34720,"Name":"006","PlayerID":699738350,"Points":7790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34720","ServerKey":"pl181","X":642,"Y":379},{"Bonus":0,"Continent":"K33","ID":34721,"Name":"cz 10","PlayerID":3909522,"Points":11489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34721","ServerKey":"pl181","X":368,"Y":380},{"Bonus":0,"Continent":"K33","ID":34722,"Name":"Szulernia","PlayerID":7249451,"Points":3811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34722","ServerKey":"pl181","X":368,"Y":375},{"Bonus":0,"Continent":"K64","ID":34725,"Name":"019 Daevon","PlayerID":699834004,"Points":7340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34725","ServerKey":"pl181","X":477,"Y":682},{"Bonus":0,"Continent":"K46","ID":34726,"Name":"024 Wioska","PlayerID":699671454,"Points":2792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34726","ServerKey":"pl181","X":681,"Y":467},{"Bonus":0,"Continent":"K34","ID":34727,"Name":"???","PlayerID":698489071,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34727","ServerKey":"pl181","X":483,"Y":319},{"Bonus":0,"Continent":"K33","ID":34728,"Name":"Szulernia","PlayerID":7249451,"Points":3061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34728","ServerKey":"pl181","X":381,"Y":363},{"Bonus":0,"Continent":"K65","ID":34729,"Name":"071","PlayerID":2293376,"Points":5420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34729","ServerKey":"pl181","X":542,"Y":680},{"Bonus":0,"Continent":"K53","ID":34730,"Name":"Peryferie","PlayerID":849096458,"Points":5586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34730","ServerKey":"pl181","X":328,"Y":564},{"Bonus":0,"Continent":"K53","ID":34731,"Name":"C0093","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34731","ServerKey":"pl181","X":319,"Y":525},{"Bonus":0,"Continent":"K43","ID":34732,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34732","ServerKey":"pl181","X":325,"Y":459},{"Bonus":0,"Continent":"K53","ID":34733,"Name":"(025)Aimia","PlayerID":849098695,"Points":6238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34733","ServerKey":"pl181","X":329,"Y":574},{"Bonus":0,"Continent":"K34","ID":34734,"Name":"0149","PlayerID":699431255,"Points":8250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34734","ServerKey":"pl181","X":408,"Y":339},{"Bonus":0,"Continent":"K66","ID":34735,"Name":"Wioska 041","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34735","ServerKey":"pl181","X":649,"Y":602},{"Bonus":6,"Continent":"K43","ID":34736,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34736","ServerKey":"pl181","X":319,"Y":495},{"Bonus":0,"Continent":"K56","ID":34738,"Name":"AGA3","PlayerID":699598425,"Points":9784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34738","ServerKey":"pl181","X":685,"Y":502},{"Bonus":0,"Continent":"K65","ID":34739,"Name":"Muchomor *018*","PlayerID":606407,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34739","ServerKey":"pl181","X":518,"Y":680},{"Bonus":0,"Continent":"K43","ID":34740,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":6688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34740","ServerKey":"pl181","X":332,"Y":423},{"Bonus":0,"Continent":"K36","ID":34741,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":9765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34741","ServerKey":"pl181","X":634,"Y":380},{"Bonus":0,"Continent":"K65","ID":34742,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34742","ServerKey":"pl181","X":502,"Y":686},{"Bonus":0,"Continent":"K46","ID":34743,"Name":"[011] Bąkolice","PlayerID":849095068,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34743","ServerKey":"pl181","X":668,"Y":431},{"Bonus":0,"Continent":"K43","ID":34744,"Name":"Out of Touch","PlayerID":698962117,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34744","ServerKey":"pl181","X":325,"Y":438},{"Bonus":0,"Continent":"K53","ID":34745,"Name":"062 komornicy","PlayerID":699510259,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34745","ServerKey":"pl181","X":324,"Y":543},{"Bonus":0,"Continent":"K46","ID":34746,"Name":"#Sewa#003","PlayerID":113796,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34746","ServerKey":"pl181","X":671,"Y":441},{"Bonus":0,"Continent":"K35","ID":34747,"Name":"A.13 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":8239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34747","ServerKey":"pl181","X":564,"Y":326},{"Bonus":0,"Continent":"K46","ID":34748,"Name":"Gattacka","PlayerID":699298370,"Points":9678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34748","ServerKey":"pl181","X":679,"Y":437},{"Bonus":0,"Continent":"K46","ID":34749,"Name":"012 MasRolSplawie","PlayerID":849098769,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34749","ServerKey":"pl181","X":678,"Y":445},{"Bonus":0,"Continent":"K63","ID":34750,"Name":"CzosnkĂłw","PlayerID":849014147,"Points":7575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34750","ServerKey":"pl181","X":358,"Y":613},{"Bonus":0,"Continent":"K46","ID":34751,"Name":"**05**","PlayerID":849098782,"Points":11877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34751","ServerKey":"pl181","X":671,"Y":439},{"Bonus":0,"Continent":"K33","ID":34753,"Name":"*038*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34753","ServerKey":"pl181","X":348,"Y":395},{"Bonus":0,"Continent":"K34","ID":34754,"Name":"0150","PlayerID":699431255,"Points":8088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34754","ServerKey":"pl181","X":407,"Y":343},{"Bonus":0,"Continent":"K43","ID":34755,"Name":"Wioska 10","PlayerID":849075836,"Points":6918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34755","ServerKey":"pl181","X":316,"Y":486},{"Bonus":0,"Continent":"K46","ID":34756,"Name":"[005] Tato, tato, kupa!","PlayerID":849095068,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34756","ServerKey":"pl181","X":675,"Y":433},{"Bonus":0,"Continent":"K64","ID":34757,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34757","ServerKey":"pl181","X":432,"Y":673},{"Bonus":0,"Continent":"K53","ID":34758,"Name":"Taran","PlayerID":6180190,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34758","ServerKey":"pl181","X":336,"Y":580},{"Bonus":0,"Continent":"K35","ID":34759,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34759","ServerKey":"pl181","X":587,"Y":344},{"Bonus":0,"Continent":"K65","ID":34760,"Name":"Wioska dzikich ĆŒuli","PlayerID":699567608,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34760","ServerKey":"pl181","X":577,"Y":664},{"Bonus":0,"Continent":"K36","ID":34761,"Name":"Klaudek18","PlayerID":849092309,"Points":5205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34761","ServerKey":"pl181","X":631,"Y":370},{"Bonus":0,"Continent":"K33","ID":34762,"Name":"*065*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34762","ServerKey":"pl181","X":356,"Y":385},{"Bonus":0,"Continent":"K34","ID":34763,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34763","ServerKey":"pl181","X":416,"Y":341},{"Bonus":0,"Continent":"K35","ID":34764,"Name":"IluMinatii","PlayerID":8963720,"Points":6253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34764","ServerKey":"pl181","X":593,"Y":339},{"Bonus":0,"Continent":"K64","ID":34765,"Name":"psycha sitting","PlayerID":699736927,"Points":6140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34765","ServerKey":"pl181","X":409,"Y":658},{"Bonus":0,"Continent":"K56","ID":34766,"Name":"_PUSTA","PlayerID":698768565,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34766","ServerKey":"pl181","X":658,"Y":591},{"Bonus":0,"Continent":"K53","ID":34767,"Name":"C0256","PlayerID":8841266,"Points":7921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34767","ServerKey":"pl181","X":315,"Y":507},{"Bonus":0,"Continent":"K66","ID":34768,"Name":"Chances Are","PlayerID":2269943,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34768","ServerKey":"pl181","X":644,"Y":607},{"Bonus":0,"Continent":"K56","ID":34769,"Name":"_PUSTA+","PlayerID":699628084,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34769","ServerKey":"pl181","X":672,"Y":548},{"Bonus":0,"Continent":"K63","ID":34770,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34770","ServerKey":"pl181","X":388,"Y":644},{"Bonus":0,"Continent":"K53","ID":34771,"Name":"C0265","PlayerID":8841266,"Points":6861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34771","ServerKey":"pl181","X":317,"Y":504},{"Bonus":0,"Continent":"K36","ID":34772,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":8338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34772","ServerKey":"pl181","X":635,"Y":379},{"Bonus":0,"Continent":"K34","ID":34773,"Name":"231","PlayerID":7271812,"Points":3704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34773","ServerKey":"pl181","X":413,"Y":337},{"Bonus":0,"Continent":"K66","ID":34774,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34774","ServerKey":"pl181","X":648,"Y":603},{"Bonus":0,"Continent":"K64","ID":34775,"Name":"No.18","PlayerID":698826986,"Points":7282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34775","ServerKey":"pl181","X":479,"Y":679},{"Bonus":0,"Continent":"K56","ID":34776,"Name":"C 007","PlayerID":8078914,"Points":8038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34776","ServerKey":"pl181","X":688,"Y":514},{"Bonus":0,"Continent":"K46","ID":34777,"Name":"Polesie","PlayerID":849100246,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34777","ServerKey":"pl181","X":685,"Y":480},{"Bonus":0,"Continent":"K66","ID":34778,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":7793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34778","ServerKey":"pl181","X":623,"Y":637},{"Bonus":0,"Continent":"K64","ID":34779,"Name":"0602","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34779","ServerKey":"pl181","X":487,"Y":681},{"Bonus":0,"Continent":"K66","ID":34780,"Name":"~~091~~","PlayerID":7829201,"Points":9591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34780","ServerKey":"pl181","X":634,"Y":619},{"Bonus":0,"Continent":"K35","ID":34781,"Name":"AAA","PlayerID":1006847,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34781","ServerKey":"pl181","X":533,"Y":317},{"Bonus":0,"Continent":"K34","ID":34782,"Name":"1.Primorsk","PlayerID":849098648,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34782","ServerKey":"pl181","X":415,"Y":331},{"Bonus":0,"Continent":"K65","ID":34783,"Name":"0580","PlayerID":698659980,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34783","ServerKey":"pl181","X":552,"Y":672},{"Bonus":0,"Continent":"K34","ID":34784,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":5278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34784","ServerKey":"pl181","X":450,"Y":335},{"Bonus":0,"Continent":"K36","ID":34785,"Name":"K36 - [003] Before Land","PlayerID":699088769,"Points":3972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34785","ServerKey":"pl181","X":628,"Y":369},{"Bonus":0,"Continent":"K34","ID":34786,"Name":"Wioska barbarzyƄska","PlayerID":699380621,"Points":2025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34786","ServerKey":"pl181","X":405,"Y":343},{"Bonus":0,"Continent":"K36","ID":34787,"Name":"-17-","PlayerID":699837826,"Points":5472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34787","ServerKey":"pl181","X":629,"Y":370},{"Bonus":0,"Continent":"K53","ID":34788,"Name":"084 One","PlayerID":699382126,"Points":8324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34788","ServerKey":"pl181","X":332,"Y":570},{"Bonus":0,"Continent":"K34","ID":34789,"Name":"179...Segadorr M","PlayerID":6920960,"Points":7066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34789","ServerKey":"pl181","X":439,"Y":328},{"Bonus":0,"Continent":"K34","ID":34790,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":5996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34790","ServerKey":"pl181","X":437,"Y":333},{"Bonus":0,"Continent":"K43","ID":34791,"Name":"Out of Touch","PlayerID":698962117,"Points":8294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34791","ServerKey":"pl181","X":328,"Y":440},{"Bonus":0,"Continent":"K64","ID":34792,"Name":"Ave Why!","PlayerID":698585370,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34792","ServerKey":"pl181","X":450,"Y":673},{"Bonus":0,"Continent":"K66","ID":34793,"Name":"A010","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34793","ServerKey":"pl181","X":602,"Y":648},{"Bonus":0,"Continent":"K36","ID":34794,"Name":"=|40|=","PlayerID":9101574,"Points":4047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34794","ServerKey":"pl181","X":643,"Y":393},{"Bonus":0,"Continent":"K56","ID":34795,"Name":"*5612* UkƂad przestrzenny","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34795","ServerKey":"pl181","X":669,"Y":581},{"Bonus":0,"Continent":"K65","ID":34796,"Name":"108","PlayerID":849097799,"Points":8182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34796","ServerKey":"pl181","X":596,"Y":653},{"Bonus":0,"Continent":"K64","ID":34797,"Name":"psycha sitting","PlayerID":699736927,"Points":5738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34797","ServerKey":"pl181","X":401,"Y":658},{"Bonus":0,"Continent":"K66","ID":34798,"Name":"A005","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34798","ServerKey":"pl181","X":604,"Y":646},{"Bonus":0,"Continent":"K34","ID":34799,"Name":"fff","PlayerID":698239813,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34799","ServerKey":"pl181","X":492,"Y":319},{"Bonus":0,"Continent":"K33","ID":34800,"Name":"cz K10 5","PlayerID":3909522,"Points":7229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34800","ServerKey":"pl181","X":363,"Y":385},{"Bonus":0,"Continent":"K35","ID":34801,"Name":"AAA","PlayerID":1006847,"Points":6716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34801","ServerKey":"pl181","X":548,"Y":324},{"Bonus":0,"Continent":"K53","ID":34802,"Name":"C0145","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34802","ServerKey":"pl181","X":323,"Y":534},{"Bonus":0,"Continent":"K53","ID":34803,"Name":"C0029","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34803","ServerKey":"pl181","X":320,"Y":516},{"Bonus":7,"Continent":"K63","ID":34804,"Name":"0120","PlayerID":7085510,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34804","ServerKey":"pl181","X":392,"Y":647},{"Bonus":0,"Continent":"K66","ID":34805,"Name":"A063","PlayerID":9023703,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34805","ServerKey":"pl181","X":604,"Y":653},{"Bonus":0,"Continent":"K56","ID":34806,"Name":"098. Sar Soa","PlayerID":8337151,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34806","ServerKey":"pl181","X":668,"Y":577},{"Bonus":0,"Continent":"K46","ID":34807,"Name":"**47**","PlayerID":849098782,"Points":5111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34807","ServerKey":"pl181","X":669,"Y":431},{"Bonus":0,"Continent":"K65","ID":34808,"Name":"AG19","PlayerID":699876345,"Points":5970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34808","ServerKey":"pl181","X":584,"Y":667},{"Bonus":0,"Continent":"K56","ID":34809,"Name":"D20","PlayerID":848995478,"Points":3226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34809","ServerKey":"pl181","X":676,"Y":551},{"Bonus":0,"Continent":"K63","ID":34810,"Name":".:005:.","PlayerID":7417116,"Points":11562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34810","ServerKey":"pl181","X":353,"Y":614},{"Bonus":0,"Continent":"K43","ID":34812,"Name":"armata","PlayerID":849098727,"Points":3292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34812","ServerKey":"pl181","X":333,"Y":430},{"Bonus":0,"Continent":"K43","ID":34813,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":6448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34813","ServerKey":"pl181","X":331,"Y":421},{"Bonus":0,"Continent":"K46","ID":34814,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34814","ServerKey":"pl181","X":682,"Y":487},{"Bonus":0,"Continent":"K65","ID":34815,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34815","ServerKey":"pl181","X":501,"Y":683},{"Bonus":7,"Continent":"K66","ID":34816,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34816","ServerKey":"pl181","X":632,"Y":625},{"Bonus":0,"Continent":"K65","ID":34817,"Name":"102","PlayerID":849097799,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34817","ServerKey":"pl181","X":593,"Y":658},{"Bonus":0,"Continent":"K36","ID":34818,"Name":"015.","PlayerID":699098531,"Points":7968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34818","ServerKey":"pl181","X":625,"Y":371},{"Bonus":0,"Continent":"K36","ID":34819,"Name":"=|34|=","PlayerID":9101574,"Points":5698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34819","ServerKey":"pl181","X":645,"Y":389},{"Bonus":0,"Continent":"K35","ID":34820,"Name":"Vanaheim VI","PlayerID":699478692,"Points":2469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34820","ServerKey":"pl181","X":591,"Y":337},{"Bonus":0,"Continent":"K65","ID":34821,"Name":"AG12","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34821","ServerKey":"pl181","X":590,"Y":665},{"Bonus":0,"Continent":"K66","ID":34822,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34822","ServerKey":"pl181","X":639,"Y":619},{"Bonus":0,"Continent":"K43","ID":34823,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":4517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34823","ServerKey":"pl181","X":324,"Y":451},{"Bonus":0,"Continent":"K43","ID":34824,"Name":"New Land 25","PlayerID":849064752,"Points":2546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34824","ServerKey":"pl181","X":339,"Y":406},{"Bonus":0,"Continent":"K35","ID":34825,"Name":"Lord Lord Franek .#150","PlayerID":698420691,"Points":7449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34825","ServerKey":"pl181","X":509,"Y":316},{"Bonus":0,"Continent":"K66","ID":34826,"Name":"A009","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34826","ServerKey":"pl181","X":608,"Y":648},{"Bonus":0,"Continent":"K66","ID":34827,"Name":"#175#","PlayerID":692803,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34827","ServerKey":"pl181","X":643,"Y":620},{"Bonus":0,"Continent":"K66","ID":34828,"Name":"#047#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34828","ServerKey":"pl181","X":634,"Y":624},{"Bonus":0,"Continent":"K53","ID":34829,"Name":"005","PlayerID":7097727,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34829","ServerKey":"pl181","X":314,"Y":503},{"Bonus":0,"Continent":"K34","ID":34830,"Name":"215","PlayerID":698365960,"Points":8905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34830","ServerKey":"pl181","X":448,"Y":326},{"Bonus":0,"Continent":"K65","ID":34831,"Name":"0277","PlayerID":698659980,"Points":8744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34831","ServerKey":"pl181","X":559,"Y":673},{"Bonus":7,"Continent":"K46","ID":34832,"Name":"023 toni","PlayerID":849098769,"Points":8920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34832","ServerKey":"pl181","X":678,"Y":461},{"Bonus":0,"Continent":"K46","ID":34833,"Name":"[037] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34833","ServerKey":"pl181","X":676,"Y":444},{"Bonus":0,"Continent":"K63","ID":34834,"Name":".:016:.","PlayerID":7417116,"Points":8733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34834","ServerKey":"pl181","X":352,"Y":613},{"Bonus":0,"Continent":"K56","ID":34835,"Name":"C22","PlayerID":848995478,"Points":4238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34835","ServerKey":"pl181","X":680,"Y":540},{"Bonus":0,"Continent":"K34","ID":34836,"Name":"156...hubertw25","PlayerID":6920960,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34836","ServerKey":"pl181","X":438,"Y":330},{"Bonus":0,"Continent":"K46","ID":34837,"Name":"**04**","PlayerID":849098782,"Points":12000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34837","ServerKey":"pl181","X":674,"Y":436},{"Bonus":0,"Continent":"K53","ID":34838,"Name":"Upa01","PlayerID":849098695,"Points":5150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34838","ServerKey":"pl181","X":328,"Y":562},{"Bonus":0,"Continent":"K65","ID":34839,"Name":"Auu","PlayerID":699567608,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34839","ServerKey":"pl181","X":581,"Y":667},{"Bonus":0,"Continent":"K34","ID":34840,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34840","ServerKey":"pl181","X":427,"Y":333},{"Bonus":0,"Continent":"K56","ID":34842,"Name":"N. C. Con air","PlayerID":849098693,"Points":5601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34842","ServerKey":"pl181","X":664,"Y":584},{"Bonus":0,"Continent":"K34","ID":34843,"Name":"#0202 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34843","ServerKey":"pl181","X":464,"Y":317},{"Bonus":0,"Continent":"K35","ID":34844,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34844","ServerKey":"pl181","X":558,"Y":329},{"Bonus":0,"Continent":"K64","ID":34845,"Name":"psycha sitting","PlayerID":699736927,"Points":8765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34845","ServerKey":"pl181","X":422,"Y":667},{"Bonus":0,"Continent":"K65","ID":34847,"Name":"Wioska barbarzyƄska ,","PlayerID":848995242,"Points":10418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34847","ServerKey":"pl181","X":587,"Y":658},{"Bonus":0,"Continent":"K56","ID":34848,"Name":"030 - Santander","PlayerID":698342159,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34848","ServerKey":"pl181","X":683,"Y":521},{"Bonus":0,"Continent":"K53","ID":34849,"Name":"Kazimierz Dolny","PlayerID":699364813,"Points":9073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34849","ServerKey":"pl181","X":322,"Y":555},{"Bonus":0,"Continent":"K34","ID":34850,"Name":"[008]","PlayerID":849099160,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34850","ServerKey":"pl181","X":472,"Y":319},{"Bonus":0,"Continent":"K56","ID":34851,"Name":"Grvvyq 105k$","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34851","ServerKey":"pl181","X":681,"Y":531},{"Bonus":0,"Continent":"K35","ID":34852,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34852","ServerKey":"pl181","X":554,"Y":328},{"Bonus":0,"Continent":"K56","ID":34853,"Name":"O52 Grindavik","PlayerID":699272880,"Points":8578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34853","ServerKey":"pl181","X":677,"Y":535},{"Bonus":0,"Continent":"K66","ID":34854,"Name":"~~079~~","PlayerID":7829201,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34854","ServerKey":"pl181","X":614,"Y":648},{"Bonus":0,"Continent":"K33","ID":34855,"Name":"*029*","PlayerID":699273451,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34855","ServerKey":"pl181","X":349,"Y":394},{"Bonus":0,"Continent":"K64","ID":34856,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":7525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34856","ServerKey":"pl181","X":423,"Y":665},{"Bonus":0,"Continent":"K43","ID":34857,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":6891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34857","ServerKey":"pl181","X":332,"Y":419},{"Bonus":0,"Continent":"K53","ID":34858,"Name":"KocpoƂuch 2","PlayerID":848949597,"Points":6754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34858","ServerKey":"pl181","X":334,"Y":580},{"Bonus":0,"Continent":"K64","ID":34859,"Name":"Wioska barbarzyƄska","PlayerID":699516268,"Points":9028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34859","ServerKey":"pl181","X":401,"Y":657},{"Bonus":0,"Continent":"K46","ID":34861,"Name":"084 Nowy Rok","PlayerID":699491076,"Points":7238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34861","ServerKey":"pl181","X":655,"Y":402},{"Bonus":0,"Continent":"K43","ID":34862,"Name":"Out of Touch","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34862","ServerKey":"pl181","X":328,"Y":425},{"Bonus":0,"Continent":"K33","ID":34863,"Name":"*006*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34863","ServerKey":"pl181","X":358,"Y":388},{"Bonus":0,"Continent":"K46","ID":34864,"Name":"Jan WILCZY SZANIEC II K","PlayerID":879782,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34864","ServerKey":"pl181","X":678,"Y":436},{"Bonus":0,"Continent":"K43","ID":34865,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":4470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34865","ServerKey":"pl181","X":325,"Y":454},{"Bonus":0,"Continent":"K34","ID":34866,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34866","ServerKey":"pl181","X":419,"Y":334},{"Bonus":0,"Continent":"K66","ID":34867,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":4210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34867","ServerKey":"pl181","X":653,"Y":607},{"Bonus":6,"Continent":"K35","ID":34868,"Name":"AAA","PlayerID":1006847,"Points":11231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34868","ServerKey":"pl181","X":547,"Y":322},{"Bonus":0,"Continent":"K64","ID":34869,"Name":"0603","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34869","ServerKey":"pl181","X":484,"Y":683},{"Bonus":0,"Continent":"K46","ID":34870,"Name":"004 Crypto Arena","PlayerID":849098769,"Points":11074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34870","ServerKey":"pl181","X":672,"Y":450},{"Bonus":0,"Continent":"K34","ID":34871,"Name":"Wioska barbarz","PlayerID":6118079,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34871","ServerKey":"pl181","X":499,"Y":320},{"Bonus":0,"Continent":"K63","ID":34872,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":4347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34872","ServerKey":"pl181","X":354,"Y":608},{"Bonus":0,"Continent":"K33","ID":34873,"Name":"*036*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34873","ServerKey":"pl181","X":347,"Y":397},{"Bonus":0,"Continent":"K63","ID":34874,"Name":"005a Wy mnie chcecie wykoƄczyć!","PlayerID":6354098,"Points":11558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34874","ServerKey":"pl181","X":378,"Y":631},{"Bonus":0,"Continent":"K46","ID":34875,"Name":"064 | PALESTINA","PlayerID":9228039,"Points":3733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34875","ServerKey":"pl181","X":658,"Y":414},{"Bonus":0,"Continent":"K66","ID":34876,"Name":"#056#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34876","ServerKey":"pl181","X":633,"Y":629},{"Bonus":0,"Continent":"K53","ID":34877,"Name":"Wonderwall","PlayerID":698962117,"Points":9503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34877","ServerKey":"pl181","X":326,"Y":552},{"Bonus":3,"Continent":"K63","ID":34878,"Name":"A 068","PlayerID":699342219,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34878","ServerKey":"pl181","X":369,"Y":627},{"Bonus":0,"Continent":"K64","ID":34879,"Name":"R 008 ~Zyra~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34879","ServerKey":"pl181","X":483,"Y":683},{"Bonus":0,"Continent":"K56","ID":34880,"Name":"GrodkĂłw","PlayerID":848932879,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34880","ServerKey":"pl181","X":676,"Y":558},{"Bonus":0,"Continent":"K36","ID":34881,"Name":"Taran 002","PlayerID":2600387,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34881","ServerKey":"pl181","X":607,"Y":355},{"Bonus":0,"Continent":"K64","ID":34882,"Name":"#Charmy","PlayerID":699849210,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34882","ServerKey":"pl181","X":431,"Y":665},{"Bonus":0,"Continent":"K65","ID":34883,"Name":"0261","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34883","ServerKey":"pl181","X":551,"Y":679},{"Bonus":0,"Continent":"K64","ID":34884,"Name":"psycha sitting","PlayerID":699736927,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34884","ServerKey":"pl181","X":412,"Y":664},{"Bonus":0,"Continent":"K43","ID":34885,"Name":"005","PlayerID":7127455,"Points":6419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34885","ServerKey":"pl181","X":318,"Y":475},{"Bonus":0,"Continent":"K66","ID":34886,"Name":"A012","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34886","ServerKey":"pl181","X":602,"Y":652},{"Bonus":0,"Continent":"K56","ID":34887,"Name":"*5612*aaa Omaticaya","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34887","ServerKey":"pl181","X":666,"Y":582},{"Bonus":0,"Continent":"K54","ID":34888,"Name":"IdA","PlayerID":8779575,"Points":3319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34888","ServerKey":"pl181","X":428,"Y":554},{"Bonus":0,"Continent":"K35","ID":34889,"Name":"AAA","PlayerID":1006847,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34889","ServerKey":"pl181","X":535,"Y":317},{"Bonus":0,"Continent":"K35","ID":34890,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":8868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34890","ServerKey":"pl181","X":577,"Y":331},{"Bonus":0,"Continent":"K34","ID":34891,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":8278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34891","ServerKey":"pl181","X":449,"Y":333},{"Bonus":0,"Continent":"K46","ID":34892,"Name":"**03**","PlayerID":849098782,"Points":11862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34892","ServerKey":"pl181","X":673,"Y":432},{"Bonus":0,"Continent":"K46","ID":34893,"Name":"Wioska RyBssoN","PlayerID":699738350,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34893","ServerKey":"pl181","X":656,"Y":403},{"Bonus":0,"Continent":"K43","ID":34894,"Name":"Out of Touch","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34894","ServerKey":"pl181","X":321,"Y":436},{"Bonus":0,"Continent":"K43","ID":34895,"Name":"Out of Touch","PlayerID":698962117,"Points":3483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34895","ServerKey":"pl181","X":324,"Y":435},{"Bonus":0,"Continent":"K36","ID":34896,"Name":"WJEĆ»DĆ»AM I ROZJEĆ»DĆ»AM","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34896","ServerKey":"pl181","X":613,"Y":357},{"Bonus":0,"Continent":"K56","ID":34897,"Name":"073 donkretos5","PlayerID":2135129,"Points":6833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34897","ServerKey":"pl181","X":684,"Y":516},{"Bonus":0,"Continent":"K65","ID":34899,"Name":"PoƂudnie.013","PlayerID":873575,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34899","ServerKey":"pl181","X":552,"Y":680},{"Bonus":2,"Continent":"K65","ID":34900,"Name":"A030","PlayerID":9023703,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34900","ServerKey":"pl181","X":599,"Y":659},{"Bonus":0,"Continent":"K34","ID":34901,"Name":"9.Prison","PlayerID":849098648,"Points":4185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34901","ServerKey":"pl181","X":413,"Y":334},{"Bonus":0,"Continent":"K43","ID":34902,"Name":"A0313","PlayerID":8841266,"Points":808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34902","ServerKey":"pl181","X":318,"Y":471},{"Bonus":0,"Continent":"K64","ID":34904,"Name":"Bizy 3","PlayerID":698585370,"Points":3188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34904","ServerKey":"pl181","X":496,"Y":661},{"Bonus":0,"Continent":"K43","ID":34905,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34905","ServerKey":"pl181","X":320,"Y":488},{"Bonus":0,"Continent":"K66","ID":34906,"Name":"monetki C","PlayerID":698768565,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34906","ServerKey":"pl181","X":637,"Y":623},{"Bonus":0,"Continent":"K43","ID":34907,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":7917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34907","ServerKey":"pl181","X":334,"Y":423},{"Bonus":0,"Continent":"K46","ID":34908,"Name":"I079","PlayerID":699722599,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34908","ServerKey":"pl181","X":678,"Y":442},{"Bonus":0,"Continent":"K34","ID":34909,"Name":"#0177 yasoke19","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34909","ServerKey":"pl181","X":487,"Y":318},{"Bonus":0,"Continent":"K65","ID":34910,"Name":"Wioska r 7","PlayerID":848915531,"Points":6329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34910","ServerKey":"pl181","X":560,"Y":671},{"Bonus":0,"Continent":"K53","ID":34911,"Name":"C0022","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34911","ServerKey":"pl181","X":314,"Y":514},{"Bonus":0,"Continent":"K36","ID":34912,"Name":"K36 - [007] Before Land","PlayerID":699088769,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34912","ServerKey":"pl181","X":632,"Y":368},{"Bonus":0,"Continent":"K63","ID":34913,"Name":"D.022","PlayerID":849088243,"Points":8445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34913","ServerKey":"pl181","X":392,"Y":645},{"Bonus":0,"Continent":"K35","ID":34914,"Name":"09 Szpica PóƂnocna","PlayerID":849108780,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34914","ServerKey":"pl181","X":564,"Y":329},{"Bonus":0,"Continent":"K53","ID":34915,"Name":"Sandvig","PlayerID":849098387,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34915","ServerKey":"pl181","X":336,"Y":571},{"Bonus":0,"Continent":"K33","ID":34916,"Name":"*115*","PlayerID":699273451,"Points":10116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34916","ServerKey":"pl181","X":360,"Y":382},{"Bonus":0,"Continent":"K43","ID":34917,"Name":"Out of Touch","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34917","ServerKey":"pl181","X":328,"Y":426},{"Bonus":0,"Continent":"K46","ID":34918,"Name":"**02**","PlayerID":849098782,"Points":11317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34918","ServerKey":"pl181","X":672,"Y":433},{"Bonus":0,"Continent":"K34","ID":34919,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34919","ServerKey":"pl181","X":428,"Y":332},{"Bonus":0,"Continent":"K43","ID":34921,"Name":"Out of Touch","PlayerID":698962117,"Points":6161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34921","ServerKey":"pl181","X":329,"Y":441},{"Bonus":0,"Continent":"K43","ID":34922,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34922","ServerKey":"pl181","X":323,"Y":477},{"Bonus":0,"Continent":"K34","ID":34923,"Name":"BIRMA","PlayerID":8123790,"Points":4691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34923","ServerKey":"pl181","X":402,"Y":344},{"Bonus":0,"Continent":"K35","ID":34924,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34924","ServerKey":"pl181","X":586,"Y":338},{"Bonus":1,"Continent":"K56","ID":34925,"Name":"*5612*c Jak to moĆŒliwe","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34925","ServerKey":"pl181","X":666,"Y":578},{"Bonus":0,"Continent":"K43","ID":34926,"Name":"Out of Touch","PlayerID":698962117,"Points":6342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34926","ServerKey":"pl181","X":323,"Y":443},{"Bonus":0,"Continent":"K33","ID":34927,"Name":"Szlachcic","PlayerID":3484132,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34927","ServerKey":"pl181","X":390,"Y":355},{"Bonus":0,"Continent":"K43","ID":34928,"Name":"Dream on","PlayerID":698962117,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34928","ServerKey":"pl181","X":311,"Y":494},{"Bonus":0,"Continent":"K46","ID":34929,"Name":"020. Taka teĆŒ nie","PlayerID":7494497,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34929","ServerKey":"pl181","X":686,"Y":475},{"Bonus":0,"Continent":"K63","ID":34930,"Name":"--04--","PlayerID":8877156,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34930","ServerKey":"pl181","X":343,"Y":601},{"Bonus":0,"Continent":"K65","ID":34931,"Name":"0418","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34931","ServerKey":"pl181","X":561,"Y":677},{"Bonus":0,"Continent":"K53","ID":34932,"Name":"002","PlayerID":849012521,"Points":4621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34932","ServerKey":"pl181","X":323,"Y":558},{"Bonus":0,"Continent":"K66","ID":34933,"Name":"#082#","PlayerID":692803,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34933","ServerKey":"pl181","X":631,"Y":628},{"Bonus":0,"Continent":"K36","ID":34934,"Name":"=|13|=","PlayerID":9101574,"Points":6161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34934","ServerKey":"pl181","X":642,"Y":385},{"Bonus":3,"Continent":"K53","ID":34935,"Name":"C0168","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34935","ServerKey":"pl181","X":321,"Y":532},{"Bonus":0,"Continent":"K33","ID":34936,"Name":"z Wioska barbarzyƄska 11","PlayerID":3909522,"Points":8037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34936","ServerKey":"pl181","X":356,"Y":382},{"Bonus":0,"Continent":"K36","ID":34937,"Name":"014","PlayerID":1990750,"Points":8764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34937","ServerKey":"pl181","X":604,"Y":345},{"Bonus":0,"Continent":"K43","ID":34938,"Name":"ƚcisƂo go i poszedƂ","PlayerID":849098299,"Points":6217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34938","ServerKey":"pl181","X":344,"Y":407},{"Bonus":0,"Continent":"K66","ID":34939,"Name":"A032","PlayerID":9023703,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34939","ServerKey":"pl181","X":600,"Y":655},{"Bonus":0,"Continent":"K43","ID":34940,"Name":"Wioska barbarzyƄska","PlayerID":699823490,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34940","ServerKey":"pl181","X":321,"Y":479},{"Bonus":0,"Continent":"K53","ID":34941,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34941","ServerKey":"pl181","X":341,"Y":594},{"Bonus":9,"Continent":"K36","ID":34942,"Name":"=|03|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34942","ServerKey":"pl181","X":647,"Y":391},{"Bonus":0,"Continent":"K53","ID":34943,"Name":"Sullivanum [1]","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34943","ServerKey":"pl181","X":337,"Y":591},{"Bonus":0,"Continent":"K56","ID":34944,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34944","ServerKey":"pl181","X":680,"Y":517},{"Bonus":0,"Continent":"K34","ID":34945,"Name":"#0140 Kamil0ss1","PlayerID":1238300,"Points":8081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34945","ServerKey":"pl181","X":481,"Y":316},{"Bonus":0,"Continent":"K66","ID":34946,"Name":"#062#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34946","ServerKey":"pl181","X":623,"Y":631},{"Bonus":0,"Continent":"K53","ID":34947,"Name":"001","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34947","ServerKey":"pl181","X":340,"Y":598},{"Bonus":0,"Continent":"K35","ID":34948,"Name":"AAA","PlayerID":1006847,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34948","ServerKey":"pl181","X":532,"Y":316},{"Bonus":0,"Continent":"K53","ID":34949,"Name":"C0181","PlayerID":8841266,"Points":9208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34949","ServerKey":"pl181","X":318,"Y":540},{"Bonus":0,"Continent":"K53","ID":34950,"Name":"Kraszew","PlayerID":7183372,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34950","ServerKey":"pl181","X":341,"Y":595},{"Bonus":0,"Continent":"K55","ID":34951,"Name":"005 Zacznij od Nowa !!!","PlayerID":699524362,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34951","ServerKey":"pl181","X":579,"Y":583},{"Bonus":0,"Continent":"K66","ID":34952,"Name":"#059#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34952","ServerKey":"pl181","X":631,"Y":626},{"Bonus":0,"Continent":"K65","ID":34953,"Name":"0398","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34953","ServerKey":"pl181","X":558,"Y":678},{"Bonus":0,"Continent":"K66","ID":34954,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34954","ServerKey":"pl181","X":639,"Y":624},{"Bonus":0,"Continent":"K43","ID":34955,"Name":"Out of Touch","PlayerID":698962117,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34955","ServerKey":"pl181","X":329,"Y":440},{"Bonus":0,"Continent":"K43","ID":34956,"Name":"Wioska barbarzyƄska","PlayerID":849096547,"Points":2364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34956","ServerKey":"pl181","X":335,"Y":412},{"Bonus":0,"Continent":"K65","ID":34957,"Name":"C007","PlayerID":9023703,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34957","ServerKey":"pl181","X":597,"Y":666},{"Bonus":0,"Continent":"K56","ID":34958,"Name":"$LeBron","PlayerID":699795378,"Points":5602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34958","ServerKey":"pl181","X":684,"Y":523},{"Bonus":0,"Continent":"K56","ID":34959,"Name":"OFF","PlayerID":1563417,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34959","ServerKey":"pl181","X":677,"Y":532},{"Bonus":0,"Continent":"K64","ID":34960,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34960","ServerKey":"pl181","X":435,"Y":674},{"Bonus":0,"Continent":"K65","ID":34961,"Name":"Vvv","PlayerID":699567608,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34961","ServerKey":"pl181","X":589,"Y":662},{"Bonus":0,"Continent":"K64","ID":34962,"Name":"psycha sitting","PlayerID":699736927,"Points":9387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34962","ServerKey":"pl181","X":422,"Y":666},{"Bonus":0,"Continent":"K65","ID":34963,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34963","ServerKey":"pl181","X":501,"Y":685},{"Bonus":0,"Continent":"K34","ID":34965,"Name":"Dalsza","PlayerID":849096310,"Points":5753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34965","ServerKey":"pl181","X":463,"Y":323},{"Bonus":0,"Continent":"K65","ID":34966,"Name":"A036","PlayerID":9023703,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34966","ServerKey":"pl181","X":598,"Y":656},{"Bonus":2,"Continent":"K56","ID":34967,"Name":"Didek","PlayerID":849070946,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34967","ServerKey":"pl181","X":659,"Y":584},{"Bonus":0,"Continent":"K64","ID":34968,"Name":"No.25","PlayerID":698826986,"Points":1161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34968","ServerKey":"pl181","X":470,"Y":685},{"Bonus":0,"Continent":"K33","ID":34969,"Name":"*112*","PlayerID":699273451,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34969","ServerKey":"pl181","X":357,"Y":382},{"Bonus":2,"Continent":"K64","ID":34970,"Name":"Ave Why!","PlayerID":698585370,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34970","ServerKey":"pl181","X":455,"Y":682},{"Bonus":0,"Continent":"K53","ID":34971,"Name":"C0077","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34971","ServerKey":"pl181","X":319,"Y":522},{"Bonus":0,"Continent":"K53","ID":34972,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34972","ServerKey":"pl181","X":339,"Y":596},{"Bonus":0,"Continent":"K43","ID":34973,"Name":"Wioska Raguel888","PlayerID":699753640,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34973","ServerKey":"pl181","X":372,"Y":427},{"Bonus":0,"Continent":"K46","ID":34974,"Name":"[015] Bobkowo","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34974","ServerKey":"pl181","X":673,"Y":436},{"Bonus":0,"Continent":"K36","ID":34976,"Name":"160 Nocny Jastrząb 005","PlayerID":699491076,"Points":7717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34976","ServerKey":"pl181","X":655,"Y":399},{"Bonus":0,"Continent":"K55","ID":34977,"Name":"0047 K55 and987 OZDR","PlayerID":3613413,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34977","ServerKey":"pl181","X":503,"Y":555},{"Bonus":0,"Continent":"K64","ID":34978,"Name":"023 Fen Aspra","PlayerID":699834004,"Points":8942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34978","ServerKey":"pl181","X":479,"Y":682},{"Bonus":0,"Continent":"K65","ID":34979,"Name":"027","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34979","ServerKey":"pl181","X":534,"Y":679},{"Bonus":0,"Continent":"K43","ID":34980,"Name":"Wawa ;D","PlayerID":8184383,"Points":5004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34980","ServerKey":"pl181","X":324,"Y":446},{"Bonus":0,"Continent":"K33","ID":34981,"Name":"Szlachcic","PlayerID":698160606,"Points":8875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34981","ServerKey":"pl181","X":386,"Y":353},{"Bonus":0,"Continent":"K46","ID":34982,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34982","ServerKey":"pl181","X":681,"Y":479},{"Bonus":0,"Continent":"K46","ID":34983,"Name":"**26**","PlayerID":849098782,"Points":10615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34983","ServerKey":"pl181","X":674,"Y":434},{"Bonus":0,"Continent":"K34","ID":34984,"Name":"203","PlayerID":7271812,"Points":9073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34984","ServerKey":"pl181","X":424,"Y":333},{"Bonus":0,"Continent":"K53","ID":34985,"Name":"C0073","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34985","ServerKey":"pl181","X":320,"Y":511},{"Bonus":0,"Continent":"K54","ID":34986,"Name":"Dum Spiro Spero","PlayerID":848896948,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34986","ServerKey":"pl181","X":492,"Y":555},{"Bonus":0,"Continent":"K43","ID":34987,"Name":"Parole","PlayerID":699595556,"Points":3216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34987","ServerKey":"pl181","X":339,"Y":408},{"Bonus":0,"Continent":"K46","ID":34989,"Name":"028Wioska barbarzyƄska","PlayerID":849098769,"Points":7188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34989","ServerKey":"pl181","X":674,"Y":455},{"Bonus":0,"Continent":"K64","ID":34990,"Name":"#038","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34990","ServerKey":"pl181","X":476,"Y":614},{"Bonus":0,"Continent":"K56","ID":34991,"Name":"Hiszpan5","PlayerID":7038651,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34991","ServerKey":"pl181","X":672,"Y":550},{"Bonus":0,"Continent":"K53","ID":34992,"Name":"wysypisko ƛmieci","PlayerID":849012521,"Points":5241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34992","ServerKey":"pl181","X":324,"Y":564},{"Bonus":0,"Continent":"K65","ID":34994,"Name":"Muchomor *005*","PlayerID":606407,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34994","ServerKey":"pl181","X":512,"Y":687},{"Bonus":0,"Continent":"K46","ID":34995,"Name":"Zbytkowo-Hubix","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34995","ServerKey":"pl181","X":663,"Y":421},{"Bonus":7,"Continent":"K65","ID":34996,"Name":"OSADA","PlayerID":699567608,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34996","ServerKey":"pl181","X":575,"Y":666},{"Bonus":0,"Continent":"K36","ID":34997,"Name":"-20-","PlayerID":699837826,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34997","ServerKey":"pl181","X":632,"Y":375},{"Bonus":0,"Continent":"K56","ID":34998,"Name":"Nowa 42","PlayerID":698702991,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34998","ServerKey":"pl181","X":661,"Y":579},{"Bonus":0,"Continent":"K65","ID":34999,"Name":"0443","PlayerID":698659980,"Points":8054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=34999","ServerKey":"pl181","X":554,"Y":676},{"Bonus":0,"Continent":"K33","ID":35000,"Name":"New Land 09","PlayerID":849064752,"Points":3467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35000","ServerKey":"pl181","X":358,"Y":384},{"Bonus":0,"Continent":"K65","ID":35001,"Name":"2.Fuenlabrada","PlayerID":698215322,"Points":6116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35001","ServerKey":"pl181","X":564,"Y":668},{"Bonus":0,"Continent":"K43","ID":35002,"Name":"A0275","PlayerID":8841266,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35002","ServerKey":"pl181","X":321,"Y":482},{"Bonus":0,"Continent":"K56","ID":35003,"Name":"1kornik83","PlayerID":849098693,"Points":11018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35003","ServerKey":"pl181","X":666,"Y":586},{"Bonus":0,"Continent":"K65","ID":35004,"Name":"zakręcona","PlayerID":8627359,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35004","ServerKey":"pl181","X":574,"Y":606},{"Bonus":0,"Continent":"K43","ID":35005,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":8980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35005","ServerKey":"pl181","X":321,"Y":491},{"Bonus":0,"Continent":"K34","ID":35006,"Name":"Wioska Gum23","PlayerID":849067216,"Points":3982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35006","ServerKey":"pl181","X":402,"Y":349},{"Bonus":0,"Continent":"K34","ID":35007,"Name":"099...tomecz","PlayerID":6920960,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35007","ServerKey":"pl181","X":480,"Y":320},{"Bonus":0,"Continent":"K64","ID":35008,"Name":"#021. Sieeee Rrrrozkręcam","PlayerID":848896948,"Points":5505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35008","ServerKey":"pl181","X":455,"Y":677},{"Bonus":0,"Continent":"K34","ID":35009,"Name":"0161","PlayerID":699431255,"Points":3554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35009","ServerKey":"pl181","X":405,"Y":341},{"Bonus":0,"Continent":"K64","ID":35010,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35010","ServerKey":"pl181","X":421,"Y":667},{"Bonus":0,"Continent":"K43","ID":35011,"Name":"0014 Cytadela","PlayerID":699304554,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35011","ServerKey":"pl181","X":332,"Y":428},{"Bonus":0,"Continent":"K56","ID":35012,"Name":"Didek","PlayerID":849070946,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35012","ServerKey":"pl181","X":671,"Y":565},{"Bonus":0,"Continent":"K55","ID":35013,"Name":"0019 K55 and987 OZDR.","PlayerID":3613413,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35013","ServerKey":"pl181","X":505,"Y":555},{"Bonus":0,"Continent":"K65","ID":35014,"Name":"0494","PlayerID":698659980,"Points":8624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35014","ServerKey":"pl181","X":573,"Y":666},{"Bonus":0,"Continent":"K65","ID":35015,"Name":"066","PlayerID":2293376,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35015","ServerKey":"pl181","X":537,"Y":684},{"Bonus":0,"Continent":"K56","ID":35016,"Name":"*5616* Odwaga","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35016","ServerKey":"pl181","X":675,"Y":556},{"Bonus":0,"Continent":"K53","ID":35018,"Name":"C0064","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35018","ServerKey":"pl181","X":322,"Y":523},{"Bonus":0,"Continent":"K53","ID":35019,"Name":"(001)Urithiru","PlayerID":849098695,"Points":8314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35019","ServerKey":"pl181","X":330,"Y":567},{"Bonus":0,"Continent":"K35","ID":35020,"Name":"Wioska NOWA OBRONNA","PlayerID":849063793,"Points":4089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35020","ServerKey":"pl181","X":590,"Y":343},{"Bonus":0,"Continent":"K46","ID":35021,"Name":"ABE","PlayerID":1086351,"Points":2807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35021","ServerKey":"pl181","X":659,"Y":411},{"Bonus":0,"Continent":"K64","ID":35022,"Name":"#005. Dreadford","PlayerID":848896948,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35022","ServerKey":"pl181","X":452,"Y":681},{"Bonus":0,"Continent":"K66","ID":35023,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35023","ServerKey":"pl181","X":647,"Y":609},{"Bonus":0,"Continent":"K63","ID":35024,"Name":"020 Tak blisko","PlayerID":8268010,"Points":5748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35024","ServerKey":"pl181","X":365,"Y":627},{"Bonus":0,"Continent":"K63","ID":35025,"Name":"Wioska barbarzyƄska","PlayerID":849095992,"Points":4064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35025","ServerKey":"pl181","X":384,"Y":644},{"Bonus":0,"Continent":"K66","ID":35026,"Name":"#036#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35026","ServerKey":"pl181","X":629,"Y":635},{"Bonus":0,"Continent":"K43","ID":35027,"Name":"*171*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35027","ServerKey":"pl181","X":340,"Y":411},{"Bonus":0,"Continent":"K33","ID":35028,"Name":"SƂuĆŒewiec2","PlayerID":849099434,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35028","ServerKey":"pl181","X":374,"Y":364},{"Bonus":0,"Continent":"K33","ID":35029,"Name":"cz Polska","PlayerID":3909522,"Points":4509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35029","ServerKey":"pl181","X":365,"Y":378},{"Bonus":0,"Continent":"K66","ID":35030,"Name":"#061#","PlayerID":692803,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35030","ServerKey":"pl181","X":636,"Y":626},{"Bonus":0,"Continent":"K53","ID":35031,"Name":"000 Plutosea","PlayerID":9280477,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35031","ServerKey":"pl181","X":324,"Y":553},{"Bonus":0,"Continent":"K63","ID":35032,"Name":"Manieczki","PlayerID":849014147,"Points":4848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35032","ServerKey":"pl181","X":354,"Y":611},{"Bonus":0,"Continent":"K43","ID":35033,"Name":"Wioska","PlayerID":2418002,"Points":8331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35033","ServerKey":"pl181","X":330,"Y":423},{"Bonus":0,"Continent":"K43","ID":35034,"Name":"Out of Touch","PlayerID":698962117,"Points":6100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35034","ServerKey":"pl181","X":326,"Y":439},{"Bonus":0,"Continent":"K56","ID":35035,"Name":"[034]","PlayerID":698305474,"Points":8687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35035","ServerKey":"pl181","X":664,"Y":582},{"Bonus":0,"Continent":"K46","ID":35036,"Name":"033 Surowy","PlayerID":849098769,"Points":5389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35036","ServerKey":"pl181","X":681,"Y":452},{"Bonus":0,"Continent":"K46","ID":35037,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35037","ServerKey":"pl181","X":668,"Y":418},{"Bonus":0,"Continent":"K35","ID":35038,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35038","ServerKey":"pl181","X":582,"Y":335},{"Bonus":0,"Continent":"K46","ID":35039,"Name":"**40**","PlayerID":849098782,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35039","ServerKey":"pl181","X":674,"Y":439},{"Bonus":1,"Continent":"K64","ID":35040,"Name":"Tripoli","PlayerID":849089459,"Points":9648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35040","ServerKey":"pl181","X":424,"Y":664},{"Bonus":0,"Continent":"K46","ID":35041,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35041","ServerKey":"pl181","X":683,"Y":499},{"Bonus":0,"Continent":"K56","ID":35042,"Name":"OFF","PlayerID":1563417,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35042","ServerKey":"pl181","X":677,"Y":530},{"Bonus":0,"Continent":"K64","ID":35043,"Name":"Ave Why!","PlayerID":698585370,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35043","ServerKey":"pl181","X":447,"Y":672},{"Bonus":0,"Continent":"K35","ID":35045,"Name":"AAA","PlayerID":1006847,"Points":6992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35045","ServerKey":"pl181","X":538,"Y":318},{"Bonus":0,"Continent":"K66","ID":35046,"Name":"#048#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35046","ServerKey":"pl181","X":631,"Y":633},{"Bonus":0,"Continent":"K53","ID":35047,"Name":"C0108","PlayerID":8841266,"Points":9944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35047","ServerKey":"pl181","X":316,"Y":528},{"Bonus":0,"Continent":"K35","ID":35048,"Name":"J#004","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35048","ServerKey":"pl181","X":574,"Y":331},{"Bonus":0,"Continent":"K43","ID":35049,"Name":"Wioska 14","PlayerID":849075836,"Points":4567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35049","ServerKey":"pl181","X":316,"Y":492},{"Bonus":0,"Continent":"K46","ID":35050,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35050","ServerKey":"pl181","X":679,"Y":485},{"Bonus":0,"Continent":"K53","ID":35051,"Name":"C0032","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35051","ServerKey":"pl181","X":321,"Y":515},{"Bonus":0,"Continent":"K35","ID":35052,"Name":"J#013","PlayerID":2065730,"Points":5695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35052","ServerKey":"pl181","X":574,"Y":329},{"Bonus":2,"Continent":"K43","ID":35053,"Name":"009","PlayerID":7127455,"Points":2893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35053","ServerKey":"pl181","X":320,"Y":476},{"Bonus":0,"Continent":"K65","ID":35054,"Name":"K65","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35054","ServerKey":"pl181","X":561,"Y":669},{"Bonus":0,"Continent":"K34","ID":35055,"Name":"###2","PlayerID":849064614,"Points":5562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35055","ServerKey":"pl181","X":490,"Y":321},{"Bonus":0,"Continent":"K64","ID":35056,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35056","ServerKey":"pl181","X":407,"Y":663},{"Bonus":0,"Continent":"K43","ID":35057,"Name":"003","PlayerID":7127455,"Points":6752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35057","ServerKey":"pl181","X":317,"Y":476},{"Bonus":0,"Continent":"K54","ID":35058,"Name":"KIELBA 131","PlayerID":699342219,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35058","ServerKey":"pl181","X":453,"Y":568},{"Bonus":0,"Continent":"K56","ID":35059,"Name":"$Lakers","PlayerID":699795378,"Points":8546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35059","ServerKey":"pl181","X":685,"Y":506},{"Bonus":0,"Continent":"K53","ID":35060,"Name":"C0020","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35060","ServerKey":"pl181","X":317,"Y":518},{"Bonus":0,"Continent":"K34","ID":35061,"Name":"0159","PlayerID":699431255,"Points":3935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35061","ServerKey":"pl181","X":405,"Y":339},{"Bonus":0,"Continent":"K36","ID":35062,"Name":"K36 - [001] Before Land","PlayerID":699088769,"Points":5134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35062","ServerKey":"pl181","X":626,"Y":370},{"Bonus":0,"Continent":"K63","ID":35063,"Name":"C117","PlayerID":699383279,"Points":6474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35063","ServerKey":"pl181","X":370,"Y":628},{"Bonus":0,"Continent":"K63","ID":35064,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":4865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35064","ServerKey":"pl181","X":354,"Y":610},{"Bonus":0,"Continent":"K34","ID":35065,"Name":"067","PlayerID":2502956,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35065","ServerKey":"pl181","X":450,"Y":319},{"Bonus":0,"Continent":"K65","ID":35066,"Name":"0301","PlayerID":698659980,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35066","ServerKey":"pl181","X":572,"Y":666},{"Bonus":0,"Continent":"K35","ID":35067,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35067","ServerKey":"pl181","X":521,"Y":320},{"Bonus":0,"Continent":"K46","ID":35068,"Name":"056 | PALESTINA","PlayerID":9228039,"Points":5720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35068","ServerKey":"pl181","X":662,"Y":423},{"Bonus":0,"Continent":"K56","ID":35069,"Name":"061","PlayerID":2135129,"Points":6812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35069","ServerKey":"pl181","X":683,"Y":530},{"Bonus":2,"Continent":"K35","ID":35070,"Name":"Lord Lord Franek .#141","PlayerID":698420691,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35070","ServerKey":"pl181","X":514,"Y":319},{"Bonus":0,"Continent":"K34","ID":35071,"Name":"A-044-Heffitto","PlayerID":8419570,"Points":10460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35071","ServerKey":"pl181","X":402,"Y":348},{"Bonus":0,"Continent":"K34","ID":35072,"Name":"0163","PlayerID":699431255,"Points":4405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35072","ServerKey":"pl181","X":402,"Y":340},{"Bonus":0,"Continent":"K36","ID":35073,"Name":"001 Arnhem","PlayerID":849091899,"Points":11742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35073","ServerKey":"pl181","X":607,"Y":361},{"Bonus":0,"Continent":"K33","ID":35074,"Name":"*043*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35074","ServerKey":"pl181","X":351,"Y":398},{"Bonus":0,"Continent":"K66","ID":35075,"Name":"Ć»UBRAWKA 056","PlayerID":33900,"Points":9838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35075","ServerKey":"pl181","X":613,"Y":644},{"Bonus":0,"Continent":"K34","ID":35076,"Name":".achim.","PlayerID":6936607,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35076","ServerKey":"pl181","X":483,"Y":316},{"Bonus":0,"Continent":"K35","ID":35077,"Name":"Elfheim X","PlayerID":699478692,"Points":5469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35077","ServerKey":"pl181","X":598,"Y":344},{"Bonus":0,"Continent":"K65","ID":35078,"Name":"Wioska dzikich narkomanĂłw","PlayerID":699567608,"Points":6578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35078","ServerKey":"pl181","X":576,"Y":664},{"Bonus":0,"Continent":"K65","ID":35079,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35079","ServerKey":"pl181","X":502,"Y":687},{"Bonus":0,"Continent":"K56","ID":35080,"Name":"26k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35080","ServerKey":"pl181","X":666,"Y":567},{"Bonus":2,"Continent":"K56","ID":35081,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35081","ServerKey":"pl181","X":683,"Y":514},{"Bonus":0,"Continent":"K56","ID":35082,"Name":"BRZEG JORDANU | 001","PlayerID":9228039,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35082","ServerKey":"pl181","X":687,"Y":518},{"Bonus":0,"Continent":"K46","ID":35083,"Name":"I098","PlayerID":699722599,"Points":8104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35083","ServerKey":"pl181","X":682,"Y":463},{"Bonus":0,"Continent":"K43","ID":35085,"Name":"*265*","PlayerID":699273451,"Points":2940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35085","ServerKey":"pl181","X":334,"Y":413},{"Bonus":0,"Continent":"K65","ID":35086,"Name":"C001 Liskowa","PlayerID":9023703,"Points":7183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35086","ServerKey":"pl181","X":596,"Y":662},{"Bonus":0,"Continent":"K35","ID":35087,"Name":"Wioska Natka1968_03","PlayerID":699644852,"Points":3273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35087","ServerKey":"pl181","X":523,"Y":321},{"Bonus":0,"Continent":"K64","ID":35088,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35088","ServerKey":"pl181","X":421,"Y":671},{"Bonus":0,"Continent":"K66","ID":35089,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35089","ServerKey":"pl181","X":651,"Y":604},{"Bonus":0,"Continent":"K35","ID":35090,"Name":"UltraInstynkt+","PlayerID":699710633,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35090","ServerKey":"pl181","X":591,"Y":342},{"Bonus":0,"Continent":"K35","ID":35091,"Name":"003 Kalabala","PlayerID":699576407,"Points":7445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35091","ServerKey":"pl181","X":593,"Y":344},{"Bonus":0,"Continent":"K64","ID":35092,"Name":"Ave Why!","PlayerID":698585370,"Points":5958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35092","ServerKey":"pl181","X":450,"Y":672},{"Bonus":0,"Continent":"K63","ID":35093,"Name":"Komornicy 010","PlayerID":699336777,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35093","ServerKey":"pl181","X":351,"Y":608},{"Bonus":0,"Continent":"K65","ID":35094,"Name":"AG10","PlayerID":699876345,"Points":8641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35094","ServerKey":"pl181","X":587,"Y":667},{"Bonus":0,"Continent":"K66","ID":35095,"Name":"#022#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35095","ServerKey":"pl181","X":621,"Y":634},{"Bonus":0,"Continent":"K46","ID":35096,"Name":"I094","PlayerID":699722599,"Points":8295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35096","ServerKey":"pl181","X":674,"Y":448},{"Bonus":0,"Continent":"K53","ID":35098,"Name":"C0159","PlayerID":8841266,"Points":9136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35098","ServerKey":"pl181","X":317,"Y":527},{"Bonus":0,"Continent":"K56","ID":35099,"Name":"B 043","PlayerID":8078914,"Points":7191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35099","ServerKey":"pl181","X":674,"Y":545},{"Bonus":0,"Continent":"K34","ID":35100,"Name":"Winterhome.041","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35100","ServerKey":"pl181","X":495,"Y":313},{"Bonus":0,"Continent":"K63","ID":35101,"Name":"Pobozowisko","PlayerID":699513260,"Points":10955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35101","ServerKey":"pl181","X":395,"Y":605},{"Bonus":0,"Continent":"K56","ID":35102,"Name":"N.C. Bez twarzy","PlayerID":849098693,"Points":7167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35102","ServerKey":"pl181","X":665,"Y":588},{"Bonus":0,"Continent":"K36","ID":35103,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":7392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35103","ServerKey":"pl181","X":651,"Y":388},{"Bonus":0,"Continent":"K64","ID":35104,"Name":"Ave Why!","PlayerID":698585370,"Points":9848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35104","ServerKey":"pl181","X":462,"Y":654},{"Bonus":0,"Continent":"K64","ID":35105,"Name":"R 023","PlayerID":699195358,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35105","ServerKey":"pl181","X":485,"Y":683},{"Bonus":0,"Continent":"K46","ID":35106,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35106","ServerKey":"pl181","X":685,"Y":493},{"Bonus":0,"Continent":"K65","ID":35107,"Name":"0310","PlayerID":698659980,"Points":9162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35107","ServerKey":"pl181","X":559,"Y":679},{"Bonus":0,"Continent":"K46","ID":35108,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35108","ServerKey":"pl181","X":669,"Y":419},{"Bonus":0,"Continent":"K66","ID":35109,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":5007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35109","ServerKey":"pl181","X":652,"Y":606},{"Bonus":0,"Continent":"K54","ID":35110,"Name":"Nowa Nadzieja 8","PlayerID":699383121,"Points":6466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35110","ServerKey":"pl181","X":493,"Y":598},{"Bonus":0,"Continent":"K35","ID":35111,"Name":"011 Kalal","PlayerID":699576407,"Points":4813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35111","ServerKey":"pl181","X":588,"Y":341},{"Bonus":0,"Continent":"K36","ID":35112,"Name":"Wasza nowa ulubiona sąsiadka","PlayerID":9291984,"Points":8224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35112","ServerKey":"pl181","X":628,"Y":372},{"Bonus":0,"Continent":"K53","ID":35113,"Name":"(024)Liafor","PlayerID":849098695,"Points":8566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35113","ServerKey":"pl181","X":331,"Y":576},{"Bonus":0,"Continent":"K66","ID":35114,"Name":"#087#","PlayerID":692803,"Points":9195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35114","ServerKey":"pl181","X":633,"Y":628},{"Bonus":0,"Continent":"K56","ID":35115,"Name":"Wioska Sir Zordon 005","PlayerID":478956,"Points":5364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35115","ServerKey":"pl181","X":663,"Y":577},{"Bonus":0,"Continent":"K35","ID":35116,"Name":"043","PlayerID":849010255,"Points":7112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35116","ServerKey":"pl181","X":594,"Y":340},{"Bonus":0,"Continent":"K64","ID":35117,"Name":"psycha sitting","PlayerID":699736927,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35117","ServerKey":"pl181","X":421,"Y":669},{"Bonus":0,"Continent":"K63","ID":35118,"Name":"A 083","PlayerID":699342219,"Points":6814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35118","ServerKey":"pl181","X":369,"Y":635},{"Bonus":0,"Continent":"K56","ID":35119,"Name":"Nowa 48","PlayerID":698702991,"Points":7773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35119","ServerKey":"pl181","X":665,"Y":572},{"Bonus":0,"Continent":"K53","ID":35120,"Name":"C0016","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35120","ServerKey":"pl181","X":314,"Y":518},{"Bonus":0,"Continent":"K43","ID":35121,"Name":"*180*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35121","ServerKey":"pl181","X":335,"Y":418},{"Bonus":0,"Continent":"K63","ID":35122,"Name":"Szymon9409","PlayerID":699269923,"Points":7807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35122","ServerKey":"pl181","X":397,"Y":655},{"Bonus":0,"Continent":"K44","ID":35123,"Name":"00401 Ppp","PlayerID":3909522,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35123","ServerKey":"pl181","X":436,"Y":415},{"Bonus":0,"Continent":"K63","ID":35124,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35124","ServerKey":"pl181","X":382,"Y":635},{"Bonus":0,"Continent":"K63","ID":35125,"Name":".:014:.","PlayerID":7417116,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35125","ServerKey":"pl181","X":353,"Y":611},{"Bonus":0,"Continent":"K46","ID":35126,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35126","ServerKey":"pl181","X":686,"Y":491},{"Bonus":0,"Continent":"K53","ID":35127,"Name":"-016-","PlayerID":8004076,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35127","ServerKey":"pl181","X":338,"Y":560},{"Bonus":0,"Continent":"K34","ID":35128,"Name":"[009]","PlayerID":849099160,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35128","ServerKey":"pl181","X":471,"Y":319},{"Bonus":0,"Continent":"K35","ID":35129,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35129","ServerKey":"pl181","X":589,"Y":334},{"Bonus":0,"Continent":"K66","ID":35130,"Name":"#031#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35130","ServerKey":"pl181","X":628,"Y":637},{"Bonus":0,"Continent":"K63","ID":35131,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":4325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35131","ServerKey":"pl181","X":362,"Y":628},{"Bonus":0,"Continent":"K53","ID":35132,"Name":"Rzeczka","PlayerID":699265922,"Points":6296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35132","ServerKey":"pl181","X":319,"Y":544},{"Bonus":4,"Continent":"K65","ID":35133,"Name":"070","PlayerID":2293376,"Points":7697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35133","ServerKey":"pl181","X":544,"Y":682},{"Bonus":0,"Continent":"K53","ID":35135,"Name":"Klemensker","PlayerID":849098387,"Points":5756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35135","ServerKey":"pl181","X":328,"Y":560},{"Bonus":0,"Continent":"K33","ID":35136,"Name":"New Land 06","PlayerID":849064752,"Points":3956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35136","ServerKey":"pl181","X":356,"Y":383},{"Bonus":0,"Continent":"K63","ID":35137,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35137","ServerKey":"pl181","X":387,"Y":642},{"Bonus":0,"Continent":"K46","ID":35138,"Name":"I033 Co się staƂo?","PlayerID":699722599,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35138","ServerKey":"pl181","X":682,"Y":462},{"Bonus":0,"Continent":"K66","ID":35139,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35139","ServerKey":"pl181","X":645,"Y":618},{"Bonus":0,"Continent":"K66","ID":35140,"Name":"A013","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35140","ServerKey":"pl181","X":609,"Y":651},{"Bonus":0,"Continent":"K53","ID":35141,"Name":"Danzig","PlayerID":849098387,"Points":7105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35141","ServerKey":"pl181","X":333,"Y":573},{"Bonus":0,"Continent":"K56","ID":35142,"Name":"C 016","PlayerID":8078914,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35142","ServerKey":"pl181","X":690,"Y":526},{"Bonus":0,"Continent":"K53","ID":35143,"Name":"Troć","PlayerID":699265922,"Points":9481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35143","ServerKey":"pl181","X":321,"Y":543},{"Bonus":0,"Continent":"K36","ID":35144,"Name":"=|16|=","PlayerID":9101574,"Points":6248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35144","ServerKey":"pl181","X":646,"Y":383},{"Bonus":0,"Continent":"K35","ID":35146,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":5295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35146","ServerKey":"pl181","X":568,"Y":334},{"Bonus":0,"Continent":"K66","ID":35149,"Name":"Wioska kamilobr","PlayerID":848942587,"Points":3993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35149","ServerKey":"pl181","X":640,"Y":618},{"Bonus":0,"Continent":"K34","ID":35150,"Name":"175...Segadorr","PlayerID":6920960,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35150","ServerKey":"pl181","X":443,"Y":330},{"Bonus":0,"Continent":"K36","ID":35151,"Name":"058.","PlayerID":849094609,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35151","ServerKey":"pl181","X":634,"Y":371},{"Bonus":0,"Continent":"K34","ID":35152,"Name":"Nie bĂłj się odzyskać siebie!","PlayerID":849099965,"Points":4780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35152","ServerKey":"pl181","X":472,"Y":317},{"Bonus":0,"Continent":"K43","ID":35153,"Name":"*253*","PlayerID":699273451,"Points":3031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35153","ServerKey":"pl181","X":341,"Y":405},{"Bonus":0,"Continent":"K33","ID":35154,"Name":"*093*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35154","ServerKey":"pl181","X":359,"Y":381},{"Bonus":0,"Continent":"K43","ID":35155,"Name":"Granat","PlayerID":849098727,"Points":4770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35155","ServerKey":"pl181","X":331,"Y":434},{"Bonus":0,"Continent":"K34","ID":35156,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":5555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35156","ServerKey":"pl181","X":495,"Y":317},{"Bonus":9,"Continent":"K66","ID":35157,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":8905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35157","ServerKey":"pl181","X":647,"Y":611},{"Bonus":0,"Continent":"K64","ID":35158,"Name":"Ave Why!","PlayerID":698585370,"Points":3001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35158","ServerKey":"pl181","X":450,"Y":674},{"Bonus":0,"Continent":"K53","ID":35159,"Name":"--21--","PlayerID":8877156,"Points":7273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35159","ServerKey":"pl181","X":347,"Y":593},{"Bonus":0,"Continent":"K43","ID":35160,"Name":"004","PlayerID":7127455,"Points":7401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35160","ServerKey":"pl181","X":316,"Y":479},{"Bonus":0,"Continent":"K35","ID":35162,"Name":"Wioska","PlayerID":7560474,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35162","ServerKey":"pl181","X":573,"Y":334},{"Bonus":0,"Continent":"K36","ID":35163,"Name":"=|14|=","PlayerID":9101574,"Points":6449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35163","ServerKey":"pl181","X":643,"Y":384},{"Bonus":7,"Continent":"K64","ID":35164,"Name":"Osada koczownikĂłw","PlayerID":699736927,"Points":4879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35164","ServerKey":"pl181","X":406,"Y":656},{"Bonus":0,"Continent":"K54","ID":35165,"Name":"NOT?","PlayerID":9236866,"Points":2101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35165","ServerKey":"pl181","X":459,"Y":551},{"Bonus":0,"Continent":"K64","ID":35166,"Name":"011 Mordor","PlayerID":698585370,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35166","ServerKey":"pl181","X":454,"Y":682},{"Bonus":0,"Continent":"K66","ID":35167,"Name":"ZUBRAWKA 053 Victoria ???","PlayerID":33900,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35167","ServerKey":"pl181","X":617,"Y":640},{"Bonus":0,"Continent":"K35","ID":35168,"Name":"J#020","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35168","ServerKey":"pl181","X":575,"Y":334},{"Bonus":9,"Continent":"K63","ID":35169,"Name":"Zgol","PlayerID":699864013,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35169","ServerKey":"pl181","X":357,"Y":615},{"Bonus":0,"Continent":"K35","ID":35170,"Name":"065- Mroczna Osada","PlayerID":849035905,"Points":11099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35170","ServerKey":"pl181","X":595,"Y":340},{"Bonus":0,"Continent":"K36","ID":35171,"Name":"Klaudek13","PlayerID":849092309,"Points":5897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35171","ServerKey":"pl181","X":630,"Y":365},{"Bonus":0,"Continent":"K43","ID":35172,"Name":"007. Grodzisk Mazowiecki","PlayerID":849098966,"Points":3474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35172","ServerKey":"pl181","X":326,"Y":447},{"Bonus":0,"Continent":"K64","ID":35173,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35173","ServerKey":"pl181","X":436,"Y":676},{"Bonus":0,"Continent":"K35","ID":35174,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35174","ServerKey":"pl181","X":590,"Y":337},{"Bonus":0,"Continent":"K63","ID":35175,"Name":"Wioska barbarzyƄska","PlayerID":849095992,"Points":2140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35175","ServerKey":"pl181","X":384,"Y":648},{"Bonus":0,"Continent":"K64","ID":35176,"Name":"D01 maribast","PlayerID":849037407,"Points":9067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35176","ServerKey":"pl181","X":450,"Y":680},{"Bonus":0,"Continent":"K66","ID":35177,"Name":"Monetkownia","PlayerID":699759128,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35177","ServerKey":"pl181","X":631,"Y":623},{"Bonus":0,"Continent":"K56","ID":35178,"Name":"Wioska Sir Zordon 006","PlayerID":478956,"Points":4386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35178","ServerKey":"pl181","X":663,"Y":580},{"Bonus":0,"Continent":"K46","ID":35179,"Name":"081 KaruTown","PlayerID":9238175,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35179","ServerKey":"pl181","X":661,"Y":419},{"Bonus":0,"Continent":"K66","ID":35180,"Name":"Sony 911","PlayerID":1415009,"Points":7256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35180","ServerKey":"pl181","X":619,"Y":641},{"Bonus":0,"Continent":"K65","ID":35181,"Name":"109","PlayerID":849097799,"Points":7804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35181","ServerKey":"pl181","X":594,"Y":657},{"Bonus":0,"Continent":"K64","ID":35182,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":6214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35182","ServerKey":"pl181","X":403,"Y":652},{"Bonus":0,"Continent":"K63","ID":35183,"Name":"Bogat","PlayerID":699864013,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35183","ServerKey":"pl181","X":357,"Y":619},{"Bonus":0,"Continent":"K53","ID":35184,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35184","ServerKey":"pl181","X":313,"Y":522},{"Bonus":0,"Continent":"K34","ID":35185,"Name":"Winterhome.051","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35185","ServerKey":"pl181","X":496,"Y":313},{"Bonus":0,"Continent":"K45","ID":35186,"Name":"9.7 Oby tak dalej","PlayerID":8444356,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35186","ServerKey":"pl181","X":551,"Y":439},{"Bonus":0,"Continent":"K56","ID":35187,"Name":"Moya","PlayerID":849098693,"Points":9173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35187","ServerKey":"pl181","X":666,"Y":585},{"Bonus":0,"Continent":"K35","ID":35188,"Name":"AAA","PlayerID":1006847,"Points":9775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35188","ServerKey":"pl181","X":542,"Y":318},{"Bonus":0,"Continent":"K43","ID":35189,"Name":"Wioska 11","PlayerID":849075836,"Points":8267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35189","ServerKey":"pl181","X":313,"Y":482},{"Bonus":0,"Continent":"K65","ID":35190,"Name":"0396","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35190","ServerKey":"pl181","X":567,"Y":668},{"Bonus":0,"Continent":"K36","ID":35191,"Name":"016.","PlayerID":699098531,"Points":7236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35191","ServerKey":"pl181","X":640,"Y":378},{"Bonus":0,"Continent":"K43","ID":35192,"Name":"Za mostem","PlayerID":699265922,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35192","ServerKey":"pl181","X":353,"Y":494},{"Bonus":8,"Continent":"K34","ID":35193,"Name":"#0112 tomek791103","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35193","ServerKey":"pl181","X":475,"Y":322},{"Bonus":0,"Continent":"K64","ID":35195,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35195","ServerKey":"pl181","X":444,"Y":676},{"Bonus":4,"Continent":"K65","ID":35196,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35196","ServerKey":"pl181","X":508,"Y":685},{"Bonus":0,"Continent":"K35","ID":35197,"Name":"Vanaheim IV","PlayerID":699478692,"Points":2821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35197","ServerKey":"pl181","X":592,"Y":340},{"Bonus":0,"Continent":"K43","ID":35198,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35198","ServerKey":"pl181","X":316,"Y":468},{"Bonus":0,"Continent":"K46","ID":35199,"Name":"Odprysk KsiÄ™ĆŒyca02","PlayerID":699574408,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35199","ServerKey":"pl181","X":668,"Y":468},{"Bonus":0,"Continent":"K65","ID":35200,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35200","ServerKey":"pl181","X":508,"Y":681},{"Bonus":0,"Continent":"K64","ID":35201,"Name":"Village","PlayerID":849094067,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35201","ServerKey":"pl181","X":491,"Y":688},{"Bonus":0,"Continent":"K43","ID":35202,"Name":"Parole","PlayerID":699595556,"Points":3358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35202","ServerKey":"pl181","X":342,"Y":408},{"Bonus":0,"Continent":"K36","ID":35203,"Name":"XDX","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35203","ServerKey":"pl181","X":610,"Y":350},{"Bonus":0,"Continent":"K53","ID":35204,"Name":"C0085","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35204","ServerKey":"pl181","X":317,"Y":511},{"Bonus":0,"Continent":"K56","ID":35205,"Name":"Didek","PlayerID":849070946,"Points":4020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35205","ServerKey":"pl181","X":668,"Y":573},{"Bonus":0,"Continent":"K36","ID":35206,"Name":"*3604*b Yuma","PlayerID":7973893,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35206","ServerKey":"pl181","X":653,"Y":397},{"Bonus":0,"Continent":"K46","ID":35207,"Name":"Gnojno-Hubix","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35207","ServerKey":"pl181","X":665,"Y":426},{"Bonus":0,"Continent":"K66","ID":35208,"Name":"A058","PlayerID":9023703,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35208","ServerKey":"pl181","X":606,"Y":652},{"Bonus":0,"Continent":"K36","ID":35209,"Name":"*004* WARto pomagać!","PlayerID":849095068,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35209","ServerKey":"pl181","X":601,"Y":343},{"Bonus":0,"Continent":"K33","ID":35210,"Name":"*155*","PlayerID":699273451,"Points":6683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35210","ServerKey":"pl181","X":345,"Y":396},{"Bonus":0,"Continent":"K64","ID":35211,"Name":"psycha sitting","PlayerID":699736927,"Points":9310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35211","ServerKey":"pl181","X":413,"Y":665},{"Bonus":0,"Continent":"K53","ID":35212,"Name":"wysypisko ƛmieci","PlayerID":849012521,"Points":3415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35212","ServerKey":"pl181","X":323,"Y":557},{"Bonus":0,"Continent":"K63","ID":35213,"Name":"0170","PlayerID":7085510,"Points":8617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35213","ServerKey":"pl181","X":377,"Y":640},{"Bonus":0,"Continent":"K46","ID":35214,"Name":"Humnisie","PlayerID":699574408,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35214","ServerKey":"pl181","X":675,"Y":467},{"Bonus":0,"Continent":"K35","ID":35215,"Name":"Wioska XI","PlayerID":698200480,"Points":3793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35215","ServerKey":"pl181","X":581,"Y":339},{"Bonus":0,"Continent":"K43","ID":35216,"Name":"Out of Touch","PlayerID":698962117,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35216","ServerKey":"pl181","X":323,"Y":434},{"Bonus":0,"Continent":"K63","ID":35217,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35217","ServerKey":"pl181","X":390,"Y":646},{"Bonus":0,"Continent":"K64","ID":35218,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35218","ServerKey":"pl181","X":441,"Y":677},{"Bonus":0,"Continent":"K53","ID":35219,"Name":"C0103","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35219","ServerKey":"pl181","X":315,"Y":522},{"Bonus":0,"Continent":"K46","ID":35220,"Name":"I082","PlayerID":699722599,"Points":7822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35220","ServerKey":"pl181","X":676,"Y":446},{"Bonus":0,"Continent":"K35","ID":35221,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35221","ServerKey":"pl181","X":588,"Y":337},{"Bonus":0,"Continent":"K66","ID":35222,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35222","ServerKey":"pl181","X":637,"Y":617},{"Bonus":0,"Continent":"K64","ID":35223,"Name":"Darmowe przeprowadzki","PlayerID":698807570,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35223","ServerKey":"pl181","X":466,"Y":655},{"Bonus":0,"Continent":"K66","ID":35224,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":7982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35224","ServerKey":"pl181","X":620,"Y":637},{"Bonus":5,"Continent":"K46","ID":35225,"Name":"[012] ZasrajdoƂek","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35225","ServerKey":"pl181","X":679,"Y":441},{"Bonus":0,"Continent":"K43","ID":35226,"Name":"Out of Touch","PlayerID":698962117,"Points":8436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35226","ServerKey":"pl181","X":325,"Y":440},{"Bonus":0,"Continent":"K33","ID":35227,"Name":"Szlachcic","PlayerID":698160606,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35227","ServerKey":"pl181","X":381,"Y":360},{"Bonus":0,"Continent":"K63","ID":35228,"Name":"Wroc","PlayerID":699864013,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35228","ServerKey":"pl181","X":357,"Y":617},{"Bonus":0,"Continent":"K56","ID":35229,"Name":"088 Tomek","PlayerID":2135129,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35229","ServerKey":"pl181","X":688,"Y":512},{"Bonus":0,"Continent":"K66","ID":35230,"Name":"Wiocha","PlayerID":849066044,"Points":8949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35230","ServerKey":"pl181","X":649,"Y":615},{"Bonus":0,"Continent":"K43","ID":35231,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35231","ServerKey":"pl181","X":316,"Y":461},{"Bonus":0,"Continent":"K34","ID":35232,"Name":"Winterhome.039","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35232","ServerKey":"pl181","X":497,"Y":312},{"Bonus":0,"Continent":"K56","ID":35233,"Name":"[031]","PlayerID":698305474,"Points":7888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35233","ServerKey":"pl181","X":664,"Y":587},{"Bonus":0,"Continent":"K43","ID":35234,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35234","ServerKey":"pl181","X":324,"Y":458},{"Bonus":0,"Continent":"K65","ID":35235,"Name":"AG17","PlayerID":699876345,"Points":9096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35235","ServerKey":"pl181","X":590,"Y":660},{"Bonus":0,"Continent":"K56","ID":35236,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35236","ServerKey":"pl181","X":682,"Y":500},{"Bonus":0,"Continent":"K64","ID":35237,"Name":"Szale","PlayerID":698585370,"Points":8537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35237","ServerKey":"pl181","X":457,"Y":682},{"Bonus":0,"Continent":"K64","ID":35238,"Name":"tutaj","PlayerID":8966820,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35238","ServerKey":"pl181","X":466,"Y":685},{"Bonus":0,"Continent":"K64","ID":35239,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35239","ServerKey":"pl181","X":430,"Y":674},{"Bonus":0,"Continent":"K35","ID":35240,"Name":"TWIERDZA","PlayerID":849063793,"Points":4166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35240","ServerKey":"pl181","X":591,"Y":345},{"Bonus":0,"Continent":"K64","ID":35241,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35241","ServerKey":"pl181","X":414,"Y":665},{"Bonus":0,"Continent":"K56","ID":35243,"Name":"Wioska 122","PlayerID":848971079,"Points":7917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35243","ServerKey":"pl181","X":680,"Y":526},{"Bonus":0,"Continent":"K64","ID":35244,"Name":"Canopus","PlayerID":849089459,"Points":4189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35244","ServerKey":"pl181","X":406,"Y":657},{"Bonus":0,"Continent":"K53","ID":35245,"Name":"Jelec","PlayerID":699265922,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35245","ServerKey":"pl181","X":325,"Y":554},{"Bonus":0,"Continent":"K36","ID":35246,"Name":"FTS","PlayerID":7340529,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35246","ServerKey":"pl181","X":640,"Y":385},{"Bonus":0,"Continent":"K65","ID":35247,"Name":"Wioska r 5","PlayerID":848915531,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35247","ServerKey":"pl181","X":557,"Y":670},{"Bonus":0,"Continent":"K65","ID":35248,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":6828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35248","ServerKey":"pl181","X":528,"Y":683},{"Bonus":0,"Continent":"K56","ID":35249,"Name":"MaƂe Liniewo","PlayerID":849039310,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35249","ServerKey":"pl181","X":656,"Y":590},{"Bonus":0,"Continent":"K43","ID":35250,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35250","ServerKey":"pl181","X":331,"Y":417},{"Bonus":0,"Continent":"K34","ID":35251,"Name":"070.Stradi","PlayerID":698365960,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35251","ServerKey":"pl181","X":452,"Y":321},{"Bonus":0,"Continent":"K53","ID":35252,"Name":"KocpoƂuch 1","PlayerID":848949597,"Points":9074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35252","ServerKey":"pl181","X":333,"Y":578},{"Bonus":0,"Continent":"K46","ID":35253,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35253","ServerKey":"pl181","X":680,"Y":489},{"Bonus":0,"Continent":"K34","ID":35254,"Name":"196...Segador","PlayerID":6920960,"Points":8384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35254","ServerKey":"pl181","X":458,"Y":320},{"Bonus":0,"Continent":"K64","ID":35255,"Name":"|058| Barba","PlayerID":699393742,"Points":8796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35255","ServerKey":"pl181","X":493,"Y":687},{"Bonus":0,"Continent":"K35","ID":35256,"Name":"A.12 spóƂdzielnia gryzoni","PlayerID":699072129,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35256","ServerKey":"pl181","X":563,"Y":331},{"Bonus":0,"Continent":"K35","ID":35257,"Name":"27. m5 v10","PlayerID":849099696,"Points":7757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35257","ServerKey":"pl181","X":558,"Y":321},{"Bonus":0,"Continent":"K33","ID":35258,"Name":"Szlachcic","PlayerID":3484132,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35258","ServerKey":"pl181","X":394,"Y":349},{"Bonus":2,"Continent":"K36","ID":35259,"Name":"Wyspa 025","PlayerID":699756210,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35259","ServerKey":"pl181","X":632,"Y":377},{"Bonus":0,"Continent":"K65","ID":35261,"Name":"AG06","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35261","ServerKey":"pl181","X":588,"Y":665},{"Bonus":4,"Continent":"K64","ID":35262,"Name":"047 Burdorff","PlayerID":699834004,"Points":8326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35262","ServerKey":"pl181","X":466,"Y":684},{"Bonus":0,"Continent":"K36","ID":35263,"Name":"1011","PlayerID":699150527,"Points":6961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35263","ServerKey":"pl181","X":623,"Y":358},{"Bonus":0,"Continent":"K64","ID":35264,"Name":"|050| Dubrownik","PlayerID":699393742,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35264","ServerKey":"pl181","X":495,"Y":680},{"Bonus":0,"Continent":"K53","ID":35265,"Name":"(028)Alm","PlayerID":849098695,"Points":3502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35265","ServerKey":"pl181","X":328,"Y":557},{"Bonus":0,"Continent":"K66","ID":35267,"Name":"Sony 911","PlayerID":1415009,"Points":10115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35267","ServerKey":"pl181","X":619,"Y":645},{"Bonus":0,"Continent":"K34","ID":35268,"Name":"Szlachcic","PlayerID":698160606,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35268","ServerKey":"pl181","X":401,"Y":346},{"Bonus":0,"Continent":"K65","ID":35269,"Name":"A035","PlayerID":9023703,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35269","ServerKey":"pl181","X":599,"Y":656},{"Bonus":0,"Continent":"K56","ID":35270,"Name":"Didi","PlayerID":849070946,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35270","ServerKey":"pl181","X":666,"Y":577},{"Bonus":1,"Continent":"K35","ID":35271,"Name":"Wioska groove","PlayerID":6118079,"Points":8207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35271","ServerKey":"pl181","X":503,"Y":318},{"Bonus":0,"Continent":"K46","ID":35272,"Name":"[001] Wioska zaklętych","PlayerID":849095068,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35272","ServerKey":"pl181","X":672,"Y":435},{"Bonus":0,"Continent":"K33","ID":35273,"Name":"Szlachcic","PlayerID":698160606,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35273","ServerKey":"pl181","X":387,"Y":360},{"Bonus":2,"Continent":"K34","ID":35274,"Name":"#0289 nie wiem","PlayerID":1238300,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35274","ServerKey":"pl181","X":467,"Y":318},{"Bonus":0,"Continent":"K43","ID":35275,"Name":"-016-","PlayerID":8184383,"Points":8053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35275","ServerKey":"pl181","X":324,"Y":449},{"Bonus":0,"Continent":"K53","ID":35276,"Name":"C0015","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35276","ServerKey":"pl181","X":313,"Y":518},{"Bonus":4,"Continent":"K35","ID":35277,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35277","ServerKey":"pl181","X":592,"Y":345},{"Bonus":0,"Continent":"K43","ID":35278,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35278","ServerKey":"pl181","X":316,"Y":467},{"Bonus":0,"Continent":"K46","ID":35279,"Name":"[024] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35279","ServerKey":"pl181","X":668,"Y":428},{"Bonus":2,"Continent":"K63","ID":35280,"Name":"C118","PlayerID":699383279,"Points":9131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35280","ServerKey":"pl181","X":368,"Y":634},{"Bonus":0,"Continent":"K64","ID":35281,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35281","ServerKey":"pl181","X":430,"Y":671},{"Bonus":0,"Continent":"K34","ID":35282,"Name":"#0294 Don Noobas","PlayerID":1238300,"Points":7772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35282","ServerKey":"pl181","X":466,"Y":317},{"Bonus":0,"Continent":"K45","ID":35283,"Name":"[378] Chorągiewka na wietrze","PlayerID":848985692,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35283","ServerKey":"pl181","X":598,"Y":431},{"Bonus":0,"Continent":"K66","ID":35284,"Name":"A052","PlayerID":9023703,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35284","ServerKey":"pl181","X":615,"Y":649},{"Bonus":0,"Continent":"K46","ID":35285,"Name":"**46**","PlayerID":849098782,"Points":7065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35285","ServerKey":"pl181","X":665,"Y":440},{"Bonus":0,"Continent":"K63","ID":35286,"Name":"004","PlayerID":699083129,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35286","ServerKey":"pl181","X":359,"Y":615},{"Bonus":0,"Continent":"K65","ID":35287,"Name":"Wioska r 13","PlayerID":848915531,"Points":4296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35287","ServerKey":"pl181","X":561,"Y":672},{"Bonus":0,"Continent":"K34","ID":35289,"Name":"???","PlayerID":698489071,"Points":6063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35289","ServerKey":"pl181","X":486,"Y":318},{"Bonus":0,"Continent":"K65","ID":35290,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35290","ServerKey":"pl181","X":574,"Y":672},{"Bonus":0,"Continent":"K34","ID":35291,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35291","ServerKey":"pl181","X":465,"Y":322},{"Bonus":0,"Continent":"K65","ID":35292,"Name":"2.Lleida","PlayerID":698215322,"Points":6613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35292","ServerKey":"pl181","X":566,"Y":668},{"Bonus":0,"Continent":"K43","ID":35293,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35293","ServerKey":"pl181","X":317,"Y":495},{"Bonus":0,"Continent":"K56","ID":35294,"Name":"B 063","PlayerID":8078914,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35294","ServerKey":"pl181","X":678,"Y":533},{"Bonus":0,"Continent":"K34","ID":35295,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35295","ServerKey":"pl181","X":493,"Y":312},{"Bonus":0,"Continent":"K34","ID":35296,"Name":"#0161 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35296","ServerKey":"pl181","X":467,"Y":316},{"Bonus":0,"Continent":"K66","ID":35297,"Name":"~~066~~","PlayerID":7829201,"Points":7421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35297","ServerKey":"pl181","X":626,"Y":640},{"Bonus":0,"Continent":"K65","ID":35298,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35298","ServerKey":"pl181","X":503,"Y":688},{"Bonus":0,"Continent":"K64","ID":35299,"Name":"Nie ma rączek, nie ma wiosek","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35299","ServerKey":"pl181","X":418,"Y":668},{"Bonus":0,"Continent":"K46","ID":35300,"Name":"Wioska Annomymus","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35300","ServerKey":"pl181","X":680,"Y":487},{"Bonus":0,"Continent":"K56","ID":35301,"Name":"Didek","PlayerID":849070946,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35301","ServerKey":"pl181","X":670,"Y":566},{"Bonus":0,"Continent":"K36","ID":35302,"Name":"=|09|=","PlayerID":9101574,"Points":9314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35302","ServerKey":"pl181","X":642,"Y":386},{"Bonus":0,"Continent":"K56","ID":35303,"Name":"Didek","PlayerID":849070946,"Points":10415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35303","ServerKey":"pl181","X":671,"Y":570},{"Bonus":0,"Continent":"K34","ID":35304,"Name":"222","PlayerID":7271812,"Points":7006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35304","ServerKey":"pl181","X":422,"Y":337},{"Bonus":4,"Continent":"K36","ID":35305,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35305","ServerKey":"pl181","X":608,"Y":347},{"Bonus":0,"Continent":"K35","ID":35307,"Name":"AAA","PlayerID":1006847,"Points":7804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35307","ServerKey":"pl181","X":549,"Y":320},{"Bonus":0,"Continent":"K56","ID":35310,"Name":"O66 Jayang","PlayerID":699272880,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35310","ServerKey":"pl181","X":679,"Y":560},{"Bonus":0,"Continent":"K33","ID":35311,"Name":"*119*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35311","ServerKey":"pl181","X":363,"Y":371},{"Bonus":2,"Continent":"K46","ID":35312,"Name":"Quebec","PlayerID":699737356,"Points":8751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35312","ServerKey":"pl181","X":682,"Y":494},{"Bonus":0,"Continent":"K55","ID":35313,"Name":"amator-ada","PlayerID":848915531,"Points":10539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35313","ServerKey":"pl181","X":522,"Y":574},{"Bonus":0,"Continent":"K64","ID":35315,"Name":"Szale","PlayerID":698585370,"Points":8342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35315","ServerKey":"pl181","X":465,"Y":686},{"Bonus":0,"Continent":"K36","ID":35316,"Name":"Racecourse","PlayerID":1018357,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35316","ServerKey":"pl181","X":606,"Y":347},{"Bonus":8,"Continent":"K64","ID":35317,"Name":"Ave Why!","PlayerID":698585370,"Points":8277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35317","ServerKey":"pl181","X":446,"Y":672},{"Bonus":0,"Continent":"K66","ID":35320,"Name":"#178#","PlayerID":692803,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35320","ServerKey":"pl181","X":645,"Y":616},{"Bonus":0,"Continent":"K53","ID":35321,"Name":"C0041","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35321","ServerKey":"pl181","X":319,"Y":517},{"Bonus":0,"Continent":"K65","ID":35322,"Name":"*033","PlayerID":699567608,"Points":9093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35322","ServerKey":"pl181","X":599,"Y":653},{"Bonus":0,"Continent":"K43","ID":35323,"Name":"001 Koniec Burzy","PlayerID":699823490,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35323","ServerKey":"pl181","X":314,"Y":490},{"Bonus":0,"Continent":"K56","ID":35324,"Name":"Wrzoski","PlayerID":848932879,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35324","ServerKey":"pl181","X":681,"Y":551},{"Bonus":0,"Continent":"K64","ID":35325,"Name":"psycha sitting","PlayerID":699736927,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35325","ServerKey":"pl181","X":407,"Y":660},{"Bonus":0,"Continent":"K64","ID":35326,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35326","ServerKey":"pl181","X":419,"Y":665},{"Bonus":0,"Continent":"K36","ID":35327,"Name":"024 * Lady Porto *","PlayerID":699406750,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35327","ServerKey":"pl181","X":647,"Y":392},{"Bonus":0,"Continent":"K53","ID":35328,"Name":"FILIPOWO tata","PlayerID":7183372,"Points":5579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35328","ServerKey":"pl181","X":342,"Y":588},{"Bonus":0,"Continent":"K46","ID":35330,"Name":"I063","PlayerID":699722599,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35330","ServerKey":"pl181","X":684,"Y":470},{"Bonus":0,"Continent":"K63","ID":35331,"Name":"A 034","PlayerID":699342219,"Points":6086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35331","ServerKey":"pl181","X":370,"Y":626},{"Bonus":0,"Continent":"K66","ID":35332,"Name":"032","PlayerID":849097799,"Points":7012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35332","ServerKey":"pl181","X":608,"Y":644},{"Bonus":0,"Continent":"K34","ID":35333,"Name":"140.Stradi","PlayerID":698365960,"Points":1013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35333","ServerKey":"pl181","X":458,"Y":318},{"Bonus":0,"Continent":"K43","ID":35334,"Name":"Westfold.013","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35334","ServerKey":"pl181","X":335,"Y":423},{"Bonus":0,"Continent":"K66","ID":35335,"Name":"A014 Gold","PlayerID":9023703,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35335","ServerKey":"pl181","X":610,"Y":651},{"Bonus":0,"Continent":"K35","ID":35336,"Name":"J#008","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35336","ServerKey":"pl181","X":577,"Y":335},{"Bonus":0,"Continent":"K36","ID":35337,"Name":"Taran 035","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35337","ServerKey":"pl181","X":640,"Y":376},{"Bonus":0,"Continent":"K35","ID":35338,"Name":"J#024","PlayerID":2065730,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35338","ServerKey":"pl181","X":580,"Y":336},{"Bonus":0,"Continent":"K63","ID":35339,"Name":"036 Co za turbo przygƂup...","PlayerID":6354098,"Points":8158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35339","ServerKey":"pl181","X":375,"Y":633},{"Bonus":0,"Continent":"K36","ID":35340,"Name":"Klaudek21","PlayerID":849092309,"Points":4352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35340","ServerKey":"pl181","X":633,"Y":371},{"Bonus":0,"Continent":"K66","ID":35341,"Name":"Ć»UBR .::.Adaczu/02","PlayerID":33900,"Points":6069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35341","ServerKey":"pl181","X":618,"Y":646},{"Bonus":1,"Continent":"K66","ID":35342,"Name":"Ć»UBR PSYCHIATRYK 006","PlayerID":33900,"Points":6957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35342","ServerKey":"pl181","X":613,"Y":646},{"Bonus":0,"Continent":"K64","ID":35343,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35343","ServerKey":"pl181","X":445,"Y":677},{"Bonus":0,"Continent":"K56","ID":35344,"Name":"063","PlayerID":2135129,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35344","ServerKey":"pl181","X":686,"Y":514},{"Bonus":0,"Continent":"K65","ID":35345,"Name":"|060| Ciapciarapcia","PlayerID":699393742,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35345","ServerKey":"pl181","X":503,"Y":680},{"Bonus":0,"Continent":"K64","ID":35346,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35346","ServerKey":"pl181","X":428,"Y":673},{"Bonus":0,"Continent":"K53","ID":35347,"Name":"-021-","PlayerID":8710047,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35347","ServerKey":"pl181","X":332,"Y":585},{"Bonus":0,"Continent":"K43","ID":35348,"Name":"Out of Touch","PlayerID":698962117,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35348","ServerKey":"pl181","X":327,"Y":430},{"Bonus":0,"Continent":"K63","ID":35349,"Name":"023","PlayerID":699083129,"Points":8437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35349","ServerKey":"pl181","X":354,"Y":607},{"Bonus":0,"Continent":"K53","ID":35350,"Name":"Taran","PlayerID":6180190,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35350","ServerKey":"pl181","X":337,"Y":576},{"Bonus":0,"Continent":"K45","ID":35351,"Name":"080 MigdaƂ","PlayerID":7092442,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35351","ServerKey":"pl181","X":544,"Y":466},{"Bonus":0,"Continent":"K65","ID":35352,"Name":"018 serniczek od babci","PlayerID":8954402,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35352","ServerKey":"pl181","X":509,"Y":671},{"Bonus":8,"Continent":"K64","ID":35353,"Name":"D.001","PlayerID":849088243,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35353","ServerKey":"pl181","X":400,"Y":652},{"Bonus":0,"Continent":"K46","ID":35354,"Name":"001 Cicha 6","PlayerID":849098769,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35354","ServerKey":"pl181","X":680,"Y":452},{"Bonus":0,"Continent":"K33","ID":35356,"Name":"*224*","PlayerID":699273451,"Points":6630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35356","ServerKey":"pl181","X":372,"Y":370},{"Bonus":0,"Continent":"K53","ID":35357,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35357","ServerKey":"pl181","X":354,"Y":524},{"Bonus":0,"Continent":"K34","ID":35358,"Name":"067.Stradi","PlayerID":698365960,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35358","ServerKey":"pl181","X":450,"Y":323},{"Bonus":0,"Continent":"K36","ID":35359,"Name":"1003","PlayerID":699150527,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35359","ServerKey":"pl181","X":620,"Y":362},{"Bonus":0,"Continent":"K36","ID":35360,"Name":"WhoWillBeNext","PlayerID":1990750,"Points":5234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35360","ServerKey":"pl181","X":601,"Y":344},{"Bonus":0,"Continent":"K33","ID":35361,"Name":"Szlachcic","PlayerID":3484132,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35361","ServerKey":"pl181","X":394,"Y":344},{"Bonus":0,"Continent":"K34","ID":35362,"Name":"A-047-Heffitto","PlayerID":8419570,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35362","ServerKey":"pl181","X":405,"Y":347},{"Bonus":0,"Continent":"K53","ID":35363,"Name":"Devano2","PlayerID":7183372,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35363","ServerKey":"pl181","X":336,"Y":591},{"Bonus":0,"Continent":"K64","ID":35364,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35364","ServerKey":"pl181","X":455,"Y":654},{"Bonus":2,"Continent":"K65","ID":35365,"Name":"0017","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35365","ServerKey":"pl181","X":557,"Y":674},{"Bonus":0,"Continent":"K66","ID":35366,"Name":"#060#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35366","ServerKey":"pl181","X":632,"Y":629},{"Bonus":0,"Continent":"K65","ID":35367,"Name":"- 262 - SS","PlayerID":849018239,"Points":8533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35367","ServerKey":"pl181","X":537,"Y":677},{"Bonus":0,"Continent":"K34","ID":35368,"Name":"BEMA","PlayerID":8123790,"Points":890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35368","ServerKey":"pl181","X":404,"Y":344},{"Bonus":0,"Continent":"K65","ID":35369,"Name":"stry","PlayerID":6121024,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35369","ServerKey":"pl181","X":560,"Y":678},{"Bonus":0,"Continent":"K56","ID":35370,"Name":"Niemodlin","PlayerID":848932879,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35370","ServerKey":"pl181","X":674,"Y":551},{"Bonus":0,"Continent":"K34","ID":35371,"Name":"WUUDLI","PlayerID":8123790,"Points":2274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35371","ServerKey":"pl181","X":403,"Y":343},{"Bonus":0,"Continent":"K64","ID":35372,"Name":"New World","PlayerID":698152377,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35372","ServerKey":"pl181","X":468,"Y":683},{"Bonus":0,"Continent":"K33","ID":35373,"Name":"Szlachcic","PlayerID":3484132,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35373","ServerKey":"pl181","X":395,"Y":343},{"Bonus":0,"Continent":"K56","ID":35374,"Name":"Nowa 38","PlayerID":698702991,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35374","ServerKey":"pl181","X":666,"Y":571},{"Bonus":0,"Continent":"K36","ID":35375,"Name":"Wioska barbarzyƄska DóƂ","PlayerID":699857387,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35375","ServerKey":"pl181","X":627,"Y":362},{"Bonus":0,"Continent":"K36","ID":35377,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35377","ServerKey":"pl181","X":640,"Y":387},{"Bonus":1,"Continent":"K34","ID":35378,"Name":"Winterhome.036","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35378","ServerKey":"pl181","X":491,"Y":313},{"Bonus":0,"Continent":"K46","ID":35379,"Name":"Jaaa","PlayerID":698635863,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35379","ServerKey":"pl181","X":603,"Y":438},{"Bonus":0,"Continent":"K43","ID":35380,"Name":"Out of Touch","PlayerID":698962117,"Points":5020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35380","ServerKey":"pl181","X":323,"Y":440},{"Bonus":0,"Continent":"K34","ID":35381,"Name":"205","PlayerID":7271812,"Points":7295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35381","ServerKey":"pl181","X":426,"Y":329},{"Bonus":0,"Continent":"K63","ID":35382,"Name":"A 089","PlayerID":699342219,"Points":3813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35382","ServerKey":"pl181","X":367,"Y":630},{"Bonus":0,"Continent":"K34","ID":35383,"Name":"Wioska barbarzyƄska","PlayerID":6936607,"Points":3024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35383","ServerKey":"pl181","X":476,"Y":314},{"Bonus":0,"Continent":"K35","ID":35384,"Name":"Lord Lord Franek .#144","PlayerID":698420691,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35384","ServerKey":"pl181","X":515,"Y":318},{"Bonus":8,"Continent":"K64","ID":35385,"Name":"Aleksandria","PlayerID":849089459,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35385","ServerKey":"pl181","X":405,"Y":658},{"Bonus":0,"Continent":"K33","ID":35386,"Name":"Szlachcic","PlayerID":698160606,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35386","ServerKey":"pl181","X":382,"Y":352},{"Bonus":0,"Continent":"K53","ID":35387,"Name":"A8.","PlayerID":849095482,"Points":5607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35387","ServerKey":"pl181","X":320,"Y":551},{"Bonus":0,"Continent":"K43","ID":35388,"Name":"Barbababcia","PlayerID":849098299,"Points":2568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35388","ServerKey":"pl181","X":342,"Y":410},{"Bonus":5,"Continent":"K53","ID":35389,"Name":"Kraszew 3","PlayerID":7183372,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35389","ServerKey":"pl181","X":339,"Y":593},{"Bonus":0,"Continent":"K36","ID":35390,"Name":"ADEN","PlayerID":698588535,"Points":7404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35390","ServerKey":"pl181","X":611,"Y":349},{"Bonus":5,"Continent":"K65","ID":35391,"Name":"Osada koczownikĂłw","PlayerID":699567608,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35391","ServerKey":"pl181","X":583,"Y":669},{"Bonus":0,"Continent":"K64","ID":35392,"Name":"014","PlayerID":8827094,"Points":9238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35392","ServerKey":"pl181","X":472,"Y":679},{"Bonus":0,"Continent":"K34","ID":35393,"Name":"020","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35393","ServerKey":"pl181","X":456,"Y":318},{"Bonus":0,"Continent":"K53","ID":35394,"Name":"000 Plutosea","PlayerID":9280477,"Points":10434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35394","ServerKey":"pl181","X":323,"Y":554},{"Bonus":0,"Continent":"K33","ID":35395,"Name":"Szlachcic","PlayerID":698160606,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35395","ServerKey":"pl181","X":379,"Y":360},{"Bonus":5,"Continent":"K64","ID":35396,"Name":"#001. KoƄ TrojaƄski","PlayerID":848896948,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35396","ServerKey":"pl181","X":443,"Y":679},{"Bonus":0,"Continent":"K53","ID":35397,"Name":"okon","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35397","ServerKey":"pl181","X":326,"Y":544},{"Bonus":0,"Continent":"K53","ID":35398,"Name":"000 Plutosea","PlayerID":9280477,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35398","ServerKey":"pl181","X":321,"Y":558},{"Bonus":0,"Continent":"K56","ID":35399,"Name":"[029]","PlayerID":698305474,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35399","ServerKey":"pl181","X":664,"Y":586},{"Bonus":0,"Continent":"K56","ID":35400,"Name":"O38 Midyat","PlayerID":699272880,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35400","ServerKey":"pl181","X":678,"Y":543},{"Bonus":0,"Continent":"K63","ID":35401,"Name":"1v9 machine","PlayerID":699697558,"Points":9178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35401","ServerKey":"pl181","X":385,"Y":645},{"Bonus":0,"Continent":"K34","ID":35402,"Name":"058.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35402","ServerKey":"pl181","X":453,"Y":318},{"Bonus":0,"Continent":"K56","ID":35403,"Name":"Chróƛcina Opolska","PlayerID":848932879,"Points":10477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35403","ServerKey":"pl181","X":679,"Y":558},{"Bonus":0,"Continent":"K46","ID":35404,"Name":"*4692*a Ć»ycie","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35404","ServerKey":"pl181","X":661,"Y":403},{"Bonus":0,"Continent":"K64","ID":35405,"Name":"033.xxx","PlayerID":699781762,"Points":4128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35405","ServerKey":"pl181","X":497,"Y":682},{"Bonus":0,"Continent":"K65","ID":35406,"Name":"Auu 09","PlayerID":529552,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35406","ServerKey":"pl181","X":569,"Y":672},{"Bonus":0,"Continent":"K43","ID":35407,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35407","ServerKey":"pl181","X":323,"Y":462},{"Bonus":0,"Continent":"K43","ID":35408,"Name":"10. Maribor","PlayerID":848910122,"Points":489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35408","ServerKey":"pl181","X":331,"Y":458},{"Bonus":0,"Continent":"K64","ID":35409,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35409","ServerKey":"pl181","X":438,"Y":676},{"Bonus":0,"Continent":"K34","ID":35410,"Name":"fff","PlayerID":698239813,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35410","ServerKey":"pl181","X":489,"Y":317},{"Bonus":0,"Continent":"K65","ID":35411,"Name":"2.Terrassa","PlayerID":698215322,"Points":5621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35411","ServerKey":"pl181","X":562,"Y":677},{"Bonus":0,"Continent":"K33","ID":35412,"Name":"*121*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35412","ServerKey":"pl181","X":365,"Y":373},{"Bonus":0,"Continent":"K46","ID":35413,"Name":"*4691*a Jak jest","PlayerID":7973893,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35413","ServerKey":"pl181","X":662,"Y":403},{"Bonus":0,"Continent":"K34","ID":35414,"Name":"#0225 deleted","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35414","ServerKey":"pl181","X":491,"Y":314},{"Bonus":0,"Continent":"K64","ID":35415,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35415","ServerKey":"pl181","X":446,"Y":676},{"Bonus":0,"Continent":"K55","ID":35416,"Name":"PYRLANDIA 008","PlayerID":33900,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35416","ServerKey":"pl181","X":568,"Y":596},{"Bonus":0,"Continent":"K43","ID":35417,"Name":"Out of Touch","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35417","ServerKey":"pl181","X":327,"Y":428},{"Bonus":0,"Continent":"K64","ID":35418,"Name":"009","PlayerID":848953066,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35418","ServerKey":"pl181","X":485,"Y":656},{"Bonus":0,"Continent":"K65","ID":35419,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35419","ServerKey":"pl181","X":521,"Y":686},{"Bonus":0,"Continent":"K53","ID":35420,"Name":"Szlachcic","PlayerID":698388578,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35420","ServerKey":"pl181","X":318,"Y":536},{"Bonus":2,"Continent":"K63","ID":35421,"Name":"D.037","PlayerID":849088243,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35421","ServerKey":"pl181","X":394,"Y":647},{"Bonus":0,"Continent":"K56","ID":35422,"Name":"Wioska Sir Zordon 008","PlayerID":478956,"Points":3788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35422","ServerKey":"pl181","X":665,"Y":577},{"Bonus":0,"Continent":"K56","ID":35423,"Name":"C13","PlayerID":848995478,"Points":2811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35423","ServerKey":"pl181","X":682,"Y":541},{"Bonus":0,"Continent":"K66","ID":35424,"Name":"A017","PlayerID":9023703,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35424","ServerKey":"pl181","X":613,"Y":651},{"Bonus":0,"Continent":"K66","ID":35425,"Name":"039 Osilon","PlayerID":8337151,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35425","ServerKey":"pl181","X":658,"Y":600},{"Bonus":0,"Continent":"K65","ID":35426,"Name":"PoƂudnie.001","PlayerID":873575,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35426","ServerKey":"pl181","X":555,"Y":679},{"Bonus":0,"Continent":"K53","ID":35427,"Name":"002 Wioska barbarzyƄska","PlayerID":849012521,"Points":2958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35427","ServerKey":"pl181","X":326,"Y":569},{"Bonus":0,"Continent":"K65","ID":35428,"Name":"AG14","PlayerID":699876345,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35428","ServerKey":"pl181","X":590,"Y":661},{"Bonus":0,"Continent":"K56","ID":35429,"Name":"WƂadcy PóƂnocy 03","PlayerID":699379895,"Points":5550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35429","ServerKey":"pl181","X":685,"Y":504},{"Bonus":0,"Continent":"K55","ID":35430,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35430","ServerKey":"pl181","X":594,"Y":572},{"Bonus":0,"Continent":"K63","ID":35432,"Name":"D.009","PlayerID":849088243,"Points":8434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35432","ServerKey":"pl181","X":394,"Y":656},{"Bonus":0,"Continent":"K63","ID":35433,"Name":"D.002","PlayerID":849088243,"Points":9119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35433","ServerKey":"pl181","X":399,"Y":651},{"Bonus":0,"Continent":"K35","ID":35434,"Name":"001 Firelink","PlayerID":1990750,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35434","ServerKey":"pl181","X":519,"Y":316},{"Bonus":0,"Continent":"K34","ID":35435,"Name":"076.Stradi","PlayerID":698365960,"Points":10451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35435","ServerKey":"pl181","X":446,"Y":327},{"Bonus":0,"Continent":"K55","ID":35437,"Name":"Szlachcic 008","PlayerID":758104,"Points":8275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35437","ServerKey":"pl181","X":559,"Y":535},{"Bonus":0,"Continent":"K56","ID":35438,"Name":"017 Barba","PlayerID":2135129,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35438","ServerKey":"pl181","X":683,"Y":525},{"Bonus":0,"Continent":"K35","ID":35439,"Name":"013 Yharnam","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35439","ServerKey":"pl181","X":516,"Y":316},{"Bonus":0,"Continent":"K43","ID":35440,"Name":"*156*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35440","ServerKey":"pl181","X":341,"Y":400},{"Bonus":0,"Continent":"K43","ID":35441,"Name":"*165*","PlayerID":699273451,"Points":6726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35441","ServerKey":"pl181","X":337,"Y":409},{"Bonus":0,"Continent":"K36","ID":35443,"Name":"Szlachcic;taran","PlayerID":1990750,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35443","ServerKey":"pl181","X":615,"Y":359},{"Bonus":3,"Continent":"K34","ID":35444,"Name":"Osada koczownikĂłw","PlayerID":699191464,"Points":6194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35444","ServerKey":"pl181","X":464,"Y":323},{"Bonus":0,"Continent":"K65","ID":35445,"Name":"0450","PlayerID":698659980,"Points":7709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35445","ServerKey":"pl181","X":553,"Y":680},{"Bonus":0,"Continent":"K43","ID":35446,"Name":"FENDI","PlayerID":699794765,"Points":2792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35446","ServerKey":"pl181","X":318,"Y":464},{"Bonus":0,"Continent":"K35","ID":35447,"Name":"ADEN","PlayerID":698588535,"Points":9078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35447","ServerKey":"pl181","X":599,"Y":345},{"Bonus":0,"Continent":"K65","ID":35448,"Name":"teraz to juz...","PlayerID":699567608,"Points":8928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35448","ServerKey":"pl181","X":584,"Y":668},{"Bonus":0,"Continent":"K34","ID":35449,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":2835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35449","ServerKey":"pl181","X":401,"Y":339},{"Bonus":0,"Continent":"K33","ID":35450,"Name":"*145*","PlayerID":699273451,"Points":6316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35450","ServerKey":"pl181","X":344,"Y":396},{"Bonus":4,"Continent":"K35","ID":35451,"Name":"Winterhome.001","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35451","ServerKey":"pl181","X":502,"Y":312},{"Bonus":0,"Continent":"K43","ID":35452,"Name":"ƚrodek..","PlayerID":1746216,"Points":6055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35452","ServerKey":"pl181","X":349,"Y":443},{"Bonus":0,"Continent":"K64","ID":35453,"Name":"Ave Why!","PlayerID":698585370,"Points":4320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35453","ServerKey":"pl181","X":452,"Y":675},{"Bonus":0,"Continent":"K63","ID":35454,"Name":"A 079","PlayerID":699269923,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35454","ServerKey":"pl181","X":372,"Y":636},{"Bonus":0,"Continent":"K53","ID":35455,"Name":"C0050","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35455","ServerKey":"pl181","X":315,"Y":523},{"Bonus":2,"Continent":"K65","ID":35456,"Name":"AG13","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35456","ServerKey":"pl181","X":588,"Y":663},{"Bonus":0,"Continent":"K63","ID":35457,"Name":"Komornicy 017","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35457","ServerKey":"pl181","X":351,"Y":613},{"Bonus":0,"Continent":"K66","ID":35458,"Name":"#076#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35458","ServerKey":"pl181","X":631,"Y":635},{"Bonus":0,"Continent":"K43","ID":35459,"Name":"*262*","PlayerID":699273451,"Points":2907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35459","ServerKey":"pl181","X":343,"Y":406},{"Bonus":0,"Continent":"K36","ID":35460,"Name":"069","PlayerID":849010255,"Points":5165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35460","ServerKey":"pl181","X":619,"Y":355},{"Bonus":0,"Continent":"K43","ID":35461,"Name":"Westfold.006","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35461","ServerKey":"pl181","X":336,"Y":425},{"Bonus":0,"Continent":"K64","ID":35462,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35462","ServerKey":"pl181","X":480,"Y":681},{"Bonus":0,"Continent":"K34","ID":35463,"Name":"078.Stradi","PlayerID":698365960,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35463","ServerKey":"pl181","X":444,"Y":328},{"Bonus":0,"Continent":"K56","ID":35464,"Name":"PaczkĂłw","PlayerID":848932879,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35464","ServerKey":"pl181","X":677,"Y":556},{"Bonus":0,"Continent":"K43","ID":35465,"Name":"wioska murzyna","PlayerID":8048374,"Points":8941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35465","ServerKey":"pl181","X":314,"Y":480},{"Bonus":0,"Continent":"K33","ID":35466,"Name":"Magkw","PlayerID":849084920,"Points":2404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35466","ServerKey":"pl181","X":363,"Y":384},{"Bonus":7,"Continent":"K43","ID":35467,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35467","ServerKey":"pl181","X":318,"Y":493},{"Bonus":0,"Continent":"K33","ID":35468,"Name":"*083*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35468","ServerKey":"pl181","X":358,"Y":381},{"Bonus":0,"Continent":"K56","ID":35469,"Name":"007 Braveheart-","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35469","ServerKey":"pl181","X":660,"Y":598},{"Bonus":0,"Continent":"K64","ID":35470,"Name":"Ave Why!","PlayerID":698585370,"Points":6261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35470","ServerKey":"pl181","X":454,"Y":681},{"Bonus":0,"Continent":"K66","ID":35471,"Name":"Wioska Michal1888000","PlayerID":8224678,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35471","ServerKey":"pl181","X":650,"Y":611},{"Bonus":0,"Continent":"K64","ID":35472,"Name":"|054| Trogir","PlayerID":699393742,"Points":8932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35472","ServerKey":"pl181","X":497,"Y":689},{"Bonus":8,"Continent":"K36","ID":35473,"Name":"Rotterdam","PlayerID":698290577,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35473","ServerKey":"pl181","X":608,"Y":354},{"Bonus":0,"Continent":"K64","ID":35474,"Name":"005","PlayerID":698650301,"Points":8157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35474","ServerKey":"pl181","X":474,"Y":656},{"Bonus":0,"Continent":"K66","ID":35475,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":4115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35475","ServerKey":"pl181","X":650,"Y":605},{"Bonus":0,"Continent":"K65","ID":35476,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35476","ServerKey":"pl181","X":598,"Y":655},{"Bonus":2,"Continent":"K65","ID":35477,"Name":".Osada koczownikĂłw","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35477","ServerKey":"pl181","X":507,"Y":681},{"Bonus":0,"Continent":"K53","ID":35478,"Name":"Strzelba potokowa","PlayerID":699265922,"Points":4088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35478","ServerKey":"pl181","X":321,"Y":552},{"Bonus":0,"Continent":"K63","ID":35479,"Name":"{56} Potęgowo","PlayerID":849096945,"Points":9418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35479","ServerKey":"pl181","X":382,"Y":646},{"Bonus":0,"Continent":"K34","ID":35480,"Name":"Turbo","PlayerID":699854830,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35480","ServerKey":"pl181","X":409,"Y":345},{"Bonus":0,"Continent":"K66","ID":35481,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35481","ServerKey":"pl181","X":638,"Y":623},{"Bonus":0,"Continent":"K65","ID":35482,"Name":"140 invidia","PlayerID":849093426,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35482","ServerKey":"pl181","X":521,"Y":680},{"Bonus":0,"Continent":"K35","ID":35483,"Name":"Wioska barbarzyƄska","PlayerID":8400180,"Points":8562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35483","ServerKey":"pl181","X":513,"Y":316},{"Bonus":0,"Continent":"K33","ID":35484,"Name":"004. Konstantynopol","PlayerID":849098299,"Points":6666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35484","ServerKey":"pl181","X":341,"Y":399},{"Bonus":0,"Continent":"K64","ID":35485,"Name":"#004. Good Night!","PlayerID":848896948,"Points":9399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35485","ServerKey":"pl181","X":445,"Y":676},{"Bonus":0,"Continent":"K34","ID":35486,"Name":"#0120 tomek791103","PlayerID":1238300,"Points":7100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35486","ServerKey":"pl181","X":476,"Y":321},{"Bonus":0,"Continent":"K53","ID":35487,"Name":"C0150","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35487","ServerKey":"pl181","X":319,"Y":528},{"Bonus":0,"Continent":"K65","ID":35488,"Name":"034","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35488","ServerKey":"pl181","X":535,"Y":686},{"Bonus":0,"Continent":"K66","ID":35489,"Name":"Monetkownia","PlayerID":699759128,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35489","ServerKey":"pl181","X":632,"Y":623},{"Bonus":0,"Continent":"K56","ID":35490,"Name":"OFF","PlayerID":1563417,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35490","ServerKey":"pl181","X":685,"Y":531},{"Bonus":0,"Continent":"K56","ID":35491,"Name":"C14","PlayerID":848995478,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35491","ServerKey":"pl181","X":684,"Y":536},{"Bonus":0,"Continent":"K46","ID":35492,"Name":"I067","PlayerID":699722599,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35492","ServerKey":"pl181","X":684,"Y":467},{"Bonus":0,"Continent":"K63","ID":35493,"Name":"Szymon9406","PlayerID":699269923,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35493","ServerKey":"pl181","X":390,"Y":651},{"Bonus":0,"Continent":"K43","ID":35494,"Name":"New Land 26","PlayerID":849064752,"Points":3000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35494","ServerKey":"pl181","X":344,"Y":401},{"Bonus":0,"Continent":"K64","ID":35495,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35495","ServerKey":"pl181","X":445,"Y":681},{"Bonus":0,"Continent":"K35","ID":35496,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35496","ServerKey":"pl181","X":519,"Y":320},{"Bonus":0,"Continent":"K63","ID":35497,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35497","ServerKey":"pl181","X":380,"Y":636},{"Bonus":0,"Continent":"K53","ID":35498,"Name":"Mordor3","PlayerID":848978903,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35498","ServerKey":"pl181","X":317,"Y":541},{"Bonus":0,"Continent":"K36","ID":35499,"Name":"015 Hohoho","PlayerID":1018357,"Points":5062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35499","ServerKey":"pl181","X":605,"Y":344},{"Bonus":0,"Continent":"K53","ID":35500,"Name":"-012-","PlayerID":7183372,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35500","ServerKey":"pl181","X":334,"Y":590},{"Bonus":0,"Continent":"K64","ID":35501,"Name":"New World","PlayerID":698152377,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35501","ServerKey":"pl181","X":447,"Y":678},{"Bonus":0,"Continent":"K63","ID":35502,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35502","ServerKey":"pl181","X":386,"Y":643},{"Bonus":0,"Continent":"K53","ID":35503,"Name":"Zalew","PlayerID":699265922,"Points":4020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35503","ServerKey":"pl181","X":323,"Y":555},{"Bonus":5,"Continent":"K66","ID":35504,"Name":"#095#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35504","ServerKey":"pl181","X":649,"Y":609},{"Bonus":0,"Continent":"K33","ID":35505,"Name":"New Land 07","PlayerID":849064752,"Points":3736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35505","ServerKey":"pl181","X":359,"Y":385},{"Bonus":0,"Continent":"K34","ID":35506,"Name":"072.Stradi","PlayerID":698365960,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35506","ServerKey":"pl181","X":450,"Y":321},{"Bonus":0,"Continent":"K43","ID":35507,"Name":"*267*","PlayerID":699273451,"Points":2423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35507","ServerKey":"pl181","X":336,"Y":412},{"Bonus":0,"Continent":"K35","ID":35508,"Name":"Wioska Natka1968_04","PlayerID":699644852,"Points":1820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35508","ServerKey":"pl181","X":526,"Y":321},{"Bonus":0,"Continent":"K63","ID":35509,"Name":"A 087","PlayerID":6948793,"Points":5952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35509","ServerKey":"pl181","X":371,"Y":636},{"Bonus":0,"Continent":"K64","ID":35510,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35510","ServerKey":"pl181","X":435,"Y":676},{"Bonus":0,"Continent":"K53","ID":35511,"Name":"030.","PlayerID":3475079,"Points":2440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35511","ServerKey":"pl181","X":330,"Y":583},{"Bonus":0,"Continent":"K64","ID":35512,"Name":"B01","PlayerID":698652014,"Points":6258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35512","ServerKey":"pl181","X":471,"Y":679},{"Bonus":0,"Continent":"K36","ID":35513,"Name":"Taran 025","PlayerID":699098531,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35513","ServerKey":"pl181","X":637,"Y":377},{"Bonus":0,"Continent":"K33","ID":35514,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35514","ServerKey":"pl181","X":369,"Y":367},{"Bonus":0,"Continent":"K53","ID":35515,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35515","ServerKey":"pl181","X":317,"Y":547},{"Bonus":0,"Continent":"K33","ID":35516,"Name":"Szlachcic","PlayerID":698160606,"Points":10315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35516","ServerKey":"pl181","X":377,"Y":359},{"Bonus":0,"Continent":"K36","ID":35517,"Name":"013art","PlayerID":1990750,"Points":10408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35517","ServerKey":"pl181","X":603,"Y":345},{"Bonus":0,"Continent":"K34","ID":35518,"Name":"212","PlayerID":7271812,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35518","ServerKey":"pl181","X":431,"Y":330},{"Bonus":0,"Continent":"K33","ID":35519,"Name":"Szlachcic","PlayerID":698160606,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35519","ServerKey":"pl181","X":385,"Y":354},{"Bonus":0,"Continent":"K35","ID":35520,"Name":"-0011-","PlayerID":2972329,"Points":8457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35520","ServerKey":"pl181","X":543,"Y":325},{"Bonus":0,"Continent":"K43","ID":35521,"Name":"Out of Touch","PlayerID":698962117,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35521","ServerKey":"pl181","X":327,"Y":435},{"Bonus":0,"Continent":"K64","ID":35522,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35522","ServerKey":"pl181","X":469,"Y":686},{"Bonus":0,"Continent":"K65","ID":35523,"Name":"Muchomor *004*","PlayerID":606407,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35523","ServerKey":"pl181","X":513,"Y":687},{"Bonus":0,"Continent":"K46","ID":35524,"Name":"Wioska 016","PlayerID":1715091,"Points":7715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35524","ServerKey":"pl181","X":661,"Y":405},{"Bonus":0,"Continent":"K36","ID":35525,"Name":"ADEN","PlayerID":698588535,"Points":7242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35525","ServerKey":"pl181","X":606,"Y":353},{"Bonus":0,"Continent":"K53","ID":35526,"Name":"Taran","PlayerID":6180190,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35526","ServerKey":"pl181","X":336,"Y":575},{"Bonus":3,"Continent":"K35","ID":35527,"Name":"019. Kochanka","PlayerID":699072129,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35527","ServerKey":"pl181","X":562,"Y":324},{"Bonus":0,"Continent":"K66","ID":35528,"Name":"A048","PlayerID":9023703,"Points":8423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35528","ServerKey":"pl181","X":614,"Y":646},{"Bonus":0,"Continent":"K53","ID":35529,"Name":"C0155","PlayerID":8841266,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35529","ServerKey":"pl181","X":318,"Y":527},{"Bonus":8,"Continent":"K65","ID":35530,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35530","ServerKey":"pl181","X":512,"Y":688},{"Bonus":0,"Continent":"K35","ID":35531,"Name":"-DrakenSag2","PlayerID":699825236,"Points":1673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35531","ServerKey":"pl181","X":545,"Y":325},{"Bonus":0,"Continent":"K53","ID":35532,"Name":"101","PlayerID":7098955,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35532","ServerKey":"pl181","X":319,"Y":507},{"Bonus":0,"Continent":"K56","ID":35533,"Name":"Islanders 05","PlayerID":7973893,"Points":9147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35533","ServerKey":"pl181","X":684,"Y":518},{"Bonus":0,"Continent":"K63","ID":35534,"Name":"Komornicy 008","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35534","ServerKey":"pl181","X":352,"Y":609},{"Bonus":0,"Continent":"K66","ID":35535,"Name":"#039#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35535","ServerKey":"pl181","X":636,"Y":630},{"Bonus":0,"Continent":"K56","ID":35537,"Name":"#2 Europa","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35537","ServerKey":"pl181","X":660,"Y":587},{"Bonus":0,"Continent":"K56","ID":35538,"Name":"062. Ramr","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35538","ServerKey":"pl181","X":665,"Y":591},{"Bonus":0,"Continent":"K35","ID":35539,"Name":"Wieƛ Kupolandia","PlayerID":849098136,"Points":8188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35539","ServerKey":"pl181","X":546,"Y":323},{"Bonus":0,"Continent":"K43","ID":35540,"Name":"Out of Touch","PlayerID":698962117,"Points":2754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35540","ServerKey":"pl181","X":325,"Y":432},{"Bonus":0,"Continent":"K36","ID":35541,"Name":"Wiocha","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35541","ServerKey":"pl181","X":604,"Y":353},{"Bonus":0,"Continent":"K43","ID":35542,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35542","ServerKey":"pl181","X":311,"Y":499},{"Bonus":0,"Continent":"K66","ID":35543,"Name":"A006","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35543","ServerKey":"pl181","X":606,"Y":646},{"Bonus":0,"Continent":"K56","ID":35544,"Name":"093 Tomek","PlayerID":2135129,"Points":4932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35544","ServerKey":"pl181","X":688,"Y":509},{"Bonus":0,"Continent":"K56","ID":35545,"Name":"Kingdom 3","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35545","ServerKey":"pl181","X":681,"Y":504},{"Bonus":0,"Continent":"K63","ID":35546,"Name":"JGA","PlayerID":699864013,"Points":8665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35546","ServerKey":"pl181","X":360,"Y":621},{"Bonus":0,"Continent":"K63","ID":35547,"Name":"A 085","PlayerID":699342219,"Points":4588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35547","ServerKey":"pl181","X":372,"Y":635},{"Bonus":0,"Continent":"K65","ID":35548,"Name":"2.Vigo","PlayerID":698215322,"Points":6517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35548","ServerKey":"pl181","X":561,"Y":676},{"Bonus":0,"Continent":"K65","ID":35549,"Name":"DąbrĂłwka PodĆ‚Ä™ĆŒna","PlayerID":698723158,"Points":6587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35549","ServerKey":"pl181","X":570,"Y":670},{"Bonus":0,"Continent":"K53","ID":35550,"Name":"010","PlayerID":7097727,"Points":5095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35550","ServerKey":"pl181","X":317,"Y":500},{"Bonus":0,"Continent":"K66","ID":35551,"Name":"Wioska 053","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35551","ServerKey":"pl181","X":652,"Y":604},{"Bonus":0,"Continent":"K53","ID":35552,"Name":"C0024","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35552","ServerKey":"pl181","X":316,"Y":515},{"Bonus":0,"Continent":"K66","ID":35553,"Name":"02 BakƂaĆŒan","PlayerID":8224678,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35553","ServerKey":"pl181","X":641,"Y":614},{"Bonus":0,"Continent":"K33","ID":35554,"Name":"Wioska barbarzyƄska","PlayerID":849101962,"Points":2359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35554","ServerKey":"pl181","X":368,"Y":368},{"Bonus":0,"Continent":"K34","ID":35555,"Name":"0160","PlayerID":699431255,"Points":3437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35555","ServerKey":"pl181","X":406,"Y":336},{"Bonus":0,"Continent":"K65","ID":35556,"Name":"068","PlayerID":2293376,"Points":8431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35556","ServerKey":"pl181","X":542,"Y":679},{"Bonus":0,"Continent":"K33","ID":35557,"Name":"Szulernia","PlayerID":7249451,"Points":3287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35557","ServerKey":"pl181","X":377,"Y":367},{"Bonus":0,"Continent":"K36","ID":35558,"Name":"001","PlayerID":1990750,"Points":10831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35558","ServerKey":"pl181","X":605,"Y":345},{"Bonus":0,"Continent":"K43","ID":35559,"Name":"New Land 19","PlayerID":849064752,"Points":3391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35559","ServerKey":"pl181","X":343,"Y":403},{"Bonus":0,"Continent":"K65","ID":35560,"Name":"0311","PlayerID":698659980,"Points":8255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35560","ServerKey":"pl181","X":559,"Y":672},{"Bonus":0,"Continent":"K63","ID":35561,"Name":"Hard4","PlayerID":699805839,"Points":2262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35561","ServerKey":"pl181","X":363,"Y":626},{"Bonus":9,"Continent":"K56","ID":35562,"Name":"Didek","PlayerID":849070946,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35562","ServerKey":"pl181","X":666,"Y":573},{"Bonus":0,"Continent":"K33","ID":35563,"Name":"cc pol009","PlayerID":3909522,"Points":6405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35563","ServerKey":"pl181","X":391,"Y":367},{"Bonus":0,"Continent":"K33","ID":35564,"Name":"*004*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35564","ServerKey":"pl181","X":351,"Y":390},{"Bonus":0,"Continent":"K33","ID":35565,"Name":"*037*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35565","ServerKey":"pl181","X":346,"Y":393},{"Bonus":0,"Continent":"K53","ID":35566,"Name":"C0316","PlayerID":8841266,"Points":3782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35566","ServerKey":"pl181","X":320,"Y":542},{"Bonus":0,"Continent":"K46","ID":35567,"Name":"I062","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35567","ServerKey":"pl181","X":683,"Y":466},{"Bonus":0,"Continent":"K43","ID":35568,"Name":"Suppi","PlayerID":699856962,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35568","ServerKey":"pl181","X":329,"Y":421},{"Bonus":5,"Continent":"K35","ID":35570,"Name":"Smacznej kawusi","PlayerID":699710633,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35570","ServerKey":"pl181","X":590,"Y":342},{"Bonus":0,"Continent":"K64","ID":35571,"Name":"New World","PlayerID":698152377,"Points":9728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35571","ServerKey":"pl181","X":442,"Y":674},{"Bonus":0,"Continent":"K66","ID":35572,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":8223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35572","ServerKey":"pl181","X":625,"Y":639},{"Bonus":0,"Continent":"K35","ID":35573,"Name":"Wioska barbarzyƄska","PlayerID":699710633,"Points":3141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35573","ServerKey":"pl181","X":574,"Y":327},{"Bonus":0,"Continent":"K43","ID":35574,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":4725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35574","ServerKey":"pl181","X":323,"Y":451},{"Bonus":0,"Continent":"K43","ID":35575,"Name":"Wioska 9","PlayerID":849075836,"Points":6457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35575","ServerKey":"pl181","X":315,"Y":485},{"Bonus":0,"Continent":"K34","ID":35576,"Name":"Wioska barbarzyƄska","PlayerID":699380607,"Points":2328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35576","ServerKey":"pl181","X":412,"Y":341},{"Bonus":0,"Continent":"K64","ID":35577,"Name":"#009. Troja","PlayerID":848896948,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35577","ServerKey":"pl181","X":442,"Y":677},{"Bonus":0,"Continent":"K53","ID":35578,"Name":"006","PlayerID":7097727,"Points":7874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35578","ServerKey":"pl181","X":315,"Y":506},{"Bonus":0,"Continent":"K45","ID":35579,"Name":"Osada","PlayerID":699098531,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35579","ServerKey":"pl181","X":506,"Y":455},{"Bonus":0,"Continent":"K64","ID":35580,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":7816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35580","ServerKey":"pl181","X":418,"Y":661},{"Bonus":0,"Continent":"K56","ID":35581,"Name":"058. Jezioro Woadark","PlayerID":8337151,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35581","ServerKey":"pl181","X":664,"Y":593},{"Bonus":0,"Continent":"K53","ID":35582,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35582","ServerKey":"pl181","X":322,"Y":538},{"Bonus":0,"Continent":"K46","ID":35583,"Name":"091 Nowy Rok","PlayerID":699491076,"Points":8194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35583","ServerKey":"pl181","X":655,"Y":407},{"Bonus":0,"Continent":"K36","ID":35584,"Name":"025 * Lady Porto *","PlayerID":699406750,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35584","ServerKey":"pl181","X":646,"Y":392},{"Bonus":0,"Continent":"K66","ID":35585,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35585","ServerKey":"pl181","X":641,"Y":620},{"Bonus":0,"Continent":"K66","ID":35586,"Name":"A047","PlayerID":9023703,"Points":8578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35586","ServerKey":"pl181","X":609,"Y":648},{"Bonus":0,"Continent":"K33","ID":35587,"Name":"Szlachcic","PlayerID":3484132,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35587","ServerKey":"pl181","X":396,"Y":343},{"Bonus":0,"Continent":"K53","ID":35588,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35588","ServerKey":"pl181","X":338,"Y":592},{"Bonus":0,"Continent":"K64","ID":35589,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35589","ServerKey":"pl181","X":434,"Y":677},{"Bonus":0,"Continent":"K56","ID":35590,"Name":"_PUSTA+","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35590","ServerKey":"pl181","X":685,"Y":541},{"Bonus":0,"Continent":"K65","ID":35591,"Name":"0581","PlayerID":698659980,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35591","ServerKey":"pl181","X":567,"Y":667},{"Bonus":6,"Continent":"K34","ID":35592,"Name":"#0212 Segadorr dar","PlayerID":1238300,"Points":6067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35592","ServerKey":"pl181","X":451,"Y":318},{"Bonus":0,"Continent":"K35","ID":35593,"Name":"AAA","PlayerID":1006847,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35593","ServerKey":"pl181","X":532,"Y":319},{"Bonus":0,"Continent":"K34","ID":35594,"Name":"8.Yasnaya Polyana","PlayerID":849098648,"Points":5657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35594","ServerKey":"pl181","X":419,"Y":331},{"Bonus":0,"Continent":"K36","ID":35595,"Name":"0093","PlayerID":698416970,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35595","ServerKey":"pl181","X":648,"Y":389},{"Bonus":0,"Continent":"K56","ID":35596,"Name":"C.02","PlayerID":699737356,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35596","ServerKey":"pl181","X":682,"Y":515},{"Bonus":0,"Continent":"K56","ID":35597,"Name":"WschĂłd X3","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35597","ServerKey":"pl181","X":685,"Y":530},{"Bonus":0,"Continent":"K63","ID":35598,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":699697558,"Points":4665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35598","ServerKey":"pl181","X":379,"Y":645},{"Bonus":0,"Continent":"K35","ID":35599,"Name":"002.","PlayerID":699072129,"Points":4821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35599","ServerKey":"pl181","X":565,"Y":327},{"Bonus":0,"Continent":"K65","ID":35600,"Name":"0335","PlayerID":698659980,"Points":7273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35600","ServerKey":"pl181","X":570,"Y":673},{"Bonus":0,"Continent":"K64","ID":35601,"Name":"Z|002| Turyn","PlayerID":699393742,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35601","ServerKey":"pl181","X":472,"Y":686},{"Bonus":0,"Continent":"K63","ID":35602,"Name":"-001-","PlayerID":849096354,"Points":5053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35602","ServerKey":"pl181","X":373,"Y":638},{"Bonus":0,"Continent":"K66","ID":35603,"Name":"021. GĂłrki?","PlayerID":849100994,"Points":7108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35603","ServerKey":"pl181","X":642,"Y":623},{"Bonus":5,"Continent":"K53","ID":35604,"Name":"C0172","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35604","ServerKey":"pl181","X":317,"Y":513},{"Bonus":0,"Continent":"K46","ID":35605,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":5880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35605","ServerKey":"pl181","X":680,"Y":470},{"Bonus":0,"Continent":"K65","ID":35606,"Name":"049","PlayerID":2293376,"Points":7099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35606","ServerKey":"pl181","X":541,"Y":679},{"Bonus":0,"Continent":"K46","ID":35607,"Name":"KrzyĆŒĂłwki-hubix","PlayerID":8675636,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35607","ServerKey":"pl181","X":667,"Y":415},{"Bonus":0,"Continent":"K36","ID":35608,"Name":"-sioux falls","PlayerID":8096537,"Points":7249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35608","ServerKey":"pl181","X":649,"Y":388},{"Bonus":0,"Continent":"K33","ID":35609,"Name":"Szlachcic","PlayerID":698160606,"Points":9757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35609","ServerKey":"pl181","X":387,"Y":356},{"Bonus":0,"Continent":"K63","ID":35611,"Name":"--02--","PlayerID":8877156,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35611","ServerKey":"pl181","X":341,"Y":601},{"Bonus":0,"Continent":"K65","ID":35612,"Name":"Wioska barbarzyƄska","PlayerID":8501514,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35612","ServerKey":"pl181","X":512,"Y":681},{"Bonus":0,"Continent":"K53","ID":35613,"Name":"C0268","PlayerID":8841266,"Points":7257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35613","ServerKey":"pl181","X":312,"Y":507},{"Bonus":0,"Continent":"K36","ID":35614,"Name":"-004- ChwaƂa Imperium","PlayerID":849099276,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35614","ServerKey":"pl181","X":621,"Y":357},{"Bonus":0,"Continent":"K64","ID":35615,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35615","ServerKey":"pl181","X":434,"Y":674},{"Bonus":0,"Continent":"K63","ID":35616,"Name":"psycha sitting","PlayerID":699736927,"Points":6839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35616","ServerKey":"pl181","X":398,"Y":659},{"Bonus":0,"Continent":"K66","ID":35617,"Name":"Monetkownia","PlayerID":699759128,"Points":9431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35617","ServerKey":"pl181","X":624,"Y":631},{"Bonus":0,"Continent":"K33","ID":35618,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35618","ServerKey":"pl181","X":391,"Y":354},{"Bonus":0,"Continent":"K64","ID":35619,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35619","ServerKey":"pl181","X":432,"Y":672},{"Bonus":0,"Continent":"K65","ID":35620,"Name":"Muchomor *006*","PlayerID":606407,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35620","ServerKey":"pl181","X":511,"Y":686},{"Bonus":0,"Continent":"K64","ID":35621,"Name":"reco","PlayerID":699393742,"Points":3095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35621","ServerKey":"pl181","X":496,"Y":685},{"Bonus":0,"Continent":"K35","ID":35622,"Name":"Winterhome.073","PlayerID":848918380,"Points":9418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35622","ServerKey":"pl181","X":509,"Y":313},{"Bonus":0,"Continent":"K35","ID":35623,"Name":"086 ƚwięta BoĆŒego Narodzenia","PlayerID":699491076,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35623","ServerKey":"pl181","X":595,"Y":346},{"Bonus":0,"Continent":"K53","ID":35624,"Name":"*008*","PlayerID":8630972,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35624","ServerKey":"pl181","X":315,"Y":536},{"Bonus":0,"Continent":"K35","ID":35625,"Name":"AAA","PlayerID":1006847,"Points":6116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35625","ServerKey":"pl181","X":548,"Y":321},{"Bonus":0,"Continent":"K36","ID":35626,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":6648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35626","ServerKey":"pl181","X":623,"Y":366},{"Bonus":0,"Continent":"K53","ID":35627,"Name":"C1.","PlayerID":849095482,"Points":7447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35627","ServerKey":"pl181","X":317,"Y":544},{"Bonus":0,"Continent":"K34","ID":35628,"Name":"213","PlayerID":7271812,"Points":9392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35628","ServerKey":"pl181","X":430,"Y":330},{"Bonus":0,"Continent":"K65","ID":35629,"Name":"- 187 - SS","PlayerID":849018239,"Points":7456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35629","ServerKey":"pl181","X":535,"Y":681},{"Bonus":0,"Continent":"K64","ID":35630,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35630","ServerKey":"pl181","X":472,"Y":683},{"Bonus":0,"Continent":"K64","ID":35631,"Name":"006 Texas","PlayerID":699238479,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35631","ServerKey":"pl181","X":490,"Y":684},{"Bonus":0,"Continent":"K36","ID":35632,"Name":"043- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35632","ServerKey":"pl181","X":649,"Y":389},{"Bonus":0,"Continent":"K54","ID":35634,"Name":"F054","PlayerID":699189792,"Points":9675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35634","ServerKey":"pl181","X":494,"Y":521},{"Bonus":0,"Continent":"K66","ID":35635,"Name":"Cytadela RickĂłw","PlayerID":849098822,"Points":6430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35635","ServerKey":"pl181","X":645,"Y":621},{"Bonus":0,"Continent":"K35","ID":35636,"Name":"Na KraƄcu ƚwiata 006","PlayerID":9291984,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35636","ServerKey":"pl181","X":577,"Y":328},{"Bonus":0,"Continent":"K64","ID":35637,"Name":"New World","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35637","ServerKey":"pl181","X":444,"Y":678},{"Bonus":0,"Continent":"K36","ID":35638,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":3833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35638","ServerKey":"pl181","X":627,"Y":364},{"Bonus":0,"Continent":"K63","ID":35639,"Name":"A 099","PlayerID":7085510,"Points":5581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35639","ServerKey":"pl181","X":370,"Y":637},{"Bonus":0,"Continent":"K33","ID":35640,"Name":"Wow22","PlayerID":699730714,"Points":2275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35640","ServerKey":"pl181","X":373,"Y":368},{"Bonus":0,"Continent":"K63","ID":35641,"Name":"013","PlayerID":7183372,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35641","ServerKey":"pl181","X":349,"Y":603},{"Bonus":0,"Continent":"K33","ID":35642,"Name":"*013*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35642","ServerKey":"pl181","X":352,"Y":386},{"Bonus":0,"Continent":"K65","ID":35643,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":7510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35643","ServerKey":"pl181","X":572,"Y":670},{"Bonus":0,"Continent":"K46","ID":35644,"Name":"**01**","PlayerID":849098782,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35644","ServerKey":"pl181","X":672,"Y":434},{"Bonus":0,"Continent":"K43","ID":35645,"Name":"B.A.R.B.A.R.K.A","PlayerID":8048374,"Points":8258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35645","ServerKey":"pl181","X":314,"Y":478},{"Bonus":0,"Continent":"K34","ID":35646,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":5198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35646","ServerKey":"pl181","X":429,"Y":327},{"Bonus":0,"Continent":"K46","ID":35647,"Name":"040 Mucharadza","PlayerID":9238175,"Points":9127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35647","ServerKey":"pl181","X":666,"Y":416},{"Bonus":0,"Continent":"K35","ID":35648,"Name":"AAA","PlayerID":1006847,"Points":8832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35648","ServerKey":"pl181","X":525,"Y":314},{"Bonus":0,"Continent":"K66","ID":35649,"Name":"#057#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35649","ServerKey":"pl181","X":638,"Y":630},{"Bonus":6,"Continent":"K46","ID":35650,"Name":"emoriar","PlayerID":699574408,"Points":6625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35650","ServerKey":"pl181","X":681,"Y":448},{"Bonus":0,"Continent":"K66","ID":35651,"Name":"Sony 911","PlayerID":1415009,"Points":10212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35651","ServerKey":"pl181","X":622,"Y":639},{"Bonus":0,"Continent":"K53","ID":35652,"Name":"Wioska Vll","PlayerID":699671197,"Points":10513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35652","ServerKey":"pl181","X":324,"Y":568},{"Bonus":0,"Continent":"K56","ID":35653,"Name":"Didus P","PlayerID":849070946,"Points":5728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35653","ServerKey":"pl181","X":667,"Y":575},{"Bonus":0,"Continent":"K56","ID":35654,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35654","ServerKey":"pl181","X":683,"Y":507},{"Bonus":0,"Continent":"K33","ID":35655,"Name":"Szulernia","PlayerID":7249451,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35655","ServerKey":"pl181","X":370,"Y":370},{"Bonus":0,"Continent":"K66","ID":35656,"Name":"Ć»UBR .::.Adaczu/03","PlayerID":33900,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35656","ServerKey":"pl181","X":618,"Y":647},{"Bonus":0,"Continent":"K34","ID":35657,"Name":"058","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35657","ServerKey":"pl181","X":453,"Y":324},{"Bonus":0,"Continent":"K46","ID":35658,"Name":"008. Wola","PlayerID":7494497,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35658","ServerKey":"pl181","X":688,"Y":476},{"Bonus":0,"Continent":"K56","ID":35659,"Name":"033 - Alcala de Henares","PlayerID":698342159,"Points":5279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35659","ServerKey":"pl181","X":688,"Y":523},{"Bonus":0,"Continent":"K46","ID":35660,"Name":"048 Halemba","PlayerID":9238175,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35660","ServerKey":"pl181","X":663,"Y":412},{"Bonus":0,"Continent":"K35","ID":35661,"Name":"126","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35661","ServerKey":"pl181","X":547,"Y":398},{"Bonus":0,"Continent":"K34","ID":35662,"Name":"Wioska barbarzyƄska","PlayerID":6936607,"Points":4165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35662","ServerKey":"pl181","X":475,"Y":316},{"Bonus":0,"Continent":"K46","ID":35663,"Name":"[031] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35663","ServerKey":"pl181","X":672,"Y":425},{"Bonus":0,"Continent":"K43","ID":35664,"Name":"*187*","PlayerID":699273451,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35664","ServerKey":"pl181","X":331,"Y":415},{"Bonus":0,"Continent":"K33","ID":35665,"Name":"*084*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35665","ServerKey":"pl181","X":360,"Y":375},{"Bonus":0,"Continent":"K36","ID":35666,"Name":"021 Cardiff","PlayerID":849057572,"Points":7536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35666","ServerKey":"pl181","X":615,"Y":353},{"Bonus":7,"Continent":"K34","ID":35667,"Name":"- 07 - DąbrĂłwka","PlayerID":1238300,"Points":4161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35667","ServerKey":"pl181","X":461,"Y":322},{"Bonus":0,"Continent":"K63","ID":35668,"Name":"A 046","PlayerID":699342219,"Points":5794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35668","ServerKey":"pl181","X":366,"Y":634},{"Bonus":0,"Continent":"K56","ID":35669,"Name":"[032]","PlayerID":698305474,"Points":8539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35669","ServerKey":"pl181","X":662,"Y":583},{"Bonus":0,"Continent":"K65","ID":35670,"Name":"- 155 - SS","PlayerID":849018239,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35670","ServerKey":"pl181","X":540,"Y":683},{"Bonus":0,"Continent":"K66","ID":35671,"Name":"A061","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35671","ServerKey":"pl181","X":605,"Y":654},{"Bonus":0,"Continent":"K53","ID":35672,"Name":"C0105","PlayerID":8841266,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35672","ServerKey":"pl181","X":317,"Y":522},{"Bonus":0,"Continent":"K46","ID":35673,"Name":"Widzew","PlayerID":849100246,"Points":5590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35673","ServerKey":"pl181","X":683,"Y":477},{"Bonus":0,"Continent":"K36","ID":35674,"Name":"Taran 028","PlayerID":699098531,"Points":5534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35674","ServerKey":"pl181","X":638,"Y":371},{"Bonus":0,"Continent":"K43","ID":35675,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":4206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35675","ServerKey":"pl181","X":323,"Y":452},{"Bonus":0,"Continent":"K36","ID":35676,"Name":"i co z tego","PlayerID":849041192,"Points":4501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35676","ServerKey":"pl181","X":651,"Y":386},{"Bonus":0,"Continent":"K66","ID":35677,"Name":"OFF","PlayerID":849014413,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35677","ServerKey":"pl181","X":645,"Y":619},{"Bonus":0,"Continent":"K34","ID":35678,"Name":"105.Stradi","PlayerID":698365960,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35678","ServerKey":"pl181","X":458,"Y":321},{"Bonus":0,"Continent":"K34","ID":35679,"Name":"Winterhome.045","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35679","ServerKey":"pl181","X":492,"Y":312},{"Bonus":0,"Continent":"K65","ID":35680,"Name":"014","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35680","ServerKey":"pl181","X":511,"Y":673},{"Bonus":0,"Continent":"K63","ID":35681,"Name":"A 021","PlayerID":699342219,"Points":5048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35681","ServerKey":"pl181","X":363,"Y":627},{"Bonus":5,"Continent":"K36","ID":35683,"Name":"=|33|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35683","ServerKey":"pl181","X":644,"Y":386},{"Bonus":0,"Continent":"K53","ID":35684,"Name":"Wioska wilku1000","PlayerID":1568700,"Points":2804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35684","ServerKey":"pl181","X":328,"Y":556},{"Bonus":0,"Continent":"K33","ID":35685,"Name":"*021*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35685","ServerKey":"pl181","X":352,"Y":385},{"Bonus":0,"Continent":"K64","ID":35686,"Name":"#003 MaƂpi Gaj","PlayerID":848896948,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35686","ServerKey":"pl181","X":440,"Y":679},{"Bonus":0,"Continent":"K64","ID":35687,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35687","ServerKey":"pl181","X":404,"Y":658},{"Bonus":0,"Continent":"K46","ID":35688,"Name":"023 Wioska","PlayerID":699671454,"Points":3237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35688","ServerKey":"pl181","X":680,"Y":466},{"Bonus":0,"Continent":"K64","ID":35689,"Name":"Psycha Siada","PlayerID":698807570,"Points":7786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35689","ServerKey":"pl181","X":445,"Y":673},{"Bonus":0,"Continent":"K66","ID":35690,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":3569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35690","ServerKey":"pl181","X":655,"Y":607},{"Bonus":0,"Continent":"K33","ID":35691,"Name":"Szlachcic","PlayerID":698160606,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35691","ServerKey":"pl181","X":386,"Y":354},{"Bonus":0,"Continent":"K63","ID":35692,"Name":"0168","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35692","ServerKey":"pl181","X":376,"Y":638},{"Bonus":0,"Continent":"K36","ID":35693,"Name":"x000","PlayerID":6625437,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35693","ServerKey":"pl181","X":632,"Y":369},{"Bonus":0,"Continent":"K35","ID":35694,"Name":"Wioska 5","PlayerID":7560474,"Points":5402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35694","ServerKey":"pl181","X":574,"Y":333},{"Bonus":0,"Continent":"K53","ID":35695,"Name":"057","PlayerID":7183372,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35695","ServerKey":"pl181","X":334,"Y":589},{"Bonus":0,"Continent":"K43","ID":35696,"Name":"XC1","PlayerID":849040194,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35696","ServerKey":"pl181","X":311,"Y":495},{"Bonus":0,"Continent":"K63","ID":35697,"Name":"Komornicy 020","PlayerID":699336777,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35697","ServerKey":"pl181","X":353,"Y":607},{"Bonus":0,"Continent":"K56","ID":35698,"Name":"AGA7","PlayerID":699598425,"Points":9508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35698","ServerKey":"pl181","X":687,"Y":500},{"Bonus":0,"Continent":"K36","ID":35699,"Name":"XDX","PlayerID":699098531,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35699","ServerKey":"pl181","X":623,"Y":368},{"Bonus":0,"Continent":"K43","ID":35700,"Name":"Ziemniak","PlayerID":699821629,"Points":6389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35700","ServerKey":"pl181","X":322,"Y":443},{"Bonus":0,"Continent":"K56","ID":35701,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":8662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35701","ServerKey":"pl181","X":682,"Y":510},{"Bonus":0,"Continent":"K36","ID":35702,"Name":"Rijen","PlayerID":9103424,"Points":7630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35702","ServerKey":"pl181","X":609,"Y":352},{"Bonus":0,"Continent":"K46","ID":35703,"Name":"019 Wioska barbarzyƄska","PlayerID":849098769,"Points":7827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35703","ServerKey":"pl181","X":682,"Y":455},{"Bonus":0,"Continent":"K64","ID":35704,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35704","ServerKey":"pl181","X":431,"Y":670},{"Bonus":0,"Continent":"K34","ID":35705,"Name":".achim.","PlayerID":6936607,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35705","ServerKey":"pl181","X":485,"Y":313},{"Bonus":0,"Continent":"K35","ID":35706,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35706","ServerKey":"pl181","X":526,"Y":313},{"Bonus":0,"Continent":"K56","ID":35708,"Name":"*5611* YME3","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35708","ServerKey":"pl181","X":669,"Y":582},{"Bonus":0,"Continent":"K34","ID":35709,"Name":"0148","PlayerID":699431255,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35709","ServerKey":"pl181","X":409,"Y":340},{"Bonus":0,"Continent":"K65","ID":35710,"Name":"Muchomor *026*","PlayerID":606407,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35710","ServerKey":"pl181","X":522,"Y":686},{"Bonus":0,"Continent":"K66","ID":35711,"Name":"#043#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35711","ServerKey":"pl181","X":629,"Y":633},{"Bonus":0,"Continent":"K43","ID":35712,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35712","ServerKey":"pl181","X":331,"Y":419},{"Bonus":0,"Continent":"K34","ID":35714,"Name":"248","PlayerID":7271812,"Points":5025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35714","ServerKey":"pl181","X":424,"Y":328},{"Bonus":0,"Continent":"K53","ID":35715,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35715","ServerKey":"pl181","X":311,"Y":512},{"Bonus":0,"Continent":"K33","ID":35716,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35716","ServerKey":"pl181","X":393,"Y":345},{"Bonus":0,"Continent":"K56","ID":35717,"Name":"070 donkretos2","PlayerID":2135129,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35717","ServerKey":"pl181","X":687,"Y":516},{"Bonus":0,"Continent":"K43","ID":35718,"Name":"*256*","PlayerID":699273451,"Points":3061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35718","ServerKey":"pl181","X":335,"Y":410},{"Bonus":0,"Continent":"K65","ID":35719,"Name":"0591","PlayerID":698659980,"Points":7776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35719","ServerKey":"pl181","X":539,"Y":660},{"Bonus":0,"Continent":"K34","ID":35720,"Name":"008.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35720","ServerKey":"pl181","X":443,"Y":320},{"Bonus":0,"Continent":"K36","ID":35721,"Name":"129 Bajerka Bajerka I Blok?","PlayerID":699491076,"Points":8158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35721","ServerKey":"pl181","X":660,"Y":399},{"Bonus":0,"Continent":"K64","ID":35722,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35722","ServerKey":"pl181","X":423,"Y":673},{"Bonus":0,"Continent":"K66","ID":35723,"Name":"OFF","PlayerID":849014413,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35723","ServerKey":"pl181","X":647,"Y":619},{"Bonus":0,"Continent":"K53","ID":35724,"Name":"C0257","PlayerID":8841266,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35724","ServerKey":"pl181","X":318,"Y":509},{"Bonus":0,"Continent":"K33","ID":35726,"Name":"*221","PlayerID":699273451,"Points":6504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35726","ServerKey":"pl181","X":374,"Y":370},{"Bonus":0,"Continent":"K35","ID":35727,"Name":"Taran","PlayerID":699170684,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35727","ServerKey":"pl181","X":550,"Y":381},{"Bonus":0,"Continent":"K43","ID":35728,"Name":"Out of Touch","PlayerID":698962117,"Points":2971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35728","ServerKey":"pl181","X":330,"Y":433},{"Bonus":0,"Continent":"K66","ID":35729,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":1227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35729","ServerKey":"pl181","X":653,"Y":608},{"Bonus":0,"Continent":"K43","ID":35730,"Name":"008. BƂonie","PlayerID":849098966,"Points":5737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35730","ServerKey":"pl181","X":325,"Y":448},{"Bonus":0,"Continent":"K65","ID":35731,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35731","ServerKey":"pl181","X":597,"Y":657},{"Bonus":0,"Continent":"K43","ID":35732,"Name":"*172*","PlayerID":699273451,"Points":8157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35732","ServerKey":"pl181","X":335,"Y":409},{"Bonus":0,"Continent":"K33","ID":35733,"Name":"Szlachcic","PlayerID":698160606,"Points":7494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35733","ServerKey":"pl181","X":385,"Y":359},{"Bonus":0,"Continent":"K65","ID":35734,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35734","ServerKey":"pl181","X":597,"Y":658},{"Bonus":0,"Continent":"K34","ID":35735,"Name":"#0302 sliwatojo","PlayerID":1238300,"Points":7406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35735","ServerKey":"pl181","X":465,"Y":318},{"Bonus":0,"Continent":"K33","ID":35736,"Name":"Szulernia","PlayerID":7249451,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35736","ServerKey":"pl181","X":371,"Y":369},{"Bonus":0,"Continent":"K66","ID":35737,"Name":"#035#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35737","ServerKey":"pl181","X":628,"Y":635},{"Bonus":0,"Continent":"K35","ID":35738,"Name":"AAA","PlayerID":1006847,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35738","ServerKey":"pl181","X":537,"Y":317},{"Bonus":0,"Continent":"K66","ID":35739,"Name":"Wioska kamilpo4","PlayerID":848942587,"Points":11388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35739","ServerKey":"pl181","X":641,"Y":618},{"Bonus":0,"Continent":"K46","ID":35740,"Name":"I095","PlayerID":699722599,"Points":7600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35740","ServerKey":"pl181","X":675,"Y":446},{"Bonus":0,"Continent":"K35","ID":35741,"Name":"07. Soldier","PlayerID":699072129,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35741","ServerKey":"pl181","X":553,"Y":326},{"Bonus":0,"Continent":"K65","ID":35742,"Name":"8 barba","PlayerID":848995242,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35742","ServerKey":"pl181","X":588,"Y":661},{"Bonus":0,"Continent":"K34","ID":35743,"Name":"HITA","PlayerID":8123790,"Points":4350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35743","ServerKey":"pl181","X":403,"Y":344},{"Bonus":0,"Continent":"K33","ID":35744,"Name":"Szulernia","PlayerID":7249451,"Points":6202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35744","ServerKey":"pl181","X":380,"Y":364},{"Bonus":0,"Continent":"K43","ID":35745,"Name":"Szlachcic","PlayerID":6258092,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35745","ServerKey":"pl181","X":389,"Y":469},{"Bonus":0,"Continent":"K43","ID":35746,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35746","ServerKey":"pl181","X":318,"Y":457},{"Bonus":0,"Continent":"K64","ID":35747,"Name":"#002. Welcome In My Night!","PlayerID":848896948,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35747","ServerKey":"pl181","X":444,"Y":677},{"Bonus":0,"Continent":"K35","ID":35748,"Name":"AAA","PlayerID":1006847,"Points":8444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35748","ServerKey":"pl181","X":541,"Y":319},{"Bonus":0,"Continent":"K56","ID":35749,"Name":"C 015","PlayerID":8078914,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35749","ServerKey":"pl181","X":680,"Y":515},{"Bonus":0,"Continent":"K64","ID":35750,"Name":"051.","PlayerID":849034882,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35750","ServerKey":"pl181","X":460,"Y":677},{"Bonus":0,"Continent":"K56","ID":35751,"Name":"Didi","PlayerID":849070946,"Points":10818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35751","ServerKey":"pl181","X":669,"Y":568},{"Bonus":0,"Continent":"K66","ID":35752,"Name":"Loca 1","PlayerID":699778867,"Points":11568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35752","ServerKey":"pl181","X":634,"Y":632},{"Bonus":0,"Continent":"K36","ID":35753,"Name":"1005","PlayerID":699150527,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35753","ServerKey":"pl181","X":622,"Y":359},{"Bonus":0,"Continent":"K56","ID":35755,"Name":"99k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35755","ServerKey":"pl181","X":684,"Y":537},{"Bonus":0,"Continent":"K46","ID":35756,"Name":"Gattacka","PlayerID":699298370,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35756","ServerKey":"pl181","X":677,"Y":433},{"Bonus":0,"Continent":"K35","ID":35757,"Name":"krytl03","PlayerID":1990750,"Points":9503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35757","ServerKey":"pl181","X":513,"Y":319},{"Bonus":0,"Continent":"K56","ID":35758,"Name":"Kingdom 7","PlayerID":699598425,"Points":10579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35758","ServerKey":"pl181","X":682,"Y":502},{"Bonus":0,"Continent":"K36","ID":35759,"Name":"=|15|=","PlayerID":9101574,"Points":7798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35759","ServerKey":"pl181","X":647,"Y":384},{"Bonus":0,"Continent":"K35","ID":35760,"Name":"007.","PlayerID":699072129,"Points":8135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35760","ServerKey":"pl181","X":569,"Y":324},{"Bonus":0,"Continent":"K43","ID":35761,"Name":"Out of Touch","PlayerID":698962117,"Points":2614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35761","ServerKey":"pl181","X":329,"Y":430},{"Bonus":0,"Continent":"K65","ID":35762,"Name":"Wioska r 16","PlayerID":848915531,"Points":3913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35762","ServerKey":"pl181","X":558,"Y":673},{"Bonus":0,"Continent":"K36","ID":35763,"Name":"Przyczajony","PlayerID":7340529,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35763","ServerKey":"pl181","X":617,"Y":353},{"Bonus":0,"Continent":"K46","ID":35764,"Name":"002. Ć»oliborz-Maciusiowa zagroda","PlayerID":7494497,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35764","ServerKey":"pl181","X":688,"Y":475},{"Bonus":0,"Continent":"K36","ID":35765,"Name":"555","PlayerID":849092309,"Points":7689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35765","ServerKey":"pl181","X":636,"Y":369},{"Bonus":1,"Continent":"K36","ID":35766,"Name":"=|04|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35766","ServerKey":"pl181","X":652,"Y":393},{"Bonus":0,"Continent":"K65","ID":35767,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35767","ServerKey":"pl181","X":569,"Y":676},{"Bonus":0,"Continent":"K63","ID":35768,"Name":"Ć»elazny deff","PlayerID":699805839,"Points":5890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35768","ServerKey":"pl181","X":362,"Y":623},{"Bonus":0,"Continent":"K34","ID":35769,"Name":"062","PlayerID":2502956,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35769","ServerKey":"pl181","X":451,"Y":321},{"Bonus":0,"Continent":"K65","ID":35770,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":8668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35770","ServerKey":"pl181","X":516,"Y":687},{"Bonus":0,"Continent":"K53","ID":35771,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35771","ServerKey":"pl181","X":331,"Y":559},{"Bonus":0,"Continent":"K46","ID":35772,"Name":"066 Wioska 018","PlayerID":9238175,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35772","ServerKey":"pl181","X":663,"Y":409},{"Bonus":0,"Continent":"K43","ID":35773,"Name":"002 Smocza SkaƂa","PlayerID":699823490,"Points":8527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35773","ServerKey":"pl181","X":316,"Y":488},{"Bonus":0,"Continent":"K33","ID":35774,"Name":"*086*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35774","ServerKey":"pl181","X":360,"Y":372},{"Bonus":0,"Continent":"K36","ID":35775,"Name":"018 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35775","ServerKey":"pl181","X":648,"Y":393},{"Bonus":0,"Continent":"K46","ID":35776,"Name":"[030] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35776","ServerKey":"pl181","X":671,"Y":427},{"Bonus":0,"Continent":"K66","ID":35777,"Name":"036 Melian","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35777","ServerKey":"pl181","X":658,"Y":601},{"Bonus":0,"Continent":"K33","ID":35778,"Name":"z 181-A003","PlayerID":3909522,"Points":8848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35778","ServerKey":"pl181","X":357,"Y":379},{"Bonus":0,"Continent":"K64","ID":35779,"Name":"005 Desant","PlayerID":699745265,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35779","ServerKey":"pl181","X":483,"Y":689},{"Bonus":0,"Continent":"K56","ID":35780,"Name":"003 Kirtan","PlayerID":8337151,"Points":10197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35780","ServerKey":"pl181","X":661,"Y":598},{"Bonus":0,"Continent":"K36","ID":35781,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":3200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35781","ServerKey":"pl181","X":605,"Y":342},{"Bonus":0,"Continent":"K33","ID":35782,"Name":"*147*","PlayerID":699273451,"Points":7889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35782","ServerKey":"pl181","X":344,"Y":399},{"Bonus":0,"Continent":"K64","ID":35783,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35783","ServerKey":"pl181","X":447,"Y":679},{"Bonus":0,"Continent":"K43","ID":35784,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35784","ServerKey":"pl181","X":318,"Y":450},{"Bonus":0,"Continent":"K64","ID":35785,"Name":"Psycha Siada","PlayerID":698807570,"Points":9318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35785","ServerKey":"pl181","X":442,"Y":670},{"Bonus":0,"Continent":"K35","ID":35786,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35786","ServerKey":"pl181","X":583,"Y":335},{"Bonus":0,"Continent":"K53","ID":35787,"Name":"(023)Yulay","PlayerID":849098695,"Points":5566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35787","ServerKey":"pl181","X":324,"Y":569},{"Bonus":0,"Continent":"K64","ID":35788,"Name":"010|| Capricornus","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35788","ServerKey":"pl181","X":480,"Y":652},{"Bonus":0,"Continent":"K63","ID":35789,"Name":"A 026","PlayerID":699342219,"Points":6346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35789","ServerKey":"pl181","X":364,"Y":630},{"Bonus":0,"Continent":"K46","ID":35790,"Name":"014 Mieyet wb","PlayerID":849098769,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35790","ServerKey":"pl181","X":678,"Y":443},{"Bonus":0,"Continent":"K36","ID":35791,"Name":"Dolina ƚwiątyƄ","PlayerID":7973893,"Points":8127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35791","ServerKey":"pl181","X":651,"Y":399},{"Bonus":0,"Continent":"K46","ID":35792,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35792","ServerKey":"pl181","X":682,"Y":489},{"Bonus":0,"Continent":"K63","ID":35794,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35794","ServerKey":"pl181","X":381,"Y":642},{"Bonus":0,"Continent":"K36","ID":35795,"Name":"022 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35795","ServerKey":"pl181","X":647,"Y":393},{"Bonus":0,"Continent":"K63","ID":35796,"Name":"Komornicy 016","PlayerID":699336777,"Points":3454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35796","ServerKey":"pl181","X":351,"Y":612},{"Bonus":0,"Continent":"K53","ID":35797,"Name":"(020)Tukar","PlayerID":849098695,"Points":4355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35797","ServerKey":"pl181","X":325,"Y":561},{"Bonus":6,"Continent":"K34","ID":35798,"Name":"#0195 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35798","ServerKey":"pl181","X":461,"Y":323},{"Bonus":0,"Continent":"K63","ID":35799,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35799","ServerKey":"pl181","X":383,"Y":638},{"Bonus":0,"Continent":"K66","ID":35800,"Name":"A018","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35800","ServerKey":"pl181","X":609,"Y":653},{"Bonus":0,"Continent":"K36","ID":35803,"Name":"kamilkaze135 #08","PlayerID":699705601,"Points":8974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35803","ServerKey":"pl181","X":658,"Y":395},{"Bonus":0,"Continent":"K53","ID":35804,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35804","ServerKey":"pl181","X":339,"Y":599},{"Bonus":0,"Continent":"K53","ID":35805,"Name":"Szlachcic","PlayerID":698388578,"Points":8316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35805","ServerKey":"pl181","X":318,"Y":532},{"Bonus":0,"Continent":"K34","ID":35806,"Name":"214","PlayerID":698365960,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35806","ServerKey":"pl181","X":448,"Y":327},{"Bonus":0,"Continent":"K43","ID":35807,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35807","ServerKey":"pl181","X":317,"Y":458},{"Bonus":9,"Continent":"K36","ID":35808,"Name":"Lord Lord Franek .#193","PlayerID":698420691,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35808","ServerKey":"pl181","X":617,"Y":356},{"Bonus":0,"Continent":"K46","ID":35809,"Name":"Lubraniec-Hubix","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35809","ServerKey":"pl181","X":666,"Y":411},{"Bonus":0,"Continent":"K56","ID":35810,"Name":"Nowa 43","PlayerID":698702991,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35810","ServerKey":"pl181","X":667,"Y":578},{"Bonus":0,"Continent":"K36","ID":35811,"Name":"UltraInstynkt","PlayerID":699710633,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35811","ServerKey":"pl181","X":604,"Y":341},{"Bonus":0,"Continent":"K33","ID":35812,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35812","ServerKey":"pl181","X":390,"Y":348},{"Bonus":0,"Continent":"K64","ID":35814,"Name":"Ave Why!","PlayerID":699121671,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35814","ServerKey":"pl181","X":493,"Y":686},{"Bonus":0,"Continent":"K56","ID":35815,"Name":"006","PlayerID":699351301,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35815","ServerKey":"pl181","X":656,"Y":518},{"Bonus":0,"Continent":"K34","ID":35816,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":1827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35816","ServerKey":"pl181","X":403,"Y":341},{"Bonus":0,"Continent":"K53","ID":35817,"Name":"C0060","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35817","ServerKey":"pl181","X":312,"Y":526},{"Bonus":0,"Continent":"K64","ID":35818,"Name":"Nie, proszę nie...","PlayerID":699684693,"Points":8779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35818","ServerKey":"pl181","X":414,"Y":664},{"Bonus":0,"Continent":"K66","ID":35819,"Name":"#074#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35819","ServerKey":"pl181","X":634,"Y":631},{"Bonus":0,"Continent":"K35","ID":35820,"Name":"B025","PlayerID":699208929,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35820","ServerKey":"pl181","X":517,"Y":313},{"Bonus":0,"Continent":"K35","ID":35821,"Name":"Wstrętna","PlayerID":570100,"Points":3586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35821","ServerKey":"pl181","X":559,"Y":325},{"Bonus":0,"Continent":"K35","ID":35822,"Name":"0048","PlayerID":699485250,"Points":4779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35822","ServerKey":"pl181","X":569,"Y":325},{"Bonus":0,"Continent":"K63","ID":35823,"Name":"--05--","PlayerID":8877156,"Points":6435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35823","ServerKey":"pl181","X":346,"Y":601},{"Bonus":0,"Continent":"K53","ID":35824,"Name":"02.wiocha","PlayerID":7183372,"Points":6073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35824","ServerKey":"pl181","X":332,"Y":589},{"Bonus":0,"Continent":"K66","ID":35825,"Name":"Ć»UBRAWKA 055","PlayerID":33900,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35825","ServerKey":"pl181","X":616,"Y":641},{"Bonus":0,"Continent":"K34","ID":35826,"Name":"Winterhome.047","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35826","ServerKey":"pl181","X":497,"Y":313},{"Bonus":0,"Continent":"K64","ID":35827,"Name":"|049| Makarska","PlayerID":699393742,"Points":9226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35827","ServerKey":"pl181","X":494,"Y":681},{"Bonus":0,"Continent":"K65","ID":35828,"Name":"START 05","PlayerID":699567608,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35828","ServerKey":"pl181","X":579,"Y":669},{"Bonus":0,"Continent":"K46","ID":35829,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35829","ServerKey":"pl181","X":683,"Y":491},{"Bonus":0,"Continent":"K35","ID":35830,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":5022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35830","ServerKey":"pl181","X":573,"Y":328},{"Bonus":0,"Continent":"K34","ID":35831,"Name":"063","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35831","ServerKey":"pl181","X":450,"Y":317},{"Bonus":0,"Continent":"K33","ID":35832,"Name":"-002-","PlayerID":1693936,"Points":5466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35832","ServerKey":"pl181","X":350,"Y":399},{"Bonus":0,"Continent":"K63","ID":35833,"Name":"0169","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35833","ServerKey":"pl181","X":374,"Y":641},{"Bonus":0,"Continent":"K34","ID":35834,"Name":"Wioska barbarzyƄska","PlayerID":6936607,"Points":3179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35834","ServerKey":"pl181","X":476,"Y":317},{"Bonus":0,"Continent":"K53","ID":35835,"Name":"000 Plutosea","PlayerID":9280477,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35835","ServerKey":"pl181","X":316,"Y":543},{"Bonus":0,"Continent":"K66","ID":35836,"Name":"#071#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35836","ServerKey":"pl181","X":636,"Y":628},{"Bonus":0,"Continent":"K56","ID":35837,"Name":"97k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35837","ServerKey":"pl181","X":681,"Y":537},{"Bonus":0,"Continent":"K33","ID":35838,"Name":"*110*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35838","ServerKey":"pl181","X":363,"Y":379},{"Bonus":0,"Continent":"K65","ID":35839,"Name":"022","PlayerID":2293376,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35839","ServerKey":"pl181","X":538,"Y":686},{"Bonus":0,"Continent":"K43","ID":35840,"Name":"Wioska 2","PlayerID":849075836,"Points":8914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35840","ServerKey":"pl181","X":311,"Y":489},{"Bonus":0,"Continent":"K63","ID":35841,"Name":"Komornicy 026","PlayerID":699336777,"Points":2910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35841","ServerKey":"pl181","X":348,"Y":614},{"Bonus":0,"Continent":"K36","ID":35843,"Name":"WesoƂych ƚwiąt","PlayerID":7340529,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35843","ServerKey":"pl181","X":641,"Y":377},{"Bonus":0,"Continent":"K35","ID":35844,"Name":"001","PlayerID":7340529,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35844","ServerKey":"pl181","X":591,"Y":353},{"Bonus":0,"Continent":"K46","ID":35845,"Name":"Tu jest przyszƂoƛć","PlayerID":699491076,"Points":8136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35845","ServerKey":"pl181","X":659,"Y":400},{"Bonus":0,"Continent":"K65","ID":35847,"Name":"- 163 - SS","PlayerID":849018239,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35847","ServerKey":"pl181","X":545,"Y":682},{"Bonus":0,"Continent":"K35","ID":35848,"Name":"WesoƂych ƚwiąt","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35848","ServerKey":"pl181","X":581,"Y":358},{"Bonus":0,"Continent":"K66","ID":35849,"Name":"A065","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35849","ServerKey":"pl181","X":601,"Y":653},{"Bonus":0,"Continent":"K64","ID":35850,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":5910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35850","ServerKey":"pl181","X":404,"Y":654},{"Bonus":0,"Continent":"K53","ID":35851,"Name":"001","PlayerID":7097727,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35851","ServerKey":"pl181","X":315,"Y":503},{"Bonus":0,"Continent":"K33","ID":35852,"Name":"Szlachcic","PlayerID":3484132,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35852","ServerKey":"pl181","X":387,"Y":349},{"Bonus":0,"Continent":"K56","ID":35853,"Name":"OFF","PlayerID":1563417,"Points":7761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35853","ServerKey":"pl181","X":685,"Y":522},{"Bonus":0,"Continent":"K56","ID":35854,"Name":"Nowa 37","PlayerID":698702991,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35854","ServerKey":"pl181","X":673,"Y":561},{"Bonus":0,"Continent":"K56","ID":35855,"Name":"Wioska margo0229","PlayerID":698845189,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35855","ServerKey":"pl181","X":606,"Y":515},{"Bonus":0,"Continent":"K36","ID":35856,"Name":"Szlachcic;taran","PlayerID":849092309,"Points":7410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35856","ServerKey":"pl181","X":636,"Y":368},{"Bonus":0,"Continent":"K66","ID":35857,"Name":"017 NAWRA","PlayerID":849048867,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35857","ServerKey":"pl181","X":653,"Y":614},{"Bonus":0,"Continent":"K33","ID":35858,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35858","ServerKey":"pl181","X":390,"Y":347},{"Bonus":0,"Continent":"K56","ID":35859,"Name":"Grvvyq 104k$","PlayerID":699676005,"Points":10190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35859","ServerKey":"pl181","X":679,"Y":535},{"Bonus":0,"Continent":"K46","ID":35860,"Name":"I048","PlayerID":699722599,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35860","ServerKey":"pl181","X":682,"Y":458},{"Bonus":0,"Continent":"K43","ID":35861,"Name":"*177*","PlayerID":699273451,"Points":8564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35861","ServerKey":"pl181","X":333,"Y":413},{"Bonus":0,"Continent":"K53","ID":35862,"Name":"(036)Kadrix","PlayerID":849098695,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35862","ServerKey":"pl181","X":327,"Y":568},{"Bonus":0,"Continent":"K35","ID":35863,"Name":"Wioska barbarzyƄska","PlayerID":699710633,"Points":4039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35863","ServerKey":"pl181","X":578,"Y":332},{"Bonus":0,"Continent":"K65","ID":35864,"Name":"Bongos","PlayerID":698723158,"Points":7672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35864","ServerKey":"pl181","X":582,"Y":671},{"Bonus":0,"Continent":"K63","ID":35865,"Name":"Komornicy 009","PlayerID":699336777,"Points":9240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35865","ServerKey":"pl181","X":353,"Y":609},{"Bonus":0,"Continent":"K35","ID":35866,"Name":"Wioska ta nowa","PlayerID":849063793,"Points":4263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35866","ServerKey":"pl181","X":583,"Y":338},{"Bonus":0,"Continent":"K35","ID":35867,"Name":"Vanaheim III","PlayerID":699478692,"Points":3313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35867","ServerKey":"pl181","X":594,"Y":342},{"Bonus":0,"Continent":"K46","ID":35868,"Name":"045 gubin","PlayerID":9238175,"Points":10347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35868","ServerKey":"pl181","X":664,"Y":412},{"Bonus":0,"Continent":"K66","ID":35869,"Name":"A049","PlayerID":9023703,"Points":8668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35869","ServerKey":"pl181","X":615,"Y":647},{"Bonus":0,"Continent":"K35","ID":35870,"Name":"AAA","PlayerID":1006847,"Points":7618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35870","ServerKey":"pl181","X":547,"Y":317},{"Bonus":0,"Continent":"K46","ID":35871,"Name":"130 Brzustowa-Hofek","PlayerID":699491076,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35871","ServerKey":"pl181","X":659,"Y":401},{"Bonus":0,"Continent":"K63","ID":35872,"Name":"D.013","PlayerID":849088243,"Points":8485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35872","ServerKey":"pl181","X":391,"Y":655},{"Bonus":0,"Continent":"K63","ID":35873,"Name":"A 097","PlayerID":699342219,"Points":3984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35873","ServerKey":"pl181","X":370,"Y":632},{"Bonus":0,"Continent":"K65","ID":35874,"Name":"*047","PlayerID":699567608,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35874","ServerKey":"pl181","X":595,"Y":655},{"Bonus":0,"Continent":"K36","ID":35875,"Name":"Ameryczka","PlayerID":7340529,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35875","ServerKey":"pl181","X":619,"Y":354},{"Bonus":0,"Continent":"K35","ID":35877,"Name":"070KK","PlayerID":849063849,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35877","ServerKey":"pl181","X":586,"Y":337},{"Bonus":0,"Continent":"K63","ID":35878,"Name":"132","PlayerID":699269923,"Points":5765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35878","ServerKey":"pl181","X":392,"Y":650},{"Bonus":0,"Continent":"K34","ID":35879,"Name":"Winterhome.006","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35879","ServerKey":"pl181","X":498,"Y":314},{"Bonus":0,"Continent":"K65","ID":35880,"Name":"Barka","PlayerID":699567608,"Points":8876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35880","ServerKey":"pl181","X":584,"Y":670},{"Bonus":0,"Continent":"K53","ID":35881,"Name":"(005)Narak","PlayerID":849098695,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35881","ServerKey":"pl181","X":324,"Y":567},{"Bonus":0,"Continent":"K53","ID":35883,"Name":"Wioska barbarzyƄska","PlayerID":849046232,"Points":9104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35883","ServerKey":"pl181","X":335,"Y":582},{"Bonus":0,"Continent":"K35","ID":35884,"Name":"- Dragon2","PlayerID":699825236,"Points":4178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35884","ServerKey":"pl181","X":542,"Y":323},{"Bonus":0,"Continent":"K34","ID":35885,"Name":".achim.","PlayerID":6936607,"Points":8334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35885","ServerKey":"pl181","X":486,"Y":315},{"Bonus":1,"Continent":"K33","ID":35886,"Name":"*092*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35886","ServerKey":"pl181","X":358,"Y":376},{"Bonus":0,"Continent":"K46","ID":35887,"Name":"20. Madryt","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35887","ServerKey":"pl181","X":685,"Y":486},{"Bonus":0,"Continent":"K64","ID":35888,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35888","ServerKey":"pl181","X":466,"Y":686},{"Bonus":0,"Continent":"K66","ID":35889,"Name":"#040#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35889","ServerKey":"pl181","X":628,"Y":636},{"Bonus":0,"Continent":"K33","ID":35890,"Name":"*109*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35890","ServerKey":"pl181","X":359,"Y":376},{"Bonus":0,"Continent":"K63","ID":35891,"Name":"0167","PlayerID":7085510,"Points":4375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35891","ServerKey":"pl181","X":370,"Y":638},{"Bonus":0,"Continent":"K46","ID":35892,"Name":"*040*","PlayerID":698670524,"Points":2217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35892","ServerKey":"pl181","X":667,"Y":416},{"Bonus":0,"Continent":"K35","ID":35893,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":5468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35893","ServerKey":"pl181","X":576,"Y":328},{"Bonus":0,"Continent":"K56","ID":35894,"Name":"Optyk","PlayerID":848932879,"Points":7644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35894","ServerKey":"pl181","X":678,"Y":548},{"Bonus":0,"Continent":"K64","ID":35895,"Name":"024 Hengfors","PlayerID":699834004,"Points":3492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35895","ServerKey":"pl181","X":478,"Y":686},{"Bonus":0,"Continent":"K35","ID":35896,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":6379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35896","ServerKey":"pl181","X":587,"Y":336},{"Bonus":0,"Continent":"K33","ID":35897,"Name":"Marudernia","PlayerID":849027025,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35897","ServerKey":"pl181","X":371,"Y":360},{"Bonus":0,"Continent":"K43","ID":35898,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35898","ServerKey":"pl181","X":317,"Y":460},{"Bonus":0,"Continent":"K65","ID":35900,"Name":"031","PlayerID":2293376,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35900","ServerKey":"pl181","X":535,"Y":680},{"Bonus":0,"Continent":"K33","ID":35901,"Name":"*091*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35901","ServerKey":"pl181","X":361,"Y":372},{"Bonus":0,"Continent":"K65","ID":35902,"Name":"ƚmieszki","PlayerID":3454753,"Points":9024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35902","ServerKey":"pl181","X":537,"Y":615},{"Bonus":0,"Continent":"K43","ID":35903,"Name":"Out of Touch","PlayerID":698962117,"Points":10076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35903","ServerKey":"pl181","X":328,"Y":429},{"Bonus":0,"Continent":"K65","ID":35904,"Name":"Wioska barbarzyƄska","PlayerID":8501514,"Points":6180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35904","ServerKey":"pl181","X":515,"Y":685},{"Bonus":0,"Continent":"K43","ID":35905,"Name":"Out of Touch","PlayerID":698962117,"Points":8255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35905","ServerKey":"pl181","X":326,"Y":431},{"Bonus":0,"Continent":"K46","ID":35906,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35906","ServerKey":"pl181","X":688,"Y":492},{"Bonus":0,"Continent":"K56","ID":35907,"Name":"065","PlayerID":849095227,"Points":6026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35907","ServerKey":"pl181","X":674,"Y":555},{"Bonus":0,"Continent":"K43","ID":35908,"Name":"WƛciekƂa Pyra","PlayerID":699821629,"Points":6845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35908","ServerKey":"pl181","X":325,"Y":442},{"Bonus":0,"Continent":"K35","ID":35909,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35909","ServerKey":"pl181","X":579,"Y":329},{"Bonus":0,"Continent":"K56","ID":35910,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35910","ServerKey":"pl181","X":684,"Y":512},{"Bonus":0,"Continent":"K63","ID":35911,"Name":"A 098","PlayerID":699342219,"Points":5505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35911","ServerKey":"pl181","X":371,"Y":634},{"Bonus":0,"Continent":"K63","ID":35912,"Name":"Komornicy 006","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35912","ServerKey":"pl181","X":351,"Y":609},{"Bonus":0,"Continent":"K53","ID":35913,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35913","ServerKey":"pl181","X":345,"Y":599},{"Bonus":0,"Continent":"K64","ID":35914,"Name":"**INTERTWINED*","PlayerID":698704189,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35914","ServerKey":"pl181","X":499,"Y":684},{"Bonus":0,"Continent":"K65","ID":35915,"Name":"Podgrodzie","PlayerID":698723158,"Points":3874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35915","ServerKey":"pl181","X":578,"Y":672},{"Bonus":0,"Continent":"K33","ID":35916,"Name":"Wioska 01","PlayerID":3372959,"Points":3725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35916","ServerKey":"pl181","X":349,"Y":387},{"Bonus":0,"Continent":"K56","ID":35917,"Name":"*5612*cc NajdƂuĆŒszy zasięg","PlayerID":7973893,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35917","ServerKey":"pl181","X":671,"Y":581},{"Bonus":0,"Continent":"K33","ID":35918,"Name":"*073*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35918","ServerKey":"pl181","X":347,"Y":394},{"Bonus":0,"Continent":"K46","ID":35919,"Name":"Jehu_Kingdom_71","PlayerID":8785314,"Points":9098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35919","ServerKey":"pl181","X":666,"Y":421},{"Bonus":0,"Continent":"K56","ID":35920,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35920","ServerKey":"pl181","X":683,"Y":512},{"Bonus":0,"Continent":"K56","ID":35921,"Name":"Wioska barbarzyƄska","PlayerID":478956,"Points":3130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35921","ServerKey":"pl181","X":668,"Y":576},{"Bonus":0,"Continent":"K53","ID":35922,"Name":"035","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35922","ServerKey":"pl181","X":334,"Y":587},{"Bonus":0,"Continent":"K65","ID":35923,"Name":"0312","PlayerID":698659980,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35923","ServerKey":"pl181","X":547,"Y":677},{"Bonus":5,"Continent":"K65","ID":35924,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":9255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35924","ServerKey":"pl181","X":512,"Y":684},{"Bonus":0,"Continent":"K34","ID":35925,"Name":"#0123 tomek791103","PlayerID":1238300,"Points":8033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35925","ServerKey":"pl181","X":478,"Y":320},{"Bonus":0,"Continent":"K65","ID":35926,"Name":"AG04","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35926","ServerKey":"pl181","X":592,"Y":665},{"Bonus":0,"Continent":"K43","ID":35927,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35927","ServerKey":"pl181","X":315,"Y":483},{"Bonus":0,"Continent":"K65","ID":35928,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":7566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35928","ServerKey":"pl181","X":517,"Y":687},{"Bonus":0,"Continent":"K53","ID":35929,"Name":"Upa","PlayerID":849012521,"Points":4745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35929","ServerKey":"pl181","X":328,"Y":563},{"Bonus":0,"Continent":"K53","ID":35930,"Name":"ehhh no","PlayerID":9167250,"Points":6134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35930","ServerKey":"pl181","X":396,"Y":556},{"Bonus":0,"Continent":"K65","ID":35931,"Name":"106","PlayerID":849097799,"Points":8707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35931","ServerKey":"pl181","X":592,"Y":662},{"Bonus":0,"Continent":"K56","ID":35932,"Name":"005","PlayerID":699493750,"Points":4156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35932","ServerKey":"pl181","X":672,"Y":564},{"Bonus":0,"Continent":"K46","ID":35933,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35933","ServerKey":"pl181","X":681,"Y":486},{"Bonus":0,"Continent":"K66","ID":35934,"Name":"#069#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35934","ServerKey":"pl181","X":637,"Y":629},{"Bonus":0,"Continent":"K34","ID":35935,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35935","ServerKey":"pl181","X":432,"Y":329},{"Bonus":0,"Continent":"K65","ID":35936,"Name":"- 185 - SS","PlayerID":849018239,"Points":6933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35936","ServerKey":"pl181","X":550,"Y":682},{"Bonus":0,"Continent":"K36","ID":35937,"Name":"013","PlayerID":1990750,"Points":7978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35937","ServerKey":"pl181","X":608,"Y":352},{"Bonus":0,"Continent":"K33","ID":35938,"Name":"Szlachcic","PlayerID":3484132,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35938","ServerKey":"pl181","X":396,"Y":350},{"Bonus":0,"Continent":"K63","ID":35939,"Name":"Pd 01","PlayerID":272173,"Points":6883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35939","ServerKey":"pl181","X":361,"Y":629},{"Bonus":0,"Continent":"K35","ID":35940,"Name":"Winterhome.018","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35940","ServerKey":"pl181","X":501,"Y":312},{"Bonus":0,"Continent":"K35","ID":35941,"Name":"010 Lothric","PlayerID":1990750,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35941","ServerKey":"pl181","X":521,"Y":312},{"Bonus":0,"Continent":"K63","ID":35942,"Name":"Aa to co ?","PlayerID":7183372,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35942","ServerKey":"pl181","X":344,"Y":605},{"Bonus":0,"Continent":"K33","ID":35943,"Name":"*146*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35943","ServerKey":"pl181","X":341,"Y":396},{"Bonus":0,"Continent":"K46","ID":35944,"Name":"**10**","PlayerID":849098782,"Points":10998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35944","ServerKey":"pl181","X":669,"Y":430},{"Bonus":0,"Continent":"K56","ID":35945,"Name":"063","PlayerID":849095227,"Points":6626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35945","ServerKey":"pl181","X":682,"Y":547},{"Bonus":0,"Continent":"K53","ID":35946,"Name":"Piskorz","PlayerID":699265922,"Points":4279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35946","ServerKey":"pl181","X":322,"Y":552},{"Bonus":0,"Continent":"K43","ID":35947,"Name":"Dream on","PlayerID":698962117,"Points":9072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35947","ServerKey":"pl181","X":311,"Y":497},{"Bonus":0,"Continent":"K33","ID":35948,"Name":"*148*","PlayerID":699273451,"Points":6765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35948","ServerKey":"pl181","X":345,"Y":399},{"Bonus":7,"Continent":"K43","ID":35949,"Name":"Dream on","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35949","ServerKey":"pl181","X":310,"Y":497},{"Bonus":0,"Continent":"K56","ID":35950,"Name":"RĂłd smoka","PlayerID":8096537,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35950","ServerKey":"pl181","X":690,"Y":511},{"Bonus":5,"Continent":"K43","ID":35951,"Name":"Out of Touch","PlayerID":698962117,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35951","ServerKey":"pl181","X":324,"Y":437},{"Bonus":0,"Continent":"K65","ID":35952,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":6596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35952","ServerKey":"pl181","X":521,"Y":688},{"Bonus":0,"Continent":"K36","ID":35953,"Name":"=|05|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35953","ServerKey":"pl181","X":645,"Y":386},{"Bonus":0,"Continent":"K56","ID":35954,"Name":"C02","PlayerID":848995478,"Points":4766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35954","ServerKey":"pl181","X":687,"Y":537},{"Bonus":0,"Continent":"K66","ID":35955,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35955","ServerKey":"pl181","X":638,"Y":619},{"Bonus":0,"Continent":"K56","ID":35956,"Name":"Wioska 072","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35956","ServerKey":"pl181","X":662,"Y":598},{"Bonus":0,"Continent":"K53","ID":35957,"Name":"wysypisko ƛmieci","PlayerID":699364813,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35957","ServerKey":"pl181","X":321,"Y":551},{"Bonus":0,"Continent":"K34","ID":35958,"Name":"052.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35958","ServerKey":"pl181","X":453,"Y":317},{"Bonus":7,"Continent":"K43","ID":35959,"Name":"Y | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35959","ServerKey":"pl181","X":318,"Y":487},{"Bonus":0,"Continent":"K43","ID":35960,"Name":"Out of Touch","PlayerID":698962117,"Points":3127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35960","ServerKey":"pl181","X":323,"Y":436},{"Bonus":0,"Continent":"K56","ID":35961,"Name":"$BostonCeltics","PlayerID":699795378,"Points":7891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35961","ServerKey":"pl181","X":690,"Y":509},{"Bonus":0,"Continent":"K35","ID":35962,"Name":".achim.","PlayerID":6936607,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35962","ServerKey":"pl181","X":536,"Y":392},{"Bonus":0,"Continent":"K46","ID":35963,"Name":"[013] Bąkopierdy","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35963","ServerKey":"pl181","X":671,"Y":437},{"Bonus":0,"Continent":"K56","ID":35964,"Name":"Opole!","PlayerID":848932879,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35964","ServerKey":"pl181","X":680,"Y":553},{"Bonus":0,"Continent":"K66","ID":35965,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35965","ServerKey":"pl181","X":648,"Y":611},{"Bonus":0,"Continent":"K56","ID":35966,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35966","ServerKey":"pl181","X":677,"Y":542},{"Bonus":0,"Continent":"K33","ID":35967,"Name":"*035*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35967","ServerKey":"pl181","X":346,"Y":397},{"Bonus":0,"Continent":"K53","ID":35968,"Name":"C0039","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35968","ServerKey":"pl181","X":310,"Y":513},{"Bonus":0,"Continent":"K43","ID":35969,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35969","ServerKey":"pl181","X":318,"Y":469},{"Bonus":0,"Continent":"K45","ID":35970,"Name":"Szlachcic","PlayerID":699098531,"Points":8709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35970","ServerKey":"pl181","X":506,"Y":473},{"Bonus":0,"Continent":"K66","ID":35971,"Name":"BSK1","PlayerID":849066044,"Points":9098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35971","ServerKey":"pl181","X":650,"Y":613},{"Bonus":9,"Continent":"K63","ID":35972,"Name":"0166","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35972","ServerKey":"pl181","X":376,"Y":640},{"Bonus":0,"Continent":"K56","ID":35973,"Name":"002 Ceris","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35973","ServerKey":"pl181","X":661,"Y":591},{"Bonus":0,"Continent":"K66","ID":35974,"Name":"Wioska 068","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35974","ServerKey":"pl181","X":652,"Y":611},{"Bonus":0,"Continent":"K65","ID":35975,"Name":"Muchomor *001*","PlayerID":606407,"Points":9015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35975","ServerKey":"pl181","X":516,"Y":688},{"Bonus":0,"Continent":"K65","ID":35976,"Name":"040","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35976","ServerKey":"pl181","X":538,"Y":684},{"Bonus":0,"Continent":"K43","ID":35977,"Name":"Out of Touch","PlayerID":698962117,"Points":4881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35977","ServerKey":"pl181","X":322,"Y":442},{"Bonus":0,"Continent":"K65","ID":35978,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":8524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35978","ServerKey":"pl181","X":523,"Y":682},{"Bonus":0,"Continent":"K63","ID":35979,"Name":"--06--","PlayerID":8877156,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35979","ServerKey":"pl181","X":346,"Y":604},{"Bonus":0,"Continent":"K34","ID":35980,"Name":"Winterhome.046","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35980","ServerKey":"pl181","X":492,"Y":311},{"Bonus":7,"Continent":"K53","ID":35981,"Name":"(029)Desh","PlayerID":849098695,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35981","ServerKey":"pl181","X":322,"Y":560},{"Bonus":0,"Continent":"K56","ID":35982,"Name":"Wioska Lisseks","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35982","ServerKey":"pl181","X":663,"Y":597},{"Bonus":0,"Continent":"K35","ID":35983,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35983","ServerKey":"pl181","X":519,"Y":312},{"Bonus":0,"Continent":"K36","ID":35984,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":7110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35984","ServerKey":"pl181","X":604,"Y":343},{"Bonus":0,"Continent":"K65","ID":35985,"Name":"- 203 - SS","PlayerID":849018239,"Points":7053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35985","ServerKey":"pl181","X":536,"Y":682},{"Bonus":0,"Continent":"K64","ID":35986,"Name":"Rosetta","PlayerID":849089459,"Points":2869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35986","ServerKey":"pl181","X":408,"Y":657},{"Bonus":0,"Continent":"K36","ID":35987,"Name":"Suppi","PlayerID":7462660,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35987","ServerKey":"pl181","X":602,"Y":350},{"Bonus":0,"Continent":"K56","ID":35988,"Name":"Didek","PlayerID":849070946,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35988","ServerKey":"pl181","X":674,"Y":567},{"Bonus":0,"Continent":"K34","ID":35989,"Name":"#0159 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35989","ServerKey":"pl181","X":482,"Y":317},{"Bonus":0,"Continent":"K63","ID":35990,"Name":"Szymon9410","PlayerID":699269923,"Points":8082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35990","ServerKey":"pl181","X":391,"Y":656},{"Bonus":1,"Continent":"K33","ID":35991,"Name":"*027*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35991","ServerKey":"pl181","X":348,"Y":392},{"Bonus":0,"Continent":"K45","ID":35992,"Name":"[123] North23","PlayerID":848985692,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35992","ServerKey":"pl181","X":575,"Y":473},{"Bonus":0,"Continent":"K35","ID":35993,"Name":"Winterhome.014","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35993","ServerKey":"pl181","X":510,"Y":313},{"Bonus":0,"Continent":"K46","ID":35994,"Name":"08. Oslo","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35994","ServerKey":"pl181","X":687,"Y":483},{"Bonus":0,"Continent":"K43","ID":35995,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35995","ServerKey":"pl181","X":319,"Y":470},{"Bonus":0,"Continent":"K36","ID":35996,"Name":"!!36 50 xxx","PlayerID":698361257,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35996","ServerKey":"pl181","X":607,"Y":354},{"Bonus":0,"Continent":"K64","ID":35997,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":8395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35997","ServerKey":"pl181","X":419,"Y":664},{"Bonus":0,"Continent":"K34","ID":35998,"Name":"#0127 korniczeks","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35998","ServerKey":"pl181","X":470,"Y":319},{"Bonus":0,"Continent":"K43","ID":35999,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":5174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=35999","ServerKey":"pl181","X":322,"Y":456},{"Bonus":0,"Continent":"K34","ID":36000,"Name":"228","PlayerID":7271812,"Points":3484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36000","ServerKey":"pl181","X":421,"Y":335},{"Bonus":0,"Continent":"K35","ID":36001,"Name":"AAA","PlayerID":1006847,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36001","ServerKey":"pl181","X":543,"Y":319},{"Bonus":0,"Continent":"K56","ID":36002,"Name":"095 Tomek","PlayerID":2135129,"Points":4714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36002","ServerKey":"pl181","X":683,"Y":517},{"Bonus":0,"Continent":"K35","ID":36003,"Name":"Wioska barbarzyƄska","PlayerID":6118079,"Points":5009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36003","ServerKey":"pl181","X":507,"Y":317},{"Bonus":0,"Continent":"K35","ID":36004,"Name":".achim.","PlayerID":6936607,"Points":10946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36004","ServerKey":"pl181","X":535,"Y":392},{"Bonus":0,"Continent":"K66","ID":36005,"Name":"#020#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36005","ServerKey":"pl181","X":626,"Y":634},{"Bonus":0,"Continent":"K63","ID":36006,"Name":"A 024","PlayerID":699342219,"Points":4086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36006","ServerKey":"pl181","X":366,"Y":629},{"Bonus":0,"Continent":"K56","ID":36007,"Name":"006 Aberon","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36007","ServerKey":"pl181","X":660,"Y":595},{"Bonus":0,"Continent":"K43","ID":36008,"Name":"Rubiez14","PlayerID":699265922,"Points":7429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36008","ServerKey":"pl181","X":313,"Y":481},{"Bonus":0,"Continent":"K55","ID":36009,"Name":"071 Chybik tu byƂ","PlayerID":699373599,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36009","ServerKey":"pl181","X":586,"Y":589},{"Bonus":0,"Continent":"K34","ID":36010,"Name":"215","PlayerID":7271812,"Points":7073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36010","ServerKey":"pl181","X":430,"Y":325},{"Bonus":0,"Continent":"K53","ID":36011,"Name":"KocpoƂuch 4","PlayerID":848949597,"Points":3882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36011","ServerKey":"pl181","X":329,"Y":578},{"Bonus":0,"Continent":"K66","ID":36012,"Name":"OFF","PlayerID":849014413,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36012","ServerKey":"pl181","X":655,"Y":600},{"Bonus":0,"Continent":"K34","ID":36013,"Name":"Lecymy DUR","PlayerID":6169408,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36013","ServerKey":"pl181","X":432,"Y":360},{"Bonus":4,"Continent":"K36","ID":36014,"Name":"003","PlayerID":1018357,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36014","ServerKey":"pl181","X":601,"Y":348},{"Bonus":0,"Continent":"K53","ID":36016,"Name":"(013)Jah Keved","PlayerID":849098695,"Points":8900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36016","ServerKey":"pl181","X":327,"Y":569},{"Bonus":0,"Continent":"K65","ID":36017,"Name":"- 188 - SS","PlayerID":849018239,"Points":7761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36017","ServerKey":"pl181","X":549,"Y":681},{"Bonus":0,"Continent":"K53","ID":36019,"Name":"002","PlayerID":7183372,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36019","ServerKey":"pl181","X":342,"Y":598},{"Bonus":0,"Continent":"K65","ID":36020,"Name":"013","PlayerID":2293376,"Points":9431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36020","ServerKey":"pl181","X":531,"Y":680},{"Bonus":0,"Continent":"K56","ID":36021,"Name":"_PUSTA !","PlayerID":699628084,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36021","ServerKey":"pl181","X":678,"Y":547},{"Bonus":0,"Continent":"K64","ID":36022,"Name":"Z|011| Wioska VIIII","PlayerID":699393742,"Points":7915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36022","ServerKey":"pl181","X":455,"Y":679},{"Bonus":0,"Continent":"K65","ID":36023,"Name":"RTS 13","PlayerID":848995242,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36023","ServerKey":"pl181","X":578,"Y":620},{"Bonus":0,"Continent":"K65","ID":36024,"Name":"PoƂudnie.008","PlayerID":873575,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36024","ServerKey":"pl181","X":554,"Y":682},{"Bonus":0,"Continent":"K33","ID":36025,"Name":"Szlachcic","PlayerID":3484132,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36025","ServerKey":"pl181","X":395,"Y":346},{"Bonus":0,"Continent":"K35","ID":36026,"Name":"AAA","PlayerID":1006847,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36026","ServerKey":"pl181","X":542,"Y":315},{"Bonus":0,"Continent":"K34","ID":36027,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":9865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36027","ServerKey":"pl181","X":420,"Y":335},{"Bonus":0,"Continent":"K46","ID":36028,"Name":"069 Wioska 020","PlayerID":9238175,"Points":8349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36028","ServerKey":"pl181","X":661,"Y":414},{"Bonus":0,"Continent":"K65","ID":36029,"Name":"- 194 - SS","PlayerID":849018239,"Points":6776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36029","ServerKey":"pl181","X":530,"Y":687},{"Bonus":0,"Continent":"K65","ID":36030,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36030","ServerKey":"pl181","X":524,"Y":680},{"Bonus":0,"Continent":"K46","ID":36031,"Name":"25. F-H-X","PlayerID":699804790,"Points":8555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36031","ServerKey":"pl181","X":682,"Y":478},{"Bonus":0,"Continent":"K33","ID":36032,"Name":"*005*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36032","ServerKey":"pl181","X":353,"Y":391},{"Bonus":0,"Continent":"K43","ID":36033,"Name":"Wioska barbarzyƄska","PlayerID":699823490,"Points":7259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36033","ServerKey":"pl181","X":313,"Y":479},{"Bonus":0,"Continent":"K36","ID":36034,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":5044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36034","ServerKey":"pl181","X":603,"Y":344},{"Bonus":0,"Continent":"K65","ID":36035,"Name":"|028| Nowa Zelandia","PlayerID":2585846,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36035","ServerKey":"pl181","X":508,"Y":686},{"Bonus":4,"Continent":"K36","ID":36036,"Name":"060.","PlayerID":849094609,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36036","ServerKey":"pl181","X":651,"Y":393},{"Bonus":0,"Continent":"K53","ID":36037,"Name":"C0059","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36037","ServerKey":"pl181","X":315,"Y":510},{"Bonus":0,"Continent":"K43","ID":36038,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36038","ServerKey":"pl181","X":318,"Y":451},{"Bonus":0,"Continent":"K56","ID":36039,"Name":"C 003","PlayerID":8078914,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36039","ServerKey":"pl181","X":682,"Y":519},{"Bonus":0,"Continent":"K34","ID":36040,"Name":"174...Segadorr_M","PlayerID":6920960,"Points":10602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36040","ServerKey":"pl181","X":443,"Y":323},{"Bonus":0,"Continent":"K66","ID":36041,"Name":"Sony 911","PlayerID":1415009,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36041","ServerKey":"pl181","X":623,"Y":639},{"Bonus":0,"Continent":"K33","ID":36042,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36042","ServerKey":"pl181","X":388,"Y":351},{"Bonus":0,"Continent":"K56","ID":36044,"Name":"Wioska Zorro 011","PlayerID":849080702,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36044","ServerKey":"pl181","X":664,"Y":583},{"Bonus":0,"Continent":"K56","ID":36045,"Name":"P015 Svargrond","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36045","ServerKey":"pl181","X":660,"Y":508},{"Bonus":0,"Continent":"K63","ID":36046,"Name":"{37} Wieƛ GliƄsk","PlayerID":849096945,"Points":2713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36046","ServerKey":"pl181","X":368,"Y":636},{"Bonus":9,"Continent":"K66","ID":36047,"Name":"#055#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36047","ServerKey":"pl181","X":638,"Y":629},{"Bonus":0,"Continent":"K36","ID":36048,"Name":"-005- ChwaƂa Imperium","PlayerID":849099276,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36048","ServerKey":"pl181","X":618,"Y":358},{"Bonus":0,"Continent":"K46","ID":36049,"Name":"[034] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36049","ServerKey":"pl181","X":673,"Y":419},{"Bonus":0,"Continent":"K56","ID":36050,"Name":"C03","PlayerID":848995478,"Points":6391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36050","ServerKey":"pl181","X":687,"Y":535},{"Bonus":0,"Continent":"K46","ID":36051,"Name":"WƂadcy PóƂnocy 04","PlayerID":699379895,"Points":6889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36051","ServerKey":"pl181","X":690,"Y":497},{"Bonus":0,"Continent":"K65","ID":36052,"Name":"2.Ronda","PlayerID":698215322,"Points":4480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36052","ServerKey":"pl181","X":567,"Y":673},{"Bonus":0,"Continent":"K53","ID":36053,"Name":"003","PlayerID":849097898,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36053","ServerKey":"pl181","X":324,"Y":560},{"Bonus":0,"Continent":"K35","ID":36054,"Name":"AAA","PlayerID":1006847,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36054","ServerKey":"pl181","X":526,"Y":320},{"Bonus":0,"Continent":"K56","ID":36055,"Name":"C04","PlayerID":848995478,"Points":3128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36055","ServerKey":"pl181","X":685,"Y":537},{"Bonus":0,"Continent":"K63","ID":36056,"Name":"Wioska barbarzyƄska1a","PlayerID":699269923,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36056","ServerKey":"pl181","X":394,"Y":657},{"Bonus":0,"Continent":"K35","ID":36058,"Name":"TWIERDZA #3","PlayerID":849063793,"Points":3410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36058","ServerKey":"pl181","X":583,"Y":337},{"Bonus":0,"Continent":"K64","ID":36059,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":2134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36059","ServerKey":"pl181","X":410,"Y":658},{"Bonus":0,"Continent":"K46","ID":36060,"Name":"09. Berlin","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36060","ServerKey":"pl181","X":684,"Y":483},{"Bonus":0,"Continent":"K36","ID":36062,"Name":"Taran 036","PlayerID":699098531,"Points":7645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36062","ServerKey":"pl181","X":641,"Y":380},{"Bonus":0,"Continent":"K43","ID":36063,"Name":"~ MIEDĆčYƃ ~","PlayerID":698540331,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36063","ServerKey":"pl181","X":320,"Y":445},{"Bonus":0,"Continent":"K64","ID":36064,"Name":"|059| Barba","PlayerID":699393742,"Points":7058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36064","ServerKey":"pl181","X":496,"Y":682},{"Bonus":0,"Continent":"K36","ID":36065,"Name":"Taran 014","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36065","ServerKey":"pl181","X":644,"Y":379},{"Bonus":0,"Continent":"K35","ID":36067,"Name":"002 Choroszcz","PlayerID":849099054,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36067","ServerKey":"pl181","X":529,"Y":316},{"Bonus":0,"Continent":"K65","ID":36068,"Name":"0273","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36068","ServerKey":"pl181","X":559,"Y":677},{"Bonus":0,"Continent":"K64","ID":36069,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36069","ServerKey":"pl181","X":417,"Y":664},{"Bonus":0,"Continent":"K66","ID":36070,"Name":"#068#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36070","ServerKey":"pl181","X":633,"Y":631},{"Bonus":0,"Continent":"K33","ID":36071,"Name":"Szlachcic","PlayerID":3484132,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36071","ServerKey":"pl181","X":385,"Y":348},{"Bonus":0,"Continent":"K65","ID":36072,"Name":"AG09","PlayerID":699876345,"Points":9322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36072","ServerKey":"pl181","X":588,"Y":667},{"Bonus":0,"Continent":"K33","ID":36073,"Name":"z 181-A004","PlayerID":3909522,"Points":8470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36073","ServerKey":"pl181","X":353,"Y":380},{"Bonus":0,"Continent":"K63","ID":36074,"Name":"Piechy","PlayerID":699864013,"Points":6244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36074","ServerKey":"pl181","X":354,"Y":618},{"Bonus":0,"Continent":"K66","ID":36075,"Name":"#013#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36075","ServerKey":"pl181","X":629,"Y":640},{"Bonus":0,"Continent":"K35","ID":36076,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36076","ServerKey":"pl181","X":585,"Y":331},{"Bonus":0,"Continent":"K34","ID":36077,"Name":".achim.","PlayerID":6936607,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36077","ServerKey":"pl181","X":487,"Y":315},{"Bonus":0,"Continent":"K43","ID":36078,"Name":"006. Malce","PlayerID":698807570,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36078","ServerKey":"pl181","X":339,"Y":402},{"Bonus":8,"Continent":"K56","ID":36079,"Name":"001 Du Weldenvarden","PlayerID":8337151,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36079","ServerKey":"pl181","X":662,"Y":595},{"Bonus":0,"Continent":"K64","ID":36080,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36080","ServerKey":"pl181","X":472,"Y":682},{"Bonus":0,"Continent":"K33","ID":36082,"Name":"#! Szlachcic","PlayerID":698160606,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36082","ServerKey":"pl181","X":383,"Y":352},{"Bonus":0,"Continent":"K46","ID":36083,"Name":"BrzeĆșno","PlayerID":7973893,"Points":7829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36083","ServerKey":"pl181","X":666,"Y":408},{"Bonus":0,"Continent":"K35","ID":36084,"Name":"005 Maka Paka","PlayerID":699576407,"Points":1679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36084","ServerKey":"pl181","X":594,"Y":341},{"Bonus":0,"Continent":"K66","ID":36085,"Name":"Ć»UBR .::.Adaczu/04","PlayerID":33900,"Points":6632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36085","ServerKey":"pl181","X":620,"Y":646},{"Bonus":0,"Continent":"K43","ID":36086,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":8398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36086","ServerKey":"pl181","X":326,"Y":426},{"Bonus":0,"Continent":"K46","ID":36087,"Name":"**27**","PlayerID":849098782,"Points":10480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36087","ServerKey":"pl181","X":675,"Y":434},{"Bonus":0,"Continent":"K33","ID":36088,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36088","ServerKey":"pl181","X":391,"Y":349},{"Bonus":0,"Continent":"K43","ID":36089,"Name":"Out of Touch","PlayerID":698962117,"Points":2860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36089","ServerKey":"pl181","X":323,"Y":433},{"Bonus":0,"Continent":"K43","ID":36090,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36090","ServerKey":"pl181","X":319,"Y":466},{"Bonus":0,"Continent":"K33","ID":36091,"Name":"*114*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36091","ServerKey":"pl181","X":361,"Y":382},{"Bonus":0,"Continent":"K35","ID":36092,"Name":"- Dragon","PlayerID":699825236,"Points":6943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36092","ServerKey":"pl181","X":546,"Y":324},{"Bonus":0,"Continent":"K46","ID":36093,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36093","ServerKey":"pl181","X":688,"Y":466},{"Bonus":0,"Continent":"K33","ID":36094,"Name":"*031*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36094","ServerKey":"pl181","X":348,"Y":393},{"Bonus":0,"Continent":"K56","ID":36095,"Name":"TWIERDZA .:073:.","PlayerID":7154207,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36095","ServerKey":"pl181","X":676,"Y":560},{"Bonus":0,"Continent":"K53","ID":36096,"Name":"C0182","PlayerID":8841266,"Points":9327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36096","ServerKey":"pl181","X":320,"Y":532},{"Bonus":0,"Continent":"K35","ID":36097,"Name":"AAA","PlayerID":1006847,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36097","ServerKey":"pl181","X":529,"Y":320},{"Bonus":0,"Continent":"K35","ID":36098,"Name":"005. Trop","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36098","ServerKey":"pl181","X":562,"Y":322},{"Bonus":0,"Continent":"K53","ID":36099,"Name":"Wioska barbarzyƄska","PlayerID":3990066,"Points":4143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36099","ServerKey":"pl181","X":338,"Y":584},{"Bonus":0,"Continent":"K53","ID":36100,"Name":"013 FF","PlayerID":7097727,"Points":1775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36100","ServerKey":"pl181","X":318,"Y":501},{"Bonus":0,"Continent":"K63","ID":36101,"Name":"Taran","PlayerID":6180190,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36101","ServerKey":"pl181","X":342,"Y":604},{"Bonus":0,"Continent":"K46","ID":36102,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36102","ServerKey":"pl181","X":685,"Y":494},{"Bonus":0,"Continent":"K65","ID":36103,"Name":"035","PlayerID":2293376,"Points":9514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36103","ServerKey":"pl181","X":529,"Y":687},{"Bonus":0,"Continent":"K36","ID":36104,"Name":"012.","PlayerID":699098531,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36104","ServerKey":"pl181","X":639,"Y":376},{"Bonus":0,"Continent":"K34","ID":36105,"Name":"049.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36105","ServerKey":"pl181","X":447,"Y":322},{"Bonus":0,"Continent":"K53","ID":36106,"Name":"002","PlayerID":698356304,"Points":6569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36106","ServerKey":"pl181","X":310,"Y":505},{"Bonus":0,"Continent":"K46","ID":36107,"Name":"I092","PlayerID":699722599,"Points":8648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36107","ServerKey":"pl181","X":682,"Y":446},{"Bonus":0,"Continent":"K43","ID":36108,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36108","ServerKey":"pl181","X":314,"Y":460},{"Bonus":0,"Continent":"K33","ID":36109,"Name":"Szlachcic","PlayerID":698160606,"Points":8092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36109","ServerKey":"pl181","X":398,"Y":345},{"Bonus":0,"Continent":"K36","ID":36110,"Name":"1004","PlayerID":699150527,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36110","ServerKey":"pl181","X":617,"Y":359},{"Bonus":0,"Continent":"K56","ID":36111,"Name":"O28 Elva","PlayerID":699272880,"Points":10812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36111","ServerKey":"pl181","X":677,"Y":547},{"Bonus":0,"Continent":"K33","ID":36112,"Name":"*122*","PlayerID":699273451,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36112","ServerKey":"pl181","X":361,"Y":379},{"Bonus":0,"Continent":"K64","ID":36115,"Name":"008","PlayerID":848953066,"Points":5056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36115","ServerKey":"pl181","X":485,"Y":690},{"Bonus":0,"Continent":"K33","ID":36116,"Name":"Szlachcic","PlayerID":698160606,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36116","ServerKey":"pl181","X":383,"Y":355},{"Bonus":0,"Continent":"K64","ID":36117,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36117","ServerKey":"pl181","X":428,"Y":675},{"Bonus":0,"Continent":"K33","ID":36118,"Name":"BULWAR","PlayerID":3484132,"Points":6563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36118","ServerKey":"pl181","X":399,"Y":349},{"Bonus":0,"Continent":"K43","ID":36119,"Name":"New Land 22","PlayerID":849064752,"Points":2618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36119","ServerKey":"pl181","X":340,"Y":413},{"Bonus":0,"Continent":"K53","ID":36120,"Name":"C0270","PlayerID":8841266,"Points":5777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36120","ServerKey":"pl181","X":318,"Y":508},{"Bonus":0,"Continent":"K64","ID":36121,"Name":"Ave Why!","PlayerID":699121671,"Points":3610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36121","ServerKey":"pl181","X":481,"Y":686},{"Bonus":0,"Continent":"K65","ID":36122,"Name":"0401","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36122","ServerKey":"pl181","X":561,"Y":681},{"Bonus":0,"Continent":"K35","ID":36123,"Name":"Lord Lord Franek .#175","PlayerID":698420691,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36123","ServerKey":"pl181","X":519,"Y":319},{"Bonus":0,"Continent":"K56","ID":36124,"Name":"Tesa 13","PlayerID":698845189,"Points":7255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36124","ServerKey":"pl181","X":605,"Y":516},{"Bonus":0,"Continent":"K34","ID":36125,"Name":"???","PlayerID":698489071,"Points":9055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36125","ServerKey":"pl181","X":475,"Y":312},{"Bonus":0,"Continent":"K66","ID":36126,"Name":"_PUSTA","PlayerID":698768565,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36126","ServerKey":"pl181","X":660,"Y":603},{"Bonus":0,"Continent":"K36","ID":36127,"Name":"009 Kingsthorpe","PlayerID":699580120,"Points":7977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36127","ServerKey":"pl181","X":604,"Y":344},{"Bonus":0,"Continent":"K46","ID":36128,"Name":"[042] Wioska barbarzyƄska","PlayerID":849095068,"Points":9274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36128","ServerKey":"pl181","X":674,"Y":435},{"Bonus":0,"Continent":"K56","ID":36129,"Name":"Grvvyq 113k$","PlayerID":699676005,"Points":7292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36129","ServerKey":"pl181","X":682,"Y":534},{"Bonus":4,"Continent":"K43","ID":36130,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36130","ServerKey":"pl181","X":314,"Y":469},{"Bonus":0,"Continent":"K56","ID":36131,"Name":"Sekou","PlayerID":699737356,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36131","ServerKey":"pl181","X":681,"Y":516},{"Bonus":0,"Continent":"K64","ID":36132,"Name":"cos cos","PlayerID":8966820,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36132","ServerKey":"pl181","X":436,"Y":679},{"Bonus":0,"Continent":"K64","ID":36133,"Name":"008 Utah","PlayerID":699238479,"Points":4058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36133","ServerKey":"pl181","X":489,"Y":684},{"Bonus":2,"Continent":"K36","ID":36134,"Name":"Den Bosch","PlayerID":9103424,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36134","ServerKey":"pl181","X":620,"Y":359},{"Bonus":0,"Continent":"K64","ID":36135,"Name":"psycha sitting","PlayerID":699736927,"Points":8704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36135","ServerKey":"pl181","X":425,"Y":673},{"Bonus":0,"Continent":"K63","ID":36136,"Name":"MaleƄstwo","PlayerID":699269923,"Points":9865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36136","ServerKey":"pl181","X":386,"Y":650},{"Bonus":0,"Continent":"K65","ID":36137,"Name":"14. Aeris Gainsborough","PlayerID":8199417,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36137","ServerKey":"pl181","X":524,"Y":614},{"Bonus":0,"Continent":"K53","ID":36138,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36138","ServerKey":"pl181","X":321,"Y":538},{"Bonus":0,"Continent":"K46","ID":36139,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36139","ServerKey":"pl181","X":686,"Y":493},{"Bonus":0,"Continent":"K46","ID":36140,"Name":"029Wioska barbarzyƄska","PlayerID":849098769,"Points":7462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36140","ServerKey":"pl181","X":682,"Y":452},{"Bonus":0,"Continent":"K46","ID":36141,"Name":"053 Wioska 002","PlayerID":9238175,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36141","ServerKey":"pl181","X":663,"Y":413},{"Bonus":0,"Continent":"K63","ID":36142,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36142","ServerKey":"pl181","X":348,"Y":605},{"Bonus":0,"Continent":"K56","ID":36143,"Name":"Wyjƛcie Awaryjne","PlayerID":848932879,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36143","ServerKey":"pl181","X":682,"Y":552},{"Bonus":0,"Continent":"K66","ID":36144,"Name":"Ronin P","PlayerID":698768565,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36144","ServerKey":"pl181","X":637,"Y":627},{"Bonus":0,"Continent":"K56","ID":36145,"Name":"AGA2","PlayerID":699598425,"Points":7894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36145","ServerKey":"pl181","X":684,"Y":504},{"Bonus":0,"Continent":"K35","ID":36146,"Name":"AAA","PlayerID":1006847,"Points":11156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36146","ServerKey":"pl181","X":549,"Y":323},{"Bonus":0,"Continent":"K34","ID":36147,"Name":"Winterhome.021","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36147","ServerKey":"pl181","X":498,"Y":313},{"Bonus":0,"Continent":"K54","ID":36148,"Name":"0192","PlayerID":698971484,"Points":7442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36148","ServerKey":"pl181","X":474,"Y":545},{"Bonus":0,"Continent":"K35","ID":36149,"Name":"31. Nawzajem","PlayerID":849099696,"Points":6429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36149","ServerKey":"pl181","X":557,"Y":320},{"Bonus":0,"Continent":"K55","ID":36150,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36150","ServerKey":"pl181","X":576,"Y":591},{"Bonus":0,"Continent":"K35","ID":36151,"Name":"J#012","PlayerID":2065730,"Points":5037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36151","ServerKey":"pl181","X":576,"Y":331},{"Bonus":0,"Continent":"K43","ID":36152,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36152","ServerKey":"pl181","X":319,"Y":485},{"Bonus":0,"Continent":"K35","ID":36153,"Name":"AAA","PlayerID":1006847,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36153","ServerKey":"pl181","X":542,"Y":321},{"Bonus":0,"Continent":"K66","ID":36154,"Name":"04 Batat","PlayerID":8224678,"Points":6223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36154","ServerKey":"pl181","X":642,"Y":614},{"Bonus":0,"Continent":"K53","ID":36155,"Name":"Wegorz","PlayerID":699265922,"Points":3873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36155","ServerKey":"pl181","X":318,"Y":547},{"Bonus":0,"Continent":"K65","ID":36156,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36156","ServerKey":"pl181","X":504,"Y":687},{"Bonus":8,"Continent":"K35","ID":36157,"Name":"Winterhome.017","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36157","ServerKey":"pl181","X":500,"Y":314},{"Bonus":0,"Continent":"K35","ID":36158,"Name":"Winterhome.019","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36158","ServerKey":"pl181","X":503,"Y":312},{"Bonus":0,"Continent":"K66","ID":36159,"Name":"#042#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36159","ServerKey":"pl181","X":629,"Y":634},{"Bonus":5,"Continent":"K56","ID":36160,"Name":"40k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36160","ServerKey":"pl181","X":673,"Y":564},{"Bonus":0,"Continent":"K35","ID":36161,"Name":"AAA","PlayerID":1006847,"Points":7584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36161","ServerKey":"pl181","X":525,"Y":318},{"Bonus":0,"Continent":"K35","ID":36162,"Name":"0040","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36162","ServerKey":"pl181","X":569,"Y":322},{"Bonus":0,"Continent":"K35","ID":36163,"Name":"10 Nowa Cytadela","PlayerID":849108780,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36163","ServerKey":"pl181","X":561,"Y":326},{"Bonus":0,"Continent":"K66","ID":36164,"Name":"#008#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36164","ServerKey":"pl181","X":621,"Y":645},{"Bonus":0,"Continent":"K65","ID":36165,"Name":"START 01","PlayerID":699567608,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36165","ServerKey":"pl181","X":579,"Y":671},{"Bonus":0,"Continent":"K53","ID":36166,"Name":"005","PlayerID":849012521,"Points":4917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36166","ServerKey":"pl181","X":325,"Y":558},{"Bonus":0,"Continent":"K66","ID":36167,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":5072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36167","ServerKey":"pl181","X":653,"Y":603},{"Bonus":3,"Continent":"K35","ID":36168,"Name":"AAA","PlayerID":1006847,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36168","ServerKey":"pl181","X":531,"Y":318},{"Bonus":0,"Continent":"K46","ID":36170,"Name":"I064","PlayerID":699722599,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36170","ServerKey":"pl181","X":687,"Y":468},{"Bonus":0,"Continent":"K34","ID":36171,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36171","ServerKey":"pl181","X":433,"Y":327},{"Bonus":0,"Continent":"K65","ID":36172,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36172","ServerKey":"pl181","X":500,"Y":686},{"Bonus":0,"Continent":"K55","ID":36173,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36173","ServerKey":"pl181","X":571,"Y":576},{"Bonus":0,"Continent":"K56","ID":36174,"Name":"_PUSTA+","PlayerID":699628084,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36174","ServerKey":"pl181","X":675,"Y":549},{"Bonus":0,"Continent":"K43","ID":36175,"Name":"*170*","PlayerID":699273451,"Points":9083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36175","ServerKey":"pl181","X":334,"Y":409},{"Bonus":0,"Continent":"K36","ID":36176,"Name":"Minas Tirith","PlayerID":699857387,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36176","ServerKey":"pl181","X":629,"Y":362},{"Bonus":0,"Continent":"K43","ID":36177,"Name":"Parole","PlayerID":699595556,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36177","ServerKey":"pl181","X":337,"Y":410},{"Bonus":0,"Continent":"K35","ID":36178,"Name":"08 Twierdza PóƂnocna","PlayerID":849108780,"Points":4191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36178","ServerKey":"pl181","X":565,"Y":328},{"Bonus":0,"Continent":"K43","ID":36179,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36179","ServerKey":"pl181","X":319,"Y":460},{"Bonus":0,"Continent":"K35","ID":36180,"Name":"Wioska barbarzyƄska","PlayerID":849106785,"Points":2080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36180","ServerKey":"pl181","X":563,"Y":326},{"Bonus":0,"Continent":"K65","ID":36181,"Name":"kathare","PlayerID":873575,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36181","ServerKey":"pl181","X":550,"Y":645},{"Bonus":0,"Continent":"K34","ID":36182,"Name":"Wioska barbarzyƄska","PlayerID":849048216,"Points":2906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36182","ServerKey":"pl181","X":476,"Y":315},{"Bonus":0,"Continent":"K63","ID":36183,"Name":"Ć»elazny deff","PlayerID":699805839,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36183","ServerKey":"pl181","X":361,"Y":625},{"Bonus":0,"Continent":"K64","ID":36184,"Name":"002 Desant","PlayerID":699745265,"Points":8725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36184","ServerKey":"pl181","X":482,"Y":689},{"Bonus":0,"Continent":"K34","ID":36185,"Name":"6.Novorepnoye","PlayerID":849098648,"Points":6379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36185","ServerKey":"pl181","X":422,"Y":325},{"Bonus":0,"Continent":"K53","ID":36186,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36186","ServerKey":"pl181","X":340,"Y":553},{"Bonus":0,"Continent":"K65","ID":36187,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":4767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36187","ServerKey":"pl181","X":527,"Y":685},{"Bonus":0,"Continent":"K56","ID":36188,"Name":"Didek","PlayerID":849070946,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36188","ServerKey":"pl181","X":676,"Y":565},{"Bonus":0,"Continent":"K56","ID":36189,"Name":"WschĂłd Droga 005","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36189","ServerKey":"pl181","X":673,"Y":570},{"Bonus":0,"Continent":"K33","ID":36190,"Name":"Szlachcic","PlayerID":3484132,"Points":9504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36190","ServerKey":"pl181","X":395,"Y":344},{"Bonus":0,"Continent":"K66","ID":36191,"Name":"#070#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36191","ServerKey":"pl181","X":634,"Y":628},{"Bonus":0,"Continent":"K33","ID":36192,"Name":"Szlachcic","PlayerID":698160606,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36192","ServerKey":"pl181","X":377,"Y":354},{"Bonus":0,"Continent":"K65","ID":36193,"Name":"Muchomor *008*","PlayerID":606407,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36193","ServerKey":"pl181","X":515,"Y":684},{"Bonus":0,"Continent":"K34","ID":36194,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36194","ServerKey":"pl181","X":421,"Y":336},{"Bonus":0,"Continent":"K64","ID":36195,"Name":"No.24","PlayerID":698826986,"Points":6154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36195","ServerKey":"pl181","X":477,"Y":683},{"Bonus":0,"Continent":"K56","ID":36196,"Name":"C 017","PlayerID":8078914,"Points":7009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36196","ServerKey":"pl181","X":689,"Y":522},{"Bonus":0,"Continent":"K65","ID":36197,"Name":"- 159 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36197","ServerKey":"pl181","X":544,"Y":685},{"Bonus":0,"Continent":"K35","ID":36198,"Name":"AAA","PlayerID":1006847,"Points":7071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36198","ServerKey":"pl181","X":540,"Y":319},{"Bonus":0,"Continent":"K66","ID":36199,"Name":"A020","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36199","ServerKey":"pl181","X":607,"Y":657},{"Bonus":0,"Continent":"K43","ID":36200,"Name":"Lord Nc3dyh 1","PlayerID":699509284,"Points":5738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36200","ServerKey":"pl181","X":320,"Y":442},{"Bonus":0,"Continent":"K33","ID":36201,"Name":"!#Szlachcic","PlayerID":698160606,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36201","ServerKey":"pl181","X":380,"Y":352},{"Bonus":0,"Continent":"K35","ID":36202,"Name":"AAA","PlayerID":1006847,"Points":8545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36202","ServerKey":"pl181","X":549,"Y":317},{"Bonus":0,"Continent":"K56","ID":36203,"Name":"C 008","PlayerID":8078914,"Points":7055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36203","ServerKey":"pl181","X":686,"Y":516},{"Bonus":0,"Continent":"K63","ID":36204,"Name":"Komornicy 012","PlayerID":699336777,"Points":4600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36204","ServerKey":"pl181","X":351,"Y":611},{"Bonus":0,"Continent":"K43","ID":36205,"Name":"Out of Touch","PlayerID":698962117,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36205","ServerKey":"pl181","X":326,"Y":434},{"Bonus":0,"Continent":"K43","ID":36206,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36206","ServerKey":"pl181","X":315,"Y":489},{"Bonus":8,"Continent":"K56","ID":36207,"Name":"*5615* Winchester","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36207","ServerKey":"pl181","X":673,"Y":558},{"Bonus":0,"Continent":"K34","ID":36208,"Name":"#0082 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36208","ServerKey":"pl181","X":465,"Y":342},{"Bonus":0,"Continent":"K43","ID":36209,"Name":"New Land 20","PlayerID":849064752,"Points":3395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36209","ServerKey":"pl181","X":345,"Y":401},{"Bonus":0,"Continent":"K35","ID":36210,"Name":"B024","PlayerID":699208929,"Points":5483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36210","ServerKey":"pl181","X":517,"Y":312},{"Bonus":0,"Continent":"K34","ID":36211,"Name":".achim.","PlayerID":6936607,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36211","ServerKey":"pl181","X":487,"Y":317},{"Bonus":0,"Continent":"K56","ID":36212,"Name":"O65 Yongan","PlayerID":699272880,"Points":10548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36212","ServerKey":"pl181","X":676,"Y":556},{"Bonus":0,"Continent":"K34","ID":36213,"Name":".achim.","PlayerID":6936607,"Points":9844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36213","ServerKey":"pl181","X":485,"Y":315},{"Bonus":1,"Continent":"K34","ID":36214,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36214","ServerKey":"pl181","X":431,"Y":324},{"Bonus":0,"Continent":"K53","ID":36215,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36215","ServerKey":"pl181","X":309,"Y":500},{"Bonus":0,"Continent":"K36","ID":36216,"Name":"Zadupie","PlayerID":848924219,"Points":1923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36216","ServerKey":"pl181","X":634,"Y":365},{"Bonus":0,"Continent":"K56","ID":36218,"Name":"Cmentarz WrocƂawska","PlayerID":848932879,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36218","ServerKey":"pl181","X":682,"Y":548},{"Bonus":0,"Continent":"K64","ID":36219,"Name":"|070| BlackBird 5","PlayerID":699393742,"Points":8315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36219","ServerKey":"pl181","X":492,"Y":690},{"Bonus":1,"Continent":"K64","ID":36220,"Name":"Ave Why!","PlayerID":698585370,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36220","ServerKey":"pl181","X":450,"Y":682},{"Bonus":0,"Continent":"K36","ID":36221,"Name":"=|52|=","PlayerID":9101574,"Points":2781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36221","ServerKey":"pl181","X":641,"Y":381},{"Bonus":0,"Continent":"K56","ID":36222,"Name":"TWIERDZA .:023:.","PlayerID":7154207,"Points":10299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36222","ServerKey":"pl181","X":679,"Y":563},{"Bonus":0,"Continent":"K44","ID":36223,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":3150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36223","ServerKey":"pl181","X":436,"Y":445},{"Bonus":0,"Continent":"K36","ID":36224,"Name":"159 Nocny Jastrząb 004","PlayerID":699491076,"Points":7936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36224","ServerKey":"pl181","X":656,"Y":398},{"Bonus":0,"Continent":"K66","ID":36225,"Name":"Zamek Kurowej","PlayerID":1900364,"Points":2878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36225","ServerKey":"pl181","X":654,"Y":607},{"Bonus":0,"Continent":"K34","ID":36227,"Name":"#0236 deleted","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36227","ServerKey":"pl181","X":474,"Y":343},{"Bonus":0,"Continent":"K35","ID":36228,"Name":"017 Byrgenwerth","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36228","ServerKey":"pl181","X":522,"Y":311},{"Bonus":0,"Continent":"K33","ID":36229,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36229","ServerKey":"pl181","X":395,"Y":350},{"Bonus":0,"Continent":"K53","ID":36231,"Name":"(035)Kharbranth","PlayerID":849098695,"Points":5272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36231","ServerKey":"pl181","X":332,"Y":575},{"Bonus":0,"Continent":"K43","ID":36232,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36232","ServerKey":"pl181","X":321,"Y":462},{"Bonus":0,"Continent":"K56","ID":36233,"Name":"C06","PlayerID":848995478,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36233","ServerKey":"pl181","X":685,"Y":536},{"Bonus":0,"Continent":"K46","ID":36234,"Name":"18. Moskwa","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36234","ServerKey":"pl181","X":683,"Y":481},{"Bonus":0,"Continent":"K65","ID":36235,"Name":"Wioska dzikich zwierząt","PlayerID":699567608,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36235","ServerKey":"pl181","X":580,"Y":664},{"Bonus":0,"Continent":"K43","ID":36236,"Name":"Wioska 2","PlayerID":2418002,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36236","ServerKey":"pl181","X":331,"Y":425},{"Bonus":0,"Continent":"K33","ID":36237,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36237","ServerKey":"pl181","X":385,"Y":353},{"Bonus":0,"Continent":"K33","ID":36238,"Name":"*024*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36238","ServerKey":"pl181","X":356,"Y":387},{"Bonus":0,"Continent":"K46","ID":36239,"Name":"BACÓWKA |043|","PlayerID":7394371,"Points":5875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36239","ServerKey":"pl181","X":667,"Y":411},{"Bonus":0,"Continent":"K46","ID":36240,"Name":"AGA4","PlayerID":699598425,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36240","ServerKey":"pl181","X":687,"Y":497},{"Bonus":0,"Continent":"K53","ID":36241,"Name":"Koza","PlayerID":699265922,"Points":4714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36241","ServerKey":"pl181","X":322,"Y":550},{"Bonus":0,"Continent":"K33","ID":36242,"Name":"Szlachcic","PlayerID":698160606,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36242","ServerKey":"pl181","X":381,"Y":352},{"Bonus":0,"Continent":"K35","ID":36243,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":4822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36243","ServerKey":"pl181","X":590,"Y":335},{"Bonus":0,"Continent":"K55","ID":36244,"Name":"PYRLANDIA 029 sobex510","PlayerID":33900,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36244","ServerKey":"pl181","X":564,"Y":588},{"Bonus":0,"Continent":"K46","ID":36245,"Name":"[029] Wioska barbarzyƄska","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36245","ServerKey":"pl181","X":673,"Y":438},{"Bonus":0,"Continent":"K34","ID":36246,"Name":"233","PlayerID":7271812,"Points":3967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36246","ServerKey":"pl181","X":422,"Y":329},{"Bonus":0,"Continent":"K64","ID":36247,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36247","ServerKey":"pl181","X":432,"Y":678},{"Bonus":0,"Continent":"K33","ID":36248,"Name":"*026*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36248","ServerKey":"pl181","X":348,"Y":391},{"Bonus":0,"Continent":"K53","ID":36249,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":6693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36249","ServerKey":"pl181","X":319,"Y":549},{"Bonus":0,"Continent":"K33","ID":36250,"Name":"z internacionale 33","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36250","ServerKey":"pl181","X":355,"Y":378},{"Bonus":0,"Continent":"K53","ID":36251,"Name":"RĂłzanka","PlayerID":699265922,"Points":2271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36251","ServerKey":"pl181","X":322,"Y":553},{"Bonus":0,"Continent":"K35","ID":36252,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":5290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36252","ServerKey":"pl181","X":586,"Y":336},{"Bonus":0,"Continent":"K35","ID":36253,"Name":"LordFrotto2","PlayerID":849106785,"Points":6450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36253","ServerKey":"pl181","X":563,"Y":327},{"Bonus":0,"Continent":"K53","ID":36254,"Name":"Twierdza 013","PlayerID":849099601,"Points":2582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36254","ServerKey":"pl181","X":316,"Y":550},{"Bonus":6,"Continent":"K43","ID":36255,"Name":"Dream on","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36255","ServerKey":"pl181","X":310,"Y":492},{"Bonus":0,"Continent":"K36","ID":36256,"Name":"25. Wioska Raukodel","PlayerID":9320272,"Points":2906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36256","ServerKey":"pl181","X":650,"Y":383},{"Bonus":0,"Continent":"K56","ID":36258,"Name":"*5612*a Wycieczka","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36258","ServerKey":"pl181","X":668,"Y":581},{"Bonus":0,"Continent":"K53","ID":36259,"Name":"Sieja","PlayerID":699265922,"Points":2617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36259","ServerKey":"pl181","X":321,"Y":548},{"Bonus":0,"Continent":"K46","ID":36260,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":9896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36260","ServerKey":"pl181","X":681,"Y":470},{"Bonus":0,"Continent":"K65","ID":36262,"Name":"064","PlayerID":2293376,"Points":8095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36262","ServerKey":"pl181","X":535,"Y":682},{"Bonus":0,"Continent":"K64","ID":36263,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36263","ServerKey":"pl181","X":429,"Y":672},{"Bonus":0,"Continent":"K53","ID":36264,"Name":"*005*. Rivia","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36264","ServerKey":"pl181","X":314,"Y":536},{"Bonus":0,"Continent":"K33","ID":36265,"Name":"Wioska Vintorez","PlayerID":849068108,"Points":8646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36265","ServerKey":"pl181","X":372,"Y":359},{"Bonus":0,"Continent":"K33","ID":36266,"Name":"z internacionale 08","PlayerID":3909522,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36266","ServerKey":"pl181","X":358,"Y":380},{"Bonus":6,"Continent":"K56","ID":36267,"Name":"C 001","PlayerID":8078914,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36267","ServerKey":"pl181","X":689,"Y":511},{"Bonus":0,"Continent":"K56","ID":36268,"Name":"WƂadcy PóƂnocy 05","PlayerID":699379895,"Points":6153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36268","ServerKey":"pl181","X":688,"Y":506},{"Bonus":0,"Continent":"K53","ID":36269,"Name":"Upa02","PlayerID":849012521,"Points":5350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36269","ServerKey":"pl181","X":327,"Y":564},{"Bonus":0,"Continent":"K45","ID":36270,"Name":"Wioska BarbarzyƄska","PlayerID":698867483,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36270","ServerKey":"pl181","X":544,"Y":481},{"Bonus":0,"Continent":"K56","ID":36271,"Name":"063. Rona","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36271","ServerKey":"pl181","X":665,"Y":596},{"Bonus":0,"Continent":"K35","ID":36272,"Name":"Wioska ukradziona","PlayerID":849063793,"Points":3359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36272","ServerKey":"pl181","X":597,"Y":340},{"Bonus":0,"Continent":"K64","ID":36273,"Name":"010 Desant","PlayerID":698620694,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36273","ServerKey":"pl181","X":481,"Y":687},{"Bonus":0,"Continent":"K46","ID":36274,"Name":"I063","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36274","ServerKey":"pl181","X":685,"Y":464},{"Bonus":0,"Continent":"K33","ID":36275,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36275","ServerKey":"pl181","X":387,"Y":350},{"Bonus":0,"Continent":"K56","ID":36276,"Name":"WschĂłd X4","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36276","ServerKey":"pl181","X":688,"Y":530},{"Bonus":0,"Continent":"K33","ID":36278,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36278","ServerKey":"pl181","X":394,"Y":352},{"Bonus":0,"Continent":"K34","ID":36279,"Name":"200...Segador","PlayerID":6920960,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36279","ServerKey":"pl181","X":457,"Y":314},{"Bonus":0,"Continent":"K65","ID":36280,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36280","ServerKey":"pl181","X":507,"Y":686},{"Bonus":0,"Continent":"K43","ID":36281,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36281","ServerKey":"pl181","X":317,"Y":498},{"Bonus":0,"Continent":"K66","ID":36282,"Name":"Wioska 086","PlayerID":848971079,"Points":7401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36282","ServerKey":"pl181","X":656,"Y":609},{"Bonus":0,"Continent":"K43","ID":36283,"Name":"Out of Touch","PlayerID":698962117,"Points":5757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36283","ServerKey":"pl181","X":320,"Y":437},{"Bonus":0,"Continent":"K34","ID":36285,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36285","ServerKey":"pl181","X":418,"Y":334},{"Bonus":0,"Continent":"K46","ID":36286,"Name":"**31**","PlayerID":849098782,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36286","ServerKey":"pl181","X":668,"Y":425},{"Bonus":0,"Continent":"K46","ID":36287,"Name":"041. nie zgadniesz jaka wioska","PlayerID":7494497,"Points":10462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36287","ServerKey":"pl181","X":688,"Y":473},{"Bonus":0,"Continent":"K65","ID":36288,"Name":"069","PlayerID":2293376,"Points":6796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36288","ServerKey":"pl181","X":543,"Y":685},{"Bonus":0,"Continent":"K56","ID":36289,"Name":"Wioska Zorro 014","PlayerID":849080702,"Points":8802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36289","ServerKey":"pl181","X":666,"Y":595},{"Bonus":0,"Continent":"K34","ID":36290,"Name":"Winterhome.035","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36290","ServerKey":"pl181","X":495,"Y":312},{"Bonus":0,"Continent":"K33","ID":36291,"Name":"BIRMINGAM","PlayerID":3484132,"Points":7325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36291","ServerKey":"pl181","X":397,"Y":349},{"Bonus":0,"Continent":"K65","ID":36292,"Name":"- 189 - SS","PlayerID":849018239,"Points":8712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36292","ServerKey":"pl181","X":533,"Y":683},{"Bonus":0,"Continent":"K35","ID":36293,"Name":"B023","PlayerID":699208929,"Points":7805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36293","ServerKey":"pl181","X":518,"Y":311},{"Bonus":0,"Continent":"K64","ID":36294,"Name":"Amon Sul","PlayerID":849004274,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36294","ServerKey":"pl181","X":460,"Y":679},{"Bonus":0,"Continent":"K43","ID":36295,"Name":"*182*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36295","ServerKey":"pl181","X":340,"Y":407},{"Bonus":0,"Continent":"K36","ID":36296,"Name":"014","PlayerID":8649412,"Points":7450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36296","ServerKey":"pl181","X":609,"Y":353},{"Bonus":0,"Continent":"K35","ID":36297,"Name":"AAA","PlayerID":1006847,"Points":5362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36297","ServerKey":"pl181","X":525,"Y":311},{"Bonus":0,"Continent":"K66","ID":36298,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36298","ServerKey":"pl181","X":638,"Y":620},{"Bonus":0,"Continent":"K43","ID":36299,"Name":"001. MilanĂłwek","PlayerID":849098966,"Points":7116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36299","ServerKey":"pl181","X":316,"Y":450},{"Bonus":0,"Continent":"K66","ID":36300,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36300","ServerKey":"pl181","X":646,"Y":619},{"Bonus":0,"Continent":"K56","ID":36301,"Name":"_PUSTA !","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36301","ServerKey":"pl181","X":686,"Y":541},{"Bonus":3,"Continent":"K66","ID":36302,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36302","ServerKey":"pl181","X":622,"Y":643},{"Bonus":0,"Continent":"K64","ID":36303,"Name":"R 025","PlayerID":699195358,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36303","ServerKey":"pl181","X":485,"Y":686},{"Bonus":0,"Continent":"K34","ID":36304,"Name":"fff","PlayerID":698239813,"Points":10864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36304","ServerKey":"pl181","X":490,"Y":317},{"Bonus":0,"Continent":"K66","ID":36305,"Name":"Wodogrzmoty MaƂe","PlayerID":1900364,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36305","ServerKey":"pl181","X":654,"Y":608},{"Bonus":0,"Continent":"K46","ID":36306,"Name":"090 Nowy Rok","PlayerID":699491076,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36306","ServerKey":"pl181","X":655,"Y":403},{"Bonus":0,"Continent":"K34","ID":36307,"Name":"#0203 Segadorr dar","PlayerID":1238300,"Points":8760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36307","ServerKey":"pl181","X":461,"Y":315},{"Bonus":8,"Continent":"K33","ID":36308,"Name":"*089*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36308","ServerKey":"pl181","X":359,"Y":382},{"Bonus":0,"Continent":"K53","ID":36309,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36309","ServerKey":"pl181","X":337,"Y":534},{"Bonus":0,"Continent":"K46","ID":36310,"Name":"Gattacka","PlayerID":699298370,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36310","ServerKey":"pl181","X":680,"Y":435},{"Bonus":0,"Continent":"K43","ID":36311,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36311","ServerKey":"pl181","X":319,"Y":468},{"Bonus":0,"Continent":"K46","ID":36312,"Name":"061 Wioska 013","PlayerID":9238175,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36312","ServerKey":"pl181","X":663,"Y":411},{"Bonus":0,"Continent":"K33","ID":36313,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36313","ServerKey":"pl181","X":392,"Y":351},{"Bonus":0,"Continent":"K35","ID":36314,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36314","ServerKey":"pl181","X":587,"Y":332},{"Bonus":0,"Continent":"K34","ID":36315,"Name":"181...SEGADOR","PlayerID":6920960,"Points":8011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36315","ServerKey":"pl181","X":442,"Y":320},{"Bonus":0,"Continent":"K46","ID":36316,"Name":"I058","PlayerID":699722599,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36316","ServerKey":"pl181","X":682,"Y":456},{"Bonus":0,"Continent":"K33","ID":36317,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36317","ServerKey":"pl181","X":386,"Y":349},{"Bonus":0,"Continent":"K65","ID":36318,"Name":"*101","PlayerID":699567608,"Points":9779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36318","ServerKey":"pl181","X":581,"Y":663},{"Bonus":0,"Continent":"K63","ID":36320,"Name":"A 037","PlayerID":699342219,"Points":3340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36320","ServerKey":"pl181","X":366,"Y":631},{"Bonus":0,"Continent":"K53","ID":36321,"Name":"(021)Emul","PlayerID":849098695,"Points":4275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36321","ServerKey":"pl181","X":326,"Y":561},{"Bonus":0,"Continent":"K53","ID":36322,"Name":"007","PlayerID":698356304,"Points":3268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36322","ServerKey":"pl181","X":310,"Y":508},{"Bonus":0,"Continent":"K66","ID":36323,"Name":"zzzGranica Bledu 13","PlayerID":699778867,"Points":6664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36323","ServerKey":"pl181","X":642,"Y":616},{"Bonus":0,"Continent":"K33","ID":36324,"Name":"z 181-A001 skasowano","PlayerID":3909522,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36324","ServerKey":"pl181","X":350,"Y":378},{"Bonus":0,"Continent":"K35","ID":36325,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":9224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36325","ServerKey":"pl181","X":523,"Y":312},{"Bonus":0,"Continent":"K65","ID":36326,"Name":"Auu 08","PlayerID":848995242,"Points":4984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36326","ServerKey":"pl181","X":576,"Y":667},{"Bonus":0,"Continent":"K35","ID":36327,"Name":"025 Haligtree","PlayerID":699208929,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36327","ServerKey":"pl181","X":517,"Y":311},{"Bonus":0,"Continent":"K63","ID":36328,"Name":"0167","PlayerID":1434753,"Points":6669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36328","ServerKey":"pl181","X":378,"Y":641},{"Bonus":0,"Continent":"K43","ID":36329,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36329","ServerKey":"pl181","X":326,"Y":424},{"Bonus":0,"Continent":"K53","ID":36330,"Name":"Szlachcic","PlayerID":698388578,"Points":7460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36330","ServerKey":"pl181","X":320,"Y":541},{"Bonus":0,"Continent":"K46","ID":36331,"Name":"[002] Kleksowo","PlayerID":849095068,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36331","ServerKey":"pl181","X":675,"Y":426},{"Bonus":0,"Continent":"K43","ID":36332,"Name":"W.O.S","PlayerID":8048374,"Points":6215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36332","ServerKey":"pl181","X":312,"Y":482},{"Bonus":0,"Continent":"K34","ID":36333,"Name":"#0282 olcixx","PlayerID":1238300,"Points":7610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36333","ServerKey":"pl181","X":467,"Y":312},{"Bonus":0,"Continent":"K36","ID":36334,"Name":"Walwaijk","PlayerID":9103424,"Points":7263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36334","ServerKey":"pl181","X":616,"Y":350},{"Bonus":0,"Continent":"K43","ID":36335,"Name":"Out of Touch","PlayerID":698962117,"Points":4109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36335","ServerKey":"pl181","X":330,"Y":432},{"Bonus":0,"Continent":"K64","ID":36336,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36336","ServerKey":"pl181","X":420,"Y":672},{"Bonus":0,"Continent":"K34","ID":36337,"Name":"Winterhome.049","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36337","ServerKey":"pl181","X":494,"Y":309},{"Bonus":0,"Continent":"K64","ID":36338,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36338","ServerKey":"pl181","X":405,"Y":663},{"Bonus":0,"Continent":"K65","ID":36339,"Name":"AG01","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36339","ServerKey":"pl181","X":591,"Y":665},{"Bonus":0,"Continent":"K64","ID":36340,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36340","ServerKey":"pl181","X":415,"Y":662},{"Bonus":0,"Continent":"K35","ID":36341,"Name":"AAA","PlayerID":1006847,"Points":7067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36341","ServerKey":"pl181","X":541,"Y":320},{"Bonus":9,"Continent":"K53","ID":36342,"Name":"Dream on","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36342","ServerKey":"pl181","X":312,"Y":503},{"Bonus":0,"Continent":"K36","ID":36343,"Name":"Klaudek19","PlayerID":849092309,"Points":3697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36343","ServerKey":"pl181","X":631,"Y":362},{"Bonus":3,"Continent":"K36","ID":36344,"Name":"Eindhoven","PlayerID":9103424,"Points":10398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36344","ServerKey":"pl181","X":618,"Y":352},{"Bonus":0,"Continent":"K66","ID":36345,"Name":"Ć»UBR PSYCHIATRYK 010","PlayerID":33900,"Points":5579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36345","ServerKey":"pl181","X":616,"Y":644},{"Bonus":0,"Continent":"K65","ID":36346,"Name":"111","PlayerID":849097799,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36346","ServerKey":"pl181","X":591,"Y":668},{"Bonus":5,"Continent":"K46","ID":36347,"Name":"03. Helsinki","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36347","ServerKey":"pl181","X":685,"Y":484},{"Bonus":0,"Continent":"K53","ID":36348,"Name":"009","PlayerID":7097727,"Points":6555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36348","ServerKey":"pl181","X":313,"Y":507},{"Bonus":0,"Continent":"K65","ID":36349,"Name":"~071.","PlayerID":7139820,"Points":7202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36349","ServerKey":"pl181","X":529,"Y":689},{"Bonus":0,"Continent":"K46","ID":36351,"Name":"[027] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36351","ServerKey":"pl181","X":672,"Y":436},{"Bonus":0,"Continent":"K64","ID":36352,"Name":"A006","PlayerID":8954402,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36352","ServerKey":"pl181","X":496,"Y":691},{"Bonus":0,"Continent":"K56","ID":36353,"Name":"B02","PlayerID":848995478,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36353","ServerKey":"pl181","X":688,"Y":552},{"Bonus":0,"Continent":"K66","ID":36354,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":3075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36354","ServerKey":"pl181","X":647,"Y":612},{"Bonus":4,"Continent":"K66","ID":36355,"Name":"Osada koczownikĂłw xxx","PlayerID":1900364,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36355","ServerKey":"pl181","X":658,"Y":606},{"Bonus":0,"Continent":"K34","ID":36356,"Name":"186...Segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36356","ServerKey":"pl181","X":456,"Y":322},{"Bonus":0,"Continent":"K33","ID":36357,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36357","ServerKey":"pl181","X":387,"Y":345},{"Bonus":0,"Continent":"K35","ID":36358,"Name":"Ilonka","PlayerID":849061374,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36358","ServerKey":"pl181","X":597,"Y":338},{"Bonus":0,"Continent":"K53","ID":36359,"Name":"Wonderwall","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36359","ServerKey":"pl181","X":325,"Y":551},{"Bonus":0,"Continent":"K43","ID":36360,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36360","ServerKey":"pl181","X":336,"Y":477},{"Bonus":0,"Continent":"K64","ID":36361,"Name":"013 Kalifornia","PlayerID":699238479,"Points":8204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36361","ServerKey":"pl181","X":495,"Y":683},{"Bonus":0,"Continent":"K34","ID":36362,"Name":"007Wioska barbarzyƄska","PlayerID":699406776,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36362","ServerKey":"pl181","X":400,"Y":337},{"Bonus":0,"Continent":"K65","ID":36363,"Name":"Wyspa_11","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36363","ServerKey":"pl181","X":508,"Y":689},{"Bonus":0,"Continent":"K64","ID":36364,"Name":"O0016","PlayerID":699781762,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36364","ServerKey":"pl181","X":499,"Y":687},{"Bonus":0,"Continent":"K36","ID":36365,"Name":"Trochę tego będzie","PlayerID":849041192,"Points":3317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36365","ServerKey":"pl181","X":651,"Y":387},{"Bonus":0,"Continent":"K36","ID":36366,"Name":"Wioska barbarzyƄska GĂłra","PlayerID":699857387,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36366","ServerKey":"pl181","X":627,"Y":361},{"Bonus":1,"Continent":"K34","ID":36367,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36367","ServerKey":"pl181","X":430,"Y":331},{"Bonus":0,"Continent":"K35","ID":36368,"Name":"007","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36368","ServerKey":"pl181","X":525,"Y":316},{"Bonus":0,"Continent":"K64","ID":36369,"Name":"psycha sitting","PlayerID":699736927,"Points":5388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36369","ServerKey":"pl181","X":402,"Y":660},{"Bonus":0,"Continent":"K34","ID":36370,"Name":"171...Segadorr","PlayerID":6920960,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36370","ServerKey":"pl181","X":441,"Y":325},{"Bonus":0,"Continent":"K66","ID":36371,"Name":"Ć»UBRAWKA 055","PlayerID":33900,"Points":10451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36371","ServerKey":"pl181","X":612,"Y":644},{"Bonus":8,"Continent":"K53","ID":36372,"Name":"C0166","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36372","ServerKey":"pl181","X":317,"Y":510},{"Bonus":0,"Continent":"K43","ID":36374,"Name":"New Land 21","PlayerID":849064752,"Points":3316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36374","ServerKey":"pl181","X":337,"Y":402},{"Bonus":3,"Continent":"K34","ID":36375,"Name":"K34 - [151] Before Land","PlayerID":699088769,"Points":9226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36375","ServerKey":"pl181","X":473,"Y":316},{"Bonus":0,"Continent":"K34","ID":36376,"Name":"Winterhome.013","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36376","ServerKey":"pl181","X":498,"Y":312},{"Bonus":0,"Continent":"K36","ID":36377,"Name":"Wioska joƂ","PlayerID":849061374,"Points":8391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36377","ServerKey":"pl181","X":627,"Y":369},{"Bonus":0,"Continent":"K43","ID":36378,"Name":"Lord Nc3dyh","PlayerID":699509284,"Points":9292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36378","ServerKey":"pl181","X":319,"Y":442},{"Bonus":0,"Continent":"K65","ID":36379,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36379","ServerKey":"pl181","X":567,"Y":679},{"Bonus":0,"Continent":"K65","ID":36380,"Name":"2.Sabadell","PlayerID":698215322,"Points":5047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36380","ServerKey":"pl181","X":582,"Y":672},{"Bonus":0,"Continent":"K46","ID":36381,"Name":"[052] Malzahar 2","PlayerID":849095068,"Points":6432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36381","ServerKey":"pl181","X":676,"Y":433},{"Bonus":0,"Continent":"K56","ID":36382,"Name":"Nowa 46","PlayerID":698702991,"Points":8030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36382","ServerKey":"pl181","X":665,"Y":579},{"Bonus":0,"Continent":"K33","ID":36383,"Name":"B-01","PlayerID":698160606,"Points":7417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36383","ServerKey":"pl181","X":384,"Y":350},{"Bonus":0,"Continent":"K64","ID":36384,"Name":"#Forza 02","PlayerID":699849210,"Points":9672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36384","ServerKey":"pl181","X":436,"Y":668},{"Bonus":0,"Continent":"K65","ID":36385,"Name":"0269","PlayerID":698659980,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36385","ServerKey":"pl181","X":548,"Y":678},{"Bonus":0,"Continent":"K36","ID":36386,"Name":"Ujek","PlayerID":1086351,"Points":7829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36386","ServerKey":"pl181","X":655,"Y":398},{"Bonus":0,"Continent":"K63","ID":36387,"Name":"Taran","PlayerID":6180190,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36387","ServerKey":"pl181","X":340,"Y":605},{"Bonus":9,"Continent":"K33","ID":36388,"Name":"PrĂłszkĂłw1","PlayerID":849099434,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36388","ServerKey":"pl181","X":371,"Y":364},{"Bonus":0,"Continent":"K43","ID":36389,"Name":"Out of Touch","PlayerID":698962117,"Points":6011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36389","ServerKey":"pl181","X":324,"Y":438},{"Bonus":0,"Continent":"K64","ID":36390,"Name":"Ave Why!","PlayerID":699121671,"Points":4638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36390","ServerKey":"pl181","X":489,"Y":686},{"Bonus":0,"Continent":"K56","ID":36391,"Name":"#0139 Rose","PlayerID":9272054,"Points":5199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36391","ServerKey":"pl181","X":631,"Y":589},{"Bonus":0,"Continent":"K53","ID":36392,"Name":"Dream on","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36392","ServerKey":"pl181","X":310,"Y":501},{"Bonus":0,"Continent":"K66","ID":36393,"Name":"A016","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36393","ServerKey":"pl181","X":612,"Y":652},{"Bonus":0,"Continent":"K43","ID":36394,"Name":"Wioska 5","PlayerID":2418002,"Points":5748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36394","ServerKey":"pl181","X":332,"Y":427},{"Bonus":0,"Continent":"K43","ID":36395,"Name":"015","PlayerID":7097727,"Points":4046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36395","ServerKey":"pl181","X":317,"Y":496},{"Bonus":0,"Continent":"K36","ID":36396,"Name":"Wyspa 013","PlayerID":699756210,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36396","ServerKey":"pl181","X":620,"Y":379},{"Bonus":0,"Continent":"K33","ID":36397,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36397","ServerKey":"pl181","X":372,"Y":361},{"Bonus":0,"Continent":"K35","ID":36398,"Name":"29. Legacy","PlayerID":849099696,"Points":7131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36398","ServerKey":"pl181","X":558,"Y":319},{"Bonus":0,"Continent":"K64","ID":36399,"Name":"psycha sitting","PlayerID":699736927,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36399","ServerKey":"pl181","X":425,"Y":670},{"Bonus":2,"Continent":"K63","ID":36400,"Name":"Pd 09","PlayerID":272173,"Points":9039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36400","ServerKey":"pl181","X":362,"Y":630},{"Bonus":0,"Continent":"K56","ID":36401,"Name":"016.","PlayerID":8900955,"Points":5286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36401","ServerKey":"pl181","X":606,"Y":555},{"Bonus":0,"Continent":"K34","ID":36402,"Name":"052","PlayerID":698739350,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36402","ServerKey":"pl181","X":494,"Y":379},{"Bonus":0,"Continent":"K34","ID":36403,"Name":"#0201 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36403","ServerKey":"pl181","X":458,"Y":314},{"Bonus":0,"Continent":"K34","ID":36404,"Name":"176...Segador-M","PlayerID":6920960,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36404","ServerKey":"pl181","X":442,"Y":327},{"Bonus":0,"Continent":"K66","ID":36405,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36405","ServerKey":"pl181","X":649,"Y":611},{"Bonus":0,"Continent":"K34","ID":36406,"Name":"221","PlayerID":7271812,"Points":3896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36406","ServerKey":"pl181","X":421,"Y":330},{"Bonus":0,"Continent":"K56","ID":36407,"Name":"D09","PlayerID":848995478,"Points":11191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36407","ServerKey":"pl181","X":682,"Y":555},{"Bonus":0,"Continent":"K34","ID":36408,"Name":".achim.","PlayerID":6936607,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36408","ServerKey":"pl181","X":487,"Y":314},{"Bonus":0,"Continent":"K64","ID":36409,"Name":"1.01","PlayerID":699827112,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36409","ServerKey":"pl181","X":428,"Y":676},{"Bonus":0,"Continent":"K56","ID":36410,"Name":"032","PlayerID":6160655,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36410","ServerKey":"pl181","X":676,"Y":571},{"Bonus":0,"Continent":"K35","ID":36411,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36411","ServerKey":"pl181","X":576,"Y":330},{"Bonus":0,"Continent":"K66","ID":36412,"Name":"#179#","PlayerID":692803,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36412","ServerKey":"pl181","X":643,"Y":618},{"Bonus":0,"Continent":"K35","ID":36413,"Name":"AAA","PlayerID":1006847,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36413","ServerKey":"pl181","X":545,"Y":314},{"Bonus":0,"Continent":"K66","ID":36414,"Name":"Wioska 080","PlayerID":848971079,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36414","ServerKey":"pl181","X":659,"Y":606},{"Bonus":0,"Continent":"K53","ID":36415,"Name":"Dream on","PlayerID":698962117,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36415","ServerKey":"pl181","X":311,"Y":502},{"Bonus":0,"Continent":"K65","ID":36416,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36416","ServerKey":"pl181","X":519,"Y":667},{"Bonus":0,"Continent":"K46","ID":36417,"Name":"Wioska Biboj94","PlayerID":699574408,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36417","ServerKey":"pl181","X":682,"Y":472},{"Bonus":0,"Continent":"K65","ID":36418,"Name":"Wioska b","PlayerID":6121024,"Points":5551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36418","ServerKey":"pl181","X":558,"Y":677},{"Bonus":0,"Continent":"K53","ID":36419,"Name":"Koloryzowane","PlayerID":698338524,"Points":5436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36419","ServerKey":"pl181","X":326,"Y":573},{"Bonus":0,"Continent":"K53","ID":36420,"Name":"C0109","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36420","ServerKey":"pl181","X":314,"Y":532},{"Bonus":0,"Continent":"K64","ID":36421,"Name":"No.20","PlayerID":698826986,"Points":1694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36421","ServerKey":"pl181","X":473,"Y":682},{"Bonus":0,"Continent":"K56","ID":36422,"Name":"069. Illium","PlayerID":8337151,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36422","ServerKey":"pl181","X":661,"Y":587},{"Bonus":0,"Continent":"K34","ID":36423,"Name":"0151","PlayerID":699431255,"Points":9327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36423","ServerKey":"pl181","X":405,"Y":336},{"Bonus":0,"Continent":"K63","ID":36425,"Name":"Taran","PlayerID":6180190,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36425","ServerKey":"pl181","X":344,"Y":609},{"Bonus":0,"Continent":"K63","ID":36427,"Name":"{53} Cewice","PlayerID":849096945,"Points":2387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36427","ServerKey":"pl181","X":383,"Y":646},{"Bonus":0,"Continent":"K35","ID":36428,"Name":"11 Nowa Forteca","PlayerID":849108780,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36428","ServerKey":"pl181","X":561,"Y":325},{"Bonus":0,"Continent":"K56","ID":36429,"Name":"Grvvyq 106k$","PlayerID":699676005,"Points":7709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36429","ServerKey":"pl181","X":681,"Y":530},{"Bonus":0,"Continent":"K46","ID":36430,"Name":"I068","PlayerID":699722599,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36430","ServerKey":"pl181","X":685,"Y":469},{"Bonus":0,"Continent":"K64","ID":36431,"Name":"ZZZ","PlayerID":8980651,"Points":8975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36431","ServerKey":"pl181","X":463,"Y":692},{"Bonus":0,"Continent":"K33","ID":36432,"Name":"*016*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36432","ServerKey":"pl181","X":351,"Y":386},{"Bonus":0,"Continent":"K64","ID":36434,"Name":"|055| Szybenik","PlayerID":2585846,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36434","ServerKey":"pl181","X":499,"Y":691},{"Bonus":0,"Continent":"K34","ID":36435,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36435","ServerKey":"pl181","X":432,"Y":322},{"Bonus":5,"Continent":"K53","ID":36436,"Name":"005","PlayerID":7183372,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36436","ServerKey":"pl181","X":339,"Y":598},{"Bonus":0,"Continent":"K66","ID":36437,"Name":"OFF","PlayerID":849014413,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36437","ServerKey":"pl181","X":650,"Y":618},{"Bonus":0,"Continent":"K34","ID":36438,"Name":"201","PlayerID":7271812,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36438","ServerKey":"pl181","X":424,"Y":331},{"Bonus":0,"Continent":"K66","ID":36440,"Name":"_PUSTA","PlayerID":698768565,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36440","ServerKey":"pl181","X":654,"Y":600},{"Bonus":0,"Continent":"K64","ID":36441,"Name":"0.24","PlayerID":699827112,"Points":7099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36441","ServerKey":"pl181","X":463,"Y":685},{"Bonus":0,"Continent":"K46","ID":36442,"Name":"Jan AquaForce Ost K","PlayerID":879782,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36442","ServerKey":"pl181","X":683,"Y":452},{"Bonus":0,"Continent":"K64","ID":36443,"Name":"Barbara 001","PlayerID":699730998,"Points":6602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36443","ServerKey":"pl181","X":420,"Y":623},{"Bonus":0,"Continent":"K46","ID":36444,"Name":"041 Mucharadza","PlayerID":9238175,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36444","ServerKey":"pl181","X":664,"Y":416},{"Bonus":0,"Continent":"K34","ID":36445,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36445","ServerKey":"pl181","X":416,"Y":331},{"Bonus":0,"Continent":"K36","ID":36446,"Name":"!!36 95 Grigoresti","PlayerID":698361257,"Points":6622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36446","ServerKey":"pl181","X":650,"Y":395},{"Bonus":0,"Continent":"K33","ID":36447,"Name":"-001-","PlayerID":1693936,"Points":7552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36447","ServerKey":"pl181","X":351,"Y":394},{"Bonus":0,"Continent":"K65","ID":36449,"Name":"- 145 - SS","PlayerID":849018239,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36449","ServerKey":"pl181","X":541,"Y":686},{"Bonus":0,"Continent":"K66","ID":36450,"Name":"#080#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36450","ServerKey":"pl181","X":635,"Y":625},{"Bonus":0,"Continent":"K43","ID":36451,"Name":"Out of Touch","PlayerID":698962117,"Points":8741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36451","ServerKey":"pl181","X":324,"Y":433},{"Bonus":0,"Continent":"K63","ID":36452,"Name":".04. Lorien e","PlayerID":272173,"Points":7871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36452","ServerKey":"pl181","X":354,"Y":624},{"Bonus":0,"Continent":"K65","ID":36453,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":4299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36453","ServerKey":"pl181","X":527,"Y":683},{"Bonus":0,"Continent":"K34","ID":36454,"Name":"Bagdad","PlayerID":8847546,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36454","ServerKey":"pl181","X":465,"Y":390},{"Bonus":0,"Continent":"K46","ID":36455,"Name":"Wioska X","PlayerID":8675636,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36455","ServerKey":"pl181","X":670,"Y":417},{"Bonus":0,"Continent":"K53","ID":36456,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36456","ServerKey":"pl181","X":338,"Y":596},{"Bonus":0,"Continent":"K46","ID":36457,"Name":"013. bum-ta-rara-rara","PlayerID":7494497,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36457","ServerKey":"pl181","X":689,"Y":474},{"Bonus":0,"Continent":"K63","ID":36458,"Name":"102 - Nowy Początek...","PlayerID":7540891,"Points":9031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36458","ServerKey":"pl181","X":377,"Y":646},{"Bonus":3,"Continent":"K43","ID":36459,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36459","ServerKey":"pl181","X":315,"Y":454},{"Bonus":0,"Continent":"K46","ID":36460,"Name":"I003 Co Ty tutaj robisz","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36460","ServerKey":"pl181","X":683,"Y":460},{"Bonus":0,"Continent":"K34","ID":36461,"Name":"5.Severny","PlayerID":849098648,"Points":6910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36461","ServerKey":"pl181","X":413,"Y":336},{"Bonus":0,"Continent":"K56","ID":36462,"Name":"118. Dalonory","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36462","ServerKey":"pl181","X":669,"Y":590},{"Bonus":0,"Continent":"K46","ID":36463,"Name":"*4691* Grand","PlayerID":7973893,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36463","ServerKey":"pl181","X":659,"Y":402},{"Bonus":0,"Continent":"K56","ID":36464,"Name":"WschĂłd X5","PlayerID":698562644,"Points":10323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36464","ServerKey":"pl181","X":690,"Y":534},{"Bonus":0,"Continent":"K34","ID":36465,"Name":"Wano","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36465","ServerKey":"pl181","X":489,"Y":388},{"Bonus":0,"Continent":"K44","ID":36466,"Name":"Cast Away 003","PlayerID":698290577,"Points":5917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36466","ServerKey":"pl181","X":452,"Y":493},{"Bonus":8,"Continent":"K66","ID":36467,"Name":"Ronin P","PlayerID":8815749,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36467","ServerKey":"pl181","X":642,"Y":626},{"Bonus":0,"Continent":"K35","ID":36468,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36468","ServerKey":"pl181","X":507,"Y":309},{"Bonus":0,"Continent":"K53","ID":36469,"Name":"C0144","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36469","ServerKey":"pl181","X":319,"Y":535},{"Bonus":0,"Continent":"K64","ID":36470,"Name":"|067| BlackBird 2","PlayerID":699393742,"Points":10974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36470","ServerKey":"pl181","X":493,"Y":690},{"Bonus":0,"Continent":"K64","ID":36471,"Name":"Ulu-mulu","PlayerID":699697558,"Points":10628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36471","ServerKey":"pl181","X":422,"Y":616},{"Bonus":0,"Continent":"K43","ID":36472,"Name":"009. ƻóƂwin","PlayerID":849098966,"Points":6186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36472","ServerKey":"pl181","X":324,"Y":448},{"Bonus":0,"Continent":"K53","ID":36473,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36473","ServerKey":"pl181","X":310,"Y":517},{"Bonus":0,"Continent":"K56","ID":36474,"Name":"Didiek","PlayerID":849070946,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36474","ServerKey":"pl181","X":671,"Y":566},{"Bonus":0,"Continent":"K36","ID":36475,"Name":"Szlachcic;taran","PlayerID":699738350,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36475","ServerKey":"pl181","X":657,"Y":399},{"Bonus":0,"Continent":"K35","ID":36476,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36476","ServerKey":"pl181","X":584,"Y":330},{"Bonus":0,"Continent":"K45","ID":36477,"Name":"094.","PlayerID":8788366,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36477","ServerKey":"pl181","X":505,"Y":484},{"Bonus":0,"Continent":"K64","ID":36478,"Name":"Wioska MATTI","PlayerID":699730998,"Points":5769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36478","ServerKey":"pl181","X":419,"Y":624},{"Bonus":0,"Continent":"K43","ID":36479,"Name":"Pyra2","PlayerID":699821629,"Points":6456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36479","ServerKey":"pl181","X":326,"Y":441},{"Bonus":0,"Continent":"K64","ID":36481,"Name":"023","PlayerID":2289134,"Points":3324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36481","ServerKey":"pl181","X":429,"Y":627},{"Bonus":0,"Continent":"K34","ID":36482,"Name":"- 02 - Stare","PlayerID":848902744,"Points":8009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36482","ServerKey":"pl181","X":468,"Y":314},{"Bonus":0,"Continent":"K34","ID":36483,"Name":"???","PlayerID":698489071,"Points":9128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36483","ServerKey":"pl181","X":476,"Y":313},{"Bonus":0,"Continent":"K43","ID":36484,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36484","ServerKey":"pl181","X":319,"Y":472},{"Bonus":0,"Continent":"K53","ID":36485,"Name":"C0066","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36485","ServerKey":"pl181","X":312,"Y":529},{"Bonus":0,"Continent":"K56","ID":36486,"Name":"Didi","PlayerID":849070946,"Points":4235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36486","ServerKey":"pl181","X":672,"Y":563},{"Bonus":0,"Continent":"K53","ID":36487,"Name":"040","PlayerID":7183372,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36487","ServerKey":"pl181","X":327,"Y":579},{"Bonus":0,"Continent":"K35","ID":36488,"Name":"ADEN","PlayerID":698588535,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36488","ServerKey":"pl181","X":524,"Y":377},{"Bonus":0,"Continent":"K66","ID":36489,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":7664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36489","ServerKey":"pl181","X":621,"Y":640},{"Bonus":0,"Continent":"K35","ID":36490,"Name":"011 Duncan","PlayerID":849108623,"Points":2827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36490","ServerKey":"pl181","X":556,"Y":325},{"Bonus":0,"Continent":"K36","ID":36491,"Name":"=|19|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36491","ServerKey":"pl181","X":616,"Y":351},{"Bonus":5,"Continent":"K43","ID":36492,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36492","ServerKey":"pl181","X":314,"Y":465},{"Bonus":0,"Continent":"K63","ID":36493,"Name":"D.014","PlayerID":849088243,"Points":6956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36493","ServerKey":"pl181","X":396,"Y":652},{"Bonus":0,"Continent":"K33","ID":36494,"Name":"*102*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36494","ServerKey":"pl181","X":362,"Y":369},{"Bonus":0,"Continent":"K53","ID":36495,"Name":"Dream on","PlayerID":698962117,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36495","ServerKey":"pl181","X":311,"Y":503},{"Bonus":0,"Continent":"K33","ID":36496,"Name":"*188*","PlayerID":699273451,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36496","ServerKey":"pl181","X":375,"Y":373},{"Bonus":0,"Continent":"K36","ID":36497,"Name":"WesoƂych ƚwiąt","PlayerID":7340529,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36497","ServerKey":"pl181","X":637,"Y":379},{"Bonus":0,"Continent":"K65","ID":36498,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":3842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36498","ServerKey":"pl181","X":521,"Y":687},{"Bonus":0,"Continent":"K36","ID":36499,"Name":"1008","PlayerID":699150527,"Points":7084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36499","ServerKey":"pl181","X":626,"Y":358},{"Bonus":0,"Continent":"K66","ID":36500,"Name":"Wioska 052","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36500","ServerKey":"pl181","X":644,"Y":603},{"Bonus":0,"Continent":"K34","ID":36501,"Name":"226","PlayerID":7271812,"Points":5043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36501","ServerKey":"pl181","X":417,"Y":334},{"Bonus":0,"Continent":"K36","ID":36502,"Name":"kamilkaze135 #12","PlayerID":699705601,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36502","ServerKey":"pl181","X":655,"Y":388},{"Bonus":0,"Continent":"K53","ID":36503,"Name":"Taran","PlayerID":6180190,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36503","ServerKey":"pl181","X":336,"Y":599},{"Bonus":1,"Continent":"K46","ID":36504,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36504","ServerKey":"pl181","X":683,"Y":490},{"Bonus":0,"Continent":"K63","ID":36505,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36505","ServerKey":"pl181","X":385,"Y":646},{"Bonus":0,"Continent":"K33","ID":36506,"Name":"Szlachcic","PlayerID":3484132,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36506","ServerKey":"pl181","X":386,"Y":348},{"Bonus":0,"Continent":"K56","ID":36507,"Name":"Hiszpan4","PlayerID":7038651,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36507","ServerKey":"pl181","X":673,"Y":559},{"Bonus":0,"Continent":"K33","ID":36508,"Name":"*107*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36508","ServerKey":"pl181","X":364,"Y":369},{"Bonus":0,"Continent":"K64","ID":36510,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36510","ServerKey":"pl181","X":419,"Y":668},{"Bonus":0,"Continent":"K53","ID":36511,"Name":"C0137","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36511","ServerKey":"pl181","X":313,"Y":514},{"Bonus":0,"Continent":"K46","ID":36512,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36512","ServerKey":"pl181","X":687,"Y":493},{"Bonus":0,"Continent":"K46","ID":36513,"Name":"I089","PlayerID":699722599,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36513","ServerKey":"pl181","X":687,"Y":457},{"Bonus":0,"Continent":"K35","ID":36514,"Name":"0049","PlayerID":699485250,"Points":5375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36514","ServerKey":"pl181","X":573,"Y":325},{"Bonus":0,"Continent":"K35","ID":36515,"Name":"199","PlayerID":849064752,"Points":3418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36515","ServerKey":"pl181","X":586,"Y":393},{"Bonus":0,"Continent":"K35","ID":36516,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36516","ServerKey":"pl181","X":597,"Y":343},{"Bonus":0,"Continent":"K53","ID":36517,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36517","ServerKey":"pl181","X":333,"Y":594},{"Bonus":0,"Continent":"K53","ID":36518,"Name":"Mordor4","PlayerID":848978903,"Points":5791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36518","ServerKey":"pl181","X":315,"Y":541},{"Bonus":0,"Continent":"K64","ID":36520,"Name":"psycha sitting","PlayerID":699736927,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36520","ServerKey":"pl181","X":412,"Y":669},{"Bonus":0,"Continent":"K56","ID":36521,"Name":"BRZEG JORDANU | 002","PlayerID":9228039,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36521","ServerKey":"pl181","X":692,"Y":521},{"Bonus":0,"Continent":"K64","ID":36522,"Name":"R 022","PlayerID":699195358,"Points":9390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36522","ServerKey":"pl181","X":485,"Y":685},{"Bonus":9,"Continent":"K64","ID":36523,"Name":"ZZZ","PlayerID":849014922,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36523","ServerKey":"pl181","X":464,"Y":685},{"Bonus":0,"Continent":"K33","ID":36524,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36524","ServerKey":"pl181","X":372,"Y":365},{"Bonus":0,"Continent":"K65","ID":36525,"Name":"#108 C","PlayerID":9037756,"Points":6609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36525","ServerKey":"pl181","X":529,"Y":682},{"Bonus":0,"Continent":"K56","ID":36526,"Name":"Kingdom 9","PlayerID":699598425,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36526","ServerKey":"pl181","X":689,"Y":500},{"Bonus":0,"Continent":"K53","ID":36527,"Name":"002","PlayerID":849099463,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36527","ServerKey":"pl181","X":325,"Y":557},{"Bonus":0,"Continent":"K66","ID":36528,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":2454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36528","ServerKey":"pl181","X":659,"Y":602},{"Bonus":0,"Continent":"K34","ID":36529,"Name":".achim.","PlayerID":6936607,"Points":8828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36529","ServerKey":"pl181","X":482,"Y":312},{"Bonus":0,"Continent":"K63","ID":36530,"Name":".12. Occitane b","PlayerID":699342219,"Points":9009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36530","ServerKey":"pl181","X":368,"Y":632},{"Bonus":0,"Continent":"K34","ID":36531,"Name":"235","PlayerID":7271812,"Points":5231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36531","ServerKey":"pl181","X":426,"Y":326},{"Bonus":0,"Continent":"K43","ID":36532,"Name":"005. Kanie","PlayerID":849098966,"Points":6439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36532","ServerKey":"pl181","X":320,"Y":448},{"Bonus":0,"Continent":"K64","ID":36533,"Name":"064","PlayerID":699783765,"Points":3752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36533","ServerKey":"pl181","X":432,"Y":619},{"Bonus":0,"Continent":"K56","ID":36535,"Name":"Moja Wioska","PlayerID":849098693,"Points":8000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36535","ServerKey":"pl181","X":666,"Y":588},{"Bonus":0,"Continent":"K64","ID":36536,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":4876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36536","ServerKey":"pl181","X":431,"Y":624},{"Bonus":0,"Continent":"K33","ID":36537,"Name":"*022*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36537","ServerKey":"pl181","X":348,"Y":386},{"Bonus":0,"Continent":"K64","ID":36538,"Name":"022","PlayerID":699783765,"Points":5748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36538","ServerKey":"pl181","X":425,"Y":630},{"Bonus":0,"Continent":"K33","ID":36539,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":8714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36539","ServerKey":"pl181","X":339,"Y":395},{"Bonus":0,"Continent":"K66","ID":36540,"Name":"~~064~~","PlayerID":7829201,"Points":7295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36540","ServerKey":"pl181","X":632,"Y":638},{"Bonus":0,"Continent":"K65","ID":36541,"Name":"Muchomor *028*","PlayerID":606407,"Points":9225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36541","ServerKey":"pl181","X":521,"Y":683},{"Bonus":0,"Continent":"K65","ID":36542,"Name":"C005 Kuchnia Mannekenpixa","PlayerID":9023703,"Points":4403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36542","ServerKey":"pl181","X":586,"Y":664},{"Bonus":0,"Continent":"K65","ID":36543,"Name":"050","PlayerID":2293376,"Points":7948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36543","ServerKey":"pl181","X":543,"Y":680},{"Bonus":0,"Continent":"K56","ID":36544,"Name":"Brzeg","PlayerID":848932879,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36544","ServerKey":"pl181","X":680,"Y":554},{"Bonus":0,"Continent":"K66","ID":36545,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36545","ServerKey":"pl181","X":651,"Y":612},{"Bonus":0,"Continent":"K64","ID":36546,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":4951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36546","ServerKey":"pl181","X":420,"Y":634},{"Bonus":0,"Continent":"K66","ID":36548,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":3037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36548","ServerKey":"pl181","X":652,"Y":608},{"Bonus":0,"Continent":"K43","ID":36549,"Name":"Wioska krzysiu1969","PlayerID":2491724,"Points":1750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36549","ServerKey":"pl181","X":314,"Y":488},{"Bonus":0,"Continent":"K36","ID":36550,"Name":"Taran 031","PlayerID":699098531,"Points":6633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36550","ServerKey":"pl181","X":637,"Y":372},{"Bonus":0,"Continent":"K64","ID":36552,"Name":"036# Cristina","PlayerID":3933666,"Points":4288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36552","ServerKey":"pl181","X":487,"Y":690},{"Bonus":8,"Continent":"K66","ID":36554,"Name":"#002#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36554","ServerKey":"pl181","X":634,"Y":626},{"Bonus":0,"Continent":"K36","ID":36555,"Name":"1007","PlayerID":699150527,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36555","ServerKey":"pl181","X":620,"Y":361},{"Bonus":0,"Continent":"K66","ID":36556,"Name":"Sony 911","PlayerID":1415009,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36556","ServerKey":"pl181","X":621,"Y":639},{"Bonus":0,"Continent":"K53","ID":36558,"Name":"Akwen","PlayerID":699265922,"Points":2495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36558","ServerKey":"pl181","X":319,"Y":550},{"Bonus":0,"Continent":"K33","ID":36559,"Name":"z A01 ToruƄ","PlayerID":3909522,"Points":9363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36559","ServerKey":"pl181","X":348,"Y":379},{"Bonus":0,"Continent":"K36","ID":36560,"Name":"WJEĆ»DĆ»AM I ROZJEĆ»DĆ»AM","PlayerID":698420691,"Points":7838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36560","ServerKey":"pl181","X":614,"Y":356},{"Bonus":0,"Continent":"K34","ID":36562,"Name":"0162","PlayerID":699431255,"Points":5555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36562","ServerKey":"pl181","X":406,"Y":343},{"Bonus":0,"Continent":"K66","ID":36563,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36563","ServerKey":"pl181","X":644,"Y":618},{"Bonus":0,"Continent":"K63","ID":36564,"Name":"--07--","PlayerID":8877156,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36564","ServerKey":"pl181","X":346,"Y":607},{"Bonus":9,"Continent":"K43","ID":36565,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36565","ServerKey":"pl181","X":317,"Y":484},{"Bonus":0,"Continent":"K64","ID":36566,"Name":"|052| Zadar","PlayerID":699393742,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36566","ServerKey":"pl181","X":494,"Y":687},{"Bonus":0,"Continent":"K53","ID":36568,"Name":"Wioska AsconX","PlayerID":3990066,"Points":5920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36568","ServerKey":"pl181","X":335,"Y":585},{"Bonus":0,"Continent":"K64","ID":36569,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36569","ServerKey":"pl181","X":428,"Y":670},{"Bonus":0,"Continent":"K65","ID":36570,"Name":"XXX","PlayerID":7098955,"Points":8066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36570","ServerKey":"pl181","X":544,"Y":678},{"Bonus":0,"Continent":"K64","ID":36571,"Name":"psycha sitting","PlayerID":699736927,"Points":8868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36571","ServerKey":"pl181","X":405,"Y":665},{"Bonus":2,"Continent":"K66","ID":36572,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":10233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36572","ServerKey":"pl181","X":622,"Y":644},{"Bonus":0,"Continent":"K46","ID":36573,"Name":"[051] Wioska barbarzyƄska","PlayerID":849095068,"Points":7651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36573","ServerKey":"pl181","X":675,"Y":424},{"Bonus":0,"Continent":"K64","ID":36574,"Name":"New World","PlayerID":698152377,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36574","ServerKey":"pl181","X":446,"Y":684},{"Bonus":0,"Continent":"K34","ID":36575,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36575","ServerKey":"pl181","X":418,"Y":330},{"Bonus":0,"Continent":"K66","ID":36578,"Name":"A045","PlayerID":9023703,"Points":8460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36578","ServerKey":"pl181","X":609,"Y":647},{"Bonus":0,"Continent":"K35","ID":36580,"Name":"Defolij 2","PlayerID":849098136,"Points":2803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36580","ServerKey":"pl181","X":553,"Y":325},{"Bonus":0,"Continent":"K36","ID":36581,"Name":"Wioska Maxwell 3","PlayerID":526350,"Points":2448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36581","ServerKey":"pl181","X":643,"Y":378},{"Bonus":0,"Continent":"K53","ID":36582,"Name":"C0269","PlayerID":8841266,"Points":5541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36582","ServerKey":"pl181","X":317,"Y":507},{"Bonus":0,"Continent":"K65","ID":36583,"Name":"065","PlayerID":2293376,"Points":7267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36583","ServerKey":"pl181","X":533,"Y":681},{"Bonus":0,"Continent":"K65","ID":36584,"Name":"- 180 - SS","PlayerID":849018239,"Points":8029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36584","ServerKey":"pl181","X":551,"Y":683},{"Bonus":0,"Continent":"K65","ID":36585,"Name":"AG08","PlayerID":699876345,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36585","ServerKey":"pl181","X":593,"Y":663},{"Bonus":0,"Continent":"K63","ID":36586,"Name":"Taran","PlayerID":6180190,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36586","ServerKey":"pl181","X":345,"Y":604},{"Bonus":0,"Continent":"K66","ID":36587,"Name":"#073#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36587","ServerKey":"pl181","X":633,"Y":634},{"Bonus":0,"Continent":"K34","ID":36588,"Name":"194...Segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36588","ServerKey":"pl181","X":456,"Y":317},{"Bonus":0,"Continent":"K43","ID":36589,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36589","ServerKey":"pl181","X":326,"Y":421},{"Bonus":0,"Continent":"K33","ID":36590,"Name":"*149*","PlayerID":699273451,"Points":8280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36590","ServerKey":"pl181","X":347,"Y":395},{"Bonus":0,"Continent":"K53","ID":36591,"Name":"05.wiocha","PlayerID":7183372,"Points":6029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36591","ServerKey":"pl181","X":332,"Y":593},{"Bonus":0,"Continent":"K64","ID":36592,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36592","ServerKey":"pl181","X":410,"Y":661},{"Bonus":0,"Continent":"K64","ID":36593,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36593","ServerKey":"pl181","X":420,"Y":674},{"Bonus":0,"Continent":"K46","ID":36594,"Name":"**09**","PlayerID":849098782,"Points":11913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36594","ServerKey":"pl181","X":674,"Y":428},{"Bonus":0,"Continent":"K44","ID":36595,"Name":"0056","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36595","ServerKey":"pl181","X":422,"Y":405},{"Bonus":0,"Continent":"K56","ID":36596,"Name":"F03","PlayerID":848995478,"Points":3888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36596","ServerKey":"pl181","X":686,"Y":525},{"Bonus":0,"Continent":"K56","ID":36597,"Name":"Didus P","PlayerID":849070946,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36597","ServerKey":"pl181","X":672,"Y":575},{"Bonus":0,"Continent":"K65","ID":36598,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":4430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36598","ServerKey":"pl181","X":517,"Y":688},{"Bonus":0,"Continent":"K53","ID":36599,"Name":"C0110","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36599","ServerKey":"pl181","X":316,"Y":529},{"Bonus":6,"Continent":"K63","ID":36600,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36600","ServerKey":"pl181","X":399,"Y":659},{"Bonus":0,"Continent":"K36","ID":36601,"Name":"kamilkaze135 #01.3","PlayerID":699705601,"Points":8985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36601","ServerKey":"pl181","X":658,"Y":392},{"Bonus":0,"Continent":"K56","ID":36602,"Name":"Szlachcic","PlayerID":8096537,"Points":7713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36602","ServerKey":"pl181","X":690,"Y":515},{"Bonus":0,"Continent":"K56","ID":36603,"Name":"Didi","PlayerID":849070946,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36603","ServerKey":"pl181","X":676,"Y":587},{"Bonus":0,"Continent":"K63","ID":36604,"Name":".17. Izmir b","PlayerID":699342219,"Points":8990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36604","ServerKey":"pl181","X":363,"Y":630},{"Bonus":0,"Continent":"K64","ID":36605,"Name":"psycha sitting","PlayerID":699736927,"Points":4975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36605","ServerKey":"pl181","X":406,"Y":660},{"Bonus":6,"Continent":"K63","ID":36606,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36606","ServerKey":"pl181","X":379,"Y":642},{"Bonus":0,"Continent":"K46","ID":36607,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36607","ServerKey":"pl181","X":682,"Y":485},{"Bonus":0,"Continent":"K66","ID":36609,"Name":"#050#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36609","ServerKey":"pl181","X":637,"Y":633},{"Bonus":0,"Continent":"K56","ID":36610,"Name":"Kazumasa Sakai","PlayerID":8096537,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36610","ServerKey":"pl181","X":691,"Y":514},{"Bonus":0,"Continent":"K43","ID":36611,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36611","ServerKey":"pl181","X":311,"Y":465},{"Bonus":0,"Continent":"K36","ID":36612,"Name":"Wyspa 028","PlayerID":699756210,"Points":8223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36612","ServerKey":"pl181","X":632,"Y":373},{"Bonus":0,"Continent":"K36","ID":36613,"Name":"1.1","PlayerID":698241117,"Points":10148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36613","ServerKey":"pl181","X":639,"Y":394},{"Bonus":0,"Continent":"K43","ID":36614,"Name":"Out of Touch","PlayerID":698962117,"Points":2900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36614","ServerKey":"pl181","X":322,"Y":433},{"Bonus":0,"Continent":"K64","ID":36615,"Name":"psycha sitting","PlayerID":699736927,"Points":9903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36615","ServerKey":"pl181","X":406,"Y":665},{"Bonus":0,"Continent":"K56","ID":36616,"Name":"Wioska 120","PlayerID":848971079,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36616","ServerKey":"pl181","X":683,"Y":528},{"Bonus":0,"Continent":"K43","ID":36617,"Name":"~ KiZiA MiZiA ~","PlayerID":698540331,"Points":2923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36617","ServerKey":"pl181","X":315,"Y":447},{"Bonus":0,"Continent":"K46","ID":36618,"Name":"Jehu_Kingdom_65","PlayerID":8785314,"Points":4072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36618","ServerKey":"pl181","X":666,"Y":409},{"Bonus":0,"Continent":"K36","ID":36619,"Name":"-006- ChwaƂa Imperium","PlayerID":8675636,"Points":8901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36619","ServerKey":"pl181","X":616,"Y":349},{"Bonus":0,"Continent":"K56","ID":36620,"Name":"BRZEG JORDANU | 004","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36620","ServerKey":"pl181","X":692,"Y":527},{"Bonus":0,"Continent":"K46","ID":36621,"Name":"I059","PlayerID":699722599,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36621","ServerKey":"pl181","X":677,"Y":454},{"Bonus":0,"Continent":"K36","ID":36622,"Name":"Spoglądam w przyszƂoƛć","PlayerID":8582487,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36622","ServerKey":"pl181","X":660,"Y":396},{"Bonus":0,"Continent":"K53","ID":36623,"Name":"Dream on","PlayerID":698962117,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36623","ServerKey":"pl181","X":308,"Y":500},{"Bonus":0,"Continent":"K54","ID":36624,"Name":"Selonari.","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36624","ServerKey":"pl181","X":460,"Y":557},{"Bonus":0,"Continent":"K56","ID":36625,"Name":"OFF","PlayerID":1563417,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36625","ServerKey":"pl181","X":694,"Y":527},{"Bonus":0,"Continent":"K34","ID":36626,"Name":"[010]","PlayerID":849099160,"Points":10101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36626","ServerKey":"pl181","X":477,"Y":313},{"Bonus":0,"Continent":"K35","ID":36627,"Name":"Wioska barbarzyƄska","PlayerID":699710633,"Points":4151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36627","ServerKey":"pl181","X":580,"Y":335},{"Bonus":0,"Continent":"K65","ID":36628,"Name":"2.Tazones","PlayerID":698215322,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36628","ServerKey":"pl181","X":567,"Y":675},{"Bonus":0,"Continent":"K43","ID":36629,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36629","ServerKey":"pl181","X":319,"Y":471},{"Bonus":0,"Continent":"K64","ID":36630,"Name":"046","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36630","ServerKey":"pl181","X":449,"Y":685},{"Bonus":0,"Continent":"K63","ID":36631,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36631","ServerKey":"pl181","X":380,"Y":642},{"Bonus":4,"Continent":"K34","ID":36632,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36632","ServerKey":"pl181","X":428,"Y":322},{"Bonus":0,"Continent":"K35","ID":36634,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36634","ServerKey":"pl181","X":530,"Y":314},{"Bonus":0,"Continent":"K64","ID":36635,"Name":"tutaj","PlayerID":698585370,"Points":9081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36635","ServerKey":"pl181","X":458,"Y":683},{"Bonus":0,"Continent":"K64","ID":36636,"Name":"New World","PlayerID":698152377,"Points":7135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36636","ServerKey":"pl181","X":471,"Y":687},{"Bonus":0,"Continent":"K56","ID":36637,"Name":"_PUSTA","PlayerID":698768565,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36637","ServerKey":"pl181","X":659,"Y":591},{"Bonus":0,"Continent":"K64","ID":36638,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36638","ServerKey":"pl181","X":421,"Y":672},{"Bonus":0,"Continent":"K33","ID":36639,"Name":"Szlachcic","PlayerID":3484132,"Points":9354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36639","ServerKey":"pl181","X":384,"Y":348},{"Bonus":0,"Continent":"K35","ID":36640,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":4905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36640","ServerKey":"pl181","X":597,"Y":344},{"Bonus":0,"Continent":"K35","ID":36641,"Name":"18. Los Santos","PlayerID":699072129,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36641","ServerKey":"pl181","X":557,"Y":326},{"Bonus":0,"Continent":"K34","ID":36642,"Name":"North Barba 054","PlayerID":699796330,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36642","ServerKey":"pl181","X":413,"Y":331},{"Bonus":0,"Continent":"K64","ID":36643,"Name":"~038.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36643","ServerKey":"pl181","X":497,"Y":616},{"Bonus":0,"Continent":"K36","ID":36644,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36644","ServerKey":"pl181","X":642,"Y":378},{"Bonus":0,"Continent":"K65","ID":36645,"Name":"034 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36645","ServerKey":"pl181","X":527,"Y":687},{"Bonus":0,"Continent":"K66","ID":36646,"Name":"A050","PlayerID":9023703,"Points":7806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36646","ServerKey":"pl181","X":617,"Y":651},{"Bonus":6,"Continent":"K53","ID":36647,"Name":"Aakirkeby","PlayerID":849098387,"Points":7010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36647","ServerKey":"pl181","X":328,"Y":575},{"Bonus":0,"Continent":"K56","ID":36648,"Name":"Wioska donkretos","PlayerID":8096537,"Points":9308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36648","ServerKey":"pl181","X":690,"Y":516},{"Bonus":0,"Continent":"K33","ID":36649,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36649","ServerKey":"pl181","X":366,"Y":370},{"Bonus":0,"Continent":"K56","ID":36650,"Name":"Wrzoski 13 Ulica","PlayerID":848932879,"Points":7007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36650","ServerKey":"pl181","X":681,"Y":555},{"Bonus":0,"Continent":"K65","ID":36651,"Name":"- 190 - SS","PlayerID":849018239,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36651","ServerKey":"pl181","X":534,"Y":683},{"Bonus":0,"Continent":"K66","ID":36652,"Name":"the Amityville 001","PlayerID":758104,"Points":7001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36652","ServerKey":"pl181","X":660,"Y":602},{"Bonus":0,"Continent":"K46","ID":36653,"Name":"0014","PlayerID":699574408,"Points":10202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36653","ServerKey":"pl181","X":682,"Y":461},{"Bonus":0,"Continent":"K34","ID":36654,"Name":"3.Pochinki","PlayerID":849098648,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36654","ServerKey":"pl181","X":413,"Y":333},{"Bonus":0,"Continent":"K66","ID":36655,"Name":"A059","PlayerID":9023703,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36655","ServerKey":"pl181","X":607,"Y":652},{"Bonus":0,"Continent":"K65","ID":36656,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":6929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36656","ServerKey":"pl181","X":518,"Y":688},{"Bonus":0,"Continent":"K53","ID":36657,"Name":"xxx","PlayerID":698388578,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36657","ServerKey":"pl181","X":313,"Y":540},{"Bonus":0,"Continent":"K64","ID":36658,"Name":"Wioska barbarzyƄska","PlayerID":699781762,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36658","ServerKey":"pl181","X":496,"Y":684},{"Bonus":0,"Continent":"K43","ID":36659,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36659","ServerKey":"pl181","X":313,"Y":466},{"Bonus":0,"Continent":"K56","ID":36660,"Name":"062","PlayerID":2135129,"Points":7737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36660","ServerKey":"pl181","X":685,"Y":529},{"Bonus":0,"Continent":"K35","ID":36662,"Name":"Wioska barbarzyƄska","PlayerID":570100,"Points":2204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36662","ServerKey":"pl181","X":558,"Y":323},{"Bonus":0,"Continent":"K65","ID":36663,"Name":"Wyspa_02","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36663","ServerKey":"pl181","X":508,"Y":688},{"Bonus":0,"Continent":"K64","ID":36664,"Name":"#020. Resident Slepper","PlayerID":848896948,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36664","ServerKey":"pl181","X":455,"Y":678},{"Bonus":0,"Continent":"K46","ID":36665,"Name":"071 barbarzyƄska","PlayerID":9238175,"Points":5665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36665","ServerKey":"pl181","X":665,"Y":414},{"Bonus":0,"Continent":"K65","ID":36666,"Name":"Muchomor *027*","PlayerID":606407,"Points":9287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36666","ServerKey":"pl181","X":522,"Y":685},{"Bonus":0,"Continent":"K35","ID":36667,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36667","ServerKey":"pl181","X":522,"Y":315},{"Bonus":0,"Continent":"K35","ID":36669,"Name":"Wioska barbarzyƄska","PlayerID":570100,"Points":2823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36669","ServerKey":"pl181","X":557,"Y":324},{"Bonus":0,"Continent":"K36","ID":36670,"Name":"-Sioux city","PlayerID":8096537,"Points":6435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36670","ServerKey":"pl181","X":649,"Y":387},{"Bonus":0,"Continent":"K46","ID":36671,"Name":"05. Alan","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36671","ServerKey":"pl181","X":682,"Y":483},{"Bonus":0,"Continent":"K33","ID":36673,"Name":"*153*","PlayerID":699273451,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36673","ServerKey":"pl181","X":342,"Y":399},{"Bonus":0,"Continent":"K56","ID":36674,"Name":"PUSTA","PlayerID":3739202,"Points":4809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36674","ServerKey":"pl181","X":673,"Y":572},{"Bonus":0,"Continent":"K33","ID":36675,"Name":"Szlachcic","PlayerID":698160606,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36675","ServerKey":"pl181","X":376,"Y":358},{"Bonus":0,"Continent":"K54","ID":36676,"Name":"#014 - Wioska","PlayerID":848967710,"Points":9342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36676","ServerKey":"pl181","X":495,"Y":526},{"Bonus":0,"Continent":"K66","ID":36677,"Name":"#063#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36677","ServerKey":"pl181","X":639,"Y":630},{"Bonus":0,"Continent":"K65","ID":36678,"Name":"......","PlayerID":745946,"Points":7523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36678","ServerKey":"pl181","X":518,"Y":687},{"Bonus":6,"Continent":"K65","ID":36679,"Name":"Obora Augiasza","PlayerID":699567608,"Points":8252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36679","ServerKey":"pl181","X":583,"Y":671},{"Bonus":0,"Continent":"K36","ID":36680,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":3534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36680","ServerKey":"pl181","X":602,"Y":342},{"Bonus":0,"Continent":"K46","ID":36681,"Name":"030Wioska barbarzyƄska","PlayerID":849098769,"Points":6538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36681","ServerKey":"pl181","X":679,"Y":445},{"Bonus":0,"Continent":"K65","ID":36682,"Name":"0419","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36682","ServerKey":"pl181","X":567,"Y":676},{"Bonus":0,"Continent":"K36","ID":36683,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36683","ServerKey":"pl181","X":609,"Y":345},{"Bonus":0,"Continent":"K53","ID":36684,"Name":"004","PlayerID":698356304,"Points":5109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36684","ServerKey":"pl181","X":309,"Y":507},{"Bonus":0,"Continent":"K34","ID":36685,"Name":"054.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36685","ServerKey":"pl181","X":447,"Y":323},{"Bonus":0,"Continent":"K56","ID":36686,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":4111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36686","ServerKey":"pl181","X":685,"Y":544},{"Bonus":0,"Continent":"K34","ID":36687,"Name":"065... Wioska RandomHero","PlayerID":6920960,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36687","ServerKey":"pl181","X":438,"Y":328},{"Bonus":0,"Continent":"K63","ID":36688,"Name":"--08--","PlayerID":8877156,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36688","ServerKey":"pl181","X":343,"Y":606},{"Bonus":0,"Continent":"K35","ID":36689,"Name":"0044","PlayerID":699485250,"Points":4911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36689","ServerKey":"pl181","X":572,"Y":322},{"Bonus":0,"Continent":"K46","ID":36690,"Name":"Wenecja","PlayerID":2392791,"Points":6273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36690","ServerKey":"pl181","X":687,"Y":486},{"Bonus":0,"Continent":"K64","ID":36692,"Name":"#008. Crew","PlayerID":848896948,"Points":8710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36692","ServerKey":"pl181","X":450,"Y":683},{"Bonus":0,"Continent":"K36","ID":36693,"Name":"!36 74 Zvoristea","PlayerID":698361257,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36693","ServerKey":"pl181","X":644,"Y":377},{"Bonus":0,"Continent":"K53","ID":36694,"Name":"C0017","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36694","ServerKey":"pl181","X":312,"Y":518},{"Bonus":0,"Continent":"K34","ID":36695,"Name":"164...Kalichore","PlayerID":6920960,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36695","ServerKey":"pl181","X":455,"Y":354},{"Bonus":0,"Continent":"K65","ID":36696,"Name":"0400","PlayerID":698659980,"Points":9008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36696","ServerKey":"pl181","X":562,"Y":680},{"Bonus":0,"Continent":"K34","ID":36697,"Name":"#0129 korniczeks","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36697","ServerKey":"pl181","X":479,"Y":317},{"Bonus":0,"Continent":"K34","ID":36698,"Name":"Winterhome.071","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36698","ServerKey":"pl181","X":490,"Y":308},{"Bonus":0,"Continent":"K53","ID":36699,"Name":"A5.","PlayerID":849095482,"Points":4088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36699","ServerKey":"pl181","X":314,"Y":547},{"Bonus":0,"Continent":"K56","ID":36700,"Name":"D04","PlayerID":848995478,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36700","ServerKey":"pl181","X":676,"Y":559},{"Bonus":0,"Continent":"K35","ID":36702,"Name":"K35 - [023] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36702","ServerKey":"pl181","X":580,"Y":328},{"Bonus":0,"Continent":"K35","ID":36703,"Name":"001 szkolna 17","PlayerID":849099054,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36703","ServerKey":"pl181","X":528,"Y":316},{"Bonus":0,"Continent":"K46","ID":36704,"Name":"[016] Cienka brązowa linia","PlayerID":849095068,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36704","ServerKey":"pl181","X":674,"Y":437},{"Bonus":0,"Continent":"K46","ID":36705,"Name":"I084","PlayerID":699722599,"Points":8489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36705","ServerKey":"pl181","X":684,"Y":450},{"Bonus":0,"Continent":"K43","ID":36706,"Name":"Wioska 4","PlayerID":699821755,"Points":6205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36706","ServerKey":"pl181","X":331,"Y":427},{"Bonus":0,"Continent":"K64","ID":36707,"Name":"013 Stategiczna wioska","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36707","ServerKey":"pl181","X":490,"Y":634},{"Bonus":0,"Continent":"K35","ID":36708,"Name":"K35 - [004] Before Land","PlayerID":699088769,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36708","ServerKey":"pl181","X":577,"Y":326},{"Bonus":0,"Continent":"K46","ID":36709,"Name":"Nirvos","PlayerID":699574408,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36709","ServerKey":"pl181","X":682,"Y":473},{"Bonus":0,"Continent":"K36","ID":36710,"Name":"*3604* Bell","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36710","ServerKey":"pl181","X":663,"Y":399},{"Bonus":0,"Continent":"K46","ID":36711,"Name":"WƂadcy PóƂnocy 06","PlayerID":699379895,"Points":7231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36711","ServerKey":"pl181","X":690,"Y":496},{"Bonus":0,"Continent":"K64","ID":36712,"Name":"SSJ 016","PlayerID":6180190,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36712","ServerKey":"pl181","X":487,"Y":638},{"Bonus":0,"Continent":"K34","ID":36713,"Name":"219","PlayerID":7271812,"Points":3022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36713","ServerKey":"pl181","X":424,"Y":324},{"Bonus":0,"Continent":"K43","ID":36714,"Name":"Out of Touch","PlayerID":698962117,"Points":8752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36714","ServerKey":"pl181","X":325,"Y":431},{"Bonus":0,"Continent":"K64","ID":36715,"Name":"malo defa","PlayerID":6948793,"Points":9354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36715","ServerKey":"pl181","X":478,"Y":637},{"Bonus":0,"Continent":"K56","ID":36716,"Name":"Krapkowice","PlayerID":848932879,"Points":8869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36716","ServerKey":"pl181","X":681,"Y":546},{"Bonus":0,"Continent":"K66","ID":36717,"Name":"#098#","PlayerID":692803,"Points":8769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36717","ServerKey":"pl181","X":636,"Y":633},{"Bonus":0,"Continent":"K46","ID":36718,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":8860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36718","ServerKey":"pl181","X":669,"Y":420},{"Bonus":0,"Continent":"K65","ID":36720,"Name":"AG20","PlayerID":699876345,"Points":3736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36720","ServerKey":"pl181","X":593,"Y":668},{"Bonus":0,"Continent":"K64","ID":36721,"Name":"008|| Scorpio","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36721","ServerKey":"pl181","X":484,"Y":643},{"Bonus":0,"Continent":"K34","ID":36722,"Name":"love","PlayerID":849099965,"Points":3962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36722","ServerKey":"pl181","X":475,"Y":311},{"Bonus":0,"Continent":"K63","ID":36723,"Name":"Hard3","PlayerID":699805839,"Points":2948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36723","ServerKey":"pl181","X":364,"Y":624},{"Bonus":0,"Continent":"K65","ID":36724,"Name":"039 invidia","PlayerID":849093426,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36724","ServerKey":"pl181","X":523,"Y":688},{"Bonus":0,"Continent":"K66","ID":36725,"Name":"~~061~~","PlayerID":7829201,"Points":8613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36725","ServerKey":"pl181","X":624,"Y":640},{"Bonus":0,"Continent":"K65","ID":36726,"Name":"2.Barcelona","PlayerID":698215322,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36726","ServerKey":"pl181","X":573,"Y":674},{"Bonus":0,"Continent":"K64","ID":36727,"Name":"Ave Why!","PlayerID":698585370,"Points":8578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36727","ServerKey":"pl181","X":454,"Y":684},{"Bonus":0,"Continent":"K65","ID":36729,"Name":"~068.","PlayerID":7139820,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36729","ServerKey":"pl181","X":528,"Y":688},{"Bonus":0,"Continent":"K43","ID":36730,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36730","ServerKey":"pl181","X":310,"Y":493},{"Bonus":0,"Continent":"K65","ID":36731,"Name":"- 149 - SS","PlayerID":849018239,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36731","ServerKey":"pl181","X":540,"Y":688},{"Bonus":0,"Continent":"K63","ID":36732,"Name":"Ć»elazny deff","PlayerID":699805839,"Points":8008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36732","ServerKey":"pl181","X":359,"Y":626},{"Bonus":0,"Continent":"K33","ID":36733,"Name":"Szulernia","PlayerID":7249451,"Points":8685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36733","ServerKey":"pl181","X":369,"Y":370},{"Bonus":0,"Continent":"K33","ID":36735,"Name":"z 001031","PlayerID":3909522,"Points":8837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36735","ServerKey":"pl181","X":363,"Y":367},{"Bonus":0,"Continent":"K64","ID":36736,"Name":"006 Desant","PlayerID":698620694,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36736","ServerKey":"pl181","X":481,"Y":689},{"Bonus":0,"Continent":"K66","ID":36737,"Name":"A019","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36737","ServerKey":"pl181","X":608,"Y":655},{"Bonus":0,"Continent":"K64","ID":36738,"Name":"0000aaaa","PlayerID":6948793,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36738","ServerKey":"pl181","X":480,"Y":636},{"Bonus":0,"Continent":"K64","ID":36739,"Name":"Ave Why!","PlayerID":699121671,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36739","ServerKey":"pl181","X":481,"Y":682},{"Bonus":7,"Continent":"K43","ID":36740,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36740","ServerKey":"pl181","X":319,"Y":461},{"Bonus":0,"Continent":"K34","ID":36741,"Name":"North Barba 053","PlayerID":699796330,"Points":6267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36741","ServerKey":"pl181","X":411,"Y":332},{"Bonus":0,"Continent":"K46","ID":36742,"Name":"042 Mucharadza","PlayerID":9238175,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36742","ServerKey":"pl181","X":664,"Y":417},{"Bonus":0,"Continent":"K36","ID":36743,"Name":"Taran 034","PlayerID":2600387,"Points":5896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36743","ServerKey":"pl181","X":639,"Y":369},{"Bonus":0,"Continent":"K65","ID":36744,"Name":"AG02","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36744","ServerKey":"pl181","X":591,"Y":664},{"Bonus":0,"Continent":"K53","ID":36745,"Name":"A2.","PlayerID":849095482,"Points":4821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36745","ServerKey":"pl181","X":315,"Y":545},{"Bonus":0,"Continent":"K56","ID":36746,"Name":"C20","PlayerID":848995478,"Points":3901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36746","ServerKey":"pl181","X":685,"Y":540},{"Bonus":0,"Continent":"K43","ID":36747,"Name":"Suppi","PlayerID":699856962,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36747","ServerKey":"pl181","X":329,"Y":420},{"Bonus":0,"Continent":"K46","ID":36748,"Name":"Borubar 1","PlayerID":699413581,"Points":3453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36748","ServerKey":"pl181","X":682,"Y":471},{"Bonus":0,"Continent":"K66","ID":36749,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36749","ServerKey":"pl181","X":639,"Y":629},{"Bonus":0,"Continent":"K64","ID":36750,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36750","ServerKey":"pl181","X":483,"Y":643},{"Bonus":0,"Continent":"K33","ID":36751,"Name":"z 001025","PlayerID":3909522,"Points":9313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36751","ServerKey":"pl181","X":357,"Y":374},{"Bonus":9,"Continent":"K35","ID":36752,"Name":"koczo","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36752","ServerKey":"pl181","X":591,"Y":332},{"Bonus":0,"Continent":"K53","ID":36754,"Name":"000 Plutosea","PlayerID":9280477,"Points":7787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36754","ServerKey":"pl181","X":319,"Y":558},{"Bonus":0,"Continent":"K64","ID":36755,"Name":"044.","PlayerID":699494488,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36755","ServerKey":"pl181","X":486,"Y":625},{"Bonus":0,"Continent":"K36","ID":36756,"Name":"Marysia","PlayerID":698420691,"Points":7775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36756","ServerKey":"pl181","X":622,"Y":353},{"Bonus":0,"Continent":"K65","ID":36757,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36757","ServerKey":"pl181","X":509,"Y":685},{"Bonus":0,"Continent":"K46","ID":36758,"Name":"028. Wioska barbarzyƄska","PlayerID":7494497,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36758","ServerKey":"pl181","X":689,"Y":469},{"Bonus":0,"Continent":"K64","ID":36759,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36759","ServerKey":"pl181","X":482,"Y":638},{"Bonus":0,"Continent":"K35","ID":36760,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36760","ServerKey":"pl181","X":517,"Y":317},{"Bonus":8,"Continent":"K34","ID":36761,"Name":"Winterhome.048","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36761","ServerKey":"pl181","X":496,"Y":312},{"Bonus":0,"Continent":"K56","ID":36762,"Name":"*5611*a Brzeg Ameryki","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36762","ServerKey":"pl181","X":669,"Y":580},{"Bonus":1,"Continent":"K64","ID":36763,"Name":"007 RIP magnats","PlayerID":699745265,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36763","ServerKey":"pl181","X":484,"Y":686},{"Bonus":0,"Continent":"K66","ID":36764,"Name":"A051","PlayerID":9023703,"Points":7041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36764","ServerKey":"pl181","X":616,"Y":652},{"Bonus":0,"Continent":"K34","ID":36765,"Name":"Berun","PlayerID":849072873,"Points":6597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36765","ServerKey":"pl181","X":417,"Y":327},{"Bonus":0,"Continent":"K33","ID":36766,"Name":"*033*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36766","ServerKey":"pl181","X":346,"Y":395},{"Bonus":0,"Continent":"K64","ID":36767,"Name":"A009","PlayerID":699383279,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36767","ServerKey":"pl181","X":475,"Y":640},{"Bonus":0,"Continent":"K66","ID":36768,"Name":"A021","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36768","ServerKey":"pl181","X":607,"Y":659},{"Bonus":0,"Continent":"K33","ID":36769,"Name":"*097*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36769","ServerKey":"pl181","X":360,"Y":370},{"Bonus":0,"Continent":"K33","ID":36770,"Name":"Praga1","PlayerID":849099434,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36770","ServerKey":"pl181","X":369,"Y":359},{"Bonus":2,"Continent":"K56","ID":36771,"Name":"Hiszpan3","PlayerID":7038651,"Points":11530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36771","ServerKey":"pl181","X":677,"Y":559},{"Bonus":0,"Continent":"K56","ID":36772,"Name":"064","PlayerID":849095227,"Points":6352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36772","ServerKey":"pl181","X":679,"Y":543},{"Bonus":0,"Continent":"K33","ID":36773,"Name":"GrochĂłw1","PlayerID":849099434,"Points":5940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36773","ServerKey":"pl181","X":365,"Y":363},{"Bonus":0,"Continent":"K64","ID":36774,"Name":"psycha sitting","PlayerID":699736927,"Points":10135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36774","ServerKey":"pl181","X":406,"Y":666},{"Bonus":4,"Continent":"K43","ID":36775,"Name":"Out of Touch","PlayerID":698962117,"Points":5592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36775","ServerKey":"pl181","X":322,"Y":432},{"Bonus":0,"Continent":"K35","ID":36776,"Name":"CSA","PlayerID":1006847,"Points":2238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36776","ServerKey":"pl181","X":527,"Y":311},{"Bonus":0,"Continent":"K35","ID":36777,"Name":"B.14 duchy serca puszczy","PlayerID":849026145,"Points":3132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36777","ServerKey":"pl181","X":552,"Y":320},{"Bonus":0,"Continent":"K64","ID":36779,"Name":"031. Devil on my shoulder","PlayerID":698585370,"Points":6103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36779","ServerKey":"pl181","X":455,"Y":681},{"Bonus":0,"Continent":"K53","ID":36780,"Name":"Wioska barbarzyƄska","PlayerID":849099258,"Points":4013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36780","ServerKey":"pl181","X":321,"Y":564},{"Bonus":0,"Continent":"K35","ID":36781,"Name":"074- Mroczna Osada","PlayerID":849035905,"Points":6544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36781","ServerKey":"pl181","X":599,"Y":336},{"Bonus":0,"Continent":"K65","ID":36782,"Name":"START 03 22 19","PlayerID":698723158,"Points":5004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36782","ServerKey":"pl181","X":579,"Y":672},{"Bonus":9,"Continent":"K64","ID":36783,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36783","ServerKey":"pl181","X":438,"Y":680},{"Bonus":0,"Continent":"K43","ID":36784,"Name":"Suppi","PlayerID":699856962,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36784","ServerKey":"pl181","X":324,"Y":421},{"Bonus":0,"Continent":"K33","ID":36785,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36785","ServerKey":"pl181","X":388,"Y":345},{"Bonus":0,"Continent":"K63","ID":36786,"Name":"Wyspa","PlayerID":698769107,"Points":2657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36786","ServerKey":"pl181","X":384,"Y":653},{"Bonus":0,"Continent":"K35","ID":36787,"Name":"003. Wojenna ƚcieĆŒka","PlayerID":699072129,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36787","ServerKey":"pl181","X":561,"Y":320},{"Bonus":0,"Continent":"K64","ID":36788,"Name":"020# Ariana","PlayerID":3933666,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36788","ServerKey":"pl181","X":486,"Y":690},{"Bonus":0,"Continent":"K64","ID":36789,"Name":"|064| Hejhej","PlayerID":699393742,"Points":8144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36789","ServerKey":"pl181","X":491,"Y":689},{"Bonus":0,"Continent":"K66","ID":36790,"Name":"LD0040 Lucid Dream","PlayerID":8096537,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36790","ServerKey":"pl181","X":638,"Y":627},{"Bonus":0,"Continent":"K53","ID":36791,"Name":"Sliz","PlayerID":699265922,"Points":5488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36791","ServerKey":"pl181","X":321,"Y":550},{"Bonus":0,"Continent":"K56","ID":36792,"Name":"C 018","PlayerID":8078914,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36792","ServerKey":"pl181","X":690,"Y":527},{"Bonus":0,"Continent":"K66","ID":36793,"Name":"Wioska 5","PlayerID":1647052,"Points":4357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36793","ServerKey":"pl181","X":642,"Y":630},{"Bonus":0,"Continent":"K36","ID":36795,"Name":"Topornik 2","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36795","ServerKey":"pl181","X":647,"Y":378},{"Bonus":0,"Continent":"K66","ID":36796,"Name":"Ć»UBR .::.Adaczu/05","PlayerID":33900,"Points":3327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36796","ServerKey":"pl181","X":624,"Y":647},{"Bonus":0,"Continent":"K53","ID":36797,"Name":"011","PlayerID":7097727,"Points":5132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36797","ServerKey":"pl181","X":312,"Y":506},{"Bonus":0,"Continent":"K65","ID":36798,"Name":"Koszary","PlayerID":698723158,"Points":6383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36798","ServerKey":"pl181","X":577,"Y":668},{"Bonus":1,"Continent":"K36","ID":36800,"Name":"Osada koczownikĂłw","PlayerID":699548295,"Points":5402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36800","ServerKey":"pl181","X":602,"Y":338},{"Bonus":0,"Continent":"K63","ID":36801,"Name":"13 Ciudad Real","PlayerID":698837993,"Points":1711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36801","ServerKey":"pl181","X":382,"Y":650},{"Bonus":0,"Continent":"K53","ID":36802,"Name":"Sullivanum [5]","PlayerID":1606425,"Points":7677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36802","ServerKey":"pl181","X":341,"Y":591},{"Bonus":0,"Continent":"K34","ID":36803,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":2406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36803","ServerKey":"pl181","X":403,"Y":339},{"Bonus":0,"Continent":"K65","ID":36804,"Name":"Wioska barbarzyƄska","PlayerID":698215322,"Points":7193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36804","ServerKey":"pl181","X":579,"Y":675},{"Bonus":0,"Continent":"K66","ID":36805,"Name":"0059","PlayerID":698416970,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36805","ServerKey":"pl181","X":644,"Y":613},{"Bonus":0,"Continent":"K64","ID":36806,"Name":"cos cos","PlayerID":8966820,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36806","ServerKey":"pl181","X":433,"Y":676},{"Bonus":0,"Continent":"K65","ID":36807,"Name":"002 Ugernum","PlayerID":849099558,"Points":2940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36807","ServerKey":"pl181","X":559,"Y":682},{"Bonus":0,"Continent":"K34","ID":36808,"Name":"200","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36808","ServerKey":"pl181","X":425,"Y":331},{"Bonus":2,"Continent":"K35","ID":36809,"Name":"J#003","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36809","ServerKey":"pl181","X":573,"Y":331},{"Bonus":0,"Continent":"K34","ID":36811,"Name":"Winterhome.059","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36811","ServerKey":"pl181","X":488,"Y":308},{"Bonus":0,"Continent":"K33","ID":36812,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36812","ServerKey":"pl181","X":369,"Y":366},{"Bonus":0,"Continent":"K65","ID":36813,"Name":"Muchomor *009*","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36813","ServerKey":"pl181","X":517,"Y":683},{"Bonus":0,"Continent":"K35","ID":36814,"Name":"J#009","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36814","ServerKey":"pl181","X":571,"Y":329},{"Bonus":6,"Continent":"K46","ID":36815,"Name":"BACÓWKA |012|","PlayerID":7394371,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36815","ServerKey":"pl181","X":661,"Y":406},{"Bonus":0,"Continent":"K43","ID":36816,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36816","ServerKey":"pl181","X":329,"Y":418},{"Bonus":0,"Continent":"K43","ID":36817,"Name":"0002 Cytadela","PlayerID":393668,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36817","ServerKey":"pl181","X":317,"Y":442},{"Bonus":0,"Continent":"K35","ID":36818,"Name":"028","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36818","ServerKey":"pl181","X":524,"Y":316},{"Bonus":0,"Continent":"K36","ID":36819,"Name":"Zaczynamy","PlayerID":6625437,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36819","ServerKey":"pl181","X":618,"Y":364},{"Bonus":0,"Continent":"K63","ID":36820,"Name":"Paris","PlayerID":699864013,"Points":7174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36820","ServerKey":"pl181","X":358,"Y":621},{"Bonus":0,"Continent":"K34","ID":36822,"Name":"211","PlayerID":7271812,"Points":3876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36822","ServerKey":"pl181","X":422,"Y":332},{"Bonus":0,"Continent":"K64","ID":36823,"Name":"psycha sitting","PlayerID":699736927,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36823","ServerKey":"pl181","X":425,"Y":669},{"Bonus":0,"Continent":"K35","ID":36824,"Name":"Wieƛ nieopodal","PlayerID":849098136,"Points":7843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36824","ServerKey":"pl181","X":551,"Y":324},{"Bonus":0,"Continent":"K35","ID":36826,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":4388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36826","ServerKey":"pl181","X":563,"Y":320},{"Bonus":0,"Continent":"K64","ID":36827,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36827","ServerKey":"pl181","X":414,"Y":666},{"Bonus":0,"Continent":"K35","ID":36828,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":3222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36828","ServerKey":"pl181","X":579,"Y":332},{"Bonus":0,"Continent":"K34","ID":36829,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36829","ServerKey":"pl181","X":433,"Y":328},{"Bonus":0,"Continent":"K64","ID":36830,"Name":"psycha sitting","PlayerID":699736927,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36830","ServerKey":"pl181","X":410,"Y":670},{"Bonus":0,"Continent":"K35","ID":36831,"Name":"Babolewo 3.0","PlayerID":849098791,"Points":5561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36831","ServerKey":"pl181","X":592,"Y":339},{"Bonus":0,"Continent":"K56","ID":36832,"Name":"$LAClippers","PlayerID":699795378,"Points":6402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36832","ServerKey":"pl181","X":683,"Y":516},{"Bonus":0,"Continent":"K34","ID":36833,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":8067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36833","ServerKey":"pl181","X":484,"Y":364},{"Bonus":0,"Continent":"K53","ID":36834,"Name":"006 RubinGraffitiKrk","PlayerID":926823,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36834","ServerKey":"pl181","X":310,"Y":507},{"Bonus":0,"Continent":"K56","ID":36836,"Name":"AGA1","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36836","ServerKey":"pl181","X":684,"Y":503},{"Bonus":0,"Continent":"K53","ID":36837,"Name":"B1.","PlayerID":849095482,"Points":4013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36837","ServerKey":"pl181","X":313,"Y":548},{"Bonus":0,"Continent":"K63","ID":36838,"Name":".28. Kannas e","PlayerID":272173,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36838","ServerKey":"pl181","X":353,"Y":624},{"Bonus":0,"Continent":"K35","ID":36839,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36839","ServerKey":"pl181","X":526,"Y":314},{"Bonus":0,"Continent":"K66","ID":36840,"Name":"A026","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36840","ServerKey":"pl181","X":602,"Y":661},{"Bonus":0,"Continent":"K53","ID":36841,"Name":"C0111","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36841","ServerKey":"pl181","X":310,"Y":530},{"Bonus":0,"Continent":"K35","ID":36842,"Name":"Wsiora MCX","PlayerID":849044705,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36842","ServerKey":"pl181","X":537,"Y":312},{"Bonus":0,"Continent":"K56","ID":36843,"Name":"TWIERDZA .:019:.","PlayerID":7154207,"Points":10225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36843","ServerKey":"pl181","X":679,"Y":571},{"Bonus":0,"Continent":"K64","ID":36844,"Name":"|068| BlackBird 3","PlayerID":699393742,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36844","ServerKey":"pl181","X":495,"Y":691},{"Bonus":0,"Continent":"K36","ID":36845,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36845","ServerKey":"pl181","X":648,"Y":380},{"Bonus":0,"Continent":"K35","ID":36846,"Name":"072- Mroczna Osada","PlayerID":849035905,"Points":7411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36846","ServerKey":"pl181","X":598,"Y":336},{"Bonus":0,"Continent":"K65","ID":36847,"Name":"Pastwiska","PlayerID":698723158,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36847","ServerKey":"pl181","X":574,"Y":671},{"Bonus":0,"Continent":"K46","ID":36849,"Name":"040. Wioska barbarzyƄska","PlayerID":7494497,"Points":10370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36849","ServerKey":"pl181","X":686,"Y":473},{"Bonus":0,"Continent":"K53","ID":36850,"Name":"112 And another one","PlayerID":699382126,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36850","ServerKey":"pl181","X":332,"Y":576},{"Bonus":0,"Continent":"K35","ID":36851,"Name":"006","PlayerID":849099054,"Points":4437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36851","ServerKey":"pl181","X":532,"Y":310},{"Bonus":0,"Continent":"K66","ID":36852,"Name":"~~067~~","PlayerID":7829201,"Points":6239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36852","ServerKey":"pl181","X":629,"Y":642},{"Bonus":0,"Continent":"K43","ID":36853,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36853","ServerKey":"pl181","X":313,"Y":458},{"Bonus":0,"Continent":"K66","ID":36854,"Name":"A046","PlayerID":9023703,"Points":7793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36854","ServerKey":"pl181","X":610,"Y":647},{"Bonus":0,"Continent":"K53","ID":36855,"Name":"005","PlayerID":698356304,"Points":4819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36855","ServerKey":"pl181","X":309,"Y":508},{"Bonus":0,"Continent":"K46","ID":36856,"Name":"Jaaa","PlayerID":698635863,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36856","ServerKey":"pl181","X":668,"Y":494},{"Bonus":0,"Continent":"K43","ID":36857,"Name":"Out of Touch","PlayerID":698962117,"Points":6781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36857","ServerKey":"pl181","X":321,"Y":439},{"Bonus":0,"Continent":"K56","ID":36858,"Name":"Wioska Zorro 009","PlayerID":849080702,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36858","ServerKey":"pl181","X":667,"Y":595},{"Bonus":0,"Continent":"K56","ID":36859,"Name":"004 Ilia Feon","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36859","ServerKey":"pl181","X":664,"Y":599},{"Bonus":0,"Continent":"K53","ID":36860,"Name":"059","PlayerID":7183372,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36860","ServerKey":"pl181","X":333,"Y":587},{"Bonus":0,"Continent":"K36","ID":36862,"Name":"=|35|=","PlayerID":9101574,"Points":9354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36862","ServerKey":"pl181","X":643,"Y":380},{"Bonus":0,"Continent":"K63","ID":36863,"Name":".01.Osgiliath e","PlayerID":272173,"Points":8968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36863","ServerKey":"pl181","X":352,"Y":622},{"Bonus":0,"Continent":"K65","ID":36864,"Name":"0278","PlayerID":698659980,"Points":7929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36864","ServerKey":"pl181","X":549,"Y":678},{"Bonus":0,"Continent":"K64","ID":36866,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36866","ServerKey":"pl181","X":443,"Y":675},{"Bonus":0,"Continent":"K43","ID":36867,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":5916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36867","ServerKey":"pl181","X":331,"Y":483},{"Bonus":0,"Continent":"K53","ID":36868,"Name":"Wioska barbarzyƄska 2","PlayerID":3475079,"Points":4761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36868","ServerKey":"pl181","X":325,"Y":581},{"Bonus":0,"Continent":"K64","ID":36869,"Name":"044 Blaviken","PlayerID":699834004,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36869","ServerKey":"pl181","X":465,"Y":681},{"Bonus":0,"Continent":"K34","ID":36870,"Name":"[004]","PlayerID":849099160,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36870","ServerKey":"pl181","X":470,"Y":312},{"Bonus":2,"Continent":"K53","ID":36871,"Name":"(002)Azimir","PlayerID":849098695,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36871","ServerKey":"pl181","X":329,"Y":570},{"Bonus":0,"Continent":"K65","ID":36872,"Name":"Metropolia 20RivaL00","PlayerID":699567608,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36872","ServerKey":"pl181","X":584,"Y":669},{"Bonus":0,"Continent":"K35","ID":36873,"Name":"Kamieniec Podolski","PlayerID":849108784,"Points":3637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36873","ServerKey":"pl181","X":570,"Y":326},{"Bonus":0,"Continent":"K33","ID":36874,"Name":"z Wioska barbarzyƄska 12","PlayerID":3909522,"Points":7743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36874","ServerKey":"pl181","X":356,"Y":380},{"Bonus":0,"Continent":"K35","ID":36875,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":7804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36875","ServerKey":"pl181","X":599,"Y":340},{"Bonus":0,"Continent":"K65","ID":36876,"Name":"Muchomor *003*","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36876","ServerKey":"pl181","X":519,"Y":689},{"Bonus":0,"Continent":"K46","ID":36877,"Name":"OrzeƂ 12","PlayerID":699413581,"Points":8326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36877","ServerKey":"pl181","X":690,"Y":493},{"Bonus":0,"Continent":"K56","ID":36878,"Name":"C08","PlayerID":848995478,"Points":5758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36878","ServerKey":"pl181","X":687,"Y":536},{"Bonus":0,"Continent":"K36","ID":36879,"Name":"UltraInstynkt+","PlayerID":699710633,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36879","ServerKey":"pl181","X":605,"Y":341},{"Bonus":0,"Continent":"K36","ID":36880,"Name":"1010","PlayerID":699150527,"Points":7506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36880","ServerKey":"pl181","X":620,"Y":357},{"Bonus":0,"Continent":"K64","ID":36881,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36881","ServerKey":"pl181","X":440,"Y":675},{"Bonus":0,"Continent":"K36","ID":36882,"Name":"=|01|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36882","ServerKey":"pl181","X":643,"Y":385},{"Bonus":0,"Continent":"K33","ID":36883,"Name":"Szlachcic","PlayerID":698160606,"Points":10543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36883","ServerKey":"pl181","X":397,"Y":347},{"Bonus":0,"Continent":"K46","ID":36884,"Name":"034","PlayerID":7588382,"Points":5827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36884","ServerKey":"pl181","X":686,"Y":466},{"Bonus":0,"Continent":"K56","ID":36885,"Name":"_PUSTA","PlayerID":698768565,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36885","ServerKey":"pl181","X":658,"Y":595},{"Bonus":0,"Continent":"K65","ID":36886,"Name":"030","PlayerID":2293376,"Points":9120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36886","ServerKey":"pl181","X":544,"Y":680},{"Bonus":0,"Continent":"K66","ID":36887,"Name":"112. Wyspy Barierowe","PlayerID":8337151,"Points":7705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36887","ServerKey":"pl181","X":644,"Y":621},{"Bonus":0,"Continent":"K53","ID":36888,"Name":"*006*","PlayerID":8630972,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36888","ServerKey":"pl181","X":317,"Y":532},{"Bonus":0,"Continent":"K53","ID":36889,"Name":"(012)Alethkar","PlayerID":849098695,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36889","ServerKey":"pl181","X":320,"Y":562},{"Bonus":0,"Continent":"K65","ID":36890,"Name":"Wyspa_10","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36890","ServerKey":"pl181","X":505,"Y":689},{"Bonus":3,"Continent":"K63","ID":36891,"Name":"Taran","PlayerID":6180190,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36891","ServerKey":"pl181","X":341,"Y":604},{"Bonus":0,"Continent":"K36","ID":36892,"Name":"Tu jest przyszƂoƛć","PlayerID":699491076,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36892","ServerKey":"pl181","X":655,"Y":394},{"Bonus":0,"Continent":"K46","ID":36893,"Name":"I069","PlayerID":699722599,"Points":9402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36893","ServerKey":"pl181","X":687,"Y":460},{"Bonus":0,"Continent":"K43","ID":36894,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36894","ServerKey":"pl181","X":317,"Y":459},{"Bonus":0,"Continent":"K66","ID":36895,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36895","ServerKey":"pl181","X":651,"Y":619},{"Bonus":0,"Continent":"K36","ID":36896,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":4297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36896","ServerKey":"pl181","X":636,"Y":365},{"Bonus":0,"Continent":"K56","ID":36897,"Name":"061. Ninora","PlayerID":8337151,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36897","ServerKey":"pl181","X":664,"Y":594},{"Bonus":0,"Continent":"K35","ID":36898,"Name":"005 chata Gumowego Adasia","PlayerID":849099054,"Points":4275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36898","ServerKey":"pl181","X":531,"Y":310},{"Bonus":0,"Continent":"K36","ID":36899,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":4959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36899","ServerKey":"pl181","X":601,"Y":337},{"Bonus":0,"Continent":"K33","ID":36900,"Name":"*200*","PlayerID":699273451,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36900","ServerKey":"pl181","X":363,"Y":375},{"Bonus":0,"Continent":"K46","ID":36901,"Name":"011 Wioska","PlayerID":699671454,"Points":6889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36901","ServerKey":"pl181","X":626,"Y":456},{"Bonus":0,"Continent":"K53","ID":36902,"Name":"Dream on","PlayerID":698962117,"Points":9499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36902","ServerKey":"pl181","X":309,"Y":502},{"Bonus":0,"Continent":"K34","ID":36904,"Name":".achim.","PlayerID":6936607,"Points":10859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36904","ServerKey":"pl181","X":490,"Y":313},{"Bonus":0,"Continent":"K53","ID":36905,"Name":"C0174","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36905","ServerKey":"pl181","X":318,"Y":538},{"Bonus":0,"Continent":"K65","ID":36906,"Name":"PoƂudnie.014","PlayerID":873575,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36906","ServerKey":"pl181","X":551,"Y":680},{"Bonus":0,"Continent":"K65","ID":36907,"Name":"C008","PlayerID":9023703,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36907","ServerKey":"pl181","X":598,"Y":665},{"Bonus":0,"Continent":"K33","ID":36908,"Name":"*023*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36908","ServerKey":"pl181","X":351,"Y":385},{"Bonus":0,"Continent":"K63","ID":36909,"Name":"ByƂeƛ w porządku 002","PlayerID":699269923,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36909","ServerKey":"pl181","X":373,"Y":644},{"Bonus":0,"Continent":"K35","ID":36910,"Name":"Lord Lord Franek .#094","PlayerID":698420691,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36910","ServerKey":"pl181","X":519,"Y":310},{"Bonus":0,"Continent":"K33","ID":36911,"Name":"*020*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36911","ServerKey":"pl181","X":347,"Y":387},{"Bonus":0,"Continent":"K43","ID":36912,"Name":"Parole","PlayerID":699595556,"Points":5392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36912","ServerKey":"pl181","X":337,"Y":408},{"Bonus":0,"Continent":"K43","ID":36914,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36914","ServerKey":"pl181","X":318,"Y":452},{"Bonus":7,"Continent":"K66","ID":36915,"Name":"Osada koczownikĂłw x","PlayerID":1900364,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36915","ServerKey":"pl181","X":651,"Y":606},{"Bonus":0,"Continent":"K34","ID":36916,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36916","ServerKey":"pl181","X":434,"Y":325},{"Bonus":0,"Continent":"K56","ID":36917,"Name":"Highlander","PlayerID":848932879,"Points":6256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36917","ServerKey":"pl181","X":680,"Y":551},{"Bonus":0,"Continent":"K45","ID":36918,"Name":"BBB","PlayerID":1006847,"Points":9228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36918","ServerKey":"pl181","X":574,"Y":426},{"Bonus":0,"Continent":"K34","ID":36919,"Name":"fff","PlayerID":698239813,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36919","ServerKey":"pl181","X":480,"Y":311},{"Bonus":0,"Continent":"K36","ID":36921,"Name":"Taran 037","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36921","ServerKey":"pl181","X":641,"Y":376},{"Bonus":0,"Continent":"K64","ID":36922,"Name":"0005 Krasnodar","PlayerID":699656989,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36922","ServerKey":"pl181","X":474,"Y":688},{"Bonus":2,"Continent":"K56","ID":36923,"Name":"D06","PlayerID":848995478,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36923","ServerKey":"pl181","X":677,"Y":553},{"Bonus":0,"Continent":"K43","ID":36924,"Name":"*186*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36924","ServerKey":"pl181","X":343,"Y":405},{"Bonus":0,"Continent":"K35","ID":36925,"Name":"Kęty","PlayerID":7139853,"Points":8547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36925","ServerKey":"pl181","X":540,"Y":314},{"Bonus":0,"Continent":"K33","ID":36926,"Name":"z 001032","PlayerID":3909522,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36926","ServerKey":"pl181","X":355,"Y":374},{"Bonus":0,"Continent":"K64","ID":36927,"Name":"Wioska barbarzyƄska","PlayerID":848896948,"Points":2244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36927","ServerKey":"pl181","X":445,"Y":683},{"Bonus":0,"Continent":"K56","ID":36929,"Name":"C05","PlayerID":848995478,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36929","ServerKey":"pl181","X":686,"Y":535},{"Bonus":0,"Continent":"K35","ID":36930,"Name":"krytl21","PlayerID":1990750,"Points":6606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36930","ServerKey":"pl181","X":511,"Y":316},{"Bonus":0,"Continent":"K66","ID":36931,"Name":"D001","PlayerID":9023703,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36931","ServerKey":"pl181","X":610,"Y":656},{"Bonus":0,"Continent":"K56","ID":36932,"Name":"Wioska V","PlayerID":849099955,"Points":2824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36932","ServerKey":"pl181","X":675,"Y":581},{"Bonus":0,"Continent":"K53","ID":36933,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36933","ServerKey":"pl181","X":312,"Y":516},{"Bonus":0,"Continent":"K33","ID":36934,"Name":"cz 110 6","PlayerID":3909522,"Points":6975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36934","ServerKey":"pl181","X":371,"Y":385},{"Bonus":0,"Continent":"K53","ID":36935,"Name":"C0045","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36935","ServerKey":"pl181","X":312,"Y":523},{"Bonus":3,"Continent":"K53","ID":36936,"Name":"-010-","PlayerID":849012521,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36936","ServerKey":"pl181","X":326,"Y":570},{"Bonus":0,"Continent":"K33","ID":36937,"Name":"Szlachcic","PlayerID":698160606,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36937","ServerKey":"pl181","X":382,"Y":355},{"Bonus":0,"Continent":"K43","ID":36938,"Name":"Out of Touch","PlayerID":698962117,"Points":4803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36938","ServerKey":"pl181","X":322,"Y":438},{"Bonus":0,"Continent":"K46","ID":36939,"Name":"013","PlayerID":699150527,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36939","ServerKey":"pl181","X":687,"Y":456},{"Bonus":0,"Continent":"K35","ID":36940,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":3624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36940","ServerKey":"pl181","X":579,"Y":333},{"Bonus":0,"Continent":"K33","ID":36941,"Name":"001. Wehrmacht","PlayerID":698807570,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36941","ServerKey":"pl181","X":339,"Y":399},{"Bonus":0,"Continent":"K43","ID":36942,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36942","ServerKey":"pl181","X":329,"Y":417},{"Bonus":0,"Continent":"K35","ID":36943,"Name":"Winterhome.027","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36943","ServerKey":"pl181","X":502,"Y":309},{"Bonus":0,"Continent":"K43","ID":36944,"Name":"008","PlayerID":2418364,"Points":5853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36944","ServerKey":"pl181","X":309,"Y":480},{"Bonus":0,"Continent":"K64","ID":36945,"Name":"FP003","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36945","ServerKey":"pl181","X":490,"Y":691},{"Bonus":0,"Continent":"K33","ID":36947,"Name":"Szlachcic","PlayerID":3484132,"Points":10155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36947","ServerKey":"pl181","X":395,"Y":345},{"Bonus":0,"Continent":"K43","ID":36948,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36948","ServerKey":"pl181","X":334,"Y":415},{"Bonus":0,"Continent":"K43","ID":36949,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36949","ServerKey":"pl181","X":319,"Y":465},{"Bonus":0,"Continent":"K53","ID":36950,"Name":"Wonderwall","PlayerID":698962117,"Points":5113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36950","ServerKey":"pl181","X":324,"Y":556},{"Bonus":0,"Continent":"K36","ID":36951,"Name":"Wioska","PlayerID":699548295,"Points":5523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36951","ServerKey":"pl181","X":608,"Y":340},{"Bonus":0,"Continent":"K65","ID":36952,"Name":"C003","PlayerID":9023703,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36952","ServerKey":"pl181","X":595,"Y":661},{"Bonus":0,"Continent":"K63","ID":36953,"Name":".06. Lindon b","PlayerID":699342219,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36953","ServerKey":"pl181","X":364,"Y":629},{"Bonus":0,"Continent":"K65","ID":36954,"Name":"Muchomor *002*","PlayerID":606407,"Points":10098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36954","ServerKey":"pl181","X":517,"Y":689},{"Bonus":0,"Continent":"K33","ID":36955,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36955","ServerKey":"pl181","X":371,"Y":362},{"Bonus":0,"Continent":"K63","ID":36956,"Name":"D.034","PlayerID":849088243,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36956","ServerKey":"pl181","X":393,"Y":651},{"Bonus":0,"Continent":"K53","ID":36957,"Name":"C0021","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36957","ServerKey":"pl181","X":309,"Y":510},{"Bonus":0,"Continent":"K46","ID":36958,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36958","ServerKey":"pl181","X":682,"Y":464},{"Bonus":0,"Continent":"K33","ID":36959,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36959","ServerKey":"pl181","X":396,"Y":395},{"Bonus":0,"Continent":"K53","ID":36960,"Name":"C0153","PlayerID":8841266,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36960","ServerKey":"pl181","X":317,"Y":534},{"Bonus":0,"Continent":"K66","ID":36961,"Name":"Dworek Drzewiarza","PlayerID":8224678,"Points":10692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36961","ServerKey":"pl181","X":650,"Y":610},{"Bonus":0,"Continent":"K46","ID":36962,"Name":"Wioska barbarzyƄska","PlayerID":699738350,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36962","ServerKey":"pl181","X":669,"Y":409},{"Bonus":0,"Continent":"K43","ID":36964,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36964","ServerKey":"pl181","X":314,"Y":464},{"Bonus":0,"Continent":"K53","ID":36965,"Name":"Brat447","PlayerID":699262350,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36965","ServerKey":"pl181","X":312,"Y":536},{"Bonus":0,"Continent":"K66","ID":36966,"Name":"087. Lond","PlayerID":8337151,"Points":5757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36966","ServerKey":"pl181","X":647,"Y":620},{"Bonus":0,"Continent":"K35","ID":36967,"Name":"Winterhome.003","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36967","ServerKey":"pl181","X":510,"Y":311},{"Bonus":0,"Continent":"K65","ID":36968,"Name":"**INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36968","ServerKey":"pl181","X":510,"Y":687},{"Bonus":0,"Continent":"K65","ID":36969,"Name":"|047| Eldorado","PlayerID":2585846,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36969","ServerKey":"pl181","X":506,"Y":690},{"Bonus":0,"Continent":"K64","ID":36970,"Name":"New World","PlayerID":698152377,"Points":5936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36970","ServerKey":"pl181","X":431,"Y":680},{"Bonus":0,"Continent":"K63","ID":36971,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36971","ServerKey":"pl181","X":347,"Y":605},{"Bonus":0,"Continent":"K64","ID":36972,"Name":"psycha sitting","PlayerID":699736927,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36972","ServerKey":"pl181","X":410,"Y":666},{"Bonus":0,"Continent":"K36","ID":36973,"Name":"UltraInstynkt","PlayerID":699710633,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36973","ServerKey":"pl181","X":607,"Y":346},{"Bonus":8,"Continent":"K64","ID":36974,"Name":"009. Night Raid*","PlayerID":699684062,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36974","ServerKey":"pl181","X":430,"Y":673},{"Bonus":0,"Continent":"K35","ID":36976,"Name":"Hofek 28","PlayerID":699433558,"Points":3139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36976","ServerKey":"pl181","X":592,"Y":332},{"Bonus":0,"Continent":"K53","ID":36977,"Name":"C0112","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36977","ServerKey":"pl181","X":314,"Y":530},{"Bonus":0,"Continent":"K65","ID":36978,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36978","ServerKey":"pl181","X":562,"Y":678},{"Bonus":0,"Continent":"K46","ID":36979,"Name":"Wioska 003","PlayerID":849098769,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36979","ServerKey":"pl181","X":666,"Y":410},{"Bonus":0,"Continent":"K34","ID":36980,"Name":"Winterhome.050","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36980","ServerKey":"pl181","X":493,"Y":310},{"Bonus":2,"Continent":"K66","ID":36981,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36981","ServerKey":"pl181","X":647,"Y":613},{"Bonus":0,"Continent":"K66","ID":36982,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36982","ServerKey":"pl181","X":648,"Y":623},{"Bonus":0,"Continent":"K65","ID":36983,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":7586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36983","ServerKey":"pl181","X":524,"Y":684},{"Bonus":0,"Continent":"K43","ID":36984,"Name":"Wioska 3","PlayerID":849075836,"Points":9407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36984","ServerKey":"pl181","X":310,"Y":489},{"Bonus":0,"Continent":"K53","ID":36985,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36985","ServerKey":"pl181","X":311,"Y":521},{"Bonus":0,"Continent":"K66","ID":36986,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36986","ServerKey":"pl181","X":639,"Y":626},{"Bonus":0,"Continent":"K65","ID":36987,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36987","ServerKey":"pl181","X":523,"Y":655},{"Bonus":0,"Continent":"K34","ID":36988,"Name":"???","PlayerID":698489071,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36988","ServerKey":"pl181","X":480,"Y":310},{"Bonus":5,"Continent":"K63","ID":36989,"Name":"0124","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36989","ServerKey":"pl181","X":377,"Y":642},{"Bonus":0,"Continent":"K56","ID":36990,"Name":"TFU WD","PlayerID":848915032,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36990","ServerKey":"pl181","X":681,"Y":556},{"Bonus":0,"Continent":"K36","ID":36992,"Name":"008. New place - new friends","PlayerID":699098531,"Points":8295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36992","ServerKey":"pl181","X":601,"Y":339},{"Bonus":0,"Continent":"K64","ID":36994,"Name":"#007. King of the Hill","PlayerID":848896948,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36994","ServerKey":"pl181","X":451,"Y":680},{"Bonus":0,"Continent":"K46","ID":36995,"Name":"[047] Wioska barbarzyƄska","PlayerID":849095068,"Points":8127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36995","ServerKey":"pl181","X":674,"Y":421},{"Bonus":0,"Continent":"K56","ID":36996,"Name":"OFF","PlayerID":1563417,"Points":8535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36996","ServerKey":"pl181","X":687,"Y":521},{"Bonus":0,"Continent":"K63","ID":36997,"Name":"D.010","PlayerID":849088243,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36997","ServerKey":"pl181","X":393,"Y":657},{"Bonus":0,"Continent":"K65","ID":36998,"Name":"Muchomor *025*","PlayerID":606407,"Points":8757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36998","ServerKey":"pl181","X":522,"Y":689},{"Bonus":0,"Continent":"K53","ID":36999,"Name":"049.","PlayerID":7183372,"Points":1924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=36999","ServerKey":"pl181","X":331,"Y":587},{"Bonus":0,"Continent":"K46","ID":37000,"Name":"[033] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37000","ServerKey":"pl181","X":673,"Y":420},{"Bonus":4,"Continent":"K33","ID":37001,"Name":"*105*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37001","ServerKey":"pl181","X":359,"Y":378},{"Bonus":0,"Continent":"K55","ID":37002,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37002","ServerKey":"pl181","X":568,"Y":578},{"Bonus":0,"Continent":"K46","ID":37003,"Name":"[010] GunWO","PlayerID":849095068,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37003","ServerKey":"pl181","X":676,"Y":438},{"Bonus":0,"Continent":"K43","ID":37004,"Name":"Wioska 5","PlayerID":849075836,"Points":8511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37004","ServerKey":"pl181","X":314,"Y":487},{"Bonus":0,"Continent":"K53","ID":37005,"Name":"KocpoƂuch 5","PlayerID":848949597,"Points":2742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37005","ServerKey":"pl181","X":327,"Y":573},{"Bonus":0,"Continent":"K35","ID":37006,"Name":"Wioska barbarzyƄska","PlayerID":7560474,"Points":4155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37006","ServerKey":"pl181","X":575,"Y":332},{"Bonus":0,"Continent":"K36","ID":37007,"Name":"kamilkaze135 #03","PlayerID":699705601,"Points":8664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37007","ServerKey":"pl181","X":656,"Y":389},{"Bonus":0,"Continent":"K43","ID":37008,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37008","ServerKey":"pl181","X":312,"Y":458},{"Bonus":0,"Continent":"K65","ID":37009,"Name":"Wioska barbarzyƄska","PlayerID":698215322,"Points":6167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37009","ServerKey":"pl181","X":578,"Y":675},{"Bonus":0,"Continent":"K63","ID":37010,"Name":"001","PlayerID":7183372,"Points":10341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37010","ServerKey":"pl181","X":347,"Y":604},{"Bonus":0,"Continent":"K66","ID":37011,"Name":"#058#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37011","ServerKey":"pl181","X":631,"Y":639},{"Bonus":0,"Continent":"K65","ID":37012,"Name":"- 198 - SS","PlayerID":849018239,"Points":8228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37012","ServerKey":"pl181","X":539,"Y":682},{"Bonus":0,"Continent":"K46","ID":37013,"Name":"BACÓWKA |041|","PlayerID":7394371,"Points":4244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37013","ServerKey":"pl181","X":668,"Y":411},{"Bonus":0,"Continent":"K46","ID":37014,"Name":"I105","PlayerID":699722599,"Points":7089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37014","ServerKey":"pl181","X":680,"Y":442},{"Bonus":0,"Continent":"K56","ID":37016,"Name":"0031 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37016","ServerKey":"pl181","X":627,"Y":597},{"Bonus":0,"Continent":"K36","ID":37017,"Name":"!36 74 Plopeni","PlayerID":698361257,"Points":7385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37017","ServerKey":"pl181","X":643,"Y":370},{"Bonus":9,"Continent":"K33","ID":37018,"Name":"z 181-A002qqqqqqqqqqqqqqq","PlayerID":3909522,"Points":10108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37018","ServerKey":"pl181","X":353,"Y":377},{"Bonus":0,"Continent":"K63","ID":37019,"Name":"Taran","PlayerID":6180190,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37019","ServerKey":"pl181","X":342,"Y":608},{"Bonus":0,"Continent":"K34","ID":37020,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37020","ServerKey":"pl181","X":415,"Y":328},{"Bonus":0,"Continent":"K35","ID":37021,"Name":"Wioska barbarzyƄska","PlayerID":698739350,"Points":4721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37021","ServerKey":"pl181","X":501,"Y":339},{"Bonus":0,"Continent":"K35","ID":37022,"Name":"004 Dom Mexicano","PlayerID":849099054,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37022","ServerKey":"pl181","X":527,"Y":315},{"Bonus":0,"Continent":"K34","ID":37023,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":3939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37023","ServerKey":"pl181","X":405,"Y":333},{"Bonus":0,"Continent":"K36","ID":37024,"Name":"0091","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37024","ServerKey":"pl181","X":615,"Y":345},{"Bonus":0,"Continent":"K34","ID":37025,"Name":"041.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37025","ServerKey":"pl181","X":447,"Y":320},{"Bonus":1,"Continent":"K43","ID":37026,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37026","ServerKey":"pl181","X":328,"Y":414},{"Bonus":0,"Continent":"K35","ID":37027,"Name":"AAA","PlayerID":1006847,"Points":9003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37027","ServerKey":"pl181","X":546,"Y":312},{"Bonus":2,"Continent":"K35","ID":37028,"Name":"0041","PlayerID":699485250,"Points":6405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37028","ServerKey":"pl181","X":570,"Y":322},{"Bonus":0,"Continent":"K56","ID":37029,"Name":"Postawie","PlayerID":8337151,"Points":6699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37029","ServerKey":"pl181","X":631,"Y":598},{"Bonus":0,"Continent":"K64","ID":37030,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37030","ServerKey":"pl181","X":419,"Y":669},{"Bonus":0,"Continent":"K33","ID":37031,"Name":"Szlachcic","PlayerID":3484132,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37031","ServerKey":"pl181","X":397,"Y":341},{"Bonus":0,"Continent":"K34","ID":37032,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37032","ServerKey":"pl181","X":430,"Y":324},{"Bonus":0,"Continent":"K63","ID":37033,"Name":"Pd 03","PlayerID":272173,"Points":7934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37033","ServerKey":"pl181","X":362,"Y":631},{"Bonus":0,"Continent":"K64","ID":37034,"Name":"Szale","PlayerID":698585370,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37034","ServerKey":"pl181","X":458,"Y":680},{"Bonus":6,"Continent":"K46","ID":37035,"Name":"073 Nagoja","PlayerID":7092442,"Points":7774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37035","ServerKey":"pl181","X":678,"Y":452},{"Bonus":0,"Continent":"K64","ID":37036,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37036","ServerKey":"pl181","X":406,"Y":664},{"Bonus":0,"Continent":"K34","ID":37037,"Name":"180...Segador M","PlayerID":6920960,"Points":8215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37037","ServerKey":"pl181","X":439,"Y":326},{"Bonus":0,"Continent":"K35","ID":37038,"Name":"Winterhome.064","PlayerID":848918380,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37038","ServerKey":"pl181","X":511,"Y":312},{"Bonus":0,"Continent":"K36","ID":37039,"Name":"Dolina Czarownic","PlayerID":7973893,"Points":7084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37039","ServerKey":"pl181","X":651,"Y":391},{"Bonus":0,"Continent":"K56","ID":37041,"Name":"*5612*bb Instytucja","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37041","ServerKey":"pl181","X":667,"Y":581},{"Bonus":0,"Continent":"K46","ID":37042,"Name":"ƚniadowo","PlayerID":849100082,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37042","ServerKey":"pl181","X":687,"Y":480},{"Bonus":0,"Continent":"K66","ID":37043,"Name":"086. Rahgar","PlayerID":8337151,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37043","ServerKey":"pl181","X":646,"Y":625},{"Bonus":0,"Continent":"K64","ID":37044,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37044","ServerKey":"pl181","X":430,"Y":642},{"Bonus":0,"Continent":"K64","ID":37045,"Name":"008 Desant","PlayerID":698620694,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37045","ServerKey":"pl181","X":482,"Y":690},{"Bonus":0,"Continent":"K56","ID":37046,"Name":"#9 Dzikowo","PlayerID":8000875,"Points":4901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37046","ServerKey":"pl181","X":630,"Y":591},{"Bonus":0,"Continent":"K53","ID":37047,"Name":"EO EO","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37047","ServerKey":"pl181","X":313,"Y":516},{"Bonus":0,"Continent":"K63","ID":37048,"Name":"A 093","PlayerID":6948793,"Points":9187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37048","ServerKey":"pl181","X":371,"Y":640},{"Bonus":0,"Continent":"K66","ID":37049,"Name":"Eberland","PlayerID":1900364,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37049","ServerKey":"pl181","X":652,"Y":607},{"Bonus":0,"Continent":"K63","ID":37050,"Name":"Komornicy 022","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37050","ServerKey":"pl181","X":349,"Y":611},{"Bonus":0,"Continent":"K64","ID":37051,"Name":"psycha sitting","PlayerID":699736927,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37051","ServerKey":"pl181","X":408,"Y":664},{"Bonus":0,"Continent":"K34","ID":37052,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":8486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37052","ServerKey":"pl181","X":431,"Y":328},{"Bonus":0,"Continent":"K53","ID":37053,"Name":"Wioska Vl","PlayerID":699671197,"Points":11456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37053","ServerKey":"pl181","X":321,"Y":572},{"Bonus":0,"Continent":"K55","ID":37054,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37054","ServerKey":"pl181","X":515,"Y":541},{"Bonus":0,"Continent":"K66","ID":37055,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":2978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37055","ServerKey":"pl181","X":660,"Y":606},{"Bonus":0,"Continent":"K44","ID":37056,"Name":"B069","PlayerID":699299123,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37056","ServerKey":"pl181","X":470,"Y":473},{"Bonus":0,"Continent":"K56","ID":37057,"Name":"_PUSTA+","PlayerID":699628084,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37057","ServerKey":"pl181","X":682,"Y":544},{"Bonus":0,"Continent":"K56","ID":37058,"Name":"TWIERDZA .:069:.","PlayerID":7154207,"Points":8984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37058","ServerKey":"pl181","X":679,"Y":567},{"Bonus":0,"Continent":"K43","ID":37059,"Name":"003 Casterly Rock","PlayerID":699823490,"Points":7733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37059","ServerKey":"pl181","X":315,"Y":492},{"Bonus":0,"Continent":"K36","ID":37060,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":8914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37060","ServerKey":"pl181","X":654,"Y":388},{"Bonus":0,"Continent":"K46","ID":37061,"Name":"[055] Wioska barbarzyƄska","PlayerID":849095068,"Points":4471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37061","ServerKey":"pl181","X":672,"Y":428},{"Bonus":0,"Continent":"K56","ID":37062,"Name":"Grvvyq 103k$","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37062","ServerKey":"pl181","X":683,"Y":533},{"Bonus":0,"Continent":"K43","ID":37063,"Name":"004. Owczarnia","PlayerID":849098966,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37063","ServerKey":"pl181","X":318,"Y":447},{"Bonus":0,"Continent":"K65","ID":37064,"Name":"2.Mostoles","PlayerID":698215322,"Points":11411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37064","ServerKey":"pl181","X":579,"Y":676},{"Bonus":0,"Continent":"K64","ID":37065,"Name":"[023] Wioska Kreynoss","PlayerID":9094538,"Points":2381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37065","ServerKey":"pl181","X":461,"Y":689},{"Bonus":0,"Continent":"K35","ID":37066,"Name":"Winterhome.011","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37066","ServerKey":"pl181","X":509,"Y":310},{"Bonus":0,"Continent":"K46","ID":37067,"Name":"B#018","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37067","ServerKey":"pl181","X":677,"Y":430},{"Bonus":0,"Continent":"K33","ID":37068,"Name":"New Land 10","PlayerID":849064752,"Points":3864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37068","ServerKey":"pl181","X":343,"Y":389},{"Bonus":0,"Continent":"K35","ID":37069,"Name":"003.","PlayerID":849101311,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37069","ServerKey":"pl181","X":566,"Y":326},{"Bonus":0,"Continent":"K36","ID":37070,"Name":"XDX","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37070","ServerKey":"pl181","X":604,"Y":355},{"Bonus":0,"Continent":"K43","ID":37071,"Name":"Wioska barbarzyƄska","PlayerID":699823490,"Points":3651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37071","ServerKey":"pl181","X":316,"Y":463},{"Bonus":0,"Continent":"K56","ID":37072,"Name":"Makowiec","PlayerID":7973893,"Points":7544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37072","ServerKey":"pl181","X":674,"Y":574},{"Bonus":0,"Continent":"K66","ID":37073,"Name":"~~078~~","PlayerID":7829201,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37073","ServerKey":"pl181","X":610,"Y":648},{"Bonus":0,"Continent":"K46","ID":37074,"Name":"02. SOSna","PlayerID":699804790,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37074","ServerKey":"pl181","X":686,"Y":483},{"Bonus":0,"Continent":"K46","ID":37077,"Name":"049. Wioska barbarzyƄska","PlayerID":7494497,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37077","ServerKey":"pl181","X":689,"Y":467},{"Bonus":0,"Continent":"K34","ID":37078,"Name":"075.Stradi","PlayerID":698365960,"Points":9517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37078","ServerKey":"pl181","X":449,"Y":322},{"Bonus":0,"Continent":"K36","ID":37079,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":7489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37079","ServerKey":"pl181","X":601,"Y":342},{"Bonus":0,"Continent":"K34","ID":37080,"Name":"nowa 3","PlayerID":849104546,"Points":5517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37080","ServerKey":"pl181","X":463,"Y":314},{"Bonus":0,"Continent":"K53","ID":37082,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37082","ServerKey":"pl181","X":337,"Y":594},{"Bonus":0,"Continent":"K55","ID":37083,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37083","ServerKey":"pl181","X":572,"Y":592},{"Bonus":0,"Continent":"K46","ID":37084,"Name":"I060","PlayerID":699722599,"Points":9625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37084","ServerKey":"pl181","X":679,"Y":454},{"Bonus":0,"Continent":"K63","ID":37085,"Name":"A 058","PlayerID":698908184,"Points":8966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37085","ServerKey":"pl181","X":359,"Y":636},{"Bonus":0,"Continent":"K56","ID":37086,"Name":"*5612*aa Bez koƄca","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37086","ServerKey":"pl181","X":669,"Y":578},{"Bonus":0,"Continent":"K35","ID":37087,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":8981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37087","ServerKey":"pl181","X":595,"Y":339},{"Bonus":0,"Continent":"K35","ID":37088,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":6471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37088","ServerKey":"pl181","X":536,"Y":313},{"Bonus":0,"Continent":"K53","ID":37089,"Name":"Wioska barbarzyƄska","PlayerID":849046232,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37089","ServerKey":"pl181","X":335,"Y":583},{"Bonus":0,"Continent":"K56","ID":37090,"Name":"003","PlayerID":699493750,"Points":5427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37090","ServerKey":"pl181","X":672,"Y":574},{"Bonus":0,"Continent":"K63","ID":37091,"Name":".26. Tithilon d","PlayerID":272173,"Points":5915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37091","ServerKey":"pl181","X":362,"Y":624},{"Bonus":0,"Continent":"K66","ID":37092,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":5179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37092","ServerKey":"pl181","X":657,"Y":607},{"Bonus":0,"Continent":"K43","ID":37093,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37093","ServerKey":"pl181","X":315,"Y":459},{"Bonus":0,"Continent":"K44","ID":37094,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37094","ServerKey":"pl181","X":474,"Y":426},{"Bonus":0,"Continent":"K34","ID":37095,"Name":"0003","PlayerID":2321390,"Points":4105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37095","ServerKey":"pl181","X":425,"Y":323},{"Bonus":0,"Continent":"K64","ID":37096,"Name":"psycha sitting","PlayerID":699736927,"Points":4831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37096","ServerKey":"pl181","X":415,"Y":668},{"Bonus":0,"Continent":"K36","ID":37097,"Name":"Goirle","PlayerID":9103424,"Points":5561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37097","ServerKey":"pl181","X":621,"Y":354},{"Bonus":0,"Continent":"K43","ID":37098,"Name":"015. Do ƛwiąt się wyrobisz ?","PlayerID":698630507,"Points":4789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37098","ServerKey":"pl181","X":355,"Y":438},{"Bonus":0,"Continent":"K53","ID":37099,"Name":"C0018","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37099","ServerKey":"pl181","X":311,"Y":518},{"Bonus":0,"Continent":"K65","ID":37101,"Name":"PotÄ™ĆŒny Gaj","PlayerID":698723158,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37101","ServerKey":"pl181","X":582,"Y":673},{"Bonus":0,"Continent":"K56","ID":37102,"Name":"Gryfios 022","PlayerID":698666810,"Points":11880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37102","ServerKey":"pl181","X":684,"Y":556},{"Bonus":0,"Continent":"K65","ID":37104,"Name":"- 152 - SS","PlayerID":849018239,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37104","ServerKey":"pl181","X":542,"Y":684},{"Bonus":0,"Continent":"K43","ID":37105,"Name":"New Land 11","PlayerID":849064752,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37105","ServerKey":"pl181","X":342,"Y":400},{"Bonus":0,"Continent":"K56","ID":37106,"Name":"096 Tomek","PlayerID":2135129,"Points":3837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37106","ServerKey":"pl181","X":684,"Y":508},{"Bonus":0,"Continent":"K64","ID":37107,"Name":"0.18 Wioska honoru","PlayerID":699827112,"Points":9316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37107","ServerKey":"pl181","X":463,"Y":683},{"Bonus":0,"Continent":"K34","ID":37108,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37108","ServerKey":"pl181","X":429,"Y":323},{"Bonus":0,"Continent":"K46","ID":37109,"Name":"Pallad","PlayerID":8459255,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37109","ServerKey":"pl181","X":681,"Y":438},{"Bonus":0,"Continent":"K36","ID":37110,"Name":"016","PlayerID":698290577,"Points":7049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37110","ServerKey":"pl181","X":613,"Y":350},{"Bonus":0,"Continent":"K34","ID":37111,"Name":"Wioska Mergio","PlayerID":698749311,"Points":1489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37111","ServerKey":"pl181","X":400,"Y":338},{"Bonus":0,"Continent":"K43","ID":37112,"Name":"Out of Touch","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37112","ServerKey":"pl181","X":324,"Y":430},{"Bonus":2,"Continent":"K35","ID":37113,"Name":"Winterhome.009","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37113","ServerKey":"pl181","X":501,"Y":311},{"Bonus":0,"Continent":"K46","ID":37114,"Name":"069 | PALESTINA","PlayerID":9228039,"Points":9091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37114","ServerKey":"pl181","X":672,"Y":427},{"Bonus":0,"Continent":"K56","ID":37115,"Name":"TWIERDZA .:088:.","PlayerID":7154207,"Points":7706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37115","ServerKey":"pl181","X":680,"Y":567},{"Bonus":0,"Continent":"K34","ID":37116,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37116","ServerKey":"pl181","X":432,"Y":325},{"Bonus":0,"Continent":"K46","ID":37117,"Name":"Somsiory","PlayerID":699491076,"Points":7725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37117","ServerKey":"pl181","X":662,"Y":400},{"Bonus":0,"Continent":"K46","ID":37118,"Name":"OrzeƂ 3","PlayerID":699413581,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37118","ServerKey":"pl181","X":691,"Y":485},{"Bonus":0,"Continent":"K35","ID":37119,"Name":"AAA","PlayerID":1006847,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37119","ServerKey":"pl181","X":542,"Y":314},{"Bonus":0,"Continent":"K63","ID":37120,"Name":"--09--","PlayerID":8877156,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37120","ServerKey":"pl181","X":340,"Y":606},{"Bonus":0,"Continent":"K65","ID":37121,"Name":"-07-","PlayerID":7860453,"Points":5469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37121","ServerKey":"pl181","X":563,"Y":683},{"Bonus":0,"Continent":"K66","ID":37122,"Name":"043. Canes Venatici","PlayerID":699703642,"Points":7966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37122","ServerKey":"pl181","X":614,"Y":655},{"Bonus":0,"Continent":"K46","ID":37123,"Name":"Co ja robię tutaj","PlayerID":699785935,"Points":6838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37123","ServerKey":"pl181","X":668,"Y":405},{"Bonus":0,"Continent":"K43","ID":37124,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":8533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37124","ServerKey":"pl181","X":313,"Y":476},{"Bonus":0,"Continent":"K53","ID":37125,"Name":"C0113","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37125","ServerKey":"pl181","X":313,"Y":529},{"Bonus":0,"Continent":"K46","ID":37126,"Name":"014","PlayerID":699150527,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37126","ServerKey":"pl181","X":686,"Y":449},{"Bonus":0,"Continent":"K66","ID":37127,"Name":"A027","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37127","ServerKey":"pl181","X":602,"Y":660},{"Bonus":0,"Continent":"K53","ID":37128,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37128","ServerKey":"pl181","X":313,"Y":515},{"Bonus":0,"Continent":"K66","ID":37129,"Name":"Sony 911","PlayerID":1415009,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37129","ServerKey":"pl181","X":622,"Y":642},{"Bonus":0,"Continent":"K43","ID":37130,"Name":"WB19","PlayerID":356642,"Points":5961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37130","ServerKey":"pl181","X":332,"Y":406},{"Bonus":0,"Continent":"K66","ID":37131,"Name":"#072#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37131","ServerKey":"pl181","X":637,"Y":628},{"Bonus":0,"Continent":"K36","ID":37132,"Name":"=|12|=","PlayerID":9101574,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37132","ServerKey":"pl181","X":648,"Y":391},{"Bonus":0,"Continent":"K46","ID":37133,"Name":"Wioska Boliston","PlayerID":699738350,"Points":8976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37133","ServerKey":"pl181","X":672,"Y":415},{"Bonus":0,"Continent":"K63","ID":37134,"Name":"Wyspa","PlayerID":698769107,"Points":2636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37134","ServerKey":"pl181","X":383,"Y":653},{"Bonus":0,"Continent":"K53","ID":37135,"Name":"Devano1","PlayerID":7183372,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37135","ServerKey":"pl181","X":335,"Y":592},{"Bonus":0,"Continent":"K33","ID":37136,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37136","ServerKey":"pl181","X":372,"Y":362},{"Bonus":0,"Continent":"K43","ID":37137,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37137","ServerKey":"pl181","X":316,"Y":465},{"Bonus":0,"Continent":"K63","ID":37138,"Name":"A 094","PlayerID":6948793,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37138","ServerKey":"pl181","X":371,"Y":637},{"Bonus":6,"Continent":"K63","ID":37139,"Name":".:011:.","PlayerID":272173,"Points":8627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37139","ServerKey":"pl181","X":359,"Y":628},{"Bonus":0,"Continent":"K66","ID":37140,"Name":"A023","PlayerID":9023703,"Points":10908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37140","ServerKey":"pl181","X":605,"Y":661},{"Bonus":0,"Continent":"K46","ID":37141,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37141","ServerKey":"pl181","X":669,"Y":416},{"Bonus":0,"Continent":"K43","ID":37142,"Name":"002. Wehrmacht","PlayerID":698807570,"Points":10436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37142","ServerKey":"pl181","X":340,"Y":400},{"Bonus":0,"Continent":"K36","ID":37143,"Name":"=|11|=","PlayerID":9101574,"Points":8245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37143","ServerKey":"pl181","X":647,"Y":387},{"Bonus":0,"Continent":"K34","ID":37145,"Name":"266...EMERSON","PlayerID":6920960,"Points":6214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37145","ServerKey":"pl181","X":462,"Y":311},{"Bonus":0,"Continent":"K63","ID":37147,"Name":"130","PlayerID":699269923,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37147","ServerKey":"pl181","X":391,"Y":651},{"Bonus":0,"Continent":"K65","ID":37148,"Name":"- 164 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37148","ServerKey":"pl181","X":537,"Y":688},{"Bonus":0,"Continent":"K33","ID":37149,"Name":"*011*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37149","ServerKey":"pl181","X":353,"Y":387},{"Bonus":0,"Continent":"K43","ID":37150,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37150","ServerKey":"pl181","X":314,"Y":458},{"Bonus":1,"Continent":"K43","ID":37151,"Name":"Dream on","PlayerID":698962117,"Points":9479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37151","ServerKey":"pl181","X":309,"Y":497},{"Bonus":0,"Continent":"K43","ID":37152,"Name":"Out of Touch","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37152","ServerKey":"pl181","X":323,"Y":425},{"Bonus":0,"Continent":"K53","ID":37153,"Name":"C0104","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37153","ServerKey":"pl181","X":320,"Y":522},{"Bonus":0,"Continent":"K43","ID":37154,"Name":"-07-","PlayerID":765188,"Points":8506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37154","ServerKey":"pl181","X":333,"Y":498},{"Bonus":0,"Continent":"K65","ID":37155,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37155","ServerKey":"pl181","X":506,"Y":687},{"Bonus":0,"Continent":"K43","ID":37156,"Name":"Out of Touch","PlayerID":698962117,"Points":8494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37156","ServerKey":"pl181","X":322,"Y":427},{"Bonus":0,"Continent":"K53","ID":37157,"Name":"073 komornicy","PlayerID":699510259,"Points":5392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37157","ServerKey":"pl181","X":323,"Y":559},{"Bonus":0,"Continent":"K34","ID":37159,"Name":"230","PlayerID":7271812,"Points":2197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37159","ServerKey":"pl181","X":413,"Y":330},{"Bonus":0,"Continent":"K64","ID":37160,"Name":"O0019","PlayerID":699781762,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37160","ServerKey":"pl181","X":498,"Y":685},{"Bonus":0,"Continent":"K35","ID":37161,"Name":"UltraInstynkt+","PlayerID":699710633,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37161","ServerKey":"pl181","X":586,"Y":328},{"Bonus":0,"Continent":"K64","ID":37162,"Name":"Szale","PlayerID":698585370,"Points":8066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37162","ServerKey":"pl181","X":459,"Y":687},{"Bonus":0,"Continent":"K56","ID":37163,"Name":"WƂadcy PóƂnocy 08","PlayerID":699379895,"Points":6509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37163","ServerKey":"pl181","X":689,"Y":524},{"Bonus":0,"Continent":"K56","ID":37164,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":7472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37164","ServerKey":"pl181","X":687,"Y":539},{"Bonus":0,"Continent":"K63","ID":37166,"Name":"--03--","PlayerID":8877156,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37166","ServerKey":"pl181","X":342,"Y":602},{"Bonus":0,"Continent":"K65","ID":37167,"Name":"- 150 - SS","PlayerID":849018239,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37167","ServerKey":"pl181","X":541,"Y":687},{"Bonus":0,"Continent":"K46","ID":37168,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37168","ServerKey":"pl181","X":692,"Y":477},{"Bonus":0,"Continent":"K43","ID":37169,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37169","ServerKey":"pl181","X":318,"Y":454},{"Bonus":0,"Continent":"K65","ID":37170,"Name":"- 182 - SS","PlayerID":849018239,"Points":8016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37170","ServerKey":"pl181","X":534,"Y":687},{"Bonus":0,"Continent":"K53","ID":37171,"Name":"(010)Kurth","PlayerID":849098695,"Points":7219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37171","ServerKey":"pl181","X":326,"Y":563},{"Bonus":0,"Continent":"K35","ID":37172,"Name":"Vanaheim V","PlayerID":699478692,"Points":1825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37172","ServerKey":"pl181","X":595,"Y":336},{"Bonus":0,"Continent":"K56","ID":37173,"Name":"$Sochan","PlayerID":699795378,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37173","ServerKey":"pl181","X":686,"Y":505},{"Bonus":0,"Continent":"K33","ID":37174,"Name":"Szlachcic","PlayerID":3484132,"Points":9445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37174","ServerKey":"pl181","X":398,"Y":341},{"Bonus":0,"Continent":"K46","ID":37176,"Name":"B#016","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37176","ServerKey":"pl181","X":683,"Y":449},{"Bonus":0,"Continent":"K34","ID":37177,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37177","ServerKey":"pl181","X":432,"Y":323},{"Bonus":0,"Continent":"K64","ID":37178,"Name":"0.16 Jolo","PlayerID":699827112,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37178","ServerKey":"pl181","X":464,"Y":687},{"Bonus":0,"Continent":"K43","ID":37179,"Name":"0004 Cytadela","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37179","ServerKey":"pl181","X":318,"Y":441},{"Bonus":0,"Continent":"K43","ID":37180,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":7530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37180","ServerKey":"pl181","X":316,"Y":483},{"Bonus":0,"Continent":"K65","ID":37181,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37181","ServerKey":"pl181","X":503,"Y":686},{"Bonus":0,"Continent":"K46","ID":37182,"Name":"I063","PlayerID":699722599,"Points":10098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37182","ServerKey":"pl181","X":685,"Y":463},{"Bonus":0,"Continent":"K65","ID":37183,"Name":"Kreskowo_2","PlayerID":699567608,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37183","ServerKey":"pl181","X":594,"Y":661},{"Bonus":0,"Continent":"K64","ID":37184,"Name":"Wioska Halny","PlayerID":698757487,"Points":2340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37184","ServerKey":"pl181","X":453,"Y":682},{"Bonus":0,"Continent":"K43","ID":37185,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37185","ServerKey":"pl181","X":320,"Y":455},{"Bonus":0,"Continent":"K64","ID":37186,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37186","ServerKey":"pl181","X":410,"Y":662},{"Bonus":0,"Continent":"K46","ID":37188,"Name":"Wioska Jarl Pękniny","PlayerID":8582487,"Points":6201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37188","ServerKey":"pl181","X":661,"Y":400},{"Bonus":0,"Continent":"K46","ID":37189,"Name":"Village A","PlayerID":1086351,"Points":2638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37189","ServerKey":"pl181","X":667,"Y":403},{"Bonus":0,"Continent":"K36","ID":37190,"Name":"0089","PlayerID":848913037,"Points":6405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37190","ServerKey":"pl181","X":611,"Y":344},{"Bonus":0,"Continent":"K65","ID":37191,"Name":"0430","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37191","ServerKey":"pl181","X":564,"Y":678},{"Bonus":0,"Continent":"K53","ID":37192,"Name":"(026)Yezier","PlayerID":849098695,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37192","ServerKey":"pl181","X":328,"Y":577},{"Bonus":0,"Continent":"K35","ID":37193,"Name":".:088:. ƁOBUZIK","PlayerID":848934935,"Points":5925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37193","ServerKey":"pl181","X":553,"Y":359},{"Bonus":0,"Continent":"K66","ID":37194,"Name":"A033","PlayerID":9023703,"Points":8996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37194","ServerKey":"pl181","X":600,"Y":656},{"Bonus":0,"Continent":"K35","ID":37197,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37197","ServerKey":"pl181","X":521,"Y":309},{"Bonus":0,"Continent":"K33","ID":37198,"Name":"Wioska Abo co","PlayerID":848886056,"Points":5860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37198","ServerKey":"pl181","X":376,"Y":397},{"Bonus":0,"Continent":"K34","ID":37200,"Name":"064.Stradi","PlayerID":698365960,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37200","ServerKey":"pl181","X":450,"Y":320},{"Bonus":0,"Continent":"K53","ID":37202,"Name":"C0114","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37202","ServerKey":"pl181","X":314,"Y":528},{"Bonus":0,"Continent":"K55","ID":37203,"Name":"Wioska Rychu0890","PlayerID":33900,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37203","ServerKey":"pl181","X":574,"Y":582},{"Bonus":0,"Continent":"K64","ID":37204,"Name":"0.12 Night!","PlayerID":699827112,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37204","ServerKey":"pl181","X":467,"Y":689},{"Bonus":0,"Continent":"K53","ID":37205,"Name":"Wioska barbarzyƄska","PlayerID":9253494,"Points":1920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37205","ServerKey":"pl181","X":356,"Y":545},{"Bonus":0,"Continent":"K34","ID":37206,"Name":"#0308 deleted","PlayerID":1238300,"Points":2411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37206","ServerKey":"pl181","X":478,"Y":312},{"Bonus":0,"Continent":"K35","ID":37208,"Name":"J#005","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37208","ServerKey":"pl181","X":572,"Y":330},{"Bonus":0,"Continent":"K53","ID":37209,"Name":"007. Ƃ","PlayerID":698704189,"Points":3803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37209","ServerKey":"pl181","X":326,"Y":582},{"Bonus":4,"Continent":"K56","ID":37210,"Name":"Didi","PlayerID":849070946,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37210","ServerKey":"pl181","X":669,"Y":584},{"Bonus":0,"Continent":"K63","ID":37211,"Name":"Zatonie","PlayerID":699864013,"Points":5549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37211","ServerKey":"pl181","X":353,"Y":617},{"Bonus":0,"Continent":"K56","ID":37212,"Name":"Wioska barbarzyƄska","PlayerID":699379895,"Points":5548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37212","ServerKey":"pl181","X":687,"Y":525},{"Bonus":0,"Continent":"K35","ID":37213,"Name":"Wioska 2","PlayerID":7563943,"Points":4108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37213","ServerKey":"pl181","X":578,"Y":327},{"Bonus":0,"Continent":"K46","ID":37214,"Name":"Gattacka","PlayerID":699298370,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37214","ServerKey":"pl181","X":679,"Y":435},{"Bonus":0,"Continent":"K43","ID":37215,"Name":"Out of Touch","PlayerID":698962117,"Points":3292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37215","ServerKey":"pl181","X":320,"Y":431},{"Bonus":0,"Continent":"K65","ID":37216,"Name":"Wyspa_04","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37216","ServerKey":"pl181","X":507,"Y":690},{"Bonus":0,"Continent":"K43","ID":37217,"Name":"*175*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37217","ServerKey":"pl181","X":336,"Y":410},{"Bonus":0,"Continent":"K64","ID":37218,"Name":"B11 jaki znĂłw honor?","PlayerID":698652014,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37218","ServerKey":"pl181","X":460,"Y":685},{"Bonus":0,"Continent":"K33","ID":37219,"Name":"*069*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37219","ServerKey":"pl181","X":350,"Y":383},{"Bonus":0,"Continent":"K65","ID":37220,"Name":"2.Ibiza","PlayerID":698215322,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37220","ServerKey":"pl181","X":573,"Y":675},{"Bonus":0,"Continent":"K56","ID":37221,"Name":"Wioska 076","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37221","ServerKey":"pl181","X":667,"Y":597},{"Bonus":0,"Continent":"K35","ID":37222,"Name":"AAA","PlayerID":1006847,"Points":6160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37222","ServerKey":"pl181","X":526,"Y":315},{"Bonus":0,"Continent":"K65","ID":37223,"Name":"~053.","PlayerID":7139820,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37223","ServerKey":"pl181","X":516,"Y":618},{"Bonus":0,"Continent":"K34","ID":37224,"Name":"#0216 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37224","ServerKey":"pl181","X":457,"Y":312},{"Bonus":0,"Continent":"K53","ID":37226,"Name":"C0028","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37226","ServerKey":"pl181","X":310,"Y":522},{"Bonus":0,"Continent":"K63","ID":37228,"Name":"krecik 03 e","PlayerID":272173,"Points":2224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37228","ServerKey":"pl181","X":347,"Y":618},{"Bonus":0,"Continent":"K34","ID":37229,"Name":"#0210 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37229","ServerKey":"pl181","X":455,"Y":312},{"Bonus":0,"Continent":"K65","ID":37230,"Name":"Jedlanka Nowa","PlayerID":698723158,"Points":5876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37230","ServerKey":"pl181","X":577,"Y":671},{"Bonus":0,"Continent":"K36","ID":37231,"Name":"007.","PlayerID":699098531,"Points":10439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37231","ServerKey":"pl181","X":639,"Y":375},{"Bonus":0,"Continent":"K63","ID":37232,"Name":"Komornicy 018","PlayerID":699336777,"Points":3098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37232","ServerKey":"pl181","X":348,"Y":620},{"Bonus":0,"Continent":"K33","ID":37233,"Name":"*113*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37233","ServerKey":"pl181","X":358,"Y":370},{"Bonus":0,"Continent":"K63","ID":37234,"Name":"06 Puerto Lapice","PlayerID":699269923,"Points":6888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37234","ServerKey":"pl181","X":381,"Y":652},{"Bonus":0,"Continent":"K66","ID":37235,"Name":"#180#","PlayerID":692803,"Points":7260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37235","ServerKey":"pl181","X":648,"Y":617},{"Bonus":0,"Continent":"K66","ID":37236,"Name":"Ć»UBR .::.Adaczu/06","PlayerID":33900,"Points":3695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37236","ServerKey":"pl181","X":618,"Y":652},{"Bonus":0,"Continent":"K34","ID":37237,"Name":"[001]","PlayerID":849099160,"Points":11581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37237","ServerKey":"pl181","X":472,"Y":312},{"Bonus":0,"Continent":"K63","ID":37238,"Name":"Szymon9408","PlayerID":699269923,"Points":8114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37238","ServerKey":"pl181","X":397,"Y":656},{"Bonus":0,"Continent":"K36","ID":37239,"Name":"McGregor","PlayerID":699548295,"Points":6470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37239","ServerKey":"pl181","X":606,"Y":343},{"Bonus":0,"Continent":"K56","ID":37240,"Name":"069 donkretos1","PlayerID":2135129,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37240","ServerKey":"pl181","X":690,"Y":514},{"Bonus":0,"Continent":"K63","ID":37241,"Name":"C115","PlayerID":699383279,"Points":8214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37241","ServerKey":"pl181","X":368,"Y":630},{"Bonus":0,"Continent":"K65","ID":37242,"Name":"036 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37242","ServerKey":"pl181","X":526,"Y":691},{"Bonus":0,"Continent":"K56","ID":37243,"Name":"Didek","PlayerID":849070946,"Points":6992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37243","ServerKey":"pl181","X":670,"Y":572},{"Bonus":0,"Continent":"K43","ID":37244,"Name":"Lord Nc3dyh 3","PlayerID":699509284,"Points":2437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37244","ServerKey":"pl181","X":323,"Y":441},{"Bonus":0,"Continent":"K36","ID":37245,"Name":"Wyspa 026","PlayerID":699756210,"Points":6050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37245","ServerKey":"pl181","X":637,"Y":373},{"Bonus":0,"Continent":"K35","ID":37246,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":9932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37246","ServerKey":"pl181","X":597,"Y":342},{"Bonus":0,"Continent":"K35","ID":37247,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":6826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37247","ServerKey":"pl181","X":528,"Y":309},{"Bonus":0,"Continent":"K65","ID":37248,"Name":"- 237 - RR","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37248","ServerKey":"pl181","X":588,"Y":617},{"Bonus":0,"Continent":"K35","ID":37249,"Name":"Wioska 1","PlayerID":7563943,"Points":2605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37249","ServerKey":"pl181","X":575,"Y":327},{"Bonus":0,"Continent":"K65","ID":37250,"Name":"- 201 - SS","PlayerID":849018239,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37250","ServerKey":"pl181","X":538,"Y":681},{"Bonus":0,"Continent":"K63","ID":37251,"Name":"A 086","PlayerID":699269923,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37251","ServerKey":"pl181","X":373,"Y":636},{"Bonus":0,"Continent":"K34","ID":37252,"Name":"#0206 Segadorr dar","PlayerID":1238300,"Points":5684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37252","ServerKey":"pl181","X":460,"Y":315},{"Bonus":0,"Continent":"K43","ID":37253,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37253","ServerKey":"pl181","X":325,"Y":426},{"Bonus":0,"Continent":"K46","ID":37254,"Name":"002 PiƂsudskiego 138","PlayerID":849098769,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37254","ServerKey":"pl181","X":682,"Y":449},{"Bonus":0,"Continent":"K45","ID":37255,"Name":"031 RAW","PlayerID":698829590,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37255","ServerKey":"pl181","X":589,"Y":451},{"Bonus":0,"Continent":"K36","ID":37256,"Name":"04. Wioska Raukodel","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37256","ServerKey":"pl181","X":649,"Y":376},{"Bonus":0,"Continent":"K56","ID":37257,"Name":"Szlachcic","PlayerID":8096537,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37257","ServerKey":"pl181","X":693,"Y":512},{"Bonus":0,"Continent":"K34","ID":37258,"Name":"#0208 Segadorr dar","PlayerID":1238300,"Points":8066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37258","ServerKey":"pl181","X":458,"Y":312},{"Bonus":0,"Continent":"K66","ID":37259,"Name":"Wioska 8","PlayerID":1647052,"Points":7339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37259","ServerKey":"pl181","X":645,"Y":625},{"Bonus":0,"Continent":"K43","ID":37260,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37260","ServerKey":"pl181","X":312,"Y":490},{"Bonus":0,"Continent":"K35","ID":37262,"Name":"Wioska Zdobyta","PlayerID":849063793,"Points":3287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37262","ServerKey":"pl181","X":591,"Y":334},{"Bonus":0,"Continent":"K46","ID":37264,"Name":"Neapol","PlayerID":2392791,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37264","ServerKey":"pl181","X":686,"Y":489},{"Bonus":0,"Continent":"K35","ID":37266,"Name":"AAA","PlayerID":1006847,"Points":3488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37266","ServerKey":"pl181","X":546,"Y":316},{"Bonus":0,"Continent":"K35","ID":37267,"Name":"J#010","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37267","ServerKey":"pl181","X":572,"Y":329},{"Bonus":0,"Continent":"K36","ID":37268,"Name":"Klaudek14","PlayerID":849092309,"Points":5741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37268","ServerKey":"pl181","X":631,"Y":364},{"Bonus":0,"Continent":"K64","ID":37269,"Name":"0353","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37269","ServerKey":"pl181","X":444,"Y":605},{"Bonus":0,"Continent":"K43","ID":37270,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37270","ServerKey":"pl181","X":313,"Y":490},{"Bonus":0,"Continent":"K64","ID":37271,"Name":"0606","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37271","ServerKey":"pl181","X":488,"Y":688},{"Bonus":0,"Continent":"K65","ID":37273,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37273","ServerKey":"pl181","X":502,"Y":685},{"Bonus":0,"Continent":"K35","ID":37274,"Name":"Twierdza 2","PlayerID":699208929,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37274","ServerKey":"pl181","X":512,"Y":307},{"Bonus":0,"Continent":"K66","ID":37275,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":8446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37275","ServerKey":"pl181","X":621,"Y":641},{"Bonus":0,"Continent":"K33","ID":37276,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37276","ServerKey":"pl181","X":371,"Y":365},{"Bonus":0,"Continent":"K35","ID":37277,"Name":"Winterhome.024","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37277","ServerKey":"pl181","X":501,"Y":308},{"Bonus":0,"Continent":"K53","ID":37278,"Name":"060.","PlayerID":698704189,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37278","ServerKey":"pl181","X":323,"Y":579},{"Bonus":0,"Continent":"K63","ID":37279,"Name":"Pd 04","PlayerID":698908184,"Points":4683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37279","ServerKey":"pl181","X":360,"Y":632},{"Bonus":0,"Continent":"K56","ID":37281,"Name":"056 BanaN","PlayerID":2135129,"Points":9191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37281","ServerKey":"pl181","X":688,"Y":529},{"Bonus":0,"Continent":"K66","ID":37282,"Name":"Wioska","PlayerID":699797508,"Points":8119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37282","ServerKey":"pl181","X":644,"Y":604},{"Bonus":0,"Continent":"K65","ID":37283,"Name":"2.Huelva","PlayerID":698215322,"Points":5791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37283","ServerKey":"pl181","X":560,"Y":675},{"Bonus":0,"Continent":"K66","ID":37284,"Name":"Wioska 071","PlayerID":848971079,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37284","ServerKey":"pl181","X":662,"Y":600},{"Bonus":0,"Continent":"K33","ID":37285,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37285","ServerKey":"pl181","X":341,"Y":389},{"Bonus":0,"Continent":"K66","ID":37286,"Name":"Zbrodniczy ReĆŒim","PlayerID":1900364,"Points":11073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37286","ServerKey":"pl181","X":654,"Y":606},{"Bonus":0,"Continent":"K65","ID":37287,"Name":"038","PlayerID":2293376,"Points":7286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37287","ServerKey":"pl181","X":530,"Y":683},{"Bonus":0,"Continent":"K34","ID":37288,"Name":"079","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37288","ServerKey":"pl181","X":465,"Y":313},{"Bonus":0,"Continent":"K34","ID":37289,"Name":"04 Smoczy DwĂłr","PlayerID":699393759,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37289","ServerKey":"pl181","X":461,"Y":310},{"Bonus":0,"Continent":"K36","ID":37292,"Name":"Klaudek16","PlayerID":849092309,"Points":5138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37292","ServerKey":"pl181","X":633,"Y":366},{"Bonus":2,"Continent":"K46","ID":37293,"Name":"[009] Kupa zabawy!","PlayerID":849095068,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37293","ServerKey":"pl181","X":674,"Y":423},{"Bonus":0,"Continent":"K53","ID":37294,"Name":"wysypisko ƛmieci","PlayerID":699364813,"Points":3556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37294","ServerKey":"pl181","X":322,"Y":558},{"Bonus":0,"Continent":"K56","ID":37295,"Name":"C09","PlayerID":848995478,"Points":4145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37295","ServerKey":"pl181","X":691,"Y":531},{"Bonus":0,"Continent":"K66","ID":37296,"Name":"D013","PlayerID":9023703,"Points":7544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37296","ServerKey":"pl181","X":613,"Y":656},{"Bonus":0,"Continent":"K56","ID":37297,"Name":"060. NiedĆșwiedzi Ząb","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37297","ServerKey":"pl181","X":666,"Y":591},{"Bonus":0,"Continent":"K66","ID":37298,"Name":"Ć»UBR .::.Adaczu/07","PlayerID":33900,"Points":6440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37298","ServerKey":"pl181","X":617,"Y":648},{"Bonus":0,"Continent":"K53","ID":37300,"Name":"nie tym razem MƂody...","PlayerID":7183372,"Points":6183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37300","ServerKey":"pl181","X":330,"Y":584},{"Bonus":0,"Continent":"K46","ID":37301,"Name":"043. Wioska barbarzyƄska","PlayerID":7494497,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37301","ServerKey":"pl181","X":686,"Y":472},{"Bonus":0,"Continent":"K63","ID":37302,"Name":"{52} Ɓugi","PlayerID":849096945,"Points":1643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37302","ServerKey":"pl181","X":383,"Y":643},{"Bonus":0,"Continent":"K63","ID":37303,"Name":"03 Campo","PlayerID":699269923,"Points":9418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37303","ServerKey":"pl181","X":382,"Y":652},{"Bonus":0,"Continent":"K46","ID":37304,"Name":"[064] Wioska barbarzyƄska","PlayerID":849095068,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37304","ServerKey":"pl181","X":673,"Y":417},{"Bonus":0,"Continent":"K53","ID":37305,"Name":"C0115","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37305","ServerKey":"pl181","X":313,"Y":530},{"Bonus":0,"Continent":"K34","ID":37306,"Name":"[0063]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37306","ServerKey":"pl181","X":443,"Y":315},{"Bonus":0,"Continent":"K56","ID":37307,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":4904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37307","ServerKey":"pl181","X":682,"Y":559},{"Bonus":0,"Continent":"K36","ID":37308,"Name":"XDX","PlayerID":699098531,"Points":8309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37308","ServerKey":"pl181","X":618,"Y":349},{"Bonus":0,"Continent":"K64","ID":37309,"Name":"Wioska barbarzyƄska","PlayerID":8966820,"Points":6529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37309","ServerKey":"pl181","X":475,"Y":692},{"Bonus":0,"Continent":"K43","ID":37310,"Name":"Out of Touch","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37310","ServerKey":"pl181","X":326,"Y":429},{"Bonus":0,"Continent":"K34","ID":37311,"Name":"K34 - [094] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37311","ServerKey":"pl181","X":448,"Y":355},{"Bonus":0,"Continent":"K43","ID":37312,"Name":"Out of Touch","PlayerID":698962117,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37312","ServerKey":"pl181","X":318,"Y":434},{"Bonus":0,"Continent":"K35","ID":37313,"Name":"B.05 duchy serca puszczy","PlayerID":849026145,"Points":4532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37313","ServerKey":"pl181","X":555,"Y":318},{"Bonus":0,"Continent":"K63","ID":37314,"Name":"D.033","PlayerID":849088243,"Points":4423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37314","ServerKey":"pl181","X":379,"Y":649},{"Bonus":0,"Continent":"K46","ID":37315,"Name":"Wioska Flydy","PlayerID":849098769,"Points":8147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37315","ServerKey":"pl181","X":683,"Y":448},{"Bonus":0,"Continent":"K56","ID":37316,"Name":"WSP","PlayerID":848932879,"Points":6662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37316","ServerKey":"pl181","X":682,"Y":554},{"Bonus":0,"Continent":"K56","ID":37317,"Name":"*5611*f Mordor","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37317","ServerKey":"pl181","X":673,"Y":583},{"Bonus":0,"Continent":"K46","ID":37318,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37318","ServerKey":"pl181","X":669,"Y":405},{"Bonus":0,"Continent":"K56","ID":37319,"Name":"B06","PlayerID":848995478,"Points":3648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37319","ServerKey":"pl181","X":683,"Y":540},{"Bonus":0,"Continent":"K35","ID":37320,"Name":"075- Mroczna Osada","PlayerID":849035905,"Points":8620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37320","ServerKey":"pl181","X":597,"Y":336},{"Bonus":0,"Continent":"K56","ID":37321,"Name":"[035]","PlayerID":698305474,"Points":6750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37321","ServerKey":"pl181","X":663,"Y":588},{"Bonus":4,"Continent":"K65","ID":37322,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37322","ServerKey":"pl181","X":517,"Y":685},{"Bonus":0,"Continent":"K56","ID":37323,"Name":"C10","PlayerID":848995478,"Points":3579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37323","ServerKey":"pl181","X":686,"Y":537},{"Bonus":0,"Continent":"K33","ID":37324,"Name":"*101*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37324","ServerKey":"pl181","X":365,"Y":372},{"Bonus":0,"Continent":"K35","ID":37325,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":9143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37325","ServerKey":"pl181","X":585,"Y":329},{"Bonus":0,"Continent":"K64","ID":37326,"Name":"R 033","PlayerID":699195358,"Points":8700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37326","ServerKey":"pl181","X":497,"Y":693},{"Bonus":0,"Continent":"K33","ID":37327,"Name":"*099*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37327","ServerKey":"pl181","X":365,"Y":366},{"Bonus":0,"Continent":"K36","ID":37328,"Name":"ADEN","PlayerID":698588535,"Points":10758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37328","ServerKey":"pl181","X":609,"Y":350},{"Bonus":0,"Continent":"K65","ID":37329,"Name":"Wyspa_06","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37329","ServerKey":"pl181","X":501,"Y":694},{"Bonus":0,"Continent":"K53","ID":37330,"Name":"Zanzibar","PlayerID":7183372,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37330","ServerKey":"pl181","X":340,"Y":595},{"Bonus":0,"Continent":"K46","ID":37331,"Name":"**29**","PlayerID":849098782,"Points":8974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37331","ServerKey":"pl181","X":678,"Y":428},{"Bonus":2,"Continent":"K66","ID":37332,"Name":"OFF","PlayerID":849014413,"Points":9604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37332","ServerKey":"pl181","X":644,"Y":619},{"Bonus":0,"Continent":"K43","ID":37333,"Name":"M181_010","PlayerID":393668,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37333","ServerKey":"pl181","X":334,"Y":433},{"Bonus":0,"Continent":"K34","ID":37334,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37334","ServerKey":"pl181","X":426,"Y":322},{"Bonus":0,"Continent":"K64","ID":37335,"Name":"049 ChociebuĆŒ","PlayerID":699834004,"Points":8801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37335","ServerKey":"pl181","X":464,"Y":682},{"Bonus":0,"Continent":"K53","ID":37336,"Name":"Twierdza 014","PlayerID":7563185,"Points":2387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37336","ServerKey":"pl181","X":315,"Y":550},{"Bonus":0,"Continent":"K45","ID":37337,"Name":"009","PlayerID":699722599,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37337","ServerKey":"pl181","X":590,"Y":447},{"Bonus":0,"Continent":"K33","ID":37338,"Name":"Szulernia","PlayerID":7249451,"Points":9646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37338","ServerKey":"pl181","X":370,"Y":367},{"Bonus":0,"Continent":"K65","ID":37339,"Name":"START 04","PlayerID":699567608,"Points":6416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37339","ServerKey":"pl181","X":579,"Y":668},{"Bonus":0,"Continent":"K53","ID":37340,"Name":"Mordor5","PlayerID":698388578,"Points":8956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37340","ServerKey":"pl181","X":314,"Y":540},{"Bonus":0,"Continent":"K56","ID":37341,"Name":"$SanAntonioSpurs","PlayerID":699795378,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37341","ServerKey":"pl181","X":686,"Y":511},{"Bonus":0,"Continent":"K64","ID":37342,"Name":"034# Sacannah","PlayerID":3933666,"Points":4863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37342","ServerKey":"pl181","X":483,"Y":691},{"Bonus":0,"Continent":"K43","ID":37343,"Name":"Out of Touch","PlayerID":698962117,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37343","ServerKey":"pl181","X":325,"Y":434},{"Bonus":0,"Continent":"K56","ID":37344,"Name":"Wioska barbarzyƄska","PlayerID":699379895,"Points":4386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37344","ServerKey":"pl181","X":690,"Y":525},{"Bonus":0,"Continent":"K46","ID":37345,"Name":"Kolno","PlayerID":849100082,"Points":7868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37345","ServerKey":"pl181","X":688,"Y":472},{"Bonus":0,"Continent":"K33","ID":37346,"Name":"z 181-A005","PlayerID":3909522,"Points":8581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37346","ServerKey":"pl181","X":355,"Y":377},{"Bonus":0,"Continent":"K63","ID":37347,"Name":"Komornicy 002","PlayerID":699336777,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37347","ServerKey":"pl181","X":350,"Y":610},{"Bonus":0,"Continent":"K64","ID":37348,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37348","ServerKey":"pl181","X":471,"Y":689},{"Bonus":0,"Continent":"K56","ID":37349,"Name":"=001= Winterfell","PlayerID":3781794,"Points":10410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37349","ServerKey":"pl181","X":609,"Y":552},{"Bonus":0,"Continent":"K53","ID":37350,"Name":"Dream on","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37350","ServerKey":"pl181","X":310,"Y":500},{"Bonus":0,"Continent":"K63","ID":37351,"Name":"A 023","PlayerID":699342219,"Points":5580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37351","ServerKey":"pl181","X":365,"Y":628},{"Bonus":0,"Continent":"K33","ID":37352,"Name":"z Chocapic","PlayerID":3909522,"Points":8190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37352","ServerKey":"pl181","X":364,"Y":367},{"Bonus":6,"Continent":"K46","ID":37353,"Name":"emoriar","PlayerID":699574408,"Points":7927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37353","ServerKey":"pl181","X":687,"Y":453},{"Bonus":0,"Continent":"K34","ID":37355,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37355","ServerKey":"pl181","X":425,"Y":324},{"Bonus":0,"Continent":"K64","ID":37356,"Name":"Memfis","PlayerID":849089459,"Points":8216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37356","ServerKey":"pl181","X":411,"Y":662},{"Bonus":0,"Continent":"K43","ID":37357,"Name":"Cubryna","PlayerID":849013126,"Points":5199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37357","ServerKey":"pl181","X":310,"Y":481},{"Bonus":0,"Continent":"K53","ID":37358,"Name":"*003*","PlayerID":8630972,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37358","ServerKey":"pl181","X":314,"Y":538},{"Bonus":0,"Continent":"K65","ID":37359,"Name":"C014","PlayerID":9023703,"Points":8719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37359","ServerKey":"pl181","X":595,"Y":668},{"Bonus":0,"Continent":"K43","ID":37360,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37360","ServerKey":"pl181","X":315,"Y":468},{"Bonus":0,"Continent":"K35","ID":37361,"Name":"Vanaheim I","PlayerID":699478692,"Points":7190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37361","ServerKey":"pl181","X":594,"Y":338},{"Bonus":0,"Continent":"K35","ID":37362,"Name":"074KK","PlayerID":849063849,"Points":6084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37362","ServerKey":"pl181","X":586,"Y":334},{"Bonus":0,"Continent":"K53","ID":37364,"Name":"C0309","PlayerID":8841266,"Points":4891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37364","ServerKey":"pl181","X":319,"Y":543},{"Bonus":0,"Continent":"K63","ID":37365,"Name":"--10--","PlayerID":8877156,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37365","ServerKey":"pl181","X":338,"Y":606},{"Bonus":0,"Continent":"K53","ID":37366,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37366","ServerKey":"pl181","X":315,"Y":543},{"Bonus":0,"Continent":"K35","ID":37367,"Name":"K35 - [005] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37367","ServerKey":"pl181","X":575,"Y":322},{"Bonus":0,"Continent":"K35","ID":37368,"Name":"AAA","PlayerID":1006847,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37368","ServerKey":"pl181","X":548,"Y":317},{"Bonus":0,"Continent":"K35","ID":37369,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37369","ServerKey":"pl181","X":587,"Y":335},{"Bonus":0,"Continent":"K56","ID":37370,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":4266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37370","ServerKey":"pl181","X":686,"Y":545},{"Bonus":0,"Continent":"K33","ID":37371,"Name":"Wioska 02","PlayerID":3372959,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37371","ServerKey":"pl181","X":350,"Y":385},{"Bonus":0,"Continent":"K36","ID":37372,"Name":"Topornik 5","PlayerID":7340529,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37372","ServerKey":"pl181","X":649,"Y":378},{"Bonus":0,"Continent":"K34","ID":37373,"Name":"[0065]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37373","ServerKey":"pl181","X":440,"Y":316},{"Bonus":0,"Continent":"K63","ID":37374,"Name":"A 027","PlayerID":699342219,"Points":5201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37374","ServerKey":"pl181","X":365,"Y":631},{"Bonus":0,"Continent":"K56","ID":37375,"Name":"Pomidorowy dzem","PlayerID":699598425,"Points":10102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37375","ServerKey":"pl181","X":687,"Y":510},{"Bonus":0,"Continent":"K63","ID":37376,"Name":"035 - Nowy Początek...","PlayerID":699269923,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37376","ServerKey":"pl181","X":375,"Y":645},{"Bonus":0,"Continent":"K64","ID":37377,"Name":"10. Evil Demon","PlayerID":849100262,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37377","ServerKey":"pl181","X":498,"Y":650},{"Bonus":0,"Continent":"K46","ID":37378,"Name":"**49**","PlayerID":849098782,"Points":7586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37378","ServerKey":"pl181","X":671,"Y":421},{"Bonus":0,"Continent":"K43","ID":37379,"Name":"*161*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37379","ServerKey":"pl181","X":340,"Y":401},{"Bonus":0,"Continent":"K65","ID":37380,"Name":"- 184 - SS","PlayerID":849018239,"Points":8497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37380","ServerKey":"pl181","X":533,"Y":686},{"Bonus":0,"Continent":"K35","ID":37381,"Name":"AAA","PlayerID":1006847,"Points":6531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37381","ServerKey":"pl181","X":545,"Y":317},{"Bonus":0,"Continent":"K36","ID":37382,"Name":"013.","PlayerID":699098531,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37382","ServerKey":"pl181","X":639,"Y":374},{"Bonus":0,"Continent":"K56","ID":37383,"Name":"C001","PlayerID":8138506,"Points":5855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37383","ServerKey":"pl181","X":674,"Y":585},{"Bonus":0,"Continent":"K66","ID":37384,"Name":"#010#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37384","ServerKey":"pl181","X":627,"Y":635},{"Bonus":0,"Continent":"K66","ID":37385,"Name":"Wioska 058","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37385","ServerKey":"pl181","X":651,"Y":607},{"Bonus":0,"Continent":"K35","ID":37386,"Name":"Wioska new","PlayerID":849063793,"Points":2802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37386","ServerKey":"pl181","X":591,"Y":331},{"Bonus":0,"Continent":"K43","ID":37387,"Name":"*159*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37387","ServerKey":"pl181","X":336,"Y":409},{"Bonus":0,"Continent":"K66","ID":37388,"Name":"A029","PlayerID":9023703,"Points":9381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37388","ServerKey":"pl181","X":600,"Y":659},{"Bonus":0,"Continent":"K64","ID":37389,"Name":"10. Plac Wilsona","PlayerID":849092769,"Points":7114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37389","ServerKey":"pl181","X":486,"Y":692},{"Bonus":0,"Continent":"K36","ID":37390,"Name":"ADEN","PlayerID":698588535,"Points":6554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37390","ServerKey":"pl181","X":610,"Y":349},{"Bonus":0,"Continent":"K46","ID":37391,"Name":"[040] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37391","ServerKey":"pl181","X":677,"Y":443},{"Bonus":0,"Continent":"K53","ID":37392,"Name":"06.wiocha","PlayerID":7183372,"Points":5839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37392","ServerKey":"pl181","X":330,"Y":592},{"Bonus":0,"Continent":"K36","ID":37393,"Name":"=|49|=","PlayerID":9101574,"Points":4638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37393","ServerKey":"pl181","X":651,"Y":389},{"Bonus":0,"Continent":"K35","ID":37394,"Name":"Middle K35","PlayerID":699146580,"Points":8635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37394","ServerKey":"pl181","X":598,"Y":338},{"Bonus":0,"Continent":"K53","ID":37395,"Name":"Dream on","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37395","ServerKey":"pl181","X":310,"Y":503},{"Bonus":8,"Continent":"K53","ID":37396,"Name":"034","PlayerID":7183372,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37396","ServerKey":"pl181","X":335,"Y":589},{"Bonus":0,"Continent":"K35","ID":37397,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":5122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37397","ServerKey":"pl181","X":575,"Y":328},{"Bonus":0,"Continent":"K36","ID":37398,"Name":"-026-BBB","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37398","ServerKey":"pl181","X":616,"Y":347},{"Bonus":0,"Continent":"K53","ID":37399,"Name":"C0046","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37399","ServerKey":"pl181","X":312,"Y":524},{"Bonus":0,"Continent":"K56","ID":37400,"Name":"Wioska 078","PlayerID":848971079,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37400","ServerKey":"pl181","X":665,"Y":595},{"Bonus":0,"Continent":"K65","ID":37401,"Name":"099 invidia","PlayerID":849093426,"Points":7459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37401","ServerKey":"pl181","X":525,"Y":692},{"Bonus":0,"Continent":"K53","ID":37402,"Name":"C0005","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37402","ServerKey":"pl181","X":307,"Y":519},{"Bonus":7,"Continent":"K65","ID":37403,"Name":"HORUS ...","PlayerID":7756002,"Points":10088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37403","ServerKey":"pl181","X":572,"Y":675},{"Bonus":0,"Continent":"K35","ID":37404,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":1703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37404","ServerKey":"pl181","X":561,"Y":324},{"Bonus":0,"Continent":"K66","ID":37405,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37405","ServerKey":"pl181","X":639,"Y":622},{"Bonus":0,"Continent":"K63","ID":37406,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37406","ServerKey":"pl181","X":388,"Y":655},{"Bonus":0,"Continent":"K46","ID":37407,"Name":"I066","PlayerID":699722599,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37407","ServerKey":"pl181","X":686,"Y":464},{"Bonus":0,"Continent":"K63","ID":37408,"Name":"D.011","PlayerID":849088243,"Points":6197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37408","ServerKey":"pl181","X":393,"Y":659},{"Bonus":0,"Continent":"K46","ID":37409,"Name":"AGA5","PlayerID":699598425,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37409","ServerKey":"pl181","X":687,"Y":498},{"Bonus":3,"Continent":"K63","ID":37410,"Name":"A 067","PlayerID":272173,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37410","ServerKey":"pl181","X":363,"Y":637},{"Bonus":0,"Continent":"K43","ID":37411,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37411","ServerKey":"pl181","X":314,"Y":462},{"Bonus":0,"Continent":"K65","ID":37412,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37412","ServerKey":"pl181","X":595,"Y":658},{"Bonus":0,"Continent":"K43","ID":37413,"Name":"SsSs","PlayerID":1536625,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37413","ServerKey":"pl181","X":395,"Y":498},{"Bonus":0,"Continent":"K34","ID":37414,"Name":"178...Segadorr","PlayerID":6920960,"Points":10713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37414","ServerKey":"pl181","X":442,"Y":321},{"Bonus":0,"Continent":"K53","ID":37415,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":5479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37415","ServerKey":"pl181","X":312,"Y":542},{"Bonus":0,"Continent":"K36","ID":37416,"Name":"Wioska Bonaro","PlayerID":8760124,"Points":4359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37416","ServerKey":"pl181","X":647,"Y":376},{"Bonus":0,"Continent":"K53","ID":37417,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37417","ServerKey":"pl181","X":339,"Y":597},{"Bonus":0,"Continent":"K34","ID":37418,"Name":"[0075]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37418","ServerKey":"pl181","X":442,"Y":315},{"Bonus":0,"Continent":"K56","ID":37419,"Name":"Didus P","PlayerID":849070946,"Points":7739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37419","ServerKey":"pl181","X":671,"Y":575},{"Bonus":0,"Continent":"K64","ID":37421,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37421","ServerKey":"pl181","X":433,"Y":677},{"Bonus":5,"Continent":"K36","ID":37422,"Name":"-06-","PlayerID":698361257,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37422","ServerKey":"pl181","X":639,"Y":365},{"Bonus":0,"Continent":"K63","ID":37423,"Name":"Pd 07","PlayerID":272173,"Points":4021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37423","ServerKey":"pl181","X":361,"Y":633},{"Bonus":0,"Continent":"K55","ID":37424,"Name":"Wioska 5","PlayerID":699385139,"Points":8875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37424","ServerKey":"pl181","X":524,"Y":506},{"Bonus":0,"Continent":"K64","ID":37425,"Name":"Szale","PlayerID":698585370,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37425","ServerKey":"pl181","X":469,"Y":690},{"Bonus":0,"Continent":"K36","ID":37426,"Name":"yyy? Lucky Men","PlayerID":8963720,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37426","ServerKey":"pl181","X":604,"Y":339},{"Bonus":0,"Continent":"K35","ID":37427,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37427","ServerKey":"pl181","X":584,"Y":331},{"Bonus":0,"Continent":"K64","ID":37428,"Name":"psycha sitting","PlayerID":699736927,"Points":4166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37428","ServerKey":"pl181","X":422,"Y":674},{"Bonus":0,"Continent":"K53","ID":37429,"Name":"(034)Bavland","PlayerID":849098695,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37429","ServerKey":"pl181","X":323,"Y":565},{"Bonus":0,"Continent":"K53","ID":37430,"Name":"Wioska barbarzyƄska","PlayerID":699671197,"Points":2863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37430","ServerKey":"pl181","X":324,"Y":565},{"Bonus":0,"Continent":"K35","ID":37431,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37431","ServerKey":"pl181","X":598,"Y":352},{"Bonus":0,"Continent":"K56","ID":37432,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37432","ServerKey":"pl181","X":692,"Y":501},{"Bonus":0,"Continent":"K53","ID":37433,"Name":"000 Plutosea","PlayerID":9280477,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37433","ServerKey":"pl181","X":320,"Y":558},{"Bonus":0,"Continent":"K56","ID":37434,"Name":"Didus P","PlayerID":849070946,"Points":6835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37434","ServerKey":"pl181","X":672,"Y":576},{"Bonus":0,"Continent":"K34","ID":37435,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":8835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37435","ServerKey":"pl181","X":437,"Y":326},{"Bonus":0,"Continent":"K53","ID":37436,"Name":"*005*","PlayerID":8630972,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37436","ServerKey":"pl181","X":315,"Y":534},{"Bonus":0,"Continent":"K53","ID":37437,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37437","ServerKey":"pl181","X":307,"Y":521},{"Bonus":0,"Continent":"K63","ID":37438,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37438","ServerKey":"pl181","X":389,"Y":657},{"Bonus":0,"Continent":"K53","ID":37439,"Name":"007. Wioska ƁYsY52","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37439","ServerKey":"pl181","X":326,"Y":584},{"Bonus":0,"Continent":"K65","ID":37440,"Name":"Wyspa_07","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37440","ServerKey":"pl181","X":502,"Y":694},{"Bonus":0,"Continent":"K46","ID":37441,"Name":"Gattacka","PlayerID":699298370,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37441","ServerKey":"pl181","X":681,"Y":433},{"Bonus":0,"Continent":"K43","ID":37442,"Name":"*154*","PlayerID":699273451,"Points":7291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37442","ServerKey":"pl181","X":344,"Y":400},{"Bonus":0,"Continent":"K53","ID":37443,"Name":"Wioska Lebera","PlayerID":7183372,"Points":10341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37443","ServerKey":"pl181","X":333,"Y":597},{"Bonus":0,"Continent":"K43","ID":37444,"Name":"Out of Touch","PlayerID":698962117,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37444","ServerKey":"pl181","X":322,"Y":426},{"Bonus":0,"Continent":"K34","ID":37445,"Name":"#0284 Don Noobas","PlayerID":1238300,"Points":10148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37445","ServerKey":"pl181","X":474,"Y":309},{"Bonus":0,"Continent":"K43","ID":37446,"Name":"AAA","PlayerID":8184383,"Points":2899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37446","ServerKey":"pl181","X":323,"Y":448},{"Bonus":0,"Continent":"K64","ID":37447,"Name":"A08","PlayerID":698652014,"Points":9562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37447","ServerKey":"pl181","X":475,"Y":668},{"Bonus":0,"Continent":"K53","ID":37448,"Name":"Szlachcic","PlayerID":698388578,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37448","ServerKey":"pl181","X":318,"Y":533},{"Bonus":0,"Continent":"K35","ID":37449,"Name":"ADEN","PlayerID":698588535,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37449","ServerKey":"pl181","X":519,"Y":384},{"Bonus":0,"Continent":"K66","ID":37450,"Name":"Ć»UBR PSYCHIATRYK 018","PlayerID":33900,"Points":8402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37450","ServerKey":"pl181","X":621,"Y":648},{"Bonus":0,"Continent":"K43","ID":37451,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37451","ServerKey":"pl181","X":311,"Y":468},{"Bonus":0,"Continent":"K46","ID":37453,"Name":"Gattacka","PlayerID":699298370,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37453","ServerKey":"pl181","X":679,"Y":432},{"Bonus":0,"Continent":"K36","ID":37454,"Name":"ula887","PlayerID":698420691,"Points":7889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37454","ServerKey":"pl181","X":619,"Y":357},{"Bonus":0,"Continent":"K34","ID":37455,"Name":"[003]","PlayerID":849099160,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37455","ServerKey":"pl181","X":474,"Y":313},{"Bonus":0,"Continent":"K65","ID":37456,"Name":"2.Murcja","PlayerID":698215322,"Points":4990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37456","ServerKey":"pl181","X":576,"Y":677},{"Bonus":0,"Continent":"K64","ID":37457,"Name":"psycha sitting","PlayerID":699736927,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37457","ServerKey":"pl181","X":401,"Y":664},{"Bonus":0,"Continent":"K63","ID":37458,"Name":"Taran","PlayerID":6180190,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37458","ServerKey":"pl181","X":340,"Y":609},{"Bonus":0,"Continent":"K35","ID":37459,"Name":"Wioska barbarzyƄska","PlayerID":699244334,"Points":3400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37459","ServerKey":"pl181","X":545,"Y":321},{"Bonus":0,"Continent":"K65","ID":37460,"Name":"2.Merida","PlayerID":698215322,"Points":11099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37460","ServerKey":"pl181","X":581,"Y":678},{"Bonus":0,"Continent":"K65","ID":37461,"Name":"2.Toledo","PlayerID":698215322,"Points":4587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37461","ServerKey":"pl181","X":575,"Y":673},{"Bonus":0,"Continent":"K35","ID":37462,"Name":"X 003","PlayerID":6384450,"Points":8186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37462","ServerKey":"pl181","X":593,"Y":330},{"Bonus":0,"Continent":"K64","ID":37463,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37463","ServerKey":"pl181","X":432,"Y":674},{"Bonus":0,"Continent":"K53","ID":37464,"Name":"035 Barba 12","PlayerID":926823,"Points":2879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37464","ServerKey":"pl181","X":317,"Y":540},{"Bonus":0,"Continent":"K65","ID":37465,"Name":"2.Bilbao","PlayerID":698215322,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37465","ServerKey":"pl181","X":574,"Y":679},{"Bonus":0,"Continent":"K66","ID":37466,"Name":"040 Petrovya","PlayerID":8337151,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37466","ServerKey":"pl181","X":663,"Y":600},{"Bonus":0,"Continent":"K53","ID":37467,"Name":"C0019","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37467","ServerKey":"pl181","X":314,"Y":516},{"Bonus":0,"Continent":"K56","ID":37468,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37468","ServerKey":"pl181","X":684,"Y":553},{"Bonus":3,"Continent":"K53","ID":37469,"Name":"C0140","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37469","ServerKey":"pl181","X":310,"Y":535},{"Bonus":0,"Continent":"K33","ID":37470,"Name":"HOOC","PlayerID":8123790,"Points":1277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37470","ServerKey":"pl181","X":399,"Y":343},{"Bonus":0,"Continent":"K56","ID":37471,"Name":"047. Reavstone","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37471","ServerKey":"pl181","X":661,"Y":599},{"Bonus":0,"Continent":"K45","ID":37472,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37472","ServerKey":"pl181","X":526,"Y":426},{"Bonus":0,"Continent":"K46","ID":37473,"Name":"[035] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37473","ServerKey":"pl181","X":674,"Y":422},{"Bonus":0,"Continent":"K34","ID":37474,"Name":"[0025] XXX","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37474","ServerKey":"pl181","X":446,"Y":315},{"Bonus":0,"Continent":"K64","ID":37475,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37475","ServerKey":"pl181","X":455,"Y":656},{"Bonus":0,"Continent":"K36","ID":37476,"Name":"Wioska 2","PlayerID":849056744,"Points":5725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37476","ServerKey":"pl181","X":626,"Y":357},{"Bonus":0,"Continent":"K56","ID":37478,"Name":"xxx","PlayerID":699316421,"Points":7185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37478","ServerKey":"pl181","X":687,"Y":550},{"Bonus":0,"Continent":"K36","ID":37479,"Name":"08. Wioska Raukodel","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37479","ServerKey":"pl181","X":650,"Y":376},{"Bonus":0,"Continent":"K65","ID":37481,"Name":"- 137 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37481","ServerKey":"pl181","X":537,"Y":689},{"Bonus":0,"Continent":"K65","ID":37482,"Name":"Wioska dekunka2","PlayerID":699167148,"Points":1892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37482","ServerKey":"pl181","X":554,"Y":684},{"Bonus":0,"Continent":"K34","ID":37483,"Name":"202","PlayerID":7271812,"Points":9073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37483","ServerKey":"pl181","X":423,"Y":331},{"Bonus":0,"Continent":"K36","ID":37484,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":7705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37484","ServerKey":"pl181","X":644,"Y":380},{"Bonus":0,"Continent":"K64","ID":37485,"Name":"004","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37485","ServerKey":"pl181","X":468,"Y":685},{"Bonus":0,"Continent":"K35","ID":37486,"Name":"AAA","PlayerID":1006847,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37486","ServerKey":"pl181","X":534,"Y":318},{"Bonus":0,"Continent":"K36","ID":37487,"Name":"045- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37487","ServerKey":"pl181","X":653,"Y":392},{"Bonus":0,"Continent":"K64","ID":37488,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37488","ServerKey":"pl181","X":438,"Y":679},{"Bonus":0,"Continent":"K65","ID":37489,"Name":"TARAN","PlayerID":7860453,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37489","ServerKey":"pl181","X":550,"Y":683},{"Bonus":0,"Continent":"K33","ID":37490,"Name":"0013","PlayerID":699644448,"Points":2660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37490","ServerKey":"pl181","X":364,"Y":363},{"Bonus":0,"Continent":"K65","ID":37491,"Name":"020 jakoƛ to będzie","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37491","ServerKey":"pl181","X":515,"Y":691},{"Bonus":0,"Continent":"K56","ID":37492,"Name":"TWIERDZA .:032:.","PlayerID":7154207,"Points":10370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37492","ServerKey":"pl181","X":680,"Y":571},{"Bonus":0,"Continent":"K53","ID":37493,"Name":"050","PlayerID":698641566,"Points":8616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37493","ServerKey":"pl181","X":359,"Y":518},{"Bonus":0,"Continent":"K66","ID":37494,"Name":"A022","PlayerID":9023703,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37494","ServerKey":"pl181","X":607,"Y":661},{"Bonus":0,"Continent":"K35","ID":37495,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":3761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37495","ServerKey":"pl181","X":564,"Y":323},{"Bonus":0,"Continent":"K35","ID":37496,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":7731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37496","ServerKey":"pl181","X":527,"Y":310},{"Bonus":0,"Continent":"K33","ID":37497,"Name":"z internacionale 018 ttttttttttt","PlayerID":3909522,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37497","ServerKey":"pl181","X":352,"Y":382},{"Bonus":0,"Continent":"K46","ID":37498,"Name":"052. Wioska barbarzyƄska","PlayerID":7494497,"Points":9432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37498","ServerKey":"pl181","X":691,"Y":467},{"Bonus":0,"Continent":"K53","ID":37500,"Name":"027.","PlayerID":7183372,"Points":2123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37500","ServerKey":"pl181","X":331,"Y":584},{"Bonus":0,"Continent":"K34","ID":37502,"Name":"Winterhome.038","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37502","ServerKey":"pl181","X":495,"Y":310},{"Bonus":0,"Continent":"K66","ID":37503,"Name":"....","PlayerID":1900364,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37503","ServerKey":"pl181","X":649,"Y":603},{"Bonus":0,"Continent":"K65","ID":37504,"Name":"C006","PlayerID":9023703,"Points":8684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37504","ServerKey":"pl181","X":596,"Y":665},{"Bonus":0,"Continent":"K35","ID":37505,"Name":"B.16 duchy serca puszczy","PlayerID":849026145,"Points":3290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37505","ServerKey":"pl181","X":561,"Y":317},{"Bonus":0,"Continent":"K65","ID":37506,"Name":"- 166 - SS","PlayerID":849018239,"Points":9832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37506","ServerKey":"pl181","X":546,"Y":685},{"Bonus":0,"Continent":"K35","ID":37507,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":5451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37507","ServerKey":"pl181","X":574,"Y":328},{"Bonus":0,"Continent":"K63","ID":37508,"Name":"-Akuku-","PlayerID":7183372,"Points":9381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37508","ServerKey":"pl181","X":343,"Y":607},{"Bonus":9,"Continent":"K43","ID":37509,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37509","ServerKey":"pl181","X":316,"Y":449},{"Bonus":0,"Continent":"K63","ID":37511,"Name":"Komornicy 003","PlayerID":699336777,"Points":8764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37511","ServerKey":"pl181","X":348,"Y":606},{"Bonus":0,"Continent":"K33","ID":37512,"Name":"Szlachcic","PlayerID":698160606,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37512","ServerKey":"pl181","X":379,"Y":353},{"Bonus":5,"Continent":"K43","ID":37513,"Name":"Out of Touch","PlayerID":698962117,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37513","ServerKey":"pl181","X":323,"Y":428},{"Bonus":0,"Continent":"K64","ID":37514,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37514","ServerKey":"pl181","X":495,"Y":640},{"Bonus":0,"Continent":"K53","ID":37515,"Name":"A1.","PlayerID":849095482,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37515","ServerKey":"pl181","X":315,"Y":546},{"Bonus":0,"Continent":"K33","ID":37516,"Name":"*106*","PlayerID":699273451,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37516","ServerKey":"pl181","X":359,"Y":370},{"Bonus":0,"Continent":"K66","ID":37517,"Name":"OFF","PlayerID":849014413,"Points":9588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37517","ServerKey":"pl181","X":662,"Y":606},{"Bonus":0,"Continent":"K63","ID":37518,"Name":"--11--","PlayerID":8877156,"Points":6785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37518","ServerKey":"pl181","X":345,"Y":606},{"Bonus":0,"Continent":"K43","ID":37519,"Name":"Out of Touch","PlayerID":698962117,"Points":8372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37519","ServerKey":"pl181","X":323,"Y":432},{"Bonus":0,"Continent":"K53","ID":37520,"Name":"Wioska barbarzyƄska001","PlayerID":849046232,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37520","ServerKey":"pl181","X":335,"Y":584},{"Bonus":0,"Continent":"K64","ID":37521,"Name":"089","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37521","ServerKey":"pl181","X":450,"Y":685},{"Bonus":0,"Continent":"K34","ID":37522,"Name":"Skunik","PlayerID":699854830,"Points":3001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37522","ServerKey":"pl181","X":411,"Y":336},{"Bonus":0,"Continent":"K35","ID":37523,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37523","ServerKey":"pl181","X":519,"Y":307},{"Bonus":0,"Continent":"K35","ID":37525,"Name":"Winterhome.005","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37525","ServerKey":"pl181","X":508,"Y":312},{"Bonus":6,"Continent":"K53","ID":37526,"Name":"-022-","PlayerID":7183372,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37526","ServerKey":"pl181","X":332,"Y":584},{"Bonus":0,"Continent":"K63","ID":37527,"Name":"034 - Nowy Początek...","PlayerID":699269923,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37527","ServerKey":"pl181","X":374,"Y":646},{"Bonus":0,"Continent":"K63","ID":37528,"Name":"Ć»elazny deff","PlayerID":699805839,"Points":8017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37528","ServerKey":"pl181","X":359,"Y":624},{"Bonus":0,"Continent":"K33","ID":37530,"Name":"z 00101Fajnie","PlayerID":3909522,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37530","ServerKey":"pl181","X":357,"Y":371},{"Bonus":0,"Continent":"K53","ID":37532,"Name":"Rzeka","PlayerID":699265922,"Points":5670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37532","ServerKey":"pl181","X":320,"Y":552},{"Bonus":0,"Continent":"K65","ID":37533,"Name":"2.Valencia","PlayerID":698215322,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37533","ServerKey":"pl181","X":571,"Y":674},{"Bonus":0,"Continent":"K66","ID":37534,"Name":"#181#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37534","ServerKey":"pl181","X":647,"Y":618},{"Bonus":0,"Continent":"K33","ID":37535,"Name":"New Land 12","PlayerID":849064752,"Points":3842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37535","ServerKey":"pl181","X":342,"Y":390},{"Bonus":0,"Continent":"K66","ID":37536,"Name":"081. Ziemia Niczyja","PlayerID":8337151,"Points":8160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37536","ServerKey":"pl181","X":648,"Y":620},{"Bonus":0,"Continent":"K63","ID":37537,"Name":"A 101","PlayerID":7085510,"Points":6503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37537","ServerKey":"pl181","X":369,"Y":638},{"Bonus":0,"Continent":"K35","ID":37538,"Name":"004 Anor Londo","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37538","ServerKey":"pl181","X":518,"Y":315},{"Bonus":0,"Continent":"K65","ID":37539,"Name":"CiepielĂłw","PlayerID":698723158,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37539","ServerKey":"pl181","X":576,"Y":670},{"Bonus":0,"Continent":"K35","ID":37540,"Name":"Kielce","PlayerID":7139853,"Points":2849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37540","ServerKey":"pl181","X":560,"Y":317},{"Bonus":0,"Continent":"K43","ID":37541,"Name":"W07","PlayerID":849096547,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37541","ServerKey":"pl181","X":335,"Y":415},{"Bonus":0,"Continent":"K43","ID":37542,"Name":"Out of Touch","PlayerID":698962117,"Points":6282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37542","ServerKey":"pl181","X":323,"Y":421},{"Bonus":0,"Continent":"K66","ID":37543,"Name":"Wioska 098","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37543","ServerKey":"pl181","X":643,"Y":605},{"Bonus":0,"Continent":"K65","ID":37544,"Name":"- 154 - SS","PlayerID":849018239,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37544","ServerKey":"pl181","X":535,"Y":684},{"Bonus":0,"Continent":"K33","ID":37545,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37545","ServerKey":"pl181","X":388,"Y":350},{"Bonus":0,"Continent":"K33","ID":37546,"Name":"New Land 14","PlayerID":849064752,"Points":3698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37546","ServerKey":"pl181","X":342,"Y":388},{"Bonus":0,"Continent":"K46","ID":37547,"Name":"Dark hell","PlayerID":1086351,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37547","ServerKey":"pl181","X":661,"Y":401},{"Bonus":0,"Continent":"K64","ID":37548,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37548","ServerKey":"pl181","X":440,"Y":684},{"Bonus":0,"Continent":"K65","ID":37549,"Name":"- 165 - SS","PlayerID":849018239,"Points":9207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37549","ServerKey":"pl181","X":546,"Y":683},{"Bonus":0,"Continent":"K53","ID":37550,"Name":"012","PlayerID":849098628,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37550","ServerKey":"pl181","X":319,"Y":551},{"Bonus":0,"Continent":"K56","ID":37551,"Name":"$ClevelandCavaliers","PlayerID":699795378,"Points":6424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37551","ServerKey":"pl181","X":692,"Y":509},{"Bonus":0,"Continent":"K64","ID":37552,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37552","ServerKey":"pl181","X":407,"Y":664},{"Bonus":0,"Continent":"K46","ID":37553,"Name":"C.007","PlayerID":9188016,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37553","ServerKey":"pl181","X":691,"Y":492},{"Bonus":0,"Continent":"K46","ID":37554,"Name":"[003] Pruty","PlayerID":849095068,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37554","ServerKey":"pl181","X":673,"Y":421},{"Bonus":0,"Continent":"K46","ID":37555,"Name":"InowrocƂaw","PlayerID":7973893,"Points":6486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37555","ServerKey":"pl181","X":666,"Y":403},{"Bonus":0,"Continent":"K46","ID":37556,"Name":"047 Stumilowy Las","PlayerID":9238175,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37556","ServerKey":"pl181","X":665,"Y":412},{"Bonus":0,"Continent":"K36","ID":37557,"Name":"Topornik 6","PlayerID":7340529,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37557","ServerKey":"pl181","X":652,"Y":382},{"Bonus":0,"Continent":"K43","ID":37558,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37558","ServerKey":"pl181","X":316,"Y":452},{"Bonus":0,"Continent":"K64","ID":37559,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37559","ServerKey":"pl181","X":418,"Y":673},{"Bonus":0,"Continent":"K43","ID":37560,"Name":"Rubiez6","PlayerID":699265922,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37560","ServerKey":"pl181","X":306,"Y":486},{"Bonus":0,"Continent":"K33","ID":37561,"Name":"Czysta ;-)","PlayerID":698160606,"Points":8495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37561","ServerKey":"pl181","X":383,"Y":349},{"Bonus":0,"Continent":"K46","ID":37562,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37562","ServerKey":"pl181","X":679,"Y":481},{"Bonus":0,"Continent":"K63","ID":37563,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":699269923,"Points":4915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37563","ServerKey":"pl181","X":380,"Y":646},{"Bonus":0,"Continent":"K53","ID":37565,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37565","ServerKey":"pl181","X":337,"Y":596},{"Bonus":9,"Continent":"K63","ID":37566,"Name":"Pd 08","PlayerID":698908184,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37566","ServerKey":"pl181","X":360,"Y":634},{"Bonus":0,"Continent":"K64","ID":37567,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37567","ServerKey":"pl181","X":433,"Y":673},{"Bonus":0,"Continent":"K46","ID":37568,"Name":"014. za oknami noc","PlayerID":7494497,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37568","ServerKey":"pl181","X":686,"Y":474},{"Bonus":0,"Continent":"K56","ID":37569,"Name":"068. Beirland","PlayerID":8337151,"Points":8841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37569","ServerKey":"pl181","X":662,"Y":592},{"Bonus":0,"Continent":"K33","ID":37570,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37570","ServerKey":"pl181","X":367,"Y":364},{"Bonus":0,"Continent":"K66","ID":37571,"Name":"A028","PlayerID":9023703,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37571","ServerKey":"pl181","X":601,"Y":660},{"Bonus":0,"Continent":"K65","ID":37572,"Name":"xxxxxxxxxxx","PlayerID":873575,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37572","ServerKey":"pl181","X":549,"Y":680},{"Bonus":0,"Continent":"K43","ID":37573,"Name":"Out of Touch","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37573","ServerKey":"pl181","X":323,"Y":424},{"Bonus":0,"Continent":"K33","ID":37574,"Name":"z 181-A006","PlayerID":3909522,"Points":8636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37574","ServerKey":"pl181","X":356,"Y":377},{"Bonus":0,"Continent":"K34","ID":37575,"Name":"[0138]","PlayerID":8630972,"Points":9588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37575","ServerKey":"pl181","X":453,"Y":313},{"Bonus":0,"Continent":"K53","ID":37576,"Name":"Sullivanum [4]","PlayerID":1606425,"Points":10585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37576","ServerKey":"pl181","X":337,"Y":588},{"Bonus":0,"Continent":"K45","ID":37577,"Name":"035","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37577","ServerKey":"pl181","X":556,"Y":402},{"Bonus":0,"Continent":"K56","ID":37578,"Name":"C07","PlayerID":848995478,"Points":5727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37578","ServerKey":"pl181","X":688,"Y":536},{"Bonus":0,"Continent":"K46","ID":37579,"Name":"**45**","PlayerID":849098782,"Points":7839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37579","ServerKey":"pl181","X":674,"Y":424},{"Bonus":0,"Continent":"K46","ID":37580,"Name":"JAN NEW3 Ost","PlayerID":879782,"Points":8433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37580","ServerKey":"pl181","X":689,"Y":454},{"Bonus":0,"Continent":"K53","ID":37581,"Name":"037","PlayerID":7183372,"Points":8474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37581","ServerKey":"pl181","X":333,"Y":586},{"Bonus":0,"Continent":"K66","ID":37582,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37582","ServerKey":"pl181","X":652,"Y":620},{"Bonus":0,"Continent":"K53","ID":37583,"Name":"C0038","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37583","ServerKey":"pl181","X":313,"Y":512},{"Bonus":0,"Continent":"K53","ID":37584,"Name":"C0063","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37584","ServerKey":"pl181","X":314,"Y":509},{"Bonus":0,"Continent":"K36","ID":37585,"Name":"=|47|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37585","ServerKey":"pl181","X":654,"Y":389},{"Bonus":0,"Continent":"K56","ID":37586,"Name":"TWIERDZA .:080:.","PlayerID":7154207,"Points":7991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37586","ServerKey":"pl181","X":675,"Y":569},{"Bonus":0,"Continent":"K53","ID":37587,"Name":"C0055","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37587","ServerKey":"pl181","X":310,"Y":527},{"Bonus":0,"Continent":"K53","ID":37588,"Name":"C0116","PlayerID":8841266,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37588","ServerKey":"pl181","X":315,"Y":528},{"Bonus":0,"Continent":"K36","ID":37589,"Name":"017.","PlayerID":699098531,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37589","ServerKey":"pl181","X":640,"Y":370},{"Bonus":0,"Continent":"K43","ID":37592,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37592","ServerKey":"pl181","X":315,"Y":472},{"Bonus":0,"Continent":"K65","ID":37593,"Name":"Wyspa_14","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37593","ServerKey":"pl181","X":501,"Y":691},{"Bonus":0,"Continent":"K64","ID":37594,"Name":"Ave Why!","PlayerID":698585370,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37594","ServerKey":"pl181","X":453,"Y":685},{"Bonus":0,"Continent":"K35","ID":37595,"Name":"0043","PlayerID":699485250,"Points":5071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37595","ServerKey":"pl181","X":568,"Y":321},{"Bonus":0,"Continent":"K66","ID":37597,"Name":"036","PlayerID":699099811,"Points":5290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37597","ServerKey":"pl181","X":654,"Y":619},{"Bonus":0,"Continent":"K34","ID":37598,"Name":"Feed me more 017","PlayerID":699756210,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37598","ServerKey":"pl181","X":492,"Y":382},{"Bonus":0,"Continent":"K64","ID":37599,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37599","ServerKey":"pl181","X":465,"Y":690},{"Bonus":1,"Continent":"K65","ID":37600,"Name":"0092","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37600","ServerKey":"pl181","X":570,"Y":675},{"Bonus":0,"Continent":"K36","ID":37601,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37601","ServerKey":"pl181","X":648,"Y":377},{"Bonus":8,"Continent":"K56","ID":37602,"Name":"WschĂłd X2","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37602","ServerKey":"pl181","X":685,"Y":526},{"Bonus":0,"Continent":"K36","ID":37603,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":5310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37603","ServerKey":"pl181","X":626,"Y":362},{"Bonus":0,"Continent":"K33","ID":37604,"Name":"z 011 EV6","PlayerID":3909522,"Points":7866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37604","ServerKey":"pl181","X":360,"Y":378},{"Bonus":0,"Continent":"K34","ID":37605,"Name":"#0290 Marass","PlayerID":1238300,"Points":4551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37605","ServerKey":"pl181","X":463,"Y":317},{"Bonus":0,"Continent":"K33","ID":37606,"Name":"Szlachcic","PlayerID":3484132,"Points":9884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37606","ServerKey":"pl181","X":397,"Y":343},{"Bonus":0,"Continent":"K35","ID":37607,"Name":"05. Suzi Rivers","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37607","ServerKey":"pl181","X":557,"Y":318},{"Bonus":0,"Continent":"K43","ID":37608,"Name":"Out of Touch","PlayerID":698962117,"Points":3529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37608","ServerKey":"pl181","X":319,"Y":439},{"Bonus":0,"Continent":"K53","ID":37609,"Name":"Sielawa","PlayerID":699265922,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37609","ServerKey":"pl181","X":329,"Y":548},{"Bonus":0,"Continent":"K36","ID":37611,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":3388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37611","ServerKey":"pl181","X":619,"Y":351},{"Bonus":0,"Continent":"K35","ID":37613,"Name":"067- Mroczna Osada","PlayerID":849035905,"Points":7861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37613","ServerKey":"pl181","X":597,"Y":337},{"Bonus":0,"Continent":"K33","ID":37614,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37614","ServerKey":"pl181","X":363,"Y":399},{"Bonus":0,"Continent":"K34","ID":37615,"Name":"[0066]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37615","ServerKey":"pl181","X":437,"Y":318},{"Bonus":0,"Continent":"K65","ID":37616,"Name":"TARAN","PlayerID":7860453,"Points":9439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37616","ServerKey":"pl181","X":548,"Y":689},{"Bonus":0,"Continent":"K53","ID":37617,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37617","ServerKey":"pl181","X":312,"Y":517},{"Bonus":0,"Continent":"K64","ID":37618,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37618","ServerKey":"pl181","X":416,"Y":674},{"Bonus":0,"Continent":"K36","ID":37619,"Name":"Topornik 7","PlayerID":7340529,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37619","ServerKey":"pl181","X":653,"Y":382},{"Bonus":0,"Continent":"K34","ID":37620,"Name":"[007]","PlayerID":849099160,"Points":10467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37620","ServerKey":"pl181","X":473,"Y":314},{"Bonus":0,"Continent":"K46","ID":37621,"Name":"C.008","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37621","ServerKey":"pl181","X":691,"Y":494},{"Bonus":0,"Continent":"K65","ID":37622,"Name":"PoƂudnie.005","PlayerID":873575,"Points":10102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37622","ServerKey":"pl181","X":552,"Y":682},{"Bonus":6,"Continent":"K43","ID":37623,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37623","ServerKey":"pl181","X":317,"Y":461},{"Bonus":0,"Continent":"K64","ID":37624,"Name":"psycha sitting","PlayerID":699736927,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37624","ServerKey":"pl181","X":406,"Y":670},{"Bonus":0,"Continent":"K63","ID":37625,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":5364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37625","ServerKey":"pl181","X":346,"Y":616},{"Bonus":0,"Continent":"K43","ID":37627,"Name":"*185*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37627","ServerKey":"pl181","X":329,"Y":412},{"Bonus":0,"Continent":"K35","ID":37628,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":4007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37628","ServerKey":"pl181","X":564,"Y":319},{"Bonus":0,"Continent":"K33","ID":37629,"Name":"z. Lecimy tu 22","PlayerID":3909522,"Points":4733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37629","ServerKey":"pl181","X":354,"Y":374},{"Bonus":0,"Continent":"K65","ID":37630,"Name":"2.Sevilla","PlayerID":698215322,"Points":8511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37630","ServerKey":"pl181","X":570,"Y":680},{"Bonus":0,"Continent":"K33","ID":37631,"Name":"Szlachcic","PlayerID":3484132,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37631","ServerKey":"pl181","X":393,"Y":348},{"Bonus":0,"Continent":"K36","ID":37632,"Name":"Lord Lord Franek .#192","PlayerID":698420691,"Points":7664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37632","ServerKey":"pl181","X":618,"Y":357},{"Bonus":7,"Continent":"K56","ID":37633,"Name":"C 019","PlayerID":8078914,"Points":10920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37633","ServerKey":"pl181","X":690,"Y":523},{"Bonus":0,"Continent":"K66","ID":37634,"Name":"Wioska 4","PlayerID":1647052,"Points":2833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37634","ServerKey":"pl181","X":643,"Y":625},{"Bonus":0,"Continent":"K53","ID":37635,"Name":"Z 005","PlayerID":849084740,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37635","ServerKey":"pl181","X":332,"Y":597},{"Bonus":0,"Continent":"K63","ID":37636,"Name":"Obok sąsiada 2","PlayerID":699269923,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37636","ServerKey":"pl181","X":384,"Y":651},{"Bonus":0,"Continent":"K43","ID":37637,"Name":"Out of Touch","PlayerID":698962117,"Points":2695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37637","ServerKey":"pl181","X":325,"Y":436},{"Bonus":0,"Continent":"K33","ID":37638,"Name":"*014*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37638","ServerKey":"pl181","X":353,"Y":386},{"Bonus":0,"Continent":"K36","ID":37639,"Name":"-003- ChwaƂa Imperium","PlayerID":8675636,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37639","ServerKey":"pl181","X":617,"Y":345},{"Bonus":0,"Continent":"K56","ID":37640,"Name":"C 009","PlayerID":8078914,"Points":6241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37640","ServerKey":"pl181","X":689,"Y":514},{"Bonus":0,"Continent":"K53","ID":37641,"Name":"(008)Shinovar","PlayerID":849098695,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37641","ServerKey":"pl181","X":330,"Y":575},{"Bonus":0,"Continent":"K34","ID":37642,"Name":"056.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37642","ServerKey":"pl181","X":453,"Y":315},{"Bonus":0,"Continent":"K34","ID":37643,"Name":"036","PlayerID":849010255,"Points":5918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37643","ServerKey":"pl181","X":485,"Y":364},{"Bonus":0,"Continent":"K35","ID":37644,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":4624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37644","ServerKey":"pl181","X":590,"Y":334},{"Bonus":0,"Continent":"K33","ID":37645,"Name":"New Land 16","PlayerID":849064752,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37645","ServerKey":"pl181","X":338,"Y":394},{"Bonus":0,"Continent":"K63","ID":37646,"Name":"C110","PlayerID":699383279,"Points":8981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37646","ServerKey":"pl181","X":368,"Y":633},{"Bonus":0,"Continent":"K53","ID":37647,"Name":"C0187","PlayerID":8841266,"Points":8697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37647","ServerKey":"pl181","X":310,"Y":534},{"Bonus":0,"Continent":"K66","ID":37648,"Name":"D003","PlayerID":9023703,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37648","ServerKey":"pl181","X":611,"Y":657},{"Bonus":0,"Continent":"K66","ID":37649,"Name":"#032#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37649","ServerKey":"pl181","X":627,"Y":636},{"Bonus":0,"Continent":"K56","ID":37650,"Name":"C18","PlayerID":848995478,"Points":3471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37650","ServerKey":"pl181","X":684,"Y":542},{"Bonus":0,"Continent":"K33","ID":37651,"Name":"Szlachcic","PlayerID":3484132,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37651","ServerKey":"pl181","X":389,"Y":342},{"Bonus":0,"Continent":"K66","ID":37652,"Name":"~~058~~","PlayerID":7829201,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37652","ServerKey":"pl181","X":631,"Y":640},{"Bonus":0,"Continent":"K35","ID":37654,"Name":"Z002","PlayerID":699208929,"Points":7065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37654","ServerKey":"pl181","X":516,"Y":310},{"Bonus":0,"Continent":"K65","ID":37655,"Name":"033","PlayerID":2293376,"Points":7271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37655","ServerKey":"pl181","X":529,"Y":686},{"Bonus":0,"Continent":"K56","ID":37656,"Name":"Kingdom 8","PlayerID":699598425,"Points":10587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37656","ServerKey":"pl181","X":689,"Y":502},{"Bonus":0,"Continent":"K65","ID":37657,"Name":"Muchomor","PlayerID":606407,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37657","ServerKey":"pl181","X":515,"Y":688},{"Bonus":0,"Continent":"K56","ID":37658,"Name":"072 donkretos4","PlayerID":2135129,"Points":6432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37658","ServerKey":"pl181","X":689,"Y":517},{"Bonus":0,"Continent":"K35","ID":37659,"Name":"AAA","PlayerID":1006847,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37659","ServerKey":"pl181","X":551,"Y":315},{"Bonus":6,"Continent":"K43","ID":37660,"Name":"Rubiez2","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37660","ServerKey":"pl181","X":310,"Y":485},{"Bonus":0,"Continent":"K64","ID":37661,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37661","ServerKey":"pl181","X":426,"Y":677},{"Bonus":0,"Continent":"K34","ID":37662,"Name":"[005]","PlayerID":849099160,"Points":11216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37662","ServerKey":"pl181","X":470,"Y":310},{"Bonus":0,"Continent":"K53","ID":37663,"Name":"003","PlayerID":849012521,"Points":3594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37663","ServerKey":"pl181","X":324,"Y":558},{"Bonus":0,"Continent":"K35","ID":37664,"Name":"AAA","PlayerID":1006847,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37664","ServerKey":"pl181","X":539,"Y":318},{"Bonus":0,"Continent":"K65","ID":37666,"Name":"- 162 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37666","ServerKey":"pl181","X":555,"Y":683},{"Bonus":0,"Continent":"K66","ID":37667,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37667","ServerKey":"pl181","X":648,"Y":613},{"Bonus":6,"Continent":"K64","ID":37668,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37668","ServerKey":"pl181","X":419,"Y":674},{"Bonus":0,"Continent":"K63","ID":37669,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37669","ServerKey":"pl181","X":339,"Y":603},{"Bonus":0,"Continent":"K33","ID":37670,"Name":"009","PlayerID":848945529,"Points":3180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37670","ServerKey":"pl181","X":342,"Y":387},{"Bonus":7,"Continent":"K46","ID":37671,"Name":"018 Osada koczownikĂłw","PlayerID":849098769,"Points":8565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37671","ServerKey":"pl181","X":682,"Y":453},{"Bonus":0,"Continent":"K53","ID":37672,"Name":"Village","PlayerID":849099258,"Points":8715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37672","ServerKey":"pl181","X":318,"Y":567},{"Bonus":0,"Continent":"K43","ID":37673,"Name":"Out of Touch","PlayerID":698962117,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37673","ServerKey":"pl181","X":321,"Y":425},{"Bonus":0,"Continent":"K46","ID":37674,"Name":"036. Lady elo320","PlayerID":7494497,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37674","ServerKey":"pl181","X":688,"Y":471},{"Bonus":0,"Continent":"K34","ID":37675,"Name":"Winterhome.053","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37675","ServerKey":"pl181","X":498,"Y":308},{"Bonus":0,"Continent":"K46","ID":37676,"Name":"NieskoƄczonoƛć","PlayerID":699785935,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37676","ServerKey":"pl181","X":665,"Y":407},{"Bonus":6,"Continent":"K34","ID":37677,"Name":"080","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37677","ServerKey":"pl181","X":464,"Y":313},{"Bonus":0,"Continent":"K65","ID":37678,"Name":"Wyspa_24","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37678","ServerKey":"pl181","X":514,"Y":692},{"Bonus":0,"Continent":"K63","ID":37679,"Name":"Komornicy 013","PlayerID":699336777,"Points":3685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37679","ServerKey":"pl181","X":350,"Y":618},{"Bonus":0,"Continent":"K43","ID":37680,"Name":"*173*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37680","ServerKey":"pl181","X":332,"Y":414},{"Bonus":8,"Continent":"K53","ID":37681,"Name":"057g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37681","ServerKey":"pl181","X":316,"Y":555},{"Bonus":0,"Continent":"K35","ID":37682,"Name":"Wilamowice","PlayerID":7139853,"Points":3173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37682","ServerKey":"pl181","X":541,"Y":313},{"Bonus":0,"Continent":"K35","ID":37683,"Name":"Winterhome.033","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37683","ServerKey":"pl181","X":502,"Y":313},{"Bonus":0,"Continent":"K64","ID":37684,"Name":"0.22 Druga gwiazdka","PlayerID":699827112,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37684","ServerKey":"pl181","X":464,"Y":683},{"Bonus":0,"Continent":"K33","ID":37685,"Name":"z 00101 Czarna magia","PlayerID":3909522,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37685","ServerKey":"pl181","X":357,"Y":369},{"Bonus":0,"Continent":"K66","ID":37686,"Name":"_PUSTA","PlayerID":698768565,"Points":9356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37686","ServerKey":"pl181","X":663,"Y":606},{"Bonus":0,"Continent":"K46","ID":37687,"Name":"Co przyniesie czas","PlayerID":699785935,"Points":8121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37687","ServerKey":"pl181","X":666,"Y":407},{"Bonus":0,"Continent":"K64","ID":37688,"Name":"psycha sitting","PlayerID":699736927,"Points":9187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37688","ServerKey":"pl181","X":422,"Y":672},{"Bonus":0,"Continent":"K36","ID":37689,"Name":"Moldor 10","PlayerID":849049045,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37689","ServerKey":"pl181","X":632,"Y":358},{"Bonus":0,"Continent":"K43","ID":37690,"Name":"Out of Touch","PlayerID":698962117,"Points":6931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37690","ServerKey":"pl181","X":324,"Y":439},{"Bonus":6,"Continent":"K65","ID":37691,"Name":"PoƂudnie.020","PlayerID":873575,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37691","ServerKey":"pl181","X":558,"Y":682},{"Bonus":0,"Continent":"K35","ID":37692,"Name":"0047","PlayerID":699485250,"Points":4645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37692","ServerKey":"pl181","X":570,"Y":324},{"Bonus":0,"Continent":"K34","ID":37693,"Name":"- 04 - Miasto","PlayerID":848902744,"Points":6897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37693","ServerKey":"pl181","X":469,"Y":311},{"Bonus":0,"Continent":"K66","ID":37694,"Name":"~~080~~","PlayerID":7829201,"Points":4621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37694","ServerKey":"pl181","X":633,"Y":641},{"Bonus":0,"Continent":"K56","ID":37695,"Name":"BRZEG JORDANU | 005","PlayerID":9228039,"Points":6228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37695","ServerKey":"pl181","X":686,"Y":518},{"Bonus":0,"Continent":"K43","ID":37696,"Name":"*184*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37696","ServerKey":"pl181","X":335,"Y":408},{"Bonus":0,"Continent":"K65","ID":37697,"Name":"Wyspa_09","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37697","ServerKey":"pl181","X":504,"Y":694},{"Bonus":0,"Continent":"K53","ID":37698,"Name":"C0013","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37698","ServerKey":"pl181","X":307,"Y":520},{"Bonus":0,"Continent":"K65","ID":37699,"Name":"Wyspa_15","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37699","ServerKey":"pl181","X":501,"Y":692},{"Bonus":0,"Continent":"K34","ID":37701,"Name":"???","PlayerID":698489071,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37701","ServerKey":"pl181","X":487,"Y":308},{"Bonus":5,"Continent":"K43","ID":37702,"Name":"Dream on","PlayerID":698962117,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37702","ServerKey":"pl181","X":306,"Y":487},{"Bonus":0,"Continent":"K43","ID":37703,"Name":"Out of Touch","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37703","ServerKey":"pl181","X":321,"Y":431},{"Bonus":0,"Continent":"K66","ID":37704,"Name":"A060","PlayerID":9023703,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37704","ServerKey":"pl181","X":606,"Y":653},{"Bonus":0,"Continent":"K65","ID":37705,"Name":"PoƂudnie.007","PlayerID":873575,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37705","ServerKey":"pl181","X":556,"Y":681},{"Bonus":0,"Continent":"K63","ID":37707,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":5543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37707","ServerKey":"pl181","X":395,"Y":656},{"Bonus":0,"Continent":"K35","ID":37709,"Name":"007","PlayerID":849099054,"Points":4373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37709","ServerKey":"pl181","X":531,"Y":312},{"Bonus":0,"Continent":"K56","ID":37710,"Name":"TWIERDZA .:025:.","PlayerID":7154207,"Points":10182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37710","ServerKey":"pl181","X":679,"Y":565},{"Bonus":0,"Continent":"K65","ID":37712,"Name":"PoƂudnie.004","PlayerID":873575,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37712","ServerKey":"pl181","X":556,"Y":680},{"Bonus":8,"Continent":"K46","ID":37713,"Name":"054 Wioska 007","PlayerID":9238175,"Points":10323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37713","ServerKey":"pl181","X":664,"Y":409},{"Bonus":0,"Continent":"K35","ID":37715,"Name":"Wioska 4","PlayerID":849099342,"Points":5018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37715","ServerKey":"pl181","X":506,"Y":306},{"Bonus":0,"Continent":"K56","ID":37717,"Name":"*5618* Pig","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37717","ServerKey":"pl181","X":675,"Y":573},{"Bonus":0,"Continent":"K46","ID":37718,"Name":"**48**","PlayerID":849098782,"Points":6428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37718","ServerKey":"pl181","X":677,"Y":421},{"Bonus":0,"Continent":"K34","ID":37719,"Name":"081","PlayerID":2502956,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37719","ServerKey":"pl181","X":467,"Y":308},{"Bonus":0,"Continent":"K46","ID":37720,"Name":"Retkinia","PlayerID":849100246,"Points":5650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37720","ServerKey":"pl181","X":687,"Y":481},{"Bonus":0,"Continent":"K33","ID":37721,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37721","ServerKey":"pl181","X":394,"Y":343},{"Bonus":0,"Continent":"K36","ID":37722,"Name":"-001- ChwaƂa Imperium","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37722","ServerKey":"pl181","X":617,"Y":346},{"Bonus":0,"Continent":"K33","ID":37723,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37723","ServerKey":"pl181","X":384,"Y":349},{"Bonus":0,"Continent":"K46","ID":37724,"Name":"114","PlayerID":7085502,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37724","ServerKey":"pl181","X":623,"Y":417},{"Bonus":0,"Continent":"K34","ID":37725,"Name":"#0277 olcixx","PlayerID":1238300,"Points":9265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37725","ServerKey":"pl181","X":460,"Y":310},{"Bonus":0,"Continent":"K46","ID":37726,"Name":"Baruchowo","PlayerID":7973893,"Points":6658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37726","ServerKey":"pl181","X":664,"Y":403},{"Bonus":0,"Continent":"K34","ID":37727,"Name":"[002]","PlayerID":849099160,"Points":11581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37727","ServerKey":"pl181","X":471,"Y":313},{"Bonus":0,"Continent":"K63","ID":37728,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":6909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37728","ServerKey":"pl181","X":343,"Y":615},{"Bonus":0,"Continent":"K36","ID":37729,"Name":"-025- BBB","PlayerID":8675636,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37729","ServerKey":"pl181","X":618,"Y":348},{"Bonus":0,"Continent":"K43","ID":37730,"Name":"Suppi","PlayerID":699856962,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37730","ServerKey":"pl181","X":328,"Y":421},{"Bonus":0,"Continent":"K53","ID":37731,"Name":"wysypisko ƛmieci","PlayerID":699364813,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37731","ServerKey":"pl181","X":322,"Y":549},{"Bonus":0,"Continent":"K35","ID":37732,"Name":"AAA","PlayerID":1006847,"Points":11898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37732","ServerKey":"pl181","X":549,"Y":321},{"Bonus":0,"Continent":"K53","ID":37733,"Name":"*009*","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37733","ServerKey":"pl181","X":324,"Y":545},{"Bonus":0,"Continent":"K36","ID":37735,"Name":"*039*","PlayerID":698670524,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37735","ServerKey":"pl181","X":665,"Y":396},{"Bonus":0,"Continent":"K65","ID":37736,"Name":"- 160 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37736","ServerKey":"pl181","X":556,"Y":684},{"Bonus":2,"Continent":"K43","ID":37737,"Name":"007","PlayerID":7127455,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37737","ServerKey":"pl181","X":315,"Y":479},{"Bonus":0,"Continent":"K34","ID":37738,"Name":"[0079]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37738","ServerKey":"pl181","X":434,"Y":319},{"Bonus":0,"Continent":"K35","ID":37739,"Name":"B.06 duchy serca puszczy","PlayerID":849026145,"Points":2973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37739","ServerKey":"pl181","X":555,"Y":316},{"Bonus":0,"Continent":"K56","ID":37740,"Name":"[037]","PlayerID":698305474,"Points":5907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37740","ServerKey":"pl181","X":663,"Y":589},{"Bonus":0,"Continent":"K34","ID":37741,"Name":"0158","PlayerID":699431255,"Points":3124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37741","ServerKey":"pl181","X":406,"Y":339},{"Bonus":0,"Continent":"K64","ID":37742,"Name":"**INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37742","ServerKey":"pl181","X":498,"Y":686},{"Bonus":0,"Continent":"K43","ID":37743,"Name":"1 Bargly","PlayerID":8048374,"Points":5340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37743","ServerKey":"pl181","X":311,"Y":479},{"Bonus":0,"Continent":"K36","ID":37744,"Name":"kamilkaze135 #10","PlayerID":699705601,"Points":8232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37744","ServerKey":"pl181","X":656,"Y":386},{"Bonus":0,"Continent":"K66","ID":37745,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37745","ServerKey":"pl181","X":654,"Y":620},{"Bonus":0,"Continent":"K46","ID":37746,"Name":"I035 Ndst siadaj!","PlayerID":699722599,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37746","ServerKey":"pl181","X":683,"Y":463},{"Bonus":0,"Continent":"K34","ID":37747,"Name":"Winterhome.040","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37747","ServerKey":"pl181","X":496,"Y":311},{"Bonus":0,"Continent":"K63","ID":37748,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":4081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37748","ServerKey":"pl181","X":358,"Y":623},{"Bonus":0,"Continent":"K63","ID":37749,"Name":"A 039","PlayerID":699342219,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37749","ServerKey":"pl181","X":364,"Y":633},{"Bonus":0,"Continent":"K53","ID":37751,"Name":"C0199","PlayerID":8841266,"Points":10118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37751","ServerKey":"pl181","X":310,"Y":533},{"Bonus":0,"Continent":"K33","ID":37752,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":9983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37752","ServerKey":"pl181","X":392,"Y":340},{"Bonus":0,"Continent":"K65","ID":37753,"Name":"AG07","PlayerID":699876345,"Points":9141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37753","ServerKey":"pl181","X":593,"Y":667},{"Bonus":0,"Continent":"K35","ID":37754,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37754","ServerKey":"pl181","X":561,"Y":315},{"Bonus":0,"Continent":"K46","ID":37755,"Name":"046. Wioska barbarzyƄska","PlayerID":7494497,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37755","ServerKey":"pl181","X":689,"Y":468},{"Bonus":3,"Continent":"K63","ID":37756,"Name":"Komornicy 001","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37756","ServerKey":"pl181","X":352,"Y":621},{"Bonus":0,"Continent":"K33","ID":37757,"Name":"z 15 .","PlayerID":3909522,"Points":7584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37757","ServerKey":"pl181","X":366,"Y":365},{"Bonus":0,"Continent":"K66","ID":37758,"Name":"kks","PlayerID":699567608,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37758","ServerKey":"pl181","X":620,"Y":642},{"Bonus":0,"Continent":"K63","ID":37759,"Name":"Komornicy 024","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37759","ServerKey":"pl181","X":349,"Y":612},{"Bonus":0,"Continent":"K33","ID":37760,"Name":"A04 KrakĂłw","PlayerID":7462660,"Points":4898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37760","ServerKey":"pl181","X":347,"Y":383},{"Bonus":0,"Continent":"K54","ID":37761,"Name":"NOT?","PlayerID":9236866,"Points":6966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37761","ServerKey":"pl181","X":409,"Y":538},{"Bonus":0,"Continent":"K43","ID":37762,"Name":"002","PlayerID":848895676,"Points":4326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37762","ServerKey":"pl181","X":310,"Y":477},{"Bonus":0,"Continent":"K34","ID":37763,"Name":"103.Stradi","PlayerID":698365960,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37763","ServerKey":"pl181","X":457,"Y":318},{"Bonus":0,"Continent":"K35","ID":37764,"Name":"B.11 duchy serca puszczy","PlayerID":849026145,"Points":4615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37764","ServerKey":"pl181","X":551,"Y":320},{"Bonus":0,"Continent":"K53","ID":37765,"Name":"000 Plutosea","PlayerID":9280477,"Points":7053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37765","ServerKey":"pl181","X":321,"Y":557},{"Bonus":0,"Continent":"K63","ID":37766,"Name":"Komornicy 025","PlayerID":699336777,"Points":2069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37766","ServerKey":"pl181","X":348,"Y":610},{"Bonus":0,"Continent":"K43","ID":37767,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37767","ServerKey":"pl181","X":332,"Y":404},{"Bonus":0,"Continent":"K43","ID":37768,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":6226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37768","ServerKey":"pl181","X":315,"Y":471},{"Bonus":0,"Continent":"K64","ID":37769,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37769","ServerKey":"pl181","X":428,"Y":677},{"Bonus":0,"Continent":"K56","ID":37770,"Name":"036","PlayerID":698999105,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37770","ServerKey":"pl181","X":645,"Y":542},{"Bonus":0,"Continent":"K34","ID":37771,"Name":"???","PlayerID":698489071,"Points":6369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37771","ServerKey":"pl181","X":466,"Y":309},{"Bonus":0,"Continent":"K65","ID":37772,"Name":"005 tylko fejk","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37772","ServerKey":"pl181","X":529,"Y":694},{"Bonus":0,"Continent":"K64","ID":37773,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37773","ServerKey":"pl181","X":437,"Y":683},{"Bonus":0,"Continent":"K63","ID":37774,"Name":"--12--","PlayerID":8877156,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37774","ServerKey":"pl181","X":341,"Y":606},{"Bonus":0,"Continent":"K36","ID":37775,"Name":"-23-","PlayerID":698361257,"Points":3287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37775","ServerKey":"pl181","X":636,"Y":363},{"Bonus":0,"Continent":"K33","ID":37776,"Name":"*067*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37776","ServerKey":"pl181","X":349,"Y":385},{"Bonus":0,"Continent":"K33","ID":37777,"Name":"Szlachcic","PlayerID":698160606,"Points":10111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37777","ServerKey":"pl181","X":383,"Y":344},{"Bonus":0,"Continent":"K46","ID":37779,"Name":"21. Porto","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37779","ServerKey":"pl181","X":686,"Y":484},{"Bonus":0,"Continent":"K53","ID":37780,"Name":"Z 004","PlayerID":849084740,"Points":7709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37780","ServerKey":"pl181","X":329,"Y":593},{"Bonus":0,"Continent":"K35","ID":37782,"Name":"Winterhome.008","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37782","ServerKey":"pl181","X":509,"Y":312},{"Bonus":0,"Continent":"K53","ID":37784,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":9414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37784","ServerKey":"pl181","X":320,"Y":573},{"Bonus":0,"Continent":"K64","ID":37785,"Name":"032.xxx","PlayerID":8612358,"Points":4113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37785","ServerKey":"pl181","X":494,"Y":688},{"Bonus":0,"Continent":"K65","ID":37786,"Name":"- 151 - SS","PlayerID":849018239,"Points":9218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37786","ServerKey":"pl181","X":547,"Y":688},{"Bonus":0,"Continent":"K64","ID":37787,"Name":"029 Maecht","PlayerID":699834004,"Points":4980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37787","ServerKey":"pl181","X":476,"Y":692},{"Bonus":0,"Continent":"K43","ID":37788,"Name":"012. PruszkĂłw","PlayerID":849098966,"Points":5604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37788","ServerKey":"pl181","X":316,"Y":448},{"Bonus":0,"Continent":"K63","ID":37789,"Name":"Taran","PlayerID":6180190,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37789","ServerKey":"pl181","X":341,"Y":611},{"Bonus":5,"Continent":"K63","ID":37790,"Name":".02. Moria e","PlayerID":272173,"Points":8401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37790","ServerKey":"pl181","X":353,"Y":618},{"Bonus":0,"Continent":"K34","ID":37792,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37792","ServerKey":"pl181","X":414,"Y":331},{"Bonus":0,"Continent":"K33","ID":37793,"Name":"New Land 13","PlayerID":849064752,"Points":3535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37793","ServerKey":"pl181","X":351,"Y":383},{"Bonus":1,"Continent":"K65","ID":37794,"Name":".2.Madryt","PlayerID":698215322,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37794","ServerKey":"pl181","X":571,"Y":680},{"Bonus":0,"Continent":"K54","ID":37795,"Name":"088. ALFI","PlayerID":8539216,"Points":1242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37795","ServerKey":"pl181","X":473,"Y":574},{"Bonus":0,"Continent":"K36","ID":37796,"Name":"-028- BBB","PlayerID":849099276,"Points":4603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37796","ServerKey":"pl181","X":617,"Y":348},{"Bonus":0,"Continent":"K33","ID":37797,"Name":"*032*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37797","ServerKey":"pl181","X":344,"Y":392},{"Bonus":0,"Continent":"K43","ID":37798,"Name":"Dream on","PlayerID":698962117,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37798","ServerKey":"pl181","X":307,"Y":486},{"Bonus":0,"Continent":"K64","ID":37799,"Name":"psycha sitting","PlayerID":699736927,"Points":8597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37799","ServerKey":"pl181","X":408,"Y":667},{"Bonus":0,"Continent":"K35","ID":37800,"Name":"Wioska 05","PlayerID":849099342,"Points":6260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37800","ServerKey":"pl181","X":508,"Y":307},{"Bonus":0,"Continent":"K43","ID":37802,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37802","ServerKey":"pl181","X":313,"Y":461},{"Bonus":0,"Continent":"K36","ID":37803,"Name":"Wioska harry213","PlayerID":6625437,"Points":9923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37803","ServerKey":"pl181","X":633,"Y":369},{"Bonus":0,"Continent":"K53","ID":37804,"Name":"Mordor6","PlayerID":848978903,"Points":6390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37804","ServerKey":"pl181","X":312,"Y":539},{"Bonus":0,"Continent":"K66","ID":37805,"Name":"Wioska 3","PlayerID":1647052,"Points":6526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37805","ServerKey":"pl181","X":643,"Y":626},{"Bonus":0,"Continent":"K64","ID":37806,"Name":"|069| BlackBird 4","PlayerID":699393742,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37806","ServerKey":"pl181","X":493,"Y":689},{"Bonus":0,"Continent":"K56","ID":37807,"Name":"002 Wioska Best Wiedzmin","PlayerID":6409472,"Points":4024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37807","ServerKey":"pl181","X":607,"Y":513},{"Bonus":0,"Continent":"K65","ID":37808,"Name":"Darma dla zawodnika","PlayerID":699494488,"Points":7826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37808","ServerKey":"pl181","X":526,"Y":685},{"Bonus":0,"Continent":"K64","ID":37809,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37809","ServerKey":"pl181","X":405,"Y":668},{"Bonus":0,"Continent":"K46","ID":37810,"Name":"#002","PlayerID":849099391,"Points":2246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37810","ServerKey":"pl181","X":664,"Y":402},{"Bonus":0,"Continent":"K65","ID":37811,"Name":"Wyspa_19","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37811","ServerKey":"pl181","X":512,"Y":690},{"Bonus":0,"Continent":"K35","ID":37812,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":4095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37812","ServerKey":"pl181","X":563,"Y":323},{"Bonus":6,"Continent":"K63","ID":37813,"Name":".03.Minas Tirith e","PlayerID":272173,"Points":8783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37813","ServerKey":"pl181","X":351,"Y":624},{"Bonus":0,"Continent":"K34","ID":37814,"Name":"Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37814","ServerKey":"pl181","X":499,"Y":363},{"Bonus":0,"Continent":"K33","ID":37815,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37815","ServerKey":"pl181","X":367,"Y":363},{"Bonus":0,"Continent":"K34","ID":37816,"Name":"@18@","PlayerID":699483429,"Points":2843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37816","ServerKey":"pl181","X":405,"Y":330},{"Bonus":0,"Continent":"K36","ID":37817,"Name":"007. Wioska barbarzyƄska","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37817","ServerKey":"pl181","X":624,"Y":350},{"Bonus":0,"Continent":"K65","ID":37818,"Name":"Wyspa_44","PlayerID":2585846,"Points":5452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37818","ServerKey":"pl181","X":509,"Y":695},{"Bonus":6,"Continent":"K46","ID":37819,"Name":"0012","PlayerID":699574408,"Points":8402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37819","ServerKey":"pl181","X":687,"Y":467},{"Bonus":0,"Continent":"K53","ID":37820,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37820","ServerKey":"pl181","X":311,"Y":509},{"Bonus":0,"Continent":"K64","ID":37821,"Name":"New World","PlayerID":698152377,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37821","ServerKey":"pl181","X":430,"Y":682},{"Bonus":0,"Continent":"K36","ID":37822,"Name":"Wioska zimny 11","PlayerID":699548295,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37822","ServerKey":"pl181","X":601,"Y":338},{"Bonus":0,"Continent":"K46","ID":37823,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37823","ServerKey":"pl181","X":687,"Y":494},{"Bonus":0,"Continent":"K33","ID":37824,"Name":"Wow2","PlayerID":698160606,"Points":11699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37824","ServerKey":"pl181","X":372,"Y":355},{"Bonus":0,"Continent":"K56","ID":37825,"Name":"073","PlayerID":699316421,"Points":9263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37825","ServerKey":"pl181","X":689,"Y":545},{"Bonus":0,"Continent":"K66","ID":37826,"Name":"Ć»UBR PSYCHIATRYK 008","PlayerID":33900,"Points":6472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37826","ServerKey":"pl181","X":618,"Y":651},{"Bonus":0,"Continent":"K55","ID":37827,"Name":"Wioska Ennoble","PlayerID":6929240,"Points":9141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37827","ServerKey":"pl181","X":599,"Y":583},{"Bonus":0,"Continent":"K66","ID":37828,"Name":"Wiejska8","PlayerID":6528152,"Points":8058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37828","ServerKey":"pl181","X":600,"Y":664},{"Bonus":0,"Continent":"K63","ID":37829,"Name":"Hard5","PlayerID":699805839,"Points":1690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37829","ServerKey":"pl181","X":360,"Y":625},{"Bonus":0,"Continent":"K33","ID":37830,"Name":"*074*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37830","ServerKey":"pl181","X":354,"Y":386},{"Bonus":0,"Continent":"K64","ID":37831,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37831","ServerKey":"pl181","X":435,"Y":680},{"Bonus":0,"Continent":"K35","ID":37832,"Name":"X 006","PlayerID":6384450,"Points":7572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37832","ServerKey":"pl181","X":595,"Y":335},{"Bonus":0,"Continent":"K43","ID":37833,"Name":"Lord Nc3dyh 4","PlayerID":699509284,"Points":2658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37833","ServerKey":"pl181","X":323,"Y":439},{"Bonus":0,"Continent":"K34","ID":37834,"Name":"207","PlayerID":7271812,"Points":3187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37834","ServerKey":"pl181","X":423,"Y":329},{"Bonus":0,"Continent":"K64","ID":37835,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37835","ServerKey":"pl181","X":479,"Y":687},{"Bonus":0,"Continent":"K66","ID":37836,"Name":"Ć»UBR PSYCHIATRYK 007","PlayerID":33900,"Points":7458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37836","ServerKey":"pl181","X":620,"Y":651},{"Bonus":0,"Continent":"K53","ID":37837,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37837","ServerKey":"pl181","X":345,"Y":528},{"Bonus":0,"Continent":"K65","ID":37838,"Name":"Wyspa_12","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37838","ServerKey":"pl181","X":503,"Y":692},{"Bonus":0,"Continent":"K43","ID":37839,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37839","ServerKey":"pl181","X":337,"Y":403},{"Bonus":0,"Continent":"K53","ID":37840,"Name":"Mandarynian","PlayerID":849096458,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37840","ServerKey":"pl181","X":342,"Y":533},{"Bonus":0,"Continent":"K65","ID":37841,"Name":"104","PlayerID":849097799,"Points":8666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37841","ServerKey":"pl181","X":595,"Y":670},{"Bonus":0,"Continent":"K33","ID":37842,"Name":"Szlachcic","PlayerID":3484132,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37842","ServerKey":"pl181","X":387,"Y":352},{"Bonus":0,"Continent":"K56","ID":37843,"Name":"O63 Aldeigjuborg","PlayerID":699272880,"Points":5536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37843","ServerKey":"pl181","X":685,"Y":524},{"Bonus":0,"Continent":"K46","ID":37845,"Name":"[060] Wioska barbarzyƄska","PlayerID":849095068,"Points":5910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37845","ServerKey":"pl181","X":680,"Y":426},{"Bonus":0,"Continent":"K36","ID":37846,"Name":"Moldor 3","PlayerID":849049045,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37846","ServerKey":"pl181","X":632,"Y":360},{"Bonus":0,"Continent":"K46","ID":37847,"Name":"[032] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37847","ServerKey":"pl181","X":677,"Y":423},{"Bonus":6,"Continent":"K66","ID":37848,"Name":"Osada koczownikĂłw","PlayerID":1900364,"Points":9360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37848","ServerKey":"pl181","X":660,"Y":610},{"Bonus":0,"Continent":"K53","ID":37849,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37849","ServerKey":"pl181","X":352,"Y":522},{"Bonus":0,"Continent":"K36","ID":37850,"Name":"018.","PlayerID":699098531,"Points":5373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37850","ServerKey":"pl181","X":639,"Y":370},{"Bonus":0,"Continent":"K36","ID":37851,"Name":"005 La Jonquera","PlayerID":9029928,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37851","ServerKey":"pl181","X":648,"Y":375},{"Bonus":0,"Continent":"K53","ID":37852,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37852","ServerKey":"pl181","X":341,"Y":527},{"Bonus":0,"Continent":"K56","ID":37853,"Name":"WƂadcy PóƂnocy 10","PlayerID":699379895,"Points":6366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37853","ServerKey":"pl181","X":688,"Y":503},{"Bonus":0,"Continent":"K36","ID":37854,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":4419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37854","ServerKey":"pl181","X":611,"Y":340},{"Bonus":0,"Continent":"K36","ID":37855,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":5761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37855","ServerKey":"pl181","X":617,"Y":350},{"Bonus":6,"Continent":"K53","ID":37856,"Name":"(033)Babatharnam","PlayerID":849098695,"Points":8134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37856","ServerKey":"pl181","X":323,"Y":567},{"Bonus":0,"Continent":"K33","ID":37857,"Name":"z 181-A007","PlayerID":3909522,"Points":6765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37857","ServerKey":"pl181","X":354,"Y":381},{"Bonus":0,"Continent":"K63","ID":37858,"Name":"A 064","PlayerID":699269923,"Points":8786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37858","ServerKey":"pl181","X":370,"Y":645},{"Bonus":0,"Continent":"K33","ID":37859,"Name":"*103*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37859","ServerKey":"pl181","X":362,"Y":372},{"Bonus":0,"Continent":"K63","ID":37860,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37860","ServerKey":"pl181","X":388,"Y":659},{"Bonus":0,"Continent":"K66","ID":37861,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37861","ServerKey":"pl181","X":649,"Y":619},{"Bonus":0,"Continent":"K65","ID":37862,"Name":"105","PlayerID":849097799,"Points":8572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37862","ServerKey":"pl181","X":595,"Y":667},{"Bonus":0,"Continent":"K33","ID":37863,"Name":"z 00103 To nieĆșle byczku","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37863","ServerKey":"pl181","X":356,"Y":369},{"Bonus":0,"Continent":"K56","ID":37864,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":6151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37864","ServerKey":"pl181","X":673,"Y":579},{"Bonus":0,"Continent":"K53","ID":37865,"Name":"C0001","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37865","ServerKey":"pl181","X":308,"Y":514},{"Bonus":0,"Continent":"K36","ID":37867,"Name":"Semen","PlayerID":698420691,"Points":6792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37867","ServerKey":"pl181","X":619,"Y":356},{"Bonus":0,"Continent":"K46","ID":37868,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37868","ServerKey":"pl181","X":694,"Y":490},{"Bonus":0,"Continent":"K64","ID":37869,"Name":"021Plecy","PlayerID":698620694,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37869","ServerKey":"pl181","X":473,"Y":693},{"Bonus":0,"Continent":"K46","ID":37870,"Name":"[048] Wioska barbarzyƄska","PlayerID":849095068,"Points":8713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37870","ServerKey":"pl181","X":674,"Y":419},{"Bonus":0,"Continent":"K43","ID":37873,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37873","ServerKey":"pl181","X":313,"Y":449},{"Bonus":0,"Continent":"K43","ID":37874,"Name":"*205*","PlayerID":699273451,"Points":6612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37874","ServerKey":"pl181","X":326,"Y":414},{"Bonus":0,"Continent":"K63","ID":37875,"Name":"Taran","PlayerID":6180190,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37875","ServerKey":"pl181","X":339,"Y":604},{"Bonus":0,"Continent":"K53","ID":37876,"Name":"C0040","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37876","ServerKey":"pl181","X":309,"Y":520},{"Bonus":0,"Continent":"K65","ID":37877,"Name":"014 za 5","PlayerID":849093426,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37877","ServerKey":"pl181","X":510,"Y":694},{"Bonus":0,"Continent":"K53","ID":37878,"Name":"Wioska barbarzyƄska","PlayerID":848949597,"Points":3181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37878","ServerKey":"pl181","X":325,"Y":571},{"Bonus":0,"Continent":"K46","ID":37880,"Name":"017. TARZAAANA!!!","PlayerID":7494497,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37880","ServerKey":"pl181","X":694,"Y":483},{"Bonus":0,"Continent":"K65","ID":37881,"Name":"043 invidia","PlayerID":849093426,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37881","ServerKey":"pl181","X":524,"Y":689},{"Bonus":0,"Continent":"K36","ID":37882,"Name":"WB4","PlayerID":1086351,"Points":6932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37882","ServerKey":"pl181","X":662,"Y":394},{"Bonus":0,"Continent":"K46","ID":37883,"Name":"I061 Z archiwum X","PlayerID":699722599,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37883","ServerKey":"pl181","X":685,"Y":456},{"Bonus":0,"Continent":"K63","ID":37884,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":4388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37884","ServerKey":"pl181","X":357,"Y":624},{"Bonus":0,"Continent":"K66","ID":37885,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37885","ServerKey":"pl181","X":639,"Y":635},{"Bonus":0,"Continent":"K66","ID":37887,"Name":"Wioska 087","PlayerID":848971079,"Points":7281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37887","ServerKey":"pl181","X":656,"Y":605},{"Bonus":0,"Continent":"K46","ID":37889,"Name":"023 getto","PlayerID":9238175,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37889","ServerKey":"pl181","X":676,"Y":421},{"Bonus":0,"Continent":"K43","ID":37890,"Name":"Out of Touch","PlayerID":698962117,"Points":7040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37890","ServerKey":"pl181","X":318,"Y":433},{"Bonus":0,"Continent":"K46","ID":37891,"Name":"04. Vertis","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37891","ServerKey":"pl181","X":693,"Y":480},{"Bonus":0,"Continent":"K34","ID":37892,"Name":".achim.","PlayerID":6936607,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37892","ServerKey":"pl181","X":483,"Y":312},{"Bonus":0,"Continent":"K56","ID":37893,"Name":"Wioska 26","PlayerID":849101162,"Points":3723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37893","ServerKey":"pl181","X":677,"Y":580},{"Bonus":0,"Continent":"K53","ID":37894,"Name":"Twierdza 012","PlayerID":7563185,"Points":2857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37894","ServerKey":"pl181","X":316,"Y":548},{"Bonus":0,"Continent":"K34","ID":37895,"Name":"026","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37895","ServerKey":"pl181","X":466,"Y":316},{"Bonus":0,"Continent":"K66","ID":37896,"Name":"088. Riks","PlayerID":8337151,"Points":8039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37896","ServerKey":"pl181","X":647,"Y":625},{"Bonus":0,"Continent":"K65","ID":37898,"Name":"2.Grenada","PlayerID":698215322,"Points":4859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37898","ServerKey":"pl181","X":569,"Y":679},{"Bonus":0,"Continent":"K53","ID":37899,"Name":"Mordor","PlayerID":848978903,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37899","ServerKey":"pl181","X":316,"Y":544},{"Bonus":0,"Continent":"K43","ID":37900,"Name":"Out of Touch","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37900","ServerKey":"pl181","X":317,"Y":432},{"Bonus":0,"Continent":"K33","ID":37901,"Name":"Szulernia","PlayerID":7249451,"Points":3868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37901","ServerKey":"pl181","X":369,"Y":368},{"Bonus":0,"Continent":"K66","ID":37902,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37902","ServerKey":"pl181","X":655,"Y":610},{"Bonus":0,"Continent":"K56","ID":37903,"Name":"017","PlayerID":6160655,"Points":7510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37903","ServerKey":"pl181","X":676,"Y":570},{"Bonus":0,"Continent":"K63","ID":37904,"Name":"D.019","PlayerID":849088243,"Points":5285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37904","ServerKey":"pl181","X":388,"Y":656},{"Bonus":0,"Continent":"K35","ID":37905,"Name":"Winterhome.025","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37905","ServerKey":"pl181","X":503,"Y":308},{"Bonus":0,"Continent":"K65","ID":37906,"Name":"Muchomor *024*","PlayerID":606407,"Points":7733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37906","ServerKey":"pl181","X":524,"Y":693},{"Bonus":0,"Continent":"K43","ID":37907,"Name":"Dream on","PlayerID":698962117,"Points":9671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37907","ServerKey":"pl181","X":306,"Y":499},{"Bonus":0,"Continent":"K43","ID":37908,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37908","ServerKey":"pl181","X":315,"Y":467},{"Bonus":0,"Continent":"K46","ID":37909,"Name":"10. Karol","PlayerID":699804790,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37909","ServerKey":"pl181","X":688,"Y":488},{"Bonus":0,"Continent":"K56","ID":37910,"Name":"Szlachcic","PlayerID":698867446,"Points":8332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37910","ServerKey":"pl181","X":668,"Y":589},{"Bonus":0,"Continent":"K34","ID":37911,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37911","ServerKey":"pl181","X":425,"Y":325},{"Bonus":0,"Continent":"K46","ID":37912,"Name":"C.009","PlayerID":9188016,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37912","ServerKey":"pl181","X":693,"Y":494},{"Bonus":0,"Continent":"K35","ID":37913,"Name":"KoƂobrzeg","PlayerID":7139853,"Points":3456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37913","ServerKey":"pl181","X":545,"Y":312},{"Bonus":0,"Continent":"K46","ID":37914,"Name":"038 Wioska barbarzyƄska","PlayerID":849098769,"Points":5437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37914","ServerKey":"pl181","X":679,"Y":443},{"Bonus":0,"Continent":"K65","ID":37915,"Name":"AG05","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37915","ServerKey":"pl181","X":594,"Y":665},{"Bonus":9,"Continent":"K35","ID":37916,"Name":"Winterhome.016","PlayerID":8400180,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37916","ServerKey":"pl181","X":512,"Y":309},{"Bonus":0,"Continent":"K33","ID":37917,"Name":"z Sir zombi","PlayerID":3909522,"Points":8148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37917","ServerKey":"pl181","X":358,"Y":379},{"Bonus":0,"Continent":"K64","ID":37918,"Name":"036.xxx","PlayerID":698620694,"Points":4057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37918","ServerKey":"pl181","X":473,"Y":691},{"Bonus":0,"Continent":"K66","ID":37919,"Name":"040","PlayerID":699099811,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37919","ServerKey":"pl181","X":651,"Y":623},{"Bonus":0,"Continent":"K36","ID":37920,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37920","ServerKey":"pl181","X":641,"Y":392},{"Bonus":0,"Continent":"K33","ID":37921,"Name":"Mefedron 06","PlayerID":3484132,"Points":6131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37921","ServerKey":"pl181","X":394,"Y":341},{"Bonus":0,"Continent":"K33","ID":37922,"Name":"*010*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37922","ServerKey":"pl181","X":343,"Y":392},{"Bonus":0,"Continent":"K35","ID":37923,"Name":"076- Mroczna Osada","PlayerID":849035905,"Points":8774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37923","ServerKey":"pl181","X":599,"Y":337},{"Bonus":0,"Continent":"K35","ID":37924,"Name":"Winterhome.012","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37924","ServerKey":"pl181","X":503,"Y":313},{"Bonus":0,"Continent":"K46","ID":37925,"Name":"064. Wioska barbarzyƄska","PlayerID":7494497,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37925","ServerKey":"pl181","X":692,"Y":470},{"Bonus":5,"Continent":"K33","ID":37926,"Name":"z 0010 to juĆŒ wszystko","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37926","ServerKey":"pl181","X":356,"Y":370},{"Bonus":0,"Continent":"K64","ID":37929,"Name":"0024 Wioska barbarzyƄska","PlayerID":849037407,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37929","ServerKey":"pl181","X":450,"Y":688},{"Bonus":0,"Continent":"K34","ID":37930,"Name":"[0072]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37930","ServerKey":"pl181","X":437,"Y":320},{"Bonus":0,"Continent":"K33","ID":37931,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":5362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37931","ServerKey":"pl181","X":373,"Y":351},{"Bonus":0,"Continent":"K53","ID":37932,"Name":"057.","PlayerID":3475079,"Points":2229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37932","ServerKey":"pl181","X":323,"Y":576},{"Bonus":0,"Continent":"K43","ID":37933,"Name":"~ SYSUNIA ~","PlayerID":698540331,"Points":1823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37933","ServerKey":"pl181","X":316,"Y":447},{"Bonus":0,"Continent":"K65","ID":37934,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37934","ServerKey":"pl181","X":576,"Y":679},{"Bonus":0,"Continent":"K33","ID":37935,"Name":"z A02 Lublin","PlayerID":3909522,"Points":10196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37935","ServerKey":"pl181","X":349,"Y":381},{"Bonus":0,"Continent":"K63","ID":37936,"Name":"Czarna 002","PlayerID":699269923,"Points":8309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37936","ServerKey":"pl181","X":381,"Y":653},{"Bonus":0,"Continent":"K33","ID":37937,"Name":"Wow","PlayerID":698160606,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37937","ServerKey":"pl181","X":371,"Y":355},{"Bonus":0,"Continent":"K56","ID":37939,"Name":"034 - Leganes","PlayerID":698342159,"Points":6941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37939","ServerKey":"pl181","X":693,"Y":525},{"Bonus":0,"Continent":"K53","ID":37940,"Name":"044g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37940","ServerKey":"pl181","X":315,"Y":557},{"Bonus":0,"Continent":"K35","ID":37941,"Name":"PaƄstfa PuƂnocy","PlayerID":699433558,"Points":9683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37941","ServerKey":"pl181","X":583,"Y":333},{"Bonus":0,"Continent":"K65","ID":37942,"Name":"**INTERTWINED*","PlayerID":698704189,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37942","ServerKey":"pl181","X":501,"Y":687},{"Bonus":0,"Continent":"K64","ID":37943,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37943","ServerKey":"pl181","X":424,"Y":678},{"Bonus":0,"Continent":"K35","ID":37944,"Name":"6.DEWALT","PlayerID":7758085,"Points":4837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37944","ServerKey":"pl181","X":521,"Y":306},{"Bonus":0,"Continent":"K36","ID":37945,"Name":"Taran 018","PlayerID":699098531,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37945","ServerKey":"pl181","X":639,"Y":372},{"Bonus":0,"Continent":"K46","ID":37946,"Name":"128 33. KaruTown","PlayerID":699491076,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37946","ServerKey":"pl181","X":644,"Y":401},{"Bonus":0,"Continent":"K34","ID":37947,"Name":"Winterhome.067","PlayerID":848918380,"Points":10045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37947","ServerKey":"pl181","X":491,"Y":305},{"Bonus":0,"Continent":"K66","ID":37948,"Name":"BSK2","PlayerID":849066044,"Points":8989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37948","ServerKey":"pl181","X":652,"Y":615},{"Bonus":0,"Continent":"K56","ID":37949,"Name":"_PUSTA !","PlayerID":699628084,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37949","ServerKey":"pl181","X":684,"Y":541},{"Bonus":0,"Continent":"K63","ID":37950,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37950","ServerKey":"pl181","X":341,"Y":600},{"Bonus":0,"Continent":"K63","ID":37951,"Name":"Cieplice","PlayerID":699864013,"Points":6568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37951","ServerKey":"pl181","X":358,"Y":622},{"Bonus":0,"Continent":"K34","ID":37952,"Name":"#0207 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37952","ServerKey":"pl181","X":458,"Y":311},{"Bonus":0,"Continent":"K65","ID":37954,"Name":"- 140 - SS","PlayerID":849018239,"Points":10235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37954","ServerKey":"pl181","X":545,"Y":689},{"Bonus":0,"Continent":"K33","ID":37955,"Name":"z internacionale 007","PlayerID":3909522,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37955","ServerKey":"pl181","X":351,"Y":378},{"Bonus":0,"Continent":"K64","ID":37956,"Name":"No.22","PlayerID":698826986,"Points":2560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37956","ServerKey":"pl181","X":473,"Y":685},{"Bonus":0,"Continent":"K36","ID":37957,"Name":"Klaudek22","PlayerID":849092309,"Points":2549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37957","ServerKey":"pl181","X":634,"Y":368},{"Bonus":0,"Continent":"K34","ID":37958,"Name":"???","PlayerID":698489071,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37958","ServerKey":"pl181","X":482,"Y":309},{"Bonus":6,"Continent":"K66","ID":37959,"Name":"042. Cancer","PlayerID":699703642,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37959","ServerKey":"pl181","X":613,"Y":655},{"Bonus":0,"Continent":"K34","ID":37960,"Name":"Winterhome.055","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37960","ServerKey":"pl181","X":499,"Y":307},{"Bonus":0,"Continent":"K35","ID":37961,"Name":"003 Bar Zodiak","PlayerID":849099054,"Points":7670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37961","ServerKey":"pl181","X":528,"Y":314},{"Bonus":0,"Continent":"K43","ID":37963,"Name":"MELISKA","PlayerID":699794765,"Points":6884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37963","ServerKey":"pl181","X":338,"Y":465},{"Bonus":0,"Continent":"K56","ID":37964,"Name":"TWIERDZA .:027:.","PlayerID":7154207,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37964","ServerKey":"pl181","X":685,"Y":559},{"Bonus":0,"Continent":"K35","ID":37965,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":5887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37965","ServerKey":"pl181","X":557,"Y":321},{"Bonus":5,"Continent":"K56","ID":37966,"Name":"C 010","PlayerID":8078914,"Points":9526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37966","ServerKey":"pl181","X":688,"Y":513},{"Bonus":0,"Continent":"K34","ID":37970,"Name":"#0269 olcixx","PlayerID":1238300,"Points":6856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37970","ServerKey":"pl181","X":459,"Y":310},{"Bonus":5,"Continent":"K65","ID":37971,"Name":"- 247 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37971","ServerKey":"pl181","X":535,"Y":690},{"Bonus":0,"Continent":"K36","ID":37972,"Name":"XDX","PlayerID":699098531,"Points":6953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37972","ServerKey":"pl181","X":601,"Y":333},{"Bonus":0,"Continent":"K46","ID":37973,"Name":"Gattacka","PlayerID":699298370,"Points":9307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37973","ServerKey":"pl181","X":680,"Y":439},{"Bonus":0,"Continent":"K66","ID":37974,"Name":"_PUSTA","PlayerID":698768565,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37974","ServerKey":"pl181","X":660,"Y":600},{"Bonus":0,"Continent":"K65","ID":37975,"Name":"Wyspa_08","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37975","ServerKey":"pl181","X":503,"Y":694},{"Bonus":0,"Continent":"K64","ID":37976,"Name":"Szale","PlayerID":698585370,"Points":8458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37976","ServerKey":"pl181","X":464,"Y":689},{"Bonus":2,"Continent":"K33","ID":37977,"Name":"006.Osada koczownikĂłw","PlayerID":699406776,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37977","ServerKey":"pl181","X":399,"Y":334},{"Bonus":0,"Continent":"K56","ID":37978,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37978","ServerKey":"pl181","X":680,"Y":563},{"Bonus":0,"Continent":"K65","ID":37979,"Name":"Wioska barbarzyƄska","PlayerID":873575,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37979","ServerKey":"pl181","X":548,"Y":681},{"Bonus":0,"Continent":"K64","ID":37980,"Name":"psycha sitting","PlayerID":699736927,"Points":6174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37980","ServerKey":"pl181","X":408,"Y":665},{"Bonus":0,"Continent":"K65","ID":37981,"Name":"~070.","PlayerID":7139820,"Points":5847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37981","ServerKey":"pl181","X":527,"Y":689},{"Bonus":0,"Continent":"K43","ID":37982,"Name":"006. Otrębusy","PlayerID":849098966,"Points":6082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37982","ServerKey":"pl181","X":317,"Y":449},{"Bonus":0,"Continent":"K36","ID":37983,"Name":"057.","PlayerID":849094609,"Points":8605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37983","ServerKey":"pl181","X":636,"Y":370},{"Bonus":0,"Continent":"K56","ID":37984,"Name":"Wioska Zorro 004","PlayerID":849080702,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37984","ServerKey":"pl181","X":671,"Y":590},{"Bonus":0,"Continent":"K56","ID":37985,"Name":"Didus P","PlayerID":849070946,"Points":5728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37985","ServerKey":"pl181","X":672,"Y":573},{"Bonus":0,"Continent":"K65","ID":37986,"Name":"nr4","PlayerID":364126,"Points":7568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37986","ServerKey":"pl181","X":584,"Y":676},{"Bonus":0,"Continent":"K36","ID":37987,"Name":"006 Apeldoorn","PlayerID":9029928,"Points":6933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37987","ServerKey":"pl181","X":643,"Y":372},{"Bonus":0,"Continent":"K35","ID":37988,"Name":"B.04 duchy serca puszczy","PlayerID":849026145,"Points":3786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37988","ServerKey":"pl181","X":553,"Y":318},{"Bonus":0,"Continent":"K65","ID":37989,"Name":"TARAN","PlayerID":7860453,"Points":8167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37989","ServerKey":"pl181","X":538,"Y":685},{"Bonus":0,"Continent":"K43","ID":37990,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37990","ServerKey":"pl181","X":314,"Y":461},{"Bonus":0,"Continent":"K43","ID":37991,"Name":"011. ChrzanĂłw MaƂy","PlayerID":849098966,"Points":5184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37991","ServerKey":"pl181","X":319,"Y":452},{"Bonus":0,"Continent":"K66","ID":37992,"Name":"A053","PlayerID":9023703,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37992","ServerKey":"pl181","X":615,"Y":650},{"Bonus":0,"Continent":"K34","ID":37993,"Name":"Winterhome.060","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37993","ServerKey":"pl181","X":495,"Y":306},{"Bonus":0,"Continent":"K56","ID":37994,"Name":"Diduƛ_PowrĂłciƂ","PlayerID":849070946,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37994","ServerKey":"pl181","X":678,"Y":576},{"Bonus":0,"Continent":"K54","ID":37995,"Name":"0281","PlayerID":699856962,"Points":9249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37995","ServerKey":"pl181","X":469,"Y":550},{"Bonus":0,"Continent":"K65","ID":37996,"Name":"Wioska Wiki 8","PlayerID":849100354,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37996","ServerKey":"pl181","X":520,"Y":691},{"Bonus":0,"Continent":"K66","ID":37997,"Name":"#015#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37997","ServerKey":"pl181","X":628,"Y":631},{"Bonus":0,"Continent":"K34","ID":37998,"Name":"Winterhome.044","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37998","ServerKey":"pl181","X":497,"Y":310},{"Bonus":0,"Continent":"K33","ID":37999,"Name":"Szlachcic","PlayerID":3484132,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=37999","ServerKey":"pl181","X":381,"Y":346},{"Bonus":0,"Continent":"K53","ID":38000,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38000","ServerKey":"pl181","X":330,"Y":596},{"Bonus":0,"Continent":"K35","ID":38001,"Name":"szkoda gadać","PlayerID":849041192,"Points":11480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38001","ServerKey":"pl181","X":598,"Y":347},{"Bonus":0,"Continent":"K63","ID":38002,"Name":"D.006","PlayerID":849088243,"Points":8878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38002","ServerKey":"pl181","X":394,"Y":654},{"Bonus":0,"Continent":"K64","ID":38003,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38003","ServerKey":"pl181","X":439,"Y":680},{"Bonus":0,"Continent":"K53","ID":38004,"Name":"008","PlayerID":7097727,"Points":5956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38004","ServerKey":"pl181","X":314,"Y":500},{"Bonus":0,"Continent":"K65","ID":38005,"Name":"101","PlayerID":849097799,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38005","ServerKey":"pl181","X":592,"Y":670},{"Bonus":0,"Continent":"K64","ID":38006,"Name":"psycha sitting","PlayerID":699736927,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38006","ServerKey":"pl181","X":423,"Y":674},{"Bonus":0,"Continent":"K56","ID":38008,"Name":"Gryfios 023","PlayerID":698666810,"Points":11710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38008","ServerKey":"pl181","X":685,"Y":556},{"Bonus":0,"Continent":"K33","ID":38009,"Name":"z 001024 X","PlayerID":3909522,"Points":8624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38009","ServerKey":"pl181","X":359,"Y":372},{"Bonus":0,"Continent":"K56","ID":38010,"Name":"O70 Oaxaca","PlayerID":699272880,"Points":10185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38010","ServerKey":"pl181","X":681,"Y":562},{"Bonus":0,"Continent":"K46","ID":38011,"Name":"I071","PlayerID":699722599,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38011","ServerKey":"pl181","X":684,"Y":468},{"Bonus":0,"Continent":"K34","ID":38012,"Name":"[0062]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38012","ServerKey":"pl181","X":436,"Y":318},{"Bonus":0,"Continent":"K63","ID":38014,"Name":"Wioska barbarzyƄska b","PlayerID":272173,"Points":3463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38014","ServerKey":"pl181","X":357,"Y":627},{"Bonus":0,"Continent":"K36","ID":38015,"Name":"Gattacka","PlayerID":699298370,"Points":7567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38015","ServerKey":"pl181","X":620,"Y":375},{"Bonus":7,"Continent":"K34","ID":38016,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38016","ServerKey":"pl181","X":439,"Y":321},{"Bonus":0,"Continent":"K35","ID":38017,"Name":"Michalxj6","PlayerID":849099342,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38017","ServerKey":"pl181","X":501,"Y":309},{"Bonus":0,"Continent":"K43","ID":38018,"Name":"Wioska 3","PlayerID":699821755,"Points":8181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38018","ServerKey":"pl181","X":329,"Y":426},{"Bonus":0,"Continent":"K36","ID":38019,"Name":"-wisc dells","PlayerID":8096537,"Points":6468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38019","ServerKey":"pl181","X":653,"Y":389},{"Bonus":0,"Continent":"K43","ID":38020,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38020","ServerKey":"pl181","X":314,"Y":448},{"Bonus":0,"Continent":"K53","ID":38021,"Name":"C0263","PlayerID":8841266,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38021","ServerKey":"pl181","X":311,"Y":507},{"Bonus":0,"Continent":"K34","ID":38022,"Name":"#0271 Don Noobas","PlayerID":1238300,"Points":8799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38022","ServerKey":"pl181","X":475,"Y":308},{"Bonus":0,"Continent":"K33","ID":38023,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":4245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38023","ServerKey":"pl181","X":398,"Y":333},{"Bonus":0,"Continent":"K35","ID":38024,"Name":"B.08 duchy serca puszczy","PlayerID":849026145,"Points":2487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38024","ServerKey":"pl181","X":556,"Y":315},{"Bonus":0,"Continent":"K64","ID":38025,"Name":"P|001|","PlayerID":699393742,"Points":5545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38025","ServerKey":"pl181","X":454,"Y":689},{"Bonus":0,"Continent":"K63","ID":38026,"Name":".23. Oxenfurt b","PlayerID":272173,"Points":6533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38026","ServerKey":"pl181","X":355,"Y":627},{"Bonus":0,"Continent":"K34","ID":38027,"Name":"#0234 Kamileq69 dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38027","ServerKey":"pl181","X":472,"Y":307},{"Bonus":0,"Continent":"K63","ID":38028,"Name":".09. Sigint e","PlayerID":272173,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38028","ServerKey":"pl181","X":352,"Y":623},{"Bonus":0,"Continent":"K43","ID":38029,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38029","ServerKey":"pl181","X":308,"Y":493},{"Bonus":0,"Continent":"K66","ID":38030,"Name":"Ć»UBR .::.Adaczu/08","PlayerID":33900,"Points":3918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38030","ServerKey":"pl181","X":618,"Y":648},{"Bonus":0,"Continent":"K66","ID":38031,"Name":"Ronin P","PlayerID":698768565,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38031","ServerKey":"pl181","X":635,"Y":640},{"Bonus":0,"Continent":"K63","ID":38032,"Name":"Taran","PlayerID":6180190,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38032","ServerKey":"pl181","X":343,"Y":608},{"Bonus":0,"Continent":"K34","ID":38033,"Name":"[0098]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38033","ServerKey":"pl181","X":435,"Y":318},{"Bonus":6,"Continent":"K53","ID":38034,"Name":"058","PlayerID":7183372,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38034","ServerKey":"pl181","X":333,"Y":588},{"Bonus":0,"Continent":"K66","ID":38035,"Name":"#018#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38035","ServerKey":"pl181","X":637,"Y":630},{"Bonus":0,"Continent":"K34","ID":38036,"Name":"Winterhome.054","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38036","ServerKey":"pl181","X":497,"Y":308},{"Bonus":0,"Continent":"K43","ID":38037,"Name":"Out of Touch","PlayerID":698962117,"Points":7878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38037","ServerKey":"pl181","X":323,"Y":419},{"Bonus":0,"Continent":"K34","ID":38038,"Name":"016.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38038","ServerKey":"pl181","X":440,"Y":320},{"Bonus":0,"Continent":"K56","ID":38039,"Name":"_PUSTA !","PlayerID":699316421,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38039","ServerKey":"pl181","X":691,"Y":537},{"Bonus":0,"Continent":"K35","ID":38040,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":3014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38040","ServerKey":"pl181","X":524,"Y":308},{"Bonus":0,"Continent":"K34","ID":38041,"Name":"???","PlayerID":698489071,"Points":9188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38041","ServerKey":"pl181","X":476,"Y":312},{"Bonus":7,"Continent":"K65","ID":38042,"Name":"- 161 - SS","PlayerID":849018239,"Points":8046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38042","ServerKey":"pl181","X":544,"Y":683},{"Bonus":0,"Continent":"K34","ID":38043,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38043","ServerKey":"pl181","X":491,"Y":309},{"Bonus":0,"Continent":"K43","ID":38044,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38044","ServerKey":"pl181","X":327,"Y":422},{"Bonus":0,"Continent":"K64","ID":38046,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38046","ServerKey":"pl181","X":427,"Y":679},{"Bonus":0,"Continent":"K65","ID":38047,"Name":"2.Salamanka","PlayerID":698215322,"Points":5791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38047","ServerKey":"pl181","X":574,"Y":675},{"Bonus":0,"Continent":"K35","ID":38048,"Name":"[011] Uszanowanko nr2","PlayerID":699710633,"Points":7856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38048","ServerKey":"pl181","X":581,"Y":329},{"Bonus":0,"Continent":"K53","ID":38049,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":3813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38049","ServerKey":"pl181","X":320,"Y":576},{"Bonus":0,"Continent":"K34","ID":38050,"Name":"[0051]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38050","ServerKey":"pl181","X":434,"Y":318},{"Bonus":0,"Continent":"K33","ID":38051,"Name":"*072*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38051","ServerKey":"pl181","X":344,"Y":397},{"Bonus":0,"Continent":"K65","ID":38052,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38052","ServerKey":"pl181","X":512,"Y":686},{"Bonus":0,"Continent":"K53","ID":38053,"Name":"C0036","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38053","ServerKey":"pl181","X":309,"Y":513},{"Bonus":0,"Continent":"K46","ID":38054,"Name":"073. Dolina Palancar","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38054","ServerKey":"pl181","X":615,"Y":476},{"Bonus":0,"Continent":"K33","ID":38055,"Name":"*053*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38055","ServerKey":"pl181","X":345,"Y":395},{"Bonus":0,"Continent":"K35","ID":38056,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":8943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38056","ServerKey":"pl181","X":532,"Y":311},{"Bonus":8,"Continent":"K56","ID":38057,"Name":"WƂadcy PóƂnocy","PlayerID":699379895,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38057","ServerKey":"pl181","X":687,"Y":504},{"Bonus":0,"Continent":"K53","ID":38058,"Name":"Taran","PlayerID":6180190,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38058","ServerKey":"pl181","X":327,"Y":591},{"Bonus":0,"Continent":"K63","ID":38060,"Name":"Pd 02","PlayerID":272173,"Points":3756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38060","ServerKey":"pl181","X":359,"Y":631},{"Bonus":0,"Continent":"K53","ID":38061,"Name":"181","PlayerID":699697136,"Points":5871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38061","ServerKey":"pl181","X":323,"Y":582},{"Bonus":0,"Continent":"K53","ID":38062,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":10088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38062","ServerKey":"pl181","X":331,"Y":595},{"Bonus":0,"Continent":"K66","ID":38063,"Name":"#078#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38063","ServerKey":"pl181","X":635,"Y":631},{"Bonus":0,"Continent":"K46","ID":38064,"Name":"I053 Fotobudka","PlayerID":699722599,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38064","ServerKey":"pl181","X":684,"Y":463},{"Bonus":0,"Continent":"K66","ID":38065,"Name":"Ć»UBR .::.Adaczu/09","PlayerID":33900,"Points":3849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38065","ServerKey":"pl181","X":623,"Y":649},{"Bonus":0,"Continent":"K65","ID":38066,"Name":"022 irirjeueu","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38066","ServerKey":"pl181","X":523,"Y":692},{"Bonus":0,"Continent":"K65","ID":38067,"Name":"Wioska","PlayerID":7860453,"Points":5438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38067","ServerKey":"pl181","X":549,"Y":687},{"Bonus":0,"Continent":"K35","ID":38068,"Name":"AAA","PlayerID":1006847,"Points":9131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38068","ServerKey":"pl181","X":538,"Y":317},{"Bonus":0,"Continent":"K34","ID":38069,"Name":"@14@","PlayerID":699483429,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38069","ServerKey":"pl181","X":406,"Y":332},{"Bonus":0,"Continent":"K65","ID":38070,"Name":"2.Elx","PlayerID":698215322,"Points":5278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38070","ServerKey":"pl181","X":563,"Y":679},{"Bonus":6,"Continent":"K53","ID":38071,"Name":"C0152","PlayerID":8841266,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38071","ServerKey":"pl181","X":316,"Y":534},{"Bonus":0,"Continent":"K63","ID":38072,"Name":".:006:.","PlayerID":272173,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38072","ServerKey":"pl181","X":359,"Y":630},{"Bonus":0,"Continent":"K56","ID":38073,"Name":"067. Rekini Ząb","PlayerID":8337151,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38073","ServerKey":"pl181","X":666,"Y":590},{"Bonus":0,"Continent":"K35","ID":38074,"Name":"koczo 2","PlayerID":7340529,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38074","ServerKey":"pl181","X":591,"Y":335},{"Bonus":0,"Continent":"K34","ID":38075,"Name":"Winterhome.070","PlayerID":848918380,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38075","ServerKey":"pl181","X":492,"Y":307},{"Bonus":1,"Continent":"K34","ID":38076,"Name":"082","PlayerID":2502956,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38076","ServerKey":"pl181","X":461,"Y":309},{"Bonus":0,"Continent":"K56","ID":38077,"Name":"Didi","PlayerID":849070946,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38077","ServerKey":"pl181","X":673,"Y":580},{"Bonus":0,"Continent":"K63","ID":38078,"Name":"A 041","PlayerID":272173,"Points":5139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38078","ServerKey":"pl181","X":365,"Y":635},{"Bonus":0,"Continent":"K45","ID":38079,"Name":".:094:. JuanPabloII","PlayerID":848934935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38079","ServerKey":"pl181","X":541,"Y":445},{"Bonus":0,"Continent":"K43","ID":38080,"Name":"004","PlayerID":2418364,"Points":6564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38080","ServerKey":"pl181","X":310,"Y":478},{"Bonus":0,"Continent":"K35","ID":38081,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":8170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38081","ServerKey":"pl181","X":520,"Y":310},{"Bonus":0,"Continent":"K53","ID":38082,"Name":"C0030","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38082","ServerKey":"pl181","X":313,"Y":511},{"Bonus":0,"Continent":"K33","ID":38083,"Name":"KINGSAIS","PlayerID":3484132,"Points":5220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38083","ServerKey":"pl181","X":399,"Y":342},{"Bonus":0,"Continent":"K65","ID":38084,"Name":"0528","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38084","ServerKey":"pl181","X":543,"Y":663},{"Bonus":0,"Continent":"K35","ID":38085,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38085","ServerKey":"pl181","X":535,"Y":311},{"Bonus":0,"Continent":"K36","ID":38089,"Name":"-002- ChwaƂa Imperium","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38089","ServerKey":"pl181","X":620,"Y":348},{"Bonus":0,"Continent":"K66","ID":38090,"Name":"102","PlayerID":3589487,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38090","ServerKey":"pl181","X":657,"Y":616},{"Bonus":0,"Continent":"K65","ID":38091,"Name":"0422","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38091","ServerKey":"pl181","X":564,"Y":683},{"Bonus":0,"Continent":"K64","ID":38092,"Name":"|051| Split","PlayerID":2585846,"Points":9213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38092","ServerKey":"pl181","X":497,"Y":691},{"Bonus":0,"Continent":"K65","ID":38093,"Name":"AG03","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38093","ServerKey":"pl181","X":592,"Y":664},{"Bonus":0,"Continent":"K56","ID":38094,"Name":"WƂadcy PóƂnocy 11","PlayerID":699379895,"Points":5328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38094","ServerKey":"pl181","X":693,"Y":504},{"Bonus":0,"Continent":"K43","ID":38095,"Name":"WB20","PlayerID":356642,"Points":5029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38095","ServerKey":"pl181","X":328,"Y":412},{"Bonus":0,"Continent":"K36","ID":38096,"Name":"ADEN","PlayerID":698588535,"Points":4549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38096","ServerKey":"pl181","X":607,"Y":345},{"Bonus":0,"Continent":"K43","ID":38097,"Name":"Wioska 1","PlayerID":849075836,"Points":9410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38097","ServerKey":"pl181","X":312,"Y":489},{"Bonus":0,"Continent":"K43","ID":38098,"Name":"009","PlayerID":2418364,"Points":3882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38098","ServerKey":"pl181","X":309,"Y":479},{"Bonus":0,"Continent":"K43","ID":38099,"Name":"Dream on","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38099","ServerKey":"pl181","X":308,"Y":489},{"Bonus":0,"Continent":"K46","ID":38100,"Name":"I085","PlayerID":699722599,"Points":8463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38100","ServerKey":"pl181","X":688,"Y":461},{"Bonus":0,"Continent":"K46","ID":38101,"Name":"[065]Wioska barbarzyƄska","PlayerID":849095068,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38101","ServerKey":"pl181","X":671,"Y":416},{"Bonus":0,"Continent":"K66","ID":38102,"Name":"~~056~~","PlayerID":7829201,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38102","ServerKey":"pl181","X":631,"Y":644},{"Bonus":0,"Continent":"K53","ID":38103,"Name":"(037)Arak","PlayerID":849098695,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38103","ServerKey":"pl181","X":322,"Y":567},{"Bonus":0,"Continent":"K66","ID":38104,"Name":"A062","PlayerID":9023703,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38104","ServerKey":"pl181","X":604,"Y":656},{"Bonus":0,"Continent":"K64","ID":38105,"Name":"1.C.","PlayerID":699777372,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38105","ServerKey":"pl181","X":453,"Y":689},{"Bonus":0,"Continent":"K53","ID":38106,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38106","ServerKey":"pl181","X":314,"Y":524},{"Bonus":0,"Continent":"K65","ID":38107,"Name":"021 syegdvdj","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38107","ServerKey":"pl181","X":534,"Y":685},{"Bonus":0,"Continent":"K56","ID":38108,"Name":"Kamionka 1-maja","PlayerID":848932879,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38108","ServerKey":"pl181","X":681,"Y":547},{"Bonus":7,"Continent":"K36","ID":38109,"Name":"20. Wioska Raukodel","PlayerID":7340529,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38109","ServerKey":"pl181","X":652,"Y":379},{"Bonus":0,"Continent":"K36","ID":38110,"Name":"Wioska wƂadca TwĂłj","PlayerID":699758688,"Points":5865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38110","ServerKey":"pl181","X":623,"Y":394},{"Bonus":0,"Continent":"K66","ID":38111,"Name":"029","PlayerID":699373599,"Points":3713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38111","ServerKey":"pl181","X":627,"Y":649},{"Bonus":5,"Continent":"K64","ID":38112,"Name":"Ave Why!","PlayerID":698585370,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38112","ServerKey":"pl181","X":452,"Y":685},{"Bonus":0,"Continent":"K66","ID":38113,"Name":"Wioska 082","PlayerID":848971079,"Points":8660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38113","ServerKey":"pl181","X":667,"Y":602},{"Bonus":0,"Continent":"K36","ID":38114,"Name":"021 Panewa","PlayerID":9029928,"Points":2322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38114","ServerKey":"pl181","X":644,"Y":368},{"Bonus":0,"Continent":"K56","ID":38115,"Name":"sƂodziuteƄka 08","PlayerID":8013349,"Points":8063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38115","ServerKey":"pl181","X":601,"Y":537},{"Bonus":0,"Continent":"K35","ID":38116,"Name":"K35 - [018] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38116","ServerKey":"pl181","X":574,"Y":321},{"Bonus":0,"Continent":"K66","ID":38117,"Name":"004","PlayerID":849099544,"Points":5249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38117","ServerKey":"pl181","X":642,"Y":634},{"Bonus":0,"Continent":"K66","ID":38118,"Name":"~~062~~","PlayerID":7829201,"Points":9517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38118","ServerKey":"pl181","X":627,"Y":642},{"Bonus":0,"Continent":"K35","ID":38119,"Name":"U-4","PlayerID":3600737,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38119","ServerKey":"pl181","X":553,"Y":379},{"Bonus":0,"Continent":"K35","ID":38120,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":7489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38120","ServerKey":"pl181","X":536,"Y":311},{"Bonus":0,"Continent":"K65","ID":38121,"Name":"Wyspa_31","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38121","ServerKey":"pl181","X":508,"Y":687},{"Bonus":0,"Continent":"K66","ID":38122,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38122","ServerKey":"pl181","X":642,"Y":633},{"Bonus":0,"Continent":"K43","ID":38123,"Name":"New Land 15","PlayerID":849064752,"Points":3756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38123","ServerKey":"pl181","X":341,"Y":402},{"Bonus":0,"Continent":"K46","ID":38124,"Name":"Wioska barbarzyƄska","PlayerID":699738350,"Points":6855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38124","ServerKey":"pl181","X":670,"Y":409},{"Bonus":0,"Continent":"K33","ID":38125,"Name":"Szlachcic","PlayerID":698160606,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38125","ServerKey":"pl181","X":377,"Y":350},{"Bonus":0,"Continent":"K34","ID":38126,"Name":"204","PlayerID":7271812,"Points":4098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38126","ServerKey":"pl181","X":424,"Y":329},{"Bonus":7,"Continent":"K66","ID":38127,"Name":"Ć»UBR PSYCHIATRYK 015","PlayerID":33900,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38127","ServerKey":"pl181","X":618,"Y":644},{"Bonus":0,"Continent":"K34","ID":38128,"Name":"0012","PlayerID":2321390,"Points":8785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38128","ServerKey":"pl181","X":422,"Y":324},{"Bonus":0,"Continent":"K65","ID":38129,"Name":"###051###","PlayerID":698285444,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38129","ServerKey":"pl181","X":594,"Y":671},{"Bonus":0,"Continent":"K65","ID":38130,"Name":"073","PlayerID":2293376,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38130","ServerKey":"pl181","X":539,"Y":686},{"Bonus":0,"Continent":"K35","ID":38131,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38131","ServerKey":"pl181","X":559,"Y":314},{"Bonus":0,"Continent":"K34","ID":38132,"Name":"#0164 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38132","ServerKey":"pl181","X":471,"Y":308},{"Bonus":1,"Continent":"K43","ID":38133,"Name":"boh81/0200","PlayerID":848889556,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38133","ServerKey":"pl181","X":308,"Y":473},{"Bonus":0,"Continent":"K34","ID":38134,"Name":"236","PlayerID":7271812,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38134","ServerKey":"pl181","X":414,"Y":326},{"Bonus":0,"Continent":"K56","ID":38135,"Name":"Pz39","PlayerID":8096537,"Points":6303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38135","ServerKey":"pl181","X":689,"Y":513},{"Bonus":0,"Continent":"K53","ID":38136,"Name":"Dream on","PlayerID":698962117,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38136","ServerKey":"pl181","X":305,"Y":509},{"Bonus":0,"Continent":"K53","ID":38137,"Name":"wiocha","PlayerID":849099258,"Points":6575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38137","ServerKey":"pl181","X":317,"Y":564},{"Bonus":0,"Continent":"K43","ID":38138,"Name":"Out of Touch","PlayerID":698962117,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38138","ServerKey":"pl181","X":320,"Y":423},{"Bonus":0,"Continent":"K56","ID":38139,"Name":"_PUSTA+","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38139","ServerKey":"pl181","X":688,"Y":544},{"Bonus":0,"Continent":"K63","ID":38140,"Name":"-001- r","PlayerID":849096354,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38140","ServerKey":"pl181","X":380,"Y":649},{"Bonus":0,"Continent":"K63","ID":38141,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38141","ServerKey":"pl181","X":338,"Y":600},{"Bonus":0,"Continent":"K64","ID":38143,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38143","ServerKey":"pl181","X":414,"Y":674},{"Bonus":0,"Continent":"K63","ID":38145,"Name":"Czarna","PlayerID":699269923,"Points":7400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38145","ServerKey":"pl181","X":383,"Y":656},{"Bonus":0,"Continent":"K43","ID":38146,"Name":"001","PlayerID":2418364,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38146","ServerKey":"pl181","X":307,"Y":477},{"Bonus":0,"Continent":"K36","ID":38147,"Name":"059.","PlayerID":849094609,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38147","ServerKey":"pl181","X":635,"Y":369},{"Bonus":0,"Continent":"K43","ID":38148,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38148","ServerKey":"pl181","X":312,"Y":460},{"Bonus":0,"Continent":"K56","ID":38149,"Name":"Wioska Zorro 013","PlayerID":849080702,"Points":8098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38149","ServerKey":"pl181","X":669,"Y":594},{"Bonus":0,"Continent":"K43","ID":38150,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38150","ServerKey":"pl181","X":316,"Y":470},{"Bonus":0,"Continent":"K65","ID":38151,"Name":"0313","PlayerID":698659980,"Points":7962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38151","ServerKey":"pl181","X":567,"Y":681},{"Bonus":0,"Continent":"K33","ID":38152,"Name":"Szlachcic","PlayerID":698160606,"Points":9897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38152","ServerKey":"pl181","X":376,"Y":350},{"Bonus":3,"Continent":"K34","ID":38153,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38153","ServerKey":"pl181","X":427,"Y":326},{"Bonus":0,"Continent":"K63","ID":38154,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38154","ServerKey":"pl181","X":398,"Y":660},{"Bonus":0,"Continent":"K66","ID":38155,"Name":"048. Silthrim","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38155","ServerKey":"pl181","X":663,"Y":602},{"Bonus":0,"Continent":"K53","ID":38156,"Name":"*081*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38156","ServerKey":"pl181","X":313,"Y":535},{"Bonus":0,"Continent":"K53","ID":38158,"Name":"(018)Triax","PlayerID":849098695,"Points":6983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38158","ServerKey":"pl181","X":326,"Y":568},{"Bonus":0,"Continent":"K34","ID":38159,"Name":"Wioska barbarzyƄska","PlayerID":6936607,"Points":3875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38159","ServerKey":"pl181","X":479,"Y":314},{"Bonus":0,"Continent":"K66","ID":38160,"Name":"#075#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38160","ServerKey":"pl181","X":635,"Y":632},{"Bonus":0,"Continent":"K46","ID":38161,"Name":"I054","PlayerID":699722599,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38161","ServerKey":"pl181","X":684,"Y":458},{"Bonus":0,"Continent":"K43","ID":38162,"Name":"Dream on","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38162","ServerKey":"pl181","X":311,"Y":493},{"Bonus":0,"Continent":"K65","ID":38163,"Name":"- 136 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38163","ServerKey":"pl181","X":536,"Y":687},{"Bonus":0,"Continent":"K56","ID":38164,"Name":"_PUSTA+","PlayerID":699628084,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38164","ServerKey":"pl181","X":684,"Y":544},{"Bonus":0,"Continent":"K63","ID":38165,"Name":"Mroczny Zamek 021","PlayerID":698908184,"Points":4415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38165","ServerKey":"pl181","X":354,"Y":629},{"Bonus":0,"Continent":"K56","ID":38166,"Name":"$UtahJazz","PlayerID":699795378,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38166","ServerKey":"pl181","X":690,"Y":508},{"Bonus":0,"Continent":"K63","ID":38167,"Name":"-001-","PlayerID":699269923,"Points":6256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38167","ServerKey":"pl181","X":375,"Y":647},{"Bonus":0,"Continent":"K46","ID":38168,"Name":"OrzeƂ 4","PlayerID":699413581,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38168","ServerKey":"pl181","X":692,"Y":488},{"Bonus":0,"Continent":"K43","ID":38169,"Name":"Dream on","PlayerID":698962117,"Points":9611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38169","ServerKey":"pl181","X":310,"Y":495},{"Bonus":0,"Continent":"K33","ID":38170,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":3515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38170","ServerKey":"pl181","X":398,"Y":338},{"Bonus":0,"Continent":"K66","ID":38171,"Name":"#037#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38171","ServerKey":"pl181","X":629,"Y":637},{"Bonus":0,"Continent":"K55","ID":38172,"Name":"019.","PlayerID":699695167,"Points":8708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38172","ServerKey":"pl181","X":525,"Y":546},{"Bonus":0,"Continent":"K35","ID":38173,"Name":"AAA","PlayerID":1006847,"Points":7105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38173","ServerKey":"pl181","X":523,"Y":310},{"Bonus":0,"Continent":"K64","ID":38174,"Name":"R 030","PlayerID":699195358,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38174","ServerKey":"pl181","X":494,"Y":695},{"Bonus":0,"Continent":"K35","ID":38175,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38175","ServerKey":"pl181","X":521,"Y":311},{"Bonus":0,"Continent":"K33","ID":38177,"Name":"005.DUPGRZMOTY","PlayerID":699406776,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38177","ServerKey":"pl181","X":399,"Y":335},{"Bonus":0,"Continent":"K34","ID":38178,"Name":"#0200 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38178","ServerKey":"pl181","X":460,"Y":316},{"Bonus":0,"Continent":"K35","ID":38179,"Name":"X 004","PlayerID":6384450,"Points":8221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38179","ServerKey":"pl181","X":595,"Y":334},{"Bonus":0,"Continent":"K53","ID":38180,"Name":"Wioska Szezeger","PlayerID":849025558,"Points":2762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38180","ServerKey":"pl181","X":329,"Y":591},{"Bonus":0,"Continent":"K56","ID":38181,"Name":"O72","PlayerID":699272880,"Points":10199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38181","ServerKey":"pl181","X":681,"Y":563},{"Bonus":0,"Continent":"K46","ID":38182,"Name":"I086","PlayerID":699722599,"Points":7997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38182","ServerKey":"pl181","X":691,"Y":457},{"Bonus":0,"Continent":"K65","ID":38183,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38183","ServerKey":"pl181","X":569,"Y":675},{"Bonus":0,"Continent":"K56","ID":38184,"Name":"064. Toark","PlayerID":8337151,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38184","ServerKey":"pl181","X":666,"Y":593},{"Bonus":0,"Continent":"K36","ID":38185,"Name":"kamilkaze135 #11","PlayerID":699705601,"Points":8835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38185","ServerKey":"pl181","X":656,"Y":387},{"Bonus":0,"Continent":"K64","ID":38186,"Name":"|053| Zagrzeb","PlayerID":2585846,"Points":9090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38186","ServerKey":"pl181","X":498,"Y":692},{"Bonus":0,"Continent":"K43","ID":38188,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38188","ServerKey":"pl181","X":311,"Y":450},{"Bonus":0,"Continent":"K63","ID":38189,"Name":"Komornicy 028","PlayerID":699336777,"Points":3127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38189","ServerKey":"pl181","X":348,"Y":609},{"Bonus":0,"Continent":"K35","ID":38190,"Name":"K35 - [026] Before Land","PlayerID":699088769,"Points":8344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38190","ServerKey":"pl181","X":581,"Y":324},{"Bonus":0,"Continent":"K63","ID":38191,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38191","ServerKey":"pl181","X":386,"Y":649},{"Bonus":0,"Continent":"K46","ID":38192,"Name":"045. Wioska barbarzyƄska","PlayerID":7494497,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38192","ServerKey":"pl181","X":685,"Y":472},{"Bonus":0,"Continent":"K46","ID":38193,"Name":"**50**","PlayerID":849098782,"Points":8017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38193","ServerKey":"pl181","X":675,"Y":415},{"Bonus":0,"Continent":"K46","ID":38194,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":7365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38194","ServerKey":"pl181","X":694,"Y":497},{"Bonus":0,"Continent":"K64","ID":38195,"Name":"Punta Cana 2","PlayerID":699736927,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38195","ServerKey":"pl181","X":455,"Y":646},{"Bonus":0,"Continent":"K56","ID":38196,"Name":"TWIERDZA .:087:.","PlayerID":7154207,"Points":6102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38196","ServerKey":"pl181","X":680,"Y":569},{"Bonus":0,"Continent":"K63","ID":38197,"Name":"Wioska barbarzyƄska b","PlayerID":272173,"Points":4068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38197","ServerKey":"pl181","X":357,"Y":628},{"Bonus":0,"Continent":"K65","ID":38198,"Name":"Wyspa_18","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38198","ServerKey":"pl181","X":513,"Y":690},{"Bonus":0,"Continent":"K43","ID":38199,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38199","ServerKey":"pl181","X":315,"Y":461},{"Bonus":0,"Continent":"K63","ID":38200,"Name":"14 Poblete","PlayerID":698837993,"Points":2465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38200","ServerKey":"pl181","X":390,"Y":654},{"Bonus":0,"Continent":"K46","ID":38202,"Name":"**52**","PlayerID":849098782,"Points":5778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38202","ServerKey":"pl181","X":670,"Y":423},{"Bonus":0,"Continent":"K64","ID":38203,"Name":"0029","PlayerID":699280514,"Points":4661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38203","ServerKey":"pl181","X":486,"Y":693},{"Bonus":0,"Continent":"K34","ID":38204,"Name":"040.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38204","ServerKey":"pl181","X":446,"Y":321},{"Bonus":0,"Continent":"K46","ID":38205,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38205","ServerKey":"pl181","X":695,"Y":488},{"Bonus":6,"Continent":"K35","ID":38206,"Name":"AAA","PlayerID":1006847,"Points":9064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38206","ServerKey":"pl181","X":546,"Y":313},{"Bonus":0,"Continent":"K65","ID":38207,"Name":"2.Kadyks","PlayerID":698215322,"Points":5793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38207","ServerKey":"pl181","X":574,"Y":674},{"Bonus":0,"Continent":"K34","ID":38208,"Name":"???","PlayerID":698489071,"Points":8887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38208","ServerKey":"pl181","X":479,"Y":310},{"Bonus":0,"Continent":"K43","ID":38209,"Name":"Out of Touch","PlayerID":698962117,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38209","ServerKey":"pl181","X":321,"Y":424},{"Bonus":0,"Continent":"K65","ID":38210,"Name":"Wyspa_28","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38210","ServerKey":"pl181","X":503,"Y":695},{"Bonus":0,"Continent":"K46","ID":38211,"Name":"003. MokotĂłw","PlayerID":7494497,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38211","ServerKey":"pl181","X":690,"Y":486},{"Bonus":0,"Continent":"K33","ID":38212,"Name":"z 001035","PlayerID":3909522,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38212","ServerKey":"pl181","X":361,"Y":365},{"Bonus":0,"Continent":"K43","ID":38213,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38213","ServerKey":"pl181","X":316,"Y":460},{"Bonus":0,"Continent":"K36","ID":38214,"Name":"Odbudowa Roterdam :)","PlayerID":9103424,"Points":4200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38214","ServerKey":"pl181","X":628,"Y":355},{"Bonus":0,"Continent":"K63","ID":38215,"Name":"ManieK","PlayerID":9199885,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38215","ServerKey":"pl181","X":344,"Y":614},{"Bonus":2,"Continent":"K43","ID":38216,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38216","ServerKey":"pl181","X":314,"Y":457},{"Bonus":0,"Continent":"K64","ID":38218,"Name":"|056| Barba","PlayerID":699393742,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38218","ServerKey":"pl181","X":479,"Y":688},{"Bonus":0,"Continent":"K34","ID":38219,"Name":"Ett","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38219","ServerKey":"pl181","X":409,"Y":385},{"Bonus":0,"Continent":"K43","ID":38220,"Name":"Out of Touch","PlayerID":698962117,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38220","ServerKey":"pl181","X":319,"Y":434},{"Bonus":0,"Continent":"K34","ID":38222,"Name":".achim.","PlayerID":6936607,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38222","ServerKey":"pl181","X":484,"Y":314},{"Bonus":0,"Continent":"K65","ID":38224,"Name":"- 183 - SS","PlayerID":849018239,"Points":8855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38224","ServerKey":"pl181","X":560,"Y":685},{"Bonus":0,"Continent":"K53","ID":38225,"Name":"065.","PlayerID":3475079,"Points":2774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38225","ServerKey":"pl181","X":328,"Y":582},{"Bonus":0,"Continent":"K43","ID":38226,"Name":"~ SZWEDEROWO ~","PlayerID":698540331,"Points":2796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38226","ServerKey":"pl181","X":317,"Y":446},{"Bonus":0,"Continent":"K56","ID":38227,"Name":"TWIERDZA .:026:.","PlayerID":7154207,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38227","ServerKey":"pl181","X":676,"Y":567},{"Bonus":0,"Continent":"K46","ID":38228,"Name":"048. Wioska barbarzyƄska","PlayerID":7494497,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38228","ServerKey":"pl181","X":689,"Y":466},{"Bonus":0,"Continent":"K65","ID":38229,"Name":"Kombinat","PlayerID":699567608,"Points":9936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38229","ServerKey":"pl181","X":588,"Y":673},{"Bonus":0,"Continent":"K53","ID":38230,"Name":"(030)Marabethia","PlayerID":849098695,"Points":8789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38230","ServerKey":"pl181","X":323,"Y":569},{"Bonus":0,"Continent":"K33","ID":38231,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38231","ServerKey":"pl181","X":390,"Y":345},{"Bonus":0,"Continent":"K43","ID":38232,"Name":"Dream on","PlayerID":698962117,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38232","ServerKey":"pl181","X":308,"Y":488},{"Bonus":7,"Continent":"K35","ID":38233,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":3497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38233","ServerKey":"pl181","X":532,"Y":315},{"Bonus":0,"Continent":"K46","ID":38234,"Name":"BACÓWKA |034|","PlayerID":7394371,"Points":5966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38234","ServerKey":"pl181","X":668,"Y":412},{"Bonus":0,"Continent":"K33","ID":38235,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38235","ServerKey":"pl181","X":391,"Y":347},{"Bonus":0,"Continent":"K35","ID":38236,"Name":"Zakopane","PlayerID":7139853,"Points":3373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38236","ServerKey":"pl181","X":544,"Y":314},{"Bonus":0,"Continent":"K33","ID":38237,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38237","ServerKey":"pl181","X":337,"Y":393},{"Bonus":9,"Continent":"K35","ID":38238,"Name":"Winterhome.004","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38238","ServerKey":"pl181","X":508,"Y":311},{"Bonus":0,"Continent":"K43","ID":38239,"Name":"Out of Touch","PlayerID":698962117,"Points":9186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38239","ServerKey":"pl181","X":322,"Y":420},{"Bonus":0,"Continent":"K66","ID":38240,"Name":"Wiejska2","PlayerID":6528152,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38240","ServerKey":"pl181","X":606,"Y":664},{"Bonus":0,"Continent":"K34","ID":38241,"Name":"006.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38241","ServerKey":"pl181","X":439,"Y":318},{"Bonus":0,"Continent":"K63","ID":38242,"Name":"018","PlayerID":7183372,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38242","ServerKey":"pl181","X":343,"Y":605},{"Bonus":0,"Continent":"K34","ID":38243,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":3474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38243","ServerKey":"pl181","X":401,"Y":333},{"Bonus":0,"Continent":"K65","ID":38244,"Name":"013 co ja robię czasem","PlayerID":849093426,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38244","ServerKey":"pl181","X":531,"Y":686},{"Bonus":0,"Continent":"K65","ID":38245,"Name":"PoƂudnie.002","PlayerID":873575,"Points":10105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38245","ServerKey":"pl181","X":554,"Y":680},{"Bonus":0,"Continent":"K34","ID":38246,"Name":"Winterhome.058","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38246","ServerKey":"pl181","X":495,"Y":307},{"Bonus":0,"Continent":"K33","ID":38247,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38247","ServerKey":"pl181","X":335,"Y":394},{"Bonus":0,"Continent":"K53","ID":38248,"Name":"043g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38248","ServerKey":"pl181","X":313,"Y":559},{"Bonus":0,"Continent":"K66","ID":38249,"Name":"006 NAWRA","PlayerID":849048867,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38249","ServerKey":"pl181","X":658,"Y":611},{"Bonus":0,"Continent":"K43","ID":38250,"Name":"X | Forest Cyaaaanku","PlayerID":1536625,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38250","ServerKey":"pl181","X":319,"Y":467},{"Bonus":0,"Continent":"K63","ID":38251,"Name":".05. Kaer Morhen e","PlayerID":272173,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38251","ServerKey":"pl181","X":346,"Y":619},{"Bonus":0,"Continent":"K35","ID":38252,"Name":"004.","PlayerID":699072129,"Points":5173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38252","ServerKey":"pl181","X":565,"Y":324},{"Bonus":0,"Continent":"K56","ID":38253,"Name":"Szlachcic","PlayerID":8096537,"Points":6586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38253","ServerKey":"pl181","X":691,"Y":516},{"Bonus":0,"Continent":"K43","ID":38254,"Name":"Out of Touch","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38254","ServerKey":"pl181","X":327,"Y":424},{"Bonus":0,"Continent":"K65","ID":38255,"Name":"- 147 - SS","PlayerID":849018239,"Points":8828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38255","ServerKey":"pl181","X":543,"Y":689},{"Bonus":0,"Continent":"K66","ID":38256,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38256","ServerKey":"pl181","X":637,"Y":639},{"Bonus":9,"Continent":"K46","ID":38257,"Name":"[063] Osada koczownikĂłw","PlayerID":849095068,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38257","ServerKey":"pl181","X":672,"Y":418},{"Bonus":0,"Continent":"K43","ID":38258,"Name":"Out of Touch","PlayerID":698962117,"Points":2651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38258","ServerKey":"pl181","X":322,"Y":418},{"Bonus":0,"Continent":"K56","ID":38259,"Name":"006 * Lady Porto *","PlayerID":699406750,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38259","ServerKey":"pl181","X":696,"Y":508},{"Bonus":0,"Continent":"K46","ID":38260,"Name":"I100","PlayerID":699722599,"Points":8294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38260","ServerKey":"pl181","X":686,"Y":459},{"Bonus":0,"Continent":"K33","ID":38261,"Name":"Szlachcic","PlayerID":3484132,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38261","ServerKey":"pl181","X":382,"Y":343},{"Bonus":0,"Continent":"K36","ID":38262,"Name":"019 Christmasss","PlayerID":699098531,"Points":5007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38262","ServerKey":"pl181","X":607,"Y":343},{"Bonus":0,"Continent":"K65","ID":38263,"Name":"- 144 - SS","PlayerID":849018239,"Points":9195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38263","ServerKey":"pl181","X":537,"Y":686},{"Bonus":0,"Continent":"K64","ID":38264,"Name":"|045| Mordownia","PlayerID":2585846,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38264","ServerKey":"pl181","X":499,"Y":690},{"Bonus":0,"Continent":"K64","ID":38265,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38265","ServerKey":"pl181","X":426,"Y":680},{"Bonus":0,"Continent":"K35","ID":38266,"Name":"K35 - [019] Before Land","PlayerID":699088769,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38266","ServerKey":"pl181","X":578,"Y":326},{"Bonus":0,"Continent":"K56","ID":38267,"Name":"MaƂpi Gaj","PlayerID":848932879,"Points":7616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38267","ServerKey":"pl181","X":683,"Y":551},{"Bonus":0,"Continent":"K53","ID":38268,"Name":"Wonderwall","PlayerID":698962117,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38268","ServerKey":"pl181","X":331,"Y":545},{"Bonus":0,"Continent":"K46","ID":38269,"Name":"I099","PlayerID":699722599,"Points":8606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38269","ServerKey":"pl181","X":686,"Y":462},{"Bonus":0,"Continent":"K53","ID":38270,"Name":"*007*","PlayerID":8630972,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38270","ServerKey":"pl181","X":313,"Y":533},{"Bonus":0,"Continent":"K56","ID":38271,"Name":"TWIERDZA .:071:.","PlayerID":7154207,"Points":8375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38271","ServerKey":"pl181","X":677,"Y":570},{"Bonus":0,"Continent":"K46","ID":38272,"Name":"Kingdom 6","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38272","ServerKey":"pl181","X":689,"Y":499},{"Bonus":0,"Continent":"K66","ID":38273,"Name":"Ć»UBR .::.Adaczu/10","PlayerID":33900,"Points":4559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38273","ServerKey":"pl181","X":621,"Y":647},{"Bonus":0,"Continent":"K53","ID":38274,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38274","ServerKey":"pl181","X":314,"Y":537},{"Bonus":0,"Continent":"K36","ID":38275,"Name":"#001","PlayerID":849099391,"Points":6460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38275","ServerKey":"pl181","X":664,"Y":397},{"Bonus":0,"Continent":"K63","ID":38276,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38276","ServerKey":"pl181","X":337,"Y":604},{"Bonus":0,"Continent":"K65","ID":38277,"Name":"nr3","PlayerID":364126,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38277","ServerKey":"pl181","X":585,"Y":675},{"Bonus":0,"Continent":"K36","ID":38278,"Name":"012 Mhmm","PlayerID":699098531,"Points":4455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38278","ServerKey":"pl181","X":601,"Y":341},{"Bonus":7,"Continent":"K64","ID":38279,"Name":"029# Janette","PlayerID":3933666,"Points":5657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38279","ServerKey":"pl181","X":491,"Y":695},{"Bonus":0,"Continent":"K46","ID":38280,"Name":"Stawiski","PlayerID":849100082,"Points":5155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38280","ServerKey":"pl181","X":687,"Y":476},{"Bonus":0,"Continent":"K65","ID":38281,"Name":"- 191 - SS","PlayerID":849018239,"Points":7001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38281","ServerKey":"pl181","X":560,"Y":686},{"Bonus":0,"Continent":"K66","ID":38282,"Name":"104","PlayerID":3589487,"Points":5515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38282","ServerKey":"pl181","X":656,"Y":616},{"Bonus":0,"Continent":"K46","ID":38283,"Name":"054. Wioska barbarzyƄska","PlayerID":7494497,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38283","ServerKey":"pl181","X":689,"Y":464},{"Bonus":0,"Continent":"K66","ID":38284,"Name":"Morty Town","PlayerID":849098822,"Points":6665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38284","ServerKey":"pl181","X":644,"Y":622},{"Bonus":0,"Continent":"K56","ID":38285,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38285","ServerKey":"pl181","X":695,"Y":514},{"Bonus":0,"Continent":"K35","ID":38286,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":3561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38286","ServerKey":"pl181","X":567,"Y":320},{"Bonus":0,"Continent":"K66","ID":38287,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38287","ServerKey":"pl181","X":636,"Y":635},{"Bonus":0,"Continent":"K66","ID":38288,"Name":"071. Uden","PlayerID":8337151,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38288","ServerKey":"pl181","X":649,"Y":617},{"Bonus":0,"Continent":"K43","ID":38289,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38289","ServerKey":"pl181","X":310,"Y":460},{"Bonus":0,"Continent":"K65","ID":38290,"Name":"AG11","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38290","ServerKey":"pl181","X":589,"Y":665},{"Bonus":0,"Continent":"K65","ID":38291,"Name":"Forteca*009*","PlayerID":1078121,"Points":4434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38291","ServerKey":"pl181","X":531,"Y":694},{"Bonus":0,"Continent":"K66","ID":38292,"Name":"~~074~~","PlayerID":7829201,"Points":5871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38292","ServerKey":"pl181","X":629,"Y":639},{"Bonus":0,"Continent":"K56","ID":38293,"Name":"Wioska Zorro 016","PlayerID":849080702,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38293","ServerKey":"pl181","X":679,"Y":590},{"Bonus":0,"Continent":"K35","ID":38294,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38294","ServerKey":"pl181","X":524,"Y":313},{"Bonus":0,"Continent":"K46","ID":38295,"Name":"005. Praga PoƂudnie","PlayerID":7494497,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38295","ServerKey":"pl181","X":695,"Y":482},{"Bonus":0,"Continent":"K56","ID":38296,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":4812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38296","ServerKey":"pl181","X":685,"Y":549},{"Bonus":0,"Continent":"K36","ID":38297,"Name":"XDX","PlayerID":699098531,"Points":8197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38297","ServerKey":"pl181","X":603,"Y":333},{"Bonus":0,"Continent":"K36","ID":38298,"Name":"-13-","PlayerID":698361257,"Points":6776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38298","ServerKey":"pl181","X":639,"Y":364},{"Bonus":0,"Continent":"K34","ID":38299,"Name":"011.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38299","ServerKey":"pl181","X":448,"Y":313},{"Bonus":0,"Continent":"K56","ID":38300,"Name":"WƂadcy PóƂnocy 12","PlayerID":699379895,"Points":5606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38300","ServerKey":"pl181","X":686,"Y":526},{"Bonus":0,"Continent":"K35","ID":38302,"Name":"Vanaheim II","PlayerID":699478692,"Points":3076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38302","ServerKey":"pl181","X":594,"Y":337},{"Bonus":0,"Continent":"K36","ID":38303,"Name":"kamilkaze135 #01","PlayerID":699705601,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38303","ServerKey":"pl181","X":659,"Y":390},{"Bonus":0,"Continent":"K36","ID":38304,"Name":"blablabla","PlayerID":9103424,"Points":2937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38304","ServerKey":"pl181","X":625,"Y":355},{"Bonus":0,"Continent":"K43","ID":38305,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38305","ServerKey":"pl181","X":332,"Y":403},{"Bonus":0,"Continent":"K66","ID":38306,"Name":"~~065~~","PlayerID":7829201,"Points":7629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38306","ServerKey":"pl181","X":632,"Y":642},{"Bonus":0,"Continent":"K64","ID":38307,"Name":"2.C.","PlayerID":699777372,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38307","ServerKey":"pl181","X":457,"Y":688},{"Bonus":0,"Continent":"K46","ID":38308,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38308","ServerKey":"pl181","X":695,"Y":475},{"Bonus":0,"Continent":"K66","ID":38309,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38309","ServerKey":"pl181","X":648,"Y":619},{"Bonus":0,"Continent":"K56","ID":38310,"Name":"$Doncic","PlayerID":699795378,"Points":5378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38310","ServerKey":"pl181","X":688,"Y":519},{"Bonus":0,"Continent":"K65","ID":38311,"Name":"2.Vitoria","PlayerID":698215322,"Points":5296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38311","ServerKey":"pl181","X":572,"Y":677},{"Bonus":0,"Continent":"K34","ID":38312,"Name":"206","PlayerID":7271812,"Points":4238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38312","ServerKey":"pl181","X":426,"Y":328},{"Bonus":0,"Continent":"K34","ID":38313,"Name":"197...segador","PlayerID":6920960,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38313","ServerKey":"pl181","X":455,"Y":317},{"Bonus":0,"Continent":"K66","ID":38314,"Name":"018 NAWRA","PlayerID":849048867,"Points":3644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38314","ServerKey":"pl181","X":661,"Y":610},{"Bonus":0,"Continent":"K34","ID":38315,"Name":"#0158 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38315","ServerKey":"pl181","X":470,"Y":315},{"Bonus":0,"Continent":"K66","ID":38316,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38316","ServerKey":"pl181","X":639,"Y":631},{"Bonus":0,"Continent":"K65","ID":38317,"Name":"Wyspa_16","PlayerID":2585846,"Points":9526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38317","ServerKey":"pl181","X":504,"Y":689},{"Bonus":0,"Continent":"K43","ID":38318,"Name":"Wioska 8","PlayerID":849075836,"Points":8320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38318","ServerKey":"pl181","X":313,"Y":485},{"Bonus":0,"Continent":"K53","ID":38319,"Name":"C0034","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38319","ServerKey":"pl181","X":312,"Y":511},{"Bonus":0,"Continent":"K64","ID":38320,"Name":"0026 Wioska barbarzyƄska","PlayerID":849037407,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38320","ServerKey":"pl181","X":451,"Y":688},{"Bonus":0,"Continent":"K53","ID":38321,"Name":"C0161","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38321","ServerKey":"pl181","X":317,"Y":515},{"Bonus":0,"Continent":"K33","ID":38323,"Name":"Mefedron 04","PlayerID":3484132,"Points":8496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38323","ServerKey":"pl181","X":394,"Y":342},{"Bonus":0,"Continent":"K53","ID":38324,"Name":"KocpoƂuch 3","PlayerID":848949597,"Points":3829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38324","ServerKey":"pl181","X":331,"Y":580},{"Bonus":0,"Continent":"K64","ID":38326,"Name":"032# Roe","PlayerID":3933666,"Points":7692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38326","ServerKey":"pl181","X":481,"Y":692},{"Bonus":0,"Continent":"K33","ID":38327,"Name":"[F] 004","PlayerID":3484132,"Points":6756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38327","ServerKey":"pl181","X":385,"Y":342},{"Bonus":0,"Continent":"K65","ID":38328,"Name":"- 143 - SS","PlayerID":849018239,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38328","ServerKey":"pl181","X":543,"Y":686},{"Bonus":0,"Continent":"K35","ID":38329,"Name":"UltraInstynkt","PlayerID":699710633,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38329","ServerKey":"pl181","X":582,"Y":329},{"Bonus":0,"Continent":"K46","ID":38330,"Name":"I072","PlayerID":699722599,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38330","ServerKey":"pl181","X":685,"Y":465},{"Bonus":0,"Continent":"K56","ID":38331,"Name":"Szlachcic","PlayerID":8096537,"Points":8410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38331","ServerKey":"pl181","X":692,"Y":514},{"Bonus":0,"Continent":"K35","ID":38332,"Name":"AAA","PlayerID":1006847,"Points":6146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38332","ServerKey":"pl181","X":545,"Y":309},{"Bonus":0,"Continent":"K56","ID":38333,"Name":"Wioska 101","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38333","ServerKey":"pl181","X":648,"Y":598},{"Bonus":0,"Continent":"K64","ID":38334,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38334","ServerKey":"pl181","X":426,"Y":675},{"Bonus":0,"Continent":"K63","ID":38335,"Name":".27. Cinoda e","PlayerID":272173,"Points":6517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38335","ServerKey":"pl181","X":353,"Y":619},{"Bonus":0,"Continent":"K44","ID":38336,"Name":"006342 Miedziany1","PlayerID":3909522,"Points":10520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38336","ServerKey":"pl181","X":440,"Y":433},{"Bonus":0,"Continent":"K35","ID":38337,"Name":"XDX","PlayerID":699098531,"Points":4458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38337","ServerKey":"pl181","X":589,"Y":328},{"Bonus":0,"Continent":"K56","ID":38338,"Name":"Wioska ricki19634","PlayerID":698845189,"Points":6632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38338","ServerKey":"pl181","X":604,"Y":515},{"Bonus":0,"Continent":"K46","ID":38339,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38339","ServerKey":"pl181","X":695,"Y":491},{"Bonus":0,"Continent":"K56","ID":38340,"Name":"WƂadcy PóƂnocy 07","PlayerID":699379895,"Points":6152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38340","ServerKey":"pl181","X":690,"Y":501},{"Bonus":0,"Continent":"K66","ID":38342,"Name":"#077#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38342","ServerKey":"pl181","X":629,"Y":636},{"Bonus":0,"Continent":"K64","ID":38343,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38343","ServerKey":"pl181","X":439,"Y":679},{"Bonus":0,"Continent":"K64","ID":38344,"Name":"0004 Krwawa PrzeƂęcz II","PlayerID":699656989,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38344","ServerKey":"pl181","X":477,"Y":693},{"Bonus":0,"Continent":"K66","ID":38345,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38345","ServerKey":"pl181","X":662,"Y":609},{"Bonus":0,"Continent":"K64","ID":38346,"Name":"#006. Bank Robber","PlayerID":848896948,"Points":9611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38346","ServerKey":"pl181","X":451,"Y":681},{"Bonus":0,"Continent":"K53","ID":38347,"Name":"03.wiocha","PlayerID":7183372,"Points":5161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38347","ServerKey":"pl181","X":331,"Y":589},{"Bonus":0,"Continent":"K36","ID":38348,"Name":"013 Argentina Out","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38348","ServerKey":"pl181","X":620,"Y":349},{"Bonus":0,"Continent":"K65","ID":38349,"Name":"- 171 - SS","PlayerID":849018239,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38349","ServerKey":"pl181","X":557,"Y":687},{"Bonus":0,"Continent":"K65","ID":38350,"Name":"- 174 - SS","PlayerID":849018239,"Points":7527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38350","ServerKey":"pl181","X":550,"Y":687},{"Bonus":0,"Continent":"K36","ID":38351,"Name":"Dolina Czarnych MagĂłw","PlayerID":7973893,"Points":8794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38351","ServerKey":"pl181","X":650,"Y":389},{"Bonus":0,"Continent":"K56","ID":38352,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38352","ServerKey":"pl181","X":695,"Y":521},{"Bonus":0,"Continent":"K66","ID":38353,"Name":"Wioska 075","PlayerID":848971079,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38353","ServerKey":"pl181","X":662,"Y":601},{"Bonus":0,"Continent":"K65","ID":38354,"Name":"- 181 - SS","PlayerID":849018239,"Points":8981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38354","ServerKey":"pl181","X":534,"Y":688},{"Bonus":0,"Continent":"K63","ID":38355,"Name":"Komornicy 029","PlayerID":699336777,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38355","ServerKey":"pl181","X":347,"Y":610},{"Bonus":0,"Continent":"K56","ID":38356,"Name":"$Zion","PlayerID":699795378,"Points":4429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38356","ServerKey":"pl181","X":687,"Y":512},{"Bonus":0,"Continent":"K64","ID":38357,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38357","ServerKey":"pl181","X":420,"Y":671},{"Bonus":0,"Continent":"K33","ID":38358,"Name":"*108*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38358","ServerKey":"pl181","X":362,"Y":367},{"Bonus":0,"Continent":"K35","ID":38359,"Name":"Winterhome.007","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38359","ServerKey":"pl181","X":508,"Y":313},{"Bonus":9,"Continent":"K43","ID":38360,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38360","ServerKey":"pl181","X":314,"Y":466},{"Bonus":0,"Continent":"K46","ID":38361,"Name":"013 mordownia","PlayerID":849098769,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38361","ServerKey":"pl181","X":684,"Y":444},{"Bonus":0,"Continent":"K34","ID":38362,"Name":"065.Stradi","PlayerID":698365960,"Points":10282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38362","ServerKey":"pl181","X":450,"Y":312},{"Bonus":0,"Continent":"K36","ID":38363,"Name":"002","PlayerID":9060885,"Points":4995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38363","ServerKey":"pl181","X":620,"Y":346},{"Bonus":0,"Continent":"K64","ID":38364,"Name":"0.23","PlayerID":699725436,"Points":9607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38364","ServerKey":"pl181","X":466,"Y":687},{"Bonus":0,"Continent":"K34","ID":38365,"Name":"Wioska 4","PlayerID":849050849,"Points":4411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38365","ServerKey":"pl181","X":499,"Y":305},{"Bonus":0,"Continent":"K34","ID":38366,"Name":"7.Mylta","PlayerID":849098648,"Points":5704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38366","ServerKey":"pl181","X":420,"Y":323},{"Bonus":0,"Continent":"K63","ID":38367,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":3059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38367","ServerKey":"pl181","X":353,"Y":627},{"Bonus":0,"Continent":"K64","ID":38369,"Name":"015# Natalie","PlayerID":699605333,"Points":10163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38369","ServerKey":"pl181","X":486,"Y":696},{"Bonus":0,"Continent":"K46","ID":38370,"Name":"023","PlayerID":7085502,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38370","ServerKey":"pl181","X":687,"Y":454},{"Bonus":0,"Continent":"K56","ID":38371,"Name":"Didek","PlayerID":849070946,"Points":8396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38371","ServerKey":"pl181","X":678,"Y":577},{"Bonus":0,"Continent":"K63","ID":38372,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":4430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38372","ServerKey":"pl181","X":397,"Y":657},{"Bonus":0,"Continent":"K56","ID":38373,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38373","ServerKey":"pl181","X":683,"Y":568},{"Bonus":0,"Continent":"K53","ID":38374,"Name":"KRASZEW 2","PlayerID":7183372,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38374","ServerKey":"pl181","X":337,"Y":597},{"Bonus":0,"Continent":"K33","ID":38375,"Name":"Wioska","PlayerID":7462660,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38375","ServerKey":"pl181","X":344,"Y":383},{"Bonus":0,"Continent":"K46","ID":38376,"Name":"007 Stadio Alberto Picco","PlayerID":849098769,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38376","ServerKey":"pl181","X":684,"Y":455},{"Bonus":0,"Continent":"K33","ID":38377,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38377","ServerKey":"pl181","X":374,"Y":356},{"Bonus":2,"Continent":"K34","ID":38378,"Name":"Winterhome.057","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38378","ServerKey":"pl181","X":496,"Y":307},{"Bonus":0,"Continent":"K43","ID":38379,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38379","ServerKey":"pl181","X":306,"Y":498},{"Bonus":0,"Continent":"K65","ID":38380,"Name":"C002","PlayerID":9023703,"Points":6783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38380","ServerKey":"pl181","X":597,"Y":661},{"Bonus":0,"Continent":"K64","ID":38381,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38381","ServerKey":"pl181","X":404,"Y":670},{"Bonus":0,"Continent":"K64","ID":38382,"Name":"046 Breza","PlayerID":699834004,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38382","ServerKey":"pl181","X":461,"Y":685},{"Bonus":0,"Continent":"K34","ID":38383,"Name":"#0285 Gwen1","PlayerID":1238300,"Points":4179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38383","ServerKey":"pl181","X":477,"Y":308},{"Bonus":0,"Continent":"K33","ID":38384,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":8466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38384","ServerKey":"pl181","X":375,"Y":350},{"Bonus":0,"Continent":"K65","ID":38385,"Name":"RTS 9","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38385","ServerKey":"pl181","X":581,"Y":624},{"Bonus":0,"Continent":"K35","ID":38386,"Name":"Wioska barbarzyƄska","PlayerID":699658023,"Points":3702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38386","ServerKey":"pl181","X":564,"Y":320},{"Bonus":0,"Continent":"K36","ID":38387,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38387","ServerKey":"pl181","X":648,"Y":376},{"Bonus":0,"Continent":"K36","ID":38388,"Name":"!36 74 Hurjuieni","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38388","ServerKey":"pl181","X":646,"Y":370},{"Bonus":0,"Continent":"K34","ID":38389,"Name":".achim.","PlayerID":6936607,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38389","ServerKey":"pl181","X":481,"Y":311},{"Bonus":0,"Continent":"K35","ID":38390,"Name":"K35 - [034] Before Land","PlayerID":699088769,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38390","ServerKey":"pl181","X":577,"Y":325},{"Bonus":0,"Continent":"K64","ID":38391,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38391","ServerKey":"pl181","X":430,"Y":680},{"Bonus":0,"Continent":"K66","ID":38392,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38392","ServerKey":"pl181","X":641,"Y":632},{"Bonus":0,"Continent":"K43","ID":38393,"Name":"Out of Touch","PlayerID":698962117,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38393","ServerKey":"pl181","X":322,"Y":419},{"Bonus":0,"Continent":"K43","ID":38394,"Name":"Dream on","PlayerID":698962117,"Points":9007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38394","ServerKey":"pl181","X":304,"Y":495},{"Bonus":0,"Continent":"K65","ID":38395,"Name":"001","PlayerID":699567608,"Points":7424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38395","ServerKey":"pl181","X":589,"Y":675},{"Bonus":0,"Continent":"K46","ID":38396,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38396","ServerKey":"pl181","X":696,"Y":495},{"Bonus":0,"Continent":"K35","ID":38398,"Name":"-DrakenSag1","PlayerID":699825236,"Points":7545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38398","ServerKey":"pl181","X":545,"Y":326},{"Bonus":0,"Continent":"K36","ID":38399,"Name":"*3604*a Dolina BiaƂych MagĂłw","PlayerID":7973893,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38399","ServerKey":"pl181","X":661,"Y":397},{"Bonus":0,"Continent":"K36","ID":38400,"Name":"Beznazwa","PlayerID":7340529,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38400","ServerKey":"pl181","X":618,"Y":354},{"Bonus":0,"Continent":"K63","ID":38401,"Name":"Taran","PlayerID":6180190,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38401","ServerKey":"pl181","X":335,"Y":600},{"Bonus":0,"Continent":"K35","ID":38402,"Name":"X 005","PlayerID":6384450,"Points":8541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38402","ServerKey":"pl181","X":598,"Y":335},{"Bonus":0,"Continent":"K46","ID":38403,"Name":"AGA6","PlayerID":699598425,"Points":7807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38403","ServerKey":"pl181","X":687,"Y":499},{"Bonus":0,"Continent":"K46","ID":38404,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38404","ServerKey":"pl181","X":670,"Y":402},{"Bonus":0,"Continent":"K66","ID":38405,"Name":"050","PlayerID":699099811,"Points":2699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38405","ServerKey":"pl181","X":649,"Y":627},{"Bonus":0,"Continent":"K65","ID":38406,"Name":"2.Kordoba","PlayerID":698215322,"Points":5030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38406","ServerKey":"pl181","X":574,"Y":678},{"Bonus":0,"Continent":"K43","ID":38407,"Name":"Dream on","PlayerID":698962117,"Points":8957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38407","ServerKey":"pl181","X":307,"Y":496},{"Bonus":0,"Continent":"K64","ID":38408,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38408","ServerKey":"pl181","X":429,"Y":677},{"Bonus":0,"Continent":"K34","ID":38409,"Name":".achim.","PlayerID":6936607,"Points":9665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38409","ServerKey":"pl181","X":485,"Y":309},{"Bonus":0,"Continent":"K53","ID":38410,"Name":"Stolikland","PlayerID":699671197,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38410","ServerKey":"pl181","X":319,"Y":572},{"Bonus":0,"Continent":"K63","ID":38411,"Name":"07 Las Labores","PlayerID":699269923,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38411","ServerKey":"pl181","X":383,"Y":651},{"Bonus":0,"Continent":"K33","ID":38412,"Name":"Ć»oliborz","PlayerID":849099434,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38412","ServerKey":"pl181","X":367,"Y":356},{"Bonus":0,"Continent":"K35","ID":38413,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38413","ServerKey":"pl181","X":506,"Y":307},{"Bonus":0,"Continent":"K66","ID":38414,"Name":"042","PlayerID":699099811,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38414","ServerKey":"pl181","X":650,"Y":626},{"Bonus":0,"Continent":"K66","ID":38415,"Name":"A024","PlayerID":9023703,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38415","ServerKey":"pl181","X":608,"Y":661},{"Bonus":0,"Continent":"K63","ID":38416,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38416","ServerKey":"pl181","X":399,"Y":663},{"Bonus":0,"Continent":"K46","ID":38417,"Name":"BACÓWKA |042|","PlayerID":7394371,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38417","ServerKey":"pl181","X":668,"Y":414},{"Bonus":0,"Continent":"K53","ID":38418,"Name":"Wioska barbarzyƄska 3","PlayerID":3475079,"Points":6809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38418","ServerKey":"pl181","X":325,"Y":580},{"Bonus":0,"Continent":"K34","ID":38419,"Name":"031","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38419","ServerKey":"pl181","X":455,"Y":310},{"Bonus":0,"Continent":"K43","ID":38420,"Name":"Dream on","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38420","ServerKey":"pl181","X":307,"Y":494},{"Bonus":0,"Continent":"K36","ID":38421,"Name":"WB5","PlayerID":1086351,"Points":8392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38421","ServerKey":"pl181","X":666,"Y":395},{"Bonus":0,"Continent":"K56","ID":38422,"Name":"0026. Y -","PlayerID":7125212,"Points":4079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38422","ServerKey":"pl181","X":692,"Y":536},{"Bonus":0,"Continent":"K33","ID":38423,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38423","ServerKey":"pl181","X":368,"Y":360},{"Bonus":0,"Continent":"K36","ID":38424,"Name":"Gattacka","PlayerID":699298370,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38424","ServerKey":"pl181","X":613,"Y":381},{"Bonus":0,"Continent":"K65","ID":38425,"Name":"Plantacja GranatnikĂłw","PlayerID":698723158,"Points":7576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38425","ServerKey":"pl181","X":581,"Y":672},{"Bonus":0,"Continent":"K43","ID":38426,"Name":"Out of Touch","PlayerID":698962117,"Points":7405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38426","ServerKey":"pl181","X":318,"Y":432},{"Bonus":0,"Continent":"K66","ID":38427,"Name":"002","PlayerID":698234770,"Points":9929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38427","ServerKey":"pl181","X":647,"Y":629},{"Bonus":0,"Continent":"K34","ID":38429,"Name":"057.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38429","ServerKey":"pl181","X":449,"Y":314},{"Bonus":0,"Continent":"K64","ID":38430,"Name":"048 Carreras","PlayerID":699834004,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38430","ServerKey":"pl181","X":462,"Y":684},{"Bonus":0,"Continent":"K35","ID":38432,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38432","ServerKey":"pl181","X":594,"Y":330},{"Bonus":0,"Continent":"K36","ID":38433,"Name":"Odbudowa Hagi:)","PlayerID":9103424,"Points":3882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38433","ServerKey":"pl181","X":627,"Y":352},{"Bonus":0,"Continent":"K43","ID":38434,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":8840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38434","ServerKey":"pl181","X":325,"Y":424},{"Bonus":0,"Continent":"K65","ID":38435,"Name":"RzeĆŒucha Ɓąkowa","PlayerID":698723158,"Points":6074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38435","ServerKey":"pl181","X":582,"Y":679},{"Bonus":0,"Continent":"K63","ID":38437,"Name":"003","PlayerID":7183372,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38437","ServerKey":"pl181","X":335,"Y":605},{"Bonus":0,"Continent":"K56","ID":38438,"Name":".:002:.","PlayerID":849039310,"Points":4090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38438","ServerKey":"pl181","X":668,"Y":592},{"Bonus":0,"Continent":"K56","ID":38439,"Name":"074","PlayerID":699316421,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38439","ServerKey":"pl181","X":690,"Y":547},{"Bonus":0,"Continent":"K66","ID":38440,"Name":"Wioska marcinnn19922","PlayerID":8224678,"Points":11314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38440","ServerKey":"pl181","X":648,"Y":610},{"Bonus":0,"Continent":"K46","ID":38441,"Name":"**37**","PlayerID":849098782,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38441","ServerKey":"pl181","X":675,"Y":432},{"Bonus":0,"Continent":"K46","ID":38442,"Name":"037 tutaj pierwsza miƂoƛć jest..","PlayerID":699272633,"Points":6821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38442","ServerKey":"pl181","X":680,"Y":448},{"Bonus":0,"Continent":"K64","ID":38443,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38443","ServerKey":"pl181","X":417,"Y":669},{"Bonus":0,"Continent":"K43","ID":38444,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38444","ServerKey":"pl181","X":312,"Y":452},{"Bonus":0,"Continent":"K43","ID":38445,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38445","ServerKey":"pl181","X":312,"Y":453},{"Bonus":0,"Continent":"K46","ID":38446,"Name":"B#011","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38446","ServerKey":"pl181","X":692,"Y":459},{"Bonus":0,"Continent":"K63","ID":38447,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38447","ServerKey":"pl181","X":390,"Y":657},{"Bonus":0,"Continent":"K65","ID":38448,"Name":"- 195 - SS","PlayerID":849018239,"Points":8429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38448","ServerKey":"pl181","X":530,"Y":686},{"Bonus":0,"Continent":"K43","ID":38449,"Name":"Rubiez4","PlayerID":699265922,"Points":8749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38449","ServerKey":"pl181","X":308,"Y":483},{"Bonus":3,"Continent":"K64","ID":38450,"Name":"cos cos","PlayerID":8966820,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38450","ServerKey":"pl181","X":437,"Y":682},{"Bonus":0,"Continent":"K34","ID":38451,"Name":"0014","PlayerID":2321390,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38451","ServerKey":"pl181","X":423,"Y":321},{"Bonus":0,"Continent":"K63","ID":38452,"Name":"A 078","PlayerID":699269923,"Points":3930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38452","ServerKey":"pl181","X":364,"Y":641},{"Bonus":0,"Continent":"K46","ID":38453,"Name":"I101","PlayerID":699722599,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38453","ServerKey":"pl181","X":687,"Y":463},{"Bonus":0,"Continent":"K34","ID":38454,"Name":"[0040]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38454","ServerKey":"pl181","X":437,"Y":321},{"Bonus":0,"Continent":"K36","ID":38456,"Name":"004.","PlayerID":699098531,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38456","ServerKey":"pl181","X":642,"Y":376},{"Bonus":0,"Continent":"K64","ID":38457,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38457","ServerKey":"pl181","X":410,"Y":665},{"Bonus":0,"Continent":"K53","ID":38458,"Name":"042.","PlayerID":7183372,"Points":1837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38458","ServerKey":"pl181","X":330,"Y":587},{"Bonus":0,"Continent":"K36","ID":38459,"Name":"020 New Yorkshire","PlayerID":698420691,"Points":8378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38459","ServerKey":"pl181","X":621,"Y":355},{"Bonus":0,"Continent":"K65","ID":38460,"Name":"Wyspa_17","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38460","ServerKey":"pl181","X":502,"Y":691},{"Bonus":0,"Continent":"K36","ID":38461,"Name":"XDX","PlayerID":699098531,"Points":8054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38461","ServerKey":"pl181","X":604,"Y":334},{"Bonus":0,"Continent":"K53","ID":38462,"Name":"Devano4","PlayerID":7183372,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38462","ServerKey":"pl181","X":335,"Y":590},{"Bonus":0,"Continent":"K63","ID":38463,"Name":"A 044","PlayerID":699342219,"Points":5341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38463","ServerKey":"pl181","X":363,"Y":632},{"Bonus":0,"Continent":"K64","ID":38464,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38464","ServerKey":"pl181","X":427,"Y":681},{"Bonus":0,"Continent":"K56","ID":38465,"Name":"$MiamiHeat","PlayerID":699795378,"Points":8790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38465","ServerKey":"pl181","X":691,"Y":507},{"Bonus":0,"Continent":"K44","ID":38466,"Name":"Monetki","PlayerID":699098531,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38466","ServerKey":"pl181","X":485,"Y":415},{"Bonus":0,"Continent":"K46","ID":38467,"Name":"Piekarnia","PlayerID":849093742,"Points":7940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38467","ServerKey":"pl181","X":678,"Y":440},{"Bonus":0,"Continent":"K43","ID":38469,"Name":"walaszczyki","PlayerID":8048374,"Points":7877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38469","ServerKey":"pl181","X":306,"Y":479},{"Bonus":0,"Continent":"K36","ID":38470,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38470","ServerKey":"pl181","X":635,"Y":366},{"Bonus":0,"Continent":"K43","ID":38471,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38471","ServerKey":"pl181","X":310,"Y":469},{"Bonus":0,"Continent":"K66","ID":38472,"Name":"Wioska Tomcio Rycerz","PlayerID":3467919,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38472","ServerKey":"pl181","X":665,"Y":601},{"Bonus":0,"Continent":"K64","ID":38474,"Name":"psycha sitting","PlayerID":699736927,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38474","ServerKey":"pl181","X":407,"Y":669},{"Bonus":0,"Continent":"K56","ID":38478,"Name":"_PUSTA+","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38478","ServerKey":"pl181","X":687,"Y":544},{"Bonus":0,"Continent":"K33","ID":38479,"Name":"z A03 RzeszĂłw","PlayerID":3909522,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38479","ServerKey":"pl181","X":349,"Y":382},{"Bonus":0,"Continent":"K53","ID":38480,"Name":"006","PlayerID":8153179,"Points":4665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38480","ServerKey":"pl181","X":318,"Y":557},{"Bonus":0,"Continent":"K33","ID":38481,"Name":"*087*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38481","ServerKey":"pl181","X":362,"Y":371},{"Bonus":0,"Continent":"K64","ID":38482,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38482","ServerKey":"pl181","X":408,"Y":671},{"Bonus":0,"Continent":"K53","ID":38483,"Name":"Sullivanum [2]","PlayerID":1606425,"Points":11875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38483","ServerKey":"pl181","X":337,"Y":593},{"Bonus":0,"Continent":"K34","ID":38484,"Name":"[0035]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38484","ServerKey":"pl181","X":443,"Y":313},{"Bonus":0,"Continent":"K43","ID":38485,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":5073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38485","ServerKey":"pl181","X":328,"Y":406},{"Bonus":0,"Continent":"K66","ID":38487,"Name":"019 NAWRA","PlayerID":849048867,"Points":5483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38487","ServerKey":"pl181","X":663,"Y":609},{"Bonus":0,"Continent":"K33","ID":38488,"Name":"*098*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38488","ServerKey":"pl181","X":357,"Y":368},{"Bonus":0,"Continent":"K64","ID":38489,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38489","ServerKey":"pl181","X":421,"Y":680},{"Bonus":0,"Continent":"K43","ID":38490,"Name":"Hoog","PlayerID":393668,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38490","ServerKey":"pl181","X":315,"Y":440},{"Bonus":0,"Continent":"K43","ID":38492,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38492","ServerKey":"pl181","X":331,"Y":406},{"Bonus":0,"Continent":"K66","ID":38493,"Name":"~~059~~","PlayerID":7829201,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38493","ServerKey":"pl181","X":626,"Y":644},{"Bonus":0,"Continent":"K66","ID":38494,"Name":"A055","PlayerID":9023703,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38494","ServerKey":"pl181","X":614,"Y":651},{"Bonus":0,"Continent":"K43","ID":38495,"Name":"Rubiez7","PlayerID":699265922,"Points":8230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38495","ServerKey":"pl181","X":305,"Y":485},{"Bonus":0,"Continent":"K34","ID":38496,"Name":"Winterhome.072","PlayerID":848918380,"Points":8626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38496","ServerKey":"pl181","X":492,"Y":310},{"Bonus":0,"Continent":"K34","ID":38497,"Name":"#0205 Segadorr dar","PlayerID":1238300,"Points":7645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38497","ServerKey":"pl181","X":460,"Y":314},{"Bonus":0,"Continent":"K36","ID":38498,"Name":"XDX","PlayerID":699098531,"Points":5105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38498","ServerKey":"pl181","X":604,"Y":338},{"Bonus":0,"Continent":"K34","ID":38499,"Name":"045.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38499","ServerKey":"pl181","X":446,"Y":319},{"Bonus":0,"Continent":"K56","ID":38500,"Name":"_PUSTA+","PlayerID":699628084,"Points":7769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38500","ServerKey":"pl181","X":687,"Y":543},{"Bonus":0,"Continent":"K65","ID":38501,"Name":"102 invidia","PlayerID":849093426,"Points":8485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38501","ServerKey":"pl181","X":526,"Y":694},{"Bonus":4,"Continent":"K65","ID":38502,"Name":"WYSPA","PlayerID":2585846,"Points":8758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38502","ServerKey":"pl181","X":508,"Y":691},{"Bonus":0,"Continent":"K35","ID":38503,"Name":"103 ***8*** Agrest","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38503","ServerKey":"pl181","X":536,"Y":386},{"Bonus":0,"Continent":"K53","ID":38504,"Name":"003","PlayerID":698356304,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38504","ServerKey":"pl181","X":309,"Y":506},{"Bonus":5,"Continent":"K36","ID":38505,"Name":"Osada koczownikĂłw","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38505","ServerKey":"pl181","X":617,"Y":349},{"Bonus":0,"Continent":"K56","ID":38506,"Name":"076","PlayerID":699316421,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38506","ServerKey":"pl181","X":690,"Y":537},{"Bonus":0,"Continent":"K36","ID":38507,"Name":"0090","PlayerID":848913037,"Points":4968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38507","ServerKey":"pl181","X":612,"Y":346},{"Bonus":0,"Continent":"K53","ID":38508,"Name":"046.","PlayerID":3475079,"Points":2856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38508","ServerKey":"pl181","X":327,"Y":588},{"Bonus":0,"Continent":"K53","ID":38509,"Name":"~006~ MmM","PlayerID":8877156,"Points":9149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38509","ServerKey":"pl181","X":352,"Y":598},{"Bonus":0,"Continent":"K34","ID":38510,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":4594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38510","ServerKey":"pl181","X":400,"Y":332},{"Bonus":0,"Continent":"K46","ID":38511,"Name":"[062] Wioska barbarzyƄska","PlayerID":849095068,"Points":2785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38511","ServerKey":"pl181","X":669,"Y":415},{"Bonus":0,"Continent":"K66","ID":38512,"Name":"~~060~~","PlayerID":7829201,"Points":7382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38512","ServerKey":"pl181","X":625,"Y":644},{"Bonus":0,"Continent":"K63","ID":38513,"Name":"D.012","PlayerID":849088243,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38513","ServerKey":"pl181","X":392,"Y":663},{"Bonus":0,"Continent":"K34","ID":38514,"Name":"Nie rozpędzacie się? XD","PlayerID":698489071,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38514","ServerKey":"pl181","X":476,"Y":306},{"Bonus":0,"Continent":"K43","ID":38515,"Name":"Kopalnia","PlayerID":8048374,"Points":8540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38515","ServerKey":"pl181","X":305,"Y":480},{"Bonus":0,"Continent":"K66","ID":38516,"Name":"Ć»UBR .::.Adaczu/017","PlayerID":33900,"Points":2177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38516","ServerKey":"pl181","X":624,"Y":652},{"Bonus":0,"Continent":"K66","ID":38517,"Name":"Wioska 069","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38517","ServerKey":"pl181","X":657,"Y":611},{"Bonus":2,"Continent":"K43","ID":38519,"Name":"boh81/500","PlayerID":848889556,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38519","ServerKey":"pl181","X":305,"Y":473},{"Bonus":0,"Continent":"K64","ID":38520,"Name":"1.02","PlayerID":699827112,"Points":8533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38520","ServerKey":"pl181","X":428,"Y":678},{"Bonus":0,"Continent":"K43","ID":38521,"Name":"Out of Touch","PlayerID":698962117,"Points":9321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38521","ServerKey":"pl181","X":319,"Y":446},{"Bonus":0,"Continent":"K55","ID":38522,"Name":"[214]","PlayerID":8000875,"Points":4958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38522","ServerKey":"pl181","X":571,"Y":564},{"Bonus":0,"Continent":"K34","ID":38523,"Name":"#0286 Don Noobas","PlayerID":1238300,"Points":4978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38523","ServerKey":"pl181","X":475,"Y":310},{"Bonus":0,"Continent":"K34","ID":38524,"Name":"@11@","PlayerID":699483429,"Points":5604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38524","ServerKey":"pl181","X":404,"Y":328},{"Bonus":6,"Continent":"K53","ID":38525,"Name":"009g","PlayerID":698641566,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38525","ServerKey":"pl181","X":314,"Y":563},{"Bonus":0,"Continent":"K66","ID":38526,"Name":"#021#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38526","ServerKey":"pl181","X":616,"Y":654},{"Bonus":0,"Continent":"K65","ID":38527,"Name":"143 invidia","PlayerID":849093426,"Points":5577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38527","ServerKey":"pl181","X":539,"Y":693},{"Bonus":0,"Continent":"K63","ID":38530,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38530","ServerKey":"pl181","X":338,"Y":604},{"Bonus":0,"Continent":"K46","ID":38531,"Name":"[050] Wioska barbarzyƄska","PlayerID":849095068,"Points":8767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38531","ServerKey":"pl181","X":680,"Y":422},{"Bonus":0,"Continent":"K56","ID":38532,"Name":"WƂadcy PóƂnocy 09","PlayerID":699379895,"Points":6176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38532","ServerKey":"pl181","X":694,"Y":522},{"Bonus":0,"Continent":"K34","ID":38533,"Name":"[0038]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38533","ServerKey":"pl181","X":439,"Y":320},{"Bonus":0,"Continent":"K55","ID":38534,"Name":"[159]","PlayerID":8000875,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38534","ServerKey":"pl181","X":566,"Y":556},{"Bonus":0,"Continent":"K64","ID":38535,"Name":"039# Ola","PlayerID":3933666,"Points":3361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38535","ServerKey":"pl181","X":487,"Y":689},{"Bonus":0,"Continent":"K35","ID":38536,"Name":"K35 - [006] Before Land","PlayerID":699088769,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38536","ServerKey":"pl181","X":576,"Y":320},{"Bonus":0,"Continent":"K64","ID":38537,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38537","ServerKey":"pl181","X":443,"Y":681},{"Bonus":0,"Continent":"K64","ID":38538,"Name":"026 Lan Exeter","PlayerID":699834004,"Points":4897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38538","ServerKey":"pl181","X":472,"Y":688},{"Bonus":0,"Continent":"K35","ID":38539,"Name":"AAA","PlayerID":1006847,"Points":8960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38539","ServerKey":"pl181","X":524,"Y":310},{"Bonus":0,"Continent":"K43","ID":38540,"Name":"003. Podkowa Leƛna","PlayerID":849098966,"Points":6357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38540","ServerKey":"pl181","X":320,"Y":447},{"Bonus":0,"Continent":"K64","ID":38541,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38541","ServerKey":"pl181","X":434,"Y":676},{"Bonus":0,"Continent":"K36","ID":38542,"Name":"Wioska ziomeka4","PlayerID":7629036,"Points":2408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38542","ServerKey":"pl181","X":645,"Y":376},{"Bonus":0,"Continent":"K46","ID":38543,"Name":"Jan NIE PRÓBUJ !!","PlayerID":879782,"Points":6073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38543","ServerKey":"pl181","X":685,"Y":439},{"Bonus":0,"Continent":"K56","ID":38544,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":2320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38544","ServerKey":"pl181","X":671,"Y":582},{"Bonus":0,"Continent":"K35","ID":38545,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":8908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38545","ServerKey":"pl181","X":522,"Y":310},{"Bonus":0,"Continent":"K56","ID":38546,"Name":"No Surprises","PlayerID":848926293,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38546","ServerKey":"pl181","X":678,"Y":564},{"Bonus":0,"Continent":"K43","ID":38547,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38547","ServerKey":"pl181","X":350,"Y":444},{"Bonus":0,"Continent":"K46","ID":38548,"Name":"Gattacka","PlayerID":699298370,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38548","ServerKey":"pl181","X":682,"Y":433},{"Bonus":0,"Continent":"K53","ID":38549,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38549","ServerKey":"pl181","X":334,"Y":596},{"Bonus":0,"Continent":"K56","ID":38550,"Name":"021","PlayerID":699150527,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38550","ServerKey":"pl181","X":696,"Y":514},{"Bonus":0,"Continent":"K66","ID":38551,"Name":"Wioska 079","PlayerID":848971079,"Points":9088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38551","ServerKey":"pl181","X":660,"Y":607},{"Bonus":0,"Continent":"K53","ID":38552,"Name":"Wioska barbarzyƄska","PlayerID":699671197,"Points":6096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38552","ServerKey":"pl181","X":321,"Y":568},{"Bonus":0,"Continent":"K43","ID":38553,"Name":"WB21","PlayerID":356642,"Points":3622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38553","ServerKey":"pl181","X":334,"Y":405},{"Bonus":0,"Continent":"K43","ID":38554,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38554","ServerKey":"pl181","X":314,"Y":471},{"Bonus":0,"Continent":"K63","ID":38555,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":9178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38555","ServerKey":"pl181","X":346,"Y":617},{"Bonus":0,"Continent":"K55","ID":38556,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38556","ServerKey":"pl181","X":580,"Y":568},{"Bonus":0,"Continent":"K46","ID":38557,"Name":"38. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38557","ServerKey":"pl181","X":691,"Y":454},{"Bonus":0,"Continent":"K35","ID":38558,"Name":"Porąbka","PlayerID":7139853,"Points":5756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38558","ServerKey":"pl181","X":543,"Y":310},{"Bonus":0,"Continent":"K53","ID":38559,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38559","ServerKey":"pl181","X":353,"Y":559},{"Bonus":0,"Continent":"K46","ID":38560,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38560","ServerKey":"pl181","X":691,"Y":476},{"Bonus":0,"Continent":"K36","ID":38561,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":5533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38561","ServerKey":"pl181","X":600,"Y":339},{"Bonus":0,"Continent":"K36","ID":38562,"Name":"*003* CSA-Yechać!","PlayerID":849095068,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38562","ServerKey":"pl181","X":607,"Y":340},{"Bonus":0,"Continent":"K64","ID":38563,"Name":"0023 Wioska barbarzyƄska","PlayerID":849037407,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38563","ServerKey":"pl181","X":449,"Y":688},{"Bonus":0,"Continent":"K53","ID":38564,"Name":"000 Plutosea","PlayerID":9280477,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38564","ServerKey":"pl181","X":317,"Y":569},{"Bonus":0,"Continent":"K36","ID":38565,"Name":"JokeR","PlayerID":8963720,"Points":4953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38565","ServerKey":"pl181","X":606,"Y":342},{"Bonus":0,"Continent":"K36","ID":38566,"Name":"Moldor 8","PlayerID":849049045,"Points":9086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38566","ServerKey":"pl181","X":633,"Y":360},{"Bonus":0,"Continent":"K33","ID":38567,"Name":"z 001028qqqqqqqqqqqqqqqqqqqqqqqq","PlayerID":3909522,"Points":7573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38567","ServerKey":"pl181","X":360,"Y":368},{"Bonus":0,"Continent":"K56","ID":38568,"Name":"Didek","PlayerID":849070946,"Points":7044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38568","ServerKey":"pl181","X":673,"Y":582},{"Bonus":0,"Continent":"K65","ID":38569,"Name":"Wyspa_36","PlayerID":2585846,"Points":2274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38569","ServerKey":"pl181","X":509,"Y":688},{"Bonus":2,"Continent":"K33","ID":38570,"Name":"*028*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38570","ServerKey":"pl181","X":347,"Y":390},{"Bonus":0,"Continent":"K43","ID":38571,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":2880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38571","ServerKey":"pl181","X":328,"Y":409},{"Bonus":0,"Continent":"K65","ID":38572,"Name":"Wyspa_35","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38572","ServerKey":"pl181","X":509,"Y":694},{"Bonus":0,"Continent":"K64","ID":38573,"Name":"0.11 Szale?","PlayerID":699725436,"Points":8120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38573","ServerKey":"pl181","X":468,"Y":692},{"Bonus":0,"Continent":"K53","ID":38575,"Name":"054.","PlayerID":3475079,"Points":2791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38575","ServerKey":"pl181","X":324,"Y":578},{"Bonus":4,"Continent":"K35","ID":38576,"Name":"Wioska 03","PlayerID":849067192,"Points":8085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38576","ServerKey":"pl181","X":567,"Y":316},{"Bonus":0,"Continent":"K56","ID":38577,"Name":"xxx","PlayerID":699316421,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38577","ServerKey":"pl181","X":689,"Y":537},{"Bonus":0,"Continent":"K33","ID":38578,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38578","ServerKey":"pl181","X":335,"Y":395},{"Bonus":0,"Continent":"K53","ID":38579,"Name":"Mordor 2","PlayerID":698388578,"Points":8063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38579","ServerKey":"pl181","X":314,"Y":543},{"Bonus":0,"Continent":"K64","ID":38580,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38580","ServerKey":"pl181","X":443,"Y":686},{"Bonus":0,"Continent":"K43","ID":38581,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38581","ServerKey":"pl181","X":330,"Y":409},{"Bonus":0,"Continent":"K34","ID":38582,"Name":"#0280 Don Noobas","PlayerID":1238300,"Points":6227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38582","ServerKey":"pl181","X":475,"Y":309},{"Bonus":0,"Continent":"K33","ID":38583,"Name":"010","PlayerID":848945529,"Points":3042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38583","ServerKey":"pl181","X":343,"Y":387},{"Bonus":0,"Continent":"K46","ID":38584,"Name":"OrzeƂ 1","PlayerID":699413581,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38584","ServerKey":"pl181","X":692,"Y":489},{"Bonus":0,"Continent":"K66","ID":38585,"Name":"Wioska 074","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38585","ServerKey":"pl181","X":663,"Y":603},{"Bonus":0,"Continent":"K56","ID":38586,"Name":"TWIERDZA .:093:.","PlayerID":7154207,"Points":8785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38586","ServerKey":"pl181","X":680,"Y":573},{"Bonus":0,"Continent":"K65","ID":38587,"Name":"Wyspa_03","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38587","ServerKey":"pl181","X":507,"Y":689},{"Bonus":0,"Continent":"K46","ID":38588,"Name":"001. ƚrĂłdmieƛcie","PlayerID":7494497,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38588","ServerKey":"pl181","X":691,"Y":481},{"Bonus":0,"Continent":"K34","ID":38589,"Name":"[0086]","PlayerID":8630972,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38589","ServerKey":"pl181","X":442,"Y":317},{"Bonus":0,"Continent":"K43","ID":38590,"Name":"z181_08","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38590","ServerKey":"pl181","X":311,"Y":443},{"Bonus":0,"Continent":"K56","ID":38592,"Name":"ZWM","PlayerID":848932879,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38592","ServerKey":"pl181","X":685,"Y":547},{"Bonus":0,"Continent":"K35","ID":38593,"Name":"Wioska Lady evee.","PlayerID":849086074,"Points":4440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38593","ServerKey":"pl181","X":588,"Y":330},{"Bonus":0,"Continent":"K43","ID":38594,"Name":"~ CZYĆ»KÓWKO ~","PlayerID":698540331,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38594","ServerKey":"pl181","X":321,"Y":445},{"Bonus":0,"Continent":"K34","ID":38595,"Name":"@10@","PlayerID":699483429,"Points":5261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38595","ServerKey":"pl181","X":406,"Y":329},{"Bonus":0,"Continent":"K46","ID":38596,"Name":"I073","PlayerID":699722599,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38596","ServerKey":"pl181","X":690,"Y":467},{"Bonus":9,"Continent":"K56","ID":38597,"Name":"Gryfios 0010","PlayerID":698666810,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38597","ServerKey":"pl181","X":686,"Y":556},{"Bonus":0,"Continent":"K46","ID":38598,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38598","ServerKey":"pl181","X":695,"Y":498},{"Bonus":0,"Continent":"K46","ID":38599,"Name":"[061] Wioska barbarzyƄska","PlayerID":849095068,"Points":6157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38599","ServerKey":"pl181","X":681,"Y":424},{"Bonus":0,"Continent":"K34","ID":38600,"Name":"050.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38600","ServerKey":"pl181","X":446,"Y":320},{"Bonus":0,"Continent":"K66","ID":38601,"Name":"skiba","PlayerID":848909464,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38601","ServerKey":"pl181","X":611,"Y":661},{"Bonus":2,"Continent":"K46","ID":38602,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38602","ServerKey":"pl181","X":696,"Y":499},{"Bonus":0,"Continent":"K56","ID":38603,"Name":"$MemphisGrizzlies","PlayerID":699795378,"Points":7243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38603","ServerKey":"pl181","X":692,"Y":508},{"Bonus":0,"Continent":"K66","ID":38604,"Name":"096. Donar","PlayerID":8337151,"Points":6975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38604","ServerKey":"pl181","X":650,"Y":623},{"Bonus":7,"Continent":"K43","ID":38605,"Name":"Dream on","PlayerID":698962117,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38605","ServerKey":"pl181","X":305,"Y":482},{"Bonus":0,"Continent":"K46","ID":38606,"Name":"Jan koƂo NEW 2 Ost","PlayerID":879782,"Points":7661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38606","ServerKey":"pl181","X":689,"Y":456},{"Bonus":0,"Continent":"K66","ID":38607,"Name":"092. Wąskie gĂłry","PlayerID":8337151,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38607","ServerKey":"pl181","X":651,"Y":622},{"Bonus":0,"Continent":"K66","ID":38608,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38608","ServerKey":"pl181","X":649,"Y":626},{"Bonus":0,"Continent":"K53","ID":38609,"Name":"C0106","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38609","ServerKey":"pl181","X":311,"Y":530},{"Bonus":0,"Continent":"K66","ID":38610,"Name":"## Nieznana ##","PlayerID":699778867,"Points":8815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38610","ServerKey":"pl181","X":635,"Y":604},{"Bonus":0,"Continent":"K35","ID":38611,"Name":"B.03 duchy serca puszczy","PlayerID":849026145,"Points":4847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38611","ServerKey":"pl181","X":553,"Y":315},{"Bonus":0,"Continent":"K65","ID":38612,"Name":"134 invidia","PlayerID":849093426,"Points":6028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38612","ServerKey":"pl181","X":531,"Y":688},{"Bonus":0,"Continent":"K46","ID":38613,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38613","ServerKey":"pl181","X":665,"Y":403},{"Bonus":0,"Continent":"K53","ID":38614,"Name":"053.","PlayerID":3475079,"Points":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38614","ServerKey":"pl181","X":325,"Y":588},{"Bonus":0,"Continent":"K35","ID":38615,"Name":"WoƂf","PlayerID":8400180,"Points":5075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38615","ServerKey":"pl181","X":513,"Y":309},{"Bonus":0,"Continent":"K35","ID":38616,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":3151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38616","ServerKey":"pl181","X":533,"Y":309},{"Bonus":0,"Continent":"K65","ID":38617,"Name":"Wioska Wiki 3","PlayerID":849100354,"Points":11153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38617","ServerKey":"pl181","X":519,"Y":695},{"Bonus":0,"Continent":"K56","ID":38618,"Name":"Mechnice","PlayerID":848932879,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38618","ServerKey":"pl181","X":692,"Y":542},{"Bonus":0,"Continent":"K34","ID":38619,"Name":"015.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38619","ServerKey":"pl181","X":447,"Y":313},{"Bonus":0,"Continent":"K56","ID":38620,"Name":"Gryfios 026","PlayerID":698666810,"Points":11877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38620","ServerKey":"pl181","X":690,"Y":554},{"Bonus":0,"Continent":"K36","ID":38621,"Name":"okplls","PlayerID":1086351,"Points":5163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38621","ServerKey":"pl181","X":664,"Y":395},{"Bonus":0,"Continent":"K66","ID":38622,"Name":"Wioska 2","PlayerID":1647052,"Points":8363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38622","ServerKey":"pl181","X":644,"Y":630},{"Bonus":0,"Continent":"K56","ID":38623,"Name":"071 donkretos3","PlayerID":2135129,"Points":7464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38623","ServerKey":"pl181","X":688,"Y":516},{"Bonus":0,"Continent":"K35","ID":38624,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":6998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38624","ServerKey":"pl181","X":559,"Y":316},{"Bonus":0,"Continent":"K65","ID":38625,"Name":"2.Majorka","PlayerID":698215322,"Points":6289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38625","ServerKey":"pl181","X":574,"Y":680},{"Bonus":0,"Continent":"K36","ID":38626,"Name":"Taran 039","PlayerID":699098531,"Points":3614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38626","ServerKey":"pl181","X":645,"Y":379},{"Bonus":0,"Continent":"K64","ID":38627,"Name":"psycha sitting","PlayerID":699736927,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38627","ServerKey":"pl181","X":410,"Y":667},{"Bonus":0,"Continent":"K43","ID":38628,"Name":"Shh","PlayerID":393668,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38628","ServerKey":"pl181","X":315,"Y":439},{"Bonus":0,"Continent":"K63","ID":38629,"Name":"--13--","PlayerID":8877156,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38629","ServerKey":"pl181","X":339,"Y":605},{"Bonus":2,"Continent":"K33","ID":38630,"Name":"*070*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38630","ServerKey":"pl181","X":341,"Y":398},{"Bonus":0,"Continent":"K46","ID":38631,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38631","ServerKey":"pl181","X":696,"Y":498},{"Bonus":0,"Continent":"K33","ID":38632,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38632","ServerKey":"pl181","X":388,"Y":343},{"Bonus":0,"Continent":"K53","ID":38633,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38633","ServerKey":"pl181","X":307,"Y":509},{"Bonus":0,"Continent":"K43","ID":38635,"Name":"Out of Touch","PlayerID":698962117,"Points":8746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38635","ServerKey":"pl181","X":324,"Y":427},{"Bonus":0,"Continent":"K63","ID":38636,"Name":"Deveste ufam Tobie","PlayerID":699783765,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38636","ServerKey":"pl181","X":395,"Y":639},{"Bonus":0,"Continent":"K66","ID":38637,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38637","ServerKey":"pl181","X":658,"Y":609},{"Bonus":0,"Continent":"K35","ID":38638,"Name":"Wielki 2","PlayerID":849050849,"Points":7878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38638","ServerKey":"pl181","X":500,"Y":305},{"Bonus":0,"Continent":"K33","ID":38639,"Name":"Ć»eraƄ","PlayerID":849099434,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38639","ServerKey":"pl181","X":368,"Y":359},{"Bonus":0,"Continent":"K63","ID":38640,"Name":"-001-","PlayerID":849096354,"Points":5789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38640","ServerKey":"pl181","X":372,"Y":639},{"Bonus":0,"Continent":"K66","ID":38641,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38641","ServerKey":"pl181","X":665,"Y":605},{"Bonus":0,"Continent":"K46","ID":38642,"Name":"Jan xX3 ost K","PlayerID":879782,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38642","ServerKey":"pl181","X":687,"Y":441},{"Bonus":0,"Continent":"K46","ID":38644,"Name":"[039] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38644","ServerKey":"pl181","X":673,"Y":416},{"Bonus":0,"Continent":"K34","ID":38645,"Name":"[0057]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38645","ServerKey":"pl181","X":447,"Y":317},{"Bonus":0,"Continent":"K64","ID":38647,"Name":"0030","PlayerID":699280514,"Points":3949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38647","ServerKey":"pl181","X":489,"Y":693},{"Bonus":3,"Continent":"K35","ID":38648,"Name":"002. Rynsztok","PlayerID":699072129,"Points":10281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38648","ServerKey":"pl181","X":561,"Y":321},{"Bonus":0,"Continent":"K46","ID":38650,"Name":"Gattacka","PlayerID":699298370,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38650","ServerKey":"pl181","X":680,"Y":431},{"Bonus":0,"Continent":"K66","ID":38651,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38651","ServerKey":"pl181","X":637,"Y":631},{"Bonus":0,"Continent":"K43","ID":38652,"Name":"Rubiez5","PlayerID":699265922,"Points":8691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38652","ServerKey":"pl181","X":308,"Y":469},{"Bonus":0,"Continent":"K63","ID":38653,"Name":"A 025","PlayerID":699342219,"Points":5226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38653","ServerKey":"pl181","X":365,"Y":630},{"Bonus":0,"Continent":"K36","ID":38654,"Name":"XDX","PlayerID":699098531,"Points":6077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38654","ServerKey":"pl181","X":613,"Y":343},{"Bonus":0,"Continent":"K63","ID":38655,"Name":".16. Tillmar e","PlayerID":272173,"Points":8561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38655","ServerKey":"pl181","X":351,"Y":623},{"Bonus":0,"Continent":"K36","ID":38656,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":8096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38656","ServerKey":"pl181","X":655,"Y":390},{"Bonus":0,"Continent":"K66","ID":38657,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38657","ServerKey":"pl181","X":650,"Y":624},{"Bonus":0,"Continent":"K33","ID":38658,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":5354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38658","ServerKey":"pl181","X":374,"Y":350},{"Bonus":0,"Continent":"K65","ID":38659,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38659","ServerKey":"pl181","X":599,"Y":662},{"Bonus":0,"Continent":"K46","ID":38660,"Name":"007. OchotA","PlayerID":7494497,"Points":9508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38660","ServerKey":"pl181","X":690,"Y":482},{"Bonus":0,"Continent":"K36","ID":38661,"Name":"Moldor 001","PlayerID":849049045,"Points":11215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38661","ServerKey":"pl181","X":632,"Y":354},{"Bonus":0,"Continent":"K66","ID":38662,"Name":"~~057~~","PlayerID":7829201,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38662","ServerKey":"pl181","X":631,"Y":642},{"Bonus":0,"Continent":"K34","ID":38663,"Name":"[0032]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38663","ServerKey":"pl181","X":432,"Y":316},{"Bonus":0,"Continent":"K66","ID":38664,"Name":"#083#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38664","ServerKey":"pl181","X":632,"Y":648},{"Bonus":0,"Continent":"K35","ID":38665,"Name":"070- Mroczna Osada","PlayerID":849035905,"Points":8094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38665","ServerKey":"pl181","X":596,"Y":337},{"Bonus":0,"Continent":"K34","ID":38667,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38667","ServerKey":"pl181","X":427,"Y":321},{"Bonus":0,"Continent":"K34","ID":38668,"Name":"nowa 4","PlayerID":849104546,"Points":4328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38668","ServerKey":"pl181","X":468,"Y":311},{"Bonus":0,"Continent":"K64","ID":38669,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38669","ServerKey":"pl181","X":470,"Y":690},{"Bonus":0,"Continent":"K65","ID":38670,"Name":"- 178 - SS","PlayerID":849018239,"Points":10033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38670","ServerKey":"pl181","X":533,"Y":689},{"Bonus":3,"Continent":"K66","ID":38671,"Name":"Zaleszczyki 001","PlayerID":33900,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38671","ServerKey":"pl181","X":619,"Y":648},{"Bonus":0,"Continent":"K63","ID":38672,"Name":"-001-","PlayerID":849096354,"Points":5657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38672","ServerKey":"pl181","X":374,"Y":639},{"Bonus":0,"Continent":"K65","ID":38673,"Name":"Forteca*002*","PlayerID":1078121,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38673","ServerKey":"pl181","X":534,"Y":693},{"Bonus":0,"Continent":"K56","ID":38674,"Name":"Ciepielowice","PlayerID":848932879,"Points":10429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38674","ServerKey":"pl181","X":688,"Y":533},{"Bonus":0,"Continent":"K65","ID":38675,"Name":"###052###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38675","ServerKey":"pl181","X":586,"Y":677},{"Bonus":0,"Continent":"K46","ID":38676,"Name":"[049] Wioska barbarzyƄska","PlayerID":849095068,"Points":7815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38676","ServerKey":"pl181","X":677,"Y":422},{"Bonus":0,"Continent":"K46","ID":38677,"Name":"Florencja","PlayerID":2392791,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38677","ServerKey":"pl181","X":686,"Y":488},{"Bonus":0,"Continent":"K65","ID":38678,"Name":"- 138 - SS","PlayerID":849018239,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38678","ServerKey":"pl181","X":537,"Y":692},{"Bonus":0,"Continent":"K35","ID":38679,"Name":"007. Andziejek","PlayerID":699072129,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38679","ServerKey":"pl181","X":562,"Y":320},{"Bonus":0,"Continent":"K53","ID":38680,"Name":"Wioska barbarzyƄska","PlayerID":699510045,"Points":2545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38680","ServerKey":"pl181","X":307,"Y":508},{"Bonus":0,"Continent":"K35","ID":38681,"Name":"Chocznia","PlayerID":7139853,"Points":6390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38681","ServerKey":"pl181","X":541,"Y":307},{"Bonus":0,"Continent":"K53","ID":38682,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":2764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38682","ServerKey":"pl181","X":318,"Y":584},{"Bonus":0,"Continent":"K53","ID":38683,"Name":"C0146","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38683","ServerKey":"pl181","X":313,"Y":536},{"Bonus":0,"Continent":"K65","ID":38685,"Name":"Wioska barbarzyƄska","PlayerID":745946,"Points":6482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38685","ServerKey":"pl181","X":520,"Y":687},{"Bonus":0,"Continent":"K65","ID":38686,"Name":"Mako Reactor 1 - B2F","PlayerID":8199417,"Points":5179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38686","ServerKey":"pl181","X":546,"Y":620},{"Bonus":0,"Continent":"K33","ID":38687,"Name":"Mefedron 12","PlayerID":3484132,"Points":3471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38687","ServerKey":"pl181","X":395,"Y":339},{"Bonus":0,"Continent":"K56","ID":38688,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38688","ServerKey":"pl181","X":689,"Y":547},{"Bonus":0,"Continent":"K65","ID":38689,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38689","ServerKey":"pl181","X":570,"Y":679},{"Bonus":0,"Continent":"K33","ID":38690,"Name":"Mefedron 10","PlayerID":3484132,"Points":3879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38690","ServerKey":"pl181","X":391,"Y":337},{"Bonus":6,"Continent":"K65","ID":38691,"Name":"Darma dla zawodnika","PlayerID":7860453,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38691","ServerKey":"pl181","X":555,"Y":689},{"Bonus":0,"Continent":"K36","ID":38692,"Name":"!36 63 Parhauti","PlayerID":698361257,"Points":8309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38692","ServerKey":"pl181","X":633,"Y":363},{"Bonus":0,"Continent":"K36","ID":38693,"Name":"wioska","PlayerID":8675636,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38693","ServerKey":"pl181","X":620,"Y":350},{"Bonus":0,"Continent":"K33","ID":38695,"Name":"*118*","PlayerID":699273451,"Points":9211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38695","ServerKey":"pl181","X":363,"Y":364},{"Bonus":0,"Continent":"K45","ID":38696,"Name":"092 Litwa","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38696","ServerKey":"pl181","X":576,"Y":464},{"Bonus":0,"Continent":"K66","ID":38697,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38697","ServerKey":"pl181","X":641,"Y":630},{"Bonus":0,"Continent":"K66","ID":38698,"Name":"Wioska barbarzyƄska","PlayerID":698346318,"Points":6663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38698","ServerKey":"pl181","X":629,"Y":646},{"Bonus":0,"Continent":"K35","ID":38699,"Name":"Le Coq","PlayerID":699072129,"Points":5799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38699","ServerKey":"pl181","X":560,"Y":315},{"Bonus":0,"Continent":"K34","ID":38700,"Name":"#0232 Kamileq69 dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38700","ServerKey":"pl181","X":475,"Y":306},{"Bonus":0,"Continent":"K46","ID":38702,"Name":"B#010","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38702","ServerKey":"pl181","X":691,"Y":458},{"Bonus":0,"Continent":"K63","ID":38703,"Name":"--14--","PlayerID":8877156,"Points":7370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38703","ServerKey":"pl181","X":345,"Y":607},{"Bonus":0,"Continent":"K46","ID":38704,"Name":"I106","PlayerID":699722599,"Points":6943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38704","ServerKey":"pl181","X":688,"Y":446},{"Bonus":0,"Continent":"K36","ID":38705,"Name":"*3603*a Tu jest przyszƂoƛć","PlayerID":7973893,"Points":10180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38705","ServerKey":"pl181","X":658,"Y":398},{"Bonus":0,"Continent":"K53","ID":38706,"Name":"-005-","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38706","ServerKey":"pl181","X":321,"Y":574},{"Bonus":0,"Continent":"K64","ID":38707,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38707","ServerKey":"pl181","X":409,"Y":674},{"Bonus":0,"Continent":"K65","ID":38708,"Name":"006 3 dni?","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38708","ServerKey":"pl181","X":524,"Y":692},{"Bonus":0,"Continent":"K35","ID":38709,"Name":"3.Pineapple Express","PlayerID":699208929,"Points":4380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38709","ServerKey":"pl181","X":522,"Y":304},{"Bonus":0,"Continent":"K63","ID":38710,"Name":"A 102","PlayerID":699269923,"Points":7619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38710","ServerKey":"pl181","X":368,"Y":639},{"Bonus":0,"Continent":"K65","ID":38711,"Name":"Bulbulator","PlayerID":699567608,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38711","ServerKey":"pl181","X":587,"Y":674},{"Bonus":0,"Continent":"K33","ID":38712,"Name":"*088*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38712","ServerKey":"pl181","X":361,"Y":371},{"Bonus":0,"Continent":"K43","ID":38713,"Name":"Rubiez3","PlayerID":699265922,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38713","ServerKey":"pl181","X":309,"Y":469},{"Bonus":0,"Continent":"K33","ID":38714,"Name":"HULA","PlayerID":8123790,"Points":1583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38714","ServerKey":"pl181","X":399,"Y":339},{"Bonus":0,"Continent":"K63","ID":38715,"Name":"Obok sąsiada 3","PlayerID":699269923,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38715","ServerKey":"pl181","X":383,"Y":648},{"Bonus":0,"Continent":"K53","ID":38716,"Name":"045g","PlayerID":698641566,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38716","ServerKey":"pl181","X":314,"Y":557},{"Bonus":0,"Continent":"K33","ID":38718,"Name":"Wow21","PlayerID":698160606,"Points":3026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38718","ServerKey":"pl181","X":369,"Y":355},{"Bonus":0,"Continent":"K43","ID":38719,"Name":"Rubiez10","PlayerID":699265922,"Points":8060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38719","ServerKey":"pl181","X":309,"Y":470},{"Bonus":0,"Continent":"K65","ID":38720,"Name":"#0088","PlayerID":1536231,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38720","ServerKey":"pl181","X":562,"Y":681},{"Bonus":0,"Continent":"K64","ID":38721,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38721","ServerKey":"pl181","X":401,"Y":666},{"Bonus":0,"Continent":"K64","ID":38722,"Name":"FP008","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38722","ServerKey":"pl181","X":488,"Y":696},{"Bonus":0,"Continent":"K46","ID":38723,"Name":"15. Rio","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38723","ServerKey":"pl181","X":688,"Y":483},{"Bonus":0,"Continent":"K34","ID":38724,"Name":"Winterhome.074","PlayerID":848918380,"Points":6935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38724","ServerKey":"pl181","X":491,"Y":308},{"Bonus":0,"Continent":"K46","ID":38725,"Name":"Gattacka","PlayerID":699298370,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38725","ServerKey":"pl181","X":678,"Y":426},{"Bonus":0,"Continent":"K66","ID":38726,"Name":"#096#","PlayerID":692803,"Points":8544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38726","ServerKey":"pl181","X":626,"Y":641},{"Bonus":0,"Continent":"K63","ID":38727,"Name":"Komornicy 005","PlayerID":699336777,"Points":4935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38727","ServerKey":"pl181","X":348,"Y":619},{"Bonus":0,"Continent":"K65","ID":38728,"Name":"###053###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38728","ServerKey":"pl181","X":581,"Y":679},{"Bonus":0,"Continent":"K34","ID":38729,"Name":"nowa 2","PlayerID":849104546,"Points":7163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38729","ServerKey":"pl181","X":465,"Y":308},{"Bonus":6,"Continent":"K53","ID":38730,"Name":"C0061","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38730","ServerKey":"pl181","X":310,"Y":529},{"Bonus":0,"Continent":"K65","ID":38731,"Name":"###054###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38731","ServerKey":"pl181","X":591,"Y":674},{"Bonus":0,"Continent":"K66","ID":38732,"Name":"Ć»UBR PSYCHIATRYK 023","PlayerID":33900,"Points":6451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38732","ServerKey":"pl181","X":625,"Y":651},{"Bonus":0,"Continent":"K63","ID":38733,"Name":".29. Olanda m","PlayerID":7417116,"Points":3513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38733","ServerKey":"pl181","X":359,"Y":629},{"Bonus":0,"Continent":"K34","ID":38734,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38734","ServerKey":"pl181","X":411,"Y":325},{"Bonus":0,"Continent":"K46","ID":38735,"Name":"010 Hades","PlayerID":849098769,"Points":9027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38735","ServerKey":"pl181","X":693,"Y":462},{"Bonus":0,"Continent":"K65","ID":38736,"Name":"002","PlayerID":699567608,"Points":3771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38736","ServerKey":"pl181","X":588,"Y":674},{"Bonus":0,"Continent":"K33","ID":38737,"Name":"*018*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38737","ServerKey":"pl181","X":347,"Y":389},{"Bonus":0,"Continent":"K36","ID":38738,"Name":"141 Fabianki-Hofek","PlayerID":699491076,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38738","ServerKey":"pl181","X":661,"Y":393},{"Bonus":0,"Continent":"K64","ID":38740,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38740","ServerKey":"pl181","X":441,"Y":681},{"Bonus":0,"Continent":"K56","ID":38741,"Name":"Nicolas Cage","PlayerID":849098693,"Points":7517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38741","ServerKey":"pl181","X":670,"Y":586},{"Bonus":0,"Continent":"K34","ID":38742,"Name":"[0067]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38742","ServerKey":"pl181","X":444,"Y":313},{"Bonus":0,"Continent":"K35","ID":38743,"Name":"K35 - [007] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38743","ServerKey":"pl181","X":575,"Y":319},{"Bonus":0,"Continent":"K63","ID":38744,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38744","ServerKey":"pl181","X":391,"Y":664},{"Bonus":0,"Continent":"K56","ID":38745,"Name":"Didek","PlayerID":849070946,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38745","ServerKey":"pl181","X":666,"Y":589},{"Bonus":0,"Continent":"K64","ID":38746,"Name":"New World","PlayerID":698152377,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38746","ServerKey":"pl181","X":447,"Y":684},{"Bonus":0,"Continent":"K46","ID":38747,"Name":"Gattacka","PlayerID":699298370,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38747","ServerKey":"pl181","X":680,"Y":427},{"Bonus":0,"Continent":"K43","ID":38748,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":4187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38748","ServerKey":"pl181","X":332,"Y":415},{"Bonus":0,"Continent":"K34","ID":38749,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38749","ServerKey":"pl181","X":420,"Y":320},{"Bonus":0,"Continent":"K66","ID":38750,"Name":"008","PlayerID":849099544,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38750","ServerKey":"pl181","X":636,"Y":636},{"Bonus":0,"Continent":"K64","ID":38751,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38751","ServerKey":"pl181","X":408,"Y":669},{"Bonus":0,"Continent":"K56","ID":38752,"Name":"066. Vroengard","PlayerID":8337151,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38752","ServerKey":"pl181","X":667,"Y":589},{"Bonus":0,"Continent":"K43","ID":38753,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":5086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38753","ServerKey":"pl181","X":311,"Y":448},{"Bonus":9,"Continent":"K56","ID":38754,"Name":"Chata Hermana","PlayerID":848932879,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38754","ServerKey":"pl181","X":685,"Y":555},{"Bonus":0,"Continent":"K34","ID":38755,"Name":"Winterhome.043","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38755","ServerKey":"pl181","X":495,"Y":309},{"Bonus":0,"Continent":"K33","ID":38756,"Name":"*040*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38756","ServerKey":"pl181","X":345,"Y":393},{"Bonus":0,"Continent":"K34","ID":38757,"Name":"@02@","PlayerID":699483429,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38757","ServerKey":"pl181","X":408,"Y":324},{"Bonus":0,"Continent":"K36","ID":38758,"Name":"Midgard","PlayerID":699478692,"Points":3925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38758","ServerKey":"pl181","X":616,"Y":352},{"Bonus":0,"Continent":"K53","ID":38759,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38759","ServerKey":"pl181","X":334,"Y":593},{"Bonus":0,"Continent":"K46","ID":38760,"Name":"Domi","PlayerID":849002796,"Points":8980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38760","ServerKey":"pl181","X":698,"Y":476},{"Bonus":0,"Continent":"K63","ID":38761,"Name":"Obok sąsiada 4","PlayerID":699269923,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38761","ServerKey":"pl181","X":382,"Y":648},{"Bonus":0,"Continent":"K34","ID":38762,"Name":"#0050 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38762","ServerKey":"pl181","X":470,"Y":330},{"Bonus":0,"Continent":"K65","ID":38763,"Name":"2.GijĂłn","PlayerID":698215322,"Points":4708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38763","ServerKey":"pl181","X":573,"Y":677},{"Bonus":0,"Continent":"K53","ID":38764,"Name":"C0054","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38764","ServerKey":"pl181","X":313,"Y":520},{"Bonus":0,"Continent":"K33","ID":38765,"Name":"C03 PoznaƄ","PlayerID":3909522,"Points":6400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38765","ServerKey":"pl181","X":346,"Y":380},{"Bonus":0,"Continent":"K65","ID":38766,"Name":"011 tak o","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38766","ServerKey":"pl181","X":510,"Y":691},{"Bonus":0,"Continent":"K35","ID":38767,"Name":"AAA","PlayerID":1006847,"Points":6246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38767","ServerKey":"pl181","X":543,"Y":308},{"Bonus":0,"Continent":"K34","ID":38768,"Name":"#0243 Kamileq69 dar","PlayerID":1238300,"Points":6995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38768","ServerKey":"pl181","X":476,"Y":311},{"Bonus":0,"Continent":"K33","ID":38769,"Name":"021","PlayerID":8153941,"Points":7394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38769","ServerKey":"pl181","X":397,"Y":335},{"Bonus":0,"Continent":"K35","ID":38770,"Name":"Plelinia wracaj","PlayerID":8400180,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38770","ServerKey":"pl181","X":512,"Y":312},{"Bonus":0,"Continent":"K56","ID":38771,"Name":"WƂadcy PóƂnocy 13","PlayerID":699379895,"Points":5951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38771","ServerKey":"pl181","X":691,"Y":509},{"Bonus":0,"Continent":"K56","ID":38773,"Name":"Didus P","PlayerID":849070946,"Points":5652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38773","ServerKey":"pl181","X":674,"Y":575},{"Bonus":0,"Continent":"K34","ID":38774,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":7124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38774","ServerKey":"pl181","X":401,"Y":336},{"Bonus":0,"Continent":"K56","ID":38775,"Name":"C 002","PlayerID":8078914,"Points":7097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38775","ServerKey":"pl181","X":688,"Y":518},{"Bonus":0,"Continent":"K65","ID":38776,"Name":"0258","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38776","ServerKey":"pl181","X":552,"Y":678},{"Bonus":0,"Continent":"K66","ID":38777,"Name":"D012","PlayerID":9023703,"Points":8038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38777","ServerKey":"pl181","X":613,"Y":658},{"Bonus":0,"Continent":"K56","ID":38778,"Name":"Kędzierzyn KoĆșle","PlayerID":848932879,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38778","ServerKey":"pl181","X":685,"Y":552},{"Bonus":0,"Continent":"K66","ID":38779,"Name":"#182#","PlayerID":692803,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38779","ServerKey":"pl181","X":650,"Y":619},{"Bonus":0,"Continent":"K35","ID":38780,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":10029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38780","ServerKey":"pl181","X":502,"Y":307},{"Bonus":0,"Continent":"K53","ID":38781,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38781","ServerKey":"pl181","X":317,"Y":573},{"Bonus":0,"Continent":"K64","ID":38782,"Name":"009 Desant","PlayerID":699745265,"Points":9097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38782","ServerKey":"pl181","X":482,"Y":687},{"Bonus":0,"Continent":"K63","ID":38783,"Name":"-Yy-","PlayerID":7183372,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38783","ServerKey":"pl181","X":346,"Y":605},{"Bonus":0,"Continent":"K56","ID":38784,"Name":"Wioska Zorro 025","PlayerID":849080702,"Points":5597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38784","ServerKey":"pl181","X":672,"Y":595},{"Bonus":0,"Continent":"K56","ID":38785,"Name":"Gryfios 028","PlayerID":698666810,"Points":11720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38785","ServerKey":"pl181","X":688,"Y":558},{"Bonus":0,"Continent":"K56","ID":38786,"Name":"WƂadcy PóƂnocy 14","PlayerID":699379895,"Points":5119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38786","ServerKey":"pl181","X":691,"Y":529},{"Bonus":0,"Continent":"K56","ID":38788,"Name":"065. Tudosten","PlayerID":8337151,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38788","ServerKey":"pl181","X":667,"Y":590},{"Bonus":0,"Continent":"K34","ID":38789,"Name":"0152","PlayerID":699431255,"Points":8770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38789","ServerKey":"pl181","X":405,"Y":338},{"Bonus":0,"Continent":"K66","ID":38790,"Name":"016 NAWRA","PlayerID":849048867,"Points":8405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38790","ServerKey":"pl181","X":659,"Y":610},{"Bonus":0,"Continent":"K46","ID":38791,"Name":"Ɓucznik na koniu","PlayerID":849093742,"Points":6441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38791","ServerKey":"pl181","X":682,"Y":439},{"Bonus":0,"Continent":"K64","ID":38792,"Name":"018Sylwek","PlayerID":698620694,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38792","ServerKey":"pl181","X":471,"Y":694},{"Bonus":0,"Continent":"K66","ID":38793,"Name":"#091#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38793","ServerKey":"pl181","X":638,"Y":628},{"Bonus":0,"Continent":"K65","ID":38794,"Name":"Wyspa_13","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38794","ServerKey":"pl181","X":502,"Y":692},{"Bonus":0,"Continent":"K35","ID":38795,"Name":"Pitus","PlayerID":849050849,"Points":9422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38795","ServerKey":"pl181","X":501,"Y":304},{"Bonus":0,"Continent":"K64","ID":38796,"Name":"001","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38796","ServerKey":"pl181","X":474,"Y":690},{"Bonus":0,"Continent":"K64","ID":38797,"Name":"031 Metinna","PlayerID":699834004,"Points":4757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38797","ServerKey":"pl181","X":475,"Y":690},{"Bonus":0,"Continent":"K43","ID":38798,"Name":"Dream on","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38798","ServerKey":"pl181","X":307,"Y":488},{"Bonus":0,"Continent":"K45","ID":38799,"Name":"B012","PlayerID":699761749,"Points":5316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38799","ServerKey":"pl181","X":596,"Y":405},{"Bonus":0,"Continent":"K33","ID":38800,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":8856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38800","ServerKey":"pl181","X":341,"Y":393},{"Bonus":0,"Continent":"K53","ID":38802,"Name":"Taran","PlayerID":6180190,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38802","ServerKey":"pl181","X":338,"Y":599},{"Bonus":0,"Continent":"K36","ID":38803,"Name":"085","PlayerID":2502956,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38803","ServerKey":"pl181","X":641,"Y":373},{"Bonus":0,"Continent":"K33","ID":38805,"Name":"z 001030","PlayerID":3909522,"Points":6442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38805","ServerKey":"pl181","X":359,"Y":367},{"Bonus":0,"Continent":"K43","ID":38806,"Name":"Indowy grĂłd","PlayerID":699377401,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38806","ServerKey":"pl181","X":324,"Y":415},{"Bonus":0,"Continent":"K53","ID":38807,"Name":"C0188","PlayerID":8841266,"Points":7571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38807","ServerKey":"pl181","X":308,"Y":538},{"Bonus":5,"Continent":"K34","ID":38808,"Name":"025","PlayerID":2502956,"Points":9940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38808","ServerKey":"pl181","X":448,"Y":312},{"Bonus":0,"Continent":"K63","ID":38809,"Name":"Pd 06","PlayerID":698908184,"Points":5526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38809","ServerKey":"pl181","X":360,"Y":633},{"Bonus":0,"Continent":"K65","ID":38810,"Name":"Wioska barbarzyƄska","PlayerID":7860453,"Points":6228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38810","ServerKey":"pl181","X":542,"Y":690},{"Bonus":0,"Continent":"K36","ID":38811,"Name":"Moldor 2","PlayerID":849049045,"Points":11138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38811","ServerKey":"pl181","X":630,"Y":355},{"Bonus":0,"Continent":"K36","ID":38812,"Name":"=|20|=","PlayerID":9101574,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38812","ServerKey":"pl181","X":615,"Y":350},{"Bonus":7,"Continent":"K63","ID":38813,"Name":"Osada koczownikĂłw","PlayerID":699269923,"Points":9470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38813","ServerKey":"pl181","X":389,"Y":662},{"Bonus":0,"Continent":"K53","ID":38814,"Name":"063.","PlayerID":3475079,"Points":2996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38814","ServerKey":"pl181","X":327,"Y":587},{"Bonus":9,"Continent":"K64","ID":38815,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38815","ServerKey":"pl181","X":406,"Y":673},{"Bonus":0,"Continent":"K46","ID":38816,"Name":"061","PlayerID":849095227,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38816","ServerKey":"pl181","X":614,"Y":483},{"Bonus":0,"Continent":"K36","ID":38817,"Name":"1009","PlayerID":699150527,"Points":5588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38817","ServerKey":"pl181","X":622,"Y":356},{"Bonus":0,"Continent":"K64","ID":38818,"Name":"013 Isengard","PlayerID":698620694,"Points":4741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38818","ServerKey":"pl181","X":470,"Y":693},{"Bonus":0,"Continent":"K43","ID":38819,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38819","ServerKey":"pl181","X":311,"Y":471},{"Bonus":0,"Continent":"K66","ID":38820,"Name":"#085#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38820","ServerKey":"pl181","X":634,"Y":642},{"Bonus":0,"Continent":"K66","ID":38821,"Name":"Swoja4","PlayerID":6528152,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38821","ServerKey":"pl181","X":603,"Y":665},{"Bonus":0,"Continent":"K36","ID":38822,"Name":"[001] Uszanowanko","PlayerID":699710633,"Points":9147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38822","ServerKey":"pl181","X":609,"Y":337},{"Bonus":0,"Continent":"K43","ID":38823,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38823","ServerKey":"pl181","X":329,"Y":452},{"Bonus":0,"Continent":"K43","ID":38824,"Name":"z181_04","PlayerID":393668,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38824","ServerKey":"pl181","X":314,"Y":442},{"Bonus":0,"Continent":"K35","ID":38825,"Name":"CSA","PlayerID":1006847,"Points":5888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38825","ServerKey":"pl181","X":526,"Y":310},{"Bonus":0,"Continent":"K65","ID":38826,"Name":"- 141 - SS","PlayerID":849018239,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38826","ServerKey":"pl181","X":544,"Y":688},{"Bonus":0,"Continent":"K56","ID":38827,"Name":"088","PlayerID":699373599,"Points":4094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38827","ServerKey":"pl181","X":682,"Y":577},{"Bonus":0,"Continent":"K64","ID":38828,"Name":"|066| BlackBird","PlayerID":699393742,"Points":10123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38828","ServerKey":"pl181","X":492,"Y":688},{"Bonus":0,"Continent":"K56","ID":38829,"Name":"Koszyka","PlayerID":848932879,"Points":6884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38829","ServerKey":"pl181","X":685,"Y":551},{"Bonus":0,"Continent":"K65","ID":38830,"Name":"2.Teneryfa","PlayerID":698215322,"Points":5002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38830","ServerKey":"pl181","X":573,"Y":673},{"Bonus":0,"Continent":"K65","ID":38831,"Name":"038 invidia","PlayerID":849093426,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38831","ServerKey":"pl181","X":520,"Y":693},{"Bonus":0,"Continent":"K33","ID":38832,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38832","ServerKey":"pl181","X":334,"Y":396},{"Bonus":0,"Continent":"K54","ID":38833,"Name":"004","PlayerID":848886870,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38833","ServerKey":"pl181","X":465,"Y":576},{"Bonus":0,"Continent":"K64","ID":38834,"Name":"New World","PlayerID":698152377,"Points":8735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38834","ServerKey":"pl181","X":442,"Y":682},{"Bonus":0,"Continent":"K36","ID":38835,"Name":"003.","PlayerID":699098531,"Points":10630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38835","ServerKey":"pl181","X":639,"Y":371},{"Bonus":0,"Continent":"K56","ID":38836,"Name":"037 - Burgos","PlayerID":698342159,"Points":4510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38836","ServerKey":"pl181","X":690,"Y":545},{"Bonus":0,"Continent":"K46","ID":38837,"Name":"Chojny","PlayerID":849100246,"Points":2463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38837","ServerKey":"pl181","X":693,"Y":470},{"Bonus":0,"Continent":"K56","ID":38838,"Name":"C 020","PlayerID":8078914,"Points":6562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38838","ServerKey":"pl181","X":692,"Y":512},{"Bonus":0,"Continent":"K64","ID":38839,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38839","ServerKey":"pl181","X":429,"Y":683},{"Bonus":0,"Continent":"K53","ID":38840,"Name":"Devano3","PlayerID":7183372,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38840","ServerKey":"pl181","X":335,"Y":591},{"Bonus":0,"Continent":"K56","ID":38841,"Name":"TWIERDZA .:067:.","PlayerID":7154207,"Points":9078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38841","ServerKey":"pl181","X":677,"Y":568},{"Bonus":0,"Continent":"K66","ID":38842,"Name":"051","PlayerID":699099811,"Points":4437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38842","ServerKey":"pl181","X":644,"Y":634},{"Bonus":5,"Continent":"K66","ID":38843,"Name":"041","PlayerID":699099811,"Points":7308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38843","ServerKey":"pl181","X":652,"Y":623},{"Bonus":0,"Continent":"K53","ID":38844,"Name":"Chekku - meito","PlayerID":9280477,"Points":7347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38844","ServerKey":"pl181","X":332,"Y":533},{"Bonus":0,"Continent":"K66","ID":38845,"Name":"Ć»UBR .::.Adaczu/11","PlayerID":33900,"Points":4046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38845","ServerKey":"pl181","X":627,"Y":650},{"Bonus":0,"Continent":"K35","ID":38846,"Name":"K35 - [008] Before Land","PlayerID":699088769,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38846","ServerKey":"pl181","X":575,"Y":320},{"Bonus":5,"Continent":"K36","ID":38847,"Name":"609|375","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38847","ServerKey":"pl181","X":660,"Y":387},{"Bonus":0,"Continent":"K66","ID":38848,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38848","ServerKey":"pl181","X":644,"Y":631},{"Bonus":0,"Continent":"K53","ID":38849,"Name":"C0037","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38849","ServerKey":"pl181","X":309,"Y":515},{"Bonus":0,"Continent":"K46","ID":38851,"Name":"B#013","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38851","ServerKey":"pl181","X":690,"Y":449},{"Bonus":0,"Continent":"K45","ID":38852,"Name":"#6#","PlayerID":699098531,"Points":7141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38852","ServerKey":"pl181","X":500,"Y":483},{"Bonus":0,"Continent":"K36","ID":38853,"Name":"051- Mroczna Osada","PlayerID":849035905,"Points":8705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38853","ServerKey":"pl181","X":659,"Y":398},{"Bonus":0,"Continent":"K63","ID":38854,"Name":"O103","PlayerID":272173,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38854","ServerKey":"pl181","X":347,"Y":620},{"Bonus":0,"Continent":"K53","ID":38855,"Name":"006","PlayerID":698356304,"Points":3284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38855","ServerKey":"pl181","X":311,"Y":505},{"Bonus":0,"Continent":"K46","ID":38856,"Name":"Hofek 27.","PlayerID":699491076,"Points":3672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38856","ServerKey":"pl181","X":667,"Y":400},{"Bonus":0,"Continent":"K35","ID":38857,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":4338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38857","ServerKey":"pl181","X":593,"Y":329},{"Bonus":0,"Continent":"K64","ID":38858,"Name":"[012]","PlayerID":699777372,"Points":8011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38858","ServerKey":"pl181","X":455,"Y":688},{"Bonus":0,"Continent":"K46","ID":38859,"Name":"Jan XX2 Ost K","PlayerID":879782,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38859","ServerKey":"pl181","X":690,"Y":445},{"Bonus":0,"Continent":"K43","ID":38860,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38860","ServerKey":"pl181","X":325,"Y":419},{"Bonus":0,"Continent":"K66","ID":38861,"Name":"Ć»UBR PSYCHIATRYK 021","PlayerID":33900,"Points":6680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38861","ServerKey":"pl181","X":625,"Y":653},{"Bonus":0,"Continent":"K33","ID":38862,"Name":"z 181-A008","PlayerID":3909522,"Points":6690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38862","ServerKey":"pl181","X":354,"Y":382},{"Bonus":0,"Continent":"K36","ID":38863,"Name":"001","PlayerID":698635863,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38863","ServerKey":"pl181","X":658,"Y":383},{"Bonus":0,"Continent":"K53","ID":38864,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":8917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38864","ServerKey":"pl181","X":337,"Y":539},{"Bonus":0,"Continent":"K64","ID":38865,"Name":"018","PlayerID":698650301,"Points":4976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38865","ServerKey":"pl181","X":457,"Y":656},{"Bonus":0,"Continent":"K65","ID":38866,"Name":"PrzypaƂownia","PlayerID":698723158,"Points":3471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38866","ServerKey":"pl181","X":578,"Y":679},{"Bonus":0,"Continent":"K63","ID":38867,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":3388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38867","ServerKey":"pl181","X":347,"Y":619},{"Bonus":0,"Continent":"K66","ID":38868,"Name":"038","PlayerID":699099811,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38868","ServerKey":"pl181","X":656,"Y":620},{"Bonus":0,"Continent":"K34","ID":38869,"Name":".achim.","PlayerID":6936607,"Points":7615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38869","ServerKey":"pl181","X":487,"Y":311},{"Bonus":0,"Continent":"K53","ID":38870,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38870","ServerKey":"pl181","X":345,"Y":543},{"Bonus":0,"Continent":"K43","ID":38871,"Name":"Out of Touch","PlayerID":698962117,"Points":8726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38871","ServerKey":"pl181","X":318,"Y":424},{"Bonus":0,"Continent":"K63","ID":38872,"Name":"ByƂeƛ w porządku 008","PlayerID":699269923,"Points":8135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38872","ServerKey":"pl181","X":374,"Y":652},{"Bonus":0,"Continent":"K33","ID":38873,"Name":"cebul23","PlayerID":849027025,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38873","ServerKey":"pl181","X":369,"Y":352},{"Bonus":0,"Continent":"K56","ID":38874,"Name":"520","PlayerID":7038651,"Points":5858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38874","ServerKey":"pl181","X":683,"Y":559},{"Bonus":0,"Continent":"K65","ID":38875,"Name":"Wyspa_23","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38875","ServerKey":"pl181","X":511,"Y":692},{"Bonus":0,"Continent":"K64","ID":38876,"Name":"Szale","PlayerID":699777372,"Points":7047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38876","ServerKey":"pl181","X":461,"Y":690},{"Bonus":0,"Continent":"K33","ID":38877,"Name":"Wow7","PlayerID":849027025,"Points":11989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38877","ServerKey":"pl181","X":369,"Y":353},{"Bonus":0,"Continent":"K35","ID":38878,"Name":"Winterhome.015","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38878","ServerKey":"pl181","X":510,"Y":310},{"Bonus":0,"Continent":"K66","ID":38880,"Name":"Wioska 081","PlayerID":848971079,"Points":8917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38880","ServerKey":"pl181","X":659,"Y":604},{"Bonus":0,"Continent":"K63","ID":38881,"Name":"Wieƛ 01","PlayerID":6180190,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38881","ServerKey":"pl181","X":338,"Y":612},{"Bonus":0,"Continent":"K35","ID":38882,"Name":"14. Metavers","PlayerID":699072129,"Points":9418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38882","ServerKey":"pl181","X":554,"Y":311},{"Bonus":0,"Continent":"K34","ID":38883,"Name":"051.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38883","ServerKey":"pl181","X":429,"Y":318},{"Bonus":0,"Continent":"K53","ID":38884,"Name":"C0003","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38884","ServerKey":"pl181","X":310,"Y":515},{"Bonus":0,"Continent":"K56","ID":38885,"Name":"O68 Blackburn","PlayerID":699272880,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38885","ServerKey":"pl181","X":681,"Y":561},{"Bonus":0,"Continent":"K33","ID":38886,"Name":"009 internacionale","PlayerID":7462660,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38886","ServerKey":"pl181","X":348,"Y":374},{"Bonus":0,"Continent":"K35","ID":38887,"Name":"Wioska 01","PlayerID":849067192,"Points":4818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38887","ServerKey":"pl181","X":569,"Y":316},{"Bonus":0,"Continent":"K63","ID":38888,"Name":"O042","PlayerID":272173,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38888","ServerKey":"pl181","X":346,"Y":622},{"Bonus":0,"Continent":"K66","ID":38889,"Name":"Wioska 1","PlayerID":1647052,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38889","ServerKey":"pl181","X":644,"Y":627},{"Bonus":0,"Continent":"K65","ID":38890,"Name":"PoƂudnie.012","PlayerID":873575,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38890","ServerKey":"pl181","X":555,"Y":681},{"Bonus":0,"Continent":"K63","ID":38891,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38891","ServerKey":"pl181","X":340,"Y":604},{"Bonus":0,"Continent":"K36","ID":38892,"Name":"nowa","PlayerID":1990750,"Points":5353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38892","ServerKey":"pl181","X":607,"Y":341},{"Bonus":6,"Continent":"K43","ID":38893,"Name":"Rubiez1","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38893","ServerKey":"pl181","X":307,"Y":483},{"Bonus":0,"Continent":"K34","ID":38894,"Name":"009.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38894","ServerKey":"pl181","X":435,"Y":314},{"Bonus":0,"Continent":"K66","ID":38895,"Name":"103","PlayerID":3589487,"Points":11083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38895","ServerKey":"pl181","X":657,"Y":617},{"Bonus":0,"Continent":"K35","ID":38896,"Name":"123 Wioska-015-","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38896","ServerKey":"pl181","X":542,"Y":392},{"Bonus":0,"Continent":"K56","ID":38897,"Name":"007 * Lady Porto *","PlayerID":699406750,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38897","ServerKey":"pl181","X":694,"Y":508},{"Bonus":0,"Continent":"K63","ID":38899,"Name":"A 045","PlayerID":698908184,"Points":8243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38899","ServerKey":"pl181","X":362,"Y":636},{"Bonus":0,"Continent":"K34","ID":38900,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38900","ServerKey":"pl181","X":423,"Y":319},{"Bonus":0,"Continent":"K65","ID":38901,"Name":"-09-","PlayerID":7860453,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38901","ServerKey":"pl181","X":553,"Y":684},{"Bonus":0,"Continent":"K66","ID":38902,"Name":"Sony 911","PlayerID":1415009,"Points":8644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38902","ServerKey":"pl181","X":619,"Y":646},{"Bonus":0,"Continent":"K46","ID":38903,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":4675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38903","ServerKey":"pl181","X":672,"Y":410},{"Bonus":0,"Continent":"K56","ID":38904,"Name":"_PUSTA+","PlayerID":699628084,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38904","ServerKey":"pl181","X":687,"Y":541},{"Bonus":0,"Continent":"K56","ID":38905,"Name":"059. Jiet","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38905","ServerKey":"pl181","X":666,"Y":592},{"Bonus":0,"Continent":"K46","ID":38907,"Name":"Jan VALLHALLA","PlayerID":879782,"Points":8022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38907","ServerKey":"pl181","X":684,"Y":433},{"Bonus":0,"Continent":"K54","ID":38908,"Name":"OgrĂłd Warzywny","PlayerID":7249451,"Points":4692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38908","ServerKey":"pl181","X":459,"Y":565},{"Bonus":0,"Continent":"K36","ID":38909,"Name":"Mrkime","PlayerID":849099541,"Points":4308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38909","ServerKey":"pl181","X":639,"Y":368},{"Bonus":0,"Continent":"K34","ID":38910,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38910","ServerKey":"pl181","X":419,"Y":324},{"Bonus":0,"Continent":"K46","ID":38911,"Name":"B#026","PlayerID":2065730,"Points":5576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38911","ServerKey":"pl181","X":679,"Y":421},{"Bonus":0,"Continent":"K36","ID":38912,"Name":"Przyczajony Tygrys","PlayerID":7340529,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38912","ServerKey":"pl181","X":615,"Y":349},{"Bonus":0,"Continent":"K43","ID":38913,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38913","ServerKey":"pl181","X":312,"Y":468},{"Bonus":0,"Continent":"K36","ID":38914,"Name":"Moldor 9","PlayerID":849049045,"Points":9301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38914","ServerKey":"pl181","X":634,"Y":355},{"Bonus":0,"Continent":"K56","ID":38915,"Name":"C12","PlayerID":848995478,"Points":3880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38915","ServerKey":"pl181","X":692,"Y":531},{"Bonus":0,"Continent":"K53","ID":38916,"Name":"Wioska V","PlayerID":699671197,"Points":10666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38916","ServerKey":"pl181","X":325,"Y":585},{"Bonus":0,"Continent":"K46","ID":38917,"Name":"038","PlayerID":699272633,"Points":6004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38917","ServerKey":"pl181","X":691,"Y":453},{"Bonus":0,"Continent":"K35","ID":38918,"Name":"062- Mroczna Osada","PlayerID":849035905,"Points":10267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38918","ServerKey":"pl181","X":596,"Y":336},{"Bonus":0,"Continent":"K53","ID":38919,"Name":"ƚwinka","PlayerID":699265922,"Points":2684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38919","ServerKey":"pl181","X":318,"Y":552},{"Bonus":0,"Continent":"K66","ID":38920,"Name":"001","PlayerID":849099544,"Points":9664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38920","ServerKey":"pl181","X":640,"Y":634},{"Bonus":0,"Continent":"K65","ID":38921,"Name":"Wioska barbarzyƄska","PlayerID":698215322,"Points":3257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38921","ServerKey":"pl181","X":578,"Y":673},{"Bonus":0,"Continent":"K65","ID":38922,"Name":"sad frog","PlayerID":699567608,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38922","ServerKey":"pl181","X":587,"Y":672},{"Bonus":0,"Continent":"K66","ID":38923,"Name":"D014","PlayerID":9023703,"Points":7119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38923","ServerKey":"pl181","X":614,"Y":658},{"Bonus":1,"Continent":"K56","ID":38924,"Name":"077","PlayerID":849095227,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38924","ServerKey":"pl181","X":693,"Y":519},{"Bonus":0,"Continent":"K53","ID":38925,"Name":"Nowy Początek! 001","PlayerID":698926585,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38925","ServerKey":"pl181","X":338,"Y":597},{"Bonus":0,"Continent":"K56","ID":38926,"Name":"003 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38926","ServerKey":"pl181","X":694,"Y":506},{"Bonus":0,"Continent":"K53","ID":38927,"Name":"Wioska","PlayerID":849099258,"Points":6924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38927","ServerKey":"pl181","X":321,"Y":565},{"Bonus":0,"Continent":"K66","ID":38928,"Name":"020 NAWRA","PlayerID":849048867,"Points":5601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38928","ServerKey":"pl181","X":656,"Y":611},{"Bonus":0,"Continent":"K66","ID":38929,"Name":"015 NAWRA","PlayerID":849048867,"Points":7553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38929","ServerKey":"pl181","X":655,"Y":613},{"Bonus":0,"Continent":"K56","ID":38930,"Name":"SkarbiszĂłw","PlayerID":848932879,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38930","ServerKey":"pl181","X":682,"Y":550},{"Bonus":0,"Continent":"K35","ID":38931,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38931","ServerKey":"pl181","X":521,"Y":310},{"Bonus":0,"Continent":"K64","ID":38932,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38932","ServerKey":"pl181","X":470,"Y":689},{"Bonus":0,"Continent":"K63","ID":38933,"Name":"KHORINIS 02","PlayerID":849099924,"Points":2579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38933","ServerKey":"pl181","X":377,"Y":649},{"Bonus":0,"Continent":"K46","ID":38934,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38934","ServerKey":"pl181","X":689,"Y":492},{"Bonus":0,"Continent":"K54","ID":38935,"Name":"Pobozowisko","PlayerID":699513260,"Points":5596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38935","ServerKey":"pl181","X":414,"Y":584},{"Bonus":0,"Continent":"K34","ID":38936,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38936","ServerKey":"pl181","X":429,"Y":320},{"Bonus":0,"Continent":"K33","ID":38937,"Name":"Szulernia","PlayerID":7249451,"Points":7275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38937","ServerKey":"pl181","X":383,"Y":369},{"Bonus":0,"Continent":"K64","ID":38938,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38938","ServerKey":"pl181","X":448,"Y":685},{"Bonus":0,"Continent":"K64","ID":38939,"Name":"FP035","PlayerID":699605333,"Points":6232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38939","ServerKey":"pl181","X":474,"Y":696},{"Bonus":0,"Continent":"K33","ID":38940,"Name":"*120*","PlayerID":699273451,"Points":9466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38940","ServerKey":"pl181","X":350,"Y":386},{"Bonus":0,"Continent":"K35","ID":38941,"Name":"Winterhome.022","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38941","ServerKey":"pl181","X":500,"Y":312},{"Bonus":0,"Continent":"K43","ID":38942,"Name":"#005 Zenitobiusz","PlayerID":849096215,"Points":4076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38942","ServerKey":"pl181","X":366,"Y":440},{"Bonus":0,"Continent":"K34","ID":38943,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38943","ServerKey":"pl181","X":412,"Y":324},{"Bonus":0,"Continent":"K66","ID":38944,"Name":"#028#","PlayerID":692803,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38944","ServerKey":"pl181","X":621,"Y":653},{"Bonus":0,"Continent":"K65","ID":38945,"Name":"nr2","PlayerID":364126,"Points":9098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38945","ServerKey":"pl181","X":584,"Y":675},{"Bonus":0,"Continent":"K46","ID":38946,"Name":"OrzeƂ 10","PlayerID":699413581,"Points":5038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38946","ServerKey":"pl181","X":696,"Y":486},{"Bonus":0,"Continent":"K46","ID":38947,"Name":"OrzeƂ 9","PlayerID":849099640,"Points":6739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38947","ServerKey":"pl181","X":697,"Y":485},{"Bonus":0,"Continent":"K43","ID":38948,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38948","ServerKey":"pl181","X":315,"Y":453},{"Bonus":0,"Continent":"K64","ID":38949,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38949","ServerKey":"pl181","X":453,"Y":692},{"Bonus":9,"Continent":"K65","ID":38950,"Name":"Gold Experience","PlayerID":699567608,"Points":10564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38950","ServerKey":"pl181","X":589,"Y":671},{"Bonus":0,"Continent":"K53","ID":38951,"Name":"Wonderwall","PlayerID":698962117,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38951","ServerKey":"pl181","X":310,"Y":553},{"Bonus":0,"Continent":"K33","ID":38952,"Name":"*193*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38952","ServerKey":"pl181","X":366,"Y":362},{"Bonus":0,"Continent":"K66","ID":38953,"Name":"Swoja6","PlayerID":6528152,"Points":8631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38953","ServerKey":"pl181","X":606,"Y":666},{"Bonus":0,"Continent":"K35","ID":38954,"Name":"Wioska peres5130","PlayerID":849044705,"Points":6405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38954","ServerKey":"pl181","X":536,"Y":307},{"Bonus":0,"Continent":"K64","ID":38955,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38955","ServerKey":"pl181","X":448,"Y":683},{"Bonus":0,"Continent":"K64","ID":38956,"Name":"1.03","PlayerID":699827112,"Points":9168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38956","ServerKey":"pl181","X":432,"Y":676},{"Bonus":0,"Continent":"K64","ID":38957,"Name":"Szale","PlayerID":698585370,"Points":9404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38957","ServerKey":"pl181","X":463,"Y":687},{"Bonus":0,"Continent":"K33","ID":38958,"Name":"*198*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38958","ServerKey":"pl181","X":364,"Y":357},{"Bonus":0,"Continent":"K63","ID":38959,"Name":"D.007","PlayerID":849088243,"Points":8578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38959","ServerKey":"pl181","X":392,"Y":656},{"Bonus":0,"Continent":"K56","ID":38960,"Name":"WschĂłd X6","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38960","ServerKey":"pl181","X":693,"Y":537},{"Bonus":0,"Continent":"K34","ID":38961,"Name":"#0272 Gwen1","PlayerID":1238300,"Points":5184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38961","ServerKey":"pl181","X":474,"Y":307},{"Bonus":0,"Continent":"K56","ID":38962,"Name":"C002","PlayerID":8138506,"Points":7056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38962","ServerKey":"pl181","X":676,"Y":582},{"Bonus":0,"Continent":"K53","ID":38963,"Name":"04.wiocha","PlayerID":7183372,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38963","ServerKey":"pl181","X":332,"Y":591},{"Bonus":0,"Continent":"K33","ID":38964,"Name":"z 181-A009","PlayerID":3909522,"Points":7521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38964","ServerKey":"pl181","X":355,"Y":379},{"Bonus":0,"Continent":"K35","ID":38965,"Name":"0042","PlayerID":699485250,"Points":4389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38965","ServerKey":"pl181","X":569,"Y":321},{"Bonus":0,"Continent":"K64","ID":38966,"Name":"035.xxx","PlayerID":699393742,"Points":4166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38966","ServerKey":"pl181","X":483,"Y":690},{"Bonus":0,"Continent":"K66","ID":38967,"Name":"001","PlayerID":698346318,"Points":8384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38967","ServerKey":"pl181","X":629,"Y":647},{"Bonus":0,"Continent":"K65","ID":38968,"Name":"S005","PlayerID":8627359,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38968","ServerKey":"pl181","X":598,"Y":671},{"Bonus":4,"Continent":"K66","ID":38969,"Name":"046. Warkoczynka","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38969","ServerKey":"pl181","X":664,"Y":600},{"Bonus":0,"Continent":"K43","ID":38970,"Name":"*181*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38970","ServerKey":"pl181","X":324,"Y":412},{"Bonus":0,"Continent":"K66","ID":38971,"Name":"Ć»UBR PSYCHIATRYK 009","PlayerID":33900,"Points":6427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38971","ServerKey":"pl181","X":621,"Y":652},{"Bonus":0,"Continent":"K65","ID":38972,"Name":"0421","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38972","ServerKey":"pl181","X":561,"Y":685},{"Bonus":0,"Continent":"K66","ID":38973,"Name":"Mordor","PlayerID":849098822,"Points":4840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38973","ServerKey":"pl181","X":646,"Y":624},{"Bonus":2,"Continent":"K66","ID":38974,"Name":"004 NAWRA","PlayerID":849048867,"Points":10121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38974","ServerKey":"pl181","X":663,"Y":611},{"Bonus":0,"Continent":"K65","ID":38975,"Name":"0420","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38975","ServerKey":"pl181","X":555,"Y":684},{"Bonus":0,"Continent":"K53","ID":38976,"Name":"C0065","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38976","ServerKey":"pl181","X":307,"Y":528},{"Bonus":0,"Continent":"K53","ID":38977,"Name":"000 Plutosea","PlayerID":9280477,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38977","ServerKey":"pl181","X":318,"Y":561},{"Bonus":0,"Continent":"K46","ID":38978,"Name":"009.SIEMANO","PlayerID":849098769,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38978","ServerKey":"pl181","X":680,"Y":443},{"Bonus":0,"Continent":"K46","ID":38979,"Name":"**28**","PlayerID":849098782,"Points":9431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38979","ServerKey":"pl181","X":677,"Y":431},{"Bonus":0,"Continent":"K64","ID":38980,"Name":"0.09 Noli timere","PlayerID":699725436,"Points":8710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38980","ServerKey":"pl181","X":467,"Y":692},{"Bonus":0,"Continent":"K63","ID":38982,"Name":"A 072","PlayerID":272173,"Points":4405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38982","ServerKey":"pl181","X":360,"Y":640},{"Bonus":0,"Continent":"K34","ID":38984,"Name":"[0068]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38984","ServerKey":"pl181","X":438,"Y":315},{"Bonus":0,"Continent":"K65","ID":38985,"Name":"062","PlayerID":2293376,"Points":4533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38985","ServerKey":"pl181","X":515,"Y":696},{"Bonus":0,"Continent":"K65","ID":38986,"Name":"141 invidia","PlayerID":849093426,"Points":6226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38986","ServerKey":"pl181","X":541,"Y":693},{"Bonus":6,"Continent":"K35","ID":38987,"Name":"Iskra","PlayerID":849061374,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38987","ServerKey":"pl181","X":598,"Y":334},{"Bonus":0,"Continent":"K63","ID":38989,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":699269923,"Points":9083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38989","ServerKey":"pl181","X":380,"Y":645},{"Bonus":0,"Continent":"K54","ID":38990,"Name":"BucksbarzyƄsKamiiiru","PlayerID":848955783,"Points":6148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38990","ServerKey":"pl181","X":429,"Y":509},{"Bonus":0,"Continent":"K56","ID":38991,"Name":"Ozimek","PlayerID":848932879,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38991","ServerKey":"pl181","X":675,"Y":552},{"Bonus":0,"Continent":"K64","ID":38992,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38992","ServerKey":"pl181","X":472,"Y":687},{"Bonus":0,"Continent":"K36","ID":38993,"Name":"Nargothrond","PlayerID":849086491,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38993","ServerKey":"pl181","X":634,"Y":362},{"Bonus":0,"Continent":"K63","ID":38994,"Name":"C108","PlayerID":699383279,"Points":4745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38994","ServerKey":"pl181","X":366,"Y":641},{"Bonus":0,"Continent":"K53","ID":38995,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":5798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38995","ServerKey":"pl181","X":308,"Y":547},{"Bonus":0,"Continent":"K63","ID":38996,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":6929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38996","ServerKey":"pl181","X":387,"Y":662},{"Bonus":0,"Continent":"K66","ID":38997,"Name":"Ć»UBR .::.Adaczu/12","PlayerID":33900,"Points":2893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38997","ServerKey":"pl181","X":625,"Y":646},{"Bonus":0,"Continent":"K33","ID":38998,"Name":"z 001026","PlayerID":3909522,"Points":9126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38998","ServerKey":"pl181","X":353,"Y":372},{"Bonus":0,"Continent":"K43","ID":38999,"Name":"Rubiez15","PlayerID":699265922,"Points":3972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=38999","ServerKey":"pl181","X":307,"Y":484},{"Bonus":0,"Continent":"K64","ID":39000,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39000","ServerKey":"pl181","X":421,"Y":679},{"Bonus":0,"Continent":"K33","ID":39001,"Name":"Szlachcic","PlayerID":3484132,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39001","ServerKey":"pl181","X":388,"Y":348},{"Bonus":0,"Continent":"K33","ID":39002,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":3508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39002","ServerKey":"pl181","X":397,"Y":334},{"Bonus":0,"Continent":"K64","ID":39003,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39003","ServerKey":"pl181","X":436,"Y":683},{"Bonus":0,"Continent":"K36","ID":39004,"Name":"010","PlayerID":8842936,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39004","ServerKey":"pl181","X":602,"Y":332},{"Bonus":0,"Continent":"K35","ID":39005,"Name":"B009","PlayerID":699208929,"Points":7490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39005","ServerKey":"pl181","X":516,"Y":308},{"Bonus":0,"Continent":"K66","ID":39006,"Name":"#025#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39006","ServerKey":"pl181","X":620,"Y":654},{"Bonus":0,"Continent":"K56","ID":39007,"Name":"TWIERDZA .:028:.","PlayerID":7154207,"Points":10356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39007","ServerKey":"pl181","X":685,"Y":566},{"Bonus":0,"Continent":"K66","ID":39008,"Name":"SokóƂka","PlayerID":849066044,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39008","ServerKey":"pl181","X":650,"Y":616},{"Bonus":0,"Continent":"K56","ID":39009,"Name":"094 Tomek","PlayerID":2135129,"Points":4884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39009","ServerKey":"pl181","X":689,"Y":509},{"Bonus":0,"Continent":"K64","ID":39010,"Name":"[013]","PlayerID":699777372,"Points":5210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39010","ServerKey":"pl181","X":455,"Y":686},{"Bonus":0,"Continent":"K64","ID":39011,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39011","ServerKey":"pl181","X":426,"Y":679},{"Bonus":0,"Continent":"K65","ID":39012,"Name":"015","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39012","ServerKey":"pl181","X":512,"Y":675},{"Bonus":0,"Continent":"K64","ID":39013,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39013","ServerKey":"pl181","X":498,"Y":689},{"Bonus":0,"Continent":"K46","ID":39014,"Name":"647|410 Wioska barbarzyƄska","PlayerID":6822957,"Points":4762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39014","ServerKey":"pl181","X":647,"Y":410},{"Bonus":0,"Continent":"K35","ID":39015,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39015","ServerKey":"pl181","X":559,"Y":319},{"Bonus":0,"Continent":"K53","ID":39016,"Name":"041","PlayerID":849098688,"Points":6093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39016","ServerKey":"pl181","X":324,"Y":581},{"Bonus":0,"Continent":"K56","ID":39018,"Name":"_PUSTA !","PlayerID":699628084,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39018","ServerKey":"pl181","X":686,"Y":540},{"Bonus":0,"Continent":"K33","ID":39019,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39019","ServerKey":"pl181","X":338,"Y":388},{"Bonus":0,"Continent":"K53","ID":39020,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39020","ServerKey":"pl181","X":320,"Y":559},{"Bonus":0,"Continent":"K36","ID":39022,"Name":"Klaudek15","PlayerID":849092309,"Points":5197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39022","ServerKey":"pl181","X":632,"Y":364},{"Bonus":0,"Continent":"K34","ID":39023,"Name":"- 01 - JFK","PlayerID":848902744,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39023","ServerKey":"pl181","X":467,"Y":313},{"Bonus":0,"Continent":"K46","ID":39024,"Name":"I083","PlayerID":699722599,"Points":9236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39024","ServerKey":"pl181","X":681,"Y":442},{"Bonus":0,"Continent":"K33","ID":39025,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":6120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39025","ServerKey":"pl181","X":398,"Y":339},{"Bonus":0,"Continent":"K33","ID":39026,"Name":"Szlachcic","PlayerID":698160606,"Points":10579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39026","ServerKey":"pl181","X":377,"Y":356},{"Bonus":0,"Continent":"K65","ID":39027,"Name":"lala","PlayerID":699567608,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39027","ServerKey":"pl181","X":586,"Y":676},{"Bonus":0,"Continent":"K43","ID":39028,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39028","ServerKey":"pl181","X":311,"Y":492},{"Bonus":0,"Continent":"K36","ID":39029,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":3987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39029","ServerKey":"pl181","X":627,"Y":348},{"Bonus":0,"Continent":"K64","ID":39031,"Name":"Z|004| Florencja","PlayerID":699393742,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39031","ServerKey":"pl181","X":474,"Y":693},{"Bonus":0,"Continent":"K65","ID":39032,"Name":"Wyspa_47","PlayerID":2585846,"Points":6945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39032","ServerKey":"pl181","X":502,"Y":697},{"Bonus":0,"Continent":"K33","ID":39033,"Name":"Szlachcic","PlayerID":698160606,"Points":9356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39033","ServerKey":"pl181","X":378,"Y":353},{"Bonus":0,"Continent":"K53","ID":39034,"Name":"::: W :::","PlayerID":848917570,"Points":2515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39034","ServerKey":"pl181","X":302,"Y":500},{"Bonus":0,"Continent":"K65","ID":39035,"Name":"Forteca*003*","PlayerID":1078121,"Points":9211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39035","ServerKey":"pl181","X":533,"Y":694},{"Bonus":0,"Continent":"K63","ID":39036,"Name":".18. Colomier m","PlayerID":272173,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39036","ServerKey":"pl181","X":360,"Y":630},{"Bonus":0,"Continent":"K43","ID":39037,"Name":"Out of Touch","PlayerID":698962117,"Points":8739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39037","ServerKey":"pl181","X":323,"Y":429},{"Bonus":0,"Continent":"K43","ID":39038,"Name":"Out of Touch","PlayerID":698962117,"Points":6385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39038","ServerKey":"pl181","X":313,"Y":435},{"Bonus":0,"Continent":"K46","ID":39039,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39039","ServerKey":"pl181","X":691,"Y":474},{"Bonus":0,"Continent":"K36","ID":39040,"Name":"=|02|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39040","ServerKey":"pl181","X":650,"Y":384},{"Bonus":0,"Continent":"K36","ID":39041,"Name":"XDX","PlayerID":699098531,"Points":7355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39041","ServerKey":"pl181","X":610,"Y":337},{"Bonus":0,"Continent":"K56","ID":39042,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39042","ServerKey":"pl181","X":681,"Y":560},{"Bonus":0,"Continent":"K53","ID":39043,"Name":"Dream on","PlayerID":698962117,"Points":8420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39043","ServerKey":"pl181","X":306,"Y":502},{"Bonus":0,"Continent":"K64","ID":39044,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39044","ServerKey":"pl181","X":400,"Y":661},{"Bonus":0,"Continent":"K35","ID":39045,"Name":"K35 - [041] Before Land","PlayerID":699088769,"Points":4459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39045","ServerKey":"pl181","X":572,"Y":321},{"Bonus":0,"Continent":"K63","ID":39046,"Name":"01 La Mancha","PlayerID":699269923,"Points":9324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39046","ServerKey":"pl181","X":382,"Y":651},{"Bonus":0,"Continent":"K65","ID":39047,"Name":"029 invidia","PlayerID":849093426,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39047","ServerKey":"pl181","X":529,"Y":691},{"Bonus":0,"Continent":"K45","ID":39048,"Name":"Wioska 1","PlayerID":698881022,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39048","ServerKey":"pl181","X":545,"Y":458},{"Bonus":4,"Continent":"K33","ID":39049,"Name":"Osada koczownikĂłwxx","PlayerID":698807570,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39049","ServerKey":"pl181","X":336,"Y":399},{"Bonus":0,"Continent":"K65","ID":39050,"Name":"**INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39050","ServerKey":"pl181","X":504,"Y":693},{"Bonus":0,"Continent":"K43","ID":39051,"Name":"Out of Touch","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39051","ServerKey":"pl181","X":322,"Y":421},{"Bonus":0,"Continent":"K65","ID":39052,"Name":"ĆmĂłw","PlayerID":699567608,"Points":8868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39052","ServerKey":"pl181","X":586,"Y":670},{"Bonus":0,"Continent":"K66","ID":39053,"Name":"#092#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39053","ServerKey":"pl181","X":626,"Y":642},{"Bonus":0,"Continent":"K36","ID":39054,"Name":"A007","PlayerID":699520575,"Points":7994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39054","ServerKey":"pl181","X":639,"Y":373},{"Bonus":9,"Continent":"K46","ID":39055,"Name":"Jan AirForce Ost K","PlayerID":879782,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39055","ServerKey":"pl181","X":687,"Y":449},{"Bonus":0,"Continent":"K63","ID":39056,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39056","ServerKey":"pl181","X":335,"Y":608},{"Bonus":0,"Continent":"K65","ID":39057,"Name":"META","PlayerID":699567608,"Points":8149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39057","ServerKey":"pl181","X":580,"Y":672},{"Bonus":0,"Continent":"K63","ID":39058,"Name":"O048","PlayerID":272173,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39058","ServerKey":"pl181","X":346,"Y":624},{"Bonus":0,"Continent":"K35","ID":39059,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":3646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39059","ServerKey":"pl181","X":541,"Y":315},{"Bonus":0,"Continent":"K53","ID":39060,"Name":"000 Plutosea","PlayerID":9280477,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39060","ServerKey":"pl181","X":318,"Y":560},{"Bonus":0,"Continent":"K53","ID":39061,"Name":"#Yamakashi#","PlayerID":849099601,"Points":3408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39061","ServerKey":"pl181","X":317,"Y":557},{"Bonus":0,"Continent":"K33","ID":39062,"Name":"Mefedron 11","PlayerID":3484132,"Points":4348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39062","ServerKey":"pl181","X":395,"Y":338},{"Bonus":0,"Continent":"K46","ID":39063,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39063","ServerKey":"pl181","X":697,"Y":495},{"Bonus":0,"Continent":"K43","ID":39064,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39064","ServerKey":"pl181","X":312,"Y":450},{"Bonus":0,"Continent":"K33","ID":39065,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39065","ServerKey":"pl181","X":333,"Y":393},{"Bonus":0,"Continent":"K35","ID":39066,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":4062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39066","ServerKey":"pl181","X":556,"Y":310},{"Bonus":0,"Continent":"K66","ID":39067,"Name":"006","PlayerID":849099544,"Points":7374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39067","ServerKey":"pl181","X":646,"Y":631},{"Bonus":0,"Continent":"K43","ID":39068,"Name":"Out of Touch","PlayerID":698962117,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39068","ServerKey":"pl181","X":321,"Y":427},{"Bonus":0,"Continent":"K53","ID":39070,"Name":"048.","PlayerID":6180190,"Points":4441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39070","ServerKey":"pl181","X":327,"Y":590},{"Bonus":3,"Continent":"K56","ID":39071,"Name":"D14","PlayerID":848995478,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39071","ServerKey":"pl181","X":683,"Y":556},{"Bonus":0,"Continent":"K56","ID":39072,"Name":"Gryfios 025","PlayerID":698666810,"Points":11876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39072","ServerKey":"pl181","X":685,"Y":558},{"Bonus":0,"Continent":"K35","ID":39073,"Name":"CSA","PlayerID":1006847,"Points":3818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39073","ServerKey":"pl181","X":525,"Y":310},{"Bonus":0,"Continent":"K36","ID":39074,"Name":"Moldor","PlayerID":849049045,"Points":7898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39074","ServerKey":"pl181","X":629,"Y":356},{"Bonus":0,"Continent":"K56","ID":39075,"Name":"TWIERDZA .:054:.","PlayerID":7154207,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39075","ServerKey":"pl181","X":684,"Y":573},{"Bonus":0,"Continent":"K66","ID":39076,"Name":"Wioska Zorro 027","PlayerID":849080702,"Points":11984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39076","ServerKey":"pl181","X":658,"Y":616},{"Bonus":0,"Continent":"K66","ID":39077,"Name":"012","PlayerID":849099544,"Points":5618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39077","ServerKey":"pl181","X":635,"Y":638},{"Bonus":0,"Continent":"K33","ID":39078,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":9501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39078","ServerKey":"pl181","X":336,"Y":394},{"Bonus":0,"Continent":"K53","ID":39079,"Name":"Bandi się rozbija ;/","PlayerID":926823,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39079","ServerKey":"pl181","X":307,"Y":538},{"Bonus":0,"Continent":"K33","ID":39080,"Name":"Wioska barbarzyƄska","PlayerID":699541376,"Points":2397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39080","ServerKey":"pl181","X":342,"Y":385},{"Bonus":0,"Continent":"K66","ID":39081,"Name":"## Nieznana ##","PlayerID":699778867,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39081","ServerKey":"pl181","X":638,"Y":642},{"Bonus":0,"Continent":"K55","ID":39082,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39082","ServerKey":"pl181","X":503,"Y":596},{"Bonus":0,"Continent":"K65","ID":39083,"Name":"C013","PlayerID":9023703,"Points":8200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39083","ServerKey":"pl181","X":595,"Y":669},{"Bonus":0,"Continent":"K53","ID":39084,"Name":"070.","PlayerID":3475079,"Points":2281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39084","ServerKey":"pl181","X":321,"Y":582},{"Bonus":0,"Continent":"K53","ID":39085,"Name":"C0290","PlayerID":8841266,"Points":6042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39085","ServerKey":"pl181","X":311,"Y":508},{"Bonus":0,"Continent":"K64","ID":39086,"Name":"New World","PlayerID":698152377,"Points":6257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39086","ServerKey":"pl181","X":432,"Y":682},{"Bonus":0,"Continent":"K65","ID":39087,"Name":"- 186 - SS","PlayerID":849018239,"Points":7599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39087","ServerKey":"pl181","X":532,"Y":686},{"Bonus":0,"Continent":"K66","ID":39088,"Name":"Ć»UBR .::.Adaczu/13","PlayerID":33900,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39088","ServerKey":"pl181","X":621,"Y":649},{"Bonus":0,"Continent":"K34","ID":39089,"Name":"[0081]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39089","ServerKey":"pl181","X":444,"Y":312},{"Bonus":0,"Continent":"K65","ID":39090,"Name":"Ave Why!","PlayerID":699121671,"Points":4266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39090","ServerKey":"pl181","X":500,"Y":693},{"Bonus":0,"Continent":"K36","ID":39091,"Name":"14. Wioska Raukodel","PlayerID":698361257,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39091","ServerKey":"pl181","X":646,"Y":374},{"Bonus":0,"Continent":"K65","ID":39092,"Name":"PoƂudnie.017","PlayerID":873575,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39092","ServerKey":"pl181","X":550,"Y":685},{"Bonus":0,"Continent":"K66","ID":39093,"Name":"027","PlayerID":699373599,"Points":5675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39093","ServerKey":"pl181","X":630,"Y":648},{"Bonus":0,"Continent":"K65","ID":39094,"Name":"PoƂudnie.003","PlayerID":873575,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39094","ServerKey":"pl181","X":554,"Y":678},{"Bonus":0,"Continent":"K56","ID":39095,"Name":"008 * Lady Porto *","PlayerID":699406750,"Points":8125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39095","ServerKey":"pl181","X":695,"Y":507},{"Bonus":0,"Continent":"K56","ID":39096,"Name":"0023. Y -","PlayerID":7125212,"Points":4468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39096","ServerKey":"pl181","X":690,"Y":533},{"Bonus":0,"Continent":"K65","ID":39097,"Name":"Wioska Wiki 6","PlayerID":849100354,"Points":7289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39097","ServerKey":"pl181","X":520,"Y":696},{"Bonus":5,"Continent":"K36","ID":39098,"Name":"!36 63 Patrauti","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39098","ServerKey":"pl181","X":632,"Y":363},{"Bonus":0,"Continent":"K53","ID":39099,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39099","ServerKey":"pl181","X":319,"Y":573},{"Bonus":0,"Continent":"K64","ID":39100,"Name":"038.xxx","PlayerID":8612358,"Points":3221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39100","ServerKey":"pl181","X":479,"Y":693},{"Bonus":0,"Continent":"K66","ID":39101,"Name":"039","PlayerID":699099811,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39101","ServerKey":"pl181","X":655,"Y":621},{"Bonus":0,"Continent":"K33","ID":39102,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":2562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39102","ServerKey":"pl181","X":396,"Y":339},{"Bonus":0,"Continent":"K56","ID":39103,"Name":"Wioska 020","PlayerID":7999103,"Points":5817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39103","ServerKey":"pl181","X":675,"Y":592},{"Bonus":6,"Continent":"K66","ID":39104,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39104","ServerKey":"pl181","X":662,"Y":613},{"Bonus":0,"Continent":"K36","ID":39106,"Name":"Topornik","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39106","ServerKey":"pl181","X":648,"Y":379},{"Bonus":0,"Continent":"K56","ID":39107,"Name":"Szlachcic","PlayerID":8096537,"Points":5703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39107","ServerKey":"pl181","X":690,"Y":512},{"Bonus":0,"Continent":"K64","ID":39108,"Name":"0036 Wioska barbarzyƄska","PlayerID":849037407,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39108","ServerKey":"pl181","X":449,"Y":691},{"Bonus":7,"Continent":"K53","ID":39109,"Name":"Osada","PlayerID":849099258,"Points":7273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39109","ServerKey":"pl181","X":321,"Y":566},{"Bonus":0,"Continent":"K33","ID":39110,"Name":"Szlachcic","PlayerID":3484132,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39110","ServerKey":"pl181","X":389,"Y":345},{"Bonus":0,"Continent":"K65","ID":39111,"Name":"2.Oviedo","PlayerID":698215322,"Points":4467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39111","ServerKey":"pl181","X":575,"Y":681},{"Bonus":0,"Continent":"K34","ID":39112,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39112","ServerKey":"pl181","X":403,"Y":334},{"Bonus":0,"Continent":"K33","ID":39114,"Name":"Wow5","PlayerID":699730714,"Points":9436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39114","ServerKey":"pl181","X":370,"Y":356},{"Bonus":0,"Continent":"K43","ID":39115,"Name":"Xanz","PlayerID":6258092,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39115","ServerKey":"pl181","X":313,"Y":475},{"Bonus":0,"Continent":"K65","ID":39116,"Name":"Bąkowa","PlayerID":698723158,"Points":10316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39116","ServerKey":"pl181","X":573,"Y":679},{"Bonus":0,"Continent":"K43","ID":39117,"Name":"Out of Touch","PlayerID":698962117,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39117","ServerKey":"pl181","X":320,"Y":433},{"Bonus":0,"Continent":"K53","ID":39118,"Name":"C0117","PlayerID":8841266,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39118","ServerKey":"pl181","X":308,"Y":533},{"Bonus":0,"Continent":"K65","ID":39119,"Name":"Wyspa_46","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39119","ServerKey":"pl181","X":500,"Y":696},{"Bonus":0,"Continent":"K34","ID":39120,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":4154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39120","ServerKey":"pl181","X":404,"Y":333},{"Bonus":0,"Continent":"K53","ID":39121,"Name":"*001*","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39121","ServerKey":"pl181","X":313,"Y":537},{"Bonus":0,"Continent":"K56","ID":39122,"Name":"Warkoczynka 3","PlayerID":699778867,"Points":8952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39122","ServerKey":"pl181","X":667,"Y":599},{"Bonus":0,"Continent":"K66","ID":39124,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39124","ServerKey":"pl181","X":649,"Y":629},{"Bonus":0,"Continent":"K53","ID":39125,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39125","ServerKey":"pl181","X":319,"Y":576},{"Bonus":0,"Continent":"K56","ID":39126,"Name":"Seba1234567","PlayerID":849099689,"Points":2451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39126","ServerKey":"pl181","X":672,"Y":589},{"Bonus":0,"Continent":"K53","ID":39127,"Name":"042g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39127","ServerKey":"pl181","X":312,"Y":562},{"Bonus":0,"Continent":"K35","ID":39128,"Name":"Wioska barbarzyƄska","PlayerID":8606809,"Points":3565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39128","ServerKey":"pl181","X":531,"Y":305},{"Bonus":0,"Continent":"K64","ID":39129,"Name":"Szale","PlayerID":699725436,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39129","ServerKey":"pl181","X":469,"Y":691},{"Bonus":0,"Continent":"K35","ID":39130,"Name":"4.Podziemny Klimat","PlayerID":699208929,"Points":4212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39130","ServerKey":"pl181","X":521,"Y":304},{"Bonus":0,"Continent":"K36","ID":39131,"Name":"Klaudek26","PlayerID":849092309,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39131","ServerKey":"pl181","X":635,"Y":356},{"Bonus":0,"Continent":"K63","ID":39132,"Name":"O087","PlayerID":272173,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39132","ServerKey":"pl181","X":345,"Y":621},{"Bonus":0,"Continent":"K34","ID":39133,"Name":"#0229 Segadorr dar","PlayerID":1238300,"Points":7485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39133","ServerKey":"pl181","X":456,"Y":307},{"Bonus":0,"Continent":"K36","ID":39134,"Name":"kamilkaze135 #01.1","PlayerID":699705601,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39134","ServerKey":"pl181","X":658,"Y":391},{"Bonus":0,"Continent":"K64","ID":39135,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39135","ServerKey":"pl181","X":478,"Y":693},{"Bonus":0,"Continent":"K66","ID":39136,"Name":"#183#","PlayerID":692803,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39136","ServerKey":"pl181","X":651,"Y":620},{"Bonus":0,"Continent":"K46","ID":39137,"Name":"I093","PlayerID":699722599,"Points":7027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39137","ServerKey":"pl181","X":685,"Y":445},{"Bonus":0,"Continent":"K56","ID":39138,"Name":"C003","PlayerID":8138506,"Points":6260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39138","ServerKey":"pl181","X":674,"Y":584},{"Bonus":0,"Continent":"K46","ID":39139,"Name":"040","PlayerID":699272633,"Points":5497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39139","ServerKey":"pl181","X":691,"Y":455},{"Bonus":0,"Continent":"K53","ID":39140,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":5193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39140","ServerKey":"pl181","X":317,"Y":574},{"Bonus":1,"Continent":"K53","ID":39141,"Name":"C0147","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39141","ServerKey":"pl181","X":313,"Y":539},{"Bonus":0,"Continent":"K66","ID":39142,"Name":"035","PlayerID":699099811,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39142","ServerKey":"pl181","X":656,"Y":617},{"Bonus":0,"Continent":"K34","ID":39143,"Name":"229","PlayerID":7271812,"Points":3258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39143","ServerKey":"pl181","X":421,"Y":323},{"Bonus":0,"Continent":"K35","ID":39144,"Name":"B.13 duchy serca puszczy","PlayerID":849026145,"Points":2006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39144","ServerKey":"pl181","X":559,"Y":313},{"Bonus":0,"Continent":"K66","ID":39145,"Name":"021 NAWRA","PlayerID":849048867,"Points":5594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39145","ServerKey":"pl181","X":658,"Y":615},{"Bonus":0,"Continent":"K53","ID":39146,"Name":"#hakutatu#","PlayerID":849099601,"Points":4096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39146","ServerKey":"pl181","X":317,"Y":556},{"Bonus":0,"Continent":"K53","ID":39147,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39147","ServerKey":"pl181","X":311,"Y":504},{"Bonus":0,"Continent":"K53","ID":39148,"Name":"Dream on","PlayerID":698962117,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39148","ServerKey":"pl181","X":306,"Y":509},{"Bonus":0,"Continent":"K63","ID":39149,"Name":"D.016","PlayerID":849088243,"Points":5593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39149","ServerKey":"pl181","X":395,"Y":664},{"Bonus":0,"Continent":"K53","ID":39150,"Name":"C4.","PlayerID":849095482,"Points":2291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39150","ServerKey":"pl181","X":312,"Y":549},{"Bonus":0,"Continent":"K64","ID":39151,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39151","ServerKey":"pl181","X":410,"Y":674},{"Bonus":0,"Continent":"K65","ID":39152,"Name":"116","PlayerID":849097799,"Points":4643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39152","ServerKey":"pl181","X":590,"Y":670},{"Bonus":0,"Continent":"K56","ID":39153,"Name":"057 BanaN","PlayerID":2135129,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39153","ServerKey":"pl181","X":691,"Y":524},{"Bonus":0,"Continent":"K36","ID":39154,"Name":"26. Wioska Raukodel","PlayerID":9320272,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39154","ServerKey":"pl181","X":652,"Y":381},{"Bonus":0,"Continent":"K64","ID":39155,"Name":"012 Missouri","PlayerID":699238479,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39155","ServerKey":"pl181","X":474,"Y":645},{"Bonus":0,"Continent":"K35","ID":39156,"Name":"AAA","PlayerID":1006847,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39156","ServerKey":"pl181","X":549,"Y":315},{"Bonus":0,"Continent":"K46","ID":39157,"Name":"Jan i co dalej Ost K","PlayerID":879782,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39157","ServerKey":"pl181","X":683,"Y":445},{"Bonus":0,"Continent":"K63","ID":39158,"Name":"Obok sąsiada 1","PlayerID":699269923,"Points":9611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39158","ServerKey":"pl181","X":384,"Y":650},{"Bonus":0,"Continent":"K66","ID":39159,"Name":"Swoja5","PlayerID":6528152,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39159","ServerKey":"pl181","X":605,"Y":667},{"Bonus":0,"Continent":"K63","ID":39160,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39160","ServerKey":"pl181","X":386,"Y":659},{"Bonus":0,"Continent":"K53","ID":39162,"Name":"Devano6","PlayerID":7183372,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39162","ServerKey":"pl181","X":333,"Y":590},{"Bonus":0,"Continent":"K63","ID":39163,"Name":"Komornicy 027","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39163","ServerKey":"pl181","X":348,"Y":613},{"Bonus":0,"Continent":"K63","ID":39164,"Name":"A 047","PlayerID":698908184,"Points":6420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39164","ServerKey":"pl181","X":363,"Y":636},{"Bonus":0,"Continent":"K53","ID":39165,"Name":"/003/FTP/","PlayerID":698388578,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39165","ServerKey":"pl181","X":315,"Y":539},{"Bonus":0,"Continent":"K65","ID":39166,"Name":"- 132 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39166","ServerKey":"pl181","X":545,"Y":693},{"Bonus":0,"Continent":"K35","ID":39167,"Name":"Merida.waleczna2","PlayerID":849083294,"Points":1886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39167","ServerKey":"pl181","X":592,"Y":334},{"Bonus":0,"Continent":"K56","ID":39168,"Name":"TWIERDZA .:029:.","PlayerID":7154207,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39168","ServerKey":"pl181","X":692,"Y":561},{"Bonus":0,"Continent":"K63","ID":39169,"Name":"Domek JOJO- 2 ++ Tadek","PlayerID":699269923,"Points":9913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39169","ServerKey":"pl181","X":362,"Y":640},{"Bonus":0,"Continent":"K56","ID":39170,"Name":"N.C. ZapowiedĆș","PlayerID":849098693,"Points":4715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39170","ServerKey":"pl181","X":668,"Y":588},{"Bonus":0,"Continent":"K43","ID":39171,"Name":"Out of Touch","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39171","ServerKey":"pl181","X":322,"Y":425},{"Bonus":0,"Continent":"K46","ID":39172,"Name":"Gattacka","PlayerID":699298370,"Points":9535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39172","ServerKey":"pl181","X":609,"Y":412},{"Bonus":0,"Continent":"K65","ID":39173,"Name":"2.Las Palmas","PlayerID":698215322,"Points":5003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39173","ServerKey":"pl181","X":570,"Y":683},{"Bonus":0,"Continent":"K43","ID":39174,"Name":"A0200","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39174","ServerKey":"pl181","X":383,"Y":475},{"Bonus":0,"Continent":"K35","ID":39175,"Name":"AAA","PlayerID":1006847,"Points":5852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39175","ServerKey":"pl181","X":546,"Y":315},{"Bonus":3,"Continent":"K66","ID":39176,"Name":"-003- Domek Ć»elazny","PlayerID":849096631,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39176","ServerKey":"pl181","X":658,"Y":620},{"Bonus":0,"Continent":"K53","ID":39178,"Name":"Mordor7","PlayerID":848978903,"Points":5564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39178","ServerKey":"pl181","X":315,"Y":548},{"Bonus":0,"Continent":"K33","ID":39179,"Name":"z 001027","PlayerID":3909522,"Points":6574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39179","ServerKey":"pl181","X":353,"Y":370},{"Bonus":0,"Continent":"K65","ID":39180,"Name":"0303","PlayerID":698659980,"Points":8406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39180","ServerKey":"pl181","X":564,"Y":681},{"Bonus":9,"Continent":"K43","ID":39181,"Name":"z181_01","PlayerID":393668,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39181","ServerKey":"pl181","X":312,"Y":440},{"Bonus":0,"Continent":"K43","ID":39182,"Name":"Dream on","PlayerID":698962117,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39182","ServerKey":"pl181","X":308,"Y":492},{"Bonus":0,"Continent":"K64","ID":39183,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39183","ServerKey":"pl181","X":414,"Y":678},{"Bonus":5,"Continent":"K53","ID":39184,"Name":"115 SansPL","PlayerID":699382126,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39184","ServerKey":"pl181","X":326,"Y":576},{"Bonus":0,"Continent":"K36","ID":39185,"Name":"014 Wincanton","PlayerID":8675636,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39185","ServerKey":"pl181","X":619,"Y":348},{"Bonus":0,"Continent":"K56","ID":39186,"Name":"Wioska barbarzyƄska","PlayerID":699379895,"Points":4832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39186","ServerKey":"pl181","X":695,"Y":526},{"Bonus":0,"Continent":"K65","ID":39188,"Name":"Wyspa_20","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39188","ServerKey":"pl181","X":514,"Y":690},{"Bonus":0,"Continent":"K64","ID":39189,"Name":"ZZZ","PlayerID":8980651,"Points":7810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39189","ServerKey":"pl181","X":459,"Y":692},{"Bonus":0,"Continent":"K53","ID":39190,"Name":"056.","PlayerID":3475079,"Points":2798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39190","ServerKey":"pl181","X":323,"Y":584},{"Bonus":0,"Continent":"K43","ID":39191,"Name":"marmag81/02","PlayerID":1096254,"Points":8156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39191","ServerKey":"pl181","X":307,"Y":471},{"Bonus":0,"Continent":"K35","ID":39192,"Name":"Wioska 02","PlayerID":849067192,"Points":2552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39192","ServerKey":"pl181","X":568,"Y":316},{"Bonus":0,"Continent":"K53","ID":39194,"Name":"#Samarama#","PlayerID":849099601,"Points":2644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39194","ServerKey":"pl181","X":314,"Y":555},{"Bonus":0,"Continent":"K35","ID":39195,"Name":"K35 - [040] Before Land","PlayerID":699088769,"Points":6762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39195","ServerKey":"pl181","X":576,"Y":318},{"Bonus":0,"Continent":"K33","ID":39196,"Name":"Szlachcic","PlayerID":3484132,"Points":10296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39196","ServerKey":"pl181","X":385,"Y":341},{"Bonus":0,"Continent":"K43","ID":39197,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39197","ServerKey":"pl181","X":305,"Y":487},{"Bonus":0,"Continent":"K33","ID":39198,"Name":"New Land 08","PlayerID":849064752,"Points":3798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39198","ServerKey":"pl181","X":340,"Y":397},{"Bonus":2,"Continent":"K36","ID":39199,"Name":"137 Dolina Gliny","PlayerID":699491076,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39199","ServerKey":"pl181","X":665,"Y":395},{"Bonus":0,"Continent":"K53","ID":39200,"Name":"047.","PlayerID":3475079,"Points":1891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39200","ServerKey":"pl181","X":327,"Y":589},{"Bonus":0,"Continent":"K66","ID":39201,"Name":"007 NAWRA","PlayerID":849048867,"Points":10031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39201","ServerKey":"pl181","X":663,"Y":608},{"Bonus":0,"Continent":"K33","ID":39202,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39202","ServerKey":"pl181","X":397,"Y":342},{"Bonus":0,"Continent":"K36","ID":39203,"Name":"-25-","PlayerID":698361257,"Points":2656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39203","ServerKey":"pl181","X":641,"Y":366},{"Bonus":0,"Continent":"K63","ID":39205,"Name":"031 - Nowy Początek...","PlayerID":699269923,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39205","ServerKey":"pl181","X":376,"Y":648},{"Bonus":0,"Continent":"K66","ID":39206,"Name":"_PUSTA","PlayerID":698768565,"Points":6572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39206","ServerKey":"pl181","X":662,"Y":607},{"Bonus":0,"Continent":"K63","ID":39207,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39207","ServerKey":"pl181","X":396,"Y":667},{"Bonus":0,"Continent":"K33","ID":39208,"Name":"Szlachcic","PlayerID":698160606,"Points":7279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39208","ServerKey":"pl181","X":378,"Y":345},{"Bonus":0,"Continent":"K66","ID":39209,"Name":"009","PlayerID":849099544,"Points":6355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39209","ServerKey":"pl181","X":634,"Y":635},{"Bonus":0,"Continent":"K34","ID":39210,"Name":".achim.","PlayerID":6936607,"Points":7445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39210","ServerKey":"pl181","X":485,"Y":306},{"Bonus":0,"Continent":"K56","ID":39211,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39211","ServerKey":"pl181","X":697,"Y":500},{"Bonus":0,"Continent":"K65","ID":39212,"Name":"Wyspa_22","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39212","ServerKey":"pl181","X":509,"Y":693},{"Bonus":0,"Continent":"K56","ID":39213,"Name":"O71","PlayerID":699272880,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39213","ServerKey":"pl181","X":683,"Y":561},{"Bonus":0,"Continent":"K56","ID":39214,"Name":"B17","PlayerID":848995478,"Points":10798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39214","ServerKey":"pl181","X":688,"Y":551},{"Bonus":0,"Continent":"K66","ID":39215,"Name":"D005","PlayerID":9023703,"Points":7159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39215","ServerKey":"pl181","X":611,"Y":659},{"Bonus":0,"Continent":"K46","ID":39217,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":4941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39217","ServerKey":"pl181","X":670,"Y":407},{"Bonus":0,"Continent":"K46","ID":39218,"Name":"011 NIE RUSZAJ","PlayerID":849098769,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39218","ServerKey":"pl181","X":688,"Y":448},{"Bonus":0,"Continent":"K65","ID":39219,"Name":"022 wlodas62 :)","PlayerID":699828685,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39219","ServerKey":"pl181","X":562,"Y":642},{"Bonus":0,"Continent":"K36","ID":39220,"Name":"!36 64 Zamostea","PlayerID":698361257,"Points":8774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39220","ServerKey":"pl181","X":646,"Y":368},{"Bonus":5,"Continent":"K66","ID":39221,"Name":"#093#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39221","ServerKey":"pl181","X":650,"Y":630},{"Bonus":0,"Continent":"K66","ID":39222,"Name":"D010","PlayerID":9023703,"Points":7339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39222","ServerKey":"pl181","X":612,"Y":660},{"Bonus":0,"Continent":"K66","ID":39223,"Name":"010 NAWRA","PlayerID":849048867,"Points":8538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39223","ServerKey":"pl181","X":663,"Y":613},{"Bonus":0,"Continent":"K44","ID":39224,"Name":"Wioska milupa3 and IdziPR","PlayerID":117208,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39224","ServerKey":"pl181","X":416,"Y":416},{"Bonus":0,"Continent":"K34","ID":39225,"Name":"???","PlayerID":698489071,"Points":9338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39225","ServerKey":"pl181","X":484,"Y":307},{"Bonus":0,"Continent":"K56","ID":39226,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39226","ServerKey":"pl181","X":691,"Y":540},{"Bonus":0,"Continent":"K35","ID":39227,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39227","ServerKey":"pl181","X":518,"Y":310},{"Bonus":7,"Continent":"K33","ID":39228,"Name":"Osada koczownikĂłw","PlayerID":849101962,"Points":4162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39228","ServerKey":"pl181","X":364,"Y":356},{"Bonus":0,"Continent":"K56","ID":39229,"Name":"TWIERDZA .:021:.","PlayerID":7154207,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39229","ServerKey":"pl181","X":683,"Y":569},{"Bonus":0,"Continent":"K35","ID":39230,"Name":"szlachcic;taran 2","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39230","ServerKey":"pl181","X":590,"Y":324},{"Bonus":7,"Continent":"K34","ID":39231,"Name":"Winterhome.056","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39231","ServerKey":"pl181","X":499,"Y":308},{"Bonus":0,"Continent":"K34","ID":39232,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39232","ServerKey":"pl181","X":413,"Y":323},{"Bonus":0,"Continent":"K63","ID":39233,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39233","ServerKey":"pl181","X":336,"Y":608},{"Bonus":0,"Continent":"K35","ID":39234,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39234","ServerKey":"pl181","X":520,"Y":308},{"Bonus":0,"Continent":"K64","ID":39235,"Name":"ZZZ","PlayerID":8980651,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39235","ServerKey":"pl181","X":460,"Y":694},{"Bonus":0,"Continent":"K43","ID":39236,"Name":"Dream on","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39236","ServerKey":"pl181","X":309,"Y":493},{"Bonus":0,"Continent":"K64","ID":39237,"Name":"|048| Bobrek","PlayerID":2585846,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39237","ServerKey":"pl181","X":497,"Y":690},{"Bonus":0,"Continent":"K66","ID":39238,"Name":"014","PlayerID":849099544,"Points":5599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39238","ServerKey":"pl181","X":633,"Y":636},{"Bonus":0,"Continent":"K34","ID":39239,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39239","ServerKey":"pl181","X":427,"Y":322},{"Bonus":0,"Continent":"K43","ID":39240,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39240","ServerKey":"pl181","X":311,"Y":447},{"Bonus":0,"Continent":"K33","ID":39241,"Name":"Szlachcic","PlayerID":3484132,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39241","ServerKey":"pl181","X":383,"Y":345},{"Bonus":0,"Continent":"K56","ID":39242,"Name":"BRZEG JORDANU | 009","PlayerID":9228039,"Points":4309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39242","ServerKey":"pl181","X":694,"Y":523},{"Bonus":0,"Continent":"K66","ID":39243,"Name":"004","PlayerID":698234770,"Points":8991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39243","ServerKey":"pl181","X":648,"Y":631},{"Bonus":0,"Continent":"K65","ID":39244,"Name":"- 146 - SS","PlayerID":849018239,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39244","ServerKey":"pl181","X":545,"Y":686},{"Bonus":0,"Continent":"K56","ID":39245,"Name":"Gryfios 027","PlayerID":698666810,"Points":11880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39245","ServerKey":"pl181","X":685,"Y":557},{"Bonus":0,"Continent":"K36","ID":39246,"Name":"024","PlayerID":699098531,"Points":3689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39246","ServerKey":"pl181","X":606,"Y":339},{"Bonus":0,"Continent":"K66","ID":39247,"Name":"CALL 1053","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39247","ServerKey":"pl181","X":653,"Y":626},{"Bonus":0,"Continent":"K56","ID":39248,"Name":"Didek","PlayerID":849070946,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39248","ServerKey":"pl181","X":676,"Y":581},{"Bonus":0,"Continent":"K63","ID":39249,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39249","ServerKey":"pl181","X":332,"Y":601},{"Bonus":0,"Continent":"K36","ID":39250,"Name":"Wioska barbarzyƄska","PlayerID":699837826,"Points":1522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39250","ServerKey":"pl181","X":640,"Y":368},{"Bonus":0,"Continent":"K65","ID":39251,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39251","ServerKey":"pl181","X":505,"Y":696},{"Bonus":0,"Continent":"K36","ID":39252,"Name":"!36 64 Bilca","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39252","ServerKey":"pl181","X":648,"Y":367},{"Bonus":0,"Continent":"K34","ID":39253,"Name":"[0167]","PlayerID":8630972,"Points":8606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39253","ServerKey":"pl181","X":456,"Y":308},{"Bonus":0,"Continent":"K36","ID":39254,"Name":"XDX","PlayerID":699098531,"Points":6047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39254","ServerKey":"pl181","X":610,"Y":336},{"Bonus":0,"Continent":"K44","ID":39255,"Name":"bucks x kamiiiru","PlayerID":848955783,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39255","ServerKey":"pl181","X":418,"Y":431},{"Bonus":0,"Continent":"K66","ID":39256,"Name":"001","PlayerID":698234770,"Points":9929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39256","ServerKey":"pl181","X":646,"Y":630},{"Bonus":0,"Continent":"K43","ID":39257,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39257","ServerKey":"pl181","X":312,"Y":457},{"Bonus":0,"Continent":"K35","ID":39258,"Name":"AAA","PlayerID":1006847,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39258","ServerKey":"pl181","X":527,"Y":307},{"Bonus":0,"Continent":"K63","ID":39259,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39259","ServerKey":"pl181","X":387,"Y":652},{"Bonus":0,"Continent":"K66","ID":39260,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39260","ServerKey":"pl181","X":635,"Y":645},{"Bonus":0,"Continent":"K36","ID":39261,"Name":"Wioska","PlayerID":849056744,"Points":5836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39261","ServerKey":"pl181","X":626,"Y":356},{"Bonus":0,"Continent":"K46","ID":39263,"Name":"Gattacka","PlayerID":699298370,"Points":9229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39263","ServerKey":"pl181","X":685,"Y":432},{"Bonus":0,"Continent":"K46","ID":39264,"Name":"122","PlayerID":849088515,"Points":5196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39264","ServerKey":"pl181","X":683,"Y":424},{"Bonus":0,"Continent":"K46","ID":39265,"Name":"MM001","PlayerID":848899726,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39265","ServerKey":"pl181","X":698,"Y":494},{"Bonus":0,"Continent":"K66","ID":39266,"Name":"OFF","PlayerID":849014413,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39266","ServerKey":"pl181","X":656,"Y":602},{"Bonus":0,"Continent":"K66","ID":39267,"Name":"~~063~~","PlayerID":7829201,"Points":8360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39267","ServerKey":"pl181","X":628,"Y":645},{"Bonus":0,"Continent":"K66","ID":39268,"Name":"#029#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39268","ServerKey":"pl181","X":624,"Y":651},{"Bonus":0,"Continent":"K53","ID":39269,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":4695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39269","ServerKey":"pl181","X":320,"Y":570},{"Bonus":0,"Continent":"K53","ID":39270,"Name":"C0053","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39270","ServerKey":"pl181","X":306,"Y":524},{"Bonus":0,"Continent":"K46","ID":39271,"Name":"Jan WAFFEN","PlayerID":879782,"Points":7177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39271","ServerKey":"pl181","X":686,"Y":438},{"Bonus":0,"Continent":"K64","ID":39272,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39272","ServerKey":"pl181","X":411,"Y":677},{"Bonus":0,"Continent":"K53","ID":39273,"Name":"B4.","PlayerID":849095482,"Points":3627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39273","ServerKey":"pl181","X":312,"Y":546},{"Bonus":0,"Continent":"K63","ID":39274,"Name":"A 042","PlayerID":6948793,"Points":6552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39274","ServerKey":"pl181","X":364,"Y":635},{"Bonus":0,"Continent":"K34","ID":39275,"Name":"274...gulden","PlayerID":6920960,"Points":10309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39275","ServerKey":"pl181","X":460,"Y":306},{"Bonus":0,"Continent":"K33","ID":39276,"Name":"*199*","PlayerID":699273451,"Points":5949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39276","ServerKey":"pl181","X":367,"Y":373},{"Bonus":0,"Continent":"K56","ID":39277,"Name":"TWIERDZA .:083:.","PlayerID":7154207,"Points":6513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39277","ServerKey":"pl181","X":679,"Y":570},{"Bonus":0,"Continent":"K64","ID":39278,"Name":"Ave Why!","PlayerID":699121671,"Points":6198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39278","ServerKey":"pl181","X":493,"Y":697},{"Bonus":0,"Continent":"K66","ID":39279,"Name":"D018","PlayerID":9023703,"Points":6743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39279","ServerKey":"pl181","X":616,"Y":655},{"Bonus":0,"Continent":"K46","ID":39280,"Name":"042. barbarzyƄska, ha, ha -_-","PlayerID":7494497,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39280","ServerKey":"pl181","X":696,"Y":466},{"Bonus":0,"Continent":"K53","ID":39281,"Name":"Dream on","PlayerID":698962117,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39281","ServerKey":"pl181","X":309,"Y":505},{"Bonus":0,"Continent":"K33","ID":39282,"Name":"Szlachcic","PlayerID":3484132,"Points":10952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39282","ServerKey":"pl181","X":390,"Y":340},{"Bonus":0,"Continent":"K35","ID":39283,"Name":"K35 - [009] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39283","ServerKey":"pl181","X":580,"Y":324},{"Bonus":0,"Continent":"K34","ID":39284,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":4556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39284","ServerKey":"pl181","X":400,"Y":333},{"Bonus":0,"Continent":"K56","ID":39285,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":2145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39285","ServerKey":"pl181","X":687,"Y":559},{"Bonus":0,"Continent":"K46","ID":39286,"Name":"C.006","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39286","ServerKey":"pl181","X":696,"Y":492},{"Bonus":0,"Continent":"K35","ID":39287,"Name":"Wioska barbarzyƄska","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39287","ServerKey":"pl181","X":588,"Y":323},{"Bonus":0,"Continent":"K66","ID":39288,"Name":"023 Borg","PlayerID":699373599,"Points":8021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39288","ServerKey":"pl181","X":629,"Y":648},{"Bonus":0,"Continent":"K66","ID":39289,"Name":"Ronin P","PlayerID":698768565,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39289","ServerKey":"pl181","X":601,"Y":628},{"Bonus":0,"Continent":"K34","ID":39290,"Name":"nowa 1","PlayerID":849104546,"Points":6830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39290","ServerKey":"pl181","X":464,"Y":309},{"Bonus":0,"Continent":"K46","ID":39291,"Name":"OrzeƂ 5","PlayerID":699413581,"Points":8479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39291","ServerKey":"pl181","X":691,"Y":491},{"Bonus":0,"Continent":"K35","ID":39292,"Name":"Winterhome.032","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39292","ServerKey":"pl181","X":511,"Y":310},{"Bonus":0,"Continent":"K36","ID":39293,"Name":"kamilkaze135 #02","PlayerID":699705601,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39293","ServerKey":"pl181","X":657,"Y":393},{"Bonus":0,"Continent":"K36","ID":39294,"Name":"Taran","PlayerID":1990750,"Points":6954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39294","ServerKey":"pl181","X":611,"Y":343},{"Bonus":0,"Continent":"K34","ID":39295,"Name":"[0056]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39295","ServerKey":"pl181","X":447,"Y":314},{"Bonus":0,"Continent":"K33","ID":39296,"Name":"z 00102","PlayerID":3909522,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39296","ServerKey":"pl181","X":358,"Y":372},{"Bonus":0,"Continent":"K34","ID":39298,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39298","ServerKey":"pl181","X":427,"Y":323},{"Bonus":0,"Continent":"K53","ID":39300,"Name":"007","PlayerID":849099463,"Points":9020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39300","ServerKey":"pl181","X":319,"Y":569},{"Bonus":0,"Continent":"K43","ID":39301,"Name":"~ BƁONIE ~","PlayerID":393668,"Points":3548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39301","ServerKey":"pl181","X":316,"Y":446},{"Bonus":0,"Continent":"K35","ID":39302,"Name":"ZwardoƄ","PlayerID":7139853,"Points":2745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39302","ServerKey":"pl181","X":539,"Y":313},{"Bonus":7,"Continent":"K33","ID":39303,"Name":"Wow4","PlayerID":698160606,"Points":11115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39303","ServerKey":"pl181","X":372,"Y":356},{"Bonus":0,"Continent":"K63","ID":39304,"Name":"A 059","PlayerID":698908184,"Points":8814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39304","ServerKey":"pl181","X":360,"Y":637},{"Bonus":0,"Continent":"K35","ID":39305,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":3002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39305","ServerKey":"pl181","X":534,"Y":313},{"Bonus":0,"Continent":"K66","ID":39306,"Name":"002 NAWRA","PlayerID":849048867,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39306","ServerKey":"pl181","X":661,"Y":614},{"Bonus":0,"Continent":"K43","ID":39307,"Name":"Rubiez13","PlayerID":699265922,"Points":6890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39307","ServerKey":"pl181","X":306,"Y":462},{"Bonus":0,"Continent":"K64","ID":39308,"Name":"0021 Wioska barbarzyƄska","PlayerID":849037407,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39308","ServerKey":"pl181","X":449,"Y":689},{"Bonus":0,"Continent":"K56","ID":39309,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":5590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39309","ServerKey":"pl181","X":684,"Y":547},{"Bonus":3,"Continent":"K64","ID":39310,"Name":"#010. Roast Steak Burger","PlayerID":848896948,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39310","ServerKey":"pl181","X":438,"Y":685},{"Bonus":0,"Continent":"K33","ID":39311,"Name":"z 001033","PlayerID":3909522,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39311","ServerKey":"pl181","X":355,"Y":367},{"Bonus":0,"Continent":"K45","ID":39312,"Name":".achim.","PlayerID":6936607,"Points":10276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39312","ServerKey":"pl181","X":521,"Y":412},{"Bonus":0,"Continent":"K36","ID":39313,"Name":"XDX","PlayerID":699098531,"Points":8652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39313","ServerKey":"pl181","X":611,"Y":338},{"Bonus":0,"Continent":"K56","ID":39314,"Name":"C 011","PlayerID":8078914,"Points":7298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39314","ServerKey":"pl181","X":689,"Y":512},{"Bonus":0,"Continent":"K36","ID":39315,"Name":"Wioska barbarzyƄska","PlayerID":698361257,"Points":4923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39315","ServerKey":"pl181","X":642,"Y":364},{"Bonus":0,"Continent":"K64","ID":39316,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39316","ServerKey":"pl181","X":466,"Y":688},{"Bonus":0,"Continent":"K65","ID":39317,"Name":"- 139 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39317","ServerKey":"pl181","X":538,"Y":688},{"Bonus":0,"Continent":"K66","ID":39319,"Name":"Wioska Gusman","PlayerID":8224678,"Points":5024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39319","ServerKey":"pl181","X":655,"Y":606},{"Bonus":0,"Continent":"K64","ID":39320,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39320","ServerKey":"pl181","X":416,"Y":676},{"Bonus":0,"Continent":"K63","ID":39321,"Name":"044 - Nowy Początek...","PlayerID":699269923,"Points":7966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39321","ServerKey":"pl181","X":374,"Y":653},{"Bonus":0,"Continent":"K56","ID":39322,"Name":"N.C. Historia zemsty","PlayerID":849098693,"Points":5933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39322","ServerKey":"pl181","X":672,"Y":587},{"Bonus":0,"Continent":"K65","ID":39323,"Name":"004 normalny chƂopak","PlayerID":849093426,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39323","ServerKey":"pl181","X":525,"Y":691},{"Bonus":0,"Continent":"K34","ID":39324,"Name":"0004","PlayerID":2321390,"Points":4897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39324","ServerKey":"pl181","X":423,"Y":322},{"Bonus":0,"Continent":"K34","ID":39325,"Name":"???","PlayerID":698489071,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39325","ServerKey":"pl181","X":481,"Y":310},{"Bonus":0,"Continent":"K43","ID":39326,"Name":"Suppi","PlayerID":699856962,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39326","ServerKey":"pl181","X":324,"Y":422},{"Bonus":0,"Continent":"K35","ID":39327,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39327","ServerKey":"pl181","X":590,"Y":320},{"Bonus":0,"Continent":"K66","ID":39328,"Name":"#099#","PlayerID":692803,"Points":8661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39328","ServerKey":"pl181","X":631,"Y":638},{"Bonus":0,"Continent":"K65","ID":39329,"Name":"PoƂudnie.011","PlayerID":873575,"Points":10020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39329","ServerKey":"pl181","X":553,"Y":687},{"Bonus":0,"Continent":"K35","ID":39330,"Name":"006. GwĂłĆșdĆș do trumny","PlayerID":699072129,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39330","ServerKey":"pl181","X":557,"Y":319},{"Bonus":0,"Continent":"K35","ID":39331,"Name":"Winterhome.023","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39331","ServerKey":"pl181","X":503,"Y":311},{"Bonus":0,"Continent":"K46","ID":39332,"Name":"087 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39332","ServerKey":"pl181","X":606,"Y":425},{"Bonus":0,"Continent":"K56","ID":39333,"Name":"N.C. NiewesoƂe miasteczko","PlayerID":849098693,"Points":5345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39333","ServerKey":"pl181","X":671,"Y":584},{"Bonus":0,"Continent":"K36","ID":39334,"Name":"kamilkaze135 #07","PlayerID":699705601,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39334","ServerKey":"pl181","X":659,"Y":396},{"Bonus":0,"Continent":"K56","ID":39335,"Name":"031 - San Sebastian","PlayerID":698342159,"Points":8399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39335","ServerKey":"pl181","X":693,"Y":526},{"Bonus":0,"Continent":"K46","ID":39336,"Name":"118","PlayerID":849088515,"Points":7665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39336","ServerKey":"pl181","X":684,"Y":431},{"Bonus":0,"Continent":"K35","ID":39337,"Name":"XDX","PlayerID":699098531,"Points":4138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39337","ServerKey":"pl181","X":589,"Y":327},{"Bonus":0,"Continent":"K65","ID":39338,"Name":"- 135 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39338","ServerKey":"pl181","X":541,"Y":691},{"Bonus":0,"Continent":"K53","ID":39339,"Name":"C0183","PlayerID":8841266,"Points":8018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39339","ServerKey":"pl181","X":305,"Y":537},{"Bonus":0,"Continent":"K43","ID":39340,"Name":"OƂowiany grĂłd","PlayerID":699377401,"Points":4860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39340","ServerKey":"pl181","X":319,"Y":418},{"Bonus":0,"Continent":"K65","ID":39342,"Name":"2.Kartagena","PlayerID":698215322,"Points":4368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39342","ServerKey":"pl181","X":575,"Y":682},{"Bonus":0,"Continent":"K65","ID":39343,"Name":"- 142 - SS","PlayerID":849018239,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39343","ServerKey":"pl181","X":538,"Y":689},{"Bonus":0,"Continent":"K65","ID":39344,"Name":"0314","PlayerID":698659980,"Points":8541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39344","ServerKey":"pl181","X":559,"Y":681},{"Bonus":0,"Continent":"K46","ID":39346,"Name":"[046] Wioska barbarzyƄska","PlayerID":849095068,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39346","ServerKey":"pl181","X":675,"Y":420},{"Bonus":0,"Continent":"K64","ID":39347,"Name":"FP023","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39347","ServerKey":"pl181","X":479,"Y":695},{"Bonus":0,"Continent":"K34","ID":39348,"Name":"0005","PlayerID":2321390,"Points":5493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39348","ServerKey":"pl181","X":422,"Y":322},{"Bonus":0,"Continent":"K66","ID":39349,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39349","ServerKey":"pl181","X":640,"Y":632},{"Bonus":0,"Continent":"K56","ID":39350,"Name":"Gryfios 024","PlayerID":698666810,"Points":11712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39350","ServerKey":"pl181","X":686,"Y":554},{"Bonus":0,"Continent":"K34","ID":39352,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39352","ServerKey":"pl181","X":418,"Y":323},{"Bonus":0,"Continent":"K63","ID":39353,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":3050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39353","ServerKey":"pl181","X":341,"Y":612},{"Bonus":0,"Continent":"K46","ID":39354,"Name":"[038] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39354","ServerKey":"pl181","X":672,"Y":417},{"Bonus":0,"Continent":"K53","ID":39355,"Name":"Dream on","PlayerID":698962117,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39355","ServerKey":"pl181","X":310,"Y":504},{"Bonus":0,"Continent":"K64","ID":39356,"Name":"New World","PlayerID":698152377,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39356","ServerKey":"pl181","X":430,"Y":681},{"Bonus":0,"Continent":"K56","ID":39357,"Name":"Wioska 007","PlayerID":2999957,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39357","ServerKey":"pl181","X":694,"Y":529},{"Bonus":0,"Continent":"K63","ID":39358,"Name":"D.026","PlayerID":849088243,"Points":3161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39358","ServerKey":"pl181","X":389,"Y":655},{"Bonus":0,"Continent":"K34","ID":39359,"Name":"[0148]","PlayerID":8630972,"Points":9187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39359","ServerKey":"pl181","X":451,"Y":310},{"Bonus":0,"Continent":"K35","ID":39360,"Name":"AAA","PlayerID":1006847,"Points":9168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39360","ServerKey":"pl181","X":550,"Y":308},{"Bonus":0,"Continent":"K64","ID":39361,"Name":"~083.","PlayerID":7139820,"Points":5542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39361","ServerKey":"pl181","X":469,"Y":693},{"Bonus":0,"Continent":"K46","ID":39362,"Name":"B#017","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39362","ServerKey":"pl181","X":678,"Y":431},{"Bonus":0,"Continent":"K36","ID":39363,"Name":"kamilkaze135 #09","PlayerID":699705601,"Points":9022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39363","ServerKey":"pl181","X":656,"Y":388},{"Bonus":0,"Continent":"K34","ID":39364,"Name":"#0231 Kamileq69 dar","PlayerID":1238300,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39364","ServerKey":"pl181","X":472,"Y":306},{"Bonus":0,"Continent":"K36","ID":39365,"Name":"023.","PlayerID":698361257,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39365","ServerKey":"pl181","X":643,"Y":375},{"Bonus":0,"Continent":"K35","ID":39366,"Name":"Wioska 2","PlayerID":849099342,"Points":9193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39366","ServerKey":"pl181","X":500,"Y":310},{"Bonus":0,"Continent":"K43","ID":39367,"Name":"Rubiez12","PlayerID":699265922,"Points":6540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39367","ServerKey":"pl181","X":307,"Y":464},{"Bonus":0,"Continent":"K53","ID":39368,"Name":"C0118","PlayerID":8841266,"Points":10416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39368","ServerKey":"pl181","X":311,"Y":531},{"Bonus":0,"Continent":"K66","ID":39369,"Name":"Ć»UBRAWKA B001 marko91","PlayerID":33900,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39369","ServerKey":"pl181","X":622,"Y":617},{"Bonus":0,"Continent":"K35","ID":39370,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":5904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39370","ServerKey":"pl181","X":563,"Y":318},{"Bonus":0,"Continent":"K65","ID":39371,"Name":"poludnie 9","PlayerID":699567608,"Points":8877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39371","ServerKey":"pl181","X":587,"Y":671},{"Bonus":0,"Continent":"K43","ID":39372,"Name":"Dream on","PlayerID":698962117,"Points":9276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39372","ServerKey":"pl181","X":302,"Y":491},{"Bonus":0,"Continent":"K46","ID":39373,"Name":"Argon","PlayerID":699738350,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39373","ServerKey":"pl181","X":678,"Y":418},{"Bonus":0,"Continent":"K34","ID":39374,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39374","ServerKey":"pl181","X":498,"Y":305},{"Bonus":5,"Continent":"K63","ID":39375,"Name":"0116","PlayerID":7085510,"Points":9194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39375","ServerKey":"pl181","X":394,"Y":665},{"Bonus":0,"Continent":"K46","ID":39376,"Name":"008","PlayerID":699738350,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39376","ServerKey":"pl181","X":671,"Y":402},{"Bonus":0,"Continent":"K64","ID":39377,"Name":"xzc","PlayerID":8827094,"Points":8630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39377","ServerKey":"pl181","X":496,"Y":696},{"Bonus":0,"Continent":"K46","ID":39378,"Name":"001","PlayerID":699738350,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39378","ServerKey":"pl181","X":682,"Y":419},{"Bonus":0,"Continent":"K33","ID":39379,"Name":"Szlachcic","PlayerID":698160606,"Points":8279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39379","ServerKey":"pl181","X":384,"Y":345},{"Bonus":0,"Continent":"K66","ID":39380,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39380","ServerKey":"pl181","X":645,"Y":635},{"Bonus":0,"Continent":"K46","ID":39381,"Name":"016. ja wiem","PlayerID":7494497,"Points":9417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39381","ServerKey":"pl181","X":695,"Y":483},{"Bonus":0,"Continent":"K56","ID":39382,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39382","ServerKey":"pl181","X":693,"Y":533},{"Bonus":0,"Continent":"K53","ID":39383,"Name":"C0047","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39383","ServerKey":"pl181","X":312,"Y":522},{"Bonus":0,"Continent":"K36","ID":39384,"Name":"03. Wioska Raukodel","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39384","ServerKey":"pl181","X":653,"Y":379},{"Bonus":0,"Continent":"K64","ID":39385,"Name":"Szale","PlayerID":699777372,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39385","ServerKey":"pl181","X":458,"Y":691},{"Bonus":0,"Continent":"K34","ID":39386,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39386","ServerKey":"pl181","X":411,"Y":324},{"Bonus":0,"Continent":"K36","ID":39387,"Name":"kamilkaze135 #10.1","PlayerID":699705601,"Points":7289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39387","ServerKey":"pl181","X":655,"Y":385},{"Bonus":0,"Continent":"K33","ID":39388,"Name":"Szlachcic","PlayerID":3484132,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39388","ServerKey":"pl181","X":387,"Y":347},{"Bonus":4,"Continent":"K63","ID":39389,"Name":"ManieK","PlayerID":9199885,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39389","ServerKey":"pl181","X":340,"Y":615},{"Bonus":0,"Continent":"K66","ID":39390,"Name":"003 NAWRA","PlayerID":849048867,"Points":10442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39390","ServerKey":"pl181","X":664,"Y":610},{"Bonus":0,"Continent":"K43","ID":39391,"Name":"WoƂowa Turnia","PlayerID":849013126,"Points":7351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39391","ServerKey":"pl181","X":311,"Y":482},{"Bonus":0,"Continent":"K46","ID":39392,"Name":"kamilex","PlayerID":849095435,"Points":3587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39392","ServerKey":"pl181","X":681,"Y":420},{"Bonus":0,"Continent":"K34","ID":39393,"Name":"???","PlayerID":698489071,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39393","ServerKey":"pl181","X":479,"Y":306},{"Bonus":0,"Continent":"K43","ID":39394,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39394","ServerKey":"pl181","X":326,"Y":423},{"Bonus":0,"Continent":"K66","ID":39395,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":9863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39395","ServerKey":"pl181","X":626,"Y":649},{"Bonus":0,"Continent":"K65","ID":39396,"Name":"Wieƛ barbarzyƄcĂłw","PlayerID":698215322,"Points":8371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39396","ServerKey":"pl181","X":582,"Y":680},{"Bonus":0,"Continent":"K66","ID":39397,"Name":"A054","PlayerID":9023703,"Points":6597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39397","ServerKey":"pl181","X":612,"Y":654},{"Bonus":0,"Continent":"K64","ID":39398,"Name":"Szale","PlayerID":698585370,"Points":7637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39398","ServerKey":"pl181","X":459,"Y":686},{"Bonus":4,"Continent":"K65","ID":39399,"Name":"Wyspa_01","PlayerID":2585846,"Points":7589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39399","ServerKey":"pl181","X":515,"Y":694},{"Bonus":0,"Continent":"K43","ID":39400,"Name":"Out of Touch","PlayerID":698962117,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39400","ServerKey":"pl181","X":326,"Y":446},{"Bonus":0,"Continent":"K43","ID":39401,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39401","ServerKey":"pl181","X":311,"Y":464},{"Bonus":0,"Continent":"K43","ID":39402,"Name":"Dream on","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39402","ServerKey":"pl181","X":309,"Y":487},{"Bonus":0,"Continent":"K47","ID":39403,"Name":"ZaƂom","PlayerID":849099640,"Points":11122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39403","ServerKey":"pl181","X":700,"Y":482},{"Bonus":0,"Continent":"K65","ID":39404,"Name":"- 177 - SS","PlayerID":849018239,"Points":7116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39404","ServerKey":"pl181","X":549,"Y":691},{"Bonus":0,"Continent":"K33","ID":39405,"Name":"*019*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39405","ServerKey":"pl181","X":346,"Y":389},{"Bonus":0,"Continent":"K63","ID":39406,"Name":"-002","PlayerID":699269923,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39406","ServerKey":"pl181","X":362,"Y":639},{"Bonus":0,"Continent":"K65","ID":39407,"Name":"K-F 002","PlayerID":7860453,"Points":4122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39407","ServerKey":"pl181","X":551,"Y":692},{"Bonus":0,"Continent":"K65","ID":39408,"Name":"-06-","PlayerID":7860453,"Points":8557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39408","ServerKey":"pl181","X":554,"Y":693},{"Bonus":0,"Continent":"K35","ID":39409,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39409","ServerKey":"pl181","X":548,"Y":307},{"Bonus":0,"Continent":"K53","ID":39410,"Name":"C5.","PlayerID":849095482,"Points":1974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39410","ServerKey":"pl181","X":311,"Y":550},{"Bonus":0,"Continent":"K35","ID":39411,"Name":"005.","PlayerID":699072129,"Points":5126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39411","ServerKey":"pl181","X":566,"Y":320},{"Bonus":0,"Continent":"K53","ID":39412,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":5251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39412","ServerKey":"pl181","X":309,"Y":547},{"Bonus":0,"Continent":"K63","ID":39413,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":8980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39413","ServerKey":"pl181","X":342,"Y":614},{"Bonus":0,"Continent":"K35","ID":39414,"Name":"Bulowice","PlayerID":7139853,"Points":8542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39414","ServerKey":"pl181","X":542,"Y":312},{"Bonus":0,"Continent":"K46","ID":39415,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":4485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39415","ServerKey":"pl181","X":694,"Y":458},{"Bonus":0,"Continent":"K36","ID":39416,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39416","ServerKey":"pl181","X":648,"Y":378},{"Bonus":0,"Continent":"K35","ID":39417,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39417","ServerKey":"pl181","X":581,"Y":320},{"Bonus":0,"Continent":"K56","ID":39418,"Name":"C 012","PlayerID":8078914,"Points":5370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39418","ServerKey":"pl181","X":693,"Y":510},{"Bonus":0,"Continent":"K46","ID":39419,"Name":"Jan NEW1 Ost K","PlayerID":879782,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39419","ServerKey":"pl181","X":688,"Y":454},{"Bonus":0,"Continent":"K63","ID":39420,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39420","ServerKey":"pl181","X":331,"Y":600},{"Bonus":0,"Continent":"K66","ID":39421,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39421","ServerKey":"pl181","X":659,"Y":619},{"Bonus":0,"Continent":"K34","ID":39422,"Name":"227","PlayerID":7271812,"Points":6848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39422","ServerKey":"pl181","X":414,"Y":330},{"Bonus":8,"Continent":"K46","ID":39423,"Name":"Szlachcic","PlayerID":699429153,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39423","ServerKey":"pl181","X":696,"Y":476},{"Bonus":0,"Continent":"K65","ID":39424,"Name":"046 invidia","PlayerID":849093426,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39424","ServerKey":"pl181","X":521,"Y":692},{"Bonus":0,"Continent":"K36","ID":39425,"Name":"003","PlayerID":9060885,"Points":3086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39425","ServerKey":"pl181","X":629,"Y":352},{"Bonus":0,"Continent":"K36","ID":39426,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":10585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39426","ServerKey":"pl181","X":647,"Y":380},{"Bonus":0,"Continent":"K63","ID":39427,"Name":"ByƂeƛ w porządku 007","PlayerID":699269923,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39427","ServerKey":"pl181","X":373,"Y":651},{"Bonus":0,"Continent":"K43","ID":39428,"Name":"Out of Touch","PlayerID":698962117,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39428","ServerKey":"pl181","X":316,"Y":425},{"Bonus":0,"Continent":"K65","ID":39429,"Name":"=01=","PlayerID":9266092,"Points":2120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39429","ServerKey":"pl181","X":582,"Y":681},{"Bonus":0,"Continent":"K53","ID":39430,"Name":"041.","PlayerID":3475079,"Points":1666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39430","ServerKey":"pl181","X":322,"Y":584},{"Bonus":0,"Continent":"K63","ID":39431,"Name":"Wioska dragonk6","PlayerID":699269923,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39431","ServerKey":"pl181","X":392,"Y":661},{"Bonus":0,"Continent":"K53","ID":39432,"Name":"Dream on","PlayerID":698962117,"Points":3386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39432","ServerKey":"pl181","X":305,"Y":508},{"Bonus":0,"Continent":"K46","ID":39433,"Name":"Domi 7","PlayerID":849002796,"Points":7789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39433","ServerKey":"pl181","X":697,"Y":471},{"Bonus":0,"Continent":"K43","ID":39434,"Name":"010. Natolin","PlayerID":849098966,"Points":5588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39434","ServerKey":"pl181","X":315,"Y":449},{"Bonus":0,"Continent":"K66","ID":39435,"Name":"D004","PlayerID":9023703,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39435","ServerKey":"pl181","X":611,"Y":658},{"Bonus":0,"Continent":"K36","ID":39436,"Name":"AAA","PlayerID":7555180,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39436","ServerKey":"pl181","X":625,"Y":345},{"Bonus":0,"Continent":"K35","ID":39437,"Name":"02. George Flinston","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39437","ServerKey":"pl181","X":550,"Y":310},{"Bonus":0,"Continent":"K34","ID":39438,"Name":"#0295 mastaw","PlayerID":1238300,"Points":5533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39438","ServerKey":"pl181","X":471,"Y":307},{"Bonus":8,"Continent":"K46","ID":39439,"Name":"gĂłrska forteca","PlayerID":699738350,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39439","ServerKey":"pl181","X":682,"Y":426},{"Bonus":0,"Continent":"K46","ID":39440,"Name":"I091","PlayerID":699722599,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39440","ServerKey":"pl181","X":683,"Y":443},{"Bonus":0,"Continent":"K63","ID":39441,"Name":"Obok sąsiada 5","PlayerID":699269923,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39441","ServerKey":"pl181","X":382,"Y":649},{"Bonus":0,"Continent":"K43","ID":39442,"Name":"Dream on","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39442","ServerKey":"pl181","X":305,"Y":489},{"Bonus":0,"Continent":"K63","ID":39443,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39443","ServerKey":"pl181","X":343,"Y":614},{"Bonus":5,"Continent":"K35","ID":39444,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39444","ServerKey":"pl181","X":526,"Y":309},{"Bonus":0,"Continent":"K66","ID":39445,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39445","ServerKey":"pl181","X":640,"Y":629},{"Bonus":0,"Continent":"K64","ID":39446,"Name":"xxxx","PlayerID":849037407,"Points":10435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39446","ServerKey":"pl181","X":428,"Y":685},{"Bonus":0,"Continent":"K35","ID":39447,"Name":"Wioska barbarzyƄska","PlayerID":698200480,"Points":2348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39447","ServerKey":"pl181","X":583,"Y":327},{"Bonus":0,"Continent":"K33","ID":39448,"Name":"C02 Gniezno","PlayerID":3909522,"Points":6287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39448","ServerKey":"pl181","X":347,"Y":379},{"Bonus":0,"Continent":"K53","ID":39449,"Name":"Wioska barbarzyƄska","PlayerID":699510045,"Points":2442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39449","ServerKey":"pl181","X":305,"Y":510},{"Bonus":1,"Continent":"K65","ID":39450,"Name":"Osada koczownikĂłw","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39450","ServerKey":"pl181","X":515,"Y":697},{"Bonus":0,"Continent":"K36","ID":39452,"Name":"Wioska barbarzyƄska","PlayerID":848973715,"Points":2500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39452","ServerKey":"pl181","X":638,"Y":357},{"Bonus":0,"Continent":"K53","ID":39453,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39453","ServerKey":"pl181","X":329,"Y":598},{"Bonus":0,"Continent":"K63","ID":39454,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39454","ServerKey":"pl181","X":390,"Y":663},{"Bonus":0,"Continent":"K46","ID":39455,"Name":"[28] barbarzyƄska","PlayerID":699785935,"Points":5047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39455","ServerKey":"pl181","X":679,"Y":418},{"Bonus":0,"Continent":"K65","ID":39456,"Name":"072","PlayerID":2293376,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39456","ServerKey":"pl181","X":542,"Y":686},{"Bonus":0,"Continent":"K65","ID":39457,"Name":"Wyspa_25","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39457","ServerKey":"pl181","X":512,"Y":693},{"Bonus":0,"Continent":"K53","ID":39458,"Name":"EO EO","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39458","ServerKey":"pl181","X":305,"Y":512},{"Bonus":0,"Continent":"K65","ID":39459,"Name":"START 01","PlayerID":848887199,"Points":6702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39459","ServerKey":"pl181","X":584,"Y":673},{"Bonus":0,"Continent":"K33","ID":39460,"Name":"03.Jerry","PlayerID":698807570,"Points":8963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39460","ServerKey":"pl181","X":335,"Y":398},{"Bonus":0,"Continent":"K43","ID":39461,"Name":"Dream on","PlayerID":698962117,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39461","ServerKey":"pl181","X":303,"Y":492},{"Bonus":0,"Continent":"K36","ID":39462,"Name":"!36 64 Tautesti","PlayerID":698361257,"Points":8761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39462","ServerKey":"pl181","X":647,"Y":367},{"Bonus":0,"Continent":"K35","ID":39463,"Name":"B002","PlayerID":699208929,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39463","ServerKey":"pl181","X":518,"Y":302},{"Bonus":0,"Continent":"K63","ID":39464,"Name":"Pd 10","PlayerID":272173,"Points":7160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39464","ServerKey":"pl181","X":363,"Y":631},{"Bonus":0,"Continent":"K35","ID":39465,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":8497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39465","ServerKey":"pl181","X":565,"Y":316},{"Bonus":0,"Continent":"K65","ID":39466,"Name":"2.Jaen","PlayerID":698215322,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39466","ServerKey":"pl181","X":568,"Y":680},{"Bonus":0,"Continent":"K64","ID":39467,"Name":"Ave Why!","PlayerID":699121671,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39467","ServerKey":"pl181","X":488,"Y":695},{"Bonus":0,"Continent":"K63","ID":39468,"Name":"Taran","PlayerID":6180190,"Points":10189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39468","ServerKey":"pl181","X":333,"Y":608},{"Bonus":0,"Continent":"K53","ID":39469,"Name":"046g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39469","ServerKey":"pl181","X":315,"Y":558},{"Bonus":0,"Continent":"K34","ID":39470,"Name":"???","PlayerID":698489071,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39470","ServerKey":"pl181","X":481,"Y":306},{"Bonus":0,"Continent":"K56","ID":39471,"Name":"0000","PlayerID":112401,"Points":2840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39471","ServerKey":"pl181","X":696,"Y":516},{"Bonus":2,"Continent":"K34","ID":39472,"Name":"002.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39472","ServerKey":"pl181","X":439,"Y":314},{"Bonus":0,"Continent":"K36","ID":39474,"Name":"Daleko","PlayerID":7340529,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39474","ServerKey":"pl181","X":649,"Y":373},{"Bonus":0,"Continent":"K53","ID":39475,"Name":"C0074","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39475","ServerKey":"pl181","X":305,"Y":518},{"Bonus":0,"Continent":"K66","ID":39476,"Name":"skiba","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39476","ServerKey":"pl181","X":613,"Y":661},{"Bonus":0,"Continent":"K43","ID":39477,"Name":"z181_20","PlayerID":393668,"Points":8662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39477","ServerKey":"pl181","X":311,"Y":437},{"Bonus":0,"Continent":"K43","ID":39478,"Name":"Dream on","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39478","ServerKey":"pl181","X":301,"Y":495},{"Bonus":0,"Continent":"K34","ID":39479,"Name":"[0071]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39479","ServerKey":"pl181","X":446,"Y":316},{"Bonus":0,"Continent":"K56","ID":39480,"Name":"Padre","PlayerID":849099955,"Points":3527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39480","ServerKey":"pl181","X":671,"Y":591},{"Bonus":6,"Continent":"K43","ID":39481,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39481","ServerKey":"pl181","X":306,"Y":455},{"Bonus":0,"Continent":"K65","ID":39482,"Name":"TARAN","PlayerID":7860453,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39482","ServerKey":"pl181","X":542,"Y":689},{"Bonus":0,"Continent":"K64","ID":39483,"Name":"0.14 Szale","PlayerID":699827112,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39483","ServerKey":"pl181","X":466,"Y":691},{"Bonus":0,"Continent":"K33","ID":39484,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39484","ServerKey":"pl181","X":339,"Y":385},{"Bonus":0,"Continent":"K66","ID":39485,"Name":"podgrzybek","PlayerID":1715091,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39485","ServerKey":"pl181","X":665,"Y":600},{"Bonus":0,"Continent":"K34","ID":39486,"Name":"Winterhome.077","PlayerID":848918380,"Points":8067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39486","ServerKey":"pl181","X":487,"Y":309},{"Bonus":0,"Continent":"K66","ID":39487,"Name":"Ć»UBR .::.Adaczu/14","PlayerID":33900,"Points":3305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39487","ServerKey":"pl181","X":619,"Y":649},{"Bonus":0,"Continent":"K63","ID":39489,"Name":"045 - Nowy Początek...","PlayerID":699269923,"Points":7882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39489","ServerKey":"pl181","X":375,"Y":654},{"Bonus":0,"Continent":"K34","ID":39490,"Name":"060.Stradi","PlayerID":698365960,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39490","ServerKey":"pl181","X":453,"Y":316},{"Bonus":0,"Continent":"K33","ID":39491,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":9208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39491","ServerKey":"pl181","X":342,"Y":389},{"Bonus":0,"Continent":"K64","ID":39492,"Name":"Szale","PlayerID":698585370,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39492","ServerKey":"pl181","X":458,"Y":686},{"Bonus":0,"Continent":"K43","ID":39493,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39493","ServerKey":"pl181","X":311,"Y":453},{"Bonus":0,"Continent":"K36","ID":39494,"Name":"011","PlayerID":8842936,"Points":10418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39494","ServerKey":"pl181","X":617,"Y":337},{"Bonus":0,"Continent":"K34","ID":39496,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39496","ServerKey":"pl181","X":411,"Y":322},{"Bonus":0,"Continent":"K35","ID":39497,"Name":"K35 - [010] Before Land","PlayerID":699088769,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39497","ServerKey":"pl181","X":582,"Y":321},{"Bonus":0,"Continent":"K34","ID":39498,"Name":"062.Stradi","PlayerID":698365960,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39498","ServerKey":"pl181","X":454,"Y":317},{"Bonus":0,"Continent":"K63","ID":39499,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39499","ServerKey":"pl181","X":334,"Y":604},{"Bonus":8,"Continent":"K35","ID":39500,"Name":"Winterhome.010","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39500","ServerKey":"pl181","X":515,"Y":305},{"Bonus":0,"Continent":"K44","ID":39501,"Name":"049","PlayerID":698739350,"Points":6343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39501","ServerKey":"pl181","X":485,"Y":401},{"Bonus":0,"Continent":"K66","ID":39502,"Name":"002","PlayerID":698346318,"Points":7874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39502","ServerKey":"pl181","X":631,"Y":647},{"Bonus":0,"Continent":"K56","ID":39503,"Name":"WschĂłd X9","PlayerID":698562644,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39503","ServerKey":"pl181","X":692,"Y":537},{"Bonus":0,"Continent":"K65","ID":39504,"Name":"PoƂudnie.016","PlayerID":873575,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39504","ServerKey":"pl181","X":554,"Y":683},{"Bonus":0,"Continent":"K35","ID":39505,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39505","ServerKey":"pl181","X":524,"Y":311},{"Bonus":0,"Continent":"K35","ID":39506,"Name":"Twierdza 3","PlayerID":699208929,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39506","ServerKey":"pl181","X":513,"Y":301},{"Bonus":6,"Continent":"K53","ID":39507,"Name":"C2.","PlayerID":849095482,"Points":5679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39507","ServerKey":"pl181","X":312,"Y":547},{"Bonus":0,"Continent":"K63","ID":39509,"Name":"--15--","PlayerID":8877156,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39509","ServerKey":"pl181","X":330,"Y":600},{"Bonus":0,"Continent":"K35","ID":39510,"Name":"ProCzacha","PlayerID":699208929,"Points":9200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39510","ServerKey":"pl181","X":516,"Y":305},{"Bonus":0,"Continent":"K66","ID":39511,"Name":"037","PlayerID":699099811,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39511","ServerKey":"pl181","X":655,"Y":619},{"Bonus":0,"Continent":"K46","ID":39512,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39512","ServerKey":"pl181","X":698,"Y":488},{"Bonus":2,"Continent":"K65","ID":39513,"Name":"TARAN","PlayerID":7860453,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39513","ServerKey":"pl181","X":548,"Y":691},{"Bonus":0,"Continent":"K66","ID":39514,"Name":"MARTUƚ","PlayerID":699639122,"Points":4440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39514","ServerKey":"pl181","X":649,"Y":633},{"Bonus":0,"Continent":"K63","ID":39515,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39515","ServerKey":"pl181","X":390,"Y":660},{"Bonus":0,"Continent":"K43","ID":39516,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39516","ServerKey":"pl181","X":307,"Y":493},{"Bonus":0,"Continent":"K63","ID":39517,"Name":"O107","PlayerID":272173,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39517","ServerKey":"pl181","X":348,"Y":623},{"Bonus":0,"Continent":"K34","ID":39518,"Name":"#0204 Segadorr dar","PlayerID":1238300,"Points":6583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39518","ServerKey":"pl181","X":459,"Y":312},{"Bonus":0,"Continent":"K56","ID":39519,"Name":"BRZEG JORDANU | 010","PlayerID":9228039,"Points":4094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39519","ServerKey":"pl181","X":696,"Y":524},{"Bonus":0,"Continent":"K64","ID":39520,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39520","ServerKey":"pl181","X":448,"Y":684},{"Bonus":0,"Continent":"K65","ID":39521,"Name":"C011","PlayerID":9023703,"Points":8704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39521","ServerKey":"pl181","X":597,"Y":669},{"Bonus":0,"Continent":"K34","ID":39522,"Name":"269...gulden","PlayerID":6920960,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39522","ServerKey":"pl181","X":460,"Y":308},{"Bonus":0,"Continent":"K53","ID":39523,"Name":"009","PlayerID":849099463,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39523","ServerKey":"pl181","X":316,"Y":570},{"Bonus":0,"Continent":"K36","ID":39525,"Name":"=|24|=","PlayerID":9101574,"Points":8630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39525","ServerKey":"pl181","X":663,"Y":386},{"Bonus":0,"Continent":"K43","ID":39527,"Name":"ZA17","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39527","ServerKey":"pl181","X":321,"Y":412},{"Bonus":0,"Continent":"K56","ID":39528,"Name":"TWIERDZA .:066:.","PlayerID":7154207,"Points":8493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39528","ServerKey":"pl181","X":684,"Y":571},{"Bonus":0,"Continent":"K65","ID":39529,"Name":"AG21","PlayerID":699876345,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39529","ServerKey":"pl181","X":592,"Y":669},{"Bonus":0,"Continent":"K43","ID":39530,"Name":"Out of Touch","PlayerID":698962117,"Points":6158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39530","ServerKey":"pl181","X":318,"Y":428},{"Bonus":0,"Continent":"K53","ID":39531,"Name":"Wioska deEdion","PlayerID":6243588,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39531","ServerKey":"pl181","X":364,"Y":586},{"Bonus":0,"Continent":"K53","ID":39532,"Name":"C0002","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39532","ServerKey":"pl181","X":306,"Y":517},{"Bonus":0,"Continent":"K36","ID":39534,"Name":"005 Racecourse","PlayerID":1018357,"Points":7173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39534","ServerKey":"pl181","X":608,"Y":343},{"Bonus":0,"Continent":"K53","ID":39535,"Name":"Wioska barbarzyƄska","PlayerID":699671197,"Points":5508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39535","ServerKey":"pl181","X":318,"Y":573},{"Bonus":2,"Continent":"K65","ID":39536,"Name":"0042","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39536","ServerKey":"pl181","X":565,"Y":683},{"Bonus":0,"Continent":"K56","ID":39537,"Name":"053. Lhotse","PlayerID":1601917,"Points":6349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39537","ServerKey":"pl181","X":688,"Y":549},{"Bonus":0,"Continent":"K35","ID":39538,"Name":"Olsztyn","PlayerID":7139853,"Points":4317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39538","ServerKey":"pl181","X":546,"Y":310},{"Bonus":0,"Continent":"K63","ID":39539,"Name":"Taran","PlayerID":6180190,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39539","ServerKey":"pl181","X":341,"Y":609},{"Bonus":0,"Continent":"K35","ID":39540,"Name":"Narnia","PlayerID":8963720,"Points":5029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39540","ServerKey":"pl181","X":587,"Y":324},{"Bonus":9,"Continent":"K43","ID":39541,"Name":"Suppi","PlayerID":699856962,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39541","ServerKey":"pl181","X":328,"Y":417},{"Bonus":0,"Continent":"K63","ID":39542,"Name":"Kleinfeld","PlayerID":849100352,"Points":2382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39542","ServerKey":"pl181","X":379,"Y":656},{"Bonus":0,"Continent":"K63","ID":39543,"Name":"A 081","PlayerID":272173,"Points":3848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39543","ServerKey":"pl181","X":350,"Y":629},{"Bonus":7,"Continent":"K34","ID":39545,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39545","ServerKey":"pl181","X":417,"Y":323},{"Bonus":0,"Continent":"K34","ID":39546,"Name":"[0177]","PlayerID":8630972,"Points":8682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39546","ServerKey":"pl181","X":459,"Y":315},{"Bonus":0,"Continent":"K46","ID":39547,"Name":"I096","PlayerID":699722599,"Points":7305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39547","ServerKey":"pl181","X":687,"Y":443},{"Bonus":0,"Continent":"K33","ID":39549,"Name":"Wow20","PlayerID":698160606,"Points":3295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39549","ServerKey":"pl181","X":365,"Y":357},{"Bonus":0,"Continent":"K66","ID":39550,"Name":"#101#","PlayerID":692803,"Points":8692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39550","ServerKey":"pl181","X":633,"Y":632},{"Bonus":2,"Continent":"K66","ID":39551,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39551","ServerKey":"pl181","X":638,"Y":643},{"Bonus":0,"Continent":"K46","ID":39552,"Name":"RavkaƄczycy","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39552","ServerKey":"pl181","X":673,"Y":405},{"Bonus":0,"Continent":"K36","ID":39553,"Name":"024 LittleVenecia","PlayerID":9029928,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39553","ServerKey":"pl181","X":644,"Y":372},{"Bonus":0,"Continent":"K33","ID":39554,"Name":"Szlachcic","PlayerID":698160606,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39554","ServerKey":"pl181","X":381,"Y":343},{"Bonus":0,"Continent":"K34","ID":39555,"Name":"[011]","PlayerID":849099160,"Points":7201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39555","ServerKey":"pl181","X":472,"Y":309},{"Bonus":0,"Continent":"K64","ID":39556,"Name":"0.13 Night?","PlayerID":699827112,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39556","ServerKey":"pl181","X":466,"Y":690},{"Bonus":0,"Continent":"K63","ID":39558,"Name":".15. Guerret e","PlayerID":272173,"Points":7838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39558","ServerKey":"pl181","X":353,"Y":625},{"Bonus":0,"Continent":"K46","ID":39559,"Name":"#BJK","PlayerID":699126484,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39559","ServerKey":"pl181","X":697,"Y":491},{"Bonus":0,"Continent":"K36","ID":39560,"Name":"067","PlayerID":849010255,"Points":11611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39560","ServerKey":"pl181","X":632,"Y":355},{"Bonus":0,"Continent":"K46","ID":39561,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39561","ServerKey":"pl181","X":695,"Y":480},{"Bonus":0,"Continent":"K53","ID":39562,"Name":"C0086","PlayerID":8841266,"Points":10304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39562","ServerKey":"pl181","X":305,"Y":529},{"Bonus":0,"Continent":"K33","ID":39563,"Name":"z 001029","PlayerID":3909522,"Points":9405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39563","ServerKey":"pl181","X":360,"Y":369},{"Bonus":0,"Continent":"K47","ID":39564,"Name":"DaSpeDa","PlayerID":849099640,"Points":8115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39564","ServerKey":"pl181","X":701,"Y":486},{"Bonus":0,"Continent":"K34","ID":39565,"Name":"[0045]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39565","ServerKey":"pl181","X":433,"Y":316},{"Bonus":0,"Continent":"K44","ID":39566,"Name":"PRO8L3M","PlayerID":7491093,"Points":6106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39566","ServerKey":"pl181","X":466,"Y":492},{"Bonus":0,"Continent":"K65","ID":39567,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39567","ServerKey":"pl181","X":507,"Y":697},{"Bonus":0,"Continent":"K66","ID":39568,"Name":"Swoja8","PlayerID":6528152,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39568","ServerKey":"pl181","X":606,"Y":668},{"Bonus":0,"Continent":"K46","ID":39569,"Name":"B#003","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39569","ServerKey":"pl181","X":693,"Y":449},{"Bonus":0,"Continent":"K34","ID":39570,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39570","ServerKey":"pl181","X":480,"Y":307},{"Bonus":0,"Continent":"K56","ID":39571,"Name":"009 * Lady Porto *","PlayerID":699406750,"Points":8041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39571","ServerKey":"pl181","X":697,"Y":506},{"Bonus":0,"Continent":"K34","ID":39572,"Name":"???","PlayerID":698489071,"Points":11494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39572","ServerKey":"pl181","X":467,"Y":306},{"Bonus":0,"Continent":"K65","ID":39573,"Name":"031 invidia","PlayerID":849093426,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39573","ServerKey":"pl181","X":528,"Y":691},{"Bonus":0,"Continent":"K43","ID":39574,"Name":"Wioska 4","PlayerID":849075836,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39574","ServerKey":"pl181","X":310,"Y":487},{"Bonus":0,"Continent":"K46","ID":39575,"Name":"[045] Wioska barbarzyƄska","PlayerID":849095068,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39575","ServerKey":"pl181","X":676,"Y":420},{"Bonus":0,"Continent":"K53","ID":39576,"Name":"C0264","PlayerID":8841266,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39576","ServerKey":"pl181","X":324,"Y":514},{"Bonus":0,"Continent":"K56","ID":39577,"Name":"Bocianikson020","PlayerID":7528491,"Points":4472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39577","ServerKey":"pl181","X":682,"Y":561},{"Bonus":0,"Continent":"K34","ID":39578,"Name":"[0078]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39578","ServerKey":"pl181","X":442,"Y":316},{"Bonus":0,"Continent":"K33","ID":39579,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39579","ServerKey":"pl181","X":338,"Y":392},{"Bonus":0,"Continent":"K53","ID":39580,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39580","ServerKey":"pl181","X":308,"Y":516},{"Bonus":0,"Continent":"K56","ID":39581,"Name":"TWIERDZA .:091:.","PlayerID":7154207,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39581","ServerKey":"pl181","X":680,"Y":577},{"Bonus":0,"Continent":"K42","ID":39582,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39582","ServerKey":"pl181","X":299,"Y":496},{"Bonus":0,"Continent":"K46","ID":39583,"Name":"06. Santiago","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39583","ServerKey":"pl181","X":690,"Y":478},{"Bonus":0,"Continent":"K65","ID":39584,"Name":"103","PlayerID":849097799,"Points":9228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39584","ServerKey":"pl181","X":590,"Y":668},{"Bonus":0,"Continent":"K36","ID":39585,"Name":"Wioska Plls","PlayerID":1086351,"Points":2953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39585","ServerKey":"pl181","X":666,"Y":399},{"Bonus":0,"Continent":"K53","ID":39586,"Name":"001","PlayerID":698356304,"Points":8464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39586","ServerKey":"pl181","X":310,"Y":506},{"Bonus":0,"Continent":"K35","ID":39587,"Name":"AAA","PlayerID":1006847,"Points":9065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39587","ServerKey":"pl181","X":542,"Y":313},{"Bonus":0,"Continent":"K36","ID":39588,"Name":"XDX","PlayerID":699098531,"Points":7059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39588","ServerKey":"pl181","X":608,"Y":334},{"Bonus":0,"Continent":"K65","ID":39590,"Name":"079 invidia","PlayerID":849093426,"Points":7732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39590","ServerKey":"pl181","X":526,"Y":695},{"Bonus":0,"Continent":"K43","ID":39592,"Name":"Out of Touch","PlayerID":698962117,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39592","ServerKey":"pl181","X":321,"Y":422},{"Bonus":0,"Continent":"K53","ID":39594,"Name":"C0069","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39594","ServerKey":"pl181","X":308,"Y":522},{"Bonus":0,"Continent":"K66","ID":39595,"Name":"Ć»UBR .::.Adaczu/15","PlayerID":33900,"Points":2293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39595","ServerKey":"pl181","X":624,"Y":649},{"Bonus":0,"Continent":"K63","ID":39596,"Name":".08. Silver Gate b","PlayerID":272173,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39596","ServerKey":"pl181","X":356,"Y":625},{"Bonus":0,"Continent":"K63","ID":39598,"Name":"A 069","PlayerID":699269923,"Points":5902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39598","ServerKey":"pl181","X":362,"Y":643},{"Bonus":0,"Continent":"K43","ID":39599,"Name":"Dream on","PlayerID":698962117,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39599","ServerKey":"pl181","X":301,"Y":498},{"Bonus":0,"Continent":"K36","ID":39600,"Name":"XDX","PlayerID":699098531,"Points":6328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39600","ServerKey":"pl181","X":613,"Y":338},{"Bonus":0,"Continent":"K35","ID":39601,"Name":"Walhalla","PlayerID":699072129,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39601","ServerKey":"pl181","X":564,"Y":315},{"Bonus":0,"Continent":"K53","ID":39602,"Name":"C0006","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39602","ServerKey":"pl181","X":309,"Y":517},{"Bonus":7,"Continent":"K35","ID":39603,"Name":"AAA","PlayerID":1006847,"Points":9126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39603","ServerKey":"pl181","X":536,"Y":305},{"Bonus":0,"Continent":"K33","ID":39604,"Name":"z 181-A010","PlayerID":3909522,"Points":7943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39604","ServerKey":"pl181","X":353,"Y":379},{"Bonus":0,"Continent":"K56","ID":39605,"Name":"TWIERDZA .:072:.","PlayerID":7154207,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39605","ServerKey":"pl181","X":681,"Y":576},{"Bonus":0,"Continent":"K64","ID":39606,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39606","ServerKey":"pl181","X":431,"Y":682},{"Bonus":0,"Continent":"K43","ID":39607,"Name":"WB22","PlayerID":356642,"Points":3730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39607","ServerKey":"pl181","X":327,"Y":414},{"Bonus":0,"Continent":"K65","ID":39608,"Name":"- 167 - SS","PlayerID":849018239,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39608","ServerKey":"pl181","X":549,"Y":692},{"Bonus":0,"Continent":"K33","ID":39609,"Name":"Szlachcic","PlayerID":3484132,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39609","ServerKey":"pl181","X":388,"Y":341},{"Bonus":0,"Continent":"K53","ID":39610,"Name":"C0070","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39610","ServerKey":"pl181","X":306,"Y":523},{"Bonus":0,"Continent":"K53","ID":39612,"Name":"C0119","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39612","ServerKey":"pl181","X":301,"Y":510},{"Bonus":0,"Continent":"K46","ID":39614,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39614","ServerKey":"pl181","X":691,"Y":477},{"Bonus":0,"Continent":"K35","ID":39615,"Name":"bitwa pod grunwaldem","PlayerID":699208929,"Points":3747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39615","ServerKey":"pl181","X":515,"Y":302},{"Bonus":0,"Continent":"K65","ID":39616,"Name":"s181","PlayerID":7691817,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39616","ServerKey":"pl181","X":555,"Y":686},{"Bonus":4,"Continent":"K43","ID":39617,"Name":"Suppi","PlayerID":699856962,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39617","ServerKey":"pl181","X":324,"Y":420},{"Bonus":0,"Continent":"K33","ID":39618,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39618","ServerKey":"pl181","X":383,"Y":343},{"Bonus":0,"Continent":"K53","ID":39619,"Name":"000 Plutosea","PlayerID":9280477,"Points":7313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39619","ServerKey":"pl181","X":316,"Y":565},{"Bonus":0,"Continent":"K56","ID":39620,"Name":"Didek","PlayerID":849070946,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39620","ServerKey":"pl181","X":680,"Y":583},{"Bonus":0,"Continent":"K64","ID":39621,"Name":"08. Kolorowy Jacuƛ","PlayerID":849092769,"Points":6883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39621","ServerKey":"pl181","X":485,"Y":691},{"Bonus":0,"Continent":"K35","ID":39623,"Name":"ostoja","PlayerID":699208929,"Points":4114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39623","ServerKey":"pl181","X":514,"Y":303},{"Bonus":0,"Continent":"K53","ID":39624,"Name":"C0067","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39624","ServerKey":"pl181","X":306,"Y":526},{"Bonus":0,"Continent":"K36","ID":39626,"Name":"001","PlayerID":9060885,"Points":7061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39626","ServerKey":"pl181","X":622,"Y":347},{"Bonus":0,"Continent":"K43","ID":39627,"Name":"Aleksandria","PlayerID":8048374,"Points":8499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39627","ServerKey":"pl181","X":305,"Y":474},{"Bonus":0,"Continent":"K56","ID":39628,"Name":"Wioska Seba1234567","PlayerID":849099689,"Points":7629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39628","ServerKey":"pl181","X":674,"Y":593},{"Bonus":0,"Continent":"K64","ID":39629,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39629","ServerKey":"pl181","X":408,"Y":676},{"Bonus":0,"Continent":"K66","ID":39630,"Name":"Wioska barbarzyƄska","PlayerID":698346318,"Points":5674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39630","ServerKey":"pl181","X":628,"Y":643},{"Bonus":0,"Continent":"K66","ID":39631,"Name":"D007","PlayerID":9023703,"Points":3707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39631","ServerKey":"pl181","X":610,"Y":660},{"Bonus":0,"Continent":"K66","ID":39632,"Name":"011 Feinster","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39632","ServerKey":"pl181","X":663,"Y":604},{"Bonus":0,"Continent":"K36","ID":39633,"Name":"Klaudek.17","PlayerID":849092309,"Points":4843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39633","ServerKey":"pl181","X":634,"Y":364},{"Bonus":0,"Continent":"K56","ID":39634,"Name":"Wioska Zorro 018","PlayerID":849080702,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39634","ServerKey":"pl181","X":676,"Y":592},{"Bonus":0,"Continent":"K43","ID":39636,"Name":"006","PlayerID":2418364,"Points":6518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39636","ServerKey":"pl181","X":304,"Y":473},{"Bonus":0,"Continent":"K35","ID":39637,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39637","ServerKey":"pl181","X":590,"Y":329},{"Bonus":0,"Continent":"K63","ID":39638,"Name":"Taran","PlayerID":6180190,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39638","ServerKey":"pl181","X":334,"Y":603},{"Bonus":0,"Continent":"K33","ID":39639,"Name":"Szlachcic","PlayerID":3484132,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39639","ServerKey":"pl181","X":379,"Y":342},{"Bonus":0,"Continent":"K46","ID":39640,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":5175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39640","ServerKey":"pl181","X":667,"Y":405},{"Bonus":0,"Continent":"K43","ID":39641,"Name":"Ardea","PlayerID":393668,"Points":12130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39641","ServerKey":"pl181","X":344,"Y":441},{"Bonus":7,"Continent":"K53","ID":39642,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39642","ServerKey":"pl181","X":303,"Y":513},{"Bonus":0,"Continent":"K35","ID":39643,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":10028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39643","ServerKey":"pl181","X":539,"Y":314},{"Bonus":0,"Continent":"K35","ID":39644,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39644","ServerKey":"pl181","X":581,"Y":318},{"Bonus":0,"Continent":"K46","ID":39645,"Name":"55. KaruTown","PlayerID":849060446,"Points":8086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39645","ServerKey":"pl181","X":694,"Y":455},{"Bonus":0,"Continent":"K35","ID":39646,"Name":"Wioska barbarzyƄska 2","PlayerID":849006385,"Points":6357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39646","ServerKey":"pl181","X":599,"Y":328},{"Bonus":0,"Continent":"K33","ID":39648,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":6356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39648","ServerKey":"pl181","X":378,"Y":346},{"Bonus":0,"Continent":"K56","ID":39649,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39649","ServerKey":"pl181","X":696,"Y":501},{"Bonus":0,"Continent":"K43","ID":39650,"Name":"szlon 2","PlayerID":8048374,"Points":10111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39650","ServerKey":"pl181","X":302,"Y":483},{"Bonus":0,"Continent":"K43","ID":39651,"Name":"Dream on","PlayerID":698962117,"Points":8598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39651","ServerKey":"pl181","X":303,"Y":486},{"Bonus":0,"Continent":"K35","ID":39652,"Name":"B.00 duchy serca puszczy","PlayerID":849026145,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39652","ServerKey":"pl181","X":554,"Y":312},{"Bonus":0,"Continent":"K34","ID":39653,"Name":"0006","PlayerID":2321390,"Points":9268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39653","ServerKey":"pl181","X":424,"Y":319},{"Bonus":0,"Continent":"K46","ID":39654,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39654","ServerKey":"pl181","X":695,"Y":479},{"Bonus":0,"Continent":"K65","ID":39655,"Name":"Wioska barbarzyƄska","PlayerID":698215322,"Points":3739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39655","ServerKey":"pl181","X":579,"Y":678},{"Bonus":0,"Continent":"K64","ID":39656,"Name":"Wioska barbarzyƄska","PlayerID":699725436,"Points":6631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39656","ServerKey":"pl181","X":464,"Y":696},{"Bonus":0,"Continent":"K53","ID":39657,"Name":"33.Termopile","PlayerID":698807570,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39657","ServerKey":"pl181","X":352,"Y":503},{"Bonus":2,"Continent":"K36","ID":39658,"Name":"Jedna Jedyna :D","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39658","ServerKey":"pl181","X":635,"Y":354},{"Bonus":0,"Continent":"K64","ID":39659,"Name":"~080.","PlayerID":7139820,"Points":3112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39659","ServerKey":"pl181","X":468,"Y":694},{"Bonus":0,"Continent":"K66","ID":39660,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39660","ServerKey":"pl181","X":655,"Y":622},{"Bonus":0,"Continent":"K66","ID":39661,"Name":"#100#","PlayerID":692803,"Points":8243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39661","ServerKey":"pl181","X":630,"Y":638},{"Bonus":0,"Continent":"K63","ID":39662,"Name":"Taran","PlayerID":6180190,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39662","ServerKey":"pl181","X":342,"Y":609},{"Bonus":0,"Continent":"K33","ID":39663,"Name":"023","PlayerID":8153941,"Points":3590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39663","ServerKey":"pl181","X":398,"Y":332},{"Bonus":3,"Continent":"K65","ID":39664,"Name":"- 130 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39664","ServerKey":"pl181","X":541,"Y":692},{"Bonus":0,"Continent":"K66","ID":39665,"Name":"Wioska barbarzyƄska","PlayerID":698346318,"Points":4939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39665","ServerKey":"pl181","X":629,"Y":644},{"Bonus":0,"Continent":"K33","ID":39666,"Name":"New Land 05","PlayerID":849064752,"Points":3896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39666","ServerKey":"pl181","X":337,"Y":397},{"Bonus":0,"Continent":"K34","ID":39667,"Name":"@09@","PlayerID":699483429,"Points":4924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39667","ServerKey":"pl181","X":409,"Y":326},{"Bonus":0,"Continent":"K46","ID":39668,"Name":"056. UrsynĂłw","PlayerID":7494497,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39668","ServerKey":"pl181","X":695,"Y":476},{"Bonus":0,"Continent":"K66","ID":39670,"Name":"- Bracadabra -","PlayerID":849009623,"Points":7481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39670","ServerKey":"pl181","X":661,"Y":618},{"Bonus":0,"Continent":"K33","ID":39671,"Name":"Szulernia","PlayerID":7249451,"Points":4418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39671","ServerKey":"pl181","X":379,"Y":364},{"Bonus":0,"Continent":"K34","ID":39672,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39672","ServerKey":"pl181","X":496,"Y":303},{"Bonus":0,"Continent":"K64","ID":39673,"Name":"New World","PlayerID":698152377,"Points":7323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39673","ServerKey":"pl181","X":435,"Y":683},{"Bonus":0,"Continent":"K63","ID":39674,"Name":"ByƂeƛ w porządku 004","PlayerID":699269923,"Points":10310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39674","ServerKey":"pl181","X":370,"Y":650},{"Bonus":0,"Continent":"K64","ID":39675,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39675","ServerKey":"pl181","X":424,"Y":680},{"Bonus":0,"Continent":"K36","ID":39676,"Name":"Bekon","PlayerID":698420691,"Points":7219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39676","ServerKey":"pl181","X":624,"Y":353},{"Bonus":0,"Continent":"K53","ID":39677,"Name":"Dream on","PlayerID":698962117,"Points":6785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39677","ServerKey":"pl181","X":308,"Y":507},{"Bonus":0,"Continent":"K65","ID":39678,"Name":"komandos48","PlayerID":7976264,"Points":3710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39678","ServerKey":"pl181","X":500,"Y":697},{"Bonus":0,"Continent":"K66","ID":39679,"Name":"Wioska PavloGS","PlayerID":699639122,"Points":4135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39679","ServerKey":"pl181","X":648,"Y":632},{"Bonus":0,"Continent":"K66","ID":39680,"Name":"D011","PlayerID":9023703,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39680","ServerKey":"pl181","X":613,"Y":659},{"Bonus":0,"Continent":"K33","ID":39681,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":1859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39681","ServerKey":"pl181","X":395,"Y":332},{"Bonus":0,"Continent":"K46","ID":39682,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":8324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39682","ServerKey":"pl181","X":674,"Y":404},{"Bonus":0,"Continent":"K46","ID":39683,"Name":"Jan 002/### Ost","PlayerID":879782,"Points":8331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39683","ServerKey":"pl181","X":690,"Y":454},{"Bonus":0,"Continent":"K65","ID":39684,"Name":"- 170 - SS","PlayerID":849018239,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39684","ServerKey":"pl181","X":554,"Y":689},{"Bonus":0,"Continent":"K43","ID":39685,"Name":"boh81/111","PlayerID":848889556,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39685","ServerKey":"pl181","X":305,"Y":468},{"Bonus":0,"Continent":"K33","ID":39686,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":4938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39686","ServerKey":"pl181","X":395,"Y":337},{"Bonus":0,"Continent":"K63","ID":39687,"Name":"--16--","PlayerID":8877156,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39687","ServerKey":"pl181","X":337,"Y":606},{"Bonus":0,"Continent":"K64","ID":39688,"Name":"R 032 ~KrĂłlestwo Polskie~","PlayerID":699195358,"Points":8765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39688","ServerKey":"pl181","X":496,"Y":694},{"Bonus":0,"Continent":"K43","ID":39689,"Name":"Out of Touch","PlayerID":698962117,"Points":8966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39689","ServerKey":"pl181","X":324,"Y":426},{"Bonus":0,"Continent":"K64","ID":39690,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39690","ServerKey":"pl181","X":433,"Y":685},{"Bonus":0,"Continent":"K34","ID":39691,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39691","ServerKey":"pl181","X":424,"Y":316},{"Bonus":6,"Continent":"K34","ID":39692,"Name":"Not 2 Day","PlayerID":698489071,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39692","ServerKey":"pl181","X":477,"Y":307},{"Bonus":0,"Continent":"K33","ID":39693,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39693","ServerKey":"pl181","X":380,"Y":343},{"Bonus":0,"Continent":"K43","ID":39694,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39694","ServerKey":"pl181","X":330,"Y":404},{"Bonus":0,"Continent":"K33","ID":39695,"Name":"003. Wehrmacht","PlayerID":698807570,"Points":10411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39695","ServerKey":"pl181","X":335,"Y":399},{"Bonus":0,"Continent":"K34","ID":39696,"Name":"???","PlayerID":698489071,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39696","ServerKey":"pl181","X":490,"Y":303},{"Bonus":0,"Continent":"K34","ID":39697,"Name":"#0163 Kamil0ss1","PlayerID":1238300,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39697","ServerKey":"pl181","X":469,"Y":312},{"Bonus":0,"Continent":"K33","ID":39698,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39698","ServerKey":"pl181","X":335,"Y":393},{"Bonus":0,"Continent":"K33","ID":39699,"Name":"z internacionale 01","PlayerID":3909522,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39699","ServerKey":"pl181","X":354,"Y":377},{"Bonus":0,"Continent":"K66","ID":39700,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39700","ServerKey":"pl181","X":649,"Y":623},{"Bonus":0,"Continent":"K46","ID":39701,"Name":"01. Tokio","PlayerID":699804790,"Points":11063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39701","ServerKey":"pl181","X":690,"Y":479},{"Bonus":0,"Continent":"K46","ID":39703,"Name":"Gattacka","PlayerID":699298370,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39703","ServerKey":"pl181","X":679,"Y":431},{"Bonus":0,"Continent":"K35","ID":39704,"Name":"0046","PlayerID":699485250,"Points":4080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39704","ServerKey":"pl181","X":570,"Y":323},{"Bonus":0,"Continent":"K36","ID":39705,"Name":"002","PlayerID":698635863,"Points":9301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39705","ServerKey":"pl181","X":659,"Y":381},{"Bonus":0,"Continent":"K65","ID":39707,"Name":"~069.","PlayerID":7139820,"Points":6737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39707","ServerKey":"pl181","X":528,"Y":689},{"Bonus":0,"Continent":"K56","ID":39708,"Name":"Wioska Zorro 008","PlayerID":849080702,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39708","ServerKey":"pl181","X":668,"Y":594},{"Bonus":0,"Continent":"K53","ID":39709,"Name":"A7.","PlayerID":849095482,"Points":4338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39709","ServerKey":"pl181","X":310,"Y":544},{"Bonus":0,"Continent":"K56","ID":39710,"Name":"TWIERDZA .:044:.","PlayerID":7154207,"Points":10359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39710","ServerKey":"pl181","X":683,"Y":567},{"Bonus":6,"Continent":"K64","ID":39711,"Name":"A000","PlayerID":699725436,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39711","ServerKey":"pl181","X":472,"Y":697},{"Bonus":0,"Continent":"K65","ID":39712,"Name":"Wyspa_39","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39712","ServerKey":"pl181","X":501,"Y":699},{"Bonus":0,"Continent":"K65","ID":39713,"Name":"C015","PlayerID":9023703,"Points":3046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39713","ServerKey":"pl181","X":590,"Y":674},{"Bonus":0,"Continent":"K63","ID":39714,"Name":"D.035","PlayerID":849088243,"Points":4082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39714","ServerKey":"pl181","X":393,"Y":661},{"Bonus":0,"Continent":"K64","ID":39715,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39715","ServerKey":"pl181","X":456,"Y":644},{"Bonus":0,"Continent":"K63","ID":39716,"Name":"psycha sitting","PlayerID":699736927,"Points":6477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39716","ServerKey":"pl181","X":399,"Y":669},{"Bonus":0,"Continent":"K65","ID":39717,"Name":"Wyspa_21","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39717","ServerKey":"pl181","X":507,"Y":693},{"Bonus":0,"Continent":"K63","ID":39718,"Name":"036 - Nowy Początek...","PlayerID":699269923,"Points":9604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39718","ServerKey":"pl181","X":376,"Y":646},{"Bonus":0,"Continent":"K33","ID":39719,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":6433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39719","ServerKey":"pl181","X":351,"Y":368},{"Bonus":0,"Continent":"K34","ID":39720,"Name":"North zeuswielki65","PlayerID":699796330,"Points":2869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39720","ServerKey":"pl181","X":412,"Y":327},{"Bonus":0,"Continent":"K43","ID":39721,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39721","ServerKey":"pl181","X":327,"Y":408},{"Bonus":0,"Continent":"K46","ID":39722,"Name":"002","PlayerID":699738350,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39722","ServerKey":"pl181","X":685,"Y":430},{"Bonus":0,"Continent":"K35","ID":39723,"Name":"K35 - [011] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39723","ServerKey":"pl181","X":582,"Y":322},{"Bonus":0,"Continent":"K66","ID":39724,"Name":"~~049~~","PlayerID":7829201,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39724","ServerKey":"pl181","X":606,"Y":614},{"Bonus":0,"Continent":"K46","ID":39725,"Name":"010","PlayerID":699150527,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39725","ServerKey":"pl181","X":690,"Y":452},{"Bonus":0,"Continent":"K46","ID":39726,"Name":"004.NCT","PlayerID":9180206,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39726","ServerKey":"pl181","X":682,"Y":422},{"Bonus":0,"Continent":"K65","ID":39727,"Name":"Forteca*006*","PlayerID":1078121,"Points":7566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39727","ServerKey":"pl181","X":532,"Y":696},{"Bonus":0,"Continent":"K35","ID":39728,"Name":"K35 - [039] Before Land","PlayerID":699088769,"Points":5864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39728","ServerKey":"pl181","X":583,"Y":325},{"Bonus":0,"Continent":"K56","ID":39729,"Name":"0025. Y -","PlayerID":7125212,"Points":4478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39729","ServerKey":"pl181","X":695,"Y":535},{"Bonus":0,"Continent":"K35","ID":39730,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":6194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39730","ServerKey":"pl181","X":592,"Y":326},{"Bonus":0,"Continent":"K65","ID":39731,"Name":"2.MatarĂł","PlayerID":698215322,"Points":6641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39731","ServerKey":"pl181","X":564,"Y":684},{"Bonus":0,"Continent":"K63","ID":39732,"Name":"Taran","PlayerID":6180190,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39732","ServerKey":"pl181","X":339,"Y":615},{"Bonus":0,"Continent":"K46","ID":39733,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39733","ServerKey":"pl181","X":696,"Y":494},{"Bonus":0,"Continent":"K64","ID":39734,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39734","ServerKey":"pl181","X":405,"Y":675},{"Bonus":0,"Continent":"K64","ID":39735,"Name":"ZZZ","PlayerID":8980651,"Points":4066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39735","ServerKey":"pl181","X":455,"Y":691},{"Bonus":0,"Continent":"K64","ID":39736,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39736","ServerKey":"pl181","X":406,"Y":675},{"Bonus":0,"Continent":"K33","ID":39737,"Name":"*015*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39737","ServerKey":"pl181","X":346,"Y":388},{"Bonus":8,"Continent":"K43","ID":39738,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39738","ServerKey":"pl181","X":314,"Y":455},{"Bonus":0,"Continent":"K53","ID":39739,"Name":"Dream on","PlayerID":698962117,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39739","ServerKey":"pl181","X":303,"Y":510},{"Bonus":0,"Continent":"K66","ID":39740,"Name":"Swoja9","PlayerID":6528152,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39740","ServerKey":"pl181","X":605,"Y":668},{"Bonus":0,"Continent":"K43","ID":39741,"Name":"Niklowy grĂłd","PlayerID":699377401,"Points":7738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39741","ServerKey":"pl181","X":320,"Y":421},{"Bonus":0,"Continent":"K46","ID":39742,"Name":"I102","PlayerID":699722599,"Points":7998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39742","ServerKey":"pl181","X":684,"Y":451},{"Bonus":0,"Continent":"K34","ID":39743,"Name":"@01@","PlayerID":699483429,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39743","ServerKey":"pl181","X":407,"Y":326},{"Bonus":0,"Continent":"K53","ID":39744,"Name":"Wioska barbarzyƄska","PlayerID":848901396,"Points":3649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39744","ServerKey":"pl181","X":311,"Y":554},{"Bonus":0,"Continent":"K34","ID":39745,"Name":"Winterhome.061","PlayerID":848918380,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39745","ServerKey":"pl181","X":492,"Y":301},{"Bonus":0,"Continent":"K63","ID":39746,"Name":"--17--","PlayerID":8877156,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39746","ServerKey":"pl181","X":328,"Y":600},{"Bonus":0,"Continent":"K46","ID":39747,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39747","ServerKey":"pl181","X":673,"Y":403},{"Bonus":0,"Continent":"K66","ID":39748,"Name":"D019","PlayerID":9023703,"Points":1000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39748","ServerKey":"pl181","X":622,"Y":661},{"Bonus":0,"Continent":"K65","ID":39749,"Name":"2.Leon","PlayerID":698215322,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39749","ServerKey":"pl181","X":571,"Y":677},{"Bonus":0,"Continent":"K64","ID":39750,"Name":"Osada 002","PlayerID":848912772,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39750","ServerKey":"pl181","X":400,"Y":619},{"Bonus":0,"Continent":"K36","ID":39751,"Name":"003","PlayerID":698635863,"Points":9794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39751","ServerKey":"pl181","X":659,"Y":382},{"Bonus":0,"Continent":"K66","ID":39752,"Name":"Ć»UBR .::.Adaczu/16","PlayerID":33900,"Points":3442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39752","ServerKey":"pl181","X":624,"Y":650},{"Bonus":0,"Continent":"K46","ID":39753,"Name":"*022*","PlayerID":698670524,"Points":9108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39753","ServerKey":"pl181","X":686,"Y":441},{"Bonus":0,"Continent":"K66","ID":39754,"Name":"D008","PlayerID":9023703,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39754","ServerKey":"pl181","X":611,"Y":663},{"Bonus":0,"Continent":"K63","ID":39755,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":7547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39755","ServerKey":"pl181","X":334,"Y":600},{"Bonus":0,"Continent":"K53","ID":39756,"Name":"C0091","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39756","ServerKey":"pl181","X":302,"Y":522},{"Bonus":0,"Continent":"K36","ID":39757,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":5139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39757","ServerKey":"pl181","X":651,"Y":369},{"Bonus":0,"Continent":"K63","ID":39758,"Name":"Wioska barbarzyƄskam dol","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39758","ServerKey":"pl181","X":394,"Y":669},{"Bonus":4,"Continent":"K64","ID":39759,"Name":"0006 Sir JuriGagarin","PlayerID":849037407,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39759","ServerKey":"pl181","X":442,"Y":691},{"Bonus":0,"Continent":"K56","ID":39760,"Name":"004","PlayerID":699150527,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39760","ServerKey":"pl181","X":697,"Y":516},{"Bonus":0,"Continent":"K34","ID":39761,"Name":"[0061]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39761","ServerKey":"pl181","X":447,"Y":316},{"Bonus":0,"Continent":"K34","ID":39762,"Name":"#0166 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39762","ServerKey":"pl181","X":471,"Y":309},{"Bonus":0,"Continent":"K34","ID":39763,"Name":"Kobior","PlayerID":849072873,"Points":8694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39763","ServerKey":"pl181","X":418,"Y":328},{"Bonus":0,"Continent":"K34","ID":39764,"Name":"- 03 - Nowe","PlayerID":848902744,"Points":8195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39764","ServerKey":"pl181","X":467,"Y":311},{"Bonus":0,"Continent":"K36","ID":39765,"Name":"daleko","PlayerID":699491076,"Points":8808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39765","ServerKey":"pl181","X":664,"Y":386},{"Bonus":0,"Continent":"K43","ID":39766,"Name":"1 CZĘSTOCHOWA","PlayerID":8048374,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39766","ServerKey":"pl181","X":303,"Y":478},{"Bonus":0,"Continent":"K34","ID":39767,"Name":"033","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39767","ServerKey":"pl181","X":456,"Y":309},{"Bonus":0,"Continent":"K53","ID":39768,"Name":"(027)Steen","PlayerID":849098695,"Points":3721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39768","ServerKey":"pl181","X":322,"Y":568},{"Bonus":0,"Continent":"K64","ID":39769,"Name":"Wioska barbarzyƄska","PlayerID":8966820,"Points":5565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39769","ServerKey":"pl181","X":476,"Y":691},{"Bonus":0,"Continent":"K64","ID":39770,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39770","ServerKey":"pl181","X":425,"Y":680},{"Bonus":0,"Continent":"K56","ID":39771,"Name":"WioSTa barbarzyƄska","PlayerID":8096537,"Points":7136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39771","ServerKey":"pl181","X":691,"Y":517},{"Bonus":0,"Continent":"K34","ID":39772,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39772","ServerKey":"pl181","X":484,"Y":302},{"Bonus":0,"Continent":"K64","ID":39773,"Name":"New World","PlayerID":698152377,"Points":6303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39773","ServerKey":"pl181","X":432,"Y":683},{"Bonus":0,"Continent":"K65","ID":39774,"Name":"nr1","PlayerID":364126,"Points":11077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39774","ServerKey":"pl181","X":584,"Y":677},{"Bonus":0,"Continent":"K35","ID":39775,"Name":"AAA","PlayerID":1006847,"Points":3404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39775","ServerKey":"pl181","X":560,"Y":310},{"Bonus":0,"Continent":"K35","ID":39776,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39776","ServerKey":"pl181","X":505,"Y":304},{"Bonus":0,"Continent":"K34","ID":39777,"Name":"#0266 Gwen1","PlayerID":1238300,"Points":6409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39777","ServerKey":"pl181","X":474,"Y":306},{"Bonus":0,"Continent":"K56","ID":39778,"Name":"Kokosanka","PlayerID":7973893,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39778","ServerKey":"pl181","X":678,"Y":570},{"Bonus":0,"Continent":"K53","ID":39779,"Name":"C0007","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39779","ServerKey":"pl181","X":309,"Y":521},{"Bonus":0,"Continent":"K43","ID":39780,"Name":"Rubiez11","PlayerID":699265922,"Points":7125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39780","ServerKey":"pl181","X":310,"Y":467},{"Bonus":0,"Continent":"K65","ID":39781,"Name":"Darma dla zawodnika","PlayerID":8980651,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39781","ServerKey":"pl181","X":515,"Y":699},{"Bonus":0,"Continent":"K46","ID":39782,"Name":"B#004","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39782","ServerKey":"pl181","X":690,"Y":453},{"Bonus":0,"Continent":"K46","ID":39783,"Name":"40. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39783","ServerKey":"pl181","X":692,"Y":454},{"Bonus":0,"Continent":"K56","ID":39784,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39784","ServerKey":"pl181","X":696,"Y":500},{"Bonus":4,"Continent":"K46","ID":39785,"Name":"Ramdzis12","PlayerID":699738350,"Points":7639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39785","ServerKey":"pl181","X":683,"Y":420},{"Bonus":0,"Continent":"K43","ID":39786,"Name":"010","PlayerID":2418364,"Points":3226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39786","ServerKey":"pl181","X":309,"Y":475},{"Bonus":9,"Continent":"K64","ID":39787,"Name":"#016. Christmas Tree","PlayerID":848896948,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39787","ServerKey":"pl181","X":445,"Y":684},{"Bonus":0,"Continent":"K63","ID":39788,"Name":"A 043","PlayerID":272173,"Points":4873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39788","ServerKey":"pl181","X":365,"Y":636},{"Bonus":0,"Continent":"K56","ID":39789,"Name":"Didek","PlayerID":849070946,"Points":5585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39789","ServerKey":"pl181","X":677,"Y":582},{"Bonus":0,"Continent":"K46","ID":39790,"Name":"006","PlayerID":699150527,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39790","ServerKey":"pl181","X":696,"Y":493},{"Bonus":0,"Continent":"K64","ID":39791,"Name":"019# Serena","PlayerID":699605333,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39791","ServerKey":"pl181","X":481,"Y":695},{"Bonus":0,"Continent":"K46","ID":39792,"Name":"Bogine","PlayerID":699738350,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39792","ServerKey":"pl181","X":676,"Y":418},{"Bonus":0,"Continent":"K53","ID":39793,"Name":"Z 002 DzierĆŒoniĂłw","PlayerID":849084740,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39793","ServerKey":"pl181","X":328,"Y":596},{"Bonus":0,"Continent":"K35","ID":39795,"Name":"Merida.waleczna","PlayerID":849083294,"Points":5967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39795","ServerKey":"pl181","X":593,"Y":341},{"Bonus":0,"Continent":"K53","ID":39796,"Name":"000 Plutosea","PlayerID":9280477,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39796","ServerKey":"pl181","X":318,"Y":569},{"Bonus":0,"Continent":"K34","ID":39797,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39797","ServerKey":"pl181","X":486,"Y":301},{"Bonus":0,"Continent":"K53","ID":39798,"Name":"01.wiocha","PlayerID":7183372,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39798","ServerKey":"pl181","X":332,"Y":590},{"Bonus":0,"Continent":"K56","ID":39799,"Name":"022","PlayerID":699150527,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39799","ServerKey":"pl181","X":698,"Y":514},{"Bonus":0,"Continent":"K64","ID":39801,"Name":"6.C","PlayerID":699777372,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39801","ServerKey":"pl181","X":453,"Y":688},{"Bonus":0,"Continent":"K53","ID":39802,"Name":"Wioska l","PlayerID":699671197,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39802","ServerKey":"pl181","X":321,"Y":579},{"Bonus":0,"Continent":"K53","ID":39803,"Name":"C0120","PlayerID":8841266,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39803","ServerKey":"pl181","X":307,"Y":536},{"Bonus":0,"Continent":"K65","ID":39804,"Name":"001","PlayerID":699567608,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39804","ServerKey":"pl181","X":585,"Y":678},{"Bonus":0,"Continent":"K36","ID":39805,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39805","ServerKey":"pl181","X":634,"Y":351},{"Bonus":0,"Continent":"K53","ID":39806,"Name":"B7.","PlayerID":849095482,"Points":2712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39806","ServerKey":"pl181","X":311,"Y":545},{"Bonus":0,"Continent":"K47","ID":39807,"Name":"C.014","PlayerID":9188016,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39807","ServerKey":"pl181","X":700,"Y":490},{"Bonus":0,"Continent":"K53","ID":39808,"Name":"027 Barba 9","PlayerID":926823,"Points":3614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39808","ServerKey":"pl181","X":306,"Y":539},{"Bonus":0,"Continent":"K53","ID":39809,"Name":"C0139","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39809","ServerKey":"pl181","X":312,"Y":531},{"Bonus":0,"Continent":"K43","ID":39810,"Name":"1 IgnacĂłw","PlayerID":8048374,"Points":8535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39810","ServerKey":"pl181","X":302,"Y":479},{"Bonus":0,"Continent":"K43","ID":39811,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39811","ServerKey":"pl181","X":333,"Y":405},{"Bonus":0,"Continent":"K63","ID":39812,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":4182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39812","ServerKey":"pl181","X":396,"Y":668},{"Bonus":0,"Continent":"K63","ID":39813,"Name":"0171","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39813","ServerKey":"pl181","X":372,"Y":641},{"Bonus":0,"Continent":"K46","ID":39814,"Name":"Gattacka","PlayerID":699298370,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39814","ServerKey":"pl181","X":689,"Y":434},{"Bonus":0,"Continent":"K56","ID":39815,"Name":"Ziomek Vampirki:)","PlayerID":849070946,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39815","ServerKey":"pl181","X":681,"Y":579},{"Bonus":4,"Continent":"K34","ID":39816,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39816","ServerKey":"pl181","X":409,"Y":328},{"Bonus":0,"Continent":"K66","ID":39817,"Name":"D002","PlayerID":9023703,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39817","ServerKey":"pl181","X":610,"Y":657},{"Bonus":0,"Continent":"K34","ID":39818,"Name":"@07@","PlayerID":699483429,"Points":7068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39818","ServerKey":"pl181","X":407,"Y":328},{"Bonus":0,"Continent":"K53","ID":39819,"Name":"C0078","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39819","ServerKey":"pl181","X":303,"Y":525},{"Bonus":0,"Continent":"K56","ID":39820,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39820","ServerKey":"pl181","X":695,"Y":517},{"Bonus":0,"Continent":"K35","ID":39821,"Name":"Wioska barbarzyƄska","PlayerID":699710633,"Points":2497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39821","ServerKey":"pl181","X":581,"Y":328},{"Bonus":0,"Continent":"K63","ID":39822,"Name":"Komornicy 015","PlayerID":699336777,"Points":4023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39822","ServerKey":"pl181","X":349,"Y":621},{"Bonus":0,"Continent":"K64","ID":39823,"Name":"Wioska barbarzyƄska","PlayerID":699777372,"Points":5343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39823","ServerKey":"pl181","X":457,"Y":694},{"Bonus":0,"Continent":"K65","ID":39824,"Name":"056","PlayerID":2293376,"Points":9049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39824","ServerKey":"pl181","X":514,"Y":699},{"Bonus":0,"Continent":"K36","ID":39825,"Name":"kamilkaze135 #06","PlayerID":699705601,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39825","ServerKey":"pl181","X":661,"Y":390},{"Bonus":0,"Continent":"K53","ID":39826,"Name":"C0141","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39826","ServerKey":"pl181","X":313,"Y":534},{"Bonus":0,"Continent":"K65","ID":39827,"Name":"123 invidia","PlayerID":849093426,"Points":7420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39827","ServerKey":"pl181","X":514,"Y":698},{"Bonus":0,"Continent":"K63","ID":39828,"Name":"A 035","PlayerID":699269923,"Points":8623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39828","ServerKey":"pl181","X":363,"Y":641},{"Bonus":0,"Continent":"K33","ID":39829,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39829","ServerKey":"pl181","X":338,"Y":387},{"Bonus":0,"Continent":"K35","ID":39830,"Name":"Poiuytrewas","PlayerID":699733098,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39830","ServerKey":"pl181","X":566,"Y":316},{"Bonus":0,"Continent":"K35","ID":39831,"Name":"AAA","PlayerID":1006847,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39831","ServerKey":"pl181","X":546,"Y":306},{"Bonus":0,"Continent":"K47","ID":39832,"Name":"C.010","PlayerID":9188016,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39832","ServerKey":"pl181","X":700,"Y":488},{"Bonus":0,"Continent":"K53","ID":39834,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39834","ServerKey":"pl181","X":327,"Y":598},{"Bonus":0,"Continent":"K33","ID":39835,"Name":"z. Lecimy tu","PlayerID":3909522,"Points":10165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39835","ServerKey":"pl181","X":355,"Y":373},{"Bonus":0,"Continent":"K36","ID":39836,"Name":"022 Fervex","PlayerID":9029928,"Points":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39836","ServerKey":"pl181","X":644,"Y":369},{"Bonus":0,"Continent":"K33","ID":39837,"Name":"Oslandia","PlayerID":849099864,"Points":5676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39837","ServerKey":"pl181","X":379,"Y":345},{"Bonus":0,"Continent":"K63","ID":39838,"Name":"Mroczny Zamek 018","PlayerID":272173,"Points":10173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39838","ServerKey":"pl181","X":352,"Y":630},{"Bonus":0,"Continent":"K36","ID":39839,"Name":"Moldor 6","PlayerID":849049045,"Points":11307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39839","ServerKey":"pl181","X":633,"Y":356},{"Bonus":0,"Continent":"K33","ID":39840,"Name":"z internacionale 008","PlayerID":3909522,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39840","ServerKey":"pl181","X":351,"Y":379},{"Bonus":0,"Continent":"K35","ID":39841,"Name":"AAA","PlayerID":1006847,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39841","ServerKey":"pl181","X":538,"Y":307},{"Bonus":0,"Continent":"K64","ID":39842,"Name":"Szale","PlayerID":698585370,"Points":9770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39842","ServerKey":"pl181","X":462,"Y":691},{"Bonus":0,"Continent":"K46","ID":39843,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39843","ServerKey":"pl181","X":698,"Y":479},{"Bonus":0,"Continent":"K63","ID":39844,"Name":"001","PlayerID":699269923,"Points":6670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39844","ServerKey":"pl181","X":383,"Y":661},{"Bonus":0,"Continent":"K66","ID":39845,"Name":"#090#","PlayerID":692803,"Points":9501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39845","ServerKey":"pl181","X":631,"Y":643},{"Bonus":0,"Continent":"K53","ID":39846,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39846","ServerKey":"pl181","X":309,"Y":555},{"Bonus":0,"Continent":"K35","ID":39847,"Name":"B.07 duchy serca puszczy","PlayerID":849026145,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39847","ServerKey":"pl181","X":554,"Y":317},{"Bonus":0,"Continent":"K53","ID":39848,"Name":"007","PlayerID":8153179,"Points":5654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39848","ServerKey":"pl181","X":313,"Y":553},{"Bonus":6,"Continent":"K56","ID":39849,"Name":"BRZEG JORDANU | 003","PlayerID":9228039,"Points":6591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39849","ServerKey":"pl181","X":694,"Y":525},{"Bonus":0,"Continent":"K35","ID":39850,"Name":"Twierdza 5","PlayerID":699208929,"Points":7289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39850","ServerKey":"pl181","X":509,"Y":301},{"Bonus":0,"Continent":"K56","ID":39851,"Name":"005","PlayerID":7418168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39851","ServerKey":"pl181","X":698,"Y":509},{"Bonus":0,"Continent":"K43","ID":39852,"Name":"Zimowe Majtki","PlayerID":849074508,"Points":2892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39852","ServerKey":"pl181","X":310,"Y":465},{"Bonus":0,"Continent":"K36","ID":39853,"Name":"[001][Chec IT]","PlayerID":699710633,"Points":9896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39853","ServerKey":"pl181","X":606,"Y":331},{"Bonus":0,"Continent":"K34","ID":39854,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39854","ServerKey":"pl181","X":400,"Y":336},{"Bonus":0,"Continent":"K56","ID":39855,"Name":"021","PlayerID":6160655,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39855","ServerKey":"pl181","X":679,"Y":582},{"Bonus":0,"Continent":"K34","ID":39857,"Name":"[0041] XXX","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39857","ServerKey":"pl181","X":437,"Y":317},{"Bonus":0,"Continent":"K53","ID":39858,"Name":"Psycho to Marka, Narka !","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39858","ServerKey":"pl181","X":318,"Y":575},{"Bonus":0,"Continent":"K33","ID":39859,"Name":"z 181-A011","PlayerID":3909522,"Points":6109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39859","ServerKey":"pl181","X":353,"Y":375},{"Bonus":0,"Continent":"K66","ID":39860,"Name":"- Dracabra -","PlayerID":849009623,"Points":6512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39860","ServerKey":"pl181","X":657,"Y":618},{"Bonus":0,"Continent":"K66","ID":39861,"Name":"Wioska barbarzyƄska","PlayerID":1900364,"Points":2826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39861","ServerKey":"pl181","X":655,"Y":611},{"Bonus":0,"Continent":"K36","ID":39863,"Name":"Tu jest przyszƂoƛć","PlayerID":699491076,"Points":7704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39863","ServerKey":"pl181","X":661,"Y":398},{"Bonus":0,"Continent":"K63","ID":39865,"Name":"psycha sitting","PlayerID":699736927,"Points":8129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39865","ServerKey":"pl181","X":397,"Y":669},{"Bonus":0,"Continent":"K66","ID":39867,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39867","ServerKey":"pl181","X":639,"Y":642},{"Bonus":0,"Continent":"K46","ID":39868,"Name":"038. Wioska barbarzyƄska","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39868","ServerKey":"pl181","X":696,"Y":467},{"Bonus":0,"Continent":"K64","ID":39869,"Name":"036Teatr","PlayerID":698620694,"Points":6304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39869","ServerKey":"pl181","X":476,"Y":693},{"Bonus":0,"Continent":"K65","ID":39870,"Name":"***** ***","PlayerID":9091557,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39870","ServerKey":"pl181","X":564,"Y":682},{"Bonus":0,"Continent":"K64","ID":39871,"Name":"komandos48","PlayerID":7976264,"Points":5154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39871","ServerKey":"pl181","X":499,"Y":698},{"Bonus":0,"Continent":"K33","ID":39872,"Name":"8_Franekkimono510_8","PlayerID":849099422,"Points":4074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39872","ServerKey":"pl181","X":364,"Y":359},{"Bonus":0,"Continent":"K34","ID":39873,"Name":"032","PlayerID":2502956,"Points":9911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39873","ServerKey":"pl181","X":453,"Y":306},{"Bonus":0,"Continent":"K43","ID":39874,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39874","ServerKey":"pl181","X":305,"Y":455},{"Bonus":0,"Continent":"K43","ID":39875,"Name":"Dream on","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39875","ServerKey":"pl181","X":306,"Y":475},{"Bonus":0,"Continent":"K66","ID":39876,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":6470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39876","ServerKey":"pl181","X":671,"Y":600},{"Bonus":0,"Continent":"K65","ID":39877,"Name":"Wyspa_34","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39877","ServerKey":"pl181","X":506,"Y":693},{"Bonus":0,"Continent":"K35","ID":39878,"Name":"AAA","PlayerID":1006847,"Points":8941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39878","ServerKey":"pl181","X":551,"Y":314},{"Bonus":0,"Continent":"K46","ID":39879,"Name":"*030*","PlayerID":698670524,"Points":5071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39879","ServerKey":"pl181","X":684,"Y":442},{"Bonus":0,"Continent":"K35","ID":39880,"Name":"B026","PlayerID":699208929,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39880","ServerKey":"pl181","X":514,"Y":305},{"Bonus":0,"Continent":"K57","ID":39881,"Name":"001","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39881","ServerKey":"pl181","X":700,"Y":508},{"Bonus":0,"Continent":"K36","ID":39882,"Name":"Ananasowy GrĂłd","PlayerID":699580120,"Points":4613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39882","ServerKey":"pl181","X":627,"Y":349},{"Bonus":0,"Continent":"K43","ID":39883,"Name":"Out of Touch","PlayerID":698962117,"Points":1657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39883","ServerKey":"pl181","X":315,"Y":435},{"Bonus":0,"Continent":"K33","ID":39884,"Name":"z 181-A012","PlayerID":3909522,"Points":7775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39884","ServerKey":"pl181","X":353,"Y":378},{"Bonus":0,"Continent":"K63","ID":39885,"Name":"Wioska orkakk","PlayerID":7183372,"Points":10097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39885","ServerKey":"pl181","X":335,"Y":606},{"Bonus":0,"Continent":"K36","ID":39886,"Name":"Barbara","PlayerID":849056744,"Points":6414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39886","ServerKey":"pl181","X":613,"Y":336},{"Bonus":0,"Continent":"K53","ID":39887,"Name":"016","PlayerID":849098688,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39887","ServerKey":"pl181","X":309,"Y":542},{"Bonus":0,"Continent":"K34","ID":39888,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39888","ServerKey":"pl181","X":415,"Y":324},{"Bonus":0,"Continent":"K34","ID":39889,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39889","ServerKey":"pl181","X":413,"Y":329},{"Bonus":0,"Continent":"K35","ID":39890,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39890","ServerKey":"pl181","X":587,"Y":325},{"Bonus":0,"Continent":"K46","ID":39891,"Name":"Wioska barbarzyƄska","PlayerID":849095068,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39891","ServerKey":"pl181","X":672,"Y":407},{"Bonus":0,"Continent":"K56","ID":39892,"Name":"014 * Lady Porto *","PlayerID":699406750,"Points":6408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39892","ServerKey":"pl181","X":692,"Y":505},{"Bonus":0,"Continent":"K35","ID":39893,"Name":"Czaniec","PlayerID":7139853,"Points":4524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39893","ServerKey":"pl181","X":541,"Y":308},{"Bonus":6,"Continent":"K53","ID":39894,"Name":"Osada koczownikĂłw","PlayerID":7183372,"Points":5577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39894","ServerKey":"pl181","X":329,"Y":586},{"Bonus":0,"Continent":"K43","ID":39896,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39896","ServerKey":"pl181","X":331,"Y":401},{"Bonus":0,"Continent":"K65","ID":39897,"Name":"015 nie wiem czy bylo warto","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39897","ServerKey":"pl181","X":513,"Y":691},{"Bonus":0,"Continent":"K64","ID":39898,"Name":"A000","PlayerID":699725436,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39898","ServerKey":"pl181","X":470,"Y":696},{"Bonus":0,"Continent":"K64","ID":39899,"Name":"054. F64D","PlayerID":699494488,"Points":9206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39899","ServerKey":"pl181","X":486,"Y":632},{"Bonus":0,"Continent":"K64","ID":39900,"Name":"Wioska barbarzyƄska","PlayerID":699777372,"Points":4747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39900","ServerKey":"pl181","X":459,"Y":690},{"Bonus":0,"Continent":"K46","ID":39901,"Name":"[056] ????","PlayerID":849095068,"Points":7157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39901","ServerKey":"pl181","X":683,"Y":426},{"Bonus":0,"Continent":"K65","ID":39902,"Name":"Wioska","PlayerID":7860453,"Points":4960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39902","ServerKey":"pl181","X":548,"Y":686},{"Bonus":0,"Continent":"K64","ID":39903,"Name":"P|002|","PlayerID":699393742,"Points":7634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39903","ServerKey":"pl181","X":454,"Y":688},{"Bonus":0,"Continent":"K43","ID":39904,"Name":"z181_02","PlayerID":393668,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39904","ServerKey":"pl181","X":313,"Y":440},{"Bonus":0,"Continent":"K65","ID":39905,"Name":"0282","PlayerID":698659980,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39905","ServerKey":"pl181","X":567,"Y":685},{"Bonus":0,"Continent":"K64","ID":39906,"Name":"034","PlayerID":699336777,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39906","ServerKey":"pl181","X":478,"Y":629},{"Bonus":0,"Continent":"K63","ID":39907,"Name":"Mroczny Zamek 024","PlayerID":698908184,"Points":6170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39907","ServerKey":"pl181","X":353,"Y":633},{"Bonus":0,"Continent":"K34","ID":39908,"Name":"[0113]","PlayerID":8630972,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39908","ServerKey":"pl181","X":438,"Y":309},{"Bonus":0,"Continent":"K66","ID":39909,"Name":"014 NAWRA","PlayerID":849048867,"Points":8339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39909","ServerKey":"pl181","X":660,"Y":608},{"Bonus":0,"Continent":"K34","ID":39910,"Name":"???","PlayerID":698489071,"Points":5765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39910","ServerKey":"pl181","X":464,"Y":307},{"Bonus":0,"Continent":"K43","ID":39911,"Name":"::: WEST :::","PlayerID":848917570,"Points":4156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39911","ServerKey":"pl181","X":305,"Y":491},{"Bonus":0,"Continent":"K56","ID":39912,"Name":"004 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39912","ServerKey":"pl181","X":691,"Y":504},{"Bonus":0,"Continent":"K64","ID":39913,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39913","ServerKey":"pl181","X":415,"Y":673},{"Bonus":0,"Continent":"K53","ID":39915,"Name":"Dream on","PlayerID":698962117,"Points":4655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39915","ServerKey":"pl181","X":305,"Y":503},{"Bonus":0,"Continent":"K36","ID":39916,"Name":"kamilkaze135 #02.1","PlayerID":699705601,"Points":6782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39916","ServerKey":"pl181","X":657,"Y":392},{"Bonus":0,"Continent":"K57","ID":39917,"Name":"003","PlayerID":7418168,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39917","ServerKey":"pl181","X":700,"Y":505},{"Bonus":0,"Continent":"K64","ID":39918,"Name":"047","PlayerID":699336777,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39918","ServerKey":"pl181","X":477,"Y":626},{"Bonus":0,"Continent":"K53","ID":39919,"Name":"Taran","PlayerID":6180190,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39919","ServerKey":"pl181","X":325,"Y":591},{"Bonus":0,"Continent":"K65","ID":39920,"Name":"###055###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39920","ServerKey":"pl181","X":590,"Y":673},{"Bonus":0,"Continent":"K63","ID":39921,"Name":"C109","PlayerID":699383279,"Points":4438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39921","ServerKey":"pl181","X":366,"Y":639},{"Bonus":0,"Continent":"K66","ID":39923,"Name":"011","PlayerID":849099544,"Points":6650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39923","ServerKey":"pl181","X":634,"Y":636},{"Bonus":0,"Continent":"K66","ID":39924,"Name":"#027#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39924","ServerKey":"pl181","X":616,"Y":657},{"Bonus":0,"Continent":"K36","ID":39925,"Name":"XDX","PlayerID":699098531,"Points":8119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39925","ServerKey":"pl181","X":609,"Y":339},{"Bonus":0,"Continent":"K63","ID":39926,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39926","ServerKey":"pl181","X":390,"Y":666},{"Bonus":0,"Continent":"K35","ID":39927,"Name":"B.01 duchy serca puszczy","PlayerID":849026145,"Points":7772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39927","ServerKey":"pl181","X":554,"Y":316},{"Bonus":0,"Continent":"K36","ID":39929,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39929","ServerKey":"pl181","X":647,"Y":379},{"Bonus":0,"Continent":"K56","ID":39930,"Name":"010 * Lady Porto *","PlayerID":699406750,"Points":7947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39930","ServerKey":"pl181","X":695,"Y":504},{"Bonus":0,"Continent":"K64","ID":39931,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39931","ServerKey":"pl181","X":436,"Y":674},{"Bonus":0,"Continent":"K66","ID":39932,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39932","ServerKey":"pl181","X":637,"Y":645},{"Bonus":0,"Continent":"K53","ID":39933,"Name":"033","PlayerID":849098688,"Points":3824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39933","ServerKey":"pl181","X":312,"Y":566},{"Bonus":0,"Continent":"K66","ID":39934,"Name":"Wioska Sir Lewan","PlayerID":2362058,"Points":9069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39934","ServerKey":"pl181","X":663,"Y":615},{"Bonus":3,"Continent":"K56","ID":39935,"Name":"005 * Lady Porto *","PlayerID":699406750,"Points":12135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39935","ServerKey":"pl181","X":695,"Y":506},{"Bonus":0,"Continent":"K46","ID":39936,"Name":"Gattacka","PlayerID":699298370,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39936","ServerKey":"pl181","X":688,"Y":432},{"Bonus":0,"Continent":"K35","ID":39938,"Name":"044 InnyNizWszyscy","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39938","ServerKey":"pl181","X":536,"Y":387},{"Bonus":0,"Continent":"K33","ID":39939,"Name":"Szlachcic","PlayerID":3484132,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39939","ServerKey":"pl181","X":397,"Y":356},{"Bonus":0,"Continent":"K45","ID":39940,"Name":"Szlachcic !!!","PlayerID":699098531,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39940","ServerKey":"pl181","X":506,"Y":476},{"Bonus":0,"Continent":"K36","ID":39941,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39941","ServerKey":"pl181","X":631,"Y":351},{"Bonus":0,"Continent":"K56","ID":39942,"Name":"TWIERDZA .:020:.","PlayerID":7154207,"Points":10355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39942","ServerKey":"pl181","X":684,"Y":572},{"Bonus":6,"Continent":"K36","ID":39943,"Name":"!36 63 Nicani","PlayerID":698361257,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39943","ServerKey":"pl181","X":636,"Y":364},{"Bonus":0,"Continent":"K46","ID":39944,"Name":"033 barbarzyƄska","PlayerID":9238175,"Points":7821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39944","ServerKey":"pl181","X":638,"Y":422},{"Bonus":0,"Continent":"K66","ID":39945,"Name":"Zagroda","PlayerID":6528152,"Points":8419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39945","ServerKey":"pl181","X":603,"Y":671},{"Bonus":0,"Continent":"K36","ID":39946,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":3195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39946","ServerKey":"pl181","X":651,"Y":383},{"Bonus":0,"Continent":"K36","ID":39947,"Name":"okk","PlayerID":699738350,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39947","ServerKey":"pl181","X":654,"Y":398},{"Bonus":0,"Continent":"K63","ID":39948,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39948","ServerKey":"pl181","X":335,"Y":612},{"Bonus":0,"Continent":"K46","ID":39949,"Name":"OrzeƂ 7","PlayerID":699413581,"Points":6482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39949","ServerKey":"pl181","X":696,"Y":485},{"Bonus":0,"Continent":"K46","ID":39950,"Name":"[004] Shitstorm!","PlayerID":849095068,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39950","ServerKey":"pl181","X":686,"Y":428},{"Bonus":0,"Continent":"K36","ID":39951,"Name":"!36 74 Costisa","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39951","ServerKey":"pl181","X":648,"Y":371},{"Bonus":0,"Continent":"K46","ID":39952,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39952","ServerKey":"pl181","X":691,"Y":495},{"Bonus":0,"Continent":"K33","ID":39953,"Name":"Szlachcic","PlayerID":698160606,"Points":6468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39953","ServerKey":"pl181","X":377,"Y":352},{"Bonus":0,"Continent":"K43","ID":39954,"Name":"FENDI","PlayerID":699794765,"Points":5594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39954","ServerKey":"pl181","X":311,"Y":462},{"Bonus":0,"Continent":"K34","ID":39955,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39955","ServerKey":"pl181","X":418,"Y":327},{"Bonus":0,"Continent":"K35","ID":39956,"Name":"AndrychĂłw","PlayerID":7139853,"Points":7026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39956","ServerKey":"pl181","X":541,"Y":311},{"Bonus":0,"Continent":"K64","ID":39957,"Name":"FP012","PlayerID":699605333,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39957","ServerKey":"pl181","X":479,"Y":696},{"Bonus":0,"Continent":"K35","ID":39958,"Name":"B003","PlayerID":699208929,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39958","ServerKey":"pl181","X":518,"Y":303},{"Bonus":0,"Continent":"K35","ID":39959,"Name":"B.09 duchy serca puszczy","PlayerID":849026145,"Points":2276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39959","ServerKey":"pl181","X":552,"Y":314},{"Bonus":0,"Continent":"K63","ID":39960,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39960","ServerKey":"pl181","X":387,"Y":656},{"Bonus":0,"Continent":"K46","ID":39961,"Name":"009. BiaƂoƂęka","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39961","ServerKey":"pl181","X":693,"Y":472},{"Bonus":0,"Continent":"K36","ID":39963,"Name":"=|21|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39963","ServerKey":"pl181","X":666,"Y":390},{"Bonus":0,"Continent":"K36","ID":39964,"Name":"!!36 85 Dumbravei","PlayerID":698361257,"Points":8962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39964","ServerKey":"pl181","X":658,"Y":389},{"Bonus":0,"Continent":"K66","ID":39965,"Name":"Wioska 073","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39965","ServerKey":"pl181","X":663,"Y":601},{"Bonus":0,"Continent":"K64","ID":39966,"Name":"0.15 Szale","PlayerID":699725436,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39966","ServerKey":"pl181","X":468,"Y":693},{"Bonus":0,"Continent":"K35","ID":39967,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39967","ServerKey":"pl181","X":530,"Y":306},{"Bonus":0,"Continent":"K65","ID":39968,"Name":"###056###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39968","ServerKey":"pl181","X":595,"Y":672},{"Bonus":0,"Continent":"K53","ID":39969,"Name":"C0193","PlayerID":8841266,"Points":6703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39969","ServerKey":"pl181","X":302,"Y":528},{"Bonus":0,"Continent":"K66","ID":39970,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39970","ServerKey":"pl181","X":654,"Y":621},{"Bonus":0,"Continent":"K34","ID":39971,"Name":"005.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39971","ServerKey":"pl181","X":441,"Y":314},{"Bonus":0,"Continent":"K65","ID":39972,"Name":"089 invidia","PlayerID":849093426,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39972","ServerKey":"pl181","X":516,"Y":698},{"Bonus":0,"Continent":"K53","ID":39973,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39973","ServerKey":"pl181","X":309,"Y":559},{"Bonus":0,"Continent":"K64","ID":39974,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39974","ServerKey":"pl181","X":401,"Y":668},{"Bonus":0,"Continent":"K46","ID":39975,"Name":"050. Wioska barbarzyƄska","PlayerID":7494497,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39975","ServerKey":"pl181","X":691,"Y":468},{"Bonus":0,"Continent":"K65","ID":39976,"Name":"Wioska Wiki 7","PlayerID":849100354,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39976","ServerKey":"pl181","X":527,"Y":696},{"Bonus":0,"Continent":"K43","ID":39977,"Name":"Boh81/01s","PlayerID":848889556,"Points":9198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39977","ServerKey":"pl181","X":306,"Y":469},{"Bonus":0,"Continent":"K56","ID":39978,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":4014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39978","ServerKey":"pl181","X":684,"Y":563},{"Bonus":0,"Continent":"K46","ID":39979,"Name":"008","PlayerID":699150527,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39979","ServerKey":"pl181","X":687,"Y":446},{"Bonus":0,"Continent":"K65","ID":39980,"Name":"Forteca*005*","PlayerID":1078121,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39980","ServerKey":"pl181","X":534,"Y":695},{"Bonus":0,"Continent":"K74","ID":39981,"Name":"043. Night Raid","PlayerID":699684062,"Points":7083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39981","ServerKey":"pl181","X":489,"Y":700},{"Bonus":0,"Continent":"K66","ID":39982,"Name":"#088#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39982","ServerKey":"pl181","X":619,"Y":659},{"Bonus":0,"Continent":"K74","ID":39983,"Name":"023# Xenia","PlayerID":3933666,"Points":5402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39983","ServerKey":"pl181","X":488,"Y":700},{"Bonus":0,"Continent":"K56","ID":39984,"Name":"011 * Lady Porto *","PlayerID":699406750,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39984","ServerKey":"pl181","X":691,"Y":505},{"Bonus":0,"Continent":"K74","ID":39985,"Name":"042. Night Raid","PlayerID":699684062,"Points":5058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39985","ServerKey":"pl181","X":489,"Y":701},{"Bonus":0,"Continent":"K64","ID":39986,"Name":"R 029 ~Rivendell~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39986","ServerKey":"pl181","X":495,"Y":694},{"Bonus":0,"Continent":"K64","ID":39987,"Name":"033# Zoe","PlayerID":3933666,"Points":4345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39987","ServerKey":"pl181","X":483,"Y":692},{"Bonus":0,"Continent":"K43","ID":39988,"Name":"WB10","PlayerID":356642,"Points":6428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39988","ServerKey":"pl181","X":323,"Y":412},{"Bonus":0,"Continent":"K64","ID":39989,"Name":"xzc","PlayerID":8827094,"Points":8484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39989","ServerKey":"pl181","X":498,"Y":698},{"Bonus":0,"Continent":"K53","ID":39990,"Name":"Wioska barbarzyƄska","PlayerID":699671197,"Points":8965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39990","ServerKey":"pl181","X":316,"Y":579},{"Bonus":0,"Continent":"K64","ID":39991,"Name":"Wioska Adam19955","PlayerID":849048562,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39991","ServerKey":"pl181","X":444,"Y":683},{"Bonus":0,"Continent":"K56","ID":39992,"Name":"023","PlayerID":699150527,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39992","ServerKey":"pl181","X":699,"Y":516},{"Bonus":0,"Continent":"K33","ID":39993,"Name":"Wow3","PlayerID":698160606,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39993","ServerKey":"pl181","X":372,"Y":357},{"Bonus":0,"Continent":"K56","ID":39994,"Name":"052. Kaczendzonga","PlayerID":1601917,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39994","ServerKey":"pl181","X":691,"Y":548},{"Bonus":0,"Continent":"K65","ID":39995,"Name":"Kotlarka","PlayerID":698723158,"Points":8285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39995","ServerKey":"pl181","X":574,"Y":685},{"Bonus":0,"Continent":"K34","ID":39996,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":1978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39996","ServerKey":"pl181","X":409,"Y":331},{"Bonus":0,"Continent":"K64","ID":39997,"Name":"Wioska KATOZAUR","PlayerID":8827094,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39997","ServerKey":"pl181","X":495,"Y":696},{"Bonus":0,"Continent":"K56","ID":39998,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":8312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39998","ServerKey":"pl181","X":689,"Y":549},{"Bonus":0,"Continent":"K34","ID":39999,"Name":"0013","PlayerID":2321390,"Points":7919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=39999","ServerKey":"pl181","X":423,"Y":323},{"Bonus":0,"Continent":"K53","ID":40000,"Name":"Dream on","PlayerID":698962117,"Points":4258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40000","ServerKey":"pl181","X":304,"Y":503},{"Bonus":0,"Continent":"K65","ID":40001,"Name":"Darma dla zawodnika","PlayerID":848928624,"Points":6243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40001","ServerKey":"pl181","X":513,"Y":697},{"Bonus":0,"Continent":"K56","ID":40002,"Name":"054. Likawitos","PlayerID":1601917,"Points":7205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40002","ServerKey":"pl181","X":690,"Y":552},{"Bonus":0,"Continent":"K56","ID":40003,"Name":"BRZEG JORDANU | 007","PlayerID":9228039,"Points":4439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40003","ServerKey":"pl181","X":692,"Y":520},{"Bonus":0,"Continent":"K63","ID":40004,"Name":"030 - Nowy Początek...","PlayerID":699269923,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40004","ServerKey":"pl181","X":375,"Y":648},{"Bonus":0,"Continent":"K64","ID":40005,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40005","ServerKey":"pl181","X":472,"Y":694},{"Bonus":0,"Continent":"K36","ID":40006,"Name":"004","PlayerID":698635863,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40006","ServerKey":"pl181","X":657,"Y":386},{"Bonus":0,"Continent":"K64","ID":40007,"Name":"R 031","PlayerID":699195358,"Points":9010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40007","ServerKey":"pl181","X":494,"Y":696},{"Bonus":0,"Continent":"K63","ID":40008,"Name":"A 075","PlayerID":272173,"Points":4690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40008","ServerKey":"pl181","X":362,"Y":638},{"Bonus":0,"Continent":"K36","ID":40009,"Name":"village 2","PlayerID":7340529,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40009","ServerKey":"pl181","X":646,"Y":364},{"Bonus":0,"Continent":"K53","ID":40010,"Name":"::: W ::: II","PlayerID":848917570,"Points":2871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40010","ServerKey":"pl181","X":304,"Y":501},{"Bonus":0,"Continent":"K53","ID":40011,"Name":"#Hiroszima","PlayerID":849099601,"Points":2479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40011","ServerKey":"pl181","X":315,"Y":560},{"Bonus":0,"Continent":"K64","ID":40012,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40012","ServerKey":"pl181","X":441,"Y":684},{"Bonus":0,"Continent":"K66","ID":40013,"Name":"Wioska 7","PlayerID":1647052,"Points":1915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40013","ServerKey":"pl181","X":643,"Y":638},{"Bonus":0,"Continent":"K66","ID":40014,"Name":"008 NAWRA","PlayerID":849048867,"Points":8921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40014","ServerKey":"pl181","X":659,"Y":612},{"Bonus":0,"Continent":"K46","ID":40015,"Name":"051. Wioska barbarzyƄska","PlayerID":7494497,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40015","ServerKey":"pl181","X":694,"Y":472},{"Bonus":0,"Continent":"K33","ID":40016,"Name":"Stegny","PlayerID":849099434,"Points":7206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40016","ServerKey":"pl181","X":369,"Y":361},{"Bonus":0,"Continent":"K25","ID":40017,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40017","ServerKey":"pl181","X":500,"Y":297},{"Bonus":0,"Continent":"K66","ID":40018,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40018","ServerKey":"pl181","X":655,"Y":623},{"Bonus":0,"Continent":"K34","ID":40019,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40019","ServerKey":"pl181","X":498,"Y":303},{"Bonus":0,"Continent":"K43","ID":40020,"Name":"Dream on","PlayerID":698962117,"Points":4602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40020","ServerKey":"pl181","X":300,"Y":498},{"Bonus":0,"Continent":"K66","ID":40021,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":3845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40021","ServerKey":"pl181","X":673,"Y":600},{"Bonus":0,"Continent":"K43","ID":40022,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":3289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40022","ServerKey":"pl181","X":329,"Y":410},{"Bonus":4,"Continent":"K36","ID":40023,"Name":"061.","PlayerID":849094609,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40023","ServerKey":"pl181","X":660,"Y":395},{"Bonus":0,"Continent":"K46","ID":40024,"Name":"011","PlayerID":699150527,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40024","ServerKey":"pl181","X":688,"Y":453},{"Bonus":0,"Continent":"K36","ID":40025,"Name":"005","PlayerID":698635863,"Points":10127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40025","ServerKey":"pl181","X":662,"Y":383},{"Bonus":0,"Continent":"K66","ID":40026,"Name":"#026#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40026","ServerKey":"pl181","X":620,"Y":653},{"Bonus":0,"Continent":"K43","ID":40027,"Name":"ZA26","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40027","ServerKey":"pl181","X":321,"Y":414},{"Bonus":0,"Continent":"K54","ID":40028,"Name":"#0112 Zapiecek","PlayerID":698704189,"Points":8615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40028","ServerKey":"pl181","X":478,"Y":540},{"Bonus":0,"Continent":"K65","ID":40029,"Name":"136 invidia","PlayerID":849093426,"Points":8877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40029","ServerKey":"pl181","X":539,"Y":692},{"Bonus":0,"Continent":"K63","ID":40030,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40030","ServerKey":"pl181","X":390,"Y":659},{"Bonus":0,"Continent":"K53","ID":40031,"Name":"Taran","PlayerID":6180190,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40031","ServerKey":"pl181","X":330,"Y":589},{"Bonus":0,"Continent":"K35","ID":40032,"Name":"30. Lets go","PlayerID":849099696,"Points":6493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40032","ServerKey":"pl181","X":559,"Y":318},{"Bonus":0,"Continent":"K63","ID":40033,"Name":"O036","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40033","ServerKey":"pl181","X":344,"Y":626},{"Bonus":0,"Continent":"K63","ID":40034,"Name":"A 101","PlayerID":698908184,"Points":4399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40034","ServerKey":"pl181","X":361,"Y":637},{"Bonus":0,"Continent":"K34","ID":40035,"Name":"013.Stradi","PlayerID":698365960,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40035","ServerKey":"pl181","X":429,"Y":317},{"Bonus":0,"Continent":"K65","ID":40036,"Name":"2.Pampeluna","PlayerID":698215322,"Points":5037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40036","ServerKey":"pl181","X":574,"Y":682},{"Bonus":0,"Continent":"K34","ID":40037,"Name":"#0281 Marass","PlayerID":1238300,"Points":10410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40037","ServerKey":"pl181","X":473,"Y":303},{"Bonus":0,"Continent":"K66","ID":40038,"Name":"Swoja","PlayerID":6528152,"Points":8004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40038","ServerKey":"pl181","X":603,"Y":667},{"Bonus":0,"Continent":"K63","ID":40039,"Name":"Pd 05","PlayerID":698908184,"Points":4451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40039","ServerKey":"pl181","X":359,"Y":633},{"Bonus":0,"Continent":"K53","ID":40040,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":3382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40040","ServerKey":"pl181","X":324,"Y":588},{"Bonus":0,"Continent":"K34","ID":40041,"Name":"[0097]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40041","ServerKey":"pl181","X":433,"Y":319},{"Bonus":0,"Continent":"K64","ID":40042,"Name":"0011 mackobl14","PlayerID":849037407,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40042","ServerKey":"pl181","X":440,"Y":689},{"Bonus":0,"Continent":"K75","ID":40043,"Name":"ZZZ","PlayerID":8980651,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40043","ServerKey":"pl181","X":514,"Y":700},{"Bonus":0,"Continent":"K65","ID":40044,"Name":"Wyspa_30","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40044","ServerKey":"pl181","X":507,"Y":695},{"Bonus":0,"Continent":"K63","ID":40045,"Name":"Wieƛ 05","PlayerID":9199885,"Points":4196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40045","ServerKey":"pl181","X":339,"Y":612},{"Bonus":0,"Continent":"K43","ID":40046,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40046","ServerKey":"pl181","X":331,"Y":400},{"Bonus":0,"Continent":"K43","ID":40047,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40047","ServerKey":"pl181","X":304,"Y":498},{"Bonus":0,"Continent":"K36","ID":40048,"Name":"wioska","PlayerID":848967422,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40048","ServerKey":"pl181","X":622,"Y":343},{"Bonus":0,"Continent":"K36","ID":40049,"Name":"Moldor 12","PlayerID":849049045,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40049","ServerKey":"pl181","X":635,"Y":353},{"Bonus":0,"Continent":"K34","ID":40050,"Name":"[0134]","PlayerID":8630972,"Points":9675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40050","ServerKey":"pl181","X":451,"Y":306},{"Bonus":0,"Continent":"K65","ID":40051,"Name":"Wioska holajza","PlayerID":698723158,"Points":6093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40051","ServerKey":"pl181","X":563,"Y":688},{"Bonus":4,"Continent":"K53","ID":40052,"Name":"002.","PlayerID":3475079,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40052","ServerKey":"pl181","X":321,"Y":589},{"Bonus":0,"Continent":"K63","ID":40053,"Name":"001","PlayerID":8839403,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40053","ServerKey":"pl181","X":389,"Y":665},{"Bonus":0,"Continent":"K33","ID":40054,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40054","ServerKey":"pl181","X":335,"Y":397},{"Bonus":0,"Continent":"K64","ID":40056,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40056","ServerKey":"pl181","X":427,"Y":682},{"Bonus":0,"Continent":"K46","ID":40057,"Name":"009","PlayerID":699150527,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40057","ServerKey":"pl181","X":695,"Y":464},{"Bonus":0,"Continent":"K64","ID":40058,"Name":"ZZZ","PlayerID":8980651,"Points":4792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40058","ServerKey":"pl181","X":455,"Y":694},{"Bonus":0,"Continent":"K35","ID":40059,"Name":"K35 - [028] Before Land","PlayerID":699088769,"Points":7318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40059","ServerKey":"pl181","X":573,"Y":322},{"Bonus":0,"Continent":"K34","ID":40060,"Name":"Winterhome.062","PlayerID":848918380,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40060","ServerKey":"pl181","X":490,"Y":301},{"Bonus":0,"Continent":"K33","ID":40061,"Name":"C05 CheƂmno","PlayerID":3909522,"Points":3626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40061","ServerKey":"pl181","X":348,"Y":377},{"Bonus":0,"Continent":"K36","ID":40062,"Name":"Klaudek20","PlayerID":849092309,"Points":3280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40062","ServerKey":"pl181","X":635,"Y":363},{"Bonus":0,"Continent":"K33","ID":40063,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40063","ServerKey":"pl181","X":335,"Y":396},{"Bonus":0,"Continent":"K66","ID":40064,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40064","ServerKey":"pl181","X":656,"Y":624},{"Bonus":0,"Continent":"K46","ID":40065,"Name":"019. Taka wioska nie istnieje","PlayerID":7494497,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40065","ServerKey":"pl181","X":694,"Y":469},{"Bonus":0,"Continent":"K63","ID":40066,"Name":"O098","PlayerID":272173,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40066","ServerKey":"pl181","X":347,"Y":623},{"Bonus":0,"Continent":"K64","ID":40067,"Name":"#011. Ulryk von Junningen","PlayerID":848896948,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40067","ServerKey":"pl181","X":431,"Y":687},{"Bonus":0,"Continent":"K36","ID":40068,"Name":"006","PlayerID":698635863,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40068","ServerKey":"pl181","X":661,"Y":381},{"Bonus":0,"Continent":"K56","ID":40069,"Name":"001","PlayerID":699150527,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40069","ServerKey":"pl181","X":699,"Y":509},{"Bonus":0,"Continent":"K35","ID":40070,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40070","ServerKey":"pl181","X":500,"Y":307},{"Bonus":0,"Continent":"K65","ID":40071,"Name":"Wyspa_43","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40071","ServerKey":"pl181","X":510,"Y":696},{"Bonus":0,"Continent":"K46","ID":40072,"Name":"Gattacka","PlayerID":699298370,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40072","ServerKey":"pl181","X":678,"Y":424},{"Bonus":0,"Continent":"K66","ID":40073,"Name":"Ć»UBR PSYCHIATRYK 014","PlayerID":33900,"Points":6051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40073","ServerKey":"pl181","X":625,"Y":656},{"Bonus":0,"Continent":"K43","ID":40074,"Name":"Rubiez9","PlayerID":699265922,"Points":8468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40074","ServerKey":"pl181","X":309,"Y":483},{"Bonus":0,"Continent":"K36","ID":40075,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":9193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40075","ServerKey":"pl181","X":652,"Y":373},{"Bonus":0,"Continent":"K33","ID":40077,"Name":"*194*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40077","ServerKey":"pl181","X":367,"Y":359},{"Bonus":0,"Continent":"K56","ID":40078,"Name":"C005","PlayerID":8138506,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40078","ServerKey":"pl181","X":672,"Y":586},{"Bonus":0,"Continent":"K56","ID":40079,"Name":"001 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40079","ServerKey":"pl181","X":696,"Y":507},{"Bonus":0,"Continent":"K64","ID":40080,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40080","ServerKey":"pl181","X":400,"Y":674},{"Bonus":0,"Continent":"K33","ID":40081,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":1743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40081","ServerKey":"pl181","X":332,"Y":392},{"Bonus":0,"Continent":"K65","ID":40082,"Name":"2.Saragossa","PlayerID":698215322,"Points":6099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40082","ServerKey":"pl181","X":573,"Y":682},{"Bonus":0,"Continent":"K34","ID":40083,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40083","ServerKey":"pl181","X":413,"Y":321},{"Bonus":0,"Continent":"K65","ID":40084,"Name":"042 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40084","ServerKey":"pl181","X":529,"Y":692},{"Bonus":0,"Continent":"K33","ID":40085,"Name":"Szlachcic","PlayerID":698160606,"Points":5541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40085","ServerKey":"pl181","X":377,"Y":353},{"Bonus":0,"Continent":"K36","ID":40086,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40086","ServerKey":"pl181","X":669,"Y":399},{"Bonus":0,"Continent":"K66","ID":40087,"Name":"002","PlayerID":849099544,"Points":9145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40087","ServerKey":"pl181","X":639,"Y":634},{"Bonus":0,"Continent":"K35","ID":40088,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":2399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40088","ServerKey":"pl181","X":532,"Y":306},{"Bonus":0,"Continent":"K53","ID":40089,"Name":"Wonderwall","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40089","ServerKey":"pl181","X":325,"Y":552},{"Bonus":0,"Continent":"K66","ID":40090,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40090","ServerKey":"pl181","X":658,"Y":619},{"Bonus":0,"Continent":"K45","ID":40091,"Name":"Osada","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40091","ServerKey":"pl181","X":506,"Y":456},{"Bonus":0,"Continent":"K46","ID":40092,"Name":"Jan Stuttgart K","PlayerID":879782,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40092","ServerKey":"pl181","X":690,"Y":458},{"Bonus":0,"Continent":"K47","ID":40093,"Name":"SokóƂ","PlayerID":849099640,"Points":2892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40093","ServerKey":"pl181","X":703,"Y":481},{"Bonus":0,"Continent":"K43","ID":40094,"Name":"FENDI","PlayerID":699794765,"Points":4500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40094","ServerKey":"pl181","X":307,"Y":459},{"Bonus":0,"Continent":"K46","ID":40095,"Name":"039. Wioska barbarzyƄska","PlayerID":7494497,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40095","ServerKey":"pl181","X":694,"Y":467},{"Bonus":0,"Continent":"K53","ID":40096,"Name":"#qatar","PlayerID":849099601,"Points":4651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40096","ServerKey":"pl181","X":313,"Y":554},{"Bonus":2,"Continent":"K35","ID":40097,"Name":"Osada koczownikĂłw","PlayerID":849044705,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40097","ServerKey":"pl181","X":533,"Y":308},{"Bonus":0,"Continent":"K35","ID":40098,"Name":"Twierdza 4","PlayerID":699208929,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40098","ServerKey":"pl181","X":518,"Y":307},{"Bonus":0,"Continent":"K63","ID":40099,"Name":"032 - Nowy Początek...","PlayerID":699269923,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40099","ServerKey":"pl181","X":373,"Y":646},{"Bonus":0,"Continent":"K35","ID":40100,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40100","ServerKey":"pl181","X":529,"Y":306},{"Bonus":0,"Continent":"K46","ID":40101,"Name":"Bridge","PlayerID":1086351,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40101","ServerKey":"pl181","X":666,"Y":400},{"Bonus":0,"Continent":"K43","ID":40102,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40102","ServerKey":"pl181","X":326,"Y":401},{"Bonus":0,"Continent":"K35","ID":40103,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":2568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40103","ServerKey":"pl181","X":541,"Y":312},{"Bonus":0,"Continent":"K34","ID":40104,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40104","ServerKey":"pl181","X":483,"Y":302},{"Bonus":0,"Continent":"K35","ID":40105,"Name":"K35 - [012] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40105","ServerKey":"pl181","X":576,"Y":321},{"Bonus":0,"Continent":"K63","ID":40106,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":5840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40106","ServerKey":"pl181","X":343,"Y":612},{"Bonus":0,"Continent":"K75","ID":40107,"Name":"xzc","PlayerID":8827094,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40107","ServerKey":"pl181","X":502,"Y":703},{"Bonus":0,"Continent":"K36","ID":40108,"Name":"Na KraƄcu ƚwiata 008","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40108","ServerKey":"pl181","X":629,"Y":347},{"Bonus":0,"Continent":"K35","ID":40109,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":2436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40109","ServerKey":"pl181","X":592,"Y":325},{"Bonus":0,"Continent":"K63","ID":40110,"Name":"O139","PlayerID":272173,"Points":6604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40110","ServerKey":"pl181","X":348,"Y":624},{"Bonus":0,"Continent":"K43","ID":40111,"Name":"z181_17","PlayerID":393668,"Points":9696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40111","ServerKey":"pl181","X":308,"Y":445},{"Bonus":0,"Continent":"K63","ID":40112,"Name":"Wioska Lord Sir szok","PlayerID":8868716,"Points":3412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40112","ServerKey":"pl181","X":389,"Y":660},{"Bonus":0,"Continent":"K34","ID":40113,"Name":"#0211 Segadorr dar","PlayerID":1238300,"Points":7220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40113","ServerKey":"pl181","X":457,"Y":309},{"Bonus":0,"Continent":"K53","ID":40114,"Name":"Z 003","PlayerID":849084740,"Points":7008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40114","ServerKey":"pl181","X":328,"Y":595},{"Bonus":0,"Continent":"K36","ID":40115,"Name":"023 Drwal","PlayerID":9029928,"Points":1612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40115","ServerKey":"pl181","X":648,"Y":372},{"Bonus":0,"Continent":"K36","ID":40116,"Name":"!36 75 Fratauti Vechi","PlayerID":698361257,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40116","ServerKey":"pl181","X":652,"Y":372},{"Bonus":0,"Continent":"K65","ID":40117,"Name":"**INTERTWINED*","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40117","ServerKey":"pl181","X":503,"Y":693},{"Bonus":0,"Continent":"K36","ID":40118,"Name":"044","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40118","ServerKey":"pl181","X":631,"Y":353},{"Bonus":0,"Continent":"K66","ID":40119,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40119","ServerKey":"pl181","X":640,"Y":639},{"Bonus":0,"Continent":"K66","ID":40120,"Name":"D016","PlayerID":9023703,"Points":8035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40120","ServerKey":"pl181","X":617,"Y":659},{"Bonus":0,"Continent":"K65","ID":40121,"Name":"Killer Queen","PlayerID":698723158,"Points":3862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40121","ServerKey":"pl181","X":582,"Y":674},{"Bonus":0,"Continent":"K63","ID":40122,"Name":"-002- sz","PlayerID":698908184,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40122","ServerKey":"pl181","X":356,"Y":640},{"Bonus":0,"Continent":"K64","ID":40123,"Name":"023. Night Raid","PlayerID":699684062,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40123","ServerKey":"pl181","X":474,"Y":698},{"Bonus":0,"Continent":"K43","ID":40124,"Name":"Rubiez 8","PlayerID":699265922,"Points":6894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40124","ServerKey":"pl181","X":308,"Y":484},{"Bonus":0,"Continent":"K35","ID":40125,"Name":"K35 - [024] Before Land","PlayerID":699088769,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40125","ServerKey":"pl181","X":582,"Y":323},{"Bonus":0,"Continent":"K33","ID":40126,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40126","ServerKey":"pl181","X":336,"Y":391},{"Bonus":0,"Continent":"K75","ID":40127,"Name":"Darma dla zawodnika","PlayerID":8980651,"Points":6379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40127","ServerKey":"pl181","X":515,"Y":700},{"Bonus":0,"Continent":"K63","ID":40128,"Name":"A 056","PlayerID":699269923,"Points":9392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40128","ServerKey":"pl181","X":362,"Y":641},{"Bonus":0,"Continent":"K44","ID":40129,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40129","ServerKey":"pl181","X":490,"Y":426},{"Bonus":0,"Continent":"K64","ID":40130,"Name":"Szale","PlayerID":699725436,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40130","ServerKey":"pl181","X":468,"Y":690},{"Bonus":0,"Continent":"K66","ID":40131,"Name":"Twierdza","PlayerID":6528152,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40131","ServerKey":"pl181","X":604,"Y":666},{"Bonus":0,"Continent":"K56","ID":40132,"Name":"TWIERDZA .:017:.","PlayerID":7154207,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40132","ServerKey":"pl181","X":688,"Y":564},{"Bonus":0,"Continent":"K35","ID":40133,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":5176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40133","ServerKey":"pl181","X":563,"Y":317},{"Bonus":0,"Continent":"K65","ID":40134,"Name":"001 sadeg","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40134","ServerKey":"pl181","X":518,"Y":698},{"Bonus":0,"Continent":"K46","ID":40135,"Name":"100 Konan","PlayerID":7092442,"Points":8210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40135","ServerKey":"pl181","X":687,"Y":437},{"Bonus":0,"Continent":"K65","ID":40137,"Name":"###001###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40137","ServerKey":"pl181","X":593,"Y":685},{"Bonus":0,"Continent":"K46","ID":40138,"Name":"061. WƂochy","PlayerID":7494497,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40138","ServerKey":"pl181","X":694,"Y":476},{"Bonus":0,"Continent":"K46","ID":40139,"Name":"Bydlak777","PlayerID":7973893,"Points":2896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40139","ServerKey":"pl181","X":648,"Y":439},{"Bonus":0,"Continent":"K36","ID":40140,"Name":"XDX","PlayerID":699098531,"Points":8864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40140","ServerKey":"pl181","X":607,"Y":334},{"Bonus":1,"Continent":"K35","ID":40141,"Name":"AAA","PlayerID":1006847,"Points":8994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40141","ServerKey":"pl181","X":551,"Y":306},{"Bonus":0,"Continent":"K66","ID":40142,"Name":"Wioska 6","PlayerID":1647052,"Points":3515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40142","ServerKey":"pl181","X":642,"Y":631},{"Bonus":0,"Continent":"K63","ID":40143,"Name":"-001-","PlayerID":699269923,"Points":9864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40143","ServerKey":"pl181","X":376,"Y":647},{"Bonus":0,"Continent":"K43","ID":40144,"Name":"Out of Touch","PlayerID":698962117,"Points":6569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40144","ServerKey":"pl181","X":316,"Y":429},{"Bonus":0,"Continent":"K36","ID":40145,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":6654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40145","ServerKey":"pl181","X":658,"Y":387},{"Bonus":0,"Continent":"K43","ID":40146,"Name":"boh81/52","PlayerID":848889556,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40146","ServerKey":"pl181","X":300,"Y":472},{"Bonus":0,"Continent":"K64","ID":40148,"Name":"Abdoulxx","PlayerID":849089459,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40148","ServerKey":"pl181","X":474,"Y":654},{"Bonus":0,"Continent":"K33","ID":40149,"Name":"016","PlayerID":8153941,"Points":3397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40149","ServerKey":"pl181","X":396,"Y":329},{"Bonus":0,"Continent":"K65","ID":40150,"Name":"- 241 - SS","PlayerID":849018239,"Points":8469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40150","ServerKey":"pl181","X":562,"Y":682},{"Bonus":0,"Continent":"K33","ID":40151,"Name":"Szlachcic","PlayerID":698160606,"Points":5170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40151","ServerKey":"pl181","X":374,"Y":353},{"Bonus":0,"Continent":"K43","ID":40152,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":8013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40152","ServerKey":"pl181","X":329,"Y":415},{"Bonus":0,"Continent":"K64","ID":40153,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":3769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40153","ServerKey":"pl181","X":477,"Y":695},{"Bonus":0,"Continent":"K36","ID":40154,"Name":"kamilkaze135 #05","PlayerID":699705601,"Points":9022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40154","ServerKey":"pl181","X":662,"Y":389},{"Bonus":0,"Continent":"K43","ID":40155,"Name":"Out of Touch","PlayerID":698962117,"Points":2505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40155","ServerKey":"pl181","X":320,"Y":419},{"Bonus":0,"Continent":"K36","ID":40156,"Name":"=|22|=","PlayerID":9101574,"Points":4089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40156","ServerKey":"pl181","X":668,"Y":392},{"Bonus":0,"Continent":"K64","ID":40157,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40157","ServerKey":"pl181","X":416,"Y":678},{"Bonus":0,"Continent":"K56","ID":40158,"Name":"Didusia ziom","PlayerID":3652727,"Points":2383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40158","ServerKey":"pl181","X":678,"Y":585},{"Bonus":0,"Continent":"K65","ID":40159,"Name":"048 invidia","PlayerID":849093426,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40159","ServerKey":"pl181","X":527,"Y":697},{"Bonus":0,"Continent":"K56","ID":40161,"Name":"012 * Lady Porto *","PlayerID":699406750,"Points":8345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40161","ServerKey":"pl181","X":697,"Y":505},{"Bonus":0,"Continent":"K46","ID":40162,"Name":"07. PiekƂo","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40162","ServerKey":"pl181","X":690,"Y":477},{"Bonus":8,"Continent":"K53","ID":40163,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40163","ServerKey":"pl181","X":318,"Y":578},{"Bonus":0,"Continent":"K53","ID":40164,"Name":"C0011","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40164","ServerKey":"pl181","X":302,"Y":520},{"Bonus":0,"Continent":"K56","ID":40165,"Name":"048. K2","PlayerID":1601917,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40165","ServerKey":"pl181","X":692,"Y":540},{"Bonus":0,"Continent":"K64","ID":40166,"Name":"047","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40166","ServerKey":"pl181","X":447,"Y":686},{"Bonus":0,"Continent":"K56","ID":40167,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40167","ServerKey":"pl181","X":697,"Y":502},{"Bonus":0,"Continent":"K65","ID":40168,"Name":"0399","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40168","ServerKey":"pl181","X":572,"Y":679},{"Bonus":0,"Continent":"K66","ID":40169,"Name":"A025","PlayerID":9023703,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40169","ServerKey":"pl181","X":603,"Y":662},{"Bonus":0,"Continent":"K64","ID":40170,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40170","ServerKey":"pl181","X":421,"Y":683},{"Bonus":0,"Continent":"K33","ID":40171,"Name":"Szlachcic","PlayerID":698160606,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40171","ServerKey":"pl181","X":377,"Y":343},{"Bonus":0,"Continent":"K66","ID":40172,"Name":"005 NAWRA","PlayerID":849048867,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40172","ServerKey":"pl181","X":665,"Y":611},{"Bonus":0,"Continent":"K63","ID":40173,"Name":"C106","PlayerID":699383279,"Points":3998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40173","ServerKey":"pl181","X":365,"Y":643},{"Bonus":0,"Continent":"K36","ID":40174,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":2158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40174","ServerKey":"pl181","X":652,"Y":384},{"Bonus":0,"Continent":"K65","ID":40175,"Name":"110","PlayerID":849097799,"Points":7798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40175","ServerKey":"pl181","X":593,"Y":671},{"Bonus":8,"Continent":"K66","ID":40176,"Name":"022 Sigurd","PlayerID":699373599,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40176","ServerKey":"pl181","X":629,"Y":650},{"Bonus":0,"Continent":"K34","ID":40177,"Name":"Winterhome.052","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40177","ServerKey":"pl181","X":497,"Y":307},{"Bonus":0,"Continent":"K43","ID":40178,"Name":"Out of Touch","PlayerID":698962117,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40178","ServerKey":"pl181","X":322,"Y":428},{"Bonus":0,"Continent":"K34","ID":40179,"Name":"Winterhome.034","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40179","ServerKey":"pl181","X":495,"Y":311},{"Bonus":0,"Continent":"K53","ID":40180,"Name":"Darma dla zawodnika","PlayerID":699671197,"Points":5164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40180","ServerKey":"pl181","X":315,"Y":578},{"Bonus":2,"Continent":"K34","ID":40181,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40181","ServerKey":"pl181","X":434,"Y":316},{"Bonus":0,"Continent":"K35","ID":40182,"Name":"B021","PlayerID":699208929,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40182","ServerKey":"pl181","X":526,"Y":305},{"Bonus":0,"Continent":"K36","ID":40183,"Name":"wioska","PlayerID":849102068,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40183","ServerKey":"pl181","X":623,"Y":345},{"Bonus":0,"Continent":"K33","ID":40184,"Name":"0012","PlayerID":699644448,"Points":2770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40184","ServerKey":"pl181","X":361,"Y":362},{"Bonus":0,"Continent":"K34","ID":40185,"Name":"Winterhome.020","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40185","ServerKey":"pl181","X":492,"Y":309},{"Bonus":0,"Continent":"K46","ID":40186,"Name":"022 MONETKI","PlayerID":7588382,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40186","ServerKey":"pl181","X":666,"Y":485},{"Bonus":0,"Continent":"K63","ID":40187,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40187","ServerKey":"pl181","X":383,"Y":663},{"Bonus":0,"Continent":"K53","ID":40188,"Name":"C0121","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40188","ServerKey":"pl181","X":306,"Y":533},{"Bonus":0,"Continent":"K47","ID":40189,"Name":"004. Wawer{NANI?!}","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40189","ServerKey":"pl181","X":700,"Y":485},{"Bonus":0,"Continent":"K34","ID":40190,"Name":"Winterhome.066","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40190","ServerKey":"pl181","X":492,"Y":303},{"Bonus":0,"Continent":"K34","ID":40191,"Name":"[0047]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40191","ServerKey":"pl181","X":435,"Y":315},{"Bonus":0,"Continent":"K53","ID":40192,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40192","ServerKey":"pl181","X":308,"Y":553},{"Bonus":0,"Continent":"K33","ID":40193,"Name":"Szlachcic","PlayerID":698160606,"Points":8116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40193","ServerKey":"pl181","X":383,"Y":341},{"Bonus":0,"Continent":"K34","ID":40194,"Name":"[0048]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40194","ServerKey":"pl181","X":443,"Y":312},{"Bonus":0,"Continent":"K65","ID":40195,"Name":"Wyspa_36","PlayerID":2585846,"Points":6358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40195","ServerKey":"pl181","X":508,"Y":696},{"Bonus":0,"Continent":"K63","ID":40196,"Name":"C105","PlayerID":699383279,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40196","ServerKey":"pl181","X":367,"Y":645},{"Bonus":0,"Continent":"K64","ID":40197,"Name":"123","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40197","ServerKey":"pl181","X":473,"Y":690},{"Bonus":0,"Continent":"K43","ID":40198,"Name":"WP2","PlayerID":849096547,"Points":2641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40198","ServerKey":"pl181","X":327,"Y":415},{"Bonus":0,"Continent":"K56","ID":40199,"Name":"Gracze","PlayerID":848932879,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40199","ServerKey":"pl181","X":689,"Y":531},{"Bonus":0,"Continent":"K65","ID":40200,"Name":"Wieliczka","PlayerID":698723158,"Points":2014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40200","ServerKey":"pl181","X":582,"Y":678},{"Bonus":0,"Continent":"K66","ID":40201,"Name":"CALL 1052","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40201","ServerKey":"pl181","X":651,"Y":627},{"Bonus":0,"Continent":"K36","ID":40202,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":5686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40202","ServerKey":"pl181","X":645,"Y":373},{"Bonus":0,"Continent":"K66","ID":40203,"Name":"Ć»UBR PSYCHIATRYK 022","PlayerID":33900,"Points":5831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40203","ServerKey":"pl181","X":621,"Y":654},{"Bonus":0,"Continent":"K33","ID":40204,"Name":"10_Franekkimono510_10","PlayerID":849099422,"Points":3296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40204","ServerKey":"pl181","X":367,"Y":352},{"Bonus":0,"Continent":"K46","ID":40205,"Name":"Gattacka","PlayerID":699298370,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40205","ServerKey":"pl181","X":688,"Y":437},{"Bonus":0,"Continent":"K56","ID":40206,"Name":"C004","PlayerID":8138506,"Points":5403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40206","ServerKey":"pl181","X":673,"Y":585},{"Bonus":0,"Continent":"K36","ID":40207,"Name":"Hofek 25.","PlayerID":699491076,"Points":5071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40207","ServerKey":"pl181","X":668,"Y":398},{"Bonus":0,"Continent":"K35","ID":40208,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":7473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40208","ServerKey":"pl181","X":550,"Y":309},{"Bonus":0,"Continent":"K64","ID":40209,"Name":"B10","PlayerID":698652014,"Points":5469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40209","ServerKey":"pl181","X":466,"Y":698},{"Bonus":0,"Continent":"K34","ID":40210,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40210","ServerKey":"pl181","X":419,"Y":316},{"Bonus":0,"Continent":"K56","ID":40211,"Name":"B06","PlayerID":848995478,"Points":6219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40211","ServerKey":"pl181","X":688,"Y":550},{"Bonus":0,"Continent":"K43","ID":40212,"Name":"Out of Touch","PlayerID":698962117,"Points":8965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40212","ServerKey":"pl181","X":320,"Y":424},{"Bonus":0,"Continent":"K56","ID":40213,"Name":"055 BanaN","PlayerID":2135129,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40213","ServerKey":"pl181","X":692,"Y":525},{"Bonus":0,"Continent":"K65","ID":40214,"Name":"B04","PlayerID":698652014,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40214","ServerKey":"pl181","X":505,"Y":695},{"Bonus":0,"Continent":"K35","ID":40215,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40215","ServerKey":"pl181","X":506,"Y":305},{"Bonus":0,"Continent":"K43","ID":40216,"Name":"z181_05","PlayerID":393668,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40216","ServerKey":"pl181","X":314,"Y":439},{"Bonus":7,"Continent":"K35","ID":40217,"Name":"X 002","PlayerID":6384450,"Points":7143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40217","ServerKey":"pl181","X":596,"Y":331},{"Bonus":0,"Continent":"K46","ID":40218,"Name":"I074","PlayerID":699722599,"Points":9161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40218","ServerKey":"pl181","X":692,"Y":457},{"Bonus":0,"Continent":"K34","ID":40219,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40219","ServerKey":"pl181","X":417,"Y":326},{"Bonus":0,"Continent":"K36","ID":40220,"Name":"kamilkaze135 #04","PlayerID":699705601,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40220","ServerKey":"pl181","X":661,"Y":396},{"Bonus":0,"Continent":"K36","ID":40221,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":3876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40221","ServerKey":"pl181","X":627,"Y":351},{"Bonus":0,"Continent":"K33","ID":40222,"Name":"Mefedron 05","PlayerID":3484132,"Points":7734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40222","ServerKey":"pl181","X":393,"Y":338},{"Bonus":0,"Continent":"K36","ID":40223,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":4181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40223","ServerKey":"pl181","X":647,"Y":365},{"Bonus":0,"Continent":"K53","ID":40224,"Name":"A3.","PlayerID":849095482,"Points":4787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40224","ServerKey":"pl181","X":314,"Y":545},{"Bonus":0,"Continent":"K35","ID":40225,"Name":"Wioska 6","PlayerID":849099342,"Points":4606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40225","ServerKey":"pl181","X":507,"Y":304},{"Bonus":0,"Continent":"K53","ID":40226,"Name":"075g","PlayerID":698641566,"Points":8126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40226","ServerKey":"pl181","X":312,"Y":557},{"Bonus":9,"Continent":"K63","ID":40227,"Name":"XXXXXXXXXXXXXX","PlayerID":699269923,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40227","ServerKey":"pl181","X":368,"Y":651},{"Bonus":0,"Continent":"K36","ID":40228,"Name":"-022- S","PlayerID":849099276,"Points":3044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40228","ServerKey":"pl181","X":618,"Y":344},{"Bonus":3,"Continent":"K53","ID":40229,"Name":"A4. Puk... Puk... Komornik","PlayerID":849095482,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40229","ServerKey":"pl181","X":308,"Y":543},{"Bonus":0,"Continent":"K34","ID":40230,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40230","ServerKey":"pl181","X":407,"Y":322},{"Bonus":0,"Continent":"K35","ID":40231,"Name":"B027","PlayerID":699208929,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40231","ServerKey":"pl181","X":514,"Y":302},{"Bonus":0,"Continent":"K56","ID":40232,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40232","ServerKey":"pl181","X":699,"Y":526},{"Bonus":9,"Continent":"K36","ID":40233,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":6100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40233","ServerKey":"pl181","X":603,"Y":338},{"Bonus":0,"Continent":"K43","ID":40234,"Name":"z181_29","PlayerID":393668,"Points":7972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40234","ServerKey":"pl181","X":310,"Y":436},{"Bonus":0,"Continent":"K66","ID":40235,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40235","ServerKey":"pl181","X":652,"Y":621},{"Bonus":0,"Continent":"K35","ID":40236,"Name":"Wioska barbarzyƄska","PlayerID":8606809,"Points":2395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40236","ServerKey":"pl181","X":533,"Y":304},{"Bonus":0,"Continent":"K53","ID":40237,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40237","ServerKey":"pl181","X":301,"Y":515},{"Bonus":0,"Continent":"K66","ID":40238,"Name":"#089#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40238","ServerKey":"pl181","X":630,"Y":644},{"Bonus":0,"Continent":"K36","ID":40239,"Name":"Katwaijk","PlayerID":9103424,"Points":4410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40239","ServerKey":"pl181","X":624,"Y":343},{"Bonus":0,"Continent":"K63","ID":40240,"Name":"Taran","PlayerID":6180190,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40240","ServerKey":"pl181","X":338,"Y":610},{"Bonus":0,"Continent":"K46","ID":40241,"Name":"Gattacka","PlayerID":699298370,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40241","ServerKey":"pl181","X":688,"Y":435},{"Bonus":0,"Continent":"K53","ID":40242,"Name":"029","PlayerID":9280477,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40242","ServerKey":"pl181","X":305,"Y":545},{"Bonus":0,"Continent":"K66","ID":40243,"Name":"D006","PlayerID":9023703,"Points":5815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40243","ServerKey":"pl181","X":610,"Y":659},{"Bonus":0,"Continent":"K35","ID":40244,"Name":"B007","PlayerID":699208929,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40244","ServerKey":"pl181","X":516,"Y":307},{"Bonus":0,"Continent":"K43","ID":40245,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40245","ServerKey":"pl181","X":328,"Y":404},{"Bonus":0,"Continent":"K36","ID":40246,"Name":"-28-","PlayerID":699837826,"Points":2859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40246","ServerKey":"pl181","X":642,"Y":359},{"Bonus":0,"Continent":"K64","ID":40247,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40247","ServerKey":"pl181","X":425,"Y":679},{"Bonus":0,"Continent":"K56","ID":40248,"Name":"TWIERDZA .:010:.","PlayerID":7154207,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40248","ServerKey":"pl181","X":688,"Y":570},{"Bonus":0,"Continent":"K43","ID":40249,"Name":"Wioska Totomoose 2","PlayerID":849100744,"Points":6555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40249","ServerKey":"pl181","X":315,"Y":414},{"Bonus":0,"Continent":"K56","ID":40250,"Name":"032 - Fuenlabrada","PlayerID":698342159,"Points":9074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40250","ServerKey":"pl181","X":693,"Y":527},{"Bonus":0,"Continent":"K63","ID":40251,"Name":"A 076","PlayerID":699269923,"Points":4527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40251","ServerKey":"pl181","X":364,"Y":640},{"Bonus":0,"Continent":"K64","ID":40252,"Name":"193","PlayerID":849099876,"Points":3679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40252","ServerKey":"pl181","X":455,"Y":696},{"Bonus":0,"Continent":"K53","ID":40253,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":5764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40253","ServerKey":"pl181","X":308,"Y":546},{"Bonus":0,"Continent":"K63","ID":40254,"Name":"psycha sitting","PlayerID":699736927,"Points":6152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40254","ServerKey":"pl181","X":398,"Y":672},{"Bonus":0,"Continent":"K33","ID":40255,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":8873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40255","ServerKey":"pl181","X":336,"Y":389},{"Bonus":2,"Continent":"K43","ID":40256,"Name":"Rubiez","PlayerID":699265922,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40256","ServerKey":"pl181","X":307,"Y":482},{"Bonus":0,"Continent":"K33","ID":40257,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40257","ServerKey":"pl181","X":329,"Y":398},{"Bonus":0,"Continent":"K36","ID":40258,"Name":"670|372","PlayerID":699580120,"Points":4632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40258","ServerKey":"pl181","X":658,"Y":388},{"Bonus":0,"Continent":"K66","ID":40259,"Name":"009 NAWRA","PlayerID":849048867,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40259","ServerKey":"pl181","X":666,"Y":608},{"Bonus":0,"Continent":"K66","ID":40260,"Name":"Ć»UBR PSYCHIATRYK 016","PlayerID":33900,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40260","ServerKey":"pl181","X":622,"Y":650},{"Bonus":0,"Continent":"K34","ID":40261,"Name":"Wioska Vallias","PlayerID":699883079,"Points":6166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40261","ServerKey":"pl181","X":475,"Y":366},{"Bonus":0,"Continent":"K66","ID":40262,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40262","ServerKey":"pl181","X":651,"Y":630},{"Bonus":0,"Continent":"K34","ID":40263,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40263","ServerKey":"pl181","X":419,"Y":320},{"Bonus":0,"Continent":"K43","ID":40264,"Name":"Out of Touch","PlayerID":698962117,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40264","ServerKey":"pl181","X":322,"Y":429},{"Bonus":1,"Continent":"K36","ID":40265,"Name":"Moldor 002","PlayerID":849049045,"Points":11138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40265","ServerKey":"pl181","X":631,"Y":355},{"Bonus":0,"Continent":"K33","ID":40266,"Name":"Szlachcic","PlayerID":3484132,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40266","ServerKey":"pl181","X":384,"Y":340},{"Bonus":0,"Continent":"K65","ID":40267,"Name":"055 invidia","PlayerID":849093426,"Points":7893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40267","ServerKey":"pl181","X":520,"Y":698},{"Bonus":0,"Continent":"K53","ID":40268,"Name":"#Tokyo#","PlayerID":849099601,"Points":3268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40268","ServerKey":"pl181","X":317,"Y":555},{"Bonus":2,"Continent":"K35","ID":40269,"Name":"0sada Cegielnia","PlayerID":699883079,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40269","ServerKey":"pl181","X":567,"Y":310},{"Bonus":0,"Continent":"K64","ID":40270,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40270","ServerKey":"pl181","X":402,"Y":674},{"Bonus":0,"Continent":"K36","ID":40271,"Name":"Wioska barbarzyƄska","PlayerID":8740199,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40271","ServerKey":"pl181","X":621,"Y":341},{"Bonus":1,"Continent":"K46","ID":40272,"Name":"006. Praga PóƂnoc","PlayerID":7494497,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40272","ServerKey":"pl181","X":699,"Y":478},{"Bonus":0,"Continent":"K53","ID":40273,"Name":"007. Ɓ","PlayerID":698704189,"Points":3744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40273","ServerKey":"pl181","X":325,"Y":583},{"Bonus":0,"Continent":"K53","ID":40274,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":3159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40274","ServerKey":"pl181","X":318,"Y":583},{"Bonus":0,"Continent":"K66","ID":40275,"Name":"#030#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40275","ServerKey":"pl181","X":617,"Y":652},{"Bonus":0,"Continent":"K65","ID":40276,"Name":"2.Marbella","PlayerID":698215322,"Points":9464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40276","ServerKey":"pl181","X":579,"Y":677},{"Bonus":0,"Continent":"K65","ID":40278,"Name":"Forteca*007*","PlayerID":1078121,"Points":5846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40278","ServerKey":"pl181","X":533,"Y":697},{"Bonus":0,"Continent":"K66","ID":40279,"Name":"Swoja3","PlayerID":6528152,"Points":8379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40279","ServerKey":"pl181","X":603,"Y":668},{"Bonus":0,"Continent":"K34","ID":40280,"Name":"???","PlayerID":698489071,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40280","ServerKey":"pl181","X":486,"Y":302},{"Bonus":0,"Continent":"K43","ID":40281,"Name":"~ OZESEK ~","PlayerID":698540331,"Points":2246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40281","ServerKey":"pl181","X":315,"Y":446},{"Bonus":0,"Continent":"K53","ID":40282,"Name":"036","PlayerID":5997814,"Points":7442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40282","ServerKey":"pl181","X":307,"Y":555},{"Bonus":0,"Continent":"K66","ID":40283,"Name":"035. Aquila","PlayerID":699703642,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40283","ServerKey":"pl181","X":613,"Y":641},{"Bonus":0,"Continent":"K64","ID":40284,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40284","ServerKey":"pl181","X":412,"Y":673},{"Bonus":0,"Continent":"K34","ID":40285,"Name":"???","PlayerID":698489071,"Points":8997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40285","ServerKey":"pl181","X":485,"Y":308},{"Bonus":0,"Continent":"K34","ID":40286,"Name":"Winterhome.065","PlayerID":848918380,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40286","ServerKey":"pl181","X":491,"Y":312},{"Bonus":0,"Continent":"K34","ID":40287,"Name":"???","PlayerID":698489071,"Points":5013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40287","ServerKey":"pl181","X":479,"Y":304},{"Bonus":0,"Continent":"K56","ID":40288,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40288","ServerKey":"pl181","X":687,"Y":560},{"Bonus":0,"Continent":"K35","ID":40289,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40289","ServerKey":"pl181","X":583,"Y":321},{"Bonus":1,"Continent":"K35","ID":40290,"Name":"Osada koczownikĂłw","PlayerID":8606809,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40290","ServerKey":"pl181","X":529,"Y":304},{"Bonus":0,"Continent":"K54","ID":40291,"Name":"MaƂy Mędromierz","PlayerID":698769107,"Points":8910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40291","ServerKey":"pl181","X":410,"Y":578},{"Bonus":0,"Continent":"K46","ID":40292,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40292","ServerKey":"pl181","X":695,"Y":487},{"Bonus":0,"Continent":"K33","ID":40293,"Name":"Szlachcic","PlayerID":3484132,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40293","ServerKey":"pl181","X":389,"Y":341},{"Bonus":0,"Continent":"K46","ID":40294,"Name":"I075 Wakacje w Lesbos","PlayerID":699722599,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40294","ServerKey":"pl181","X":688,"Y":460},{"Bonus":0,"Continent":"K33","ID":40296,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40296","ServerKey":"pl181","X":335,"Y":386},{"Bonus":0,"Continent":"K65","ID":40297,"Name":"S001","PlayerID":8627359,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40297","ServerKey":"pl181","X":599,"Y":675},{"Bonus":0,"Continent":"K64","ID":40298,"Name":"001","PlayerID":699639005,"Points":2287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40298","ServerKey":"pl181","X":478,"Y":696},{"Bonus":0,"Continent":"K56","ID":40299,"Name":"Didek","PlayerID":849070946,"Points":1372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40299","ServerKey":"pl181","X":683,"Y":583},{"Bonus":8,"Continent":"K36","ID":40300,"Name":"057","PlayerID":849010255,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40300","ServerKey":"pl181","X":630,"Y":353},{"Bonus":0,"Continent":"K36","ID":40301,"Name":"01Gato","PlayerID":699548295,"Points":8507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40301","ServerKey":"pl181","X":603,"Y":337},{"Bonus":0,"Continent":"K56","ID":40302,"Name":"Wioska Zorro 002","PlayerID":849080702,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40302","ServerKey":"pl181","X":674,"Y":598},{"Bonus":0,"Continent":"K64","ID":40303,"Name":"#waj","PlayerID":699605333,"Points":9676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40303","ServerKey":"pl181","X":483,"Y":699},{"Bonus":0,"Continent":"K35","ID":40304,"Name":"Wioska 04","PlayerID":849067192,"Points":3166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40304","ServerKey":"pl181","X":571,"Y":315},{"Bonus":0,"Continent":"K34","ID":40306,"Name":"Winterhome.068","PlayerID":848918380,"Points":9336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40306","ServerKey":"pl181","X":487,"Y":307},{"Bonus":8,"Continent":"K66","ID":40307,"Name":"Osada koczownikĂłw","PlayerID":6417987,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40307","ServerKey":"pl181","X":651,"Y":625},{"Bonus":0,"Continent":"K66","ID":40308,"Name":"OFF","PlayerID":849014413,"Points":10418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40308","ServerKey":"pl181","X":661,"Y":604},{"Bonus":0,"Continent":"K53","ID":40309,"Name":"076g","PlayerID":698641566,"Points":6822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40309","ServerKey":"pl181","X":315,"Y":559},{"Bonus":0,"Continent":"K56","ID":40310,"Name":"C 021","PlayerID":8078914,"Points":6477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40310","ServerKey":"pl181","X":691,"Y":522},{"Bonus":0,"Continent":"K35","ID":40312,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":4819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40312","ServerKey":"pl181","X":534,"Y":304},{"Bonus":0,"Continent":"K65","ID":40313,"Name":"- 199 - SS","PlayerID":849018239,"Points":8995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40313","ServerKey":"pl181","X":559,"Y":692},{"Bonus":0,"Continent":"K43","ID":40314,"Name":"Out of Touch","PlayerID":698962117,"Points":8593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40314","ServerKey":"pl181","X":314,"Y":424},{"Bonus":0,"Continent":"K66","ID":40315,"Name":"EE01","PlayerID":8627359,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40315","ServerKey":"pl181","X":620,"Y":658},{"Bonus":0,"Continent":"K53","ID":40316,"Name":"C0075","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40316","ServerKey":"pl181","X":307,"Y":523},{"Bonus":0,"Continent":"K33","ID":40317,"Name":"Wioska 2","PlayerID":699541376,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40317","ServerKey":"pl181","X":342,"Y":383},{"Bonus":0,"Continent":"K43","ID":40318,"Name":"Twierdza Modlin","PlayerID":849095376,"Points":10330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40318","ServerKey":"pl181","X":302,"Y":480},{"Bonus":0,"Continent":"K64","ID":40319,"Name":"Szale","PlayerID":698585370,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40319","ServerKey":"pl181","X":468,"Y":691},{"Bonus":0,"Continent":"K64","ID":40320,"Name":"psycha sitting","PlayerID":699736927,"Points":7608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40320","ServerKey":"pl181","X":405,"Y":667},{"Bonus":0,"Continent":"K35","ID":40321,"Name":"Wioska 6","PlayerID":849050849,"Points":4348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40321","ServerKey":"pl181","X":503,"Y":304},{"Bonus":7,"Continent":"K66","ID":40322,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40322","ServerKey":"pl181","X":637,"Y":644},{"Bonus":0,"Continent":"K43","ID":40323,"Name":"WB07","PlayerID":356642,"Points":6453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40323","ServerKey":"pl181","X":324,"Y":406},{"Bonus":0,"Continent":"K36","ID":40324,"Name":"=|23|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40324","ServerKey":"pl181","X":668,"Y":390},{"Bonus":0,"Continent":"K56","ID":40325,"Name":"Opuszczona Wioska","PlayerID":848932879,"Points":2662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40325","ServerKey":"pl181","X":692,"Y":543},{"Bonus":0,"Continent":"K65","ID":40326,"Name":"Wielgie","PlayerID":698723158,"Points":8994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40326","ServerKey":"pl181","X":573,"Y":687},{"Bonus":0,"Continent":"K64","ID":40327,"Name":"R 028 ~Anarchia~","PlayerID":699195358,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40327","ServerKey":"pl181","X":496,"Y":695},{"Bonus":0,"Continent":"K63","ID":40328,"Name":"Taran","PlayerID":6180190,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40328","ServerKey":"pl181","X":343,"Y":610},{"Bonus":0,"Continent":"K46","ID":40329,"Name":"Radek","PlayerID":699738350,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40329","ServerKey":"pl181","X":677,"Y":419},{"Bonus":0,"Continent":"K63","ID":40330,"Name":"A 088","PlayerID":6948793,"Points":2701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40330","ServerKey":"pl181","X":364,"Y":644},{"Bonus":0,"Continent":"K65","ID":40331,"Name":"035 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40331","ServerKey":"pl181","X":529,"Y":697},{"Bonus":0,"Continent":"K46","ID":40332,"Name":"Gattacka","PlayerID":699298370,"Points":9251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40332","ServerKey":"pl181","X":679,"Y":430},{"Bonus":0,"Continent":"K65","ID":40333,"Name":"- 148 - SS","PlayerID":849018239,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40333","ServerKey":"pl181","X":541,"Y":688},{"Bonus":0,"Continent":"K74","ID":40334,"Name":"005# Guba","PlayerID":3933666,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40334","ServerKey":"pl181","X":485,"Y":701},{"Bonus":0,"Continent":"K56","ID":40335,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40335","ServerKey":"pl181","X":699,"Y":501},{"Bonus":0,"Continent":"K65","ID":40336,"Name":"- 173 - SS xDDDDDD","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40336","ServerKey":"pl181","X":549,"Y":694},{"Bonus":0,"Continent":"K56","ID":40337,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40337","ServerKey":"pl181","X":696,"Y":529},{"Bonus":0,"Continent":"K53","ID":40339,"Name":"Wioska lV","PlayerID":699671197,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40339","ServerKey":"pl181","X":317,"Y":579},{"Bonus":0,"Continent":"K66","ID":40342,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40342","ServerKey":"pl181","X":620,"Y":661},{"Bonus":0,"Continent":"K36","ID":40344,"Name":"Hofek 24.","PlayerID":699491076,"Points":6372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40344","ServerKey":"pl181","X":665,"Y":398},{"Bonus":0,"Continent":"K56","ID":40345,"Name":"_PUSTA+","PlayerID":699628084,"Points":8815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40345","ServerKey":"pl181","X":688,"Y":543},{"Bonus":0,"Continent":"K56","ID":40346,"Name":"D08","PlayerID":848995478,"Points":10776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40346","ServerKey":"pl181","X":666,"Y":556},{"Bonus":0,"Continent":"K46","ID":40347,"Name":"37. KaruTown","PlayerID":849060446,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40347","ServerKey":"pl181","X":692,"Y":455},{"Bonus":0,"Continent":"K66","ID":40348,"Name":"Wiejska7","PlayerID":6528152,"Points":8742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40348","ServerKey":"pl181","X":601,"Y":663},{"Bonus":0,"Continent":"K35","ID":40349,"Name":"taran 4","PlayerID":7340529,"Points":9186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40349","ServerKey":"pl181","X":592,"Y":321},{"Bonus":0,"Continent":"K53","ID":40350,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":8528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40350","ServerKey":"pl181","X":319,"Y":583},{"Bonus":0,"Continent":"K33","ID":40351,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40351","ServerKey":"pl181","X":329,"Y":394},{"Bonus":7,"Continent":"K66","ID":40352,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40352","ServerKey":"pl181","X":653,"Y":621},{"Bonus":0,"Continent":"K36","ID":40353,"Name":"012","PlayerID":8842936,"Points":10541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40353","ServerKey":"pl181","X":608,"Y":336},{"Bonus":0,"Continent":"K66","ID":40354,"Name":"Wiejska6","PlayerID":6528152,"Points":8609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40354","ServerKey":"pl181","X":602,"Y":672},{"Bonus":0,"Continent":"K64","ID":40355,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40355","ServerKey":"pl181","X":430,"Y":685},{"Bonus":0,"Continent":"K35","ID":40356,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40356","ServerKey":"pl181","X":510,"Y":302},{"Bonus":0,"Continent":"K43","ID":40357,"Name":"z181_09","PlayerID":393668,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40357","ServerKey":"pl181","X":310,"Y":443},{"Bonus":0,"Continent":"K47","ID":40358,"Name":"0115","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40358","ServerKey":"pl181","X":700,"Y":499},{"Bonus":0,"Continent":"K53","ID":40359,"Name":"[0216]","PlayerID":8630972,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40359","ServerKey":"pl181","X":301,"Y":508},{"Bonus":0,"Continent":"K33","ID":40360,"Name":"Wioska 2","PlayerID":7462660,"Points":7792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40360","ServerKey":"pl181","X":341,"Y":381},{"Bonus":0,"Continent":"K36","ID":40361,"Name":"004","PlayerID":8842936,"Points":10432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40361","ServerKey":"pl181","X":613,"Y":334},{"Bonus":0,"Continent":"K46","ID":40363,"Name":"015. czego chcesz dziewczyno","PlayerID":7494497,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40363","ServerKey":"pl181","X":692,"Y":472},{"Bonus":0,"Continent":"K65","ID":40364,"Name":"075","PlayerID":698999105,"Points":8858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40364","ServerKey":"pl181","X":581,"Y":620},{"Bonus":0,"Continent":"K66","ID":40365,"Name":"wiocha","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40365","ServerKey":"pl181","X":617,"Y":664},{"Bonus":0,"Continent":"K63","ID":40366,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40366","ServerKey":"pl181","X":371,"Y":653},{"Bonus":7,"Continent":"K53","ID":40367,"Name":"Osada koczownikĂłw","PlayerID":5997814,"Points":5742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40367","ServerKey":"pl181","X":307,"Y":547},{"Bonus":0,"Continent":"K64","ID":40368,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40368","ServerKey":"pl181","X":428,"Y":683},{"Bonus":0,"Continent":"K53","ID":40369,"Name":"#008","PlayerID":849097898,"Points":4235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40369","ServerKey":"pl181","X":313,"Y":568},{"Bonus":0,"Continent":"K36","ID":40370,"Name":"Klaudek27","PlayerID":9291984,"Points":3384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40370","ServerKey":"pl181","X":637,"Y":353},{"Bonus":0,"Continent":"K56","ID":40371,"Name":"yyy","PlayerID":699316421,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40371","ServerKey":"pl181","X":689,"Y":539},{"Bonus":0,"Continent":"K45","ID":40372,"Name":"ZasiedmiogĂłrogrĂłd","PlayerID":699433558,"Points":7092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40372","ServerKey":"pl181","X":536,"Y":424},{"Bonus":0,"Continent":"K65","ID":40373,"Name":"###057###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40373","ServerKey":"pl181","X":587,"Y":680},{"Bonus":0,"Continent":"K43","ID":40374,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40374","ServerKey":"pl181","X":303,"Y":493},{"Bonus":0,"Continent":"K66","ID":40375,"Name":"Old Trafford","PlayerID":849096631,"Points":9125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40375","ServerKey":"pl181","X":665,"Y":616},{"Bonus":0,"Continent":"K53","ID":40376,"Name":"C0095","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40376","ServerKey":"pl181","X":300,"Y":519},{"Bonus":0,"Continent":"K63","ID":40377,"Name":"ByƂeƛ w porządku","PlayerID":699269923,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40377","ServerKey":"pl181","X":366,"Y":651},{"Bonus":0,"Continent":"K46","ID":40378,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40378","ServerKey":"pl181","X":698,"Y":495},{"Bonus":0,"Continent":"K35","ID":40379,"Name":"D_2","PlayerID":3377827,"Points":8417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40379","ServerKey":"pl181","X":529,"Y":305},{"Bonus":0,"Continent":"K65","ID":40380,"Name":"C009","PlayerID":9023703,"Points":8810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40380","ServerKey":"pl181","X":598,"Y":668},{"Bonus":0,"Continent":"K34","ID":40381,"Name":"Wioska ShOcK","PlayerID":591733,"Points":10021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40381","ServerKey":"pl181","X":419,"Y":321},{"Bonus":0,"Continent":"K33","ID":40382,"Name":"Mefedron 08","PlayerID":3484132,"Points":5958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40382","ServerKey":"pl181","X":392,"Y":338},{"Bonus":0,"Continent":"K46","ID":40383,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40383","ServerKey":"pl181","X":698,"Y":499},{"Bonus":0,"Continent":"K66","ID":40384,"Name":"#066#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40384","ServerKey":"pl181","X":619,"Y":656},{"Bonus":0,"Continent":"K35","ID":40385,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":5096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40385","ServerKey":"pl181","X":548,"Y":310},{"Bonus":0,"Continent":"K66","ID":40386,"Name":"001 NAWRA","PlayerID":849048867,"Points":10395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40386","ServerKey":"pl181","X":659,"Y":609},{"Bonus":0,"Continent":"K66","ID":40387,"Name":"024","PlayerID":699373599,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40387","ServerKey":"pl181","X":627,"Y":644},{"Bonus":0,"Continent":"K66","ID":40388,"Name":"- Cradabra -","PlayerID":849009623,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40388","ServerKey":"pl181","X":661,"Y":615},{"Bonus":0,"Continent":"K43","ID":40389,"Name":"X | Forest Cyaaaanku","PlayerID":699213622,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40389","ServerKey":"pl181","X":307,"Y":466},{"Bonus":0,"Continent":"K34","ID":40390,"Name":".achim.","PlayerID":6936607,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40390","ServerKey":"pl181","X":480,"Y":304},{"Bonus":0,"Continent":"K65","ID":40391,"Name":"112","PlayerID":849097799,"Points":6354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40391","ServerKey":"pl181","X":594,"Y":669},{"Bonus":0,"Continent":"K53","ID":40392,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":4913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40392","ServerKey":"pl181","X":319,"Y":584},{"Bonus":0,"Continent":"K35","ID":40393,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":8011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40393","ServerKey":"pl181","X":564,"Y":312},{"Bonus":0,"Continent":"K66","ID":40394,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40394","ServerKey":"pl181","X":648,"Y":635},{"Bonus":0,"Continent":"K63","ID":40395,"Name":"003","PlayerID":699269923,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40395","ServerKey":"pl181","X":383,"Y":660},{"Bonus":0,"Continent":"K63","ID":40396,"Name":"Taran","PlayerID":6180190,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40396","ServerKey":"pl181","X":341,"Y":607},{"Bonus":0,"Continent":"K43","ID":40397,"Name":"Bolusiowo","PlayerID":8048374,"Points":6616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40397","ServerKey":"pl181","X":307,"Y":480},{"Bonus":0,"Continent":"K46","ID":40400,"Name":"055. Wioska barbarzyƄska","PlayerID":7494497,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40400","ServerKey":"pl181","X":690,"Y":469},{"Bonus":0,"Continent":"K46","ID":40401,"Name":"B#014","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40401","ServerKey":"pl181","X":695,"Y":453},{"Bonus":0,"Continent":"K46","ID":40402,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40402","ServerKey":"pl181","X":670,"Y":403},{"Bonus":0,"Continent":"K43","ID":40403,"Name":"*021 GAWRA*","PlayerID":2415972,"Points":9006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40403","ServerKey":"pl181","X":312,"Y":428},{"Bonus":0,"Continent":"K56","ID":40404,"Name":"TWIERDZA .:031:.","PlayerID":699272880,"Points":10198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40404","ServerKey":"pl181","X":684,"Y":564},{"Bonus":0,"Continent":"K63","ID":40406,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40406","ServerKey":"pl181","X":393,"Y":668},{"Bonus":0,"Continent":"K36","ID":40407,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40407","ServerKey":"pl181","X":616,"Y":341},{"Bonus":0,"Continent":"K35","ID":40408,"Name":"#02","PlayerID":699072129,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40408","ServerKey":"pl181","X":555,"Y":307},{"Bonus":0,"Continent":"K36","ID":40409,"Name":"Gattacka","PlayerID":699298370,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40409","ServerKey":"pl181","X":617,"Y":385},{"Bonus":2,"Continent":"K43","ID":40410,"Name":"Dream on","PlayerID":698962117,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40410","ServerKey":"pl181","X":301,"Y":490},{"Bonus":0,"Continent":"K65","ID":40411,"Name":"Wioska Wodzu002","PlayerID":7860453,"Points":6680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40411","ServerKey":"pl181","X":552,"Y":693},{"Bonus":0,"Continent":"K24","ID":40412,"Name":".achim.","PlayerID":6936607,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40412","ServerKey":"pl181","X":483,"Y":296},{"Bonus":0,"Continent":"K46","ID":40413,"Name":"Dreamland","PlayerID":1086351,"Points":3409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40413","ServerKey":"pl181","X":669,"Y":403},{"Bonus":8,"Continent":"K53","ID":40414,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40414","ServerKey":"pl181","X":315,"Y":577},{"Bonus":0,"Continent":"K65","ID":40415,"Name":"142 invidia","PlayerID":849093426,"Points":5826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40415","ServerKey":"pl181","X":541,"Y":694},{"Bonus":0,"Continent":"K43","ID":40416,"Name":"005","PlayerID":2418364,"Points":6108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40416","ServerKey":"pl181","X":306,"Y":478},{"Bonus":0,"Continent":"K64","ID":40417,"Name":"New World","PlayerID":698152377,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40417","ServerKey":"pl181","X":435,"Y":687},{"Bonus":0,"Continent":"K56","ID":40418,"Name":"TWIERDZA .:065:.","PlayerID":7154207,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40418","ServerKey":"pl181","X":682,"Y":572},{"Bonus":9,"Continent":"K35","ID":40419,"Name":"K35 - [001] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40419","ServerKey":"pl181","X":579,"Y":319},{"Bonus":0,"Continent":"K34","ID":40420,"Name":"[0100] xxx","PlayerID":8630972,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40420","ServerKey":"pl181","X":450,"Y":308},{"Bonus":0,"Continent":"K35","ID":40421,"Name":"B011","PlayerID":699208929,"Points":6644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40421","ServerKey":"pl181","X":519,"Y":304},{"Bonus":0,"Continent":"K46","ID":40422,"Name":"Wioska 2","PlayerID":699738350,"Points":8736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40422","ServerKey":"pl181","X":676,"Y":411},{"Bonus":0,"Continent":"K34","ID":40423,"Name":"???","PlayerID":698489071,"Points":6131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40423","ServerKey":"pl181","X":489,"Y":304},{"Bonus":9,"Continent":"K63","ID":40424,"Name":"---0000","PlayerID":699269923,"Points":6671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40424","ServerKey":"pl181","X":388,"Y":660},{"Bonus":0,"Continent":"K36","ID":40425,"Name":"XDX","PlayerID":699098531,"Points":8336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40425","ServerKey":"pl181","X":600,"Y":330},{"Bonus":0,"Continent":"K63","ID":40426,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40426","ServerKey":"pl181","X":385,"Y":658},{"Bonus":0,"Continent":"K64","ID":40428,"Name":"New World","PlayerID":698152377,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40428","ServerKey":"pl181","X":443,"Y":688},{"Bonus":0,"Continent":"K64","ID":40429,"Name":"New World","PlayerID":698152377,"Points":6420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40429","ServerKey":"pl181","X":433,"Y":682},{"Bonus":0,"Continent":"K43","ID":40430,"Name":"Wioska Totomoose 6","PlayerID":849100744,"Points":326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40430","ServerKey":"pl181","X":314,"Y":426},{"Bonus":9,"Continent":"K36","ID":40431,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":3538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40431","ServerKey":"pl181","X":607,"Y":330},{"Bonus":0,"Continent":"K65","ID":40432,"Name":"Zimowa Twierdza","PlayerID":7860453,"Points":4189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40432","ServerKey":"pl181","X":538,"Y":695},{"Bonus":0,"Continent":"K46","ID":40433,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40433","ServerKey":"pl181","X":695,"Y":497},{"Bonus":0,"Continent":"K65","ID":40434,"Name":"C002","PlayerID":698599365,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40434","ServerKey":"pl181","X":538,"Y":697},{"Bonus":0,"Continent":"K35","ID":40435,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40435","ServerKey":"pl181","X":578,"Y":314},{"Bonus":0,"Continent":"K53","ID":40436,"Name":"058","PlayerID":6853693,"Points":6443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40436","ServerKey":"pl181","X":364,"Y":517},{"Bonus":0,"Continent":"K35","ID":40437,"Name":"5.CAMEL","PlayerID":699208929,"Points":4793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40437","ServerKey":"pl181","X":521,"Y":305},{"Bonus":0,"Continent":"K36","ID":40438,"Name":"Life","PlayerID":698420691,"Points":6112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40438","ServerKey":"pl181","X":625,"Y":352},{"Bonus":0,"Continent":"K64","ID":40439,"Name":"New World","PlayerID":698152377,"Points":8559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40439","ServerKey":"pl181","X":447,"Y":685},{"Bonus":0,"Continent":"K36","ID":40440,"Name":"!36 75 Vicsani","PlayerID":698361257,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40440","ServerKey":"pl181","X":653,"Y":370},{"Bonus":0,"Continent":"K64","ID":40441,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40441","ServerKey":"pl181","X":402,"Y":661},{"Bonus":0,"Continent":"K34","ID":40442,"Name":"[0099]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40442","ServerKey":"pl181","X":436,"Y":319},{"Bonus":0,"Continent":"K43","ID":40443,"Name":"Dream on","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40443","ServerKey":"pl181","X":307,"Y":489},{"Bonus":0,"Continent":"K64","ID":40444,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40444","ServerKey":"pl181","X":414,"Y":673},{"Bonus":0,"Continent":"K66","ID":40445,"Name":"- Ecabra -","PlayerID":849009623,"Points":4469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40445","ServerKey":"pl181","X":655,"Y":617},{"Bonus":0,"Continent":"K43","ID":40446,"Name":"FENDI","PlayerID":699794765,"Points":2844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40446","ServerKey":"pl181","X":305,"Y":462},{"Bonus":0,"Continent":"K53","ID":40448,"Name":"Dąbrowa 0025","PlayerID":849096972,"Points":2974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40448","ServerKey":"pl181","X":316,"Y":562},{"Bonus":0,"Continent":"K65","ID":40449,"Name":"- 179 - SS","PlayerID":849018239,"Points":7112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40449","ServerKey":"pl181","X":550,"Y":694},{"Bonus":0,"Continent":"K66","ID":40450,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40450","ServerKey":"pl181","X":635,"Y":644},{"Bonus":0,"Continent":"K66","ID":40451,"Name":"105","PlayerID":3589487,"Points":7015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40451","ServerKey":"pl181","X":660,"Y":615},{"Bonus":0,"Continent":"K34","ID":40452,"Name":"0016","PlayerID":2321390,"Points":4406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40452","ServerKey":"pl181","X":422,"Y":323},{"Bonus":0,"Continent":"K64","ID":40453,"Name":"[015]","PlayerID":699777372,"Points":5600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40453","ServerKey":"pl181","X":454,"Y":687},{"Bonus":0,"Continent":"K64","ID":40454,"Name":"[016]","PlayerID":699777372,"Points":5125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40454","ServerKey":"pl181","X":455,"Y":692},{"Bonus":0,"Continent":"K43","ID":40455,"Name":"Dream on","PlayerID":698962117,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40455","ServerKey":"pl181","X":307,"Y":499},{"Bonus":0,"Continent":"K46","ID":40456,"Name":"kamilex","PlayerID":849095435,"Points":4281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40456","ServerKey":"pl181","X":682,"Y":424},{"Bonus":0,"Continent":"K46","ID":40457,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":4785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40457","ServerKey":"pl181","X":671,"Y":413},{"Bonus":0,"Continent":"K35","ID":40458,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":8131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40458","ServerKey":"pl181","X":565,"Y":310},{"Bonus":0,"Continent":"K33","ID":40459,"Name":"Tarchomin","PlayerID":849099434,"Points":4568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40459","ServerKey":"pl181","X":365,"Y":358},{"Bonus":0,"Continent":"K43","ID":40460,"Name":"Parole","PlayerID":699595556,"Points":7041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40460","ServerKey":"pl181","X":348,"Y":404},{"Bonus":0,"Continent":"K64","ID":40461,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40461","ServerKey":"pl181","X":416,"Y":680},{"Bonus":0,"Continent":"K63","ID":40462,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40462","ServerKey":"pl181","X":337,"Y":610},{"Bonus":8,"Continent":"K34","ID":40463,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40463","ServerKey":"pl181","X":479,"Y":303},{"Bonus":0,"Continent":"K36","ID":40464,"Name":"Wioska barbarzyƄska","PlayerID":699837826,"Points":2187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40464","ServerKey":"pl181","X":640,"Y":363},{"Bonus":0,"Continent":"K33","ID":40465,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":3239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40465","ServerKey":"pl181","X":333,"Y":390},{"Bonus":0,"Continent":"K53","ID":40466,"Name":"017","PlayerID":849098688,"Points":8860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40466","ServerKey":"pl181","X":309,"Y":540},{"Bonus":0,"Continent":"K46","ID":40467,"Name":"044. Wioska barbarzyƄska","PlayerID":7494497,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40467","ServerKey":"pl181","X":694,"Y":468},{"Bonus":0,"Continent":"K64","ID":40468,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40468","ServerKey":"pl181","X":437,"Y":689},{"Bonus":0,"Continent":"K34","ID":40469,"Name":"@16@","PlayerID":699483429,"Points":3616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40469","ServerKey":"pl181","X":402,"Y":325},{"Bonus":0,"Continent":"K35","ID":40470,"Name":"Wioska SeroElo","PlayerID":849044705,"Points":11094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40470","ServerKey":"pl181","X":538,"Y":311},{"Bonus":0,"Continent":"K47","ID":40471,"Name":"004","PlayerID":942959,"Points":4262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40471","ServerKey":"pl181","X":701,"Y":498},{"Bonus":0,"Continent":"K63","ID":40472,"Name":"Mroczny Zamek 022","PlayerID":698908184,"Points":5022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40472","ServerKey":"pl181","X":356,"Y":631},{"Bonus":0,"Continent":"K65","ID":40473,"Name":"Kruczy RĂłg","PlayerID":699567608,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40473","ServerKey":"pl181","X":588,"Y":672},{"Bonus":0,"Continent":"K35","ID":40474,"Name":"Wioska barbarzyƄska","PlayerID":8606809,"Points":8295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40474","ServerKey":"pl181","X":532,"Y":305},{"Bonus":0,"Continent":"K63","ID":40475,"Name":"psycha sitting","PlayerID":699736927,"Points":6689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40475","ServerKey":"pl181","X":399,"Y":664},{"Bonus":0,"Continent":"K43","ID":40476,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40476","ServerKey":"pl181","X":310,"Y":453},{"Bonus":0,"Continent":"K33","ID":40477,"Name":"Szlachcic","PlayerID":3484132,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40477","ServerKey":"pl181","X":384,"Y":343},{"Bonus":0,"Continent":"K34","ID":40478,"Name":"003.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40478","ServerKey":"pl181","X":438,"Y":314},{"Bonus":0,"Continent":"K55","ID":40479,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40479","ServerKey":"pl181","X":524,"Y":536},{"Bonus":0,"Continent":"K63","ID":40480,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":4394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40480","ServerKey":"pl181","X":395,"Y":665},{"Bonus":8,"Continent":"K34","ID":40481,"Name":"120.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40481","ServerKey":"pl181","X":442,"Y":314},{"Bonus":0,"Continent":"K36","ID":40482,"Name":"Wioska Bbartek97","PlayerID":849097312,"Points":5600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40482","ServerKey":"pl181","X":617,"Y":339},{"Bonus":0,"Continent":"K66","ID":40483,"Name":"0013","PlayerID":6417987,"Points":7372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40483","ServerKey":"pl181","X":648,"Y":627},{"Bonus":0,"Continent":"K64","ID":40484,"Name":"psycha sitting","PlayerID":699736927,"Points":6874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40484","ServerKey":"pl181","X":421,"Y":678},{"Bonus":0,"Continent":"K63","ID":40485,"Name":"D.020","PlayerID":849088243,"Points":3783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40485","ServerKey":"pl181","X":394,"Y":664},{"Bonus":0,"Continent":"K43","ID":40486,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40486","ServerKey":"pl181","X":308,"Y":456},{"Bonus":0,"Continent":"K46","ID":40487,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40487","ServerKey":"pl181","X":671,"Y":410},{"Bonus":0,"Continent":"K43","ID":40488,"Name":"003","PlayerID":848895676,"Points":2276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40488","ServerKey":"pl181","X":308,"Y":471},{"Bonus":0,"Continent":"K36","ID":40489,"Name":"Wioska barbarzyƄska","PlayerID":699433558,"Points":4748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40489","ServerKey":"pl181","X":617,"Y":341},{"Bonus":0,"Continent":"K35","ID":40490,"Name":"B008","PlayerID":699208929,"Points":9250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40490","ServerKey":"pl181","X":516,"Y":306},{"Bonus":0,"Continent":"K65","ID":40491,"Name":"###058###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40491","ServerKey":"pl181","X":581,"Y":684},{"Bonus":0,"Continent":"K63","ID":40492,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40492","ServerKey":"pl181","X":386,"Y":654},{"Bonus":7,"Continent":"K56","ID":40493,"Name":"Didek","PlayerID":849070946,"Points":7430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40493","ServerKey":"pl181","X":676,"Y":589},{"Bonus":0,"Continent":"K66","ID":40494,"Name":"Wioska anibella","PlayerID":8224678,"Points":10679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40494","ServerKey":"pl181","X":651,"Y":610},{"Bonus":0,"Continent":"K65","ID":40495,"Name":"###059###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40495","ServerKey":"pl181","X":594,"Y":676},{"Bonus":0,"Continent":"K63","ID":40496,"Name":"Jedziemy","PlayerID":6948793,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40496","ServerKey":"pl181","X":363,"Y":648},{"Bonus":0,"Continent":"K66","ID":40497,"Name":"###060###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40497","ServerKey":"pl181","X":600,"Y":675},{"Bonus":0,"Continent":"K53","ID":40498,"Name":"Dream on","PlayerID":698962117,"Points":6722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40498","ServerKey":"pl181","X":307,"Y":506},{"Bonus":0,"Continent":"K64","ID":40499,"Name":"FP006","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40499","ServerKey":"pl181","X":482,"Y":697},{"Bonus":0,"Continent":"K53","ID":40500,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40500","ServerKey":"pl181","X":323,"Y":581},{"Bonus":0,"Continent":"K46","ID":40501,"Name":"Wioska barbarzyƄska","PlayerID":699738350,"Points":6929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40501","ServerKey":"pl181","X":676,"Y":412},{"Bonus":0,"Continent":"K33","ID":40502,"Name":"z Goscia099859","PlayerID":3909522,"Points":8488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40502","ServerKey":"pl181","X":355,"Y":361},{"Bonus":0,"Continent":"K56","ID":40503,"Name":"TWIERDZA .:012:.","PlayerID":7154207,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40503","ServerKey":"pl181","X":685,"Y":571},{"Bonus":0,"Continent":"K33","ID":40504,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":6140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40504","ServerKey":"pl181","X":342,"Y":375},{"Bonus":0,"Continent":"K35","ID":40505,"Name":"K35 - [013] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40505","ServerKey":"pl181","X":580,"Y":321},{"Bonus":0,"Continent":"K56","ID":40506,"Name":"Didek","PlayerID":849070946,"Points":4749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40506","ServerKey":"pl181","X":681,"Y":588},{"Bonus":0,"Continent":"K33","ID":40507,"Name":"Wioska barbarzyƄska","PlayerID":699541376,"Points":2824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40507","ServerKey":"pl181","X":345,"Y":385},{"Bonus":0,"Continent":"K33","ID":40508,"Name":"Wioska 03","PlayerID":3372959,"Points":3777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40508","ServerKey":"pl181","X":349,"Y":384},{"Bonus":0,"Continent":"K33","ID":40509,"Name":"Wioska mnich-124","PlayerID":698807570,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40509","ServerKey":"pl181","X":336,"Y":393},{"Bonus":0,"Continent":"K43","ID":40510,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40510","ServerKey":"pl181","X":349,"Y":426},{"Bonus":0,"Continent":"K34","ID":40511,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40511","ServerKey":"pl181","X":496,"Y":300},{"Bonus":0,"Continent":"K65","ID":40512,"Name":"Lilka =*","PlayerID":7860453,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40512","ServerKey":"pl181","X":554,"Y":690},{"Bonus":0,"Continent":"K56","ID":40513,"Name":"Gogolin","PlayerID":848932879,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40513","ServerKey":"pl181","X":686,"Y":551},{"Bonus":0,"Continent":"K33","ID":40514,"Name":"Szlachcic","PlayerID":698160606,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40514","ServerKey":"pl181","X":379,"Y":349},{"Bonus":0,"Continent":"K66","ID":40515,"Name":"#084#","PlayerID":692803,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40515","ServerKey":"pl181","X":634,"Y":643},{"Bonus":0,"Continent":"K53","ID":40516,"Name":"000 Plutosea","PlayerID":9280477,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40516","ServerKey":"pl181","X":312,"Y":567},{"Bonus":0,"Continent":"K64","ID":40517,"Name":"Wioska barbarzyƄska","PlayerID":699725436,"Points":3365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40517","ServerKey":"pl181","X":462,"Y":695},{"Bonus":0,"Continent":"K53","ID":40518,"Name":"Wonderwall","PlayerID":698962117,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40518","ServerKey":"pl181","X":310,"Y":554},{"Bonus":0,"Continent":"K64","ID":40519,"Name":"0052 Dzikusy","PlayerID":849037407,"Points":6458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40519","ServerKey":"pl181","X":447,"Y":692},{"Bonus":0,"Continent":"K56","ID":40520,"Name":"25. Bremervoord","PlayerID":8976313,"Points":7090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40520","ServerKey":"pl181","X":694,"Y":539},{"Bonus":0,"Continent":"K25","ID":40521,"Name":"KoƂobrzeg","PlayerID":7758085,"Points":5583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40521","ServerKey":"pl181","X":506,"Y":299},{"Bonus":0,"Continent":"K46","ID":40522,"Name":"031. nie czytaj tego","PlayerID":7494497,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40522","ServerKey":"pl181","X":693,"Y":468},{"Bonus":0,"Continent":"K65","ID":40523,"Name":"- 196 - SS","PlayerID":849018239,"Points":7207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40523","ServerKey":"pl181","X":539,"Y":698},{"Bonus":0,"Continent":"K34","ID":40524,"Name":"#0274 EmersonJr","PlayerID":1238300,"Points":7833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40524","ServerKey":"pl181","X":459,"Y":308},{"Bonus":0,"Continent":"K56","ID":40525,"Name":"Wioska Zorro 026","PlayerID":849080702,"Points":4213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40525","ServerKey":"pl181","X":675,"Y":591},{"Bonus":0,"Continent":"K43","ID":40526,"Name":"Dream on","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40526","ServerKey":"pl181","X":302,"Y":490},{"Bonus":0,"Continent":"K53","ID":40527,"Name":"Prowincja","PlayerID":849096458,"Points":7282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40527","ServerKey":"pl181","X":314,"Y":569},{"Bonus":0,"Continent":"K65","ID":40528,"Name":"2.A Coruna","PlayerID":698215322,"Points":3951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40528","ServerKey":"pl181","X":576,"Y":676},{"Bonus":0,"Continent":"K64","ID":40529,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40529","ServerKey":"pl181","X":419,"Y":677},{"Bonus":0,"Continent":"K33","ID":40530,"Name":"022","PlayerID":8153941,"Points":3652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40530","ServerKey":"pl181","X":395,"Y":333},{"Bonus":0,"Continent":"K46","ID":40531,"Name":"[053] ????","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40531","ServerKey":"pl181","X":684,"Y":426},{"Bonus":0,"Continent":"K53","ID":40532,"Name":"045","PlayerID":9280477,"Points":4927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40532","ServerKey":"pl181","X":302,"Y":537},{"Bonus":0,"Continent":"K64","ID":40533,"Name":"ZZZ","PlayerID":699827112,"Points":9473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40533","ServerKey":"pl181","X":460,"Y":693},{"Bonus":0,"Continent":"K46","ID":40534,"Name":"Bobolo","PlayerID":699738350,"Points":8722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40534","ServerKey":"pl181","X":686,"Y":431},{"Bonus":0,"Continent":"K56","ID":40535,"Name":"TWIERDZA .:050:.","PlayerID":7154207,"Points":10356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40535","ServerKey":"pl181","X":692,"Y":553},{"Bonus":0,"Continent":"K53","ID":40536,"Name":"Hello there","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40536","ServerKey":"pl181","X":323,"Y":593},{"Bonus":0,"Continent":"K56","ID":40537,"Name":"Didek","PlayerID":849070946,"Points":8566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40537","ServerKey":"pl181","X":677,"Y":574},{"Bonus":0,"Continent":"K56","ID":40538,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40538","ServerKey":"pl181","X":686,"Y":549},{"Bonus":0,"Continent":"K66","ID":40539,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40539","ServerKey":"pl181","X":651,"Y":621},{"Bonus":0,"Continent":"K53","ID":40540,"Name":"C0008","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40540","ServerKey":"pl181","X":303,"Y":518},{"Bonus":0,"Continent":"K35","ID":40541,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":2946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40541","ServerKey":"pl181","X":550,"Y":313},{"Bonus":0,"Continent":"K46","ID":40543,"Name":"kamilex","PlayerID":849095435,"Points":4655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40543","ServerKey":"pl181","X":681,"Y":421},{"Bonus":0,"Continent":"K65","ID":40544,"Name":"TARAN","PlayerID":7860453,"Points":5540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40544","ServerKey":"pl181","X":553,"Y":693},{"Bonus":0,"Continent":"K65","ID":40545,"Name":"Darma dla zawodnika","PlayerID":848928624,"Points":6967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40545","ServerKey":"pl181","X":514,"Y":697},{"Bonus":0,"Continent":"K64","ID":40546,"Name":"#whaj2","PlayerID":699605333,"Points":9941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40546","ServerKey":"pl181","X":484,"Y":698},{"Bonus":0,"Continent":"K75","ID":40547,"Name":"090 invidia","PlayerID":849093426,"Points":6381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40547","ServerKey":"pl181","X":518,"Y":700},{"Bonus":0,"Continent":"K34","ID":40548,"Name":"050","PlayerID":2502956,"Points":9317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40548","ServerKey":"pl181","X":452,"Y":305},{"Bonus":0,"Continent":"K35","ID":40549,"Name":"121 Wioska barbarzyƄska","PlayerID":699491076,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40549","ServerKey":"pl181","X":545,"Y":356},{"Bonus":0,"Continent":"K46","ID":40550,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40550","ServerKey":"pl181","X":696,"Y":489},{"Bonus":0,"Continent":"K34","ID":40551,"Name":"#0167 yasoke19","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40551","ServerKey":"pl181","X":493,"Y":317},{"Bonus":0,"Continent":"K64","ID":40552,"Name":"035# Renei","PlayerID":3933666,"Points":4800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40552","ServerKey":"pl181","X":480,"Y":692},{"Bonus":0,"Continent":"K63","ID":40553,"Name":"O063","PlayerID":272173,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40553","ServerKey":"pl181","X":342,"Y":621},{"Bonus":0,"Continent":"K64","ID":40554,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40554","ServerKey":"pl181","X":405,"Y":671},{"Bonus":0,"Continent":"K34","ID":40555,"Name":"???","PlayerID":698489071,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40555","ServerKey":"pl181","X":480,"Y":308},{"Bonus":0,"Continent":"K65","ID":40556,"Name":"Wyspa_45","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40556","ServerKey":"pl181","X":510,"Y":697},{"Bonus":0,"Continent":"K63","ID":40557,"Name":"A 073","PlayerID":699269923,"Points":8117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40557","ServerKey":"pl181","X":363,"Y":639},{"Bonus":0,"Continent":"K33","ID":40558,"Name":"Wow11","PlayerID":699730714,"Points":7886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40558","ServerKey":"pl181","X":366,"Y":357},{"Bonus":0,"Continent":"K65","ID":40560,"Name":"Wyspa_05","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40560","ServerKey":"pl181","X":515,"Y":693},{"Bonus":7,"Continent":"K53","ID":40561,"Name":"Dream on","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40561","ServerKey":"pl181","X":302,"Y":504},{"Bonus":0,"Continent":"K63","ID":40562,"Name":"A 066","PlayerID":6948793,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40562","ServerKey":"pl181","X":363,"Y":645},{"Bonus":0,"Continent":"K53","ID":40563,"Name":"C0184","PlayerID":8841266,"Points":7716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40563","ServerKey":"pl181","X":305,"Y":538},{"Bonus":1,"Continent":"K35","ID":40564,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40564","ServerKey":"pl181","X":532,"Y":301},{"Bonus":0,"Continent":"K56","ID":40565,"Name":"Wioska 061","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40565","ServerKey":"pl181","X":646,"Y":593},{"Bonus":0,"Continent":"K64","ID":40566,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":8804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40566","ServerKey":"pl181","X":474,"Y":695},{"Bonus":0,"Continent":"K34","ID":40567,"Name":".achim.","PlayerID":6936607,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40567","ServerKey":"pl181","X":487,"Y":313},{"Bonus":0,"Continent":"K24","ID":40568,"Name":"????","PlayerID":698489071,"Points":8768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40568","ServerKey":"pl181","X":492,"Y":297},{"Bonus":0,"Continent":"K53","ID":40569,"Name":"061.","PlayerID":7183372,"Points":8393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40569","ServerKey":"pl181","X":324,"Y":595},{"Bonus":0,"Continent":"K36","ID":40570,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40570","ServerKey":"pl181","X":625,"Y":349},{"Bonus":0,"Continent":"K53","ID":40572,"Name":"[0217]","PlayerID":8630972,"Points":7680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40572","ServerKey":"pl181","X":300,"Y":507},{"Bonus":0,"Continent":"K65","ID":40573,"Name":"###061###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40573","ServerKey":"pl181","X":594,"Y":674},{"Bonus":0,"Continent":"K66","ID":40574,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40574","ServerKey":"pl181","X":631,"Y":653},{"Bonus":0,"Continent":"K46","ID":40575,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40575","ServerKey":"pl181","X":693,"Y":487},{"Bonus":0,"Continent":"K35","ID":40576,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":4354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40576","ServerKey":"pl181","X":593,"Y":328},{"Bonus":0,"Continent":"K56","ID":40577,"Name":"Didek","PlayerID":849070946,"Points":931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40577","ServerKey":"pl181","X":684,"Y":582},{"Bonus":0,"Continent":"K65","ID":40578,"Name":"- 134 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40578","ServerKey":"pl181","X":543,"Y":693},{"Bonus":0,"Continent":"K33","ID":40579,"Name":"B03 SƂupsk","PlayerID":7462660,"Points":4732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40579","ServerKey":"pl181","X":345,"Y":375},{"Bonus":0,"Continent":"K53","ID":40580,"Name":"C0014","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40580","ServerKey":"pl181","X":306,"Y":519},{"Bonus":0,"Continent":"K56","ID":40581,"Name":"006","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40581","ServerKey":"pl181","X":699,"Y":506},{"Bonus":0,"Continent":"K66","ID":40582,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40582","ServerKey":"pl181","X":649,"Y":628},{"Bonus":0,"Continent":"K66","ID":40583,"Name":"- Fracadabra -","PlayerID":849009623,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40583","ServerKey":"pl181","X":662,"Y":615},{"Bonus":0,"Continent":"K53","ID":40584,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40584","ServerKey":"pl181","X":331,"Y":597},{"Bonus":0,"Continent":"K64","ID":40585,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40585","ServerKey":"pl181","X":441,"Y":688},{"Bonus":32,"Continent":"K53","ID":40586,"Name":"Twierdza (bula90)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40586","ServerKey":"pl181","X":356,"Y":563},{"Bonus":0,"Continent":"K46","ID":40588,"Name":"Gattacka","PlayerID":699298370,"Points":8843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40588","ServerKey":"pl181","X":687,"Y":431},{"Bonus":0,"Continent":"K46","ID":40590,"Name":"B#008","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40590","ServerKey":"pl181","X":695,"Y":460},{"Bonus":0,"Continent":"K56","ID":40591,"Name":"Child In Time","PlayerID":848926293,"Points":4960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40591","ServerKey":"pl181","X":639,"Y":587},{"Bonus":0,"Continent":"K66","ID":40592,"Name":"D009","PlayerID":9023703,"Points":5797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40592","ServerKey":"pl181","X":612,"Y":661},{"Bonus":0,"Continent":"K36","ID":40593,"Name":"Hofek 19","PlayerID":699491076,"Points":7671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40593","ServerKey":"pl181","X":667,"Y":398},{"Bonus":0,"Continent":"K66","ID":40595,"Name":"skiba","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40595","ServerKey":"pl181","X":613,"Y":663},{"Bonus":4,"Continent":"K53","ID":40596,"Name":"074g","PlayerID":698641566,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40596","ServerKey":"pl181","X":310,"Y":557},{"Bonus":0,"Continent":"K33","ID":40597,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40597","ServerKey":"pl181","X":334,"Y":387},{"Bonus":0,"Continent":"K24","ID":40598,"Name":"???","PlayerID":698489071,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40598","ServerKey":"pl181","X":494,"Y":299},{"Bonus":0,"Continent":"K56","ID":40601,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40601","ServerKey":"pl181","X":694,"Y":521},{"Bonus":0,"Continent":"K65","ID":40602,"Name":"- 192 - SS","PlayerID":849018239,"Points":7576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40602","ServerKey":"pl181","X":560,"Y":690},{"Bonus":0,"Continent":"K66","ID":40603,"Name":"Wioska barbarzyƄska","PlayerID":849066044,"Points":5787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40603","ServerKey":"pl181","X":653,"Y":615},{"Bonus":0,"Continent":"K64","ID":40604,"Name":"FP025","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40604","ServerKey":"pl181","X":476,"Y":699},{"Bonus":0,"Continent":"K53","ID":40605,"Name":"004","PlayerID":5997814,"Points":5416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40605","ServerKey":"pl181","X":305,"Y":550},{"Bonus":0,"Continent":"K56","ID":40606,"Name":"029","PlayerID":699150527,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40606","ServerKey":"pl181","X":698,"Y":533},{"Bonus":0,"Continent":"K43","ID":40607,"Name":"011","PlayerID":2418364,"Points":2823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40607","ServerKey":"pl181","X":308,"Y":474},{"Bonus":0,"Continent":"K64","ID":40608,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40608","ServerKey":"pl181","X":410,"Y":676},{"Bonus":0,"Continent":"K64","ID":40609,"Name":"psycha sitting","PlayerID":699736927,"Points":6394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40609","ServerKey":"pl181","X":416,"Y":675},{"Bonus":0,"Continent":"K46","ID":40610,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40610","ServerKey":"pl181","X":672,"Y":404},{"Bonus":0,"Continent":"K36","ID":40611,"Name":"East7","PlayerID":1086351,"Points":3700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40611","ServerKey":"pl181","X":657,"Y":375},{"Bonus":0,"Continent":"K36","ID":40612,"Name":"023 LUCKY SHOT","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40612","ServerKey":"pl181","X":619,"Y":349},{"Bonus":0,"Continent":"K56","ID":40613,"Name":"Angie","PlayerID":848926293,"Points":4121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40613","ServerKey":"pl181","X":639,"Y":588},{"Bonus":0,"Continent":"K36","ID":40614,"Name":"XDX","PlayerID":699098531,"Points":6869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40614","ServerKey":"pl181","X":604,"Y":330},{"Bonus":0,"Continent":"K35","ID":40615,"Name":"Wioska 3","PlayerID":849099342,"Points":6931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40615","ServerKey":"pl181","X":503,"Y":307},{"Bonus":0,"Continent":"K36","ID":40616,"Name":"-26-","PlayerID":699837826,"Points":2189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40616","ServerKey":"pl181","X":642,"Y":358},{"Bonus":0,"Continent":"K56","ID":40617,"Name":"097","PlayerID":2135129,"Points":4090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40617","ServerKey":"pl181","X":699,"Y":528},{"Bonus":0,"Continent":"K46","ID":40619,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":4485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40619","ServerKey":"pl181","X":672,"Y":411},{"Bonus":0,"Continent":"K52","ID":40620,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40620","ServerKey":"pl181","X":299,"Y":510},{"Bonus":0,"Continent":"K64","ID":40621,"Name":"~082.","PlayerID":7139820,"Points":3311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40621","ServerKey":"pl181","X":465,"Y":697},{"Bonus":0,"Continent":"K64","ID":40622,"Name":"psycha sitting","PlayerID":699736927,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40622","ServerKey":"pl181","X":412,"Y":676},{"Bonus":0,"Continent":"K64","ID":40623,"Name":"0.10 Szale!","PlayerID":699827112,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40623","ServerKey":"pl181","X":467,"Y":690},{"Bonus":0,"Continent":"K65","ID":40624,"Name":"- 168 - SS","PlayerID":849018239,"Points":8938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40624","ServerKey":"pl181","X":548,"Y":692},{"Bonus":8,"Continent":"K46","ID":40625,"Name":"027. Kopalnia","PlayerID":7494497,"Points":9926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40625","ServerKey":"pl181","X":690,"Y":461},{"Bonus":0,"Continent":"K46","ID":40626,"Name":"032. nie ma tu nic ciekawego","PlayerID":7494497,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40626","ServerKey":"pl181","X":692,"Y":466},{"Bonus":0,"Continent":"K63","ID":40627,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40627","ServerKey":"pl181","X":335,"Y":603},{"Bonus":0,"Continent":"K64","ID":40628,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40628","ServerKey":"pl181","X":456,"Y":647},{"Bonus":0,"Continent":"K56","ID":40629,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":4219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40629","ServerKey":"pl181","X":683,"Y":564},{"Bonus":0,"Continent":"K36","ID":40631,"Name":"061","PlayerID":849010255,"Points":6148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40631","ServerKey":"pl181","X":631,"Y":348},{"Bonus":0,"Continent":"K34","ID":40632,"Name":"#0148 Kamil0ss1","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40632","ServerKey":"pl181","X":476,"Y":319},{"Bonus":0,"Continent":"K43","ID":40633,"Name":"Dream on","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40633","ServerKey":"pl181","X":302,"Y":489},{"Bonus":0,"Continent":"K46","ID":40636,"Name":"Piwna 25","PlayerID":699812007,"Points":4400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40636","ServerKey":"pl181","X":679,"Y":416},{"Bonus":0,"Continent":"K43","ID":40638,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40638","ServerKey":"pl181","X":304,"Y":494},{"Bonus":0,"Continent":"K63","ID":40639,"Name":".24. Ilion e","PlayerID":272173,"Points":6339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40639","ServerKey":"pl181","X":351,"Y":626},{"Bonus":0,"Continent":"K46","ID":40640,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40640","ServerKey":"pl181","X":691,"Y":440},{"Bonus":0,"Continent":"K46","ID":40641,"Name":"037 - Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40641","ServerKey":"pl181","X":689,"Y":453},{"Bonus":0,"Continent":"K33","ID":40642,"Name":"z 001034","PlayerID":3909522,"Points":7331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40642","ServerKey":"pl181","X":360,"Y":365},{"Bonus":0,"Continent":"K34","ID":40643,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40643","ServerKey":"pl181","X":418,"Y":317},{"Bonus":0,"Continent":"K56","ID":40644,"Name":"Didek","PlayerID":849070946,"Points":4706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40644","ServerKey":"pl181","X":680,"Y":575},{"Bonus":0,"Continent":"K64","ID":40645,"Name":"psycha sitting","PlayerID":699736927,"Points":5434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40645","ServerKey":"pl181","X":421,"Y":682},{"Bonus":0,"Continent":"K35","ID":40646,"Name":"B.10 duchy serca puszczy","PlayerID":849026145,"Points":2464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40646","ServerKey":"pl181","X":557,"Y":315},{"Bonus":0,"Continent":"K24","ID":40647,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40647","ServerKey":"pl181","X":496,"Y":299},{"Bonus":0,"Continent":"K63","ID":40648,"Name":"Wioska Lord Deemer","PlayerID":7183372,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40648","ServerKey":"pl181","X":324,"Y":600},{"Bonus":0,"Continent":"K35","ID":40649,"Name":"Wioska bukai","PlayerID":7563943,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40649","ServerKey":"pl181","X":578,"Y":324},{"Bonus":0,"Continent":"K35","ID":40650,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40650","ServerKey":"pl181","X":504,"Y":307},{"Bonus":0,"Continent":"K56","ID":40651,"Name":"SiƂa, Masa, RzeĆșba 12","PlayerID":699379895,"Points":8625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40651","ServerKey":"pl181","X":624,"Y":515},{"Bonus":0,"Continent":"K64","ID":40652,"Name":"#whaj4","PlayerID":699605333,"Points":8713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40652","ServerKey":"pl181","X":482,"Y":699},{"Bonus":8,"Continent":"K56","ID":40653,"Name":"B13","PlayerID":848995478,"Points":10702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40653","ServerKey":"pl181","X":698,"Y":538},{"Bonus":0,"Continent":"K64","ID":40655,"Name":"R 034","PlayerID":699195358,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40655","ServerKey":"pl181","X":497,"Y":696},{"Bonus":0,"Continent":"K34","ID":40656,"Name":"[B]_[024] Dejv.oldplyr","PlayerID":699380607,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40656","ServerKey":"pl181","X":419,"Y":339},{"Bonus":0,"Continent":"K33","ID":40657,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":3677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40657","ServerKey":"pl181","X":338,"Y":381},{"Bonus":0,"Continent":"K54","ID":40658,"Name":"...","PlayerID":848915531,"Points":8758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40658","ServerKey":"pl181","X":484,"Y":542},{"Bonus":0,"Continent":"K63","ID":40659,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40659","ServerKey":"pl181","X":390,"Y":668},{"Bonus":0,"Continent":"K43","ID":40660,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40660","ServerKey":"pl181","X":309,"Y":456},{"Bonus":0,"Continent":"K34","ID":40661,"Name":"???","PlayerID":698489071,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40661","ServerKey":"pl181","X":479,"Y":300},{"Bonus":0,"Continent":"K53","ID":40662,"Name":"Elo Elo 17","PlayerID":699016994,"Points":6620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40662","ServerKey":"pl181","X":314,"Y":579},{"Bonus":0,"Continent":"K66","ID":40664,"Name":"LD041 Out Of Body Experiance","PlayerID":8096537,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40664","ServerKey":"pl181","X":635,"Y":643},{"Bonus":0,"Continent":"K36","ID":40665,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":9301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40665","ServerKey":"pl181","X":663,"Y":383},{"Bonus":0,"Continent":"K46","ID":40666,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40666","ServerKey":"pl181","X":697,"Y":498},{"Bonus":0,"Continent":"K56","ID":40667,"Name":"TWIERDZA .:089:.","PlayerID":7154207,"Points":7503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40667","ServerKey":"pl181","X":681,"Y":570},{"Bonus":0,"Continent":"K34","ID":40668,"Name":"#0278 Marass","PlayerID":1238300,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40668","ServerKey":"pl181","X":473,"Y":306},{"Bonus":0,"Continent":"K64","ID":40669,"Name":"0008 Sir JuriGagarin","PlayerID":849037407,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40669","ServerKey":"pl181","X":441,"Y":689},{"Bonus":0,"Continent":"K64","ID":40670,"Name":"Szale","PlayerID":698585370,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40670","ServerKey":"pl181","X":464,"Y":690},{"Bonus":0,"Continent":"K64","ID":40671,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40671","ServerKey":"pl181","X":415,"Y":680},{"Bonus":0,"Continent":"K53","ID":40672,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40672","ServerKey":"pl181","X":302,"Y":507},{"Bonus":0,"Continent":"K64","ID":40673,"Name":"0012 mackobl14","PlayerID":849037407,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40673","ServerKey":"pl181","X":442,"Y":690},{"Bonus":0,"Continent":"K36","ID":40674,"Name":"013 Alabama","PlayerID":9029928,"Points":5876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40674","ServerKey":"pl181","X":645,"Y":370},{"Bonus":0,"Continent":"K36","ID":40675,"Name":"Wioska Alx18","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40675","ServerKey":"pl181","X":669,"Y":393},{"Bonus":0,"Continent":"K47","ID":40676,"Name":"C.003","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40676","ServerKey":"pl181","X":701,"Y":492},{"Bonus":0,"Continent":"K46","ID":40677,"Name":"22.GFRIEND","PlayerID":9180206,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40677","ServerKey":"pl181","X":685,"Y":418},{"Bonus":0,"Continent":"K66","ID":40678,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":6242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40678","ServerKey":"pl181","X":668,"Y":603},{"Bonus":0,"Continent":"K33","ID":40680,"Name":"B02 GdaƄsk","PlayerID":7462660,"Points":4834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40680","ServerKey":"pl181","X":349,"Y":374},{"Bonus":0,"Continent":"K53","ID":40681,"Name":"051g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40681","ServerKey":"pl181","X":311,"Y":556},{"Bonus":0,"Continent":"K63","ID":40682,"Name":"D018","PlayerID":272173,"Points":7789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40682","ServerKey":"pl181","X":358,"Y":632},{"Bonus":0,"Continent":"K63","ID":40683,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":5285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40683","ServerKey":"pl181","X":352,"Y":633},{"Bonus":0,"Continent":"K34","ID":40684,"Name":".achim.","PlayerID":6936607,"Points":4198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40684","ServerKey":"pl181","X":471,"Y":302},{"Bonus":0,"Continent":"K35","ID":40686,"Name":"Wioska barbarzyƄska","PlayerID":8606809,"Points":4294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40686","ServerKey":"pl181","X":528,"Y":304},{"Bonus":0,"Continent":"K33","ID":40687,"Name":"New Land 04","PlayerID":849064752,"Points":3847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40687","ServerKey":"pl181","X":337,"Y":395},{"Bonus":0,"Continent":"K36","ID":40688,"Name":"Klaudek24","PlayerID":849092309,"Points":3265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40688","ServerKey":"pl181","X":640,"Y":356},{"Bonus":0,"Continent":"K57","ID":40689,"Name":"013","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40689","ServerKey":"pl181","X":700,"Y":507},{"Bonus":0,"Continent":"K34","ID":40690,"Name":"018.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40690","ServerKey":"pl181","X":434,"Y":310},{"Bonus":0,"Continent":"K43","ID":40691,"Name":"ZA28","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40691","ServerKey":"pl181","X":320,"Y":409},{"Bonus":0,"Continent":"K66","ID":40692,"Name":"D015","PlayerID":9023703,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40692","ServerKey":"pl181","X":615,"Y":659},{"Bonus":0,"Continent":"K46","ID":40693,"Name":"C.004","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40693","ServerKey":"pl181","X":697,"Y":492},{"Bonus":0,"Continent":"K65","ID":40694,"Name":"Forteca*008*","PlayerID":1078121,"Points":6557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40694","ServerKey":"pl181","X":531,"Y":696},{"Bonus":0,"Continent":"K53","ID":40695,"Name":"Rogatki 5","PlayerID":699265922,"Points":3889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40695","ServerKey":"pl181","X":314,"Y":560},{"Bonus":0,"Continent":"K65","ID":40697,"Name":"RTS 75","PlayerID":848995242,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40697","ServerKey":"pl181","X":573,"Y":625},{"Bonus":0,"Continent":"K46","ID":40698,"Name":"Jan NEW2 Ost K","PlayerID":879782,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40698","ServerKey":"pl181","X":688,"Y":455},{"Bonus":3,"Continent":"K33","ID":40699,"Name":"wojo","PlayerID":698231772,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40699","ServerKey":"pl181","X":396,"Y":330},{"Bonus":0,"Continent":"K33","ID":40700,"Name":"Wioska Rychont","PlayerID":1668965,"Points":1091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40700","ServerKey":"pl181","X":378,"Y":340},{"Bonus":0,"Continent":"K53","ID":40701,"Name":"Wioska barbarzyƄska","PlayerID":699671197,"Points":4224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40701","ServerKey":"pl181","X":314,"Y":573},{"Bonus":0,"Continent":"K63","ID":40702,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":4663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40702","ServerKey":"pl181","X":355,"Y":632},{"Bonus":0,"Continent":"K43","ID":40703,"Name":"016 VWF Wioska barbarzyƄska","PlayerID":3108144,"Points":6316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40703","ServerKey":"pl181","X":311,"Y":428},{"Bonus":0,"Continent":"K34","ID":40704,"Name":"2.Rozhok","PlayerID":849098648,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40704","ServerKey":"pl181","X":412,"Y":334},{"Bonus":0,"Continent":"K34","ID":40705,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":8205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40705","ServerKey":"pl181","X":403,"Y":363},{"Bonus":0,"Continent":"K56","ID":40706,"Name":"007","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40706","ServerKey":"pl181","X":698,"Y":506},{"Bonus":0,"Continent":"K36","ID":40707,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40707","ServerKey":"pl181","X":615,"Y":336},{"Bonus":0,"Continent":"K53","ID":40708,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":5980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40708","ServerKey":"pl181","X":308,"Y":555},{"Bonus":0,"Continent":"K63","ID":40709,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":8003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40709","ServerKey":"pl181","X":341,"Y":621},{"Bonus":6,"Continent":"K34","ID":40710,"Name":"203...segador","PlayerID":6920960,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40710","ServerKey":"pl181","X":450,"Y":305},{"Bonus":0,"Continent":"K35","ID":40711,"Name":"X 007","PlayerID":6384450,"Points":2654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40711","ServerKey":"pl181","X":596,"Y":324},{"Bonus":0,"Continent":"K34","ID":40712,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40712","ServerKey":"pl181","X":421,"Y":318},{"Bonus":0,"Continent":"K43","ID":40713,"Name":"ZA09","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40713","ServerKey":"pl181","X":322,"Y":407},{"Bonus":0,"Continent":"K66","ID":40714,"Name":"005","PlayerID":849099544,"Points":4472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40714","ServerKey":"pl181","X":641,"Y":635},{"Bonus":0,"Continent":"K46","ID":40715,"Name":"B#027","PlayerID":2065730,"Points":4615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40715","ServerKey":"pl181","X":680,"Y":421},{"Bonus":0,"Continent":"K34","ID":40716,"Name":"[0049]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40716","ServerKey":"pl181","X":432,"Y":315},{"Bonus":1,"Continent":"K46","ID":40717,"Name":"Gattacka","PlayerID":699298370,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40717","ServerKey":"pl181","X":687,"Y":439},{"Bonus":0,"Continent":"K65","ID":40719,"Name":"###062###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40719","ServerKey":"pl181","X":594,"Y":675},{"Bonus":0,"Continent":"K33","ID":40721,"Name":"Wow9","PlayerID":698160606,"Points":8821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40721","ServerKey":"pl181","X":366,"Y":354},{"Bonus":0,"Continent":"K65","ID":40722,"Name":"###063###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40722","ServerKey":"pl181","X":580,"Y":683},{"Bonus":0,"Continent":"K36","ID":40724,"Name":"Na KraƄcu ƚwiata 011","PlayerID":9291984,"Points":6385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40724","ServerKey":"pl181","X":630,"Y":352},{"Bonus":0,"Continent":"K36","ID":40725,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":9257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40725","ServerKey":"pl181","X":654,"Y":371},{"Bonus":0,"Continent":"K64","ID":40726,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40726","ServerKey":"pl181","X":410,"Y":679},{"Bonus":0,"Continent":"K46","ID":40728,"Name":"Jan Ost","PlayerID":879782,"Points":8939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40728","ServerKey":"pl181","X":690,"Y":443},{"Bonus":0,"Continent":"K34","ID":40729,"Name":"040","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40729","ServerKey":"pl181","X":449,"Y":311},{"Bonus":0,"Continent":"K33","ID":40730,"Name":"Szlachcic","PlayerID":698160606,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40730","ServerKey":"pl181","X":380,"Y":341},{"Bonus":0,"Continent":"K36","ID":40731,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":3566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40731","ServerKey":"pl181","X":630,"Y":349},{"Bonus":0,"Continent":"K56","ID":40732,"Name":"TWIERDZA .:082:.","PlayerID":7154207,"Points":8208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40732","ServerKey":"pl181","X":687,"Y":564},{"Bonus":0,"Continent":"K35","ID":40733,"Name":"B006","PlayerID":699208929,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40733","ServerKey":"pl181","X":515,"Y":304},{"Bonus":0,"Continent":"K63","ID":40734,"Name":"D.015","PlayerID":849088243,"Points":6890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40734","ServerKey":"pl181","X":394,"Y":668},{"Bonus":0,"Continent":"K64","ID":40736,"Name":"No.26","PlayerID":698826986,"Points":1742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40736","ServerKey":"pl181","X":457,"Y":692},{"Bonus":0,"Continent":"K35","ID":40737,"Name":"Twierdza 1","PlayerID":699208929,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40737","ServerKey":"pl181","X":511,"Y":301},{"Bonus":0,"Continent":"K64","ID":40738,"Name":"~081.","PlayerID":7139820,"Points":3946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40738","ServerKey":"pl181","X":469,"Y":694},{"Bonus":0,"Continent":"K33","ID":40739,"Name":"012. Snotinghamscire","PlayerID":699660539,"Points":6682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40739","ServerKey":"pl181","X":377,"Y":340},{"Bonus":0,"Continent":"K65","ID":40742,"Name":"080 invidia","PlayerID":849093426,"Points":8862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40742","ServerKey":"pl181","X":518,"Y":699},{"Bonus":0,"Continent":"K56","ID":40743,"Name":"Didek","PlayerID":849070946,"Points":10336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40743","ServerKey":"pl181","X":687,"Y":577},{"Bonus":0,"Continent":"K43","ID":40744,"Name":"z181_16","PlayerID":393668,"Points":9698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40744","ServerKey":"pl181","X":312,"Y":444},{"Bonus":0,"Continent":"K57","ID":40745,"Name":"008","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40745","ServerKey":"pl181","X":701,"Y":509},{"Bonus":1,"Continent":"K57","ID":40746,"Name":"034 E Tenerife","PlayerID":8323711,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40746","ServerKey":"pl181","X":700,"Y":530},{"Bonus":0,"Continent":"K46","ID":40747,"Name":"OrzeƂ 11","PlayerID":699413581,"Points":4595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40747","ServerKey":"pl181","X":692,"Y":484},{"Bonus":0,"Continent":"K66","ID":40748,"Name":"025","PlayerID":699373599,"Points":6804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40748","ServerKey":"pl181","X":630,"Y":651},{"Bonus":3,"Continent":"K46","ID":40749,"Name":"003","PlayerID":699738350,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40749","ServerKey":"pl181","X":677,"Y":416},{"Bonus":0,"Continent":"K65","ID":40750,"Name":"-05-","PlayerID":7860453,"Points":6526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40750","ServerKey":"pl181","X":555,"Y":690},{"Bonus":0,"Continent":"K43","ID":40752,"Name":"003","PlayerID":2418364,"Points":6588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40752","ServerKey":"pl181","X":306,"Y":474},{"Bonus":0,"Continent":"K53","ID":40753,"Name":"B3.","PlayerID":849095482,"Points":4077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40753","ServerKey":"pl181","X":310,"Y":548},{"Bonus":0,"Continent":"K53","ID":40754,"Name":"Taran","PlayerID":6180190,"Points":7532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40754","ServerKey":"pl181","X":323,"Y":591},{"Bonus":0,"Continent":"K46","ID":40755,"Name":"Gattacka","PlayerID":699298370,"Points":9257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40755","ServerKey":"pl181","X":688,"Y":429},{"Bonus":0,"Continent":"K35","ID":40756,"Name":"005","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40756","ServerKey":"pl181","X":588,"Y":324},{"Bonus":0,"Continent":"K35","ID":40757,"Name":"Winterhome.076","PlayerID":848918380,"Points":8854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40757","ServerKey":"pl181","X":513,"Y":306},{"Bonus":0,"Continent":"K33","ID":40758,"Name":"*197*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40758","ServerKey":"pl181","X":361,"Y":358},{"Bonus":0,"Continent":"K53","ID":40759,"Name":"B2.","PlayerID":849095482,"Points":3761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40759","ServerKey":"pl181","X":310,"Y":543},{"Bonus":0,"Continent":"K36","ID":40760,"Name":"Na KraƄcu ƚwiata 010","PlayerID":9291984,"Points":6881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40760","ServerKey":"pl181","X":627,"Y":344},{"Bonus":0,"Continent":"K53","ID":40762,"Name":"Wioska ll","PlayerID":699671197,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40762","ServerKey":"pl181","X":319,"Y":580},{"Bonus":9,"Continent":"K53","ID":40763,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40763","ServerKey":"pl181","X":306,"Y":521},{"Bonus":0,"Continent":"K56","ID":40764,"Name":"Wrzoski Bida","PlayerID":848932879,"Points":8873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40764","ServerKey":"pl181","X":687,"Y":554},{"Bonus":0,"Continent":"K35","ID":40765,"Name":"Twierdza 6zzz","PlayerID":699208929,"Points":6069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40765","ServerKey":"pl181","X":510,"Y":300},{"Bonus":0,"Continent":"K64","ID":40766,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40766","ServerKey":"pl181","X":421,"Y":676},{"Bonus":0,"Continent":"K33","ID":40767,"Name":"Wioska 6","PlayerID":7462660,"Points":5181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40767","ServerKey":"pl181","X":340,"Y":376},{"Bonus":7,"Continent":"K63","ID":40768,"Name":"Osada koczownikĂłw","PlayerID":272173,"Points":2970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40768","ServerKey":"pl181","X":356,"Y":629},{"Bonus":0,"Continent":"K53","ID":40769,"Name":"A6.","PlayerID":849095482,"Points":4629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40769","ServerKey":"pl181","X":313,"Y":544},{"Bonus":0,"Continent":"K63","ID":40770,"Name":"Wioska barbarzyƄska1","PlayerID":699269923,"Points":9276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40770","ServerKey":"pl181","X":392,"Y":660},{"Bonus":0,"Continent":"K64","ID":40771,"Name":"Szale","PlayerID":699725436,"Points":8615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40771","ServerKey":"pl181","X":462,"Y":696},{"Bonus":0,"Continent":"K65","ID":40772,"Name":"027 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40772","ServerKey":"pl181","X":530,"Y":695},{"Bonus":0,"Continent":"K47","ID":40773,"Name":"Po maƂpce?","PlayerID":699126484,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40773","ServerKey":"pl181","X":700,"Y":498},{"Bonus":2,"Continent":"K53","ID":40774,"Name":"-4-","PlayerID":7183372,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40774","ServerKey":"pl181","X":325,"Y":596},{"Bonus":0,"Continent":"K64","ID":40775,"Name":"4.C","PlayerID":699777372,"Points":8692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40775","ServerKey":"pl181","X":456,"Y":693},{"Bonus":0,"Continent":"K56","ID":40776,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40776","ServerKey":"pl181","X":682,"Y":565},{"Bonus":0,"Continent":"K35","ID":40777,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40777","ServerKey":"pl181","X":554,"Y":305},{"Bonus":0,"Continent":"K63","ID":40778,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":4806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40778","ServerKey":"pl181","X":354,"Y":628},{"Bonus":0,"Continent":"K63","ID":40779,"Name":"O099","PlayerID":272173,"Points":9490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40779","ServerKey":"pl181","X":347,"Y":627},{"Bonus":0,"Continent":"K53","ID":40780,"Name":"000 Plutosea","PlayerID":9280477,"Points":7008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40780","ServerKey":"pl181","X":317,"Y":567},{"Bonus":0,"Continent":"K66","ID":40781,"Name":"S007","PlayerID":8627359,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40781","ServerKey":"pl181","X":600,"Y":673},{"Bonus":0,"Continent":"K57","ID":40782,"Name":"F4T4L","PlayerID":699150527,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40782","ServerKey":"pl181","X":702,"Y":510},{"Bonus":0,"Continent":"K64","ID":40783,"Name":"019","PlayerID":848896948,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40783","ServerKey":"pl181","X":475,"Y":698},{"Bonus":0,"Continent":"K33","ID":40784,"Name":"C04 Grudziądz","PlayerID":7462660,"Points":5554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40784","ServerKey":"pl181","X":348,"Y":376},{"Bonus":0,"Continent":"K47","ID":40785,"Name":"Kasia xd","PlayerID":942959,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40785","ServerKey":"pl181","X":703,"Y":497},{"Bonus":0,"Continent":"K53","ID":40786,"Name":"C0261","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40786","ServerKey":"pl181","X":303,"Y":546},{"Bonus":0,"Continent":"K35","ID":40787,"Name":"Lord Lord Franek .#140","PlayerID":698420691,"Points":10523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40787","ServerKey":"pl181","X":511,"Y":320},{"Bonus":0,"Continent":"K43","ID":40788,"Name":"Out of Touch","PlayerID":698962117,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40788","ServerKey":"pl181","X":321,"Y":428},{"Bonus":0,"Continent":"K46","ID":40789,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40789","ServerKey":"pl181","X":678,"Y":406},{"Bonus":0,"Continent":"K74","ID":40790,"Name":"039. Night Raid","PlayerID":699684062,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40790","ServerKey":"pl181","X":486,"Y":701},{"Bonus":0,"Continent":"K53","ID":40791,"Name":"C0122","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40791","ServerKey":"pl181","X":300,"Y":510},{"Bonus":0,"Continent":"K56","ID":40792,"Name":"TWIERDZA .:081:.","PlayerID":7154207,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40792","ServerKey":"pl181","X":685,"Y":561},{"Bonus":0,"Continent":"K63","ID":40793,"Name":"Taran","PlayerID":6180190,"Points":8768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40793","ServerKey":"pl181","X":328,"Y":604},{"Bonus":0,"Continent":"K57","ID":40794,"Name":"024","PlayerID":699150527,"Points":8705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40794","ServerKey":"pl181","X":701,"Y":511},{"Bonus":0,"Continent":"K34","ID":40795,"Name":"267...gulden","PlayerID":6920960,"Points":10283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40795","ServerKey":"pl181","X":460,"Y":304},{"Bonus":0,"Continent":"K64","ID":40797,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40797","ServerKey":"pl181","X":445,"Y":687},{"Bonus":1,"Continent":"K43","ID":40798,"Name":"Z02","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40798","ServerKey":"pl181","X":317,"Y":415},{"Bonus":0,"Continent":"K33","ID":40799,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":2507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40799","ServerKey":"pl181","X":342,"Y":376},{"Bonus":0,"Continent":"K56","ID":40800,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40800","ServerKey":"pl181","X":681,"Y":568},{"Bonus":0,"Continent":"K63","ID":40801,"Name":"KHORINIS","PlayerID":849099924,"Points":5506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40801","ServerKey":"pl181","X":372,"Y":656},{"Bonus":0,"Continent":"K43","ID":40802,"Name":"Out of Touch","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40802","ServerKey":"pl181","X":315,"Y":420},{"Bonus":0,"Continent":"K64","ID":40803,"Name":"002","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40803","ServerKey":"pl181","X":472,"Y":685},{"Bonus":0,"Continent":"K43","ID":40804,"Name":"Dream on","PlayerID":698962117,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40804","ServerKey":"pl181","X":300,"Y":483},{"Bonus":0,"Continent":"K47","ID":40805,"Name":"C.005","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40805","ServerKey":"pl181","X":702,"Y":492},{"Bonus":0,"Continent":"K64","ID":40806,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40806","ServerKey":"pl181","X":410,"Y":673},{"Bonus":0,"Continent":"K35","ID":40807,"Name":"K35 - [025] Before Land","PlayerID":699088769,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40807","ServerKey":"pl181","X":587,"Y":321},{"Bonus":8,"Continent":"K46","ID":40808,"Name":"C.001","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40808","ServerKey":"pl181","X":699,"Y":490},{"Bonus":0,"Continent":"K56","ID":40809,"Name":"TWIERDZA .:053:.","PlayerID":7154207,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40809","ServerKey":"pl181","X":681,"Y":566},{"Bonus":0,"Continent":"K53","ID":40810,"Name":"C0096","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40810","ServerKey":"pl181","X":305,"Y":531},{"Bonus":0,"Continent":"K65","ID":40811,"Name":"- 222 - SS","PlayerID":849018239,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40811","ServerKey":"pl181","X":555,"Y":695},{"Bonus":0,"Continent":"K65","ID":40812,"Name":"RTS 11","PlayerID":848995242,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40812","ServerKey":"pl181","X":576,"Y":636},{"Bonus":0,"Continent":"K57","ID":40813,"Name":"033","PlayerID":699150527,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40813","ServerKey":"pl181","X":700,"Y":521},{"Bonus":0,"Continent":"K36","ID":40814,"Name":"wieƛ5","PlayerID":7340529,"Points":7322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40814","ServerKey":"pl181","X":657,"Y":378},{"Bonus":0,"Continent":"K56","ID":40815,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40815","ServerKey":"pl181","X":690,"Y":548},{"Bonus":0,"Continent":"K56","ID":40817,"Name":"Visca Barca","PlayerID":3467919,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40817","ServerKey":"pl181","X":666,"Y":599},{"Bonus":0,"Continent":"K34","ID":40818,"Name":"[0050]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40818","ServerKey":"pl181","X":442,"Y":309},{"Bonus":0,"Continent":"K35","ID":40819,"Name":"AAA","PlayerID":1006847,"Points":10922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40819","ServerKey":"pl181","X":529,"Y":308},{"Bonus":0,"Continent":"K46","ID":40820,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40820","ServerKey":"pl181","X":674,"Y":408},{"Bonus":0,"Continent":"K33","ID":40821,"Name":"015. Northwic","PlayerID":7775311,"Points":7053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40821","ServerKey":"pl181","X":381,"Y":340},{"Bonus":0,"Continent":"K46","ID":40822,"Name":"17. Awangarda Postępu","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40822","ServerKey":"pl181","X":688,"Y":493},{"Bonus":0,"Continent":"K34","ID":40823,"Name":"0002","PlayerID":2321390,"Points":4897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40823","ServerKey":"pl181","X":424,"Y":322},{"Bonus":0,"Continent":"K53","ID":40824,"Name":"C0092","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40824","ServerKey":"pl181","X":301,"Y":522},{"Bonus":0,"Continent":"K43","ID":40825,"Name":"Dream on","PlayerID":698962117,"Points":9515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40825","ServerKey":"pl181","X":303,"Y":496},{"Bonus":0,"Continent":"K64","ID":40826,"Name":"0007 Vibrus","PlayerID":699656989,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40826","ServerKey":"pl181","X":474,"Y":697},{"Bonus":0,"Continent":"K53","ID":40827,"Name":"000 Plutosea","PlayerID":9280477,"Points":5598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40827","ServerKey":"pl181","X":314,"Y":565},{"Bonus":0,"Continent":"K56","ID":40828,"Name":"Wioska 25","PlayerID":849101162,"Points":5960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40828","ServerKey":"pl181","X":679,"Y":579},{"Bonus":0,"Continent":"K64","ID":40830,"Name":"No.23","PlayerID":698826986,"Points":5282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40830","ServerKey":"pl181","X":469,"Y":679},{"Bonus":0,"Continent":"K53","ID":40831,"Name":"Dąbrowa 0026","PlayerID":849096972,"Points":2247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40831","ServerKey":"pl181","X":317,"Y":562},{"Bonus":0,"Continent":"K63","ID":40832,"Name":"Wioska barbarzyƄska2o","PlayerID":699736927,"Points":7730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40832","ServerKey":"pl181","X":394,"Y":666},{"Bonus":0,"Continent":"K66","ID":40833,"Name":"skiba","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40833","ServerKey":"pl181","X":613,"Y":662},{"Bonus":0,"Continent":"K53","ID":40834,"Name":"C0082","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40834","ServerKey":"pl181","X":300,"Y":524},{"Bonus":0,"Continent":"K66","ID":40835,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":7914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40835","ServerKey":"pl181","X":666,"Y":606},{"Bonus":0,"Continent":"K53","ID":40836,"Name":"Dream on","PlayerID":698962117,"Points":9075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40836","ServerKey":"pl181","X":305,"Y":501},{"Bonus":0,"Continent":"K56","ID":40837,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40837","ServerKey":"pl181","X":687,"Y":548},{"Bonus":0,"Continent":"K46","ID":40838,"Name":"14. Karol II","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40838","ServerKey":"pl181","X":689,"Y":488},{"Bonus":0,"Continent":"K63","ID":40839,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40839","ServerKey":"pl181","X":384,"Y":659},{"Bonus":0,"Continent":"K46","ID":40840,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40840","ServerKey":"pl181","X":696,"Y":496},{"Bonus":0,"Continent":"K46","ID":40841,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40841","ServerKey":"pl181","X":674,"Y":407},{"Bonus":0,"Continent":"K36","ID":40842,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":8293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40842","ServerKey":"pl181","X":645,"Y":372},{"Bonus":0,"Continent":"K43","ID":40843,"Name":"Dream on","PlayerID":698962117,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40843","ServerKey":"pl181","X":306,"Y":491},{"Bonus":0,"Continent":"K64","ID":40844,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40844","ServerKey":"pl181","X":419,"Y":676},{"Bonus":0,"Continent":"K64","ID":40845,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40845","ServerKey":"pl181","X":427,"Y":688},{"Bonus":0,"Continent":"K56","ID":40846,"Name":"0024. Y -","PlayerID":7125212,"Points":4757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40846","ServerKey":"pl181","X":694,"Y":532},{"Bonus":0,"Continent":"K53","ID":40847,"Name":"C0123","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40847","ServerKey":"pl181","X":303,"Y":528},{"Bonus":0,"Continent":"K34","ID":40848,"Name":"#0233 Kamileq69 dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40848","ServerKey":"pl181","X":471,"Y":303},{"Bonus":0,"Continent":"K53","ID":40849,"Name":"Rogatki4","PlayerID":699265922,"Points":4030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40849","ServerKey":"pl181","X":312,"Y":560},{"Bonus":0,"Continent":"K36","ID":40850,"Name":"Topornik 3","PlayerID":7340529,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40850","ServerKey":"pl181","X":649,"Y":375},{"Bonus":0,"Continent":"K53","ID":40851,"Name":"031","PlayerID":9280477,"Points":6790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40851","ServerKey":"pl181","X":305,"Y":543},{"Bonus":0,"Continent":"K35","ID":40852,"Name":"146","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40852","ServerKey":"pl181","X":550,"Y":397},{"Bonus":0,"Continent":"K64","ID":40853,"Name":"psycha sitting","PlayerID":699736927,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40853","ServerKey":"pl181","X":410,"Y":672},{"Bonus":0,"Continent":"K65","ID":40854,"Name":"Paruwland","PlayerID":849099505,"Points":3075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40854","ServerKey":"pl181","X":584,"Y":674},{"Bonus":0,"Continent":"K65","ID":40855,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40855","ServerKey":"pl181","X":504,"Y":696},{"Bonus":0,"Continent":"K35","ID":40856,"Name":"0045","PlayerID":699485250,"Points":4712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40856","ServerKey":"pl181","X":571,"Y":320},{"Bonus":0,"Continent":"K53","ID":40857,"Name":"046","PlayerID":9280477,"Points":5962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40857","ServerKey":"pl181","X":301,"Y":535},{"Bonus":0,"Continent":"K46","ID":40858,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40858","ServerKey":"pl181","X":679,"Y":405},{"Bonus":0,"Continent":"K65","ID":40859,"Name":"015 serniczek forever","PlayerID":8954402,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40859","ServerKey":"pl181","X":504,"Y":665},{"Bonus":0,"Continent":"K33","ID":40860,"Name":"019","PlayerID":8153941,"Points":9178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40860","ServerKey":"pl181","X":395,"Y":331},{"Bonus":0,"Continent":"K56","ID":40861,"Name":"035","PlayerID":699150527,"Points":7488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40861","ServerKey":"pl181","X":697,"Y":513},{"Bonus":0,"Continent":"K46","ID":40862,"Name":"030. Alzenau","PlayerID":7494497,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40862","ServerKey":"pl181","X":695,"Y":465},{"Bonus":0,"Continent":"K36","ID":40863,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":3368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40863","ServerKey":"pl181","X":625,"Y":351},{"Bonus":0,"Continent":"K56","ID":40864,"Name":"[038]","PlayerID":698305474,"Points":5307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40864","ServerKey":"pl181","X":651,"Y":584},{"Bonus":0,"Continent":"K65","ID":40867,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":6225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40867","ServerKey":"pl181","X":504,"Y":698},{"Bonus":0,"Continent":"K66","ID":40868,"Name":"BSK3","PlayerID":849066044,"Points":7865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40868","ServerKey":"pl181","X":653,"Y":620},{"Bonus":0,"Continent":"K53","ID":40869,"Name":"Wioska mikolajjacek","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40869","ServerKey":"pl181","X":329,"Y":595},{"Bonus":0,"Continent":"K43","ID":40870,"Name":"WB18","PlayerID":356642,"Points":7012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40870","ServerKey":"pl181","X":329,"Y":404},{"Bonus":0,"Continent":"K65","ID":40871,"Name":"###064###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40871","ServerKey":"pl181","X":592,"Y":675},{"Bonus":0,"Continent":"K65","ID":40872,"Name":"TARAN","PlayerID":7860453,"Points":8455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40872","ServerKey":"pl181","X":547,"Y":693},{"Bonus":0,"Continent":"K66","ID":40873,"Name":"Swoja2","PlayerID":6528152,"Points":8494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40873","ServerKey":"pl181","X":602,"Y":666},{"Bonus":0,"Continent":"K63","ID":40875,"Name":"psycha sitting","PlayerID":699736927,"Points":6938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40875","ServerKey":"pl181","X":399,"Y":672},{"Bonus":0,"Continent":"K64","ID":40876,"Name":"021","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40876","ServerKey":"pl181","X":402,"Y":677},{"Bonus":0,"Continent":"K46","ID":40877,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":6680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40877","ServerKey":"pl181","X":695,"Y":459},{"Bonus":0,"Continent":"K53","ID":40879,"Name":"C0097","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40879","ServerKey":"pl181","X":306,"Y":531},{"Bonus":0,"Continent":"K66","ID":40880,"Name":"Wioska 040","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40880","ServerKey":"pl181","X":646,"Y":600},{"Bonus":0,"Continent":"K35","ID":40881,"Name":"Sosnowiec","PlayerID":7139853,"Points":2432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40881","ServerKey":"pl181","X":549,"Y":308},{"Bonus":0,"Continent":"K64","ID":40882,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40882","ServerKey":"pl181","X":424,"Y":685},{"Bonus":0,"Continent":"K53","ID":40883,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40883","ServerKey":"pl181","X":302,"Y":509},{"Bonus":0,"Continent":"K66","ID":40884,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40884","ServerKey":"pl181","X":647,"Y":634},{"Bonus":0,"Continent":"K34","ID":40885,"Name":"@06@","PlayerID":699483429,"Points":7545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40885","ServerKey":"pl181","X":407,"Y":323},{"Bonus":0,"Continent":"K36","ID":40886,"Name":"044- Mroczna Osada","PlayerID":849035905,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40886","ServerKey":"pl181","X":657,"Y":388},{"Bonus":0,"Continent":"K66","ID":40887,"Name":"024 NAWRA","PlayerID":849048867,"Points":5379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40887","ServerKey":"pl181","X":665,"Y":614},{"Bonus":0,"Continent":"K36","ID":40888,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":8863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40888","ServerKey":"pl181","X":669,"Y":391},{"Bonus":0,"Continent":"K63","ID":40889,"Name":"-001-","PlayerID":699269923,"Points":9406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40889","ServerKey":"pl181","X":374,"Y":647},{"Bonus":0,"Continent":"K43","ID":40890,"Name":"Wioska barbarzyƄska","PlayerID":2418002,"Points":4109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40890","ServerKey":"pl181","X":326,"Y":408},{"Bonus":0,"Continent":"K43","ID":40891,"Name":"marmag81/03a","PlayerID":1096254,"Points":6311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40891","ServerKey":"pl181","X":303,"Y":468},{"Bonus":0,"Continent":"K65","ID":40892,"Name":"AntoniĂłw","PlayerID":698723158,"Points":7116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40892","ServerKey":"pl181","X":571,"Y":684},{"Bonus":0,"Continent":"K34","ID":40893,"Name":"[0054]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40893","ServerKey":"pl181","X":445,"Y":312},{"Bonus":0,"Continent":"K63","ID":40894,"Name":"Wioska barbarzyƄska","PlayerID":698650509,"Points":2918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40894","ServerKey":"pl181","X":395,"Y":672},{"Bonus":0,"Continent":"K56","ID":40895,"Name":"Wioska Zorro 022","PlayerID":849080702,"Points":4249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40895","ServerKey":"pl181","X":677,"Y":592},{"Bonus":0,"Continent":"K64","ID":40896,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40896","ServerKey":"pl181","X":406,"Y":671},{"Bonus":0,"Continent":"K35","ID":40897,"Name":"D_1","PlayerID":3377827,"Points":6827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40897","ServerKey":"pl181","X":530,"Y":304},{"Bonus":0,"Continent":"K36","ID":40898,"Name":"C002","PlayerID":699485250,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40898","ServerKey":"pl181","X":608,"Y":384},{"Bonus":0,"Continent":"K56","ID":40899,"Name":"[169]","PlayerID":8000875,"Points":8112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40899","ServerKey":"pl181","X":644,"Y":585},{"Bonus":0,"Continent":"K66","ID":40900,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40900","ServerKey":"pl181","X":646,"Y":640},{"Bonus":0,"Continent":"K46","ID":40901,"Name":"065. hehehe3","PlayerID":7494497,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40901","ServerKey":"pl181","X":699,"Y":463},{"Bonus":0,"Continent":"K63","ID":40902,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":5374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40902","ServerKey":"pl181","X":338,"Y":618},{"Bonus":0,"Continent":"K34","ID":40903,"Name":"[0091]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40903","ServerKey":"pl181","X":436,"Y":308},{"Bonus":0,"Continent":"K53","ID":40904,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":4562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40904","ServerKey":"pl181","X":319,"Y":571},{"Bonus":0,"Continent":"K36","ID":40905,"Name":"018 Azkaban","PlayerID":9291984,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40905","ServerKey":"pl181","X":635,"Y":352},{"Bonus":0,"Continent":"K46","ID":40906,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":7599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40906","ServerKey":"pl181","X":678,"Y":410},{"Bonus":0,"Continent":"K63","ID":40907,"Name":"--01--","PlayerID":8877156,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40907","ServerKey":"pl181","X":342,"Y":601},{"Bonus":2,"Continent":"K74","ID":40908,"Name":"Nalesnik ES","PlayerID":699684062,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40908","ServerKey":"pl181","X":493,"Y":701},{"Bonus":0,"Continent":"K33","ID":40909,"Name":"A06 Praga","PlayerID":7462660,"Points":6964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40909","ServerKey":"pl181","X":342,"Y":384},{"Bonus":0,"Continent":"K64","ID":40910,"Name":"psycha sitting","PlayerID":699736927,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40910","ServerKey":"pl181","X":418,"Y":678},{"Bonus":0,"Continent":"K57","ID":40911,"Name":"003","PlayerID":699150527,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40911","ServerKey":"pl181","X":703,"Y":507},{"Bonus":0,"Continent":"K35","ID":40912,"Name":"16. hossa incoming","PlayerID":699072129,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40912","ServerKey":"pl181","X":555,"Y":311},{"Bonus":0,"Continent":"K36","ID":40913,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40913","ServerKey":"pl181","X":617,"Y":336},{"Bonus":0,"Continent":"K56","ID":40914,"Name":"zzz","PlayerID":699316421,"Points":6043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40914","ServerKey":"pl181","X":688,"Y":545},{"Bonus":0,"Continent":"K36","ID":40915,"Name":"UltraInstynkt","PlayerID":699710633,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40915","ServerKey":"pl181","X":612,"Y":337},{"Bonus":0,"Continent":"K43","ID":40916,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40916","ServerKey":"pl181","X":305,"Y":452},{"Bonus":0,"Continent":"K53","ID":40917,"Name":"Szlachcic","PlayerID":698388578,"Points":5382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40917","ServerKey":"pl181","X":311,"Y":542},{"Bonus":0,"Continent":"K36","ID":40918,"Name":"BuNKeR EAST","PlayerID":8963720,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40918","ServerKey":"pl181","X":617,"Y":335},{"Bonus":0,"Continent":"K63","ID":40919,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40919","ServerKey":"pl181","X":383,"Y":665},{"Bonus":0,"Continent":"K43","ID":40920,"Name":"Dream on","PlayerID":698962117,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40920","ServerKey":"pl181","X":301,"Y":497},{"Bonus":0,"Continent":"K46","ID":40921,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40921","ServerKey":"pl181","X":673,"Y":413},{"Bonus":8,"Continent":"K53","ID":40922,"Name":"C0026","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40922","ServerKey":"pl181","X":308,"Y":524},{"Bonus":0,"Continent":"K35","ID":40923,"Name":"B020","PlayerID":699208929,"Points":10356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40923","ServerKey":"pl181","X":523,"Y":305},{"Bonus":0,"Continent":"K35","ID":40924,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40924","ServerKey":"pl181","X":586,"Y":319},{"Bonus":0,"Continent":"K34","ID":40925,"Name":"275...gulden","PlayerID":6920960,"Points":10138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40925","ServerKey":"pl181","X":458,"Y":306},{"Bonus":0,"Continent":"K66","ID":40926,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40926","ServerKey":"pl181","X":631,"Y":652},{"Bonus":0,"Continent":"K64","ID":40927,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40927","ServerKey":"pl181","X":404,"Y":673},{"Bonus":0,"Continent":"K43","ID":40928,"Name":"Dream on","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40928","ServerKey":"pl181","X":301,"Y":496},{"Bonus":0,"Continent":"K57","ID":40929,"Name":"025","PlayerID":699150527,"Points":8846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40929","ServerKey":"pl181","X":701,"Y":513},{"Bonus":0,"Continent":"K46","ID":40930,"Name":"Jan My City 2","PlayerID":879782,"Points":6744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40930","ServerKey":"pl181","X":691,"Y":434},{"Bonus":0,"Continent":"K33","ID":40932,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":6908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40932","ServerKey":"pl181","X":348,"Y":369},{"Bonus":0,"Continent":"K53","ID":40933,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40933","ServerKey":"pl181","X":335,"Y":517},{"Bonus":0,"Continent":"K35","ID":40934,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40934","ServerKey":"pl181","X":570,"Y":313},{"Bonus":0,"Continent":"K63","ID":40936,"Name":"-002- sz","PlayerID":272173,"Points":3115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40936","ServerKey":"pl181","X":359,"Y":634},{"Bonus":0,"Continent":"K34","ID":40937,"Name":"001.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40937","ServerKey":"pl181","X":439,"Y":312},{"Bonus":0,"Continent":"K35","ID":40938,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":3731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40938","ServerKey":"pl181","X":586,"Y":325},{"Bonus":0,"Continent":"K56","ID":40939,"Name":"040 Vranje","PlayerID":699272880,"Points":7726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40939","ServerKey":"pl181","X":628,"Y":593},{"Bonus":0,"Continent":"K64","ID":40940,"Name":"0025 Wioska barbarzyƄska","PlayerID":849037407,"Points":9895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40940","ServerKey":"pl181","X":450,"Y":689},{"Bonus":0,"Continent":"K42","ID":40941,"Name":"Tyskie","PlayerID":849095376,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40941","ServerKey":"pl181","X":299,"Y":476},{"Bonus":0,"Continent":"K35","ID":40942,"Name":"K35 - [014] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40942","ServerKey":"pl181","X":578,"Y":317},{"Bonus":0,"Continent":"K34","ID":40943,"Name":"Wioska Marcio7","PlayerID":195249,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40943","ServerKey":"pl181","X":400,"Y":328},{"Bonus":0,"Continent":"K63","ID":40944,"Name":"Wieƛ 02","PlayerID":9199885,"Points":4180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40944","ServerKey":"pl181","X":338,"Y":614},{"Bonus":0,"Continent":"K35","ID":40946,"Name":"B016","PlayerID":699208929,"Points":7117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40946","ServerKey":"pl181","X":518,"Y":301},{"Bonus":0,"Continent":"K33","ID":40947,"Name":"Biskupice","PlayerID":7462660,"Points":11581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40947","ServerKey":"pl181","X":343,"Y":381},{"Bonus":0,"Continent":"K35","ID":40948,"Name":"AAA","PlayerID":1006847,"Points":7955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40948","ServerKey":"pl181","X":540,"Y":307},{"Bonus":0,"Continent":"K65","ID":40949,"Name":"- 131 - SS","PlayerID":849018239,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40949","ServerKey":"pl181","X":542,"Y":692},{"Bonus":0,"Continent":"K34","ID":40950,"Name":"#0275 Gwen1","PlayerID":1238300,"Points":3721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40950","ServerKey":"pl181","X":470,"Y":306},{"Bonus":0,"Continent":"K75","ID":40951,"Name":"Wyspa_46","PlayerID":2585846,"Points":6930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40951","ServerKey":"pl181","X":510,"Y":702},{"Bonus":0,"Continent":"K35","ID":40952,"Name":"Wioska barbarzyƄska 1","PlayerID":849006385,"Points":5129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40952","ServerKey":"pl181","X":598,"Y":330},{"Bonus":0,"Continent":"K56","ID":40953,"Name":"Didi","PlayerID":849070946,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40953","ServerKey":"pl181","X":680,"Y":587},{"Bonus":0,"Continent":"K53","ID":40954,"Name":"062.","PlayerID":3475079,"Points":2206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40954","ServerKey":"pl181","X":317,"Y":588},{"Bonus":0,"Continent":"K36","ID":40955,"Name":"ƚlimak 5","PlayerID":849061374,"Points":7175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40955","ServerKey":"pl181","X":605,"Y":334},{"Bonus":0,"Continent":"K53","ID":40956,"Name":"Hello there","PlayerID":6180190,"Points":3558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40956","ServerKey":"pl181","X":322,"Y":591},{"Bonus":9,"Continent":"K65","ID":40957,"Name":"0076","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40957","ServerKey":"pl181","X":533,"Y":691},{"Bonus":0,"Continent":"K35","ID":40958,"Name":"Wioska barbarzyƄska I","PlayerID":848958556,"Points":4572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40958","ServerKey":"pl181","X":577,"Y":316},{"Bonus":0,"Continent":"K36","ID":40959,"Name":"XDX","PlayerID":699098531,"Points":9096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40959","ServerKey":"pl181","X":610,"Y":335},{"Bonus":8,"Continent":"K35","ID":40960,"Name":"X 001","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40960","ServerKey":"pl181","X":596,"Y":330},{"Bonus":0,"Continent":"K56","ID":40961,"Name":"Wioska 018","PlayerID":7999103,"Points":8029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40961","ServerKey":"pl181","X":672,"Y":594},{"Bonus":0,"Continent":"K65","ID":40962,"Name":"Wioska barbarzyƄska","PlayerID":849099280,"Points":4028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40962","ServerKey":"pl181","X":556,"Y":686},{"Bonus":0,"Continent":"K36","ID":40963,"Name":"066","PlayerID":849010255,"Points":2337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40963","ServerKey":"pl181","X":633,"Y":352},{"Bonus":0,"Continent":"K53","ID":40964,"Name":"Taran","PlayerID":6180190,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40964","ServerKey":"pl181","X":326,"Y":594},{"Bonus":0,"Continent":"K43","ID":40965,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40965","ServerKey":"pl181","X":324,"Y":401},{"Bonus":0,"Continent":"K65","ID":40966,"Name":"Wyspa_29","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40966","ServerKey":"pl181","X":503,"Y":696},{"Bonus":0,"Continent":"K46","ID":40967,"Name":"Dzik","PlayerID":849099640,"Points":4488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40967","ServerKey":"pl181","X":699,"Y":482},{"Bonus":0,"Continent":"K33","ID":40968,"Name":"Szlachcic","PlayerID":3484132,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40968","ServerKey":"pl181","X":389,"Y":337},{"Bonus":0,"Continent":"K63","ID":40969,"Name":"O137","PlayerID":272173,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40969","ServerKey":"pl181","X":347,"Y":631},{"Bonus":0,"Continent":"K65","ID":40970,"Name":"- 193 - SS","PlayerID":849018239,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40970","ServerKey":"pl181","X":561,"Y":687},{"Bonus":0,"Continent":"K56","ID":40971,"Name":"Didi","PlayerID":849070946,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40971","ServerKey":"pl181","X":677,"Y":598},{"Bonus":0,"Continent":"K43","ID":40972,"Name":"z181_13","PlayerID":393668,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40972","ServerKey":"pl181","X":308,"Y":438},{"Bonus":0,"Continent":"K64","ID":40973,"Name":"0040 Wioska barbarzyƄska","PlayerID":849037407,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40973","ServerKey":"pl181","X":450,"Y":692},{"Bonus":0,"Continent":"K56","ID":40974,"Name":"037 Elverum","PlayerID":699272880,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40974","ServerKey":"pl181","X":623,"Y":586},{"Bonus":0,"Continent":"K33","ID":40975,"Name":"008","PlayerID":8153941,"Points":9071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40975","ServerKey":"pl181","X":396,"Y":328},{"Bonus":0,"Continent":"K57","ID":40976,"Name":"009","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40976","ServerKey":"pl181","X":700,"Y":509},{"Bonus":0,"Continent":"K66","ID":40977,"Name":"Wioska barbarzyƄska","PlayerID":698234770,"Points":5851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40977","ServerKey":"pl181","X":645,"Y":633},{"Bonus":0,"Continent":"K35","ID":40978,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40978","ServerKey":"pl181","X":582,"Y":315},{"Bonus":0,"Continent":"K46","ID":40979,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":7249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40979","ServerKey":"pl181","X":673,"Y":404},{"Bonus":1,"Continent":"K65","ID":40980,"Name":"0051","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40980","ServerKey":"pl181","X":568,"Y":686},{"Bonus":0,"Continent":"K33","ID":40981,"Name":"Wioska 1","PlayerID":7462660,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40981","ServerKey":"pl181","X":342,"Y":374},{"Bonus":0,"Continent":"K65","ID":40982,"Name":"037 invidia","PlayerID":849093426,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40982","ServerKey":"pl181","X":529,"Y":695},{"Bonus":0,"Continent":"K46","ID":40983,"Name":"Jan STALINGRAD 88 K","PlayerID":879782,"Points":9673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40983","ServerKey":"pl181","X":684,"Y":437},{"Bonus":0,"Continent":"K63","ID":40984,"Name":"Czarna 001","PlayerID":699269923,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40984","ServerKey":"pl181","X":383,"Y":657},{"Bonus":0,"Continent":"K46","ID":40985,"Name":"Pallad","PlayerID":8459255,"Points":5529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40985","ServerKey":"pl181","X":689,"Y":443},{"Bonus":0,"Continent":"K63","ID":40986,"Name":"Wieƛ 09","PlayerID":9199885,"Points":3118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40986","ServerKey":"pl181","X":336,"Y":613},{"Bonus":0,"Continent":"K66","ID":40987,"Name":"046.","PlayerID":699373599,"Points":4791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40987","ServerKey":"pl181","X":627,"Y":653},{"Bonus":0,"Continent":"K36","ID":40989,"Name":"Na KraƄcu ƚwiata 009","PlayerID":9291984,"Points":7049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40989","ServerKey":"pl181","X":628,"Y":345},{"Bonus":5,"Continent":"K43","ID":40990,"Name":"Out of Touch","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40990","ServerKey":"pl181","X":322,"Y":424},{"Bonus":0,"Continent":"K34","ID":40991,"Name":"209...segador","PlayerID":6920960,"Points":8980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40991","ServerKey":"pl181","X":457,"Y":305},{"Bonus":0,"Continent":"K46","ID":40992,"Name":"C.011","PlayerID":9188016,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40992","ServerKey":"pl181","X":695,"Y":492},{"Bonus":0,"Continent":"K65","ID":40993,"Name":"- 204 - SS","PlayerID":849018239,"Points":8796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40993","ServerKey":"pl181","X":560,"Y":692},{"Bonus":0,"Continent":"K46","ID":40994,"Name":"I097","PlayerID":699722599,"Points":7688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40994","ServerKey":"pl181","X":689,"Y":446},{"Bonus":0,"Continent":"K63","ID":40995,"Name":"Taran","PlayerID":6180190,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40995","ServerKey":"pl181","X":327,"Y":603},{"Bonus":0,"Continent":"K65","ID":40996,"Name":"###017###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40996","ServerKey":"pl181","X":585,"Y":680},{"Bonus":0,"Continent":"K36","ID":40997,"Name":"Moldor 13","PlayerID":849049045,"Points":7813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40997","ServerKey":"pl181","X":635,"Y":355},{"Bonus":0,"Continent":"K56","ID":40998,"Name":"16. Zerrikania","PlayerID":8976313,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40998","ServerKey":"pl181","X":696,"Y":550},{"Bonus":0,"Continent":"K46","ID":40999,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=40999","ServerKey":"pl181","X":693,"Y":440},{"Bonus":0,"Continent":"K65","ID":41000,"Name":"###065###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41000","ServerKey":"pl181","X":593,"Y":673},{"Bonus":0,"Continent":"K56","ID":41001,"Name":"TWIERDZA .:024:.","PlayerID":7154207,"Points":10355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41001","ServerKey":"pl181","X":686,"Y":558},{"Bonus":0,"Continent":"K64","ID":41002,"Name":"Wioska barbarzyƄska","PlayerID":699725436,"Points":4235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41002","ServerKey":"pl181","X":464,"Y":695},{"Bonus":0,"Continent":"K36","ID":41003,"Name":"wieƛ6","PlayerID":7340529,"Points":8804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41003","ServerKey":"pl181","X":655,"Y":378},{"Bonus":0,"Continent":"K34","ID":41004,"Name":"=0006=","PlayerID":698231772,"Points":10077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41004","ServerKey":"pl181","X":402,"Y":323},{"Bonus":0,"Continent":"K43","ID":41005,"Name":"Dream on","PlayerID":698962117,"Points":9202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41005","ServerKey":"pl181","X":306,"Y":497},{"Bonus":6,"Continent":"K46","ID":41006,"Name":"19.IVE","PlayerID":9180206,"Points":8826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41006","ServerKey":"pl181","X":682,"Y":421},{"Bonus":0,"Continent":"K36","ID":41007,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41007","ServerKey":"pl181","X":668,"Y":395},{"Bonus":0,"Continent":"K43","ID":41008,"Name":"z181_14","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41008","ServerKey":"pl181","X":307,"Y":437},{"Bonus":8,"Continent":"K43","ID":41009,"Name":"Out of Touch","PlayerID":698962117,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41009","ServerKey":"pl181","X":321,"Y":423},{"Bonus":0,"Continent":"K34","ID":41010,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":2571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41010","ServerKey":"pl181","X":400,"Y":330},{"Bonus":0,"Continent":"K65","ID":41011,"Name":"- 240 - SS","PlayerID":849018239,"Points":6637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41011","ServerKey":"pl181","X":546,"Y":689},{"Bonus":0,"Continent":"K57","ID":41012,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41012","ServerKey":"pl181","X":705,"Y":501},{"Bonus":0,"Continent":"K33","ID":41013,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41013","ServerKey":"pl181","X":348,"Y":370},{"Bonus":0,"Continent":"K34","ID":41014,"Name":"Cogito Ergo Sum","PlayerID":849017820,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41014","ServerKey":"pl181","X":474,"Y":312},{"Bonus":0,"Continent":"K66","ID":41015,"Name":"o02","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41015","ServerKey":"pl181","X":616,"Y":665},{"Bonus":0,"Continent":"K46","ID":41016,"Name":"Bimbrovnik","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41016","ServerKey":"pl181","X":690,"Y":431},{"Bonus":0,"Continent":"K35","ID":41017,"Name":"Winterhome.075","PlayerID":848918380,"Points":8473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41017","ServerKey":"pl181","X":513,"Y":305},{"Bonus":5,"Continent":"K34","ID":41018,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41018","ServerKey":"pl181","X":416,"Y":322},{"Bonus":0,"Continent":"K36","ID":41020,"Name":"Konin","PlayerID":699491076,"Points":7600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41020","ServerKey":"pl181","X":663,"Y":387},{"Bonus":0,"Continent":"K65","ID":41021,"Name":"###066###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41021","ServerKey":"pl181","X":597,"Y":673},{"Bonus":0,"Continent":"K56","ID":41022,"Name":"BRZEG JORDANU | 008","PlayerID":9228039,"Points":4755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41022","ServerKey":"pl181","X":693,"Y":521},{"Bonus":0,"Continent":"K63","ID":41023,"Name":"StaƂka 1","PlayerID":699864013,"Points":3931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41023","ServerKey":"pl181","X":350,"Y":625},{"Bonus":0,"Continent":"K63","ID":41024,"Name":"022.","PlayerID":7183372,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41024","ServerKey":"pl181","X":324,"Y":602},{"Bonus":0,"Continent":"K66","ID":41025,"Name":"K66","PlayerID":7038651,"Points":9032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41025","ServerKey":"pl181","X":628,"Y":646},{"Bonus":0,"Continent":"K35","ID":41026,"Name":"AAA","PlayerID":1006847,"Points":5233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41026","ServerKey":"pl181","X":545,"Y":305},{"Bonus":0,"Continent":"K53","ID":41028,"Name":"040.","PlayerID":3475079,"Points":2319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41028","ServerKey":"pl181","X":318,"Y":585},{"Bonus":0,"Continent":"K34","ID":41029,"Name":"????","PlayerID":698489071,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41029","ServerKey":"pl181","X":466,"Y":305},{"Bonus":0,"Continent":"K33","ID":41030,"Name":"*209*","PlayerID":699273451,"Points":6047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41030","ServerKey":"pl181","X":336,"Y":388},{"Bonus":0,"Continent":"K64","ID":41031,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41031","ServerKey":"pl181","X":422,"Y":677},{"Bonus":0,"Continent":"K66","ID":41032,"Name":"010","PlayerID":849099544,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41032","ServerKey":"pl181","X":637,"Y":640},{"Bonus":0,"Continent":"K63","ID":41033,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":6082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41033","ServerKey":"pl181","X":338,"Y":615},{"Bonus":0,"Continent":"K46","ID":41034,"Name":"Jan WILCZY SZANIEC","PlayerID":879782,"Points":7550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41034","ServerKey":"pl181","X":683,"Y":435},{"Bonus":0,"Continent":"K75","ID":41035,"Name":"105 invidia","PlayerID":849093426,"Points":7101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41035","ServerKey":"pl181","X":513,"Y":701},{"Bonus":0,"Continent":"K36","ID":41036,"Name":"Wioska barbarzyƄska","PlayerID":698768565,"Points":7906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41036","ServerKey":"pl181","X":673,"Y":395},{"Bonus":0,"Continent":"K56","ID":41037,"Name":"030","PlayerID":699150527,"Points":8325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41037","ServerKey":"pl181","X":697,"Y":532},{"Bonus":0,"Continent":"K46","ID":41038,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41038","ServerKey":"pl181","X":698,"Y":493},{"Bonus":0,"Continent":"K36","ID":41039,"Name":"XDX","PlayerID":699098531,"Points":7129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41039","ServerKey":"pl181","X":613,"Y":340},{"Bonus":0,"Continent":"K53","ID":41040,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41040","ServerKey":"pl181","X":313,"Y":565},{"Bonus":0,"Continent":"K33","ID":41041,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41041","ServerKey":"pl181","X":349,"Y":367},{"Bonus":0,"Continent":"K33","ID":41042,"Name":"Wioska 3","PlayerID":7462660,"Points":7377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41042","ServerKey":"pl181","X":344,"Y":381},{"Bonus":0,"Continent":"K63","ID":41043,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41043","ServerKey":"pl181","X":370,"Y":652},{"Bonus":0,"Continent":"K66","ID":41044,"Name":"D017","PlayerID":9023703,"Points":7880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41044","ServerKey":"pl181","X":618,"Y":658},{"Bonus":0,"Continent":"K33","ID":41045,"Name":"Szlachcic","PlayerID":3484132,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41045","ServerKey":"pl181","X":385,"Y":340},{"Bonus":0,"Continent":"K35","ID":41046,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41046","ServerKey":"pl181","X":503,"Y":301},{"Bonus":0,"Continent":"K56","ID":41047,"Name":"A08","PlayerID":848995478,"Points":10405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41047","ServerKey":"pl181","X":692,"Y":562},{"Bonus":0,"Continent":"K66","ID":41048,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41048","ServerKey":"pl181","X":638,"Y":645},{"Bonus":0,"Continent":"K66","ID":41049,"Name":"Wioska barbarzyƄska","PlayerID":849048867,"Points":2685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41049","ServerKey":"pl181","X":667,"Y":613},{"Bonus":0,"Continent":"K33","ID":41050,"Name":"013. Jorvik","PlayerID":699660539,"Points":6304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41050","ServerKey":"pl181","X":377,"Y":339},{"Bonus":2,"Continent":"K63","ID":41051,"Name":"Osada koczownikĂłw","PlayerID":699269923,"Points":9470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41051","ServerKey":"pl181","X":387,"Y":661},{"Bonus":0,"Continent":"K36","ID":41052,"Name":"009","PlayerID":9148043,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41052","ServerKey":"pl181","X":640,"Y":358},{"Bonus":0,"Continent":"K56","ID":41053,"Name":"WƂadcy PóƂnocy 15","PlayerID":699379895,"Points":5712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41053","ServerKey":"pl181","X":694,"Y":505},{"Bonus":0,"Continent":"K24","ID":41054,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41054","ServerKey":"pl181","X":499,"Y":298},{"Bonus":0,"Continent":"K53","ID":41055,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41055","ServerKey":"pl181","X":302,"Y":510},{"Bonus":0,"Continent":"K53","ID":41056,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41056","ServerKey":"pl181","X":306,"Y":506},{"Bonus":0,"Continent":"K64","ID":41057,"Name":"New World","PlayerID":698152377,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41057","ServerKey":"pl181","X":436,"Y":687},{"Bonus":0,"Continent":"K45","ID":41058,"Name":"D014","PlayerID":699761749,"Points":7809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41058","ServerKey":"pl181","X":596,"Y":404},{"Bonus":0,"Continent":"K33","ID":41059,"Name":"z 181-A013","PlayerID":3909522,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41059","ServerKey":"pl181","X":350,"Y":377},{"Bonus":0,"Continent":"K34","ID":41060,"Name":"Nikolau","PlayerID":849072873,"Points":9561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41060","ServerKey":"pl181","X":419,"Y":328},{"Bonus":0,"Continent":"K42","ID":41061,"Name":"Okocim","PlayerID":849095376,"Points":8353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41061","ServerKey":"pl181","X":299,"Y":479},{"Bonus":0,"Continent":"K36","ID":41063,"Name":"057","PlayerID":698635863,"Points":4600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41063","ServerKey":"pl181","X":666,"Y":386},{"Bonus":0,"Continent":"K35","ID":41065,"Name":"Wioska barbarzyƄska II","PlayerID":848958556,"Points":4414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41065","ServerKey":"pl181","X":575,"Y":315},{"Bonus":0,"Continent":"K35","ID":41066,"Name":"C.03 a panicz to dokąd?","PlayerID":849026145,"Points":7158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41066","ServerKey":"pl181","X":548,"Y":303},{"Bonus":0,"Continent":"K46","ID":41067,"Name":"bananowa plantacja","PlayerID":699738350,"Points":7331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41067","ServerKey":"pl181","X":686,"Y":425},{"Bonus":3,"Continent":"K43","ID":41069,"Name":"Dream on","PlayerID":698962117,"Points":9510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41069","ServerKey":"pl181","X":302,"Y":485},{"Bonus":0,"Continent":"K35","ID":41071,"Name":"AAA","PlayerID":1006847,"Points":7061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41071","ServerKey":"pl181","X":545,"Y":311},{"Bonus":0,"Continent":"K36","ID":41072,"Name":"!36 76 Luncusoara","PlayerID":698361257,"Points":5016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41072","ServerKey":"pl181","X":660,"Y":374},{"Bonus":0,"Continent":"K34","ID":41073,"Name":"Cz hwiah","PlayerID":699854830,"Points":2861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41073","ServerKey":"pl181","X":404,"Y":326},{"Bonus":0,"Continent":"K65","ID":41074,"Name":"041 invidia","PlayerID":849093426,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41074","ServerKey":"pl181","X":521,"Y":698},{"Bonus":0,"Continent":"K34","ID":41075,"Name":"004 barbarzyƄska","PlayerID":698258283,"Points":5358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41075","ServerKey":"pl181","X":405,"Y":323},{"Bonus":0,"Continent":"K65","ID":41076,"Name":"###067###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41076","ServerKey":"pl181","X":583,"Y":680},{"Bonus":0,"Continent":"K66","ID":41077,"Name":"WB 09","PlayerID":2269943,"Points":4664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41077","ServerKey":"pl181","X":636,"Y":604},{"Bonus":0,"Continent":"K65","ID":41079,"Name":"###068###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41079","ServerKey":"pl181","X":596,"Y":671},{"Bonus":0,"Continent":"K46","ID":41080,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41080","ServerKey":"pl181","X":697,"Y":482},{"Bonus":0,"Continent":"K56","ID":41081,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":10150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41081","ServerKey":"pl181","X":695,"Y":522},{"Bonus":3,"Continent":"K65","ID":41082,"Name":"0060","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41082","ServerKey":"pl181","X":568,"Y":688},{"Bonus":0,"Continent":"K43","ID":41083,"Name":"Hutki","PlayerID":8048374,"Points":8063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41083","ServerKey":"pl181","X":304,"Y":481},{"Bonus":0,"Continent":"K64","ID":41084,"Name":"Z|009| Udine","PlayerID":699393742,"Points":7953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41084","ServerKey":"pl181","X":460,"Y":699},{"Bonus":0,"Continent":"K66","ID":41085,"Name":"#K66 0005","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41085","ServerKey":"pl181","X":613,"Y":667},{"Bonus":0,"Continent":"K36","ID":41086,"Name":"Odbudowa Tilburga :)","PlayerID":9291984,"Points":4430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41086","ServerKey":"pl181","X":632,"Y":347},{"Bonus":0,"Continent":"K47","ID":41087,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":7155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41087","ServerKey":"pl181","X":700,"Y":468},{"Bonus":0,"Continent":"K35","ID":41088,"Name":"Wadowice","PlayerID":7139853,"Points":4891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41088","ServerKey":"pl181","X":546,"Y":311},{"Bonus":0,"Continent":"K64","ID":41091,"Name":"FP002","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41091","ServerKey":"pl181","X":480,"Y":698},{"Bonus":0,"Continent":"K65","ID":41092,"Name":"2.Alicante","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41092","ServerKey":"pl181","X":570,"Y":681},{"Bonus":0,"Continent":"K66","ID":41093,"Name":"CALL 1070","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41093","ServerKey":"pl181","X":658,"Y":625},{"Bonus":0,"Continent":"K34","ID":41094,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41094","ServerKey":"pl181","X":429,"Y":332},{"Bonus":0,"Continent":"K35","ID":41095,"Name":"B018","PlayerID":699208929,"Points":7034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41095","ServerKey":"pl181","X":519,"Y":300},{"Bonus":0,"Continent":"K53","ID":41096,"Name":"028.","PlayerID":3475079,"Points":8773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41096","ServerKey":"pl181","X":328,"Y":588},{"Bonus":0,"Continent":"K36","ID":41097,"Name":"007","PlayerID":698635863,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41097","ServerKey":"pl181","X":660,"Y":379},{"Bonus":0,"Continent":"K24","ID":41098,"Name":"Sibeliusa","PlayerID":698848373,"Points":3368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41098","ServerKey":"pl181","X":479,"Y":299},{"Bonus":0,"Continent":"K33","ID":41099,"Name":"0002","PlayerID":699644448,"Points":8393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41099","ServerKey":"pl181","X":356,"Y":357},{"Bonus":0,"Continent":"K43","ID":41101,"Name":"[0218]","PlayerID":8630972,"Points":7346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41101","ServerKey":"pl181","X":300,"Y":499},{"Bonus":0,"Continent":"K56","ID":41102,"Name":"Wioska Zorro 023","PlayerID":849080702,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41102","ServerKey":"pl181","X":675,"Y":594},{"Bonus":0,"Continent":"K64","ID":41103,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41103","ServerKey":"pl181","X":422,"Y":680},{"Bonus":0,"Continent":"K65","ID":41104,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41104","ServerKey":"pl181","X":507,"Y":696},{"Bonus":0,"Continent":"K33","ID":41105,"Name":"B04 Koƛcierzyna","PlayerID":7462660,"Points":4709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41105","ServerKey":"pl181","X":347,"Y":375},{"Bonus":0,"Continent":"K65","ID":41106,"Name":"Wioska Wiki 5","PlayerID":849100354,"Points":8421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41106","ServerKey":"pl181","X":525,"Y":698},{"Bonus":0,"Continent":"K74","ID":41107,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41107","ServerKey":"pl181","X":492,"Y":703},{"Bonus":0,"Continent":"K65","ID":41108,"Name":"Wioska Wodzu004","PlayerID":699201278,"Points":8739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41108","ServerKey":"pl181","X":551,"Y":696},{"Bonus":0,"Continent":"K46","ID":41109,"Name":"004 Nie bij, dzidzia ucieka","PlayerID":699576407,"Points":3847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41109","ServerKey":"pl181","X":680,"Y":415},{"Bonus":0,"Continent":"K53","ID":41110,"Name":"008","PlayerID":5997814,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41110","ServerKey":"pl181","X":307,"Y":559},{"Bonus":0,"Continent":"K53","ID":41111,"Name":"B5.","PlayerID":849095482,"Points":2837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41111","ServerKey":"pl181","X":311,"Y":547},{"Bonus":0,"Continent":"K34","ID":41112,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41112","ServerKey":"pl181","X":408,"Y":321},{"Bonus":0,"Continent":"K66","ID":41113,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41113","ServerKey":"pl181","X":646,"Y":642},{"Bonus":0,"Continent":"K63","ID":41114,"Name":"Halford John Mackinder","PlayerID":849096649,"Points":9229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41114","ServerKey":"pl181","X":355,"Y":641},{"Bonus":0,"Continent":"K43","ID":41115,"Name":"Out of Touch","PlayerID":698962117,"Points":9081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41115","ServerKey":"pl181","X":314,"Y":421},{"Bonus":0,"Continent":"K36","ID":41117,"Name":"007","PlayerID":849086491,"Points":7862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41117","ServerKey":"pl181","X":629,"Y":353},{"Bonus":0,"Continent":"K53","ID":41119,"Name":"C0079","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41119","ServerKey":"pl181","X":304,"Y":517},{"Bonus":0,"Continent":"K35","ID":41121,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41121","ServerKey":"pl181","X":581,"Y":319},{"Bonus":0,"Continent":"K63","ID":41123,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41123","ServerKey":"pl181","X":394,"Y":672},{"Bonus":0,"Continent":"K34","ID":41127,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41127","ServerKey":"pl181","X":485,"Y":301},{"Bonus":0,"Continent":"K33","ID":41128,"Name":"A07 WiedeƄ","PlayerID":7462660,"Points":4847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41128","ServerKey":"pl181","X":341,"Y":384},{"Bonus":7,"Continent":"K34","ID":41129,"Name":"259...Gulden","PlayerID":6920960,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41129","ServerKey":"pl181","X":458,"Y":302},{"Bonus":0,"Continent":"K43","ID":41131,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41131","ServerKey":"pl181","X":310,"Y":458},{"Bonus":0,"Continent":"K33","ID":41133,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41133","ServerKey":"pl181","X":356,"Y":362},{"Bonus":0,"Continent":"K63","ID":41135,"Name":"Mroczny Zamek 025","PlayerID":698908184,"Points":5390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41135","ServerKey":"pl181","X":353,"Y":632},{"Bonus":0,"Continent":"K56","ID":41137,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41137","ServerKey":"pl181","X":699,"Y":523},{"Bonus":0,"Continent":"K56","ID":41139,"Name":"18. Nazair","PlayerID":8976313,"Points":7564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41139","ServerKey":"pl181","X":697,"Y":549},{"Bonus":0,"Continent":"K43","ID":41141,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41141","ServerKey":"pl181","X":311,"Y":457},{"Bonus":0,"Continent":"K64","ID":41143,"Name":"psycha sitting","PlayerID":699736927,"Points":6908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41143","ServerKey":"pl181","X":407,"Y":680},{"Bonus":0,"Continent":"K65","ID":41144,"Name":"Mako Reactor 1 - B3F","PlayerID":8199417,"Points":4334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41144","ServerKey":"pl181","X":552,"Y":627},{"Bonus":0,"Continent":"K35","ID":41145,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":6679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41145","ServerKey":"pl181","X":533,"Y":302},{"Bonus":0,"Continent":"K65","ID":41147,"Name":"###069###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41147","ServerKey":"pl181","X":579,"Y":683},{"Bonus":0,"Continent":"K66","ID":41148,"Name":"Wioska 089","PlayerID":848971079,"Points":8110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41148","ServerKey":"pl181","X":667,"Y":605},{"Bonus":0,"Continent":"K56","ID":41149,"Name":"Wioska 27","PlayerID":849101162,"Points":3439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41149","ServerKey":"pl181","X":678,"Y":579},{"Bonus":4,"Continent":"K53","ID":41150,"Name":"008g","PlayerID":5997814,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41150","ServerKey":"pl181","X":309,"Y":553},{"Bonus":0,"Continent":"K45","ID":41151,"Name":"147","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41151","ServerKey":"pl181","X":577,"Y":426},{"Bonus":0,"Continent":"K43","ID":41152,"Name":"002","PlayerID":2418364,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41152","ServerKey":"pl181","X":304,"Y":474},{"Bonus":0,"Continent":"K25","ID":41153,"Name":"Wioska barbarzyƄska","PlayerID":699208929,"Points":4287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41153","ServerKey":"pl181","X":515,"Y":298},{"Bonus":0,"Continent":"K36","ID":41154,"Name":"XDX","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41154","ServerKey":"pl181","X":612,"Y":331},{"Bonus":0,"Continent":"K53","ID":41155,"Name":"022.","PlayerID":3475079,"Points":9249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41155","ServerKey":"pl181","X":323,"Y":595},{"Bonus":0,"Continent":"K53","ID":41156,"Name":"::: W ::: I","PlayerID":848917570,"Points":2565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41156","ServerKey":"pl181","X":303,"Y":500},{"Bonus":0,"Continent":"K63","ID":41158,"Name":"psycha sitting","PlayerID":699736927,"Points":5534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41158","ServerKey":"pl181","X":396,"Y":675},{"Bonus":6,"Continent":"K43","ID":41159,"Name":"Boh81/222","PlayerID":848889556,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41159","ServerKey":"pl181","X":305,"Y":471},{"Bonus":0,"Continent":"K53","ID":41160,"Name":"C0197","PlayerID":8841266,"Points":6412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41160","ServerKey":"pl181","X":302,"Y":527},{"Bonus":0,"Continent":"K35","ID":41161,"Name":"Twierdza 9zz","PlayerID":699208929,"Points":6634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41161","ServerKey":"pl181","X":513,"Y":300},{"Bonus":0,"Continent":"K35","ID":41163,"Name":"K35 - [015] Before Land","PlayerID":699088769,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41163","ServerKey":"pl181","X":577,"Y":320},{"Bonus":0,"Continent":"K36","ID":41165,"Name":"Moldor 7","PlayerID":849049045,"Points":9034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41165","ServerKey":"pl181","X":631,"Y":354},{"Bonus":0,"Continent":"K63","ID":41166,"Name":"A 040","PlayerID":6948793,"Points":5862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41166","ServerKey":"pl181","X":361,"Y":643},{"Bonus":0,"Continent":"K63","ID":41167,"Name":"004","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41167","ServerKey":"pl181","X":391,"Y":670},{"Bonus":0,"Continent":"K52","ID":41168,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41168","ServerKey":"pl181","X":298,"Y":509},{"Bonus":0,"Continent":"K42","ID":41169,"Name":"Dream on","PlayerID":698962117,"Points":8007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41169","ServerKey":"pl181","X":297,"Y":485},{"Bonus":0,"Continent":"K36","ID":41170,"Name":"East 5","PlayerID":1086351,"Points":4506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41170","ServerKey":"pl181","X":657,"Y":383},{"Bonus":0,"Continent":"K63","ID":41172,"Name":"047 - Nowy Początek...","PlayerID":6948793,"Points":6962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41172","ServerKey":"pl181","X":358,"Y":646},{"Bonus":0,"Continent":"K33","ID":41173,"Name":"Mefedron 07","PlayerID":3484132,"Points":8259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41173","ServerKey":"pl181","X":387,"Y":340},{"Bonus":0,"Continent":"K63","ID":41174,"Name":"C103","PlayerID":699383279,"Points":5394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41174","ServerKey":"pl181","X":365,"Y":645},{"Bonus":0,"Continent":"K36","ID":41175,"Name":"!36 76 Poiana Miculi","PlayerID":698361257,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41175","ServerKey":"pl181","X":660,"Y":378},{"Bonus":0,"Continent":"K35","ID":41176,"Name":"33. The Riddle","PlayerID":849099696,"Points":5418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41176","ServerKey":"pl181","X":558,"Y":315},{"Bonus":0,"Continent":"K64","ID":41177,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41177","ServerKey":"pl181","X":412,"Y":681},{"Bonus":0,"Continent":"K56","ID":41178,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41178","ServerKey":"pl181","X":689,"Y":553},{"Bonus":0,"Continent":"K46","ID":41179,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41179","ServerKey":"pl181","X":698,"Y":497},{"Bonus":0,"Continent":"K63","ID":41180,"Name":"O104","PlayerID":272173,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41180","ServerKey":"pl181","X":348,"Y":626},{"Bonus":4,"Continent":"K66","ID":41181,"Name":"005. GĂłrki Niezbyt MaƂe","PlayerID":849100994,"Points":6331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41181","ServerKey":"pl181","X":648,"Y":636},{"Bonus":0,"Continent":"K63","ID":41182,"Name":"Wioska -GPR-","PlayerID":9199885,"Points":5501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41182","ServerKey":"pl181","X":337,"Y":619},{"Bonus":0,"Continent":"K64","ID":41183,"Name":"FP028","PlayerID":699605333,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41183","ServerKey":"pl181","X":475,"Y":695},{"Bonus":0,"Continent":"K46","ID":41184,"Name":"039","PlayerID":699272633,"Points":6283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41184","ServerKey":"pl181","X":689,"Y":451},{"Bonus":0,"Continent":"K34","ID":41185,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41185","ServerKey":"pl181","X":422,"Y":316},{"Bonus":9,"Continent":"K34","ID":41186,"Name":"009","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41186","ServerKey":"pl181","X":451,"Y":307},{"Bonus":0,"Continent":"K56","ID":41187,"Name":"001","PlayerID":699493750,"Points":8414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41187","ServerKey":"pl181","X":667,"Y":565},{"Bonus":0,"Continent":"K56","ID":41188,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":5240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41188","ServerKey":"pl181","X":697,"Y":538},{"Bonus":0,"Continent":"K33","ID":41190,"Name":"z 001039","PlayerID":3909522,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41190","ServerKey":"pl181","X":353,"Y":367},{"Bonus":0,"Continent":"K34","ID":41191,"Name":"@17@","PlayerID":699483429,"Points":2634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41191","ServerKey":"pl181","X":406,"Y":330},{"Bonus":0,"Continent":"K63","ID":41192,"Name":"psycha sitting","PlayerID":699736927,"Points":6648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41192","ServerKey":"pl181","X":397,"Y":675},{"Bonus":2,"Continent":"K33","ID":41193,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41193","ServerKey":"pl181","X":331,"Y":392},{"Bonus":0,"Continent":"K64","ID":41195,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41195","ServerKey":"pl181","X":426,"Y":689},{"Bonus":0,"Continent":"K46","ID":41196,"Name":"[054] ????","PlayerID":849095068,"Points":9407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41196","ServerKey":"pl181","X":684,"Y":430},{"Bonus":0,"Continent":"K33","ID":41197,"Name":"Szlachcic","PlayerID":3484132,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41197","ServerKey":"pl181","X":389,"Y":340},{"Bonus":0,"Continent":"K75","ID":41198,"Name":"007 wysokie szczęƛcie","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41198","ServerKey":"pl181","X":525,"Y":701},{"Bonus":0,"Continent":"K46","ID":41199,"Name":"032 Surowy1","PlayerID":849098769,"Points":5577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41199","ServerKey":"pl181","X":692,"Y":443},{"Bonus":0,"Continent":"K46","ID":41200,"Name":"Gattacka","PlayerID":699298370,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41200","ServerKey":"pl181","X":687,"Y":436},{"Bonus":0,"Continent":"K35","ID":41201,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":2500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41201","ServerKey":"pl181","X":593,"Y":322},{"Bonus":0,"Continent":"K46","ID":41202,"Name":"B#022","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41202","ServerKey":"pl181","X":691,"Y":448},{"Bonus":0,"Continent":"K64","ID":41203,"Name":"0022 Wioska barbarzyƄska","PlayerID":849037407,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41203","ServerKey":"pl181","X":450,"Y":687},{"Bonus":0,"Continent":"K36","ID":41204,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":3103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41204","ServerKey":"pl181","X":625,"Y":342},{"Bonus":0,"Continent":"K56","ID":41205,"Name":"xxx","PlayerID":699316421,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41205","ServerKey":"pl181","X":692,"Y":544},{"Bonus":0,"Continent":"K33","ID":41206,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41206","ServerKey":"pl181","X":348,"Y":368},{"Bonus":0,"Continent":"K34","ID":41207,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41207","ServerKey":"pl181","X":479,"Y":301},{"Bonus":5,"Continent":"K56","ID":41208,"Name":"B04","PlayerID":848995478,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41208","ServerKey":"pl181","X":695,"Y":550},{"Bonus":0,"Continent":"K64","ID":41209,"Name":"Wioska barbarzyƄska","PlayerID":848999671,"Points":7885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41209","ServerKey":"pl181","X":477,"Y":649},{"Bonus":0,"Continent":"K63","ID":41210,"Name":"Komornicy 014","PlayerID":699336777,"Points":7615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41210","ServerKey":"pl181","X":349,"Y":622},{"Bonus":8,"Continent":"K34","ID":41211,"Name":"Mniejsze zƂo 0017","PlayerID":699794765,"Points":9487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41211","ServerKey":"pl181","X":438,"Y":312},{"Bonus":0,"Continent":"K53","ID":41212,"Name":"C0076","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41212","ServerKey":"pl181","X":305,"Y":514},{"Bonus":8,"Continent":"K65","ID":41213,"Name":"WrocƂaw 001","PlayerID":699176234,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41213","ServerKey":"pl181","X":589,"Y":681},{"Bonus":0,"Continent":"K65","ID":41214,"Name":"###070###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41214","ServerKey":"pl181","X":579,"Y":682},{"Bonus":0,"Continent":"K36","ID":41215,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41215","ServerKey":"pl181","X":670,"Y":397},{"Bonus":1,"Continent":"K46","ID":41216,"Name":"OrzeƂ 2","PlayerID":699413581,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41216","ServerKey":"pl181","X":693,"Y":486},{"Bonus":0,"Continent":"K46","ID":41217,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":5529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41217","ServerKey":"pl181","X":692,"Y":440},{"Bonus":0,"Continent":"K43","ID":41218,"Name":"boh81/01g","PlayerID":848889556,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41218","ServerKey":"pl181","X":304,"Y":467},{"Bonus":0,"Continent":"K46","ID":41219,"Name":"B#002","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41219","ServerKey":"pl181","X":694,"Y":448},{"Bonus":0,"Continent":"K65","ID":41220,"Name":"-02-","PlayerID":7860453,"Points":10470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41220","ServerKey":"pl181","X":566,"Y":687},{"Bonus":0,"Continent":"K66","ID":41221,"Name":"XIRON","PlayerID":849048867,"Points":1457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41221","ServerKey":"pl181","X":670,"Y":611},{"Bonus":0,"Continent":"K66","ID":41222,"Name":"Wioska 062","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41222","ServerKey":"pl181","X":654,"Y":605},{"Bonus":0,"Continent":"K53","ID":41223,"Name":"Wioska barbarzyƄska","PlayerID":849098688,"Points":2696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41223","ServerKey":"pl181","X":313,"Y":569},{"Bonus":0,"Continent":"K43","ID":41224,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41224","ServerKey":"pl181","X":309,"Y":451},{"Bonus":0,"Continent":"K53","ID":41225,"Name":"102","PlayerID":699736959,"Points":4162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41225","ServerKey":"pl181","X":309,"Y":568},{"Bonus":7,"Continent":"K63","ID":41226,"Name":"ManieK","PlayerID":9199885,"Points":9173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41226","ServerKey":"pl181","X":344,"Y":615},{"Bonus":0,"Continent":"K34","ID":41227,"Name":"0001","PlayerID":2321390,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41227","ServerKey":"pl181","X":425,"Y":320},{"Bonus":0,"Continent":"K43","ID":41228,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41228","ServerKey":"pl181","X":330,"Y":406},{"Bonus":0,"Continent":"K35","ID":41230,"Name":"AAA","PlayerID":1006847,"Points":7765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41230","ServerKey":"pl181","X":547,"Y":321},{"Bonus":0,"Continent":"K57","ID":41231,"Name":"010","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41231","ServerKey":"pl181","X":700,"Y":510},{"Bonus":0,"Continent":"K56","ID":41232,"Name":"Gryfios 021","PlayerID":698666810,"Points":11717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41232","ServerKey":"pl181","X":687,"Y":555},{"Bonus":0,"Continent":"K33","ID":41233,"Name":"Atlantyda","PlayerID":849068108,"Points":5666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41233","ServerKey":"pl181","X":371,"Y":343},{"Bonus":2,"Continent":"K36","ID":41234,"Name":"!36 64 Bancesti","PlayerID":698361257,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41234","ServerKey":"pl181","X":646,"Y":369},{"Bonus":0,"Continent":"K35","ID":41235,"Name":"B.12 duchy serca puszczy","PlayerID":849026145,"Points":2488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41235","ServerKey":"pl181","X":558,"Y":312},{"Bonus":0,"Continent":"K56","ID":41236,"Name":"Kluczbork","PlayerID":848932879,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41236","ServerKey":"pl181","X":683,"Y":554},{"Bonus":0,"Continent":"K64","ID":41237,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41237","ServerKey":"pl181","X":400,"Y":673},{"Bonus":0,"Continent":"K65","ID":41238,"Name":"K-F 001","PlayerID":7860453,"Points":4953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41238","ServerKey":"pl181","X":551,"Y":688},{"Bonus":0,"Continent":"K55","ID":41239,"Name":"[173]","PlayerID":8000875,"Points":8748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41239","ServerKey":"pl181","X":564,"Y":556},{"Bonus":0,"Continent":"K46","ID":41240,"Name":"005","PlayerID":699738350,"Points":6181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41240","ServerKey":"pl181","X":680,"Y":417},{"Bonus":0,"Continent":"K43","ID":41241,"Name":"*022 GAWRA*","PlayerID":2415972,"Points":8610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41241","ServerKey":"pl181","X":310,"Y":428},{"Bonus":0,"Continent":"K64","ID":41242,"Name":"#whaj3","PlayerID":699605333,"Points":10185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41242","ServerKey":"pl181","X":480,"Y":699},{"Bonus":0,"Continent":"K36","ID":41243,"Name":"Wioska barbarzyƄska","PlayerID":9029928,"Points":1988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41243","ServerKey":"pl181","X":647,"Y":364},{"Bonus":0,"Continent":"K43","ID":41245,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41245","ServerKey":"pl181","X":312,"Y":448},{"Bonus":0,"Continent":"K43","ID":41246,"Name":"MyszkĂłw","PlayerID":8048374,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41246","ServerKey":"pl181","X":305,"Y":481},{"Bonus":0,"Continent":"K56","ID":41247,"Name":"TWIERDZA .:037:.","PlayerID":7154207,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41247","ServerKey":"pl181","X":692,"Y":563},{"Bonus":0,"Continent":"K64","ID":41248,"Name":"003# Kate","PlayerID":699605333,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41248","ServerKey":"pl181","X":484,"Y":695},{"Bonus":0,"Continent":"K65","ID":41249,"Name":"Wyspa_27","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41249","ServerKey":"pl181","X":507,"Y":694},{"Bonus":0,"Continent":"K34","ID":41250,"Name":"@12@","PlayerID":699483429,"Points":4924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41250","ServerKey":"pl181","X":404,"Y":325},{"Bonus":0,"Continent":"K35","ID":41251,"Name":"12. Just beginning","PlayerID":699072129,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41251","ServerKey":"pl181","X":552,"Y":311},{"Bonus":0,"Continent":"K43","ID":41252,"Name":"Dream on","PlayerID":698962117,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41252","ServerKey":"pl181","X":303,"Y":495},{"Bonus":0,"Continent":"K34","ID":41253,"Name":"???","PlayerID":698489071,"Points":11570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41253","ServerKey":"pl181","X":464,"Y":305},{"Bonus":0,"Continent":"K66","ID":41254,"Name":"Wiejska1","PlayerID":6528152,"Points":8440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41254","ServerKey":"pl181","X":603,"Y":670},{"Bonus":0,"Continent":"K24","ID":41255,"Name":"Gdynia","PlayerID":698848373,"Points":5354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41255","ServerKey":"pl181","X":480,"Y":299},{"Bonus":0,"Continent":"K24","ID":41256,"Name":"SIEDLISKA","PlayerID":849100406,"Points":9040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41256","ServerKey":"pl181","X":494,"Y":297},{"Bonus":0,"Continent":"K64","ID":41257,"Name":"003","PlayerID":9003698,"Points":10373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41257","ServerKey":"pl181","X":479,"Y":690},{"Bonus":0,"Continent":"K34","ID":41258,"Name":"???","PlayerID":698489071,"Points":5676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41258","ServerKey":"pl181","X":468,"Y":308},{"Bonus":0,"Continent":"K46","ID":41259,"Name":"063.","PlayerID":849094609,"Points":2599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41259","ServerKey":"pl181","X":697,"Y":459},{"Bonus":0,"Continent":"K34","ID":41260,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41260","ServerKey":"pl181","X":409,"Y":318},{"Bonus":0,"Continent":"K66","ID":41261,"Name":"- Abracadabra -","PlayerID":849009623,"Points":7433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41261","ServerKey":"pl181","X":661,"Y":617},{"Bonus":0,"Continent":"K63","ID":41262,"Name":"ByƂeƛ w porządku 006","PlayerID":699269923,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41262","ServerKey":"pl181","X":373,"Y":649},{"Bonus":0,"Continent":"K66","ID":41263,"Name":"047.","PlayerID":699373599,"Points":3334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41263","ServerKey":"pl181","X":623,"Y":654},{"Bonus":0,"Continent":"K43","ID":41264,"Name":"WiedĆșma - Z 014","PlayerID":9239515,"Points":3232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41264","ServerKey":"pl181","X":309,"Y":434},{"Bonus":6,"Continent":"K43","ID":41265,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41265","ServerKey":"pl181","X":306,"Y":496},{"Bonus":0,"Continent":"K65","ID":41266,"Name":"Trękusek","PlayerID":7860453,"Points":5369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41266","ServerKey":"pl181","X":558,"Y":694},{"Bonus":0,"Continent":"K52","ID":41267,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41267","ServerKey":"pl181","X":297,"Y":504},{"Bonus":0,"Continent":"K43","ID":41268,"Name":"KƂobuck","PlayerID":8048374,"Points":6452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41268","ServerKey":"pl181","X":302,"Y":473},{"Bonus":0,"Continent":"K63","ID":41270,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41270","ServerKey":"pl181","X":349,"Y":632},{"Bonus":0,"Continent":"K36","ID":41272,"Name":"008","PlayerID":698635863,"Points":8338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41272","ServerKey":"pl181","X":656,"Y":381},{"Bonus":0,"Continent":"K36","ID":41273,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":4486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41273","ServerKey":"pl181","X":642,"Y":361},{"Bonus":0,"Continent":"K46","ID":41274,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41274","ServerKey":"pl181","X":680,"Y":406},{"Bonus":0,"Continent":"K63","ID":41275,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41275","ServerKey":"pl181","X":341,"Y":614},{"Bonus":0,"Continent":"K56","ID":41276,"Name":"B19","PlayerID":848995478,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41276","ServerKey":"pl181","X":687,"Y":552},{"Bonus":0,"Continent":"K63","ID":41277,"Name":"Taran","PlayerID":6180190,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41277","ServerKey":"pl181","X":336,"Y":610},{"Bonus":0,"Continent":"K53","ID":41278,"Name":"Hello there","PlayerID":6180190,"Points":8964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41278","ServerKey":"pl181","X":324,"Y":593},{"Bonus":2,"Continent":"K43","ID":41280,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41280","ServerKey":"pl181","X":330,"Y":400},{"Bonus":0,"Continent":"K46","ID":41281,"Name":"OrzeƂ 8","PlayerID":699413581,"Points":5095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41281","ServerKey":"pl181","X":694,"Y":487},{"Bonus":0,"Continent":"K75","ID":41282,"Name":"130 invidia","PlayerID":849093426,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41282","ServerKey":"pl181","X":503,"Y":703},{"Bonus":0,"Continent":"K56","ID":41283,"Name":"Zadupie","PlayerID":849048867,"Points":4897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41283","ServerKey":"pl181","X":671,"Y":597},{"Bonus":0,"Continent":"K35","ID":41284,"Name":"B004","PlayerID":699208929,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41284","ServerKey":"pl181","X":517,"Y":303},{"Bonus":0,"Continent":"K33","ID":41285,"Name":"Czerwona RĂłĆŒa","PlayerID":849100006,"Points":3577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41285","ServerKey":"pl181","X":350,"Y":373},{"Bonus":2,"Continent":"K33","ID":41286,"Name":"z 001041","PlayerID":3909522,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41286","ServerKey":"pl181","X":359,"Y":364},{"Bonus":0,"Continent":"K75","ID":41287,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41287","ServerKey":"pl181","X":512,"Y":703},{"Bonus":0,"Continent":"K35","ID":41288,"Name":"K35 - [031] Before Land","PlayerID":699088769,"Points":6542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41288","ServerKey":"pl181","X":573,"Y":320},{"Bonus":0,"Continent":"K35","ID":41290,"Name":"K35 - [020] Before Land","PlayerID":699088769,"Points":9200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41290","ServerKey":"pl181","X":583,"Y":322},{"Bonus":0,"Continent":"K35","ID":41292,"Name":"AAA","PlayerID":1006847,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41292","ServerKey":"pl181","X":541,"Y":304},{"Bonus":0,"Continent":"K36","ID":41293,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41293","ServerKey":"pl181","X":615,"Y":333},{"Bonus":0,"Continent":"K47","ID":41294,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41294","ServerKey":"pl181","X":701,"Y":477},{"Bonus":0,"Continent":"K56","ID":41295,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":3579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41295","ServerKey":"pl181","X":671,"Y":598},{"Bonus":0,"Continent":"K65","ID":41296,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41296","ServerKey":"pl181","X":536,"Y":699},{"Bonus":0,"Continent":"K33","ID":41297,"Name":"A05 WrocƂaw","PlayerID":7462660,"Points":5156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41297","ServerKey":"pl181","X":345,"Y":382},{"Bonus":0,"Continent":"K53","ID":41299,"Name":"C0009","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41299","ServerKey":"pl181","X":304,"Y":521},{"Bonus":0,"Continent":"K36","ID":41300,"Name":"Wioska barbarzyƄska","PlayerID":699837826,"Points":2061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41300","ServerKey":"pl181","X":642,"Y":363},{"Bonus":5,"Continent":"K43","ID":41301,"Name":"z181_15","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41301","ServerKey":"pl181","X":306,"Y":439},{"Bonus":0,"Continent":"K35","ID":41302,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41302","ServerKey":"pl181","X":550,"Y":312},{"Bonus":0,"Continent":"K56","ID":41303,"Name":"TWIERDZA .:045:.","PlayerID":7154207,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41303","ServerKey":"pl181","X":687,"Y":570},{"Bonus":0,"Continent":"K35","ID":41304,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":8003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41304","ServerKey":"pl181","X":592,"Y":349},{"Bonus":0,"Continent":"K35","ID":41305,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41305","ServerKey":"pl181","X":568,"Y":312},{"Bonus":0,"Continent":"K56","ID":41306,"Name":"0006. A - Carvahall","PlayerID":7125212,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41306","ServerKey":"pl181","X":616,"Y":525},{"Bonus":0,"Continent":"K34","ID":41307,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41307","ServerKey":"pl181","X":420,"Y":315},{"Bonus":0,"Continent":"K46","ID":41309,"Name":"Jan Stuttgart Ost","PlayerID":879782,"Points":7341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41309","ServerKey":"pl181","X":694,"Y":460},{"Bonus":0,"Continent":"K35","ID":41310,"Name":"UltraInstynkt-","PlayerID":699710633,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41310","ServerKey":"pl181","X":585,"Y":326},{"Bonus":0,"Continent":"K66","ID":41311,"Name":"008. GĂłrki PƂaskie","PlayerID":849100994,"Points":6317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41311","ServerKey":"pl181","X":650,"Y":634},{"Bonus":0,"Continent":"K33","ID":41312,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41312","ServerKey":"pl181","X":353,"Y":363},{"Bonus":0,"Continent":"K36","ID":41313,"Name":"STRAĆ»AK 1","PlayerID":849006385,"Points":4521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41313","ServerKey":"pl181","X":605,"Y":328},{"Bonus":3,"Continent":"K66","ID":41314,"Name":"013 GĂłrki MagĂłrki","PlayerID":849100994,"Points":6120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41314","ServerKey":"pl181","X":645,"Y":643},{"Bonus":0,"Continent":"K34","ID":41315,"Name":"029.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41315","ServerKey":"pl181","X":427,"Y":312},{"Bonus":0,"Continent":"K66","ID":41316,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41316","ServerKey":"pl181","X":649,"Y":632},{"Bonus":0,"Continent":"K66","ID":41317,"Name":"0014","PlayerID":6417987,"Points":4822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41317","ServerKey":"pl181","X":649,"Y":625},{"Bonus":0,"Continent":"K64","ID":41318,"Name":"5.C","PlayerID":699777372,"Points":9216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41318","ServerKey":"pl181","X":453,"Y":690},{"Bonus":0,"Continent":"K43","ID":41320,"Name":"Out of Touch","PlayerID":698962117,"Points":6259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41320","ServerKey":"pl181","X":316,"Y":431},{"Bonus":0,"Continent":"K66","ID":41322,"Name":"Zagroda7","PlayerID":6528152,"Points":6266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41322","ServerKey":"pl181","X":604,"Y":673},{"Bonus":0,"Continent":"K34","ID":41323,"Name":"MSWO-1","PlayerID":849017820,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41323","ServerKey":"pl181","X":465,"Y":303},{"Bonus":0,"Continent":"K56","ID":41324,"Name":"20. Metinna","PlayerID":8976313,"Points":8051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41324","ServerKey":"pl181","X":698,"Y":536},{"Bonus":0,"Continent":"K64","ID":41325,"Name":"New World","PlayerID":698152377,"Points":9035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41325","ServerKey":"pl181","X":434,"Y":684},{"Bonus":0,"Continent":"K65","ID":41326,"Name":"Wyspa_37","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41326","ServerKey":"pl181","X":501,"Y":698},{"Bonus":0,"Continent":"K56","ID":41328,"Name":"Didek","PlayerID":849070946,"Points":5635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41328","ServerKey":"pl181","X":680,"Y":584},{"Bonus":0,"Continent":"K66","ID":41329,"Name":"053 onek666","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41329","ServerKey":"pl181","X":614,"Y":667},{"Bonus":0,"Continent":"K35","ID":41330,"Name":"AAA","PlayerID":1006847,"Points":8738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41330","ServerKey":"pl181","X":534,"Y":300},{"Bonus":0,"Continent":"K34","ID":41331,"Name":"037.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41331","ServerKey":"pl181","X":434,"Y":312},{"Bonus":0,"Continent":"K75","ID":41332,"Name":"086 invidia","PlayerID":849093426,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41332","ServerKey":"pl181","X":517,"Y":702},{"Bonus":0,"Continent":"K34","ID":41333,"Name":"#0270 Gwen1","PlayerID":1238300,"Points":6754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41333","ServerKey":"pl181","X":474,"Y":304},{"Bonus":0,"Continent":"K63","ID":41334,"Name":"Taran","PlayerID":6180190,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41334","ServerKey":"pl181","X":334,"Y":613},{"Bonus":0,"Continent":"K34","ID":41335,"Name":"#0213 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41335","ServerKey":"pl181","X":448,"Y":309},{"Bonus":0,"Continent":"K65","ID":41336,"Name":"2.Malaga","PlayerID":698215322,"Points":6245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41336","ServerKey":"pl181","X":572,"Y":681},{"Bonus":0,"Continent":"K33","ID":41338,"Name":"Wow12","PlayerID":698160606,"Points":7246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41338","ServerKey":"pl181","X":362,"Y":350},{"Bonus":0,"Continent":"K64","ID":41339,"Name":"psycha sitting","PlayerID":699736927,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41339","ServerKey":"pl181","X":423,"Y":654},{"Bonus":0,"Continent":"K63","ID":41340,"Name":"O062","PlayerID":272173,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41340","ServerKey":"pl181","X":346,"Y":629},{"Bonus":0,"Continent":"K64","ID":41341,"Name":"FP032","PlayerID":699605333,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41341","ServerKey":"pl181","X":474,"Y":692},{"Bonus":0,"Continent":"K46","ID":41342,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":5726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41342","ServerKey":"pl181","X":695,"Y":455},{"Bonus":0,"Continent":"K34","ID":41343,"Name":"026.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41343","ServerKey":"pl181","X":429,"Y":313},{"Bonus":0,"Continent":"K64","ID":41344,"Name":"#018. Marco Polo","PlayerID":848896948,"Points":8410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41344","ServerKey":"pl181","X":451,"Y":677},{"Bonus":0,"Continent":"K65","ID":41345,"Name":"- 202 - SS","PlayerID":849018239,"Points":7036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41345","ServerKey":"pl181","X":535,"Y":696},{"Bonus":0,"Continent":"K33","ID":41346,"Name":"008 internacionale","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41346","ServerKey":"pl181","X":347,"Y":372},{"Bonus":0,"Continent":"K34","ID":41347,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41347","ServerKey":"pl181","X":410,"Y":318},{"Bonus":0,"Continent":"K55","ID":41348,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41348","ServerKey":"pl181","X":525,"Y":544},{"Bonus":0,"Continent":"K63","ID":41349,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":3506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41349","ServerKey":"pl181","X":338,"Y":616},{"Bonus":0,"Continent":"K35","ID":41350,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41350","ServerKey":"pl181","X":592,"Y":350},{"Bonus":0,"Continent":"K65","ID":41351,"Name":"###071###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41351","ServerKey":"pl181","X":596,"Y":676},{"Bonus":0,"Continent":"K65","ID":41353,"Name":"MirĂłw","PlayerID":698723158,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41353","ServerKey":"pl181","X":571,"Y":690},{"Bonus":0,"Continent":"K65","ID":41354,"Name":"0255","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41354","ServerKey":"pl181","X":544,"Y":662},{"Bonus":0,"Continent":"K53","ID":41356,"Name":"C0194","PlayerID":8841266,"Points":10497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41356","ServerKey":"pl181","X":302,"Y":531},{"Bonus":0,"Continent":"K63","ID":41357,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41357","ServerKey":"pl181","X":382,"Y":660},{"Bonus":0,"Continent":"K56","ID":41358,"Name":"08. Kaedwen","PlayerID":8976313,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41358","ServerKey":"pl181","X":695,"Y":540},{"Bonus":0,"Continent":"K64","ID":41359,"Name":"New World","PlayerID":698152377,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41359","ServerKey":"pl181","X":433,"Y":692},{"Bonus":0,"Continent":"K34","ID":41360,"Name":"036.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41360","ServerKey":"pl181","X":427,"Y":310},{"Bonus":0,"Continent":"K36","ID":41361,"Name":"068","PlayerID":849010255,"Points":3352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41361","ServerKey":"pl181","X":628,"Y":354},{"Bonus":0,"Continent":"K53","ID":41363,"Name":"Ave Why!","PlayerID":6180190,"Points":1781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41363","ServerKey":"pl181","X":314,"Y":583},{"Bonus":0,"Continent":"K56","ID":41364,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41364","ServerKey":"pl181","X":696,"Y":504},{"Bonus":0,"Continent":"K46","ID":41365,"Name":"11.STAYC","PlayerID":9180206,"Points":8541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41365","ServerKey":"pl181","X":687,"Y":422},{"Bonus":0,"Continent":"K25","ID":41368,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41368","ServerKey":"pl181","X":530,"Y":299},{"Bonus":0,"Continent":"K65","ID":41369,"Name":"Wyspa_26","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41369","ServerKey":"pl181","X":508,"Y":694},{"Bonus":0,"Continent":"K66","ID":41371,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":5271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41371","ServerKey":"pl181","X":668,"Y":606},{"Bonus":0,"Continent":"K53","ID":41372,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41372","ServerKey":"pl181","X":309,"Y":548},{"Bonus":0,"Continent":"K65","ID":41373,"Name":"101 invidia","PlayerID":849093426,"Points":7363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41373","ServerKey":"pl181","X":519,"Y":696},{"Bonus":0,"Continent":"K56","ID":41374,"Name":"072","PlayerID":699316421,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41374","ServerKey":"pl181","X":692,"Y":545},{"Bonus":0,"Continent":"K63","ID":41375,"Name":"002","PlayerID":699269923,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41375","ServerKey":"pl181","X":380,"Y":665},{"Bonus":0,"Continent":"K36","ID":41376,"Name":"017 Kettering Road","PlayerID":699098531,"Points":7845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41376","ServerKey":"pl181","X":609,"Y":330},{"Bonus":0,"Continent":"K65","ID":41377,"Name":"Trękus","PlayerID":7581876,"Points":4801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41377","ServerKey":"pl181","X":557,"Y":693},{"Bonus":0,"Continent":"K66","ID":41378,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41378","ServerKey":"pl181","X":650,"Y":637},{"Bonus":0,"Continent":"K63","ID":41379,"Name":"A 020","PlayerID":699342219,"Points":8291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41379","ServerKey":"pl181","X":364,"Y":622},{"Bonus":0,"Continent":"K65","ID":41380,"Name":"###018###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41380","ServerKey":"pl181","X":591,"Y":680},{"Bonus":0,"Continent":"K56","ID":41381,"Name":"Wioska barbarzyƄska","PlayerID":699379895,"Points":2847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41381","ServerKey":"pl181","X":696,"Y":503},{"Bonus":0,"Continent":"K25","ID":41382,"Name":"Oslo","PlayerID":7758085,"Points":2030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41382","ServerKey":"pl181","X":516,"Y":297},{"Bonus":0,"Continent":"K34","ID":41383,"Name":"028.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41383","ServerKey":"pl181","X":435,"Y":308},{"Bonus":0,"Continent":"K43","ID":41384,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41384","ServerKey":"pl181","X":301,"Y":457},{"Bonus":0,"Continent":"K34","ID":41385,"Name":"0008","PlayerID":2321390,"Points":6871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41385","ServerKey":"pl181","X":422,"Y":314},{"Bonus":0,"Continent":"K46","ID":41386,"Name":"Wilk","PlayerID":849099640,"Points":7225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41386","ServerKey":"pl181","X":698,"Y":481},{"Bonus":0,"Continent":"K33","ID":41387,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41387","ServerKey":"pl181","X":377,"Y":338},{"Bonus":0,"Continent":"K35","ID":41388,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41388","ServerKey":"pl181","X":587,"Y":315},{"Bonus":0,"Continent":"K36","ID":41389,"Name":"OSADA02","PlayerID":849006385,"Points":4899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41389","ServerKey":"pl181","X":603,"Y":331},{"Bonus":3,"Continent":"K63","ID":41390,"Name":"0114","PlayerID":7085510,"Points":8149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41390","ServerKey":"pl181","X":374,"Y":660},{"Bonus":0,"Continent":"K24","ID":41391,"Name":"Wachowiaka","PlayerID":698848373,"Points":3039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41391","ServerKey":"pl181","X":479,"Y":298},{"Bonus":6,"Continent":"K63","ID":41392,"Name":"Osada koczownikĂłw","PlayerID":7183372,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41392","ServerKey":"pl181","X":326,"Y":604},{"Bonus":0,"Continent":"K65","ID":41393,"Name":"###009###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41393","ServerKey":"pl181","X":592,"Y":679},{"Bonus":0,"Continent":"K65","ID":41394,"Name":"Wioska barbarzyƄska","PlayerID":698215322,"Points":3112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41394","ServerKey":"pl181","X":579,"Y":679},{"Bonus":0,"Continent":"K63","ID":41395,"Name":"Wieƛ 03","PlayerID":6180190,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41395","ServerKey":"pl181","X":333,"Y":610},{"Bonus":0,"Continent":"K43","ID":41396,"Name":"ZA13","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41396","ServerKey":"pl181","X":319,"Y":411},{"Bonus":0,"Continent":"K25","ID":41397,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41397","ServerKey":"pl181","X":526,"Y":299},{"Bonus":0,"Continent":"K53","ID":41398,"Name":"025","PlayerID":9280477,"Points":7743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41398","ServerKey":"pl181","X":303,"Y":543},{"Bonus":0,"Continent":"K64","ID":41399,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41399","ServerKey":"pl181","X":446,"Y":687},{"Bonus":0,"Continent":"K56","ID":41400,"Name":"Wioska Zorro 012","PlayerID":849080702,"Points":5794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41400","ServerKey":"pl181","X":678,"Y":595},{"Bonus":0,"Continent":"K34","ID":41401,"Name":"004.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41401","ServerKey":"pl181","X":440,"Y":313},{"Bonus":0,"Continent":"K66","ID":41402,"Name":"Wanda Metropolitano","PlayerID":849096631,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41402","ServerKey":"pl181","X":667,"Y":615},{"Bonus":0,"Continent":"K34","ID":41403,"Name":"@03@","PlayerID":699483429,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41403","ServerKey":"pl181","X":406,"Y":324},{"Bonus":0,"Continent":"K43","ID":41404,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41404","ServerKey":"pl181","X":305,"Y":456},{"Bonus":0,"Continent":"K43","ID":41405,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41405","ServerKey":"pl181","X":304,"Y":492},{"Bonus":0,"Continent":"K64","ID":41406,"Name":"FP010","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41406","ServerKey":"pl181","X":478,"Y":699},{"Bonus":0,"Continent":"K34","ID":41407,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":8227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41407","ServerKey":"pl181","X":402,"Y":330},{"Bonus":0,"Continent":"K46","ID":41408,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41408","ServerKey":"pl181","X":690,"Y":438},{"Bonus":0,"Continent":"K35","ID":41409,"Name":"08. Nie pyskuj","PlayerID":699072129,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41409","ServerKey":"pl181","X":553,"Y":310},{"Bonus":0,"Continent":"K35","ID":41410,"Name":"D_3","PlayerID":849099797,"Points":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41410","ServerKey":"pl181","X":531,"Y":304},{"Bonus":0,"Continent":"K46","ID":41411,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41411","ServerKey":"pl181","X":693,"Y":434},{"Bonus":0,"Continent":"K43","ID":41412,"Name":"Kryptonowy grĂłd","PlayerID":699377401,"Points":3379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41412","ServerKey":"pl181","X":314,"Y":419},{"Bonus":0,"Continent":"K35","ID":41414,"Name":"K35 - [021] Before Land","PlayerID":699088769,"Points":9147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41414","ServerKey":"pl181","X":584,"Y":322},{"Bonus":0,"Continent":"K33","ID":41415,"Name":"Szlachcic","PlayerID":698160606,"Points":5061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41415","ServerKey":"pl181","X":372,"Y":350},{"Bonus":0,"Continent":"K34","ID":41416,"Name":"[0301]","PlayerID":8630972,"Points":9123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41416","ServerKey":"pl181","X":431,"Y":309},{"Bonus":0,"Continent":"K53","ID":41417,"Name":"028 Barba 10","PlayerID":926823,"Points":2634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41417","ServerKey":"pl181","X":309,"Y":541},{"Bonus":0,"Continent":"K57","ID":41419,"Name":"034","PlayerID":699150527,"Points":8335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41419","ServerKey":"pl181","X":700,"Y":524},{"Bonus":0,"Continent":"K33","ID":41420,"Name":"z Wioska 9","PlayerID":3909522,"Points":5303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41420","ServerKey":"pl181","X":362,"Y":359},{"Bonus":0,"Continent":"K46","ID":41421,"Name":"Jan PowerForce K","PlayerID":879782,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41421","ServerKey":"pl181","X":687,"Y":445},{"Bonus":0,"Continent":"K63","ID":41422,"Name":"Taran","PlayerID":6180190,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41422","ServerKey":"pl181","X":325,"Y":604},{"Bonus":0,"Continent":"K34","ID":41423,"Name":"#0214 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41423","ServerKey":"pl181","X":451,"Y":303},{"Bonus":0,"Continent":"K53","ID":41424,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41424","ServerKey":"pl181","X":329,"Y":599},{"Bonus":0,"Continent":"K65","ID":41425,"Name":"- 172 - SS","PlayerID":849018239,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41425","ServerKey":"pl181","X":537,"Y":696},{"Bonus":0,"Continent":"K33","ID":41426,"Name":"Szlachcic","PlayerID":3484132,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41426","ServerKey":"pl181","X":381,"Y":345},{"Bonus":0,"Continent":"K36","ID":41427,"Name":"016 Komorniki","PlayerID":698768565,"Points":6989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41427","ServerKey":"pl181","X":674,"Y":399},{"Bonus":0,"Continent":"K65","ID":41428,"Name":"ZZZ","PlayerID":8980651,"Points":9705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41428","ServerKey":"pl181","X":500,"Y":694},{"Bonus":0,"Continent":"K43","ID":41429,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41429","ServerKey":"pl181","X":308,"Y":454},{"Bonus":0,"Continent":"K65","ID":41430,"Name":"DąbrĂłwka NagĂłrna","PlayerID":698723158,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41430","ServerKey":"pl181","X":564,"Y":690},{"Bonus":0,"Continent":"K75","ID":41431,"Name":"ZZZ","PlayerID":8980651,"Points":6912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41431","ServerKey":"pl181","X":512,"Y":701},{"Bonus":0,"Continent":"K65","ID":41432,"Name":"-03-","PlayerID":7860453,"Points":8461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41432","ServerKey":"pl181","X":567,"Y":687},{"Bonus":0,"Continent":"K34","ID":41433,"Name":"[0052]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41433","ServerKey":"pl181","X":436,"Y":314},{"Bonus":0,"Continent":"K53","ID":41435,"Name":"C0124","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41435","ServerKey":"pl181","X":300,"Y":512},{"Bonus":0,"Continent":"K64","ID":41436,"Name":"psycha sitting","PlayerID":699736927,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41436","ServerKey":"pl181","X":424,"Y":684},{"Bonus":0,"Continent":"K34","ID":41437,"Name":"277...gulden","PlayerID":6920960,"Points":10679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41437","ServerKey":"pl181","X":461,"Y":300},{"Bonus":0,"Continent":"K34","ID":41438,"Name":"Wioska barbarzyƄska","PlayerID":849093576,"Points":2078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41438","ServerKey":"pl181","X":469,"Y":303},{"Bonus":0,"Continent":"K34","ID":41439,"Name":"0007","PlayerID":2321390,"Points":7963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41439","ServerKey":"pl181","X":424,"Y":318},{"Bonus":0,"Continent":"K75","ID":41441,"Name":"Balbina","PlayerID":699733501,"Points":4783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41441","ServerKey":"pl181","X":524,"Y":703},{"Bonus":0,"Continent":"K56","ID":41442,"Name":"WschĂłd X7","PlayerID":698562644,"Points":10033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41442","ServerKey":"pl181","X":694,"Y":537},{"Bonus":0,"Continent":"K46","ID":41443,"Name":"033 Maine","PlayerID":7092442,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41443","ServerKey":"pl181","X":610,"Y":480},{"Bonus":0,"Continent":"K35","ID":41444,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41444","ServerKey":"pl181","X":525,"Y":303},{"Bonus":0,"Continent":"K53","ID":41445,"Name":"Wioska BLACK SOLDI LP","PlayerID":699510045,"Points":8855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41445","ServerKey":"pl181","X":305,"Y":507},{"Bonus":0,"Continent":"K53","ID":41446,"Name":"023.","PlayerID":3475079,"Points":3208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41446","ServerKey":"pl181","X":322,"Y":595},{"Bonus":0,"Continent":"K33","ID":41447,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":6460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41447","ServerKey":"pl181","X":349,"Y":373},{"Bonus":0,"Continent":"K56","ID":41449,"Name":"Wioska","PlayerID":849048867,"Points":1966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41449","ServerKey":"pl181","X":670,"Y":596},{"Bonus":0,"Continent":"K75","ID":41450,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41450","ServerKey":"pl181","X":520,"Y":702},{"Bonus":0,"Continent":"K46","ID":41451,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41451","ServerKey":"pl181","X":693,"Y":437},{"Bonus":0,"Continent":"K66","ID":41452,"Name":"114. Dran","PlayerID":8337151,"Points":6820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41452","ServerKey":"pl181","X":632,"Y":603},{"Bonus":0,"Continent":"K34","ID":41453,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41453","ServerKey":"pl181","X":422,"Y":318},{"Bonus":0,"Continent":"K35","ID":41454,"Name":"AAA","PlayerID":1006847,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41454","ServerKey":"pl181","X":539,"Y":303},{"Bonus":0,"Continent":"K46","ID":41455,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":5057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41455","ServerKey":"pl181","X":690,"Y":450},{"Bonus":0,"Continent":"K35","ID":41456,"Name":"AAA","PlayerID":1006847,"Points":9669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41456","ServerKey":"pl181","X":542,"Y":303},{"Bonus":0,"Continent":"K43","ID":41457,"Name":"WiedĆșma - Z 016","PlayerID":9239515,"Points":2377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41457","ServerKey":"pl181","X":309,"Y":446},{"Bonus":0,"Continent":"K33","ID":41458,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41458","ServerKey":"pl181","X":336,"Y":378},{"Bonus":0,"Continent":"K66","ID":41459,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41459","ServerKey":"pl181","X":661,"Y":624},{"Bonus":0,"Continent":"K46","ID":41461,"Name":"029. LooK","PlayerID":7494497,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41461","ServerKey":"pl181","X":697,"Y":473},{"Bonus":0,"Continent":"K43","ID":41462,"Name":"z181_27","PlayerID":393668,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41462","ServerKey":"pl181","X":305,"Y":443},{"Bonus":8,"Continent":"K64","ID":41463,"Name":"Timbuktu","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41463","ServerKey":"pl181","X":402,"Y":672},{"Bonus":0,"Continent":"K35","ID":41465,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41465","ServerKey":"pl181","X":504,"Y":302},{"Bonus":0,"Continent":"K53","ID":41466,"Name":"73.","PlayerID":698704189,"Points":3752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41466","ServerKey":"pl181","X":321,"Y":575},{"Bonus":0,"Continent":"K64","ID":41467,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41467","ServerKey":"pl181","X":408,"Y":674},{"Bonus":0,"Continent":"K53","ID":41468,"Name":"038.","PlayerID":3475079,"Points":1600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41468","ServerKey":"pl181","X":324,"Y":583},{"Bonus":0,"Continent":"K35","ID":41469,"Name":"szlachcic;taran 3","PlayerID":7340529,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41469","ServerKey":"pl181","X":593,"Y":320},{"Bonus":0,"Continent":"K33","ID":41470,"Name":"z C01 Bydgoszcz","PlayerID":3909522,"Points":9345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41470","ServerKey":"pl181","X":347,"Y":378},{"Bonus":0,"Continent":"K33","ID":41471,"Name":"Wioska barbarzyƄska","PlayerID":698807570,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41471","ServerKey":"pl181","X":340,"Y":388},{"Bonus":0,"Continent":"K34","ID":41472,"Name":"K34 - [158] Before Land","PlayerID":699088769,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41472","ServerKey":"pl181","X":466,"Y":303},{"Bonus":0,"Continent":"K25","ID":41473,"Name":"B019","PlayerID":699208929,"Points":7183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41473","ServerKey":"pl181","X":521,"Y":298},{"Bonus":0,"Continent":"K35","ID":41474,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41474","ServerKey":"pl181","X":568,"Y":311},{"Bonus":0,"Continent":"K56","ID":41475,"Name":"C16","PlayerID":848995478,"Points":2802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41475","ServerKey":"pl181","X":694,"Y":531},{"Bonus":0,"Continent":"K53","ID":41476,"Name":"015","PlayerID":849099463,"Points":4661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41476","ServerKey":"pl181","X":316,"Y":574},{"Bonus":0,"Continent":"K36","ID":41477,"Name":"!36 75 Fratauti Noi","PlayerID":698361257,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41477","ServerKey":"pl181","X":651,"Y":374},{"Bonus":0,"Continent":"K43","ID":41478,"Name":"007 RVWF Wioska barbarzyƄska","PlayerID":3108144,"Points":4172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41478","ServerKey":"pl181","X":315,"Y":431},{"Bonus":0,"Continent":"K66","ID":41479,"Name":"012 NAWRA","PlayerID":849048867,"Points":7002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41479","ServerKey":"pl181","X":667,"Y":609},{"Bonus":0,"Continent":"K36","ID":41480,"Name":"Mastowis","PlayerID":699738350,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41480","ServerKey":"pl181","X":673,"Y":393},{"Bonus":0,"Continent":"K35","ID":41481,"Name":"AAA","PlayerID":1006847,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41481","ServerKey":"pl181","X":540,"Y":304},{"Bonus":0,"Continent":"K35","ID":41483,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":9040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41483","ServerKey":"pl181","X":553,"Y":303},{"Bonus":0,"Continent":"K36","ID":41484,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41484","ServerKey":"pl181","X":675,"Y":397},{"Bonus":0,"Continent":"K75","ID":41485,"Name":"032 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41485","ServerKey":"pl181","X":519,"Y":701},{"Bonus":0,"Continent":"K52","ID":41486,"Name":"C0087","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41486","ServerKey":"pl181","X":299,"Y":522},{"Bonus":0,"Continent":"K36","ID":41487,"Name":"Topornik 4","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41487","ServerKey":"pl181","X":654,"Y":380},{"Bonus":0,"Continent":"K46","ID":41488,"Name":"035. hehehe","PlayerID":7494497,"Points":10364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41488","ServerKey":"pl181","X":697,"Y":465},{"Bonus":0,"Continent":"K33","ID":41492,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41492","ServerKey":"pl181","X":348,"Y":372},{"Bonus":0,"Continent":"K63","ID":41493,"Name":"Taran","PlayerID":6180190,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41493","ServerKey":"pl181","X":328,"Y":606},{"Bonus":0,"Continent":"K56","ID":41494,"Name":"A***","PlayerID":848995478,"Points":2450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41494","ServerKey":"pl181","X":694,"Y":549},{"Bonus":0,"Continent":"K63","ID":41495,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41495","ServerKey":"pl181","X":368,"Y":652},{"Bonus":0,"Continent":"K64","ID":41496,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41496","ServerKey":"pl181","X":404,"Y":671},{"Bonus":0,"Continent":"K36","ID":41497,"Name":"069- Mroczna Osada","PlayerID":849035905,"Points":8908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41497","ServerKey":"pl181","X":618,"Y":333},{"Bonus":0,"Continent":"K53","ID":41498,"Name":"C0010","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41498","ServerKey":"pl181","X":304,"Y":516},{"Bonus":0,"Continent":"K36","ID":41499,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41499","ServerKey":"pl181","X":614,"Y":335},{"Bonus":0,"Continent":"K43","ID":41500,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41500","ServerKey":"pl181","X":300,"Y":460},{"Bonus":0,"Continent":"K54","ID":41501,"Name":"bƂotna","PlayerID":699833171,"Points":3880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41501","ServerKey":"pl181","X":429,"Y":561},{"Bonus":0,"Continent":"K63","ID":41502,"Name":"Wioska kwiatek7777","PlayerID":7183372,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41502","ServerKey":"pl181","X":334,"Y":602},{"Bonus":0,"Continent":"K65","ID":41503,"Name":"040 invidia","PlayerID":849093426,"Points":10039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41503","ServerKey":"pl181","X":521,"Y":695},{"Bonus":0,"Continent":"K63","ID":41504,"Name":"Taran","PlayerID":6180190,"Points":10433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41504","ServerKey":"pl181","X":336,"Y":607},{"Bonus":0,"Continent":"K63","ID":41505,"Name":"A 063","PlayerID":272173,"Points":4221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41505","ServerKey":"pl181","X":358,"Y":638},{"Bonus":0,"Continent":"K56","ID":41506,"Name":"Nysa","PlayerID":848932879,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41506","ServerKey":"pl181","X":679,"Y":546},{"Bonus":0,"Continent":"K36","ID":41507,"Name":"009","PlayerID":698635863,"Points":9516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41507","ServerKey":"pl181","X":658,"Y":378},{"Bonus":0,"Continent":"K64","ID":41508,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41508","ServerKey":"pl181","X":420,"Y":684},{"Bonus":0,"Continent":"K64","ID":41509,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41509","ServerKey":"pl181","X":401,"Y":672},{"Bonus":0,"Continent":"K65","ID":41510,"Name":"Forteca*001*","PlayerID":1078121,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41510","ServerKey":"pl181","X":534,"Y":692},{"Bonus":0,"Continent":"K43","ID":41511,"Name":"Out of Touch","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41511","ServerKey":"pl181","X":321,"Y":421},{"Bonus":0,"Continent":"K35","ID":41512,"Name":"Lord Lord Franek .#176","PlayerID":698420691,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41512","ServerKey":"pl181","X":516,"Y":317},{"Bonus":0,"Continent":"K65","ID":41513,"Name":"TARAN","PlayerID":7860453,"Points":8494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41513","ServerKey":"pl181","X":537,"Y":695},{"Bonus":0,"Continent":"K64","ID":41514,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41514","ServerKey":"pl181","X":415,"Y":678},{"Bonus":3,"Continent":"K66","ID":41515,"Name":"023 Osada koczownikĂłw","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41515","ServerKey":"pl181","X":610,"Y":668},{"Bonus":0,"Continent":"K56","ID":41516,"Name":"036","PlayerID":699150527,"Points":7488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41516","ServerKey":"pl181","X":696,"Y":515},{"Bonus":0,"Continent":"K43","ID":41517,"Name":"Marmag81","PlayerID":1096254,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41517","ServerKey":"pl181","X":305,"Y":476},{"Bonus":0,"Continent":"K34","ID":41518,"Name":"[0109]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41518","ServerKey":"pl181","X":445,"Y":304},{"Bonus":0,"Continent":"K47","ID":41519,"Name":"Domi 9","PlayerID":849002796,"Points":5533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41519","ServerKey":"pl181","X":702,"Y":478},{"Bonus":0,"Continent":"K63","ID":41520,"Name":"C107","PlayerID":699383279,"Points":3449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41520","ServerKey":"pl181","X":363,"Y":643},{"Bonus":0,"Continent":"K43","ID":41521,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41521","ServerKey":"pl181","X":300,"Y":463},{"Bonus":0,"Continent":"K56","ID":41522,"Name":"WschĂłd X8","PlayerID":698562644,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41522","ServerKey":"pl181","X":699,"Y":531},{"Bonus":0,"Continent":"K57","ID":41523,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":5377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41523","ServerKey":"pl181","X":701,"Y":530},{"Bonus":0,"Continent":"K56","ID":41524,"Name":"Strzelce Opolskie","PlayerID":848932879,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41524","ServerKey":"pl181","X":677,"Y":555},{"Bonus":0,"Continent":"K33","ID":41525,"Name":"004 The Gold Tower","PlayerID":7462660,"Points":9678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41525","ServerKey":"pl181","X":350,"Y":363},{"Bonus":0,"Continent":"K53","ID":41526,"Name":"C0195","PlayerID":8841266,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41526","ServerKey":"pl181","X":300,"Y":528},{"Bonus":0,"Continent":"K53","ID":41527,"Name":"C0203","PlayerID":8841266,"Points":10251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41527","ServerKey":"pl181","X":302,"Y":535},{"Bonus":8,"Continent":"K34","ID":41528,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41528","ServerKey":"pl181","X":413,"Y":318},{"Bonus":0,"Continent":"K64","ID":41529,"Name":"ZZZ","PlayerID":699827112,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41529","ServerKey":"pl181","X":461,"Y":691},{"Bonus":0,"Continent":"K36","ID":41530,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":6581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41530","ServerKey":"pl181","X":626,"Y":342},{"Bonus":0,"Continent":"K36","ID":41531,"Name":"!36 64 Sfantu Ilie","PlayerID":698361257,"Points":8320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41531","ServerKey":"pl181","X":646,"Y":367},{"Bonus":0,"Continent":"K25","ID":41532,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41532","ServerKey":"pl181","X":531,"Y":298},{"Bonus":0,"Continent":"K46","ID":41533,"Name":"007","PlayerID":699738350,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41533","ServerKey":"pl181","X":676,"Y":408},{"Bonus":0,"Continent":"K33","ID":41534,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41534","ServerKey":"pl181","X":348,"Y":364},{"Bonus":0,"Continent":"K65","ID":41536,"Name":"Wioska Wodzu003","PlayerID":699201278,"Points":7067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41536","ServerKey":"pl181","X":551,"Y":695},{"Bonus":0,"Continent":"K35","ID":41537,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41537","ServerKey":"pl181","X":591,"Y":328},{"Bonus":0,"Continent":"K64","ID":41538,"Name":"A000","PlayerID":699725436,"Points":3680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41538","ServerKey":"pl181","X":461,"Y":698},{"Bonus":0,"Continent":"K33","ID":41539,"Name":"z 001040","PlayerID":3909522,"Points":7827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41539","ServerKey":"pl181","X":352,"Y":368},{"Bonus":0,"Continent":"K53","ID":41540,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41540","ServerKey":"pl181","X":308,"Y":548},{"Bonus":7,"Continent":"K36","ID":41541,"Name":"Osada koczownikĂłw","PlayerID":849097312,"Points":2844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41541","ServerKey":"pl181","X":618,"Y":339},{"Bonus":0,"Continent":"K33","ID":41542,"Name":"Wow6","PlayerID":698160606,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41542","ServerKey":"pl181","X":369,"Y":356},{"Bonus":0,"Continent":"K35","ID":41543,"Name":"001 VLV","PlayerID":849100656,"Points":4687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41543","ServerKey":"pl181","X":560,"Y":305},{"Bonus":0,"Continent":"K35","ID":41544,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41544","ServerKey":"pl181","X":577,"Y":313},{"Bonus":0,"Continent":"K66","ID":41545,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41545","ServerKey":"pl181","X":624,"Y":659},{"Bonus":0,"Continent":"K52","ID":41547,"Name":"EO EO","PlayerID":699697558,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41547","ServerKey":"pl181","X":296,"Y":512},{"Bonus":0,"Continent":"K46","ID":41548,"Name":"[044] Wioska barbarzyƄska","PlayerID":849095068,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41548","ServerKey":"pl181","X":685,"Y":429},{"Bonus":0,"Continent":"K25","ID":41549,"Name":"005","PlayerID":699208929,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41549","ServerKey":"pl181","X":524,"Y":298},{"Bonus":0,"Continent":"K56","ID":41550,"Name":"093","PlayerID":699373599,"Points":3255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41550","ServerKey":"pl181","X":688,"Y":579},{"Bonus":0,"Continent":"K56","ID":41551,"Name":"002 * Lady Porto *","PlayerID":699406750,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41551","ServerKey":"pl181","X":695,"Y":502},{"Bonus":0,"Continent":"K34","ID":41552,"Name":"[0129]","PlayerID":8630972,"Points":9590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41552","ServerKey":"pl181","X":452,"Y":306},{"Bonus":0,"Continent":"K63","ID":41553,"Name":"BuĆŒka Mleczaku :)","PlayerID":698908184,"Points":7652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41553","ServerKey":"pl181","X":351,"Y":634},{"Bonus":0,"Continent":"K34","ID":41554,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41554","ServerKey":"pl181","X":417,"Y":322},{"Bonus":0,"Continent":"K36","ID":41555,"Name":"Waganiec","PlayerID":699491076,"Points":5201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41555","ServerKey":"pl181","X":667,"Y":387},{"Bonus":0,"Continent":"K65","ID":41557,"Name":"C012","PlayerID":9023703,"Points":8233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41557","ServerKey":"pl181","X":596,"Y":669},{"Bonus":3,"Continent":"K65","ID":41558,"Name":"wielki myk","PlayerID":699567608,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41558","ServerKey":"pl181","X":589,"Y":676},{"Bonus":0,"Continent":"K33","ID":41559,"Name":"Szlachcic","PlayerID":3484132,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41559","ServerKey":"pl181","X":399,"Y":355},{"Bonus":0,"Continent":"K43","ID":41560,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":2014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41560","ServerKey":"pl181","X":304,"Y":455},{"Bonus":0,"Continent":"K33","ID":41561,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41561","ServerKey":"pl181","X":384,"Y":332},{"Bonus":0,"Continent":"K65","ID":41562,"Name":"Woytkowizna","PlayerID":7860453,"Points":7258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41562","ServerKey":"pl181","X":558,"Y":691},{"Bonus":0,"Continent":"K56","ID":41563,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":3645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41563","ServerKey":"pl181","X":699,"Y":529},{"Bonus":5,"Continent":"K64","ID":41564,"Name":"A000","PlayerID":699725436,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41564","ServerKey":"pl181","X":470,"Y":698},{"Bonus":0,"Continent":"K35","ID":41565,"Name":"AAA","PlayerID":1006847,"Points":9029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41565","ServerKey":"pl181","X":532,"Y":303},{"Bonus":0,"Continent":"K34","ID":41566,"Name":"023","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41566","ServerKey":"pl181","X":451,"Y":308},{"Bonus":0,"Continent":"K66","ID":41567,"Name":"Bessa 019","PlayerID":848987051,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41567","ServerKey":"pl181","X":636,"Y":651},{"Bonus":8,"Continent":"K34","ID":41568,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41568","ServerKey":"pl181","X":411,"Y":319},{"Bonus":0,"Continent":"K63","ID":41570,"Name":"PƂynie defik pƂynie po polskiej","PlayerID":698908184,"Points":4620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41570","ServerKey":"pl181","X":358,"Y":635},{"Bonus":0,"Continent":"K33","ID":41571,"Name":"Szlachcic","PlayerID":3484132,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41571","ServerKey":"pl181","X":388,"Y":338},{"Bonus":0,"Continent":"K33","ID":41572,"Name":"Wow16","PlayerID":698160606,"Points":5228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41572","ServerKey":"pl181","X":366,"Y":356},{"Bonus":5,"Continent":"K35","ID":41573,"Name":"Z001","PlayerID":7758085,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41573","ServerKey":"pl181","X":526,"Y":300},{"Bonus":0,"Continent":"K34","ID":41574,"Name":"#0209 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41574","ServerKey":"pl181","X":451,"Y":313},{"Bonus":0,"Continent":"K46","ID":41575,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41575","ServerKey":"pl181","X":693,"Y":441},{"Bonus":0,"Continent":"K65","ID":41576,"Name":"Wioska Wodzu001","PlayerID":7860453,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41576","ServerKey":"pl181","X":553,"Y":694},{"Bonus":0,"Continent":"K56","ID":41577,"Name":"B01","PlayerID":848995478,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41577","ServerKey":"pl181","X":692,"Y":559},{"Bonus":0,"Continent":"K65","ID":41578,"Name":"Forteca*010*","PlayerID":1078121,"Points":4530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41578","ServerKey":"pl181","X":531,"Y":697},{"Bonus":0,"Continent":"K36","ID":41579,"Name":"TUUU","PlayerID":699098531,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41579","ServerKey":"pl181","X":607,"Y":329},{"Bonus":0,"Continent":"K43","ID":41580,"Name":"014 VWF Wioska barbarzyƄska","PlayerID":3108144,"Points":5233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41580","ServerKey":"pl181","X":310,"Y":427},{"Bonus":6,"Continent":"K74","ID":41581,"Name":"035 Night Raid","PlayerID":699684062,"Points":8550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41581","ServerKey":"pl181","X":493,"Y":702},{"Bonus":0,"Continent":"K65","ID":41582,"Name":"112 invidia","PlayerID":849093426,"Points":9050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41582","ServerKey":"pl181","X":516,"Y":699},{"Bonus":0,"Continent":"K43","ID":41583,"Name":"Melon7","PlayerID":699659708,"Points":3580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41583","ServerKey":"pl181","X":313,"Y":434},{"Bonus":0,"Continent":"K46","ID":41584,"Name":"I107","PlayerID":699722599,"Points":6204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41584","ServerKey":"pl181","X":694,"Y":444},{"Bonus":0,"Continent":"K36","ID":41585,"Name":"-27-","PlayerID":699837826,"Points":2620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41585","ServerKey":"pl181","X":638,"Y":358},{"Bonus":0,"Continent":"K42","ID":41586,"Name":"Dream on","PlayerID":698962117,"Points":8347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41586","ServerKey":"pl181","X":296,"Y":488},{"Bonus":0,"Continent":"K56","ID":41587,"Name":"A04","PlayerID":848995478,"Points":10702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41587","ServerKey":"pl181","X":695,"Y":554},{"Bonus":9,"Continent":"K52","ID":41588,"Name":"EO EO","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41588","ServerKey":"pl181","X":299,"Y":515},{"Bonus":0,"Continent":"K35","ID":41589,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41589","ServerKey":"pl181","X":581,"Y":315},{"Bonus":0,"Continent":"K64","ID":41590,"Name":"039Mrozy","PlayerID":699605333,"Points":6340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41590","ServerKey":"pl181","X":477,"Y":699},{"Bonus":0,"Continent":"K53","ID":41591,"Name":"C0125","PlayerID":8841266,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41591","ServerKey":"pl181","X":301,"Y":512},{"Bonus":0,"Continent":"K56","ID":41592,"Name":"055. Likawitos","PlayerID":1601917,"Points":6624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41592","ServerKey":"pl181","X":691,"Y":541},{"Bonus":0,"Continent":"K66","ID":41593,"Name":"Ć»UBR PSYCHIATRYK 012","PlayerID":33900,"Points":6356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41593","ServerKey":"pl181","X":620,"Y":655},{"Bonus":0,"Continent":"K46","ID":41594,"Name":"Wioska barbarzyƄska","PlayerID":849095068,"Points":9082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41594","ServerKey":"pl181","X":673,"Y":407},{"Bonus":0,"Continent":"K63","ID":41595,"Name":"003","PlayerID":8839403,"Points":6523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41595","ServerKey":"pl181","X":389,"Y":664},{"Bonus":0,"Continent":"K33","ID":41596,"Name":"12 Kambr","PlayerID":195249,"Points":9204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41596","ServerKey":"pl181","X":398,"Y":326},{"Bonus":0,"Continent":"K43","ID":41597,"Name":"ZA03","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41597","ServerKey":"pl181","X":321,"Y":405},{"Bonus":0,"Continent":"K33","ID":41598,"Name":"Szlachcic","PlayerID":698160606,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41598","ServerKey":"pl181","X":375,"Y":349},{"Bonus":0,"Continent":"K66","ID":41599,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41599","ServerKey":"pl181","X":633,"Y":644},{"Bonus":0,"Continent":"K34","ID":41600,"Name":"Z 01","PlayerID":6884492,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41600","ServerKey":"pl181","X":418,"Y":313},{"Bonus":0,"Continent":"K36","ID":41601,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":5413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41601","ServerKey":"pl181","X":650,"Y":370},{"Bonus":0,"Continent":"K63","ID":41602,"Name":"Mroczny Zamek 026","PlayerID":698908184,"Points":5015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41602","ServerKey":"pl181","X":353,"Y":631},{"Bonus":0,"Continent":"K43","ID":41603,"Name":"Wioska barbarzyƄska","PlayerID":699285160,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41603","ServerKey":"pl181","X":310,"Y":448},{"Bonus":0,"Continent":"K33","ID":41604,"Name":"0008","PlayerID":699644448,"Points":3771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41604","ServerKey":"pl181","X":354,"Y":357},{"Bonus":0,"Continent":"K57","ID":41605,"Name":"007","PlayerID":699150527,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41605","ServerKey":"pl181","X":702,"Y":518},{"Bonus":0,"Continent":"K36","ID":41606,"Name":"010","PlayerID":698635863,"Points":6969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41606","ServerKey":"pl181","X":666,"Y":385},{"Bonus":0,"Continent":"K46","ID":41607,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41607","ServerKey":"pl181","X":697,"Y":455},{"Bonus":0,"Continent":"K63","ID":41608,"Name":"psycha sitting","PlayerID":699736927,"Points":6887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41608","ServerKey":"pl181","X":397,"Y":672},{"Bonus":0,"Continent":"K24","ID":41609,"Name":"036","PlayerID":2502956,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41609","ServerKey":"pl181","X":459,"Y":299},{"Bonus":0,"Continent":"K66","ID":41610,"Name":"Bessa 020","PlayerID":848987051,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41610","ServerKey":"pl181","X":636,"Y":652},{"Bonus":0,"Continent":"K35","ID":41611,"Name":"Wyzima","PlayerID":699072129,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41611","ServerKey":"pl181","X":557,"Y":311},{"Bonus":0,"Continent":"K35","ID":41612,"Name":"B014","PlayerID":699208929,"Points":8069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41612","ServerKey":"pl181","X":520,"Y":301},{"Bonus":0,"Continent":"K56","ID":41613,"Name":"Wioska Zorro 019","PlayerID":849080702,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41613","ServerKey":"pl181","X":674,"Y":591},{"Bonus":0,"Continent":"K64","ID":41614,"Name":"Z|008| Genua","PlayerID":699393742,"Points":6790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41614","ServerKey":"pl181","X":458,"Y":696},{"Bonus":0,"Continent":"K46","ID":41615,"Name":"ƁomĆŒa","PlayerID":849100082,"Points":10627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41615","ServerKey":"pl181","X":688,"Y":478},{"Bonus":7,"Continent":"K56","ID":41616,"Name":"Wioska 004","PlayerID":7999103,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41616","ServerKey":"pl181","X":675,"Y":596},{"Bonus":0,"Continent":"K66","ID":41617,"Name":"Wygwizdowa 002","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41617","ServerKey":"pl181","X":636,"Y":653},{"Bonus":0,"Continent":"K34","ID":41618,"Name":"[0124]","PlayerID":8630972,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41618","ServerKey":"pl181","X":447,"Y":305},{"Bonus":9,"Continent":"K64","ID":41619,"Name":"012","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41619","ServerKey":"pl181","X":423,"Y":685},{"Bonus":0,"Continent":"K35","ID":41620,"Name":"2.SYNDYKATOR","PlayerID":699208929,"Points":4469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41620","ServerKey":"pl181","X":523,"Y":304},{"Bonus":0,"Continent":"K63","ID":41621,"Name":"08 Villarrubia","PlayerID":699269923,"Points":6546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41621","ServerKey":"pl181","X":378,"Y":657},{"Bonus":0,"Continent":"K63","ID":41624,"Name":"002","PlayerID":8839403,"Points":6838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41624","ServerKey":"pl181","X":390,"Y":665},{"Bonus":0,"Continent":"K36","ID":41625,"Name":"XDX","PlayerID":699098531,"Points":4515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41625","ServerKey":"pl181","X":606,"Y":330},{"Bonus":0,"Continent":"K35","ID":41626,"Name":"Manama","PlayerID":699208929,"Points":9911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41626","ServerKey":"pl181","X":512,"Y":302},{"Bonus":0,"Continent":"K33","ID":41627,"Name":"Szlachcic","PlayerID":3484132,"Points":10005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41627","ServerKey":"pl181","X":382,"Y":341},{"Bonus":0,"Continent":"K34","ID":41628,"Name":"201...segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41628","ServerKey":"pl181","X":453,"Y":310},{"Bonus":0,"Continent":"K33","ID":41629,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41629","ServerKey":"pl181","X":387,"Y":330},{"Bonus":0,"Continent":"K36","ID":41630,"Name":"Dingo","PlayerID":699738350,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41630","ServerKey":"pl181","X":672,"Y":393},{"Bonus":0,"Continent":"K56","ID":41632,"Name":"Szlachcic","PlayerID":698867446,"Points":9657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41632","ServerKey":"pl181","X":677,"Y":588},{"Bonus":0,"Continent":"K63","ID":41633,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41633","ServerKey":"pl181","X":389,"Y":669},{"Bonus":0,"Continent":"K64","ID":41634,"Name":"New World","PlayerID":698152377,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41634","ServerKey":"pl181","X":430,"Y":683},{"Bonus":0,"Continent":"K64","ID":41635,"Name":"Ave Why!","PlayerID":699121671,"Points":1117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41635","ServerKey":"pl181","X":468,"Y":695},{"Bonus":0,"Continent":"K33","ID":41636,"Name":"z 000 Wioska 12","PlayerID":3909522,"Points":8538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41636","ServerKey":"pl181","X":352,"Y":361},{"Bonus":0,"Continent":"K35","ID":41637,"Name":"B013","PlayerID":699208929,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41637","ServerKey":"pl181","X":521,"Y":301},{"Bonus":0,"Continent":"K35","ID":41638,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41638","ServerKey":"pl181","X":576,"Y":313},{"Bonus":0,"Continent":"K47","ID":41639,"Name":"B#012","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41639","ServerKey":"pl181","X":701,"Y":461},{"Bonus":0,"Continent":"K64","ID":41640,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41640","ServerKey":"pl181","X":424,"Y":682},{"Bonus":0,"Continent":"K46","ID":41641,"Name":"036 - Mroczna Osada","PlayerID":849035905,"Points":11933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41641","ServerKey":"pl181","X":690,"Y":456},{"Bonus":0,"Continent":"K66","ID":41642,"Name":"007 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41642","ServerKey":"pl181","X":613,"Y":671},{"Bonus":0,"Continent":"K43","ID":41643,"Name":"Dream on","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41643","ServerKey":"pl181","X":304,"Y":491},{"Bonus":0,"Continent":"K34","ID":41644,"Name":"[0064]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41644","ServerKey":"pl181","X":438,"Y":316},{"Bonus":0,"Continent":"K35","ID":41645,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41645","ServerKey":"pl181","X":547,"Y":304},{"Bonus":0,"Continent":"K33","ID":41646,"Name":".33","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41646","ServerKey":"pl181","X":327,"Y":393},{"Bonus":0,"Continent":"K35","ID":41647,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41647","ServerKey":"pl181","X":504,"Y":305},{"Bonus":0,"Continent":"K36","ID":41648,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":5748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41648","ServerKey":"pl181","X":607,"Y":392},{"Bonus":0,"Continent":"K24","ID":41649,"Name":"????","PlayerID":698489071,"Points":9008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41649","ServerKey":"pl181","X":487,"Y":298},{"Bonus":2,"Continent":"K66","ID":41650,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41650","ServerKey":"pl181","X":664,"Y":621},{"Bonus":0,"Continent":"K56","ID":41651,"Name":"B11","PlayerID":848995478,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41651","ServerKey":"pl181","X":695,"Y":544},{"Bonus":0,"Continent":"K75","ID":41652,"Name":"ZZZ","PlayerID":8980651,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41652","ServerKey":"pl181","X":533,"Y":701},{"Bonus":0,"Continent":"K33","ID":41653,"Name":"ZACHOD 008","PlayerID":7462660,"Points":8364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41653","ServerKey":"pl181","X":352,"Y":364},{"Bonus":0,"Continent":"K65","ID":41654,"Name":"- 175 - SS","PlayerID":849018239,"Points":7441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41654","ServerKey":"pl181","X":548,"Y":690},{"Bonus":0,"Continent":"K66","ID":41655,"Name":"CALL 1069","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41655","ServerKey":"pl181","X":654,"Y":626},{"Bonus":0,"Continent":"K36","ID":41656,"Name":"!36 65 Tibeni","PlayerID":698361257,"Points":5472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41656","ServerKey":"pl181","X":652,"Y":368},{"Bonus":0,"Continent":"K36","ID":41657,"Name":"!36 75 Iaslovat","PlayerID":698361257,"Points":8723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41657","ServerKey":"pl181","X":657,"Y":372},{"Bonus":0,"Continent":"K46","ID":41658,"Name":"B#005","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41658","ServerKey":"pl181","X":698,"Y":454},{"Bonus":0,"Continent":"K64","ID":41659,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41659","ServerKey":"pl181","X":409,"Y":681},{"Bonus":0,"Continent":"K36","ID":41660,"Name":"009.","PlayerID":9048764,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41660","ServerKey":"pl181","X":645,"Y":358},{"Bonus":0,"Continent":"K63","ID":41661,"Name":"D.025","PlayerID":849088243,"Points":3816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41661","ServerKey":"pl181","X":391,"Y":667},{"Bonus":0,"Continent":"K46","ID":41662,"Name":"Jan My City 1","PlayerID":879782,"Points":10198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41662","ServerKey":"pl181","X":691,"Y":433},{"Bonus":0,"Continent":"K47","ID":41663,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41663","ServerKey":"pl181","X":700,"Y":487},{"Bonus":0,"Continent":"K66","ID":41664,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41664","ServerKey":"pl181","X":640,"Y":641},{"Bonus":6,"Continent":"K64","ID":41665,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41665","ServerKey":"pl181","X":407,"Y":676},{"Bonus":0,"Continent":"K65","ID":41666,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41666","ServerKey":"pl181","X":537,"Y":699},{"Bonus":0,"Continent":"K56","ID":41667,"Name":"002","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41667","ServerKey":"pl181","X":699,"Y":508},{"Bonus":0,"Continent":"K56","ID":41668,"Name":"Nowa 51","PlayerID":698702991,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41668","ServerKey":"pl181","X":683,"Y":574},{"Bonus":0,"Continent":"K33","ID":41669,"Name":"Wioska 8","PlayerID":3342690,"Points":2892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41669","ServerKey":"pl181","X":361,"Y":357},{"Bonus":0,"Continent":"K35","ID":41670,"Name":"007","PlayerID":8842936,"Points":8318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41670","ServerKey":"pl181","X":595,"Y":320},{"Bonus":0,"Continent":"K56","ID":41671,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41671","ServerKey":"pl181","X":685,"Y":562},{"Bonus":1,"Continent":"K36","ID":41672,"Name":"-010- ChwaƂa Imperium XXX","PlayerID":849099276,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41672","ServerKey":"pl181","X":629,"Y":348},{"Bonus":0,"Continent":"K63","ID":41674,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41674","ServerKey":"pl181","X":399,"Y":673},{"Bonus":0,"Continent":"K35","ID":41675,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41675","ServerKey":"pl181","X":573,"Y":313},{"Bonus":0,"Continent":"K65","ID":41676,"Name":"-08-","PlayerID":7860453,"Points":6280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41676","ServerKey":"pl181","X":562,"Y":694},{"Bonus":0,"Continent":"K65","ID":41677,"Name":"088 invidia","PlayerID":849093426,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41677","ServerKey":"pl181","X":517,"Y":699},{"Bonus":0,"Continent":"K36","ID":41678,"Name":"Tu jest przyszƂoƛć","PlayerID":699491076,"Points":6755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41678","ServerKey":"pl181","X":662,"Y":392},{"Bonus":0,"Continent":"K43","ID":41679,"Name":"FENDI","PlayerID":699794765,"Points":2798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41679","ServerKey":"pl181","X":306,"Y":436},{"Bonus":0,"Continent":"K66","ID":41680,"Name":"...06 am","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41680","ServerKey":"pl181","X":670,"Y":613},{"Bonus":0,"Continent":"K66","ID":41681,"Name":"Swoja7","PlayerID":6528152,"Points":8867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41681","ServerKey":"pl181","X":607,"Y":669},{"Bonus":0,"Continent":"K64","ID":41682,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41682","ServerKey":"pl181","X":414,"Y":680},{"Bonus":0,"Continent":"K47","ID":41683,"Name":"Ny ny","PlayerID":942959,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41683","ServerKey":"pl181","X":704,"Y":497},{"Bonus":0,"Continent":"K53","ID":41684,"Name":"047","PlayerID":9280477,"Points":4930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41684","ServerKey":"pl181","X":300,"Y":532},{"Bonus":0,"Continent":"K63","ID":41685,"Name":"O088","PlayerID":272173,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41685","ServerKey":"pl181","X":344,"Y":620},{"Bonus":0,"Continent":"K56","ID":41686,"Name":"TWIERDZA .:086:.","PlayerID":7154207,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41686","ServerKey":"pl181","X":694,"Y":562},{"Bonus":0,"Continent":"K46","ID":41687,"Name":"012. TargĂłwek","PlayerID":7494497,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41687","ServerKey":"pl181","X":699,"Y":472},{"Bonus":0,"Continent":"K46","ID":41688,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":9306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41688","ServerKey":"pl181","X":674,"Y":403},{"Bonus":0,"Continent":"K43","ID":41689,"Name":"009b","PlayerID":8259895,"Points":5442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41689","ServerKey":"pl181","X":312,"Y":424},{"Bonus":0,"Continent":"K36","ID":41690,"Name":"XDX","PlayerID":699098531,"Points":9158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41690","ServerKey":"pl181","X":613,"Y":330},{"Bonus":0,"Continent":"K34","ID":41691,"Name":"202...segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41691","ServerKey":"pl181","X":456,"Y":306},{"Bonus":0,"Continent":"K43","ID":41692,"Name":"z181_07","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41692","ServerKey":"pl181","X":311,"Y":440},{"Bonus":0,"Continent":"K74","ID":41693,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41693","ServerKey":"pl181","X":470,"Y":701},{"Bonus":0,"Continent":"K65","ID":41694,"Name":"- 133 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41694","ServerKey":"pl181","X":544,"Y":691},{"Bonus":0,"Continent":"K66","ID":41695,"Name":"CALL 1050","PlayerID":699784536,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41695","ServerKey":"pl181","X":653,"Y":628},{"Bonus":0,"Continent":"K53","ID":41696,"Name":"C0088","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41696","ServerKey":"pl181","X":303,"Y":524},{"Bonus":0,"Continent":"K33","ID":41697,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41697","ServerKey":"pl181","X":339,"Y":379},{"Bonus":0,"Continent":"K46","ID":41698,"Name":"0147","PlayerID":698416970,"Points":2637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41698","ServerKey":"pl181","X":678,"Y":408},{"Bonus":0,"Continent":"K53","ID":41700,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41700","ServerKey":"pl181","X":308,"Y":557},{"Bonus":0,"Continent":"K65","ID":41701,"Name":"052","PlayerID":2293376,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41701","ServerKey":"pl181","X":534,"Y":674},{"Bonus":0,"Continent":"K75","ID":41702,"Name":"033 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41702","ServerKey":"pl181","X":515,"Y":703},{"Bonus":0,"Continent":"K65","ID":41703,"Name":"Marcule","PlayerID":698723158,"Points":6027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41703","ServerKey":"pl181","X":572,"Y":686},{"Bonus":0,"Continent":"K63","ID":41704,"Name":"016 Kuzyn kami","PlayerID":7183372,"Points":10341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41704","ServerKey":"pl181","X":342,"Y":606},{"Bonus":0,"Continent":"K65","ID":41705,"Name":"legit_scam.","PlayerID":7860453,"Points":6849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41705","ServerKey":"pl181","X":552,"Y":690},{"Bonus":0,"Continent":"K65","ID":41706,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":7791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41706","ServerKey":"pl181","X":553,"Y":697},{"Bonus":0,"Continent":"K36","ID":41707,"Name":"!36 74 Sucevita","PlayerID":698361257,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41707","ServerKey":"pl181","X":648,"Y":370},{"Bonus":0,"Continent":"K65","ID":41708,"Name":"S004","PlayerID":8627359,"Points":9231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41708","ServerKey":"pl181","X":599,"Y":671},{"Bonus":0,"Continent":"K33","ID":41710,"Name":"Mefedron 09","PlayerID":3484132,"Points":5507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41710","ServerKey":"pl181","X":393,"Y":337},{"Bonus":0,"Continent":"K42","ID":41711,"Name":"marmag81/03www","PlayerID":1096254,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41711","ServerKey":"pl181","X":297,"Y":472},{"Bonus":0,"Continent":"K64","ID":41712,"Name":"030","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41712","ServerKey":"pl181","X":419,"Y":685},{"Bonus":0,"Continent":"K56","ID":41713,"Name":"Warkoczynka 1","PlayerID":699778867,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41713","ServerKey":"pl181","X":680,"Y":596},{"Bonus":0,"Continent":"K65","ID":41714,"Name":"Wioska Kugiel102","PlayerID":8501514,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41714","ServerKey":"pl181","X":506,"Y":682},{"Bonus":0,"Continent":"K57","ID":41715,"Name":"Normalnie tak","PlayerID":699785935,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41715","ServerKey":"pl181","X":702,"Y":514},{"Bonus":0,"Continent":"K35","ID":41716,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41716","ServerKey":"pl181","X":575,"Y":314},{"Bonus":0,"Continent":"K43","ID":41717,"Name":"*023 GAWRA*","PlayerID":2415972,"Points":8893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41717","ServerKey":"pl181","X":309,"Y":428},{"Bonus":0,"Continent":"K36","ID":41718,"Name":"!--","PlayerID":698361257,"Points":2729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41718","ServerKey":"pl181","X":647,"Y":366},{"Bonus":0,"Continent":"K46","ID":41719,"Name":"084","PlayerID":2135129,"Points":4259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41719","ServerKey":"pl181","X":698,"Y":490},{"Bonus":0,"Continent":"K36","ID":41720,"Name":"!36 64 Cojocareni","PlayerID":698361257,"Points":9678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41720","ServerKey":"pl181","X":647,"Y":368},{"Bonus":0,"Continent":"K53","ID":41721,"Name":"C0207","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41721","ServerKey":"pl181","X":300,"Y":537},{"Bonus":0,"Continent":"K46","ID":41722,"Name":"Domi 2","PlayerID":849002796,"Points":8628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41722","ServerKey":"pl181","X":699,"Y":476},{"Bonus":0,"Continent":"K36","ID":41724,"Name":"011","PlayerID":698635863,"Points":9278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41724","ServerKey":"pl181","X":656,"Y":380},{"Bonus":0,"Continent":"K35","ID":41725,"Name":"B.02 duchy serca puszczy","PlayerID":849026145,"Points":4094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41725","ServerKey":"pl181","X":555,"Y":308},{"Bonus":0,"Continent":"K66","ID":41726,"Name":"Ć»UBR PSYCHIATRYK 013","PlayerID":33900,"Points":6843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41726","ServerKey":"pl181","X":622,"Y":656},{"Bonus":0,"Continent":"K65","ID":41727,"Name":"-04-","PlayerID":7860453,"Points":7575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41727","ServerKey":"pl181","X":557,"Y":690},{"Bonus":0,"Continent":"K56","ID":41729,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":4720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41729","ServerKey":"pl181","X":694,"Y":560},{"Bonus":0,"Continent":"K56","ID":41730,"Name":"Didek","PlayerID":849070946,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41730","ServerKey":"pl181","X":681,"Y":587},{"Bonus":0,"Continent":"K36","ID":41731,"Name":"XDX","PlayerID":699098531,"Points":7264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41731","ServerKey":"pl181","X":603,"Y":329},{"Bonus":0,"Continent":"K34","ID":41732,"Name":"029","PlayerID":2502956,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41732","ServerKey":"pl181","X":456,"Y":301},{"Bonus":0,"Continent":"K46","ID":41733,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":5007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41733","ServerKey":"pl181","X":698,"Y":453},{"Bonus":0,"Continent":"K34","ID":41734,"Name":"001","PlayerID":698258283,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41734","ServerKey":"pl181","X":408,"Y":319},{"Bonus":0,"Continent":"K33","ID":41735,"Name":"014. Sherwood","PlayerID":699660539,"Points":6254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41735","ServerKey":"pl181","X":377,"Y":341},{"Bonus":1,"Continent":"K56","ID":41736,"Name":"TWIERDZA .:008:.","PlayerID":7154207,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41736","ServerKey":"pl181","X":686,"Y":574},{"Bonus":0,"Continent":"K35","ID":41737,"Name":"AAA","PlayerID":1006847,"Points":6753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41737","ServerKey":"pl181","X":548,"Y":308},{"Bonus":0,"Continent":"K66","ID":41738,"Name":"aAa Szlaban 6","PlayerID":699778867,"Points":6709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41738","ServerKey":"pl181","X":634,"Y":647},{"Bonus":0,"Continent":"K35","ID":41739,"Name":"Pierwsza Nemora","PlayerID":699072129,"Points":8328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41739","ServerKey":"pl181","X":563,"Y":316},{"Bonus":0,"Continent":"K36","ID":41740,"Name":"015","PlayerID":8842936,"Points":9997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41740","ServerKey":"pl181","X":614,"Y":336},{"Bonus":0,"Continent":"K65","ID":41741,"Name":"###072###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41741","ServerKey":"pl181","X":595,"Y":678},{"Bonus":0,"Continent":"K65","ID":41742,"Name":"AlojzĂłw","PlayerID":698723158,"Points":7227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41742","ServerKey":"pl181","X":571,"Y":685},{"Bonus":0,"Continent":"K35","ID":41743,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":3936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41743","ServerKey":"pl181","X":594,"Y":324},{"Bonus":0,"Continent":"K46","ID":41744,"Name":"[041] Wioska barbarzyƄska","PlayerID":849095068,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41744","ServerKey":"pl181","X":687,"Y":427},{"Bonus":0,"Continent":"K35","ID":41745,"Name":"C.04 a panicz to dokąd?","PlayerID":849026145,"Points":4197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41745","ServerKey":"pl181","X":546,"Y":301},{"Bonus":0,"Continent":"K47","ID":41746,"Name":"062. Wioska barbarzyƄska","PlayerID":7494497,"Points":8925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41746","ServerKey":"pl181","X":701,"Y":465},{"Bonus":0,"Continent":"K43","ID":41747,"Name":"FENDI","PlayerID":699794765,"Points":10591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41747","ServerKey":"pl181","X":301,"Y":465},{"Bonus":0,"Continent":"K35","ID":41748,"Name":"K35 - [029] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41748","ServerKey":"pl181","X":575,"Y":310},{"Bonus":0,"Continent":"K34","ID":41749,"Name":"???","PlayerID":698489071,"Points":7711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41749","ServerKey":"pl181","X":489,"Y":301},{"Bonus":0,"Continent":"K65","ID":41750,"Name":"144 invidia","PlayerID":849093426,"Points":6659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41750","ServerKey":"pl181","X":539,"Y":694},{"Bonus":4,"Continent":"K46","ID":41751,"Name":"Gattacka","PlayerID":699298370,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41751","ServerKey":"pl181","X":688,"Y":433},{"Bonus":0,"Continent":"K33","ID":41752,"Name":"010. Canterbury","PlayerID":699660539,"Points":10007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41752","ServerKey":"pl181","X":387,"Y":336},{"Bonus":0,"Continent":"K47","ID":41753,"Name":"005","PlayerID":942959,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41753","ServerKey":"pl181","X":702,"Y":494},{"Bonus":0,"Continent":"K53","ID":41754,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41754","ServerKey":"pl181","X":301,"Y":521},{"Bonus":0,"Continent":"K66","ID":41755,"Name":"013","PlayerID":849099544,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41755","ServerKey":"pl181","X":644,"Y":644},{"Bonus":0,"Continent":"K56","ID":41756,"Name":"Szlachcic","PlayerID":698867446,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41756","ServerKey":"pl181","X":678,"Y":593},{"Bonus":0,"Continent":"K43","ID":41757,"Name":"z181_03","PlayerID":393668,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41757","ServerKey":"pl181","X":313,"Y":441},{"Bonus":0,"Continent":"K35","ID":41758,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41758","ServerKey":"pl181","X":554,"Y":307},{"Bonus":0,"Continent":"K33","ID":41759,"Name":"Szlachcic","PlayerID":3484132,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41759","ServerKey":"pl181","X":389,"Y":338},{"Bonus":0,"Continent":"K63","ID":41760,"Name":"Zychowicz","PlayerID":849096649,"Points":7117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41760","ServerKey":"pl181","X":358,"Y":642},{"Bonus":0,"Continent":"K56","ID":41761,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":4551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41761","ServerKey":"pl181","X":688,"Y":562},{"Bonus":0,"Continent":"K66","ID":41762,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41762","ServerKey":"pl181","X":646,"Y":635},{"Bonus":0,"Continent":"K65","ID":41763,"Name":"komandos48","PlayerID":7976264,"Points":5150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41763","ServerKey":"pl181","X":500,"Y":698},{"Bonus":0,"Continent":"K43","ID":41764,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41764","ServerKey":"pl181","X":301,"Y":456},{"Bonus":0,"Continent":"K35","ID":41765,"Name":"#04","PlayerID":699072129,"Points":9107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41765","ServerKey":"pl181","X":557,"Y":306},{"Bonus":0,"Continent":"K35","ID":41766,"Name":"Winneburg","PlayerID":699072129,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41766","ServerKey":"pl181","X":553,"Y":307},{"Bonus":0,"Continent":"K35","ID":41767,"Name":"K35 - [036] Before Land","PlayerID":699088769,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41767","ServerKey":"pl181","X":576,"Y":312},{"Bonus":0,"Continent":"K64","ID":41769,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41769","ServerKey":"pl181","X":424,"Y":687},{"Bonus":0,"Continent":"K64","ID":41770,"Name":"0003 Wioska barbarzyƄska","PlayerID":849037407,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41770","ServerKey":"pl181","X":443,"Y":695},{"Bonus":0,"Continent":"K43","ID":41771,"Name":"ZZ15","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41771","ServerKey":"pl181","X":322,"Y":410},{"Bonus":0,"Continent":"K53","ID":41772,"Name":"C0098","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41772","ServerKey":"pl181","X":302,"Y":516},{"Bonus":0,"Continent":"K36","ID":41773,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41773","ServerKey":"pl181","X":655,"Y":372},{"Bonus":0,"Continent":"K66","ID":41774,"Name":"Ć»UBR PSYCHIATRYK 020","PlayerID":33900,"Points":10100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41774","ServerKey":"pl181","X":625,"Y":652},{"Bonus":1,"Continent":"K75","ID":41775,"Name":"017 samobĂłj","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41775","ServerKey":"pl181","X":542,"Y":700},{"Bonus":0,"Continent":"K33","ID":41776,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41776","ServerKey":"pl181","X":379,"Y":335},{"Bonus":0,"Continent":"K36","ID":41777,"Name":"!36 65 Bivolaria","PlayerID":698361257,"Points":6585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41777","ServerKey":"pl181","X":653,"Y":368},{"Bonus":0,"Continent":"K33","ID":41779,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41779","ServerKey":"pl181","X":338,"Y":380},{"Bonus":0,"Continent":"K66","ID":41780,"Name":"BuƂgarska","PlayerID":849096631,"Points":3271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41780","ServerKey":"pl181","X":667,"Y":614},{"Bonus":0,"Continent":"K46","ID":41781,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41781","ServerKey":"pl181","X":683,"Y":411},{"Bonus":0,"Continent":"K64","ID":41783,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41783","ServerKey":"pl181","X":407,"Y":677},{"Bonus":0,"Continent":"K53","ID":41785,"Name":"C0100","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41785","ServerKey":"pl181","X":301,"Y":517},{"Bonus":0,"Continent":"K64","ID":41786,"Name":"0049 Wioska barbarzyƄska","PlayerID":849037407,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41786","ServerKey":"pl181","X":449,"Y":695},{"Bonus":0,"Continent":"K36","ID":41787,"Name":"Wioska barbarzyƄska","PlayerID":849041192,"Points":4062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41787","ServerKey":"pl181","X":657,"Y":380},{"Bonus":0,"Continent":"K66","ID":41788,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":2551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41788","ServerKey":"pl181","X":676,"Y":600},{"Bonus":0,"Continent":"K36","ID":41789,"Name":"Twierdza 02","PlayerID":8379871,"Points":3783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41789","ServerKey":"pl181","X":671,"Y":393},{"Bonus":6,"Continent":"K33","ID":41790,"Name":"Osada koczownikĂłwx","PlayerID":698807570,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41790","ServerKey":"pl181","X":338,"Y":391},{"Bonus":0,"Continent":"K64","ID":41792,"Name":"~079.","PlayerID":7139820,"Points":5097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41792","ServerKey":"pl181","X":467,"Y":695},{"Bonus":0,"Continent":"K52","ID":41793,"Name":"C0126","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41793","ServerKey":"pl181","X":298,"Y":514},{"Bonus":0,"Continent":"K43","ID":41794,"Name":"WiedĆșma - Z 012","PlayerID":9239515,"Points":4686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41794","ServerKey":"pl181","X":308,"Y":432},{"Bonus":0,"Continent":"K53","ID":41795,"Name":"Wioska barbarzyƄska","PlayerID":699671197,"Points":4988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41795","ServerKey":"pl181","X":315,"Y":569},{"Bonus":0,"Continent":"K43","ID":41796,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41796","ServerKey":"pl181","X":300,"Y":462},{"Bonus":0,"Continent":"K56","ID":41797,"Name":"Seba1234567","PlayerID":849099689,"Points":1516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41797","ServerKey":"pl181","X":673,"Y":594},{"Bonus":0,"Continent":"K53","ID":41798,"Name":"002","PlayerID":849098628,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41798","ServerKey":"pl181","X":302,"Y":539},{"Bonus":0,"Continent":"K56","ID":41799,"Name":"049. KilimandĆŒaro","PlayerID":1601917,"Points":7747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41799","ServerKey":"pl181","X":694,"Y":547},{"Bonus":0,"Continent":"K66","ID":41800,"Name":"043","PlayerID":699099811,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41800","ServerKey":"pl181","X":650,"Y":628},{"Bonus":0,"Continent":"K24","ID":41801,"Name":"Not 2 morrow","PlayerID":698489071,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41801","ServerKey":"pl181","X":472,"Y":299},{"Bonus":0,"Continent":"K46","ID":41802,"Name":"Gattacka","PlayerID":699298370,"Points":9191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41802","ServerKey":"pl181","X":686,"Y":432},{"Bonus":0,"Continent":"K63","ID":41803,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41803","ServerKey":"pl181","X":364,"Y":649},{"Bonus":0,"Continent":"K35","ID":41804,"Name":"AAA","PlayerID":1006847,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41804","ServerKey":"pl181","X":542,"Y":308},{"Bonus":0,"Continent":"K36","ID":41805,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41805","ServerKey":"pl181","X":670,"Y":399},{"Bonus":0,"Continent":"K33","ID":41806,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41806","ServerKey":"pl181","X":394,"Y":328},{"Bonus":0,"Continent":"K66","ID":41807,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41807","ServerKey":"pl181","X":658,"Y":622},{"Bonus":0,"Continent":"K64","ID":41808,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41808","ServerKey":"pl181","X":402,"Y":671},{"Bonus":0,"Continent":"K34","ID":41809,"Name":"[0120]","PlayerID":8630972,"Points":10060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41809","ServerKey":"pl181","X":447,"Y":304},{"Bonus":0,"Continent":"K74","ID":41810,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":5560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41810","ServerKey":"pl181","X":498,"Y":706},{"Bonus":0,"Continent":"K36","ID":41811,"Name":"012","PlayerID":698635863,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41811","ServerKey":"pl181","X":660,"Y":380},{"Bonus":0,"Continent":"K43","ID":41812,"Name":"ZZ01","PlayerID":356642,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41812","ServerKey":"pl181","X":323,"Y":408},{"Bonus":0,"Continent":"K65","ID":41813,"Name":"*Lonta","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41813","ServerKey":"pl181","X":574,"Y":636},{"Bonus":0,"Continent":"K56","ID":41814,"Name":"A01","PlayerID":848995478,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41814","ServerKey":"pl181","X":695,"Y":555},{"Bonus":0,"Continent":"K74","ID":41815,"Name":"C002","PlayerID":8954402,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41815","ServerKey":"pl181","X":472,"Y":701},{"Bonus":0,"Continent":"K33","ID":41816,"Name":"020","PlayerID":8153941,"Points":7115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41816","ServerKey":"pl181","X":393,"Y":331},{"Bonus":0,"Continent":"K46","ID":41817,"Name":"spanko","PlayerID":699738350,"Points":7766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41817","ServerKey":"pl181","X":681,"Y":426},{"Bonus":0,"Continent":"K46","ID":41818,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41818","ServerKey":"pl181","X":697,"Y":486},{"Bonus":0,"Continent":"K66","ID":41819,"Name":"...02 am","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41819","ServerKey":"pl181","X":671,"Y":613},{"Bonus":0,"Continent":"K64","ID":41820,"Name":"Wioska Paprykk777","PlayerID":849100134,"Points":1899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41820","ServerKey":"pl181","X":428,"Y":665},{"Bonus":0,"Continent":"K36","ID":41821,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":6448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41821","ServerKey":"pl181","X":626,"Y":349},{"Bonus":0,"Continent":"K56","ID":41822,"Name":"071","PlayerID":699316421,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41822","ServerKey":"pl181","X":696,"Y":548},{"Bonus":0,"Continent":"K57","ID":41823,"Name":"Wioska 005","PlayerID":2999957,"Points":5381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41823","ServerKey":"pl181","X":701,"Y":527},{"Bonus":0,"Continent":"K66","ID":41824,"Name":"HAPERT","PlayerID":848909464,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41824","ServerKey":"pl181","X":627,"Y":655},{"Bonus":0,"Continent":"K35","ID":41825,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41825","ServerKey":"pl181","X":590,"Y":317},{"Bonus":0,"Continent":"K63","ID":41826,"Name":"Wieƛ 10","PlayerID":9199885,"Points":4141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41826","ServerKey":"pl181","X":340,"Y":612},{"Bonus":0,"Continent":"K43","ID":41828,"Name":"boh81/33","PlayerID":848889556,"Points":8467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41828","ServerKey":"pl181","X":300,"Y":471},{"Bonus":0,"Continent":"K35","ID":41829,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":4627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41829","ServerKey":"pl181","X":568,"Y":313},{"Bonus":0,"Continent":"K56","ID":41830,"Name":"Szlachcic","PlayerID":698867446,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41830","ServerKey":"pl181","X":677,"Y":589},{"Bonus":9,"Continent":"K43","ID":41832,"Name":"Out of Touch","PlayerID":698962117,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41832","ServerKey":"pl181","X":317,"Y":423},{"Bonus":0,"Continent":"K56","ID":41833,"Name":"Nowa 36","PlayerID":698702991,"Points":9134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41833","ServerKey":"pl181","X":628,"Y":569},{"Bonus":0,"Continent":"K33","ID":41834,"Name":"Szlachcic","PlayerID":698160606,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41834","ServerKey":"pl181","X":384,"Y":341},{"Bonus":0,"Continent":"K43","ID":41835,"Name":"Dream on","PlayerID":698962117,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41835","ServerKey":"pl181","X":300,"Y":493},{"Bonus":0,"Continent":"K36","ID":41836,"Name":"XDX","PlayerID":699098531,"Points":8488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41836","ServerKey":"pl181","X":616,"Y":336},{"Bonus":0,"Continent":"K46","ID":41837,"Name":"Wioska11","PlayerID":848935020,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41837","ServerKey":"pl181","X":630,"Y":480},{"Bonus":0,"Continent":"K65","ID":41838,"Name":"###073###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41838","ServerKey":"pl181","X":592,"Y":677},{"Bonus":0,"Continent":"K64","ID":41840,"Name":"026# Malvine","PlayerID":3933666,"Points":6194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41840","ServerKey":"pl181","X":491,"Y":697},{"Bonus":0,"Continent":"K75","ID":41841,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41841","ServerKey":"pl181","X":503,"Y":702},{"Bonus":0,"Continent":"K43","ID":41842,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41842","ServerKey":"pl181","X":327,"Y":402},{"Bonus":0,"Continent":"K66","ID":41843,"Name":"003181","PlayerID":699872616,"Points":7589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41843","ServerKey":"pl181","X":628,"Y":656},{"Bonus":8,"Continent":"K42","ID":41844,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41844","ServerKey":"pl181","X":299,"Y":494},{"Bonus":0,"Continent":"K53","ID":41845,"Name":"Wioska Fatality51","PlayerID":699792747,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41845","ServerKey":"pl181","X":324,"Y":594},{"Bonus":0,"Continent":"K66","ID":41846,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41846","ServerKey":"pl181","X":624,"Y":662},{"Bonus":0,"Continent":"K56","ID":41847,"Name":"Didek","PlayerID":849070946,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41847","ServerKey":"pl181","X":682,"Y":583},{"Bonus":0,"Continent":"K46","ID":41848,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41848","ServerKey":"pl181","X":689,"Y":430},{"Bonus":0,"Continent":"K33","ID":41849,"Name":"Szlachcic","PlayerID":3484132,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41849","ServerKey":"pl181","X":386,"Y":339},{"Bonus":0,"Continent":"K53","ID":41851,"Name":"032","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41851","ServerKey":"pl181","X":308,"Y":571},{"Bonus":0,"Continent":"K36","ID":41852,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41852","ServerKey":"pl181","X":662,"Y":376},{"Bonus":0,"Continent":"K33","ID":41853,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41853","ServerKey":"pl181","X":388,"Y":335},{"Bonus":0,"Continent":"K46","ID":41854,"Name":"Jan 016 Ost K","PlayerID":879782,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41854","ServerKey":"pl181","X":694,"Y":445},{"Bonus":0,"Continent":"K35","ID":41855,"Name":"Wioska 05","PlayerID":849067192,"Points":3245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41855","ServerKey":"pl181","X":569,"Y":313},{"Bonus":0,"Continent":"K53","ID":41856,"Name":"008. plebi","PlayerID":3475079,"Points":2549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41856","ServerKey":"pl181","X":323,"Y":586},{"Bonus":0,"Continent":"K63","ID":41857,"Name":"-002- sz","PlayerID":272173,"Points":5572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41857","ServerKey":"pl181","X":356,"Y":637},{"Bonus":0,"Continent":"K53","ID":41858,"Name":"038","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41858","ServerKey":"pl181","X":310,"Y":568},{"Bonus":0,"Continent":"K25","ID":41859,"Name":"GdaƄsk","PlayerID":699208929,"Points":9081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41859","ServerKey":"pl181","X":511,"Y":297},{"Bonus":0,"Continent":"K65","ID":41860,"Name":"003 trochę czasu minęƂo","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41860","ServerKey":"pl181","X":525,"Y":695},{"Bonus":0,"Continent":"K56","ID":41861,"Name":"013 * Lady Porto *","PlayerID":699406750,"Points":7220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41861","ServerKey":"pl181","X":698,"Y":503},{"Bonus":0,"Continent":"K36","ID":41862,"Name":"Wioska barbarzyƄska","PlayerID":849092309,"Points":3377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41862","ServerKey":"pl181","X":644,"Y":355},{"Bonus":0,"Continent":"K65","ID":41863,"Name":"Brody","PlayerID":698723158,"Points":5768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41863","ServerKey":"pl181","X":565,"Y":693},{"Bonus":0,"Continent":"K56","ID":41864,"Name":"Wioska 077","PlayerID":848971079,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41864","ServerKey":"pl181","X":651,"Y":592},{"Bonus":0,"Continent":"K75","ID":41865,"Name":"129 invidia","PlayerID":849093426,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41865","ServerKey":"pl181","X":504,"Y":702},{"Bonus":0,"Continent":"K33","ID":41866,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":2588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41866","ServerKey":"pl181","X":392,"Y":336},{"Bonus":0,"Continent":"K36","ID":41867,"Name":"066- Mroczna Osada","PlayerID":849035905,"Points":10496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41867","ServerKey":"pl181","X":609,"Y":338},{"Bonus":0,"Continent":"K74","ID":41868,"Name":"045. Night Raid","PlayerID":699684062,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41868","ServerKey":"pl181","X":485,"Y":703},{"Bonus":0,"Continent":"K56","ID":41869,"Name":"asi","PlayerID":699611673,"Points":4967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41869","ServerKey":"pl181","X":649,"Y":593},{"Bonus":0,"Continent":"K53","ID":41870,"Name":"B6.","PlayerID":849095482,"Points":2470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41870","ServerKey":"pl181","X":310,"Y":545},{"Bonus":0,"Continent":"K56","ID":41871,"Name":"076","PlayerID":698999105,"Points":6995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41871","ServerKey":"pl181","X":631,"Y":591},{"Bonus":0,"Continent":"K66","ID":41872,"Name":"#K66 0006","PlayerID":699728159,"Points":4792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41872","ServerKey":"pl181","X":610,"Y":672},{"Bonus":0,"Continent":"K66","ID":41873,"Name":"011","PlayerID":849095963,"Points":3145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41873","ServerKey":"pl181","X":672,"Y":605},{"Bonus":0,"Continent":"K63","ID":41874,"Name":"-002- sz","PlayerID":272173,"Points":4877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41874","ServerKey":"pl181","X":357,"Y":634},{"Bonus":0,"Continent":"K63","ID":41875,"Name":"Taran","PlayerID":6180190,"Points":10200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41875","ServerKey":"pl181","X":325,"Y":602},{"Bonus":0,"Continent":"K36","ID":41876,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":4146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41876","ServerKey":"pl181","X":614,"Y":331},{"Bonus":0,"Continent":"K63","ID":41878,"Name":"--18--","PlayerID":8877156,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41878","ServerKey":"pl181","X":328,"Y":601},{"Bonus":0,"Continent":"K43","ID":41879,"Name":"marmag81/03g","PlayerID":1096254,"Points":6726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41879","ServerKey":"pl181","X":302,"Y":467},{"Bonus":0,"Continent":"K43","ID":41880,"Name":"boh81","PlayerID":848889556,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41880","ServerKey":"pl181","X":306,"Y":468},{"Bonus":0,"Continent":"K33","ID":41881,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41881","ServerKey":"pl181","X":328,"Y":393},{"Bonus":0,"Continent":"K64","ID":41882,"Name":"0016 Wioska barbarzyƄska","PlayerID":849037407,"Points":9589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41882","ServerKey":"pl181","X":439,"Y":695},{"Bonus":0,"Continent":"K53","ID":41883,"Name":"Dream on","PlayerID":698962117,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41883","ServerKey":"pl181","X":304,"Y":507},{"Bonus":6,"Continent":"K34","ID":41884,"Name":"207...segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41884","ServerKey":"pl181","X":446,"Y":308},{"Bonus":0,"Continent":"K53","ID":41886,"Name":"B8.","PlayerID":849095482,"Points":2902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41886","ServerKey":"pl181","X":310,"Y":546},{"Bonus":5,"Continent":"K34","ID":41887,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41887","ServerKey":"pl181","X":485,"Y":305},{"Bonus":0,"Continent":"K56","ID":41888,"Name":"EE 001","PlayerID":849100149,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41888","ServerKey":"pl181","X":694,"Y":580},{"Bonus":0,"Continent":"K35","ID":41889,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41889","ServerKey":"pl181","X":524,"Y":303},{"Bonus":0,"Continent":"K33","ID":41890,"Name":"z rondalek","PlayerID":3909522,"Points":10210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41890","ServerKey":"pl181","X":358,"Y":359},{"Bonus":0,"Continent":"K46","ID":41891,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41891","ServerKey":"pl181","X":680,"Y":413},{"Bonus":0,"Continent":"K24","ID":41892,"Name":"Tuchomie","PlayerID":849101116,"Points":4088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41892","ServerKey":"pl181","X":469,"Y":298},{"Bonus":0,"Continent":"K35","ID":41893,"Name":"XDX","PlayerID":699098531,"Points":5588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41893","ServerKey":"pl181","X":597,"Y":321},{"Bonus":0,"Continent":"K33","ID":41894,"Name":"Saska Kępa1","PlayerID":849099434,"Points":4364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41894","ServerKey":"pl181","X":367,"Y":357},{"Bonus":3,"Continent":"K42","ID":41895,"Name":"Dream on","PlayerID":698962117,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41895","ServerKey":"pl181","X":297,"Y":495},{"Bonus":0,"Continent":"K35","ID":41896,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41896","ServerKey":"pl181","X":585,"Y":319},{"Bonus":3,"Continent":"K24","ID":41897,"Name":".achim.","PlayerID":6936607,"Points":6141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41897","ServerKey":"pl181","X":489,"Y":298},{"Bonus":0,"Continent":"K35","ID":41898,"Name":"002 VLV","PlayerID":849100656,"Points":10188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41898","ServerKey":"pl181","X":559,"Y":304},{"Bonus":0,"Continent":"K35","ID":41899,"Name":"XDX","PlayerID":699098531,"Points":4636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41899","ServerKey":"pl181","X":594,"Y":327},{"Bonus":0,"Continent":"K42","ID":41900,"Name":"Dream on","PlayerID":698962117,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41900","ServerKey":"pl181","X":299,"Y":482},{"Bonus":0,"Continent":"K66","ID":41901,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41901","ServerKey":"pl181","X":646,"Y":632},{"Bonus":0,"Continent":"K56","ID":41902,"Name":"TWIERDZA .:079:.","PlayerID":7154207,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41902","ServerKey":"pl181","X":686,"Y":573},{"Bonus":0,"Continent":"K33","ID":41903,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":6172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41903","ServerKey":"pl181","X":339,"Y":373},{"Bonus":0,"Continent":"K66","ID":41904,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":3532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41904","ServerKey":"pl181","X":670,"Y":606},{"Bonus":0,"Continent":"K34","ID":41905,"Name":"028","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41905","ServerKey":"pl181","X":456,"Y":304},{"Bonus":0,"Continent":"K66","ID":41906,"Name":"013 NAWRA","PlayerID":849048867,"Points":5900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41906","ServerKey":"pl181","X":664,"Y":615},{"Bonus":0,"Continent":"K34","ID":41907,"Name":"234","PlayerID":7271812,"Points":1317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41907","ServerKey":"pl181","X":416,"Y":313},{"Bonus":0,"Continent":"K24","ID":41908,"Name":"Cisowa","PlayerID":698848373,"Points":2330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41908","ServerKey":"pl181","X":479,"Y":297},{"Bonus":0,"Continent":"K63","ID":41909,"Name":"C062","PlayerID":699383279,"Points":8685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41909","ServerKey":"pl181","X":376,"Y":654},{"Bonus":0,"Continent":"K33","ID":41910,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41910","ServerKey":"pl181","X":338,"Y":384},{"Bonus":0,"Continent":"K63","ID":41911,"Name":"O138","PlayerID":272173,"Points":7403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41911","ServerKey":"pl181","X":355,"Y":643},{"Bonus":0,"Continent":"K36","ID":41912,"Name":"!36 65 Badeuti","PlayerID":698361257,"Points":7175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41912","ServerKey":"pl181","X":654,"Y":368},{"Bonus":0,"Continent":"K34","ID":41913,"Name":"108.Stradi","PlayerID":698365960,"Points":8828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41913","ServerKey":"pl181","X":439,"Y":309},{"Bonus":0,"Continent":"K63","ID":41914,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41914","ServerKey":"pl181","X":336,"Y":609},{"Bonus":0,"Continent":"K63","ID":41915,"Name":"O100","PlayerID":272173,"Points":9344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41915","ServerKey":"pl181","X":335,"Y":618},{"Bonus":0,"Continent":"K46","ID":41916,"Name":"Jan Ost nord","PlayerID":879782,"Points":9900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41916","ServerKey":"pl181","X":696,"Y":461},{"Bonus":0,"Continent":"K63","ID":41917,"Name":"C020","PlayerID":699383279,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41917","ServerKey":"pl181","X":375,"Y":662},{"Bonus":0,"Continent":"K35","ID":41918,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":6908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41918","ServerKey":"pl181","X":563,"Y":314},{"Bonus":0,"Continent":"K65","ID":41919,"Name":"###074###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41919","ServerKey":"pl181","X":581,"Y":681},{"Bonus":0,"Continent":"K63","ID":41920,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":8900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41920","ServerKey":"pl181","X":392,"Y":673},{"Bonus":0,"Continent":"K43","ID":41921,"Name":"FENDI","PlayerID":699794765,"Points":6545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41921","ServerKey":"pl181","X":306,"Y":435},{"Bonus":0,"Continent":"K56","ID":41922,"Name":"#109#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41922","ServerKey":"pl181","X":637,"Y":596},{"Bonus":0,"Continent":"K35","ID":41923,"Name":"B005 Zos","PlayerID":699208929,"Points":10033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41923","ServerKey":"pl181","X":516,"Y":304},{"Bonus":0,"Continent":"K43","ID":41924,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41924","ServerKey":"pl181","X":303,"Y":459},{"Bonus":0,"Continent":"K66","ID":41925,"Name":"023 NAWRA","PlayerID":849048867,"Points":8390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41925","ServerKey":"pl181","X":668,"Y":612},{"Bonus":0,"Continent":"K43","ID":41926,"Name":"Out of Touch","PlayerID":698962117,"Points":5906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41926","ServerKey":"pl181","X":316,"Y":432},{"Bonus":0,"Continent":"K53","ID":41927,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":4164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41927","ServerKey":"pl181","X":306,"Y":556},{"Bonus":0,"Continent":"K36","ID":41928,"Name":"East 4","PlayerID":1086351,"Points":3985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41928","ServerKey":"pl181","X":656,"Y":376},{"Bonus":0,"Continent":"K24","ID":41930,"Name":".achim.","PlayerID":6936607,"Points":4923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41930","ServerKey":"pl181","X":471,"Y":299},{"Bonus":0,"Continent":"K56","ID":41931,"Name":"TWIERDZA .:048:.","PlayerID":7154207,"Points":10112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41931","ServerKey":"pl181","X":695,"Y":564},{"Bonus":0,"Continent":"K56","ID":41932,"Name":"C11","PlayerID":848995478,"Points":3648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41932","ServerKey":"pl181","X":693,"Y":531},{"Bonus":0,"Continent":"K54","ID":41933,"Name":"0190","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41933","ServerKey":"pl181","X":475,"Y":544},{"Bonus":0,"Continent":"K64","ID":41934,"Name":"0046 Utopia1","PlayerID":849037407,"Points":9572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41934","ServerKey":"pl181","X":439,"Y":696},{"Bonus":0,"Continent":"K56","ID":41935,"Name":"Didek","PlayerID":849070946,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41935","ServerKey":"pl181","X":680,"Y":578},{"Bonus":0,"Continent":"K33","ID":41936,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":3399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41936","ServerKey":"pl181","X":343,"Y":377},{"Bonus":4,"Continent":"K34","ID":41937,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41937","ServerKey":"pl181","X":405,"Y":325},{"Bonus":0,"Continent":"K43","ID":41938,"Name":"ZA18","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41938","ServerKey":"pl181","X":320,"Y":414},{"Bonus":0,"Continent":"K33","ID":41939,"Name":"Wow15","PlayerID":698160606,"Points":4337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41939","ServerKey":"pl181","X":362,"Y":351},{"Bonus":0,"Continent":"K43","ID":41940,"Name":"Ania","PlayerID":2415972,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41940","ServerKey":"pl181","X":310,"Y":430},{"Bonus":0,"Continent":"K66","ID":41941,"Name":"Wioska 016","PlayerID":7999103,"Points":3924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41941","ServerKey":"pl181","X":672,"Y":606},{"Bonus":0,"Continent":"K36","ID":41942,"Name":"051","PlayerID":849010255,"Points":3045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41942","ServerKey":"pl181","X":631,"Y":349},{"Bonus":0,"Continent":"K65","ID":41943,"Name":"-10-","PlayerID":698723158,"Points":5748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41943","ServerKey":"pl181","X":567,"Y":693},{"Bonus":0,"Continent":"K33","ID":41944,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":7324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41944","ServerKey":"pl181","X":346,"Y":369},{"Bonus":0,"Continent":"K65","ID":41945,"Name":"###019###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41945","ServerKey":"pl181","X":588,"Y":685},{"Bonus":0,"Continent":"K56","ID":41946,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41946","ServerKey":"pl181","X":690,"Y":544},{"Bonus":0,"Continent":"K56","ID":41947,"Name":"077","PlayerID":698999105,"Points":5993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41947","ServerKey":"pl181","X":636,"Y":586},{"Bonus":0,"Continent":"K46","ID":41948,"Name":"097 Saitama","PlayerID":7092442,"Points":6843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41948","ServerKey":"pl181","X":690,"Y":448},{"Bonus":0,"Continent":"K65","ID":41949,"Name":"Forteca*004*","PlayerID":1078121,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41949","ServerKey":"pl181","X":532,"Y":694},{"Bonus":0,"Continent":"K35","ID":41950,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41950","ServerKey":"pl181","X":587,"Y":319},{"Bonus":0,"Continent":"K66","ID":41951,"Name":"CALL 1074","PlayerID":699784536,"Points":10508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41951","ServerKey":"pl181","X":653,"Y":630},{"Bonus":0,"Continent":"K56","ID":41952,"Name":"TWIERDZA .:041:.","PlayerID":848932879,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41952","ServerKey":"pl181","X":691,"Y":563},{"Bonus":0,"Continent":"K36","ID":41953,"Name":"050","PlayerID":849010255,"Points":2327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41953","ServerKey":"pl181","X":638,"Y":350},{"Bonus":0,"Continent":"K65","ID":41954,"Name":"131 invidia","PlayerID":849093426,"Points":6617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41954","ServerKey":"pl181","X":526,"Y":696},{"Bonus":0,"Continent":"K74","ID":41955,"Name":"C003","PlayerID":8954402,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41955","ServerKey":"pl181","X":470,"Y":703},{"Bonus":5,"Continent":"K36","ID":41956,"Name":"TUUU","PlayerID":699098531,"Points":7991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41956","ServerKey":"pl181","X":603,"Y":332},{"Bonus":0,"Continent":"K63","ID":41957,"Name":"003 - Nowy Początek...","PlayerID":699269923,"Points":10874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41957","ServerKey":"pl181","X":369,"Y":652},{"Bonus":0,"Continent":"K36","ID":41958,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41958","ServerKey":"pl181","X":661,"Y":373},{"Bonus":0,"Continent":"K25","ID":41959,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41959","ServerKey":"pl181","X":535,"Y":298},{"Bonus":0,"Continent":"K64","ID":41960,"Name":"Wioska","PlayerID":848999671,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41960","ServerKey":"pl181","X":477,"Y":650},{"Bonus":0,"Continent":"K56","ID":41961,"Name":"Nowa 53","PlayerID":698702991,"Points":6636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41961","ServerKey":"pl181","X":681,"Y":575},{"Bonus":5,"Continent":"K66","ID":41962,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41962","ServerKey":"pl181","X":645,"Y":642},{"Bonus":0,"Continent":"K65","ID":41963,"Name":"Wioska","PlayerID":7860453,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41963","ServerKey":"pl181","X":548,"Y":687},{"Bonus":0,"Continent":"K43","ID":41964,"Name":"z181_12","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41964","ServerKey":"pl181","X":308,"Y":443},{"Bonus":0,"Continent":"K33","ID":41965,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":1913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41965","ServerKey":"pl181","X":344,"Y":382},{"Bonus":0,"Continent":"K46","ID":41966,"Name":"09.SNSD","PlayerID":9180206,"Points":8757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41966","ServerKey":"pl181","X":686,"Y":420},{"Bonus":0,"Continent":"K65","ID":41967,"Name":"Chotcza","PlayerID":698723158,"Points":4975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41967","ServerKey":"pl181","X":567,"Y":692},{"Bonus":0,"Continent":"K66","ID":41968,"Name":"011 NAWRA","PlayerID":849048867,"Points":7154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41968","ServerKey":"pl181","X":660,"Y":613},{"Bonus":0,"Continent":"K34","ID":41969,"Name":"#0228 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41969","ServerKey":"pl181","X":443,"Y":304},{"Bonus":0,"Continent":"K34","ID":41970,"Name":"035.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41970","ServerKey":"pl181","X":431,"Y":308},{"Bonus":0,"Continent":"K63","ID":41971,"Name":"Miasto","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41971","ServerKey":"pl181","X":338,"Y":611},{"Bonus":0,"Continent":"K66","ID":41972,"Name":"Ć»UBR PSYCHIATRYK 011","PlayerID":33900,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41972","ServerKey":"pl181","X":624,"Y":655},{"Bonus":0,"Continent":"K46","ID":41973,"Name":"B006 ZieNciu","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41973","ServerKey":"pl181","X":699,"Y":457},{"Bonus":0,"Continent":"K53","ID":41974,"Name":"C0191","PlayerID":8841266,"Points":8433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41974","ServerKey":"pl181","X":302,"Y":534},{"Bonus":0,"Continent":"K53","ID":41975,"Name":"Wioska klez 019","PlayerID":698295651,"Points":5308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41975","ServerKey":"pl181","X":324,"Y":510},{"Bonus":0,"Continent":"K47","ID":41976,"Name":"C.015","PlayerID":9188016,"Points":7347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41976","ServerKey":"pl181","X":702,"Y":487},{"Bonus":0,"Continent":"K56","ID":41977,"Name":"Didek","PlayerID":849070946,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41977","ServerKey":"pl181","X":681,"Y":584},{"Bonus":0,"Continent":"K34","ID":41978,"Name":"027","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41978","ServerKey":"pl181","X":455,"Y":303},{"Bonus":0,"Continent":"K46","ID":41979,"Name":"Hofek 29.","PlayerID":849095068,"Points":3499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41979","ServerKey":"pl181","X":672,"Y":401},{"Bonus":0,"Continent":"K56","ID":41981,"Name":"Didi","PlayerID":849070946,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41981","ServerKey":"pl181","X":681,"Y":586},{"Bonus":0,"Continent":"K63","ID":41982,"Name":"D.023","PlayerID":849088243,"Points":4218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41982","ServerKey":"pl181","X":394,"Y":670},{"Bonus":0,"Continent":"K35","ID":41983,"Name":"Wioska 04","PlayerID":849067192,"Points":4769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41983","ServerKey":"pl181","X":567,"Y":314},{"Bonus":0,"Continent":"K43","ID":41984,"Name":"ZA20","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41984","ServerKey":"pl181","X":314,"Y":414},{"Bonus":0,"Continent":"K53","ID":41985,"Name":"Nie mam pomysƂu na nazwę wioski","PlayerID":849100162,"Points":2852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41985","ServerKey":"pl181","X":326,"Y":591},{"Bonus":0,"Continent":"K66","ID":41986,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41986","ServerKey":"pl181","X":642,"Y":647},{"Bonus":0,"Continent":"K34","ID":41987,"Name":"#0215 Segadorr dar","PlayerID":1238300,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41987","ServerKey":"pl181","X":456,"Y":305},{"Bonus":0,"Continent":"K35","ID":41988,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41988","ServerKey":"pl181","X":592,"Y":318},{"Bonus":0,"Continent":"K53","ID":41989,"Name":"042","PlayerID":9280477,"Points":5624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41989","ServerKey":"pl181","X":303,"Y":539},{"Bonus":0,"Continent":"K46","ID":41990,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41990","ServerKey":"pl181","X":696,"Y":482},{"Bonus":0,"Continent":"K64","ID":41991,"Name":"010 D","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41991","ServerKey":"pl181","X":420,"Y":685},{"Bonus":0,"Continent":"K46","ID":41992,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41992","ServerKey":"pl181","X":678,"Y":409},{"Bonus":0,"Continent":"K56","ID":41993,"Name":"Didek","PlayerID":849070946,"Points":5394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41993","ServerKey":"pl181","X":688,"Y":583},{"Bonus":0,"Continent":"K43","ID":41994,"Name":"Xenonowy grĂłd","PlayerID":699377401,"Points":4008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41994","ServerKey":"pl181","X":314,"Y":418},{"Bonus":0,"Continent":"K36","ID":41995,"Name":"Wioska barbarzyƄska","PlayerID":698768565,"Points":2222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41995","ServerKey":"pl181","X":672,"Y":399},{"Bonus":0,"Continent":"K34","ID":41996,"Name":"033.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41996","ServerKey":"pl181","X":426,"Y":314},{"Bonus":0,"Continent":"K53","ID":41997,"Name":"045.","PlayerID":3475079,"Points":3078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41997","ServerKey":"pl181","X":325,"Y":590},{"Bonus":0,"Continent":"K53","ID":41999,"Name":"Ave Why!","PlayerID":6180190,"Points":4758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=41999","ServerKey":"pl181","X":313,"Y":580},{"Bonus":0,"Continent":"K35","ID":42000,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42000","ServerKey":"pl181","X":589,"Y":320},{"Bonus":0,"Continent":"K53","ID":42001,"Name":"037","PlayerID":9280477,"Points":6088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42001","ServerKey":"pl181","X":303,"Y":544},{"Bonus":8,"Continent":"K64","ID":42002,"Name":"0001 Osada koczownikĂłw","PlayerID":849037407,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42002","ServerKey":"pl181","X":442,"Y":697},{"Bonus":0,"Continent":"K52","ID":42003,"Name":"C0127","PlayerID":8841266,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42003","ServerKey":"pl181","X":298,"Y":513},{"Bonus":0,"Continent":"K56","ID":42004,"Name":"BRZEG JORDANU | 006","PlayerID":9228039,"Points":8057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42004","ServerKey":"pl181","X":695,"Y":525},{"Bonus":0,"Continent":"K35","ID":42005,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42005","ServerKey":"pl181","X":528,"Y":302},{"Bonus":0,"Continent":"K64","ID":42006,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42006","ServerKey":"pl181","X":428,"Y":682},{"Bonus":0,"Continent":"K64","ID":42007,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":5965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42007","ServerKey":"pl181","X":494,"Y":645},{"Bonus":0,"Continent":"K43","ID":42008,"Name":"Out of Touch","PlayerID":698962117,"Points":6973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42008","ServerKey":"pl181","X":315,"Y":430},{"Bonus":3,"Continent":"K53","ID":42009,"Name":"010","PlayerID":9280477,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42009","ServerKey":"pl181","X":300,"Y":545},{"Bonus":0,"Continent":"K34","ID":42010,"Name":"#0036 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42010","ServerKey":"pl181","X":464,"Y":345},{"Bonus":0,"Continent":"K33","ID":42011,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42011","ServerKey":"pl181","X":345,"Y":365},{"Bonus":0,"Continent":"K53","ID":42012,"Name":"C0094","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42012","ServerKey":"pl181","X":300,"Y":523},{"Bonus":0,"Continent":"K36","ID":42013,"Name":"Moldor 11","PlayerID":849049045,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42013","ServerKey":"pl181","X":635,"Y":359},{"Bonus":0,"Continent":"K24","ID":42014,"Name":"Winterhome.063","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42014","ServerKey":"pl181","X":495,"Y":299},{"Bonus":0,"Continent":"K36","ID":42016,"Name":"*W003","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42016","ServerKey":"pl181","X":663,"Y":379},{"Bonus":0,"Continent":"K66","ID":42017,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42017","ServerKey":"pl181","X":614,"Y":663},{"Bonus":0,"Continent":"K33","ID":42018,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42018","ServerKey":"pl181","X":335,"Y":390},{"Bonus":0,"Continent":"K64","ID":42019,"Name":"019 B","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42019","ServerKey":"pl181","X":402,"Y":678},{"Bonus":0,"Continent":"K43","ID":42020,"Name":"Wioska barbarzyƄska","PlayerID":8259895,"Points":3394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42020","ServerKey":"pl181","X":311,"Y":426},{"Bonus":0,"Continent":"K43","ID":42021,"Name":"009","PlayerID":8259895,"Points":6052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42021","ServerKey":"pl181","X":311,"Y":425},{"Bonus":0,"Continent":"K34","ID":42022,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42022","ServerKey":"pl181","X":409,"Y":317},{"Bonus":0,"Continent":"K42","ID":42023,"Name":"[0214]","PlayerID":8630972,"Points":7414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42023","ServerKey":"pl181","X":298,"Y":498},{"Bonus":0,"Continent":"K52","ID":42024,"Name":"Dream on","PlayerID":698962117,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42024","ServerKey":"pl181","X":298,"Y":503},{"Bonus":0,"Continent":"K56","ID":42025,"Name":"O07 Evora","PlayerID":699272880,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42025","ServerKey":"pl181","X":660,"Y":514},{"Bonus":0,"Continent":"K34","ID":42026,"Name":"[0159]","PlayerID":8630972,"Points":8809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42026","ServerKey":"pl181","X":450,"Y":302},{"Bonus":0,"Continent":"K43","ID":42027,"Name":"Melon4","PlayerID":699659708,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42027","ServerKey":"pl181","X":310,"Y":433},{"Bonus":0,"Continent":"K43","ID":42028,"Name":"Ranczo2","PlayerID":699706955,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42028","ServerKey":"pl181","X":303,"Y":455},{"Bonus":0,"Continent":"K43","ID":42029,"Name":"Borowy grĂłd","PlayerID":699377401,"Points":6081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42029","ServerKey":"pl181","X":320,"Y":416},{"Bonus":0,"Continent":"K63","ID":42031,"Name":"Domek JOJO- 3","PlayerID":699269923,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42031","ServerKey":"pl181","X":362,"Y":642},{"Bonus":0,"Continent":"K34","ID":42032,"Name":"037","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42032","ServerKey":"pl181","X":457,"Y":300},{"Bonus":0,"Continent":"K36","ID":42033,"Name":"008","PlayerID":9291984,"Points":4861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42033","ServerKey":"pl181","X":639,"Y":353},{"Bonus":0,"Continent":"K57","ID":42034,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42034","ServerKey":"pl181","X":701,"Y":541},{"Bonus":0,"Continent":"K46","ID":42035,"Name":"010. Bielany","PlayerID":7494497,"Points":10080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42035","ServerKey":"pl181","X":692,"Y":473},{"Bonus":0,"Continent":"K36","ID":42036,"Name":"!36 65 Voitinel","PlayerID":698361257,"Points":8102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42036","ServerKey":"pl181","X":655,"Y":366},{"Bonus":0,"Continent":"K42","ID":42037,"Name":"Kaplica","PlayerID":8048374,"Points":5453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42037","ServerKey":"pl181","X":298,"Y":478},{"Bonus":0,"Continent":"K33","ID":42038,"Name":"Szlachcic","PlayerID":3484132,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42038","ServerKey":"pl181","X":381,"Y":344},{"Bonus":0,"Continent":"K33","ID":42039,"Name":"017. Lincoln","PlayerID":7775311,"Points":5651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42039","ServerKey":"pl181","X":381,"Y":341},{"Bonus":0,"Continent":"K63","ID":42040,"Name":"Ziemianka Ruskich","PlayerID":6948793,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42040","ServerKey":"pl181","X":359,"Y":642},{"Bonus":0,"Continent":"K63","ID":42041,"Name":"O035","PlayerID":272173,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42041","ServerKey":"pl181","X":345,"Y":628},{"Bonus":0,"Continent":"K36","ID":42042,"Name":"Daleko","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42042","ServerKey":"pl181","X":651,"Y":372},{"Bonus":0,"Continent":"K47","ID":42043,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":6971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42043","ServerKey":"pl181","X":702,"Y":467},{"Bonus":0,"Continent":"K34","ID":42044,"Name":"[0093]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42044","ServerKey":"pl181","X":441,"Y":307},{"Bonus":0,"Continent":"K46","ID":42045,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":7034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42045","ServerKey":"pl181","X":695,"Y":437},{"Bonus":0,"Continent":"K35","ID":42046,"Name":"AAA","PlayerID":1006847,"Points":6259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42046","ServerKey":"pl181","X":550,"Y":303},{"Bonus":0,"Continent":"K63","ID":42047,"Name":"O096","PlayerID":272173,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42047","ServerKey":"pl181","X":333,"Y":618},{"Bonus":0,"Continent":"K53","ID":42049,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":4262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42049","ServerKey":"pl181","X":323,"Y":588},{"Bonus":0,"Continent":"K43","ID":42050,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42050","ServerKey":"pl181","X":302,"Y":494},{"Bonus":0,"Continent":"K43","ID":42051,"Name":"z181_22","PlayerID":393668,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42051","ServerKey":"pl181","X":309,"Y":437},{"Bonus":0,"Continent":"K65","ID":42052,"Name":"Zajkdn","PlayerID":849098688,"Points":9290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42052","ServerKey":"pl181","X":546,"Y":698},{"Bonus":0,"Continent":"K64","ID":42053,"Name":"042. Lekcje","PlayerID":848928624,"Points":3805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42053","ServerKey":"pl181","X":453,"Y":699},{"Bonus":0,"Continent":"K34","ID":42054,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42054","ServerKey":"pl181","X":484,"Y":301},{"Bonus":0,"Continent":"K53","ID":42055,"Name":"Wonderwall","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42055","ServerKey":"pl181","X":311,"Y":555},{"Bonus":0,"Continent":"K57","ID":42056,"Name":"004","PlayerID":7418168,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42056","ServerKey":"pl181","X":701,"Y":506},{"Bonus":0,"Continent":"K66","ID":42057,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42057","ServerKey":"pl181","X":664,"Y":618},{"Bonus":0,"Continent":"K46","ID":42058,"Name":"037 Wioska barbarzyƄska","PlayerID":849098769,"Points":6548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42058","ServerKey":"pl181","X":693,"Y":443},{"Bonus":0,"Continent":"K66","ID":42059,"Name":"###075###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42059","ServerKey":"pl181","X":600,"Y":677},{"Bonus":0,"Continent":"K63","ID":42060,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42060","ServerKey":"pl181","X":333,"Y":605},{"Bonus":0,"Continent":"K56","ID":42061,"Name":"Jezioro Turawskie","PlayerID":848932879,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42061","ServerKey":"pl181","X":693,"Y":546},{"Bonus":0,"Continent":"K53","ID":42062,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42062","ServerKey":"pl181","X":301,"Y":518},{"Bonus":0,"Continent":"K33","ID":42063,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42063","ServerKey":"pl181","X":337,"Y":386},{"Bonus":0,"Continent":"K64","ID":42064,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42064","ServerKey":"pl181","X":413,"Y":678},{"Bonus":0,"Continent":"K66","ID":42065,"Name":"Wiejska4","PlayerID":6528152,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42065","ServerKey":"pl181","X":606,"Y":670},{"Bonus":0,"Continent":"K52","ID":42066,"Name":"[0211]","PlayerID":8630972,"Points":7758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42066","ServerKey":"pl181","X":298,"Y":504},{"Bonus":0,"Continent":"K53","ID":42067,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":1924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42067","ServerKey":"pl181","X":302,"Y":552},{"Bonus":0,"Continent":"K33","ID":42068,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42068","ServerKey":"pl181","X":344,"Y":367},{"Bonus":0,"Continent":"K65","ID":42069,"Name":"0336","PlayerID":698659980,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42069","ServerKey":"pl181","X":563,"Y":695},{"Bonus":0,"Continent":"K75","ID":42070,"Name":"Wyspa_40","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42070","ServerKey":"pl181","X":506,"Y":700},{"Bonus":0,"Continent":"K75","ID":42071,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42071","ServerKey":"pl181","X":505,"Y":702},{"Bonus":6,"Continent":"K33","ID":42072,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42072","ServerKey":"pl181","X":335,"Y":379},{"Bonus":0,"Continent":"K36","ID":42073,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":2987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42073","ServerKey":"pl181","X":643,"Y":361},{"Bonus":0,"Continent":"K34","ID":42074,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42074","ServerKey":"pl181","X":483,"Y":303},{"Bonus":0,"Continent":"K53","ID":42075,"Name":"009. Xin trea","PlayerID":3475079,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42075","ServerKey":"pl181","X":325,"Y":593},{"Bonus":0,"Continent":"K63","ID":42076,"Name":"Bartosiak prof.","PlayerID":272173,"Points":5783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42076","ServerKey":"pl181","X":355,"Y":642},{"Bonus":0,"Continent":"K33","ID":42078,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42078","ServerKey":"pl181","X":379,"Y":337},{"Bonus":0,"Continent":"K63","ID":42079,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42079","ServerKey":"pl181","X":371,"Y":657},{"Bonus":0,"Continent":"K36","ID":42080,"Name":"055","PlayerID":849010255,"Points":3552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42080","ServerKey":"pl181","X":631,"Y":345},{"Bonus":0,"Continent":"K34","ID":42081,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42081","ServerKey":"pl181","X":418,"Y":316},{"Bonus":0,"Continent":"K33","ID":42082,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42082","ServerKey":"pl181","X":328,"Y":389},{"Bonus":0,"Continent":"K33","ID":42083,"Name":"SoƂtys Wsi WojTool","PlayerID":849027025,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42083","ServerKey":"pl181","X":365,"Y":352},{"Bonus":0,"Continent":"K34","ID":42084,"Name":"0015","PlayerID":2321390,"Points":5127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42084","ServerKey":"pl181","X":423,"Y":316},{"Bonus":0,"Continent":"K53","ID":42085,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42085","ServerKey":"pl181","X":310,"Y":573},{"Bonus":0,"Continent":"K52","ID":42086,"Name":"C0212","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42086","ServerKey":"pl181","X":299,"Y":527},{"Bonus":0,"Continent":"K34","ID":42087,"Name":"Podgrodzie","PlayerID":849048216,"Points":3544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42087","ServerKey":"pl181","X":479,"Y":345},{"Bonus":9,"Continent":"K34","ID":42088,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42088","ServerKey":"pl181","X":416,"Y":316},{"Bonus":0,"Continent":"K52","ID":42089,"Name":"C0204","PlayerID":8841266,"Points":9573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42089","ServerKey":"pl181","X":299,"Y":529},{"Bonus":0,"Continent":"K66","ID":42090,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42090","ServerKey":"pl181","X":657,"Y":631},{"Bonus":0,"Continent":"K46","ID":42091,"Name":"0064","PlayerID":698416970,"Points":5375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42091","ServerKey":"pl181","X":687,"Y":419},{"Bonus":0,"Continent":"K46","ID":42092,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42092","ServerKey":"pl181","X":692,"Y":434},{"Bonus":0,"Continent":"K63","ID":42093,"Name":"Wioska eli-sa","PlayerID":6180190,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42093","ServerKey":"pl181","X":331,"Y":616},{"Bonus":0,"Continent":"K64","ID":42094,"Name":"0015 Wioska barbarzyƄska","PlayerID":849037407,"Points":10348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42094","ServerKey":"pl181","X":448,"Y":689},{"Bonus":0,"Continent":"K33","ID":42095,"Name":"SoƂty Wsi WojTool","PlayerID":849027025,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42095","ServerKey":"pl181","X":369,"Y":349},{"Bonus":0,"Continent":"K75","ID":42096,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42096","ServerKey":"pl181","X":538,"Y":701},{"Bonus":5,"Continent":"K47","ID":42097,"Name":"003","PlayerID":942959,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42097","ServerKey":"pl181","X":702,"Y":498},{"Bonus":0,"Continent":"K66","ID":42099,"Name":"KOS","PlayerID":848890012,"Points":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42099","ServerKey":"pl181","X":675,"Y":608},{"Bonus":0,"Continent":"K43","ID":42100,"Name":"Ranczo5","PlayerID":699706955,"Points":2747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42100","ServerKey":"pl181","X":304,"Y":448},{"Bonus":0,"Continent":"K43","ID":42101,"Name":"Z03","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42101","ServerKey":"pl181","X":317,"Y":416},{"Bonus":0,"Continent":"K24","ID":42102,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42102","ServerKey":"pl181","X":498,"Y":295},{"Bonus":0,"Continent":"K63","ID":42103,"Name":"A 017","PlayerID":272173,"Points":7992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42103","ServerKey":"pl181","X":352,"Y":629},{"Bonus":0,"Continent":"K36","ID":42104,"Name":"XDX","PlayerID":699098531,"Points":8655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42104","ServerKey":"pl181","X":612,"Y":332},{"Bonus":0,"Continent":"K35","ID":42105,"Name":"Wioska Miczenso","PlayerID":849096123,"Points":4733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42105","ServerKey":"pl181","X":556,"Y":334},{"Bonus":0,"Continent":"K74","ID":42106,"Name":"038. Night Raid","PlayerID":699684062,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42106","ServerKey":"pl181","X":486,"Y":702},{"Bonus":0,"Continent":"K36","ID":42107,"Name":".Y.","PlayerID":7340529,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42107","ServerKey":"pl181","X":645,"Y":366},{"Bonus":0,"Continent":"K33","ID":42108,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42108","ServerKey":"pl181","X":328,"Y":398},{"Bonus":0,"Continent":"K33","ID":42109,"Name":"zƂoto InkĂłw","PlayerID":849068108,"Points":8753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42109","ServerKey":"pl181","X":370,"Y":358},{"Bonus":0,"Continent":"K56","ID":42110,"Name":"Bocianikson021","PlayerID":7528491,"Points":3402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42110","ServerKey":"pl181","X":689,"Y":563},{"Bonus":0,"Continent":"K66","ID":42111,"Name":"08-oss","PlayerID":848921861,"Points":9437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42111","ServerKey":"pl181","X":671,"Y":614},{"Bonus":0,"Continent":"K36","ID":42112,"Name":"XDX","PlayerID":699098531,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42112","ServerKey":"pl181","X":604,"Y":326},{"Bonus":0,"Continent":"K65","ID":42113,"Name":"###076###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42113","ServerKey":"pl181","X":583,"Y":683},{"Bonus":0,"Continent":"K36","ID":42114,"Name":"013","PlayerID":698635863,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42114","ServerKey":"pl181","X":670,"Y":387},{"Bonus":0,"Continent":"K66","ID":42115,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42115","ServerKey":"pl181","X":648,"Y":633},{"Bonus":9,"Continent":"K46","ID":42116,"Name":"Osada koczownikĂłw","PlayerID":699429153,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42116","ServerKey":"pl181","X":698,"Y":478},{"Bonus":0,"Continent":"K47","ID":42117,"Name":"Borubar 3","PlayerID":699413581,"Points":3719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42117","ServerKey":"pl181","X":705,"Y":483},{"Bonus":0,"Continent":"K33","ID":42118,"Name":"0014","PlayerID":699644448,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42118","ServerKey":"pl181","X":358,"Y":353},{"Bonus":0,"Continent":"K75","ID":42119,"Name":"016 pechowiec","PlayerID":849093426,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42119","ServerKey":"pl181","X":540,"Y":701},{"Bonus":0,"Continent":"K34","ID":42120,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42120","ServerKey":"pl181","X":414,"Y":313},{"Bonus":0,"Continent":"K53","ID":42121,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42121","ServerKey":"pl181","X":310,"Y":552},{"Bonus":0,"Continent":"K56","ID":42122,"Name":"Kamionka Silesia","PlayerID":848932879,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42122","ServerKey":"pl181","X":695,"Y":529},{"Bonus":0,"Continent":"K36","ID":42123,"Name":"wioska","PlayerID":9291984,"Points":8517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42123","ServerKey":"pl181","X":633,"Y":347},{"Bonus":0,"Continent":"K66","ID":42124,"Name":"HAPERT","PlayerID":848909464,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42124","ServerKey":"pl181","X":624,"Y":660},{"Bonus":0,"Continent":"K65","ID":42125,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42125","ServerKey":"pl181","X":508,"Y":699},{"Bonus":0,"Continent":"K66","ID":42126,"Name":"HAPERT","PlayerID":848909464,"Points":10521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42126","ServerKey":"pl181","X":627,"Y":659},{"Bonus":0,"Continent":"K34","ID":42127,"Name":"@05@","PlayerID":699483429,"Points":8227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42127","ServerKey":"pl181","X":406,"Y":327},{"Bonus":8,"Continent":"K53","ID":42128,"Name":"Z 001 WrocƂaw","PlayerID":849084740,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42128","ServerKey":"pl181","X":328,"Y":594},{"Bonus":0,"Continent":"K24","ID":42129,"Name":"Morska","PlayerID":698848373,"Points":3707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42129","ServerKey":"pl181","X":486,"Y":295},{"Bonus":0,"Continent":"K65","ID":42130,"Name":"082 invidia","PlayerID":849093426,"Points":6137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42130","ServerKey":"pl181","X":516,"Y":696},{"Bonus":0,"Continent":"K66","ID":42131,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42131","ServerKey":"pl181","X":658,"Y":623},{"Bonus":3,"Continent":"K66","ID":42132,"Name":"CALL 1068","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42132","ServerKey":"pl181","X":656,"Y":627},{"Bonus":0,"Continent":"K33","ID":42134,"Name":"Wioska barbarzyƄska","PlayerID":699406776,"Points":2353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42134","ServerKey":"pl181","X":397,"Y":332},{"Bonus":0,"Continent":"K33","ID":42135,"Name":"Chata Pustelnika","PlayerID":848903690,"Points":4335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42135","ServerKey":"pl181","X":375,"Y":351},{"Bonus":0,"Continent":"K35","ID":42137,"Name":"Z003","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42137","ServerKey":"pl181","X":528,"Y":301},{"Bonus":0,"Continent":"K47","ID":42138,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42138","ServerKey":"pl181","X":704,"Y":486},{"Bonus":0,"Continent":"K63","ID":42139,"Name":"A 031","PlayerID":272173,"Points":3768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42139","ServerKey":"pl181","X":351,"Y":629},{"Bonus":0,"Continent":"K52","ID":42140,"Name":"Dream on","PlayerID":698962117,"Points":4910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42140","ServerKey":"pl181","X":299,"Y":506},{"Bonus":0,"Continent":"K56","ID":42141,"Name":"Bocianikson023","PlayerID":7528491,"Points":4260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42141","ServerKey":"pl181","X":693,"Y":560},{"Bonus":0,"Continent":"K42","ID":42142,"Name":"Dream on","PlayerID":698962117,"Points":6718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42142","ServerKey":"pl181","X":299,"Y":491},{"Bonus":0,"Continent":"K33","ID":42143,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42143","ServerKey":"pl181","X":387,"Y":334},{"Bonus":0,"Continent":"K35","ID":42144,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42144","ServerKey":"pl181","X":562,"Y":313},{"Bonus":0,"Continent":"K56","ID":42145,"Name":"Wioska 22","PlayerID":849101162,"Points":5970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42145","ServerKey":"pl181","X":679,"Y":591},{"Bonus":0,"Continent":"K36","ID":42146,"Name":"Wioska barbarzyƄska","PlayerID":698635863,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42146","ServerKey":"pl181","X":662,"Y":384},{"Bonus":0,"Continent":"K65","ID":42147,"Name":"Polesie","PlayerID":849100612,"Points":4265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42147","ServerKey":"pl181","X":586,"Y":679},{"Bonus":0,"Continent":"K47","ID":42148,"Name":"021. WesoƂa","PlayerID":7494497,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42148","ServerKey":"pl181","X":700,"Y":476},{"Bonus":0,"Continent":"K35","ID":42149,"Name":"Wioska podbita","PlayerID":849063793,"Points":2926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42149","ServerKey":"pl181","X":590,"Y":326},{"Bonus":0,"Continent":"K33","ID":42150,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42150","ServerKey":"pl181","X":336,"Y":384},{"Bonus":0,"Continent":"K53","ID":42151,"Name":"C0189","PlayerID":8841266,"Points":7415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42151","ServerKey":"pl181","X":303,"Y":533},{"Bonus":0,"Continent":"K25","ID":42152,"Name":"Z002","PlayerID":7758085,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42152","ServerKey":"pl181","X":527,"Y":299},{"Bonus":0,"Continent":"K35","ID":42153,"Name":"21. Another love","PlayerID":849099696,"Points":8830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42153","ServerKey":"pl181","X":554,"Y":310},{"Bonus":0,"Continent":"K25","ID":42154,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42154","ServerKey":"pl181","X":523,"Y":298},{"Bonus":0,"Continent":"K57","ID":42155,"Name":"067 ZieloneOczko1","PlayerID":2135129,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42155","ServerKey":"pl181","X":705,"Y":514},{"Bonus":0,"Continent":"K53","ID":42156,"Name":"003.","PlayerID":3475079,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42156","ServerKey":"pl181","X":322,"Y":589},{"Bonus":0,"Continent":"K34","ID":42157,"Name":"038.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42157","ServerKey":"pl181","X":435,"Y":310},{"Bonus":0,"Continent":"K66","ID":42158,"Name":"Wiejska5","PlayerID":6528152,"Points":8615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42158","ServerKey":"pl181","X":605,"Y":671},{"Bonus":0,"Continent":"K52","ID":42159,"Name":"[0219]","PlayerID":8630972,"Points":6646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42159","ServerKey":"pl181","X":295,"Y":512},{"Bonus":0,"Continent":"K53","ID":42160,"Name":"C0080","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42160","ServerKey":"pl181","X":301,"Y":519},{"Bonus":0,"Continent":"K35","ID":42161,"Name":"AAA","PlayerID":1006847,"Points":5452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42161","ServerKey":"pl181","X":535,"Y":303},{"Bonus":0,"Continent":"K46","ID":42162,"Name":"Gattacka","PlayerID":699298370,"Points":9230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42162","ServerKey":"pl181","X":690,"Y":428},{"Bonus":0,"Continent":"K56","ID":42163,"Name":"A06","PlayerID":848995478,"Points":7979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42163","ServerKey":"pl181","X":697,"Y":555},{"Bonus":0,"Continent":"K53","ID":42164,"Name":"Elo elo 4","PlayerID":699016994,"Points":9679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42164","ServerKey":"pl181","X":311,"Y":580},{"Bonus":0,"Continent":"K53","ID":42165,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42165","ServerKey":"pl181","X":312,"Y":570},{"Bonus":0,"Continent":"K65","ID":42166,"Name":"0321","PlayerID":698659980,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42166","ServerKey":"pl181","X":566,"Y":690},{"Bonus":0,"Continent":"K63","ID":42167,"Name":"Taran","PlayerID":6180190,"Points":6389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42167","ServerKey":"pl181","X":330,"Y":602},{"Bonus":0,"Continent":"K63","ID":42169,"Name":"C102","PlayerID":699383279,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42169","ServerKey":"pl181","X":366,"Y":646},{"Bonus":0,"Continent":"K35","ID":42170,"Name":"Huracane","PlayerID":849100680,"Points":6421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42170","ServerKey":"pl181","X":564,"Y":306},{"Bonus":0,"Continent":"K53","ID":42171,"Name":"C0090","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42171","ServerKey":"pl181","X":306,"Y":530},{"Bonus":0,"Continent":"K66","ID":42172,"Name":"ruiny","PlayerID":7038651,"Points":2529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42172","ServerKey":"pl181","X":632,"Y":650},{"Bonus":0,"Continent":"K53","ID":42173,"Name":"C0004","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42173","ServerKey":"pl181","X":304,"Y":522},{"Bonus":0,"Continent":"K45","ID":42174,"Name":"Gattacka","PlayerID":699298370,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42174","ServerKey":"pl181","X":599,"Y":428},{"Bonus":0,"Continent":"K65","ID":42175,"Name":"###012###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42175","ServerKey":"pl181","X":594,"Y":683},{"Bonus":0,"Continent":"K65","ID":42176,"Name":"003.","PlayerID":1270916,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42176","ServerKey":"pl181","X":579,"Y":658},{"Bonus":0,"Continent":"K43","ID":42177,"Name":"z181_21","PlayerID":393668,"Points":8876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42177","ServerKey":"pl181","X":310,"Y":437},{"Bonus":0,"Continent":"K46","ID":42179,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":5088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42179","ServerKey":"pl181","X":696,"Y":454},{"Bonus":0,"Continent":"K66","ID":42180,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42180","ServerKey":"pl181","X":626,"Y":662},{"Bonus":0,"Continent":"K36","ID":42181,"Name":"014","PlayerID":698635863,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42181","ServerKey":"pl181","X":658,"Y":379},{"Bonus":0,"Continent":"K45","ID":42182,"Name":"050","PlayerID":7271812,"Points":9403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42182","ServerKey":"pl181","X":565,"Y":403},{"Bonus":0,"Continent":"K34","ID":42183,"Name":"027.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42183","ServerKey":"pl181","X":430,"Y":308},{"Bonus":0,"Continent":"K25","ID":42184,"Name":"Wadowice","PlayerID":699208929,"Points":3497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42184","ServerKey":"pl181","X":509,"Y":297},{"Bonus":0,"Continent":"K24","ID":42185,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42185","ServerKey":"pl181","X":492,"Y":295},{"Bonus":5,"Continent":"K36","ID":42186,"Name":"100","PlayerID":7340529,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42186","ServerKey":"pl181","X":651,"Y":370},{"Bonus":0,"Continent":"K36","ID":42187,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42187","ServerKey":"pl181","X":671,"Y":390},{"Bonus":0,"Continent":"K56","ID":42188,"Name":"B08","PlayerID":848995478,"Points":10702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42188","ServerKey":"pl181","X":692,"Y":551},{"Bonus":0,"Continent":"K33","ID":42189,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42189","ServerKey":"pl181","X":348,"Y":365},{"Bonus":0,"Continent":"K47","ID":42190,"Name":"Borsuk","PlayerID":849099640,"Points":4400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42190","ServerKey":"pl181","X":703,"Y":484},{"Bonus":0,"Continent":"K53","ID":42191,"Name":"C0136","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42191","ServerKey":"pl181","X":307,"Y":533},{"Bonus":0,"Continent":"K33","ID":42192,"Name":"Zaplecze Barba 030","PlayerID":699796330,"Points":4892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42192","ServerKey":"pl181","X":375,"Y":347},{"Bonus":0,"Continent":"K35","ID":42193,"Name":"15. Blockchain","PlayerID":699072129,"Points":8688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42193","ServerKey":"pl181","X":553,"Y":311},{"Bonus":0,"Continent":"K34","ID":42194,"Name":"#0131 Thorus5","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42194","ServerKey":"pl181","X":476,"Y":326},{"Bonus":0,"Continent":"K35","ID":42195,"Name":"XXXX","PlayerID":849054951,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42195","ServerKey":"pl181","X":564,"Y":305},{"Bonus":0,"Continent":"K36","ID":42196,"Name":"-023- XXX","PlayerID":9291984,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42196","ServerKey":"pl181","X":628,"Y":349},{"Bonus":0,"Continent":"K42","ID":42197,"Name":"Nierada","PlayerID":8048374,"Points":5641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42197","ServerKey":"pl181","X":296,"Y":475},{"Bonus":0,"Continent":"K36","ID":42199,"Name":"village","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42199","ServerKey":"pl181","X":641,"Y":361},{"Bonus":0,"Continent":"K36","ID":42200,"Name":"Machnacz","PlayerID":699491076,"Points":3297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42200","ServerKey":"pl181","X":667,"Y":385},{"Bonus":0,"Continent":"K33","ID":42201,"Name":"Szlachcic","PlayerID":3484132,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42201","ServerKey":"pl181","X":384,"Y":339},{"Bonus":0,"Continent":"K36","ID":42202,"Name":"FFF","PlayerID":8675636,"Points":7571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42202","ServerKey":"pl181","X":643,"Y":353},{"Bonus":0,"Continent":"K46","ID":42203,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42203","ServerKey":"pl181","X":693,"Y":432},{"Bonus":0,"Continent":"K36","ID":42204,"Name":"wioska","PlayerID":9291984,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42204","ServerKey":"pl181","X":633,"Y":348},{"Bonus":0,"Continent":"K52","ID":42205,"Name":"EO EO","PlayerID":699697558,"Points":7637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42205","ServerKey":"pl181","X":298,"Y":500},{"Bonus":0,"Continent":"K34","ID":42206,"Name":"0147","PlayerID":699431255,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42206","ServerKey":"pl181","X":410,"Y":343},{"Bonus":0,"Continent":"K36","ID":42207,"Name":"Hofek 26.","PlayerID":699491076,"Points":5840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42207","ServerKey":"pl181","X":666,"Y":397},{"Bonus":0,"Continent":"K46","ID":42208,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":7769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42208","ServerKey":"pl181","X":681,"Y":413},{"Bonus":0,"Continent":"K56","ID":42209,"Name":"Didek","PlayerID":849070946,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42209","ServerKey":"pl181","X":689,"Y":577},{"Bonus":0,"Continent":"K64","ID":42210,"Name":"7.C","PlayerID":699777372,"Points":8616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42210","ServerKey":"pl181","X":453,"Y":693},{"Bonus":0,"Continent":"K63","ID":42211,"Name":"krecik 02 e","PlayerID":272173,"Points":4262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42211","ServerKey":"pl181","X":343,"Y":618},{"Bonus":0,"Continent":"K65","ID":42212,"Name":"ZbijĂłw DuĆŒy","PlayerID":698723158,"Points":6254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42212","ServerKey":"pl181","X":569,"Y":691},{"Bonus":0,"Continent":"K43","ID":42213,"Name":"Dzik 8","PlayerID":8366045,"Points":7016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42213","ServerKey":"pl181","X":305,"Y":434},{"Bonus":0,"Continent":"K53","ID":42214,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":4497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42214","ServerKey":"pl181","X":305,"Y":556},{"Bonus":0,"Continent":"K35","ID":42215,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42215","ServerKey":"pl181","X":585,"Y":316},{"Bonus":0,"Continent":"K63","ID":42216,"Name":"-002- sz","PlayerID":272173,"Points":2732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42216","ServerKey":"pl181","X":357,"Y":636},{"Bonus":0,"Continent":"K34","ID":42217,"Name":"032.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42217","ServerKey":"pl181","X":427,"Y":309},{"Bonus":0,"Continent":"K64","ID":42218,"Name":"psycha sitting","PlayerID":699736927,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42218","ServerKey":"pl181","X":403,"Y":673},{"Bonus":0,"Continent":"K42","ID":42219,"Name":"Dream on","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42219","ServerKey":"pl181","X":295,"Y":496},{"Bonus":0,"Continent":"K63","ID":42220,"Name":"Familia Kuzyni","PlayerID":7349282,"Points":3145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42220","ServerKey":"pl181","X":379,"Y":665},{"Bonus":0,"Continent":"K33","ID":42221,"Name":"Szlachcic","PlayerID":3484132,"Points":10149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42221","ServerKey":"pl181","X":384,"Y":338},{"Bonus":0,"Continent":"K46","ID":42222,"Name":"Osada 8","PlayerID":8675636,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42222","ServerKey":"pl181","X":679,"Y":407},{"Bonus":0,"Continent":"K66","ID":42223,"Name":"#K66 0014","PlayerID":699728159,"Points":5423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42223","ServerKey":"pl181","X":608,"Y":675},{"Bonus":0,"Continent":"K47","ID":42224,"Name":"063. hehehe2","PlayerID":7494497,"Points":9859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42224","ServerKey":"pl181","X":701,"Y":467},{"Bonus":0,"Continent":"K64","ID":42225,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42225","ServerKey":"pl181","X":400,"Y":675},{"Bonus":0,"Continent":"K63","ID":42226,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":6814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42226","ServerKey":"pl181","X":331,"Y":617},{"Bonus":0,"Continent":"K56","ID":42227,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":4914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42227","ServerKey":"pl181","X":695,"Y":562},{"Bonus":6,"Continent":"K35","ID":42228,"Name":"XDX","PlayerID":699098531,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42228","ServerKey":"pl181","X":598,"Y":327},{"Bonus":0,"Continent":"K46","ID":42229,"Name":"B#009","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42229","ServerKey":"pl181","X":690,"Y":457},{"Bonus":3,"Continent":"K63","ID":42230,"Name":"040 - Nowy Początek...","PlayerID":6948793,"Points":10946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42230","ServerKey":"pl181","X":364,"Y":645},{"Bonus":0,"Continent":"K75","ID":42232,"Name":"Ewa","PlayerID":699733501,"Points":6999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42232","ServerKey":"pl181","X":523,"Y":703},{"Bonus":9,"Continent":"K66","ID":42233,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42233","ServerKey":"pl181","X":660,"Y":628},{"Bonus":3,"Continent":"K24","ID":42235,"Name":"????","PlayerID":698489071,"Points":8038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42235","ServerKey":"pl181","X":486,"Y":299},{"Bonus":0,"Continent":"K57","ID":42237,"Name":"Ɓo baben!","PlayerID":8418489,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42237","ServerKey":"pl181","X":706,"Y":501},{"Bonus":0,"Continent":"K66","ID":42238,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42238","ServerKey":"pl181","X":655,"Y":632},{"Bonus":0,"Continent":"K63","ID":42239,"Name":"A 070","PlayerID":6948793,"Points":9236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42239","ServerKey":"pl181","X":364,"Y":646},{"Bonus":0,"Continent":"K34","ID":42240,"Name":"030.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42240","ServerKey":"pl181","X":433,"Y":306},{"Bonus":0,"Continent":"K56","ID":42241,"Name":"Didek","PlayerID":849070946,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42241","ServerKey":"pl181","X":684,"Y":583},{"Bonus":0,"Continent":"K63","ID":42243,"Name":"D.031","PlayerID":849088243,"Points":3055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42243","ServerKey":"pl181","X":381,"Y":658},{"Bonus":0,"Continent":"K53","ID":42244,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":3315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42244","ServerKey":"pl181","X":322,"Y":593},{"Bonus":0,"Continent":"K36","ID":42245,"Name":"!36 65 Frumosu","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42245","ServerKey":"pl181","X":653,"Y":369},{"Bonus":0,"Continent":"K56","ID":42246,"Name":"tomek016","PlayerID":8811880,"Points":4904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42246","ServerKey":"pl181","X":690,"Y":566},{"Bonus":0,"Continent":"K25","ID":42247,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42247","ServerKey":"pl181","X":528,"Y":298},{"Bonus":0,"Continent":"K63","ID":42248,"Name":"Wieƛ 06","PlayerID":9199885,"Points":3357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42248","ServerKey":"pl181","X":339,"Y":613},{"Bonus":0,"Continent":"K42","ID":42249,"Name":"Wuuuu","PlayerID":848981726,"Points":1838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42249","ServerKey":"pl181","X":298,"Y":488},{"Bonus":0,"Continent":"K35","ID":42250,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42250","ServerKey":"pl181","X":589,"Y":319},{"Bonus":0,"Continent":"K36","ID":42252,"Name":"!36 65 Milisauti","PlayerID":698361257,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42252","ServerKey":"pl181","X":656,"Y":368},{"Bonus":0,"Continent":"K53","ID":42253,"Name":"Hello there","PlayerID":6180190,"Points":3148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42253","ServerKey":"pl181","X":322,"Y":592},{"Bonus":0,"Continent":"K36","ID":42254,"Name":"XDX","PlayerID":699098531,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42254","ServerKey":"pl181","X":613,"Y":331},{"Bonus":0,"Continent":"K34","ID":42255,"Name":"#0220 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42255","ServerKey":"pl181","X":457,"Y":303},{"Bonus":0,"Continent":"K35","ID":42256,"Name":"B015","PlayerID":699208929,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42256","ServerKey":"pl181","X":519,"Y":301},{"Bonus":0,"Continent":"K46","ID":42257,"Name":"098 Kobe","PlayerID":7092442,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42257","ServerKey":"pl181","X":688,"Y":440},{"Bonus":0,"Continent":"K33","ID":42258,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42258","ServerKey":"pl181","X":378,"Y":336},{"Bonus":0,"Continent":"K35","ID":42260,"Name":"Tak2","PlayerID":699208929,"Points":4386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42260","ServerKey":"pl181","X":532,"Y":300},{"Bonus":0,"Continent":"K52","ID":42261,"Name":"Dream on","PlayerID":698962117,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42261","ServerKey":"pl181","X":297,"Y":500},{"Bonus":0,"Continent":"K56","ID":42263,"Name":"17. Mahakam","PlayerID":8976313,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42263","ServerKey":"pl181","X":699,"Y":536},{"Bonus":4,"Continent":"K43","ID":42264,"Name":"Z01","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42264","ServerKey":"pl181","X":316,"Y":411},{"Bonus":0,"Continent":"K56","ID":42265,"Name":"056. Lodowy Szczyt","PlayerID":1601917,"Points":8697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42265","ServerKey":"pl181","X":698,"Y":554},{"Bonus":0,"Continent":"K53","ID":42266,"Name":"Komornik F001","PlayerID":698290577,"Points":4441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42266","ServerKey":"pl181","X":313,"Y":563},{"Bonus":0,"Continent":"K33","ID":42267,"Name":"Wow10","PlayerID":698160606,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42267","ServerKey":"pl181","X":364,"Y":351},{"Bonus":0,"Continent":"K56","ID":42268,"Name":"TWIERDZA .:030:.","PlayerID":7154207,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42268","ServerKey":"pl181","X":685,"Y":576},{"Bonus":0,"Continent":"K53","ID":42269,"Name":"040","PlayerID":9280477,"Points":6132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42269","ServerKey":"pl181","X":305,"Y":541},{"Bonus":0,"Continent":"K33","ID":42270,"Name":"New Land 01","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42270","ServerKey":"pl181","X":330,"Y":388},{"Bonus":0,"Continent":"K56","ID":42271,"Name":"057. Latrun","PlayerID":1601917,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42271","ServerKey":"pl181","X":690,"Y":551},{"Bonus":0,"Continent":"K36","ID":42272,"Name":"014","PlayerID":9148043,"Points":5868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42272","ServerKey":"pl181","X":639,"Y":350},{"Bonus":0,"Continent":"K64","ID":42274,"Name":"024","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42274","ServerKey":"pl181","X":417,"Y":685},{"Bonus":0,"Continent":"K56","ID":42275,"Name":"Wioska barbarzyƄska","PlayerID":7154207,"Points":1605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42275","ServerKey":"pl181","X":683,"Y":582},{"Bonus":0,"Continent":"K63","ID":42277,"Name":"O092","PlayerID":272173,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42277","ServerKey":"pl181","X":340,"Y":627},{"Bonus":0,"Continent":"K35","ID":42278,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":8807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42278","ServerKey":"pl181","X":559,"Y":312},{"Bonus":0,"Continent":"K36","ID":42279,"Name":"10. Wioska Raukodel","PlayerID":7340529,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42279","ServerKey":"pl181","X":653,"Y":377},{"Bonus":0,"Continent":"K65","ID":42280,"Name":"- 208 - SS","PlayerID":849018239,"Points":7790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42280","ServerKey":"pl181","X":549,"Y":698},{"Bonus":6,"Continent":"K56","ID":42281,"Name":"Wioska Zorro 015","PlayerID":849080702,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42281","ServerKey":"pl181","X":677,"Y":595},{"Bonus":0,"Continent":"K66","ID":42282,"Name":"Camp Nou","PlayerID":849096631,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42282","ServerKey":"pl181","X":665,"Y":618},{"Bonus":0,"Continent":"K63","ID":42283,"Name":"009","PlayerID":6948793,"Points":6851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42283","ServerKey":"pl181","X":388,"Y":670},{"Bonus":0,"Continent":"K66","ID":42284,"Name":"S008","PlayerID":8627359,"Points":8298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42284","ServerKey":"pl181","X":602,"Y":676},{"Bonus":0,"Continent":"K75","ID":42285,"Name":"DALEKO","PlayerID":699827112,"Points":8670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42285","ServerKey":"pl181","X":531,"Y":703},{"Bonus":0,"Continent":"K64","ID":42286,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42286","ServerKey":"pl181","X":412,"Y":682},{"Bonus":0,"Continent":"K33","ID":42287,"Name":"0019","PlayerID":2321390,"Points":4270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42287","ServerKey":"pl181","X":399,"Y":322},{"Bonus":0,"Continent":"K52","ID":42288,"Name":"[0215]","PlayerID":8630972,"Points":7212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42288","ServerKey":"pl181","X":296,"Y":504},{"Bonus":0,"Continent":"K43","ID":42289,"Name":"marmag81/03d","PlayerID":1096254,"Points":7541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42289","ServerKey":"pl181","X":301,"Y":471},{"Bonus":0,"Continent":"K63","ID":42290,"Name":"A 062","PlayerID":699269923,"Points":8594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42290","ServerKey":"pl181","X":362,"Y":646},{"Bonus":0,"Continent":"K53","ID":42291,"Name":"031","PlayerID":849098688,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42291","ServerKey":"pl181","X":305,"Y":563},{"Bonus":0,"Continent":"K25","ID":42292,"Name":"Koziarowo","PlayerID":849100228,"Points":11911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42292","ServerKey":"pl181","X":503,"Y":297},{"Bonus":0,"Continent":"K74","ID":42293,"Name":"xzc","PlayerID":8827094,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42293","ServerKey":"pl181","X":496,"Y":701},{"Bonus":0,"Continent":"K56","ID":42294,"Name":"A10","PlayerID":848995478,"Points":5013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42294","ServerKey":"pl181","X":695,"Y":556},{"Bonus":0,"Continent":"K66","ID":42295,"Name":"HAPERT","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42295","ServerKey":"pl181","X":625,"Y":662},{"Bonus":0,"Continent":"K66","ID":42297,"Name":"Wioska barbarzyƄska","PlayerID":8224678,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42297","ServerKey":"pl181","X":674,"Y":603},{"Bonus":0,"Continent":"K36","ID":42298,"Name":"Barnab","PlayerID":699098531,"Points":8732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42298","ServerKey":"pl181","X":604,"Y":323},{"Bonus":0,"Continent":"K33","ID":42299,"Name":"0003","PlayerID":699644448,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42299","ServerKey":"pl181","X":357,"Y":357},{"Bonus":0,"Continent":"K63","ID":42300,"Name":"D.027","PlayerID":849088243,"Points":4095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42300","ServerKey":"pl181","X":385,"Y":668},{"Bonus":0,"Continent":"K66","ID":42301,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42301","ServerKey":"pl181","X":636,"Y":648},{"Bonus":0,"Continent":"K33","ID":42302,"Name":"ono11","PlayerID":7462660,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42302","ServerKey":"pl181","X":357,"Y":362},{"Bonus":0,"Continent":"K66","ID":42303,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42303","ServerKey":"pl181","X":664,"Y":619},{"Bonus":0,"Continent":"K66","ID":42304,"Name":"003. GĂłrki ƚrednie","PlayerID":849100994,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42304","ServerKey":"pl181","X":656,"Y":630},{"Bonus":0,"Continent":"K56","ID":42305,"Name":"NamysƂów","PlayerID":848932879,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42305","ServerKey":"pl181","X":697,"Y":553},{"Bonus":0,"Continent":"K65","ID":42306,"Name":"- 253 - SS","PlayerID":849018239,"Points":6680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42306","ServerKey":"pl181","X":552,"Y":697},{"Bonus":2,"Continent":"K34","ID":42307,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":10096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42307","ServerKey":"pl181","X":433,"Y":314},{"Bonus":0,"Continent":"K43","ID":42308,"Name":"ZA11","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42308","ServerKey":"pl181","X":319,"Y":415},{"Bonus":0,"Continent":"K24","ID":42309,"Name":".achim.","PlayerID":6936607,"Points":8306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42309","ServerKey":"pl181","X":475,"Y":298},{"Bonus":7,"Continent":"K63","ID":42310,"Name":"Osada koczownikĂłw","PlayerID":699269923,"Points":6878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42310","ServerKey":"pl181","X":386,"Y":663},{"Bonus":0,"Continent":"K54","ID":42311,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":4602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42311","ServerKey":"pl181","X":476,"Y":544},{"Bonus":0,"Continent":"K34","ID":42312,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":3086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42312","ServerKey":"pl181","X":402,"Y":329},{"Bonus":0,"Continent":"K56","ID":42313,"Name":"0028. Y -","PlayerID":7125212,"Points":3794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42313","ServerKey":"pl181","X":695,"Y":534},{"Bonus":0,"Continent":"K63","ID":42314,"Name":"Taran","PlayerID":6180190,"Points":10432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42314","ServerKey":"pl181","X":333,"Y":609},{"Bonus":0,"Continent":"K64","ID":42315,"Name":"075","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42315","ServerKey":"pl181","X":417,"Y":686},{"Bonus":0,"Continent":"K46","ID":42316,"Name":"059. Wioska barbarzyƄska","PlayerID":7494497,"Points":8972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42316","ServerKey":"pl181","X":696,"Y":464},{"Bonus":0,"Continent":"K63","ID":42317,"Name":"O033","PlayerID":272173,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42317","ServerKey":"pl181","X":342,"Y":630},{"Bonus":0,"Continent":"K34","ID":42318,"Name":".achim.","PlayerID":6936607,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42318","ServerKey":"pl181","X":472,"Y":300},{"Bonus":0,"Continent":"K33","ID":42319,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42319","ServerKey":"pl181","X":385,"Y":332},{"Bonus":0,"Continent":"K56","ID":42320,"Name":"Wioska 019","PlayerID":7999103,"Points":2037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42320","ServerKey":"pl181","X":678,"Y":594},{"Bonus":0,"Continent":"K35","ID":42321,"Name":"X 008","PlayerID":6384450,"Points":3160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42321","ServerKey":"pl181","X":595,"Y":324},{"Bonus":0,"Continent":"K35","ID":42322,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":7772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42322","ServerKey":"pl181","X":554,"Y":302},{"Bonus":0,"Continent":"K53","ID":42323,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42323","ServerKey":"pl181","X":327,"Y":597},{"Bonus":0,"Continent":"K56","ID":42324,"Name":"035 - Castellon de la Plana","PlayerID":698342159,"Points":6569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42324","ServerKey":"pl181","X":694,"Y":528},{"Bonus":0,"Continent":"K74","ID":42325,"Name":"A000","PlayerID":699725436,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42325","ServerKey":"pl181","X":471,"Y":703},{"Bonus":0,"Continent":"K53","ID":42326,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":7837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42326","ServerKey":"pl181","X":348,"Y":540},{"Bonus":0,"Continent":"K47","ID":42327,"Name":"057. Wioska barbarzyƄska","PlayerID":7494497,"Points":8969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42327","ServerKey":"pl181","X":700,"Y":467},{"Bonus":0,"Continent":"K36","ID":42328,"Name":"!36 86 Bainet","PlayerID":698361257,"Points":8333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42328","ServerKey":"pl181","X":660,"Y":381},{"Bonus":0,"Continent":"K36","ID":42329,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42329","ServerKey":"pl181","X":631,"Y":342},{"Bonus":0,"Continent":"K64","ID":42330,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42330","ServerKey":"pl181","X":406,"Y":678},{"Bonus":0,"Continent":"K33","ID":42331,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42331","ServerKey":"pl181","X":342,"Y":367},{"Bonus":0,"Continent":"K54","ID":42332,"Name":"KIELBA 122","PlayerID":699342219,"Points":7788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42332","ServerKey":"pl181","X":462,"Y":579},{"Bonus":0,"Continent":"K46","ID":42333,"Name":"037","PlayerID":699150527,"Points":7559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42333","ServerKey":"pl181","X":695,"Y":445},{"Bonus":0,"Continent":"K63","ID":42334,"Name":"013. Wioska barbarzyƄska","PlayerID":698908184,"Points":9504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42334","ServerKey":"pl181","X":348,"Y":636},{"Bonus":0,"Continent":"K53","ID":42335,"Name":"005","PlayerID":849097898,"Points":6088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42335","ServerKey":"pl181","X":308,"Y":561},{"Bonus":0,"Continent":"K53","ID":42336,"Name":"#001","PlayerID":849097898,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42336","ServerKey":"pl181","X":307,"Y":558},{"Bonus":0,"Continent":"K33","ID":42337,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":8971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42337","ServerKey":"pl181","X":354,"Y":354},{"Bonus":0,"Continent":"K46","ID":42338,"Name":"16.BTS","PlayerID":9180206,"Points":8141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42338","ServerKey":"pl181","X":684,"Y":422},{"Bonus":0,"Continent":"K42","ID":42339,"Name":"10,5","PlayerID":849095376,"Points":4734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42339","ServerKey":"pl181","X":296,"Y":476},{"Bonus":6,"Continent":"K36","ID":42340,"Name":"005","PlayerID":9148043,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42340","ServerKey":"pl181","X":648,"Y":362},{"Bonus":0,"Continent":"K56","ID":42341,"Name":"A12","PlayerID":848995478,"Points":6418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42341","ServerKey":"pl181","X":692,"Y":556},{"Bonus":0,"Continent":"K47","ID":42342,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42342","ServerKey":"pl181","X":703,"Y":469},{"Bonus":0,"Continent":"K56","ID":42343,"Name":"036 - Almeria","PlayerID":698342159,"Points":4507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42343","ServerKey":"pl181","X":696,"Y":520},{"Bonus":0,"Continent":"K33","ID":42344,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42344","ServerKey":"pl181","X":386,"Y":330},{"Bonus":0,"Continent":"K43","ID":42345,"Name":"Szlon","PlayerID":8048374,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42345","ServerKey":"pl181","X":303,"Y":479},{"Bonus":0,"Continent":"K52","ID":42346,"Name":"Arczi997 02","PlayerID":849055181,"Points":4470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42346","ServerKey":"pl181","X":297,"Y":515},{"Bonus":0,"Continent":"K33","ID":42347,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42347","ServerKey":"pl181","X":323,"Y":399},{"Bonus":0,"Continent":"K53","ID":42348,"Name":"Rogatki","PlayerID":699265922,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42348","ServerKey":"pl181","X":311,"Y":559},{"Bonus":0,"Continent":"K56","ID":42349,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":7551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42349","ServerKey":"pl181","X":677,"Y":544},{"Bonus":0,"Continent":"K66","ID":42350,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42350","ServerKey":"pl181","X":661,"Y":628},{"Bonus":0,"Continent":"K53","ID":42351,"Name":"038","PlayerID":9280477,"Points":6468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42351","ServerKey":"pl181","X":304,"Y":543},{"Bonus":0,"Continent":"K46","ID":42352,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42352","ServerKey":"pl181","X":675,"Y":402},{"Bonus":0,"Continent":"K74","ID":42353,"Name":"005. Night Raid","PlayerID":699684062,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42353","ServerKey":"pl181","X":490,"Y":704},{"Bonus":0,"Continent":"K74","ID":42354,"Name":"FP004","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42354","ServerKey":"pl181","X":493,"Y":704},{"Bonus":0,"Continent":"K35","ID":42355,"Name":"B010","PlayerID":699208929,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42355","ServerKey":"pl181","X":517,"Y":304},{"Bonus":0,"Continent":"K65","ID":42356,"Name":"-01-","PlayerID":7860453,"Points":11188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42356","ServerKey":"pl181","X":562,"Y":693},{"Bonus":0,"Continent":"K34","ID":42357,"Name":"=0001=","PlayerID":698231772,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42357","ServerKey":"pl181","X":403,"Y":319},{"Bonus":0,"Continent":"K75","ID":42358,"Name":"026 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42358","ServerKey":"pl181","X":541,"Y":700},{"Bonus":0,"Continent":"K64","ID":42359,"Name":"C001","PlayerID":8954402,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42359","ServerKey":"pl181","X":468,"Y":699},{"Bonus":0,"Continent":"K64","ID":42360,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42360","ServerKey":"pl181","X":422,"Y":685},{"Bonus":0,"Continent":"K42","ID":42361,"Name":"Ć»ubr","PlayerID":849095376,"Points":8634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42361","ServerKey":"pl181","X":297,"Y":477},{"Bonus":0,"Continent":"K43","ID":42362,"Name":"z181_18","PlayerID":393668,"Points":8648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42362","ServerKey":"pl181","X":307,"Y":443},{"Bonus":0,"Continent":"K34","ID":42363,"Name":"034","PlayerID":2502956,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42363","ServerKey":"pl181","X":454,"Y":306},{"Bonus":0,"Continent":"K35","ID":42364,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":3564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42364","ServerKey":"pl181","X":559,"Y":305},{"Bonus":0,"Continent":"K63","ID":42365,"Name":"O091","PlayerID":272173,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42365","ServerKey":"pl181","X":338,"Y":627},{"Bonus":0,"Continent":"K64","ID":42366,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42366","ServerKey":"pl181","X":411,"Y":681},{"Bonus":0,"Continent":"K43","ID":42367,"Name":"Dream on","PlayerID":698962117,"Points":8870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42367","ServerKey":"pl181","X":300,"Y":487},{"Bonus":0,"Continent":"K35","ID":42368,"Name":"AAA","PlayerID":1006847,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42368","ServerKey":"pl181","X":539,"Y":308},{"Bonus":0,"Continent":"K34","ID":42369,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42369","ServerKey":"pl181","X":405,"Y":318},{"Bonus":0,"Continent":"K75","ID":42370,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42370","ServerKey":"pl181","X":519,"Y":704},{"Bonus":0,"Continent":"K36","ID":42371,"Name":"A 017","PlayerID":6384450,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42371","ServerKey":"pl181","X":608,"Y":388},{"Bonus":0,"Continent":"K64","ID":42373,"Name":"031","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42373","ServerKey":"pl181","X":418,"Y":688},{"Bonus":0,"Continent":"K35","ID":42374,"Name":"AAA","PlayerID":1006847,"Points":7626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42374","ServerKey":"pl181","X":562,"Y":312},{"Bonus":0,"Continent":"K25","ID":42375,"Name":"KrakĂłw","PlayerID":699208929,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42375","ServerKey":"pl181","X":507,"Y":299},{"Bonus":0,"Continent":"K25","ID":42376,"Name":"La Cabana","PlayerID":3298902,"Points":4890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42376","ServerKey":"pl181","X":519,"Y":297},{"Bonus":0,"Continent":"K44","ID":42377,"Name":"00979","PlayerID":3909522,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42377","ServerKey":"pl181","X":463,"Y":432},{"Bonus":0,"Continent":"K63","ID":42378,"Name":"Taran","PlayerID":6180190,"Points":10098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42378","ServerKey":"pl181","X":330,"Y":612},{"Bonus":0,"Continent":"K46","ID":42379,"Name":"zabolaƂo ?","PlayerID":698613394,"Points":5476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42379","ServerKey":"pl181","X":639,"Y":484},{"Bonus":0,"Continent":"K46","ID":42380,"Name":"21.2NE1","PlayerID":9180206,"Points":7907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42380","ServerKey":"pl181","X":684,"Y":421},{"Bonus":0,"Continent":"K46","ID":42381,"Name":"Wioska18","PlayerID":848935020,"Points":5664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42381","ServerKey":"pl181","X":633,"Y":478},{"Bonus":0,"Continent":"K74","ID":42382,"Name":"FP001","PlayerID":699605333,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42382","ServerKey":"pl181","X":480,"Y":701},{"Bonus":0,"Continent":"K46","ID":42383,"Name":"BaƂuty","PlayerID":849100246,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42383","ServerKey":"pl181","X":689,"Y":478},{"Bonus":0,"Continent":"K65","ID":42384,"Name":"###020###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42384","ServerKey":"pl181","X":597,"Y":680},{"Bonus":0,"Continent":"K46","ID":42385,"Name":"001.BIGBANG","PlayerID":9180206,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42385","ServerKey":"pl181","X":684,"Y":417},{"Bonus":0,"Continent":"K36","ID":42386,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42386","ServerKey":"pl181","X":667,"Y":391},{"Bonus":0,"Continent":"K66","ID":42387,"Name":"Wygwizdowa 001","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42387","ServerKey":"pl181","X":641,"Y":645},{"Bonus":0,"Continent":"K63","ID":42388,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":2052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42388","ServerKey":"pl181","X":336,"Y":620},{"Bonus":0,"Continent":"K33","ID":42390,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42390","ServerKey":"pl181","X":338,"Y":385},{"Bonus":0,"Continent":"K46","ID":42391,"Name":"SrebrnaHata","PlayerID":699738350,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42391","ServerKey":"pl181","X":676,"Y":400},{"Bonus":0,"Continent":"K36","ID":42392,"Name":"!36 65 Balaceana","PlayerID":698361257,"Points":8694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42392","ServerKey":"pl181","X":657,"Y":369},{"Bonus":0,"Continent":"K66","ID":42393,"Name":"K66 2","PlayerID":7038651,"Points":3870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42393","ServerKey":"pl181","X":630,"Y":652},{"Bonus":0,"Continent":"K24","ID":42394,"Name":"????","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42394","ServerKey":"pl181","X":470,"Y":296},{"Bonus":0,"Continent":"K56","ID":42395,"Name":"TWIERDZA .:015:.","PlayerID":7154207,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42395","ServerKey":"pl181","X":693,"Y":565},{"Bonus":0,"Continent":"K75","ID":42396,"Name":"110 invidia","PlayerID":849093426,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42396","ServerKey":"pl181","X":509,"Y":702},{"Bonus":0,"Continent":"K66","ID":42397,"Name":"003","PlayerID":698346318,"Points":8559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42397","ServerKey":"pl181","X":631,"Y":648},{"Bonus":0,"Continent":"K33","ID":42398,"Name":"016. Klasztor Brimclif","PlayerID":7775311,"Points":6795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42398","ServerKey":"pl181","X":381,"Y":339},{"Bonus":0,"Continent":"K65","ID":42399,"Name":"-HRN-","PlayerID":7860453,"Points":3382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42399","ServerKey":"pl181","X":551,"Y":690},{"Bonus":0,"Continent":"K66","ID":42400,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42400","ServerKey":"pl181","X":638,"Y":646},{"Bonus":0,"Continent":"K66","ID":42401,"Name":"Wiejska9","PlayerID":6528152,"Points":8566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42401","ServerKey":"pl181","X":607,"Y":670},{"Bonus":0,"Continent":"K56","ID":42402,"Name":"Wioska barbarzyƄska","PlayerID":7154207,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42402","ServerKey":"pl181","X":685,"Y":578},{"Bonus":0,"Continent":"K53","ID":42403,"Name":"003","PlayerID":848886200,"Points":6308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42403","ServerKey":"pl181","X":300,"Y":536},{"Bonus":0,"Continent":"K56","ID":42404,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42404","ServerKey":"pl181","X":688,"Y":560},{"Bonus":0,"Continent":"K25","ID":42405,"Name":"AAA","PlayerID":1006847,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42405","ServerKey":"pl181","X":535,"Y":299},{"Bonus":9,"Continent":"K56","ID":42406,"Name":"003","PlayerID":7085502,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42406","ServerKey":"pl181","X":687,"Y":562},{"Bonus":0,"Continent":"K56","ID":42407,"Name":"Didek","PlayerID":849070946,"Points":4100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42407","ServerKey":"pl181","X":680,"Y":581},{"Bonus":0,"Continent":"K36","ID":42408,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":5349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42408","ServerKey":"pl181","X":625,"Y":347},{"Bonus":0,"Continent":"K33","ID":42409,"Name":"*052*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42409","ServerKey":"pl181","X":340,"Y":386},{"Bonus":0,"Continent":"K53","ID":42410,"Name":"C0201","PlayerID":8841266,"Points":8903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42410","ServerKey":"pl181","X":300,"Y":533},{"Bonus":0,"Continent":"K56","ID":42411,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42411","ServerKey":"pl181","X":686,"Y":572},{"Bonus":0,"Continent":"K64","ID":42412,"Name":"0030 Kasko14","PlayerID":849037407,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42412","ServerKey":"pl181","X":449,"Y":693},{"Bonus":0,"Continent":"K36","ID":42414,"Name":"0091","PlayerID":698416970,"Points":7303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42414","ServerKey":"pl181","X":676,"Y":394},{"Bonus":0,"Continent":"K35","ID":42415,"Name":".:109:. Niangmen","PlayerID":848934935,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42415","ServerKey":"pl181","X":501,"Y":392},{"Bonus":0,"Continent":"K35","ID":42416,"Name":"XDX","PlayerID":699098531,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42416","ServerKey":"pl181","X":594,"Y":317},{"Bonus":0,"Continent":"K46","ID":42417,"Name":"I108","PlayerID":699722599,"Points":6604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42417","ServerKey":"pl181","X":696,"Y":447},{"Bonus":0,"Continent":"K66","ID":42418,"Name":"#102#","PlayerID":692803,"Points":8554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42418","ServerKey":"pl181","X":623,"Y":656},{"Bonus":0,"Continent":"K46","ID":42419,"Name":"047. Wioska barbarzyƄska","PlayerID":7494497,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42419","ServerKey":"pl181","X":696,"Y":465},{"Bonus":0,"Continent":"K46","ID":42420,"Name":"B#007","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42420","ServerKey":"pl181","X":699,"Y":448},{"Bonus":0,"Continent":"K35","ID":42421,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42421","ServerKey":"pl181","X":553,"Y":309},{"Bonus":0,"Continent":"K47","ID":42422,"Name":"Wioska Turystyczna 001","PlayerID":7588382,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42422","ServerKey":"pl181","X":705,"Y":486},{"Bonus":0,"Continent":"K52","ID":42423,"Name":"[0220]","PlayerID":8630972,"Points":7500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42423","ServerKey":"pl181","X":299,"Y":501},{"Bonus":0,"Continent":"K66","ID":42424,"Name":"011. GĂłrki Piaszczyste","PlayerID":849100994,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42424","ServerKey":"pl181","X":648,"Y":643},{"Bonus":0,"Continent":"K66","ID":42425,"Name":"Bessa 021","PlayerID":848987051,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42425","ServerKey":"pl181","X":637,"Y":654},{"Bonus":0,"Continent":"K34","ID":42426,"Name":"Wielki 1","PlayerID":849050849,"Points":8636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42426","ServerKey":"pl181","X":498,"Y":301},{"Bonus":0,"Continent":"K24","ID":42427,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42427","ServerKey":"pl181","X":493,"Y":296},{"Bonus":0,"Continent":"K46","ID":42428,"Name":"Osada 12","PlayerID":699488108,"Points":8831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42428","ServerKey":"pl181","X":691,"Y":423},{"Bonus":0,"Continent":"K35","ID":42429,"Name":"Wioska krumlow 3","PlayerID":699098531,"Points":3573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42429","ServerKey":"pl181","X":595,"Y":317},{"Bonus":0,"Continent":"K46","ID":42430,"Name":"Domi 6","PlayerID":849002796,"Points":8201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42430","ServerKey":"pl181","X":698,"Y":471},{"Bonus":0,"Continent":"K63","ID":42431,"Name":"O142","PlayerID":272173,"Points":7233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42431","ServerKey":"pl181","X":348,"Y":631},{"Bonus":3,"Continent":"K46","ID":42432,"Name":"Jan Os koc-16 Ost K","PlayerID":879782,"Points":9195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42432","ServerKey":"pl181","X":693,"Y":444},{"Bonus":0,"Continent":"K66","ID":42434,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":7793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42434","ServerKey":"pl181","X":677,"Y":601},{"Bonus":0,"Continent":"K64","ID":42435,"Name":"088","PlayerID":849099876,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42435","ServerKey":"pl181","X":414,"Y":686},{"Bonus":0,"Continent":"K33","ID":42436,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42436","ServerKey":"pl181","X":385,"Y":335},{"Bonus":0,"Continent":"K35","ID":42437,"Name":"AAA","PlayerID":1006847,"Points":9686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42437","ServerKey":"pl181","X":525,"Y":300},{"Bonus":0,"Continent":"K35","ID":42438,"Name":"Wioska XII","PlayerID":698200480,"Points":7788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42438","ServerKey":"pl181","X":579,"Y":344},{"Bonus":0,"Continent":"K65","ID":42439,"Name":"DąbrĂłwka ZaĆ‚Ä™ĆŒna","PlayerID":698723158,"Points":5392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42439","ServerKey":"pl181","X":563,"Y":691},{"Bonus":0,"Continent":"K43","ID":42440,"Name":"1 Rękrzowice","PlayerID":8048374,"Points":6968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42440","ServerKey":"pl181","X":304,"Y":477},{"Bonus":0,"Continent":"K36","ID":42441,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":4461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42441","ServerKey":"pl181","X":647,"Y":356},{"Bonus":8,"Continent":"K34","ID":42442,"Name":"[0026] XXX","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42442","ServerKey":"pl181","X":442,"Y":310},{"Bonus":0,"Continent":"K34","ID":42443,"Name":"???","PlayerID":698489071,"Points":7411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42443","ServerKey":"pl181","X":489,"Y":303},{"Bonus":0,"Continent":"K35","ID":42444,"Name":"003","PlayerID":699098531,"Points":2612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42444","ServerKey":"pl181","X":593,"Y":318},{"Bonus":0,"Continent":"K43","ID":42446,"Name":"Out of Touch","PlayerID":698962117,"Points":5293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42446","ServerKey":"pl181","X":315,"Y":421},{"Bonus":5,"Continent":"K64","ID":42447,"Name":"0005 xXx Grypsujący xXx","PlayerID":849037407,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42447","ServerKey":"pl181","X":441,"Y":695},{"Bonus":0,"Continent":"K36","ID":42448,"Name":"003","PlayerID":9148043,"Points":8974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42448","ServerKey":"pl181","X":648,"Y":359},{"Bonus":0,"Continent":"K52","ID":42449,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42449","ServerKey":"pl181","X":294,"Y":519},{"Bonus":9,"Continent":"K53","ID":42450,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42450","ServerKey":"pl181","X":304,"Y":514},{"Bonus":0,"Continent":"K36","ID":42451,"Name":"Wioska barbarzyƄska","PlayerID":1990750,"Points":8874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42451","ServerKey":"pl181","X":620,"Y":339},{"Bonus":0,"Continent":"K36","ID":42452,"Name":"008","PlayerID":8842936,"Points":7918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42452","ServerKey":"pl181","X":601,"Y":329},{"Bonus":0,"Continent":"K34","ID":42453,"Name":"255...Emerson","PlayerID":6920960,"Points":7545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42453","ServerKey":"pl181","X":464,"Y":300},{"Bonus":0,"Continent":"K56","ID":42454,"Name":"Didi","PlayerID":849070946,"Points":10957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42454","ServerKey":"pl181","X":687,"Y":579},{"Bonus":0,"Continent":"K54","ID":42455,"Name":"0000017%","PlayerID":849089881,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42455","ServerKey":"pl181","X":426,"Y":595},{"Bonus":0,"Continent":"K64","ID":42456,"Name":"01. Devil Z","PlayerID":849100262,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42456","ServerKey":"pl181","X":482,"Y":650},{"Bonus":0,"Continent":"K35","ID":42457,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42457","ServerKey":"pl181","X":577,"Y":309},{"Bonus":9,"Continent":"K47","ID":42458,"Name":"Osada koczownikĂłw","PlayerID":699574408,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42458","ServerKey":"pl181","X":702,"Y":474},{"Bonus":0,"Continent":"K74","ID":42459,"Name":"002. Good Night","PlayerID":699684062,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42459","ServerKey":"pl181","X":489,"Y":703},{"Bonus":0,"Continent":"K53","ID":42460,"Name":"[0221]","PlayerID":8630972,"Points":7297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42460","ServerKey":"pl181","X":300,"Y":504},{"Bonus":0,"Continent":"K63","ID":42461,"Name":"ByƂeƛ w porządku 003","PlayerID":699269923,"Points":9991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42461","ServerKey":"pl181","X":369,"Y":650},{"Bonus":0,"Continent":"K46","ID":42462,"Name":"Pallad","PlayerID":8459255,"Points":7763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42462","ServerKey":"pl181","X":687,"Y":440},{"Bonus":7,"Continent":"K64","ID":42463,"Name":"0039 Osada koczownikĂłw","PlayerID":849037407,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42463","ServerKey":"pl181","X":447,"Y":698},{"Bonus":0,"Continent":"K63","ID":42465,"Name":"A 071","PlayerID":699269923,"Points":7870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42465","ServerKey":"pl181","X":360,"Y":639},{"Bonus":0,"Continent":"K66","ID":42466,"Name":"CALL 1051","PlayerID":699784536,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42466","ServerKey":"pl181","X":652,"Y":627},{"Bonus":0,"Continent":"K56","ID":42467,"Name":"TWIERDZA .:013:.","PlayerID":7154207,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42467","ServerKey":"pl181","X":694,"Y":566},{"Bonus":0,"Continent":"K24","ID":42468,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42468","ServerKey":"pl181","X":498,"Y":298},{"Bonus":0,"Continent":"K64","ID":42469,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42469","ServerKey":"pl181","X":430,"Y":688},{"Bonus":0,"Continent":"K65","ID":42470,"Name":"###077###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42470","ServerKey":"pl181","X":598,"Y":680},{"Bonus":0,"Continent":"K36","ID":42471,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":5273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42471","ServerKey":"pl181","X":630,"Y":341},{"Bonus":0,"Continent":"K34","ID":42473,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42473","ServerKey":"pl181","X":413,"Y":320},{"Bonus":0,"Continent":"K56","ID":42474,"Name":"tomek016 IV","PlayerID":8811880,"Points":1943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42474","ServerKey":"pl181","X":693,"Y":571},{"Bonus":0,"Continent":"K36","ID":42475,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42475","ServerKey":"pl181","X":670,"Y":394},{"Bonus":0,"Continent":"K33","ID":42476,"Name":"z 000 Wioska 13","PlayerID":3909522,"Points":6345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42476","ServerKey":"pl181","X":352,"Y":357},{"Bonus":0,"Continent":"K66","ID":42477,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42477","ServerKey":"pl181","X":657,"Y":629},{"Bonus":0,"Continent":"K42","ID":42478,"Name":"marmag81/03ww","PlayerID":1096254,"Points":5430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42478","ServerKey":"pl181","X":298,"Y":471},{"Bonus":0,"Continent":"K43","ID":42479,"Name":"Out of Touch","PlayerID":698962117,"Points":6417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42479","ServerKey":"pl181","X":317,"Y":429},{"Bonus":0,"Continent":"K74","ID":42480,"Name":"FP033","PlayerID":699605333,"Points":9264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42480","ServerKey":"pl181","X":468,"Y":703},{"Bonus":0,"Continent":"K74","ID":42481,"Name":"05. Betonoza","PlayerID":849092769,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42481","ServerKey":"pl181","X":483,"Y":705},{"Bonus":0,"Continent":"K33","ID":42482,"Name":"Zaplecze Barba 017","PlayerID":699796330,"Points":7941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42482","ServerKey":"pl181","X":372,"Y":340},{"Bonus":0,"Continent":"K43","ID":42483,"Name":"Dream on","PlayerID":698962117,"Points":4808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42483","ServerKey":"pl181","X":301,"Y":499},{"Bonus":0,"Continent":"K53","ID":42484,"Name":"020","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42484","ServerKey":"pl181","X":303,"Y":561},{"Bonus":0,"Continent":"K64","ID":42485,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42485","ServerKey":"pl181","X":417,"Y":683},{"Bonus":0,"Continent":"K24","ID":42487,"Name":"264...EMERSON","PlayerID":6920960,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42487","ServerKey":"pl181","X":464,"Y":298},{"Bonus":0,"Continent":"K53","ID":42488,"Name":"Dream on","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42488","ServerKey":"pl181","X":304,"Y":504},{"Bonus":0,"Continent":"K56","ID":42489,"Name":"TWIERDZA .:018:.","PlayerID":7154207,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42489","ServerKey":"pl181","X":688,"Y":565},{"Bonus":0,"Continent":"K64","ID":42491,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42491","ServerKey":"pl181","X":431,"Y":688},{"Bonus":0,"Continent":"K25","ID":42492,"Name":"Wioska zzzz","PlayerID":699208929,"Points":3361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42492","ServerKey":"pl181","X":514,"Y":299},{"Bonus":0,"Continent":"K53","ID":42493,"Name":"Darma dla zawodnika","PlayerID":699671197,"Points":7221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42493","ServerKey":"pl181","X":316,"Y":580},{"Bonus":0,"Continent":"K64","ID":42494,"Name":"psycha sitting","PlayerID":699736927,"Points":6785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42494","ServerKey":"pl181","X":404,"Y":677},{"Bonus":0,"Continent":"K47","ID":42495,"Name":"Ryƛ","PlayerID":849099640,"Points":6245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42495","ServerKey":"pl181","X":701,"Y":483},{"Bonus":0,"Continent":"K74","ID":42496,"Name":"A000","PlayerID":699725436,"Points":9274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42496","ServerKey":"pl181","X":463,"Y":700},{"Bonus":0,"Continent":"K43","ID":42497,"Name":"z181_10","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42497","ServerKey":"pl181","X":309,"Y":442},{"Bonus":0,"Continent":"K66","ID":42499,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42499","ServerKey":"pl181","X":659,"Y":630},{"Bonus":0,"Continent":"K42","ID":42500,"Name":"Dream on","PlayerID":698962117,"Points":8887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42500","ServerKey":"pl181","X":298,"Y":483},{"Bonus":0,"Continent":"K34","ID":42501,"Name":"Mordor","PlayerID":698231772,"Points":11898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42501","ServerKey":"pl181","X":414,"Y":317},{"Bonus":0,"Continent":"K33","ID":42502,"Name":"0005","PlayerID":699644448,"Points":6005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42502","ServerKey":"pl181","X":357,"Y":358},{"Bonus":0,"Continent":"K53","ID":42503,"Name":"C3.","PlayerID":849095482,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42503","ServerKey":"pl181","X":307,"Y":544},{"Bonus":0,"Continent":"K64","ID":42504,"Name":"New World","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42504","ServerKey":"pl181","X":430,"Y":694},{"Bonus":0,"Continent":"K43","ID":42506,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42506","ServerKey":"pl181","X":305,"Y":453},{"Bonus":4,"Continent":"K35","ID":42507,"Name":"B001","PlayerID":699208929,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42507","ServerKey":"pl181","X":519,"Y":302},{"Bonus":0,"Continent":"K75","ID":42508,"Name":"Wyspa_47","PlayerID":2585846,"Points":8152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42508","ServerKey":"pl181","X":509,"Y":704},{"Bonus":0,"Continent":"K24","ID":42509,"Name":"Winterhome.029","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42509","ServerKey":"pl181","X":493,"Y":295},{"Bonus":0,"Continent":"K43","ID":42511,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":2800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42511","ServerKey":"pl181","X":301,"Y":446},{"Bonus":0,"Continent":"K52","ID":42513,"Name":"C0338","PlayerID":8841266,"Points":4465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42513","ServerKey":"pl181","X":297,"Y":538},{"Bonus":0,"Continent":"K43","ID":42515,"Name":"Z04","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42515","ServerKey":"pl181","X":316,"Y":410},{"Bonus":0,"Continent":"K64","ID":42517,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42517","ServerKey":"pl181","X":436,"Y":689},{"Bonus":0,"Continent":"K65","ID":42519,"Name":"###078###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42519","ServerKey":"pl181","X":584,"Y":679},{"Bonus":0,"Continent":"K33","ID":42521,"Name":"Wioska barbarzyƄska","PlayerID":699541376,"Points":3555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42521","ServerKey":"pl181","X":341,"Y":383},{"Bonus":7,"Continent":"K43","ID":42522,"Name":"ZA12","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42522","ServerKey":"pl181","X":319,"Y":414},{"Bonus":0,"Continent":"K57","ID":42523,"Name":"066","PlayerID":849095227,"Points":4890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42523","ServerKey":"pl181","X":700,"Y":538},{"Bonus":0,"Continent":"K66","ID":42524,"Name":"HAPERT","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42524","ServerKey":"pl181","X":624,"Y":661},{"Bonus":0,"Continent":"K53","ID":42525,"Name":"052g","PlayerID":698641566,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42525","ServerKey":"pl181","X":311,"Y":557},{"Bonus":0,"Continent":"K36","ID":42526,"Name":"015","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42526","ServerKey":"pl181","X":669,"Y":382},{"Bonus":0,"Continent":"K35","ID":42527,"Name":"17. Stwho","PlayerID":699072129,"Points":8585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42527","ServerKey":"pl181","X":552,"Y":313},{"Bonus":0,"Continent":"K33","ID":42528,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42528","ServerKey":"pl181","X":331,"Y":391},{"Bonus":0,"Continent":"K52","ID":42529,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42529","ServerKey":"pl181","X":298,"Y":518},{"Bonus":0,"Continent":"K63","ID":42530,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42530","ServerKey":"pl181","X":390,"Y":673},{"Bonus":0,"Continent":"K46","ID":42531,"Name":"08.ITZY","PlayerID":9180206,"Points":8975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42531","ServerKey":"pl181","X":687,"Y":423},{"Bonus":0,"Continent":"K25","ID":42533,"Name":"Doha","PlayerID":699208929,"Points":8249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42533","ServerKey":"pl181","X":516,"Y":299},{"Bonus":0,"Continent":"K36","ID":42534,"Name":"Ɓoszyngton","PlayerID":699098531,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42534","ServerKey":"pl181","X":608,"Y":330},{"Bonus":0,"Continent":"K74","ID":42535,"Name":"008","PlayerID":699725436,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42535","ServerKey":"pl181","X":470,"Y":700},{"Bonus":0,"Continent":"K36","ID":42536,"Name":"0098","PlayerID":698416970,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42536","ServerKey":"pl181","X":677,"Y":393},{"Bonus":0,"Continent":"K33","ID":42538,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42538","ServerKey":"pl181","X":330,"Y":397},{"Bonus":0,"Continent":"K56","ID":42540,"Name":"RacibĂłrz","PlayerID":848932879,"Points":2139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42540","ServerKey":"pl181","X":694,"Y":543},{"Bonus":0,"Continent":"K46","ID":42541,"Name":"Wioska pentoschijska","PlayerID":848976034,"Points":9580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42541","ServerKey":"pl181","X":696,"Y":437},{"Bonus":0,"Continent":"K74","ID":42543,"Name":"041. Night Raid","PlayerID":699684062,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42543","ServerKey":"pl181","X":489,"Y":704},{"Bonus":0,"Continent":"K34","ID":42544,"Name":"[0044] xxx","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42544","ServerKey":"pl181","X":445,"Y":303},{"Bonus":0,"Continent":"K63","ID":42545,"Name":"O143","PlayerID":272173,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42545","ServerKey":"pl181","X":347,"Y":628},{"Bonus":0,"Continent":"K43","ID":42547,"Name":"001","PlayerID":848895676,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42547","ServerKey":"pl181","X":308,"Y":475},{"Bonus":0,"Continent":"K56","ID":42548,"Name":"07. Temeria","PlayerID":8976313,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42548","ServerKey":"pl181","X":697,"Y":537},{"Bonus":0,"Continent":"K66","ID":42550,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42550","ServerKey":"pl181","X":645,"Y":639},{"Bonus":0,"Continent":"K64","ID":42551,"Name":"018. Night Raid*","PlayerID":699684062,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42551","ServerKey":"pl181","X":433,"Y":693},{"Bonus":0,"Continent":"K24","ID":42552,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42552","ServerKey":"pl181","X":499,"Y":295},{"Bonus":0,"Continent":"K43","ID":42553,"Name":"Grubasy 7 papa","PlayerID":634848,"Points":3237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42553","ServerKey":"pl181","X":304,"Y":441},{"Bonus":0,"Continent":"K46","ID":42554,"Name":"031 Kopa","PlayerID":849098769,"Points":7044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42554","ServerKey":"pl181","X":691,"Y":450},{"Bonus":0,"Continent":"K43","ID":42555,"Name":"Z09","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42555","ServerKey":"pl181","X":317,"Y":407},{"Bonus":0,"Continent":"K66","ID":42556,"Name":"026","PlayerID":699373599,"Points":6065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42556","ServerKey":"pl181","X":629,"Y":649},{"Bonus":0,"Continent":"K46","ID":42557,"Name":"11. Memes","PlayerID":699804790,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42557","ServerKey":"pl181","X":686,"Y":485},{"Bonus":0,"Continent":"K56","ID":42558,"Name":"B09","PlayerID":848995478,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42558","ServerKey":"pl181","X":692,"Y":552},{"Bonus":0,"Continent":"K43","ID":42559,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42559","ServerKey":"pl181","X":322,"Y":400},{"Bonus":0,"Continent":"K43","ID":42560,"Name":"ZA23","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42560","ServerKey":"pl181","X":320,"Y":415},{"Bonus":0,"Continent":"K36","ID":42561,"Name":"016","PlayerID":698635863,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42561","ServerKey":"pl181","X":669,"Y":386},{"Bonus":0,"Continent":"K45","ID":42562,"Name":"053","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42562","ServerKey":"pl181","X":559,"Y":407},{"Bonus":0,"Continent":"K46","ID":42563,"Name":"Posterunek","PlayerID":699738350,"Points":9158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42563","ServerKey":"pl181","X":685,"Y":424},{"Bonus":0,"Continent":"K36","ID":42564,"Name":"*W002","PlayerID":7758085,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42564","ServerKey":"pl181","X":662,"Y":378},{"Bonus":0,"Continent":"K36","ID":42565,"Name":"0114","PlayerID":698416970,"Points":9717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42565","ServerKey":"pl181","X":679,"Y":397},{"Bonus":0,"Continent":"K63","ID":42566,"Name":"O144","PlayerID":272173,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42566","ServerKey":"pl181","X":346,"Y":631},{"Bonus":0,"Continent":"K34","ID":42567,"Name":"MSWO-4","PlayerID":698489071,"Points":4249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42567","ServerKey":"pl181","X":469,"Y":302},{"Bonus":0,"Continent":"K63","ID":42568,"Name":"O049","PlayerID":272173,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42568","ServerKey":"pl181","X":344,"Y":629},{"Bonus":0,"Continent":"K36","ID":42570,"Name":"017","PlayerID":698635863,"Points":7106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42570","ServerKey":"pl181","X":649,"Y":357},{"Bonus":0,"Continent":"K33","ID":42571,"Name":"zachod 003","PlayerID":7462660,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42571","ServerKey":"pl181","X":357,"Y":363},{"Bonus":0,"Continent":"K33","ID":42572,"Name":"0004","PlayerID":699644448,"Points":5752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42572","ServerKey":"pl181","X":356,"Y":355},{"Bonus":0,"Continent":"K43","ID":42573,"Name":"Psajdak.","PlayerID":699265922,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42573","ServerKey":"pl181","X":352,"Y":494},{"Bonus":0,"Continent":"K33","ID":42574,"Name":"Zaplecze Barba 9","PlayerID":699796330,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42574","ServerKey":"pl181","X":372,"Y":341},{"Bonus":0,"Continent":"K25","ID":42576,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42576","ServerKey":"pl181","X":526,"Y":298},{"Bonus":7,"Continent":"K52","ID":42577,"Name":"EO EO","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42577","ServerKey":"pl181","X":299,"Y":516},{"Bonus":0,"Continent":"K64","ID":42578,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42578","ServerKey":"pl181","X":464,"Y":672},{"Bonus":0,"Continent":"K35","ID":42579,"Name":"XXXX","PlayerID":849054951,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42579","ServerKey":"pl181","X":563,"Y":307},{"Bonus":9,"Continent":"K24","ID":42580,"Name":"Winterhome.026","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42580","ServerKey":"pl181","X":491,"Y":297},{"Bonus":0,"Continent":"K66","ID":42581,"Name":"Ć»UBEREK 020 pit71","PlayerID":33900,"Points":10302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42581","ServerKey":"pl181","X":607,"Y":676},{"Bonus":0,"Continent":"K33","ID":42582,"Name":"Z Wioska 2","PlayerID":3909522,"Points":8553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42582","ServerKey":"pl181","X":358,"Y":358},{"Bonus":0,"Continent":"K43","ID":42583,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":2385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42583","ServerKey":"pl181","X":304,"Y":446},{"Bonus":0,"Continent":"K34","ID":42584,"Name":"[0130]","PlayerID":8630972,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42584","ServerKey":"pl181","X":440,"Y":305},{"Bonus":0,"Continent":"K36","ID":42585,"Name":"Zakrzewo","PlayerID":699491076,"Points":5466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42585","ServerKey":"pl181","X":665,"Y":384},{"Bonus":0,"Continent":"K42","ID":42586,"Name":"Dream on","PlayerID":698962117,"Points":9479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42586","ServerKey":"pl181","X":296,"Y":483},{"Bonus":0,"Continent":"K66","ID":42587,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42587","ServerKey":"pl181","X":646,"Y":641},{"Bonus":0,"Continent":"K65","ID":42588,"Name":"ZZZ","PlayerID":8980651,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42588","ServerKey":"pl181","X":502,"Y":696},{"Bonus":0,"Continent":"K36","ID":42589,"Name":"XDX","PlayerID":699098531,"Points":9104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42589","ServerKey":"pl181","X":615,"Y":331},{"Bonus":0,"Continent":"K25","ID":42590,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42590","ServerKey":"pl181","X":506,"Y":296},{"Bonus":0,"Continent":"K63","ID":42591,"Name":"O037","PlayerID":272173,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42591","ServerKey":"pl181","X":344,"Y":628},{"Bonus":0,"Continent":"K74","ID":42592,"Name":"xzc","PlayerID":699429335,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42592","ServerKey":"pl181","X":498,"Y":708},{"Bonus":0,"Continent":"K33","ID":42593,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42593","ServerKey":"pl181","X":386,"Y":333},{"Bonus":0,"Continent":"K56","ID":42594,"Name":"Wawelno","PlayerID":848932879,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42594","ServerKey":"pl181","X":686,"Y":542},{"Bonus":0,"Continent":"K66","ID":42595,"Name":"041 Wioska barbarzyƄska","PlayerID":699346280,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42595","ServerKey":"pl181","X":608,"Y":669},{"Bonus":3,"Continent":"K66","ID":42598,"Name":"Ć»UBR PSYCHIATRYK 019","PlayerID":33900,"Points":4753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42598","ServerKey":"pl181","X":626,"Y":653},{"Bonus":0,"Continent":"K33","ID":42599,"Name":"*212*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42599","ServerKey":"pl181","X":332,"Y":386},{"Bonus":0,"Continent":"K56","ID":42600,"Name":"S010","PlayerID":8428196,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42600","ServerKey":"pl181","X":686,"Y":586},{"Bonus":5,"Continent":"K65","ID":42601,"Name":"###007###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42601","ServerKey":"pl181","X":582,"Y":683},{"Bonus":0,"Continent":"K64","ID":42602,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42602","ServerKey":"pl181","X":439,"Y":690},{"Bonus":0,"Continent":"K53","ID":42603,"Name":"C0081","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42603","ServerKey":"pl181","X":302,"Y":524},{"Bonus":0,"Continent":"K35","ID":42604,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42604","ServerKey":"pl181","X":588,"Y":317},{"Bonus":0,"Continent":"K65","ID":42605,"Name":"2.Logrono","PlayerID":698215322,"Points":3637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42605","ServerKey":"pl181","X":574,"Y":683},{"Bonus":0,"Continent":"K46","ID":42607,"Name":"14.EXO","PlayerID":9180206,"Points":8179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42607","ServerKey":"pl181","X":687,"Y":416},{"Bonus":0,"Continent":"K65","ID":42608,"Name":"###021###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42608","ServerKey":"pl181","X":589,"Y":682},{"Bonus":0,"Continent":"K36","ID":42609,"Name":"M181 ...bil...","PlayerID":6517003,"Points":1064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42609","ServerKey":"pl181","X":628,"Y":350},{"Bonus":0,"Continent":"K74","ID":42610,"Name":"036 Night Raid","PlayerID":699684062,"Points":8688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42610","ServerKey":"pl181","X":486,"Y":703},{"Bonus":0,"Continent":"K63","ID":42611,"Name":"D001","PlayerID":272173,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42611","ServerKey":"pl181","X":363,"Y":638},{"Bonus":0,"Continent":"K47","ID":42612,"Name":"A#037","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42612","ServerKey":"pl181","X":705,"Y":480},{"Bonus":0,"Continent":"K46","ID":42613,"Name":"[057] Wioska barbarzyƄska","PlayerID":849095068,"Points":4523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42613","ServerKey":"pl181","X":685,"Y":421},{"Bonus":0,"Continent":"K36","ID":42614,"Name":"Zzzz - Kasztelania 002","PlayerID":699733098,"Points":4357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42614","ServerKey":"pl181","X":641,"Y":351},{"Bonus":0,"Continent":"K33","ID":42615,"Name":"z 001043","PlayerID":3909522,"Points":4501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42615","ServerKey":"pl181","X":354,"Y":366},{"Bonus":0,"Continent":"K63","ID":42616,"Name":"O093","PlayerID":272173,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42616","ServerKey":"pl181","X":336,"Y":621},{"Bonus":0,"Continent":"K66","ID":42617,"Name":"003","PlayerID":849099544,"Points":7302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42617","ServerKey":"pl181","X":641,"Y":641},{"Bonus":0,"Continent":"K63","ID":42618,"Name":"C037","PlayerID":699383279,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42618","ServerKey":"pl181","X":375,"Y":661},{"Bonus":0,"Continent":"K56","ID":42619,"Name":"TWIERDZA .:061:.","PlayerID":7154207,"Points":7652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42619","ServerKey":"pl181","X":690,"Y":574},{"Bonus":0,"Continent":"K33","ID":42620,"Name":"Babilon","PlayerID":699660539,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42620","ServerKey":"pl181","X":386,"Y":334},{"Bonus":0,"Continent":"K66","ID":42621,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42621","ServerKey":"pl181","X":649,"Y":638},{"Bonus":0,"Continent":"K33","ID":42622,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":7865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42622","ServerKey":"pl181","X":370,"Y":342},{"Bonus":0,"Continent":"K56","ID":42623,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42623","ServerKey":"pl181","X":698,"Y":541},{"Bonus":0,"Continent":"K66","ID":42624,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42624","ServerKey":"pl181","X":654,"Y":631},{"Bonus":0,"Continent":"K24","ID":42625,"Name":".achim.","PlayerID":6936607,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42625","ServerKey":"pl181","X":468,"Y":296},{"Bonus":0,"Continent":"K56","ID":42626,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42626","ServerKey":"pl181","X":697,"Y":520},{"Bonus":0,"Continent":"K33","ID":42627,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":4158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42627","ServerKey":"pl181","X":373,"Y":349},{"Bonus":0,"Continent":"K63","ID":42628,"Name":"005. Wioska barbarzyƄska","PlayerID":698908184,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42628","ServerKey":"pl181","X":346,"Y":635},{"Bonus":0,"Continent":"K24","ID":42629,"Name":"Owsiana","PlayerID":698848373,"Points":2304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42629","ServerKey":"pl181","X":482,"Y":297},{"Bonus":8,"Continent":"K63","ID":42630,"Name":"O001","PlayerID":272173,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42630","ServerKey":"pl181","X":342,"Y":633},{"Bonus":0,"Continent":"K53","ID":42631,"Name":"Ave Why!","PlayerID":6180190,"Points":3600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42631","ServerKey":"pl181","X":308,"Y":574},{"Bonus":0,"Continent":"K43","ID":42632,"Name":"z181_06","PlayerID":393668,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42632","ServerKey":"pl181","X":312,"Y":441},{"Bonus":0,"Continent":"K43","ID":42633,"Name":"WiedĆșma - Z 002","PlayerID":9239515,"Points":5456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42633","ServerKey":"pl181","X":307,"Y":431},{"Bonus":0,"Continent":"K46","ID":42634,"Name":"04.MINUTE","PlayerID":9180206,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42634","ServerKey":"pl181","X":684,"Y":416},{"Bonus":0,"Continent":"K35","ID":42635,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42635","ServerKey":"pl181","X":567,"Y":306},{"Bonus":0,"Continent":"K65","ID":42636,"Name":"###079###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42636","ServerKey":"pl181","X":582,"Y":684},{"Bonus":0,"Continent":"K56","ID":42637,"Name":"Fear Of The Dark","PlayerID":848926293,"Points":4624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42637","ServerKey":"pl181","X":692,"Y":555},{"Bonus":0,"Continent":"K63","ID":42638,"Name":"A 080","PlayerID":6948793,"Points":2577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42638","ServerKey":"pl181","X":364,"Y":642},{"Bonus":0,"Continent":"K33","ID":42639,"Name":"Atlantyda I","PlayerID":849068108,"Points":3682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42639","ServerKey":"pl181","X":370,"Y":344},{"Bonus":0,"Continent":"K25","ID":42640,"Name":"Kuwejt","PlayerID":699208929,"Points":9911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42640","ServerKey":"pl181","X":515,"Y":299},{"Bonus":0,"Continent":"K36","ID":42641,"Name":"018","PlayerID":698635863,"Points":8985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42641","ServerKey":"pl181","X":660,"Y":382},{"Bonus":0,"Continent":"K46","ID":42642,"Name":"12.EVERGLOW","PlayerID":9180206,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42642","ServerKey":"pl181","X":689,"Y":419},{"Bonus":0,"Continent":"K47","ID":42643,"Name":"Domi 5","PlayerID":849002796,"Points":8978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42643","ServerKey":"pl181","X":701,"Y":473},{"Bonus":0,"Continent":"K33","ID":42644,"Name":"B01 Sopot","PlayerID":7462660,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42644","ServerKey":"pl181","X":348,"Y":373},{"Bonus":0,"Continent":"K46","ID":42645,"Name":"119","PlayerID":849088515,"Points":6320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42645","ServerKey":"pl181","X":695,"Y":454},{"Bonus":0,"Continent":"K35","ID":42646,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":6946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42646","ServerKey":"pl181","X":560,"Y":312},{"Bonus":0,"Continent":"K64","ID":42647,"Name":"030 Malleore","PlayerID":699834004,"Points":4614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42647","ServerKey":"pl181","X":454,"Y":691},{"Bonus":0,"Continent":"K53","ID":42648,"Name":"#006","PlayerID":849097898,"Points":4413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42648","ServerKey":"pl181","X":311,"Y":563},{"Bonus":0,"Continent":"K57","ID":42649,"Name":"Wioska barbarzyƄska","PlayerID":254937,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42649","ServerKey":"pl181","X":703,"Y":515},{"Bonus":0,"Continent":"K35","ID":42650,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42650","ServerKey":"pl181","X":518,"Y":320},{"Bonus":0,"Continent":"K35","ID":42651,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42651","ServerKey":"pl181","X":584,"Y":312},{"Bonus":0,"Continent":"K43","ID":42652,"Name":"008e","PlayerID":8259895,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42652","ServerKey":"pl181","X":308,"Y":425},{"Bonus":0,"Continent":"K65","ID":42653,"Name":"TARAN","PlayerID":7860453,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42653","ServerKey":"pl181","X":547,"Y":692},{"Bonus":0,"Continent":"K56","ID":42655,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42655","ServerKey":"pl181","X":687,"Y":561},{"Bonus":0,"Continent":"K63","ID":42656,"Name":"O057","PlayerID":272173,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42656","ServerKey":"pl181","X":343,"Y":627},{"Bonus":0,"Continent":"K46","ID":42657,"Name":"30.Girls Day","PlayerID":9180206,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42657","ServerKey":"pl181","X":690,"Y":426},{"Bonus":0,"Continent":"K53","ID":42658,"Name":"Wioska Hrabia mol","PlayerID":699697136,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42658","ServerKey":"pl181","X":319,"Y":594},{"Bonus":0,"Continent":"K56","ID":42659,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":3661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42659","ServerKey":"pl181","X":697,"Y":561},{"Bonus":1,"Continent":"K66","ID":42660,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42660","ServerKey":"pl181","X":650,"Y":640},{"Bonus":0,"Continent":"K24","ID":42661,"Name":"GoƄ Się Dilduƛ97 ;] huehuehue @","PlayerID":848918262,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42661","ServerKey":"pl181","X":494,"Y":294},{"Bonus":0,"Continent":"K43","ID":42662,"Name":"ZA25","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42662","ServerKey":"pl181","X":316,"Y":417},{"Bonus":0,"Continent":"K36","ID":42663,"Name":"Wioska barbarzyƄska","PlayerID":699548295,"Points":1704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42663","ServerKey":"pl181","X":607,"Y":331},{"Bonus":0,"Continent":"K42","ID":42664,"Name":"boh81/500","PlayerID":848889556,"Points":7244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42664","ServerKey":"pl181","X":299,"Y":470},{"Bonus":0,"Continent":"K35","ID":42665,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42665","ServerKey":"pl181","X":580,"Y":310},{"Bonus":0,"Continent":"K46","ID":42666,"Name":"0146","PlayerID":698416970,"Points":7054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42666","ServerKey":"pl181","X":678,"Y":401},{"Bonus":0,"Continent":"K36","ID":42668,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":6322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42668","ServerKey":"pl181","X":626,"Y":345},{"Bonus":0,"Continent":"K52","ID":42669,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42669","ServerKey":"pl181","X":292,"Y":515},{"Bonus":0,"Continent":"K34","ID":42670,"Name":"052","PlayerID":2502956,"Points":8445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42670","ServerKey":"pl181","X":452,"Y":301},{"Bonus":2,"Continent":"K33","ID":42671,"Name":"Osada koczownikĂłw","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42671","ServerKey":"pl181","X":343,"Y":367},{"Bonus":0,"Continent":"K47","ID":42672,"Name":"WyƂom","PlayerID":849099640,"Points":7678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42672","ServerKey":"pl181","X":700,"Y":483},{"Bonus":0,"Continent":"K63","ID":42673,"Name":"C068","PlayerID":699383279,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42673","ServerKey":"pl181","X":358,"Y":650},{"Bonus":0,"Continent":"K53","ID":42674,"Name":"Wioska barbarzyƄska","PlayerID":3475079,"Points":2865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42674","ServerKey":"pl181","X":313,"Y":576},{"Bonus":0,"Continent":"K43","ID":42675,"Name":"WiedĆșma - Z 004","PlayerID":9239515,"Points":5276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42675","ServerKey":"pl181","X":307,"Y":434},{"Bonus":0,"Continent":"K64","ID":42676,"Name":"022","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42676","ServerKey":"pl181","X":401,"Y":677},{"Bonus":0,"Continent":"K66","ID":42677,"Name":"Stamford Bridge","PlayerID":849096631,"Points":10538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42677","ServerKey":"pl181","X":665,"Y":617},{"Bonus":0,"Continent":"K47","ID":42678,"Name":"023. WilanĂłw","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42678","ServerKey":"pl181","X":705,"Y":472},{"Bonus":0,"Continent":"K52","ID":42679,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42679","ServerKey":"pl181","X":298,"Y":515},{"Bonus":0,"Continent":"K43","ID":42680,"Name":"Out of Touch","PlayerID":698962117,"Points":6771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42680","ServerKey":"pl181","X":314,"Y":432},{"Bonus":0,"Continent":"K56","ID":42681,"Name":"Chabry","PlayerID":848932879,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42681","ServerKey":"pl181","X":695,"Y":530},{"Bonus":0,"Continent":"K66","ID":42682,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42682","ServerKey":"pl181","X":649,"Y":637},{"Bonus":0,"Continent":"K63","ID":42684,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":5053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42684","ServerKey":"pl181","X":339,"Y":617},{"Bonus":0,"Continent":"K25","ID":42685,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42685","ServerKey":"pl181","X":500,"Y":299},{"Bonus":0,"Continent":"K65","ID":42686,"Name":"Gaworzyna","PlayerID":698723158,"Points":6448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42686","ServerKey":"pl181","X":564,"Y":689},{"Bonus":0,"Continent":"K35","ID":42687,"Name":"AAA","PlayerID":1006847,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42687","ServerKey":"pl181","X":543,"Y":307},{"Bonus":0,"Continent":"K33","ID":42689,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":3757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42689","ServerKey":"pl181","X":399,"Y":326},{"Bonus":0,"Continent":"K25","ID":42690,"Name":"Hongkong","PlayerID":699208929,"Points":1644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42690","ServerKey":"pl181","X":513,"Y":296},{"Bonus":0,"Continent":"K34","ID":42691,"Name":"[0082] Potrzeba","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42691","ServerKey":"pl181","X":436,"Y":309},{"Bonus":0,"Continent":"K34","ID":42692,"Name":"0000.q","PlayerID":849099342,"Points":3949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42692","ServerKey":"pl181","X":471,"Y":300},{"Bonus":0,"Continent":"K25","ID":42693,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":10022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42693","ServerKey":"pl181","X":506,"Y":295},{"Bonus":0,"Continent":"K35","ID":42694,"Name":"C001","PlayerID":699761749,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42694","ServerKey":"pl181","X":587,"Y":388},{"Bonus":0,"Continent":"K66","ID":42695,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42695","ServerKey":"pl181","X":642,"Y":646},{"Bonus":0,"Continent":"K66","ID":42696,"Name":"003","PlayerID":698234770,"Points":9929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42696","ServerKey":"pl181","X":647,"Y":631},{"Bonus":0,"Continent":"K33","ID":42697,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42697","ServerKey":"pl181","X":335,"Y":391},{"Bonus":0,"Continent":"K33","ID":42698,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42698","ServerKey":"pl181","X":327,"Y":389},{"Bonus":7,"Continent":"K63","ID":42699,"Name":"ByƂeƛ w porządku 001","PlayerID":699269923,"Points":9715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42699","ServerKey":"pl181","X":365,"Y":651},{"Bonus":0,"Continent":"K33","ID":42701,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42701","ServerKey":"pl181","X":348,"Y":363},{"Bonus":0,"Continent":"K63","ID":42702,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42702","ServerKey":"pl181","X":394,"Y":675},{"Bonus":0,"Continent":"K66","ID":42703,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42703","ServerKey":"pl181","X":639,"Y":644},{"Bonus":0,"Continent":"K35","ID":42704,"Name":"AAA","PlayerID":1006847,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42704","ServerKey":"pl181","X":544,"Y":304},{"Bonus":0,"Continent":"K63","ID":42705,"Name":"048 - Nowy Początek...","PlayerID":6948793,"Points":7194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42705","ServerKey":"pl181","X":359,"Y":646},{"Bonus":0,"Continent":"K33","ID":42706,"Name":"002. Tak","PlayerID":7462660,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42706","ServerKey":"pl181","X":347,"Y":368},{"Bonus":0,"Continent":"K33","ID":42707,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42707","ServerKey":"pl181","X":349,"Y":363},{"Bonus":0,"Continent":"K34","ID":42708,"Name":"???","PlayerID":698489071,"Points":5554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42708","ServerKey":"pl181","X":489,"Y":300},{"Bonus":0,"Continent":"K52","ID":42709,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42709","ServerKey":"pl181","X":297,"Y":519},{"Bonus":0,"Continent":"K34","ID":42710,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42710","ServerKey":"pl181","X":407,"Y":321},{"Bonus":0,"Continent":"K64","ID":42711,"Name":"009# Melissa","PlayerID":699605333,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42711","ServerKey":"pl181","X":485,"Y":699},{"Bonus":0,"Continent":"K64","ID":42712,"Name":"048","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42712","ServerKey":"pl181","X":454,"Y":696},{"Bonus":0,"Continent":"K43","ID":42713,"Name":"Ranczo1","PlayerID":8259895,"Points":11737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42713","ServerKey":"pl181","X":304,"Y":447},{"Bonus":0,"Continent":"K34","ID":42714,"Name":"0018","PlayerID":2321390,"Points":4619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42714","ServerKey":"pl181","X":400,"Y":323},{"Bonus":0,"Continent":"K36","ID":42715,"Name":"!36 65 Radauti","PlayerID":698361257,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42715","ServerKey":"pl181","X":655,"Y":365},{"Bonus":0,"Continent":"K56","ID":42716,"Name":"xxx","PlayerID":699316421,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42716","ServerKey":"pl181","X":693,"Y":547},{"Bonus":0,"Continent":"K64","ID":42717,"Name":"#Charlotte","PlayerID":699849210,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42717","ServerKey":"pl181","X":431,"Y":666},{"Bonus":0,"Continent":"K64","ID":42718,"Name":"021# Sophia","PlayerID":3933666,"Points":8092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42718","ServerKey":"pl181","X":488,"Y":698},{"Bonus":2,"Continent":"K66","ID":42719,"Name":"Wioska Zorro 005","PlayerID":849080702,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42719","ServerKey":"pl181","X":679,"Y":600},{"Bonus":0,"Continent":"K33","ID":42720,"Name":"Wioska Wielki Wezyr","PlayerID":3185732,"Points":2431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42720","ServerKey":"pl181","X":321,"Y":397},{"Bonus":0,"Continent":"K34","ID":42721,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42721","ServerKey":"pl181","X":496,"Y":301},{"Bonus":0,"Continent":"K36","ID":42722,"Name":"XDX","PlayerID":699098531,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42722","ServerKey":"pl181","X":606,"Y":329},{"Bonus":0,"Continent":"K52","ID":42724,"Name":"[0222]","PlayerID":8630972,"Points":7287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42724","ServerKey":"pl181","X":293,"Y":506},{"Bonus":0,"Continent":"K36","ID":42725,"Name":"019","PlayerID":698635863,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42725","ServerKey":"pl181","X":668,"Y":384},{"Bonus":0,"Continent":"K64","ID":42726,"Name":"02. Whitebird","PlayerID":849100262,"Points":10002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42726","ServerKey":"pl181","X":481,"Y":653},{"Bonus":0,"Continent":"K46","ID":42727,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42727","ServerKey":"pl181","X":694,"Y":441},{"Bonus":3,"Continent":"K57","ID":42729,"Name":"003. 0.Ver$","PlayerID":699785935,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42729","ServerKey":"pl181","X":704,"Y":514},{"Bonus":0,"Continent":"K34","ID":42730,"Name":"[0096]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42730","ServerKey":"pl181","X":442,"Y":308},{"Bonus":0,"Continent":"K66","ID":42731,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42731","ServerKey":"pl181","X":644,"Y":643},{"Bonus":0,"Continent":"K66","ID":42733,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42733","ServerKey":"pl181","X":633,"Y":655},{"Bonus":0,"Continent":"K75","ID":42734,"Name":"085 invidia","PlayerID":849093426,"Points":8679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42734","ServerKey":"pl181","X":520,"Y":701},{"Bonus":0,"Continent":"K36","ID":42736,"Name":"606|377","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42736","ServerKey":"pl181","X":625,"Y":336},{"Bonus":0,"Continent":"K63","ID":42737,"Name":"O140","PlayerID":272173,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42737","ServerKey":"pl181","X":346,"Y":632},{"Bonus":0,"Continent":"K56","ID":42738,"Name":"Szlachcic","PlayerID":698867446,"Points":7710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42738","ServerKey":"pl181","X":685,"Y":589},{"Bonus":0,"Continent":"K35","ID":42739,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42739","ServerKey":"pl181","X":561,"Y":330},{"Bonus":0,"Continent":"K33","ID":42740,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42740","ServerKey":"pl181","X":388,"Y":329},{"Bonus":0,"Continent":"K66","ID":42741,"Name":"045","PlayerID":699373599,"Points":4762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42741","ServerKey":"pl181","X":627,"Y":657},{"Bonus":0,"Continent":"K36","ID":42742,"Name":"1..","PlayerID":9291984,"Points":3005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42742","ServerKey":"pl181","X":645,"Y":353},{"Bonus":0,"Continent":"K65","ID":42743,"Name":"###081###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42743","ServerKey":"pl181","X":585,"Y":688},{"Bonus":0,"Continent":"K57","ID":42744,"Name":"Wioska barbarzyƄska","PlayerID":254937,"Points":10024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42744","ServerKey":"pl181","X":702,"Y":517},{"Bonus":6,"Continent":"K42","ID":42745,"Name":"Dream on","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42745","ServerKey":"pl181","X":295,"Y":491},{"Bonus":0,"Continent":"K56","ID":42746,"Name":"Mocarna wioska","PlayerID":849101652,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42746","ServerKey":"pl181","X":684,"Y":592},{"Bonus":0,"Continent":"K65","ID":42747,"Name":"Wioska barbarzyƄska","PlayerID":7860453,"Points":5439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42747","ServerKey":"pl181","X":541,"Y":695},{"Bonus":0,"Continent":"K53","ID":42748,"Name":"Elo Elo 2","PlayerID":699016994,"Points":9672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42748","ServerKey":"pl181","X":310,"Y":583},{"Bonus":0,"Continent":"K43","ID":42749,"Name":"Melon2","PlayerID":699659708,"Points":5724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42749","ServerKey":"pl181","X":310,"Y":431},{"Bonus":0,"Continent":"K65","ID":42750,"Name":"139 invidia","PlayerID":849093426,"Points":8226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42750","ServerKey":"pl181","X":535,"Y":695},{"Bonus":1,"Continent":"K34","ID":42751,"Name":"aaaa","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42751","ServerKey":"pl181","X":412,"Y":315},{"Bonus":0,"Continent":"K33","ID":42752,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42752","ServerKey":"pl181","X":327,"Y":390},{"Bonus":0,"Continent":"K56","ID":42753,"Name":"A14","PlayerID":848995478,"Points":4375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42753","ServerKey":"pl181","X":698,"Y":555},{"Bonus":0,"Continent":"K66","ID":42754,"Name":"HAPERT","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42754","ServerKey":"pl181","X":623,"Y":662},{"Bonus":0,"Continent":"K35","ID":42755,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42755","ServerKey":"pl181","X":572,"Y":312},{"Bonus":0,"Continent":"K33","ID":42756,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":4497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42756","ServerKey":"pl181","X":343,"Y":376},{"Bonus":0,"Continent":"K74","ID":42757,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":3988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42757","ServerKey":"pl181","X":496,"Y":704},{"Bonus":0,"Continent":"K63","ID":42758,"Name":"O058","PlayerID":272173,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42758","ServerKey":"pl181","X":344,"Y":630},{"Bonus":0,"Continent":"K64","ID":42759,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42759","ServerKey":"pl181","X":438,"Y":689},{"Bonus":0,"Continent":"K24","ID":42760,"Name":".achim.","PlayerID":6936607,"Points":5659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42760","ServerKey":"pl181","X":489,"Y":299},{"Bonus":0,"Continent":"K42","ID":42761,"Name":"FENDI","PlayerID":699794765,"Points":2194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42761","ServerKey":"pl181","X":299,"Y":466},{"Bonus":0,"Continent":"K35","ID":42762,"Name":"MojeDnoToWaszSzczyt","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42762","ServerKey":"pl181","X":561,"Y":364},{"Bonus":0,"Continent":"K63","ID":42763,"Name":"x001","PlayerID":6948793,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42763","ServerKey":"pl181","X":353,"Y":643},{"Bonus":0,"Continent":"K66","ID":42764,"Name":"NiePyskuj","PlayerID":848909464,"Points":9275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42764","ServerKey":"pl181","X":624,"Y":656},{"Bonus":0,"Continent":"K63","ID":42765,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":9424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42765","ServerKey":"pl181","X":362,"Y":651},{"Bonus":0,"Continent":"K65","ID":42766,"Name":"Modrzejowice","PlayerID":698723158,"Points":9153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42766","ServerKey":"pl181","X":575,"Y":696},{"Bonus":5,"Continent":"K56","ID":42767,"Name":"TWIERDZA .:003:.","PlayerID":7154207,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42767","ServerKey":"pl181","X":694,"Y":572},{"Bonus":0,"Continent":"K36","ID":42768,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":4166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42768","ServerKey":"pl181","X":666,"Y":378},{"Bonus":0,"Continent":"K53","ID":42769,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42769","ServerKey":"pl181","X":356,"Y":536},{"Bonus":0,"Continent":"K65","ID":42770,"Name":"Wioska Wiki 4","PlayerID":849100354,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42770","ServerKey":"pl181","X":523,"Y":698},{"Bonus":0,"Continent":"K66","ID":42771,"Name":"#K66 0002","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42771","ServerKey":"pl181","X":610,"Y":674},{"Bonus":0,"Continent":"K56","ID":42772,"Name":"075","PlayerID":699316421,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42772","ServerKey":"pl181","X":693,"Y":548},{"Bonus":0,"Continent":"K36","ID":42773,"Name":"0100","PlayerID":698416970,"Points":5100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42773","ServerKey":"pl181","X":676,"Y":395},{"Bonus":0,"Continent":"K25","ID":42774,"Name":"Winterhome.028","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42774","ServerKey":"pl181","X":502,"Y":294},{"Bonus":5,"Continent":"K46","ID":42775,"Name":"WS 03","PlayerID":699524891,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42775","ServerKey":"pl181","X":697,"Y":441},{"Bonus":0,"Continent":"K53","ID":42776,"Name":"C0196","PlayerID":8841266,"Points":6863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42776","ServerKey":"pl181","X":303,"Y":529},{"Bonus":0,"Continent":"K64","ID":42777,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42777","ServerKey":"pl181","X":423,"Y":692},{"Bonus":0,"Continent":"K63","ID":42778,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42778","ServerKey":"pl181","X":386,"Y":675},{"Bonus":0,"Continent":"K46","ID":42779,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":4569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42779","ServerKey":"pl181","X":696,"Y":457},{"Bonus":0,"Continent":"K43","ID":42780,"Name":"z181_24","PlayerID":393668,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42780","ServerKey":"pl181","X":304,"Y":437},{"Bonus":0,"Continent":"K35","ID":42781,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42781","ServerKey":"pl181","X":558,"Y":322},{"Bonus":0,"Continent":"K34","ID":42782,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42782","ServerKey":"pl181","X":418,"Y":320},{"Bonus":0,"Continent":"K53","ID":42783,"Name":"006. Cicha","PlayerID":3475079,"Points":7860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42783","ServerKey":"pl181","X":320,"Y":587},{"Bonus":0,"Continent":"K56","ID":42784,"Name":"Wioska Zorro 024","PlayerID":849080702,"Points":5140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42784","ServerKey":"pl181","X":675,"Y":595},{"Bonus":0,"Continent":"K33","ID":42785,"Name":"Wow8","PlayerID":699730714,"Points":7870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42785","ServerKey":"pl181","X":367,"Y":348},{"Bonus":0,"Continent":"K33","ID":42786,"Name":"0009","PlayerID":699644448,"Points":2980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42786","ServerKey":"pl181","X":359,"Y":356},{"Bonus":0,"Continent":"K43","ID":42788,"Name":"Wioska Totomoose 5","PlayerID":849100744,"Points":748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42788","ServerKey":"pl181","X":313,"Y":427},{"Bonus":0,"Continent":"K42","ID":42789,"Name":"EO EO","PlayerID":699697558,"Points":8839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42789","ServerKey":"pl181","X":294,"Y":499},{"Bonus":0,"Continent":"K34","ID":42790,"Name":"[0144]","PlayerID":8630972,"Points":9191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42790","ServerKey":"pl181","X":440,"Y":302},{"Bonus":0,"Continent":"K43","ID":42791,"Name":"Wioska Totomoose 4","PlayerID":849100744,"Points":2577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42791","ServerKey":"pl181","X":314,"Y":427},{"Bonus":0,"Continent":"K65","ID":42792,"Name":"Retkinia","PlayerID":849100612,"Points":3125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42792","ServerKey":"pl181","X":585,"Y":684},{"Bonus":0,"Continent":"K46","ID":42793,"Name":"Wioska barbarzyƄska","PlayerID":848976034,"Points":3953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42793","ServerKey":"pl181","X":697,"Y":438},{"Bonus":0,"Continent":"K63","ID":42794,"Name":"C053","PlayerID":699383279,"Points":9425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42794","ServerKey":"pl181","X":379,"Y":657},{"Bonus":0,"Continent":"K46","ID":42795,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42795","ServerKey":"pl181","X":694,"Y":437},{"Bonus":0,"Continent":"K36","ID":42796,"Name":"**25**","PlayerID":849098782,"Points":5054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42796","ServerKey":"pl181","X":643,"Y":357},{"Bonus":0,"Continent":"K56","ID":42797,"Name":"Didek","PlayerID":849070946,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42797","ServerKey":"pl181","X":688,"Y":585},{"Bonus":0,"Continent":"K75","ID":42798,"Name":"083 invidia","PlayerID":849093426,"Points":5508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42798","ServerKey":"pl181","X":518,"Y":703},{"Bonus":0,"Continent":"K33","ID":42799,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42799","ServerKey":"pl181","X":384,"Y":333},{"Bonus":0,"Continent":"K33","ID":42801,"Name":"*123*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42801","ServerKey":"pl181","X":355,"Y":357},{"Bonus":0,"Continent":"K36","ID":42802,"Name":"-024- S","PlayerID":849099276,"Points":2020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42802","ServerKey":"pl181","X":619,"Y":343},{"Bonus":0,"Continent":"K53","ID":42803,"Name":"030","PlayerID":849098688,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42803","ServerKey":"pl181","X":311,"Y":567},{"Bonus":0,"Continent":"K25","ID":42804,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":8313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42804","ServerKey":"pl181","X":507,"Y":297},{"Bonus":0,"Continent":"K46","ID":42805,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42805","ServerKey":"pl181","X":674,"Y":412},{"Bonus":0,"Continent":"K74","ID":42806,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":4877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42806","ServerKey":"pl181","X":496,"Y":703},{"Bonus":0,"Continent":"K63","ID":42807,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":6740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42807","ServerKey":"pl181","X":389,"Y":668},{"Bonus":0,"Continent":"K52","ID":42809,"Name":"[0223]","PlayerID":8630972,"Points":6920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42809","ServerKey":"pl181","X":294,"Y":506},{"Bonus":0,"Continent":"K43","ID":42810,"Name":"Spontan","PlayerID":393668,"Points":7383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42810","ServerKey":"pl181","X":339,"Y":442},{"Bonus":0,"Continent":"K43","ID":42811,"Name":"Cezowy grĂłd","PlayerID":699377401,"Points":3397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42811","ServerKey":"pl181","X":319,"Y":421},{"Bonus":2,"Continent":"K65","ID":42812,"Name":"###006###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42812","ServerKey":"pl181","X":583,"Y":689},{"Bonus":0,"Continent":"K66","ID":42813,"Name":"018 GĂłrki RozbiĂłrki","PlayerID":849100994,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42813","ServerKey":"pl181","X":647,"Y":645},{"Bonus":0,"Continent":"K33","ID":42814,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42814","ServerKey":"pl181","X":388,"Y":331},{"Bonus":0,"Continent":"K46","ID":42815,"Name":"28. ZBARAĆ»","PlayerID":699804790,"Points":5525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42815","ServerKey":"pl181","X":696,"Y":470},{"Bonus":0,"Continent":"K53","ID":42816,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42816","ServerKey":"pl181","X":323,"Y":589},{"Bonus":0,"Continent":"K64","ID":42818,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42818","ServerKey":"pl181","X":428,"Y":686},{"Bonus":0,"Continent":"K66","ID":42819,"Name":"010. GĂłrki Kamienne","PlayerID":849100994,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42819","ServerKey":"pl181","X":647,"Y":643},{"Bonus":0,"Continent":"K43","ID":42820,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42820","ServerKey":"pl181","X":302,"Y":496},{"Bonus":6,"Continent":"K42","ID":42821,"Name":"Dream on","PlayerID":698962117,"Points":6155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42821","ServerKey":"pl181","X":296,"Y":479},{"Bonus":0,"Continent":"K43","ID":42822,"Name":"WB09","PlayerID":356642,"Points":5142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42822","ServerKey":"pl181","X":325,"Y":405},{"Bonus":0,"Continent":"K33","ID":42823,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":7610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42823","ServerKey":"pl181","X":398,"Y":330},{"Bonus":0,"Continent":"K64","ID":42824,"Name":"0017 Wioska barbarzyƄska","PlayerID":849037407,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42824","ServerKey":"pl181","X":443,"Y":699},{"Bonus":0,"Continent":"K64","ID":42825,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42825","ServerKey":"pl181","X":422,"Y":684},{"Bonus":0,"Continent":"K33","ID":42826,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42826","ServerKey":"pl181","X":333,"Y":386},{"Bonus":0,"Continent":"K34","ID":42828,"Name":"***** ***","PlayerID":699694284,"Points":8477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42828","ServerKey":"pl181","X":420,"Y":311},{"Bonus":0,"Continent":"K34","ID":42829,"Name":"???","PlayerID":698489071,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42829","ServerKey":"pl181","X":485,"Y":300},{"Bonus":0,"Continent":"K63","ID":42830,"Name":"055 - Nowy Początek...","PlayerID":698908184,"Points":7149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42830","ServerKey":"pl181","X":353,"Y":642},{"Bonus":0,"Continent":"K52","ID":42831,"Name":"[0224]","PlayerID":8630972,"Points":8101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42831","ServerKey":"pl181","X":299,"Y":509},{"Bonus":0,"Continent":"K46","ID":42832,"Name":"0073","PlayerID":698416970,"Points":4743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42832","ServerKey":"pl181","X":682,"Y":418},{"Bonus":0,"Continent":"K46","ID":42833,"Name":"C.016","PlayerID":9188016,"Points":5383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42833","ServerKey":"pl181","X":699,"Y":485},{"Bonus":7,"Continent":"K46","ID":42834,"Name":"Osada koczownikĂłw","PlayerID":1715091,"Points":9576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42834","ServerKey":"pl181","X":694,"Y":432},{"Bonus":0,"Continent":"K35","ID":42835,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":3539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42835","ServerKey":"pl181","X":554,"Y":301},{"Bonus":0,"Continent":"K46","ID":42836,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42836","ServerKey":"pl181","X":674,"Y":406},{"Bonus":0,"Continent":"K43","ID":42837,"Name":"Ć»elazowy grĂłd","PlayerID":699377401,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42837","ServerKey":"pl181","X":317,"Y":414},{"Bonus":0,"Continent":"K43","ID":42838,"Name":"Helowy grĂłd","PlayerID":699377401,"Points":4505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42838","ServerKey":"pl181","X":317,"Y":419},{"Bonus":0,"Continent":"K33","ID":42839,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42839","ServerKey":"pl181","X":323,"Y":397},{"Bonus":0,"Continent":"K46","ID":42840,"Name":"17.SEVENTEEN","PlayerID":9180206,"Points":8891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42840","ServerKey":"pl181","X":685,"Y":415},{"Bonus":0,"Continent":"K66","ID":42842,"Name":"Wygwizdowa 004","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42842","ServerKey":"pl181","X":640,"Y":648},{"Bonus":0,"Continent":"K53","ID":42843,"Name":"barbarzyƄska","PlayerID":849099258,"Points":3011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42843","ServerKey":"pl181","X":314,"Y":566},{"Bonus":0,"Continent":"K33","ID":42844,"Name":"0001","PlayerID":699660539,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42844","ServerKey":"pl181","X":375,"Y":340},{"Bonus":0,"Continent":"K43","ID":42845,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42845","ServerKey":"pl181","X":300,"Y":461},{"Bonus":0,"Continent":"K63","ID":42846,"Name":"C051","PlayerID":699383279,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42846","ServerKey":"pl181","X":367,"Y":657},{"Bonus":0,"Continent":"K36","ID":42847,"Name":"ƚlimak 11","PlayerID":699098531,"Points":9339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42847","ServerKey":"pl181","X":606,"Y":333},{"Bonus":0,"Continent":"K63","ID":42848,"Name":"O050","PlayerID":272173,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42848","ServerKey":"pl181","X":346,"Y":626},{"Bonus":0,"Continent":"K33","ID":42849,"Name":"New Land 02","PlayerID":849064752,"Points":5897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42849","ServerKey":"pl181","X":332,"Y":383},{"Bonus":0,"Continent":"K36","ID":42850,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":1780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42850","ServerKey":"pl181","X":634,"Y":344},{"Bonus":0,"Continent":"K65","ID":42851,"Name":"Wioska Wiki","PlayerID":849100354,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42851","ServerKey":"pl181","X":521,"Y":696},{"Bonus":0,"Continent":"K66","ID":42852,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42852","ServerKey":"pl181","X":650,"Y":629},{"Bonus":0,"Continent":"K35","ID":42853,"Name":"K35 - [030] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42853","ServerKey":"pl181","X":575,"Y":311},{"Bonus":0,"Continent":"K35","ID":42855,"Name":"AAA","PlayerID":1006847,"Points":5209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42855","ServerKey":"pl181","X":544,"Y":306},{"Bonus":0,"Continent":"K65","ID":42856,"Name":"#105 C","PlayerID":9037756,"Points":7220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42856","ServerKey":"pl181","X":530,"Y":673},{"Bonus":0,"Continent":"K25","ID":42857,"Name":"011","PlayerID":699208929,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42857","ServerKey":"pl181","X":523,"Y":297},{"Bonus":0,"Continent":"K66","ID":42858,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42858","ServerKey":"pl181","X":655,"Y":634},{"Bonus":0,"Continent":"K34","ID":42859,"Name":"265...Gulden","PlayerID":6920960,"Points":4713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42859","ServerKey":"pl181","X":459,"Y":304},{"Bonus":0,"Continent":"K63","ID":42860,"Name":"psycha sitting","PlayerID":699736927,"Points":6645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42860","ServerKey":"pl181","X":399,"Y":679},{"Bonus":0,"Continent":"K56","ID":42861,"Name":"E.02","PlayerID":699737356,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42861","ServerKey":"pl181","X":677,"Y":505},{"Bonus":0,"Continent":"K43","ID":42862,"Name":"KONOPISKA","PlayerID":8048374,"Points":9901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42862","ServerKey":"pl181","X":303,"Y":477},{"Bonus":0,"Continent":"K35","ID":42863,"Name":"1.Ernesto Hoosta","PlayerID":7758085,"Points":5614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42863","ServerKey":"pl181","X":524,"Y":304},{"Bonus":0,"Continent":"K65","ID":42864,"Name":"Wioska barbarzyƄska","PlayerID":6870350,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42864","ServerKey":"pl181","X":561,"Y":698},{"Bonus":0,"Continent":"K43","ID":42865,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42865","ServerKey":"pl181","X":309,"Y":447},{"Bonus":0,"Continent":"K36","ID":42866,"Name":"0087","PlayerID":698416970,"Points":8384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42866","ServerKey":"pl181","X":675,"Y":394},{"Bonus":2,"Continent":"K33","ID":42868,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42868","ServerKey":"pl181","X":323,"Y":394},{"Bonus":0,"Continent":"K35","ID":42869,"Name":"AAA","PlayerID":1006847,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42869","ServerKey":"pl181","X":544,"Y":303},{"Bonus":0,"Continent":"K33","ID":42870,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":7999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42870","ServerKey":"pl181","X":372,"Y":343},{"Bonus":0,"Continent":"K35","ID":42871,"Name":"AAA","PlayerID":1006847,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42871","ServerKey":"pl181","X":541,"Y":302},{"Bonus":0,"Continent":"K74","ID":42872,"Name":"081.","PlayerID":849034882,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42872","ServerKey":"pl181","X":455,"Y":702},{"Bonus":0,"Continent":"K56","ID":42873,"Name":"001","PlayerID":301602,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42873","ServerKey":"pl181","X":698,"Y":559},{"Bonus":0,"Continent":"K36","ID":42874,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":4049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42874","ServerKey":"pl181","X":630,"Y":340},{"Bonus":0,"Continent":"K42","ID":42875,"Name":"58 ggggggg","PlayerID":849018442,"Points":3482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42875","ServerKey":"pl181","X":295,"Y":474},{"Bonus":0,"Continent":"K33","ID":42876,"Name":"Wow18","PlayerID":849027025,"Points":3181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42876","ServerKey":"pl181","X":364,"Y":352},{"Bonus":0,"Continent":"K63","ID":42878,"Name":"O147","PlayerID":272173,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42878","ServerKey":"pl181","X":352,"Y":644},{"Bonus":0,"Continent":"K35","ID":42879,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42879","ServerKey":"pl181","X":559,"Y":311},{"Bonus":0,"Continent":"K75","ID":42880,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42880","ServerKey":"pl181","X":517,"Y":705},{"Bonus":0,"Continent":"K66","ID":42881,"Name":"Anfield","PlayerID":849096631,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42881","ServerKey":"pl181","X":668,"Y":617},{"Bonus":0,"Continent":"K66","ID":42882,"Name":"Zagroda8","PlayerID":6528152,"Points":6016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42882","ServerKey":"pl181","X":609,"Y":669},{"Bonus":0,"Continent":"K47","ID":42883,"Name":"Kuna","PlayerID":849099640,"Points":6877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42883","ServerKey":"pl181","X":704,"Y":483},{"Bonus":0,"Continent":"K35","ID":42884,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42884","ServerKey":"pl181","X":566,"Y":309},{"Bonus":0,"Continent":"K63","ID":42885,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42885","ServerKey":"pl181","X":363,"Y":651},{"Bonus":0,"Continent":"K34","ID":42886,"Name":"???","PlayerID":698489071,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42886","ServerKey":"pl181","X":478,"Y":300},{"Bonus":0,"Continent":"K57","ID":42887,"Name":"031","PlayerID":699150527,"Points":7306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42887","ServerKey":"pl181","X":703,"Y":519},{"Bonus":0,"Continent":"K66","ID":42888,"Name":"005","PlayerID":698234770,"Points":7123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42888","ServerKey":"pl181","X":647,"Y":633},{"Bonus":0,"Continent":"K66","ID":42889,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42889","ServerKey":"pl181","X":651,"Y":636},{"Bonus":0,"Continent":"K56","ID":42890,"Name":"TWIERDZA .:043:.","PlayerID":7154207,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42890","ServerKey":"pl181","X":692,"Y":570},{"Bonus":0,"Continent":"K66","ID":42891,"Name":"Wygwizdowa 003","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42891","ServerKey":"pl181","X":638,"Y":648},{"Bonus":0,"Continent":"K36","ID":42892,"Name":"Rafaleks","PlayerID":9291984,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42892","ServerKey":"pl181","X":636,"Y":352},{"Bonus":0,"Continent":"K57","ID":42893,"Name":"po doĆŒynkach","PlayerID":699150527,"Points":5680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42893","ServerKey":"pl181","X":706,"Y":519},{"Bonus":0,"Continent":"K35","ID":42894,"Name":"XDX","PlayerID":699098531,"Points":7491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42894","ServerKey":"pl181","X":599,"Y":324},{"Bonus":0,"Continent":"K65","ID":42895,"Name":"###002###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42895","ServerKey":"pl181","X":592,"Y":687},{"Bonus":0,"Continent":"K66","ID":42896,"Name":"Zagroda3","PlayerID":6528152,"Points":8600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42896","ServerKey":"pl181","X":604,"Y":674},{"Bonus":0,"Continent":"K65","ID":42897,"Name":"- 254 - SS","PlayerID":849018239,"Points":6190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42897","ServerKey":"pl181","X":552,"Y":698},{"Bonus":0,"Continent":"K24","ID":42898,"Name":"????","PlayerID":698489071,"Points":4605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42898","ServerKey":"pl181","X":466,"Y":298},{"Bonus":0,"Continent":"K63","ID":42899,"Name":"O124","PlayerID":272173,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42899","ServerKey":"pl181","X":334,"Y":622},{"Bonus":0,"Continent":"K35","ID":42900,"Name":"Wioska 5","PlayerID":849050849,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42900","ServerKey":"pl181","X":502,"Y":300},{"Bonus":0,"Continent":"K66","ID":42901,"Name":"Wioska Ania12345","PlayerID":698234770,"Points":9929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42901","ServerKey":"pl181","X":647,"Y":632},{"Bonus":0,"Continent":"K64","ID":42902,"Name":"0031 Kasko14","PlayerID":849037407,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42902","ServerKey":"pl181","X":450,"Y":695},{"Bonus":0,"Continent":"K24","ID":42904,"Name":"048KP","PlayerID":849063849,"Points":6370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42904","ServerKey":"pl181","X":486,"Y":293},{"Bonus":0,"Continent":"K65","ID":42905,"Name":"virginRiver","PlayerID":699828685,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42905","ServerKey":"pl181","X":571,"Y":623},{"Bonus":0,"Continent":"K64","ID":42906,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42906","ServerKey":"pl181","X":436,"Y":690},{"Bonus":0,"Continent":"K35","ID":42907,"Name":"Wioska krumlow 15","PlayerID":699098531,"Points":2281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42907","ServerKey":"pl181","X":597,"Y":322},{"Bonus":0,"Continent":"K56","ID":42908,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":5403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42908","ServerKey":"pl181","X":698,"Y":542},{"Bonus":0,"Continent":"K63","ID":42909,"Name":"O011","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42909","ServerKey":"pl181","X":342,"Y":634},{"Bonus":0,"Continent":"K53","ID":42910,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":3229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42910","ServerKey":"pl181","X":317,"Y":583},{"Bonus":0,"Continent":"K64","ID":42911,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42911","ServerKey":"pl181","X":409,"Y":677},{"Bonus":0,"Continent":"K66","ID":42912,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42912","ServerKey":"pl181","X":656,"Y":633},{"Bonus":0,"Continent":"K66","ID":42913,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42913","ServerKey":"pl181","X":661,"Y":627},{"Bonus":0,"Continent":"K36","ID":42914,"Name":"Wioska barbarzyƄska","PlayerID":848973715,"Points":2715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42914","ServerKey":"pl181","X":638,"Y":355},{"Bonus":0,"Continent":"K66","ID":42916,"Name":"044","PlayerID":699099811,"Points":8599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42916","ServerKey":"pl181","X":650,"Y":631},{"Bonus":0,"Continent":"K43","ID":42917,"Name":"Kagusiowo 11","PlayerID":849101268,"Points":3859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42917","ServerKey":"pl181","X":301,"Y":442},{"Bonus":0,"Continent":"K64","ID":42918,"Name":"New World","PlayerID":698152377,"Points":9942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42918","ServerKey":"pl181","X":432,"Y":691},{"Bonus":0,"Continent":"K36","ID":42919,"Name":"East 3","PlayerID":1086351,"Points":5368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42919","ServerKey":"pl181","X":663,"Y":372},{"Bonus":0,"Continent":"K56","ID":42920,"Name":"B.03","PlayerID":699737356,"Points":9781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42920","ServerKey":"pl181","X":670,"Y":502},{"Bonus":0,"Continent":"K57","ID":42921,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42921","ServerKey":"pl181","X":701,"Y":521},{"Bonus":0,"Continent":"K65","ID":42923,"Name":"2.Caceres","PlayerID":698215322,"Points":10605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42923","ServerKey":"pl181","X":583,"Y":681},{"Bonus":0,"Continent":"K66","ID":42924,"Name":"Wioska barbarzyƄska","PlayerID":3467919,"Points":8159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42924","ServerKey":"pl181","X":669,"Y":604},{"Bonus":0,"Continent":"K66","ID":42925,"Name":"CALL 1049","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42925","ServerKey":"pl181","X":655,"Y":628},{"Bonus":0,"Continent":"K33","ID":42926,"Name":"Szlachcic","PlayerID":3484132,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42926","ServerKey":"pl181","X":387,"Y":338},{"Bonus":0,"Continent":"K34","ID":42927,"Name":"205...segador","PlayerID":6920960,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42927","ServerKey":"pl181","X":458,"Y":303},{"Bonus":0,"Continent":"K24","ID":42928,"Name":".achim.","PlayerID":6936607,"Points":6665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42928","ServerKey":"pl181","X":471,"Y":296},{"Bonus":0,"Continent":"K66","ID":42929,"Name":"#104#","PlayerID":692803,"Points":8717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42929","ServerKey":"pl181","X":621,"Y":658},{"Bonus":0,"Continent":"K63","ID":42930,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42930","ServerKey":"pl181","X":382,"Y":661},{"Bonus":0,"Continent":"K53","ID":42931,"Name":"Rogatki2","PlayerID":699265922,"Points":6333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42931","ServerKey":"pl181","X":309,"Y":561},{"Bonus":0,"Continent":"K64","ID":42932,"Name":"065","PlayerID":849099876,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42932","ServerKey":"pl181","X":409,"Y":683},{"Bonus":0,"Continent":"K64","ID":42933,"Name":"0018 Wioska barbarzyƄska","PlayerID":849037407,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42933","ServerKey":"pl181","X":439,"Y":698},{"Bonus":0,"Continent":"K33","ID":42934,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42934","ServerKey":"pl181","X":344,"Y":371},{"Bonus":9,"Continent":"K42","ID":42935,"Name":"Dream on","PlayerID":698962117,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42935","ServerKey":"pl181","X":293,"Y":493},{"Bonus":0,"Continent":"K56","ID":42936,"Name":"TWIERDZA .:078:.","PlayerID":7154207,"Points":8737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42936","ServerKey":"pl181","X":690,"Y":582},{"Bonus":0,"Continent":"K56","ID":42937,"Name":"TWIERDZA .:038:.","PlayerID":7154207,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42937","ServerKey":"pl181","X":691,"Y":574},{"Bonus":0,"Continent":"K35","ID":42938,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42938","ServerKey":"pl181","X":582,"Y":312},{"Bonus":0,"Continent":"K75","ID":42939,"Name":"008 sƂaby jestem","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42939","ServerKey":"pl181","X":530,"Y":701},{"Bonus":0,"Continent":"K52","ID":42940,"Name":"C0200","PlayerID":8841266,"Points":9395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42940","ServerKey":"pl181","X":298,"Y":526},{"Bonus":0,"Continent":"K43","ID":42941,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42941","ServerKey":"pl181","X":302,"Y":460},{"Bonus":0,"Continent":"K35","ID":42942,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42942","ServerKey":"pl181","X":571,"Y":308},{"Bonus":0,"Continent":"K53","ID":42943,"Name":"Wioska lll","PlayerID":699671197,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42943","ServerKey":"pl181","X":316,"Y":581},{"Bonus":0,"Continent":"K63","ID":42944,"Name":"Ziemianka Ruskich 3","PlayerID":6948793,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42944","ServerKey":"pl181","X":360,"Y":643},{"Bonus":0,"Continent":"K63","ID":42945,"Name":"020. Wioska barbarzyƄska","PlayerID":698908184,"Points":8563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42945","ServerKey":"pl181","X":351,"Y":639},{"Bonus":0,"Continent":"K46","ID":42946,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42946","ServerKey":"pl181","X":674,"Y":405},{"Bonus":0,"Continent":"K34","ID":42947,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42947","ServerKey":"pl181","X":410,"Y":321},{"Bonus":3,"Continent":"K43","ID":42948,"Name":"ZA10","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42948","ServerKey":"pl181","X":320,"Y":412},{"Bonus":0,"Continent":"K74","ID":42949,"Name":"FP019","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42949","ServerKey":"pl181","X":475,"Y":704},{"Bonus":0,"Continent":"K65","ID":42950,"Name":"- 258 - SS","PlayerID":849018239,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42950","ServerKey":"pl181","X":560,"Y":697},{"Bonus":0,"Continent":"K35","ID":42951,"Name":"Wioska R.R.","PlayerID":699072129,"Points":6354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42951","ServerKey":"pl181","X":547,"Y":301},{"Bonus":0,"Continent":"K35","ID":42952,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":9103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42952","ServerKey":"pl181","X":548,"Y":304},{"Bonus":0,"Continent":"K66","ID":42953,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":4320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42953","ServerKey":"pl181","X":611,"Y":664},{"Bonus":0,"Continent":"K36","ID":42954,"Name":"[*] zƂyy banan [*]","PlayerID":9291984,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42954","ServerKey":"pl181","X":629,"Y":346},{"Bonus":2,"Continent":"K42","ID":42955,"Name":"Dream on","PlayerID":698962117,"Points":6437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42955","ServerKey":"pl181","X":294,"Y":487},{"Bonus":0,"Continent":"K46","ID":42956,"Name":"B#025","PlayerID":2065730,"Points":9161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42956","ServerKey":"pl181","X":695,"Y":435},{"Bonus":0,"Continent":"K55","ID":42957,"Name":"096","PlayerID":699351301,"Points":8467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42957","ServerKey":"pl181","X":524,"Y":505},{"Bonus":0,"Continent":"K34","ID":42958,"Name":"Wioska barbarzyƄska","PlayerID":849100399,"Points":6117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42958","ServerKey":"pl181","X":425,"Y":312},{"Bonus":0,"Continent":"K34","ID":42959,"Name":"@04@","PlayerID":699483429,"Points":7604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42959","ServerKey":"pl181","X":406,"Y":326},{"Bonus":0,"Continent":"K47","ID":42960,"Name":"006","PlayerID":942959,"Points":3315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42960","ServerKey":"pl181","X":706,"Y":487},{"Bonus":0,"Continent":"K24","ID":42961,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":4690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42961","ServerKey":"pl181","X":469,"Y":296},{"Bonus":0,"Continent":"K35","ID":42962,"Name":"val2","PlayerID":7340529,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42962","ServerKey":"pl181","X":586,"Y":322},{"Bonus":0,"Continent":"K36","ID":42963,"Name":"Na KraƄcu ƚwiata 014","PlayerID":9291984,"Points":4153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42963","ServerKey":"pl181","X":636,"Y":348},{"Bonus":0,"Continent":"K74","ID":42964,"Name":"008. Night Raid","PlayerID":699684062,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42964","ServerKey":"pl181","X":491,"Y":706},{"Bonus":0,"Continent":"K47","ID":42965,"Name":"B005 Wioska FUZA","PlayerID":113796,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42965","ServerKey":"pl181","X":703,"Y":460},{"Bonus":0,"Continent":"K56","ID":42966,"Name":"TWIERDZA .:014:.","PlayerID":7154207,"Points":10539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42966","ServerKey":"pl181","X":686,"Y":566},{"Bonus":0,"Continent":"K56","ID":42968,"Name":"005","PlayerID":301602,"Points":5532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42968","ServerKey":"pl181","X":698,"Y":560},{"Bonus":0,"Continent":"K57","ID":42969,"Name":"Wioska 006","PlayerID":2999957,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42969","ServerKey":"pl181","X":701,"Y":522},{"Bonus":0,"Continent":"K64","ID":42970,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42970","ServerKey":"pl181","X":415,"Y":681},{"Bonus":0,"Continent":"K24","ID":42973,"Name":"????","PlayerID":698489071,"Points":6296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42973","ServerKey":"pl181","X":489,"Y":295},{"Bonus":0,"Continent":"K42","ID":42974,"Name":"007","PlayerID":2418364,"Points":9686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42974","ServerKey":"pl181","X":297,"Y":480},{"Bonus":0,"Continent":"K33","ID":42975,"Name":"Szlachcic","PlayerID":3484132,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42975","ServerKey":"pl181","X":384,"Y":337},{"Bonus":1,"Continent":"K43","ID":42976,"Name":"Osada koczownikĂłw","PlayerID":393668,"Points":6645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42976","ServerKey":"pl181","X":305,"Y":447},{"Bonus":0,"Continent":"K56","ID":42978,"Name":"A16","PlayerID":848995478,"Points":6419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42978","ServerKey":"pl181","X":693,"Y":558},{"Bonus":0,"Continent":"K54","ID":42979,"Name":"KIELBA 088","PlayerID":699342219,"Points":10253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42979","ServerKey":"pl181","X":447,"Y":573},{"Bonus":0,"Continent":"K64","ID":42980,"Name":"018","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42980","ServerKey":"pl181","X":421,"Y":687},{"Bonus":0,"Continent":"K43","ID":42982,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":2979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42982","ServerKey":"pl181","X":301,"Y":460},{"Bonus":0,"Continent":"K56","ID":42983,"Name":"Wioska Zorro 006","PlayerID":849080702,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42983","ServerKey":"pl181","X":674,"Y":597},{"Bonus":0,"Continent":"K46","ID":42984,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42984","ServerKey":"pl181","X":685,"Y":412},{"Bonus":0,"Continent":"K53","ID":42985,"Name":"033","PlayerID":9280477,"Points":6140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42985","ServerKey":"pl181","X":304,"Y":560},{"Bonus":0,"Continent":"K43","ID":42986,"Name":"Miedziany grĂłd","PlayerID":699377401,"Points":10298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42986","ServerKey":"pl181","X":320,"Y":417},{"Bonus":0,"Continent":"K63","ID":42987,"Name":"C114","PlayerID":699383279,"Points":10193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42987","ServerKey":"pl181","X":364,"Y":648},{"Bonus":0,"Continent":"K36","ID":42988,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":3923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42988","ServerKey":"pl181","X":646,"Y":365},{"Bonus":0,"Continent":"K56","ID":42990,"Name":"TWIERDZA .:011:.","PlayerID":7154207,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42990","ServerKey":"pl181","X":688,"Y":572},{"Bonus":0,"Continent":"K46","ID":42991,"Name":"B#001","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42991","ServerKey":"pl181","X":694,"Y":452},{"Bonus":0,"Continent":"K56","ID":42992,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":6070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42992","ServerKey":"pl181","X":693,"Y":561},{"Bonus":0,"Continent":"K36","ID":42993,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42993","ServerKey":"pl181","X":669,"Y":394},{"Bonus":0,"Continent":"K46","ID":42994,"Name":"Nowy rozdziaƂ?","PlayerID":699785935,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42994","ServerKey":"pl181","X":697,"Y":433},{"Bonus":0,"Continent":"K47","ID":42995,"Name":"026. Uƛmiech :)","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42995","ServerKey":"pl181","X":701,"Y":471},{"Bonus":4,"Continent":"K52","ID":42996,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42996","ServerKey":"pl181","X":295,"Y":517},{"Bonus":0,"Continent":"K43","ID":42997,"Name":"Out of Touch","PlayerID":698962117,"Points":9485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42997","ServerKey":"pl181","X":316,"Y":422},{"Bonus":0,"Continent":"K34","ID":42998,"Name":"[0156]","PlayerID":8630972,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42998","ServerKey":"pl181","X":450,"Y":304},{"Bonus":3,"Continent":"K36","ID":42999,"Name":"XDX","PlayerID":699098531,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=42999","ServerKey":"pl181","X":611,"Y":330},{"Bonus":0,"Continent":"K43","ID":43000,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":1288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43000","ServerKey":"pl181","X":306,"Y":446},{"Bonus":0,"Continent":"K33","ID":43001,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43001","ServerKey":"pl181","X":324,"Y":392},{"Bonus":6,"Continent":"K66","ID":43002,"Name":"Gazun","PlayerID":848903260,"Points":3428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43002","ServerKey":"pl181","X":644,"Y":645},{"Bonus":0,"Continent":"K36","ID":43004,"Name":"020","PlayerID":698635863,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43004","ServerKey":"pl181","X":666,"Y":382},{"Bonus":0,"Continent":"K36","ID":43006,"Name":"!36 85 Putna","PlayerID":698361257,"Points":7233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43006","ServerKey":"pl181","X":658,"Y":381},{"Bonus":2,"Continent":"K24","ID":43007,"Name":".achim.","PlayerID":6936607,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43007","ServerKey":"pl181","X":476,"Y":295},{"Bonus":0,"Continent":"K66","ID":43008,"Name":"015 GĂłrki Marmurki","PlayerID":849100994,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43008","ServerKey":"pl181","X":652,"Y":632},{"Bonus":0,"Continent":"K25","ID":43009,"Name":"Winterhome.030","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43009","ServerKey":"pl181","X":501,"Y":292},{"Bonus":7,"Continent":"K56","ID":43010,"Name":"B12","PlayerID":848995478,"Points":4207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43010","ServerKey":"pl181","X":699,"Y":533},{"Bonus":0,"Continent":"K56","ID":43011,"Name":"S005","PlayerID":8428196,"Points":7941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43011","ServerKey":"pl181","X":682,"Y":587},{"Bonus":0,"Continent":"K57","ID":43012,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":9268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43012","ServerKey":"pl181","X":704,"Y":524},{"Bonus":0,"Continent":"K66","ID":43015,"Name":"- Gracadabra -","PlayerID":849009623,"Points":2600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43015","ServerKey":"pl181","X":669,"Y":617},{"Bonus":0,"Continent":"K56","ID":43016,"Name":"Wioska 24","PlayerID":849101162,"Points":2761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43016","ServerKey":"pl181","X":681,"Y":585},{"Bonus":0,"Continent":"K42","ID":43017,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43017","ServerKey":"pl181","X":298,"Y":457},{"Bonus":0,"Continent":"K24","ID":43018,"Name":"????","PlayerID":698489071,"Points":10754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43018","ServerKey":"pl181","X":481,"Y":298},{"Bonus":0,"Continent":"K53","ID":43019,"Name":"Elo Elo 6","PlayerID":699016994,"Points":7936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43019","ServerKey":"pl181","X":313,"Y":579},{"Bonus":0,"Continent":"K46","ID":43021,"Name":"Wioska karteƄska","PlayerID":848976034,"Points":3433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43021","ServerKey":"pl181","X":695,"Y":439},{"Bonus":0,"Continent":"K74","ID":43022,"Name":"037 Night Raid","PlayerID":699684062,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43022","ServerKey":"pl181","X":485,"Y":707},{"Bonus":0,"Continent":"K64","ID":43023,"Name":"0037 Kasko14","PlayerID":849037407,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43023","ServerKey":"pl181","X":448,"Y":698},{"Bonus":1,"Continent":"K56","ID":43024,"Name":"Osada koczownikĂłw","PlayerID":3364735,"Points":6591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43024","ServerKey":"pl181","X":699,"Y":502},{"Bonus":0,"Continent":"K65","ID":43025,"Name":"###082###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43025","ServerKey":"pl181","X":581,"Y":688},{"Bonus":0,"Continent":"K57","ID":43026,"Name":"0106","PlayerID":699429153,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43026","ServerKey":"pl181","X":706,"Y":503},{"Bonus":0,"Continent":"K66","ID":43027,"Name":"Tarkos","PlayerID":1900364,"Points":8910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43027","ServerKey":"pl181","X":651,"Y":603},{"Bonus":0,"Continent":"K35","ID":43028,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43028","ServerKey":"pl181","X":560,"Y":302},{"Bonus":0,"Continent":"K64","ID":43029,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43029","ServerKey":"pl181","X":433,"Y":696},{"Bonus":0,"Continent":"K66","ID":43030,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43030","ServerKey":"pl181","X":656,"Y":623},{"Bonus":0,"Continent":"K53","ID":43031,"Name":"026","PlayerID":9280477,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43031","ServerKey":"pl181","X":304,"Y":545},{"Bonus":6,"Continent":"K34","ID":43032,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43032","ServerKey":"pl181","X":413,"Y":313},{"Bonus":0,"Continent":"K43","ID":43033,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43033","ServerKey":"pl181","X":303,"Y":438},{"Bonus":0,"Continent":"K56","ID":43034,"Name":"Olesno","PlayerID":848932879,"Points":2330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43034","ServerKey":"pl181","X":693,"Y":545},{"Bonus":0,"Continent":"K34","ID":43035,"Name":"224","PlayerID":698365960,"Points":11874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43035","ServerKey":"pl181","X":423,"Y":308},{"Bonus":0,"Continent":"K64","ID":43036,"Name":"A000","PlayerID":699725436,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43036","ServerKey":"pl181","X":467,"Y":698},{"Bonus":0,"Continent":"K65","ID":43037,"Name":"###083###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43037","ServerKey":"pl181","X":593,"Y":675},{"Bonus":0,"Continent":"K57","ID":43038,"Name":"068 ZieloneOczko4","PlayerID":2135129,"Points":6622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43038","ServerKey":"pl181","X":705,"Y":511},{"Bonus":0,"Continent":"K53","ID":43039,"Name":"Hello there","PlayerID":6180190,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43039","ServerKey":"pl181","X":319,"Y":591},{"Bonus":0,"Continent":"K35","ID":43040,"Name":"KsiÄ™ĆŒyc","PlayerID":699797805,"Points":3883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43040","ServerKey":"pl181","X":551,"Y":334},{"Bonus":0,"Continent":"K53","ID":43041,"Name":"Elo Elo 5","PlayerID":699016994,"Points":9186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43041","ServerKey":"pl181","X":312,"Y":582},{"Bonus":0,"Continent":"K57","ID":43042,"Name":"Wioska Turystyczna 010","PlayerID":7588382,"Points":1805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43042","ServerKey":"pl181","X":701,"Y":512},{"Bonus":0,"Continent":"K34","ID":43043,"Name":"012.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43043","ServerKey":"pl181","X":426,"Y":311},{"Bonus":9,"Continent":"K66","ID":43044,"Name":"012. GĂłrki Ć»wirowe","PlayerID":849100994,"Points":7354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43044","ServerKey":"pl181","X":648,"Y":642},{"Bonus":0,"Continent":"K56","ID":43045,"Name":"058. Ɓomnica","PlayerID":1601917,"Points":7668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43045","ServerKey":"pl181","X":699,"Y":548},{"Bonus":0,"Continent":"K33","ID":43046,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43046","ServerKey":"pl181","X":342,"Y":366},{"Bonus":0,"Continent":"K56","ID":43047,"Name":"002","PlayerID":301602,"Points":8703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43047","ServerKey":"pl181","X":696,"Y":561},{"Bonus":0,"Continent":"K53","ID":43048,"Name":"C0128","PlayerID":8841266,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43048","ServerKey":"pl181","X":302,"Y":526},{"Bonus":0,"Continent":"K74","ID":43049,"Name":"034. Night Raid","PlayerID":699684062,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43049","ServerKey":"pl181","X":488,"Y":703},{"Bonus":0,"Continent":"K46","ID":43050,"Name":"Jan ost daleko","PlayerID":879782,"Points":8095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43050","ServerKey":"pl181","X":698,"Y":468},{"Bonus":0,"Continent":"K36","ID":43051,"Name":"XDX","PlayerID":699098531,"Points":6544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43051","ServerKey":"pl181","X":611,"Y":336},{"Bonus":0,"Continent":"K34","ID":43053,"Name":"039","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43053","ServerKey":"pl181","X":447,"Y":308},{"Bonus":0,"Continent":"K35","ID":43054,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43054","ServerKey":"pl181","X":548,"Y":306},{"Bonus":0,"Continent":"K53","ID":43055,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":7465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43055","ServerKey":"pl181","X":317,"Y":578},{"Bonus":0,"Continent":"K64","ID":43056,"Name":"New World","PlayerID":698152377,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43056","ServerKey":"pl181","X":436,"Y":693},{"Bonus":0,"Continent":"K43","ID":43058,"Name":"Grubasy 8","PlayerID":634848,"Points":4176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43058","ServerKey":"pl181","X":308,"Y":448},{"Bonus":8,"Continent":"K46","ID":43059,"Name":"002.TREASURE","PlayerID":9180206,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43059","ServerKey":"pl181","X":687,"Y":420},{"Bonus":0,"Continent":"K34","ID":43060,"Name":"PRZEMYƚL","PlayerID":849100406,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43060","ServerKey":"pl181","X":493,"Y":300},{"Bonus":0,"Continent":"K34","ID":43061,"Name":"014.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43061","ServerKey":"pl181","X":433,"Y":311},{"Bonus":0,"Continent":"K66","ID":43062,"Name":"007. GĂłrki PagĂłrki","PlayerID":849100994,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43062","ServerKey":"pl181","X":659,"Y":632},{"Bonus":0,"Continent":"K33","ID":43064,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43064","ServerKey":"pl181","X":382,"Y":338},{"Bonus":0,"Continent":"K63","ID":43065,"Name":"O051","PlayerID":272173,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43065","ServerKey":"pl181","X":333,"Y":623},{"Bonus":0,"Continent":"K65","ID":43066,"Name":"- 197 - SS","PlayerID":849018239,"Points":7030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43066","ServerKey":"pl181","X":561,"Y":690},{"Bonus":0,"Continent":"K66","ID":43067,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43067","ServerKey":"pl181","X":632,"Y":655},{"Bonus":0,"Continent":"K66","ID":43068,"Name":"015","PlayerID":849099544,"Points":6091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43068","ServerKey":"pl181","X":637,"Y":646},{"Bonus":0,"Continent":"K53","ID":43069,"Name":"C0099","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43069","ServerKey":"pl181","X":300,"Y":516},{"Bonus":0,"Continent":"K53","ID":43070,"Name":"*002*","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43070","ServerKey":"pl181","X":328,"Y":546},{"Bonus":0,"Continent":"K35","ID":43071,"Name":"AAA","PlayerID":1006847,"Points":8363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43071","ServerKey":"pl181","X":549,"Y":306},{"Bonus":0,"Continent":"K55","ID":43072,"Name":"0021","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43072","ServerKey":"pl181","X":514,"Y":525},{"Bonus":0,"Continent":"K43","ID":43073,"Name":"ZA04","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43073","ServerKey":"pl181","X":321,"Y":406},{"Bonus":0,"Continent":"K57","ID":43074,"Name":"0108","PlayerID":699429153,"Points":8796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43074","ServerKey":"pl181","X":705,"Y":504},{"Bonus":0,"Continent":"K35","ID":43075,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43075","ServerKey":"pl181","X":567,"Y":309},{"Bonus":0,"Continent":"K43","ID":43076,"Name":"Z16","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43076","ServerKey":"pl181","X":313,"Y":410},{"Bonus":0,"Continent":"K65","ID":43077,"Name":"###022###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43077","ServerKey":"pl181","X":591,"Y":683},{"Bonus":0,"Continent":"K33","ID":43078,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43078","ServerKey":"pl181","X":362,"Y":346},{"Bonus":0,"Continent":"K63","ID":43079,"Name":"Domek kapcia KURY","PlayerID":6948793,"Points":8790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43079","ServerKey":"pl181","X":359,"Y":641},{"Bonus":8,"Continent":"K34","ID":43080,"Name":"004","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43080","ServerKey":"pl181","X":456,"Y":300},{"Bonus":0,"Continent":"K33","ID":43081,"Name":"z Wioska 4","PlayerID":3909522,"Points":3457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43081","ServerKey":"pl181","X":359,"Y":358},{"Bonus":0,"Continent":"K36","ID":43082,"Name":"XDX","PlayerID":699098531,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43082","ServerKey":"pl181","X":606,"Y":324},{"Bonus":0,"Continent":"K43","ID":43083,"Name":"z181_23","PlayerID":393668,"Points":8515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43083","ServerKey":"pl181","X":305,"Y":436},{"Bonus":0,"Continent":"K57","ID":43084,"Name":"I lost you","PlayerID":699785935,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43084","ServerKey":"pl181","X":702,"Y":512},{"Bonus":9,"Continent":"K33","ID":43085,"Name":"z 0000 Osada","PlayerID":3909522,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43085","ServerKey":"pl181","X":348,"Y":360},{"Bonus":0,"Continent":"K63","ID":43086,"Name":"007.","PlayerID":698908184,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43086","ServerKey":"pl181","X":350,"Y":636},{"Bonus":0,"Continent":"K64","ID":43087,"Name":"0007 Sir JuriGagarin","PlayerID":849037407,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43087","ServerKey":"pl181","X":442,"Y":692},{"Bonus":0,"Continent":"K65","ID":43089,"Name":"###084###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43089","ServerKey":"pl181","X":580,"Y":685},{"Bonus":0,"Continent":"K64","ID":43091,"Name":"064","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43091","ServerKey":"pl181","X":408,"Y":683},{"Bonus":0,"Continent":"K53","ID":43092,"Name":"029.","PlayerID":3475079,"Points":3488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43092","ServerKey":"pl181","X":323,"Y":594},{"Bonus":0,"Continent":"K35","ID":43093,"Name":"AAA","PlayerID":1006847,"Points":8987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43093","ServerKey":"pl181","X":559,"Y":309},{"Bonus":0,"Continent":"K43","ID":43094,"Name":"z181_11","PlayerID":393668,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43094","ServerKey":"pl181","X":309,"Y":441},{"Bonus":0,"Continent":"K34","ID":43095,"Name":"046.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43095","ServerKey":"pl181","X":429,"Y":315},{"Bonus":0,"Continent":"K36","ID":43096,"Name":"Wioska barbarzyƄska","PlayerID":698768565,"Points":6378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43096","ServerKey":"pl181","X":675,"Y":395},{"Bonus":0,"Continent":"K33","ID":43098,"Name":"002","PlayerID":8153941,"Points":8405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43098","ServerKey":"pl181","X":395,"Y":325},{"Bonus":0,"Continent":"K36","ID":43099,"Name":"Wioska barbarzyƄska","PlayerID":849102068,"Points":2021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43099","ServerKey":"pl181","X":628,"Y":338},{"Bonus":0,"Continent":"K34","ID":43100,"Name":"133.Stradi","PlayerID":698365960,"Points":2739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43100","ServerKey":"pl181","X":431,"Y":307},{"Bonus":0,"Continent":"K64","ID":43101,"Name":"0013 mackobl14","PlayerID":849037407,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43101","ServerKey":"pl181","X":442,"Y":694},{"Bonus":0,"Continent":"K53","ID":43102,"Name":"011","PlayerID":9280477,"Points":7573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43102","ServerKey":"pl181","X":302,"Y":546},{"Bonus":0,"Continent":"K35","ID":43103,"Name":"005","PlayerID":699098531,"Points":4167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43103","ServerKey":"pl181","X":592,"Y":317},{"Bonus":2,"Continent":"K43","ID":43104,"Name":"marmag81/03","PlayerID":1096254,"Points":5756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43104","ServerKey":"pl181","X":302,"Y":468},{"Bonus":0,"Continent":"K36","ID":43105,"Name":"Wuhan","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43105","ServerKey":"pl181","X":629,"Y":342},{"Bonus":0,"Continent":"K66","ID":43106,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43106","ServerKey":"pl181","X":657,"Y":635},{"Bonus":0,"Continent":"K66","ID":43107,"Name":"025 NAWRA","PlayerID":849048867,"Points":2922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43107","ServerKey":"pl181","X":664,"Y":611},{"Bonus":5,"Continent":"K63","ID":43108,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43108","ServerKey":"pl181","X":355,"Y":647},{"Bonus":0,"Continent":"K56","ID":43109,"Name":"Didi","PlayerID":849070946,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43109","ServerKey":"pl181","X":688,"Y":577},{"Bonus":0,"Continent":"K75","ID":43110,"Name":"ZZZ","PlayerID":8980651,"Points":6503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43110","ServerKey":"pl181","X":513,"Y":700},{"Bonus":0,"Continent":"K46","ID":43111,"Name":"Piątnica","PlayerID":849100082,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43111","ServerKey":"pl181","X":689,"Y":477},{"Bonus":0,"Continent":"K75","ID":43112,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43112","ServerKey":"pl181","X":532,"Y":700},{"Bonus":0,"Continent":"K24","ID":43113,"Name":".achim.","PlayerID":6936607,"Points":7631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43113","ServerKey":"pl181","X":468,"Y":295},{"Bonus":0,"Continent":"K46","ID":43114,"Name":"C.012","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43114","ServerKey":"pl181","X":699,"Y":487},{"Bonus":0,"Continent":"K56","ID":43115,"Name":"Nowa 56","PlayerID":698702991,"Points":7831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43115","ServerKey":"pl181","X":685,"Y":580},{"Bonus":0,"Continent":"K35","ID":43116,"Name":"AAA","PlayerID":1006847,"Points":8684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43116","ServerKey":"pl181","X":542,"Y":305},{"Bonus":0,"Continent":"K24","ID":43117,"Name":".achim.","PlayerID":6936607,"Points":6960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43117","ServerKey":"pl181","X":467,"Y":295},{"Bonus":0,"Continent":"K63","ID":43118,"Name":"-035-","PlayerID":699097885,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43118","ServerKey":"pl181","X":364,"Y":650},{"Bonus":0,"Continent":"K43","ID":43119,"Name":"ZA08","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43119","ServerKey":"pl181","X":323,"Y":403},{"Bonus":0,"Continent":"K65","ID":43120,"Name":"###023###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43120","ServerKey":"pl181","X":597,"Y":683},{"Bonus":0,"Continent":"K56","ID":43121,"Name":"S003","PlayerID":8428196,"Points":8086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43121","ServerKey":"pl181","X":682,"Y":590},{"Bonus":0,"Continent":"K33","ID":43122,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43122","ServerKey":"pl181","X":330,"Y":391},{"Bonus":0,"Continent":"K53","ID":43123,"Name":"Rogatki1","PlayerID":699265922,"Points":5314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43123","ServerKey":"pl181","X":310,"Y":561},{"Bonus":0,"Continent":"K65","ID":43124,"Name":"BƂaziny Dolne","PlayerID":698723158,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43124","ServerKey":"pl181","X":571,"Y":686},{"Bonus":0,"Continent":"K63","ID":43125,"Name":"O126","PlayerID":272173,"Points":6185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43125","ServerKey":"pl181","X":332,"Y":620},{"Bonus":0,"Continent":"K53","ID":43126,"Name":"018","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43126","ServerKey":"pl181","X":307,"Y":556},{"Bonus":0,"Continent":"K66","ID":43127,"Name":"HAPERT","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43127","ServerKey":"pl181","X":626,"Y":664},{"Bonus":0,"Continent":"K36","ID":43128,"Name":"058- Maroczna Osada","PlayerID":849035905,"Points":3720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43128","ServerKey":"pl181","X":649,"Y":360},{"Bonus":0,"Continent":"K36","ID":43129,"Name":"021","PlayerID":698635863,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43129","ServerKey":"pl181","X":667,"Y":384},{"Bonus":0,"Continent":"K57","ID":43130,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":3789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43130","ServerKey":"pl181","X":703,"Y":546},{"Bonus":0,"Continent":"K43","ID":43131,"Name":"MELISKA","PlayerID":699794765,"Points":8991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43131","ServerKey":"pl181","X":359,"Y":457},{"Bonus":0,"Continent":"K65","ID":43132,"Name":"###008###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43132","ServerKey":"pl181","X":590,"Y":678},{"Bonus":0,"Continent":"K75","ID":43133,"Name":"- 267 - SS","PlayerID":849018239,"Points":7498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43133","ServerKey":"pl181","X":549,"Y":702},{"Bonus":0,"Continent":"K43","ID":43134,"Name":"Kagusiowo 12","PlayerID":849101268,"Points":3444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43134","ServerKey":"pl181","X":303,"Y":443},{"Bonus":0,"Continent":"K65","ID":43135,"Name":"###011###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43135","ServerKey":"pl181","X":593,"Y":683},{"Bonus":0,"Continent":"K33","ID":43136,"Name":"004","PlayerID":699660539,"Points":7614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43136","ServerKey":"pl181","X":388,"Y":326},{"Bonus":0,"Continent":"K34","ID":43137,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43137","ServerKey":"pl181","X":415,"Y":319},{"Bonus":0,"Continent":"K43","ID":43138,"Name":"Marmag81/12","PlayerID":1096254,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43138","ServerKey":"pl181","X":305,"Y":464},{"Bonus":0,"Continent":"K42","ID":43139,"Name":"Ć»ywiec","PlayerID":849095376,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43139","ServerKey":"pl181","X":297,"Y":476},{"Bonus":0,"Continent":"K65","ID":43140,"Name":"2.Algeciras","PlayerID":698215322,"Points":4457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43140","ServerKey":"pl181","X":576,"Y":683},{"Bonus":0,"Continent":"K35","ID":43141,"Name":"AAA","PlayerID":1006847,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43141","ServerKey":"pl181","X":562,"Y":310},{"Bonus":0,"Continent":"K24","ID":43142,"Name":"[0151]","PlayerID":8630972,"Points":9192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43142","ServerKey":"pl181","X":453,"Y":299},{"Bonus":0,"Continent":"K33","ID":43143,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43143","ServerKey":"pl181","X":331,"Y":397},{"Bonus":0,"Continent":"K43","ID":43144,"Name":"ZA24","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43144","ServerKey":"pl181","X":318,"Y":417},{"Bonus":0,"Continent":"K24","ID":43145,"Name":".achim.","PlayerID":6936607,"Points":3672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43145","ServerKey":"pl181","X":474,"Y":299},{"Bonus":0,"Continent":"K46","ID":43146,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43146","ServerKey":"pl181","X":694,"Y":459},{"Bonus":1,"Continent":"K33","ID":43147,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43147","ServerKey":"pl181","X":384,"Y":334},{"Bonus":0,"Continent":"K33","ID":43148,"Name":"Zaplecze Barba 028","PlayerID":699796330,"Points":6183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43148","ServerKey":"pl181","X":363,"Y":347},{"Bonus":0,"Continent":"K63","ID":43149,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43149","ServerKey":"pl181","X":385,"Y":673},{"Bonus":0,"Continent":"K35","ID":43150,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43150","ServerKey":"pl181","X":579,"Y":311},{"Bonus":0,"Continent":"K66","ID":43151,"Name":"Bessa 022","PlayerID":848987051,"Points":8684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43151","ServerKey":"pl181","X":630,"Y":657},{"Bonus":0,"Continent":"K74","ID":43152,"Name":"0.06 Raz","PlayerID":699725436,"Points":8338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43152","ServerKey":"pl181","X":464,"Y":700},{"Bonus":0,"Continent":"K33","ID":43153,"Name":"Wioska 7","PlayerID":3342690,"Points":2902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43153","ServerKey":"pl181","X":362,"Y":356},{"Bonus":0,"Continent":"K52","ID":43154,"Name":"C0340","PlayerID":8841266,"Points":3350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43154","ServerKey":"pl181","X":298,"Y":538},{"Bonus":0,"Continent":"K53","ID":43155,"Name":"Wioska klez 020","PlayerID":698295651,"Points":5638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43155","ServerKey":"pl181","X":310,"Y":563},{"Bonus":0,"Continent":"K66","ID":43156,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43156","ServerKey":"pl181","X":657,"Y":621},{"Bonus":0,"Continent":"K43","ID":43158,"Name":"WiedĆșma - Z 006","PlayerID":9239515,"Points":5124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43158","ServerKey":"pl181","X":306,"Y":428},{"Bonus":0,"Continent":"K36","ID":43159,"Name":"Klaudiczek","PlayerID":849092309,"Points":2826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43159","ServerKey":"pl181","X":644,"Y":356},{"Bonus":0,"Continent":"K65","ID":43160,"Name":"054 invidia","PlayerID":849093426,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43160","ServerKey":"pl181","X":520,"Y":699},{"Bonus":0,"Continent":"K36","ID":43161,"Name":"ADEN","PlayerID":698588535,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43161","ServerKey":"pl181","X":612,"Y":356},{"Bonus":0,"Continent":"K53","ID":43162,"Name":"Wioska barbarzyƄska 0","PlayerID":699016994,"Points":5594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43162","ServerKey":"pl181","X":314,"Y":580},{"Bonus":0,"Continent":"K43","ID":43163,"Name":"26 barbarzyƄska...","PlayerID":849018442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43163","ServerKey":"pl181","X":301,"Y":466},{"Bonus":0,"Continent":"K43","ID":43164,"Name":"marmag81/03w","PlayerID":1096254,"Points":6203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43164","ServerKey":"pl181","X":300,"Y":469},{"Bonus":0,"Continent":"K46","ID":43166,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":7500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43166","ServerKey":"pl181","X":685,"Y":409},{"Bonus":0,"Continent":"K53","ID":43167,"Name":"ƚpiący Szaman","PlayerID":849100439,"Points":1543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43167","ServerKey":"pl181","X":318,"Y":587},{"Bonus":0,"Continent":"K53","ID":43168,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":4091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43168","ServerKey":"pl181","X":316,"Y":573},{"Bonus":7,"Continent":"K34","ID":43169,"Name":"022","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43169","ServerKey":"pl181","X":455,"Y":304},{"Bonus":0,"Continent":"K24","ID":43170,"Name":"abc","PlayerID":1493696,"Points":3883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43170","ServerKey":"pl181","X":492,"Y":296},{"Bonus":0,"Continent":"K36","ID":43171,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43171","ServerKey":"pl181","X":606,"Y":322},{"Bonus":0,"Continent":"K36","ID":43172,"Name":"wioska","PlayerID":849086693,"Points":4774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43172","ServerKey":"pl181","X":631,"Y":346},{"Bonus":0,"Continent":"K47","ID":43173,"Name":"0110","PlayerID":699429153,"Points":8763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43173","ServerKey":"pl181","X":704,"Y":493},{"Bonus":0,"Continent":"K34","ID":43174,"Name":"Wielki 3","PlayerID":849050849,"Points":8214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43174","ServerKey":"pl181","X":499,"Y":301},{"Bonus":0,"Continent":"K65","ID":43175,"Name":"###024###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43175","ServerKey":"pl181","X":592,"Y":680},{"Bonus":0,"Continent":"K36","ID":43176,"Name":"XDX","PlayerID":699098531,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43176","ServerKey":"pl181","X":607,"Y":327},{"Bonus":0,"Continent":"K34","ID":43177,"Name":"[0106]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43177","ServerKey":"pl181","X":445,"Y":309},{"Bonus":0,"Continent":"K52","ID":43178,"Name":"C0198","PlayerID":8841266,"Points":7566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43178","ServerKey":"pl181","X":299,"Y":526},{"Bonus":0,"Continent":"K33","ID":43179,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":8215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43179","ServerKey":"pl181","X":371,"Y":340},{"Bonus":0,"Continent":"K74","ID":43180,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43180","ServerKey":"pl181","X":493,"Y":705},{"Bonus":0,"Continent":"K36","ID":43181,"Name":"Wioska barbarzyƄska","PlayerID":6625437,"Points":3211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43181","ServerKey":"pl181","X":647,"Y":357},{"Bonus":0,"Continent":"K63","ID":43182,"Name":"Taran","PlayerID":6180190,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43182","ServerKey":"pl181","X":327,"Y":612},{"Bonus":0,"Continent":"K34","ID":43183,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43183","ServerKey":"pl181","X":414,"Y":315},{"Bonus":0,"Continent":"K47","ID":43185,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43185","ServerKey":"pl181","X":706,"Y":488},{"Bonus":0,"Continent":"K34","ID":43187,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43187","ServerKey":"pl181","X":408,"Y":315},{"Bonus":0,"Continent":"K35","ID":43188,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43188","ServerKey":"pl181","X":554,"Y":303},{"Bonus":0,"Continent":"K43","ID":43189,"Name":"ZA02","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43189","ServerKey":"pl181","X":320,"Y":405},{"Bonus":0,"Continent":"K24","ID":43190,"Name":"HURKO","PlayerID":849100406,"Points":9614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43190","ServerKey":"pl181","X":480,"Y":295},{"Bonus":0,"Continent":"K57","ID":43191,"Name":"0105","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43191","ServerKey":"pl181","X":704,"Y":502},{"Bonus":0,"Continent":"K35","ID":43192,"Name":"XDX","PlayerID":699098531,"Points":9316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43192","ServerKey":"pl181","X":595,"Y":316},{"Bonus":0,"Continent":"K65","ID":43193,"Name":"###010###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43193","ServerKey":"pl181","X":592,"Y":683},{"Bonus":0,"Continent":"K36","ID":43194,"Name":"022","PlayerID":698635863,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43194","ServerKey":"pl181","X":665,"Y":382},{"Bonus":0,"Continent":"K53","ID":43195,"Name":"013","PlayerID":6180190,"Points":9455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43195","ServerKey":"pl181","X":315,"Y":585},{"Bonus":0,"Continent":"K46","ID":43196,"Name":"Wioska astaporska","PlayerID":848976034,"Points":3021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43196","ServerKey":"pl181","X":696,"Y":439},{"Bonus":0,"Continent":"K66","ID":43197,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":5274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43197","ServerKey":"pl181","X":622,"Y":665},{"Bonus":0,"Continent":"K36","ID":43198,"Name":"605|379","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43198","ServerKey":"pl181","X":666,"Y":375},{"Bonus":0,"Continent":"K63","ID":43199,"Name":"Taran","PlayerID":6180190,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43199","ServerKey":"pl181","X":332,"Y":606},{"Bonus":0,"Continent":"K33","ID":43200,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":3206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43200","ServerKey":"pl181","X":337,"Y":378},{"Bonus":0,"Continent":"K74","ID":43201,"Name":"014# Evelyn","PlayerID":3933666,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43201","ServerKey":"pl181","X":486,"Y":700},{"Bonus":0,"Continent":"K25","ID":43202,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43202","ServerKey":"pl181","X":528,"Y":299},{"Bonus":0,"Continent":"K64","ID":43203,"Name":"0034 Kasko14","PlayerID":849037407,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43203","ServerKey":"pl181","X":449,"Y":694},{"Bonus":0,"Continent":"K53","ID":43204,"Name":"000 Plutosea","PlayerID":9280477,"Points":6249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43204","ServerKey":"pl181","X":315,"Y":561},{"Bonus":0,"Continent":"K64","ID":43205,"Name":"Wioska barbarzyƄska","PlayerID":698178312,"Points":1657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43205","ServerKey":"pl181","X":453,"Y":697},{"Bonus":1,"Continent":"K43","ID":43206,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43206","ServerKey":"pl181","X":304,"Y":457},{"Bonus":0,"Continent":"K64","ID":43207,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43207","ServerKey":"pl181","X":430,"Y":690},{"Bonus":0,"Continent":"K57","ID":43208,"Name":"04. Rivia","PlayerID":8976313,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43208","ServerKey":"pl181","X":704,"Y":539},{"Bonus":0,"Continent":"K36","ID":43209,"Name":"XDX","PlayerID":699098531,"Points":8641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43209","ServerKey":"pl181","X":610,"Y":325},{"Bonus":0,"Continent":"K63","ID":43210,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43210","ServerKey":"pl181","X":369,"Y":658},{"Bonus":9,"Continent":"K25","ID":43211,"Name":"Węgorzewo","PlayerID":699208929,"Points":10213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43211","ServerKey":"pl181","X":509,"Y":296},{"Bonus":0,"Continent":"K53","ID":43213,"Name":"C0245","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43213","ServerKey":"pl181","X":303,"Y":523},{"Bonus":0,"Continent":"K33","ID":43214,"Name":"zajazd #1","PlayerID":849027025,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43214","ServerKey":"pl181","X":354,"Y":352},{"Bonus":0,"Continent":"K47","ID":43215,"Name":"0114","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43215","ServerKey":"pl181","X":706,"Y":496},{"Bonus":0,"Continent":"K33","ID":43216,"Name":"Co ona wam biedna zrobiƂa xd","PlayerID":3484132,"Points":3140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43216","ServerKey":"pl181","X":392,"Y":329},{"Bonus":0,"Continent":"K66","ID":43217,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":7257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43217","ServerKey":"pl181","X":620,"Y":667},{"Bonus":0,"Continent":"K24","ID":43218,"Name":"????","PlayerID":698489071,"Points":7322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43218","ServerKey":"pl181","X":487,"Y":295},{"Bonus":0,"Continent":"K65","ID":43219,"Name":"- 297 - SS","PlayerID":849018239,"Points":7062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43219","ServerKey":"pl181","X":557,"Y":697},{"Bonus":0,"Continent":"K74","ID":43220,"Name":"0.03 albo wcale!","PlayerID":699725436,"Points":9461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43220","ServerKey":"pl181","X":460,"Y":704},{"Bonus":0,"Continent":"K74","ID":43221,"Name":"FP017","PlayerID":699605333,"Points":10148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43221","ServerKey":"pl181","X":482,"Y":706},{"Bonus":0,"Continent":"K74","ID":43222,"Name":"ZZZ","PlayerID":8980651,"Points":7705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43222","ServerKey":"pl181","X":463,"Y":705},{"Bonus":0,"Continent":"K74","ID":43223,"Name":"011. Night Raid","PlayerID":699684062,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43223","ServerKey":"pl181","X":493,"Y":703},{"Bonus":0,"Continent":"K33","ID":43224,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":5058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43224","ServerKey":"pl181","X":380,"Y":333},{"Bonus":0,"Continent":"K66","ID":43225,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43225","ServerKey":"pl181","X":652,"Y":642},{"Bonus":0,"Continent":"K66","ID":43226,"Name":"Loca 2","PlayerID":699778867,"Points":8130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43226","ServerKey":"pl181","X":643,"Y":645},{"Bonus":0,"Continent":"K33","ID":43227,"Name":"*210*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43227","ServerKey":"pl181","X":331,"Y":389},{"Bonus":4,"Continent":"K64","ID":43228,"Name":"New World","PlayerID":698152377,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43228","ServerKey":"pl181","X":452,"Y":695},{"Bonus":0,"Continent":"K66","ID":43229,"Name":"Pontypridd","PlayerID":1205898,"Points":5171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43229","ServerKey":"pl181","X":672,"Y":607},{"Bonus":0,"Continent":"K33","ID":43230,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43230","ServerKey":"pl181","X":382,"Y":333},{"Bonus":0,"Continent":"K34","ID":43231,"Name":"???","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43231","ServerKey":"pl181","X":480,"Y":300},{"Bonus":7,"Continent":"K66","ID":43232,"Name":"Osada koczownikĂłw","PlayerID":848909464,"Points":8457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43232","ServerKey":"pl181","X":621,"Y":668},{"Bonus":0,"Continent":"K47","ID":43234,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43234","ServerKey":"pl181","X":706,"Y":470},{"Bonus":0,"Continent":"K36","ID":43235,"Name":"!36 65 Cacica","PlayerID":698361257,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43235","ServerKey":"pl181","X":655,"Y":368},{"Bonus":0,"Continent":"K34","ID":43236,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43236","ServerKey":"pl181","X":407,"Y":315},{"Bonus":0,"Continent":"K66","ID":43237,"Name":"Zagroda5","PlayerID":6528152,"Points":6877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43237","ServerKey":"pl181","X":601,"Y":672},{"Bonus":0,"Continent":"K34","ID":43238,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43238","ServerKey":"pl181","X":413,"Y":314},{"Bonus":0,"Continent":"K43","ID":43239,"Name":"009a","PlayerID":8259895,"Points":3778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43239","ServerKey":"pl181","X":311,"Y":424},{"Bonus":0,"Continent":"K57","ID":43240,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43240","ServerKey":"pl181","X":704,"Y":501},{"Bonus":0,"Continent":"K36","ID":43241,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":8809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43241","ServerKey":"pl181","X":653,"Y":371},{"Bonus":7,"Continent":"K43","ID":43242,"Name":"ZA16","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43242","ServerKey":"pl181","X":313,"Y":416},{"Bonus":0,"Continent":"K66","ID":43243,"Name":"011 plejor","PlayerID":699346280,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43243","ServerKey":"pl181","X":615,"Y":672},{"Bonus":0,"Continent":"K47","ID":43244,"Name":"0100","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43244","ServerKey":"pl181","X":704,"Y":496},{"Bonus":0,"Continent":"K74","ID":43245,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":9941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43245","ServerKey":"pl181","X":499,"Y":700},{"Bonus":0,"Continent":"K33","ID":43246,"Name":"Kabaty","PlayerID":849099434,"Points":4664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43246","ServerKey":"pl181","X":360,"Y":353},{"Bonus":0,"Continent":"K53","ID":43248,"Name":"Rogatki3","PlayerID":699265922,"Points":5220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43248","ServerKey":"pl181","X":311,"Y":562},{"Bonus":0,"Continent":"K36","ID":43249,"Name":"065","PlayerID":849010255,"Points":2157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43249","ServerKey":"pl181","X":634,"Y":350},{"Bonus":0,"Continent":"K34","ID":43251,"Name":"@13@","PlayerID":699483429,"Points":5642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43251","ServerKey":"pl181","X":403,"Y":327},{"Bonus":0,"Continent":"K47","ID":43253,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43253","ServerKey":"pl181","X":700,"Y":478},{"Bonus":0,"Continent":"K63","ID":43255,"Name":"O061","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43255","ServerKey":"pl181","X":335,"Y":626},{"Bonus":0,"Continent":"K75","ID":43256,"Name":"117 invidia","PlayerID":849093426,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43256","ServerKey":"pl181","X":504,"Y":705},{"Bonus":0,"Continent":"K64","ID":43257,"Name":"0041 Qukaqu.","PlayerID":849037407,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43257","ServerKey":"pl181","X":445,"Y":698},{"Bonus":0,"Continent":"K25","ID":43258,"Name":"Puerto Riko","PlayerID":3298902,"Points":3881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43258","ServerKey":"pl181","X":518,"Y":296},{"Bonus":0,"Continent":"K56","ID":43259,"Name":"BRZEG JORDANU | 011","PlayerID":9228039,"Points":3557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43259","ServerKey":"pl181","X":698,"Y":519},{"Bonus":0,"Continent":"K33","ID":43260,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43260","ServerKey":"pl181","X":385,"Y":328},{"Bonus":0,"Continent":"K47","ID":43262,"Name":"A#010","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43262","ServerKey":"pl181","X":707,"Y":490},{"Bonus":0,"Continent":"K42","ID":43263,"Name":"Dream on","PlayerID":698962117,"Points":8289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43263","ServerKey":"pl181","X":298,"Y":484},{"Bonus":0,"Continent":"K35","ID":43264,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43264","ServerKey":"pl181","X":591,"Y":311},{"Bonus":0,"Continent":"K33","ID":43265,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43265","ServerKey":"pl181","X":321,"Y":398},{"Bonus":0,"Continent":"K46","ID":43266,"Name":"Jan felek1987 Ost K","PlayerID":879782,"Points":9673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43266","ServerKey":"pl181","X":696,"Y":458},{"Bonus":0,"Continent":"K43","ID":43267,"Name":"Kasztelan","PlayerID":849095376,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43267","ServerKey":"pl181","X":301,"Y":480},{"Bonus":0,"Continent":"K57","ID":43268,"Name":"Tego typu!","PlayerID":8418489,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43268","ServerKey":"pl181","X":707,"Y":503},{"Bonus":2,"Continent":"K66","ID":43269,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43269","ServerKey":"pl181","X":666,"Y":623},{"Bonus":0,"Continent":"K57","ID":43272,"Name":"0102","PlayerID":699429153,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43272","ServerKey":"pl181","X":700,"Y":503},{"Bonus":0,"Continent":"K57","ID":43273,"Name":"007","PlayerID":7085502,"Points":9799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43273","ServerKey":"pl181","X":705,"Y":523},{"Bonus":0,"Continent":"K64","ID":43274,"Name":"0048 Utopia2","PlayerID":849037407,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43274","ServerKey":"pl181","X":439,"Y":692},{"Bonus":0,"Continent":"K66","ID":43275,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":4188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43275","ServerKey":"pl181","X":620,"Y":664},{"Bonus":0,"Continent":"K57","ID":43276,"Name":"Wioska barbarzyƄska","PlayerID":2135129,"Points":2986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43276","ServerKey":"pl181","X":707,"Y":525},{"Bonus":0,"Continent":"K66","ID":43277,"Name":"009 BORA7","PlayerID":699346280,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43277","ServerKey":"pl181","X":609,"Y":671},{"Bonus":0,"Continent":"K43","ID":43278,"Name":"WiedĆșma - Z 005","PlayerID":9239515,"Points":5580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43278","ServerKey":"pl181","X":304,"Y":434},{"Bonus":0,"Continent":"K63","ID":43279,"Name":"Taran","PlayerID":6180190,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43279","ServerKey":"pl181","X":329,"Y":605},{"Bonus":0,"Continent":"K42","ID":43280,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43280","ServerKey":"pl181","X":297,"Y":454},{"Bonus":0,"Continent":"K56","ID":43281,"Name":"24. Kerack","PlayerID":8976313,"Points":8845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43281","ServerKey":"pl181","X":698,"Y":549},{"Bonus":0,"Continent":"K66","ID":43282,"Name":"Wioska 017","PlayerID":7999103,"Points":7748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43282","ServerKey":"pl181","X":673,"Y":608},{"Bonus":0,"Continent":"K34","ID":43283,"Name":"042","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43283","ServerKey":"pl181","X":449,"Y":301},{"Bonus":0,"Continent":"K33","ID":43284,"Name":"z 000 Wioska 11 tttttttt","PlayerID":3909522,"Points":7713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43284","ServerKey":"pl181","X":351,"Y":360},{"Bonus":0,"Continent":"K64","ID":43285,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43285","ServerKey":"pl181","X":413,"Y":680},{"Bonus":0,"Continent":"K63","ID":43287,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43287","ServerKey":"pl181","X":352,"Y":643},{"Bonus":0,"Continent":"K66","ID":43289,"Name":"Wioska barbarzyƄska","PlayerID":8224678,"Points":4610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43289","ServerKey":"pl181","X":675,"Y":601},{"Bonus":0,"Continent":"K63","ID":43290,"Name":"Taran","PlayerID":6180190,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43290","ServerKey":"pl181","X":324,"Y":612},{"Bonus":0,"Continent":"K64","ID":43292,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43292","ServerKey":"pl181","X":413,"Y":681},{"Bonus":0,"Continent":"K36","ID":43293,"Name":"064","PlayerID":849010255,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43293","ServerKey":"pl181","X":634,"Y":345},{"Bonus":0,"Continent":"K66","ID":43294,"Name":"Wioska brabarzyƄcĂłw","PlayerID":8224678,"Points":6608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43294","ServerKey":"pl181","X":674,"Y":601},{"Bonus":0,"Continent":"K53","ID":43296,"Name":"034","PlayerID":849098688,"Points":4926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43296","ServerKey":"pl181","X":304,"Y":561},{"Bonus":0,"Continent":"K36","ID":43297,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43297","ServerKey":"pl181","X":608,"Y":325},{"Bonus":0,"Continent":"K36","ID":43298,"Name":"!36 75 Brasca","PlayerID":698361257,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43298","ServerKey":"pl181","X":658,"Y":370},{"Bonus":0,"Continent":"K33","ID":43301,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43301","ServerKey":"pl181","X":334,"Y":389},{"Bonus":0,"Continent":"K75","ID":43306,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":3242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43306","ServerKey":"pl181","X":515,"Y":705},{"Bonus":0,"Continent":"K63","ID":43307,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":6971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43307","ServerKey":"pl181","X":386,"Y":671},{"Bonus":0,"Continent":"K24","ID":43308,"Name":"Lipnica","PlayerID":849101116,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43308","ServerKey":"pl181","X":457,"Y":297},{"Bonus":0,"Continent":"K56","ID":43310,"Name":"Wioska Zorro 001","PlayerID":849080702,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43310","ServerKey":"pl181","X":676,"Y":595},{"Bonus":0,"Continent":"K42","ID":43311,"Name":"Dream on","PlayerID":698962117,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43311","ServerKey":"pl181","X":299,"Y":495},{"Bonus":3,"Continent":"K33","ID":43312,"Name":"z Wioska 3","PlayerID":3909522,"Points":8429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43312","ServerKey":"pl181","X":358,"Y":361},{"Bonus":0,"Continent":"K66","ID":43314,"Name":"Zagroda2","PlayerID":6528152,"Points":8325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43314","ServerKey":"pl181","X":605,"Y":674},{"Bonus":0,"Continent":"K63","ID":43315,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43315","ServerKey":"pl181","X":392,"Y":672},{"Bonus":0,"Continent":"K25","ID":43316,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43316","ServerKey":"pl181","X":501,"Y":293},{"Bonus":0,"Continent":"K34","ID":43318,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43318","ServerKey":"pl181","X":414,"Y":312},{"Bonus":0,"Continent":"K63","ID":43319,"Name":"O059","PlayerID":272173,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43319","ServerKey":"pl181","X":339,"Y":628},{"Bonus":0,"Continent":"K63","ID":43320,"Name":"Taran","PlayerID":6180190,"Points":10433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43320","ServerKey":"pl181","X":332,"Y":609},{"Bonus":0,"Continent":"K46","ID":43321,"Name":"068. Wioska barbarzyƄska","PlayerID":7494497,"Points":8413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43321","ServerKey":"pl181","X":697,"Y":462},{"Bonus":0,"Continent":"K53","ID":43322,"Name":"Dream on","PlayerID":698962117,"Points":4158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43322","ServerKey":"pl181","X":300,"Y":503},{"Bonus":0,"Continent":"K74","ID":43323,"Name":"0056","PlayerID":849037407,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43323","ServerKey":"pl181","X":451,"Y":701},{"Bonus":0,"Continent":"K24","ID":43324,"Name":"262...Gulden","PlayerID":6920960,"Points":5434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43324","ServerKey":"pl181","X":457,"Y":298},{"Bonus":0,"Continent":"K42","ID":43325,"Name":"[0209]","PlayerID":8630972,"Points":7601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43325","ServerKey":"pl181","X":299,"Y":498},{"Bonus":0,"Continent":"K35","ID":43326,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43326","ServerKey":"pl181","X":584,"Y":313},{"Bonus":0,"Continent":"K66","ID":43328,"Name":"S003","PlayerID":8627359,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43328","ServerKey":"pl181","X":600,"Y":672},{"Bonus":0,"Continent":"K34","ID":43329,"Name":"020.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43329","ServerKey":"pl181","X":428,"Y":308},{"Bonus":0,"Continent":"K66","ID":43331,"Name":"Bessa 011","PlayerID":848987051,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43331","ServerKey":"pl181","X":640,"Y":653},{"Bonus":0,"Continent":"K64","ID":43332,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43332","ServerKey":"pl181","X":431,"Y":693},{"Bonus":0,"Continent":"K36","ID":43334,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43334","ServerKey":"pl181","X":656,"Y":372},{"Bonus":0,"Continent":"K35","ID":43335,"Name":"D023","PlayerID":699299123,"Points":5040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43335","ServerKey":"pl181","X":561,"Y":305},{"Bonus":0,"Continent":"K33","ID":43336,"Name":"003 The Silver Tower","PlayerID":7462660,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43336","ServerKey":"pl181","X":353,"Y":364},{"Bonus":0,"Continent":"K75","ID":43337,"Name":"047 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43337","ServerKey":"pl181","X":541,"Y":703},{"Bonus":0,"Continent":"K53","ID":43339,"Name":"C0259","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43339","ServerKey":"pl181","X":304,"Y":548},{"Bonus":0,"Continent":"K56","ID":43340,"Name":"Nowa 54","PlayerID":698702991,"Points":7463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43340","ServerKey":"pl181","X":684,"Y":577},{"Bonus":0,"Continent":"K56","ID":43341,"Name":"Didek","PlayerID":849070946,"Points":6710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43341","ServerKey":"pl181","X":679,"Y":586},{"Bonus":0,"Continent":"K63","ID":43342,"Name":"Taran","PlayerID":6180190,"Points":10020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43342","ServerKey":"pl181","X":331,"Y":607},{"Bonus":0,"Continent":"K63","ID":43343,"Name":"psycha sitting","PlayerID":699736927,"Points":6553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43343","ServerKey":"pl181","X":398,"Y":675},{"Bonus":4,"Continent":"K46","ID":43344,"Name":"WS 01","PlayerID":699524891,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43344","ServerKey":"pl181","X":698,"Y":439},{"Bonus":0,"Continent":"K36","ID":43346,"Name":"XDX","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43346","ServerKey":"pl181","X":607,"Y":325},{"Bonus":0,"Continent":"K25","ID":43348,"Name":"Spec3","PlayerID":699569800,"Points":4074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43348","ServerKey":"pl181","X":545,"Y":298},{"Bonus":0,"Continent":"K64","ID":43349,"Name":"037.xxx","PlayerID":8612358,"Points":3304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43349","ServerKey":"pl181","X":490,"Y":687},{"Bonus":0,"Continent":"K36","ID":43350,"Name":"Wioska barbarzyƄska","PlayerID":698768565,"Points":4329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43350","ServerKey":"pl181","X":676,"Y":393},{"Bonus":1,"Continent":"K56","ID":43351,"Name":"002","PlayerID":699150527,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43351","ServerKey":"pl181","X":698,"Y":511},{"Bonus":0,"Continent":"K42","ID":43352,"Name":"21 barbarzyƄska...","PlayerID":849018442,"Points":9440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43352","ServerKey":"pl181","X":299,"Y":465},{"Bonus":0,"Continent":"K64","ID":43353,"Name":"0019 Wioska barbarzyƄska","PlayerID":849037407,"Points":9413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43353","ServerKey":"pl181","X":440,"Y":698},{"Bonus":0,"Continent":"K42","ID":43354,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43354","ServerKey":"pl181","X":299,"Y":490},{"Bonus":0,"Continent":"K24","ID":43355,"Name":"#0293 Don Noobas","PlayerID":1238300,"Points":2151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43355","ServerKey":"pl181","X":467,"Y":294},{"Bonus":0,"Continent":"K74","ID":43356,"Name":"A000","PlayerID":699725436,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43356","ServerKey":"pl181","X":467,"Y":706},{"Bonus":0,"Continent":"K24","ID":43357,"Name":"GrabĂłwek","PlayerID":698848373,"Points":2660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43357","ServerKey":"pl181","X":480,"Y":297},{"Bonus":0,"Continent":"K42","ID":43358,"Name":"Dream on","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43358","ServerKey":"pl181","X":297,"Y":496},{"Bonus":0,"Continent":"K65","ID":43359,"Name":"043 ChoraĆŒy Torpeda","PlayerID":699346280,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43359","ServerKey":"pl181","X":598,"Y":678},{"Bonus":0,"Continent":"K52","ID":43360,"Name":"Arczi997 06","PlayerID":849055181,"Points":2019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43360","ServerKey":"pl181","X":296,"Y":519},{"Bonus":0,"Continent":"K43","ID":43362,"Name":"Dream on","PlayerID":698962117,"Points":7227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43362","ServerKey":"pl181","X":300,"Y":488},{"Bonus":0,"Continent":"K34","ID":43363,"Name":"0011","PlayerID":2321390,"Points":8753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43363","ServerKey":"pl181","X":416,"Y":319},{"Bonus":0,"Continent":"K34","ID":43364,"Name":"002 Hamburg","PlayerID":698231772,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43364","ServerKey":"pl181","X":409,"Y":322},{"Bonus":0,"Continent":"K44","ID":43365,"Name":"Wioska DZ4L","PlayerID":9291984,"Points":4298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43365","ServerKey":"pl181","X":441,"Y":443},{"Bonus":0,"Continent":"K52","ID":43367,"Name":"C0345","PlayerID":8841266,"Points":2611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43367","ServerKey":"pl181","X":298,"Y":540},{"Bonus":0,"Continent":"K56","ID":43369,"Name":"TWIERDZA .:035:.","PlayerID":7154207,"Points":10225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43369","ServerKey":"pl181","X":691,"Y":575},{"Bonus":0,"Continent":"K35","ID":43372,"Name":"AAA","PlayerID":1006847,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43372","ServerKey":"pl181","X":539,"Y":301},{"Bonus":0,"Continent":"K47","ID":43373,"Name":"007","PlayerID":942959,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43373","ServerKey":"pl181","X":703,"Y":494},{"Bonus":0,"Continent":"K24","ID":43374,"Name":".achim.","PlayerID":6936607,"Points":6257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43374","ServerKey":"pl181","X":477,"Y":293},{"Bonus":2,"Continent":"K64","ID":43375,"Name":"003","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43375","ServerKey":"pl181","X":413,"Y":689},{"Bonus":0,"Continent":"K64","ID":43376,"Name":"041. ZachĂłd","PlayerID":848928624,"Points":2631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43376","ServerKey":"pl181","X":463,"Y":697},{"Bonus":0,"Continent":"K63","ID":43377,"Name":"eee","PlayerID":699269923,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43377","ServerKey":"pl181","X":368,"Y":659},{"Bonus":0,"Continent":"K56","ID":43378,"Name":"Didi","PlayerID":849070946,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43378","ServerKey":"pl181","X":687,"Y":581},{"Bonus":0,"Continent":"K46","ID":43379,"Name":"I103","PlayerID":699722599,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43379","ServerKey":"pl181","X":698,"Y":451},{"Bonus":0,"Continent":"K33","ID":43380,"Name":"0010","PlayerID":699644448,"Points":2527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43380","ServerKey":"pl181","X":352,"Y":355},{"Bonus":0,"Continent":"K65","ID":43381,"Name":"- 279 - SS","PlayerID":8501514,"Points":4466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43381","ServerKey":"pl181","X":553,"Y":699},{"Bonus":0,"Continent":"K36","ID":43382,"Name":"FFF","PlayerID":8675636,"Points":9075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43382","ServerKey":"pl181","X":661,"Y":374},{"Bonus":0,"Continent":"K66","ID":43383,"Name":"#K66 0004","PlayerID":699728159,"Points":6338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43383","ServerKey":"pl181","X":611,"Y":673},{"Bonus":0,"Continent":"K66","ID":43384,"Name":"Wiejska3","PlayerID":6528152,"Points":8796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43384","ServerKey":"pl181","X":608,"Y":667},{"Bonus":0,"Continent":"K65","ID":43385,"Name":"Jedlanka Stara","PlayerID":698723158,"Points":5840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43385","ServerKey":"pl181","X":568,"Y":697},{"Bonus":0,"Continent":"K63","ID":43386,"Name":"O127","PlayerID":272173,"Points":6704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43386","ServerKey":"pl181","X":330,"Y":618},{"Bonus":0,"Continent":"K52","ID":43387,"Name":"Dream on","PlayerID":698962117,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43387","ServerKey":"pl181","X":298,"Y":506},{"Bonus":0,"Continent":"K74","ID":43388,"Name":"002# Gwen","PlayerID":3933666,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43388","ServerKey":"pl181","X":485,"Y":700},{"Bonus":0,"Continent":"K74","ID":43389,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43389","ServerKey":"pl181","X":494,"Y":705},{"Bonus":0,"Continent":"K53","ID":43390,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":6564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43390","ServerKey":"pl181","X":313,"Y":574},{"Bonus":0,"Continent":"K64","ID":43391,"Name":"New World","PlayerID":698152377,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43391","ServerKey":"pl181","X":469,"Y":689},{"Bonus":0,"Continent":"K52","ID":43392,"Name":"C0222","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43392","ServerKey":"pl181","X":298,"Y":544},{"Bonus":0,"Continent":"K64","ID":43393,"Name":"150","PlayerID":849099876,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43393","ServerKey":"pl181","X":401,"Y":683},{"Bonus":0,"Continent":"K36","ID":43394,"Name":"062","PlayerID":849010255,"Points":2524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43394","ServerKey":"pl181","X":638,"Y":352},{"Bonus":0,"Continent":"K65","ID":43395,"Name":"ZZZ","PlayerID":8980651,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43395","ServerKey":"pl181","X":534,"Y":699},{"Bonus":0,"Continent":"K33","ID":43396,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43396","ServerKey":"pl181","X":333,"Y":380},{"Bonus":0,"Continent":"K64","ID":43397,"Name":"034","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43397","ServerKey":"pl181","X":419,"Y":688},{"Bonus":5,"Continent":"K46","ID":43398,"Name":"02.TWICE","PlayerID":9180206,"Points":7079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43398","ServerKey":"pl181","X":686,"Y":409},{"Bonus":0,"Continent":"K66","ID":43399,"Name":"#K66 0009","PlayerID":699728159,"Points":6351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43399","ServerKey":"pl181","X":613,"Y":675},{"Bonus":0,"Continent":"K42","ID":43400,"Name":"Dream on","PlayerID":698962117,"Points":9588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43400","ServerKey":"pl181","X":297,"Y":490},{"Bonus":0,"Continent":"K65","ID":43402,"Name":"- 205 - SS","PlayerID":849018239,"Points":7070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43402","ServerKey":"pl181","X":545,"Y":698},{"Bonus":0,"Continent":"K66","ID":43403,"Name":"016 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43403","ServerKey":"pl181","X":603,"Y":680},{"Bonus":0,"Continent":"K36","ID":43404,"Name":"023","PlayerID":698635863,"Points":8793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43404","ServerKey":"pl181","X":658,"Y":380},{"Bonus":0,"Continent":"K75","ID":43405,"Name":"016. Far far away","PlayerID":848928624,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43405","ServerKey":"pl181","X":500,"Y":708},{"Bonus":0,"Continent":"K74","ID":43406,"Name":"FP034","PlayerID":699605333,"Points":9320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43406","ServerKey":"pl181","X":473,"Y":706},{"Bonus":0,"Continent":"K65","ID":43407,"Name":"merhet","PlayerID":698215322,"Points":5663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43407","ServerKey":"pl181","X":576,"Y":686},{"Bonus":0,"Continent":"K33","ID":43408,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":3078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43408","ServerKey":"pl181","X":328,"Y":383},{"Bonus":0,"Continent":"K66","ID":43409,"Name":"CALL 1071","PlayerID":699784536,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43409","ServerKey":"pl181","X":658,"Y":627},{"Bonus":0,"Continent":"K36","ID":43410,"Name":"24. Wioska Raukodel","PlayerID":9320272,"Points":6153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43410","ServerKey":"pl181","X":648,"Y":360},{"Bonus":0,"Continent":"K57","ID":43411,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43411","ServerKey":"pl181","X":713,"Y":516},{"Bonus":0,"Continent":"K35","ID":43412,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43412","ServerKey":"pl181","X":581,"Y":314},{"Bonus":0,"Continent":"K24","ID":43413,"Name":"????","PlayerID":698489071,"Points":5151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43413","ServerKey":"pl181","X":466,"Y":296},{"Bonus":0,"Continent":"K52","ID":43414,"Name":"003","PlayerID":849098688,"Points":7527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43414","ServerKey":"pl181","X":299,"Y":550},{"Bonus":0,"Continent":"K35","ID":43415,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":4283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43415","ServerKey":"pl181","X":557,"Y":304},{"Bonus":4,"Continent":"K35","ID":43416,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43416","ServerKey":"pl181","X":580,"Y":314},{"Bonus":0,"Continent":"K56","ID":43418,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":4137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43418","ServerKey":"pl181","X":696,"Y":540},{"Bonus":0,"Continent":"K63","ID":43419,"Name":"C072","PlayerID":699383279,"Points":5873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43419","ServerKey":"pl181","X":378,"Y":659},{"Bonus":0,"Continent":"K65","ID":43420,"Name":"ƚrĂłdmieƛcie","PlayerID":849100612,"Points":2449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43420","ServerKey":"pl181","X":587,"Y":679},{"Bonus":0,"Continent":"K57","ID":43421,"Name":"036. Howerla","PlayerID":1601917,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43421","ServerKey":"pl181","X":702,"Y":552},{"Bonus":0,"Continent":"K66","ID":43422,"Name":"wiocha","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43422","ServerKey":"pl181","X":618,"Y":664},{"Bonus":0,"Continent":"K63","ID":43423,"Name":"KHORINIS 03","PlayerID":849099924,"Points":1625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43423","ServerKey":"pl181","X":371,"Y":660},{"Bonus":0,"Continent":"K56","ID":43424,"Name":"Didek","PlayerID":849070946,"Points":1944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43424","ServerKey":"pl181","X":681,"Y":583},{"Bonus":0,"Continent":"K35","ID":43425,"Name":"XDX","PlayerID":699098531,"Points":7171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43425","ServerKey":"pl181","X":599,"Y":317},{"Bonus":0,"Continent":"K36","ID":43426,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":2560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43426","ServerKey":"pl181","X":645,"Y":354},{"Bonus":0,"Continent":"K34","ID":43428,"Name":"[0094]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43428","ServerKey":"pl181","X":443,"Y":307},{"Bonus":0,"Continent":"K33","ID":43429,"Name":"Wyzima","PlayerID":7462660,"Points":5834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43429","ServerKey":"pl181","X":333,"Y":375},{"Bonus":5,"Continent":"K33","ID":43430,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43430","ServerKey":"pl181","X":328,"Y":392},{"Bonus":0,"Continent":"K33","ID":43431,"Name":"Wioska 4","PlayerID":7462660,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43431","ServerKey":"pl181","X":337,"Y":375},{"Bonus":0,"Continent":"K36","ID":43432,"Name":"XDX","PlayerID":699098531,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43432","ServerKey":"pl181","X":605,"Y":327},{"Bonus":0,"Continent":"K34","ID":43433,"Name":"[0105]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43433","ServerKey":"pl181","X":445,"Y":305},{"Bonus":0,"Continent":"K66","ID":43435,"Name":"Wioska 083","PlayerID":848971079,"Points":8436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43435","ServerKey":"pl181","X":677,"Y":605},{"Bonus":6,"Continent":"K43","ID":43436,"Name":"*02 GAWRA*","PlayerID":2415972,"Points":8797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43436","ServerKey":"pl181","X":311,"Y":429},{"Bonus":0,"Continent":"K43","ID":43437,"Name":"ZA06","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43437","ServerKey":"pl181","X":319,"Y":407},{"Bonus":0,"Continent":"K74","ID":43438,"Name":"FP018","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43438","ServerKey":"pl181","X":475,"Y":703},{"Bonus":0,"Continent":"K63","ID":43439,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43439","ServerKey":"pl181","X":371,"Y":656},{"Bonus":0,"Continent":"K52","ID":43441,"Name":"C0219","PlayerID":8841266,"Points":7850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43441","ServerKey":"pl181","X":294,"Y":531},{"Bonus":0,"Continent":"K53","ID":43443,"Name":"036","PlayerID":9280477,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43443","ServerKey":"pl181","X":306,"Y":544},{"Bonus":0,"Continent":"K44","ID":43444,"Name":"004. Marzyciel Shrek","PlayerID":698290577,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43444","ServerKey":"pl181","X":465,"Y":494},{"Bonus":0,"Continent":"K47","ID":43445,"Name":"B#019","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43445","ServerKey":"pl181","X":700,"Y":453},{"Bonus":0,"Continent":"K36","ID":43447,"Name":"!36 76 Marginea","PlayerID":698361257,"Points":9474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43447","ServerKey":"pl181","X":661,"Y":371},{"Bonus":0,"Continent":"K34","ID":43448,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":3540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43448","ServerKey":"pl181","X":423,"Y":314},{"Bonus":0,"Continent":"K75","ID":43449,"Name":"Wioska Wiki 2","PlayerID":849100354,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43449","ServerKey":"pl181","X":524,"Y":700},{"Bonus":0,"Continent":"K63","ID":43450,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43450","ServerKey":"pl181","X":332,"Y":610},{"Bonus":0,"Continent":"K63","ID":43451,"Name":"006. Wioska barbarzyƄska","PlayerID":698908184,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43451","ServerKey":"pl181","X":346,"Y":636},{"Bonus":0,"Continent":"K64","ID":43452,"Name":"~078.","PlayerID":7139820,"Points":5549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43452","ServerKey":"pl181","X":497,"Y":699},{"Bonus":0,"Continent":"K55","ID":43453,"Name":"038. Auriga","PlayerID":699703642,"Points":9471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43453","ServerKey":"pl181","X":506,"Y":596},{"Bonus":0,"Continent":"K74","ID":43455,"Name":"ZZZ","PlayerID":8980651,"Points":4140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43455","ServerKey":"pl181","X":458,"Y":703},{"Bonus":8,"Continent":"K53","ID":43456,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43456","ServerKey":"pl181","X":300,"Y":521},{"Bonus":0,"Continent":"K64","ID":43457,"Name":"028 Lyria","PlayerID":699834004,"Points":6763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43457","ServerKey":"pl181","X":467,"Y":676},{"Bonus":0,"Continent":"K64","ID":43458,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43458","ServerKey":"pl181","X":437,"Y":699},{"Bonus":0,"Continent":"K63","ID":43459,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43459","ServerKey":"pl181","X":331,"Y":613},{"Bonus":0,"Continent":"K36","ID":43460,"Name":"Wioska Pawlo101","PlayerID":848973715,"Points":5626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43460","ServerKey":"pl181","X":637,"Y":355},{"Bonus":0,"Continent":"K56","ID":43461,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43461","ServerKey":"pl181","X":696,"Y":539},{"Bonus":0,"Continent":"K33","ID":43462,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43462","ServerKey":"pl181","X":316,"Y":398},{"Bonus":0,"Continent":"K65","ID":43463,"Name":"###025###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43463","ServerKey":"pl181","X":589,"Y":680},{"Bonus":0,"Continent":"K33","ID":43465,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43465","ServerKey":"pl181","X":380,"Y":331},{"Bonus":0,"Continent":"K63","ID":43466,"Name":"Taran","PlayerID":6180190,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43466","ServerKey":"pl181","X":321,"Y":603},{"Bonus":0,"Continent":"K74","ID":43468,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":5025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43468","ServerKey":"pl181","X":494,"Y":708},{"Bonus":0,"Continent":"K25","ID":43469,"Name":"Haiti","PlayerID":699208929,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43469","ServerKey":"pl181","X":509,"Y":295},{"Bonus":0,"Continent":"K63","ID":43470,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43470","ServerKey":"pl181","X":379,"Y":669},{"Bonus":0,"Continent":"K65","ID":43471,"Name":"0316","PlayerID":698659980,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43471","ServerKey":"pl181","X":566,"Y":688},{"Bonus":0,"Continent":"K36","ID":43472,"Name":"0097","PlayerID":698416970,"Points":8068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43472","ServerKey":"pl181","X":674,"Y":396},{"Bonus":0,"Continent":"K52","ID":43473,"Name":"Dream on","PlayerID":698962117,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43473","ServerKey":"pl181","X":299,"Y":507},{"Bonus":0,"Continent":"K65","ID":43474,"Name":"###026###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43474","ServerKey":"pl181","X":599,"Y":682},{"Bonus":0,"Continent":"K42","ID":43475,"Name":"Dream on","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43475","ServerKey":"pl181","X":293,"Y":483},{"Bonus":0,"Continent":"K33","ID":43476,"Name":"Wow17","PlayerID":699730714,"Points":2995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43476","ServerKey":"pl181","X":362,"Y":355},{"Bonus":0,"Continent":"K63","ID":43477,"Name":"Taran","PlayerID":6180190,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43477","ServerKey":"pl181","X":329,"Y":614},{"Bonus":0,"Continent":"K25","ID":43478,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43478","ServerKey":"pl181","X":517,"Y":296},{"Bonus":3,"Continent":"K52","ID":43479,"Name":"EO EO","PlayerID":699697558,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43479","ServerKey":"pl181","X":293,"Y":501},{"Bonus":0,"Continent":"K35","ID":43481,"Name":"Wioska krumlow 4","PlayerID":699098531,"Points":2845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43481","ServerKey":"pl181","X":597,"Y":318},{"Bonus":0,"Continent":"K24","ID":43482,"Name":"[0139]","PlayerID":8630972,"Points":9331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43482","ServerKey":"pl181","X":459,"Y":298},{"Bonus":0,"Continent":"K66","ID":43483,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43483","ServerKey":"pl181","X":662,"Y":625},{"Bonus":0,"Continent":"K33","ID":43484,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43484","ServerKey":"pl181","X":358,"Y":348},{"Bonus":4,"Continent":"K57","ID":43485,"Name":"A05","PlayerID":848995478,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43485","ServerKey":"pl181","X":700,"Y":558},{"Bonus":0,"Continent":"K46","ID":43486,"Name":"Gattacka","PlayerID":699298370,"Points":8849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43486","ServerKey":"pl181","X":690,"Y":432},{"Bonus":0,"Continent":"K33","ID":43487,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43487","ServerKey":"pl181","X":376,"Y":333},{"Bonus":0,"Continent":"K34","ID":43489,"Name":"=0009=","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43489","ServerKey":"pl181","X":405,"Y":317},{"Bonus":0,"Continent":"K56","ID":43490,"Name":"050. Korab","PlayerID":1601917,"Points":6968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43490","ServerKey":"pl181","X":698,"Y":551},{"Bonus":0,"Continent":"K35","ID":43491,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43491","ServerKey":"pl181","X":577,"Y":315},{"Bonus":0,"Continent":"K74","ID":43492,"Name":"A000","PlayerID":699725436,"Points":9283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43492","ServerKey":"pl181","X":469,"Y":700},{"Bonus":0,"Continent":"K46","ID":43493,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43493","ServerKey":"pl181","X":676,"Y":407},{"Bonus":0,"Continent":"K56","ID":43494,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43494","ServerKey":"pl181","X":692,"Y":569},{"Bonus":0,"Continent":"K75","ID":43495,"Name":"013# Gamora","PlayerID":3933666,"Points":7404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43495","ServerKey":"pl181","X":512,"Y":704},{"Bonus":0,"Continent":"K63","ID":43496,"Name":"15 CaƄada","PlayerID":698837993,"Points":1359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43496","ServerKey":"pl181","X":378,"Y":658},{"Bonus":0,"Continent":"K33","ID":43497,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43497","ServerKey":"pl181","X":352,"Y":353},{"Bonus":4,"Continent":"K46","ID":43498,"Name":"monetki E","PlayerID":698768565,"Points":10205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43498","ServerKey":"pl181","X":674,"Y":402},{"Bonus":0,"Continent":"K47","ID":43499,"Name":"Wioska Turystyczna 002","PlayerID":7588382,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43499","ServerKey":"pl181","X":705,"Y":479},{"Bonus":0,"Continent":"K57","ID":43500,"Name":"026","PlayerID":699150527,"Points":8925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43500","ServerKey":"pl181","X":704,"Y":505},{"Bonus":0,"Continent":"K35","ID":43501,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43501","ServerKey":"pl181","X":588,"Y":311},{"Bonus":0,"Continent":"K66","ID":43502,"Name":"Tzarski707","PlayerID":699783063,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43502","ServerKey":"pl181","X":642,"Y":649},{"Bonus":0,"Continent":"K46","ID":43503,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43503","ServerKey":"pl181","X":678,"Y":402},{"Bonus":0,"Continent":"K34","ID":43504,"Name":"010.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43504","ServerKey":"pl181","X":436,"Y":302},{"Bonus":1,"Continent":"K36","ID":43505,"Name":"005. Cintra","PlayerID":849086491,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43505","ServerKey":"pl181","X":665,"Y":375},{"Bonus":0,"Continent":"K63","ID":43506,"Name":"A 060","PlayerID":6948793,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43506","ServerKey":"pl181","X":363,"Y":649},{"Bonus":0,"Continent":"K36","ID":43507,"Name":"Na KraƄcu ƚwiata 013","PlayerID":9291984,"Points":6505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43507","ServerKey":"pl181","X":636,"Y":351},{"Bonus":0,"Continent":"K75","ID":43508,"Name":"- 274 - SS","PlayerID":849018239,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43508","ServerKey":"pl181","X":554,"Y":700},{"Bonus":0,"Continent":"K65","ID":43509,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":8473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43509","ServerKey":"pl181","X":503,"Y":699},{"Bonus":0,"Continent":"K66","ID":43510,"Name":"Didek","PlayerID":849070946,"Points":1264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43510","ServerKey":"pl181","X":678,"Y":600},{"Bonus":0,"Continent":"K46","ID":43511,"Name":"Little Pony","PlayerID":1715091,"Points":8278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43511","ServerKey":"pl181","X":690,"Y":437},{"Bonus":0,"Continent":"K36","ID":43512,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43512","ServerKey":"pl181","X":672,"Y":397},{"Bonus":0,"Continent":"K53","ID":43513,"Name":"007","PlayerID":5997814,"Points":8540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43513","ServerKey":"pl181","X":303,"Y":551},{"Bonus":0,"Continent":"K64","ID":43514,"Name":"026","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43514","ServerKey":"pl181","X":404,"Y":681},{"Bonus":0,"Continent":"K46","ID":43515,"Name":"B#021","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43515","ServerKey":"pl181","X":699,"Y":449},{"Bonus":0,"Continent":"K74","ID":43516,"Name":"044. Night Raid","PlayerID":699684062,"Points":7889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43516","ServerKey":"pl181","X":488,"Y":701},{"Bonus":0,"Continent":"K24","ID":43517,"Name":".achim.","PlayerID":6936607,"Points":4762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43517","ServerKey":"pl181","X":489,"Y":296},{"Bonus":8,"Continent":"K36","ID":43518,"Name":"027. Brauer92","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43518","ServerKey":"pl181","X":670,"Y":381},{"Bonus":0,"Continent":"K24","ID":43520,"Name":"????","PlayerID":698489071,"Points":9297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43520","ServerKey":"pl181","X":478,"Y":299},{"Bonus":0,"Continent":"K65","ID":43521,"Name":"0431","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43521","ServerKey":"pl181","X":546,"Y":676},{"Bonus":0,"Continent":"K65","ID":43522,"Name":"ZbijĂłw MaƂy","PlayerID":698723158,"Points":6597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43522","ServerKey":"pl181","X":570,"Y":687},{"Bonus":0,"Continent":"K34","ID":43523,"Name":"268...gulden","PlayerID":6920960,"Points":8458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43523","ServerKey":"pl181","X":458,"Y":300},{"Bonus":0,"Continent":"K66","ID":43524,"Name":"wiocha","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43524","ServerKey":"pl181","X":618,"Y":662},{"Bonus":0,"Continent":"K34","ID":43525,"Name":"270...gulden","PlayerID":6920960,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43525","ServerKey":"pl181","X":463,"Y":304},{"Bonus":0,"Continent":"K33","ID":43526,"Name":"238","PlayerID":7271812,"Points":2194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43526","ServerKey":"pl181","X":398,"Y":320},{"Bonus":0,"Continent":"K53","ID":43527,"Name":"C0180","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43527","ServerKey":"pl181","X":302,"Y":533},{"Bonus":0,"Continent":"K25","ID":43528,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43528","ServerKey":"pl181","X":517,"Y":294},{"Bonus":0,"Continent":"K65","ID":43529,"Name":"Kotarwice","PlayerID":698723158,"Points":5181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43529","ServerKey":"pl181","X":570,"Y":691},{"Bonus":0,"Continent":"K66","ID":43530,"Name":"Komandos","PlayerID":7976264,"Points":7560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43530","ServerKey":"pl181","X":630,"Y":659},{"Bonus":0,"Continent":"K56","ID":43531,"Name":"S008","PlayerID":8428196,"Points":6782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43531","ServerKey":"pl181","X":683,"Y":586},{"Bonus":0,"Continent":"K35","ID":43532,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43532","ServerKey":"pl181","X":561,"Y":303},{"Bonus":0,"Continent":"K43","ID":43533,"Name":"23 barbarzyƄska..","PlayerID":849018442,"Points":9420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43533","ServerKey":"pl181","X":300,"Y":444},{"Bonus":2,"Continent":"K63","ID":43534,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43534","ServerKey":"pl181","X":391,"Y":672},{"Bonus":0,"Continent":"K66","ID":43535,"Name":"06-oss","PlayerID":848921861,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43535","ServerKey":"pl181","X":677,"Y":608},{"Bonus":0,"Continent":"K65","ID":43536,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43536","ServerKey":"pl181","X":575,"Y":692},{"Bonus":0,"Continent":"K63","ID":43538,"Name":"O038","PlayerID":272173,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43538","ServerKey":"pl181","X":342,"Y":627},{"Bonus":0,"Continent":"K34","ID":43539,"Name":"[0163]","PlayerID":8630972,"Points":8677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43539","ServerKey":"pl181","X":448,"Y":307},{"Bonus":0,"Continent":"K36","ID":43540,"Name":"009","PlayerID":849086491,"Points":3628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43540","ServerKey":"pl181","X":640,"Y":353},{"Bonus":0,"Continent":"K43","ID":43541,"Name":"z181_19","PlayerID":393668,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43541","ServerKey":"pl181","X":306,"Y":442},{"Bonus":0,"Continent":"K66","ID":43542,"Name":"Bessa 023","PlayerID":848987051,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43542","ServerKey":"pl181","X":635,"Y":652},{"Bonus":0,"Continent":"K36","ID":43543,"Name":"Lipno","PlayerID":699491076,"Points":5841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43543","ServerKey":"pl181","X":665,"Y":387},{"Bonus":0,"Continent":"K46","ID":43544,"Name":"Gattacka","PlayerID":699298370,"Points":8975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43544","ServerKey":"pl181","X":690,"Y":429},{"Bonus":0,"Continent":"K52","ID":43545,"Name":"EO EO","PlayerID":699697558,"Points":7989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43545","ServerKey":"pl181","X":297,"Y":510},{"Bonus":0,"Continent":"K74","ID":43546,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43546","ServerKey":"pl181","X":492,"Y":712},{"Bonus":0,"Continent":"K52","ID":43547,"Name":"008","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43547","ServerKey":"pl181","X":299,"Y":554},{"Bonus":6,"Continent":"K34","ID":43548,"Name":"#0224 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43548","ServerKey":"pl181","X":442,"Y":303},{"Bonus":0,"Continent":"K66","ID":43549,"Name":"komandos","PlayerID":7976264,"Points":9235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43549","ServerKey":"pl181","X":632,"Y":665},{"Bonus":0,"Continent":"K63","ID":43550,"Name":"O009","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43550","ServerKey":"pl181","X":341,"Y":633},{"Bonus":0,"Continent":"K36","ID":43551,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43551","ServerKey":"pl181","X":628,"Y":337},{"Bonus":0,"Continent":"K64","ID":43552,"Name":"ZZZ","PlayerID":8980651,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43552","ServerKey":"pl181","X":428,"Y":693},{"Bonus":0,"Continent":"K43","ID":43553,"Name":"FENDI","PlayerID":699794765,"Points":4632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43553","ServerKey":"pl181","X":304,"Y":461},{"Bonus":0,"Continent":"K64","ID":43554,"Name":"0020 Wioska barbarzyƄska","PlayerID":849037407,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43554","ServerKey":"pl181","X":441,"Y":699},{"Bonus":0,"Continent":"K74","ID":43555,"Name":"03. Na garbarach korek","PlayerID":849092769,"Points":9548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43555","ServerKey":"pl181","X":485,"Y":706},{"Bonus":0,"Continent":"K57","ID":43556,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43556","ServerKey":"pl181","X":704,"Y":531},{"Bonus":0,"Continent":"K25","ID":43557,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43557","ServerKey":"pl181","X":535,"Y":295},{"Bonus":0,"Continent":"K63","ID":43558,"Name":"Kamizela","PlayerID":272173,"Points":5307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43558","ServerKey":"pl181","X":355,"Y":638},{"Bonus":0,"Continent":"K64","ID":43559,"Name":"036","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43559","ServerKey":"pl181","X":405,"Y":681},{"Bonus":0,"Continent":"K36","ID":43560,"Name":"024","PlayerID":698635863,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43560","ServerKey":"pl181","X":668,"Y":383},{"Bonus":0,"Continent":"K63","ID":43561,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43561","ServerKey":"pl181","X":367,"Y":654},{"Bonus":0,"Continent":"K47","ID":43562,"Name":"052.","PlayerID":849094609,"Points":6314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43562","ServerKey":"pl181","X":704,"Y":462},{"Bonus":0,"Continent":"K36","ID":43563,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43563","ServerKey":"pl181","X":620,"Y":338},{"Bonus":7,"Continent":"K64","ID":43564,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43564","ServerKey":"pl181","X":405,"Y":680},{"Bonus":0,"Continent":"K34","ID":43565,"Name":"024.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43565","ServerKey":"pl181","X":436,"Y":301},{"Bonus":0,"Continent":"K36","ID":43566,"Name":"Na KraƄcu ƚwiata 012","PlayerID":9291984,"Points":4568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43566","ServerKey":"pl181","X":634,"Y":352},{"Bonus":0,"Continent":"K34","ID":43567,"Name":"[0119]","PlayerID":8630972,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43567","ServerKey":"pl181","X":442,"Y":304},{"Bonus":0,"Continent":"K63","ID":43568,"Name":"Taran","PlayerID":6180190,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43568","ServerKey":"pl181","X":326,"Y":615},{"Bonus":0,"Continent":"K42","ID":43569,"Name":"[0180]","PlayerID":8630972,"Points":8614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43569","ServerKey":"pl181","X":290,"Y":496},{"Bonus":0,"Continent":"K33","ID":43570,"Name":"*222*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43570","ServerKey":"pl181","X":334,"Y":384},{"Bonus":0,"Continent":"K53","ID":43571,"Name":"022","PlayerID":849098688,"Points":5847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43571","ServerKey":"pl181","X":305,"Y":566},{"Bonus":0,"Continent":"K65","ID":43572,"Name":"Wyspa_38","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43572","ServerKey":"pl181","X":512,"Y":699},{"Bonus":0,"Continent":"K57","ID":43573,"Name":"0117","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43573","ServerKey":"pl181","X":709,"Y":502},{"Bonus":0,"Continent":"K52","ID":43574,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43574","ServerKey":"pl181","X":295,"Y":520},{"Bonus":9,"Continent":"K66","ID":43575,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43575","ServerKey":"pl181","X":653,"Y":632},{"Bonus":0,"Continent":"K57","ID":43576,"Name":"B10","PlayerID":848995478,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43576","ServerKey":"pl181","X":703,"Y":548},{"Bonus":0,"Continent":"K57","ID":43577,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43577","ServerKey":"pl181","X":700,"Y":544},{"Bonus":0,"Continent":"K46","ID":43578,"Name":"Biorą paƂy co nie spaƂy...","PlayerID":849050191,"Points":5703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43578","ServerKey":"pl181","X":622,"Y":406},{"Bonus":0,"Continent":"K36","ID":43579,"Name":"[194]","PlayerID":8000875,"Points":8958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43579","ServerKey":"pl181","X":677,"Y":389},{"Bonus":0,"Continent":"K46","ID":43580,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43580","ServerKey":"pl181","X":675,"Y":400},{"Bonus":0,"Continent":"K35","ID":43581,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":8308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43581","ServerKey":"pl181","X":595,"Y":318},{"Bonus":3,"Continent":"K56","ID":43582,"Name":"Wioska Zorro 007","PlayerID":849080702,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43582","ServerKey":"pl181","X":680,"Y":599},{"Bonus":0,"Continent":"K46","ID":43583,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43583","ServerKey":"pl181","X":682,"Y":410},{"Bonus":5,"Continent":"K65","ID":43584,"Name":"Osada koczownikĂłw","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43584","ServerKey":"pl181","X":553,"Y":695},{"Bonus":0,"Continent":"K44","ID":43585,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43585","ServerKey":"pl181","X":401,"Y":492},{"Bonus":0,"Continent":"K56","ID":43587,"Name":"010","PlayerID":301602,"Points":8955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43587","ServerKey":"pl181","X":697,"Y":563},{"Bonus":0,"Continent":"K36","ID":43588,"Name":"!36 65 Humor","PlayerID":698361257,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43588","ServerKey":"pl181","X":659,"Y":367},{"Bonus":7,"Continent":"K25","ID":43589,"Name":"AAA","PlayerID":1006847,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43589","ServerKey":"pl181","X":541,"Y":298},{"Bonus":0,"Continent":"K64","ID":43590,"Name":"0042 Qukaqu.","PlayerID":849037407,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43590","ServerKey":"pl181","X":449,"Y":696},{"Bonus":0,"Continent":"K65","ID":43591,"Name":"BiaƂka","PlayerID":698723158,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43591","ServerKey":"pl181","X":571,"Y":694},{"Bonus":0,"Continent":"K64","ID":43592,"Name":"0009 Wioska barbarzyƄska","PlayerID":849037407,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43592","ServerKey":"pl181","X":443,"Y":693},{"Bonus":4,"Continent":"K65","ID":43593,"Name":"###004###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43593","ServerKey":"pl181","X":588,"Y":690},{"Bonus":0,"Continent":"K47","ID":43594,"Name":"Wioska barbarzyƄska","PlayerID":699150527,"Points":8299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43594","ServerKey":"pl181","X":702,"Y":453},{"Bonus":0,"Continent":"K53","ID":43595,"Name":"004","PlayerID":849097898,"Points":6425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43595","ServerKey":"pl181","X":305,"Y":565},{"Bonus":0,"Continent":"K75","ID":43597,"Name":"049 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43597","ServerKey":"pl181","X":548,"Y":702},{"Bonus":0,"Continent":"K64","ID":43598,"Name":"C004","PlayerID":8954402,"Points":9665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43598","ServerKey":"pl181","X":472,"Y":698},{"Bonus":0,"Continent":"K24","ID":43599,"Name":"Mniejsze zƂo 0082","PlayerID":699794765,"Points":4656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43599","ServerKey":"pl181","X":470,"Y":293},{"Bonus":0,"Continent":"K47","ID":43601,"Name":"Wioska Turystyczna 003","PlayerID":7588382,"Points":9265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43601","ServerKey":"pl181","X":708,"Y":478},{"Bonus":0,"Continent":"K53","ID":43602,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":3226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43602","ServerKey":"pl181","X":305,"Y":573},{"Bonus":8,"Continent":"K53","ID":43603,"Name":"Osada koczownikĂłw","PlayerID":7183372,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43603","ServerKey":"pl181","X":318,"Y":598},{"Bonus":0,"Continent":"K42","ID":43604,"Name":"181 izo","PlayerID":634848,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43604","ServerKey":"pl181","X":299,"Y":449},{"Bonus":3,"Continent":"K36","ID":43605,"Name":"XDX","PlayerID":699098531,"Points":11164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43605","ServerKey":"pl181","X":600,"Y":318},{"Bonus":0,"Continent":"K35","ID":43606,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43606","ServerKey":"pl181","X":567,"Y":307},{"Bonus":0,"Continent":"K25","ID":43607,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":5225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43607","ServerKey":"pl181","X":532,"Y":296},{"Bonus":0,"Continent":"K46","ID":43608,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43608","ServerKey":"pl181","X":696,"Y":433},{"Bonus":0,"Continent":"K33","ID":43609,"Name":"PIROTECHNIK 003","PlayerID":849101083,"Points":8173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43609","ServerKey":"pl181","X":360,"Y":347},{"Bonus":0,"Continent":"K75","ID":43610,"Name":"087 invidia","PlayerID":849093426,"Points":8453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43610","ServerKey":"pl181","X":517,"Y":701},{"Bonus":0,"Continent":"K46","ID":43611,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43611","ServerKey":"pl181","X":694,"Y":436},{"Bonus":0,"Continent":"K43","ID":43612,"Name":"z181_25","PlayerID":393668,"Points":8884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43612","ServerKey":"pl181","X":306,"Y":444},{"Bonus":2,"Continent":"K56","ID":43613,"Name":"TWIERDZA .:005:.","PlayerID":7154207,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43613","ServerKey":"pl181","X":692,"Y":580},{"Bonus":0,"Continent":"K66","ID":43614,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43614","ServerKey":"pl181","X":628,"Y":657},{"Bonus":0,"Continent":"K52","ID":43616,"Name":"New WorldA","PlayerID":849084005,"Points":6681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43616","ServerKey":"pl181","X":294,"Y":525},{"Bonus":0,"Continent":"K33","ID":43617,"Name":"012","PlayerID":8153941,"Points":3750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43617","ServerKey":"pl181","X":389,"Y":327},{"Bonus":0,"Continent":"K35","ID":43618,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":4957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43618","ServerKey":"pl181","X":555,"Y":305},{"Bonus":0,"Continent":"K66","ID":43619,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43619","ServerKey":"pl181","X":646,"Y":637},{"Bonus":0,"Continent":"K53","ID":43620,"Name":"Wioska barbarzyƄska 2","PlayerID":699016994,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43620","ServerKey":"pl181","X":309,"Y":582},{"Bonus":0,"Continent":"K57","ID":43621,"Name":"043","PlayerID":7085502,"Points":8949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43621","ServerKey":"pl181","X":709,"Y":512},{"Bonus":0,"Continent":"K56","ID":43622,"Name":"TWIERDZA .:056:.","PlayerID":7154207,"Points":9514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43622","ServerKey":"pl181","X":689,"Y":576},{"Bonus":0,"Continent":"K64","ID":43623,"Name":"0028 Wioska barbarzyƄska","PlayerID":849037407,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43623","ServerKey":"pl181","X":444,"Y":697},{"Bonus":1,"Continent":"K52","ID":43624,"Name":"006","PlayerID":9280477,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43624","ServerKey":"pl181","X":299,"Y":555},{"Bonus":0,"Continent":"K52","ID":43626,"Name":"C0210","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43626","ServerKey":"pl181","X":297,"Y":533},{"Bonus":0,"Continent":"K65","ID":43627,"Name":"###027###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43627","ServerKey":"pl181","X":589,"Y":684},{"Bonus":0,"Continent":"K75","ID":43629,"Name":"C003","PlayerID":698599365,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43629","ServerKey":"pl181","X":541,"Y":705},{"Bonus":0,"Continent":"K65","ID":43630,"Name":"###085###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43630","ServerKey":"pl181","X":579,"Y":690},{"Bonus":0,"Continent":"K63","ID":43631,"Name":"O080","PlayerID":272173,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43631","ServerKey":"pl181","X":337,"Y":626},{"Bonus":9,"Continent":"K36","ID":43632,"Name":"009 Kaiserslautern","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43632","ServerKey":"pl181","X":647,"Y":355},{"Bonus":0,"Continent":"K34","ID":43633,"Name":"???","PlayerID":698489071,"Points":10425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43633","ServerKey":"pl181","X":484,"Y":300},{"Bonus":0,"Continent":"K57","ID":43634,"Name":"06. Skellige","PlayerID":8976313,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43634","ServerKey":"pl181","X":700,"Y":537},{"Bonus":0,"Continent":"K53","ID":43635,"Name":"014","PlayerID":9280477,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43635","ServerKey":"pl181","X":300,"Y":554},{"Bonus":0,"Continent":"K33","ID":43636,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":5195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43636","ServerKey":"pl181","X":338,"Y":371},{"Bonus":0,"Continent":"K36","ID":43637,"Name":"TUUU","PlayerID":699098531,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43637","ServerKey":"pl181","X":602,"Y":322},{"Bonus":0,"Continent":"K24","ID":43638,"Name":"????","PlayerID":698489071,"Points":10769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43638","ServerKey":"pl181","X":473,"Y":295},{"Bonus":0,"Continent":"K53","ID":43639,"Name":"C0190","PlayerID":8841266,"Points":8181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43639","ServerKey":"pl181","X":303,"Y":532},{"Bonus":0,"Continent":"K53","ID":43640,"Name":"029","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43640","ServerKey":"pl181","X":311,"Y":575},{"Bonus":0,"Continent":"K33","ID":43641,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43641","ServerKey":"pl181","X":377,"Y":333},{"Bonus":0,"Continent":"K33","ID":43642,"Name":"0070","PlayerID":848913037,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43642","ServerKey":"pl181","X":369,"Y":337},{"Bonus":0,"Continent":"K36","ID":43643,"Name":"013 Wolfsschanze","PlayerID":849091899,"Points":6048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43643","ServerKey":"pl181","X":610,"Y":353},{"Bonus":0,"Continent":"K52","ID":43644,"Name":"C0129","PlayerID":8841266,"Points":10249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43644","ServerKey":"pl181","X":298,"Y":517},{"Bonus":0,"Continent":"K66","ID":43645,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":8420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43645","ServerKey":"pl181","X":617,"Y":668},{"Bonus":0,"Continent":"K66","ID":43646,"Name":"klops3","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43646","ServerKey":"pl181","X":626,"Y":666},{"Bonus":0,"Continent":"K65","ID":43647,"Name":"- 157 - SS","PlayerID":849018239,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43647","ServerKey":"pl181","X":538,"Y":696},{"Bonus":0,"Continent":"K42","ID":43648,"Name":"Dream on","PlayerID":698962117,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43648","ServerKey":"pl181","X":294,"Y":491},{"Bonus":0,"Continent":"K35","ID":43649,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43649","ServerKey":"pl181","X":502,"Y":301},{"Bonus":0,"Continent":"K47","ID":43650,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43650","ServerKey":"pl181","X":703,"Y":470},{"Bonus":2,"Continent":"K25","ID":43651,"Name":"AAA","PlayerID":1006847,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43651","ServerKey":"pl181","X":536,"Y":299},{"Bonus":0,"Continent":"K66","ID":43652,"Name":"002. GĂłrki MaƂe","PlayerID":849100994,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43652","ServerKey":"pl181","X":655,"Y":637},{"Bonus":0,"Continent":"K35","ID":43653,"Name":"AAA","PlayerID":1006847,"Points":6243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43653","ServerKey":"pl181","X":551,"Y":305},{"Bonus":0,"Continent":"K35","ID":43654,"Name":"J#014","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43654","ServerKey":"pl181","X":573,"Y":333},{"Bonus":0,"Continent":"K43","ID":43655,"Name":"Z22","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43655","ServerKey":"pl181","X":316,"Y":413},{"Bonus":0,"Continent":"K42","ID":43656,"Name":"Dream on","PlayerID":698962117,"Points":4736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43656","ServerKey":"pl181","X":293,"Y":480},{"Bonus":0,"Continent":"K24","ID":43657,"Name":"208...segador","PlayerID":6920960,"Points":10877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43657","ServerKey":"pl181","X":458,"Y":297},{"Bonus":0,"Continent":"K66","ID":43658,"Name":"Wioska brabarzyƄcĂłw","PlayerID":8224678,"Points":5049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43658","ServerKey":"pl181","X":673,"Y":601},{"Bonus":0,"Continent":"K33","ID":43659,"Name":"Wioska","PlayerID":849027025,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43659","ServerKey":"pl181","X":359,"Y":346},{"Bonus":0,"Continent":"K64","ID":43660,"Name":"0038 Wioska barbarzyƄska","PlayerID":849037407,"Points":9736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43660","ServerKey":"pl181","X":445,"Y":697},{"Bonus":0,"Continent":"K36","ID":43661,"Name":"XDX","PlayerID":699098531,"Points":7051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43661","ServerKey":"pl181","X":616,"Y":332},{"Bonus":0,"Continent":"K74","ID":43662,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43662","ServerKey":"pl181","X":498,"Y":709},{"Bonus":0,"Continent":"K33","ID":43663,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43663","ServerKey":"pl181","X":375,"Y":339},{"Bonus":0,"Continent":"K57","ID":43664,"Name":"019","PlayerID":699150527,"Points":8085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43664","ServerKey":"pl181","X":707,"Y":511},{"Bonus":0,"Continent":"K24","ID":43665,"Name":"????","PlayerID":698489071,"Points":7101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43665","ServerKey":"pl181","X":472,"Y":295},{"Bonus":0,"Continent":"K57","ID":43666,"Name":"059. Mount Everest","PlayerID":1601917,"Points":8634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43666","ServerKey":"pl181","X":701,"Y":556},{"Bonus":0,"Continent":"K64","ID":43667,"Name":"018S","PlayerID":848896948,"Points":9360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43667","ServerKey":"pl181","X":478,"Y":698},{"Bonus":0,"Continent":"K65","ID":43668,"Name":"###013###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43668","ServerKey":"pl181","X":595,"Y":684},{"Bonus":0,"Continent":"K75","ID":43670,"Name":"121 invidia","PlayerID":849093426,"Points":9977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43670","ServerKey":"pl181","X":505,"Y":707},{"Bonus":0,"Continent":"K44","ID":43671,"Name":"Szlachcic","PlayerID":699098531,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43671","ServerKey":"pl181","X":496,"Y":477},{"Bonus":0,"Continent":"K45","ID":43672,"Name":"[156]Szczęƛliwego Nowego Roku ;)","PlayerID":848985692,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43672","ServerKey":"pl181","X":580,"Y":474},{"Bonus":0,"Continent":"K57","ID":43673,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43673","ServerKey":"pl181","X":702,"Y":542},{"Bonus":0,"Continent":"K25","ID":43675,"Name":"AAA","PlayerID":1006847,"Points":8132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43675","ServerKey":"pl181","X":537,"Y":296},{"Bonus":0,"Continent":"K47","ID":43676,"Name":"025.","PlayerID":849094609,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43676","ServerKey":"pl181","X":703,"Y":464},{"Bonus":0,"Continent":"K65","ID":43677,"Name":"###086###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43677","ServerKey":"pl181","X":582,"Y":686},{"Bonus":0,"Continent":"K43","ID":43678,"Name":"Cynowy grĂłd","PlayerID":699377401,"Points":8445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43678","ServerKey":"pl181","X":319,"Y":416},{"Bonus":0,"Continent":"K64","ID":43679,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43679","ServerKey":"pl181","X":427,"Y":692},{"Bonus":0,"Continent":"K35","ID":43680,"Name":"004","PlayerID":1767876,"Points":7950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43680","ServerKey":"pl181","X":593,"Y":315},{"Bonus":0,"Continent":"K42","ID":43681,"Name":"Wioska X08","PlayerID":698701911,"Points":2375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43681","ServerKey":"pl181","X":294,"Y":468},{"Bonus":0,"Continent":"K36","ID":43682,"Name":"026","PlayerID":9148043,"Points":4050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43682","ServerKey":"pl181","X":640,"Y":349},{"Bonus":0,"Continent":"K33","ID":43683,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43683","ServerKey":"pl181","X":321,"Y":395},{"Bonus":0,"Continent":"K65","ID":43684,"Name":"###087###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43684","ServerKey":"pl181","X":593,"Y":677},{"Bonus":0,"Continent":"K56","ID":43685,"Name":"Wioska 116","PlayerID":848971079,"Points":1273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43685","ServerKey":"pl181","X":691,"Y":582},{"Bonus":0,"Continent":"K47","ID":43686,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43686","ServerKey":"pl181","X":708,"Y":490},{"Bonus":0,"Continent":"K63","ID":43687,"Name":"Taran","PlayerID":6180190,"Points":8795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43687","ServerKey":"pl181","X":323,"Y":602},{"Bonus":0,"Continent":"K63","ID":43688,"Name":"Wioska barbarzyƄska","PlayerID":9199885,"Points":3466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43688","ServerKey":"pl181","X":337,"Y":615},{"Bonus":0,"Continent":"K63","ID":43689,"Name":"O135","PlayerID":272173,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43689","ServerKey":"pl181","X":342,"Y":628},{"Bonus":0,"Continent":"K56","ID":43690,"Name":"TWIERDZA .:046:.","PlayerID":7154207,"Points":10225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43690","ServerKey":"pl181","X":694,"Y":574},{"Bonus":0,"Continent":"K42","ID":43691,"Name":"Wioska X12","PlayerID":698701911,"Points":6986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43691","ServerKey":"pl181","X":295,"Y":468},{"Bonus":0,"Continent":"K75","ID":43693,"Name":"Aniela","PlayerID":699733501,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43693","ServerKey":"pl181","X":528,"Y":705},{"Bonus":0,"Continent":"K65","ID":43694,"Name":"###028###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43694","ServerKey":"pl181","X":590,"Y":681},{"Bonus":0,"Continent":"K56","ID":43695,"Name":"TWIERDZA .:042:.","PlayerID":7154207,"Points":10225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43695","ServerKey":"pl181","X":693,"Y":563},{"Bonus":5,"Continent":"K47","ID":43696,"Name":"028","PlayerID":849091105,"Points":8474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43696","ServerKey":"pl181","X":708,"Y":488},{"Bonus":0,"Continent":"K33","ID":43697,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":3655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43697","ServerKey":"pl181","X":326,"Y":391},{"Bonus":0,"Continent":"K64","ID":43698,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43698","ServerKey":"pl181","X":408,"Y":680},{"Bonus":0,"Continent":"K66","ID":43699,"Name":"Bessa 015","PlayerID":848987051,"Points":10183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43699","ServerKey":"pl181","X":637,"Y":657},{"Bonus":0,"Continent":"K56","ID":43700,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43700","ServerKey":"pl181","X":699,"Y":541},{"Bonus":2,"Continent":"K42","ID":43701,"Name":"Gibonowo","PlayerID":849100877,"Points":11347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43701","ServerKey":"pl181","X":293,"Y":489},{"Bonus":0,"Continent":"K34","ID":43702,"Name":"[0115]","PlayerID":8630972,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43702","ServerKey":"pl181","X":441,"Y":306},{"Bonus":0,"Continent":"K56","ID":43703,"Name":"051. Kamerun","PlayerID":1601917,"Points":7344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43703","ServerKey":"pl181","X":695,"Y":551},{"Bonus":0,"Continent":"K75","ID":43704,"Name":"116 invidia","PlayerID":849093426,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43704","ServerKey":"pl181","X":505,"Y":709},{"Bonus":0,"Continent":"K46","ID":43705,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43705","ServerKey":"pl181","X":688,"Y":412},{"Bonus":0,"Continent":"K56","ID":43706,"Name":"Wioska Zorro 021","PlayerID":849080702,"Points":4089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43706","ServerKey":"pl181","X":676,"Y":593},{"Bonus":0,"Continent":"K43","ID":43707,"Name":"Wioska Espel132","PlayerID":698630140,"Points":7265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43707","ServerKey":"pl181","X":305,"Y":457},{"Bonus":0,"Continent":"K35","ID":43708,"Name":"XDX","PlayerID":699098531,"Points":5617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43708","ServerKey":"pl181","X":594,"Y":322},{"Bonus":0,"Continent":"K33","ID":43709,"Name":"Szlachcic","PlayerID":698160606,"Points":8165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43709","ServerKey":"pl181","X":380,"Y":339},{"Bonus":0,"Continent":"K63","ID":43710,"Name":"C064","PlayerID":699383279,"Points":5820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43710","ServerKey":"pl181","X":376,"Y":657},{"Bonus":0,"Continent":"K66","ID":43711,"Name":"#K66 0008","PlayerID":699728159,"Points":5332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43711","ServerKey":"pl181","X":612,"Y":674},{"Bonus":0,"Continent":"K65","ID":43712,"Name":"Forteca*011*","PlayerID":1078121,"Points":3757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43712","ServerKey":"pl181","X":532,"Y":698},{"Bonus":0,"Continent":"K56","ID":43713,"Name":"ZzZzZ OdlotowoNAimprezie Sylwka","PlayerID":699778867,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43713","ServerKey":"pl181","X":694,"Y":571},{"Bonus":0,"Continent":"K63","ID":43714,"Name":"004. Wioska barbarzyƄska","PlayerID":698908184,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43714","ServerKey":"pl181","X":345,"Y":636},{"Bonus":0,"Continent":"K66","ID":43715,"Name":"#046#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43715","ServerKey":"pl181","X":637,"Y":637},{"Bonus":0,"Continent":"K65","ID":43716,"Name":"###088###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43716","ServerKey":"pl181","X":598,"Y":677},{"Bonus":0,"Continent":"K64","ID":43717,"Name":"037","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43717","ServerKey":"pl181","X":421,"Y":686},{"Bonus":0,"Continent":"K53","ID":43718,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43718","ServerKey":"pl181","X":302,"Y":555},{"Bonus":0,"Continent":"K57","ID":43719,"Name":"062. Manaslu","PlayerID":1601917,"Points":5214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43719","ServerKey":"pl181","X":706,"Y":540},{"Bonus":0,"Continent":"K43","ID":43721,"Name":"004","PlayerID":848895676,"Points":2620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43721","ServerKey":"pl181","X":300,"Y":466},{"Bonus":4,"Continent":"K46","ID":43722,"Name":"003.SHINee","PlayerID":9180206,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43722","ServerKey":"pl181","X":688,"Y":418},{"Bonus":0,"Continent":"K43","ID":43723,"Name":"Z17","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43723","ServerKey":"pl181","X":312,"Y":409},{"Bonus":0,"Continent":"K35","ID":43724,"Name":"Gdynia","PlayerID":699208929,"Points":1887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43724","ServerKey":"pl181","X":514,"Y":300},{"Bonus":0,"Continent":"K57","ID":43725,"Name":"061. Monte Cassino","PlayerID":1601917,"Points":5503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43725","ServerKey":"pl181","X":704,"Y":534},{"Bonus":0,"Continent":"K36","ID":43726,"Name":"013","PlayerID":9291984,"Points":6415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43726","ServerKey":"pl181","X":641,"Y":347},{"Bonus":0,"Continent":"K43","ID":43727,"Name":"Dream on","PlayerID":698962117,"Points":9505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43727","ServerKey":"pl181","X":302,"Y":498},{"Bonus":0,"Continent":"K66","ID":43728,"Name":"Wygwizdowa 005","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43728","ServerKey":"pl181","X":636,"Y":655},{"Bonus":0,"Continent":"K63","ID":43729,"Name":"024. Wioska barbarzyƄska","PlayerID":698908184,"Points":7124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43729","ServerKey":"pl181","X":347,"Y":639},{"Bonus":0,"Continent":"K75","ID":43730,"Name":"016","PlayerID":2293376,"Points":4168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43730","ServerKey":"pl181","X":512,"Y":707},{"Bonus":2,"Continent":"K33","ID":43731,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":10021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43731","ServerKey":"pl181","X":382,"Y":329},{"Bonus":0,"Continent":"K34","ID":43732,"Name":"#0219 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43732","ServerKey":"pl181","X":451,"Y":304},{"Bonus":0,"Continent":"K74","ID":43733,"Name":"013Wigilijka","PlayerID":698620694,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43733","ServerKey":"pl181","X":470,"Y":706},{"Bonus":0,"Continent":"K53","ID":43734,"Name":"034","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43734","ServerKey":"pl181","X":308,"Y":570},{"Bonus":0,"Continent":"K36","ID":43735,"Name":"Wioska barbarzyƄska","PlayerID":849062920,"Points":1701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43735","ServerKey":"pl181","X":626,"Y":343},{"Bonus":0,"Continent":"K63","ID":43736,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43736","ServerKey":"pl181","X":330,"Y":607},{"Bonus":0,"Continent":"K25","ID":43737,"Name":"001","PlayerID":699208929,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43737","ServerKey":"pl181","X":526,"Y":296},{"Bonus":0,"Continent":"K64","ID":43738,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43738","ServerKey":"pl181","X":418,"Y":692},{"Bonus":0,"Continent":"K33","ID":43739,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43739","ServerKey":"pl181","X":333,"Y":381},{"Bonus":0,"Continent":"K74","ID":43740,"Name":"24. AVE WHY!","PlayerID":849092769,"Points":10278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43740","ServerKey":"pl181","X":483,"Y":706},{"Bonus":0,"Continent":"K66","ID":43742,"Name":"025 Wioska barbarzyƄska","PlayerID":699346280,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43742","ServerKey":"pl181","X":603,"Y":677},{"Bonus":0,"Continent":"K64","ID":43743,"Name":"Wioska zbrzeziu44","PlayerID":849098827,"Points":1655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43743","ServerKey":"pl181","X":452,"Y":697},{"Bonus":0,"Continent":"K47","ID":43744,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43744","ServerKey":"pl181","X":701,"Y":481},{"Bonus":0,"Continent":"K57","ID":43745,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43745","ServerKey":"pl181","X":707,"Y":534},{"Bonus":0,"Continent":"K63","ID":43746,"Name":"Dukaj","PlayerID":272173,"Points":7979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43746","ServerKey":"pl181","X":354,"Y":635},{"Bonus":0,"Continent":"K35","ID":43747,"Name":"Ciawar Jaguar X300","PlayerID":699072129,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43747","ServerKey":"pl181","X":566,"Y":312},{"Bonus":0,"Continent":"K35","ID":43749,"Name":"AAA","PlayerID":1006847,"Points":7464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43749","ServerKey":"pl181","X":534,"Y":301},{"Bonus":0,"Continent":"K36","ID":43750,"Name":"059-Mroczna Osada","PlayerID":849035905,"Points":3053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43750","ServerKey":"pl181","X":651,"Y":360},{"Bonus":0,"Continent":"K46","ID":43751,"Name":"[043] Wioska barbarzyƄska","PlayerID":849095068,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43751","ServerKey":"pl181","X":686,"Y":426},{"Bonus":0,"Continent":"K52","ID":43752,"Name":"[0196]","PlayerID":8630972,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43752","ServerKey":"pl181","X":295,"Y":500},{"Bonus":0,"Continent":"K63","ID":43753,"Name":"A 038","PlayerID":6948793,"Points":5618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43753","ServerKey":"pl181","X":361,"Y":645},{"Bonus":0,"Continent":"K53","ID":43755,"Name":"010","PlayerID":6180190,"Points":7272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43755","ServerKey":"pl181","X":313,"Y":591},{"Bonus":0,"Continent":"K64","ID":43756,"Name":"192","PlayerID":849099876,"Points":2336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43756","ServerKey":"pl181","X":454,"Y":697},{"Bonus":0,"Continent":"K43","ID":43757,"Name":"Neonowy grĂłd","PlayerID":699377401,"Points":3142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43757","ServerKey":"pl181","X":316,"Y":419},{"Bonus":0,"Continent":"K35","ID":43758,"Name":"XXXX","PlayerID":849054951,"Points":10268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43758","ServerKey":"pl181","X":562,"Y":306},{"Bonus":0,"Continent":"K56","ID":43759,"Name":"047. Janikulum","PlayerID":1601917,"Points":8855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43759","ServerKey":"pl181","X":699,"Y":547},{"Bonus":0,"Continent":"K65","ID":43760,"Name":"- 200 - SS","PlayerID":849018239,"Points":7627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43760","ServerKey":"pl181","X":533,"Y":698},{"Bonus":0,"Continent":"K65","ID":43761,"Name":"###029###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43761","ServerKey":"pl181","X":588,"Y":687},{"Bonus":0,"Continent":"K63","ID":43762,"Name":"Wioska rosiu56","PlayerID":6180190,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43762","ServerKey":"pl181","X":332,"Y":613},{"Bonus":0,"Continent":"K33","ID":43763,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43763","ServerKey":"pl181","X":327,"Y":399},{"Bonus":0,"Continent":"K56","ID":43764,"Name":"Didi","PlayerID":849070946,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43764","ServerKey":"pl181","X":684,"Y":590},{"Bonus":0,"Continent":"K33","ID":43765,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43765","ServerKey":"pl181","X":337,"Y":381},{"Bonus":0,"Continent":"K54","ID":43766,"Name":"032. ALFI","PlayerID":8539216,"Points":2006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43766","ServerKey":"pl181","X":479,"Y":574},{"Bonus":0,"Continent":"K36","ID":43767,"Name":"Veracruz","PlayerID":849061374,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43767","ServerKey":"pl181","X":626,"Y":335},{"Bonus":6,"Continent":"K56","ID":43768,"Name":"B03","PlayerID":848995478,"Points":9927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43768","ServerKey":"pl181","X":699,"Y":551},{"Bonus":0,"Continent":"K57","ID":43769,"Name":"Ger6","PlayerID":2246711,"Points":4599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43769","ServerKey":"pl181","X":708,"Y":520},{"Bonus":0,"Continent":"K42","ID":43770,"Name":"60 goƛć2","PlayerID":849018442,"Points":8646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43770","ServerKey":"pl181","X":296,"Y":474},{"Bonus":0,"Continent":"K33","ID":43771,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43771","ServerKey":"pl181","X":320,"Y":399},{"Bonus":0,"Continent":"K33","ID":43772,"Name":"007","PlayerID":8153941,"Points":5834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43772","ServerKey":"pl181","X":395,"Y":329},{"Bonus":0,"Continent":"K43","ID":43773,"Name":"Melon5","PlayerID":699659708,"Points":3275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43773","ServerKey":"pl181","X":307,"Y":428},{"Bonus":0,"Continent":"K47","ID":43774,"Name":"071. Wioska barbarzyƄska","PlayerID":7494497,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43774","ServerKey":"pl181","X":700,"Y":466},{"Bonus":0,"Continent":"K66","ID":43775,"Name":"klops3","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43775","ServerKey":"pl181","X":625,"Y":667},{"Bonus":7,"Continent":"K34","ID":43776,"Name":"Osada koczownikĂłw","PlayerID":195249,"Points":3383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43776","ServerKey":"pl181","X":401,"Y":325},{"Bonus":0,"Continent":"K75","ID":43777,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":6207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43777","ServerKey":"pl181","X":500,"Y":701},{"Bonus":0,"Continent":"K36","ID":43778,"Name":"060","PlayerID":698635863,"Points":4828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43778","ServerKey":"pl181","X":666,"Y":384},{"Bonus":0,"Continent":"K33","ID":43779,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43779","ServerKey":"pl181","X":360,"Y":345},{"Bonus":0,"Continent":"K66","ID":43780,"Name":"045 sebaseba1991","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43780","ServerKey":"pl181","X":619,"Y":668},{"Bonus":0,"Continent":"K33","ID":43781,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43781","ServerKey":"pl181","X":382,"Y":331},{"Bonus":0,"Continent":"K46","ID":43782,"Name":"Domi 3","PlayerID":849002796,"Points":8682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43782","ServerKey":"pl181","X":698,"Y":475},{"Bonus":0,"Continent":"K43","ID":43783,"Name":"Z19","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43783","ServerKey":"pl181","X":312,"Y":411},{"Bonus":0,"Continent":"K46","ID":43784,"Name":"099 Isehara","PlayerID":7092442,"Points":6201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43784","ServerKey":"pl181","X":696,"Y":445},{"Bonus":0,"Continent":"K36","ID":43785,"Name":"wioska","PlayerID":849102068,"Points":8957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43785","ServerKey":"pl181","X":630,"Y":336},{"Bonus":0,"Continent":"K43","ID":43786,"Name":"ZA21","PlayerID":356642,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43786","ServerKey":"pl181","X":324,"Y":404},{"Bonus":0,"Continent":"K52","ID":43787,"Name":"C0344","PlayerID":8841266,"Points":2205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43787","ServerKey":"pl181","X":297,"Y":540},{"Bonus":0,"Continent":"K63","ID":43788,"Name":"A 048","PlayerID":272173,"Points":4775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43788","ServerKey":"pl181","X":357,"Y":639},{"Bonus":0,"Continent":"K75","ID":43789,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":4887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43789","ServerKey":"pl181","X":503,"Y":705},{"Bonus":0,"Continent":"K65","ID":43790,"Name":"- 249 - SS","PlayerID":849018239,"Points":6342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43790","ServerKey":"pl181","X":551,"Y":699},{"Bonus":0,"Continent":"K66","ID":43791,"Name":"005","PlayerID":699872616,"Points":907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43791","ServerKey":"pl181","X":626,"Y":657},{"Bonus":0,"Continent":"K63","ID":43792,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43792","ServerKey":"pl181","X":380,"Y":670},{"Bonus":0,"Continent":"K52","ID":43793,"Name":"Dream on","PlayerID":698962117,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43793","ServerKey":"pl181","X":297,"Y":505},{"Bonus":0,"Continent":"K66","ID":43794,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43794","ServerKey":"pl181","X":650,"Y":646},{"Bonus":7,"Continent":"K34","ID":43795,"Name":"[0116]","PlayerID":8630972,"Points":10508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43795","ServerKey":"pl181","X":449,"Y":303},{"Bonus":0,"Continent":"K43","ID":43797,"Name":"Z11","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43797","ServerKey":"pl181","X":314,"Y":407},{"Bonus":3,"Continent":"K65","ID":43798,"Name":"Osada koczownikĂłw","PlayerID":7581876,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43798","ServerKey":"pl181","X":552,"Y":694},{"Bonus":0,"Continent":"K54","ID":43799,"Name":"Otak","PlayerID":699443920,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43799","ServerKey":"pl181","X":437,"Y":559},{"Bonus":0,"Continent":"K33","ID":43800,"Name":"0011","PlayerID":699644448,"Points":3304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43800","ServerKey":"pl181","X":351,"Y":356},{"Bonus":1,"Continent":"K65","ID":43801,"Name":"0069","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43801","ServerKey":"pl181","X":563,"Y":697},{"Bonus":0,"Continent":"K36","ID":43802,"Name":"049","PlayerID":849010255,"Points":3965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43802","ServerKey":"pl181","X":634,"Y":348},{"Bonus":0,"Continent":"K75","ID":43804,"Name":"051 invidia","PlayerID":849093426,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43804","ServerKey":"pl181","X":512,"Y":702},{"Bonus":0,"Continent":"K57","ID":43805,"Name":"Wioska adrianh3","PlayerID":8418489,"Points":4184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43805","ServerKey":"pl181","X":709,"Y":508},{"Bonus":0,"Continent":"K36","ID":43806,"Name":"025","PlayerID":698635863,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43806","ServerKey":"pl181","X":671,"Y":379},{"Bonus":0,"Continent":"K64","ID":43807,"Name":"ZZZ","PlayerID":8980651,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43807","ServerKey":"pl181","X":452,"Y":699},{"Bonus":0,"Continent":"K63","ID":43808,"Name":"C041","PlayerID":699383279,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43808","ServerKey":"pl181","X":376,"Y":661},{"Bonus":0,"Continent":"K53","ID":43809,"Name":"C0143","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43809","ServerKey":"pl181","X":316,"Y":535},{"Bonus":0,"Continent":"K35","ID":43810,"Name":"B012","PlayerID":699208929,"Points":7747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43810","ServerKey":"pl181","X":521,"Y":302},{"Bonus":0,"Continent":"K53","ID":43811,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43811","ServerKey":"pl181","X":306,"Y":547},{"Bonus":0,"Continent":"K75","ID":43812,"Name":"013 tylko farma","PlayerID":6116940,"Points":5391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43812","ServerKey":"pl181","X":532,"Y":706},{"Bonus":0,"Continent":"K36","ID":43813,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43813","ServerKey":"pl181","X":627,"Y":335},{"Bonus":0,"Continent":"K36","ID":43814,"Name":"*W004","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43814","ServerKey":"pl181","X":668,"Y":377},{"Bonus":0,"Continent":"K35","ID":43815,"Name":"AAA","PlayerID":1006847,"Points":7291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43815","ServerKey":"pl181","X":545,"Y":304},{"Bonus":0,"Continent":"K66","ID":43816,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43816","ServerKey":"pl181","X":631,"Y":651},{"Bonus":7,"Continent":"K66","ID":43817,"Name":"Bessa 013","PlayerID":848987051,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43817","ServerKey":"pl181","X":641,"Y":653},{"Bonus":0,"Continent":"K36","ID":43818,"Name":"wioska","PlayerID":849102068,"Points":4452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43818","ServerKey":"pl181","X":633,"Y":339},{"Bonus":0,"Continent":"K64","ID":43820,"Name":"022","PlayerID":848896948,"Points":8624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43820","ServerKey":"pl181","X":474,"Y":699},{"Bonus":0,"Continent":"K24","ID":43821,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43821","ServerKey":"pl181","X":490,"Y":293},{"Bonus":0,"Continent":"K36","ID":43822,"Name":"asd","PlayerID":8675636,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43822","ServerKey":"pl181","X":621,"Y":331},{"Bonus":0,"Continent":"K52","ID":43823,"Name":"C0130","PlayerID":8841266,"Points":10145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43823","ServerKey":"pl181","X":296,"Y":522},{"Bonus":0,"Continent":"K36","ID":43824,"Name":"XDX","PlayerID":699098531,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43824","ServerKey":"pl181","X":603,"Y":324},{"Bonus":0,"Continent":"K34","ID":43825,"Name":"=0010=","PlayerID":698231772,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43825","ServerKey":"pl181","X":400,"Y":318},{"Bonus":0,"Continent":"K36","ID":43826,"Name":"!36 65 Stramtura","PlayerID":698361257,"Points":7805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43826","ServerKey":"pl181","X":658,"Y":369},{"Bonus":0,"Continent":"K34","ID":43827,"Name":"????","PlayerID":698489071,"Points":3753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43827","ServerKey":"pl181","X":470,"Y":300},{"Bonus":0,"Continent":"K66","ID":43828,"Name":"San Siro","PlayerID":849096631,"Points":11489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43828","ServerKey":"pl181","X":662,"Y":623},{"Bonus":0,"Continent":"K34","ID":43829,"Name":"074.Stradi","PlayerID":698365960,"Points":10074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43829","ServerKey":"pl181","X":439,"Y":306},{"Bonus":0,"Continent":"K47","ID":43831,"Name":"060. Wioska barbarzyƄska","PlayerID":7494497,"Points":8190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43831","ServerKey":"pl181","X":700,"Y":470},{"Bonus":0,"Continent":"K36","ID":43833,"Name":"!36 65 Iaz","PlayerID":698361257,"Points":6572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43833","ServerKey":"pl181","X":657,"Y":362},{"Bonus":0,"Continent":"K63","ID":43834,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43834","ServerKey":"pl181","X":374,"Y":664},{"Bonus":0,"Continent":"K33","ID":43835,"Name":"005","PlayerID":849101205,"Points":6403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43835","ServerKey":"pl181","X":354,"Y":353},{"Bonus":0,"Continent":"K34","ID":43836,"Name":"=0005=","PlayerID":698231772,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43836","ServerKey":"pl181","X":402,"Y":321},{"Bonus":0,"Continent":"K43","ID":43838,"Name":"ZA22","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43838","ServerKey":"pl181","X":312,"Y":414},{"Bonus":0,"Continent":"K47","ID":43839,"Name":"008","PlayerID":942959,"Points":8124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43839","ServerKey":"pl181","X":701,"Y":496},{"Bonus":0,"Continent":"K57","ID":43840,"Name":"Wioska barbarzyƄska","PlayerID":699150527,"Points":9308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43840","ServerKey":"pl181","X":703,"Y":506},{"Bonus":0,"Continent":"K47","ID":43841,"Name":"B#020","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43841","ServerKey":"pl181","X":704,"Y":452},{"Bonus":0,"Continent":"K57","ID":43842,"Name":"0113","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43842","ServerKey":"pl181","X":705,"Y":502},{"Bonus":0,"Continent":"K66","ID":43843,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43843","ServerKey":"pl181","X":643,"Y":644},{"Bonus":0,"Continent":"K47","ID":43844,"Name":"B009 Tajna BroƄ 3xxx","PlayerID":113796,"Points":8915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43844","ServerKey":"pl181","X":706,"Y":467},{"Bonus":0,"Continent":"K52","ID":43845,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43845","ServerKey":"pl181","X":294,"Y":520},{"Bonus":0,"Continent":"K65","ID":43846,"Name":"138 invidia","PlayerID":849093426,"Points":6268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43846","ServerKey":"pl181","X":542,"Y":698},{"Bonus":0,"Continent":"K33","ID":43847,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43847","ServerKey":"pl181","X":373,"Y":337},{"Bonus":0,"Continent":"K74","ID":43848,"Name":"FP027","PlayerID":699605333,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43848","ServerKey":"pl181","X":474,"Y":704},{"Bonus":0,"Continent":"K36","ID":43849,"Name":"026","PlayerID":698635863,"Points":9769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43849","ServerKey":"pl181","X":669,"Y":385},{"Bonus":0,"Continent":"K36","ID":43850,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43850","ServerKey":"pl181","X":650,"Y":354},{"Bonus":0,"Continent":"K75","ID":43851,"Name":"081 invidia","PlayerID":849093426,"Points":7235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43851","ServerKey":"pl181","X":521,"Y":700},{"Bonus":3,"Continent":"K36","ID":43852,"Name":"A MOBIL STOP","PlayerID":849061374,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43852","ServerKey":"pl181","X":614,"Y":326},{"Bonus":0,"Continent":"K66","ID":43853,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43853","ServerKey":"pl181","X":647,"Y":637},{"Bonus":0,"Continent":"K46","ID":43854,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43854","ServerKey":"pl181","X":694,"Y":443},{"Bonus":0,"Continent":"K36","ID":43855,"Name":"Na KraƄcu ƚwiata 015","PlayerID":9291984,"Points":4168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43855","ServerKey":"pl181","X":640,"Y":345},{"Bonus":0,"Continent":"K43","ID":43856,"Name":"ZA19","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43856","ServerKey":"pl181","X":320,"Y":408},{"Bonus":0,"Continent":"K53","ID":43857,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":7548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43857","ServerKey":"pl181","X":305,"Y":553},{"Bonus":0,"Continent":"K43","ID":43858,"Name":"WB01","PlayerID":356642,"Points":5337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43858","ServerKey":"pl181","X":318,"Y":410},{"Bonus":0,"Continent":"K63","ID":43859,"Name":"C104","PlayerID":699383279,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43859","ServerKey":"pl181","X":365,"Y":647},{"Bonus":0,"Continent":"K25","ID":43860,"Name":"Wioska chudyn","PlayerID":699818726,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43860","ServerKey":"pl181","X":531,"Y":293},{"Bonus":0,"Continent":"K35","ID":43861,"Name":"Wioska krumlow 8","PlayerID":699098531,"Points":2308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43861","ServerKey":"pl181","X":598,"Y":320},{"Bonus":0,"Continent":"K74","ID":43862,"Name":"0.08 Brek?","PlayerID":699725436,"Points":9481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43862","ServerKey":"pl181","X":467,"Y":701},{"Bonus":0,"Continent":"K36","ID":43863,"Name":"Wioska barbarzyƄska","PlayerID":698361257,"Points":3887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43863","ServerKey":"pl181","X":651,"Y":366},{"Bonus":0,"Continent":"K56","ID":43865,"Name":"060. Mount Blanc","PlayerID":1601917,"Points":7994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43865","ServerKey":"pl181","X":695,"Y":549},{"Bonus":0,"Continent":"K52","ID":43866,"Name":"EO EO","PlayerID":699697558,"Points":9542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43866","ServerKey":"pl181","X":297,"Y":501},{"Bonus":0,"Continent":"K34","ID":43867,"Name":"017.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43867","ServerKey":"pl181","X":430,"Y":312},{"Bonus":0,"Continent":"K63","ID":43869,"Name":"psycha sitting","PlayerID":699736927,"Points":6570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43869","ServerKey":"pl181","X":398,"Y":679},{"Bonus":0,"Continent":"K65","ID":43870,"Name":"###030###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43870","ServerKey":"pl181","X":598,"Y":682},{"Bonus":3,"Continent":"K47","ID":43871,"Name":"017.","PlayerID":849094609,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43871","ServerKey":"pl181","X":702,"Y":463},{"Bonus":0,"Continent":"K36","ID":43872,"Name":"036","PlayerID":9148043,"Points":9030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43872","ServerKey":"pl181","X":642,"Y":354},{"Bonus":0,"Continent":"K56","ID":43873,"Name":"TWIERDZA .:085:.","PlayerID":7154207,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43873","ServerKey":"pl181","X":685,"Y":577},{"Bonus":0,"Continent":"K36","ID":43874,"Name":"018. F PƁN","PlayerID":849061374,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43874","ServerKey":"pl181","X":612,"Y":327},{"Bonus":0,"Continent":"K56","ID":43875,"Name":"tomek016 V","PlayerID":8811880,"Points":1009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43875","ServerKey":"pl181","X":692,"Y":566},{"Bonus":0,"Continent":"K63","ID":43876,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43876","ServerKey":"pl181","X":393,"Y":679},{"Bonus":8,"Continent":"K63","ID":43877,"Name":"Kolonia 003","PlayerID":699269923,"Points":7003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43877","ServerKey":"pl181","X":388,"Y":666},{"Bonus":0,"Continent":"K35","ID":43878,"Name":"AAA","PlayerID":1006847,"Points":5794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43878","ServerKey":"pl181","X":561,"Y":310},{"Bonus":0,"Continent":"K56","ID":43879,"Name":"S013","PlayerID":8428196,"Points":7389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43879","ServerKey":"pl181","X":683,"Y":597},{"Bonus":8,"Continent":"K35","ID":43880,"Name":"XXXX","PlayerID":849054951,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43880","ServerKey":"pl181","X":566,"Y":302},{"Bonus":0,"Continent":"K66","ID":43881,"Name":"Komandos pĂłĆșniej","PlayerID":7976264,"Points":10322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43881","ServerKey":"pl181","X":634,"Y":661},{"Bonus":0,"Continent":"K34","ID":43882,"Name":"[0104]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43882","ServerKey":"pl181","X":441,"Y":304},{"Bonus":0,"Continent":"K36","ID":43883,"Name":"027","PlayerID":698635863,"Points":9458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43883","ServerKey":"pl181","X":675,"Y":385},{"Bonus":0,"Continent":"K36","ID":43884,"Name":"wioska","PlayerID":9291984,"Points":5997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43884","ServerKey":"pl181","X":636,"Y":344},{"Bonus":0,"Continent":"K52","ID":43885,"Name":"EO EO","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43885","ServerKey":"pl181","X":292,"Y":523},{"Bonus":0,"Continent":"K65","ID":43886,"Name":"###031###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43886","ServerKey":"pl181","X":592,"Y":688},{"Bonus":2,"Continent":"K57","ID":43887,"Name":"005. Soundscape","PlayerID":254937,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43887","ServerKey":"pl181","X":708,"Y":511},{"Bonus":0,"Continent":"K36","ID":43888,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43888","ServerKey":"pl181","X":621,"Y":336},{"Bonus":0,"Continent":"K65","ID":43889,"Name":"###032###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43889","ServerKey":"pl181","X":589,"Y":685},{"Bonus":0,"Continent":"K33","ID":43890,"Name":"*206*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43890","ServerKey":"pl181","X":335,"Y":384},{"Bonus":0,"Continent":"K53","ID":43891,"Name":"103","PlayerID":849098688,"Points":4203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43891","ServerKey":"pl181","X":310,"Y":566},{"Bonus":0,"Continent":"K66","ID":43892,"Name":"SZYBKA ZMYƁKA","PlayerID":699872616,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43892","ServerKey":"pl181","X":629,"Y":656},{"Bonus":0,"Continent":"K63","ID":43893,"Name":"O043","PlayerID":272173,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43893","ServerKey":"pl181","X":342,"Y":622},{"Bonus":0,"Continent":"K66","ID":43894,"Name":"014 GĂłrki-O-GĂłrki","PlayerID":849100994,"Points":8165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43894","ServerKey":"pl181","X":661,"Y":631},{"Bonus":0,"Continent":"K24","ID":43895,"Name":"????","PlayerID":698489071,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43895","ServerKey":"pl181","X":474,"Y":293},{"Bonus":0,"Continent":"K33","ID":43897,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43897","ServerKey":"pl181","X":329,"Y":390},{"Bonus":0,"Continent":"K66","ID":43898,"Name":"014 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43898","ServerKey":"pl181","X":604,"Y":681},{"Bonus":0,"Continent":"K63","ID":43899,"Name":"Wyspa","PlayerID":698769107,"Points":2572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43899","ServerKey":"pl181","X":380,"Y":662},{"Bonus":0,"Continent":"K57","ID":43900,"Name":"018","PlayerID":699150527,"Points":8217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43900","ServerKey":"pl181","X":708,"Y":510},{"Bonus":0,"Continent":"K65","ID":43901,"Name":"BaƂuty","PlayerID":849100612,"Points":7013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43901","ServerKey":"pl181","X":586,"Y":681},{"Bonus":0,"Continent":"K66","ID":43902,"Name":"[178]","PlayerID":8000875,"Points":6275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43902","ServerKey":"pl181","X":678,"Y":604},{"Bonus":0,"Continent":"K35","ID":43903,"Name":"Wioska barbarzyƄska","PlayerID":1767876,"Points":2404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43903","ServerKey":"pl181","X":591,"Y":313},{"Bonus":0,"Continent":"K35","ID":43904,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":3286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43904","ServerKey":"pl181","X":556,"Y":307},{"Bonus":0,"Continent":"K75","ID":43905,"Name":"ZOSTAJE","PlayerID":9016560,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43905","ServerKey":"pl181","X":542,"Y":703},{"Bonus":0,"Continent":"K47","ID":43906,"Name":"Jan Ost skrajny III","PlayerID":879782,"Points":5625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43906","ServerKey":"pl181","X":705,"Y":442},{"Bonus":0,"Continent":"K33","ID":43907,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43907","ServerKey":"pl181","X":326,"Y":389},{"Bonus":0,"Continent":"K65","ID":43908,"Name":"0319","PlayerID":698659980,"Points":8579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43908","ServerKey":"pl181","X":562,"Y":698},{"Bonus":0,"Continent":"K33","ID":43909,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":2634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43909","ServerKey":"pl181","X":332,"Y":375},{"Bonus":0,"Continent":"K65","ID":43910,"Name":"###089###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43910","ServerKey":"pl181","X":597,"Y":678},{"Bonus":0,"Continent":"K63","ID":43911,"Name":"Rossberg","PlayerID":849100352,"Points":4619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43911","ServerKey":"pl181","X":372,"Y":660},{"Bonus":5,"Continent":"K43","ID":43912,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43912","ServerKey":"pl181","X":317,"Y":418},{"Bonus":0,"Continent":"K33","ID":43913,"Name":"SoƂtys Wsi Maciekp011","PlayerID":849027025,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43913","ServerKey":"pl181","X":353,"Y":354},{"Bonus":0,"Continent":"K65","ID":43914,"Name":"TARAN","PlayerID":7860453,"Points":9579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43914","ServerKey":"pl181","X":547,"Y":691},{"Bonus":0,"Continent":"K56","ID":43915,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":3741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43915","ServerKey":"pl181","X":697,"Y":562},{"Bonus":0,"Continent":"K33","ID":43916,"Name":"Zaplecze Barba 024","PlayerID":699796330,"Points":6099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43916","ServerKey":"pl181","X":366,"Y":343},{"Bonus":0,"Continent":"K36","ID":43917,"Name":"010","PlayerID":849086491,"Points":3900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43917","ServerKey":"pl181","X":649,"Y":362},{"Bonus":0,"Continent":"K53","ID":43918,"Name":"024","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43918","ServerKey":"pl181","X":302,"Y":565},{"Bonus":0,"Continent":"K53","ID":43919,"Name":"024","PlayerID":9280477,"Points":7751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43919","ServerKey":"pl181","X":303,"Y":562},{"Bonus":1,"Continent":"K33","ID":43920,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43920","ServerKey":"pl181","X":329,"Y":386},{"Bonus":0,"Continent":"K33","ID":43921,"Name":"1 LESTAT SKI","PlayerID":6315553,"Points":5486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43921","ServerKey":"pl181","X":346,"Y":355},{"Bonus":0,"Continent":"K56","ID":43922,"Name":"S006","PlayerID":8428196,"Points":7128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43922","ServerKey":"pl181","X":681,"Y":596},{"Bonus":0,"Continent":"K43","ID":43923,"Name":"WiedĆșma - Z 003","PlayerID":9239515,"Points":6210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43923","ServerKey":"pl181","X":304,"Y":439},{"Bonus":0,"Continent":"K56","ID":43924,"Name":"Wioska Zorro 010","PlayerID":849080702,"Points":6443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43924","ServerKey":"pl181","X":678,"Y":590},{"Bonus":0,"Continent":"K63","ID":43925,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43925","ServerKey":"pl181","X":374,"Y":665},{"Bonus":0,"Continent":"K75","ID":43926,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":5184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43926","ServerKey":"pl181","X":538,"Y":704},{"Bonus":0,"Continent":"K66","ID":43927,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43927","ServerKey":"pl181","X":662,"Y":624},{"Bonus":0,"Continent":"K56","ID":43928,"Name":"ZzZzZ Sylwek3","PlayerID":699778867,"Points":6939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43928","ServerKey":"pl181","X":695,"Y":573},{"Bonus":0,"Continent":"K53","ID":43929,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":4629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43929","ServerKey":"pl181","X":302,"Y":570},{"Bonus":0,"Continent":"K47","ID":43930,"Name":"C.028","PlayerID":9188016,"Points":4885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43930","ServerKey":"pl181","X":705,"Y":482},{"Bonus":0,"Continent":"K66","ID":43931,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43931","ServerKey":"pl181","X":656,"Y":629},{"Bonus":0,"Continent":"K35","ID":43932,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43932","ServerKey":"pl181","X":592,"Y":311},{"Bonus":0,"Continent":"K36","ID":43933,"Name":"Hope","PlayerID":1086351,"Points":4403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43933","ServerKey":"pl181","X":672,"Y":380},{"Bonus":0,"Continent":"K56","ID":43934,"Name":"TWIERDZA .:068:.","PlayerID":7154207,"Points":8133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43934","ServerKey":"pl181","X":687,"Y":580},{"Bonus":0,"Continent":"K35","ID":43935,"Name":"001","PlayerID":1767876,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43935","ServerKey":"pl181","X":586,"Y":314},{"Bonus":0,"Continent":"K66","ID":43936,"Name":"022 NAWRA","PlayerID":849048867,"Points":4486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43936","ServerKey":"pl181","X":668,"Y":611},{"Bonus":0,"Continent":"K56","ID":43937,"Name":"TWIERDZA .:077:.","PlayerID":7154207,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43937","ServerKey":"pl181","X":685,"Y":579},{"Bonus":0,"Continent":"K43","ID":43938,"Name":"WB14","PlayerID":356642,"Points":4189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43938","ServerKey":"pl181","X":309,"Y":416},{"Bonus":0,"Continent":"K33","ID":43939,"Name":"Komson","PlayerID":849027025,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43939","ServerKey":"pl181","X":364,"Y":340},{"Bonus":0,"Continent":"K66","ID":43940,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43940","ServerKey":"pl181","X":653,"Y":631},{"Bonus":0,"Continent":"K25","ID":43941,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43941","ServerKey":"pl181","X":508,"Y":292},{"Bonus":0,"Continent":"K52","ID":43942,"Name":"EO EO","PlayerID":699697558,"Points":8923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43942","ServerKey":"pl181","X":298,"Y":520},{"Bonus":0,"Continent":"K63","ID":43943,"Name":"Taran","PlayerID":6180190,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43943","ServerKey":"pl181","X":329,"Y":610},{"Bonus":0,"Continent":"K34","ID":43944,"Name":"???","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43944","ServerKey":"pl181","X":483,"Y":301},{"Bonus":0,"Continent":"K36","ID":43945,"Name":"028","PlayerID":698635863,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43945","ServerKey":"pl181","X":670,"Y":382},{"Bonus":0,"Continent":"K63","ID":43946,"Name":"077","PlayerID":849099876,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43946","ServerKey":"pl181","X":395,"Y":681},{"Bonus":6,"Continent":"K64","ID":43947,"Name":"#012. Dance With My Hands","PlayerID":848896948,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43947","ServerKey":"pl181","X":435,"Y":690},{"Bonus":0,"Continent":"K65","ID":43948,"Name":"Kaborno","PlayerID":7581876,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43948","ServerKey":"pl181","X":560,"Y":695},{"Bonus":0,"Continent":"K43","ID":43949,"Name":"008a","PlayerID":8259895,"Points":4459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43949","ServerKey":"pl181","X":306,"Y":424},{"Bonus":0,"Continent":"K63","ID":43951,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43951","ServerKey":"pl181","X":382,"Y":672},{"Bonus":0,"Continent":"K52","ID":43952,"Name":"C0208","PlayerID":8841266,"Points":10188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43952","ServerKey":"pl181","X":297,"Y":530},{"Bonus":0,"Continent":"K33","ID":43953,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43953","ServerKey":"pl181","X":356,"Y":348},{"Bonus":0,"Continent":"K33","ID":43954,"Name":"z fryzjer81","PlayerID":3909522,"Points":8270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43954","ServerKey":"pl181","X":348,"Y":361},{"Bonus":0,"Continent":"K33","ID":43956,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43956","ServerKey":"pl181","X":327,"Y":385},{"Bonus":0,"Continent":"K34","ID":43957,"Name":"Mniejsze zƂo 0053","PlayerID":699794765,"Points":7664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43957","ServerKey":"pl181","X":439,"Y":308},{"Bonus":0,"Continent":"K66","ID":43959,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43959","ServerKey":"pl181","X":663,"Y":621},{"Bonus":0,"Continent":"K75","ID":43960,"Name":"091 invidia","PlayerID":849093426,"Points":9256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43960","ServerKey":"pl181","X":522,"Y":707},{"Bonus":0,"Continent":"K46","ID":43961,"Name":"Jan May City K","PlayerID":879782,"Points":10533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43961","ServerKey":"pl181","X":692,"Y":433},{"Bonus":0,"Continent":"K36","ID":43962,"Name":"XDX","PlayerID":699098531,"Points":9047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43962","ServerKey":"pl181","X":611,"Y":332},{"Bonus":0,"Continent":"K53","ID":43963,"Name":"101","PlayerID":699736959,"Points":4238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43963","ServerKey":"pl181","X":308,"Y":568},{"Bonus":0,"Continent":"K24","ID":43964,"Name":"263...Kaban","PlayerID":6920960,"Points":4331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43964","ServerKey":"pl181","X":463,"Y":295},{"Bonus":0,"Continent":"K75","ID":43965,"Name":"DALEKO","PlayerID":699827112,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43965","ServerKey":"pl181","X":529,"Y":703},{"Bonus":0,"Continent":"K43","ID":43966,"Name":"marmag81/0333","PlayerID":1096254,"Points":6422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43966","ServerKey":"pl181","X":301,"Y":468},{"Bonus":0,"Continent":"K75","ID":43967,"Name":"Wioska","PlayerID":7860453,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43967","ServerKey":"pl181","X":550,"Y":706},{"Bonus":0,"Continent":"K52","ID":43968,"Name":"002","PlayerID":848886200,"Points":5343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43968","ServerKey":"pl181","X":294,"Y":537},{"Bonus":0,"Continent":"K57","ID":43969,"Name":"11. Sodden","PlayerID":8976313,"Points":9477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43969","ServerKey":"pl181","X":704,"Y":545},{"Bonus":0,"Continent":"K42","ID":43970,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43970","ServerKey":"pl181","X":297,"Y":449},{"Bonus":0,"Continent":"K65","ID":43972,"Name":"0582","PlayerID":698659980,"Points":9129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43972","ServerKey":"pl181","X":575,"Y":693},{"Bonus":0,"Continent":"K63","ID":43974,"Name":"O013","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43974","ServerKey":"pl181","X":340,"Y":636},{"Bonus":0,"Continent":"K35","ID":43976,"Name":"AAA","PlayerID":1006847,"Points":8282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43976","ServerKey":"pl181","X":551,"Y":300},{"Bonus":2,"Continent":"K34","ID":43977,"Name":"001","PlayerID":699562874,"Points":8908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43977","ServerKey":"pl181","X":438,"Y":301},{"Bonus":0,"Continent":"K35","ID":43978,"Name":"D014","PlayerID":699299123,"Points":4844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43978","ServerKey":"pl181","X":557,"Y":300},{"Bonus":0,"Continent":"K57","ID":43979,"Name":"011","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43979","ServerKey":"pl181","X":702,"Y":505},{"Bonus":0,"Continent":"K56","ID":43980,"Name":"A18","PlayerID":848995478,"Points":2687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43980","ServerKey":"pl181","X":695,"Y":546},{"Bonus":0,"Continent":"K35","ID":43981,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43981","ServerKey":"pl181","X":575,"Y":312},{"Bonus":0,"Continent":"K25","ID":43983,"Name":"Portland","PlayerID":699208929,"Points":4389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43983","ServerKey":"pl181","X":510,"Y":299},{"Bonus":0,"Continent":"K34","ID":43984,"Name":"#0218 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43984","ServerKey":"pl181","X":454,"Y":303},{"Bonus":0,"Continent":"K63","ID":43985,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43985","ServerKey":"pl181","X":389,"Y":673},{"Bonus":0,"Continent":"K65","ID":43986,"Name":"Wioska barbarzyƄska 005","PlayerID":6870350,"Points":8464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43986","ServerKey":"pl181","X":561,"Y":699},{"Bonus":0,"Continent":"K36","ID":43987,"Name":"052","PlayerID":849010255,"Points":4121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43987","ServerKey":"pl181","X":637,"Y":348},{"Bonus":0,"Continent":"K63","ID":43988,"Name":"Wioska barbarzyƄska (noomouse)","PlayerID":698769107,"Points":2903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43988","ServerKey":"pl181","X":381,"Y":665},{"Bonus":0,"Continent":"K47","ID":43989,"Name":"Domi 4","PlayerID":849002796,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43989","ServerKey":"pl181","X":700,"Y":475},{"Bonus":0,"Continent":"K63","ID":43991,"Name":"140","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43991","ServerKey":"pl181","X":396,"Y":683},{"Bonus":0,"Continent":"K33","ID":43992,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43992","ServerKey":"pl181","X":326,"Y":397},{"Bonus":0,"Continent":"K63","ID":43993,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43993","ServerKey":"pl181","X":371,"Y":655},{"Bonus":5,"Continent":"K64","ID":43994,"Name":"0044 Qukaku.","PlayerID":849037407,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43994","ServerKey":"pl181","X":457,"Y":698},{"Bonus":0,"Continent":"K74","ID":43995,"Name":"FP022","PlayerID":699605333,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43995","ServerKey":"pl181","X":481,"Y":709},{"Bonus":0,"Continent":"K46","ID":43996,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43996","ServerKey":"pl181","X":692,"Y":435},{"Bonus":0,"Continent":"K64","ID":43997,"Name":"0035 Kasko14","PlayerID":849037407,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43997","ServerKey":"pl181","X":448,"Y":697},{"Bonus":0,"Continent":"K47","ID":43998,"Name":"027","PlayerID":849031818,"Points":4530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43998","ServerKey":"pl181","X":700,"Y":456},{"Bonus":0,"Continent":"K35","ID":43999,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=43999","ServerKey":"pl181","X":578,"Y":315},{"Bonus":0,"Continent":"K63","ID":44000,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44000","ServerKey":"pl181","X":325,"Y":612},{"Bonus":0,"Continent":"K75","ID":44001,"Name":"- 270 - SS","PlayerID":849018239,"Points":6810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44001","ServerKey":"pl181","X":556,"Y":700},{"Bonus":0,"Continent":"K46","ID":44002,"Name":"Szlachcic","PlayerID":698867446,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44002","ServerKey":"pl181","X":616,"Y":473},{"Bonus":0,"Continent":"K46","ID":44003,"Name":"W22","PlayerID":699524362,"Points":2486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44003","ServerKey":"pl181","X":685,"Y":417},{"Bonus":0,"Continent":"K46","ID":44004,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44004","ServerKey":"pl181","X":681,"Y":411},{"Bonus":0,"Continent":"K33","ID":44005,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":5403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44005","ServerKey":"pl181","X":338,"Y":375},{"Bonus":0,"Continent":"K47","ID":44006,"Name":"018. RembertĂłw","PlayerID":7494497,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44006","ServerKey":"pl181","X":702,"Y":475},{"Bonus":0,"Continent":"K36","ID":44007,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44007","ServerKey":"pl181","X":677,"Y":398},{"Bonus":0,"Continent":"K66","ID":44008,"Name":"002","PlayerID":849101148,"Points":8237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44008","ServerKey":"pl181","X":645,"Y":652},{"Bonus":0,"Continent":"K66","ID":44009,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44009","ServerKey":"pl181","X":657,"Y":638},{"Bonus":0,"Continent":"K64","ID":44010,"Name":"008","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44010","ServerKey":"pl181","X":422,"Y":686},{"Bonus":0,"Continent":"K36","ID":44011,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44011","ServerKey":"pl181","X":617,"Y":328},{"Bonus":0,"Continent":"K46","ID":44012,"Name":"Wioska dudus1992","PlayerID":849095068,"Points":1810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44012","ServerKey":"pl181","X":681,"Y":400},{"Bonus":0,"Continent":"K63","ID":44013,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44013","ServerKey":"pl181","X":375,"Y":664},{"Bonus":0,"Continent":"K75","ID":44014,"Name":"104 invidia","PlayerID":849093426,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44014","ServerKey":"pl181","X":511,"Y":709},{"Bonus":0,"Continent":"K35","ID":44015,"Name":"XDX","PlayerID":699098531,"Points":5667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44015","ServerKey":"pl181","X":594,"Y":314},{"Bonus":0,"Continent":"K33","ID":44016,"Name":"0006","PlayerID":699644448,"Points":4864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44016","ServerKey":"pl181","X":354,"Y":356},{"Bonus":0,"Continent":"K34","ID":44017,"Name":"203","PlayerID":8630972,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44017","ServerKey":"pl181","X":429,"Y":303},{"Bonus":0,"Continent":"K56","ID":44019,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44019","ServerKey":"pl181","X":699,"Y":525},{"Bonus":5,"Continent":"K53","ID":44020,"Name":"027","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44020","ServerKey":"pl181","X":306,"Y":564},{"Bonus":0,"Continent":"K53","ID":44022,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44022","ServerKey":"pl181","X":326,"Y":599},{"Bonus":0,"Continent":"K35","ID":44023,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44023","ServerKey":"pl181","X":582,"Y":310},{"Bonus":0,"Continent":"K66","ID":44024,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44024","ServerKey":"pl181","X":654,"Y":629},{"Bonus":0,"Continent":"K24","ID":44025,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44025","ServerKey":"pl181","X":491,"Y":296},{"Bonus":0,"Continent":"K64","ID":44026,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44026","ServerKey":"pl181","X":411,"Y":680},{"Bonus":8,"Continent":"K66","ID":44027,"Name":"ZZZZZ","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44027","ServerKey":"pl181","X":659,"Y":629},{"Bonus":0,"Continent":"K36","ID":44028,"Name":"wioska","PlayerID":9291984,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44028","ServerKey":"pl181","X":636,"Y":346},{"Bonus":0,"Continent":"K63","ID":44029,"Name":"O128","PlayerID":272173,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44029","ServerKey":"pl181","X":328,"Y":619},{"Bonus":0,"Continent":"K64","ID":44030,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44030","ServerKey":"pl181","X":430,"Y":698},{"Bonus":0,"Continent":"K63","ID":44031,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44031","ServerKey":"pl181","X":375,"Y":665},{"Bonus":0,"Continent":"K36","ID":44032,"Name":"0084","PlayerID":698416970,"Points":9139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44032","ServerKey":"pl181","X":683,"Y":397},{"Bonus":0,"Continent":"K34","ID":44033,"Name":"047.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44033","ServerKey":"pl181","X":427,"Y":306},{"Bonus":0,"Continent":"K33","ID":44034,"Name":"Z 0003 Wioska","PlayerID":3909522,"Points":10208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44034","ServerKey":"pl181","X":348,"Y":358},{"Bonus":0,"Continent":"K52","ID":44035,"Name":"EO EO","PlayerID":699697558,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44035","ServerKey":"pl181","X":289,"Y":522},{"Bonus":0,"Continent":"K56","ID":44036,"Name":"011","PlayerID":301602,"Points":3276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44036","ServerKey":"pl181","X":696,"Y":559},{"Bonus":0,"Continent":"K66","ID":44037,"Name":"030 Wioska barbarzyƄska","PlayerID":699346280,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44037","ServerKey":"pl181","X":602,"Y":679},{"Bonus":0,"Continent":"K43","ID":44038,"Name":"Z12","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44038","ServerKey":"pl181","X":315,"Y":406},{"Bonus":0,"Continent":"K63","ID":44039,"Name":"Siedziba Komornika","PlayerID":849014147,"Points":8889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44039","ServerKey":"pl181","X":359,"Y":611},{"Bonus":0,"Continent":"K35","ID":44040,"Name":"B017","PlayerID":699208929,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44040","ServerKey":"pl181","X":518,"Y":300},{"Bonus":0,"Continent":"K56","ID":44041,"Name":"Didek","PlayerID":849070946,"Points":2031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44041","ServerKey":"pl181","X":686,"Y":583},{"Bonus":0,"Continent":"K66","ID":44042,"Name":"Bessa 024","PlayerID":848987051,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44042","ServerKey":"pl181","X":637,"Y":653},{"Bonus":0,"Continent":"K34","ID":44043,"Name":"004","PlayerID":699694284,"Points":8615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44043","ServerKey":"pl181","X":421,"Y":306},{"Bonus":0,"Continent":"K35","ID":44044,"Name":"K35 - [037] Before Land","PlayerID":699088769,"Points":4551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44044","ServerKey":"pl181","X":583,"Y":308},{"Bonus":0,"Continent":"K63","ID":44045,"Name":"C042","PlayerID":699383279,"Points":9651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44045","ServerKey":"pl181","X":376,"Y":662},{"Bonus":6,"Continent":"K63","ID":44046,"Name":"aaaa","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44046","ServerKey":"pl181","X":390,"Y":672},{"Bonus":0,"Continent":"K36","ID":44047,"Name":"XDX","PlayerID":699098531,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44047","ServerKey":"pl181","X":614,"Y":334},{"Bonus":0,"Continent":"K34","ID":44048,"Name":"Kurwidolek","PlayerID":849100399,"Points":8301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44048","ServerKey":"pl181","X":423,"Y":310},{"Bonus":0,"Continent":"K66","ID":44049,"Name":"021 Wioska barbarzyƄska","PlayerID":699346280,"Points":9224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44049","ServerKey":"pl181","X":602,"Y":678},{"Bonus":0,"Continent":"K66","ID":44050,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44050","ServerKey":"pl181","X":667,"Y":623},{"Bonus":0,"Continent":"K63","ID":44051,"Name":"O066","PlayerID":272173,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44051","ServerKey":"pl181","X":341,"Y":622},{"Bonus":0,"Continent":"K34","ID":44052,"Name":"043.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44052","ServerKey":"pl181","X":437,"Y":301},{"Bonus":0,"Continent":"K74","ID":44053,"Name":"048|| Cygnus","PlayerID":849035525,"Points":4230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44053","ServerKey":"pl181","X":457,"Y":706},{"Bonus":0,"Continent":"K25","ID":44054,"Name":"010","PlayerID":699208929,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44054","ServerKey":"pl181","X":534,"Y":289},{"Bonus":0,"Continent":"K33","ID":44055,"Name":"z Wioska Anko","PlayerID":3909522,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44055","ServerKey":"pl181","X":354,"Y":361},{"Bonus":0,"Continent":"K63","ID":44056,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44056","ServerKey":"pl181","X":393,"Y":675},{"Bonus":0,"Continent":"K63","ID":44057,"Name":"073","PlayerID":849099876,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44057","ServerKey":"pl181","X":396,"Y":681},{"Bonus":0,"Continent":"K34","ID":44058,"Name":"021.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44058","ServerKey":"pl181","X":429,"Y":308},{"Bonus":0,"Continent":"K64","ID":44059,"Name":"028","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44059","ServerKey":"pl181","X":403,"Y":681},{"Bonus":0,"Continent":"K57","ID":44060,"Name":"Wioska barbarzyƄska","PlayerID":254937,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44060","ServerKey":"pl181","X":705,"Y":512},{"Bonus":0,"Continent":"K66","ID":44061,"Name":"a-9","PlayerID":848921861,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44061","ServerKey":"pl181","X":678,"Y":610},{"Bonus":0,"Continent":"K65","ID":44062,"Name":"###033###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44062","ServerKey":"pl181","X":598,"Y":681},{"Bonus":0,"Continent":"K42","ID":44063,"Name":"24 barbarzyƄska..","PlayerID":849018442,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44063","ServerKey":"pl181","X":299,"Y":445},{"Bonus":0,"Continent":"K63","ID":44064,"Name":"psycha sitting","PlayerID":699736927,"Points":6573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44064","ServerKey":"pl181","X":398,"Y":678},{"Bonus":0,"Continent":"K36","ID":44065,"Name":"Wioska barbarzyƄska","PlayerID":849086491,"Points":3474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44065","ServerKey":"pl181","X":646,"Y":357},{"Bonus":0,"Continent":"K63","ID":44066,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44066","ServerKey":"pl181","X":328,"Y":605},{"Bonus":0,"Continent":"K56","ID":44067,"Name":"TWIERDZA .:016:.","PlayerID":7154207,"Points":10406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44067","ServerKey":"pl181","X":688,"Y":582},{"Bonus":0,"Continent":"K33","ID":44068,"Name":"z Elys1","PlayerID":3909522,"Points":6952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44068","ServerKey":"pl181","X":347,"Y":360},{"Bonus":0,"Continent":"K63","ID":44069,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44069","ServerKey":"pl181","X":383,"Y":670},{"Bonus":0,"Continent":"K33","ID":44070,"Name":"UrsynĂłw","PlayerID":849099434,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44070","ServerKey":"pl181","X":363,"Y":353},{"Bonus":0,"Continent":"K75","ID":44071,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44071","ServerKey":"pl181","X":515,"Y":708},{"Bonus":0,"Continent":"K53","ID":44072,"Name":"010.","PlayerID":7183372,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44072","ServerKey":"pl181","X":323,"Y":599},{"Bonus":0,"Continent":"K63","ID":44073,"Name":"O145","PlayerID":272173,"Points":6040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44073","ServerKey":"pl181","X":352,"Y":647},{"Bonus":0,"Continent":"K36","ID":44074,"Name":"!36 65 Patrauti","PlayerID":698361257,"Points":8586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44074","ServerKey":"pl181","X":654,"Y":365},{"Bonus":0,"Continent":"K36","ID":44075,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":8446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44075","ServerKey":"pl181","X":629,"Y":334},{"Bonus":0,"Continent":"K74","ID":44076,"Name":"012. Night Raid","PlayerID":699684062,"Points":9087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44076","ServerKey":"pl181","X":493,"Y":709},{"Bonus":0,"Continent":"K64","ID":44077,"Name":"119","PlayerID":849099876,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44077","ServerKey":"pl181","X":417,"Y":693},{"Bonus":0,"Continent":"K33","ID":44078,"Name":"007","PlayerID":849101205,"Points":6593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44078","ServerKey":"pl181","X":358,"Y":350},{"Bonus":0,"Continent":"K35","ID":44079,"Name":"XDX","PlayerID":699098531,"Points":9143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44079","ServerKey":"pl181","X":599,"Y":316},{"Bonus":0,"Continent":"K64","ID":44080,"Name":"023","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44080","ServerKey":"pl181","X":404,"Y":685},{"Bonus":0,"Continent":"K75","ID":44081,"Name":"*INTERTWINED**","PlayerID":698704189,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44081","ServerKey":"pl181","X":510,"Y":701},{"Bonus":0,"Continent":"K52","ID":44082,"Name":"039","PlayerID":9280477,"Points":6130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44082","ServerKey":"pl181","X":299,"Y":541},{"Bonus":0,"Continent":"K56","ID":44083,"Name":"S012","PlayerID":8428196,"Points":6389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44083","ServerKey":"pl181","X":687,"Y":591},{"Bonus":0,"Continent":"K57","ID":44084,"Name":"064. Nanga Parbat","PlayerID":1601917,"Points":6648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44084","ServerKey":"pl181","X":703,"Y":534},{"Bonus":0,"Continent":"K65","ID":44086,"Name":"0317","PlayerID":698659980,"Points":7641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44086","ServerKey":"pl181","X":578,"Y":694},{"Bonus":5,"Continent":"K36","ID":44087,"Name":"063","PlayerID":849010255,"Points":9895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44087","ServerKey":"pl181","X":634,"Y":343},{"Bonus":0,"Continent":"K63","ID":44088,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44088","ServerKey":"pl181","X":385,"Y":666},{"Bonus":0,"Continent":"K57","ID":44089,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44089","ServerKey":"pl181","X":701,"Y":555},{"Bonus":0,"Continent":"K24","ID":44092,"Name":".achim.","PlayerID":6936607,"Points":5598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44092","ServerKey":"pl181","X":488,"Y":297},{"Bonus":0,"Continent":"K34","ID":44093,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44093","ServerKey":"pl181","X":406,"Y":314},{"Bonus":0,"Continent":"K33","ID":44094,"Name":"0007","PlayerID":699644448,"Points":4093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44094","ServerKey":"pl181","X":358,"Y":356},{"Bonus":5,"Continent":"K25","ID":44095,"Name":"004","PlayerID":849088101,"Points":9972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44095","ServerKey":"pl181","X":522,"Y":295},{"Bonus":0,"Continent":"K46","ID":44096,"Name":"025. WiesioShowPl","PlayerID":7494497,"Points":10323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44096","ServerKey":"pl181","X":689,"Y":465},{"Bonus":0,"Continent":"K45","ID":44097,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":6040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44097","ServerKey":"pl181","X":500,"Y":482},{"Bonus":0,"Continent":"K63","ID":44098,"Name":"C058","PlayerID":699383279,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44098","ServerKey":"pl181","X":362,"Y":657},{"Bonus":0,"Continent":"K66","ID":44099,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44099","ServerKey":"pl181","X":652,"Y":633},{"Bonus":0,"Continent":"K52","ID":44100,"Name":"C0131","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44100","ServerKey":"pl181","X":297,"Y":523},{"Bonus":0,"Continent":"K74","ID":44101,"Name":"FP007","PlayerID":699605333,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44101","ServerKey":"pl181","X":482,"Y":702},{"Bonus":0,"Continent":"K75","ID":44102,"Name":"Burito","PlayerID":699443920,"Points":7266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44102","ServerKey":"pl181","X":552,"Y":703},{"Bonus":0,"Continent":"K52","ID":44103,"Name":"008","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44103","ServerKey":"pl181","X":297,"Y":547},{"Bonus":0,"Continent":"K24","ID":44104,"Name":".achim.","PlayerID":6936607,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44104","ServerKey":"pl181","X":487,"Y":293},{"Bonus":0,"Continent":"K56","ID":44105,"Name":"TWIERDZA .:060:.","PlayerID":7154207,"Points":9432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44105","ServerKey":"pl181","X":692,"Y":574},{"Bonus":0,"Continent":"K53","ID":44106,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":5605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44106","ServerKey":"pl181","X":306,"Y":554},{"Bonus":0,"Continent":"K46","ID":44107,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44107","ServerKey":"pl181","X":697,"Y":434},{"Bonus":0,"Continent":"K33","ID":44108,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44108","ServerKey":"pl181","X":374,"Y":337},{"Bonus":0,"Continent":"K66","ID":44109,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44109","ServerKey":"pl181","X":661,"Y":629},{"Bonus":0,"Continent":"K64","ID":44110,"Name":"085","PlayerID":849099876,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44110","ServerKey":"pl181","X":409,"Y":688},{"Bonus":0,"Continent":"K46","ID":44111,"Name":"[058] Wioska barbarzyƄska","PlayerID":849095068,"Points":1739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44111","ServerKey":"pl181","X":688,"Y":423},{"Bonus":0,"Continent":"K64","ID":44112,"Name":"027","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44112","ServerKey":"pl181","X":418,"Y":685},{"Bonus":0,"Continent":"K46","ID":44113,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44113","ServerKey":"pl181","X":693,"Y":438},{"Bonus":0,"Continent":"K75","ID":44114,"Name":"- 260 - SS","PlayerID":849018239,"Points":5396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44114","ServerKey":"pl181","X":552,"Y":700},{"Bonus":0,"Continent":"K35","ID":44115,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44115","ServerKey":"pl181","X":531,"Y":300},{"Bonus":0,"Continent":"K33","ID":44116,"Name":"019. Frutti di mare","PlayerID":849102092,"Points":3830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44116","ServerKey":"pl181","X":331,"Y":378},{"Bonus":0,"Continent":"K74","ID":44117,"Name":"006. Night Raid","PlayerID":699684062,"Points":10003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44117","ServerKey":"pl181","X":491,"Y":710},{"Bonus":0,"Continent":"K36","ID":44118,"Name":"[195]","PlayerID":8000875,"Points":7519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44118","ServerKey":"pl181","X":678,"Y":390},{"Bonus":4,"Continent":"K66","ID":44119,"Name":"Osada koczownikĂłw","PlayerID":1900364,"Points":9195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44119","ServerKey":"pl181","X":660,"Y":624},{"Bonus":0,"Continent":"K36","ID":44120,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44120","ServerKey":"pl181","X":611,"Y":321},{"Bonus":0,"Continent":"K36","ID":44121,"Name":"2..","PlayerID":849056744,"Points":2252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44121","ServerKey":"pl181","X":645,"Y":352},{"Bonus":0,"Continent":"K66","ID":44122,"Name":"002 Wioska barbarzyƄska","PlayerID":699346280,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44122","ServerKey":"pl181","X":603,"Y":681},{"Bonus":0,"Continent":"K63","ID":44123,"Name":"Taran","PlayerID":6180190,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44123","ServerKey":"pl181","X":330,"Y":608},{"Bonus":0,"Continent":"K66","ID":44124,"Name":"klops3","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44124","ServerKey":"pl181","X":628,"Y":664},{"Bonus":0,"Continent":"K33","ID":44125,"Name":"z 0020 Wioska","PlayerID":3909522,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44125","ServerKey":"pl181","X":344,"Y":368},{"Bonus":0,"Continent":"K35","ID":44126,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44126","ServerKey":"pl181","X":573,"Y":308},{"Bonus":1,"Continent":"K33","ID":44127,"Name":"13 Ordowik","PlayerID":698231772,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44127","ServerKey":"pl181","X":397,"Y":324},{"Bonus":0,"Continent":"K64","ID":44128,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44128","ServerKey":"pl181","X":429,"Y":690},{"Bonus":0,"Continent":"K33","ID":44129,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44129","ServerKey":"pl181","X":332,"Y":390},{"Bonus":0,"Continent":"K25","ID":44130,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44130","ServerKey":"pl181","X":510,"Y":293},{"Bonus":0,"Continent":"K64","ID":44131,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44131","ServerKey":"pl181","X":429,"Y":693},{"Bonus":0,"Continent":"K52","ID":44132,"Name":"C0132","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44132","ServerKey":"pl181","X":296,"Y":513},{"Bonus":0,"Continent":"K47","ID":44133,"Name":"034. WƂocƂawek","PlayerID":7494497,"Points":10273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44133","ServerKey":"pl181","X":705,"Y":473},{"Bonus":0,"Continent":"K75","ID":44134,"Name":"133 invidia","PlayerID":849093426,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44134","ServerKey":"pl181","X":503,"Y":704},{"Bonus":0,"Continent":"K52","ID":44135,"Name":"Wioska dawszz2","PlayerID":849094688,"Points":5084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44135","ServerKey":"pl181","X":294,"Y":529},{"Bonus":0,"Continent":"K36","ID":44136,"Name":"059","PlayerID":698635863,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44136","ServerKey":"pl181","X":665,"Y":385},{"Bonus":0,"Continent":"K74","ID":44138,"Name":"0068 Wioska barbarzyƄska","PlayerID":849037407,"Points":7109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44138","ServerKey":"pl181","X":448,"Y":701},{"Bonus":0,"Continent":"K35","ID":44139,"Name":"D010","PlayerID":699299123,"Points":7007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44139","ServerKey":"pl181","X":559,"Y":301},{"Bonus":0,"Continent":"K63","ID":44140,"Name":"O039","PlayerID":272173,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44140","ServerKey":"pl181","X":338,"Y":626},{"Bonus":0,"Continent":"K42","ID":44141,"Name":"Wioska X02","PlayerID":698701911,"Points":3891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44141","ServerKey":"pl181","X":296,"Y":465},{"Bonus":0,"Continent":"K25","ID":44142,"Name":"Wioska barbarzyƄska","PlayerID":8400975,"Points":2019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44142","ServerKey":"pl181","X":511,"Y":296},{"Bonus":0,"Continent":"K64","ID":44143,"Name":"020","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44143","ServerKey":"pl181","X":403,"Y":679},{"Bonus":2,"Continent":"K43","ID":44144,"Name":"z181_26","PlayerID":393668,"Points":8878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44144","ServerKey":"pl181","X":305,"Y":444},{"Bonus":0,"Continent":"K66","ID":44145,"Name":"TUROWNIA","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44145","ServerKey":"pl181","X":622,"Y":664},{"Bonus":0,"Continent":"K36","ID":44146,"Name":"029","PlayerID":698635863,"Points":8112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44146","ServerKey":"pl181","X":650,"Y":357},{"Bonus":0,"Continent":"K34","ID":44147,"Name":"Rivendell","PlayerID":698231772,"Points":11874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44147","ServerKey":"pl181","X":414,"Y":311},{"Bonus":0,"Continent":"K42","ID":44148,"Name":"EO EO","PlayerID":699697558,"Points":8142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44148","ServerKey":"pl181","X":296,"Y":499},{"Bonus":0,"Continent":"K57","ID":44149,"Name":"03. Mediolan","PlayerID":848946700,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44149","ServerKey":"pl181","X":705,"Y":534},{"Bonus":0,"Continent":"K75","ID":44150,"Name":"Genowefa","PlayerID":6116940,"Points":5264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44150","ServerKey":"pl181","X":528,"Y":703},{"Bonus":4,"Continent":"K33","ID":44151,"Name":"Osada koczownikĂłw","PlayerID":849027025,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44151","ServerKey":"pl181","X":358,"Y":345},{"Bonus":0,"Continent":"K34","ID":44152,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44152","ServerKey":"pl181","X":412,"Y":318},{"Bonus":0,"Continent":"K47","ID":44153,"Name":"069. Wioska barbarzyƄska","PlayerID":7494497,"Points":8443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44153","ServerKey":"pl181","X":700,"Y":463},{"Bonus":0,"Continent":"K57","ID":44154,"Name":"A#029","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44154","ServerKey":"pl181","X":710,"Y":513},{"Bonus":0,"Continent":"K33","ID":44155,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":3810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44155","ServerKey":"pl181","X":334,"Y":375},{"Bonus":0,"Continent":"K35","ID":44156,"Name":"AAA","PlayerID":1006847,"Points":8699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44156","ServerKey":"pl181","X":551,"Y":303},{"Bonus":0,"Continent":"K42","ID":44157,"Name":"Dream on","PlayerID":698962117,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44157","ServerKey":"pl181","X":295,"Y":492},{"Bonus":0,"Continent":"K63","ID":44158,"Name":"O085","PlayerID":272173,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44158","ServerKey":"pl181","X":337,"Y":624},{"Bonus":0,"Continent":"K63","ID":44159,"Name":"O007","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44159","ServerKey":"pl181","X":341,"Y":635},{"Bonus":0,"Continent":"K64","ID":44160,"Name":"psycha sitting","PlayerID":699736927,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44160","ServerKey":"pl181","X":417,"Y":682},{"Bonus":0,"Continent":"K75","ID":44161,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":6195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44161","ServerKey":"pl181","X":508,"Y":703},{"Bonus":0,"Continent":"K66","ID":44162,"Name":"TUROWNIA","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44162","ServerKey":"pl181","X":621,"Y":665},{"Bonus":0,"Continent":"K66","ID":44163,"Name":"...07 am","PlayerID":848921861,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44163","ServerKey":"pl181","X":669,"Y":615},{"Bonus":0,"Continent":"K63","ID":44164,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":6485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44164","ServerKey":"pl181","X":394,"Y":674},{"Bonus":0,"Continent":"K47","ID":44165,"Name":"037. Wioska barbarzyƄska","PlayerID":7494497,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44165","ServerKey":"pl181","X":704,"Y":476},{"Bonus":0,"Continent":"K52","ID":44166,"Name":"C0206","PlayerID":8841266,"Points":9395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44166","ServerKey":"pl181","X":296,"Y":526},{"Bonus":0,"Continent":"K25","ID":44167,"Name":"006 ZO","PlayerID":699208929,"Points":10209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44167","ServerKey":"pl181","X":528,"Y":294},{"Bonus":0,"Continent":"K42","ID":44168,"Name":"Dream on","PlayerID":698962117,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44168","ServerKey":"pl181","X":296,"Y":489},{"Bonus":0,"Continent":"K34","ID":44169,"Name":"205","PlayerID":8630972,"Points":8236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44169","ServerKey":"pl181","X":429,"Y":306},{"Bonus":0,"Continent":"K36","ID":44170,"Name":"Wioska barbarzyƄska","PlayerID":699491076,"Points":3047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44170","ServerKey":"pl181","X":666,"Y":387},{"Bonus":0,"Continent":"K43","ID":44171,"Name":"Melon6","PlayerID":699659708,"Points":3610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44171","ServerKey":"pl181","X":310,"Y":432},{"Bonus":0,"Continent":"K63","ID":44172,"Name":"O017","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44172","ServerKey":"pl181","X":339,"Y":634},{"Bonus":0,"Continent":"K66","ID":44173,"Name":"020.","PlayerID":699695167,"Points":5922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44173","ServerKey":"pl181","X":623,"Y":669},{"Bonus":0,"Continent":"K56","ID":44174,"Name":"Wioska 09","PlayerID":849101162,"Points":5362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44174","ServerKey":"pl181","X":690,"Y":591},{"Bonus":0,"Continent":"K64","ID":44175,"Name":"psycha sitting","PlayerID":699736927,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44175","ServerKey":"pl181","X":426,"Y":655},{"Bonus":0,"Continent":"K63","ID":44176,"Name":"Wioska barbarzyƄska","PlayerID":699730998,"Points":1865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44176","ServerKey":"pl181","X":380,"Y":667},{"Bonus":0,"Continent":"K24","ID":44177,"Name":"????","PlayerID":698489071,"Points":6675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44177","ServerKey":"pl181","X":487,"Y":291},{"Bonus":6,"Continent":"K33","ID":44178,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44178","ServerKey":"pl181","X":387,"Y":329},{"Bonus":0,"Continent":"K46","ID":44179,"Name":"033. bbbarteqqq","PlayerID":7494497,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44179","ServerKey":"pl181","X":699,"Y":466},{"Bonus":0,"Continent":"K36","ID":44180,"Name":"Wioska barbarzyƄska","PlayerID":849005829,"Points":2894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44180","ServerKey":"pl181","X":636,"Y":337},{"Bonus":0,"Continent":"K63","ID":44181,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44181","ServerKey":"pl181","X":329,"Y":615},{"Bonus":0,"Continent":"K53","ID":44182,"Name":"023","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44182","ServerKey":"pl181","X":301,"Y":563},{"Bonus":0,"Continent":"K66","ID":44183,"Name":"CALL 1073","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44183","ServerKey":"pl181","X":656,"Y":631},{"Bonus":0,"Continent":"K66","ID":44184,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44184","ServerKey":"pl181","X":654,"Y":630},{"Bonus":0,"Continent":"K33","ID":44185,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44185","ServerKey":"pl181","X":344,"Y":365},{"Bonus":0,"Continent":"K66","ID":44186,"Name":"Bessa 025","PlayerID":848987051,"Points":10226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44186","ServerKey":"pl181","X":634,"Y":659},{"Bonus":0,"Continent":"K34","ID":44187,"Name":"=0011=","PlayerID":698231772,"Points":10146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44187","ServerKey":"pl181","X":401,"Y":318},{"Bonus":0,"Continent":"K53","ID":44188,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":3233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44188","ServerKey":"pl181","X":306,"Y":574},{"Bonus":0,"Continent":"K56","ID":44189,"Name":"GĂłrnik 3 zydzew 0 ;)","PlayerID":8742874,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44189","ServerKey":"pl181","X":603,"Y":573},{"Bonus":0,"Continent":"K64","ID":44190,"Name":"New World","PlayerID":698152377,"Points":10303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44190","ServerKey":"pl181","X":431,"Y":694},{"Bonus":0,"Continent":"K46","ID":44191,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44191","ServerKey":"pl181","X":697,"Y":440},{"Bonus":0,"Continent":"K66","ID":44192,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44192","ServerKey":"pl181","X":665,"Y":628},{"Bonus":0,"Continent":"K66","ID":44193,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":8827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44193","ServerKey":"pl181","X":629,"Y":661},{"Bonus":0,"Continent":"K66","ID":44194,"Name":"Parking","PlayerID":6528152,"Points":6688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44194","ServerKey":"pl181","X":616,"Y":667},{"Bonus":0,"Continent":"K34","ID":44195,"Name":"222","PlayerID":698365960,"Points":5422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44195","ServerKey":"pl181","X":423,"Y":304},{"Bonus":0,"Continent":"K43","ID":44196,"Name":"WiedĆșma - Z 015","PlayerID":9239515,"Points":3049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44196","ServerKey":"pl181","X":306,"Y":434},{"Bonus":0,"Continent":"K63","ID":44197,"Name":"O090","PlayerID":272173,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44197","ServerKey":"pl181","X":340,"Y":628},{"Bonus":0,"Continent":"K53","ID":44198,"Name":"004","PlayerID":848886200,"Points":4271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44198","ServerKey":"pl181","X":301,"Y":531},{"Bonus":0,"Continent":"K33","ID":44199,"Name":"185...L","PlayerID":6920960,"Points":5248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44199","ServerKey":"pl181","X":394,"Y":319},{"Bonus":1,"Continent":"K43","ID":44200,"Name":"Dzik 9","PlayerID":8366045,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44200","ServerKey":"pl181","X":303,"Y":439},{"Bonus":0,"Continent":"K65","ID":44201,"Name":"###090###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44201","ServerKey":"pl181","X":599,"Y":679},{"Bonus":0,"Continent":"K53","ID":44202,"Name":"Elo Elo 10","PlayerID":699016994,"Points":5244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44202","ServerKey":"pl181","X":306,"Y":575},{"Bonus":0,"Continent":"K33","ID":44203,"Name":"SoƂtys Twojej Wsi","PlayerID":849027025,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44203","ServerKey":"pl181","X":359,"Y":345},{"Bonus":0,"Continent":"K36","ID":44205,"Name":"Wioska barbarzyƄska","PlayerID":849086491,"Points":2090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44205","ServerKey":"pl181","X":646,"Y":355},{"Bonus":0,"Continent":"K63","ID":44206,"Name":"O019","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44206","ServerKey":"pl181","X":340,"Y":630},{"Bonus":0,"Continent":"K33","ID":44207,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44207","ServerKey":"pl181","X":329,"Y":395},{"Bonus":0,"Continent":"K46","ID":44208,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":7057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44208","ServerKey":"pl181","X":684,"Y":408},{"Bonus":0,"Continent":"K25","ID":44209,"Name":"11. Grubo byƂo ale się skoƄczyƂo","PlayerID":849054951,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44209","ServerKey":"pl181","X":557,"Y":299},{"Bonus":0,"Continent":"K57","ID":44210,"Name":"0101","PlayerID":699429153,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44210","ServerKey":"pl181","X":705,"Y":500},{"Bonus":0,"Continent":"K35","ID":44211,"Name":"001 VLV","PlayerID":849026145,"Points":4414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44211","ServerKey":"pl181","X":558,"Y":307},{"Bonus":0,"Continent":"K63","ID":44212,"Name":"O089","PlayerID":272173,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44212","ServerKey":"pl181","X":339,"Y":627},{"Bonus":0,"Continent":"K56","ID":44213,"Name":"TWIERDZA .:049:.","PlayerID":7154207,"Points":7851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44213","ServerKey":"pl181","X":695,"Y":576},{"Bonus":0,"Continent":"K33","ID":44214,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44214","ServerKey":"pl181","X":330,"Y":393},{"Bonus":0,"Continent":"K34","ID":44215,"Name":"257...Emerson","PlayerID":6920960,"Points":11312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44215","ServerKey":"pl181","X":464,"Y":302},{"Bonus":0,"Continent":"K47","ID":44216,"Name":"STREFA GAZY | 004","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44216","ServerKey":"pl181","X":706,"Y":474},{"Bonus":0,"Continent":"K36","ID":44217,"Name":"010","PlayerID":9291984,"Points":8166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44217","ServerKey":"pl181","X":641,"Y":346},{"Bonus":9,"Continent":"K66","ID":44218,"Name":"Osada koczownikĂłw","PlayerID":1900364,"Points":8202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44218","ServerKey":"pl181","X":660,"Y":621},{"Bonus":0,"Continent":"K43","ID":44219,"Name":"008 VWF Wioska barbarzyƄska","PlayerID":3108144,"Points":8998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44219","ServerKey":"pl181","X":306,"Y":429},{"Bonus":0,"Continent":"K34","ID":44220,"Name":"035","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44220","ServerKey":"pl181","X":454,"Y":302},{"Bonus":3,"Continent":"K33","ID":44221,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44221","ServerKey":"pl181","X":321,"Y":399},{"Bonus":0,"Continent":"K42","ID":44222,"Name":"Dream on","PlayerID":698962117,"Points":8289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44222","ServerKey":"pl181","X":297,"Y":482},{"Bonus":0,"Continent":"K66","ID":44223,"Name":"10-oss","PlayerID":848921861,"Points":7005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44223","ServerKey":"pl181","X":672,"Y":612},{"Bonus":0,"Continent":"K36","ID":44224,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":2916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44224","ServerKey":"pl181","X":643,"Y":350},{"Bonus":0,"Continent":"K66","ID":44225,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44225","ServerKey":"pl181","X":662,"Y":630},{"Bonus":0,"Continent":"K25","ID":44227,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44227","ServerKey":"pl181","X":503,"Y":292},{"Bonus":0,"Continent":"K74","ID":44228,"Name":"R 035 ~Tristram~","PlayerID":699195358,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44228","ServerKey":"pl181","X":496,"Y":709},{"Bonus":0,"Continent":"K46","ID":44230,"Name":"Wioska tyroschijska","PlayerID":848976034,"Points":9587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44230","ServerKey":"pl181","X":699,"Y":438},{"Bonus":0,"Continent":"K53","ID":44231,"Name":"001","PlayerID":849098688,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44231","ServerKey":"pl181","X":300,"Y":551},{"Bonus":0,"Continent":"K66","ID":44232,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44232","ServerKey":"pl181","X":669,"Y":624},{"Bonus":0,"Continent":"K63","ID":44233,"Name":"002","PlayerID":699269923,"Points":7350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44233","ServerKey":"pl181","X":383,"Y":672},{"Bonus":0,"Continent":"K63","ID":44234,"Name":"O022","PlayerID":272173,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44234","ServerKey":"pl181","X":336,"Y":630},{"Bonus":0,"Continent":"K34","ID":44235,"Name":"K34 x035","PlayerID":698364331,"Points":7049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44235","ServerKey":"pl181","X":446,"Y":365},{"Bonus":0,"Continent":"K53","ID":44236,"Name":"001","PlayerID":849098628,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44236","ServerKey":"pl181","X":304,"Y":549},{"Bonus":6,"Continent":"K34","ID":44237,"Name":"=0002=","PlayerID":698231772,"Points":9863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44237","ServerKey":"pl181","X":401,"Y":316},{"Bonus":0,"Continent":"K75","ID":44238,"Name":"idziemy dalej","PlayerID":6116940,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44238","ServerKey":"pl181","X":533,"Y":711},{"Bonus":0,"Continent":"K36","ID":44239,"Name":"Wioska barbarzyƄska","PlayerID":698768565,"Points":6836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44239","ServerKey":"pl181","X":682,"Y":395},{"Bonus":0,"Continent":"K65","ID":44240,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44240","ServerKey":"pl181","X":577,"Y":694},{"Bonus":0,"Continent":"K66","ID":44241,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44241","ServerKey":"pl181","X":656,"Y":628},{"Bonus":0,"Continent":"K53","ID":44242,"Name":"Elo Elo 16","PlayerID":699016994,"Points":4980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44242","ServerKey":"pl181","X":305,"Y":575},{"Bonus":0,"Continent":"K36","ID":44243,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44243","ServerKey":"pl181","X":618,"Y":329},{"Bonus":0,"Continent":"K33","ID":44244,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44244","ServerKey":"pl181","X":355,"Y":349},{"Bonus":0,"Continent":"K43","ID":44245,"Name":"009 VWF Wioska razav","PlayerID":3108144,"Points":7828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44245","ServerKey":"pl181","X":311,"Y":427},{"Bonus":0,"Continent":"K36","ID":44247,"Name":"030","PlayerID":698635863,"Points":9554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44247","ServerKey":"pl181","X":674,"Y":389},{"Bonus":0,"Continent":"K53","ID":44248,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":3957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44248","ServerKey":"pl181","X":321,"Y":597},{"Bonus":0,"Continent":"K52","ID":44249,"Name":"C0215","PlayerID":8841266,"Points":10261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44249","ServerKey":"pl181","X":296,"Y":533},{"Bonus":0,"Continent":"K64","ID":44250,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44250","ServerKey":"pl181","X":431,"Y":695},{"Bonus":0,"Continent":"K63","ID":44251,"Name":"Wyspa","PlayerID":698769107,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44251","ServerKey":"pl181","X":380,"Y":661},{"Bonus":0,"Continent":"K66","ID":44252,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44252","ServerKey":"pl181","X":664,"Y":626},{"Bonus":0,"Continent":"K33","ID":44253,"Name":"Wioska001","PlayerID":699660539,"Points":5254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44253","ServerKey":"pl181","X":384,"Y":328},{"Bonus":0,"Continent":"K64","ID":44254,"Name":"Wioska barbarzyƄska","PlayerID":8966820,"Points":8585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44254","ServerKey":"pl181","X":459,"Y":697},{"Bonus":0,"Continent":"K63","ID":44255,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44255","ServerKey":"pl181","X":389,"Y":675},{"Bonus":0,"Continent":"K74","ID":44256,"Name":"B08","PlayerID":698652014,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44256","ServerKey":"pl181","X":468,"Y":702},{"Bonus":0,"Continent":"K65","ID":44257,"Name":"0364","PlayerID":698659980,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44257","ServerKey":"pl181","X":570,"Y":690},{"Bonus":0,"Continent":"K52","ID":44258,"Name":"EO EO","PlayerID":699697558,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44258","ServerKey":"pl181","X":290,"Y":500},{"Bonus":0,"Continent":"K66","ID":44259,"Name":"HAPERT","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44259","ServerKey":"pl181","X":626,"Y":663},{"Bonus":0,"Continent":"K66","ID":44260,"Name":"019 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44260","ServerKey":"pl181","X":601,"Y":678},{"Bonus":0,"Continent":"K75","ID":44261,"Name":"057 invidia","PlayerID":849093426,"Points":6168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44261","ServerKey":"pl181","X":548,"Y":703},{"Bonus":0,"Continent":"K53","ID":44262,"Name":"Darma dla zawodnika","PlayerID":6180190,"Points":7020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44262","ServerKey":"pl181","X":321,"Y":595},{"Bonus":4,"Continent":"K33","ID":44263,"Name":"Osada koczownikĂłw","PlayerID":7462660,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44263","ServerKey":"pl181","X":344,"Y":364},{"Bonus":0,"Continent":"K66","ID":44264,"Name":"Wygwizdowa 009","PlayerID":698562644,"Points":6129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44264","ServerKey":"pl181","X":638,"Y":651},{"Bonus":0,"Continent":"K25","ID":44265,"Name":"C.06 a panicz to dokąd?","PlayerID":849026145,"Points":6967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44265","ServerKey":"pl181","X":552,"Y":298},{"Bonus":0,"Continent":"K34","ID":44266,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44266","ServerKey":"pl181","X":404,"Y":315},{"Bonus":0,"Continent":"K64","ID":44267,"Name":"0029 Kasko14","PlayerID":849037407,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44267","ServerKey":"pl181","X":446,"Y":693},{"Bonus":0,"Continent":"K36","ID":44268,"Name":"!36 66 Horodnic de Sus","PlayerID":698361257,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44268","ServerKey":"pl181","X":660,"Y":365},{"Bonus":0,"Continent":"K75","ID":44269,"Name":"Florencja","PlayerID":698723158,"Points":7042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44269","ServerKey":"pl181","X":547,"Y":703},{"Bonus":0,"Continent":"K53","ID":44270,"Name":"Wioska klez 022","PlayerID":698295651,"Points":3308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44270","ServerKey":"pl181","X":309,"Y":565},{"Bonus":0,"Continent":"K36","ID":44271,"Name":"Grazula","PlayerID":699738350,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44271","ServerKey":"pl181","X":681,"Y":396},{"Bonus":0,"Continent":"K65","ID":44272,"Name":"###034###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44272","ServerKey":"pl181","X":595,"Y":688},{"Bonus":0,"Continent":"K47","ID":44273,"Name":"009","PlayerID":942959,"Points":6030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44273","ServerKey":"pl181","X":700,"Y":491},{"Bonus":0,"Continent":"K63","ID":44274,"Name":"psycha sitting","PlayerID":699736927,"Points":6852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44274","ServerKey":"pl181","X":397,"Y":673},{"Bonus":0,"Continent":"K63","ID":44275,"Name":"D012","PlayerID":272173,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44275","ServerKey":"pl181","X":354,"Y":640},{"Bonus":0,"Continent":"K63","ID":44276,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":3003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44276","ServerKey":"pl181","X":386,"Y":670},{"Bonus":0,"Continent":"K35","ID":44277,"Name":"AAA","PlayerID":1006847,"Points":3660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44277","ServerKey":"pl181","X":544,"Y":300},{"Bonus":0,"Continent":"K34","ID":44278,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44278","ServerKey":"pl181","X":412,"Y":310},{"Bonus":0,"Continent":"K63","ID":44280,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":8361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44280","ServerKey":"pl181","X":329,"Y":617},{"Bonus":0,"Continent":"K43","ID":44281,"Name":"Kagusiowo 8","PlayerID":849101268,"Points":4131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44281","ServerKey":"pl181","X":300,"Y":440},{"Bonus":0,"Continent":"K25","ID":44282,"Name":"016","PlayerID":7758085,"Points":6713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44282","ServerKey":"pl181","X":530,"Y":296},{"Bonus":0,"Continent":"K64","ID":44283,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44283","ServerKey":"pl181","X":428,"Y":692},{"Bonus":0,"Continent":"K25","ID":44284,"Name":"C.02 a panicz to dokąd?","PlayerID":849026145,"Points":6554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44284","ServerKey":"pl181","X":555,"Y":298},{"Bonus":0,"Continent":"K25","ID":44285,"Name":"AAA","PlayerID":1006847,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44285","ServerKey":"pl181","X":551,"Y":296},{"Bonus":0,"Continent":"K53","ID":44287,"Name":"C0101","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44287","ServerKey":"pl181","X":300,"Y":518},{"Bonus":0,"Continent":"K25","ID":44288,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44288","ServerKey":"pl181","X":563,"Y":298},{"Bonus":0,"Continent":"K64","ID":44289,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44289","ServerKey":"pl181","X":436,"Y":692},{"Bonus":0,"Continent":"K34","ID":44290,"Name":"???","PlayerID":698489071,"Points":6105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44290","ServerKey":"pl181","X":486,"Y":309},{"Bonus":0,"Continent":"K57","ID":44291,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":4305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44291","ServerKey":"pl181","X":705,"Y":531},{"Bonus":0,"Continent":"K35","ID":44292,"Name":"Daleko","PlayerID":849098136,"Points":9243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44292","ServerKey":"pl181","X":565,"Y":305},{"Bonus":0,"Continent":"K24","ID":44293,"Name":"????","PlayerID":698489071,"Points":6654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44293","ServerKey":"pl181","X":488,"Y":293},{"Bonus":0,"Continent":"K65","ID":44294,"Name":"- 235 - SS","PlayerID":849018239,"Points":8829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44294","ServerKey":"pl181","X":536,"Y":685},{"Bonus":0,"Continent":"K66","ID":44295,"Name":"033 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44295","ServerKey":"pl181","X":602,"Y":682},{"Bonus":0,"Continent":"K47","ID":44296,"Name":"C.017","PlayerID":9188016,"Points":4775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44296","ServerKey":"pl181","X":708,"Y":482},{"Bonus":0,"Continent":"K64","ID":44297,"Name":"025# Samantha","PlayerID":3933666,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44297","ServerKey":"pl181","X":449,"Y":698},{"Bonus":0,"Continent":"K66","ID":44298,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44298","ServerKey":"pl181","X":656,"Y":637},{"Bonus":0,"Continent":"K64","ID":44299,"Name":"0032 Kasko14","PlayerID":849037407,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44299","ServerKey":"pl181","X":450,"Y":696},{"Bonus":0,"Continent":"K33","ID":44300,"Name":"Wioska Koticzak","PlayerID":699841959,"Points":3627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44300","ServerKey":"pl181","X":346,"Y":356},{"Bonus":0,"Continent":"K64","ID":44301,"Name":"164","PlayerID":849099876,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44301","ServerKey":"pl181","X":416,"Y":693},{"Bonus":0,"Continent":"K63","ID":44302,"Name":"Taran","PlayerID":6180190,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44302","ServerKey":"pl181","X":330,"Y":611},{"Bonus":0,"Continent":"K56","ID":44303,"Name":"tomek016 II","PlayerID":8811880,"Points":977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44303","ServerKey":"pl181","X":690,"Y":567},{"Bonus":0,"Continent":"K35","ID":44304,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":3061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44304","ServerKey":"pl181","X":535,"Y":301},{"Bonus":0,"Continent":"K36","ID":44305,"Name":"!36 66 Gura Humorului","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44305","ServerKey":"pl181","X":663,"Y":369},{"Bonus":0,"Continent":"K53","ID":44306,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44306","ServerKey":"pl181","X":344,"Y":549},{"Bonus":0,"Continent":"K52","ID":44307,"Name":"006","PlayerID":849098688,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44307","ServerKey":"pl181","X":297,"Y":551},{"Bonus":0,"Continent":"K33","ID":44308,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44308","ServerKey":"pl181","X":327,"Y":397},{"Bonus":0,"Continent":"K36","ID":44309,"Name":"Szlachcic:Taran","PlayerID":698241117,"Points":8036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44309","ServerKey":"pl181","X":615,"Y":325},{"Bonus":0,"Continent":"K65","ID":44310,"Name":"Wioska barbarzyƄska","PlayerID":6870350,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44310","ServerKey":"pl181","X":562,"Y":699},{"Bonus":0,"Continent":"K64","ID":44311,"Name":"001","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44311","ServerKey":"pl181","X":410,"Y":684},{"Bonus":0,"Continent":"K36","ID":44314,"Name":"wioska","PlayerID":849102068,"Points":4108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44314","ServerKey":"pl181","X":631,"Y":340},{"Bonus":0,"Continent":"K66","ID":44315,"Name":"Wygwizdowa 010","PlayerID":698562644,"Points":6190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44315","ServerKey":"pl181","X":627,"Y":656},{"Bonus":0,"Continent":"K53","ID":44316,"Name":"071.","PlayerID":3475079,"Points":2901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44316","ServerKey":"pl181","X":314,"Y":582},{"Bonus":0,"Continent":"K56","ID":44317,"Name":"Wioska barbarzyƄska","PlayerID":7154207,"Points":2672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44317","ServerKey":"pl181","X":692,"Y":586},{"Bonus":0,"Continent":"K63","ID":44319,"Name":"C011","PlayerID":699383279,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44319","ServerKey":"pl181","X":371,"Y":667},{"Bonus":0,"Continent":"K57","ID":44320,"Name":"Wioska barbarzyƄska","PlayerID":1895081,"Points":3562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44320","ServerKey":"pl181","X":704,"Y":523},{"Bonus":0,"Continent":"K63","ID":44321,"Name":"O018","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44321","ServerKey":"pl181","X":337,"Y":630},{"Bonus":0,"Continent":"K56","ID":44322,"Name":"TWIERDZA .:055:.","PlayerID":7154207,"Points":8633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44322","ServerKey":"pl181","X":686,"Y":575},{"Bonus":0,"Continent":"K53","ID":44323,"Name":"Wioska Frejas933","PlayerID":5997814,"Points":8974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44323","ServerKey":"pl181","X":303,"Y":553},{"Bonus":0,"Continent":"K63","ID":44325,"Name":"080","PlayerID":849099876,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44325","ServerKey":"pl181","X":394,"Y":682},{"Bonus":8,"Continent":"K53","ID":44326,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":8558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44326","ServerKey":"pl181","X":315,"Y":579},{"Bonus":0,"Continent":"K33","ID":44327,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44327","ServerKey":"pl181","X":331,"Y":388},{"Bonus":0,"Continent":"K43","ID":44328,"Name":"Argonowy grĂłd","PlayerID":699377401,"Points":5048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44328","ServerKey":"pl181","X":315,"Y":419},{"Bonus":0,"Continent":"K52","ID":44329,"Name":"[0225] xxx","PlayerID":8630972,"Points":6531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44329","ServerKey":"pl181","X":290,"Y":506},{"Bonus":0,"Continent":"K74","ID":44330,"Name":"Wyspa_52","PlayerID":2585846,"Points":5595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44330","ServerKey":"pl181","X":497,"Y":701},{"Bonus":0,"Continent":"K36","ID":44331,"Name":"030","PlayerID":9148043,"Points":2932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44331","ServerKey":"pl181","X":643,"Y":348},{"Bonus":0,"Continent":"K33","ID":44333,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":3228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44333","ServerKey":"pl181","X":336,"Y":377},{"Bonus":0,"Continent":"K33","ID":44334,"Name":"005:Wioska Florson1916","PlayerID":8772425,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44334","ServerKey":"pl181","X":377,"Y":334},{"Bonus":0,"Continent":"K47","ID":44336,"Name":"Wioska bravoska","PlayerID":848976034,"Points":2820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44336","ServerKey":"pl181","X":700,"Y":439},{"Bonus":0,"Continent":"K35","ID":44337,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44337","ServerKey":"pl181","X":580,"Y":309},{"Bonus":0,"Continent":"K66","ID":44338,"Name":"Bessa 026","PlayerID":848987051,"Points":10284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44338","ServerKey":"pl181","X":635,"Y":653},{"Bonus":0,"Continent":"K42","ID":44339,"Name":"[0173]","PlayerID":8630972,"Points":9181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44339","ServerKey":"pl181","X":289,"Y":493},{"Bonus":0,"Continent":"K56","ID":44340,"Name":"Z.08","PlayerID":699737356,"Points":4071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44340","ServerKey":"pl181","X":696,"Y":576},{"Bonus":7,"Continent":"K24","ID":44341,"Name":".achim.","PlayerID":6936607,"Points":7576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44341","ServerKey":"pl181","X":483,"Y":293},{"Bonus":0,"Continent":"K33","ID":44342,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44342","ServerKey":"pl181","X":334,"Y":380},{"Bonus":0,"Continent":"K47","ID":44343,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":6393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44343","ServerKey":"pl181","X":709,"Y":490},{"Bonus":0,"Continent":"K56","ID":44344,"Name":"Wioska 23","PlayerID":849101162,"Points":1955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44344","ServerKey":"pl181","X":680,"Y":592},{"Bonus":0,"Continent":"K57","ID":44345,"Name":"016","PlayerID":699150527,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44345","ServerKey":"pl181","X":708,"Y":508},{"Bonus":0,"Continent":"K35","ID":44346,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44346","ServerKey":"pl181","X":585,"Y":318},{"Bonus":0,"Continent":"K24","ID":44347,"Name":".achim.","PlayerID":6936607,"Points":7278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44347","ServerKey":"pl181","X":478,"Y":290},{"Bonus":0,"Continent":"K34","ID":44348,"Name":"022.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44348","ServerKey":"pl181","X":426,"Y":306},{"Bonus":0,"Continent":"K33","ID":44349,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44349","ServerKey":"pl181","X":334,"Y":381},{"Bonus":0,"Continent":"K74","ID":44350,"Name":"Wyspa_50","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44350","ServerKey":"pl181","X":499,"Y":701},{"Bonus":6,"Continent":"K25","ID":44351,"Name":"Winterhome.002","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44351","ServerKey":"pl181","X":500,"Y":295},{"Bonus":0,"Continent":"K56","ID":44352,"Name":"060","PlayerID":698786826,"Points":9120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44352","ServerKey":"pl181","X":615,"Y":586},{"Bonus":0,"Continent":"K36","ID":44353,"Name":"!36 66 Voronet","PlayerID":698361257,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44353","ServerKey":"pl181","X":661,"Y":366},{"Bonus":0,"Continent":"K63","ID":44354,"Name":"D.029","PlayerID":849088243,"Points":3318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44354","ServerKey":"pl181","X":382,"Y":663},{"Bonus":0,"Continent":"K63","ID":44355,"Name":"201","PlayerID":699269923,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44355","ServerKey":"pl181","X":369,"Y":662},{"Bonus":0,"Continent":"K24","ID":44356,"Name":"????","PlayerID":698489071,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44356","ServerKey":"pl181","X":489,"Y":291},{"Bonus":0,"Continent":"K74","ID":44357,"Name":"017Moment","PlayerID":698620694,"Points":3785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44357","ServerKey":"pl181","X":457,"Y":703},{"Bonus":0,"Continent":"K25","ID":44358,"Name":"AAA","PlayerID":1006847,"Points":6618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44358","ServerKey":"pl181","X":544,"Y":296},{"Bonus":0,"Continent":"K63","ID":44359,"Name":"AAA","PlayerID":6180190,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44359","ServerKey":"pl181","X":322,"Y":604},{"Bonus":0,"Continent":"K64","ID":44360,"Name":"002","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44360","ServerKey":"pl181","X":408,"Y":689},{"Bonus":0,"Continent":"K63","ID":44361,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":5830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44361","ServerKey":"pl181","X":331,"Y":620},{"Bonus":0,"Continent":"K33","ID":44362,"Name":"AlaKlaudia3","PlayerID":848966521,"Points":3787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44362","ServerKey":"pl181","X":382,"Y":326},{"Bonus":0,"Continent":"K64","ID":44363,"Name":"psycha sitting","PlayerID":699736927,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44363","ServerKey":"pl181","X":400,"Y":676},{"Bonus":0,"Continent":"K66","ID":44364,"Name":"Wioska brabarzyƄcĂłw","PlayerID":8224678,"Points":7419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44364","ServerKey":"pl181","X":673,"Y":602},{"Bonus":0,"Continent":"K65","ID":44365,"Name":"0337","PlayerID":698659980,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44365","ServerKey":"pl181","X":561,"Y":696},{"Bonus":0,"Continent":"K36","ID":44366,"Name":"*023","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44366","ServerKey":"pl181","X":667,"Y":371},{"Bonus":0,"Continent":"K63","ID":44367,"Name":"0148","PlayerID":7085510,"Points":4519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44367","ServerKey":"pl181","X":389,"Y":679},{"Bonus":0,"Continent":"K47","ID":44368,"Name":"066. hehehe4","PlayerID":7494497,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44368","ServerKey":"pl181","X":703,"Y":457},{"Bonus":0,"Continent":"K63","ID":44369,"Name":"O054","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44369","ServerKey":"pl181","X":336,"Y":626},{"Bonus":0,"Continent":"K63","ID":44370,"Name":"Taran","PlayerID":6180190,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44370","ServerKey":"pl181","X":327,"Y":604},{"Bonus":0,"Continent":"K74","ID":44371,"Name":"027# Jadzia","PlayerID":3933666,"Points":1916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44371","ServerKey":"pl181","X":450,"Y":701},{"Bonus":0,"Continent":"K56","ID":44372,"Name":"004","PlayerID":301602,"Points":7930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44372","ServerKey":"pl181","X":699,"Y":558},{"Bonus":0,"Continent":"K56","ID":44373,"Name":"TWIERDZA .:074:.","PlayerID":7154207,"Points":8957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44373","ServerKey":"pl181","X":685,"Y":587},{"Bonus":0,"Continent":"K66","ID":44374,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44374","ServerKey":"pl181","X":662,"Y":633},{"Bonus":0,"Continent":"K33","ID":44375,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44375","ServerKey":"pl181","X":345,"Y":366},{"Bonus":0,"Continent":"K75","ID":44376,"Name":"- 278 - SS","PlayerID":849018239,"Points":7251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44376","ServerKey":"pl181","X":552,"Y":702},{"Bonus":0,"Continent":"K43","ID":44377,"Name":"ZZ02","PlayerID":356642,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44377","ServerKey":"pl181","X":310,"Y":410},{"Bonus":3,"Continent":"K42","ID":44378,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44378","ServerKey":"pl181","X":298,"Y":456},{"Bonus":0,"Continent":"K63","ID":44379,"Name":"O125","PlayerID":272173,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44379","ServerKey":"pl181","X":333,"Y":621},{"Bonus":0,"Continent":"K52","ID":44380,"Name":"Wioska barbarzyƄska","PlayerID":849101647,"Points":3649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44380","ServerKey":"pl181","X":293,"Y":516},{"Bonus":0,"Continent":"K25","ID":44381,"Name":"007","PlayerID":699208929,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44381","ServerKey":"pl181","X":529,"Y":293},{"Bonus":0,"Continent":"K57","ID":44382,"Name":"008","PlayerID":7085502,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44382","ServerKey":"pl181","X":711,"Y":526},{"Bonus":0,"Continent":"K33","ID":44383,"Name":"0021","PlayerID":2321390,"Points":4176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44383","ServerKey":"pl181","X":396,"Y":318},{"Bonus":0,"Continent":"K24","ID":44384,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":2955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44384","ServerKey":"pl181","X":474,"Y":298},{"Bonus":0,"Continent":"K36","ID":44385,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":4927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44385","ServerKey":"pl181","X":678,"Y":399},{"Bonus":0,"Continent":"K36","ID":44386,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44386","ServerKey":"pl181","X":651,"Y":358},{"Bonus":0,"Continent":"K53","ID":44388,"Name":"Taran","PlayerID":6180190,"Points":5858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44388","ServerKey":"pl181","X":314,"Y":598},{"Bonus":0,"Continent":"K66","ID":44389,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44389","ServerKey":"pl181","X":664,"Y":622},{"Bonus":0,"Continent":"K53","ID":44390,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44390","ServerKey":"pl181","X":302,"Y":523},{"Bonus":0,"Continent":"K66","ID":44391,"Name":"...01 am","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44391","ServerKey":"pl181","X":673,"Y":613},{"Bonus":0,"Continent":"K42","ID":44392,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44392","ServerKey":"pl181","X":297,"Y":493},{"Bonus":0,"Continent":"K33","ID":44393,"Name":"Zaplecze Barba 018","PlayerID":699796330,"Points":7709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44393","ServerKey":"pl181","X":373,"Y":341},{"Bonus":0,"Continent":"K42","ID":44394,"Name":"[0210]","PlayerID":8630972,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44394","ServerKey":"pl181","X":298,"Y":497},{"Bonus":0,"Continent":"K33","ID":44395,"Name":"Sahara","PlayerID":849068108,"Points":5366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44395","ServerKey":"pl181","X":371,"Y":345},{"Bonus":0,"Continent":"K63","ID":44396,"Name":"O012","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44396","ServerKey":"pl181","X":341,"Y":634},{"Bonus":0,"Continent":"K46","ID":44397,"Name":"070. Wioska barbarzyƄska","PlayerID":7494497,"Points":8376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44397","ServerKey":"pl181","X":699,"Y":462},{"Bonus":0,"Continent":"K63","ID":44399,"Name":"A 053","PlayerID":6948793,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44399","ServerKey":"pl181","X":361,"Y":647},{"Bonus":0,"Continent":"K52","ID":44401,"Name":"Wioska barbarzyƄska","PlayerID":7530708,"Points":3630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44401","ServerKey":"pl181","X":295,"Y":524},{"Bonus":0,"Continent":"K64","ID":44402,"Name":"psycha sitting","PlayerID":699736927,"Points":4208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44402","ServerKey":"pl181","X":408,"Y":679},{"Bonus":0,"Continent":"K43","ID":44403,"Name":"Ranczo3","PlayerID":699706955,"Points":7071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44403","ServerKey":"pl181","X":303,"Y":450},{"Bonus":0,"Continent":"K33","ID":44404,"Name":"011","PlayerID":848945529,"Points":1462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44404","ServerKey":"pl181","X":342,"Y":386},{"Bonus":0,"Continent":"K56","ID":44405,"Name":"S004","PlayerID":8428196,"Points":7619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44405","ServerKey":"pl181","X":683,"Y":590},{"Bonus":0,"Continent":"K53","ID":44406,"Name":"Na SsSskraju","PlayerID":1536625,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44406","ServerKey":"pl181","X":300,"Y":557},{"Bonus":0,"Continent":"K25","ID":44407,"Name":"Peuro Bello","PlayerID":3298902,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44407","ServerKey":"pl181","X":519,"Y":296},{"Bonus":0,"Continent":"K66","ID":44408,"Name":"004","PlayerID":849101148,"Points":8666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44408","ServerKey":"pl181","X":644,"Y":653},{"Bonus":0,"Continent":"K34","ID":44410,"Name":"042.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44410","ServerKey":"pl181","X":438,"Y":300},{"Bonus":0,"Continent":"K24","ID":44411,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44411","ServerKey":"pl181","X":494,"Y":295},{"Bonus":0,"Continent":"K52","ID":44412,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44412","ServerKey":"pl181","X":294,"Y":521},{"Bonus":0,"Continent":"K57","ID":44413,"Name":"14. Aedirn","PlayerID":8976313,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44413","ServerKey":"pl181","X":705,"Y":550},{"Bonus":0,"Continent":"K33","ID":44414,"Name":"Beauclair","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44414","ServerKey":"pl181","X":340,"Y":369},{"Bonus":0,"Continent":"K66","ID":44415,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":4400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44415","ServerKey":"pl181","X":620,"Y":663},{"Bonus":0,"Continent":"K33","ID":44416,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44416","ServerKey":"pl181","X":328,"Y":395},{"Bonus":0,"Continent":"K25","ID":44417,"Name":"AAA","PlayerID":1006847,"Points":7320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44417","ServerKey":"pl181","X":546,"Y":297},{"Bonus":0,"Continent":"K65","ID":44418,"Name":"- 176 - SS","PlayerID":849018239,"Points":8328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44418","ServerKey":"pl181","X":558,"Y":687},{"Bonus":0,"Continent":"K52","ID":44419,"Name":"EO EO","PlayerID":699697558,"Points":7629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44419","ServerKey":"pl181","X":291,"Y":525},{"Bonus":0,"Continent":"K74","ID":44420,"Name":"024# Agnes","PlayerID":3933666,"Points":4175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44420","ServerKey":"pl181","X":483,"Y":700},{"Bonus":0,"Continent":"K36","ID":44421,"Name":"060","PlayerID":849010255,"Points":3699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44421","ServerKey":"pl181","X":637,"Y":340},{"Bonus":0,"Continent":"K63","ID":44422,"Name":"C030","PlayerID":699383279,"Points":10065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44422","ServerKey":"pl181","X":375,"Y":660},{"Bonus":0,"Continent":"K24","ID":44423,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44423","ServerKey":"pl181","X":493,"Y":289},{"Bonus":0,"Continent":"K42","ID":44424,"Name":"Dream on","PlayerID":698962117,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44424","ServerKey":"pl181","X":299,"Y":484},{"Bonus":0,"Continent":"K65","ID":44425,"Name":"- 251 - SS","PlayerID":849018239,"Points":3837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44425","ServerKey":"pl181","X":551,"Y":694},{"Bonus":0,"Continent":"K57","ID":44426,"Name":"Wioska barbarzyƄska","PlayerID":699785935,"Points":8085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44426","ServerKey":"pl181","X":702,"Y":513},{"Bonus":0,"Continent":"K66","ID":44428,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44428","ServerKey":"pl181","X":663,"Y":633},{"Bonus":0,"Continent":"K65","ID":44430,"Name":"0365","PlayerID":698659980,"Points":7977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44430","ServerKey":"pl181","X":567,"Y":698},{"Bonus":0,"Continent":"K52","ID":44431,"Name":"New WorldA","PlayerID":849084005,"Points":6865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44431","ServerKey":"pl181","X":290,"Y":522},{"Bonus":0,"Continent":"K64","ID":44432,"Name":"0010 Wioska barbarzyƄska","PlayerID":849037407,"Points":10069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44432","ServerKey":"pl181","X":443,"Y":694},{"Bonus":0,"Continent":"K33","ID":44433,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44433","ServerKey":"pl181","X":326,"Y":392},{"Bonus":0,"Continent":"K24","ID":44434,"Name":"????","PlayerID":698489071,"Points":6728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44434","ServerKey":"pl181","X":489,"Y":292},{"Bonus":0,"Continent":"K46","ID":44435,"Name":"Aladin","PlayerID":699785935,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44435","ServerKey":"pl181","X":684,"Y":403},{"Bonus":0,"Continent":"K57","ID":44436,"Name":"Wioska barbarzyƄska","PlayerID":699150527,"Points":6940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44436","ServerKey":"pl181","X":705,"Y":525},{"Bonus":0,"Continent":"K42","ID":44437,"Name":"EO EO","PlayerID":699697558,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44437","ServerKey":"pl181","X":295,"Y":498},{"Bonus":0,"Continent":"K66","ID":44438,"Name":"komandos","PlayerID":7976264,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44438","ServerKey":"pl181","X":630,"Y":658},{"Bonus":0,"Continent":"K36","ID":44439,"Name":"Na KraƄcu ƚwiata 016","PlayerID":9291984,"Points":4281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44439","ServerKey":"pl181","X":639,"Y":344},{"Bonus":0,"Continent":"K75","ID":44440,"Name":"124 invidia","PlayerID":849093426,"Points":9012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44440","ServerKey":"pl181","X":501,"Y":709},{"Bonus":0,"Continent":"K75","ID":44441,"Name":"078 invidia","PlayerID":849093426,"Points":8605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44441","ServerKey":"pl181","X":508,"Y":709},{"Bonus":0,"Continent":"K33","ID":44442,"Name":"008. Verdure","PlayerID":849102092,"Points":8563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44442","ServerKey":"pl181","X":326,"Y":382},{"Bonus":0,"Continent":"K47","ID":44443,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44443","ServerKey":"pl181","X":710,"Y":495},{"Bonus":2,"Continent":"K63","ID":44444,"Name":"C101","PlayerID":699383279,"Points":7586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44444","ServerKey":"pl181","X":357,"Y":652},{"Bonus":0,"Continent":"K47","ID":44445,"Name":"0116","PlayerID":699429153,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44445","ServerKey":"pl181","X":710,"Y":498},{"Bonus":0,"Continent":"K33","ID":44446,"Name":"Szlachcic","PlayerID":698388578,"Points":5102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44446","ServerKey":"pl181","X":368,"Y":348},{"Bonus":0,"Continent":"K46","ID":44447,"Name":"15.B2ST","PlayerID":9180206,"Points":8891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44447","ServerKey":"pl181","X":686,"Y":416},{"Bonus":0,"Continent":"K53","ID":44449,"Name":"034","PlayerID":9280477,"Points":6112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44449","ServerKey":"pl181","X":304,"Y":563},{"Bonus":0,"Continent":"K33","ID":44450,"Name":"0001","PlayerID":699644448,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44450","ServerKey":"pl181","X":356,"Y":356},{"Bonus":0,"Continent":"K57","ID":44451,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44451","ServerKey":"pl181","X":711,"Y":505},{"Bonus":3,"Continent":"K66","ID":44452,"Name":"Osada koczownikĂłw","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44452","ServerKey":"pl181","X":623,"Y":668},{"Bonus":0,"Continent":"K63","ID":44453,"Name":"SIƁOWNIA","PlayerID":849097837,"Points":2680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44453","ServerKey":"pl181","X":383,"Y":675},{"Bonus":0,"Continent":"K53","ID":44454,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":9062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44454","ServerKey":"pl181","X":304,"Y":552},{"Bonus":0,"Continent":"K36","ID":44455,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44455","ServerKey":"pl181","X":606,"Y":323},{"Bonus":0,"Continent":"K65","ID":44456,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":8601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44456","ServerKey":"pl181","X":571,"Y":698},{"Bonus":0,"Continent":"K43","ID":44457,"Name":"ZA15","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44457","ServerKey":"pl181","X":313,"Y":414},{"Bonus":0,"Continent":"K75","ID":44458,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44458","ServerKey":"pl181","X":537,"Y":705},{"Bonus":0,"Continent":"K35","ID":44459,"Name":"004 VLV","PlayerID":849100656,"Points":10745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44459","ServerKey":"pl181","X":557,"Y":303},{"Bonus":0,"Continent":"K63","ID":44460,"Name":"Taran","PlayerID":6180190,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44460","ServerKey":"pl181","X":320,"Y":601},{"Bonus":0,"Continent":"K46","ID":44461,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":7259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44461","ServerKey":"pl181","X":698,"Y":441},{"Bonus":0,"Continent":"K35","ID":44462,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44462","ServerKey":"pl181","X":562,"Y":303},{"Bonus":0,"Continent":"K43","ID":44463,"Name":"008d","PlayerID":8259895,"Points":4265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44463","ServerKey":"pl181","X":307,"Y":426},{"Bonus":0,"Continent":"K36","ID":44464,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44464","ServerKey":"pl181","X":619,"Y":327},{"Bonus":0,"Continent":"K63","ID":44465,"Name":"Taran","PlayerID":6180190,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44465","ServerKey":"pl181","X":327,"Y":614},{"Bonus":0,"Continent":"K66","ID":44466,"Name":"rek16/02.1215","PlayerID":3986807,"Points":4861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44466","ServerKey":"pl181","X":681,"Y":609},{"Bonus":0,"Continent":"K52","ID":44467,"Name":"Wioska dawszz","PlayerID":849094688,"Points":10386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44467","ServerKey":"pl181","X":293,"Y":530},{"Bonus":0,"Continent":"K34","ID":44468,"Name":"[0155]","PlayerID":8630972,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44468","ServerKey":"pl181","X":440,"Y":301},{"Bonus":0,"Continent":"K75","ID":44469,"Name":"107 invidia","PlayerID":849093426,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44469","ServerKey":"pl181","X":509,"Y":703},{"Bonus":0,"Continent":"K57","ID":44470,"Name":"089","PlayerID":7085502,"Points":7467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44470","ServerKey":"pl181","X":707,"Y":515},{"Bonus":0,"Continent":"K36","ID":44471,"Name":"0086","PlayerID":698416970,"Points":4279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44471","ServerKey":"pl181","X":679,"Y":392},{"Bonus":0,"Continent":"K33","ID":44472,"Name":"011. Maeldun","PlayerID":699660539,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44472","ServerKey":"pl181","X":389,"Y":332},{"Bonus":0,"Continent":"K24","ID":44473,"Name":"272...gulden","PlayerID":6920960,"Points":5874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44473","ServerKey":"pl181","X":455,"Y":299},{"Bonus":0,"Continent":"K43","ID":44474,"Name":"Shisha Pangma","PlayerID":699265922,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44474","ServerKey":"pl181","X":380,"Y":485},{"Bonus":0,"Continent":"K24","ID":44475,"Name":"256...Kaban1998","PlayerID":6920960,"Points":8286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44475","ServerKey":"pl181","X":460,"Y":296},{"Bonus":0,"Continent":"K64","ID":44476,"Name":"151","PlayerID":849099876,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44476","ServerKey":"pl181","X":401,"Y":686},{"Bonus":0,"Continent":"K47","ID":44477,"Name":"C05","PlayerID":849093742,"Points":6450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44477","ServerKey":"pl181","X":704,"Y":453},{"Bonus":9,"Continent":"K35","ID":44478,"Name":"FARKA","PlayerID":828637,"Points":10346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44478","ServerKey":"pl181","X":583,"Y":314},{"Bonus":0,"Continent":"K66","ID":44479,"Name":"034 Wioska barbarzyƄska","PlayerID":699346280,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44479","ServerKey":"pl181","X":614,"Y":674},{"Bonus":0,"Continent":"K64","ID":44480,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44480","ServerKey":"pl181","X":427,"Y":687},{"Bonus":0,"Continent":"K64","ID":44481,"Name":"Wioska barbarzyƄska","PlayerID":698178312,"Points":2868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44481","ServerKey":"pl181","X":454,"Y":698},{"Bonus":0,"Continent":"K56","ID":44482,"Name":"TWIERDZA .:070:.","PlayerID":7154207,"Points":8768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44482","ServerKey":"pl181","X":694,"Y":573},{"Bonus":0,"Continent":"K64","ID":44483,"Name":"014","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44483","ServerKey":"pl181","X":411,"Y":684},{"Bonus":0,"Continent":"K63","ID":44484,"Name":"C066","PlayerID":699383279,"Points":10202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44484","ServerKey":"pl181","X":358,"Y":652},{"Bonus":0,"Continent":"K63","ID":44486,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44486","ServerKey":"pl181","X":391,"Y":676},{"Bonus":0,"Continent":"K36","ID":44487,"Name":"Babilons","PlayerID":699738350,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44487","ServerKey":"pl181","X":680,"Y":397},{"Bonus":0,"Continent":"K74","ID":44489,"Name":"09. KozioƂki","PlayerID":849092769,"Points":6058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44489","ServerKey":"pl181","X":473,"Y":709},{"Bonus":0,"Continent":"K33","ID":44491,"Name":"Zaplecze Barba 4","PlayerID":699796330,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44491","ServerKey":"pl181","X":370,"Y":339},{"Bonus":0,"Continent":"K36","ID":44492,"Name":"B013","PlayerID":8740199,"Points":3002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44492","ServerKey":"pl181","X":623,"Y":332},{"Bonus":0,"Continent":"K74","ID":44493,"Name":"Kurnik","PlayerID":699603116,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44493","ServerKey":"pl181","X":484,"Y":708},{"Bonus":0,"Continent":"K66","ID":44494,"Name":"021.","PlayerID":699695167,"Points":4789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44494","ServerKey":"pl181","X":627,"Y":667},{"Bonus":0,"Continent":"K36","ID":44495,"Name":"XDX","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44495","ServerKey":"pl181","X":602,"Y":317},{"Bonus":0,"Continent":"K46","ID":44496,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":5980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44496","ServerKey":"pl181","X":687,"Y":407},{"Bonus":0,"Continent":"K66","ID":44497,"Name":"a-6","PlayerID":848921861,"Points":8730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44497","ServerKey":"pl181","X":679,"Y":610},{"Bonus":0,"Continent":"K43","ID":44498,"Name":"Dzik 6","PlayerID":8366045,"Points":8000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44498","ServerKey":"pl181","X":300,"Y":438},{"Bonus":0,"Continent":"K74","ID":44499,"Name":"004. Night Raid","PlayerID":699684062,"Points":9541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44499","ServerKey":"pl181","X":491,"Y":707},{"Bonus":0,"Continent":"K64","ID":44500,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44500","ServerKey":"pl181","X":426,"Y":692},{"Bonus":0,"Continent":"K25","ID":44501,"Name":"North 006","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44501","ServerKey":"pl181","X":502,"Y":290},{"Bonus":0,"Continent":"K46","ID":44502,"Name":"Gehenna","PlayerID":699785935,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44502","ServerKey":"pl181","X":689,"Y":406},{"Bonus":0,"Continent":"K64","ID":44503,"Name":"0002 Wioska barbarzyƄska","PlayerID":849037407,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44503","ServerKey":"pl181","X":442,"Y":696},{"Bonus":0,"Continent":"K35","ID":44504,"Name":"K35 - [027] Before Land","PlayerID":699088769,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44504","ServerKey":"pl181","X":574,"Y":320},{"Bonus":0,"Continent":"K33","ID":44505,"Name":"0071","PlayerID":848913037,"Points":5022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44505","ServerKey":"pl181","X":366,"Y":340},{"Bonus":0,"Continent":"K46","ID":44507,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44507","ServerKey":"pl181","X":683,"Y":402},{"Bonus":0,"Continent":"K36","ID":44508,"Name":"XDX","PlayerID":699098531,"Points":9878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44508","ServerKey":"pl181","X":607,"Y":323},{"Bonus":0,"Continent":"K65","ID":44509,"Name":"###035###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44509","ServerKey":"pl181","X":588,"Y":686},{"Bonus":0,"Continent":"K25","ID":44510,"Name":"017 ZO","PlayerID":699208929,"Points":5964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44510","ServerKey":"pl181","X":530,"Y":295},{"Bonus":0,"Continent":"K63","ID":44511,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44511","ServerKey":"pl181","X":319,"Y":603},{"Bonus":0,"Continent":"K74","ID":44512,"Name":"FP013","PlayerID":699605333,"Points":9218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44512","ServerKey":"pl181","X":482,"Y":701},{"Bonus":0,"Continent":"K64","ID":44513,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44513","ServerKey":"pl181","X":435,"Y":692},{"Bonus":0,"Continent":"K34","ID":44514,"Name":"193...segador","PlayerID":6920960,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44514","ServerKey":"pl181","X":439,"Y":300},{"Bonus":0,"Continent":"K43","ID":44515,"Name":"Ranczo4","PlayerID":699706955,"Points":4267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44515","ServerKey":"pl181","X":301,"Y":451},{"Bonus":0,"Continent":"K44","ID":44516,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44516","ServerKey":"pl181","X":485,"Y":426},{"Bonus":0,"Continent":"K66","ID":44518,"Name":"#K66 0012","PlayerID":699728159,"Points":5186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44518","ServerKey":"pl181","X":606,"Y":675},{"Bonus":0,"Continent":"K57","ID":44519,"Name":"=030= Owca Tu byƂa","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44519","ServerKey":"pl181","X":703,"Y":565},{"Bonus":0,"Continent":"K33","ID":44520,"Name":"Mniejsze zƂo 0089","PlayerID":699794765,"Points":6075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44520","ServerKey":"pl181","X":321,"Y":389},{"Bonus":0,"Continent":"K75","ID":44522,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44522","ServerKey":"pl181","X":509,"Y":707},{"Bonus":0,"Continent":"K57","ID":44523,"Name":"A#015","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44523","ServerKey":"pl181","X":711,"Y":509},{"Bonus":0,"Continent":"K75","ID":44524,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44524","ServerKey":"pl181","X":507,"Y":707},{"Bonus":7,"Continent":"K52","ID":44525,"Name":"C0089","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44525","ServerKey":"pl181","X":297,"Y":513},{"Bonus":0,"Continent":"K63","ID":44526,"Name":"O040","PlayerID":272173,"Points":10109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44526","ServerKey":"pl181","X":332,"Y":627},{"Bonus":0,"Continent":"K63","ID":44527,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":3990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44527","ServerKey":"pl181","X":318,"Y":600},{"Bonus":0,"Continent":"K46","ID":44528,"Name":"WS 05","PlayerID":699524891,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44528","ServerKey":"pl181","X":698,"Y":436},{"Bonus":0,"Continent":"K46","ID":44529,"Name":"Wioska volanteƄska","PlayerID":848976034,"Points":3933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44529","ServerKey":"pl181","X":699,"Y":439},{"Bonus":0,"Continent":"K63","ID":44530,"Name":"Wioska InnosensQ","PlayerID":849020212,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44530","ServerKey":"pl181","X":365,"Y":659},{"Bonus":0,"Continent":"K64","ID":44531,"Name":"067","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44531","ServerKey":"pl181","X":406,"Y":685},{"Bonus":0,"Continent":"K53","ID":44532,"Name":"002","PlayerID":9280477,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44532","ServerKey":"pl181","X":300,"Y":544},{"Bonus":0,"Continent":"K52","ID":44533,"Name":"001","PlayerID":9280477,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44533","ServerKey":"pl181","X":299,"Y":544},{"Bonus":0,"Continent":"K36","ID":44534,"Name":"Wioska barbarzyƄska","PlayerID":698768565,"Points":5274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44534","ServerKey":"pl181","X":676,"Y":391},{"Bonus":0,"Continent":"K33","ID":44535,"Name":"z 0001 Wioska","PlayerID":3909522,"Points":10279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44535","ServerKey":"pl181","X":349,"Y":360},{"Bonus":0,"Continent":"K52","ID":44536,"Name":"C0205","PlayerID":8841266,"Points":7890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44536","ServerKey":"pl181","X":299,"Y":530},{"Bonus":0,"Continent":"K65","ID":44537,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44537","ServerKey":"pl181","X":554,"Y":697},{"Bonus":0,"Continent":"K43","ID":44538,"Name":"FENDI","PlayerID":699794765,"Points":2108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44538","ServerKey":"pl181","X":306,"Y":433},{"Bonus":0,"Continent":"K64","ID":44539,"Name":"0055 Wioska paul","PlayerID":849037407,"Points":5462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44539","ServerKey":"pl181","X":447,"Y":699},{"Bonus":0,"Continent":"K75","ID":44540,"Name":"019 zamroĆŒony","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44540","ServerKey":"pl181","X":513,"Y":709},{"Bonus":0,"Continent":"K24","ID":44541,"Name":"Tebowizna","PlayerID":849101116,"Points":3873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44541","ServerKey":"pl181","X":463,"Y":296},{"Bonus":9,"Continent":"K43","ID":44542,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44542","ServerKey":"pl181","X":303,"Y":458},{"Bonus":0,"Continent":"K47","ID":44543,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":7209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44543","ServerKey":"pl181","X":704,"Y":444},{"Bonus":0,"Continent":"K33","ID":44544,"Name":"3. Wysypisko Ć»ycia","PlayerID":699660539,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44544","ServerKey":"pl181","X":386,"Y":326},{"Bonus":0,"Continent":"K34","ID":44545,"Name":"=0008=","PlayerID":698231772,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44545","ServerKey":"pl181","X":402,"Y":322},{"Bonus":0,"Continent":"K63","ID":44546,"Name":"C061","PlayerID":699383279,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44546","ServerKey":"pl181","X":362,"Y":656},{"Bonus":0,"Continent":"K56","ID":44547,"Name":"A02","PlayerID":848995478,"Points":4526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44547","ServerKey":"pl181","X":696,"Y":557},{"Bonus":0,"Continent":"K47","ID":44548,"Name":"WS 04","PlayerID":699524891,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44548","ServerKey":"pl181","X":700,"Y":437},{"Bonus":0,"Continent":"K52","ID":44549,"Name":"C0224","PlayerID":8841266,"Points":5039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44549","ServerKey":"pl181","X":298,"Y":545},{"Bonus":0,"Continent":"K33","ID":44550,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44550","ServerKey":"pl181","X":373,"Y":334},{"Bonus":5,"Continent":"K36","ID":44551,"Name":"*W005","PlayerID":7758085,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44551","ServerKey":"pl181","X":665,"Y":379},{"Bonus":0,"Continent":"K36","ID":44552,"Name":"*W001","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44552","ServerKey":"pl181","X":665,"Y":377},{"Bonus":0,"Continent":"K63","ID":44553,"Name":"016","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44553","ServerKey":"pl181","X":397,"Y":682},{"Bonus":0,"Continent":"K34","ID":44554,"Name":"K34 - [152] Before Land","PlayerID":699088769,"Points":7647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44554","ServerKey":"pl181","X":464,"Y":301},{"Bonus":6,"Continent":"K65","ID":44555,"Name":"WrocƂaw 003","PlayerID":699176234,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44555","ServerKey":"pl181","X":579,"Y":689},{"Bonus":0,"Continent":"K57","ID":44556,"Name":"Wioska Najemnik full light","PlayerID":1895081,"Points":8239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44556","ServerKey":"pl181","X":706,"Y":527},{"Bonus":0,"Continent":"K66","ID":44557,"Name":"024 koniec ƛwiata","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44557","ServerKey":"pl181","X":617,"Y":673},{"Bonus":6,"Continent":"K63","ID":44558,"Name":"O123","PlayerID":272173,"Points":7605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44558","ServerKey":"pl181","X":330,"Y":622},{"Bonus":0,"Continent":"K35","ID":44559,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44559","ServerKey":"pl181","X":590,"Y":311},{"Bonus":0,"Continent":"K36","ID":44560,"Name":"0090","PlayerID":698416970,"Points":7433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44560","ServerKey":"pl181","X":679,"Y":394},{"Bonus":0,"Continent":"K65","ID":44561,"Name":"BƂaziny GĂłrne","PlayerID":698723158,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44561","ServerKey":"pl181","X":573,"Y":698},{"Bonus":0,"Continent":"K33","ID":44562,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":4341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44562","ServerKey":"pl181","X":336,"Y":370},{"Bonus":0,"Continent":"K63","ID":44563,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44563","ServerKey":"pl181","X":326,"Y":609},{"Bonus":0,"Continent":"K56","ID":44564,"Name":"[044]","PlayerID":848985692,"Points":10394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44564","ServerKey":"pl181","X":600,"Y":537},{"Bonus":0,"Continent":"K47","ID":44565,"Name":"Wioska barbarzyƄskan","PlayerID":849098769,"Points":3964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44565","ServerKey":"pl181","X":701,"Y":462},{"Bonus":0,"Continent":"K57","ID":44566,"Name":"032","PlayerID":699150527,"Points":6214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44566","ServerKey":"pl181","X":706,"Y":518},{"Bonus":0,"Continent":"K57","ID":44567,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44567","ServerKey":"pl181","X":709,"Y":523},{"Bonus":1,"Continent":"K35","ID":44568,"Name":"AAA","PlayerID":1006847,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44568","ServerKey":"pl181","X":540,"Y":303},{"Bonus":0,"Continent":"K63","ID":44570,"Name":"143","PlayerID":849099876,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44570","ServerKey":"pl181","X":398,"Y":683},{"Bonus":0,"Continent":"K66","ID":44571,"Name":"015 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44571","ServerKey":"pl181","X":605,"Y":682},{"Bonus":0,"Continent":"K52","ID":44572,"Name":"Arczi997 04","PlayerID":849055181,"Points":2221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44572","ServerKey":"pl181","X":296,"Y":515},{"Bonus":0,"Continent":"K64","ID":44573,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44573","ServerKey":"pl181","X":425,"Y":690},{"Bonus":0,"Continent":"K74","ID":44574,"Name":"FP005","PlayerID":699605333,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44574","ServerKey":"pl181","X":495,"Y":703},{"Bonus":0,"Continent":"K75","ID":44575,"Name":"030 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44575","ServerKey":"pl181","X":513,"Y":702},{"Bonus":0,"Continent":"K47","ID":44576,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44576","ServerKey":"pl181","X":701,"Y":488},{"Bonus":0,"Continent":"K33","ID":44577,"Name":"015","PlayerID":8153941,"Points":6672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44577","ServerKey":"pl181","X":396,"Y":327},{"Bonus":0,"Continent":"K53","ID":44578,"Name":"chata Toma","PlayerID":699265922,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44578","ServerKey":"pl181","X":380,"Y":503},{"Bonus":0,"Continent":"K63","ID":44579,"Name":"O044","PlayerID":272173,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44579","ServerKey":"pl181","X":340,"Y":624},{"Bonus":0,"Continent":"K64","ID":44580,"Name":"0043 Qukaqu","PlayerID":849037407,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44580","ServerKey":"pl181","X":446,"Y":698},{"Bonus":0,"Continent":"K36","ID":44581,"Name":"061-Mroczna Osada","PlayerID":849035905,"Points":2414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44581","ServerKey":"pl181","X":653,"Y":360},{"Bonus":0,"Continent":"K33","ID":44582,"Name":"0086","PlayerID":848913037,"Points":5787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44582","ServerKey":"pl181","X":364,"Y":339},{"Bonus":0,"Continent":"K56","ID":44583,"Name":"TWIERDZA .:063:.","PlayerID":7154207,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44583","ServerKey":"pl181","X":696,"Y":570},{"Bonus":0,"Continent":"K43","ID":44584,"Name":"Wioska andrux","PlayerID":6186491,"Points":7715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44584","ServerKey":"pl181","X":380,"Y":404},{"Bonus":0,"Continent":"K24","ID":44585,"Name":"ZapceƄ","PlayerID":699191455,"Points":6061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44585","ServerKey":"pl181","X":462,"Y":294},{"Bonus":0,"Continent":"K65","ID":44587,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":8568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44587","ServerKey":"pl181","X":573,"Y":690},{"Bonus":0,"Continent":"K66","ID":44588,"Name":"019 GĂłrrki Ze-ZbiĂłrki","PlayerID":849100994,"Points":6960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44588","ServerKey":"pl181","X":648,"Y":647},{"Bonus":0,"Continent":"K64","ID":44589,"Name":"033","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44589","ServerKey":"pl181","X":403,"Y":680},{"Bonus":0,"Continent":"K34","ID":44590,"Name":"048.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44590","ServerKey":"pl181","X":439,"Y":305},{"Bonus":0,"Continent":"K35","ID":44591,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44591","ServerKey":"pl181","X":567,"Y":304},{"Bonus":0,"Continent":"K63","ID":44592,"Name":"O136","PlayerID":272173,"Points":6330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44592","ServerKey":"pl181","X":351,"Y":645},{"Bonus":0,"Continent":"K75","ID":44593,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44593","ServerKey":"pl181","X":506,"Y":703},{"Bonus":0,"Continent":"K66","ID":44594,"Name":"003","PlayerID":849101148,"Points":8273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44594","ServerKey":"pl181","X":645,"Y":653},{"Bonus":0,"Continent":"K42","ID":44595,"Name":"Wioska X07","PlayerID":698701911,"Points":2460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44595","ServerKey":"pl181","X":296,"Y":461},{"Bonus":0,"Continent":"K56","ID":44596,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":5387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44596","ServerKey":"pl181","X":697,"Y":540},{"Bonus":0,"Continent":"K57","ID":44597,"Name":"A07","PlayerID":848995478,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44597","ServerKey":"pl181","X":702,"Y":554},{"Bonus":0,"Continent":"K63","ID":44598,"Name":"C054","PlayerID":699383279,"Points":6971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44598","ServerKey":"pl181","X":373,"Y":659},{"Bonus":0,"Continent":"K74","ID":44599,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44599","ServerKey":"pl181","X":494,"Y":706},{"Bonus":0,"Continent":"K56","ID":44600,"Name":"S007","PlayerID":8428196,"Points":8225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44600","ServerKey":"pl181","X":679,"Y":597},{"Bonus":0,"Continent":"K24","ID":44601,"Name":"248...Gulden","PlayerID":6920960,"Points":7746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44601","ServerKey":"pl181","X":457,"Y":299},{"Bonus":0,"Continent":"K47","ID":44602,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":6977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44602","ServerKey":"pl181","X":708,"Y":486},{"Bonus":0,"Continent":"K25","ID":44604,"Name":"Koziarowo 2","PlayerID":849100228,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44604","ServerKey":"pl181","X":502,"Y":297},{"Bonus":0,"Continent":"K43","ID":44605,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44605","ServerKey":"pl181","X":324,"Y":400},{"Bonus":6,"Continent":"K66","ID":44607,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44607","ServerKey":"pl181","X":650,"Y":641},{"Bonus":0,"Continent":"K46","ID":44608,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44608","ServerKey":"pl181","X":686,"Y":410},{"Bonus":0,"Continent":"K65","ID":44609,"Name":"###091###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44609","ServerKey":"pl181","X":583,"Y":692},{"Bonus":0,"Continent":"K57","ID":44610,"Name":"=084= Oraibi","PlayerID":3781794,"Points":7626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44610","ServerKey":"pl181","X":700,"Y":570},{"Bonus":0,"Continent":"K66","ID":44611,"Name":"Zagroda4","PlayerID":6528152,"Points":8783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44611","ServerKey":"pl181","X":603,"Y":675},{"Bonus":0,"Continent":"K47","ID":44612,"Name":"A#008","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44612","ServerKey":"pl181","X":709,"Y":494},{"Bonus":0,"Continent":"K35","ID":44613,"Name":"AAA","PlayerID":1006847,"Points":8698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44613","ServerKey":"pl181","X":552,"Y":300},{"Bonus":7,"Continent":"K46","ID":44616,"Name":"Gattacka","PlayerID":699298370,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44616","ServerKey":"pl181","X":691,"Y":432},{"Bonus":0,"Continent":"K74","ID":44617,"Name":"079.","PlayerID":849034882,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44617","ServerKey":"pl181","X":458,"Y":700},{"Bonus":0,"Continent":"K64","ID":44618,"Name":"New World","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44618","ServerKey":"pl181","X":427,"Y":697},{"Bonus":0,"Continent":"K63","ID":44619,"Name":"013","PlayerID":698908184,"Points":7547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44619","ServerKey":"pl181","X":348,"Y":643},{"Bonus":0,"Continent":"K53","ID":44621,"Name":"000 Plutosea","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44621","ServerKey":"pl181","X":312,"Y":575},{"Bonus":0,"Continent":"K57","ID":44622,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":8410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44622","ServerKey":"pl181","X":710,"Y":504},{"Bonus":0,"Continent":"K57","ID":44623,"Name":"12.Kovir","PlayerID":8976313,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44623","ServerKey":"pl181","X":707,"Y":539},{"Bonus":0,"Continent":"K33","ID":44624,"Name":"Wow14","PlayerID":849027025,"Points":4639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44624","ServerKey":"pl181","X":361,"Y":349},{"Bonus":0,"Continent":"K57","ID":44625,"Name":"03. Nilfgaard","PlayerID":8976313,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44625","ServerKey":"pl181","X":701,"Y":539},{"Bonus":0,"Continent":"K74","ID":44626,"Name":"050.","PlayerID":699827112,"Points":10814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44626","ServerKey":"pl181","X":439,"Y":702},{"Bonus":0,"Continent":"K35","ID":44627,"Name":"K35 - [035] Before Land","PlayerID":699088769,"Points":6515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44627","ServerKey":"pl181","X":583,"Y":306},{"Bonus":0,"Continent":"K75","ID":44628,"Name":"DALEKO","PlayerID":699827112,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44628","ServerKey":"pl181","X":533,"Y":703},{"Bonus":0,"Continent":"K52","ID":44629,"Name":"026","PlayerID":849098688,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44629","ServerKey":"pl181","X":299,"Y":567},{"Bonus":0,"Continent":"K75","ID":44630,"Name":"084 invidia","PlayerID":849093426,"Points":5059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44630","ServerKey":"pl181","X":516,"Y":704},{"Bonus":0,"Continent":"K66","ID":44631,"Name":"Wioska Strojgniew","PlayerID":1049851,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44631","ServerKey":"pl181","X":670,"Y":622},{"Bonus":0,"Continent":"K42","ID":44632,"Name":"Kagusiowo 4","PlayerID":849101268,"Points":4888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44632","ServerKey":"pl181","X":298,"Y":442},{"Bonus":0,"Continent":"K66","ID":44633,"Name":"022 GĂłry","PlayerID":849100994,"Points":4091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44633","ServerKey":"pl181","X":653,"Y":645},{"Bonus":0,"Continent":"K66","ID":44634,"Name":"Wioska 021","PlayerID":7999103,"Points":7573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44634","ServerKey":"pl181","X":674,"Y":609},{"Bonus":0,"Continent":"K47","ID":44635,"Name":"031.","PlayerID":849094609,"Points":9406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44635","ServerKey":"pl181","X":701,"Y":464},{"Bonus":5,"Continent":"K36","ID":44636,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44636","ServerKey":"pl181","X":605,"Y":320},{"Bonus":0,"Continent":"K43","ID":44637,"Name":"Wioska Totomoose","PlayerID":849100744,"Points":4694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44637","ServerKey":"pl181","X":314,"Y":415},{"Bonus":0,"Continent":"K74","ID":44638,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44638","ServerKey":"pl181","X":435,"Y":701},{"Bonus":0,"Continent":"K56","ID":44639,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":3723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44639","ServerKey":"pl181","X":691,"Y":570},{"Bonus":0,"Continent":"K66","ID":44640,"Name":"S029","PlayerID":8428196,"Points":3605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44640","ServerKey":"pl181","X":684,"Y":601},{"Bonus":0,"Continent":"K66","ID":44641,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":7274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44641","ServerKey":"pl181","X":621,"Y":662},{"Bonus":0,"Continent":"K35","ID":44643,"Name":"XXXX","PlayerID":849054951,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44643","ServerKey":"pl181","X":562,"Y":302},{"Bonus":0,"Continent":"K25","ID":44644,"Name":"North 009","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44644","ServerKey":"pl181","X":505,"Y":290},{"Bonus":0,"Continent":"K36","ID":44645,"Name":"XDX","PlayerID":699098531,"Points":8374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44645","ServerKey":"pl181","X":610,"Y":320},{"Bonus":0,"Continent":"K65","ID":44646,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44646","ServerKey":"pl181","X":573,"Y":689},{"Bonus":0,"Continent":"K65","ID":44647,"Name":"###005###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44647","ServerKey":"pl181","X":587,"Y":687},{"Bonus":0,"Continent":"K57","ID":44648,"Name":"ROZWOD GAME OER","PlayerID":1895081,"Points":3730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44648","ServerKey":"pl181","X":704,"Y":526},{"Bonus":0,"Continent":"K45","ID":44649,"Name":"WesoƂych ƚwiąt","PlayerID":699368887,"Points":7903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44649","ServerKey":"pl181","X":585,"Y":434},{"Bonus":0,"Continent":"K52","ID":44650,"Name":"EO EO","PlayerID":699697558,"Points":7342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44650","ServerKey":"pl181","X":295,"Y":513},{"Bonus":4,"Continent":"K56","ID":44651,"Name":"A09","PlayerID":848995478,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44651","ServerKey":"pl181","X":694,"Y":561},{"Bonus":0,"Continent":"K24","ID":44652,"Name":"K24 - [003] Before Land","PlayerID":699088769,"Points":7549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44652","ServerKey":"pl181","X":467,"Y":299},{"Bonus":0,"Continent":"K35","ID":44653,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44653","ServerKey":"pl181","X":569,"Y":304},{"Bonus":0,"Continent":"K66","ID":44654,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44654","ServerKey":"pl181","X":661,"Y":626},{"Bonus":0,"Continent":"K25","ID":44655,"Name":"AAA","PlayerID":1006847,"Points":8094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44655","ServerKey":"pl181","X":536,"Y":297},{"Bonus":0,"Continent":"K33","ID":44656,"Name":"Gondor","PlayerID":849027025,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44656","ServerKey":"pl181","X":365,"Y":346},{"Bonus":0,"Continent":"K35","ID":44657,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44657","ServerKey":"pl181","X":574,"Y":306},{"Bonus":0,"Continent":"K53","ID":44658,"Name":"Początek","PlayerID":7842579,"Points":8806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44658","ServerKey":"pl181","X":304,"Y":580},{"Bonus":0,"Continent":"K57","ID":44659,"Name":"aaaaWioska barbarzyƄska","PlayerID":7047342,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44659","ServerKey":"pl181","X":705,"Y":524},{"Bonus":0,"Continent":"K36","ID":44660,"Name":"XDX","PlayerID":699098531,"Points":9093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44660","ServerKey":"pl181","X":628,"Y":336},{"Bonus":0,"Continent":"K63","ID":44661,"Name":"152","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44661","ServerKey":"pl181","X":397,"Y":685},{"Bonus":0,"Continent":"K42","ID":44662,"Name":"Wioska X09","PlayerID":698701911,"Points":1970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44662","ServerKey":"pl181","X":296,"Y":468},{"Bonus":0,"Continent":"K63","ID":44663,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44663","ServerKey":"pl181","X":371,"Y":658},{"Bonus":0,"Continent":"K64","ID":44664,"Name":"032 Neunreuth","PlayerID":699834004,"Points":3967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44664","ServerKey":"pl181","X":463,"Y":698},{"Bonus":0,"Continent":"K42","ID":44665,"Name":"14 barbarzyƄska..","PlayerID":849018442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44665","ServerKey":"pl181","X":296,"Y":447},{"Bonus":0,"Continent":"K66","ID":44666,"Name":"022.","PlayerID":699695167,"Points":5068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44666","ServerKey":"pl181","X":624,"Y":668},{"Bonus":0,"Continent":"K65","ID":44667,"Name":"Adamo 6","PlayerID":849096768,"Points":6600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44667","ServerKey":"pl181","X":585,"Y":693},{"Bonus":0,"Continent":"K43","ID":44668,"Name":"Dzik 12","PlayerID":8366045,"Points":6192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44668","ServerKey":"pl181","X":300,"Y":431},{"Bonus":0,"Continent":"K74","ID":44669,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44669","ServerKey":"pl181","X":496,"Y":706},{"Bonus":0,"Continent":"K34","ID":44670,"Name":"221","PlayerID":698365960,"Points":5502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44670","ServerKey":"pl181","X":424,"Y":306},{"Bonus":0,"Continent":"K56","ID":44672,"Name":"046. Jannu","PlayerID":1601917,"Points":7712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44672","ServerKey":"pl181","X":699,"Y":554},{"Bonus":0,"Continent":"K66","ID":44674,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44674","ServerKey":"pl181","X":665,"Y":626},{"Bonus":0,"Continent":"K34","ID":44675,"Name":"#0226 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44675","ServerKey":"pl181","X":447,"Y":302},{"Bonus":0,"Continent":"K57","ID":44676,"Name":"0107","PlayerID":699429153,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44676","ServerKey":"pl181","X":706,"Y":504},{"Bonus":0,"Continent":"K33","ID":44677,"Name":"New Land 27","PlayerID":849064752,"Points":2162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44677","ServerKey":"pl181","X":322,"Y":391},{"Bonus":0,"Continent":"K33","ID":44678,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":3096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44678","ServerKey":"pl181","X":335,"Y":376},{"Bonus":5,"Continent":"K63","ID":44679,"Name":"Taran","PlayerID":6180190,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44679","ServerKey":"pl181","X":329,"Y":622},{"Bonus":0,"Continent":"K47","ID":44680,"Name":"Wioska barbarzyƄska","PlayerID":8925695,"Points":2345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44680","ServerKey":"pl181","X":710,"Y":477},{"Bonus":0,"Continent":"K63","ID":44681,"Name":"D007","PlayerID":272173,"Points":9004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44681","ServerKey":"pl181","X":354,"Y":645},{"Bonus":0,"Continent":"K33","ID":44682,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":1980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44682","ServerKey":"pl181","X":334,"Y":378},{"Bonus":9,"Continent":"K57","ID":44683,"Name":"=076= B*030*","PlayerID":3781794,"Points":7414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44683","ServerKey":"pl181","X":701,"Y":564},{"Bonus":0,"Continent":"K36","ID":44684,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44684","ServerKey":"pl181","X":618,"Y":334},{"Bonus":6,"Continent":"K35","ID":44685,"Name":"K35 - [002] Before Land","PlayerID":699088769,"Points":10016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44685","ServerKey":"pl181","X":584,"Y":311},{"Bonus":0,"Continent":"K34","ID":44686,"Name":"007.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44686","ServerKey":"pl181","X":435,"Y":302},{"Bonus":0,"Continent":"K47","ID":44687,"Name":"C.018","PlayerID":9188016,"Points":7393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44687","ServerKey":"pl181","X":703,"Y":480},{"Bonus":0,"Continent":"K57","ID":44688,"Name":"066 ZieloneOczko2","PlayerID":2135129,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44688","ServerKey":"pl181","X":705,"Y":513},{"Bonus":0,"Continent":"K56","ID":44689,"Name":"EE 014","PlayerID":849100149,"Points":2201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44689","ServerKey":"pl181","X":699,"Y":571},{"Bonus":0,"Continent":"K36","ID":44690,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44690","ServerKey":"pl181","X":682,"Y":396},{"Bonus":0,"Continent":"K75","ID":44691,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44691","ServerKey":"pl181","X":561,"Y":703},{"Bonus":0,"Continent":"K66","ID":44692,"Name":"a10","PlayerID":848921861,"Points":4803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44692","ServerKey":"pl181","X":677,"Y":612},{"Bonus":0,"Continent":"K75","ID":44693,"Name":"010 zadupie","PlayerID":6116940,"Points":6422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44693","ServerKey":"pl181","X":534,"Y":708},{"Bonus":0,"Continent":"K75","ID":44694,"Name":"#K75 0027","PlayerID":699728159,"Points":5493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44694","ServerKey":"pl181","X":516,"Y":709},{"Bonus":0,"Continent":"K33","ID":44695,"Name":"Z 0004","PlayerID":3909522,"Points":10212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44695","ServerKey":"pl181","X":346,"Y":359},{"Bonus":0,"Continent":"K56","ID":44696,"Name":"S015","PlayerID":8428196,"Points":5566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44696","ServerKey":"pl181","X":684,"Y":594},{"Bonus":0,"Continent":"K53","ID":44697,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":3576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44697","ServerKey":"pl181","X":306,"Y":557},{"Bonus":0,"Continent":"K56","ID":44698,"Name":"matey","PlayerID":848977203,"Points":6747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44698","ServerKey":"pl181","X":693,"Y":562},{"Bonus":0,"Continent":"K57","ID":44699,"Name":"017","PlayerID":699150527,"Points":6380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44699","ServerKey":"pl181","X":708,"Y":507},{"Bonus":0,"Continent":"K35","ID":44700,"Name":"K35 - [032] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44700","ServerKey":"pl181","X":590,"Y":318},{"Bonus":0,"Continent":"K57","ID":44701,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":9677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44701","ServerKey":"pl181","X":703,"Y":522},{"Bonus":0,"Continent":"K36","ID":44702,"Name":"XDX","PlayerID":699098531,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44702","ServerKey":"pl181","X":606,"Y":328},{"Bonus":0,"Continent":"K66","ID":44703,"Name":"Wioska barbarzyƄska","PlayerID":849048867,"Points":1357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44703","ServerKey":"pl181","X":667,"Y":617},{"Bonus":0,"Continent":"K35","ID":44704,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44704","ServerKey":"pl181","X":587,"Y":313},{"Bonus":0,"Continent":"K64","ID":44705,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":5550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44705","ServerKey":"pl181","X":418,"Y":657},{"Bonus":0,"Continent":"K24","ID":44706,"Name":"#0054 geryk","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44706","ServerKey":"pl181","X":464,"Y":292},{"Bonus":0,"Continent":"K33","ID":44707,"Name":"Wioska barbarzyƄska","PlayerID":699796330,"Points":2224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44707","ServerKey":"pl181","X":362,"Y":347},{"Bonus":0,"Continent":"K57","ID":44708,"Name":"055","PlayerID":7085502,"Points":6277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44708","ServerKey":"pl181","X":710,"Y":514},{"Bonus":0,"Continent":"K64","ID":44709,"Name":"New World","PlayerID":698152377,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44709","ServerKey":"pl181","X":446,"Y":694},{"Bonus":0,"Continent":"K74","ID":44710,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44710","ServerKey":"pl181","X":498,"Y":705},{"Bonus":0,"Continent":"K42","ID":44711,"Name":"pppppiwko","PlayerID":848889556,"Points":6919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44711","ServerKey":"pl181","X":293,"Y":473},{"Bonus":0,"Continent":"K56","ID":44712,"Name":"Taran 008","PlayerID":698562644,"Points":8442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44712","ServerKey":"pl181","X":626,"Y":525},{"Bonus":0,"Continent":"K46","ID":44713,"Name":"29.BLACKPINK","PlayerID":9180206,"Points":4402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44713","ServerKey":"pl181","X":692,"Y":419},{"Bonus":0,"Continent":"K43","ID":44715,"Name":"FENDI","PlayerID":699794765,"Points":5464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44715","ServerKey":"pl181","X":300,"Y":464},{"Bonus":0,"Continent":"K53","ID":44716,"Name":"C0178","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44716","ServerKey":"pl181","X":301,"Y":529},{"Bonus":0,"Continent":"K74","ID":44717,"Name":"013. Night Raid","PlayerID":699684062,"Points":8984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44717","ServerKey":"pl181","X":492,"Y":708},{"Bonus":7,"Continent":"K46","ID":44718,"Name":"Osada koczownikĂłw","PlayerID":699598425,"Points":7011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44718","ServerKey":"pl181","X":690,"Y":414},{"Bonus":0,"Continent":"K63","ID":44719,"Name":"kraina mlekiem i miodem pƂynąca","PlayerID":849100760,"Points":949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44719","ServerKey":"pl181","X":367,"Y":659},{"Bonus":0,"Continent":"K42","ID":44720,"Name":"Zielony 3","PlayerID":699876746,"Points":3201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44720","ServerKey":"pl181","X":295,"Y":451},{"Bonus":0,"Continent":"K36","ID":44721,"Name":"Nestville","PlayerID":849062920,"Points":4151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44721","ServerKey":"pl181","X":625,"Y":341},{"Bonus":0,"Continent":"K63","ID":44722,"Name":"eee","PlayerID":699269923,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44722","ServerKey":"pl181","X":367,"Y":658},{"Bonus":0,"Continent":"K42","ID":44723,"Name":"Dream on","PlayerID":698962117,"Points":8738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44723","ServerKey":"pl181","X":298,"Y":485},{"Bonus":0,"Continent":"K33","ID":44724,"Name":"Wow19","PlayerID":699730714,"Points":2363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44724","ServerKey":"pl181","X":363,"Y":352},{"Bonus":0,"Continent":"K42","ID":44725,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44725","ServerKey":"pl181","X":294,"Y":451},{"Bonus":1,"Continent":"K35","ID":44726,"Name":"AAA","PlayerID":1006847,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44726","ServerKey":"pl181","X":540,"Y":300},{"Bonus":0,"Continent":"K36","ID":44727,"Name":"Na KraƄcu ƚwiata 020","PlayerID":9291984,"Points":4183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44727","ServerKey":"pl181","X":642,"Y":343},{"Bonus":0,"Continent":"K56","ID":44728,"Name":"116. Bagba","PlayerID":8337151,"Points":6788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44728","ServerKey":"pl181","X":634,"Y":596},{"Bonus":0,"Continent":"K24","ID":44729,"Name":"????","PlayerID":698489071,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44729","ServerKey":"pl181","X":469,"Y":299},{"Bonus":0,"Continent":"K47","ID":44730,"Name":"A#028","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44730","ServerKey":"pl181","X":708,"Y":489},{"Bonus":0,"Continent":"K52","ID":44731,"Name":"Wioska barbarzyƄska","PlayerID":7530708,"Points":3162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44731","ServerKey":"pl181","X":296,"Y":518},{"Bonus":0,"Continent":"K33","ID":44732,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44732","ServerKey":"pl181","X":382,"Y":330},{"Bonus":0,"Continent":"K33","ID":44733,"Name":"0065","PlayerID":848913037,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44733","ServerKey":"pl181","X":370,"Y":335},{"Bonus":0,"Continent":"K57","ID":44734,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44734","ServerKey":"pl181","X":710,"Y":506},{"Bonus":0,"Continent":"K57","ID":44735,"Name":"21. Verden","PlayerID":8976313,"Points":8293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44735","ServerKey":"pl181","X":700,"Y":535},{"Bonus":0,"Continent":"K65","ID":44736,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":8372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44736","ServerKey":"pl181","X":574,"Y":698},{"Bonus":0,"Continent":"K63","ID":44737,"Name":"Marco","PlayerID":699269923,"Points":7349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44737","ServerKey":"pl181","X":382,"Y":668},{"Bonus":0,"Continent":"K42","ID":44738,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44738","ServerKey":"pl181","X":298,"Y":447},{"Bonus":0,"Continent":"K74","ID":44740,"Name":"Kurnik","PlayerID":699603116,"Points":8131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44740","ServerKey":"pl181","X":476,"Y":707},{"Bonus":1,"Continent":"K46","ID":44741,"Name":"Osada 1","PlayerID":8675636,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44741","ServerKey":"pl181","X":693,"Y":425},{"Bonus":0,"Continent":"K75","ID":44742,"Name":"053 invidia","PlayerID":849093426,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44742","ServerKey":"pl181","X":511,"Y":710},{"Bonus":0,"Continent":"K24","ID":44743,"Name":"????","PlayerID":698489071,"Points":11678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44743","ServerKey":"pl181","X":468,"Y":292},{"Bonus":0,"Continent":"K65","ID":44744,"Name":"###036###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44744","ServerKey":"pl181","X":590,"Y":689},{"Bonus":0,"Continent":"K33","ID":44745,"Name":"*211*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44745","ServerKey":"pl181","X":332,"Y":382},{"Bonus":0,"Continent":"K63","ID":44746,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44746","ServerKey":"pl181","X":326,"Y":612},{"Bonus":0,"Continent":"K66","ID":44748,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44748","ServerKey":"pl181","X":648,"Y":638},{"Bonus":0,"Continent":"K42","ID":44749,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44749","ServerKey":"pl181","X":299,"Y":457},{"Bonus":0,"Continent":"K56","ID":44750,"Name":"037. Himalchuli","PlayerID":1601917,"Points":8705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44750","ServerKey":"pl181","X":699,"Y":553},{"Bonus":6,"Continent":"K36","ID":44751,"Name":"063- Mroczna Osada","PlayerID":849035905,"Points":10703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44751","ServerKey":"pl181","X":617,"Y":332},{"Bonus":0,"Continent":"K34","ID":44752,"Name":"ElMajkelos I","PlayerID":849085160,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44752","ServerKey":"pl181","X":413,"Y":307},{"Bonus":0,"Continent":"K42","ID":44753,"Name":"Wioska barbarzyƄska","PlayerID":2893211,"Points":396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44753","ServerKey":"pl181","X":291,"Y":474},{"Bonus":0,"Continent":"K35","ID":44754,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44754","ServerKey":"pl181","X":561,"Y":302},{"Bonus":0,"Continent":"K35","ID":44755,"Name":"XDX","PlayerID":699098531,"Points":9834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44755","ServerKey":"pl181","X":598,"Y":316},{"Bonus":0,"Continent":"K42","ID":44756,"Name":"56 ggggg","PlayerID":849018442,"Points":8531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44756","ServerKey":"pl181","X":295,"Y":473},{"Bonus":0,"Continent":"K65","ID":44757,"Name":"PakosƂaw","PlayerID":698723158,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44757","ServerKey":"pl181","X":566,"Y":698},{"Bonus":0,"Continent":"K53","ID":44758,"Name":"004","PlayerID":849098688,"Points":7799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44758","ServerKey":"pl181","X":300,"Y":548},{"Bonus":0,"Continent":"K64","ID":44759,"Name":"0004 Wioska barbarzyƄska","PlayerID":849037407,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44759","ServerKey":"pl181","X":440,"Y":696},{"Bonus":0,"Continent":"K75","ID":44761,"Name":"028 invidia","PlayerID":849093426,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44761","ServerKey":"pl181","X":521,"Y":704},{"Bonus":0,"Continent":"K55","ID":44762,"Name":"PYRLANDIA 039","PlayerID":33900,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44762","ServerKey":"pl181","X":564,"Y":574},{"Bonus":0,"Continent":"K42","ID":44763,"Name":"EO EO","PlayerID":699697558,"Points":8431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44763","ServerKey":"pl181","X":292,"Y":498},{"Bonus":0,"Continent":"K52","ID":44764,"Name":"Wioska czarna perƂa","PlayerID":8369657,"Points":1175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44764","ServerKey":"pl181","X":289,"Y":506},{"Bonus":0,"Continent":"K74","ID":44765,"Name":"Kurnik","PlayerID":699603116,"Points":6365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44765","ServerKey":"pl181","X":469,"Y":706},{"Bonus":0,"Continent":"K36","ID":44766,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":2987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44766","ServerKey":"pl181","X":633,"Y":345},{"Bonus":0,"Continent":"K33","ID":44767,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":7750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44767","ServerKey":"pl181","X":369,"Y":342},{"Bonus":0,"Continent":"K66","ID":44768,"Name":"Wygwizdowa 007","PlayerID":698562644,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44768","ServerKey":"pl181","X":643,"Y":651},{"Bonus":0,"Continent":"K33","ID":44769,"Name":"=0012=","PlayerID":698231772,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44769","ServerKey":"pl181","X":399,"Y":318},{"Bonus":0,"Continent":"K46","ID":44770,"Name":"W23","PlayerID":699524362,"Points":1773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44770","ServerKey":"pl181","X":686,"Y":415},{"Bonus":0,"Continent":"K36","ID":44772,"Name":"!36 65 Dragomirna","PlayerID":698361257,"Points":6776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44772","ServerKey":"pl181","X":657,"Y":364},{"Bonus":0,"Continent":"K24","ID":44773,"Name":"[0128]","PlayerID":8630972,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44773","ServerKey":"pl181","X":456,"Y":296},{"Bonus":0,"Continent":"K25","ID":44774,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44774","ServerKey":"pl181","X":516,"Y":295},{"Bonus":0,"Continent":"K66","ID":44775,"Name":"sebastianxxx19","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44775","ServerKey":"pl181","X":624,"Y":667},{"Bonus":0,"Continent":"K57","ID":44776,"Name":"Wioska bruno 60","PlayerID":3647086,"Points":7100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44776","ServerKey":"pl181","X":711,"Y":512},{"Bonus":0,"Continent":"K52","ID":44777,"Name":"Arczi997 03","PlayerID":849055181,"Points":3407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44777","ServerKey":"pl181","X":296,"Y":516},{"Bonus":0,"Continent":"K35","ID":44778,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44778","ServerKey":"pl181","X":586,"Y":316},{"Bonus":0,"Continent":"K43","ID":44779,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44779","ServerKey":"pl181","X":321,"Y":400},{"Bonus":0,"Continent":"K35","ID":44780,"Name":"XDX","PlayerID":699098531,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44780","ServerKey":"pl181","X":596,"Y":315},{"Bonus":1,"Continent":"K64","ID":44781,"Name":"1.06","PlayerID":699827112,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44781","ServerKey":"pl181","X":436,"Y":699},{"Bonus":0,"Continent":"K36","ID":44782,"Name":"Aaaaaa","PlayerID":698420691,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44782","ServerKey":"pl181","X":611,"Y":355},{"Bonus":0,"Continent":"K63","ID":44783,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44783","ServerKey":"pl181","X":320,"Y":609},{"Bonus":0,"Continent":"K74","ID":44784,"Name":"031# Arianna","PlayerID":3933666,"Points":7456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44784","ServerKey":"pl181","X":465,"Y":709},{"Bonus":0,"Continent":"K47","ID":44785,"Name":"067. Wioska barbarzyƄska","PlayerID":7494497,"Points":7993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44785","ServerKey":"pl181","X":703,"Y":472},{"Bonus":0,"Continent":"K46","ID":44786,"Name":"19. Ottawa","PlayerID":699804790,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44786","ServerKey":"pl181","X":686,"Y":480},{"Bonus":0,"Continent":"K34","ID":44787,"Name":"031.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44787","ServerKey":"pl181","X":434,"Y":302},{"Bonus":0,"Continent":"K36","ID":44789,"Name":"Wioska barbarzyƄska","PlayerID":8842936,"Points":4842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44789","ServerKey":"pl181","X":619,"Y":336},{"Bonus":0,"Continent":"K36","ID":44790,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":6513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44790","ServerKey":"pl181","X":676,"Y":399},{"Bonus":0,"Continent":"K43","ID":44791,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44791","ServerKey":"pl181","X":323,"Y":401},{"Bonus":0,"Continent":"K63","ID":44792,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44792","ServerKey":"pl181","X":375,"Y":668},{"Bonus":0,"Continent":"K36","ID":44793,"Name":"[196]","PlayerID":8000875,"Points":4211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44793","ServerKey":"pl181","X":675,"Y":388},{"Bonus":0,"Continent":"K74","ID":44794,"Name":"0053 Wioska barbarzyƄska","PlayerID":849037407,"Points":5229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44794","ServerKey":"pl181","X":448,"Y":703},{"Bonus":8,"Continent":"K74","ID":44795,"Name":"A000","PlayerID":699725436,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44795","ServerKey":"pl181","X":461,"Y":705},{"Bonus":0,"Continent":"K53","ID":44796,"Name":"Elo elo 13","PlayerID":699016994,"Points":5137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44796","ServerKey":"pl181","X":305,"Y":581},{"Bonus":0,"Continent":"K74","ID":44797,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":4523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44797","ServerKey":"pl181","X":497,"Y":706},{"Bonus":0,"Continent":"K75","ID":44799,"Name":"044 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44799","ServerKey":"pl181","X":516,"Y":708},{"Bonus":0,"Continent":"K57","ID":44800,"Name":"10. Cintra","PlayerID":8976313,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44800","ServerKey":"pl181","X":706,"Y":544},{"Bonus":0,"Continent":"K33","ID":44801,"Name":"Zaplecze barba 2","PlayerID":699796330,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44801","ServerKey":"pl181","X":375,"Y":330},{"Bonus":0,"Continent":"K36","ID":44802,"Name":"Zadupie","PlayerID":7340529,"Points":7851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44802","ServerKey":"pl181","X":646,"Y":359},{"Bonus":0,"Continent":"K24","ID":44803,"Name":"247...Kaban1998","PlayerID":6920960,"Points":4975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44803","ServerKey":"pl181","X":459,"Y":296},{"Bonus":0,"Continent":"K52","ID":44804,"Name":"C0209","PlayerID":8841266,"Points":7604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44804","ServerKey":"pl181","X":296,"Y":529},{"Bonus":0,"Continent":"K36","ID":44805,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44805","ServerKey":"pl181","X":653,"Y":359},{"Bonus":0,"Continent":"K57","ID":44806,"Name":"012","PlayerID":7418168,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44806","ServerKey":"pl181","X":702,"Y":509},{"Bonus":0,"Continent":"K56","ID":44808,"Name":"A11","PlayerID":848995478,"Points":5386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44808","ServerKey":"pl181","X":696,"Y":555},{"Bonus":0,"Continent":"K75","ID":44809,"Name":"027 zadupie","PlayerID":6116940,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44809","ServerKey":"pl181","X":529,"Y":701},{"Bonus":0,"Continent":"K34","ID":44810,"Name":"[0299]","PlayerID":8630972,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44810","ServerKey":"pl181","X":430,"Y":304},{"Bonus":0,"Continent":"K33","ID":44811,"Name":"Zaplecze Barba 010","PlayerID":699796330,"Points":9311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44811","ServerKey":"pl181","X":372,"Y":334},{"Bonus":0,"Continent":"K34","ID":44812,"Name":"=0003=","PlayerID":698231772,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44812","ServerKey":"pl181","X":403,"Y":320},{"Bonus":0,"Continent":"K64","ID":44813,"Name":"182","PlayerID":849099876,"Points":4544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44813","ServerKey":"pl181","X":416,"Y":694},{"Bonus":0,"Continent":"K47","ID":44814,"Name":"087 Twierdza","PlayerID":2135129,"Points":4622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44814","ServerKey":"pl181","X":709,"Y":468},{"Bonus":0,"Continent":"K36","ID":44815,"Name":"XDX","PlayerID":699098531,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44815","ServerKey":"pl181","X":613,"Y":333},{"Bonus":0,"Continent":"K75","ID":44816,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44816","ServerKey":"pl181","X":560,"Y":703},{"Bonus":0,"Continent":"K35","ID":44817,"Name":"--001--","PlayerID":542253,"Points":10769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44817","ServerKey":"pl181","X":569,"Y":302},{"Bonus":0,"Continent":"K63","ID":44818,"Name":"D.036","PlayerID":849088243,"Points":2626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44818","ServerKey":"pl181","X":380,"Y":671},{"Bonus":1,"Continent":"K66","ID":44819,"Name":"przejecia","PlayerID":6818593,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44819","ServerKey":"pl181","X":614,"Y":673},{"Bonus":0,"Continent":"K25","ID":44820,"Name":"015 ZO","PlayerID":699208929,"Points":6423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44820","ServerKey":"pl181","X":526,"Y":293},{"Bonus":0,"Continent":"K74","ID":44821,"Name":"FP026","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44821","ServerKey":"pl181","X":473,"Y":702},{"Bonus":0,"Continent":"K33","ID":44822,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44822","ServerKey":"pl181","X":390,"Y":329},{"Bonus":0,"Continent":"K66","ID":44823,"Name":"181..","PlayerID":699039013,"Points":4962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44823","ServerKey":"pl181","X":651,"Y":647},{"Bonus":0,"Continent":"K24","ID":44824,"Name":".achim.","PlayerID":6936607,"Points":6978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44824","ServerKey":"pl181","X":474,"Y":297},{"Bonus":0,"Continent":"K53","ID":44825,"Name":"C0260","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44825","ServerKey":"pl181","X":302,"Y":547},{"Bonus":0,"Continent":"K53","ID":44826,"Name":"Wioska Majsmen","PlayerID":7333216,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44826","ServerKey":"pl181","X":348,"Y":566},{"Bonus":0,"Continent":"K63","ID":44827,"Name":"O055","PlayerID":272173,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44827","ServerKey":"pl181","X":333,"Y":624},{"Bonus":1,"Continent":"K34","ID":44828,"Name":"200","PlayerID":8630972,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44828","ServerKey":"pl181","X":429,"Y":304},{"Bonus":0,"Continent":"K47","ID":44829,"Name":"12 Maszynowa","PlayerID":849101845,"Points":9661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44829","ServerKey":"pl181","X":705,"Y":445},{"Bonus":0,"Continent":"K47","ID":44830,"Name":"B008 Gilead","PlayerID":113796,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44830","ServerKey":"pl181","X":705,"Y":466},{"Bonus":0,"Continent":"K66","ID":44831,"Name":"S002","PlayerID":8627359,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44831","ServerKey":"pl181","X":603,"Y":676},{"Bonus":0,"Continent":"K34","ID":44832,"Name":"=0013=","PlayerID":698231772,"Points":9839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44832","ServerKey":"pl181","X":401,"Y":320},{"Bonus":0,"Continent":"K46","ID":44833,"Name":"Ciagle pada","PlayerID":699785935,"Points":5272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44833","ServerKey":"pl181","X":684,"Y":400},{"Bonus":0,"Continent":"K33","ID":44834,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44834","ServerKey":"pl181","X":337,"Y":369},{"Bonus":0,"Continent":"K56","ID":44835,"Name":"S009","PlayerID":8428196,"Points":7084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44835","ServerKey":"pl181","X":686,"Y":587},{"Bonus":0,"Continent":"K56","ID":44836,"Name":"Didek","PlayerID":849070946,"Points":3616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44836","ServerKey":"pl181","X":687,"Y":582},{"Bonus":0,"Continent":"K66","ID":44837,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44837","ServerKey":"pl181","X":621,"Y":671},{"Bonus":0,"Continent":"K63","ID":44838,"Name":"TUTAJ NA PEWNO PRZETRWAM","PlayerID":848913998,"Points":7157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44838","ServerKey":"pl181","X":378,"Y":666},{"Bonus":0,"Continent":"K36","ID":44839,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44839","ServerKey":"pl181","X":640,"Y":337},{"Bonus":0,"Continent":"K43","ID":44840,"Name":"Grubasy 2","PlayerID":634848,"Points":8557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44840","ServerKey":"pl181","X":300,"Y":449},{"Bonus":2,"Continent":"K66","ID":44841,"Name":"004. GĂłrki Niezbyt Wielkie","PlayerID":849100994,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44841","ServerKey":"pl181","X":655,"Y":641},{"Bonus":0,"Continent":"K36","ID":44842,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":2497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44842","ServerKey":"pl181","X":634,"Y":336},{"Bonus":0,"Continent":"K46","ID":44843,"Name":"I109","PlayerID":699722599,"Points":6477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44843","ServerKey":"pl181","X":698,"Y":449},{"Bonus":0,"Continent":"K36","ID":44844,"Name":"King","PlayerID":849100782,"Points":4655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44844","ServerKey":"pl181","X":634,"Y":339},{"Bonus":0,"Continent":"K25","ID":44845,"Name":"008","PlayerID":699208929,"Points":10099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44845","ServerKey":"pl181","X":530,"Y":292},{"Bonus":0,"Continent":"K36","ID":44846,"Name":"028","PlayerID":9148043,"Points":4082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44846","ServerKey":"pl181","X":640,"Y":348},{"Bonus":0,"Continent":"K75","ID":44847,"Name":"050 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44847","ServerKey":"pl181","X":545,"Y":700},{"Bonus":0,"Continent":"K25","ID":44848,"Name":"North 010","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44848","ServerKey":"pl181","X":507,"Y":291},{"Bonus":0,"Continent":"K74","ID":44849,"Name":"Wioska barbarzyƄska","PlayerID":698178312,"Points":1809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44849","ServerKey":"pl181","X":454,"Y":705},{"Bonus":0,"Continent":"K35","ID":44850,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44850","ServerKey":"pl181","X":583,"Y":311},{"Bonus":0,"Continent":"K46","ID":44851,"Name":"Wioska 1","PlayerID":848935020,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44851","ServerKey":"pl181","X":635,"Y":481},{"Bonus":0,"Continent":"K66","ID":44852,"Name":"016","PlayerID":2323859,"Points":8128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44852","ServerKey":"pl181","X":657,"Y":643},{"Bonus":0,"Continent":"K47","ID":44853,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":6483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44853","ServerKey":"pl181","X":708,"Y":467},{"Bonus":0,"Continent":"K74","ID":44854,"Name":"0059","PlayerID":849037407,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44854","ServerKey":"pl181","X":452,"Y":702},{"Bonus":0,"Continent":"K24","ID":44855,"Name":"????","PlayerID":698489071,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44855","ServerKey":"pl181","X":475,"Y":291},{"Bonus":0,"Continent":"K66","ID":44857,"Name":"Wichura","PlayerID":2371436,"Points":6927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44857","ServerKey":"pl181","X":648,"Y":652},{"Bonus":0,"Continent":"K36","ID":44858,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":2671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44858","ServerKey":"pl181","X":643,"Y":349},{"Bonus":0,"Continent":"K46","ID":44859,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44859","ServerKey":"pl181","X":694,"Y":433},{"Bonus":0,"Continent":"K43","ID":44860,"Name":"*024 GAWRA*","PlayerID":2415972,"Points":5800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44860","ServerKey":"pl181","X":309,"Y":427},{"Bonus":0,"Continent":"K65","ID":44861,"Name":"#0089","PlayerID":1536231,"Points":3964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44861","ServerKey":"pl181","X":559,"Y":698},{"Bonus":7,"Continent":"K63","ID":44862,"Name":"029. Wioska barbarzyƄska","PlayerID":698908184,"Points":6567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44862","ServerKey":"pl181","X":347,"Y":641},{"Bonus":0,"Continent":"K66","ID":44863,"Name":"[197]","PlayerID":8000875,"Points":4343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44863","ServerKey":"pl181","X":677,"Y":603},{"Bonus":0,"Continent":"K66","ID":44864,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44864","ServerKey":"pl181","X":620,"Y":670},{"Bonus":0,"Continent":"K33","ID":44865,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44865","ServerKey":"pl181","X":382,"Y":324},{"Bonus":0,"Continent":"K52","ID":44866,"Name":"004 OstrĂłw Tumski","PlayerID":9235561,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44866","ServerKey":"pl181","X":293,"Y":527},{"Bonus":0,"Continent":"K53","ID":44867,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44867","ServerKey":"pl181","X":315,"Y":524},{"Bonus":0,"Continent":"K64","ID":44868,"Name":"New World","PlayerID":698152377,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44868","ServerKey":"pl181","X":434,"Y":693},{"Bonus":0,"Continent":"K34","ID":44869,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44869","ServerKey":"pl181","X":409,"Y":316},{"Bonus":0,"Continent":"K34","ID":44870,"Name":"@15@","PlayerID":699483429,"Points":4121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44870","ServerKey":"pl181","X":405,"Y":320},{"Bonus":0,"Continent":"K34","ID":44871,"Name":"Gondor","PlayerID":698231772,"Points":11898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44871","ServerKey":"pl181","X":410,"Y":313},{"Bonus":0,"Continent":"K33","ID":44872,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44872","ServerKey":"pl181","X":357,"Y":346},{"Bonus":0,"Continent":"K53","ID":44874,"Name":"Ave Why!","PlayerID":6180190,"Points":3720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44874","ServerKey":"pl181","X":313,"Y":586},{"Bonus":0,"Continent":"K57","ID":44875,"Name":"0109","PlayerID":699429153,"Points":9007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44875","ServerKey":"pl181","X":703,"Y":500},{"Bonus":0,"Continent":"K52","ID":44876,"Name":"C0133","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44876","ServerKey":"pl181","X":298,"Y":523},{"Bonus":0,"Continent":"K43","ID":44877,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":1203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44877","ServerKey":"pl181","X":304,"Y":449},{"Bonus":0,"Continent":"K75","ID":44878,"Name":"- 276 - SS","PlayerID":849018239,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44878","ServerKey":"pl181","X":555,"Y":701},{"Bonus":0,"Continent":"K56","ID":44879,"Name":"Didi","PlayerID":849070946,"Points":6848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44879","ServerKey":"pl181","X":688,"Y":593},{"Bonus":0,"Continent":"K66","ID":44880,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44880","ServerKey":"pl181","X":661,"Y":630},{"Bonus":0,"Continent":"K52","ID":44881,"Name":"C0220","PlayerID":8841266,"Points":7284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44881","ServerKey":"pl181","X":298,"Y":536},{"Bonus":0,"Continent":"K33","ID":44882,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":1584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44882","ServerKey":"pl181","X":330,"Y":376},{"Bonus":0,"Continent":"K34","ID":44883,"Name":"051","PlayerID":2502956,"Points":9237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44883","ServerKey":"pl181","X":452,"Y":302},{"Bonus":0,"Continent":"K66","ID":44884,"Name":"...05 am","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44884","ServerKey":"pl181","X":673,"Y":617},{"Bonus":0,"Continent":"K35","ID":44885,"Name":"XDX","PlayerID":699098531,"Points":4331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44885","ServerKey":"pl181","X":599,"Y":322},{"Bonus":0,"Continent":"K34","ID":44886,"Name":"261..emerson","PlayerID":6920960,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44886","ServerKey":"pl181","X":467,"Y":300},{"Bonus":0,"Continent":"K36","ID":44887,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44887","ServerKey":"pl181","X":650,"Y":351},{"Bonus":0,"Continent":"K52","ID":44888,"Name":"ƂódĆș","PlayerID":699862278,"Points":2443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44888","ServerKey":"pl181","X":290,"Y":512},{"Bonus":0,"Continent":"K43","ID":44889,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44889","ServerKey":"pl181","X":317,"Y":401},{"Bonus":0,"Continent":"K43","ID":44890,"Name":"Kagusiowo 3","PlayerID":849101268,"Points":7556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44890","ServerKey":"pl181","X":303,"Y":441},{"Bonus":0,"Continent":"K34","ID":44891,"Name":"Z 02","PlayerID":6884492,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44891","ServerKey":"pl181","X":417,"Y":310},{"Bonus":0,"Continent":"K36","ID":44892,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":7569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44892","ServerKey":"pl181","X":626,"Y":338},{"Bonus":0,"Continent":"K42","ID":44893,"Name":"Centrum","PlayerID":848977600,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44893","ServerKey":"pl181","X":290,"Y":470},{"Bonus":4,"Continent":"K24","ID":44894,"Name":"005","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44894","ServerKey":"pl181","X":454,"Y":295},{"Bonus":0,"Continent":"K74","ID":44895,"Name":"FP009","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44895","ServerKey":"pl181","X":479,"Y":703},{"Bonus":0,"Continent":"K42","ID":44896,"Name":"Wioska barbarzyƄska","PlayerID":2893211,"Points":323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44896","ServerKey":"pl181","X":291,"Y":472},{"Bonus":0,"Continent":"K42","ID":44897,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44897","ServerKey":"pl181","X":299,"Y":456},{"Bonus":0,"Continent":"K75","ID":44898,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":6450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44898","ServerKey":"pl181","X":501,"Y":702},{"Bonus":0,"Continent":"K33","ID":44899,"Name":"Pogromca","PlayerID":699660539,"Points":6212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44899","ServerKey":"pl181","X":385,"Y":331},{"Bonus":0,"Continent":"K64","ID":44900,"Name":"081","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44900","ServerKey":"pl181","X":416,"Y":685},{"Bonus":0,"Continent":"K43","ID":44901,"Name":"Wioska Melon944","PlayerID":699659708,"Points":7912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44901","ServerKey":"pl181","X":309,"Y":430},{"Bonus":0,"Continent":"K63","ID":44903,"Name":"Taran","PlayerID":6180190,"Points":7443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44903","ServerKey":"pl181","X":321,"Y":612},{"Bonus":9,"Continent":"K36","ID":44904,"Name":"Daleki GrĂłd","PlayerID":7555180,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44904","ServerKey":"pl181","X":632,"Y":335},{"Bonus":0,"Continent":"K36","ID":44905,"Name":"XDX","PlayerID":699098531,"Points":9049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44905","ServerKey":"pl181","X":601,"Y":320},{"Bonus":0,"Continent":"K65","ID":44906,"Name":"###037###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44906","ServerKey":"pl181","X":593,"Y":681},{"Bonus":0,"Continent":"K36","ID":44907,"Name":"B032","PlayerID":8740199,"Points":5546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44907","ServerKey":"pl181","X":624,"Y":329},{"Bonus":0,"Continent":"K56","ID":44908,"Name":"Wioska barbarzyƄska","PlayerID":7154207,"Points":1534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44908","ServerKey":"pl181","X":688,"Y":580},{"Bonus":0,"Continent":"K43","ID":44909,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44909","ServerKey":"pl181","X":308,"Y":418},{"Bonus":0,"Continent":"K43","ID":44910,"Name":"Melon8","PlayerID":699659708,"Points":864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44910","ServerKey":"pl181","X":311,"Y":420},{"Bonus":0,"Continent":"K52","ID":44911,"Name":"Wioska barbarzyƄska","PlayerID":7530708,"Points":3112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44911","ServerKey":"pl181","X":297,"Y":525},{"Bonus":0,"Continent":"K66","ID":44912,"Name":"027 Wioska barbarzyƄska","PlayerID":699346280,"Points":9718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44912","ServerKey":"pl181","X":614,"Y":672},{"Bonus":0,"Continent":"K47","ID":44913,"Name":"PrzeƂom","PlayerID":849099640,"Points":9106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44913","ServerKey":"pl181","X":702,"Y":481},{"Bonus":0,"Continent":"K64","ID":44914,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44914","ServerKey":"pl181","X":426,"Y":691},{"Bonus":0,"Continent":"K36","ID":44915,"Name":"031","PlayerID":698635863,"Points":7936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44915","ServerKey":"pl181","X":671,"Y":382},{"Bonus":0,"Continent":"K64","ID":44916,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44916","ServerKey":"pl181","X":419,"Y":695},{"Bonus":0,"Continent":"K74","ID":44917,"Name":"014. Night Raid","PlayerID":699684062,"Points":8227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44917","ServerKey":"pl181","X":491,"Y":709},{"Bonus":0,"Continent":"K42","ID":44918,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44918","ServerKey":"pl181","X":298,"Y":446},{"Bonus":0,"Continent":"K57","ID":44919,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44919","ServerKey":"pl181","X":711,"Y":502},{"Bonus":0,"Continent":"K57","ID":44920,"Name":"B05","PlayerID":848995478,"Points":10408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44920","ServerKey":"pl181","X":703,"Y":551},{"Bonus":0,"Continent":"K53","ID":44921,"Name":"002","PlayerID":849098688,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44921","ServerKey":"pl181","X":300,"Y":550},{"Bonus":2,"Continent":"K35","ID":44922,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44922","ServerKey":"pl181","X":586,"Y":313},{"Bonus":0,"Continent":"K34","ID":44923,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44923","ServerKey":"pl181","X":406,"Y":317},{"Bonus":0,"Continent":"K52","ID":44924,"Name":"New WorldA","PlayerID":849084005,"Points":6676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44924","ServerKey":"pl181","X":294,"Y":527},{"Bonus":0,"Continent":"K46","ID":44925,"Name":"Sukcesu droga","PlayerID":699785935,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44925","ServerKey":"pl181","X":685,"Y":403},{"Bonus":0,"Continent":"K56","ID":44926,"Name":"009","PlayerID":301602,"Points":2914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44926","ServerKey":"pl181","X":696,"Y":560},{"Bonus":4,"Continent":"K33","ID":44927,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":9856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44927","ServerKey":"pl181","X":381,"Y":331},{"Bonus":0,"Continent":"K65","ID":44928,"Name":"###038###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44928","ServerKey":"pl181","X":594,"Y":689},{"Bonus":0,"Continent":"K47","ID":44929,"Name":"024. Wioska barabarzyƄska","PlayerID":7494497,"Points":10367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44929","ServerKey":"pl181","X":703,"Y":476},{"Bonus":0,"Continent":"K74","ID":44930,"Name":"FP024","PlayerID":699605333,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44930","ServerKey":"pl181","X":482,"Y":709},{"Bonus":0,"Continent":"K34","ID":44931,"Name":"Z 03","PlayerID":6884492,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44931","ServerKey":"pl181","X":420,"Y":310},{"Bonus":0,"Continent":"K57","ID":44932,"Name":"038. Haramosh","PlayerID":1601917,"Points":8846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44932","ServerKey":"pl181","X":707,"Y":541},{"Bonus":0,"Continent":"K65","ID":44933,"Name":"Zalesice","PlayerID":698723158,"Points":6871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44933","ServerKey":"pl181","X":567,"Y":697},{"Bonus":8,"Continent":"K63","ID":44934,"Name":"200","PlayerID":699269923,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44934","ServerKey":"pl181","X":369,"Y":663},{"Bonus":0,"Continent":"K56","ID":44935,"Name":"Didek","PlayerID":849070946,"Points":3837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44935","ServerKey":"pl181","X":688,"Y":584},{"Bonus":0,"Continent":"K63","ID":44936,"Name":"Taran","PlayerID":6180190,"Points":7550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44936","ServerKey":"pl181","X":323,"Y":608},{"Bonus":0,"Continent":"K53","ID":44937,"Name":"Taran","PlayerID":6180190,"Points":5990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44937","ServerKey":"pl181","X":311,"Y":596},{"Bonus":0,"Continent":"K25","ID":44938,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44938","ServerKey":"pl181","X":502,"Y":292},{"Bonus":0,"Continent":"K63","ID":44939,"Name":"101 - Nowy Początek...","PlayerID":7540891,"Points":5811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44939","ServerKey":"pl181","X":348,"Y":642},{"Bonus":0,"Continent":"K57","ID":44941,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44941","ServerKey":"pl181","X":705,"Y":533},{"Bonus":0,"Continent":"K63","ID":44943,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44943","ServerKey":"pl181","X":365,"Y":656},{"Bonus":0,"Continent":"K24","ID":44944,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44944","ServerKey":"pl181","X":496,"Y":292},{"Bonus":0,"Continent":"K36","ID":44945,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44945","ServerKey":"pl181","X":632,"Y":344},{"Bonus":0,"Continent":"K33","ID":44946,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":6837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44946","ServerKey":"pl181","X":368,"Y":346},{"Bonus":0,"Continent":"K36","ID":44947,"Name":"XDX","PlayerID":699098531,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44947","ServerKey":"pl181","X":605,"Y":326},{"Bonus":0,"Continent":"K63","ID":44948,"Name":"K07","PlayerID":6948793,"Points":8710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44948","ServerKey":"pl181","X":356,"Y":650},{"Bonus":0,"Continent":"K65","ID":44949,"Name":"0366","PlayerID":698659980,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44949","ServerKey":"pl181","X":567,"Y":694},{"Bonus":0,"Continent":"K25","ID":44950,"Name":"G004","PlayerID":699208929,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44950","ServerKey":"pl181","X":515,"Y":289},{"Bonus":0,"Continent":"K52","ID":44951,"Name":"001 OstrĂłw Lednicki","PlayerID":9235561,"Points":7935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44951","ServerKey":"pl181","X":289,"Y":530},{"Bonus":0,"Continent":"K47","ID":44952,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44952","ServerKey":"pl181","X":701,"Y":441},{"Bonus":0,"Continent":"K63","ID":44953,"Name":"Wioska zosiek00","PlayerID":699269923,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44953","ServerKey":"pl181","X":375,"Y":670},{"Bonus":0,"Continent":"K33","ID":44954,"Name":"Szlachcic","PlayerID":698388578,"Points":6957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44954","ServerKey":"pl181","X":360,"Y":342},{"Bonus":0,"Continent":"K63","ID":44955,"Name":"AAAAAAAAAAAAAAAAAAAAAAA","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44955","ServerKey":"pl181","X":321,"Y":609},{"Bonus":0,"Continent":"K42","ID":44956,"Name":"Starcza","PlayerID":8048374,"Points":5586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44956","ServerKey":"pl181","X":298,"Y":475},{"Bonus":9,"Continent":"K47","ID":44957,"Name":"B001 Osada WschĂłd","PlayerID":113796,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44957","ServerKey":"pl181","X":709,"Y":463},{"Bonus":0,"Continent":"K33","ID":44958,"Name":"AlaKlaudia2","PlayerID":699660539,"Points":5174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44958","ServerKey":"pl181","X":384,"Y":325},{"Bonus":0,"Continent":"K56","ID":44959,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44959","ServerKey":"pl181","X":699,"Y":549},{"Bonus":0,"Continent":"K34","ID":44960,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44960","ServerKey":"pl181","X":407,"Y":312},{"Bonus":6,"Continent":"K35","ID":44961,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44961","ServerKey":"pl181","X":579,"Y":308},{"Bonus":0,"Continent":"K33","ID":44962,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":3855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44962","ServerKey":"pl181","X":336,"Y":375},{"Bonus":0,"Continent":"K33","ID":44963,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44963","ServerKey":"pl181","X":324,"Y":384},{"Bonus":5,"Continent":"K24","ID":44964,"Name":"Winterfell.005","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44964","ServerKey":"pl181","X":461,"Y":296},{"Bonus":0,"Continent":"K63","ID":44965,"Name":"No chyba nie","PlayerID":699269923,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44965","ServerKey":"pl181","X":364,"Y":651},{"Bonus":0,"Continent":"K43","ID":44966,"Name":"ZA01","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44966","ServerKey":"pl181","X":320,"Y":403},{"Bonus":0,"Continent":"K53","ID":44967,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":2788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44967","ServerKey":"pl181","X":305,"Y":557},{"Bonus":0,"Continent":"K25","ID":44968,"Name":"C.05 a panicz to dokąd?","PlayerID":849026145,"Points":2372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44968","ServerKey":"pl181","X":548,"Y":295},{"Bonus":0,"Continent":"K64","ID":44969,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44969","ServerKey":"pl181","X":426,"Y":694},{"Bonus":0,"Continent":"K75","ID":44970,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44970","ServerKey":"pl181","X":569,"Y":700},{"Bonus":0,"Continent":"K56","ID":44971,"Name":"030","PlayerID":849095227,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44971","ServerKey":"pl181","X":631,"Y":550},{"Bonus":0,"Continent":"K36","ID":44972,"Name":"032","PlayerID":698635863,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44972","ServerKey":"pl181","X":667,"Y":381},{"Bonus":0,"Continent":"K64","ID":44973,"Name":"009","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44973","ServerKey":"pl181","X":404,"Y":682},{"Bonus":0,"Continent":"K66","ID":44975,"Name":"S006","PlayerID":8627359,"Points":9315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44975","ServerKey":"pl181","X":604,"Y":675},{"Bonus":0,"Continent":"K33","ID":44976,"Name":"K33","PlayerID":699794765,"Points":2192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44976","ServerKey":"pl181","X":322,"Y":390},{"Bonus":0,"Continent":"K36","ID":44977,"Name":"Jarza071","PlayerID":699738350,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44977","ServerKey":"pl181","X":677,"Y":391},{"Bonus":0,"Continent":"K63","ID":44978,"Name":"O006","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44978","ServerKey":"pl181","X":341,"Y":636},{"Bonus":2,"Continent":"K64","ID":44979,"Name":"0050 Utopia3","PlayerID":849037407,"Points":10309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44979","ServerKey":"pl181","X":447,"Y":696},{"Bonus":0,"Continent":"K57","ID":44980,"Name":"08. Pompeje","PlayerID":848946700,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44980","ServerKey":"pl181","X":704,"Y":532},{"Bonus":0,"Continent":"K63","ID":44981,"Name":"777","PlayerID":698908184,"Points":8972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44981","ServerKey":"pl181","X":343,"Y":641},{"Bonus":0,"Continent":"K36","ID":44983,"Name":"wioska","PlayerID":9291984,"Points":7551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44983","ServerKey":"pl181","X":632,"Y":346},{"Bonus":0,"Continent":"K66","ID":44984,"Name":"053.","PlayerID":699373599,"Points":3542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44984","ServerKey":"pl181","X":629,"Y":658},{"Bonus":0,"Continent":"K66","ID":44985,"Name":"#K66 0003","PlayerID":699728159,"Points":7472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44985","ServerKey":"pl181","X":610,"Y":673},{"Bonus":0,"Continent":"K36","ID":44986,"Name":"031","PlayerID":9291984,"Points":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44986","ServerKey":"pl181","X":642,"Y":347},{"Bonus":0,"Continent":"K24","ID":44987,"Name":"????","PlayerID":698489071,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44987","ServerKey":"pl181","X":475,"Y":290},{"Bonus":0,"Continent":"K47","ID":44988,"Name":"0112","PlayerID":699429153,"Points":8708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44988","ServerKey":"pl181","X":705,"Y":494},{"Bonus":0,"Continent":"K36","ID":44989,"Name":"XDX","PlayerID":699098531,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44989","ServerKey":"pl181","X":607,"Y":318},{"Bonus":0,"Continent":"K34","ID":44990,"Name":"034.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44990","ServerKey":"pl181","X":425,"Y":311},{"Bonus":0,"Continent":"K65","ID":44991,"Name":"###092###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44991","ServerKey":"pl181","X":578,"Y":688},{"Bonus":0,"Continent":"K35","ID":44992,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44992","ServerKey":"pl181","X":579,"Y":304},{"Bonus":0,"Continent":"K42","ID":44993,"Name":"EO EO","PlayerID":699697558,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44993","ServerKey":"pl181","X":290,"Y":498},{"Bonus":0,"Continent":"K63","ID":44994,"Name":"002","PlayerID":6948793,"Points":9766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44994","ServerKey":"pl181","X":387,"Y":669},{"Bonus":0,"Continent":"K53","ID":44995,"Name":"041","PlayerID":9280477,"Points":6409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44995","ServerKey":"pl181","X":300,"Y":540},{"Bonus":0,"Continent":"K25","ID":44996,"Name":"Wioska barbarzyƄska","PlayerID":8400975,"Points":1271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44996","ServerKey":"pl181","X":510,"Y":298},{"Bonus":0,"Continent":"K36","ID":44997,"Name":"Patryk611","PlayerID":7973893,"Points":6022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44997","ServerKey":"pl181","X":676,"Y":397},{"Bonus":0,"Continent":"K56","ID":44998,"Name":"S002","PlayerID":8428196,"Points":9063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44998","ServerKey":"pl181","X":683,"Y":599},{"Bonus":0,"Continent":"K33","ID":44999,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=44999","ServerKey":"pl181","X":321,"Y":396},{"Bonus":0,"Continent":"K53","ID":45000,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":1910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45000","ServerKey":"pl181","X":306,"Y":572},{"Bonus":0,"Continent":"K75","ID":45001,"Name":"yks","PlayerID":8980651,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45001","ServerKey":"pl181","X":535,"Y":705},{"Bonus":0,"Continent":"K63","ID":45002,"Name":"eee","PlayerID":699269923,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45002","ServerKey":"pl181","X":370,"Y":659},{"Bonus":0,"Continent":"K25","ID":45003,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45003","ServerKey":"pl181","X":503,"Y":293},{"Bonus":0,"Continent":"K47","ID":45004,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45004","ServerKey":"pl181","X":711,"Y":497},{"Bonus":0,"Continent":"K63","ID":45005,"Name":"O056","PlayerID":272173,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45005","ServerKey":"pl181","X":334,"Y":628},{"Bonus":0,"Continent":"K65","ID":45006,"Name":"Adamo 5","PlayerID":849096768,"Points":4821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45006","ServerKey":"pl181","X":585,"Y":694},{"Bonus":0,"Continent":"K66","ID":45007,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45007","ServerKey":"pl181","X":643,"Y":648},{"Bonus":0,"Continent":"K64","ID":45008,"Name":"019. Night Raid*","PlayerID":699684062,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45008","ServerKey":"pl181","X":432,"Y":692},{"Bonus":0,"Continent":"K66","ID":45009,"Name":"Bessa 027","PlayerID":848987051,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45009","ServerKey":"pl181","X":644,"Y":656},{"Bonus":3,"Continent":"K47","ID":45010,"Name":"016","PlayerID":849091105,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45010","ServerKey":"pl181","X":711,"Y":495},{"Bonus":0,"Continent":"K52","ID":45011,"Name":"EO EO","PlayerID":699697558,"Points":9025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45011","ServerKey":"pl181","X":293,"Y":500},{"Bonus":0,"Continent":"K74","ID":45012,"Name":"Kurnik","PlayerID":699603116,"Points":4534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45012","ServerKey":"pl181","X":471,"Y":705},{"Bonus":0,"Continent":"K53","ID":45013,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":5786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45013","ServerKey":"pl181","X":317,"Y":596},{"Bonus":0,"Continent":"K43","ID":45014,"Name":"ZA07","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45014","ServerKey":"pl181","X":322,"Y":403},{"Bonus":0,"Continent":"K24","ID":45015,"Name":"2. Pusia 420","PlayerID":699368887,"Points":9319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45015","ServerKey":"pl181","X":473,"Y":294},{"Bonus":0,"Continent":"K35","ID":45016,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":4464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45016","ServerKey":"pl181","X":573,"Y":303},{"Bonus":0,"Continent":"K43","ID":45017,"Name":"ZZ10","PlayerID":356642,"Points":9618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45017","ServerKey":"pl181","X":308,"Y":410},{"Bonus":9,"Continent":"K63","ID":45018,"Name":"O004","PlayerID":272173,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45018","ServerKey":"pl181","X":341,"Y":632},{"Bonus":0,"Continent":"K64","ID":45019,"Name":"102","PlayerID":849099876,"Points":9449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45019","ServerKey":"pl181","X":405,"Y":690},{"Bonus":0,"Continent":"K57","ID":45021,"Name":"025. Fitz Roy","PlayerID":1601917,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45021","ServerKey":"pl181","X":709,"Y":531},{"Bonus":0,"Continent":"K35","ID":45022,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45022","ServerKey":"pl181","X":589,"Y":318},{"Bonus":0,"Continent":"K66","ID":45024,"Name":"051 sebaseba1991","PlayerID":699346280,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45024","ServerKey":"pl181","X":617,"Y":676},{"Bonus":0,"Continent":"K36","ID":45026,"Name":"XDX","PlayerID":699098531,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45026","ServerKey":"pl181","X":612,"Y":325},{"Bonus":0,"Continent":"K56","ID":45027,"Name":"E005","PlayerID":8428196,"Points":6019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45027","ServerKey":"pl181","X":657,"Y":557},{"Bonus":0,"Continent":"K34","ID":45028,"Name":"[0298]","PlayerID":8630972,"Points":9122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45028","ServerKey":"pl181","X":432,"Y":302},{"Bonus":0,"Continent":"K42","ID":45029,"Name":"EO EO","PlayerID":699697558,"Points":8035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45029","ServerKey":"pl181","X":297,"Y":497},{"Bonus":0,"Continent":"K43","ID":45030,"Name":"009c","PlayerID":8259895,"Points":4137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45030","ServerKey":"pl181","X":311,"Y":423},{"Bonus":0,"Continent":"K53","ID":45031,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45031","ServerKey":"pl181","X":316,"Y":596},{"Bonus":0,"Continent":"K66","ID":45032,"Name":"023.","PlayerID":699695167,"Points":4789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45032","ServerKey":"pl181","X":628,"Y":666},{"Bonus":0,"Continent":"K64","ID":45033,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45033","ServerKey":"pl181","X":412,"Y":684},{"Bonus":0,"Continent":"K35","ID":45034,"Name":"003 VLV","PlayerID":849100656,"Points":8672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45034","ServerKey":"pl181","X":560,"Y":306},{"Bonus":0,"Continent":"K65","ID":45035,"Name":"Osiny","PlayerID":698723158,"Points":8591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45035","ServerKey":"pl181","X":572,"Y":691},{"Bonus":0,"Continent":"K57","ID":45036,"Name":"Ger3","PlayerID":2246711,"Points":5036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45036","ServerKey":"pl181","X":709,"Y":524},{"Bonus":0,"Continent":"K66","ID":45037,"Name":"Bessa 028","PlayerID":848987051,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45037","ServerKey":"pl181","X":635,"Y":658},{"Bonus":0,"Continent":"K57","ID":45039,"Name":"009. Painful","PlayerID":699785935,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45039","ServerKey":"pl181","X":703,"Y":513},{"Bonus":0,"Continent":"K43","ID":45040,"Name":"Wioska Totomoose 3","PlayerID":849100744,"Points":2936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45040","ServerKey":"pl181","X":313,"Y":413},{"Bonus":0,"Continent":"K24","ID":45041,"Name":".achim.","PlayerID":6936607,"Points":5349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45041","ServerKey":"pl181","X":482,"Y":295},{"Bonus":8,"Continent":"K75","ID":45042,"Name":"ZZZ","PlayerID":8980651,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45042","ServerKey":"pl181","X":542,"Y":706},{"Bonus":0,"Continent":"K33","ID":45043,"Name":"006","PlayerID":699660539,"Points":6525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45043","ServerKey":"pl181","X":390,"Y":321},{"Bonus":0,"Continent":"K64","ID":45044,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45044","ServerKey":"pl181","X":425,"Y":693},{"Bonus":0,"Continent":"K75","ID":45045,"Name":"028 zadupie1","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45045","ServerKey":"pl181","X":530,"Y":711},{"Bonus":0,"Continent":"K43","ID":45046,"Name":"Z07","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45046","ServerKey":"pl181","X":317,"Y":409},{"Bonus":0,"Continent":"K74","ID":45047,"Name":"007. Night Raid","PlayerID":699684062,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45047","ServerKey":"pl181","X":491,"Y":703},{"Bonus":0,"Continent":"K74","ID":45048,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45048","ServerKey":"pl181","X":497,"Y":702},{"Bonus":0,"Continent":"K43","ID":45049,"Name":"Ranczo","PlayerID":699706955,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45049","ServerKey":"pl181","X":302,"Y":449},{"Bonus":0,"Continent":"K66","ID":45050,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45050","ServerKey":"pl181","X":639,"Y":651},{"Bonus":0,"Continent":"K63","ID":45051,"Name":"psycha sitting","PlayerID":699736927,"Points":6735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45051","ServerKey":"pl181","X":399,"Y":677},{"Bonus":0,"Continent":"K66","ID":45052,"Name":"001","PlayerID":849101148,"Points":6085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45052","ServerKey":"pl181","X":646,"Y":648},{"Bonus":0,"Continent":"K46","ID":45053,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":7609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45053","ServerKey":"pl181","X":688,"Y":414},{"Bonus":0,"Continent":"K24","ID":45055,"Name":"#0152 barbarzyƄska","PlayerID":1238300,"Points":7273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45055","ServerKey":"pl181","X":484,"Y":289},{"Bonus":0,"Continent":"K45","ID":45056,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45056","ServerKey":"pl181","X":590,"Y":495},{"Bonus":0,"Continent":"K33","ID":45057,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45057","ServerKey":"pl181","X":385,"Y":325},{"Bonus":0,"Continent":"K57","ID":45058,"Name":"13. Poviss","PlayerID":8976313,"Points":9684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45058","ServerKey":"pl181","X":706,"Y":538},{"Bonus":0,"Continent":"K33","ID":45059,"Name":"004","PlayerID":8153941,"Points":8180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45059","ServerKey":"pl181","X":392,"Y":327},{"Bonus":9,"Continent":"K25","ID":45060,"Name":"North 012","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45060","ServerKey":"pl181","X":506,"Y":289},{"Bonus":0,"Continent":"K36","ID":45062,"Name":"Na KraƄcu ƚwiata 019","PlayerID":9291984,"Points":4221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45062","ServerKey":"pl181","X":641,"Y":341},{"Bonus":0,"Continent":"K56","ID":45063,"Name":"008","PlayerID":301602,"Points":4918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45063","ServerKey":"pl181","X":699,"Y":557},{"Bonus":0,"Continent":"K42","ID":45064,"Name":"Grubasy 4","PlayerID":634848,"Points":5576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45064","ServerKey":"pl181","X":297,"Y":450},{"Bonus":0,"Continent":"K63","ID":45065,"Name":"AAA","PlayerID":6180190,"Points":10101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45065","ServerKey":"pl181","X":321,"Y":607},{"Bonus":0,"Continent":"K66","ID":45066,"Name":"S025","PlayerID":8428196,"Points":5626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45066","ServerKey":"pl181","X":686,"Y":601},{"Bonus":1,"Continent":"K56","ID":45067,"Name":"Didi","PlayerID":849070946,"Points":4718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45067","ServerKey":"pl181","X":684,"Y":587},{"Bonus":0,"Continent":"K74","ID":45068,"Name":"A000","PlayerID":699725436,"Points":9275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45068","ServerKey":"pl181","X":466,"Y":707},{"Bonus":0,"Continent":"K33","ID":45069,"Name":"011","PlayerID":849101205,"Points":3416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45069","ServerKey":"pl181","X":351,"Y":350},{"Bonus":8,"Continent":"K33","ID":45070,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45070","ServerKey":"pl181","X":382,"Y":325},{"Bonus":0,"Continent":"K42","ID":45071,"Name":"Dream on","PlayerID":698962117,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45071","ServerKey":"pl181","X":295,"Y":487},{"Bonus":0,"Continent":"K63","ID":45072,"Name":"Taran","PlayerID":6180190,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45072","ServerKey":"pl181","X":319,"Y":608},{"Bonus":0,"Continent":"K64","ID":45073,"Name":"New World","PlayerID":698152377,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45073","ServerKey":"pl181","X":425,"Y":689},{"Bonus":0,"Continent":"K33","ID":45074,"Name":"z zajazd /2","PlayerID":3909522,"Points":6920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45074","ServerKey":"pl181","X":353,"Y":359},{"Bonus":0,"Continent":"K46","ID":45075,"Name":"W24","PlayerID":699524362,"Points":1864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45075","ServerKey":"pl181","X":693,"Y":412},{"Bonus":0,"Continent":"K74","ID":45076,"Name":"022. Night Raid*","PlayerID":699684062,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45076","ServerKey":"pl181","X":429,"Y":700},{"Bonus":0,"Continent":"K56","ID":45077,"Name":"S018","PlayerID":8428196,"Points":5276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45077","ServerKey":"pl181","X":688,"Y":595},{"Bonus":0,"Continent":"K65","ID":45078,"Name":"###093###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45078","ServerKey":"pl181","X":582,"Y":690},{"Bonus":2,"Continent":"K34","ID":45079,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45079","ServerKey":"pl181","X":407,"Y":320},{"Bonus":0,"Continent":"K24","ID":45080,"Name":"#0291 Don Noobas","PlayerID":1238300,"Points":2597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45080","ServerKey":"pl181","X":465,"Y":294},{"Bonus":0,"Continent":"K42","ID":45081,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45081","ServerKey":"pl181","X":294,"Y":461},{"Bonus":0,"Continent":"K33","ID":45082,"Name":"239","PlayerID":7271812,"Points":2895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45082","ServerKey":"pl181","X":398,"Y":318},{"Bonus":0,"Continent":"K47","ID":45083,"Name":"053.","PlayerID":849094609,"Points":5856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45083","ServerKey":"pl181","X":705,"Y":465},{"Bonus":0,"Continent":"K56","ID":45084,"Name":"Didek","PlayerID":849070946,"Points":7383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45084","ServerKey":"pl181","X":684,"Y":588},{"Bonus":0,"Continent":"K63","ID":45085,"Name":"C059","PlayerID":699383279,"Points":10431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45085","ServerKey":"pl181","X":363,"Y":656},{"Bonus":0,"Continent":"K24","ID":45086,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45086","ServerKey":"pl181","X":495,"Y":292},{"Bonus":0,"Continent":"K63","ID":45087,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45087","ServerKey":"pl181","X":322,"Y":611},{"Bonus":0,"Continent":"K35","ID":45088,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45088","ServerKey":"pl181","X":588,"Y":314},{"Bonus":0,"Continent":"K24","ID":45089,"Name":".achim.","PlayerID":6936607,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45089","ServerKey":"pl181","X":482,"Y":288},{"Bonus":0,"Continent":"K25","ID":45090,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45090","ServerKey":"pl181","X":518,"Y":289},{"Bonus":0,"Continent":"K34","ID":45091,"Name":"0017","PlayerID":2321390,"Points":4932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45091","ServerKey":"pl181","X":400,"Y":322},{"Bonus":0,"Continent":"K52","ID":45093,"Name":"[0212]","PlayerID":8630972,"Points":7745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45093","ServerKey":"pl181","X":297,"Y":503},{"Bonus":0,"Continent":"K57","ID":45094,"Name":"GULASZ","PlayerID":1895081,"Points":902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45094","ServerKey":"pl181","X":707,"Y":530},{"Bonus":0,"Continent":"K36","ID":45095,"Name":"033","PlayerID":698635863,"Points":9284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45095","ServerKey":"pl181","X":667,"Y":382},{"Bonus":0,"Continent":"K66","ID":45097,"Name":"CastAway !032","PlayerID":9314079,"Points":5239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45097","ServerKey":"pl181","X":686,"Y":603},{"Bonus":0,"Continent":"K63","ID":45098,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45098","ServerKey":"pl181","X":365,"Y":653},{"Bonus":0,"Continent":"K35","ID":45099,"Name":"Wioska barbarzyƄska","PlayerID":1767876,"Points":5318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45099","ServerKey":"pl181","X":587,"Y":317},{"Bonus":0,"Continent":"K42","ID":45100,"Name":"Dream on","PlayerID":698962117,"Points":4646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45100","ServerKey":"pl181","X":292,"Y":486},{"Bonus":0,"Continent":"K52","ID":45101,"Name":"003","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45101","ServerKey":"pl181","X":296,"Y":558},{"Bonus":0,"Continent":"K47","ID":45103,"Name":"Borubar 5","PlayerID":699413581,"Points":4703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45103","ServerKey":"pl181","X":711,"Y":486},{"Bonus":0,"Continent":"K63","ID":45104,"Name":"D015","PlayerID":272173,"Points":6506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45104","ServerKey":"pl181","X":353,"Y":647},{"Bonus":0,"Continent":"K47","ID":45105,"Name":"Domi 8","PlayerID":849002796,"Points":7536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45105","ServerKey":"pl181","X":700,"Y":471},{"Bonus":0,"Continent":"K63","ID":45106,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45106","ServerKey":"pl181","X":383,"Y":671},{"Bonus":0,"Continent":"K34","ID":45108,"Name":"[0147]","PlayerID":8630972,"Points":9125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45108","ServerKey":"pl181","X":442,"Y":300},{"Bonus":0,"Continent":"K66","ID":45109,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45109","ServerKey":"pl181","X":651,"Y":643},{"Bonus":5,"Continent":"K56","ID":45110,"Name":"TWIERDZA .:009:.","PlayerID":7154207,"Points":10182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45110","ServerKey":"pl181","X":698,"Y":567},{"Bonus":0,"Continent":"K75","ID":45111,"Name":"012 ledwo co","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45111","ServerKey":"pl181","X":508,"Y":702},{"Bonus":0,"Continent":"K34","ID":45112,"Name":"201","PlayerID":698365960,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45112","ServerKey":"pl181","X":427,"Y":302},{"Bonus":0,"Continent":"K43","ID":45113,"Name":"WB13","PlayerID":356642,"Points":3913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45113","ServerKey":"pl181","X":308,"Y":416},{"Bonus":0,"Continent":"K35","ID":45114,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45114","ServerKey":"pl181","X":594,"Y":310},{"Bonus":0,"Continent":"K47","ID":45115,"Name":"010","PlayerID":942959,"Points":3301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45115","ServerKey":"pl181","X":709,"Y":484},{"Bonus":0,"Continent":"K63","ID":45116,"Name":"Taran","PlayerID":6180190,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45116","ServerKey":"pl181","X":320,"Y":605},{"Bonus":0,"Continent":"K75","ID":45117,"Name":"126 invidia","PlayerID":849093426,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45117","ServerKey":"pl181","X":502,"Y":709},{"Bonus":0,"Continent":"K65","ID":45118,"Name":"###094###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45118","ServerKey":"pl181","X":581,"Y":690},{"Bonus":0,"Continent":"K75","ID":45119,"Name":"C011","PlayerID":698599365,"Points":3307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45119","ServerKey":"pl181","X":544,"Y":706},{"Bonus":0,"Continent":"K63","ID":45120,"Name":"Taran","PlayerID":6180190,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45120","ServerKey":"pl181","X":317,"Y":602},{"Bonus":0,"Continent":"K46","ID":45121,"Name":"Mydlana baƄka","PlayerID":699785935,"Points":9146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45121","ServerKey":"pl181","X":687,"Y":402},{"Bonus":0,"Continent":"K47","ID":45122,"Name":"B005 Szaleniczki","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45122","ServerKey":"pl181","X":706,"Y":462},{"Bonus":0,"Continent":"K24","ID":45123,"Name":"[0136]","PlayerID":8630972,"Points":9604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45123","ServerKey":"pl181","X":456,"Y":295},{"Bonus":0,"Continent":"K46","ID":45124,"Name":"Wioska barbarzyƄska","PlayerID":699488108,"Points":5331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45124","ServerKey":"pl181","X":692,"Y":424},{"Bonus":0,"Continent":"K66","ID":45126,"Name":"Wioska 21","PlayerID":849101162,"Points":6058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45126","ServerKey":"pl181","X":687,"Y":600},{"Bonus":0,"Continent":"K75","ID":45128,"Name":"Wyspa_48","PlayerID":2585846,"Points":3895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45128","ServerKey":"pl181","X":507,"Y":704},{"Bonus":0,"Continent":"K63","ID":45129,"Name":"005","PlayerID":6948793,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45129","ServerKey":"pl181","X":389,"Y":670},{"Bonus":0,"Continent":"K33","ID":45130,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45130","ServerKey":"pl181","X":358,"Y":346},{"Bonus":0,"Continent":"K35","ID":45131,"Name":"AAA","PlayerID":1006847,"Points":8593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45131","ServerKey":"pl181","X":550,"Y":304},{"Bonus":0,"Continent":"K34","ID":45132,"Name":"043","PlayerID":2502956,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45132","ServerKey":"pl181","X":463,"Y":300},{"Bonus":0,"Continent":"K36","ID":45133,"Name":"B028","PlayerID":8740199,"Points":5346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45133","ServerKey":"pl181","X":623,"Y":326},{"Bonus":0,"Continent":"K46","ID":45134,"Name":"Wioska barbarzyƄska","PlayerID":849098769,"Points":5880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45134","ServerKey":"pl181","X":698,"Y":457},{"Bonus":0,"Continent":"K75","ID":45135,"Name":"Lusia","PlayerID":6116940,"Points":8028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45135","ServerKey":"pl181","X":527,"Y":704},{"Bonus":0,"Continent":"K36","ID":45137,"Name":"Wioska013","PlayerID":698768565,"Points":4386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45137","ServerKey":"pl181","X":686,"Y":398},{"Bonus":0,"Continent":"K36","ID":45138,"Name":"wioska","PlayerID":849102068,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45138","ServerKey":"pl181","X":630,"Y":335},{"Bonus":0,"Continent":"K57","ID":45139,"Name":"31.Creyden","PlayerID":8976313,"Points":7614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45139","ServerKey":"pl181","X":707,"Y":546},{"Bonus":0,"Continent":"K46","ID":45140,"Name":"Wioska 001","PlayerID":698416970,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45140","ServerKey":"pl181","X":689,"Y":411},{"Bonus":0,"Continent":"K47","ID":45141,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":5246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45141","ServerKey":"pl181","X":704,"Y":490},{"Bonus":0,"Continent":"K33","ID":45143,"Name":"0035","PlayerID":2321390,"Points":2604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45143","ServerKey":"pl181","X":329,"Y":378},{"Bonus":0,"Continent":"K66","ID":45144,"Name":"#K66 0007","PlayerID":699728159,"Points":4635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45144","ServerKey":"pl181","X":609,"Y":673},{"Bonus":5,"Continent":"K66","ID":45145,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45145","ServerKey":"pl181","X":667,"Y":628},{"Bonus":0,"Continent":"K34","ID":45146,"Name":"Sodoma","PlayerID":699694284,"Points":8568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45146","ServerKey":"pl181","X":417,"Y":313},{"Bonus":0,"Continent":"K64","ID":45148,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45148","ServerKey":"pl181","X":438,"Y":699},{"Bonus":0,"Continent":"K46","ID":45149,"Name":"Nad ranem","PlayerID":699785935,"Points":4291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45149","ServerKey":"pl181","X":684,"Y":401},{"Bonus":0,"Continent":"K47","ID":45150,"Name":"34. Kufe 1","PlayerID":699804790,"Points":8190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45150","ServerKey":"pl181","X":705,"Y":457},{"Bonus":0,"Continent":"K46","ID":45151,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45151","ServerKey":"pl181","X":688,"Y":408},{"Bonus":0,"Continent":"K75","ID":45152,"Name":"001 szukam","PlayerID":6116940,"Points":5575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45152","ServerKey":"pl181","X":533,"Y":707},{"Bonus":0,"Continent":"K47","ID":45153,"Name":"0063","PlayerID":698416970,"Points":5278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45153","ServerKey":"pl181","X":707,"Y":451},{"Bonus":2,"Continent":"K66","ID":45154,"Name":"052 Karolo1","PlayerID":699346280,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45154","ServerKey":"pl181","X":618,"Y":672},{"Bonus":0,"Continent":"K46","ID":45155,"Name":"W25","PlayerID":699524362,"Points":4693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45155","ServerKey":"pl181","X":694,"Y":412},{"Bonus":0,"Continent":"K42","ID":45156,"Name":"Grubasy 3","PlayerID":634848,"Points":6732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45156","ServerKey":"pl181","X":299,"Y":450},{"Bonus":0,"Continent":"K25","ID":45157,"Name":"Spec2","PlayerID":699569800,"Points":5695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45157","ServerKey":"pl181","X":544,"Y":298},{"Bonus":0,"Continent":"K52","ID":45158,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45158","ServerKey":"pl181","X":293,"Y":505},{"Bonus":0,"Continent":"K24","ID":45159,"Name":"ZboĆŒowa","PlayerID":698848373,"Points":2725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45159","ServerKey":"pl181","X":483,"Y":294},{"Bonus":0,"Continent":"K63","ID":45160,"Name":"C057","PlayerID":699383279,"Points":10713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45160","ServerKey":"pl181","X":364,"Y":657},{"Bonus":0,"Continent":"K47","ID":45161,"Name":"0067","PlayerID":698416970,"Points":5730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45161","ServerKey":"pl181","X":706,"Y":448},{"Bonus":0,"Continent":"K25","ID":45162,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":6989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45162","ServerKey":"pl181","X":530,"Y":293},{"Bonus":0,"Continent":"K33","ID":45163,"Name":"Mniejsze zƂo 0094","PlayerID":699794765,"Points":5365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45163","ServerKey":"pl181","X":320,"Y":388},{"Bonus":0,"Continent":"K63","ID":45164,"Name":"001","PlayerID":699269923,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45164","ServerKey":"pl181","X":386,"Y":668},{"Bonus":0,"Continent":"K57","ID":45165,"Name":"039. Izera","PlayerID":1601917,"Points":7752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45165","ServerKey":"pl181","X":706,"Y":543},{"Bonus":0,"Continent":"K74","ID":45167,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":5302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45167","ServerKey":"pl181","X":496,"Y":707},{"Bonus":0,"Continent":"K74","ID":45168,"Name":"C005","PlayerID":8954402,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45168","ServerKey":"pl181","X":468,"Y":701},{"Bonus":0,"Continent":"K65","ID":45169,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45169","ServerKey":"pl181","X":577,"Y":692},{"Bonus":0,"Continent":"K35","ID":45170,"Name":"--004--","PlayerID":542253,"Points":10244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45170","ServerKey":"pl181","X":568,"Y":300},{"Bonus":0,"Continent":"K63","ID":45171,"Name":"Wioska barbarzyƄska","PlayerID":8699429,"Points":5516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45171","ServerKey":"pl181","X":319,"Y":604},{"Bonus":0,"Continent":"K57","ID":45173,"Name":"025","PlayerID":7085502,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45173","ServerKey":"pl181","X":711,"Y":511},{"Bonus":0,"Continent":"K63","ID":45174,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":7364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45174","ServerKey":"pl181","X":330,"Y":615},{"Bonus":0,"Continent":"K65","ID":45175,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45175","ServerKey":"pl181","X":575,"Y":697},{"Bonus":0,"Continent":"K46","ID":45176,"Name":"OrzeƂ 6","PlayerID":699413581,"Points":7735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45176","ServerKey":"pl181","X":688,"Y":490},{"Bonus":0,"Continent":"K36","ID":45177,"Name":"W27","PlayerID":699524362,"Points":2270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45177","ServerKey":"pl181","X":684,"Y":399},{"Bonus":0,"Continent":"K56","ID":45178,"Name":"Didi","PlayerID":849070946,"Points":9658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45178","ServerKey":"pl181","X":686,"Y":582},{"Bonus":0,"Continent":"K64","ID":45179,"Name":"0014 mackobl14","PlayerID":849037407,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45179","ServerKey":"pl181","X":437,"Y":695},{"Bonus":0,"Continent":"K34","ID":45180,"Name":"003 Barba","PlayerID":698231772,"Points":8252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45180","ServerKey":"pl181","X":406,"Y":318},{"Bonus":0,"Continent":"K34","ID":45181,"Name":"[0117]","PlayerID":8630972,"Points":10112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45181","ServerKey":"pl181","X":444,"Y":301},{"Bonus":0,"Continent":"K33","ID":45182,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45182","ServerKey":"pl181","X":325,"Y":386},{"Bonus":0,"Continent":"K34","ID":45183,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45183","ServerKey":"pl181","X":424,"Y":302},{"Bonus":0,"Continent":"K52","ID":45184,"Name":"New WorldA","PlayerID":849084005,"Points":6199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45184","ServerKey":"pl181","X":297,"Y":527},{"Bonus":0,"Continent":"K33","ID":45185,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45185","ServerKey":"pl181","X":321,"Y":390},{"Bonus":0,"Continent":"K46","ID":45186,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45186","ServerKey":"pl181","X":639,"Y":402},{"Bonus":0,"Continent":"K36","ID":45187,"Name":"[198]","PlayerID":8000875,"Points":3749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45187","ServerKey":"pl181","X":676,"Y":388},{"Bonus":0,"Continent":"K33","ID":45189,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":3672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45189","ServerKey":"pl181","X":388,"Y":319},{"Bonus":0,"Continent":"K36","ID":45191,"Name":"Virginia Beach","PlayerID":8740199,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45191","ServerKey":"pl181","X":626,"Y":333},{"Bonus":0,"Continent":"K63","ID":45192,"Name":"014. Wioska barbarzyƄska","PlayerID":698908184,"Points":8289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45192","ServerKey":"pl181","X":344,"Y":638},{"Bonus":0,"Continent":"K75","ID":45193,"Name":"Wioska 13kris","PlayerID":6870350,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45193","ServerKey":"pl181","X":565,"Y":702},{"Bonus":0,"Continent":"K24","ID":45194,"Name":".achim.","PlayerID":6936607,"Points":4414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45194","ServerKey":"pl181","X":481,"Y":294},{"Bonus":0,"Continent":"K46","ID":45195,"Name":"BACÓWKA |025|","PlayerID":7394371,"Points":6043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45195","ServerKey":"pl181","X":634,"Y":407},{"Bonus":4,"Continent":"K53","ID":45196,"Name":"025","PlayerID":849098688,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45196","ServerKey":"pl181","X":301,"Y":566},{"Bonus":0,"Continent":"K57","ID":45197,"Name":"027","PlayerID":699150527,"Points":8017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45197","ServerKey":"pl181","X":705,"Y":507},{"Bonus":0,"Continent":"K66","ID":45198,"Name":"Bessa 003","PlayerID":848987051,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45198","ServerKey":"pl181","X":639,"Y":659},{"Bonus":0,"Continent":"K25","ID":45199,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45199","ServerKey":"pl181","X":530,"Y":298},{"Bonus":0,"Continent":"K63","ID":45200,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45200","ServerKey":"pl181","X":361,"Y":650},{"Bonus":0,"Continent":"K33","ID":45201,"Name":"006","PlayerID":849101205,"Points":6885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45201","ServerKey":"pl181","X":355,"Y":350},{"Bonus":0,"Continent":"K33","ID":45202,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":3846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45202","ServerKey":"pl181","X":341,"Y":374},{"Bonus":0,"Continent":"K63","ID":45203,"Name":"Taran","PlayerID":6180190,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45203","ServerKey":"pl181","X":325,"Y":618},{"Bonus":0,"Continent":"K25","ID":45204,"Name":"AAA","PlayerID":1006847,"Points":6177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45204","ServerKey":"pl181","X":549,"Y":294},{"Bonus":0,"Continent":"K66","ID":45205,"Name":"komandos","PlayerID":7976264,"Points":8661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45205","ServerKey":"pl181","X":633,"Y":662},{"Bonus":0,"Continent":"K33","ID":45206,"Name":"Szlachcic","PlayerID":698388578,"Points":8174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45206","ServerKey":"pl181","X":362,"Y":342},{"Bonus":0,"Continent":"K36","ID":45207,"Name":"035","PlayerID":699298370,"Points":3035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45207","ServerKey":"pl181","X":616,"Y":395},{"Bonus":0,"Continent":"K43","ID":45208,"Name":"Aberdeen 1","PlayerID":699852080,"Points":952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45208","ServerKey":"pl181","X":302,"Y":426},{"Bonus":0,"Continent":"K74","ID":45209,"Name":"0054 Wioska Nieƛmiertelny97","PlayerID":849037407,"Points":5243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45209","ServerKey":"pl181","X":447,"Y":704},{"Bonus":0,"Continent":"K56","ID":45210,"Name":"S020","PlayerID":8428196,"Points":4713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45210","ServerKey":"pl181","X":685,"Y":584},{"Bonus":0,"Continent":"K36","ID":45211,"Name":"wioska","PlayerID":849102068,"Points":4347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45211","ServerKey":"pl181","X":633,"Y":338},{"Bonus":0,"Continent":"K65","ID":45212,"Name":"OstroĆŒanka","PlayerID":698723158,"Points":6894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45212","ServerKey":"pl181","X":571,"Y":697},{"Bonus":0,"Continent":"K42","ID":45213,"Name":"EO EO","PlayerID":699697558,"Points":8427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45213","ServerKey":"pl181","X":294,"Y":495},{"Bonus":0,"Continent":"K33","ID":45214,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":1603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45214","ServerKey":"pl181","X":358,"Y":343},{"Bonus":0,"Continent":"K63","ID":45215,"Name":"0128","PlayerID":7085510,"Points":8587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45215","ServerKey":"pl181","X":393,"Y":684},{"Bonus":0,"Continent":"K36","ID":45216,"Name":"XDX","PlayerID":699098531,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45216","ServerKey":"pl181","X":603,"Y":320},{"Bonus":0,"Continent":"K66","ID":45217,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45217","ServerKey":"pl181","X":631,"Y":660},{"Bonus":0,"Continent":"K42","ID":45218,"Name":"Dream on","PlayerID":698962117,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45218","ServerKey":"pl181","X":293,"Y":494},{"Bonus":0,"Continent":"K75","ID":45219,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":7237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45219","ServerKey":"pl181","X":500,"Y":703},{"Bonus":0,"Continent":"K36","ID":45220,"Name":"East1","PlayerID":1086351,"Points":7874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45220","ServerKey":"pl181","X":681,"Y":383},{"Bonus":0,"Continent":"K46","ID":45221,"Name":"099. Mruva","PlayerID":8337151,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45221","ServerKey":"pl181","X":619,"Y":478},{"Bonus":0,"Continent":"K24","ID":45222,"Name":"Dantyszka","PlayerID":698848373,"Points":2918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45222","ServerKey":"pl181","X":477,"Y":297},{"Bonus":0,"Continent":"K52","ID":45223,"Name":"Wioska barbarzyƄska1","PlayerID":698879638,"Points":2575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45223","ServerKey":"pl181","X":291,"Y":508},{"Bonus":0,"Continent":"K66","ID":45224,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45224","ServerKey":"pl181","X":657,"Y":640},{"Bonus":0,"Continent":"K56","ID":45225,"Name":"091 Tomek","PlayerID":2135129,"Points":6727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45225","ServerKey":"pl181","X":680,"Y":513},{"Bonus":0,"Continent":"K42","ID":45226,"Name":"DDDQ","PlayerID":848889556,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45226","ServerKey":"pl181","X":289,"Y":475},{"Bonus":0,"Continent":"K56","ID":45227,"Name":"tomek016 VI","PlayerID":8811880,"Points":1888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45227","ServerKey":"pl181","X":693,"Y":569},{"Bonus":0,"Continent":"K63","ID":45228,"Name":"0159","PlayerID":7085510,"Points":5147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45228","ServerKey":"pl181","X":386,"Y":678},{"Bonus":0,"Continent":"K74","ID":45229,"Name":"FP020","PlayerID":699605333,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45229","ServerKey":"pl181","X":472,"Y":705},{"Bonus":0,"Continent":"K75","ID":45230,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45230","ServerKey":"pl181","X":506,"Y":705},{"Bonus":0,"Continent":"K36","ID":45231,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45231","ServerKey":"pl181","X":618,"Y":330},{"Bonus":0,"Continent":"K66","ID":45232,"Name":"Ć»UBEREK 018","PlayerID":33900,"Points":6222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45232","ServerKey":"pl181","X":607,"Y":679},{"Bonus":0,"Continent":"K43","ID":45233,"Name":"DZIADZIOR","PlayerID":699127156,"Points":5484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45233","ServerKey":"pl181","X":309,"Y":407},{"Bonus":0,"Continent":"K63","ID":45234,"Name":"#003 Los Angeles","PlayerID":849101276,"Points":6081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45234","ServerKey":"pl181","X":319,"Y":611},{"Bonus":0,"Continent":"K24","ID":45235,"Name":"[0131]","PlayerID":8630972,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45235","ServerKey":"pl181","X":443,"Y":297},{"Bonus":0,"Continent":"K34","ID":45237,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45237","ServerKey":"pl181","X":408,"Y":308},{"Bonus":0,"Continent":"K46","ID":45238,"Name":"I008","PlayerID":699722599,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45238","ServerKey":"pl181","X":672,"Y":446},{"Bonus":0,"Continent":"K52","ID":45239,"Name":"C0211","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45239","ServerKey":"pl181","X":298,"Y":534},{"Bonus":0,"Continent":"K33","ID":45241,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":7015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45241","ServerKey":"pl181","X":384,"Y":326},{"Bonus":0,"Continent":"K42","ID":45242,"Name":"Dust in the wind.","PlayerID":849001277,"Points":6457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45242","ServerKey":"pl181","X":289,"Y":480},{"Bonus":0,"Continent":"K65","ID":45243,"Name":"Wioska Zawodnika 2","PlayerID":698655859,"Points":6485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45243","ServerKey":"pl181","X":580,"Y":694},{"Bonus":0,"Continent":"K65","ID":45244,"Name":"ChwaƂowice","PlayerID":698723158,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45244","ServerKey":"pl181","X":568,"Y":696},{"Bonus":0,"Continent":"K74","ID":45245,"Name":"~085.","PlayerID":7139820,"Points":2970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45245","ServerKey":"pl181","X":468,"Y":700},{"Bonus":0,"Continent":"K33","ID":45246,"Name":"New Land 18","PlayerID":849064752,"Points":3633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45246","ServerKey":"pl181","X":331,"Y":374},{"Bonus":0,"Continent":"K42","ID":45247,"Name":"Wiadrowo GĂłrne","PlayerID":849100877,"Points":11819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45247","ServerKey":"pl181","X":287,"Y":489},{"Bonus":0,"Continent":"K43","ID":45248,"Name":"Z06","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45248","ServerKey":"pl181","X":315,"Y":409},{"Bonus":0,"Continent":"K43","ID":45249,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45249","ServerKey":"pl181","X":315,"Y":401},{"Bonus":0,"Continent":"K36","ID":45250,"Name":"[199]","PlayerID":8000875,"Points":6756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45250","ServerKey":"pl181","X":679,"Y":391},{"Bonus":1,"Continent":"K33","ID":45251,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45251","ServerKey":"pl181","X":329,"Y":391},{"Bonus":0,"Continent":"K46","ID":45252,"Name":"FioƂkowe Pole","PlayerID":699785935,"Points":7976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45252","ServerKey":"pl181","X":694,"Y":428},{"Bonus":0,"Continent":"K74","ID":45255,"Name":"0037","PlayerID":699280514,"Points":8374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45255","ServerKey":"pl181","X":462,"Y":708},{"Bonus":3,"Continent":"K24","ID":45256,"Name":".achim.","PlayerID":6936607,"Points":7931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45256","ServerKey":"pl181","X":483,"Y":290},{"Bonus":0,"Continent":"K74","ID":45257,"Name":"0.07 PseƂfeƂ","PlayerID":699725436,"Points":9491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45257","ServerKey":"pl181","X":467,"Y":705},{"Bonus":0,"Continent":"K64","ID":45258,"Name":"015","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45258","ServerKey":"pl181","X":409,"Y":689},{"Bonus":0,"Continent":"K24","ID":45259,"Name":"246...Kaban1998","PlayerID":6920960,"Points":9798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45259","ServerKey":"pl181","X":457,"Y":293},{"Bonus":0,"Continent":"K66","ID":45260,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45260","ServerKey":"pl181","X":637,"Y":660},{"Bonus":0,"Continent":"K36","ID":45261,"Name":"*W006","PlayerID":7758085,"Points":5631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45261","ServerKey":"pl181","X":666,"Y":377},{"Bonus":0,"Continent":"K36","ID":45262,"Name":"Angella x","PlayerID":699875213,"Points":2293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45262","ServerKey":"pl181","X":652,"Y":352},{"Bonus":4,"Continent":"K35","ID":45263,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45263","ServerKey":"pl181","X":576,"Y":303},{"Bonus":0,"Continent":"K53","ID":45264,"Name":"064.","PlayerID":3475079,"Points":2397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45264","ServerKey":"pl181","X":320,"Y":592},{"Bonus":0,"Continent":"K36","ID":45265,"Name":"wioska","PlayerID":9291984,"Points":7938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45265","ServerKey":"pl181","X":635,"Y":341},{"Bonus":0,"Continent":"K66","ID":45266,"Name":"004181","PlayerID":699872616,"Points":5062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45266","ServerKey":"pl181","X":631,"Y":658},{"Bonus":0,"Continent":"K65","ID":45267,"Name":"Edda","PlayerID":699567608,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45267","ServerKey":"pl181","X":587,"Y":676},{"Bonus":0,"Continent":"K74","ID":45268,"Name":"046.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45268","ServerKey":"pl181","X":443,"Y":706},{"Bonus":0,"Continent":"K35","ID":45269,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45269","ServerKey":"pl181","X":548,"Y":302},{"Bonus":0,"Continent":"K34","ID":45270,"Name":"[0107]","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45270","ServerKey":"pl181","X":441,"Y":301},{"Bonus":0,"Continent":"K66","ID":45271,"Name":"Wygwizdowa 006","PlayerID":698562644,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45271","ServerKey":"pl181","X":634,"Y":656},{"Bonus":0,"Continent":"K52","ID":45272,"Name":"009","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45272","ServerKey":"pl181","X":298,"Y":553},{"Bonus":0,"Continent":"K66","ID":45273,"Name":"S024","PlayerID":8428196,"Points":2510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45273","ServerKey":"pl181","X":685,"Y":600},{"Bonus":0,"Continent":"K34","ID":45274,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45274","ServerKey":"pl181","X":405,"Y":311},{"Bonus":5,"Continent":"K64","ID":45275,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45275","ServerKey":"pl181","X":425,"Y":697},{"Bonus":0,"Continent":"K43","ID":45277,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45277","ServerKey":"pl181","X":300,"Y":433},{"Bonus":8,"Continent":"K52","ID":45278,"Name":"[D]_[003] Dejv.oldplyr","PlayerID":699380607,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45278","ServerKey":"pl181","X":287,"Y":504},{"Bonus":0,"Continent":"K52","ID":45279,"Name":"C0202","PlayerID":8841266,"Points":7811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45279","ServerKey":"pl181","X":298,"Y":529},{"Bonus":0,"Continent":"K57","ID":45280,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":7650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45280","ServerKey":"pl181","X":710,"Y":503},{"Bonus":0,"Continent":"K34","ID":45281,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45281","ServerKey":"pl181","X":408,"Y":310},{"Bonus":0,"Continent":"K66","ID":45282,"Name":"024.","PlayerID":699695167,"Points":4986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45282","ServerKey":"pl181","X":631,"Y":668},{"Bonus":0,"Continent":"K34","ID":45283,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":6620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45283","ServerKey":"pl181","X":428,"Y":325},{"Bonus":0,"Continent":"K34","ID":45284,"Name":"136.Stradi","PlayerID":698365960,"Points":3304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45284","ServerKey":"pl181","X":430,"Y":309},{"Bonus":0,"Continent":"K33","ID":45285,"Name":"0034","PlayerID":2321390,"Points":2322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45285","ServerKey":"pl181","X":324,"Y":381},{"Bonus":0,"Continent":"K42","ID":45286,"Name":"Aaaaxxx","PlayerID":848981726,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45286","ServerKey":"pl181","X":292,"Y":464},{"Bonus":4,"Continent":"K42","ID":45287,"Name":"Dream on","PlayerID":698962117,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45287","ServerKey":"pl181","X":294,"Y":479},{"Bonus":0,"Continent":"K66","ID":45288,"Name":"Vanaheim","PlayerID":849096631,"Points":1756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45288","ServerKey":"pl181","X":670,"Y":612},{"Bonus":0,"Continent":"K66","ID":45289,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45289","ServerKey":"pl181","X":650,"Y":648},{"Bonus":0,"Continent":"K43","ID":45290,"Name":"Z10","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45290","ServerKey":"pl181","X":315,"Y":407},{"Bonus":0,"Continent":"K56","ID":45291,"Name":"EE 003","PlayerID":849100149,"Points":9502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45291","ServerKey":"pl181","X":695,"Y":580},{"Bonus":0,"Continent":"K33","ID":45292,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45292","ServerKey":"pl181","X":327,"Y":392},{"Bonus":0,"Continent":"K33","ID":45293,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45293","ServerKey":"pl181","X":343,"Y":366},{"Bonus":0,"Continent":"K47","ID":45294,"Name":"C07","PlayerID":849093742,"Points":6088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45294","ServerKey":"pl181","X":705,"Y":448},{"Bonus":7,"Continent":"K33","ID":45295,"Name":"22 Perm","PlayerID":698231772,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45295","ServerKey":"pl181","X":396,"Y":317},{"Bonus":0,"Continent":"K53","ID":45296,"Name":"014","PlayerID":6180190,"Points":6206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45296","ServerKey":"pl181","X":316,"Y":595},{"Bonus":2,"Continent":"K66","ID":45297,"Name":"komandos","PlayerID":7976264,"Points":8909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45297","ServerKey":"pl181","X":636,"Y":660},{"Bonus":0,"Continent":"K46","ID":45298,"Name":"ostroƂęka","PlayerID":849100082,"Points":7063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45298","ServerKey":"pl181","X":686,"Y":476},{"Bonus":0,"Continent":"K52","ID":45299,"Name":"Wioska haga","PlayerID":698368493,"Points":3628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45299","ServerKey":"pl181","X":291,"Y":512},{"Bonus":0,"Continent":"K46","ID":45301,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":6037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45301","ServerKey":"pl181","X":697,"Y":443},{"Bonus":0,"Continent":"K52","ID":45302,"Name":"EO EO","PlayerID":699697558,"Points":6858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45302","ServerKey":"pl181","X":290,"Y":526},{"Bonus":0,"Continent":"K66","ID":45303,"Name":"016 GĂłrki Minimalistyczne","PlayerID":849100994,"Points":4003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45303","ServerKey":"pl181","X":653,"Y":638},{"Bonus":4,"Continent":"K43","ID":45305,"Name":"013 VWF Wioska barbarzyƄska","PlayerID":3108144,"Points":3509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45305","ServerKey":"pl181","X":309,"Y":422},{"Bonus":0,"Continent":"K63","ID":45306,"Name":"C089","PlayerID":699383279,"Points":8016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45306","ServerKey":"pl181","X":362,"Y":662},{"Bonus":0,"Continent":"K64","ID":45307,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45307","ServerKey":"pl181","X":435,"Y":693},{"Bonus":0,"Continent":"K33","ID":45308,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45308","ServerKey":"pl181","X":364,"Y":343},{"Bonus":0,"Continent":"K24","ID":45309,"Name":"#0265 olcixx","PlayerID":1238300,"Points":4851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45309","ServerKey":"pl181","X":463,"Y":292},{"Bonus":0,"Continent":"K63","ID":45310,"Name":"C111","PlayerID":699383279,"Points":6298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45310","ServerKey":"pl181","X":354,"Y":654},{"Bonus":0,"Continent":"K24","ID":45311,"Name":".achim.","PlayerID":6936607,"Points":3848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45311","ServerKey":"pl181","X":478,"Y":297},{"Bonus":5,"Continent":"K24","ID":45312,"Name":"????","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45312","ServerKey":"pl181","X":494,"Y":292},{"Bonus":0,"Continent":"K42","ID":45313,"Name":"006","PlayerID":848895676,"Points":3867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45313","ServerKey":"pl181","X":297,"Y":469},{"Bonus":0,"Continent":"K24","ID":45314,"Name":"258...Karki98","PlayerID":6920960,"Points":4879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45314","ServerKey":"pl181","X":453,"Y":294},{"Bonus":0,"Continent":"K24","ID":45315,"Name":"045","PlayerID":2502956,"Points":9652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45315","ServerKey":"pl181","X":452,"Y":299},{"Bonus":0,"Continent":"K66","ID":45316,"Name":"Wioska Zorro 017","PlayerID":849080702,"Points":6488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45316","ServerKey":"pl181","X":678,"Y":611},{"Bonus":0,"Continent":"K24","ID":45317,"Name":"#0268 olcixx","PlayerID":1238300,"Points":6638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45317","ServerKey":"pl181","X":465,"Y":297},{"Bonus":0,"Continent":"K75","ID":45318,"Name":"yks","PlayerID":8980651,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45318","ServerKey":"pl181","X":536,"Y":704},{"Bonus":0,"Continent":"K43","ID":45319,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45319","ServerKey":"pl181","X":301,"Y":437},{"Bonus":0,"Continent":"K63","ID":45320,"Name":"001 Zaczynamy","PlayerID":698908184,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45320","ServerKey":"pl181","X":344,"Y":635},{"Bonus":0,"Continent":"K65","ID":45321,"Name":"###095###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45321","ServerKey":"pl181","X":592,"Y":692},{"Bonus":0,"Continent":"K64","ID":45322,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45322","ServerKey":"pl181","X":421,"Y":695},{"Bonus":0,"Continent":"K63","ID":45323,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45323","ServerKey":"pl181","X":368,"Y":654},{"Bonus":0,"Continent":"K36","ID":45324,"Name":"Wioska barbarzyƄska","PlayerID":849102068,"Points":2312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45324","ServerKey":"pl181","X":632,"Y":342},{"Bonus":0,"Continent":"K56","ID":45325,"Name":"026","PlayerID":6160655,"Points":8503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45325","ServerKey":"pl181","X":679,"Y":599},{"Bonus":0,"Continent":"K45","ID":45326,"Name":"IQ155","PlayerID":699368887,"Points":6277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45326","ServerKey":"pl181","X":551,"Y":452},{"Bonus":0,"Continent":"K46","ID":45327,"Name":"Ubijam","PlayerID":699785935,"Points":5053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45327","ServerKey":"pl181","X":690,"Y":404},{"Bonus":0,"Continent":"K74","ID":45329,"Name":"040. Night Raid","PlayerID":699684062,"Points":6079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45329","ServerKey":"pl181","X":485,"Y":711},{"Bonus":0,"Continent":"K46","ID":45330,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":7010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45330","ServerKey":"pl181","X":683,"Y":412},{"Bonus":0,"Continent":"K47","ID":45331,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":6996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45331","ServerKey":"pl181","X":707,"Y":469},{"Bonus":0,"Continent":"K74","ID":45332,"Name":"Wioska barbarzyƄska 4","PlayerID":698178312,"Points":4529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45332","ServerKey":"pl181","X":453,"Y":703},{"Bonus":0,"Continent":"K66","ID":45333,"Name":"001 yuri09","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45333","ServerKey":"pl181","X":605,"Y":681},{"Bonus":0,"Continent":"K33","ID":45334,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45334","ServerKey":"pl181","X":328,"Y":391},{"Bonus":0,"Continent":"K47","ID":45337,"Name":"C.020","PlayerID":9188016,"Points":5087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45337","ServerKey":"pl181","X":707,"Y":480},{"Bonus":0,"Continent":"K52","ID":45338,"Name":"007","PlayerID":849098688,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45338","ServerKey":"pl181","X":295,"Y":551},{"Bonus":0,"Continent":"K66","ID":45340,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45340","ServerKey":"pl181","X":649,"Y":651},{"Bonus":0,"Continent":"K36","ID":45341,"Name":"!36 65 Horodnic de Jos","PlayerID":698361257,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45341","ServerKey":"pl181","X":653,"Y":362},{"Bonus":0,"Continent":"K66","ID":45342,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45342","ServerKey":"pl181","X":657,"Y":639},{"Bonus":0,"Continent":"K36","ID":45343,"Name":"034","PlayerID":698635863,"Points":9478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45343","ServerKey":"pl181","X":673,"Y":381},{"Bonus":0,"Continent":"K64","ID":45344,"Name":"068","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45344","ServerKey":"pl181","X":406,"Y":683},{"Bonus":2,"Continent":"K33","ID":45345,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":9931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45345","ServerKey":"pl181","X":383,"Y":332},{"Bonus":0,"Continent":"K36","ID":45346,"Name":"!36 66 Varfu Deaulului","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45346","ServerKey":"pl181","X":664,"Y":365},{"Bonus":0,"Continent":"K25","ID":45348,"Name":"Abu zabi","PlayerID":699208929,"Points":8889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45348","ServerKey":"pl181","X":514,"Y":297},{"Bonus":2,"Continent":"K65","ID":45349,"Name":"###003###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45349","ServerKey":"pl181","X":592,"Y":691},{"Bonus":0,"Continent":"K66","ID":45350,"Name":"DĆŒejdĆŒej 1","PlayerID":849098326,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45350","ServerKey":"pl181","X":665,"Y":632},{"Bonus":0,"Continent":"K53","ID":45351,"Name":"Ave Why!","PlayerID":6180190,"Points":4104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45351","ServerKey":"pl181","X":310,"Y":593},{"Bonus":0,"Continent":"K63","ID":45352,"Name":"Hodges Gen.","PlayerID":272173,"Points":4982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45352","ServerKey":"pl181","X":353,"Y":641},{"Bonus":0,"Continent":"K47","ID":45353,"Name":"005","PlayerID":699150527,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45353","ServerKey":"pl181","X":712,"Y":499},{"Bonus":0,"Continent":"K46","ID":45354,"Name":"I110","PlayerID":699722599,"Points":6640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45354","ServerKey":"pl181","X":697,"Y":448},{"Bonus":0,"Continent":"K33","ID":45355,"Name":"zajazd /3","PlayerID":849027025,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45355","ServerKey":"pl181","X":352,"Y":352},{"Bonus":0,"Continent":"K75","ID":45356,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":1963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45356","ServerKey":"pl181","X":508,"Y":713},{"Bonus":0,"Continent":"K36","ID":45357,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45357","ServerKey":"pl181","X":650,"Y":352},{"Bonus":0,"Continent":"K46","ID":45358,"Name":"20.2PM","PlayerID":9180206,"Points":7935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45358","ServerKey":"pl181","X":686,"Y":419},{"Bonus":0,"Continent":"K52","ID":45359,"Name":"C0346","PlayerID":8841266,"Points":1763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45359","ServerKey":"pl181","X":297,"Y":537},{"Bonus":0,"Continent":"K43","ID":45360,"Name":"006","PlayerID":8259895,"Points":4776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45360","ServerKey":"pl181","X":308,"Y":422},{"Bonus":0,"Continent":"K36","ID":45361,"Name":"Wioska barbarzyƄska","PlayerID":698361257,"Points":2947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45361","ServerKey":"pl181","X":655,"Y":359},{"Bonus":0,"Continent":"K63","ID":45362,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45362","ServerKey":"pl181","X":361,"Y":653},{"Bonus":0,"Continent":"K74","ID":45363,"Name":"0039","PlayerID":699280514,"Points":2874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45363","ServerKey":"pl181","X":477,"Y":711},{"Bonus":0,"Continent":"K66","ID":45364,"Name":"018 telimena","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45364","ServerKey":"pl181","X":615,"Y":676},{"Bonus":2,"Continent":"K63","ID":45365,"Name":"C060","PlayerID":699383279,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45365","ServerKey":"pl181","X":356,"Y":656},{"Bonus":0,"Continent":"K36","ID":45366,"Name":"039","PlayerID":9148043,"Points":5639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45366","ServerKey":"pl181","X":652,"Y":351},{"Bonus":0,"Continent":"K64","ID":45367,"Name":"091","PlayerID":849099876,"Points":7880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45367","ServerKey":"pl181","X":410,"Y":693},{"Bonus":0,"Continent":"K43","ID":45368,"Name":"Dzik 10","PlayerID":8366045,"Points":6477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45368","ServerKey":"pl181","X":302,"Y":439},{"Bonus":7,"Continent":"K36","ID":45369,"Name":"Wioska barbarzyƄska","PlayerID":8740199,"Points":9700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45369","ServerKey":"pl181","X":625,"Y":333},{"Bonus":0,"Continent":"K52","ID":45370,"Name":"C0134","PlayerID":8841266,"Points":9466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45370","ServerKey":"pl181","X":298,"Y":524},{"Bonus":0,"Continent":"K65","ID":45371,"Name":"Borcuchy","PlayerID":698723158,"Points":5415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45371","ServerKey":"pl181","X":565,"Y":696},{"Bonus":0,"Continent":"K33","ID":45372,"Name":"9_Franekkimono510_9","PlayerID":849099422,"Points":4383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45372","ServerKey":"pl181","X":361,"Y":342},{"Bonus":0,"Continent":"K52","ID":45373,"Name":"009 Kruszwica","PlayerID":9235561,"Points":5282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45373","ServerKey":"pl181","X":292,"Y":529},{"Bonus":0,"Continent":"K63","ID":45374,"Name":"psycha sitting","PlayerID":699736927,"Points":4331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45374","ServerKey":"pl181","X":396,"Y":676},{"Bonus":0,"Continent":"K43","ID":45375,"Name":"25 Wiocha 5.. ...","PlayerID":849018442,"Points":9059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45375","ServerKey":"pl181","X":303,"Y":437},{"Bonus":0,"Continent":"K65","ID":45376,"Name":"###096###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45376","ServerKey":"pl181","X":586,"Y":687},{"Bonus":0,"Continent":"K63","ID":45377,"Name":"C055","PlayerID":699383279,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45377","ServerKey":"pl181","X":365,"Y":657},{"Bonus":0,"Continent":"K42","ID":45378,"Name":"Zielony2","PlayerID":699876746,"Points":3507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45378","ServerKey":"pl181","X":295,"Y":447},{"Bonus":0,"Continent":"K33","ID":45380,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45380","ServerKey":"pl181","X":358,"Y":344},{"Bonus":0,"Continent":"K57","ID":45382,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45382","ServerKey":"pl181","X":705,"Y":539},{"Bonus":0,"Continent":"K64","ID":45383,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45383","ServerKey":"pl181","X":421,"Y":691},{"Bonus":0,"Continent":"K64","ID":45384,"Name":"120","PlayerID":849099876,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45384","ServerKey":"pl181","X":417,"Y":695},{"Bonus":0,"Continent":"K43","ID":45385,"Name":"WydziaƂ zamiejscowy 2","PlayerID":699821629,"Points":5173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45385","ServerKey":"pl181","X":301,"Y":424},{"Bonus":0,"Continent":"K33","ID":45386,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45386","ServerKey":"pl181","X":320,"Y":392},{"Bonus":0,"Continent":"K36","ID":45387,"Name":"XDX","PlayerID":699098531,"Points":10092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45387","ServerKey":"pl181","X":609,"Y":318},{"Bonus":0,"Continent":"K42","ID":45388,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45388","ServerKey":"pl181","X":293,"Y":452},{"Bonus":0,"Continent":"K74","ID":45389,"Name":"A000","PlayerID":699725436,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45389","ServerKey":"pl181","X":466,"Y":702},{"Bonus":0,"Continent":"K46","ID":45390,"Name":"Obok myƛli","PlayerID":699785935,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45390","ServerKey":"pl181","X":691,"Y":403},{"Bonus":0,"Continent":"K66","ID":45391,"Name":"Wiadro11","PlayerID":8677963,"Points":6844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45391","ServerKey":"pl181","X":673,"Y":624},{"Bonus":0,"Continent":"K63","ID":45392,"Name":"Wioska Duszkowsky 005","PlayerID":849101579,"Points":5736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45392","ServerKey":"pl181","X":359,"Y":657},{"Bonus":0,"Continent":"K66","ID":45393,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45393","ServerKey":"pl181","X":666,"Y":621},{"Bonus":0,"Continent":"K33","ID":45394,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45394","ServerKey":"pl181","X":394,"Y":315},{"Bonus":0,"Continent":"K43","ID":45396,"Name":"Z24","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45396","ServerKey":"pl181","X":311,"Y":412},{"Bonus":0,"Continent":"K66","ID":45397,"Name":"Tzarski-02","PlayerID":699783063,"Points":2628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45397","ServerKey":"pl181","X":646,"Y":654},{"Bonus":0,"Continent":"K56","ID":45398,"Name":"Flowers","PlayerID":848926293,"Points":2793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45398","ServerKey":"pl181","X":696,"Y":565},{"Bonus":2,"Continent":"K33","ID":45399,"Name":"2 RAMMSTEIN","PlayerID":6315553,"Points":2393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45399","ServerKey":"pl181","X":346,"Y":354},{"Bonus":0,"Continent":"K65","ID":45400,"Name":"###039###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45400","ServerKey":"pl181","X":596,"Y":684},{"Bonus":1,"Continent":"K46","ID":45401,"Name":"03.SUJU","PlayerID":9180206,"Points":8647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45401","ServerKey":"pl181","X":689,"Y":417},{"Bonus":0,"Continent":"K52","ID":45402,"Name":"EO EO","PlayerID":699697558,"Points":9040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45402","ServerKey":"pl181","X":291,"Y":520},{"Bonus":0,"Continent":"K65","ID":45403,"Name":"###040###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45403","ServerKey":"pl181","X":598,"Y":686},{"Bonus":0,"Continent":"K35","ID":45404,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45404","ServerKey":"pl181","X":582,"Y":313},{"Bonus":0,"Continent":"K57","ID":45405,"Name":"014","PlayerID":7085502,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45405","ServerKey":"pl181","X":716,"Y":514},{"Bonus":0,"Continent":"K24","ID":45406,"Name":"#0303 LAROX","PlayerID":1238300,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45406","ServerKey":"pl181","X":458,"Y":294},{"Bonus":5,"Continent":"K33","ID":45407,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":4832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45407","ServerKey":"pl181","X":337,"Y":370},{"Bonus":0,"Continent":"K42","ID":45408,"Name":"Wioska X04","PlayerID":698701911,"Points":2761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45408","ServerKey":"pl181","X":298,"Y":466},{"Bonus":0,"Continent":"K52","ID":45409,"Name":"044","PlayerID":9280477,"Points":5592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45409","ServerKey":"pl181","X":293,"Y":538},{"Bonus":0,"Continent":"K53","ID":45410,"Name":"032","PlayerID":9280477,"Points":5746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45410","ServerKey":"pl181","X":300,"Y":561},{"Bonus":0,"Continent":"K66","ID":45411,"Name":"Parking4","PlayerID":6528152,"Points":5668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45411","ServerKey":"pl181","X":619,"Y":676},{"Bonus":0,"Continent":"K36","ID":45412,"Name":"!36 65 Voievodeasa","PlayerID":698361257,"Points":9771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45412","ServerKey":"pl181","X":656,"Y":365},{"Bonus":0,"Continent":"K66","ID":45413,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45413","ServerKey":"pl181","X":633,"Y":661},{"Bonus":3,"Continent":"K42","ID":45414,"Name":"XXX","PlayerID":848977600,"Points":8857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45414","ServerKey":"pl181","X":290,"Y":476},{"Bonus":0,"Continent":"K35","ID":45415,"Name":"--048--","PlayerID":542253,"Points":1670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45415","ServerKey":"pl181","X":564,"Y":302},{"Bonus":0,"Continent":"K42","ID":45416,"Name":"Rakow","PlayerID":8048374,"Points":5741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45416","ServerKey":"pl181","X":298,"Y":474},{"Bonus":0,"Continent":"K57","ID":45417,"Name":"A03","PlayerID":848995478,"Points":7741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45417","ServerKey":"pl181","X":701,"Y":557},{"Bonus":0,"Continent":"K33","ID":45418,"Name":"35 Paleocen","PlayerID":698231772,"Points":4914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45418","ServerKey":"pl181","X":396,"Y":315},{"Bonus":0,"Continent":"K36","ID":45419,"Name":"670|374","PlayerID":699580120,"Points":5089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45419","ServerKey":"pl181","X":670,"Y":374},{"Bonus":0,"Continent":"K33","ID":45420,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45420","ServerKey":"pl181","X":316,"Y":393},{"Bonus":0,"Continent":"K65","ID":45421,"Name":"#047","PlayerID":699605333,"Points":10265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45421","ServerKey":"pl181","X":506,"Y":635},{"Bonus":0,"Continent":"K25","ID":45422,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45422","ServerKey":"pl181","X":521,"Y":289},{"Bonus":0,"Continent":"K74","ID":45423,"Name":"1.04","PlayerID":699827112,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45423","ServerKey":"pl181","X":436,"Y":700},{"Bonus":0,"Continent":"K64","ID":45424,"Name":"144","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45424","ServerKey":"pl181","X":400,"Y":682},{"Bonus":0,"Continent":"K42","ID":45425,"Name":"Avanti!","PlayerID":698625834,"Points":6520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45425","ServerKey":"pl181","X":292,"Y":483},{"Bonus":0,"Continent":"K47","ID":45426,"Name":"C.029","PlayerID":9188016,"Points":4338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45426","ServerKey":"pl181","X":708,"Y":481},{"Bonus":0,"Continent":"K52","ID":45427,"Name":"[0226]","PlayerID":8630972,"Points":6156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45427","ServerKey":"pl181","X":296,"Y":509},{"Bonus":0,"Continent":"K25","ID":45428,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45428","ServerKey":"pl181","X":507,"Y":294},{"Bonus":0,"Continent":"K56","ID":45429,"Name":"S019","PlayerID":8428196,"Points":3970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45429","ServerKey":"pl181","X":689,"Y":591},{"Bonus":0,"Continent":"K63","ID":45430,"Name":"068 - Nowy Początek...","PlayerID":698908184,"Points":7934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45430","ServerKey":"pl181","X":345,"Y":645},{"Bonus":0,"Continent":"K64","ID":45431,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45431","ServerKey":"pl181","X":427,"Y":694},{"Bonus":0,"Continent":"K65","ID":45432,"Name":"Wioska Mogok","PlayerID":698723158,"Points":1499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45432","ServerKey":"pl181","X":580,"Y":686},{"Bonus":0,"Continent":"K57","ID":45433,"Name":"23. Cidaris","PlayerID":8976313,"Points":8164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45433","ServerKey":"pl181","X":702,"Y":535},{"Bonus":0,"Continent":"K47","ID":45434,"Name":"Nic juĆŒ nie muszę","PlayerID":699785935,"Points":8704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45434","ServerKey":"pl181","X":701,"Y":434},{"Bonus":0,"Continent":"K33","ID":45435,"Name":"157...E","PlayerID":6920960,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45435","ServerKey":"pl181","X":398,"Y":313},{"Bonus":0,"Continent":"K33","ID":45436,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45436","ServerKey":"pl181","X":395,"Y":317},{"Bonus":0,"Continent":"K66","ID":45437,"Name":"komandos","PlayerID":7976264,"Points":8600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45437","ServerKey":"pl181","X":633,"Y":664},{"Bonus":0,"Continent":"K36","ID":45438,"Name":"0101","PlayerID":698416970,"Points":5484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45438","ServerKey":"pl181","X":676,"Y":390},{"Bonus":0,"Continent":"K75","ID":45439,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":4544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45439","ServerKey":"pl181","X":564,"Y":702},{"Bonus":0,"Continent":"K24","ID":45440,"Name":"047","PlayerID":2502956,"Points":9779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45440","ServerKey":"pl181","X":455,"Y":296},{"Bonus":1,"Continent":"K47","ID":45441,"Name":"022. Ursus","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45441","ServerKey":"pl181","X":704,"Y":475},{"Bonus":0,"Continent":"K36","ID":45442,"Name":"-009- ChwaƂa Imperium","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45442","ServerKey":"pl181","X":622,"Y":333},{"Bonus":0,"Continent":"K24","ID":45443,"Name":"053.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45443","ServerKey":"pl181","X":448,"Y":296},{"Bonus":0,"Continent":"K33","ID":45444,"Name":"006","PlayerID":8153941,"Points":6194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45444","ServerKey":"pl181","X":394,"Y":323},{"Bonus":0,"Continent":"K47","ID":45445,"Name":"06 Pali się moja Panno","PlayerID":849101845,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45445","ServerKey":"pl181","X":706,"Y":446},{"Bonus":0,"Continent":"K54","ID":45446,"Name":"048. ALFI","PlayerID":8539216,"Points":1471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45446","ServerKey":"pl181","X":479,"Y":572},{"Bonus":0,"Continent":"K42","ID":45447,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45447","ServerKey":"pl181","X":298,"Y":435},{"Bonus":0,"Continent":"K42","ID":45448,"Name":"Wioska X03","PlayerID":698701911,"Points":3974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45448","ServerKey":"pl181","X":297,"Y":466},{"Bonus":0,"Continent":"K43","ID":45450,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":1594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45450","ServerKey":"pl181","X":302,"Y":446},{"Bonus":0,"Continent":"K57","ID":45451,"Name":"044","PlayerID":7085502,"Points":8937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45451","ServerKey":"pl181","X":712,"Y":513},{"Bonus":0,"Continent":"K25","ID":45453,"Name":"D016","PlayerID":699299123,"Points":4416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45453","ServerKey":"pl181","X":560,"Y":298},{"Bonus":0,"Continent":"K24","ID":45454,"Name":"[0121]","PlayerID":8630972,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45454","ServerKey":"pl181","X":445,"Y":294},{"Bonus":0,"Continent":"K75","ID":45455,"Name":"025 invidia","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45455","ServerKey":"pl181","X":520,"Y":707},{"Bonus":0,"Continent":"K53","ID":45456,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":3110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45456","ServerKey":"pl181","X":305,"Y":571},{"Bonus":4,"Continent":"K75","ID":45457,"Name":"BĆșdziągwa","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45457","ServerKey":"pl181","X":556,"Y":706},{"Bonus":0,"Continent":"K74","ID":45458,"Name":"0.04 Kazio i syndrom LEGII","PlayerID":699725436,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45458","ServerKey":"pl181","X":465,"Y":704},{"Bonus":0,"Continent":"K74","ID":45459,"Name":"046. Night Raid","PlayerID":699684062,"Points":3649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45459","ServerKey":"pl181","X":485,"Y":709},{"Bonus":0,"Continent":"K34","ID":45460,"Name":"_1_","PlayerID":9113064,"Points":4358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45460","ServerKey":"pl181","X":493,"Y":334},{"Bonus":0,"Continent":"K36","ID":45461,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45461","ServerKey":"pl181","X":618,"Y":323},{"Bonus":0,"Continent":"K56","ID":45462,"Name":"TWIERDZA .:001:.","PlayerID":7154207,"Points":10120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45462","ServerKey":"pl181","X":692,"Y":578},{"Bonus":0,"Continent":"K74","ID":45463,"Name":"0051 181.01","PlayerID":849037407,"Points":10457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45463","ServerKey":"pl181","X":449,"Y":704},{"Bonus":0,"Continent":"K42","ID":45464,"Name":"Dream on","PlayerID":698962117,"Points":4587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45464","ServerKey":"pl181","X":296,"Y":487},{"Bonus":0,"Continent":"K46","ID":45465,"Name":"Siebie zapytasz","PlayerID":699785935,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45465","ServerKey":"pl181","X":692,"Y":402},{"Bonus":0,"Continent":"K34","ID":45466,"Name":"[0158]","PlayerID":8630972,"Points":8953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45466","ServerKey":"pl181","X":446,"Y":302},{"Bonus":0,"Continent":"K64","ID":45467,"Name":"New World","PlayerID":698152377,"Points":9359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45467","ServerKey":"pl181","X":428,"Y":698},{"Bonus":0,"Continent":"K64","ID":45469,"Name":"psycha sitting","PlayerID":699736927,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45469","ServerKey":"pl181","X":411,"Y":683},{"Bonus":0,"Continent":"K47","ID":45470,"Name":"C03","PlayerID":849093742,"Points":6026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45470","ServerKey":"pl181","X":706,"Y":451},{"Bonus":0,"Continent":"K43","ID":45471,"Name":"003b","PlayerID":8259895,"Points":4475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45471","ServerKey":"pl181","X":304,"Y":412},{"Bonus":0,"Continent":"K46","ID":45472,"Name":"13.TXT","PlayerID":9180206,"Points":8629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45472","ServerKey":"pl181","X":690,"Y":419},{"Bonus":0,"Continent":"K43","ID":45473,"Name":"WB04","PlayerID":356642,"Points":5958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45473","ServerKey":"pl181","X":309,"Y":411},{"Bonus":0,"Continent":"K46","ID":45474,"Name":"Gattacka","PlayerID":699298370,"Points":8020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45474","ServerKey":"pl181","X":691,"Y":431},{"Bonus":0,"Continent":"K43","ID":45475,"Name":"ZA05","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45475","ServerKey":"pl181","X":316,"Y":406},{"Bonus":0,"Continent":"K74","ID":45476,"Name":"075.","PlayerID":699827112,"Points":7533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45476","ServerKey":"pl181","X":454,"Y":708},{"Bonus":0,"Continent":"K43","ID":45477,"Name":"004c","PlayerID":8259895,"Points":8646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45477","ServerKey":"pl181","X":305,"Y":419},{"Bonus":0,"Continent":"K47","ID":45478,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":4988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45478","ServerKey":"pl181","X":713,"Y":485},{"Bonus":0,"Continent":"K33","ID":45479,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45479","ServerKey":"pl181","X":389,"Y":330},{"Bonus":0,"Continent":"K65","ID":45480,"Name":"- 206 - SS","PlayerID":849018239,"Points":7612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45480","ServerKey":"pl181","X":545,"Y":699},{"Bonus":0,"Continent":"K66","ID":45482,"Name":"#K66 0001","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45482","ServerKey":"pl181","X":610,"Y":675},{"Bonus":0,"Continent":"K63","ID":45483,"Name":"012. 137dominik","PlayerID":698908184,"Points":9495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45483","ServerKey":"pl181","X":343,"Y":638},{"Bonus":0,"Continent":"K56","ID":45484,"Name":"006","PlayerID":301602,"Points":4825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45484","ServerKey":"pl181","X":699,"Y":559},{"Bonus":0,"Continent":"K63","ID":45485,"Name":"C023","PlayerID":699383279,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45485","ServerKey":"pl181","X":372,"Y":670},{"Bonus":0,"Continent":"K33","ID":45486,"Name":"0064","PlayerID":848913037,"Points":8241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45486","ServerKey":"pl181","X":368,"Y":336},{"Bonus":0,"Continent":"K33","ID":45487,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45487","ServerKey":"pl181","X":372,"Y":330},{"Bonus":0,"Continent":"K25","ID":45488,"Name":"G006","PlayerID":699208929,"Points":10400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45488","ServerKey":"pl181","X":507,"Y":288},{"Bonus":0,"Continent":"K42","ID":45490,"Name":"Lech","PlayerID":849095376,"Points":3241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45490","ServerKey":"pl181","X":298,"Y":477},{"Bonus":0,"Continent":"K53","ID":45491,"Name":"Wioska barbarzyƄska","PlayerID":699262350,"Points":2693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45491","ServerKey":"pl181","X":338,"Y":522},{"Bonus":0,"Continent":"K33","ID":45492,"Name":"0022","PlayerID":2321390,"Points":8566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45492","ServerKey":"pl181","X":321,"Y":386},{"Bonus":0,"Continent":"K63","ID":45493,"Name":"Taran","PlayerID":6180190,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45493","ServerKey":"pl181","X":326,"Y":621},{"Bonus":0,"Continent":"K36","ID":45494,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":9635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45494","ServerKey":"pl181","X":633,"Y":333},{"Bonus":0,"Continent":"K66","ID":45495,"Name":"014 Narda","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45495","ServerKey":"pl181","X":684,"Y":602},{"Bonus":0,"Continent":"K57","ID":45496,"Name":"024","PlayerID":7085502,"Points":8745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45496","ServerKey":"pl181","X":710,"Y":511},{"Bonus":0,"Continent":"K63","ID":45497,"Name":"XDDD","PlayerID":698908184,"Points":6942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45497","ServerKey":"pl181","X":346,"Y":642},{"Bonus":0,"Continent":"K63","ID":45498,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":6340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45498","ServerKey":"pl181","X":388,"Y":674},{"Bonus":0,"Continent":"K65","ID":45499,"Name":"- 209 - SS","PlayerID":849018239,"Points":7469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45499","ServerKey":"pl181","X":558,"Y":696},{"Bonus":0,"Continent":"K36","ID":45500,"Name":"012 .1. Infanterie-Division","PlayerID":849091899,"Points":3026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45500","ServerKey":"pl181","X":604,"Y":361},{"Bonus":0,"Continent":"K36","ID":45501,"Name":"0083","PlayerID":698416970,"Points":5540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45501","ServerKey":"pl181","X":676,"Y":392},{"Bonus":0,"Continent":"K74","ID":45502,"Name":"Kurnik","PlayerID":699603116,"Points":8476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45502","ServerKey":"pl181","X":478,"Y":711},{"Bonus":0,"Continent":"K33","ID":45503,"Name":"Zaplecze Barba 015","PlayerID":699796330,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45503","ServerKey":"pl181","X":369,"Y":339},{"Bonus":0,"Continent":"K42","ID":45504,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45504","ServerKey":"pl181","X":294,"Y":460},{"Bonus":0,"Continent":"K63","ID":45505,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":6341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45505","ServerKey":"pl181","X":393,"Y":673},{"Bonus":0,"Continent":"K47","ID":45506,"Name":"058. +[Amarant]+","PlayerID":7494497,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45506","ServerKey":"pl181","X":703,"Y":467},{"Bonus":0,"Continent":"K35","ID":45507,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45507","ServerKey":"pl181","X":589,"Y":316},{"Bonus":0,"Continent":"K53","ID":45508,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":4295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45508","ServerKey":"pl181","X":316,"Y":591},{"Bonus":0,"Continent":"K25","ID":45509,"Name":"001","PlayerID":699818726,"Points":8653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45509","ServerKey":"pl181","X":530,"Y":289},{"Bonus":0,"Continent":"K36","ID":45510,"Name":"035","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45510","ServerKey":"pl181","X":672,"Y":377},{"Bonus":0,"Continent":"K57","ID":45511,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":9607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45511","ServerKey":"pl181","X":712,"Y":504},{"Bonus":0,"Continent":"K33","ID":45512,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":7777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45512","ServerKey":"pl181","X":368,"Y":344},{"Bonus":0,"Continent":"K65","ID":45513,"Name":"0320","PlayerID":698659980,"Points":7852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45513","ServerKey":"pl181","X":574,"Y":689},{"Bonus":0,"Continent":"K43","ID":45514,"Name":"Kagusiowo 6","PlayerID":849101268,"Points":5127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45514","ServerKey":"pl181","X":304,"Y":444},{"Bonus":0,"Continent":"K57","ID":45515,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45515","ServerKey":"pl181","X":711,"Y":524},{"Bonus":0,"Continent":"K52","ID":45516,"Name":"Wioska dawszz3","PlayerID":849094688,"Points":5967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45516","ServerKey":"pl181","X":294,"Y":526},{"Bonus":0,"Continent":"K63","ID":45517,"Name":"015 - Nowy Początek...","PlayerID":6948793,"Points":6741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45517","ServerKey":"pl181","X":354,"Y":647},{"Bonus":0,"Continent":"K53","ID":45518,"Name":"Elo Elo 18","PlayerID":699016994,"Points":3164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45518","ServerKey":"pl181","X":313,"Y":582},{"Bonus":1,"Continent":"K36","ID":45519,"Name":"010 Heerenveen","PlayerID":7340529,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45519","ServerKey":"pl181","X":645,"Y":356},{"Bonus":0,"Continent":"K35","ID":45520,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45520","ServerKey":"pl181","X":572,"Y":310},{"Bonus":0,"Continent":"K57","ID":45521,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":8183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45521","ServerKey":"pl181","X":711,"Y":506},{"Bonus":0,"Continent":"K52","ID":45522,"Name":"004","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45522","ServerKey":"pl181","X":296,"Y":555},{"Bonus":0,"Continent":"K25","ID":45523,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45523","ServerKey":"pl181","X":539,"Y":292},{"Bonus":1,"Continent":"K75","ID":45524,"Name":"115 invidia","PlayerID":849093426,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45524","ServerKey":"pl181","X":502,"Y":710},{"Bonus":0,"Continent":"K42","ID":45525,"Name":"Dream on","PlayerID":698962117,"Points":4680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45525","ServerKey":"pl181","X":299,"Y":492},{"Bonus":0,"Continent":"K75","ID":45526,"Name":"122 invidia","PlayerID":849093426,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45526","ServerKey":"pl181","X":504,"Y":706},{"Bonus":0,"Continent":"K65","ID":45527,"Name":"###041###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45527","ServerKey":"pl181","X":584,"Y":687},{"Bonus":0,"Continent":"K42","ID":45528,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45528","ServerKey":"pl181","X":298,"Y":449},{"Bonus":8,"Continent":"K35","ID":45529,"Name":"XXXX","PlayerID":849054951,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45529","ServerKey":"pl181","X":562,"Y":300},{"Bonus":0,"Continent":"K42","ID":45531,"Name":"Avanti!","PlayerID":698625834,"Points":6313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45531","ServerKey":"pl181","X":288,"Y":484},{"Bonus":0,"Continent":"K34","ID":45532,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45532","ServerKey":"pl181","X":422,"Y":304},{"Bonus":0,"Continent":"K75","ID":45533,"Name":"C006","PlayerID":698599365,"Points":6606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45533","ServerKey":"pl181","X":539,"Y":700},{"Bonus":0,"Continent":"K52","ID":45534,"Name":"EO EO","PlayerID":699697558,"Points":8937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45534","ServerKey":"pl181","X":292,"Y":502},{"Bonus":0,"Continent":"K47","ID":45535,"Name":"C.030","PlayerID":9188016,"Points":4471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45535","ServerKey":"pl181","X":711,"Y":481},{"Bonus":0,"Continent":"K36","ID":45536,"Name":"036","PlayerID":698635863,"Points":9611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45536","ServerKey":"pl181","X":669,"Y":380},{"Bonus":0,"Continent":"K24","ID":45537,"Name":"198...segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45537","ServerKey":"pl181","X":438,"Y":297},{"Bonus":0,"Continent":"K75","ID":45538,"Name":"- 272 - SS","PlayerID":849018239,"Points":5680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45538","ServerKey":"pl181","X":550,"Y":701},{"Bonus":0,"Continent":"K63","ID":45539,"Name":"aaaa","PlayerID":6948793,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45539","ServerKey":"pl181","X":388,"Y":672},{"Bonus":0,"Continent":"K74","ID":45540,"Name":"New World","PlayerID":698152377,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45540","ServerKey":"pl181","X":436,"Y":703},{"Bonus":0,"Continent":"K36","ID":45542,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45542","ServerKey":"pl181","X":618,"Y":331},{"Bonus":0,"Continent":"K63","ID":45543,"Name":"O094","PlayerID":272173,"Points":9772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45543","ServerKey":"pl181","X":334,"Y":619},{"Bonus":0,"Continent":"K64","ID":45544,"Name":"3.C.","PlayerID":699777372,"Points":9056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45544","ServerKey":"pl181","X":452,"Y":694},{"Bonus":0,"Continent":"K66","ID":45545,"Name":"04-oss","PlayerID":848921861,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45545","ServerKey":"pl181","X":674,"Y":617},{"Bonus":0,"Continent":"K25","ID":45546,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45546","ServerKey":"pl181","X":502,"Y":293},{"Bonus":0,"Continent":"K75","ID":45547,"Name":"- 277 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45547","ServerKey":"pl181","X":553,"Y":702},{"Bonus":0,"Continent":"K25","ID":45548,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45548","ServerKey":"pl181","X":511,"Y":288},{"Bonus":0,"Continent":"K34","ID":45549,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45549","ServerKey":"pl181","X":415,"Y":315},{"Bonus":7,"Continent":"K64","ID":45550,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45550","ServerKey":"pl181","X":423,"Y":694},{"Bonus":0,"Continent":"K42","ID":45551,"Name":"boh81/50w","PlayerID":848889556,"Points":8138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45551","ServerKey":"pl181","X":298,"Y":470},{"Bonus":0,"Continent":"K63","ID":45552,"Name":"D.030","PlayerID":849088243,"Points":3719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45552","ServerKey":"pl181","X":385,"Y":669},{"Bonus":0,"Continent":"K75","ID":45553,"Name":"C009","PlayerID":698599365,"Points":6492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45553","ServerKey":"pl181","X":542,"Y":704},{"Bonus":0,"Continent":"K75","ID":45554,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45554","ServerKey":"pl181","X":512,"Y":711},{"Bonus":0,"Continent":"K63","ID":45555,"Name":"C021","PlayerID":699383279,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45555","ServerKey":"pl181","X":365,"Y":666},{"Bonus":0,"Continent":"K34","ID":45556,"Name":"#0222 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45556","ServerKey":"pl181","X":451,"Y":302},{"Bonus":0,"Continent":"K35","ID":45557,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45557","ServerKey":"pl181","X":577,"Y":308},{"Bonus":0,"Continent":"K65","ID":45559,"Name":"###097###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45559","ServerKey":"pl181","X":584,"Y":693},{"Bonus":0,"Continent":"K47","ID":45560,"Name":"076 Volantis","PlayerID":2135129,"Points":8059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45560","ServerKey":"pl181","X":702,"Y":432},{"Bonus":0,"Continent":"K36","ID":45561,"Name":"Wioska012","PlayerID":698768565,"Points":5576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45561","ServerKey":"pl181","X":686,"Y":396},{"Bonus":0,"Continent":"K53","ID":45562,"Name":"Cisza","PlayerID":698769107,"Points":3062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45562","ServerKey":"pl181","X":300,"Y":539},{"Bonus":0,"Continent":"K52","ID":45563,"Name":"C0231","PlayerID":8841266,"Points":7020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45563","ServerKey":"pl181","X":294,"Y":547},{"Bonus":0,"Continent":"K47","ID":45564,"Name":"37. Kufe 4","PlayerID":699804790,"Points":2909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45564","ServerKey":"pl181","X":706,"Y":456},{"Bonus":0,"Continent":"K36","ID":45565,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45565","ServerKey":"pl181","X":619,"Y":329},{"Bonus":0,"Continent":"K24","ID":45566,"Name":"#0307 sliwatojo","PlayerID":1238300,"Points":2202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45566","ServerKey":"pl181","X":465,"Y":295},{"Bonus":0,"Continent":"K66","ID":45567,"Name":"o03","PlayerID":699189792,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45567","ServerKey":"pl181","X":609,"Y":682},{"Bonus":0,"Continent":"K63","ID":45568,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":2318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45568","ServerKey":"pl181","X":395,"Y":678},{"Bonus":0,"Continent":"K63","ID":45569,"Name":"C081","PlayerID":699383279,"Points":9154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45569","ServerKey":"pl181","X":360,"Y":658},{"Bonus":0,"Continent":"K56","ID":45570,"Name":"Jaaa","PlayerID":698635863,"Points":10266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45570","ServerKey":"pl181","X":622,"Y":590},{"Bonus":0,"Continent":"K52","ID":45572,"Name":"EO EO","PlayerID":699697558,"Points":8427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45572","ServerKey":"pl181","X":295,"Y":501},{"Bonus":0,"Continent":"K33","ID":45575,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45575","ServerKey":"pl181","X":322,"Y":395},{"Bonus":0,"Continent":"K33","ID":45576,"Name":"##8","PlayerID":2800032,"Points":5881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45576","ServerKey":"pl181","X":349,"Y":355},{"Bonus":0,"Continent":"K63","ID":45577,"Name":"C029","PlayerID":699383279,"Points":6391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45577","ServerKey":"pl181","X":367,"Y":666},{"Bonus":0,"Continent":"K36","ID":45578,"Name":"asd","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45578","ServerKey":"pl181","X":621,"Y":330},{"Bonus":0,"Continent":"K42","ID":45579,"Name":"Avanti!","PlayerID":698625834,"Points":3256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45579","ServerKey":"pl181","X":292,"Y":487},{"Bonus":0,"Continent":"K47","ID":45580,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45580","ServerKey":"pl181","X":712,"Y":498},{"Bonus":0,"Continent":"K66","ID":45581,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45581","ServerKey":"pl181","X":668,"Y":621},{"Bonus":0,"Continent":"K36","ID":45582,"Name":"Na KraƄcu ƚwiata 017","PlayerID":9291984,"Points":4156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45582","ServerKey":"pl181","X":639,"Y":343},{"Bonus":0,"Continent":"K35","ID":45583,"Name":"002","PlayerID":1767876,"Points":6588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45583","ServerKey":"pl181","X":589,"Y":309},{"Bonus":0,"Continent":"K36","ID":45584,"Name":"[200]","PlayerID":8000875,"Points":3369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45584","ServerKey":"pl181","X":680,"Y":385},{"Bonus":0,"Continent":"K36","ID":45585,"Name":"!36 56 Stulpicani","PlayerID":698361257,"Points":7969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45585","ServerKey":"pl181","X":658,"Y":357},{"Bonus":0,"Continent":"K35","ID":45586,"Name":"XDX","PlayerID":699098531,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45586","ServerKey":"pl181","X":597,"Y":311},{"Bonus":0,"Continent":"K75","ID":45587,"Name":"Kurnik","PlayerID":699603116,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45587","ServerKey":"pl181","X":507,"Y":712},{"Bonus":0,"Continent":"K33","ID":45588,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45588","ServerKey":"pl181","X":324,"Y":386},{"Bonus":0,"Continent":"K36","ID":45589,"Name":"B014","PlayerID":8740199,"Points":8608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45589","ServerKey":"pl181","X":623,"Y":330},{"Bonus":0,"Continent":"K46","ID":45590,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":9176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45590","ServerKey":"pl181","X":692,"Y":408},{"Bonus":0,"Continent":"K47","ID":45591,"Name":"A#035","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45591","ServerKey":"pl181","X":710,"Y":487},{"Bonus":0,"Continent":"K33","ID":45592,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":2016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45592","ServerKey":"pl181","X":331,"Y":375},{"Bonus":0,"Continent":"K52","ID":45593,"Name":"C0223","PlayerID":8841266,"Points":5717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45593","ServerKey":"pl181","X":290,"Y":535},{"Bonus":0,"Continent":"K33","ID":45594,"Name":"005","PlayerID":8153941,"Points":7883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45594","ServerKey":"pl181","X":393,"Y":323},{"Bonus":0,"Continent":"K74","ID":45595,"Name":"FP031","PlayerID":699605333,"Points":9396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45595","ServerKey":"pl181","X":471,"Y":708},{"Bonus":0,"Continent":"K42","ID":45596,"Name":"Dream on","PlayerID":698962117,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45596","ServerKey":"pl181","X":294,"Y":490},{"Bonus":0,"Continent":"K66","ID":45597,"Name":"Bessa 010","PlayerID":848987051,"Points":10218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45597","ServerKey":"pl181","X":640,"Y":655},{"Bonus":0,"Continent":"K66","ID":45598,"Name":"S02A","PlayerID":8627359,"Points":4890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45598","ServerKey":"pl181","X":604,"Y":676},{"Bonus":0,"Continent":"K47","ID":45599,"Name":"Wioska barbarzyƄska","PlayerID":8925695,"Points":2647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45599","ServerKey":"pl181","X":708,"Y":480},{"Bonus":0,"Continent":"K57","ID":45600,"Name":"Tego typu!","PlayerID":8418489,"Points":8186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45600","ServerKey":"pl181","X":708,"Y":503},{"Bonus":0,"Continent":"K35","ID":45601,"Name":"AAA","PlayerID":1006847,"Points":7999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45601","ServerKey":"pl181","X":543,"Y":301},{"Bonus":0,"Continent":"K33","ID":45602,"Name":"31 Jura","PlayerID":698231772,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45602","ServerKey":"pl181","X":396,"Y":316},{"Bonus":0,"Continent":"K36","ID":45603,"Name":"056- Mroczna Osada","PlayerID":849035905,"Points":3679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45603","ServerKey":"pl181","X":651,"Y":362},{"Bonus":0,"Continent":"K36","ID":45604,"Name":"*022","PlayerID":7758085,"Points":7062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45604","ServerKey":"pl181","X":668,"Y":370},{"Bonus":0,"Continent":"K66","ID":45605,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45605","ServerKey":"pl181","X":667,"Y":618},{"Bonus":0,"Continent":"K33","ID":45606,"Name":"0067","PlayerID":848913037,"Points":6688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45606","ServerKey":"pl181","X":366,"Y":336},{"Bonus":0,"Continent":"K36","ID":45607,"Name":"!36 65 Bucsoaia","PlayerID":698361257,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45607","ServerKey":"pl181","X":659,"Y":363},{"Bonus":0,"Continent":"K24","ID":45608,"Name":"Winterfell.018","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45608","ServerKey":"pl181","X":446,"Y":293},{"Bonus":0,"Continent":"K42","ID":45609,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45609","ServerKey":"pl181","X":298,"Y":450},{"Bonus":0,"Continent":"K64","ID":45610,"Name":"011","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45610","ServerKey":"pl181","X":407,"Y":691},{"Bonus":0,"Continent":"K66","ID":45611,"Name":"032 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45611","ServerKey":"pl181","X":604,"Y":686},{"Bonus":0,"Continent":"K34","ID":45613,"Name":"=0016=","PlayerID":698231772,"Points":9304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45613","ServerKey":"pl181","X":405,"Y":319},{"Bonus":0,"Continent":"K66","ID":45614,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45614","ServerKey":"pl181","X":658,"Y":641},{"Bonus":0,"Continent":"K66","ID":45615,"Name":"klops33","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45615","ServerKey":"pl181","X":625,"Y":668},{"Bonus":0,"Continent":"K36","ID":45616,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45616","ServerKey":"pl181","X":609,"Y":322},{"Bonus":0,"Continent":"K66","ID":45617,"Name":"025.","PlayerID":699695167,"Points":4280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45617","ServerKey":"pl181","X":628,"Y":667},{"Bonus":0,"Continent":"K34","ID":45619,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45619","ServerKey":"pl181","X":423,"Y":303},{"Bonus":3,"Continent":"K25","ID":45620,"Name":"AAA","PlayerID":1006847,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45620","ServerKey":"pl181","X":550,"Y":294},{"Bonus":0,"Continent":"K24","ID":45622,"Name":"273...gulden","PlayerID":6920960,"Points":4917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45622","ServerKey":"pl181","X":462,"Y":295},{"Bonus":0,"Continent":"K66","ID":45623,"Name":"komandos","PlayerID":7976264,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45623","ServerKey":"pl181","X":639,"Y":662},{"Bonus":0,"Continent":"K24","ID":45624,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45624","ServerKey":"pl181","X":496,"Y":291},{"Bonus":0,"Continent":"K25","ID":45625,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45625","ServerKey":"pl181","X":510,"Y":296},{"Bonus":0,"Continent":"K56","ID":45626,"Name":"S001","PlayerID":8428196,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45626","ServerKey":"pl181","X":683,"Y":592},{"Bonus":0,"Continent":"K66","ID":45627,"Name":"Ryan - Problem","PlayerID":1106220,"Points":1472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45627","ServerKey":"pl181","X":650,"Y":643},{"Bonus":0,"Continent":"K47","ID":45628,"Name":"35. Kufe 2","PlayerID":699804790,"Points":5975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45628","ServerKey":"pl181","X":704,"Y":458},{"Bonus":0,"Continent":"K66","ID":45629,"Name":"DĆŒejdĆŒej 2","PlayerID":849098326,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45629","ServerKey":"pl181","X":665,"Y":629},{"Bonus":0,"Continent":"K64","ID":45630,"Name":"069","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45630","ServerKey":"pl181","X":406,"Y":689},{"Bonus":0,"Continent":"K74","ID":45631,"Name":"022Szyja","PlayerID":698620694,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45631","ServerKey":"pl181","X":469,"Y":707},{"Bonus":0,"Continent":"K74","ID":45632,"Name":"Kurnik","PlayerID":699603116,"Points":9593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45632","ServerKey":"pl181","X":476,"Y":712},{"Bonus":0,"Continent":"K74","ID":45633,"Name":"FP011","PlayerID":699605333,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45633","ServerKey":"pl181","X":475,"Y":707},{"Bonus":0,"Continent":"K44","ID":45634,"Name":"0062 ~22~","PlayerID":3909522,"Points":8230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45634","ServerKey":"pl181","X":439,"Y":438},{"Bonus":0,"Continent":"K57","ID":45635,"Name":"41 HoƂopole","PlayerID":8976313,"Points":3862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45635","ServerKey":"pl181","X":704,"Y":536},{"Bonus":0,"Continent":"K33","ID":45636,"Name":"SoƂtys Wsi WojTool","PlayerID":849027025,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45636","ServerKey":"pl181","X":361,"Y":346},{"Bonus":0,"Continent":"K64","ID":45637,"Name":"0033 Kasko14","PlayerID":849037407,"Points":10229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45637","ServerKey":"pl181","X":449,"Y":697},{"Bonus":0,"Continent":"K36","ID":45638,"Name":"Zzzz - Kasztelania 004","PlayerID":9291984,"Points":4458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45638","ServerKey":"pl181","X":642,"Y":352},{"Bonus":9,"Continent":"K42","ID":45639,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45639","ServerKey":"pl181","X":298,"Y":448},{"Bonus":0,"Continent":"K66","ID":45640,"Name":"Bessa 012","PlayerID":848987051,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45640","ServerKey":"pl181","X":641,"Y":655},{"Bonus":0,"Continent":"K57","ID":45641,"Name":"45. Rowan","PlayerID":8976313,"Points":3312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45641","ServerKey":"pl181","X":709,"Y":527},{"Bonus":0,"Continent":"K24","ID":45642,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45642","ServerKey":"pl181","X":498,"Y":290},{"Bonus":0,"Continent":"K52","ID":45643,"Name":"EO EO","PlayerID":699697558,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45643","ServerKey":"pl181","X":289,"Y":521},{"Bonus":0,"Continent":"K63","ID":45644,"Name":"204","PlayerID":699269923,"Points":6791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45644","ServerKey":"pl181","X":366,"Y":662},{"Bonus":0,"Continent":"K46","ID":45645,"Name":"Osada 2","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45645","ServerKey":"pl181","X":694,"Y":426},{"Bonus":2,"Continent":"K74","ID":45646,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45646","ServerKey":"pl181","X":495,"Y":707},{"Bonus":0,"Continent":"K65","ID":45647,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45647","ServerKey":"pl181","X":568,"Y":698},{"Bonus":0,"Continent":"K47","ID":45648,"Name":"C.031","PlayerID":9188016,"Points":4686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45648","ServerKey":"pl181","X":709,"Y":477},{"Bonus":0,"Continent":"K33","ID":45649,"Name":"CiemnogrĂłd #3","PlayerID":849096958,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45649","ServerKey":"pl181","X":337,"Y":363},{"Bonus":0,"Continent":"K52","ID":45650,"Name":"C0216","PlayerID":8841266,"Points":8194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45650","ServerKey":"pl181","X":297,"Y":528},{"Bonus":0,"Continent":"K33","ID":45651,"Name":"008","PlayerID":699660539,"Points":9501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45651","ServerKey":"pl181","X":385,"Y":323},{"Bonus":0,"Continent":"K74","ID":45652,"Name":"0058 181.11","PlayerID":849037407,"Points":5130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45652","ServerKey":"pl181","X":447,"Y":701},{"Bonus":0,"Continent":"K43","ID":45654,"Name":"004a","PlayerID":8259895,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45654","ServerKey":"pl181","X":303,"Y":418},{"Bonus":8,"Continent":"K66","ID":45655,"Name":"012 Gilead","PlayerID":8337151,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45655","ServerKey":"pl181","X":662,"Y":640},{"Bonus":0,"Continent":"K53","ID":45656,"Name":"Ave Why!","PlayerID":6180190,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45656","ServerKey":"pl181","X":309,"Y":589},{"Bonus":0,"Continent":"K66","ID":45657,"Name":"komandos .....00","PlayerID":7976264,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45657","ServerKey":"pl181","X":632,"Y":664},{"Bonus":0,"Continent":"K66","ID":45658,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45658","ServerKey":"pl181","X":646,"Y":649},{"Bonus":0,"Continent":"K75","ID":45660,"Name":"045 invidia","PlayerID":849093426,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45660","ServerKey":"pl181","X":521,"Y":707},{"Bonus":0,"Continent":"K66","ID":45661,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45661","ServerKey":"pl181","X":651,"Y":640},{"Bonus":0,"Continent":"K52","ID":45662,"Name":"New WorldA","PlayerID":849084005,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45662","ServerKey":"pl181","X":288,"Y":525},{"Bonus":0,"Continent":"K53","ID":45663,"Name":"005","PlayerID":849098688,"Points":5988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45663","ServerKey":"pl181","X":300,"Y":549},{"Bonus":0,"Continent":"K64","ID":45664,"Name":"New World","PlayerID":698152377,"Points":9532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45664","ServerKey":"pl181","X":418,"Y":697},{"Bonus":0,"Continent":"K65","ID":45665,"Name":"###042###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45665","ServerKey":"pl181","X":585,"Y":687},{"Bonus":0,"Continent":"K66","ID":45666,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45666","ServerKey":"pl181","X":622,"Y":672},{"Bonus":0,"Continent":"K46","ID":45667,"Name":"C.013","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45667","ServerKey":"pl181","X":698,"Y":492},{"Bonus":0,"Continent":"K57","ID":45668,"Name":"=024= Szlachta","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45668","ServerKey":"pl181","X":705,"Y":572},{"Bonus":0,"Continent":"K36","ID":45669,"Name":"Angella xxx","PlayerID":1715091,"Points":2725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45669","ServerKey":"pl181","X":654,"Y":352},{"Bonus":0,"Continent":"K55","ID":45670,"Name":"Yogi","PlayerID":2808172,"Points":5848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45670","ServerKey":"pl181","X":514,"Y":545},{"Bonus":0,"Continent":"K36","ID":45671,"Name":"Wioska 003","PlayerID":9291984,"Points":2005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45671","ServerKey":"pl181","X":644,"Y":353},{"Bonus":0,"Continent":"K42","ID":45673,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45673","ServerKey":"pl181","X":295,"Y":457},{"Bonus":3,"Continent":"K52","ID":45674,"Name":"010","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45674","ServerKey":"pl181","X":293,"Y":541},{"Bonus":0,"Continent":"K56","ID":45676,"Name":"S014","PlayerID":8428196,"Points":6722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45676","ServerKey":"pl181","X":686,"Y":592},{"Bonus":0,"Continent":"K47","ID":45677,"Name":"A#018","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45677","ServerKey":"pl181","X":713,"Y":473},{"Bonus":0,"Continent":"K52","ID":45678,"Name":"Cisza","PlayerID":698769107,"Points":6241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45678","ServerKey":"pl181","X":294,"Y":550},{"Bonus":0,"Continent":"K53","ID":45679,"Name":"023","PlayerID":9280477,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45679","ServerKey":"pl181","X":305,"Y":560},{"Bonus":0,"Continent":"K36","ID":45680,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45680","ServerKey":"pl181","X":612,"Y":322},{"Bonus":0,"Continent":"K53","ID":45681,"Name":"Początek","PlayerID":7842579,"Points":4517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45681","ServerKey":"pl181","X":302,"Y":576},{"Bonus":0,"Continent":"K33","ID":45682,"Name":"New Land 03","PlayerID":849064752,"Points":5131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45682","ServerKey":"pl181","X":329,"Y":384},{"Bonus":0,"Continent":"K66","ID":45683,"Name":"008 szymaan","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45683","ServerKey":"pl181","X":604,"Y":680},{"Bonus":0,"Continent":"K47","ID":45684,"Name":"30. Tolkiny","PlayerID":699804790,"Points":5358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45684","ServerKey":"pl181","X":713,"Y":486},{"Bonus":0,"Continent":"K33","ID":45686,"Name":"Szlachcic","PlayerID":698388578,"Points":7131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45686","ServerKey":"pl181","X":363,"Y":342},{"Bonus":3,"Continent":"K34","ID":45687,"Name":"058...barbarka","PlayerID":6920960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45687","ServerKey":"pl181","X":434,"Y":303},{"Bonus":0,"Continent":"K36","ID":45689,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45689","ServerKey":"pl181","X":618,"Y":324},{"Bonus":9,"Continent":"K63","ID":45690,"Name":"C063","PlayerID":699383279,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45690","ServerKey":"pl181","X":359,"Y":651},{"Bonus":0,"Continent":"K47","ID":45691,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":6040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45691","ServerKey":"pl181","X":711,"Y":494},{"Bonus":0,"Continent":"K66","ID":45692,"Name":"010 Edek6969","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45692","ServerKey":"pl181","X":609,"Y":679},{"Bonus":9,"Continent":"K65","ID":45693,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45693","ServerKey":"pl181","X":583,"Y":693},{"Bonus":0,"Continent":"K66","ID":45694,"Name":"HAPERT","PlayerID":848909464,"Points":9632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45694","ServerKey":"pl181","X":627,"Y":663},{"Bonus":0,"Continent":"K33","ID":45695,"Name":"Szlachcic","PlayerID":698388578,"Points":7008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45695","ServerKey":"pl181","X":364,"Y":334},{"Bonus":0,"Continent":"K24","ID":45697,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45697","ServerKey":"pl181","X":493,"Y":287},{"Bonus":0,"Continent":"K64","ID":45698,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45698","ServerKey":"pl181","X":430,"Y":692},{"Bonus":0,"Continent":"K43","ID":45699,"Name":"Z08","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45699","ServerKey":"pl181","X":316,"Y":408},{"Bonus":2,"Continent":"K24","ID":45700,"Name":"Winterfell.007","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45700","ServerKey":"pl181","X":446,"Y":298},{"Bonus":0,"Continent":"K66","ID":45701,"Name":"09-oss","PlayerID":848921861,"Points":8366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45701","ServerKey":"pl181","X":671,"Y":612},{"Bonus":0,"Continent":"K33","ID":45703,"Name":"...","PlayerID":699657450,"Points":5622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45703","ServerKey":"pl181","X":338,"Y":365},{"Bonus":0,"Continent":"K33","ID":45704,"Name":"SoƂtys wsi XTOskar","PlayerID":849027025,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45704","ServerKey":"pl181","X":358,"Y":342},{"Bonus":0,"Continent":"K33","ID":45706,"Name":"002:Wioska MFJZZ","PlayerID":8772425,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45706","ServerKey":"pl181","X":375,"Y":329},{"Bonus":0,"Continent":"K65","ID":45707,"Name":"###043###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45707","ServerKey":"pl181","X":588,"Y":688},{"Bonus":0,"Continent":"K53","ID":45708,"Name":"Początek","PlayerID":7842579,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45708","ServerKey":"pl181","X":312,"Y":587},{"Bonus":0,"Continent":"K75","ID":45709,"Name":"Wioska barbarzyƄska 004","PlayerID":6870350,"Points":8724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45709","ServerKey":"pl181","X":562,"Y":704},{"Bonus":0,"Continent":"K64","ID":45711,"Name":"066","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45711","ServerKey":"pl181","X":408,"Y":685},{"Bonus":0,"Continent":"K64","ID":45712,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45712","ServerKey":"pl181","X":427,"Y":696},{"Bonus":0,"Continent":"K35","ID":45713,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45713","ServerKey":"pl181","X":566,"Y":304},{"Bonus":0,"Continent":"K52","ID":45715,"Name":"C0217","PlayerID":8841266,"Points":9895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45715","ServerKey":"pl181","X":297,"Y":535},{"Bonus":0,"Continent":"K25","ID":45716,"Name":"AAA","PlayerID":1006847,"Points":8475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45716","ServerKey":"pl181","X":551,"Y":293},{"Bonus":0,"Continent":"K63","ID":45717,"Name":"Taran","PlayerID":6180190,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45717","ServerKey":"pl181","X":325,"Y":614},{"Bonus":0,"Continent":"K33","ID":45718,"Name":"5 QUEEN","PlayerID":6315553,"Points":2361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45718","ServerKey":"pl181","X":345,"Y":358},{"Bonus":0,"Continent":"K47","ID":45719,"Name":"Criminal","PlayerID":699785935,"Points":6708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45719","ServerKey":"pl181","X":700,"Y":426},{"Bonus":0,"Continent":"K36","ID":45720,"Name":"XDX","PlayerID":699098531,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45720","ServerKey":"pl181","X":600,"Y":314},{"Bonus":0,"Continent":"K34","ID":45721,"Name":"055.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45721","ServerKey":"pl181","X":435,"Y":303},{"Bonus":0,"Continent":"K35","ID":45722,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45722","ServerKey":"pl181","X":552,"Y":301},{"Bonus":0,"Continent":"K64","ID":45723,"Name":"109","PlayerID":849099876,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45723","ServerKey":"pl181","X":413,"Y":695},{"Bonus":0,"Continent":"K52","ID":45724,"Name":"[D]_[004] Dejv.oldplyr","PlayerID":699380607,"Points":7902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45724","ServerKey":"pl181","X":289,"Y":500},{"Bonus":0,"Continent":"K66","ID":45725,"Name":"Wioska 084","PlayerID":848971079,"Points":8844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45725","ServerKey":"pl181","X":675,"Y":606},{"Bonus":0,"Continent":"K25","ID":45726,"Name":"AAA","PlayerID":1006847,"Points":9347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45726","ServerKey":"pl181","X":540,"Y":298},{"Bonus":0,"Continent":"K66","ID":45727,"Name":"029 Wioska barbarzyƄska","PlayerID":699346280,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45727","ServerKey":"pl181","X":601,"Y":686},{"Bonus":0,"Continent":"K36","ID":45728,"Name":"0092","PlayerID":698416970,"Points":8615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45728","ServerKey":"pl181","X":678,"Y":391},{"Bonus":0,"Continent":"K43","ID":45729,"Name":"ZA14","PlayerID":356642,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45729","ServerKey":"pl181","X":318,"Y":411},{"Bonus":5,"Continent":"K24","ID":45730,"Name":"204...segador","PlayerID":6920960,"Points":10654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45730","ServerKey":"pl181","X":444,"Y":295},{"Bonus":0,"Continent":"K36","ID":45732,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45732","ServerKey":"pl181","X":649,"Y":355},{"Bonus":0,"Continent":"K63","ID":45733,"Name":"009. Kusy","PlayerID":698908184,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45733","ServerKey":"pl181","X":348,"Y":637},{"Bonus":0,"Continent":"K63","ID":45734,"Name":"C052","PlayerID":699383279,"Points":7816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45734","ServerKey":"pl181","X":378,"Y":663},{"Bonus":0,"Continent":"K57","ID":45735,"Name":"=073= Na wschodzie Zima","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45735","ServerKey":"pl181","X":708,"Y":564},{"Bonus":0,"Continent":"K65","ID":45736,"Name":"###044###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45736","ServerKey":"pl181","X":597,"Y":688},{"Bonus":0,"Continent":"K47","ID":45737,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45737","ServerKey":"pl181","X":704,"Y":474},{"Bonus":0,"Continent":"K66","ID":45738,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45738","ServerKey":"pl181","X":624,"Y":664},{"Bonus":0,"Continent":"K56","ID":45740,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":5321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45740","ServerKey":"pl181","X":695,"Y":559},{"Bonus":0,"Continent":"K55","ID":45741,"Name":"0020","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45741","ServerKey":"pl181","X":515,"Y":527},{"Bonus":0,"Continent":"K57","ID":45742,"Name":"040. IczyƄska Sopka","PlayerID":1601917,"Points":7775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45742","ServerKey":"pl181","X":702,"Y":556},{"Bonus":0,"Continent":"K53","ID":45743,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":5385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45743","ServerKey":"pl181","X":317,"Y":594},{"Bonus":0,"Continent":"K25","ID":45744,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":6325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45744","ServerKey":"pl181","X":538,"Y":294},{"Bonus":3,"Continent":"K63","ID":45745,"Name":"Taran","PlayerID":6180190,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45745","ServerKey":"pl181","X":326,"Y":623},{"Bonus":0,"Continent":"K42","ID":45746,"Name":"[0182]","PlayerID":8630972,"Points":7915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45746","ServerKey":"pl181","X":288,"Y":495},{"Bonus":0,"Continent":"K36","ID":45747,"Name":"wioska","PlayerID":849102068,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45747","ServerKey":"pl181","X":631,"Y":337},{"Bonus":0,"Continent":"K66","ID":45748,"Name":"komandos","PlayerID":7976264,"Points":8556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45748","ServerKey":"pl181","X":632,"Y":661},{"Bonus":0,"Continent":"K75","ID":45749,"Name":"017","PlayerID":698996782,"Points":9033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45749","ServerKey":"pl181","X":529,"Y":708},{"Bonus":0,"Continent":"K33","ID":45750,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45750","ServerKey":"pl181","X":335,"Y":380},{"Bonus":0,"Continent":"K36","ID":45752,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45752","ServerKey":"pl181","X":671,"Y":388},{"Bonus":0,"Continent":"K33","ID":45753,"Name":"0029","PlayerID":2321390,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45753","ServerKey":"pl181","X":323,"Y":386},{"Bonus":0,"Continent":"K75","ID":45754,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45754","ServerKey":"pl181","X":559,"Y":703},{"Bonus":0,"Continent":"K66","ID":45755,"Name":"007","PlayerID":849101148,"Points":8099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45755","ServerKey":"pl181","X":648,"Y":651},{"Bonus":0,"Continent":"K34","ID":45756,"Name":"[0114]","PlayerID":8630972,"Points":10140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45756","ServerKey":"pl181","X":440,"Y":312},{"Bonus":0,"Continent":"K42","ID":45757,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45757","ServerKey":"pl181","X":295,"Y":445},{"Bonus":0,"Continent":"K45","ID":45758,"Name":"0017","PlayerID":698599365,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45758","ServerKey":"pl181","X":500,"Y":495},{"Bonus":0,"Continent":"K24","ID":45760,"Name":"????","PlayerID":698489071,"Points":7356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45760","ServerKey":"pl181","X":469,"Y":293},{"Bonus":0,"Continent":"K75","ID":45762,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45762","ServerKey":"pl181","X":511,"Y":704},{"Bonus":0,"Continent":"K66","ID":45763,"Name":"Wiadro06","PlayerID":8677963,"Points":8273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45763","ServerKey":"pl181","X":670,"Y":629},{"Bonus":0,"Continent":"K75","ID":45764,"Name":"#K75 0001","PlayerID":699728159,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45764","ServerKey":"pl181","X":520,"Y":715},{"Bonus":0,"Continent":"K52","ID":45765,"Name":"005","PlayerID":9280477,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45765","ServerKey":"pl181","X":295,"Y":558},{"Bonus":0,"Continent":"K33","ID":45766,"Name":"Wow13","PlayerID":849027025,"Points":4421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45766","ServerKey":"pl181","X":359,"Y":350},{"Bonus":0,"Continent":"K64","ID":45767,"Name":"0047 village","PlayerID":849037407,"Points":10447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45767","ServerKey":"pl181","X":438,"Y":694},{"Bonus":7,"Continent":"K36","ID":45768,"Name":"017","PlayerID":9148043,"Points":5650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45768","ServerKey":"pl181","X":648,"Y":348},{"Bonus":0,"Continent":"K63","ID":45769,"Name":"009 - Nowy Początek...","PlayerID":6948793,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45769","ServerKey":"pl181","X":358,"Y":649},{"Bonus":0,"Continent":"K36","ID":45770,"Name":"014 Angers","PlayerID":6822957,"Points":10534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45770","ServerKey":"pl181","X":612,"Y":361},{"Bonus":0,"Continent":"K35","ID":45771,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45771","ServerKey":"pl181","X":580,"Y":311},{"Bonus":0,"Continent":"K34","ID":45772,"Name":"Gomora","PlayerID":699694284,"Points":8932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45772","ServerKey":"pl181","X":418,"Y":312},{"Bonus":0,"Continent":"K36","ID":45774,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":6515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45774","ServerKey":"pl181","X":631,"Y":336},{"Bonus":0,"Continent":"K63","ID":45775,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45775","ServerKey":"pl181","X":376,"Y":669},{"Bonus":0,"Continent":"K33","ID":45776,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":2740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45776","ServerKey":"pl181","X":333,"Y":373},{"Bonus":0,"Continent":"K66","ID":45777,"Name":"001. GĂłrki Wielkie","PlayerID":849100994,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45777","ServerKey":"pl181","X":653,"Y":637},{"Bonus":0,"Continent":"K36","ID":45778,"Name":"037","PlayerID":698635863,"Points":7837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45778","ServerKey":"pl181","X":674,"Y":386},{"Bonus":0,"Continent":"K66","ID":45779,"Name":"049 sebaseba1991","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45779","ServerKey":"pl181","X":619,"Y":675},{"Bonus":0,"Continent":"K52","ID":45780,"Name":"New WorldA","PlayerID":849084005,"Points":8763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45780","ServerKey":"pl181","X":294,"Y":523},{"Bonus":0,"Continent":"K63","ID":45781,"Name":"010. Wioska barbarzyƄska","PlayerID":698908184,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45781","ServerKey":"pl181","X":342,"Y":638},{"Bonus":0,"Continent":"K53","ID":45782,"Name":"Wioska barbarzyƄska 3","PlayerID":699016994,"Points":9733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45782","ServerKey":"pl181","X":307,"Y":585},{"Bonus":0,"Continent":"K47","ID":45783,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45783","ServerKey":"pl181","X":710,"Y":489},{"Bonus":0,"Continent":"K36","ID":45784,"Name":"Verka","PlayerID":849061374,"Points":7161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45784","ServerKey":"pl181","X":626,"Y":336},{"Bonus":0,"Continent":"K35","ID":45785,"Name":"005","PlayerID":1767876,"Points":2660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45785","ServerKey":"pl181","X":593,"Y":308},{"Bonus":0,"Continent":"K66","ID":45786,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":2658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45786","ServerKey":"pl181","X":686,"Y":606},{"Bonus":6,"Continent":"K47","ID":45787,"Name":"C.002","PlayerID":9188016,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45787","ServerKey":"pl181","X":704,"Y":494},{"Bonus":0,"Continent":"K25","ID":45788,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45788","ServerKey":"pl181","X":537,"Y":294},{"Bonus":0,"Continent":"K33","ID":45789,"Name":"017. Pomodoro e basilico","PlayerID":849102092,"Points":4715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45789","ServerKey":"pl181","X":330,"Y":379},{"Bonus":0,"Continent":"K34","ID":45790,"Name":"[0300]","PlayerID":8630972,"Points":5999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45790","ServerKey":"pl181","X":431,"Y":306},{"Bonus":0,"Continent":"K36","ID":45791,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45791","ServerKey":"pl181","X":638,"Y":341},{"Bonus":0,"Continent":"K25","ID":45792,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45792","ServerKey":"pl181","X":503,"Y":289},{"Bonus":0,"Continent":"K64","ID":45793,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45793","ServerKey":"pl181","X":421,"Y":694},{"Bonus":0,"Continent":"K45","ID":45794,"Name":"047 Austria","PlayerID":7092442,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45794","ServerKey":"pl181","X":577,"Y":465},{"Bonus":0,"Continent":"K66","ID":45795,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45795","ServerKey":"pl181","X":662,"Y":635},{"Bonus":3,"Continent":"K57","ID":45796,"Name":"007. Stories","PlayerID":254937,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45796","ServerKey":"pl181","X":712,"Y":508},{"Bonus":0,"Continent":"K52","ID":45798,"Name":"C0342","PlayerID":8841266,"Points":2563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45798","ServerKey":"pl181","X":295,"Y":539},{"Bonus":0,"Continent":"K33","ID":45799,"Name":"014","PlayerID":8153941,"Points":2895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45799","ServerKey":"pl181","X":391,"Y":325},{"Bonus":0,"Continent":"K65","ID":45800,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":8097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45800","ServerKey":"pl181","X":553,"Y":698},{"Bonus":0,"Continent":"K25","ID":45801,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45801","ServerKey":"pl181","X":505,"Y":294},{"Bonus":0,"Continent":"K52","ID":45802,"Name":"C0244","PlayerID":8841266,"Points":4780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45802","ServerKey":"pl181","X":293,"Y":528},{"Bonus":0,"Continent":"K36","ID":45803,"Name":"asd","PlayerID":8675636,"Points":8576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45803","ServerKey":"pl181","X":622,"Y":331},{"Bonus":0,"Continent":"K57","ID":45804,"Name":"=115= Albany","PlayerID":3781794,"Points":7272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45804","ServerKey":"pl181","X":700,"Y":568},{"Bonus":0,"Continent":"K75","ID":45805,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":5729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45805","ServerKey":"pl181","X":573,"Y":701},{"Bonus":0,"Continent":"K75","ID":45806,"Name":"- 273 - SS","PlayerID":849018239,"Points":6957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45806","ServerKey":"pl181","X":553,"Y":700},{"Bonus":0,"Continent":"K63","ID":45807,"Name":"O041","PlayerID":272173,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45807","ServerKey":"pl181","X":334,"Y":627},{"Bonus":0,"Continent":"K66","ID":45808,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45808","ServerKey":"pl181","X":636,"Y":657},{"Bonus":0,"Continent":"K66","ID":45809,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":4475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45809","ServerKey":"pl181","X":618,"Y":677},{"Bonus":0,"Continent":"K65","ID":45810,"Name":"###098###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45810","ServerKey":"pl181","X":580,"Y":692},{"Bonus":0,"Continent":"K63","ID":45811,"Name":"D008","PlayerID":272173,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45811","ServerKey":"pl181","X":353,"Y":645},{"Bonus":0,"Continent":"K63","ID":45812,"Name":"O122","PlayerID":272173,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45812","ServerKey":"pl181","X":332,"Y":622},{"Bonus":0,"Continent":"K46","ID":45813,"Name":"Osada 4","PlayerID":8675636,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45813","ServerKey":"pl181","X":699,"Y":423},{"Bonus":0,"Continent":"K56","ID":45814,"Name":"Didi","PlayerID":849070946,"Points":10141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45814","ServerKey":"pl181","X":682,"Y":568},{"Bonus":0,"Continent":"K56","ID":45815,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":1362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45815","ServerKey":"pl181","X":689,"Y":589},{"Bonus":0,"Continent":"K25","ID":45816,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45816","ServerKey":"pl181","X":518,"Y":292},{"Bonus":0,"Continent":"K47","ID":45817,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45817","ServerKey":"pl181","X":709,"Y":488},{"Bonus":0,"Continent":"K33","ID":45818,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":2825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45818","ServerKey":"pl181","X":336,"Y":376},{"Bonus":0,"Continent":"K57","ID":45820,"Name":"059","PlayerID":7085502,"Points":8030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45820","ServerKey":"pl181","X":714,"Y":514},{"Bonus":0,"Continent":"K33","ID":45821,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":3697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45821","ServerKey":"pl181","X":384,"Y":323},{"Bonus":0,"Continent":"K63","ID":45822,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45822","ServerKey":"pl181","X":376,"Y":672},{"Bonus":0,"Continent":"K63","ID":45823,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45823","ServerKey":"pl181","X":362,"Y":654},{"Bonus":0,"Continent":"K65","ID":45824,"Name":"###045###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45824","ServerKey":"pl181","X":599,"Y":687},{"Bonus":0,"Continent":"K63","ID":45825,"Name":"015. Wioska barbarzyƄska","PlayerID":698908184,"Points":8284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45825","ServerKey":"pl181","X":345,"Y":637},{"Bonus":0,"Continent":"K24","ID":45826,"Name":"KATTEGARD","PlayerID":763529,"Points":5387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45826","ServerKey":"pl181","X":494,"Y":288},{"Bonus":0,"Continent":"K34","ID":45827,"Name":"237","PlayerID":7271812,"Points":2799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45827","ServerKey":"pl181","X":405,"Y":316},{"Bonus":0,"Continent":"K52","ID":45828,"Name":"[0266]","PlayerID":8630972,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45828","ServerKey":"pl181","X":290,"Y":514},{"Bonus":0,"Continent":"K57","ID":45829,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":8879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45829","ServerKey":"pl181","X":708,"Y":524},{"Bonus":0,"Continent":"K53","ID":45830,"Name":"Elo Elo 14","PlayerID":699016994,"Points":5992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45830","ServerKey":"pl181","X":313,"Y":583},{"Bonus":0,"Continent":"K34","ID":45831,"Name":"023.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45831","ServerKey":"pl181","X":434,"Y":305},{"Bonus":0,"Continent":"K57","ID":45832,"Name":"A#009","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45832","ServerKey":"pl181","X":712,"Y":500},{"Bonus":0,"Continent":"K24","ID":45833,"Name":"Bytom","PlayerID":699278528,"Points":9013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45833","ServerKey":"pl181","X":487,"Y":288},{"Bonus":0,"Continent":"K52","ID":45834,"Name":"[0227]","PlayerID":8630972,"Points":4883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45834","ServerKey":"pl181","X":289,"Y":505},{"Bonus":0,"Continent":"K53","ID":45836,"Name":"041","PlayerID":926823,"Points":1754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45836","ServerKey":"pl181","X":305,"Y":577},{"Bonus":0,"Continent":"K65","ID":45837,"Name":"NBT 2","PlayerID":849047044,"Points":6863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45837","ServerKey":"pl181","X":593,"Y":693},{"Bonus":0,"Continent":"K63","ID":45838,"Name":"C084","PlayerID":699383279,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45838","ServerKey":"pl181","X":358,"Y":653},{"Bonus":0,"Continent":"K47","ID":45839,"Name":"C.021","PlayerID":9188016,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45839","ServerKey":"pl181","X":709,"Y":480},{"Bonus":0,"Continent":"K35","ID":45840,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45840","ServerKey":"pl181","X":576,"Y":308},{"Bonus":0,"Continent":"K43","ID":45841,"Name":"WiedĆșma - Z 011","PlayerID":9239515,"Points":3233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45841","ServerKey":"pl181","X":303,"Y":434},{"Bonus":0,"Continent":"K57","ID":45842,"Name":"014. Changtse","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45842","ServerKey":"pl181","X":707,"Y":552},{"Bonus":0,"Continent":"K43","ID":45844,"Name":"WydziaƂ zamiejscowy","PlayerID":699821629,"Points":7658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45844","ServerKey":"pl181","X":300,"Y":424},{"Bonus":0,"Continent":"K43","ID":45846,"Name":"Z25","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45846","ServerKey":"pl181","X":311,"Y":406},{"Bonus":0,"Continent":"K46","ID":45847,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45847","ServerKey":"pl181","X":684,"Y":402},{"Bonus":0,"Continent":"K24","ID":45848,"Name":".achim.","PlayerID":6936607,"Points":6281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45848","ServerKey":"pl181","X":482,"Y":290},{"Bonus":0,"Continent":"K57","ID":45849,"Name":"04. Konstantynopol","PlayerID":848946700,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45849","ServerKey":"pl181","X":710,"Y":537},{"Bonus":0,"Continent":"K43","ID":45850,"Name":"007","PlayerID":8259895,"Points":4544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45850","ServerKey":"pl181","X":304,"Y":422},{"Bonus":0,"Continent":"K35","ID":45851,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":3188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45851","ServerKey":"pl181","X":593,"Y":311},{"Bonus":0,"Continent":"K66","ID":45852,"Name":"Ć»UBEREK 019 Dawaj grube majster!","PlayerID":33900,"Points":10585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45852","ServerKey":"pl181","X":608,"Y":677},{"Bonus":0,"Continent":"K66","ID":45853,"Name":"018","PlayerID":2323859,"Points":8794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45853","ServerKey":"pl181","X":656,"Y":643},{"Bonus":0,"Continent":"K64","ID":45854,"Name":"OrzeƂ WylądowaƂ","PlayerID":698807570,"Points":7065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45854","ServerKey":"pl181","X":455,"Y":657},{"Bonus":0,"Continent":"K47","ID":45855,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45855","ServerKey":"pl181","X":708,"Y":450},{"Bonus":0,"Continent":"K42","ID":45856,"Name":"54 nie barbarzyƄska","PlayerID":849018442,"Points":5186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45856","ServerKey":"pl181","X":296,"Y":458},{"Bonus":0,"Continent":"K35","ID":45857,"Name":"005","PlayerID":1767876,"Points":4229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45857","ServerKey":"pl181","X":591,"Y":312},{"Bonus":0,"Continent":"K52","ID":45860,"Name":"EO EO","PlayerID":699697558,"Points":8428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45860","ServerKey":"pl181","X":294,"Y":502},{"Bonus":3,"Continent":"K24","ID":45861,"Name":"Winterfell.009","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45861","ServerKey":"pl181","X":454,"Y":299},{"Bonus":0,"Continent":"K33","ID":45863,"Name":"0020","PlayerID":2321390,"Points":5106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45863","ServerKey":"pl181","X":394,"Y":318},{"Bonus":0,"Continent":"K33","ID":45864,"Name":"001 IIIIIIIIIIIII","PlayerID":8153941,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45864","ServerKey":"pl181","X":394,"Y":326},{"Bonus":0,"Continent":"K25","ID":45865,"Name":"Koziarowo 4","PlayerID":849100228,"Points":9133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45865","ServerKey":"pl181","X":505,"Y":295},{"Bonus":0,"Continent":"K36","ID":45867,"Name":"Angella xx","PlayerID":699875213,"Points":2389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45867","ServerKey":"pl181","X":653,"Y":353},{"Bonus":0,"Continent":"K24","ID":45868,"Name":"271...emerson","PlayerID":6920960,"Points":7014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45868","ServerKey":"pl181","X":461,"Y":297},{"Bonus":0,"Continent":"K63","ID":45869,"Name":"Taran","PlayerID":6180190,"Points":8888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45869","ServerKey":"pl181","X":327,"Y":625},{"Bonus":0,"Continent":"K47","ID":45871,"Name":"Monte Christo","PlayerID":699785935,"Points":7545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45871","ServerKey":"pl181","X":703,"Y":435},{"Bonus":0,"Continent":"K43","ID":45872,"Name":"Z15","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45872","ServerKey":"pl181","X":315,"Y":405},{"Bonus":0,"Continent":"K46","ID":45873,"Name":"Wioska WITWIC","PlayerID":699488108,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45873","ServerKey":"pl181","X":696,"Y":423},{"Bonus":0,"Continent":"K53","ID":45874,"Name":"Początek","PlayerID":7842579,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45874","ServerKey":"pl181","X":308,"Y":581},{"Bonus":0,"Continent":"K42","ID":45875,"Name":"WiedĆșma - Z 010","PlayerID":9239515,"Points":2255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45875","ServerKey":"pl181","X":299,"Y":434},{"Bonus":0,"Continent":"K74","ID":45876,"Name":"043.","PlayerID":849034882,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45876","ServerKey":"pl181","X":450,"Y":708},{"Bonus":0,"Continent":"K42","ID":45877,"Name":"[0183]","PlayerID":8630972,"Points":8682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45877","ServerKey":"pl181","X":287,"Y":498},{"Bonus":0,"Continent":"K43","ID":45878,"Name":"Dzik 14","PlayerID":8366045,"Points":3670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45878","ServerKey":"pl181","X":300,"Y":428},{"Bonus":0,"Continent":"K64","ID":45880,"Name":"079","PlayerID":849099876,"Points":9004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45880","ServerKey":"pl181","X":412,"Y":687},{"Bonus":0,"Continent":"K33","ID":45882,"Name":"Wioska","PlayerID":2268889,"Points":6105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45882","ServerKey":"pl181","X":385,"Y":320},{"Bonus":0,"Continent":"K35","ID":45884,"Name":"006","PlayerID":699098531,"Points":3964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45884","ServerKey":"pl181","X":594,"Y":318},{"Bonus":0,"Continent":"K74","ID":45885,"Name":"027Porządki","PlayerID":698620694,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45885","ServerKey":"pl181","X":463,"Y":710},{"Bonus":0,"Continent":"K74","ID":45886,"Name":"25. Kurde fele","PlayerID":849092769,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45886","ServerKey":"pl181","X":483,"Y":708},{"Bonus":0,"Continent":"K63","ID":45887,"Name":"O014","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45887","ServerKey":"pl181","X":337,"Y":634},{"Bonus":9,"Continent":"K66","ID":45888,"Name":"###014###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45888","ServerKey":"pl181","X":600,"Y":682},{"Bonus":0,"Continent":"K74","ID":45890,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45890","ServerKey":"pl181","X":464,"Y":704},{"Bonus":0,"Continent":"K66","ID":45891,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45891","ServerKey":"pl181","X":644,"Y":646},{"Bonus":0,"Continent":"K35","ID":45892,"Name":"krytl19","PlayerID":1990750,"Points":7523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45892","ServerKey":"pl181","X":511,"Y":317},{"Bonus":0,"Continent":"K42","ID":45893,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45893","ServerKey":"pl181","X":295,"Y":437},{"Bonus":0,"Continent":"K43","ID":45894,"Name":"007a","PlayerID":8259895,"Points":5273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45894","ServerKey":"pl181","X":304,"Y":423},{"Bonus":0,"Continent":"K43","ID":45895,"Name":"Z21","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45895","ServerKey":"pl181","X":317,"Y":403},{"Bonus":0,"Continent":"K46","ID":45896,"Name":"Wioska barbarzyƄska","PlayerID":699488108,"Points":4953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45896","ServerKey":"pl181","X":689,"Y":422},{"Bonus":0,"Continent":"K25","ID":45897,"Name":"#043","PlayerID":849064614,"Points":4518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45897","ServerKey":"pl181","X":549,"Y":292},{"Bonus":0,"Continent":"K57","ID":45898,"Name":"051","PlayerID":7085502,"Points":6608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45898","ServerKey":"pl181","X":712,"Y":511},{"Bonus":0,"Continent":"K47","ID":45899,"Name":"C08","PlayerID":849093742,"Points":6125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45899","ServerKey":"pl181","X":705,"Y":447},{"Bonus":0,"Continent":"K66","ID":45901,"Name":"Wioska barbarzyƄska","PlayerID":1049851,"Points":4015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45901","ServerKey":"pl181","X":671,"Y":622},{"Bonus":0,"Continent":"K33","ID":45902,"Name":"014","PlayerID":699660539,"Points":3500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45902","ServerKey":"pl181","X":389,"Y":319},{"Bonus":0,"Continent":"K75","ID":45903,"Name":"Wioska barbarzyƄska","PlayerID":7860453,"Points":4633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45903","ServerKey":"pl181","X":560,"Y":700},{"Bonus":6,"Continent":"K52","ID":45904,"Name":"Na SsSskraju","PlayerID":1536625,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45904","ServerKey":"pl181","X":299,"Y":557},{"Bonus":0,"Continent":"K63","ID":45905,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45905","ServerKey":"pl181","X":374,"Y":666},{"Bonus":0,"Continent":"K66","ID":45906,"Name":"sebastianxxx19","PlayerID":848909464,"Points":10319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45906","ServerKey":"pl181","X":623,"Y":667},{"Bonus":0,"Continent":"K33","ID":45907,"Name":"0031","PlayerID":2321390,"Points":2535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45907","ServerKey":"pl181","X":322,"Y":385},{"Bonus":0,"Continent":"K66","ID":45908,"Name":"026.","PlayerID":699695167,"Points":4282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45908","ServerKey":"pl181","X":622,"Y":670},{"Bonus":0,"Continent":"K52","ID":45909,"Name":"Wioska barbarzyƄska11","PlayerID":698879638,"Points":2221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45909","ServerKey":"pl181","X":291,"Y":522},{"Bonus":0,"Continent":"K33","ID":45910,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45910","ServerKey":"pl181","X":319,"Y":398},{"Bonus":0,"Continent":"K36","ID":45911,"Name":"B008","PlayerID":8740199,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45911","ServerKey":"pl181","X":626,"Y":328},{"Bonus":0,"Continent":"K36","ID":45912,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":2876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45912","ServerKey":"pl181","X":650,"Y":353},{"Bonus":0,"Continent":"K46","ID":45913,"Name":"10.BTOB","PlayerID":9180206,"Points":8704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45913","ServerKey":"pl181","X":692,"Y":416},{"Bonus":0,"Continent":"K53","ID":45914,"Name":"021","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45914","ServerKey":"pl181","X":302,"Y":561},{"Bonus":0,"Continent":"K35","ID":45915,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":5737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45915","ServerKey":"pl181","X":517,"Y":318},{"Bonus":0,"Continent":"K47","ID":45916,"Name":"C.022","PlayerID":9188016,"Points":5397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45916","ServerKey":"pl181","X":710,"Y":486},{"Bonus":0,"Continent":"K74","ID":45917,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":6999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45917","ServerKey":"pl181","X":487,"Y":710},{"Bonus":0,"Continent":"K75","ID":45918,"Name":"Blob","PlayerID":699443920,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45918","ServerKey":"pl181","X":551,"Y":706},{"Bonus":0,"Continent":"K33","ID":45919,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45919","ServerKey":"pl181","X":381,"Y":328},{"Bonus":2,"Continent":"K42","ID":45920,"Name":"59 Goƛć1","PlayerID":849018442,"Points":8467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45920","ServerKey":"pl181","X":295,"Y":475},{"Bonus":0,"Continent":"K65","ID":45921,"Name":"Wioska Staszek M","PlayerID":698723158,"Points":5467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45921","ServerKey":"pl181","X":568,"Y":694},{"Bonus":0,"Continent":"K65","ID":45922,"Name":"- 207 - SS","PlayerID":849018239,"Points":7759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45922","ServerKey":"pl181","X":544,"Y":699},{"Bonus":0,"Continent":"K57","ID":45923,"Name":"048. Jastrzębia Turnia","PlayerID":1601917,"Points":7721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45923","ServerKey":"pl181","X":700,"Y":549},{"Bonus":0,"Continent":"K36","ID":45924,"Name":"*W000","PlayerID":7758085,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45924","ServerKey":"pl181","X":663,"Y":376},{"Bonus":0,"Continent":"K43","ID":45925,"Name":"Melon3","PlayerID":699659708,"Points":4037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45925","ServerKey":"pl181","X":308,"Y":429},{"Bonus":0,"Continent":"K66","ID":45926,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45926","ServerKey":"pl181","X":642,"Y":651},{"Bonus":0,"Continent":"K66","ID":45927,"Name":"Tzarski - o3","PlayerID":699783063,"Points":5339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45927","ServerKey":"pl181","X":646,"Y":652},{"Bonus":0,"Continent":"K56","ID":45928,"Name":"=077= BORSUCZEK","PlayerID":3781794,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45928","ServerKey":"pl181","X":699,"Y":566},{"Bonus":0,"Continent":"K24","ID":45929,"Name":".achim.","PlayerID":6936607,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45929","ServerKey":"pl181","X":479,"Y":289},{"Bonus":0,"Continent":"K66","ID":45930,"Name":"013 telimena","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45930","ServerKey":"pl181","X":615,"Y":680},{"Bonus":0,"Continent":"K33","ID":45931,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45931","ServerKey":"pl181","X":397,"Y":315},{"Bonus":0,"Continent":"K47","ID":45932,"Name":"Nie Teraz","PlayerID":699785935,"Points":8328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45932","ServerKey":"pl181","X":710,"Y":456},{"Bonus":0,"Continent":"K35","ID":45933,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45933","ServerKey":"pl181","X":579,"Y":307},{"Bonus":0,"Continent":"K57","ID":45935,"Name":"Wulfenit","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45935","ServerKey":"pl181","X":704,"Y":553},{"Bonus":0,"Continent":"K42","ID":45936,"Name":"018","PlayerID":2418364,"Points":4061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45936","ServerKey":"pl181","X":293,"Y":463},{"Bonus":0,"Continent":"K46","ID":45937,"Name":"012","PlayerID":699150527,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45937","ServerKey":"pl181","X":699,"Y":468},{"Bonus":0,"Continent":"K36","ID":45938,"Name":"064- Mroczna Osada","PlayerID":849035905,"Points":2492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45938","ServerKey":"pl181","X":654,"Y":360},{"Bonus":0,"Continent":"K47","ID":45941,"Name":"C11","PlayerID":849093742,"Points":4946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45941","ServerKey":"pl181","X":702,"Y":448},{"Bonus":0,"Continent":"K36","ID":45942,"Name":"Czekaj, chwila!","PlayerID":699785935,"Points":6767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45942","ServerKey":"pl181","X":688,"Y":399},{"Bonus":0,"Continent":"K52","ID":45943,"Name":"C0214","PlayerID":8841266,"Points":8985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45943","ServerKey":"pl181","X":292,"Y":533},{"Bonus":0,"Continent":"K57","ID":45944,"Name":"=088= Wioska barbarzyƄska","PlayerID":3781794,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45944","ServerKey":"pl181","X":703,"Y":561},{"Bonus":3,"Continent":"K24","ID":45945,"Name":".achim.","PlayerID":6936607,"Points":8726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45945","ServerKey":"pl181","X":481,"Y":287},{"Bonus":0,"Continent":"K47","ID":45946,"Name":"B#023","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45946","ServerKey":"pl181","X":703,"Y":455},{"Bonus":0,"Continent":"K36","ID":45947,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45947","ServerKey":"pl181","X":652,"Y":354},{"Bonus":0,"Continent":"K66","ID":45948,"Name":"[201]","PlayerID":8000875,"Points":4293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45948","ServerKey":"pl181","X":678,"Y":602},{"Bonus":0,"Continent":"K56","ID":45949,"Name":"Wioska barbarzyƄska","PlayerID":6929240,"Points":6080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45949","ServerKey":"pl181","X":696,"Y":562},{"Bonus":0,"Continent":"K53","ID":45950,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":3552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45950","ServerKey":"pl181","X":303,"Y":582},{"Bonus":0,"Continent":"K36","ID":45951,"Name":"071- Mroczna Osada","PlayerID":849035905,"Points":2493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45951","ServerKey":"pl181","X":621,"Y":333},{"Bonus":0,"Continent":"K47","ID":45952,"Name":"B#006","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45952","ServerKey":"pl181","X":700,"Y":450},{"Bonus":0,"Continent":"K65","ID":45953,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":2158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45953","ServerKey":"pl181","X":598,"Y":689},{"Bonus":0,"Continent":"K24","ID":45954,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45954","ServerKey":"pl181","X":495,"Y":294},{"Bonus":0,"Continent":"K25","ID":45955,"Name":"Wioska G","PlayerID":1867161,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45955","ServerKey":"pl181","X":541,"Y":295},{"Bonus":0,"Continent":"K75","ID":45956,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":5600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45956","ServerKey":"pl181","X":504,"Y":709},{"Bonus":0,"Continent":"K64","ID":45958,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45958","ServerKey":"pl181","X":420,"Y":694},{"Bonus":0,"Continent":"K53","ID":45959,"Name":"Początek","PlayerID":7842579,"Points":9763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45959","ServerKey":"pl181","X":307,"Y":583},{"Bonus":0,"Continent":"K74","ID":45960,"Name":"0057 181.04","PlayerID":849037407,"Points":4800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45960","ServerKey":"pl181","X":449,"Y":701},{"Bonus":0,"Continent":"K63","ID":45962,"Name":"C116","PlayerID":699383279,"Points":9620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45962","ServerKey":"pl181","X":360,"Y":653},{"Bonus":0,"Continent":"K63","ID":45963,"Name":"202","PlayerID":699269923,"Points":9564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45963","ServerKey":"pl181","X":368,"Y":663},{"Bonus":0,"Continent":"K63","ID":45964,"Name":"153","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45964","ServerKey":"pl181","X":399,"Y":687},{"Bonus":0,"Continent":"K34","ID":45965,"Name":"206...segador","PlayerID":6920960,"Points":10744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45965","ServerKey":"pl181","X":454,"Y":301},{"Bonus":0,"Continent":"K64","ID":45966,"Name":"Jednak wolę gofry","PlayerID":699736927,"Points":6328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45966","ServerKey":"pl181","X":425,"Y":648},{"Bonus":0,"Continent":"K43","ID":45967,"Name":"007b","PlayerID":8259895,"Points":5743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45967","ServerKey":"pl181","X":303,"Y":421},{"Bonus":0,"Continent":"K57","ID":45968,"Name":"pozew","PlayerID":1895081,"Points":2274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45968","ServerKey":"pl181","X":703,"Y":527},{"Bonus":0,"Continent":"K35","ID":45969,"Name":"005 VLV","PlayerID":849100656,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45969","ServerKey":"pl181","X":560,"Y":304},{"Bonus":0,"Continent":"K63","ID":45970,"Name":"C077","PlayerID":699383279,"Points":4383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45970","ServerKey":"pl181","X":359,"Y":661},{"Bonus":0,"Continent":"K57","ID":45971,"Name":"A#023","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45971","ServerKey":"pl181","X":711,"Y":504},{"Bonus":0,"Continent":"K33","ID":45972,"Name":"4 KORN","PlayerID":6315553,"Points":2931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45972","ServerKey":"pl181","X":345,"Y":357},{"Bonus":0,"Continent":"K36","ID":45973,"Name":"Wioska barbarzyƄska","PlayerID":849102068,"Points":2656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45973","ServerKey":"pl181","X":631,"Y":341},{"Bonus":0,"Continent":"K57","ID":45974,"Name":"030. GƂowa Cukru","PlayerID":1601917,"Points":8194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45974","ServerKey":"pl181","X":708,"Y":539},{"Bonus":0,"Continent":"K55","ID":45975,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45975","ServerKey":"pl181","X":517,"Y":551},{"Bonus":0,"Continent":"K52","ID":45976,"Name":"Wioska przembarca20","PlayerID":9148439,"Points":8120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45976","ServerKey":"pl181","X":286,"Y":505},{"Bonus":0,"Continent":"K75","ID":45977,"Name":"Joanna","PlayerID":699733501,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45977","ServerKey":"pl181","X":526,"Y":708},{"Bonus":0,"Continent":"K33","ID":45978,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45978","ServerKey":"pl181","X":379,"Y":331},{"Bonus":0,"Continent":"K33","ID":45979,"Name":"SoƂtys Wsi Maciekp011","PlayerID":849027025,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45979","ServerKey":"pl181","X":353,"Y":348},{"Bonus":0,"Continent":"K43","ID":45980,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45980","ServerKey":"pl181","X":317,"Y":400},{"Bonus":0,"Continent":"K52","ID":45981,"Name":"C0221","PlayerID":8841266,"Points":6007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45981","ServerKey":"pl181","X":291,"Y":533},{"Bonus":0,"Continent":"K74","ID":45982,"Name":"0069 Wioska barbarzyƄska","PlayerID":849037407,"Points":8601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45982","ServerKey":"pl181","X":446,"Y":704},{"Bonus":4,"Continent":"K33","ID":45983,"Name":"*225*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45983","ServerKey":"pl181","X":333,"Y":382},{"Bonus":0,"Continent":"K46","ID":45984,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45984","ServerKey":"pl181","X":695,"Y":433},{"Bonus":0,"Continent":"K63","ID":45986,"Name":"C065","PlayerID":699383279,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45986","ServerKey":"pl181","X":359,"Y":653},{"Bonus":0,"Continent":"K34","ID":45987,"Name":"232","PlayerID":7271812,"Points":4521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45987","ServerKey":"pl181","X":422,"Y":330},{"Bonus":0,"Continent":"K63","ID":45988,"Name":"017. Wioska barbarzyƄska","PlayerID":698908184,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45988","ServerKey":"pl181","X":349,"Y":636},{"Bonus":0,"Continent":"K25","ID":45989,"Name":"Vedette","PlayerID":699072129,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45989","ServerKey":"pl181","X":553,"Y":293},{"Bonus":0,"Continent":"K47","ID":45990,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":5436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45990","ServerKey":"pl181","X":711,"Y":491},{"Bonus":0,"Continent":"K24","ID":45991,"Name":"[0126]","PlayerID":8630972,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45991","ServerKey":"pl181","X":447,"Y":299},{"Bonus":0,"Continent":"K74","ID":45992,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45992","ServerKey":"pl181","X":487,"Y":709},{"Bonus":0,"Continent":"K66","ID":45993,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45993","ServerKey":"pl181","X":633,"Y":657},{"Bonus":0,"Continent":"K57","ID":45994,"Name":"05. Kaer Moren","PlayerID":8976313,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45994","ServerKey":"pl181","X":709,"Y":541},{"Bonus":0,"Continent":"K43","ID":45995,"Name":"Z20","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45995","ServerKey":"pl181","X":316,"Y":404},{"Bonus":0,"Continent":"K33","ID":45996,"Name":"010","PlayerID":7386358,"Points":2982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45996","ServerKey":"pl181","X":324,"Y":378},{"Bonus":0,"Continent":"K53","ID":45997,"Name":"Wioska barbarzyƄska","PlayerID":5997814,"Points":4679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45997","ServerKey":"pl181","X":303,"Y":556},{"Bonus":0,"Continent":"K35","ID":45998,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45998","ServerKey":"pl181","X":588,"Y":309},{"Bonus":0,"Continent":"K56","ID":45999,"Name":"TWIERDZA .:004:.","PlayerID":7154207,"Points":10275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=45999","ServerKey":"pl181","X":694,"Y":577},{"Bonus":0,"Continent":"K74","ID":46000,"Name":"0027 Wioska barbarzyƄska","PlayerID":849037407,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46000","ServerKey":"pl181","X":442,"Y":700},{"Bonus":0,"Continent":"K63","ID":46001,"Name":"O081","PlayerID":272173,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46001","ServerKey":"pl181","X":333,"Y":628},{"Bonus":0,"Continent":"K25","ID":46003,"Name":"002","PlayerID":699818726,"Points":8584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46003","ServerKey":"pl181","X":528,"Y":288},{"Bonus":0,"Continent":"K25","ID":46004,"Name":"AAA","PlayerID":1006847,"Points":8921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46004","ServerKey":"pl181","X":534,"Y":298},{"Bonus":0,"Continent":"K33","ID":46005,"Name":"K33","PlayerID":699794765,"Points":3012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46005","ServerKey":"pl181","X":320,"Y":384},{"Bonus":4,"Continent":"K25","ID":46006,"Name":"003","PlayerID":699208929,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46006","ServerKey":"pl181","X":521,"Y":296},{"Bonus":0,"Continent":"K42","ID":46008,"Name":"Avanti!","PlayerID":698625834,"Points":8929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46008","ServerKey":"pl181","X":286,"Y":485},{"Bonus":8,"Continent":"K33","ID":46009,"Name":"Mniejsze zƂo 0024","PlayerID":699794765,"Points":7920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46009","ServerKey":"pl181","X":318,"Y":391},{"Bonus":0,"Continent":"K56","ID":46010,"Name":"B15","PlayerID":848995478,"Points":10640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46010","ServerKey":"pl181","X":695,"Y":545},{"Bonus":6,"Continent":"K63","ID":46011,"Name":"0111","PlayerID":7085510,"Points":8565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46011","ServerKey":"pl181","X":395,"Y":675},{"Bonus":0,"Continent":"K63","ID":46012,"Name":"D010","PlayerID":272173,"Points":8832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46012","ServerKey":"pl181","X":350,"Y":649},{"Bonus":0,"Continent":"K74","ID":46013,"Name":"120 invidia","PlayerID":849093426,"Points":8553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46013","ServerKey":"pl181","X":499,"Y":711},{"Bonus":0,"Continent":"K25","ID":46014,"Name":"G001","PlayerID":699208929,"Points":9912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46014","ServerKey":"pl181","X":515,"Y":291},{"Bonus":0,"Continent":"K47","ID":46015,"Name":"Akademia Sztuk Pięknych","PlayerID":699785935,"Points":6439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46015","ServerKey":"pl181","X":701,"Y":431},{"Bonus":0,"Continent":"K64","ID":46016,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46016","ServerKey":"pl181","X":435,"Y":697},{"Bonus":0,"Continent":"K74","ID":46017,"Name":"Bagno 23","PlayerID":848883684,"Points":7346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46017","ServerKey":"pl181","X":486,"Y":713},{"Bonus":0,"Continent":"K64","ID":46018,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46018","ServerKey":"pl181","X":422,"Y":691},{"Bonus":0,"Continent":"K34","ID":46020,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46020","ServerKey":"pl181","X":408,"Y":311},{"Bonus":5,"Continent":"K47","ID":46021,"Name":"026","PlayerID":849091105,"Points":8636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46021","ServerKey":"pl181","X":704,"Y":468},{"Bonus":0,"Continent":"K42","ID":46022,"Name":"XXX","PlayerID":699794765,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46022","ServerKey":"pl181","X":292,"Y":474},{"Bonus":0,"Continent":"K33","ID":46023,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46023","ServerKey":"pl181","X":318,"Y":395},{"Bonus":0,"Continent":"K42","ID":46024,"Name":"Kagusiowo 2","PlayerID":849101268,"Points":6129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46024","ServerKey":"pl181","X":298,"Y":439},{"Bonus":0,"Continent":"K33","ID":46025,"Name":"A-001","PlayerID":699406247,"Points":9299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46025","ServerKey":"pl181","X":324,"Y":379},{"Bonus":0,"Continent":"K24","ID":46026,"Name":"[0140]","PlayerID":8630972,"Points":9420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46026","ServerKey":"pl181","X":447,"Y":295},{"Bonus":0,"Continent":"K53","ID":46028,"Name":"Taran","PlayerID":6180190,"Points":6258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46028","ServerKey":"pl181","X":312,"Y":597},{"Bonus":0,"Continent":"K75","ID":46029,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":1963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46029","ServerKey":"pl181","X":511,"Y":711},{"Bonus":0,"Continent":"K24","ID":46030,"Name":"EEE Barba 2","PlayerID":699796330,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46030","ServerKey":"pl181","X":464,"Y":289},{"Bonus":0,"Continent":"K53","ID":46031,"Name":"Psycho to Marka, Narka !","PlayerID":698167138,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46031","ServerKey":"pl181","X":303,"Y":570},{"Bonus":0,"Continent":"K25","ID":46032,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46032","ServerKey":"pl181","X":534,"Y":295},{"Bonus":0,"Continent":"K43","ID":46033,"Name":"WB17","PlayerID":356642,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46033","ServerKey":"pl181","X":311,"Y":418},{"Bonus":0,"Continent":"K52","ID":46034,"Name":"||Uzbekistan","PlayerID":699697558,"Points":8051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46034","ServerKey":"pl181","X":289,"Y":532},{"Bonus":8,"Continent":"K75","ID":46035,"Name":"109 invidia","PlayerID":849093426,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46035","ServerKey":"pl181","X":504,"Y":711},{"Bonus":0,"Continent":"K42","ID":46036,"Name":"Deeee","PlayerID":848981726,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46036","ServerKey":"pl181","X":289,"Y":474},{"Bonus":0,"Continent":"K33","ID":46037,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46037","ServerKey":"pl181","X":341,"Y":367},{"Bonus":0,"Continent":"K52","ID":46038,"Name":"EO EO","PlayerID":699697558,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46038","ServerKey":"pl181","X":288,"Y":521},{"Bonus":0,"Continent":"K24","ID":46039,"Name":"Zeta Reticuli OO","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46039","ServerKey":"pl181","X":471,"Y":287},{"Bonus":0,"Continent":"K33","ID":46040,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46040","ServerKey":"pl181","X":328,"Y":382},{"Bonus":0,"Continent":"K63","ID":46041,"Name":"0154","PlayerID":7085510,"Points":4530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46041","ServerKey":"pl181","X":387,"Y":679},{"Bonus":0,"Continent":"K42","ID":46042,"Name":"Zermatyzm","PlayerID":848970357,"Points":1350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46042","ServerKey":"pl181","X":297,"Y":439},{"Bonus":0,"Continent":"K52","ID":46043,"Name":"C0347","PlayerID":8841266,"Points":2263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46043","ServerKey":"pl181","X":298,"Y":537},{"Bonus":0,"Continent":"K33","ID":46044,"Name":"0062","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46044","ServerKey":"pl181","X":365,"Y":339},{"Bonus":0,"Continent":"K63","ID":46045,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46045","ServerKey":"pl181","X":382,"Y":671},{"Bonus":0,"Continent":"K66","ID":46046,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46046","ServerKey":"pl181","X":661,"Y":637},{"Bonus":0,"Continent":"K52","ID":46047,"Name":"020","PlayerID":9280477,"Points":7709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46047","ServerKey":"pl181","X":298,"Y":561},{"Bonus":1,"Continent":"K25","ID":46048,"Name":"Wioska C","PlayerID":1867161,"Points":5120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46048","ServerKey":"pl181","X":540,"Y":291},{"Bonus":0,"Continent":"K66","ID":46049,"Name":"Bessa 004","PlayerID":848987051,"Points":10010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46049","ServerKey":"pl181","X":641,"Y":659},{"Bonus":0,"Continent":"K24","ID":46050,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46050","ServerKey":"pl181","X":498,"Y":287},{"Bonus":0,"Continent":"K66","ID":46051,"Name":"#041#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46051","ServerKey":"pl181","X":626,"Y":635},{"Bonus":0,"Continent":"K25","ID":46052,"Name":"G003","PlayerID":699208929,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46052","ServerKey":"pl181","X":515,"Y":296},{"Bonus":0,"Continent":"K63","ID":46053,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":7681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46053","ServerKey":"pl181","X":389,"Y":674},{"Bonus":0,"Continent":"K25","ID":46054,"Name":"019","PlayerID":849010255,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46054","ServerKey":"pl181","X":509,"Y":282},{"Bonus":1,"Continent":"K24","ID":46055,"Name":"002","PlayerID":699562874,"Points":8836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46055","ServerKey":"pl181","X":438,"Y":298},{"Bonus":0,"Continent":"K66","ID":46057,"Name":"026 Wioska barbarzyƄska","PlayerID":699346280,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46057","ServerKey":"pl181","X":604,"Y":677},{"Bonus":6,"Continent":"K53","ID":46058,"Name":"003","PlayerID":6180190,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46058","ServerKey":"pl181","X":313,"Y":593},{"Bonus":0,"Continent":"K63","ID":46059,"Name":"O070","PlayerID":272173,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46059","ServerKey":"pl181","X":328,"Y":626},{"Bonus":0,"Continent":"K74","ID":46060,"Name":"013","PlayerID":848896948,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46060","ServerKey":"pl181","X":466,"Y":709},{"Bonus":0,"Continent":"K47","ID":46061,"Name":"028","PlayerID":849031818,"Points":4320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46061","ServerKey":"pl181","X":701,"Y":459},{"Bonus":0,"Continent":"K33","ID":46062,"Name":"Szlachcic","PlayerID":698388578,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46062","ServerKey":"pl181","X":361,"Y":339},{"Bonus":0,"Continent":"K25","ID":46063,"Name":"085 Ard Carraigh","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46063","ServerKey":"pl181","X":545,"Y":292},{"Bonus":0,"Continent":"K74","ID":46065,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":8988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46065","ServerKey":"pl181","X":465,"Y":702},{"Bonus":0,"Continent":"K53","ID":46067,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":4099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46067","ServerKey":"pl181","X":303,"Y":584},{"Bonus":0,"Continent":"K34","ID":46068,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46068","ServerKey":"pl181","X":423,"Y":302},{"Bonus":0,"Continent":"K46","ID":46069,"Name":"Co masz w ƛrodku?","PlayerID":699785935,"Points":7315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46069","ServerKey":"pl181","X":689,"Y":403},{"Bonus":0,"Continent":"K65","ID":46070,"Name":"Wioska barbarzyƄska","PlayerID":698723158,"Points":4464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46070","ServerKey":"pl181","X":569,"Y":696},{"Bonus":0,"Continent":"K42","ID":46071,"Name":"Wiadrowo Dolne","PlayerID":849100877,"Points":4965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46071","ServerKey":"pl181","X":288,"Y":490},{"Bonus":0,"Continent":"K47","ID":46072,"Name":"053. Wioska barbarzyƄska","PlayerID":7494497,"Points":8568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46072","ServerKey":"pl181","X":706,"Y":472},{"Bonus":0,"Continent":"K46","ID":46073,"Name":"W26","PlayerID":699524362,"Points":3078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46073","ServerKey":"pl181","X":690,"Y":416},{"Bonus":0,"Continent":"K36","ID":46074,"Name":"!36 65 Todiresti","PlayerID":698361257,"Points":9749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46074","ServerKey":"pl181","X":659,"Y":369},{"Bonus":0,"Continent":"K25","ID":46075,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46075","ServerKey":"pl181","X":570,"Y":297},{"Bonus":0,"Continent":"K53","ID":46076,"Name":"012","PlayerID":6180190,"Points":7882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46076","ServerKey":"pl181","X":312,"Y":589},{"Bonus":0,"Continent":"K34","ID":46077,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46077","ServerKey":"pl181","X":422,"Y":302},{"Bonus":0,"Continent":"K57","ID":46078,"Name":"Wioska barbarzyƄska","PlayerID":254937,"Points":8504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46078","ServerKey":"pl181","X":704,"Y":515},{"Bonus":0,"Continent":"K57","ID":46079,"Name":"=071= Wioska barbarzyƄska","PlayerID":3781794,"Points":9386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46079","ServerKey":"pl181","X":701,"Y":562},{"Bonus":0,"Continent":"K36","ID":46080,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":2822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46080","ServerKey":"pl181","X":652,"Y":358},{"Bonus":0,"Continent":"K25","ID":46081,"Name":"Wioska barbarzyƄska","PlayerID":849088639,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46081","ServerKey":"pl181","X":533,"Y":289},{"Bonus":0,"Continent":"K46","ID":46082,"Name":"Osada 5","PlayerID":8675636,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46082","ServerKey":"pl181","X":699,"Y":425},{"Bonus":0,"Continent":"K46","ID":46083,"Name":"Osada 10","PlayerID":699524891,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46083","ServerKey":"pl181","X":695,"Y":432},{"Bonus":0,"Continent":"K57","ID":46084,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46084","ServerKey":"pl181","X":706,"Y":557},{"Bonus":0,"Continent":"K66","ID":46085,"Name":"017 GĂłrki GĂłreczki","PlayerID":849100994,"Points":3532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46085","ServerKey":"pl181","X":653,"Y":640},{"Bonus":0,"Continent":"K66","ID":46086,"Name":"Bessa 014","PlayerID":848987051,"Points":10115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46086","ServerKey":"pl181","X":642,"Y":653},{"Bonus":0,"Continent":"K57","ID":46087,"Name":"031. Girowa","PlayerID":1601917,"Points":10409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46087","ServerKey":"pl181","X":710,"Y":534},{"Bonus":0,"Continent":"K64","ID":46088,"Name":"0072 Wioska barbarzyƄska","PlayerID":849037407,"Points":4032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46088","ServerKey":"pl181","X":447,"Y":690},{"Bonus":0,"Continent":"K43","ID":46089,"Name":"WB15","PlayerID":356642,"Points":4704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46089","ServerKey":"pl181","X":309,"Y":414},{"Bonus":0,"Continent":"K33","ID":46090,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":4607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46090","ServerKey":"pl181","X":337,"Y":368},{"Bonus":0,"Continent":"K43","ID":46091,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46091","ServerKey":"pl181","X":301,"Y":445},{"Bonus":0,"Continent":"K56","ID":46092,"Name":"TWIERDZA .:002:.","PlayerID":7154207,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46092","ServerKey":"pl181","X":692,"Y":577},{"Bonus":0,"Continent":"K57","ID":46093,"Name":"0111","PlayerID":699429153,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46093","ServerKey":"pl181","X":708,"Y":500},{"Bonus":4,"Continent":"K52","ID":46094,"Name":"007","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46094","ServerKey":"pl181","X":297,"Y":557},{"Bonus":0,"Continent":"K66","ID":46095,"Name":"a-7","PlayerID":848921861,"Points":6859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46095","ServerKey":"pl181","X":677,"Y":610},{"Bonus":0,"Continent":"K57","ID":46096,"Name":"06. Val Dorcia","PlayerID":848946700,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46096","ServerKey":"pl181","X":708,"Y":540},{"Bonus":0,"Continent":"K33","ID":46097,"Name":"##7","PlayerID":2800032,"Points":6919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46097","ServerKey":"pl181","X":347,"Y":352},{"Bonus":0,"Continent":"K74","ID":46098,"Name":"FP030","PlayerID":699605333,"Points":8987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46098","ServerKey":"pl181","X":470,"Y":707},{"Bonus":0,"Continent":"K64","ID":46099,"Name":"New World","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46099","ServerKey":"pl181","X":434,"Y":698},{"Bonus":0,"Continent":"K63","ID":46100,"Name":"Taran","PlayerID":6180190,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46100","ServerKey":"pl181","X":324,"Y":621},{"Bonus":0,"Continent":"K75","ID":46101,"Name":"Wioska barbarzyƄska 003","PlayerID":6870350,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46101","ServerKey":"pl181","X":562,"Y":705},{"Bonus":0,"Continent":"K24","ID":46102,"Name":"098.Stradi","PlayerID":698365960,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46102","ServerKey":"pl181","X":441,"Y":293},{"Bonus":0,"Continent":"K25","ID":46103,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":4628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46103","ServerKey":"pl181","X":532,"Y":297},{"Bonus":0,"Continent":"K57","ID":46104,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46104","ServerKey":"pl181","X":707,"Y":531},{"Bonus":0,"Continent":"K36","ID":46105,"Name":"!36 66 Partesti de Sus","PlayerID":698361257,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46105","ServerKey":"pl181","X":660,"Y":366},{"Bonus":0,"Continent":"K24","ID":46106,"Name":"????","PlayerID":698489071,"Points":9506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46106","ServerKey":"pl181","X":476,"Y":288},{"Bonus":0,"Continent":"K42","ID":46107,"Name":"Dream on","PlayerID":698962117,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46107","ServerKey":"pl181","X":290,"Y":474},{"Bonus":0,"Continent":"K74","ID":46108,"Name":"Kurnik","PlayerID":699603116,"Points":7002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46108","ServerKey":"pl181","X":474,"Y":709},{"Bonus":0,"Continent":"K63","ID":46109,"Name":"O065","PlayerID":272173,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46109","ServerKey":"pl181","X":335,"Y":625},{"Bonus":0,"Continent":"K63","ID":46110,"Name":"i na co to","PlayerID":849097837,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46110","ServerKey":"pl181","X":378,"Y":677},{"Bonus":0,"Continent":"K57","ID":46111,"Name":"Wioska barbarzyƄska","PlayerID":8418489,"Points":3649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46111","ServerKey":"pl181","X":714,"Y":500},{"Bonus":0,"Continent":"K66","ID":46112,"Name":"03-oss","PlayerID":848921861,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46112","ServerKey":"pl181","X":677,"Y":619},{"Bonus":9,"Continent":"K66","ID":46113,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46113","ServerKey":"pl181","X":658,"Y":631},{"Bonus":0,"Continent":"K64","ID":46114,"Name":"041","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46114","ServerKey":"pl181","X":410,"Y":689},{"Bonus":0,"Continent":"K63","ID":46115,"Name":"O129","PlayerID":272173,"Points":6401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46115","ServerKey":"pl181","X":331,"Y":621},{"Bonus":0,"Continent":"K66","ID":46116,"Name":"a-4","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46116","ServerKey":"pl181","X":676,"Y":613},{"Bonus":0,"Continent":"K53","ID":46117,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":5710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46117","ServerKey":"pl181","X":318,"Y":594},{"Bonus":1,"Continent":"K66","ID":46118,"Name":"Bessa 002","PlayerID":848987051,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46118","ServerKey":"pl181","X":642,"Y":656},{"Bonus":0,"Continent":"K63","ID":46119,"Name":"016. Wioska barbarzyƄska","PlayerID":698908184,"Points":8477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46119","ServerKey":"pl181","X":343,"Y":639},{"Bonus":0,"Continent":"K36","ID":46120,"Name":"017.","PlayerID":699580120,"Points":7864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46120","ServerKey":"pl181","X":665,"Y":376},{"Bonus":0,"Continent":"K42","ID":46121,"Name":"17 Adamuswielki2..","PlayerID":849018442,"Points":9386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46121","ServerKey":"pl181","X":292,"Y":451},{"Bonus":0,"Continent":"K35","ID":46122,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46122","ServerKey":"pl181","X":576,"Y":306},{"Bonus":0,"Continent":"K33","ID":46123,"Name":"003","PlayerID":8153941,"Points":8177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46123","ServerKey":"pl181","X":395,"Y":324},{"Bonus":0,"Continent":"K75","ID":46124,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46124","ServerKey":"pl181","X":508,"Y":706},{"Bonus":0,"Continent":"K52","ID":46125,"Name":"New WorldA","PlayerID":849084005,"Points":6394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46125","ServerKey":"pl181","X":295,"Y":548},{"Bonus":0,"Continent":"K34","ID":46126,"Name":"004","PlayerID":699883079,"Points":8394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46126","ServerKey":"pl181","X":467,"Y":373},{"Bonus":0,"Continent":"K25","ID":46127,"Name":"XXXX","PlayerID":849054951,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46127","ServerKey":"pl181","X":561,"Y":298},{"Bonus":0,"Continent":"K42","ID":46128,"Name":"Zielony 4","PlayerID":699876746,"Points":4001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46128","ServerKey":"pl181","X":299,"Y":452},{"Bonus":0,"Continent":"K46","ID":46129,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46129","ServerKey":"pl181","X":686,"Y":411},{"Bonus":0,"Continent":"K66","ID":46130,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46130","ServerKey":"pl181","X":643,"Y":646},{"Bonus":0,"Continent":"K56","ID":46131,"Name":"S011","PlayerID":8428196,"Points":7636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46131","ServerKey":"pl181","X":688,"Y":591},{"Bonus":0,"Continent":"K66","ID":46132,"Name":"035 Wioska barbarzyƄska","PlayerID":699346280,"Points":9800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46132","ServerKey":"pl181","X":606,"Y":685},{"Bonus":0,"Continent":"K52","ID":46133,"Name":"New WorldA","PlayerID":849084005,"Points":6058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46133","ServerKey":"pl181","X":288,"Y":523},{"Bonus":0,"Continent":"K33","ID":46134,"Name":"018","PlayerID":8153941,"Points":3736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46134","ServerKey":"pl181","X":396,"Y":321},{"Bonus":0,"Continent":"K36","ID":46135,"Name":"Wioska Bipi","PlayerID":699126490,"Points":2835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46135","ServerKey":"pl181","X":625,"Y":338},{"Bonus":0,"Continent":"K63","ID":46136,"Name":"Wyspa","PlayerID":698769107,"Points":2207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46136","ServerKey":"pl181","X":383,"Y":674},{"Bonus":0,"Continent":"K66","ID":46137,"Name":"01-oss","PlayerID":848921861,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46137","ServerKey":"pl181","X":677,"Y":617},{"Bonus":0,"Continent":"K65","ID":46138,"Name":"- 256 - SS","PlayerID":849018239,"Points":6366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46138","ServerKey":"pl181","X":557,"Y":698},{"Bonus":0,"Continent":"K36","ID":46139,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46139","ServerKey":"pl181","X":650,"Y":356},{"Bonus":0,"Continent":"K53","ID":46140,"Name":"Wioska barbarzyƄska","PlayerID":9280477,"Points":361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46140","ServerKey":"pl181","X":334,"Y":526},{"Bonus":0,"Continent":"K66","ID":46141,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":9431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46141","ServerKey":"pl181","X":629,"Y":664},{"Bonus":0,"Continent":"K63","ID":46142,"Name":"141","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46142","ServerKey":"pl181","X":395,"Y":682},{"Bonus":0,"Continent":"K64","ID":46143,"Name":"New World","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46143","ServerKey":"pl181","X":418,"Y":694},{"Bonus":0,"Continent":"K53","ID":46144,"Name":"Wioska barbarzyƄska","PlayerID":848901396,"Points":2737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46144","ServerKey":"pl181","X":312,"Y":554},{"Bonus":0,"Continent":"K42","ID":46145,"Name":"Bongo Wielkie","PlayerID":849100877,"Points":954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46145","ServerKey":"pl181","X":292,"Y":490},{"Bonus":0,"Continent":"K34","ID":46146,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46146","ServerKey":"pl181","X":402,"Y":311},{"Bonus":0,"Continent":"K64","ID":46147,"Name":"098","PlayerID":849099876,"Points":7775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46147","ServerKey":"pl181","X":403,"Y":695},{"Bonus":0,"Continent":"K34","ID":46148,"Name":"[0135]","PlayerID":8630972,"Points":9588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46148","ServerKey":"pl181","X":446,"Y":300},{"Bonus":0,"Continent":"K42","ID":46149,"Name":"53 nie barbarzyƄska","PlayerID":849018442,"Points":5099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46149","ServerKey":"pl181","X":292,"Y":454},{"Bonus":0,"Continent":"K36","ID":46150,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46150","ServerKey":"pl181","X":617,"Y":321},{"Bonus":0,"Continent":"K35","ID":46151,"Name":"--002--","PlayerID":542253,"Points":7267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46151","ServerKey":"pl181","X":567,"Y":300},{"Bonus":0,"Continent":"K46","ID":46152,"Name":"I104","PlayerID":699722599,"Points":8206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46152","ServerKey":"pl181","X":684,"Y":456},{"Bonus":0,"Continent":"K57","ID":46153,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46153","ServerKey":"pl181","X":712,"Y":523},{"Bonus":2,"Continent":"K43","ID":46154,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46154","ServerKey":"pl181","X":300,"Y":446},{"Bonus":0,"Continent":"K46","ID":46155,"Name":"Tylko dla Vampirki!","PlayerID":699785935,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46155","ServerKey":"pl181","X":687,"Y":403},{"Bonus":0,"Continent":"K25","ID":46156,"Name":"Wioska barbarzyƄska","PlayerID":849088639,"Points":5912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46156","ServerKey":"pl181","X":536,"Y":289},{"Bonus":0,"Continent":"K53","ID":46157,"Name":"Elo Elo","PlayerID":699016994,"Points":10241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46157","ServerKey":"pl181","X":309,"Y":583},{"Bonus":0,"Continent":"K66","ID":46158,"Name":"Wiadro09","PlayerID":8677963,"Points":7436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46158","ServerKey":"pl181","X":673,"Y":627},{"Bonus":0,"Continent":"K36","ID":46159,"Name":"!36 66 Granicesti","PlayerID":698361257,"Points":6477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46159","ServerKey":"pl181","X":664,"Y":361},{"Bonus":0,"Continent":"K57","ID":46160,"Name":"Wioska barbarzyƄska","PlayerID":2135129,"Points":3516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46160","ServerKey":"pl181","X":706,"Y":524},{"Bonus":0,"Continent":"K75","ID":46161,"Name":"Aaa","PlayerID":849055425,"Points":6834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46161","ServerKey":"pl181","X":570,"Y":704},{"Bonus":0,"Continent":"K33","ID":46162,"Name":"Zaplecze Barba 6","PlayerID":699796330,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46162","ServerKey":"pl181","X":368,"Y":332},{"Bonus":0,"Continent":"K47","ID":46163,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":7341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46163","ServerKey":"pl181","X":708,"Y":469},{"Bonus":0,"Continent":"K36","ID":46164,"Name":"XDX","PlayerID":699098531,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46164","ServerKey":"pl181","X":607,"Y":321},{"Bonus":0,"Continent":"K66","ID":46165,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46165","ServerKey":"pl181","X":659,"Y":644},{"Bonus":0,"Continent":"K47","ID":46166,"Name":"A#036","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46166","ServerKey":"pl181","X":710,"Y":491},{"Bonus":0,"Continent":"K66","ID":46167,"Name":"CastAway !033","PlayerID":9314079,"Points":5412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46167","ServerKey":"pl181","X":687,"Y":605},{"Bonus":0,"Continent":"K36","ID":46168,"Name":"!36 65 Calafindesti","PlayerID":698361257,"Points":5796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46168","ServerKey":"pl181","X":658,"Y":361},{"Bonus":0,"Continent":"K36","ID":46170,"Name":"0085","PlayerID":698416970,"Points":5347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46170","ServerKey":"pl181","X":682,"Y":393},{"Bonus":0,"Continent":"K43","ID":46172,"Name":"ZZ08","PlayerID":356642,"Points":8478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46172","ServerKey":"pl181","X":310,"Y":411},{"Bonus":0,"Continent":"K63","ID":46173,"Name":"Taran","PlayerID":6180190,"Points":8553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46173","ServerKey":"pl181","X":324,"Y":608},{"Bonus":0,"Continent":"K53","ID":46174,"Name":"Wioska barbarzyƄska 1","PlayerID":699016994,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46174","ServerKey":"pl181","X":311,"Y":582},{"Bonus":0,"Continent":"K66","ID":46175,"Name":"046 sebaseba1991","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46175","ServerKey":"pl181","X":621,"Y":675},{"Bonus":0,"Continent":"K25","ID":46176,"Name":"Wancki","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46176","ServerKey":"pl181","X":515,"Y":288},{"Bonus":0,"Continent":"K35","ID":46177,"Name":"XDX","PlayerID":699098531,"Points":6073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46177","ServerKey":"pl181","X":597,"Y":315},{"Bonus":0,"Continent":"K36","ID":46178,"Name":"!36 65 Mitocu Dragomirnei","PlayerID":698361257,"Points":6129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46178","ServerKey":"pl181","X":654,"Y":366},{"Bonus":0,"Continent":"K66","ID":46179,"Name":"020 GĂłrki Krajobrazowe","PlayerID":849100994,"Points":6745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46179","ServerKey":"pl181","X":646,"Y":645},{"Bonus":0,"Continent":"K47","ID":46180,"Name":"C09","PlayerID":849093742,"Points":5995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46180","ServerKey":"pl181","X":703,"Y":451},{"Bonus":0,"Continent":"K33","ID":46182,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46182","ServerKey":"pl181","X":319,"Y":392},{"Bonus":0,"Continent":"K74","ID":46183,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46183","ServerKey":"pl181","X":485,"Y":710},{"Bonus":0,"Continent":"K25","ID":46184,"Name":"tylko pp","PlayerID":8240677,"Points":7457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46184","ServerKey":"pl181","X":509,"Y":286},{"Bonus":0,"Continent":"K74","ID":46185,"Name":"Wioska barbarzyƄska 3","PlayerID":698178312,"Points":4635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46185","ServerKey":"pl181","X":452,"Y":703},{"Bonus":0,"Continent":"K34","ID":46186,"Name":"=0021=","PlayerID":698231772,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46186","ServerKey":"pl181","X":402,"Y":316},{"Bonus":0,"Continent":"K64","ID":46187,"Name":"New World","PlayerID":698152377,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46187","ServerKey":"pl181","X":419,"Y":698},{"Bonus":0,"Continent":"K47","ID":46188,"Name":"C10","PlayerID":849093742,"Points":5125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46188","ServerKey":"pl181","X":703,"Y":448},{"Bonus":0,"Continent":"K65","ID":46189,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46189","ServerKey":"pl181","X":578,"Y":695},{"Bonus":0,"Continent":"K74","ID":46190,"Name":"0.17b","PlayerID":699827112,"Points":9662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46190","ServerKey":"pl181","X":459,"Y":709},{"Bonus":0,"Continent":"K63","ID":46191,"Name":"xxx","PlayerID":849100811,"Points":2546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46191","ServerKey":"pl181","X":318,"Y":610},{"Bonus":5,"Continent":"K75","ID":46192,"Name":"BurƂak","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46192","ServerKey":"pl181","X":551,"Y":701},{"Bonus":0,"Continent":"K75","ID":46193,"Name":"Wioska barbarzyƄska","PlayerID":9016560,"Points":3097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46193","ServerKey":"pl181","X":535,"Y":706},{"Bonus":0,"Continent":"K57","ID":46194,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":5900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46194","ServerKey":"pl181","X":703,"Y":542},{"Bonus":0,"Continent":"K65","ID":46195,"Name":"###099###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46195","ServerKey":"pl181","X":579,"Y":692},{"Bonus":0,"Continent":"K65","ID":46196,"Name":"- 229 - SS","PlayerID":849018239,"Points":5103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46196","ServerKey":"pl181","X":549,"Y":699},{"Bonus":0,"Continent":"K64","ID":46197,"Name":"New World","PlayerID":698152377,"Points":6460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46197","ServerKey":"pl181","X":421,"Y":697},{"Bonus":0,"Continent":"K57","ID":46198,"Name":"A#021","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46198","ServerKey":"pl181","X":712,"Y":507},{"Bonus":5,"Continent":"K43","ID":46199,"Name":"*03 GAWRA*","PlayerID":2415972,"Points":9402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46199","ServerKey":"pl181","X":304,"Y":427},{"Bonus":0,"Continent":"K24","ID":46200,"Name":"BORSUK","PlayerID":1238300,"Points":9460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46200","ServerKey":"pl181","X":458,"Y":293},{"Bonus":0,"Continent":"K36","ID":46201,"Name":"XDX","PlayerID":699098531,"Points":6438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46201","ServerKey":"pl181","X":600,"Y":321},{"Bonus":0,"Continent":"K42","ID":46202,"Name":"Dream on","PlayerID":698962117,"Points":3451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46202","ServerKey":"pl181","X":291,"Y":484},{"Bonus":0,"Continent":"K43","ID":46203,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46203","ServerKey":"pl181","X":308,"Y":419},{"Bonus":0,"Continent":"K33","ID":46204,"Name":"PIROTECHNIK 001","PlayerID":849101083,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46204","ServerKey":"pl181","X":353,"Y":346},{"Bonus":0,"Continent":"K36","ID":46205,"Name":"004","PlayerID":9291984,"Points":9701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46205","ServerKey":"pl181","X":645,"Y":351},{"Bonus":0,"Continent":"K57","ID":46206,"Name":"WANADYNIT","PlayerID":17714,"Points":10363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46206","ServerKey":"pl181","X":703,"Y":550},{"Bonus":0,"Continent":"K66","ID":46207,"Name":"003 super hero","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46207","ServerKey":"pl181","X":603,"Y":687},{"Bonus":0,"Continent":"K52","ID":46208,"Name":"009","PlayerID":849098688,"Points":8234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46208","ServerKey":"pl181","X":296,"Y":548},{"Bonus":0,"Continent":"K74","ID":46209,"Name":"017. Night Raid","PlayerID":699684062,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46209","ServerKey":"pl181","X":494,"Y":707},{"Bonus":0,"Continent":"K36","ID":46210,"Name":"wioska","PlayerID":849102068,"Points":3330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46210","ServerKey":"pl181","X":635,"Y":338},{"Bonus":0,"Continent":"K43","ID":46211,"Name":"Kagusiowo 10","PlayerID":849101268,"Points":4641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46211","ServerKey":"pl181","X":303,"Y":444},{"Bonus":0,"Continent":"K57","ID":46212,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46212","ServerKey":"pl181","X":711,"Y":508},{"Bonus":0,"Continent":"K74","ID":46213,"Name":"Kurnik","PlayerID":699603116,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46213","ServerKey":"pl181","X":471,"Y":711},{"Bonus":0,"Continent":"K34","ID":46215,"Name":"019.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46215","ServerKey":"pl181","X":432,"Y":306},{"Bonus":0,"Continent":"K75","ID":46216,"Name":"czeska gura","PlayerID":849055425,"Points":9124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46216","ServerKey":"pl181","X":567,"Y":703},{"Bonus":0,"Continent":"K57","ID":46217,"Name":"0118","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46217","ServerKey":"pl181","X":705,"Y":505},{"Bonus":0,"Continent":"K46","ID":46219,"Name":"28.BlockB","PlayerID":9180206,"Points":4828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46219","ServerKey":"pl181","X":690,"Y":424},{"Bonus":1,"Continent":"K33","ID":46221,"Name":"Zaplecze drewniane 2","PlayerID":699796330,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46221","ServerKey":"pl181","X":371,"Y":339},{"Bonus":0,"Continent":"K57","ID":46222,"Name":"082 Hjubal","PlayerID":2135129,"Points":4417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46222","ServerKey":"pl181","X":713,"Y":505},{"Bonus":0,"Continent":"K36","ID":46223,"Name":"044","PlayerID":9148043,"Points":6652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46223","ServerKey":"pl181","X":662,"Y":359},{"Bonus":0,"Continent":"K52","ID":46225,"Name":"027","PlayerID":9280477,"Points":7129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46225","ServerKey":"pl181","X":294,"Y":561},{"Bonus":6,"Continent":"K66","ID":46226,"Name":"Zagroda6","PlayerID":6528152,"Points":6560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46226","ServerKey":"pl181","X":609,"Y":674},{"Bonus":0,"Continent":"K52","ID":46228,"Name":"New WorldA","PlayerID":849084005,"Points":6802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46228","ServerKey":"pl181","X":289,"Y":535},{"Bonus":0,"Continent":"K52","ID":46229,"Name":"Sandomierz","PlayerID":849101092,"Points":7943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46229","ServerKey":"pl181","X":297,"Y":560},{"Bonus":0,"Continent":"K36","ID":46231,"Name":"4...","PlayerID":9291984,"Points":2160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46231","ServerKey":"pl181","X":647,"Y":353},{"Bonus":0,"Continent":"K25","ID":46232,"Name":"014","PlayerID":699208929,"Points":6581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46232","ServerKey":"pl181","X":526,"Y":292},{"Bonus":0,"Continent":"K25","ID":46233,"Name":"North 015","PlayerID":849064752,"Points":9791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46233","ServerKey":"pl181","X":501,"Y":287},{"Bonus":0,"Continent":"K25","ID":46234,"Name":"Polandia","PlayerID":3298902,"Points":4970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46234","ServerKey":"pl181","X":519,"Y":294},{"Bonus":0,"Continent":"K42","ID":46236,"Name":"Wioska X06","PlayerID":698701911,"Points":3986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46236","ServerKey":"pl181","X":297,"Y":460},{"Bonus":0,"Continent":"K36","ID":46237,"Name":"XDX","PlayerID":699098531,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46237","ServerKey":"pl181","X":611,"Y":324},{"Bonus":0,"Continent":"K33","ID":46238,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46238","ServerKey":"pl181","X":371,"Y":330},{"Bonus":0,"Continent":"K52","ID":46239,"Name":"New WorldA","PlayerID":849084005,"Points":5802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46239","ServerKey":"pl181","X":287,"Y":523},{"Bonus":0,"Continent":"K63","ID":46240,"Name":"002","PlayerID":849101293,"Points":2733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46240","ServerKey":"pl181","X":347,"Y":650},{"Bonus":8,"Continent":"K74","ID":46241,"Name":"1.05","PlayerID":699827112,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46241","ServerKey":"pl181","X":438,"Y":703},{"Bonus":0,"Continent":"K33","ID":46242,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":6235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46242","ServerKey":"pl181","X":341,"Y":370},{"Bonus":0,"Continent":"K57","ID":46243,"Name":"=072= Wioska barbarzyƄska","PlayerID":3781794,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46243","ServerKey":"pl181","X":700,"Y":563},{"Bonus":0,"Continent":"K34","ID":46244,"Name":"204","PlayerID":698365960,"Points":6784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46244","ServerKey":"pl181","X":426,"Y":302},{"Bonus":0,"Continent":"K63","ID":46245,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46245","ServerKey":"pl181","X":377,"Y":672},{"Bonus":0,"Continent":"K66","ID":46246,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46246","ServerKey":"pl181","X":631,"Y":657},{"Bonus":0,"Continent":"K34","ID":46247,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46247","ServerKey":"pl181","X":408,"Y":309},{"Bonus":0,"Continent":"K34","ID":46248,"Name":"ElMajkelos III","PlayerID":849085160,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46248","ServerKey":"pl181","X":416,"Y":304},{"Bonus":0,"Continent":"K33","ID":46249,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":3578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46249","ServerKey":"pl181","X":326,"Y":384},{"Bonus":0,"Continent":"K56","ID":46250,"Name":"017 Therinsford","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46250","ServerKey":"pl181","X":690,"Y":597},{"Bonus":0,"Continent":"K35","ID":46251,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":3725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46251","ServerKey":"pl181","X":591,"Y":315},{"Bonus":0,"Continent":"K66","ID":46252,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46252","ServerKey":"pl181","X":630,"Y":662},{"Bonus":0,"Continent":"K66","ID":46253,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46253","ServerKey":"pl181","X":620,"Y":672},{"Bonus":0,"Continent":"K53","ID":46254,"Name":"Początek","PlayerID":6180190,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46254","ServerKey":"pl181","X":311,"Y":592},{"Bonus":0,"Continent":"K36","ID":46255,"Name":"0079","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46255","ServerKey":"pl181","X":683,"Y":391},{"Bonus":0,"Continent":"K46","ID":46256,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":7270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46256","ServerKey":"pl181","X":699,"Y":443},{"Bonus":0,"Continent":"K52","ID":46258,"Name":"C0341","PlayerID":8841266,"Points":2640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46258","ServerKey":"pl181","X":295,"Y":538},{"Bonus":0,"Continent":"K66","ID":46259,"Name":"a-8","PlayerID":848921861,"Points":5304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46259","ServerKey":"pl181","X":679,"Y":611},{"Bonus":0,"Continent":"K53","ID":46260,"Name":"Początek","PlayerID":6180190,"Points":8636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46260","ServerKey":"pl181","X":312,"Y":591},{"Bonus":7,"Continent":"K24","ID":46261,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46261","ServerKey":"pl181","X":497,"Y":293},{"Bonus":0,"Continent":"K63","ID":46262,"Name":"O111","PlayerID":272173,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46262","ServerKey":"pl181","X":332,"Y":623},{"Bonus":0,"Continent":"K57","ID":46263,"Name":"Ger1","PlayerID":2246711,"Points":7973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46263","ServerKey":"pl181","X":712,"Y":524},{"Bonus":0,"Continent":"K33","ID":46265,"Name":"012. Arrabiata","PlayerID":849102092,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46265","ServerKey":"pl181","X":320,"Y":383},{"Bonus":0,"Continent":"K47","ID":46266,"Name":"C.032","PlayerID":9188016,"Points":4475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46266","ServerKey":"pl181","X":713,"Y":474},{"Bonus":0,"Continent":"K47","ID":46267,"Name":"Osada 9","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46267","ServerKey":"pl181","X":703,"Y":426},{"Bonus":0,"Continent":"K47","ID":46268,"Name":"13 PidĆŒama","PlayerID":849101845,"Points":9413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46268","ServerKey":"pl181","X":712,"Y":467},{"Bonus":0,"Continent":"K66","ID":46269,"Name":"Melina","PlayerID":849101104,"Points":3774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46269","ServerKey":"pl181","X":626,"Y":658},{"Bonus":0,"Continent":"K63","ID":46270,"Name":"C086","PlayerID":699383279,"Points":7424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46270","ServerKey":"pl181","X":366,"Y":661},{"Bonus":0,"Continent":"K43","ID":46271,"Name":"004b","PlayerID":8259895,"Points":4878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46271","ServerKey":"pl181","X":305,"Y":416},{"Bonus":0,"Continent":"K66","ID":46272,"Name":"Komandos","PlayerID":7976264,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46272","ServerKey":"pl181","X":633,"Y":663},{"Bonus":0,"Continent":"K75","ID":46273,"Name":"096 invidia","PlayerID":849093426,"Points":5201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46273","ServerKey":"pl181","X":544,"Y":710},{"Bonus":0,"Continent":"K46","ID":46274,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46274","ServerKey":"pl181","X":693,"Y":406},{"Bonus":0,"Continent":"K74","ID":46275,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":4982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46275","ServerKey":"pl181","X":494,"Y":715},{"Bonus":2,"Continent":"K63","ID":46276,"Name":"predator","PlayerID":698908184,"Points":9214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46276","ServerKey":"pl181","X":342,"Y":643},{"Bonus":0,"Continent":"K56","ID":46277,"Name":"EE 013","PlayerID":849100149,"Points":5758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46277","ServerKey":"pl181","X":693,"Y":583},{"Bonus":6,"Continent":"K52","ID":46278,"Name":"C0240","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46278","ServerKey":"pl181","X":294,"Y":546},{"Bonus":0,"Continent":"K42","ID":46279,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46279","ServerKey":"pl181","X":291,"Y":496},{"Bonus":0,"Continent":"K57","ID":46280,"Name":"041. Inowiec","PlayerID":1601917,"Points":9413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46280","ServerKey":"pl181","X":708,"Y":531},{"Bonus":0,"Continent":"K52","ID":46281,"Name":"||Irak","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46281","ServerKey":"pl181","X":291,"Y":531},{"Bonus":0,"Continent":"K33","ID":46282,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":3245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46282","ServerKey":"pl181","X":336,"Y":369},{"Bonus":0,"Continent":"K57","ID":46283,"Name":"Wioska barbarzyƄska","PlayerID":699150527,"Points":7874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46283","ServerKey":"pl181","X":707,"Y":517},{"Bonus":1,"Continent":"K36","ID":46284,"Name":"East2","PlayerID":1086351,"Points":6957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46284","ServerKey":"pl181","X":677,"Y":378},{"Bonus":0,"Continent":"K63","ID":46285,"Name":"O086","PlayerID":272173,"Points":9938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46285","ServerKey":"pl181","X":334,"Y":626},{"Bonus":0,"Continent":"K52","ID":46286,"Name":"New WorldA","PlayerID":849084005,"Points":6243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46286","ServerKey":"pl181","X":288,"Y":535},{"Bonus":0,"Continent":"K75","ID":46287,"Name":"rafisonik2","PlayerID":849101108,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46287","ServerKey":"pl181","X":511,"Y":713},{"Bonus":0,"Continent":"K35","ID":46288,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46288","ServerKey":"pl181","X":577,"Y":305},{"Bonus":0,"Continent":"K33","ID":46289,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46289","ServerKey":"pl181","X":323,"Y":388},{"Bonus":0,"Continent":"K36","ID":46290,"Name":"Tiger districk","PlayerID":699875213,"Points":3214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46290","ServerKey":"pl181","X":659,"Y":358},{"Bonus":0,"Continent":"K53","ID":46291,"Name":"005","PlayerID":6180190,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46291","ServerKey":"pl181","X":312,"Y":588},{"Bonus":0,"Continent":"K42","ID":46292,"Name":"Dream on","PlayerID":698962117,"Points":8890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46292","ServerKey":"pl181","X":294,"Y":484},{"Bonus":0,"Continent":"K33","ID":46293,"Name":"013","PlayerID":699660539,"Points":6968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46293","ServerKey":"pl181","X":390,"Y":319},{"Bonus":0,"Continent":"K36","ID":46294,"Name":"Zzzz - Kasztelania 005","PlayerID":699733098,"Points":4208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46294","ServerKey":"pl181","X":641,"Y":350},{"Bonus":0,"Continent":"K63","ID":46295,"Name":"D017","PlayerID":272173,"Points":5978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46295","ServerKey":"pl181","X":354,"Y":649},{"Bonus":0,"Continent":"K63","ID":46296,"Name":"Wioska 0022","PlayerID":9186126,"Points":8626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46296","ServerKey":"pl181","X":348,"Y":652},{"Bonus":0,"Continent":"K36","ID":46298,"Name":"Gattacka","PlayerID":699298370,"Points":7536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46298","ServerKey":"pl181","X":614,"Y":386},{"Bonus":0,"Continent":"K47","ID":46299,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46299","ServerKey":"pl181","X":715,"Y":492},{"Bonus":0,"Continent":"K65","ID":46300,"Name":"###100###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46300","ServerKey":"pl181","X":585,"Y":697},{"Bonus":0,"Continent":"K47","ID":46301,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46301","ServerKey":"pl181","X":714,"Y":493},{"Bonus":0,"Continent":"K36","ID":46303,"Name":"038","PlayerID":698635863,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46303","ServerKey":"pl181","X":673,"Y":383},{"Bonus":0,"Continent":"K56","ID":46304,"Name":"Wioska 08","PlayerID":849101162,"Points":5627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46304","ServerKey":"pl181","X":691,"Y":589},{"Bonus":0,"Continent":"K66","ID":46306,"Name":"klops33","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46306","ServerKey":"pl181","X":628,"Y":671},{"Bonus":0,"Continent":"K24","ID":46308,"Name":"????","PlayerID":698489071,"Points":10009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46308","ServerKey":"pl181","X":473,"Y":291},{"Bonus":0,"Continent":"K66","ID":46309,"Name":"komandos","PlayerID":7976264,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46309","ServerKey":"pl181","X":636,"Y":665},{"Bonus":0,"Continent":"K66","ID":46310,"Name":"klops3","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46310","ServerKey":"pl181","X":626,"Y":667},{"Bonus":0,"Continent":"K74","ID":46311,"Name":"Wioska mygos","PlayerID":698178312,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46311","ServerKey":"pl181","X":454,"Y":700},{"Bonus":0,"Continent":"K63","ID":46312,"Name":"Taran","PlayerID":6180190,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46312","ServerKey":"pl181","X":325,"Y":625},{"Bonus":0,"Continent":"K66","ID":46313,"Name":"HAPERT","PlayerID":848909464,"Points":11891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46313","ServerKey":"pl181","X":624,"Y":663},{"Bonus":0,"Continent":"K66","ID":46314,"Name":"...04 am","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46314","ServerKey":"pl181","X":673,"Y":619},{"Bonus":0,"Continent":"K42","ID":46315,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46315","ServerKey":"pl181","X":296,"Y":445},{"Bonus":0,"Continent":"K24","ID":46316,"Name":".achim.","PlayerID":6936607,"Points":5285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46316","ServerKey":"pl181","X":484,"Y":292},{"Bonus":0,"Continent":"K33","ID":46317,"Name":"010","PlayerID":8153941,"Points":3762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46317","ServerKey":"pl181","X":389,"Y":321},{"Bonus":0,"Continent":"K25","ID":46318,"Name":"C.01 a panicz to dokąd?","PlayerID":849026145,"Points":8995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46318","ServerKey":"pl181","X":550,"Y":298},{"Bonus":2,"Continent":"K47","ID":46319,"Name":"B002 ZieNciu Glina","PlayerID":113796,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46319","ServerKey":"pl181","X":706,"Y":463},{"Bonus":0,"Continent":"K75","ID":46320,"Name":"Kurnik","PlayerID":699603116,"Points":8689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46320","ServerKey":"pl181","X":517,"Y":708},{"Bonus":0,"Continent":"K53","ID":46321,"Name":"Elo elo 3","PlayerID":699016994,"Points":9298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46321","ServerKey":"pl181","X":310,"Y":585},{"Bonus":0,"Continent":"K66","ID":46322,"Name":"029","PlayerID":2323859,"Points":4533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46322","ServerKey":"pl181","X":664,"Y":637},{"Bonus":0,"Continent":"K33","ID":46323,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":4654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46323","ServerKey":"pl181","X":336,"Y":367},{"Bonus":0,"Continent":"K36","ID":46324,"Name":"Kolorowo","PlayerID":699785935,"Points":6540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46324","ServerKey":"pl181","X":686,"Y":397},{"Bonus":0,"Continent":"K35","ID":46325,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":5040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46325","ServerKey":"pl181","X":572,"Y":304},{"Bonus":0,"Continent":"K64","ID":46326,"Name":"149","PlayerID":849099876,"Points":7858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46326","ServerKey":"pl181","X":400,"Y":683},{"Bonus":0,"Continent":"K75","ID":46327,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":3904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46327","ServerKey":"pl181","X":514,"Y":712},{"Bonus":0,"Continent":"K57","ID":46328,"Name":"02. Oxenfurt","PlayerID":8976313,"Points":9372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46328","ServerKey":"pl181","X":705,"Y":541},{"Bonus":0,"Continent":"K33","ID":46329,"Name":"Szlachcic","PlayerID":698388578,"Points":6584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46329","ServerKey":"pl181","X":363,"Y":338},{"Bonus":0,"Continent":"K24","ID":46330,"Name":"BrzeĆșno Szlacheckie","PlayerID":849101116,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46330","ServerKey":"pl181","X":459,"Y":294},{"Bonus":0,"Continent":"K33","ID":46331,"Name":"PIROTECHNIK 004","PlayerID":849101083,"Points":5661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46331","ServerKey":"pl181","X":352,"Y":345},{"Bonus":0,"Continent":"K47","ID":46332,"Name":"070.","PlayerID":849094609,"Points":3435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46332","ServerKey":"pl181","X":707,"Y":463},{"Bonus":0,"Continent":"K43","ID":46333,"Name":"004","PlayerID":8259895,"Points":4930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46333","ServerKey":"pl181","X":303,"Y":417},{"Bonus":0,"Continent":"K24","ID":46334,"Name":"#0153 barbarzyƄska","PlayerID":1238300,"Points":6848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46334","ServerKey":"pl181","X":488,"Y":292},{"Bonus":0,"Continent":"K33","ID":46335,"Name":"BOSS S","PlayerID":849101604,"Points":7950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46335","ServerKey":"pl181","X":353,"Y":344},{"Bonus":0,"Continent":"K34","ID":46336,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46336","ServerKey":"pl181","X":404,"Y":311},{"Bonus":0,"Continent":"K56","ID":46337,"Name":"Didiek","PlayerID":849070946,"Points":3314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46337","ServerKey":"pl181","X":689,"Y":585},{"Bonus":0,"Continent":"K65","ID":46338,"Name":"NBT","PlayerID":849047044,"Points":9736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46338","ServerKey":"pl181","X":595,"Y":690},{"Bonus":0,"Continent":"K74","ID":46339,"Name":"14. GoƂe BABY","PlayerID":849092769,"Points":7126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46339","ServerKey":"pl181","X":477,"Y":709},{"Bonus":3,"Continent":"K75","ID":46340,"Name":"002 moĆŒe się uda","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46340","ServerKey":"pl181","X":512,"Y":709},{"Bonus":0,"Continent":"K65","ID":46342,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":5728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46342","ServerKey":"pl181","X":578,"Y":691},{"Bonus":0,"Continent":"K74","ID":46343,"Name":"0070 Wioska barbarzyƄska","PlayerID":849037407,"Points":8751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46343","ServerKey":"pl181","X":447,"Y":705},{"Bonus":0,"Continent":"K63","ID":46344,"Name":"Pontarfynach","PlayerID":849092685,"Points":4411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46344","ServerKey":"pl181","X":352,"Y":653},{"Bonus":0,"Continent":"K24","ID":46345,"Name":".achim.","PlayerID":6936607,"Points":6508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46345","ServerKey":"pl181","X":482,"Y":286},{"Bonus":3,"Continent":"K33","ID":46346,"Name":"Wioska barbarzyƄska","PlayerID":849064752,"Points":2462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46346","ServerKey":"pl181","X":327,"Y":374},{"Bonus":0,"Continent":"K33","ID":46347,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46347","ServerKey":"pl181","X":393,"Y":319},{"Bonus":0,"Continent":"K33","ID":46348,"Name":"Szlachcic","PlayerID":698388578,"Points":8101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46348","ServerKey":"pl181","X":361,"Y":340},{"Bonus":0,"Continent":"K25","ID":46349,"Name":"Wioska A","PlayerID":1867161,"Points":6649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46349","ServerKey":"pl181","X":542,"Y":293},{"Bonus":0,"Continent":"K52","ID":46350,"Name":"C0243","PlayerID":8841266,"Points":6652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46350","ServerKey":"pl181","X":292,"Y":548},{"Bonus":0,"Continent":"K74","ID":46351,"Name":"FP016","PlayerID":699605333,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46351","ServerKey":"pl181","X":477,"Y":704},{"Bonus":0,"Continent":"K47","ID":46352,"Name":"B#024","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46352","ServerKey":"pl181","X":705,"Y":460},{"Bonus":0,"Continent":"K25","ID":46353,"Name":"AAA","PlayerID":1006847,"Points":9083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46353","ServerKey":"pl181","X":552,"Y":294},{"Bonus":0,"Continent":"K36","ID":46354,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46354","ServerKey":"pl181","X":641,"Y":339},{"Bonus":0,"Continent":"K36","ID":46355,"Name":"!36 66 Plutonita","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46355","ServerKey":"pl181","X":663,"Y":366},{"Bonus":0,"Continent":"K75","ID":46356,"Name":"#K75 0010","PlayerID":699728159,"Points":5344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46356","ServerKey":"pl181","X":522,"Y":713},{"Bonus":0,"Continent":"K46","ID":46357,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46357","ServerKey":"pl181","X":685,"Y":410},{"Bonus":0,"Continent":"K63","ID":46358,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":7906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46358","ServerKey":"pl181","X":373,"Y":668},{"Bonus":0,"Continent":"K63","ID":46359,"Name":"0142","PlayerID":7085510,"Points":4946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46359","ServerKey":"pl181","X":391,"Y":680},{"Bonus":0,"Continent":"K47","ID":46360,"Name":"Pochodnie","PlayerID":849101378,"Points":4079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46360","ServerKey":"pl181","X":704,"Y":439},{"Bonus":0,"Continent":"K36","ID":46361,"Name":"XDX","PlayerID":699098531,"Points":11164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46361","ServerKey":"pl181","X":602,"Y":315},{"Bonus":0,"Continent":"K66","ID":46362,"Name":"S028","PlayerID":8428196,"Points":3167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46362","ServerKey":"pl181","X":682,"Y":600},{"Bonus":0,"Continent":"K63","ID":46363,"Name":"0134","PlayerID":7085510,"Points":4529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46363","ServerKey":"pl181","X":391,"Y":682},{"Bonus":0,"Continent":"K57","ID":46364,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46364","ServerKey":"pl181","X":710,"Y":544},{"Bonus":0,"Continent":"K63","ID":46365,"Name":"Taran","PlayerID":6180190,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46365","ServerKey":"pl181","X":329,"Y":613},{"Bonus":0,"Continent":"K74","ID":46366,"Name":"[014]","PlayerID":9094538,"Points":4121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46366","ServerKey":"pl181","X":445,"Y":707},{"Bonus":0,"Continent":"K66","ID":46367,"Name":"Bessa 009","PlayerID":848987051,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46367","ServerKey":"pl181","X":641,"Y":658},{"Bonus":0,"Continent":"K33","ID":46368,"Name":"32 Kreda","PlayerID":698231772,"Points":9829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46368","ServerKey":"pl181","X":395,"Y":316},{"Bonus":0,"Continent":"K75","ID":46369,"Name":"-16-","PlayerID":849032414,"Points":8042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46369","ServerKey":"pl181","X":572,"Y":702},{"Bonus":0,"Continent":"K34","ID":46370,"Name":"025.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46370","ServerKey":"pl181","X":433,"Y":303},{"Bonus":6,"Continent":"K24","ID":46371,"Name":"059...barbarka","PlayerID":6920960,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46371","ServerKey":"pl181","X":439,"Y":296},{"Bonus":0,"Continent":"K75","ID":46372,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46372","ServerKey":"pl181","X":512,"Y":705},{"Bonus":0,"Continent":"K24","ID":46374,"Name":"306","PlayerID":7271812,"Points":4676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46374","ServerKey":"pl181","X":441,"Y":297},{"Bonus":0,"Continent":"K47","ID":46375,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46375","ServerKey":"pl181","X":711,"Y":492},{"Bonus":0,"Continent":"K24","ID":46376,"Name":"#0187 grabarz22","PlayerID":1238300,"Points":4260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46376","ServerKey":"pl181","X":469,"Y":288},{"Bonus":0,"Continent":"K33","ID":46377,"Name":"002. Diavola","PlayerID":849102092,"Points":9746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46377","ServerKey":"pl181","X":321,"Y":381},{"Bonus":0,"Continent":"K25","ID":46378,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46378","ServerKey":"pl181","X":513,"Y":288},{"Bonus":0,"Continent":"K64","ID":46379,"Name":"New World","PlayerID":698152377,"Points":8003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46379","ServerKey":"pl181","X":423,"Y":696},{"Bonus":0,"Continent":"K36","ID":46380,"Name":"046","PlayerID":698361257,"Points":5394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46380","ServerKey":"pl181","X":662,"Y":358},{"Bonus":0,"Continent":"K35","ID":46381,"Name":"XDX","PlayerID":699098531,"Points":4601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46381","ServerKey":"pl181","X":594,"Y":311},{"Bonus":0,"Continent":"K64","ID":46382,"Name":"059","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46382","ServerKey":"pl181","X":404,"Y":692},{"Bonus":0,"Continent":"K74","ID":46383,"Name":"040.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46383","ServerKey":"pl181","X":451,"Y":709},{"Bonus":0,"Continent":"K53","ID":46384,"Name":"Początek","PlayerID":7842579,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46384","ServerKey":"pl181","X":302,"Y":578},{"Bonus":0,"Continent":"K43","ID":46385,"Name":"z181_28","PlayerID":393668,"Points":8388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46385","ServerKey":"pl181","X":304,"Y":436},{"Bonus":0,"Continent":"K75","ID":46386,"Name":"#K75 0016","PlayerID":699728159,"Points":4916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46386","ServerKey":"pl181","X":518,"Y":710},{"Bonus":0,"Continent":"K46","ID":46387,"Name":"StaƂo się","PlayerID":699785935,"Points":8252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46387","ServerKey":"pl181","X":689,"Y":400},{"Bonus":0,"Continent":"K63","ID":46388,"Name":"AAA","PlayerID":6180190,"Points":8762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46388","ServerKey":"pl181","X":319,"Y":606},{"Bonus":8,"Continent":"K36","ID":46389,"Name":"!36 66 Solonetu Nou","PlayerID":698361257,"Points":10317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46389","ServerKey":"pl181","X":665,"Y":368},{"Bonus":0,"Continent":"K52","ID":46390,"Name":"[D]_[007] Dejv.oldplyr","PlayerID":699380607,"Points":5899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46390","ServerKey":"pl181","X":286,"Y":506},{"Bonus":0,"Continent":"K47","ID":46391,"Name":"38. Pan Maszynista","PlayerID":699804790,"Points":6336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46391","ServerKey":"pl181","X":711,"Y":460},{"Bonus":0,"Continent":"K75","ID":46392,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46392","ServerKey":"pl181","X":510,"Y":710},{"Bonus":0,"Continent":"K36","ID":46393,"Name":"!36 75 Botosanita Mare","PlayerID":698361257,"Points":6370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46393","ServerKey":"pl181","X":659,"Y":370},{"Bonus":0,"Continent":"K75","ID":46394,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":7466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46394","ServerKey":"pl181","X":549,"Y":709},{"Bonus":0,"Continent":"K33","ID":46395,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":6420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46395","ServerKey":"pl181","X":389,"Y":328},{"Bonus":0,"Continent":"K43","ID":46396,"Name":"Maszlug kolonia VIII","PlayerID":848977649,"Points":8177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46396","ServerKey":"pl181","X":364,"Y":431},{"Bonus":0,"Continent":"K47","ID":46397,"Name":"C.033","PlayerID":9188016,"Points":4486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46397","ServerKey":"pl181","X":708,"Y":476},{"Bonus":0,"Continent":"K42","ID":46399,"Name":"Wioska X11","PlayerID":698701911,"Points":4499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46399","ServerKey":"pl181","X":296,"Y":469},{"Bonus":0,"Continent":"K74","ID":46400,"Name":"0.05 CWKS","PlayerID":699827112,"Points":9713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46400","ServerKey":"pl181","X":460,"Y":702},{"Bonus":0,"Continent":"K66","ID":46401,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46401","ServerKey":"pl181","X":662,"Y":637},{"Bonus":0,"Continent":"K25","ID":46402,"Name":"asdert","PlayerID":699818726,"Points":8870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46402","ServerKey":"pl181","X":531,"Y":292},{"Bonus":0,"Continent":"K75","ID":46403,"Name":"-05-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46403","ServerKey":"pl181","X":577,"Y":700},{"Bonus":2,"Continent":"K57","ID":46404,"Name":"B14","PlayerID":848995478,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46404","ServerKey":"pl181","X":704,"Y":542},{"Bonus":0,"Continent":"K63","ID":46405,"Name":"014","PlayerID":698908184,"Points":4335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46405","ServerKey":"pl181","X":350,"Y":641},{"Bonus":0,"Continent":"K42","ID":46406,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46406","ServerKey":"pl181","X":298,"Y":458},{"Bonus":0,"Continent":"K33","ID":46407,"Name":"009","PlayerID":8153941,"Points":6339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46407","ServerKey":"pl181","X":391,"Y":318},{"Bonus":0,"Continent":"K65","ID":46408,"Name":"###101###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46408","ServerKey":"pl181","X":581,"Y":694},{"Bonus":0,"Continent":"K63","ID":46410,"Name":"Familia Kuzyni","PlayerID":7349282,"Points":3344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46410","ServerKey":"pl181","X":379,"Y":666},{"Bonus":3,"Continent":"K63","ID":46411,"Name":"AAA","PlayerID":6180190,"Points":10162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46411","ServerKey":"pl181","X":314,"Y":606},{"Bonus":0,"Continent":"K63","ID":46412,"Name":"Taran","PlayerID":6180190,"Points":8547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46412","ServerKey":"pl181","X":316,"Y":611},{"Bonus":0,"Continent":"K66","ID":46413,"Name":"006","PlayerID":3589487,"Points":3706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46413","ServerKey":"pl181","X":684,"Y":606},{"Bonus":0,"Continent":"K63","ID":46414,"Name":"O132","PlayerID":272173,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46414","ServerKey":"pl181","X":324,"Y":620},{"Bonus":0,"Continent":"K63","ID":46415,"Name":"Taran","PlayerID":6180190,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46415","ServerKey":"pl181","X":323,"Y":620},{"Bonus":0,"Continent":"K47","ID":46416,"Name":"C.023","PlayerID":9188016,"Points":4677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46416","ServerKey":"pl181","X":714,"Y":481},{"Bonus":0,"Continent":"K36","ID":46417,"Name":"Z00","PlayerID":849055553,"Points":5951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46417","ServerKey":"pl181","X":672,"Y":384},{"Bonus":0,"Continent":"K57","ID":46418,"Name":"Wioska KaszczuJ 3","PlayerID":849104356,"Points":9576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46418","ServerKey":"pl181","X":700,"Y":575},{"Bonus":0,"Continent":"K42","ID":46419,"Name":"55 nie barbarzyƄska","PlayerID":849018442,"Points":6642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46419","ServerKey":"pl181","X":297,"Y":456},{"Bonus":0,"Continent":"K53","ID":46420,"Name":"Ave Why!","PlayerID":6180190,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46420","ServerKey":"pl181","X":308,"Y":590},{"Bonus":0,"Continent":"K63","ID":46421,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46421","ServerKey":"pl181","X":319,"Y":610},{"Bonus":0,"Continent":"K24","ID":46422,"Name":"089.Stradi","PlayerID":698365960,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46422","ServerKey":"pl181","X":436,"Y":298},{"Bonus":0,"Continent":"K53","ID":46423,"Name":"Wioska barbarzyƄska","PlayerID":8699429,"Points":3249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46423","ServerKey":"pl181","X":309,"Y":595},{"Bonus":0,"Continent":"K24","ID":46424,"Name":"[0176]","PlayerID":8630972,"Points":9410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46424","ServerKey":"pl181","X":449,"Y":291},{"Bonus":0,"Continent":"K63","ID":46425,"Name":"0105","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46425","ServerKey":"pl181","X":386,"Y":681},{"Bonus":0,"Continent":"K66","ID":46426,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46426","ServerKey":"pl181","X":670,"Y":620},{"Bonus":1,"Continent":"K43","ID":46427,"Name":"Z13","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46427","ServerKey":"pl181","X":313,"Y":406},{"Bonus":0,"Continent":"K63","ID":46428,"Name":"179","PlayerID":849099876,"Points":7600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46428","ServerKey":"pl181","X":384,"Y":679},{"Bonus":0,"Continent":"K35","ID":46429,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46429","ServerKey":"pl181","X":563,"Y":300},{"Bonus":0,"Continent":"K63","ID":46430,"Name":"D006","PlayerID":272173,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46430","ServerKey":"pl181","X":355,"Y":645},{"Bonus":0,"Continent":"K52","ID":46431,"Name":"018","PlayerID":9280477,"Points":7717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46431","ServerKey":"pl181","X":298,"Y":559},{"Bonus":0,"Continent":"K66","ID":46432,"Name":"a-1","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46432","ServerKey":"pl181","X":677,"Y":618},{"Bonus":0,"Continent":"K75","ID":46434,"Name":"#K75 0015","PlayerID":699728159,"Points":5322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46434","ServerKey":"pl181","X":515,"Y":712},{"Bonus":0,"Continent":"K33","ID":46435,"Name":"013","PlayerID":8153941,"Points":3554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46435","ServerKey":"pl181","X":395,"Y":323},{"Bonus":0,"Continent":"K74","ID":46436,"Name":"R 036","PlayerID":699195358,"Points":6796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46436","ServerKey":"pl181","X":495,"Y":710},{"Bonus":0,"Continent":"K63","ID":46437,"Name":"O021","PlayerID":272173,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46437","ServerKey":"pl181","X":336,"Y":632},{"Bonus":0,"Continent":"K47","ID":46438,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":7333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46438","ServerKey":"pl181","X":708,"Y":448},{"Bonus":0,"Continent":"K36","ID":46439,"Name":"Wioska-011-","PlayerID":7675610,"Points":2363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46439","ServerKey":"pl181","X":634,"Y":335},{"Bonus":0,"Continent":"K24","ID":46440,"Name":"#0137 deleted","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46440","ServerKey":"pl181","X":471,"Y":288},{"Bonus":0,"Continent":"K56","ID":46441,"Name":"TWIERDZA .:062:.","PlayerID":7154207,"Points":6815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46441","ServerKey":"pl181","X":692,"Y":581},{"Bonus":0,"Continent":"K75","ID":46442,"Name":"ZK Wronki","PlayerID":7581876,"Points":6178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46442","ServerKey":"pl181","X":548,"Y":705},{"Bonus":0,"Continent":"K33","ID":46443,"Name":"0032","PlayerID":848955783,"Points":2417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46443","ServerKey":"pl181","X":324,"Y":387},{"Bonus":0,"Continent":"K42","ID":46444,"Name":"Mmmvvvv","PlayerID":848981726,"Points":8936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46444","ServerKey":"pl181","X":289,"Y":476},{"Bonus":0,"Continent":"K74","ID":46445,"Name":"FP014","PlayerID":699605333,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46445","ServerKey":"pl181","X":481,"Y":708},{"Bonus":0,"Continent":"K53","ID":46446,"Name":"Początek","PlayerID":6180190,"Points":6937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46446","ServerKey":"pl181","X":311,"Y":591},{"Bonus":0,"Continent":"K42","ID":46447,"Name":"Dream on","PlayerID":698962117,"Points":3518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46447","ServerKey":"pl181","X":294,"Y":486},{"Bonus":0,"Continent":"K35","ID":46448,"Name":"Lipinki ƁuĆŒyckie","PlayerID":849101144,"Points":8647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46448","ServerKey":"pl181","X":539,"Y":350},{"Bonus":0,"Continent":"K34","ID":46449,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46449","ServerKey":"pl181","X":423,"Y":300},{"Bonus":0,"Continent":"K33","ID":46450,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46450","ServerKey":"pl181","X":374,"Y":334},{"Bonus":0,"Continent":"K52","ID":46451,"Name":"[0244]","PlayerID":8630972,"Points":6082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46451","ServerKey":"pl181","X":287,"Y":514},{"Bonus":0,"Continent":"K63","ID":46452,"Name":"O060","PlayerID":272173,"Points":9876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46452","ServerKey":"pl181","X":332,"Y":624},{"Bonus":0,"Continent":"K57","ID":46453,"Name":"Wioska brutal29","PlayerID":1601917,"Points":3746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46453","ServerKey":"pl181","X":709,"Y":535},{"Bonus":0,"Continent":"K75","ID":46454,"Name":"- 263 - SS","PlayerID":849018239,"Points":5242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46454","ServerKey":"pl181","X":549,"Y":705},{"Bonus":0,"Continent":"K66","ID":46455,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46455","ServerKey":"pl181","X":658,"Y":632},{"Bonus":0,"Continent":"K52","ID":46456,"Name":"C0250","PlayerID":8841266,"Points":5236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46456","ServerKey":"pl181","X":289,"Y":533},{"Bonus":0,"Continent":"K63","ID":46457,"Name":"0143","PlayerID":7085510,"Points":5135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46457","ServerKey":"pl181","X":390,"Y":682},{"Bonus":0,"Continent":"K25","ID":46458,"Name":"sh01","PlayerID":7064954,"Points":6618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46458","ServerKey":"pl181","X":511,"Y":285},{"Bonus":0,"Continent":"K53","ID":46459,"Name":"028","PlayerID":9280477,"Points":7391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46459","ServerKey":"pl181","X":302,"Y":558},{"Bonus":0,"Continent":"K46","ID":46460,"Name":"Wioska k01","PlayerID":848976034,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46460","ServerKey":"pl181","X":699,"Y":437},{"Bonus":0,"Continent":"K36","ID":46461,"Name":"!36 66 Cajvana","PlayerID":698361257,"Points":9275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46461","ServerKey":"pl181","X":664,"Y":364},{"Bonus":0,"Continent":"K57","ID":46462,"Name":"=087= St. Augustine","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46462","ServerKey":"pl181","X":701,"Y":571},{"Bonus":9,"Continent":"K36","ID":46463,"Name":"606|373","PlayerID":699580120,"Points":9375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46463","ServerKey":"pl181","X":668,"Y":371},{"Bonus":0,"Continent":"K52","ID":46464,"Name":"Cisza","PlayerID":698769107,"Points":5854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46464","ServerKey":"pl181","X":293,"Y":547},{"Bonus":0,"Continent":"K63","ID":46465,"Name":"Taran","PlayerID":6180190,"Points":7862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46465","ServerKey":"pl181","X":316,"Y":608},{"Bonus":0,"Continent":"K63","ID":46466,"Name":"@rkowi Zawodnicy Dominują Rybki","PlayerID":1434753,"Points":9010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46466","ServerKey":"pl181","X":382,"Y":633},{"Bonus":0,"Continent":"K66","ID":46467,"Name":"Komandos","PlayerID":7976264,"Points":9569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46467","ServerKey":"pl181","X":639,"Y":663},{"Bonus":0,"Continent":"K36","ID":46468,"Name":"039","PlayerID":698635863,"Points":8606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46468","ServerKey":"pl181","X":672,"Y":382},{"Bonus":0,"Continent":"K34","ID":46470,"Name":"ElMajkelos XII","PlayerID":849085160,"Points":3555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46470","ServerKey":"pl181","X":417,"Y":307},{"Bonus":0,"Continent":"K43","ID":46471,"Name":"Kagusiowo 5","PlayerID":849101268,"Points":3514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46471","ServerKey":"pl181","X":301,"Y":439},{"Bonus":0,"Continent":"K66","ID":46473,"Name":"Wioska Zorro 030","PlayerID":849080702,"Points":4317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46473","ServerKey":"pl181","X":685,"Y":607},{"Bonus":0,"Continent":"K47","ID":46474,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":7547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46474","ServerKey":"pl181","X":705,"Y":474},{"Bonus":0,"Continent":"K52","ID":46475,"Name":"EO EO","PlayerID":699697558,"Points":8446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46475","ServerKey":"pl181","X":289,"Y":503},{"Bonus":0,"Continent":"K42","ID":46477,"Name":"015","PlayerID":6131106,"Points":3983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46477","ServerKey":"pl181","X":297,"Y":428},{"Bonus":0,"Continent":"K75","ID":46478,"Name":"Wioska barbarzyƄska","PlayerID":8980651,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46478","ServerKey":"pl181","X":538,"Y":703},{"Bonus":0,"Continent":"K66","ID":46479,"Name":"027.","PlayerID":699695167,"Points":4013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46479","ServerKey":"pl181","X":633,"Y":668},{"Bonus":0,"Continent":"K74","ID":46481,"Name":"New World","PlayerID":698152377,"Points":8871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46481","ServerKey":"pl181","X":434,"Y":705},{"Bonus":7,"Continent":"K43","ID":46482,"Name":"003c","PlayerID":8259895,"Points":4852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46482","ServerKey":"pl181","X":305,"Y":412},{"Bonus":0,"Continent":"K46","ID":46483,"Name":"[059] Wioska barbarzyƄska","PlayerID":849095068,"Points":4136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46483","ServerKey":"pl181","X":691,"Y":424},{"Bonus":0,"Continent":"K35","ID":46485,"Name":"--033--","PlayerID":542253,"Points":6209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46485","ServerKey":"pl181","X":573,"Y":301},{"Bonus":0,"Continent":"K63","ID":46487,"Name":"C019","PlayerID":699383279,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46487","ServerKey":"pl181","X":371,"Y":668},{"Bonus":0,"Continent":"K75","ID":46488,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46488","ServerKey":"pl181","X":505,"Y":704},{"Bonus":0,"Continent":"K64","ID":46489,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46489","ServerKey":"pl181","X":435,"Y":699},{"Bonus":0,"Continent":"K57","ID":46490,"Name":"01. Rome","PlayerID":848946700,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46490","ServerKey":"pl181","X":712,"Y":538},{"Bonus":0,"Continent":"K75","ID":46491,"Name":"C007","PlayerID":698599365,"Points":5135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46491","ServerKey":"pl181","X":537,"Y":702},{"Bonus":0,"Continent":"K53","ID":46492,"Name":"055.","PlayerID":7183372,"Points":7645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46492","ServerKey":"pl181","X":316,"Y":597},{"Bonus":0,"Continent":"K57","ID":46493,"Name":"015. Diran","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46493","ServerKey":"pl181","X":710,"Y":550},{"Bonus":0,"Continent":"K36","ID":46494,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46494","ServerKey":"pl181","X":611,"Y":316},{"Bonus":0,"Continent":"K36","ID":46496,"Name":"0138","PlayerID":698416970,"Points":2627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46496","ServerKey":"pl181","X":681,"Y":391},{"Bonus":5,"Continent":"K35","ID":46497,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46497","ServerKey":"pl181","X":553,"Y":300},{"Bonus":0,"Continent":"K34","ID":46499,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46499","ServerKey":"pl181","X":407,"Y":314},{"Bonus":0,"Continent":"K75","ID":46501,"Name":"001 nie chcę","PlayerID":6116940,"Points":6129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46501","ServerKey":"pl181","X":534,"Y":711},{"Bonus":0,"Continent":"K36","ID":46502,"Name":"B027","PlayerID":8740199,"Points":8498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46502","ServerKey":"pl181","X":624,"Y":326},{"Bonus":0,"Continent":"K66","ID":46503,"Name":"komands","PlayerID":7976264,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46503","ServerKey":"pl181","X":638,"Y":663},{"Bonus":0,"Continent":"K52","ID":46504,"Name":"035","PlayerID":9280477,"Points":5767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46504","ServerKey":"pl181","X":295,"Y":544},{"Bonus":0,"Continent":"K75","ID":46505,"Name":"Blessed","PlayerID":699443920,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46505","ServerKey":"pl181","X":552,"Y":704},{"Bonus":0,"Continent":"K64","ID":46506,"Name":"092","PlayerID":849099876,"Points":9300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46506","ServerKey":"pl181","X":414,"Y":688},{"Bonus":0,"Continent":"K75","ID":46507,"Name":"002 jakieƛ preferencje?","PlayerID":6116940,"Points":7161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46507","ServerKey":"pl181","X":533,"Y":708},{"Bonus":0,"Continent":"K57","ID":46508,"Name":"=089= Wioska barbarzyƄska","PlayerID":3781794,"Points":7112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46508","ServerKey":"pl181","X":701,"Y":563},{"Bonus":0,"Continent":"K33","ID":46509,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46509","ServerKey":"pl181","X":372,"Y":333},{"Bonus":2,"Continent":"K42","ID":46510,"Name":"Osada koczownikĂłw","PlayerID":699856962,"Points":7712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46510","ServerKey":"pl181","X":299,"Y":424},{"Bonus":0,"Continent":"K56","ID":46511,"Name":"Wioska 01","PlayerID":849101162,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46511","ServerKey":"pl181","X":692,"Y":591},{"Bonus":0,"Continent":"K47","ID":46512,"Name":"Borubar 6","PlayerID":699413581,"Points":4079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46512","ServerKey":"pl181","X":710,"Y":485},{"Bonus":0,"Continent":"K42","ID":46513,"Name":"Wioska barbarzyƄska","PlayerID":8366045,"Points":4173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46513","ServerKey":"pl181","X":295,"Y":439},{"Bonus":0,"Continent":"K42","ID":46514,"Name":"Dream on","PlayerID":698962117,"Points":5964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46514","ServerKey":"pl181","X":292,"Y":485},{"Bonus":0,"Continent":"K75","ID":46515,"Name":"Bandalina","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46515","ServerKey":"pl181","X":552,"Y":705},{"Bonus":0,"Continent":"K47","ID":46516,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46516","ServerKey":"pl181","X":711,"Y":496},{"Bonus":0,"Continent":"K74","ID":46517,"Name":"0071 Wioska barbarzyƄska","PlayerID":849037407,"Points":4381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46517","ServerKey":"pl181","X":444,"Y":705},{"Bonus":0,"Continent":"K25","ID":46518,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46518","ServerKey":"pl181","X":508,"Y":285},{"Bonus":4,"Continent":"K34","ID":46519,"Name":"#0217 Segadorr dar","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46519","ServerKey":"pl181","X":441,"Y":302},{"Bonus":0,"Continent":"K52","ID":46520,"Name":"011 Cedynia","PlayerID":9235561,"Points":3150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46520","ServerKey":"pl181","X":287,"Y":533},{"Bonus":0,"Continent":"K63","ID":46521,"Name":"Bez emocji II","PlayerID":849092685,"Points":7938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46521","ServerKey":"pl181","X":352,"Y":655},{"Bonus":0,"Continent":"K75","ID":46522,"Name":"C001","PlayerID":698599365,"Points":9595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46522","ServerKey":"pl181","X":538,"Y":702},{"Bonus":0,"Continent":"K56","ID":46523,"Name":"Wioska 15","PlayerID":849101162,"Points":3742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46523","ServerKey":"pl181","X":689,"Y":588},{"Bonus":0,"Continent":"K66","ID":46524,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46524","ServerKey":"pl181","X":645,"Y":654},{"Bonus":0,"Continent":"K36","ID":46525,"Name":"XDX","PlayerID":699098531,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46525","ServerKey":"pl181","X":608,"Y":323},{"Bonus":0,"Continent":"K75","ID":46527,"Name":"Bosco","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46527","ServerKey":"pl181","X":558,"Y":706},{"Bonus":0,"Continent":"K46","ID":46528,"Name":"Gotowa odpowiedz","PlayerID":699785935,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46528","ServerKey":"pl181","X":690,"Y":400},{"Bonus":0,"Continent":"K57","ID":46529,"Name":"WAVELLIT","PlayerID":17714,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46529","ServerKey":"pl181","X":708,"Y":551},{"Bonus":0,"Continent":"K53","ID":46530,"Name":"Elo elo 8","PlayerID":699016994,"Points":5202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46530","ServerKey":"pl181","X":307,"Y":576},{"Bonus":5,"Continent":"K33","ID":46531,"Name":"20 Karbon","PlayerID":698231772,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46531","ServerKey":"pl181","X":393,"Y":320},{"Bonus":0,"Continent":"K64","ID":46532,"Name":"New World","PlayerID":698152377,"Points":5386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46532","ServerKey":"pl181","X":420,"Y":693},{"Bonus":0,"Continent":"K33","ID":46534,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46534","ServerKey":"pl181","X":355,"Y":352},{"Bonus":0,"Continent":"K36","ID":46535,"Name":"Na KraƄcu ƚwiata 018","PlayerID":9291984,"Points":4307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46535","ServerKey":"pl181","X":640,"Y":343},{"Bonus":0,"Continent":"K74","ID":46536,"Name":"004","PlayerID":699725436,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46536","ServerKey":"pl181","X":464,"Y":706},{"Bonus":0,"Continent":"K47","ID":46537,"Name":"[822] Odludzie","PlayerID":848985692,"Points":6793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46537","ServerKey":"pl181","X":706,"Y":439},{"Bonus":0,"Continent":"K66","ID":46538,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46538","ServerKey":"pl181","X":619,"Y":672},{"Bonus":0,"Continent":"K66","ID":46539,"Name":"a11","PlayerID":848921861,"Points":5598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46539","ServerKey":"pl181","X":683,"Y":613},{"Bonus":0,"Continent":"K42","ID":46540,"Name":"Dream on","PlayerID":698962117,"Points":3399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46540","ServerKey":"pl181","X":293,"Y":478},{"Bonus":0,"Continent":"K64","ID":46541,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46541","ServerKey":"pl181","X":428,"Y":695},{"Bonus":0,"Continent":"K33","ID":46542,"Name":"Gites!","PlayerID":8553904,"Points":2140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46542","ServerKey":"pl181","X":389,"Y":322},{"Bonus":0,"Continent":"K56","ID":46543,"Name":"TWIERDZA .:090:.","PlayerID":7154207,"Points":8581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46543","ServerKey":"pl181","X":698,"Y":568},{"Bonus":0,"Continent":"K36","ID":46544,"Name":"B025","PlayerID":8740199,"Points":9616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46544","ServerKey":"pl181","X":624,"Y":325},{"Bonus":0,"Continent":"K36","ID":46545,"Name":"Zzzz - Kasztelania 001","PlayerID":9291984,"Points":4605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46545","ServerKey":"pl181","X":642,"Y":348},{"Bonus":0,"Continent":"K25","ID":46546,"Name":"Wioska smurfĂłw","PlayerID":699818726,"Points":9310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46546","ServerKey":"pl181","X":525,"Y":287},{"Bonus":0,"Continent":"K75","ID":46547,"Name":"Ave Why!","PlayerID":699121671,"Points":5490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46547","ServerKey":"pl181","X":502,"Y":715},{"Bonus":0,"Continent":"K75","ID":46548,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":5697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46548","ServerKey":"pl181","X":547,"Y":707},{"Bonus":0,"Continent":"K36","ID":46549,"Name":"XDX","PlayerID":699098531,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46549","ServerKey":"pl181","X":609,"Y":323},{"Bonus":0,"Continent":"K57","ID":46550,"Name":"042. Ihrowiec","PlayerID":1601917,"Points":7713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46550","ServerKey":"pl181","X":701,"Y":552},{"Bonus":0,"Continent":"K47","ID":46551,"Name":"Jan Ost N II","PlayerID":879782,"Points":5824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46551","ServerKey":"pl181","X":702,"Y":460},{"Bonus":0,"Continent":"K63","ID":46552,"Name":"Taran","PlayerID":6180190,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46552","ServerKey":"pl181","X":325,"Y":624},{"Bonus":0,"Continent":"K66","ID":46553,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46553","ServerKey":"pl181","X":650,"Y":653},{"Bonus":7,"Continent":"K46","ID":46554,"Name":"Osada koczownikĂłw","PlayerID":699598425,"Points":6631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46554","ServerKey":"pl181","X":688,"Y":410},{"Bonus":0,"Continent":"K63","ID":46555,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46555","ServerKey":"pl181","X":373,"Y":666},{"Bonus":0,"Continent":"K66","ID":46556,"Name":"013.","PlayerID":699695167,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46556","ServerKey":"pl181","X":627,"Y":668},{"Bonus":0,"Continent":"K43","ID":46557,"Name":"Z14","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46557","ServerKey":"pl181","X":314,"Y":406},{"Bonus":0,"Continent":"K75","ID":46558,"Name":"029 tu będzie raj","PlayerID":6116940,"Points":7172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46558","ServerKey":"pl181","X":534,"Y":713},{"Bonus":0,"Continent":"K42","ID":46559,"Name":"Avanti!","PlayerID":698625834,"Points":6231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46559","ServerKey":"pl181","X":287,"Y":479},{"Bonus":0,"Continent":"K33","ID":46560,"Name":"Bunkier u Mariana","PlayerID":849101177,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46560","ServerKey":"pl181","X":325,"Y":390},{"Bonus":0,"Continent":"K57","ID":46562,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46562","ServerKey":"pl181","X":701,"Y":544},{"Bonus":0,"Continent":"K63","ID":46563,"Name":"031. Wioska Lord Ɓukasz1997","PlayerID":698908184,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46563","ServerKey":"pl181","X":349,"Y":642},{"Bonus":0,"Continent":"K66","ID":46564,"Name":"*012*","PlayerID":1205898,"Points":8306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46564","ServerKey":"pl181","X":681,"Y":615},{"Bonus":0,"Continent":"K47","ID":46566,"Name":"054.","PlayerID":849094609,"Points":5942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46566","ServerKey":"pl181","X":704,"Y":464},{"Bonus":0,"Continent":"K53","ID":46568,"Name":"Ave Why!","PlayerID":6180190,"Points":1826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46568","ServerKey":"pl181","X":310,"Y":590},{"Bonus":0,"Continent":"K42","ID":46569,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46569","ServerKey":"pl181","X":293,"Y":444},{"Bonus":0,"Continent":"K46","ID":46570,"Name":"B#015","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46570","ServerKey":"pl181","X":698,"Y":445},{"Bonus":0,"Continent":"K75","ID":46571,"Name":"rafisonik5","PlayerID":849101108,"Points":8986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46571","ServerKey":"pl181","X":511,"Y":715},{"Bonus":0,"Continent":"K57","ID":46572,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46572","ServerKey":"pl181","X":703,"Y":541},{"Bonus":0,"Continent":"K42","ID":46573,"Name":"Avanti!","PlayerID":698625834,"Points":6791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46573","ServerKey":"pl181","X":290,"Y":485},{"Bonus":0,"Continent":"K35","ID":46574,"Name":"Wioska Wojtka","PlayerID":8609713,"Points":3455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46574","ServerKey":"pl181","X":587,"Y":309},{"Bonus":0,"Continent":"K63","ID":46575,"Name":"0144","PlayerID":7085510,"Points":7721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46575","ServerKey":"pl181","X":390,"Y":681},{"Bonus":0,"Continent":"K36","ID":46576,"Name":"!36 76 Deleni","PlayerID":698361257,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46576","ServerKey":"pl181","X":667,"Y":370},{"Bonus":0,"Continent":"K63","ID":46577,"Name":"086","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46577","ServerKey":"pl181","X":396,"Y":680},{"Bonus":0,"Continent":"K42","ID":46578,"Name":"Grubasy 5","PlayerID":634848,"Points":3961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46578","ServerKey":"pl181","X":295,"Y":450},{"Bonus":0,"Continent":"K46","ID":46579,"Name":"Apollo","PlayerID":699785935,"Points":7905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46579","ServerKey":"pl181","X":699,"Y":428},{"Bonus":0,"Continent":"K66","ID":46580,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46580","ServerKey":"pl181","X":629,"Y":662},{"Bonus":0,"Continent":"K56","ID":46581,"Name":"Wioska 17","PlayerID":849101162,"Points":3984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46581","ServerKey":"pl181","X":691,"Y":587},{"Bonus":0,"Continent":"K33","ID":46582,"Name":"017","PlayerID":8153941,"Points":3777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46582","ServerKey":"pl181","X":393,"Y":322},{"Bonus":0,"Continent":"K25","ID":46583,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46583","ServerKey":"pl181","X":577,"Y":299},{"Bonus":0,"Continent":"K47","ID":46584,"Name":"STREFA GAZY | 003","PlayerID":9228039,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46584","ServerKey":"pl181","X":714,"Y":478},{"Bonus":0,"Continent":"K52","ID":46585,"Name":"Cisza","PlayerID":698769107,"Points":5553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46585","ServerKey":"pl181","X":293,"Y":546},{"Bonus":0,"Continent":"K24","ID":46586,"Name":"054","PlayerID":2502956,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46586","ServerKey":"pl181","X":462,"Y":297},{"Bonus":5,"Continent":"K25","ID":46587,"Name":"002","PlayerID":699208929,"Points":10469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46587","ServerKey":"pl181","X":525,"Y":296},{"Bonus":0,"Continent":"K36","ID":46588,"Name":"!36 66 Botosana","PlayerID":698361257,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46588","ServerKey":"pl181","X":663,"Y":368},{"Bonus":9,"Continent":"K66","ID":46589,"Name":"Bessa 001","PlayerID":848987051,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46589","ServerKey":"pl181","X":640,"Y":656},{"Bonus":0,"Continent":"K36","ID":46590,"Name":"B015","PlayerID":8740199,"Points":2878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46590","ServerKey":"pl181","X":624,"Y":333},{"Bonus":0,"Continent":"K36","ID":46591,"Name":"!36 66 Ciprian Porumbescu","PlayerID":698361257,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46591","ServerKey":"pl181","X":662,"Y":366},{"Bonus":0,"Continent":"K47","ID":46592,"Name":"C01","PlayerID":849093742,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46592","ServerKey":"pl181","X":705,"Y":450},{"Bonus":0,"Continent":"K63","ID":46593,"Name":"O008","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46593","ServerKey":"pl181","X":339,"Y":638},{"Bonus":0,"Continent":"K34","ID":46594,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46594","ServerKey":"pl181","X":423,"Y":305},{"Bonus":0,"Continent":"K63","ID":46595,"Name":"090","PlayerID":849099876,"Points":9895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46595","ServerKey":"pl181","X":383,"Y":679},{"Bonus":0,"Continent":"K25","ID":46596,"Name":"North 055","PlayerID":849064752,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46596","ServerKey":"pl181","X":511,"Y":283},{"Bonus":0,"Continent":"K66","ID":46597,"Name":"020 Wioska barbarzyƄska","PlayerID":699346280,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46597","ServerKey":"pl181","X":600,"Y":689},{"Bonus":9,"Continent":"K75","ID":46598,"Name":"Wyspa_41","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46598","ServerKey":"pl181","X":520,"Y":706},{"Bonus":0,"Continent":"K65","ID":46600,"Name":"###102###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46600","ServerKey":"pl181","X":582,"Y":692},{"Bonus":0,"Continent":"K74","ID":46601,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46601","ServerKey":"pl181","X":437,"Y":702},{"Bonus":0,"Continent":"K24","ID":46602,"Name":"251...Karki98","PlayerID":6920960,"Points":11420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46602","ServerKey":"pl181","X":453,"Y":293},{"Bonus":0,"Continent":"K53","ID":46603,"Name":"Ave Why!","PlayerID":6180190,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46603","ServerKey":"pl181","X":312,"Y":590},{"Bonus":0,"Continent":"K64","ID":46604,"Name":"093","PlayerID":849099876,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46604","ServerKey":"pl181","X":411,"Y":688},{"Bonus":0,"Continent":"K66","ID":46605,"Name":"030","PlayerID":2323859,"Points":9573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46605","ServerKey":"pl181","X":661,"Y":639},{"Bonus":0,"Continent":"K57","ID":46606,"Name":"052","PlayerID":7085502,"Points":7774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46606","ServerKey":"pl181","X":712,"Y":512},{"Bonus":4,"Continent":"K33","ID":46607,"Name":"004:Osada koczownikĂłw","PlayerID":8772425,"Points":8499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46607","ServerKey":"pl181","X":378,"Y":327},{"Bonus":0,"Continent":"K36","ID":46608,"Name":"XDX","PlayerID":699098531,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46608","ServerKey":"pl181","X":612,"Y":316},{"Bonus":0,"Continent":"K33","ID":46609,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":3275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46609","ServerKey":"pl181","X":360,"Y":344},{"Bonus":0,"Continent":"K66","ID":46611,"Name":"KEFALOS","PlayerID":848890012,"Points":1739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46611","ServerKey":"pl181","X":675,"Y":609},{"Bonus":0,"Continent":"K66","ID":46612,"Name":"komandos","PlayerID":7976264,"Points":10043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46612","ServerKey":"pl181","X":639,"Y":665},{"Bonus":0,"Continent":"K65","ID":46613,"Name":"IĆ‚ĆŒa","PlayerID":698723158,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46613","ServerKey":"pl181","X":570,"Y":696},{"Bonus":0,"Continent":"K66","ID":46614,"Name":"07-oss","PlayerID":848921861,"Points":8384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46614","ServerKey":"pl181","X":671,"Y":618},{"Bonus":0,"Continent":"K75","ID":46615,"Name":"022","PlayerID":698996782,"Points":9432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46615","ServerKey":"pl181","X":524,"Y":712},{"Bonus":0,"Continent":"K24","ID":46616,"Name":"[0118]","PlayerID":8630972,"Points":10086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46616","ServerKey":"pl181","X":442,"Y":297},{"Bonus":0,"Continent":"K65","ID":46617,"Name":"###103###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46617","ServerKey":"pl181","X":599,"Y":690},{"Bonus":0,"Continent":"K36","ID":46618,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":4687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46618","ServerKey":"pl181","X":614,"Y":385},{"Bonus":0,"Continent":"K25","ID":46619,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46619","ServerKey":"pl181","X":520,"Y":288},{"Bonus":0,"Continent":"K35","ID":46620,"Name":"Zloty ƚwit","PlayerID":699883079,"Points":7236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46620","ServerKey":"pl181","X":579,"Y":300},{"Bonus":0,"Continent":"K33","ID":46621,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46621","ServerKey":"pl181","X":358,"Y":349},{"Bonus":0,"Continent":"K57","ID":46622,"Name":"Wioska barbarzyƄska","PlayerID":2135129,"Points":2469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46622","ServerKey":"pl181","X":705,"Y":520},{"Bonus":0,"Continent":"K57","ID":46623,"Name":"*000*","PlayerID":698191218,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46623","ServerKey":"pl181","X":713,"Y":512},{"Bonus":0,"Continent":"K75","ID":46624,"Name":"#K75 0022","PlayerID":699728159,"Points":5206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46624","ServerKey":"pl181","X":515,"Y":714},{"Bonus":0,"Continent":"K33","ID":46625,"Name":"0030","PlayerID":2321390,"Points":2800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46625","ServerKey":"pl181","X":323,"Y":385},{"Bonus":0,"Continent":"K66","ID":46626,"Name":"Wioska barbarzyƄska","PlayerID":699039013,"Points":2420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46626","ServerKey":"pl181","X":651,"Y":648},{"Bonus":0,"Continent":"K52","ID":46627,"Name":"005","PlayerID":848886200,"Points":4894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46627","ServerKey":"pl181","X":288,"Y":537},{"Bonus":0,"Continent":"K33","ID":46628,"Name":"010","PlayerID":8724192,"Points":2498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46628","ServerKey":"pl181","X":313,"Y":397},{"Bonus":0,"Continent":"K52","ID":46629,"Name":"New WorldA","PlayerID":849084005,"Points":5065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46629","ServerKey":"pl181","X":292,"Y":546},{"Bonus":0,"Continent":"K63","ID":46630,"Name":"Taran","PlayerID":6180190,"Points":6647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46630","ServerKey":"pl181","X":321,"Y":605},{"Bonus":0,"Continent":"K33","ID":46631,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":10021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46631","ServerKey":"pl181","X":380,"Y":322},{"Bonus":0,"Continent":"K52","ID":46632,"Name":"[0245]","PlayerID":8630972,"Points":7059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46632","ServerKey":"pl181","X":285,"Y":514},{"Bonus":0,"Continent":"K33","ID":46633,"Name":"...","PlayerID":699657450,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46633","ServerKey":"pl181","X":340,"Y":359},{"Bonus":0,"Continent":"K46","ID":46635,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46635","ServerKey":"pl181","X":699,"Y":436},{"Bonus":0,"Continent":"K47","ID":46636,"Name":"A#031","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46636","ServerKey":"pl181","X":714,"Y":492},{"Bonus":0,"Continent":"K25","ID":46637,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46637","ServerKey":"pl181","X":533,"Y":293},{"Bonus":0,"Continent":"K24","ID":46638,"Name":"Wioska MMario","PlayerID":763529,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46638","ServerKey":"pl181","X":496,"Y":289},{"Bonus":0,"Continent":"K43","ID":46639,"Name":"008b","PlayerID":8259895,"Points":4579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46639","ServerKey":"pl181","X":305,"Y":424},{"Bonus":0,"Continent":"K33","ID":46640,"Name":"009","PlayerID":849101205,"Points":5850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46640","ServerKey":"pl181","X":351,"Y":347},{"Bonus":0,"Continent":"K36","ID":46641,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46641","ServerKey":"pl181","X":640,"Y":339},{"Bonus":0,"Continent":"K47","ID":46642,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46642","ServerKey":"pl181","X":712,"Y":494},{"Bonus":0,"Continent":"K24","ID":46643,"Name":"????","PlayerID":698489071,"Points":7087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46643","ServerKey":"pl181","X":472,"Y":291},{"Bonus":0,"Continent":"K47","ID":46644,"Name":"C.024","PlayerID":9188016,"Points":7969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46644","ServerKey":"pl181","X":711,"Y":488},{"Bonus":0,"Continent":"K33","ID":46645,"Name":"Star","PlayerID":7462660,"Points":9106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46645","ServerKey":"pl181","X":339,"Y":369},{"Bonus":0,"Continent":"K42","ID":46646,"Name":"Dream on","PlayerID":698962117,"Points":9497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46646","ServerKey":"pl181","X":294,"Y":494},{"Bonus":0,"Continent":"K75","ID":46647,"Name":"Witten","PlayerID":6870350,"Points":7660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46647","ServerKey":"pl181","X":568,"Y":704},{"Bonus":0,"Continent":"K66","ID":46648,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":9053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46648","ServerKey":"pl181","X":646,"Y":651},{"Bonus":0,"Continent":"K65","ID":46649,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46649","ServerKey":"pl181","X":580,"Y":693},{"Bonus":0,"Continent":"K56","ID":46651,"Name":"007","PlayerID":301602,"Points":4638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46651","ServerKey":"pl181","X":699,"Y":560},{"Bonus":0,"Continent":"K66","ID":46652,"Name":"...03 am","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46652","ServerKey":"pl181","X":673,"Y":618},{"Bonus":0,"Continent":"K33","ID":46653,"Name":"BOSS S1","PlayerID":849101604,"Points":5471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46653","ServerKey":"pl181","X":354,"Y":344},{"Bonus":0,"Continent":"K66","ID":46654,"Name":"027","PlayerID":2323859,"Points":4510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46654","ServerKey":"pl181","X":663,"Y":638},{"Bonus":0,"Continent":"K75","ID":46655,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":5721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46655","ServerKey":"pl181","X":547,"Y":705},{"Bonus":0,"Continent":"K42","ID":46656,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46656","ServerKey":"pl181","X":287,"Y":494},{"Bonus":0,"Continent":"K47","ID":46658,"Name":"Wioska Turystyczna 005","PlayerID":7588382,"Points":7925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46658","ServerKey":"pl181","X":712,"Y":473},{"Bonus":0,"Continent":"K36","ID":46659,"Name":"!--","PlayerID":698361257,"Points":2768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46659","ServerKey":"pl181","X":658,"Y":358},{"Bonus":0,"Continent":"K36","ID":46660,"Name":"040","PlayerID":698635863,"Points":9140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46660","ServerKey":"pl181","X":672,"Y":381},{"Bonus":0,"Continent":"K35","ID":46661,"Name":"XDX","PlayerID":699098531,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46661","ServerKey":"pl181","X":597,"Y":310},{"Bonus":0,"Continent":"K63","ID":46662,"Name":"C079","PlayerID":699383279,"Points":9965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46662","ServerKey":"pl181","X":354,"Y":653},{"Bonus":0,"Continent":"K53","ID":46663,"Name":"Ave Why!","PlayerID":6180190,"Points":4937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46663","ServerKey":"pl181","X":307,"Y":593},{"Bonus":0,"Continent":"K63","ID":46664,"Name":"O097","PlayerID":272173,"Points":8792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46664","ServerKey":"pl181","X":331,"Y":623},{"Bonus":0,"Continent":"K35","ID":46665,"Name":"--025--","PlayerID":542253,"Points":4866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46665","ServerKey":"pl181","X":573,"Y":300},{"Bonus":8,"Continent":"K66","ID":46666,"Name":"010 GĂłry Beorskie","PlayerID":8337151,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46666","ServerKey":"pl181","X":670,"Y":619},{"Bonus":0,"Continent":"K33","ID":46667,"Name":"151...A","PlayerID":6920960,"Points":6940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46667","ServerKey":"pl181","X":396,"Y":311},{"Bonus":0,"Continent":"K53","ID":46668,"Name":"Wioska barbarzyƄska","PlayerID":7183372,"Points":6426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46668","ServerKey":"pl181","X":317,"Y":595},{"Bonus":0,"Continent":"K43","ID":46670,"Name":"Z05","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46670","ServerKey":"pl181","X":316,"Y":409},{"Bonus":0,"Continent":"K75","ID":46671,"Name":"Wioska dixon15pl","PlayerID":7860453,"Points":6362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46671","ServerKey":"pl181","X":539,"Y":705},{"Bonus":0,"Continent":"K74","ID":46672,"Name":"Kurnik","PlayerID":699603116,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46672","ServerKey":"pl181","X":469,"Y":711},{"Bonus":0,"Continent":"K52","ID":46673,"Name":"Wyspa 010","PlayerID":225023,"Points":7759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46673","ServerKey":"pl181","X":296,"Y":564},{"Bonus":0,"Continent":"K33","ID":46674,"Name":"Z 0002","PlayerID":3909522,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46674","ServerKey":"pl181","X":347,"Y":359},{"Bonus":0,"Continent":"K66","ID":46676,"Name":"028 Wioska barbarzyƄska","PlayerID":699346280,"Points":9224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46676","ServerKey":"pl181","X":600,"Y":686},{"Bonus":0,"Continent":"K35","ID":46677,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46677","ServerKey":"pl181","X":587,"Y":311},{"Bonus":0,"Continent":"K24","ID":46678,"Name":"#0142 barbarzyƄska","PlayerID":1238300,"Points":6941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46678","ServerKey":"pl181","X":483,"Y":287},{"Bonus":0,"Continent":"K34","ID":46679,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46679","ServerKey":"pl181","X":410,"Y":304},{"Bonus":0,"Continent":"K34","ID":46680,"Name":"002","PlayerID":699883079,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46680","ServerKey":"pl181","X":469,"Y":367},{"Bonus":0,"Continent":"K36","ID":46681,"Name":"!36 76 Romanesti","PlayerID":698361257,"Points":8192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46681","ServerKey":"pl181","X":662,"Y":371},{"Bonus":0,"Continent":"K24","ID":46682,"Name":"#0276 Don Noobas","PlayerID":1238300,"Points":6138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46682","ServerKey":"pl181","X":466,"Y":295},{"Bonus":0,"Continent":"K63","ID":46683,"Name":"Taran","PlayerID":6180190,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46683","ServerKey":"pl181","X":327,"Y":624},{"Bonus":0,"Continent":"K42","ID":46684,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46684","ServerKey":"pl181","X":298,"Y":423},{"Bonus":0,"Continent":"K36","ID":46686,"Name":"XDX","PlayerID":699098531,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46686","ServerKey":"pl181","X":609,"Y":315},{"Bonus":0,"Continent":"K66","ID":46687,"Name":"Wioska Zorro 020","PlayerID":849080702,"Points":8379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46687","ServerKey":"pl181","X":676,"Y":612},{"Bonus":0,"Continent":"K52","ID":46688,"Name":"016","PlayerID":9280477,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46688","ServerKey":"pl181","X":293,"Y":555},{"Bonus":0,"Continent":"K53","ID":46689,"Name":"Elo elo 11","PlayerID":699016994,"Points":5819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46689","ServerKey":"pl181","X":305,"Y":579},{"Bonus":0,"Continent":"K64","ID":46690,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46690","ServerKey":"pl181","X":420,"Y":697},{"Bonus":0,"Continent":"K36","ID":46691,"Name":"wioska","PlayerID":9291984,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46691","ServerKey":"pl181","X":637,"Y":334},{"Bonus":0,"Continent":"K33","ID":46692,"Name":"001","PlayerID":849101205,"Points":8346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46692","ServerKey":"pl181","X":349,"Y":347},{"Bonus":0,"Continent":"K65","ID":46693,"Name":"###104###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46693","ServerKey":"pl181","X":591,"Y":696},{"Bonus":0,"Continent":"K66","ID":46694,"Name":"031 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46694","ServerKey":"pl181","X":602,"Y":686},{"Bonus":0,"Continent":"K36","ID":46695,"Name":"022","PlayerID":9148043,"Points":5491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46695","ServerKey":"pl181","X":651,"Y":346},{"Bonus":0,"Continent":"K74","ID":46696,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":5373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46696","ServerKey":"pl181","X":495,"Y":709},{"Bonus":0,"Continent":"K74","ID":46697,"Name":"024Flanki","PlayerID":698620694,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46697","ServerKey":"pl181","X":467,"Y":707},{"Bonus":0,"Continent":"K63","ID":46698,"Name":"776","PlayerID":698908184,"Points":8975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46698","ServerKey":"pl181","X":345,"Y":641},{"Bonus":0,"Continent":"K33","ID":46699,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46699","ServerKey":"pl181","X":395,"Y":318},{"Bonus":0,"Continent":"K33","ID":46700,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46700","ServerKey":"pl181","X":377,"Y":326},{"Bonus":0,"Continent":"K63","ID":46701,"Name":"148","PlayerID":849099876,"Points":7791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46701","ServerKey":"pl181","X":399,"Y":685},{"Bonus":0,"Continent":"K46","ID":46702,"Name":"Taran","PlayerID":699524362,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46702","ServerKey":"pl181","X":686,"Y":405},{"Bonus":0,"Continent":"K47","ID":46703,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":5943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46703","ServerKey":"pl181","X":712,"Y":492},{"Bonus":0,"Continent":"K47","ID":46704,"Name":"C.034","PlayerID":9188016,"Points":4949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46704","ServerKey":"pl181","X":714,"Y":474},{"Bonus":0,"Continent":"K75","ID":46705,"Name":"068 invidia","PlayerID":849093426,"Points":5509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46705","ServerKey":"pl181","X":545,"Y":704},{"Bonus":0,"Continent":"K65","ID":46706,"Name":"Wioska 001","PlayerID":6870350,"Points":6688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46706","ServerKey":"pl181","X":563,"Y":698},{"Bonus":0,"Continent":"K63","ID":46707,"Name":"Taran","PlayerID":6180190,"Points":8411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46707","ServerKey":"pl181","X":324,"Y":619},{"Bonus":0,"Continent":"K63","ID":46708,"Name":"068.","PlayerID":6180190,"Points":5077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46708","ServerKey":"pl181","X":312,"Y":600},{"Bonus":0,"Continent":"K56","ID":46709,"Name":"EE 010","PlayerID":849100149,"Points":5970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46709","ServerKey":"pl181","X":698,"Y":572},{"Bonus":0,"Continent":"K74","ID":46710,"Name":"043|| Indus","PlayerID":849035525,"Points":9113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46710","ServerKey":"pl181","X":461,"Y":711},{"Bonus":0,"Continent":"K66","ID":46711,"Name":"028.","PlayerID":699695167,"Points":4048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46711","ServerKey":"pl181","X":626,"Y":671},{"Bonus":0,"Continent":"K46","ID":46712,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":8732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46712","ServerKey":"pl181","X":697,"Y":417},{"Bonus":0,"Continent":"K46","ID":46713,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":8216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46713","ServerKey":"pl181","X":694,"Y":405},{"Bonus":0,"Continent":"K66","ID":46714,"Name":"029.","PlayerID":699695167,"Points":4047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46714","ServerKey":"pl181","X":624,"Y":675},{"Bonus":0,"Continent":"K52","ID":46715,"Name":"New WorldA","PlayerID":849084005,"Points":9205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46715","ServerKey":"pl181","X":290,"Y":546},{"Bonus":0,"Continent":"K52","ID":46716,"Name":"[0228]","PlayerID":8630972,"Points":7529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46716","ServerKey":"pl181","X":284,"Y":505},{"Bonus":0,"Continent":"K64","ID":46717,"Name":"New World","PlayerID":698152377,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46717","ServerKey":"pl181","X":423,"Y":699},{"Bonus":0,"Continent":"K75","ID":46718,"Name":"Wioska barbarzyƄska 2x2","PlayerID":849055425,"Points":5968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46718","ServerKey":"pl181","X":571,"Y":701},{"Bonus":0,"Continent":"K47","ID":46719,"Name":"Harmonia","PlayerID":699785935,"Points":8010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46719","ServerKey":"pl181","X":703,"Y":436},{"Bonus":0,"Continent":"K24","ID":46720,"Name":"[0142]","PlayerID":8630972,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46720","ServerKey":"pl181","X":449,"Y":295},{"Bonus":0,"Continent":"K25","ID":46721,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46721","ServerKey":"pl181","X":505,"Y":289},{"Bonus":0,"Continent":"K46","ID":46722,"Name":"Osada 3","PlayerID":699126484,"Points":9546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46722","ServerKey":"pl181","X":699,"Y":420},{"Bonus":0,"Continent":"K35","ID":46723,"Name":"XDX","PlayerID":699098531,"Points":6617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46723","ServerKey":"pl181","X":595,"Y":310},{"Bonus":0,"Continent":"K65","ID":46724,"Name":"Seredzice","PlayerID":698723158,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46724","ServerKey":"pl181","X":572,"Y":696},{"Bonus":0,"Continent":"K34","ID":46725,"Name":"ElMajkelos VI","PlayerID":849085160,"Points":10545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46725","ServerKey":"pl181","X":413,"Y":308},{"Bonus":0,"Continent":"K66","ID":46726,"Name":"030.","PlayerID":699695167,"Points":3432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46726","ServerKey":"pl181","X":625,"Y":671},{"Bonus":0,"Continent":"K63","ID":46727,"Name":"Taran","PlayerID":6180190,"Points":5701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46727","ServerKey":"pl181","X":313,"Y":603},{"Bonus":0,"Continent":"K33","ID":46728,"Name":"0073","PlayerID":848913037,"Points":4965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46728","ServerKey":"pl181","X":367,"Y":337},{"Bonus":0,"Continent":"K35","ID":46729,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46729","ServerKey":"pl181","X":583,"Y":309},{"Bonus":0,"Continent":"K57","ID":46730,"Name":"043. Istor-o-Nal","PlayerID":1601917,"Points":8713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46730","ServerKey":"pl181","X":704,"Y":548},{"Bonus":0,"Continent":"K34","ID":46732,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46732","ServerKey":"pl181","X":412,"Y":311},{"Bonus":0,"Continent":"K66","ID":46733,"Name":"Wiadro12","PlayerID":8677963,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46733","ServerKey":"pl181","X":674,"Y":624},{"Bonus":0,"Continent":"K24","ID":46734,"Name":"048","PlayerID":849010255,"Points":6186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46734","ServerKey":"pl181","X":473,"Y":289},{"Bonus":0,"Continent":"K63","ID":46735,"Name":"Familia Kuzyni","PlayerID":7349282,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46735","ServerKey":"pl181","X":375,"Y":666},{"Bonus":0,"Continent":"K36","ID":46736,"Name":"039","PlayerID":849091105,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46736","ServerKey":"pl181","X":683,"Y":395},{"Bonus":0,"Continent":"K25","ID":46738,"Name":"--010--","PlayerID":542253,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46738","ServerKey":"pl181","X":572,"Y":299},{"Bonus":0,"Continent":"K24","ID":46739,"Name":"????","PlayerID":698489071,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46739","ServerKey":"pl181","X":477,"Y":292},{"Bonus":0,"Continent":"K43","ID":46740,"Name":"ZZ07","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46740","ServerKey":"pl181","X":310,"Y":405},{"Bonus":0,"Continent":"K24","ID":46741,"Name":"Mniejsze zƂo 0087","PlayerID":699794765,"Points":6928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46741","ServerKey":"pl181","X":470,"Y":295},{"Bonus":0,"Continent":"K25","ID":46742,"Name":"D001","PlayerID":699299123,"Points":7336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46742","ServerKey":"pl181","X":562,"Y":293},{"Bonus":0,"Continent":"K66","ID":46743,"Name":"Bessa 005","PlayerID":848987051,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46743","ServerKey":"pl181","X":640,"Y":659},{"Bonus":0,"Continent":"K52","ID":46744,"Name":"C0228","PlayerID":8841266,"Points":7805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46744","ServerKey":"pl181","X":293,"Y":544},{"Bonus":0,"Continent":"K25","ID":46746,"Name":"003","PlayerID":699818726,"Points":8587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46746","ServerKey":"pl181","X":527,"Y":289},{"Bonus":0,"Continent":"K75","ID":46748,"Name":"DALEKO","PlayerID":699827112,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46748","ServerKey":"pl181","X":532,"Y":704},{"Bonus":4,"Continent":"K56","ID":46749,"Name":"TWIERDZA .:006:.","PlayerID":7154207,"Points":10405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46749","ServerKey":"pl181","X":697,"Y":574},{"Bonus":0,"Continent":"K33","ID":46750,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46750","ServerKey":"pl181","X":342,"Y":365},{"Bonus":0,"Continent":"K42","ID":46751,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46751","ServerKey":"pl181","X":297,"Y":457},{"Bonus":0,"Continent":"K33","ID":46752,"Name":"003","PlayerID":699660539,"Points":9494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46752","ServerKey":"pl181","X":387,"Y":318},{"Bonus":0,"Continent":"K66","ID":46753,"Name":"Wiadro10","PlayerID":8677963,"Points":6993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46753","ServerKey":"pl181","X":674,"Y":625},{"Bonus":0,"Continent":"K24","ID":46754,"Name":"[0157]","PlayerID":8630972,"Points":8841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46754","ServerKey":"pl181","X":446,"Y":297},{"Bonus":0,"Continent":"K47","ID":46755,"Name":"A#040","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46755","ServerKey":"pl181","X":712,"Y":470},{"Bonus":0,"Continent":"K33","ID":46756,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46756","ServerKey":"pl181","X":344,"Y":361},{"Bonus":0,"Continent":"K43","ID":46757,"Name":"ZA27","PlayerID":356642,"Points":9651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46757","ServerKey":"pl181","X":310,"Y":416},{"Bonus":0,"Continent":"K33","ID":46758,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46758","ServerKey":"pl181","X":369,"Y":331},{"Bonus":0,"Continent":"K63","ID":46759,"Name":"Taran","PlayerID":6180190,"Points":8715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46759","ServerKey":"pl181","X":314,"Y":605},{"Bonus":0,"Continent":"K24","ID":46760,"Name":"Singularity","PlayerID":849099965,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46760","ServerKey":"pl181","X":468,"Y":294},{"Bonus":0,"Continent":"K74","ID":46761,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46761","ServerKey":"pl181","X":434,"Y":703},{"Bonus":0,"Continent":"K36","ID":46762,"Name":"!36 66 Partesti de Jos","PlayerID":698361257,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46762","ServerKey":"pl181","X":660,"Y":367},{"Bonus":0,"Continent":"K75","ID":46763,"Name":"DALEKO","PlayerID":699827112,"Points":7801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46763","ServerKey":"pl181","X":530,"Y":704},{"Bonus":0,"Continent":"K74","ID":46764,"Name":"Kurnik","PlayerID":699603116,"Points":8060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46764","ServerKey":"pl181","X":469,"Y":712},{"Bonus":0,"Continent":"K74","ID":46765,"Name":"0.17a","PlayerID":699827112,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46765","ServerKey":"pl181","X":456,"Y":709},{"Bonus":0,"Continent":"K75","ID":46766,"Name":"070 invidia","PlayerID":849093426,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46766","ServerKey":"pl181","X":541,"Y":711},{"Bonus":0,"Continent":"K65","ID":46767,"Name":"###105###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46767","ServerKey":"pl181","X":582,"Y":691},{"Bonus":0,"Continent":"K34","ID":46768,"Name":"219","PlayerID":698365960,"Points":11507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46768","ServerKey":"pl181","X":418,"Y":309},{"Bonus":0,"Continent":"K74","ID":46769,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46769","ServerKey":"pl181","X":436,"Y":706},{"Bonus":0,"Continent":"K34","ID":46770,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46770","ServerKey":"pl181","X":403,"Y":312},{"Bonus":0,"Continent":"K24","ID":46771,"Name":"Niezabyszewo","PlayerID":849101116,"Points":9768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46771","ServerKey":"pl181","X":465,"Y":283},{"Bonus":0,"Continent":"K47","ID":46772,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":7225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46772","ServerKey":"pl181","X":705,"Y":475},{"Bonus":0,"Continent":"K74","ID":46773,"Name":"Bagno 2","PlayerID":848883684,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46773","ServerKey":"pl181","X":484,"Y":714},{"Bonus":0,"Continent":"K34","ID":46774,"Name":"213","PlayerID":698365960,"Points":5761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46774","ServerKey":"pl181","X":427,"Y":303},{"Bonus":0,"Continent":"K66","ID":46775,"Name":"031.","PlayerID":699695167,"Points":3749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46775","ServerKey":"pl181","X":627,"Y":673},{"Bonus":0,"Continent":"K47","ID":46776,"Name":"29. PƂutniki","PlayerID":699804790,"Points":11417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46776","ServerKey":"pl181","X":711,"Y":485},{"Bonus":0,"Continent":"K65","ID":46777,"Name":"###106###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46777","ServerKey":"pl181","X":598,"Y":692},{"Bonus":0,"Continent":"K46","ID":46778,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46778","ServerKey":"pl181","X":696,"Y":435},{"Bonus":0,"Continent":"K43","ID":46779,"Name":"WiedĆșma - Z 013","PlayerID":9239515,"Points":386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46779","ServerKey":"pl181","X":310,"Y":420},{"Bonus":0,"Continent":"K75","ID":46780,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46780","ServerKey":"pl181","X":552,"Y":709},{"Bonus":0,"Continent":"K57","ID":46781,"Name":"015","PlayerID":699150527,"Points":6258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46781","ServerKey":"pl181","X":707,"Y":508},{"Bonus":0,"Continent":"K34","ID":46782,"Name":"140...centr","PlayerID":6920960,"Points":7754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46782","ServerKey":"pl181","X":449,"Y":347},{"Bonus":0,"Continent":"K57","ID":46783,"Name":"EE 009","PlayerID":849100149,"Points":6377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46783","ServerKey":"pl181","X":701,"Y":578},{"Bonus":0,"Continent":"K57","ID":46784,"Name":"078","PlayerID":7085502,"Points":7000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46784","ServerKey":"pl181","X":716,"Y":508},{"Bonus":0,"Continent":"K74","ID":46785,"Name":"New World","PlayerID":698152377,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46785","ServerKey":"pl181","X":433,"Y":703},{"Bonus":0,"Continent":"K46","ID":46786,"Name":"defik","PlayerID":849098769,"Points":2512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46786","ServerKey":"pl181","X":683,"Y":454},{"Bonus":0,"Continent":"K65","ID":46787,"Name":"06. JeĆŒyce","PlayerID":849092769,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46787","ServerKey":"pl181","X":510,"Y":665},{"Bonus":0,"Continent":"K34","ID":46788,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46788","ServerKey":"pl181","X":409,"Y":310},{"Bonus":0,"Continent":"K25","ID":46789,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":3573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46789","ServerKey":"pl181","X":535,"Y":296},{"Bonus":0,"Continent":"K47","ID":46790,"Name":"B007 Twierdza 3","PlayerID":113796,"Points":8018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46790","ServerKey":"pl181","X":711,"Y":463},{"Bonus":0,"Continent":"K63","ID":46791,"Name":"169","PlayerID":849099876,"Points":8906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46791","ServerKey":"pl181","X":379,"Y":674},{"Bonus":0,"Continent":"K66","ID":46792,"Name":"*001*","PlayerID":1205898,"Points":8954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46792","ServerKey":"pl181","X":680,"Y":618},{"Bonus":0,"Continent":"K35","ID":46793,"Name":"K35 - [016] Before Land","PlayerID":699088769,"Points":10126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46793","ServerKey":"pl181","X":587,"Y":305},{"Bonus":0,"Continent":"K24","ID":46794,"Name":"190...segador","PlayerID":6920960,"Points":10920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46794","ServerKey":"pl181","X":428,"Y":296},{"Bonus":0,"Continent":"K74","ID":46795,"Name":"023.","PlayerID":849034882,"Points":10076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46795","ServerKey":"pl181","X":469,"Y":713},{"Bonus":0,"Continent":"K36","ID":46796,"Name":"0074","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46796","ServerKey":"pl181","X":683,"Y":392},{"Bonus":0,"Continent":"K46","ID":46797,"Name":"W28","PlayerID":699524362,"Points":2714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46797","ServerKey":"pl181","X":694,"Y":416},{"Bonus":0,"Continent":"K47","ID":46798,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46798","ServerKey":"pl181","X":714,"Y":488},{"Bonus":0,"Continent":"K36","ID":46799,"Name":"009","PlayerID":699738350,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46799","ServerKey":"pl181","X":679,"Y":395},{"Bonus":0,"Continent":"K63","ID":46800,"Name":"Chocim","PlayerID":698167138,"Points":5522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46800","ServerKey":"pl181","X":311,"Y":603},{"Bonus":0,"Continent":"K35","ID":46801,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46801","ServerKey":"pl181","X":579,"Y":303},{"Bonus":0,"Continent":"K53","ID":46802,"Name":"Elo Elo 9","PlayerID":699016994,"Points":6466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46802","ServerKey":"pl181","X":306,"Y":576},{"Bonus":0,"Continent":"K33","ID":46804,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46804","ServerKey":"pl181","X":334,"Y":370},{"Bonus":0,"Continent":"K52","ID":46805,"Name":"New WorldA","PlayerID":849084005,"Points":5432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46805","ServerKey":"pl181","X":297,"Y":546},{"Bonus":0,"Continent":"K64","ID":46806,"Name":"050","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46806","ServerKey":"pl181","X":400,"Y":690},{"Bonus":0,"Continent":"K43","ID":46808,"Name":"Wioska04","PlayerID":8259895,"Points":5527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46808","ServerKey":"pl181","X":301,"Y":427},{"Bonus":0,"Continent":"K63","ID":46809,"Name":"157","PlayerID":849099876,"Points":8303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46809","ServerKey":"pl181","X":392,"Y":681},{"Bonus":0,"Continent":"K66","ID":46810,"Name":"Komandos","PlayerID":7976264,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46810","ServerKey":"pl181","X":643,"Y":661},{"Bonus":0,"Continent":"K65","ID":46811,"Name":"Adamo2","PlayerID":849096768,"Points":9690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46811","ServerKey":"pl181","X":582,"Y":697},{"Bonus":0,"Continent":"K52","ID":46812,"Name":"Wyspa 021","PlayerID":225023,"Points":3952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46812","ServerKey":"pl181","X":298,"Y":566},{"Bonus":0,"Continent":"K53","ID":46813,"Name":"Taran","PlayerID":6180190,"Points":7289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46813","ServerKey":"pl181","X":308,"Y":598},{"Bonus":0,"Continent":"K52","ID":46814,"Name":"Wioska barbarzyƄska","PlayerID":849101647,"Points":4127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46814","ServerKey":"pl181","X":285,"Y":511},{"Bonus":0,"Continent":"K42","ID":46815,"Name":"Avanti!","PlayerID":698625834,"Points":4225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46815","ServerKey":"pl181","X":291,"Y":488},{"Bonus":0,"Continent":"K63","ID":46816,"Name":"206","PlayerID":699269923,"Points":8418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46816","ServerKey":"pl181","X":366,"Y":660},{"Bonus":0,"Continent":"K63","ID":46817,"Name":"0133","PlayerID":7085510,"Points":7815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46817","ServerKey":"pl181","X":392,"Y":686},{"Bonus":0,"Continent":"K24","ID":46818,"Name":"[0146]","PlayerID":8630972,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46818","ServerKey":"pl181","X":441,"Y":295},{"Bonus":0,"Continent":"K63","ID":46820,"Name":"172","PlayerID":849099876,"Points":8172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46820","ServerKey":"pl181","X":382,"Y":680},{"Bonus":0,"Continent":"K66","ID":46821,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46821","ServerKey":"pl181","X":657,"Y":642},{"Bonus":0,"Continent":"K66","ID":46822,"Name":"komandos48","PlayerID":7976264,"Points":5381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46822","ServerKey":"pl181","X":642,"Y":663},{"Bonus":0,"Continent":"K57","ID":46823,"Name":"056","PlayerID":7085502,"Points":7972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46823","ServerKey":"pl181","X":709,"Y":515},{"Bonus":0,"Continent":"K36","ID":46824,"Name":"014. Wioska barbarzyƄska","PlayerID":2873154,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46824","ServerKey":"pl181","X":675,"Y":373},{"Bonus":0,"Continent":"K75","ID":46826,"Name":"Wioska barbarzyƄska","PlayerID":849055425,"Points":8993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46826","ServerKey":"pl181","X":568,"Y":702},{"Bonus":0,"Continent":"K43","ID":46827,"Name":"006b","PlayerID":8259895,"Points":5579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46827","ServerKey":"pl181","X":307,"Y":420},{"Bonus":0,"Continent":"K57","ID":46828,"Name":"A#045","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46828","ServerKey":"pl181","X":706,"Y":522},{"Bonus":0,"Continent":"K53","ID":46829,"Name":"Początek","PlayerID":7842579,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46829","ServerKey":"pl181","X":308,"Y":580},{"Bonus":0,"Continent":"K43","ID":46830,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46830","ServerKey":"pl181","X":301,"Y":418},{"Bonus":0,"Continent":"K74","ID":46831,"Name":"Kurnik","PlayerID":699603116,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46831","ServerKey":"pl181","X":466,"Y":713},{"Bonus":0,"Continent":"K42","ID":46832,"Name":"**Dzikos**","PlayerID":8366045,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46832","ServerKey":"pl181","X":296,"Y":430},{"Bonus":0,"Continent":"K57","ID":46833,"Name":"Wioska","PlayerID":699034094,"Points":3644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46833","ServerKey":"pl181","X":711,"Y":530},{"Bonus":0,"Continent":"K43","ID":46834,"Name":"006a","PlayerID":8259895,"Points":4970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46834","ServerKey":"pl181","X":309,"Y":421},{"Bonus":0,"Continent":"K57","ID":46835,"Name":"Wioska barbarzyƄska","PlayerID":2135129,"Points":2474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46835","ServerKey":"pl181","X":705,"Y":529},{"Bonus":0,"Continent":"K53","ID":46836,"Name":"Kolonia 01","PlayerID":6180190,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46836","ServerKey":"pl181","X":305,"Y":591},{"Bonus":0,"Continent":"K33","ID":46837,"Name":"Szlachcic","PlayerID":698388578,"Points":6265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46837","ServerKey":"pl181","X":364,"Y":337},{"Bonus":0,"Continent":"K66","ID":46838,"Name":"010","PlayerID":2323859,"Points":7102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46838","ServerKey":"pl181","X":661,"Y":642},{"Bonus":0,"Continent":"K34","ID":46840,"Name":"044.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46840","ServerKey":"pl181","X":434,"Y":301},{"Bonus":0,"Continent":"K65","ID":46841,"Name":"###046###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46841","ServerKey":"pl181","X":594,"Y":692},{"Bonus":0,"Continent":"K52","ID":46842,"Name":"013","PlayerID":9280477,"Points":8047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46842","ServerKey":"pl181","X":295,"Y":554},{"Bonus":0,"Continent":"K63","ID":46843,"Name":"Taran","PlayerID":6180190,"Points":8411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46843","ServerKey":"pl181","X":321,"Y":619},{"Bonus":0,"Continent":"K42","ID":46844,"Name":"Wioska barbarzyƄska","PlayerID":698879638,"Points":2440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46844","ServerKey":"pl181","X":282,"Y":481},{"Bonus":0,"Continent":"K63","ID":46845,"Name":"O083","PlayerID":272173,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46845","ServerKey":"pl181","X":329,"Y":630},{"Bonus":0,"Continent":"K66","ID":46846,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46846","ServerKey":"pl181","X":658,"Y":647},{"Bonus":0,"Continent":"K74","ID":46847,"Name":"042.","PlayerID":849034882,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46847","ServerKey":"pl181","X":450,"Y":709},{"Bonus":0,"Continent":"K42","ID":46848,"Name":"Avanti!","PlayerID":698625834,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46848","ServerKey":"pl181","X":285,"Y":477},{"Bonus":0,"Continent":"K57","ID":46850,"Name":"02. Ostia","PlayerID":848946700,"Points":10215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46850","ServerKey":"pl181","X":712,"Y":537},{"Bonus":0,"Continent":"K57","ID":46851,"Name":"Z.05","PlayerID":699737356,"Points":5098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46851","ServerKey":"pl181","X":700,"Y":578},{"Bonus":0,"Continent":"K63","ID":46852,"Name":"D016","PlayerID":272173,"Points":6173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46852","ServerKey":"pl181","X":354,"Y":650},{"Bonus":0,"Continent":"K24","ID":46853,"Name":"Wioska 111","PlayerID":763529,"Points":3778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46853","ServerKey":"pl181","X":496,"Y":288},{"Bonus":1,"Continent":"K57","ID":46854,"Name":"B07","PlayerID":848995478,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46854","ServerKey":"pl181","X":704,"Y":551},{"Bonus":0,"Continent":"K65","ID":46856,"Name":"###047###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46856","ServerKey":"pl181","X":590,"Y":690},{"Bonus":0,"Continent":"K25","ID":46857,"Name":"D003","PlayerID":699299123,"Points":5870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46857","ServerKey":"pl181","X":560,"Y":293},{"Bonus":0,"Continent":"K42","ID":46858,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46858","ServerKey":"pl181","X":296,"Y":444},{"Bonus":0,"Continent":"K52","ID":46859,"Name":"[D]_[005] Dejv.oldplyr","PlayerID":699380607,"Points":5527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46859","ServerKey":"pl181","X":285,"Y":507},{"Bonus":0,"Continent":"K25","ID":46860,"Name":"Tak ZO","PlayerID":699208929,"Points":12021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46860","ServerKey":"pl181","X":526,"Y":295},{"Bonus":0,"Continent":"K34","ID":46861,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46861","ServerKey":"pl181","X":413,"Y":311},{"Bonus":0,"Continent":"K75","ID":46862,"Name":"077 invidia","PlayerID":849093426,"Points":5269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46862","ServerKey":"pl181","X":533,"Y":713},{"Bonus":0,"Continent":"K33","ID":46863,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":6349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46863","ServerKey":"pl181","X":356,"Y":345},{"Bonus":0,"Continent":"K46","ID":46864,"Name":"Po jednej tabletce","PlayerID":699785935,"Points":6814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46864","ServerKey":"pl181","X":688,"Y":400},{"Bonus":0,"Continent":"K66","ID":46865,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46865","ServerKey":"pl181","X":660,"Y":630},{"Bonus":0,"Continent":"K57","ID":46866,"Name":"A#043","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46866","ServerKey":"pl181","X":706,"Y":521},{"Bonus":0,"Continent":"K34","ID":46867,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46867","ServerKey":"pl181","X":408,"Y":307},{"Bonus":8,"Continent":"K56","ID":46868,"Name":"O69 Texcoco","PlayerID":699272880,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46868","ServerKey":"pl181","X":696,"Y":571},{"Bonus":0,"Continent":"K33","ID":46869,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46869","ServerKey":"pl181","X":313,"Y":396},{"Bonus":4,"Continent":"K36","ID":46870,"Name":"B029","PlayerID":8740199,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46870","ServerKey":"pl181","X":626,"Y":325},{"Bonus":0,"Continent":"K56","ID":46871,"Name":"TWIERDZA .:051:.","PlayerID":7154207,"Points":7587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46871","ServerKey":"pl181","X":694,"Y":575},{"Bonus":0,"Continent":"K64","ID":46872,"Name":"147","PlayerID":849099876,"Points":7418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46872","ServerKey":"pl181","X":401,"Y":684},{"Bonus":0,"Continent":"K24","ID":46873,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46873","ServerKey":"pl181","X":498,"Y":293},{"Bonus":0,"Continent":"K55","ID":46874,"Name":"Village","PlayerID":849094067,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46874","ServerKey":"pl181","X":501,"Y":594},{"Bonus":0,"Continent":"K74","ID":46875,"Name":"New World","PlayerID":698152377,"Points":10230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46875","ServerKey":"pl181","X":430,"Y":703},{"Bonus":0,"Continent":"K64","ID":46877,"Name":"Ave Why!","PlayerID":8729672,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46877","ServerKey":"pl181","X":449,"Y":619},{"Bonus":0,"Continent":"K57","ID":46878,"Name":"EE 002","PlayerID":849100149,"Points":9290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46878","ServerKey":"pl181","X":701,"Y":573},{"Bonus":0,"Continent":"K42","ID":46879,"Name":"[0184]","PlayerID":8630972,"Points":8627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46879","ServerKey":"pl181","X":288,"Y":499},{"Bonus":0,"Continent":"K35","ID":46880,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46880","ServerKey":"pl181","X":590,"Y":303},{"Bonus":1,"Continent":"K57","ID":46881,"Name":"A#002","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46881","ServerKey":"pl181","X":714,"Y":519},{"Bonus":0,"Continent":"K63","ID":46883,"Name":"D011","PlayerID":272173,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46883","ServerKey":"pl181","X":352,"Y":648},{"Bonus":0,"Continent":"K33","ID":46884,"Name":"Zaplecze Barba 014","PlayerID":699796330,"Points":8610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46884","ServerKey":"pl181","X":370,"Y":336},{"Bonus":0,"Continent":"K65","ID":46885,"Name":"Wioska Adamol","PlayerID":849096768,"Points":10795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46885","ServerKey":"pl181","X":583,"Y":698},{"Bonus":0,"Continent":"K36","ID":46886,"Name":"Wioska barbarzyƄska","PlayerID":849100782,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46886","ServerKey":"pl181","X":635,"Y":339},{"Bonus":2,"Continent":"K36","ID":46887,"Name":"043","PlayerID":9148043,"Points":6315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46887","ServerKey":"pl181","X":657,"Y":352},{"Bonus":0,"Continent":"K66","ID":46888,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46888","ServerKey":"pl181","X":639,"Y":652},{"Bonus":0,"Continent":"K43","ID":46889,"Name":"007c","PlayerID":8259895,"Points":4645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46889","ServerKey":"pl181","X":305,"Y":421},{"Bonus":0,"Continent":"K57","ID":46890,"Name":"028","PlayerID":699150527,"Points":4753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46890","ServerKey":"pl181","X":706,"Y":525},{"Bonus":0,"Continent":"K74","ID":46892,"Name":"FP015","PlayerID":699605333,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46892","ServerKey":"pl181","X":479,"Y":705},{"Bonus":0,"Continent":"K63","ID":46893,"Name":"O146","PlayerID":272173,"Points":4961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46893","ServerKey":"pl181","X":351,"Y":646},{"Bonus":0,"Continent":"K63","ID":46895,"Name":"Familia Kuzyni","PlayerID":7349282,"Points":2759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46895","ServerKey":"pl181","X":377,"Y":669},{"Bonus":0,"Continent":"K75","ID":46896,"Name":"Henia","PlayerID":699733501,"Points":9084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46896","ServerKey":"pl181","X":526,"Y":707},{"Bonus":0,"Continent":"K43","ID":46897,"Name":"008","PlayerID":8259895,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46897","ServerKey":"pl181","X":306,"Y":425},{"Bonus":0,"Continent":"K75","ID":46898,"Name":"Wioska barbarzyƄska 001","PlayerID":6870350,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46898","ServerKey":"pl181","X":563,"Y":704},{"Bonus":0,"Continent":"K47","ID":46899,"Name":"123","PlayerID":849088515,"Points":4498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46899","ServerKey":"pl181","X":704,"Y":447},{"Bonus":0,"Continent":"K66","ID":46900,"Name":"Bessa 006","PlayerID":848987051,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46900","ServerKey":"pl181","X":639,"Y":660},{"Bonus":0,"Continent":"K36","ID":46901,"Name":"5..","PlayerID":849056744,"Points":1042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46901","ServerKey":"pl181","X":646,"Y":353},{"Bonus":0,"Continent":"K65","ID":46902,"Name":"NBT C","PlayerID":849047044,"Points":9232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46902","ServerKey":"pl181","X":595,"Y":689},{"Bonus":0,"Continent":"K43","ID":46903,"Name":"*04 GAWRA*","PlayerID":2415972,"Points":9121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46903","ServerKey":"pl181","X":302,"Y":427},{"Bonus":0,"Continent":"K75","ID":46904,"Name":"#K75 0008","PlayerID":699728159,"Points":5195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46904","ServerKey":"pl181","X":519,"Y":713},{"Bonus":0,"Continent":"K64","ID":46905,"Name":"110","PlayerID":849099876,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46905","ServerKey":"pl181","X":410,"Y":696},{"Bonus":0,"Continent":"K24","ID":46906,"Name":"SKORPION:)","PlayerID":7518529,"Points":3407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46906","ServerKey":"pl181","X":455,"Y":297},{"Bonus":0,"Continent":"K36","ID":46907,"Name":"!36 65 Mihoveni","PlayerID":698361257,"Points":7624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46907","ServerKey":"pl181","X":659,"Y":364},{"Bonus":0,"Continent":"K63","ID":46908,"Name":"O130","PlayerID":272173,"Points":6680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46908","ServerKey":"pl181","X":331,"Y":622},{"Bonus":0,"Continent":"K35","ID":46909,"Name":"--003--","PlayerID":542253,"Points":8310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46909","ServerKey":"pl181","X":571,"Y":301},{"Bonus":0,"Continent":"K66","ID":46910,"Name":"Wiadro14","PlayerID":8677963,"Points":5340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46910","ServerKey":"pl181","X":673,"Y":625},{"Bonus":8,"Continent":"K43","ID":46911,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46911","ServerKey":"pl181","X":302,"Y":416},{"Bonus":0,"Continent":"K43","ID":46913,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46913","ServerKey":"pl181","X":318,"Y":400},{"Bonus":0,"Continent":"K57","ID":46914,"Name":"WIOSKA AZGARD","PlayerID":848946700,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46914","ServerKey":"pl181","X":706,"Y":532},{"Bonus":0,"Continent":"K33","ID":46915,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46915","ServerKey":"pl181","X":357,"Y":350},{"Bonus":1,"Continent":"K57","ID":46916,"Name":"008. Amnesia","PlayerID":254937,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46916","ServerKey":"pl181","X":707,"Y":514},{"Bonus":0,"Continent":"K47","ID":46918,"Name":"Bastion StraĆŒnikĂłw","PlayerID":849101378,"Points":8318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46918","ServerKey":"pl181","X":705,"Y":435},{"Bonus":0,"Continent":"K24","ID":46919,"Name":"249...Kaban1998","PlayerID":6920960,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46919","ServerKey":"pl181","X":460,"Y":294},{"Bonus":0,"Continent":"K63","ID":46920,"Name":"AAA","PlayerID":6180190,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46920","ServerKey":"pl181","X":320,"Y":606},{"Bonus":0,"Continent":"K52","ID":46922,"Name":"U.007","PlayerID":849088243,"Points":5638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46922","ServerKey":"pl181","X":293,"Y":557},{"Bonus":0,"Continent":"K36","ID":46923,"Name":"041","PlayerID":698635863,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46923","ServerKey":"pl181","X":675,"Y":381},{"Bonus":0,"Continent":"K36","ID":46924,"Name":"Flap","PlayerID":699098531,"Points":9019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46924","ServerKey":"pl181","X":607,"Y":313},{"Bonus":0,"Continent":"K24","ID":46925,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46925","ServerKey":"pl181","X":498,"Y":285},{"Bonus":0,"Continent":"K43","ID":46926,"Name":"008c","PlayerID":8259895,"Points":4950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46926","ServerKey":"pl181","X":307,"Y":424},{"Bonus":0,"Continent":"K63","ID":46927,"Name":"203","PlayerID":699269923,"Points":7687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46927","ServerKey":"pl181","X":367,"Y":664},{"Bonus":0,"Continent":"K46","ID":46928,"Name":"bastion","PlayerID":699598425,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46928","ServerKey":"pl181","X":690,"Y":408},{"Bonus":0,"Continent":"K75","ID":46929,"Name":"-06-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46929","ServerKey":"pl181","X":576,"Y":700},{"Bonus":0,"Continent":"K57","ID":46930,"Name":"035. Hradczany","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46930","ServerKey":"pl181","X":708,"Y":559},{"Bonus":0,"Continent":"K66","ID":46931,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":9530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46931","ServerKey":"pl181","X":650,"Y":644},{"Bonus":0,"Continent":"K47","ID":46932,"Name":"C.040","PlayerID":9188016,"Points":4337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46932","ServerKey":"pl181","X":715,"Y":478},{"Bonus":0,"Continent":"K66","ID":46933,"Name":"Wiadro03","PlayerID":8677963,"Points":9067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46933","ServerKey":"pl181","X":671,"Y":632},{"Bonus":0,"Continent":"K42","ID":46934,"Name":"57 ggggg","PlayerID":849018442,"Points":9036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46934","ServerKey":"pl181","X":294,"Y":475},{"Bonus":0,"Continent":"K24","ID":46935,"Name":".achim.","PlayerID":6936607,"Points":3599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46935","ServerKey":"pl181","X":481,"Y":293},{"Bonus":1,"Continent":"K66","ID":46936,"Name":"a-2","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46936","ServerKey":"pl181","X":674,"Y":619},{"Bonus":0,"Continent":"K46","ID":46937,"Name":"T-Killa","PlayerID":699785935,"Points":8138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46937","ServerKey":"pl181","X":694,"Y":427},{"Bonus":0,"Continent":"K63","ID":46938,"Name":"Taran","PlayerID":6180190,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46938","ServerKey":"pl181","X":328,"Y":615},{"Bonus":0,"Continent":"K24","ID":46939,"Name":"[0133]","PlayerID":8630972,"Points":9590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46939","ServerKey":"pl181","X":442,"Y":299},{"Bonus":0,"Continent":"K63","ID":46940,"Name":"008","PlayerID":6948793,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46940","ServerKey":"pl181","X":392,"Y":676},{"Bonus":0,"Continent":"K34","ID":46941,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46941","ServerKey":"pl181","X":400,"Y":310},{"Bonus":0,"Continent":"K66","ID":46942,"Name":"005 WUEM ENCEHA","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46942","ServerKey":"pl181","X":612,"Y":673},{"Bonus":0,"Continent":"K33","ID":46943,"Name":"0068","PlayerID":848913037,"Points":6156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46943","ServerKey":"pl181","X":368,"Y":338},{"Bonus":0,"Continent":"K66","ID":46944,"Name":"006. GĂłrki GĂłrzyste","PlayerID":849100994,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46944","ServerKey":"pl181","X":652,"Y":646},{"Bonus":0,"Continent":"K36","ID":46945,"Name":"042","PlayerID":698635863,"Points":7431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46945","ServerKey":"pl181","X":675,"Y":375},{"Bonus":0,"Continent":"K42","ID":46946,"Name":"Kagusiowo 1","PlayerID":849101268,"Points":10684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46946","ServerKey":"pl181","X":299,"Y":441},{"Bonus":0,"Continent":"K66","ID":46947,"Name":"Wioska Zorro 003","PlayerID":849080702,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46947","ServerKey":"pl181","X":681,"Y":604},{"Bonus":0,"Continent":"K42","ID":46948,"Name":"Dream on","PlayerID":698962117,"Points":4739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46948","ServerKey":"pl181","X":294,"Y":478},{"Bonus":0,"Continent":"K74","ID":46949,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46949","ServerKey":"pl181","X":497,"Y":707},{"Bonus":0,"Continent":"K33","ID":46950,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46950","ServerKey":"pl181","X":342,"Y":363},{"Bonus":0,"Continent":"K66","ID":46951,"Name":"02-oss","PlayerID":848921861,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46951","ServerKey":"pl181","X":671,"Y":620},{"Bonus":0,"Continent":"K75","ID":46952,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":6996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46952","ServerKey":"pl181","X":508,"Y":708},{"Bonus":0,"Continent":"K24","ID":46953,"Name":"Winterfell.013","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46953","ServerKey":"pl181","X":451,"Y":299},{"Bonus":0,"Continent":"K63","ID":46954,"Name":"Gross Stein","PlayerID":849092685,"Points":2907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46954","ServerKey":"pl181","X":345,"Y":650},{"Bonus":5,"Continent":"K25","ID":46955,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46955","ServerKey":"pl181","X":578,"Y":298},{"Bonus":0,"Continent":"K36","ID":46956,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":4079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46956","ServerKey":"pl181","X":666,"Y":376},{"Bonus":0,"Continent":"K47","ID":46957,"Name":"Icemark","PlayerID":849101378,"Points":8156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46957","ServerKey":"pl181","X":706,"Y":436},{"Bonus":0,"Continent":"K43","ID":46958,"Name":"Kagusiowo 9","PlayerID":849101268,"Points":3862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46958","ServerKey":"pl181","X":301,"Y":440},{"Bonus":0,"Continent":"K36","ID":46959,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46959","ServerKey":"pl181","X":615,"Y":322},{"Bonus":0,"Continent":"K34","ID":46960,"Name":"[B]_[034] Dejv.oldplyr","PlayerID":699380607,"Points":9123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46960","ServerKey":"pl181","X":428,"Y":351},{"Bonus":0,"Continent":"K42","ID":46961,"Name":"Dzik 13","PlayerID":8366045,"Points":4820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46961","ServerKey":"pl181","X":297,"Y":431},{"Bonus":0,"Continent":"K63","ID":46962,"Name":"O024","PlayerID":272173,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46962","ServerKey":"pl181","X":337,"Y":636},{"Bonus":0,"Continent":"K36","ID":46963,"Name":"023","PlayerID":9148043,"Points":3141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46963","ServerKey":"pl181","X":651,"Y":348},{"Bonus":0,"Continent":"K63","ID":46964,"Name":"D014","PlayerID":272173,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46964","ServerKey":"pl181","X":349,"Y":655},{"Bonus":0,"Continent":"K33","ID":46965,"Name":"Zaplecze Barba 013","PlayerID":699796330,"Points":8899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46965","ServerKey":"pl181","X":369,"Y":328},{"Bonus":0,"Continent":"K65","ID":46966,"Name":"C010","PlayerID":9023703,"Points":8827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46966","ServerKey":"pl181","X":597,"Y":668},{"Bonus":0,"Continent":"K25","ID":46967,"Name":"G002 zzz","PlayerID":699208929,"Points":10066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46967","ServerKey":"pl181","X":514,"Y":293},{"Bonus":0,"Continent":"K52","ID":46969,"Name":"[0246]","PlayerID":8630972,"Points":5833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46969","ServerKey":"pl181","X":285,"Y":512},{"Bonus":0,"Continent":"K63","ID":46971,"Name":"O082","PlayerID":272173,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46971","ServerKey":"pl181","X":335,"Y":635},{"Bonus":0,"Continent":"K65","ID":46972,"Name":"###107###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46972","ServerKey":"pl181","X":588,"Y":691},{"Bonus":0,"Continent":"K65","ID":46973,"Name":"0583","PlayerID":698659980,"Points":8165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46973","ServerKey":"pl181","X":577,"Y":693},{"Bonus":0,"Continent":"K34","ID":46974,"Name":"Shire","PlayerID":698231772,"Points":11898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46974","ServerKey":"pl181","X":413,"Y":312},{"Bonus":0,"Continent":"K63","ID":46975,"Name":"Taran","PlayerID":6180190,"Points":9888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46975","ServerKey":"pl181","X":320,"Y":602},{"Bonus":0,"Continent":"K42","ID":46976,"Name":"19 Adamuswielki2..","PlayerID":849018442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46976","ServerKey":"pl181","X":294,"Y":448},{"Bonus":0,"Continent":"K36","ID":46977,"Name":"018","PlayerID":9148043,"Points":4217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46977","ServerKey":"pl181","X":648,"Y":350},{"Bonus":0,"Continent":"K63","ID":46978,"Name":"D005","PlayerID":272173,"Points":7782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46978","ServerKey":"pl181","X":345,"Y":646},{"Bonus":0,"Continent":"K57","ID":46979,"Name":"=090= Wioska barbarzyƄska","PlayerID":3781794,"Points":9324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46979","ServerKey":"pl181","X":704,"Y":562},{"Bonus":0,"Continent":"K56","ID":46980,"Name":"Nowa 55","PlayerID":698702991,"Points":7528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46980","ServerKey":"pl181","X":695,"Y":585},{"Bonus":0,"Continent":"K66","ID":46981,"Name":"a001","PlayerID":3986807,"Points":1324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46981","ServerKey":"pl181","X":683,"Y":608},{"Bonus":0,"Continent":"K47","ID":46982,"Name":"kto ananasowy pod wodą ma dom","PlayerID":699628084,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46982","ServerKey":"pl181","X":710,"Y":452},{"Bonus":0,"Continent":"K75","ID":46983,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":7021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46983","ServerKey":"pl181","X":510,"Y":709},{"Bonus":0,"Continent":"K33","ID":46984,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":3772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46984","ServerKey":"pl181","X":381,"Y":323},{"Bonus":0,"Continent":"K47","ID":46985,"Name":"Kamienne Drzwi","PlayerID":849101378,"Points":8900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46985","ServerKey":"pl181","X":706,"Y":435},{"Bonus":0,"Continent":"K75","ID":46986,"Name":"036. Domek na wodzie","PlayerID":848928624,"Points":2611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46986","ServerKey":"pl181","X":500,"Y":716},{"Bonus":0,"Continent":"K63","ID":46987,"Name":"Taran","PlayerID":6180190,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46987","ServerKey":"pl181","X":323,"Y":616},{"Bonus":0,"Continent":"K36","ID":46989,"Name":"!--","PlayerID":698361257,"Points":4648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46989","ServerKey":"pl181","X":656,"Y":363},{"Bonus":0,"Continent":"K36","ID":46990,"Name":"!--","PlayerID":698361257,"Points":2215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46990","ServerKey":"pl181","X":657,"Y":357},{"Bonus":0,"Continent":"K33","ID":46991,"Name":"228...M","PlayerID":6920960,"Points":5072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46991","ServerKey":"pl181","X":398,"Y":314},{"Bonus":0,"Continent":"K25","ID":46992,"Name":"--011--","PlayerID":542253,"Points":7600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46992","ServerKey":"pl181","X":572,"Y":298},{"Bonus":0,"Continent":"K52","ID":46993,"Name":"Wioska dawszz4","PlayerID":849094688,"Points":3933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46993","ServerKey":"pl181","X":293,"Y":532},{"Bonus":0,"Continent":"K52","ID":46994,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46994","ServerKey":"pl181","X":286,"Y":524},{"Bonus":0,"Continent":"K53","ID":46995,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":4250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46995","ServerKey":"pl181","X":305,"Y":594},{"Bonus":0,"Continent":"K66","ID":46996,"Name":"004 Twierdza","PlayerID":849104328,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46996","ServerKey":"pl181","X":626,"Y":674},{"Bonus":0,"Continent":"K24","ID":46997,"Name":"Winterfell.020","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46997","ServerKey":"pl181","X":456,"Y":298},{"Bonus":0,"Continent":"K36","ID":46998,"Name":"005","PlayerID":849020094,"Points":5771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46998","ServerKey":"pl181","X":653,"Y":349},{"Bonus":0,"Continent":"K25","ID":46999,"Name":"#037","PlayerID":849064614,"Points":2911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=46999","ServerKey":"pl181","X":554,"Y":291},{"Bonus":0,"Continent":"K36","ID":47000,"Name":"!36 65 Dragosa","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47000","ServerKey":"pl181","X":658,"Y":360},{"Bonus":0,"Continent":"K66","ID":47001,"Name":"032.","PlayerID":699695167,"Points":3432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47001","ServerKey":"pl181","X":626,"Y":673},{"Bonus":0,"Continent":"K42","ID":47002,"Name":"p0pppp","PlayerID":848977600,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47002","ServerKey":"pl181","X":291,"Y":476},{"Bonus":0,"Continent":"K25","ID":47003,"Name":"North K25","PlayerID":699146580,"Points":2749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47003","ServerKey":"pl181","X":535,"Y":288},{"Bonus":0,"Continent":"K24","ID":47005,"Name":"#0273 olcixx","PlayerID":1238300,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47005","ServerKey":"pl181","X":465,"Y":296},{"Bonus":0,"Continent":"K46","ID":47006,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47006","ServerKey":"pl181","X":692,"Y":410},{"Bonus":0,"Continent":"K74","ID":47007,"Name":"Jednak wolę gofry","PlayerID":699725436,"Points":9376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47007","ServerKey":"pl181","X":459,"Y":704},{"Bonus":0,"Continent":"K66","ID":47008,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47008","ServerKey":"pl181","X":663,"Y":631},{"Bonus":0,"Continent":"K52","ID":47009,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47009","ServerKey":"pl181","X":287,"Y":535},{"Bonus":0,"Continent":"K52","ID":47010,"Name":"C0251","PlayerID":8841266,"Points":5689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47010","ServerKey":"pl181","X":292,"Y":552},{"Bonus":0,"Continent":"K42","ID":47011,"Name":"13 barbarzyƄska..","PlayerID":849018442,"Points":9198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47011","ServerKey":"pl181","X":297,"Y":445},{"Bonus":0,"Continent":"K63","ID":47012,"Name":"O084","PlayerID":272173,"Points":9882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47012","ServerKey":"pl181","X":338,"Y":636},{"Bonus":0,"Continent":"K74","ID":47013,"Name":"015.Night Raid","PlayerID":699684062,"Points":6904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47013","ServerKey":"pl181","X":491,"Y":711},{"Bonus":0,"Continent":"K66","ID":47014,"Name":"komandos","PlayerID":7976264,"Points":9219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47014","ServerKey":"pl181","X":640,"Y":662},{"Bonus":0,"Continent":"K63","ID":47015,"Name":"O020","PlayerID":272173,"Points":9962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47015","ServerKey":"pl181","X":335,"Y":633},{"Bonus":0,"Continent":"K36","ID":47016,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":2912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47016","ServerKey":"pl181","X":650,"Y":349},{"Bonus":0,"Continent":"K33","ID":47017,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":3944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47017","ServerKey":"pl181","X":390,"Y":313},{"Bonus":0,"Continent":"K47","ID":47018,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47018","ServerKey":"pl181","X":700,"Y":420},{"Bonus":0,"Continent":"K63","ID":47019,"Name":"C083","PlayerID":699383279,"Points":9679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47019","ServerKey":"pl181","X":356,"Y":653},{"Bonus":0,"Continent":"K52","ID":47020,"Name":"[0197]","PlayerID":8630972,"Points":7759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47020","ServerKey":"pl181","X":288,"Y":500},{"Bonus":0,"Continent":"K36","ID":47021,"Name":"0088","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47021","ServerKey":"pl181","X":613,"Y":348},{"Bonus":0,"Continent":"K75","ID":47022,"Name":"066 invidia","PlayerID":849093426,"Points":6343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47022","ServerKey":"pl181","X":546,"Y":707},{"Bonus":0,"Continent":"K63","ID":47023,"Name":"Taran","PlayerID":6180190,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47023","ServerKey":"pl181","X":324,"Y":616},{"Bonus":0,"Continent":"K36","ID":47024,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47024","ServerKey":"pl181","X":682,"Y":397},{"Bonus":0,"Continent":"K66","ID":47025,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47025","ServerKey":"pl181","X":635,"Y":659},{"Bonus":0,"Continent":"K46","ID":47026,"Name":"Idę po swoje","PlayerID":699785935,"Points":6931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47026","ServerKey":"pl181","X":687,"Y":400},{"Bonus":0,"Continent":"K66","ID":47027,"Name":"ZƂomowisko","PlayerID":569790,"Points":7515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47027","ServerKey":"pl181","X":607,"Y":681},{"Bonus":0,"Continent":"K74","ID":47028,"Name":"StatekMatka","PlayerID":848995291,"Points":5028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47028","ServerKey":"pl181","X":478,"Y":713},{"Bonus":0,"Continent":"K52","ID":47029,"Name":"EO EO","PlayerID":699697558,"Points":7625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47029","ServerKey":"pl181","X":287,"Y":519},{"Bonus":0,"Continent":"K42","ID":47030,"Name":"Bzyk","PlayerID":848977600,"Points":5193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47030","ServerKey":"pl181","X":293,"Y":470},{"Bonus":0,"Continent":"K75","ID":47031,"Name":"Bounty","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47031","ServerKey":"pl181","X":554,"Y":703},{"Bonus":0,"Continent":"K74","ID":47032,"Name":"037|| Serpens","PlayerID":849035525,"Points":6597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47032","ServerKey":"pl181","X":461,"Y":712},{"Bonus":0,"Continent":"K25","ID":47033,"Name":"004","PlayerID":699818726,"Points":8306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47033","ServerKey":"pl181","X":525,"Y":288},{"Bonus":0,"Continent":"K43","ID":47034,"Name":"007d","PlayerID":8259895,"Points":4611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47034","ServerKey":"pl181","X":302,"Y":422},{"Bonus":0,"Continent":"K33","ID":47035,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47035","ServerKey":"pl181","X":392,"Y":320},{"Bonus":0,"Continent":"K36","ID":47037,"Name":"043","PlayerID":698635863,"Points":7017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47037","ServerKey":"pl181","X":679,"Y":378},{"Bonus":0,"Continent":"K36","ID":47038,"Name":"XDX","PlayerID":699098531,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47038","ServerKey":"pl181","X":607,"Y":322},{"Bonus":0,"Continent":"K75","ID":47039,"Name":"-15-","PlayerID":849032414,"Points":8168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47039","ServerKey":"pl181","X":573,"Y":702},{"Bonus":0,"Continent":"K75","ID":47040,"Name":"0445","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47040","ServerKey":"pl181","X":557,"Y":708},{"Bonus":0,"Continent":"K35","ID":47041,"Name":"Wioska krumlow 7","PlayerID":699098531,"Points":2963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47041","ServerKey":"pl181","X":595,"Y":315},{"Bonus":0,"Continent":"K66","ID":47042,"Name":"#138#","PlayerID":692803,"Points":9291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47042","ServerKey":"pl181","X":643,"Y":654},{"Bonus":0,"Continent":"K52","ID":47043,"Name":"[0247]","PlayerID":8630972,"Points":6615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47043","ServerKey":"pl181","X":285,"Y":510},{"Bonus":0,"Continent":"K24","ID":47044,"Name":"210...segador","PlayerID":6920960,"Points":10877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47044","ServerKey":"pl181","X":451,"Y":293},{"Bonus":0,"Continent":"K25","ID":47045,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47045","ServerKey":"pl181","X":514,"Y":288},{"Bonus":0,"Continent":"K46","ID":47046,"Name":"0154","PlayerID":698416970,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47046","ServerKey":"pl181","X":694,"Y":407},{"Bonus":0,"Continent":"K74","ID":47047,"Name":"FP029","PlayerID":699605333,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47047","ServerKey":"pl181","X":474,"Y":713},{"Bonus":0,"Continent":"K36","ID":47048,"Name":"Wioska barbarzyƄska","PlayerID":698361257,"Points":3834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47048","ServerKey":"pl181","X":658,"Y":359},{"Bonus":0,"Continent":"K63","ID":47049,"Name":"001 Texas","PlayerID":849101293,"Points":6071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47049","ServerKey":"pl181","X":348,"Y":650},{"Bonus":0,"Continent":"K56","ID":47050,"Name":"S017","PlayerID":8428196,"Points":5705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47050","ServerKey":"pl181","X":689,"Y":594},{"Bonus":3,"Continent":"K36","ID":47051,"Name":"UltraInstynkt","PlayerID":699710633,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47051","ServerKey":"pl181","X":614,"Y":316},{"Bonus":0,"Continent":"K56","ID":47053,"Name":"ZzZzZ Sylwek","PlayerID":699778867,"Points":7910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47053","ServerKey":"pl181","X":697,"Y":571},{"Bonus":0,"Continent":"K43","ID":47054,"Name":"WiedĆșma - Z 007","PlayerID":9239515,"Points":1900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47054","ServerKey":"pl181","X":303,"Y":431},{"Bonus":0,"Continent":"K75","ID":47055,"Name":"059 invidia","PlayerID":849093426,"Points":6219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47055","ServerKey":"pl181","X":543,"Y":709},{"Bonus":0,"Continent":"K43","ID":47056,"Name":"ZA29","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47056","ServerKey":"pl181","X":313,"Y":411},{"Bonus":0,"Continent":"K42","ID":47058,"Name":"Aleppppp","PlayerID":848977600,"Points":4731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47058","ServerKey":"pl181","X":291,"Y":477},{"Bonus":0,"Continent":"K52","ID":47060,"Name":"C0339","PlayerID":8841266,"Points":3895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47060","ServerKey":"pl181","X":296,"Y":538},{"Bonus":0,"Continent":"K36","ID":47061,"Name":"011","PlayerID":9148043,"Points":7202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47061","ServerKey":"pl181","X":621,"Y":332},{"Bonus":0,"Continent":"K74","ID":47062,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47062","ServerKey":"pl181","X":422,"Y":701},{"Bonus":0,"Continent":"K56","ID":47063,"Name":"W.181/20","PlayerID":2999957,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47063","ServerKey":"pl181","X":615,"Y":531},{"Bonus":0,"Continent":"K33","ID":47064,"Name":"Zaplecze barba 3","PlayerID":699796330,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47064","ServerKey":"pl181","X":364,"Y":335},{"Bonus":0,"Continent":"K57","ID":47065,"Name":"0104","PlayerID":699429153,"Points":8909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47065","ServerKey":"pl181","X":709,"Y":503},{"Bonus":0,"Continent":"K33","ID":47066,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47066","ServerKey":"pl181","X":325,"Y":382},{"Bonus":0,"Continent":"K56","ID":47067,"Name":"S023","PlayerID":8428196,"Points":3661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47067","ServerKey":"pl181","X":685,"Y":598},{"Bonus":0,"Continent":"K74","ID":47068,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47068","ServerKey":"pl181","X":486,"Y":710},{"Bonus":0,"Continent":"K33","ID":47069,"Name":"008","PlayerID":849101205,"Points":5507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47069","ServerKey":"pl181","X":356,"Y":351},{"Bonus":2,"Continent":"K75","ID":47070,"Name":"113 invidia","PlayerID":849093426,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47070","ServerKey":"pl181","X":504,"Y":712},{"Bonus":0,"Continent":"K52","ID":47071,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47071","ServerKey":"pl181","X":290,"Y":504},{"Bonus":0,"Continent":"K24","ID":47072,"Name":"Cieszyn","PlayerID":699278528,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47072","ServerKey":"pl181","X":488,"Y":284},{"Bonus":9,"Continent":"K25","ID":47074,"Name":"Wancki","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47074","ServerKey":"pl181","X":512,"Y":293},{"Bonus":0,"Continent":"K36","ID":47075,"Name":"B002","PlayerID":8740199,"Points":8645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47075","ServerKey":"pl181","X":622,"Y":321},{"Bonus":0,"Continent":"K74","ID":47076,"Name":"0076 Z003","PlayerID":849037407,"Points":5680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47076","ServerKey":"pl181","X":445,"Y":706},{"Bonus":0,"Continent":"K66","ID":47078,"Name":"017 Wioska barbarzyƄska","PlayerID":699346280,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47078","ServerKey":"pl181","X":603,"Y":688},{"Bonus":0,"Continent":"K25","ID":47079,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47079","ServerKey":"pl181","X":574,"Y":298},{"Bonus":0,"Continent":"K56","ID":47080,"Name":"Wioska 12","PlayerID":849101162,"Points":5433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47080","ServerKey":"pl181","X":693,"Y":587},{"Bonus":0,"Continent":"K46","ID":47081,"Name":"0sada koczownikĂłw","PlayerID":699488108,"Points":9597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47081","ServerKey":"pl181","X":691,"Y":404},{"Bonus":0,"Continent":"K33","ID":47082,"Name":"001","PlayerID":699660539,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47082","ServerKey":"pl181","X":385,"Y":316},{"Bonus":0,"Continent":"K74","ID":47083,"Name":"132 invidia","PlayerID":849093426,"Points":9480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47083","ServerKey":"pl181","X":498,"Y":717},{"Bonus":0,"Continent":"K42","ID":47084,"Name":"Grubasy 6","PlayerID":634848,"Points":3705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47084","ServerKey":"pl181","X":296,"Y":450},{"Bonus":0,"Continent":"K33","ID":47085,"Name":"005","PlayerID":699660539,"Points":7164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47085","ServerKey":"pl181","X":387,"Y":319},{"Bonus":0,"Continent":"K63","ID":47086,"Name":"D002","PlayerID":272173,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47086","ServerKey":"pl181","X":349,"Y":647},{"Bonus":0,"Continent":"K66","ID":47087,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":5692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47087","ServerKey":"pl181","X":619,"Y":671},{"Bonus":0,"Continent":"K74","ID":47088,"Name":"New World","PlayerID":698152377,"Points":7739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47088","ServerKey":"pl181","X":438,"Y":705},{"Bonus":0,"Continent":"K33","ID":47089,"Name":"Szlachcic","PlayerID":3484132,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47089","ServerKey":"pl181","X":394,"Y":355},{"Bonus":0,"Continent":"K52","ID":47090,"Name":"New WorldA","PlayerID":849084005,"Points":6247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47090","ServerKey":"pl181","X":293,"Y":522},{"Bonus":0,"Continent":"K24","ID":47092,"Name":"[0137]","PlayerID":8630972,"Points":9416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47092","ServerKey":"pl181","X":449,"Y":297},{"Bonus":0,"Continent":"K63","ID":47093,"Name":"Bez emocji","PlayerID":849092685,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47093","ServerKey":"pl181","X":352,"Y":656},{"Bonus":0,"Continent":"K35","ID":47094,"Name":"XXXX","PlayerID":849054951,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47094","ServerKey":"pl181","X":566,"Y":301},{"Bonus":9,"Continent":"K65","ID":47095,"Name":"0054","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47095","ServerKey":"pl181","X":579,"Y":691},{"Bonus":0,"Continent":"K24","ID":47096,"Name":"????","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47096","ServerKey":"pl181","X":472,"Y":296},{"Bonus":0,"Continent":"K34","ID":47097,"Name":"=0014=","PlayerID":698231772,"Points":8631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47097","ServerKey":"pl181","X":404,"Y":317},{"Bonus":0,"Continent":"K36","ID":47098,"Name":"XDX","PlayerID":699098531,"Points":11164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47098","ServerKey":"pl181","X":602,"Y":313},{"Bonus":0,"Continent":"K47","ID":47099,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47099","ServerKey":"pl181","X":714,"Y":494},{"Bonus":0,"Continent":"K75","ID":47100,"Name":"Wioska Arystek","PlayerID":7590135,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47100","ServerKey":"pl181","X":526,"Y":712},{"Bonus":0,"Continent":"K36","ID":47101,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47101","ServerKey":"pl181","X":644,"Y":350},{"Bonus":0,"Continent":"K63","ID":47103,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47103","ServerKey":"pl181","X":375,"Y":676},{"Bonus":0,"Continent":"K52","ID":47104,"Name":"[0229]","PlayerID":8630972,"Points":6871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47104","ServerKey":"pl181","X":287,"Y":506},{"Bonus":0,"Continent":"K36","ID":47105,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47105","ServerKey":"pl181","X":618,"Y":325},{"Bonus":0,"Continent":"K53","ID":47106,"Name":"Taran","PlayerID":6180190,"Points":6262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47106","ServerKey":"pl181","X":314,"Y":597},{"Bonus":8,"Continent":"K24","ID":47107,"Name":"Winterfell.002","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47107","ServerKey":"pl181","X":447,"Y":298},{"Bonus":0,"Continent":"K46","ID":47108,"Name":"W29","PlayerID":699524362,"Points":1762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47108","ServerKey":"pl181","X":693,"Y":417},{"Bonus":0,"Continent":"K74","ID":47109,"Name":"022# Cassandrav2","PlayerID":3933666,"Points":6945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47109","ServerKey":"pl181","X":443,"Y":703},{"Bonus":0,"Continent":"K36","ID":47110,"Name":"Wioska barbarzyƄska","PlayerID":848924219,"Points":1413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47110","ServerKey":"pl181","X":660,"Y":354},{"Bonus":0,"Continent":"K66","ID":47111,"Name":"042 Wioska barbarzyƄska","PlayerID":699346280,"Points":5955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47111","ServerKey":"pl181","X":612,"Y":682},{"Bonus":0,"Continent":"K35","ID":47112,"Name":"001.","PlayerID":699072129,"Points":10385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47112","ServerKey":"pl181","X":565,"Y":326},{"Bonus":0,"Continent":"K65","ID":47113,"Name":"###048###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47113","ServerKey":"pl181","X":599,"Y":683},{"Bonus":5,"Continent":"K36","ID":47114,"Name":"Krowodrza","PlayerID":699598425,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47114","ServerKey":"pl181","X":690,"Y":398},{"Bonus":0,"Continent":"K34","ID":47116,"Name":"209","PlayerID":698365960,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47116","ServerKey":"pl181","X":425,"Y":300},{"Bonus":0,"Continent":"K64","ID":47117,"Name":"137","PlayerID":849099876,"Points":6935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47117","ServerKey":"pl181","X":403,"Y":683},{"Bonus":0,"Continent":"K34","ID":47118,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47118","ServerKey":"pl181","X":407,"Y":309},{"Bonus":0,"Continent":"K36","ID":47119,"Name":"029","PlayerID":9148043,"Points":3669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47119","ServerKey":"pl181","X":655,"Y":351},{"Bonus":0,"Continent":"K33","ID":47120,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47120","ServerKey":"pl181","X":326,"Y":385},{"Bonus":0,"Continent":"K52","ID":47121,"Name":"012","PlayerID":849098688,"Points":8795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47121","ServerKey":"pl181","X":290,"Y":539},{"Bonus":0,"Continent":"K64","ID":47122,"Name":"043","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47122","ServerKey":"pl181","X":412,"Y":688},{"Bonus":0,"Continent":"K63","ID":47123,"Name":"Wioska Kaczerki","PlayerID":699269923,"Points":8093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47123","ServerKey":"pl181","X":375,"Y":674},{"Bonus":0,"Continent":"K33","ID":47124,"Name":"CiemnogrĂłd #8","PlayerID":849096958,"Points":6962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47124","ServerKey":"pl181","X":332,"Y":363},{"Bonus":8,"Continent":"K47","ID":47125,"Name":"STREFA GAZY | 001","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47125","ServerKey":"pl181","X":712,"Y":479},{"Bonus":0,"Continent":"K66","ID":47127,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47127","ServerKey":"pl181","X":656,"Y":649},{"Bonus":0,"Continent":"K57","ID":47128,"Name":"Wioska Kosiu461","PlayerID":254937,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47128","ServerKey":"pl181","X":710,"Y":516},{"Bonus":0,"Continent":"K36","ID":47129,"Name":"!--","PlayerID":698361257,"Points":5295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47129","ServerKey":"pl181","X":656,"Y":364},{"Bonus":0,"Continent":"K53","ID":47131,"Name":"Początek","PlayerID":7842579,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47131","ServerKey":"pl181","X":303,"Y":578},{"Bonus":0,"Continent":"K33","ID":47132,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":8900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47132","ServerKey":"pl181","X":385,"Y":326},{"Bonus":0,"Continent":"K53","ID":47133,"Name":"Początek","PlayerID":7842579,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47133","ServerKey":"pl181","X":301,"Y":579},{"Bonus":0,"Continent":"K34","ID":47134,"Name":"039.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47134","ServerKey":"pl181","X":433,"Y":304},{"Bonus":0,"Continent":"K43","ID":47135,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47135","ServerKey":"pl181","X":306,"Y":413},{"Bonus":0,"Continent":"K24","ID":47136,"Name":"ƚwiętojaƄska","PlayerID":698848373,"Points":2850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47136","ServerKey":"pl181","X":483,"Y":298},{"Bonus":0,"Continent":"K33","ID":47137,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":5670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47137","ServerKey":"pl181","X":353,"Y":352},{"Bonus":1,"Continent":"K36","ID":47138,"Name":"Daleko od domu","PlayerID":848924219,"Points":6594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47138","ServerKey":"pl181","X":658,"Y":354},{"Bonus":0,"Continent":"K56","ID":47139,"Name":"Wioska","PlayerID":7999103,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47139","ServerKey":"pl181","X":693,"Y":594},{"Bonus":9,"Continent":"K47","ID":47140,"Name":"STREFA GAZY | 002","PlayerID":9228039,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47140","ServerKey":"pl181","X":707,"Y":471},{"Bonus":0,"Continent":"K36","ID":47142,"Name":"!36 66 Dragoiesti","PlayerID":698361257,"Points":9650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47142","ServerKey":"pl181","X":665,"Y":364},{"Bonus":0,"Continent":"K24","ID":47143,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":4218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47143","ServerKey":"pl181","X":466,"Y":293},{"Bonus":0,"Continent":"K57","ID":47144,"Name":"075","PlayerID":7085502,"Points":7884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47144","ServerKey":"pl181","X":717,"Y":508},{"Bonus":0,"Continent":"K63","ID":47145,"Name":"0147","PlayerID":7085510,"Points":7540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47145","ServerKey":"pl181","X":386,"Y":684},{"Bonus":0,"Continent":"K24","ID":47147,"Name":"#0139 barbarzyƄska","PlayerID":1238300,"Points":8048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47147","ServerKey":"pl181","X":484,"Y":287},{"Bonus":0,"Continent":"K75","ID":47148,"Name":"ZZZ","PlayerID":8980651,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47148","ServerKey":"pl181","X":535,"Y":702},{"Bonus":0,"Continent":"K33","ID":47149,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47149","ServerKey":"pl181","X":315,"Y":395},{"Bonus":0,"Continent":"K75","ID":47150,"Name":"052 invidia","PlayerID":849093426,"Points":10414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47150","ServerKey":"pl181","X":521,"Y":710},{"Bonus":0,"Continent":"K47","ID":47151,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47151","ServerKey":"pl181","X":710,"Y":493},{"Bonus":0,"Continent":"K25","ID":47153,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":4064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47153","ServerKey":"pl181","X":541,"Y":291},{"Bonus":0,"Continent":"K57","ID":47154,"Name":"=080= drago 7","PlayerID":3781794,"Points":10501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47154","ServerKey":"pl181","X":707,"Y":559},{"Bonus":0,"Continent":"K25","ID":47155,"Name":"XXXX","PlayerID":849054951,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47155","ServerKey":"pl181","X":565,"Y":296},{"Bonus":0,"Continent":"K63","ID":47156,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47156","ServerKey":"pl181","X":391,"Y":688},{"Bonus":0,"Continent":"K42","ID":47157,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47157","ServerKey":"pl181","X":294,"Y":457},{"Bonus":0,"Continent":"K57","ID":47158,"Name":"09. Toussaint","PlayerID":8976313,"Points":9526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47158","ServerKey":"pl181","X":709,"Y":548},{"Bonus":0,"Continent":"K75","ID":47159,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47159","ServerKey":"pl181","X":559,"Y":706},{"Bonus":0,"Continent":"K57","ID":47160,"Name":"Wioska","PlayerID":699034094,"Points":8390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47160","ServerKey":"pl181","X":712,"Y":528},{"Bonus":0,"Continent":"K64","ID":47161,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47161","ServerKey":"pl181","X":435,"Y":698},{"Bonus":0,"Continent":"K74","ID":47162,"Name":"015Roztopy","PlayerID":698620694,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47162","ServerKey":"pl181","X":471,"Y":709},{"Bonus":0,"Continent":"K33","ID":47164,"Name":"##1","PlayerID":2800032,"Points":9059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47164","ServerKey":"pl181","X":349,"Y":354},{"Bonus":0,"Continent":"K74","ID":47165,"Name":"013.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47165","ServerKey":"pl181","X":470,"Y":714},{"Bonus":0,"Continent":"K66","ID":47166,"Name":"022 Wioska barbarzyƄska","PlayerID":699346280,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47166","ServerKey":"pl181","X":600,"Y":688},{"Bonus":0,"Continent":"K35","ID":47167,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47167","ServerKey":"pl181","X":585,"Y":301},{"Bonus":4,"Continent":"K63","ID":47168,"Name":"D003","PlayerID":272173,"Points":9220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47168","ServerKey":"pl181","X":350,"Y":644},{"Bonus":0,"Continent":"K52","ID":47169,"Name":"[0230]","PlayerID":8630972,"Points":5750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47169","ServerKey":"pl181","X":292,"Y":505},{"Bonus":0,"Continent":"K56","ID":47170,"Name":"Didi","PlayerID":849070946,"Points":1638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47170","ServerKey":"pl181","X":689,"Y":586},{"Bonus":0,"Continent":"K66","ID":47171,"Name":"037","PlayerID":2323859,"Points":2709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47171","ServerKey":"pl181","X":660,"Y":640},{"Bonus":0,"Continent":"K66","ID":47172,"Name":"050.","PlayerID":699373599,"Points":3722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47172","ServerKey":"pl181","X":637,"Y":668},{"Bonus":0,"Continent":"K36","ID":47173,"Name":"Zzzz - Kasztelania 003","PlayerID":9291984,"Points":3944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47173","ServerKey":"pl181","X":642,"Y":349},{"Bonus":0,"Continent":"K75","ID":47174,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":7236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47174","ServerKey":"pl181","X":509,"Y":709},{"Bonus":0,"Continent":"K36","ID":47176,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":7472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47176","ServerKey":"pl181","X":643,"Y":338},{"Bonus":0,"Continent":"K33","ID":47178,"Name":"007","PlayerID":8724192,"Points":3730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47178","ServerKey":"pl181","X":310,"Y":397},{"Bonus":0,"Continent":"K46","ID":47179,"Name":"W31","PlayerID":699524362,"Points":1895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47179","ServerKey":"pl181","X":696,"Y":409},{"Bonus":0,"Continent":"K56","ID":47180,"Name":"Wioska 001","PlayerID":7999103,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47180","ServerKey":"pl181","X":688,"Y":597},{"Bonus":0,"Continent":"K63","ID":47181,"Name":"C085","PlayerID":699383279,"Points":7605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47181","ServerKey":"pl181","X":361,"Y":655},{"Bonus":0,"Continent":"K42","ID":47182,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47182","ServerKey":"pl181","X":294,"Y":450},{"Bonus":0,"Continent":"K46","ID":47183,"Name":"006.B.A.P","PlayerID":9180206,"Points":6615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47183","ServerKey":"pl181","X":692,"Y":421},{"Bonus":0,"Continent":"K33","ID":47184,"Name":"PIROTECHNIK 006","PlayerID":849101083,"Points":3096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47184","ServerKey":"pl181","X":351,"Y":345},{"Bonus":0,"Continent":"K33","ID":47185,"Name":"Szlachcic","PlayerID":698160606,"Points":10204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47185","ServerKey":"pl181","X":381,"Y":321},{"Bonus":0,"Continent":"K33","ID":47186,"Name":"152...B","PlayerID":6920960,"Points":6721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47186","ServerKey":"pl181","X":397,"Y":311},{"Bonus":0,"Continent":"K57","ID":47187,"Name":"=112= Wioska wyncel","PlayerID":3781794,"Points":7208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47187","ServerKey":"pl181","X":703,"Y":558},{"Bonus":0,"Continent":"K65","ID":47188,"Name":"###108###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47188","ServerKey":"pl181","X":586,"Y":691},{"Bonus":0,"Continent":"K47","ID":47189,"Name":"KrĂłlowy Most","PlayerID":849102464,"Points":10638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47189","ServerKey":"pl181","X":704,"Y":428},{"Bonus":0,"Continent":"K75","ID":47190,"Name":"-02-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47190","ServerKey":"pl181","X":579,"Y":701},{"Bonus":0,"Continent":"K25","ID":47191,"Name":"--035--","PlayerID":542253,"Points":4138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47191","ServerKey":"pl181","X":569,"Y":295},{"Bonus":0,"Continent":"K25","ID":47192,"Name":"031","PlayerID":849010255,"Points":6535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47192","ServerKey":"pl181","X":510,"Y":283},{"Bonus":0,"Continent":"K57","ID":47193,"Name":"024. FudĆŒi","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47193","ServerKey":"pl181","X":713,"Y":530},{"Bonus":0,"Continent":"K74","ID":47194,"Name":"Wioska barbarzyƄska","PlayerID":849037407,"Points":5379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47194","ServerKey":"pl181","X":444,"Y":703},{"Bonus":0,"Continent":"K55","ID":47195,"Name":"Wioska 15","PlayerID":699385139,"Points":7852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47195","ServerKey":"pl181","X":524,"Y":504},{"Bonus":0,"Continent":"K24","ID":47196,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47196","ServerKey":"pl181","X":498,"Y":284},{"Bonus":0,"Continent":"K33","ID":47198,"Name":"011","PlayerID":8153941,"Points":3022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47198","ServerKey":"pl181","X":391,"Y":324},{"Bonus":0,"Continent":"K46","ID":47199,"Name":"W30","PlayerID":699524362,"Points":1591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47199","ServerKey":"pl181","X":697,"Y":412},{"Bonus":0,"Continent":"K33","ID":47200,"Name":"240","PlayerID":7271812,"Points":1014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47200","ServerKey":"pl181","X":391,"Y":312},{"Bonus":0,"Continent":"K25","ID":47201,"Name":"Castel Ravello","PlayerID":849054951,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47201","ServerKey":"pl181","X":558,"Y":291},{"Bonus":0,"Continent":"K24","ID":47202,"Name":"[0141]","PlayerID":8630972,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47202","ServerKey":"pl181","X":441,"Y":299},{"Bonus":1,"Continent":"K33","ID":47203,"Name":"Zaplecze drewniane 1","PlayerID":699796330,"Points":10217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47203","ServerKey":"pl181","X":374,"Y":330},{"Bonus":0,"Continent":"K75","ID":47204,"Name":"#K75 0018","PlayerID":699728159,"Points":5149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47204","ServerKey":"pl181","X":519,"Y":709},{"Bonus":0,"Continent":"K66","ID":47205,"Name":"05-oss","PlayerID":848921861,"Points":10187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47205","ServerKey":"pl181","X":677,"Y":614},{"Bonus":0,"Continent":"K46","ID":47207,"Name":"Prawie zmieniƂem podejƛcie","PlayerID":699785935,"Points":8751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47207","ServerKey":"pl181","X":688,"Y":402},{"Bonus":0,"Continent":"K75","ID":47209,"Name":"Wyspa_43","PlayerID":2585846,"Points":9653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47209","ServerKey":"pl181","X":505,"Y":712},{"Bonus":0,"Continent":"K66","ID":47210,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47210","ServerKey":"pl181","X":662,"Y":636},{"Bonus":0,"Continent":"K63","ID":47211,"Name":"Taran","PlayerID":6180190,"Points":9101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47211","ServerKey":"pl181","X":326,"Y":622},{"Bonus":0,"Continent":"K63","ID":47212,"Name":"O074","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47212","ServerKey":"pl181","X":330,"Y":623},{"Bonus":0,"Continent":"K34","ID":47213,"Name":"Ultimate Farming Simulator 1","PlayerID":699872032,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47213","ServerKey":"pl181","X":416,"Y":303},{"Bonus":0,"Continent":"K35","ID":47214,"Name":"CSA","PlayerID":1006847,"Points":3589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47214","ServerKey":"pl181","X":527,"Y":309},{"Bonus":0,"Continent":"K33","ID":47215,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":5153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47215","ServerKey":"pl181","X":381,"Y":327},{"Bonus":4,"Continent":"K47","ID":47216,"Name":"004","PlayerID":849091105,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47216","ServerKey":"pl181","X":713,"Y":498},{"Bonus":0,"Continent":"K66","ID":47217,"Name":"#K66 0013","PlayerID":699728159,"Points":6560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47217","ServerKey":"pl181","X":614,"Y":678},{"Bonus":4,"Continent":"K43","ID":47218,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47218","ServerKey":"pl181","X":304,"Y":418},{"Bonus":0,"Continent":"K47","ID":47219,"Name":"36. Kufe 3","PlayerID":699804790,"Points":2711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47219","ServerKey":"pl181","X":703,"Y":454},{"Bonus":0,"Continent":"K43","ID":47220,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47220","ServerKey":"pl181","X":303,"Y":433},{"Bonus":0,"Continent":"K45","ID":47221,"Name":"A22","PlayerID":699368887,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47221","ServerKey":"pl181","X":550,"Y":458},{"Bonus":0,"Continent":"K25","ID":47222,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47222","ServerKey":"pl181","X":568,"Y":298},{"Bonus":0,"Continent":"K33","ID":47223,"Name":"0072","PlayerID":848913037,"Points":7860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47223","ServerKey":"pl181","X":366,"Y":338},{"Bonus":0,"Continent":"K36","ID":47224,"Name":"!36 66 Capu Codrului","PlayerID":698361257,"Points":9384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47224","ServerKey":"pl181","X":660,"Y":363},{"Bonus":0,"Continent":"K53","ID":47226,"Name":"Ave Why!","PlayerID":6180190,"Points":5748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47226","ServerKey":"pl181","X":311,"Y":585},{"Bonus":0,"Continent":"K36","ID":47227,"Name":"wioska","PlayerID":849102068,"Points":5862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47227","ServerKey":"pl181","X":639,"Y":342},{"Bonus":0,"Continent":"K75","ID":47228,"Name":"#K75 0014","PlayerID":699728159,"Points":4717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47228","ServerKey":"pl181","X":519,"Y":711},{"Bonus":2,"Continent":"K24","ID":47229,"Name":"Winterfell.006","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47229","ServerKey":"pl181","X":450,"Y":291},{"Bonus":0,"Continent":"K47","ID":47230,"Name":"A#024","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47230","ServerKey":"pl181","X":711,"Y":498},{"Bonus":0,"Continent":"K43","ID":47231,"Name":"*05 GAWRA*","PlayerID":2415972,"Points":8334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47231","ServerKey":"pl181","X":301,"Y":428},{"Bonus":0,"Continent":"K47","ID":47232,"Name":"C14","PlayerID":849093742,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47232","ServerKey":"pl181","X":704,"Y":446},{"Bonus":0,"Continent":"K66","ID":47233,"Name":"033.","PlayerID":699695167,"Points":5547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47233","ServerKey":"pl181","X":628,"Y":670},{"Bonus":0,"Continent":"K66","ID":47234,"Name":"005","PlayerID":849101148,"Points":8529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47234","ServerKey":"pl181","X":644,"Y":652},{"Bonus":0,"Continent":"K63","ID":47235,"Name":"O077","PlayerID":272173,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47235","ServerKey":"pl181","X":334,"Y":637},{"Bonus":0,"Continent":"K63","ID":47236,"Name":"Taran","PlayerID":6180190,"Points":6985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47236","ServerKey":"pl181","X":313,"Y":609},{"Bonus":0,"Continent":"K24","ID":47237,"Name":"????","PlayerID":698489071,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47237","ServerKey":"pl181","X":473,"Y":290},{"Bonus":0,"Continent":"K42","ID":47238,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47238","ServerKey":"pl181","X":292,"Y":442},{"Bonus":6,"Continent":"K64","ID":47239,"Name":"016. Night Raid*","PlayerID":699684062,"Points":9864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47239","ServerKey":"pl181","X":432,"Y":698},{"Bonus":0,"Continent":"K33","ID":47240,"Name":"Zaplecze Barba 019","PlayerID":699796330,"Points":8574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47240","ServerKey":"pl181","X":368,"Y":329},{"Bonus":0,"Continent":"K64","ID":47241,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":3170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47241","ServerKey":"pl181","X":416,"Y":649},{"Bonus":0,"Continent":"K35","ID":47242,"Name":"XXXX","PlayerID":849054951,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47242","ServerKey":"pl181","X":566,"Y":303},{"Bonus":0,"Continent":"K75","ID":47243,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":4220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47243","ServerKey":"pl181","X":511,"Y":708},{"Bonus":0,"Continent":"K33","ID":47244,"Name":"012","PlayerID":699660539,"Points":6447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47244","ServerKey":"pl181","X":387,"Y":316},{"Bonus":0,"Continent":"K56","ID":47246,"Name":"ZzZzZ Sylwek2","PlayerID":699778867,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47246","ServerKey":"pl181","X":696,"Y":568},{"Bonus":0,"Continent":"K66","ID":47248,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47248","ServerKey":"pl181","X":645,"Y":661},{"Bonus":0,"Continent":"K63","ID":47250,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":6945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47250","ServerKey":"pl181","X":347,"Y":642},{"Bonus":0,"Continent":"K66","ID":47251,"Name":"S027","PlayerID":8428196,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47251","ServerKey":"pl181","X":687,"Y":603},{"Bonus":0,"Continent":"K66","ID":47252,"Name":"CastAway !030","PlayerID":9314079,"Points":6337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47252","ServerKey":"pl181","X":688,"Y":601},{"Bonus":0,"Continent":"K43","ID":47253,"Name":"WiedĆșma - Z 009","PlayerID":9239515,"Points":1362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47253","ServerKey":"pl181","X":305,"Y":431},{"Bonus":0,"Continent":"K66","ID":47254,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47254","ServerKey":"pl181","X":661,"Y":638},{"Bonus":9,"Continent":"K66","ID":47255,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47255","ServerKey":"pl181","X":668,"Y":633},{"Bonus":0,"Continent":"K63","ID":47256,"Name":"Taran","PlayerID":6180190,"Points":9526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47256","ServerKey":"pl181","X":317,"Y":613},{"Bonus":0,"Continent":"K24","ID":47257,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":7479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47257","ServerKey":"pl181","X":434,"Y":293},{"Bonus":0,"Continent":"K25","ID":47258,"Name":"012 ZO","PlayerID":699208929,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47258","ServerKey":"pl181","X":537,"Y":291},{"Bonus":0,"Continent":"K75","ID":47259,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47259","ServerKey":"pl181","X":514,"Y":707},{"Bonus":0,"Continent":"K35","ID":47260,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47260","ServerKey":"pl181","X":576,"Y":307},{"Bonus":0,"Continent":"K65","ID":47261,"Name":"###049###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47261","ServerKey":"pl181","X":599,"Y":686},{"Bonus":0,"Continent":"K33","ID":47262,"Name":"010","PlayerID":699660539,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47262","ServerKey":"pl181","X":391,"Y":319},{"Bonus":0,"Continent":"K35","ID":47263,"Name":"XDX","PlayerID":699098531,"Points":6822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47263","ServerKey":"pl181","X":595,"Y":308},{"Bonus":0,"Continent":"K43","ID":47264,"Name":"Dzik 7","PlayerID":8366045,"Points":7525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47264","ServerKey":"pl181","X":303,"Y":435},{"Bonus":0,"Continent":"K66","ID":47265,"Name":"009","PlayerID":2323859,"Points":7981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47265","ServerKey":"pl181","X":664,"Y":640},{"Bonus":0,"Continent":"K35","ID":47266,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47266","ServerKey":"pl181","X":590,"Y":313},{"Bonus":0,"Continent":"K74","ID":47267,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47267","ServerKey":"pl181","X":437,"Y":706},{"Bonus":0,"Continent":"K57","ID":47268,"Name":"065 ZieloneOczko3","PlayerID":2135129,"Points":8721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47268","ServerKey":"pl181","X":707,"Y":518},{"Bonus":0,"Continent":"K74","ID":47269,"Name":"0.17 Jadom","PlayerID":699725436,"Points":9467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47269","ServerKey":"pl181","X":458,"Y":706},{"Bonus":0,"Continent":"K24","ID":47270,"Name":".achim.","PlayerID":6936607,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47270","ServerKey":"pl181","X":482,"Y":287},{"Bonus":0,"Continent":"K66","ID":47271,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47271","ServerKey":"pl181","X":650,"Y":650},{"Bonus":0,"Continent":"K25","ID":47273,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47273","ServerKey":"pl181","X":535,"Y":294},{"Bonus":0,"Continent":"K25","ID":47274,"Name":"North 042","PlayerID":849064752,"Points":9252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47274","ServerKey":"pl181","X":513,"Y":283},{"Bonus":0,"Continent":"K46","ID":47275,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47275","ServerKey":"pl181","X":696,"Y":432},{"Bonus":5,"Continent":"K33","ID":47276,"Name":"002","PlayerID":7386358,"Points":6294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47276","ServerKey":"pl181","X":323,"Y":376},{"Bonus":0,"Continent":"K35","ID":47277,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47277","ServerKey":"pl181","X":582,"Y":304},{"Bonus":0,"Continent":"K42","ID":47278,"Name":"Kagusiowo 7","PlayerID":849101268,"Points":4983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47278","ServerKey":"pl181","X":299,"Y":440},{"Bonus":1,"Continent":"K36","ID":47279,"Name":"035","PlayerID":9148043,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47279","ServerKey":"pl181","X":651,"Y":354},{"Bonus":0,"Continent":"K63","ID":47280,"Name":"C087","PlayerID":699383279,"Points":8240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47280","ServerKey":"pl181","X":364,"Y":664},{"Bonus":0,"Continent":"K52","ID":47281,"Name":"019","PlayerID":9280477,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47281","ServerKey":"pl181","X":299,"Y":560},{"Bonus":0,"Continent":"K36","ID":47282,"Name":"058","PlayerID":698635863,"Points":4734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47282","ServerKey":"pl181","X":668,"Y":378},{"Bonus":0,"Continent":"K66","ID":47283,"Name":"*009*","PlayerID":1205898,"Points":8285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47283","ServerKey":"pl181","X":683,"Y":616},{"Bonus":0,"Continent":"K56","ID":47284,"Name":"Wioska 04","PlayerID":849101162,"Points":6249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47284","ServerKey":"pl181","X":695,"Y":589},{"Bonus":0,"Continent":"K63","ID":47285,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47285","ServerKey":"pl181","X":340,"Y":647},{"Bonus":0,"Continent":"K46","ID":47286,"Name":"Osada 13","PlayerID":699524891,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47286","ServerKey":"pl181","X":699,"Y":430},{"Bonus":0,"Continent":"K35","ID":47287,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47287","ServerKey":"pl181","X":579,"Y":305},{"Bonus":0,"Continent":"K42","ID":47288,"Name":"Avanti!","PlayerID":698625834,"Points":9992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47288","ServerKey":"pl181","X":285,"Y":485},{"Bonus":0,"Continent":"K36","ID":47289,"Name":"Na KraƄcu ƚwiata 001","PlayerID":9291984,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47289","ServerKey":"pl181","X":645,"Y":343},{"Bonus":0,"Continent":"K52","ID":47290,"Name":"EO EO","PlayerID":699697558,"Points":7042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47290","ServerKey":"pl181","X":293,"Y":514},{"Bonus":0,"Continent":"K56","ID":47291,"Name":"Wioska 005","PlayerID":7999103,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47291","ServerKey":"pl181","X":696,"Y":591},{"Bonus":0,"Continent":"K43","ID":47292,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":8737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47292","ServerKey":"pl181","X":300,"Y":420},{"Bonus":0,"Continent":"K52","ID":47293,"Name":"Grud","PlayerID":849098688,"Points":3175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47293","ServerKey":"pl181","X":293,"Y":542},{"Bonus":0,"Continent":"K33","ID":47294,"Name":"BOSS2","PlayerID":849101604,"Points":8472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47294","ServerKey":"pl181","X":354,"Y":341},{"Bonus":0,"Continent":"K36","ID":47295,"Name":"Wioska-012-","PlayerID":7675610,"Points":1464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47295","ServerKey":"pl181","X":629,"Y":330},{"Bonus":0,"Continent":"K25","ID":47296,"Name":"042","PlayerID":849010255,"Points":7822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47296","ServerKey":"pl181","X":513,"Y":289},{"Bonus":6,"Continent":"K74","ID":47297,"Name":"0045 Apt3czka","PlayerID":849037407,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47297","ServerKey":"pl181","X":448,"Y":704},{"Bonus":0,"Continent":"K66","ID":47298,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47298","ServerKey":"pl181","X":648,"Y":655},{"Bonus":0,"Continent":"K34","ID":47299,"Name":"ElMajkelos VII","PlayerID":849085160,"Points":9456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47299","ServerKey":"pl181","X":412,"Y":306},{"Bonus":0,"Continent":"K52","ID":47300,"Name":"Piszkawa","PlayerID":849101092,"Points":5696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47300","ServerKey":"pl181","X":297,"Y":562},{"Bonus":0,"Continent":"K34","ID":47301,"Name":"005 Wioska barbarzyƄska","PlayerID":698258283,"Points":4233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47301","ServerKey":"pl181","X":405,"Y":315},{"Bonus":4,"Continent":"K42","ID":47302,"Name":"Avanti!","PlayerID":698625834,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47302","ServerKey":"pl181","X":286,"Y":484},{"Bonus":0,"Continent":"K36","ID":47304,"Name":"044","PlayerID":698635863,"Points":7111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47304","ServerKey":"pl181","X":676,"Y":378},{"Bonus":0,"Continent":"K46","ID":47305,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47305","ServerKey":"pl181","X":692,"Y":406},{"Bonus":0,"Continent":"K74","ID":47306,"Name":"005","PlayerID":849101309,"Points":1684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47306","ServerKey":"pl181","X":441,"Y":702},{"Bonus":0,"Continent":"K75","ID":47307,"Name":"0532","PlayerID":698659980,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47307","ServerKey":"pl181","X":557,"Y":706},{"Bonus":0,"Continent":"K65","ID":47308,"Name":"###109###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47308","ServerKey":"pl181","X":597,"Y":694},{"Bonus":0,"Continent":"K24","ID":47309,"Name":"106...","PlayerID":6920960,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47309","ServerKey":"pl181","X":473,"Y":285},{"Bonus":4,"Continent":"K47","ID":47310,"Name":"WS 02","PlayerID":699524891,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47310","ServerKey":"pl181","X":701,"Y":440},{"Bonus":0,"Continent":"K64","ID":47311,"Name":"A11","PlayerID":698652014,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47311","ServerKey":"pl181","X":464,"Y":659},{"Bonus":0,"Continent":"K57","ID":47312,"Name":"CastAway #007","PlayerID":9314079,"Points":7713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47312","ServerKey":"pl181","X":700,"Y":584},{"Bonus":0,"Continent":"K54","ID":47313,"Name":"BETI 012","PlayerID":8539216,"Points":1828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47313","ServerKey":"pl181","X":462,"Y":569},{"Bonus":0,"Continent":"K75","ID":47314,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":5046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47314","ServerKey":"pl181","X":501,"Y":708},{"Bonus":0,"Continent":"K52","ID":47315,"Name":"New WorldA","PlayerID":849084005,"Points":4493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47315","ServerKey":"pl181","X":289,"Y":508},{"Bonus":0,"Continent":"K53","ID":47316,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47316","ServerKey":"pl181","X":310,"Y":599},{"Bonus":0,"Continent":"K42","ID":47317,"Name":"Avanti!","PlayerID":698625834,"Points":7123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47317","ServerKey":"pl181","X":286,"Y":474},{"Bonus":0,"Continent":"K63","ID":47318,"Name":"Taran","PlayerID":6180190,"Points":9329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47318","ServerKey":"pl181","X":319,"Y":616},{"Bonus":0,"Continent":"K35","ID":47320,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47320","ServerKey":"pl181","X":588,"Y":303},{"Bonus":0,"Continent":"K34","ID":47321,"Name":"ElMajkelos XI","PlayerID":849085160,"Points":3432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47321","ServerKey":"pl181","X":420,"Y":302},{"Bonus":0,"Continent":"K56","ID":47322,"Name":"Wioska 19","PlayerID":849101162,"Points":2146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47322","ServerKey":"pl181","X":693,"Y":598},{"Bonus":8,"Continent":"K42","ID":47323,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47323","ServerKey":"pl181","X":297,"Y":425},{"Bonus":0,"Continent":"K57","ID":47324,"Name":"046","PlayerID":7085502,"Points":7876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47324","ServerKey":"pl181","X":715,"Y":516},{"Bonus":5,"Continent":"K75","ID":47325,"Name":"030 zadupie","PlayerID":6116940,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47325","ServerKey":"pl181","X":532,"Y":710},{"Bonus":0,"Continent":"K25","ID":47326,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47326","ServerKey":"pl181","X":506,"Y":286},{"Bonus":0,"Continent":"K63","ID":47327,"Name":"0125","PlayerID":7085510,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47327","ServerKey":"pl181","X":393,"Y":686},{"Bonus":0,"Continent":"K24","ID":47329,"Name":"097.Stradi","PlayerID":698365960,"Points":9514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47329","ServerKey":"pl181","X":439,"Y":293},{"Bonus":0,"Continent":"K74","ID":47331,"Name":"Kurnik","PlayerID":699603116,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47331","ServerKey":"pl181","X":474,"Y":714},{"Bonus":0,"Continent":"K64","ID":47332,"Name":"095","PlayerID":849099876,"Points":9177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47332","ServerKey":"pl181","X":403,"Y":692},{"Bonus":0,"Continent":"K75","ID":47333,"Name":"075 invidia","PlayerID":849093426,"Points":5714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47333","ServerKey":"pl181","X":557,"Y":707},{"Bonus":0,"Continent":"K36","ID":47334,"Name":"wioska","PlayerID":9291984,"Points":10044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47334","ServerKey":"pl181","X":637,"Y":332},{"Bonus":0,"Continent":"K63","ID":47335,"Name":"MENSPHYSIQUE","PlayerID":849097837,"Points":2310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47335","ServerKey":"pl181","X":378,"Y":672},{"Bonus":0,"Continent":"K57","ID":47336,"Name":"01. Novigrad","PlayerID":8976313,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47336","ServerKey":"pl181","X":704,"Y":541},{"Bonus":0,"Continent":"K46","ID":47337,"Name":"Dubno","PlayerID":699488108,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47337","ServerKey":"pl181","X":690,"Y":409},{"Bonus":0,"Continent":"K65","ID":47338,"Name":"###110###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47338","ServerKey":"pl181","X":583,"Y":690},{"Bonus":0,"Continent":"K75","ID":47339,"Name":"108 invidia","PlayerID":849093426,"Points":10401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47339","ServerKey":"pl181","X":511,"Y":716},{"Bonus":0,"Continent":"K25","ID":47340,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47340","ServerKey":"pl181","X":520,"Y":291},{"Bonus":0,"Continent":"K43","ID":47341,"Name":"Wioska barbarzyƄska","PlayerID":699706955,"Points":4210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47341","ServerKey":"pl181","X":302,"Y":458},{"Bonus":0,"Continent":"K75","ID":47342,"Name":"R 040 ~Wybacz Ribeska~","PlayerID":699195358,"Points":7801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47342","ServerKey":"pl181","X":500,"Y":717},{"Bonus":0,"Continent":"K63","ID":47343,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47343","ServerKey":"pl181","X":314,"Y":612},{"Bonus":0,"Continent":"K47","ID":47344,"Name":"0069","PlayerID":698416970,"Points":5044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47344","ServerKey":"pl181","X":713,"Y":461},{"Bonus":0,"Continent":"K33","ID":47345,"Name":"Wioska barbarzyƄska","PlayerID":699794765,"Points":1410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47345","ServerKey":"pl181","X":319,"Y":384},{"Bonus":0,"Continent":"K56","ID":47346,"Name":"Wioska 006","PlayerID":7999103,"Points":9269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47346","ServerKey":"pl181","X":696,"Y":593},{"Bonus":0,"Continent":"K63","ID":47347,"Name":"Taran","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47347","ServerKey":"pl181","X":315,"Y":608},{"Bonus":0,"Continent":"K66","ID":47348,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47348","ServerKey":"pl181","X":669,"Y":632},{"Bonus":0,"Continent":"K47","ID":47349,"Name":"07 Banga Banga","PlayerID":849101845,"Points":9484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47349","ServerKey":"pl181","X":705,"Y":452},{"Bonus":0,"Continent":"K33","ID":47350,"Name":"Z 0005","PlayerID":3909522,"Points":10033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47350","ServerKey":"pl181","X":349,"Y":358},{"Bonus":0,"Continent":"K52","ID":47351,"Name":"012","PlayerID":9280477,"Points":7578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47351","ServerKey":"pl181","X":296,"Y":553},{"Bonus":0,"Continent":"K63","ID":47352,"Name":"Syjon 01","PlayerID":698908184,"Points":8029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47352","ServerKey":"pl181","X":343,"Y":646},{"Bonus":0,"Continent":"K65","ID":47354,"Name":"0584","PlayerID":698659980,"Points":8939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47354","ServerKey":"pl181","X":576,"Y":695},{"Bonus":0,"Continent":"K42","ID":47355,"Name":"Dzik 2","PlayerID":8366045,"Points":10887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47355","ServerKey":"pl181","X":294,"Y":432},{"Bonus":0,"Continent":"K66","ID":47356,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47356","ServerKey":"pl181","X":647,"Y":659},{"Bonus":4,"Continent":"K33","ID":47357,"Name":"00000B","PlayerID":3698627,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47357","ServerKey":"pl181","X":376,"Y":331},{"Bonus":0,"Continent":"K56","ID":47358,"Name":"EE 008","PlayerID":849100149,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47358","ServerKey":"pl181","X":699,"Y":582},{"Bonus":0,"Continent":"K63","ID":47359,"Name":"D004","PlayerID":272173,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47359","ServerKey":"pl181","X":347,"Y":646},{"Bonus":0,"Continent":"K66","ID":47360,"Name":"007","PlayerID":2323859,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47360","ServerKey":"pl181","X":666,"Y":640},{"Bonus":0,"Continent":"K47","ID":47362,"Name":"SOS","PlayerID":699785935,"Points":7797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47362","ServerKey":"pl181","X":702,"Y":425},{"Bonus":0,"Continent":"K64","ID":47363,"Name":"New World","PlayerID":698152377,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47363","ServerKey":"pl181","X":447,"Y":687},{"Bonus":0,"Continent":"K36","ID":47364,"Name":"wioska","PlayerID":849102068,"Points":8330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47364","ServerKey":"pl181","X":639,"Y":335},{"Bonus":0,"Continent":"K36","ID":47366,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47366","ServerKey":"pl181","X":613,"Y":320},{"Bonus":0,"Continent":"K42","ID":47367,"Name":"Avanti!","PlayerID":698625834,"Points":6416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47367","ServerKey":"pl181","X":286,"Y":483},{"Bonus":0,"Continent":"K52","ID":47368,"Name":"EO EO","PlayerID":699697558,"Points":8981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47368","ServerKey":"pl181","X":292,"Y":512},{"Bonus":0,"Continent":"K33","ID":47369,"Name":"2_Franekkimono510_2","PlayerID":849099422,"Points":8333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47369","ServerKey":"pl181","X":374,"Y":325},{"Bonus":0,"Continent":"K46","ID":47370,"Name":"Osada 7","PlayerID":8675636,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47370","ServerKey":"pl181","X":696,"Y":421},{"Bonus":0,"Continent":"K36","ID":47371,"Name":"045","PlayerID":698635863,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47371","ServerKey":"pl181","X":673,"Y":374},{"Bonus":0,"Continent":"K74","ID":47372,"Name":"0073 Wioska barbarzyƄska","PlayerID":849037407,"Points":8848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47372","ServerKey":"pl181","X":445,"Y":701},{"Bonus":0,"Continent":"K66","ID":47373,"Name":"klops33","PlayerID":848909464,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47373","ServerKey":"pl181","X":629,"Y":668},{"Bonus":9,"Continent":"K24","ID":47374,"Name":"Winterfell.003","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47374","ServerKey":"pl181","X":441,"Y":291},{"Bonus":0,"Continent":"K75","ID":47375,"Name":"004","PlayerID":698996782,"Points":8483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47375","ServerKey":"pl181","X":532,"Y":716},{"Bonus":0,"Continent":"K33","ID":47376,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47376","ServerKey":"pl181","X":370,"Y":333},{"Bonus":0,"Continent":"K74","ID":47377,"Name":"New World","PlayerID":698152377,"Points":8805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47377","ServerKey":"pl181","X":439,"Y":707},{"Bonus":0,"Continent":"K74","ID":47379,"Name":"0034","PlayerID":699684062,"Points":4039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47379","ServerKey":"pl181","X":489,"Y":714},{"Bonus":0,"Continent":"K52","ID":47380,"Name":"Cisza","PlayerID":698769107,"Points":6166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47380","ServerKey":"pl181","X":288,"Y":551},{"Bonus":0,"Continent":"K75","ID":47381,"Name":"023 zadupie","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47381","ServerKey":"pl181","X":531,"Y":713},{"Bonus":0,"Continent":"K34","ID":47382,"Name":"ElMajkelos X","PlayerID":849085160,"Points":3778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47382","ServerKey":"pl181","X":416,"Y":305},{"Bonus":0,"Continent":"K43","ID":47383,"Name":"ZZ03","PlayerID":356642,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47383","ServerKey":"pl181","X":313,"Y":402},{"Bonus":0,"Continent":"K36","ID":47385,"Name":"007 Moulton Park","PlayerID":699098531,"Points":8849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47385","ServerKey":"pl181","X":620,"Y":319},{"Bonus":0,"Continent":"K36","ID":47386,"Name":"0096","PlayerID":698416970,"Points":3337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47386","ServerKey":"pl181","X":680,"Y":394},{"Bonus":0,"Continent":"K64","ID":47387,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47387","ServerKey":"pl181","X":421,"Y":693},{"Bonus":0,"Continent":"K65","ID":47388,"Name":"Klejnot nr1","PlayerID":699837483,"Points":4099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47388","ServerKey":"pl181","X":589,"Y":696},{"Bonus":0,"Continent":"K24","ID":47389,"Name":".achim.","PlayerID":6936607,"Points":7454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47389","ServerKey":"pl181","X":482,"Y":284},{"Bonus":0,"Continent":"K25","ID":47390,"Name":"sh05","PlayerID":7758085,"Points":5714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47390","ServerKey":"pl181","X":513,"Y":291},{"Bonus":0,"Continent":"K43","ID":47391,"Name":"003a","PlayerID":8259895,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47391","ServerKey":"pl181","X":302,"Y":412},{"Bonus":0,"Continent":"K64","ID":47392,"Name":"189","PlayerID":849099876,"Points":9477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47392","ServerKey":"pl181","X":417,"Y":697},{"Bonus":0,"Continent":"K52","ID":47393,"Name":"EO EO","PlayerID":699697558,"Points":7597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47393","ServerKey":"pl181","X":284,"Y":524},{"Bonus":0,"Continent":"K33","ID":47394,"Name":"...","PlayerID":699657450,"Points":3946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47394","ServerKey":"pl181","X":337,"Y":360},{"Bonus":0,"Continent":"K46","ID":47395,"Name":"002","PlayerID":849085371,"Points":4270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47395","ServerKey":"pl181","X":697,"Y":408},{"Bonus":0,"Continent":"K25","ID":47396,"Name":"RPM CUSTOM 2","PlayerID":849102094,"Points":4885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47396","ServerKey":"pl181","X":553,"Y":289},{"Bonus":0,"Continent":"K66","ID":47397,"Name":"009. GĂłrki Wyboiste","PlayerID":849100994,"Points":7248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47397","ServerKey":"pl181","X":655,"Y":648},{"Bonus":0,"Continent":"K35","ID":47398,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":5660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47398","ServerKey":"pl181","X":573,"Y":304},{"Bonus":0,"Continent":"K46","ID":47399,"Name":"W32","PlayerID":699524362,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47399","ServerKey":"pl181","X":695,"Y":418},{"Bonus":0,"Continent":"K35","ID":47400,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47400","ServerKey":"pl181","X":582,"Y":301},{"Bonus":0,"Continent":"K53","ID":47401,"Name":"Ave Why!","PlayerID":6180190,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47401","ServerKey":"pl181","X":309,"Y":593},{"Bonus":0,"Continent":"K63","ID":47402,"Name":"C015","PlayerID":699383279,"Points":9892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47402","ServerKey":"pl181","X":366,"Y":668},{"Bonus":0,"Continent":"K35","ID":47403,"Name":"XDX","PlayerID":699098531,"Points":7569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47403","ServerKey":"pl181","X":599,"Y":308},{"Bonus":0,"Continent":"K75","ID":47404,"Name":"#K75 0023","PlayerID":699728159,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47404","ServerKey":"pl181","X":514,"Y":716},{"Bonus":0,"Continent":"K66","ID":47406,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47406","ServerKey":"pl181","X":650,"Y":652},{"Bonus":0,"Continent":"K57","ID":47407,"Name":"Ger4","PlayerID":2246711,"Points":4539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47407","ServerKey":"pl181","X":715,"Y":526},{"Bonus":8,"Continent":"K63","ID":47408,"Name":"O002","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47408","ServerKey":"pl181","X":337,"Y":637},{"Bonus":0,"Continent":"K35","ID":47410,"Name":"XDX","PlayerID":699098531,"Points":7482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47410","ServerKey":"pl181","X":595,"Y":313},{"Bonus":0,"Continent":"K43","ID":47411,"Name":"005a","PlayerID":8259895,"Points":4755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47411","ServerKey":"pl181","X":305,"Y":408},{"Bonus":0,"Continent":"K52","ID":47412,"Name":"New WorldA","PlayerID":849084005,"Points":3615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47412","ServerKey":"pl181","X":291,"Y":545},{"Bonus":0,"Continent":"K46","ID":47413,"Name":"0066","PlayerID":698416970,"Points":5360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47413","ServerKey":"pl181","X":692,"Y":420},{"Bonus":0,"Continent":"K47","ID":47414,"Name":"C.035","PlayerID":9188016,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47414","ServerKey":"pl181","X":708,"Y":475},{"Bonus":0,"Continent":"K74","ID":47415,"Name":"Kurnik","PlayerID":699603116,"Points":9486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47415","ServerKey":"pl181","X":481,"Y":710},{"Bonus":0,"Continent":"K75","ID":47416,"Name":"002 coƛ ciekawego?","PlayerID":6116940,"Points":4185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47416","ServerKey":"pl181","X":530,"Y":709},{"Bonus":0,"Continent":"K56","ID":47417,"Name":"Wioska 14","PlayerID":849101162,"Points":3628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47417","ServerKey":"pl181","X":694,"Y":588},{"Bonus":0,"Continent":"K36","ID":47418,"Name":"058","PlayerID":849010255,"Points":2228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47418","ServerKey":"pl181","X":639,"Y":345},{"Bonus":0,"Continent":"K33","ID":47419,"Name":"Wioska008","PlayerID":699711926,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47419","ServerKey":"pl181","X":345,"Y":350},{"Bonus":0,"Continent":"K33","ID":47421,"Name":"BOSS3","PlayerID":849101604,"Points":8367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47421","ServerKey":"pl181","X":353,"Y":342},{"Bonus":0,"Continent":"K35","ID":47422,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47422","ServerKey":"pl181","X":577,"Y":304},{"Bonus":0,"Continent":"K36","ID":47423,"Name":"wpadam do Ciebie do swiat","PlayerID":698457392,"Points":1413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47423","ServerKey":"pl181","X":623,"Y":342},{"Bonus":0,"Continent":"K74","ID":47424,"Name":"Lewa","PlayerID":7589468,"Points":8418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47424","ServerKey":"pl181","X":497,"Y":710},{"Bonus":0,"Continent":"K46","ID":47425,"Name":"Na chƂodno","PlayerID":699785935,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47425","ServerKey":"pl181","X":682,"Y":402},{"Bonus":0,"Continent":"K33","ID":47426,"Name":"*227* pozdro poćwicz","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47426","ServerKey":"pl181","X":325,"Y":376},{"Bonus":0,"Continent":"K33","ID":47427,"Name":"0069","PlayerID":848913037,"Points":6321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47427","ServerKey":"pl181","X":369,"Y":335},{"Bonus":0,"Continent":"K47","ID":47428,"Name":"Czarny Zamek","PlayerID":849101378,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47428","ServerKey":"pl181","X":708,"Y":436},{"Bonus":2,"Continent":"K34","ID":47429,"Name":"ElMajkelos II","PlayerID":849085160,"Points":9262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47429","ServerKey":"pl181","X":419,"Y":302},{"Bonus":0,"Continent":"K74","ID":47430,"Name":"022.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47430","ServerKey":"pl181","X":470,"Y":713},{"Bonus":2,"Continent":"K63","ID":47431,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":8551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47431","ServerKey":"pl181","X":350,"Y":653},{"Bonus":0,"Continent":"K47","ID":47432,"Name":"C.036","PlayerID":9188016,"Points":4732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47432","ServerKey":"pl181","X":715,"Y":482},{"Bonus":0,"Continent":"K25","ID":47433,"Name":"081 Wioska barbarzyƄska","PlayerID":699854484,"Points":8743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47433","ServerKey":"pl181","X":536,"Y":288},{"Bonus":0,"Continent":"K64","ID":47434,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47434","ServerKey":"pl181","X":425,"Y":694},{"Bonus":0,"Continent":"K33","ID":47435,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47435","ServerKey":"pl181","X":332,"Y":379},{"Bonus":0,"Continent":"K52","ID":47436,"Name":"Wioska barbarzyƄska","PlayerID":7530708,"Points":2421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47436","ServerKey":"pl181","X":293,"Y":524},{"Bonus":0,"Continent":"K33","ID":47437,"Name":"002","PlayerID":7919620,"Points":4815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47437","ServerKey":"pl181","X":322,"Y":378},{"Bonus":0,"Continent":"K52","ID":47438,"Name":"[0248]","PlayerID":8630972,"Points":6765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47438","ServerKey":"pl181","X":287,"Y":513},{"Bonus":0,"Continent":"K36","ID":47439,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47439","ServerKey":"pl181","X":630,"Y":329},{"Bonus":0,"Continent":"K42","ID":47440,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47440","ServerKey":"pl181","X":293,"Y":445},{"Bonus":0,"Continent":"K74","ID":47441,"Name":"001","PlayerID":849101309,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47441","ServerKey":"pl181","X":442,"Y":703},{"Bonus":0,"Continent":"K74","ID":47442,"Name":"chwile zabawy","PlayerID":849100814,"Points":5475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47442","ServerKey":"pl181","X":421,"Y":701},{"Bonus":0,"Continent":"K74","ID":47443,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":6925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47443","ServerKey":"pl181","X":496,"Y":708},{"Bonus":0,"Continent":"K36","ID":47444,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":2957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47444","ServerKey":"pl181","X":629,"Y":335},{"Bonus":0,"Continent":"K42","ID":47445,"Name":"Wioska X05","PlayerID":698701911,"Points":3074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47445","ServerKey":"pl181","X":296,"Y":460},{"Bonus":0,"Continent":"K33","ID":47446,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47446","ServerKey":"pl181","X":330,"Y":380},{"Bonus":0,"Continent":"K25","ID":47447,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47447","ServerKey":"pl181","X":563,"Y":297},{"Bonus":0,"Continent":"K75","ID":47448,"Name":"Wioska ewaa","PlayerID":849101382,"Points":6335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47448","ServerKey":"pl181","X":506,"Y":719},{"Bonus":0,"Continent":"K63","ID":47449,"Name":"Taran","PlayerID":6180190,"Points":8803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47449","ServerKey":"pl181","X":315,"Y":611},{"Bonus":0,"Continent":"K24","ID":47451,"Name":"[0125]","PlayerID":8630972,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47451","ServerKey":"pl181","X":444,"Y":292},{"Bonus":0,"Continent":"K66","ID":47452,"Name":"wioska barbarzyƄska","PlayerID":848909464,"Points":8385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47452","ServerKey":"pl181","X":621,"Y":672},{"Bonus":0,"Continent":"K57","ID":47454,"Name":"Wioska","PlayerID":699034094,"Points":4206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47454","ServerKey":"pl181","X":713,"Y":529},{"Bonus":0,"Continent":"K56","ID":47456,"Name":"Wioska 07","PlayerID":849101162,"Points":6169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47456","ServerKey":"pl181","X":695,"Y":592},{"Bonus":0,"Continent":"K63","ID":47457,"Name":"O023","PlayerID":272173,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47457","ServerKey":"pl181","X":331,"Y":637},{"Bonus":5,"Continent":"K56","ID":47458,"Name":"Wioska 06","PlayerID":849101162,"Points":7172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47458","ServerKey":"pl181","X":692,"Y":593},{"Bonus":0,"Continent":"K43","ID":47459,"Name":"WiedĆșma - Z 001","PlayerID":9239515,"Points":9383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47459","ServerKey":"pl181","X":304,"Y":430},{"Bonus":0,"Continent":"K33","ID":47460,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47460","ServerKey":"pl181","X":335,"Y":370},{"Bonus":0,"Continent":"K46","ID":47461,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":6714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47461","ServerKey":"pl181","X":691,"Y":411},{"Bonus":0,"Continent":"K52","ID":47463,"Name":"[0249]","PlayerID":8630972,"Points":6803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47463","ServerKey":"pl181","X":286,"Y":511},{"Bonus":8,"Continent":"K33","ID":47464,"Name":"18 Dewon","PlayerID":698231772,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47464","ServerKey":"pl181","X":395,"Y":315},{"Bonus":0,"Continent":"K63","ID":47465,"Name":"139","PlayerID":849099876,"Points":9132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47465","ServerKey":"pl181","X":399,"Y":693},{"Bonus":0,"Continent":"K56","ID":47466,"Name":"TWIERDZA .:075:.","PlayerID":7154207,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47466","ServerKey":"pl181","X":697,"Y":583},{"Bonus":0,"Continent":"K36","ID":47467,"Name":"*019","PlayerID":7758085,"Points":7581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47467","ServerKey":"pl181","X":672,"Y":368},{"Bonus":0,"Continent":"K24","ID":47468,"Name":"[0132]","PlayerID":8630972,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47468","ServerKey":"pl181","X":444,"Y":299},{"Bonus":0,"Continent":"K33","ID":47469,"Name":"Szlachcic","PlayerID":698388578,"Points":5440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47469","ServerKey":"pl181","X":359,"Y":338},{"Bonus":0,"Continent":"K25","ID":47470,"Name":"Wioska D","PlayerID":1867161,"Points":3325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47470","ServerKey":"pl181","X":541,"Y":293},{"Bonus":0,"Continent":"K47","ID":47471,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":6132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47471","ServerKey":"pl181","X":703,"Y":443},{"Bonus":0,"Continent":"K25","ID":47472,"Name":"Wioska E","PlayerID":1867161,"Points":2869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47472","ServerKey":"pl181","X":543,"Y":293},{"Bonus":0,"Continent":"K56","ID":47473,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47473","ServerKey":"pl181","X":698,"Y":563},{"Bonus":0,"Continent":"K34","ID":47474,"Name":"220","PlayerID":698365960,"Points":7299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47474","ServerKey":"pl181","X":418,"Y":308},{"Bonus":0,"Continent":"K36","ID":47475,"Name":"Wioska Motliiu","PlayerID":699738350,"Points":6029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47475","ServerKey":"pl181","X":691,"Y":397},{"Bonus":0,"Continent":"K33","ID":47476,"Name":"Soltys Wsi Maciekp011","PlayerID":849027025,"Points":9356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47476","ServerKey":"pl181","X":349,"Y":344},{"Bonus":0,"Continent":"K66","ID":47477,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47477","ServerKey":"pl181","X":658,"Y":649},{"Bonus":0,"Continent":"K33","ID":47478,"Name":"012 JJ","PlayerID":9120206,"Points":3722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47478","ServerKey":"pl181","X":330,"Y":368},{"Bonus":0,"Continent":"K42","ID":47479,"Name":"16 Cezarleon.","PlayerID":849018442,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47479","ServerKey":"pl181","X":290,"Y":446},{"Bonus":0,"Continent":"K55","ID":47480,"Name":"Nowa Nadzieja 6","PlayerID":699383121,"Points":8120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47480","ServerKey":"pl181","X":501,"Y":596},{"Bonus":0,"Continent":"K66","ID":47482,"Name":"034.","PlayerID":699695167,"Points":4050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47482","ServerKey":"pl181","X":622,"Y":675},{"Bonus":0,"Continent":"K54","ID":47483,"Name":"062 - misslolaxo","PlayerID":225023,"Points":8136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47483","ServerKey":"pl181","X":424,"Y":587},{"Bonus":0,"Continent":"K42","ID":47484,"Name":"[0190]","PlayerID":8630972,"Points":8919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47484","ServerKey":"pl181","X":284,"Y":494},{"Bonus":0,"Continent":"K47","ID":47485,"Name":"19 Achttung, Herman","PlayerID":849101845,"Points":4260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47485","ServerKey":"pl181","X":710,"Y":469},{"Bonus":0,"Continent":"K36","ID":47486,"Name":"Wioska barbarzyƄska","PlayerID":7555180,"Points":7666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47486","ServerKey":"pl181","X":632,"Y":334},{"Bonus":0,"Continent":"K63","ID":47487,"Name":"C025","PlayerID":699383279,"Points":9419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47487","ServerKey":"pl181","X":359,"Y":660},{"Bonus":1,"Continent":"K64","ID":47488,"Name":"0108","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47488","ServerKey":"pl181","X":400,"Y":691},{"Bonus":0,"Continent":"K66","ID":47489,"Name":"0759ccc","PlayerID":3986807,"Points":1440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47489","ServerKey":"pl181","X":681,"Y":611},{"Bonus":0,"Continent":"K33","ID":47490,"Name":"...","PlayerID":699657450,"Points":7039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47490","ServerKey":"pl181","X":338,"Y":355},{"Bonus":0,"Continent":"K57","ID":47491,"Name":"060","PlayerID":7085502,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47491","ServerKey":"pl181","X":714,"Y":518},{"Bonus":0,"Continent":"K42","ID":47492,"Name":"Barabara","PlayerID":848977600,"Points":6445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47492","ServerKey":"pl181","X":288,"Y":470},{"Bonus":0,"Continent":"K66","ID":47493,"Name":"Bessa 008","PlayerID":848987051,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47493","ServerKey":"pl181","X":640,"Y":658},{"Bonus":0,"Continent":"K36","ID":47494,"Name":"Wioska barbarzyƄska","PlayerID":848924219,"Points":3180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47494","ServerKey":"pl181","X":660,"Y":353},{"Bonus":0,"Continent":"K42","ID":47495,"Name":"[0174]","PlayerID":8630972,"Points":9018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47495","ServerKey":"pl181","X":287,"Y":496},{"Bonus":0,"Continent":"K47","ID":47497,"Name":"[823] Odludzie","PlayerID":848985692,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47497","ServerKey":"pl181","X":705,"Y":438},{"Bonus":0,"Continent":"K42","ID":47498,"Name":"Onono nono","PlayerID":698652171,"Points":7339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47498","ServerKey":"pl181","X":287,"Y":457},{"Bonus":0,"Continent":"K66","ID":47499,"Name":"Wioska Sir Olmek","PlayerID":848987051,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47499","ServerKey":"pl181","X":642,"Y":655},{"Bonus":0,"Continent":"K66","ID":47500,"Name":"004 dark.lady","PlayerID":699346280,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47500","ServerKey":"pl181","X":609,"Y":686},{"Bonus":0,"Continent":"K66","ID":47501,"Name":"Klatka","PlayerID":6528152,"Points":6554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47501","ServerKey":"pl181","X":621,"Y":677},{"Bonus":0,"Continent":"K57","ID":47502,"Name":"036","PlayerID":849091105,"Points":8823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47502","ServerKey":"pl181","X":721,"Y":500},{"Bonus":0,"Continent":"K74","ID":47503,"Name":"002","PlayerID":849101309,"Points":5877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47503","ServerKey":"pl181","X":442,"Y":702},{"Bonus":0,"Continent":"K47","ID":47504,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47504","ServerKey":"pl181","X":716,"Y":477},{"Bonus":0,"Continent":"K63","ID":47505,"Name":"0158","PlayerID":7085510,"Points":5779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47505","ServerKey":"pl181","X":393,"Y":690},{"Bonus":0,"Continent":"K66","ID":47506,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47506","ServerKey":"pl181","X":647,"Y":656},{"Bonus":0,"Continent":"K35","ID":47508,"Name":"K35 - [022] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47508","ServerKey":"pl181","X":584,"Y":305},{"Bonus":0,"Continent":"K34","ID":47509,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47509","ServerKey":"pl181","X":401,"Y":312},{"Bonus":0,"Continent":"K46","ID":47510,"Name":"####","PlayerID":849101881,"Points":4883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47510","ServerKey":"pl181","X":699,"Y":416},{"Bonus":0,"Continent":"K52","ID":47512,"Name":"022","PlayerID":9280477,"Points":7635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47512","ServerKey":"pl181","X":298,"Y":562},{"Bonus":0,"Continent":"K24","ID":47513,"Name":"207","PlayerID":698365960,"Points":6621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47513","ServerKey":"pl181","X":425,"Y":298},{"Bonus":0,"Continent":"K75","ID":47515,"Name":"rafisonik6","PlayerID":849101108,"Points":4646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47515","ServerKey":"pl181","X":510,"Y":714},{"Bonus":0,"Continent":"K63","ID":47516,"Name":"0151","PlayerID":7085510,"Points":4024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47516","ServerKey":"pl181","X":393,"Y":687},{"Bonus":0,"Continent":"K33","ID":47517,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":8753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47517","ServerKey":"pl181","X":334,"Y":369},{"Bonus":0,"Continent":"K36","ID":47518,"Name":"-020- P","PlayerID":8675636,"Points":5314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47518","ServerKey":"pl181","X":620,"Y":329},{"Bonus":0,"Continent":"K36","ID":47519,"Name":"B003","PlayerID":8740199,"Points":6235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47519","ServerKey":"pl181","X":621,"Y":321},{"Bonus":0,"Continent":"K56","ID":47520,"Name":"Wioska 03","PlayerID":849101162,"Points":7110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47520","ServerKey":"pl181","X":694,"Y":590},{"Bonus":0,"Continent":"K36","ID":47521,"Name":"-027- WWW","PlayerID":849099276,"Points":1444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47521","ServerKey":"pl181","X":649,"Y":351},{"Bonus":4,"Continent":"K66","ID":47522,"Name":"Osada koczownikĂłw","PlayerID":849096972,"Points":7879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47522","ServerKey":"pl181","X":618,"Y":682},{"Bonus":0,"Continent":"K75","ID":47523,"Name":"xzc","PlayerID":8827094,"Points":8592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47523","ServerKey":"pl181","X":501,"Y":703},{"Bonus":3,"Continent":"K66","ID":47524,"Name":"Ć»UBEREK 002","PlayerID":33900,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47524","ServerKey":"pl181","X":612,"Y":685},{"Bonus":0,"Continent":"K74","ID":47525,"Name":"Kurnik","PlayerID":699603116,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47525","ServerKey":"pl181","X":452,"Y":711},{"Bonus":0,"Continent":"K56","ID":47526,"Name":"Wioska barbarzyƄska","PlayerID":7154207,"Points":1383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47526","ServerKey":"pl181","X":694,"Y":584},{"Bonus":0,"Continent":"K75","ID":47527,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47527","ServerKey":"pl181","X":512,"Y":710},{"Bonus":0,"Continent":"K74","ID":47528,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47528","ServerKey":"pl181","X":429,"Y":704},{"Bonus":0,"Continent":"K36","ID":47529,"Name":"011","PlayerID":849020094,"Points":2997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47529","ServerKey":"pl181","X":647,"Y":351},{"Bonus":0,"Continent":"K35","ID":47530,"Name":"026. Minas Morgul","PlayerID":699799629,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47530","ServerKey":"pl181","X":567,"Y":396},{"Bonus":0,"Continent":"K75","ID":47531,"Name":"Bennet","PlayerID":699443920,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47531","ServerKey":"pl181","X":554,"Y":711},{"Bonus":0,"Continent":"K46","ID":47532,"Name":"Coraz bliĆŒej ƛwięta","PlayerID":699785935,"Points":8930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47532","ServerKey":"pl181","X":685,"Y":401},{"Bonus":0,"Continent":"K74","ID":47533,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47533","ServerKey":"pl181","X":437,"Y":704},{"Bonus":0,"Continent":"K75","ID":47534,"Name":"Starosiedlice","PlayerID":698723158,"Points":8386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47534","ServerKey":"pl181","X":576,"Y":702},{"Bonus":0,"Continent":"K65","ID":47535,"Name":"###111###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47535","ServerKey":"pl181","X":598,"Y":690},{"Bonus":0,"Continent":"K42","ID":47536,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":5666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47536","ServerKey":"pl181","X":281,"Y":488},{"Bonus":7,"Continent":"K56","ID":47537,"Name":"Wioska barbarzyƄska","PlayerID":699737356,"Points":2590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47537","ServerKey":"pl181","X":698,"Y":573},{"Bonus":0,"Continent":"K63","ID":47538,"Name":"177","PlayerID":849099876,"Points":7088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47538","ServerKey":"pl181","X":383,"Y":680},{"Bonus":0,"Continent":"K65","ID":47539,"Name":"Jasieniec","PlayerID":698723158,"Points":5522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47539","ServerKey":"pl181","X":572,"Y":697},{"Bonus":0,"Continent":"K36","ID":47540,"Name":"Wioska teduniook","PlayerID":9106690,"Points":4304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47540","ServerKey":"pl181","X":600,"Y":308},{"Bonus":0,"Continent":"K75","ID":47541,"Name":"025 zadupie","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47541","ServerKey":"pl181","X":533,"Y":710},{"Bonus":0,"Continent":"K47","ID":47542,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47542","ServerKey":"pl181","X":705,"Y":433},{"Bonus":0,"Continent":"K66","ID":47543,"Name":"*003*","PlayerID":1205898,"Points":9075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47543","ServerKey":"pl181","X":680,"Y":623},{"Bonus":0,"Continent":"K52","ID":47544,"Name":"C0242","PlayerID":8841266,"Points":10387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47544","ServerKey":"pl181","X":291,"Y":534},{"Bonus":0,"Continent":"K52","ID":47545,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47545","ServerKey":"pl181","X":288,"Y":502},{"Bonus":0,"Continent":"K36","ID":47546,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47546","ServerKey":"pl181","X":605,"Y":318},{"Bonus":2,"Continent":"K63","ID":47547,"Name":"0106","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47547","ServerKey":"pl181","X":393,"Y":678},{"Bonus":0,"Continent":"K46","ID":47548,"Name":"Hubix","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47548","ServerKey":"pl181","X":697,"Y":409},{"Bonus":0,"Continent":"K24","ID":47549,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47549","ServerKey":"pl181","X":498,"Y":283},{"Bonus":0,"Continent":"K52","ID":47550,"Name":"C0213","PlayerID":8841266,"Points":8860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47550","ServerKey":"pl181","X":294,"Y":532},{"Bonus":0,"Continent":"K42","ID":47551,"Name":"Avanti!","PlayerID":698625834,"Points":6158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47551","ServerKey":"pl181","X":288,"Y":480},{"Bonus":0,"Continent":"K64","ID":47552,"Name":"042","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47552","ServerKey":"pl181","X":410,"Y":691},{"Bonus":0,"Continent":"K25","ID":47553,"Name":"Wancki","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47553","ServerKey":"pl181","X":517,"Y":289},{"Bonus":0,"Continent":"K52","ID":47554,"Name":"Rigel","PlayerID":849101647,"Points":5583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47554","ServerKey":"pl181","X":285,"Y":519},{"Bonus":0,"Continent":"K75","ID":47555,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":6943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47555","ServerKey":"pl181","X":549,"Y":712},{"Bonus":0,"Continent":"K66","ID":47556,"Name":"048.","PlayerID":699373599,"Points":4846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47556","ServerKey":"pl181","X":637,"Y":667},{"Bonus":0,"Continent":"K52","ID":47557,"Name":"Arczi997 05","PlayerID":849055181,"Points":1165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47557","ServerKey":"pl181","X":291,"Y":517},{"Bonus":0,"Continent":"K43","ID":47558,"Name":"005","PlayerID":8259895,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47558","ServerKey":"pl181","X":304,"Y":408},{"Bonus":0,"Continent":"K52","ID":47559,"Name":"C0247","PlayerID":8841266,"Points":5383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47559","ServerKey":"pl181","X":292,"Y":532},{"Bonus":0,"Continent":"K65","ID":47560,"Name":"###112###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47560","ServerKey":"pl181","X":591,"Y":693},{"Bonus":0,"Continent":"K52","ID":47561,"Name":"003 Gniezno","PlayerID":9235561,"Points":6894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47561","ServerKey":"pl181","X":290,"Y":529},{"Bonus":0,"Continent":"K34","ID":47562,"Name":"Ultimate Farming Simulator 5","PlayerID":699872032,"Points":7332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47562","ServerKey":"pl181","X":415,"Y":305},{"Bonus":0,"Continent":"K57","ID":47563,"Name":"013. Chogolisa","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47563","ServerKey":"pl181","X":710,"Y":552},{"Bonus":0,"Continent":"K25","ID":47564,"Name":"D005","PlayerID":699299123,"Points":6197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47564","ServerKey":"pl181","X":561,"Y":294},{"Bonus":0,"Continent":"K53","ID":47565,"Name":"Taran","PlayerID":6180190,"Points":7047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47565","ServerKey":"pl181","X":310,"Y":597},{"Bonus":0,"Continent":"K25","ID":47566,"Name":"--013--","PlayerID":542253,"Points":8521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47566","ServerKey":"pl181","X":572,"Y":295},{"Bonus":0,"Continent":"K36","ID":47567,"Name":"W33","PlayerID":699524362,"Points":1887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47567","ServerKey":"pl181","X":692,"Y":399},{"Bonus":0,"Continent":"K46","ID":47569,"Name":"W34","PlayerID":699524362,"Points":3222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47569","ServerKey":"pl181","X":698,"Y":410},{"Bonus":0,"Continent":"K66","ID":47570,"Name":"023","PlayerID":2323859,"Points":5693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47570","ServerKey":"pl181","X":655,"Y":647},{"Bonus":0,"Continent":"K33","ID":47571,"Name":"Szlachcic","PlayerID":698388578,"Points":5761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47571","ServerKey":"pl181","X":363,"Y":339},{"Bonus":0,"Continent":"K63","ID":47572,"Name":"0161","PlayerID":7085510,"Points":3187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47572","ServerKey":"pl181","X":391,"Y":678},{"Bonus":0,"Continent":"K74","ID":47573,"Name":"Kurnik","PlayerID":699603116,"Points":7929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47573","ServerKey":"pl181","X":472,"Y":710},{"Bonus":0,"Continent":"K66","ID":47574,"Name":"Klatka7","PlayerID":6528152,"Points":3636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47574","ServerKey":"pl181","X":626,"Y":678},{"Bonus":0,"Continent":"K47","ID":47575,"Name":"C06","PlayerID":849093742,"Points":8264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47575","ServerKey":"pl181","X":705,"Y":451},{"Bonus":0,"Continent":"K42","ID":47576,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47576","ServerKey":"pl181","X":294,"Y":452},{"Bonus":0,"Continent":"K36","ID":47577,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47577","ServerKey":"pl181","X":619,"Y":326},{"Bonus":0,"Continent":"K74","ID":47578,"Name":"FP021","PlayerID":699605333,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47578","ServerKey":"pl181","X":482,"Y":707},{"Bonus":0,"Continent":"K74","ID":47579,"Name":"0041","PlayerID":699280514,"Points":3304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47579","ServerKey":"pl181","X":478,"Y":712},{"Bonus":0,"Continent":"K74","ID":47580,"Name":"Bagno 20","PlayerID":848883684,"Points":8429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47580","ServerKey":"pl181","X":484,"Y":713},{"Bonus":0,"Continent":"K47","ID":47581,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47581","ServerKey":"pl181","X":716,"Y":487},{"Bonus":0,"Continent":"K24","ID":47583,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47583","ServerKey":"pl181","X":497,"Y":282},{"Bonus":0,"Continent":"K56","ID":47584,"Name":"Wioska barbarzyƄska","PlayerID":699737356,"Points":2254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47584","ServerKey":"pl181","X":697,"Y":573},{"Bonus":0,"Continent":"K25","ID":47585,"Name":"AAA","PlayerID":1006847,"Points":8876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47585","ServerKey":"pl181","X":541,"Y":289},{"Bonus":0,"Continent":"K57","ID":47586,"Name":"0103","PlayerID":699429153,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47586","ServerKey":"pl181","X":708,"Y":505},{"Bonus":0,"Continent":"K74","ID":47587,"Name":"R 039","PlayerID":699195358,"Points":6177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47587","ServerKey":"pl181","X":495,"Y":717},{"Bonus":0,"Continent":"K63","ID":47588,"Name":"0132","PlayerID":7085510,"Points":6531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47588","ServerKey":"pl181","X":392,"Y":683},{"Bonus":0,"Continent":"K36","ID":47589,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":5027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47589","ServerKey":"pl181","X":655,"Y":353},{"Bonus":0,"Continent":"K33","ID":47590,"Name":"CiemnogrĂłd #9","PlayerID":849096958,"Points":6660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47590","ServerKey":"pl181","X":333,"Y":365},{"Bonus":0,"Continent":"K52","ID":47591,"Name":"New WorldA","PlayerID":849084005,"Points":4941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47591","ServerKey":"pl181","X":286,"Y":536},{"Bonus":0,"Continent":"K75","ID":47592,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":5260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47592","ServerKey":"pl181","X":546,"Y":703},{"Bonus":0,"Continent":"K42","ID":47593,"Name":"[0181]","PlayerID":8630972,"Points":8945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47593","ServerKey":"pl181","X":289,"Y":494},{"Bonus":0,"Continent":"K75","ID":47594,"Name":"Wioska barbarzyƄska","PlayerID":7590135,"Points":4819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47594","ServerKey":"pl181","X":522,"Y":708},{"Bonus":0,"Continent":"K63","ID":47595,"Name":"O025","PlayerID":272173,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47595","ServerKey":"pl181","X":333,"Y":636},{"Bonus":7,"Continent":"K64","ID":47596,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47596","ServerKey":"pl181","X":426,"Y":697},{"Bonus":0,"Continent":"K63","ID":47597,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47597","ServerKey":"pl181","X":382,"Y":673},{"Bonus":0,"Continent":"K63","ID":47598,"Name":"O075","PlayerID":272173,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47598","ServerKey":"pl181","X":329,"Y":625},{"Bonus":0,"Continent":"K64","ID":47599,"Name":"138","PlayerID":849099876,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47599","ServerKey":"pl181","X":402,"Y":691},{"Bonus":0,"Continent":"K36","ID":47601,"Name":"032","PlayerID":9148043,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47601","ServerKey":"pl181","X":656,"Y":349},{"Bonus":0,"Continent":"K36","ID":47604,"Name":"XDX","PlayerID":699098531,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47604","ServerKey":"pl181","X":610,"Y":315},{"Bonus":0,"Continent":"K47","ID":47605,"Name":"Ars","PlayerID":699379895,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47605","ServerKey":"pl181","X":718,"Y":494},{"Bonus":0,"Continent":"K42","ID":47606,"Name":"Dzik 3","PlayerID":8366045,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47606","ServerKey":"pl181","X":295,"Y":434},{"Bonus":0,"Continent":"K24","ID":47607,"Name":"250...Kaban1998","PlayerID":6920960,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47607","ServerKey":"pl181","X":461,"Y":294},{"Bonus":0,"Continent":"K57","ID":47608,"Name":"nasa","PlayerID":1895081,"Points":2567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47608","ServerKey":"pl181","X":706,"Y":528},{"Bonus":0,"Continent":"K63","ID":47609,"Name":"019. Wioska barbarzyƄska","PlayerID":698908184,"Points":8570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47609","ServerKey":"pl181","X":343,"Y":637},{"Bonus":0,"Continent":"K34","ID":47610,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47610","ServerKey":"pl181","X":400,"Y":305},{"Bonus":0,"Continent":"K74","ID":47611,"Name":"0.17d","PlayerID":699725436,"Points":9464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47611","ServerKey":"pl181","X":465,"Y":711},{"Bonus":0,"Continent":"K66","ID":47613,"Name":"###113###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47613","ServerKey":"pl181","X":600,"Y":693},{"Bonus":0,"Continent":"K34","ID":47614,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47614","ServerKey":"pl181","X":402,"Y":314},{"Bonus":0,"Continent":"K52","ID":47615,"Name":"Początek","PlayerID":7842579,"Points":3894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47615","ServerKey":"pl181","X":297,"Y":575},{"Bonus":0,"Continent":"K25","ID":47616,"Name":"077 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47616","ServerKey":"pl181","X":537,"Y":286},{"Bonus":0,"Continent":"K34","ID":47617,"Name":"Saran2","PlayerID":848937248,"Points":4356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47617","ServerKey":"pl181","X":407,"Y":308},{"Bonus":0,"Continent":"K66","ID":47618,"Name":"008","PlayerID":849101148,"Points":6036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47618","ServerKey":"pl181","X":647,"Y":647},{"Bonus":0,"Continent":"K33","ID":47619,"Name":"Zaplecze barba 1","PlayerID":699796330,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47619","ServerKey":"pl181","X":377,"Y":332},{"Bonus":0,"Continent":"K55","ID":47620,"Name":"Szlachcic","PlayerID":699759128,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47620","ServerKey":"pl181","X":580,"Y":505},{"Bonus":0,"Continent":"K53","ID":47621,"Name":"Początek","PlayerID":6180190,"Points":5183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47621","ServerKey":"pl181","X":313,"Y":592},{"Bonus":0,"Continent":"K24","ID":47622,"Name":"EEE Barba 1","PlayerID":699796330,"Points":9762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47622","ServerKey":"pl181","X":464,"Y":291},{"Bonus":0,"Continent":"K66","ID":47623,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47623","ServerKey":"pl181","X":650,"Y":656},{"Bonus":0,"Continent":"K43","ID":47624,"Name":"Z18","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47624","ServerKey":"pl181","X":312,"Y":408},{"Bonus":0,"Continent":"K75","ID":47625,"Name":"001 moĆŒe być","PlayerID":6116940,"Points":5528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47625","ServerKey":"pl181","X":529,"Y":716},{"Bonus":0,"Continent":"K66","ID":47626,"Name":"020","PlayerID":2323859,"Points":3114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47626","ServerKey":"pl181","X":655,"Y":644},{"Bonus":0,"Continent":"K24","ID":47627,"Name":"North 020","PlayerID":849064752,"Points":8597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47627","ServerKey":"pl181","X":499,"Y":292},{"Bonus":0,"Continent":"K47","ID":47628,"Name":",,,,","PlayerID":849101881,"Points":4172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47628","ServerKey":"pl181","X":702,"Y":419},{"Bonus":0,"Continent":"K63","ID":47629,"Name":"180","PlayerID":849099876,"Points":8172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47629","ServerKey":"pl181","X":383,"Y":678},{"Bonus":0,"Continent":"K56","ID":47630,"Name":"Wioska 13","PlayerID":849101162,"Points":3632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47630","ServerKey":"pl181","X":692,"Y":594},{"Bonus":0,"Continent":"K74","ID":47631,"Name":"ZZZ","PlayerID":8980651,"Points":3954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47631","ServerKey":"pl181","X":455,"Y":707},{"Bonus":0,"Continent":"K64","ID":47633,"Name":"165","PlayerID":849099876,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47633","ServerKey":"pl181","X":412,"Y":692},{"Bonus":0,"Continent":"K63","ID":47634,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47634","ServerKey":"pl181","X":326,"Y":629},{"Bonus":0,"Continent":"K66","ID":47635,"Name":"048 sebaseba1991","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47635","ServerKey":"pl181","X":616,"Y":684},{"Bonus":0,"Continent":"K57","ID":47636,"Name":"080 Hjubal","PlayerID":2135129,"Points":5181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47636","ServerKey":"pl181","X":709,"Y":506},{"Bonus":0,"Continent":"K63","ID":47637,"Name":"D003","PlayerID":272173,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47637","ServerKey":"pl181","X":348,"Y":646},{"Bonus":0,"Continent":"K65","ID":47638,"Name":"Adamo 4","PlayerID":849096768,"Points":3545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47638","ServerKey":"pl181","X":586,"Y":694},{"Bonus":0,"Continent":"K63","ID":47639,"Name":"Legenda","PlayerID":849097837,"Points":8243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47639","ServerKey":"pl181","X":378,"Y":676},{"Bonus":0,"Continent":"K33","ID":47640,"Name":"AlaKlaudia4","PlayerID":848966521,"Points":2760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47640","ServerKey":"pl181","X":381,"Y":322},{"Bonus":0,"Continent":"K33","ID":47641,"Name":"...","PlayerID":699657450,"Points":4446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47641","ServerKey":"pl181","X":341,"Y":362},{"Bonus":0,"Continent":"K25","ID":47642,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":3664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47642","ServerKey":"pl181","X":553,"Y":297},{"Bonus":0,"Continent":"K33","ID":47644,"Name":"002 JJ","PlayerID":9120206,"Points":4773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47644","ServerKey":"pl181","X":331,"Y":368},{"Bonus":0,"Continent":"K63","ID":47645,"Name":"Taran","PlayerID":6180190,"Points":8547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47645","ServerKey":"pl181","X":321,"Y":613},{"Bonus":0,"Continent":"K33","ID":47646,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47646","ServerKey":"pl181","X":379,"Y":324},{"Bonus":5,"Continent":"K34","ID":47647,"Name":"Osada koczownikĂłw","PlayerID":698231772,"Points":9820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47647","ServerKey":"pl181","X":421,"Y":303},{"Bonus":0,"Continent":"K36","ID":47648,"Name":"Szlachcic/Taran","PlayerID":699759128,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47648","ServerKey":"pl181","X":615,"Y":367},{"Bonus":0,"Continent":"K33","ID":47649,"Name":"Wioska003","PlayerID":699711926,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47649","ServerKey":"pl181","X":346,"Y":348},{"Bonus":0,"Continent":"K57","ID":47650,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47650","ServerKey":"pl181","X":710,"Y":508},{"Bonus":0,"Continent":"K47","ID":47651,"Name":"Inny niĆŒ oni","PlayerID":699785935,"Points":6303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47651","ServerKey":"pl181","X":703,"Y":433},{"Bonus":0,"Continent":"K74","ID":47653,"Name":"Bagno 3","PlayerID":848883684,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47653","ServerKey":"pl181","X":482,"Y":713},{"Bonus":8,"Continent":"K65","ID":47654,"Name":"0585","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47654","ServerKey":"pl181","X":578,"Y":696},{"Bonus":0,"Continent":"K53","ID":47655,"Name":"Pitulice","PlayerID":849095992,"Points":7220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47655","ServerKey":"pl181","X":381,"Y":590},{"Bonus":0,"Continent":"K75","ID":47656,"Name":"#K75 0009","PlayerID":699728159,"Points":5232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47656","ServerKey":"pl181","X":520,"Y":712},{"Bonus":0,"Continent":"K74","ID":47657,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47657","ServerKey":"pl181","X":430,"Y":700},{"Bonus":0,"Continent":"K63","ID":47658,"Name":"Familia Kuzyni","PlayerID":7349282,"Points":2541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47658","ServerKey":"pl181","X":376,"Y":667},{"Bonus":0,"Continent":"K75","ID":47659,"Name":"Wioska barbarzyƄska","PlayerID":849055425,"Points":8551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47659","ServerKey":"pl181","X":569,"Y":704},{"Bonus":0,"Continent":"K36","ID":47660,"Name":"t009","PlayerID":698361257,"Points":8173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47660","ServerKey":"pl181","X":663,"Y":355},{"Bonus":0,"Continent":"K42","ID":47661,"Name":"Avanti!","PlayerID":698625834,"Points":6450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47661","ServerKey":"pl181","X":287,"Y":485},{"Bonus":0,"Continent":"K63","ID":47662,"Name":"C016","PlayerID":699383279,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47662","ServerKey":"pl181","X":371,"Y":670},{"Bonus":0,"Continent":"K66","ID":47663,"Name":"1-OB","PlayerID":1205898,"Points":3251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47663","ServerKey":"pl181","X":688,"Y":611},{"Bonus":0,"Continent":"K66","ID":47664,"Name":"024","PlayerID":2323859,"Points":3049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47664","ServerKey":"pl181","X":663,"Y":640},{"Bonus":0,"Continent":"K47","ID":47666,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":5549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47666","ServerKey":"pl181","X":703,"Y":421},{"Bonus":0,"Continent":"K36","ID":47667,"Name":"07 CHATA","PlayerID":6517826,"Points":3936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47667","ServerKey":"pl181","X":631,"Y":328},{"Bonus":0,"Continent":"K75","ID":47668,"Name":"C005","PlayerID":698599365,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47668","ServerKey":"pl181","X":540,"Y":707},{"Bonus":0,"Continent":"K65","ID":47669,"Name":"Klejnoty","PlayerID":699837483,"Points":2755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47669","ServerKey":"pl181","X":589,"Y":689},{"Bonus":0,"Continent":"K25","ID":47670,"Name":"049 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47670","ServerKey":"pl181","X":544,"Y":288},{"Bonus":0,"Continent":"K42","ID":47671,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47671","ServerKey":"pl181","X":298,"Y":443},{"Bonus":0,"Continent":"K36","ID":47672,"Name":"053- Mroczna Osada","PlayerID":849035905,"Points":4654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47672","ServerKey":"pl181","X":660,"Y":355},{"Bonus":0,"Continent":"K66","ID":47673,"Name":"3. Blaviken","PlayerID":849102573,"Points":5446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47673","ServerKey":"pl181","X":604,"Y":692},{"Bonus":0,"Continent":"K25","ID":47674,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47674","ServerKey":"pl181","X":520,"Y":293},{"Bonus":0,"Continent":"K66","ID":47675,"Name":"#K66 0010","PlayerID":699728159,"Points":6505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47675","ServerKey":"pl181","X":609,"Y":677},{"Bonus":0,"Continent":"K57","ID":47676,"Name":"=116= Hopewell","PlayerID":3781794,"Points":6394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47676","ServerKey":"pl181","X":706,"Y":570},{"Bonus":0,"Continent":"K65","ID":47677,"Name":"###016###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47677","ServerKey":"pl181","X":593,"Y":689},{"Bonus":0,"Continent":"K25","ID":47678,"Name":"Montecalvo","PlayerID":698789253,"Points":3011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47678","ServerKey":"pl181","X":551,"Y":298},{"Bonus":0,"Continent":"K36","ID":47679,"Name":"Na KraƄcu ƚwiata 021","PlayerID":9291984,"Points":4211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47679","ServerKey":"pl181","X":646,"Y":344},{"Bonus":0,"Continent":"K42","ID":47680,"Name":"20 barbarzyƄska...","PlayerID":849018442,"Points":9126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47680","ServerKey":"pl181","X":286,"Y":465},{"Bonus":3,"Continent":"K75","ID":47681,"Name":"020","PlayerID":698996782,"Points":11896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47681","ServerKey":"pl181","X":526,"Y":716},{"Bonus":0,"Continent":"K25","ID":47682,"Name":"XXXX","PlayerID":849054951,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47682","ServerKey":"pl181","X":566,"Y":296},{"Bonus":6,"Continent":"K66","ID":47683,"Name":"Ć»UBEREK 018 .::. Gazun","PlayerID":33900,"Points":8355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47683","ServerKey":"pl181","X":608,"Y":682},{"Bonus":0,"Continent":"K33","ID":47684,"Name":"018. Ortolana","PlayerID":849102092,"Points":6690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47684","ServerKey":"pl181","X":314,"Y":388},{"Bonus":0,"Continent":"K36","ID":47685,"Name":"wioska","PlayerID":9291984,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47685","ServerKey":"pl181","X":638,"Y":332},{"Bonus":0,"Continent":"K57","ID":47686,"Name":"Wioska wioska","PlayerID":17714,"Points":9900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47686","ServerKey":"pl181","X":709,"Y":551},{"Bonus":0,"Continent":"K52","ID":47687,"Name":"Cisza","PlayerID":698769107,"Points":6600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47687","ServerKey":"pl181","X":294,"Y":544},{"Bonus":0,"Continent":"K66","ID":47688,"Name":"###114###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47688","ServerKey":"pl181","X":601,"Y":691},{"Bonus":0,"Continent":"K24","ID":47689,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47689","ServerKey":"pl181","X":496,"Y":285},{"Bonus":0,"Continent":"K25","ID":47690,"Name":"North 016","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47690","ServerKey":"pl181","X":504,"Y":285},{"Bonus":0,"Continent":"K36","ID":47691,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":2669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47691","ServerKey":"pl181","X":664,"Y":372},{"Bonus":0,"Continent":"K42","ID":47692,"Name":"Wioska piwkoo","PlayerID":848977600,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47692","ServerKey":"pl181","X":291,"Y":470},{"Bonus":0,"Continent":"K74","ID":47693,"Name":"Kurnik","PlayerID":699603116,"Points":8670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47693","ServerKey":"pl181","X":468,"Y":709},{"Bonus":3,"Continent":"K46","ID":47694,"Name":"asd","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47694","ServerKey":"pl181","X":685,"Y":404},{"Bonus":0,"Continent":"K63","ID":47695,"Name":"KocioƂ Gromoszczęka","PlayerID":698908184,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47695","ServerKey":"pl181","X":328,"Y":628},{"Bonus":0,"Continent":"K24","ID":47696,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47696","ServerKey":"pl181","X":427,"Y":295},{"Bonus":0,"Continent":"K25","ID":47697,"Name":"North 008","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47697","ServerKey":"pl181","X":504,"Y":284},{"Bonus":0,"Continent":"K56","ID":47698,"Name":"S016","PlayerID":8428196,"Points":4681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47698","ServerKey":"pl181","X":686,"Y":597},{"Bonus":0,"Continent":"K25","ID":47699,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47699","ServerKey":"pl181","X":501,"Y":294},{"Bonus":0,"Continent":"K36","ID":47700,"Name":"Wioska001","PlayerID":698768565,"Points":7421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47700","ServerKey":"pl181","X":685,"Y":385},{"Bonus":0,"Continent":"K34","ID":47702,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47702","ServerKey":"pl181","X":410,"Y":306},{"Bonus":3,"Continent":"K33","ID":47703,"Name":"Zaplecze miedziane","PlayerID":699796330,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47703","ServerKey":"pl181","X":375,"Y":321},{"Bonus":0,"Continent":"K25","ID":47704,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47704","ServerKey":"pl181","X":502,"Y":291},{"Bonus":0,"Continent":"K66","ID":47705,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47705","ServerKey":"pl181","X":654,"Y":646},{"Bonus":0,"Continent":"K34","ID":47706,"Name":"ElMajkelos V","PlayerID":849085160,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47706","ServerKey":"pl181","X":413,"Y":305},{"Bonus":2,"Continent":"K57","ID":47707,"Name":"010","PlayerID":7085502,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47707","ServerKey":"pl181","X":711,"Y":551},{"Bonus":0,"Continent":"K63","ID":47708,"Name":"Wioska Duszkowsky 012","PlayerID":272173,"Points":5297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47708","ServerKey":"pl181","X":355,"Y":656},{"Bonus":0,"Continent":"K43","ID":47709,"Name":"ZZ06","PlayerID":356642,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47709","ServerKey":"pl181","X":308,"Y":408},{"Bonus":0,"Continent":"K42","ID":47710,"Name":"09 Dzięki Motorowiec10 ;)..","PlayerID":849018442,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47710","ServerKey":"pl181","X":296,"Y":448},{"Bonus":0,"Continent":"K56","ID":47711,"Name":"Wioska barbarzyƄska","PlayerID":7528491,"Points":2870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47711","ServerKey":"pl181","X":697,"Y":567},{"Bonus":8,"Continent":"K64","ID":47712,"Name":"004 C","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47712","ServerKey":"pl181","X":401,"Y":694},{"Bonus":0,"Continent":"K46","ID":47713,"Name":"W35","PlayerID":699524362,"Points":1707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47713","ServerKey":"pl181","X":696,"Y":411},{"Bonus":0,"Continent":"K52","ID":47714,"Name":"[0195]","PlayerID":8630972,"Points":7594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47714","ServerKey":"pl181","X":286,"Y":500},{"Bonus":6,"Continent":"K35","ID":47715,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47715","ServerKey":"pl181","X":573,"Y":302},{"Bonus":0,"Continent":"K66","ID":47716,"Name":"Komandos","PlayerID":7976264,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47716","ServerKey":"pl181","X":635,"Y":663},{"Bonus":0,"Continent":"K57","ID":47717,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47717","ServerKey":"pl181","X":702,"Y":559},{"Bonus":0,"Continent":"K42","ID":47718,"Name":"Avanti!","PlayerID":698625834,"Points":6064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47718","ServerKey":"pl181","X":293,"Y":484},{"Bonus":0,"Continent":"K33","ID":47719,"Name":"Zaplecze Barba 016","PlayerID":699796330,"Points":9273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47719","ServerKey":"pl181","X":365,"Y":329},{"Bonus":0,"Continent":"K25","ID":47720,"Name":"088 Wioska barbarzyƄska","PlayerID":699854484,"Points":7965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47720","ServerKey":"pl181","X":546,"Y":291},{"Bonus":0,"Continent":"K63","ID":47721,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47721","ServerKey":"pl181","X":377,"Y":670},{"Bonus":2,"Continent":"K24","ID":47722,"Name":".achim.","PlayerID":6936607,"Points":6774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47722","ServerKey":"pl181","X":474,"Y":288},{"Bonus":0,"Continent":"K52","ID":47723,"Name":"Wyspa 009","PlayerID":225023,"Points":5418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47723","ServerKey":"pl181","X":295,"Y":566},{"Bonus":0,"Continent":"K47","ID":47724,"Name":"Pozamykani w oƛrodkach","PlayerID":699785935,"Points":7062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47724","ServerKey":"pl181","X":711,"Y":457},{"Bonus":0,"Continent":"K36","ID":47725,"Name":"B030","PlayerID":8740199,"Points":6009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47725","ServerKey":"pl181","X":626,"Y":324},{"Bonus":0,"Continent":"K36","ID":47727,"Name":"MJ23","PlayerID":8669398,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47727","ServerKey":"pl181","X":683,"Y":381},{"Bonus":0,"Continent":"K24","ID":47728,"Name":"#0300 LAROX","PlayerID":1238300,"Points":5627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47728","ServerKey":"pl181","X":460,"Y":290},{"Bonus":0,"Continent":"K66","ID":47729,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47729","ServerKey":"pl181","X":648,"Y":656},{"Bonus":0,"Continent":"K63","ID":47730,"Name":"0164","PlayerID":7085510,"Points":3591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47730","ServerKey":"pl181","X":386,"Y":680},{"Bonus":0,"Continent":"K36","ID":47731,"Name":"0076","PlayerID":698416970,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47731","ServerKey":"pl181","X":689,"Y":397},{"Bonus":0,"Continent":"K36","ID":47732,"Name":"Flap","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47732","ServerKey":"pl181","X":608,"Y":315},{"Bonus":0,"Continent":"K65","ID":47733,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":6531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47733","ServerKey":"pl181","X":572,"Y":699},{"Bonus":0,"Continent":"K66","ID":47734,"Name":"*014*","PlayerID":1205898,"Points":7580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47734","ServerKey":"pl181","X":679,"Y":624},{"Bonus":0,"Continent":"K66","ID":47735,"Name":"komandso","PlayerID":7976264,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47735","ServerKey":"pl181","X":636,"Y":664},{"Bonus":0,"Continent":"K63","ID":47736,"Name":"C097","PlayerID":699383279,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47736","ServerKey":"pl181","X":362,"Y":667},{"Bonus":0,"Continent":"K36","ID":47738,"Name":"019","PlayerID":9148043,"Points":4328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47738","ServerKey":"pl181","X":653,"Y":350},{"Bonus":0,"Continent":"K75","ID":47739,"Name":"007","PlayerID":8925624,"Points":1644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47739","ServerKey":"pl181","X":539,"Y":714},{"Bonus":0,"Continent":"K35","ID":47740,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":4589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47740","ServerKey":"pl181","X":572,"Y":303},{"Bonus":0,"Continent":"K63","ID":47742,"Name":"Wioska Sportowiec73","PlayerID":8696132,"Points":3606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47742","ServerKey":"pl181","X":321,"Y":623},{"Bonus":0,"Continent":"K57","ID":47743,"Name":"=118= Wioska barbarzyƄska","PlayerID":3781794,"Points":6206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47743","ServerKey":"pl181","X":701,"Y":568},{"Bonus":0,"Continent":"K66","ID":47744,"Name":"*005*","PlayerID":1205898,"Points":8885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47744","ServerKey":"pl181","X":679,"Y":618},{"Bonus":0,"Continent":"K74","ID":47745,"Name":"001. Good Night","PlayerID":699684062,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47745","ServerKey":"pl181","X":491,"Y":704},{"Bonus":0,"Continent":"K33","ID":47746,"Name":"Wioska barbarzyƄska","PlayerID":699794765,"Points":2258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47746","ServerKey":"pl181","X":317,"Y":383},{"Bonus":0,"Continent":"K36","ID":47747,"Name":"*016","PlayerID":7758085,"Points":7180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47747","ServerKey":"pl181","X":674,"Y":370},{"Bonus":8,"Continent":"K64","ID":47748,"Name":"005","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47748","ServerKey":"pl181","X":403,"Y":688},{"Bonus":0,"Continent":"K36","ID":47749,"Name":"0085","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47749","ServerKey":"pl181","X":611,"Y":346},{"Bonus":0,"Continent":"K63","ID":47750,"Name":"069.","PlayerID":698167138,"Points":2200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47750","ServerKey":"pl181","X":312,"Y":602},{"Bonus":0,"Continent":"K66","ID":47751,"Name":"035","PlayerID":699695167,"Points":3351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47751","ServerKey":"pl181","X":624,"Y":671},{"Bonus":0,"Continent":"K34","ID":47752,"Name":"Saran1","PlayerID":848937248,"Points":4553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47752","ServerKey":"pl181","X":411,"Y":301},{"Bonus":0,"Continent":"K33","ID":47753,"Name":"##2","PlayerID":2800032,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47753","ServerKey":"pl181","X":348,"Y":353},{"Bonus":6,"Continent":"K66","ID":47754,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47754","ServerKey":"pl181","X":660,"Y":645},{"Bonus":0,"Continent":"K36","ID":47755,"Name":"Osterwijk","PlayerID":9103424,"Points":7896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47755","ServerKey":"pl181","X":626,"Y":334},{"Bonus":0,"Continent":"K36","ID":47756,"Name":"wioska","PlayerID":699738350,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47756","ServerKey":"pl181","X":635,"Y":332},{"Bonus":0,"Continent":"K36","ID":47757,"Name":"Wioska barbarzyƄska","PlayerID":849095068,"Points":4902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47757","ServerKey":"pl181","X":679,"Y":383},{"Bonus":0,"Continent":"K42","ID":47758,"Name":"SkalpeR 2","PlayerID":849108007,"Points":3437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47758","ServerKey":"pl181","X":290,"Y":493},{"Bonus":0,"Continent":"K36","ID":47759,"Name":"B026","PlayerID":8740199,"Points":6905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47759","ServerKey":"pl181","X":625,"Y":326},{"Bonus":0,"Continent":"K47","ID":47760,"Name":"C.025","PlayerID":9188016,"Points":4472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47760","ServerKey":"pl181","X":710,"Y":482},{"Bonus":0,"Continent":"K52","ID":47761,"Name":"Wyspa 020","PlayerID":225023,"Points":1999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47761","ServerKey":"pl181","X":297,"Y":572},{"Bonus":6,"Continent":"K63","ID":47762,"Name":"C002","PlayerID":699383279,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47762","ServerKey":"pl181","X":369,"Y":670},{"Bonus":0,"Continent":"K35","ID":47763,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47763","ServerKey":"pl181","X":588,"Y":308},{"Bonus":6,"Continent":"K56","ID":47764,"Name":"S031","PlayerID":8428196,"Points":9106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47764","ServerKey":"pl181","X":689,"Y":598},{"Bonus":0,"Continent":"K75","ID":47765,"Name":"010 maƂa pomyƂka","PlayerID":849093426,"Points":10259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47765","ServerKey":"pl181","X":521,"Y":713},{"Bonus":0,"Continent":"K42","ID":47766,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":8501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47766","ServerKey":"pl181","X":298,"Y":424},{"Bonus":0,"Continent":"K75","ID":47767,"Name":"C012","PlayerID":698599365,"Points":3123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47767","ServerKey":"pl181","X":545,"Y":705},{"Bonus":0,"Continent":"K66","ID":47768,"Name":"001.","PlayerID":699695167,"Points":8223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47768","ServerKey":"pl181","X":626,"Y":670},{"Bonus":5,"Continent":"K63","ID":47769,"Name":"O005","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47769","ServerKey":"pl181","X":338,"Y":638},{"Bonus":0,"Continent":"K63","ID":47771,"Name":"067 - Nowy Początek...","PlayerID":698908184,"Points":7965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47771","ServerKey":"pl181","X":347,"Y":644},{"Bonus":0,"Continent":"K56","ID":47772,"Name":"Wioska KaszczuJ 2","PlayerID":849104356,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47772","ServerKey":"pl181","X":699,"Y":574},{"Bonus":0,"Continent":"K57","ID":47773,"Name":"071","PlayerID":7085502,"Points":7764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47773","ServerKey":"pl181","X":713,"Y":513},{"Bonus":0,"Continent":"K36","ID":47774,"Name":"[179]","PlayerID":8000875,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47774","ServerKey":"pl181","X":677,"Y":387},{"Bonus":0,"Continent":"K35","ID":47775,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47775","ServerKey":"pl181","X":582,"Y":307},{"Bonus":0,"Continent":"K33","ID":47776,"Name":"004","PlayerID":7919620,"Points":2599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47776","ServerKey":"pl181","X":326,"Y":376},{"Bonus":0,"Continent":"K74","ID":47777,"Name":"New World","PlayerID":698152377,"Points":9256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47777","ServerKey":"pl181","X":439,"Y":708},{"Bonus":0,"Continent":"K74","ID":47778,"Name":"029Novigrad","PlayerID":698620694,"Points":9916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47778","ServerKey":"pl181","X":469,"Y":708},{"Bonus":0,"Continent":"K63","ID":47779,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":6220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47779","ServerKey":"pl181","X":313,"Y":608},{"Bonus":0,"Continent":"K74","ID":47780,"Name":"0060 Wioska barbarzyƄska","PlayerID":849037407,"Points":5986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47780","ServerKey":"pl181","X":449,"Y":703},{"Bonus":0,"Continent":"K52","ID":47782,"Name":"Cisza","PlayerID":698769107,"Points":4816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47782","ServerKey":"pl181","X":290,"Y":550},{"Bonus":0,"Continent":"K66","ID":47783,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":2085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47783","ServerKey":"pl181","X":687,"Y":608},{"Bonus":0,"Continent":"K25","ID":47784,"Name":"084 Anchor","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47784","ServerKey":"pl181","X":544,"Y":290},{"Bonus":0,"Continent":"K74","ID":47786,"Name":"004","PlayerID":849101309,"Points":3818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47786","ServerKey":"pl181","X":445,"Y":703},{"Bonus":0,"Continent":"K33","ID":47787,"Name":"CiemnogrĂłd #6","PlayerID":849096958,"Points":7703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47787","ServerKey":"pl181","X":333,"Y":364},{"Bonus":0,"Continent":"K34","ID":47788,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47788","ServerKey":"pl181","X":408,"Y":305},{"Bonus":0,"Continent":"K74","ID":47789,"Name":"Wioska majku 4","PlayerID":363280,"Points":3093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47789","ServerKey":"pl181","X":414,"Y":700},{"Bonus":0,"Continent":"K36","ID":47790,"Name":"Na KraƄcu ƚwiata 003","PlayerID":9291984,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47790","ServerKey":"pl181","X":645,"Y":340},{"Bonus":0,"Continent":"K25","ID":47792,"Name":"D004","PlayerID":699299123,"Points":6017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47792","ServerKey":"pl181","X":562,"Y":294},{"Bonus":3,"Continent":"K24","ID":47793,"Name":"Winterfell.008","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47793","ServerKey":"pl181","X":445,"Y":296},{"Bonus":0,"Continent":"K33","ID":47794,"Name":"Wioska014","PlayerID":699711926,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47794","ServerKey":"pl181","X":346,"Y":347},{"Bonus":0,"Continent":"K52","ID":47796,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47796","ServerKey":"pl181","X":284,"Y":520},{"Bonus":0,"Continent":"K57","ID":47797,"Name":"023. El Toro","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47797","ServerKey":"pl181","X":713,"Y":544},{"Bonus":4,"Continent":"K52","ID":47798,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47798","ServerKey":"pl181","X":290,"Y":517},{"Bonus":0,"Continent":"K63","ID":47799,"Name":"C012","PlayerID":699383279,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47799","ServerKey":"pl181","X":370,"Y":670},{"Bonus":0,"Continent":"K43","ID":47800,"Name":"Asgard","PlayerID":8724192,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47800","ServerKey":"pl181","X":304,"Y":404},{"Bonus":0,"Continent":"K52","ID":47801,"Name":"C0225","PlayerID":8841266,"Points":6854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47801","ServerKey":"pl181","X":291,"Y":549},{"Bonus":0,"Continent":"K25","ID":47802,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47802","ServerKey":"pl181","X":522,"Y":293},{"Bonus":0,"Continent":"K25","ID":47803,"Name":"North 002","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47803","ServerKey":"pl181","X":515,"Y":284},{"Bonus":0,"Continent":"K46","ID":47804,"Name":"Wioska barbarzyƄska","PlayerID":699488108,"Points":5509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47804","ServerKey":"pl181","X":694,"Y":423},{"Bonus":0,"Continent":"K25","ID":47805,"Name":"North 007","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47805","ServerKey":"pl181","X":510,"Y":291},{"Bonus":0,"Continent":"K64","ID":47806,"Name":"xxx","PlayerID":849014922,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47806","ServerKey":"pl181","X":404,"Y":693},{"Bonus":0,"Continent":"K42","ID":47807,"Name":"Maltic","PlayerID":698652171,"Points":1399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47807","ServerKey":"pl181","X":293,"Y":453},{"Bonus":0,"Continent":"K25","ID":47808,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47808","ServerKey":"pl181","X":500,"Y":290},{"Bonus":0,"Continent":"K36","ID":47809,"Name":"Wioska008","PlayerID":698768565,"Points":9288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47809","ServerKey":"pl181","X":691,"Y":395},{"Bonus":0,"Continent":"K63","ID":47810,"Name":"O016","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47810","ServerKey":"pl181","X":338,"Y":635},{"Bonus":0,"Continent":"K75","ID":47811,"Name":"021","PlayerID":698996782,"Points":11157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47811","ServerKey":"pl181","X":524,"Y":711},{"Bonus":0,"Continent":"K46","ID":47812,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47812","ServerKey":"pl181","X":678,"Y":481},{"Bonus":9,"Continent":"K65","ID":47813,"Name":"0040","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47813","ServerKey":"pl181","X":581,"Y":693},{"Bonus":0,"Continent":"K25","ID":47814,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47814","ServerKey":"pl181","X":501,"Y":283},{"Bonus":0,"Continent":"K24","ID":47815,"Name":"Zeta Reticuli OO","PlayerID":699323302,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47815","ServerKey":"pl181","X":471,"Y":286},{"Bonus":0,"Continent":"K74","ID":47816,"Name":"035.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47816","ServerKey":"pl181","X":458,"Y":714},{"Bonus":2,"Continent":"K63","ID":47817,"Name":"0107","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47817","ServerKey":"pl181","X":394,"Y":685},{"Bonus":0,"Continent":"K36","ID":47818,"Name":"!36 65 Arbore","PlayerID":698361257,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47818","ServerKey":"pl181","X":658,"Y":363},{"Bonus":0,"Continent":"K25","ID":47819,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47819","ServerKey":"pl181","X":581,"Y":299},{"Bonus":0,"Continent":"K36","ID":47820,"Name":"!36 66 Plesa","PlayerID":698361257,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47820","ServerKey":"pl181","X":666,"Y":367},{"Bonus":0,"Continent":"K57","ID":47821,"Name":"barbarzyƄskaaaa","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47821","ServerKey":"pl181","X":713,"Y":554},{"Bonus":0,"Continent":"K66","ID":47822,"Name":"a002","PlayerID":3986807,"Points":1459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47822","ServerKey":"pl181","X":681,"Y":608},{"Bonus":0,"Continent":"K66","ID":47823,"Name":"*008*","PlayerID":1205898,"Points":8227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47823","ServerKey":"pl181","X":680,"Y":615},{"Bonus":0,"Continent":"K33","ID":47824,"Name":"K33","PlayerID":699794765,"Points":2693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47824","ServerKey":"pl181","X":317,"Y":384},{"Bonus":0,"Continent":"K63","ID":47825,"Name":"xxx","PlayerID":6180190,"Points":8999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47825","ServerKey":"pl181","X":322,"Y":610},{"Bonus":0,"Continent":"K52","ID":47826,"Name":"Wioska barbarzyƄska","PlayerID":849085605,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47826","ServerKey":"pl181","X":287,"Y":547},{"Bonus":0,"Continent":"K36","ID":47827,"Name":"Flap","PlayerID":699098531,"Points":10692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47827","ServerKey":"pl181","X":604,"Y":313},{"Bonus":0,"Continent":"K33","ID":47828,"Name":"CiemnogrĂłd","PlayerID":849096958,"Points":9939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47828","ServerKey":"pl181","X":333,"Y":363},{"Bonus":0,"Continent":"K75","ID":47829,"Name":"Dobrawa","PlayerID":698723158,"Points":5540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47829","ServerKey":"pl181","X":572,"Y":700},{"Bonus":0,"Continent":"K74","ID":47830,"Name":"Kurnik","PlayerID":699603116,"Points":3965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47830","ServerKey":"pl181","X":456,"Y":707},{"Bonus":0,"Continent":"K24","ID":47831,"Name":"071.Stradi","PlayerID":698365960,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47831","ServerKey":"pl181","X":429,"Y":295},{"Bonus":0,"Continent":"K57","ID":47832,"Name":"019. Elbrus","PlayerID":1601917,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47832","ServerKey":"pl181","X":711,"Y":554},{"Bonus":0,"Continent":"K66","ID":47833,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47833","ServerKey":"pl181","X":657,"Y":645},{"Bonus":8,"Continent":"K63","ID":47834,"Name":"O003","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47834","ServerKey":"pl181","X":338,"Y":633},{"Bonus":0,"Continent":"K52","ID":47835,"Name":"EO EO","PlayerID":699697558,"Points":9251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47835","ServerKey":"pl181","X":293,"Y":515},{"Bonus":0,"Continent":"K33","ID":47836,"Name":"015","PlayerID":7386358,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47836","ServerKey":"pl181","X":325,"Y":381},{"Bonus":0,"Continent":"K34","ID":47837,"Name":"Ob Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47837","ServerKey":"pl181","X":438,"Y":336},{"Bonus":0,"Continent":"K25","ID":47838,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47838","ServerKey":"pl181","X":515,"Y":287},{"Bonus":0,"Continent":"K42","ID":47839,"Name":"Wioska X10","PlayerID":698701911,"Points":1560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47839","ServerKey":"pl181","X":296,"Y":459},{"Bonus":0,"Continent":"K47","ID":47840,"Name":"C13","PlayerID":849093742,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47840","ServerKey":"pl181","X":706,"Y":449},{"Bonus":0,"Continent":"K74","ID":47841,"Name":"003","PlayerID":849101309,"Points":4087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47841","ServerKey":"pl181","X":444,"Y":704},{"Bonus":0,"Continent":"K43","ID":47842,"Name":"Wioska barbarzyƄska","PlayerID":393668,"Points":6055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47842","ServerKey":"pl181","X":336,"Y":435},{"Bonus":0,"Continent":"K64","ID":47843,"Name":"188","PlayerID":849099876,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47843","ServerKey":"pl181","X":416,"Y":692},{"Bonus":0,"Continent":"K75","ID":47844,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47844","ServerKey":"pl181","X":560,"Y":704},{"Bonus":0,"Continent":"K53","ID":47846,"Name":"Elo elo 15","PlayerID":699016994,"Points":4855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47846","ServerKey":"pl181","X":304,"Y":577},{"Bonus":0,"Continent":"K25","ID":47847,"Name":"090 Wioska barbarzyƄska","PlayerID":699854484,"Points":7054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47847","ServerKey":"pl181","X":542,"Y":288},{"Bonus":0,"Continent":"K63","ID":47849,"Name":"Taran","PlayerID":6180190,"Points":7708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47849","ServerKey":"pl181","X":311,"Y":608},{"Bonus":0,"Continent":"K25","ID":47850,"Name":"Brugge","PlayerID":849054951,"Points":9245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47850","ServerKey":"pl181","X":555,"Y":291},{"Bonus":0,"Continent":"K36","ID":47851,"Name":"!36 65 Manastioara","PlayerID":698361257,"Points":6460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47851","ServerKey":"pl181","X":657,"Y":361},{"Bonus":9,"Continent":"K74","ID":47853,"Name":"Wyspa_51","PlayerID":2585846,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47853","ServerKey":"pl181","X":495,"Y":718},{"Bonus":0,"Continent":"K24","ID":47854,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47854","ServerKey":"pl181","X":416,"Y":298},{"Bonus":0,"Continent":"K56","ID":47855,"Name":"czorny","PlayerID":849101814,"Points":1379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47855","ServerKey":"pl181","X":698,"Y":576},{"Bonus":0,"Continent":"K42","ID":47856,"Name":"18 Adamuswielki2..","PlayerID":849018442,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47856","ServerKey":"pl181","X":298,"Y":444},{"Bonus":0,"Continent":"K36","ID":47857,"Name":"*006","PlayerID":7758085,"Points":8864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47857","ServerKey":"pl181","X":668,"Y":368},{"Bonus":0,"Continent":"K52","ID":47858,"Name":"Amsterdam Holandia","PlayerID":698368493,"Points":1816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47858","ServerKey":"pl181","X":290,"Y":513},{"Bonus":0,"Continent":"K25","ID":47859,"Name":"AAA","PlayerID":1006847,"Points":10377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47859","ServerKey":"pl181","X":549,"Y":293},{"Bonus":0,"Continent":"K75","ID":47860,"Name":"C004","PlayerID":698599365,"Points":5563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47860","ServerKey":"pl181","X":539,"Y":706},{"Bonus":0,"Continent":"K66","ID":47861,"Name":"komandos","PlayerID":7976264,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47861","ServerKey":"pl181","X":633,"Y":665},{"Bonus":0,"Continent":"K35","ID":47862,"Name":"Wioska krumlow 14","PlayerID":699098531,"Points":2372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47862","ServerKey":"pl181","X":593,"Y":316},{"Bonus":0,"Continent":"K66","ID":47863,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":9865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47863","ServerKey":"pl181","X":637,"Y":658},{"Bonus":4,"Continent":"K64","ID":47864,"Name":"006","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47864","ServerKey":"pl181","X":401,"Y":690},{"Bonus":0,"Continent":"K74","ID":47865,"Name":"0032","PlayerID":699684062,"Points":4222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47865","ServerKey":"pl181","X":485,"Y":712},{"Bonus":0,"Continent":"K66","ID":47866,"Name":"036.","PlayerID":699695167,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47866","ServerKey":"pl181","X":630,"Y":665},{"Bonus":0,"Continent":"K43","ID":47867,"Name":"001","PlayerID":8259895,"Points":5949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47867","ServerKey":"pl181","X":301,"Y":414},{"Bonus":0,"Continent":"K57","ID":47868,"Name":"026. Forela","PlayerID":1601917,"Points":10244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47868","ServerKey":"pl181","X":712,"Y":532},{"Bonus":0,"Continent":"K33","ID":47869,"Name":"Wiocha V","PlayerID":849106316,"Points":2400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47869","ServerKey":"pl181","X":337,"Y":359},{"Bonus":0,"Continent":"K75","ID":47871,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47871","ServerKey":"pl181","X":553,"Y":711},{"Bonus":0,"Continent":"K65","ID":47872,"Name":"###050###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47872","ServerKey":"pl181","X":593,"Y":687},{"Bonus":0,"Continent":"K63","ID":47873,"Name":"Taran","PlayerID":6180190,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47873","ServerKey":"pl181","X":320,"Y":604},{"Bonus":0,"Continent":"K33","ID":47874,"Name":"001","PlayerID":7386358,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47874","ServerKey":"pl181","X":323,"Y":369},{"Bonus":0,"Continent":"K57","ID":47875,"Name":"Wioska barbarzyƄska","PlayerID":7047342,"Points":10331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47875","ServerKey":"pl181","X":707,"Y":524},{"Bonus":0,"Continent":"K24","ID":47876,"Name":"????","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47876","ServerKey":"pl181","X":476,"Y":291},{"Bonus":0,"Continent":"K36","ID":47877,"Name":"046","PlayerID":698635863,"Points":9375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47877","ServerKey":"pl181","X":674,"Y":382},{"Bonus":9,"Continent":"K74","ID":47878,"Name":"Bagno 1","PlayerID":848883684,"Points":9731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47878","ServerKey":"pl181","X":481,"Y":716},{"Bonus":0,"Continent":"K46","ID":47880,"Name":"Wypijmy zdrowie","PlayerID":699785935,"Points":6064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47880","ServerKey":"pl181","X":690,"Y":406},{"Bonus":0,"Continent":"K65","ID":47882,"Name":"###115###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47882","ServerKey":"pl181","X":585,"Y":691},{"Bonus":0,"Continent":"K24","ID":47883,"Name":"#0279 Don Noobas","PlayerID":1238300,"Points":3893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47883","ServerKey":"pl181","X":465,"Y":293},{"Bonus":0,"Continent":"K66","ID":47884,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47884","ServerKey":"pl181","X":655,"Y":654},{"Bonus":0,"Continent":"K74","ID":47885,"Name":"0074 Wioska barbarzyƄska","PlayerID":849037407,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47885","ServerKey":"pl181","X":445,"Y":704},{"Bonus":0,"Continent":"K63","ID":47886,"Name":"Wioska 0021","PlayerID":9186126,"Points":6794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47886","ServerKey":"pl181","X":351,"Y":651},{"Bonus":0,"Continent":"K63","ID":47887,"Name":"Wioska barbarzyƄska","PlayerID":6821136,"Points":2810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47887","ServerKey":"pl181","X":380,"Y":681},{"Bonus":0,"Continent":"K75","ID":47888,"Name":"Winona","PlayerID":6116940,"Points":5577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47888","ServerKey":"pl181","X":531,"Y":707},{"Bonus":0,"Continent":"K35","ID":47889,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":2855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47889","ServerKey":"pl181","X":592,"Y":307},{"Bonus":0,"Continent":"K65","ID":47890,"Name":"0529","PlayerID":698659980,"Points":9753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47890","ServerKey":"pl181","X":532,"Y":664},{"Bonus":0,"Continent":"K36","ID":47891,"Name":"B009","PlayerID":8740199,"Points":7129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47891","ServerKey":"pl181","X":629,"Y":326},{"Bonus":0,"Continent":"K42","ID":47892,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47892","ServerKey":"pl181","X":289,"Y":450},{"Bonus":0,"Continent":"K42","ID":47893,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47893","ServerKey":"pl181","X":282,"Y":486},{"Bonus":0,"Continent":"K66","ID":47894,"Name":"Wiadro05","PlayerID":8677963,"Points":9444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47894","ServerKey":"pl181","X":674,"Y":626},{"Bonus":0,"Continent":"K36","ID":47895,"Name":"!!!Wioska barbarzyƄska","PlayerID":9291984,"Points":5048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47895","ServerKey":"pl181","X":642,"Y":346},{"Bonus":0,"Continent":"K65","ID":47896,"Name":"NBT J","PlayerID":849047044,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47896","ServerKey":"pl181","X":596,"Y":689},{"Bonus":0,"Continent":"K35","ID":47897,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47897","ServerKey":"pl181","X":571,"Y":302},{"Bonus":7,"Continent":"K24","ID":47898,"Name":"206","PlayerID":698365960,"Points":10557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47898","ServerKey":"pl181","X":427,"Y":298},{"Bonus":0,"Continent":"K52","ID":47899,"Name":"013","PlayerID":849098688,"Points":6424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47899","ServerKey":"pl181","X":290,"Y":541},{"Bonus":7,"Continent":"K47","ID":47900,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":8235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47900","ServerKey":"pl181","X":710,"Y":492},{"Bonus":0,"Continent":"K36","ID":47901,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47901","ServerKey":"pl181","X":655,"Y":357},{"Bonus":0,"Continent":"K33","ID":47902,"Name":"167...K","PlayerID":6920960,"Points":5226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47902","ServerKey":"pl181","X":395,"Y":308},{"Bonus":0,"Continent":"K75","ID":47904,"Name":"#K75 0003","PlayerID":699728159,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47904","ServerKey":"pl181","X":521,"Y":715},{"Bonus":0,"Continent":"K63","ID":47905,"Name":"Wioska 0011","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47905","ServerKey":"pl181","X":346,"Y":653},{"Bonus":0,"Continent":"K53","ID":47906,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47906","ServerKey":"pl181","X":353,"Y":521},{"Bonus":0,"Continent":"K33","ID":47907,"Name":"Zaplecze Barba 011","PlayerID":699796330,"Points":8835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47907","ServerKey":"pl181","X":368,"Y":331},{"Bonus":0,"Continent":"K57","ID":47908,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47908","ServerKey":"pl181","X":709,"Y":547},{"Bonus":0,"Continent":"K42","ID":47909,"Name":"10 Dzięki Lord Lord Dexter ;)..","PlayerID":849018442,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47909","ServerKey":"pl181","X":294,"Y":449},{"Bonus":0,"Continent":"K75","ID":47910,"Name":"#K75 0025","PlayerID":699728159,"Points":5881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47910","ServerKey":"pl181","X":517,"Y":709},{"Bonus":0,"Continent":"K66","ID":47911,"Name":"a-3","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47911","ServerKey":"pl181","X":678,"Y":616},{"Bonus":0,"Continent":"K66","ID":47912,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":9099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47912","ServerKey":"pl181","X":647,"Y":653},{"Bonus":0,"Continent":"K74","ID":47913,"Name":"034|| Ara","PlayerID":849035525,"Points":6516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47913","ServerKey":"pl181","X":459,"Y":710},{"Bonus":0,"Continent":"K33","ID":47914,"Name":"Szlachcic","PlayerID":698388578,"Points":7033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47914","ServerKey":"pl181","X":359,"Y":335},{"Bonus":0,"Continent":"K57","ID":47915,"Name":"Wioska10","PlayerID":699266530,"Points":7130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47915","ServerKey":"pl181","X":705,"Y":576},{"Bonus":0,"Continent":"K25","ID":47916,"Name":"AAA","PlayerID":1006847,"Points":6704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47916","ServerKey":"pl181","X":550,"Y":296},{"Bonus":0,"Continent":"K63","ID":47917,"Name":"C088","PlayerID":699383279,"Points":8397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47917","ServerKey":"pl181","X":362,"Y":663},{"Bonus":0,"Continent":"K65","ID":47918,"Name":"###116###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47918","ServerKey":"pl181","X":583,"Y":696},{"Bonus":0,"Continent":"K66","ID":47919,"Name":"037.","PlayerID":699695167,"Points":3879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47919","ServerKey":"pl181","X":626,"Y":668},{"Bonus":0,"Continent":"K33","ID":47920,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47920","ServerKey":"pl181","X":380,"Y":329},{"Bonus":0,"Continent":"K35","ID":47921,"Name":"XXXX","PlayerID":849054951,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47921","ServerKey":"pl181","X":564,"Y":301},{"Bonus":0,"Continent":"K66","ID":47922,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47922","ServerKey":"pl181","X":661,"Y":647},{"Bonus":0,"Continent":"K47","ID":47923,"Name":"Jan Ost skrajny II","PlayerID":879782,"Points":5834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47923","ServerKey":"pl181","X":709,"Y":440},{"Bonus":0,"Continent":"K47","ID":47924,"Name":"09 Sytuacja","PlayerID":849101845,"Points":9754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47924","ServerKey":"pl181","X":704,"Y":445},{"Bonus":0,"Continent":"K56","ID":47925,"Name":"Wioska 002","PlayerID":7999103,"Points":10061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47925","ServerKey":"pl181","X":694,"Y":595},{"Bonus":0,"Continent":"K25","ID":47926,"Name":"047","PlayerID":849010255,"Points":7114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47926","ServerKey":"pl181","X":509,"Y":283},{"Bonus":0,"Continent":"K42","ID":47927,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47927","ServerKey":"pl181","X":291,"Y":462},{"Bonus":0,"Continent":"K75","ID":47928,"Name":"3.Coventry","PlayerID":698215322,"Points":5534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47928","ServerKey":"pl181","X":548,"Y":714},{"Bonus":0,"Continent":"K52","ID":47929,"Name":"012 Dziekanowice","PlayerID":9235561,"Points":3029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47929","ServerKey":"pl181","X":285,"Y":534},{"Bonus":0,"Continent":"K66","ID":47930,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47930","ServerKey":"pl181","X":670,"Y":625},{"Bonus":0,"Continent":"K63","ID":47931,"Name":"0145","PlayerID":7085510,"Points":4571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47931","ServerKey":"pl181","X":391,"Y":686},{"Bonus":0,"Continent":"K43","ID":47932,"Name":"012","PlayerID":8724192,"Points":1190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47932","ServerKey":"pl181","X":303,"Y":404},{"Bonus":0,"Continent":"K64","ID":47933,"Name":"112","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47933","ServerKey":"pl181","X":408,"Y":699},{"Bonus":0,"Continent":"K52","ID":47934,"Name":"New WorldA","PlayerID":849084005,"Points":5110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47934","ServerKey":"pl181","X":284,"Y":519},{"Bonus":0,"Continent":"K64","ID":47935,"Name":"054","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47935","ServerKey":"pl181","X":406,"Y":695},{"Bonus":0,"Continent":"K64","ID":47936,"Name":"xzc","PlayerID":5997814,"Points":10084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47936","ServerKey":"pl181","X":488,"Y":692},{"Bonus":0,"Continent":"K53","ID":47937,"Name":"Początek","PlayerID":6180190,"Points":6202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47937","ServerKey":"pl181","X":307,"Y":586},{"Bonus":1,"Continent":"K24","ID":47938,"Name":"Wioska barbarzyƄska","PlayerID":699196829,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47938","ServerKey":"pl181","X":474,"Y":283},{"Bonus":0,"Continent":"K43","ID":47939,"Name":"001b","PlayerID":8259895,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47939","ServerKey":"pl181","X":302,"Y":414},{"Bonus":0,"Continent":"K52","ID":47940,"Name":"Cisza","PlayerID":698769107,"Points":5608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47940","ServerKey":"pl181","X":289,"Y":551},{"Bonus":0,"Continent":"K33","ID":47941,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47941","ServerKey":"pl181","X":386,"Y":316},{"Bonus":0,"Continent":"K74","ID":47942,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47942","ServerKey":"pl181","X":462,"Y":715},{"Bonus":0,"Continent":"K24","ID":47943,"Name":"[0122]","PlayerID":8630972,"Points":10021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47943","ServerKey":"pl181","X":439,"Y":299},{"Bonus":0,"Continent":"K53","ID":47944,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":4797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47944","ServerKey":"pl181","X":304,"Y":587},{"Bonus":4,"Continent":"K63","ID":47945,"Name":"C006","PlayerID":699383279,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47945","ServerKey":"pl181","X":372,"Y":674},{"Bonus":0,"Continent":"K36","ID":47946,"Name":"XDX","PlayerID":699098531,"Points":7427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47946","ServerKey":"pl181","X":606,"Y":335},{"Bonus":0,"Continent":"K36","ID":47947,"Name":"XDX","PlayerID":699098531,"Points":10692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47947","ServerKey":"pl181","X":608,"Y":311},{"Bonus":0,"Continent":"K75","ID":47948,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":1582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47948","ServerKey":"pl181","X":508,"Y":716},{"Bonus":0,"Continent":"K47","ID":47949,"Name":"WS 06","PlayerID":699524891,"Points":7013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47949","ServerKey":"pl181","X":703,"Y":437},{"Bonus":0,"Continent":"K42","ID":47950,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47950","ServerKey":"pl181","X":293,"Y":461},{"Bonus":0,"Continent":"K43","ID":47951,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47951","ServerKey":"pl181","X":302,"Y":418},{"Bonus":0,"Continent":"K57","ID":47952,"Name":"Wioska witold2129","PlayerID":699471829,"Points":4734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47952","ServerKey":"pl181","X":700,"Y":574},{"Bonus":0,"Continent":"K74","ID":47953,"Name":"037 Vattweir","PlayerID":699834004,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47953","ServerKey":"pl181","X":472,"Y":712},{"Bonus":0,"Continent":"K33","ID":47954,"Name":"CiemnogrĂłd #7","PlayerID":849096958,"Points":7797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47954","ServerKey":"pl181","X":334,"Y":363},{"Bonus":0,"Continent":"K42","ID":47955,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47955","ServerKey":"pl181","X":299,"Y":438},{"Bonus":0,"Continent":"K57","ID":47956,"Name":"39.Jamurlak","PlayerID":8976313,"Points":5182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47956","ServerKey":"pl181","X":710,"Y":538},{"Bonus":0,"Continent":"K36","ID":47957,"Name":"047","PlayerID":698635863,"Points":8829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47957","ServerKey":"pl181","X":673,"Y":382},{"Bonus":3,"Continent":"K66","ID":47958,"Name":"Ć»UBEREK 001","PlayerID":33900,"Points":10778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47958","ServerKey":"pl181","X":608,"Y":687},{"Bonus":0,"Continent":"K36","ID":47959,"Name":"WooWoo zimą chodzi w sandaƂach","PlayerID":699857387,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47959","ServerKey":"pl181","X":616,"Y":366},{"Bonus":0,"Continent":"K46","ID":47960,"Name":"005","PlayerID":849085371,"Points":4209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47960","ServerKey":"pl181","X":699,"Y":408},{"Bonus":0,"Continent":"K65","ID":47961,"Name":"...","PlayerID":7985956,"Points":8462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47961","ServerKey":"pl181","X":583,"Y":697},{"Bonus":0,"Continent":"K57","ID":47962,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":3652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47962","ServerKey":"pl181","X":705,"Y":561},{"Bonus":0,"Continent":"K47","ID":47963,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":4088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47963","ServerKey":"pl181","X":709,"Y":486},{"Bonus":0,"Continent":"K25","ID":47964,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47964","ServerKey":"pl181","X":518,"Y":288},{"Bonus":0,"Continent":"K47","ID":47965,"Name":"Brama KrĂłlowej","PlayerID":849101378,"Points":8928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47965","ServerKey":"pl181","X":707,"Y":439},{"Bonus":0,"Continent":"K36","ID":47966,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47966","ServerKey":"pl181","X":618,"Y":319},{"Bonus":5,"Continent":"K66","ID":47967,"Name":"komandos","PlayerID":7976264,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47967","ServerKey":"pl181","X":646,"Y":662},{"Bonus":0,"Continent":"K52","ID":47969,"Name":"014","PlayerID":849098688,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47969","ServerKey":"pl181","X":289,"Y":557},{"Bonus":0,"Continent":"K75","ID":47970,"Name":"#K75 0028","PlayerID":699728159,"Points":4483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47970","ServerKey":"pl181","X":513,"Y":712},{"Bonus":0,"Continent":"K75","ID":47971,"Name":"Wioska Jopo32","PlayerID":699733501,"Points":8315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47971","ServerKey":"pl181","X":527,"Y":708},{"Bonus":0,"Continent":"K46","ID":47972,"Name":"Osada 6","PlayerID":8675636,"Points":9560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47972","ServerKey":"pl181","X":698,"Y":426},{"Bonus":4,"Continent":"K42","ID":47973,"Name":"Avanti!","PlayerID":698625834,"Points":9617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47973","ServerKey":"pl181","X":283,"Y":473},{"Bonus":0,"Continent":"K33","ID":47974,"Name":"Szlachcic","PlayerID":698388578,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47974","ServerKey":"pl181","X":362,"Y":336},{"Bonus":0,"Continent":"K57","ID":47975,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47975","ServerKey":"pl181","X":715,"Y":521},{"Bonus":0,"Continent":"K64","ID":47976,"Name":"[006]","PlayerID":698585370,"Points":8851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47976","ServerKey":"pl181","X":460,"Y":633},{"Bonus":0,"Continent":"K65","ID":47977,"Name":"###117###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47977","ServerKey":"pl181","X":594,"Y":694},{"Bonus":0,"Continent":"K24","ID":47978,"Name":"Wioska barbarzyƄska","PlayerID":849054951,"Points":9314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47978","ServerKey":"pl181","X":476,"Y":285},{"Bonus":0,"Continent":"K33","ID":47979,"Name":"...","PlayerID":699657450,"Points":9229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47979","ServerKey":"pl181","X":341,"Y":360},{"Bonus":0,"Continent":"K75","ID":47980,"Name":"023","PlayerID":698996782,"Points":11731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47980","ServerKey":"pl181","X":528,"Y":712},{"Bonus":0,"Continent":"K36","ID":47981,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":8273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47981","ServerKey":"pl181","X":684,"Y":385},{"Bonus":0,"Continent":"K47","ID":47982,"Name":"008 KW","PlayerID":699488108,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47982","ServerKey":"pl181","X":702,"Y":417},{"Bonus":4,"Continent":"K63","ID":47983,"Name":"Taran","PlayerID":6180190,"Points":5189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47983","ServerKey":"pl181","X":323,"Y":619},{"Bonus":0,"Continent":"K47","ID":47984,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":9091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47984","ServerKey":"pl181","X":703,"Y":429},{"Bonus":0,"Continent":"K52","ID":47985,"Name":"New WorldA","PlayerID":849084005,"Points":4171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47985","ServerKey":"pl181","X":285,"Y":525},{"Bonus":0,"Continent":"K24","ID":47986,"Name":"????","PlayerID":698489071,"Points":5273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47986","ServerKey":"pl181","X":470,"Y":294},{"Bonus":0,"Continent":"K34","ID":47987,"Name":"063.Stradi","PlayerID":698365960,"Points":10180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47987","ServerKey":"pl181","X":433,"Y":300},{"Bonus":0,"Continent":"K47","ID":47988,"Name":"20 Dwie dychy","PlayerID":849101845,"Points":4777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47988","ServerKey":"pl181","X":711,"Y":446},{"Bonus":0,"Continent":"K25","ID":47989,"Name":"Wioska B","PlayerID":1867161,"Points":4753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47989","ServerKey":"pl181","X":540,"Y":295},{"Bonus":0,"Continent":"K57","ID":47990,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":8006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47990","ServerKey":"pl181","X":709,"Y":505},{"Bonus":1,"Continent":"K36","ID":47991,"Name":"004 Abinghton","PlayerID":699098531,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47991","ServerKey":"pl181","X":619,"Y":320},{"Bonus":0,"Continent":"K74","ID":47992,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47992","ServerKey":"pl181","X":487,"Y":715},{"Bonus":0,"Continent":"K33","ID":47993,"Name":"...","PlayerID":699657450,"Points":6264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47993","ServerKey":"pl181","X":339,"Y":361},{"Bonus":0,"Continent":"K63","ID":47994,"Name":"Wioska maks","PlayerID":699269923,"Points":9110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47994","ServerKey":"pl181","X":374,"Y":667},{"Bonus":0,"Continent":"K66","ID":47995,"Name":"*007*","PlayerID":1205898,"Points":8336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47995","ServerKey":"pl181","X":683,"Y":617},{"Bonus":0,"Continent":"K66","ID":47996,"Name":"038.","PlayerID":699695167,"Points":3253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47996","ServerKey":"pl181","X":631,"Y":673},{"Bonus":0,"Continent":"K64","ID":47997,"Name":"142","PlayerID":849099876,"Points":6901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47997","ServerKey":"pl181","X":402,"Y":687},{"Bonus":0,"Continent":"K66","ID":47998,"Name":"033","PlayerID":2323859,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47998","ServerKey":"pl181","X":659,"Y":637},{"Bonus":0,"Continent":"K36","ID":47999,"Name":"[202]","PlayerID":8000875,"Points":6775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=47999","ServerKey":"pl181","X":678,"Y":387},{"Bonus":0,"Continent":"K42","ID":48000,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48000","ServerKey":"pl181","X":289,"Y":443},{"Bonus":0,"Continent":"K25","ID":48001,"Name":"Maribor","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48001","ServerKey":"pl181","X":556,"Y":294},{"Bonus":0,"Continent":"K53","ID":48002,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":2224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48002","ServerKey":"pl181","X":305,"Y":597},{"Bonus":0,"Continent":"K52","ID":48004,"Name":"C0238","PlayerID":8841266,"Points":8554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48004","ServerKey":"pl181","X":290,"Y":548},{"Bonus":0,"Continent":"K43","ID":48005,"Name":"WB08","PlayerID":356642,"Points":4745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48005","ServerKey":"pl181","X":307,"Y":403},{"Bonus":0,"Continent":"K63","ID":48006,"Name":"Las Palmas","PlayerID":7085510,"Points":6202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48006","ServerKey":"pl181","X":379,"Y":681},{"Bonus":0,"Continent":"K34","ID":48008,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48008","ServerKey":"pl181","X":403,"Y":308},{"Bonus":0,"Continent":"K34","ID":48009,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":5061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48009","ServerKey":"pl181","X":450,"Y":385},{"Bonus":0,"Continent":"K52","ID":48010,"Name":"Cisza","PlayerID":698769107,"Points":7058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48010","ServerKey":"pl181","X":289,"Y":554},{"Bonus":0,"Continent":"K63","ID":48011,"Name":"005 xd elo","PlayerID":6180190,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48011","ServerKey":"pl181","X":309,"Y":606},{"Bonus":0,"Continent":"K42","ID":48012,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48012","ServerKey":"pl181","X":288,"Y":455},{"Bonus":9,"Continent":"K24","ID":48013,"Name":"0011 Węgorzewo","PlayerID":849096882,"Points":5265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48013","ServerKey":"pl181","X":462,"Y":284},{"Bonus":0,"Continent":"K66","ID":48014,"Name":"002 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48014","ServerKey":"pl181","X":630,"Y":668},{"Bonus":0,"Continent":"K35","ID":48015,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48015","ServerKey":"pl181","X":579,"Y":301},{"Bonus":0,"Continent":"K42","ID":48016,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48016","ServerKey":"pl181","X":291,"Y":456},{"Bonus":0,"Continent":"K52","ID":48017,"Name":"Orion","PlayerID":849101647,"Points":5792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48017","ServerKey":"pl181","X":284,"Y":516},{"Bonus":0,"Continent":"K33","ID":48018,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":2127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48018","ServerKey":"pl181","X":327,"Y":375},{"Bonus":0,"Continent":"K52","ID":48019,"Name":"Wyspa 018","PlayerID":225023,"Points":5877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48019","ServerKey":"pl181","X":298,"Y":569},{"Bonus":0,"Continent":"K75","ID":48020,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":6487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48020","ServerKey":"pl181","X":508,"Y":718},{"Bonus":0,"Continent":"K24","ID":48021,"Name":".achim.","PlayerID":6936607,"Points":9315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48021","ServerKey":"pl181","X":482,"Y":289},{"Bonus":0,"Continent":"K66","ID":48022,"Name":"039.","PlayerID":699695167,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48022","ServerKey":"pl181","X":627,"Y":670},{"Bonus":0,"Continent":"K66","ID":48023,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48023","ServerKey":"pl181","X":638,"Y":660},{"Bonus":0,"Continent":"K66","ID":48024,"Name":"Bessa 007","PlayerID":848987051,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48024","ServerKey":"pl181","X":639,"Y":658},{"Bonus":0,"Continent":"K74","ID":48025,"Name":"Kurnik","PlayerID":699603116,"Points":1322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48025","ServerKey":"pl181","X":442,"Y":710},{"Bonus":0,"Continent":"K47","ID":48026,"Name":"C.041","PlayerID":9188016,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48026","ServerKey":"pl181","X":711,"Y":475},{"Bonus":9,"Continent":"K66","ID":48027,"Name":"###015###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48027","ServerKey":"pl181","X":607,"Y":690},{"Bonus":0,"Continent":"K33","ID":48028,"Name":"Szlachcic","PlayerID":698388578,"Points":4417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48028","ServerKey":"pl181","X":360,"Y":334},{"Bonus":0,"Continent":"K25","ID":48029,"Name":"G005","PlayerID":699208929,"Points":9743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48029","ServerKey":"pl181","X":511,"Y":290},{"Bonus":0,"Continent":"K65","ID":48030,"Name":"S009","PlayerID":8627359,"Points":7468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48030","ServerKey":"pl181","X":596,"Y":687},{"Bonus":0,"Continent":"K75","ID":48031,"Name":"002 potrzeby?","PlayerID":6116940,"Points":6871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48031","ServerKey":"pl181","X":534,"Y":710},{"Bonus":0,"Continent":"K54","ID":48032,"Name":"NOT?","PlayerID":9236866,"Points":1832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48032","ServerKey":"pl181","X":434,"Y":545},{"Bonus":0,"Continent":"K63","ID":48033,"Name":"Taran","PlayerID":6180190,"Points":8548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48033","ServerKey":"pl181","X":323,"Y":617},{"Bonus":0,"Continent":"K57","ID":48034,"Name":"044. Jaworowy","PlayerID":1601917,"Points":8408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48034","ServerKey":"pl181","X":711,"Y":542},{"Bonus":2,"Continent":"K47","ID":48035,"Name":"015","PlayerID":849091105,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48035","ServerKey":"pl181","X":718,"Y":497},{"Bonus":0,"Continent":"K36","ID":48036,"Name":"047","PlayerID":9148043,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48036","ServerKey":"pl181","X":663,"Y":358},{"Bonus":0,"Continent":"K42","ID":48037,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48037","ServerKey":"pl181","X":291,"Y":452},{"Bonus":0,"Continent":"K63","ID":48038,"Name":"Parque de Santa Catalina","PlayerID":7085510,"Points":2643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48038","ServerKey":"pl181","X":376,"Y":678},{"Bonus":0,"Continent":"K74","ID":48039,"Name":"030# Karla","PlayerID":3933666,"Points":2468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48039","ServerKey":"pl181","X":448,"Y":706},{"Bonus":0,"Continent":"K35","ID":48041,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48041","ServerKey":"pl181","X":583,"Y":302},{"Bonus":0,"Continent":"K63","ID":48042,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48042","ServerKey":"pl181","X":365,"Y":671},{"Bonus":0,"Continent":"K43","ID":48043,"Name":"ZZ05","PlayerID":356642,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48043","ServerKey":"pl181","X":310,"Y":408},{"Bonus":0,"Continent":"K57","ID":48044,"Name":"TWIERDZA .:076:.","PlayerID":7154207,"Points":6021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48044","ServerKey":"pl181","X":703,"Y":574},{"Bonus":0,"Continent":"K53","ID":48045,"Name":"1. basket","PlayerID":6180190,"Points":4200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48045","ServerKey":"pl181","X":310,"Y":594},{"Bonus":0,"Continent":"K52","ID":48047,"Name":"New WorldA","PlayerID":849084005,"Points":6360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48047","ServerKey":"pl181","X":290,"Y":523},{"Bonus":0,"Continent":"K74","ID":48048,"Name":"Nabatene","PlayerID":849089459,"Points":8365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48048","ServerKey":"pl181","X":458,"Y":711},{"Bonus":0,"Continent":"K36","ID":48049,"Name":"XDX","PlayerID":699098531,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48049","ServerKey":"pl181","X":607,"Y":314},{"Bonus":0,"Continent":"K52","ID":48050,"Name":"Początek","PlayerID":7842579,"Points":3816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48050","ServerKey":"pl181","X":299,"Y":577},{"Bonus":0,"Continent":"K64","ID":48051,"Name":"186","PlayerID":849099876,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48051","ServerKey":"pl181","X":415,"Y":690},{"Bonus":0,"Continent":"K53","ID":48052,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48052","ServerKey":"pl181","X":305,"Y":599},{"Bonus":0,"Continent":"K33","ID":48055,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48055","ServerKey":"pl181","X":372,"Y":325},{"Bonus":0,"Continent":"K63","ID":48057,"Name":"173","PlayerID":849099876,"Points":7434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48057","ServerKey":"pl181","X":380,"Y":677},{"Bonus":0,"Continent":"K66","ID":48058,"Name":"DĆŒejdĆŒej 6","PlayerID":849098326,"Points":1388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48058","ServerKey":"pl181","X":669,"Y":637},{"Bonus":0,"Continent":"K36","ID":48059,"Name":"wioska","PlayerID":849102068,"Points":3835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48059","ServerKey":"pl181","X":637,"Y":338},{"Bonus":0,"Continent":"K63","ID":48061,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":6656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48061","ServerKey":"pl181","X":385,"Y":675},{"Bonus":0,"Continent":"K24","ID":48062,"Name":"099.Stradi","PlayerID":698365960,"Points":9083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48062","ServerKey":"pl181","X":439,"Y":292},{"Bonus":0,"Continent":"K25","ID":48063,"Name":"037","PlayerID":849010255,"Points":6440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48063","ServerKey":"pl181","X":510,"Y":289},{"Bonus":0,"Continent":"K66","ID":48064,"Name":"036","PlayerID":2323859,"Points":3601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48064","ServerKey":"pl181","X":665,"Y":637},{"Bonus":0,"Continent":"K36","ID":48065,"Name":"020","PlayerID":9148043,"Points":5435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48065","ServerKey":"pl181","X":648,"Y":351},{"Bonus":0,"Continent":"K33","ID":48067,"Name":"002","PlayerID":849101205,"Points":8890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48067","ServerKey":"pl181","X":349,"Y":348},{"Bonus":0,"Continent":"K75","ID":48068,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48068","ServerKey":"pl181","X":557,"Y":711},{"Bonus":0,"Continent":"K33","ID":48069,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":2290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48069","ServerKey":"pl181","X":328,"Y":380},{"Bonus":0,"Continent":"K34","ID":48070,"Name":"cc 091d","PlayerID":3909522,"Points":7054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48070","ServerKey":"pl181","X":410,"Y":373},{"Bonus":0,"Continent":"K74","ID":48071,"Name":"036.","PlayerID":849034882,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48071","ServerKey":"pl181","X":454,"Y":711},{"Bonus":0,"Continent":"K33","ID":48072,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":3697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48072","ServerKey":"pl181","X":332,"Y":373},{"Bonus":0,"Continent":"K33","ID":48073,"Name":"4_Franekkimono510_4","PlayerID":849099422,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48073","ServerKey":"pl181","X":369,"Y":325},{"Bonus":0,"Continent":"K66","ID":48074,"Name":"004","PlayerID":3589487,"Points":5127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48074","ServerKey":"pl181","X":683,"Y":609},{"Bonus":0,"Continent":"K57","ID":48075,"Name":"10. Vindobona","PlayerID":848946700,"Points":10479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48075","ServerKey":"pl181","X":711,"Y":539},{"Bonus":0,"Continent":"K24","ID":48076,"Name":"????","PlayerID":698489071,"Points":7595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48076","ServerKey":"pl181","X":472,"Y":292},{"Bonus":0,"Continent":"K63","ID":48078,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48078","ServerKey":"pl181","X":323,"Y":629},{"Bonus":0,"Continent":"K25","ID":48079,"Name":"--024--","PlayerID":542253,"Points":6128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48079","ServerKey":"pl181","X":572,"Y":296},{"Bonus":8,"Continent":"K24","ID":48080,"Name":"#0024 barbarzyƄska","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48080","ServerKey":"pl181","X":489,"Y":287},{"Bonus":0,"Continent":"K33","ID":48081,"Name":"015. Pollo alla cacciatore","PlayerID":849102092,"Points":9782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48081","ServerKey":"pl181","X":329,"Y":367},{"Bonus":0,"Continent":"K66","ID":48082,"Name":"Podbitek 4","PlayerID":849101652,"Points":3453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48082","ServerKey":"pl181","X":689,"Y":606},{"Bonus":0,"Continent":"K25","ID":48083,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48083","ServerKey":"pl181","X":557,"Y":290},{"Bonus":0,"Continent":"K36","ID":48084,"Name":"005","PlayerID":699117992,"Points":6694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48084","ServerKey":"pl181","X":611,"Y":311},{"Bonus":0,"Continent":"K63","ID":48086,"Name":"775","PlayerID":698908184,"Points":7143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48086","ServerKey":"pl181","X":345,"Y":642},{"Bonus":0,"Continent":"K24","ID":48087,"Name":"044KP","PlayerID":849063849,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48087","ServerKey":"pl181","X":486,"Y":289},{"Bonus":0,"Continent":"K46","ID":48088,"Name":"Ostatnia Noc","PlayerID":699785935,"Points":7001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48088","ServerKey":"pl181","X":696,"Y":425},{"Bonus":0,"Continent":"K57","ID":48089,"Name":"=085= Plymouth","PlayerID":3781794,"Points":6914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48089","ServerKey":"pl181","X":700,"Y":567},{"Bonus":0,"Continent":"K33","ID":48090,"Name":"Wioska006","PlayerID":699711926,"Points":9239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48090","ServerKey":"pl181","X":344,"Y":349},{"Bonus":0,"Continent":"K63","ID":48091,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48091","ServerKey":"pl181","X":375,"Y":672},{"Bonus":0,"Continent":"K35","ID":48092,"Name":"XDX","PlayerID":699098531,"Points":6099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48092","ServerKey":"pl181","X":595,"Y":309},{"Bonus":0,"Continent":"K42","ID":48093,"Name":"Avanti!","PlayerID":698625834,"Points":6886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48093","ServerKey":"pl181","X":282,"Y":491},{"Bonus":0,"Continent":"K43","ID":48094,"Name":"Bolonia","PlayerID":699852080,"Points":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48094","ServerKey":"pl181","X":302,"Y":425},{"Bonus":0,"Continent":"K24","ID":48095,"Name":"#0296 LAROX","PlayerID":1238300,"Points":7545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48095","ServerKey":"pl181","X":461,"Y":291},{"Bonus":0,"Continent":"K63","ID":48096,"Name":"0141","PlayerID":7085510,"Points":5077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48096","ServerKey":"pl181","X":390,"Y":679},{"Bonus":0,"Continent":"K46","ID":48097,"Name":"W36","PlayerID":699524362,"Points":3235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48097","ServerKey":"pl181","X":694,"Y":413},{"Bonus":0,"Continent":"K66","ID":48098,"Name":"DĆŒejdĆŒej 3","PlayerID":849098326,"Points":8833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48098","ServerKey":"pl181","X":668,"Y":634},{"Bonus":0,"Continent":"K66","ID":48099,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48099","ServerKey":"pl181","X":658,"Y":651},{"Bonus":0,"Continent":"K52","ID":48100,"Name":"[0250]","PlayerID":8630972,"Points":5939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48100","ServerKey":"pl181","X":283,"Y":508},{"Bonus":0,"Continent":"K57","ID":48101,"Name":"Jan III Sobieski","PlayerID":8418489,"Points":3558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48101","ServerKey":"pl181","X":713,"Y":502},{"Bonus":0,"Continent":"K75","ID":48102,"Name":"039. Pig","PlayerID":848928624,"Points":4206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48102","ServerKey":"pl181","X":509,"Y":716},{"Bonus":0,"Continent":"K42","ID":48103,"Name":"Wielka Lechia","PlayerID":848970357,"Points":4103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48103","ServerKey":"pl181","X":294,"Y":439},{"Bonus":0,"Continent":"K75","ID":48104,"Name":"Wioska barbarzyƄska 2x3","PlayerID":849055425,"Points":8992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48104","ServerKey":"pl181","X":570,"Y":702},{"Bonus":0,"Continent":"K42","ID":48105,"Name":"Avanti!","PlayerID":698625834,"Points":6417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48105","ServerKey":"pl181","X":285,"Y":492},{"Bonus":0,"Continent":"K52","ID":48106,"Name":"New World 1","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48106","ServerKey":"pl181","X":289,"Y":523},{"Bonus":2,"Continent":"K36","ID":48107,"Name":"Wioska011","PlayerID":698768565,"Points":7085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48107","ServerKey":"pl181","X":689,"Y":399},{"Bonus":0,"Continent":"K52","ID":48108,"Name":"New WorldA","PlayerID":849084005,"Points":4597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48108","ServerKey":"pl181","X":284,"Y":523},{"Bonus":0,"Continent":"K25","ID":48109,"Name":"34. Szalom","PlayerID":849054951,"Points":7627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48109","ServerKey":"pl181","X":558,"Y":289},{"Bonus":0,"Continent":"K74","ID":48111,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48111","ServerKey":"pl181","X":428,"Y":706},{"Bonus":7,"Continent":"K52","ID":48112,"Name":"Na SsSskraju","PlayerID":1536625,"Points":6896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48112","ServerKey":"pl181","X":298,"Y":556},{"Bonus":0,"Continent":"K63","ID":48113,"Name":"O079","PlayerID":272173,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48113","ServerKey":"pl181","X":335,"Y":637},{"Bonus":0,"Continent":"K53","ID":48114,"Name":"3. Syrax","PlayerID":849089499,"Points":4485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48114","ServerKey":"pl181","X":301,"Y":583},{"Bonus":0,"Continent":"K63","ID":48115,"Name":"C047","PlayerID":699383279,"Points":8660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48115","ServerKey":"pl181","X":369,"Y":671},{"Bonus":0,"Continent":"K25","ID":48116,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48116","ServerKey":"pl181","X":534,"Y":292},{"Bonus":0,"Continent":"K63","ID":48117,"Name":"O131","PlayerID":272173,"Points":8069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48117","ServerKey":"pl181","X":319,"Y":622},{"Bonus":0,"Continent":"K36","ID":48118,"Name":"013","PlayerID":699117992,"Points":2071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48118","ServerKey":"pl181","X":615,"Y":314},{"Bonus":0,"Continent":"K34","ID":48119,"Name":"Ultimate Farming Simulator 2","PlayerID":699872032,"Points":9534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48119","ServerKey":"pl181","X":417,"Y":304},{"Bonus":0,"Continent":"K34","ID":48120,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48120","ServerKey":"pl181","X":406,"Y":306},{"Bonus":0,"Continent":"K52","ID":48121,"Name":"028","PlayerID":849098688,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48121","ServerKey":"pl181","X":296,"Y":567},{"Bonus":0,"Continent":"K56","ID":48122,"Name":"Wioska 008","PlayerID":7999103,"Points":6968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48122","ServerKey":"pl181","X":693,"Y":596},{"Bonus":0,"Continent":"K63","ID":48123,"Name":"O064","PlayerID":272173,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48123","ServerKey":"pl181","X":332,"Y":633},{"Bonus":0,"Continent":"K47","ID":48124,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":8723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48124","ServerKey":"pl181","X":703,"Y":428},{"Bonus":0,"Continent":"K47","ID":48125,"Name":"121","PlayerID":849088515,"Points":6216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48125","ServerKey":"pl181","X":701,"Y":445},{"Bonus":0,"Continent":"K52","ID":48126,"Name":"New WorldA","PlayerID":849084005,"Points":6749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48126","ServerKey":"pl181","X":291,"Y":544},{"Bonus":0,"Continent":"K25","ID":48127,"Name":".achim.","PlayerID":6936607,"Points":6759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48127","ServerKey":"pl181","X":563,"Y":290},{"Bonus":0,"Continent":"K36","ID":48129,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48129","ServerKey":"pl181","X":616,"Y":320},{"Bonus":9,"Continent":"K42","ID":48130,"Name":"Senne","PlayerID":848981726,"Points":6457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48130","ServerKey":"pl181","X":286,"Y":457},{"Bonus":0,"Continent":"K42","ID":48131,"Name":"Avanti!","PlayerID":698625834,"Points":7056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48131","ServerKey":"pl181","X":283,"Y":490},{"Bonus":0,"Continent":"K42","ID":48132,"Name":"Avanti!","PlayerID":698625834,"Points":7016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48132","ServerKey":"pl181","X":287,"Y":475},{"Bonus":0,"Continent":"K47","ID":48133,"Name":"Mamy sporo za sobą","PlayerID":699785935,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48133","ServerKey":"pl181","X":701,"Y":421},{"Bonus":0,"Continent":"K33","ID":48134,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":9928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48134","ServerKey":"pl181","X":358,"Y":341},{"Bonus":0,"Continent":"K24","ID":48136,"Name":"Wioska barbarzyƄska","PlayerID":849102150,"Points":2857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48136","ServerKey":"pl181","X":419,"Y":298},{"Bonus":8,"Continent":"K33","ID":48137,"Name":"Osada koczownikĂłw","PlayerID":699660539,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48137","ServerKey":"pl181","X":383,"Y":325},{"Bonus":0,"Continent":"K74","ID":48138,"Name":"016 - Budowanko!","PlayerID":7540891,"Points":7403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48138","ServerKey":"pl181","X":485,"Y":714},{"Bonus":0,"Continent":"K34","ID":48139,"Name":"Saran4","PlayerID":848937248,"Points":3760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48139","ServerKey":"pl181","X":412,"Y":302},{"Bonus":0,"Continent":"K33","ID":48140,"Name":"New Land 28","PlayerID":849064752,"Points":3094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48140","ServerKey":"pl181","X":330,"Y":375},{"Bonus":0,"Continent":"K52","ID":48141,"Name":"Holandia100","PlayerID":698368493,"Points":3098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48141","ServerKey":"pl181","X":289,"Y":512},{"Bonus":0,"Continent":"K24","ID":48142,"Name":"[0161]","PlayerID":8630972,"Points":8687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48142","ServerKey":"pl181","X":450,"Y":295},{"Bonus":0,"Continent":"K24","ID":48143,"Name":".achim.","PlayerID":6936607,"Points":3561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48143","ServerKey":"pl181","X":477,"Y":282},{"Bonus":0,"Continent":"K53","ID":48145,"Name":"Kolonia 03","PlayerID":6180190,"Points":8447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48145","ServerKey":"pl181","X":304,"Y":593},{"Bonus":0,"Continent":"K66","ID":48147,"Name":"006 Wioska barbarzyƄska","PlayerID":699346280,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48147","ServerKey":"pl181","X":603,"Y":686},{"Bonus":0,"Continent":"K57","ID":48148,"Name":"Wioska2.","PlayerID":699266530,"Points":9525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48148","ServerKey":"pl181","X":705,"Y":577},{"Bonus":8,"Continent":"K74","ID":48149,"Name":"[B]001","PlayerID":9195661,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48149","ServerKey":"pl181","X":417,"Y":702},{"Bonus":0,"Continent":"K66","ID":48152,"Name":"Klatka5","PlayerID":6528152,"Points":3074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48152","ServerKey":"pl181","X":623,"Y":680},{"Bonus":0,"Continent":"K74","ID":48153,"Name":"023Nowy Rok","PlayerID":698620694,"Points":8058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48153","ServerKey":"pl181","X":474,"Y":707},{"Bonus":0,"Continent":"K24","ID":48154,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48154","ServerKey":"pl181","X":493,"Y":284},{"Bonus":0,"Continent":"K75","ID":48155,"Name":"005","PlayerID":698996782,"Points":6857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48155","ServerKey":"pl181","X":531,"Y":715},{"Bonus":0,"Continent":"K33","ID":48156,"Name":"...","PlayerID":699657450,"Points":5649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48156","ServerKey":"pl181","X":340,"Y":355},{"Bonus":0,"Continent":"K43","ID":48157,"Name":"ZZ16","PlayerID":356642,"Points":8363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48157","ServerKey":"pl181","X":307,"Y":411},{"Bonus":0,"Continent":"K43","ID":48158,"Name":"Wioska GƂaz","PlayerID":848917401,"Points":1083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48158","ServerKey":"pl181","X":386,"Y":425},{"Bonus":0,"Continent":"K57","ID":48159,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48159","ServerKey":"pl181","X":705,"Y":548},{"Bonus":0,"Continent":"K34","ID":48160,"Name":"068.Stradi","PlayerID":698365960,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48160","ServerKey":"pl181","X":431,"Y":302},{"Bonus":0,"Continent":"K42","ID":48161,"Name":"Avanti!","PlayerID":698625834,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48161","ServerKey":"pl181","X":285,"Y":487},{"Bonus":0,"Continent":"K36","ID":48162,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48162","ServerKey":"pl181","X":647,"Y":344},{"Bonus":0,"Continent":"K66","ID":48163,"Name":"bbb","PlayerID":3986807,"Points":1404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48163","ServerKey":"pl181","X":682,"Y":610},{"Bonus":0,"Continent":"K24","ID":48164,"Name":".achim.","PlayerID":6936607,"Points":8515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48164","ServerKey":"pl181","X":481,"Y":286},{"Bonus":0,"Continent":"K56","ID":48165,"Name":"EE 004","PlayerID":849100149,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48165","ServerKey":"pl181","X":693,"Y":581},{"Bonus":0,"Continent":"K63","ID":48166,"Name":"HOLENDER 5","PlayerID":698908184,"Points":5122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48166","ServerKey":"pl181","X":322,"Y":627},{"Bonus":0,"Continent":"K33","ID":48167,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48167","ServerKey":"pl181","X":335,"Y":369},{"Bonus":0,"Continent":"K63","ID":48168,"Name":"BorysĂłwka maƂa","PlayerID":698167138,"Points":4208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48168","ServerKey":"pl181","X":305,"Y":601},{"Bonus":1,"Continent":"K52","ID":48169,"Name":"TƂokowo kolonia","PlayerID":849100877,"Points":8365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48169","ServerKey":"pl181","X":285,"Y":501},{"Bonus":0,"Continent":"K74","ID":48170,"Name":"R 037","PlayerID":699195358,"Points":6991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48170","ServerKey":"pl181","X":496,"Y":712},{"Bonus":0,"Continent":"K75","ID":48171,"Name":"York","PlayerID":849055425,"Points":7359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48171","ServerKey":"pl181","X":567,"Y":707},{"Bonus":0,"Continent":"K35","ID":48172,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48172","ServerKey":"pl181","X":586,"Y":300},{"Bonus":0,"Continent":"K42","ID":48173,"Name":"Barba","PlayerID":848977600,"Points":8788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48173","ServerKey":"pl181","X":289,"Y":471},{"Bonus":0,"Continent":"K65","ID":48174,"Name":"Adamo3","PlayerID":849096768,"Points":8645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48174","ServerKey":"pl181","X":585,"Y":696},{"Bonus":0,"Continent":"K65","ID":48176,"Name":"NBT D","PlayerID":849047044,"Points":9238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48176","ServerKey":"pl181","X":594,"Y":691},{"Bonus":3,"Continent":"K47","ID":48177,"Name":"023","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48177","ServerKey":"pl181","X":714,"Y":473},{"Bonus":0,"Continent":"K75","ID":48178,"Name":"C014","PlayerID":698599365,"Points":9767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48178","ServerKey":"pl181","X":543,"Y":706},{"Bonus":4,"Continent":"K75","ID":48179,"Name":"Beteo","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48179","ServerKey":"pl181","X":553,"Y":705},{"Bonus":0,"Continent":"K36","ID":48180,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48180","ServerKey":"pl181","X":616,"Y":387},{"Bonus":0,"Continent":"K66","ID":48181,"Name":"*006*","PlayerID":1205898,"Points":8154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48181","ServerKey":"pl181","X":685,"Y":617},{"Bonus":1,"Continent":"K52","ID":48182,"Name":"New WorldA","PlayerID":849084005,"Points":3056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48182","ServerKey":"pl181","X":286,"Y":508},{"Bonus":0,"Continent":"K25","ID":48183,"Name":"075 Wioska barbarzyƄska","PlayerID":699854484,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48183","ServerKey":"pl181","X":539,"Y":284},{"Bonus":0,"Continent":"K63","ID":48184,"Name":"O010","PlayerID":272173,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48184","ServerKey":"pl181","X":339,"Y":633},{"Bonus":0,"Continent":"K63","ID":48186,"Name":"Taran","PlayerID":6180190,"Points":9934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48186","ServerKey":"pl181","X":326,"Y":619},{"Bonus":2,"Continent":"K42","ID":48187,"Name":"B_3","PlayerID":699728266,"Points":4281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48187","ServerKey":"pl181","X":296,"Y":419},{"Bonus":0,"Continent":"K42","ID":48188,"Name":"Wiba","PlayerID":698652171,"Points":2394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48188","ServerKey":"pl181","X":285,"Y":457},{"Bonus":0,"Continent":"K33","ID":48189,"Name":"Wioska barbarzyƄska","PlayerID":849064752,"Points":2209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48189","ServerKey":"pl181","X":328,"Y":373},{"Bonus":0,"Continent":"K74","ID":48190,"Name":"028. Night Raid*","PlayerID":699684062,"Points":10471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48190","ServerKey":"pl181","X":426,"Y":707},{"Bonus":0,"Continent":"K33","ID":48191,"Name":"Szlachcic","PlayerID":698388578,"Points":6116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48191","ServerKey":"pl181","X":358,"Y":339},{"Bonus":0,"Continent":"K33","ID":48192,"Name":"##5","PlayerID":2800032,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48192","ServerKey":"pl181","X":348,"Y":351},{"Bonus":0,"Continent":"K33","ID":48193,"Name":"...","PlayerID":699657450,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48193","ServerKey":"pl181","X":341,"Y":356},{"Bonus":0,"Continent":"K52","ID":48194,"Name":"Zzz 03 wejdĆș a nie wyjdziesz","PlayerID":849084740,"Points":4505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48194","ServerKey":"pl181","X":293,"Y":572},{"Bonus":0,"Continent":"K34","ID":48195,"Name":"Wioska barbarzyƄska","PlayerID":849085160,"Points":4161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48195","ServerKey":"pl181","X":421,"Y":304},{"Bonus":0,"Continent":"K33","ID":48196,"Name":"Lord Arsey IV","PlayerID":698349125,"Points":3005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48196","ServerKey":"pl181","X":325,"Y":384},{"Bonus":0,"Continent":"K75","ID":48197,"Name":"- 279 - SS","PlayerID":849018239,"Points":7526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48197","ServerKey":"pl181","X":554,"Y":702},{"Bonus":0,"Continent":"K46","ID":48198,"Name":"Taran","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48198","ServerKey":"pl181","X":687,"Y":405},{"Bonus":0,"Continent":"K24","ID":48199,"Name":"096.Stradi","PlayerID":698365960,"Points":8871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48199","ServerKey":"pl181","X":438,"Y":296},{"Bonus":0,"Continent":"K25","ID":48200,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":7523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48200","ServerKey":"pl181","X":529,"Y":287},{"Bonus":9,"Continent":"K33","ID":48201,"Name":"A-002","PlayerID":699406247,"Points":6320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48201","ServerKey":"pl181","X":323,"Y":377},{"Bonus":0,"Continent":"K75","ID":48202,"Name":"Bestan","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48202","ServerKey":"pl181","X":558,"Y":708},{"Bonus":0,"Continent":"K34","ID":48203,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48203","ServerKey":"pl181","X":410,"Y":308},{"Bonus":0,"Continent":"K47","ID":48204,"Name":"032 Lavaridge Town","PlayerID":699441366,"Points":5199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48204","ServerKey":"pl181","X":717,"Y":480},{"Bonus":0,"Continent":"K36","ID":48205,"Name":"*003","PlayerID":7758085,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48205","ServerKey":"pl181","X":668,"Y":365},{"Bonus":0,"Continent":"K75","ID":48206,"Name":"-07-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48206","ServerKey":"pl181","X":577,"Y":701},{"Bonus":0,"Continent":"K74","ID":48207,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48207","ServerKey":"pl181","X":488,"Y":715},{"Bonus":0,"Continent":"K74","ID":48208,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48208","ServerKey":"pl181","X":438,"Y":702},{"Bonus":0,"Continent":"K75","ID":48209,"Name":"118 invidia","PlayerID":849093426,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48209","ServerKey":"pl181","X":503,"Y":711},{"Bonus":0,"Continent":"K66","ID":48210,"Name":"040.","PlayerID":699695167,"Points":3250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48210","ServerKey":"pl181","X":631,"Y":675},{"Bonus":0,"Continent":"K24","ID":48211,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48211","ServerKey":"pl181","X":417,"Y":299},{"Bonus":0,"Continent":"K75","ID":48212,"Name":"009 ukradƂem darmę","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48212","ServerKey":"pl181","X":521,"Y":708},{"Bonus":0,"Continent":"K25","ID":48213,"Name":"Wioska Felicjan","PlayerID":699818726,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48213","ServerKey":"pl181","X":528,"Y":289},{"Bonus":0,"Continent":"K47","ID":48214,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":4318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48214","ServerKey":"pl181","X":712,"Y":446},{"Bonus":0,"Continent":"K75","ID":48215,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":5670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48215","ServerKey":"pl181","X":559,"Y":710},{"Bonus":0,"Continent":"K47","ID":48216,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":6135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48216","ServerKey":"pl181","X":717,"Y":488},{"Bonus":0,"Continent":"K36","ID":48217,"Name":"Wioska","PlayerID":1715091,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48217","ServerKey":"pl181","X":685,"Y":384},{"Bonus":0,"Continent":"K63","ID":48218,"Name":"O029","PlayerID":272173,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48218","ServerKey":"pl181","X":334,"Y":636},{"Bonus":0,"Continent":"K63","ID":48219,"Name":"C080","PlayerID":699383279,"Points":9674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48219","ServerKey":"pl181","X":357,"Y":654},{"Bonus":0,"Continent":"K63","ID":48220,"Name":"O052","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48220","ServerKey":"pl181","X":331,"Y":630},{"Bonus":0,"Continent":"K63","ID":48221,"Name":"=Testudo=","PlayerID":849101581,"Points":4233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48221","ServerKey":"pl181","X":344,"Y":641},{"Bonus":0,"Continent":"K64","ID":48222,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48222","ServerKey":"pl181","X":424,"Y":695},{"Bonus":0,"Continent":"K63","ID":48223,"Name":"Wioska 0023","PlayerID":9186126,"Points":7967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48223","ServerKey":"pl181","X":348,"Y":651},{"Bonus":0,"Continent":"K74","ID":48224,"Name":"WIOSKA DO ODDANIA Z BONUSAMI","PlayerID":849101578,"Points":1017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48224","ServerKey":"pl181","X":462,"Y":714},{"Bonus":0,"Continent":"K43","ID":48225,"Name":"WiedĆșma - Z 008","PlayerID":9239515,"Points":2656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48225","ServerKey":"pl181","X":301,"Y":432},{"Bonus":0,"Continent":"K42","ID":48226,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48226","ServerKey":"pl181","X":281,"Y":499},{"Bonus":0,"Continent":"K53","ID":48227,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":5001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48227","ServerKey":"pl181","X":305,"Y":588},{"Bonus":0,"Continent":"K63","ID":48229,"Name":"Poziom emocji: 0","PlayerID":849092685,"Points":8045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48229","ServerKey":"pl181","X":353,"Y":654},{"Bonus":0,"Continent":"K52","ID":48230,"Name":"Wioska *worm*","PlayerID":2811353,"Points":3546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48230","ServerKey":"pl181","X":292,"Y":561},{"Bonus":0,"Continent":"K25","ID":48231,"Name":"055 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48231","ServerKey":"pl181","X":549,"Y":288},{"Bonus":0,"Continent":"K47","ID":48232,"Name":"#.46 Wioska barbarzyƄska","PlayerID":849054582,"Points":1722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48232","ServerKey":"pl181","X":706,"Y":458},{"Bonus":0,"Continent":"K57","ID":48233,"Name":"088","PlayerID":7085502,"Points":7074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48233","ServerKey":"pl181","X":711,"Y":520},{"Bonus":0,"Continent":"K34","ID":48234,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48234","ServerKey":"pl181","X":410,"Y":309},{"Bonus":0,"Continent":"K63","ID":48235,"Name":"C078","PlayerID":699383279,"Points":5174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48235","ServerKey":"pl181","X":355,"Y":659},{"Bonus":0,"Continent":"K53","ID":48236,"Name":"Początek","PlayerID":7842579,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48236","ServerKey":"pl181","X":302,"Y":579},{"Bonus":0,"Continent":"K66","ID":48237,"Name":"Tyle co nic","PlayerID":849101652,"Points":2321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48237","ServerKey":"pl181","X":693,"Y":603},{"Bonus":0,"Continent":"K75","ID":48238,"Name":"rafisonik4","PlayerID":849101108,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48238","ServerKey":"pl181","X":511,"Y":714},{"Bonus":0,"Continent":"K25","ID":48239,"Name":"North 004","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48239","ServerKey":"pl181","X":517,"Y":282},{"Bonus":0,"Continent":"K66","ID":48240,"Name":"*015**","PlayerID":1205898,"Points":6930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48240","ServerKey":"pl181","X":680,"Y":619},{"Bonus":0,"Continent":"K66","ID":48241,"Name":"Wiadro07","PlayerID":8677963,"Points":8167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48241","ServerKey":"pl181","X":673,"Y":629},{"Bonus":0,"Continent":"K43","ID":48242,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48242","ServerKey":"pl181","X":307,"Y":418},{"Bonus":0,"Continent":"K75","ID":48243,"Name":"005","PlayerID":8925624,"Points":2596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48243","ServerKey":"pl181","X":538,"Y":713},{"Bonus":0,"Continent":"K35","ID":48244,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48244","ServerKey":"pl181","X":580,"Y":301},{"Bonus":0,"Continent":"K33","ID":48245,"Name":"Wioska barbarzyƄska 006","PlayerID":849068662,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48245","ServerKey":"pl181","X":379,"Y":321},{"Bonus":0,"Continent":"K74","ID":48246,"Name":"0075 Wioska barbarzyƄska","PlayerID":849037407,"Points":6913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48246","ServerKey":"pl181","X":448,"Y":705},{"Bonus":6,"Continent":"K74","ID":48247,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48247","ServerKey":"pl181","X":433,"Y":700},{"Bonus":0,"Continent":"K52","ID":48248,"Name":"007 Ć»nin","PlayerID":9235561,"Points":4369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48248","ServerKey":"pl181","X":286,"Y":528},{"Bonus":0,"Continent":"K74","ID":48249,"Name":"001 - Budowanko!","PlayerID":7540891,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48249","ServerKey":"pl181","X":488,"Y":714},{"Bonus":0,"Continent":"K52","ID":48251,"Name":"Wioska ba","PlayerID":849101674,"Points":4370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48251","ServerKey":"pl181","X":281,"Y":501},{"Bonus":0,"Continent":"K63","ID":48252,"Name":"Taran","PlayerID":6180190,"Points":7765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48252","ServerKey":"pl181","X":324,"Y":622},{"Bonus":0,"Continent":"K36","ID":48253,"Name":"073","PlayerID":2502956,"Points":5511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48253","ServerKey":"pl181","X":626,"Y":323},{"Bonus":0,"Continent":"K57","ID":48255,"Name":"087","PlayerID":7085502,"Points":5952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48255","ServerKey":"pl181","X":717,"Y":503},{"Bonus":0,"Continent":"K36","ID":48257,"Name":"XDX","PlayerID":699098531,"Points":6612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48257","ServerKey":"pl181","X":603,"Y":306},{"Bonus":0,"Continent":"K36","ID":48258,"Name":"Wioska 5","PlayerID":849101945,"Points":1702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48258","ServerKey":"pl181","X":655,"Y":347},{"Bonus":0,"Continent":"K57","ID":48259,"Name":"Wioska barbarzyƄska","PlayerID":8418489,"Points":5896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48259","ServerKey":"pl181","X":715,"Y":505},{"Bonus":0,"Continent":"K57","ID":48260,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":3931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48260","ServerKey":"pl181","X":708,"Y":547},{"Bonus":0,"Continent":"K66","ID":48261,"Name":"041.","PlayerID":699695167,"Points":4066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48261","ServerKey":"pl181","X":630,"Y":667},{"Bonus":0,"Continent":"K75","ID":48262,"Name":"stalingrad 1","PlayerID":7860453,"Points":3777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48262","ServerKey":"pl181","X":541,"Y":712},{"Bonus":0,"Continent":"K74","ID":48264,"Name":"Wioska 19F06","PlayerID":698152377,"Points":7437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48264","ServerKey":"pl181","X":438,"Y":709},{"Bonus":0,"Continent":"K74","ID":48265,"Name":"Kurnik","PlayerID":699603116,"Points":2662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48265","ServerKey":"pl181","X":444,"Y":711},{"Bonus":0,"Continent":"K63","ID":48266,"Name":"C070","PlayerID":699383279,"Points":4644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48266","ServerKey":"pl181","X":358,"Y":664},{"Bonus":0,"Continent":"K63","ID":48267,"Name":"Taran","PlayerID":6180190,"Points":6228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48267","ServerKey":"pl181","X":315,"Y":602},{"Bonus":0,"Continent":"K52","ID":48268,"Name":"Wyspa 026","PlayerID":225023,"Points":4953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48268","ServerKey":"pl181","X":292,"Y":565},{"Bonus":0,"Continent":"K47","ID":48269,"Name":"C.026","PlayerID":9188016,"Points":4680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48269","ServerKey":"pl181","X":709,"Y":481},{"Bonus":0,"Continent":"K46","ID":48271,"Name":"002","PlayerID":7409475,"Points":8605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48271","ServerKey":"pl181","X":696,"Y":402},{"Bonus":7,"Continent":"K36","ID":48272,"Name":"0080","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48272","ServerKey":"pl181","X":681,"Y":394},{"Bonus":0,"Continent":"K47","ID":48274,"Name":"037","PlayerID":849091105,"Points":8922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48274","ServerKey":"pl181","X":716,"Y":468},{"Bonus":0,"Continent":"K74","ID":48275,"Name":"0001 Wioska Hubixon","PlayerID":699656989,"Points":9772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48275","ServerKey":"pl181","X":494,"Y":722},{"Bonus":0,"Continent":"K24","ID":48276,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48276","ServerKey":"pl181","X":496,"Y":286},{"Bonus":0,"Continent":"K25","ID":48277,"Name":"AAA","PlayerID":1006847,"Points":7487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48277","ServerKey":"pl181","X":555,"Y":295},{"Bonus":0,"Continent":"K75","ID":48278,"Name":"-04-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48278","ServerKey":"pl181","X":579,"Y":702},{"Bonus":0,"Continent":"K52","ID":48281,"Name":"002 Giecz","PlayerID":9235561,"Points":6921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48281","ServerKey":"pl181","X":290,"Y":530},{"Bonus":0,"Continent":"K24","ID":48282,"Name":"#0186 grabarz22","PlayerID":1238300,"Points":7279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48282","ServerKey":"pl181","X":465,"Y":287},{"Bonus":0,"Continent":"K47","ID":48283,"Name":"C04","PlayerID":849093742,"Points":7227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48283","ServerKey":"pl181","X":707,"Y":444},{"Bonus":0,"Continent":"K75","ID":48284,"Name":"Kurnik","PlayerID":699603116,"Points":9282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48284","ServerKey":"pl181","X":548,"Y":711},{"Bonus":0,"Continent":"K63","ID":48285,"Name":"006","PlayerID":6948793,"Points":9714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48285","ServerKey":"pl181","X":388,"Y":677},{"Bonus":0,"Continent":"K53","ID":48286,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48286","ServerKey":"pl181","X":338,"Y":554},{"Bonus":0,"Continent":"K63","ID":48287,"Name":"C071","PlayerID":699383279,"Points":5807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48287","ServerKey":"pl181","X":358,"Y":661},{"Bonus":0,"Continent":"K47","ID":48288,"Name":"15 Tam gdzie Zawsze","PlayerID":849101845,"Points":8462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48288","ServerKey":"pl181","X":706,"Y":445},{"Bonus":0,"Continent":"K75","ID":48289,"Name":"0434","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48289","ServerKey":"pl181","X":560,"Y":708},{"Bonus":0,"Continent":"K75","ID":48290,"Name":"C010","PlayerID":698599365,"Points":5899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48290","ServerKey":"pl181","X":537,"Y":711},{"Bonus":0,"Continent":"K65","ID":48291,"Name":"###118###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48291","ServerKey":"pl181","X":587,"Y":696},{"Bonus":0,"Continent":"K24","ID":48292,"Name":"253...Karki98","PlayerID":6920960,"Points":5771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48292","ServerKey":"pl181","X":452,"Y":294},{"Bonus":0,"Continent":"K66","ID":48293,"Name":"015","PlayerID":2323859,"Points":4645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48293","ServerKey":"pl181","X":663,"Y":646},{"Bonus":0,"Continent":"K33","ID":48294,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48294","ServerKey":"pl181","X":371,"Y":328},{"Bonus":0,"Continent":"K24","ID":48295,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48295","ServerKey":"pl181","X":426,"Y":295},{"Bonus":0,"Continent":"K74","ID":48296,"Name":"004 - Budowanko!","PlayerID":7540891,"Points":9087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48296","ServerKey":"pl181","X":490,"Y":719},{"Bonus":0,"Continent":"K74","ID":48297,"Name":"13. PST","PlayerID":849092769,"Points":4135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48297","ServerKey":"pl181","X":477,"Y":714},{"Bonus":0,"Continent":"K36","ID":48298,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48298","ServerKey":"pl181","X":608,"Y":316},{"Bonus":0,"Continent":"K25","ID":48299,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48299","ServerKey":"pl181","X":502,"Y":283},{"Bonus":0,"Continent":"K57","ID":48300,"Name":"069","PlayerID":7085502,"Points":8275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48300","ServerKey":"pl181","X":712,"Y":509},{"Bonus":0,"Continent":"K63","ID":48302,"Name":"Taran","PlayerID":6180190,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48302","ServerKey":"pl181","X":323,"Y":623},{"Bonus":0,"Continent":"K25","ID":48303,"Name":"073 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48303","ServerKey":"pl181","X":543,"Y":288},{"Bonus":0,"Continent":"K52","ID":48304,"Name":"C0246","PlayerID":8841266,"Points":5097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48304","ServerKey":"pl181","X":288,"Y":544},{"Bonus":0,"Continent":"K33","ID":48305,"Name":"BossLand","PlayerID":849101604,"Points":10120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48305","ServerKey":"pl181","X":353,"Y":341},{"Bonus":0,"Continent":"K36","ID":48306,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48306","ServerKey":"pl181","X":643,"Y":337},{"Bonus":0,"Continent":"K33","ID":48307,"Name":"...","PlayerID":699657450,"Points":4067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48307","ServerKey":"pl181","X":342,"Y":358},{"Bonus":0,"Continent":"K52","ID":48308,"Name":"Wioska bar","PlayerID":699805379,"Points":1928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48308","ServerKey":"pl181","X":285,"Y":529},{"Bonus":0,"Continent":"K33","ID":48309,"Name":"007","PlayerID":699660539,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48309","ServerKey":"pl181","X":384,"Y":319},{"Bonus":0,"Continent":"K34","ID":48310,"Name":"005","PlayerID":699694284,"Points":8434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48310","ServerKey":"pl181","X":420,"Y":307},{"Bonus":0,"Continent":"K33","ID":48311,"Name":"Szlachcic","PlayerID":698388578,"Points":6901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48311","ServerKey":"pl181","X":360,"Y":336},{"Bonus":0,"Continent":"K36","ID":48312,"Name":"024","PlayerID":9148043,"Points":4122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48312","ServerKey":"pl181","X":646,"Y":348},{"Bonus":0,"Continent":"K42","ID":48313,"Name":"[D]_[002] Dejv.oldplyr","PlayerID":699380607,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48313","ServerKey":"pl181","X":285,"Y":498},{"Bonus":0,"Continent":"K63","ID":48314,"Name":"0126","PlayerID":7085510,"Points":7661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48314","ServerKey":"pl181","X":386,"Y":687},{"Bonus":0,"Continent":"K52","ID":48315,"Name":"[0231]","PlayerID":8630972,"Points":7772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48315","ServerKey":"pl181","X":290,"Y":505},{"Bonus":0,"Continent":"K33","ID":48316,"Name":"006:Wioska Huel","PlayerID":8772425,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48316","ServerKey":"pl181","X":374,"Y":333},{"Bonus":0,"Continent":"K66","ID":48318,"Name":"#K66 0011","PlayerID":699728159,"Points":4914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48318","ServerKey":"pl181","X":609,"Y":678},{"Bonus":0,"Continent":"K63","ID":48319,"Name":"Wioska barbarzyƄska","PlayerID":6948793,"Points":8167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48319","ServerKey":"pl181","X":385,"Y":676},{"Bonus":0,"Continent":"K52","ID":48320,"Name":"008 Biskupin","PlayerID":9235561,"Points":7374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48320","ServerKey":"pl181","X":286,"Y":534},{"Bonus":0,"Continent":"K75","ID":48321,"Name":"#K75 0011","PlayerID":699728159,"Points":5198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48321","ServerKey":"pl181","X":521,"Y":712},{"Bonus":0,"Continent":"K63","ID":48322,"Name":"087","PlayerID":849099876,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48322","ServerKey":"pl181","X":394,"Y":683},{"Bonus":0,"Continent":"K52","ID":48323,"Name":"043","PlayerID":9280477,"Points":5209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48323","ServerKey":"pl181","X":293,"Y":543},{"Bonus":0,"Continent":"K36","ID":48324,"Name":"[203]","PlayerID":8000875,"Points":6024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48324","ServerKey":"pl181","X":678,"Y":388},{"Bonus":0,"Continent":"K66","ID":48325,"Name":"114","PlayerID":3589487,"Points":4052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48325","ServerKey":"pl181","X":683,"Y":606},{"Bonus":0,"Continent":"K74","ID":48327,"Name":"039.","PlayerID":849034882,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48327","ServerKey":"pl181","X":451,"Y":710},{"Bonus":0,"Continent":"K74","ID":48329,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48329","ServerKey":"pl181","X":435,"Y":703},{"Bonus":4,"Continent":"K66","ID":48330,"Name":"Komandos","PlayerID":7976264,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48330","ServerKey":"pl181","X":638,"Y":665},{"Bonus":0,"Continent":"K47","ID":48331,"Name":"Woof","PlayerID":699785935,"Points":7652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48331","ServerKey":"pl181","X":701,"Y":429},{"Bonus":0,"Continent":"K33","ID":48332,"Name":"016","PlayerID":699660539,"Points":4487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48332","ServerKey":"pl181","X":386,"Y":319},{"Bonus":0,"Continent":"K66","ID":48333,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":2777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48333","ServerKey":"pl181","X":687,"Y":610},{"Bonus":0,"Continent":"K36","ID":48334,"Name":"XDX","PlayerID":699098531,"Points":6426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48334","ServerKey":"pl181","X":600,"Y":306},{"Bonus":0,"Continent":"K66","ID":48335,"Name":"002","PlayerID":2323859,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48335","ServerKey":"pl181","X":663,"Y":642},{"Bonus":0,"Continent":"K25","ID":48336,"Name":"D012","PlayerID":699299123,"Points":5698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48336","ServerKey":"pl181","X":560,"Y":292},{"Bonus":0,"Continent":"K52","ID":48337,"Name":"Wyspa 017","PlayerID":225023,"Points":6876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48337","ServerKey":"pl181","X":299,"Y":571},{"Bonus":0,"Continent":"K75","ID":48338,"Name":"- 289 - SS","PlayerID":849018239,"Points":6621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48338","ServerKey":"pl181","X":559,"Y":704},{"Bonus":0,"Continent":"K36","ID":48339,"Name":"006. xHavajek","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48339","ServerKey":"pl181","X":681,"Y":379},{"Bonus":0,"Continent":"K47","ID":48340,"Name":"029 Slateport City","PlayerID":699441366,"Points":4909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48340","ServerKey":"pl181","X":713,"Y":482},{"Bonus":0,"Continent":"K65","ID":48342,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48342","ServerKey":"pl181","X":582,"Y":694},{"Bonus":0,"Continent":"K52","ID":48343,"Name":"SkalpeR 4","PlayerID":849101674,"Points":2921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48343","ServerKey":"pl181","X":281,"Y":502},{"Bonus":0,"Continent":"K66","ID":48344,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48344","ServerKey":"pl181","X":653,"Y":652},{"Bonus":0,"Continent":"K57","ID":48345,"Name":"05. Rawenna","PlayerID":848946700,"Points":10382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48345","ServerKey":"pl181","X":709,"Y":538},{"Bonus":0,"Continent":"K34","ID":48346,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48346","ServerKey":"pl181","X":403,"Y":309},{"Bonus":0,"Continent":"K52","ID":48347,"Name":"Cisza","PlayerID":698769107,"Points":7550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48347","ServerKey":"pl181","X":289,"Y":558},{"Bonus":0,"Continent":"K74","ID":48348,"Name":"Kurnik","PlayerID":699603116,"Points":2204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48348","ServerKey":"pl181","X":446,"Y":713},{"Bonus":0,"Continent":"K63","ID":48349,"Name":"A 036","PlayerID":699269923,"Points":8459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48349","ServerKey":"pl181","X":362,"Y":644},{"Bonus":0,"Continent":"K36","ID":48350,"Name":"MJ45","PlayerID":8669398,"Points":6215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48350","ServerKey":"pl181","X":683,"Y":382},{"Bonus":0,"Continent":"K33","ID":48351,"Name":"AlaKlaudia1","PlayerID":848966521,"Points":5878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48351","ServerKey":"pl181","X":383,"Y":324},{"Bonus":0,"Continent":"K36","ID":48352,"Name":"Daleko od domu.","PlayerID":848924219,"Points":1680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48352","ServerKey":"pl181","X":659,"Y":354},{"Bonus":0,"Continent":"K63","ID":48354,"Name":"O067","PlayerID":272173,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48354","ServerKey":"pl181","X":331,"Y":629},{"Bonus":0,"Continent":"K33","ID":48355,"Name":"162...H","PlayerID":6920960,"Points":5822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48355","ServerKey":"pl181","X":392,"Y":312},{"Bonus":0,"Continent":"K64","ID":48356,"Name":"010. Night Raid*","PlayerID":699684062,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48356","ServerKey":"pl181","X":433,"Y":698},{"Bonus":0,"Continent":"K66","ID":48357,"Name":"049.","PlayerID":699373599,"Points":4455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48357","ServerKey":"pl181","X":637,"Y":671},{"Bonus":0,"Continent":"K75","ID":48359,"Name":"018","PlayerID":698996782,"Points":6332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48359","ServerKey":"pl181","X":525,"Y":717},{"Bonus":0,"Continent":"K36","ID":48360,"Name":"028. Brauer92","PlayerID":2873154,"Points":7894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48360","ServerKey":"pl181","X":674,"Y":381},{"Bonus":9,"Continent":"K52","ID":48361,"Name":"Początek","PlayerID":7842579,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48361","ServerKey":"pl181","X":297,"Y":574},{"Bonus":0,"Continent":"K57","ID":48362,"Name":"Ɓo baben!","PlayerID":8418489,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48362","ServerKey":"pl181","X":712,"Y":501},{"Bonus":0,"Continent":"K56","ID":48363,"Name":"Wioska 003","PlayerID":7999103,"Points":10304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48363","ServerKey":"pl181","X":689,"Y":595},{"Bonus":0,"Continent":"K57","ID":48365,"Name":"003","PlayerID":301602,"Points":8716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48365","ServerKey":"pl181","X":701,"Y":560},{"Bonus":0,"Continent":"K57","ID":48366,"Name":"Ger5","PlayerID":2246711,"Points":4077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48366","ServerKey":"pl181","X":716,"Y":524},{"Bonus":0,"Continent":"K33","ID":48367,"Name":"181","PlayerID":2268889,"Points":4961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48367","ServerKey":"pl181","X":383,"Y":317},{"Bonus":0,"Continent":"K36","ID":48368,"Name":"Wioska009","PlayerID":698768565,"Points":4357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48368","ServerKey":"pl181","X":694,"Y":390},{"Bonus":0,"Continent":"K64","ID":48369,"Name":"060","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48369","ServerKey":"pl181","X":401,"Y":696},{"Bonus":0,"Continent":"K66","ID":48370,"Name":"artnow","PlayerID":6818593,"Points":2081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48370","ServerKey":"pl181","X":618,"Y":678},{"Bonus":0,"Continent":"K33","ID":48371,"Name":"008","PlayerID":8724192,"Points":3216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48371","ServerKey":"pl181","X":311,"Y":398},{"Bonus":0,"Continent":"K36","ID":48372,"Name":"010","PlayerID":699738350,"Points":10171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48372","ServerKey":"pl181","X":695,"Y":394},{"Bonus":0,"Continent":"K63","ID":48373,"Name":"Wioska do czasu","PlayerID":2725721,"Points":4428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48373","ServerKey":"pl181","X":352,"Y":651},{"Bonus":0,"Continent":"K34","ID":48375,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48375","ServerKey":"pl181","X":403,"Y":307},{"Bonus":0,"Continent":"K57","ID":48376,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":4071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48376","ServerKey":"pl181","X":709,"Y":540},{"Bonus":0,"Continent":"K74","ID":48377,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48377","ServerKey":"pl181","X":421,"Y":705},{"Bonus":6,"Continent":"K25","ID":48378,"Name":"Wancki","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48378","ServerKey":"pl181","X":517,"Y":287},{"Bonus":0,"Continent":"K75","ID":48379,"Name":"#K75 0017","PlayerID":699728159,"Points":4882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48379","ServerKey":"pl181","X":520,"Y":710},{"Bonus":0,"Continent":"K33","ID":48380,"Name":"Szlachcic","PlayerID":698388578,"Points":6367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48380","ServerKey":"pl181","X":362,"Y":343},{"Bonus":0,"Continent":"K66","ID":48381,"Name":"Wiadro15","PlayerID":8677963,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48381","ServerKey":"pl181","X":666,"Y":637},{"Bonus":0,"Continent":"K42","ID":48382,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48382","ServerKey":"pl181","X":296,"Y":434},{"Bonus":0,"Continent":"K64","ID":48383,"Name":"028|| Sextans","PlayerID":849035525,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48383","ServerKey":"pl181","X":488,"Y":643},{"Bonus":0,"Continent":"K64","ID":48384,"Name":"166","PlayerID":849099876,"Points":9280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48384","ServerKey":"pl181","X":413,"Y":693},{"Bonus":0,"Continent":"K52","ID":48385,"Name":"U.004","PlayerID":849088243,"Points":7429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48385","ServerKey":"pl181","X":291,"Y":558},{"Bonus":0,"Continent":"K64","ID":48386,"Name":"New World","PlayerID":698152377,"Points":7669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48386","ServerKey":"pl181","X":432,"Y":699},{"Bonus":0,"Continent":"K65","ID":48387,"Name":"#0042","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48387","ServerKey":"pl181","X":545,"Y":629},{"Bonus":0,"Continent":"K64","ID":48388,"Name":"058","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48388","ServerKey":"pl181","X":401,"Y":693},{"Bonus":0,"Continent":"K33","ID":48389,"Name":"0033","PlayerID":2321390,"Points":2618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48389","ServerKey":"pl181","X":326,"Y":381},{"Bonus":0,"Continent":"K57","ID":48390,"Name":"085","PlayerID":7085502,"Points":6007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48390","ServerKey":"pl181","X":719,"Y":514},{"Bonus":6,"Continent":"K24","ID":48391,"Name":"????","PlayerID":698489071,"Points":10503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48391","ServerKey":"pl181","X":490,"Y":281},{"Bonus":0,"Continent":"K35","ID":48392,"Name":"Wioska Vlo4","PlayerID":8609713,"Points":8931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48392","ServerKey":"pl181","X":586,"Y":307},{"Bonus":0,"Continent":"K42","ID":48393,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48393","ServerKey":"pl181","X":290,"Y":452},{"Bonus":0,"Continent":"K33","ID":48394,"Name":"...","PlayerID":699657450,"Points":1704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48394","ServerKey":"pl181","X":336,"Y":359},{"Bonus":0,"Continent":"K43","ID":48395,"Name":"004","PlayerID":8724192,"Points":5530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48395","ServerKey":"pl181","X":308,"Y":400},{"Bonus":0,"Continent":"K33","ID":48396,"Name":"004","PlayerID":849101205,"Points":8085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48396","ServerKey":"pl181","X":353,"Y":349},{"Bonus":0,"Continent":"K74","ID":48397,"Name":"0042","PlayerID":699280514,"Points":3745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48397","ServerKey":"pl181","X":473,"Y":715},{"Bonus":0,"Continent":"K35","ID":48398,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48398","ServerKey":"pl181","X":596,"Y":300},{"Bonus":0,"Continent":"K74","ID":48399,"Name":"Kurnik","PlayerID":699603116,"Points":7644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48399","ServerKey":"pl181","X":477,"Y":712},{"Bonus":0,"Continent":"K47","ID":48400,"Name":"C.042","PlayerID":9188016,"Points":4517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48400","ServerKey":"pl181","X":715,"Y":466},{"Bonus":0,"Continent":"K56","ID":48402,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":7015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48402","ServerKey":"pl181","X":694,"Y":598},{"Bonus":0,"Continent":"K25","ID":48403,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48403","ServerKey":"pl181","X":580,"Y":298},{"Bonus":0,"Continent":"K33","ID":48404,"Name":"Babidi #3","PlayerID":849101962,"Points":7583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48404","ServerKey":"pl181","X":373,"Y":324},{"Bonus":6,"Continent":"K36","ID":48405,"Name":"0089","PlayerID":698416970,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48405","ServerKey":"pl181","X":685,"Y":399},{"Bonus":0,"Continent":"K25","ID":48406,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":8408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48406","ServerKey":"pl181","X":534,"Y":290},{"Bonus":0,"Continent":"K66","ID":48407,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48407","ServerKey":"pl181","X":654,"Y":655},{"Bonus":0,"Continent":"K66","ID":48409,"Name":"115","PlayerID":3589487,"Points":4350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48409","ServerKey":"pl181","X":687,"Y":616},{"Bonus":0,"Continent":"K74","ID":48410,"Name":"Kurnik","PlayerID":699603116,"Points":9201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48410","ServerKey":"pl181","X":467,"Y":711},{"Bonus":0,"Continent":"K74","ID":48411,"Name":"Bagno 4","PlayerID":848883684,"Points":9452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48411","ServerKey":"pl181","X":485,"Y":719},{"Bonus":0,"Continent":"K33","ID":48412,"Name":"IV. Krzyczki-Ć»abiczki","PlayerID":849101893,"Points":4784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48412","ServerKey":"pl181","X":364,"Y":333},{"Bonus":0,"Continent":"K66","ID":48413,"Name":"012","PlayerID":2323859,"Points":6561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48413","ServerKey":"pl181","X":657,"Y":644},{"Bonus":0,"Continent":"K33","ID":48415,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48415","ServerKey":"pl181","X":316,"Y":394},{"Bonus":0,"Continent":"K75","ID":48417,"Name":"rafisonik3","PlayerID":849101108,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48417","ServerKey":"pl181","X":510,"Y":713},{"Bonus":0,"Continent":"K47","ID":48418,"Name":"Blask","PlayerID":699785935,"Points":7970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48418","ServerKey":"pl181","X":701,"Y":433},{"Bonus":0,"Continent":"K66","ID":48419,"Name":"*028*","PlayerID":1205898,"Points":3364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48419","ServerKey":"pl181","X":688,"Y":614},{"Bonus":0,"Continent":"K52","ID":48420,"Name":"Hoofdorp","PlayerID":699830255,"Points":1887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48420","ServerKey":"pl181","X":282,"Y":519},{"Bonus":0,"Continent":"K36","ID":48422,"Name":"Wioska barbarzyƄska","PlayerID":8740199,"Points":3612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48422","ServerKey":"pl181","X":636,"Y":339},{"Bonus":0,"Continent":"K75","ID":48423,"Name":"065 invidia","PlayerID":849093426,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48423","ServerKey":"pl181","X":546,"Y":708},{"Bonus":0,"Continent":"K36","ID":48424,"Name":"!36 66 Runcu","PlayerID":698361257,"Points":9483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48424","ServerKey":"pl181","X":663,"Y":362},{"Bonus":0,"Continent":"K36","ID":48425,"Name":"Moldor 5","PlayerID":849049045,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48425","ServerKey":"pl181","X":633,"Y":362},{"Bonus":0,"Continent":"K35","ID":48426,"Name":"XDX","PlayerID":699098531,"Points":6833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48426","ServerKey":"pl181","X":599,"Y":314},{"Bonus":0,"Continent":"K63","ID":48427,"Name":"Taran","PlayerID":6180190,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48427","ServerKey":"pl181","X":314,"Y":615},{"Bonus":0,"Continent":"K24","ID":48428,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48428","ServerKey":"pl181","X":431,"Y":294},{"Bonus":0,"Continent":"K35","ID":48429,"Name":"XDX","PlayerID":699098531,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48429","ServerKey":"pl181","X":598,"Y":313},{"Bonus":0,"Continent":"K66","ID":48430,"Name":"042","PlayerID":699695167,"Points":3605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48430","ServerKey":"pl181","X":625,"Y":675},{"Bonus":0,"Continent":"K75","ID":48431,"Name":"#K75 0019","PlayerID":699728159,"Points":4555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48431","ServerKey":"pl181","X":519,"Y":718},{"Bonus":0,"Continent":"K74","ID":48432,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48432","ServerKey":"pl181","X":436,"Y":709},{"Bonus":0,"Continent":"K65","ID":48433,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":6350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48433","ServerKey":"pl181","X":573,"Y":646},{"Bonus":0,"Continent":"K33","ID":48434,"Name":"0024","PlayerID":2321390,"Points":3169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48434","ServerKey":"pl181","X":317,"Y":382},{"Bonus":0,"Continent":"K33","ID":48435,"Name":"Wioska ZƂylos","PlayerID":849068662,"Points":11495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48435","ServerKey":"pl181","X":380,"Y":317},{"Bonus":0,"Continent":"K33","ID":48436,"Name":"...","PlayerID":699657450,"Points":8590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48436","ServerKey":"pl181","X":338,"Y":358},{"Bonus":0,"Continent":"K74","ID":48437,"Name":"R 038","PlayerID":699195358,"Points":7823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48437","ServerKey":"pl181","X":497,"Y":709},{"Bonus":0,"Continent":"K43","ID":48438,"Name":"Z23","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48438","ServerKey":"pl181","X":313,"Y":403},{"Bonus":0,"Continent":"K66","ID":48439,"Name":"Muspelheim","PlayerID":849096631,"Points":2176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48439","ServerKey":"pl181","X":667,"Y":627},{"Bonus":0,"Continent":"K56","ID":48440,"Name":"EE 005","PlayerID":849100149,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48440","ServerKey":"pl181","X":697,"Y":581},{"Bonus":0,"Continent":"K36","ID":48441,"Name":"kamilkaze135 #13","PlayerID":699705601,"Points":4705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48441","ServerKey":"pl181","X":688,"Y":387},{"Bonus":0,"Continent":"K47","ID":48442,"Name":"(NieTymRazem)","PlayerID":849101881,"Points":6801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48442","ServerKey":"pl181","X":701,"Y":419},{"Bonus":0,"Continent":"K25","ID":48443,"Name":"North K25","PlayerID":699146580,"Points":2193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48443","ServerKey":"pl181","X":535,"Y":286},{"Bonus":0,"Continent":"K33","ID":48444,"Name":"005. Prosciutto e rucola","PlayerID":849102092,"Points":4526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48444","ServerKey":"pl181","X":327,"Y":379},{"Bonus":1,"Continent":"K75","ID":48445,"Name":"Blumak","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48445","ServerKey":"pl181","X":551,"Y":711},{"Bonus":0,"Continent":"K52","ID":48446,"Name":"Procyon","PlayerID":849101647,"Points":9213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48446","ServerKey":"pl181","X":291,"Y":518},{"Bonus":0,"Continent":"K52","ID":48447,"Name":"New WorldA","PlayerID":849084005,"Points":2677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48447","ServerKey":"pl181","X":281,"Y":515},{"Bonus":0,"Continent":"K57","ID":48448,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48448","ServerKey":"pl181","X":719,"Y":500},{"Bonus":0,"Continent":"K65","ID":48449,"Name":"###119###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48449","ServerKey":"pl181","X":592,"Y":695},{"Bonus":0,"Continent":"K33","ID":48450,"Name":"Wioska009","PlayerID":699711926,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48450","ServerKey":"pl181","X":344,"Y":346},{"Bonus":0,"Continent":"K75","ID":48451,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":7190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48451","ServerKey":"pl181","X":573,"Y":705},{"Bonus":5,"Continent":"K52","ID":48452,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48452","ServerKey":"pl181","X":283,"Y":519},{"Bonus":0,"Continent":"K42","ID":48453,"Name":"Avanti!","PlayerID":698625834,"Points":6276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48453","ServerKey":"pl181","X":286,"Y":476},{"Bonus":0,"Continent":"K57","ID":48454,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":5549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48454","ServerKey":"pl181","X":705,"Y":551},{"Bonus":4,"Continent":"K25","ID":48455,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":9333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48455","ServerKey":"pl181","X":518,"Y":286},{"Bonus":0,"Continent":"K25","ID":48456,"Name":"Wioska Mursilis","PlayerID":9260447,"Points":2540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48456","ServerKey":"pl181","X":508,"Y":290},{"Bonus":0,"Continent":"K57","ID":48458,"Name":"Stefan Batory","PlayerID":8418489,"Points":7797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48458","ServerKey":"pl181","X":714,"Y":501},{"Bonus":0,"Continent":"K33","ID":48459,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":8643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48459","ServerKey":"pl181","X":373,"Y":326},{"Bonus":0,"Continent":"K52","ID":48460,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48460","ServerKey":"pl181","X":287,"Y":500},{"Bonus":0,"Continent":"K63","ID":48461,"Name":"C074","PlayerID":699383279,"Points":5080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48461","ServerKey":"pl181","X":355,"Y":663},{"Bonus":0,"Continent":"K63","ID":48462,"Name":"HOLENDER 3","PlayerID":698908184,"Points":5557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48462","ServerKey":"pl181","X":318,"Y":624},{"Bonus":0,"Continent":"K47","ID":48463,"Name":"068. Aeminium","PlayerID":849091866,"Points":8270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48463","ServerKey":"pl181","X":713,"Y":455},{"Bonus":0,"Continent":"K34","ID":48464,"Name":"Ultimate Farming Simulator 3","PlayerID":699872032,"Points":9232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48464","ServerKey":"pl181","X":414,"Y":304},{"Bonus":0,"Continent":"K33","ID":48465,"Name":"Szlachcic","PlayerID":698388578,"Points":6112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48465","ServerKey":"pl181","X":363,"Y":332},{"Bonus":0,"Continent":"K57","ID":48466,"Name":"072","PlayerID":7085502,"Points":6414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48466","ServerKey":"pl181","X":715,"Y":513},{"Bonus":0,"Continent":"K74","ID":48467,"Name":"Bagno 13","PlayerID":848883684,"Points":9468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48467","ServerKey":"pl181","X":482,"Y":719},{"Bonus":0,"Continent":"K75","ID":48468,"Name":"Wioska barbarzyƄska 002","PlayerID":6870350,"Points":9595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48468","ServerKey":"pl181","X":564,"Y":704},{"Bonus":0,"Continent":"K52","ID":48469,"Name":"[0232]","PlayerID":8630972,"Points":6455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48469","ServerKey":"pl181","X":287,"Y":507},{"Bonus":0,"Continent":"K52","ID":48470,"Name":"New WorldA","PlayerID":849084005,"Points":2015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48470","ServerKey":"pl181","X":285,"Y":536},{"Bonus":0,"Continent":"K52","ID":48471,"Name":"zbytowa","PlayerID":849101092,"Points":5608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48471","ServerKey":"pl181","X":296,"Y":562},{"Bonus":0,"Continent":"K66","ID":48472,"Name":"Nic","PlayerID":849101652,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48472","ServerKey":"pl181","X":695,"Y":602},{"Bonus":0,"Continent":"K42","ID":48473,"Name":"TƂokowo Wielkie","PlayerID":849100877,"Points":7665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48473","ServerKey":"pl181","X":283,"Y":489},{"Bonus":0,"Continent":"K47","ID":48474,"Name":"Borubar 4","PlayerID":699413581,"Points":4439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48474","ServerKey":"pl181","X":715,"Y":473},{"Bonus":0,"Continent":"K63","ID":48475,"Name":"Crystal Gardens","PlayerID":849105463,"Points":2140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48475","ServerKey":"pl181","X":383,"Y":685},{"Bonus":0,"Continent":"K66","ID":48476,"Name":"043.","PlayerID":699695167,"Points":3315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48476","ServerKey":"pl181","X":629,"Y":667},{"Bonus":0,"Continent":"K24","ID":48477,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":7554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48477","ServerKey":"pl181","X":449,"Y":290},{"Bonus":0,"Continent":"K35","ID":48478,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48478","ServerKey":"pl181","X":593,"Y":306},{"Bonus":0,"Continent":"K57","ID":48479,"Name":"=039= Wioska barbarzyƄska","PlayerID":3781794,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48479","ServerKey":"pl181","X":705,"Y":563},{"Bonus":0,"Continent":"K57","ID":48480,"Name":"016. Demawend","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48480","ServerKey":"pl181","X":711,"Y":549},{"Bonus":0,"Continent":"K36","ID":48481,"Name":"049","PlayerID":698361257,"Points":7937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48481","ServerKey":"pl181","X":664,"Y":356},{"Bonus":0,"Continent":"K46","ID":48482,"Name":"W37","PlayerID":699524362,"Points":1504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48482","ServerKey":"pl181","X":699,"Y":407},{"Bonus":0,"Continent":"K63","ID":48483,"Name":"146","PlayerID":849099876,"Points":8937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48483","ServerKey":"pl181","X":397,"Y":692},{"Bonus":0,"Continent":"K56","ID":48484,"Name":"Wioska 007","PlayerID":7999103,"Points":7479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48484","ServerKey":"pl181","X":697,"Y":595},{"Bonus":0,"Continent":"K33","ID":48485,"Name":"18+","PlayerID":9240154,"Points":2498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48485","ServerKey":"pl181","X":329,"Y":371},{"Bonus":0,"Continent":"K42","ID":48486,"Name":"Wioska Kanut","PlayerID":356642,"Points":3574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48486","ServerKey":"pl181","X":289,"Y":466},{"Bonus":0,"Continent":"K64","ID":48487,"Name":"|A| Ghostfort.","PlayerID":698807570,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48487","ServerKey":"pl181","X":481,"Y":648},{"Bonus":0,"Continent":"K42","ID":48488,"Name":"Avanti!","PlayerID":698625834,"Points":7447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48488","ServerKey":"pl181","X":284,"Y":479},{"Bonus":0,"Continent":"K25","ID":48489,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48489","ServerKey":"pl181","X":508,"Y":283},{"Bonus":0,"Continent":"K52","ID":48490,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48490","ServerKey":"pl181","X":290,"Y":521},{"Bonus":0,"Continent":"K36","ID":48491,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48491","ServerKey":"pl181","X":619,"Y":317},{"Bonus":0,"Continent":"K52","ID":48492,"Name":"017","PlayerID":9280477,"Points":8271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48492","ServerKey":"pl181","X":298,"Y":558},{"Bonus":0,"Continent":"K25","ID":48493,"Name":"XXXX","PlayerID":849054951,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48493","ServerKey":"pl181","X":566,"Y":298},{"Bonus":0,"Continent":"K35","ID":48494,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48494","ServerKey":"pl181","X":585,"Y":306},{"Bonus":0,"Continent":"K66","ID":48495,"Name":"054.","PlayerID":699373599,"Points":3855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48495","ServerKey":"pl181","X":633,"Y":674},{"Bonus":0,"Continent":"K66","ID":48496,"Name":"006","PlayerID":849101148,"Points":8276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48496","ServerKey":"pl181","X":647,"Y":652},{"Bonus":0,"Continent":"K47","ID":48498,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48498","ServerKey":"pl181","X":711,"Y":465},{"Bonus":0,"Continent":"K63","ID":48499,"Name":"Marchewkowe pole","PlayerID":2725721,"Points":7264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48499","ServerKey":"pl181","X":354,"Y":657},{"Bonus":0,"Continent":"K47","ID":48500,"Name":"C.037","PlayerID":9188016,"Points":4689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48500","ServerKey":"pl181","X":718,"Y":478},{"Bonus":0,"Continent":"K52","ID":48501,"Name":"015","PlayerID":9280477,"Points":7793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48501","ServerKey":"pl181","X":297,"Y":555},{"Bonus":0,"Continent":"K74","ID":48502,"Name":"New World","PlayerID":698152377,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48502","ServerKey":"pl181","X":420,"Y":702},{"Bonus":0,"Continent":"K66","ID":48503,"Name":"035","PlayerID":2323859,"Points":3159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48503","ServerKey":"pl181","X":670,"Y":637},{"Bonus":0,"Continent":"K63","ID":48504,"Name":"Taran","PlayerID":6180190,"Points":7843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48504","ServerKey":"pl181","X":316,"Y":612},{"Bonus":0,"Continent":"K52","ID":48505,"Name":"Wyspa 013","PlayerID":225023,"Points":5923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48505","ServerKey":"pl181","X":297,"Y":563},{"Bonus":0,"Continent":"K75","ID":48506,"Name":"Wioska barbarzyƄska 008","PlayerID":6870350,"Points":6436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48506","ServerKey":"pl181","X":560,"Y":707},{"Bonus":0,"Continent":"K33","ID":48508,"Name":"Wioska 4","PlayerID":2268889,"Points":2289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48508","ServerKey":"pl181","X":386,"Y":321},{"Bonus":0,"Continent":"K47","ID":48509,"Name":"Wioska","PlayerID":849102464,"Points":5829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48509","ServerKey":"pl181","X":706,"Y":428},{"Bonus":0,"Continent":"K66","ID":48510,"Name":"*013*","PlayerID":1205898,"Points":8015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48510","ServerKey":"pl181","X":684,"Y":617},{"Bonus":0,"Continent":"K75","ID":48511,"Name":"135 invidia","PlayerID":849093426,"Points":10802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48511","ServerKey":"pl181","X":540,"Y":708},{"Bonus":0,"Continent":"K33","ID":48512,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48512","ServerKey":"pl181","X":379,"Y":327},{"Bonus":0,"Continent":"K56","ID":48514,"Name":"Jaaa","PlayerID":698635863,"Points":10263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48514","ServerKey":"pl181","X":627,"Y":591},{"Bonus":0,"Continent":"K74","ID":48515,"Name":"027 Night Raid*","PlayerID":699684062,"Points":8960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48515","ServerKey":"pl181","X":424,"Y":706},{"Bonus":0,"Continent":"K63","ID":48517,"Name":"154","PlayerID":849099876,"Points":7957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48517","ServerKey":"pl181","X":395,"Y":687},{"Bonus":0,"Continent":"K65","ID":48519,"Name":"###120###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48519","ServerKey":"pl181","X":589,"Y":699},{"Bonus":0,"Continent":"K66","ID":48520,"Name":"Rawa Mazowiecka","PlayerID":698346318,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48520","ServerKey":"pl181","X":630,"Y":646},{"Bonus":0,"Continent":"K47","ID":48521,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48521","ServerKey":"pl181","X":716,"Y":493},{"Bonus":0,"Continent":"K36","ID":48522,"Name":"XDX","PlayerID":699098531,"Points":7892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48522","ServerKey":"pl181","X":610,"Y":311},{"Bonus":0,"Continent":"K25","ID":48523,"Name":"013","PlayerID":699818726,"Points":6901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48523","ServerKey":"pl181","X":528,"Y":291},{"Bonus":0,"Continent":"K66","ID":48524,"Name":"#Kresy","PlayerID":2665207,"Points":2651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48524","ServerKey":"pl181","X":627,"Y":677},{"Bonus":0,"Continent":"K36","ID":48525,"Name":"033","PlayerID":9148043,"Points":6393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48525","ServerKey":"pl181","X":654,"Y":350},{"Bonus":0,"Continent":"K66","ID":48526,"Name":"025","PlayerID":2323859,"Points":1967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48526","ServerKey":"pl181","X":667,"Y":640},{"Bonus":0,"Continent":"K24","ID":48527,"Name":"260...Karki98","PlayerID":6920960,"Points":4605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48527","ServerKey":"pl181","X":455,"Y":290},{"Bonus":0,"Continent":"K57","ID":48528,"Name":"Wioska 01","PlayerID":8408007,"Points":1987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48528","ServerKey":"pl181","X":717,"Y":515},{"Bonus":0,"Continent":"K63","ID":48529,"Name":"O028","PlayerID":272173,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48529","ServerKey":"pl181","X":333,"Y":635},{"Bonus":0,"Continent":"K52","ID":48530,"Name":"0000029Z","PlayerID":849089881,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48530","ServerKey":"pl181","X":288,"Y":560},{"Bonus":0,"Continent":"K63","ID":48531,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":6078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48531","ServerKey":"pl181","X":312,"Y":611},{"Bonus":0,"Continent":"K52","ID":48532,"Name":"Zzz 02 ale oco chodzi","PlayerID":849084740,"Points":5591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48532","ServerKey":"pl181","X":294,"Y":571},{"Bonus":0,"Continent":"K63","ID":48533,"Name":"Wioska 0014","PlayerID":9186126,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48533","ServerKey":"pl181","X":346,"Y":652},{"Bonus":0,"Continent":"K64","ID":48534,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48534","ServerKey":"pl181","X":405,"Y":677},{"Bonus":0,"Continent":"K42","ID":48535,"Name":"Avanti!","PlayerID":698625834,"Points":5570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48535","ServerKey":"pl181","X":288,"Y":474},{"Bonus":0,"Continent":"K33","ID":48536,"Name":"K33","PlayerID":699794765,"Points":9139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48536","ServerKey":"pl181","X":312,"Y":392},{"Bonus":0,"Continent":"K36","ID":48537,"Name":"MJ2","PlayerID":8669398,"Points":6052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48537","ServerKey":"pl181","X":684,"Y":382},{"Bonus":0,"Continent":"K24","ID":48539,"Name":"Bocian","PlayerID":947923,"Points":3409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48539","ServerKey":"pl181","X":431,"Y":292},{"Bonus":0,"Continent":"K75","ID":48540,"Name":"111 invidia","PlayerID":849093426,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48540","ServerKey":"pl181","X":514,"Y":715},{"Bonus":0,"Continent":"K46","ID":48541,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48541","ServerKey":"pl181","X":699,"Y":433},{"Bonus":0,"Continent":"K74","ID":48542,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48542","ServerKey":"pl181","X":427,"Y":704},{"Bonus":0,"Continent":"K66","ID":48543,"Name":"Wiadro08","PlayerID":8677963,"Points":7341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48543","ServerKey":"pl181","X":671,"Y":629},{"Bonus":0,"Continent":"K64","ID":48544,"Name":"113","PlayerID":849099876,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48544","ServerKey":"pl181","X":408,"Y":698},{"Bonus":0,"Continent":"K36","ID":48545,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48545","ServerKey":"pl181","X":625,"Y":331},{"Bonus":0,"Continent":"K52","ID":48546,"Name":"New WorldA","PlayerID":849084005,"Points":2329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48546","ServerKey":"pl181","X":286,"Y":526},{"Bonus":0,"Continent":"K24","ID":48547,"Name":"[0123]","PlayerID":8630972,"Points":9890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48547","ServerKey":"pl181","X":442,"Y":295},{"Bonus":0,"Continent":"K25","ID":48549,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48549","ServerKey":"pl181","X":516,"Y":287},{"Bonus":0,"Continent":"K43","ID":48550,"Name":"001e","PlayerID":8259895,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48550","ServerKey":"pl181","X":300,"Y":413},{"Bonus":0,"Continent":"K36","ID":48551,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":8827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48551","ServerKey":"pl181","X":643,"Y":336},{"Bonus":0,"Continent":"K56","ID":48552,"Name":"Wioska 10","PlayerID":849101162,"Points":4972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48552","ServerKey":"pl181","X":691,"Y":592},{"Bonus":0,"Continent":"K45","ID":48553,"Name":"104","PlayerID":8788366,"Points":9586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48553","ServerKey":"pl181","X":506,"Y":486},{"Bonus":0,"Continent":"K53","ID":48554,"Name":"Kolonia 04","PlayerID":6180190,"Points":5991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48554","ServerKey":"pl181","X":304,"Y":589},{"Bonus":0,"Continent":"K63","ID":48555,"Name":"167","PlayerID":849099876,"Points":7443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48555","ServerKey":"pl181","X":380,"Y":674},{"Bonus":0,"Continent":"K47","ID":48556,"Name":"Szara Warta","PlayerID":849101378,"Points":7430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48556","ServerKey":"pl181","X":707,"Y":441},{"Bonus":0,"Continent":"K34","ID":48557,"Name":"Wioska","PlayerID":849094789,"Points":6782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48557","ServerKey":"pl181","X":404,"Y":304},{"Bonus":0,"Continent":"K46","ID":48558,"Name":"W38","PlayerID":699524362,"Points":1931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48558","ServerKey":"pl181","X":694,"Y":414},{"Bonus":0,"Continent":"K75","ID":48559,"Name":"#K75 0013","PlayerID":699728159,"Points":7130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48559","ServerKey":"pl181","X":517,"Y":711},{"Bonus":0,"Continent":"K25","ID":48560,"Name":"sh03","PlayerID":7064954,"Points":5892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48560","ServerKey":"pl181","X":512,"Y":285},{"Bonus":0,"Continent":"K47","ID":48561,"Name":"[821] Odludzie","PlayerID":848985692,"Points":6792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48561","ServerKey":"pl181","X":710,"Y":443},{"Bonus":0,"Continent":"K52","ID":48562,"Name":"New WorldA","PlayerID":849084005,"Points":6099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48562","ServerKey":"pl181","X":291,"Y":523},{"Bonus":0,"Continent":"K25","ID":48563,"Name":"052 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48563","ServerKey":"pl181","X":548,"Y":288},{"Bonus":0,"Continent":"K33","ID":48564,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":5257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48564","ServerKey":"pl181","X":317,"Y":387},{"Bonus":0,"Continent":"K33","ID":48565,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48565","ServerKey":"pl181","X":394,"Y":356},{"Bonus":0,"Continent":"K52","ID":48566,"Name":"[0251]","PlayerID":8630972,"Points":6612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48566","ServerKey":"pl181","X":284,"Y":510},{"Bonus":0,"Continent":"K33","ID":48568,"Name":"003 JJ","PlayerID":9120206,"Points":8218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48568","ServerKey":"pl181","X":329,"Y":365},{"Bonus":1,"Continent":"K52","ID":48569,"Name":"Vvv","PlayerID":699805379,"Points":2485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48569","ServerKey":"pl181","X":285,"Y":531},{"Bonus":0,"Continent":"K35","ID":48570,"Name":"003","PlayerID":1767876,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48570","ServerKey":"pl181","X":583,"Y":319},{"Bonus":0,"Continent":"K52","ID":48571,"Name":"New WorldA","PlayerID":849084005,"Points":5516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48571","ServerKey":"pl181","X":289,"Y":542},{"Bonus":0,"Continent":"K75","ID":48572,"Name":"Bestia","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48572","ServerKey":"pl181","X":553,"Y":704},{"Bonus":0,"Continent":"K25","ID":48573,"Name":"038","PlayerID":849010255,"Points":6444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48573","ServerKey":"pl181","X":510,"Y":287},{"Bonus":0,"Continent":"K74","ID":48574,"Name":"016# Anetha","PlayerID":3933666,"Points":7071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48574","ServerKey":"pl181","X":478,"Y":717},{"Bonus":0,"Continent":"K47","ID":48575,"Name":"X003 Gwiezdna flota","PlayerID":699722599,"Points":8097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48575","ServerKey":"pl181","X":709,"Y":430},{"Bonus":0,"Continent":"K33","ID":48576,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":2405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48576","ServerKey":"pl181","X":329,"Y":376},{"Bonus":0,"Continent":"K57","ID":48577,"Name":"A#030","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48577","ServerKey":"pl181","X":716,"Y":503},{"Bonus":0,"Continent":"K52","ID":48578,"Name":"basonia","PlayerID":849101674,"Points":8346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48578","ServerKey":"pl181","X":282,"Y":501},{"Bonus":0,"Continent":"K42","ID":48579,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48579","ServerKey":"pl181","X":289,"Y":449},{"Bonus":0,"Continent":"K57","ID":48580,"Name":"020. Ebal","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48580","ServerKey":"pl181","X":713,"Y":556},{"Bonus":0,"Continent":"K46","ID":48582,"Name":"093.","PlayerID":849094609,"Points":4189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48582","ServerKey":"pl181","X":632,"Y":485},{"Bonus":0,"Continent":"K46","ID":48583,"Name":"Wioska Pawel1992","PlayerID":699738350,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48583","ServerKey":"pl181","X":693,"Y":416},{"Bonus":0,"Continent":"K36","ID":48584,"Name":"B005","PlayerID":8740199,"Points":5930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48584","ServerKey":"pl181","X":622,"Y":320},{"Bonus":0,"Continent":"K52","ID":48585,"Name":"Wyspa 012","PlayerID":225023,"Points":3841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48585","ServerKey":"pl181","X":294,"Y":566},{"Bonus":0,"Continent":"K66","ID":48586,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48586","ServerKey":"pl181","X":670,"Y":627},{"Bonus":6,"Continent":"K57","ID":48587,"Name":"CastAway #002","PlayerID":9314079,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48587","ServerKey":"pl181","X":703,"Y":585},{"Bonus":0,"Continent":"K75","ID":48588,"Name":"MERHET","PlayerID":698215322,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48588","ServerKey":"pl181","X":583,"Y":704},{"Bonus":0,"Continent":"K57","ID":48589,"Name":"079","PlayerID":7085502,"Points":6125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48589","ServerKey":"pl181","X":718,"Y":512},{"Bonus":0,"Continent":"K24","ID":48590,"Name":"Wioska barbarzyƄska","PlayerID":763529,"Points":6733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48590","ServerKey":"pl181","X":497,"Y":281},{"Bonus":0,"Continent":"K52","ID":48591,"Name":"New WorldA","PlayerID":849084005,"Points":6383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48591","ServerKey":"pl181","X":284,"Y":526},{"Bonus":0,"Continent":"K43","ID":48592,"Name":"ZZ04","PlayerID":356642,"Points":9631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48592","ServerKey":"pl181","X":309,"Y":408},{"Bonus":0,"Continent":"K52","ID":48593,"Name":"C0244","PlayerID":8841266,"Points":5008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48593","ServerKey":"pl181","X":287,"Y":546},{"Bonus":0,"Continent":"K74","ID":48594,"Name":"Raqmu","PlayerID":849089459,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48594","ServerKey":"pl181","X":457,"Y":712},{"Bonus":0,"Continent":"K64","ID":48595,"Name":"052","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48595","ServerKey":"pl181","X":405,"Y":693},{"Bonus":0,"Continent":"K24","ID":48596,"Name":"101.Stradi","PlayerID":698365960,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48596","ServerKey":"pl181","X":441,"Y":288},{"Bonus":0,"Continent":"K36","ID":48597,"Name":"048","PlayerID":698635863,"Points":8008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48597","ServerKey":"pl181","X":677,"Y":377},{"Bonus":0,"Continent":"K36","ID":48598,"Name":"Wioska barbarzyƄska III","PlayerID":848958556,"Points":2978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48598","ServerKey":"pl181","X":628,"Y":321},{"Bonus":0,"Continent":"K35","ID":48599,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":4588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48599","ServerKey":"pl181","X":574,"Y":303},{"Bonus":0,"Continent":"K47","ID":48601,"Name":"33. Wioska barbarzyƄska05","PlayerID":699804790,"Points":3368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48601","ServerKey":"pl181","X":714,"Y":469},{"Bonus":0,"Continent":"K57","ID":48602,"Name":"=081= Hampton","PlayerID":3781794,"Points":10590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48602","ServerKey":"pl181","X":703,"Y":571},{"Bonus":0,"Continent":"K24","ID":48603,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":8388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48603","ServerKey":"pl181","X":426,"Y":293},{"Bonus":0,"Continent":"K63","ID":48604,"Name":"Taran","PlayerID":6180190,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48604","ServerKey":"pl181","X":325,"Y":627},{"Bonus":0,"Continent":"K33","ID":48605,"Name":"PIROTECHNIK 009","PlayerID":849101083,"Points":3328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48605","ServerKey":"pl181","X":350,"Y":352},{"Bonus":0,"Continent":"K52","ID":48606,"Name":"Wyspa 003","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48606","ServerKey":"pl181","X":293,"Y":566},{"Bonus":0,"Continent":"K42","ID":48607,"Name":"qqqqq4","PlayerID":1095489,"Points":2205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48607","ServerKey":"pl181","X":283,"Y":482},{"Bonus":0,"Continent":"K47","ID":48608,"Name":"020 Cianwood City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48608","ServerKey":"pl181","X":716,"Y":488},{"Bonus":0,"Continent":"K43","ID":48609,"Name":"002","PlayerID":8724192,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48609","ServerKey":"pl181","X":308,"Y":401},{"Bonus":0,"Continent":"K24","ID":48610,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48610","ServerKey":"pl181","X":426,"Y":290},{"Bonus":0,"Continent":"K42","ID":48611,"Name":"Avanti!","PlayerID":698625834,"Points":6729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48611","ServerKey":"pl181","X":284,"Y":487},{"Bonus":0,"Continent":"K36","ID":48612,"Name":"B024","PlayerID":8740199,"Points":10071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48612","ServerKey":"pl181","X":625,"Y":330},{"Bonus":0,"Continent":"K33","ID":48613,"Name":"Mniejsze zƂo 0090","PlayerID":699794765,"Points":5079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48613","ServerKey":"pl181","X":311,"Y":392},{"Bonus":9,"Continent":"K53","ID":48614,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":9091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48614","ServerKey":"pl181","X":302,"Y":569},{"Bonus":0,"Continent":"K63","ID":48616,"Name":"O030","PlayerID":272173,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48616","ServerKey":"pl181","X":336,"Y":637},{"Bonus":0,"Continent":"K57","ID":48617,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48617","ServerKey":"pl181","X":710,"Y":531},{"Bonus":0,"Continent":"K66","ID":48618,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":5444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48618","ServerKey":"pl181","X":616,"Y":685},{"Bonus":0,"Continent":"K75","ID":48619,"Name":"023 szczęƛciarz","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48619","ServerKey":"pl181","X":543,"Y":704},{"Bonus":0,"Continent":"K34","ID":48620,"Name":"Ultimate Farming Simulator 4","PlayerID":699872032,"Points":8530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48620","ServerKey":"pl181","X":414,"Y":301},{"Bonus":0,"Continent":"K35","ID":48621,"Name":"K35 - [017] Before Land","PlayerID":699088769,"Points":9649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48621","ServerKey":"pl181","X":587,"Y":304},{"Bonus":0,"Continent":"K63","ID":48622,"Name":"O071","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48622","ServerKey":"pl181","X":328,"Y":630},{"Bonus":0,"Continent":"K24","ID":48623,"Name":"192...segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48623","ServerKey":"pl181","X":431,"Y":293},{"Bonus":0,"Continent":"K75","ID":48624,"Name":"3.Birmingham","PlayerID":698215322,"Points":9039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48624","ServerKey":"pl181","X":549,"Y":715},{"Bonus":0,"Continent":"K63","ID":48625,"Name":"C014","PlayerID":699383279,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48625","ServerKey":"pl181","X":370,"Y":669},{"Bonus":0,"Continent":"K57","ID":48626,"Name":"Z.06","PlayerID":699737356,"Points":3907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48626","ServerKey":"pl181","X":700,"Y":579},{"Bonus":0,"Continent":"K24","ID":48627,"Name":"????","PlayerID":698489071,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48627","ServerKey":"pl181","X":472,"Y":282},{"Bonus":0,"Continent":"K57","ID":48628,"Name":"Wioska Turystyczna 009","PlayerID":7588382,"Points":3008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48628","ServerKey":"pl181","X":701,"Y":507},{"Bonus":0,"Continent":"K52","ID":48629,"Name":"New WorldA","PlayerID":849084005,"Points":7479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48629","ServerKey":"pl181","X":292,"Y":539},{"Bonus":0,"Continent":"K75","ID":48630,"Name":"Sosonowiec","PlayerID":6116940,"Points":6419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48630","ServerKey":"pl181","X":532,"Y":709},{"Bonus":0,"Continent":"K36","ID":48631,"Name":"Wioska barbarzyƄska","PlayerID":849005829,"Points":2434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48631","ServerKey":"pl181","X":630,"Y":333},{"Bonus":5,"Continent":"K42","ID":48633,"Name":"006","PlayerID":6131106,"Points":6174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48633","ServerKey":"pl181","X":298,"Y":428},{"Bonus":0,"Continent":"K47","ID":48634,"Name":"069.","PlayerID":849094609,"Points":3528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48634","ServerKey":"pl181","X":715,"Y":472},{"Bonus":0,"Continent":"K57","ID":48635,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48635","ServerKey":"pl181","X":713,"Y":548},{"Bonus":0,"Continent":"K47","ID":48637,"Name":"Wioska Turystyczna 008","PlayerID":7588382,"Points":4810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48637","ServerKey":"pl181","X":709,"Y":476},{"Bonus":0,"Continent":"K33","ID":48638,"Name":"Pax","PlayerID":849101694,"Points":11076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48638","ServerKey":"pl181","X":351,"Y":340},{"Bonus":0,"Continent":"K66","ID":48639,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48639","ServerKey":"pl181","X":660,"Y":650},{"Bonus":0,"Continent":"K25","ID":48640,"Name":"36. Nice","PlayerID":849054951,"Points":7344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48640","ServerKey":"pl181","X":559,"Y":289},{"Bonus":0,"Continent":"K57","ID":48641,"Name":"CastAway !008","PlayerID":9314079,"Points":9435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48641","ServerKey":"pl181","X":702,"Y":582},{"Bonus":0,"Continent":"K66","ID":48643,"Name":"*010*","PlayerID":1205898,"Points":7782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48643","ServerKey":"pl181","X":680,"Y":622},{"Bonus":0,"Continent":"K34","ID":48644,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48644","ServerKey":"pl181","X":404,"Y":310},{"Bonus":0,"Continent":"K33","ID":48645,"Name":"010","PlayerID":849101205,"Points":4127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48645","ServerKey":"pl181","X":352,"Y":349},{"Bonus":9,"Continent":"K64","ID":48648,"Name":"007 A","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48648","ServerKey":"pl181","X":410,"Y":690},{"Bonus":0,"Continent":"K34","ID":48650,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48650","ServerKey":"pl181","X":408,"Y":304},{"Bonus":0,"Continent":"K53","ID":48651,"Name":"4. Vermithor","PlayerID":849089499,"Points":2645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48651","ServerKey":"pl181","X":302,"Y":584},{"Bonus":0,"Continent":"K75","ID":48652,"Name":"-26-","PlayerID":849032414,"Points":4389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48652","ServerKey":"pl181","X":567,"Y":710},{"Bonus":0,"Continent":"K65","ID":48654,"Name":"PoƂudnie.015","PlayerID":873575,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48654","ServerKey":"pl181","X":551,"Y":686},{"Bonus":0,"Continent":"K35","ID":48655,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48655","ServerKey":"pl181","X":592,"Y":302},{"Bonus":0,"Continent":"K25","ID":48656,"Name":"--022--","PlayerID":542253,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48656","ServerKey":"pl181","X":575,"Y":297},{"Bonus":0,"Continent":"K42","ID":48657,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48657","ServerKey":"pl181","X":291,"Y":458},{"Bonus":0,"Continent":"K57","ID":48658,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48658","ServerKey":"pl181","X":707,"Y":555},{"Bonus":0,"Continent":"K57","ID":48659,"Name":"045. Jacksona","PlayerID":1601917,"Points":8702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48659","ServerKey":"pl181","X":703,"Y":556},{"Bonus":0,"Continent":"K63","ID":48660,"Name":"O069","PlayerID":272173,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48660","ServerKey":"pl181","X":329,"Y":632},{"Bonus":0,"Continent":"K63","ID":48661,"Name":"Wioska 0009","PlayerID":9186126,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48661","ServerKey":"pl181","X":344,"Y":654},{"Bonus":0,"Continent":"K25","ID":48662,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48662","ServerKey":"pl181","X":502,"Y":282},{"Bonus":0,"Continent":"K57","ID":48663,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":7833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48663","ServerKey":"pl181","X":710,"Y":502},{"Bonus":0,"Continent":"K43","ID":48665,"Name":"BANG","PlayerID":699127156,"Points":1959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48665","ServerKey":"pl181","X":310,"Y":407},{"Bonus":0,"Continent":"K47","ID":48666,"Name":"Gombao 33","PlayerID":699785935,"Points":8034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48666","ServerKey":"pl181","X":701,"Y":438},{"Bonus":0,"Continent":"K65","ID":48667,"Name":"NBT P","PlayerID":849047044,"Points":8588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48667","ServerKey":"pl181","X":595,"Y":692},{"Bonus":0,"Continent":"K24","ID":48668,"Name":"Bydgoszcz","PlayerID":699278528,"Points":9765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48668","ServerKey":"pl181","X":499,"Y":285},{"Bonus":0,"Continent":"K47","ID":48669,"Name":"Borubar 2","PlayerID":113796,"Points":2120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48669","ServerKey":"pl181","X":710,"Y":465},{"Bonus":0,"Continent":"K63","ID":48670,"Name":"C090","PlayerID":699383279,"Points":6983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48670","ServerKey":"pl181","X":361,"Y":662},{"Bonus":0,"Continent":"K63","ID":48672,"Name":"Psycha Siada","PlayerID":8099868,"Points":9099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48672","ServerKey":"pl181","X":337,"Y":647},{"Bonus":0,"Continent":"K63","ID":48673,"Name":"0129","PlayerID":7085510,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48673","ServerKey":"pl181","X":389,"Y":685},{"Bonus":5,"Continent":"K24","ID":48674,"Name":"????","PlayerID":698489071,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48674","ServerKey":"pl181","X":493,"Y":281},{"Bonus":0,"Continent":"K63","ID":48675,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48675","ServerKey":"pl181","X":338,"Y":646},{"Bonus":0,"Continent":"K47","ID":48677,"Name":"Wioska Turystyczna 004","PlayerID":7588382,"Points":7357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48677","ServerKey":"pl181","X":715,"Y":464},{"Bonus":0,"Continent":"K66","ID":48678,"Name":"*016*","PlayerID":1205898,"Points":5920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48678","ServerKey":"pl181","X":675,"Y":621},{"Bonus":0,"Continent":"K63","ID":48679,"Name":"O015","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48679","ServerKey":"pl181","X":338,"Y":634},{"Bonus":0,"Continent":"K24","ID":48680,"Name":".achim.","PlayerID":6936607,"Points":8107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48680","ServerKey":"pl181","X":487,"Y":287},{"Bonus":0,"Continent":"K47","ID":48681,"Name":"024 Littleroot Town","PlayerID":699441366,"Points":7678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48681","ServerKey":"pl181","X":719,"Y":483},{"Bonus":0,"Continent":"K75","ID":48682,"Name":"Wioska barbarzyƄska","PlayerID":699837483,"Points":4669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48682","ServerKey":"pl181","X":589,"Y":701},{"Bonus":0,"Continent":"K56","ID":48684,"Name":"Wioska 011","PlayerID":7999103,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48684","ServerKey":"pl181","X":696,"Y":595},{"Bonus":0,"Continent":"K25","ID":48685,"Name":"D002","PlayerID":699299123,"Points":8088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48685","ServerKey":"pl181","X":561,"Y":297},{"Bonus":0,"Continent":"K63","ID":48686,"Name":"Wioska 0002","PlayerID":9186126,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48686","ServerKey":"pl181","X":342,"Y":650},{"Bonus":0,"Continent":"K63","ID":48687,"Name":"Taran","PlayerID":6180190,"Points":9212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48687","ServerKey":"pl181","X":318,"Y":617},{"Bonus":0,"Continent":"K24","ID":48688,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48688","ServerKey":"pl181","X":418,"Y":296},{"Bonus":0,"Continent":"K33","ID":48689,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48689","ServerKey":"pl181","X":333,"Y":356},{"Bonus":0,"Continent":"K57","ID":48690,"Name":"Wioska barbarzyƄskaaaa","PlayerID":17714,"Points":9393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48690","ServerKey":"pl181","X":716,"Y":535},{"Bonus":0,"Continent":"K36","ID":48691,"Name":"Wioska-014-","PlayerID":7675610,"Points":1415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48691","ServerKey":"pl181","X":631,"Y":331},{"Bonus":0,"Continent":"K33","ID":48692,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48692","ServerKey":"pl181","X":315,"Y":399},{"Bonus":0,"Continent":"K56","ID":48693,"Name":"EE 007","PlayerID":849100149,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48693","ServerKey":"pl181","X":698,"Y":582},{"Bonus":0,"Continent":"K24","ID":48694,"Name":"Winterfell.014","PlayerID":848918380,"Points":8270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48694","ServerKey":"pl181","X":468,"Y":285},{"Bonus":0,"Continent":"K64","ID":48695,"Name":"psycha sitting","PlayerID":699736927,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48695","ServerKey":"pl181","X":415,"Y":676},{"Bonus":0,"Continent":"K33","ID":48696,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":7679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48696","ServerKey":"pl181","X":355,"Y":346},{"Bonus":0,"Continent":"K63","ID":48697,"Name":"Taran","PlayerID":6180190,"Points":8003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48697","ServerKey":"pl181","X":320,"Y":620},{"Bonus":0,"Continent":"K75","ID":48698,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":2261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48698","ServerKey":"pl181","X":506,"Y":715},{"Bonus":0,"Continent":"K52","ID":48700,"Name":"[D]_[006] Dejv.oldplyr","PlayerID":699380607,"Points":5813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48700","ServerKey":"pl181","X":285,"Y":506},{"Bonus":0,"Continent":"K52","ID":48701,"Name":"EO EO","PlayerID":699697558,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48701","ServerKey":"pl181","X":288,"Y":519},{"Bonus":0,"Continent":"K33","ID":48702,"Name":"Wioska barbarzyƄska 011","PlayerID":849068662,"Points":5146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48702","ServerKey":"pl181","X":382,"Y":314},{"Bonus":2,"Continent":"K75","ID":48703,"Name":"114 invidia","PlayerID":849093426,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48703","ServerKey":"pl181","X":507,"Y":716},{"Bonus":0,"Continent":"K57","ID":48704,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":4199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48704","ServerKey":"pl181","X":712,"Y":540},{"Bonus":0,"Continent":"K25","ID":48705,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48705","ServerKey":"pl181","X":506,"Y":280},{"Bonus":0,"Continent":"K33","ID":48706,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48706","ServerKey":"pl181","X":368,"Y":330},{"Bonus":0,"Continent":"K66","ID":48707,"Name":"Wiadro13","PlayerID":8677963,"Points":6225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48707","ServerKey":"pl181","X":677,"Y":629},{"Bonus":0,"Continent":"K63","ID":48710,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48710","ServerKey":"pl181","X":393,"Y":692},{"Bonus":0,"Continent":"K66","ID":48711,"Name":"111","PlayerID":3589487,"Points":7196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48711","ServerKey":"pl181","X":683,"Y":612},{"Bonus":0,"Continent":"K24","ID":48712,"Name":"061.Stradi","PlayerID":698365960,"Points":10167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48712","ServerKey":"pl181","X":427,"Y":296},{"Bonus":0,"Continent":"K63","ID":48713,"Name":"O053","PlayerID":272173,"Points":9867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48713","ServerKey":"pl181","X":331,"Y":634},{"Bonus":0,"Continent":"K53","ID":48714,"Name":"Wioska MrZibo","PlayerID":7695659,"Points":1129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48714","ServerKey":"pl181","X":310,"Y":596},{"Bonus":0,"Continent":"K24","ID":48715,"Name":"K24 - [004] Before Land","PlayerID":699088769,"Points":6111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48715","ServerKey":"pl181","X":435,"Y":291},{"Bonus":0,"Continent":"K47","ID":48716,"Name":"A#039","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48716","ServerKey":"pl181","X":713,"Y":491},{"Bonus":5,"Continent":"K63","ID":48717,"Name":"C005","PlayerID":699383279,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48717","ServerKey":"pl181","X":369,"Y":667},{"Bonus":0,"Continent":"K25","ID":48718,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48718","ServerKey":"pl181","X":501,"Y":284},{"Bonus":0,"Continent":"K66","ID":48720,"Name":"1. Wioska barbarzyƄska","PlayerID":1049851,"Points":3127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48720","ServerKey":"pl181","X":684,"Y":622},{"Bonus":0,"Continent":"K52","ID":48722,"Name":"Vvvvvv","PlayerID":699805379,"Points":1707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48722","ServerKey":"pl181","X":282,"Y":533},{"Bonus":0,"Continent":"K75","ID":48723,"Name":"Kurnik","PlayerID":699603116,"Points":8883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48723","ServerKey":"pl181","X":549,"Y":708},{"Bonus":0,"Continent":"K43","ID":48725,"Name":"001a","PlayerID":8259895,"Points":4773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48725","ServerKey":"pl181","X":301,"Y":415},{"Bonus":0,"Continent":"K66","ID":48726,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":4516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48726","ServerKey":"pl181","X":614,"Y":684},{"Bonus":0,"Continent":"K75","ID":48727,"Name":"yks","PlayerID":9016560,"Points":10449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48727","ServerKey":"pl181","X":542,"Y":708},{"Bonus":0,"Continent":"K35","ID":48728,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48728","ServerKey":"pl181","X":582,"Y":300},{"Bonus":0,"Continent":"K63","ID":48729,"Name":"C007","PlayerID":699383279,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48729","ServerKey":"pl181","X":350,"Y":660},{"Bonus":0,"Continent":"K34","ID":48730,"Name":"223","PlayerID":698365960,"Points":4801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48730","ServerKey":"pl181","X":421,"Y":305},{"Bonus":0,"Continent":"K35","ID":48731,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48731","ServerKey":"pl181","X":596,"Y":302},{"Bonus":0,"Continent":"K66","ID":48732,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48732","ServerKey":"pl181","X":646,"Y":653},{"Bonus":0,"Continent":"K63","ID":48733,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":8546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48733","ServerKey":"pl181","X":328,"Y":625},{"Bonus":0,"Continent":"K75","ID":48734,"Name":"006","PlayerID":698996782,"Points":8640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48734","ServerKey":"pl181","X":532,"Y":715},{"Bonus":0,"Continent":"K33","ID":48735,"Name":"CiemnogrĂłd #5","PlayerID":849096958,"Points":7821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48735","ServerKey":"pl181","X":335,"Y":363},{"Bonus":0,"Continent":"K75","ID":48736,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":5176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48736","ServerKey":"pl181","X":550,"Y":708},{"Bonus":0,"Continent":"K74","ID":48737,"Name":"New World","PlayerID":698152377,"Points":9243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48737","ServerKey":"pl181","X":439,"Y":705},{"Bonus":0,"Continent":"K66","ID":48738,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48738","ServerKey":"pl181","X":639,"Y":661},{"Bonus":0,"Continent":"K75","ID":48739,"Name":"Wioska barbarzyƄska","PlayerID":6299408,"Points":7756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48739","ServerKey":"pl181","X":557,"Y":712},{"Bonus":0,"Continent":"K47","ID":48740,"Name":"C.043","PlayerID":9188016,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48740","ServerKey":"pl181","X":711,"Y":471},{"Bonus":0,"Continent":"K43","ID":48741,"Name":"002g","PlayerID":8259895,"Points":5367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48741","ServerKey":"pl181","X":302,"Y":407},{"Bonus":0,"Continent":"K57","ID":48742,"Name":"081 Hjubal","PlayerID":2135129,"Points":3505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48742","ServerKey":"pl181","X":711,"Y":507},{"Bonus":0,"Continent":"K63","ID":48743,"Name":"BacĂłwka","PlayerID":698167138,"Points":1962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48743","ServerKey":"pl181","X":308,"Y":602},{"Bonus":0,"Continent":"K42","ID":48745,"Name":"002c","PlayerID":8259895,"Points":5141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48745","ServerKey":"pl181","X":299,"Y":410},{"Bonus":0,"Continent":"K57","ID":48746,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48746","ServerKey":"pl181","X":716,"Y":525},{"Bonus":0,"Continent":"K75","ID":48747,"Name":"069 invidia","PlayerID":849093426,"Points":6179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48747","ServerKey":"pl181","X":538,"Y":715},{"Bonus":0,"Continent":"K75","ID":48748,"Name":"Wioska barbarzyƄska","PlayerID":699728159,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48748","ServerKey":"pl181","X":514,"Y":719},{"Bonus":0,"Continent":"K25","ID":48749,"Name":"Wancki","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48749","ServerKey":"pl181","X":517,"Y":286},{"Bonus":0,"Continent":"K47","ID":48753,"Name":"The Unforgiven","PlayerID":699785935,"Points":3607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48753","ServerKey":"pl181","X":701,"Y":411},{"Bonus":0,"Continent":"K63","ID":48755,"Name":"O045","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48755","ServerKey":"pl181","X":327,"Y":636},{"Bonus":0,"Continent":"K52","ID":48757,"Name":"New WorldA","PlayerID":849084005,"Points":3170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48757","ServerKey":"pl181","X":281,"Y":511},{"Bonus":0,"Continent":"K35","ID":48759,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48759","ServerKey":"pl181","X":577,"Y":301},{"Bonus":0,"Continent":"K52","ID":48762,"Name":"010 Kalisz","PlayerID":9235561,"Points":3797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48762","ServerKey":"pl181","X":288,"Y":532},{"Bonus":0,"Continent":"K24","ID":48764,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":5663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48764","ServerKey":"pl181","X":445,"Y":292},{"Bonus":0,"Continent":"K74","ID":48766,"Name":"Bagno 5","PlayerID":848883684,"Points":9433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48766","ServerKey":"pl181","X":480,"Y":717},{"Bonus":0,"Continent":"K47","ID":48768,"Name":"=LM=","PlayerID":849101881,"Points":3879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48768","ServerKey":"pl181","X":700,"Y":419},{"Bonus":0,"Continent":"K33","ID":48770,"Name":"SpĂłĆșnienie","PlayerID":849076515,"Points":8576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48770","ServerKey":"pl181","X":306,"Y":396},{"Bonus":0,"Continent":"K25","ID":48772,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48772","ServerKey":"pl181","X":571,"Y":297},{"Bonus":3,"Continent":"K66","ID":48773,"Name":"009.","PlayerID":699695167,"Points":3813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48773","ServerKey":"pl181","X":624,"Y":676},{"Bonus":0,"Continent":"K74","ID":48775,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":5089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48775","ServerKey":"pl181","X":486,"Y":712},{"Bonus":0,"Continent":"K53","ID":48776,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":3988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48776","ServerKey":"pl181","X":303,"Y":593},{"Bonus":0,"Continent":"K52","ID":48777,"Name":"Wyspa 033","PlayerID":225023,"Points":1554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48777","ServerKey":"pl181","X":292,"Y":563},{"Bonus":0,"Continent":"K57","ID":48778,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":4484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48778","ServerKey":"pl181","X":716,"Y":536},{"Bonus":0,"Continent":"K42","ID":48779,"Name":"01 goƛć018443.","PlayerID":849018442,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48779","ServerKey":"pl181","X":287,"Y":446},{"Bonus":0,"Continent":"K47","ID":48780,"Name":"A#016","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48780","ServerKey":"pl181","X":710,"Y":490},{"Bonus":0,"Continent":"K33","ID":48781,"Name":"Wioska010","PlayerID":699711926,"Points":8752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48781","ServerKey":"pl181","X":343,"Y":347},{"Bonus":0,"Continent":"K24","ID":48782,"Name":"304","PlayerID":7271812,"Points":6498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48782","ServerKey":"pl181","X":450,"Y":289},{"Bonus":1,"Continent":"K24","ID":48783,"Name":"Bialystok","PlayerID":699278528,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48783","ServerKey":"pl181","X":487,"Y":281},{"Bonus":0,"Continent":"K66","ID":48784,"Name":"*029*","PlayerID":1205898,"Points":2286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48784","ServerKey":"pl181","X":681,"Y":624},{"Bonus":0,"Continent":"K66","ID":48785,"Name":"#153#","PlayerID":692803,"Points":2851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48785","ServerKey":"pl181","X":649,"Y":660},{"Bonus":0,"Continent":"K53","ID":48787,"Name":"Początek","PlayerID":7842579,"Points":5071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48787","ServerKey":"pl181","X":305,"Y":582},{"Bonus":0,"Continent":"K36","ID":48789,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":4147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48789","ServerKey":"pl181","X":658,"Y":352},{"Bonus":0,"Continent":"K57","ID":48790,"Name":"A#001","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48790","ServerKey":"pl181","X":718,"Y":520},{"Bonus":0,"Continent":"K74","ID":48791,"Name":"Kurnik","PlayerID":699603116,"Points":9778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48791","ServerKey":"pl181","X":464,"Y":714},{"Bonus":0,"Continent":"K75","ID":48792,"Name":"#K75 0024","PlayerID":699728159,"Points":4358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48792","ServerKey":"pl181","X":513,"Y":714},{"Bonus":0,"Continent":"K47","ID":48793,"Name":"08 Winko","PlayerID":849101845,"Points":9361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48793","ServerKey":"pl181","X":706,"Y":454},{"Bonus":0,"Continent":"K25","ID":48794,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48794","ServerKey":"pl181","X":507,"Y":283},{"Bonus":0,"Continent":"K24","ID":48795,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":4251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48795","ServerKey":"pl181","X":434,"Y":295},{"Bonus":0,"Continent":"K42","ID":48796,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48796","ServerKey":"pl181","X":282,"Y":485},{"Bonus":0,"Continent":"K33","ID":48797,"Name":"...","PlayerID":699657450,"Points":3702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48797","ServerKey":"pl181","X":340,"Y":362},{"Bonus":8,"Continent":"K57","ID":48798,"Name":"A#003","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48798","ServerKey":"pl181","X":712,"Y":514},{"Bonus":0,"Continent":"K36","ID":48799,"Name":"002","PlayerID":848889850,"Points":3654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48799","ServerKey":"pl181","X":652,"Y":342},{"Bonus":0,"Continent":"K42","ID":48800,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48800","ServerKey":"pl181","X":280,"Y":481},{"Bonus":0,"Continent":"K64","ID":48801,"Name":"111","PlayerID":849099876,"Points":9180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48801","ServerKey":"pl181","X":413,"Y":696},{"Bonus":0,"Continent":"K46","ID":48802,"Name":"Manowce","PlayerID":699785935,"Points":5933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48802","ServerKey":"pl181","X":690,"Y":405},{"Bonus":5,"Continent":"K33","ID":48803,"Name":"Szlachcic","PlayerID":698160606,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48803","ServerKey":"pl181","X":381,"Y":315},{"Bonus":0,"Continent":"K66","ID":48805,"Name":"*011*","PlayerID":1205898,"Points":8491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48805","ServerKey":"pl181","X":680,"Y":624},{"Bonus":0,"Continent":"K52","ID":48807,"Name":"Początek","PlayerID":7842579,"Points":9545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48807","ServerKey":"pl181","X":299,"Y":579},{"Bonus":0,"Continent":"K66","ID":48808,"Name":"komandos48","PlayerID":7976264,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48808","ServerKey":"pl181","X":648,"Y":661},{"Bonus":0,"Continent":"K66","ID":48809,"Name":"024 Wioska barbarzyƄska","PlayerID":699346280,"Points":7630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48809","ServerKey":"pl181","X":600,"Y":687},{"Bonus":0,"Continent":"K33","ID":48810,"Name":"166...J","PlayerID":6920960,"Points":5536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48810","ServerKey":"pl181","X":397,"Y":313},{"Bonus":0,"Continent":"K66","ID":48811,"Name":"a-5","PlayerID":848921861,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48811","ServerKey":"pl181","X":677,"Y":615},{"Bonus":0,"Continent":"K74","ID":48812,"Name":"002 - Budowanko!","PlayerID":7540891,"Points":10015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48812","ServerKey":"pl181","X":488,"Y":716},{"Bonus":0,"Continent":"K57","ID":48813,"Name":"Wioska6","PlayerID":699266530,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48813","ServerKey":"pl181","X":707,"Y":575},{"Bonus":0,"Continent":"K33","ID":48814,"Name":"154...D","PlayerID":6920960,"Points":7760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48814","ServerKey":"pl181","X":399,"Y":309},{"Bonus":0,"Continent":"K33","ID":48815,"Name":"009. Boscaiola","PlayerID":849102092,"Points":5158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48815","ServerKey":"pl181","X":313,"Y":391},{"Bonus":0,"Continent":"K47","ID":48816,"Name":"Kolorowe Jarmarki","PlayerID":699785935,"Points":6003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48816","ServerKey":"pl181","X":700,"Y":425},{"Bonus":0,"Continent":"K33","ID":48817,"Name":"WIOSKA 02","PlayerID":698757439,"Points":7767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48817","ServerKey":"pl181","X":341,"Y":347},{"Bonus":0,"Continent":"K66","ID":48818,"Name":"wy...nic","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48818","ServerKey":"pl181","X":600,"Y":697},{"Bonus":0,"Continent":"K57","ID":48819,"Name":"=021= Wioska barbarzyƄska","PlayerID":3781794,"Points":8486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48819","ServerKey":"pl181","X":709,"Y":565},{"Bonus":0,"Continent":"K47","ID":48820,"Name":"Nocny Fort","PlayerID":849101378,"Points":9103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48820","ServerKey":"pl181","X":705,"Y":434},{"Bonus":0,"Continent":"K43","ID":48821,"Name":"003","PlayerID":8259895,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48821","ServerKey":"pl181","X":303,"Y":412},{"Bonus":0,"Continent":"K74","ID":48822,"Name":"New World","PlayerID":698152377,"Points":9910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48822","ServerKey":"pl181","X":433,"Y":708},{"Bonus":0,"Continent":"K66","ID":48823,"Name":"044","PlayerID":699695167,"Points":3034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48823","ServerKey":"pl181","X":634,"Y":668},{"Bonus":0,"Continent":"K47","ID":48824,"Name":"WieĆŒa Cieni","PlayerID":849101378,"Points":9037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48824","ServerKey":"pl181","X":709,"Y":437},{"Bonus":0,"Continent":"K63","ID":48825,"Name":"O031","PlayerID":272173,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48825","ServerKey":"pl181","X":332,"Y":637},{"Bonus":0,"Continent":"K36","ID":48826,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48826","ServerKey":"pl181","X":632,"Y":324},{"Bonus":0,"Continent":"K57","ID":48827,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":7015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48827","ServerKey":"pl181","X":713,"Y":540},{"Bonus":0,"Continent":"K52","ID":48828,"Name":"Wioska franka","PlayerID":849101771,"Points":4961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48828","ServerKey":"pl181","X":294,"Y":576},{"Bonus":0,"Continent":"K34","ID":48829,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48829","ServerKey":"pl181","X":421,"Y":300},{"Bonus":0,"Continent":"K75","ID":48830,"Name":"#0079","PlayerID":1536231,"Points":4147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48830","ServerKey":"pl181","X":573,"Y":706},{"Bonus":0,"Continent":"K66","ID":48831,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48831","ServerKey":"pl181","X":652,"Y":654},{"Bonus":0,"Continent":"K52","ID":48832,"Name":"Wioska barbarzyƄska","PlayerID":849101674,"Points":5438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48832","ServerKey":"pl181","X":280,"Y":501},{"Bonus":0,"Continent":"K57","ID":48833,"Name":"=130= Mascov","PlayerID":3781794,"Points":10946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48833","ServerKey":"pl181","X":702,"Y":566},{"Bonus":0,"Continent":"K36","ID":48834,"Name":"*024","PlayerID":7758085,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48834","ServerKey":"pl181","X":676,"Y":372},{"Bonus":0,"Continent":"K36","ID":48835,"Name":"Bigosowy2","PlayerID":849095800,"Points":4190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48835","ServerKey":"pl181","X":678,"Y":370},{"Bonus":0,"Continent":"K65","ID":48836,"Name":"###121###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48836","ServerKey":"pl181","X":596,"Y":693},{"Bonus":0,"Continent":"K52","ID":48838,"Name":"Cisza","PlayerID":698769107,"Points":5914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48838","ServerKey":"pl181","X":290,"Y":551},{"Bonus":0,"Continent":"K36","ID":48840,"Name":"wioska","PlayerID":849102068,"Points":10353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48840","ServerKey":"pl181","X":635,"Y":329},{"Bonus":0,"Continent":"K74","ID":48841,"Name":"037.","PlayerID":849034882,"Points":9052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48841","ServerKey":"pl181","X":453,"Y":710},{"Bonus":0,"Continent":"K33","ID":48842,"Name":"CiemnogrĂłd #10","PlayerID":849096958,"Points":4932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48842","ServerKey":"pl181","X":335,"Y":361},{"Bonus":0,"Continent":"K33","ID":48843,"Name":"020. Gorgonzola e noci","PlayerID":849102092,"Points":1976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48843","ServerKey":"pl181","X":323,"Y":379},{"Bonus":5,"Continent":"K35","ID":48844,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48844","ServerKey":"pl181","X":594,"Y":301},{"Bonus":0,"Continent":"K52","ID":48845,"Name":"New WorldA","PlayerID":849084005,"Points":4647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48845","ServerKey":"pl181","X":288,"Y":550},{"Bonus":0,"Continent":"K36","ID":48846,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48846","ServerKey":"pl181","X":633,"Y":327},{"Bonus":0,"Continent":"K35","ID":48847,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":5393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48847","ServerKey":"pl181","X":594,"Y":309},{"Bonus":0,"Continent":"K25","ID":48848,"Name":"XXXX","PlayerID":849054951,"Points":9236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48848","ServerKey":"pl181","X":567,"Y":295},{"Bonus":0,"Continent":"K64","ID":48849,"Name":"145","PlayerID":849099876,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48849","ServerKey":"pl181","X":403,"Y":689},{"Bonus":0,"Continent":"K25","ID":48850,"Name":"--006--","PlayerID":542253,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48850","ServerKey":"pl181","X":568,"Y":295},{"Bonus":0,"Continent":"K63","ID":48851,"Name":"072","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48851","ServerKey":"pl181","X":398,"Y":691},{"Bonus":0,"Continent":"K36","ID":48852,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48852","ServerKey":"pl181","X":642,"Y":334},{"Bonus":0,"Continent":"K63","ID":48853,"Name":"Psycha Siada","PlayerID":8099868,"Points":9222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48853","ServerKey":"pl181","X":339,"Y":645},{"Bonus":0,"Continent":"K42","ID":48854,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":4021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48854","ServerKey":"pl181","X":281,"Y":482},{"Bonus":0,"Continent":"K47","ID":48856,"Name":"PP030 Suna","PlayerID":8096537,"Points":9356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48856","ServerKey":"pl181","X":718,"Y":491},{"Bonus":0,"Continent":"K52","ID":48858,"Name":"New WorldA","PlayerID":849084005,"Points":9307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48858","ServerKey":"pl181","X":290,"Y":534},{"Bonus":0,"Continent":"K42","ID":48859,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48859","ServerKey":"pl181","X":280,"Y":483},{"Bonus":0,"Continent":"K24","ID":48860,"Name":"Wioska barbarzyƄska","PlayerID":849102150,"Points":2725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48860","ServerKey":"pl181","X":421,"Y":296},{"Bonus":0,"Continent":"K33","ID":48861,"Name":"A-003","PlayerID":699406247,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48861","ServerKey":"pl181","X":323,"Y":370},{"Bonus":0,"Continent":"K75","ID":48863,"Name":"kathare","PlayerID":873575,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48863","ServerKey":"pl181","X":537,"Y":716},{"Bonus":0,"Continent":"K66","ID":48864,"Name":"komandos","PlayerID":7976264,"Points":9308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48864","ServerKey":"pl181","X":641,"Y":668},{"Bonus":2,"Continent":"K25","ID":48865,"Name":"Rivia","PlayerID":849054951,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48865","ServerKey":"pl181","X":557,"Y":294},{"Bonus":0,"Continent":"K66","ID":48866,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48866","ServerKey":"pl181","X":662,"Y":634},{"Bonus":4,"Continent":"K66","ID":48867,"Name":"044 sebaseba1991","PlayerID":699346280,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48867","ServerKey":"pl181","X":624,"Y":679},{"Bonus":0,"Continent":"K36","ID":48869,"Name":"Jeszcze stoję xd","PlayerID":9291984,"Points":4052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48869","ServerKey":"pl181","X":647,"Y":345},{"Bonus":0,"Continent":"K47","ID":48870,"Name":"077 Astapor","PlayerID":2135129,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48870","ServerKey":"pl181","X":706,"Y":424},{"Bonus":0,"Continent":"K42","ID":48872,"Name":"Avanti!","PlayerID":698625834,"Points":7524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48872","ServerKey":"pl181","X":287,"Y":476},{"Bonus":0,"Continent":"K57","ID":48873,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48873","ServerKey":"pl181","X":713,"Y":539},{"Bonus":0,"Continent":"K24","ID":48874,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48874","ServerKey":"pl181","X":429,"Y":294},{"Bonus":6,"Continent":"K33","ID":48875,"Name":"009","PlayerID":699660539,"Points":4205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48875","ServerKey":"pl181","X":386,"Y":317},{"Bonus":0,"Continent":"K57","ID":48876,"Name":"CastAway #006","PlayerID":9314079,"Points":7637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48876","ServerKey":"pl181","X":702,"Y":586},{"Bonus":0,"Continent":"K52","ID":48878,"Name":"New WorldA","PlayerID":849084005,"Points":5832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48878","ServerKey":"pl181","X":288,"Y":522},{"Bonus":0,"Continent":"K74","ID":48879,"Name":"Kurnik","PlayerID":699603116,"Points":5942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48879","ServerKey":"pl181","X":443,"Y":710},{"Bonus":0,"Continent":"K33","ID":48880,"Name":"=0020=","PlayerID":698231772,"Points":8322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48880","ServerKey":"pl181","X":389,"Y":310},{"Bonus":0,"Continent":"K75","ID":48881,"Name":"-20-","PlayerID":849032414,"Points":6134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48881","ServerKey":"pl181","X":573,"Y":704},{"Bonus":0,"Continent":"K24","ID":48882,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48882","ServerKey":"pl181","X":418,"Y":299},{"Bonus":0,"Continent":"K33","ID":48883,"Name":"...","PlayerID":699657450,"Points":3221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48883","ServerKey":"pl181","X":341,"Y":353},{"Bonus":0,"Continent":"K35","ID":48884,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48884","ServerKey":"pl181","X":583,"Y":304},{"Bonus":0,"Continent":"K47","ID":48885,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":7381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48885","ServerKey":"pl181","X":706,"Y":421},{"Bonus":0,"Continent":"K75","ID":48886,"Name":"ewaa vol.2","PlayerID":849101382,"Points":3537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48886","ServerKey":"pl181","X":504,"Y":721},{"Bonus":0,"Continent":"K33","ID":48888,"Name":"##6","PlayerID":2800032,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48888","ServerKey":"pl181","X":349,"Y":351},{"Bonus":0,"Continent":"K74","ID":48889,"Name":"New World","PlayerID":698152377,"Points":6607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48889","ServerKey":"pl181","X":438,"Y":707},{"Bonus":0,"Continent":"K57","ID":48890,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48890","ServerKey":"pl181","X":717,"Y":532},{"Bonus":0,"Continent":"K33","ID":48891,"Name":"...","PlayerID":699657450,"Points":9969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48891","ServerKey":"pl181","X":337,"Y":354},{"Bonus":0,"Continent":"K25","ID":48892,"Name":"AAA","PlayerID":1006847,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48892","ServerKey":"pl181","X":538,"Y":293},{"Bonus":0,"Continent":"K33","ID":48893,"Name":"022. Salmone affumicato","PlayerID":849102092,"Points":5771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48893","ServerKey":"pl181","X":317,"Y":377},{"Bonus":0,"Continent":"K33","ID":48894,"Name":"5_Franekkimono510_5","PlayerID":849099422,"Points":6669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48894","ServerKey":"pl181","X":368,"Y":325},{"Bonus":0,"Continent":"K63","ID":48895,"Name":"C082","PlayerID":699383279,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48895","ServerKey":"pl181","X":361,"Y":659},{"Bonus":0,"Continent":"K66","ID":48896,"Name":"###122###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48896","ServerKey":"pl181","X":601,"Y":690},{"Bonus":0,"Continent":"K66","ID":48897,"Name":"045.","PlayerID":699695167,"Points":3148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48897","ServerKey":"pl181","X":626,"Y":672},{"Bonus":0,"Continent":"K34","ID":48898,"Name":"079.Stradi","PlayerID":698365960,"Points":9290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48898","ServerKey":"pl181","X":430,"Y":301},{"Bonus":7,"Continent":"K57","ID":48899,"Name":"Osada koczownikĂłw","PlayerID":2246711,"Points":3671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48899","ServerKey":"pl181","X":710,"Y":520},{"Bonus":0,"Continent":"K46","ID":48900,"Name":"Doberek","PlayerID":699785935,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48900","ServerKey":"pl181","X":689,"Y":401},{"Bonus":0,"Continent":"K66","ID":48901,"Name":"###123###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48901","ServerKey":"pl181","X":606,"Y":694},{"Bonus":0,"Continent":"K52","ID":48902,"Name":"U.006","PlayerID":849088243,"Points":3764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48902","ServerKey":"pl181","X":292,"Y":556},{"Bonus":0,"Continent":"K35","ID":48903,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48903","ServerKey":"pl181","X":532,"Y":388},{"Bonus":0,"Continent":"K25","ID":48905,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48905","ServerKey":"pl181","X":575,"Y":298},{"Bonus":4,"Continent":"K34","ID":48906,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48906","ServerKey":"pl181","X":407,"Y":301},{"Bonus":0,"Continent":"K36","ID":48907,"Name":"MJ1","PlayerID":8669398,"Points":6210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48907","ServerKey":"pl181","X":684,"Y":379},{"Bonus":0,"Continent":"K35","ID":48908,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48908","ServerKey":"pl181","X":588,"Y":301},{"Bonus":0,"Continent":"K53","ID":48909,"Name":"Początek","PlayerID":7842579,"Points":4227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48909","ServerKey":"pl181","X":302,"Y":573},{"Bonus":0,"Continent":"K65","ID":48910,"Name":"BiaƂa Podlaska","PlayerID":699837483,"Points":6528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48910","ServerKey":"pl181","X":590,"Y":698},{"Bonus":0,"Continent":"K53","ID":48912,"Name":"Psycho to Marka, Narka !","PlayerID":849040142,"Points":4597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48912","ServerKey":"pl181","X":300,"Y":570},{"Bonus":0,"Continent":"K47","ID":48913,"Name":"C.038","PlayerID":9188016,"Points":4686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48913","ServerKey":"pl181","X":715,"Y":479},{"Bonus":0,"Continent":"K52","ID":48914,"Name":"Cisza","PlayerID":698769107,"Points":5054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48914","ServerKey":"pl181","X":289,"Y":541},{"Bonus":0,"Continent":"K34","ID":48915,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48915","ServerKey":"pl181","X":405,"Y":305},{"Bonus":0,"Continent":"K63","ID":48916,"Name":"Taran","PlayerID":6180190,"Points":7385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48916","ServerKey":"pl181","X":314,"Y":608},{"Bonus":0,"Continent":"K74","ID":48917,"Name":"Kapral16A","PlayerID":849096891,"Points":5698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48917","ServerKey":"pl181","X":463,"Y":714},{"Bonus":0,"Continent":"K33","ID":48918,"Name":"161...G","PlayerID":6920960,"Points":5572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48918","ServerKey":"pl181","X":393,"Y":311},{"Bonus":0,"Continent":"K47","ID":48919,"Name":"019","PlayerID":849091105,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48919","ServerKey":"pl181","X":718,"Y":499},{"Bonus":1,"Continent":"K52","ID":48920,"Name":"EO EO","PlayerID":699697558,"Points":9176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48920","ServerKey":"pl181","X":287,"Y":511},{"Bonus":0,"Continent":"K66","ID":48921,"Name":"DĆŒejdĆŒej 5","PlayerID":849098326,"Points":3307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48921","ServerKey":"pl181","X":669,"Y":636},{"Bonus":0,"Continent":"K52","ID":48922,"Name":"Wioska","PlayerID":699805379,"Points":1475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48922","ServerKey":"pl181","X":285,"Y":533},{"Bonus":0,"Continent":"K42","ID":48923,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48923","ServerKey":"pl181","X":288,"Y":454},{"Bonus":7,"Continent":"K66","ID":48924,"Name":"Osada koczownikĂłw","PlayerID":1049851,"Points":4557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48924","ServerKey":"pl181","X":672,"Y":622},{"Bonus":0,"Continent":"K33","ID":48925,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48925","ServerKey":"pl181","X":318,"Y":392},{"Bonus":0,"Continent":"K66","ID":48926,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48926","ServerKey":"pl181","X":668,"Y":629},{"Bonus":0,"Continent":"K36","ID":48927,"Name":"049","PlayerID":698635863,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48927","ServerKey":"pl181","X":673,"Y":377},{"Bonus":0,"Continent":"K63","ID":48928,"Name":"0104","PlayerID":7085510,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48928","ServerKey":"pl181","X":385,"Y":683},{"Bonus":0,"Continent":"K66","ID":48929,"Name":"*002*","PlayerID":1205898,"Points":8957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48929","ServerKey":"pl181","X":676,"Y":621},{"Bonus":0,"Continent":"K33","ID":48930,"Name":"Satyra","PlayerID":849076515,"Points":8165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48930","ServerKey":"pl181","X":306,"Y":398},{"Bonus":0,"Continent":"K75","ID":48931,"Name":"145 invidia","PlayerID":849093426,"Points":6811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48931","ServerKey":"pl181","X":541,"Y":715},{"Bonus":0,"Continent":"K74","ID":48932,"Name":"Bagno 17","PlayerID":848883684,"Points":9083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48932","ServerKey":"pl181","X":483,"Y":711},{"Bonus":0,"Continent":"K33","ID":48935,"Name":"Wioska barbarzyƄska","PlayerID":849101694,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48935","ServerKey":"pl181","X":350,"Y":340},{"Bonus":0,"Continent":"K42","ID":48936,"Name":"Avanti!","PlayerID":698625834,"Points":10106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48936","ServerKey":"pl181","X":286,"Y":471},{"Bonus":0,"Continent":"K36","ID":48937,"Name":"XDX","PlayerID":699098531,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48937","ServerKey":"pl181","X":604,"Y":315},{"Bonus":4,"Continent":"K42","ID":48938,"Name":"Avanti!","PlayerID":698625834,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48938","ServerKey":"pl181","X":285,"Y":476},{"Bonus":0,"Continent":"K42","ID":48939,"Name":"[0185]","PlayerID":8630972,"Points":7544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48939","ServerKey":"pl181","X":287,"Y":495},{"Bonus":0,"Continent":"K74","ID":48940,"Name":"Bagno 19","PlayerID":848883684,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48940","ServerKey":"pl181","X":485,"Y":713},{"Bonus":0,"Continent":"K63","ID":48941,"Name":"Wioska 0008","PlayerID":9186126,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48941","ServerKey":"pl181","X":343,"Y":654},{"Bonus":0,"Continent":"K64","ID":48942,"Name":"105","PlayerID":849099876,"Points":9522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48942","ServerKey":"pl181","X":412,"Y":695},{"Bonus":0,"Continent":"K42","ID":48943,"Name":"Wioska barbarzyƄska","PlayerID":8366045,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48943","ServerKey":"pl181","X":295,"Y":440},{"Bonus":0,"Continent":"K24","ID":48944,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":6267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48944","ServerKey":"pl181","X":478,"Y":284},{"Bonus":0,"Continent":"K66","ID":48945,"Name":"Podbitek 3","PlayerID":849101652,"Points":7633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48945","ServerKey":"pl181","X":685,"Y":615},{"Bonus":0,"Continent":"K66","ID":48946,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48946","ServerKey":"pl181","X":661,"Y":645},{"Bonus":0,"Continent":"K25","ID":48947,"Name":"Tretogor","PlayerID":849054951,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48947","ServerKey":"pl181","X":558,"Y":294},{"Bonus":0,"Continent":"K56","ID":48948,"Name":"[176]","PlayerID":8000875,"Points":7480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48948","ServerKey":"pl181","X":698,"Y":595},{"Bonus":0,"Continent":"K33","ID":48949,"Name":"##4","PlayerID":2800032,"Points":9109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48949","ServerKey":"pl181","X":350,"Y":350},{"Bonus":0,"Continent":"K66","ID":48950,"Name":"Wiadro16","PlayerID":8677963,"Points":8439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48950","ServerKey":"pl181","X":667,"Y":637},{"Bonus":0,"Continent":"K57","ID":48951,"Name":"WARYSCYT","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48951","ServerKey":"pl181","X":706,"Y":552},{"Bonus":0,"Continent":"K36","ID":48952,"Name":"013","PlayerID":849020094,"Points":2297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48952","ServerKey":"pl181","X":657,"Y":355},{"Bonus":0,"Continent":"K75","ID":48953,"Name":"024 zadupie","PlayerID":6116940,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48953","ServerKey":"pl181","X":532,"Y":712},{"Bonus":0,"Continent":"K34","ID":48954,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48954","ServerKey":"pl181","X":404,"Y":308},{"Bonus":6,"Continent":"K75","ID":48955,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48955","ServerKey":"pl181","X":547,"Y":710},{"Bonus":0,"Continent":"K36","ID":48956,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48956","ServerKey":"pl181","X":616,"Y":316},{"Bonus":0,"Continent":"K34","ID":48957,"Name":"083.Stradi","PlayerID":698365960,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48957","ServerKey":"pl181","X":429,"Y":300},{"Bonus":0,"Continent":"K75","ID":48959,"Name":"MERHET 04/02","PlayerID":698215322,"Points":7608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48959","ServerKey":"pl181","X":587,"Y":703},{"Bonus":1,"Continent":"K42","ID":48960,"Name":"[D]_[001] Dejv.oldplyr","PlayerID":699380607,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48960","ServerKey":"pl181","X":287,"Y":493},{"Bonus":0,"Continent":"K42","ID":48961,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48961","ServerKey":"pl181","X":286,"Y":451},{"Bonus":0,"Continent":"K75","ID":48962,"Name":"Ave Why!","PlayerID":699121671,"Points":1248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48962","ServerKey":"pl181","X":503,"Y":713},{"Bonus":0,"Continent":"K56","ID":48963,"Name":"Wioska czorny","PlayerID":849101814,"Points":7641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48963","ServerKey":"pl181","X":698,"Y":579},{"Bonus":0,"Continent":"K75","ID":48964,"Name":"Wioska barbarzyƄska --","PlayerID":849055425,"Points":8151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48964","ServerKey":"pl181","X":566,"Y":705},{"Bonus":0,"Continent":"K74","ID":48965,"Name":"0043","PlayerID":699684062,"Points":4699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48965","ServerKey":"pl181","X":490,"Y":714},{"Bonus":0,"Continent":"K33","ID":48966,"Name":"009","PlayerID":7386358,"Points":2884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48966","ServerKey":"pl181","X":324,"Y":372},{"Bonus":0,"Continent":"K36","ID":48967,"Name":"a moĆŒe off ? :)","PlayerID":698768565,"Points":5871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48967","ServerKey":"pl181","X":687,"Y":394},{"Bonus":0,"Continent":"K24","ID":48968,"Name":"????","PlayerID":698489071,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48968","ServerKey":"pl181","X":480,"Y":283},{"Bonus":0,"Continent":"K33","ID":48969,"Name":"Mniejsze zƂo 0098","PlayerID":699794765,"Points":4806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48969","ServerKey":"pl181","X":312,"Y":390},{"Bonus":0,"Continent":"K57","ID":48970,"Name":"063","PlayerID":699413040,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48970","ServerKey":"pl181","X":716,"Y":515},{"Bonus":0,"Continent":"K75","ID":48971,"Name":"barbarzyƄska","PlayerID":849101102,"Points":9432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48971","ServerKey":"pl181","X":513,"Y":718},{"Bonus":0,"Continent":"K63","ID":48972,"Name":"136","PlayerID":849099876,"Points":7842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48972","ServerKey":"pl181","X":391,"Y":692},{"Bonus":0,"Continent":"K42","ID":48973,"Name":"Kagusiowo 13","PlayerID":849101268,"Points":3822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48973","ServerKey":"pl181","X":297,"Y":440},{"Bonus":5,"Continent":"K74","ID":48974,"Name":"004 Chcę Remont","PlayerID":699745265,"Points":9736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48974","ServerKey":"pl181","X":428,"Y":707},{"Bonus":0,"Continent":"K74","ID":48975,"Name":"001","PlayerID":699725436,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48975","ServerKey":"pl181","X":466,"Y":714},{"Bonus":0,"Continent":"K24","ID":48976,"Name":"084.Stradi","PlayerID":698365960,"Points":10062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48976","ServerKey":"pl181","X":431,"Y":299},{"Bonus":5,"Continent":"K75","ID":48977,"Name":"- 252 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48977","ServerKey":"pl181","X":570,"Y":707},{"Bonus":0,"Continent":"K52","ID":48978,"Name":"Wyspa 006","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48978","ServerKey":"pl181","X":290,"Y":568},{"Bonus":0,"Continent":"K64","ID":48980,"Name":"Wioska Ares25","PlayerID":5997814,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48980","ServerKey":"pl181","X":490,"Y":690},{"Bonus":0,"Continent":"K75","ID":48981,"Name":"019","PlayerID":698996782,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48981","ServerKey":"pl181","X":525,"Y":716},{"Bonus":0,"Continent":"K63","ID":48982,"Name":"Taran","PlayerID":6180190,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48982","ServerKey":"pl181","X":331,"Y":631},{"Bonus":0,"Continent":"K66","ID":48983,"Name":"003","PlayerID":2323859,"Points":8118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48983","ServerKey":"pl181","X":665,"Y":645},{"Bonus":0,"Continent":"K74","ID":48984,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":5054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48984","ServerKey":"pl181","X":498,"Y":711},{"Bonus":0,"Continent":"K66","ID":48985,"Name":"Wygwizdowa 012","PlayerID":698562644,"Points":3581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48985","ServerKey":"pl181","X":643,"Y":669},{"Bonus":0,"Continent":"K63","ID":48986,"Name":"C095","PlayerID":699383279,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48986","ServerKey":"pl181","X":365,"Y":665},{"Bonus":0,"Continent":"K25","ID":48987,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48987","ServerKey":"pl181","X":521,"Y":286},{"Bonus":0,"Continent":"K66","ID":48988,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48988","ServerKey":"pl181","X":652,"Y":653},{"Bonus":0,"Continent":"K64","ID":48989,"Name":"049","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48989","ServerKey":"pl181","X":405,"Y":692},{"Bonus":0,"Continent":"K42","ID":48990,"Name":"Avanti!","PlayerID":698625834,"Points":4722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48990","ServerKey":"pl181","X":281,"Y":472},{"Bonus":0,"Continent":"K63","ID":48991,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":6325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48991","ServerKey":"pl181","X":313,"Y":611},{"Bonus":0,"Continent":"K43","ID":48992,"Name":"005","PlayerID":8724192,"Points":3648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48992","ServerKey":"pl181","X":310,"Y":401},{"Bonus":0,"Continent":"K52","ID":48993,"Name":"SmardzĂłw","PlayerID":849101092,"Points":4961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48993","ServerKey":"pl181","X":297,"Y":566},{"Bonus":0,"Continent":"K25","ID":48994,"Name":"Wioska - 005 -","PlayerID":848982634,"Points":1842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48994","ServerKey":"pl181","X":536,"Y":282},{"Bonus":0,"Continent":"K33","ID":48995,"Name":"3 ACDC","PlayerID":6315553,"Points":1234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48995","ServerKey":"pl181","X":347,"Y":354},{"Bonus":0,"Continent":"K63","ID":48996,"Name":"C050","PlayerID":699383279,"Points":8094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48996","ServerKey":"pl181","X":358,"Y":660},{"Bonus":0,"Continent":"K25","ID":48997,"Name":"005","PlayerID":699818726,"Points":8238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48997","ServerKey":"pl181","X":526,"Y":287},{"Bonus":0,"Continent":"K24","ID":48998,"Name":"088.Stradi","PlayerID":698365960,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48998","ServerKey":"pl181","X":434,"Y":298},{"Bonus":0,"Continent":"K36","ID":48999,"Name":"XDX","PlayerID":699098531,"Points":9964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=48999","ServerKey":"pl181","X":601,"Y":304},{"Bonus":4,"Continent":"K43","ID":49000,"Name":"Gladsheim","PlayerID":8724192,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49000","ServerKey":"pl181","X":307,"Y":405},{"Bonus":0,"Continent":"K63","ID":49001,"Name":"C010","PlayerID":699383279,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49001","ServerKey":"pl181","X":371,"Y":676},{"Bonus":0,"Continent":"K74","ID":49002,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49002","ServerKey":"pl181","X":437,"Y":703},{"Bonus":0,"Continent":"K75","ID":49003,"Name":"Ave Why!","PlayerID":699121671,"Points":2596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49003","ServerKey":"pl181","X":506,"Y":717},{"Bonus":0,"Continent":"K52","ID":49004,"Name":"009","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49004","ServerKey":"pl181","X":294,"Y":542},{"Bonus":0,"Continent":"K33","ID":49005,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49005","ServerKey":"pl181","X":376,"Y":328},{"Bonus":0,"Continent":"K64","ID":49006,"Name":"0600","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49006","ServerKey":"pl181","X":489,"Y":681},{"Bonus":0,"Continent":"K53","ID":49007,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":2076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49007","ServerKey":"pl181","X":300,"Y":587},{"Bonus":0,"Continent":"K52","ID":49008,"Name":"C0218","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49008","ServerKey":"pl181","X":293,"Y":539},{"Bonus":0,"Continent":"K63","ID":49009,"Name":"O046","PlayerID":272173,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49009","ServerKey":"pl181","X":328,"Y":635},{"Bonus":0,"Continent":"K63","ID":49010,"Name":"C098","PlayerID":699383279,"Points":8051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49010","ServerKey":"pl181","X":358,"Y":669},{"Bonus":0,"Continent":"K52","ID":49011,"Name":"011","PlayerID":849098688,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49011","ServerKey":"pl181","X":292,"Y":541},{"Bonus":0,"Continent":"K66","ID":49012,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":7494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49012","ServerKey":"pl181","X":650,"Y":651},{"Bonus":0,"Continent":"K36","ID":49013,"Name":"XDX","PlayerID":699098531,"Points":8310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49013","ServerKey":"pl181","X":604,"Y":309},{"Bonus":0,"Continent":"K43","ID":49014,"Name":"Wioska 2","PlayerID":699821629,"Points":5080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49014","ServerKey":"pl181","X":301,"Y":423},{"Bonus":3,"Continent":"K53","ID":49015,"Name":"Ave Why!","PlayerID":6180190,"Points":8838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49015","ServerKey":"pl181","X":305,"Y":585},{"Bonus":0,"Continent":"K66","ID":49016,"Name":"komandos48","PlayerID":7976264,"Points":6380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49016","ServerKey":"pl181","X":635,"Y":673},{"Bonus":0,"Continent":"K24","ID":49017,"Name":"090.Stradi","PlayerID":698365960,"Points":9550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49017","ServerKey":"pl181","X":438,"Y":290},{"Bonus":0,"Continent":"K66","ID":49018,"Name":"Komamdos","PlayerID":7976264,"Points":9729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49018","ServerKey":"pl181","X":641,"Y":664},{"Bonus":0,"Continent":"K64","ID":49019,"Name":"106","PlayerID":849099876,"Points":8942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49019","ServerKey":"pl181","X":409,"Y":694},{"Bonus":0,"Continent":"K74","ID":49020,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49020","ServerKey":"pl181","X":429,"Y":705},{"Bonus":0,"Continent":"K36","ID":49021,"Name":"XDX","PlayerID":699098531,"Points":6483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49021","ServerKey":"pl181","X":609,"Y":308},{"Bonus":0,"Continent":"K24","ID":49022,"Name":"100.Stradi","PlayerID":698365960,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49022","ServerKey":"pl181","X":441,"Y":292},{"Bonus":0,"Continent":"K33","ID":49023,"Name":"Wioska15","PlayerID":699711926,"Points":5545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49023","ServerKey":"pl181","X":343,"Y":350},{"Bonus":0,"Continent":"K36","ID":49024,"Name":"027","PlayerID":9148043,"Points":1149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49024","ServerKey":"pl181","X":648,"Y":346},{"Bonus":0,"Continent":"K43","ID":49025,"Name":"013. Amatriciana","PlayerID":849102092,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49025","ServerKey":"pl181","X":302,"Y":401},{"Bonus":0,"Continent":"K36","ID":49026,"Name":"059","PlayerID":849010255,"Points":2584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49026","ServerKey":"pl181","X":639,"Y":338},{"Bonus":0,"Continent":"K36","ID":49027,"Name":"XDX","PlayerID":699098531,"Points":9681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49027","ServerKey":"pl181","X":608,"Y":318},{"Bonus":0,"Continent":"K36","ID":49028,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49028","ServerKey":"pl181","X":656,"Y":352},{"Bonus":0,"Continent":"K47","ID":49029,"Name":"A#014","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49029","ServerKey":"pl181","X":713,"Y":492},{"Bonus":0,"Continent":"K63","ID":49030,"Name":"O026","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49030","ServerKey":"pl181","X":331,"Y":638},{"Bonus":0,"Continent":"K36","ID":49031,"Name":"Wioska-013-","PlayerID":7675610,"Points":1323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49031","ServerKey":"pl181","X":630,"Y":331},{"Bonus":0,"Continent":"K75","ID":49032,"Name":"ZZZ .::. cinek3456/02","PlayerID":33900,"Points":10191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49032","ServerKey":"pl181","X":585,"Y":702},{"Bonus":0,"Continent":"K24","ID":49033,"Name":"Saran9","PlayerID":848937248,"Points":3549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49033","ServerKey":"pl181","X":410,"Y":298},{"Bonus":0,"Continent":"K66","ID":49034,"Name":"006","PlayerID":2323859,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49034","ServerKey":"pl181","X":664,"Y":638},{"Bonus":0,"Continent":"K63","ID":49035,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49035","ServerKey":"pl181","X":366,"Y":671},{"Bonus":0,"Continent":"K52","ID":49036,"Name":"C0226","PlayerID":8841266,"Points":5141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49036","ServerKey":"pl181","X":288,"Y":545},{"Bonus":0,"Continent":"K36","ID":49037,"Name":"001","PlayerID":9148043,"Points":9998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49037","ServerKey":"pl181","X":653,"Y":344},{"Bonus":0,"Continent":"K63","ID":49038,"Name":"Psycha Siada","PlayerID":8099868,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49038","ServerKey":"pl181","X":334,"Y":640},{"Bonus":0,"Continent":"K66","ID":49039,"Name":"024","PlayerID":699099811,"Points":3938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49039","ServerKey":"pl181","X":688,"Y":617},{"Bonus":0,"Continent":"K63","ID":49040,"Name":"Las Canteras","PlayerID":7085510,"Points":5838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49040","ServerKey":"pl181","X":377,"Y":679},{"Bonus":0,"Continent":"K47","ID":49041,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49041","ServerKey":"pl181","X":713,"Y":477},{"Bonus":0,"Continent":"K66","ID":49042,"Name":"Wioska barbarzyƄska","PlayerID":7976264,"Points":5180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49042","ServerKey":"pl181","X":639,"Y":670},{"Bonus":0,"Continent":"K74","ID":49043,"Name":"030. Ceterum censeo","PlayerID":848896948,"Points":9260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49043","ServerKey":"pl181","X":467,"Y":710},{"Bonus":0,"Continent":"K74","ID":49044,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49044","ServerKey":"pl181","X":431,"Y":708},{"Bonus":0,"Continent":"K33","ID":49045,"Name":"PIROTECHNIK 002","PlayerID":849101083,"Points":6750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49045","ServerKey":"pl181","X":354,"Y":346},{"Bonus":0,"Continent":"K24","ID":49046,"Name":"#0147 deleted","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49046","ServerKey":"pl181","X":480,"Y":279},{"Bonus":0,"Continent":"K33","ID":49047,"Name":"Wioska005","PlayerID":699711926,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49047","ServerKey":"pl181","X":346,"Y":349},{"Bonus":6,"Continent":"K24","ID":49048,"Name":"Osada koczownikĂłw","PlayerID":698350371,"Points":7355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49048","ServerKey":"pl181","X":464,"Y":283},{"Bonus":0,"Continent":"K57","ID":49049,"Name":"081","PlayerID":7085502,"Points":4797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49049","ServerKey":"pl181","X":719,"Y":507},{"Bonus":0,"Continent":"K42","ID":49050,"Name":"[0127]","PlayerID":8630972,"Points":9679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49050","ServerKey":"pl181","X":281,"Y":497},{"Bonus":0,"Continent":"K66","ID":49051,"Name":"o04","PlayerID":699189792,"Points":7065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49051","ServerKey":"pl181","X":610,"Y":680},{"Bonus":0,"Continent":"K46","ID":49052,"Name":"W39","PlayerID":699524362,"Points":3254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49052","ServerKey":"pl181","X":694,"Y":417},{"Bonus":0,"Continent":"K36","ID":49053,"Name":"A-1","PlayerID":849095509,"Points":7568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49053","ServerKey":"pl181","X":670,"Y":359},{"Bonus":0,"Continent":"K57","ID":49054,"Name":"=026= Wioska barbarzyƄska","PlayerID":3781794,"Points":10566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49054","ServerKey":"pl181","X":709,"Y":567},{"Bonus":0,"Continent":"K74","ID":49055,"Name":"Bagno 6","PlayerID":848883684,"Points":9520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49055","ServerKey":"pl181","X":482,"Y":715},{"Bonus":0,"Continent":"K47","ID":49056,"Name":"39. Pan Maszynista 2","PlayerID":699804790,"Points":3018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49056","ServerKey":"pl181","X":707,"Y":457},{"Bonus":0,"Continent":"K47","ID":49057,"Name":"01 Fiko","PlayerID":849101845,"Points":9475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49057","ServerKey":"pl181","X":713,"Y":456},{"Bonus":0,"Continent":"K36","ID":49058,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49058","ServerKey":"pl181","X":684,"Y":388},{"Bonus":0,"Continent":"K47","ID":49061,"Name":"062. Diocletianopolis","PlayerID":849091866,"Points":8546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49061","ServerKey":"pl181","X":712,"Y":455},{"Bonus":0,"Continent":"K75","ID":49062,"Name":"063 invidia","PlayerID":849093426,"Points":6184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49062","ServerKey":"pl181","X":542,"Y":711},{"Bonus":0,"Continent":"K66","ID":49063,"Name":"*017*","PlayerID":1205898,"Points":6085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49063","ServerKey":"pl181","X":679,"Y":627},{"Bonus":0,"Continent":"K74","ID":49065,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49065","ServerKey":"pl181","X":463,"Y":717},{"Bonus":0,"Continent":"K33","ID":49066,"Name":"Szlachcic","PlayerID":698160606,"Points":5260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49066","ServerKey":"pl181","X":373,"Y":319},{"Bonus":0,"Continent":"K36","ID":49067,"Name":"Wioska barbarzyƄska IV","PlayerID":848958556,"Points":2512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49067","ServerKey":"pl181","X":627,"Y":321},{"Bonus":0,"Continent":"K47","ID":49068,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49068","ServerKey":"pl181","X":720,"Y":493},{"Bonus":0,"Continent":"K47","ID":49069,"Name":"Elo:)","PlayerID":849101881,"Points":4964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49069","ServerKey":"pl181","X":703,"Y":419},{"Bonus":0,"Continent":"K63","ID":49070,"Name":"C032","PlayerID":699383279,"Points":8036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49070","ServerKey":"pl181","X":365,"Y":670},{"Bonus":0,"Continent":"K33","ID":49071,"Name":"7_Franekkimono510_7","PlayerID":849099422,"Points":4312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49071","ServerKey":"pl181","X":370,"Y":325},{"Bonus":0,"Continent":"K66","ID":49072,"Name":"004","PlayerID":2323859,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49072","ServerKey":"pl181","X":666,"Y":642},{"Bonus":0,"Continent":"K33","ID":49074,"Name":"=0015=","PlayerID":698231772,"Points":9884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49074","ServerKey":"pl181","X":396,"Y":306},{"Bonus":0,"Continent":"K36","ID":49075,"Name":"Na KraƄcu ƚwiata 002","PlayerID":9291984,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49075","ServerKey":"pl181","X":645,"Y":342},{"Bonus":0,"Continent":"K25","ID":49076,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49076","ServerKey":"pl181","X":582,"Y":297},{"Bonus":5,"Continent":"K57","ID":49077,"Name":"A#004","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49077","ServerKey":"pl181","X":717,"Y":517},{"Bonus":0,"Continent":"K33","ID":49078,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":7971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49078","ServerKey":"pl181","X":314,"Y":393},{"Bonus":0,"Continent":"K52","ID":49079,"Name":"005","PlayerID":698663855,"Points":9877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49079","ServerKey":"pl181","X":295,"Y":582},{"Bonus":7,"Continent":"K25","ID":49080,"Name":"Wioska Gigako","PlayerID":849054951,"Points":7983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49080","ServerKey":"pl181","X":557,"Y":287},{"Bonus":0,"Continent":"K25","ID":49081,"Name":"Wioska barbarzyƄska","PlayerID":849088639,"Points":5557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49081","ServerKey":"pl181","X":534,"Y":288},{"Bonus":0,"Continent":"K25","ID":49082,"Name":"North 011","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49082","ServerKey":"pl181","X":512,"Y":284},{"Bonus":0,"Continent":"K63","ID":49083,"Name":"774","PlayerID":698908184,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49083","ServerKey":"pl181","X":343,"Y":643},{"Bonus":0,"Continent":"K63","ID":49084,"Name":"C026","PlayerID":699383279,"Points":9796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49084","ServerKey":"pl181","X":369,"Y":668},{"Bonus":0,"Continent":"K24","ID":49085,"Name":"Barcin","PlayerID":699278528,"Points":9567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49085","ServerKey":"pl181","X":486,"Y":281},{"Bonus":0,"Continent":"K65","ID":49086,"Name":"###124###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49086","ServerKey":"pl181","X":599,"Y":689},{"Bonus":0,"Continent":"K34","ID":49087,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49087","ServerKey":"pl181","X":401,"Y":313},{"Bonus":0,"Continent":"K42","ID":49088,"Name":"Avanti!","PlayerID":698625834,"Points":8804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49088","ServerKey":"pl181","X":280,"Y":477},{"Bonus":0,"Continent":"K47","ID":49089,"Name":"31. Saduny","PlayerID":699804790,"Points":3318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49089","ServerKey":"pl181","X":714,"Y":482},{"Bonus":0,"Continent":"K75","ID":49090,"Name":"Wyspa_48","PlayerID":606407,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49090","ServerKey":"pl181","X":503,"Y":714},{"Bonus":0,"Continent":"K66","ID":49091,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":2920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49091","ServerKey":"pl181","X":692,"Y":601},{"Bonus":0,"Continent":"K63","ID":49093,"Name":"174","PlayerID":849099876,"Points":6981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49093","ServerKey":"pl181","X":379,"Y":677},{"Bonus":0,"Continent":"K33","ID":49095,"Name":"Mniejsze zƂo 0091","PlayerID":699794765,"Points":6384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49095","ServerKey":"pl181","X":315,"Y":382},{"Bonus":0,"Continent":"K24","ID":49096,"Name":".achim.","PlayerID":6936607,"Points":10232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49096","ServerKey":"pl181","X":477,"Y":294},{"Bonus":0,"Continent":"K42","ID":49097,"Name":"Avanti!","PlayerID":698625834,"Points":9272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49097","ServerKey":"pl181","X":283,"Y":485},{"Bonus":0,"Continent":"K56","ID":49098,"Name":"EE 006","PlayerID":849100149,"Points":9113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49098","ServerKey":"pl181","X":698,"Y":581},{"Bonus":0,"Continent":"K74","ID":49099,"Name":"P|003|","PlayerID":699393742,"Points":9738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49099","ServerKey":"pl181","X":460,"Y":714},{"Bonus":0,"Continent":"K66","ID":49100,"Name":"PoƂudniowy WschĂłd 002","PlayerID":8428196,"Points":2606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49100","ServerKey":"pl181","X":691,"Y":605},{"Bonus":0,"Continent":"K75","ID":49101,"Name":"C008","PlayerID":698599365,"Points":6542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49101","ServerKey":"pl181","X":543,"Y":707},{"Bonus":0,"Continent":"K47","ID":49103,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49103","ServerKey":"pl181","X":714,"Y":450},{"Bonus":0,"Continent":"K63","ID":49104,"Name":"Bez emocji III","PlayerID":849092685,"Points":4932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49104","ServerKey":"pl181","X":354,"Y":655},{"Bonus":0,"Continent":"K63","ID":49105,"Name":"0153","PlayerID":7085510,"Points":4406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49105","ServerKey":"pl181","X":388,"Y":679},{"Bonus":0,"Continent":"K25","ID":49107,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49107","ServerKey":"pl181","X":572,"Y":297},{"Bonus":5,"Continent":"K36","ID":49108,"Name":"Wioska 030","PlayerID":7226782,"Points":9523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49108","ServerKey":"pl181","X":665,"Y":356},{"Bonus":0,"Continent":"K57","ID":49109,"Name":"Etitek 3","PlayerID":848999448,"Points":2989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49109","ServerKey":"pl181","X":721,"Y":502},{"Bonus":7,"Continent":"K25","ID":49110,"Name":"024 Osada koczownikĂłw","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49110","ServerKey":"pl181","X":544,"Y":286},{"Bonus":0,"Continent":"K24","ID":49111,"Name":"010","PlayerID":9283775,"Points":1862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49111","ServerKey":"pl181","X":404,"Y":299},{"Bonus":0,"Continent":"K43","ID":49112,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49112","ServerKey":"pl181","X":300,"Y":425},{"Bonus":0,"Continent":"K25","ID":49113,"Name":"North 001","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49113","ServerKey":"pl181","X":505,"Y":284},{"Bonus":0,"Continent":"K64","ID":49114,"Name":"039","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49114","ServerKey":"pl181","X":406,"Y":699},{"Bonus":0,"Continent":"K47","ID":49115,"Name":"C02","PlayerID":849093742,"Points":8383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49115","ServerKey":"pl181","X":707,"Y":442},{"Bonus":8,"Continent":"K24","ID":49116,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49116","ServerKey":"pl181","X":477,"Y":285},{"Bonus":0,"Continent":"K64","ID":49117,"Name":"0030 Wioska barbarzyƄska","PlayerID":9060641,"Points":6430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49117","ServerKey":"pl181","X":409,"Y":615},{"Bonus":0,"Continent":"K36","ID":49118,"Name":"001","PlayerID":848889850,"Points":5511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49118","ServerKey":"pl181","X":653,"Y":340},{"Bonus":3,"Continent":"K53","ID":49119,"Name":"Elo elo 7","PlayerID":699016994,"Points":9186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49119","ServerKey":"pl181","X":303,"Y":580},{"Bonus":0,"Continent":"K42","ID":49120,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49120","ServerKey":"pl181","X":288,"Y":463},{"Bonus":0,"Continent":"K25","ID":49121,"Name":"Ban Gleann","PlayerID":849054951,"Points":9970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49121","ServerKey":"pl181","X":554,"Y":292},{"Bonus":0,"Continent":"K36","ID":49122,"Name":"B010","PlayerID":8740199,"Points":12024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49122","ServerKey":"pl181","X":627,"Y":324},{"Bonus":0,"Continent":"K33","ID":49123,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49123","ServerKey":"pl181","X":394,"Y":313},{"Bonus":0,"Continent":"K66","ID":49124,"Name":"Poletko","PlayerID":2371436,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49124","ServerKey":"pl181","X":649,"Y":654},{"Bonus":0,"Continent":"K47","ID":49125,"Name":"S04","PlayerID":113796,"Points":3611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49125","ServerKey":"pl181","X":719,"Y":473},{"Bonus":0,"Continent":"K33","ID":49126,"Name":"K33","PlayerID":699794765,"Points":2599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49126","ServerKey":"pl181","X":320,"Y":385},{"Bonus":0,"Continent":"K33","ID":49127,"Name":"153...C","PlayerID":6920960,"Points":7162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49127","ServerKey":"pl181","X":398,"Y":312},{"Bonus":0,"Continent":"K25","ID":49128,"Name":"AAA","PlayerID":1006847,"Points":6928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49128","ServerKey":"pl181","X":553,"Y":294},{"Bonus":0,"Continent":"K33","ID":49129,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49129","ServerKey":"pl181","X":334,"Y":355},{"Bonus":0,"Continent":"K63","ID":49130,"Name":"C009","PlayerID":699383279,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49130","ServerKey":"pl181","X":356,"Y":660},{"Bonus":0,"Continent":"K24","ID":49131,"Name":"#0298 mastaw","PlayerID":1238300,"Points":1855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49131","ServerKey":"pl181","X":462,"Y":291},{"Bonus":0,"Continent":"K42","ID":49132,"Name":"013","PlayerID":6131106,"Points":4950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49132","ServerKey":"pl181","X":294,"Y":430},{"Bonus":0,"Continent":"K46","ID":49133,"Name":"BLANCA","PlayerID":849101881,"Points":7236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49133","ServerKey":"pl181","X":698,"Y":417},{"Bonus":5,"Continent":"K66","ID":49134,"Name":"Eldorado","PlayerID":849101652,"Points":3414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49134","ServerKey":"pl181","X":687,"Y":604},{"Bonus":0,"Continent":"K74","ID":49135,"Name":"Bagno 22","PlayerID":848883684,"Points":8906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49135","ServerKey":"pl181","X":477,"Y":720},{"Bonus":0,"Continent":"K47","ID":49136,"Name":"C.044","PlayerID":9188016,"Points":4491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49136","ServerKey":"pl181","X":711,"Y":470},{"Bonus":0,"Continent":"K57","ID":49137,"Name":"09. Sirmium","PlayerID":848946700,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49137","ServerKey":"pl181","X":709,"Y":544},{"Bonus":0,"Continent":"K66","ID":49138,"Name":"Klatka6","PlayerID":6528152,"Points":3990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49138","ServerKey":"pl181","X":625,"Y":679},{"Bonus":0,"Continent":"K33","ID":49139,"Name":"...","PlayerID":699657450,"Points":2901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49139","ServerKey":"pl181","X":338,"Y":363},{"Bonus":0,"Continent":"K74","ID":49140,"Name":"Wioska majku","PlayerID":9195661,"Points":7739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49140","ServerKey":"pl181","X":415,"Y":704},{"Bonus":0,"Continent":"K57","ID":49141,"Name":"=066= Wioska barbarzyƄska","PlayerID":3781794,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49141","ServerKey":"pl181","X":702,"Y":563},{"Bonus":0,"Continent":"K74","ID":49142,"Name":"Wioska Wojdiking","PlayerID":849100814,"Points":6817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49142","ServerKey":"pl181","X":424,"Y":707},{"Bonus":0,"Continent":"K66","ID":49143,"Name":"Parking7","PlayerID":6528152,"Points":4119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49143","ServerKey":"pl181","X":623,"Y":681},{"Bonus":0,"Continent":"K53","ID":49144,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":7159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49144","ServerKey":"pl181","X":384,"Y":525},{"Bonus":0,"Continent":"K74","ID":49145,"Name":"kkk","PlayerID":849100814,"Points":1831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49145","ServerKey":"pl181","X":422,"Y":705},{"Bonus":0,"Continent":"K63","ID":49146,"Name":"O034","PlayerID":272173,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49146","ServerKey":"pl181","X":337,"Y":639},{"Bonus":0,"Continent":"K74","ID":49147,"Name":"Kurnik","PlayerID":849092769,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49147","ServerKey":"pl181","X":477,"Y":710},{"Bonus":0,"Continent":"K66","ID":49148,"Name":"Parking5","PlayerID":6528152,"Points":5978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49148","ServerKey":"pl181","X":621,"Y":678},{"Bonus":0,"Continent":"K52","ID":49149,"Name":"Zzz 04 pije se kawe","PlayerID":849084740,"Points":7212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49149","ServerKey":"pl181","X":294,"Y":568},{"Bonus":0,"Continent":"K66","ID":49150,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":10021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49150","ServerKey":"pl181","X":643,"Y":655},{"Bonus":0,"Continent":"K75","ID":49151,"Name":"Blasco","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49151","ServerKey":"pl181","X":556,"Y":707},{"Bonus":0,"Continent":"K64","ID":49152,"Name":"190","PlayerID":849099876,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49152","ServerKey":"pl181","X":412,"Y":698},{"Bonus":0,"Continent":"K33","ID":49153,"Name":"Wioska barbarzyƄska","PlayerID":849027025,"Points":3544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49153","ServerKey":"pl181","X":331,"Y":373},{"Bonus":0,"Continent":"K36","ID":49154,"Name":"004","PlayerID":699738350,"Points":9611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49154","ServerKey":"pl181","X":691,"Y":396},{"Bonus":0,"Continent":"K53","ID":49155,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49155","ServerKey":"pl181","X":301,"Y":593},{"Bonus":0,"Continent":"K24","ID":49156,"Name":".achim.","PlayerID":6936607,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49156","ServerKey":"pl181","X":478,"Y":285},{"Bonus":0,"Continent":"K64","ID":49158,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49158","ServerKey":"pl181","X":418,"Y":695},{"Bonus":0,"Continent":"K63","ID":49159,"Name":"0102","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49159","ServerKey":"pl181","X":386,"Y":686},{"Bonus":0,"Continent":"K25","ID":49160,"Name":"G007","PlayerID":699208929,"Points":10041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49160","ServerKey":"pl181","X":506,"Y":285},{"Bonus":0,"Continent":"K47","ID":49161,"Name":"10 Kaseta","PlayerID":849101845,"Points":9670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49161","ServerKey":"pl181","X":713,"Y":448},{"Bonus":0,"Continent":"K25","ID":49162,"Name":"sh02","PlayerID":7064954,"Points":5169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49162","ServerKey":"pl181","X":511,"Y":286},{"Bonus":0,"Continent":"K57","ID":49163,"Name":"011","PlayerID":7085502,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49163","ServerKey":"pl181","X":715,"Y":510},{"Bonus":0,"Continent":"K25","ID":49164,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":7784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49164","ServerKey":"pl181","X":530,"Y":287},{"Bonus":0,"Continent":"K43","ID":49165,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49165","ServerKey":"pl181","X":306,"Y":417},{"Bonus":0,"Continent":"K47","ID":49166,"Name":"Room service","PlayerID":699785935,"Points":8037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49166","ServerKey":"pl181","X":701,"Y":425},{"Bonus":0,"Continent":"K52","ID":49167,"Name":"Lisse","PlayerID":699830255,"Points":9722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49167","ServerKey":"pl181","X":282,"Y":520},{"Bonus":0,"Continent":"K63","ID":49168,"Name":"006","PlayerID":699356968,"Points":6001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49168","ServerKey":"pl181","X":307,"Y":606},{"Bonus":0,"Continent":"K42","ID":49169,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49169","ServerKey":"pl181","X":284,"Y":451},{"Bonus":0,"Continent":"K57","ID":49170,"Name":"070","PlayerID":7085502,"Points":5544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49170","ServerKey":"pl181","X":713,"Y":511},{"Bonus":0,"Continent":"K52","ID":49171,"Name":"Cisza","PlayerID":698769107,"Points":6400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49171","ServerKey":"pl181","X":290,"Y":556},{"Bonus":0,"Continent":"K35","ID":49172,"Name":"013. Reakcja","PlayerID":699072129,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49172","ServerKey":"pl181","X":561,"Y":322},{"Bonus":0,"Continent":"K35","ID":49173,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49173","ServerKey":"pl181","X":586,"Y":301},{"Bonus":0,"Continent":"K47","ID":49174,"Name":"C12","PlayerID":849093742,"Points":2820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49174","ServerKey":"pl181","X":705,"Y":446},{"Bonus":0,"Continent":"K63","ID":49175,"Name":"0118","PlayerID":7085510,"Points":4998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49175","ServerKey":"pl181","X":386,"Y":682},{"Bonus":0,"Continent":"K52","ID":49176,"Name":"Wioska barbarzyƄska","PlayerID":849101674,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49176","ServerKey":"pl181","X":284,"Y":504},{"Bonus":0,"Continent":"K57","ID":49177,"Name":"EE 012","PlayerID":849100149,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49177","ServerKey":"pl181","X":707,"Y":573},{"Bonus":0,"Continent":"K75","ID":49178,"Name":"0406","PlayerID":698659980,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49178","ServerKey":"pl181","X":561,"Y":704},{"Bonus":0,"Continent":"K24","ID":49179,"Name":"????","PlayerID":698489071,"Points":9509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49179","ServerKey":"pl181","X":474,"Y":290},{"Bonus":6,"Continent":"K33","ID":49180,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49180","ServerKey":"pl181","X":331,"Y":360},{"Bonus":0,"Continent":"K47","ID":49181,"Name":"((PYSIA))","PlayerID":8675636,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49181","ServerKey":"pl181","X":701,"Y":417},{"Bonus":0,"Continent":"K47","ID":49182,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":7928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49182","ServerKey":"pl181","X":709,"Y":446},{"Bonus":0,"Continent":"K66","ID":49183,"Name":"Moja wioska","PlayerID":849101884,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49183","ServerKey":"pl181","X":636,"Y":675},{"Bonus":0,"Continent":"K33","ID":49184,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":8709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49184","ServerKey":"pl181","X":315,"Y":396},{"Bonus":0,"Continent":"K57","ID":49185,"Name":"CastAway #003","PlayerID":9314079,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49185","ServerKey":"pl181","X":704,"Y":586},{"Bonus":0,"Continent":"K36","ID":49186,"Name":"[204]","PlayerID":8000875,"Points":4807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49186","ServerKey":"pl181","X":684,"Y":393},{"Bonus":0,"Continent":"K47","ID":49187,"Name":"C.027","PlayerID":9188016,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49187","ServerKey":"pl181","X":716,"Y":480},{"Bonus":0,"Continent":"K25","ID":49188,"Name":"048 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49188","ServerKey":"pl181","X":549,"Y":285},{"Bonus":0,"Continent":"K24","ID":49189,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49189","ServerKey":"pl181","X":497,"Y":287},{"Bonus":0,"Continent":"K33","ID":49190,"Name":"001:Wioska FilozofMiejski","PlayerID":8772425,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49190","ServerKey":"pl181","X":374,"Y":329},{"Bonus":0,"Continent":"K66","ID":49191,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49191","ServerKey":"pl181","X":656,"Y":657},{"Bonus":0,"Continent":"K24","ID":49192,"Name":"107.Stradi","PlayerID":698365960,"Points":10081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49192","ServerKey":"pl181","X":440,"Y":293},{"Bonus":0,"Continent":"K42","ID":49193,"Name":"016","PlayerID":2418364,"Points":2789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49193","ServerKey":"pl181","X":289,"Y":464},{"Bonus":0,"Continent":"K75","ID":49194,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":6760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49194","ServerKey":"pl181","X":545,"Y":711},{"Bonus":0,"Continent":"K63","ID":49195,"Name":"116","PlayerID":849099876,"Points":9500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49195","ServerKey":"pl181","X":395,"Y":695},{"Bonus":0,"Continent":"K36","ID":49196,"Name":"015","PlayerID":9148043,"Points":5828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49196","ServerKey":"pl181","X":650,"Y":346},{"Bonus":0,"Continent":"K63","ID":49197,"Name":"C027","PlayerID":699383279,"Points":9902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49197","ServerKey":"pl181","X":360,"Y":659},{"Bonus":0,"Continent":"K52","ID":49198,"Name":"NewWorldA","PlayerID":849084005,"Points":5190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49198","ServerKey":"pl181","X":290,"Y":533},{"Bonus":0,"Continent":"K36","ID":49199,"Name":"050","PlayerID":698635863,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49199","ServerKey":"pl181","X":678,"Y":376},{"Bonus":0,"Continent":"K66","ID":49200,"Name":"Komandos","PlayerID":7976264,"Points":4380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49200","ServerKey":"pl181","X":648,"Y":664},{"Bonus":0,"Continent":"K34","ID":49201,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49201","ServerKey":"pl181","X":409,"Y":321},{"Bonus":0,"Continent":"K36","ID":49202,"Name":"wioska","PlayerID":9291984,"Points":11304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49202","ServerKey":"pl181","X":636,"Y":332},{"Bonus":4,"Continent":"K33","ID":49203,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49203","ServerKey":"pl181","X":334,"Y":358},{"Bonus":0,"Continent":"K63","ID":49204,"Name":"M.O.S.T.","PlayerID":7929731,"Points":4469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49204","ServerKey":"pl181","X":318,"Y":613},{"Bonus":0,"Continent":"K42","ID":49205,"Name":"[0175]","PlayerID":8630972,"Points":8994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49205","ServerKey":"pl181","X":286,"Y":493},{"Bonus":0,"Continent":"K46","ID":49206,"Name":"003","PlayerID":849085371,"Points":4538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49206","ServerKey":"pl181","X":698,"Y":405},{"Bonus":0,"Continent":"K75","ID":49207,"Name":"Ave Why!","PlayerID":699121671,"Points":2534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49207","ServerKey":"pl181","X":500,"Y":714},{"Bonus":0,"Continent":"K42","ID":49209,"Name":"02 barbarzyƄska.","PlayerID":849018442,"Points":8743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49209","ServerKey":"pl181","X":288,"Y":446},{"Bonus":0,"Continent":"K33","ID":49210,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":6635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49210","ServerKey":"pl181","X":322,"Y":369},{"Bonus":0,"Continent":"K63","ID":49211,"Name":"8516","PlayerID":8607734,"Points":11550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49211","ServerKey":"pl181","X":375,"Y":607},{"Bonus":0,"Continent":"K33","ID":49212,"Name":"021. Salsiccia e funghi","PlayerID":849102092,"Points":5239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49212","ServerKey":"pl181","X":318,"Y":381},{"Bonus":0,"Continent":"K66","ID":49213,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":5081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49213","ServerKey":"pl181","X":693,"Y":604},{"Bonus":0,"Continent":"K47","ID":49214,"Name":"PƁD","PlayerID":699347951,"Points":4276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49214","ServerKey":"pl181","X":717,"Y":462},{"Bonus":0,"Continent":"K36","ID":49215,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49215","ServerKey":"pl181","X":616,"Y":317},{"Bonus":0,"Continent":"K74","ID":49216,"Name":"076.","PlayerID":849034882,"Points":9493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49216","ServerKey":"pl181","X":458,"Y":716},{"Bonus":0,"Continent":"K33","ID":49217,"Name":"Babidi #6","PlayerID":849101962,"Points":5875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49217","ServerKey":"pl181","X":366,"Y":326},{"Bonus":0,"Continent":"K66","ID":49218,"Name":"komandos","PlayerID":7976264,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49218","ServerKey":"pl181","X":641,"Y":667},{"Bonus":0,"Continent":"K74","ID":49219,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49219","ServerKey":"pl181","X":426,"Y":701},{"Bonus":0,"Continent":"K24","ID":49220,"Name":"#0299 kawskole","PlayerID":1238300,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49220","ServerKey":"pl181","X":437,"Y":288},{"Bonus":0,"Continent":"K75","ID":49221,"Name":"013","PlayerID":698996782,"Points":5100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49221","ServerKey":"pl181","X":528,"Y":716},{"Bonus":0,"Continent":"K52","ID":49222,"Name":"[0252]","PlayerID":8630972,"Points":5865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49222","ServerKey":"pl181","X":279,"Y":511},{"Bonus":0,"Continent":"K24","ID":49223,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49223","ServerKey":"pl181","X":492,"Y":284},{"Bonus":0,"Continent":"K47","ID":49224,"Name":"035","PlayerID":849091105,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49224","ServerKey":"pl181","X":718,"Y":471},{"Bonus":0,"Continent":"K74","ID":49225,"Name":"035|| Canes Venatici","PlayerID":849035525,"Points":8260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49225","ServerKey":"pl181","X":458,"Y":710},{"Bonus":0,"Continent":"K36","ID":49226,"Name":"XDX","PlayerID":699098531,"Points":10361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49226","ServerKey":"pl181","X":607,"Y":307},{"Bonus":0,"Continent":"K43","ID":49227,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49227","ServerKey":"pl181","X":300,"Y":427},{"Bonus":0,"Continent":"K33","ID":49228,"Name":"I. Oszczywilk","PlayerID":849101893,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49228","ServerKey":"pl181","X":364,"Y":329},{"Bonus":0,"Continent":"K25","ID":49229,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49229","ServerKey":"pl181","X":523,"Y":289},{"Bonus":0,"Continent":"K36","ID":49230,"Name":"Wioska 2","PlayerID":849101945,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49230","ServerKey":"pl181","X":655,"Y":344},{"Bonus":0,"Continent":"K66","ID":49231,"Name":"komandos czysta","PlayerID":7976264,"Points":10059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49231","ServerKey":"pl181","X":642,"Y":662},{"Bonus":0,"Continent":"K24","ID":49232,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49232","ServerKey":"pl181","X":490,"Y":279},{"Bonus":0,"Continent":"K42","ID":49233,"Name":"Avanti!","PlayerID":698625834,"Points":10152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49233","ServerKey":"pl181","X":280,"Y":482},{"Bonus":0,"Continent":"K24","ID":49234,"Name":"Op Konfederacja","PlayerID":848915730,"Points":7395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49234","ServerKey":"pl181","X":472,"Y":284},{"Bonus":0,"Continent":"K52","ID":49236,"Name":"New WorldA","PlayerID":849084005,"Points":5666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49236","ServerKey":"pl181","X":289,"Y":538},{"Bonus":0,"Continent":"K33","ID":49238,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":3030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49238","ServerKey":"pl181","X":382,"Y":315},{"Bonus":0,"Continent":"K36","ID":49239,"Name":"W40","PlayerID":699524362,"Points":2070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49239","ServerKey":"pl181","X":695,"Y":399},{"Bonus":0,"Continent":"K65","ID":49240,"Name":"###125###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49240","ServerKey":"pl181","X":591,"Y":698},{"Bonus":0,"Continent":"K66","ID":49241,"Name":"029","PlayerID":699099811,"Points":5356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49241","ServerKey":"pl181","X":683,"Y":621},{"Bonus":7,"Continent":"K56","ID":49242,"Name":"TWIERDZA .:084:.","PlayerID":7154207,"Points":8893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49242","ServerKey":"pl181","X":699,"Y":577},{"Bonus":0,"Continent":"K42","ID":49243,"Name":"Avanti!","PlayerID":698625834,"Points":7354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49243","ServerKey":"pl181","X":283,"Y":488},{"Bonus":0,"Continent":"K24","ID":49244,"Name":"069.Stradi","PlayerID":698365960,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49244","ServerKey":"pl181","X":430,"Y":291},{"Bonus":0,"Continent":"K63","ID":49245,"Name":"C112","PlayerID":699383279,"Points":7771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49245","ServerKey":"pl181","X":358,"Y":659},{"Bonus":0,"Continent":"K42","ID":49246,"Name":"Wioska barbarzyƄska","PlayerID":8366045,"Points":2617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49246","ServerKey":"pl181","X":298,"Y":437},{"Bonus":0,"Continent":"K74","ID":49247,"Name":"024. Night Raid","PlayerID":699684062,"Points":8054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49247","ServerKey":"pl181","X":486,"Y":705},{"Bonus":0,"Continent":"K43","ID":49248,"Name":"Wioska","PlayerID":699821629,"Points":6263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49248","ServerKey":"pl181","X":302,"Y":424},{"Bonus":0,"Continent":"K24","ID":49249,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49249","ServerKey":"pl181","X":489,"Y":280},{"Bonus":0,"Continent":"K33","ID":49250,"Name":"Osada","PlayerID":2268889,"Points":4044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49250","ServerKey":"pl181","X":384,"Y":316},{"Bonus":0,"Continent":"K66","ID":49251,"Name":"Wiadro18","PlayerID":8677963,"Points":4336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49251","ServerKey":"pl181","X":674,"Y":633},{"Bonus":0,"Continent":"K47","ID":49252,"Name":"019 Z","PlayerID":699718269,"Points":4599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49252","ServerKey":"pl181","X":715,"Y":480},{"Bonus":0,"Continent":"K24","ID":49253,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49253","ServerKey":"pl181","X":425,"Y":295},{"Bonus":0,"Continent":"K24","ID":49254,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":5546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49254","ServerKey":"pl181","X":439,"Y":294},{"Bonus":0,"Continent":"K75","ID":49255,"Name":"#K75 0005","PlayerID":699728159,"Points":5664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49255","ServerKey":"pl181","X":521,"Y":714},{"Bonus":0,"Continent":"K63","ID":49256,"Name":"C076","PlayerID":699383279,"Points":4258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49256","ServerKey":"pl181","X":356,"Y":661},{"Bonus":0,"Continent":"K66","ID":49257,"Name":"5. Gors Velen","PlayerID":849102573,"Points":3844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49257","ServerKey":"pl181","X":604,"Y":694},{"Bonus":0,"Continent":"K57","ID":49258,"Name":"Wioska KaszczuJ 4","PlayerID":849104356,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49258","ServerKey":"pl181","X":701,"Y":576},{"Bonus":0,"Continent":"K63","ID":49259,"Name":"Babilon 01","PlayerID":698908184,"Points":9864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49259","ServerKey":"pl181","X":345,"Y":649},{"Bonus":0,"Continent":"K24","ID":49260,"Name":"302","PlayerID":7271812,"Points":6234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49260","ServerKey":"pl181","X":447,"Y":290},{"Bonus":0,"Continent":"K63","ID":49261,"Name":"D009","PlayerID":272173,"Points":8775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49261","ServerKey":"pl181","X":349,"Y":651},{"Bonus":0,"Continent":"K63","ID":49262,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":3455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49262","ServerKey":"pl181","X":311,"Y":604},{"Bonus":0,"Continent":"K52","ID":49263,"Name":"U.001","PlayerID":849088243,"Points":8837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49263","ServerKey":"pl181","X":288,"Y":563},{"Bonus":0,"Continent":"K63","ID":49264,"Name":"Taran","PlayerID":6180190,"Points":9098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49264","ServerKey":"pl181","X":314,"Y":617},{"Bonus":0,"Continent":"K42","ID":49265,"Name":"Wiadrowo Kolonia","PlayerID":849100877,"Points":4749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49265","ServerKey":"pl181","X":288,"Y":489},{"Bonus":0,"Continent":"K63","ID":49266,"Name":"Taran","PlayerID":6180190,"Points":7328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49266","ServerKey":"pl181","X":310,"Y":607},{"Bonus":0,"Continent":"K63","ID":49267,"Name":"Wioska barbarzyƄska","PlayerID":699269923,"Points":8462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49267","ServerKey":"pl181","X":376,"Y":675},{"Bonus":0,"Continent":"K33","ID":49268,"Name":"012","PlayerID":7386358,"Points":2130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49268","ServerKey":"pl181","X":322,"Y":375},{"Bonus":0,"Continent":"K66","ID":49269,"Name":"005","PlayerID":2323859,"Points":8854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49269","ServerKey":"pl181","X":664,"Y":644},{"Bonus":0,"Continent":"K33","ID":49270,"Name":"Wioska002","PlayerID":699711926,"Points":9726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49270","ServerKey":"pl181","X":347,"Y":345},{"Bonus":0,"Continent":"K57","ID":49271,"Name":"=032= Wioska barbarzyƄska","PlayerID":3781794,"Points":8519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49271","ServerKey":"pl181","X":705,"Y":565},{"Bonus":0,"Continent":"K33","ID":49272,"Name":"VII. Stare Juchy","PlayerID":849101893,"Points":3225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49272","ServerKey":"pl181","X":366,"Y":329},{"Bonus":0,"Continent":"K53","ID":49273,"Name":"Początek","PlayerID":7842579,"Points":5053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49273","ServerKey":"pl181","X":300,"Y":573},{"Bonus":5,"Continent":"K33","ID":49274,"Name":"-14. Warsztat MagĂłw","PlayerID":698345556,"Points":2767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49274","ServerKey":"pl181","X":329,"Y":370},{"Bonus":0,"Continent":"K74","ID":49275,"Name":"021.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49275","ServerKey":"pl181","X":471,"Y":713},{"Bonus":0,"Continent":"K66","ID":49276,"Name":"Komandos","PlayerID":7976264,"Points":9723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49276","ServerKey":"pl181","X":640,"Y":664},{"Bonus":0,"Continent":"K47","ID":49277,"Name":"04 Trąbek Bąbek","PlayerID":849101845,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49277","ServerKey":"pl181","X":715,"Y":450},{"Bonus":0,"Continent":"K36","ID":49278,"Name":"003","PlayerID":699117992,"Points":7908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49278","ServerKey":"pl181","X":612,"Y":310},{"Bonus":2,"Continent":"K63","ID":49279,"Name":"Taran","PlayerID":6180190,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49279","ServerKey":"pl181","X":317,"Y":612},{"Bonus":0,"Continent":"K24","ID":49280,"Name":"Wioska Destination1","PlayerID":763529,"Points":6053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49280","ServerKey":"pl181","X":493,"Y":283},{"Bonus":0,"Continent":"K42","ID":49281,"Name":"005","PlayerID":6131106,"Points":4330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49281","ServerKey":"pl181","X":294,"Y":424},{"Bonus":0,"Continent":"K75","ID":49282,"Name":"Wioska barbarzyƄska 007","PlayerID":6870350,"Points":7765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49282","ServerKey":"pl181","X":560,"Y":706},{"Bonus":0,"Continent":"K75","ID":49284,"Name":"*INTERTWINED*","PlayerID":698704189,"Points":5743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49284","ServerKey":"pl181","X":515,"Y":711},{"Bonus":0,"Continent":"K57","ID":49285,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49285","ServerKey":"pl181","X":717,"Y":534},{"Bonus":0,"Continent":"K52","ID":49286,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49286","ServerKey":"pl181","X":288,"Y":518},{"Bonus":9,"Continent":"K66","ID":49287,"Name":"OƂawa","PlayerID":848932879,"Points":7044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49287","ServerKey":"pl181","X":678,"Y":633},{"Bonus":0,"Continent":"K75","ID":49288,"Name":"#K75 0002","PlayerID":699728159,"Points":6734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49288","ServerKey":"pl181","X":520,"Y":716},{"Bonus":0,"Continent":"K36","ID":49289,"Name":"B001","PlayerID":8740199,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49289","ServerKey":"pl181","X":613,"Y":321},{"Bonus":0,"Continent":"K33","ID":49290,"Name":"Oxenfurt","PlayerID":849101377,"Points":5434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49290","ServerKey":"pl181","X":311,"Y":387},{"Bonus":0,"Continent":"K66","ID":49291,"Name":"Nowe IMPERIUM 2","PlayerID":698353083,"Points":4765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49291","ServerKey":"pl181","X":617,"Y":688},{"Bonus":0,"Continent":"K66","ID":49292,"Name":"Wy... c","PlayerID":699828685,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49292","ServerKey":"pl181","X":600,"Y":695},{"Bonus":0,"Continent":"K35","ID":49293,"Name":"Wioska barbarzyƄska","PlayerID":828637,"Points":10490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49293","ServerKey":"pl181","X":572,"Y":301},{"Bonus":0,"Continent":"K42","ID":49294,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49294","ServerKey":"pl181","X":281,"Y":480},{"Bonus":0,"Continent":"K36","ID":49295,"Name":"051","PlayerID":698635863,"Points":9373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49295","ServerKey":"pl181","X":670,"Y":368},{"Bonus":0,"Continent":"K47","ID":49296,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49296","ServerKey":"pl181","X":717,"Y":493},{"Bonus":0,"Continent":"K66","ID":49297,"Name":"009 Octoginta","PlayerID":849102108,"Points":6599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49297","ServerKey":"pl181","X":670,"Y":643},{"Bonus":0,"Continent":"K35","ID":49298,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49298","ServerKey":"pl181","X":585,"Y":304},{"Bonus":0,"Continent":"K52","ID":49299,"Name":"New WorldA","PlayerID":849084005,"Points":6106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49299","ServerKey":"pl181","X":289,"Y":526},{"Bonus":0,"Continent":"K52","ID":49300,"Name":"New WorldA","PlayerID":849084005,"Points":4778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49300","ServerKey":"pl181","X":287,"Y":518},{"Bonus":0,"Continent":"K25","ID":49301,"Name":"Wioska F","PlayerID":1867161,"Points":3197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49301","ServerKey":"pl181","X":543,"Y":292},{"Bonus":0,"Continent":"K74","ID":49302,"Name":"Bagno 43","PlayerID":848883684,"Points":4093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49302","ServerKey":"pl181","X":475,"Y":717},{"Bonus":0,"Continent":"K66","ID":49303,"Name":"Parking8","PlayerID":6528152,"Points":4338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49303","ServerKey":"pl181","X":620,"Y":682},{"Bonus":0,"Continent":"K57","ID":49304,"Name":"053","PlayerID":7085502,"Points":6102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49304","ServerKey":"pl181","X":711,"Y":513},{"Bonus":0,"Continent":"K57","ID":49305,"Name":"Wioska","PlayerID":699034094,"Points":5092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49305","ServerKey":"pl181","X":713,"Y":528},{"Bonus":0,"Continent":"K57","ID":49306,"Name":"=101= Wioska barbarzyƄska","PlayerID":3781794,"Points":5905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49306","ServerKey":"pl181","X":704,"Y":563},{"Bonus":0,"Continent":"K25","ID":49307,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":7301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49307","ServerKey":"pl181","X":524,"Y":282},{"Bonus":0,"Continent":"K64","ID":49308,"Name":"056","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49308","ServerKey":"pl181","X":405,"Y":696},{"Bonus":0,"Continent":"K66","ID":49309,"Name":"Podbitek 5","PlayerID":849101652,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49309","ServerKey":"pl181","X":689,"Y":603},{"Bonus":0,"Continent":"K42","ID":49310,"Name":"Wioska barbarzyƄska","PlayerID":8366045,"Points":2844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49310","ServerKey":"pl181","X":297,"Y":436},{"Bonus":0,"Continent":"K42","ID":49311,"Name":"Menng","PlayerID":848981726,"Points":8731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49311","ServerKey":"pl181","X":281,"Y":470},{"Bonus":0,"Continent":"K33","ID":49312,"Name":"Raskip","PlayerID":849021566,"Points":11066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49312","ServerKey":"pl181","X":350,"Y":338},{"Bonus":0,"Continent":"K52","ID":49313,"Name":"U.005","PlayerID":849088243,"Points":7089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49313","ServerKey":"pl181","X":292,"Y":557},{"Bonus":6,"Continent":"K33","ID":49314,"Name":"Zaplecze Patataj","PlayerID":699796330,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49314","ServerKey":"pl181","X":355,"Y":335},{"Bonus":0,"Continent":"K63","ID":49316,"Name":"176","PlayerID":849099876,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49316","ServerKey":"pl181","X":384,"Y":683},{"Bonus":9,"Continent":"K36","ID":49317,"Name":"007","PlayerID":9148043,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49317","ServerKey":"pl181","X":651,"Y":345},{"Bonus":0,"Continent":"K36","ID":49318,"Name":"atakuje plemie3","PlayerID":849105232,"Points":2380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49318","ServerKey":"pl181","X":680,"Y":372},{"Bonus":0,"Continent":"K24","ID":49319,"Name":"082.Stradi","PlayerID":698365960,"Points":10266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49319","ServerKey":"pl181","X":431,"Y":295},{"Bonus":0,"Continent":"K52","ID":49320,"Name":"006","PlayerID":698663855,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49320","ServerKey":"pl181","X":297,"Y":587},{"Bonus":0,"Continent":"K52","ID":49321,"Name":"005 PoznaƄ","PlayerID":9235561,"Points":4302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49321","ServerKey":"pl181","X":287,"Y":527},{"Bonus":0,"Continent":"K56","ID":49322,"Name":"Wioska barbarzyƄska","PlayerID":699737356,"Points":3787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49322","ServerKey":"pl181","X":699,"Y":572},{"Bonus":0,"Continent":"K52","ID":49323,"Name":"Wyspa 022","PlayerID":225023,"Points":6069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49323","ServerKey":"pl181","X":294,"Y":573},{"Bonus":0,"Continent":"K46","ID":49324,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":9130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49324","ServerKey":"pl181","X":690,"Y":407},{"Bonus":2,"Continent":"K33","ID":49325,"Name":"Zaplecze gliniane","PlayerID":699796330,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49325","ServerKey":"pl181","X":367,"Y":334},{"Bonus":0,"Continent":"K57","ID":49327,"Name":"CastAway !009","PlayerID":9314079,"Points":9267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49327","ServerKey":"pl181","X":706,"Y":583},{"Bonus":0,"Continent":"K57","ID":49328,"Name":"068","PlayerID":7085502,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49328","ServerKey":"pl181","X":719,"Y":539},{"Bonus":0,"Continent":"K33","ID":49329,"Name":"016. Bolognese","PlayerID":849102092,"Points":3868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49329","ServerKey":"pl181","X":322,"Y":379},{"Bonus":0,"Continent":"K25","ID":49330,"Name":"032 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49330","ServerKey":"pl181","X":546,"Y":286},{"Bonus":0,"Continent":"K63","ID":49331,"Name":"Taran","PlayerID":6180190,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49331","ServerKey":"pl181","X":321,"Y":618},{"Bonus":0,"Continent":"K36","ID":49332,"Name":"*018","PlayerID":7758085,"Points":7478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49332","ServerKey":"pl181","X":675,"Y":369},{"Bonus":0,"Continent":"K42","ID":49333,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49333","ServerKey":"pl181","X":296,"Y":436},{"Bonus":0,"Continent":"K66","ID":49334,"Name":"komandsos","PlayerID":7976264,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49334","ServerKey":"pl181","X":633,"Y":666},{"Bonus":0,"Continent":"K74","ID":49335,"Name":"Kurnik","PlayerID":699603116,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49335","ServerKey":"pl181","X":484,"Y":716},{"Bonus":0,"Continent":"K33","ID":49336,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49336","ServerKey":"pl181","X":330,"Y":370},{"Bonus":0,"Continent":"K57","ID":49337,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":6268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49337","ServerKey":"pl181","X":714,"Y":540},{"Bonus":0,"Continent":"K33","ID":49338,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":6393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49338","ServerKey":"pl181","X":326,"Y":370},{"Bonus":0,"Continent":"K74","ID":49339,"Name":"Bagno 7","PlayerID":848883684,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49339","ServerKey":"pl181","X":482,"Y":712},{"Bonus":0,"Continent":"K36","ID":49340,"Name":"MJ8","PlayerID":8669398,"Points":5853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49340","ServerKey":"pl181","X":682,"Y":381},{"Bonus":0,"Continent":"K52","ID":49341,"Name":"New WorldA","PlayerID":849084005,"Points":5109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49341","ServerKey":"pl181","X":281,"Y":521},{"Bonus":0,"Continent":"K52","ID":49342,"Name":"Cisza","PlayerID":698769107,"Points":4925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49342","ServerKey":"pl181","X":292,"Y":543},{"Bonus":0,"Continent":"K63","ID":49343,"Name":"C013","PlayerID":699383279,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49343","ServerKey":"pl181","X":371,"Y":669},{"Bonus":0,"Continent":"K75","ID":49344,"Name":"-11-","PlayerID":849055425,"Points":6902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49344","ServerKey":"pl181","X":567,"Y":704},{"Bonus":0,"Continent":"K57","ID":49345,"Name":"032. Gaszerbrum","PlayerID":1601917,"Points":8920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49345","ServerKey":"pl181","X":709,"Y":558},{"Bonus":0,"Continent":"K43","ID":49346,"Name":"ZZ09","PlayerID":356642,"Points":8476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49346","ServerKey":"pl181","X":309,"Y":405},{"Bonus":0,"Continent":"K43","ID":49347,"Name":"018","PlayerID":8724192,"Points":414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49347","ServerKey":"pl181","X":306,"Y":407},{"Bonus":0,"Continent":"K36","ID":49348,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49348","ServerKey":"pl181","X":613,"Y":317},{"Bonus":0,"Continent":"K57","ID":49349,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49349","ServerKey":"pl181","X":716,"Y":546},{"Bonus":0,"Continent":"K24","ID":49350,"Name":"Winterfell.015","PlayerID":848918380,"Points":7050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49350","ServerKey":"pl181","X":467,"Y":283},{"Bonus":0,"Continent":"K74","ID":49351,"Name":"Kurnik","PlayerID":699603116,"Points":8170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49351","ServerKey":"pl181","X":444,"Y":712},{"Bonus":0,"Continent":"K42","ID":49352,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49352","ServerKey":"pl181","X":289,"Y":460},{"Bonus":0,"Continent":"K57","ID":49354,"Name":"033. Garizim","PlayerID":1601917,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49354","ServerKey":"pl181","X":709,"Y":536},{"Bonus":0,"Continent":"K74","ID":49355,"Name":"0.02 Szale!","PlayerID":699725436,"Points":9462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49355","ServerKey":"pl181","X":463,"Y":708},{"Bonus":0,"Continent":"K66","ID":49356,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49356","ServerKey":"pl181","X":654,"Y":654},{"Bonus":0,"Continent":"K47","ID":49357,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49357","ServerKey":"pl181","X":722,"Y":497},{"Bonus":0,"Continent":"K42","ID":49358,"Name":"03 barbarzyƄska.","PlayerID":849018442,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49358","ServerKey":"pl181","X":286,"Y":448},{"Bonus":0,"Continent":"K66","ID":49359,"Name":"008 Perfectio","PlayerID":849102108,"Points":4570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49359","ServerKey":"pl181","X":672,"Y":639},{"Bonus":0,"Continent":"K47","ID":49360,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":4301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49360","ServerKey":"pl181","X":708,"Y":423},{"Bonus":0,"Continent":"K24","ID":49361,"Name":"BIMBER","PlayerID":6857973,"Points":4154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49361","ServerKey":"pl181","X":450,"Y":286},{"Bonus":2,"Continent":"K66","ID":49362,"Name":"o01","PlayerID":699189792,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49362","ServerKey":"pl181","X":605,"Y":689},{"Bonus":0,"Continent":"K57","ID":49363,"Name":"017. Dhaulagiri","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49363","ServerKey":"pl181","X":710,"Y":549},{"Bonus":0,"Continent":"K66","ID":49364,"Name":"026","PlayerID":2323859,"Points":2670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49364","ServerKey":"pl181","X":668,"Y":638},{"Bonus":0,"Continent":"K63","ID":49365,"Name":"Wioska 0016","PlayerID":9186126,"Points":8810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49365","ServerKey":"pl181","X":343,"Y":650},{"Bonus":0,"Continent":"K63","ID":49366,"Name":"Panopticon Ave","PlayerID":849105463,"Points":645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49366","ServerKey":"pl181","X":381,"Y":685},{"Bonus":0,"Continent":"K34","ID":49367,"Name":"Wiocha","PlayerID":849094789,"Points":6000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49367","ServerKey":"pl181","X":408,"Y":300},{"Bonus":0,"Continent":"K52","ID":49368,"Name":"Początek","PlayerID":7842579,"Points":5051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49368","ServerKey":"pl181","X":296,"Y":578},{"Bonus":0,"Continent":"K24","ID":49369,"Name":"094.Stradi","PlayerID":698365960,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49369","ServerKey":"pl181","X":437,"Y":290},{"Bonus":0,"Continent":"K34","ID":49370,"Name":"ElMajkelos IV","PlayerID":849085160,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49370","ServerKey":"pl181","X":413,"Y":304},{"Bonus":0,"Continent":"K63","ID":49371,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49371","ServerKey":"pl181","X":336,"Y":642},{"Bonus":0,"Continent":"K36","ID":49372,"Name":"XDX","PlayerID":699098531,"Points":7427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49372","ServerKey":"pl181","X":609,"Y":310},{"Bonus":0,"Continent":"K66","ID":49373,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":1499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49373","ServerKey":"pl181","X":692,"Y":604},{"Bonus":0,"Continent":"K66","ID":49374,"Name":"6. Tretogor","PlayerID":849102573,"Points":4247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49374","ServerKey":"pl181","X":604,"Y":695},{"Bonus":0,"Continent":"K36","ID":49375,"Name":"Flap","PlayerID":699098531,"Points":8007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49375","ServerKey":"pl181","X":600,"Y":303},{"Bonus":0,"Continent":"K57","ID":49376,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":5923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49376","ServerKey":"pl181","X":713,"Y":551},{"Bonus":0,"Continent":"K33","ID":49377,"Name":"Wioska barbarzyƄska 018","PlayerID":849068662,"Points":3215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49377","ServerKey":"pl181","X":386,"Y":309},{"Bonus":0,"Continent":"K74","ID":49378,"Name":"0002 KrĂłl Fabio","PlayerID":699656989,"Points":9849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49378","ServerKey":"pl181","X":496,"Y":721},{"Bonus":0,"Continent":"K42","ID":49379,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49379","ServerKey":"pl181","X":294,"Y":441},{"Bonus":0,"Continent":"K63","ID":49380,"Name":"Taran","PlayerID":6180190,"Points":8671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49380","ServerKey":"pl181","X":319,"Y":609},{"Bonus":0,"Continent":"K36","ID":49381,"Name":"Zasiedmiogorogrodzie 001","PlayerID":698278542,"Points":3517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49381","ServerKey":"pl181","X":695,"Y":397},{"Bonus":0,"Continent":"K63","ID":49382,"Name":"C008","PlayerID":699383279,"Points":9790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49382","ServerKey":"pl181","X":357,"Y":660},{"Bonus":0,"Continent":"K66","ID":49383,"Name":"PoƂudniowy WschĂłd 003","PlayerID":8428196,"Points":2766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49383","ServerKey":"pl181","X":694,"Y":604},{"Bonus":0,"Continent":"K33","ID":49385,"Name":"Mniejsze zƂo 0083","PlayerID":699794765,"Points":10012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49385","ServerKey":"pl181","X":313,"Y":381},{"Bonus":0,"Continent":"K36","ID":49386,"Name":"t019","PlayerID":2262902,"Points":7389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49386","ServerKey":"pl181","X":664,"Y":354},{"Bonus":0,"Continent":"K74","ID":49387,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49387","ServerKey":"pl181","X":435,"Y":705},{"Bonus":0,"Continent":"K25","ID":49388,"Name":"--031--","PlayerID":542253,"Points":6166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49388","ServerKey":"pl181","X":567,"Y":294},{"Bonus":0,"Continent":"K57","ID":49389,"Name":"04.SHIBA","PlayerID":698905177,"Points":4413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49389","ServerKey":"pl181","X":711,"Y":561},{"Bonus":0,"Continent":"K36","ID":49390,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":3629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49390","ServerKey":"pl181","X":649,"Y":339},{"Bonus":0,"Continent":"K25","ID":49391,"Name":".achim.","PlayerID":6936607,"Points":6348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49391","ServerKey":"pl181","X":567,"Y":288},{"Bonus":0,"Continent":"K42","ID":49392,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49392","ServerKey":"pl181","X":289,"Y":434},{"Bonus":0,"Continent":"K74","ID":49393,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49393","ServerKey":"pl181","X":424,"Y":700},{"Bonus":2,"Continent":"K52","ID":49395,"Name":"basonia2","PlayerID":849101674,"Points":6212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49395","ServerKey":"pl181","X":284,"Y":506},{"Bonus":0,"Continent":"K47","ID":49396,"Name":"S05","PlayerID":113796,"Points":2025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49396","ServerKey":"pl181","X":720,"Y":473},{"Bonus":0,"Continent":"K47","ID":49397,"Name":"017","PlayerID":849091105,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49397","ServerKey":"pl181","X":716,"Y":498},{"Bonus":0,"Continent":"K57","ID":49398,"Name":"=027= Wioska barbarzyƄska","PlayerID":3781794,"Points":9807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49398","ServerKey":"pl181","X":704,"Y":566},{"Bonus":0,"Continent":"K74","ID":49399,"Name":"0010 Wioska barbarzyƄska","PlayerID":699656989,"Points":5788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49399","ServerKey":"pl181","X":495,"Y":721},{"Bonus":6,"Continent":"K52","ID":49400,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49400","ServerKey":"pl181","X":284,"Y":518},{"Bonus":0,"Continent":"K63","ID":49401,"Name":"007 Draconia","PlayerID":699356968,"Points":5595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49401","ServerKey":"pl181","X":308,"Y":607},{"Bonus":0,"Continent":"K75","ID":49403,"Name":"-13-","PlayerID":849032414,"Points":8600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49403","ServerKey":"pl181","X":574,"Y":702},{"Bonus":5,"Continent":"K74","ID":49404,"Name":"KWB","PlayerID":9003698,"Points":8389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49404","ServerKey":"pl181","X":463,"Y":719},{"Bonus":0,"Continent":"K63","ID":49405,"Name":"C017","PlayerID":699383279,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49405","ServerKey":"pl181","X":364,"Y":670},{"Bonus":0,"Continent":"K74","ID":49406,"Name":"Bagno 8","PlayerID":848883684,"Points":9427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49406","ServerKey":"pl181","X":481,"Y":714},{"Bonus":0,"Continent":"K63","ID":49407,"Name":"C018","PlayerID":699383279,"Points":8481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49407","ServerKey":"pl181","X":367,"Y":669},{"Bonus":0,"Continent":"K24","ID":49408,"Name":"popki","PlayerID":6857973,"Points":5271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49408","ServerKey":"pl181","X":445,"Y":286},{"Bonus":0,"Continent":"K42","ID":49409,"Name":"B_6","PlayerID":699728266,"Points":3143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49409","ServerKey":"pl181","X":295,"Y":422},{"Bonus":0,"Continent":"K47","ID":49410,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":5542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49410","ServerKey":"pl181","X":716,"Y":491},{"Bonus":0,"Continent":"K63","ID":49411,"Name":"057","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49411","ServerKey":"pl181","X":399,"Y":690},{"Bonus":0,"Continent":"K36","ID":49412,"Name":"Oawek 1","PlayerID":849101945,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49412","ServerKey":"pl181","X":654,"Y":346},{"Bonus":0,"Continent":"K63","ID":49413,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49413","ServerKey":"pl181","X":321,"Y":630},{"Bonus":3,"Continent":"K33","ID":49414,"Name":"Zaplecze miedziane 3","PlayerID":699796330,"Points":9886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49414","ServerKey":"pl181","X":356,"Y":336},{"Bonus":0,"Continent":"K52","ID":49415,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":1762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49415","ServerKey":"pl181","X":294,"Y":580},{"Bonus":0,"Continent":"K42","ID":49416,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":5773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49416","ServerKey":"pl181","X":282,"Y":462},{"Bonus":0,"Continent":"K75","ID":49417,"Name":"146 invidia","PlayerID":849093426,"Points":7211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49417","ServerKey":"pl181","X":547,"Y":708},{"Bonus":0,"Continent":"K52","ID":49418,"Name":"Wyspa 015","PlayerID":225023,"Points":3525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49418","ServerKey":"pl181","X":296,"Y":569},{"Bonus":0,"Continent":"K66","ID":49420,"Name":"komandos","PlayerID":7976264,"Points":10176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49420","ServerKey":"pl181","X":642,"Y":668},{"Bonus":0,"Continent":"K75","ID":49421,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":7279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49421","ServerKey":"pl181","X":558,"Y":712},{"Bonus":0,"Continent":"K42","ID":49423,"Name":"Avanti!","PlayerID":698625834,"Points":7199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49423","ServerKey":"pl181","X":284,"Y":473},{"Bonus":8,"Continent":"K64","ID":49424,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49424","ServerKey":"pl181","X":424,"Y":698},{"Bonus":0,"Continent":"K56","ID":49425,"Name":"Wioska 05","PlayerID":849101162,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49425","ServerKey":"pl181","X":694,"Y":592},{"Bonus":0,"Continent":"K36","ID":49427,"Name":"007","PlayerID":699117992,"Points":5694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49427","ServerKey":"pl181","X":611,"Y":310},{"Bonus":0,"Continent":"K36","ID":49428,"Name":"CSA - Konfederacja","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49428","ServerKey":"pl181","X":668,"Y":363},{"Bonus":0,"Continent":"K65","ID":49429,"Name":"###126###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49429","ServerKey":"pl181","X":590,"Y":693},{"Bonus":0,"Continent":"K36","ID":49430,"Name":"wioska","PlayerID":9291984,"Points":10635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49430","ServerKey":"pl181","X":642,"Y":335},{"Bonus":0,"Continent":"K66","ID":49431,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49431","ServerKey":"pl181","X":662,"Y":647},{"Bonus":0,"Continent":"K66","ID":49432,"Name":"008 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49432","ServerKey":"pl181","X":627,"Y":682},{"Bonus":0,"Continent":"K65","ID":49433,"Name":"###127###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49433","ServerKey":"pl181","X":586,"Y":696},{"Bonus":0,"Continent":"K66","ID":49434,"Name":"047 sebaseba1991","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49434","ServerKey":"pl181","X":620,"Y":675},{"Bonus":0,"Continent":"K47","ID":49435,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":8726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49435","ServerKey":"pl181","X":713,"Y":452},{"Bonus":2,"Continent":"K63","ID":49436,"Name":"0101","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49436","ServerKey":"pl181","X":387,"Y":685},{"Bonus":0,"Continent":"K25","ID":49437,"Name":"--032--","PlayerID":542253,"Points":3773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49437","ServerKey":"pl181","X":567,"Y":298},{"Bonus":0,"Continent":"K66","ID":49438,"Name":"komandos","PlayerID":7976264,"Points":9838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49438","ServerKey":"pl181","X":643,"Y":670},{"Bonus":0,"Continent":"K75","ID":49439,"Name":"MERHET","PlayerID":698215322,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49439","ServerKey":"pl181","X":581,"Y":706},{"Bonus":0,"Continent":"K66","ID":49441,"Name":"S026","PlayerID":8428196,"Points":7341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49441","ServerKey":"pl181","X":686,"Y":604},{"Bonus":0,"Continent":"K63","ID":49442,"Name":"Wioska 0000","PlayerID":9186126,"Points":10040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49442","ServerKey":"pl181","X":342,"Y":654},{"Bonus":0,"Continent":"K36","ID":49443,"Name":"018. Wioska barbarzyƄska","PlayerID":2873154,"Points":8379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49443","ServerKey":"pl181","X":681,"Y":377},{"Bonus":0,"Continent":"K57","ID":49444,"Name":"07. Zucchabar","PlayerID":848946700,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49444","ServerKey":"pl181","X":712,"Y":546},{"Bonus":0,"Continent":"K52","ID":49445,"Name":"Wyspa 005","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49445","ServerKey":"pl181","X":291,"Y":568},{"Bonus":0,"Continent":"K66","ID":49446,"Name":"#Kresy","PlayerID":2665207,"Points":6171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49446","ServerKey":"pl181","X":628,"Y":676},{"Bonus":0,"Continent":"K33","ID":49447,"Name":"Wioska004","PlayerID":699711926,"Points":9732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49447","ServerKey":"pl181","X":345,"Y":348},{"Bonus":0,"Continent":"K36","ID":49448,"Name":"themonk","PlayerID":849005829,"Points":5598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49448","ServerKey":"pl181","X":636,"Y":335},{"Bonus":5,"Continent":"K63","ID":49449,"Name":"C003","PlayerID":699383279,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49449","ServerKey":"pl181","X":369,"Y":673},{"Bonus":0,"Continent":"K63","ID":49450,"Name":"101","PlayerID":849099876,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49450","ServerKey":"pl181","X":397,"Y":695},{"Bonus":0,"Continent":"K52","ID":49451,"Name":"Wyspa 016","PlayerID":225023,"Points":3860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49451","ServerKey":"pl181","X":298,"Y":570},{"Bonus":0,"Continent":"K33","ID":49452,"Name":"Mniejsze zƂo 0092","PlayerID":699794765,"Points":4663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49452","ServerKey":"pl181","X":312,"Y":382},{"Bonus":0,"Continent":"K52","ID":49453,"Name":"Początek","PlayerID":7842579,"Points":4424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49453","ServerKey":"pl181","X":294,"Y":578},{"Bonus":0,"Continent":"K33","ID":49454,"Name":"Szlachcic","PlayerID":698388578,"Points":6362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49454","ServerKey":"pl181","X":364,"Y":332},{"Bonus":0,"Continent":"K52","ID":49455,"Name":"021","PlayerID":9280477,"Points":7571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49455","ServerKey":"pl181","X":295,"Y":562},{"Bonus":0,"Continent":"K63","ID":49456,"Name":"187","PlayerID":849099876,"Points":7164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49456","ServerKey":"pl181","X":381,"Y":687},{"Bonus":0,"Continent":"K66","ID":49457,"Name":"###128###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49457","ServerKey":"pl181","X":610,"Y":691},{"Bonus":0,"Continent":"K66","ID":49458,"Name":"Wiadro17","PlayerID":8677963,"Points":3736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49458","ServerKey":"pl181","X":672,"Y":630},{"Bonus":0,"Continent":"K57","ID":49459,"Name":"Wioska","PlayerID":699034094,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49459","ServerKey":"pl181","X":715,"Y":525},{"Bonus":0,"Continent":"K57","ID":49460,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":5276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49460","ServerKey":"pl181","X":711,"Y":517},{"Bonus":0,"Continent":"K33","ID":49461,"Name":"...","PlayerID":699657450,"Points":5449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49461","ServerKey":"pl181","X":338,"Y":362},{"Bonus":0,"Continent":"K33","ID":49462,"Name":"Wioska barbarzyƄska","PlayerID":7462660,"Points":8688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49462","ServerKey":"pl181","X":345,"Y":360},{"Bonus":0,"Continent":"K75","ID":49463,"Name":"Wioska barbarzyƄska 2x1","PlayerID":849055425,"Points":7738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49463","ServerKey":"pl181","X":571,"Y":702},{"Bonus":0,"Continent":"K52","ID":49464,"Name":"[0253]","PlayerID":8630972,"Points":7317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49464","ServerKey":"pl181","X":281,"Y":514},{"Bonus":0,"Continent":"K52","ID":49465,"Name":"New WorldA","PlayerID":849084005,"Points":7000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49465","ServerKey":"pl181","X":288,"Y":524},{"Bonus":5,"Continent":"K47","ID":49466,"Name":"S02","PlayerID":113796,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49466","ServerKey":"pl181","X":718,"Y":473},{"Bonus":0,"Continent":"K33","ID":49467,"Name":"Mandarynka","PlayerID":698906190,"Points":2199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49467","ServerKey":"pl181","X":359,"Y":330},{"Bonus":0,"Continent":"K24","ID":49468,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":5067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49468","ServerKey":"pl181","X":448,"Y":294},{"Bonus":0,"Continent":"K35","ID":49469,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49469","ServerKey":"pl181","X":584,"Y":308},{"Bonus":0,"Continent":"K33","ID":49470,"Name":"Zaplecze Barba 020","PlayerID":699796330,"Points":7106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49470","ServerKey":"pl181","X":367,"Y":323},{"Bonus":0,"Continent":"K75","ID":49472,"Name":"3.Derby","PlayerID":698215322,"Points":4996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49472","ServerKey":"pl181","X":578,"Y":704},{"Bonus":0,"Continent":"K35","ID":49473,"Name":"XDX","PlayerID":699098531,"Points":7378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49473","ServerKey":"pl181","X":598,"Y":304},{"Bonus":0,"Continent":"K53","ID":49474,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":4753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49474","ServerKey":"pl181","X":302,"Y":587},{"Bonus":0,"Continent":"K66","ID":49475,"Name":"*026*","PlayerID":1205898,"Points":3118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49475","ServerKey":"pl181","X":689,"Y":612},{"Bonus":0,"Continent":"K24","ID":49476,"Name":"093.Stradi","PlayerID":698365960,"Points":10070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49476","ServerKey":"pl181","X":439,"Y":289},{"Bonus":0,"Continent":"K52","ID":49477,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49477","ServerKey":"pl181","X":280,"Y":503},{"Bonus":0,"Continent":"K33","ID":49478,"Name":"008","PlayerID":7386358,"Points":2600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49478","ServerKey":"pl181","X":321,"Y":375},{"Bonus":0,"Continent":"K64","ID":49480,"Name":"096","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49480","ServerKey":"pl181","X":400,"Y":695},{"Bonus":4,"Continent":"K24","ID":49481,"Name":"057KP","PlayerID":849063849,"Points":4592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49481","ServerKey":"pl181","X":481,"Y":284},{"Bonus":0,"Continent":"K57","ID":49482,"Name":"Z.04","PlayerID":699737356,"Points":4841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49482","ServerKey":"pl181","X":700,"Y":577},{"Bonus":0,"Continent":"K64","ID":49483,"Name":"083","PlayerID":849099876,"Points":9627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49483","ServerKey":"pl181","X":405,"Y":698},{"Bonus":0,"Continent":"K36","ID":49484,"Name":"MJ12","PlayerID":8669398,"Points":5795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49484","ServerKey":"pl181","X":682,"Y":380},{"Bonus":0,"Continent":"K36","ID":49485,"Name":"*004","PlayerID":7758085,"Points":9399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49485","ServerKey":"pl181","X":669,"Y":363},{"Bonus":0,"Continent":"K57","ID":49487,"Name":"001","PlayerID":7085502,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49487","ServerKey":"pl181","X":725,"Y":528},{"Bonus":0,"Continent":"K33","ID":49488,"Name":"Wioska barbarzyƄska 001","PlayerID":849068662,"Points":11625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49488","ServerKey":"pl181","X":379,"Y":317},{"Bonus":0,"Continent":"K33","ID":49489,"Name":"Babidi #1","PlayerID":849101962,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49489","ServerKey":"pl181","X":374,"Y":321},{"Bonus":0,"Continent":"K75","ID":49490,"Name":"Ave Why!","PlayerID":699121671,"Points":3718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49490","ServerKey":"pl181","X":507,"Y":714},{"Bonus":0,"Continent":"K43","ID":49491,"Name":"004d","PlayerID":8259895,"Points":4408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49491","ServerKey":"pl181","X":300,"Y":418},{"Bonus":0,"Continent":"K56","ID":49492,"Name":"Tomekrol 4","PlayerID":849096334,"Points":5631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49492","ServerKey":"pl181","X":697,"Y":590},{"Bonus":0,"Continent":"K75","ID":49493,"Name":"-14-","PlayerID":849032414,"Points":8576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49493","ServerKey":"pl181","X":575,"Y":701},{"Bonus":0,"Continent":"K74","ID":49495,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49495","ServerKey":"pl181","X":428,"Y":703},{"Bonus":0,"Continent":"K33","ID":49497,"Name":"3_Franekkimono510_3","PlayerID":849099422,"Points":7277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49497","ServerKey":"pl181","X":371,"Y":320},{"Bonus":0,"Continent":"K63","ID":49498,"Name":"O027","PlayerID":272173,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49498","ServerKey":"pl181","X":340,"Y":639},{"Bonus":0,"Continent":"K66","ID":49499,"Name":"028","PlayerID":2323859,"Points":4251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49499","ServerKey":"pl181","X":666,"Y":638},{"Bonus":0,"Continent":"K74","ID":49500,"Name":"007","PlayerID":849101309,"Points":1284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49500","ServerKey":"pl181","X":440,"Y":705},{"Bonus":0,"Continent":"K75","ID":49501,"Name":"Wioska barbarzyƄska","PlayerID":849101102,"Points":4814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49501","ServerKey":"pl181","X":515,"Y":722},{"Bonus":0,"Continent":"K33","ID":49502,"Name":"0037","PlayerID":2321390,"Points":1561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49502","ServerKey":"pl181","X":323,"Y":375},{"Bonus":0,"Continent":"K57","ID":49503,"Name":"076","PlayerID":7085502,"Points":7158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49503","ServerKey":"pl181","X":716,"Y":507},{"Bonus":0,"Continent":"K75","ID":49505,"Name":"3.Doncaster","PlayerID":698215322,"Points":5698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49505","ServerKey":"pl181","X":548,"Y":717},{"Bonus":0,"Continent":"K66","ID":49506,"Name":"014 Twierdza","PlayerID":849104328,"Points":7773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49506","ServerKey":"pl181","X":631,"Y":677},{"Bonus":0,"Continent":"K33","ID":49507,"Name":"Czarna Dziura","PlayerID":698906190,"Points":6417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49507","ServerKey":"pl181","X":360,"Y":330},{"Bonus":0,"Continent":"K46","ID":49508,"Name":"B029","PlayerID":9314079,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49508","ServerKey":"pl181","X":635,"Y":490},{"Bonus":0,"Continent":"K64","ID":49509,"Name":"040","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49509","ServerKey":"pl181","X":409,"Y":691},{"Bonus":0,"Continent":"K36","ID":49510,"Name":"*017","PlayerID":7758085,"Points":7617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49510","ServerKey":"pl181","X":673,"Y":369},{"Bonus":0,"Continent":"K74","ID":49511,"Name":"Bagno 15","PlayerID":848883684,"Points":9041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49511","ServerKey":"pl181","X":486,"Y":719},{"Bonus":0,"Continent":"K66","ID":49512,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49512","ServerKey":"pl181","X":645,"Y":664},{"Bonus":0,"Continent":"K57","ID":49513,"Name":"Wioska8","PlayerID":699266530,"Points":7141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49513","ServerKey":"pl181","X":707,"Y":577},{"Bonus":2,"Continent":"K25","ID":49514,"Name":"017 Osada koczownikĂłw","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49514","ServerKey":"pl181","X":544,"Y":282},{"Bonus":0,"Continent":"K57","ID":49516,"Name":"027. Faber","PlayerID":1601917,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49516","ServerKey":"pl181","X":712,"Y":533},{"Bonus":0,"Continent":"K64","ID":49517,"Name":"044","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49517","ServerKey":"pl181","X":410,"Y":692},{"Bonus":0,"Continent":"K43","ID":49518,"Name":"002d","PlayerID":8259895,"Points":4776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49518","ServerKey":"pl181","X":301,"Y":408},{"Bonus":0,"Continent":"K34","ID":49519,"Name":"Wioska barbarzyƄska","PlayerID":849096310,"Points":4475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49519","ServerKey":"pl181","X":457,"Y":324},{"Bonus":0,"Continent":"K56","ID":49520,"Name":"czorny","PlayerID":848995478,"Points":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49520","ServerKey":"pl181","X":698,"Y":578},{"Bonus":7,"Continent":"K35","ID":49521,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49521","ServerKey":"pl181","X":598,"Y":302},{"Bonus":0,"Continent":"K36","ID":49522,"Name":"kontra 2","PlayerID":849105232,"Points":2728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49522","ServerKey":"pl181","X":680,"Y":371},{"Bonus":0,"Continent":"K57","ID":49523,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49523","ServerKey":"pl181","X":716,"Y":548},{"Bonus":0,"Continent":"K42","ID":49524,"Name":"SawTower","PlayerID":698652171,"Points":7292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49524","ServerKey":"pl181","X":283,"Y":465},{"Bonus":0,"Continent":"K35","ID":49525,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49525","ServerKey":"pl181","X":585,"Y":302},{"Bonus":0,"Continent":"K74","ID":49526,"Name":"Kurnik","PlayerID":699603116,"Points":3454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49526","ServerKey":"pl181","X":473,"Y":712},{"Bonus":0,"Continent":"K33","ID":49527,"Name":"Wioska CzambaƁamba","PlayerID":699875650,"Points":559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49527","ServerKey":"pl181","X":326,"Y":366},{"Bonus":0,"Continent":"K43","ID":49528,"Name":"001","PlayerID":8724192,"Points":7118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49528","ServerKey":"pl181","X":307,"Y":407},{"Bonus":0,"Continent":"K75","ID":49529,"Name":"026 zadupie 2","PlayerID":6116940,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49529","ServerKey":"pl181","X":534,"Y":712},{"Bonus":0,"Continent":"K66","ID":49530,"Name":"Klatka2","PlayerID":6528152,"Points":3429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49530","ServerKey":"pl181","X":619,"Y":681},{"Bonus":0,"Continent":"K33","ID":49531,"Name":"011","PlayerID":8724192,"Points":2427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49531","ServerKey":"pl181","X":308,"Y":395},{"Bonus":6,"Continent":"K63","ID":49532,"Name":"Taran","PlayerID":6180190,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49532","ServerKey":"pl181","X":320,"Y":617},{"Bonus":0,"Continent":"K36","ID":49533,"Name":"658|388","PlayerID":699580120,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49533","ServerKey":"pl181","X":670,"Y":372},{"Bonus":0,"Continent":"K63","ID":49534,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49534","ServerKey":"pl181","X":336,"Y":646},{"Bonus":0,"Continent":"K33","ID":49535,"Name":"Wioska011","PlayerID":699711926,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49535","ServerKey":"pl181","X":346,"Y":340},{"Bonus":0,"Continent":"K63","ID":49536,"Name":"0137","PlayerID":7085510,"Points":4843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49536","ServerKey":"pl181","X":367,"Y":674},{"Bonus":0,"Continent":"K52","ID":49537,"Name":"C0234","PlayerID":8841266,"Points":10357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49537","ServerKey":"pl181","X":285,"Y":544},{"Bonus":0,"Continent":"K42","ID":49538,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49538","ServerKey":"pl181","X":299,"Y":425},{"Bonus":0,"Continent":"K66","ID":49539,"Name":"DĆŒejdĆŒej 4","PlayerID":849098326,"Points":6676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49539","ServerKey":"pl181","X":669,"Y":634},{"Bonus":0,"Continent":"K63","ID":49541,"Name":"2023","PlayerID":849097837,"Points":4530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49541","ServerKey":"pl181","X":375,"Y":677},{"Bonus":0,"Continent":"K35","ID":49542,"Name":"005","PlayerID":1767876,"Points":2966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49542","ServerKey":"pl181","X":592,"Y":312},{"Bonus":4,"Continent":"K75","ID":49543,"Name":"Wyspa_42","PlayerID":2585846,"Points":7604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49543","ServerKey":"pl181","X":500,"Y":721},{"Bonus":0,"Continent":"K47","ID":49544,"Name":"[805] Odludzie","PlayerID":848985692,"Points":7210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49544","ServerKey":"pl181","X":712,"Y":433},{"Bonus":0,"Continent":"K63","ID":49546,"Name":"Psycha Siada","PlayerID":8099868,"Points":8553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49546","ServerKey":"pl181","X":339,"Y":650},{"Bonus":0,"Continent":"K56","ID":49548,"Name":"031 Furnost","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49548","ServerKey":"pl181","X":601,"Y":502},{"Bonus":0,"Continent":"K75","ID":49549,"Name":"0006","PlayerID":698723158,"Points":9358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49549","ServerKey":"pl181","X":576,"Y":707},{"Bonus":0,"Continent":"K25","ID":49550,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49550","ServerKey":"pl181","X":524,"Y":287},{"Bonus":0,"Continent":"K42","ID":49551,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49551","ServerKey":"pl181","X":293,"Y":438},{"Bonus":0,"Continent":"K43","ID":49552,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":9010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49552","ServerKey":"pl181","X":355,"Y":447},{"Bonus":0,"Continent":"K52","ID":49553,"Name":"C0236","PlayerID":8841266,"Points":7367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49553","ServerKey":"pl181","X":282,"Y":541},{"Bonus":0,"Continent":"K24","ID":49554,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":1640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49554","ServerKey":"pl181","X":429,"Y":293},{"Bonus":0,"Continent":"K36","ID":49555,"Name":"XDX","PlayerID":699098531,"Points":9880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49555","ServerKey":"pl181","X":603,"Y":315},{"Bonus":1,"Continent":"K25","ID":49556,"Name":"009","PlayerID":699208929,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49556","ServerKey":"pl181","X":536,"Y":291},{"Bonus":0,"Continent":"K63","ID":49557,"Name":"0149","PlayerID":7085510,"Points":5345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49557","ServerKey":"pl181","X":389,"Y":684},{"Bonus":0,"Continent":"K66","ID":49558,"Name":"112","PlayerID":3589487,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49558","ServerKey":"pl181","X":688,"Y":613},{"Bonus":0,"Continent":"K42","ID":49559,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49559","ServerKey":"pl181","X":286,"Y":439},{"Bonus":0,"Continent":"K42","ID":49560,"Name":"Avanti!","PlayerID":698625834,"Points":7301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49560","ServerKey":"pl181","X":285,"Y":474},{"Bonus":0,"Continent":"K42","ID":49561,"Name":"018","PlayerID":6131106,"Points":8160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49561","ServerKey":"pl181","X":283,"Y":463},{"Bonus":0,"Continent":"K63","ID":49563,"Name":"O068","PlayerID":272173,"Points":9873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49563","ServerKey":"pl181","X":331,"Y":628},{"Bonus":0,"Continent":"K52","ID":49564,"Name":"New WorldA","PlayerID":849084005,"Points":5169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49564","ServerKey":"pl181","X":289,"Y":539},{"Bonus":0,"Continent":"K24","ID":49565,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49565","ServerKey":"pl181","X":425,"Y":294},{"Bonus":8,"Continent":"K33","ID":49566,"Name":"Szlachcic","PlayerID":698160606,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49566","ServerKey":"pl181","X":382,"Y":317},{"Bonus":0,"Continent":"K52","ID":49567,"Name":"barabara","PlayerID":699805379,"Points":1033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49567","ServerKey":"pl181","X":284,"Y":532},{"Bonus":0,"Continent":"K57","ID":49568,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49568","ServerKey":"pl181","X":706,"Y":561},{"Bonus":0,"Continent":"K63","ID":49569,"Name":"171","PlayerID":849099876,"Points":7846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49569","ServerKey":"pl181","X":379,"Y":676},{"Bonus":0,"Continent":"K33","ID":49570,"Name":"W002","PlayerID":849082154,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49570","ServerKey":"pl181","X":306,"Y":391},{"Bonus":3,"Continent":"K25","ID":49571,"Name":"--023--","PlayerID":542253,"Points":6002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49571","ServerKey":"pl181","X":572,"Y":293},{"Bonus":0,"Continent":"K57","ID":49573,"Name":"029. Gerlach","PlayerID":1601917,"Points":8699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49573","ServerKey":"pl181","X":715,"Y":544},{"Bonus":2,"Continent":"K33","ID":49574,"Name":"Mniejsze zƂo 0039","PlayerID":699794765,"Points":8504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49574","ServerKey":"pl181","X":312,"Y":388},{"Bonus":0,"Continent":"K42","ID":49575,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49575","ServerKey":"pl181","X":292,"Y":423},{"Bonus":0,"Continent":"K63","ID":49576,"Name":"Playa del Confital","PlayerID":7085510,"Points":6342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49576","ServerKey":"pl181","X":376,"Y":679},{"Bonus":0,"Continent":"K24","ID":49577,"Name":"#0254 Taki Pan dar","PlayerID":1238300,"Points":5420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49577","ServerKey":"pl181","X":469,"Y":289},{"Bonus":0,"Continent":"K33","ID":49578,"Name":"1 Nowy vequs","PlayerID":7462660,"Points":6653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49578","ServerKey":"pl181","X":341,"Y":350},{"Bonus":0,"Continent":"K47","ID":49579,"Name":"Wioska ƻóƂwi Ninja","PlayerID":849102480,"Points":8621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49579","ServerKey":"pl181","X":712,"Y":432},{"Bonus":0,"Continent":"K63","ID":49580,"Name":"C043","PlayerID":699383279,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49580","ServerKey":"pl181","X":351,"Y":663},{"Bonus":0,"Continent":"K36","ID":49581,"Name":"Wioska barbarzyƄska","PlayerID":849048734,"Points":4080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49581","ServerKey":"pl181","X":649,"Y":336},{"Bonus":1,"Continent":"K36","ID":49582,"Name":"Wioska 031","PlayerID":7226782,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49582","ServerKey":"pl181","X":670,"Y":360},{"Bonus":0,"Continent":"K33","ID":49583,"Name":"004 JJ","PlayerID":9120206,"Points":3869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49583","ServerKey":"pl181","X":327,"Y":367},{"Bonus":0,"Continent":"K24","ID":49584,"Name":"Wioska barbarzyƄska","PlayerID":849104286,"Points":6420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49584","ServerKey":"pl181","X":462,"Y":282},{"Bonus":0,"Continent":"K63","ID":49585,"Name":"Psycha Siada","PlayerID":8099868,"Points":7849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49585","ServerKey":"pl181","X":345,"Y":648},{"Bonus":0,"Continent":"K24","ID":49586,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49586","ServerKey":"pl181","X":488,"Y":287},{"Bonus":0,"Continent":"K63","ID":49587,"Name":"0031 drama","PlayerID":698908184,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49587","ServerKey":"pl181","X":324,"Y":635},{"Bonus":0,"Continent":"K47","ID":49588,"Name":"Wioska (045)","PlayerID":698232227,"Points":2062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49588","ServerKey":"pl181","X":714,"Y":463},{"Bonus":0,"Continent":"K43","ID":49589,"Name":".4.!","PlayerID":762975,"Points":2411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49589","ServerKey":"pl181","X":301,"Y":406},{"Bonus":0,"Continent":"K55","ID":49590,"Name":"- 219 -","PlayerID":849018239,"Points":6554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49590","ServerKey":"pl181","X":547,"Y":561},{"Bonus":0,"Continent":"K47","ID":49591,"Name":"Ghostmane2","PlayerID":848896434,"Points":2759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49591","ServerKey":"pl181","X":716,"Y":445},{"Bonus":0,"Continent":"K57","ID":49592,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49592","ServerKey":"pl181","X":721,"Y":509},{"Bonus":0,"Continent":"K66","ID":49593,"Name":"046","PlayerID":699695167,"Points":3485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49593","ServerKey":"pl181","X":632,"Y":672},{"Bonus":0,"Continent":"K74","ID":49594,"Name":"0.17c","PlayerID":699827112,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49594","ServerKey":"pl181","X":459,"Y":708},{"Bonus":0,"Continent":"K63","ID":49596,"Name":"Caldera de Bandama","PlayerID":7085510,"Points":5788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49596","ServerKey":"pl181","X":378,"Y":680},{"Bonus":0,"Continent":"K24","ID":49597,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49597","ServerKey":"pl181","X":494,"Y":283},{"Bonus":0,"Continent":"K42","ID":49598,"Name":"003","PlayerID":6131106,"Points":6163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49598","ServerKey":"pl181","X":291,"Y":425},{"Bonus":0,"Continent":"K42","ID":49599,"Name":"[0187]","PlayerID":8630972,"Points":8808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49599","ServerKey":"pl181","X":285,"Y":496},{"Bonus":0,"Continent":"K63","ID":49600,"Name":"Taran","PlayerID":6180190,"Points":5630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49600","ServerKey":"pl181","X":311,"Y":605},{"Bonus":0,"Continent":"K52","ID":49601,"Name":"New WorldA","PlayerID":849084005,"Points":5134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49601","ServerKey":"pl181","X":284,"Y":537},{"Bonus":0,"Continent":"K66","ID":49602,"Name":"aaa","PlayerID":3986807,"Points":1344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49602","ServerKey":"pl181","X":682,"Y":609},{"Bonus":0,"Continent":"K53","ID":49603,"Name":"Początek","PlayerID":7842579,"Points":3833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49603","ServerKey":"pl181","X":301,"Y":575},{"Bonus":0,"Continent":"K24","ID":49604,"Name":"BIMBER 2","PlayerID":6857973,"Points":5522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49604","ServerKey":"pl181","X":446,"Y":287},{"Bonus":0,"Continent":"K63","ID":49606,"Name":"...","PlayerID":849097837,"Points":8335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49606","ServerKey":"pl181","X":377,"Y":683},{"Bonus":0,"Continent":"K75","ID":49607,"Name":"R 041","PlayerID":699195358,"Points":6678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49607","ServerKey":"pl181","X":500,"Y":719},{"Bonus":6,"Continent":"K36","ID":49608,"Name":"Osada Wandali x","PlayerID":699875213,"Points":4145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49608","ServerKey":"pl181","X":658,"Y":351},{"Bonus":0,"Continent":"K25","ID":49609,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":8566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49609","ServerKey":"pl181","X":521,"Y":284},{"Bonus":0,"Continent":"K36","ID":49610,"Name":"Wioska-010-","PlayerID":7675610,"Points":2725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49610","ServerKey":"pl181","X":635,"Y":331},{"Bonus":0,"Continent":"K75","ID":49611,"Name":"0435","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49611","ServerKey":"pl181","X":559,"Y":705},{"Bonus":0,"Continent":"K33","ID":49612,"Name":"Wioska 003","PlayerID":699424741,"Points":8436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49612","ServerKey":"pl181","X":316,"Y":378},{"Bonus":3,"Continent":"K24","ID":49613,"Name":"Winterfell.010","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49613","ServerKey":"pl181","X":454,"Y":283},{"Bonus":0,"Continent":"K57","ID":49614,"Name":".: SPARTA :.","PlayerID":699734445,"Points":5174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49614","ServerKey":"pl181","X":720,"Y":509},{"Bonus":0,"Continent":"K42","ID":49615,"Name":"Rikitiki","PlayerID":848977600,"Points":4243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49615","ServerKey":"pl181","X":290,"Y":468},{"Bonus":0,"Continent":"K74","ID":49616,"Name":"Wioska barbarzyƄska","PlayerID":699656989,"Points":3227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49616","ServerKey":"pl181","X":492,"Y":722},{"Bonus":0,"Continent":"K24","ID":49617,"Name":"Winterfell.019","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49617","ServerKey":"pl181","X":458,"Y":290},{"Bonus":0,"Continent":"K66","ID":49618,"Name":"031","PlayerID":699099811,"Points":6520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49618","ServerKey":"pl181","X":686,"Y":621},{"Bonus":0,"Continent":"K24","ID":49619,"Name":".achim.","PlayerID":6936607,"Points":5405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49619","ServerKey":"pl181","X":485,"Y":281},{"Bonus":0,"Continent":"K33","ID":49620,"Name":"ĆŒ internacionale 0002Fresio","PlayerID":3909522,"Points":10062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49620","ServerKey":"pl181","X":316,"Y":375},{"Bonus":0,"Continent":"K25","ID":49621,"Name":"D007","PlayerID":699299123,"Points":5263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49621","ServerKey":"pl181","X":562,"Y":288},{"Bonus":0,"Continent":"K33","ID":49622,"Name":"Zaplecze Barba 012","PlayerID":699796330,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49622","ServerKey":"pl181","X":366,"Y":332},{"Bonus":0,"Continent":"K42","ID":49623,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49623","ServerKey":"pl181","X":281,"Y":495},{"Bonus":0,"Continent":"K43","ID":49624,"Name":"001d","PlayerID":8259895,"Points":7915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49624","ServerKey":"pl181","X":302,"Y":415},{"Bonus":9,"Continent":"K63","ID":49625,"Name":".Krakers. 008","PlayerID":9163140,"Points":1531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49625","ServerKey":"pl181","X":319,"Y":620},{"Bonus":0,"Continent":"K42","ID":49626,"Name":"Avanti!","PlayerID":698625834,"Points":6584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49626","ServerKey":"pl181","X":285,"Y":475},{"Bonus":8,"Continent":"K24","ID":49627,"Name":"aaaa","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49627","ServerKey":"pl181","X":421,"Y":294},{"Bonus":0,"Continent":"K52","ID":49629,"Name":"New WorldA","PlayerID":849084005,"Points":3829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49629","ServerKey":"pl181","X":281,"Y":522},{"Bonus":0,"Continent":"K33","ID":49630,"Name":"Mniejsze zƂo 0095","PlayerID":699794765,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49630","ServerKey":"pl181","X":317,"Y":390},{"Bonus":0,"Continent":"K36","ID":49631,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49631","ServerKey":"pl181","X":621,"Y":315},{"Bonus":0,"Continent":"K74","ID":49632,"Name":"Bagno 28","PlayerID":848883684,"Points":6976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49632","ServerKey":"pl181","X":475,"Y":721},{"Bonus":0,"Continent":"K47","ID":49633,"Name":"033","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49633","ServerKey":"pl181","X":717,"Y":470},{"Bonus":0,"Continent":"K66","ID":49635,"Name":"Parking6","PlayerID":6528152,"Points":4379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49635","ServerKey":"pl181","X":625,"Y":681},{"Bonus":0,"Continent":"K66","ID":49636,"Name":"###129###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49636","ServerKey":"pl181","X":609,"Y":689},{"Bonus":0,"Continent":"K25","ID":49637,"Name":".achim.","PlayerID":6936607,"Points":7273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49637","ServerKey":"pl181","X":566,"Y":292},{"Bonus":0,"Continent":"K75","ID":49638,"Name":"#0055","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49638","ServerKey":"pl181","X":575,"Y":709},{"Bonus":0,"Continent":"K74","ID":49639,"Name":"027.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49639","ServerKey":"pl181","X":472,"Y":720},{"Bonus":0,"Continent":"K66","ID":49640,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49640","ServerKey":"pl181","X":655,"Y":652},{"Bonus":0,"Continent":"K36","ID":49641,"Name":"MJ13","PlayerID":8669398,"Points":4702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49641","ServerKey":"pl181","X":681,"Y":380},{"Bonus":0,"Continent":"K35","ID":49642,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49642","ServerKey":"pl181","X":591,"Y":300},{"Bonus":0,"Continent":"K47","ID":49643,"Name":"Jan Ost skrajny","PlayerID":879782,"Points":6630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49643","ServerKey":"pl181","X":705,"Y":440},{"Bonus":0,"Continent":"K33","ID":49644,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49644","ServerKey":"pl181","X":378,"Y":326},{"Bonus":0,"Continent":"K25","ID":49645,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49645","ServerKey":"pl181","X":508,"Y":286},{"Bonus":0,"Continent":"K74","ID":49646,"Name":"027","PlayerID":8268010,"Points":6175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49646","ServerKey":"pl181","X":456,"Y":717},{"Bonus":0,"Continent":"K42","ID":49647,"Name":"Denver","PlayerID":698652171,"Points":4520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49647","ServerKey":"pl181","X":283,"Y":468},{"Bonus":0,"Continent":"K34","ID":49649,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49649","ServerKey":"pl181","X":423,"Y":301},{"Bonus":0,"Continent":"K66","ID":49650,"Name":"021","PlayerID":2323859,"Points":2799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49650","ServerKey":"pl181","X":665,"Y":647},{"Bonus":0,"Continent":"K66","ID":49651,"Name":"*018*","PlayerID":1205898,"Points":4832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49651","ServerKey":"pl181","X":682,"Y":627},{"Bonus":4,"Continent":"K36","ID":49652,"Name":"Osada koczownikĂłw","PlayerID":7555180,"Points":9986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49652","ServerKey":"pl181","X":638,"Y":333},{"Bonus":0,"Continent":"K66","ID":49653,"Name":"o05","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49653","ServerKey":"pl181","X":612,"Y":684},{"Bonus":0,"Continent":"K33","ID":49654,"Name":"Zaplecze barba 5","PlayerID":699796330,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49654","ServerKey":"pl181","X":365,"Y":333},{"Bonus":0,"Continent":"K33","ID":49655,"Name":"009 JJ","PlayerID":9120206,"Points":3443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49655","ServerKey":"pl181","X":325,"Y":364},{"Bonus":0,"Continent":"K25","ID":49656,"Name":"--027--","PlayerID":6936607,"Points":4779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49656","ServerKey":"pl181","X":568,"Y":291},{"Bonus":0,"Continent":"K43","ID":49657,"Name":"ZZ11","PlayerID":356642,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49657","ServerKey":"pl181","X":308,"Y":404},{"Bonus":0,"Continent":"K33","ID":49658,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49658","ServerKey":"pl181","X":396,"Y":304},{"Bonus":0,"Continent":"K35","ID":49659,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49659","ServerKey":"pl181","X":514,"Y":368},{"Bonus":0,"Continent":"K74","ID":49660,"Name":"R 042","PlayerID":699195358,"Points":5951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49660","ServerKey":"pl181","X":499,"Y":720},{"Bonus":0,"Continent":"K25","ID":49661,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49661","ServerKey":"pl181","X":575,"Y":299},{"Bonus":0,"Continent":"K66","ID":49663,"Name":"###130###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49663","ServerKey":"pl181","X":607,"Y":691},{"Bonus":9,"Continent":"K34","ID":49664,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49664","ServerKey":"pl181","X":407,"Y":306},{"Bonus":0,"Continent":"K74","ID":49665,"Name":"Wioska barbarzyƄska","PlayerID":849037407,"Points":3574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49665","ServerKey":"pl181","X":443,"Y":708},{"Bonus":0,"Continent":"K63","ID":49666,"Name":"C069","PlayerID":699383279,"Points":6890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49666","ServerKey":"pl181","X":358,"Y":663},{"Bonus":0,"Continent":"K66","ID":49667,"Name":"o008","PlayerID":699189792,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49667","ServerKey":"pl181","X":605,"Y":694},{"Bonus":0,"Continent":"K74","ID":49668,"Name":"049. Lindor","PlayerID":848928624,"Points":3312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49668","ServerKey":"pl181","X":442,"Y":707},{"Bonus":0,"Continent":"K66","ID":49669,"Name":"###131###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49669","ServerKey":"pl181","X":610,"Y":693},{"Bonus":6,"Continent":"K74","ID":49670,"Name":"137 invidia","PlayerID":849093426,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49670","ServerKey":"pl181","X":496,"Y":715},{"Bonus":0,"Continent":"K24","ID":49671,"Name":"300","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49671","ServerKey":"pl181","X":446,"Y":288},{"Bonus":0,"Continent":"K42","ID":49672,"Name":"04 barbarzyƄska.","PlayerID":849018442,"Points":8050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49672","ServerKey":"pl181","X":287,"Y":443},{"Bonus":3,"Continent":"K52","ID":49673,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49673","ServerKey":"pl181","X":279,"Y":521},{"Bonus":0,"Continent":"K74","ID":49674,"Name":"Wioska majku 5","PlayerID":363280,"Points":1632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49674","ServerKey":"pl181","X":414,"Y":701},{"Bonus":0,"Continent":"K33","ID":49675,"Name":"Szlachcic","PlayerID":698160606,"Points":7886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49675","ServerKey":"pl181","X":382,"Y":311},{"Bonus":0,"Continent":"K25","ID":49676,"Name":"P002","PlayerID":699208929,"Points":9981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49676","ServerKey":"pl181","X":514,"Y":278},{"Bonus":0,"Continent":"K33","ID":49677,"Name":"##3","PlayerID":2800032,"Points":9080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49677","ServerKey":"pl181","X":348,"Y":352},{"Bonus":0,"Continent":"K25","ID":49678,"Name":"Wioska - 008 -","PlayerID":848982634,"Points":2044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49678","ServerKey":"pl181","X":535,"Y":284},{"Bonus":0,"Continent":"K35","ID":49679,"Name":"--005--","PlayerID":542253,"Points":7704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49679","ServerKey":"pl181","X":571,"Y":300},{"Bonus":0,"Continent":"K66","ID":49680,"Name":"Legnica","PlayerID":848932879,"Points":4666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49680","ServerKey":"pl181","X":678,"Y":628},{"Bonus":0,"Continent":"K52","ID":49681,"Name":"New WorldA","PlayerID":849084005,"Points":4788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49681","ServerKey":"pl181","X":292,"Y":545},{"Bonus":0,"Continent":"K64","ID":49682,"Name":"122","PlayerID":849099876,"Points":8666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49682","ServerKey":"pl181","X":407,"Y":698},{"Bonus":0,"Continent":"K57","ID":49683,"Name":"Ger2","PlayerID":2246711,"Points":5873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49683","ServerKey":"pl181","X":715,"Y":522},{"Bonus":0,"Continent":"K24","ID":49685,"Name":"[0165]","PlayerID":8630972,"Points":8518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49685","ServerKey":"pl181","X":439,"Y":295},{"Bonus":0,"Continent":"K43","ID":49686,"Name":"002f","PlayerID":8259895,"Points":4240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49686","ServerKey":"pl181","X":301,"Y":411},{"Bonus":0,"Continent":"K52","ID":49688,"Name":"*004*","PlayerID":8630972,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49688","ServerKey":"pl181","X":277,"Y":501},{"Bonus":0,"Continent":"K63","ID":49689,"Name":"C028","PlayerID":699383279,"Points":8133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49689","ServerKey":"pl181","X":364,"Y":667},{"Bonus":0,"Continent":"K75","ID":49690,"Name":"015","PlayerID":698996782,"Points":4539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49690","ServerKey":"pl181","X":531,"Y":719},{"Bonus":0,"Continent":"K64","ID":49691,"Name":"045","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49691","ServerKey":"pl181","X":408,"Y":693},{"Bonus":0,"Continent":"K47","ID":49692,"Name":"B003Mordor","PlayerID":113796,"Points":10393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49692","ServerKey":"pl181","X":712,"Y":463},{"Bonus":0,"Continent":"K63","ID":49693,"Name":"168","PlayerID":849099876,"Points":8706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49693","ServerKey":"pl181","X":382,"Y":676},{"Bonus":3,"Continent":"K75","ID":49694,"Name":"0070","PlayerID":698659980,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49694","ServerKey":"pl181","X":580,"Y":707},{"Bonus":0,"Continent":"K52","ID":49695,"Name":"Vvvv","PlayerID":699805379,"Points":3773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49695","ServerKey":"pl181","X":284,"Y":531},{"Bonus":0,"Continent":"K33","ID":49696,"Name":"005 JJ","PlayerID":9120206,"Points":4529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49696","ServerKey":"pl181","X":331,"Y":364},{"Bonus":0,"Continent":"K75","ID":49697,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":7268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49697","ServerKey":"pl181","X":551,"Y":713},{"Bonus":0,"Continent":"K42","ID":49698,"Name":"[0194]","PlayerID":8630972,"Points":9320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49698","ServerKey":"pl181","X":279,"Y":496},{"Bonus":7,"Continent":"K33","ID":49699,"Name":"=0019=","PlayerID":698231772,"Points":8529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49699","ServerKey":"pl181","X":389,"Y":311},{"Bonus":0,"Continent":"K63","ID":49700,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49700","ServerKey":"pl181","X":310,"Y":602},{"Bonus":0,"Continent":"K57","ID":49701,"Name":"Wioska jurger","PlayerID":2246711,"Points":9755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49701","ServerKey":"pl181","X":716,"Y":523},{"Bonus":0,"Continent":"K57","ID":49702,"Name":"090","PlayerID":7085502,"Points":4288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49702","ServerKey":"pl181","X":722,"Y":507},{"Bonus":0,"Continent":"K33","ID":49703,"Name":"Szlachcic","PlayerID":698388578,"Points":6559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49703","ServerKey":"pl181","X":357,"Y":334},{"Bonus":0,"Continent":"K63","ID":49704,"Name":"C038","PlayerID":699383279,"Points":8033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49704","ServerKey":"pl181","X":355,"Y":667},{"Bonus":0,"Continent":"K57","ID":49705,"Name":"062","PlayerID":7085502,"Points":8380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49705","ServerKey":"pl181","X":714,"Y":510},{"Bonus":0,"Continent":"K43","ID":49707,"Name":"ZZ14","PlayerID":356642,"Points":9666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49707","ServerKey":"pl181","X":309,"Y":403},{"Bonus":0,"Continent":"K66","ID":49709,"Name":"012.","PlayerID":699695167,"Points":5210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49709","ServerKey":"pl181","X":632,"Y":669},{"Bonus":0,"Continent":"K42","ID":49710,"Name":"B_5","PlayerID":699728266,"Points":2963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49710","ServerKey":"pl181","X":294,"Y":423},{"Bonus":4,"Continent":"K66","ID":49711,"Name":"OFF","PlayerID":849014413,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49711","ServerKey":"pl181","X":653,"Y":654},{"Bonus":0,"Continent":"K35","ID":49712,"Name":"XDX","PlayerID":699098531,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49712","ServerKey":"pl181","X":599,"Y":312},{"Bonus":0,"Continent":"K35","ID":49713,"Name":"XDX","PlayerID":699098531,"Points":7996,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49713","ServerKey":"pl181","X":599,"Y":307},{"Bonus":0,"Continent":"K33","ID":49714,"Name":"023. Aglio e olio","PlayerID":849102092,"Points":4697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49714","ServerKey":"pl181","X":319,"Y":378},{"Bonus":0,"Continent":"K36","ID":49716,"Name":"002","PlayerID":849020094,"Points":7785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49716","ServerKey":"pl181","X":656,"Y":344},{"Bonus":0,"Continent":"K64","ID":49717,"Name":"099","PlayerID":849099876,"Points":8554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49717","ServerKey":"pl181","X":407,"Y":695},{"Bonus":0,"Continent":"K56","ID":49718,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":1460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49718","ServerKey":"pl181","X":693,"Y":599},{"Bonus":0,"Continent":"K57","ID":49719,"Name":"=091= Wioska barbarzyƄska","PlayerID":3781794,"Points":6011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49719","ServerKey":"pl181","X":700,"Y":591},{"Bonus":0,"Continent":"K24","ID":49720,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49720","ServerKey":"pl181","X":485,"Y":287},{"Bonus":9,"Continent":"K63","ID":49721,"Name":"C001","PlayerID":699383279,"Points":9879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49721","ServerKey":"pl181","X":353,"Y":661},{"Bonus":0,"Continent":"K47","ID":49723,"Name":"Wioska barbarzyƄska","PlayerID":698462285,"Points":1558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49723","ServerKey":"pl181","X":702,"Y":406},{"Bonus":0,"Continent":"K42","ID":49724,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49724","ServerKey":"pl181","X":279,"Y":495},{"Bonus":0,"Continent":"K75","ID":49725,"Name":"025","PlayerID":698996782,"Points":4790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49725","ServerKey":"pl181","X":527,"Y":720},{"Bonus":0,"Continent":"K33","ID":49726,"Name":"Wioska barbarzyƄska","PlayerID":849101694,"Points":4979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49726","ServerKey":"pl181","X":351,"Y":339},{"Bonus":0,"Continent":"K52","ID":49727,"Name":"Początek","PlayerID":7842579,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49727","ServerKey":"pl181","X":297,"Y":582},{"Bonus":0,"Continent":"K33","ID":49728,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":6772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49728","ServerKey":"pl181","X":315,"Y":394},{"Bonus":0,"Continent":"K42","ID":49729,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49729","ServerKey":"pl181","X":286,"Y":446},{"Bonus":0,"Continent":"K66","ID":49730,"Name":"Mroczny Zamek OZDR 01","PlayerID":699372829,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49730","ServerKey":"pl181","X":624,"Y":682},{"Bonus":0,"Continent":"K52","ID":49731,"Name":"EO EO","PlayerID":699697558,"Points":9985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49731","ServerKey":"pl181","X":284,"Y":515},{"Bonus":0,"Continent":"K47","ID":49732,"Name":"021 Safari Zone Gate","PlayerID":699441366,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49732","ServerKey":"pl181","X":721,"Y":483},{"Bonus":0,"Continent":"K33","ID":49733,"Name":"...","PlayerID":699657450,"Points":3175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49733","ServerKey":"pl181","X":337,"Y":361},{"Bonus":9,"Continent":"K42","ID":49734,"Name":"Dorka na malediwy","PlayerID":699856962,"Points":10611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49734","ServerKey":"pl181","X":294,"Y":415},{"Bonus":0,"Continent":"K74","ID":49735,"Name":"0.17e","PlayerID":699827112,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49735","ServerKey":"pl181","X":460,"Y":711},{"Bonus":0,"Continent":"K42","ID":49736,"Name":"[0198]","PlayerID":8630972,"Points":7596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49736","ServerKey":"pl181","X":283,"Y":497},{"Bonus":0,"Continent":"K53","ID":49737,"Name":"$007$ Paradise","PlayerID":699550876,"Points":7557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49737","ServerKey":"pl181","X":304,"Y":584},{"Bonus":0,"Continent":"K42","ID":49738,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49738","ServerKey":"pl181","X":290,"Y":448},{"Bonus":0,"Continent":"K57","ID":49739,"Name":"058","PlayerID":7085502,"Points":7665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49739","ServerKey":"pl181","X":711,"Y":564},{"Bonus":0,"Continent":"K64","ID":49740,"Name":"055","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49740","ServerKey":"pl181","X":407,"Y":696},{"Bonus":0,"Continent":"K75","ID":49741,"Name":"-17-","PlayerID":849032414,"Points":7965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49741","ServerKey":"pl181","X":577,"Y":703},{"Bonus":9,"Continent":"K57","ID":49742,"Name":"A#006","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49742","ServerKey":"pl181","X":717,"Y":533},{"Bonus":0,"Continent":"K47","ID":49743,"Name":"Testarossa","PlayerID":699785935,"Points":4963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49743","ServerKey":"pl181","X":704,"Y":412},{"Bonus":0,"Continent":"K25","ID":49744,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":8241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49744","ServerKey":"pl181","X":557,"Y":295},{"Bonus":0,"Continent":"K24","ID":49745,"Name":"058KP","PlayerID":849063849,"Points":4409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49745","ServerKey":"pl181","X":485,"Y":279},{"Bonus":0,"Continent":"K36","ID":49746,"Name":"B004","PlayerID":8740199,"Points":5745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49746","ServerKey":"pl181","X":621,"Y":322},{"Bonus":0,"Continent":"K33","ID":49747,"Name":"009","PlayerID":8724192,"Points":2836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49747","ServerKey":"pl181","X":309,"Y":396},{"Bonus":0,"Continent":"K52","ID":49748,"Name":"Cisza","PlayerID":698769107,"Points":2704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49748","ServerKey":"pl181","X":299,"Y":574},{"Bonus":0,"Continent":"K42","ID":49749,"Name":"Avanti!","PlayerID":698625834,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49749","ServerKey":"pl181","X":286,"Y":469},{"Bonus":0,"Continent":"K25","ID":49750,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":5950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49750","ServerKey":"pl181","X":527,"Y":287},{"Bonus":0,"Continent":"K25","ID":49751,"Name":"040","PlayerID":849010255,"Points":6230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49751","ServerKey":"pl181","X":509,"Y":285},{"Bonus":0,"Continent":"K24","ID":49752,"Name":"Chojnice","PlayerID":699278528,"Points":9437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49752","ServerKey":"pl181","X":485,"Y":284},{"Bonus":0,"Continent":"K63","ID":49754,"Name":"Taran","PlayerID":6180190,"Points":9699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49754","ServerKey":"pl181","X":318,"Y":621},{"Bonus":0,"Continent":"K74","ID":49755,"Name":"BiaƂa Podlaska 2","PlayerID":849100787,"Points":2046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49755","ServerKey":"pl181","X":439,"Y":714},{"Bonus":0,"Continent":"K25","ID":49756,"Name":"--009--","PlayerID":542253,"Points":8696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49756","ServerKey":"pl181","X":571,"Y":295},{"Bonus":0,"Continent":"K46","ID":49757,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49757","ServerKey":"pl181","X":696,"Y":408},{"Bonus":0,"Continent":"K36","ID":49758,"Name":"B016","PlayerID":8740199,"Points":3251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49758","ServerKey":"pl181","X":625,"Y":323},{"Bonus":0,"Continent":"K63","ID":49759,"Name":"Barba","PlayerID":698908184,"Points":8396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49759","ServerKey":"pl181","X":325,"Y":634},{"Bonus":0,"Continent":"K52","ID":49761,"Name":"39. Wioska 39","PlayerID":849091769,"Points":8404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49761","ServerKey":"pl181","X":289,"Y":562},{"Bonus":0,"Continent":"K74","ID":49762,"Name":"Taka.","PlayerID":848999671,"Points":6001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49762","ServerKey":"pl181","X":484,"Y":721},{"Bonus":0,"Continent":"K33","ID":49763,"Name":"6 M MANSON","PlayerID":6315553,"Points":2363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49763","ServerKey":"pl181","X":346,"Y":353},{"Bonus":0,"Continent":"K36","ID":49764,"Name":"052","PlayerID":698635863,"Points":9134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49764","ServerKey":"pl181","X":676,"Y":381},{"Bonus":0,"Continent":"K53","ID":49765,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":2285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49765","ServerKey":"pl181","X":307,"Y":591},{"Bonus":0,"Continent":"K36","ID":49766,"Name":"XDX","PlayerID":699098531,"Points":3906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49766","ServerKey":"pl181","X":604,"Y":304},{"Bonus":0,"Continent":"K74","ID":49767,"Name":"[B]003","PlayerID":9195661,"Points":8126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49767","ServerKey":"pl181","X":418,"Y":703},{"Bonus":0,"Continent":"K25","ID":49768,"Name":"D008","PlayerID":699299123,"Points":4891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49768","ServerKey":"pl181","X":563,"Y":289},{"Bonus":0,"Continent":"K63","ID":49769,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49769","ServerKey":"pl181","X":334,"Y":641},{"Bonus":0,"Continent":"K57","ID":49770,"Name":"063","PlayerID":7085502,"Points":7252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49770","ServerKey":"pl181","X":717,"Y":514},{"Bonus":0,"Continent":"K36","ID":49771,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49771","ServerKey":"pl181","X":620,"Y":315},{"Bonus":0,"Continent":"K43","ID":49772,"Name":"ZZ12","PlayerID":356642,"Points":9373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49772","ServerKey":"pl181","X":307,"Y":410},{"Bonus":0,"Continent":"K25","ID":49774,"Name":"091 Wioska barbarzyƄska","PlayerID":699854484,"Points":6811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49774","ServerKey":"pl181","X":542,"Y":289},{"Bonus":0,"Continent":"K63","ID":49776,"Name":"C075","PlayerID":699383279,"Points":5688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49776","ServerKey":"pl181","X":354,"Y":663},{"Bonus":0,"Continent":"K66","ID":49777,"Name":"PoƂudniowy WschĂłd 013","PlayerID":699778867,"Points":1407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49777","ServerKey":"pl181","X":695,"Y":601},{"Bonus":0,"Continent":"K33","ID":49778,"Name":"Wiocha IV","PlayerID":849106316,"Points":2591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49778","ServerKey":"pl181","X":337,"Y":352},{"Bonus":0,"Continent":"K74","ID":49779,"Name":"Bagno 9","PlayerID":848883684,"Points":9400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49779","ServerKey":"pl181","X":479,"Y":716},{"Bonus":0,"Continent":"K52","ID":49780,"Name":"Wyspa 011","PlayerID":225023,"Points":7925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49780","ServerKey":"pl181","X":296,"Y":563},{"Bonus":0,"Continent":"K66","ID":49781,"Name":"OFF","PlayerID":849014413,"Points":11078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49781","ServerKey":"pl181","X":658,"Y":655},{"Bonus":0,"Continent":"K36","ID":49782,"Name":"wioska","PlayerID":849102068,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49782","ServerKey":"pl181","X":638,"Y":329},{"Bonus":0,"Continent":"K64","ID":49783,"Name":"051","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49783","ServerKey":"pl181","X":406,"Y":692},{"Bonus":0,"Continent":"K24","ID":49785,"Name":"[0143]","PlayerID":8630972,"Points":9125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49785","ServerKey":"pl181","X":458,"Y":284},{"Bonus":0,"Continent":"K25","ID":49786,"Name":"--037--","PlayerID":542253,"Points":3957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49786","ServerKey":"pl181","X":574,"Y":295},{"Bonus":0,"Continent":"K75","ID":49787,"Name":"Wioska barbarzyƄska 006","PlayerID":6870350,"Points":7510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49787","ServerKey":"pl181","X":564,"Y":709},{"Bonus":0,"Continent":"K42","ID":49788,"Name":"Avanti!","PlayerID":698625834,"Points":4720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49788","ServerKey":"pl181","X":283,"Y":494},{"Bonus":0,"Continent":"K42","ID":49789,"Name":"Yoyio","PlayerID":698652171,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49789","ServerKey":"pl181","X":285,"Y":460},{"Bonus":0,"Continent":"K33","ID":49790,"Name":"1_Franekkimono510_1","PlayerID":849099422,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49790","ServerKey":"pl181","X":374,"Y":323},{"Bonus":0,"Continent":"K63","ID":49791,"Name":"Wioska 0005","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49791","ServerKey":"pl181","X":346,"Y":656},{"Bonus":0,"Continent":"K63","ID":49792,"Name":"Taran","PlayerID":6180190,"Points":9785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49792","ServerKey":"pl181","X":319,"Y":617},{"Bonus":0,"Continent":"K42","ID":49793,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49793","ServerKey":"pl181","X":290,"Y":437},{"Bonus":0,"Continent":"K36","ID":49794,"Name":"Wioska 021","PlayerID":7226782,"Points":11352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49794","ServerKey":"pl181","X":661,"Y":349},{"Bonus":0,"Continent":"K63","ID":49795,"Name":"O072","PlayerID":272173,"Points":9827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49795","ServerKey":"pl181","X":329,"Y":631},{"Bonus":0,"Continent":"K24","ID":49796,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":2313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49796","ServerKey":"pl181","X":461,"Y":284},{"Bonus":0,"Continent":"K63","ID":49797,"Name":"Psycha Siada","PlayerID":8099868,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49797","ServerKey":"pl181","X":335,"Y":642},{"Bonus":0,"Continent":"K44","ID":49798,"Name":"00321","PlayerID":3909522,"Points":5814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49798","ServerKey":"pl181","X":434,"Y":416},{"Bonus":0,"Continent":"K46","ID":49799,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49799","ServerKey":"pl181","X":693,"Y":405},{"Bonus":0,"Continent":"K57","ID":49800,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49800","ServerKey":"pl181","X":711,"Y":570},{"Bonus":0,"Continent":"K74","ID":49801,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49801","ServerKey":"pl181","X":427,"Y":705},{"Bonus":0,"Continent":"K63","ID":49802,"Name":"C022","PlayerID":699383279,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49802","ServerKey":"pl181","X":356,"Y":668},{"Bonus":0,"Continent":"K43","ID":49803,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49803","ServerKey":"pl181","X":305,"Y":405},{"Bonus":0,"Continent":"K66","ID":49804,"Name":"038","PlayerID":2323859,"Points":1841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49804","ServerKey":"pl181","X":670,"Y":638},{"Bonus":0,"Continent":"K75","ID":49805,"Name":"001","PlayerID":849097370,"Points":6174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49805","ServerKey":"pl181","X":593,"Y":702},{"Bonus":0,"Continent":"K52","ID":49806,"Name":"Wioska barbarzyƄska","PlayerID":7530708,"Points":2622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49806","ServerKey":"pl181","X":281,"Y":518},{"Bonus":0,"Continent":"K52","ID":49807,"Name":"Amsterdam","PlayerID":699830255,"Points":4256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49807","ServerKey":"pl181","X":282,"Y":522},{"Bonus":0,"Continent":"K42","ID":49808,"Name":"002","PlayerID":6131106,"Points":7058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49808","ServerKey":"pl181","X":288,"Y":430},{"Bonus":0,"Continent":"K57","ID":49809,"Name":"067. Nansena","PlayerID":1601917,"Points":3436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49809","ServerKey":"pl181","X":720,"Y":523},{"Bonus":0,"Continent":"K74","ID":49810,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49810","ServerKey":"pl181","X":428,"Y":711},{"Bonus":0,"Continent":"K52","ID":49811,"Name":"Wioska barbarzyƄska","PlayerID":498483,"Points":2502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49811","ServerKey":"pl181","X":291,"Y":577},{"Bonus":0,"Continent":"K52","ID":49812,"Name":"001","PlayerID":849085605,"Points":6336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49812","ServerKey":"pl181","X":288,"Y":549},{"Bonus":0,"Continent":"K57","ID":49813,"Name":"Z.01","PlayerID":699737356,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49813","ServerKey":"pl181","X":701,"Y":579},{"Bonus":0,"Continent":"K42","ID":49814,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49814","ServerKey":"pl181","X":297,"Y":424},{"Bonus":0,"Continent":"K33","ID":49815,"Name":"001. Pepperoni","PlayerID":849102092,"Points":8473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49815","ServerKey":"pl181","X":320,"Y":381},{"Bonus":0,"Continent":"K57","ID":49816,"Name":"Wioska19","PlayerID":699266530,"Points":3163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49816","ServerKey":"pl181","X":707,"Y":574},{"Bonus":0,"Continent":"K74","ID":49817,"Name":"005 - Budowanko!","PlayerID":7540891,"Points":7525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49817","ServerKey":"pl181","X":487,"Y":721},{"Bonus":0,"Continent":"K52","ID":49818,"Name":"Vvvvv","PlayerID":699805379,"Points":1763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49818","ServerKey":"pl181","X":281,"Y":531},{"Bonus":0,"Continent":"K57","ID":49819,"Name":"=113= Wioska barbarzyƄska-01-","PlayerID":3781794,"Points":6173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49819","ServerKey":"pl181","X":703,"Y":569},{"Bonus":0,"Continent":"K56","ID":49820,"Name":"Wioska barbarzyƄska","PlayerID":699379895,"Points":3760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49820","ServerKey":"pl181","X":687,"Y":529},{"Bonus":0,"Continent":"K46","ID":49821,"Name":"W41","PlayerID":699524362,"Points":1722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49821","ServerKey":"pl181","X":693,"Y":402},{"Bonus":0,"Continent":"K24","ID":49822,"Name":"086.Stradi","PlayerID":698365960,"Points":8831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49822","ServerKey":"pl181","X":429,"Y":297},{"Bonus":0,"Continent":"K33","ID":49824,"Name":"Szlachcic","PlayerID":698160606,"Points":7500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49824","ServerKey":"pl181","X":373,"Y":318},{"Bonus":0,"Continent":"K42","ID":49825,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49825","ServerKey":"pl181","X":287,"Y":449},{"Bonus":0,"Continent":"K47","ID":49826,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":4290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49826","ServerKey":"pl181","X":709,"Y":424},{"Bonus":0,"Continent":"K36","ID":49827,"Name":"osada 1","PlayerID":7357503,"Points":7685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49827","ServerKey":"pl181","X":663,"Y":350},{"Bonus":0,"Continent":"K33","ID":49828,"Name":"Wioska barbarzyƄska","PlayerID":698817235,"Points":3134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49828","ServerKey":"pl181","X":353,"Y":337},{"Bonus":0,"Continent":"K66","ID":49829,"Name":"Wioska barbarzyƄska","PlayerID":6167751,"Points":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49829","ServerKey":"pl181","X":650,"Y":661},{"Bonus":0,"Continent":"K66","ID":49830,"Name":"004 Thargourm","PlayerID":849102108,"Points":6139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49830","ServerKey":"pl181","X":671,"Y":637},{"Bonus":9,"Continent":"K52","ID":49831,"Name":"Początek","PlayerID":7842579,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49831","ServerKey":"pl181","X":299,"Y":584},{"Bonus":0,"Continent":"K52","ID":49832,"Name":"Wioska JAN1234","PlayerID":699075351,"Points":4233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49832","ServerKey":"pl181","X":299,"Y":572},{"Bonus":0,"Continent":"K56","ID":49833,"Name":"=092= Wioska barbarzyƄska","PlayerID":3781794,"Points":5880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49833","ServerKey":"pl181","X":699,"Y":595},{"Bonus":0,"Continent":"K36","ID":49834,"Name":"XDX","PlayerID":699098531,"Points":6677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49834","ServerKey":"pl181","X":600,"Y":307},{"Bonus":0,"Continent":"K66","ID":49835,"Name":"Mroczny Zamek OZDR 03","PlayerID":699699601,"Points":5080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49835","ServerKey":"pl181","X":621,"Y":683},{"Bonus":0,"Continent":"K63","ID":49836,"Name":"Taran","PlayerID":6180190,"Points":9349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49836","ServerKey":"pl181","X":321,"Y":617},{"Bonus":0,"Continent":"K74","ID":49837,"Name":"Kurnik","PlayerID":699603116,"Points":9253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49837","ServerKey":"pl181","X":468,"Y":719},{"Bonus":0,"Continent":"K74","ID":49838,"Name":"007 - Budowanko!","PlayerID":7540891,"Points":8559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49838","ServerKey":"pl181","X":492,"Y":718},{"Bonus":0,"Continent":"K42","ID":49839,"Name":"Wioska","PlayerID":8792844,"Points":5322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49839","ServerKey":"pl181","X":283,"Y":455},{"Bonus":0,"Continent":"K65","ID":49840,"Name":"###132###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49840","ServerKey":"pl181","X":598,"Y":693},{"Bonus":0,"Continent":"K25","ID":49841,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":9719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49841","ServerKey":"pl181","X":519,"Y":288},{"Bonus":0,"Continent":"K63","ID":49842,"Name":"C031","PlayerID":699383279,"Points":8056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49842","ServerKey":"pl181","X":359,"Y":665},{"Bonus":0,"Continent":"K33","ID":49843,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49843","ServerKey":"pl181","X":390,"Y":309},{"Bonus":0,"Continent":"K66","ID":49844,"Name":"PoƂudniowy WschĂłd 006","PlayerID":699778867,"Points":1577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49844","ServerKey":"pl181","X":690,"Y":601},{"Bonus":6,"Continent":"K33","ID":49845,"Name":"Szlachcic","PlayerID":698160606,"Points":8156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49845","ServerKey":"pl181","X":382,"Y":312},{"Bonus":0,"Continent":"K52","ID":49846,"Name":"Wioska przemek2707","PlayerID":8853146,"Points":7799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49846","ServerKey":"pl181","X":285,"Y":538},{"Bonus":0,"Continent":"K57","ID":49847,"Name":"=119= Wioska barbarzyƄska","PlayerID":3781794,"Points":2279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49847","ServerKey":"pl181","X":704,"Y":558},{"Bonus":0,"Continent":"K25","ID":49848,"Name":"--038--","PlayerID":542253,"Points":3901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49848","ServerKey":"pl181","X":574,"Y":293},{"Bonus":0,"Continent":"K75","ID":49849,"Name":"- 275 - SS","PlayerID":849018239,"Points":3174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49849","ServerKey":"pl181","X":571,"Y":708},{"Bonus":3,"Continent":"K36","ID":49850,"Name":"004. Osada koczownikĂłw","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49850","ServerKey":"pl181","X":686,"Y":387},{"Bonus":0,"Continent":"K36","ID":49851,"Name":"XDX","PlayerID":699098531,"Points":9281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49851","ServerKey":"pl181","X":607,"Y":305},{"Bonus":0,"Continent":"K66","ID":49853,"Name":"001 Mortalis","PlayerID":849102108,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49853","ServerKey":"pl181","X":671,"Y":638},{"Bonus":0,"Continent":"K57","ID":49854,"Name":"Wioska12","PlayerID":699266530,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49854","ServerKey":"pl181","X":707,"Y":581},{"Bonus":0,"Continent":"K74","ID":49855,"Name":"R 044","PlayerID":699195358,"Points":4567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49855","ServerKey":"pl181","X":495,"Y":722},{"Bonus":0,"Continent":"K66","ID":49856,"Name":"012 telimena","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49856","ServerKey":"pl181","X":616,"Y":681},{"Bonus":5,"Continent":"K24","ID":49857,"Name":"#0306 kawskole","PlayerID":1238300,"Points":4641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49857","ServerKey":"pl181","X":445,"Y":285},{"Bonus":0,"Continent":"K63","ID":49859,"Name":"C035","PlayerID":699383279,"Points":9692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49859","ServerKey":"pl181","X":352,"Y":665},{"Bonus":0,"Continent":"K47","ID":49860,"Name":"C.045","PlayerID":9188016,"Points":4354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49860","ServerKey":"pl181","X":714,"Y":466},{"Bonus":0,"Continent":"K57","ID":49862,"Name":"Wioska4.","PlayerID":699266530,"Points":9315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49862","ServerKey":"pl181","X":707,"Y":579},{"Bonus":0,"Continent":"K63","ID":49863,"Name":"Taran","PlayerID":6180190,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49863","ServerKey":"pl181","X":323,"Y":618},{"Bonus":0,"Continent":"K75","ID":49864,"Name":"3.Ipswich","PlayerID":698215322,"Points":4873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49864","ServerKey":"pl181","X":579,"Y":705},{"Bonus":0,"Continent":"K33","ID":49865,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":5275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49865","ServerKey":"pl181","X":333,"Y":354},{"Bonus":0,"Continent":"K33","ID":49866,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":4826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49866","ServerKey":"pl181","X":368,"Y":322},{"Bonus":0,"Continent":"K66","ID":49867,"Name":"037 Wioska barbarzyƄska","PlayerID":699346280,"Points":8948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49867","ServerKey":"pl181","X":606,"Y":686},{"Bonus":0,"Continent":"K24","ID":49868,"Name":"[0150]","PlayerID":8630972,"Points":9339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49868","ServerKey":"pl181","X":440,"Y":294},{"Bonus":0,"Continent":"K75","ID":49869,"Name":"Bilo","PlayerID":699443920,"Points":4480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49869","ServerKey":"pl181","X":558,"Y":707},{"Bonus":0,"Continent":"K42","ID":49870,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49870","ServerKey":"pl181","X":289,"Y":448},{"Bonus":0,"Continent":"K47","ID":49871,"Name":"074 Stopnie","PlayerID":2135129,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49871","ServerKey":"pl181","X":705,"Y":431},{"Bonus":9,"Continent":"K52","ID":49872,"Name":"EO EO","PlayerID":699697558,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49872","ServerKey":"pl181","X":282,"Y":513},{"Bonus":0,"Continent":"K75","ID":49873,"Name":"038. Brunet wieczorową porą","PlayerID":848928624,"Points":4538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49873","ServerKey":"pl181","X":502,"Y":718},{"Bonus":0,"Continent":"K25","ID":49874,"Name":"003","PlayerID":698736778,"Points":1442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49874","ServerKey":"pl181","X":532,"Y":281},{"Bonus":0,"Continent":"K25","ID":49875,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":5781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49875","ServerKey":"pl181","X":524,"Y":288},{"Bonus":8,"Continent":"K47","ID":49876,"Name":"005","PlayerID":849091105,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49876","ServerKey":"pl181","X":721,"Y":497},{"Bonus":0,"Continent":"K47","ID":49877,"Name":"Zielona Warta","PlayerID":849101378,"Points":8072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49877","ServerKey":"pl181","X":707,"Y":435},{"Bonus":0,"Continent":"K52","ID":49878,"Name":"[0213]","PlayerID":8630972,"Points":7489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49878","ServerKey":"pl181","X":277,"Y":504},{"Bonus":0,"Continent":"K74","ID":49879,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49879","ServerKey":"pl181","X":429,"Y":710},{"Bonus":0,"Continent":"K75","ID":49880,"Name":"060 invidia","PlayerID":849093426,"Points":6701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49880","ServerKey":"pl181","X":542,"Y":715},{"Bonus":0,"Continent":"K53","ID":49882,"Name":"Nowa 01","PlayerID":699321518,"Points":8370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49882","ServerKey":"pl181","X":302,"Y":598},{"Bonus":0,"Continent":"K33","ID":49884,"Name":"K33","PlayerID":699794765,"Points":2206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49884","ServerKey":"pl181","X":316,"Y":390},{"Bonus":0,"Continent":"K63","ID":49885,"Name":"C073","PlayerID":699383279,"Points":6093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49885","ServerKey":"pl181","X":355,"Y":662},{"Bonus":0,"Continent":"K63","ID":49887,"Name":"Jefferson","PlayerID":849105463,"Points":608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49887","ServerKey":"pl181","X":383,"Y":684},{"Bonus":1,"Continent":"K57","ID":49888,"Name":"CastAway #010","PlayerID":9314079,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49888","ServerKey":"pl181","X":706,"Y":584},{"Bonus":0,"Continent":"K42","ID":49889,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49889","ServerKey":"pl181","X":285,"Y":447},{"Bonus":0,"Continent":"K66","ID":49890,"Name":"~~077~~","PlayerID":7829201,"Points":6355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49890","ServerKey":"pl181","X":679,"Y":632},{"Bonus":8,"Continent":"K63","ID":49891,"Name":"0113","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49891","ServerKey":"pl181","X":366,"Y":675},{"Bonus":0,"Continent":"K25","ID":49892,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49892","ServerKey":"pl181","X":500,"Y":281},{"Bonus":0,"Continent":"K66","ID":49893,"Name":"PoƂudniowy WschĂłd 010","PlayerID":699778867,"Points":1951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49893","ServerKey":"pl181","X":690,"Y":612},{"Bonus":0,"Continent":"K52","ID":49894,"Name":"New World","PlayerID":849084005,"Points":6404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49894","ServerKey":"pl181","X":280,"Y":518},{"Bonus":0,"Continent":"K75","ID":49895,"Name":"Wioska barbarzyƄska","PlayerID":6299408,"Points":4082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49895","ServerKey":"pl181","X":562,"Y":714},{"Bonus":0,"Continent":"K47","ID":49896,"Name":"Wioska Turystyczna 007","PlayerID":7588382,"Points":5676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49896","ServerKey":"pl181","X":716,"Y":470},{"Bonus":0,"Continent":"K75","ID":49897,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49897","ServerKey":"pl181","X":551,"Y":717},{"Bonus":0,"Continent":"K57","ID":49898,"Name":"084","PlayerID":7085502,"Points":6317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49898","ServerKey":"pl181","X":715,"Y":520},{"Bonus":0,"Continent":"K52","ID":49899,"Name":"C0249","PlayerID":8841266,"Points":8236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49899","ServerKey":"pl181","X":287,"Y":548},{"Bonus":0,"Continent":"K47","ID":49900,"Name":"[808] Odludzie","PlayerID":848985692,"Points":8496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49900","ServerKey":"pl181","X":708,"Y":430},{"Bonus":0,"Continent":"K57","ID":49901,"Name":"=086= Santa Fe","PlayerID":3781794,"Points":10473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49901","ServerKey":"pl181","X":701,"Y":572},{"Bonus":0,"Continent":"K25","ID":49902,"Name":"Wioska - 007 -","PlayerID":848982634,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49902","ServerKey":"pl181","X":534,"Y":283},{"Bonus":0,"Continent":"K57","ID":49903,"Name":"Nowa 57","PlayerID":698702991,"Points":6940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49903","ServerKey":"pl181","X":701,"Y":588},{"Bonus":9,"Continent":"K24","ID":49904,"Name":"Winterfell.001","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49904","ServerKey":"pl181","X":454,"Y":289},{"Bonus":0,"Continent":"K47","ID":49905,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49905","ServerKey":"pl181","X":713,"Y":430},{"Bonus":0,"Continent":"K53","ID":49906,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":4902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49906","ServerKey":"pl181","X":305,"Y":586},{"Bonus":0,"Continent":"K66","ID":49907,"Name":"komandos48","PlayerID":7976264,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49907","ServerKey":"pl181","X":639,"Y":667},{"Bonus":0,"Continent":"K53","ID":49908,"Name":"Wioska klez 021","PlayerID":698295651,"Points":2831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49908","ServerKey":"pl181","X":315,"Y":564},{"Bonus":0,"Continent":"K36","ID":49910,"Name":"0068","PlayerID":698416970,"Points":5088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49910","ServerKey":"pl181","X":693,"Y":394},{"Bonus":0,"Continent":"K52","ID":49911,"Name":"Wyspa 008","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49911","ServerKey":"pl181","X":289,"Y":567},{"Bonus":0,"Continent":"K25","ID":49912,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49912","ServerKey":"pl181","X":508,"Y":277},{"Bonus":0,"Continent":"K63","ID":49914,"Name":"0131","PlayerID":7085510,"Points":4898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49914","ServerKey":"pl181","X":388,"Y":682},{"Bonus":0,"Continent":"K56","ID":49915,"Name":"tomek016 III","PlayerID":8811880,"Points":2314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49915","ServerKey":"pl181","X":690,"Y":568},{"Bonus":0,"Continent":"K33","ID":49916,"Name":"Wioska barbarzyƄska 003","PlayerID":849068662,"Points":10641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49916","ServerKey":"pl181","X":378,"Y":318},{"Bonus":0,"Continent":"K36","ID":49917,"Name":"Asgard","PlayerID":849101947,"Points":4979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49917","ServerKey":"pl181","X":659,"Y":344},{"Bonus":0,"Continent":"K33","ID":49918,"Name":"003 poćwiczone byq","PlayerID":7386358,"Points":6666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49918","ServerKey":"pl181","X":324,"Y":373},{"Bonus":0,"Continent":"K42","ID":49919,"Name":"B_9","PlayerID":699728266,"Points":1374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49919","ServerKey":"pl181","X":298,"Y":420},{"Bonus":0,"Continent":"K24","ID":49920,"Name":"#0267 EmersonJr","PlayerID":1238300,"Points":5892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49920","ServerKey":"pl181","X":468,"Y":290},{"Bonus":0,"Continent":"K44","ID":49922,"Name":"s181 krzysiek1293","PlayerID":7462660,"Points":10132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49922","ServerKey":"pl181","X":404,"Y":418},{"Bonus":0,"Continent":"K25","ID":49923,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49923","ServerKey":"pl181","X":574,"Y":299},{"Bonus":0,"Continent":"K75","ID":49924,"Name":"xxx","PlayerID":873575,"Points":8785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49924","ServerKey":"pl181","X":536,"Y":714},{"Bonus":0,"Continent":"K75","ID":49925,"Name":"013 zbieranie","PlayerID":6116940,"Points":5146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49925","ServerKey":"pl181","X":532,"Y":713},{"Bonus":0,"Continent":"K36","ID":49926,"Name":"Wioska barbarzyƄska","PlayerID":849048734,"Points":3020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49926","ServerKey":"pl181","X":646,"Y":333},{"Bonus":0,"Continent":"K66","ID":49927,"Name":"Wygwizdowa 008","PlayerID":698562644,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49927","ServerKey":"pl181","X":637,"Y":663},{"Bonus":0,"Continent":"K57","ID":49928,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49928","ServerKey":"pl181","X":710,"Y":547},{"Bonus":0,"Continent":"K24","ID":49929,"Name":"199...Segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49929","ServerKey":"pl181","X":441,"Y":294},{"Bonus":0,"Continent":"K33","ID":49930,"Name":"001","PlayerID":7919620,"Points":9271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49930","ServerKey":"pl181","X":321,"Y":376},{"Bonus":0,"Continent":"K57","ID":49931,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49931","ServerKey":"pl181","X":721,"Y":503},{"Bonus":0,"Continent":"K42","ID":49932,"Name":"Wioska03","PlayerID":8259895,"Points":4580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49932","ServerKey":"pl181","X":297,"Y":420},{"Bonus":0,"Continent":"K34","ID":49933,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49933","ServerKey":"pl181","X":401,"Y":305},{"Bonus":0,"Continent":"K56","ID":49934,"Name":"Wioska 02","PlayerID":849101162,"Points":6926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49934","ServerKey":"pl181","X":694,"Y":591},{"Bonus":0,"Continent":"K47","ID":49936,"Name":"C.046","PlayerID":9188016,"Points":4851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49936","ServerKey":"pl181","X":711,"Y":469},{"Bonus":0,"Continent":"K74","ID":49937,"Name":"005","PlayerID":699725436,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49937","ServerKey":"pl181","X":464,"Y":712},{"Bonus":0,"Continent":"K52","ID":49938,"Name":"New WorldA","PlayerID":849084005,"Points":4363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49938","ServerKey":"pl181","X":282,"Y":534},{"Bonus":0,"Continent":"K66","ID":49939,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":1823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49939","ServerKey":"pl181","X":695,"Y":607},{"Bonus":4,"Continent":"K57","ID":49940,"Name":"A#005","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49940","ServerKey":"pl181","X":716,"Y":504},{"Bonus":0,"Continent":"K74","ID":49941,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49941","ServerKey":"pl181","X":415,"Y":701},{"Bonus":0,"Continent":"K52","ID":49943,"Name":"006","PlayerID":848886200,"Points":3399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49943","ServerKey":"pl181","X":287,"Y":538},{"Bonus":8,"Continent":"K36","ID":49944,"Name":"002. Osada koczownikĂłw","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49944","ServerKey":"pl181","X":681,"Y":375},{"Bonus":0,"Continent":"K57","ID":49945,"Name":"05.CHZ","PlayerID":698905177,"Points":5896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49945","ServerKey":"pl181","X":712,"Y":565},{"Bonus":0,"Continent":"K52","ID":49946,"Name":"EO EO","PlayerID":699697558,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49946","ServerKey":"pl181","X":294,"Y":515},{"Bonus":0,"Continent":"K74","ID":49947,"Name":"Taka.","PlayerID":848999671,"Points":3254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49947","ServerKey":"pl181","X":487,"Y":723},{"Bonus":0,"Continent":"K55","ID":49948,"Name":"Wioska Lord Mariusso","PlayerID":7581876,"Points":8119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49948","ServerKey":"pl181","X":522,"Y":528},{"Bonus":0,"Continent":"K33","ID":49949,"Name":"K33","PlayerID":699794765,"Points":3493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49949","ServerKey":"pl181","X":318,"Y":388},{"Bonus":0,"Continent":"K63","ID":49950,"Name":"Taran","PlayerID":6180190,"Points":8005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49950","ServerKey":"pl181","X":319,"Y":621},{"Bonus":0,"Continent":"K36","ID":49951,"Name":"025","PlayerID":9148043,"Points":5111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49951","ServerKey":"pl181","X":654,"Y":348},{"Bonus":0,"Continent":"K57","ID":49952,"Name":"080","PlayerID":7085502,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49952","ServerKey":"pl181","X":719,"Y":510},{"Bonus":0,"Continent":"K43","ID":49953,"Name":"002e","PlayerID":8259895,"Points":4335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49953","ServerKey":"pl181","X":302,"Y":409},{"Bonus":0,"Continent":"K33","ID":49954,"Name":"Bartek","PlayerID":6416213,"Points":6812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49954","ServerKey":"pl181","X":362,"Y":330},{"Bonus":0,"Continent":"K57","ID":49955,"Name":"-005-","PlayerID":7418168,"Points":5649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49955","ServerKey":"pl181","X":723,"Y":502},{"Bonus":0,"Continent":"K57","ID":49957,"Name":"=093= Wioska barbarzyƄska","PlayerID":3781794,"Points":5862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49957","ServerKey":"pl181","X":701,"Y":589},{"Bonus":3,"Continent":"K42","ID":49958,"Name":"Amaranth.","PlayerID":849001277,"Points":2406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49958","ServerKey":"pl181","X":283,"Y":479},{"Bonus":0,"Continent":"K52","ID":49960,"Name":"[0267]","PlayerID":8630972,"Points":6191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49960","ServerKey":"pl181","X":286,"Y":516},{"Bonus":0,"Continent":"K47","ID":49961,"Name":"Sicario","PlayerID":848896434,"Points":1750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49961","ServerKey":"pl181","X":715,"Y":446},{"Bonus":0,"Continent":"K25","ID":49962,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49962","ServerKey":"pl181","X":520,"Y":284},{"Bonus":4,"Continent":"K74","ID":49963,"Name":"C01 Qukaku.","PlayerID":849037407,"Points":10817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49963","ServerKey":"pl181","X":450,"Y":715},{"Bonus":0,"Continent":"K46","ID":49964,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":6571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49964","ServerKey":"pl181","X":643,"Y":405},{"Bonus":0,"Continent":"K65","ID":49965,"Name":"###146###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49965","ServerKey":"pl181","X":597,"Y":693},{"Bonus":0,"Continent":"K53","ID":49966,"Name":"011","PlayerID":849099463,"Points":5315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49966","ServerKey":"pl181","X":307,"Y":594},{"Bonus":0,"Continent":"K57","ID":49967,"Name":"WEZUWIAN","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49967","ServerKey":"pl181","X":707,"Y":551},{"Bonus":0,"Continent":"K64","ID":49968,"Name":"001 Desant","PlayerID":699745265,"Points":9736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49968","ServerKey":"pl181","X":482,"Y":688},{"Bonus":0,"Continent":"K63","ID":49969,"Name":"C048","PlayerID":699383279,"Points":7170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49969","ServerKey":"pl181","X":354,"Y":669},{"Bonus":0,"Continent":"K52","ID":49970,"Name":"0000030Z","PlayerID":849089881,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49970","ServerKey":"pl181","X":286,"Y":560},{"Bonus":0,"Continent":"K66","ID":49971,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49971","ServerKey":"pl181","X":661,"Y":649},{"Bonus":0,"Continent":"K66","ID":49972,"Name":"rynko","PlayerID":3986807,"Points":1380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49972","ServerKey":"pl181","X":683,"Y":610},{"Bonus":0,"Continent":"K75","ID":49973,"Name":"xxx","PlayerID":873575,"Points":10136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49973","ServerKey":"pl181","X":537,"Y":714},{"Bonus":0,"Continent":"K46","ID":49974,"Name":"B20","PlayerID":849093742,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49974","ServerKey":"pl181","X":646,"Y":445},{"Bonus":0,"Continent":"K47","ID":49975,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49975","ServerKey":"pl181","X":713,"Y":495},{"Bonus":0,"Continent":"K57","ID":49977,"Name":"=079= BORSUKA NORA","PlayerID":3781794,"Points":3841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49977","ServerKey":"pl181","X":707,"Y":570},{"Bonus":0,"Continent":"K75","ID":49978,"Name":"Wioska Boonkol","PlayerID":6116940,"Points":6779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49978","ServerKey":"pl181","X":528,"Y":720},{"Bonus":0,"Continent":"K24","ID":49979,"Name":"333","PlayerID":849089654,"Points":3030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49979","ServerKey":"pl181","X":417,"Y":294},{"Bonus":0,"Continent":"K63","ID":49980,"Name":"Wioska grzegorzzdw","PlayerID":849098132,"Points":2343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49980","ServerKey":"pl181","X":312,"Y":608},{"Bonus":0,"Continent":"K56","ID":49981,"Name":"Wioska 11","PlayerID":849101162,"Points":5006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49981","ServerKey":"pl181","X":695,"Y":591},{"Bonus":0,"Continent":"K63","ID":49983,"Name":"178","PlayerID":849099876,"Points":7605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49983","ServerKey":"pl181","X":384,"Y":682},{"Bonus":0,"Continent":"K36","ID":49984,"Name":"XDX","PlayerID":699098531,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49984","ServerKey":"pl181","X":605,"Y":354},{"Bonus":0,"Continent":"K74","ID":49985,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49985","ServerKey":"pl181","X":411,"Y":703},{"Bonus":0,"Continent":"K36","ID":49986,"Name":"Na KraƄcu ƚwiata 007","PlayerID":9291984,"Points":6536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49986","ServerKey":"pl181","X":647,"Y":339},{"Bonus":0,"Continent":"K35","ID":49987,"Name":"014","PlayerID":1424656,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49987","ServerKey":"pl181","X":545,"Y":394},{"Bonus":0,"Continent":"K25","ID":49988,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49988","ServerKey":"pl181","X":509,"Y":281},{"Bonus":0,"Continent":"K56","ID":49990,"Name":"Wioska 16","PlayerID":849101162,"Points":2656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49990","ServerKey":"pl181","X":694,"Y":587},{"Bonus":5,"Continent":"K75","ID":49991,"Name":"106 invidia","PlayerID":849093426,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49991","ServerKey":"pl181","X":522,"Y":720},{"Bonus":0,"Continent":"K33","ID":49992,"Name":"Saran7","PlayerID":848937248,"Points":3292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49992","ServerKey":"pl181","X":399,"Y":303},{"Bonus":0,"Continent":"K52","ID":49993,"Name":"New WorldA","PlayerID":849084005,"Points":4131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49993","ServerKey":"pl181","X":279,"Y":509},{"Bonus":0,"Continent":"K43","ID":49994,"Name":"Walhalla","PlayerID":8724192,"Points":9453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49994","ServerKey":"pl181","X":310,"Y":403},{"Bonus":0,"Continent":"K42","ID":49995,"Name":"B_2","PlayerID":699728266,"Points":4204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49995","ServerKey":"pl181","X":295,"Y":420},{"Bonus":0,"Continent":"K63","ID":49996,"Name":"Taran","PlayerID":6180190,"Points":8556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49996","ServerKey":"pl181","X":318,"Y":616},{"Bonus":0,"Continent":"K36","ID":49997,"Name":"045","PlayerID":9148043,"Points":5136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49997","ServerKey":"pl181","X":661,"Y":357},{"Bonus":0,"Continent":"K34","ID":49998,"Name":"Wioska hajza","PlayerID":378757,"Points":4338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49998","ServerKey":"pl181","X":406,"Y":305},{"Bonus":0,"Continent":"K47","ID":49999,"Name":"C.047","PlayerID":9188016,"Points":4340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=49999","ServerKey":"pl181","X":720,"Y":478},{"Bonus":0,"Continent":"K36","ID":50000,"Name":"B017","PlayerID":8740199,"Points":2201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50000","ServerKey":"pl181","X":626,"Y":322},{"Bonus":0,"Continent":"K74","ID":50001,"Name":"041.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50001","ServerKey":"pl181","X":451,"Y":708},{"Bonus":0,"Continent":"K66","ID":50002,"Name":"001 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50002","ServerKey":"pl181","X":630,"Y":676},{"Bonus":0,"Continent":"K33","ID":50003,"Name":"Wioska Chudy19","PlayerID":849101694,"Points":7217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50003","ServerKey":"pl181","X":351,"Y":344},{"Bonus":0,"Continent":"K63","ID":50004,"Name":"063 Wioska barbarzyƄska","PlayerID":6354098,"Points":6283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50004","ServerKey":"pl181","X":343,"Y":659},{"Bonus":0,"Continent":"K33","ID":50006,"Name":"6_Franekkimono510_6","PlayerID":849099422,"Points":4340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50006","ServerKey":"pl181","X":370,"Y":319},{"Bonus":0,"Continent":"K36","ID":50007,"Name":"XDX","PlayerID":699098531,"Points":5616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50007","ServerKey":"pl181","X":615,"Y":309},{"Bonus":0,"Continent":"K43","ID":50008,"Name":"000","PlayerID":2418364,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50008","ServerKey":"pl181","X":306,"Y":476},{"Bonus":0,"Continent":"K53","ID":50009,"Name":"Dream on","PlayerID":698962117,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50009","ServerKey":"pl181","X":303,"Y":506},{"Bonus":0,"Continent":"K74","ID":50010,"Name":"Kurnik","PlayerID":699603116,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50010","ServerKey":"pl181","X":476,"Y":714},{"Bonus":0,"Continent":"K25","ID":50011,"Name":"057 Wioska barbarzyƄska","PlayerID":699854484,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50011","ServerKey":"pl181","X":550,"Y":287},{"Bonus":0,"Continent":"K63","ID":50012,"Name":"Polska","PlayerID":849097837,"Points":6638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50012","ServerKey":"pl181","X":379,"Y":682},{"Bonus":0,"Continent":"K33","ID":50013,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":1893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50013","ServerKey":"pl181","X":314,"Y":394},{"Bonus":0,"Continent":"K47","ID":50014,"Name":"B001 OSADA 2","PlayerID":113796,"Points":4061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50014","ServerKey":"pl181","X":710,"Y":463},{"Bonus":0,"Continent":"K75","ID":50015,"Name":"019Szalowanie Czapki","PlayerID":698620694,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50015","ServerKey":"pl181","X":503,"Y":716},{"Bonus":0,"Continent":"K36","ID":50016,"Name":"*009","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50016","ServerKey":"pl181","X":674,"Y":367},{"Bonus":9,"Continent":"K24","ID":50017,"Name":"Winterfell.004","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50017","ServerKey":"pl181","X":465,"Y":289},{"Bonus":0,"Continent":"K47","ID":50019,"Name":"072.","PlayerID":849094609,"Points":4479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50019","ServerKey":"pl181","X":710,"Y":462},{"Bonus":3,"Continent":"K63","ID":50020,"Name":"04Osada koczownikĂłw","PlayerID":699704542,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50020","ServerKey":"pl181","X":363,"Y":675},{"Bonus":0,"Continent":"K36","ID":50021,"Name":"002","PlayerID":9148043,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50021","ServerKey":"pl181","X":647,"Y":346},{"Bonus":0,"Continent":"K63","ID":50022,"Name":"038","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50022","ServerKey":"pl181","X":398,"Y":698},{"Bonus":0,"Continent":"K42","ID":50023,"Name":"22 kolonia016..","PlayerID":849018442,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50023","ServerKey":"pl181","X":290,"Y":456},{"Bonus":0,"Continent":"K66","ID":50024,"Name":"Wiadro01","PlayerID":8677963,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50024","ServerKey":"pl181","X":675,"Y":632},{"Bonus":0,"Continent":"K36","ID":50026,"Name":"Wioska","PlayerID":849005829,"Points":2504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50026","ServerKey":"pl181","X":636,"Y":336},{"Bonus":0,"Continent":"K36","ID":50027,"Name":"wioska","PlayerID":9291984,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50027","ServerKey":"pl181","X":636,"Y":333},{"Bonus":0,"Continent":"K63","ID":50028,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":4788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50028","ServerKey":"pl181","X":377,"Y":686},{"Bonus":0,"Continent":"K63","ID":50029,"Name":"C093","PlayerID":699383279,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50029","ServerKey":"pl181","X":360,"Y":672},{"Bonus":0,"Continent":"K66","ID":50030,"Name":"###133###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50030","ServerKey":"pl181","X":610,"Y":689},{"Bonus":0,"Continent":"K33","ID":50031,"Name":"K33","PlayerID":699794765,"Points":2165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50031","ServerKey":"pl181","X":315,"Y":383},{"Bonus":0,"Continent":"K75","ID":50032,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50032","ServerKey":"pl181","X":551,"Y":716},{"Bonus":0,"Continent":"K42","ID":50034,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50034","ServerKey":"pl181","X":277,"Y":490},{"Bonus":0,"Continent":"K25","ID":50035,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":5904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50035","ServerKey":"pl181","X":526,"Y":288},{"Bonus":6,"Continent":"K36","ID":50036,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50036","ServerKey":"pl181","X":606,"Y":306},{"Bonus":0,"Continent":"K47","ID":50038,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":3438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50038","ServerKey":"pl181","X":720,"Y":492},{"Bonus":0,"Continent":"K54","ID":50039,"Name":"0595","PlayerID":698971484,"Points":9103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50039","ServerKey":"pl181","X":475,"Y":546},{"Bonus":0,"Continent":"K66","ID":50040,"Name":"CastAway !034","PlayerID":9314079,"Points":5806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50040","ServerKey":"pl181","X":689,"Y":605},{"Bonus":0,"Continent":"K54","ID":50041,"Name":"001","PlayerID":9264752,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50041","ServerKey":"pl181","X":402,"Y":590},{"Bonus":0,"Continent":"K42","ID":50042,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50042","ServerKey":"pl181","X":291,"Y":449},{"Bonus":0,"Continent":"K33","ID":50044,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50044","ServerKey":"pl181","X":398,"Y":308},{"Bonus":0,"Continent":"K36","ID":50045,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50045","ServerKey":"pl181","X":614,"Y":317},{"Bonus":0,"Continent":"K75","ID":50046,"Name":":... 2 ...: -","PlayerID":849051976,"Points":8075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50046","ServerKey":"pl181","X":512,"Y":717},{"Bonus":0,"Continent":"K33","ID":50047,"Name":"W001","PlayerID":849082154,"Points":6925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50047","ServerKey":"pl181","X":307,"Y":390},{"Bonus":0,"Continent":"K75","ID":50048,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":2452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50048","ServerKey":"pl181","X":509,"Y":713},{"Bonus":0,"Continent":"K74","ID":50050,"Name":"Wioska majku 3","PlayerID":9195661,"Points":4685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50050","ServerKey":"pl181","X":414,"Y":702},{"Bonus":0,"Continent":"K25","ID":50051,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":1439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50051","ServerKey":"pl181","X":555,"Y":287},{"Bonus":0,"Continent":"K42","ID":50052,"Name":"022","PlayerID":6131106,"Points":2669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50052","ServerKey":"pl181","X":285,"Y":459},{"Bonus":0,"Continent":"K24","ID":50053,"Name":".achim.","PlayerID":6936607,"Points":8472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50053","ServerKey":"pl181","X":481,"Y":288},{"Bonus":0,"Continent":"K24","ID":50054,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50054","ServerKey":"pl181","X":414,"Y":298},{"Bonus":0,"Continent":"K66","ID":50055,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50055","ServerKey":"pl181","X":645,"Y":659},{"Bonus":0,"Continent":"K46","ID":50056,"Name":"Deor, przeginasz","PlayerID":699545762,"Points":2856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50056","ServerKey":"pl181","X":627,"Y":476},{"Bonus":0,"Continent":"K74","ID":50057,"Name":"New World","PlayerID":698152377,"Points":5130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50057","ServerKey":"pl181","X":438,"Y":708},{"Bonus":0,"Continent":"K33","ID":50058,"Name":"002","PlayerID":699660539,"Points":8505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50058","ServerKey":"pl181","X":386,"Y":318},{"Bonus":0,"Continent":"K24","ID":50059,"Name":"#0154 barbarzyƄska","PlayerID":1238300,"Points":5568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50059","ServerKey":"pl181","X":478,"Y":279},{"Bonus":9,"Continent":"K74","ID":50060,"Name":"048.","PlayerID":849034882,"Points":10378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50060","ServerKey":"pl181","X":449,"Y":710},{"Bonus":0,"Continent":"K74","ID":50061,"Name":"Taka.","PlayerID":848999671,"Points":6955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50061","ServerKey":"pl181","X":484,"Y":722},{"Bonus":0,"Continent":"K25","ID":50062,"Name":"North 013","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50062","ServerKey":"pl181","X":513,"Y":287},{"Bonus":0,"Continent":"K47","ID":50063,"Name":"[820] Odludzie","PlayerID":848985692,"Points":6104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50063","ServerKey":"pl181","X":714,"Y":442},{"Bonus":0,"Continent":"K75","ID":50064,"Name":"#0070","PlayerID":1536231,"Points":7803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50064","ServerKey":"pl181","X":572,"Y":711},{"Bonus":0,"Continent":"K63","ID":50065,"Name":"Wioska 0001","PlayerID":9186126,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50065","ServerKey":"pl181","X":343,"Y":655},{"Bonus":0,"Continent":"K33","ID":50066,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50066","ServerKey":"pl181","X":391,"Y":306},{"Bonus":2,"Continent":"K74","ID":50067,"Name":"Kurnik","PlayerID":699603116,"Points":8129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50067","ServerKey":"pl181","X":448,"Y":709},{"Bonus":0,"Continent":"K75","ID":50068,"Name":"Baloo","PlayerID":699443920,"Points":5160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50068","ServerKey":"pl181","X":552,"Y":706},{"Bonus":0,"Continent":"K24","ID":50069,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50069","ServerKey":"pl181","X":435,"Y":293},{"Bonus":0,"Continent":"K65","ID":50070,"Name":"Klejnot nr3","PlayerID":699837483,"Points":2145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50070","ServerKey":"pl181","X":592,"Y":693},{"Bonus":0,"Continent":"K75","ID":50071,"Name":"Wioska barbarzyƄska","PlayerID":6299408,"Points":7000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50071","ServerKey":"pl181","X":559,"Y":715},{"Bonus":0,"Continent":"K75","ID":50073,"Name":"#K75 0012","PlayerID":699728159,"Points":4501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50073","ServerKey":"pl181","X":517,"Y":713},{"Bonus":0,"Continent":"K57","ID":50074,"Name":"Bastion","PlayerID":849088199,"Points":3845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50074","ServerKey":"pl181","X":704,"Y":588},{"Bonus":0,"Continent":"K52","ID":50075,"Name":"006 gruba","PlayerID":197581,"Points":2214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50075","ServerKey":"pl181","X":283,"Y":552},{"Bonus":0,"Continent":"K42","ID":50076,"Name":"B_4","PlayerID":699728266,"Points":2624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50076","ServerKey":"pl181","X":297,"Y":412},{"Bonus":0,"Continent":"K66","ID":50078,"Name":"017","PlayerID":2323859,"Points":3871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50078","ServerKey":"pl181","X":666,"Y":639},{"Bonus":0,"Continent":"K63","ID":50080,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50080","ServerKey":"pl181","X":324,"Y":630},{"Bonus":0,"Continent":"K52","ID":50081,"Name":"New WorldA","PlayerID":849084005,"Points":4176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50081","ServerKey":"pl181","X":282,"Y":527},{"Bonus":0,"Continent":"K36","ID":50082,"Name":"Wioska007","PlayerID":698768565,"Points":8262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50082","ServerKey":"pl181","X":688,"Y":392},{"Bonus":0,"Continent":"K46","ID":50083,"Name":"W42","PlayerID":699524362,"Points":1901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50083","ServerKey":"pl181","X":693,"Y":409},{"Bonus":0,"Continent":"K33","ID":50084,"Name":"Wioska007","PlayerID":699711926,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50084","ServerKey":"pl181","X":343,"Y":348},{"Bonus":0,"Continent":"K33","ID":50085,"Name":"II. Niemyje-Ząbki","PlayerID":849101893,"Points":5320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50085","ServerKey":"pl181","X":364,"Y":328},{"Bonus":0,"Continent":"K33","ID":50086,"Name":"0036","PlayerID":2321390,"Points":2462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50086","ServerKey":"pl181","X":324,"Y":380},{"Bonus":0,"Continent":"K47","ID":50087,"Name":"Minas Tirith","PlayerID":8675636,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50087","ServerKey":"pl181","X":704,"Y":427},{"Bonus":0,"Continent":"K25","ID":50088,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50088","ServerKey":"pl181","X":585,"Y":298},{"Bonus":0,"Continent":"K52","ID":50089,"Name":"008","PlayerID":698663855,"Points":5127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50089","ServerKey":"pl181","X":299,"Y":595},{"Bonus":0,"Continent":"K42","ID":50090,"Name":"Avanti!","PlayerID":698625834,"Points":6788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50090","ServerKey":"pl181","X":282,"Y":470},{"Bonus":0,"Continent":"K66","ID":50091,"Name":"Wiadro02","PlayerID":8677963,"Points":9008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50091","ServerKey":"pl181","X":672,"Y":631},{"Bonus":0,"Continent":"K25","ID":50092,"Name":"#035","PlayerID":849064614,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50092","ServerKey":"pl181","X":553,"Y":291},{"Bonus":0,"Continent":"K57","ID":50093,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":4731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50093","ServerKey":"pl181","X":722,"Y":502},{"Bonus":0,"Continent":"K75","ID":50094,"Name":"001 koparka","PlayerID":6116940,"Points":5364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50094","ServerKey":"pl181","X":527,"Y":719},{"Bonus":0,"Continent":"K24","ID":50095,"Name":"Wioska borat1986","PlayerID":763529,"Points":8109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50095","ServerKey":"pl181","X":498,"Y":286},{"Bonus":0,"Continent":"K24","ID":50096,"Name":"229...PÓƂnoc","PlayerID":6920960,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50096","ServerKey":"pl181","X":436,"Y":288},{"Bonus":0,"Continent":"K52","ID":50097,"Name":"[J]aĆș","PlayerID":849106971,"Points":2905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50097","ServerKey":"pl181","X":285,"Y":547},{"Bonus":0,"Continent":"K53","ID":50098,"Name":"Dream on","PlayerID":698962117,"Points":9508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50098","ServerKey":"pl181","X":306,"Y":500},{"Bonus":0,"Continent":"K74","ID":50099,"Name":"Wyspa_53","PlayerID":2585846,"Points":2854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50099","ServerKey":"pl181","X":496,"Y":719},{"Bonus":0,"Continent":"K75","ID":50100,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50100","ServerKey":"pl181","X":553,"Y":714},{"Bonus":0,"Continent":"K57","ID":50101,"Name":"WAKKRA","PlayerID":17714,"Points":10222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50101","ServerKey":"pl181","X":708,"Y":556},{"Bonus":0,"Continent":"K47","ID":50102,"Name":"Wioska Karyagina","PlayerID":849102480,"Points":8789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50102","ServerKey":"pl181","X":715,"Y":432},{"Bonus":0,"Continent":"K63","ID":50103,"Name":"Chęciny","PlayerID":698167138,"Points":2365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50103","ServerKey":"pl181","X":305,"Y":600},{"Bonus":0,"Continent":"K43","ID":50104,"Name":"Out of Touch","PlayerID":698962117,"Points":7091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50104","ServerKey":"pl181","X":325,"Y":443},{"Bonus":0,"Continent":"K33","ID":50105,"Name":"012","PlayerID":849101205,"Points":3813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50105","ServerKey":"pl181","X":341,"Y":349},{"Bonus":0,"Continent":"K33","ID":50106,"Name":"...","PlayerID":699657450,"Points":4107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50106","ServerKey":"pl181","X":336,"Y":361},{"Bonus":0,"Continent":"K66","ID":50107,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50107","ServerKey":"pl181","X":655,"Y":660},{"Bonus":0,"Continent":"K66","ID":50108,"Name":"Komandos","PlayerID":7976264,"Points":4523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50108","ServerKey":"pl181","X":653,"Y":657},{"Bonus":0,"Continent":"K24","ID":50109,"Name":"Not 2 day","PlayerID":698489071,"Points":5622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50109","ServerKey":"pl181","X":483,"Y":278},{"Bonus":0,"Continent":"K43","ID":50111,"Name":"ZZ13","PlayerID":356642,"Points":9613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50111","ServerKey":"pl181","X":311,"Y":401},{"Bonus":0,"Continent":"K36","ID":50112,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50112","ServerKey":"pl181","X":643,"Y":329},{"Bonus":0,"Continent":"K57","ID":50113,"Name":"=028= Wioska barbarzyƄska","PlayerID":3781794,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50113","ServerKey":"pl181","X":708,"Y":566},{"Bonus":0,"Continent":"K75","ID":50114,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":5835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50114","ServerKey":"pl181","X":506,"Y":718},{"Bonus":0,"Continent":"K36","ID":50115,"Name":"HWILA","PlayerID":849006385,"Points":5227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50115","ServerKey":"pl181","X":626,"Y":317},{"Bonus":0,"Continent":"K66","ID":50116,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50116","ServerKey":"pl181","X":658,"Y":645},{"Bonus":0,"Continent":"K52","ID":50118,"Name":"EO EO","PlayerID":699697558,"Points":8148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50118","ServerKey":"pl181","X":286,"Y":523},{"Bonus":0,"Continent":"K42","ID":50119,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50119","ServerKey":"pl181","X":278,"Y":489},{"Bonus":0,"Continent":"K25","ID":50120,"Name":"076 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50120","ServerKey":"pl181","X":539,"Y":287},{"Bonus":0,"Continent":"K63","ID":50121,"Name":"0140","PlayerID":7085510,"Points":4443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50121","ServerKey":"pl181","X":368,"Y":675},{"Bonus":0,"Continent":"K24","ID":50122,"Name":"????","PlayerID":698489071,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50122","ServerKey":"pl181","X":477,"Y":281},{"Bonus":0,"Continent":"K75","ID":50123,"Name":"067 invidia","PlayerID":849093426,"Points":5621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50123","ServerKey":"pl181","X":542,"Y":718},{"Bonus":0,"Continent":"K36","ID":50124,"Name":"Wioska 032","PlayerID":7226782,"Points":8871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50124","ServerKey":"pl181","X":665,"Y":355},{"Bonus":0,"Continent":"K33","ID":50125,"Name":"JJay House","PlayerID":9120206,"Points":8243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50125","ServerKey":"pl181","X":328,"Y":361},{"Bonus":0,"Continent":"K52","ID":50126,"Name":"[0254]","PlayerID":8630972,"Points":5804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50126","ServerKey":"pl181","X":288,"Y":513},{"Bonus":0,"Continent":"K63","ID":50127,"Name":"052 Wioska barbarzyƄska","PlayerID":6354098,"Points":7080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50127","ServerKey":"pl181","X":347,"Y":662},{"Bonus":7,"Continent":"K43","ID":50128,"Name":"005b","PlayerID":8259895,"Points":4943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50128","ServerKey":"pl181","X":305,"Y":409},{"Bonus":0,"Continent":"K34","ID":50129,"Name":"@08@","PlayerID":699483429,"Points":6926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50129","ServerKey":"pl181","X":405,"Y":326},{"Bonus":0,"Continent":"K63","ID":50130,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50130","ServerKey":"pl181","X":339,"Y":649},{"Bonus":0,"Continent":"K33","ID":50131,"Name":"=0018=","PlayerID":698231772,"Points":9864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50131","ServerKey":"pl181","X":389,"Y":307},{"Bonus":0,"Continent":"K52","ID":50132,"Name":"New WorldA","PlayerID":849084005,"Points":6110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50132","ServerKey":"pl181","X":288,"Y":540},{"Bonus":0,"Continent":"K53","ID":50133,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":4695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50133","ServerKey":"pl181","X":303,"Y":594},{"Bonus":0,"Continent":"K75","ID":50134,"Name":"#K75 0006","PlayerID":699728159,"Points":6066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50134","ServerKey":"pl181","X":521,"Y":716},{"Bonus":0,"Continent":"K33","ID":50135,"Name":"Z 04","PlayerID":6884492,"Points":3289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50135","ServerKey":"pl181","X":384,"Y":312},{"Bonus":0,"Continent":"K52","ID":50136,"Name":"C0232","PlayerID":8841266,"Points":7673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50136","ServerKey":"pl181","X":283,"Y":539},{"Bonus":0,"Continent":"K25","ID":50137,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50137","ServerKey":"pl181","X":504,"Y":279},{"Bonus":0,"Continent":"K57","ID":50138,"Name":"Wioska11","PlayerID":699266530,"Points":6753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50138","ServerKey":"pl181","X":709,"Y":576},{"Bonus":0,"Continent":"K33","ID":50139,"Name":"Zaplecze Deadshot","PlayerID":699796330,"Points":2912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50139","ServerKey":"pl181","X":358,"Y":336},{"Bonus":0,"Continent":"K57","ID":50140,"Name":"028. Falakro","PlayerID":1601917,"Points":8917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50140","ServerKey":"pl181","X":713,"Y":543},{"Bonus":2,"Continent":"K63","ID":50141,"Name":"0109","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50141","ServerKey":"pl181","X":369,"Y":680},{"Bonus":0,"Continent":"K74","ID":50142,"Name":"Bagno 25","PlayerID":848883684,"Points":7889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50142","ServerKey":"pl181","X":477,"Y":721},{"Bonus":0,"Continent":"K75","ID":50143,"Name":"-03-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50143","ServerKey":"pl181","X":579,"Y":700},{"Bonus":0,"Continent":"K47","ID":50145,"Name":".004. Zanzibar","PlayerID":849095599,"Points":7732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50145","ServerKey":"pl181","X":720,"Y":460},{"Bonus":0,"Continent":"K75","ID":50146,"Name":"3.Nottingham","PlayerID":698215322,"Points":4006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50146","ServerKey":"pl181","X":549,"Y":713},{"Bonus":0,"Continent":"K33","ID":50147,"Name":"K33","PlayerID":699794765,"Points":3953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50147","ServerKey":"pl181","X":310,"Y":389},{"Bonus":0,"Continent":"K25","ID":50148,"Name":"047 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50148","ServerKey":"pl181","X":547,"Y":287},{"Bonus":0,"Continent":"K75","ID":50149,"Name":"062 invidia","PlayerID":849093426,"Points":5196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50149","ServerKey":"pl181","X":540,"Y":713},{"Bonus":0,"Continent":"K46","ID":50150,"Name":"004","PlayerID":849085371,"Points":4062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50150","ServerKey":"pl181","X":699,"Y":410},{"Bonus":0,"Continent":"K36","ID":50151,"Name":"Wioska dzbanek54321","PlayerID":698187023,"Points":4472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50151","ServerKey":"pl181","X":693,"Y":397},{"Bonus":0,"Continent":"K36","ID":50152,"Name":"037","PlayerID":9148043,"Points":7696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50152","ServerKey":"pl181","X":655,"Y":352},{"Bonus":0,"Continent":"K66","ID":50153,"Name":"###134###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50153","ServerKey":"pl181","X":606,"Y":689},{"Bonus":0,"Continent":"K34","ID":50154,"Name":"Saran6","PlayerID":848937248,"Points":3398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50154","ServerKey":"pl181","X":401,"Y":303},{"Bonus":0,"Continent":"K42","ID":50155,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50155","ServerKey":"pl181","X":278,"Y":490},{"Bonus":0,"Continent":"K74","ID":50156,"Name":"Taka.","PlayerID":848999671,"Points":5990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50156","ServerKey":"pl181","X":485,"Y":721},{"Bonus":0,"Continent":"K74","ID":50157,"Name":"030.","PlayerID":849034882,"Points":10351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50157","ServerKey":"pl181","X":467,"Y":719},{"Bonus":3,"Continent":"K52","ID":50158,"Name":"C0229","PlayerID":8841266,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50158","ServerKey":"pl181","X":282,"Y":539},{"Bonus":0,"Continent":"K47","ID":50159,"Name":"X002","PlayerID":699722599,"Points":10485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50159","ServerKey":"pl181","X":707,"Y":426},{"Bonus":0,"Continent":"K63","ID":50160,"Name":"C040","PlayerID":699383279,"Points":8552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50160","ServerKey":"pl181","X":354,"Y":665},{"Bonus":0,"Continent":"K66","ID":50161,"Name":"040","PlayerID":2323859,"Points":1045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50161","ServerKey":"pl181","X":667,"Y":647},{"Bonus":0,"Continent":"K33","ID":50162,"Name":"Z 05","PlayerID":6884492,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50162","ServerKey":"pl181","X":384,"Y":313},{"Bonus":0,"Continent":"K24","ID":50163,"Name":"Wioska barbarzyƄska","PlayerID":699863708,"Points":4264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50163","ServerKey":"pl181","X":461,"Y":283},{"Bonus":0,"Continent":"K33","ID":50164,"Name":"krisa","PlayerID":849089601,"Points":5800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50164","ServerKey":"pl181","X":304,"Y":397},{"Bonus":0,"Continent":"K53","ID":50165,"Name":"Wioska barbarzyƄska","PlayerID":8004076,"Points":5305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50165","ServerKey":"pl181","X":327,"Y":559},{"Bonus":0,"Continent":"K75","ID":50166,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":7265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50166","ServerKey":"pl181","X":548,"Y":712},{"Bonus":1,"Continent":"K36","ID":50167,"Name":"003. Osada koczownikĂłw","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50167","ServerKey":"pl181","X":675,"Y":374},{"Bonus":0,"Continent":"K36","ID":50168,"Name":"Wioska krzysztof wspaniaƂy","PlayerID":6111938,"Points":4068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50168","ServerKey":"pl181","X":675,"Y":371},{"Bonus":0,"Continent":"K63","ID":50169,"Name":"C033","PlayerID":699383279,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50169","ServerKey":"pl181","X":369,"Y":676},{"Bonus":0,"Continent":"K24","ID":50170,"Name":"#0149 barbarzyƄska","PlayerID":1238300,"Points":7927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50170","ServerKey":"pl181","X":474,"Y":282},{"Bonus":0,"Continent":"K66","ID":50171,"Name":"Wioska_10oo","PlayerID":6795280,"Points":3945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50171","ServerKey":"pl181","X":647,"Y":663},{"Bonus":0,"Continent":"K33","ID":50172,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50172","ServerKey":"pl181","X":399,"Y":305},{"Bonus":0,"Continent":"K24","ID":50173,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50173","ServerKey":"pl181","X":490,"Y":283},{"Bonus":0,"Continent":"K63","ID":50174,"Name":"004 N","PlayerID":699356968,"Points":6057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50174","ServerKey":"pl181","X":303,"Y":606},{"Bonus":0,"Continent":"K74","ID":50175,"Name":"006","PlayerID":849101309,"Points":1515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50175","ServerKey":"pl181","X":441,"Y":707},{"Bonus":0,"Continent":"K63","ID":50176,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50176","ServerKey":"pl181","X":397,"Y":698},{"Bonus":0,"Continent":"K24","ID":50177,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50177","ServerKey":"pl181","X":489,"Y":283},{"Bonus":0,"Continent":"K25","ID":50178,"Name":"002","PlayerID":698736778,"Points":2666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50178","ServerKey":"pl181","X":527,"Y":279},{"Bonus":0,"Continent":"K33","ID":50179,"Name":"...","PlayerID":699657450,"Points":1962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50179","ServerKey":"pl181","X":338,"Y":357},{"Bonus":0,"Continent":"K57","ID":50180,"Name":"181 Katastrofa, panie rexanty XD","PlayerID":698693697,"Points":3992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50180","ServerKey":"pl181","X":715,"Y":545},{"Bonus":0,"Continent":"K63","ID":50181,"Name":"011","PlayerID":699356968,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50181","ServerKey":"pl181","X":308,"Y":606},{"Bonus":0,"Continent":"K36","ID":50182,"Name":"Na KraƄcu ƚwiata 023","PlayerID":9291984,"Points":4516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50182","ServerKey":"pl181","X":646,"Y":338},{"Bonus":0,"Continent":"K63","ID":50184,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50184","ServerKey":"pl181","X":337,"Y":646},{"Bonus":0,"Continent":"K63","ID":50185,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50185","ServerKey":"pl181","X":389,"Y":639},{"Bonus":0,"Continent":"K36","ID":50186,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50186","ServerKey":"pl181","X":633,"Y":328},{"Bonus":0,"Continent":"K66","ID":50187,"Name":"1. Rivia","PlayerID":849102573,"Points":9590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50187","ServerKey":"pl181","X":602,"Y":693},{"Bonus":0,"Continent":"K75","ID":50188,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":8279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50188","ServerKey":"pl181","X":575,"Y":704},{"Bonus":0,"Continent":"K57","ID":50189,"Name":"=082= Jamestown","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50189","ServerKey":"pl181","X":704,"Y":571},{"Bonus":0,"Continent":"K74","ID":50190,"Name":"0.01 Good Night!","PlayerID":699725436,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50190","ServerKey":"pl181","X":460,"Y":707},{"Bonus":0,"Continent":"K24","ID":50191,"Name":"[0145]","PlayerID":8630972,"Points":9334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50191","ServerKey":"pl181","X":456,"Y":283},{"Bonus":0,"Continent":"K24","ID":50192,"Name":".achim.","PlayerID":6936607,"Points":7326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50192","ServerKey":"pl181","X":480,"Y":284},{"Bonus":0,"Continent":"K42","ID":50193,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50193","ServerKey":"pl181","X":277,"Y":489},{"Bonus":0,"Continent":"K57","ID":50194,"Name":"073","PlayerID":7085502,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50194","ServerKey":"pl181","X":717,"Y":509},{"Bonus":0,"Continent":"K57","ID":50195,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":9094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50195","ServerKey":"pl181","X":711,"Y":574},{"Bonus":0,"Continent":"K74","ID":50196,"Name":"FP037","PlayerID":699605333,"Points":5752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50196","ServerKey":"pl181","X":471,"Y":714},{"Bonus":0,"Continent":"K33","ID":50197,"Name":"160...F","PlayerID":6920960,"Points":7285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50197","ServerKey":"pl181","X":397,"Y":307},{"Bonus":0,"Continent":"K42","ID":50198,"Name":"002","PlayerID":698652171,"Points":9230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50198","ServerKey":"pl181","X":288,"Y":467},{"Bonus":0,"Continent":"K52","ID":50199,"Name":"Wioska barbarzyƄska","PlayerID":498483,"Points":3513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50199","ServerKey":"pl181","X":290,"Y":572},{"Bonus":0,"Continent":"K66","ID":50200,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50200","ServerKey":"pl181","X":652,"Y":655},{"Bonus":0,"Continent":"K42","ID":50201,"Name":"Avanti!","PlayerID":698625834,"Points":8438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50201","ServerKey":"pl181","X":282,"Y":494},{"Bonus":0,"Continent":"K56","ID":50202,"Name":"115. Dorona","PlayerID":8337151,"Points":8375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50202","ServerKey":"pl181","X":640,"Y":599},{"Bonus":0,"Continent":"K74","ID":50203,"Name":"New World","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50203","ServerKey":"pl181","X":432,"Y":711},{"Bonus":0,"Continent":"K66","ID":50204,"Name":"o07","PlayerID":699189792,"Points":9745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50204","ServerKey":"pl181","X":610,"Y":683},{"Bonus":0,"Continent":"K36","ID":50205,"Name":"pulapka plemie","PlayerID":849105232,"Points":2345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50205","ServerKey":"pl181","X":681,"Y":373},{"Bonus":0,"Continent":"K63","ID":50206,"Name":"Barba","PlayerID":698908184,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50206","ServerKey":"pl181","X":322,"Y":633},{"Bonus":0,"Continent":"K33","ID":50207,"Name":"006","PlayerID":8724192,"Points":3805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50207","ServerKey":"pl181","X":309,"Y":399},{"Bonus":0,"Continent":"K57","ID":50209,"Name":"018","PlayerID":7085502,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50209","ServerKey":"pl181","X":711,"Y":565},{"Bonus":0,"Continent":"K66","ID":50210,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":3703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50210","ServerKey":"pl181","X":699,"Y":600},{"Bonus":0,"Continent":"K52","ID":50211,"Name":"[0268]","PlayerID":8630972,"Points":5519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50211","ServerKey":"pl181","X":286,"Y":517},{"Bonus":0,"Continent":"K75","ID":50212,"Name":"Wioska barbarzyƄska","PlayerID":7590135,"Points":6271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50212","ServerKey":"pl181","X":526,"Y":713},{"Bonus":0,"Continent":"K64","ID":50213,"Name":"076","PlayerID":849084985,"Points":9668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50213","ServerKey":"pl181","X":442,"Y":628},{"Bonus":0,"Continent":"K52","ID":50214,"Name":"New WorldA","PlayerID":849084005,"Points":3784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50214","ServerKey":"pl181","X":280,"Y":505},{"Bonus":0,"Continent":"K36","ID":50216,"Name":"Bigosowy1","PlayerID":849095800,"Points":10763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50216","ServerKey":"pl181","X":679,"Y":370},{"Bonus":0,"Continent":"K35","ID":50217,"Name":"XDX","PlayerID":699098531,"Points":6850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50217","ServerKey":"pl181","X":596,"Y":307},{"Bonus":0,"Continent":"K33","ID":50218,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50218","ServerKey":"pl181","X":399,"Y":310},{"Bonus":0,"Continent":"K24","ID":50219,"Name":"????","PlayerID":698489071,"Points":9889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50219","ServerKey":"pl181","X":478,"Y":293},{"Bonus":0,"Continent":"K25","ID":50220,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50220","ServerKey":"pl181","X":581,"Y":298},{"Bonus":0,"Continent":"K63","ID":50221,"Name":"Psycha Siada","PlayerID":8099868,"Points":7185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50221","ServerKey":"pl181","X":335,"Y":650},{"Bonus":0,"Continent":"K35","ID":50222,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50222","ServerKey":"pl181","X":582,"Y":302},{"Bonus":9,"Continent":"K36","ID":50224,"Name":"048","PlayerID":698361257,"Points":8274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50224","ServerKey":"pl181","X":663,"Y":357},{"Bonus":0,"Continent":"K33","ID":50225,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":5672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50225","ServerKey":"pl181","X":322,"Y":366},{"Bonus":0,"Continent":"K47","ID":50226,"Name":"Prawie jak oƛka","PlayerID":699785935,"Points":6192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50226","ServerKey":"pl181","X":702,"Y":424},{"Bonus":0,"Continent":"K24","ID":50227,"Name":"#0297 LAROX","PlayerID":1238300,"Points":5520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50227","ServerKey":"pl181","X":462,"Y":290},{"Bonus":0,"Continent":"K47","ID":50228,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":5893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50228","ServerKey":"pl181","X":713,"Y":496},{"Bonus":0,"Continent":"K64","ID":50229,"Name":"076","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50229","ServerKey":"pl181","X":403,"Y":698},{"Bonus":0,"Continent":"K46","ID":50231,"Name":"W43","PlayerID":699524362,"Points":1951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50231","ServerKey":"pl181","X":695,"Y":411},{"Bonus":0,"Continent":"K63","ID":50233,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50233","ServerKey":"pl181","X":315,"Y":627},{"Bonus":0,"Continent":"K63","ID":50234,"Name":"Wioska juventino1988","PlayerID":699665031,"Points":150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50234","ServerKey":"pl181","X":360,"Y":668},{"Bonus":0,"Continent":"K47","ID":50235,"Name":".002. Malediwy","PlayerID":849095599,"Points":6300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50235","ServerKey":"pl181","X":717,"Y":456},{"Bonus":0,"Continent":"K74","ID":50236,"Name":"084","PlayerID":849099876,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50236","ServerKey":"pl181","X":403,"Y":700},{"Bonus":0,"Continent":"K52","ID":50237,"Name":"005","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50237","ServerKey":"pl181","X":295,"Y":579},{"Bonus":0,"Continent":"K66","ID":50238,"Name":"komandos48","PlayerID":7976264,"Points":8747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50238","ServerKey":"pl181","X":653,"Y":656},{"Bonus":0,"Continent":"K33","ID":50239,"Name":"Szlachcic","PlayerID":698388578,"Points":6243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50239","ServerKey":"pl181","X":364,"Y":330},{"Bonus":0,"Continent":"K36","ID":50240,"Name":"UltraInstynkt","PlayerID":699710633,"Points":10063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50240","ServerKey":"pl181","X":615,"Y":315},{"Bonus":0,"Continent":"K52","ID":50241,"Name":"009 bymp","PlayerID":197581,"Points":1771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50241","ServerKey":"pl181","X":284,"Y":548},{"Bonus":0,"Continent":"K66","ID":50242,"Name":"Komandos","PlayerID":7976264,"Points":10017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50242","ServerKey":"pl181","X":649,"Y":666},{"Bonus":0,"Continent":"K57","ID":50243,"Name":"Wioska3","PlayerID":699266530,"Points":8754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50243","ServerKey":"pl181","X":706,"Y":578},{"Bonus":0,"Continent":"K66","ID":50245,"Name":"Ubrudzona0","PlayerID":8607734,"Points":6065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50245","ServerKey":"pl181","X":624,"Y":683},{"Bonus":9,"Continent":"K52","ID":50246,"Name":"Początek","PlayerID":7842579,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50246","ServerKey":"pl181","X":299,"Y":585},{"Bonus":0,"Continent":"K36","ID":50247,"Name":"Doba","PlayerID":849088882,"Points":3343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50247","ServerKey":"pl181","X":697,"Y":397},{"Bonus":0,"Continent":"K33","ID":50248,"Name":"...","PlayerID":699657450,"Points":8866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50248","ServerKey":"pl181","X":339,"Y":359},{"Bonus":0,"Continent":"K75","ID":50249,"Name":"Wioska KRIS 74 PL","PlayerID":6116940,"Points":3728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50249","ServerKey":"pl181","X":526,"Y":720},{"Bonus":0,"Continent":"K63","ID":50250,"Name":"C092","PlayerID":699383279,"Points":9285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50250","ServerKey":"pl181","X":362,"Y":668},{"Bonus":0,"Continent":"K75","ID":50251,"Name":"056 invidia","PlayerID":849093426,"Points":7215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50251","ServerKey":"pl181","X":548,"Y":709},{"Bonus":0,"Continent":"K47","ID":50252,"Name":"PP020 Liberty Bay","PlayerID":8096537,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50252","ServerKey":"pl181","X":719,"Y":491},{"Bonus":0,"Continent":"K66","ID":50253,"Name":"001","PlayerID":2323859,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50253","ServerKey":"pl181","X":663,"Y":643},{"Bonus":0,"Continent":"K74","ID":50254,"Name":"044.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50254","ServerKey":"pl181","X":457,"Y":715},{"Bonus":0,"Continent":"K74","ID":50255,"Name":"050|| Aquila","PlayerID":849035525,"Points":5454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50255","ServerKey":"pl181","X":459,"Y":717},{"Bonus":0,"Continent":"K34","ID":50256,"Name":"Saran3","PlayerID":848937248,"Points":3619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50256","ServerKey":"pl181","X":409,"Y":301},{"Bonus":0,"Continent":"K63","ID":50257,"Name":"0138","PlayerID":7085510,"Points":3042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50257","ServerKey":"pl181","X":367,"Y":673},{"Bonus":0,"Continent":"K75","ID":50258,"Name":"C013","PlayerID":698599365,"Points":7103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50258","ServerKey":"pl181","X":537,"Y":717},{"Bonus":0,"Continent":"K66","ID":50259,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":5195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50259","ServerKey":"pl181","X":654,"Y":659},{"Bonus":0,"Continent":"K63","ID":50260,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50260","ServerKey":"pl181","X":326,"Y":633},{"Bonus":0,"Continent":"K36","ID":50261,"Name":"005","PlayerID":848889850,"Points":4579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50261","ServerKey":"pl181","X":654,"Y":345},{"Bonus":0,"Continent":"K65","ID":50262,"Name":"Adamo 1","PlayerID":849096768,"Points":9382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50262","ServerKey":"pl181","X":581,"Y":699},{"Bonus":0,"Continent":"K74","ID":50263,"Name":"041|| Bootes","PlayerID":849035525,"Points":3300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50263","ServerKey":"pl181","X":463,"Y":712},{"Bonus":0,"Continent":"K64","ID":50264,"Name":"A021","PlayerID":699383279,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50264","ServerKey":"pl181","X":480,"Y":644},{"Bonus":0,"Continent":"K57","ID":50265,"Name":"074","PlayerID":7085502,"Points":7934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50265","ServerKey":"pl181","X":718,"Y":513},{"Bonus":0,"Continent":"K63","ID":50266,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50266","ServerKey":"pl181","X":321,"Y":628},{"Bonus":0,"Continent":"K63","ID":50267,"Name":"Market","PlayerID":849105463,"Points":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50267","ServerKey":"pl181","X":379,"Y":684},{"Bonus":0,"Continent":"K57","ID":50268,"Name":"Wioska mateuszek15517","PlayerID":7914131,"Points":5067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50268","ServerKey":"pl181","X":710,"Y":557},{"Bonus":0,"Continent":"K56","ID":50269,"Name":"077. Alalea","PlayerID":8337151,"Points":8354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50269","ServerKey":"pl181","X":691,"Y":597},{"Bonus":0,"Continent":"K42","ID":50270,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50270","ServerKey":"pl181","X":289,"Y":458},{"Bonus":0,"Continent":"K42","ID":50271,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50271","ServerKey":"pl181","X":290,"Y":436},{"Bonus":0,"Continent":"K47","ID":50272,"Name":"[812] Odludzie","PlayerID":848985692,"Points":6792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50272","ServerKey":"pl181","X":713,"Y":432},{"Bonus":0,"Continent":"K36","ID":50273,"Name":"Mm02","PlayerID":698442418,"Points":5469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50273","ServerKey":"pl181","X":631,"Y":326},{"Bonus":0,"Continent":"K66","ID":50274,"Name":"050 sebaseba1991","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50274","ServerKey":"pl181","X":618,"Y":687},{"Bonus":0,"Continent":"K75","ID":50275,"Name":"MERHET","PlayerID":698215322,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50275","ServerKey":"pl181","X":586,"Y":705},{"Bonus":0,"Continent":"K25","ID":50276,"Name":"--020--","PlayerID":542253,"Points":7626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50276","ServerKey":"pl181","X":574,"Y":296},{"Bonus":0,"Continent":"K36","ID":50277,"Name":"004","PlayerID":848889850,"Points":5673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50277","ServerKey":"pl181","X":653,"Y":338},{"Bonus":0,"Continent":"K36","ID":50278,"Name":"053","PlayerID":698635863,"Points":7174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50278","ServerKey":"pl181","X":677,"Y":375},{"Bonus":7,"Continent":"K24","ID":50279,"Name":"Osada koczownikĂłw","PlayerID":698231772,"Points":7204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50279","ServerKey":"pl181","X":425,"Y":291},{"Bonus":0,"Continent":"K65","ID":50280,"Name":"- 126 -","PlayerID":849018239,"Points":7261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50280","ServerKey":"pl181","X":546,"Y":605},{"Bonus":0,"Continent":"K57","ID":50281,"Name":"02.ETH","PlayerID":698905177,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50281","ServerKey":"pl181","X":712,"Y":566},{"Bonus":0,"Continent":"K63","ID":50282,"Name":"156","PlayerID":849099876,"Points":4912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50282","ServerKey":"pl181","X":389,"Y":692},{"Bonus":0,"Continent":"K25","ID":50283,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50283","ServerKey":"pl181","X":526,"Y":285},{"Bonus":0,"Continent":"K74","ID":50284,"Name":"Kurnik","PlayerID":699603116,"Points":6198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50284","ServerKey":"pl181","X":452,"Y":712},{"Bonus":4,"Continent":"K33","ID":50286,"Name":"003:Osada koczownikĂłw","PlayerID":8772425,"Points":10615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50286","ServerKey":"pl181","X":372,"Y":328},{"Bonus":0,"Continent":"K47","ID":50287,"Name":"Old Town","PlayerID":699785935,"Points":5801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50287","ServerKey":"pl181","X":701,"Y":424},{"Bonus":0,"Continent":"K63","ID":50288,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50288","ServerKey":"pl181","X":325,"Y":630},{"Bonus":0,"Continent":"K42","ID":50290,"Name":"K42 ADAMUS 003","PlayerID":6212605,"Points":9563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50290","ServerKey":"pl181","X":287,"Y":432},{"Bonus":3,"Continent":"K42","ID":50291,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50291","ServerKey":"pl181","X":294,"Y":437},{"Bonus":0,"Continent":"K53","ID":50292,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":4345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50292","ServerKey":"pl181","X":301,"Y":588},{"Bonus":0,"Continent":"K52","ID":50293,"Name":"009","PlayerID":698663855,"Points":4098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50293","ServerKey":"pl181","X":298,"Y":590},{"Bonus":0,"Continent":"K66","ID":50294,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50294","ServerKey":"pl181","X":656,"Y":652},{"Bonus":0,"Continent":"K66","ID":50295,"Name":"###135###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50295","ServerKey":"pl181","X":611,"Y":690},{"Bonus":0,"Continent":"K75","ID":50296,"Name":"027","PlayerID":698996782,"Points":4634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50296","ServerKey":"pl181","X":529,"Y":720},{"Bonus":0,"Continent":"K42","ID":50297,"Name":"017","PlayerID":2418364,"Points":3132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50297","ServerKey":"pl181","X":290,"Y":464},{"Bonus":0,"Continent":"K64","ID":50299,"Name":"094","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50299","ServerKey":"pl181","X":401,"Y":692},{"Bonus":0,"Continent":"K57","ID":50302,"Name":"kww02","PlayerID":8976313,"Points":5415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50302","ServerKey":"pl181","X":719,"Y":543},{"Bonus":7,"Continent":"K66","ID":50303,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50303","ServerKey":"pl181","X":653,"Y":653},{"Bonus":0,"Continent":"K42","ID":50304,"Name":"Avanti!","PlayerID":698625834,"Points":6748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50304","ServerKey":"pl181","X":286,"Y":472},{"Bonus":0,"Continent":"K52","ID":50307,"Name":"[0255]","PlayerID":8630972,"Points":5927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50307","ServerKey":"pl181","X":281,"Y":513},{"Bonus":0,"Continent":"K33","ID":50308,"Name":"B-002","PlayerID":1267913,"Points":4255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50308","ServerKey":"pl181","X":308,"Y":385},{"Bonus":0,"Continent":"K42","ID":50309,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50309","ServerKey":"pl181","X":294,"Y":445},{"Bonus":32,"Continent":"K53","ID":50310,"Name":"Twierdza (WZ)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50310","ServerKey":"pl181","X":376,"Y":534},{"Bonus":0,"Continent":"K24","ID":50311,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50311","ServerKey":"pl181","X":486,"Y":287},{"Bonus":0,"Continent":"K64","ID":50312,"Name":"184","PlayerID":849099876,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50312","ServerKey":"pl181","X":410,"Y":699},{"Bonus":0,"Continent":"K42","ID":50313,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50313","ServerKey":"pl181","X":290,"Y":435},{"Bonus":0,"Continent":"K63","ID":50314,"Name":"Taran","PlayerID":6180190,"Points":7949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50314","ServerKey":"pl181","X":310,"Y":616},{"Bonus":0,"Continent":"K24","ID":50315,"Name":"North 026","PlayerID":849064752,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50315","ServerKey":"pl181","X":496,"Y":278},{"Bonus":0,"Continent":"K47","ID":50316,"Name":"035 Lilycove City","PlayerID":699441366,"Points":5398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50316","ServerKey":"pl181","X":722,"Y":493},{"Bonus":0,"Continent":"K25","ID":50318,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50318","ServerKey":"pl181","X":579,"Y":295},{"Bonus":0,"Continent":"K47","ID":50319,"Name":"025 Oldale Town","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50319","ServerKey":"pl181","X":713,"Y":483},{"Bonus":0,"Continent":"K52","ID":50320,"Name":"C0278","PlayerID":8841266,"Points":4731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50320","ServerKey":"pl181","X":284,"Y":543},{"Bonus":0,"Continent":"K66","ID":50321,"Name":"010 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50321","ServerKey":"pl181","X":628,"Y":681},{"Bonus":0,"Continent":"K43","ID":50322,"Name":"ƚciernisko","PlayerID":849076515,"Points":1142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50322","ServerKey":"pl181","X":301,"Y":401},{"Bonus":0,"Continent":"K52","ID":50323,"Name":"Hillegom","PlayerID":699830255,"Points":5944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50323","ServerKey":"pl181","X":281,"Y":520},{"Bonus":2,"Continent":"K33","ID":50324,"Name":"011","PlayerID":7386358,"Points":4896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50324","ServerKey":"pl181","X":317,"Y":371},{"Bonus":0,"Continent":"K63","ID":50325,"Name":"Wioska Tomtrik","PlayerID":698908184,"Points":10358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50325","ServerKey":"pl181","X":326,"Y":635},{"Bonus":0,"Continent":"K74","ID":50327,"Name":"Wiosk","PlayerID":6955809,"Points":4982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50327","ServerKey":"pl181","X":448,"Y":716},{"Bonus":0,"Continent":"K66","ID":50328,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":2441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50328","ServerKey":"pl181","X":694,"Y":613},{"Bonus":0,"Continent":"K57","ID":50329,"Name":"181","PlayerID":8541236,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50329","ServerKey":"pl181","X":722,"Y":524},{"Bonus":1,"Continent":"K47","ID":50330,"Name":"03 Punks Not Dead","PlayerID":849101845,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50330","ServerKey":"pl181","X":716,"Y":452},{"Bonus":0,"Continent":"K47","ID":50331,"Name":"065.","PlayerID":849094609,"Points":4050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50331","ServerKey":"pl181","X":718,"Y":461},{"Bonus":0,"Continent":"K74","ID":50332,"Name":"Taka.","PlayerID":848999671,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50332","ServerKey":"pl181","X":483,"Y":722},{"Bonus":0,"Continent":"K52","ID":50333,"Name":"Cisza","PlayerID":698769107,"Points":7388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50333","ServerKey":"pl181","X":288,"Y":553},{"Bonus":0,"Continent":"K36","ID":50334,"Name":"Wioska 3","PlayerID":849101945,"Points":6506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50334","ServerKey":"pl181","X":655,"Y":346},{"Bonus":0,"Continent":"K33","ID":50335,"Name":"Mniejsze zƂo 0088","PlayerID":699794765,"Points":5545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50335","ServerKey":"pl181","X":312,"Y":381},{"Bonus":0,"Continent":"K25","ID":50336,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50336","ServerKey":"pl181","X":504,"Y":280},{"Bonus":0,"Continent":"K36","ID":50337,"Name":"Wioska barbarzyƄska","PlayerID":849101945,"Points":187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50337","ServerKey":"pl181","X":655,"Y":342},{"Bonus":0,"Continent":"K33","ID":50338,"Name":"Zaplecze Barba 031","PlayerID":699796330,"Points":5122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50338","ServerKey":"pl181","X":350,"Y":336},{"Bonus":0,"Continent":"K63","ID":50339,"Name":"HOLENDER 4","PlayerID":698908184,"Points":5434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50339","ServerKey":"pl181","X":320,"Y":623},{"Bonus":0,"Continent":"K66","ID":50340,"Name":"OFF","PlayerID":849014413,"Points":10440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50340","ServerKey":"pl181","X":651,"Y":656},{"Bonus":0,"Continent":"K24","ID":50341,"Name":"305","PlayerID":7271812,"Points":9527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50341","ServerKey":"pl181","X":469,"Y":282},{"Bonus":0,"Continent":"K47","ID":50342,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50342","ServerKey":"pl181","X":720,"Y":476},{"Bonus":0,"Continent":"K42","ID":50343,"Name":"009","PlayerID":6131106,"Points":5815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50343","ServerKey":"pl181","X":293,"Y":426},{"Bonus":0,"Continent":"K57","ID":50344,"Name":"086","PlayerID":7085502,"Points":6271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50344","ServerKey":"pl181","X":719,"Y":516},{"Bonus":0,"Continent":"K75","ID":50345,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":8817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50345","ServerKey":"pl181","X":550,"Y":707},{"Bonus":0,"Continent":"K63","ID":50346,"Name":"Wioska mateusz16180","PlayerID":6554011,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50346","ServerKey":"pl181","X":370,"Y":674},{"Bonus":0,"Continent":"K34","ID":50347,"Name":"ElMajkelos VIII","PlayerID":849085160,"Points":4872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50347","ServerKey":"pl181","X":421,"Y":301},{"Bonus":0,"Continent":"K35","ID":50348,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":2619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50348","ServerKey":"pl181","X":591,"Y":307},{"Bonus":0,"Continent":"K75","ID":50349,"Name":"3.Leeds","PlayerID":698215322,"Points":7229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50349","ServerKey":"pl181","X":545,"Y":717},{"Bonus":0,"Continent":"K36","ID":50350,"Name":"003","PlayerID":848889850,"Points":3282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50350","ServerKey":"pl181","X":654,"Y":343},{"Bonus":0,"Continent":"K75","ID":50352,"Name":"#K75 0020","PlayerID":699728159,"Points":4874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50352","ServerKey":"pl181","X":522,"Y":718},{"Bonus":0,"Continent":"K36","ID":50353,"Name":"B006","PlayerID":8740199,"Points":6257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50353","ServerKey":"pl181","X":620,"Y":323},{"Bonus":0,"Continent":"K57","ID":50354,"Name":"CastAway #004","PlayerID":9314079,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50354","ServerKey":"pl181","X":704,"Y":585},{"Bonus":0,"Continent":"K75","ID":50355,"Name":"034. Istota wody","PlayerID":848928624,"Points":2621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50355","ServerKey":"pl181","X":501,"Y":717},{"Bonus":0,"Continent":"K36","ID":50356,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":4518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50356","ServerKey":"pl181","X":688,"Y":390},{"Bonus":0,"Continent":"K75","ID":50357,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50357","ServerKey":"pl181","X":550,"Y":715},{"Bonus":0,"Continent":"K74","ID":50358,"Name":"0044","PlayerID":699280514,"Points":2820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50358","ServerKey":"pl181","X":464,"Y":710},{"Bonus":0,"Continent":"K75","ID":50359,"Name":"Z001","PlayerID":8153179,"Points":8035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50359","ServerKey":"pl181","X":500,"Y":723},{"Bonus":3,"Continent":"K47","ID":50360,"Name":"Osada koczownikĂłw","PlayerID":8459255,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50360","ServerKey":"pl181","X":702,"Y":409},{"Bonus":0,"Continent":"K65","ID":50361,"Name":"0447","PlayerID":698659980,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50361","ServerKey":"pl181","X":579,"Y":622},{"Bonus":0,"Continent":"K42","ID":50362,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50362","ServerKey":"pl181","X":287,"Y":462},{"Bonus":0,"Continent":"K66","ID":50363,"Name":"047","PlayerID":699695167,"Points":3433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50363","ServerKey":"pl181","X":633,"Y":670},{"Bonus":0,"Continent":"K47","ID":50364,"Name":"[814] Odludzie","PlayerID":848985692,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50364","ServerKey":"pl181","X":707,"Y":443},{"Bonus":0,"Continent":"K66","ID":50365,"Name":"038 Wioska barbarzyƄska","PlayerID":699346280,"Points":8731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50365","ServerKey":"pl181","X":608,"Y":684},{"Bonus":0,"Continent":"K57","ID":50366,"Name":"Wioska13","PlayerID":699266530,"Points":7368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50366","ServerKey":"pl181","X":706,"Y":582},{"Bonus":0,"Continent":"K74","ID":50367,"Name":"009 - Budowanko!","PlayerID":7540891,"Points":7865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50367","ServerKey":"pl181","X":493,"Y":723},{"Bonus":0,"Continent":"K47","ID":50368,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50368","ServerKey":"pl181","X":715,"Y":465},{"Bonus":0,"Continent":"K24","ID":50369,"Name":"085.Stradi","PlayerID":698365960,"Points":10256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50369","ServerKey":"pl181","X":430,"Y":298},{"Bonus":6,"Continent":"K52","ID":50370,"Name":"015","PlayerID":849098688,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50370","ServerKey":"pl181","X":287,"Y":556},{"Bonus":0,"Continent":"K66","ID":50371,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50371","ServerKey":"pl181","X":659,"Y":651},{"Bonus":5,"Continent":"K24","ID":50372,"Name":".achim.","PlayerID":6936607,"Points":7154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50372","ServerKey":"pl181","X":486,"Y":282},{"Bonus":0,"Continent":"K74","ID":50374,"Name":"Wioska barbarzyƄska","PlayerID":849100814,"Points":1773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50374","ServerKey":"pl181","X":422,"Y":709},{"Bonus":0,"Continent":"K56","ID":50375,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50375","ServerKey":"pl181","X":689,"Y":530},{"Bonus":0,"Continent":"K34","ID":50376,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50376","ServerKey":"pl181","X":405,"Y":307},{"Bonus":0,"Continent":"K33","ID":50377,"Name":"Szlachcic","PlayerID":698388578,"Points":5847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50377","ServerKey":"pl181","X":357,"Y":341},{"Bonus":0,"Continent":"K52","ID":50378,"Name":"Wyspa 034","PlayerID":225023,"Points":2240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50378","ServerKey":"pl181","X":290,"Y":563},{"Bonus":0,"Continent":"K66","ID":50379,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50379","ServerKey":"pl181","X":649,"Y":664},{"Bonus":0,"Continent":"K47","ID":50380,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50380","ServerKey":"pl181","X":717,"Y":461},{"Bonus":0,"Continent":"K36","ID":50381,"Name":"Wioska jajoasia","PlayerID":8720321,"Points":643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50381","ServerKey":"pl181","X":632,"Y":326},{"Bonus":0,"Continent":"K52","ID":50382,"Name":"005 Gąsawa","PlayerID":9235561,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50382","ServerKey":"pl181","X":286,"Y":527},{"Bonus":0,"Continent":"K42","ID":50383,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50383","ServerKey":"pl181","X":279,"Y":482},{"Bonus":0,"Continent":"K75","ID":50384,"Name":"1x2 Wioska barbarzyƄska","PlayerID":849055425,"Points":7265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50384","ServerKey":"pl181","X":569,"Y":712},{"Bonus":0,"Continent":"K75","ID":50385,"Name":"#0075","PlayerID":1536231,"Points":4346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50385","ServerKey":"pl181","X":571,"Y":710},{"Bonus":0,"Continent":"K57","ID":50386,"Name":"=078= BORSUK MEGA","PlayerID":3781794,"Points":8100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50386","ServerKey":"pl181","X":706,"Y":566},{"Bonus":0,"Continent":"K74","ID":50387,"Name":"ZZZ","PlayerID":8980651,"Points":6279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50387","ServerKey":"pl181","X":459,"Y":714},{"Bonus":0,"Continent":"K66","ID":50388,"Name":"Wioseczka0","PlayerID":8607734,"Points":6323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50388","ServerKey":"pl181","X":622,"Y":683},{"Bonus":0,"Continent":"K46","ID":50389,"Name":"Incursio","PlayerID":699488108,"Points":9979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50389","ServerKey":"pl181","X":697,"Y":402},{"Bonus":0,"Continent":"K25","ID":50390,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50390","ServerKey":"pl181","X":581,"Y":293},{"Bonus":0,"Continent":"K57","ID":50392,"Name":"19. Brokilon","PlayerID":8976313,"Points":9642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50392","ServerKey":"pl181","X":720,"Y":538},{"Bonus":0,"Continent":"K25","ID":50393,"Name":"Wioska barbarzyƄska","PlayerID":8240677,"Points":7232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50393","ServerKey":"pl181","X":518,"Y":283},{"Bonus":0,"Continent":"K52","ID":50394,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50394","ServerKey":"pl181","X":294,"Y":514},{"Bonus":0,"Continent":"K25","ID":50395,"Name":"D009","PlayerID":699299123,"Points":4557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50395","ServerKey":"pl181","X":559,"Y":291},{"Bonus":0,"Continent":"K74","ID":50397,"Name":"Kurnik","PlayerID":699603116,"Points":10064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50397","ServerKey":"pl181","X":463,"Y":713},{"Bonus":1,"Continent":"K35","ID":50398,"Name":"K35 - [003] Before Land","PlayerID":699088769,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50398","ServerKey":"pl181","X":590,"Y":301},{"Bonus":0,"Continent":"K74","ID":50399,"Name":"Wioska majku 2","PlayerID":9195661,"Points":3491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50399","ServerKey":"pl181","X":416,"Y":704},{"Bonus":0,"Continent":"K47","ID":50400,"Name":"0072","PlayerID":698416970,"Points":5561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50400","ServerKey":"pl181","X":701,"Y":413},{"Bonus":0,"Continent":"K52","ID":50401,"Name":"EO EO","PlayerID":699697558,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50401","ServerKey":"pl181","X":285,"Y":515},{"Bonus":0,"Continent":"K47","ID":50402,"Name":"[802] Odludzie","PlayerID":848985692,"Points":9246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50402","ServerKey":"pl181","X":713,"Y":434},{"Bonus":0,"Continent":"K25","ID":50403,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50403","ServerKey":"pl181","X":500,"Y":284},{"Bonus":0,"Continent":"K52","ID":50404,"Name":"Początek","PlayerID":7842579,"Points":2564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50404","ServerKey":"pl181","X":298,"Y":584},{"Bonus":0,"Continent":"K25","ID":50405,"Name":"037 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50405","ServerKey":"pl181","X":544,"Y":280},{"Bonus":0,"Continent":"K24","ID":50406,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":10390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50406","ServerKey":"pl181","X":434,"Y":288},{"Bonus":0,"Continent":"K47","ID":50407,"Name":"C.039","PlayerID":9188016,"Points":4678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50407","ServerKey":"pl181","X":716,"Y":479},{"Bonus":0,"Continent":"K63","ID":50408,"Name":"014","PlayerID":699356968,"Points":3601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50408","ServerKey":"pl181","X":305,"Y":611},{"Bonus":0,"Continent":"K24","ID":50409,"Name":"095.Stradi","PlayerID":698365960,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50409","ServerKey":"pl181","X":440,"Y":289},{"Bonus":0,"Continent":"K52","ID":50410,"Name":"C0279","PlayerID":8841266,"Points":4443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50410","ServerKey":"pl181","X":283,"Y":543},{"Bonus":0,"Continent":"K75","ID":50411,"Name":"ZZZ .::. cinek3456/01","PlayerID":33900,"Points":10143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50411","ServerKey":"pl181","X":585,"Y":701},{"Bonus":0,"Continent":"K52","ID":50412,"Name":"Wyspa 014","PlayerID":225023,"Points":2746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50412","ServerKey":"pl181","X":292,"Y":559},{"Bonus":0,"Continent":"K33","ID":50413,"Name":"Szlachcic","PlayerID":698388578,"Points":6728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50413","ServerKey":"pl181","X":364,"Y":336},{"Bonus":0,"Continent":"K53","ID":50414,"Name":"C0162","PlayerID":8841266,"Points":9615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50414","ServerKey":"pl181","X":323,"Y":538},{"Bonus":0,"Continent":"K53","ID":50415,"Name":"Uklejka","PlayerID":699265922,"Points":7608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50415","ServerKey":"pl181","X":331,"Y":546},{"Bonus":0,"Continent":"K64","ID":50416,"Name":"061","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50416","ServerKey":"pl181","X":403,"Y":697},{"Bonus":0,"Continent":"K63","ID":50417,"Name":"Taran","PlayerID":6180190,"Points":7321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50417","ServerKey":"pl181","X":311,"Y":607},{"Bonus":0,"Continent":"K75","ID":50418,"Name":"003 czekam na odp","PlayerID":6116940,"Points":4937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50418","ServerKey":"pl181","X":535,"Y":714},{"Bonus":0,"Continent":"K74","ID":50419,"Name":"0008 Wioska kosiarziii","PlayerID":699656989,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50419","ServerKey":"pl181","X":495,"Y":715},{"Bonus":0,"Continent":"K57","ID":50420,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50420","ServerKey":"pl181","X":719,"Y":527},{"Bonus":0,"Continent":"K46","ID":50421,"Name":"100. Bana","PlayerID":8337151,"Points":9085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50421","ServerKey":"pl181","X":625,"Y":477},{"Bonus":0,"Continent":"K63","ID":50422,"Name":"Wioska 0006","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50422","ServerKey":"pl181","X":342,"Y":652},{"Bonus":0,"Continent":"K66","ID":50423,"Name":"025","PlayerID":699099811,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50423","ServerKey":"pl181","X":688,"Y":618},{"Bonus":0,"Continent":"K57","ID":50424,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50424","ServerKey":"pl181","X":724,"Y":504},{"Bonus":0,"Continent":"K75","ID":50425,"Name":"001","PlayerID":698996782,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50425","ServerKey":"pl181","X":534,"Y":719},{"Bonus":0,"Continent":"K56","ID":50426,"Name":"Tomekrol 3","PlayerID":849096334,"Points":6027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50426","ServerKey":"pl181","X":698,"Y":588},{"Bonus":0,"Continent":"K24","ID":50427,"Name":".achim.","PlayerID":6936607,"Points":5289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50427","ServerKey":"pl181","X":484,"Y":278},{"Bonus":0,"Continent":"K47","ID":50428,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":9247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50428","ServerKey":"pl181","X":717,"Y":494},{"Bonus":0,"Continent":"K75","ID":50429,"Name":"003","PlayerID":849097370,"Points":4861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50429","ServerKey":"pl181","X":590,"Y":703},{"Bonus":7,"Continent":"K66","ID":50430,"Name":"036 Osada koczownikĂłw","PlayerID":699346280,"Points":10053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50430","ServerKey":"pl181","X":606,"Y":688},{"Bonus":0,"Continent":"K66","ID":50431,"Name":"Podbitek","PlayerID":849101652,"Points":8011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50431","ServerKey":"pl181","X":690,"Y":605},{"Bonus":0,"Continent":"K75","ID":50432,"Name":"Ave Why!","PlayerID":699121671,"Points":2839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50432","ServerKey":"pl181","X":506,"Y":713},{"Bonus":5,"Continent":"K74","ID":50433,"Name":"002","PlayerID":699725436,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50433","ServerKey":"pl181","X":466,"Y":712},{"Bonus":0,"Continent":"K47","ID":50434,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":7399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50434","ServerKey":"pl181","X":711,"Y":453},{"Bonus":0,"Continent":"K52","ID":50435,"Name":"[0256]","PlayerID":8630972,"Points":6054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50435","ServerKey":"pl181","X":284,"Y":509},{"Bonus":0,"Continent":"K75","ID":50436,"Name":"-12-","PlayerID":849032414,"Points":9090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50436","ServerKey":"pl181","X":580,"Y":700},{"Bonus":0,"Continent":"K63","ID":50437,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50437","ServerKey":"pl181","X":321,"Y":629},{"Bonus":0,"Continent":"K74","ID":50438,"Name":"035","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50438","ServerKey":"pl181","X":401,"Y":700},{"Bonus":0,"Continent":"K74","ID":50439,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50439","ServerKey":"pl181","X":422,"Y":700},{"Bonus":0,"Continent":"K47","ID":50440,"Name":"[806] Odludzie","PlayerID":848985692,"Points":8579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50440","ServerKey":"pl181","X":712,"Y":437},{"Bonus":2,"Continent":"K66","ID":50441,"Name":"komandos","PlayerID":7976264,"Points":10032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50441","ServerKey":"pl181","X":619,"Y":678},{"Bonus":0,"Continent":"K63","ID":50442,"Name":"013","PlayerID":699356968,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50442","ServerKey":"pl181","X":306,"Y":610},{"Bonus":0,"Continent":"K24","ID":50443,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50443","ServerKey":"pl181","X":492,"Y":285},{"Bonus":0,"Continent":"K66","ID":50444,"Name":"_PUSTA","PlayerID":698768565,"Points":7224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50444","ServerKey":"pl181","X":655,"Y":603},{"Bonus":0,"Continent":"K25","ID":50445,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50445","ServerKey":"pl181","X":594,"Y":297},{"Bonus":0,"Continent":"K55","ID":50446,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50446","ServerKey":"pl181","X":576,"Y":586},{"Bonus":0,"Continent":"K63","ID":50447,"Name":"O032","PlayerID":272173,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50447","ServerKey":"pl181","X":333,"Y":637},{"Bonus":0,"Continent":"K63","ID":50448,"Name":"Gran Canaria","PlayerID":947564,"Points":3986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50448","ServerKey":"pl181","X":372,"Y":683},{"Bonus":0,"Continent":"K74","ID":50449,"Name":"Kurnik","PlayerID":699603116,"Points":1972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50449","ServerKey":"pl181","X":448,"Y":713},{"Bonus":0,"Continent":"K36","ID":50450,"Name":"wioska","PlayerID":9291984,"Points":7049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50450","ServerKey":"pl181","X":637,"Y":345},{"Bonus":0,"Continent":"K42","ID":50451,"Name":"K42 ADAMUS 002","PlayerID":6212605,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50451","ServerKey":"pl181","X":287,"Y":431},{"Bonus":0,"Continent":"K36","ID":50452,"Name":"WOLA0002","PlayerID":6956104,"Points":6070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50452","ServerKey":"pl181","X":680,"Y":369},{"Bonus":0,"Continent":"K36","ID":50453,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":4207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50453","ServerKey":"pl181","X":650,"Y":338},{"Bonus":0,"Continent":"K36","ID":50454,"Name":"010","PlayerID":849020094,"Points":4091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50454","ServerKey":"pl181","X":659,"Y":352},{"Bonus":0,"Continent":"K33","ID":50456,"Name":"003. Capricciosa","PlayerID":849102092,"Points":3675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50456","ServerKey":"pl181","X":322,"Y":381},{"Bonus":0,"Continent":"K46","ID":50457,"Name":"001","PlayerID":7409475,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50457","ServerKey":"pl181","X":696,"Y":404},{"Bonus":0,"Continent":"K42","ID":50458,"Name":"bnnnn","PlayerID":848981726,"Points":2135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50458","ServerKey":"pl181","X":278,"Y":471},{"Bonus":0,"Continent":"K33","ID":50459,"Name":"Brak nazwy","PlayerID":698906190,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50459","ServerKey":"pl181","X":357,"Y":335},{"Bonus":0,"Continent":"K36","ID":50460,"Name":"Wioska barbarzyƄska","PlayerID":699580120,"Points":2645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50460","ServerKey":"pl181","X":669,"Y":370},{"Bonus":0,"Continent":"K74","ID":50461,"Name":"Kurnik","PlayerID":699603116,"Points":8277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50461","ServerKey":"pl181","X":450,"Y":713},{"Bonus":0,"Continent":"K36","ID":50462,"Name":"HWILA /1/","PlayerID":849006385,"Points":6539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50462","ServerKey":"pl181","X":629,"Y":319},{"Bonus":0,"Continent":"K74","ID":50463,"Name":"FP036","PlayerID":699605333,"Points":5956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50463","ServerKey":"pl181","X":473,"Y":716},{"Bonus":0,"Continent":"K66","ID":50464,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":2246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50464","ServerKey":"pl181","X":690,"Y":604},{"Bonus":0,"Continent":"K33","ID":50465,"Name":"Trollsonix","PlayerID":849103148,"Points":8597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50465","ServerKey":"pl181","X":335,"Y":345},{"Bonus":0,"Continent":"K33","ID":50466,"Name":"Zaplecze Barba 025","PlayerID":699796330,"Points":6468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50466","ServerKey":"pl181","X":351,"Y":333},{"Bonus":5,"Continent":"K25","ID":50467,"Name":"BRICKLEBERRY","PlayerID":7758085,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50467","ServerKey":"pl181","X":526,"Y":282},{"Bonus":0,"Continent":"K74","ID":50468,"Name":"008 - Budowanko!","PlayerID":7540891,"Points":6950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50468","ServerKey":"pl181","X":492,"Y":720},{"Bonus":0,"Continent":"K57","ID":50469,"Name":"=114= Acoma Pueblo","PlayerID":3781794,"Points":4240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50469","ServerKey":"pl181","X":705,"Y":573},{"Bonus":0,"Continent":"K47","ID":50470,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50470","ServerKey":"pl181","X":709,"Y":448},{"Bonus":0,"Continent":"K66","ID":50471,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":4383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50471","ServerKey":"pl181","X":617,"Y":679},{"Bonus":0,"Continent":"K75","ID":50472,"Name":"Wioska Szaniec","PlayerID":698934729,"Points":2307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50472","ServerKey":"pl181","X":515,"Y":721},{"Bonus":0,"Continent":"K74","ID":50473,"Name":"Kurnik","PlayerID":699603116,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50473","ServerKey":"pl181","X":468,"Y":712},{"Bonus":0,"Continent":"K43","ID":50474,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":11130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50474","ServerKey":"pl181","X":337,"Y":494},{"Bonus":0,"Continent":"K25","ID":50475,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50475","ServerKey":"pl181","X":597,"Y":299},{"Bonus":0,"Continent":"K63","ID":50477,"Name":"C067","PlayerID":699383279,"Points":5106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50477","ServerKey":"pl181","X":359,"Y":663},{"Bonus":0,"Continent":"K66","ID":50478,"Name":"*004*","PlayerID":1205898,"Points":8994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50478","ServerKey":"pl181","X":686,"Y":617},{"Bonus":0,"Continent":"K66","ID":50479,"Name":"komandos","PlayerID":7976264,"Points":5530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50479","ServerKey":"pl181","X":667,"Y":650},{"Bonus":0,"Continent":"K46","ID":50480,"Name":"W44","PlayerID":699524362,"Points":1304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50480","ServerKey":"pl181","X":698,"Y":411},{"Bonus":0,"Continent":"K25","ID":50481,"Name":"North K25","PlayerID":699146580,"Points":2702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50481","ServerKey":"pl181","X":530,"Y":279},{"Bonus":0,"Continent":"K36","ID":50483,"Name":"001. Hubix","PlayerID":2873154,"Points":8731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50483","ServerKey":"pl181","X":682,"Y":383},{"Bonus":0,"Continent":"K36","ID":50484,"Name":"W45","PlayerID":699524362,"Points":2171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50484","ServerKey":"pl181","X":688,"Y":391},{"Bonus":0,"Continent":"K66","ID":50485,"Name":"o008","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50485","ServerKey":"pl181","X":611,"Y":685},{"Bonus":2,"Continent":"K63","ID":50486,"Name":"017","PlayerID":699356968,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50486","ServerKey":"pl181","X":306,"Y":608},{"Bonus":0,"Continent":"K47","ID":50488,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":7397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50488","ServerKey":"pl181","X":714,"Y":498},{"Bonus":0,"Continent":"K24","ID":50489,"Name":"187...Segador","PlayerID":6920960,"Points":10787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50489","ServerKey":"pl181","X":431,"Y":297},{"Bonus":0,"Continent":"K65","ID":50490,"Name":"021","PlayerID":699828685,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50490","ServerKey":"pl181","X":563,"Y":642},{"Bonus":0,"Continent":"K24","ID":50491,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50491","ServerKey":"pl181","X":421,"Y":292},{"Bonus":5,"Continent":"K24","ID":50492,"Name":"303","PlayerID":7271812,"Points":7443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50492","ServerKey":"pl181","X":471,"Y":281},{"Bonus":0,"Continent":"K36","ID":50493,"Name":"HWILA [3]","PlayerID":849006385,"Points":4538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50493","ServerKey":"pl181","X":629,"Y":318},{"Bonus":0,"Continent":"K63","ID":50494,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50494","ServerKey":"pl181","X":319,"Y":628},{"Bonus":0,"Continent":"K24","ID":50495,"Name":"308","PlayerID":7271812,"Points":6546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50495","ServerKey":"pl181","X":448,"Y":284},{"Bonus":0,"Continent":"K66","ID":50496,"Name":"011","PlayerID":2323859,"Points":2745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50496","ServerKey":"pl181","X":663,"Y":641},{"Bonus":0,"Continent":"K25","ID":50497,"Name":"Wioska Daria 201","PlayerID":3027589,"Points":5935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50497","ServerKey":"pl181","X":535,"Y":289},{"Bonus":0,"Continent":"K42","ID":50498,"Name":"Avanti!","PlayerID":698625834,"Points":6752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50498","ServerKey":"pl181","X":284,"Y":484},{"Bonus":0,"Continent":"K52","ID":50499,"Name":"New WorldA","PlayerID":849084005,"Points":4064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50499","ServerKey":"pl181","X":280,"Y":508},{"Bonus":0,"Continent":"K52","ID":50500,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50500","ServerKey":"pl181","X":283,"Y":501},{"Bonus":0,"Continent":"K75","ID":50501,"Name":"xxx","PlayerID":873575,"Points":8856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50501","ServerKey":"pl181","X":538,"Y":716},{"Bonus":0,"Continent":"K66","ID":50502,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":5172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50502","ServerKey":"pl181","X":642,"Y":670},{"Bonus":0,"Continent":"K56","ID":50503,"Name":"Didek","PlayerID":849070946,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50503","ServerKey":"pl181","X":685,"Y":583},{"Bonus":0,"Continent":"K36","ID":50504,"Name":"Wioska 4","PlayerID":849101945,"Points":4064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50504","ServerKey":"pl181","X":652,"Y":350},{"Bonus":0,"Continent":"K63","ID":50505,"Name":"1v9 machine","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50505","ServerKey":"pl181","X":384,"Y":645},{"Bonus":0,"Continent":"K75","ID":50506,"Name":"014","PlayerID":698996782,"Points":6801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50506","ServerKey":"pl181","X":525,"Y":718},{"Bonus":0,"Continent":"K63","ID":50507,"Name":"Wioska Adamek95","PlayerID":849097837,"Points":8944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50507","ServerKey":"pl181","X":375,"Y":683},{"Bonus":0,"Continent":"K47","ID":50508,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":8658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50508","ServerKey":"pl181","X":709,"Y":453},{"Bonus":0,"Continent":"K47","ID":50509,"Name":"Osada 11","PlayerID":8675636,"Points":10845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50509","ServerKey":"pl181","X":700,"Y":423},{"Bonus":0,"Continent":"K66","ID":50510,"Name":"023 A","PlayerID":699099811,"Points":3479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50510","ServerKey":"pl181","X":685,"Y":616},{"Bonus":0,"Continent":"K42","ID":50511,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50511","ServerKey":"pl181","X":291,"Y":443},{"Bonus":6,"Continent":"K66","ID":50512,"Name":"003 Eudona","PlayerID":849102108,"Points":8586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50512","ServerKey":"pl181","X":672,"Y":635},{"Bonus":0,"Continent":"K36","ID":50513,"Name":"074","PlayerID":2502956,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50513","ServerKey":"pl181","X":633,"Y":329},{"Bonus":0,"Continent":"K25","ID":50514,"Name":"005","PlayerID":698736778,"Points":1932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50514","ServerKey":"pl181","X":526,"Y":281},{"Bonus":0,"Continent":"K74","ID":50515,"Name":"Wioska pinokio","PlayerID":849097373,"Points":3534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50515","ServerKey":"pl181","X":433,"Y":714},{"Bonus":0,"Continent":"K63","ID":50516,"Name":"Taran","PlayerID":6180190,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50516","ServerKey":"pl181","X":313,"Y":616},{"Bonus":8,"Continent":"K25","ID":50517,"Name":"016 Osada koczownikĂłw","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50517","ServerKey":"pl181","X":545,"Y":285},{"Bonus":0,"Continent":"K47","ID":50520,"Name":"14 WƁAM","PlayerID":849101845,"Points":9660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50520","ServerKey":"pl181","X":718,"Y":468},{"Bonus":0,"Continent":"K25","ID":50521,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50521","ServerKey":"pl181","X":510,"Y":276},{"Bonus":0,"Continent":"K33","ID":50522,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":9142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50522","ServerKey":"pl181","X":375,"Y":325},{"Bonus":0,"Continent":"K42","ID":50524,"Name":"Avanti!","PlayerID":698625834,"Points":3646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50524","ServerKey":"pl181","X":279,"Y":470},{"Bonus":0,"Continent":"K43","ID":50525,"Name":"No Way","PlayerID":6258092,"Points":6866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50525","ServerKey":"pl181","X":350,"Y":462},{"Bonus":0,"Continent":"K75","ID":50526,"Name":"0007","PlayerID":698723158,"Points":6240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50526","ServerKey":"pl181","X":576,"Y":709},{"Bonus":0,"Continent":"K46","ID":50527,"Name":"B17","PlayerID":849093742,"Points":7819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50527","ServerKey":"pl181","X":646,"Y":446},{"Bonus":0,"Continent":"K65","ID":50528,"Name":"###136###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50528","ServerKey":"pl181","X":595,"Y":695},{"Bonus":0,"Continent":"K34","ID":50529,"Name":"002","PlayerID":9283775,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50529","ServerKey":"pl181","X":406,"Y":304},{"Bonus":0,"Continent":"K25","ID":50530,"Name":"--028--","PlayerID":6936607,"Points":6595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50530","ServerKey":"pl181","X":571,"Y":288},{"Bonus":0,"Continent":"K66","ID":50531,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":1188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50531","ServerKey":"pl181","X":688,"Y":608},{"Bonus":0,"Continent":"K24","ID":50532,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50532","ServerKey":"pl181","X":497,"Y":280},{"Bonus":0,"Continent":"K75","ID":50533,"Name":"064 invidia","PlayerID":849093426,"Points":6236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50533","ServerKey":"pl181","X":542,"Y":712},{"Bonus":0,"Continent":"K65","ID":50534,"Name":"028","PlayerID":2293376,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50534","ServerKey":"pl181","X":533,"Y":671},{"Bonus":0,"Continent":"K47","ID":50535,"Name":"Zachodnia StraĆŒnica","PlayerID":849101378,"Points":7000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50535","ServerKey":"pl181","X":704,"Y":437},{"Bonus":0,"Continent":"K36","ID":50536,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50536","ServerKey":"pl181","X":620,"Y":316},{"Bonus":0,"Continent":"K57","ID":50537,"Name":"082","PlayerID":7085502,"Points":7156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50537","ServerKey":"pl181","X":717,"Y":505},{"Bonus":0,"Continent":"K36","ID":50538,"Name":"0082","PlayerID":698416970,"Points":2933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50538","ServerKey":"pl181","X":692,"Y":384},{"Bonus":0,"Continent":"K36","ID":50539,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50539","ServerKey":"pl181","X":638,"Y":328},{"Bonus":0,"Continent":"K66","ID":50540,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50540","ServerKey":"pl181","X":655,"Y":649},{"Bonus":0,"Continent":"K52","ID":50541,"Name":"qqqqq3","PlayerID":849084005,"Points":3434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50541","ServerKey":"pl181","X":284,"Y":522},{"Bonus":1,"Continent":"K47","ID":50542,"Name":"014","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50542","ServerKey":"pl181","X":722,"Y":498},{"Bonus":0,"Continent":"K74","ID":50543,"Name":"0009 Marysin","PlayerID":699656989,"Points":9924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50543","ServerKey":"pl181","X":496,"Y":722},{"Bonus":0,"Continent":"K52","ID":50544,"Name":"[0257]","PlayerID":8630972,"Points":6169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50544","ServerKey":"pl181","X":280,"Y":513},{"Bonus":0,"Continent":"K47","ID":50545,"Name":"X010","PlayerID":699722599,"Points":6875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50545","ServerKey":"pl181","X":710,"Y":422},{"Bonus":0,"Continent":"K63","ID":50546,"Name":"C039","PlayerID":699383279,"Points":8024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50546","ServerKey":"pl181","X":355,"Y":669},{"Bonus":0,"Continent":"K36","ID":50547,"Name":"XDX","PlayerID":699098531,"Points":7232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50547","ServerKey":"pl181","X":612,"Y":314},{"Bonus":0,"Continent":"K24","ID":50548,"Name":"Trzebiatkowa","PlayerID":849101116,"Points":2785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50548","ServerKey":"pl181","X":461,"Y":289},{"Bonus":0,"Continent":"K47","ID":50549,"Name":"LENI***","PlayerID":849101881,"Points":6609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50549","ServerKey":"pl181","X":700,"Y":415},{"Bonus":0,"Continent":"K63","ID":50550,"Name":"Flange 9000","PlayerID":849092685,"Points":6276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50550","ServerKey":"pl181","X":354,"Y":658},{"Bonus":0,"Continent":"K36","ID":50552,"Name":"023. elli38","PlayerID":2873154,"Points":7455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50552","ServerKey":"pl181","X":685,"Y":375},{"Bonus":4,"Continent":"K57","ID":50553,"Name":"Sernik z Andzynkami","PlayerID":699126484,"Points":10107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50553","ServerKey":"pl181","X":714,"Y":507},{"Bonus":0,"Continent":"K74","ID":50554,"Name":"Bagno 44","PlayerID":848883684,"Points":6156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50554","ServerKey":"pl181","X":476,"Y":723},{"Bonus":0,"Continent":"K47","ID":50555,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":4597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50555","ServerKey":"pl181","X":705,"Y":422},{"Bonus":0,"Continent":"K33","ID":50556,"Name":"Wioska barbarzyƄska 017","PlayerID":849068662,"Points":6493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50556","ServerKey":"pl181","X":386,"Y":308},{"Bonus":0,"Continent":"K35","ID":50557,"Name":".achim.","PlayerID":6936607,"Points":9476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50557","ServerKey":"pl181","X":535,"Y":396},{"Bonus":0,"Continent":"K52","ID":50558,"Name":"New WorldA","PlayerID":849084005,"Points":2176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50558","ServerKey":"pl181","X":288,"Y":534},{"Bonus":0,"Continent":"K24","ID":50559,"Name":"[0164]","PlayerID":8630972,"Points":8693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50559","ServerKey":"pl181","X":458,"Y":285},{"Bonus":0,"Continent":"K33","ID":50560,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":3615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50560","ServerKey":"pl181","X":387,"Y":315},{"Bonus":0,"Continent":"K75","ID":50561,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":2823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50561","ServerKey":"pl181","X":545,"Y":710},{"Bonus":0,"Continent":"K52","ID":50562,"Name":"Zzz 01 jem ƛniadanie","PlayerID":849084740,"Points":4832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50562","ServerKey":"pl181","X":295,"Y":570},{"Bonus":0,"Continent":"K53","ID":50563,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":3241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50563","ServerKey":"pl181","X":304,"Y":595},{"Bonus":0,"Continent":"K25","ID":50564,"Name":"Wioska MrPaullus","PlayerID":699818726,"Points":8968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50564","ServerKey":"pl181","X":529,"Y":288},{"Bonus":0,"Continent":"K35","ID":50565,"Name":"XDX","PlayerID":699098531,"Points":5854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50565","ServerKey":"pl181","X":599,"Y":309},{"Bonus":4,"Continent":"K25","ID":50566,"Name":"Wancki","PlayerID":7758085,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50566","ServerKey":"pl181","X":526,"Y":280},{"Bonus":0,"Continent":"K75","ID":50567,"Name":"wy...m","PlayerID":699828685,"Points":4879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50567","ServerKey":"pl181","X":598,"Y":700},{"Bonus":0,"Continent":"K63","ID":50568,"Name":"Taran","PlayerID":6180190,"Points":7080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50568","ServerKey":"pl181","X":317,"Y":624},{"Bonus":0,"Continent":"K66","ID":50569,"Name":"2. Ellander","PlayerID":849102573,"Points":6741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50569","ServerKey":"pl181","X":603,"Y":693},{"Bonus":0,"Continent":"K66","ID":50570,"Name":"komandos48","PlayerID":7976264,"Points":9802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50570","ServerKey":"pl181","X":640,"Y":666},{"Bonus":0,"Continent":"K57","ID":50571,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":4250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50571","ServerKey":"pl181","X":724,"Y":500},{"Bonus":0,"Continent":"K63","ID":50572,"Name":"Wioska Pracz 9","PlayerID":8916982,"Points":2494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50572","ServerKey":"pl181","X":311,"Y":620},{"Bonus":0,"Continent":"K36","ID":50573,"Name":"Flap","PlayerID":699098531,"Points":7566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50573","ServerKey":"pl181","X":601,"Y":303},{"Bonus":0,"Continent":"K33","ID":50574,"Name":"...","PlayerID":699657450,"Points":2522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50574","ServerKey":"pl181","X":337,"Y":362},{"Bonus":0,"Continent":"K42","ID":50575,"Name":"[0152]","PlayerID":8630972,"Points":8856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50575","ServerKey":"pl181","X":280,"Y":497},{"Bonus":1,"Continent":"K57","ID":50576,"Name":"054","PlayerID":699413040,"Points":10426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50576","ServerKey":"pl181","X":717,"Y":513},{"Bonus":0,"Continent":"K63","ID":50577,"Name":"Taran","PlayerID":6180190,"Points":9006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50577","ServerKey":"pl181","X":309,"Y":615},{"Bonus":0,"Continent":"K46","ID":50578,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50578","ServerKey":"pl181","X":697,"Y":416},{"Bonus":0,"Continent":"K25","ID":50579,"Name":"sh04","PlayerID":7064954,"Points":5615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50579","ServerKey":"pl181","X":513,"Y":286},{"Bonus":0,"Continent":"K36","ID":50580,"Name":"001","PlayerID":699117992,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50580","ServerKey":"pl181","X":611,"Y":308},{"Bonus":0,"Continent":"K63","ID":50581,"Name":"C094","PlayerID":699383279,"Points":7406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50581","ServerKey":"pl181","X":359,"Y":666},{"Bonus":0,"Continent":"K36","ID":50582,"Name":"Wioska-009-","PlayerID":7675610,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50582","ServerKey":"pl181","X":634,"Y":332},{"Bonus":0,"Continent":"K74","ID":50583,"Name":"Bagno 30","PlayerID":848883684,"Points":7470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50583","ServerKey":"pl181","X":479,"Y":721},{"Bonus":0,"Continent":"K63","ID":50584,"Name":"Psycha Siada","PlayerID":8099868,"Points":8180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50584","ServerKey":"pl181","X":335,"Y":644},{"Bonus":0,"Continent":"K54","ID":50585,"Name":"089. ALFI","PlayerID":8539216,"Points":500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50585","ServerKey":"pl181","X":470,"Y":575},{"Bonus":0,"Continent":"K42","ID":50586,"Name":"StatePchelka","PlayerID":698652171,"Points":6917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50586","ServerKey":"pl181","X":283,"Y":458},{"Bonus":0,"Continent":"K75","ID":50587,"Name":"Albus Lepus","PlayerID":849102336,"Points":8693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50587","ServerKey":"pl181","X":524,"Y":722},{"Bonus":0,"Continent":"K36","ID":50588,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":7340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50588","ServerKey":"pl181","X":642,"Y":337},{"Bonus":0,"Continent":"K36","ID":50589,"Name":"06 wioska","PlayerID":6517826,"Points":2647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50589","ServerKey":"pl181","X":633,"Y":323},{"Bonus":0,"Continent":"K42","ID":50590,"Name":"001","PlayerID":6131106,"Points":7791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50590","ServerKey":"pl181","X":290,"Y":431},{"Bonus":0,"Continent":"K65","ID":50591,"Name":"113","PlayerID":849097799,"Points":5814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50591","ServerKey":"pl181","X":593,"Y":670},{"Bonus":0,"Continent":"K57","ID":50592,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50592","ServerKey":"pl181","X":718,"Y":524},{"Bonus":0,"Continent":"K66","ID":50594,"Name":"Ć»UBEREK 007","PlayerID":33900,"Points":6546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50594","ServerKey":"pl181","X":614,"Y":693},{"Bonus":0,"Continent":"K65","ID":50595,"Name":"181","PlayerID":8627359,"Points":9368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50595","ServerKey":"pl181","X":581,"Y":619},{"Bonus":0,"Continent":"K66","ID":50597,"Name":"048","PlayerID":699695167,"Points":3247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50597","ServerKey":"pl181","X":629,"Y":673},{"Bonus":0,"Continent":"K52","ID":50598,"Name":"QQQQ","PlayerID":849047233,"Points":4790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50598","ServerKey":"pl181","X":283,"Y":522},{"Bonus":0,"Continent":"K36","ID":50599,"Name":"009","PlayerID":699117992,"Points":6445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50599","ServerKey":"pl181","X":606,"Y":304},{"Bonus":0,"Continent":"K42","ID":50600,"Name":"001f","PlayerID":8259895,"Points":7717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50600","ServerKey":"pl181","X":299,"Y":412},{"Bonus":0,"Continent":"K74","ID":50601,"Name":"[010]","PlayerID":849089459,"Points":7107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50601","ServerKey":"pl181","X":456,"Y":713},{"Bonus":2,"Continent":"K36","ID":50602,"Name":"012","PlayerID":849020094,"Points":566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50602","ServerKey":"pl181","X":651,"Y":339},{"Bonus":0,"Continent":"K25","ID":50603,"Name":"--043--","PlayerID":542253,"Points":9783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50603","ServerKey":"pl181","X":577,"Y":291},{"Bonus":0,"Continent":"K52","ID":50604,"Name":"005","PlayerID":698663855,"Points":8598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50604","ServerKey":"pl181","X":299,"Y":587},{"Bonus":0,"Continent":"K46","ID":50605,"Name":"Jehu_Kingdom_61","PlayerID":8785314,"Points":2891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50605","ServerKey":"pl181","X":628,"Y":480},{"Bonus":0,"Continent":"K47","ID":50606,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":4255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50606","ServerKey":"pl181","X":705,"Y":421},{"Bonus":0,"Continent":"K57","ID":50607,"Name":"03.XRP","PlayerID":698905177,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50607","ServerKey":"pl181","X":713,"Y":561},{"Bonus":0,"Continent":"K36","ID":50608,"Name":"Klaudek25","PlayerID":849092309,"Points":998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50608","ServerKey":"pl181","X":633,"Y":361},{"Bonus":0,"Continent":"K63","ID":50609,"Name":"070","PlayerID":849099876,"Points":10026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50609","ServerKey":"pl181","X":399,"Y":692},{"Bonus":0,"Continent":"K42","ID":50610,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50610","ServerKey":"pl181","X":291,"Y":434},{"Bonus":0,"Continent":"K24","ID":50612,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50612","ServerKey":"pl181","X":416,"Y":295},{"Bonus":0,"Continent":"K66","ID":50614,"Name":"Yoto0","PlayerID":8607734,"Points":4314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50614","ServerKey":"pl181","X":621,"Y":686},{"Bonus":4,"Continent":"K66","ID":50615,"Name":"OFF","PlayerID":849014413,"Points":10343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50615","ServerKey":"pl181","X":655,"Y":661},{"Bonus":0,"Continent":"K36","ID":50619,"Name":"B007","PlayerID":8740199,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50619","ServerKey":"pl181","X":627,"Y":327},{"Bonus":0,"Continent":"K75","ID":50621,"Name":"012 pogromca barbakĂłw","PlayerID":6116940,"Points":5742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50621","ServerKey":"pl181","X":532,"Y":714},{"Bonus":0,"Continent":"K33","ID":50623,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50623","ServerKey":"pl181","X":398,"Y":306},{"Bonus":0,"Continent":"K63","ID":50624,"Name":"175","PlayerID":849099876,"Points":7612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50624","ServerKey":"pl181","X":381,"Y":679},{"Bonus":0,"Continent":"K57","ID":50625,"Name":"=094= Wioska barbarzyƄska","PlayerID":3781794,"Points":3507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50625","ServerKey":"pl181","X":701,"Y":598},{"Bonus":0,"Continent":"K36","ID":50626,"Name":"008","PlayerID":699117992,"Points":5209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50626","ServerKey":"pl181","X":616,"Y":309},{"Bonus":0,"Continent":"K35","ID":50627,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50627","ServerKey":"pl181","X":594,"Y":303},{"Bonus":0,"Continent":"K24","ID":50628,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50628","ServerKey":"pl181","X":431,"Y":290},{"Bonus":0,"Continent":"K63","ID":50629,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50629","ServerKey":"pl181","X":338,"Y":656},{"Bonus":0,"Continent":"K33","ID":50630,"Name":"Wioska001","PlayerID":699711926,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50630","ServerKey":"pl181","X":346,"Y":344},{"Bonus":0,"Continent":"K25","ID":50631,"Name":"Bremervoord","PlayerID":849054951,"Points":9975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50631","ServerKey":"pl181","X":555,"Y":292},{"Bonus":0,"Continent":"K47","ID":50632,"Name":"Sekunda","PlayerID":699785935,"Points":5742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50632","ServerKey":"pl181","X":705,"Y":426},{"Bonus":0,"Continent":"K42","ID":50633,"Name":"Avanti!","PlayerID":698625834,"Points":6793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50633","ServerKey":"pl181","X":287,"Y":480},{"Bonus":0,"Continent":"K63","ID":50634,"Name":"121","PlayerID":849099876,"Points":8560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50634","ServerKey":"pl181","X":392,"Y":697},{"Bonus":0,"Continent":"K66","ID":50635,"Name":"o08","PlayerID":699189792,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50635","ServerKey":"pl181","X":613,"Y":683},{"Bonus":0,"Continent":"K75","ID":50636,"Name":"rafisonik11","PlayerID":849101108,"Points":5519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50636","ServerKey":"pl181","X":516,"Y":721},{"Bonus":0,"Continent":"K36","ID":50637,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50637","ServerKey":"pl181","X":605,"Y":307},{"Bonus":0,"Continent":"K63","ID":50638,"Name":"Psycha Siada","PlayerID":8099868,"Points":7922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50638","ServerKey":"pl181","X":339,"Y":646},{"Bonus":0,"Continent":"K66","ID":50639,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50639","ServerKey":"pl181","X":658,"Y":650},{"Bonus":0,"Continent":"K74","ID":50640,"Name":"Bagno 10","PlayerID":848883684,"Points":9401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50640","ServerKey":"pl181","X":484,"Y":718},{"Bonus":0,"Continent":"K63","ID":50641,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50641","ServerKey":"pl181","X":324,"Y":631},{"Bonus":0,"Continent":"K33","ID":50642,"Name":"163...I","PlayerID":6920960,"Points":5782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50642","ServerKey":"pl181","X":391,"Y":315},{"Bonus":0,"Continent":"K52","ID":50643,"Name":"Wyspa 019","PlayerID":225023,"Points":4661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50643","ServerKey":"pl181","X":298,"Y":571},{"Bonus":0,"Continent":"K75","ID":50644,"Name":"061 invidia","PlayerID":849093426,"Points":6115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50644","ServerKey":"pl181","X":541,"Y":714},{"Bonus":0,"Continent":"K74","ID":50645,"Name":"New World","PlayerID":698152377,"Points":9407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50645","ServerKey":"pl181","X":420,"Y":710},{"Bonus":0,"Continent":"K25","ID":50646,"Name":"AAA","PlayerID":1006847,"Points":9356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50646","ServerKey":"pl181","X":541,"Y":288},{"Bonus":0,"Continent":"K33","ID":50648,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50648","ServerKey":"pl181","X":391,"Y":310},{"Bonus":0,"Continent":"K33","ID":50649,"Name":"Wioska barbarzyƄska 013","PlayerID":849068662,"Points":5015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50649","ServerKey":"pl181","X":386,"Y":310},{"Bonus":0,"Continent":"K66","ID":50650,"Name":"009 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50650","ServerKey":"pl181","X":631,"Y":682},{"Bonus":0,"Continent":"K52","ID":50651,"Name":"Betelgeza","PlayerID":849101647,"Points":6334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50651","ServerKey":"pl181","X":284,"Y":511},{"Bonus":0,"Continent":"K47","ID":50652,"Name":"[801] Odludzie","PlayerID":848985692,"Points":8776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50652","ServerKey":"pl181","X":709,"Y":432},{"Bonus":0,"Continent":"K36","ID":50653,"Name":"016. Wioska barbarzyƄska","PlayerID":2873154,"Points":8742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50653","ServerKey":"pl181","X":683,"Y":376},{"Bonus":0,"Continent":"K36","ID":50654,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50654","ServerKey":"pl181","X":617,"Y":316},{"Bonus":0,"Continent":"K52","ID":50655,"Name":"[0258]","PlayerID":8630972,"Points":5927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50655","ServerKey":"pl181","X":280,"Y":512},{"Bonus":0,"Continent":"K36","ID":50656,"Name":"elisea","PlayerID":849048734,"Points":2351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50656","ServerKey":"pl181","X":644,"Y":336},{"Bonus":0,"Continent":"K57","ID":50657,"Name":"034. Hermon","PlayerID":1601917,"Points":7465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50657","ServerKey":"pl181","X":711,"Y":559},{"Bonus":0,"Continent":"K33","ID":50658,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50658","ServerKey":"pl181","X":325,"Y":368},{"Bonus":0,"Continent":"K63","ID":50659,"Name":"Wioska Aga22011993","PlayerID":698908184,"Points":6814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50659","ServerKey":"pl181","X":331,"Y":639},{"Bonus":0,"Continent":"K74","ID":50660,"Name":"003 - Budowanko!","PlayerID":7540891,"Points":10207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50660","ServerKey":"pl181","X":491,"Y":718},{"Bonus":0,"Continent":"K25","ID":50661,"Name":"North 014","PlayerID":849064752,"Points":10203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50661","ServerKey":"pl181","X":504,"Y":282},{"Bonus":0,"Continent":"K74","ID":50662,"Name":"New World","PlayerID":698152377,"Points":7596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50662","ServerKey":"pl181","X":436,"Y":713},{"Bonus":0,"Continent":"K52","ID":50664,"Name":"Wyspa 004","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50664","ServerKey":"pl181","X":292,"Y":562},{"Bonus":0,"Continent":"K24","ID":50666,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50666","ServerKey":"pl181","X":411,"Y":298},{"Bonus":0,"Continent":"K54","ID":50667,"Name":"BETI 014","PlayerID":8539216,"Points":2041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50667","ServerKey":"pl181","X":456,"Y":566},{"Bonus":0,"Continent":"K25","ID":50668,"Name":"--021--","PlayerID":542253,"Points":6916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50668","ServerKey":"pl181","X":575,"Y":294},{"Bonus":0,"Continent":"K42","ID":50669,"Name":"K42 ADAMUS 001","PlayerID":6212605,"Points":9326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50669","ServerKey":"pl181","X":287,"Y":430},{"Bonus":0,"Continent":"K75","ID":50670,"Name":"#K75 0032","PlayerID":699728159,"Points":5868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50670","ServerKey":"pl181","X":520,"Y":721},{"Bonus":0,"Continent":"K75","ID":50671,"Name":"Wioska barbarzyƄska","PlayerID":6870350,"Points":3030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50671","ServerKey":"pl181","X":564,"Y":707},{"Bonus":0,"Continent":"K36","ID":50672,"Name":"XDX","PlayerID":699098531,"Points":6832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50672","ServerKey":"pl181","X":613,"Y":312},{"Bonus":0,"Continent":"K66","ID":50673,"Name":"Komandos","PlayerID":7976264,"Points":5617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50673","ServerKey":"pl181","X":646,"Y":664},{"Bonus":0,"Continent":"K33","ID":50674,"Name":"Mniejsze zƂo 0084","PlayerID":699794765,"Points":5160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50674","ServerKey":"pl181","X":316,"Y":389},{"Bonus":0,"Continent":"K74","ID":50676,"Name":"Bagno 16","PlayerID":848883684,"Points":8702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50676","ServerKey":"pl181","X":485,"Y":717},{"Bonus":0,"Continent":"K63","ID":50677,"Name":"181.01","PlayerID":848931321,"Points":10986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50677","ServerKey":"pl181","X":365,"Y":674},{"Bonus":0,"Continent":"K56","ID":50678,"Name":"=095= Wioska barbarzyƄska","PlayerID":3781794,"Points":5862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50678","ServerKey":"pl181","X":699,"Y":596},{"Bonus":0,"Continent":"K75","ID":50679,"Name":"3.Newcastle upon Tyne","PlayerID":698215322,"Points":5698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50679","ServerKey":"pl181","X":549,"Y":714},{"Bonus":0,"Continent":"K75","ID":50680,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":6587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50680","ServerKey":"pl181","X":576,"Y":705},{"Bonus":0,"Continent":"K36","ID":50681,"Name":"Na KraƄcu ƚwiata 005","PlayerID":9291984,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50681","ServerKey":"pl181","X":643,"Y":340},{"Bonus":0,"Continent":"K63","ID":50682,"Name":"117","PlayerID":849099876,"Points":8256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50682","ServerKey":"pl181","X":394,"Y":693},{"Bonus":0,"Continent":"K63","ID":50684,"Name":"Barba","PlayerID":698908184,"Points":8490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50684","ServerKey":"pl181","X":323,"Y":635},{"Bonus":0,"Continent":"K56","ID":50685,"Name":"[177]","PlayerID":8000875,"Points":5153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50685","ServerKey":"pl181","X":699,"Y":594},{"Bonus":0,"Continent":"K42","ID":50686,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50686","ServerKey":"pl181","X":285,"Y":452},{"Bonus":0,"Continent":"K75","ID":50687,"Name":"Wioska Misiaczka69","PlayerID":849085293,"Points":3621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50687","ServerKey":"pl181","X":551,"Y":709},{"Bonus":0,"Continent":"K47","ID":50688,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":4719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50688","ServerKey":"pl181","X":708,"Y":420},{"Bonus":0,"Continent":"K25","ID":50689,"Name":"Wancki","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50689","ServerKey":"pl181","X":515,"Y":286},{"Bonus":0,"Continent":"K52","ID":50690,"Name":"Cisza","PlayerID":698769107,"Points":2666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50690","ServerKey":"pl181","X":288,"Y":555},{"Bonus":0,"Continent":"K25","ID":50691,"Name":"D026","PlayerID":699299123,"Points":7649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50691","ServerKey":"pl181","X":565,"Y":286},{"Bonus":0,"Continent":"K46","ID":50692,"Name":"=HB=","PlayerID":849101881,"Points":4441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50692","ServerKey":"pl181","X":699,"Y":418},{"Bonus":0,"Continent":"K74","ID":50694,"Name":"Bagno 21","PlayerID":848883684,"Points":8107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50694","ServerKey":"pl181","X":483,"Y":718},{"Bonus":0,"Continent":"K66","ID":50695,"Name":"###137###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50695","ServerKey":"pl181","X":607,"Y":689},{"Bonus":0,"Continent":"K35","ID":50696,"Name":"029","PlayerID":1424656,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50696","ServerKey":"pl181","X":576,"Y":386},{"Bonus":0,"Continent":"K36","ID":50697,"Name":"Wioska x","PlayerID":699875213,"Points":2284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50697","ServerKey":"pl181","X":658,"Y":353},{"Bonus":5,"Continent":"K36","ID":50698,"Name":"Podworko","PlayerID":848924219,"Points":2899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50698","ServerKey":"pl181","X":659,"Y":355},{"Bonus":0,"Continent":"K57","ID":50699,"Name":"Wioska","PlayerID":699034094,"Points":1334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50699","ServerKey":"pl181","X":712,"Y":527},{"Bonus":0,"Continent":"K74","ID":50700,"Name":"036|| Coma Berenices","PlayerID":849035525,"Points":3565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50700","ServerKey":"pl181","X":457,"Y":714},{"Bonus":0,"Continent":"K33","ID":50701,"Name":"Zaplecze Barba 021","PlayerID":699796330,"Points":7111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50701","ServerKey":"pl181","X":370,"Y":324},{"Bonus":0,"Continent":"K75","ID":50702,"Name":"0010","PlayerID":698723158,"Points":6415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50702","ServerKey":"pl181","X":576,"Y":708},{"Bonus":0,"Continent":"K36","ID":50703,"Name":"Wioska 7","PlayerID":849101945,"Points":4391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50703","ServerKey":"pl181","X":652,"Y":348},{"Bonus":0,"Continent":"K42","ID":50705,"Name":"014","PlayerID":6131106,"Points":4513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50705","ServerKey":"pl181","X":294,"Y":427},{"Bonus":0,"Continent":"K36","ID":50706,"Name":"181","PlayerID":609384,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50706","ServerKey":"pl181","X":673,"Y":357},{"Bonus":0,"Continent":"K63","ID":50707,"Name":"AAA","PlayerID":6180190,"Points":9204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50707","ServerKey":"pl181","X":312,"Y":613},{"Bonus":0,"Continent":"K66","ID":50708,"Name":"Parking3","PlayerID":6528152,"Points":8967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50708","ServerKey":"pl181","X":631,"Y":681},{"Bonus":0,"Continent":"K24","ID":50709,"Name":"#0252 Taki Pan dar","PlayerID":1238300,"Points":5610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50709","ServerKey":"pl181","X":468,"Y":288},{"Bonus":0,"Continent":"K33","ID":50710,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50710","ServerKey":"pl181","X":367,"Y":320},{"Bonus":0,"Continent":"K52","ID":50711,"Name":"Wioska barbarzyƄska","PlayerID":498483,"Points":3524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50711","ServerKey":"pl181","X":291,"Y":574},{"Bonus":0,"Continent":"K56","ID":50712,"Name":"Didek","PlayerID":849070946,"Points":9991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50712","ServerKey":"pl181","X":676,"Y":566},{"Bonus":0,"Continent":"K25","ID":50713,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":2251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50713","ServerKey":"pl181","X":524,"Y":284},{"Bonus":0,"Continent":"K33","ID":50714,"Name":"004","PlayerID":7386358,"Points":6280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50714","ServerKey":"pl181","X":324,"Y":377},{"Bonus":0,"Continent":"K34","ID":50715,"Name":"Zeta Reticuli O","PlayerID":699323302,"Points":9547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50715","ServerKey":"pl181","X":416,"Y":326},{"Bonus":0,"Continent":"K34","ID":50716,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50716","ServerKey":"pl181","X":409,"Y":307},{"Bonus":0,"Continent":"K42","ID":50717,"Name":"001","PlayerID":698652171,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50717","ServerKey":"pl181","X":282,"Y":463},{"Bonus":0,"Continent":"K55","ID":50718,"Name":"097","PlayerID":699351301,"Points":9918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50718","ServerKey":"pl181","X":543,"Y":503},{"Bonus":0,"Continent":"K25","ID":50719,"Name":"082 Wioska barbarzyƄska","PlayerID":699854484,"Points":8896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50719","ServerKey":"pl181","X":537,"Y":287},{"Bonus":0,"Continent":"K42","ID":50720,"Name":"11 HerrMrozio..","PlayerID":849018442,"Points":10287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50720","ServerKey":"pl181","X":294,"Y":443},{"Bonus":0,"Continent":"K47","ID":50721,"Name":"Wioska3 barbarzyƄska","PlayerID":8459255,"Points":5342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50721","ServerKey":"pl181","X":703,"Y":408},{"Bonus":5,"Continent":"K25","ID":50722,"Name":"Wioska barbarzyƄska","PlayerID":849054951,"Points":7168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50722","ServerKey":"pl181","X":565,"Y":288},{"Bonus":0,"Continent":"K66","ID":50723,"Name":"013","PlayerID":2323859,"Points":4005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50723","ServerKey":"pl181","X":664,"Y":642},{"Bonus":0,"Continent":"K52","ID":50725,"Name":"Wioska barbarzyƄska II","PlayerID":849047233,"Points":5927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50725","ServerKey":"pl181","X":277,"Y":528},{"Bonus":0,"Continent":"K24","ID":50726,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50726","ServerKey":"pl181","X":423,"Y":299},{"Bonus":0,"Continent":"K36","ID":50727,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50727","ServerKey":"pl181","X":618,"Y":316},{"Bonus":0,"Continent":"K33","ID":50728,"Name":"MaraczxD","PlayerID":698906190,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50728","ServerKey":"pl181","X":354,"Y":333},{"Bonus":0,"Continent":"K66","ID":50729,"Name":"049","PlayerID":699695167,"Points":3666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50729","ServerKey":"pl181","X":633,"Y":672},{"Bonus":0,"Continent":"K33","ID":50730,"Name":"K33","PlayerID":699794765,"Points":1599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50730","ServerKey":"pl181","X":313,"Y":387},{"Bonus":0,"Continent":"K33","ID":50731,"Name":"Szlachcic","PlayerID":698388578,"Points":5233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50731","ServerKey":"pl181","X":362,"Y":334},{"Bonus":1,"Continent":"K57","ID":50732,"Name":"Osada koczownikĂłw","PlayerID":848946700,"Points":10110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50732","ServerKey":"pl181","X":722,"Y":529},{"Bonus":0,"Continent":"K74","ID":50734,"Name":"Kurnik","PlayerID":699603116,"Points":5677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50734","ServerKey":"pl181","X":442,"Y":713},{"Bonus":0,"Continent":"K36","ID":50735,"Name":"A-3","PlayerID":849095509,"Points":3694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50735","ServerKey":"pl181","X":672,"Y":357},{"Bonus":0,"Continent":"K24","ID":50736,"Name":"087.Stradi","PlayerID":698365960,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50736","ServerKey":"pl181","X":435,"Y":296},{"Bonus":0,"Continent":"K25","ID":50737,"Name":"Wioska - 001 -","PlayerID":848982634,"Points":3688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50737","ServerKey":"pl181","X":535,"Y":279},{"Bonus":0,"Continent":"K47","ID":50738,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":4236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50738","ServerKey":"pl181","X":721,"Y":460},{"Bonus":0,"Continent":"K75","ID":50739,"Name":"1x3 Wioska barbarzyƄska","PlayerID":849055425,"Points":6885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50739","ServerKey":"pl181","X":570,"Y":713},{"Bonus":0,"Continent":"K63","ID":50740,"Name":"0136","PlayerID":7085510,"Points":5608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50740","ServerKey":"pl181","X":366,"Y":676},{"Bonus":0,"Continent":"K42","ID":50741,"Name":"KUKA","PlayerID":6127190,"Points":4851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50741","ServerKey":"pl181","X":285,"Y":436},{"Bonus":0,"Continent":"K25","ID":50742,"Name":"092 Wioska barbarzyƄska","PlayerID":699854484,"Points":6790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50742","ServerKey":"pl181","X":542,"Y":290},{"Bonus":0,"Continent":"K52","ID":50743,"Name":"[0259]","PlayerID":8630972,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50743","ServerKey":"pl181","X":284,"Y":512},{"Bonus":0,"Continent":"K36","ID":50744,"Name":"Harsz","PlayerID":699488108,"Points":10624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50744","ServerKey":"pl181","X":697,"Y":398},{"Bonus":0,"Continent":"K42","ID":50745,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50745","ServerKey":"pl181","X":276,"Y":490},{"Bonus":0,"Continent":"K25","ID":50746,"Name":"038 Wioska barbarzyƄska","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50746","ServerKey":"pl181","X":542,"Y":285},{"Bonus":0,"Continent":"K57","ID":50747,"Name":"=029= Wioska barbarzyƄska","PlayerID":3781794,"Points":9626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50747","ServerKey":"pl181","X":707,"Y":565},{"Bonus":0,"Continent":"K66","ID":50748,"Name":"040 Wioska barbarzyƄska","PlayerID":699346280,"Points":8319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50748","ServerKey":"pl181","X":604,"Y":690},{"Bonus":0,"Continent":"K57","ID":50749,"Name":"064","PlayerID":7085502,"Points":7256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50749","ServerKey":"pl181","X":715,"Y":511},{"Bonus":4,"Continent":"K34","ID":50750,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50750","ServerKey":"pl181","X":409,"Y":303},{"Bonus":0,"Continent":"K33","ID":50751,"Name":"III. Sucha Psina","PlayerID":849101893,"Points":4795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50751","ServerKey":"pl181","X":366,"Y":325},{"Bonus":0,"Continent":"K74","ID":50752,"Name":"Zakazany las","PlayerID":848999671,"Points":1452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50752","ServerKey":"pl181","X":485,"Y":723},{"Bonus":0,"Continent":"K24","ID":50753,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50753","ServerKey":"pl181","X":431,"Y":286},{"Bonus":0,"Continent":"K42","ID":50754,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50754","ServerKey":"pl181","X":291,"Y":435},{"Bonus":0,"Continent":"K47","ID":50755,"Name":"A#042","PlayerID":2065730,"Points":7520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50755","ServerKey":"pl181","X":721,"Y":494},{"Bonus":0,"Continent":"K63","ID":50756,"Name":"Barba","PlayerID":698908184,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50756","ServerKey":"pl181","X":322,"Y":637},{"Bonus":0,"Continent":"K66","ID":50757,"Name":"113","PlayerID":3589487,"Points":5617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50757","ServerKey":"pl181","X":691,"Y":615},{"Bonus":5,"Continent":"K24","ID":50758,"Name":"#0304 kawskole","PlayerID":1238300,"Points":4117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50758","ServerKey":"pl181","X":443,"Y":283},{"Bonus":0,"Continent":"K52","ID":50759,"Name":"New WorldA","PlayerID":849084005,"Points":2678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50759","ServerKey":"pl181","X":284,"Y":538},{"Bonus":0,"Continent":"K33","ID":50760,"Name":"ChciaƂabym","PlayerID":698906190,"Points":2399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50760","ServerKey":"pl181","X":351,"Y":334},{"Bonus":0,"Continent":"K46","ID":50761,"Name":"003","PlayerID":7409475,"Points":4666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50761","ServerKey":"pl181","X":695,"Y":403},{"Bonus":0,"Continent":"K42","ID":50762,"Name":"Avanti!","PlayerID":698625834,"Points":5577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50762","ServerKey":"pl181","X":285,"Y":486},{"Bonus":0,"Continent":"K24","ID":50763,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50763","ServerKey":"pl181","X":427,"Y":292},{"Bonus":0,"Continent":"K25","ID":50764,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50764","ServerKey":"pl181","X":587,"Y":295},{"Bonus":0,"Continent":"K24","ID":50765,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50765","ServerKey":"pl181","X":487,"Y":284},{"Bonus":0,"Continent":"K42","ID":50766,"Name":": (","PlayerID":699846892,"Points":7128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50766","ServerKey":"pl181","X":280,"Y":487},{"Bonus":0,"Continent":"K33","ID":50767,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":7707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50767","ServerKey":"pl181","X":365,"Y":326},{"Bonus":0,"Continent":"K74","ID":50768,"Name":"Wioska barbarzyƄska","PlayerID":699429335,"Points":7905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50768","ServerKey":"pl181","X":496,"Y":717},{"Bonus":0,"Continent":"K57","ID":50769,"Name":"018","PlayerID":849091105,"Points":10595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50769","ServerKey":"pl181","X":716,"Y":500},{"Bonus":0,"Continent":"K52","ID":50770,"Name":"...::181 07::...","PlayerID":699641777,"Points":4116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50770","ServerKey":"pl181","X":277,"Y":515},{"Bonus":0,"Continent":"K63","ID":50771,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":6395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50771","ServerKey":"pl181","X":315,"Y":626},{"Bonus":0,"Continent":"K63","ID":50772,"Name":"0130","PlayerID":7085510,"Points":4867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50772","ServerKey":"pl181","X":387,"Y":688},{"Bonus":0,"Continent":"K57","ID":50773,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50773","ServerKey":"pl181","X":721,"Y":528},{"Bonus":0,"Continent":"K33","ID":50774,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50774","ServerKey":"pl181","X":397,"Y":302},{"Bonus":0,"Continent":"K57","ID":50775,"Name":"Wioska1.","PlayerID":699266530,"Points":9302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50775","ServerKey":"pl181","X":706,"Y":577},{"Bonus":0,"Continent":"K25","ID":50776,"Name":"Wioska 5","PlayerID":7427966,"Points":3102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50776","ServerKey":"pl181","X":542,"Y":284},{"Bonus":0,"Continent":"K25","ID":50777,"Name":"SPEC HOME","PlayerID":699569800,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50777","ServerKey":"pl181","X":543,"Y":298},{"Bonus":0,"Continent":"K75","ID":50778,"Name":"#297 C","PlayerID":9037756,"Points":5275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50778","ServerKey":"pl181","X":519,"Y":724},{"Bonus":0,"Continent":"K75","ID":50779,"Name":"#K75 0004","PlayerID":699728159,"Points":7031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50779","ServerKey":"pl181","X":520,"Y":714},{"Bonus":5,"Continent":"K63","ID":50780,"Name":"Taran","PlayerID":6180190,"Points":9956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50780","ServerKey":"pl181","X":315,"Y":619},{"Bonus":0,"Continent":"K52","ID":50781,"Name":"Początek","PlayerID":7842579,"Points":5856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50781","ServerKey":"pl181","X":299,"Y":580},{"Bonus":0,"Continent":"K63","ID":50782,"Name":"Wioska VestoreI","PlayerID":9292037,"Points":1581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50782","ServerKey":"pl181","X":365,"Y":677},{"Bonus":0,"Continent":"K36","ID":50783,"Name":"XDX","PlayerID":699098531,"Points":8687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50783","ServerKey":"pl181","X":609,"Y":313},{"Bonus":0,"Continent":"K24","ID":50784,"Name":"#0242 colt9","PlayerID":1238300,"Points":5570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50784","ServerKey":"pl181","X":436,"Y":286},{"Bonus":0,"Continent":"K36","ID":50785,"Name":"ƚw181*001 robię hetmana .","PlayerID":959179,"Points":7348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50785","ServerKey":"pl181","X":660,"Y":344},{"Bonus":0,"Continent":"K75","ID":50786,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50786","ServerKey":"pl181","X":540,"Y":719},{"Bonus":0,"Continent":"K24","ID":50787,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50787","ServerKey":"pl181","X":493,"Y":276},{"Bonus":0,"Continent":"K33","ID":50788,"Name":"Motorola 01","PlayerID":698806018,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50788","ServerKey":"pl181","X":365,"Y":321},{"Bonus":0,"Continent":"K36","ID":50789,"Name":"#2 Wioska barbarzyƄska","PlayerID":849099517,"Points":8686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50789","ServerKey":"pl181","X":633,"Y":320},{"Bonus":0,"Continent":"K42","ID":50790,"Name":"Mamtamtam","PlayerID":698652171,"Points":7609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50790","ServerKey":"pl181","X":285,"Y":458},{"Bonus":0,"Continent":"K66","ID":50791,"Name":"*027*","PlayerID":1205898,"Points":3264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50791","ServerKey":"pl181","X":689,"Y":614},{"Bonus":0,"Continent":"K25","ID":50792,"Name":"Wioska - 003 -","PlayerID":848982634,"Points":1991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50792","ServerKey":"pl181","X":539,"Y":280},{"Bonus":0,"Continent":"K57","ID":50793,"Name":"=083= Jersey City","PlayerID":3781794,"Points":7416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50793","ServerKey":"pl181","X":704,"Y":570},{"Bonus":0,"Continent":"K34","ID":50794,"Name":"003","PlayerID":9283775,"Points":4370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50794","ServerKey":"pl181","X":405,"Y":304},{"Bonus":0,"Continent":"K42","ID":50795,"Name":"05 barbarzyƄska.","PlayerID":849018442,"Points":8807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50795","ServerKey":"pl181","X":285,"Y":443},{"Bonus":0,"Continent":"K63","ID":50796,"Name":"A002","PlayerID":849105102,"Points":8261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50796","ServerKey":"pl181","X":334,"Y":649},{"Bonus":0,"Continent":"K63","ID":50797,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50797","ServerKey":"pl181","X":330,"Y":644},{"Bonus":0,"Continent":"K42","ID":50798,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50798","ServerKey":"pl181","X":286,"Y":437},{"Bonus":0,"Continent":"K47","ID":50799,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":4454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50799","ServerKey":"pl181","X":711,"Y":426},{"Bonus":0,"Continent":"K34","ID":50800,"Name":"Wioska barbarzyƄska","PlayerID":8419570,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50800","ServerKey":"pl181","X":400,"Y":360},{"Bonus":0,"Continent":"K47","ID":50801,"Name":"ZPP Vill","PlayerID":8096537,"Points":5513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50801","ServerKey":"pl181","X":724,"Y":487},{"Bonus":0,"Continent":"K42","ID":50802,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50802","ServerKey":"pl181","X":290,"Y":438},{"Bonus":7,"Continent":"K46","ID":50803,"Name":"Osada koczownikĂłw","PlayerID":699488108,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50803","ServerKey":"pl181","X":694,"Y":403},{"Bonus":0,"Continent":"K56","ID":50805,"Name":"Wioska 010","PlayerID":7999103,"Points":3763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50805","ServerKey":"pl181","X":693,"Y":595},{"Bonus":9,"Continent":"K75","ID":50806,"Name":"3.Cambridge","PlayerID":698215322,"Points":8067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50806","ServerKey":"pl181","X":546,"Y":717},{"Bonus":0,"Continent":"K57","ID":50807,"Name":"32. Gemmera","PlayerID":8976313,"Points":4622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50807","ServerKey":"pl181","X":721,"Y":540},{"Bonus":0,"Continent":"K74","ID":50808,"Name":"Taka.","PlayerID":848999671,"Points":7356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50808","ServerKey":"pl181","X":483,"Y":724},{"Bonus":1,"Continent":"K47","ID":50809,"Name":"021","PlayerID":849091105,"Points":10147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50809","ServerKey":"pl181","X":716,"Y":486},{"Bonus":0,"Continent":"K66","ID":50810,"Name":"*019*","PlayerID":1205898,"Points":3981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50810","ServerKey":"pl181","X":686,"Y":618},{"Bonus":0,"Continent":"K57","ID":50811,"Name":"Wioska18","PlayerID":699266530,"Points":3148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50811","ServerKey":"pl181","X":704,"Y":575},{"Bonus":0,"Continent":"K36","ID":50812,"Name":"004","PlayerID":699117992,"Points":7167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50812","ServerKey":"pl181","X":610,"Y":307},{"Bonus":0,"Continent":"K36","ID":50813,"Name":"t016","PlayerID":2262902,"Points":7732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50813","ServerKey":"pl181","X":666,"Y":351},{"Bonus":0,"Continent":"K57","ID":50814,"Name":"018. Distaghil Sar","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50814","ServerKey":"pl181","X":711,"Y":550},{"Bonus":0,"Continent":"K75","ID":50815,"Name":"011","PlayerID":698996782,"Points":3841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50815","ServerKey":"pl181","X":524,"Y":716},{"Bonus":0,"Continent":"K57","ID":50816,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50816","ServerKey":"pl181","X":722,"Y":523},{"Bonus":0,"Continent":"K44","ID":50817,"Name":"Wioska barbarzyƄska","PlayerID":699523631,"Points":6241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50817","ServerKey":"pl181","X":400,"Y":467},{"Bonus":0,"Continent":"K33","ID":50818,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":4320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50818","ServerKey":"pl181","X":390,"Y":311},{"Bonus":0,"Continent":"K42","ID":50819,"Name":"[0233]","PlayerID":8630972,"Points":4187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50819","ServerKey":"pl181","X":286,"Y":495},{"Bonus":0,"Continent":"K36","ID":50820,"Name":"EKOLERNA","PlayerID":3957237,"Points":10583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50820","ServerKey":"pl181","X":673,"Y":358},{"Bonus":0,"Continent":"K33","ID":50821,"Name":"...","PlayerID":699657450,"Points":9893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50821","ServerKey":"pl181","X":336,"Y":353},{"Bonus":0,"Continent":"K25","ID":50822,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50822","ServerKey":"pl181","X":574,"Y":297},{"Bonus":0,"Continent":"K42","ID":50823,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50823","ServerKey":"pl181","X":285,"Y":441},{"Bonus":0,"Continent":"K36","ID":50824,"Name":"MJ43","PlayerID":8669398,"Points":6215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50824","ServerKey":"pl181","X":684,"Y":378},{"Bonus":5,"Continent":"K66","ID":50825,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50825","ServerKey":"pl181","X":654,"Y":656},{"Bonus":0,"Continent":"K47","ID":50826,"Name":"Rohan","PlayerID":849101881,"Points":8191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50826","ServerKey":"pl181","X":702,"Y":420},{"Bonus":0,"Continent":"K34","ID":50827,"Name":"ElMajkelos IX","PlayerID":849085160,"Points":3536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50827","ServerKey":"pl181","X":412,"Y":303},{"Bonus":0,"Continent":"K63","ID":50828,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50828","ServerKey":"pl181","X":361,"Y":668},{"Bonus":0,"Continent":"K42","ID":50829,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50829","ServerKey":"pl181","X":277,"Y":483},{"Bonus":0,"Continent":"K63","ID":50831,"Name":"061 Wioska barbarzyƄska","PlayerID":6354098,"Points":6334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50831","ServerKey":"pl181","X":344,"Y":660},{"Bonus":0,"Continent":"K52","ID":50832,"Name":"003 AAAAA","PlayerID":197581,"Points":6266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50832","ServerKey":"pl181","X":281,"Y":549},{"Bonus":0,"Continent":"K42","ID":50833,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50833","ServerKey":"pl181","X":285,"Y":440},{"Bonus":0,"Continent":"K52","ID":50834,"Name":"New WorldA","PlayerID":849084005,"Points":6139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50834","ServerKey":"pl181","X":280,"Y":507},{"Bonus":0,"Continent":"K63","ID":50835,"Name":"078","PlayerID":849099876,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50835","ServerKey":"pl181","X":398,"Y":692},{"Bonus":0,"Continent":"K64","ID":50836,"Name":"107","PlayerID":849099876,"Points":8940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50836","ServerKey":"pl181","X":410,"Y":695},{"Bonus":0,"Continent":"K66","ID":50837,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50837","ServerKey":"pl181","X":654,"Y":658},{"Bonus":0,"Continent":"K63","ID":50838,"Name":"051 Wioska barbarzyƄska","PlayerID":6354098,"Points":7125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50838","ServerKey":"pl181","X":346,"Y":662},{"Bonus":0,"Continent":"K33","ID":50839,"Name":"Wioska barbarzyƄska 002","PlayerID":849068662,"Points":10590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50839","ServerKey":"pl181","X":379,"Y":318},{"Bonus":0,"Continent":"K74","ID":50840,"Name":"New World","PlayerID":698152377,"Points":8784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50840","ServerKey":"pl181","X":439,"Y":712},{"Bonus":0,"Continent":"K25","ID":50841,"Name":".achim.","PlayerID":6936607,"Points":7217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50841","ServerKey":"pl181","X":570,"Y":286},{"Bonus":0,"Continent":"K36","ID":50843,"Name":"XDX","PlayerID":699098531,"Points":10692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50843","ServerKey":"pl181","X":608,"Y":308},{"Bonus":0,"Continent":"K52","ID":50844,"Name":"[0234]","PlayerID":8630972,"Points":6126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50844","ServerKey":"pl181","X":284,"Y":502},{"Bonus":0,"Continent":"K33","ID":50845,"Name":"SamobĂłj","PlayerID":849076515,"Points":2550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50845","ServerKey":"pl181","X":308,"Y":396},{"Bonus":0,"Continent":"K74","ID":50847,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50847","ServerKey":"pl181","X":418,"Y":705},{"Bonus":0,"Continent":"K24","ID":50848,"Name":"#0288 kaban1988","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50848","ServerKey":"pl181","X":460,"Y":288},{"Bonus":0,"Continent":"K75","ID":50849,"Name":":... 3 ...: -","PlayerID":849051976,"Points":5889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50849","ServerKey":"pl181","X":511,"Y":720},{"Bonus":0,"Continent":"K33","ID":50850,"Name":"Granit 19","PlayerID":698906190,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50850","ServerKey":"pl181","X":360,"Y":328},{"Bonus":3,"Continent":"K66","ID":50851,"Name":"Klatka4","PlayerID":6528152,"Points":4639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50851","ServerKey":"pl181","X":622,"Y":679},{"Bonus":0,"Continent":"K25","ID":50852,"Name":"North K25","PlayerID":699146580,"Points":3675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50852","ServerKey":"pl181","X":525,"Y":281},{"Bonus":0,"Continent":"K57","ID":50853,"Name":"Wioska [2]","PlayerID":699858313,"Points":3312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50853","ServerKey":"pl181","X":723,"Y":510},{"Bonus":0,"Continent":"K66","ID":50854,"Name":"012 Krayana","PlayerID":849102108,"Points":4175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50854","ServerKey":"pl181","X":673,"Y":642},{"Bonus":0,"Continent":"K33","ID":50855,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":7416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50855","ServerKey":"pl181","X":332,"Y":358},{"Bonus":0,"Continent":"K24","ID":50856,"Name":"110.Stradi","PlayerID":698365960,"Points":8895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50856","ServerKey":"pl181","X":438,"Y":295},{"Bonus":0,"Continent":"K33","ID":50857,"Name":"PIROTECHNIK 007","PlayerID":849101083,"Points":3801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50857","ServerKey":"pl181","X":348,"Y":341},{"Bonus":0,"Continent":"K24","ID":50858,"Name":"056KP","PlayerID":849063849,"Points":10557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50858","ServerKey":"pl181","X":489,"Y":277},{"Bonus":0,"Continent":"K36","ID":50859,"Name":"W46","PlayerID":699524362,"Points":2637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50859","ServerKey":"pl181","X":686,"Y":390},{"Bonus":0,"Continent":"K66","ID":50860,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50860","ServerKey":"pl181","X":659,"Y":631},{"Bonus":0,"Continent":"K33","ID":50861,"Name":"0038","PlayerID":2321390,"Points":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50861","ServerKey":"pl181","X":330,"Y":366},{"Bonus":0,"Continent":"K52","ID":50863,"Name":"1. Vhagar","PlayerID":849089499,"Points":8101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50863","ServerKey":"pl181","X":298,"Y":583},{"Bonus":0,"Continent":"K57","ID":50864,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":9885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50864","ServerKey":"pl181","X":712,"Y":569},{"Bonus":5,"Continent":"K74","ID":50865,"Name":"003","PlayerID":8966820,"Points":9603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50865","ServerKey":"pl181","X":468,"Y":717},{"Bonus":0,"Continent":"K36","ID":50866,"Name":"003","PlayerID":849020094,"Points":8685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50866","ServerKey":"pl181","X":657,"Y":346},{"Bonus":0,"Continent":"K24","ID":50867,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50867","ServerKey":"pl181","X":435,"Y":292},{"Bonus":0,"Continent":"K24","ID":50868,"Name":"#0144 deleted","PlayerID":1238300,"Points":9789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50868","ServerKey":"pl181","X":474,"Y":285},{"Bonus":0,"Continent":"K43","ID":50869,"Name":"Wioska barbarzyƄska","PlayerID":699856962,"Points":7818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50869","ServerKey":"pl181","X":301,"Y":420},{"Bonus":0,"Continent":"K36","ID":50870,"Name":"XDX","PlayerID":699098531,"Points":6479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50870","ServerKey":"pl181","X":613,"Y":308},{"Bonus":0,"Continent":"K33","ID":50871,"Name":"2 Nowy vequs","PlayerID":7462660,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50871","ServerKey":"pl181","X":341,"Y":351},{"Bonus":0,"Continent":"K74","ID":50872,"Name":"nysa","PlayerID":848999671,"Points":1953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50872","ServerKey":"pl181","X":480,"Y":724},{"Bonus":0,"Continent":"K53","ID":50873,"Name":"008","PlayerID":698663855,"Points":4794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50873","ServerKey":"pl181","X":301,"Y":592},{"Bonus":0,"Continent":"K42","ID":50874,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50874","ServerKey":"pl181","X":288,"Y":448},{"Bonus":0,"Continent":"K24","ID":50875,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50875","ServerKey":"pl181","X":495,"Y":284},{"Bonus":9,"Continent":"K24","ID":50876,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50876","ServerKey":"pl181","X":412,"Y":299},{"Bonus":0,"Continent":"K25","ID":50877,"Name":"RPM CUSTOM","PlayerID":849102094,"Points":7663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50877","ServerKey":"pl181","X":550,"Y":286},{"Bonus":0,"Continent":"K24","ID":50878,"Name":"#0150 barbarzyƄska","PlayerID":1238300,"Points":5829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50878","ServerKey":"pl181","X":481,"Y":278},{"Bonus":0,"Continent":"K75","ID":50879,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":5703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50879","ServerKey":"pl181","X":543,"Y":718},{"Bonus":0,"Continent":"K57","ID":50880,"Name":"CastAway !005","PlayerID":9314079,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50880","ServerKey":"pl181","X":705,"Y":585},{"Bonus":0,"Continent":"K63","ID":50881,"Name":"0150","PlayerID":7085510,"Points":4356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50881","ServerKey":"pl181","X":368,"Y":681},{"Bonus":0,"Continent":"K63","ID":50883,"Name":"160","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50883","ServerKey":"pl181","X":387,"Y":689},{"Bonus":0,"Continent":"K66","ID":50884,"Name":"Wioska barbarzyƄska","PlayerID":6921135,"Points":2785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50884","ServerKey":"pl181","X":699,"Y":605},{"Bonus":0,"Continent":"K63","ID":50885,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50885","ServerKey":"pl181","X":328,"Y":637},{"Bonus":0,"Continent":"K66","ID":50886,"Name":"DĆŒejdĆŒej 7","PlayerID":849098326,"Points":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50886","ServerKey":"pl181","X":675,"Y":638},{"Bonus":0,"Continent":"K36","ID":50887,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":8915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50887","ServerKey":"pl181","X":650,"Y":336},{"Bonus":0,"Continent":"K64","ID":50888,"Name":"108","PlayerID":849099876,"Points":9447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50888","ServerKey":"pl181","X":409,"Y":695},{"Bonus":0,"Continent":"K24","ID":50889,"Name":"[0153]","PlayerID":8630972,"Points":8962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50889","ServerKey":"pl181","X":453,"Y":287},{"Bonus":0,"Continent":"K63","ID":50890,"Name":"Psycha Siada","PlayerID":8099868,"Points":9141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50890","ServerKey":"pl181","X":331,"Y":646},{"Bonus":0,"Continent":"K57","ID":50891,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50891","ServerKey":"pl181","X":719,"Y":509},{"Bonus":0,"Continent":"K66","ID":50892,"Name":"komandos","PlayerID":7976264,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50892","ServerKey":"pl181","X":636,"Y":667},{"Bonus":0,"Continent":"K36","ID":50893,"Name":"054","PlayerID":698635863,"Points":7876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50893","ServerKey":"pl181","X":679,"Y":381},{"Bonus":0,"Continent":"K25","ID":50894,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":5134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50894","ServerKey":"pl181","X":525,"Y":285},{"Bonus":0,"Continent":"K35","ID":50895,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50895","ServerKey":"pl181","X":595,"Y":300},{"Bonus":0,"Continent":"K36","ID":50896,"Name":"XDX","PlayerID":699098531,"Points":4757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50896","ServerKey":"pl181","X":605,"Y":302},{"Bonus":0,"Continent":"K47","ID":50897,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":10636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50897","ServerKey":"pl181","X":705,"Y":418},{"Bonus":0,"Continent":"K74","ID":50898,"Name":"azi6","PlayerID":849094759,"Points":2413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50898","ServerKey":"pl181","X":461,"Y":722},{"Bonus":0,"Continent":"K74","ID":50899,"Name":"New World","PlayerID":698152377,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50899","ServerKey":"pl181","X":414,"Y":707},{"Bonus":0,"Continent":"K24","ID":50900,"Name":"Winterfell.016","PlayerID":848918380,"Points":8215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50900","ServerKey":"pl181","X":468,"Y":282},{"Bonus":0,"Continent":"K47","ID":50901,"Name":"02 ƚruba","PlayerID":849101845,"Points":9710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50901","ServerKey":"pl181","X":720,"Y":455},{"Bonus":0,"Continent":"K24","ID":50902,"Name":"Winterfell.017","PlayerID":848918380,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50902","ServerKey":"pl181","X":466,"Y":287},{"Bonus":0,"Continent":"K36","ID":50903,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50903","ServerKey":"pl181","X":639,"Y":328},{"Bonus":7,"Continent":"K66","ID":50904,"Name":"Wioska Zorro 029","PlayerID":849080702,"Points":6560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50904","ServerKey":"pl181","X":686,"Y":615},{"Bonus":0,"Continent":"K43","ID":50905,"Name":"Wioska barbarzyƄska","PlayerID":3298564,"Points":1914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50905","ServerKey":"pl181","X":305,"Y":402},{"Bonus":0,"Continent":"K36","ID":50906,"Name":"Wioska 024","PlayerID":7226782,"Points":4530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50906","ServerKey":"pl181","X":666,"Y":360},{"Bonus":0,"Continent":"K74","ID":50907,"Name":"Taka..","PlayerID":848999671,"Points":9573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50907","ServerKey":"pl181","X":482,"Y":723},{"Bonus":0,"Continent":"K52","ID":50908,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50908","ServerKey":"pl181","X":295,"Y":514},{"Bonus":0,"Continent":"K33","ID":50909,"Name":"Przezorny zawsze ubezpieczony","PlayerID":698231772,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50909","ServerKey":"pl181","X":390,"Y":310},{"Bonus":0,"Continent":"K74","ID":50910,"Name":"026.","PlayerID":849034882,"Points":10508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50910","ServerKey":"pl181","X":473,"Y":721},{"Bonus":0,"Continent":"K36","ID":50911,"Name":"Wioska002","PlayerID":698768565,"Points":10223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50911","ServerKey":"pl181","X":687,"Y":386},{"Bonus":0,"Continent":"K63","ID":50912,"Name":"155","PlayerID":849099876,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50912","ServerKey":"pl181","X":396,"Y":689},{"Bonus":0,"Continent":"K42","ID":50913,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50913","ServerKey":"pl181","X":289,"Y":441},{"Bonus":0,"Continent":"K24","ID":50914,"Name":"[0154]","PlayerID":8630972,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50914","ServerKey":"pl181","X":458,"Y":286},{"Bonus":0,"Continent":"K33","ID":50915,"Name":"K33","PlayerID":699794765,"Points":2363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50915","ServerKey":"pl181","X":319,"Y":385},{"Bonus":0,"Continent":"K75","ID":50916,"Name":"0011","PlayerID":698723158,"Points":6182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50916","ServerKey":"pl181","X":577,"Y":707},{"Bonus":0,"Continent":"K54","ID":50917,"Name":"BETI 013","PlayerID":8539216,"Points":1134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50917","ServerKey":"pl181","X":455,"Y":566},{"Bonus":0,"Continent":"K66","ID":50918,"Name":"###138###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50918","ServerKey":"pl181","X":612,"Y":689},{"Bonus":0,"Continent":"K63","ID":50919,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":5200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50919","ServerKey":"pl181","X":311,"Y":618},{"Bonus":0,"Continent":"K63","ID":50920,"Name":"Wioska 0010","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50920","ServerKey":"pl181","X":342,"Y":653},{"Bonus":0,"Continent":"K63","ID":50921,"Name":"0127","PlayerID":7085510,"Points":5365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50921","ServerKey":"pl181","X":387,"Y":684},{"Bonus":0,"Continent":"K24","ID":50922,"Name":"????","PlayerID":698489071,"Points":8814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50922","ServerKey":"pl181","X":491,"Y":291},{"Bonus":0,"Continent":"K25","ID":50923,"Name":"083 Wioska barbarzyƄska","PlayerID":699854484,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50923","ServerKey":"pl181","X":539,"Y":288},{"Bonus":0,"Continent":"K52","ID":50925,"Name":"...::181 02::...","PlayerID":699641777,"Points":5432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50925","ServerKey":"pl181","X":276,"Y":512},{"Bonus":0,"Continent":"K63","ID":50926,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50926","ServerKey":"pl181","X":394,"Y":694},{"Bonus":0,"Continent":"K74","ID":50927,"Name":"Kurnik","PlayerID":699603116,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50927","ServerKey":"pl181","X":467,"Y":715},{"Bonus":0,"Continent":"K63","ID":50928,"Name":"Wioska Aloxx","PlayerID":698908184,"Points":6403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50928","ServerKey":"pl181","X":320,"Y":628},{"Bonus":0,"Continent":"K57","ID":50929,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50929","ServerKey":"pl181","X":711,"Y":544},{"Bonus":0,"Continent":"K45","ID":50930,"Name":"50-1 MASZOPERIA","PlayerID":699368887,"Points":7898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50930","ServerKey":"pl181","X":575,"Y":427},{"Bonus":0,"Continent":"K53","ID":50931,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":3240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50931","ServerKey":"pl181","X":303,"Y":583},{"Bonus":0,"Continent":"K25","ID":50932,"Name":"--034--","PlayerID":542253,"Points":4123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50932","ServerKey":"pl181","X":575,"Y":292},{"Bonus":0,"Continent":"K66","ID":50934,"Name":"007 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50934","ServerKey":"pl181","X":631,"Y":680},{"Bonus":0,"Continent":"K75","ID":50935,"Name":"#K75 0033","PlayerID":699728159,"Points":3734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50935","ServerKey":"pl181","X":516,"Y":720},{"Bonus":0,"Continent":"K33","ID":50936,"Name":"BOSS Z1","PlayerID":849101604,"Points":3341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50936","ServerKey":"pl181","X":350,"Y":341},{"Bonus":0,"Continent":"K47","ID":50938,"Name":"018 Olivine City","PlayerID":699441366,"Points":10866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50938","ServerKey":"pl181","X":720,"Y":486},{"Bonus":0,"Continent":"K35","ID":50939,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50939","ServerKey":"pl181","X":595,"Y":304},{"Bonus":0,"Continent":"K47","ID":50940,"Name":"DuĆŒe Oczy","PlayerID":699785935,"Points":8412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50940","ServerKey":"pl181","X":709,"Y":454},{"Bonus":0,"Continent":"K74","ID":50942,"Name":"Niezbyt WIELKI KAZIO!","PlayerID":699429335,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50942","ServerKey":"pl181","X":460,"Y":722},{"Bonus":0,"Continent":"K52","ID":50943,"Name":"Wioska barbarzyƄska","PlayerID":849047233,"Points":4822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50943","ServerKey":"pl181","X":278,"Y":522},{"Bonus":0,"Continent":"K33","ID":50944,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50944","ServerKey":"pl181","X":390,"Y":307},{"Bonus":9,"Continent":"K63","ID":50945,"Name":"C004","PlayerID":699383279,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50945","ServerKey":"pl181","X":365,"Y":667},{"Bonus":0,"Continent":"K57","ID":50946,"Name":"058","PlayerID":699413040,"Points":3320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50946","ServerKey":"pl181","X":719,"Y":517},{"Bonus":0,"Continent":"K76","ID":50947,"Name":"WY...m","PlayerID":699828685,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50947","ServerKey":"pl181","X":600,"Y":700},{"Bonus":0,"Continent":"K36","ID":50948,"Name":"t017","PlayerID":2262902,"Points":4315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50948","ServerKey":"pl181","X":668,"Y":352},{"Bonus":0,"Continent":"K66","ID":50949,"Name":"050","PlayerID":699695167,"Points":3047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50949","ServerKey":"pl181","X":625,"Y":676},{"Bonus":0,"Continent":"K33","ID":50950,"Name":"Wioska012","PlayerID":699711926,"Points":8948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50950","ServerKey":"pl181","X":345,"Y":341},{"Bonus":0,"Continent":"K25","ID":50951,"Name":"North 003","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50951","ServerKey":"pl181","X":516,"Y":284},{"Bonus":0,"Continent":"K25","ID":50952,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":9159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50952","ServerKey":"pl181","X":556,"Y":292},{"Bonus":0,"Continent":"K52","ID":50953,"Name":"Wyspa 029","PlayerID":225023,"Points":4795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50953","ServerKey":"pl181","X":294,"Y":569},{"Bonus":0,"Continent":"K65","ID":50954,"Name":"###139###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50954","ServerKey":"pl181","X":598,"Y":699},{"Bonus":0,"Continent":"K74","ID":50955,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50955","ServerKey":"pl181","X":435,"Y":712},{"Bonus":0,"Continent":"K36","ID":50956,"Name":"0149","PlayerID":698416970,"Points":3129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50956","ServerKey":"pl181","X":695,"Y":396},{"Bonus":0,"Continent":"K64","ID":50957,"Name":"053","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50957","ServerKey":"pl181","X":406,"Y":693},{"Bonus":0,"Continent":"K45","ID":50958,"Name":"Szczęƛliwego Nowego Roku ;)","PlayerID":699368887,"Points":5627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50958","ServerKey":"pl181","X":561,"Y":457},{"Bonus":0,"Continent":"K66","ID":50959,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":5508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50959","ServerKey":"pl181","X":618,"Y":683},{"Bonus":0,"Continent":"K66","ID":50961,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50961","ServerKey":"pl181","X":645,"Y":663},{"Bonus":0,"Continent":"K33","ID":50962,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50962","ServerKey":"pl181","X":394,"Y":304},{"Bonus":0,"Continent":"K74","ID":50963,"Name":"031.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50963","ServerKey":"pl181","X":468,"Y":721},{"Bonus":2,"Continent":"K66","ID":50964,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50964","ServerKey":"pl181","X":684,"Y":629},{"Bonus":0,"Continent":"K52","ID":50965,"Name":"U.003","PlayerID":849088243,"Points":8631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50965","ServerKey":"pl181","X":287,"Y":562},{"Bonus":0,"Continent":"K42","ID":50966,"Name":"Avanti!","PlayerID":698625834,"Points":6459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50966","ServerKey":"pl181","X":276,"Y":476},{"Bonus":0,"Continent":"K24","ID":50967,"Name":"091.Stradi","PlayerID":698365960,"Points":9869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50967","ServerKey":"pl181","X":434,"Y":296},{"Bonus":0,"Continent":"K75","ID":50968,"Name":"- 264 - SS","PlayerID":849018239,"Points":4700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50968","ServerKey":"pl181","X":570,"Y":708},{"Bonus":0,"Continent":"K24","ID":50969,"Name":"116.Stradi","PlayerID":698365960,"Points":10452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50969","ServerKey":"pl181","X":419,"Y":290},{"Bonus":0,"Continent":"K33","ID":50971,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50971","ServerKey":"pl181","X":325,"Y":367},{"Bonus":0,"Continent":"K74","ID":50973,"Name":"021. Night Raid","PlayerID":699684062,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50973","ServerKey":"pl181","X":492,"Y":707},{"Bonus":0,"Continent":"K25","ID":50974,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50974","ServerKey":"pl181","X":590,"Y":299},{"Bonus":0,"Continent":"K42","ID":50975,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50975","ServerKey":"pl181","X":278,"Y":495},{"Bonus":0,"Continent":"K47","ID":50976,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":3822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50976","ServerKey":"pl181","X":719,"Y":459},{"Bonus":9,"Continent":"K42","ID":50977,"Name":"EO EO","PlayerID":699697558,"Points":8787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50977","ServerKey":"pl181","X":283,"Y":491},{"Bonus":0,"Continent":"K24","ID":50978,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50978","ServerKey":"pl181","X":420,"Y":290},{"Bonus":0,"Continent":"K34","ID":50979,"Name":"Saran5","PlayerID":848937248,"Points":3839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50979","ServerKey":"pl181","X":410,"Y":300},{"Bonus":0,"Continent":"K33","ID":50980,"Name":"*195*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50980","ServerKey":"pl181","X":367,"Y":381},{"Bonus":0,"Continent":"K57","ID":50981,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50981","ServerKey":"pl181","X":723,"Y":519},{"Bonus":0,"Continent":"K47","ID":50982,"Name":"X012","PlayerID":699722599,"Points":7049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50982","ServerKey":"pl181","X":711,"Y":427},{"Bonus":0,"Continent":"K74","ID":50983,"Name":"Wioska barbarzyƄska","PlayerID":849100814,"Points":878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50983","ServerKey":"pl181","X":423,"Y":706},{"Bonus":0,"Continent":"K74","ID":50984,"Name":"053|| Sagitta","PlayerID":849035525,"Points":9792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50984","ServerKey":"pl181","X":461,"Y":714},{"Bonus":0,"Continent":"K43","ID":50985,"Name":"WB11","PlayerID":356642,"Points":4268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50985","ServerKey":"pl181","X":306,"Y":403},{"Bonus":0,"Continent":"K75","ID":50986,"Name":"Wioska tor1","PlayerID":698723158,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50986","ServerKey":"pl181","X":574,"Y":708},{"Bonus":0,"Continent":"K75","ID":50987,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50987","ServerKey":"pl181","X":539,"Y":719},{"Bonus":0,"Continent":"K53","ID":50988,"Name":"002","PlayerID":849097898,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50988","ServerKey":"pl181","X":306,"Y":565},{"Bonus":0,"Continent":"K52","ID":50989,"Name":"[0205]","PlayerID":8630972,"Points":6590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50989","ServerKey":"pl181","X":278,"Y":502},{"Bonus":0,"Continent":"K25","ID":50990,"Name":".achim.","PlayerID":6936607,"Points":7686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50990","ServerKey":"pl181","X":568,"Y":288},{"Bonus":0,"Continent":"K63","ID":50991,"Name":"BorysĂłwka","PlayerID":698167138,"Points":6683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50991","ServerKey":"pl181","X":306,"Y":602},{"Bonus":0,"Continent":"K66","ID":50992,"Name":"komandos","PlayerID":7976264,"Points":9600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50992","ServerKey":"pl181","X":640,"Y":668},{"Bonus":0,"Continent":"K42","ID":50993,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50993","ServerKey":"pl181","X":285,"Y":439},{"Bonus":2,"Continent":"K66","ID":50995,"Name":"WrocƂaw","PlayerID":848932879,"Points":10364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50995","ServerKey":"pl181","X":680,"Y":629},{"Bonus":0,"Continent":"K63","ID":50997,"Name":"162","PlayerID":849099876,"Points":4568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50997","ServerKey":"pl181","X":383,"Y":688},{"Bonus":0,"Continent":"K75","ID":50998,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=50998","ServerKey":"pl181","X":552,"Y":718},{"Bonus":0,"Continent":"K75","ID":51000,"Name":"kathare","PlayerID":873575,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51000","ServerKey":"pl181","X":537,"Y":719},{"Bonus":0,"Continent":"K47","ID":51001,"Name":"034","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51001","ServerKey":"pl181","X":717,"Y":469},{"Bonus":0,"Continent":"K63","ID":51003,"Name":"C044","PlayerID":699383279,"Points":7818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51003","ServerKey":"pl181","X":361,"Y":672},{"Bonus":8,"Continent":"K52","ID":51004,"Name":"EO EO","PlayerID":699697558,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51004","ServerKey":"pl181","X":278,"Y":503},{"Bonus":0,"Continent":"K66","ID":51006,"Name":"005 Payana","PlayerID":849102108,"Points":5940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51006","ServerKey":"pl181","X":671,"Y":639},{"Bonus":0,"Continent":"K74","ID":51007,"Name":"FP038","PlayerID":699605333,"Points":4973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51007","ServerKey":"pl181","X":476,"Y":716},{"Bonus":0,"Continent":"K42","ID":51008,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51008","ServerKey":"pl181","X":290,"Y":454},{"Bonus":0,"Continent":"K25","ID":51009,"Name":"XXXX","PlayerID":849054951,"Points":10057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51009","ServerKey":"pl181","X":564,"Y":294},{"Bonus":0,"Continent":"K66","ID":51010,"Name":"ƚroda ƚląska","PlayerID":848932879,"Points":3940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51010","ServerKey":"pl181","X":673,"Y":636},{"Bonus":0,"Continent":"K52","ID":51011,"Name":"Wyspa 001","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51011","ServerKey":"pl181","X":293,"Y":563},{"Bonus":0,"Continent":"K65","ID":51012,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":8819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51012","ServerKey":"pl181","X":537,"Y":629},{"Bonus":0,"Continent":"K63","ID":51013,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51013","ServerKey":"pl181","X":324,"Y":628},{"Bonus":0,"Continent":"K66","ID":51014,"Name":"#177#","PlayerID":692803,"Points":3575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51014","ServerKey":"pl181","X":644,"Y":616},{"Bonus":0,"Continent":"K57","ID":51015,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":9072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51015","ServerKey":"pl181","X":711,"Y":573},{"Bonus":0,"Continent":"K33","ID":51016,"Name":"NP 02","PlayerID":849076810,"Points":5001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51016","ServerKey":"pl181","X":303,"Y":391},{"Bonus":0,"Continent":"K24","ID":51017,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":5414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51017","ServerKey":"pl181","X":427,"Y":294},{"Bonus":2,"Continent":"K66","ID":51018,"Name":"Twierdza 2","PlayerID":3467919,"Points":939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51018","ServerKey":"pl181","X":690,"Y":606},{"Bonus":0,"Continent":"K52","ID":51019,"Name":"New WorldA","PlayerID":849084005,"Points":5140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51019","ServerKey":"pl181","X":286,"Y":529},{"Bonus":0,"Continent":"K43","ID":51020,"Name":"OrzeƂ 01 wylądowaƂ","PlayerID":849098299,"Points":7226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51020","ServerKey":"pl181","X":336,"Y":416},{"Bonus":0,"Continent":"K74","ID":51021,"Name":"114","PlayerID":849099876,"Points":9571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51021","ServerKey":"pl181","X":408,"Y":701},{"Bonus":0,"Continent":"K63","ID":51022,"Name":"Psycha Siada","PlayerID":8099868,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51022","ServerKey":"pl181","X":332,"Y":645},{"Bonus":0,"Continent":"K25","ID":51023,"Name":".achim.","PlayerID":6936607,"Points":6632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51023","ServerKey":"pl181","X":567,"Y":290},{"Bonus":0,"Continent":"K42","ID":51024,"Name":"Avanti!","PlayerID":698625834,"Points":5432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51024","ServerKey":"pl181","X":279,"Y":475},{"Bonus":0,"Continent":"K66","ID":51025,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":5114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51025","ServerKey":"pl181","X":612,"Y":686},{"Bonus":0,"Continent":"K74","ID":51026,"Name":"Kurnik","PlayerID":699603116,"Points":7348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51026","ServerKey":"pl181","X":422,"Y":703},{"Bonus":0,"Continent":"K42","ID":51027,"Name":"[0199]","PlayerID":8630972,"Points":6875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51027","ServerKey":"pl181","X":276,"Y":499},{"Bonus":0,"Continent":"K57","ID":51028,"Name":"Tomekrol 5","PlayerID":849096334,"Points":6071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51028","ServerKey":"pl181","X":701,"Y":597},{"Bonus":0,"Continent":"K63","ID":51029,"Name":"Wioska spartacus699111","PlayerID":698908184,"Points":10221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51029","ServerKey":"pl181","X":314,"Y":626},{"Bonus":1,"Continent":"K66","ID":51030,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":8710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51030","ServerKey":"pl181","X":646,"Y":658},{"Bonus":0,"Continent":"K57","ID":51031,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51031","ServerKey":"pl181","X":720,"Y":507},{"Bonus":0,"Continent":"K52","ID":51032,"Name":"004","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51032","ServerKey":"pl181","X":295,"Y":586},{"Bonus":0,"Continent":"K75","ID":51033,"Name":"0448","PlayerID":698659980,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51033","ServerKey":"pl181","X":570,"Y":714},{"Bonus":0,"Continent":"K66","ID":51034,"Name":"###140###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51034","ServerKey":"pl181","X":600,"Y":691},{"Bonus":0,"Continent":"K74","ID":51035,"Name":"New World","PlayerID":698152377,"Points":10122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51035","ServerKey":"pl181","X":412,"Y":705},{"Bonus":0,"Continent":"K52","ID":51036,"Name":"C0350","PlayerID":8841266,"Points":4319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51036","ServerKey":"pl181","X":278,"Y":534},{"Bonus":0,"Continent":"K36","ID":51037,"Name":"*010","PlayerID":7758085,"Points":8291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51037","ServerKey":"pl181","X":675,"Y":361},{"Bonus":0,"Continent":"K74","ID":51038,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":2059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51038","ServerKey":"pl181","X":497,"Y":724},{"Bonus":0,"Continent":"K63","ID":51039,"Name":"Kartoflisko","PlayerID":2725721,"Points":3098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51039","ServerKey":"pl181","X":348,"Y":661},{"Bonus":0,"Continent":"K25","ID":51040,"Name":"Wioska barbarzyƄska","PlayerID":699818726,"Points":4119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51040","ServerKey":"pl181","X":527,"Y":285},{"Bonus":0,"Continent":"K57","ID":51041,"Name":"30. Caingorn","PlayerID":8976313,"Points":5216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51041","ServerKey":"pl181","X":721,"Y":537},{"Bonus":0,"Continent":"K33","ID":51042,"Name":"bucksbarzyƄskamiiiru","PlayerID":848955783,"Points":4770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51042","ServerKey":"pl181","X":322,"Y":373},{"Bonus":0,"Continent":"K63","ID":51043,"Name":"0152","PlayerID":7085510,"Points":4449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51043","ServerKey":"pl181","X":366,"Y":673},{"Bonus":0,"Continent":"K63","ID":51044,"Name":"Pobozowisko","PlayerID":699513260,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51044","ServerKey":"pl181","X":398,"Y":605},{"Bonus":0,"Continent":"K36","ID":51045,"Name":"HWILA /2/","PlayerID":849006385,"Points":3168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51045","ServerKey":"pl181","X":630,"Y":319},{"Bonus":0,"Continent":"K33","ID":51047,"Name":"Drobne","PlayerID":6416213,"Points":5401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51047","ServerKey":"pl181","X":358,"Y":330},{"Bonus":0,"Continent":"K24","ID":51048,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51048","ServerKey":"pl181","X":487,"Y":285},{"Bonus":0,"Continent":"K74","ID":51049,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51049","ServerKey":"pl181","X":426,"Y":710},{"Bonus":0,"Continent":"K25","ID":51050,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51050","ServerKey":"pl181","X":593,"Y":296},{"Bonus":0,"Continent":"K47","ID":51051,"Name":"[804] Odludzie","PlayerID":848985692,"Points":8737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51051","ServerKey":"pl181","X":710,"Y":432},{"Bonus":0,"Continent":"K33","ID":51052,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51052","ServerKey":"pl181","X":320,"Y":366},{"Bonus":0,"Continent":"K52","ID":51053,"Name":"Początek","PlayerID":7842579,"Points":3587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51053","ServerKey":"pl181","X":294,"Y":579},{"Bonus":0,"Continent":"K47","ID":51055,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":3793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51055","ServerKey":"pl181","X":718,"Y":487},{"Bonus":0,"Continent":"K42","ID":51056,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51056","ServerKey":"pl181","X":282,"Y":484},{"Bonus":0,"Continent":"K66","ID":51057,"Name":"Wiadro00","PlayerID":8677963,"Points":9576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51057","ServerKey":"pl181","X":671,"Y":631},{"Bonus":0,"Continent":"K74","ID":51058,"Name":"New World","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51058","ServerKey":"pl181","X":410,"Y":703},{"Bonus":0,"Continent":"K74","ID":51059,"Name":"0018 Wioska barbarzyƄska","PlayerID":699656989,"Points":5347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51059","ServerKey":"pl181","X":494,"Y":725},{"Bonus":0,"Continent":"K25","ID":51060,"Name":".achim.","PlayerID":6936607,"Points":4792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51060","ServerKey":"pl181","X":576,"Y":288},{"Bonus":0,"Continent":"K24","ID":51061,"Name":"Wioska MISTRZU77","PlayerID":763529,"Points":4994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51061","ServerKey":"pl181","X":495,"Y":283},{"Bonus":0,"Continent":"K75","ID":51062,"Name":"kathare","PlayerID":873575,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51062","ServerKey":"pl181","X":535,"Y":720},{"Bonus":0,"Continent":"K63","ID":51063,"Name":"O108","PlayerID":272173,"Points":8747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51063","ServerKey":"pl181","X":313,"Y":625},{"Bonus":3,"Continent":"K25","ID":51064,"Name":"019 Osada koczownikĂłw","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51064","ServerKey":"pl181","X":536,"Y":278},{"Bonus":0,"Continent":"K75","ID":51065,"Name":"#K75 0026","PlayerID":699728159,"Points":4450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51065","ServerKey":"pl181","X":513,"Y":715},{"Bonus":0,"Continent":"K75","ID":51066,"Name":"rafisonik9","PlayerID":849101108,"Points":4143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51066","ServerKey":"pl181","X":511,"Y":718},{"Bonus":0,"Continent":"K75","ID":51067,"Name":"ZZZ .::. cinek3456/06","PlayerID":33900,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51067","ServerKey":"pl181","X":581,"Y":702},{"Bonus":0,"Continent":"K57","ID":51070,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51070","ServerKey":"pl181","X":719,"Y":550},{"Bonus":0,"Continent":"K36","ID":51071,"Name":"Wioska 028","PlayerID":7226782,"Points":5734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51071","ServerKey":"pl181","X":666,"Y":354},{"Bonus":0,"Continent":"K66","ID":51072,"Name":"HAPERT","PlayerID":848909464,"Points":10344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51072","ServerKey":"pl181","X":625,"Y":663},{"Bonus":0,"Continent":"K74","ID":51073,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51073","ServerKey":"pl181","X":435,"Y":710},{"Bonus":0,"Continent":"K75","ID":51074,"Name":"#K75 0030","PlayerID":699728159,"Points":3941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51074","ServerKey":"pl181","X":521,"Y":720},{"Bonus":0,"Continent":"K74","ID":51075,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51075","ServerKey":"pl181","X":428,"Y":713},{"Bonus":0,"Continent":"K75","ID":51076,"Name":"- 257 - SS","PlayerID":849018239,"Points":5311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51076","ServerKey":"pl181","X":571,"Y":707},{"Bonus":0,"Continent":"K35","ID":51077,"Name":"Wioska P-406-04","PlayerID":6654098,"Points":1360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51077","ServerKey":"pl181","X":554,"Y":335},{"Bonus":0,"Continent":"K25","ID":51078,"Name":"056 Wioska barbarzyƄska","PlayerID":699854484,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51078","ServerKey":"pl181","X":549,"Y":289},{"Bonus":0,"Continent":"K66","ID":51079,"Name":"o014","PlayerID":699189792,"Points":7536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51079","ServerKey":"pl181","X":605,"Y":696},{"Bonus":0,"Continent":"K25","ID":51080,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51080","ServerKey":"pl181","X":505,"Y":277},{"Bonus":0,"Continent":"K24","ID":51082,"Name":"Wioska barbarzyƄska","PlayerID":699196829,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51082","ServerKey":"pl181","X":472,"Y":277},{"Bonus":1,"Continent":"K75","ID":51083,"Name":"0586","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51083","ServerKey":"pl181","X":586,"Y":707},{"Bonus":0,"Continent":"K75","ID":51084,"Name":"005","PlayerID":849097370,"Points":3491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51084","ServerKey":"pl181","X":593,"Y":704},{"Bonus":1,"Continent":"K33","ID":51085,"Name":"ĆŒ internacionale 0001","PlayerID":3909522,"Points":10228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51085","ServerKey":"pl181","X":316,"Y":374},{"Bonus":0,"Continent":"K74","ID":51087,"Name":"P|004|","PlayerID":699393742,"Points":8965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51087","ServerKey":"pl181","X":460,"Y":715},{"Bonus":0,"Continent":"K33","ID":51088,"Name":"Wioska barbarzyƄska","PlayerID":699794765,"Points":1430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51088","ServerKey":"pl181","X":313,"Y":388},{"Bonus":0,"Continent":"K36","ID":51089,"Name":"034","PlayerID":9148043,"Points":6462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51089","ServerKey":"pl181","X":655,"Y":348},{"Bonus":0,"Continent":"K66","ID":51090,"Name":"*020*","PlayerID":1205898,"Points":5378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51090","ServerKey":"pl181","X":685,"Y":618},{"Bonus":0,"Continent":"K57","ID":51091,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51091","ServerKey":"pl181","X":715,"Y":543},{"Bonus":0,"Continent":"K24","ID":51092,"Name":"0083","PlayerID":848913037,"Points":5578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51092","ServerKey":"pl181","X":455,"Y":279},{"Bonus":0,"Continent":"K66","ID":51093,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51093","ServerKey":"pl181","X":672,"Y":636},{"Bonus":0,"Continent":"K36","ID":51094,"Name":"055","PlayerID":698635863,"Points":9994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51094","ServerKey":"pl181","X":676,"Y":376},{"Bonus":4,"Continent":"K36","ID":51095,"Name":"B011","PlayerID":8740199,"Points":10813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51095","ServerKey":"pl181","X":630,"Y":323},{"Bonus":0,"Continent":"K47","ID":51096,"Name":"Wioska Mammbeppe","PlayerID":849102480,"Points":8818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51096","ServerKey":"pl181","X":715,"Y":443},{"Bonus":0,"Continent":"K25","ID":51097,"Name":"Wioska LadyMauritius","PlayerID":699278528,"Points":9734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51097","ServerKey":"pl181","X":501,"Y":278},{"Bonus":0,"Continent":"K25","ID":51098,"Name":"039 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51098","ServerKey":"pl181","X":542,"Y":283},{"Bonus":0,"Continent":"K74","ID":51099,"Name":"Bagno 12","PlayerID":848883684,"Points":9423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51099","ServerKey":"pl181","X":483,"Y":717},{"Bonus":0,"Continent":"K25","ID":51100,"Name":"027 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51100","ServerKey":"pl181","X":544,"Y":283},{"Bonus":0,"Continent":"K24","ID":51101,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51101","ServerKey":"pl181","X":417,"Y":297},{"Bonus":0,"Continent":"K36","ID":51102,"Name":"!36 65 Prisaca Dornei","PlayerID":698361257,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51102","ServerKey":"pl181","X":665,"Y":361},{"Bonus":0,"Continent":"K42","ID":51103,"Name":"[0200]","PlayerID":8630972,"Points":7536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51103","ServerKey":"pl181","X":275,"Y":498},{"Bonus":6,"Continent":"K43","ID":51104,"Name":"005c","PlayerID":8259895,"Points":4274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51104","ServerKey":"pl181","X":305,"Y":410},{"Bonus":0,"Continent":"K36","ID":51105,"Name":"W47","PlayerID":699524362,"Points":2149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51105","ServerKey":"pl181","X":691,"Y":394},{"Bonus":0,"Continent":"K74","ID":51106,"Name":"New World","PlayerID":698152377,"Points":7591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51106","ServerKey":"pl181","X":438,"Y":716},{"Bonus":8,"Continent":"K33","ID":51107,"Name":"003","PlayerID":849101205,"Points":8460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51107","ServerKey":"pl181","X":344,"Y":347},{"Bonus":0,"Continent":"K42","ID":51108,"Name":"KUKA VIII","PlayerID":6127190,"Points":1549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51108","ServerKey":"pl181","X":291,"Y":433},{"Bonus":0,"Continent":"K63","ID":51109,"Name":"Koczowisko","PlayerID":698167138,"Points":4998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51109","ServerKey":"pl181","X":306,"Y":607},{"Bonus":0,"Continent":"K43","ID":51110,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":7030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51110","ServerKey":"pl181","X":388,"Y":482},{"Bonus":0,"Continent":"K36","ID":51111,"Name":"*015","PlayerID":7758085,"Points":9268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51111","ServerKey":"pl181","X":676,"Y":362},{"Bonus":0,"Continent":"K24","ID":51112,"Name":"#0240 colt9","PlayerID":1238300,"Points":6485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51112","ServerKey":"pl181","X":437,"Y":284},{"Bonus":0,"Continent":"K42","ID":51113,"Name":"07 barbarzyƄska0","PlayerID":849018442,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51113","ServerKey":"pl181","X":283,"Y":444},{"Bonus":0,"Continent":"K36","ID":51115,"Name":"Wioska 025","PlayerID":7226782,"Points":4472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51115","ServerKey":"pl181","X":668,"Y":361},{"Bonus":3,"Continent":"K33","ID":51116,"Name":"Zaplecze miedziane 2","PlayerID":699796330,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51116","ServerKey":"pl181","X":360,"Y":333},{"Bonus":0,"Continent":"K47","ID":51117,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":3097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51117","ServerKey":"pl181","X":718,"Y":459},{"Bonus":0,"Continent":"K36","ID":51118,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51118","ServerKey":"pl181","X":620,"Y":314},{"Bonus":0,"Continent":"K63","ID":51119,"Name":"C091","PlayerID":699383279,"Points":8871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51119","ServerKey":"pl181","X":361,"Y":666},{"Bonus":0,"Continent":"K66","ID":51120,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51120","ServerKey":"pl181","X":691,"Y":617},{"Bonus":0,"Continent":"K42","ID":51121,"Name":"12 desdemona24.","PlayerID":849018442,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51121","ServerKey":"pl181","X":284,"Y":449},{"Bonus":0,"Continent":"K36","ID":51122,"Name":"W48","PlayerID":699524362,"Points":1800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51122","ServerKey":"pl181","X":693,"Y":393},{"Bonus":0,"Continent":"K66","ID":51123,"Name":"#Kresy","PlayerID":2665207,"Points":7429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51123","ServerKey":"pl181","X":629,"Y":678},{"Bonus":0,"Continent":"K66","ID":51124,"Name":"039 Wioska barbarzyƄska","PlayerID":699346280,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51124","ServerKey":"pl181","X":604,"Y":691},{"Bonus":0,"Continent":"K63","ID":51125,"Name":"Psycha Siada","PlayerID":8099868,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51125","ServerKey":"pl181","X":326,"Y":640},{"Bonus":0,"Continent":"K33","ID":51126,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":5293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51126","ServerKey":"pl181","X":364,"Y":325},{"Bonus":3,"Continent":"K35","ID":51127,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51127","ServerKey":"pl181","X":597,"Y":301},{"Bonus":0,"Continent":"K74","ID":51128,"Name":"BiaƂa Podlaska 3","PlayerID":849100787,"Points":1019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51128","ServerKey":"pl181","X":440,"Y":716},{"Bonus":0,"Continent":"K25","ID":51129,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51129","ServerKey":"pl181","X":507,"Y":277},{"Bonus":0,"Continent":"K33","ID":51130,"Name":"K33","PlayerID":699794765,"Points":2759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51130","ServerKey":"pl181","X":315,"Y":381},{"Bonus":0,"Continent":"K47","ID":51131,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":6346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51131","ServerKey":"pl181","X":716,"Y":490},{"Bonus":0,"Continent":"K74","ID":51132,"Name":"Wioska mk2014","PlayerID":698431574,"Points":2216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51132","ServerKey":"pl181","X":412,"Y":701},{"Bonus":0,"Continent":"K42","ID":51133,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51133","ServerKey":"pl181","X":285,"Y":442},{"Bonus":0,"Continent":"K63","ID":51134,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51134","ServerKey":"pl181","X":327,"Y":633},{"Bonus":0,"Continent":"K24","ID":51135,"Name":"254...","PlayerID":6920960,"Points":4872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51135","ServerKey":"pl181","X":464,"Y":285},{"Bonus":7,"Continent":"K52","ID":51136,"Name":"New WorldA","PlayerID":849084005,"Points":2886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51136","ServerKey":"pl181","X":281,"Y":505},{"Bonus":0,"Continent":"K52","ID":51137,"Name":"Zzz 00 CebulaVillage","PlayerID":849084740,"Points":3115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51137","ServerKey":"pl181","X":295,"Y":571},{"Bonus":0,"Continent":"K57","ID":51138,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":5167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51138","ServerKey":"pl181","X":711,"Y":558},{"Bonus":0,"Continent":"K33","ID":51139,"Name":"008 JJ","PlayerID":9120206,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51139","ServerKey":"pl181","X":327,"Y":365},{"Bonus":0,"Continent":"K36","ID":51140,"Name":"Wioska barbarzyƄska","PlayerID":9291984,"Points":3575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51140","ServerKey":"pl181","X":651,"Y":336},{"Bonus":4,"Continent":"K24","ID":51141,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51141","ServerKey":"pl181","X":417,"Y":298},{"Bonus":0,"Continent":"K24","ID":51142,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51142","ServerKey":"pl181","X":420,"Y":294},{"Bonus":0,"Continent":"K36","ID":51143,"Name":"MJ3","PlayerID":8669398,"Points":5776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51143","ServerKey":"pl181","X":685,"Y":380},{"Bonus":0,"Continent":"K33","ID":51144,"Name":"Nowy Początek","PlayerID":849076810,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51144","ServerKey":"pl181","X":303,"Y":390},{"Bonus":0,"Continent":"K53","ID":51145,"Name":"-001-","PlayerID":9253494,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51145","ServerKey":"pl181","X":357,"Y":544},{"Bonus":0,"Continent":"K74","ID":51146,"Name":"Bagno 26","PlayerID":848883684,"Points":7452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51146","ServerKey":"pl181","X":475,"Y":719},{"Bonus":0,"Continent":"K75","ID":51147,"Name":"Trunks Super Saiyan 002","PlayerID":699054373,"Points":5354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51147","ServerKey":"pl181","X":518,"Y":724},{"Bonus":0,"Continent":"K57","ID":51148,"Name":"020","PlayerID":699150527,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51148","ServerKey":"pl181","X":707,"Y":509},{"Bonus":0,"Continent":"K56","ID":51150,"Name":"Wioska 009","PlayerID":7999103,"Points":3346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51150","ServerKey":"pl181","X":697,"Y":591},{"Bonus":9,"Continent":"K74","ID":51151,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51151","ServerKey":"pl181","X":431,"Y":714},{"Bonus":0,"Continent":"K42","ID":51152,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51152","ServerKey":"pl181","X":292,"Y":436},{"Bonus":0,"Continent":"K24","ID":51153,"Name":"#0301 Piotr-B","PlayerID":1238300,"Points":8348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51153","ServerKey":"pl181","X":435,"Y":288},{"Bonus":0,"Continent":"K75","ID":51154,"Name":"003 PPP","PlayerID":6116940,"Points":5055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51154","ServerKey":"pl181","X":529,"Y":715},{"Bonus":0,"Continent":"K36","ID":51155,"Name":"Zasiedmiogorogrodzie 002","PlayerID":698278542,"Points":3403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51155","ServerKey":"pl181","X":696,"Y":398},{"Bonus":0,"Continent":"K64","ID":51156,"Name":"063","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51156","ServerKey":"pl181","X":403,"Y":694},{"Bonus":0,"Continent":"K75","ID":51157,"Name":"ZZZ .::. cinek3456/05","PlayerID":33900,"Points":10195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51157","ServerKey":"pl181","X":581,"Y":701},{"Bonus":0,"Continent":"K57","ID":51158,"Name":"Wioska barbarzyƄska","PlayerID":699266530,"Points":5304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51158","ServerKey":"pl181","X":711,"Y":579},{"Bonus":0,"Continent":"K47","ID":51159,"Name":"05 GHOL","PlayerID":849101845,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51159","ServerKey":"pl181","X":722,"Y":458},{"Bonus":0,"Continent":"K66","ID":51160,"Name":"o09","PlayerID":699189792,"Points":7807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51160","ServerKey":"pl181","X":614,"Y":686},{"Bonus":0,"Continent":"K47","ID":51161,"Name":"[817] Odludzie","PlayerID":848985692,"Points":7599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51161","ServerKey":"pl181","X":713,"Y":443},{"Bonus":32,"Continent":"K53","ID":51162,"Name":"Twierdza (SV)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51162","ServerKey":"pl181","X":351,"Y":549},{"Bonus":0,"Continent":"K33","ID":51163,"Name":"Demacia","PlayerID":698817235,"Points":11502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51163","ServerKey":"pl181","X":347,"Y":335},{"Bonus":2,"Continent":"K47","ID":51164,"Name":"022 Mahogany Town","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51164","ServerKey":"pl181","X":721,"Y":485},{"Bonus":0,"Continent":"K75","ID":51165,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51165","ServerKey":"pl181","X":507,"Y":720},{"Bonus":0,"Continent":"K25","ID":51166,"Name":"Aksjo 1","PlayerID":849099696,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51166","ServerKey":"pl181","X":560,"Y":285},{"Bonus":0,"Continent":"K36","ID":51167,"Name":"Bernabeum","PlayerID":9291984,"Points":5835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51167","ServerKey":"pl181","X":642,"Y":336},{"Bonus":0,"Continent":"K66","ID":51168,"Name":"011 Twierdza","PlayerID":849104328,"Points":9215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51168","ServerKey":"pl181","X":629,"Y":681},{"Bonus":0,"Continent":"K36","ID":51169,"Name":"006","PlayerID":9148043,"Points":5306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51169","ServerKey":"pl181","X":676,"Y":360},{"Bonus":0,"Continent":"K47","ID":51170,"Name":"030 Mauville City","PlayerID":699441366,"Points":5581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51170","ServerKey":"pl181","X":714,"Y":483},{"Bonus":8,"Continent":"K75","ID":51171,"Name":"kathare","PlayerID":873575,"Points":10182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51171","ServerKey":"pl181","X":535,"Y":719},{"Bonus":0,"Continent":"K36","ID":51172,"Name":"Wioska010","PlayerID":698768565,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51172","ServerKey":"pl181","X":696,"Y":390},{"Bonus":0,"Continent":"K75","ID":51173,"Name":"UTAPAU 1","PlayerID":699383121,"Points":4057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51173","ServerKey":"pl181","X":541,"Y":722},{"Bonus":0,"Continent":"K47","ID":51174,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":4348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51174","ServerKey":"pl181","X":715,"Y":486},{"Bonus":0,"Continent":"K42","ID":51175,"Name":"Avanti!","PlayerID":698625834,"Points":6631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51175","ServerKey":"pl181","X":284,"Y":477},{"Bonus":5,"Continent":"K42","ID":51176,"Name":"017","PlayerID":6131106,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51176","ServerKey":"pl181","X":280,"Y":464},{"Bonus":0,"Continent":"K33","ID":51177,"Name":"C-003","PlayerID":699406247,"Points":3894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51177","ServerKey":"pl181","X":323,"Y":361},{"Bonus":0,"Continent":"K25","ID":51178,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51178","ServerKey":"pl181","X":509,"Y":275},{"Bonus":0,"Continent":"K36","ID":51179,"Name":"049. Hubix","PlayerID":2873154,"Points":8945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51179","ServerKey":"pl181","X":686,"Y":383},{"Bonus":0,"Continent":"K33","ID":51180,"Name":"A-004","PlayerID":699406247,"Points":6028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51180","ServerKey":"pl181","X":323,"Y":368},{"Bonus":4,"Continent":"K36","ID":51181,"Name":"005. Seiyouwasabi","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51181","ServerKey":"pl181","X":697,"Y":391},{"Bonus":0,"Continent":"K33","ID":51182,"Name":"010 JJ","PlayerID":9120206,"Points":3834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51182","ServerKey":"pl181","X":332,"Y":364},{"Bonus":0,"Continent":"K36","ID":51183,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":3137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51183","ServerKey":"pl181","X":688,"Y":385},{"Bonus":0,"Continent":"K75","ID":51184,"Name":"Kapitol_04","PlayerID":606407,"Points":5320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51184","ServerKey":"pl181","X":505,"Y":722},{"Bonus":0,"Continent":"K63","ID":51185,"Name":"KamienioƂom","PlayerID":2725721,"Points":3284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51185","ServerKey":"pl181","X":348,"Y":662},{"Bonus":0,"Continent":"K25","ID":51186,"Name":".achim.","PlayerID":6936607,"Points":2657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51186","ServerKey":"pl181","X":564,"Y":284},{"Bonus":0,"Continent":"K33","ID":51187,"Name":"NP 04","PlayerID":849076810,"Points":6944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51187","ServerKey":"pl181","X":304,"Y":392},{"Bonus":0,"Continent":"K63","ID":51189,"Name":"Psycha Siada","PlayerID":8099868,"Points":8980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51189","ServerKey":"pl181","X":339,"Y":651},{"Bonus":0,"Continent":"K65","ID":51190,"Name":"0367","PlayerID":698659980,"Points":8411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51190","ServerKey":"pl181","X":566,"Y":696},{"Bonus":0,"Continent":"K33","ID":51191,"Name":"Wioska barbarzyƄska","PlayerID":6416213,"Points":3447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51191","ServerKey":"pl181","X":363,"Y":328},{"Bonus":0,"Continent":"K57","ID":51192,"Name":"=096= Wioska barbarzyƄska","PlayerID":3781794,"Points":6168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51192","ServerKey":"pl181","X":706,"Y":568},{"Bonus":1,"Continent":"K42","ID":51193,"Name":"Finne","PlayerID":848981726,"Points":8220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51193","ServerKey":"pl181","X":279,"Y":463},{"Bonus":0,"Continent":"K75","ID":51194,"Name":"Blanco Conejo","PlayerID":849102336,"Points":7134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51194","ServerKey":"pl181","X":522,"Y":722},{"Bonus":0,"Continent":"K36","ID":51195,"Name":"Na KraƄcu ƚwiata 004","PlayerID":9291984,"Points":10475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51195","ServerKey":"pl181","X":645,"Y":341},{"Bonus":1,"Continent":"K74","ID":51196,"Name":"002","PlayerID":849100814,"Points":5097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51196","ServerKey":"pl181","X":422,"Y":711},{"Bonus":0,"Continent":"K33","ID":51197,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51197","ServerKey":"pl181","X":318,"Y":370},{"Bonus":0,"Continent":"K75","ID":51198,"Name":"074 invidia","PlayerID":849093426,"Points":5243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51198","ServerKey":"pl181","X":537,"Y":718},{"Bonus":0,"Continent":"K63","ID":51199,"Name":"071","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51199","ServerKey":"pl181","X":399,"Y":691},{"Bonus":0,"Continent":"K33","ID":51200,"Name":"Wioska barbarzyƄska","PlayerID":9240154,"Points":1969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51200","ServerKey":"pl181","X":328,"Y":368},{"Bonus":0,"Continent":"K24","ID":51201,"Name":"Barlinek","PlayerID":699278528,"Points":7278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51201","ServerKey":"pl181","X":487,"Y":280},{"Bonus":0,"Continent":"K74","ID":51202,"Name":"New World","PlayerID":698152377,"Points":9978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51202","ServerKey":"pl181","X":413,"Y":700},{"Bonus":0,"Continent":"K63","ID":51204,"Name":"mufinka","PlayerID":849030086,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51204","ServerKey":"pl181","X":381,"Y":689},{"Bonus":0,"Continent":"K63","ID":51205,"Name":"0139","PlayerID":7085510,"Points":3866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51205","ServerKey":"pl181","X":367,"Y":676},{"Bonus":0,"Continent":"K66","ID":51206,"Name":"007","PlayerID":849099544,"Points":6922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51206","ServerKey":"pl181","X":635,"Y":636},{"Bonus":0,"Continent":"K36","ID":51207,"Name":"*005","PlayerID":7758085,"Points":9663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51207","ServerKey":"pl181","X":671,"Y":364},{"Bonus":0,"Continent":"K25","ID":51208,"Name":"North 049","PlayerID":849064752,"Points":6418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51208","ServerKey":"pl181","X":512,"Y":281},{"Bonus":0,"Continent":"K75","ID":51209,"Name":"#K75 0007","PlayerID":699728159,"Points":5353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51209","ServerKey":"pl181","X":518,"Y":714},{"Bonus":0,"Continent":"K75","ID":51210,"Name":"ChomentĂłw","PlayerID":698723158,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51210","ServerKey":"pl181","X":580,"Y":709},{"Bonus":0,"Continent":"K66","ID":51211,"Name":"033","PlayerID":699099811,"Points":4000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51211","ServerKey":"pl181","X":685,"Y":622},{"Bonus":0,"Continent":"K75","ID":51212,"Name":"Kapitol_02","PlayerID":606407,"Points":6040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51212","ServerKey":"pl181","X":506,"Y":725},{"Bonus":0,"Continent":"K66","ID":51213,"Name":"014.","PlayerID":699695167,"Points":10158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51213","ServerKey":"pl181","X":634,"Y":669},{"Bonus":0,"Continent":"K63","ID":51214,"Name":"018","PlayerID":699356968,"Points":5532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51214","ServerKey":"pl181","X":303,"Y":609},{"Bonus":0,"Continent":"K36","ID":51215,"Name":"WOLA0102","PlayerID":6956104,"Points":6752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51215","ServerKey":"pl181","X":680,"Y":366},{"Bonus":0,"Continent":"K52","ID":51216,"Name":"New WorldA","PlayerID":849084005,"Points":4369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51216","ServerKey":"pl181","X":278,"Y":505},{"Bonus":0,"Continent":"K24","ID":51217,"Name":"0066","PlayerID":848913037,"Points":9993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51217","ServerKey":"pl181","X":458,"Y":280},{"Bonus":0,"Continent":"K63","ID":51218,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51218","ServerKey":"pl181","X":318,"Y":629},{"Bonus":0,"Continent":"K25","ID":51219,"Name":"072 Wioska barbarzyƄska","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51219","ServerKey":"pl181","X":540,"Y":286},{"Bonus":0,"Continent":"K25","ID":51220,"Name":"North 040","PlayerID":849064752,"Points":7111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51220","ServerKey":"pl181","X":516,"Y":282},{"Bonus":0,"Continent":"K75","ID":51221,"Name":"Wioska 1","PlayerID":849100615,"Points":3664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51221","ServerKey":"pl181","X":512,"Y":723},{"Bonus":0,"Continent":"K66","ID":51222,"Name":"komandos","PlayerID":7976264,"Points":5059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51222","ServerKey":"pl181","X":669,"Y":649},{"Bonus":0,"Continent":"K42","ID":51223,"Name":"Wiiiiiii","PlayerID":848981726,"Points":2087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51223","ServerKey":"pl181","X":287,"Y":469},{"Bonus":0,"Continent":"K24","ID":51225,"Name":"Op Konfederacja","PlayerID":848915730,"Points":7457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51225","ServerKey":"pl181","X":472,"Y":285},{"Bonus":0,"Continent":"K74","ID":51226,"Name":"No to jedziemy :D","PlayerID":699333701,"Points":7495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51226","ServerKey":"pl181","X":495,"Y":714},{"Bonus":0,"Continent":"K47","ID":51227,"Name":"075 KrĂłlewska PrzystaƄ","PlayerID":2135129,"Points":9565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51227","ServerKey":"pl181","X":705,"Y":429},{"Bonus":0,"Continent":"K57","ID":51228,"Name":"Wioska7","PlayerID":699266530,"Points":8164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51228","ServerKey":"pl181","X":708,"Y":576},{"Bonus":3,"Continent":"K36","ID":51229,"Name":"*002","PlayerID":7758085,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51229","ServerKey":"pl181","X":669,"Y":364},{"Bonus":0,"Continent":"K25","ID":51230,"Name":"P004","PlayerID":699208929,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51230","ServerKey":"pl181","X":511,"Y":275},{"Bonus":0,"Continent":"K47","ID":51231,"Name":"17 Wioska wolna od pisu","PlayerID":849101845,"Points":7391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51231","ServerKey":"pl181","X":721,"Y":458},{"Bonus":0,"Continent":"K42","ID":51232,"Name":"B_10","PlayerID":699728266,"Points":2614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51232","ServerKey":"pl181","X":296,"Y":411},{"Bonus":0,"Continent":"K57","ID":51233,"Name":"Wioska KaszczuJ 1","PlayerID":849104356,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51233","ServerKey":"pl181","X":700,"Y":573},{"Bonus":0,"Continent":"K74","ID":51234,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51234","ServerKey":"pl181","X":432,"Y":709},{"Bonus":0,"Continent":"K63","ID":51235,"Name":"103","PlayerID":849099876,"Points":10025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51235","ServerKey":"pl181","X":399,"Y":695},{"Bonus":0,"Continent":"K33","ID":51236,"Name":"Motorola 02","PlayerID":698806018,"Points":9044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51236","ServerKey":"pl181","X":364,"Y":321},{"Bonus":8,"Continent":"K57","ID":51237,"Name":"Xxxx","PlayerID":6510480,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51237","ServerKey":"pl181","X":722,"Y":501},{"Bonus":0,"Continent":"K24","ID":51238,"Name":"K24 - [002] Before Land","PlayerID":699088769,"Points":6625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51238","ServerKey":"pl181","X":462,"Y":287},{"Bonus":0,"Continent":"K74","ID":51239,"Name":"Kurnik","PlayerID":699603116,"Points":9609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51239","ServerKey":"pl181","X":451,"Y":716},{"Bonus":0,"Continent":"K57","ID":51241,"Name":"Wioska 013","PlayerID":7999103,"Points":2470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51241","ServerKey":"pl181","X":700,"Y":588},{"Bonus":0,"Continent":"K47","ID":51242,"Name":"Wioska barbarzyƄska 001","PlayerID":7588382,"Points":1966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51242","ServerKey":"pl181","X":703,"Y":404},{"Bonus":0,"Continent":"K36","ID":51243,"Name":"B012","PlayerID":8740199,"Points":11328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51243","ServerKey":"pl181","X":631,"Y":324},{"Bonus":0,"Continent":"K66","ID":51244,"Name":"012 Twierdza","PlayerID":849104328,"Points":8341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51244","ServerKey":"pl181","X":629,"Y":682},{"Bonus":0,"Continent":"K63","ID":51245,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":3505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51245","ServerKey":"pl181","X":363,"Y":673},{"Bonus":0,"Continent":"K35","ID":51246,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51246","ServerKey":"pl181","X":595,"Y":302},{"Bonus":0,"Continent":"K24","ID":51247,"Name":"Wioska","PlayerID":7758085,"Points":6551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51247","ServerKey":"pl181","X":476,"Y":284},{"Bonus":0,"Continent":"K46","ID":51248,"Name":"W49","PlayerID":699524362,"Points":2070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51248","ServerKey":"pl181","X":694,"Y":402},{"Bonus":0,"Continent":"K66","ID":51250,"Name":"###141###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51250","ServerKey":"pl181","X":602,"Y":696},{"Bonus":2,"Continent":"K25","ID":51251,"Name":"AAA","PlayerID":1006847,"Points":8459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51251","ServerKey":"pl181","X":555,"Y":289},{"Bonus":0,"Continent":"K25","ID":51253,"Name":"#034","PlayerID":849064614,"Points":2771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51253","ServerKey":"pl181","X":557,"Y":283},{"Bonus":0,"Continent":"K24","ID":51254,"Name":"Pcim Dolny","PlayerID":849100083,"Points":5049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51254","ServerKey":"pl181","X":463,"Y":280},{"Bonus":0,"Continent":"K65","ID":51255,"Name":"###142###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51255","ServerKey":"pl181","X":598,"Y":695},{"Bonus":0,"Continent":"K57","ID":51256,"Name":"Wioska barbarzyƄska","PlayerID":7154207,"Points":1521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51256","ServerKey":"pl181","X":702,"Y":577},{"Bonus":0,"Continent":"K57","ID":51257,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":5859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51257","ServerKey":"pl181","X":725,"Y":522},{"Bonus":0,"Continent":"K35","ID":51258,"Name":"AAA","PlayerID":1006847,"Points":4336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51258","ServerKey":"pl181","X":528,"Y":318},{"Bonus":0,"Continent":"K33","ID":51259,"Name":"Wioska barbarzyƄska","PlayerID":849101694,"Points":2791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51259","ServerKey":"pl181","X":350,"Y":339},{"Bonus":0,"Continent":"K24","ID":51260,"Name":"Wioska barbarzyƄska","PlayerID":699863708,"Points":4142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51260","ServerKey":"pl181","X":459,"Y":284},{"Bonus":0,"Continent":"K63","ID":51261,"Name":"Wioska kjs12","PlayerID":698687597,"Points":628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51261","ServerKey":"pl181","X":301,"Y":606},{"Bonus":0,"Continent":"K42","ID":51262,"Name":"Wioska jo1","PlayerID":699763225,"Points":3783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51262","ServerKey":"pl181","X":296,"Y":405},{"Bonus":1,"Continent":"K66","ID":51263,"Name":"002 Quatra","PlayerID":849102108,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51263","ServerKey":"pl181","X":670,"Y":640},{"Bonus":0,"Continent":"K74","ID":51264,"Name":"Bagno 18","PlayerID":848883684,"Points":7712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51264","ServerKey":"pl181","X":483,"Y":716},{"Bonus":0,"Continent":"K64","ID":51265,"Name":"123","PlayerID":849099876,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51265","ServerKey":"pl181","X":404,"Y":699},{"Bonus":0,"Continent":"K24","ID":51266,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51266","ServerKey":"pl181","X":499,"Y":277},{"Bonus":0,"Continent":"K36","ID":51267,"Name":"0104","PlayerID":698416970,"Points":4552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51267","ServerKey":"pl181","X":681,"Y":378},{"Bonus":0,"Continent":"K36","ID":51268,"Name":"0153","PlayerID":698416970,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51268","ServerKey":"pl181","X":699,"Y":399},{"Bonus":0,"Continent":"K63","ID":51269,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51269","ServerKey":"pl181","X":327,"Y":642},{"Bonus":0,"Continent":"K33","ID":51270,"Name":"Zaplecze Barba 7","PlayerID":699796330,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51270","ServerKey":"pl181","X":372,"Y":319},{"Bonus":0,"Continent":"K25","ID":51271,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51271","ServerKey":"pl181","X":503,"Y":282},{"Bonus":0,"Continent":"K63","ID":51272,"Name":"008","PlayerID":699356968,"Points":4899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51272","ServerKey":"pl181","X":308,"Y":605},{"Bonus":0,"Continent":"K36","ID":51273,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51273","ServerKey":"pl181","X":647,"Y":333},{"Bonus":0,"Continent":"K63","ID":51274,"Name":"C099","PlayerID":699383279,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51274","ServerKey":"pl181","X":357,"Y":672},{"Bonus":0,"Continent":"K33","ID":51275,"Name":"=0017=","PlayerID":698231772,"Points":9851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51275","ServerKey":"pl181","X":391,"Y":308},{"Bonus":0,"Continent":"K24","ID":51276,"Name":"222","PlayerID":849089654,"Points":2998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51276","ServerKey":"pl181","X":413,"Y":293},{"Bonus":0,"Continent":"K42","ID":51277,"Name":"023","PlayerID":6131106,"Points":3237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51277","ServerKey":"pl181","X":289,"Y":420},{"Bonus":0,"Continent":"K65","ID":51278,"Name":"###143###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51278","ServerKey":"pl181","X":592,"Y":697},{"Bonus":0,"Continent":"K52","ID":51279,"Name":"New WorldA","PlayerID":849084005,"Points":3510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51279","ServerKey":"pl181","X":281,"Y":528},{"Bonus":0,"Continent":"K33","ID":51280,"Name":"015","PlayerID":8724192,"Points":1301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51280","ServerKey":"pl181","X":309,"Y":392},{"Bonus":0,"Continent":"K63","ID":51281,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51281","ServerKey":"pl181","X":364,"Y":675},{"Bonus":0,"Continent":"K33","ID":51282,"Name":"BOSS SW","PlayerID":849101604,"Points":7597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51282","ServerKey":"pl181","X":350,"Y":346},{"Bonus":0,"Continent":"K63","ID":51283,"Name":"Nowa 03","PlayerID":699321518,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51283","ServerKey":"pl181","X":302,"Y":600},{"Bonus":0,"Continent":"K36","ID":51284,"Name":"Wioska adekkolt1","PlayerID":9257513,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51284","ServerKey":"pl181","X":651,"Y":333},{"Bonus":0,"Continent":"K25","ID":51286,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51286","ServerKey":"pl181","X":503,"Y":279},{"Bonus":0,"Continent":"K25","ID":51288,"Name":"North 074","PlayerID":849064752,"Points":4159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51288","ServerKey":"pl181","X":518,"Y":278},{"Bonus":0,"Continent":"K74","ID":51289,"Name":"0012 Wioska sos1234","PlayerID":699656989,"Points":9860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51289","ServerKey":"pl181","X":471,"Y":716},{"Bonus":0,"Continent":"K57","ID":51290,"Name":"065","PlayerID":7085502,"Points":7517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51290","ServerKey":"pl181","X":716,"Y":511},{"Bonus":0,"Continent":"K33","ID":51291,"Name":"010. Tonno e cipolla","PlayerID":849102092,"Points":8878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51291","ServerKey":"pl181","X":307,"Y":385},{"Bonus":1,"Continent":"K42","ID":51292,"Name":"012","PlayerID":6131106,"Points":5805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51292","ServerKey":"pl181","X":290,"Y":425},{"Bonus":0,"Continent":"K36","ID":51293,"Name":"*014","PlayerID":7758085,"Points":7710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51293","ServerKey":"pl181","X":678,"Y":365},{"Bonus":0,"Continent":"K25","ID":51295,"Name":"--026--","PlayerID":542253,"Points":7790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51295","ServerKey":"pl181","X":570,"Y":292},{"Bonus":0,"Continent":"K24","ID":51296,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51296","ServerKey":"pl181","X":498,"Y":280},{"Bonus":0,"Continent":"K63","ID":51297,"Name":"054 Wioska barbarzyƄska","PlayerID":6354098,"Points":5750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51297","ServerKey":"pl181","X":347,"Y":664},{"Bonus":0,"Continent":"K24","ID":51298,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51298","ServerKey":"pl181","X":418,"Y":293},{"Bonus":0,"Continent":"K36","ID":51300,"Name":"056","PlayerID":698635863,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51300","ServerKey":"pl181","X":680,"Y":379},{"Bonus":0,"Continent":"K42","ID":51301,"Name":"003","PlayerID":698652171,"Points":8470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51301","ServerKey":"pl181","X":284,"Y":461},{"Bonus":0,"Continent":"K66","ID":51302,"Name":"Podbitek 2","PlayerID":849101652,"Points":7352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51302","ServerKey":"pl181","X":685,"Y":610},{"Bonus":0,"Continent":"K36","ID":51303,"Name":"009","PlayerID":849020094,"Points":4383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51303","ServerKey":"pl181","X":658,"Y":348},{"Bonus":0,"Continent":"K75","ID":51304,"Name":"MERHET","PlayerID":698215322,"Points":7453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51304","ServerKey":"pl181","X":583,"Y":708},{"Bonus":0,"Continent":"K66","ID":51305,"Name":"018 Twierdza","PlayerID":849104328,"Points":2904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51305","ServerKey":"pl181","X":636,"Y":680},{"Bonus":0,"Continent":"K66","ID":51306,"Name":"014","PlayerID":2323859,"Points":5090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51306","ServerKey":"pl181","X":667,"Y":641},{"Bonus":0,"Continent":"K66","ID":51307,"Name":"044","PlayerID":2323859,"Points":1244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51307","ServerKey":"pl181","X":663,"Y":645},{"Bonus":0,"Continent":"K74","ID":51308,"Name":"Magiczne koszary","PlayerID":848935389,"Points":6418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51308","ServerKey":"pl181","X":462,"Y":718},{"Bonus":0,"Continent":"K75","ID":51309,"Name":"Wiocha 2","PlayerID":849045675,"Points":11995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51309","ServerKey":"pl181","X":556,"Y":717},{"Bonus":4,"Continent":"K66","ID":51310,"Name":"Trawiasta0","PlayerID":8607734,"Points":9655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51310","ServerKey":"pl181","X":623,"Y":684},{"Bonus":0,"Continent":"K35","ID":51311,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51311","ServerKey":"pl181","X":597,"Y":300},{"Bonus":0,"Continent":"K52","ID":51312,"Name":"2. Caraxes","PlayerID":849089499,"Points":2620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51312","ServerKey":"pl181","X":299,"Y":583},{"Bonus":0,"Continent":"K43","ID":51313,"Name":"002","PlayerID":8259895,"Points":4792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51313","ServerKey":"pl181","X":300,"Y":409},{"Bonus":0,"Continent":"K57","ID":51314,"Name":"06.LUNA","PlayerID":698905177,"Points":3913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51314","ServerKey":"pl181","X":710,"Y":561},{"Bonus":0,"Continent":"K66","ID":51315,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51315","ServerKey":"pl181","X":656,"Y":650},{"Bonus":0,"Continent":"K63","ID":51316,"Name":"118","PlayerID":849099876,"Points":8138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51316","ServerKey":"pl181","X":391,"Y":695},{"Bonus":0,"Continent":"K25","ID":51317,"Name":"--044--","PlayerID":542253,"Points":1943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51317","ServerKey":"pl181","X":572,"Y":289},{"Bonus":0,"Continent":"K52","ID":51318,"Name":"008","PlayerID":698663855,"Points":5774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51318","ServerKey":"pl181","X":297,"Y":594},{"Bonus":0,"Continent":"K66","ID":51319,"Name":"PoƂudniowy WschĂłd 014","PlayerID":699778867,"Points":1012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51319","ServerKey":"pl181","X":690,"Y":609},{"Bonus":0,"Continent":"K52","ID":51320,"Name":"Haga","PlayerID":699830255,"Points":4459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51320","ServerKey":"pl181","X":280,"Y":520},{"Bonus":0,"Continent":"K36","ID":51321,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51321","ServerKey":"pl181","X":638,"Y":326},{"Bonus":0,"Continent":"K66","ID":51323,"Name":"028","PlayerID":699099811,"Points":3353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51323","ServerKey":"pl181","X":683,"Y":620},{"Bonus":0,"Continent":"K24","ID":51324,"Name":"[0149]","PlayerID":8630972,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51324","ServerKey":"pl181","X":444,"Y":291},{"Bonus":0,"Continent":"K57","ID":51325,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":3326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51325","ServerKey":"pl181","X":717,"Y":543},{"Bonus":0,"Continent":"K75","ID":51326,"Name":"#0072","PlayerID":1536231,"Points":7583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51326","ServerKey":"pl181","X":572,"Y":713},{"Bonus":0,"Continent":"K53","ID":51327,"Name":"Kolonia 02","PlayerID":6180190,"Points":7919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51327","ServerKey":"pl181","X":304,"Y":592},{"Bonus":0,"Continent":"K66","ID":51328,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51328","ServerKey":"pl181","X":692,"Y":619},{"Bonus":0,"Continent":"K24","ID":51329,"Name":"Winterfell.021","PlayerID":848918380,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51329","ServerKey":"pl181","X":455,"Y":283},{"Bonus":0,"Continent":"K33","ID":51330,"Name":"Motorola 06","PlayerID":698806018,"Points":4763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51330","ServerKey":"pl181","X":364,"Y":324},{"Bonus":0,"Continent":"K52","ID":51331,"Name":"Cisza","PlayerID":698769107,"Points":3577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51331","ServerKey":"pl181","X":291,"Y":550},{"Bonus":0,"Continent":"K75","ID":51332,"Name":"3.Oksford","PlayerID":698215322,"Points":6656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51332","ServerKey":"pl181","X":545,"Y":715},{"Bonus":0,"Continent":"K57","ID":51333,"Name":"46. Ellander","PlayerID":8976313,"Points":4371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51333","ServerKey":"pl181","X":718,"Y":541},{"Bonus":0,"Continent":"K63","ID":51334,"Name":"SP 2201","PlayerID":849092685,"Points":5291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51334","ServerKey":"pl181","X":353,"Y":657},{"Bonus":0,"Continent":"K34","ID":51335,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51335","ServerKey":"pl181","X":400,"Y":304},{"Bonus":0,"Continent":"K75","ID":51337,"Name":"Wioska barbarzyƄska","PlayerID":8991696,"Points":4966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51337","ServerKey":"pl181","X":594,"Y":705},{"Bonus":0,"Continent":"K74","ID":51338,"Name":"Ave Night","PlayerID":849089459,"Points":7134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51338","ServerKey":"pl181","X":457,"Y":711},{"Bonus":0,"Continent":"K63","ID":51339,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51339","ServerKey":"pl181","X":332,"Y":640},{"Bonus":0,"Continent":"K36","ID":51341,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51341","ServerKey":"pl181","X":654,"Y":335},{"Bonus":0,"Continent":"K25","ID":51342,"Name":".achim.","PlayerID":6936607,"Points":5927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51342","ServerKey":"pl181","X":566,"Y":291},{"Bonus":0,"Continent":"K63","ID":51343,"Name":"C045","PlayerID":699383279,"Points":7791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51343","ServerKey":"pl181","X":372,"Y":676},{"Bonus":0,"Continent":"K66","ID":51344,"Name":"7. Maribor","PlayerID":849102573,"Points":5547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51344","ServerKey":"pl181","X":602,"Y":699},{"Bonus":1,"Continent":"K66","ID":51345,"Name":"o011","PlayerID":699189792,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51345","ServerKey":"pl181","X":615,"Y":686},{"Bonus":0,"Continent":"K63","ID":51346,"Name":"Psycha Siada","PlayerID":8099868,"Points":8669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51346","ServerKey":"pl181","X":338,"Y":651},{"Bonus":0,"Continent":"K63","ID":51347,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":9128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51347","ServerKey":"pl181","X":362,"Y":675},{"Bonus":0,"Continent":"K63","ID":51348,"Name":"008 | North","PlayerID":699511295,"Points":6194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51348","ServerKey":"pl181","X":374,"Y":685},{"Bonus":0,"Continent":"K36","ID":51349,"Name":"008","PlayerID":849020094,"Points":3783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51349","ServerKey":"pl181","X":659,"Y":348},{"Bonus":0,"Continent":"K66","ID":51350,"Name":"###144###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51350","ServerKey":"pl181","X":607,"Y":694},{"Bonus":0,"Continent":"K42","ID":51351,"Name":"Avanti!","PlayerID":698625834,"Points":8487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51351","ServerKey":"pl181","X":278,"Y":494},{"Bonus":0,"Continent":"K36","ID":51352,"Name":"Wioska005","PlayerID":698768565,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51352","ServerKey":"pl181","X":688,"Y":389},{"Bonus":0,"Continent":"K57","ID":51354,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":6041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51354","ServerKey":"pl181","X":714,"Y":543},{"Bonus":2,"Continent":"K74","ID":51355,"Name":"osada","PlayerID":849100814,"Points":1550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51355","ServerKey":"pl181","X":418,"Y":709},{"Bonus":0,"Continent":"K63","ID":51356,"Name":"DZIMMMIi","PlayerID":849101135,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51356","ServerKey":"pl181","X":335,"Y":641},{"Bonus":0,"Continent":"K74","ID":51357,"Name":"No.27","PlayerID":698826986,"Points":788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51357","ServerKey":"pl181","X":475,"Y":722},{"Bonus":0,"Continent":"K74","ID":51358,"Name":"029.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51358","ServerKey":"pl181","X":466,"Y":722},{"Bonus":0,"Continent":"K36","ID":51360,"Name":"0140","PlayerID":698416970,"Points":2668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51360","ServerKey":"pl181","X":690,"Y":390},{"Bonus":0,"Continent":"K52","ID":51361,"Name":"006","PlayerID":698663855,"Points":6242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51361","ServerKey":"pl181","X":298,"Y":587},{"Bonus":0,"Continent":"K74","ID":51362,"Name":"Wioska barbarzyƄska","PlayerID":699280514,"Points":3440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51362","ServerKey":"pl181","X":474,"Y":715},{"Bonus":0,"Continent":"K36","ID":51363,"Name":"0070","PlayerID":698416970,"Points":4983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51363","ServerKey":"pl181","X":697,"Y":393},{"Bonus":0,"Continent":"K47","ID":51364,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":2090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51364","ServerKey":"pl181","X":720,"Y":497},{"Bonus":0,"Continent":"K74","ID":51365,"Name":"azi1","PlayerID":849094759,"Points":7839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51365","ServerKey":"pl181","X":460,"Y":719},{"Bonus":0,"Continent":"K34","ID":51366,"Name":"Nowy początek","PlayerID":849104546,"Points":11622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51366","ServerKey":"pl181","X":463,"Y":308},{"Bonus":0,"Continent":"K57","ID":51367,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51367","ServerKey":"pl181","X":712,"Y":570},{"Bonus":0,"Continent":"K75","ID":51368,"Name":"-08-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51368","ServerKey":"pl181","X":582,"Y":709},{"Bonus":0,"Continent":"K25","ID":51369,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51369","ServerKey":"pl181","X":579,"Y":297},{"Bonus":0,"Continent":"K66","ID":51370,"Name":"059.","PlayerID":699695167,"Points":3010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51370","ServerKey":"pl181","X":628,"Y":673},{"Bonus":0,"Continent":"K46","ID":51371,"Name":"Wioska4 barbarzyƄska","PlayerID":8459255,"Points":5298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51371","ServerKey":"pl181","X":697,"Y":413},{"Bonus":0,"Continent":"K47","ID":51372,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51372","ServerKey":"pl181","X":714,"Y":443},{"Bonus":0,"Continent":"K66","ID":51373,"Name":"MANUO","PlayerID":698353083,"Points":9623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51373","ServerKey":"pl181","X":619,"Y":691},{"Bonus":0,"Continent":"K36","ID":51374,"Name":"=|17|=","PlayerID":9101574,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51374","ServerKey":"pl181","X":651,"Y":382},{"Bonus":0,"Continent":"K57","ID":51375,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51375","ServerKey":"pl181","X":718,"Y":549},{"Bonus":0,"Continent":"K75","ID":51376,"Name":"ZZZ .::. cinek3456/04","PlayerID":33900,"Points":10200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51376","ServerKey":"pl181","X":582,"Y":701},{"Bonus":0,"Continent":"K75","ID":51377,"Name":"weiBer Hase","PlayerID":849102336,"Points":4351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51377","ServerKey":"pl181","X":527,"Y":723},{"Bonus":0,"Continent":"K47","ID":51378,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":5035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51378","ServerKey":"pl181","X":722,"Y":471},{"Bonus":0,"Continent":"K63","ID":51379,"Name":"O078","PlayerID":272173,"Points":9887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51379","ServerKey":"pl181","X":333,"Y":639},{"Bonus":0,"Continent":"K64","ID":51380,"Name":"Psycha Siada","PlayerID":698807570,"Points":5429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51380","ServerKey":"pl181","X":446,"Y":665},{"Bonus":9,"Continent":"K33","ID":51381,"Name":"003","PlayerID":7919620,"Points":2793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51381","ServerKey":"pl181","X":321,"Y":379},{"Bonus":0,"Continent":"K53","ID":51382,"Name":"XDe","PlayerID":849096458,"Points":6158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51382","ServerKey":"pl181","X":326,"Y":555},{"Bonus":0,"Continent":"K36","ID":51383,"Name":"Wioska tomnado","PlayerID":2976468,"Points":9830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51383","ServerKey":"pl181","X":674,"Y":360},{"Bonus":0,"Continent":"K36","ID":51384,"Name":"Wioska 006","PlayerID":7226782,"Points":4396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51384","ServerKey":"pl181","X":670,"Y":352},{"Bonus":0,"Continent":"K66","ID":51385,"Name":"Ć»UBEREK 005 rt27","PlayerID":33900,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51385","ServerKey":"pl181","X":617,"Y":690},{"Bonus":0,"Continent":"K47","ID":51386,"Name":"071.","PlayerID":849094609,"Points":3217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51386","ServerKey":"pl181","X":715,"Y":463},{"Bonus":0,"Continent":"K36","ID":51387,"Name":"t015","PlayerID":2262902,"Points":7917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51387","ServerKey":"pl181","X":667,"Y":352},{"Bonus":7,"Continent":"K42","ID":51388,"Name":"Avanti!","PlayerID":698625834,"Points":6885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51388","ServerKey":"pl181","X":281,"Y":471},{"Bonus":0,"Continent":"K52","ID":51389,"Name":"New WorldA","PlayerID":849084005,"Points":5141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51389","ServerKey":"pl181","X":280,"Y":506},{"Bonus":0,"Continent":"K25","ID":51390,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51390","ServerKey":"pl181","X":509,"Y":277},{"Bonus":0,"Continent":"K33","ID":51392,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51392","ServerKey":"pl181","X":396,"Y":300},{"Bonus":0,"Continent":"K36","ID":51393,"Name":"016","PlayerID":9148043,"Points":5897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51393","ServerKey":"pl181","X":655,"Y":356},{"Bonus":0,"Continent":"K36","ID":51394,"Name":"!36 65 Corocaiesti","PlayerID":698361257,"Points":4592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51394","ServerKey":"pl181","X":652,"Y":361},{"Bonus":0,"Continent":"K36","ID":51395,"Name":"WOLA0101","PlayerID":6956104,"Points":7603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51395","ServerKey":"pl181","X":679,"Y":368},{"Bonus":0,"Continent":"K66","ID":51398,"Name":"*021*","PlayerID":1205898,"Points":3701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51398","ServerKey":"pl181","X":683,"Y":627},{"Bonus":0,"Continent":"K74","ID":51399,"Name":"0061.","PlayerID":849037407,"Points":7189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51399","ServerKey":"pl181","X":450,"Y":710},{"Bonus":4,"Continent":"K75","ID":51400,"Name":"119 invidia","PlayerID":849093426,"Points":10236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51400","ServerKey":"pl181","X":507,"Y":723},{"Bonus":0,"Continent":"K42","ID":51403,"Name":"Wioska barbarzyƄska","PlayerID":699812351,"Points":2192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51403","ServerKey":"pl181","X":279,"Y":466},{"Bonus":6,"Continent":"K66","ID":51404,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51404","ServerKey":"pl181","X":653,"Y":660},{"Bonus":0,"Continent":"K24","ID":51405,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51405","ServerKey":"pl181","X":411,"Y":293},{"Bonus":0,"Continent":"K36","ID":51406,"Name":"Wioska 023","PlayerID":7226782,"Points":3907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51406","ServerKey":"pl181","X":667,"Y":359},{"Bonus":0,"Continent":"K74","ID":51407,"Name":"New World","PlayerID":698152377,"Points":9909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51407","ServerKey":"pl181","X":418,"Y":708},{"Bonus":0,"Continent":"K24","ID":51408,"Name":".achim.","PlayerID":6936607,"Points":8812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51408","ServerKey":"pl181","X":471,"Y":280},{"Bonus":0,"Continent":"K75","ID":51409,"Name":"rafisonik7","PlayerID":849101108,"Points":4815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51409","ServerKey":"pl181","X":510,"Y":717},{"Bonus":0,"Continent":"K36","ID":51410,"Name":"001","PlayerID":849020094,"Points":10985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51410","ServerKey":"pl181","X":659,"Y":343},{"Bonus":0,"Continent":"K42","ID":51411,"Name":"Wioska barbarzyƄska","PlayerID":8366045,"Points":3662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51411","ServerKey":"pl181","X":293,"Y":431},{"Bonus":0,"Continent":"K63","ID":51412,"Name":"185","PlayerID":849099876,"Points":7614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51412","ServerKey":"pl181","X":384,"Y":687},{"Bonus":0,"Continent":"K36","ID":51413,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51413","ServerKey":"pl181","X":616,"Y":319},{"Bonus":0,"Continent":"K65","ID":51414,"Name":"Recreational Facility","PlayerID":8199417,"Points":6529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51414","ServerKey":"pl181","X":515,"Y":608},{"Bonus":0,"Continent":"K63","ID":51415,"Name":"Taran","PlayerID":6180190,"Points":7172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51415","ServerKey":"pl181","X":322,"Y":625},{"Bonus":0,"Continent":"K57","ID":51416,"Name":"Gryfios 098","PlayerID":698666810,"Points":11460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51416","ServerKey":"pl181","X":720,"Y":551},{"Bonus":0,"Continent":"K53","ID":51417,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":3697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51417","ServerKey":"pl181","X":301,"Y":586},{"Bonus":0,"Continent":"K24","ID":51418,"Name":"#0305 wancki i gustlikk dar","PlayerID":1238300,"Points":6719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51418","ServerKey":"pl181","X":482,"Y":279},{"Bonus":9,"Continent":"K57","ID":51419,"Name":"=097= Wioska barbarzyƄska","PlayerID":3781794,"Points":7305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51419","ServerKey":"pl181","X":700,"Y":596},{"Bonus":0,"Continent":"K42","ID":51420,"Name":"Avanti!","PlayerID":698625834,"Points":5689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51420","ServerKey":"pl181","X":278,"Y":480},{"Bonus":0,"Continent":"K42","ID":51421,"Name":"15 Cezarleon.","PlayerID":849018442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51421","ServerKey":"pl181","X":290,"Y":445},{"Bonus":0,"Continent":"K24","ID":51422,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51422","ServerKey":"pl181","X":488,"Y":276},{"Bonus":0,"Continent":"K33","ID":51423,"Name":"Bagno","PlayerID":698906190,"Points":4707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51423","ServerKey":"pl181","X":354,"Y":332},{"Bonus":0,"Continent":"K42","ID":51424,"Name":"WBar","PlayerID":698652171,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51424","ServerKey":"pl181","X":285,"Y":456},{"Bonus":0,"Continent":"K36","ID":51426,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":4912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51426","ServerKey":"pl181","X":604,"Y":396},{"Bonus":0,"Continent":"K66","ID":51427,"Name":"032","PlayerID":2323859,"Points":2808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51427","ServerKey":"pl181","X":677,"Y":641},{"Bonus":0,"Continent":"K36","ID":51428,"Name":"Wioska EmilPraski","PlayerID":699857387,"Points":9119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51428","ServerKey":"pl181","X":618,"Y":367},{"Bonus":6,"Continent":"K52","ID":51429,"Name":"C0230","PlayerID":8841266,"Points":8912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51429","ServerKey":"pl181","X":279,"Y":546},{"Bonus":0,"Continent":"K75","ID":51432,"Name":"-18-","PlayerID":849032414,"Points":6369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51432","ServerKey":"pl181","X":577,"Y":702},{"Bonus":0,"Continent":"K52","ID":51433,"Name":"8. Sunfyre","PlayerID":849089499,"Points":246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51433","ServerKey":"pl181","X":297,"Y":591},{"Bonus":0,"Continent":"K63","ID":51435,"Name":"C024","PlayerID":699383279,"Points":9095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51435","ServerKey":"pl181","X":356,"Y":664},{"Bonus":5,"Continent":"K66","ID":51436,"Name":"Komandos","PlayerID":7976264,"Points":10054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51436","ServerKey":"pl181","X":643,"Y":665},{"Bonus":0,"Continent":"K56","ID":51437,"Name":"KoƛcióƂ na gĂłrce","PlayerID":848932879,"Points":9166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51437","ServerKey":"pl181","X":681,"Y":545},{"Bonus":0,"Continent":"K42","ID":51438,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51438","ServerKey":"pl181","X":288,"Y":438},{"Bonus":0,"Continent":"K33","ID":51439,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51439","ServerKey":"pl181","X":392,"Y":302},{"Bonus":0,"Continent":"K42","ID":51440,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51440","ServerKey":"pl181","X":289,"Y":446},{"Bonus":0,"Continent":"K63","ID":51441,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51441","ServerKey":"pl181","X":336,"Y":643},{"Bonus":0,"Continent":"K56","ID":51444,"Name":"Wioska 18","PlayerID":849101162,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51444","ServerKey":"pl181","X":692,"Y":599},{"Bonus":0,"Continent":"K74","ID":51445,"Name":"Bagno 29","PlayerID":848883684,"Points":8366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51445","ServerKey":"pl181","X":481,"Y":718},{"Bonus":0,"Continent":"K57","ID":51446,"Name":"=034= Wioska barbarzyƄska","PlayerID":3781794,"Points":10575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51446","ServerKey":"pl181","X":708,"Y":568},{"Bonus":0,"Continent":"K52","ID":51447,"Name":"Zzz 07 koniec blisko","PlayerID":849084740,"Points":7849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51447","ServerKey":"pl181","X":290,"Y":570},{"Bonus":0,"Continent":"K24","ID":51448,"Name":"K24 - [001] Before Land","PlayerID":699088769,"Points":5096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51448","ServerKey":"pl181","X":470,"Y":283},{"Bonus":0,"Continent":"K63","ID":51449,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":4002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51449","ServerKey":"pl181","X":323,"Y":632},{"Bonus":0,"Continent":"K42","ID":51450,"Name":"Avanti!","PlayerID":698625834,"Points":7128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51450","ServerKey":"pl181","X":279,"Y":473},{"Bonus":1,"Continent":"K47","ID":51451,"Name":"013","PlayerID":849091105,"Points":9966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51451","ServerKey":"pl181","X":725,"Y":494},{"Bonus":0,"Continent":"K75","ID":51452,"Name":"ZZZ .::. cinek3456/03","PlayerID":33900,"Points":10194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51452","ServerKey":"pl181","X":584,"Y":703},{"Bonus":0,"Continent":"K66","ID":51453,"Name":"4. Wyzima","PlayerID":849102573,"Points":6043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51453","ServerKey":"pl181","X":606,"Y":693},{"Bonus":0,"Continent":"K42","ID":51454,"Name":"Avanti!","PlayerID":698625834,"Points":5721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51454","ServerKey":"pl181","X":281,"Y":478},{"Bonus":0,"Continent":"K74","ID":51455,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51455","ServerKey":"pl181","X":462,"Y":720},{"Bonus":0,"Continent":"K66","ID":51457,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":9591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51457","ServerKey":"pl181","X":654,"Y":662},{"Bonus":6,"Continent":"K25","ID":51458,"Name":"XXXX","PlayerID":849054951,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51458","ServerKey":"pl181","X":561,"Y":292},{"Bonus":0,"Continent":"K64","ID":51459,"Name":"Winter is coming","PlayerID":699364813,"Points":4682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51459","ServerKey":"pl181","X":463,"Y":604},{"Bonus":0,"Continent":"K33","ID":51460,"Name":"Motorola 04","PlayerID":698806018,"Points":7970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51460","ServerKey":"pl181","X":366,"Y":320},{"Bonus":0,"Continent":"K74","ID":51461,"Name":"0062","PlayerID":849037407,"Points":9150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51461","ServerKey":"pl181","X":450,"Y":704},{"Bonus":0,"Continent":"K47","ID":51462,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51462","ServerKey":"pl181","X":726,"Y":485},{"Bonus":0,"Continent":"K25","ID":51463,"Name":"Wioska 1","PlayerID":7427966,"Points":3797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51463","ServerKey":"pl181","X":546,"Y":279},{"Bonus":0,"Continent":"K46","ID":51464,"Name":"Ludzka przypadƂoƛć","PlayerID":699785935,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51464","ServerKey":"pl181","X":694,"Y":401},{"Bonus":0,"Continent":"K53","ID":51465,"Name":"030","PlayerID":9280477,"Points":4356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51465","ServerKey":"pl181","X":301,"Y":554},{"Bonus":0,"Continent":"K36","ID":51466,"Name":"005","PlayerID":849057764,"Points":3483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51466","ServerKey":"pl181","X":695,"Y":390},{"Bonus":0,"Continent":"K25","ID":51468,"Name":"089 Wioska barbarzyƄska","PlayerID":699854484,"Points":7682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51468","ServerKey":"pl181","X":544,"Y":289},{"Bonus":0,"Continent":"K57","ID":51469,"Name":"38. Hakland","PlayerID":8976313,"Points":9332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51469","ServerKey":"pl181","X":714,"Y":534},{"Bonus":0,"Continent":"K42","ID":51470,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51470","ServerKey":"pl181","X":284,"Y":453},{"Bonus":0,"Continent":"K66","ID":51471,"Name":"007 Victoria","PlayerID":849102108,"Points":10186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51471","ServerKey":"pl181","X":671,"Y":641},{"Bonus":0,"Continent":"K33","ID":51472,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51472","ServerKey":"pl181","X":317,"Y":370},{"Bonus":1,"Continent":"K75","ID":51473,"Name":"3.Leicester","PlayerID":698215322,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51473","ServerKey":"pl181","X":566,"Y":716},{"Bonus":0,"Continent":"K57","ID":51474,"Name":"wioska wilka 01","PlayerID":6786449,"Points":10809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51474","ServerKey":"pl181","X":717,"Y":562},{"Bonus":7,"Continent":"K74","ID":51475,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51475","ServerKey":"pl181","X":413,"Y":707},{"Bonus":0,"Continent":"K33","ID":51476,"Name":"=0027=","PlayerID":698231772,"Points":8523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51476","ServerKey":"pl181","X":395,"Y":311},{"Bonus":0,"Continent":"K75","ID":51477,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51477","ServerKey":"pl181","X":553,"Y":719},{"Bonus":0,"Continent":"K64","ID":51478,"Name":"020","PlayerID":699238479,"Points":9014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51478","ServerKey":"pl181","X":482,"Y":651},{"Bonus":0,"Continent":"K25","ID":51479,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51479","ServerKey":"pl181","X":579,"Y":294},{"Bonus":0,"Continent":"K74","ID":51480,"Name":"Kurnik","PlayerID":699603116,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51480","ServerKey":"pl181","X":466,"Y":723},{"Bonus":0,"Continent":"K47","ID":51481,"Name":"X006","PlayerID":699722599,"Points":7397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51481","ServerKey":"pl181","X":713,"Y":426},{"Bonus":0,"Continent":"K33","ID":51482,"Name":"Orgetoryks","PlayerID":848998530,"Points":9577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51482","ServerKey":"pl181","X":329,"Y":356},{"Bonus":0,"Continent":"K42","ID":51483,"Name":"Avanti!","PlayerID":698625834,"Points":6310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51483","ServerKey":"pl181","X":284,"Y":480},{"Bonus":0,"Continent":"K66","ID":51484,"Name":"#Kresy","PlayerID":2665207,"Points":6000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51484","ServerKey":"pl181","X":629,"Y":677},{"Bonus":0,"Continent":"K63","ID":51485,"Name":"O073","PlayerID":272173,"Points":9871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51485","ServerKey":"pl181","X":330,"Y":632},{"Bonus":0,"Continent":"K25","ID":51486,"Name":"North 005","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51486","ServerKey":"pl181","X":516,"Y":281},{"Bonus":1,"Continent":"K57","ID":51487,"Name":"=023= Osada koczownikĂłw","PlayerID":3781794,"Points":8560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51487","ServerKey":"pl181","X":709,"Y":573},{"Bonus":0,"Continent":"K57","ID":51488,"Name":"Tomekrol","PlayerID":849096334,"Points":7632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51488","ServerKey":"pl181","X":702,"Y":597},{"Bonus":0,"Continent":"K43","ID":51489,"Name":"002a","PlayerID":8259895,"Points":4475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51489","ServerKey":"pl181","X":300,"Y":410},{"Bonus":3,"Continent":"K47","ID":51490,"Name":"B004 Osada Ć»elazo","PlayerID":113796,"Points":9346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51490","ServerKey":"pl181","X":713,"Y":460},{"Bonus":0,"Continent":"K57","ID":51491,"Name":"Wioska wilka 03","PlayerID":6786449,"Points":9756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51491","ServerKey":"pl181","X":717,"Y":559},{"Bonus":0,"Continent":"K75","ID":51492,"Name":"Wioska barbarzyƄska","PlayerID":6299408,"Points":6934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51492","ServerKey":"pl181","X":559,"Y":717},{"Bonus":2,"Continent":"K52","ID":51493,"Name":"Zzz 09 kom","PlayerID":849084740,"Points":3754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51493","ServerKey":"pl181","X":287,"Y":568},{"Bonus":0,"Continent":"K63","ID":51494,"Name":"0112","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51494","ServerKey":"pl181","X":374,"Y":677},{"Bonus":0,"Continent":"K42","ID":51495,"Name":"Wioska barbarzyƄska","PlayerID":8366045,"Points":3654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51495","ServerKey":"pl181","X":294,"Y":428},{"Bonus":0,"Continent":"K47","ID":51496,"Name":"024","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51496","ServerKey":"pl181","X":715,"Y":471},{"Bonus":0,"Continent":"K24","ID":51497,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51497","ServerKey":"pl181","X":425,"Y":297},{"Bonus":0,"Continent":"K24","ID":51498,"Name":"#0156 lukas041","PlayerID":1238300,"Points":4512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51498","ServerKey":"pl181","X":479,"Y":276},{"Bonus":0,"Continent":"K36","ID":51499,"Name":"W50","PlayerID":699524362,"Points":2124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51499","ServerKey":"pl181","X":694,"Y":392},{"Bonus":0,"Continent":"K65","ID":51500,"Name":"###145###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51500","ServerKey":"pl181","X":590,"Y":696},{"Bonus":0,"Continent":"K36","ID":51501,"Name":"000","PlayerID":699117992,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51501","ServerKey":"pl181","X":612,"Y":306},{"Bonus":0,"Continent":"K25","ID":51502,"Name":"007 crisyss","PlayerID":698736778,"Points":3303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51502","ServerKey":"pl181","X":526,"Y":284},{"Bonus":0,"Continent":"K52","ID":51503,"Name":"022. Gloria Victis","PlayerID":848886973,"Points":11321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51503","ServerKey":"pl181","X":284,"Y":562},{"Bonus":0,"Continent":"K57","ID":51504,"Name":"=098= Wioska barbarzyƄska","PlayerID":3781794,"Points":3768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51504","ServerKey":"pl181","X":708,"Y":569},{"Bonus":0,"Continent":"K47","ID":51505,"Name":"Wioska barbarzyƄska","PlayerID":8675636,"Points":8852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51505","ServerKey":"pl181","X":703,"Y":420},{"Bonus":0,"Continent":"K57","ID":51506,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":7774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51506","ServerKey":"pl181","X":714,"Y":550},{"Bonus":0,"Continent":"K56","ID":51507,"Name":"S021","PlayerID":8428196,"Points":4989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51507","ServerKey":"pl181","X":691,"Y":599},{"Bonus":0,"Continent":"K54","ID":51508,"Name":"#0123 Gaj","PlayerID":9272054,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51508","ServerKey":"pl181","X":480,"Y":536},{"Bonus":0,"Continent":"K33","ID":51509,"Name":"A-005","PlayerID":699406247,"Points":5189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51509","ServerKey":"pl181","X":319,"Y":373},{"Bonus":0,"Continent":"K42","ID":51510,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51510","ServerKey":"pl181","X":280,"Y":485},{"Bonus":0,"Continent":"K33","ID":51511,"Name":"11_Franekkimono510_11","PlayerID":849099422,"Points":1205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51511","ServerKey":"pl181","X":368,"Y":319},{"Bonus":0,"Continent":"K24","ID":51512,"Name":"Wioska barbarzyƄska","PlayerID":699196829,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51512","ServerKey":"pl181","X":473,"Y":282},{"Bonus":0,"Continent":"K57","ID":51513,"Name":"Wioska =Wilku=","PlayerID":699878150,"Points":11984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51513","ServerKey":"pl181","X":717,"Y":561},{"Bonus":0,"Continent":"K64","ID":51514,"Name":"062","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51514","ServerKey":"pl181","X":402,"Y":696},{"Bonus":0,"Continent":"K43","ID":51515,"Name":"Zeta Reticuli W","PlayerID":699323302,"Points":4119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51515","ServerKey":"pl181","X":361,"Y":407},{"Bonus":0,"Continent":"K57","ID":51516,"Name":"Mordownia 5","PlayerID":849101029,"Points":8200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51516","ServerKey":"pl181","X":703,"Y":593},{"Bonus":0,"Continent":"K75","ID":51517,"Name":"Trunks Super Saiyan 001","PlayerID":699054373,"Points":8464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51517","ServerKey":"pl181","X":520,"Y":725},{"Bonus":0,"Continent":"K75","ID":51518,"Name":":... 1 ...:","PlayerID":849051976,"Points":8281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51518","ServerKey":"pl181","X":514,"Y":717},{"Bonus":0,"Continent":"K66","ID":51519,"Name":"###146###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51519","ServerKey":"pl181","X":608,"Y":688},{"Bonus":0,"Continent":"K46","ID":51520,"Name":"Gattacka","PlayerID":699298370,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51520","ServerKey":"pl181","X":612,"Y":420},{"Bonus":0,"Continent":"K47","ID":51521,"Name":"[816] Odludzie","PlayerID":848985692,"Points":7028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51521","ServerKey":"pl181","X":710,"Y":444},{"Bonus":0,"Continent":"K33","ID":51522,"Name":"000","PlayerID":698231772,"Points":7174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51522","ServerKey":"pl181","X":395,"Y":303},{"Bonus":0,"Continent":"K74","ID":51523,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51523","ServerKey":"pl181","X":426,"Y":709},{"Bonus":0,"Continent":"K63","ID":51524,"Name":"161","PlayerID":849099876,"Points":6088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51524","ServerKey":"pl181","X":383,"Y":687},{"Bonus":0,"Continent":"K36","ID":51525,"Name":"WOLA0001","PlayerID":6956104,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51525","ServerKey":"pl181","X":679,"Y":367},{"Bonus":0,"Continent":"K33","ID":51526,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":4648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51526","ServerKey":"pl181","X":375,"Y":356},{"Bonus":0,"Continent":"K36","ID":51527,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51527","ServerKey":"pl181","X":637,"Y":325},{"Bonus":0,"Continent":"K33","ID":51528,"Name":"Koala0o1","PlayerID":698806018,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51528","ServerKey":"pl181","X":364,"Y":320},{"Bonus":0,"Continent":"K75","ID":51529,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":5751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51529","ServerKey":"pl181","X":553,"Y":710},{"Bonus":0,"Continent":"K64","ID":51530,"Name":"xxx","PlayerID":849014922,"Points":9371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51530","ServerKey":"pl181","X":400,"Y":699},{"Bonus":0,"Continent":"K63","ID":51531,"Name":"006 | North","PlayerID":699511295,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51531","ServerKey":"pl181","X":374,"Y":687},{"Bonus":0,"Continent":"K42","ID":51532,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51532","ServerKey":"pl181","X":285,"Y":449},{"Bonus":0,"Continent":"K36","ID":51533,"Name":"010","PlayerID":699117992,"Points":4924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51533","ServerKey":"pl181","X":609,"Y":311},{"Bonus":0,"Continent":"K47","ID":51534,"Name":"Osada 14","PlayerID":699488108,"Points":8465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51534","ServerKey":"pl181","X":711,"Y":420},{"Bonus":0,"Continent":"K42","ID":51535,"Name":"Avanti!","PlayerID":698625834,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51535","ServerKey":"pl181","X":282,"Y":478},{"Bonus":1,"Continent":"K66","ID":51537,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":7927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51537","ServerKey":"pl181","X":687,"Y":628},{"Bonus":0,"Continent":"K47","ID":51538,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51538","ServerKey":"pl181","X":723,"Y":496},{"Bonus":0,"Continent":"K74","ID":51539,"Name":"Kurnik","PlayerID":699603116,"Points":7511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51539","ServerKey":"pl181","X":420,"Y":711},{"Bonus":0,"Continent":"K56","ID":51540,"Name":"077","PlayerID":699316421,"Points":10559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51540","ServerKey":"pl181","X":694,"Y":546},{"Bonus":0,"Continent":"K24","ID":51541,"Name":"#0237 colt9","PlayerID":1238300,"Points":9442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51541","ServerKey":"pl181","X":436,"Y":285},{"Bonus":0,"Continent":"K46","ID":51542,"Name":"rycho100","PlayerID":699488108,"Points":9190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51542","ServerKey":"pl181","X":695,"Y":408},{"Bonus":0,"Continent":"K24","ID":51543,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51543","ServerKey":"pl181","X":497,"Y":277},{"Bonus":0,"Continent":"K24","ID":51544,"Name":"309","PlayerID":7271812,"Points":2514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51544","ServerKey":"pl181","X":448,"Y":280},{"Bonus":0,"Continent":"K36","ID":51545,"Name":"#3 Wioska barbarzyƄska","PlayerID":849099517,"Points":5039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51545","ServerKey":"pl181","X":635,"Y":322},{"Bonus":0,"Continent":"K24","ID":51546,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51546","ServerKey":"pl181","X":491,"Y":277},{"Bonus":0,"Continent":"K54","ID":51547,"Name":".Sajonaura","PlayerID":699781762,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51547","ServerKey":"pl181","X":472,"Y":501},{"Bonus":0,"Continent":"K66","ID":51548,"Name":"Klatka3","PlayerID":6528152,"Points":4122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51548","ServerKey":"pl181","X":620,"Y":681},{"Bonus":0,"Continent":"K65","ID":51549,"Name":"0451","PlayerID":698659980,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51549","ServerKey":"pl181","X":556,"Y":612},{"Bonus":0,"Continent":"K66","ID":51550,"Name":"022","PlayerID":2323859,"Points":2857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51550","ServerKey":"pl181","X":666,"Y":647},{"Bonus":0,"Continent":"K66","ID":51551,"Name":"101. Armekt","PlayerID":8337151,"Points":12001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51551","ServerKey":"pl181","X":673,"Y":646},{"Bonus":0,"Continent":"K33","ID":51552,"Name":"Szlachcic","PlayerID":698388578,"Points":4468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51552","ServerKey":"pl181","X":354,"Y":336},{"Bonus":0,"Continent":"K64","ID":51553,"Name":"001","PlayerID":848953066,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51553","ServerKey":"pl181","X":494,"Y":646},{"Bonus":0,"Continent":"K66","ID":51554,"Name":"061","PlayerID":699099811,"Points":1101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51554","ServerKey":"pl181","X":690,"Y":621},{"Bonus":0,"Continent":"K25","ID":51555,"Name":"D021","PlayerID":699299123,"Points":3588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51555","ServerKey":"pl181","X":560,"Y":291},{"Bonus":0,"Continent":"K36","ID":51556,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51556","ServerKey":"pl181","X":652,"Y":338},{"Bonus":0,"Continent":"K36","ID":51557,"Name":"Wioska Luk10iD","PlayerID":2976468,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51557","ServerKey":"pl181","X":680,"Y":360},{"Bonus":0,"Continent":"K63","ID":51558,"Name":"065 Wioska barbarzyƄska","PlayerID":6354098,"Points":4482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51558","ServerKey":"pl181","X":347,"Y":658},{"Bonus":2,"Continent":"K33","ID":51559,"Name":"CiemnogrĂłd #2","PlayerID":849096958,"Points":8743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51559","ServerKey":"pl181","X":331,"Y":363},{"Bonus":0,"Continent":"K36","ID":51560,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51560","ServerKey":"pl181","X":622,"Y":316},{"Bonus":0,"Continent":"K47","ID":51561,"Name":"X001 WehikuƂ czasu","PlayerID":699722599,"Points":9128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51561","ServerKey":"pl181","X":709,"Y":428},{"Bonus":0,"Continent":"K63","ID":51562,"Name":"Bida","PlayerID":698167138,"Points":1912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51562","ServerKey":"pl181","X":304,"Y":601},{"Bonus":0,"Continent":"K42","ID":51563,"Name":"Zaplątany.","PlayerID":849001277,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51563","ServerKey":"pl181","X":283,"Y":478},{"Bonus":0,"Continent":"K75","ID":51564,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51564","ServerKey":"pl181","X":546,"Y":721},{"Bonus":9,"Continent":"K57","ID":51565,"Name":"Wioska barbarzyƄska","PlayerID":698845189,"Points":7399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51565","ServerKey":"pl181","X":710,"Y":583},{"Bonus":0,"Continent":"K33","ID":51566,"Name":"...","PlayerID":699657450,"Points":7428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51566","ServerKey":"pl181","X":335,"Y":354},{"Bonus":0,"Continent":"K47","ID":51567,"Name":"Ghostmane5","PlayerID":848896434,"Points":2490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51567","ServerKey":"pl181","X":719,"Y":445},{"Bonus":0,"Continent":"K57","ID":51568,"Name":"Mordownia","PlayerID":849101029,"Points":11713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51568","ServerKey":"pl181","X":705,"Y":594},{"Bonus":0,"Continent":"K47","ID":51569,"Name":"C.054","PlayerID":9188016,"Points":3792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51569","ServerKey":"pl181","X":724,"Y":482},{"Bonus":0,"Continent":"K24","ID":51570,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51570","ServerKey":"pl181","X":429,"Y":292},{"Bonus":0,"Continent":"K25","ID":51571,"Name":"00000ZƂoty ƛwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51571","ServerKey":"pl181","X":586,"Y":297},{"Bonus":0,"Continent":"K66","ID":51572,"Name":"S030","PlayerID":8428196,"Points":1788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51572","ServerKey":"pl181","X":691,"Y":602},{"Bonus":0,"Continent":"K63","ID":51573,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51573","ServerKey":"pl181","X":324,"Y":637},{"Bonus":0,"Continent":"K52","ID":51574,"Name":"Początek","PlayerID":7842579,"Points":3309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51574","ServerKey":"pl181","X":298,"Y":578},{"Bonus":0,"Continent":"K42","ID":51575,"Name":"Avanti!","PlayerID":698625834,"Points":2639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51575","ServerKey":"pl181","X":283,"Y":476},{"Bonus":0,"Continent":"K57","ID":51577,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51577","ServerKey":"pl181","X":716,"Y":545},{"Bonus":0,"Continent":"K36","ID":51578,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":1167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51578","ServerKey":"pl181","X":658,"Y":350},{"Bonus":0,"Continent":"K25","ID":51579,"Name":"B002","PlayerID":699485250,"Points":9413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51579","ServerKey":"pl181","X":521,"Y":280},{"Bonus":3,"Continent":"K64","ID":51580,"Name":"013","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51580","ServerKey":"pl181","X":400,"Y":693},{"Bonus":0,"Continent":"K57","ID":51581,"Name":"086 rexanty2","PlayerID":2135129,"Points":5039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51581","ServerKey":"pl181","X":715,"Y":546},{"Bonus":0,"Continent":"K53","ID":51582,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":8297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51582","ServerKey":"pl181","X":301,"Y":596},{"Bonus":0,"Continent":"K47","ID":51583,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":4786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51583","ServerKey":"pl181","X":722,"Y":467},{"Bonus":0,"Continent":"K25","ID":51584,"Name":"035 Wioska barbarzyƄska","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51584","ServerKey":"pl181","X":543,"Y":282},{"Bonus":0,"Continent":"K47","ID":51585,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":5907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51585","ServerKey":"pl181","X":717,"Y":498},{"Bonus":0,"Continent":"K26","ID":51586,"Name":"Flap","PlayerID":699098531,"Points":3175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51586","ServerKey":"pl181","X":601,"Y":298},{"Bonus":0,"Continent":"K63","ID":51587,"Name":"C046","PlayerID":699383279,"Points":5394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51587","ServerKey":"pl181","X":364,"Y":669},{"Bonus":0,"Continent":"K42","ID":51589,"Name":"020","PlayerID":6131106,"Points":3517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51589","ServerKey":"pl181","X":290,"Y":422},{"Bonus":0,"Continent":"K74","ID":51590,"Name":"Wioska majku 6","PlayerID":9195661,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51590","ServerKey":"pl181","X":412,"Y":704},{"Bonus":0,"Continent":"K74","ID":51591,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51591","ServerKey":"pl181","X":432,"Y":715},{"Bonus":0,"Continent":"K33","ID":51592,"Name":"CiemnogrĂłd #4","PlayerID":849096958,"Points":7723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51592","ServerKey":"pl181","X":334,"Y":361},{"Bonus":0,"Continent":"K43","ID":51593,"Name":"016","PlayerID":8724192,"Points":658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51593","ServerKey":"pl181","X":303,"Y":403},{"Bonus":0,"Continent":"K74","ID":51594,"Name":"|D| Baywell","PlayerID":698147372,"Points":4534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51594","ServerKey":"pl181","X":456,"Y":722},{"Bonus":0,"Continent":"K42","ID":51595,"Name":"Jupi","PlayerID":848981726,"Points":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51595","ServerKey":"pl181","X":279,"Y":468},{"Bonus":0,"Continent":"K36","ID":51596,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51596","ServerKey":"pl181","X":657,"Y":345},{"Bonus":0,"Continent":"K47","ID":51597,"Name":"C.055","PlayerID":9188016,"Points":4598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51597","ServerKey":"pl181","X":722,"Y":478},{"Bonus":0,"Continent":"K34","ID":51598,"Name":"Zielonka","PlayerID":699308637,"Points":9837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51598","ServerKey":"pl181","X":465,"Y":306},{"Bonus":0,"Continent":"K63","ID":51599,"Name":"Arehukas","PlayerID":849030086,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51599","ServerKey":"pl181","X":379,"Y":690},{"Bonus":0,"Continent":"K74","ID":51600,"Name":"New World","PlayerID":698152377,"Points":7911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51600","ServerKey":"pl181","X":423,"Y":705},{"Bonus":0,"Continent":"K36","ID":51601,"Name":"Wioska006","PlayerID":698768565,"Points":5731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51601","ServerKey":"pl181","X":689,"Y":383},{"Bonus":0,"Continent":"K52","ID":51602,"Name":"Wioska denver72","PlayerID":699671197,"Points":5999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51602","ServerKey":"pl181","X":296,"Y":583},{"Bonus":0,"Continent":"K74","ID":51603,"Name":"sami swoi 2","PlayerID":9195661,"Points":5017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51603","ServerKey":"pl181","X":411,"Y":704},{"Bonus":0,"Continent":"K74","ID":51604,"Name":"Wioska barbarzyƄska","PlayerID":699744012,"Points":2354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51604","ServerKey":"pl181","X":490,"Y":722},{"Bonus":0,"Continent":"K52","ID":51605,"Name":"Wioska Miko6","PlayerID":699805379,"Points":1547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51605","ServerKey":"pl181","X":286,"Y":531},{"Bonus":0,"Continent":"K24","ID":51606,"Name":"119.Stradi","PlayerID":698365960,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51606","ServerKey":"pl181","X":443,"Y":285},{"Bonus":0,"Continent":"K33","ID":51607,"Name":"Motorola 07","PlayerID":698806018,"Points":3926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51607","ServerKey":"pl181","X":364,"Y":319},{"Bonus":0,"Continent":"K25","ID":51608,"Name":"#001","PlayerID":849064614,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51608","ServerKey":"pl181","X":553,"Y":280},{"Bonus":8,"Continent":"K36","ID":51609,"Name":"Osada koczownikĂłw","PlayerID":7555180,"Points":9630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51609","ServerKey":"pl181","X":624,"Y":321},{"Bonus":0,"Continent":"K47","ID":51611,"Name":"036 KTW","PlayerID":848883237,"Points":3022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51611","ServerKey":"pl181","X":720,"Y":447},{"Bonus":0,"Continent":"K63","ID":51612,"Name":"115","PlayerID":849099876,"Points":9279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51612","ServerKey":"pl181","X":396,"Y":696},{"Bonus":0,"Continent":"K57","ID":51613,"Name":"Wioska katoryjcias","PlayerID":8541236,"Points":9408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51613","ServerKey":"pl181","X":726,"Y":524},{"Bonus":0,"Continent":"K25","ID":51614,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51614","ServerKey":"pl181","X":501,"Y":276},{"Bonus":0,"Continent":"K64","ID":51615,"Name":"EKG M11 sebastia","PlayerID":33900,"Points":10354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51615","ServerKey":"pl181","X":484,"Y":606},{"Bonus":0,"Continent":"K33","ID":51616,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":1264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51616","ServerKey":"pl181","X":327,"Y":359},{"Bonus":0,"Continent":"K25","ID":51617,"Name":"074 Wioska barbarzyƄska","PlayerID":699854484,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51617","ServerKey":"pl181","X":540,"Y":285},{"Bonus":0,"Continent":"K24","ID":51618,"Name":"#0250 colt9","PlayerID":1238300,"Points":6308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51618","ServerKey":"pl181","X":439,"Y":283},{"Bonus":0,"Continent":"K66","ID":51619,"Name":"Wioska barbarzyƄska","PlayerID":699699601,"Points":2980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51619","ServerKey":"pl181","X":625,"Y":684},{"Bonus":0,"Continent":"K33","ID":51620,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":4109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51620","ServerKey":"pl181","X":368,"Y":318},{"Bonus":0,"Continent":"K75","ID":51621,"Name":"0011 Wioska Kaczorek69","PlayerID":699656989,"Points":9816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51621","ServerKey":"pl181","X":501,"Y":722},{"Bonus":0,"Continent":"K42","ID":51622,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51622","ServerKey":"pl181","X":289,"Y":442},{"Bonus":0,"Continent":"K67","ID":51623,"Name":"xxx2","PlayerID":6921135,"Points":5334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51623","ServerKey":"pl181","X":701,"Y":601},{"Bonus":0,"Continent":"K24","ID":51624,"Name":"#0241 colt9","PlayerID":1238300,"Points":6256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51624","ServerKey":"pl181","X":437,"Y":286},{"Bonus":0,"Continent":"K63","ID":51625,"Name":"BOA5","PlayerID":699829494,"Points":2931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51625","ServerKey":"pl181","X":307,"Y":618},{"Bonus":0,"Continent":"K74","ID":51626,"Name":"024.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51626","ServerKey":"pl181","X":469,"Y":714},{"Bonus":0,"Continent":"K24","ID":51627,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51627","ServerKey":"pl181","X":430,"Y":289},{"Bonus":0,"Continent":"K25","ID":51629,"Name":"044 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51629","ServerKey":"pl181","X":540,"Y":282},{"Bonus":0,"Continent":"K42","ID":51630,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51630","ServerKey":"pl181","X":285,"Y":454},{"Bonus":0,"Continent":"K75","ID":51631,"Name":"-29-","PlayerID":849032414,"Points":3454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51631","ServerKey":"pl181","X":565,"Y":708},{"Bonus":0,"Continent":"K33","ID":51632,"Name":"Wiocha II","PlayerID":849106316,"Points":3028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51632","ServerKey":"pl181","X":335,"Y":350},{"Bonus":0,"Continent":"K36","ID":51633,"Name":"Wioska barbarzyƄska V","PlayerID":848958556,"Points":1877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51633","ServerKey":"pl181","X":627,"Y":320},{"Bonus":0,"Continent":"K63","ID":51634,"Name":"Wioska 3dychy","PlayerID":6821136,"Points":4727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51634","ServerKey":"pl181","X":380,"Y":682},{"Bonus":0,"Continent":"K75","ID":51635,"Name":"#K75 0029","PlayerID":699728159,"Points":4987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51635","ServerKey":"pl181","X":523,"Y":719},{"Bonus":0,"Continent":"K63","ID":51637,"Name":"005 E","PlayerID":699356968,"Points":4927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51637","ServerKey":"pl181","X":306,"Y":606},{"Bonus":0,"Continent":"K52","ID":51638,"Name":"U.008","PlayerID":849088243,"Points":6164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51638","ServerKey":"pl181","X":289,"Y":561},{"Bonus":0,"Continent":"K57","ID":51639,"Name":"085 rexanty1","PlayerID":2135129,"Points":4920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51639","ServerKey":"pl181","X":714,"Y":545},{"Bonus":0,"Continent":"K52","ID":51640,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":2204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51640","ServerKey":"pl181","X":293,"Y":580},{"Bonus":0,"Continent":"K43","ID":51641,"Name":"Wioska AlfaCentauri","PlayerID":849036055,"Points":30,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51641","ServerKey":"pl181","X":306,"Y":402},{"Bonus":0,"Continent":"K57","ID":51642,"Name":"Wioska15","PlayerID":699266530,"Points":5015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51642","ServerKey":"pl181","X":709,"Y":579},{"Bonus":0,"Continent":"K54","ID":51643,"Name":"2. Obj.268D","PlayerID":849087855,"Points":5494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51643","ServerKey":"pl181","X":496,"Y":535},{"Bonus":0,"Continent":"K42","ID":51644,"Name":"P3Kasik","PlayerID":699627771,"Points":2170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51644","ServerKey":"pl181","X":281,"Y":456},{"Bonus":0,"Continent":"K74","ID":51645,"Name":"0035","PlayerID":699684062,"Points":5251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51645","ServerKey":"pl181","X":491,"Y":719},{"Bonus":0,"Continent":"K57","ID":51646,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51646","ServerKey":"pl181","X":712,"Y":571},{"Bonus":0,"Continent":"K63","ID":51647,"Name":"133","PlayerID":849099876,"Points":7904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51647","ServerKey":"pl181","X":386,"Y":691},{"Bonus":0,"Continent":"K25","ID":51649,"Name":"--045--","PlayerID":542253,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51649","ServerKey":"pl181","X":576,"Y":298},{"Bonus":0,"Continent":"K52","ID":51650,"Name":"030. Gloria Victis","PlayerID":848886973,"Points":7228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51650","ServerKey":"pl181","X":288,"Y":572},{"Bonus":0,"Continent":"K36","ID":51651,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51651","ServerKey":"pl181","X":645,"Y":333},{"Bonus":0,"Continent":"K25","ID":51652,"Name":"Wioska - 006 -","PlayerID":848982634,"Points":1402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51652","ServerKey":"pl181","X":534,"Y":281},{"Bonus":0,"Continent":"K47","ID":51653,"Name":"Tabasko","PlayerID":699785935,"Points":6918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51653","ServerKey":"pl181","X":708,"Y":411},{"Bonus":5,"Continent":"K74","ID":51654,"Name":"010. Vaclav the Prague","PlayerID":848896948,"Points":10345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51654","ServerKey":"pl181","X":463,"Y":720},{"Bonus":0,"Continent":"K66","ID":51655,"Name":"MANUO 2","PlayerID":698353083,"Points":4446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51655","ServerKey":"pl181","X":617,"Y":693},{"Bonus":0,"Continent":"K47","ID":51656,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51656","ServerKey":"pl181","X":723,"Y":480},{"Bonus":0,"Continent":"K66","ID":51658,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51658","ServerKey":"pl181","X":673,"Y":637},{"Bonus":0,"Continent":"K75","ID":51659,"Name":"073 invidia","PlayerID":849093426,"Points":5855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51659","ServerKey":"pl181","X":548,"Y":715},{"Bonus":0,"Continent":"K74","ID":51660,"Name":"Kurnik","PlayerID":699603116,"Points":9553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51660","ServerKey":"pl181","X":448,"Y":720},{"Bonus":0,"Continent":"K46","ID":51661,"Name":"Tyko tyle","PlayerID":699785935,"Points":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51661","ServerKey":"pl181","X":693,"Y":404},{"Bonus":0,"Continent":"K36","ID":51662,"Name":"Flap","PlayerID":699098531,"Points":4209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51662","ServerKey":"pl181","X":607,"Y":301},{"Bonus":0,"Continent":"K25","ID":51663,"Name":"053 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51663","ServerKey":"pl181","X":550,"Y":283},{"Bonus":0,"Continent":"K75","ID":51665,"Name":"Wioska barbarzyƄska 010","PlayerID":6870350,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51665","ServerKey":"pl181","X":564,"Y":706},{"Bonus":0,"Continent":"K63","ID":51666,"Name":"003","PlayerID":699356968,"Points":4745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51666","ServerKey":"pl181","X":304,"Y":608},{"Bonus":0,"Continent":"K24","ID":51667,"Name":"#0239 colt9","PlayerID":1238300,"Points":6377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51667","ServerKey":"pl181","X":438,"Y":285},{"Bonus":0,"Continent":"K74","ID":51668,"Name":"FP040","PlayerID":699605333,"Points":5139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51668","ServerKey":"pl181","X":469,"Y":724},{"Bonus":0,"Continent":"K42","ID":51669,"Name":"003","PlayerID":8724192,"Points":6537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51669","ServerKey":"pl181","X":297,"Y":408},{"Bonus":0,"Continent":"K52","ID":51670,"Name":"C0353","PlayerID":8841266,"Points":2136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51670","ServerKey":"pl181","X":277,"Y":535},{"Bonus":0,"Continent":"K75","ID":51671,"Name":"UTAPAU","PlayerID":699383121,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51671","ServerKey":"pl181","X":540,"Y":723},{"Bonus":0,"Continent":"K24","ID":51673,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51673","ServerKey":"pl181","X":418,"Y":291},{"Bonus":0,"Continent":"K42","ID":51675,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51675","ServerKey":"pl181","X":291,"Y":441},{"Bonus":7,"Continent":"K57","ID":51676,"Name":"22. Brugge","PlayerID":8976313,"Points":7337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51676","ServerKey":"pl181","X":722,"Y":539},{"Bonus":0,"Continent":"K36","ID":51677,"Name":"Wincy94","PlayerID":849048734,"Points":8108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51677","ServerKey":"pl181","X":649,"Y":333},{"Bonus":0,"Continent":"K52","ID":51678,"Name":"Wioska BenyZSZ","PlayerID":699614027,"Points":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51678","ServerKey":"pl181","X":277,"Y":506},{"Bonus":0,"Continent":"K52","ID":51679,"Name":"New WorldA","PlayerID":849084005,"Points":4123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51679","ServerKey":"pl181","X":282,"Y":542},{"Bonus":0,"Continent":"K63","ID":51680,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":5196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51680","ServerKey":"pl181","X":311,"Y":612},{"Bonus":0,"Continent":"K64","ID":51681,"Name":"SPOCENI KUZYNI","PlayerID":848913998,"Points":2510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51681","ServerKey":"pl181","X":423,"Y":648},{"Bonus":0,"Continent":"K52","ID":51682,"Name":"Zzz 06 tu nic nie ma","PlayerID":849084740,"Points":6169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51682","ServerKey":"pl181","X":292,"Y":570},{"Bonus":0,"Continent":"K25","ID":51683,"Name":"North K25","PlayerID":699146580,"Points":5620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51683","ServerKey":"pl181","X":524,"Y":280},{"Bonus":0,"Continent":"K36","ID":51684,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51684","ServerKey":"pl181","X":624,"Y":313},{"Bonus":0,"Continent":"K42","ID":51685,"Name":"0026","PlayerID":2321390,"Points":2689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51685","ServerKey":"pl181","X":292,"Y":416},{"Bonus":0,"Continent":"K33","ID":51686,"Name":"Wioska barbarzyƄska","PlayerID":849101604,"Points":1937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51686","ServerKey":"pl181","X":347,"Y":338},{"Bonus":0,"Continent":"K66","ID":51687,"Name":"006 Autara","PlayerID":849102108,"Points":9051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51687","ServerKey":"pl181","X":671,"Y":645},{"Bonus":0,"Continent":"K36","ID":51688,"Name":"*001","PlayerID":7758085,"Points":10337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51688","ServerKey":"pl181","X":676,"Y":361},{"Bonus":0,"Continent":"K66","ID":51689,"Name":"#176#","PlayerID":692803,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51689","ServerKey":"pl181","X":644,"Y":615},{"Bonus":0,"Continent":"K74","ID":51690,"Name":"010 - Budowanko!","PlayerID":7540891,"Points":6975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51690","ServerKey":"pl181","X":490,"Y":725},{"Bonus":0,"Continent":"K25","ID":51691,"Name":"6.F","PlayerID":699146580,"Points":2749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51691","ServerKey":"pl181","X":531,"Y":277},{"Bonus":0,"Continent":"K63","ID":51692,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51692","ServerKey":"pl181","X":320,"Y":632},{"Bonus":0,"Continent":"K63","ID":51694,"Name":"Wioska 0012","PlayerID":9186126,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51694","ServerKey":"pl181","X":343,"Y":652},{"Bonus":0,"Continent":"K64","ID":51695,"Name":"EMERYTOWANY KUZYN","PlayerID":848913998,"Points":3120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51695","ServerKey":"pl181","X":433,"Y":644},{"Bonus":0,"Continent":"K64","ID":51696,"Name":"shizior 006","PlayerID":849089459,"Points":3242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51696","ServerKey":"pl181","X":424,"Y":639},{"Bonus":0,"Continent":"K25","ID":51697,"Name":"058 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51697","ServerKey":"pl181","X":553,"Y":284},{"Bonus":0,"Continent":"K63","ID":51698,"Name":"C056","PlayerID":699383279,"Points":7135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51698","ServerKey":"pl181","X":371,"Y":678},{"Bonus":0,"Continent":"K75","ID":51699,"Name":"#0077","PlayerID":1536231,"Points":5768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51699","ServerKey":"pl181","X":570,"Y":710},{"Bonus":0,"Continent":"K33","ID":51700,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51700","ServerKey":"pl181","X":395,"Y":304},{"Bonus":0,"Continent":"K33","ID":51701,"Name":"Motorola 08","PlayerID":698806018,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51701","ServerKey":"pl181","X":363,"Y":324},{"Bonus":0,"Continent":"K47","ID":51702,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51702","ServerKey":"pl181","X":726,"Y":490},{"Bonus":0,"Continent":"K43","ID":51703,"Name":"017","PlayerID":8724192,"Points":540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51703","ServerKey":"pl181","X":303,"Y":402},{"Bonus":0,"Continent":"K63","ID":51704,"Name":"055 Wioska barbarzyƄska","PlayerID":6354098,"Points":4296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51704","ServerKey":"pl181","X":347,"Y":665},{"Bonus":0,"Continent":"K66","ID":51706,"Name":"Klatka8","PlayerID":6528152,"Points":5639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51706","ServerKey":"pl181","X":627,"Y":678},{"Bonus":0,"Continent":"K24","ID":51707,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51707","ServerKey":"pl181","X":486,"Y":284},{"Bonus":0,"Continent":"K24","ID":51708,"Name":"#0151 barbarzyƄska","PlayerID":1238300,"Points":5246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51708","ServerKey":"pl181","X":480,"Y":278},{"Bonus":0,"Continent":"K56","ID":51709,"Name":"15. Lyria","PlayerID":8976313,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51709","ServerKey":"pl181","X":698,"Y":550},{"Bonus":4,"Continent":"K42","ID":51710,"Name":"EO EO","PlayerID":699697558,"Points":9154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51710","ServerKey":"pl181","X":277,"Y":492},{"Bonus":0,"Continent":"K66","ID":51711,"Name":"Wiadro04","PlayerID":8677963,"Points":9048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51711","ServerKey":"pl181","X":676,"Y":628},{"Bonus":0,"Continent":"K63","ID":51713,"Name":"001","PlayerID":698182935,"Points":7120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51713","ServerKey":"pl181","X":367,"Y":679},{"Bonus":0,"Continent":"K42","ID":51714,"Name":"Avanti!","PlayerID":698625834,"Points":6031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51714","ServerKey":"pl181","X":282,"Y":489},{"Bonus":0,"Continent":"K33","ID":51715,"Name":"A-008","PlayerID":699406247,"Points":3801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51715","ServerKey":"pl181","X":318,"Y":369},{"Bonus":0,"Continent":"K33","ID":51716,"Name":"Wioska Dominator2014","PlayerID":698160606,"Points":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51716","ServerKey":"pl181","X":380,"Y":310},{"Bonus":0,"Continent":"K66","ID":51717,"Name":"Parking9","PlayerID":6528152,"Points":4148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51717","ServerKey":"pl181","X":620,"Y":683},{"Bonus":0,"Continent":"K36","ID":51718,"Name":"FORTONI","PlayerID":3957237,"Points":10583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51718","ServerKey":"pl181","X":673,"Y":356},{"Bonus":0,"Continent":"K47","ID":51719,"Name":"wyjazd","PlayerID":698462285,"Points":3526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51719","ServerKey":"pl181","X":704,"Y":406},{"Bonus":0,"Continent":"K74","ID":51720,"Name":"Kurnik","PlayerID":699603116,"Points":6053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51720","ServerKey":"pl181","X":447,"Y":716},{"Bonus":0,"Continent":"K47","ID":51721,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":8137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51721","ServerKey":"pl181","X":712,"Y":456},{"Bonus":0,"Continent":"K52","ID":51723,"Name":"Zzz 05 niespƂacam dƂugĂłw","PlayerID":849084740,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51723","ServerKey":"pl181","X":293,"Y":569},{"Bonus":0,"Continent":"K25","ID":51724,"Name":"North 061","PlayerID":849064752,"Points":6146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51724","ServerKey":"pl181","X":512,"Y":277},{"Bonus":0,"Continent":"K25","ID":51725,"Name":"Wioska - 004 -","PlayerID":848982634,"Points":2611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51725","ServerKey":"pl181","X":536,"Y":281},{"Bonus":0,"Continent":"K65","ID":51726,"Name":"MƁODE ORƁY 003 zakręcona","PlayerID":33900,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51726","ServerKey":"pl181","X":576,"Y":605},{"Bonus":0,"Continent":"K75","ID":51727,"Name":"012","PlayerID":698996782,"Points":4019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51727","ServerKey":"pl181","X":526,"Y":715},{"Bonus":0,"Continent":"K36","ID":51729,"Name":"Wioska barbarzyƄska","PlayerID":8740199,"Points":8711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51729","ServerKey":"pl181","X":632,"Y":317},{"Bonus":0,"Continent":"K52","ID":51730,"Name":"Nowy ƛwiat A","PlayerID":849084005,"Points":522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51730","ServerKey":"pl181","X":281,"Y":516},{"Bonus":0,"Continent":"K33","ID":51731,"Name":"Nagato - B 001","PlayerID":849094586,"Points":3838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51731","ServerKey":"pl181","X":315,"Y":371},{"Bonus":0,"Continent":"K63","ID":51733,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51733","ServerKey":"pl181","X":329,"Y":641},{"Bonus":0,"Continent":"K33","ID":51734,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51734","ServerKey":"pl181","X":318,"Y":366},{"Bonus":0,"Continent":"K47","ID":51735,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":7490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51735","ServerKey":"pl181","X":713,"Y":445},{"Bonus":6,"Continent":"K25","ID":51736,"Name":"021 Osada koczownikĂłw","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51736","ServerKey":"pl181","X":548,"Y":285},{"Bonus":0,"Continent":"K63","ID":51737,"Name":"Taran","PlayerID":6180190,"Points":6500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51737","ServerKey":"pl181","X":313,"Y":610},{"Bonus":0,"Continent":"K57","ID":51738,"Name":"Mordownia 4","PlayerID":849101029,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51738","ServerKey":"pl181","X":706,"Y":594},{"Bonus":0,"Continent":"K75","ID":51739,"Name":"mjrbordo","PlayerID":6870350,"Points":5613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51739","ServerKey":"pl181","X":562,"Y":711},{"Bonus":0,"Continent":"K33","ID":51740,"Name":"Babidi #4","PlayerID":849101962,"Points":4698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51740","ServerKey":"pl181","X":375,"Y":319},{"Bonus":0,"Continent":"K42","ID":51741,"Name":"Wioska barbarzyƄska","PlayerID":8792844,"Points":3539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51741","ServerKey":"pl181","X":283,"Y":456},{"Bonus":0,"Continent":"K36","ID":51742,"Name":"- 1 -","PlayerID":8622901,"Points":1708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51742","ServerKey":"pl181","X":691,"Y":391},{"Bonus":0,"Continent":"K42","ID":51744,"Name":"Wioska MaƂa","PlayerID":960100,"Points":2125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51744","ServerKey":"pl181","X":277,"Y":481},{"Bonus":3,"Continent":"K63","ID":51745,"Name":"0103","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51745","ServerKey":"pl181","X":386,"Y":683},{"Bonus":0,"Continent":"K42","ID":51746,"Name":"[0297]","PlayerID":8630972,"Points":3819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51746","ServerKey":"pl181","X":277,"Y":493},{"Bonus":0,"Continent":"K24","ID":51747,"Name":"0076","PlayerID":848913037,"Points":6235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51747","ServerKey":"pl181","X":460,"Y":281},{"Bonus":0,"Continent":"K42","ID":51748,"Name":"Wioska karlitos MMz","PlayerID":849062546,"Points":4432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51748","ServerKey":"pl181","X":279,"Y":491},{"Bonus":0,"Continent":"K75","ID":51749,"Name":"#0053","PlayerID":698723158,"Points":8926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51749","ServerKey":"pl181","X":574,"Y":709},{"Bonus":0,"Continent":"K57","ID":51750,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":4129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51750","ServerKey":"pl181","X":722,"Y":512},{"Bonus":0,"Continent":"K42","ID":51751,"Name":"Avanti!","PlayerID":698625834,"Points":6463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51751","ServerKey":"pl181","X":279,"Y":478},{"Bonus":0,"Continent":"K63","ID":51752,"Name":"Barba","PlayerID":698908184,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51752","ServerKey":"pl181","X":322,"Y":635},{"Bonus":0,"Continent":"K56","ID":51754,"Name":"S022","PlayerID":8428196,"Points":4351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51754","ServerKey":"pl181","X":693,"Y":597},{"Bonus":0,"Continent":"K57","ID":51755,"Name":"A#019","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51755","ServerKey":"pl181","X":723,"Y":505},{"Bonus":0,"Continent":"K75","ID":51756,"Name":"fajnie tu jest","PlayerID":6116940,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51756","ServerKey":"pl181","X":526,"Y":717},{"Bonus":0,"Continent":"K25","ID":51757,"Name":"Wioska myrcin","PlayerID":849105071,"Points":8320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51757","ServerKey":"pl181","X":537,"Y":277},{"Bonus":0,"Continent":"K74","ID":51758,"Name":"New World","PlayerID":698152377,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51758","ServerKey":"pl181","X":420,"Y":707},{"Bonus":0,"Continent":"K63","ID":51759,"Name":"Wioska Kendal","PlayerID":849105072,"Points":7973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51759","ServerKey":"pl181","X":327,"Y":611},{"Bonus":0,"Continent":"K63","ID":51760,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51760","ServerKey":"pl181","X":307,"Y":604},{"Bonus":4,"Continent":"K74","ID":51761,"Name":"Kurnik","PlayerID":699603116,"Points":6983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51761","ServerKey":"pl181","X":444,"Y":714},{"Bonus":0,"Continent":"K66","ID":51762,"Name":"0016","PlayerID":6417987,"Points":2332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51762","ServerKey":"pl181","X":681,"Y":629},{"Bonus":0,"Continent":"K47","ID":51763,"Name":"078","PlayerID":2135129,"Points":3725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51763","ServerKey":"pl181","X":703,"Y":423},{"Bonus":0,"Continent":"K33","ID":51764,"Name":"WoleƄcy","PlayerID":849027025,"Points":9537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51764","ServerKey":"pl181","X":370,"Y":323},{"Bonus":0,"Continent":"K24","ID":51765,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":6261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51765","ServerKey":"pl181","X":477,"Y":284},{"Bonus":0,"Continent":"K36","ID":51766,"Name":"0109","PlayerID":698416970,"Points":2087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51766","ServerKey":"pl181","X":693,"Y":385},{"Bonus":0,"Continent":"K33","ID":51767,"Name":"Orgetoryks","PlayerID":848998530,"Points":4786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51767","ServerKey":"pl181","X":330,"Y":356},{"Bonus":0,"Continent":"K75","ID":51768,"Name":"-25-","PlayerID":849032414,"Points":4057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51768","ServerKey":"pl181","X":569,"Y":706},{"Bonus":0,"Continent":"K66","ID":51769,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51769","ServerKey":"pl181","X":655,"Y":657},{"Bonus":0,"Continent":"K66","ID":51770,"Name":"005 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51770","ServerKey":"pl181","X":622,"Y":689},{"Bonus":0,"Continent":"K25","ID":51771,"Name":"062 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51771","ServerKey":"pl181","X":541,"Y":278},{"Bonus":0,"Continent":"K24","ID":51772,"Name":"#0168 darmuwa","PlayerID":1238300,"Points":6253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51772","ServerKey":"pl181","X":470,"Y":281},{"Bonus":0,"Continent":"K57","ID":51773,"Name":"35. Hannu","PlayerID":8976313,"Points":6224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51773","ServerKey":"pl181","X":722,"Y":543},{"Bonus":0,"Continent":"K36","ID":51774,"Name":"POCZĄTEK","PlayerID":8622901,"Points":8905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51774","ServerKey":"pl181","X":692,"Y":390},{"Bonus":0,"Continent":"K52","ID":51775,"Name":"006","PlayerID":698663855,"Points":5344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51775","ServerKey":"pl181","X":291,"Y":583},{"Bonus":0,"Continent":"K74","ID":51776,"Name":"040 - Budowanko!","PlayerID":7540891,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51776","ServerKey":"pl181","X":470,"Y":723},{"Bonus":0,"Continent":"K63","ID":51777,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51777","ServerKey":"pl181","X":329,"Y":640},{"Bonus":0,"Continent":"K57","ID":51779,"Name":"022. Eagle Cap","PlayerID":1601917,"Points":10342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51779","ServerKey":"pl181","X":712,"Y":554},{"Bonus":0,"Continent":"K52","ID":51780,"Name":"Wioska barbarzyƄska III","PlayerID":849047233,"Points":2665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51780","ServerKey":"pl181","X":277,"Y":529},{"Bonus":0,"Continent":"K53","ID":51781,"Name":"Uaaaa","PlayerID":848901396,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51781","ServerKey":"pl181","X":310,"Y":555},{"Bonus":0,"Continent":"K66","ID":51782,"Name":"X-Doom0","PlayerID":8607734,"Points":6823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51782","ServerKey":"pl181","X":623,"Y":682},{"Bonus":0,"Continent":"K66","ID":51783,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51783","ServerKey":"pl181","X":651,"Y":659},{"Bonus":0,"Continent":"K36","ID":51784,"Name":"Wioska Lepsi5","PlayerID":7440474,"Points":3045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51784","ServerKey":"pl181","X":654,"Y":349},{"Bonus":0,"Continent":"K47","ID":51785,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":5213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51785","ServerKey":"pl181","X":723,"Y":465},{"Bonus":0,"Continent":"K57","ID":51786,"Name":"Wioska14.","PlayerID":699266530,"Points":5546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51786","ServerKey":"pl181","X":708,"Y":579},{"Bonus":0,"Continent":"K42","ID":51787,"Name":"Flen","PlayerID":7259690,"Points":3334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51787","ServerKey":"pl181","X":295,"Y":403},{"Bonus":0,"Continent":"K66","ID":51788,"Name":"PoƂudniowy WschĂłd 004","PlayerID":699778867,"Points":2601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51788","ServerKey":"pl181","X":696,"Y":612},{"Bonus":0,"Continent":"K63","ID":51789,"Name":"Wioska 0025","PlayerID":9186126,"Points":1195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51789","ServerKey":"pl181","X":341,"Y":650},{"Bonus":0,"Continent":"K33","ID":51790,"Name":"Wioska barbarzyƄska","PlayerID":699794765,"Points":1583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51790","ServerKey":"pl181","X":314,"Y":386},{"Bonus":5,"Continent":"K33","ID":51791,"Name":"WIOSKA 01","PlayerID":698757439,"Points":7692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51791","ServerKey":"pl181","X":340,"Y":345},{"Bonus":0,"Continent":"K63","ID":51792,"Name":"C034","PlayerID":699383279,"Points":8235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51792","ServerKey":"pl181","X":372,"Y":675},{"Bonus":0,"Continent":"K57","ID":51793,"Name":"031 Legio XI Securis","PlayerID":699878150,"Points":7532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51793","ServerKey":"pl181","X":714,"Y":572},{"Bonus":0,"Continent":"K66","ID":51794,"Name":"nowa 1","PlayerID":699372829,"Points":2142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51794","ServerKey":"pl181","X":626,"Y":686},{"Bonus":0,"Continent":"K42","ID":51795,"Name":"barbarzyƄska","PlayerID":8792844,"Points":1600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51795","ServerKey":"pl181","X":281,"Y":455},{"Bonus":0,"Continent":"K33","ID":51796,"Name":"024. Fettuccine Alfredo.","PlayerID":849102092,"Points":6566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51796","ServerKey":"pl181","X":316,"Y":379},{"Bonus":0,"Continent":"K25","ID":51797,"Name":"087 jagger23","PlayerID":699854484,"Points":10661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51797","ServerKey":"pl181","X":544,"Y":278},{"Bonus":0,"Continent":"K54","ID":51798,"Name":"KIELBA 117","PlayerID":699342219,"Points":5962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51798","ServerKey":"pl181","X":464,"Y":583},{"Bonus":0,"Continent":"K42","ID":51799,"Name":"010","PlayerID":6131106,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51799","ServerKey":"pl181","X":293,"Y":425},{"Bonus":0,"Continent":"K63","ID":51800,"Name":"Psycha Siada","PlayerID":8099868,"Points":7401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51800","ServerKey":"pl181","X":331,"Y":650},{"Bonus":0,"Continent":"K36","ID":51801,"Name":"HWILA [5]","PlayerID":849006385,"Points":2550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51801","ServerKey":"pl181","X":632,"Y":318},{"Bonus":0,"Continent":"K36","ID":51802,"Name":"Wioska damiano3106","PlayerID":849006385,"Points":3506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51802","ServerKey":"pl181","X":630,"Y":317},{"Bonus":0,"Continent":"K75","ID":51803,"Name":"Wioska biosiekiery","PlayerID":698934729,"Points":3793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51803","ServerKey":"pl181","X":513,"Y":724},{"Bonus":0,"Continent":"K36","ID":51804,"Name":"W51","PlayerID":699524362,"Points":1978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51804","ServerKey":"pl181","X":693,"Y":396},{"Bonus":0,"Continent":"K52","ID":51805,"Name":"[0260]","PlayerID":8630972,"Points":5702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51805","ServerKey":"pl181","X":280,"Y":511},{"Bonus":0,"Continent":"K36","ID":51806,"Name":"*020","PlayerID":7758085,"Points":4974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51806","ServerKey":"pl181","X":676,"Y":370},{"Bonus":0,"Continent":"K74","ID":51807,"Name":"025.","PlayerID":849034882,"Points":9940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51807","ServerKey":"pl181","X":472,"Y":722},{"Bonus":0,"Continent":"K25","ID":51809,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":1507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51809","ServerKey":"pl181","X":556,"Y":288},{"Bonus":0,"Continent":"K66","ID":51810,"Name":"Nowa Baza 10","PlayerID":698353083,"Points":7148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51810","ServerKey":"pl181","X":616,"Y":693},{"Bonus":0,"Continent":"K65","ID":51811,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51811","ServerKey":"pl181","X":534,"Y":628},{"Bonus":0,"Continent":"K42","ID":51812,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51812","ServerKey":"pl181","X":279,"Y":483},{"Bonus":0,"Continent":"K63","ID":51813,"Name":"#005 New York","PlayerID":849101276,"Points":3944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51813","ServerKey":"pl181","X":316,"Y":627},{"Bonus":0,"Continent":"K63","ID":51814,"Name":"Psycha Siada","PlayerID":8099868,"Points":8339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51814","ServerKey":"pl181","X":335,"Y":643},{"Bonus":0,"Continent":"K36","ID":51815,"Name":"#4 Wioska barbarzyƄska","PlayerID":849099517,"Points":7145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51815","ServerKey":"pl181","X":632,"Y":319},{"Bonus":0,"Continent":"K52","ID":51816,"Name":"New WorldA","PlayerID":849084005,"Points":2376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51816","ServerKey":"pl181","X":277,"Y":519},{"Bonus":8,"Continent":"K36","ID":51817,"Name":"019. tƂuszczyk","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51817","ServerKey":"pl181","X":694,"Y":383},{"Bonus":0,"Continent":"K52","ID":51818,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":2967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51818","ServerKey":"pl181","X":283,"Y":527},{"Bonus":0,"Continent":"K47","ID":51819,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":3893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51819","ServerKey":"pl181","X":718,"Y":452},{"Bonus":0,"Continent":"K63","ID":51820,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51820","ServerKey":"pl181","X":374,"Y":688},{"Bonus":0,"Continent":"K75","ID":51821,"Name":"072 invidia","PlayerID":849093426,"Points":5832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51821","ServerKey":"pl181","X":541,"Y":717},{"Bonus":0,"Continent":"K63","ID":51822,"Name":"C119","PlayerID":699383279,"Points":8781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51822","ServerKey":"pl181","X":356,"Y":671},{"Bonus":0,"Continent":"K63","ID":51824,"Name":"009","PlayerID":699356968,"Points":4428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51824","ServerKey":"pl181","X":301,"Y":607},{"Bonus":0,"Continent":"K53","ID":51825,"Name":"35. Na rowerek","PlayerID":8665783,"Points":1612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51825","ServerKey":"pl181","X":370,"Y":571},{"Bonus":0,"Continent":"K66","ID":51826,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":3414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51826","ServerKey":"pl181","X":660,"Y":656},{"Bonus":0,"Continent":"K25","ID":51827,"Name":"North 039","PlayerID":849064752,"Points":8239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51827","ServerKey":"pl181","X":513,"Y":284},{"Bonus":0,"Continent":"K25","ID":51828,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51828","ServerKey":"pl181","X":590,"Y":298},{"Bonus":0,"Continent":"K66","ID":51829,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51829","ServerKey":"pl181","X":659,"Y":656},{"Bonus":0,"Continent":"K36","ID":51830,"Name":"SOKzGUMIjagĂłd","PlayerID":849059491,"Points":9859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51830","ServerKey":"pl181","X":638,"Y":366},{"Bonus":0,"Continent":"K74","ID":51831,"Name":"P|005|","PlayerID":699393742,"Points":4698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51831","ServerKey":"pl181","X":457,"Y":713},{"Bonus":0,"Continent":"K63","ID":51832,"Name":"Wioska Pracz 5","PlayerID":8916982,"Points":5765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51832","ServerKey":"pl181","X":311,"Y":625},{"Bonus":0,"Continent":"K63","ID":51833,"Name":"Chojnik","PlayerID":698167138,"Points":2354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51833","ServerKey":"pl181","X":303,"Y":600},{"Bonus":0,"Continent":"K46","ID":51834,"Name":"Wioska barbarzyƄska","PlayerID":699272633,"Points":1591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51834","ServerKey":"pl181","X":684,"Y":454},{"Bonus":0,"Continent":"K75","ID":51835,"Name":"ZZZ .::. cinek3456/07","PlayerID":33900,"Points":9971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51835","ServerKey":"pl181","X":585,"Y":705},{"Bonus":0,"Continent":"K63","ID":51836,"Name":"002","PlayerID":698182935,"Points":3123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51836","ServerKey":"pl181","X":365,"Y":682},{"Bonus":0,"Continent":"K75","ID":51837,"Name":"MERHET","PlayerID":698215322,"Points":9951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51837","ServerKey":"pl181","X":586,"Y":704},{"Bonus":0,"Continent":"K25","ID":51839,"Name":".achim.","PlayerID":6936607,"Points":6480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51839","ServerKey":"pl181","X":567,"Y":289},{"Bonus":0,"Continent":"K63","ID":51841,"Name":"Psycha Siada","PlayerID":8099868,"Points":7951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51841","ServerKey":"pl181","X":342,"Y":648},{"Bonus":0,"Continent":"K33","ID":51842,"Name":"NP 07","PlayerID":849076810,"Points":2237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51842","ServerKey":"pl181","X":306,"Y":393},{"Bonus":0,"Continent":"K33","ID":51843,"Name":"Wioska19","PlayerID":699711926,"Points":5188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51843","ServerKey":"pl181","X":334,"Y":347},{"Bonus":0,"Continent":"K42","ID":51844,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51844","ServerKey":"pl181","X":287,"Y":458},{"Bonus":0,"Continent":"K42","ID":51845,"Name":"08 barbarzyƄska0","PlayerID":849018442,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51845","ServerKey":"pl181","X":283,"Y":446},{"Bonus":8,"Continent":"K33","ID":51847,"Name":"004. Funghi","PlayerID":849102092,"Points":8620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51847","ServerKey":"pl181","X":318,"Y":373},{"Bonus":0,"Continent":"K57","ID":51848,"Name":"027 Legio X Augusta","PlayerID":699878150,"Points":7361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51848","ServerKey":"pl181","X":710,"Y":570},{"Bonus":0,"Continent":"K66","ID":51849,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51849","ServerKey":"pl181","X":660,"Y":654},{"Bonus":0,"Continent":"K63","ID":51850,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51850","ServerKey":"pl181","X":390,"Y":695},{"Bonus":0,"Continent":"K25","ID":51851,"Name":"Aksjo 2","PlayerID":849099696,"Points":2019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51851","ServerKey":"pl181","X":559,"Y":290},{"Bonus":0,"Continent":"K63","ID":51852,"Name":"0165","PlayerID":7085510,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51852","ServerKey":"pl181","X":385,"Y":679},{"Bonus":0,"Continent":"K42","ID":51853,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51853","ServerKey":"pl181","X":284,"Y":440},{"Bonus":0,"Continent":"K33","ID":51855,"Name":"Wioska16","PlayerID":699711926,"Points":8414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51855","ServerKey":"pl181","X":333,"Y":346},{"Bonus":0,"Continent":"K75","ID":51857,"Name":"#0087","PlayerID":1536231,"Points":5770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51857","ServerKey":"pl181","X":578,"Y":712},{"Bonus":0,"Continent":"K33","ID":51858,"Name":"Szlachcic","PlayerID":698388578,"Points":5733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51858","ServerKey":"pl181","X":355,"Y":334},{"Bonus":0,"Continent":"K66","ID":51859,"Name":"006 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51859","ServerKey":"pl181","X":621,"Y":689},{"Bonus":0,"Continent":"K25","ID":51860,"Name":"Wioska Gigako","PlayerID":849054951,"Points":8596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51860","ServerKey":"pl181","X":557,"Y":288},{"Bonus":0,"Continent":"K66","ID":51861,"Name":"#116#","PlayerID":692803,"Points":6079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51861","ServerKey":"pl181","X":643,"Y":673},{"Bonus":0,"Continent":"K75","ID":51862,"Name":"007","PlayerID":698996782,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51862","ServerKey":"pl181","X":533,"Y":724},{"Bonus":0,"Continent":"K24","ID":51863,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":3207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51863","ServerKey":"pl181","X":462,"Y":281},{"Bonus":0,"Continent":"K52","ID":51864,"Name":"40. Wioska 40","PlayerID":849091769,"Points":7630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51864","ServerKey":"pl181","X":288,"Y":566},{"Bonus":0,"Continent":"K42","ID":51865,"Name":"Avanti!","PlayerID":698625834,"Points":7010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51865","ServerKey":"pl181","X":284,"Y":489},{"Bonus":0,"Continent":"K66","ID":51866,"Name":"~~082~~","PlayerID":7829201,"Points":2772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51866","ServerKey":"pl181","X":682,"Y":635},{"Bonus":0,"Continent":"K52","ID":51867,"Name":"[0261]","PlayerID":8630972,"Points":5985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51867","ServerKey":"pl181","X":281,"Y":512},{"Bonus":0,"Continent":"K47","ID":51868,"Name":"073. Pola","PlayerID":849091866,"Points":4725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51868","ServerKey":"pl181","X":714,"Y":456},{"Bonus":0,"Continent":"K56","ID":51869,"Name":"CastAway #011","PlayerID":9314079,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51869","ServerKey":"pl181","X":699,"Y":588},{"Bonus":0,"Continent":"K74","ID":51870,"Name":"Kurnik","PlayerID":699603116,"Points":9054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51870","ServerKey":"pl181","X":462,"Y":719},{"Bonus":0,"Continent":"K33","ID":51871,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":3857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51871","ServerKey":"pl181","X":376,"Y":345},{"Bonus":0,"Continent":"K33","ID":51872,"Name":"006 JJ","PlayerID":9120206,"Points":7394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51872","ServerKey":"pl181","X":324,"Y":363},{"Bonus":0,"Continent":"K25","ID":51873,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51873","ServerKey":"pl181","X":500,"Y":274},{"Bonus":0,"Continent":"K24","ID":51874,"Name":"DzieƄ dobry wieczĂłr","PlayerID":699756210,"Points":9041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51874","ServerKey":"pl181","X":471,"Y":283},{"Bonus":0,"Continent":"K57","ID":51875,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":8127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51875","ServerKey":"pl181","X":708,"Y":574},{"Bonus":0,"Continent":"K33","ID":51876,"Name":"013 JJ","PlayerID":9120206,"Points":1799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51876","ServerKey":"pl181","X":329,"Y":363},{"Bonus":0,"Continent":"K42","ID":51877,"Name":".1.","PlayerID":762975,"Points":4866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51877","ServerKey":"pl181","X":297,"Y":402},{"Bonus":0,"Continent":"K74","ID":51878,"Name":"[B]002","PlayerID":9195661,"Points":9115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51878","ServerKey":"pl181","X":417,"Y":703},{"Bonus":0,"Continent":"K64","ID":51879,"Name":"Ave Why!","PlayerID":699121671,"Points":905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51879","ServerKey":"pl181","X":466,"Y":650},{"Bonus":0,"Continent":"K47","ID":51880,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":8283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51880","ServerKey":"pl181","X":712,"Y":452},{"Bonus":0,"Continent":"K33","ID":51881,"Name":"Wioska barbarzyƄska 012","PlayerID":849068662,"Points":7847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51881","ServerKey":"pl181","X":378,"Y":314},{"Bonus":0,"Continent":"K36","ID":51882,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":4958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51882","ServerKey":"pl181","X":620,"Y":309},{"Bonus":0,"Continent":"K75","ID":51883,"Name":"C018","PlayerID":698599365,"Points":6293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51883","ServerKey":"pl181","X":546,"Y":711},{"Bonus":0,"Continent":"K52","ID":51884,"Name":"...::181 04::...","PlayerID":699641777,"Points":4613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51884","ServerKey":"pl181","X":276,"Y":514},{"Bonus":0,"Continent":"K63","ID":51885,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51885","ServerKey":"pl181","X":302,"Y":604},{"Bonus":0,"Continent":"K33","ID":51886,"Name":"307","PlayerID":7271812,"Points":1749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51886","ServerKey":"pl181","X":392,"Y":313},{"Bonus":0,"Continent":"K52","ID":51887,"Name":"New WorldA","PlayerID":849084005,"Points":4457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51887","ServerKey":"pl181","X":281,"Y":519},{"Bonus":0,"Continent":"K24","ID":51888,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51888","ServerKey":"pl181","X":409,"Y":295},{"Bonus":0,"Continent":"K43","ID":51889,"Name":"Wioska Bochun10","PlayerID":7449254,"Points":6878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51889","ServerKey":"pl181","X":322,"Y":494},{"Bonus":0,"Continent":"K75","ID":51890,"Name":"058 invidia","PlayerID":849093426,"Points":7195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51890","ServerKey":"pl181","X":543,"Y":715},{"Bonus":0,"Continent":"K53","ID":51891,"Name":"Wioska barbarzyƄska","PlayerID":849098688,"Points":1184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51891","ServerKey":"pl181","X":306,"Y":566},{"Bonus":0,"Continent":"K65","ID":51892,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":4083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51892","ServerKey":"pl181","X":593,"Y":699},{"Bonus":0,"Continent":"K63","ID":51893,"Name":"Kastet","PlayerID":2725721,"Points":3451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51893","ServerKey":"pl181","X":347,"Y":661},{"Bonus":0,"Continent":"K62","ID":51894,"Name":"Nowa 02","PlayerID":699321518,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51894","ServerKey":"pl181","X":298,"Y":600},{"Bonus":0,"Continent":"K33","ID":51895,"Name":"Mniejsze zƂo 0096","PlayerID":699794765,"Points":4721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51895","ServerKey":"pl181","X":310,"Y":381},{"Bonus":0,"Continent":"K24","ID":51897,"Name":".achim.","PlayerID":6936607,"Points":5933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51897","ServerKey":"pl181","X":487,"Y":282},{"Bonus":0,"Continent":"K24","ID":51898,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51898","ServerKey":"pl181","X":424,"Y":289},{"Bonus":0,"Continent":"K24","ID":51900,"Name":"301","PlayerID":7271812,"Points":6225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51900","ServerKey":"pl181","X":446,"Y":290},{"Bonus":0,"Continent":"K52","ID":51901,"Name":"004","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51901","ServerKey":"pl181","X":293,"Y":590},{"Bonus":0,"Continent":"K52","ID":51902,"Name":"004 Wioska C","PlayerID":6240801,"Points":4524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51902","ServerKey":"pl181","X":284,"Y":563},{"Bonus":0,"Continent":"K63","ID":51904,"Name":"Wioska z Pracza 9","PlayerID":8916982,"Points":1987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51904","ServerKey":"pl181","X":314,"Y":622},{"Bonus":0,"Continent":"K47","ID":51905,"Name":"friendship","PlayerID":699785935,"Points":5840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51905","ServerKey":"pl181","X":703,"Y":411},{"Bonus":0,"Continent":"K24","ID":51906,"Name":"WrocƂaw","PlayerID":3411571,"Points":4887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51906","ServerKey":"pl181","X":407,"Y":295},{"Bonus":0,"Continent":"K63","ID":51907,"Name":"074","PlayerID":849099876,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51907","ServerKey":"pl181","X":397,"Y":691},{"Bonus":0,"Continent":"K52","ID":51908,"Name":"EO EO","PlayerID":699697558,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51908","ServerKey":"pl181","X":284,"Y":503},{"Bonus":0,"Continent":"K47","ID":51909,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51909","ServerKey":"pl181","X":717,"Y":452},{"Bonus":0,"Continent":"K24","ID":51910,"Name":"Batalion","PlayerID":947923,"Points":4562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51910","ServerKey":"pl181","X":437,"Y":291},{"Bonus":0,"Continent":"K24","ID":51911,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":5157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51911","ServerKey":"pl181","X":458,"Y":277},{"Bonus":0,"Continent":"K42","ID":51912,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51912","ServerKey":"pl181","X":283,"Y":439},{"Bonus":0,"Continent":"K24","ID":51913,"Name":"BIMBER 1","PlayerID":6857973,"Points":5065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51913","ServerKey":"pl181","X":450,"Y":285},{"Bonus":0,"Continent":"K42","ID":51914,"Name":"Wioska SirCzoper","PlayerID":698162357,"Points":1974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51914","ServerKey":"pl181","X":278,"Y":488},{"Bonus":0,"Continent":"K25","ID":51915,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51915","ServerKey":"pl181","X":586,"Y":294},{"Bonus":0,"Continent":"K24","ID":51916,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51916","ServerKey":"pl181","X":409,"Y":296},{"Bonus":0,"Continent":"K47","ID":51917,"Name":"040 Twinleaf Town","PlayerID":699441366,"Points":2580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51917","ServerKey":"pl181","X":724,"Y":496},{"Bonus":0,"Continent":"K52","ID":51918,"Name":"EO EO","PlayerID":699697558,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51918","ServerKey":"pl181","X":275,"Y":501},{"Bonus":0,"Continent":"K42","ID":51919,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51919","ServerKey":"pl181","X":292,"Y":429},{"Bonus":0,"Continent":"K52","ID":51920,"Name":"New WorldA","PlayerID":849084005,"Points":3321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51920","ServerKey":"pl181","X":281,"Y":532},{"Bonus":0,"Continent":"K66","ID":51921,"Name":"Manuo3","PlayerID":698353083,"Points":4197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51921","ServerKey":"pl181","X":619,"Y":689},{"Bonus":0,"Continent":"K25","ID":51922,"Name":"D025","PlayerID":699299123,"Points":8649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51922","ServerKey":"pl181","X":565,"Y":283},{"Bonus":0,"Continent":"K33","ID":51923,"Name":"-10. WygwizdĂłw","PlayerID":698345556,"Points":5645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51923","ServerKey":"pl181","X":379,"Y":310},{"Bonus":0,"Continent":"K63","ID":51924,"Name":"009 | North","PlayerID":699511295,"Points":7478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51924","ServerKey":"pl181","X":372,"Y":687},{"Bonus":0,"Continent":"K36","ID":51925,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51925","ServerKey":"pl181","X":653,"Y":339},{"Bonus":0,"Continent":"K33","ID":51926,"Name":"Wioska barbarzyƄska","PlayerID":849084066,"Points":2671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51926","ServerKey":"pl181","X":387,"Y":314},{"Bonus":0,"Continent":"K36","ID":51927,"Name":"Wioska bogdan0811","PlayerID":699323781,"Points":4593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51927","ServerKey":"pl181","X":602,"Y":303},{"Bonus":0,"Continent":"K57","ID":51928,"Name":"077","PlayerID":7085502,"Points":4898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51928","ServerKey":"pl181","X":718,"Y":510},{"Bonus":0,"Continent":"K24","ID":51929,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51929","ServerKey":"pl181","X":428,"Y":286},{"Bonus":0,"Continent":"K75","ID":51930,"Name":"002","PlayerID":849097370,"Points":4847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51930","ServerKey":"pl181","X":592,"Y":703},{"Bonus":0,"Continent":"K43","ID":51931,"Name":"WB16","PlayerID":356642,"Points":4567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51931","ServerKey":"pl181","X":305,"Y":401},{"Bonus":0,"Continent":"K57","ID":51932,"Name":"Wioska [4]","PlayerID":699858313,"Points":833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51932","ServerKey":"pl181","X":724,"Y":512},{"Bonus":0,"Continent":"K65","ID":51933,"Name":"Horyzont zdarzeƄ","PlayerID":7581876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51933","ServerKey":"pl181","X":542,"Y":603},{"Bonus":0,"Continent":"K25","ID":51934,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51934","ServerKey":"pl181","X":594,"Y":296},{"Bonus":0,"Continent":"K63","ID":51935,"Name":"GuaGua","PlayerID":7085510,"Points":6332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51935","ServerKey":"pl181","X":372,"Y":681},{"Bonus":0,"Continent":"K36","ID":51936,"Name":"XDX","PlayerID":699098531,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51936","ServerKey":"pl181","X":616,"Y":308},{"Bonus":0,"Continent":"K52","ID":51937,"Name":"BierutĂłw","PlayerID":849101092,"Points":7072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51937","ServerKey":"pl181","X":294,"Y":572},{"Bonus":0,"Continent":"K63","ID":51938,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":4043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51938","ServerKey":"pl181","X":377,"Y":684},{"Bonus":0,"Continent":"K33","ID":51939,"Name":"0028","PlayerID":2321390,"Points":1555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51939","ServerKey":"pl181","X":310,"Y":377},{"Bonus":0,"Continent":"K52","ID":51940,"Name":"026. Gloria Victis","PlayerID":848886973,"Points":7039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51940","ServerKey":"pl181","X":280,"Y":558},{"Bonus":0,"Continent":"K46","ID":51941,"Name":"27. Morfeusz 4x","PlayerID":699804790,"Points":7270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51941","ServerKey":"pl181","X":691,"Y":482},{"Bonus":9,"Continent":"K42","ID":51942,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51942","ServerKey":"pl181","X":287,"Y":456},{"Bonus":0,"Continent":"K33","ID":51943,"Name":"*034*","PlayerID":699273451,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51943","ServerKey":"pl181","X":359,"Y":388},{"Bonus":0,"Continent":"K57","ID":51944,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":4147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51944","ServerKey":"pl181","X":724,"Y":534},{"Bonus":7,"Continent":"K36","ID":51945,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51945","ServerKey":"pl181","X":653,"Y":332},{"Bonus":0,"Continent":"K57","ID":51946,"Name":"068. Newtona","PlayerID":1601917,"Points":4615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51946","ServerKey":"pl181","X":719,"Y":531},{"Bonus":0,"Continent":"K53","ID":51947,"Name":"Lipien","PlayerID":699265922,"Points":4578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51947","ServerKey":"pl181","X":326,"Y":545},{"Bonus":0,"Continent":"K63","ID":51948,"Name":"Psycha Siada","PlayerID":8099868,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51948","ServerKey":"pl181","X":337,"Y":643},{"Bonus":0,"Continent":"K57","ID":51949,"Name":"Z.02","PlayerID":699737356,"Points":4157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51949","ServerKey":"pl181","X":708,"Y":584},{"Bonus":0,"Continent":"K25","ID":51950,"Name":"066 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51950","ServerKey":"pl181","X":541,"Y":277},{"Bonus":0,"Continent":"K47","ID":51951,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":3266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51951","ServerKey":"pl181","X":708,"Y":422},{"Bonus":0,"Continent":"K25","ID":51952,"Name":"050 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51952","ServerKey":"pl181","X":549,"Y":286},{"Bonus":0,"Continent":"K52","ID":51953,"Name":"...::181 01::...bomb.najazd","PlayerID":699641777,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51953","ServerKey":"pl181","X":275,"Y":513},{"Bonus":0,"Continent":"K42","ID":51954,"Name":"KUKA VI","PlayerID":6127190,"Points":1401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51954","ServerKey":"pl181","X":287,"Y":427},{"Bonus":0,"Continent":"K63","ID":51955,"Name":"Wioska 0004","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51955","ServerKey":"pl181","X":344,"Y":653},{"Bonus":0,"Continent":"K33","ID":51956,"Name":"011 JJ","PlayerID":9120206,"Points":2757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51956","ServerKey":"pl181","X":329,"Y":366},{"Bonus":0,"Continent":"K74","ID":51957,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51957","ServerKey":"pl181","X":409,"Y":705},{"Bonus":0,"Continent":"K57","ID":51958,"Name":"Gryfios 097","PlayerID":698666810,"Points":11285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51958","ServerKey":"pl181","X":719,"Y":553},{"Bonus":0,"Continent":"K42","ID":51959,"Name":"Buzka9395","PlayerID":699728266,"Points":8286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51959","ServerKey":"pl181","X":296,"Y":420},{"Bonus":0,"Continent":"K75","ID":51960,"Name":"###147###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51960","ServerKey":"pl181","X":591,"Y":700},{"Bonus":0,"Continent":"K53","ID":51961,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":3047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51961","ServerKey":"pl181","X":302,"Y":594},{"Bonus":0,"Continent":"K47","ID":51962,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":4797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51962","ServerKey":"pl181","X":726,"Y":494},{"Bonus":0,"Continent":"K25","ID":51963,"Name":"#039","PlayerID":849064614,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51963","ServerKey":"pl181","X":554,"Y":290},{"Bonus":0,"Continent":"K33","ID":51964,"Name":"Wioska barbarzyƄska","PlayerID":1267913,"Points":2011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51964","ServerKey":"pl181","X":309,"Y":381},{"Bonus":0,"Continent":"K33","ID":51965,"Name":"Wioska barbarzyƄska","PlayerID":1267913,"Points":2303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51965","ServerKey":"pl181","X":308,"Y":380},{"Bonus":0,"Continent":"K47","ID":51966,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":4871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51966","ServerKey":"pl181","X":713,"Y":447},{"Bonus":0,"Continent":"K24","ID":51967,"Name":"004","PlayerID":9283775,"Points":4196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51967","ServerKey":"pl181","X":403,"Y":298},{"Bonus":0,"Continent":"K53","ID":51968,"Name":"Wioska barbarzyƄska","PlayerID":849030226,"Points":9810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51968","ServerKey":"pl181","X":382,"Y":522},{"Bonus":0,"Continent":"K66","ID":51969,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":7535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51969","ServerKey":"pl181","X":685,"Y":628},{"Bonus":0,"Continent":"K52","ID":51970,"Name":"008 Wioska G","PlayerID":6240801,"Points":2927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51970","ServerKey":"pl181","X":287,"Y":565},{"Bonus":0,"Continent":"K52","ID":51971,"Name":"Wiosk","PlayerID":699805379,"Points":1188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51971","ServerKey":"pl181","X":283,"Y":532},{"Bonus":0,"Continent":"K36","ID":51972,"Name":"MJ16","PlayerID":8669398,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51972","ServerKey":"pl181","X":687,"Y":378},{"Bonus":0,"Continent":"K42","ID":51973,"Name":"000","PlayerID":6131106,"Points":6053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51973","ServerKey":"pl181","X":286,"Y":443},{"Bonus":0,"Continent":"K74","ID":51974,"Name":"Taka.","PlayerID":848999671,"Points":6187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51974","ServerKey":"pl181","X":484,"Y":720},{"Bonus":0,"Continent":"K66","ID":51975,"Name":"*023**","PlayerID":1205898,"Points":6665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51975","ServerKey":"pl181","X":686,"Y":616},{"Bonus":0,"Continent":"K63","ID":51976,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51976","ServerKey":"pl181","X":326,"Y":628},{"Bonus":0,"Continent":"K57","ID":51977,"Name":"Gryfios 095","PlayerID":698666810,"Points":11460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51977","ServerKey":"pl181","X":718,"Y":554},{"Bonus":9,"Continent":"K33","ID":51978,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":9117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51978","ServerKey":"pl181","X":329,"Y":351},{"Bonus":0,"Continent":"K75","ID":51979,"Name":"071 invidia","PlayerID":849093426,"Points":5865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51979","ServerKey":"pl181","X":536,"Y":716},{"Bonus":0,"Continent":"K36","ID":51980,"Name":"XDX","PlayerID":699098531,"Points":3239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51980","ServerKey":"pl181","X":602,"Y":300},{"Bonus":0,"Continent":"K33","ID":51981,"Name":"006. Quattro formaggi","PlayerID":849102092,"Points":4081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51981","ServerKey":"pl181","X":312,"Y":394},{"Bonus":0,"Continent":"K75","ID":51982,"Name":"Blanc Lapin","PlayerID":849102336,"Points":6015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51982","ServerKey":"pl181","X":526,"Y":722},{"Bonus":0,"Continent":"K74","ID":51983,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51983","ServerKey":"pl181","X":403,"Y":702},{"Bonus":0,"Continent":"K57","ID":51984,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51984","ServerKey":"pl181","X":723,"Y":535},{"Bonus":0,"Continent":"K66","ID":51985,"Name":"Komandos","PlayerID":7976264,"Points":8005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51985","ServerKey":"pl181","X":653,"Y":664},{"Bonus":0,"Continent":"K44","ID":51986,"Name":"230 Casablanca","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51986","ServerKey":"pl181","X":437,"Y":472},{"Bonus":0,"Continent":"K42","ID":51987,"Name":"Wioska lo 2","PlayerID":699763225,"Points":2979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51987","ServerKey":"pl181","X":297,"Y":407},{"Bonus":0,"Continent":"K75","ID":51988,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51988","ServerKey":"pl181","X":552,"Y":719},{"Bonus":0,"Continent":"K47","ID":51989,"Name":"11 Patatajnia","PlayerID":849101845,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51989","ServerKey":"pl181","X":721,"Y":454},{"Bonus":0,"Continent":"K36","ID":51990,"Name":"Wioska003","PlayerID":698768565,"Points":5362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51990","ServerKey":"pl181","X":687,"Y":385},{"Bonus":0,"Continent":"K36","ID":51991,"Name":"Wioska 6","PlayerID":849101945,"Points":1845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51991","ServerKey":"pl181","X":653,"Y":347},{"Bonus":0,"Continent":"K25","ID":51992,"Name":"078 Wioska barbarzyƄska","PlayerID":699854484,"Points":8136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51992","ServerKey":"pl181","X":538,"Y":281},{"Bonus":0,"Continent":"K57","ID":51993,"Name":"Eldorado","PlayerID":849098724,"Points":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51993","ServerKey":"pl181","X":709,"Y":587},{"Bonus":2,"Continent":"K63","ID":51994,"Name":"04Osada koczownikĂłw","PlayerID":699704542,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51994","ServerKey":"pl181","X":364,"Y":678},{"Bonus":0,"Continent":"K36","ID":51995,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51995","ServerKey":"pl181","X":644,"Y":337},{"Bonus":0,"Continent":"K36","ID":51996,"Name":"W52","PlayerID":699524362,"Points":2034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51996","ServerKey":"pl181","X":689,"Y":393},{"Bonus":0,"Continent":"K74","ID":51997,"Name":"New World","PlayerID":698152377,"Points":9409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51997","ServerKey":"pl181","X":421,"Y":712},{"Bonus":0,"Continent":"K66","ID":51998,"Name":"Wygwizdowa 011","PlayerID":698562644,"Points":4988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51998","ServerKey":"pl181","X":644,"Y":671},{"Bonus":0,"Continent":"K47","ID":51999,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":7886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=51999","ServerKey":"pl181","X":725,"Y":489},{"Bonus":0,"Continent":"K24","ID":52000,"Name":"Wioska Black Priest","PlayerID":3411571,"Points":9685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52000","ServerKey":"pl181","X":423,"Y":298},{"Bonus":0,"Continent":"K36","ID":52001,"Name":"kryniu niebko centrum","PlayerID":849105232,"Points":5426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52001","ServerKey":"pl181","X":677,"Y":367},{"Bonus":0,"Continent":"K42","ID":52002,"Name":"81.","PlayerID":699763225,"Points":7638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52002","ServerKey":"pl181","X":294,"Y":406},{"Bonus":0,"Continent":"K66","ID":52003,"Name":"019","PlayerID":2323859,"Points":2848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52003","ServerKey":"pl181","X":667,"Y":642},{"Bonus":0,"Continent":"K36","ID":52004,"Name":"XDX","PlayerID":699098531,"Points":4064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52004","ServerKey":"pl181","X":606,"Y":303},{"Bonus":0,"Continent":"K57","ID":52005,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":7103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52005","ServerKey":"pl181","X":714,"Y":554},{"Bonus":4,"Continent":"K57","ID":52006,"Name":"A#007","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52006","ServerKey":"pl181","X":720,"Y":534},{"Bonus":0,"Continent":"K42","ID":52007,"Name":"gory szare","PlayerID":698677650,"Points":2822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52007","ServerKey":"pl181","X":296,"Y":410},{"Bonus":0,"Continent":"K33","ID":52008,"Name":"005","PlayerID":7386358,"Points":4718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52008","ServerKey":"pl181","X":321,"Y":368},{"Bonus":0,"Continent":"K33","ID":52009,"Name":"Saran8","PlayerID":848937248,"Points":2248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52009","ServerKey":"pl181","X":398,"Y":303},{"Bonus":0,"Continent":"K47","ID":52010,"Name":".003. Madagaskar","PlayerID":849095599,"Points":5907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52010","ServerKey":"pl181","X":719,"Y":458},{"Bonus":0,"Continent":"K57","ID":52011,"Name":"=099= Wioska barbarzyƄska","PlayerID":3781794,"Points":4010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52011","ServerKey":"pl181","X":702,"Y":594},{"Bonus":0,"Continent":"K34","ID":52012,"Name":"Kharkov","PlayerID":699588526,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52012","ServerKey":"pl181","X":400,"Y":301},{"Bonus":0,"Continent":"K75","ID":52013,"Name":"Wioska barbarzyƄska 009","PlayerID":6870350,"Points":5000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52013","ServerKey":"pl181","X":563,"Y":714},{"Bonus":0,"Continent":"K55","ID":52014,"Name":"Wioska DontCry","PlayerID":7220989,"Points":3807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52014","ServerKey":"pl181","X":599,"Y":540},{"Bonus":0,"Continent":"K33","ID":52015,"Name":"Wioska18","PlayerID":699711926,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52015","ServerKey":"pl181","X":333,"Y":348},{"Bonus":0,"Continent":"K36","ID":52016,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52016","ServerKey":"pl181","X":692,"Y":385},{"Bonus":0,"Continent":"K63","ID":52017,"Name":"127","PlayerID":849099876,"Points":8557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52017","ServerKey":"pl181","X":382,"Y":691},{"Bonus":0,"Continent":"K33","ID":52018,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52018","ServerKey":"pl181","X":392,"Y":306},{"Bonus":0,"Continent":"K36","ID":52019,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52019","ServerKey":"pl181","X":650,"Y":337},{"Bonus":0,"Continent":"K75","ID":52020,"Name":"-24-","PlayerID":849032414,"Points":5551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52020","ServerKey":"pl181","X":578,"Y":708},{"Bonus":0,"Continent":"K75","ID":52021,"Name":"Trunks Super Saiyan 005","PlayerID":699054373,"Points":5496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52021","ServerKey":"pl181","X":517,"Y":724},{"Bonus":0,"Continent":"K74","ID":52022,"Name":"New World","PlayerID":698152377,"Points":4836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52022","ServerKey":"pl181","X":425,"Y":705},{"Bonus":0,"Continent":"K66","ID":52023,"Name":"Nowa baza 3","PlayerID":698353083,"Points":7350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52023","ServerKey":"pl181","X":614,"Y":694},{"Bonus":0,"Continent":"K74","ID":52024,"Name":"Bagno 32","PlayerID":848883684,"Points":5688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52024","ServerKey":"pl181","X":474,"Y":725},{"Bonus":0,"Continent":"K25","ID":52025,"Name":".achim.","PlayerID":6936607,"Points":5351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52025","ServerKey":"pl181","X":578,"Y":290},{"Bonus":1,"Continent":"K36","ID":52026,"Name":"wioska XX","PlayerID":9314079,"Points":9420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52026","ServerKey":"pl181","X":675,"Y":356},{"Bonus":0,"Continent":"K63","ID":52027,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":8885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52027","ServerKey":"pl181","X":327,"Y":631},{"Bonus":0,"Continent":"K75","ID":52028,"Name":"Trunks Super Saiyan 004","PlayerID":699054373,"Points":5806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52028","ServerKey":"pl181","X":515,"Y":725},{"Bonus":0,"Continent":"K63","ID":52029,"Name":"012","PlayerID":699356968,"Points":6618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52029","ServerKey":"pl181","X":307,"Y":607},{"Bonus":0,"Continent":"K36","ID":52030,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":5026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52030","ServerKey":"pl181","X":698,"Y":392},{"Bonus":0,"Continent":"K36","ID":52032,"Name":"0145","PlayerID":698416970,"Points":2788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52032","ServerKey":"pl181","X":693,"Y":399},{"Bonus":0,"Continent":"K74","ID":52033,"Name":"Kurnik","PlayerID":699603116,"Points":8116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52033","ServerKey":"pl181","X":470,"Y":718},{"Bonus":0,"Continent":"K42","ID":52034,"Name":"Glinnn","PlayerID":848981726,"Points":2523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52034","ServerKey":"pl181","X":285,"Y":470},{"Bonus":0,"Continent":"K47","ID":52035,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":3645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52035","ServerKey":"pl181","X":717,"Y":486},{"Bonus":0,"Continent":"K63","ID":52036,"Name":"Wioska z Pracza 4","PlayerID":8916982,"Points":2748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52036","ServerKey":"pl181","X":312,"Y":627},{"Bonus":0,"Continent":"K36","ID":52037,"Name":"Wioska barbarzyƄska","PlayerID":1715091,"Points":1482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52037","ServerKey":"pl181","X":658,"Y":349},{"Bonus":0,"Continent":"K35","ID":52038,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52038","ServerKey":"pl181","X":589,"Y":300},{"Bonus":0,"Continent":"K66","ID":52039,"Name":"SIOƁO","PlayerID":2371436,"Points":3604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52039","ServerKey":"pl181","X":654,"Y":667},{"Bonus":0,"Continent":"K25","ID":52040,"Name":"Wioska Zidanee0390","PlayerID":8609713,"Points":9176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52040","ServerKey":"pl181","X":583,"Y":292},{"Bonus":0,"Continent":"K33","ID":52041,"Name":"BOSS D1","PlayerID":849101604,"Points":4318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52041","ServerKey":"pl181","X":352,"Y":339},{"Bonus":0,"Continent":"K75","ID":52042,"Name":"Bianco Coniglio","PlayerID":849102336,"Points":9572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52042","ServerKey":"pl181","X":525,"Y":722},{"Bonus":0,"Continent":"K33","ID":52043,"Name":"Nowa Wieƛ","PlayerID":849027025,"Points":5825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52043","ServerKey":"pl181","X":369,"Y":314},{"Bonus":2,"Continent":"K33","ID":52044,"Name":"014","PlayerID":7386358,"Points":6799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52044","ServerKey":"pl181","X":320,"Y":375},{"Bonus":0,"Continent":"K47","ID":52045,"Name":"101. Wioska martwy dzik","PlayerID":7494497,"Points":3055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52045","ServerKey":"pl181","X":722,"Y":477},{"Bonus":0,"Continent":"K52","ID":52046,"Name":"[0202]","PlayerID":8630972,"Points":7220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52046","ServerKey":"pl181","X":277,"Y":502},{"Bonus":0,"Continent":"K24","ID":52047,"Name":".achim.","PlayerID":6936607,"Points":8163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52047","ServerKey":"pl181","X":486,"Y":278},{"Bonus":0,"Continent":"K63","ID":52048,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52048","ServerKey":"pl181","X":363,"Y":680},{"Bonus":0,"Continent":"K56","ID":52049,"Name":"Wioska 015","PlayerID":7999103,"Points":612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52049","ServerKey":"pl181","X":695,"Y":594},{"Bonus":0,"Continent":"K63","ID":52050,"Name":"Wioska Pracz 3","PlayerID":8916982,"Points":7563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52050","ServerKey":"pl181","X":311,"Y":623},{"Bonus":0,"Continent":"K57","ID":52052,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52052","ServerKey":"pl181","X":724,"Y":536},{"Bonus":0,"Continent":"K33","ID":52053,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":87,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52053","ServerKey":"pl181","X":323,"Y":373},{"Bonus":0,"Continent":"K63","ID":52054,"Name":"O101","PlayerID":272173,"Points":7952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52054","ServerKey":"pl181","X":318,"Y":630},{"Bonus":0,"Continent":"K42","ID":52055,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":2362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52055","ServerKey":"pl181","X":281,"Y":481},{"Bonus":0,"Continent":"K63","ID":52056,"Name":"Mason Street","PlayerID":849105463,"Points":4771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52056","ServerKey":"pl181","X":382,"Y":685},{"Bonus":0,"Continent":"K53","ID":52057,"Name":"Bryzgiel","PlayerID":1276665,"Points":5287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52057","ServerKey":"pl181","X":300,"Y":598},{"Bonus":0,"Continent":"K24","ID":52058,"Name":"[0288]","PlayerID":8630972,"Points":9327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52058","ServerKey":"pl181","X":483,"Y":275},{"Bonus":0,"Continent":"K74","ID":52059,"Name":"New World","PlayerID":698152377,"Points":10137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52059","ServerKey":"pl181","X":412,"Y":703},{"Bonus":0,"Continent":"K47","ID":52060,"Name":"043","PlayerID":849091105,"Points":5870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52060","ServerKey":"pl181","X":704,"Y":402},{"Bonus":0,"Continent":"K56","ID":52062,"Name":"Wioska 20","PlayerID":849101162,"Points":2429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52062","ServerKey":"pl181","X":698,"Y":593},{"Bonus":2,"Continent":"K65","ID":52063,"Name":"zawodnik","PlayerID":698215322,"Points":10023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52063","ServerKey":"pl181","X":593,"Y":695},{"Bonus":0,"Continent":"K52","ID":52064,"Name":"004","PlayerID":698663855,"Points":8064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52064","ServerKey":"pl181","X":293,"Y":592},{"Bonus":0,"Continent":"K47","ID":52065,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":5386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52065","ServerKey":"pl181","X":706,"Y":419},{"Bonus":2,"Continent":"K75","ID":52066,"Name":"kathare","PlayerID":873575,"Points":9961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52066","ServerKey":"pl181","X":537,"Y":721},{"Bonus":0,"Continent":"K33","ID":52067,"Name":"Wioska","PlayerID":699711926,"Points":10090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52067","ServerKey":"pl181","X":346,"Y":346},{"Bonus":0,"Continent":"K52","ID":52068,"Name":"[O]koƄ","PlayerID":849106971,"Points":3298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52068","ServerKey":"pl181","X":281,"Y":547},{"Bonus":0,"Continent":"K42","ID":52070,"Name":"Avanti!","PlayerID":698625834,"Points":6274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52070","ServerKey":"pl181","X":280,"Y":478},{"Bonus":0,"Continent":"K33","ID":52071,"Name":"V. KƂopoty-StanisƂawy","PlayerID":849101893,"Points":5244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52071","ServerKey":"pl181","X":360,"Y":325},{"Bonus":0,"Continent":"K63","ID":52072,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52072","ServerKey":"pl181","X":327,"Y":634},{"Bonus":0,"Continent":"K33","ID":52073,"Name":"Wioska barbarzyƄska","PlayerID":8632462,"Points":2586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52073","ServerKey":"pl181","X":326,"Y":357},{"Bonus":0,"Continent":"K24","ID":52074,"Name":"MikolajOSK6","PlayerID":6857973,"Points":2557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52074","ServerKey":"pl181","X":441,"Y":285},{"Bonus":0,"Continent":"K74","ID":52075,"Name":"Wioska barbarzyƄska","PlayerID":849037407,"Points":1420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52075","ServerKey":"pl181","X":455,"Y":714},{"Bonus":0,"Continent":"K66","ID":52076,"Name":"051","PlayerID":699695167,"Points":3742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52076","ServerKey":"pl181","X":634,"Y":670},{"Bonus":0,"Continent":"K52","ID":52077,"Name":"Wyspa 002","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52077","ServerKey":"pl181","X":292,"Y":564},{"Bonus":0,"Continent":"K36","ID":52078,"Name":"012","PlayerID":699117992,"Points":2021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52078","ServerKey":"pl181","X":611,"Y":306},{"Bonus":0,"Continent":"K63","ID":52079,"Name":"Makowa 02","PlayerID":849014922,"Points":3969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52079","ServerKey":"pl181","X":388,"Y":690},{"Bonus":0,"Continent":"K63","ID":52080,"Name":"C049","PlayerID":699383279,"Points":7832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52080","ServerKey":"pl181","X":356,"Y":667},{"Bonus":0,"Continent":"K47","ID":52081,"Name":"098. AnioƂki","PlayerID":7494497,"Points":2978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52081","ServerKey":"pl181","X":716,"Y":473},{"Bonus":0,"Continent":"K52","ID":52082,"Name":"Wioska barbarzyƄska","PlayerID":849101771,"Points":1144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52082","ServerKey":"pl181","X":292,"Y":577},{"Bonus":0,"Continent":"K25","ID":52083,"Name":"North K25","PlayerID":699146580,"Points":3684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52083","ServerKey":"pl181","X":524,"Y":281},{"Bonus":2,"Continent":"K57","ID":52084,"Name":"Gryfios 096","PlayerID":698666810,"Points":11574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52084","ServerKey":"pl181","X":716,"Y":551},{"Bonus":0,"Continent":"K66","ID":52085,"Name":"komandos48","PlayerID":7976264,"Points":9113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52085","ServerKey":"pl181","X":643,"Y":663},{"Bonus":0,"Continent":"K36","ID":52086,"Name":"020. elli38","PlayerID":2873154,"Points":7182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52086","ServerKey":"pl181","X":684,"Y":373},{"Bonus":0,"Continent":"K63","ID":52087,"Name":"O076","PlayerID":272173,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52087","ServerKey":"pl181","X":331,"Y":636},{"Bonus":0,"Continent":"K75","ID":52088,"Name":"Wioska skuzmi","PlayerID":849101102,"Points":9907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52088","ServerKey":"pl181","X":516,"Y":727},{"Bonus":0,"Continent":"K47","ID":52089,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52089","ServerKey":"pl181","X":720,"Y":475},{"Bonus":0,"Continent":"K63","ID":52090,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52090","ServerKey":"pl181","X":320,"Y":635},{"Bonus":0,"Continent":"K36","ID":52091,"Name":"Wioska 002","PlayerID":2976468,"Points":8113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52091","ServerKey":"pl181","X":677,"Y":359},{"Bonus":0,"Continent":"K36","ID":52092,"Name":"Wioska wtkc","PlayerID":8669398,"Points":1951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52092","ServerKey":"pl181","X":688,"Y":381},{"Bonus":0,"Continent":"K33","ID":52093,"Name":"Wioska barbarzyƄska 15","PlayerID":698757439,"Points":7458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52093","ServerKey":"pl181","X":336,"Y":343},{"Bonus":0,"Continent":"K55","ID":52094,"Name":"0028","PlayerID":698599365,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52094","ServerKey":"pl181","X":509,"Y":500},{"Bonus":0,"Continent":"K53","ID":52095,"Name":"Nowa 04","PlayerID":699321518,"Points":4150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52095","ServerKey":"pl181","X":301,"Y":598},{"Bonus":0,"Continent":"K76","ID":52096,"Name":"w myself","PlayerID":699828685,"Points":1658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52096","ServerKey":"pl181","X":601,"Y":700},{"Bonus":0,"Continent":"K42","ID":52097,"Name":"06 barbarzyƄska.","PlayerID":849018442,"Points":8762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52097","ServerKey":"pl181","X":286,"Y":449},{"Bonus":0,"Continent":"K47","ID":52098,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":4094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52098","ServerKey":"pl181","X":712,"Y":447},{"Bonus":0,"Continent":"K66","ID":52099,"Name":"#06!","PlayerID":849101884,"Points":3446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52099","ServerKey":"pl181","X":636,"Y":677},{"Bonus":0,"Continent":"K66","ID":52100,"Name":"Wioska Putabarca28","PlayerID":6921135,"Points":3346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52100","ServerKey":"pl181","X":697,"Y":610},{"Bonus":0,"Continent":"K74","ID":52101,"Name":"Nie popusc","PlayerID":9195661,"Points":7869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52101","ServerKey":"pl181","X":409,"Y":706},{"Bonus":0,"Continent":"K24","ID":52102,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":9228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52102","ServerKey":"pl181","X":433,"Y":289},{"Bonus":0,"Continent":"K47","ID":52103,"Name":"032","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52103","ServerKey":"pl181","X":724,"Y":473},{"Bonus":0,"Continent":"K63","ID":52104,"Name":"016","PlayerID":699356968,"Points":4477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52104","ServerKey":"pl181","X":304,"Y":612},{"Bonus":0,"Continent":"K25","ID":52105,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52105","ServerKey":"pl181","X":598,"Y":299},{"Bonus":0,"Continent":"K25","ID":52106,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52106","ServerKey":"pl181","X":588,"Y":298},{"Bonus":0,"Continent":"K74","ID":52107,"Name":"038.","PlayerID":849034882,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52107","ServerKey":"pl181","X":464,"Y":721},{"Bonus":0,"Continent":"K66","ID":52108,"Name":"031","PlayerID":2323859,"Points":3125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52108","ServerKey":"pl181","X":667,"Y":638},{"Bonus":0,"Continent":"K25","ID":52109,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52109","ServerKey":"pl181","X":587,"Y":290},{"Bonus":0,"Continent":"K75","ID":52110,"Name":"#K75 0031","PlayerID":699728159,"Points":4290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52110","ServerKey":"pl181","X":524,"Y":719},{"Bonus":0,"Continent":"K36","ID":52112,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52112","ServerKey":"pl181","X":622,"Y":308},{"Bonus":0,"Continent":"K63","ID":52113,"Name":"Psycha Siada","PlayerID":8099868,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52113","ServerKey":"pl181","X":333,"Y":647},{"Bonus":0,"Continent":"K63","ID":52114,"Name":"Poema del Mar Aquarium","PlayerID":7085510,"Points":4661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52114","ServerKey":"pl181","X":374,"Y":680},{"Bonus":0,"Continent":"K36","ID":52116,"Name":"Flap","PlayerID":699098531,"Points":6197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52116","ServerKey":"pl181","X":607,"Y":308},{"Bonus":0,"Continent":"K33","ID":52118,"Name":"NP 01","PlayerID":849076810,"Points":8047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52118","ServerKey":"pl181","X":301,"Y":389},{"Bonus":0,"Continent":"K52","ID":52119,"Name":"New WorldA","PlayerID":849084005,"Points":4228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52119","ServerKey":"pl181","X":280,"Y":535},{"Bonus":0,"Continent":"K46","ID":52120,"Name":"W53","PlayerID":699524362,"Points":1833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52120","ServerKey":"pl181","X":699,"Y":409},{"Bonus":7,"Continent":"K47","ID":52121,"Name":"ƚrodowisko miejskie","PlayerID":699785935,"Points":7855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52121","ServerKey":"pl181","X":714,"Y":461},{"Bonus":0,"Continent":"K33","ID":52122,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52122","ServerKey":"pl181","X":392,"Y":301},{"Bonus":0,"Continent":"K47","ID":52123,"Name":"[818] Odludzie","PlayerID":848985692,"Points":7215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52123","ServerKey":"pl181","X":709,"Y":442},{"Bonus":0,"Continent":"K24","ID":52124,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52124","ServerKey":"pl181","X":400,"Y":296},{"Bonus":0,"Continent":"K24","ID":52125,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52125","ServerKey":"pl181","X":434,"Y":291},{"Bonus":0,"Continent":"K75","ID":52126,"Name":"#K75 0034","PlayerID":699728159,"Points":5623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52126","ServerKey":"pl181","X":518,"Y":722},{"Bonus":0,"Continent":"K57","ID":52127,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":8509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52127","ServerKey":"pl181","X":715,"Y":552},{"Bonus":0,"Continent":"K74","ID":52128,"Name":"Kurnik","PlayerID":699603116,"Points":9687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52128","ServerKey":"pl181","X":468,"Y":718},{"Bonus":0,"Continent":"K36","ID":52129,"Name":"Nienack","PlayerID":698278542,"Points":11566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52129","ServerKey":"pl181","X":694,"Y":397},{"Bonus":0,"Continent":"K66","ID":52130,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52130","ServerKey":"pl181","X":695,"Y":615},{"Bonus":0,"Continent":"K24","ID":52131,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52131","ServerKey":"pl181","X":424,"Y":297},{"Bonus":0,"Continent":"K25","ID":52132,"Name":"040 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52132","ServerKey":"pl181","X":545,"Y":287},{"Bonus":0,"Continent":"K47","ID":52134,"Name":"X007","PlayerID":699722599,"Points":6718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52134","ServerKey":"pl181","X":713,"Y":424},{"Bonus":0,"Continent":"K75","ID":52135,"Name":"Wioska barbarzyƄska","PlayerID":849055425,"Points":4588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52135","ServerKey":"pl181","X":566,"Y":707},{"Bonus":0,"Continent":"K36","ID":52136,"Name":"Wioska marianos1994","PlayerID":848936229,"Points":689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52136","ServerKey":"pl181","X":663,"Y":353},{"Bonus":0,"Continent":"K63","ID":52137,"Name":"0173","PlayerID":7085510,"Points":8139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52137","ServerKey":"pl181","X":366,"Y":672},{"Bonus":0,"Continent":"K47","ID":52138,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":7671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52138","ServerKey":"pl181","X":710,"Y":446},{"Bonus":0,"Continent":"K74","ID":52139,"Name":"|D| Sunfort","PlayerID":698147372,"Points":3809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52139","ServerKey":"pl181","X":455,"Y":721},{"Bonus":0,"Continent":"K47","ID":52140,"Name":"029 KTW","PlayerID":848883237,"Points":4807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52140","ServerKey":"pl181","X":721,"Y":453},{"Bonus":0,"Continent":"K36","ID":52141,"Name":"XDX","PlayerID":699098531,"Points":4915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52141","ServerKey":"pl181","X":614,"Y":310},{"Bonus":0,"Continent":"K74","ID":52142,"Name":"Wioska Kl0Ns","PlayerID":848999671,"Points":2190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52142","ServerKey":"pl181","X":490,"Y":726},{"Bonus":0,"Continent":"K74","ID":52143,"Name":"Taka.","PlayerID":848999671,"Points":5735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52143","ServerKey":"pl181","X":484,"Y":725},{"Bonus":0,"Continent":"K42","ID":52144,"Name":"Warszawa","PlayerID":699856962,"Points":9644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52144","ServerKey":"pl181","X":290,"Y":415},{"Bonus":0,"Continent":"K36","ID":52145,"Name":"HWILA [4]","PlayerID":849006385,"Points":2313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52145","ServerKey":"pl181","X":630,"Y":318},{"Bonus":0,"Continent":"K36","ID":52146,"Name":"Wioska Lord Lord Giza","PlayerID":698946155,"Points":2639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52146","ServerKey":"pl181","X":651,"Y":342},{"Bonus":0,"Continent":"K63","ID":52147,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":9170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52147","ServerKey":"pl181","X":364,"Y":682},{"Bonus":0,"Continent":"K57","ID":52148,"Name":"Madera","PlayerID":1601917,"Points":7404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52148","ServerKey":"pl181","X":712,"Y":552},{"Bonus":0,"Continent":"K63","ID":52149,"Name":"Blueberry","PlayerID":849105463,"Points":426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52149","ServerKey":"pl181","X":381,"Y":683},{"Bonus":0,"Continent":"K63","ID":52150,"Name":"067 Wioska barbarzyƄska","PlayerID":6354098,"Points":3052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52150","ServerKey":"pl181","X":342,"Y":657},{"Bonus":0,"Continent":"K33","ID":52151,"Name":"Szlachcic","PlayerID":698160606,"Points":5461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52151","ServerKey":"pl181","X":374,"Y":317},{"Bonus":4,"Continent":"K52","ID":52152,"Name":"C0227","PlayerID":8841266,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52152","ServerKey":"pl181","X":282,"Y":540},{"Bonus":0,"Continent":"K24","ID":52153,"Name":"#0162 darmuwa","PlayerID":1238300,"Points":6561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52153","ServerKey":"pl181","X":470,"Y":282},{"Bonus":0,"Continent":"K75","ID":52154,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":5179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52154","ServerKey":"pl181","X":552,"Y":712},{"Bonus":0,"Continent":"K25","ID":52155,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52155","ServerKey":"pl181","X":504,"Y":278},{"Bonus":0,"Continent":"K47","ID":52157,"Name":"C.048","PlayerID":9188016,"Points":3556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52157","ServerKey":"pl181","X":715,"Y":475},{"Bonus":0,"Continent":"K63","ID":52158,"Name":"0172","PlayerID":7085510,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52158","ServerKey":"pl181","X":371,"Y":682},{"Bonus":0,"Continent":"K42","ID":52159,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52159","ServerKey":"pl181","X":289,"Y":435},{"Bonus":0,"Continent":"K33","ID":52161,"Name":"Wioska barbarzyƄska","PlayerID":849103148,"Points":4352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52161","ServerKey":"pl181","X":336,"Y":346},{"Bonus":0,"Continent":"K24","ID":52162,"Name":"Albatros","PlayerID":947923,"Points":6062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52162","ServerKey":"pl181","X":432,"Y":293},{"Bonus":0,"Continent":"K33","ID":52163,"Name":"Zaplecze Barba 022","PlayerID":699796330,"Points":6494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52163","ServerKey":"pl181","X":368,"Y":323},{"Bonus":0,"Continent":"K56","ID":52164,"Name":"wioska psa nie dotykać","PlayerID":849102143,"Points":6488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52164","ServerKey":"pl181","X":684,"Y":565},{"Bonus":0,"Continent":"K36","ID":52165,"Name":"*008","PlayerID":7758085,"Points":9861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52165","ServerKey":"pl181","X":674,"Y":365},{"Bonus":0,"Continent":"K42","ID":52166,"Name":"007","PlayerID":6131106,"Points":5667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52166","ServerKey":"pl181","X":289,"Y":425},{"Bonus":0,"Continent":"K25","ID":52167,"Name":"045 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52167","ServerKey":"pl181","X":541,"Y":282},{"Bonus":0,"Continent":"K63","ID":52168,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52168","ServerKey":"pl181","X":355,"Y":674},{"Bonus":0,"Continent":"K33","ID":52169,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52169","ServerKey":"pl181","X":391,"Y":302},{"Bonus":0,"Continent":"K25","ID":52171,"Name":"--036--","PlayerID":542253,"Points":3918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52171","ServerKey":"pl181","X":568,"Y":294},{"Bonus":0,"Continent":"K33","ID":52172,"Name":"007. Napoletana","PlayerID":849102092,"Points":8827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52172","ServerKey":"pl181","X":306,"Y":389},{"Bonus":0,"Continent":"K25","ID":52173,"Name":"B001","PlayerID":699485250,"Points":10078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52173","ServerKey":"pl181","X":520,"Y":281},{"Bonus":0,"Continent":"K63","ID":52174,"Name":"0163","PlayerID":7085510,"Points":2656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52174","ServerKey":"pl181","X":391,"Y":687},{"Bonus":0,"Continent":"K63","ID":52175,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52175","ServerKey":"pl181","X":396,"Y":698},{"Bonus":0,"Continent":"K75","ID":52177,"Name":"024","PlayerID":698996782,"Points":5060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52177","ServerKey":"pl181","X":529,"Y":724},{"Bonus":0,"Continent":"K47","ID":52178,"Name":"026 Petalburg City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52178","ServerKey":"pl181","X":719,"Y":485},{"Bonus":0,"Continent":"K52","ID":52179,"Name":"[0235]","PlayerID":8630972,"Points":6065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52179","ServerKey":"pl181","X":282,"Y":504},{"Bonus":0,"Continent":"K36","ID":52181,"Name":"0095","PlayerID":698416970,"Points":4944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52181","ServerKey":"pl181","X":680,"Y":378},{"Bonus":0,"Continent":"K66","ID":52182,"Name":"PoƂudniowy WschĂłd 011","PlayerID":699778867,"Points":1641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52182","ServerKey":"pl181","X":695,"Y":608},{"Bonus":0,"Continent":"K25","ID":52183,"Name":"--040--","PlayerID":542253,"Points":3649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52183","ServerKey":"pl181","X":572,"Y":291},{"Bonus":0,"Continent":"K36","ID":52184,"Name":"022. Wioska barbarzyƄska","PlayerID":2873154,"Points":5829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52184","ServerKey":"pl181","X":681,"Y":381},{"Bonus":0,"Continent":"K52","ID":52185,"Name":"[0206]","PlayerID":8630972,"Points":6927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52185","ServerKey":"pl181","X":276,"Y":502},{"Bonus":0,"Continent":"K52","ID":52186,"Name":"New WorldA","PlayerID":849084005,"Points":1877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52186","ServerKey":"pl181","X":275,"Y":533},{"Bonus":0,"Continent":"K46","ID":52187,"Name":"Wioska10","PlayerID":848935020,"Points":4020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52187","ServerKey":"pl181","X":624,"Y":477},{"Bonus":0,"Continent":"K42","ID":52188,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52188","ServerKey":"pl181","X":295,"Y":416},{"Bonus":0,"Continent":"K36","ID":52189,"Name":"!36 65 Botosanita Mica","PlayerID":698361257,"Points":6224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52189","ServerKey":"pl181","X":659,"Y":365},{"Bonus":0,"Continent":"K74","ID":52190,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52190","ServerKey":"pl181","X":404,"Y":702},{"Bonus":2,"Continent":"K33","ID":52191,"Name":"Osada koczownikĂłw","PlayerID":1267913,"Points":2871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52191","ServerKey":"pl181","X":307,"Y":380},{"Bonus":0,"Continent":"K33","ID":52192,"Name":"Szlachcic","PlayerID":698160606,"Points":5360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52192","ServerKey":"pl181","X":371,"Y":316},{"Bonus":0,"Continent":"K52","ID":52193,"Name":"Zzz 08 zaraz się zacznie","PlayerID":849084740,"Points":6701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52193","ServerKey":"pl181","X":290,"Y":569},{"Bonus":1,"Continent":"K52","ID":52194,"Name":"Początek","PlayerID":7842579,"Points":9402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52194","ServerKey":"pl181","X":292,"Y":580},{"Bonus":9,"Continent":"K63","ID":52196,"Name":"0115","PlayerID":698908184,"Points":8165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52196","ServerKey":"pl181","X":346,"Y":665},{"Bonus":0,"Continent":"K36","ID":52197,"Name":"t026","PlayerID":2262902,"Points":800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52197","ServerKey":"pl181","X":667,"Y":346},{"Bonus":0,"Continent":"K75","ID":52198,"Name":"#0080","PlayerID":1536231,"Points":4097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52198","ServerKey":"pl181","X":569,"Y":709},{"Bonus":0,"Continent":"K33","ID":52199,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52199","ServerKey":"pl181","X":374,"Y":311},{"Bonus":0,"Continent":"K24","ID":52200,"Name":"059KP","PlayerID":849063849,"Points":2906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52200","ServerKey":"pl181","X":487,"Y":273},{"Bonus":0,"Continent":"K34","ID":52201,"Name":"008","PlayerID":9283775,"Points":2233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52201","ServerKey":"pl181","X":402,"Y":302},{"Bonus":0,"Continent":"K33","ID":52202,"Name":"Zaplecze Barba 8","PlayerID":699796330,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52202","ServerKey":"pl181","X":369,"Y":327},{"Bonus":0,"Continent":"K57","ID":52203,"Name":"kww03","PlayerID":8976313,"Points":4321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52203","ServerKey":"pl181","X":720,"Y":543},{"Bonus":0,"Continent":"K24","ID":52204,"Name":"144.Stradi","PlayerID":698365960,"Points":2234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52204","ServerKey":"pl181","X":484,"Y":276},{"Bonus":0,"Continent":"K36","ID":52205,"Name":"Wioska barbarzyƄska","PlayerID":699117992,"Points":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52205","ServerKey":"pl181","X":610,"Y":302},{"Bonus":0,"Continent":"K63","ID":52206,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52206","ServerKey":"pl181","X":395,"Y":699},{"Bonus":0,"Continent":"K75","ID":52208,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52208","ServerKey":"pl181","X":538,"Y":722},{"Bonus":0,"Continent":"K25","ID":52209,"Name":"031 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52209","ServerKey":"pl181","X":543,"Y":286},{"Bonus":0,"Continent":"K33","ID":52210,"Name":"Wioska barbarzyƄska","PlayerID":849023212,"Points":7649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52210","ServerKey":"pl181","X":370,"Y":326},{"Bonus":0,"Continent":"K65","ID":52211,"Name":"Wioska Zawodnika","PlayerID":698655859,"Points":6986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52211","ServerKey":"pl181","X":536,"Y":633},{"Bonus":0,"Continent":"K74","ID":52212,"Name":"D01","PlayerID":698652014,"Points":2936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52212","ServerKey":"pl181","X":441,"Y":717},{"Bonus":0,"Continent":"K44","ID":52213,"Name":"Monetki","PlayerID":699098531,"Points":8193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52213","ServerKey":"pl181","X":482,"Y":421},{"Bonus":0,"Continent":"K66","ID":52214,"Name":"~~083~~","PlayerID":7829201,"Points":3850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52214","ServerKey":"pl181","X":677,"Y":638},{"Bonus":0,"Continent":"K42","ID":52216,"Name":"Wioska02","PlayerID":8259895,"Points":3929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52216","ServerKey":"pl181","X":298,"Y":416},{"Bonus":0,"Continent":"K33","ID":52217,"Name":"014","PlayerID":849101205,"Points":1806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52217","ServerKey":"pl181","X":338,"Y":349},{"Bonus":0,"Continent":"K52","ID":52218,"Name":"[0262]","PlayerID":8630972,"Points":5702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52218","ServerKey":"pl181","X":279,"Y":510},{"Bonus":0,"Continent":"K47","ID":52219,"Name":"X013","PlayerID":699722599,"Points":5944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52219","ServerKey":"pl181","X":709,"Y":425},{"Bonus":0,"Continent":"K36","ID":52220,"Name":"t012","PlayerID":2262902,"Points":8196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52220","ServerKey":"pl181","X":670,"Y":350},{"Bonus":0,"Continent":"K57","ID":52221,"Name":"07.APT","PlayerID":698905177,"Points":3474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52221","ServerKey":"pl181","X":713,"Y":562},{"Bonus":0,"Continent":"K63","ID":52222,"Name":"Wioska super hero","PlayerID":699438389,"Points":4082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52222","ServerKey":"pl181","X":309,"Y":622},{"Bonus":0,"Continent":"K73","ID":52223,"Name":"032","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52223","ServerKey":"pl181","X":399,"Y":703},{"Bonus":0,"Continent":"K36","ID":52224,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":4850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52224","ServerKey":"pl181","X":616,"Y":306},{"Bonus":0,"Continent":"K25","ID":52225,"Name":".achim.","PlayerID":6936607,"Points":5327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52225","ServerKey":"pl181","X":569,"Y":287},{"Bonus":0,"Continent":"K42","ID":52226,"Name":"[0201]","PlayerID":8630972,"Points":7164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52226","ServerKey":"pl181","X":283,"Y":495},{"Bonus":4,"Continent":"K74","ID":52227,"Name":"ORKOWI ZAWODNICY DOMINUJA RYBKI","PlayerID":8980651,"Points":7555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52227","ServerKey":"pl181","X":493,"Y":718},{"Bonus":0,"Continent":"K57","ID":52228,"Name":"079 hasacz","PlayerID":2135129,"Points":5550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52228","ServerKey":"pl181","X":705,"Y":518},{"Bonus":0,"Continent":"K47","ID":52229,"Name":"Eden","PlayerID":699785935,"Points":5184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52229","ServerKey":"pl181","X":706,"Y":410},{"Bonus":0,"Continent":"K63","ID":52230,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":8296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52230","ServerKey":"pl181","X":324,"Y":636},{"Bonus":0,"Continent":"K47","ID":52231,"Name":"[810] Odludzie","PlayerID":848985692,"Points":7659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52231","ServerKey":"pl181","X":713,"Y":431},{"Bonus":0,"Continent":"K24","ID":52232,"Name":"232...PÓƁNOC","PlayerID":6920960,"Points":4793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52232","ServerKey":"pl181","X":436,"Y":287},{"Bonus":0,"Continent":"K54","ID":52233,"Name":"Wioska gooomis","PlayerID":699364813,"Points":561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52233","ServerKey":"pl181","X":435,"Y":559},{"Bonus":0,"Continent":"K24","ID":52234,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52234","ServerKey":"pl181","X":426,"Y":289},{"Bonus":0,"Continent":"K57","ID":52235,"Name":"091","PlayerID":7085502,"Points":4446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52235","ServerKey":"pl181","X":724,"Y":506},{"Bonus":0,"Continent":"K66","ID":52236,"Name":"Nowa Baza 11","PlayerID":698353083,"Points":7842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52236","ServerKey":"pl181","X":616,"Y":694},{"Bonus":0,"Continent":"K47","ID":52237,"Name":"Witam:)","PlayerID":849101881,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52237","ServerKey":"pl181","X":701,"Y":418},{"Bonus":0,"Continent":"K24","ID":52238,"Name":"092.Stradi","PlayerID":698365960,"Points":9076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52238","ServerKey":"pl181","X":438,"Y":289},{"Bonus":0,"Continent":"K24","ID":52239,"Name":"Wioska barbarzyƄska","PlayerID":699863708,"Points":2198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52239","ServerKey":"pl181","X":463,"Y":282},{"Bonus":0,"Continent":"K74","ID":52240,"Name":"azi3","PlayerID":849094759,"Points":2288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52240","ServerKey":"pl181","X":458,"Y":718},{"Bonus":0,"Continent":"K65","ID":52241,"Name":"AG15","PlayerID":699876345,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52241","ServerKey":"pl181","X":590,"Y":663},{"Bonus":0,"Continent":"K36","ID":52242,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52242","ServerKey":"pl181","X":620,"Y":310},{"Bonus":0,"Continent":"K36","ID":52243,"Name":"Mm01","PlayerID":698442418,"Points":8984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52243","ServerKey":"pl181","X":630,"Y":326},{"Bonus":0,"Continent":"K42","ID":52244,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52244","ServerKey":"pl181","X":280,"Y":449},{"Bonus":0,"Continent":"K66","ID":52245,"Name":"wjeĆŒdĆŒam na dzielnie","PlayerID":6417987,"Points":1702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52245","ServerKey":"pl181","X":677,"Y":628},{"Bonus":0,"Continent":"K24","ID":52246,"Name":"0075","PlayerID":848913037,"Points":4801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52246","ServerKey":"pl181","X":458,"Y":279},{"Bonus":0,"Continent":"K33","ID":52247,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":6671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52247","ServerKey":"pl181","X":331,"Y":356},{"Bonus":0,"Continent":"K47","ID":52248,"Name":"18.","PlayerID":699562182,"Points":2755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52248","ServerKey":"pl181","X":702,"Y":402},{"Bonus":0,"Continent":"K47","ID":52249,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":4217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52249","ServerKey":"pl181","X":723,"Y":494},{"Bonus":0,"Continent":"K74","ID":52250,"Name":"Kurnik","PlayerID":699603116,"Points":7548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52250","ServerKey":"pl181","X":445,"Y":717},{"Bonus":0,"Continent":"K42","ID":52251,"Name":"Wioska 4","PlayerID":699763225,"Points":1788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52251","ServerKey":"pl181","X":296,"Y":403},{"Bonus":0,"Continent":"K25","ID":52252,"Name":"041 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52252","ServerKey":"pl181","X":546,"Y":283},{"Bonus":0,"Continent":"K47","ID":52253,"Name":"Wioska Turystyczna 006","PlayerID":7588382,"Points":7092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52253","ServerKey":"pl181","X":724,"Y":461},{"Bonus":0,"Continent":"K24","ID":52254,"Name":"[0162]","PlayerID":8630972,"Points":8690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52254","ServerKey":"pl181","X":455,"Y":286},{"Bonus":0,"Continent":"K66","ID":52255,"Name":"sony911","PlayerID":1415009,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52255","ServerKey":"pl181","X":672,"Y":645},{"Bonus":0,"Continent":"K47","ID":52256,"Name":"15.","PlayerID":699562182,"Points":4146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52256","ServerKey":"pl181","X":702,"Y":401},{"Bonus":0,"Continent":"K63","ID":52257,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52257","ServerKey":"pl181","X":364,"Y":677},{"Bonus":0,"Continent":"K24","ID":52258,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52258","ServerKey":"pl181","X":473,"Y":275},{"Bonus":0,"Continent":"K24","ID":52259,"Name":"Fourth","PlayerID":849048216,"Points":1029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52259","ServerKey":"pl181","X":448,"Y":287},{"Bonus":0,"Continent":"K74","ID":52260,"Name":"azi4","PlayerID":849094759,"Points":2956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52260","ServerKey":"pl181","X":453,"Y":716},{"Bonus":0,"Continent":"K52","ID":52261,"Name":"Początek","PlayerID":7842579,"Points":9598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52261","ServerKey":"pl181","X":297,"Y":581},{"Bonus":0,"Continent":"K63","ID":52263,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":9747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52263","ServerKey":"pl181","X":361,"Y":680},{"Bonus":0,"Continent":"K25","ID":52264,"Name":"067 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52264","ServerKey":"pl181","X":537,"Y":276},{"Bonus":0,"Continent":"K42","ID":52265,"Name":"Wioska 2","PlayerID":699763225,"Points":1765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52265","ServerKey":"pl181","X":298,"Y":404},{"Bonus":0,"Continent":"K66","ID":52266,"Name":"Ć»UBEREK 008 MENAGO.EXE","PlayerID":33900,"Points":7354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52266","ServerKey":"pl181","X":618,"Y":688},{"Bonus":0,"Continent":"K66","ID":52267,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":7881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52267","ServerKey":"pl181","X":643,"Y":664},{"Bonus":0,"Continent":"K57","ID":52268,"Name":"021. Eskwilin","PlayerID":1601917,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52268","ServerKey":"pl181","X":712,"Y":553},{"Bonus":0,"Continent":"K47","ID":52269,"Name":"075. Acrae","PlayerID":849091866,"Points":5018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52269","ServerKey":"pl181","X":721,"Y":461},{"Bonus":0,"Continent":"K36","ID":52270,"Name":"Wioska 007","PlayerID":7226782,"Points":2937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52270","ServerKey":"pl181","X":672,"Y":352},{"Bonus":0,"Continent":"K75","ID":52271,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":6047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52271","ServerKey":"pl181","X":555,"Y":712},{"Bonus":0,"Continent":"K36","ID":52272,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52272","ServerKey":"pl181","X":651,"Y":340},{"Bonus":0,"Continent":"K54","ID":52273,"Name":"007 eQNares","PlayerID":2585846,"Points":10478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52273","ServerKey":"pl181","X":478,"Y":572},{"Bonus":0,"Continent":"K25","ID":52274,"Name":"D006","PlayerID":699299123,"Points":4510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52274","ServerKey":"pl181","X":562,"Y":286},{"Bonus":0,"Continent":"K74","ID":52275,"Name":"Werid","PlayerID":849004274,"Points":9585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52275","ServerKey":"pl181","X":467,"Y":717},{"Bonus":0,"Continent":"K37","ID":52276,"Name":"aaaa","PlayerID":699598425,"Points":10728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52276","ServerKey":"pl181","X":700,"Y":394},{"Bonus":0,"Continent":"K63","ID":52277,"Name":"Wioska z Pracza 8","PlayerID":8916982,"Points":243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52277","ServerKey":"pl181","X":311,"Y":626},{"Bonus":0,"Continent":"K57","ID":52278,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":5613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52278","ServerKey":"pl181","X":709,"Y":557},{"Bonus":0,"Continent":"K52","ID":52280,"Name":"Wyspa 030","PlayerID":225023,"Points":2518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52280","ServerKey":"pl181","X":295,"Y":573},{"Bonus":6,"Continent":"K57","ID":52281,"Name":"CastAway #001","PlayerID":9314079,"Points":9815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52281","ServerKey":"pl181","X":702,"Y":585},{"Bonus":0,"Continent":"K57","ID":52282,"Name":"083","PlayerID":7085502,"Points":4443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52282","ServerKey":"pl181","X":720,"Y":511},{"Bonus":0,"Continent":"K63","ID":52283,"Name":"078 Wioska barbarzyƄska","PlayerID":6354098,"Points":5394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52283","ServerKey":"pl181","X":350,"Y":666},{"Bonus":9,"Continent":"K47","ID":52285,"Name":"[800] Odludzie","PlayerID":848985692,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52285","ServerKey":"pl181","X":711,"Y":434},{"Bonus":0,"Continent":"K63","ID":52286,"Name":"056 Wioska barbarzyƄska","PlayerID":6354098,"Points":6946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52286","ServerKey":"pl181","X":343,"Y":664},{"Bonus":0,"Continent":"K75","ID":52288,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":2297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52288","ServerKey":"pl181","X":503,"Y":719},{"Bonus":0,"Continent":"K63","ID":52289,"Name":"Wioska Kepczyk","PlayerID":698908184,"Points":6821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52289","ServerKey":"pl181","X":318,"Y":642},{"Bonus":0,"Continent":"K33","ID":52290,"Name":"Wioska barbarzyƄska","PlayerID":699794765,"Points":1973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52290","ServerKey":"pl181","X":311,"Y":386},{"Bonus":0,"Continent":"K63","ID":52291,"Name":"Wioska kapittan","PlayerID":699456288,"Points":679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52291","ServerKey":"pl181","X":316,"Y":625},{"Bonus":0,"Continent":"K66","ID":52292,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":7667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52292","ServerKey":"pl181","X":644,"Y":664},{"Bonus":0,"Continent":"K43","ID":52293,"Name":"U_U","PlayerID":699088529,"Points":3947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52293","ServerKey":"pl181","X":351,"Y":433},{"Bonus":0,"Continent":"K63","ID":52294,"Name":"Wioska bulkas9999333","PlayerID":849098993,"Points":532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52294","ServerKey":"pl181","X":319,"Y":633},{"Bonus":0,"Continent":"K66","ID":52295,"Name":"###148###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52295","ServerKey":"pl181","X":602,"Y":694},{"Bonus":0,"Continent":"K33","ID":52296,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":2064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52296","ServerKey":"pl181","X":327,"Y":356},{"Bonus":0,"Continent":"K25","ID":52297,"Name":"--047--","PlayerID":542253,"Points":1541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52297","ServerKey":"pl181","X":578,"Y":292},{"Bonus":0,"Continent":"K74","ID":52298,"Name":"014 - Budowanko!","PlayerID":7540891,"Points":7018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52298","ServerKey":"pl181","X":494,"Y":723},{"Bonus":0,"Continent":"K57","ID":52299,"Name":"Wioska olko666","PlayerID":8541236,"Points":9570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52299","ServerKey":"pl181","X":724,"Y":522},{"Bonus":0,"Continent":"K57","ID":52300,"Name":"Wioska krzucha2037","PlayerID":8541236,"Points":9606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52300","ServerKey":"pl181","X":722,"Y":530},{"Bonus":0,"Continent":"K57","ID":52301,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":7727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52301","ServerKey":"pl181","X":710,"Y":574},{"Bonus":1,"Continent":"K47","ID":52302,"Name":"Osada koczownikĂłw","PlayerID":8675636,"Points":9803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52302","ServerKey":"pl181","X":704,"Y":407},{"Bonus":0,"Continent":"K33","ID":52303,"Name":"013","PlayerID":7386358,"Points":3586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52303","ServerKey":"pl181","X":327,"Y":371},{"Bonus":0,"Continent":"K36","ID":52304,"Name":"*011","PlayerID":7758085,"Points":8425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52304","ServerKey":"pl181","X":677,"Y":362},{"Bonus":0,"Continent":"K42","ID":52305,"Name":"Wioska01","PlayerID":8259895,"Points":5879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52305","ServerKey":"pl181","X":297,"Y":417},{"Bonus":0,"Continent":"K63","ID":52306,"Name":"100","PlayerID":849099876,"Points":9450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52306","ServerKey":"pl181","X":395,"Y":697},{"Bonus":0,"Continent":"K47","ID":52307,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52307","ServerKey":"pl181","X":724,"Y":478},{"Bonus":0,"Continent":"K36","ID":52308,"Name":"017. Wioska barbarzyƄska","PlayerID":2873154,"Points":7367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52308","ServerKey":"pl181","X":682,"Y":375},{"Bonus":0,"Continent":"K75","ID":52309,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":8496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52309","ServerKey":"pl181","X":546,"Y":720},{"Bonus":0,"Continent":"K63","ID":52310,"Name":"BOA.","PlayerID":699829494,"Points":6338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52310","ServerKey":"pl181","X":311,"Y":624},{"Bonus":0,"Continent":"K57","ID":52311,"Name":"093","PlayerID":7085502,"Points":4223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52311","ServerKey":"pl181","X":725,"Y":504},{"Bonus":0,"Continent":"K64","ID":52312,"Name":"082","PlayerID":849099876,"Points":9948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52312","ServerKey":"pl181","X":406,"Y":697},{"Bonus":0,"Continent":"K43","ID":52313,"Name":"roksi","PlayerID":849089601,"Points":5432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52313","ServerKey":"pl181","X":302,"Y":400},{"Bonus":0,"Continent":"K36","ID":52314,"Name":"#5 Wioska barbarzyƄska","PlayerID":849099517,"Points":6516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52314","ServerKey":"pl181","X":637,"Y":322},{"Bonus":0,"Continent":"K52","ID":52315,"Name":"002 Kazik","PlayerID":197581,"Points":8424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52315","ServerKey":"pl181","X":282,"Y":551},{"Bonus":0,"Continent":"K42","ID":52316,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52316","ServerKey":"pl181","X":278,"Y":449},{"Bonus":0,"Continent":"K42","ID":52317,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":9894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52317","ServerKey":"pl181","X":279,"Y":446},{"Bonus":0,"Continent":"K63","ID":52318,"Name":"Walec","PlayerID":2725721,"Points":1507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52318","ServerKey":"pl181","X":354,"Y":670},{"Bonus":6,"Continent":"K33","ID":52319,"Name":"243","PlayerID":7271812,"Points":3008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52319","ServerKey":"pl181","X":387,"Y":311},{"Bonus":0,"Continent":"K57","ID":52320,"Name":"Bestleevatican Twitch TV","PlayerID":8418489,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52320","ServerKey":"pl181","X":714,"Y":502},{"Bonus":0,"Continent":"K63","ID":52321,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":6898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52321","ServerKey":"pl181","X":379,"Y":689},{"Bonus":0,"Continent":"K36","ID":52322,"Name":"XDX","PlayerID":699098531,"Points":7082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52322","ServerKey":"pl181","X":611,"Y":313},{"Bonus":0,"Continent":"K74","ID":52323,"Name":"New World","PlayerID":698152377,"Points":7333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52323","ServerKey":"pl181","X":438,"Y":711},{"Bonus":1,"Continent":"K47","ID":52324,"Name":"Tartak","PlayerID":849088515,"Points":5128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52324","ServerKey":"pl181","X":712,"Y":440},{"Bonus":0,"Continent":"K75","ID":52325,"Name":"Wioska barbarzyƄska -","PlayerID":849055425,"Points":4112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52325","ServerKey":"pl181","X":563,"Y":709},{"Bonus":0,"Continent":"K57","ID":52326,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":5755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52326","ServerKey":"pl181","X":718,"Y":521},{"Bonus":0,"Continent":"K74","ID":52327,"Name":"New World","PlayerID":698152377,"Points":8988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52327","ServerKey":"pl181","X":423,"Y":707},{"Bonus":0,"Continent":"K47","ID":52328,"Name":"backstage 2","PlayerID":849099696,"Points":4694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52328","ServerKey":"pl181","X":705,"Y":402},{"Bonus":0,"Continent":"K75","ID":52329,"Name":"Ave Why!","PlayerID":699121671,"Points":827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52329","ServerKey":"pl181","X":547,"Y":700},{"Bonus":0,"Continent":"K63","ID":52330,"Name":"Wioska 0017","PlayerID":9186126,"Points":7849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52330","ServerKey":"pl181","X":339,"Y":655},{"Bonus":0,"Continent":"K24","ID":52331,"Name":"[0289]","PlayerID":8630972,"Points":7098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52331","ServerKey":"pl181","X":483,"Y":276},{"Bonus":0,"Continent":"K52","ID":52332,"Name":"New WorldA","PlayerID":849084005,"Points":3969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52332","ServerKey":"pl181","X":280,"Y":541},{"Bonus":0,"Continent":"K42","ID":52333,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52333","ServerKey":"pl181","X":296,"Y":429},{"Bonus":0,"Continent":"K57","ID":52335,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":4696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52335","ServerKey":"pl181","X":722,"Y":505},{"Bonus":0,"Continent":"K54","ID":52336,"Name":"wioska barba","PlayerID":9167250,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52336","ServerKey":"pl181","X":406,"Y":573},{"Bonus":0,"Continent":"K66","ID":52337,"Name":"xxx4","PlayerID":6921135,"Points":9335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52337","ServerKey":"pl181","X":694,"Y":611},{"Bonus":0,"Continent":"K47","ID":52338,"Name":"32. Wioska barbarzyƄska","PlayerID":699804790,"Points":3224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52338","ServerKey":"pl181","X":715,"Y":469},{"Bonus":0,"Continent":"K63","ID":52340,"Name":"C096","PlayerID":699383279,"Points":6562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52340","ServerKey":"pl181","X":359,"Y":672},{"Bonus":0,"Continent":"K66","ID":52341,"Name":"039","PlayerID":2323859,"Points":5362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52341","ServerKey":"pl181","X":664,"Y":649},{"Bonus":0,"Continent":"K25","ID":52342,"Name":"004","PlayerID":698736778,"Points":2111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52342","ServerKey":"pl181","X":530,"Y":281},{"Bonus":0,"Continent":"K42","ID":52343,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52343","ServerKey":"pl181","X":295,"Y":409},{"Bonus":0,"Continent":"K33","ID":52344,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":5263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52344","ServerKey":"pl181","X":368,"Y":326},{"Bonus":0,"Continent":"K34","ID":52345,"Name":"001","PlayerID":9283775,"Points":7756,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52345","ServerKey":"pl181","X":406,"Y":303},{"Bonus":0,"Continent":"K24","ID":52346,"Name":"#0155 barbarzyƄska","PlayerID":1238300,"Points":5038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52346","ServerKey":"pl181","X":479,"Y":277},{"Bonus":0,"Continent":"K52","ID":52347,"Name":"New WorldA","PlayerID":849084005,"Points":5073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52347","ServerKey":"pl181","X":283,"Y":528},{"Bonus":0,"Continent":"K63","ID":52348,"Name":"BOA4","PlayerID":699829494,"Points":3467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52348","ServerKey":"pl181","X":305,"Y":618},{"Bonus":0,"Continent":"K24","ID":52349,"Name":"BIMBER 3","PlayerID":6857973,"Points":2601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52349","ServerKey":"pl181","X":452,"Y":283},{"Bonus":6,"Continent":"K47","ID":52350,"Name":"Maestro","PlayerID":699785935,"Points":8411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52350","ServerKey":"pl181","X":713,"Y":457},{"Bonus":0,"Continent":"K57","ID":52351,"Name":"Nowa Era","PlayerID":2723244,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52351","ServerKey":"pl181","X":717,"Y":566},{"Bonus":0,"Continent":"K52","ID":52352,"Name":"006","PlayerID":698663855,"Points":5753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52352","ServerKey":"pl181","X":289,"Y":585},{"Bonus":0,"Continent":"K34","ID":52353,"Name":"AVERSA city","PlayerID":3762475,"Points":4647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52353","ServerKey":"pl181","X":495,"Y":366},{"Bonus":0,"Continent":"K25","ID":52354,"Name":"#003","PlayerID":849064614,"Points":9379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52354","ServerKey":"pl181","X":552,"Y":280},{"Bonus":0,"Continent":"K36","ID":52355,"Name":"wieƛmen","PlayerID":849094006,"Points":7681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52355","ServerKey":"pl181","X":637,"Y":320},{"Bonus":0,"Continent":"K74","ID":52356,"Name":"Bagno 27","PlayerID":848883684,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52356","ServerKey":"pl181","X":475,"Y":720},{"Bonus":0,"Continent":"K46","ID":52357,"Name":"Wioska klogan","PlayerID":699884788,"Points":6261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52357","ServerKey":"pl181","X":695,"Y":405},{"Bonus":5,"Continent":"K47","ID":52358,"Name":"07.GOT7","PlayerID":9180206,"Points":8771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52358","ServerKey":"pl181","X":710,"Y":434},{"Bonus":0,"Continent":"K75","ID":52359,"Name":"076 invidia","PlayerID":849093426,"Points":6160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52359","ServerKey":"pl181","X":543,"Y":721},{"Bonus":0,"Continent":"K36","ID":52360,"Name":"03 brutal29","PlayerID":6517826,"Points":2698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52360","ServerKey":"pl181","X":638,"Y":322},{"Bonus":0,"Continent":"K74","ID":52361,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52361","ServerKey":"pl181","X":404,"Y":701},{"Bonus":0,"Continent":"K75","ID":52362,"Name":"Wioska barbarzyƄska","PlayerID":698704189,"Points":3920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52362","ServerKey":"pl181","X":505,"Y":717},{"Bonus":0,"Continent":"K36","ID":52363,"Name":"0108","PlayerID":698416970,"Points":2123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52363","ServerKey":"pl181","X":692,"Y":392},{"Bonus":0,"Continent":"K24","ID":52364,"Name":"MORO2","PlayerID":848952566,"Points":1781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52364","ServerKey":"pl181","X":482,"Y":276},{"Bonus":0,"Continent":"K57","ID":52365,"Name":"Nowa 58","PlayerID":698702991,"Points":5933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52365","ServerKey":"pl181","X":712,"Y":581},{"Bonus":0,"Continent":"K36","ID":52366,"Name":"XDX","PlayerID":699098531,"Points":6106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52366","ServerKey":"pl181","X":616,"Y":311},{"Bonus":5,"Continent":"K63","ID":52367,"Name":"017","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52367","ServerKey":"pl181","X":397,"Y":699},{"Bonus":0,"Continent":"K52","ID":52368,"Name":"Wioska dawszz5","PlayerID":849094688,"Points":1708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52368","ServerKey":"pl181","X":284,"Y":534},{"Bonus":3,"Continent":"K35","ID":52369,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52369","ServerKey":"pl181","X":591,"Y":301},{"Bonus":0,"Continent":"K36","ID":52370,"Name":"Wioska 016","PlayerID":7226782,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52370","ServerKey":"pl181","X":669,"Y":354},{"Bonus":0,"Continent":"K25","ID":52371,"Name":".achim.","PlayerID":6936607,"Points":6446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52371","ServerKey":"pl181","X":570,"Y":288},{"Bonus":0,"Continent":"K36","ID":52372,"Name":"wioska","PlayerID":9291984,"Points":10144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52372","ServerKey":"pl181","X":636,"Y":331},{"Bonus":0,"Continent":"K57","ID":52373,"Name":"=022= Wioska barbarzyƄska","PlayerID":3781794,"Points":10580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52373","ServerKey":"pl181","X":708,"Y":565},{"Bonus":0,"Continent":"K63","ID":52374,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52374","ServerKey":"pl181","X":371,"Y":675},{"Bonus":0,"Continent":"K47","ID":52375,"Name":"X008","PlayerID":699722599,"Points":6514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52375","ServerKey":"pl181","X":714,"Y":424},{"Bonus":0,"Continent":"K42","ID":52377,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52377","ServerKey":"pl181","X":281,"Y":444},{"Bonus":0,"Continent":"K66","ID":52378,"Name":"008","PlayerID":2323859,"Points":8010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52378","ServerKey":"pl181","X":665,"Y":643},{"Bonus":0,"Continent":"K33","ID":52379,"Name":"B-001","PlayerID":1267913,"Points":7197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52379","ServerKey":"pl181","X":307,"Y":381},{"Bonus":0,"Continent":"K42","ID":52380,"Name":"SkalpeR3","PlayerID":849101674,"Points":2251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52380","ServerKey":"pl181","X":283,"Y":499},{"Bonus":0,"Continent":"K36","ID":52381,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52381","ServerKey":"pl181","X":623,"Y":310},{"Bonus":0,"Continent":"K75","ID":52382,"Name":"029StaƂka","PlayerID":6116940,"Points":5126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52382","ServerKey":"pl181","X":532,"Y":717},{"Bonus":0,"Continent":"K63","ID":52383,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":7863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52383","ServerKey":"pl181","X":392,"Y":688},{"Bonus":0,"Continent":"K66","ID":52384,"Name":"134 #007","PlayerID":2467370,"Points":5013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52384","ServerKey":"pl181","X":625,"Y":686},{"Bonus":0,"Continent":"K75","ID":52385,"Name":"010","PlayerID":698996782,"Points":3869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52385","ServerKey":"pl181","X":524,"Y":717},{"Bonus":0,"Continent":"K43","ID":52386,"Name":"001","PlayerID":6647535,"Points":1007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52386","ServerKey":"pl181","X":384,"Y":401},{"Bonus":0,"Continent":"K66","ID":52387,"Name":"###149###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52387","ServerKey":"pl181","X":607,"Y":697},{"Bonus":0,"Continent":"K24","ID":52388,"Name":"????","PlayerID":698489071,"Points":7454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52388","ServerKey":"pl181","X":494,"Y":281},{"Bonus":0,"Continent":"K25","ID":52389,"Name":"Wioska barbarzyƄska","PlayerID":8240677,"Points":7232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52389","ServerKey":"pl181","X":518,"Y":280},{"Bonus":0,"Continent":"K74","ID":52390,"Name":"Wioska Gazel699","PlayerID":699656989,"Points":5099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52390","ServerKey":"pl181","X":494,"Y":724},{"Bonus":0,"Continent":"K52","ID":52391,"Name":"007","PlayerID":698663855,"Points":3010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52391","ServerKey":"pl181","X":294,"Y":585},{"Bonus":0,"Continent":"K47","ID":52392,"Name":"WMA","PlayerID":113796,"Points":2484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52392","ServerKey":"pl181","X":721,"Y":475},{"Bonus":0,"Continent":"K57","ID":52393,"Name":"=100= Wioska barbarzyƄska","PlayerID":3781794,"Points":3600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52393","ServerKey":"pl181","X":701,"Y":596},{"Bonus":0,"Continent":"K33","ID":52394,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52394","ServerKey":"pl181","X":390,"Y":303},{"Bonus":0,"Continent":"K63","ID":52395,"Name":"076 Wioska barbarzyƄska","PlayerID":6354098,"Points":6358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52395","ServerKey":"pl181","X":347,"Y":667},{"Bonus":0,"Continent":"K75","ID":52397,"Name":"#0052","PlayerID":1536231,"Points":9953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52397","ServerKey":"pl181","X":573,"Y":710},{"Bonus":0,"Continent":"K25","ID":52398,"Name":"PPF-01","PlayerID":1424656,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52398","ServerKey":"pl181","X":521,"Y":274},{"Bonus":0,"Continent":"K42","ID":52399,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52399","ServerKey":"pl181","X":288,"Y":453},{"Bonus":0,"Continent":"K63","ID":52400,"Name":"104","PlayerID":849099876,"Points":10365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52400","ServerKey":"pl181","X":399,"Y":696},{"Bonus":0,"Continent":"K25","ID":52401,"Name":"Wioska 4","PlayerID":7427966,"Points":2284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52401","ServerKey":"pl181","X":552,"Y":281},{"Bonus":0,"Continent":"K47","ID":52402,"Name":"Wioska barbarzyƄska","PlayerID":699488108,"Points":4490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52402","ServerKey":"pl181","X":704,"Y":417},{"Bonus":0,"Continent":"K36","ID":52403,"Name":"Wioska 026","PlayerID":7226782,"Points":4469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52403","ServerKey":"pl181","X":667,"Y":358},{"Bonus":0,"Continent":"K36","ID":52404,"Name":"XDX","PlayerID":699098531,"Points":6383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52404","ServerKey":"pl181","X":602,"Y":305},{"Bonus":0,"Continent":"K36","ID":52405,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52405","ServerKey":"pl181","X":643,"Y":335},{"Bonus":0,"Continent":"K42","ID":52406,"Name":"666","PlayerID":849081869,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52406","ServerKey":"pl181","X":277,"Y":470},{"Bonus":0,"Continent":"K36","ID":52407,"Name":"Wioska 013","PlayerID":7226782,"Points":2662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52407","ServerKey":"pl181","X":668,"Y":357},{"Bonus":0,"Continent":"K42","ID":52408,"Name":"016","PlayerID":6131106,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52408","ServerKey":"pl181","X":279,"Y":462},{"Bonus":0,"Continent":"K63","ID":52409,"Name":"Wioska barbarzyƄska","PlayerID":2725721,"Points":1088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52409","ServerKey":"pl181","X":354,"Y":672},{"Bonus":0,"Continent":"K25","ID":52410,"Name":"Piorunek1996 Wieƛ ..1..","PlayerID":6118079,"Points":7216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52410","ServerKey":"pl181","X":528,"Y":275},{"Bonus":0,"Continent":"K65","ID":52411,"Name":"###150###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52411","ServerKey":"pl181","X":596,"Y":699},{"Bonus":3,"Continent":"K47","ID":52412,"Name":"019 Frontier Access","PlayerID":699441366,"Points":9906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52412","ServerKey":"pl181","X":720,"Y":485},{"Bonus":0,"Continent":"K74","ID":52414,"Name":"D02","PlayerID":698652014,"Points":3422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52414","ServerKey":"pl181","X":441,"Y":714},{"Bonus":0,"Continent":"K52","ID":52415,"Name":"New WorldA","PlayerID":849084005,"Points":1954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52415","ServerKey":"pl181","X":276,"Y":541},{"Bonus":0,"Continent":"K66","ID":52416,"Name":"komandos","PlayerID":7976264,"Points":4273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52416","ServerKey":"pl181","X":672,"Y":650},{"Bonus":0,"Continent":"K75","ID":52417,"Name":"Tu sie pracuje","PlayerID":849097370,"Points":9209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52417","ServerKey":"pl181","X":592,"Y":702},{"Bonus":0,"Continent":"K25","ID":52418,"Name":"35. Openbar","PlayerID":849099696,"Points":9640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52418","ServerKey":"pl181","X":558,"Y":288},{"Bonus":0,"Continent":"K74","ID":52419,"Name":"New World","PlayerID":698152377,"Points":10041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52419","ServerKey":"pl181","X":417,"Y":712},{"Bonus":0,"Continent":"K52","ID":52420,"Name":"Cisza","PlayerID":698769107,"Points":6738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52420","ServerKey":"pl181","X":289,"Y":556},{"Bonus":0,"Continent":"K75","ID":52422,"Name":"White Rabbit","PlayerID":849102336,"Points":4638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52422","ServerKey":"pl181","X":524,"Y":724},{"Bonus":0,"Continent":"K47","ID":52424,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52424","ServerKey":"pl181","X":715,"Y":447},{"Bonus":0,"Continent":"K24","ID":52427,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52427","ServerKey":"pl181","X":499,"Y":281},{"Bonus":0,"Continent":"K24","ID":52428,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52428","ServerKey":"pl181","X":416,"Y":293},{"Bonus":0,"Continent":"K52","ID":52430,"Name":"C0354","PlayerID":8841266,"Points":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52430","ServerKey":"pl181","X":274,"Y":519},{"Bonus":5,"Continent":"K74","ID":52431,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52431","ServerKey":"pl181","X":430,"Y":714},{"Bonus":0,"Continent":"K57","ID":52433,"Name":"Wioska9","PlayerID":699266530,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52433","ServerKey":"pl181","X":710,"Y":575},{"Bonus":0,"Continent":"K52","ID":52434,"Name":"004","PlayerID":698663855,"Points":10360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52434","ServerKey":"pl181","X":292,"Y":592},{"Bonus":0,"Continent":"K63","ID":52435,"Name":"081 Wioska barbarzyƄska","PlayerID":6354098,"Points":4677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52435","ServerKey":"pl181","X":348,"Y":668},{"Bonus":0,"Continent":"K24","ID":52436,"Name":"#0310 Majson dar","PlayerID":1238300,"Points":8378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52436","ServerKey":"pl181","X":474,"Y":284},{"Bonus":0,"Continent":"K25","ID":52437,"Name":"059 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52437","ServerKey":"pl181","X":552,"Y":285},{"Bonus":0,"Continent":"K55","ID":52438,"Name":"0042 K55 and987 OZDR.","PlayerID":3613413,"Points":9841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52438","ServerKey":"pl181","X":508,"Y":541},{"Bonus":0,"Continent":"K57","ID":52439,"Name":"28. Attre","PlayerID":8976313,"Points":5859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52439","ServerKey":"pl181","X":717,"Y":540},{"Bonus":0,"Continent":"K57","ID":52440,"Name":"Mordownia 2","PlayerID":849101029,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52440","ServerKey":"pl181","X":703,"Y":594},{"Bonus":0,"Continent":"K63","ID":52441,"Name":"0160","PlayerID":7085510,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52441","ServerKey":"pl181","X":388,"Y":688},{"Bonus":0,"Continent":"K64","ID":52442,"Name":"039.xxx","PlayerID":8612358,"Points":2677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52442","ServerKey":"pl181","X":476,"Y":695},{"Bonus":0,"Continent":"K66","ID":52443,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":5203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52443","ServerKey":"pl181","X":654,"Y":660},{"Bonus":0,"Continent":"K67","ID":52444,"Name":"062","PlayerID":849095227,"Points":8321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52444","ServerKey":"pl181","X":700,"Y":602},{"Bonus":0,"Continent":"K66","ID":52445,"Name":"komandos","PlayerID":7976264,"Points":4765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52445","ServerKey":"pl181","X":664,"Y":655},{"Bonus":0,"Continent":"K57","ID":52446,"Name":"A#046","PlayerID":2065730,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52446","ServerKey":"pl181","X":724,"Y":538},{"Bonus":0,"Continent":"K66","ID":52447,"Name":"061.","PlayerID":699373599,"Points":2017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52447","ServerKey":"pl181","X":639,"Y":681},{"Bonus":0,"Continent":"K74","ID":52448,"Name":"KWB2","PlayerID":9003698,"Points":3204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52448","ServerKey":"pl181","X":470,"Y":717},{"Bonus":0,"Continent":"K75","ID":52449,"Name":"066 - Budowanko!","PlayerID":7540891,"Points":4871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52449","ServerKey":"pl181","X":508,"Y":727},{"Bonus":0,"Continent":"K36","ID":52450,"Name":"Atlantyk","PlayerID":7973893,"Points":6117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52450","ServerKey":"pl181","X":690,"Y":379},{"Bonus":0,"Continent":"K75","ID":52451,"Name":"Wioska barbarzyƄska +","PlayerID":849055425,"Points":3165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52451","ServerKey":"pl181","X":563,"Y":708},{"Bonus":4,"Continent":"K36","ID":52452,"Name":"Wioska 022","PlayerID":7226782,"Points":6242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52452","ServerKey":"pl181","X":673,"Y":354},{"Bonus":0,"Continent":"K52","ID":52455,"Name":"Cisza","PlayerID":698769107,"Points":7226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52455","ServerKey":"pl181","X":289,"Y":553},{"Bonus":0,"Continent":"K63","ID":52456,"Name":"Wioska barbarzyƄska","PlayerID":699199084,"Points":436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52456","ServerKey":"pl181","X":357,"Y":664},{"Bonus":0,"Continent":"K52","ID":52457,"Name":"003","PlayerID":698353083,"Points":6558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52457","ServerKey":"pl181","X":275,"Y":535},{"Bonus":0,"Continent":"K66","ID":52458,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":2116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52458","ServerKey":"pl181","X":625,"Y":689},{"Bonus":0,"Continent":"K36","ID":52459,"Name":"t013","PlayerID":2262902,"Points":6382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52459","ServerKey":"pl181","X":669,"Y":350},{"Bonus":0,"Continent":"K33","ID":52460,"Name":"Kaer Morhen","PlayerID":849101377,"Points":5368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52460","ServerKey":"pl181","X":318,"Y":385},{"Bonus":0,"Continent":"K33","ID":52461,"Name":"cyklop","PlayerID":849068108,"Points":3015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52461","ServerKey":"pl181","X":370,"Y":314},{"Bonus":0,"Continent":"K74","ID":52462,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52462","ServerKey":"pl181","X":410,"Y":708},{"Bonus":0,"Continent":"K53","ID":52463,"Name":"Architekci PlacĂłw Boju","PlayerID":8004076,"Points":6790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52463","ServerKey":"pl181","X":340,"Y":550},{"Bonus":0,"Continent":"K66","ID":52464,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":3906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52464","ServerKey":"pl181","X":684,"Y":627},{"Bonus":0,"Continent":"K25","ID":52465,"Name":"North 073","PlayerID":849064752,"Points":6350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52465","ServerKey":"pl181","X":503,"Y":274},{"Bonus":0,"Continent":"K47","ID":52466,"Name":"035 KTW","PlayerID":848883237,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52466","ServerKey":"pl181","X":722,"Y":454},{"Bonus":0,"Continent":"K74","ID":52467,"Name":"Bagno 11","PlayerID":848883684,"Points":9424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52467","ServerKey":"pl181","X":482,"Y":717},{"Bonus":5,"Continent":"K42","ID":52468,"Name":"Gibonowo Kolonia","PlayerID":849100877,"Points":1022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52468","ServerKey":"pl181","X":280,"Y":488},{"Bonus":0,"Continent":"K52","ID":52469,"Name":"0000043Z","PlayerID":849089881,"Points":1337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52469","ServerKey":"pl181","X":285,"Y":560},{"Bonus":0,"Continent":"K52","ID":52470,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":6775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52470","ServerKey":"pl181","X":274,"Y":506},{"Bonus":0,"Continent":"K24","ID":52471,"Name":"#0283 kaban1988","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52471","ServerKey":"pl181","X":462,"Y":286},{"Bonus":0,"Continent":"K66","ID":52472,"Name":"Wioska","PlayerID":6167751,"Points":5696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52472","ServerKey":"pl181","X":650,"Y":662},{"Bonus":0,"Continent":"K74","ID":52473,"Name":"Taka.","PlayerID":848999671,"Points":5815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52473","ServerKey":"pl181","X":487,"Y":724},{"Bonus":0,"Continent":"K36","ID":52474,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52474","ServerKey":"pl181","X":645,"Y":325},{"Bonus":0,"Continent":"K33","ID":52475,"Name":"Wioska barbarzyƄska 008","PlayerID":849068662,"Points":6164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52475","ServerKey":"pl181","X":377,"Y":312},{"Bonus":0,"Continent":"K63","ID":52476,"Name":"0155","PlayerID":7085510,"Points":4744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52476","ServerKey":"pl181","X":369,"Y":679},{"Bonus":0,"Continent":"K42","ID":52477,"Name":"Avanti!","PlayerID":698625834,"Points":6649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52477","ServerKey":"pl181","X":275,"Y":482},{"Bonus":0,"Continent":"K42","ID":52478,"Name":"Avanti!","PlayerID":698625834,"Points":6473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52478","ServerKey":"pl181","X":273,"Y":485},{"Bonus":0,"Continent":"K33","ID":52479,"Name":"Babidi #5","PlayerID":849101962,"Points":4689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52479","ServerKey":"pl181","X":373,"Y":321},{"Bonus":0,"Continent":"K42","ID":52480,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52480","ServerKey":"pl181","X":286,"Y":444},{"Bonus":0,"Continent":"K24","ID":52481,"Name":"M001","PlayerID":699208929,"Points":8948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52481","ServerKey":"pl181","X":474,"Y":275},{"Bonus":7,"Continent":"K75","ID":52482,"Name":"Bagno","PlayerID":849040194,"Points":4209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52482","ServerKey":"pl181","X":589,"Y":708},{"Bonus":0,"Continent":"K42","ID":52483,"Name":"Dzik 5","PlayerID":8366045,"Points":9637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52483","ServerKey":"pl181","X":293,"Y":432},{"Bonus":0,"Continent":"K33","ID":52484,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":4712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52484","ServerKey":"pl181","X":332,"Y":355},{"Bonus":0,"Continent":"K36","ID":52485,"Name":"XDX","PlayerID":699098531,"Points":6301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52485","ServerKey":"pl181","X":612,"Y":312},{"Bonus":0,"Continent":"K25","ID":52486,"Name":"001 Lady mysza89100","PlayerID":698736778,"Points":4438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52486","ServerKey":"pl181","X":529,"Y":281},{"Bonus":0,"Continent":"K63","ID":52487,"Name":"01Wioska barbarzyƄska","PlayerID":699443920,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52487","ServerKey":"pl181","X":361,"Y":678},{"Bonus":0,"Continent":"K42","ID":52488,"Name":"Avanti!","PlayerID":698625834,"Points":2832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52488","ServerKey":"pl181","X":277,"Y":471},{"Bonus":0,"Continent":"K24","ID":52489,"Name":"#0245 colt9","PlayerID":1238300,"Points":5207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52489","ServerKey":"pl181","X":440,"Y":282},{"Bonus":0,"Continent":"K25","ID":52490,"Name":"1.A","PlayerID":849100611,"Points":4952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52490","ServerKey":"pl181","X":534,"Y":280},{"Bonus":0,"Continent":"K52","ID":52491,"Name":"003 Wioska B","PlayerID":6240801,"Points":4529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52491","ServerKey":"pl181","X":285,"Y":564},{"Bonus":0,"Continent":"K74","ID":52492,"Name":"New World","PlayerID":698152377,"Points":9387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52492","ServerKey":"pl181","X":408,"Y":704},{"Bonus":0,"Continent":"K33","ID":52493,"Name":"0027","PlayerID":2321390,"Points":2006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52493","ServerKey":"pl181","X":310,"Y":376},{"Bonus":0,"Continent":"K25","ID":52494,"Name":"stachowo","PlayerID":849101409,"Points":3227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52494","ServerKey":"pl181","X":595,"Y":293},{"Bonus":0,"Continent":"K66","ID":52495,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":8272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52495","ServerKey":"pl181","X":652,"Y":666},{"Bonus":0,"Continent":"K63","ID":52496,"Name":"007 | North","PlayerID":699511295,"Points":7221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52496","ServerKey":"pl181","X":387,"Y":698},{"Bonus":0,"Continent":"K25","ID":52497,"Name":"Wioska barbarzyƄska","PlayerID":8240677,"Points":7281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52497","ServerKey":"pl181","X":519,"Y":283},{"Bonus":0,"Continent":"K75","ID":52498,"Name":"-10-","PlayerID":849032414,"Points":9112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52498","ServerKey":"pl181","X":582,"Y":710},{"Bonus":0,"Continent":"K36","ID":52499,"Name":"zk potulice krynius148","PlayerID":849105232,"Points":2553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52499","ServerKey":"pl181","X":678,"Y":372},{"Bonus":0,"Continent":"K33","ID":52500,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":5780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52500","ServerKey":"pl181","X":371,"Y":322},{"Bonus":0,"Continent":"K66","ID":52501,"Name":"027","PlayerID":699099811,"Points":3420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52501","ServerKey":"pl181","X":690,"Y":619},{"Bonus":0,"Continent":"K52","ID":52502,"Name":"002 Wioska A","PlayerID":6240801,"Points":6523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52502","ServerKey":"pl181","X":286,"Y":564},{"Bonus":0,"Continent":"K75","ID":52505,"Name":"nie grasz obok mnie?","PlayerID":6116940,"Points":3911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52505","ServerKey":"pl181","X":527,"Y":718},{"Bonus":0,"Continent":"K66","ID":52506,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":6861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52506","ServerKey":"pl181","X":681,"Y":627},{"Bonus":0,"Continent":"K66","ID":52507,"Name":"#165#","PlayerID":692803,"Points":4912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52507","ServerKey":"pl181","X":654,"Y":664},{"Bonus":0,"Continent":"K52","ID":52508,"Name":"C0275","PlayerID":8841266,"Points":4563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52508","ServerKey":"pl181","X":287,"Y":545},{"Bonus":0,"Continent":"K24","ID":52509,"Name":"241...NORTH","PlayerID":6920960,"Points":2339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52509","ServerKey":"pl181","X":444,"Y":279},{"Bonus":0,"Continent":"K25","ID":52510,"Name":"069 Wioska barbarzyƄska","PlayerID":699854484,"Points":8868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52510","ServerKey":"pl181","X":540,"Y":277},{"Bonus":0,"Continent":"K66","ID":52512,"Name":"Azyl 8","PlayerID":849096354,"Points":2296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52512","ServerKey":"pl181","X":631,"Y":686},{"Bonus":0,"Continent":"K33","ID":52513,"Name":"BOSS NW","PlayerID":849101604,"Points":7852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52513","ServerKey":"pl181","X":345,"Y":334},{"Bonus":0,"Continent":"K25","ID":52514,"Name":"B008","PlayerID":699485250,"Points":10211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52514","ServerKey":"pl181","X":518,"Y":276},{"Bonus":0,"Continent":"K36","ID":52515,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52515","ServerKey":"pl181","X":652,"Y":336},{"Bonus":0,"Continent":"K25","ID":52516,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52516","ServerKey":"pl181","X":509,"Y":274},{"Bonus":0,"Continent":"K63","ID":52517,"Name":"BOA1","PlayerID":699829494,"Points":6552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52517","ServerKey":"pl181","X":308,"Y":620},{"Bonus":0,"Continent":"K47","ID":52518,"Name":"066.","PlayerID":849094609,"Points":2641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52518","ServerKey":"pl181","X":717,"Y":463},{"Bonus":0,"Continent":"K33","ID":52519,"Name":"MƚCIWY KRIS 05","PlayerID":698757439,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52519","ServerKey":"pl181","X":344,"Y":335},{"Bonus":0,"Continent":"K35","ID":52520,"Name":"AAA","PlayerID":1006847,"Points":7337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52520","ServerKey":"pl181","X":535,"Y":332},{"Bonus":0,"Continent":"K36","ID":52521,"Name":"015 Schwere Panzer-Abteilung 503","PlayerID":849091899,"Points":2437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52521","ServerKey":"pl181","X":606,"Y":357},{"Bonus":0,"Continent":"K36","ID":52522,"Name":"WOLA0000","PlayerID":6956104,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52522","ServerKey":"pl181","X":678,"Y":363},{"Bonus":0,"Continent":"K74","ID":52523,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52523","ServerKey":"pl181","X":429,"Y":716},{"Bonus":0,"Continent":"K74","ID":52524,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52524","ServerKey":"pl181","X":406,"Y":707},{"Bonus":5,"Continent":"K63","ID":52525,"Name":"C036","PlayerID":699383279,"Points":9883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52525","ServerKey":"pl181","X":354,"Y":673},{"Bonus":0,"Continent":"K33","ID":52526,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":4102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52526","ServerKey":"pl181","X":367,"Y":322},{"Bonus":0,"Continent":"K66","ID":52527,"Name":"#Kresy","PlayerID":2665207,"Points":6295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52527","ServerKey":"pl181","X":629,"Y":680},{"Bonus":0,"Continent":"K57","ID":52528,"Name":"Wioska wilka 04","PlayerID":699878150,"Points":7479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52528","ServerKey":"pl181","X":715,"Y":559},{"Bonus":0,"Continent":"K34","ID":52529,"Name":"Wioska Sindbad00","PlayerID":698231772,"Points":5295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52529","ServerKey":"pl181","X":415,"Y":316},{"Bonus":0,"Continent":"K74","ID":52530,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":7973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52530","ServerKey":"pl181","X":403,"Y":701},{"Bonus":0,"Continent":"K66","ID":52531,"Name":"034","PlayerID":2323859,"Points":1946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52531","ServerKey":"pl181","X":668,"Y":646},{"Bonus":0,"Continent":"K66","ID":52532,"Name":"015 Twierdza","PlayerID":849104328,"Points":6158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52532","ServerKey":"pl181","X":633,"Y":680},{"Bonus":0,"Continent":"K42","ID":52533,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52533","ServerKey":"pl181","X":289,"Y":447},{"Bonus":0,"Continent":"K66","ID":52534,"Name":"komandos. Ddddddd","PlayerID":7976264,"Points":5182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52534","ServerKey":"pl181","X":669,"Y":651},{"Bonus":0,"Continent":"K36","ID":52535,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52535","ServerKey":"pl181","X":650,"Y":331},{"Bonus":0,"Continent":"K47","ID":52536,"Name":"S03","PlayerID":113796,"Points":5360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52536","ServerKey":"pl181","X":718,"Y":474},{"Bonus":0,"Continent":"K46","ID":52537,"Name":"Wioska19","PlayerID":848935020,"Points":1360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52537","ServerKey":"pl181","X":623,"Y":476},{"Bonus":0,"Continent":"K74","ID":52538,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52538","ServerKey":"pl181","X":450,"Y":722},{"Bonus":0,"Continent":"K75","ID":52539,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52539","ServerKey":"pl181","X":554,"Y":721},{"Bonus":0,"Continent":"K42","ID":52540,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52540","ServerKey":"pl181","X":281,"Y":448},{"Bonus":0,"Continent":"K36","ID":52541,"Name":"MJ14","PlayerID":8669398,"Points":4032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52541","ServerKey":"pl181","X":686,"Y":375},{"Bonus":0,"Continent":"K63","ID":52542,"Name":"075 Wioska barbarzyƄska","PlayerID":6354098,"Points":4124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52542","ServerKey":"pl181","X":346,"Y":667},{"Bonus":0,"Continent":"K75","ID":52543,"Name":"MERHET","PlayerID":698215322,"Points":1262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52543","ServerKey":"pl181","X":590,"Y":706},{"Bonus":0,"Continent":"K33","ID":52544,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":6568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52544","ServerKey":"pl181","X":366,"Y":316},{"Bonus":0,"Continent":"K33","ID":52546,"Name":"NP 06","PlayerID":849076810,"Points":6639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52546","ServerKey":"pl181","X":304,"Y":393},{"Bonus":0,"Continent":"K63","ID":52547,"Name":"Wioska 0013","PlayerID":9186126,"Points":10375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52547","ServerKey":"pl181","X":338,"Y":654},{"Bonus":0,"Continent":"K74","ID":52548,"Name":"R 045 ~Kurast~","PlayerID":699195358,"Points":7682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52548","ServerKey":"pl181","X":492,"Y":728},{"Bonus":0,"Continent":"K33","ID":52549,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52549","ServerKey":"pl181","X":314,"Y":377},{"Bonus":0,"Continent":"K56","ID":52550,"Name":"027.","PlayerID":8900955,"Points":9189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52550","ServerKey":"pl181","X":622,"Y":546},{"Bonus":0,"Continent":"K36","ID":52551,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52551","ServerKey":"pl181","X":614,"Y":305},{"Bonus":0,"Continent":"K42","ID":52553,"Name":"[0204]","PlayerID":8630972,"Points":7675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52553","ServerKey":"pl181","X":276,"Y":498},{"Bonus":0,"Continent":"K36","ID":52554,"Name":"-1-","PlayerID":849105420,"Points":9464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52554","ServerKey":"pl181","X":631,"Y":319},{"Bonus":6,"Continent":"K63","ID":52555,"Name":"015","PlayerID":699356968,"Points":9647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52555","ServerKey":"pl181","X":304,"Y":615},{"Bonus":0,"Continent":"K42","ID":52556,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52556","ServerKey":"pl181","X":292,"Y":428},{"Bonus":5,"Continent":"K52","ID":52557,"Name":"004","PlayerID":698353083,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52557","ServerKey":"pl181","X":275,"Y":537},{"Bonus":0,"Continent":"K42","ID":52558,"Name":".2.","PlayerID":762975,"Points":1812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52558","ServerKey":"pl181","X":297,"Y":403},{"Bonus":0,"Continent":"K42","ID":52559,"Name":"Avanti!","PlayerID":698625834,"Points":7465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52559","ServerKey":"pl181","X":275,"Y":483},{"Bonus":0,"Continent":"K54","ID":52560,"Name":"#0142 Befsztyk","PlayerID":9272054,"Points":3143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52560","ServerKey":"pl181","X":487,"Y":548},{"Bonus":0,"Continent":"K76","ID":52561,"Name":"Ć»UBEREK 101 - jak tak to tak","PlayerID":33900,"Points":9388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52561","ServerKey":"pl181","X":608,"Y":701},{"Bonus":0,"Continent":"K25","ID":52562,"Name":"112 Wioska General Kaczor","PlayerID":699854484,"Points":7985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52562","ServerKey":"pl181","X":545,"Y":277},{"Bonus":0,"Continent":"K75","ID":52563,"Name":"UTAPAU 3","PlayerID":699383121,"Points":557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52563","ServerKey":"pl181","X":543,"Y":719},{"Bonus":0,"Continent":"K63","ID":52564,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52564","ServerKey":"pl181","X":356,"Y":675},{"Bonus":0,"Continent":"K36","ID":52565,"Name":"Wincy94 1","PlayerID":849048734,"Points":8266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52565","ServerKey":"pl181","X":648,"Y":328},{"Bonus":0,"Continent":"K25","ID":52566,"Name":"001","PlayerID":6925574,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52566","ServerKey":"pl181","X":566,"Y":286},{"Bonus":0,"Continent":"K25","ID":52567,"Name":"Wioska Pitter82","PlayerID":7427966,"Points":5075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52567","ServerKey":"pl181","X":545,"Y":283},{"Bonus":0,"Continent":"K43","ID":52568,"Name":"001c","PlayerID":8259895,"Points":4590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52568","ServerKey":"pl181","X":301,"Y":413},{"Bonus":5,"Continent":"K75","ID":52569,"Name":"z 058","PlayerID":699342219,"Points":10220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52569","ServerKey":"pl181","X":547,"Y":715},{"Bonus":0,"Continent":"K33","ID":52570,"Name":"Wiocha III","PlayerID":849106316,"Points":2391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52570","ServerKey":"pl181","X":337,"Y":348},{"Bonus":0,"Continent":"K74","ID":52571,"Name":"Kurnik","PlayerID":699603116,"Points":6175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52571","ServerKey":"pl181","X":442,"Y":715},{"Bonus":0,"Continent":"K57","ID":52573,"Name":"EE 011","PlayerID":849100149,"Points":4793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52573","ServerKey":"pl181","X":706,"Y":573},{"Bonus":2,"Continent":"K66","ID":52574,"Name":"Alicante","PlayerID":747422,"Points":3357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52574","ServerKey":"pl181","X":648,"Y":673},{"Bonus":0,"Continent":"K25","ID":52576,"Name":"Wioska 2","PlayerID":7427966,"Points":3167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52576","ServerKey":"pl181","X":550,"Y":278},{"Bonus":0,"Continent":"K57","ID":52577,"Name":"057","PlayerID":7085502,"Points":7336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52577","ServerKey":"pl181","X":713,"Y":563},{"Bonus":3,"Continent":"K75","ID":52579,"Name":"#0054","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52579","ServerKey":"pl181","X":576,"Y":711},{"Bonus":0,"Continent":"K25","ID":52580,"Name":"--029--","PlayerID":542253,"Points":8815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52580","ServerKey":"pl181","X":572,"Y":287},{"Bonus":0,"Continent":"K47","ID":52581,"Name":"C.049","PlayerID":9188016,"Points":4340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52581","ServerKey":"pl181","X":716,"Y":475},{"Bonus":8,"Continent":"K36","ID":52582,"Name":"021","PlayerID":9148043,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52582","ServerKey":"pl181","X":652,"Y":333},{"Bonus":0,"Continent":"K67","ID":52583,"Name":"xxx3","PlayerID":6921135,"Points":7086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52583","ServerKey":"pl181","X":702,"Y":605},{"Bonus":0,"Continent":"K36","ID":52584,"Name":"XDX","PlayerID":699098531,"Points":5002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52584","ServerKey":"pl181","X":611,"Y":309},{"Bonus":0,"Continent":"K47","ID":52586,"Name":"083","PlayerID":2135129,"Points":4015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52586","ServerKey":"pl181","X":713,"Y":419},{"Bonus":0,"Continent":"K67","ID":52587,"Name":"18k$ Grvvyq","PlayerID":699676005,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52587","ServerKey":"pl181","X":700,"Y":601},{"Bonus":0,"Continent":"K42","ID":52588,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52588","ServerKey":"pl181","X":282,"Y":441},{"Bonus":0,"Continent":"K52","ID":52589,"Name":"New WorldA","PlayerID":849084005,"Points":4257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52589","ServerKey":"pl181","X":282,"Y":521},{"Bonus":0,"Continent":"K24","ID":52590,"Name":"Wioska barbarzyƄska","PlayerID":849102150,"Points":2807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52590","ServerKey":"pl181","X":421,"Y":297},{"Bonus":0,"Continent":"K57","ID":52592,"Name":"47. Ɓukomorze","PlayerID":8976313,"Points":3527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52592","ServerKey":"pl181","X":722,"Y":541},{"Bonus":0,"Continent":"K63","ID":52593,"Name":"Psycha Siada","PlayerID":8099868,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52593","ServerKey":"pl181","X":330,"Y":646},{"Bonus":0,"Continent":"K25","ID":52594,"Name":"D020","PlayerID":699299123,"Points":4099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52594","ServerKey":"pl181","X":560,"Y":287},{"Bonus":0,"Continent":"K75","ID":52595,"Name":"C015","PlayerID":698599365,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52595","ServerKey":"pl181","X":540,"Y":721},{"Bonus":0,"Continent":"K66","ID":52596,"Name":"003 Twierdza","PlayerID":849104328,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52596","ServerKey":"pl181","X":634,"Y":680},{"Bonus":0,"Continent":"K24","ID":52597,"Name":"#0238 colt9","PlayerID":1238300,"Points":5602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52597","ServerKey":"pl181","X":435,"Y":285},{"Bonus":0,"Continent":"K63","ID":52598,"Name":"059 Wioska barbarzyƄska","PlayerID":6354098,"Points":4084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52598","ServerKey":"pl181","X":342,"Y":662},{"Bonus":0,"Continent":"K45","ID":52599,"Name":"Wioska barbarzyƄska 020","PlayerID":6343784,"Points":8678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52599","ServerKey":"pl181","X":595,"Y":404},{"Bonus":0,"Continent":"K25","ID":52600,"Name":"North 092","PlayerID":849064752,"Points":4018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52600","ServerKey":"pl181","X":505,"Y":283},{"Bonus":0,"Continent":"K67","ID":52601,"Name":"WZ02","PlayerID":7142659,"Points":9695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52601","ServerKey":"pl181","X":700,"Y":607},{"Bonus":0,"Continent":"K62","ID":52602,"Name":"Nowy 0003","PlayerID":849096972,"Points":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52602","ServerKey":"pl181","X":299,"Y":601},{"Bonus":0,"Continent":"K25","ID":52603,"Name":"PPF-19","PlayerID":1424656,"Points":4253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52603","ServerKey":"pl181","X":532,"Y":276},{"Bonus":0,"Continent":"K24","ID":52604,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":3751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52604","ServerKey":"pl181","X":463,"Y":281},{"Bonus":0,"Continent":"K74","ID":52605,"Name":"Wioska kosmo1972","PlayerID":7499430,"Points":6057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52605","ServerKey":"pl181","X":424,"Y":714},{"Bonus":0,"Continent":"K66","ID":52606,"Name":"Nowa Baza 6","PlayerID":698353083,"Points":6575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52606","ServerKey":"pl181","X":615,"Y":695},{"Bonus":0,"Continent":"K36","ID":52607,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52607","ServerKey":"pl181","X":622,"Y":307},{"Bonus":0,"Continent":"K63","ID":52608,"Name":"053 Wioska barbarzyƄska","PlayerID":6354098,"Points":4059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52608","ServerKey":"pl181","X":345,"Y":664},{"Bonus":0,"Continent":"K36","ID":52609,"Name":"Lipa","PlayerID":849095509,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52609","ServerKey":"pl181","X":671,"Y":359},{"Bonus":0,"Continent":"K33","ID":52610,"Name":"Szlachcic","PlayerID":698388578,"Points":4337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52610","ServerKey":"pl181","X":362,"Y":332},{"Bonus":3,"Continent":"K57","ID":52611,"Name":"Osada koczownikĂłw","PlayerID":848946700,"Points":9407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52611","ServerKey":"pl181","X":717,"Y":547},{"Bonus":0,"Continent":"K52","ID":52612,"Name":"007","PlayerID":849097898,"Points":9751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52612","ServerKey":"pl181","X":287,"Y":575},{"Bonus":0,"Continent":"K33","ID":52613,"Name":"Wiocha","PlayerID":849106316,"Points":6858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52613","ServerKey":"pl181","X":336,"Y":350},{"Bonus":0,"Continent":"K33","ID":52614,"Name":"Efekty specjalne","PlayerID":6416213,"Points":4708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52614","ServerKey":"pl181","X":361,"Y":328},{"Bonus":0,"Continent":"K63","ID":52615,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":9351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52615","ServerKey":"pl181","X":358,"Y":675},{"Bonus":0,"Continent":"K33","ID":52616,"Name":"013","PlayerID":849101205,"Points":3173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52616","ServerKey":"pl181","X":341,"Y":348},{"Bonus":4,"Continent":"K47","ID":52617,"Name":"A#012","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52617","ServerKey":"pl181","X":723,"Y":491},{"Bonus":0,"Continent":"K25","ID":52618,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52618","ServerKey":"pl181","X":510,"Y":280},{"Bonus":0,"Continent":"K42","ID":52619,"Name":"Avanti!","PlayerID":698625834,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52619","ServerKey":"pl181","X":283,"Y":480},{"Bonus":0,"Continent":"K52","ID":52621,"Name":"Początek","PlayerID":7842579,"Points":9739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52621","ServerKey":"pl181","X":289,"Y":581},{"Bonus":0,"Continent":"K33","ID":52622,"Name":"Wioska barbarzyƄska 010","PlayerID":849068662,"Points":4224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52622","ServerKey":"pl181","X":377,"Y":320},{"Bonus":0,"Continent":"K52","ID":52623,"Name":"Wyspa 032","PlayerID":225023,"Points":4411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52623","ServerKey":"pl181","X":291,"Y":562},{"Bonus":0,"Continent":"K36","ID":52624,"Name":"t011","PlayerID":2262902,"Points":7975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52624","ServerKey":"pl181","X":671,"Y":349},{"Bonus":0,"Continent":"K52","ID":52625,"Name":"Arczi997","PlayerID":849055181,"Points":8688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52625","ServerKey":"pl181","X":297,"Y":516},{"Bonus":0,"Continent":"K74","ID":52626,"Name":"12. Remont na ƚw. Marcin","PlayerID":849092769,"Points":5331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52626","ServerKey":"pl181","X":462,"Y":723},{"Bonus":0,"Continent":"K47","ID":52627,"Name":"024 Z","PlayerID":699718269,"Points":986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52627","ServerKey":"pl181","X":718,"Y":480},{"Bonus":0,"Continent":"K52","ID":52628,"Name":"...::181 10::...","PlayerID":699641777,"Points":3268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52628","ServerKey":"pl181","X":273,"Y":514},{"Bonus":0,"Continent":"K33","ID":52629,"Name":"E01","PlayerID":6301789,"Points":4805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52629","ServerKey":"pl181","X":306,"Y":385},{"Bonus":0,"Continent":"K66","ID":52630,"Name":"Wioska barbarzyƄska","PlayerID":698353083,"Points":1025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52630","ServerKey":"pl181","X":614,"Y":688},{"Bonus":0,"Continent":"K63","ID":52631,"Name":"Wioska saba13","PlayerID":3101080,"Points":638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52631","ServerKey":"pl181","X":368,"Y":674},{"Bonus":0,"Continent":"K66","ID":52633,"Name":"o06","PlayerID":699189792,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52633","ServerKey":"pl181","X":612,"Y":699},{"Bonus":0,"Continent":"K47","ID":52635,"Name":"Tequila","PlayerID":699785935,"Points":7316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52635","ServerKey":"pl181","X":705,"Y":411},{"Bonus":0,"Continent":"K74","ID":52636,"Name":"0006 Wioska oracz1","PlayerID":699656989,"Points":9818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52636","ServerKey":"pl181","X":496,"Y":725},{"Bonus":0,"Continent":"K75","ID":52637,"Name":"Wioska barbarzyƄska","PlayerID":8991696,"Points":3956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52637","ServerKey":"pl181","X":593,"Y":705},{"Bonus":0,"Continent":"K57","ID":52638,"Name":"Wioska [3]","PlayerID":699858313,"Points":2291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52638","ServerKey":"pl181","X":723,"Y":511},{"Bonus":0,"Continent":"K25","ID":52639,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":8964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52639","ServerKey":"pl181","X":506,"Y":281},{"Bonus":0,"Continent":"K36","ID":52640,"Name":"#1 MatWa","PlayerID":849099517,"Points":10197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52640","ServerKey":"pl181","X":635,"Y":321},{"Bonus":0,"Continent":"K25","ID":52641,"Name":"--030--","PlayerID":542253,"Points":3728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52641","ServerKey":"pl181","X":575,"Y":296},{"Bonus":0,"Continent":"K33","ID":52642,"Name":"Wioska barbarzyƄska 016","PlayerID":849068662,"Points":9246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52642","ServerKey":"pl181","X":375,"Y":313},{"Bonus":0,"Continent":"K65","ID":52643,"Name":"R0se69","PlayerID":849106383,"Points":10055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52643","ServerKey":"pl181","X":543,"Y":665},{"Bonus":0,"Continent":"K25","ID":52644,"Name":"wancki i gustlikk","PlayerID":7758085,"Points":9032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52644","ServerKey":"pl181","X":505,"Y":282},{"Bonus":0,"Continent":"K63","ID":52645,"Name":"$004$ OXY","PlayerID":699550876,"Points":8195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52645","ServerKey":"pl181","X":308,"Y":621},{"Bonus":0,"Continent":"K74","ID":52646,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52646","ServerKey":"pl181","X":434,"Y":712},{"Bonus":0,"Continent":"K75","ID":52647,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52647","ServerKey":"pl181","X":555,"Y":721},{"Bonus":0,"Continent":"K47","ID":52648,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52648","ServerKey":"pl181","X":703,"Y":403},{"Bonus":6,"Continent":"K63","ID":52649,"Name":"0110","PlayerID":7085510,"Points":7608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52649","ServerKey":"pl181","X":374,"Y":684},{"Bonus":0,"Continent":"K57","ID":52651,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52651","ServerKey":"pl181","X":725,"Y":525},{"Bonus":0,"Continent":"K43","ID":52652,"Name":"Wioska proof333","PlayerID":698783754,"Points":7960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52652","ServerKey":"pl181","X":391,"Y":477},{"Bonus":0,"Continent":"K74","ID":52653,"Name":"006 - Budowanko!","PlayerID":7540891,"Points":7742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52653","ServerKey":"pl181","X":489,"Y":722},{"Bonus":9,"Continent":"K33","ID":52654,"Name":"Szlachcic","PlayerID":3484132,"Points":10476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52654","ServerKey":"pl181","X":364,"Y":316},{"Bonus":0,"Continent":"K63","ID":52655,"Name":"Wioska barbarzyƄska","PlayerID":2308351,"Points":957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52655","ServerKey":"pl181","X":392,"Y":698},{"Bonus":0,"Continent":"K52","ID":52656,"Name":"New WorldA","PlayerID":849084005,"Points":1966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52656","ServerKey":"pl181","X":279,"Y":537},{"Bonus":0,"Continent":"K47","ID":52657,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":3288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52657","ServerKey":"pl181","X":709,"Y":421},{"Bonus":0,"Continent":"K66","ID":52658,"Name":"Klatka9","PlayerID":6528152,"Points":2372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52658","ServerKey":"pl181","X":628,"Y":678},{"Bonus":0,"Continent":"K25","ID":52659,"Name":"North 041","PlayerID":849064752,"Points":7114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52659","ServerKey":"pl181","X":515,"Y":282},{"Bonus":0,"Continent":"K63","ID":52660,"Name":"Khorinis","PlayerID":698908184,"Points":9847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52660","ServerKey":"pl181","X":325,"Y":642},{"Bonus":0,"Continent":"K36","ID":52661,"Name":"Flap","PlayerID":699098531,"Points":6012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52661","ServerKey":"pl181","X":617,"Y":309},{"Bonus":0,"Continent":"K42","ID":52662,"Name":"Avanti!","PlayerID":698625834,"Points":4942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52662","ServerKey":"pl181","X":281,"Y":479},{"Bonus":0,"Continent":"K66","ID":52664,"Name":"Nowe IMPERIUM 4","PlayerID":698353083,"Points":6139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52664","ServerKey":"pl181","X":617,"Y":695},{"Bonus":0,"Continent":"K57","ID":52665,"Name":"CastAway !016","PlayerID":9314079,"Points":6468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52665","ServerKey":"pl181","X":710,"Y":589},{"Bonus":0,"Continent":"K36","ID":52666,"Name":"TOLCIA 2","PlayerID":699868739,"Points":5955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52666","ServerKey":"pl181","X":639,"Y":320},{"Bonus":0,"Continent":"K74","ID":52667,"Name":"045.","PlayerID":849034882,"Points":9990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52667","ServerKey":"pl181","X":463,"Y":721},{"Bonus":0,"Continent":"K42","ID":52668,"Name":"[0186]","PlayerID":8630972,"Points":7456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52668","ServerKey":"pl181","X":277,"Y":494},{"Bonus":0,"Continent":"K57","ID":52669,"Name":"CastAway #017","PlayerID":9314079,"Points":5842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52669","ServerKey":"pl181","X":712,"Y":585},{"Bonus":0,"Continent":"K66","ID":52670,"Name":"Azyl 5","PlayerID":849096354,"Points":2181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52670","ServerKey":"pl181","X":632,"Y":685},{"Bonus":0,"Continent":"K42","ID":52671,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52671","ServerKey":"pl181","X":283,"Y":438},{"Bonus":0,"Continent":"K24","ID":52672,"Name":"Wioska barbarzyƄska","PlayerID":3411571,"Points":2542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52672","ServerKey":"pl181","X":410,"Y":291},{"Bonus":0,"Continent":"K47","ID":52673,"Name":"029","PlayerID":849091105,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52673","ServerKey":"pl181","X":723,"Y":475},{"Bonus":0,"Continent":"K57","ID":52674,"Name":"065. Noszak","PlayerID":1601917,"Points":5438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52674","ServerKey":"pl181","X":720,"Y":529},{"Bonus":0,"Continent":"K74","ID":52675,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52675","ServerKey":"pl181","X":430,"Y":717},{"Bonus":0,"Continent":"K57","ID":52676,"Name":"Wioska","PlayerID":6921135,"Points":6074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52676","ServerKey":"pl181","X":700,"Y":599},{"Bonus":0,"Continent":"K36","ID":52677,"Name":"000","PlayerID":848889850,"Points":9200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52677","ServerKey":"pl181","X":653,"Y":342},{"Bonus":0,"Continent":"K75","ID":52678,"Name":"Wioska","PlayerID":849101102,"Points":5759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52678","ServerKey":"pl181","X":516,"Y":725},{"Bonus":0,"Continent":"K63","ID":52679,"Name":"158","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52679","ServerKey":"pl181","X":392,"Y":690},{"Bonus":0,"Continent":"K52","ID":52680,"Name":"C0351","PlayerID":8841266,"Points":2181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52680","ServerKey":"pl181","X":276,"Y":519},{"Bonus":0,"Continent":"K33","ID":52682,"Name":"Nagato - B 002","PlayerID":849094586,"Points":4018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52682","ServerKey":"pl181","X":316,"Y":364},{"Bonus":0,"Continent":"K63","ID":52683,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":6843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52683","ServerKey":"pl181","X":327,"Y":629},{"Bonus":0,"Continent":"K24","ID":52684,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52684","ServerKey":"pl181","X":422,"Y":286},{"Bonus":0,"Continent":"K24","ID":52685,"Name":"0077","PlayerID":848913037,"Points":4312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52685","ServerKey":"pl181","X":460,"Y":280},{"Bonus":0,"Continent":"K24","ID":52686,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":2507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52686","ServerKey":"pl181","X":464,"Y":278},{"Bonus":0,"Continent":"K24","ID":52688,"Name":"Op Konfederacja","PlayerID":848915730,"Points":3391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52688","ServerKey":"pl181","X":467,"Y":279},{"Bonus":0,"Continent":"K42","ID":52689,"Name":"Dzik 4","PlayerID":8366045,"Points":7988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52689","ServerKey":"pl181","X":295,"Y":425},{"Bonus":0,"Continent":"K33","ID":52690,"Name":"NP 08","PlayerID":849076810,"Points":3124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52690","ServerKey":"pl181","X":306,"Y":394},{"Bonus":0,"Continent":"K33","ID":52692,"Name":"Wioska barbarzyƄska 015","PlayerID":849068662,"Points":2871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52692","ServerKey":"pl181","X":386,"Y":312},{"Bonus":0,"Continent":"K63","ID":52693,"Name":"W00","PlayerID":698908184,"Points":7754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52693","ServerKey":"pl181","X":324,"Y":641},{"Bonus":0,"Continent":"K36","ID":52694,"Name":"WOLA0003","PlayerID":6956104,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52694","ServerKey":"pl181","X":682,"Y":363},{"Bonus":0,"Continent":"K74","ID":52695,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52695","ServerKey":"pl181","X":429,"Y":708},{"Bonus":0,"Continent":"K52","ID":52696,"Name":"[0263]","PlayerID":8630972,"Points":5517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52696","ServerKey":"pl181","X":279,"Y":512},{"Bonus":0,"Continent":"K36","ID":52697,"Name":"*021","PlayerID":7758085,"Points":5934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52697","ServerKey":"pl181","X":674,"Y":369},{"Bonus":0,"Continent":"K52","ID":52698,"Name":"005","PlayerID":698663855,"Points":8893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52698","ServerKey":"pl181","X":293,"Y":586},{"Bonus":4,"Continent":"K66","ID":52699,"Name":"#034#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52699","ServerKey":"pl181","X":638,"Y":674},{"Bonus":0,"Continent":"K24","ID":52700,"Name":"[0290]","PlayerID":8630972,"Points":4823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52700","ServerKey":"pl181","X":483,"Y":274},{"Bonus":0,"Continent":"K63","ID":52701,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":5926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52701","ServerKey":"pl181","X":380,"Y":689},{"Bonus":0,"Continent":"K52","ID":52702,"Name":"C0286","PlayerID":8841266,"Points":4087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52702","ServerKey":"pl181","X":281,"Y":548},{"Bonus":0,"Continent":"K36","ID":52703,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52703","ServerKey":"pl181","X":647,"Y":332},{"Bonus":0,"Continent":"K75","ID":52704,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":5595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52704","ServerKey":"pl181","X":555,"Y":711},{"Bonus":0,"Continent":"K75","ID":52705,"Name":"-09-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52705","ServerKey":"pl181","X":583,"Y":709},{"Bonus":0,"Continent":"K42","ID":52706,"Name":"P1Kasik","PlayerID":699627771,"Points":7343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52706","ServerKey":"pl181","X":277,"Y":452},{"Bonus":0,"Continent":"K33","ID":52707,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52707","ServerKey":"pl181","X":388,"Y":303},{"Bonus":0,"Continent":"K66","ID":52708,"Name":"Wioska Sir dziadekk19","PlayerID":698353083,"Points":787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52708","ServerKey":"pl181","X":612,"Y":695},{"Bonus":0,"Continent":"K42","ID":52709,"Name":"001","PlayerID":699844314,"Points":3325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52709","ServerKey":"pl181","X":279,"Y":458},{"Bonus":0,"Continent":"K63","ID":52710,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":3776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52710","ServerKey":"pl181","X":380,"Y":688},{"Bonus":0,"Continent":"K24","ID":52711,"Name":"[0178]","PlayerID":8630972,"Points":8538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52711","ServerKey":"pl181","X":455,"Y":281},{"Bonus":0,"Continent":"K57","ID":52712,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":3126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52712","ServerKey":"pl181","X":719,"Y":542},{"Bonus":0,"Continent":"K42","ID":52713,"Name":"Wioska 1","PlayerID":699763225,"Points":5849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52713","ServerKey":"pl181","X":295,"Y":407},{"Bonus":0,"Continent":"K75","ID":52714,"Name":"016","PlayerID":698996782,"Points":4502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52714","ServerKey":"pl181","X":532,"Y":726},{"Bonus":0,"Continent":"K74","ID":52716,"Name":"Kurnik","PlayerID":699603116,"Points":4158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52716","ServerKey":"pl181","X":443,"Y":714},{"Bonus":0,"Continent":"K36","ID":52717,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52717","ServerKey":"pl181","X":648,"Y":329},{"Bonus":2,"Continent":"K57","ID":52718,"Name":"Gryfios 094","PlayerID":698666810,"Points":11365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52718","ServerKey":"pl181","X":720,"Y":545},{"Bonus":0,"Continent":"K66","ID":52719,"Name":"PoƂudniowy WschĂłd 008","PlayerID":699778867,"Points":1773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52719","ServerKey":"pl181","X":695,"Y":610},{"Bonus":0,"Continent":"K66","ID":52720,"Name":"KOƁO","PlayerID":2371436,"Points":2809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52720","ServerKey":"pl181","X":656,"Y":664},{"Bonus":0,"Continent":"K75","ID":52721,"Name":"#298 C","PlayerID":9037756,"Points":4190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52721","ServerKey":"pl181","X":508,"Y":725},{"Bonus":0,"Continent":"K52","ID":52722,"Name":"0000028Z","PlayerID":849089881,"Points":9422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52722","ServerKey":"pl181","X":289,"Y":560},{"Bonus":0,"Continent":"K74","ID":52723,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52723","ServerKey":"pl181","X":426,"Y":706},{"Bonus":0,"Continent":"K63","ID":52724,"Name":"010 | North","PlayerID":699511295,"Points":4187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52724","ServerKey":"pl181","X":383,"Y":694},{"Bonus":0,"Continent":"K36","ID":52725,"Name":"BRAWO [01]","PlayerID":849006385,"Points":1840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52725","ServerKey":"pl181","X":629,"Y":321},{"Bonus":0,"Continent":"K47","ID":52726,"Name":"Wioska Kostek33","PlayerID":849095599,"Points":3348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52726","ServerKey":"pl181","X":713,"Y":449},{"Bonus":0,"Continent":"K52","ID":52727,"Name":"U.002","PlayerID":849088243,"Points":8209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52727","ServerKey":"pl181","X":288,"Y":564},{"Bonus":0,"Continent":"K47","ID":52728,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":4906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52728","ServerKey":"pl181","X":725,"Y":481},{"Bonus":0,"Continent":"K24","ID":52729,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52729","ServerKey":"pl181","X":420,"Y":292},{"Bonus":0,"Continent":"K36","ID":52730,"Name":"!36 55 Negostina","PlayerID":698361257,"Points":4956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52730","ServerKey":"pl181","X":657,"Y":359},{"Bonus":0,"Continent":"K33","ID":52731,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":6930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52731","ServerKey":"pl181","X":373,"Y":313},{"Bonus":0,"Continent":"K33","ID":52733,"Name":"Szlachcic","PlayerID":698388578,"Points":4804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52733","ServerKey":"pl181","X":361,"Y":330},{"Bonus":0,"Continent":"K53","ID":52734,"Name":"000 Plutosea","PlayerID":9280477,"Points":8579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52734","ServerKey":"pl181","X":317,"Y":561},{"Bonus":0,"Continent":"K75","ID":52735,"Name":"-01-","PlayerID":849032414,"Points":9472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52735","ServerKey":"pl181","X":580,"Y":705},{"Bonus":0,"Continent":"K33","ID":52736,"Name":"Wioska RROO","PlayerID":849084066,"Points":7735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52736","ServerKey":"pl181","X":389,"Y":305},{"Bonus":0,"Continent":"K24","ID":52737,"Name":"006","PlayerID":699562874,"Points":4351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52737","ServerKey":"pl181","X":469,"Y":274},{"Bonus":4,"Continent":"K47","ID":52738,"Name":"A#011","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52738","ServerKey":"pl181","X":724,"Y":492},{"Bonus":0,"Continent":"K25","ID":52739,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52739","ServerKey":"pl181","X":506,"Y":276},{"Bonus":0,"Continent":"K33","ID":52741,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":4679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52741","ServerKey":"pl181","X":333,"Y":353},{"Bonus":8,"Continent":"K75","ID":52742,"Name":"0003 Osada koczownikĂłw","PlayerID":699656989,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52742","ServerKey":"pl181","X":505,"Y":724},{"Bonus":0,"Continent":"K75","ID":52743,"Name":"-19-","PlayerID":849032414,"Points":5693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52743","ServerKey":"pl181","X":579,"Y":706},{"Bonus":0,"Continent":"K36","ID":52744,"Name":"024. Wioska barbarzyƄska","PlayerID":2873154,"Points":5499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52744","ServerKey":"pl181","X":683,"Y":369},{"Bonus":0,"Continent":"K47","ID":52745,"Name":"Wschodnia StraĆŒnica","PlayerID":849101378,"Points":9119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52745","ServerKey":"pl181","X":711,"Y":437},{"Bonus":0,"Continent":"K63","ID":52746,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":1314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52746","ServerKey":"pl181","X":370,"Y":686},{"Bonus":0,"Continent":"K75","ID":52747,"Name":"TYLOS","PlayerID":6299408,"Points":8928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52747","ServerKey":"pl181","X":559,"Y":714},{"Bonus":0,"Continent":"K36","ID":52748,"Name":"Wioska barbarzyƄska","PlayerID":849102068,"Points":2582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52748","ServerKey":"pl181","X":630,"Y":322},{"Bonus":0,"Continent":"K36","ID":52749,"Name":"jlkllklll","PlayerID":7646152,"Points":6845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52749","ServerKey":"pl181","X":665,"Y":343},{"Bonus":0,"Continent":"K63","ID":52750,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52750","ServerKey":"pl181","X":335,"Y":649},{"Bonus":0,"Continent":"K25","ID":52751,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":4670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52751","ServerKey":"pl181","X":585,"Y":292},{"Bonus":0,"Continent":"K42","ID":52752,"Name":"Avanti!","PlayerID":698625834,"Points":6458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52752","ServerKey":"pl181","X":273,"Y":486},{"Bonus":0,"Continent":"K65","ID":52753,"Name":"###151###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52753","ServerKey":"pl181","X":580,"Y":681},{"Bonus":0,"Continent":"K33","ID":52754,"Name":"Wawel","PlayerID":849098731,"Points":3263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52754","ServerKey":"pl181","X":324,"Y":355},{"Bonus":0,"Continent":"K52","ID":52755,"Name":"Wioska b","PlayerID":699805379,"Points":1254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52755","ServerKey":"pl181","X":281,"Y":530},{"Bonus":0,"Continent":"K74","ID":52756,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52756","ServerKey":"pl181","X":421,"Y":714},{"Bonus":0,"Continent":"K65","ID":52757,"Name":"wy...m","PlayerID":699828685,"Points":4453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52757","ServerKey":"pl181","X":597,"Y":699},{"Bonus":0,"Continent":"K57","ID":52758,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52758","ServerKey":"pl181","X":715,"Y":550},{"Bonus":0,"Continent":"K75","ID":52759,"Name":"0009","PlayerID":698723158,"Points":5730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52759","ServerKey":"pl181","X":573,"Y":707},{"Bonus":0,"Continent":"K25","ID":52761,"Name":"=SAwars=02=","PlayerID":849106420,"Points":6574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52761","ServerKey":"pl181","X":565,"Y":281},{"Bonus":0,"Continent":"K57","ID":52763,"Name":"066. Nebo","PlayerID":1601917,"Points":5436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52763","ServerKey":"pl181","X":713,"Y":546},{"Bonus":0,"Continent":"K36","ID":52764,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52764","ServerKey":"pl181","X":657,"Y":342},{"Bonus":0,"Continent":"K75","ID":52765,"Name":"#0086","PlayerID":1536231,"Points":6168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52765","ServerKey":"pl181","X":576,"Y":713},{"Bonus":0,"Continent":"K47","ID":52766,"Name":"Wioska barbarzyƄska","PlayerID":8459255,"Points":4328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52766","ServerKey":"pl181","X":703,"Y":407},{"Bonus":0,"Continent":"K57","ID":52767,"Name":"032 Legio IX Tempestas","PlayerID":699878150,"Points":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52767","ServerKey":"pl181","X":713,"Y":579},{"Bonus":0,"Continent":"K52","ID":52768,"Name":"Wioska barbarzyƄska","PlayerID":8841266,"Points":1211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52768","ServerKey":"pl181","X":274,"Y":532},{"Bonus":0,"Continent":"K36","ID":52770,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52770","ServerKey":"pl181","X":644,"Y":331},{"Bonus":0,"Continent":"K63","ID":52771,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":5415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52771","ServerKey":"pl181","X":310,"Y":609},{"Bonus":0,"Continent":"K75","ID":52772,"Name":"UTAPAU 2","PlayerID":699383121,"Points":405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52772","ServerKey":"pl181","X":542,"Y":722},{"Bonus":0,"Continent":"K33","ID":52773,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":1024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52773","ServerKey":"pl181","X":379,"Y":307},{"Bonus":0,"Continent":"K36","ID":52774,"Name":"Ć»yleta","PlayerID":699875213,"Points":2412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52774","ServerKey":"pl181","X":681,"Y":360},{"Bonus":0,"Continent":"K36","ID":52775,"Name":"*012","PlayerID":7758085,"Points":8368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52775","ServerKey":"pl181","X":676,"Y":364},{"Bonus":0,"Continent":"K33","ID":52776,"Name":"PIROTECHNIK 008","PlayerID":849101083,"Points":2424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52776","ServerKey":"pl181","X":349,"Y":341},{"Bonus":0,"Continent":"K74","ID":52777,"Name":"9.P","PlayerID":699777372,"Points":4870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52777","ServerKey":"pl181","X":461,"Y":725},{"Bonus":0,"Continent":"K63","ID":52778,"Name":"0156","PlayerID":7085510,"Points":3735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52778","ServerKey":"pl181","X":366,"Y":680},{"Bonus":0,"Continent":"K33","ID":52779,"Name":"BOSS N","PlayerID":849101604,"Points":6080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52779","ServerKey":"pl181","X":353,"Y":336},{"Bonus":0,"Continent":"K25","ID":52780,"Name":"Wioska barbarzyƄska","PlayerID":8240677,"Points":6403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52780","ServerKey":"pl181","X":535,"Y":283},{"Bonus":0,"Continent":"K34","ID":52782,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52782","ServerKey":"pl181","X":400,"Y":300},{"Bonus":0,"Continent":"K66","ID":52783,"Name":"052.","PlayerID":699373599,"Points":4277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52783","ServerKey":"pl181","X":640,"Y":670},{"Bonus":0,"Continent":"K55","ID":52784,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52784","ServerKey":"pl181","X":508,"Y":527},{"Bonus":7,"Continent":"K52","ID":52785,"Name":"Osada koczownikĂłw","PlayerID":7530708,"Points":2589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52785","ServerKey":"pl181","X":278,"Y":519},{"Bonus":0,"Continent":"K36","ID":52786,"Name":"0125","PlayerID":698416970,"Points":528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52786","ServerKey":"pl181","X":696,"Y":387},{"Bonus":0,"Continent":"K42","ID":52787,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52787","ServerKey":"pl181","X":292,"Y":435},{"Bonus":0,"Continent":"K24","ID":52788,"Name":"Wioska janusz6161","PlayerID":699863708,"Points":6967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52788","ServerKey":"pl181","X":465,"Y":282},{"Bonus":7,"Continent":"K66","ID":52789,"Name":"Ć»UBEREK 004","PlayerID":33900,"Points":8784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52789","ServerKey":"pl181","X":613,"Y":686},{"Bonus":0,"Continent":"K63","ID":52790,"Name":"159","PlayerID":849099876,"Points":8278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52790","ServerKey":"pl181","X":389,"Y":691},{"Bonus":0,"Continent":"K63","ID":52791,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":4415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52791","ServerKey":"pl181","X":380,"Y":687},{"Bonus":0,"Continent":"K25","ID":52793,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":9921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52793","ServerKey":"pl181","X":593,"Y":295},{"Bonus":0,"Continent":"K53","ID":52794,"Name":"37.","PlayerID":3990066,"Points":1363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52794","ServerKey":"pl181","X":350,"Y":581},{"Bonus":0,"Continent":"K66","ID":52795,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":4922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52795","ServerKey":"pl181","X":670,"Y":644},{"Bonus":0,"Continent":"K47","ID":52796,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52796","ServerKey":"pl181","X":724,"Y":474},{"Bonus":0,"Continent":"K75","ID":52797,"Name":"#0082","PlayerID":1536231,"Points":4076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52797","ServerKey":"pl181","X":574,"Y":715},{"Bonus":0,"Continent":"K74","ID":52798,"Name":"11. Porsche","PlayerID":849100262,"Points":5775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52798","ServerKey":"pl181","X":463,"Y":724},{"Bonus":7,"Continent":"K33","ID":52799,"Name":"Osada koczownikĂłw","PlayerID":698817235,"Points":4660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52799","ServerKey":"pl181","X":344,"Y":344},{"Bonus":0,"Continent":"K53","ID":52800,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":1138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52800","ServerKey":"pl181","X":394,"Y":516},{"Bonus":0,"Continent":"K33","ID":52801,"Name":"030 VFF Wioska barbarzyƄska","PlayerID":3108144,"Points":1957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52801","ServerKey":"pl181","X":320,"Y":365},{"Bonus":0,"Continent":"K63","ID":52802,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52802","ServerKey":"pl181","X":326,"Y":637},{"Bonus":0,"Continent":"K24","ID":52803,"Name":"#0157 barbarzyƄska","PlayerID":1238300,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52803","ServerKey":"pl181","X":480,"Y":275},{"Bonus":0,"Continent":"K25","ID":52804,"Name":"=SAwars=01=","PlayerID":849106420,"Points":8512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52804","ServerKey":"pl181","X":565,"Y":282},{"Bonus":0,"Continent":"K74","ID":52805,"Name":"019 - Budowanko!","PlayerID":7540891,"Points":6795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52805","ServerKey":"pl181","X":484,"Y":727},{"Bonus":0,"Continent":"K42","ID":52806,"Name":"Avanti!","PlayerID":698625834,"Points":6622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52806","ServerKey":"pl181","X":276,"Y":482},{"Bonus":0,"Continent":"K63","ID":52807,"Name":"066 Wioska barbarzyƄska","PlayerID":6354098,"Points":3321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52807","ServerKey":"pl181","X":340,"Y":661},{"Bonus":2,"Continent":"K74","ID":52808,"Name":"183","PlayerID":849099876,"Points":9968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52808","ServerKey":"pl181","X":410,"Y":700},{"Bonus":0,"Continent":"K46","ID":52809,"Name":"001","PlayerID":849085371,"Points":9002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52809","ServerKey":"pl181","X":699,"Y":406},{"Bonus":0,"Continent":"K42","ID":52810,"Name":"K42 ADAMUS 018","PlayerID":6212605,"Points":4658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52810","ServerKey":"pl181","X":284,"Y":425},{"Bonus":0,"Continent":"K66","ID":52811,"Name":"Ć»UBRAWKA 013","PlayerID":33900,"Points":5581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52811","ServerKey":"pl181","X":606,"Y":625},{"Bonus":0,"Continent":"K52","ID":52812,"Name":"[0291]","PlayerID":8630972,"Points":9357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52812","ServerKey":"pl181","X":279,"Y":505},{"Bonus":0,"Continent":"K24","ID":52813,"Name":"[0160]","PlayerID":8630972,"Points":8816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52813","ServerKey":"pl181","X":452,"Y":285},{"Bonus":0,"Continent":"K43","ID":52814,"Name":"wioska prezesa","PlayerID":849089601,"Points":2295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52814","ServerKey":"pl181","X":304,"Y":400},{"Bonus":0,"Continent":"K36","ID":52815,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52815","ServerKey":"pl181","X":645,"Y":324},{"Bonus":0,"Continent":"K74","ID":52817,"Name":"Domek Miniuka 02","PlayerID":848999671,"Points":4785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52817","ServerKey":"pl181","X":480,"Y":726},{"Bonus":0,"Continent":"K52","ID":52818,"Name":"New WorldA","PlayerID":849084005,"Points":2094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52818","ServerKey":"pl181","X":283,"Y":525},{"Bonus":0,"Continent":"K66","ID":52819,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52819","ServerKey":"pl181","X":670,"Y":639},{"Bonus":0,"Continent":"K74","ID":52820,"Name":"0020 Wioska piratwoj","PlayerID":699656989,"Points":9309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52820","ServerKey":"pl181","X":492,"Y":725},{"Bonus":0,"Continent":"K74","ID":52821,"Name":"New World","PlayerID":698152377,"Points":5463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52821","ServerKey":"pl181","X":415,"Y":708},{"Bonus":0,"Continent":"K63","ID":52822,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52822","ServerKey":"pl181","X":395,"Y":693},{"Bonus":0,"Continent":"K47","ID":52823,"Name":"[813] Odludzie","PlayerID":848985692,"Points":6654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52823","ServerKey":"pl181","X":712,"Y":430},{"Bonus":0,"Continent":"K33","ID":52824,"Name":"Raskipek","PlayerID":849021566,"Points":1636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52824","ServerKey":"pl181","X":349,"Y":339},{"Bonus":0,"Continent":"K33","ID":52825,"Name":"Hacperek","PlayerID":698906190,"Points":5128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52825","ServerKey":"pl181","X":361,"Y":329},{"Bonus":0,"Continent":"K63","ID":52826,"Name":"010","PlayerID":699356968,"Points":4727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52826","ServerKey":"pl181","X":304,"Y":610},{"Bonus":0,"Continent":"K75","ID":52827,"Name":"#0053","PlayerID":1536231,"Points":6534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52827","ServerKey":"pl181","X":579,"Y":714},{"Bonus":0,"Continent":"K75","ID":52828,"Name":"Kapitol_03","PlayerID":606407,"Points":8082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52828","ServerKey":"pl181","X":505,"Y":723},{"Bonus":0,"Continent":"K25","ID":52829,"Name":"sh05","PlayerID":7064954,"Points":4264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52829","ServerKey":"pl181","X":512,"Y":278},{"Bonus":0,"Continent":"K66","ID":52830,"Name":"#155#","PlayerID":692803,"Points":6548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52830","ServerKey":"pl181","X":656,"Y":666},{"Bonus":0,"Continent":"K66","ID":52831,"Name":"komandos","PlayerID":7976264,"Points":4247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52831","ServerKey":"pl181","X":662,"Y":651},{"Bonus":9,"Continent":"K75","ID":52832,"Name":"3.Bristol","PlayerID":698215322,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52832","ServerKey":"pl181","X":593,"Y":700},{"Bonus":0,"Continent":"K47","ID":52833,"Name":"027","PlayerID":849091105,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52833","ServerKey":"pl181","X":726,"Y":467},{"Bonus":0,"Continent":"K74","ID":52834,"Name":"FP0001,5","PlayerID":699605333,"Points":10838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52834","ServerKey":"pl181","X":469,"Y":723},{"Bonus":0,"Continent":"K67","ID":52835,"Name":"WZ04","PlayerID":7142659,"Points":5553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52835","ServerKey":"pl181","X":701,"Y":605},{"Bonus":0,"Continent":"K57","ID":52836,"Name":"CastAway #013","PlayerID":9314079,"Points":4251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52836","ServerKey":"pl181","X":705,"Y":588},{"Bonus":0,"Continent":"K75","ID":52838,"Name":"Wioska SirPatryk22","PlayerID":6870350,"Points":8856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52838","ServerKey":"pl181","X":563,"Y":713},{"Bonus":0,"Continent":"K63","ID":52839,"Name":"W01","PlayerID":698908184,"Points":5208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52839","ServerKey":"pl181","X":319,"Y":638},{"Bonus":0,"Continent":"K57","ID":52840,"Name":"kww01","PlayerID":8976313,"Points":5318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52840","ServerKey":"pl181","X":722,"Y":545},{"Bonus":0,"Continent":"K57","ID":52842,"Name":"Gryfios 099","PlayerID":698666810,"Points":11876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52842","ServerKey":"pl181","X":720,"Y":552},{"Bonus":0,"Continent":"K36","ID":52843,"Name":"036. HiiimsNest","PlayerID":2873154,"Points":4290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52843","ServerKey":"pl181","X":684,"Y":369},{"Bonus":0,"Continent":"K26","ID":52844,"Name":"North 090","PlayerID":849064752,"Points":3855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52844","ServerKey":"pl181","X":601,"Y":296},{"Bonus":0,"Continent":"K52","ID":52845,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52845","ServerKey":"pl181","X":274,"Y":503},{"Bonus":0,"Continent":"K52","ID":52846,"Name":"Nie wiesz w co się pchasz :D","PlayerID":849105417,"Points":2002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52846","ServerKey":"pl181","X":273,"Y":508},{"Bonus":0,"Continent":"K75","ID":52847,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52847","ServerKey":"pl181","X":553,"Y":720},{"Bonus":0,"Continent":"K43","ID":52848,"Name":"019","PlayerID":2418364,"Points":1667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52848","ServerKey":"pl181","X":300,"Y":478},{"Bonus":0,"Continent":"K63","ID":52849,"Name":"Psycha Siada","PlayerID":8099868,"Points":9244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52849","ServerKey":"pl181","X":334,"Y":650},{"Bonus":0,"Continent":"K36","ID":52850,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52850","ServerKey":"pl181","X":639,"Y":327},{"Bonus":0,"Continent":"K25","ID":52851,"Name":"B005","PlayerID":699485250,"Points":8246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52851","ServerKey":"pl181","X":521,"Y":278},{"Bonus":0,"Continent":"K57","ID":52852,"Name":"Mordownia 6","PlayerID":849101029,"Points":6340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52852","ServerKey":"pl181","X":705,"Y":595},{"Bonus":0,"Continent":"K53","ID":52854,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52854","ServerKey":"pl181","X":301,"Y":599},{"Bonus":0,"Continent":"K47","ID":52855,"Name":"023 Bluethorn City","PlayerID":699441366,"Points":8350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52855","ServerKey":"pl181","X":722,"Y":484},{"Bonus":0,"Continent":"K47","ID":52856,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52856","ServerKey":"pl181","X":725,"Y":490},{"Bonus":0,"Continent":"K63","ID":52857,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52857","ServerKey":"pl181","X":332,"Y":651},{"Bonus":0,"Continent":"K74","ID":52858,"Name":"FP039","PlayerID":699605333,"Points":5143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52858","ServerKey":"pl181","X":479,"Y":725},{"Bonus":0,"Continent":"K25","ID":52859,"Name":"Wioska - 002 -","PlayerID":848982634,"Points":2453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52859","ServerKey":"pl181","X":533,"Y":279},{"Bonus":0,"Continent":"K47","ID":52860,"Name":"067.","PlayerID":849094609,"Points":3387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52860","ServerKey":"pl181","X":717,"Y":465},{"Bonus":0,"Continent":"K66","ID":52862,"Name":"komandos","PlayerID":7976264,"Points":4022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52862","ServerKey":"pl181","X":668,"Y":652},{"Bonus":0,"Continent":"K65","ID":52863,"Name":"ƁódĆș","PlayerID":529552,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52863","ServerKey":"pl181","X":535,"Y":657},{"Bonus":0,"Continent":"K47","ID":52864,"Name":"X011","PlayerID":699722599,"Points":6249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52864","ServerKey":"pl181","X":711,"Y":425},{"Bonus":0,"Continent":"K66","ID":52865,"Name":"Dalej nic","PlayerID":849101652,"Points":9528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52865","ServerKey":"pl181","X":691,"Y":610},{"Bonus":0,"Continent":"K36","ID":52866,"Name":"Grzejdas 1","PlayerID":849057764,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52866","ServerKey":"pl181","X":698,"Y":387},{"Bonus":0,"Continent":"K33","ID":52867,"Name":"Zaplecze Barba 023","PlayerID":699796330,"Points":5859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52867","ServerKey":"pl181","X":358,"Y":329},{"Bonus":7,"Continent":"K33","ID":52868,"Name":"K33","PlayerID":699794765,"Points":2454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52868","ServerKey":"pl181","X":311,"Y":389},{"Bonus":0,"Continent":"K57","ID":52869,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52869","ServerKey":"pl181","X":715,"Y":537},{"Bonus":0,"Continent":"K42","ID":52870,"Name":"Avanti!","PlayerID":698625834,"Points":5547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52870","ServerKey":"pl181","X":275,"Y":492},{"Bonus":0,"Continent":"K53","ID":52871,"Name":"083","PlayerID":6853693,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52871","ServerKey":"pl181","X":367,"Y":546},{"Bonus":0,"Continent":"K33","ID":52872,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52872","ServerKey":"pl181","X":371,"Y":311},{"Bonus":0,"Continent":"K66","ID":52873,"Name":"PoƂudniowy WschĂłd 009","PlayerID":699778867,"Points":1533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52873","ServerKey":"pl181","X":694,"Y":607},{"Bonus":0,"Continent":"K36","ID":52874,"Name":".achim.","PlayerID":6936607,"Points":4046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52874","ServerKey":"pl181","X":650,"Y":329},{"Bonus":0,"Continent":"K36","ID":52875,"Name":"nasza plemie.rezerw.","PlayerID":849105232,"Points":1079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52875","ServerKey":"pl181","X":678,"Y":371},{"Bonus":0,"Continent":"K63","ID":52876,"Name":"{54} Siemirowice","PlayerID":849096945,"Points":873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52876","ServerKey":"pl181","X":373,"Y":688},{"Bonus":0,"Continent":"K33","ID":52877,"Name":"Wioska barbarzyƄska","PlayerID":195249,"Points":2572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52877","ServerKey":"pl181","X":380,"Y":307},{"Bonus":0,"Continent":"K47","ID":52878,"Name":"022 Z","PlayerID":699718269,"Points":2578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52878","ServerKey":"pl181","X":728,"Y":499},{"Bonus":0,"Continent":"K33","ID":52879,"Name":"Szlachcic","PlayerID":698160606,"Points":9509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52879","ServerKey":"pl181","X":372,"Y":317},{"Bonus":0,"Continent":"K63","ID":52880,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52880","ServerKey":"pl181","X":334,"Y":653},{"Bonus":0,"Continent":"K74","ID":52882,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52882","ServerKey":"pl181","X":412,"Y":707},{"Bonus":0,"Continent":"K24","ID":52883,"Name":"Bekas","PlayerID":947923,"Points":5454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52883","ServerKey":"pl181","X":431,"Y":285},{"Bonus":8,"Continent":"K47","ID":52884,"Name":"Smrodowo","PlayerID":849102480,"Points":8169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52884","ServerKey":"pl181","X":715,"Y":433},{"Bonus":0,"Continent":"K63","ID":52885,"Name":"019 | North","PlayerID":699511295,"Points":1918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52885","ServerKey":"pl181","X":372,"Y":686},{"Bonus":0,"Continent":"K25","ID":52886,"Name":".achim.","PlayerID":6936607,"Points":3979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52886","ServerKey":"pl181","X":567,"Y":285},{"Bonus":0,"Continent":"K63","ID":52887,"Name":"Plaza de Santa Ana","PlayerID":7085510,"Points":3030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52887","ServerKey":"pl181","X":375,"Y":679},{"Bonus":0,"Continent":"K74","ID":52888,"Name":"No.28","PlayerID":698826986,"Points":780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52888","ServerKey":"pl181","X":474,"Y":718},{"Bonus":0,"Continent":"K36","ID":52889,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52889","ServerKey":"pl181","X":623,"Y":312},{"Bonus":0,"Continent":"K35","ID":52890,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52890","ServerKey":"pl181","X":586,"Y":302},{"Bonus":0,"Continent":"K74","ID":52891,"Name":"Magiczne koszary","PlayerID":848935389,"Points":9809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52891","ServerKey":"pl181","X":447,"Y":722},{"Bonus":0,"Continent":"K25","ID":52893,"Name":"B007","PlayerID":699485250,"Points":9211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52893","ServerKey":"pl181","X":523,"Y":278},{"Bonus":0,"Continent":"K36","ID":52894,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52894","ServerKey":"pl181","X":655,"Y":335},{"Bonus":0,"Continent":"K24","ID":52895,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52895","ServerKey":"pl181","X":415,"Y":290},{"Bonus":0,"Continent":"K57","ID":52896,"Name":"=102= Wioska barbarzyƄska","PlayerID":3781794,"Points":1575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52896","ServerKey":"pl181","X":705,"Y":597},{"Bonus":0,"Continent":"K36","ID":52897,"Name":"kamilkaze135 #14","PlayerID":699705601,"Points":4286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52897","ServerKey":"pl181","X":687,"Y":387},{"Bonus":0,"Continent":"K52","ID":52898,"Name":"Cisza","PlayerID":698769107,"Points":2959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52898","ServerKey":"pl181","X":282,"Y":554},{"Bonus":0,"Continent":"K66","ID":52899,"Name":"013 Twierdza","PlayerID":849104328,"Points":8550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52899","ServerKey":"pl181","X":632,"Y":680},{"Bonus":8,"Continent":"K57","ID":52900,"Name":"A#013","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52900","ServerKey":"pl181","X":721,"Y":515},{"Bonus":0,"Continent":"K52","ID":52902,"Name":"006 Wioska E","PlayerID":6240801,"Points":3339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52902","ServerKey":"pl181","X":281,"Y":565},{"Bonus":0,"Continent":"K36","ID":52903,"Name":"XDX","PlayerID":699098531,"Points":4313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52903","ServerKey":"pl181","X":610,"Y":305},{"Bonus":0,"Continent":"K36","ID":52905,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":6760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52905","ServerKey":"pl181","X":692,"Y":380},{"Bonus":0,"Continent":"K36","ID":52907,"Name":"A-2","PlayerID":849095509,"Points":5483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52907","ServerKey":"pl181","X":672,"Y":359},{"Bonus":0,"Continent":"K75","ID":52908,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52908","ServerKey":"pl181","X":552,"Y":721},{"Bonus":0,"Continent":"K74","ID":52909,"Name":"Wioska niki63","PlayerID":2730335,"Points":6828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52909","ServerKey":"pl181","X":488,"Y":722},{"Bonus":0,"Continent":"K63","ID":52910,"Name":"Psycha Siada","PlayerID":8099868,"Points":9046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52910","ServerKey":"pl181","X":334,"Y":654},{"Bonus":0,"Continent":"K66","ID":52911,"Name":"nowe","PlayerID":699372829,"Points":1616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52911","ServerKey":"pl181","X":626,"Y":688},{"Bonus":0,"Continent":"K47","ID":52912,"Name":"028 KTW","PlayerID":848883237,"Points":4358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52912","ServerKey":"pl181","X":719,"Y":439},{"Bonus":0,"Continent":"K57","ID":52913,"Name":"29. Zangwebar","PlayerID":8976313,"Points":5563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52913","ServerKey":"pl181","X":717,"Y":541},{"Bonus":0,"Continent":"K24","ID":52914,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52914","ServerKey":"pl181","X":489,"Y":273},{"Bonus":0,"Continent":"K42","ID":52915,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52915","ServerKey":"pl181","X":293,"Y":416},{"Bonus":0,"Continent":"K42","ID":52916,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52916","ServerKey":"pl181","X":278,"Y":450},{"Bonus":0,"Continent":"K74","ID":52917,"Name":"Kurnik","PlayerID":699603116,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52917","ServerKey":"pl181","X":443,"Y":713},{"Bonus":0,"Continent":"K35","ID":52918,"Name":"065","PlayerID":698739350,"Points":5051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52918","ServerKey":"pl181","X":519,"Y":386},{"Bonus":0,"Continent":"K35","ID":52919,"Name":"Wioska LordFrotto","PlayerID":849106785,"Points":7253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52919","ServerKey":"pl181","X":562,"Y":332},{"Bonus":0,"Continent":"K43","ID":52920,"Name":"014","PlayerID":8724192,"Points":848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52920","ServerKey":"pl181","X":304,"Y":403},{"Bonus":0,"Continent":"K36","ID":52921,"Name":"XDX","PlayerID":699098531,"Points":3520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52921","ServerKey":"pl181","X":615,"Y":311},{"Bonus":0,"Continent":"K25","ID":52922,"Name":"104 Wioska","PlayerID":699854484,"Points":9899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52922","ServerKey":"pl181","X":540,"Y":278},{"Bonus":0,"Continent":"K63","ID":52923,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52923","ServerKey":"pl181","X":332,"Y":650},{"Bonus":0,"Continent":"K57","ID":52924,"Name":"=103= Wioska barbarzyƄska","PlayerID":3781794,"Points":2688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52924","ServerKey":"pl181","X":702,"Y":598},{"Bonus":0,"Continent":"K75","ID":52925,"Name":"001 Ć»elazna Twierdza","PlayerID":8015775,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52925","ServerKey":"pl181","X":550,"Y":723},{"Bonus":0,"Continent":"K33","ID":52926,"Name":"Wioska barbarzyƄska 014","PlayerID":849068662,"Points":2922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52926","ServerKey":"pl181","X":385,"Y":310},{"Bonus":0,"Continent":"K47","ID":52927,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":7712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52927","ServerKey":"pl181","X":705,"Y":419},{"Bonus":0,"Continent":"K52","ID":52928,"Name":"21. Wioska 21","PlayerID":849091769,"Points":4267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52928","ServerKey":"pl181","X":279,"Y":561},{"Bonus":0,"Continent":"K57","ID":52929,"Name":"=104= Wioska barbarzyƄska","PlayerID":3781794,"Points":3359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52929","ServerKey":"pl181","X":708,"Y":575},{"Bonus":0,"Continent":"K24","ID":52930,"Name":"Wioska HENRYK321","PlayerID":849089654,"Points":1116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52930","ServerKey":"pl181","X":415,"Y":299},{"Bonus":0,"Continent":"K73","ID":52931,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52931","ServerKey":"pl181","X":396,"Y":701},{"Bonus":0,"Continent":"K24","ID":52932,"Name":"ZataƄczymy Poloneza ;]","PlayerID":848918262,"Points":7957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52932","ServerKey":"pl181","X":493,"Y":272},{"Bonus":0,"Continent":"K42","ID":52933,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52933","ServerKey":"pl181","X":282,"Y":436},{"Bonus":0,"Continent":"K57","ID":52934,"Name":"34. Ebbing","PlayerID":8976313,"Points":6503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52934","ServerKey":"pl181","X":718,"Y":539},{"Bonus":0,"Continent":"K33","ID":52935,"Name":"013","PlayerID":8724192,"Points":747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52935","ServerKey":"pl181","X":307,"Y":399},{"Bonus":0,"Continent":"K52","ID":52936,"Name":"New World","PlayerID":849084005,"Points":6333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52936","ServerKey":"pl181","X":278,"Y":509},{"Bonus":0,"Continent":"K74","ID":52937,"Name":"Kurnik","PlayerID":699603116,"Points":9463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52937","ServerKey":"pl181","X":448,"Y":718},{"Bonus":8,"Continent":"K66","ID":52938,"Name":"Wioska Zorro 028","PlayerID":849080702,"Points":7417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52938","ServerKey":"pl181","X":689,"Y":611},{"Bonus":0,"Continent":"K76","ID":52939,"Name":"wy...","PlayerID":699828685,"Points":7406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52939","ServerKey":"pl181","X":602,"Y":704},{"Bonus":0,"Continent":"K52","ID":52940,"Name":"Wioska grek159","PlayerID":1646837,"Points":2492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52940","ServerKey":"pl181","X":296,"Y":592},{"Bonus":0,"Continent":"K33","ID":52941,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52941","ServerKey":"pl181","X":325,"Y":360},{"Bonus":0,"Continent":"K74","ID":52942,"Name":"Kurnik","PlayerID":699603116,"Points":8680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52942","ServerKey":"pl181","X":453,"Y":719},{"Bonus":0,"Continent":"K75","ID":52943,"Name":"Beyaz Tavsan","PlayerID":849102336,"Points":3899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52943","ServerKey":"pl181","X":525,"Y":725},{"Bonus":5,"Continent":"K42","ID":52944,"Name":"P2Kasik","PlayerID":699627771,"Points":1873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52944","ServerKey":"pl181","X":277,"Y":450},{"Bonus":0,"Continent":"K25","ID":52945,"Name":"North 023","PlayerID":849064752,"Points":7963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52945","ServerKey":"pl181","X":511,"Y":273},{"Bonus":0,"Continent":"K25","ID":52946,"Name":"-02-","PlayerID":849112029,"Points":2593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52946","ServerKey":"pl181","X":579,"Y":289},{"Bonus":0,"Continent":"K52","ID":52947,"Name":"0000031Z","PlayerID":849089881,"Points":5799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52947","ServerKey":"pl181","X":279,"Y":555},{"Bonus":0,"Continent":"K66","ID":52948,"Name":"PoƂudniowy WschĂłd 012","PlayerID":699778867,"Points":1958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52948","ServerKey":"pl181","X":690,"Y":610},{"Bonus":0,"Continent":"K36","ID":52949,"Name":"Wioska Maliniak77","PlayerID":7428666,"Points":4696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52949","ServerKey":"pl181","X":635,"Y":336},{"Bonus":0,"Continent":"K24","ID":52950,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52950","ServerKey":"pl181","X":409,"Y":298},{"Bonus":0,"Continent":"K75","ID":52951,"Name":"Wiocha 8","PlayerID":849045675,"Points":3782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52951","ServerKey":"pl181","X":557,"Y":722},{"Bonus":0,"Continent":"K63","ID":52953,"Name":"Wioska 0020","PlayerID":9186126,"Points":7836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52953","ServerKey":"pl181","X":341,"Y":651},{"Bonus":0,"Continent":"K42","ID":52954,"Name":"Avanti!","PlayerID":698625834,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52954","ServerKey":"pl181","X":278,"Y":476},{"Bonus":0,"Continent":"K33","ID":52955,"Name":"Wioska barbarzyƄska 13","PlayerID":698757439,"Points":7130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52955","ServerKey":"pl181","X":337,"Y":342},{"Bonus":0,"Continent":"K57","ID":52956,"Name":"=105= Wioska barbarzyƄska","PlayerID":3781794,"Points":3164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52956","ServerKey":"pl181","X":707,"Y":591},{"Bonus":0,"Continent":"K66","ID":52957,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52957","ServerKey":"pl181","X":690,"Y":624},{"Bonus":0,"Continent":"K75","ID":52958,"Name":"Kapitol_06","PlayerID":606407,"Points":5834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52958","ServerKey":"pl181","X":503,"Y":724},{"Bonus":0,"Continent":"K42","ID":52959,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52959","ServerKey":"pl181","X":286,"Y":445},{"Bonus":0,"Continent":"K42","ID":52960,"Name":"jeziora dlugie","PlayerID":698677650,"Points":1923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52960","ServerKey":"pl181","X":297,"Y":411},{"Bonus":0,"Continent":"K75","ID":52961,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52961","ServerKey":"pl181","X":550,"Y":721},{"Bonus":0,"Continent":"K74","ID":52962,"Name":"026","PlayerID":8268010,"Points":5843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52962","ServerKey":"pl181","X":467,"Y":725},{"Bonus":0,"Continent":"K36","ID":52963,"Name":"BRAWO [02]","PlayerID":849006385,"Points":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52963","ServerKey":"pl181","X":630,"Y":320},{"Bonus":0,"Continent":"K74","ID":52964,"Name":"|D| IS","PlayerID":698147372,"Points":2583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52964","ServerKey":"pl181","X":458,"Y":725},{"Bonus":0,"Continent":"K25","ID":52965,"Name":"#038","PlayerID":849064614,"Points":2366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52965","ServerKey":"pl181","X":557,"Y":286},{"Bonus":0,"Continent":"K36","ID":52966,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52966","ServerKey":"pl181","X":661,"Y":338},{"Bonus":0,"Continent":"K33","ID":52967,"Name":"Wioska barbarzyƄska 004","PlayerID":849068662,"Points":9414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52967","ServerKey":"pl181","X":379,"Y":316},{"Bonus":0,"Continent":"K63","ID":52968,"Name":"Psycha Siada","PlayerID":8099868,"Points":9138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52968","ServerKey":"pl181","X":325,"Y":645},{"Bonus":0,"Continent":"K75","ID":52969,"Name":"R 043","PlayerID":699195358,"Points":4108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52969","ServerKey":"pl181","X":501,"Y":720},{"Bonus":0,"Continent":"K42","ID":52970,"Name":"002b","PlayerID":8259895,"Points":3860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52970","ServerKey":"pl181","X":299,"Y":409},{"Bonus":0,"Continent":"K57","ID":52971,"Name":"Wioska5","PlayerID":699266530,"Points":9242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52971","ServerKey":"pl181","X":705,"Y":580},{"Bonus":0,"Continent":"K66","ID":52972,"Name":"017 Twierdza","PlayerID":849104328,"Points":5423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52972","ServerKey":"pl181","X":633,"Y":679},{"Bonus":1,"Continent":"K46","ID":52973,"Name":".7.","PlayerID":699562182,"Points":5848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52973","ServerKey":"pl181","X":699,"Y":400},{"Bonus":0,"Continent":"K62","ID":52974,"Name":"Podzamcze","PlayerID":1276665,"Points":2432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52974","ServerKey":"pl181","X":299,"Y":603},{"Bonus":0,"Continent":"K52","ID":52975,"Name":"[0203]","PlayerID":8630972,"Points":6947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52975","ServerKey":"pl181","X":278,"Y":500},{"Bonus":8,"Continent":"K33","ID":52976,"Name":"024 VFF IJN Nagato","PlayerID":3108144,"Points":5837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52976","ServerKey":"pl181","X":315,"Y":367},{"Bonus":0,"Continent":"K67","ID":52977,"Name":"Z01","PlayerID":3986807,"Points":1298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52977","ServerKey":"pl181","X":704,"Y":602},{"Bonus":0,"Continent":"K33","ID":52978,"Name":"K33","PlayerID":699794765,"Points":2561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52978","ServerKey":"pl181","X":311,"Y":380},{"Bonus":0,"Continent":"K33","ID":52979,"Name":"Gubernia 03 BarbarzyƄska","PlayerID":849107532,"Points":1829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52979","ServerKey":"pl181","X":368,"Y":313},{"Bonus":0,"Continent":"K24","ID":52980,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52980","ServerKey":"pl181","X":429,"Y":288},{"Bonus":0,"Continent":"K57","ID":52981,"Name":"=117= Ramboq123","PlayerID":3781794,"Points":4935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52981","ServerKey":"pl181","X":711,"Y":575},{"Bonus":0,"Continent":"K63","ID":52982,"Name":"Zygfryd","PlayerID":849030086,"Points":7254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52982","ServerKey":"pl181","X":379,"Y":691},{"Bonus":4,"Continent":"K66","ID":52983,"Name":"#018 NOWE IMPERIUM STRONG","PlayerID":698353083,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52983","ServerKey":"pl181","X":617,"Y":696},{"Bonus":0,"Continent":"K25","ID":52984,"Name":"Wioska Vi-vali","PlayerID":6118079,"Points":3890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52984","ServerKey":"pl181","X":523,"Y":272},{"Bonus":0,"Continent":"K36","ID":52985,"Name":"Wioska 029","PlayerID":7226782,"Points":3801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52985","ServerKey":"pl181","X":668,"Y":359},{"Bonus":0,"Continent":"K42","ID":52986,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52986","ServerKey":"pl181","X":287,"Y":423},{"Bonus":0,"Continent":"K66","ID":52987,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":7402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52987","ServerKey":"pl181","X":649,"Y":663},{"Bonus":0,"Continent":"K25","ID":52988,"Name":"PPF-23","PlayerID":1424656,"Points":3051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52988","ServerKey":"pl181","X":533,"Y":273},{"Bonus":0,"Continent":"K33","ID":52989,"Name":"WIOSKA 03","PlayerID":698757439,"Points":9891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52989","ServerKey":"pl181","X":348,"Y":329},{"Bonus":0,"Continent":"K66","ID":52990,"Name":"034","PlayerID":699099811,"Points":3595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52990","ServerKey":"pl181","X":684,"Y":624},{"Bonus":0,"Continent":"K57","ID":52991,"Name":"Wioska Kiubi5","PlayerID":3692413,"Points":4477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52991","ServerKey":"pl181","X":710,"Y":586},{"Bonus":0,"Continent":"K74","ID":52992,"Name":"[B]004","PlayerID":9195661,"Points":2357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52992","ServerKey":"pl181","X":416,"Y":702},{"Bonus":0,"Continent":"K47","ID":52993,"Name":"037 KTW","PlayerID":848883237,"Points":2824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52993","ServerKey":"pl181","X":720,"Y":448},{"Bonus":0,"Continent":"K42","ID":52994,"Name":"024","PlayerID":6131106,"Points":2504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52994","ServerKey":"pl181","X":287,"Y":417},{"Bonus":0,"Continent":"K24","ID":52995,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":1867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52995","ServerKey":"pl181","X":448,"Y":277},{"Bonus":0,"Continent":"K24","ID":52996,"Name":"#0246 colt9","PlayerID":1238300,"Points":5342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52996","ServerKey":"pl181","X":432,"Y":283},{"Bonus":0,"Continent":"K24","ID":52997,"Name":"Wioska a3","PlayerID":6343784,"Points":2855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52997","ServerKey":"pl181","X":431,"Y":282},{"Bonus":0,"Continent":"K42","ID":52998,"Name":"K42 ADAMUS 009","PlayerID":6212605,"Points":8309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52998","ServerKey":"pl181","X":286,"Y":431},{"Bonus":0,"Continent":"K33","ID":52999,"Name":"C-004","PlayerID":699406247,"Points":3608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=52999","ServerKey":"pl181","X":325,"Y":361},{"Bonus":0,"Continent":"K74","ID":53000,"Name":"Bagno 14","PlayerID":848883684,"Points":8374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53000","ServerKey":"pl181","X":480,"Y":718},{"Bonus":0,"Continent":"K47","ID":53001,"Name":"Ghostmane","PlayerID":848896434,"Points":5912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53001","ServerKey":"pl181","X":720,"Y":445},{"Bonus":0,"Continent":"K52","ID":53002,"Name":"Wioska barbarzyƄska","PlayerID":849101771,"Points":2249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53002","ServerKey":"pl181","X":293,"Y":576},{"Bonus":0,"Continent":"K75","ID":53003,"Name":"009","PlayerID":698996782,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53003","ServerKey":"pl181","X":524,"Y":715},{"Bonus":0,"Continent":"K36","ID":53004,"Name":"Wioska barbarzyƄska","PlayerID":849111196,"Points":5805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53004","ServerKey":"pl181","X":659,"Y":336},{"Bonus":0,"Continent":"K36","ID":53005,"Name":"XDX","PlayerID":699098531,"Points":6356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53005","ServerKey":"pl181","X":615,"Y":310},{"Bonus":0,"Continent":"K74","ID":53006,"Name":"8.P","PlayerID":699777372,"Points":5099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53006","ServerKey":"pl181","X":458,"Y":723},{"Bonus":0,"Continent":"K24","ID":53007,"Name":"????","PlayerID":698489071,"Points":5705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53007","ServerKey":"pl181","X":480,"Y":280},{"Bonus":0,"Continent":"K25","ID":53008,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53008","ServerKey":"pl181","X":585,"Y":297},{"Bonus":0,"Continent":"K63","ID":53009,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53009","ServerKey":"pl181","X":314,"Y":628},{"Bonus":0,"Continent":"K42","ID":53010,"Name":"[0188]","PlayerID":8630972,"Points":6711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53010","ServerKey":"pl181","X":291,"Y":498},{"Bonus":0,"Continent":"K66","ID":53012,"Name":"Bilbao","PlayerID":747422,"Points":2540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53012","ServerKey":"pl181","X":645,"Y":671},{"Bonus":0,"Continent":"K75","ID":53013,"Name":"olchowa","PlayerID":6870350,"Points":6312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53013","ServerKey":"pl181","X":589,"Y":702},{"Bonus":0,"Continent":"K36","ID":53014,"Name":"wioska XVI","PlayerID":698635863,"Points":6398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53014","ServerKey":"pl181","X":680,"Y":377},{"Bonus":7,"Continent":"K63","ID":53015,"Name":"058 Osada koczownikĂłw","PlayerID":6354098,"Points":4541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53015","ServerKey":"pl181","X":342,"Y":663},{"Bonus":0,"Continent":"K47","ID":53017,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":4021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53017","ServerKey":"pl181","X":725,"Y":470},{"Bonus":0,"Continent":"K36","ID":53018,"Name":"02 Mario 76","PlayerID":6517826,"Points":3065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53018","ServerKey":"pl181","X":636,"Y":325},{"Bonus":0,"Continent":"K36","ID":53019,"Name":"ƚw181*002","PlayerID":959179,"Points":4351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53019","ServerKey":"pl181","X":661,"Y":343},{"Bonus":0,"Continent":"K75","ID":53020,"Name":"008","PlayerID":698996782,"Points":10409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53020","ServerKey":"pl181","X":524,"Y":714},{"Bonus":0,"Continent":"K36","ID":53021,"Name":"Flap","PlayerID":699098531,"Points":7183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53021","ServerKey":"pl181","X":612,"Y":301},{"Bonus":0,"Continent":"K24","ID":53022,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53022","ServerKey":"pl181","X":494,"Y":276},{"Bonus":0,"Continent":"K33","ID":53023,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":2620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53023","ServerKey":"pl181","X":369,"Y":317},{"Bonus":0,"Continent":"K33","ID":53024,"Name":"Wioska barbarzyƄska 14","PlayerID":698757439,"Points":6509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53024","ServerKey":"pl181","X":337,"Y":339},{"Bonus":0,"Continent":"K33","ID":53025,"Name":"Wioska barbarzyƄska","PlayerID":6416213,"Points":1192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53025","ServerKey":"pl181","X":359,"Y":327},{"Bonus":0,"Continent":"K67","ID":53026,"Name":"Wioska 049","PlayerID":848971079,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53026","ServerKey":"pl181","X":701,"Y":606},{"Bonus":0,"Continent":"K56","ID":53027,"Name":"000 Dioda","PlayerID":849095240,"Points":9260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53027","ServerKey":"pl181","X":607,"Y":504},{"Bonus":0,"Continent":"K57","ID":53028,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":4708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53028","ServerKey":"pl181","X":725,"Y":509},{"Bonus":0,"Continent":"K36","ID":53029,"Name":"Wioska 005","PlayerID":7226782,"Points":5147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53029","ServerKey":"pl181","X":671,"Y":352},{"Bonus":0,"Continent":"K63","ID":53030,"Name":"131","PlayerID":849099876,"Points":9366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53030","ServerKey":"pl181","X":386,"Y":698},{"Bonus":0,"Continent":"K47","ID":53031,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53031","ServerKey":"pl181","X":727,"Y":493},{"Bonus":0,"Continent":"K63","ID":53032,"Name":"128","PlayerID":849099876,"Points":9367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53032","ServerKey":"pl181","X":381,"Y":691},{"Bonus":0,"Continent":"K42","ID":53033,"Name":"Inia City","PlayerID":849104818,"Points":4244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53033","ServerKey":"pl181","X":298,"Y":413},{"Bonus":0,"Continent":"K42","ID":53034,"Name":"002","PlayerID":699844314,"Points":2301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53034","ServerKey":"pl181","X":280,"Y":456},{"Bonus":0,"Continent":"K24","ID":53035,"Name":"M002","PlayerID":699208929,"Points":7676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53035","ServerKey":"pl181","X":475,"Y":275},{"Bonus":0,"Continent":"K63","ID":53036,"Name":"0146","PlayerID":7085510,"Points":5306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53036","ServerKey":"pl181","X":367,"Y":675},{"Bonus":0,"Continent":"K63","ID":53037,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53037","ServerKey":"pl181","X":326,"Y":636},{"Bonus":0,"Continent":"K33","ID":53038,"Name":"MASZERUJ ALBO GIƃ 02","PlayerID":698757439,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53038","ServerKey":"pl181","X":343,"Y":338},{"Bonus":0,"Continent":"K36","ID":53039,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53039","ServerKey":"pl181","X":640,"Y":331},{"Bonus":0,"Continent":"K42","ID":53041,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53041","ServerKey":"pl181","X":288,"Y":414},{"Bonus":0,"Continent":"K36","ID":53042,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53042","ServerKey":"pl181","X":691,"Y":385},{"Bonus":0,"Continent":"K25","ID":53043,"Name":".achim.","PlayerID":6936607,"Points":3703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53043","ServerKey":"pl181","X":567,"Y":287},{"Bonus":7,"Continent":"K63","ID":53044,"Name":"Psycha Siada","PlayerID":8099868,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53044","ServerKey":"pl181","X":330,"Y":641},{"Bonus":0,"Continent":"K75","ID":53045,"Name":"0402","PlayerID":698659980,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53045","ServerKey":"pl181","X":573,"Y":714},{"Bonus":0,"Continent":"K36","ID":53046,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53046","ServerKey":"pl181","X":649,"Y":335},{"Bonus":0,"Continent":"K52","ID":53047,"Name":"Wioska Fermer","PlayerID":849105408,"Points":2238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53047","ServerKey":"pl181","X":292,"Y":571},{"Bonus":0,"Continent":"K66","ID":53048,"Name":"047","PlayerID":2323859,"Points":1725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53048","ServerKey":"pl181","X":667,"Y":651},{"Bonus":0,"Continent":"K47","ID":53049,"Name":"WywiaƂo daleko","PlayerID":699785935,"Points":4525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53049","ServerKey":"pl181","X":710,"Y":416},{"Bonus":0,"Continent":"K36","ID":53050,"Name":"WOLA0004","PlayerID":6956104,"Points":4920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53050","ServerKey":"pl181","X":681,"Y":361},{"Bonus":0,"Continent":"K75","ID":53051,"Name":"kathare","PlayerID":873575,"Points":9960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53051","ServerKey":"pl181","X":534,"Y":718},{"Bonus":0,"Continent":"K36","ID":53052,"Name":"Wioska 008","PlayerID":7226782,"Points":3620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53052","ServerKey":"pl181","X":673,"Y":350},{"Bonus":0,"Continent":"K76","ID":53053,"Name":"wy...","PlayerID":699828685,"Points":8882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53053","ServerKey":"pl181","X":601,"Y":704},{"Bonus":7,"Continent":"K33","ID":53054,"Name":"Osada koczownikĂłw","PlayerID":3698627,"Points":5561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53054","ServerKey":"pl181","X":368,"Y":321},{"Bonus":0,"Continent":"K42","ID":53055,"Name":"003","PlayerID":699844314,"Points":2261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53055","ServerKey":"pl181","X":279,"Y":456},{"Bonus":0,"Continent":"K75","ID":53056,"Name":"#0066","PlayerID":1536231,"Points":5279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53056","ServerKey":"pl181","X":573,"Y":715},{"Bonus":0,"Continent":"K52","ID":53057,"Name":"[S]zczupak","PlayerID":849106971,"Points":6402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53057","ServerKey":"pl181","X":276,"Y":548},{"Bonus":0,"Continent":"K66","ID":53058,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53058","ServerKey":"pl181","X":655,"Y":658},{"Bonus":0,"Continent":"K36","ID":53059,"Name":"031 Wioska","PlayerID":699671454,"Points":2015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53059","ServerKey":"pl181","X":690,"Y":387},{"Bonus":0,"Continent":"K66","ID":53060,"Name":"052","PlayerID":699099811,"Points":2529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53060","ServerKey":"pl181","X":695,"Y":619},{"Bonus":0,"Continent":"K47","ID":53061,"Name":"027 Rustboro City","PlayerID":699441366,"Points":11109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53061","ServerKey":"pl181","X":727,"Y":488},{"Bonus":0,"Continent":"K75","ID":53062,"Name":"Kapitol_07","PlayerID":606407,"Points":6049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53062","ServerKey":"pl181","X":502,"Y":722},{"Bonus":0,"Continent":"K66","ID":53063,"Name":"011 Garkonia","PlayerID":849102108,"Points":1544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53063","ServerKey":"pl181","X":672,"Y":640},{"Bonus":0,"Continent":"K57","ID":53064,"Name":"CastAway !019","PlayerID":9314079,"Points":6163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53064","ServerKey":"pl181","X":710,"Y":591},{"Bonus":0,"Continent":"K36","ID":53065,"Name":"A-4","PlayerID":849095509,"Points":2494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53065","ServerKey":"pl181","X":672,"Y":361},{"Bonus":0,"Continent":"K63","ID":53066,"Name":"006","PlayerID":8752714,"Points":2721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53066","ServerKey":"pl181","X":327,"Y":644},{"Bonus":0,"Continent":"K66","ID":53067,"Name":"#Kresy","PlayerID":2665207,"Points":2255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53067","ServerKey":"pl181","X":628,"Y":686},{"Bonus":0,"Continent":"K42","ID":53068,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53068","ServerKey":"pl181","X":283,"Y":441},{"Bonus":0,"Continent":"K66","ID":53069,"Name":"053","PlayerID":699099811,"Points":1849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53069","ServerKey":"pl181","X":693,"Y":618},{"Bonus":0,"Continent":"K74","ID":53070,"Name":"026ƚnieg","PlayerID":698620694,"Points":5319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53070","ServerKey":"pl181","X":470,"Y":720},{"Bonus":0,"Continent":"K66","ID":53071,"Name":"o010","PlayerID":699189792,"Points":7269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53071","ServerKey":"pl181","X":609,"Y":699},{"Bonus":0,"Continent":"K24","ID":53072,"Name":"242...NORTH","PlayerID":6920960,"Points":3219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53072","ServerKey":"pl181","X":444,"Y":282},{"Bonus":0,"Continent":"K75","ID":53073,"Name":"#0071","PlayerID":1536231,"Points":4351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53073","ServerKey":"pl181","X":572,"Y":714},{"Bonus":0,"Continent":"K63","ID":53075,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53075","ServerKey":"pl181","X":320,"Y":631},{"Bonus":0,"Continent":"K33","ID":53076,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53076","ServerKey":"pl181","X":322,"Y":363},{"Bonus":0,"Continent":"K75","ID":53077,"Name":"Wioska barbarzyƄska","PlayerID":6116940,"Points":5441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53077","ServerKey":"pl181","X":538,"Y":726},{"Bonus":0,"Continent":"K52","ID":53078,"Name":"Wioska","PlayerID":849097123,"Points":8026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53078","ServerKey":"pl181","X":284,"Y":575},{"Bonus":0,"Continent":"K33","ID":53079,"Name":"Wioska24","PlayerID":699711926,"Points":4701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53079","ServerKey":"pl181","X":332,"Y":350},{"Bonus":0,"Continent":"K75","ID":53080,"Name":"0452","PlayerID":698659980,"Points":9398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53080","ServerKey":"pl181","X":565,"Y":710},{"Bonus":0,"Continent":"K74","ID":53081,"Name":"029","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53081","ServerKey":"pl181","X":400,"Y":706},{"Bonus":0,"Continent":"K36","ID":53082,"Name":"006","PlayerID":849020094,"Points":5225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53082","ServerKey":"pl181","X":664,"Y":340},{"Bonus":0,"Continent":"K33","ID":53083,"Name":"Orgetoryks","PlayerID":848998530,"Points":3659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53083","ServerKey":"pl181","X":329,"Y":354},{"Bonus":0,"Continent":"K75","ID":53084,"Name":"003","PlayerID":698996782,"Points":5480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53084","ServerKey":"pl181","X":536,"Y":722},{"Bonus":0,"Continent":"K36","ID":53085,"Name":"Wiocha","PlayerID":699803189,"Points":2356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53085","ServerKey":"pl181","X":690,"Y":376},{"Bonus":0,"Continent":"K25","ID":53086,"Name":"bagienko_02","PlayerID":849093353,"Points":5102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53086","ServerKey":"pl181","X":567,"Y":281},{"Bonus":0,"Continent":"K24","ID":53087,"Name":"_002_","PlayerID":9283142,"Points":6535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53087","ServerKey":"pl181","X":419,"Y":291},{"Bonus":7,"Continent":"K63","ID":53088,"Name":"BOA3","PlayerID":699829494,"Points":4855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53088","ServerKey":"pl181","X":310,"Y":620},{"Bonus":0,"Continent":"K33","ID":53089,"Name":"mija","PlayerID":849089601,"Points":1307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53089","ServerKey":"pl181","X":303,"Y":396},{"Bonus":0,"Continent":"K57","ID":53090,"Name":"Amogus","PlayerID":17714,"Points":1351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53090","ServerKey":"pl181","X":724,"Y":537},{"Bonus":0,"Continent":"K52","ID":53092,"Name":"C0287","PlayerID":8841266,"Points":4476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53092","ServerKey":"pl181","X":279,"Y":539},{"Bonus":0,"Continent":"K62","ID":53093,"Name":"Wioska barbarzyƄska","PlayerID":699604515,"Points":562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53093","ServerKey":"pl181","X":298,"Y":605},{"Bonus":0,"Continent":"K66","ID":53094,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53094","ServerKey":"pl181","X":689,"Y":627},{"Bonus":0,"Continent":"K63","ID":53095,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":1070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53095","ServerKey":"pl181","X":336,"Y":659},{"Bonus":0,"Continent":"K57","ID":53096,"Name":"KRÓL PAPI WIELKI","PlayerID":698191218,"Points":6374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53096","ServerKey":"pl181","X":725,"Y":517},{"Bonus":9,"Continent":"K24","ID":53097,"Name":".achim.","PlayerID":6936607,"Points":9324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53097","ServerKey":"pl181","X":488,"Y":278},{"Bonus":0,"Continent":"K36","ID":53098,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53098","ServerKey":"pl181","X":651,"Y":327},{"Bonus":0,"Continent":"K57","ID":53099,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":4466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53099","ServerKey":"pl181","X":724,"Y":532},{"Bonus":0,"Continent":"K35","ID":53100,"Name":"Winterhome.031","PlayerID":8400180,"Points":10154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53100","ServerKey":"pl181","X":513,"Y":312},{"Bonus":0,"Continent":"K75","ID":53101,"Name":"Kuzyn BƂaĆŒej","PlayerID":849098628,"Points":6049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53101","ServerKey":"pl181","X":580,"Y":715},{"Bonus":0,"Continent":"K66","ID":53102,"Name":"komandos","PlayerID":7976264,"Points":4202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53102","ServerKey":"pl181","X":663,"Y":652},{"Bonus":0,"Continent":"K47","ID":53103,"Name":"030 KTW","PlayerID":848883237,"Points":3570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53103","ServerKey":"pl181","X":724,"Y":452},{"Bonus":8,"Continent":"K75","ID":53104,"Name":"3.Londyn","PlayerID":698215322,"Points":9974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53104","ServerKey":"pl181","X":579,"Y":704},{"Bonus":0,"Continent":"K75","ID":53105,"Name":"wwwb","PlayerID":699828685,"Points":3393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53105","ServerKey":"pl181","X":598,"Y":707},{"Bonus":0,"Continent":"K63","ID":53106,"Name":"Taran","PlayerID":6180190,"Points":8414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53106","ServerKey":"pl181","X":313,"Y":619},{"Bonus":0,"Continent":"K66","ID":53107,"Name":"Nowe IMPERIUM 1","PlayerID":698353083,"Points":3713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53107","ServerKey":"pl181","X":617,"Y":686},{"Bonus":0,"Continent":"K67","ID":53108,"Name":"0150","PlayerID":699429153,"Points":8818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53108","ServerKey":"pl181","X":703,"Y":601},{"Bonus":0,"Continent":"K75","ID":53109,"Name":"002","PlayerID":698996782,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53109","ServerKey":"pl181","X":533,"Y":719},{"Bonus":0,"Continent":"K74","ID":53110,"Name":"azi5","PlayerID":849094759,"Points":2129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53110","ServerKey":"pl181","X":461,"Y":717},{"Bonus":0,"Continent":"K54","ID":53111,"Name":"egon","PlayerID":8438707,"Points":7277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53111","ServerKey":"pl181","X":440,"Y":567},{"Bonus":0,"Continent":"K42","ID":53112,"Name":"*204*","PlayerID":699273451,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53112","ServerKey":"pl181","X":291,"Y":407},{"Bonus":0,"Continent":"K47","ID":53113,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":2872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53113","ServerKey":"pl181","X":717,"Y":458},{"Bonus":0,"Continent":"K36","ID":53114,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53114","ServerKey":"pl181","X":648,"Y":331},{"Bonus":0,"Continent":"K33","ID":53115,"Name":"Zaplecze Barba 027","PlayerID":699796330,"Points":5329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53115","ServerKey":"pl181","X":356,"Y":332},{"Bonus":0,"Continent":"K25","ID":53116,"Name":"071 Wioska barbarzyƄska","PlayerID":699854484,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53116","ServerKey":"pl181","X":540,"Y":276},{"Bonus":0,"Continent":"K23","ID":53117,"Name":"210","PlayerID":698365960,"Points":8526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53117","ServerKey":"pl181","X":397,"Y":296},{"Bonus":0,"Continent":"K52","ID":53118,"Name":"C0310","PlayerID":8841266,"Points":3644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53118","ServerKey":"pl181","X":279,"Y":536},{"Bonus":0,"Continent":"K47","ID":53119,"Name":"[829] Odludzie","PlayerID":848985692,"Points":6237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53119","ServerKey":"pl181","X":720,"Y":435},{"Bonus":0,"Continent":"K75","ID":53120,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53120","ServerKey":"pl181","X":552,"Y":722},{"Bonus":0,"Continent":"K57","ID":53121,"Name":"Chile","PlayerID":848946700,"Points":6448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53121","ServerKey":"pl181","X":724,"Y":542},{"Bonus":0,"Continent":"K25","ID":53122,"Name":"063 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53122","ServerKey":"pl181","X":548,"Y":279},{"Bonus":0,"Continent":"K67","ID":53123,"Name":"WZ01","PlayerID":7142659,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53123","ServerKey":"pl181","X":700,"Y":606},{"Bonus":1,"Continent":"K33","ID":53124,"Name":"Zaplecze drewniane 3","PlayerID":699796330,"Points":9744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53124","ServerKey":"pl181","X":369,"Y":323},{"Bonus":0,"Continent":"K75","ID":53125,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":699828442,"Points":9805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53125","ServerKey":"pl181","X":551,"Y":718},{"Bonus":0,"Continent":"K25","ID":53126,"Name":"North 062","PlayerID":849064752,"Points":5430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53126","ServerKey":"pl181","X":539,"Y":275},{"Bonus":3,"Continent":"K33","ID":53127,"Name":"MƚCIWY KRIS 02","PlayerID":698757439,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53127","ServerKey":"pl181","X":343,"Y":335},{"Bonus":0,"Continent":"K25","ID":53128,"Name":"Wioska Wojka","PlayerID":8609713,"Points":5880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53128","ServerKey":"pl181","X":584,"Y":288},{"Bonus":0,"Continent":"K36","ID":53129,"Name":"B018","PlayerID":8740199,"Points":1950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53129","ServerKey":"pl181","X":625,"Y":319},{"Bonus":0,"Continent":"K25","ID":53130,"Name":"#004","PlayerID":849064614,"Points":9248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53130","ServerKey":"pl181","X":550,"Y":277},{"Bonus":0,"Continent":"K66","ID":53131,"Name":"055.","PlayerID":699373599,"Points":3127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53131","ServerKey":"pl181","X":639,"Y":674},{"Bonus":0,"Continent":"K75","ID":53132,"Name":"Wioska Gregor20-90","PlayerID":698934729,"Points":6606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53132","ServerKey":"pl181","X":514,"Y":721},{"Bonus":8,"Continent":"K36","ID":53133,"Name":"B031","PlayerID":8740199,"Points":10227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53133","ServerKey":"pl181","X":632,"Y":314},{"Bonus":0,"Continent":"K33","ID":53134,"Name":"Wioska barbarzyƄska","PlayerID":1267913,"Points":4946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53134","ServerKey":"pl181","X":306,"Y":382},{"Bonus":0,"Continent":"K75","ID":53135,"Name":"#K75 0021","PlayerID":699728159,"Points":4003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53135","ServerKey":"pl181","X":521,"Y":718},{"Bonus":0,"Continent":"K52","ID":53136,"Name":"C0233","PlayerID":8841266,"Points":7761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53136","ServerKey":"pl181","X":282,"Y":537},{"Bonus":0,"Continent":"K63","ID":53137,"Name":"181","PlayerID":849099876,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53137","ServerKey":"pl181","X":388,"Y":689},{"Bonus":0,"Continent":"K33","ID":53138,"Name":"z Wioska barbarzyƄska 15","PlayerID":3909522,"Points":6002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53138","ServerKey":"pl181","X":358,"Y":362},{"Bonus":0,"Continent":"K25","ID":53139,"Name":"4.D","PlayerID":699146580,"Points":1623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53139","ServerKey":"pl181","X":532,"Y":277},{"Bonus":0,"Continent":"K64","ID":53140,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":4010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53140","ServerKey":"pl181","X":435,"Y":628},{"Bonus":0,"Continent":"K57","ID":53141,"Name":"Mordownia 7","PlayerID":849101029,"Points":6853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53141","ServerKey":"pl181","X":705,"Y":596},{"Bonus":0,"Continent":"K52","ID":53142,"Name":"Wioska Grucha125","PlayerID":498483,"Points":8467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53142","ServerKey":"pl181","X":285,"Y":574},{"Bonus":0,"Continent":"K75","ID":53143,"Name":"Wioska b","PlayerID":849101102,"Points":7441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53143","ServerKey":"pl181","X":516,"Y":726},{"Bonus":0,"Continent":"K36","ID":53144,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":4369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53144","ServerKey":"pl181","X":698,"Y":395},{"Bonus":0,"Continent":"K66","ID":53145,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53145","ServerKey":"pl181","X":659,"Y":650},{"Bonus":0,"Continent":"K74","ID":53146,"Name":"0015","PlayerID":699656989,"Points":7967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53146","ServerKey":"pl181","X":468,"Y":726},{"Bonus":0,"Continent":"K33","ID":53147,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":1763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53147","ServerKey":"pl181","X":312,"Y":374},{"Bonus":0,"Continent":"K42","ID":53148,"Name":"Avanti!","PlayerID":698625834,"Points":2783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53148","ServerKey":"pl181","X":275,"Y":472},{"Bonus":0,"Continent":"K63","ID":53149,"Name":"$002$ MSI","PlayerID":699550876,"Points":9828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53149","ServerKey":"pl181","X":303,"Y":623},{"Bonus":0,"Continent":"K36","ID":53150,"Name":"011","PlayerID":699117992,"Points":2935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53150","ServerKey":"pl181","X":606,"Y":305},{"Bonus":2,"Continent":"K57","ID":53151,"Name":"A#033","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53151","ServerKey":"pl181","X":719,"Y":528},{"Bonus":0,"Continent":"K52","ID":53152,"Name":"004 maniuƛ","PlayerID":197581,"Points":6970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53152","ServerKey":"pl181","X":284,"Y":552},{"Bonus":0,"Continent":"K25","ID":53153,"Name":"026 Wioska barbarzyƄska","PlayerID":699854484,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53153","ServerKey":"pl181","X":544,"Y":284},{"Bonus":0,"Continent":"K63","ID":53155,"Name":"080 Wioska barbarzyƄska","PlayerID":6354098,"Points":4415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53155","ServerKey":"pl181","X":347,"Y":668},{"Bonus":0,"Continent":"K74","ID":53156,"Name":"New World","PlayerID":698152377,"Points":4083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53156","ServerKey":"pl181","X":431,"Y":715},{"Bonus":0,"Continent":"K67","ID":53157,"Name":"WZ03","PlayerID":7142659,"Points":7842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53157","ServerKey":"pl181","X":700,"Y":605},{"Bonus":0,"Continent":"K24","ID":53158,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53158","ServerKey":"pl181","X":414,"Y":295},{"Bonus":0,"Continent":"K57","ID":53159,"Name":"Wioska [1]","PlayerID":699858313,"Points":6542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53159","ServerKey":"pl181","X":724,"Y":511},{"Bonus":0,"Continent":"K24","ID":53160,"Name":"????","PlayerID":698489071,"Points":4696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53160","ServerKey":"pl181","X":472,"Y":274},{"Bonus":0,"Continent":"K75","ID":53161,"Name":"a Kraken121","PlayerID":849038985,"Points":2059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53161","ServerKey":"pl181","X":563,"Y":718},{"Bonus":0,"Continent":"K42","ID":53162,"Name":"Avanti!","PlayerID":698625834,"Points":4417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53162","ServerKey":"pl181","X":276,"Y":471},{"Bonus":0,"Continent":"K42","ID":53163,"Name":"011","PlayerID":6131106,"Points":7614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53163","ServerKey":"pl181","X":284,"Y":424},{"Bonus":0,"Continent":"K52","ID":53164,"Name":"C0282","PlayerID":8841266,"Points":4499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53164","ServerKey":"pl181","X":281,"Y":543},{"Bonus":1,"Continent":"K52","ID":53165,"Name":"C0239","PlayerID":8841266,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53165","ServerKey":"pl181","X":272,"Y":524},{"Bonus":0,"Continent":"K33","ID":53166,"Name":"Wioska barbarzyƄska 05","PlayerID":698757439,"Points":10481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53166","ServerKey":"pl181","X":341,"Y":336},{"Bonus":0,"Continent":"K63","ID":53167,"Name":"Psycha Siada","PlayerID":8099868,"Points":8564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53167","ServerKey":"pl181","X":332,"Y":641},{"Bonus":0,"Continent":"K25","ID":53168,"Name":"Wioska LOLA1982","PlayerID":2569868,"Points":1238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53168","ServerKey":"pl181","X":502,"Y":279},{"Bonus":0,"Continent":"K63","ID":53169,"Name":"Psycha Siada","PlayerID":8099868,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53169","ServerKey":"pl181","X":333,"Y":653},{"Bonus":0,"Continent":"K42","ID":53170,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":3696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53170","ServerKey":"pl181","X":277,"Y":457},{"Bonus":0,"Continent":"K66","ID":53171,"Name":"*024*t","PlayerID":1205898,"Points":7815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53171","ServerKey":"pl181","X":683,"Y":624},{"Bonus":0,"Continent":"K42","ID":53172,"Name":"Avanti!","PlayerID":698625834,"Points":6239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53172","ServerKey":"pl181","X":274,"Y":480},{"Bonus":0,"Continent":"K36","ID":53173,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53173","ServerKey":"pl181","X":661,"Y":337},{"Bonus":0,"Continent":"K66","ID":53174,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":6166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53174","ServerKey":"pl181","X":686,"Y":627},{"Bonus":0,"Continent":"K42","ID":53175,"Name":"SALEM","PlayerID":7259690,"Points":1292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53175","ServerKey":"pl181","X":293,"Y":401},{"Bonus":0,"Continent":"K33","ID":53176,"Name":"Wioska 005","PlayerID":699424741,"Points":4705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53176","ServerKey":"pl181","X":315,"Y":378},{"Bonus":0,"Continent":"K47","ID":53177,"Name":"[819] Odludzie","PlayerID":848985692,"Points":6732,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53177","ServerKey":"pl181","X":710,"Y":441},{"Bonus":0,"Continent":"K42","ID":53178,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":4700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53178","ServerKey":"pl181","X":276,"Y":464},{"Bonus":0,"Continent":"K25","ID":53179,"Name":"--039--","PlayerID":542253,"Points":5736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53179","ServerKey":"pl181","X":573,"Y":288},{"Bonus":0,"Continent":"K24","ID":53180,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53180","ServerKey":"pl181","X":413,"Y":292},{"Bonus":0,"Continent":"K57","ID":53181,"Name":"26. Maecht","PlayerID":8976313,"Points":9875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53181","ServerKey":"pl181","X":724,"Y":547},{"Bonus":0,"Continent":"K75","ID":53182,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53182","ServerKey":"pl181","X":538,"Y":719},{"Bonus":0,"Continent":"K47","ID":53184,"Name":"-006-","PlayerID":7418168,"Points":8839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53184","ServerKey":"pl181","X":723,"Y":499},{"Bonus":0,"Continent":"K52","ID":53185,"Name":"C0295","PlayerID":8841266,"Points":4249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53185","ServerKey":"pl181","X":274,"Y":530},{"Bonus":0,"Continent":"K66","ID":53186,"Name":"Wiadro19","PlayerID":8677963,"Points":2581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53186","ServerKey":"pl181","X":675,"Y":631},{"Bonus":0,"Continent":"K33","ID":53187,"Name":"NP 05","PlayerID":849076810,"Points":4324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53187","ServerKey":"pl181","X":305,"Y":392},{"Bonus":0,"Continent":"K75","ID":53188,"Name":"Kobylany","PlayerID":699837483,"Points":2728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53188","ServerKey":"pl181","X":588,"Y":701},{"Bonus":0,"Continent":"K42","ID":53189,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53189","ServerKey":"pl181","X":285,"Y":433},{"Bonus":0,"Continent":"K25","ID":53190,"Name":"North 050","PlayerID":849064752,"Points":9293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53190","ServerKey":"pl181","X":512,"Y":272},{"Bonus":0,"Continent":"K36","ID":53191,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53191","ServerKey":"pl181","X":628,"Y":318},{"Bonus":0,"Continent":"K75","ID":53192,"Name":"rafisonik10","PlayerID":849101108,"Points":4314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53192","ServerKey":"pl181","X":513,"Y":720},{"Bonus":0,"Continent":"K52","ID":53193,"Name":"C0300","PlayerID":8841266,"Points":4362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53193","ServerKey":"pl181","X":278,"Y":537},{"Bonus":0,"Continent":"K47","ID":53194,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":8000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53194","ServerKey":"pl181","X":727,"Y":465},{"Bonus":0,"Continent":"K66","ID":53195,"Name":"0017","PlayerID":6417987,"Points":1907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53195","ServerKey":"pl181","X":681,"Y":631},{"Bonus":0,"Continent":"K33","ID":53196,"Name":"Motorola 03","PlayerID":698806018,"Points":8577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53196","ServerKey":"pl181","X":363,"Y":318},{"Bonus":0,"Continent":"K25","ID":53197,"Name":"Wioska barbarzyƄska","PlayerID":6936607,"Points":2126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53197","ServerKey":"pl181","X":571,"Y":284},{"Bonus":0,"Continent":"K33","ID":53198,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":4262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53198","ServerKey":"pl181","X":367,"Y":324},{"Bonus":0,"Continent":"K63","ID":53200,"Name":"Wolgast","PlayerID":849092685,"Points":2341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53200","ServerKey":"pl181","X":338,"Y":655},{"Bonus":6,"Continent":"K74","ID":53201,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53201","ServerKey":"pl181","X":433,"Y":718},{"Bonus":0,"Continent":"K47","ID":53202,"Name":"031 Verdanturf Town","PlayerID":699441366,"Points":7565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53202","ServerKey":"pl181","X":721,"Y":480},{"Bonus":0,"Continent":"K57","ID":53203,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53203","ServerKey":"pl181","X":714,"Y":574},{"Bonus":0,"Continent":"K73","ID":53204,"Name":"nowy początek :)","PlayerID":2308351,"Points":3925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53204","ServerKey":"pl181","X":392,"Y":700},{"Bonus":0,"Continent":"K33","ID":53205,"Name":"Wioska barbarzyƄska 007","PlayerID":849068662,"Points":6205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53205","ServerKey":"pl181","X":376,"Y":314},{"Bonus":0,"Continent":"K43","ID":53207,"Name":"High commissioner","PlayerID":849089601,"Points":6188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53207","ServerKey":"pl181","X":303,"Y":400},{"Bonus":0,"Continent":"K57","ID":53208,"Name":"=106= Wioska barbarzyƄska","PlayerID":3781794,"Points":2420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53208","ServerKey":"pl181","X":707,"Y":572},{"Bonus":0,"Continent":"K34","ID":53209,"Name":"7.62 mm","PlayerID":699777234,"Points":3661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53209","ServerKey":"pl181","X":423,"Y":396},{"Bonus":0,"Continent":"K47","ID":53210,"Name":"C.050","PlayerID":9188016,"Points":4296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53210","ServerKey":"pl181","X":718,"Y":470},{"Bonus":0,"Continent":"K25","ID":53212,"Name":"Wioska 3","PlayerID":7427966,"Points":2481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53212","ServerKey":"pl181","X":550,"Y":279},{"Bonus":0,"Continent":"K47","ID":53213,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":2671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53213","ServerKey":"pl181","X":724,"Y":463},{"Bonus":0,"Continent":"K36","ID":53214,"Name":"Wioska004","PlayerID":698768565,"Points":8167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53214","ServerKey":"pl181","X":690,"Y":386},{"Bonus":0,"Continent":"K33","ID":53215,"Name":"Wioska barbarzyƄska 005","PlayerID":849068662,"Points":7834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53215","ServerKey":"pl181","X":378,"Y":315},{"Bonus":0,"Continent":"K66","ID":53216,"Name":"xxx","PlayerID":6921135,"Points":9323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53216","ServerKey":"pl181","X":697,"Y":600},{"Bonus":0,"Continent":"K63","ID":53217,"Name":"Wioska barbarzyƄska","PlayerID":849097175,"Points":353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53217","ServerKey":"pl181","X":331,"Y":653},{"Bonus":0,"Continent":"K47","ID":53218,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":3364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53218","ServerKey":"pl181","X":725,"Y":465},{"Bonus":0,"Continent":"K25","ID":53219,"Name":"046 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53219","ServerKey":"pl181","X":547,"Y":281},{"Bonus":0,"Continent":"K63","ID":53220,"Name":"077 Wioska barbarzyƄska","PlayerID":6354098,"Points":5334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53220","ServerKey":"pl181","X":349,"Y":667},{"Bonus":0,"Continent":"K25","ID":53221,"Name":"--019--","PlayerID":542253,"Points":8059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53221","ServerKey":"pl181","X":575,"Y":293},{"Bonus":0,"Continent":"K66","ID":53222,"Name":"#07!","PlayerID":849101884,"Points":2855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53222","ServerKey":"pl181","X":637,"Y":677},{"Bonus":3,"Continent":"K24","ID":53223,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53223","ServerKey":"pl181","X":400,"Y":299},{"Bonus":0,"Continent":"K24","ID":53224,"Name":"Wioska STALLON327","PlayerID":1553481,"Points":2112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53224","ServerKey":"pl181","X":475,"Y":272},{"Bonus":0,"Continent":"K57","ID":53225,"Name":"RzeĆșnia 2","PlayerID":849101029,"Points":7503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53225","ServerKey":"pl181","X":708,"Y":590},{"Bonus":0,"Continent":"K63","ID":53226,"Name":"Wioska Pracz 4","PlayerID":8916982,"Points":6398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53226","ServerKey":"pl181","X":307,"Y":622},{"Bonus":0,"Continent":"K74","ID":53227,"Name":"azi7","PlayerID":849094759,"Points":2084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53227","ServerKey":"pl181","X":460,"Y":723},{"Bonus":0,"Continent":"K24","ID":53228,"Name":"[0166]","PlayerID":8630972,"Points":8680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53228","ServerKey":"pl181","X":456,"Y":286},{"Bonus":0,"Continent":"K24","ID":53229,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53229","ServerKey":"pl181","X":427,"Y":289},{"Bonus":0,"Continent":"K33","ID":53230,"Name":"MƚCIWY KRIS 01","PlayerID":698757439,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53230","ServerKey":"pl181","X":341,"Y":337},{"Bonus":0,"Continent":"K33","ID":53231,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":2640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53231","ServerKey":"pl181","X":370,"Y":318},{"Bonus":0,"Continent":"K24","ID":53233,"Name":"KrakĂłw","PlayerID":3411571,"Points":3016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53233","ServerKey":"pl181","X":408,"Y":293},{"Bonus":0,"Continent":"K57","ID":53234,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":3268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53234","ServerKey":"pl181","X":725,"Y":535},{"Bonus":0,"Continent":"K47","ID":53235,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53235","ServerKey":"pl181","X":705,"Y":400},{"Bonus":0,"Continent":"K57","ID":53236,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":2860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53236","ServerKey":"pl181","X":723,"Y":534},{"Bonus":0,"Continent":"K52","ID":53237,"Name":"Wioska barbarzyƄska","PlayerID":849097123,"Points":1157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53237","ServerKey":"pl181","X":283,"Y":573},{"Bonus":0,"Continent":"K63","ID":53240,"Name":"134","PlayerID":849099876,"Points":8011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53240","ServerKey":"pl181","X":386,"Y":690},{"Bonus":0,"Continent":"K62","ID":53241,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53241","ServerKey":"pl181","X":298,"Y":614},{"Bonus":0,"Continent":"K66","ID":53242,"Name":"Brzeg Dolny","PlayerID":848932879,"Points":3195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53242","ServerKey":"pl181","X":677,"Y":640},{"Bonus":0,"Continent":"K75","ID":53243,"Name":"rafisonik8","PlayerID":849101108,"Points":3483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53243","ServerKey":"pl181","X":514,"Y":720},{"Bonus":0,"Continent":"K25","ID":53244,"Name":"PPF-21","PlayerID":1424656,"Points":4049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53244","ServerKey":"pl181","X":533,"Y":275},{"Bonus":2,"Continent":"K74","ID":53245,"Name":"Osada koczownikĂłw","PlayerID":849100814,"Points":2950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53245","ServerKey":"pl181","X":425,"Y":714},{"Bonus":0,"Continent":"K66","ID":53246,"Name":"komandos","PlayerID":7976264,"Points":4283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53246","ServerKey":"pl181","X":668,"Y":649},{"Bonus":0,"Continent":"K52","ID":53247,"Name":"New WorldA","PlayerID":849084005,"Points":4234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53247","ServerKey":"pl181","X":280,"Y":531},{"Bonus":0,"Continent":"K42","ID":53248,"Name":"K42 ADAMUS 012","PlayerID":6212605,"Points":6726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53248","ServerKey":"pl181","X":281,"Y":430},{"Bonus":0,"Continent":"K66","ID":53249,"Name":"054","PlayerID":699099811,"Points":2481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53249","ServerKey":"pl181","X":695,"Y":618},{"Bonus":0,"Continent":"K33","ID":53250,"Name":"E02","PlayerID":6301789,"Points":2952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53250","ServerKey":"pl181","X":305,"Y":387},{"Bonus":0,"Continent":"K74","ID":53251,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53251","ServerKey":"pl181","X":431,"Y":713},{"Bonus":0,"Continent":"K63","ID":53252,"Name":"Psycha Siada","PlayerID":8099868,"Points":4836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53252","ServerKey":"pl181","X":327,"Y":647},{"Bonus":0,"Continent":"K24","ID":53253,"Name":"BIMBER 7","PlayerID":6857973,"Points":2122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53253","ServerKey":"pl181","X":444,"Y":286},{"Bonus":0,"Continent":"K66","ID":53254,"Name":"komandos","PlayerID":7976264,"Points":5168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53254","ServerKey":"pl181","X":662,"Y":655},{"Bonus":0,"Continent":"K36","ID":53255,"Name":"Wioska 002","PlayerID":7226782,"Points":5456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53255","ServerKey":"pl181","X":671,"Y":347},{"Bonus":0,"Continent":"K42","ID":53257,"Name":"K42 ADAMUS 008","PlayerID":6212605,"Points":8581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53257","ServerKey":"pl181","X":282,"Y":433},{"Bonus":0,"Continent":"K36","ID":53258,"Name":"001","PlayerID":1775957,"Points":2637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53258","ServerKey":"pl181","X":609,"Y":300},{"Bonus":0,"Continent":"K25","ID":53259,"Name":"Wioska barbarzyƄska","PlayerID":8240677,"Points":6703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53259","ServerKey":"pl181","X":533,"Y":283},{"Bonus":0,"Continent":"K67","ID":53260,"Name":"K67 28","PlayerID":698867483,"Points":3043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53260","ServerKey":"pl181","X":703,"Y":607},{"Bonus":0,"Continent":"K33","ID":53261,"Name":"Babidi #2","PlayerID":849101962,"Points":7069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53261","ServerKey":"pl181","X":375,"Y":318},{"Bonus":0,"Continent":"K75","ID":53262,"Name":"Kapitol_10","PlayerID":606407,"Points":6046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53262","ServerKey":"pl181","X":505,"Y":726},{"Bonus":0,"Continent":"K36","ID":53263,"Name":"Wioska Vocare","PlayerID":849083293,"Points":3698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53263","ServerKey":"pl181","X":603,"Y":341},{"Bonus":0,"Continent":"K47","ID":53264,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":2747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53264","ServerKey":"pl181","X":706,"Y":422},{"Bonus":0,"Continent":"K33","ID":53265,"Name":"Szlachcic","PlayerID":698160606,"Points":6367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53265","ServerKey":"pl181","X":373,"Y":316},{"Bonus":0,"Continent":"K24","ID":53266,"Name":"_003_","PlayerID":9283142,"Points":4553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53266","ServerKey":"pl181","X":420,"Y":288},{"Bonus":0,"Continent":"K74","ID":53267,"Name":"New World","PlayerID":698152377,"Points":8922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53267","ServerKey":"pl181","X":437,"Y":714},{"Bonus":0,"Continent":"K52","ID":53268,"Name":"C0296 (Bandii.)","PlayerID":698769107,"Points":2033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53268","ServerKey":"pl181","X":285,"Y":550},{"Bonus":0,"Continent":"K36","ID":53269,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":4751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53269","ServerKey":"pl181","X":698,"Y":393},{"Bonus":0,"Continent":"K45","ID":53270,"Name":"050.","PlayerID":849094609,"Points":2593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53270","ServerKey":"pl181","X":595,"Y":454},{"Bonus":0,"Continent":"K66","ID":53271,"Name":"komandos","PlayerID":7976264,"Points":3921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53271","ServerKey":"pl181","X":669,"Y":654},{"Bonus":0,"Continent":"K74","ID":53272,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53272","ServerKey":"pl181","X":428,"Y":708},{"Bonus":0,"Continent":"K24","ID":53273,"Name":"102.Stradi","PlayerID":698365960,"Points":9857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53273","ServerKey":"pl181","X":422,"Y":285},{"Bonus":0,"Continent":"K75","ID":53274,"Name":"KASHYYYK 2","PlayerID":699383121,"Points":1943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53274","ServerKey":"pl181","X":568,"Y":719},{"Bonus":0,"Continent":"K63","ID":53275,"Name":"Wioska Myszka21","PlayerID":849064087,"Points":401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53275","ServerKey":"pl181","X":337,"Y":662},{"Bonus":0,"Continent":"K75","ID":53276,"Name":"zzz","PlayerID":8773967,"Points":3641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53276","ServerKey":"pl181","X":595,"Y":701},{"Bonus":0,"Continent":"K24","ID":53277,"Name":"#0256 barbarzyƄska","PlayerID":1238300,"Points":1913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53277","ServerKey":"pl181","X":444,"Y":278},{"Bonus":0,"Continent":"K33","ID":53278,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53278","ServerKey":"pl181","X":383,"Y":304},{"Bonus":0,"Continent":"K36","ID":53279,"Name":"Wioska 011","PlayerID":7226782,"Points":3689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53279","ServerKey":"pl181","X":673,"Y":352},{"Bonus":5,"Continent":"K75","ID":53280,"Name":"kathare","PlayerID":873575,"Points":9557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53280","ServerKey":"pl181","X":529,"Y":727},{"Bonus":0,"Continent":"K66","ID":53281,"Name":"komandos","PlayerID":7976264,"Points":6772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53281","ServerKey":"pl181","X":667,"Y":656},{"Bonus":0,"Continent":"K33","ID":53282,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":5098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53282","ServerKey":"pl181","X":331,"Y":355},{"Bonus":0,"Continent":"K75","ID":53284,"Name":"#201 C","PlayerID":9037756,"Points":4600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53284","ServerKey":"pl181","X":512,"Y":733},{"Bonus":0,"Continent":"K75","ID":53285,"Name":"Branco coelho","PlayerID":849102336,"Points":6088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53285","ServerKey":"pl181","X":523,"Y":723},{"Bonus":0,"Continent":"K75","ID":53288,"Name":"#0076","PlayerID":1536231,"Points":4215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53288","ServerKey":"pl181","X":572,"Y":718},{"Bonus":0,"Continent":"K47","ID":53290,"Name":"Atlantyda","PlayerID":699785935,"Points":4202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53290","ServerKey":"pl181","X":706,"Y":413},{"Bonus":0,"Continent":"K57","ID":53291,"Name":"095","PlayerID":7085502,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53291","ServerKey":"pl181","X":725,"Y":507},{"Bonus":0,"Continent":"K52","ID":53293,"Name":"Bombai","PlayerID":2717161,"Points":3375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53293","ServerKey":"pl181","X":291,"Y":580},{"Bonus":0,"Continent":"K66","ID":53294,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":6289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53294","ServerKey":"pl181","X":656,"Y":660},{"Bonus":0,"Continent":"K66","ID":53295,"Name":"Barcelona","PlayerID":747422,"Points":3261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53295","ServerKey":"pl181","X":646,"Y":674},{"Bonus":0,"Continent":"K24","ID":53296,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53296","ServerKey":"pl181","X":412,"Y":288},{"Bonus":0,"Continent":"K57","ID":53297,"Name":"096","PlayerID":7085502,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53297","ServerKey":"pl181","X":726,"Y":506},{"Bonus":0,"Continent":"K63","ID":53298,"Name":"Taran","PlayerID":6180190,"Points":8105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53298","ServerKey":"pl181","X":321,"Y":626},{"Bonus":0,"Continent":"K24","ID":53299,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53299","ServerKey":"pl181","X":403,"Y":293},{"Bonus":1,"Continent":"K52","ID":53300,"Name":"EO EO","PlayerID":699697558,"Points":8244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53300","ServerKey":"pl181","X":273,"Y":502},{"Bonus":0,"Continent":"K66","ID":53301,"Name":"Wioska janush4","PlayerID":747422,"Points":5045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53301","ServerKey":"pl181","X":648,"Y":674},{"Bonus":2,"Continent":"K36","ID":53302,"Name":"wioska","PlayerID":849102068,"Points":10620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53302","ServerKey":"pl181","X":643,"Y":323},{"Bonus":0,"Continent":"K66","ID":53303,"Name":"Wioska wodzu 22s","PlayerID":8292737,"Points":6928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53303","ServerKey":"pl181","X":613,"Y":692},{"Bonus":0,"Continent":"K63","ID":53305,"Name":"0162","PlayerID":7085510,"Points":3261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53305","ServerKey":"pl181","X":385,"Y":689},{"Bonus":0,"Continent":"K36","ID":53306,"Name":"osada 3","PlayerID":7357503,"Points":3734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53306","ServerKey":"pl181","X":662,"Y":349},{"Bonus":0,"Continent":"K33","ID":53307,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53307","ServerKey":"pl181","X":368,"Y":315},{"Bonus":0,"Continent":"K63","ID":53308,"Name":"zenon","PlayerID":849030086,"Points":9686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53308","ServerKey":"pl181","X":376,"Y":687},{"Bonus":0,"Continent":"K42","ID":53309,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53309","ServerKey":"pl181","X":277,"Y":449},{"Bonus":0,"Continent":"K66","ID":53310,"Name":"BETON 090.......","PlayerID":7976264,"Points":7404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53310","ServerKey":"pl181","X":664,"Y":651},{"Bonus":0,"Continent":"K66","ID":53311,"Name":"059.","PlayerID":699373599,"Points":2524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53311","ServerKey":"pl181","X":638,"Y":679},{"Bonus":0,"Continent":"K52","ID":53312,"Name":"005 Wioska D","PlayerID":6240801,"Points":4080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53312","ServerKey":"pl181","X":285,"Y":569},{"Bonus":0,"Continent":"K33","ID":53313,"Name":"Wioska17","PlayerID":699711926,"Points":5583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53313","ServerKey":"pl181","X":332,"Y":345},{"Bonus":0,"Continent":"K47","ID":53314,"Name":"Ghostmane1","PlayerID":848896434,"Points":2806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53314","ServerKey":"pl181","X":721,"Y":444},{"Bonus":0,"Continent":"K63","ID":53315,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53315","ServerKey":"pl181","X":325,"Y":631},{"Bonus":0,"Continent":"K35","ID":53316,"Name":"Wioska forestrr","PlayerID":8852026,"Points":7719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53316","ServerKey":"pl181","X":598,"Y":301},{"Bonus":0,"Continent":"K75","ID":53317,"Name":"Kapitol_14","PlayerID":606407,"Points":4596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53317","ServerKey":"pl181","X":502,"Y":726},{"Bonus":0,"Continent":"K74","ID":53318,"Name":"Kurnik","PlayerID":699603116,"Points":8238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53318","ServerKey":"pl181","X":452,"Y":716},{"Bonus":2,"Continent":"K63","ID":53319,"Name":"097","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53319","ServerKey":"pl181","X":386,"Y":697},{"Bonus":0,"Continent":"K63","ID":53321,"Name":"C100","PlayerID":699383279,"Points":5264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53321","ServerKey":"pl181","X":355,"Y":665},{"Bonus":0,"Continent":"K44","ID":53322,"Name":"7.62 mm","PlayerID":699777234,"Points":3966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53322","ServerKey":"pl181","X":466,"Y":426},{"Bonus":0,"Continent":"K25","ID":53323,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53323","ServerKey":"pl181","X":593,"Y":298},{"Bonus":0,"Continent":"K47","ID":53324,"Name":"027 KTW","PlayerID":848883237,"Points":6320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53324","ServerKey":"pl181","X":722,"Y":441},{"Bonus":0,"Continent":"K47","ID":53325,"Name":"Ghostmane8","PlayerID":848896434,"Points":1741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53325","ServerKey":"pl181","X":720,"Y":442},{"Bonus":0,"Continent":"K42","ID":53326,"Name":"K42 ADAMUS 014","PlayerID":6212605,"Points":5574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53326","ServerKey":"pl181","X":284,"Y":428},{"Bonus":0,"Continent":"K52","ID":53327,"Name":"Wyspa 007","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53327","ServerKey":"pl181","X":290,"Y":567},{"Bonus":0,"Continent":"K52","ID":53328,"Name":"41. Wioska 41","PlayerID":849091769,"Points":8545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53328","ServerKey":"pl181","X":282,"Y":563},{"Bonus":0,"Continent":"K74","ID":53329,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53329","ServerKey":"pl181","X":422,"Y":707},{"Bonus":0,"Continent":"K75","ID":53330,"Name":"mmutla o mosweu","PlayerID":849102336,"Points":1758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53330","ServerKey":"pl181","X":521,"Y":721},{"Bonus":0,"Continent":"K74","ID":53331,"Name":"Taka.","PlayerID":848999671,"Points":4602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53331","ServerKey":"pl181","X":483,"Y":726},{"Bonus":0,"Continent":"K33","ID":53332,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":10006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53332","ServerKey":"pl181","X":373,"Y":312},{"Bonus":5,"Continent":"K66","ID":53333,"Name":"Little thing","PlayerID":849101652,"Points":6558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53333","ServerKey":"pl181","X":694,"Y":617},{"Bonus":0,"Continent":"K66","ID":53334,"Name":"*022*","PlayerID":1205898,"Points":6284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53334","ServerKey":"pl181","X":687,"Y":626},{"Bonus":0,"Continent":"K47","ID":53335,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":3613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53335","ServerKey":"pl181","X":717,"Y":427},{"Bonus":0,"Continent":"K25","ID":53336,"Name":"cypel","PlayerID":6118079,"Points":5007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53336","ServerKey":"pl181","X":527,"Y":275},{"Bonus":0,"Continent":"K75","ID":53337,"Name":"farma to darma","PlayerID":6116940,"Points":1842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53337","ServerKey":"pl181","X":528,"Y":722},{"Bonus":0,"Continent":"K74","ID":53338,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53338","ServerKey":"pl181","X":428,"Y":709},{"Bonus":0,"Continent":"K75","ID":53339,"Name":"-32-","PlayerID":849032414,"Points":5909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53339","ServerKey":"pl181","X":585,"Y":706},{"Bonus":0,"Continent":"K75","ID":53340,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":4657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53340","ServerKey":"pl181","X":589,"Y":709},{"Bonus":0,"Continent":"K52","ID":53341,"Name":"027. Gloria Victis","PlayerID":848886973,"Points":6503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53341","ServerKey":"pl181","X":280,"Y":557},{"Bonus":0,"Continent":"K57","ID":53342,"Name":"Wioska Kuzniakers","PlayerID":699734445,"Points":3102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53342","ServerKey":"pl181","X":722,"Y":519},{"Bonus":0,"Continent":"K74","ID":53343,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53343","ServerKey":"pl181","X":433,"Y":720},{"Bonus":0,"Continent":"K57","ID":53344,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":5642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53344","ServerKey":"pl181","X":718,"Y":571},{"Bonus":0,"Continent":"K47","ID":53345,"Name":"[809] Odludzie","PlayerID":848985692,"Points":6320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53345","ServerKey":"pl181","X":713,"Y":437},{"Bonus":0,"Continent":"K42","ID":53346,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":3868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53346","ServerKey":"pl181","X":276,"Y":461},{"Bonus":0,"Continent":"K47","ID":53348,"Name":"Wioska TeletubisiĂłw","PlayerID":849102480,"Points":4041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53348","ServerKey":"pl181","X":716,"Y":428},{"Bonus":4,"Continent":"K66","ID":53349,"Name":"#033#","PlayerID":692803,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53349","ServerKey":"pl181","X":652,"Y":665},{"Bonus":0,"Continent":"K74","ID":53350,"Name":"032","PlayerID":8268010,"Points":1634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53350","ServerKey":"pl181","X":454,"Y":719},{"Bonus":0,"Continent":"K25","ID":53352,"Name":"stachodĆŒons 2","PlayerID":849101409,"Points":3531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53352","ServerKey":"pl181","X":594,"Y":291},{"Bonus":0,"Continent":"K66","ID":53353,"Name":"5-Wioska -AC-OB","PlayerID":1205898,"Points":1680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53353","ServerKey":"pl181","X":693,"Y":613},{"Bonus":0,"Continent":"K33","ID":53354,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53354","ServerKey":"pl181","X":320,"Y":363},{"Bonus":0,"Continent":"K47","ID":53355,"Name":"16 ta","PlayerID":849101845,"Points":9811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53355","ServerKey":"pl181","X":720,"Y":474},{"Bonus":0,"Continent":"K47","ID":53356,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53356","ServerKey":"pl181","X":726,"Y":496},{"Bonus":0,"Continent":"K53","ID":53357,"Name":"NoeyPL 4","PlayerID":849000135,"Points":5488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53357","ServerKey":"pl181","X":333,"Y":558},{"Bonus":0,"Continent":"K62","ID":53358,"Name":"O153","PlayerID":272173,"Points":2284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53358","ServerKey":"pl181","X":299,"Y":612},{"Bonus":4,"Continent":"K42","ID":53359,"Name":"Osada koczownikĂłw","PlayerID":699697558,"Points":7004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53359","ServerKey":"pl181","X":271,"Y":490},{"Bonus":0,"Continent":"K42","ID":53360,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53360","ServerKey":"pl181","X":276,"Y":447},{"Bonus":0,"Continent":"K47","ID":53361,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":3504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53361","ServerKey":"pl181","X":718,"Y":465},{"Bonus":0,"Continent":"K47","ID":53362,"Name":"C.051","PlayerID":9188016,"Points":3191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53362","ServerKey":"pl181","X":718,"Y":469},{"Bonus":0,"Continent":"K42","ID":53363,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53363","ServerKey":"pl181","X":292,"Y":427},{"Bonus":0,"Continent":"K24","ID":53364,"Name":"Wioska barbarzyƄska","PlayerID":849102150,"Points":1481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53364","ServerKey":"pl181","X":408,"Y":294},{"Bonus":0,"Continent":"K66","ID":53365,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":7233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53365","ServerKey":"pl181","X":648,"Y":665},{"Bonus":0,"Continent":"K66","ID":53366,"Name":"komandos","PlayerID":7976264,"Points":6357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53366","ServerKey":"pl181","X":663,"Y":656},{"Bonus":0,"Continent":"K56","ID":53367,"Name":"tomek016 VII","PlayerID":8811880,"Points":488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53367","ServerKey":"pl181","X":691,"Y":566},{"Bonus":0,"Continent":"K74","ID":53368,"Name":"015 - Budowanko!","PlayerID":7540891,"Points":7007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53368","ServerKey":"pl181","X":493,"Y":724},{"Bonus":0,"Continent":"K52","ID":53369,"Name":"Wioska barbarzyƄska","PlayerID":848988401,"Points":2858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53369","ServerKey":"pl181","X":284,"Y":578},{"Bonus":0,"Continent":"K36","ID":53370,"Name":"kamilkaze135 #17","PlayerID":699705601,"Points":3074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53370","ServerKey":"pl181","X":685,"Y":369},{"Bonus":3,"Continent":"K47","ID":53371,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":2595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53371","ServerKey":"pl181","X":713,"Y":423},{"Bonus":0,"Continent":"K24","ID":53372,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53372","ServerKey":"pl181","X":414,"Y":296},{"Bonus":0,"Continent":"K33","ID":53373,"Name":"002","PlayerID":849109795,"Points":3794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53373","ServerKey":"pl181","X":300,"Y":394},{"Bonus":9,"Continent":"K63","ID":53374,"Name":"0119","PlayerID":7085510,"Points":8683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53374","ServerKey":"pl181","X":377,"Y":694},{"Bonus":0,"Continent":"K33","ID":53375,"Name":"Szulernia","PlayerID":7249451,"Points":2016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53375","ServerKey":"pl181","X":392,"Y":375},{"Bonus":0,"Continent":"K75","ID":53376,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":4566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53376","ServerKey":"pl181","X":563,"Y":721},{"Bonus":0,"Continent":"K33","ID":53377,"Name":"Wioska SHIZA","PlayerID":698766369,"Points":1957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53377","ServerKey":"pl181","X":318,"Y":376},{"Bonus":0,"Continent":"K57","ID":53378,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53378","ServerKey":"pl181","X":721,"Y":549},{"Bonus":0,"Continent":"K34","ID":53379,"Name":"276...DEL","PlayerID":6920960,"Points":11824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53379","ServerKey":"pl181","X":462,"Y":308},{"Bonus":0,"Continent":"K57","ID":53380,"Name":"069. Napier","PlayerID":1601917,"Points":4528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53380","ServerKey":"pl181","X":718,"Y":529},{"Bonus":0,"Continent":"K52","ID":53381,"Name":"028. Gloria Victis","PlayerID":848886973,"Points":6172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53381","ServerKey":"pl181","X":282,"Y":556},{"Bonus":0,"Continent":"K63","ID":53382,"Name":"Wioska","PlayerID":698908184,"Points":5947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53382","ServerKey":"pl181","X":328,"Y":636},{"Bonus":0,"Continent":"K75","ID":53383,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":6728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53383","ServerKey":"pl181","X":540,"Y":726},{"Bonus":0,"Continent":"K75","ID":53384,"Name":"Wioska barbarzyƄsko","PlayerID":7756002,"Points":7034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53384","ServerKey":"pl181","X":579,"Y":712},{"Bonus":0,"Continent":"K47","ID":53385,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":3022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53385","ServerKey":"pl181","X":720,"Y":466},{"Bonus":0,"Continent":"K75","ID":53386,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53386","ServerKey":"pl181","X":539,"Y":718},{"Bonus":0,"Continent":"K36","ID":53387,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53387","ServerKey":"pl181","X":625,"Y":310},{"Bonus":0,"Continent":"K75","ID":53388,"Name":"Rosa","PlayerID":6882236,"Points":8715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53388","ServerKey":"pl181","X":577,"Y":712},{"Bonus":0,"Continent":"K24","ID":53389,"Name":"#0174 darmuwa","PlayerID":1238300,"Points":5896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53389","ServerKey":"pl181","X":475,"Y":278},{"Bonus":0,"Continent":"K57","ID":53390,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53390","ServerKey":"pl181","X":725,"Y":527},{"Bonus":0,"Continent":"K25","ID":53391,"Name":"B006","PlayerID":699485250,"Points":7685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53391","ServerKey":"pl181","X":522,"Y":278},{"Bonus":0,"Continent":"K74","ID":53392,"Name":"New World","PlayerID":698152377,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53392","ServerKey":"pl181","X":425,"Y":712},{"Bonus":0,"Continent":"K74","ID":53393,"Name":"0016","PlayerID":699656989,"Points":8612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53393","ServerKey":"pl181","X":471,"Y":726},{"Bonus":0,"Continent":"K52","ID":53394,"Name":"001","PlayerID":848886200,"Points":7267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53394","ServerKey":"pl181","X":295,"Y":534},{"Bonus":0,"Continent":"K75","ID":53395,"Name":"Kapitol_19","PlayerID":606407,"Points":5215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53395","ServerKey":"pl181","X":502,"Y":730},{"Bonus":0,"Continent":"K24","ID":53396,"Name":"Wioska barbarzyƄska","PlayerID":849089654,"Points":507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53396","ServerKey":"pl181","X":410,"Y":293},{"Bonus":2,"Continent":"K24","ID":53397,"Name":".achim.","PlayerID":6936607,"Points":7868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53397","ServerKey":"pl181","X":486,"Y":274},{"Bonus":0,"Continent":"K33","ID":53399,"Name":"MƚCIWY KRIS 04","PlayerID":698757439,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53399","ServerKey":"pl181","X":339,"Y":337},{"Bonus":0,"Continent":"K63","ID":53400,"Name":"Wioska 0015","PlayerID":9186126,"Points":9105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53400","ServerKey":"pl181","X":340,"Y":654},{"Bonus":0,"Continent":"K47","ID":53401,"Name":"Ghostmane4","PlayerID":848896434,"Points":3043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53401","ServerKey":"pl181","X":727,"Y":452},{"Bonus":0,"Continent":"K33","ID":53402,"Name":"Zaplecze Barba 026","PlayerID":699796330,"Points":5908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53402","ServerKey":"pl181","X":355,"Y":336},{"Bonus":0,"Continent":"K33","ID":53403,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":5140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53403","ServerKey":"pl181","X":319,"Y":363},{"Bonus":0,"Continent":"K25","ID":53404,"Name":"North 076","PlayerID":849064752,"Points":4400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53404","ServerKey":"pl181","X":519,"Y":275},{"Bonus":0,"Continent":"K63","ID":53405,"Name":"074 Wioska barbarzyƄska","PlayerID":6354098,"Points":3593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53405","ServerKey":"pl181","X":344,"Y":667},{"Bonus":0,"Continent":"K66","ID":53406,"Name":"#115#","PlayerID":692803,"Points":5652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53406","ServerKey":"pl181","X":652,"Y":670},{"Bonus":1,"Continent":"K25","ID":53407,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":8925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53407","ServerKey":"pl181","X":596,"Y":294},{"Bonus":0,"Continent":"K74","ID":53408,"Name":"BiaƂa Podlaska 1","PlayerID":849100787,"Points":7170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53408","ServerKey":"pl181","X":438,"Y":713},{"Bonus":0,"Continent":"K66","ID":53410,"Name":"062","PlayerID":699099811,"Points":655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53410","ServerKey":"pl181","X":692,"Y":621},{"Bonus":0,"Continent":"K64","ID":53411,"Name":"Wioska barbarzyƄska","PlayerID":699736927,"Points":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53411","ServerKey":"pl181","X":415,"Y":666},{"Bonus":0,"Continent":"K57","ID":53412,"Name":"Wioska wilka 02","PlayerID":6786449,"Points":9582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53412","ServerKey":"pl181","X":716,"Y":562},{"Bonus":0,"Continent":"K66","ID":53413,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53413","ServerKey":"pl181","X":663,"Y":648},{"Bonus":0,"Continent":"K57","ID":53414,"Name":"kww04","PlayerID":8976313,"Points":4188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53414","ServerKey":"pl181","X":718,"Y":544},{"Bonus":0,"Continent":"K33","ID":53415,"Name":"005","PlayerID":849109795,"Points":1458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53415","ServerKey":"pl181","X":302,"Y":393},{"Bonus":0,"Continent":"K47","ID":53416,"Name":"[811] Odludzie","PlayerID":848985692,"Points":7224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53416","ServerKey":"pl181","X":714,"Y":436},{"Bonus":0,"Continent":"K42","ID":53417,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53417","ServerKey":"pl181","X":287,"Y":422},{"Bonus":0,"Continent":"K66","ID":53418,"Name":"Wioska barbarzyƄska","PlayerID":699778867,"Points":826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53418","ServerKey":"pl181","X":691,"Y":607},{"Bonus":0,"Continent":"K42","ID":53419,"Name":"Avanti!","PlayerID":698625834,"Points":6332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53419","ServerKey":"pl181","X":279,"Y":474},{"Bonus":0,"Continent":"K52","ID":53421,"Name":"New WorldA","PlayerID":849084005,"Points":1598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53421","ServerKey":"pl181","X":277,"Y":540},{"Bonus":0,"Continent":"K57","ID":53422,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":9708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53422","ServerKey":"pl181","X":714,"Y":568},{"Bonus":0,"Continent":"K65","ID":53423,"Name":"- 169 - SS","PlayerID":849018239,"Points":9429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53423","ServerKey":"pl181","X":548,"Y":688},{"Bonus":0,"Continent":"K36","ID":53424,"Name":"osada 2","PlayerID":7357503,"Points":5168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53424","ServerKey":"pl181","X":663,"Y":347},{"Bonus":0,"Continent":"K75","ID":53426,"Name":"040.xxx","PlayerID":8612358,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53426","ServerKey":"pl181","X":522,"Y":725},{"Bonus":0,"Continent":"K74","ID":53427,"Name":"Wioska dla gieƂdy","PlayerID":1406042,"Points":8516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53427","ServerKey":"pl181","X":437,"Y":718},{"Bonus":0,"Continent":"K57","ID":53428,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":3987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53428","ServerKey":"pl181","X":727,"Y":512},{"Bonus":0,"Continent":"K65","ID":53429,"Name":"Wioska Sessue","PlayerID":8501514,"Points":4326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53429","ServerKey":"pl181","X":512,"Y":676},{"Bonus":0,"Continent":"K36","ID":53430,"Name":"kamilkaze135 #15","PlayerID":699705601,"Points":3880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53430","ServerKey":"pl181","X":691,"Y":374},{"Bonus":0,"Continent":"K47","ID":53431,"Name":"Wioska barbarzyƄska","PlayerID":848902592,"Points":5685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53431","ServerKey":"pl181","X":706,"Y":420},{"Bonus":0,"Continent":"K25","ID":53432,"Name":".achim.","PlayerID":6936607,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53432","ServerKey":"pl181","X":575,"Y":286},{"Bonus":2,"Continent":"K33","ID":53433,"Name":"MASZERUJ ALBO GIƃ 01","PlayerID":698757439,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53433","ServerKey":"pl181","X":339,"Y":339},{"Bonus":0,"Continent":"K66","ID":53434,"Name":"WZ06","PlayerID":7142659,"Points":4512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53434","ServerKey":"pl181","X":699,"Y":608},{"Bonus":0,"Continent":"K36","ID":53435,"Name":"Wioska barbarzyƄska","PlayerID":699429153,"Points":5634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53435","ServerKey":"pl181","X":699,"Y":395},{"Bonus":32,"Continent":"K64","ID":53436,"Name":"Twierdza (Why?)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53436","ServerKey":"pl181","X":474,"Y":648},{"Bonus":25,"Continent":"K45","ID":53437,"Name":"Twierdza (-LM-)","PlayerID":0,"Points":2608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53437","ServerKey":"pl181","X":533,"Y":450},{"Bonus":0,"Continent":"K33","ID":53438,"Name":"014. Carbonara","PlayerID":849102092,"Points":5689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53438","ServerKey":"pl181","X":315,"Y":379},{"Bonus":0,"Continent":"K33","ID":53439,"Name":"Wioska barbarzyƄska 11","PlayerID":698757439,"Points":7507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53439","ServerKey":"pl181","X":347,"Y":334},{"Bonus":0,"Continent":"K33","ID":53440,"Name":"C-005","PlayerID":699406247,"Points":4132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53440","ServerKey":"pl181","X":322,"Y":356},{"Bonus":0,"Continent":"K66","ID":53441,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":6223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53441","ServerKey":"pl181","X":644,"Y":679},{"Bonus":0,"Continent":"K42","ID":53442,"Name":"Betoniarnia","PlayerID":848907771,"Points":1898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53442","ServerKey":"pl181","X":276,"Y":455},{"Bonus":0,"Continent":"K65","ID":53443,"Name":"Darma MOOSELOOSE","PlayerID":699560327,"Points":9255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53443","ServerKey":"pl181","X":577,"Y":622},{"Bonus":0,"Continent":"K24","ID":53444,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":7705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53444","ServerKey":"pl181","X":404,"Y":291},{"Bonus":0,"Continent":"K63","ID":53445,"Name":"011 | North","PlayerID":699511295,"Points":5121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53445","ServerKey":"pl181","X":380,"Y":693},{"Bonus":0,"Continent":"K63","ID":53446,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53446","ServerKey":"pl181","X":362,"Y":672},{"Bonus":0,"Continent":"K42","ID":53447,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53447","ServerKey":"pl181","X":285,"Y":450},{"Bonus":0,"Continent":"K66","ID":53448,"Name":"Wioska barbarzyƄska","PlayerID":849092827,"Points":1032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53448","ServerKey":"pl181","X":690,"Y":628},{"Bonus":0,"Continent":"K57","ID":53449,"Name":"Alamo","PlayerID":2723244,"Points":2773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53449","ServerKey":"pl181","X":718,"Y":566},{"Bonus":0,"Continent":"K57","ID":53450,"Name":"023 Z","PlayerID":699718269,"Points":4345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53450","ServerKey":"pl181","X":729,"Y":500},{"Bonus":0,"Continent":"K73","ID":53452,"Name":"025","PlayerID":849099876,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53452","ServerKey":"pl181","X":398,"Y":706},{"Bonus":0,"Continent":"K75","ID":53453,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":4010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53453","ServerKey":"pl181","X":539,"Y":721},{"Bonus":0,"Continent":"K63","ID":53454,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53454","ServerKey":"pl181","X":324,"Y":632},{"Bonus":5,"Continent":"K66","ID":53455,"Name":"Ć»UBEREK 003","PlayerID":33900,"Points":9988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53455","ServerKey":"pl181","X":611,"Y":691},{"Bonus":0,"Continent":"K74","ID":53456,"Name":"Kurnik","PlayerID":699603116,"Points":9068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53456","ServerKey":"pl181","X":451,"Y":720},{"Bonus":0,"Continent":"K47","ID":53457,"Name":"[836] Odludzie","PlayerID":848985692,"Points":5204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53457","ServerKey":"pl181","X":720,"Y":438},{"Bonus":0,"Continent":"K53","ID":53458,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":4839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53458","ServerKey":"pl181","X":356,"Y":525},{"Bonus":0,"Continent":"K47","ID":53459,"Name":"ZPP Atleti","PlayerID":8096537,"Points":3037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53459","ServerKey":"pl181","X":727,"Y":478},{"Bonus":0,"Continent":"K74","ID":53460,"Name":"New World","PlayerID":698152377,"Points":6740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53460","ServerKey":"pl181","X":411,"Y":700},{"Bonus":0,"Continent":"K47","ID":53461,"Name":"Ghostmane7","PlayerID":848896434,"Points":2733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53461","ServerKey":"pl181","X":719,"Y":450},{"Bonus":0,"Continent":"K66","ID":53462,"Name":"3. Redania","PlayerID":849101526,"Points":1682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53462","ServerKey":"pl181","X":603,"Y":698},{"Bonus":0,"Continent":"K75","ID":53463,"Name":"058 - Budowanko!","PlayerID":7540891,"Points":4499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53463","ServerKey":"pl181","X":506,"Y":722},{"Bonus":0,"Continent":"K36","ID":53464,"Name":"*007","PlayerID":7758085,"Points":6887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53464","ServerKey":"pl181","X":673,"Y":365},{"Bonus":0,"Continent":"K63","ID":53465,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53465","ServerKey":"pl181","X":324,"Y":639},{"Bonus":0,"Continent":"K63","ID":53466,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":3733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53466","ServerKey":"pl181","X":382,"Y":688},{"Bonus":0,"Continent":"K74","ID":53467,"Name":"0013 Dziewczyna z Pociągu","PlayerID":699656989,"Points":9584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53467","ServerKey":"pl181","X":458,"Y":726},{"Bonus":0,"Continent":"K47","ID":53468,"Name":"1 na 100","PlayerID":699785935,"Points":5711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53468","ServerKey":"pl181","X":709,"Y":411},{"Bonus":0,"Continent":"K23","ID":53470,"Name":"Wioska barbarzyƄska","PlayerID":3842862,"Points":816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53470","ServerKey":"pl181","X":390,"Y":299},{"Bonus":0,"Continent":"K67","ID":53471,"Name":"K67 04","PlayerID":698867483,"Points":4948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53471","ServerKey":"pl181","X":700,"Y":614},{"Bonus":0,"Continent":"K63","ID":53472,"Name":"Wustewaltersdorf","PlayerID":849092685,"Points":982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53472","ServerKey":"pl181","X":353,"Y":665},{"Bonus":0,"Continent":"K63","ID":53473,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53473","ServerKey":"pl181","X":322,"Y":632},{"Bonus":0,"Continent":"K46","ID":53474,"Name":"005.U-KISS","PlayerID":9180206,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53474","ServerKey":"pl181","X":694,"Y":421},{"Bonus":0,"Continent":"K74","ID":53475,"Name":"020. Night Raid","PlayerID":699684062,"Points":5541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53475","ServerKey":"pl181","X":489,"Y":729},{"Bonus":0,"Continent":"K42","ID":53476,"Name":"K42 ADAMUS 017","PlayerID":6212605,"Points":5953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53476","ServerKey":"pl181","X":282,"Y":430},{"Bonus":0,"Continent":"K42","ID":53477,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53477","ServerKey":"pl181","X":289,"Y":423},{"Bonus":0,"Continent":"K75","ID":53478,"Name":"Trunks Super Saiyan 003","PlayerID":699054373,"Points":5107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53478","ServerKey":"pl181","X":519,"Y":725},{"Bonus":0,"Continent":"K36","ID":53479,"Name":"Wioska 3","PlayerID":849056744,"Points":4042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53479","ServerKey":"pl181","X":623,"Y":359},{"Bonus":0,"Continent":"K25","ID":53480,"Name":"#011","PlayerID":849064614,"Points":8894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53480","ServerKey":"pl181","X":555,"Y":278},{"Bonus":0,"Continent":"K36","ID":53481,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53481","ServerKey":"pl181","X":657,"Y":338},{"Bonus":0,"Continent":"K33","ID":53482,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":6062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53482","ServerKey":"pl181","X":367,"Y":316},{"Bonus":0,"Continent":"K66","ID":53483,"Name":"~~085~~","PlayerID":7829201,"Points":2918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53483","ServerKey":"pl181","X":678,"Y":636},{"Bonus":0,"Continent":"K75","ID":53484,"Name":"-11-","PlayerID":849032414,"Points":8925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53484","ServerKey":"pl181","X":582,"Y":708},{"Bonus":0,"Continent":"K57","ID":53485,"Name":"028 Legio IV Flavia Felix","PlayerID":699878150,"Points":1647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53485","ServerKey":"pl181","X":713,"Y":559},{"Bonus":0,"Continent":"K47","ID":53486,"Name":"Wioska barbarzyƄska","PlayerID":699272633,"Points":2042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53486","ServerKey":"pl181","X":714,"Y":429},{"Bonus":0,"Continent":"K63","ID":53487,"Name":"Psycha Siada","PlayerID":8099868,"Points":9277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53487","ServerKey":"pl181","X":333,"Y":645},{"Bonus":0,"Continent":"K57","ID":53488,"Name":"E01","PlayerID":848995478,"Points":9059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53488","ServerKey":"pl181","X":723,"Y":549},{"Bonus":0,"Continent":"K75","ID":53489,"Name":"Kapitol_11","PlayerID":606407,"Points":6034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53489","ServerKey":"pl181","X":513,"Y":722},{"Bonus":0,"Continent":"K63","ID":53491,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53491","ServerKey":"pl181","X":395,"Y":698},{"Bonus":0,"Continent":"K24","ID":53492,"Name":"[0172]","PlayerID":8630972,"Points":7387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53492","ServerKey":"pl181","X":450,"Y":282},{"Bonus":0,"Continent":"K33","ID":53493,"Name":"Zaplecze Barba 035","PlayerID":699796330,"Points":4062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53493","ServerKey":"pl181","X":349,"Y":335},{"Bonus":0,"Continent":"K52","ID":53494,"Name":"009","PlayerID":698663855,"Points":4490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53494","ServerKey":"pl181","X":298,"Y":595},{"Bonus":0,"Continent":"K75","ID":53495,"Name":"#0056","PlayerID":1536231,"Points":4855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53495","ServerKey":"pl181","X":580,"Y":713},{"Bonus":0,"Continent":"K25","ID":53496,"Name":"5.E","PlayerID":699146580,"Points":1252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53496","ServerKey":"pl181","X":536,"Y":276},{"Bonus":0,"Continent":"K42","ID":53497,"Name":"#006 Zenitizm to styl ĆŒycia","PlayerID":849096215,"Points":1104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53497","ServerKey":"pl181","X":279,"Y":444},{"Bonus":0,"Continent":"K57","ID":53498,"Name":"Wioska diabel19","PlayerID":8541236,"Points":9394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53498","ServerKey":"pl181","X":724,"Y":523},{"Bonus":0,"Continent":"K66","ID":53499,"Name":"Kurczaczek","PlayerID":698338524,"Points":1617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53499","ServerKey":"pl181","X":628,"Y":691},{"Bonus":0,"Continent":"K74","ID":53500,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53500","ServerKey":"pl181","X":429,"Y":714},{"Bonus":0,"Continent":"K33","ID":53501,"Name":"Wiocha VI","PlayerID":849106316,"Points":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53501","ServerKey":"pl181","X":335,"Y":353},{"Bonus":0,"Continent":"K42","ID":53502,"Name":"B_7","PlayerID":699728266,"Points":1537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53502","ServerKey":"pl181","X":295,"Y":421},{"Bonus":9,"Continent":"K24","ID":53503,"Name":"Winterfell.011","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53503","ServerKey":"pl181","X":455,"Y":280},{"Bonus":0,"Continent":"K75","ID":53504,"Name":"lorus","PlayerID":699878511,"Points":5864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53504","ServerKey":"pl181","X":527,"Y":727},{"Bonus":3,"Continent":"K75","ID":53505,"Name":"128 invidia","PlayerID":849093426,"Points":9539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53505","ServerKey":"pl181","X":504,"Y":727},{"Bonus":0,"Continent":"K63","ID":53506,"Name":"Wioska MamTegoDoƛć","PlayerID":698592907,"Points":5928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53506","ServerKey":"pl181","X":351,"Y":676},{"Bonus":0,"Continent":"K63","ID":53507,"Name":"163","PlayerID":849099876,"Points":9278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53507","ServerKey":"pl181","X":399,"Y":697},{"Bonus":0,"Continent":"K57","ID":53508,"Name":"Nekropolis","PlayerID":849088199,"Points":8821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53508","ServerKey":"pl181","X":707,"Y":584},{"Bonus":0,"Continent":"K33","ID":53509,"Name":"Semantyka","PlayerID":849076515,"Points":2434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53509","ServerKey":"pl181","X":307,"Y":393},{"Bonus":0,"Continent":"K74","ID":53510,"Name":"Bagno 31","PlayerID":848883684,"Points":6002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53510","ServerKey":"pl181","X":474,"Y":723},{"Bonus":0,"Continent":"K25","ID":53511,"Name":"StachodĆŒons","PlayerID":849101409,"Points":6758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53511","ServerKey":"pl181","X":594,"Y":292},{"Bonus":0,"Continent":"K57","ID":53512,"Name":"Mordownia 8","PlayerID":849101029,"Points":5886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53512","ServerKey":"pl181","X":707,"Y":595},{"Bonus":0,"Continent":"K74","ID":53513,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53513","ServerKey":"pl181","X":435,"Y":715},{"Bonus":0,"Continent":"K57","ID":53514,"Name":"063. Maszerbrum","PlayerID":1601917,"Points":4872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53514","ServerKey":"pl181","X":718,"Y":528},{"Bonus":0,"Continent":"K57","ID":53515,"Name":"CastAway !031","PlayerID":9314079,"Points":4100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53515","ServerKey":"pl181","X":715,"Y":580},{"Bonus":0,"Continent":"K42","ID":53516,"Name":"Wioska Xerez","PlayerID":698701911,"Points":3677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53516","ServerKey":"pl181","X":295,"Y":466},{"Bonus":0,"Continent":"K47","ID":53517,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53517","ServerKey":"pl181","X":713,"Y":415},{"Bonus":0,"Continent":"K47","ID":53518,"Name":"Artur Boruc V2","PlayerID":699146876,"Points":2497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53518","ServerKey":"pl181","X":707,"Y":405},{"Bonus":0,"Continent":"K75","ID":53519,"Name":"013","PlayerID":848953066,"Points":5445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53519","ServerKey":"pl181","X":507,"Y":726},{"Bonus":0,"Continent":"K74","ID":53520,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53520","ServerKey":"pl181","X":402,"Y":702},{"Bonus":0,"Continent":"K52","ID":53521,"Name":"Cisza","PlayerID":698769107,"Points":1403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53521","ServerKey":"pl181","X":286,"Y":565},{"Bonus":0,"Continent":"K25","ID":53522,"Name":"--051--","PlayerID":542253,"Points":3008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53522","ServerKey":"pl181","X":580,"Y":288},{"Bonus":0,"Continent":"K33","ID":53523,"Name":"C-001","PlayerID":699406247,"Points":5943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53523","ServerKey":"pl181","X":321,"Y":356},{"Bonus":0,"Continent":"K57","ID":53524,"Name":"RzeĆșnia","PlayerID":849101029,"Points":4640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53524","ServerKey":"pl181","X":708,"Y":591},{"Bonus":6,"Continent":"K66","ID":53525,"Name":"Osada koczownikĂłw","PlayerID":849092827,"Points":1109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53525","ServerKey":"pl181","X":691,"Y":628},{"Bonus":0,"Continent":"K57","ID":53526,"Name":"092","PlayerID":7085502,"Points":4086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53526","ServerKey":"pl181","X":722,"Y":513},{"Bonus":0,"Continent":"K66","ID":53527,"Name":"#107#","PlayerID":692803,"Points":5717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53527","ServerKey":"pl181","X":656,"Y":668},{"Bonus":0,"Continent":"K25","ID":53528,"Name":"Wioska Wojtaka","PlayerID":8609713,"Points":2689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53528","ServerKey":"pl181","X":585,"Y":288},{"Bonus":0,"Continent":"K42","ID":53529,"Name":"Avanti!","PlayerID":698625834,"Points":4253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53529","ServerKey":"pl181","X":272,"Y":469},{"Bonus":9,"Continent":"K63","ID":53530,"Name":"O047","PlayerID":272173,"Points":9866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53530","ServerKey":"pl181","X":315,"Y":629},{"Bonus":0,"Continent":"K42","ID":53531,"Name":"Liverpool","PlayerID":848993769,"Points":359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53531","ServerKey":"pl181","X":293,"Y":418},{"Bonus":0,"Continent":"K66","ID":53532,"Name":"xxx1","PlayerID":6921135,"Points":5316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53532","ServerKey":"pl181","X":696,"Y":601},{"Bonus":0,"Continent":"K47","ID":53533,"Name":"[824] Odludzie","PlayerID":848985692,"Points":6366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53533","ServerKey":"pl181","X":718,"Y":431},{"Bonus":0,"Continent":"K36","ID":53534,"Name":"XDX","PlayerID":699098531,"Points":4124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53534","ServerKey":"pl181","X":617,"Y":308},{"Bonus":0,"Continent":"K26","ID":53535,"Name":"Flap","PlayerID":699098531,"Points":5507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53535","ServerKey":"pl181","X":600,"Y":295},{"Bonus":0,"Continent":"K75","ID":53536,"Name":"MERHET","PlayerID":698215322,"Points":2561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53536","ServerKey":"pl181","X":590,"Y":704},{"Bonus":0,"Continent":"K56","ID":53537,"Name":"KRONOSIK8","PlayerID":849107703,"Points":6307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53537","ServerKey":"pl181","X":679,"Y":562},{"Bonus":0,"Continent":"K74","ID":53538,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53538","ServerKey":"pl181","X":403,"Y":707},{"Bonus":0,"Continent":"K52","ID":53540,"Name":"Laguna","PlayerID":848930898,"Points":2955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53540","ServerKey":"pl181","X":278,"Y":544},{"Bonus":0,"Continent":"K42","ID":53542,"Name":"K42 ADAMUS 015","PlayerID":6212605,"Points":5636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53542","ServerKey":"pl181","X":289,"Y":429},{"Bonus":0,"Continent":"K24","ID":53544,"Name":"007","PlayerID":699694284,"Points":8261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53544","ServerKey":"pl181","X":401,"Y":292},{"Bonus":0,"Continent":"K66","ID":53545,"Name":"1. Kear Morhen","PlayerID":849101526,"Points":6512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53545","ServerKey":"pl181","X":606,"Y":697},{"Bonus":0,"Continent":"K24","ID":53546,"Name":"????","PlayerID":698489071,"Points":5287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53546","ServerKey":"pl181","X":477,"Y":271},{"Bonus":0,"Continent":"K75","ID":53547,"Name":"Wioska dziadek1974","PlayerID":8991696,"Points":6812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53547","ServerKey":"pl181","X":593,"Y":707},{"Bonus":0,"Continent":"K66","ID":53548,"Name":"Wioska barbarzyƄska","PlayerID":3589487,"Points":2197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53548","ServerKey":"pl181","X":697,"Y":614},{"Bonus":0,"Continent":"K74","ID":53549,"Name":"New World","PlayerID":698152377,"Points":6877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53549","ServerKey":"pl181","X":439,"Y":716},{"Bonus":0,"Continent":"K57","ID":53550,"Name":"Nowa 60","PlayerID":698702991,"Points":4538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53550","ServerKey":"pl181","X":711,"Y":580},{"Bonus":0,"Continent":"K74","ID":53551,"Name":"|D| IS","PlayerID":698147372,"Points":2673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53551","ServerKey":"pl181","X":459,"Y":724},{"Bonus":0,"Continent":"K52","ID":53552,"Name":"San Escobar","PlayerID":2717161,"Points":6838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53552","ServerKey":"pl181","X":291,"Y":590},{"Bonus":0,"Continent":"K36","ID":53553,"Name":"B-1","PlayerID":849095509,"Points":3978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53553","ServerKey":"pl181","X":672,"Y":360},{"Bonus":0,"Continent":"K24","ID":53554,"Name":"111","PlayerID":849089654,"Points":3875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53554","ServerKey":"pl181","X":414,"Y":294},{"Bonus":0,"Continent":"K63","ID":53555,"Name":"129","PlayerID":849099876,"Points":7469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53555","ServerKey":"pl181","X":391,"Y":699},{"Bonus":0,"Continent":"K74","ID":53556,"Name":"|D| Riverfrost","PlayerID":698147372,"Points":4697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53556","ServerKey":"pl181","X":455,"Y":720},{"Bonus":0,"Continent":"K42","ID":53557,"Name":"K42 ADAMUS 024","PlayerID":6212605,"Points":2217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53557","ServerKey":"pl181","X":283,"Y":425},{"Bonus":0,"Continent":"K63","ID":53558,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53558","ServerKey":"pl181","X":352,"Y":668},{"Bonus":0,"Continent":"K57","ID":53559,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53559","ServerKey":"pl181","X":729,"Y":513},{"Bonus":3,"Continent":"K63","ID":53560,"Name":"0121","PlayerID":7085510,"Points":6567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53560","ServerKey":"pl181","X":348,"Y":672},{"Bonus":0,"Continent":"K24","ID":53561,"Name":"111","PlayerID":849102150,"Points":3430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53561","ServerKey":"pl181","X":420,"Y":298},{"Bonus":0,"Continent":"K36","ID":53562,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53562","ServerKey":"pl181","X":649,"Y":330},{"Bonus":0,"Continent":"K66","ID":53563,"Name":"Wygwizdowa 014","PlayerID":698562644,"Points":3648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53563","ServerKey":"pl181","X":653,"Y":665},{"Bonus":0,"Continent":"K57","ID":53564,"Name":"059","PlayerID":699413040,"Points":3465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53564","ServerKey":"pl181","X":723,"Y":514},{"Bonus":9,"Continent":"K36","ID":53565,"Name":"=|07|=","PlayerID":9101574,"Points":9925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53565","ServerKey":"pl181","X":690,"Y":383},{"Bonus":0,"Continent":"K63","ID":53566,"Name":"A004","PlayerID":849105102,"Points":2842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53566","ServerKey":"pl181","X":334,"Y":658},{"Bonus":6,"Continent":"K24","ID":53567,"Name":"Osada koczownikĂłw","PlayerID":698231772,"Points":5290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53567","ServerKey":"pl181","X":419,"Y":296},{"Bonus":0,"Continent":"K46","ID":53568,"Name":"102 Zushi","PlayerID":7092442,"Points":3798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53568","ServerKey":"pl181","X":635,"Y":473},{"Bonus":0,"Continent":"K52","ID":53569,"Name":"Cisza","PlayerID":698769107,"Points":3149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53569","ServerKey":"pl181","X":285,"Y":561},{"Bonus":0,"Continent":"K33","ID":53570,"Name":"W003","PlayerID":849082154,"Points":2009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53570","ServerKey":"pl181","X":307,"Y":389},{"Bonus":0,"Continent":"K46","ID":53571,"Name":"101 Sanuki","PlayerID":7092442,"Points":4105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53571","ServerKey":"pl181","X":641,"Y":475},{"Bonus":0,"Continent":"K74","ID":53572,"Name":"New World","PlayerID":698152377,"Points":4733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53572","ServerKey":"pl181","X":411,"Y":710},{"Bonus":0,"Continent":"K25","ID":53573,"Name":"--046--","PlayerID":542253,"Points":3145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53573","ServerKey":"pl181","X":577,"Y":292},{"Bonus":0,"Continent":"K33","ID":53574,"Name":"Wioska29","PlayerID":699711926,"Points":2619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53574","ServerKey":"pl181","X":334,"Y":341},{"Bonus":0,"Continent":"K42","ID":53575,"Name":"Dzik 11","PlayerID":8366045,"Points":9441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53575","ServerKey":"pl181","X":288,"Y":426},{"Bonus":0,"Continent":"K64","ID":53576,"Name":"A17","PlayerID":698652014,"Points":3629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53576","ServerKey":"pl181","X":465,"Y":644},{"Bonus":0,"Continent":"K33","ID":53577,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":3000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53577","ServerKey":"pl181","X":355,"Y":324},{"Bonus":6,"Continent":"K36","ID":53579,"Name":"=|06|=","PlayerID":9101574,"Points":10004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53579","ServerKey":"pl181","X":690,"Y":385},{"Bonus":0,"Continent":"K75","ID":53580,"Name":"ups","PlayerID":849101102,"Points":8989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53580","ServerKey":"pl181","X":508,"Y":729},{"Bonus":0,"Continent":"K36","ID":53581,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53581","ServerKey":"pl181","X":626,"Y":311},{"Bonus":0,"Continent":"K33","ID":53582,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":2648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53582","ServerKey":"pl181","X":355,"Y":327},{"Bonus":0,"Continent":"K66","ID":53583,"Name":"~~068~~","PlayerID":7829201,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53583","ServerKey":"pl181","X":683,"Y":634},{"Bonus":0,"Continent":"K75","ID":53584,"Name":"#0057","PlayerID":1536231,"Points":4321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53584","ServerKey":"pl181","X":571,"Y":715},{"Bonus":0,"Continent":"K63","ID":53585,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53585","ServerKey":"pl181","X":358,"Y":674},{"Bonus":0,"Continent":"K74","ID":53586,"Name":"Wioska barbarzyƄska","PlayerID":699744012,"Points":1721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53586","ServerKey":"pl181","X":493,"Y":725},{"Bonus":0,"Continent":"K75","ID":53587,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":8398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53587","ServerKey":"pl181","X":543,"Y":720},{"Bonus":0,"Continent":"K36","ID":53588,"Name":"021. Wioska barbarzyƄska","PlayerID":2873154,"Points":4925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53588","ServerKey":"pl181","X":683,"Y":375},{"Bonus":0,"Continent":"K24","ID":53589,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":2713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53589","ServerKey":"pl181","X":459,"Y":275},{"Bonus":0,"Continent":"K74","ID":53590,"Name":"Wioska barbarzyƄska","PlayerID":849037407,"Points":1327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53590","ServerKey":"pl181","X":455,"Y":719},{"Bonus":0,"Continent":"K44","ID":53591,"Name":"K44 x035","PlayerID":698364331,"Points":6529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53591","ServerKey":"pl181","X":441,"Y":406},{"Bonus":0,"Continent":"K52","ID":53592,"Name":"Cisza","PlayerID":698769107,"Points":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53592","ServerKey":"pl181","X":283,"Y":579},{"Bonus":0,"Continent":"K52","ID":53593,"Name":"New WorldA","PlayerID":849084005,"Points":4733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53593","ServerKey":"pl181","X":280,"Y":530},{"Bonus":6,"Continent":"K57","ID":53594,"Name":"Osada koczownikĂłw","PlayerID":2453888,"Points":9596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53594","ServerKey":"pl181","X":714,"Y":573},{"Bonus":0,"Continent":"K44","ID":53595,"Name":"Wioska PeKamon","PlayerID":698364331,"Points":7399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53595","ServerKey":"pl181","X":438,"Y":409},{"Bonus":9,"Continent":"K33","ID":53597,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53597","ServerKey":"pl181","X":398,"Y":300},{"Bonus":0,"Continent":"K57","ID":53599,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":9760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53599","ServerKey":"pl181","X":718,"Y":547},{"Bonus":0,"Continent":"K33","ID":53600,"Name":"A-007","PlayerID":699406247,"Points":3226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53600","ServerKey":"pl181","X":318,"Y":371},{"Bonus":0,"Continent":"K63","ID":53601,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":1015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53601","ServerKey":"pl181","X":329,"Y":652},{"Bonus":0,"Continent":"K42","ID":53602,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53602","ServerKey":"pl181","X":288,"Y":415},{"Bonus":0,"Continent":"K33","ID":53603,"Name":"Palirura","PlayerID":698906190,"Points":2416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53603","ServerKey":"pl181","X":353,"Y":331},{"Bonus":0,"Continent":"K36","ID":53604,"Name":"osada 5","PlayerID":7357503,"Points":1839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53604","ServerKey":"pl181","X":661,"Y":350},{"Bonus":0,"Continent":"K47","ID":53605,"Name":"Wioska Mekambe","PlayerID":849102480,"Points":8026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53605","ServerKey":"pl181","X":713,"Y":428},{"Bonus":0,"Continent":"K63","ID":53606,"Name":"135","PlayerID":849099876,"Points":6791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53606","ServerKey":"pl181","X":388,"Y":692},{"Bonus":0,"Continent":"K63","ID":53607,"Name":"Wioska Pracz 8","PlayerID":8916982,"Points":3081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53607","ServerKey":"pl181","X":312,"Y":624},{"Bonus":0,"Continent":"K25","ID":53608,"Name":"North 047","PlayerID":849064752,"Points":5398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53608","ServerKey":"pl181","X":541,"Y":274},{"Bonus":0,"Continent":"K73","ID":53609,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53609","ServerKey":"pl181","X":393,"Y":700},{"Bonus":0,"Continent":"K73","ID":53610,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53610","ServerKey":"pl181","X":397,"Y":703},{"Bonus":0,"Continent":"K66","ID":53611,"Name":"komandos","PlayerID":7976264,"Points":4424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53611","ServerKey":"pl181","X":666,"Y":659},{"Bonus":6,"Continent":"K63","ID":53612,"Name":"0117","PlayerID":7085510,"Points":8004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53612","ServerKey":"pl181","X":376,"Y":692},{"Bonus":0,"Continent":"K56","ID":53613,"Name":"A.018","PlayerID":9188016,"Points":7551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53613","ServerKey":"pl181","X":606,"Y":556},{"Bonus":0,"Continent":"K52","ID":53614,"Name":"C0248","PlayerID":8841266,"Points":4886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53614","ServerKey":"pl181","X":272,"Y":526},{"Bonus":0,"Continent":"K47","ID":53615,"Name":"103. Wioska barbarzyƄska","PlayerID":7494497,"Points":2601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53615","ServerKey":"pl181","X":724,"Y":464},{"Bonus":0,"Continent":"K36","ID":53616,"Name":"Wioska 012","PlayerID":7226782,"Points":3325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53616","ServerKey":"pl181","X":667,"Y":356},{"Bonus":0,"Continent":"K75","ID":53617,"Name":"Wiocha 1","PlayerID":849045675,"Points":12154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53617","ServerKey":"pl181","X":556,"Y":719},{"Bonus":0,"Continent":"K75","ID":53618,"Name":"lorus","PlayerID":699878511,"Points":6021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53618","ServerKey":"pl181","X":531,"Y":721},{"Bonus":0,"Continent":"K74","ID":53620,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53620","ServerKey":"pl181","X":432,"Y":718},{"Bonus":0,"Continent":"K35","ID":53621,"Name":"MojeSzczytToTwĂłjDno","PlayerID":828637,"Points":9114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53621","ServerKey":"pl181","X":511,"Y":381},{"Bonus":0,"Continent":"K57","ID":53622,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":10177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53622","ServerKey":"pl181","X":719,"Y":548},{"Bonus":0,"Continent":"K25","ID":53623,"Name":"Wioska zicher","PlayerID":6032352,"Points":850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53623","ServerKey":"pl181","X":538,"Y":275},{"Bonus":0,"Continent":"K24","ID":53625,"Name":"Saran10","PlayerID":848937248,"Points":895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53625","ServerKey":"pl181","X":409,"Y":291},{"Bonus":0,"Continent":"K52","ID":53626,"Name":"009","PlayerID":698663855,"Points":3708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53626","ServerKey":"pl181","X":296,"Y":598},{"Bonus":0,"Continent":"K75","ID":53627,"Name":"Kapitol_16","PlayerID":606407,"Points":5213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53627","ServerKey":"pl181","X":508,"Y":724},{"Bonus":0,"Continent":"K24","ID":53628,"Name":"[0170]","PlayerID":8630972,"Points":7596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53628","ServerKey":"pl181","X":453,"Y":281},{"Bonus":0,"Continent":"K76","ID":53629,"Name":"o015","PlayerID":699189792,"Points":4822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53629","ServerKey":"pl181","X":609,"Y":702},{"Bonus":0,"Continent":"K36","ID":53631,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53631","ServerKey":"pl181","X":660,"Y":335},{"Bonus":0,"Continent":"K33","ID":53632,"Name":"Gubernia","PlayerID":849107532,"Points":6654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53632","ServerKey":"pl181","X":364,"Y":314},{"Bonus":0,"Continent":"K66","ID":53633,"Name":"Sexxy P","PlayerID":8815749,"Points":3551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53633","ServerKey":"pl181","X":694,"Y":622},{"Bonus":0,"Continent":"K36","ID":53634,"Name":"WOLA0100","PlayerID":6956104,"Points":9779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53634","ServerKey":"pl181","X":677,"Y":363},{"Bonus":0,"Continent":"K63","ID":53635,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":6508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53635","ServerKey":"pl181","X":366,"Y":687},{"Bonus":0,"Continent":"K66","ID":53636,"Name":"Parking2","PlayerID":6528152,"Points":6090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53636","ServerKey":"pl181","X":615,"Y":667},{"Bonus":0,"Continent":"K66","ID":53637,"Name":"#Kresy","PlayerID":2665207,"Points":1558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53637","ServerKey":"pl181","X":628,"Y":687},{"Bonus":0,"Continent":"K42","ID":53639,"Name":"Avanti!","PlayerID":698625834,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53639","ServerKey":"pl181","X":277,"Y":495},{"Bonus":0,"Continent":"K33","ID":53640,"Name":"K33","PlayerID":699794765,"Points":1326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53640","ServerKey":"pl181","X":310,"Y":385},{"Bonus":0,"Continent":"K25","ID":53641,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53641","ServerKey":"pl181","X":582,"Y":295},{"Bonus":0,"Continent":"K25","ID":53642,"Name":"111 Wioska beziuleq","PlayerID":699854484,"Points":686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53642","ServerKey":"pl181","X":548,"Y":277},{"Bonus":0,"Continent":"K75","ID":53643,"Name":"BiaƂy KrĂłlik","PlayerID":849102336,"Points":4243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53643","ServerKey":"pl181","X":524,"Y":723},{"Bonus":7,"Continent":"K66","ID":53645,"Name":"komandos","PlayerID":7976264,"Points":4410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53645","ServerKey":"pl181","X":668,"Y":655},{"Bonus":0,"Continent":"K74","ID":53646,"Name":"Rumia","PlayerID":8425594,"Points":8160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53646","ServerKey":"pl181","X":409,"Y":708},{"Bonus":0,"Continent":"K36","ID":53647,"Name":"PODSTAWA","PlayerID":8622901,"Points":1838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53647","ServerKey":"pl181","X":692,"Y":389},{"Bonus":0,"Continent":"K75","ID":53648,"Name":"004","PlayerID":849097370,"Points":3943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53648","ServerKey":"pl181","X":594,"Y":704},{"Bonus":0,"Continent":"K42","ID":53649,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53649","ServerKey":"pl181","X":286,"Y":441},{"Bonus":0,"Continent":"K36","ID":53650,"Name":"E005","PlayerID":699299123,"Points":2154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53650","ServerKey":"pl181","X":636,"Y":319},{"Bonus":0,"Continent":"K47","ID":53651,"Name":"Ebe ebe","PlayerID":699785935,"Points":4277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53651","ServerKey":"pl181","X":711,"Y":413},{"Bonus":6,"Continent":"K66","ID":53652,"Name":"Osada koczownikĂłw","PlayerID":1415009,"Points":9728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53652","ServerKey":"pl181","X":670,"Y":653},{"Bonus":0,"Continent":"K47","ID":53653,"Name":"A#051","PlayerID":2065730,"Points":6647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53653","ServerKey":"pl181","X":728,"Y":470},{"Bonus":0,"Continent":"K66","ID":53654,"Name":"056.","PlayerID":699373599,"Points":2220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53654","ServerKey":"pl181","X":636,"Y":673},{"Bonus":0,"Continent":"K24","ID":53655,"Name":"[0169]","PlayerID":8630972,"Points":7896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53655","ServerKey":"pl181","X":447,"Y":281},{"Bonus":0,"Continent":"K36","ID":53656,"Name":"A-5","PlayerID":849095509,"Points":1487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53656","ServerKey":"pl181","X":672,"Y":355},{"Bonus":0,"Continent":"K44","ID":53657,"Name":"-KDK-","PlayerID":698349125,"Points":7744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53657","ServerKey":"pl181","X":497,"Y":495},{"Bonus":0,"Continent":"K57","ID":53658,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":5385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53658","ServerKey":"pl181","X":727,"Y":525},{"Bonus":0,"Continent":"K67","ID":53659,"Name":"K67 08","PlayerID":698867483,"Points":3781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53659","ServerKey":"pl181","X":702,"Y":610},{"Bonus":0,"Continent":"K74","ID":53660,"Name":"Bagno 24","PlayerID":848883684,"Points":6980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53660","ServerKey":"pl181","X":487,"Y":719},{"Bonus":8,"Continent":"K63","ID":53661,"Name":"0135","PlayerID":7085510,"Points":9045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53661","ServerKey":"pl181","X":342,"Y":666},{"Bonus":0,"Continent":"K75","ID":53662,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":4050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53662","ServerKey":"pl181","X":529,"Y":729},{"Bonus":0,"Continent":"K53","ID":53663,"Name":"Wioska barbarzyƄska","PlayerID":6180190,"Points":2936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53663","ServerKey":"pl181","X":302,"Y":595},{"Bonus":0,"Continent":"K42","ID":53665,"Name":"K42 ADAMUS 006","PlayerID":6212605,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53665","ServerKey":"pl181","X":286,"Y":430},{"Bonus":0,"Continent":"K24","ID":53666,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53666","ServerKey":"pl181","X":413,"Y":291},{"Bonus":0,"Continent":"K74","ID":53667,"Name":"Kapitol_09","PlayerID":606407,"Points":6032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53667","ServerKey":"pl181","X":499,"Y":725},{"Bonus":0,"Continent":"K42","ID":53668,"Name":"Wioska","PlayerID":699795698,"Points":5282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53668","ServerKey":"pl181","X":273,"Y":483},{"Bonus":0,"Continent":"K36","ID":53669,"Name":"E004","PlayerID":699299123,"Points":2080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53669","ServerKey":"pl181","X":632,"Y":316},{"Bonus":0,"Continent":"K52","ID":53670,"Name":"New WorldA","PlayerID":849084005,"Points":1750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53670","ServerKey":"pl181","X":273,"Y":539},{"Bonus":0,"Continent":"K42","ID":53671,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53671","ServerKey":"pl181","X":283,"Y":440},{"Bonus":6,"Continent":"K42","ID":53672,"Name":"008","PlayerID":6131106,"Points":5994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53672","ServerKey":"pl181","X":280,"Y":432},{"Bonus":0,"Continent":"K47","ID":53673,"Name":"Wioska","PlayerID":849095599,"Points":3209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53673","ServerKey":"pl181","X":718,"Y":457},{"Bonus":0,"Continent":"K47","ID":53674,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":1672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53674","ServerKey":"pl181","X":731,"Y":495},{"Bonus":0,"Continent":"K42","ID":53675,"Name":"Avanti!","PlayerID":698625834,"Points":5471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53675","ServerKey":"pl181","X":272,"Y":490},{"Bonus":0,"Continent":"K42","ID":53676,"Name":"Avanti!","PlayerID":698625834,"Points":6022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53676","ServerKey":"pl181","X":276,"Y":492},{"Bonus":1,"Continent":"K25","ID":53677,"Name":"034 Osada koczownikĂłw","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53677","ServerKey":"pl181","X":533,"Y":276},{"Bonus":0,"Continent":"K24","ID":53678,"Name":"????","PlayerID":698489071,"Points":2727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53678","ServerKey":"pl181","X":473,"Y":281},{"Bonus":0,"Continent":"K36","ID":53679,"Name":"Wioska 010","PlayerID":7226782,"Points":4089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53679","ServerKey":"pl181","X":671,"Y":346},{"Bonus":0,"Continent":"K36","ID":53681,"Name":"=|46|=","PlayerID":9101574,"Points":1473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53681","ServerKey":"pl181","X":686,"Y":372},{"Bonus":0,"Continent":"K75","ID":53682,"Name":"057 - Budowanko!","PlayerID":7540891,"Points":2838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53682","ServerKey":"pl181","X":527,"Y":717},{"Bonus":0,"Continent":"K25","ID":53683,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53683","ServerKey":"pl181","X":510,"Y":275},{"Bonus":0,"Continent":"K36","ID":53684,"Name":"0107","PlayerID":698416970,"Points":2479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53684","ServerKey":"pl181","X":698,"Y":391},{"Bonus":0,"Continent":"K47","ID":53685,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53685","ServerKey":"pl181","X":724,"Y":486},{"Bonus":0,"Continent":"K36","ID":53686,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53686","ServerKey":"pl181","X":651,"Y":335},{"Bonus":0,"Continent":"K36","ID":53687,"Name":"- 2 -","PlayerID":8622901,"Points":1266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53687","ServerKey":"pl181","X":692,"Y":391},{"Bonus":0,"Continent":"K47","ID":53688,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":5662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53688","ServerKey":"pl181","X":718,"Y":453},{"Bonus":0,"Continent":"K66","ID":53689,"Name":"041","PlayerID":2323859,"Points":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53689","ServerKey":"pl181","X":669,"Y":645},{"Bonus":0,"Continent":"K33","ID":53690,"Name":"MƚCIWY KRIS 03","PlayerID":698757439,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53690","ServerKey":"pl181","X":343,"Y":333},{"Bonus":0,"Continent":"K42","ID":53691,"Name":"Avanti!","PlayerID":698625834,"Points":6148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53691","ServerKey":"pl181","X":275,"Y":478},{"Bonus":0,"Continent":"K63","ID":53692,"Name":"Wioska Pracz 1","PlayerID":8916982,"Points":7855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53692","ServerKey":"pl181","X":308,"Y":625},{"Bonus":0,"Continent":"K66","ID":53693,"Name":"057.","PlayerID":699373599,"Points":2467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53693","ServerKey":"pl181","X":635,"Y":674},{"Bonus":0,"Continent":"K42","ID":53694,"Name":"KUKA II","PlayerID":6127190,"Points":3115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53694","ServerKey":"pl181","X":281,"Y":437},{"Bonus":0,"Continent":"K66","ID":53695,"Name":"komandos","PlayerID":7976264,"Points":3684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53695","ServerKey":"pl181","X":674,"Y":651},{"Bonus":0,"Continent":"K42","ID":53696,"Name":"Wioska PysioSsie","PlayerID":8947705,"Points":286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53696","ServerKey":"pl181","X":273,"Y":494},{"Bonus":0,"Continent":"K63","ID":53697,"Name":"Taran","PlayerID":6180190,"Points":8025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53697","ServerKey":"pl181","X":315,"Y":624},{"Bonus":0,"Continent":"K47","ID":53698,"Name":"[830] Odludzie","PlayerID":848985692,"Points":5915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53698","ServerKey":"pl181","X":711,"Y":430},{"Bonus":0,"Continent":"K47","ID":53699,"Name":"Etitek 4","PlayerID":848999448,"Points":2390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53699","ServerKey":"pl181","X":725,"Y":498},{"Bonus":0,"Continent":"K36","ID":53700,"Name":"Wioska kajko1962 -","PlayerID":7357503,"Points":10908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53700","ServerKey":"pl181","X":664,"Y":348},{"Bonus":1,"Continent":"K42","ID":53701,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53701","ServerKey":"pl181","X":292,"Y":426},{"Bonus":0,"Continent":"K47","ID":53702,"Name":"028 Dewford Town","PlayerID":699441366,"Points":9389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53702","ServerKey":"pl181","X":725,"Y":486},{"Bonus":0,"Continent":"K52","ID":53703,"Name":"006","PlayerID":698663855,"Points":5212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53703","ServerKey":"pl181","X":294,"Y":586},{"Bonus":0,"Continent":"K66","ID":53704,"Name":"#02!","PlayerID":849101884,"Points":9759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53704","ServerKey":"pl181","X":640,"Y":681},{"Bonus":0,"Continent":"K36","ID":53705,"Name":"wioska XIX","PlayerID":849101889,"Points":3274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53705","ServerKey":"pl181","X":671,"Y":361},{"Bonus":0,"Continent":"K42","ID":53706,"Name":"K42 ADAMUS 025","PlayerID":6212605,"Points":242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53706","ServerKey":"pl181","X":281,"Y":427},{"Bonus":0,"Continent":"K46","ID":53707,"Name":"029.","PlayerID":8900955,"Points":10987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53707","ServerKey":"pl181","X":609,"Y":481},{"Bonus":0,"Continent":"K25","ID":53708,"Name":"D022","PlayerID":699299123,"Points":3676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53708","ServerKey":"pl181","X":560,"Y":288},{"Bonus":0,"Continent":"K24","ID":53709,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53709","ServerKey":"pl181","X":499,"Y":270},{"Bonus":0,"Continent":"K66","ID":53710,"Name":"Wioska arkowa","PlayerID":563544,"Points":1497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53710","ServerKey":"pl181","X":653,"Y":671},{"Bonus":0,"Continent":"K63","ID":53711,"Name":"132","PlayerID":849099876,"Points":8331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53711","ServerKey":"pl181","X":383,"Y":691},{"Bonus":0,"Continent":"K57","ID":53712,"Name":"023 - Budowanko!","PlayerID":7540891,"Points":4419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53712","ServerKey":"pl181","X":710,"Y":566},{"Bonus":0,"Continent":"K57","ID":53713,"Name":"10.DASH","PlayerID":698905177,"Points":1407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53713","ServerKey":"pl181","X":712,"Y":561},{"Bonus":0,"Continent":"K25","ID":53714,"Name":"Wioska Wieslaw 2","PlayerID":699794421,"Points":3834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53714","ServerKey":"pl181","X":504,"Y":275},{"Bonus":0,"Continent":"K66","ID":53715,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":7393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53715","ServerKey":"pl181","X":645,"Y":667},{"Bonus":0,"Continent":"K65","ID":53717,"Name":"Wioska bezludna","PlayerID":699828685,"Points":2081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53717","ServerKey":"pl181","X":598,"Y":694},{"Bonus":0,"Continent":"K75","ID":53718,"Name":"Kapitol_18","PlayerID":606407,"Points":5212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53718","ServerKey":"pl181","X":500,"Y":729},{"Bonus":0,"Continent":"K25","ID":53719,"Name":"North 031","PlayerID":849064752,"Points":6737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53719","ServerKey":"pl181","X":516,"Y":270},{"Bonus":0,"Continent":"K66","ID":53720,"Name":"024.","PlayerID":6520732,"Points":2508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53720","ServerKey":"pl181","X":698,"Y":601},{"Bonus":0,"Continent":"K57","ID":53721,"Name":"068","PlayerID":699413040,"Points":1946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53721","ServerKey":"pl181","X":721,"Y":519},{"Bonus":0,"Continent":"K33","ID":53722,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53722","ServerKey":"pl181","X":388,"Y":309},{"Bonus":0,"Continent":"K24","ID":53723,"Name":"Wioska barbarzyƄska","PlayerID":699863708,"Points":3361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53723","ServerKey":"pl181","X":464,"Y":282},{"Bonus":0,"Continent":"K63","ID":53724,"Name":"023","PlayerID":699356968,"Points":2255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53724","ServerKey":"pl181","X":302,"Y":613},{"Bonus":0,"Continent":"K66","ID":53725,"Name":"komandos","PlayerID":7976264,"Points":3456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53725","ServerKey":"pl181","X":674,"Y":650},{"Bonus":0,"Continent":"K66","ID":53726,"Name":"#Kresy","PlayerID":2665207,"Points":8472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53726","ServerKey":"pl181","X":629,"Y":679},{"Bonus":0,"Continent":"K52","ID":53727,"Name":"004","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53727","ServerKey":"pl181","X":293,"Y":597},{"Bonus":0,"Continent":"K63","ID":53728,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":7533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53728","ServerKey":"pl181","X":359,"Y":680},{"Bonus":0,"Continent":"K24","ID":53729,"Name":"Wioska barbarzyƄska","PlayerID":699196829,"Points":1962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53729","ServerKey":"pl181","X":469,"Y":277},{"Bonus":0,"Continent":"K36","ID":53730,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53730","ServerKey":"pl181","X":647,"Y":329},{"Bonus":0,"Continent":"K74","ID":53731,"Name":"Wioska MalinowaZaba","PlayerID":699656989,"Points":5284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53731","ServerKey":"pl181","X":497,"Y":723},{"Bonus":0,"Continent":"K36","ID":53732,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53732","ServerKey":"pl181","X":619,"Y":305},{"Bonus":0,"Continent":"K57","ID":53733,"Name":"Wioska Mr.SoLo","PlayerID":8541236,"Points":9592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53733","ServerKey":"pl181","X":721,"Y":539},{"Bonus":8,"Continent":"K57","ID":53734,"Name":"A#017","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53734","ServerKey":"pl181","X":719,"Y":565},{"Bonus":0,"Continent":"K57","ID":53735,"Name":"060","PlayerID":699413040,"Points":3599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53735","ServerKey":"pl181","X":724,"Y":516},{"Bonus":0,"Continent":"K33","ID":53736,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53736","ServerKey":"pl181","X":359,"Y":317},{"Bonus":0,"Continent":"K42","ID":53737,"Name":"SkalpeR1337","PlayerID":849108007,"Points":6155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53737","ServerKey":"pl181","X":288,"Y":492},{"Bonus":0,"Continent":"K33","ID":53738,"Name":"BOSS W","PlayerID":849101604,"Points":1337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53738","ServerKey":"pl181","X":335,"Y":339},{"Bonus":0,"Continent":"K63","ID":53739,"Name":"Wioska 0018","PlayerID":9186126,"Points":7127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53739","ServerKey":"pl181","X":342,"Y":655},{"Bonus":0,"Continent":"K64","ID":53740,"Name":"KIELBA 108","PlayerID":699342219,"Points":7896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53740","ServerKey":"pl181","X":465,"Y":601},{"Bonus":0,"Continent":"K42","ID":53741,"Name":"Wioska barbarzyƄska","PlayerID":6186491,"Points":4919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53741","ServerKey":"pl181","X":299,"Y":406},{"Bonus":0,"Continent":"K76","ID":53742,"Name":"Wioska ASYSTORIA","PlayerID":699828685,"Points":2816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53742","ServerKey":"pl181","X":601,"Y":702},{"Bonus":0,"Continent":"K42","ID":53743,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":5649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53743","ServerKey":"pl181","X":275,"Y":465},{"Bonus":0,"Continent":"K42","ID":53744,"Name":"KUKA I","PlayerID":6127190,"Points":5325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53744","ServerKey":"pl181","X":285,"Y":435},{"Bonus":0,"Continent":"K36","ID":53745,"Name":"Wioska barbarzyƄska","PlayerID":849057764,"Points":1674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53745","ServerKey":"pl181","X":697,"Y":383},{"Bonus":0,"Continent":"K75","ID":53746,"Name":"MERHET","PlayerID":698215322,"Points":5431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53746","ServerKey":"pl181","X":582,"Y":707},{"Bonus":0,"Continent":"K47","ID":53747,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":4497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53747","ServerKey":"pl181","X":711,"Y":428},{"Bonus":0,"Continent":"K57","ID":53748,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53748","ServerKey":"pl181","X":730,"Y":501},{"Bonus":0,"Continent":"K63","ID":53749,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":1941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53749","ServerKey":"pl181","X":375,"Y":691},{"Bonus":0,"Continent":"K24","ID":53750,"Name":"#0247 colt9","PlayerID":1238300,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53750","ServerKey":"pl181","X":439,"Y":281},{"Bonus":0,"Continent":"K66","ID":53751,"Name":"Sony 911","PlayerID":1415009,"Points":3788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53751","ServerKey":"pl181","X":673,"Y":649},{"Bonus":0,"Continent":"K63","ID":53752,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53752","ServerKey":"pl181","X":378,"Y":688},{"Bonus":0,"Continent":"K66","ID":53753,"Name":"#124#","PlayerID":692803,"Points":3875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53753","ServerKey":"pl181","X":655,"Y":667},{"Bonus":2,"Continent":"K24","ID":53754,"Name":"Winterfell.012","PlayerID":848918380,"Points":10008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53754","ServerKey":"pl181","X":449,"Y":284},{"Bonus":0,"Continent":"K37","ID":53755,"Name":"Wioska arobest","PlayerID":849096041,"Points":1110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53755","ServerKey":"pl181","X":700,"Y":399},{"Bonus":0,"Continent":"K36","ID":53756,"Name":"XDX","PlayerID":699098531,"Points":4642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53756","ServerKey":"pl181","X":611,"Y":302},{"Bonus":4,"Continent":"K63","ID":53757,"Name":"Wioska 0003","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53757","ServerKey":"pl181","X":342,"Y":656},{"Bonus":0,"Continent":"K24","ID":53758,"Name":"#0260 mrufki","PlayerID":1238300,"Points":1913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53758","ServerKey":"pl181","X":441,"Y":281},{"Bonus":0,"Continent":"K42","ID":53759,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53759","ServerKey":"pl181","X":292,"Y":414},{"Bonus":0,"Continent":"K57","ID":53760,"Name":"RzeĆșnia 3","PlayerID":849101029,"Points":5623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53760","ServerKey":"pl181","X":710,"Y":590},{"Bonus":0,"Continent":"K75","ID":53761,"Name":"Village","PlayerID":849094067,"Points":2419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53761","ServerKey":"pl181","X":571,"Y":718},{"Bonus":0,"Continent":"K24","ID":53762,"Name":"Wioska Olczi","PlayerID":849108053,"Points":1207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53762","ServerKey":"pl181","X":484,"Y":280},{"Bonus":0,"Continent":"K52","ID":53763,"Name":"New WorldA","PlayerID":849084005,"Points":4495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53763","ServerKey":"pl181","X":283,"Y":536},{"Bonus":0,"Continent":"K75","ID":53764,"Name":"Wioska barbarzyƄska","PlayerID":6299408,"Points":5014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53764","ServerKey":"pl181","X":563,"Y":716},{"Bonus":0,"Continent":"K24","ID":53765,"Name":"006","PlayerID":9283775,"Points":3618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53765","ServerKey":"pl181","X":405,"Y":296},{"Bonus":0,"Continent":"K36","ID":53766,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53766","ServerKey":"pl181","X":641,"Y":331},{"Bonus":0,"Continent":"K25","ID":53767,"Name":"Wioska barbarzyƄska","PlayerID":849044705,"Points":1685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53767","ServerKey":"pl181","X":538,"Y":273},{"Bonus":0,"Continent":"K36","ID":53768,"Name":"Wioska 001","PlayerID":2976468,"Points":3875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53768","ServerKey":"pl181","X":674,"Y":358},{"Bonus":0,"Continent":"K74","ID":53769,"Name":"191","PlayerID":849099876,"Points":9204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53769","ServerKey":"pl181","X":402,"Y":703},{"Bonus":0,"Continent":"K25","ID":53770,"Name":"#030","PlayerID":849064614,"Points":2363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53770","ServerKey":"pl181","X":543,"Y":275},{"Bonus":0,"Continent":"K42","ID":53771,"Name":"005","PlayerID":699844314,"Points":1761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53771","ServerKey":"pl181","X":282,"Y":459},{"Bonus":0,"Continent":"K52","ID":53772,"Name":"New WorldA","PlayerID":849084005,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53772","ServerKey":"pl181","X":281,"Y":536},{"Bonus":0,"Continent":"K24","ID":53773,"Name":"[0179]","PlayerID":8630972,"Points":7486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53773","ServerKey":"pl181","X":454,"Y":282},{"Bonus":0,"Continent":"K75","ID":53774,"Name":"181 Okrutny Pogromca Szlachty","PlayerID":698667255,"Points":733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53774","ServerKey":"pl181","X":534,"Y":725},{"Bonus":0,"Continent":"K42","ID":53775,"Name":"Avanti!","PlayerID":698625834,"Points":4748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53775","ServerKey":"pl181","X":274,"Y":494},{"Bonus":0,"Continent":"K74","ID":53776,"Name":"R 046","PlayerID":699195358,"Points":5456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53776","ServerKey":"pl181","X":493,"Y":728},{"Bonus":0,"Continent":"K25","ID":53777,"Name":".achim.","PlayerID":6936607,"Points":2335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53777","ServerKey":"pl181","X":579,"Y":284},{"Bonus":0,"Continent":"K33","ID":53778,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53778","ServerKey":"pl181","X":347,"Y":327},{"Bonus":0,"Continent":"K75","ID":53779,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":7031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53779","ServerKey":"pl181","X":540,"Y":727},{"Bonus":0,"Continent":"K47","ID":53780,"Name":"PƁD2","PlayerID":699347951,"Points":1438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53780","ServerKey":"pl181","X":722,"Y":456},{"Bonus":0,"Continent":"K47","ID":53782,"Name":"033 Fallarbor Town","PlayerID":699441366,"Points":4372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53782","ServerKey":"pl181","X":722,"Y":480},{"Bonus":0,"Continent":"K64","ID":53783,"Name":"170","PlayerID":849099876,"Points":5513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53783","ServerKey":"pl181","X":416,"Y":686},{"Bonus":0,"Continent":"K52","ID":53784,"Name":"0000047Z","PlayerID":849089881,"Points":1329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53784","ServerKey":"pl181","X":278,"Y":557},{"Bonus":3,"Continent":"K36","ID":53785,"Name":"0102","PlayerID":698416970,"Points":7659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53785","ServerKey":"pl181","X":672,"Y":351},{"Bonus":0,"Continent":"K47","ID":53786,"Name":"ZPP Haran","PlayerID":8096537,"Points":6117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53786","ServerKey":"pl181","X":729,"Y":458},{"Bonus":0,"Continent":"K33","ID":53787,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53787","ServerKey":"pl181","X":386,"Y":305},{"Bonus":0,"Continent":"K47","ID":53788,"Name":".001. Wyspa","PlayerID":849095599,"Points":6128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53788","ServerKey":"pl181","X":723,"Y":449},{"Bonus":0,"Continent":"K47","ID":53789,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53789","ServerKey":"pl181","X":700,"Y":404},{"Bonus":0,"Continent":"K63","ID":53790,"Name":"Wioska Inergio","PlayerID":849098766,"Points":2851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53790","ServerKey":"pl181","X":358,"Y":678},{"Bonus":0,"Continent":"K66","ID":53791,"Name":"010 Bradina","PlayerID":849102108,"Points":2565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53791","ServerKey":"pl181","X":671,"Y":640},{"Bonus":0,"Continent":"K52","ID":53792,"Name":"C0352","PlayerID":8841266,"Points":8498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53792","ServerKey":"pl181","X":279,"Y":534},{"Bonus":0,"Continent":"K52","ID":53793,"Name":"C0312","PlayerID":8841266,"Points":2607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53793","ServerKey":"pl181","X":275,"Y":527},{"Bonus":0,"Continent":"K36","ID":53794,"Name":"XDX","PlayerID":699098531,"Points":6298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53794","ServerKey":"pl181","X":610,"Y":303},{"Bonus":0,"Continent":"K33","ID":53796,"Name":"Wioska013","PlayerID":699711926,"Points":7497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53796","ServerKey":"pl181","X":344,"Y":343},{"Bonus":0,"Continent":"K36","ID":53797,"Name":"TOLCIA 1","PlayerID":699868739,"Points":9296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53797","ServerKey":"pl181","X":641,"Y":318},{"Bonus":0,"Continent":"K33","ID":53798,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":6563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53798","ServerKey":"pl181","X":367,"Y":314},{"Bonus":0,"Continent":"K66","ID":53799,"Name":"Nowa 66","PlayerID":698702991,"Points":3060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53799","ServerKey":"pl181","X":691,"Y":629},{"Bonus":0,"Continent":"K57","ID":53800,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53800","ServerKey":"pl181","X":720,"Y":533},{"Bonus":0,"Continent":"K33","ID":53801,"Name":"Wioska Zephyr II","PlayerID":1347385,"Points":4323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53801","ServerKey":"pl181","X":351,"Y":329},{"Bonus":0,"Continent":"K74","ID":53802,"Name":"025Kacor","PlayerID":698620694,"Points":9716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53802","ServerKey":"pl181","X":470,"Y":722},{"Bonus":0,"Continent":"K76","ID":53803,"Name":"wy...","PlayerID":699828685,"Points":6715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53803","ServerKey":"pl181","X":602,"Y":702},{"Bonus":0,"Continent":"K66","ID":53804,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":2450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53804","ServerKey":"pl181","X":623,"Y":687},{"Bonus":0,"Continent":"K33","ID":53805,"Name":"Motorola 05","PlayerID":698806018,"Points":4685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53805","ServerKey":"pl181","X":365,"Y":319},{"Bonus":0,"Continent":"K24","ID":53806,"Name":"A01","PlayerID":849038597,"Points":9026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53806","ServerKey":"pl181","X":427,"Y":282},{"Bonus":0,"Continent":"K25","ID":53807,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53807","ServerKey":"pl181","X":597,"Y":295},{"Bonus":0,"Continent":"K52","ID":53808,"Name":"Wioska pinek321","PlayerID":2717161,"Points":10509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53808","ServerKey":"pl181","X":288,"Y":586},{"Bonus":0,"Continent":"K53","ID":53809,"Name":"Puck","PlayerID":1276665,"Points":3769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53809","ServerKey":"pl181","X":300,"Y":597},{"Bonus":0,"Continent":"K66","ID":53810,"Name":"Nowe IMPERIUM 12","PlayerID":698353083,"Points":5218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53810","ServerKey":"pl181","X":622,"Y":692},{"Bonus":0,"Continent":"K66","ID":53811,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":5454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53811","ServerKey":"pl181","X":653,"Y":661},{"Bonus":0,"Continent":"K75","ID":53812,"Name":"Wioska joannaniel","PlayerID":3560281,"Points":7024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53812","ServerKey":"pl181","X":543,"Y":725},{"Bonus":0,"Continent":"K75","ID":53813,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":5004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53813","ServerKey":"pl181","X":557,"Y":713},{"Bonus":0,"Continent":"K25","ID":53814,"Name":"bagienko_04","PlayerID":849093353,"Points":4811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53814","ServerKey":"pl181","X":564,"Y":280},{"Bonus":0,"Continent":"K42","ID":53815,"Name":"025","PlayerID":6131106,"Points":1765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53815","ServerKey":"pl181","X":283,"Y":461},{"Bonus":0,"Continent":"K25","ID":53816,"Name":".achim.","PlayerID":6936607,"Points":3344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53816","ServerKey":"pl181","X":564,"Y":283},{"Bonus":0,"Continent":"K75","ID":53817,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53817","ServerKey":"pl181","X":548,"Y":723},{"Bonus":0,"Continent":"K75","ID":53818,"Name":"Wioska fan zmijki","PlayerID":769293,"Points":7940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53818","ServerKey":"pl181","X":519,"Y":728},{"Bonus":0,"Continent":"K25","ID":53819,"Name":"P001","PlayerID":699208929,"Points":7578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53819","ServerKey":"pl181","X":513,"Y":277},{"Bonus":0,"Continent":"K47","ID":53820,"Name":"C.056","PlayerID":9188016,"Points":3790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53820","ServerKey":"pl181","X":726,"Y":480},{"Bonus":0,"Continent":"K25","ID":53821,"Name":"080 Wioska barbarzyƄska","PlayerID":699854484,"Points":8918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53821","ServerKey":"pl181","X":540,"Y":279},{"Bonus":0,"Continent":"K57","ID":53823,"Name":"029 Legio IX Ulpia Victrix","PlayerID":699878150,"Points":1229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53823","ServerKey":"pl181","X":709,"Y":569},{"Bonus":0,"Continent":"K74","ID":53824,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53824","ServerKey":"pl181","X":431,"Y":716},{"Bonus":0,"Continent":"K66","ID":53825,"Name":"Wioska streak2k12","PlayerID":699356102,"Points":2159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53825","ServerKey":"pl181","X":629,"Y":689},{"Bonus":0,"Continent":"K74","ID":53826,"Name":"New World","PlayerID":698152377,"Points":5255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53826","ServerKey":"pl181","X":439,"Y":719},{"Bonus":0,"Continent":"K36","ID":53827,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":2937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53827","ServerKey":"pl181","X":689,"Y":367},{"Bonus":0,"Continent":"K24","ID":53828,"Name":"#0257 Yomikuri","PlayerID":1238300,"Points":7626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53828","ServerKey":"pl181","X":435,"Y":281},{"Bonus":0,"Continent":"K24","ID":53829,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53829","ServerKey":"pl181","X":405,"Y":291},{"Bonus":0,"Continent":"K25","ID":53830,"Name":".achim.","PlayerID":6936607,"Points":4140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53830","ServerKey":"pl181","X":571,"Y":290},{"Bonus":0,"Continent":"K66","ID":53831,"Name":"023.","PlayerID":6520732,"Points":2885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53831","ServerKey":"pl181","X":697,"Y":602},{"Bonus":0,"Continent":"K66","ID":53832,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53832","ServerKey":"pl181","X":662,"Y":649},{"Bonus":0,"Continent":"K24","ID":53833,"Name":".achim.","PlayerID":6936607,"Points":5657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53833","ServerKey":"pl181","X":485,"Y":280},{"Bonus":0,"Continent":"K25","ID":53834,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53834","ServerKey":"pl181","X":582,"Y":296},{"Bonus":0,"Continent":"K75","ID":53835,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":6616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53835","ServerKey":"pl181","X":539,"Y":724},{"Bonus":0,"Continent":"K74","ID":53836,"Name":"KWB3","PlayerID":9003698,"Points":6223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53836","ServerKey":"pl181","X":462,"Y":728},{"Bonus":0,"Continent":"K52","ID":53837,"Name":"Wioska Karl 132","PlayerID":1861962,"Points":5054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53837","ServerKey":"pl181","X":283,"Y":538},{"Bonus":0,"Continent":"K66","ID":53838,"Name":"Nowe IMPERIUM 5","PlayerID":698353083,"Points":6128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53838","ServerKey":"pl181","X":617,"Y":697},{"Bonus":0,"Continent":"K63","ID":53839,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":1577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53839","ServerKey":"pl181","X":328,"Y":653},{"Bonus":0,"Continent":"K75","ID":53840,"Name":"iepure alb","PlayerID":849102336,"Points":2824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53840","ServerKey":"pl181","X":526,"Y":723},{"Bonus":0,"Continent":"K75","ID":53841,"Name":"Wioska chudyn","PlayerID":8773967,"Points":11187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53841","ServerKey":"pl181","X":595,"Y":702},{"Bonus":0,"Continent":"K47","ID":53842,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53842","ServerKey":"pl181","X":727,"Y":489},{"Bonus":0,"Continent":"K66","ID":53844,"Name":"02181","PlayerID":699872616,"Points":7769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53844","ServerKey":"pl181","X":632,"Y":659},{"Bonus":0,"Continent":"K33","ID":53845,"Name":"Wioska barbarzyƄska 16","PlayerID":698757439,"Points":6348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53845","ServerKey":"pl181","X":337,"Y":343},{"Bonus":0,"Continent":"K66","ID":53846,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53846","ServerKey":"pl181","X":682,"Y":638},{"Bonus":0,"Continent":"K24","ID":53847,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53847","ServerKey":"pl181","X":499,"Y":274},{"Bonus":0,"Continent":"K33","ID":53848,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53848","ServerKey":"pl181","X":383,"Y":306},{"Bonus":0,"Continent":"K66","ID":53849,"Name":"~~081~~","PlayerID":7829201,"Points":4637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53849","ServerKey":"pl181","X":683,"Y":635},{"Bonus":3,"Continent":"K57","ID":53850,"Name":"Tomekrol 2","PlayerID":849096334,"Points":6769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53850","ServerKey":"pl181","X":703,"Y":597},{"Bonus":0,"Continent":"K43","ID":53851,"Name":"A0258","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53851","ServerKey":"pl181","X":385,"Y":475},{"Bonus":0,"Continent":"K66","ID":53852,"Name":"060.","PlayerID":699373599,"Points":2184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53852","ServerKey":"pl181","X":641,"Y":678},{"Bonus":0,"Continent":"K33","ID":53853,"Name":"K33","PlayerID":699794765,"Points":3392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53853","ServerKey":"pl181","X":310,"Y":390},{"Bonus":0,"Continent":"K66","ID":53854,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":6867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53854","ServerKey":"pl181","X":681,"Y":626},{"Bonus":0,"Continent":"K34","ID":53855,"Name":"009","PlayerID":9283775,"Points":3277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53855","ServerKey":"pl181","X":400,"Y":303},{"Bonus":0,"Continent":"K47","ID":53857,"Name":"[815] Odludzie","PlayerID":848985692,"Points":7075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53857","ServerKey":"pl181","X":713,"Y":441},{"Bonus":0,"Continent":"K63","ID":53858,"Name":"Taran","PlayerID":6180190,"Points":7837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53858","ServerKey":"pl181","X":315,"Y":621},{"Bonus":0,"Continent":"K33","ID":53859,"Name":"Wioska barbarzyƄska 009","PlayerID":849068662,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53859","ServerKey":"pl181","X":376,"Y":313},{"Bonus":0,"Continent":"K36","ID":53860,"Name":"Wioska barbarzyƄska","PlayerID":699794720,"Points":1586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53860","ServerKey":"pl181","X":683,"Y":372},{"Bonus":0,"Continent":"K25","ID":53861,"Name":".achim.","PlayerID":6936607,"Points":4261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53861","ServerKey":"pl181","X":562,"Y":289},{"Bonus":0,"Continent":"K57","ID":53862,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53862","ServerKey":"pl181","X":722,"Y":560},{"Bonus":0,"Continent":"K25","ID":53863,"Name":"--042--","PlayerID":542253,"Points":4853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53863","ServerKey":"pl181","X":574,"Y":289},{"Bonus":0,"Continent":"K75","ID":53864,"Name":"#0067","PlayerID":1536231,"Points":4443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53864","ServerKey":"pl181","X":573,"Y":711},{"Bonus":0,"Continent":"K36","ID":53865,"Name":"wioska XX","PlayerID":9314079,"Points":1702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53865","ServerKey":"pl181","X":674,"Y":352},{"Bonus":0,"Continent":"K47","ID":53866,"Name":"075. Wioska barbarzyƄska","PlayerID":7494497,"Points":5506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53866","ServerKey":"pl181","X":722,"Y":460},{"Bonus":0,"Continent":"K33","ID":53867,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53867","ServerKey":"pl181","X":326,"Y":364},{"Bonus":0,"Continent":"K67","ID":53868,"Name":"0151","PlayerID":699429153,"Points":8717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53868","ServerKey":"pl181","X":707,"Y":601},{"Bonus":0,"Continent":"K25","ID":53869,"Name":"North 027","PlayerID":849064752,"Points":8083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53869","ServerKey":"pl181","X":511,"Y":270},{"Bonus":0,"Continent":"K47","ID":53870,"Name":"080. Wioska barbarzyƄska","PlayerID":7494497,"Points":4954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53870","ServerKey":"pl181","X":729,"Y":471},{"Bonus":0,"Continent":"K25","ID":53871,"Name":"PPF-11","PlayerID":1424656,"Points":2582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53871","ServerKey":"pl181","X":518,"Y":270},{"Bonus":0,"Continent":"K42","ID":53872,"Name":"Wioska barbarzyƄska","PlayerID":699812351,"Points":1516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53872","ServerKey":"pl181","X":282,"Y":468},{"Bonus":0,"Continent":"K63","ID":53873,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53873","ServerKey":"pl181","X":364,"Y":680},{"Bonus":0,"Continent":"K47","ID":53874,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":4341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53874","ServerKey":"pl181","X":717,"Y":453},{"Bonus":0,"Continent":"K47","ID":53875,"Name":"[833] Odludzie","PlayerID":848985692,"Points":5645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53875","ServerKey":"pl181","X":723,"Y":440},{"Bonus":0,"Continent":"K42","ID":53876,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53876","ServerKey":"pl181","X":278,"Y":452},{"Bonus":0,"Continent":"K35","ID":53877,"Name":"Wioska monitor123aa","PlayerID":699208929,"Points":5308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53877","ServerKey":"pl181","X":517,"Y":302},{"Bonus":0,"Continent":"K66","ID":53878,"Name":"Azyl 9","PlayerID":849096354,"Points":1830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53878","ServerKey":"pl181","X":630,"Y":687},{"Bonus":0,"Continent":"K36","ID":53879,"Name":"Oww Konfederacja","PlayerID":848915730,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53879","ServerKey":"pl181","X":607,"Y":391},{"Bonus":0,"Continent":"K32","ID":53880,"Name":"mordor","PlayerID":698677650,"Points":3808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53880","ServerKey":"pl181","X":299,"Y":394},{"Bonus":0,"Continent":"K56","ID":53881,"Name":"027","PlayerID":6160655,"Points":7742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53881","ServerKey":"pl181","X":636,"Y":585},{"Bonus":0,"Continent":"K24","ID":53882,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53882","ServerKey":"pl181","X":430,"Y":285},{"Bonus":0,"Continent":"K36","ID":53883,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53883","ServerKey":"pl181","X":653,"Y":333},{"Bonus":0,"Continent":"K26","ID":53884,"Name":"XDX","PlayerID":699098531,"Points":3743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53884","ServerKey":"pl181","X":608,"Y":298},{"Bonus":0,"Continent":"K47","ID":53885,"Name":"Wioska REXMUNDI","PlayerID":6249486,"Points":3881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53885","ServerKey":"pl181","X":725,"Y":459},{"Bonus":0,"Continent":"K66","ID":53886,"Name":"komandos","PlayerID":699277039,"Points":314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53886","ServerKey":"pl181","X":675,"Y":651},{"Bonus":0,"Continent":"K52","ID":53887,"Name":"Wioska barbarzyƄska","PlayerID":849101771,"Points":1326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53887","ServerKey":"pl181","X":292,"Y":576},{"Bonus":0,"Continent":"K57","ID":53888,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":10999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53888","ServerKey":"pl181","X":718,"Y":551},{"Bonus":8,"Continent":"K25","ID":53889,"Name":"Gors Velen","PlayerID":849054951,"Points":10051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53889","ServerKey":"pl181","X":565,"Y":289},{"Bonus":0,"Continent":"K25","ID":53891,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":6537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53891","ServerKey":"pl181","X":589,"Y":292},{"Bonus":0,"Continent":"K75","ID":53892,"Name":"#K75 0035","PlayerID":699728159,"Points":4972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53892","ServerKey":"pl181","X":525,"Y":719},{"Bonus":0,"Continent":"K66","ID":53893,"Name":"Wioska Lost im Wald","PlayerID":848914120,"Points":1175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53893","ServerKey":"pl181","X":613,"Y":699},{"Bonus":0,"Continent":"K75","ID":53894,"Name":"Wiocha 3","PlayerID":849045675,"Points":11382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53894","ServerKey":"pl181","X":558,"Y":721},{"Bonus":0,"Continent":"K63","ID":53895,"Name":"#004","PlayerID":698908184,"Points":7952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53895","ServerKey":"pl181","X":332,"Y":647},{"Bonus":0,"Continent":"K75","ID":53897,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":6619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53897","ServerKey":"pl181","X":533,"Y":729},{"Bonus":0,"Continent":"K75","ID":53899,"Name":"041.xxx","PlayerID":8612358,"Points":1189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53899","ServerKey":"pl181","X":513,"Y":727},{"Bonus":0,"Continent":"K66","ID":53900,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":8275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53900","ServerKey":"pl181","X":625,"Y":690},{"Bonus":0,"Continent":"K63","ID":53902,"Name":"$006$ Papuga","PlayerID":699550876,"Points":7281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53902","ServerKey":"pl181","X":303,"Y":619},{"Bonus":0,"Continent":"K33","ID":53903,"Name":"mysza","PlayerID":849089601,"Points":4105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53903","ServerKey":"pl181","X":315,"Y":374},{"Bonus":0,"Continent":"K54","ID":53904,"Name":"0598","PlayerID":698659980,"Points":8331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53904","ServerKey":"pl181","X":477,"Y":545},{"Bonus":0,"Continent":"K25","ID":53905,"Name":"#007","PlayerID":849064614,"Points":7343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53905","ServerKey":"pl181","X":547,"Y":275},{"Bonus":0,"Continent":"K63","ID":53906,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53906","ServerKey":"pl181","X":376,"Y":688},{"Bonus":0,"Continent":"K36","ID":53907,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53907","ServerKey":"pl181","X":626,"Y":309},{"Bonus":0,"Continent":"K63","ID":53908,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":6309,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53908","ServerKey":"pl181","X":321,"Y":633},{"Bonus":0,"Continent":"K25","ID":53909,"Name":"jooo","PlayerID":849105071,"Points":2676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53909","ServerKey":"pl181","X":538,"Y":277},{"Bonus":0,"Continent":"K33","ID":53910,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53910","ServerKey":"pl181","X":305,"Y":378},{"Bonus":0,"Continent":"K62","ID":53911,"Name":"Wioska niedzwiedz8807","PlayerID":3319611,"Points":2955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53911","ServerKey":"pl181","X":295,"Y":604},{"Bonus":0,"Continent":"K24","ID":53912,"Name":"230...NORTH","PlayerID":6920960,"Points":2173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53912","ServerKey":"pl181","X":448,"Y":278},{"Bonus":0,"Continent":"K63","ID":53913,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53913","ServerKey":"pl181","X":307,"Y":614},{"Bonus":0,"Continent":"K63","ID":53914,"Name":"Wioska bob 25","PlayerID":281866,"Points":2969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53914","ServerKey":"pl181","X":366,"Y":683},{"Bonus":0,"Continent":"K74","ID":53915,"Name":"Wioska Beny604","PlayerID":698738810,"Points":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53915","ServerKey":"pl181","X":458,"Y":717},{"Bonus":0,"Continent":"K63","ID":53916,"Name":"Wioska lis 1","PlayerID":849056475,"Points":1298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53916","ServerKey":"pl181","X":335,"Y":651},{"Bonus":0,"Continent":"K66","ID":53917,"Name":"051.","PlayerID":699373599,"Points":2926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53917","ServerKey":"pl181","X":638,"Y":672},{"Bonus":2,"Continent":"K63","ID":53918,"Name":"0122","PlayerID":7085510,"Points":5818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53918","ServerKey":"pl181","X":376,"Y":684},{"Bonus":0,"Continent":"K43","ID":53919,"Name":"Walgind","PlayerID":8724192,"Points":8114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53919","ServerKey":"pl181","X":301,"Y":403},{"Bonus":0,"Continent":"K57","ID":53920,"Name":"Agonia","PlayerID":8541236,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53920","ServerKey":"pl181","X":727,"Y":524},{"Bonus":0,"Continent":"K63","ID":53921,"Name":"Wolgast Wald","PlayerID":849092685,"Points":1580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53921","ServerKey":"pl181","X":341,"Y":656},{"Bonus":0,"Continent":"K36","ID":53922,"Name":"ƚw181*004","PlayerID":959179,"Points":3045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53922","ServerKey":"pl181","X":663,"Y":345},{"Bonus":0,"Continent":"K66","ID":53923,"Name":"Wioska Kayohix","PlayerID":698647624,"Points":6251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53923","ServerKey":"pl181","X":615,"Y":694},{"Bonus":0,"Continent":"K63","ID":53924,"Name":"026","PlayerID":699356968,"Points":1464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53924","ServerKey":"pl181","X":306,"Y":616},{"Bonus":0,"Continent":"K25","ID":53925,"Name":"--049--","PlayerID":542253,"Points":1405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53925","ServerKey":"pl181","X":581,"Y":288},{"Bonus":0,"Continent":"K63","ID":53926,"Name":"Kirholm","PlayerID":698167138,"Points":3314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53926","ServerKey":"pl181","X":302,"Y":615},{"Bonus":0,"Continent":"K25","ID":53927,"Name":"North 032","PlayerID":849064752,"Points":6804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53927","ServerKey":"pl181","X":510,"Y":270},{"Bonus":0,"Continent":"K57","ID":53928,"Name":"=120= Wioska barbarzyƄska","PlayerID":3781794,"Points":1956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53928","ServerKey":"pl181","X":715,"Y":565},{"Bonus":0,"Continent":"K42","ID":53929,"Name":"maniek 01","PlayerID":849095814,"Points":6277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53929","ServerKey":"pl181","X":271,"Y":477},{"Bonus":0,"Continent":"K63","ID":53930,"Name":"Psycha Siada","PlayerID":8099868,"Points":6964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53930","ServerKey":"pl181","X":321,"Y":643},{"Bonus":25,"Continent":"K33","ID":53931,"Name":"Twierdza (NBW)","PlayerID":0,"Points":2608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53931","ServerKey":"pl181","X":374,"Y":379},{"Bonus":0,"Continent":"K74","ID":53933,"Name":"New World","PlayerID":698152377,"Points":10294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53933","ServerKey":"pl181","X":431,"Y":718},{"Bonus":0,"Continent":"K63","ID":53934,"Name":"D013","PlayerID":272173,"Points":6797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53934","ServerKey":"pl181","X":341,"Y":653},{"Bonus":0,"Continent":"K24","ID":53935,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53935","ServerKey":"pl181","X":491,"Y":274},{"Bonus":0,"Continent":"K47","ID":53936,"Name":"warszawa","PlayerID":849042461,"Points":2077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53936","ServerKey":"pl181","X":716,"Y":422},{"Bonus":0,"Continent":"K42","ID":53937,"Name":"B_8","PlayerID":699728266,"Points":1789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53937","ServerKey":"pl181","X":294,"Y":421},{"Bonus":0,"Continent":"K47","ID":53938,"Name":"01 Sztab Generalny","PlayerID":849104855,"Points":8170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53938","ServerKey":"pl181","X":730,"Y":485},{"Bonus":0,"Continent":"K66","ID":53939,"Name":"###152###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53939","ServerKey":"pl181","X":610,"Y":695},{"Bonus":0,"Continent":"K66","ID":53940,"Name":"Kaufbeuren","PlayerID":7976264,"Points":6937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53940","ServerKey":"pl181","X":646,"Y":668},{"Bonus":0,"Continent":"K52","ID":53941,"Name":"025. Gloria Victis","PlayerID":848886973,"Points":7015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53941","ServerKey":"pl181","X":286,"Y":558},{"Bonus":0,"Continent":"K74","ID":53942,"Name":"Wioska bartek145972","PlayerID":848999671,"Points":2105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53942","ServerKey":"pl181","X":479,"Y":720},{"Bonus":0,"Continent":"K66","ID":53943,"Name":"komandos","PlayerID":7976264,"Points":3803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53943","ServerKey":"pl181","X":672,"Y":649},{"Bonus":0,"Continent":"K42","ID":53944,"Name":"Z01","PlayerID":6258092,"Points":2235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53944","ServerKey":"pl181","X":285,"Y":418},{"Bonus":0,"Continent":"K74","ID":53945,"Name":"043. Rezerwacja","PlayerID":848928624,"Points":3152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53945","ServerKey":"pl181","X":499,"Y":728},{"Bonus":0,"Continent":"K33","ID":53946,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":2964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53946","ServerKey":"pl181","X":329,"Y":358},{"Bonus":1,"Continent":"K36","ID":53947,"Name":"wioska","PlayerID":849102068,"Points":12024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53947","ServerKey":"pl181","X":642,"Y":318},{"Bonus":0,"Continent":"K24","ID":53948,"Name":"#0287 mirabelik","PlayerID":1238300,"Points":5799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53948","ServerKey":"pl181","X":443,"Y":277},{"Bonus":0,"Continent":"K63","ID":53949,"Name":"{55} Pogorzelice","PlayerID":849096945,"Points":942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53949","ServerKey":"pl181","X":373,"Y":689},{"Bonus":0,"Continent":"K63","ID":53950,"Name":"O141","PlayerID":272173,"Points":5245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53950","ServerKey":"pl181","X":345,"Y":634},{"Bonus":0,"Continent":"K52","ID":53951,"Name":"C0289","PlayerID":8841266,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53951","ServerKey":"pl181","X":280,"Y":547},{"Bonus":0,"Continent":"K24","ID":53952,"Name":"002.MoĆŒe się uda","PlayerID":602408,"Points":4117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53952","ServerKey":"pl181","X":457,"Y":275},{"Bonus":0,"Continent":"K24","ID":53953,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53953","ServerKey":"pl181","X":424,"Y":292},{"Bonus":0,"Continent":"K74","ID":53954,"Name":"New World","PlayerID":698152377,"Points":9787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53954","ServerKey":"pl181","X":417,"Y":711},{"Bonus":0,"Continent":"K57","ID":53955,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":3175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53955","ServerKey":"pl181","X":726,"Y":532},{"Bonus":0,"Continent":"K33","ID":53956,"Name":"#002","PlayerID":849110743,"Points":2769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53956","ServerKey":"pl181","X":305,"Y":375},{"Bonus":0,"Continent":"K47","ID":53957,"Name":"[826] Odludzie","PlayerID":848985692,"Points":6491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53957","ServerKey":"pl181","X":716,"Y":430},{"Bonus":0,"Continent":"K52","ID":53958,"Name":"C0291","PlayerID":8841266,"Points":3980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53958","ServerKey":"pl181","X":283,"Y":549},{"Bonus":0,"Continent":"K57","ID":53959,"Name":"Mordownia 3","PlayerID":849101029,"Points":9870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53959","ServerKey":"pl181","X":706,"Y":595},{"Bonus":0,"Continent":"K33","ID":53960,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":1958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53960","ServerKey":"pl181","X":313,"Y":375},{"Bonus":0,"Continent":"K36","ID":53961,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":2729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53961","ServerKey":"pl181","X":670,"Y":357},{"Bonus":0,"Continent":"K74","ID":53962,"Name":"056.","PlayerID":849034882,"Points":9492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53962","ServerKey":"pl181","X":455,"Y":726},{"Bonus":0,"Continent":"K35","ID":53963,"Name":"001 Paluszkowo","PlayerID":699576407,"Points":10283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53963","ServerKey":"pl181","X":593,"Y":343},{"Bonus":0,"Continent":"K75","ID":53964,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":3558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53964","ServerKey":"pl181","X":596,"Y":709},{"Bonus":0,"Continent":"K75","ID":53965,"Name":"Wioska barbarzyƄska","PlayerID":6299408,"Points":3409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53965","ServerKey":"pl181","X":567,"Y":717},{"Bonus":0,"Continent":"K36","ID":53966,"Name":"002","PlayerID":699117992,"Points":9730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53966","ServerKey":"pl181","X":612,"Y":303},{"Bonus":0,"Continent":"K47","ID":53967,"Name":"X009","PlayerID":699722599,"Points":6305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53967","ServerKey":"pl181","X":710,"Y":424},{"Bonus":0,"Continent":"K52","ID":53968,"Name":"C0255","PlayerID":8841266,"Points":4288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53968","ServerKey":"pl181","X":270,"Y":524},{"Bonus":0,"Continent":"K66","ID":53969,"Name":"120. Dartan","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53969","ServerKey":"pl181","X":677,"Y":642},{"Bonus":0,"Continent":"K63","ID":53970,"Name":"WaƂ","PlayerID":2725721,"Points":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53970","ServerKey":"pl181","X":353,"Y":670},{"Bonus":0,"Continent":"K42","ID":53971,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53971","ServerKey":"pl181","X":289,"Y":414},{"Bonus":0,"Continent":"K33","ID":53972,"Name":"Wioska barbarzyƄska 07","PlayerID":698757439,"Points":7231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53972","ServerKey":"pl181","X":345,"Y":335},{"Bonus":0,"Continent":"K63","ID":53973,"Name":"Psycha Siada","PlayerID":8099868,"Points":5149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53973","ServerKey":"pl181","X":329,"Y":648},{"Bonus":0,"Continent":"K75","ID":53974,"Name":"060 - Budowanko!","PlayerID":7540891,"Points":2273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53974","ServerKey":"pl181","X":547,"Y":722},{"Bonus":0,"Continent":"K25","ID":53975,"Name":".achim.","PlayerID":6936607,"Points":5820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53975","ServerKey":"pl181","X":568,"Y":290},{"Bonus":0,"Continent":"K42","ID":53976,"Name":"Wioska biesta","PlayerID":6276208,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53976","ServerKey":"pl181","X":296,"Y":415},{"Bonus":0,"Continent":"K25","ID":53977,"Name":"#006","PlayerID":849064614,"Points":9059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53977","ServerKey":"pl181","X":547,"Y":276},{"Bonus":0,"Continent":"K74","ID":53978,"Name":"New World","PlayerID":698152377,"Points":9957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53978","ServerKey":"pl181","X":420,"Y":709},{"Bonus":0,"Continent":"K24","ID":53979,"Name":"0078","PlayerID":848913037,"Points":4863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53979","ServerKey":"pl181","X":456,"Y":278},{"Bonus":0,"Continent":"K74","ID":53980,"Name":"0014 Village","PlayerID":699656989,"Points":8469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53980","ServerKey":"pl181","X":486,"Y":723},{"Bonus":0,"Continent":"K62","ID":53981,"Name":"Wioska barbarzyƄskaB","PlayerID":698178312,"Points":2235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53981","ServerKey":"pl181","X":295,"Y":607},{"Bonus":0,"Continent":"K25","ID":53982,"Name":".achim.","PlayerID":6936607,"Points":1880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53982","ServerKey":"pl181","X":576,"Y":290},{"Bonus":0,"Continent":"K75","ID":53983,"Name":"lorus","PlayerID":699878511,"Points":6019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53983","ServerKey":"pl181","X":527,"Y":724},{"Bonus":0,"Continent":"K47","ID":53985,"Name":"C.052","PlayerID":9188016,"Points":3549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53985","ServerKey":"pl181","X":719,"Y":468},{"Bonus":0,"Continent":"K47","ID":53986,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":2440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53986","ServerKey":"pl181","X":725,"Y":485},{"Bonus":0,"Continent":"K74","ID":53988,"Name":"New World","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53988","ServerKey":"pl181","X":415,"Y":710},{"Bonus":0,"Continent":"K66","ID":53989,"Name":"Wioska mondo96","PlayerID":6472706,"Points":6602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53989","ServerKey":"pl181","X":688,"Y":629},{"Bonus":0,"Continent":"K66","ID":53990,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":3356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53990","ServerKey":"pl181","X":621,"Y":684},{"Bonus":0,"Continent":"K47","ID":53991,"Name":"064.","PlayerID":849094609,"Points":2379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53991","ServerKey":"pl181","X":717,"Y":460},{"Bonus":0,"Continent":"K25","ID":53992,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":10035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53992","ServerKey":"pl181","X":589,"Y":294},{"Bonus":0,"Continent":"K52","ID":53993,"Name":"Cisza","PlayerID":698769107,"Points":770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53993","ServerKey":"pl181","X":289,"Y":576},{"Bonus":0,"Continent":"K33","ID":53994,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":3421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53994","ServerKey":"pl181","X":331,"Y":358},{"Bonus":3,"Continent":"K75","ID":53995,"Name":"#0062","PlayerID":1536231,"Points":9836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53995","ServerKey":"pl181","X":577,"Y":713},{"Bonus":0,"Continent":"K52","ID":53996,"Name":"001 Wioska York","PlayerID":6240801,"Points":9214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53996","ServerKey":"pl181","X":281,"Y":567},{"Bonus":0,"Continent":"K33","ID":53997,"Name":"Wioska barbarzyƄska","PlayerID":849101604,"Points":2735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53997","ServerKey":"pl181","X":349,"Y":338},{"Bonus":0,"Continent":"K52","ID":53998,"Name":"Soƛnica","PlayerID":848892804,"Points":3238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53998","ServerKey":"pl181","X":290,"Y":582},{"Bonus":0,"Continent":"K53","ID":53999,"Name":"Wioska NoeyPl","PlayerID":849000135,"Points":8632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=53999","ServerKey":"pl181","X":332,"Y":554},{"Bonus":0,"Continent":"K42","ID":54000,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54000","ServerKey":"pl181","X":292,"Y":424},{"Bonus":0,"Continent":"K63","ID":54001,"Name":"O134","PlayerID":272173,"Points":4713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54001","ServerKey":"pl181","X":315,"Y":630},{"Bonus":0,"Continent":"K57","ID":54002,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":4146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54002","ServerKey":"pl181","X":724,"Y":525},{"Bonus":0,"Continent":"K63","ID":54003,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":7261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54003","ServerKey":"pl181","X":325,"Y":635},{"Bonus":0,"Continent":"K75","ID":54004,"Name":"003","PlayerID":699730998,"Points":773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54004","ServerKey":"pl181","X":526,"Y":729},{"Bonus":0,"Continent":"K57","ID":54005,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":2897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54005","ServerKey":"pl181","X":723,"Y":531},{"Bonus":0,"Continent":"K63","ID":54006,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54006","ServerKey":"pl181","X":319,"Y":636},{"Bonus":0,"Continent":"K33","ID":54007,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54007","ServerKey":"pl181","X":384,"Y":310},{"Bonus":0,"Continent":"K36","ID":54008,"Name":"Wioska bercik53","PlayerID":9136062,"Points":1453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54008","ServerKey":"pl181","X":676,"Y":363},{"Bonus":0,"Continent":"K47","ID":54009,"Name":"Ghostmane6","PlayerID":848896434,"Points":1824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54009","ServerKey":"pl181","X":718,"Y":446},{"Bonus":0,"Continent":"K25","ID":54010,"Name":"North 021","PlayerID":849064752,"Points":7827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54010","ServerKey":"pl181","X":511,"Y":278},{"Bonus":0,"Continent":"K55","ID":54011,"Name":"226 |","PlayerID":8000875,"Points":7699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54011","ServerKey":"pl181","X":530,"Y":544},{"Bonus":0,"Continent":"K66","ID":54013,"Name":"~~073~~","PlayerID":7829201,"Points":5321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54013","ServerKey":"pl181","X":682,"Y":634},{"Bonus":0,"Continent":"K25","ID":54014,"Name":"060 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54014","ServerKey":"pl181","X":551,"Y":283},{"Bonus":0,"Continent":"K52","ID":54015,"Name":"BƂękitna gƂębia","PlayerID":848930898,"Points":2158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54015","ServerKey":"pl181","X":281,"Y":541},{"Bonus":0,"Continent":"K66","ID":54016,"Name":"Allianz Arena","PlayerID":849096631,"Points":3722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54016","ServerKey":"pl181","X":678,"Y":634},{"Bonus":0,"Continent":"K25","ID":54017,"Name":".achim.","PlayerID":6936607,"Points":4145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54017","ServerKey":"pl181","X":580,"Y":293},{"Bonus":0,"Continent":"K57","ID":54018,"Name":"ZƂomowisko","PlayerID":849098724,"Points":5518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54018","ServerKey":"pl181","X":710,"Y":584},{"Bonus":0,"Continent":"K63","ID":54019,"Name":"082 Wioska barbarzyƄska","PlayerID":6354098,"Points":4932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54019","ServerKey":"pl181","X":346,"Y":669},{"Bonus":0,"Continent":"K52","ID":54020,"Name":"Zzz 15 lubie laseczki","PlayerID":849084740,"Points":2122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54020","ServerKey":"pl181","X":278,"Y":564},{"Bonus":0,"Continent":"K52","ID":54021,"Name":"[0236]","PlayerID":8630972,"Points":4524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54021","ServerKey":"pl181","X":273,"Y":505},{"Bonus":0,"Continent":"K74","ID":54022,"Name":"New World","PlayerID":698152377,"Points":8177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54022","ServerKey":"pl181","X":437,"Y":721},{"Bonus":0,"Continent":"K33","ID":54023,"Name":"Zaplecze Barba 032","PlayerID":699796330,"Points":4925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54023","ServerKey":"pl181","X":352,"Y":334},{"Bonus":0,"Continent":"K52","ID":54024,"Name":"Wioska barbarzyƄska","PlayerID":498483,"Points":2181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54024","ServerKey":"pl181","X":290,"Y":576},{"Bonus":0,"Continent":"K55","ID":54025,"Name":"Wioska 181","PlayerID":848981244,"Points":4169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54025","ServerKey":"pl181","X":585,"Y":563},{"Bonus":0,"Continent":"K47","ID":54026,"Name":"034 Fortree City","PlayerID":699441366,"Points":2937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54026","ServerKey":"pl181","X":727,"Y":492},{"Bonus":0,"Continent":"K25","ID":54027,"Name":"D019","PlayerID":699299123,"Points":2885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54027","ServerKey":"pl181","X":560,"Y":286},{"Bonus":0,"Continent":"K26","ID":54028,"Name":"Infantino","PlayerID":848983660,"Points":7062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54028","ServerKey":"pl181","X":604,"Y":296},{"Bonus":0,"Continent":"K63","ID":54029,"Name":"Kicha","PlayerID":698167138,"Points":1951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54029","ServerKey":"pl181","X":301,"Y":615},{"Bonus":0,"Continent":"K52","ID":54030,"Name":"072 obrzeĆŒa","PlayerID":699510259,"Points":5334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54030","ServerKey":"pl181","X":277,"Y":559},{"Bonus":0,"Continent":"K42","ID":54031,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54031","ServerKey":"pl181","X":274,"Y":456},{"Bonus":0,"Continent":"K33","ID":54032,"Name":"007 JJ","PlayerID":9120206,"Points":4463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54032","ServerKey":"pl181","X":327,"Y":362},{"Bonus":0,"Continent":"K36","ID":54034,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54034","ServerKey":"pl181","X":647,"Y":321},{"Bonus":0,"Continent":"K57","ID":54035,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":8425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54035","ServerKey":"pl181","X":719,"Y":573},{"Bonus":0,"Continent":"K23","ID":54036,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54036","ServerKey":"pl181","X":399,"Y":299},{"Bonus":0,"Continent":"K65","ID":54037,"Name":"Wioska barbarzyƄska","PlayerID":699567608,"Points":2898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54037","ServerKey":"pl181","X":567,"Y":613},{"Bonus":0,"Continent":"K33","ID":54038,"Name":"Wioska maybe-later","PlayerID":8097158,"Points":1513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54038","ServerKey":"pl181","X":385,"Y":306},{"Bonus":0,"Continent":"K36","ID":54039,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54039","ServerKey":"pl181","X":627,"Y":319},{"Bonus":0,"Continent":"K66","ID":54040,"Name":"11. Kaer Morhen","PlayerID":849102573,"Points":914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54040","ServerKey":"pl181","X":607,"Y":699},{"Bonus":0,"Continent":"K25","ID":54041,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":4465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54041","ServerKey":"pl181","X":586,"Y":291},{"Bonus":0,"Continent":"K36","ID":54042,"Name":"B019","PlayerID":8740199,"Points":4594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54042","ServerKey":"pl181","X":630,"Y":311},{"Bonus":9,"Continent":"K57","ID":54043,"Name":"A#020","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54043","ServerKey":"pl181","X":723,"Y":504},{"Bonus":0,"Continent":"K47","ID":54044,"Name":"ZPP United","PlayerID":8096537,"Points":2045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54044","ServerKey":"pl181","X":727,"Y":487},{"Bonus":0,"Continent":"K24","ID":54045,"Name":"Poznan 001","PlayerID":1924718,"Points":1221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54045","ServerKey":"pl181","X":413,"Y":288},{"Bonus":0,"Continent":"K33","ID":54046,"Name":"Z 06","PlayerID":6884492,"Points":2109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54046","ServerKey":"pl181","X":384,"Y":311},{"Bonus":1,"Continent":"K52","ID":54047,"Name":"New WorldA","PlayerID":849084005,"Points":1305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54047","ServerKey":"pl181","X":276,"Y":517},{"Bonus":0,"Continent":"K57","ID":54048,"Name":"08.AVAX","PlayerID":698905177,"Points":6828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54048","ServerKey":"pl181","X":715,"Y":561},{"Bonus":5,"Continent":"K75","ID":54049,"Name":"018 daleko","PlayerID":849093426,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54049","ServerKey":"pl181","X":552,"Y":715},{"Bonus":0,"Continent":"K47","ID":54050,"Name":"[835] Odludzie","PlayerID":848985692,"Points":5530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54050","ServerKey":"pl181","X":720,"Y":441},{"Bonus":0,"Continent":"K66","ID":54051,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54051","ServerKey":"pl181","X":689,"Y":626},{"Bonus":0,"Continent":"K25","ID":54052,"Name":"B009","PlayerID":699485250,"Points":4001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54052","ServerKey":"pl181","X":529,"Y":275},{"Bonus":0,"Continent":"K47","ID":54053,"Name":"Artur Boruc","PlayerID":699146876,"Points":6747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54053","ServerKey":"pl181","X":708,"Y":405},{"Bonus":0,"Continent":"K36","ID":54054,"Name":"wioska","PlayerID":849102068,"Points":3968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54054","ServerKey":"pl181","X":634,"Y":334},{"Bonus":0,"Continent":"K66","ID":54055,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":8274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54055","ServerKey":"pl181","X":665,"Y":648},{"Bonus":0,"Continent":"K36","ID":54056,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54056","ServerKey":"pl181","X":649,"Y":326},{"Bonus":0,"Continent":"K42","ID":54057,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54057","ServerKey":"pl181","X":284,"Y":445},{"Bonus":0,"Continent":"K24","ID":54058,"Name":"Wioska Wieslaw 4","PlayerID":699794421,"Points":2259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54058","ServerKey":"pl181","X":498,"Y":272},{"Bonus":0,"Continent":"K63","ID":54059,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":9808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54059","ServerKey":"pl181","X":325,"Y":638},{"Bonus":0,"Continent":"K75","ID":54060,"Name":"w oczekiwaniu na nazwę docelową","PlayerID":849102336,"Points":524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54060","ServerKey":"pl181","X":518,"Y":728},{"Bonus":0,"Continent":"K24","ID":54061,"Name":".achim.","PlayerID":6936607,"Points":6211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54061","ServerKey":"pl181","X":483,"Y":279},{"Bonus":0,"Continent":"K35","ID":54062,"Name":"Feed me more 018","PlayerID":699756210,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54062","ServerKey":"pl181","X":501,"Y":369},{"Bonus":0,"Continent":"K33","ID":54063,"Name":"004","PlayerID":849109795,"Points":1922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54063","ServerKey":"pl181","X":301,"Y":396},{"Bonus":0,"Continent":"K52","ID":54064,"Name":"Wioska 181","PlayerID":1164249,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54064","ServerKey":"pl181","X":296,"Y":517},{"Bonus":0,"Continent":"K57","ID":54065,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54065","ServerKey":"pl181","X":724,"Y":559},{"Bonus":0,"Continent":"K66","ID":54066,"Name":"Nowa Baza 5","PlayerID":698353083,"Points":6360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54066","ServerKey":"pl181","X":614,"Y":698},{"Bonus":0,"Continent":"K33","ID":54068,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54068","ServerKey":"pl181","X":395,"Y":302},{"Bonus":0,"Continent":"K57","ID":54070,"Name":"Peru","PlayerID":848946700,"Points":6702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54070","ServerKey":"pl181","X":724,"Y":543},{"Bonus":0,"Continent":"K52","ID":54071,"Name":"New WorldA","PlayerID":849084005,"Points":1883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54071","ServerKey":"pl181","X":275,"Y":544},{"Bonus":0,"Continent":"K66","ID":54072,"Name":"nr9","PlayerID":364126,"Points":1982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54072","ServerKey":"pl181","X":643,"Y":678},{"Bonus":0,"Continent":"K36","ID":54073,"Name":"Wioska barbarzyƄska","PlayerID":2976468,"Points":3985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54073","ServerKey":"pl181","X":679,"Y":353},{"Bonus":0,"Continent":"K42","ID":54074,"Name":"Wioska jar-11","PlayerID":698384662,"Points":1446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54074","ServerKey":"pl181","X":273,"Y":491},{"Bonus":0,"Continent":"K25","ID":54075,"Name":"Wioska kwiatek7777","PlayerID":7337110,"Points":1162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54075","ServerKey":"pl181","X":529,"Y":279},{"Bonus":0,"Continent":"K36","ID":54076,"Name":"Flap","PlayerID":699098531,"Points":6388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54076","ServerKey":"pl181","X":614,"Y":300},{"Bonus":0,"Continent":"K57","ID":54077,"Name":"=107= Wioska barbarzyƄska","PlayerID":3781794,"Points":3331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54077","ServerKey":"pl181","X":701,"Y":593},{"Bonus":0,"Continent":"K36","ID":54078,"Name":"01 maki5b","PlayerID":6517826,"Points":9752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54078","ServerKey":"pl181","X":637,"Y":326},{"Bonus":0,"Continent":"K32","ID":54079,"Name":"016. Tak o","PlayerID":698630507,"Points":3623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54079","ServerKey":"pl181","X":295,"Y":396},{"Bonus":0,"Continent":"K66","ID":54080,"Name":"Anty C - ovid !","PlayerID":6046743,"Points":2365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54080","ServerKey":"pl181","X":655,"Y":670},{"Bonus":0,"Continent":"K66","ID":54081,"Name":"Malaga","PlayerID":747422,"Points":3440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54081","ServerKey":"pl181","X":645,"Y":676},{"Bonus":0,"Continent":"K66","ID":54082,"Name":"048","PlayerID":2323859,"Points":1660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54082","ServerKey":"pl181","X":669,"Y":653},{"Bonus":0,"Continent":"K66","ID":54083,"Name":"063.","PlayerID":699373599,"Points":1774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54083","ServerKey":"pl181","X":639,"Y":685},{"Bonus":0,"Continent":"K42","ID":54084,"Name":"United","PlayerID":848993769,"Points":3070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54084","ServerKey":"pl181","X":292,"Y":420},{"Bonus":0,"Continent":"K42","ID":54086,"Name":"Avanti!","PlayerID":698625834,"Points":6283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54086","ServerKey":"pl181","X":274,"Y":484},{"Bonus":9,"Continent":"K33","ID":54087,"Name":"FAKE OR OFF","PlayerID":698231772,"Points":9812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54087","ServerKey":"pl181","X":392,"Y":303},{"Bonus":0,"Continent":"K63","ID":54088,"Name":"A001","PlayerID":849105102,"Points":10089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54088","ServerKey":"pl181","X":334,"Y":659},{"Bonus":0,"Continent":"K42","ID":54089,"Name":"[0191]","PlayerID":8630972,"Points":7243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54089","ServerKey":"pl181","X":275,"Y":496},{"Bonus":0,"Continent":"K67","ID":54090,"Name":"K67 02","PlayerID":698867483,"Points":8822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54090","ServerKey":"pl181","X":700,"Y":616},{"Bonus":0,"Continent":"K25","ID":54091,"Name":"B003","PlayerID":699485250,"Points":8606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54091","ServerKey":"pl181","X":521,"Y":279},{"Bonus":0,"Continent":"K66","ID":54092,"Name":"050","PlayerID":2323859,"Points":1201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54092","ServerKey":"pl181","X":671,"Y":651},{"Bonus":0,"Continent":"K36","ID":54093,"Name":"Flap","PlayerID":699098531,"Points":6595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54093","ServerKey":"pl181","X":615,"Y":301},{"Bonus":0,"Continent":"K66","ID":54094,"Name":"#03!","PlayerID":849101884,"Points":5412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54094","ServerKey":"pl181","X":639,"Y":680},{"Bonus":6,"Continent":"K73","ID":54095,"Name":"130","PlayerID":849099876,"Points":9278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54095","ServerKey":"pl181","X":393,"Y":701},{"Bonus":0,"Continent":"K57","ID":54096,"Name":"36.Geso","PlayerID":8976313,"Points":5572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54096","ServerKey":"pl181","X":723,"Y":542},{"Bonus":0,"Continent":"K25","ID":54097,"Name":"North 028","PlayerID":849064752,"Points":7800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54097","ServerKey":"pl181","X":514,"Y":269},{"Bonus":0,"Continent":"K66","ID":54098,"Name":"026","PlayerID":699099811,"Points":3237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54098","ServerKey":"pl181","X":688,"Y":619},{"Bonus":0,"Continent":"K66","ID":54099,"Name":"BETON 104","PlayerID":699277039,"Points":975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54099","ServerKey":"pl181","X":662,"Y":664},{"Bonus":0,"Continent":"K36","ID":54100,"Name":"aaaaaa","PlayerID":2976468,"Points":7817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54100","ServerKey":"pl181","X":678,"Y":362},{"Bonus":0,"Continent":"K24","ID":54101,"Name":"#0244 colt9","PlayerID":1238300,"Points":6029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54101","ServerKey":"pl181","X":438,"Y":284},{"Bonus":0,"Continent":"K75","ID":54102,"Name":"042 - Budowanko!","PlayerID":7540891,"Points":6926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54102","ServerKey":"pl181","X":501,"Y":726},{"Bonus":0,"Continent":"K25","ID":54103,"Name":"North 024","PlayerID":849064752,"Points":7538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54103","ServerKey":"pl181","X":510,"Y":272},{"Bonus":0,"Continent":"K63","ID":54104,"Name":"63/1","PlayerID":8175236,"Points":3001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54104","ServerKey":"pl181","X":328,"Y":650},{"Bonus":0,"Continent":"K74","ID":54105,"Name":"Kurnik","PlayerID":699603116,"Points":7800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54105","ServerKey":"pl181","X":449,"Y":716},{"Bonus":0,"Continent":"K25","ID":54106,"Name":"770","PlayerID":849087149,"Points":655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54106","ServerKey":"pl181","X":538,"Y":274},{"Bonus":0,"Continent":"K75","ID":54107,"Name":"Wioska barbarzyƄska","PlayerID":8991696,"Points":3201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54107","ServerKey":"pl181","X":592,"Y":707},{"Bonus":0,"Continent":"K74","ID":54108,"Name":"030 - Budowanko!","PlayerID":7540891,"Points":5063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54108","ServerKey":"pl181","X":481,"Y":725},{"Bonus":0,"Continent":"K42","ID":54109,"Name":"[0192]","PlayerID":8630972,"Points":7341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54109","ServerKey":"pl181","X":273,"Y":496},{"Bonus":0,"Continent":"K33","ID":54111,"Name":"Wioska barbarzyƄska","PlayerID":849103148,"Points":1784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54111","ServerKey":"pl181","X":337,"Y":345},{"Bonus":0,"Continent":"K64","ID":54112,"Name":"024","PlayerID":699736927,"Points":2982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54112","ServerKey":"pl181","X":458,"Y":651},{"Bonus":0,"Continent":"K63","ID":54113,"Name":"001 wolnoƛć","PlayerID":6910361,"Points":1222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54113","ServerKey":"pl181","X":336,"Y":654},{"Bonus":0,"Continent":"K63","ID":54114,"Name":"jarekamyk","PlayerID":699875132,"Points":3602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54114","ServerKey":"pl181","X":351,"Y":677},{"Bonus":0,"Continent":"K66","ID":54116,"Name":"WaƂbrzych","PlayerID":848932879,"Points":4546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54116","ServerKey":"pl181","X":677,"Y":631},{"Bonus":0,"Continent":"K64","ID":54117,"Name":"Wioska Pieguss","PlayerID":698855681,"Points":162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54117","ServerKey":"pl181","X":469,"Y":647},{"Bonus":0,"Continent":"K47","ID":54118,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54118","ServerKey":"pl181","X":721,"Y":473},{"Bonus":0,"Continent":"K75","ID":54119,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":4997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54119","ServerKey":"pl181","X":589,"Y":712},{"Bonus":0,"Continent":"K63","ID":54120,"Name":"125","PlayerID":849099876,"Points":8556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54120","ServerKey":"pl181","X":385,"Y":695},{"Bonus":0,"Continent":"K46","ID":54121,"Name":"Wioska16","PlayerID":848935020,"Points":1970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54121","ServerKey":"pl181","X":633,"Y":486},{"Bonus":0,"Continent":"K66","ID":54122,"Name":"#119#","PlayerID":692803,"Points":5419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54122","ServerKey":"pl181","X":641,"Y":673},{"Bonus":0,"Continent":"K47","ID":54123,"Name":"03 Dywizja","PlayerID":849104855,"Points":7457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54123","ServerKey":"pl181","X":728,"Y":491},{"Bonus":0,"Continent":"K24","ID":54124,"Name":"[0168]","PlayerID":8630972,"Points":7982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54124","ServerKey":"pl181","X":472,"Y":271},{"Bonus":0,"Continent":"K66","ID":54125,"Name":"0015","PlayerID":6417987,"Points":1705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54125","ServerKey":"pl181","X":683,"Y":631},{"Bonus":0,"Continent":"K52","ID":54126,"Name":"029. Gloria Victis","PlayerID":848886973,"Points":5774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54126","ServerKey":"pl181","X":279,"Y":560},{"Bonus":0,"Continent":"K42","ID":54127,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":4198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54127","ServerKey":"pl181","X":278,"Y":460},{"Bonus":0,"Continent":"K63","ID":54128,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54128","ServerKey":"pl181","X":363,"Y":682},{"Bonus":0,"Continent":"K24","ID":54129,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":1803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54129","ServerKey":"pl181","X":463,"Y":273},{"Bonus":0,"Continent":"K35","ID":54130,"Name":"001 Kattegat","PlayerID":699072129,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54130","ServerKey":"pl181","X":552,"Y":352},{"Bonus":0,"Continent":"K66","ID":54131,"Name":"063","PlayerID":699099811,"Points":4559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54131","ServerKey":"pl181","X":696,"Y":623},{"Bonus":0,"Continent":"K42","ID":54132,"Name":"KUKA IV","PlayerID":6127190,"Points":1995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54132","ServerKey":"pl181","X":282,"Y":428},{"Bonus":0,"Continent":"K36","ID":54133,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":1555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54133","ServerKey":"pl181","X":687,"Y":367},{"Bonus":0,"Continent":"K75","ID":54134,"Name":"MWITO","PlayerID":33900,"Points":1460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54134","ServerKey":"pl181","X":590,"Y":708},{"Bonus":0,"Continent":"K63","ID":54135,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":1596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54135","ServerKey":"pl181","X":363,"Y":674},{"Bonus":0,"Continent":"K66","ID":54136,"Name":"###153###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54136","ServerKey":"pl181","X":603,"Y":695},{"Bonus":0,"Continent":"K66","ID":54137,"Name":"049","PlayerID":2323859,"Points":875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54137","ServerKey":"pl181","X":671,"Y":642},{"Bonus":0,"Continent":"K63","ID":54138,"Name":"O120","PlayerID":272173,"Points":6727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54138","ServerKey":"pl181","X":309,"Y":629},{"Bonus":0,"Continent":"K75","ID":54139,"Name":"MERHET","PlayerID":698215322,"Points":4701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54139","ServerKey":"pl181","X":581,"Y":705},{"Bonus":0,"Continent":"K36","ID":54140,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":3480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54140","ServerKey":"pl181","X":692,"Y":377},{"Bonus":0,"Continent":"K52","ID":54141,"Name":"C0297","PlayerID":8841266,"Points":3864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54141","ServerKey":"pl181","X":277,"Y":530},{"Bonus":0,"Continent":"K33","ID":54142,"Name":"misiek1393","PlayerID":849027025,"Points":7951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54142","ServerKey":"pl181","X":383,"Y":301},{"Bonus":0,"Continent":"K33","ID":54143,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":6566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54143","ServerKey":"pl181","X":364,"Y":315},{"Bonus":0,"Continent":"K36","ID":54144,"Name":"Wioska Steven","PlayerID":699375903,"Points":2209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54144","ServerKey":"pl181","X":686,"Y":370},{"Bonus":0,"Continent":"K63","ID":54145,"Name":"079 Wioska barbarzyƄska","PlayerID":6354098,"Points":2723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54145","ServerKey":"pl181","X":350,"Y":665},{"Bonus":0,"Continent":"K36","ID":54146,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54146","ServerKey":"pl181","X":625,"Y":307},{"Bonus":0,"Continent":"K57","ID":54147,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":2241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54147","ServerKey":"pl181","X":715,"Y":560},{"Bonus":0,"Continent":"K62","ID":54148,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54148","ServerKey":"pl181","X":298,"Y":613},{"Bonus":0,"Continent":"K33","ID":54149,"Name":"Gubernia 01","PlayerID":849107532,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54149","ServerKey":"pl181","X":364,"Y":313},{"Bonus":0,"Continent":"K75","ID":54150,"Name":"Wioska barbarzyƄska","PlayerID":698723158,"Points":2311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54150","ServerKey":"pl181","X":583,"Y":716},{"Bonus":0,"Continent":"K74","ID":54151,"Name":"0065","PlayerID":849037407,"Points":10484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54151","ServerKey":"pl181","X":448,"Y":725},{"Bonus":0,"Continent":"K52","ID":54152,"Name":"[0207]","PlayerID":8630972,"Points":6524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54152","ServerKey":"pl181","X":274,"Y":501},{"Bonus":0,"Continent":"K33","ID":54153,"Name":"Zaplecze Barba 036","PlayerID":699796330,"Points":3509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54153","ServerKey":"pl181","X":348,"Y":333},{"Bonus":0,"Continent":"K63","ID":54154,"Name":"126","PlayerID":849099876,"Points":8881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54154","ServerKey":"pl181","X":384,"Y":695},{"Bonus":0,"Continent":"K24","ID":54155,"Name":"Op Konfederacja","PlayerID":848915730,"Points":7344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54155","ServerKey":"pl181","X":468,"Y":279},{"Bonus":0,"Continent":"K63","ID":54156,"Name":"Wioska gazolek123","PlayerID":7242969,"Points":79,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54156","ServerKey":"pl181","X":367,"Y":685},{"Bonus":0,"Continent":"K26","ID":54157,"Name":"Wioska xbarbarzyƄska","PlayerID":9106690,"Points":205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54157","ServerKey":"pl181","X":603,"Y":299},{"Bonus":0,"Continent":"K66","ID":54158,"Name":"Wioska Dnabuk","PlayerID":6167751,"Points":118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54158","ServerKey":"pl181","X":651,"Y":663},{"Bonus":0,"Continent":"K63","ID":54159,"Name":"002","PlayerID":8752714,"Points":3639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54159","ServerKey":"pl181","X":313,"Y":636},{"Bonus":0,"Continent":"K36","ID":54160,"Name":"24.VIXX","PlayerID":9180206,"Points":3727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54160","ServerKey":"pl181","X":692,"Y":388},{"Bonus":0,"Continent":"K36","ID":54161,"Name":"Wioska barbarzyƄska","PlayerID":2976468,"Points":4209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54161","ServerKey":"pl181","X":677,"Y":353},{"Bonus":2,"Continent":"K42","ID":54162,"Name":"K42 ADAMUS 004","PlayerID":6212605,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54162","ServerKey":"pl181","X":283,"Y":432},{"Bonus":0,"Continent":"K34","ID":54163,"Name":"**** Niko ****","PlayerID":1510264,"Points":4104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54163","ServerKey":"pl181","X":486,"Y":345},{"Bonus":0,"Continent":"K66","ID":54164,"Name":"Wioska 111","PlayerID":848971079,"Points":2811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54164","ServerKey":"pl181","X":686,"Y":639},{"Bonus":0,"Continent":"K57","ID":54165,"Name":"=108= Wioska barbarzyƄska","PlayerID":3781794,"Points":2783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54165","ServerKey":"pl181","X":702,"Y":591},{"Bonus":0,"Continent":"K63","ID":54166,"Name":"Wakat","PlayerID":2725721,"Points":969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54166","ServerKey":"pl181","X":354,"Y":671},{"Bonus":0,"Continent":"K42","ID":54167,"Name":"Wioska Knykieć Dyl","PlayerID":7927374,"Points":196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54167","ServerKey":"pl181","X":280,"Y":455},{"Bonus":0,"Continent":"K57","ID":54168,"Name":"=109= Wioska barbarzyƄska","PlayerID":3781794,"Points":2690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54168","ServerKey":"pl181","X":704,"Y":596},{"Bonus":0,"Continent":"K33","ID":54169,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54169","ServerKey":"pl181","X":386,"Y":303},{"Bonus":0,"Continent":"K47","ID":54170,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54170","ServerKey":"pl181","X":722,"Y":491},{"Bonus":5,"Continent":"K36","ID":54171,"Name":"=|08|=","PlayerID":9101574,"Points":9077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54171","ServerKey":"pl181","X":692,"Y":375},{"Bonus":0,"Continent":"K33","ID":54172,"Name":"Warszawa","PlayerID":849103148,"Points":7107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54172","ServerKey":"pl181","X":337,"Y":346},{"Bonus":0,"Continent":"K24","ID":54173,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54173","ServerKey":"pl181","X":494,"Y":269},{"Bonus":0,"Continent":"K57","ID":54174,"Name":"030 Legio IX Equites","PlayerID":699878150,"Points":1428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54174","ServerKey":"pl181","X":723,"Y":559},{"Bonus":0,"Continent":"K57","ID":54175,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54175","ServerKey":"pl181","X":723,"Y":521},{"Bonus":0,"Continent":"K75","ID":54177,"Name":"Kapitol_05","PlayerID":606407,"Points":5286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54177","ServerKey":"pl181","X":505,"Y":721},{"Bonus":0,"Continent":"K25","ID":54178,"Name":"#047","PlayerID":849064614,"Points":1745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54178","ServerKey":"pl181","X":559,"Y":285},{"Bonus":0,"Continent":"K36","ID":54179,"Name":"037. 5spajk5","PlayerID":2873154,"Points":1983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54179","ServerKey":"pl181","X":689,"Y":378},{"Bonus":0,"Continent":"K54","ID":54180,"Name":"046 - Strata","PlayerID":225023,"Points":6304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54180","ServerKey":"pl181","X":414,"Y":582},{"Bonus":0,"Continent":"K52","ID":54181,"Name":"Wioska jarko123","PlayerID":699448843,"Points":1083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54181","ServerKey":"pl181","X":273,"Y":501},{"Bonus":0,"Continent":"K42","ID":54182,"Name":"Avanti!","PlayerID":698625834,"Points":6475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54182","ServerKey":"pl181","X":275,"Y":491},{"Bonus":0,"Continent":"K47","ID":54183,"Name":"X.07","PlayerID":699737356,"Points":2724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54183","ServerKey":"pl181","X":725,"Y":450},{"Bonus":0,"Continent":"K24","ID":54184,"Name":"220...NORTH","PlayerID":6920960,"Points":2250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54184","ServerKey":"pl181","X":426,"Y":286},{"Bonus":0,"Continent":"K52","ID":54185,"Name":"Cisza","PlayerID":698769107,"Points":2528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54185","ServerKey":"pl181","X":284,"Y":553},{"Bonus":0,"Continent":"K47","ID":54186,"Name":"Wioska PokemonĂłw","PlayerID":849102480,"Points":7274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54186","ServerKey":"pl181","X":720,"Y":436},{"Bonus":0,"Continent":"K66","ID":54187,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54187","ServerKey":"pl181","X":682,"Y":641},{"Bonus":0,"Continent":"K24","ID":54188,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54188","ServerKey":"pl181","X":494,"Y":270},{"Bonus":0,"Continent":"K46","ID":54189,"Name":"Wioska barbarzyƄska","PlayerID":699562182,"Points":1875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54189","ServerKey":"pl181","X":697,"Y":400},{"Bonus":0,"Continent":"K52","ID":54191,"Name":"New WorldA","PlayerID":849084005,"Points":3288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54191","ServerKey":"pl181","X":277,"Y":539},{"Bonus":0,"Continent":"K62","ID":54192,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":3033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54192","ServerKey":"pl181","X":296,"Y":601},{"Bonus":0,"Continent":"K36","ID":54193,"Name":"201 .40. Infanterie-Division","PlayerID":849091899,"Points":3166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54193","ServerKey":"pl181","X":691,"Y":376},{"Bonus":0,"Continent":"K25","ID":54194,"Name":"North K25","PlayerID":699146580,"Points":5416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54194","ServerKey":"pl181","X":523,"Y":277},{"Bonus":0,"Continent":"K63","ID":54195,"Name":"001 | North","PlayerID":699511295,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54195","ServerKey":"pl181","X":381,"Y":696},{"Bonus":0,"Continent":"K24","ID":54196,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54196","ServerKey":"pl181","X":496,"Y":272},{"Bonus":0,"Continent":"K42","ID":54197,"Name":"Wioska gall","PlayerID":699598396,"Points":5643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54197","ServerKey":"pl181","X":272,"Y":473},{"Bonus":9,"Continent":"K63","ID":54198,"Name":"0123","PlayerID":7085510,"Points":7675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54198","ServerKey":"pl181","X":370,"Y":691},{"Bonus":0,"Continent":"K66","ID":54199,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54199","ServerKey":"pl181","X":688,"Y":631},{"Bonus":0,"Continent":"K66","ID":54200,"Name":"#129#","PlayerID":692803,"Points":4048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54200","ServerKey":"pl181","X":658,"Y":666},{"Bonus":4,"Continent":"K42","ID":54201,"Name":"007","PlayerID":698652171,"Points":4155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54201","ServerKey":"pl181","X":273,"Y":453},{"Bonus":0,"Continent":"K33","ID":54202,"Name":"W004","PlayerID":849082154,"Points":569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54202","ServerKey":"pl181","X":301,"Y":384},{"Bonus":0,"Continent":"K75","ID":54203,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54203","ServerKey":"pl181","X":554,"Y":715},{"Bonus":0,"Continent":"K63","ID":54204,"Name":"020","PlayerID":699356968,"Points":1975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54204","ServerKey":"pl181","X":302,"Y":606},{"Bonus":0,"Continent":"K24","ID":54205,"Name":"Darlowo","PlayerID":699278528,"Points":5668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54205","ServerKey":"pl181","X":469,"Y":272},{"Bonus":0,"Continent":"K63","ID":54206,"Name":"Wioska bzyku195","PlayerID":849089512,"Points":426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54206","ServerKey":"pl181","X":336,"Y":651},{"Bonus":0,"Continent":"K75","ID":54207,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54207","ServerKey":"pl181","X":548,"Y":718},{"Bonus":0,"Continent":"K37","ID":54208,"Name":"013. Wioska barbarzyƄska","PlayerID":2873154,"Points":7182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54208","ServerKey":"pl181","X":700,"Y":388},{"Bonus":0,"Continent":"K52","ID":54209,"Name":"C0303","PlayerID":8841266,"Points":3825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54209","ServerKey":"pl181","X":282,"Y":536},{"Bonus":0,"Continent":"K25","ID":54210,"Name":"North 078","PlayerID":849064752,"Points":4487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54210","ServerKey":"pl181","X":598,"Y":292},{"Bonus":0,"Continent":"K35","ID":54211,"Name":"Www","PlayerID":849044961,"Points":2768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54211","ServerKey":"pl181","X":505,"Y":394},{"Bonus":0,"Continent":"K65","ID":54212,"Name":"Wioska barbarzyƄska","PlayerID":849099280,"Points":803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54212","ServerKey":"pl181","X":554,"Y":694},{"Bonus":0,"Continent":"K36","ID":54213,"Name":"E001","PlayerID":699299123,"Points":4652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54213","ServerKey":"pl181","X":635,"Y":313},{"Bonus":0,"Continent":"K33","ID":54214,"Name":"A-006","PlayerID":699406247,"Points":4349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54214","ServerKey":"pl181","X":321,"Y":366},{"Bonus":4,"Continent":"K66","ID":54215,"Name":"022","PlayerID":7085502,"Points":7601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54215","ServerKey":"pl181","X":698,"Y":620},{"Bonus":0,"Continent":"K63","ID":54216,"Name":"020 | North","PlayerID":699511295,"Points":1794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54216","ServerKey":"pl181","X":376,"Y":693},{"Bonus":0,"Continent":"K75","ID":54217,"Name":"wy...","PlayerID":699828685,"Points":4222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54217","ServerKey":"pl181","X":597,"Y":700},{"Bonus":0,"Continent":"K52","ID":54218,"Name":"Leeƛnica","PlayerID":1276665,"Points":8450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54218","ServerKey":"pl181","X":297,"Y":597},{"Bonus":0,"Continent":"K52","ID":54219,"Name":"New WorldA","PlayerID":849084005,"Points":5551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54219","ServerKey":"pl181","X":282,"Y":543},{"Bonus":0,"Continent":"K57","ID":54220,"Name":"=110= Wioska barbarzyƄska","PlayerID":3781794,"Points":2189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54220","ServerKey":"pl181","X":704,"Y":592},{"Bonus":0,"Continent":"K66","ID":54222,"Name":"komandos48","PlayerID":7976264,"Points":7085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54222","ServerKey":"pl181","X":648,"Y":676},{"Bonus":0,"Continent":"K36","ID":54223,"Name":"Wioska emilek","PlayerID":849040462,"Points":4639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54223","ServerKey":"pl181","X":633,"Y":318},{"Bonus":0,"Continent":"K36","ID":54224,"Name":"Kandydat","PlayerID":7973893,"Points":1590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54224","ServerKey":"pl181","X":691,"Y":372},{"Bonus":7,"Continent":"K33","ID":54225,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54225","ServerKey":"pl181","X":321,"Y":358},{"Bonus":0,"Continent":"K36","ID":54227,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54227","ServerKey":"pl181","X":625,"Y":312},{"Bonus":0,"Continent":"K52","ID":54228,"Name":"Nowy 0006","PlayerID":849096972,"Points":4076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54228","ServerKey":"pl181","X":299,"Y":594},{"Bonus":0,"Continent":"K63","ID":54229,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":6837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54229","ServerKey":"pl181","X":362,"Y":685},{"Bonus":0,"Continent":"K57","ID":54230,"Name":"44.Ymlac","PlayerID":8976313,"Points":3197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54230","ServerKey":"pl181","X":723,"Y":532},{"Bonus":0,"Continent":"K36","ID":54231,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54231","ServerKey":"pl181","X":616,"Y":303},{"Bonus":0,"Continent":"K25","ID":54232,"Name":"Wioska barbarzyƄska","PlayerID":849105071,"Points":2595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54232","ServerKey":"pl181","X":537,"Y":279},{"Bonus":0,"Continent":"K74","ID":54233,"Name":"0045","PlayerID":699280514,"Points":1245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54233","ServerKey":"pl181","X":476,"Y":730},{"Bonus":0,"Continent":"K25","ID":54234,"Name":"Wioska barbarzyƄska","PlayerID":849101409,"Points":1242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54234","ServerKey":"pl181","X":595,"Y":290},{"Bonus":0,"Continent":"K24","ID":54235,"Name":"Op Konfederacja","PlayerID":848915730,"Points":1370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54235","ServerKey":"pl181","X":465,"Y":280},{"Bonus":0,"Continent":"K36","ID":54236,"Name":"ƚw181*003","PlayerID":959179,"Points":3125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54236","ServerKey":"pl181","X":661,"Y":345},{"Bonus":0,"Continent":"K52","ID":54237,"Name":"001 bam","PlayerID":197581,"Points":9511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54237","ServerKey":"pl181","X":280,"Y":552},{"Bonus":0,"Continent":"K36","ID":54238,"Name":"Grzejdas 4","PlayerID":849057764,"Points":3275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54238","ServerKey":"pl181","X":695,"Y":387},{"Bonus":0,"Continent":"K33","ID":54240,"Name":"Wioska26","PlayerID":699711926,"Points":4194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54240","ServerKey":"pl181","X":332,"Y":344},{"Bonus":0,"Continent":"K66","ID":54241,"Name":"Dhabfba","PlayerID":849102985,"Points":1673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54241","ServerKey":"pl181","X":634,"Y":686},{"Bonus":0,"Continent":"K57","ID":54242,"Name":"kww06","PlayerID":8541236,"Points":2796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54242","ServerKey":"pl181","X":717,"Y":544},{"Bonus":0,"Continent":"K25","ID":54243,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":7678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54243","ServerKey":"pl181","X":585,"Y":295},{"Bonus":0,"Continent":"K52","ID":54244,"Name":"Far far away","PlayerID":849096458,"Points":2717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54244","ServerKey":"pl181","X":284,"Y":580},{"Bonus":0,"Continent":"K57","ID":54245,"Name":"181 Wioska Chmielu","PlayerID":848975192,"Points":2420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54245","ServerKey":"pl181","X":716,"Y":509},{"Bonus":0,"Continent":"K24","ID":54246,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54246","ServerKey":"pl181","X":407,"Y":288},{"Bonus":0,"Continent":"K24","ID":54247,"Name":"Wioska barbarzyƄska","PlayerID":3411571,"Points":9788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54247","ServerKey":"pl181","X":416,"Y":287},{"Bonus":0,"Continent":"K33","ID":54248,"Name":"K33","PlayerID":699794765,"Points":1537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54248","ServerKey":"pl181","X":309,"Y":390},{"Bonus":0,"Continent":"K63","ID":54250,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":2404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54250","ServerKey":"pl181","X":316,"Y":634},{"Bonus":0,"Continent":"K66","ID":54251,"Name":"komandos","PlayerID":7976264,"Points":3383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54251","ServerKey":"pl181","X":660,"Y":662},{"Bonus":0,"Continent":"K25","ID":54252,"Name":"042 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54252","ServerKey":"pl181","X":545,"Y":281},{"Bonus":0,"Continent":"K25","ID":54253,"Name":"Wioska wieslaw1","PlayerID":699794421,"Points":5455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54253","ServerKey":"pl181","X":502,"Y":276},{"Bonus":0,"Continent":"K74","ID":54254,"Name":"New World","PlayerID":698152377,"Points":9858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54254","ServerKey":"pl181","X":416,"Y":716},{"Bonus":4,"Continent":"K74","ID":54255,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54255","ServerKey":"pl181","X":433,"Y":717},{"Bonus":0,"Continent":"K33","ID":54256,"Name":"Wioska barbarzyƄska 019","PlayerID":849068662,"Points":2990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54256","ServerKey":"pl181","X":382,"Y":313},{"Bonus":0,"Continent":"K52","ID":54257,"Name":"...::181 09::...","PlayerID":699641777,"Points":3304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54257","ServerKey":"pl181","X":276,"Y":510},{"Bonus":0,"Continent":"K57","ID":54258,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":10615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54258","ServerKey":"pl181","X":724,"Y":554},{"Bonus":9,"Continent":"K57","ID":54259,"Name":"A#022","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54259","ServerKey":"pl181","X":724,"Y":540},{"Bonus":0,"Continent":"K74","ID":54261,"Name":"Taka.","PlayerID":848999671,"Points":5989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54261","ServerKey":"pl181","X":483,"Y":723},{"Bonus":1,"Continent":"K75","ID":54262,"Name":"3.Sheffield","PlayerID":698215322,"Points":8623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54262","ServerKey":"pl181","X":567,"Y":719},{"Bonus":5,"Continent":"K74","ID":54264,"Name":"125 invidia","PlayerID":849093426,"Points":9635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54264","ServerKey":"pl181","X":493,"Y":730},{"Bonus":0,"Continent":"K25","ID":54266,"Name":"070 Wioska barbarzyƄska","PlayerID":699854484,"Points":8737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54266","ServerKey":"pl181","X":542,"Y":282},{"Bonus":0,"Continent":"K75","ID":54267,"Name":"Kapitol_01","PlayerID":606407,"Points":4538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54267","ServerKey":"pl181","X":509,"Y":722},{"Bonus":0,"Continent":"K35","ID":54268,"Name":"01 Kapitol","PlayerID":849108780,"Points":11487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54268","ServerKey":"pl181","X":547,"Y":359},{"Bonus":0,"Continent":"K75","ID":54269,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":9482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54269","ServerKey":"pl181","X":539,"Y":720},{"Bonus":0,"Continent":"K35","ID":54270,"Name":"Stolica Berciaka","PlayerID":849108784,"Points":7300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54270","ServerKey":"pl181","X":540,"Y":341},{"Bonus":0,"Continent":"K63","ID":54271,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54271","ServerKey":"pl181","X":361,"Y":681},{"Bonus":0,"Continent":"K36","ID":54272,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54272","ServerKey":"pl181","X":638,"Y":325},{"Bonus":0,"Continent":"K36","ID":54273,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":5662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54273","ServerKey":"pl181","X":643,"Y":379},{"Bonus":0,"Continent":"K66","ID":54274,"Name":"064.","PlayerID":699373599,"Points":1667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54274","ServerKey":"pl181","X":635,"Y":687},{"Bonus":0,"Continent":"K52","ID":54275,"Name":"New WorldA","PlayerID":849084005,"Points":3430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54275","ServerKey":"pl181","X":275,"Y":541},{"Bonus":0,"Continent":"K66","ID":54276,"Name":"komandos","PlayerID":7976264,"Points":2545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54276","ServerKey":"pl181","X":661,"Y":663},{"Bonus":0,"Continent":"K36","ID":54277,"Name":"Wioska Lord Pynio","PlayerID":849018778,"Points":7266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54277","ServerKey":"pl181","X":662,"Y":336},{"Bonus":0,"Continent":"K57","ID":54278,"Name":"Sony 911","PlayerID":1415009,"Points":5657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54278","ServerKey":"pl181","X":716,"Y":583},{"Bonus":5,"Continent":"K74","ID":54279,"Name":"016. Way of Blond","PlayerID":848896948,"Points":9108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54279","ServerKey":"pl181","X":463,"Y":723},{"Bonus":0,"Continent":"K42","ID":54280,"Name":"K42 ADAMUS 005","PlayerID":6212605,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54280","ServerKey":"pl181","X":281,"Y":433},{"Bonus":0,"Continent":"K47","ID":54281,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54281","ServerKey":"pl181","X":707,"Y":403},{"Bonus":0,"Continent":"K75","ID":54282,"Name":"Wioska Bosman7","PlayerID":6948,"Points":209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54282","ServerKey":"pl181","X":564,"Y":714},{"Bonus":0,"Continent":"K33","ID":54283,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54283","ServerKey":"pl181","X":311,"Y":367},{"Bonus":0,"Continent":"K63","ID":54284,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54284","ServerKey":"pl181","X":303,"Y":601},{"Bonus":0,"Continent":"K52","ID":54285,"Name":"C0307","PlayerID":8841266,"Points":3569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54285","ServerKey":"pl181","X":278,"Y":536},{"Bonus":0,"Continent":"K63","ID":54286,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":1912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54286","ServerKey":"pl181","X":369,"Y":688},{"Bonus":0,"Continent":"K75","ID":54287,"Name":"ZZZ .::. cinek3456/13","PlayerID":33900,"Points":1275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54287","ServerKey":"pl181","X":587,"Y":712},{"Bonus":0,"Continent":"K74","ID":54288,"Name":"bandzior","PlayerID":606407,"Points":6485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54288","ServerKey":"pl181","X":498,"Y":729},{"Bonus":0,"Continent":"K57","ID":54289,"Name":"=121= Wioska barbarzyƄska","PlayerID":3781794,"Points":2288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54289","ServerKey":"pl181","X":714,"Y":564},{"Bonus":0,"Continent":"K66","ID":54290,"Name":"PoƂudniowy WschĂłd 015","PlayerID":699778867,"Points":825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54290","ServerKey":"pl181","X":694,"Y":610},{"Bonus":0,"Continent":"K24","ID":54291,"Name":"MP4/1B","PlayerID":8429484,"Points":2003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54291","ServerKey":"pl181","X":405,"Y":299},{"Bonus":0,"Continent":"K52","ID":54292,"Name":"0000038Z","PlayerID":849089881,"Points":3373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54292","ServerKey":"pl181","X":278,"Y":562},{"Bonus":0,"Continent":"K74","ID":54293,"Name":"R 049","PlayerID":699195358,"Points":3308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54293","ServerKey":"pl181","X":492,"Y":729},{"Bonus":0,"Continent":"K25","ID":54294,"Name":".achim.","PlayerID":6936607,"Points":5766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54294","ServerKey":"pl181","X":568,"Y":289},{"Bonus":0,"Continent":"K33","ID":54295,"Name":"K33","PlayerID":699794765,"Points":3813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54295","ServerKey":"pl181","X":318,"Y":386},{"Bonus":0,"Continent":"K24","ID":54296,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":4028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54296","ServerKey":"pl181","X":427,"Y":291},{"Bonus":0,"Continent":"K76","ID":54297,"Name":"Wioska Lodar93","PlayerID":699828685,"Points":888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54297","ServerKey":"pl181","X":604,"Y":707},{"Bonus":0,"Continent":"K36","ID":54298,"Name":"ƚw181*006","PlayerID":959179,"Points":1841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54298","ServerKey":"pl181","X":663,"Y":341},{"Bonus":0,"Continent":"K36","ID":54299,"Name":"Grunwald 001","PlayerID":698290577,"Points":3450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54299","ServerKey":"pl181","X":660,"Y":334},{"Bonus":0,"Continent":"K66","ID":54300,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":7850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54300","ServerKey":"pl181","X":664,"Y":648},{"Bonus":0,"Continent":"K25","ID":54301,"Name":"054 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54301","ServerKey":"pl181","X":549,"Y":280},{"Bonus":0,"Continent":"K33","ID":54302,"Name":"-11. Las Grzybas","PlayerID":698345556,"Points":2338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54302","ServerKey":"pl181","X":379,"Y":308},{"Bonus":0,"Continent":"K74","ID":54303,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54303","ServerKey":"pl181","X":401,"Y":702},{"Bonus":0,"Continent":"K42","ID":54304,"Name":"K42 ADAMUS 019","PlayerID":6212605,"Points":3935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54304","ServerKey":"pl181","X":281,"Y":429},{"Bonus":0,"Continent":"K74","ID":54305,"Name":"Kapitol_08","PlayerID":606407,"Points":5954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54305","ServerKey":"pl181","X":499,"Y":723},{"Bonus":0,"Continent":"K57","ID":54306,"Name":"27. Ofir","PlayerID":8976313,"Points":7266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54306","ServerKey":"pl181","X":722,"Y":533},{"Bonus":0,"Continent":"K73","ID":54307,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54307","ServerKey":"pl181","X":399,"Y":705},{"Bonus":0,"Continent":"K52","ID":54308,"Name":"...::181 11::...","PlayerID":699641777,"Points":3018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54308","ServerKey":"pl181","X":273,"Y":511},{"Bonus":0,"Continent":"K66","ID":54309,"Name":"Wioska barbarzyƄska","PlayerID":699699601,"Points":1177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54309","ServerKey":"pl181","X":624,"Y":685},{"Bonus":0,"Continent":"K63","ID":54310,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54310","ServerKey":"pl181","X":350,"Y":672},{"Bonus":0,"Continent":"K74","ID":54311,"Name":"0067","PlayerID":849037407,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54311","ServerKey":"pl181","X":454,"Y":726},{"Bonus":5,"Continent":"K74","ID":54312,"Name":"127 invidia","PlayerID":849093426,"Points":9111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54312","ServerKey":"pl181","X":493,"Y":731},{"Bonus":0,"Continent":"K66","ID":54313,"Name":"091","PlayerID":699373599,"Points":468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54313","ServerKey":"pl181","X":699,"Y":612},{"Bonus":0,"Continent":"K33","ID":54314,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54314","ServerKey":"pl181","X":316,"Y":376},{"Bonus":0,"Continent":"K37","ID":54315,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54315","ServerKey":"pl181","X":704,"Y":393},{"Bonus":0,"Continent":"K33","ID":54316,"Name":"Wioska barbarzyƄska 12","PlayerID":698757439,"Points":6583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54316","ServerKey":"pl181","X":346,"Y":331},{"Bonus":0,"Continent":"K63","ID":54317,"Name":"BOA2","PlayerID":699829494,"Points":5256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54317","ServerKey":"pl181","X":305,"Y":621},{"Bonus":0,"Continent":"K57","ID":54318,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":9146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54318","ServerKey":"pl181","X":713,"Y":573},{"Bonus":0,"Continent":"K52","ID":54319,"Name":"C0313","PlayerID":8841266,"Points":2594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54319","ServerKey":"pl181","X":278,"Y":525},{"Bonus":0,"Continent":"K24","ID":54320,"Name":"007","PlayerID":9283775,"Points":2936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54320","ServerKey":"pl181","X":408,"Y":298},{"Bonus":0,"Continent":"K24","ID":54321,"Name":"Warszawa","PlayerID":3411571,"Points":8103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54321","ServerKey":"pl181","X":407,"Y":294},{"Bonus":0,"Continent":"K25","ID":54322,"Name":"Wioska ziutek 1","PlayerID":7787254,"Points":7559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54322","ServerKey":"pl181","X":517,"Y":274},{"Bonus":0,"Continent":"K74","ID":54323,"Name":"Wioska barbarzyƄska","PlayerID":699429335,"Points":6023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54323","ServerKey":"pl181","X":497,"Y":722},{"Bonus":9,"Continent":"K42","ID":54324,"Name":"D | Forest Cyaaaanku","PlayerID":699213622,"Points":8714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54324","ServerKey":"pl181","X":277,"Y":465},{"Bonus":0,"Continent":"K57","ID":54325,"Name":"Wioska badadi 97","PlayerID":1043028,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54325","ServerKey":"pl181","X":722,"Y":506},{"Bonus":0,"Continent":"K47","ID":54326,"Name":"072. Wioska barbarzyƄska","PlayerID":7494497,"Points":5877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54326","ServerKey":"pl181","X":728,"Y":462},{"Bonus":0,"Continent":"K66","ID":54327,"Name":"051","PlayerID":2323859,"Points":3384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54327","ServerKey":"pl181","X":668,"Y":656},{"Bonus":0,"Continent":"K47","ID":54328,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54328","ServerKey":"pl181","X":729,"Y":485},{"Bonus":0,"Continent":"K66","ID":54329,"Name":"062.","PlayerID":699373599,"Points":2339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54329","ServerKey":"pl181","X":643,"Y":679},{"Bonus":0,"Continent":"K47","ID":54330,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54330","ServerKey":"pl181","X":716,"Y":417},{"Bonus":0,"Continent":"K57","ID":54331,"Name":"Mordownia 9","PlayerID":849101029,"Points":4464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54331","ServerKey":"pl181","X":707,"Y":593},{"Bonus":0,"Continent":"K36","ID":54332,"Name":"XDX","PlayerID":699098531,"Points":5158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54332","ServerKey":"pl181","X":613,"Y":301},{"Bonus":4,"Continent":"K33","ID":54333,"Name":"Zaplecze ludzikĂłw","PlayerID":699796330,"Points":9804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54333","ServerKey":"pl181","X":354,"Y":322},{"Bonus":0,"Continent":"K24","ID":54335,"Name":"#0264 colt9","PlayerID":1238300,"Points":1474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54335","ServerKey":"pl181","X":432,"Y":280},{"Bonus":0,"Continent":"K63","ID":54336,"Name":"O133","PlayerID":272173,"Points":4849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54336","ServerKey":"pl181","X":313,"Y":633},{"Bonus":0,"Continent":"K75","ID":54337,"Name":"Wioska barbarzyƄska","PlayerID":6116940,"Points":2447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54337","ServerKey":"pl181","X":527,"Y":721},{"Bonus":0,"Continent":"K66","ID":54338,"Name":"Wioska barbarzyƄska","PlayerID":6417987,"Points":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54338","ServerKey":"pl181","X":679,"Y":629},{"Bonus":0,"Continent":"K47","ID":54339,"Name":"-001-","PlayerID":7418168,"Points":9823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54339","ServerKey":"pl181","X":729,"Y":491},{"Bonus":0,"Continent":"K33","ID":54340,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":2085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54340","ServerKey":"pl181","X":329,"Y":360},{"Bonus":0,"Continent":"K47","ID":54341,"Name":"082. Wioska barbarzyƄska","PlayerID":7494497,"Points":4083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54341","ServerKey":"pl181","X":730,"Y":472},{"Bonus":0,"Continent":"K33","ID":54342,"Name":"Orgetoryks","PlayerID":848998530,"Points":1976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54342","ServerKey":"pl181","X":327,"Y":358},{"Bonus":2,"Continent":"K37","ID":54343,"Name":"008. Osada koczownikĂłw","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54343","ServerKey":"pl181","X":706,"Y":395},{"Bonus":0,"Continent":"K75","ID":54344,"Name":"C016","PlayerID":698599365,"Points":1505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54344","ServerKey":"pl181","X":545,"Y":718},{"Bonus":0,"Continent":"K66","ID":54345,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":6843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54345","ServerKey":"pl181","X":645,"Y":681},{"Bonus":0,"Continent":"K33","ID":54347,"Name":"No.3","PlayerID":849106612,"Points":1891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54347","ServerKey":"pl181","X":326,"Y":346},{"Bonus":0,"Continent":"K36","ID":54349,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54349","ServerKey":"pl181","X":650,"Y":328},{"Bonus":0,"Continent":"K36","ID":54350,"Name":"Wioska Ozilo","PlayerID":699794720,"Points":5229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54350","ServerKey":"pl181","X":686,"Y":367},{"Bonus":0,"Continent":"K66","ID":54351,"Name":"~~084~~","PlayerID":7829201,"Points":4646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54351","ServerKey":"pl181","X":680,"Y":637},{"Bonus":0,"Continent":"K42","ID":54352,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":6778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54352","ServerKey":"pl181","X":278,"Y":441},{"Bonus":0,"Continent":"K25","ID":54353,"Name":"North 033","PlayerID":849064752,"Points":6913,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54353","ServerKey":"pl181","X":518,"Y":272},{"Bonus":0,"Continent":"K75","ID":54355,"Name":"Kapitol_25","PlayerID":606407,"Points":3892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54355","ServerKey":"pl181","X":505,"Y":729},{"Bonus":0,"Continent":"K63","ID":54356,"Name":"0174","PlayerID":7085510,"Points":2486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54356","ServerKey":"pl181","X":370,"Y":683},{"Bonus":0,"Continent":"K75","ID":54357,"Name":"ZZZ .::. cinek3456/09","PlayerID":33900,"Points":1769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54357","ServerKey":"pl181","X":586,"Y":709},{"Bonus":0,"Continent":"K42","ID":54358,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54358","ServerKey":"pl181","X":283,"Y":453},{"Bonus":0,"Continent":"K66","ID":54360,"Name":"Wioska 9","PlayerID":1647052,"Points":866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54360","ServerKey":"pl181","X":681,"Y":645},{"Bonus":0,"Continent":"K25","ID":54361,"Name":"#005","PlayerID":849064614,"Points":8862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54361","ServerKey":"pl181","X":550,"Y":276},{"Bonus":0,"Continent":"K63","ID":54362,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54362","ServerKey":"pl181","X":353,"Y":668},{"Bonus":0,"Continent":"K33","ID":54363,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":1361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54363","ServerKey":"pl181","X":328,"Y":349},{"Bonus":0,"Continent":"K33","ID":54364,"Name":"Motorola 09","PlayerID":698806018,"Points":3843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54364","ServerKey":"pl181","X":365,"Y":318},{"Bonus":7,"Continent":"K63","ID":54365,"Name":"003 | North","PlayerID":699511295,"Points":8920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54365","ServerKey":"pl181","X":383,"Y":697},{"Bonus":0,"Continent":"K66","ID":54366,"Name":"Wiadro24","PlayerID":8677963,"Points":3409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54366","ServerKey":"pl181","X":680,"Y":642},{"Bonus":0,"Continent":"K42","ID":54367,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54367","ServerKey":"pl181","X":276,"Y":446},{"Bonus":0,"Continent":"K52","ID":54368,"Name":"Wioska barbarzyƄska","PlayerID":1095489,"Points":725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54368","ServerKey":"pl181","X":274,"Y":551},{"Bonus":0,"Continent":"K36","ID":54369,"Name":"Wioska 017","PlayerID":7226782,"Points":4901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54369","ServerKey":"pl181","X":669,"Y":356},{"Bonus":0,"Continent":"K66","ID":54370,"Name":"okk","PlayerID":848928486,"Points":409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54370","ServerKey":"pl181","X":697,"Y":623},{"Bonus":0,"Continent":"K52","ID":54371,"Name":"Zzz 10 Vetiuss","PlayerID":849084740,"Points":5490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54371","ServerKey":"pl181","X":281,"Y":570},{"Bonus":0,"Continent":"K42","ID":54372,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54372","ServerKey":"pl181","X":292,"Y":418},{"Bonus":0,"Continent":"K75","ID":54373,"Name":"Kapitol_22","PlayerID":606407,"Points":4243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54373","ServerKey":"pl181","X":510,"Y":731},{"Bonus":0,"Continent":"K25","ID":54374,"Name":"PPF-02","PlayerID":1424656,"Points":6059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54374","ServerKey":"pl181","X":520,"Y":274},{"Bonus":0,"Continent":"K63","ID":54375,"Name":"O105","PlayerID":272173,"Points":7841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54375","ServerKey":"pl181","X":314,"Y":625},{"Bonus":0,"Continent":"K42","ID":54376,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54376","ServerKey":"pl181","X":281,"Y":441},{"Bonus":0,"Continent":"K74","ID":54377,"Name":"013 - Budowanko!","PlayerID":7540891,"Points":6660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54377","ServerKey":"pl181","X":489,"Y":728},{"Bonus":0,"Continent":"K52","ID":54379,"Name":"C0288","PlayerID":8841266,"Points":4441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54379","ServerKey":"pl181","X":280,"Y":546},{"Bonus":0,"Continent":"K47","ID":54380,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":4877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54380","ServerKey":"pl181","X":716,"Y":419},{"Bonus":0,"Continent":"K42","ID":54381,"Name":"[0237]","PlayerID":8630972,"Points":4856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54381","ServerKey":"pl181","X":271,"Y":499},{"Bonus":0,"Continent":"K36","ID":54383,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":1745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54383","ServerKey":"pl181","X":652,"Y":325},{"Bonus":0,"Continent":"K66","ID":54384,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54384","ServerKey":"pl181","X":629,"Y":688},{"Bonus":6,"Continent":"K52","ID":54385,"Name":"70. Wioska 70","PlayerID":849091769,"Points":6978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54385","ServerKey":"pl181","X":277,"Y":563},{"Bonus":0,"Continent":"K63","ID":54386,"Name":"O095","PlayerID":272173,"Points":7948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54386","ServerKey":"pl181","X":313,"Y":637},{"Bonus":0,"Continent":"K63","ID":54388,"Name":"064 Wioska barbarzyƄska","PlayerID":6354098,"Points":3517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54388","ServerKey":"pl181","X":345,"Y":659},{"Bonus":0,"Continent":"K25","ID":54389,"Name":".achim.","PlayerID":6936607,"Points":4414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54389","ServerKey":"pl181","X":570,"Y":289},{"Bonus":0,"Continent":"K74","ID":54390,"Name":"011 - Budowanko!","PlayerID":7540891,"Points":6950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54390","ServerKey":"pl181","X":489,"Y":726},{"Bonus":0,"Continent":"K52","ID":54391,"Name":"New WorldA","PlayerID":849084005,"Points":1947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54391","ServerKey":"pl181","X":271,"Y":536},{"Bonus":0,"Continent":"K33","ID":54392,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":1440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54392","ServerKey":"pl181","X":376,"Y":306},{"Bonus":0,"Continent":"K63","ID":54393,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":7567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54393","ServerKey":"pl181","X":364,"Y":684},{"Bonus":0,"Continent":"K57","ID":54394,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":5943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54394","ServerKey":"pl181","X":732,"Y":509},{"Bonus":0,"Continent":"K74","ID":54395,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54395","ServerKey":"pl181","X":429,"Y":712},{"Bonus":6,"Continent":"K36","ID":54396,"Name":"Zadupie","PlayerID":699875213,"Points":2905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54396","ServerKey":"pl181","X":680,"Y":358},{"Bonus":0,"Continent":"K57","ID":54398,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":3039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54398","ServerKey":"pl181","X":729,"Y":529},{"Bonus":0,"Continent":"K66","ID":54399,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54399","ServerKey":"pl181","X":684,"Y":625},{"Bonus":0,"Continent":"K74","ID":54400,"Name":"0047","PlayerID":699280514,"Points":1463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54400","ServerKey":"pl181","X":478,"Y":728},{"Bonus":0,"Continent":"K63","ID":54401,"Name":"Wioska Lord Jack Carver","PlayerID":8752714,"Points":5129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54401","ServerKey":"pl181","X":324,"Y":646},{"Bonus":0,"Continent":"K37","ID":54402,"Name":"033. Brauer92","PlayerID":2873154,"Points":10237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54402","ServerKey":"pl181","X":702,"Y":394},{"Bonus":0,"Continent":"K47","ID":54403,"Name":"[807] Odludzie","PlayerID":848985692,"Points":7653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54403","ServerKey":"pl181","X":712,"Y":434},{"Bonus":0,"Continent":"K63","ID":54405,"Name":"$001$ Isengard","PlayerID":699550876,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54405","ServerKey":"pl181","X":305,"Y":624},{"Bonus":0,"Continent":"K74","ID":54406,"Name":"061.","PlayerID":849034882,"Points":9628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54406","ServerKey":"pl181","X":447,"Y":725},{"Bonus":2,"Continent":"K47","ID":54408,"Name":"022 KTW","PlayerID":848883237,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54408","ServerKey":"pl181","X":724,"Y":446},{"Bonus":0,"Continent":"K33","ID":54409,"Name":"Wioska barbarzyƄska","PlayerID":3842862,"Points":571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54409","ServerKey":"pl181","X":388,"Y":300},{"Bonus":0,"Continent":"K25","ID":54410,"Name":"#032","PlayerID":849064614,"Points":2315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54410","ServerKey":"pl181","X":557,"Y":280},{"Bonus":0,"Continent":"K36","ID":54411,"Name":"Wioska barbarzyƄska","PlayerID":699323781,"Points":223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54411","ServerKey":"pl181","X":602,"Y":302},{"Bonus":0,"Continent":"K36","ID":54412,"Name":"#0188 barbarzyƄska","PlayerID":1238300,"Points":5519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54412","ServerKey":"pl181","X":661,"Y":336},{"Bonus":0,"Continent":"K66","ID":54413,"Name":"Wioska Soldier2020","PlayerID":699883836,"Points":9107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54413","ServerKey":"pl181","X":622,"Y":693},{"Bonus":0,"Continent":"K36","ID":54414,"Name":"XDX","PlayerID":699098531,"Points":3914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54414","ServerKey":"pl181","X":608,"Y":305},{"Bonus":0,"Continent":"K63","ID":54415,"Name":"O154","PlayerID":272173,"Points":908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54415","ServerKey":"pl181","X":316,"Y":629},{"Bonus":0,"Continent":"K63","ID":54416,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54416","ServerKey":"pl181","X":319,"Y":630},{"Bonus":0,"Continent":"K33","ID":54417,"Name":"Wioska28","PlayerID":699711926,"Points":2170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54417","ServerKey":"pl181","X":334,"Y":345},{"Bonus":0,"Continent":"K42","ID":54418,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54418","ServerKey":"pl181","X":283,"Y":435},{"Bonus":0,"Continent":"K52","ID":54419,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":1353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54419","ServerKey":"pl181","X":278,"Y":527},{"Bonus":0,"Continent":"K25","ID":54420,"Name":"North 093","PlayerID":849064752,"Points":4442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54420","ServerKey":"pl181","X":596,"Y":292},{"Bonus":0,"Continent":"K47","ID":54422,"Name":"076. Acci","PlayerID":849091866,"Points":4335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54422","ServerKey":"pl181","X":723,"Y":460},{"Bonus":0,"Continent":"K52","ID":54423,"Name":"005","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54423","ServerKey":"pl181","X":295,"Y":593},{"Bonus":0,"Continent":"K74","ID":54424,"Name":"044Bagno","PlayerID":698620694,"Points":7233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54424","ServerKey":"pl181","X":468,"Y":723},{"Bonus":0,"Continent":"K63","ID":54425,"Name":"Z01","PlayerID":698652014,"Points":1751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54425","ServerKey":"pl181","X":374,"Y":695},{"Bonus":0,"Continent":"K75","ID":54426,"Name":"-27-","PlayerID":849032414,"Points":3383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54426","ServerKey":"pl181","X":584,"Y":710},{"Bonus":0,"Continent":"K42","ID":54427,"Name":"021","PlayerID":6131106,"Points":2463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54427","ServerKey":"pl181","X":290,"Y":424},{"Bonus":0,"Continent":"K75","ID":54428,"Name":"030Boli gƂowa","PlayerID":698620694,"Points":2812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54428","ServerKey":"pl181","X":501,"Y":715},{"Bonus":0,"Continent":"K36","ID":54429,"Name":"0106","PlayerID":698416970,"Points":2628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54429","ServerKey":"pl181","X":691,"Y":379},{"Bonus":0,"Continent":"K33","ID":54430,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54430","ServerKey":"pl181","X":353,"Y":329},{"Bonus":0,"Continent":"K76","ID":54431,"Name":"Szarowki","PlayerID":848912937,"Points":5080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54431","ServerKey":"pl181","X":601,"Y":709},{"Bonus":0,"Continent":"K63","ID":54432,"Name":"Psycha Siada","PlayerID":8099868,"Points":5054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54432","ServerKey":"pl181","X":324,"Y":648},{"Bonus":0,"Continent":"K75","ID":54434,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54434","ServerKey":"pl181","X":553,"Y":716},{"Bonus":0,"Continent":"K57","ID":54435,"Name":"=111= Wioska barbarzyƄska","PlayerID":3781794,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54435","ServerKey":"pl181","X":709,"Y":578},{"Bonus":0,"Continent":"K52","ID":54436,"Name":"71. Wioska 71","PlayerID":849091769,"Points":2889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54436","ServerKey":"pl181","X":277,"Y":564},{"Bonus":0,"Continent":"K25","ID":54437,"Name":"PPF-40","PlayerID":1424656,"Points":822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54437","ServerKey":"pl181","X":537,"Y":275},{"Bonus":0,"Continent":"K63","ID":54439,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":7304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54439","ServerKey":"pl181","X":357,"Y":674},{"Bonus":0,"Continent":"K47","ID":54440,"Name":"Spoko, nie szkodzi","PlayerID":699785935,"Points":2591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54440","ServerKey":"pl181","X":711,"Y":407},{"Bonus":0,"Continent":"K75","ID":54441,"Name":"MERHEt","PlayerID":698215322,"Points":3610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54441","ServerKey":"pl181","X":588,"Y":705},{"Bonus":0,"Continent":"K63","ID":54442,"Name":"012 | North","PlayerID":699511295,"Points":5154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54442","ServerKey":"pl181","X":375,"Y":686},{"Bonus":0,"Continent":"K25","ID":54443,"Name":"#002","PlayerID":849064614,"Points":9325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54443","ServerKey":"pl181","X":553,"Y":279},{"Bonus":0,"Continent":"K75","ID":54444,"Name":"Wioska barbarzyƄska","PlayerID":699712422,"Points":791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54444","ServerKey":"pl181","X":561,"Y":715},{"Bonus":0,"Continent":"K63","ID":54445,"Name":"071 Wioska barbarzyƄska","PlayerID":6354098,"Points":2419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54445","ServerKey":"pl181","X":340,"Y":665},{"Bonus":0,"Continent":"K36","ID":54446,"Name":"Wioska 003","PlayerID":7226782,"Points":6141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54446","ServerKey":"pl181","X":670,"Y":347},{"Bonus":0,"Continent":"K42","ID":54447,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54447","ServerKey":"pl181","X":287,"Y":413},{"Bonus":0,"Continent":"K66","ID":54448,"Name":"016 Twierdza","PlayerID":849104328,"Points":7280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54448","ServerKey":"pl181","X":633,"Y":677},{"Bonus":0,"Continent":"K36","ID":54449,"Name":"Wioska 004","PlayerID":7226782,"Points":3504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54449","ServerKey":"pl181","X":673,"Y":353},{"Bonus":8,"Continent":"K36","ID":54450,"Name":"t010","PlayerID":2262902,"Points":7373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54450","ServerKey":"pl181","X":671,"Y":348},{"Bonus":0,"Continent":"K63","ID":54451,"Name":"002 wolnoƛć","PlayerID":6910361,"Points":844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54451","ServerKey":"pl181","X":335,"Y":659},{"Bonus":0,"Continent":"K63","ID":54452,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":6966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54452","ServerKey":"pl181","X":364,"Y":679},{"Bonus":0,"Continent":"K66","ID":54453,"Name":"###154###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54453","ServerKey":"pl181","X":610,"Y":694},{"Bonus":0,"Continent":"K57","ID":54454,"Name":"CastAway #018","PlayerID":9314079,"Points":3585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54454","ServerKey":"pl181","X":710,"Y":585},{"Bonus":0,"Continent":"K66","ID":54455,"Name":"Wiadro20","PlayerID":8677963,"Points":1321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54455","ServerKey":"pl181","X":686,"Y":636},{"Bonus":0,"Continent":"K47","ID":54456,"Name":"C.057","PlayerID":9188016,"Points":1494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54456","ServerKey":"pl181","X":723,"Y":481},{"Bonus":0,"Continent":"K25","ID":54457,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54457","ServerKey":"pl181","X":507,"Y":272},{"Bonus":0,"Continent":"K24","ID":54459,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":1868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54459","ServerKey":"pl181","X":450,"Y":276},{"Bonus":4,"Continent":"K33","ID":54460,"Name":"003","PlayerID":849109795,"Points":5980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54460","ServerKey":"pl181","X":306,"Y":374},{"Bonus":0,"Continent":"K57","ID":54461,"Name":"33. Vicovaro","PlayerID":8976313,"Points":6005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54461","ServerKey":"pl181","X":724,"Y":527},{"Bonus":0,"Continent":"K47","ID":54462,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54462","ServerKey":"pl181","X":722,"Y":475},{"Bonus":0,"Continent":"K47","ID":54463,"Name":"039 Ever Grande City","PlayerID":699441366,"Points":4899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54463","ServerKey":"pl181","X":730,"Y":483},{"Bonus":0,"Continent":"K36","ID":54464,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":7139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54464","ServerKey":"pl181","X":658,"Y":334},{"Bonus":0,"Continent":"K57","ID":54465,"Name":"Wioska17","PlayerID":699266530,"Points":4492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54465","ServerKey":"pl181","X":704,"Y":579},{"Bonus":3,"Continent":"K24","ID":54466,"Name":"Osada koczownikĂłw","PlayerID":699393759,"Points":3867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54466","ServerKey":"pl181","X":459,"Y":281},{"Bonus":0,"Continent":"K47","ID":54467,"Name":"C.053","PlayerID":9188016,"Points":4491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54467","ServerKey":"pl181","X":720,"Y":477},{"Bonus":0,"Continent":"K33","ID":54468,"Name":"011. Calzone","PlayerID":849102092,"Points":8450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54468","ServerKey":"pl181","X":316,"Y":371},{"Bonus":0,"Continent":"K46","ID":54469,"Name":"110 Takahashi","PlayerID":7092442,"Points":3362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54469","ServerKey":"pl181","X":636,"Y":471},{"Bonus":0,"Continent":"K42","ID":54470,"Name":"szymek2","PlayerID":1323424,"Points":3951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54470","ServerKey":"pl181","X":280,"Y":426},{"Bonus":0,"Continent":"K24","ID":54471,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":3160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54471","ServerKey":"pl181","X":458,"Y":275},{"Bonus":0,"Continent":"K47","ID":54472,"Name":"2 lozi20","PlayerID":849095599,"Points":2193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54472","ServerKey":"pl181","X":726,"Y":456},{"Bonus":0,"Continent":"K47","ID":54473,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":3888,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54473","ServerKey":"pl181","X":712,"Y":427},{"Bonus":0,"Continent":"K25","ID":54474,"Name":"#010","PlayerID":849064614,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54474","ServerKey":"pl181","X":548,"Y":273},{"Bonus":0,"Continent":"K33","ID":54475,"Name":"Zaplecze Barba 037","PlayerID":699796330,"Points":4851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54475","ServerKey":"pl181","X":356,"Y":331},{"Bonus":0,"Continent":"K75","ID":54477,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54477","ServerKey":"pl181","X":550,"Y":718},{"Bonus":0,"Continent":"K42","ID":54478,"Name":"Avanti!","PlayerID":698625834,"Points":3739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54478","ServerKey":"pl181","X":273,"Y":476},{"Bonus":0,"Continent":"K32","ID":54479,"Name":"moria","PlayerID":698677650,"Points":4234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54479","ServerKey":"pl181","X":295,"Y":391},{"Bonus":0,"Continent":"K52","ID":54480,"Name":"New WorldA","PlayerID":849084005,"Points":1238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54480","ServerKey":"pl181","X":279,"Y":518},{"Bonus":0,"Continent":"K24","ID":54481,"Name":"#0261 cƂopciec","PlayerID":1238300,"Points":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54481","ServerKey":"pl181","X":478,"Y":278},{"Bonus":0,"Continent":"K74","ID":54482,"Name":"045Cacuƛ-Lion","PlayerID":698620694,"Points":4672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54482","ServerKey":"pl181","X":471,"Y":728},{"Bonus":0,"Continent":"K25","ID":54483,"Name":"#022","PlayerID":849064614,"Points":2597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54483","ServerKey":"pl181","X":544,"Y":274},{"Bonus":0,"Continent":"K25","ID":54484,"Name":"181","PlayerID":849107799,"Points":992,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54484","ServerKey":"pl181","X":518,"Y":279},{"Bonus":0,"Continent":"K25","ID":54485,"Name":"North K25","PlayerID":699146580,"Points":5787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54485","ServerKey":"pl181","X":535,"Y":272},{"Bonus":0,"Continent":"K57","ID":54486,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54486","ServerKey":"pl181","X":726,"Y":544},{"Bonus":0,"Continent":"K63","ID":54487,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54487","ServerKey":"pl181","X":371,"Y":691},{"Bonus":6,"Continent":"K63","ID":54488,"Name":"124","PlayerID":849099876,"Points":8432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54488","ServerKey":"pl181","X":386,"Y":695},{"Bonus":0,"Continent":"K36","ID":54490,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54490","ServerKey":"pl181","X":630,"Y":316},{"Bonus":0,"Continent":"K62","ID":54491,"Name":"Wioska barbarzyƄska","PlayerID":699604515,"Points":292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54491","ServerKey":"pl181","X":297,"Y":607},{"Bonus":0,"Continent":"K24","ID":54492,"Name":"086 Wioska barbarzyƄska","PlayerID":699854484,"Points":10028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54492","ServerKey":"pl181","X":475,"Y":280},{"Bonus":3,"Continent":"K52","ID":54493,"Name":"Wioska 2","PlayerID":849114265,"Points":3704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54493","ServerKey":"pl181","X":270,"Y":511},{"Bonus":0,"Continent":"K25","ID":54494,"Name":"Wioska GoƂabek","PlayerID":849070736,"Points":5870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54494","ServerKey":"pl181","X":595,"Y":298},{"Bonus":0,"Continent":"K23","ID":54495,"Name":"129.Stradi","PlayerID":698365960,"Points":2821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54495","ServerKey":"pl181","X":398,"Y":296},{"Bonus":0,"Continent":"K75","ID":54496,"Name":"-28-","PlayerID":849032414,"Points":8400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54496","ServerKey":"pl181","X":577,"Y":709},{"Bonus":0,"Continent":"K33","ID":54497,"Name":"Wioska27","PlayerID":699711926,"Points":4772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54497","ServerKey":"pl181","X":331,"Y":343},{"Bonus":0,"Continent":"K63","ID":54498,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54498","ServerKey":"pl181","X":386,"Y":694},{"Bonus":0,"Continent":"K25","ID":54499,"Name":".achim.","PlayerID":6936607,"Points":5150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54499","ServerKey":"pl181","X":571,"Y":286},{"Bonus":0,"Continent":"K36","ID":54500,"Name":"XDX","PlayerID":699098531,"Points":4926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54500","ServerKey":"pl181","X":614,"Y":306},{"Bonus":0,"Continent":"K66","ID":54501,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54501","ServerKey":"pl181","X":689,"Y":629},{"Bonus":0,"Continent":"K57","ID":54502,"Name":"Wioska","PlayerID":3692413,"Points":576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54502","ServerKey":"pl181","X":706,"Y":587},{"Bonus":0,"Continent":"K47","ID":54503,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":4357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54503","ServerKey":"pl181","X":709,"Y":419},{"Bonus":0,"Continent":"K37","ID":54504,"Name":"029. Brauer92","PlayerID":2873154,"Points":7467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54504","ServerKey":"pl181","X":700,"Y":395},{"Bonus":0,"Continent":"K47","ID":54505,"Name":"038 Pacifidlog Town","PlayerID":699441366,"Points":3779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54505","ServerKey":"pl181","X":728,"Y":483},{"Bonus":0,"Continent":"K47","ID":54506,"Name":"Ghostmane3","PlayerID":848896434,"Points":2476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54506","ServerKey":"pl181","X":717,"Y":449},{"Bonus":0,"Continent":"K74","ID":54507,"Name":"New World","PlayerID":698152377,"Points":10094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54507","ServerKey":"pl181","X":413,"Y":711},{"Bonus":0,"Continent":"K36","ID":54508,"Name":"014","PlayerID":699117992,"Points":1152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54508","ServerKey":"pl181","X":606,"Y":301},{"Bonus":0,"Continent":"K25","ID":54509,"Name":"#015","PlayerID":849064614,"Points":5149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54509","ServerKey":"pl181","X":555,"Y":276},{"Bonus":0,"Continent":"K66","ID":54510,"Name":"055","PlayerID":2323859,"Points":926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54510","ServerKey":"pl181","X":666,"Y":649},{"Bonus":0,"Continent":"K66","ID":54511,"Name":"058.","PlayerID":699373599,"Points":1981,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54511","ServerKey":"pl181","X":640,"Y":673},{"Bonus":3,"Continent":"K52","ID":54512,"Name":"...::181 06::...","PlayerID":699641777,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54512","ServerKey":"pl181","X":274,"Y":516},{"Bonus":0,"Continent":"K66","ID":54513,"Name":"Wioska barbarzyƄska","PlayerID":6160655,"Points":865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54513","ServerKey":"pl181","X":692,"Y":612},{"Bonus":0,"Continent":"K25","ID":54514,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54514","ServerKey":"pl181","X":504,"Y":272},{"Bonus":0,"Continent":"K47","ID":54515,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54515","ServerKey":"pl181","X":724,"Y":493},{"Bonus":0,"Continent":"K66","ID":54516,"Name":"064","PlayerID":699099811,"Points":288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54516","ServerKey":"pl181","X":695,"Y":623},{"Bonus":0,"Continent":"K24","ID":54517,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54517","ServerKey":"pl181","X":497,"Y":270},{"Bonus":8,"Continent":"K36","ID":54518,"Name":"006","PlayerID":699117992,"Points":9146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54518","ServerKey":"pl181","X":609,"Y":303},{"Bonus":0,"Continent":"K57","ID":54519,"Name":"094","PlayerID":7085502,"Points":3387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54519","ServerKey":"pl181","X":724,"Y":508},{"Bonus":0,"Continent":"K42","ID":54520,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54520","ServerKey":"pl181","X":281,"Y":428},{"Bonus":0,"Continent":"K36","ID":54521,"Name":"Xardas","PlayerID":848974611,"Points":5712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54521","ServerKey":"pl181","X":625,"Y":317},{"Bonus":0,"Continent":"K63","ID":54522,"Name":"002 | North","PlayerID":699511295,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54522","ServerKey":"pl181","X":382,"Y":695},{"Bonus":0,"Continent":"K36","ID":54523,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54523","ServerKey":"pl181","X":628,"Y":317},{"Bonus":0,"Continent":"K63","ID":54524,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54524","ServerKey":"pl181","X":396,"Y":697},{"Bonus":0,"Continent":"K73","ID":54525,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54525","ServerKey":"pl181","X":394,"Y":706},{"Bonus":0,"Continent":"K24","ID":54526,"Name":"060KP","PlayerID":849063849,"Points":2675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54526","ServerKey":"pl181","X":484,"Y":273},{"Bonus":0,"Continent":"K57","ID":54527,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":8666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54527","ServerKey":"pl181","X":724,"Y":555},{"Bonus":0,"Continent":"K52","ID":54528,"Name":"Soƛnica 3","PlayerID":848892804,"Points":623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54528","ServerKey":"pl181","X":286,"Y":578},{"Bonus":0,"Continent":"K42","ID":54529,"Name":"Wioska Lisu79","PlayerID":699812351,"Points":4114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54529","ServerKey":"pl181","X":279,"Y":464},{"Bonus":0,"Continent":"K25","ID":54530,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54530","ServerKey":"pl181","X":598,"Y":297},{"Bonus":0,"Continent":"K33","ID":54531,"Name":"Wioska21","PlayerID":699711926,"Points":4406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54531","ServerKey":"pl181","X":331,"Y":346},{"Bonus":0,"Continent":"K24","ID":54532,"Name":"063KP","PlayerID":849063849,"Points":2296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54532","ServerKey":"pl181","X":480,"Y":271},{"Bonus":0,"Continent":"K36","ID":54533,"Name":"Wioska 001","PlayerID":7226782,"Points":9693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54533","ServerKey":"pl181","X":670,"Y":348},{"Bonus":0,"Continent":"K75","ID":54534,"Name":"wy...m","PlayerID":699828685,"Points":3860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54534","ServerKey":"pl181","X":599,"Y":700},{"Bonus":0,"Continent":"K66","ID":54535,"Name":"0018","PlayerID":6417987,"Points":1585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54535","ServerKey":"pl181","X":681,"Y":632},{"Bonus":0,"Continent":"K63","ID":54536,"Name":"Wioska Pracz 7","PlayerID":8916982,"Points":6714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54536","ServerKey":"pl181","X":308,"Y":622},{"Bonus":0,"Continent":"K75","ID":54537,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":5735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54537","ServerKey":"pl181","X":564,"Y":716},{"Bonus":0,"Continent":"K63","ID":54538,"Name":"Psycha Siada","PlayerID":8099868,"Points":6927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54538","ServerKey":"pl181","X":323,"Y":647},{"Bonus":0,"Continent":"K62","ID":54539,"Name":"019","PlayerID":699356968,"Points":6527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54539","ServerKey":"pl181","X":294,"Y":606},{"Bonus":0,"Continent":"K52","ID":54541,"Name":"BB2","PlayerID":849110365,"Points":1717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54541","ServerKey":"pl181","X":269,"Y":516},{"Bonus":0,"Continent":"K63","ID":54542,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":6429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54542","ServerKey":"pl181","X":358,"Y":671},{"Bonus":0,"Continent":"K25","ID":54543,"Name":"North 034","PlayerID":849064752,"Points":6172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54543","ServerKey":"pl181","X":515,"Y":269},{"Bonus":0,"Continent":"K66","ID":54544,"Name":"KƂodzko","PlayerID":848932879,"Points":2253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54544","ServerKey":"pl181","X":674,"Y":637},{"Bonus":0,"Continent":"K36","ID":54545,"Name":"WOLA0005","PlayerID":6956104,"Points":3624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54545","ServerKey":"pl181","X":675,"Y":360},{"Bonus":0,"Continent":"K25","ID":54546,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54546","ServerKey":"pl181","X":505,"Y":275},{"Bonus":0,"Continent":"K33","ID":54548,"Name":"016","PlayerID":849101205,"Points":1370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54548","ServerKey":"pl181","X":339,"Y":343},{"Bonus":0,"Continent":"K57","ID":54550,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54550","ServerKey":"pl181","X":730,"Y":522},{"Bonus":0,"Continent":"K66","ID":54551,"Name":"Wioska mily546","PlayerID":747422,"Points":818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54551","ServerKey":"pl181","X":646,"Y":675},{"Bonus":0,"Continent":"K66","ID":54552,"Name":"Kartagina","PlayerID":7550472,"Points":9711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54552","ServerKey":"pl181","X":691,"Y":620},{"Bonus":0,"Continent":"K75","ID":54553,"Name":"#205 C","PlayerID":9037756,"Points":4718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54553","ServerKey":"pl181","X":509,"Y":732},{"Bonus":0,"Continent":"K52","ID":54554,"Name":"033. Gloria Victis","PlayerID":848886973,"Points":4532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54554","ServerKey":"pl181","X":281,"Y":572},{"Bonus":0,"Continent":"K67","ID":54555,"Name":"Wioska Waldemark","PlayerID":6921135,"Points":4553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54555","ServerKey":"pl181","X":703,"Y":611},{"Bonus":0,"Continent":"K57","ID":54557,"Name":"Nowa 61","PlayerID":698702991,"Points":3634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54557","ServerKey":"pl181","X":723,"Y":564},{"Bonus":1,"Continent":"K42","ID":54558,"Name":"008","PlayerID":698652171,"Points":3220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54558","ServerKey":"pl181","X":273,"Y":450},{"Bonus":0,"Continent":"K63","ID":54559,"Name":"Wioska Boginysa","PlayerID":2324569,"Points":3265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54559","ServerKey":"pl181","X":312,"Y":625},{"Bonus":0,"Continent":"K36","ID":54560,"Name":"t014","PlayerID":2262902,"Points":7340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54560","ServerKey":"pl181","X":668,"Y":351},{"Bonus":0,"Continent":"K33","ID":54561,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54561","ServerKey":"pl181","X":319,"Y":370},{"Bonus":0,"Continent":"K66","ID":54562,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54562","ServerKey":"pl181","X":681,"Y":637},{"Bonus":0,"Continent":"K66","ID":54563,"Name":"Sony 911","PlayerID":1415009,"Points":6286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54563","ServerKey":"pl181","X":672,"Y":655},{"Bonus":0,"Continent":"K63","ID":54564,"Name":"O149","PlayerID":272173,"Points":2454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54564","ServerKey":"pl181","X":314,"Y":630},{"Bonus":0,"Continent":"K74","ID":54565,"Name":"Kurnik","PlayerID":699603116,"Points":7628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54565","ServerKey":"pl181","X":447,"Y":719},{"Bonus":0,"Continent":"K63","ID":54567,"Name":"W00","PlayerID":698908184,"Points":5693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54567","ServerKey":"pl181","X":323,"Y":636},{"Bonus":0,"Continent":"K52","ID":54568,"Name":"007 Wioska F","PlayerID":6240801,"Points":2974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54568","ServerKey":"pl181","X":285,"Y":570},{"Bonus":0,"Continent":"K42","ID":54569,"Name":"Avanti!","PlayerID":698625834,"Points":2416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54569","ServerKey":"pl181","X":275,"Y":468},{"Bonus":0,"Continent":"K66","ID":54570,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54570","ServerKey":"pl181","X":638,"Y":680},{"Bonus":0,"Continent":"K57","ID":54571,"Name":"Wioska wilka 05","PlayerID":6786449,"Points":8067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54571","ServerKey":"pl181","X":719,"Y":563},{"Bonus":0,"Continent":"K33","ID":54572,"Name":"Wioska32","PlayerID":699711926,"Points":1547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54572","ServerKey":"pl181","X":336,"Y":349},{"Bonus":0,"Continent":"K24","ID":54573,"Name":"Wioska a","PlayerID":6343784,"Points":6849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54573","ServerKey":"pl181","X":426,"Y":283},{"Bonus":0,"Continent":"K25","ID":54574,"Name":"North 109","PlayerID":849064752,"Points":1401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54574","ServerKey":"pl181","X":509,"Y":271},{"Bonus":0,"Continent":"K74","ID":54576,"Name":"Kapitol_15","PlayerID":606407,"Points":4586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54576","ServerKey":"pl181","X":498,"Y":731},{"Bonus":0,"Continent":"K74","ID":54577,"Name":"R 050","PlayerID":699195358,"Points":2391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54577","ServerKey":"pl181","X":497,"Y":732},{"Bonus":0,"Continent":"K57","ID":54578,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54578","ServerKey":"pl181","X":729,"Y":541},{"Bonus":0,"Continent":"K42","ID":54579,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54579","ServerKey":"pl181","X":286,"Y":440},{"Bonus":0,"Continent":"K75","ID":54580,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":4550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54580","ServerKey":"pl181","X":553,"Y":726},{"Bonus":0,"Continent":"K66","ID":54581,"Name":"4-Wioska -OB","PlayerID":1205898,"Points":1461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54581","ServerKey":"pl181","X":692,"Y":611},{"Bonus":7,"Continent":"K47","ID":54582,"Name":"038 KTW","PlayerID":848883237,"Points":1989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54582","ServerKey":"pl181","X":723,"Y":453},{"Bonus":0,"Continent":"K47","ID":54583,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":2609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54583","ServerKey":"pl181","X":725,"Y":464},{"Bonus":0,"Continent":"K74","ID":54584,"Name":"0017 Domek Miniuka 01","PlayerID":699656989,"Points":8543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54584","ServerKey":"pl181","X":479,"Y":727},{"Bonus":0,"Continent":"K25","ID":54585,"Name":"B004","PlayerID":699485250,"Points":7685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54585","ServerKey":"pl181","X":520,"Y":278},{"Bonus":0,"Continent":"K47","ID":54586,"Name":"A#048","PlayerID":2065730,"Points":6882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54586","ServerKey":"pl181","X":706,"Y":406},{"Bonus":0,"Continent":"K36","ID":54587,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54587","ServerKey":"pl181","X":643,"Y":324},{"Bonus":0,"Continent":"K63","ID":54588,"Name":"TRENER","PlayerID":849097837,"Points":773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54588","ServerKey":"pl181","X":373,"Y":682},{"Bonus":0,"Continent":"K76","ID":54589,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":3361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54589","ServerKey":"pl181","X":603,"Y":707},{"Bonus":0,"Continent":"K25","ID":54590,"Name":".achim.","PlayerID":6936607,"Points":2496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54590","ServerKey":"pl181","X":578,"Y":289},{"Bonus":0,"Continent":"K24","ID":54591,"Name":"113.Stradi","PlayerID":698365960,"Points":7401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54591","ServerKey":"pl181","X":424,"Y":282},{"Bonus":0,"Continent":"K66","ID":54592,"Name":"065","PlayerID":699099811,"Points":3080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54592","ServerKey":"pl181","X":692,"Y":623},{"Bonus":0,"Continent":"K63","ID":54593,"Name":"$003$ XMAS","PlayerID":699550876,"Points":9428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54593","ServerKey":"pl181","X":305,"Y":626},{"Bonus":0,"Continent":"K63","ID":54594,"Name":"021","PlayerID":699356968,"Points":1671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54594","ServerKey":"pl181","X":302,"Y":612},{"Bonus":0,"Continent":"K25","ID":54595,"Name":"--041--","PlayerID":542253,"Points":2914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54595","ServerKey":"pl181","X":575,"Y":291},{"Bonus":0,"Continent":"K66","ID":54596,"Name":"053","PlayerID":2323859,"Points":2001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54596","ServerKey":"pl181","X":655,"Y":666},{"Bonus":0,"Continent":"K63","ID":54598,"Name":"Wioska Pracz 2","PlayerID":8916982,"Points":7241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54598","ServerKey":"pl181","X":309,"Y":625},{"Bonus":0,"Continent":"K25","ID":54599,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":1353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54599","ServerKey":"pl181","X":593,"Y":297},{"Bonus":0,"Continent":"K52","ID":54600,"Name":"A co Gazet nie czytasz ?","PlayerID":849105417,"Points":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54600","ServerKey":"pl181","X":271,"Y":510},{"Bonus":0,"Continent":"K66","ID":54601,"Name":"Wioska barbarzyƄska","PlayerID":849092827,"Points":471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54601","ServerKey":"pl181","X":691,"Y":627},{"Bonus":0,"Continent":"K25","ID":54602,"Name":"#041","PlayerID":849064614,"Points":1411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54602","ServerKey":"pl181","X":557,"Y":284},{"Bonus":0,"Continent":"K26","ID":54603,"Name":"Flap","PlayerID":699098531,"Points":6228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54603","ServerKey":"pl181","X":615,"Y":298},{"Bonus":0,"Continent":"K43","ID":54604,"Name":"Tomek II","PlayerID":699265922,"Points":8346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54604","ServerKey":"pl181","X":384,"Y":490},{"Bonus":0,"Continent":"K33","ID":54605,"Name":"Wioska22","PlayerID":699711926,"Points":4824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54605","ServerKey":"pl181","X":330,"Y":347},{"Bonus":0,"Continent":"K73","ID":54606,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54606","ServerKey":"pl181","X":385,"Y":702},{"Bonus":0,"Continent":"K36","ID":54607,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54607","ServerKey":"pl181","X":642,"Y":328},{"Bonus":0,"Continent":"K66","ID":54608,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":4967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54608","ServerKey":"pl181","X":665,"Y":649},{"Bonus":0,"Continent":"K52","ID":54609,"Name":"CZARNA PERƁA","PlayerID":848930898,"Points":8047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54609","ServerKey":"pl181","X":279,"Y":544},{"Bonus":0,"Continent":"K73","ID":54610,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54610","ServerKey":"pl181","X":397,"Y":704},{"Bonus":0,"Continent":"K36","ID":54611,"Name":"Wioska 027","PlayerID":7226782,"Points":893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54611","ServerKey":"pl181","X":672,"Y":354},{"Bonus":0,"Continent":"K74","ID":54612,"Name":"New World","PlayerID":698152377,"Points":7562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54612","ServerKey":"pl181","X":432,"Y":712},{"Bonus":0,"Continent":"K62","ID":54613,"Name":"ATYPOWY","PlayerID":699774694,"Points":3625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54613","ServerKey":"pl181","X":292,"Y":602},{"Bonus":0,"Continent":"K25","ID":54614,"Name":"B014","PlayerID":699485250,"Points":5081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54614","ServerKey":"pl181","X":530,"Y":270},{"Bonus":0,"Continent":"K63","ID":54615,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54615","ServerKey":"pl181","X":302,"Y":602},{"Bonus":0,"Continent":"K75","ID":54616,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":1220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54616","ServerKey":"pl181","X":531,"Y":727},{"Bonus":0,"Continent":"K52","ID":54617,"Name":"Wioska MGryglak95","PlayerID":849108971,"Points":2998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54617","ServerKey":"pl181","X":291,"Y":599},{"Bonus":0,"Continent":"K73","ID":54618,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54618","ServerKey":"pl181","X":394,"Y":705},{"Bonus":0,"Continent":"K42","ID":54619,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54619","ServerKey":"pl181","X":294,"Y":416},{"Bonus":0,"Continent":"K25","ID":54620,"Name":"North 035","PlayerID":849064752,"Points":7010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54620","ServerKey":"pl181","X":511,"Y":268},{"Bonus":0,"Continent":"K36","ID":54621,"Name":"XDX","PlayerID":699098531,"Points":3556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54621","ServerKey":"pl181","X":617,"Y":305},{"Bonus":0,"Continent":"K24","ID":54622,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54622","ServerKey":"pl181","X":407,"Y":290},{"Bonus":0,"Continent":"K74","ID":54624,"Name":"Kurnik","PlayerID":699603116,"Points":8865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54624","ServerKey":"pl181","X":451,"Y":719},{"Bonus":0,"Continent":"K36","ID":54625,"Name":"04 Tabaluga1922","PlayerID":6517826,"Points":1921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54625","ServerKey":"pl181","X":636,"Y":322},{"Bonus":0,"Continent":"K63","ID":54626,"Name":"Wioska 0026","PlayerID":9186126,"Points":882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54626","ServerKey":"pl181","X":341,"Y":659},{"Bonus":0,"Continent":"K75","ID":54627,"Name":"Wioska M2","PlayerID":849085293,"Points":230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54627","ServerKey":"pl181","X":549,"Y":718},{"Bonus":0,"Continent":"K36","ID":54628,"Name":"U-09","PlayerID":3600737,"Points":2363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54628","ServerKey":"pl181","X":653,"Y":323},{"Bonus":0,"Continent":"K26","ID":54629,"Name":"North 094","PlayerID":849064752,"Points":4564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54629","ServerKey":"pl181","X":600,"Y":294},{"Bonus":0,"Continent":"K74","ID":54630,"Name":"|D| Wolffall","PlayerID":698147372,"Points":3809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54630","ServerKey":"pl181","X":456,"Y":720},{"Bonus":0,"Continent":"K75","ID":54631,"Name":"#0058","PlayerID":1536231,"Points":4108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54631","ServerKey":"pl181","X":578,"Y":711},{"Bonus":0,"Continent":"K36","ID":54632,"Name":"XDX","PlayerID":699098531,"Points":3688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54632","ServerKey":"pl181","X":606,"Y":302},{"Bonus":9,"Continent":"K63","ID":54633,"Name":"050 Osada koczownikĂłw","PlayerID":6354098,"Points":6334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54633","ServerKey":"pl181","X":345,"Y":662},{"Bonus":0,"Continent":"K36","ID":54634,"Name":"Wioska 014","PlayerID":7226782,"Points":1874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54634","ServerKey":"pl181","X":673,"Y":346},{"Bonus":0,"Continent":"K47","ID":54635,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54635","ServerKey":"pl181","X":729,"Y":490},{"Bonus":0,"Continent":"K52","ID":54636,"Name":"004","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54636","ServerKey":"pl181","X":292,"Y":590},{"Bonus":0,"Continent":"K24","ID":54637,"Name":"005","PlayerID":9283775,"Points":2836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54637","ServerKey":"pl181","X":404,"Y":297},{"Bonus":0,"Continent":"K24","ID":54638,"Name":"Pcim GĂłrny","PlayerID":849100083,"Points":3460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54638","ServerKey":"pl181","X":466,"Y":277},{"Bonus":0,"Continent":"K74","ID":54639,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54639","ServerKey":"pl181","X":433,"Y":719},{"Bonus":0,"Continent":"K47","ID":54640,"Name":"Wioska barbarzyƄska 002","PlayerID":7588382,"Points":3715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54640","ServerKey":"pl181","X":718,"Y":434},{"Bonus":0,"Continent":"K66","ID":54641,"Name":"komandos","PlayerID":7976264,"Points":4144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54641","ServerKey":"pl181","X":667,"Y":652},{"Bonus":0,"Continent":"K66","ID":54642,"Name":"nowa 3","PlayerID":699372829,"Points":812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54642","ServerKey":"pl181","X":626,"Y":687},{"Bonus":0,"Continent":"K33","ID":54643,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":4957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54643","ServerKey":"pl181","X":364,"Y":318},{"Bonus":0,"Continent":"K42","ID":54644,"Name":"K42 ADAMUS 013","PlayerID":6212605,"Points":5785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54644","ServerKey":"pl181","X":280,"Y":429},{"Bonus":0,"Continent":"K25","ID":54645,"Name":"PPF-29","PlayerID":1424656,"Points":1517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54645","ServerKey":"pl181","X":568,"Y":279},{"Bonus":0,"Continent":"K42","ID":54646,"Name":"Avanti!","PlayerID":698625834,"Points":2417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54646","ServerKey":"pl181","X":273,"Y":468},{"Bonus":0,"Continent":"K24","ID":54647,"Name":"MORO1","PlayerID":848952566,"Points":4319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54647","ServerKey":"pl181","X":463,"Y":276},{"Bonus":0,"Continent":"K63","ID":54648,"Name":"Wioska maciusw","PlayerID":699747504,"Points":154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54648","ServerKey":"pl181","X":395,"Y":696},{"Bonus":0,"Continent":"K63","ID":54649,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54649","ServerKey":"pl181","X":301,"Y":612},{"Bonus":0,"Continent":"K33","ID":54650,"Name":"Wioska henior123","PlayerID":698160606,"Points":624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54650","ServerKey":"pl181","X":380,"Y":309},{"Bonus":0,"Continent":"K24","ID":54651,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54651","ServerKey":"pl181","X":488,"Y":273},{"Bonus":5,"Continent":"K67","ID":54652,"Name":"zzosa","PlayerID":3986807,"Points":1300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54652","ServerKey":"pl181","X":704,"Y":603},{"Bonus":0,"Continent":"K74","ID":54653,"Name":"New World","PlayerID":698152377,"Points":2210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54653","ServerKey":"pl181","X":437,"Y":720},{"Bonus":0,"Continent":"K26","ID":54654,"Name":"XDX","PlayerID":699098531,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54654","ServerKey":"pl181","X":611,"Y":297},{"Bonus":4,"Continent":"K36","ID":54655,"Name":"008","PlayerID":9148043,"Points":6984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54655","ServerKey":"pl181","X":682,"Y":359},{"Bonus":0,"Continent":"K25","ID":54656,"Name":"North 036","PlayerID":849064752,"Points":6842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54656","ServerKey":"pl181","X":509,"Y":270},{"Bonus":0,"Continent":"K24","ID":54657,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":5221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54657","ServerKey":"pl181","X":412,"Y":293},{"Bonus":0,"Continent":"K36","ID":54658,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54658","ServerKey":"pl181","X":618,"Y":303},{"Bonus":10,"Continent":"K34","ID":54659,"Name":"Wioska runiczna","PlayerID":698231772,"Points":4355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54659","ServerKey":"pl181","X":409,"Y":300},{"Bonus":10,"Continent":"K34","ID":54660,"Name":"Wioska runiczna","PlayerID":698231772,"Points":4355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54660","ServerKey":"pl181","X":421,"Y":302},{"Bonus":10,"Continent":"K34","ID":54661,"Name":"Wioska runiczna","PlayerID":8630972,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54661","ServerKey":"pl181","X":446,"Y":313},{"Bonus":10,"Continent":"K34","ID":54662,"Name":"XDD","PlayerID":698489071,"Points":10661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54662","ServerKey":"pl181","X":474,"Y":316},{"Bonus":10,"Continent":"K34","ID":54663,"Name":"magiczna flet","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54663","ServerKey":"pl181","X":496,"Y":308},{"Bonus":10,"Continent":"K34","ID":54664,"Name":"Runy na runy","PlayerID":699796330,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54664","ServerKey":"pl181","X":414,"Y":329},{"Bonus":10,"Continent":"K34","ID":54665,"Name":"XDDD","PlayerID":698489071,"Points":2422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54665","ServerKey":"pl181","X":431,"Y":323},{"Bonus":10,"Continent":"K34","ID":54666,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":6598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54666","ServerKey":"pl181","X":440,"Y":329},{"Bonus":10,"Continent":"K34","ID":54667,"Name":"#0066 runiczna","PlayerID":1238300,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54667","ServerKey":"pl181","X":474,"Y":336},{"Bonus":10,"Continent":"K34","ID":54668,"Name":"XDD","PlayerID":698489071,"Points":9675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54668","ServerKey":"pl181","X":481,"Y":321},{"Bonus":10,"Continent":"K34","ID":54669,"Name":"10002 runiczna","PlayerID":699431255,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54669","ServerKey":"pl181","X":418,"Y":354},{"Bonus":10,"Continent":"K34","ID":54670,"Name":"Runy znĂłw Runy","PlayerID":699796330,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54670","ServerKey":"pl181","X":433,"Y":343},{"Bonus":10,"Continent":"K34","ID":54671,"Name":"K34 - [080] Before Land","PlayerID":699088769,"Points":9365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54671","ServerKey":"pl181","X":442,"Y":355},{"Bonus":10,"Continent":"K34","ID":54672,"Name":"GrĂłd 5","PlayerID":699204478,"Points":8811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54672","ServerKey":"pl181","X":463,"Y":343},{"Bonus":10,"Continent":"K34","ID":54673,"Name":"Wioska runiczna","PlayerID":698739350,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54673","ServerKey":"pl181","X":491,"Y":340},{"Bonus":10,"Continent":"K34","ID":54674,"Name":"A-048-Heffitto","PlayerID":8419570,"Points":10168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54674","ServerKey":"pl181","X":402,"Y":367},{"Bonus":10,"Continent":"K34","ID":54675,"Name":"Wioska runiczna","PlayerID":699796330,"Points":10460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54675","ServerKey":"pl181","X":425,"Y":378},{"Bonus":10,"Continent":"K34","ID":54676,"Name":"10001 runiczna","PlayerID":699431255,"Points":8984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54676","ServerKey":"pl181","X":441,"Y":371},{"Bonus":10,"Continent":"K34","ID":54677,"Name":"VN Feitan Portor","PlayerID":699883079,"Points":9672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54677","ServerKey":"pl181","X":464,"Y":369},{"Bonus":10,"Continent":"K34","ID":54678,"Name":".039.","PlayerID":698489071,"Points":9865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54678","ServerKey":"pl181","X":492,"Y":377},{"Bonus":10,"Continent":"K34","ID":54679,"Name":"Wioska runiczna","PlayerID":699402816,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54679","ServerKey":"pl181","X":411,"Y":386},{"Bonus":10,"Continent":"K34","ID":54680,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54680","ServerKey":"pl181","X":431,"Y":389},{"Bonus":10,"Continent":"K34","ID":54681,"Name":"K34 x008 Wioska Runiczna","PlayerID":698364331,"Points":9331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54681","ServerKey":"pl181","X":444,"Y":390},{"Bonus":10,"Continent":"K34","ID":54682,"Name":".041.","PlayerID":698489071,"Points":10001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54682","ServerKey":"pl181","X":471,"Y":390},{"Bonus":10,"Continent":"K34","ID":54683,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":7787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54683","ServerKey":"pl181","X":494,"Y":397},{"Bonus":10,"Continent":"K35","ID":54684,"Name":"magiczna flet","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54684","ServerKey":"pl181","X":508,"Y":303},{"Bonus":10,"Continent":"K35","ID":54685,"Name":"AAA","PlayerID":1006847,"Points":7079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54685","ServerKey":"pl181","X":539,"Y":317},{"Bonus":10,"Continent":"K35","ID":54686,"Name":"BRICKLEBERRY","PlayerID":699072129,"Points":5903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54686","ServerKey":"pl181","X":554,"Y":304},{"Bonus":10,"Continent":"K35","ID":54687,"Name":"Wioska runiczna","PlayerID":849054951,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54687","ServerKey":"pl181","X":568,"Y":303},{"Bonus":10,"Continent":"K35","ID":54688,"Name":"Wioska krumlow 13","PlayerID":699098531,"Points":1856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54688","ServerKey":"pl181","X":592,"Y":308},{"Bonus":10,"Continent":"K35","ID":54689,"Name":"Lord Lord Franek .#177","PlayerID":698420691,"Points":9672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54689","ServerKey":"pl181","X":518,"Y":330},{"Bonus":10,"Continent":"K35","ID":54690,"Name":"Lord Lord Franek .#083","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54690","ServerKey":"pl181","X":523,"Y":336},{"Bonus":10,"Continent":"K35","ID":54691,"Name":"Wioska runiczna","PlayerID":2972329,"Points":4668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54691","ServerKey":"pl181","X":542,"Y":337},{"Bonus":10,"Continent":"K35","ID":54692,"Name":"K35 - [033] Before Land","PlayerID":699088769,"Points":4579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54692","ServerKey":"pl181","X":576,"Y":322},{"Bonus":10,"Continent":"K35","ID":54693,"Name":"K35 - [038] Before Land","PlayerID":699088769,"Points":3696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54693","ServerKey":"pl181","X":585,"Y":320},{"Bonus":10,"Continent":"K35","ID":54694,"Name":"Lord Lord Franek .#109","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54694","ServerKey":"pl181","X":510,"Y":344},{"Bonus":10,"Continent":"K35","ID":54695,"Name":"Lord Lord Franek .#084","PlayerID":698420691,"Points":9955,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54695","ServerKey":"pl181","X":534,"Y":344},{"Bonus":10,"Continent":"K35","ID":54696,"Name":"Wioska runiczna","PlayerID":699072129,"Points":8680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54696","ServerKey":"pl181","X":550,"Y":349},{"Bonus":10,"Continent":"K35","ID":54697,"Name":"Wioska XVI","PlayerID":698200480,"Points":3736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54697","ServerKey":"pl181","X":577,"Y":347},{"Bonus":10,"Continent":"K35","ID":54698,"Name":"020 Schwere Panzer-Abteilung 505","PlayerID":849091899,"Points":2540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54698","ServerKey":"pl181","X":597,"Y":357},{"Bonus":10,"Continent":"K35","ID":54699,"Name":".040.","PlayerID":698489071,"Points":10030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54699","ServerKey":"pl181","X":509,"Y":371},{"Bonus":10,"Continent":"K35","ID":54700,"Name":"000","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54700","ServerKey":"pl181","X":529,"Y":360},{"Bonus":10,"Continent":"K35","ID":54701,"Name":".:050:. ƁOBUZIK","PlayerID":848934935,"Points":7289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54701","ServerKey":"pl181","X":549,"Y":370},{"Bonus":10,"Continent":"K35","ID":54702,"Name":"Wioska runiczna","PlayerID":699072129,"Points":10216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54702","ServerKey":"pl181","X":561,"Y":362},{"Bonus":10,"Continent":"K35","ID":54703,"Name":"WesoƂych ƚwiąt +","PlayerID":848915730,"Points":5839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54703","ServerKey":"pl181","X":591,"Y":363},{"Bonus":10,"Continent":"K35","ID":54704,"Name":".038.","PlayerID":698489071,"Points":9989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54704","ServerKey":"pl181","X":503,"Y":381},{"Bonus":10,"Continent":"K35","ID":54705,"Name":"000","PlayerID":1990750,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54705","ServerKey":"pl181","X":527,"Y":390},{"Bonus":10,"Continent":"K35","ID":54706,"Name":"Taran","PlayerID":699170684,"Points":9426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54706","ServerKey":"pl181","X":547,"Y":386},{"Bonus":10,"Continent":"K35","ID":54707,"Name":"077R","PlayerID":849063849,"Points":6559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54707","ServerKey":"pl181","X":573,"Y":397},{"Bonus":10,"Continent":"K35","ID":54708,"Name":"C 019","PlayerID":6384450,"Points":9311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54708","ServerKey":"pl181","X":597,"Y":393},{"Bonus":10,"Continent":"K43","ID":54709,"Name":"Sruniczna","PlayerID":356642,"Points":9821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54709","ServerKey":"pl181","X":314,"Y":416},{"Bonus":10,"Continent":"K43","ID":54710,"Name":"Sruniczna","PlayerID":356642,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54710","ServerKey":"pl181","X":321,"Y":404},{"Bonus":10,"Continent":"K43","ID":54711,"Name":"*166*","PlayerID":699273451,"Points":8314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54711","ServerKey":"pl181","X":348,"Y":408},{"Bonus":10,"Continent":"K43","ID":54712,"Name":"Ręcznik do zmiany","PlayerID":699697558,"Points":9854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54712","ServerKey":"pl181","X":373,"Y":406},{"Bonus":10,"Continent":"K43","ID":54713,"Name":"012","PlayerID":848945529,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54713","ServerKey":"pl181","X":379,"Y":405},{"Bonus":10,"Continent":"K43","ID":54714,"Name":"Wioska runiczna","PlayerID":849099859,"Points":3686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54714","ServerKey":"pl181","X":309,"Y":429},{"Bonus":10,"Continent":"K43","ID":54715,"Name":"magiczna flet","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54715","ServerKey":"pl181","X":336,"Y":427},{"Bonus":10,"Continent":"K43","ID":54716,"Name":"magiczna flet","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54716","ServerKey":"pl181","X":346,"Y":422},{"Bonus":10,"Continent":"K43","ID":54717,"Name":"M181_019","PlayerID":393668,"Points":8988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54717","ServerKey":"pl181","X":359,"Y":434},{"Bonus":10,"Continent":"K43","ID":54718,"Name":"magiczna flet","PlayerID":848918380,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54718","ServerKey":"pl181","X":390,"Y":427},{"Bonus":10,"Continent":"K43","ID":54719,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54719","ServerKey":"pl181","X":310,"Y":454},{"Bonus":10,"Continent":"K43","ID":54720,"Name":"Wioska runiczna","PlayerID":849096547,"Points":4092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54720","ServerKey":"pl181","X":329,"Y":445},{"Bonus":10,"Continent":"K43","ID":54721,"Name":"Wioska runiczna","PlayerID":393668,"Points":1501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54721","ServerKey":"pl181","X":340,"Y":452},{"Bonus":10,"Continent":"K43","ID":54722,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54722","ServerKey":"pl181","X":370,"Y":452},{"Bonus":10,"Continent":"K43","ID":54723,"Name":"s181eo25","PlayerID":393668,"Points":8043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54723","ServerKey":"pl181","X":396,"Y":451},{"Bonus":10,"Continent":"K43","ID":54724,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54724","ServerKey":"pl181","X":303,"Y":460},{"Bonus":10,"Continent":"K43","ID":54725,"Name":"Wioska Bochuniczna10","PlayerID":7449254,"Points":8549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54725","ServerKey":"pl181","X":331,"Y":475},{"Bonus":10,"Continent":"K43","ID":54726,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54726","ServerKey":"pl181","X":340,"Y":470},{"Bonus":10,"Continent":"K43","ID":54727,"Name":"A0257","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54727","ServerKey":"pl181","X":378,"Y":473},{"Bonus":10,"Continent":"K43","ID":54728,"Name":"Wioska runiczna","PlayerID":698807570,"Points":10047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54728","ServerKey":"pl181","X":384,"Y":460},{"Bonus":10,"Continent":"K43","ID":54729,"Name":"Dream on","PlayerID":698962117,"Points":9697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54729","ServerKey":"pl181","X":304,"Y":486},{"Bonus":10,"Continent":"K43","ID":54730,"Name":"A0284","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54730","ServerKey":"pl181","X":330,"Y":484},{"Bonus":10,"Continent":"K43","ID":54731,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54731","ServerKey":"pl181","X":342,"Y":480},{"Bonus":10,"Continent":"K43","ID":54732,"Name":"Mniejsze zƂo 0054","PlayerID":699794765,"Points":7763,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54732","ServerKey":"pl181","X":378,"Y":484},{"Bonus":10,"Continent":"K43","ID":54733,"Name":"Wioska runiczna","PlayerID":698290577,"Points":6871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54733","ServerKey":"pl181","X":393,"Y":497},{"Bonus":10,"Continent":"K44","ID":54734,"Name":"zupeƂnie normalna wioska","PlayerID":699323302,"Points":10997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54734","ServerKey":"pl181","X":413,"Y":414},{"Bonus":10,"Continent":"K44","ID":54735,"Name":"0000","PlayerID":3909522,"Points":9348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54735","ServerKey":"pl181","X":433,"Y":419},{"Bonus":10,"Continent":"K44","ID":54736,"Name":"10003 runiczna","PlayerID":699431255,"Points":9512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54736","ServerKey":"pl181","X":444,"Y":417},{"Bonus":10,"Continent":"K44","ID":54737,"Name":"Monetki","PlayerID":699098531,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54737","ServerKey":"pl181","X":477,"Y":410},{"Bonus":10,"Continent":"K44","ID":54738,"Name":"Uwaga będę bronić! - Roman kazaƂ","PlayerID":699433558,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54738","ServerKey":"pl181","X":487,"Y":409},{"Bonus":10,"Continent":"K44","ID":54739,"Name":"Wioska runiczna","PlayerID":7462660,"Points":10093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54739","ServerKey":"pl181","X":403,"Y":429},{"Bonus":10,"Continent":"K44","ID":54740,"Name":"Wioska runiczna","PlayerID":9291984,"Points":7726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54740","ServerKey":"pl181","X":428,"Y":428},{"Bonus":10,"Continent":"K44","ID":54741,"Name":"Wioska runiczna","PlayerID":9291984,"Points":9188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54741","ServerKey":"pl181","X":456,"Y":426},{"Bonus":10,"Continent":"K44","ID":54742,"Name":"Monetki","PlayerID":699098531,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54742","ServerKey":"pl181","X":471,"Y":421},{"Bonus":10,"Continent":"K44","ID":54743,"Name":"7.62 mm","PlayerID":699777234,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54743","ServerKey":"pl181","X":486,"Y":439},{"Bonus":10,"Continent":"K44","ID":54744,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54744","ServerKey":"pl181","X":408,"Y":459},{"Bonus":10,"Continent":"K44","ID":54745,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54745","ServerKey":"pl181","X":437,"Y":450},{"Bonus":10,"Continent":"K44","ID":54746,"Name":"Wioska runiczna","PlayerID":699660539,"Points":8696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54746","ServerKey":"pl181","X":446,"Y":458},{"Bonus":10,"Continent":"K44","ID":54747,"Name":"Os Konfederacja","PlayerID":848915730,"Points":9682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54747","ServerKey":"pl181","X":469,"Y":449},{"Bonus":10,"Continent":"K44","ID":54748,"Name":"BR01","PlayerID":699299123,"Points":9680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54748","ServerKey":"pl181","X":487,"Y":448},{"Bonus":10,"Continent":"K44","ID":54749,"Name":"Kentin ufam Tobie","PlayerID":699783765,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54749","ServerKey":"pl181","X":404,"Y":478},{"Bonus":10,"Continent":"K44","ID":54750,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54750","ServerKey":"pl181","X":422,"Y":459},{"Bonus":10,"Continent":"K44","ID":54751,"Name":"+44 74 Lyon Fourviere","PlayerID":698361257,"Points":9705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54751","ServerKey":"pl181","X":446,"Y":473},{"Bonus":10,"Continent":"K44","ID":54752,"Name":"BR02","PlayerID":699299123,"Points":10423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54752","ServerKey":"pl181","X":476,"Y":470},{"Bonus":10,"Continent":"K44","ID":54753,"Name":"124 Culiacan","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54753","ServerKey":"pl181","X":481,"Y":459},{"Bonus":10,"Continent":"K44","ID":54754,"Name":"PRO8L3M","PlayerID":7491093,"Points":7651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54754","ServerKey":"pl181","X":411,"Y":492},{"Bonus":10,"Continent":"K44","ID":54755,"Name":"SsSs","PlayerID":1536625,"Points":10139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54755","ServerKey":"pl181","X":423,"Y":487},{"Bonus":10,"Continent":"K44","ID":54756,"Name":"035","PlayerID":699510259,"Points":9741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54756","ServerKey":"pl181","X":442,"Y":491},{"Bonus":10,"Continent":"K44","ID":54757,"Name":"123 Mazatlan","PlayerID":1497168,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54757","ServerKey":"pl181","X":477,"Y":480},{"Bonus":10,"Continent":"K44","ID":54758,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54758","ServerKey":"pl181","X":486,"Y":483},{"Bonus":10,"Continent":"K45","ID":54759,"Name":".:000:. Chillout","PlayerID":848934935,"Points":9440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54759","ServerKey":"pl181","X":500,"Y":405},{"Bonus":10,"Continent":"K45","ID":54760,"Name":"Wioska runiczna","PlayerID":7758085,"Points":9498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54760","ServerKey":"pl181","X":535,"Y":402},{"Bonus":10,"Continent":"K45","ID":54761,"Name":"Hhh","PlayerID":7271812,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54761","ServerKey":"pl181","X":540,"Y":409},{"Bonus":10,"Continent":"K45","ID":54762,"Name":"133","PlayerID":849064752,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54762","ServerKey":"pl181","X":559,"Y":413},{"Bonus":10,"Continent":"K45","ID":54763,"Name":"South K45","PlayerID":699146580,"Points":8188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54763","ServerKey":"pl181","X":582,"Y":400},{"Bonus":10,"Continent":"K45","ID":54764,"Name":"Wioska runiczna","PlayerID":699658023,"Points":8378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54764","ServerKey":"pl181","X":501,"Y":421},{"Bonus":10,"Continent":"K45","ID":54765,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54765","ServerKey":"pl181","X":525,"Y":431},{"Bonus":10,"Continent":"K45","ID":54766,"Name":".:095:. Chillout","PlayerID":848934935,"Points":4824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54766","ServerKey":"pl181","X":542,"Y":437},{"Bonus":10,"Continent":"K45","ID":54767,"Name":"ADEN","PlayerID":698588535,"Points":9305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54767","ServerKey":"pl181","X":570,"Y":425},{"Bonus":10,"Continent":"K45","ID":54768,"Name":"[354] Chorągiewka na wietrze","PlayerID":848985692,"Points":9919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54768","ServerKey":"pl181","X":585,"Y":436},{"Bonus":10,"Continent":"K45","ID":54769,"Name":".:052:. Chillout","PlayerID":848934935,"Points":3158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54769","ServerKey":"pl181","X":519,"Y":443},{"Bonus":10,"Continent":"K45","ID":54770,"Name":"229 Jakarta","PlayerID":1497168,"Points":8130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54770","ServerKey":"pl181","X":536,"Y":446},{"Bonus":10,"Continent":"K45","ID":54771,"Name":"Wioska runiczna","PlayerID":0,"Points":2196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54771","ServerKey":"pl181","X":544,"Y":448},{"Bonus":10,"Continent":"K45","ID":54772,"Name":".....yhj","PlayerID":699368887,"Points":4974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54772","ServerKey":"pl181","X":576,"Y":446},{"Bonus":10,"Continent":"K45","ID":54773,"Name":"056. Runa","PlayerID":849094609,"Points":5200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54773","ServerKey":"pl181","X":580,"Y":457},{"Bonus":10,"Continent":"K45","ID":54774,"Name":"Szlachcic","PlayerID":699098531,"Points":6185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54774","ServerKey":"pl181","X":506,"Y":466},{"Bonus":10,"Continent":"K45","ID":54775,"Name":"SINGAPUR","PlayerID":8155296,"Points":6798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54775","ServerKey":"pl181","X":537,"Y":472},{"Bonus":10,"Continent":"K45","ID":54776,"Name":"016","PlayerID":699194766,"Points":8487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54776","ServerKey":"pl181","X":547,"Y":470},{"Bonus":10,"Continent":"K45","ID":54777,"Name":"! Wioska runiczna","PlayerID":477415,"Points":9490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54777","ServerKey":"pl181","X":562,"Y":461},{"Bonus":10,"Continent":"K45","ID":54778,"Name":"087. Runa","PlayerID":849094609,"Points":2670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54778","ServerKey":"pl181","X":587,"Y":459},{"Bonus":10,"Continent":"K45","ID":54779,"Name":"126.","PlayerID":8788366,"Points":6993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54779","ServerKey":"pl181","X":512,"Y":486},{"Bonus":10,"Continent":"K45","ID":54780,"Name":"[087]","PlayerID":848985692,"Points":9675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54780","ServerKey":"pl181","X":539,"Y":491},{"Bonus":10,"Continent":"K45","ID":54781,"Name":"0061","PlayerID":698416970,"Points":8199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54781","ServerKey":"pl181","X":544,"Y":487},{"Bonus":10,"Continent":"K45","ID":54782,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54782","ServerKey":"pl181","X":563,"Y":494},{"Bonus":10,"Continent":"K45","ID":54783,"Name":"~~LatającyHolender~~","PlayerID":9174887,"Points":9141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54783","ServerKey":"pl181","X":581,"Y":489},{"Bonus":10,"Continent":"K46","ID":54784,"Name":"Wioska runiczna","PlayerID":0,"Points":2281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54784","ServerKey":"pl181","X":614,"Y":400},{"Bonus":10,"Continent":"K46","ID":54785,"Name":"Wioska runiczna","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54785","ServerKey":"pl181","X":628,"Y":411},{"Bonus":10,"Continent":"K46","ID":54786,"Name":"073- Mroczna Osada","PlayerID":849035905,"Points":3084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54786","ServerKey":"pl181","X":641,"Y":406},{"Bonus":10,"Continent":"K46","ID":54787,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":3845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54787","ServerKey":"pl181","X":663,"Y":407},{"Bonus":10,"Continent":"K46","ID":54788,"Name":"Wioska barbarzyƄska","PlayerID":8000875,"Points":9995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54788","ServerKey":"pl181","X":698,"Y":400},{"Bonus":10,"Continent":"K46","ID":54789,"Name":"#047.495|486","PlayerID":556154,"Points":9735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54789","ServerKey":"pl181","X":614,"Y":437},{"Bonus":10,"Continent":"K46","ID":54790,"Name":"*0016 co to jest","PlayerID":8459255,"Points":10315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54790","ServerKey":"pl181","X":633,"Y":421},{"Bonus":10,"Continent":"K46","ID":54791,"Name":"I076 Potrzymaj mi piwo","PlayerID":699722599,"Points":10113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54791","ServerKey":"pl181","X":658,"Y":439},{"Bonus":10,"Continent":"K46","ID":54792,"Name":"Jehu_Kingdom_99","PlayerID":8785314,"Points":6228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54792","ServerKey":"pl181","X":664,"Y":426},{"Bonus":10,"Continent":"K46","ID":54793,"Name":"Wioska runiczna","PlayerID":699738350,"Points":7452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54793","ServerKey":"pl181","X":684,"Y":425},{"Bonus":10,"Continent":"K46","ID":54794,"Name":"055. Runa","PlayerID":849094609,"Points":5121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54794","ServerKey":"pl181","X":603,"Y":445},{"Bonus":10,"Continent":"K46","ID":54795,"Name":"0051","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54795","ServerKey":"pl181","X":631,"Y":453},{"Bonus":10,"Continent":"K46","ID":54796,"Name":"Wioska runiczna","PlayerID":849088515,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54796","ServerKey":"pl181","X":643,"Y":446},{"Bonus":10,"Continent":"K46","ID":54797,"Name":"I077","PlayerID":699722599,"Points":10050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54797","ServerKey":"pl181","X":660,"Y":446},{"Bonus":10,"Continent":"K46","ID":54798,"Name":"I078","PlayerID":699722599,"Points":9405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54798","ServerKey":"pl181","X":686,"Y":453},{"Bonus":10,"Continent":"K46","ID":54799,"Name":"041. Wioska runiczna","PlayerID":8337151,"Points":9868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54799","ServerKey":"pl181","X":608,"Y":469},{"Bonus":10,"Continent":"K46","ID":54800,"Name":"040. Avennio","PlayerID":849091866,"Points":10231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54800","ServerKey":"pl181","X":625,"Y":463},{"Bonus":10,"Continent":"K46","ID":54801,"Name":"Wioska runiczna","PlayerID":849088515,"Points":7808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54801","ServerKey":"pl181","X":656,"Y":462},{"Bonus":10,"Continent":"K46","ID":54802,"Name":"072 Shimoda","PlayerID":7092442,"Points":10164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54802","ServerKey":"pl181","X":668,"Y":474},{"Bonus":10,"Continent":"K46","ID":54803,"Name":"*028*","PlayerID":698670524,"Points":8630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54803","ServerKey":"pl181","X":679,"Y":464},{"Bonus":10,"Continent":"K46","ID":54804,"Name":"Wioska runiczna","PlayerID":699573053,"Points":10380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54804","ServerKey":"pl181","X":600,"Y":482},{"Bonus":10,"Continent":"K46","ID":54805,"Name":"031 runiczna","PlayerID":9238175,"Points":10280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54805","ServerKey":"pl181","X":632,"Y":494},{"Bonus":10,"Continent":"K46","ID":54806,"Name":"Jehu_Kingdom_98","PlayerID":8785314,"Points":4230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54806","ServerKey":"pl181","X":658,"Y":492},{"Bonus":10,"Continent":"K46","ID":54807,"Name":"062. Runa","PlayerID":849094609,"Points":5161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54807","ServerKey":"pl181","X":670,"Y":485},{"Bonus":10,"Continent":"K46","ID":54808,"Name":"0119","PlayerID":699429153,"Points":9825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54808","ServerKey":"pl181","X":692,"Y":491},{"Bonus":10,"Continent":"K53","ID":54809,"Name":"C0012","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54809","ServerKey":"pl181","X":306,"Y":518},{"Bonus":10,"Continent":"K53","ID":54810,"Name":"015.Wioska runiczna","PlayerID":1830149,"Points":4448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54810","ServerKey":"pl181","X":334,"Y":506},{"Bonus":10,"Continent":"K53","ID":54811,"Name":"The Game Has Only Just Begun","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54811","ServerKey":"pl181","X":348,"Y":512},{"Bonus":10,"Continent":"K53","ID":54812,"Name":"Wioska runiczna","PlayerID":699265922,"Points":3483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54812","ServerKey":"pl181","X":369,"Y":503},{"Bonus":10,"Continent":"K53","ID":54813,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54813","ServerKey":"pl181","X":392,"Y":502},{"Bonus":10,"Continent":"K53","ID":54814,"Name":"C0179","PlayerID":8841266,"Points":10252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54814","ServerKey":"pl181","X":301,"Y":526},{"Bonus":10,"Continent":"K53","ID":54815,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54815","ServerKey":"pl181","X":339,"Y":521},{"Bonus":10,"Continent":"K53","ID":54816,"Name":"Chekku - meito","PlayerID":9280477,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54816","ServerKey":"pl181","X":342,"Y":529},{"Bonus":10,"Continent":"K53","ID":54817,"Name":"Wioska runiczna","PlayerID":698641566,"Points":9017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54817","ServerKey":"pl181","X":362,"Y":521},{"Bonus":10,"Continent":"K53","ID":54818,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54818","ServerKey":"pl181","X":384,"Y":538},{"Bonus":10,"Continent":"K53","ID":54819,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54819","ServerKey":"pl181","X":304,"Y":558},{"Bonus":10,"Continent":"K53","ID":54820,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54820","ServerKey":"pl181","X":322,"Y":547},{"Bonus":10,"Continent":"K53","ID":54821,"Name":"Jestem Poza Kontrolą","PlayerID":8004076,"Points":8221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54821","ServerKey":"pl181","X":356,"Y":548},{"Bonus":10,"Continent":"K53","ID":54822,"Name":"042","PlayerID":8908002,"Points":9032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54822","ServerKey":"pl181","X":362,"Y":541},{"Bonus":10,"Continent":"K53","ID":54823,"Name":"Wioska","PlayerID":849084005,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54823","ServerKey":"pl181","X":384,"Y":543},{"Bonus":10,"Continent":"K53","ID":54824,"Name":"Psycho to Marka, Narka !","PlayerID":698704189,"Points":6248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54824","ServerKey":"pl181","X":319,"Y":575},{"Bonus":10,"Continent":"K53","ID":54825,"Name":"(017)Shattered Plains","PlayerID":849098695,"Points":8149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54825","ServerKey":"pl181","X":326,"Y":567},{"Bonus":10,"Continent":"K53","ID":54826,"Name":"x004","PlayerID":9264752,"Points":8569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54826","ServerKey":"pl181","X":357,"Y":565},{"Bonus":10,"Continent":"K53","ID":54827,"Name":"076 Wioska runiczna","PlayerID":699382126,"Points":9540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54827","ServerKey":"pl181","X":373,"Y":575},{"Bonus":10,"Continent":"K53","ID":54828,"Name":"Wioska runiczna","PlayerID":9167250,"Points":9362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54828","ServerKey":"pl181","X":398,"Y":563},{"Bonus":10,"Continent":"K53","ID":54829,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54829","ServerKey":"pl181","X":317,"Y":593},{"Bonus":10,"Continent":"K53","ID":54830,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54830","ServerKey":"pl181","X":339,"Y":583},{"Bonus":10,"Continent":"K53","ID":54831,"Name":"Myk i do kieszonki","PlayerID":9319058,"Points":9116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54831","ServerKey":"pl181","X":351,"Y":583},{"Bonus":10,"Continent":"K53","ID":54832,"Name":"21. GaraĆŒ u boryƂy","PlayerID":8665783,"Points":8957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54832","ServerKey":"pl181","X":372,"Y":597},{"Bonus":10,"Continent":"K53","ID":54833,"Name":"Pobozowisko","PlayerID":699513260,"Points":10242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54833","ServerKey":"pl181","X":386,"Y":583},{"Bonus":10,"Continent":"K54","ID":54834,"Name":"093","PlayerID":699851427,"Points":10129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54834","ServerKey":"pl181","X":402,"Y":514},{"Bonus":10,"Continent":"K54","ID":54835,"Name":"Zdecydowanie nie Wioska runiczna","PlayerID":9236866,"Points":10042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54835","ServerKey":"pl181","X":422,"Y":512},{"Bonus":10,"Continent":"K54","ID":54836,"Name":"Wioska runiczna","PlayerID":698290577,"Points":5013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54836","ServerKey":"pl181","X":450,"Y":501},{"Bonus":10,"Continent":"K54","ID":54837,"Name":"232 Kair","PlayerID":1497168,"Points":2917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54837","ServerKey":"pl181","X":467,"Y":503},{"Bonus":10,"Continent":"K54","ID":54838,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54838","ServerKey":"pl181","X":482,"Y":510},{"Bonus":10,"Continent":"K54","ID":54839,"Name":"Wioska runiczna","PlayerID":699425709,"Points":9544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54839","ServerKey":"pl181","X":411,"Y":533},{"Bonus":10,"Continent":"K54","ID":54840,"Name":"Suppi","PlayerID":699856962,"Points":9549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54840","ServerKey":"pl181","X":439,"Y":523},{"Bonus":10,"Continent":"K54","ID":54841,"Name":"Winter is coming","PlayerID":698971484,"Points":9533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54841","ServerKey":"pl181","X":445,"Y":537},{"Bonus":10,"Continent":"K54","ID":54842,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54842","ServerKey":"pl181","X":467,"Y":538},{"Bonus":10,"Continent":"K54","ID":54843,"Name":"Wioska runiczna","PlayerID":848967710,"Points":9049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54843","ServerKey":"pl181","X":494,"Y":520},{"Bonus":10,"Continent":"K54","ID":54844,"Name":"144 Wioska runiczna","PlayerID":699382126,"Points":8655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54844","ServerKey":"pl181","X":401,"Y":550},{"Bonus":10,"Continent":"K54","ID":54845,"Name":"Zdecydowanie nie Wioska runiczna","PlayerID":9236866,"Points":5228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54845","ServerKey":"pl181","X":429,"Y":543},{"Bonus":10,"Continent":"K54","ID":54846,"Name":"NOT?","PlayerID":698971484,"Points":4661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54846","ServerKey":"pl181","X":444,"Y":553},{"Bonus":10,"Continent":"K54","ID":54847,"Name":"0343","PlayerID":698659980,"Points":8441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54847","ServerKey":"pl181","X":469,"Y":559},{"Bonus":10,"Continent":"K54","ID":54848,"Name":"#0083 Runa","PlayerID":9272054,"Points":9488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54848","ServerKey":"pl181","X":490,"Y":559},{"Bonus":10,"Continent":"K54","ID":54849,"Name":"Wioska runiczna","PlayerID":849084740,"Points":6152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54849","ServerKey":"pl181","X":403,"Y":574},{"Bonus":10,"Continent":"K54","ID":54850,"Name":"IIIIIII","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54850","ServerKey":"pl181","X":427,"Y":577},{"Bonus":10,"Continent":"K54","ID":54851,"Name":"Nuniczna","PlayerID":699443920,"Points":9203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54851","ServerKey":"pl181","X":457,"Y":569},{"Bonus":10,"Continent":"K54","ID":54852,"Name":"Wioska runiczna","PlayerID":8539216,"Points":1521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54852","ServerKey":"pl181","X":478,"Y":570},{"Bonus":10,"Continent":"K54","ID":54853,"Name":"Wioska runiczna","PlayerID":8539216,"Points":2152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54853","ServerKey":"pl181","X":487,"Y":572},{"Bonus":10,"Continent":"K54","ID":54854,"Name":"Pobozowisko","PlayerID":699513260,"Points":6798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54854","ServerKey":"pl181","X":405,"Y":594},{"Bonus":10,"Continent":"K54","ID":54855,"Name":"JJJJJ","PlayerID":225023,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54855","ServerKey":"pl181","X":429,"Y":586},{"Bonus":10,"Continent":"K54","ID":54856,"Name":"0551","PlayerID":698659980,"Points":5726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54856","ServerKey":"pl181","X":442,"Y":588},{"Bonus":10,"Continent":"K54","ID":54857,"Name":"Madzia","PlayerID":2585846,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54857","ServerKey":"pl181","X":469,"Y":582},{"Bonus":10,"Continent":"K54","ID":54858,"Name":"Wioska runiczna","PlayerID":699364813,"Points":8784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54858","ServerKey":"pl181","X":489,"Y":586},{"Bonus":10,"Continent":"K55","ID":54859,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54859","ServerKey":"pl181","X":517,"Y":506},{"Bonus":10,"Continent":"K55","ID":54860,"Name":"Wioska 14","PlayerID":699385139,"Points":8713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54860","ServerKey":"pl181","X":526,"Y":511},{"Bonus":10,"Continent":"K55","ID":54861,"Name":"[129]","PlayerID":8000875,"Points":9489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54861","ServerKey":"pl181","X":541,"Y":500},{"Bonus":10,"Continent":"K55","ID":54862,"Name":"Nitro","PlayerID":699379895,"Points":10450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54862","ServerKey":"pl181","X":569,"Y":503},{"Bonus":10,"Continent":"K55","ID":54863,"Name":"[032] Te occidere","PlayerID":848985692,"Points":10633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54863","ServerKey":"pl181","X":582,"Y":511},{"Bonus":10,"Continent":"K55","ID":54864,"Name":"0071 runiczna","PlayerID":699432672,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54864","ServerKey":"pl181","X":517,"Y":531},{"Bonus":10,"Continent":"K55","ID":54865,"Name":"JaamMwG 026","PlayerID":848987051,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54865","ServerKey":"pl181","X":526,"Y":528},{"Bonus":10,"Continent":"K55","ID":54866,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54866","ServerKey":"pl181","X":546,"Y":532},{"Bonus":10,"Continent":"K55","ID":54867,"Name":"[127]","PlayerID":8000875,"Points":9881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54867","ServerKey":"pl181","X":567,"Y":534},{"Bonus":10,"Continent":"K55","ID":54868,"Name":"[033] Nogalinat tevi","PlayerID":848985692,"Points":10390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54868","ServerKey":"pl181","X":580,"Y":530},{"Bonus":10,"Continent":"K55","ID":54869,"Name":"Yogi","PlayerID":2808172,"Points":8550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54869","ServerKey":"pl181","X":511,"Y":554},{"Bonus":10,"Continent":"K55","ID":54870,"Name":"Wioska runiczna","PlayerID":7581876,"Points":8724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54870","ServerKey":"pl181","X":530,"Y":543},{"Bonus":10,"Continent":"K55","ID":54871,"Name":"[123]","PlayerID":8000875,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54871","ServerKey":"pl181","X":558,"Y":556},{"Bonus":10,"Continent":"K55","ID":54872,"Name":"[130]","PlayerID":8000875,"Points":9183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54872","ServerKey":"pl181","X":563,"Y":550},{"Bonus":10,"Continent":"K55","ID":54873,"Name":"Let It Be","PlayerID":848926293,"Points":9445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54873","ServerKey":"pl181","X":591,"Y":558},{"Bonus":10,"Continent":"K55","ID":54874,"Name":"Wioska runiczna","PlayerID":3613413,"Points":9840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54874","ServerKey":"pl181","X":501,"Y":560},{"Bonus":10,"Continent":"K55","ID":54875,"Name":"Wioska runiczna","PlayerID":699189792,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54875","ServerKey":"pl181","X":521,"Y":565},{"Bonus":10,"Continent":"K55","ID":54876,"Name":"[150]","PlayerID":8000875,"Points":9106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54876","ServerKey":"pl181","X":555,"Y":576},{"Bonus":10,"Continent":"K55","ID":54877,"Name":"Runiczny Ronin?","PlayerID":699785935,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54877","ServerKey":"pl181","X":561,"Y":563},{"Bonus":10,"Continent":"K55","ID":54878,"Name":"0028 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54878","ServerKey":"pl181","X":597,"Y":559},{"Bonus":10,"Continent":"K55","ID":54879,"Name":"#0100","PlayerID":1536231,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54879","ServerKey":"pl181","X":500,"Y":594},{"Bonus":10,"Continent":"K55","ID":54880,"Name":"- 153 -","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54880","ServerKey":"pl181","X":535,"Y":581},{"Bonus":10,"Continent":"K55","ID":54881,"Name":"Wioska runiczna","PlayerID":699784536,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54881","ServerKey":"pl181","X":554,"Y":586},{"Bonus":10,"Continent":"K55","ID":54882,"Name":"Lord Arsey KING","PlayerID":848956513,"Points":10285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54882","ServerKey":"pl181","X":572,"Y":591},{"Bonus":10,"Continent":"K55","ID":54883,"Name":"0037 MzM","PlayerID":698416970,"Points":9060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54883","ServerKey":"pl181","X":597,"Y":593},{"Bonus":10,"Continent":"K56","ID":54884,"Name":"SiƂa, Masa, RzeĆșba 09","PlayerID":699379895,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54884","ServerKey":"pl181","X":611,"Y":513},{"Bonus":10,"Continent":"K56","ID":54885,"Name":"056 ƁódĆș","PlayerID":7092442,"Points":10297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54885","ServerKey":"pl181","X":638,"Y":514},{"Bonus":10,"Continent":"K56","ID":54886,"Name":"Wioska runiczna","PlayerID":6510480,"Points":9461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54886","ServerKey":"pl181","X":651,"Y":517},{"Bonus":10,"Continent":"K56","ID":54887,"Name":"Wioska runiczna","PlayerID":6510480,"Points":9185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54887","ServerKey":"pl181","X":670,"Y":509},{"Bonus":10,"Continent":"K56","ID":54888,"Name":"WƂadcy PóƂnocy 02","PlayerID":699379895,"Points":10474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54888","ServerKey":"pl181","X":685,"Y":503},{"Bonus":10,"Continent":"K56","ID":54889,"Name":"Wioska runiczna","PlayerID":6510480,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54889","ServerKey":"pl181","X":614,"Y":527},{"Bonus":10,"Continent":"K56","ID":54890,"Name":"Wioska runiczna","PlayerID":6510480,"Points":9786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54890","ServerKey":"pl181","X":622,"Y":533},{"Bonus":10,"Continent":"K56","ID":54891,"Name":"Wioska runiczna","PlayerID":6510480,"Points":9156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54891","ServerKey":"pl181","X":641,"Y":534},{"Bonus":10,"Continent":"K56","ID":54892,"Name":"Wioska runiczna","PlayerID":848995478,"Points":4656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54892","ServerKey":"pl181","X":677,"Y":537},{"Bonus":10,"Continent":"K56","ID":54893,"Name":"LAST !!!","PlayerID":1563417,"Points":7414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54893","ServerKey":"pl181","X":686,"Y":527},{"Bonus":10,"Continent":"K56","ID":54894,"Name":"0027 MzM","PlayerID":698416970,"Points":9258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54894","ServerKey":"pl181","X":604,"Y":557},{"Bonus":10,"Continent":"K56","ID":54895,"Name":"Wioska runiczna","PlayerID":8742874,"Points":8048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54895","ServerKey":"pl181","X":629,"Y":552},{"Bonus":10,"Continent":"K56","ID":54896,"Name":"TWIERDZA .:064:.","PlayerID":7154207,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54896","ServerKey":"pl181","X":655,"Y":559},{"Bonus":10,"Continent":"K56","ID":54897,"Name":"TWIERDZA .:058:.","PlayerID":7154207,"Points":9326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54897","ServerKey":"pl181","X":663,"Y":555},{"Bonus":10,"Continent":"K56","ID":54898,"Name":"Wioska runiczna","PlayerID":848995478,"Points":4488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54898","ServerKey":"pl181","X":697,"Y":543},{"Bonus":10,"Continent":"K56","ID":54899,"Name":"Wioska runiczna","PlayerID":698702991,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54899","ServerKey":"pl181","X":616,"Y":565},{"Bonus":10,"Continent":"K56","ID":54900,"Name":"Wioska runiczna","PlayerID":8742874,"Points":7665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54900","ServerKey":"pl181","X":630,"Y":564},{"Bonus":10,"Continent":"K56","ID":54901,"Name":"TWIERDZA .:059:.","PlayerID":7154207,"Points":9430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54901","ServerKey":"pl181","X":659,"Y":561},{"Bonus":10,"Continent":"K56","ID":54902,"Name":"044. Wioska runiczna","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54902","ServerKey":"pl181","X":667,"Y":577},{"Bonus":10,"Continent":"K56","ID":54903,"Name":"TWIERDZA .:057:.","PlayerID":7154207,"Points":9709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54903","ServerKey":"pl181","X":695,"Y":569},{"Bonus":10,"Continent":"K56","ID":54904,"Name":"0042 MzM","PlayerID":698416970,"Points":9151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54904","ServerKey":"pl181","X":604,"Y":592},{"Bonus":10,"Continent":"K56","ID":54905,"Name":"PUSTO","PlayerID":698768565,"Points":6158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54905","ServerKey":"pl181","X":624,"Y":584},{"Bonus":10,"Continent":"K56","ID":54906,"Name":"042. Wioska runiczna","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54906","ServerKey":"pl181","X":642,"Y":595},{"Bonus":10,"Continent":"K56","ID":54907,"Name":"043. Wioska runiczna","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54907","ServerKey":"pl181","X":670,"Y":583},{"Bonus":10,"Continent":"K56","ID":54908,"Name":"045. Wioska runiczna","PlayerID":8337151,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54908","ServerKey":"pl181","X":693,"Y":579},{"Bonus":10,"Continent":"K64","ID":54909,"Name":"Pobozowisko","PlayerID":699513260,"Points":9278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54909","ServerKey":"pl181","X":409,"Y":608},{"Bonus":10,"Continent":"K64","ID":54910,"Name":"Wioska runiczna","PlayerID":6910361,"Points":3657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54910","ServerKey":"pl181","X":431,"Y":617},{"Bonus":10,"Continent":"K64","ID":54911,"Name":"035","PlayerID":849084985,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54911","ServerKey":"pl181","X":442,"Y":619},{"Bonus":10,"Continent":"K64","ID":54912,"Name":"081","PlayerID":699336777,"Points":7507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54912","ServerKey":"pl181","X":468,"Y":617},{"Bonus":10,"Continent":"K64","ID":54913,"Name":"Wioska runiczna","PlayerID":699494488,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54913","ServerKey":"pl181","X":491,"Y":617},{"Bonus":10,"Continent":"K64","ID":54914,"Name":"Wioska sobie 014","PlayerID":7349282,"Points":10301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54914","ServerKey":"pl181","X":402,"Y":639},{"Bonus":10,"Continent":"K64","ID":54915,"Name":"0022 Wioska runiczna","PlayerID":9060641,"Points":3017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54915","ServerKey":"pl181","X":424,"Y":635},{"Bonus":10,"Continent":"K64","ID":54916,"Name":"Wioska runiczna","PlayerID":699342219,"Points":7490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54916","ServerKey":"pl181","X":457,"Y":624},{"Bonus":10,"Continent":"K64","ID":54917,"Name":"082","PlayerID":699336777,"Points":5947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54917","ServerKey":"pl181","X":469,"Y":624},{"Bonus":10,"Continent":"K64","ID":54918,"Name":"Wioska runiczna","PlayerID":699494488,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54918","ServerKey":"pl181","X":486,"Y":628},{"Bonus":10,"Continent":"K64","ID":54919,"Name":"Wioska runiczna","PlayerID":0,"Points":2494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54919","ServerKey":"pl181","X":409,"Y":656},{"Bonus":10,"Continent":"K64","ID":54920,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54920","ServerKey":"pl181","X":429,"Y":658},{"Bonus":10,"Continent":"K64","ID":54921,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54921","ServerKey":"pl181","X":440,"Y":656},{"Bonus":10,"Continent":"K64","ID":54922,"Name":"042|| Delphinus","PlayerID":849035525,"Points":9904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54922","ServerKey":"pl181","X":475,"Y":652},{"Bonus":10,"Continent":"K64","ID":54923,"Name":"Ave Why!","PlayerID":698585370,"Points":9772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54923","ServerKey":"pl181","X":495,"Y":642},{"Bonus":10,"Continent":"K64","ID":54924,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54924","ServerKey":"pl181","X":411,"Y":659},{"Bonus":10,"Continent":"K64","ID":54925,"Name":"Wioska runiczna","PlayerID":699736927,"Points":8111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54925","ServerKey":"pl181","X":426,"Y":668},{"Bonus":10,"Continent":"K64","ID":54926,"Name":"Wioska runiczna","PlayerID":0,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54926","ServerKey":"pl181","X":440,"Y":660},{"Bonus":10,"Continent":"K64","ID":54927,"Name":"018 Wioska runiczna","PlayerID":699834004,"Points":5441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54927","ServerKey":"pl181","X":474,"Y":665},{"Bonus":10,"Continent":"K64","ID":54928,"Name":"|040| Wioska runiczna K64","PlayerID":699393742,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54928","ServerKey":"pl181","X":494,"Y":672},{"Bonus":10,"Continent":"K64","ID":54929,"Name":"Wioska runiczna","PlayerID":699736927,"Points":9605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54929","ServerKey":"pl181","X":410,"Y":681},{"Bonus":10,"Continent":"K64","ID":54930,"Name":"New World","PlayerID":698152377,"Points":10315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54930","ServerKey":"pl181","X":438,"Y":682},{"Bonus":10,"Continent":"K64","ID":54931,"Name":"A19","PlayerID":698652014,"Points":4130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54931","ServerKey":"pl181","X":447,"Y":694},{"Bonus":10,"Continent":"K64","ID":54932,"Name":"B09","PlayerID":698652014,"Points":5328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54932","ServerKey":"pl181","X":460,"Y":686},{"Bonus":10,"Continent":"K64","ID":54933,"Name":"A007 RUN","PlayerID":8954402,"Points":10965,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54933","ServerKey":"pl181","X":491,"Y":680},{"Bonus":10,"Continent":"K65","ID":54934,"Name":"0344","PlayerID":698659980,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54934","ServerKey":"pl181","X":519,"Y":601},{"Bonus":10,"Continent":"K65","ID":54935,"Name":"Mako Reactor 1 - B1F","PlayerID":8199417,"Points":9922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54935","ServerKey":"pl181","X":525,"Y":612},{"Bonus":10,"Continent":"K65","ID":54936,"Name":"Wioska runiczna","PlayerID":699342219,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54936","ServerKey":"pl181","X":559,"Y":601},{"Bonus":10,"Continent":"K65","ID":54937,"Name":"Wioska runiczna","PlayerID":0,"Points":2281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54937","ServerKey":"pl181","X":573,"Y":619},{"Bonus":10,"Continent":"K65","ID":54938,"Name":"Wioska runiczna","PlayerID":699342219,"Points":9853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54938","ServerKey":"pl181","X":583,"Y":606},{"Bonus":10,"Continent":"K65","ID":54939,"Name":"SSJ 056","PlayerID":699364813,"Points":9761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54939","ServerKey":"pl181","X":505,"Y":630},{"Bonus":10,"Continent":"K65","ID":54940,"Name":"Lower Level - Corporate Archives","PlayerID":8199417,"Points":10224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54940","ServerKey":"pl181","X":521,"Y":621},{"Bonus":10,"Continent":"K65","ID":54941,"Name":"0345","PlayerID":698659980,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54941","ServerKey":"pl181","X":541,"Y":624},{"Bonus":10,"Continent":"K65","ID":54942,"Name":"Yogi","PlayerID":2808172,"Points":8366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54942","ServerKey":"pl181","X":576,"Y":639},{"Bonus":10,"Continent":"K65","ID":54943,"Name":"0099","PlayerID":698416970,"Points":8097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54943","ServerKey":"pl181","X":589,"Y":630},{"Bonus":10,"Continent":"K65","ID":54944,"Name":"0530","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54944","ServerKey":"pl181","X":519,"Y":658},{"Bonus":10,"Continent":"K65","ID":54945,"Name":"0346","PlayerID":698659980,"Points":10019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54945","ServerKey":"pl181","X":535,"Y":644},{"Bonus":10,"Continent":"K65","ID":54946,"Name":"yogi","PlayerID":2808172,"Points":8036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54946","ServerKey":"pl181","X":556,"Y":641},{"Bonus":10,"Continent":"K65","ID":54947,"Name":"Yogi","PlayerID":2808172,"Points":8899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54947","ServerKey":"pl181","X":562,"Y":640},{"Bonus":10,"Continent":"K65","ID":54948,"Name":"Sony 911","PlayerID":1415009,"Points":10201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54948","ServerKey":"pl181","X":590,"Y":643},{"Bonus":10,"Continent":"K65","ID":54949,"Name":"029. Wioska runiczna","PlayerID":848928624,"Points":6092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54949","ServerKey":"pl181","X":518,"Y":668},{"Bonus":10,"Continent":"K65","ID":54950,"Name":"0531","PlayerID":698659980,"Points":10362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54950","ServerKey":"pl181","X":521,"Y":666},{"Bonus":10,"Continent":"K65","ID":54951,"Name":"Wioska runiczna","PlayerID":848915531,"Points":10238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54951","ServerKey":"pl181","X":556,"Y":669},{"Bonus":10,"Continent":"K65","ID":54952,"Name":"005. Wioska runiczna","PlayerID":1270916,"Points":4958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54952","ServerKey":"pl181","X":574,"Y":664},{"Bonus":10,"Continent":"K65","ID":54953,"Name":"Wioska runiczna","PlayerID":9023703,"Points":4286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54953","ServerKey":"pl181","X":585,"Y":670},{"Bonus":10,"Continent":"K65","ID":54954,"Name":"031. Wioska runiczna","PlayerID":849004274,"Points":9155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54954","ServerKey":"pl181","X":507,"Y":685},{"Bonus":10,"Continent":"K65","ID":54955,"Name":"- 156 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54955","ServerKey":"pl181","X":538,"Y":693},{"Bonus":10,"Continent":"K65","ID":54956,"Name":"- 158 - SS","PlayerID":849018239,"Points":10000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54956","ServerKey":"pl181","X":545,"Y":695},{"Bonus":10,"Continent":"K65","ID":54957,"Name":"nr5","PlayerID":364126,"Points":7896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54957","ServerKey":"pl181","X":576,"Y":680},{"Bonus":10,"Continent":"K65","ID":54958,"Name":"nr6","PlayerID":364126,"Points":2841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54958","ServerKey":"pl181","X":588,"Y":692},{"Bonus":0,"Continent":"K52","ID":54959,"Name":"C0253","PlayerID":8841266,"Points":4409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54959","ServerKey":"pl181","X":273,"Y":522},{"Bonus":0,"Continent":"K33","ID":54960,"Name":"Bunu1","PlayerID":849050087,"Points":1177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54960","ServerKey":"pl181","X":310,"Y":366},{"Bonus":0,"Continent":"K52","ID":54961,"Name":"New WorldA","PlayerID":849084005,"Points":2748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54961","ServerKey":"pl181","X":281,"Y":540},{"Bonus":0,"Continent":"K42","ID":54962,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54962","ServerKey":"pl181","X":292,"Y":415},{"Bonus":0,"Continent":"K64","ID":54963,"Name":"042.xxx","PlayerID":8612358,"Points":1158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54963","ServerKey":"pl181","X":486,"Y":611},{"Bonus":0,"Continent":"K63","ID":54964,"Name":"Psycha Siada","PlayerID":8099868,"Points":4836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54964","ServerKey":"pl181","X":331,"Y":651},{"Bonus":0,"Continent":"K52","ID":54965,"Name":"New WorldA","PlayerID":849084005,"Points":1364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54965","ServerKey":"pl181","X":272,"Y":502},{"Bonus":0,"Continent":"K74","ID":54967,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54967","ServerKey":"pl181","X":400,"Y":710},{"Bonus":0,"Continent":"K36","ID":54968,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":5342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54968","ServerKey":"pl181","X":691,"Y":381},{"Bonus":0,"Continent":"K74","ID":54969,"Name":"|D| IS","PlayerID":698147372,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54969","ServerKey":"pl181","X":458,"Y":724},{"Bonus":0,"Continent":"K52","ID":54970,"Name":"C0292","PlayerID":8841266,"Points":3911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54970","ServerKey":"pl181","X":277,"Y":551},{"Bonus":0,"Continent":"K74","ID":54971,"Name":"017 - Budowanko!","PlayerID":7540891,"Points":6948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54971","ServerKey":"pl181","X":492,"Y":726},{"Bonus":0,"Continent":"K66","ID":54972,"Name":"Nowa 62","PlayerID":698702991,"Points":3603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54972","ServerKey":"pl181","X":698,"Y":602},{"Bonus":0,"Continent":"K24","ID":54973,"Name":"Wioska barbarzyƄska","PlayerID":3411571,"Points":135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54973","ServerKey":"pl181","X":407,"Y":296},{"Bonus":0,"Continent":"K75","ID":54974,"Name":"Wiocha 4","PlayerID":849045675,"Points":8829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54974","ServerKey":"pl181","X":555,"Y":724},{"Bonus":0,"Continent":"K46","ID":54975,"Name":"181*6","PlayerID":849101881,"Points":3843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54975","ServerKey":"pl181","X":696,"Y":426},{"Bonus":0,"Continent":"K52","ID":54976,"Name":"New WorldA","PlayerID":849084005,"Points":2509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54976","ServerKey":"pl181","X":276,"Y":540},{"Bonus":0,"Continent":"K33","ID":54977,"Name":"Wioska pinkolinka","PlayerID":849035447,"Points":5873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54977","ServerKey":"pl181","X":375,"Y":312},{"Bonus":0,"Continent":"K75","ID":54978,"Name":"KASHYYYK 1","PlayerID":699383121,"Points":2192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54978","ServerKey":"pl181","X":568,"Y":722},{"Bonus":0,"Continent":"K23","ID":54979,"Name":"ostr","PlayerID":3842862,"Points":4563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54979","ServerKey":"pl181","X":391,"Y":297},{"Bonus":8,"Continent":"K42","ID":54980,"Name":"004","PlayerID":6131106,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54980","ServerKey":"pl181","X":291,"Y":422},{"Bonus":0,"Continent":"K52","ID":54981,"Name":"Zwolin","PlayerID":699754856,"Points":5794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54981","ServerKey":"pl181","X":285,"Y":586},{"Bonus":0,"Continent":"K36","ID":54982,"Name":"Ć»aneta","PlayerID":699875213,"Points":4244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54982","ServerKey":"pl181","X":682,"Y":356},{"Bonus":0,"Continent":"K25","ID":54983,"Name":"D015","PlayerID":699299123,"Points":3275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54983","ServerKey":"pl181","X":563,"Y":279},{"Bonus":0,"Continent":"K63","ID":54984,"Name":"062 Wioska barbarzyƄska","PlayerID":6354098,"Points":2987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54984","ServerKey":"pl181","X":346,"Y":660},{"Bonus":0,"Continent":"K63","ID":54985,"Name":"Wioska LastWish","PlayerID":698785538,"Points":645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54985","ServerKey":"pl181","X":382,"Y":699},{"Bonus":0,"Continent":"K66","ID":54986,"Name":"komandos","PlayerID":7976264,"Points":5523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54986","ServerKey":"pl181","X":664,"Y":656},{"Bonus":0,"Continent":"K24","ID":54987,"Name":"236...NORTH","PlayerID":6920960,"Points":4374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54987","ServerKey":"pl181","X":437,"Y":287},{"Bonus":0,"Continent":"K25","ID":54988,"Name":"#008","PlayerID":849064614,"Points":6584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54988","ServerKey":"pl181","X":554,"Y":282},{"Bonus":0,"Continent":"K66","ID":54989,"Name":"030","PlayerID":699099811,"Points":2272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54989","ServerKey":"pl181","X":685,"Y":621},{"Bonus":0,"Continent":"K42","ID":54990,"Name":"Wioska gall1","PlayerID":699598396,"Points":3253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54990","ServerKey":"pl181","X":271,"Y":473},{"Bonus":2,"Continent":"K76","ID":54991,"Name":"ObrzeĆŒe","PlayerID":7589468,"Points":8815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54991","ServerKey":"pl181","X":603,"Y":708},{"Bonus":0,"Continent":"K75","ID":54992,"Name":"Aa5","PlayerID":849097614,"Points":1471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54992","ServerKey":"pl181","X":589,"Y":714},{"Bonus":0,"Continent":"K25","ID":54993,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54993","ServerKey":"pl181","X":536,"Y":271},{"Bonus":9,"Continent":"K36","ID":54994,"Name":"05 bukai","PlayerID":6517826,"Points":2481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54994","ServerKey":"pl181","X":634,"Y":322},{"Bonus":0,"Continent":"K37","ID":54995,"Name":"Wioska skubana123","PlayerID":699598425,"Points":726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54995","ServerKey":"pl181","X":709,"Y":398},{"Bonus":0,"Continent":"K36","ID":54996,"Name":"Wioska dextermorgan","PlayerID":849057764,"Points":615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54996","ServerKey":"pl181","X":698,"Y":388},{"Bonus":0,"Continent":"K24","ID":54997,"Name":"????","PlayerID":698489071,"Points":4647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54997","ServerKey":"pl181","X":473,"Y":271},{"Bonus":0,"Continent":"K47","ID":54998,"Name":"104. Wioska pawelec123","PlayerID":7494497,"Points":1427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54998","ServerKey":"pl181","X":731,"Y":479},{"Bonus":0,"Continent":"K74","ID":54999,"Name":"0063.","PlayerID":849037407,"Points":9638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=54999","ServerKey":"pl181","X":454,"Y":724},{"Bonus":0,"Continent":"K74","ID":55000,"Name":"New World","PlayerID":698152377,"Points":6926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55000","ServerKey":"pl181","X":427,"Y":714},{"Bonus":0,"Continent":"K36","ID":55001,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55001","ServerKey":"pl181","X":666,"Y":338},{"Bonus":0,"Continent":"K75","ID":55002,"Name":"HenrykĂłw","PlayerID":6674092,"Points":2104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55002","ServerKey":"pl181","X":585,"Y":708},{"Bonus":0,"Continent":"K75","ID":55003,"Name":"ZZZ .::. cinek3456/11","PlayerID":33900,"Points":2058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55003","ServerKey":"pl181","X":586,"Y":711},{"Bonus":0,"Continent":"K63","ID":55004,"Name":"Wioska z Pracza 5","PlayerID":8916982,"Points":1343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55004","ServerKey":"pl181","X":307,"Y":625},{"Bonus":0,"Continent":"K57","ID":55005,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":2066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55005","ServerKey":"pl181","X":729,"Y":542},{"Bonus":0,"Continent":"K74","ID":55006,"Name":"Wilczy Szaniec","PlayerID":698738810,"Points":4717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55006","ServerKey":"pl181","X":460,"Y":721},{"Bonus":0,"Continent":"K63","ID":55007,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":7893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55007","ServerKey":"pl181","X":359,"Y":675},{"Bonus":0,"Continent":"K66","ID":55008,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55008","ServerKey":"pl181","X":685,"Y":626},{"Bonus":0,"Continent":"K74","ID":55009,"Name":"Kapitol_12","PlayerID":606407,"Points":5960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55009","ServerKey":"pl181","X":495,"Y":725},{"Bonus":0,"Continent":"K43","ID":55010,"Name":"Wioska Jori","PlayerID":289542,"Points":6250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55010","ServerKey":"pl181","X":326,"Y":435},{"Bonus":0,"Continent":"K25","ID":55011,"Name":"B013","PlayerID":699485250,"Points":3784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55011","ServerKey":"pl181","X":530,"Y":271},{"Bonus":0,"Continent":"K36","ID":55012,"Name":"Wioska barbarzyƄska","PlayerID":6956104,"Points":1269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55012","ServerKey":"pl181","X":683,"Y":359},{"Bonus":0,"Continent":"K66","ID":55013,"Name":"#132#","PlayerID":692803,"Points":3191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55013","ServerKey":"pl181","X":661,"Y":666},{"Bonus":0,"Continent":"K74","ID":55014,"Name":"FP044","PlayerID":699605333,"Points":4376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55014","ServerKey":"pl181","X":464,"Y":726},{"Bonus":0,"Continent":"K47","ID":55015,"Name":"X.01","PlayerID":699737356,"Points":8606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55015","ServerKey":"pl181","X":727,"Y":447},{"Bonus":1,"Continent":"K52","ID":55016,"Name":"Nowy 0004","PlayerID":849096972,"Points":1180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55016","ServerKey":"pl181","X":284,"Y":587},{"Bonus":0,"Continent":"K57","ID":55017,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55017","ServerKey":"pl181","X":723,"Y":547},{"Bonus":0,"Continent":"K25","ID":55018,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55018","ServerKey":"pl181","X":505,"Y":269},{"Bonus":0,"Continent":"K63","ID":55019,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55019","ServerKey":"pl181","X":343,"Y":669},{"Bonus":0,"Continent":"K67","ID":55020,"Name":"K67 Polis","PlayerID":698867483,"Points":5851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55020","ServerKey":"pl181","X":701,"Y":613},{"Bonus":0,"Continent":"K47","ID":55021,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55021","ServerKey":"pl181","X":724,"Y":495},{"Bonus":0,"Continent":"K57","ID":55022,"Name":"Wioska bart1234","PlayerID":1536231,"Points":329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55022","ServerKey":"pl181","X":724,"Y":526},{"Bonus":0,"Continent":"K25","ID":55023,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55023","ServerKey":"pl181","X":591,"Y":293},{"Bonus":0,"Continent":"K67","ID":55024,"Name":"K67 29","PlayerID":698867483,"Points":3062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55024","ServerKey":"pl181","X":706,"Y":607},{"Bonus":0,"Continent":"K47","ID":55025,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":3704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55025","ServerKey":"pl181","X":715,"Y":418},{"Bonus":0,"Continent":"K26","ID":55027,"Name":"XDX","PlayerID":699098531,"Points":3872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55027","ServerKey":"pl181","X":601,"Y":289},{"Bonus":0,"Continent":"K33","ID":55028,"Name":"C-002","PlayerID":699406247,"Points":5062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55028","ServerKey":"pl181","X":324,"Y":359},{"Bonus":0,"Continent":"K33","ID":55029,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":5003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55029","ServerKey":"pl181","X":372,"Y":316},{"Bonus":0,"Continent":"K57","ID":55030,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":3582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55030","ServerKey":"pl181","X":718,"Y":580},{"Bonus":0,"Continent":"K66","ID":55032,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55032","ServerKey":"pl181","X":683,"Y":637},{"Bonus":0,"Continent":"K63","ID":55033,"Name":"Minas Tirith","PlayerID":849100796,"Points":8983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55033","ServerKey":"pl181","X":300,"Y":613},{"Bonus":0,"Continent":"K52","ID":55034,"Name":"008 olk","PlayerID":197581,"Points":2740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55034","ServerKey":"pl181","X":276,"Y":552},{"Bonus":0,"Continent":"K76","ID":55035,"Name":"wyb...","PlayerID":699828685,"Points":3719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55035","ServerKey":"pl181","X":604,"Y":702},{"Bonus":0,"Continent":"K33","ID":55037,"Name":"Szulernia","PlayerID":7249451,"Points":211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55037","ServerKey":"pl181","X":379,"Y":362},{"Bonus":0,"Continent":"K36","ID":55038,"Name":"Wioska barbarzyƄska","PlayerID":6956104,"Points":1864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55038","ServerKey":"pl181","X":684,"Y":368},{"Bonus":0,"Continent":"K47","ID":55039,"Name":"[839] Odludzie","PlayerID":848985692,"Points":5106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55039","ServerKey":"pl181","X":719,"Y":444},{"Bonus":0,"Continent":"K66","ID":55040,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":6516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55040","ServerKey":"pl181","X":651,"Y":678},{"Bonus":0,"Continent":"K75","ID":55041,"Name":"0658","PlayerID":698659980,"Points":4612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55041","ServerKey":"pl181","X":588,"Y":714},{"Bonus":0,"Continent":"K57","ID":55042,"Name":"Nowa 59","PlayerID":698702991,"Points":4256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55042","ServerKey":"pl181","X":713,"Y":592},{"Bonus":0,"Continent":"K47","ID":55043,"Name":"Zorza","PlayerID":699785935,"Points":4179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55043","ServerKey":"pl181","X":708,"Y":414},{"Bonus":7,"Continent":"K24","ID":55044,"Name":"Poznan 002","PlayerID":1924718,"Points":985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55044","ServerKey":"pl181","X":412,"Y":285},{"Bonus":0,"Continent":"K42","ID":55045,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55045","ServerKey":"pl181","X":282,"Y":424},{"Bonus":0,"Continent":"K52","ID":55046,"Name":"034.Gloria Victis","PlayerID":848886973,"Points":4448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55046","ServerKey":"pl181","X":280,"Y":571},{"Bonus":0,"Continent":"K33","ID":55047,"Name":"Puerto Vayarte","PlayerID":3298902,"Points":1059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55047","ServerKey":"pl181","X":320,"Y":359},{"Bonus":0,"Continent":"K62","ID":55048,"Name":"ƚwieradĂłw","PlayerID":1276665,"Points":1082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55048","ServerKey":"pl181","X":296,"Y":604},{"Bonus":0,"Continent":"K66","ID":55049,"Name":"B001","PlayerID":9023703,"Points":3806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55049","ServerKey":"pl181","X":680,"Y":644},{"Bonus":0,"Continent":"K25","ID":55050,"Name":"Wioska barbarzyƄska","PlayerID":849101409,"Points":780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55050","ServerKey":"pl181","X":596,"Y":290},{"Bonus":0,"Continent":"K75","ID":55051,"Name":"Wioska barbarzyƄska","PlayerID":7581876,"Points":1880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55051","ServerKey":"pl181","X":578,"Y":718},{"Bonus":0,"Continent":"K33","ID":55052,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55052","ServerKey":"pl181","X":319,"Y":367},{"Bonus":0,"Continent":"K62","ID":55053,"Name":"Wioska barbarzyƄskaE","PlayerID":698178312,"Points":857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55053","ServerKey":"pl181","X":292,"Y":605},{"Bonus":0,"Continent":"K75","ID":55054,"Name":"#0078","PlayerID":1536231,"Points":3862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55054","ServerKey":"pl181","X":572,"Y":719},{"Bonus":0,"Continent":"K26","ID":55055,"Name":"Odour de camembert","PlayerID":849109116,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55055","ServerKey":"pl181","X":614,"Y":297},{"Bonus":0,"Continent":"K36","ID":55056,"Name":"I001A","PlayerID":9314079,"Points":1944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55056","ServerKey":"pl181","X":692,"Y":382},{"Bonus":0,"Continent":"K63","ID":55057,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55057","ServerKey":"pl181","X":375,"Y":688},{"Bonus":0,"Continent":"K36","ID":55059,"Name":"B020","PlayerID":8740199,"Points":4254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55059","ServerKey":"pl181","X":629,"Y":307},{"Bonus":0,"Continent":"K74","ID":55060,"Name":"0019 Wioska barbarzyƄska","PlayerID":699656989,"Points":962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55060","ServerKey":"pl181","X":489,"Y":733},{"Bonus":0,"Continent":"K52","ID":55061,"Name":"New WorldA","PlayerID":849084005,"Points":2133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55061","ServerKey":"pl181","X":270,"Y":530},{"Bonus":7,"Continent":"K24","ID":55062,"Name":"Osada koczownikĂłw","PlayerID":698231772,"Points":3836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55062","ServerKey":"pl181","X":404,"Y":289},{"Bonus":0,"Continent":"K57","ID":55063,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":9727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55063","ServerKey":"pl181","X":717,"Y":550},{"Bonus":0,"Continent":"K75","ID":55065,"Name":"Wiocha 5","PlayerID":849045675,"Points":9321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55065","ServerKey":"pl181","X":559,"Y":725},{"Bonus":0,"Continent":"K54","ID":55066,"Name":"Wioska barbarzyƄska","PlayerID":849028088,"Points":7421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55066","ServerKey":"pl181","X":439,"Y":587},{"Bonus":0,"Continent":"K36","ID":55067,"Name":"t025","PlayerID":2262902,"Points":2090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55067","ServerKey":"pl181","X":666,"Y":350},{"Bonus":0,"Continent":"K47","ID":55068,"Name":"Jehu_Kingdom_68","PlayerID":8785314,"Points":971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55068","ServerKey":"pl181","X":714,"Y":428},{"Bonus":0,"Continent":"K36","ID":55069,"Name":"ƚw181*005","PlayerID":959179,"Points":1931,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55069","ServerKey":"pl181","X":663,"Y":342},{"Bonus":0,"Continent":"K63","ID":55070,"Name":"O106","PlayerID":272173,"Points":1138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55070","ServerKey":"pl181","X":309,"Y":635},{"Bonus":0,"Continent":"K23","ID":55071,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55071","ServerKey":"pl181","X":391,"Y":299},{"Bonus":0,"Continent":"K52","ID":55072,"Name":"Wioska barbarzyƄska (malwin)","PlayerID":698769107,"Points":1878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55072","ServerKey":"pl181","X":278,"Y":553},{"Bonus":0,"Continent":"K36","ID":55073,"Name":"osada 4","PlayerID":7357503,"Points":2264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55073","ServerKey":"pl181","X":663,"Y":348},{"Bonus":0,"Continent":"K46","ID":55074,"Name":"40. EZETH","PlayerID":699804790,"Points":3689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55074","ServerKey":"pl181","X":680,"Y":497},{"Bonus":0,"Continent":"K57","ID":55075,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55075","ServerKey":"pl181","X":731,"Y":521},{"Bonus":0,"Continent":"K63","ID":55076,"Name":"02Wioska barbarzyƄska","PlayerID":699443920,"Points":7464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55076","ServerKey":"pl181","X":360,"Y":678},{"Bonus":0,"Continent":"K26","ID":55077,"Name":"XDX","PlayerID":699098531,"Points":3776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55077","ServerKey":"pl181","X":603,"Y":293},{"Bonus":0,"Continent":"K75","ID":55078,"Name":"#202 C","PlayerID":9037756,"Points":4158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55078","ServerKey":"pl181","X":515,"Y":733},{"Bonus":0,"Continent":"K75","ID":55080,"Name":"-22-","PlayerID":849032414,"Points":4032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55080","ServerKey":"pl181","X":590,"Y":705},{"Bonus":0,"Continent":"K24","ID":55081,"Name":"Wioska a6","PlayerID":6343784,"Points":1840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55081","ServerKey":"pl181","X":432,"Y":277},{"Bonus":0,"Continent":"K25","ID":55082,"Name":"101 Wioska barbarzyƄska","PlayerID":699854484,"Points":4558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55082","ServerKey":"pl181","X":576,"Y":284},{"Bonus":0,"Continent":"K46","ID":55083,"Name":"41. Justys3828","PlayerID":699804790,"Points":2342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55083","ServerKey":"pl181","X":673,"Y":489},{"Bonus":0,"Continent":"K25","ID":55084,"Name":"PPF-22","PlayerID":1424656,"Points":2986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55084","ServerKey":"pl181","X":536,"Y":275},{"Bonus":0,"Continent":"K42","ID":55086,"Name":"Avanti!","PlayerID":698625834,"Points":2759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55086","ServerKey":"pl181","X":275,"Y":467},{"Bonus":0,"Continent":"K24","ID":55088,"Name":"Wioska oracz1","PlayerID":260666,"Points":8435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55088","ServerKey":"pl181","X":480,"Y":276},{"Bonus":0,"Continent":"K25","ID":55089,"Name":"043 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55089","ServerKey":"pl181","X":544,"Y":281},{"Bonus":0,"Continent":"K63","ID":55090,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55090","ServerKey":"pl181","X":327,"Y":648},{"Bonus":0,"Continent":"K57","ID":55091,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":9760,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55091","ServerKey":"pl181","X":720,"Y":555},{"Bonus":0,"Continent":"K47","ID":55092,"Name":"073. Wioska barbarzyƄska","PlayerID":7494497,"Points":5269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55092","ServerKey":"pl181","X":730,"Y":463},{"Bonus":0,"Continent":"K52","ID":55094,"Name":"002","PlayerID":848892804,"Points":967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55094","ServerKey":"pl181","X":292,"Y":579},{"Bonus":0,"Continent":"K66","ID":55095,"Name":"Nowa Baza 13","PlayerID":698353083,"Points":6096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55095","ServerKey":"pl181","X":616,"Y":697},{"Bonus":0,"Continent":"K75","ID":55097,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":9085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55097","ServerKey":"pl181","X":542,"Y":727},{"Bonus":0,"Continent":"K75","ID":55098,"Name":"wy...","PlayerID":699828685,"Points":4171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55098","ServerKey":"pl181","X":598,"Y":703},{"Bonus":0,"Continent":"K24","ID":55099,"Name":"o.o 2","PlayerID":6857973,"Points":1366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55099","ServerKey":"pl181","X":442,"Y":277},{"Bonus":0,"Continent":"K57","ID":55100,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55100","ServerKey":"pl181","X":723,"Y":528},{"Bonus":0,"Continent":"K63","ID":55101,"Name":"$015$ Dirty dancer","PlayerID":699550876,"Points":506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55101","ServerKey":"pl181","X":305,"Y":627},{"Bonus":0,"Continent":"K64","ID":55102,"Name":"Hejka","PlayerID":848883684,"Points":2835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55102","ServerKey":"pl181","X":453,"Y":656},{"Bonus":0,"Continent":"K24","ID":55103,"Name":"Wioska barbarzyƄska","PlayerID":699196829,"Points":2191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55103","ServerKey":"pl181","X":473,"Y":278},{"Bonus":0,"Continent":"K65","ID":55104,"Name":"NBT 1","PlayerID":849047044,"Points":5812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55104","ServerKey":"pl181","X":596,"Y":694},{"Bonus":0,"Continent":"K33","ID":55105,"Name":"NOT?","PlayerID":9236866,"Points":1478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55105","ServerKey":"pl181","X":314,"Y":362},{"Bonus":0,"Continent":"K75","ID":55106,"Name":"-35-","PlayerID":849032414,"Points":3019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55106","ServerKey":"pl181","X":565,"Y":716},{"Bonus":0,"Continent":"K66","ID":55107,"Name":"komandos","PlayerID":7976264,"Points":3058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55107","ServerKey":"pl181","X":668,"Y":660},{"Bonus":0,"Continent":"K52","ID":55108,"Name":"C0355","PlayerID":8841266,"Points":1537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55108","ServerKey":"pl181","X":277,"Y":533},{"Bonus":0,"Continent":"K25","ID":55109,"Name":".achim.","PlayerID":6936607,"Points":4998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55109","ServerKey":"pl181","X":566,"Y":287},{"Bonus":0,"Continent":"K32","ID":55110,"Name":"mirron","PlayerID":849089601,"Points":5158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55110","ServerKey":"pl181","X":299,"Y":396},{"Bonus":0,"Continent":"K33","ID":55111,"Name":"Z 07","PlayerID":6884492,"Points":2141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55111","ServerKey":"pl181","X":383,"Y":310},{"Bonus":0,"Continent":"K47","ID":55112,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55112","ServerKey":"pl181","X":707,"Y":404},{"Bonus":0,"Continent":"K36","ID":55114,"Name":"Wioska barbarzyƄska","PlayerID":849057764,"Points":1493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55114","ServerKey":"pl181","X":695,"Y":388},{"Bonus":0,"Continent":"K74","ID":55115,"Name":"New World","PlayerID":698152377,"Points":4499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55115","ServerKey":"pl181","X":423,"Y":717},{"Bonus":0,"Continent":"K66","ID":55116,"Name":"092","PlayerID":699373599,"Points":860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55116","ServerKey":"pl181","X":696,"Y":619},{"Bonus":0,"Continent":"K25","ID":55117,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55117","ServerKey":"pl181","X":597,"Y":297},{"Bonus":0,"Continent":"K25","ID":55118,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":2387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55118","ServerKey":"pl181","X":593,"Y":288},{"Bonus":0,"Continent":"K67","ID":55119,"Name":"K67 11","PlayerID":698867483,"Points":4657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55119","ServerKey":"pl181","X":701,"Y":610},{"Bonus":0,"Continent":"K66","ID":55120,"Name":"#167#","PlayerID":692803,"Points":893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55120","ServerKey":"pl181","X":659,"Y":668},{"Bonus":0,"Continent":"K57","ID":55121,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55121","ServerKey":"pl181","X":718,"Y":548},{"Bonus":0,"Continent":"K63","ID":55122,"Name":"060 Wioska barbarzyƄska","PlayerID":6354098,"Points":3919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55122","ServerKey":"pl181","X":343,"Y":662},{"Bonus":0,"Continent":"K33","ID":55124,"Name":"Wioska23","PlayerID":699711926,"Points":4781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55124","ServerKey":"pl181","X":330,"Y":349},{"Bonus":0,"Continent":"K75","ID":55125,"Name":"181","PlayerID":849065606,"Points":1109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55125","ServerKey":"pl181","X":504,"Y":726},{"Bonus":0,"Continent":"K36","ID":55126,"Name":"Wiocha 2","PlayerID":699803189,"Points":1351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55126","ServerKey":"pl181","X":689,"Y":376},{"Bonus":0,"Continent":"K74","ID":55127,"Name":"075 - Budowanko!","PlayerID":7540891,"Points":1090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55127","ServerKey":"pl181","X":496,"Y":729},{"Bonus":0,"Continent":"K36","ID":55128,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":4029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55128","ServerKey":"pl181","X":692,"Y":378},{"Bonus":0,"Continent":"K57","ID":55129,"Name":"181 001","PlayerID":7272223,"Points":9566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55129","ServerKey":"pl181","X":720,"Y":560},{"Bonus":0,"Continent":"K57","ID":55130,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":11283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55130","ServerKey":"pl181","X":722,"Y":553},{"Bonus":0,"Continent":"K42","ID":55131,"Name":"marus1000","PlayerID":878961,"Points":8752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55131","ServerKey":"pl181","X":296,"Y":455},{"Bonus":0,"Continent":"K33","ID":55132,"Name":"Wilcza Wolnoƛć","PlayerID":848888787,"Points":197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55132","ServerKey":"pl181","X":318,"Y":358},{"Bonus":0,"Continent":"K76","ID":55133,"Name":"budowa 07","PlayerID":7139820,"Points":4339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55133","ServerKey":"pl181","X":610,"Y":705},{"Bonus":0,"Continent":"K74","ID":55134,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55134","ServerKey":"pl181","X":434,"Y":716},{"Bonus":0,"Continent":"K42","ID":55135,"Name":"baska","PlayerID":849089601,"Points":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55135","ServerKey":"pl181","X":296,"Y":400},{"Bonus":0,"Continent":"K66","ID":55136,"Name":"*025*","PlayerID":1205898,"Points":2772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55136","ServerKey":"pl181","X":685,"Y":627},{"Bonus":0,"Continent":"K52","ID":55137,"Name":"63. Wioska 63","PlayerID":849091769,"Points":3504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55137","ServerKey":"pl181","X":279,"Y":563},{"Bonus":0,"Continent":"K42","ID":55138,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":4447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55138","ServerKey":"pl181","X":277,"Y":479},{"Bonus":0,"Continent":"K33","ID":55139,"Name":"Bunu 2","PlayerID":849050087,"Points":798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55139","ServerKey":"pl181","X":311,"Y":364},{"Bonus":0,"Continent":"K63","ID":55140,"Name":"O150","PlayerID":272173,"Points":2281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55140","ServerKey":"pl181","X":317,"Y":627},{"Bonus":0,"Continent":"K36","ID":55141,"Name":"B021","PlayerID":8740199,"Points":3404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55141","ServerKey":"pl181","X":630,"Y":310},{"Bonus":0,"Continent":"K33","ID":55142,"Name":"015","PlayerID":849101205,"Points":1430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55142","ServerKey":"pl181","X":339,"Y":342},{"Bonus":0,"Continent":"K75","ID":55143,"Name":"## 114","PlayerID":849087855,"Points":2505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55143","ServerKey":"pl181","X":583,"Y":718},{"Bonus":0,"Continent":"K75","ID":55144,"Name":"#206 C","PlayerID":9037756,"Points":1819,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55144","ServerKey":"pl181","X":514,"Y":733},{"Bonus":0,"Continent":"K52","ID":55145,"Name":"@@3","PlayerID":849113546,"Points":1293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55145","ServerKey":"pl181","X":269,"Y":506},{"Bonus":0,"Continent":"K57","ID":55146,"Name":"CastAway #021","PlayerID":9314079,"Points":3589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55146","ServerKey":"pl181","X":711,"Y":592},{"Bonus":0,"Continent":"K74","ID":55147,"Name":"Wioska barbarzyƄska","PlayerID":698620694,"Points":4548,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55147","ServerKey":"pl181","X":444,"Y":720},{"Bonus":0,"Continent":"K42","ID":55148,"Name":"rivendell","PlayerID":698677650,"Points":906,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55148","ServerKey":"pl181","X":290,"Y":401},{"Bonus":0,"Continent":"K63","ID":55149,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":4556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55149","ServerKey":"pl181","X":368,"Y":689},{"Bonus":0,"Continent":"K52","ID":55150,"Name":"C0293","PlayerID":8841266,"Points":4185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55150","ServerKey":"pl181","X":275,"Y":521},{"Bonus":0,"Continent":"K75","ID":55151,"Name":"-33-","PlayerID":849032414,"Points":1001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55151","ServerKey":"pl181","X":587,"Y":708},{"Bonus":0,"Continent":"K63","ID":55152,"Name":"Wioska Mad World","PlayerID":699635774,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55152","ServerKey":"pl181","X":327,"Y":657},{"Bonus":0,"Continent":"K63","ID":55153,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55153","ServerKey":"pl181","X":357,"Y":681},{"Bonus":0,"Continent":"K33","ID":55154,"Name":"Wioska barbarzyƄska","PlayerID":699794765,"Points":1087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55154","ServerKey":"pl181","X":307,"Y":387},{"Bonus":0,"Continent":"K26","ID":55155,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55155","ServerKey":"pl181","X":602,"Y":294},{"Bonus":0,"Continent":"K63","ID":55156,"Name":"070 Wioska barbarzyƄska","PlayerID":6354098,"Points":5353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55156","ServerKey":"pl181","X":340,"Y":664},{"Bonus":0,"Continent":"K63","ID":55157,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":3079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55157","ServerKey":"pl181","X":323,"Y":645},{"Bonus":0,"Continent":"K33","ID":55158,"Name":"Zaplecze Barba 039","PlayerID":699796330,"Points":3238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55158","ServerKey":"pl181","X":349,"Y":330},{"Bonus":0,"Continent":"K24","ID":55159,"Name":"Pcim","PlayerID":849100083,"Points":9524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55159","ServerKey":"pl181","X":464,"Y":280},{"Bonus":0,"Continent":"K63","ID":55160,"Name":"072 Wioska barbarzyƄska","PlayerID":6354098,"Points":3482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55160","ServerKey":"pl181","X":338,"Y":668},{"Bonus":0,"Continent":"K52","ID":55161,"Name":"Wyspa 023","PlayerID":225023,"Points":1253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55161","ServerKey":"pl181","X":282,"Y":566},{"Bonus":0,"Continent":"K57","ID":55162,"Name":"CastAway #014","PlayerID":9314079,"Points":5707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55162","ServerKey":"pl181","X":709,"Y":586},{"Bonus":0,"Continent":"K33","ID":55163,"Name":"Wioska Deff","PlayerID":698913618,"Points":2549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55163","ServerKey":"pl181","X":348,"Y":330},{"Bonus":0,"Continent":"K33","ID":55164,"Name":"Lecymy DUR","PlayerID":6169408,"Points":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55164","ServerKey":"pl181","X":338,"Y":332},{"Bonus":0,"Continent":"K74","ID":55165,"Name":"FP049","PlayerID":699605333,"Points":5427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55165","ServerKey":"pl181","X":444,"Y":725},{"Bonus":0,"Continent":"K47","ID":55166,"Name":"X005","PlayerID":699722599,"Points":6420,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55166","ServerKey":"pl181","X":712,"Y":426},{"Bonus":0,"Continent":"K75","ID":55167,"Name":"-31-","PlayerID":849032414,"Points":1733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55167","ServerKey":"pl181","X":575,"Y":718},{"Bonus":0,"Continent":"K33","ID":55168,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55168","ServerKey":"pl181","X":312,"Y":372},{"Bonus":0,"Continent":"K47","ID":55169,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55169","ServerKey":"pl181","X":714,"Y":406},{"Bonus":0,"Continent":"K36","ID":55170,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":5497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55170","ServerKey":"pl181","X":651,"Y":326},{"Bonus":0,"Continent":"K36","ID":55171,"Name":"0136","PlayerID":698416970,"Points":929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55171","ServerKey":"pl181","X":689,"Y":377},{"Bonus":0,"Continent":"K24","ID":55172,"Name":"Wioska b 001","PlayerID":6343784,"Points":1610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55172","ServerKey":"pl181","X":421,"Y":284},{"Bonus":0,"Continent":"K42","ID":55173,"Name":"Wioska barbarzyƄska","PlayerID":699812351,"Points":1257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55173","ServerKey":"pl181","X":280,"Y":465},{"Bonus":0,"Continent":"K75","ID":55174,"Name":"wy...","PlayerID":699828685,"Points":3833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55174","ServerKey":"pl181","X":596,"Y":703},{"Bonus":2,"Continent":"K66","ID":55176,"Name":"WschĂłd 001","PlayerID":698562644,"Points":4958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55176","ServerKey":"pl181","X":699,"Y":620},{"Bonus":0,"Continent":"K42","ID":55177,"Name":"Granica","PlayerID":848977600,"Points":2229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55177","ServerKey":"pl181","X":270,"Y":462},{"Bonus":0,"Continent":"K47","ID":55178,"Name":"074. Wioska barbarzyƄska","PlayerID":7494497,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55178","ServerKey":"pl181","X":730,"Y":461},{"Bonus":0,"Continent":"K66","ID":55179,"Name":"Ditas","PlayerID":849048856,"Points":584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55179","ServerKey":"pl181","X":667,"Y":661},{"Bonus":0,"Continent":"K66","ID":55180,"Name":"Wioska 005","PlayerID":6472706,"Points":3447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55180","ServerKey":"pl181","X":682,"Y":633},{"Bonus":0,"Continent":"K75","ID":55181,"Name":"ZZZ .::. cinek3456/08","PlayerID":33900,"Points":5123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55181","ServerKey":"pl181","X":585,"Y":707},{"Bonus":0,"Continent":"K74","ID":55182,"Name":"074 - Budowanko!","PlayerID":7540891,"Points":476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55182","ServerKey":"pl181","X":477,"Y":727},{"Bonus":0,"Continent":"K25","ID":55183,"Name":"079 Wioska barbarzyƄska","PlayerID":699854484,"Points":7535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55183","ServerKey":"pl181","X":540,"Y":280},{"Bonus":0,"Continent":"K75","ID":55184,"Name":"Kapitol_20","PlayerID":606407,"Points":5216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55184","ServerKey":"pl181","X":506,"Y":729},{"Bonus":0,"Continent":"K66","ID":55185,"Name":"090","PlayerID":699373599,"Points":1217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55185","ServerKey":"pl181","X":690,"Y":632},{"Bonus":0,"Continent":"K52","ID":55186,"Name":"C0298","PlayerID":8841266,"Points":3806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55186","ServerKey":"pl181","X":274,"Y":552},{"Bonus":7,"Continent":"K63","ID":55187,"Name":"025","PlayerID":699356968,"Points":1539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55187","ServerKey":"pl181","X":304,"Y":617},{"Bonus":0,"Continent":"K74","ID":55188,"Name":"KWB","PlayerID":9003698,"Points":10616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55188","ServerKey":"pl181","X":445,"Y":719},{"Bonus":0,"Continent":"K33","ID":55189,"Name":"Wioska barbarzyƄska","PlayerID":849100289,"Points":1521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55189","ServerKey":"pl181","X":324,"Y":357},{"Bonus":6,"Continent":"K42","ID":55190,"Name":"Avanti!","PlayerID":698625834,"Points":6281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55190","ServerKey":"pl181","X":274,"Y":487},{"Bonus":0,"Continent":"K36","ID":55191,"Name":"TOLCIA 3","PlayerID":699868739,"Points":1286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55191","ServerKey":"pl181","X":643,"Y":317},{"Bonus":0,"Continent":"K47","ID":55192,"Name":"Wioska kondzio95rrr","PlayerID":849095599,"Points":1344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55192","ServerKey":"pl181","X":723,"Y":451},{"Bonus":0,"Continent":"K36","ID":55193,"Name":"Wioska014","PlayerID":698768565,"Points":7173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55193","ServerKey":"pl181","X":693,"Y":387},{"Bonus":0,"Continent":"K75","ID":55194,"Name":"Ave Why!","PlayerID":699121671,"Points":2751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55194","ServerKey":"pl181","X":523,"Y":731},{"Bonus":0,"Continent":"K42","ID":55195,"Name":"Dumnoryks","PlayerID":848998530,"Points":1457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55195","ServerKey":"pl181","X":290,"Y":400},{"Bonus":0,"Continent":"K25","ID":55196,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55196","ServerKey":"pl181","X":592,"Y":292},{"Bonus":0,"Continent":"K52","ID":55197,"Name":"Cisza","PlayerID":698769107,"Points":1738,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55197","ServerKey":"pl181","X":287,"Y":571},{"Bonus":0,"Continent":"K47","ID":55198,"Name":"Wioska Johnny B","PlayerID":9282669,"Points":4958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55198","ServerKey":"pl181","X":723,"Y":434},{"Bonus":0,"Continent":"K75","ID":55199,"Name":"Osada myself i tylko jej :)","PlayerID":699828685,"Points":5786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55199","ServerKey":"pl181","X":597,"Y":712},{"Bonus":0,"Continent":"K33","ID":55200,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":6474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55200","ServerKey":"pl181","X":323,"Y":350},{"Bonus":0,"Continent":"K42","ID":55201,"Name":"odek 181","PlayerID":699285160,"Points":5650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55201","ServerKey":"pl181","X":292,"Y":445},{"Bonus":0,"Continent":"K75","ID":55202,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":3138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55202","ServerKey":"pl181","X":539,"Y":723},{"Bonus":0,"Continent":"K36","ID":55203,"Name":"aaaaaa","PlayerID":7646152,"Points":1795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55203","ServerKey":"pl181","X":665,"Y":345},{"Bonus":0,"Continent":"K47","ID":55204,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55204","ServerKey":"pl181","X":724,"Y":479},{"Bonus":0,"Continent":"K33","ID":55205,"Name":"Wioska barbarzyƄska","PlayerID":699595556,"Points":604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55205","ServerKey":"pl181","X":300,"Y":384},{"Bonus":0,"Continent":"K63","ID":55206,"Name":"Psycha Siada","PlayerID":8099868,"Points":4681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55206","ServerKey":"pl181","X":330,"Y":650},{"Bonus":0,"Continent":"K53","ID":55207,"Name":"Brat447","PlayerID":699262350,"Points":1716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55207","ServerKey":"pl181","X":369,"Y":520},{"Bonus":0,"Continent":"K42","ID":55208,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55208","ServerKey":"pl181","X":290,"Y":412},{"Bonus":0,"Continent":"K74","ID":55209,"Name":"Hor1","PlayerID":699864013,"Points":5371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55209","ServerKey":"pl181","X":484,"Y":731},{"Bonus":0,"Continent":"K36","ID":55210,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55210","ServerKey":"pl181","X":669,"Y":339},{"Bonus":0,"Continent":"K36","ID":55211,"Name":"Wioska 009","PlayerID":7226782,"Points":3012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55211","ServerKey":"pl181","X":670,"Y":342},{"Bonus":0,"Continent":"K54","ID":55212,"Name":"Pobozowisko","PlayerID":699513260,"Points":74,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55212","ServerKey":"pl181","X":406,"Y":596},{"Bonus":0,"Continent":"K63","ID":55213,"Name":"Telimena 2.","PlayerID":699037086,"Points":2024,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55213","ServerKey":"pl181","X":307,"Y":632},{"Bonus":0,"Continent":"K42","ID":55214,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55214","ServerKey":"pl181","X":286,"Y":418},{"Bonus":0,"Continent":"K74","ID":55215,"Name":"Wioska miromistrz","PlayerID":848999671,"Points":8449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55215","ServerKey":"pl181","X":487,"Y":725},{"Bonus":0,"Continent":"K42","ID":55216,"Name":"Avanti!","PlayerID":698625834,"Points":6025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55216","ServerKey":"pl181","X":271,"Y":481},{"Bonus":0,"Continent":"K47","ID":55217,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":1824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55217","ServerKey":"pl181","X":720,"Y":426},{"Bonus":0,"Continent":"K75","ID":55218,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":4552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55218","ServerKey":"pl181","X":547,"Y":725},{"Bonus":0,"Continent":"K66","ID":55219,"Name":"Sony 911","PlayerID":1415009,"Points":863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55219","ServerKey":"pl181","X":660,"Y":670},{"Bonus":0,"Continent":"K25","ID":55220,"Name":"PPF-26","PlayerID":1424656,"Points":2241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55220","ServerKey":"pl181","X":534,"Y":278},{"Bonus":0,"Continent":"K57","ID":55221,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55221","ServerKey":"pl181","X":717,"Y":553},{"Bonus":0,"Continent":"K63","ID":55222,"Name":"Wioska krzyĆŒak1","PlayerID":699826996,"Points":1128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55222","ServerKey":"pl181","X":367,"Y":689},{"Bonus":0,"Continent":"K33","ID":55223,"Name":"Nagato - B 003","PlayerID":849094586,"Points":2088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55223","ServerKey":"pl181","X":315,"Y":369},{"Bonus":4,"Continent":"K36","ID":55225,"Name":"*013","PlayerID":7758085,"Points":4874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55225","ServerKey":"pl181","X":678,"Y":364},{"Bonus":0,"Continent":"K62","ID":55226,"Name":"Wioska barbarzyƄska","PlayerID":699604515,"Points":351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55226","ServerKey":"pl181","X":296,"Y":607},{"Bonus":0,"Continent":"K36","ID":55227,"Name":"E002","PlayerID":699299123,"Points":4148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55227","ServerKey":"pl181","X":665,"Y":335},{"Bonus":0,"Continent":"K75","ID":55228,"Name":"0659","PlayerID":698659980,"Points":6011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55228","ServerKey":"pl181","X":587,"Y":715},{"Bonus":0,"Continent":"K47","ID":55229,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":1613,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55229","ServerKey":"pl181","X":723,"Y":476},{"Bonus":0,"Continent":"K42","ID":55230,"Name":"[0189]","PlayerID":8630972,"Points":6710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55230","ServerKey":"pl181","X":275,"Y":495},{"Bonus":0,"Continent":"K25","ID":55231,"Name":"--054--","PlayerID":542253,"Points":979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55231","ServerKey":"pl181","X":578,"Y":288},{"Bonus":0,"Continent":"K24","ID":55232,"Name":"[0171]","PlayerID":8630972,"Points":7380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55232","ServerKey":"pl181","X":446,"Y":283},{"Bonus":0,"Continent":"K36","ID":55233,"Name":"Wioska barbarzyƄska","PlayerID":699679662,"Points":1534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55233","ServerKey":"pl181","X":628,"Y":312},{"Bonus":0,"Continent":"K25","ID":55234,"Name":".achim.","PlayerID":6936607,"Points":2666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55234","ServerKey":"pl181","X":581,"Y":282},{"Bonus":0,"Continent":"K66","ID":55235,"Name":"A040","PlayerID":9023703,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55235","ServerKey":"pl181","X":606,"Y":645},{"Bonus":0,"Continent":"K36","ID":55236,"Name":"kamilkaze135 #16","PlayerID":699705601,"Points":2744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55236","ServerKey":"pl181","X":686,"Y":371},{"Bonus":0,"Continent":"K74","ID":55237,"Name":"Wioska Vasqu","PlayerID":8616713,"Points":206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55237","ServerKey":"pl181","X":415,"Y":714},{"Bonus":0,"Continent":"K37","ID":55238,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":3040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55238","ServerKey":"pl181","X":702,"Y":382},{"Bonus":1,"Continent":"K26","ID":55239,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55239","ServerKey":"pl181","X":617,"Y":298},{"Bonus":0,"Continent":"K63","ID":55240,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":5427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55240","ServerKey":"pl181","X":356,"Y":680},{"Bonus":0,"Continent":"K75","ID":55241,"Name":"#0074","PlayerID":1536231,"Points":4813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55241","ServerKey":"pl181","X":578,"Y":710},{"Bonus":0,"Continent":"K66","ID":55243,"Name":"9. Nowy ƚwiat","PlayerID":699828685,"Points":1503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55243","ServerKey":"pl181","X":606,"Y":699},{"Bonus":0,"Continent":"K57","ID":55244,"Name":"097","PlayerID":7085502,"Points":3791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55244","ServerKey":"pl181","X":732,"Y":506},{"Bonus":0,"Continent":"K62","ID":55245,"Name":"Wioska acer123","PlayerID":848969160,"Points":1259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55245","ServerKey":"pl181","X":297,"Y":602},{"Bonus":0,"Continent":"K24","ID":55246,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55246","ServerKey":"pl181","X":490,"Y":273},{"Bonus":6,"Continent":"K52","ID":55247,"Name":"C0235","PlayerID":8841266,"Points":6559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55247","ServerKey":"pl181","X":281,"Y":542},{"Bonus":0,"Continent":"K63","ID":55248,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55248","ServerKey":"pl181","X":320,"Y":634},{"Bonus":0,"Continent":"K42","ID":55249,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":4546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55249","ServerKey":"pl181","X":277,"Y":463},{"Bonus":0,"Continent":"K24","ID":55250,"Name":"224...NORTH","PlayerID":6920960,"Points":2455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55250","ServerKey":"pl181","X":453,"Y":280},{"Bonus":0,"Continent":"K74","ID":55251,"Name":"064 - Budowanko!","PlayerID":7540891,"Points":5185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55251","ServerKey":"pl181","X":499,"Y":731},{"Bonus":0,"Continent":"K63","ID":55252,"Name":"Wioska z Pracza 1","PlayerID":8916982,"Points":2721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55252","ServerKey":"pl181","X":312,"Y":620},{"Bonus":0,"Continent":"K52","ID":55253,"Name":"New WorldA","PlayerID":849084005,"Points":2717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55253","ServerKey":"pl181","X":274,"Y":544},{"Bonus":0,"Continent":"K47","ID":55254,"Name":"Wioska barbarzyƄska","PlayerID":848976034,"Points":1707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55254","ServerKey":"pl181","X":718,"Y":427},{"Bonus":0,"Continent":"K57","ID":55255,"Name":"zzz03","PlayerID":3986807,"Points":806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55255","ServerKey":"pl181","X":711,"Y":598},{"Bonus":0,"Continent":"K74","ID":55256,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55256","ServerKey":"pl181","X":431,"Y":717},{"Bonus":0,"Continent":"K42","ID":55257,"Name":"Wioska dabek","PlayerID":699795698,"Points":8797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55257","ServerKey":"pl181","X":269,"Y":486},{"Bonus":0,"Continent":"K33","ID":55258,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55258","ServerKey":"pl181","X":306,"Y":376},{"Bonus":0,"Continent":"K66","ID":55259,"Name":"045","PlayerID":2323859,"Points":1797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55259","ServerKey":"pl181","X":678,"Y":648},{"Bonus":0,"Continent":"K24","ID":55260,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55260","ServerKey":"pl181","X":410,"Y":286},{"Bonus":0,"Continent":"K25","ID":55261,"Name":"--056--","PlayerID":542253,"Points":837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55261","ServerKey":"pl181","X":588,"Y":287},{"Bonus":0,"Continent":"K74","ID":55262,"Name":"018 - Budowanko!","PlayerID":7540891,"Points":6950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55262","ServerKey":"pl181","X":488,"Y":728},{"Bonus":0,"Continent":"K37","ID":55263,"Name":"Sqn","PlayerID":699598425,"Points":2990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55263","ServerKey":"pl181","X":706,"Y":396},{"Bonus":0,"Continent":"K42","ID":55264,"Name":"szymek5","PlayerID":1323424,"Points":1477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55264","ServerKey":"pl181","X":283,"Y":417},{"Bonus":0,"Continent":"K47","ID":55265,"Name":"Wioska barbarzyƄska","PlayerID":8459255,"Points":3583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55265","ServerKey":"pl181","X":712,"Y":412},{"Bonus":0,"Continent":"K24","ID":55266,"Name":"#0248 colt9","PlayerID":1238300,"Points":5206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55266","ServerKey":"pl181","X":433,"Y":281},{"Bonus":0,"Continent":"K45","ID":55267,"Name":"201","PlayerID":849064752,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55267","ServerKey":"pl181","X":570,"Y":409},{"Bonus":0,"Continent":"K47","ID":55268,"Name":"backstage 1","PlayerID":849099696,"Points":3449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55268","ServerKey":"pl181","X":706,"Y":401},{"Bonus":0,"Continent":"K74","ID":55269,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55269","ServerKey":"pl181","X":427,"Y":719},{"Bonus":0,"Continent":"K74","ID":55270,"Name":"Bagno 39","PlayerID":848883684,"Points":3249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55270","ServerKey":"pl181","X":460,"Y":729},{"Bonus":0,"Continent":"K42","ID":55271,"Name":"Wioska DZiki250","PlayerID":848907771,"Points":6429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55271","ServerKey":"pl181","X":275,"Y":455},{"Bonus":0,"Continent":"K42","ID":55272,"Name":"Za lasami","PlayerID":699821629,"Points":2394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55272","ServerKey":"pl181","X":283,"Y":413},{"Bonus":0,"Continent":"K24","ID":55273,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55273","ServerKey":"pl181","X":488,"Y":271},{"Bonus":0,"Continent":"K74","ID":55275,"Name":"New World","PlayerID":698152377,"Points":8288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55275","ServerKey":"pl181","X":421,"Y":717},{"Bonus":0,"Continent":"K73","ID":55276,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55276","ServerKey":"pl181","X":389,"Y":700},{"Bonus":4,"Continent":"K33","ID":55277,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":5922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55277","ServerKey":"pl181","X":322,"Y":351},{"Bonus":0,"Continent":"K67","ID":55278,"Name":"K67 05","PlayerID":698867483,"Points":4711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55278","ServerKey":"pl181","X":702,"Y":618},{"Bonus":0,"Continent":"K42","ID":55279,"Name":"Avanti!","PlayerID":698625834,"Points":2639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55279","ServerKey":"pl181","X":270,"Y":468},{"Bonus":0,"Continent":"K25","ID":55280,"Name":"GrĂłd BrĂłdno","PlayerID":1568908,"Points":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55280","ServerKey":"pl181","X":536,"Y":279},{"Bonus":0,"Continent":"K52","ID":55281,"Name":"New WorldA","PlayerID":849084005,"Points":2803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55281","ServerKey":"pl181","X":272,"Y":542},{"Bonus":0,"Continent":"K33","ID":55282,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55282","ServerKey":"pl181","X":310,"Y":368},{"Bonus":0,"Continent":"K36","ID":55283,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55283","ServerKey":"pl181","X":684,"Y":362},{"Bonus":0,"Continent":"K66","ID":55284,"Name":"02# Wioska barbarzyƄska","PlayerID":8444698,"Points":1653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55284","ServerKey":"pl181","X":680,"Y":643},{"Bonus":0,"Continent":"K76","ID":55285,"Name":"wy...","PlayerID":699828685,"Points":4490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55285","ServerKey":"pl181","X":600,"Y":704},{"Bonus":0,"Continent":"K47","ID":55286,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":1025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55286","ServerKey":"pl181","X":729,"Y":453},{"Bonus":0,"Continent":"K42","ID":55287,"Name":"Wioska barbarzyƄska","PlayerID":849095814,"Points":3337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55287","ServerKey":"pl181","X":271,"Y":476},{"Bonus":0,"Continent":"K33","ID":55288,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55288","ServerKey":"pl181","X":323,"Y":364},{"Bonus":0,"Continent":"K75","ID":55289,"Name":"#0073","PlayerID":1536231,"Points":4003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55289","ServerKey":"pl181","X":572,"Y":720},{"Bonus":0,"Continent":"K36","ID":55290,"Name":"seafighter1","PlayerID":7899232,"Points":7843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55290","ServerKey":"pl181","X":683,"Y":367},{"Bonus":0,"Continent":"K25","ID":55291,"Name":"Piorunek1996 Wieƛ ..2..","PlayerID":6118079,"Points":1649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55291","ServerKey":"pl181","X":531,"Y":274},{"Bonus":0,"Continent":"K25","ID":55292,"Name":"#012","PlayerID":849064614,"Points":5810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55292","ServerKey":"pl181","X":546,"Y":271},{"Bonus":0,"Continent":"K25","ID":55293,"Name":"North 037","PlayerID":849064752,"Points":6914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55293","ServerKey":"pl181","X":512,"Y":273},{"Bonus":0,"Continent":"K42","ID":55294,"Name":"Avanti!","PlayerID":698625834,"Points":6029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55294","ServerKey":"pl181","X":276,"Y":475},{"Bonus":0,"Continent":"K47","ID":55295,"Name":"[825] Odludzie","PlayerID":848985692,"Points":6427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55295","ServerKey":"pl181","X":716,"Y":436},{"Bonus":0,"Continent":"K36","ID":55296,"Name":"0113","PlayerID":698416970,"Points":1194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55296","ServerKey":"pl181","X":695,"Y":383},{"Bonus":0,"Continent":"K47","ID":55297,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55297","ServerKey":"pl181","X":724,"Y":459},{"Bonus":0,"Continent":"K47","ID":55298,"Name":"031 KTW","PlayerID":848883237,"Points":2905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55298","ServerKey":"pl181","X":723,"Y":445},{"Bonus":0,"Continent":"K33","ID":55299,"Name":"Wyzima","PlayerID":849103688,"Points":4277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55299","ServerKey":"pl181","X":378,"Y":305},{"Bonus":0,"Continent":"K74","ID":55300,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55300","ServerKey":"pl181","X":418,"Y":717},{"Bonus":0,"Continent":"K57","ID":55301,"Name":"RzeĆșnia 4","PlayerID":849101029,"Points":1643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55301","ServerKey":"pl181","X":706,"Y":591},{"Bonus":0,"Continent":"K76","ID":55302,"Name":"Nowa Baza 8","PlayerID":698353083,"Points":5761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55302","ServerKey":"pl181","X":615,"Y":701},{"Bonus":0,"Continent":"K75","ID":55303,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":8725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55303","ServerKey":"pl181","X":541,"Y":730},{"Bonus":0,"Continent":"K66","ID":55304,"Name":"Wioska Lewkowskyyyy","PlayerID":698315881,"Points":2905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55304","ServerKey":"pl181","X":682,"Y":636},{"Bonus":0,"Continent":"K75","ID":55305,"Name":"Wioska ba","PlayerID":849101102,"Points":5302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55305","ServerKey":"pl181","X":515,"Y":727},{"Bonus":0,"Continent":"K47","ID":55306,"Name":"036 Mossdeep City","PlayerID":699441366,"Points":1163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55306","ServerKey":"pl181","X":723,"Y":490},{"Bonus":0,"Continent":"K75","ID":55307,"Name":"No.29","PlayerID":698826986,"Points":894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55307","ServerKey":"pl181","X":569,"Y":721},{"Bonus":0,"Continent":"K63","ID":55308,"Name":"Wioska MAXIMUS-1","PlayerID":8644299,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55308","ServerKey":"pl181","X":348,"Y":674},{"Bonus":0,"Continent":"K74","ID":55309,"Name":"Wioska barbarzyƄska","PlayerID":699429335,"Points":4152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55309","ServerKey":"pl181","X":495,"Y":726},{"Bonus":0,"Continent":"K24","ID":55310,"Name":"Wioska barbarzyƄska","PlayerID":699196829,"Points":6667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55310","ServerKey":"pl181","X":470,"Y":276},{"Bonus":0,"Continent":"K47","ID":55311,"Name":"Dwutakt","PlayerID":699785935,"Points":2987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55311","ServerKey":"pl181","X":708,"Y":417},{"Bonus":0,"Continent":"K25","ID":55312,"Name":".achim.","PlayerID":6936607,"Points":4565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55312","ServerKey":"pl181","X":570,"Y":287},{"Bonus":3,"Continent":"K66","ID":55313,"Name":"Ć»UBEREK 006","PlayerID":33900,"Points":9976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55313","ServerKey":"pl181","X":623,"Y":692},{"Bonus":0,"Continent":"K24","ID":55314,"Name":"311","PlayerID":7271812,"Points":741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55314","ServerKey":"pl181","X":451,"Y":277},{"Bonus":0,"Continent":"K24","ID":55315,"Name":"Wioska a2","PlayerID":6343784,"Points":2847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55315","ServerKey":"pl181","X":422,"Y":280},{"Bonus":0,"Continent":"K74","ID":55316,"Name":"New World","PlayerID":698152377,"Points":9814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55316","ServerKey":"pl181","X":410,"Y":710},{"Bonus":0,"Continent":"K24","ID":55317,"Name":"0074","PlayerID":848913037,"Points":3807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55317","ServerKey":"pl181","X":459,"Y":280},{"Bonus":0,"Continent":"K42","ID":55318,"Name":"Avanti!","PlayerID":698625834,"Points":5775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55318","ServerKey":"pl181","X":273,"Y":479},{"Bonus":0,"Continent":"K33","ID":55319,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55319","ServerKey":"pl181","X":360,"Y":315},{"Bonus":0,"Continent":"K75","ID":55320,"Name":"KASHYYYK","PlayerID":699383121,"Points":4012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55320","ServerKey":"pl181","X":569,"Y":720},{"Bonus":0,"Continent":"K57","ID":55321,"Name":"Z.03","PlayerID":699737356,"Points":4435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55321","ServerKey":"pl181","X":710,"Y":581},{"Bonus":0,"Continent":"K62","ID":55322,"Name":"Dajanka 24","PlayerID":849012843,"Points":942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55322","ServerKey":"pl181","X":291,"Y":604},{"Bonus":0,"Continent":"K52","ID":55323,"Name":"26. Wioska 26","PlayerID":849091769,"Points":3954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55323","ServerKey":"pl181","X":287,"Y":570},{"Bonus":0,"Continent":"K63","ID":55324,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55324","ServerKey":"pl181","X":377,"Y":689},{"Bonus":0,"Continent":"K25","ID":55325,"Name":"#026","PlayerID":849064614,"Points":2436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55325","ServerKey":"pl181","X":543,"Y":277},{"Bonus":0,"Continent":"K74","ID":55326,"Name":"001","PlayerID":699069151,"Points":966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55326","ServerKey":"pl181","X":441,"Y":724},{"Bonus":0,"Continent":"K75","ID":55327,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55327","ServerKey":"pl181","X":568,"Y":723},{"Bonus":0,"Continent":"K36","ID":55328,"Name":"Wioska marek123","PlayerID":849090846,"Points":8161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55328","ServerKey":"pl181","X":691,"Y":369},{"Bonus":0,"Continent":"K57","ID":55329,"Name":"Nowa 64","PlayerID":698702991,"Points":4108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55329","ServerKey":"pl181","X":720,"Y":563},{"Bonus":4,"Continent":"K25","ID":55330,"Name":"Wioska Gigako","PlayerID":849054951,"Points":10445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55330","ServerKey":"pl181","X":562,"Y":284},{"Bonus":0,"Continent":"K37","ID":55331,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55331","ServerKey":"pl181","X":703,"Y":398},{"Bonus":0,"Continent":"K74","ID":55332,"Name":"KWB4","PlayerID":9003698,"Points":5145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55332","ServerKey":"pl181","X":485,"Y":728},{"Bonus":0,"Continent":"K63","ID":55333,"Name":"O114","PlayerID":272173,"Points":7417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55333","ServerKey":"pl181","X":317,"Y":635},{"Bonus":0,"Continent":"K47","ID":55334,"Name":"Echelon","PlayerID":848896434,"Points":1106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55334","ServerKey":"pl181","X":716,"Y":444},{"Bonus":0,"Continent":"K25","ID":55335,"Name":"P003","PlayerID":699208929,"Points":4580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55335","ServerKey":"pl181","X":512,"Y":276},{"Bonus":0,"Continent":"K52","ID":55336,"Name":"009","PlayerID":698663855,"Points":3577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55336","ServerKey":"pl181","X":297,"Y":596},{"Bonus":0,"Continent":"K24","ID":55337,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":8067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55337","ServerKey":"pl181","X":416,"Y":288},{"Bonus":0,"Continent":"K25","ID":55338,"Name":"#036","PlayerID":849064614,"Points":2772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55338","ServerKey":"pl181","X":560,"Y":276},{"Bonus":0,"Continent":"K24","ID":55339,"Name":"BIMBER 5","PlayerID":6857973,"Points":1417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55339","ServerKey":"pl181","X":441,"Y":277},{"Bonus":0,"Continent":"K57","ID":55340,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55340","ServerKey":"pl181","X":727,"Y":505},{"Bonus":0,"Continent":"K74","ID":55341,"Name":"New World","PlayerID":698152377,"Points":5258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55341","ServerKey":"pl181","X":413,"Y":713},{"Bonus":0,"Continent":"K42","ID":55342,"Name":"szymek1","PlayerID":1323424,"Points":7731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55342","ServerKey":"pl181","X":280,"Y":422},{"Bonus":0,"Continent":"K26","ID":55343,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55343","ServerKey":"pl181","X":618,"Y":299},{"Bonus":0,"Continent":"K25","ID":55344,"Name":"bagienko_01","PlayerID":849093353,"Points":7098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55344","ServerKey":"pl181","X":570,"Y":281},{"Bonus":0,"Continent":"K76","ID":55345,"Name":"o013","PlayerID":699189792,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55345","ServerKey":"pl181","X":607,"Y":708},{"Bonus":0,"Continent":"K36","ID":55346,"Name":"CapriSun","PlayerID":849055553,"Points":1200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55346","ServerKey":"pl181","X":689,"Y":369},{"Bonus":0,"Continent":"K33","ID":55347,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55347","ServerKey":"pl181","X":315,"Y":373},{"Bonus":0,"Continent":"K63","ID":55348,"Name":"024","PlayerID":699356968,"Points":1120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55348","ServerKey":"pl181","X":301,"Y":609},{"Bonus":0,"Continent":"K33","ID":55349,"Name":"NP 09","PlayerID":849076810,"Points":1508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55349","ServerKey":"pl181","X":303,"Y":393},{"Bonus":0,"Continent":"K33","ID":55350,"Name":"Zaplecze Barba 040","PlayerID":699796330,"Points":3378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55350","ServerKey":"pl181","X":347,"Y":328},{"Bonus":0,"Continent":"K57","ID":55351,"Name":"CastAway !036","PlayerID":9314079,"Points":3488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55351","ServerKey":"pl181","X":711,"Y":595},{"Bonus":0,"Continent":"K25","ID":55352,"Name":".achim.","PlayerID":6936607,"Points":3330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55352","ServerKey":"pl181","X":573,"Y":287},{"Bonus":0,"Continent":"K52","ID":55353,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55353","ServerKey":"pl181","X":282,"Y":584},{"Bonus":0,"Continent":"K56","ID":55354,"Name":"Mordor","PlayerID":849109935,"Points":1299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55354","ServerKey":"pl181","X":697,"Y":588},{"Bonus":0,"Continent":"K42","ID":55355,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":8251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55355","ServerKey":"pl181","X":286,"Y":434},{"Bonus":7,"Continent":"K25","ID":55356,"Name":"Osada koczownikĂłw","PlayerID":698350371,"Points":1426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55356","ServerKey":"pl181","X":593,"Y":290},{"Bonus":0,"Continent":"K74","ID":55357,"Name":"Kurnik","PlayerID":699603116,"Points":1182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55357","ServerKey":"pl181","X":445,"Y":716},{"Bonus":0,"Continent":"K25","ID":55358,"Name":"XDX","PlayerID":699098531,"Points":3787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55358","ServerKey":"pl181","X":598,"Y":290},{"Bonus":0,"Continent":"K42","ID":55359,"Name":"000","PlayerID":699844314,"Points":5255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55359","ServerKey":"pl181","X":281,"Y":457},{"Bonus":0,"Continent":"K36","ID":55360,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55360","ServerKey":"pl181","X":645,"Y":327},{"Bonus":0,"Continent":"K25","ID":55361,"Name":"Wioska LubieĆŒny Mietek","PlayerID":6326324,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55361","ServerKey":"pl181","X":582,"Y":281},{"Bonus":0,"Continent":"K52","ID":55362,"Name":"...::181 05::...","PlayerID":699641777,"Points":3541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55362","ServerKey":"pl181","X":275,"Y":514},{"Bonus":0,"Continent":"K63","ID":55363,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55363","ServerKey":"pl181","X":370,"Y":690},{"Bonus":0,"Continent":"K52","ID":55364,"Name":"0000049Z","PlayerID":849089881,"Points":716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55364","ServerKey":"pl181","X":282,"Y":570},{"Bonus":0,"Continent":"K33","ID":55365,"Name":"##9","PlayerID":2800032,"Points":1820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55365","ServerKey":"pl181","X":346,"Y":337},{"Bonus":0,"Continent":"K52","ID":55366,"Name":"WiedeƄ","PlayerID":2717161,"Points":8132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55366","ServerKey":"pl181","X":294,"Y":589},{"Bonus":0,"Continent":"K33","ID":55367,"Name":"Wioska ewciamariusz2","PlayerID":9014108,"Points":1131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55367","ServerKey":"pl181","X":300,"Y":391},{"Bonus":0,"Continent":"K74","ID":55368,"Name":"ToHellAndBack.","PlayerID":699069151,"Points":6626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55368","ServerKey":"pl181","X":444,"Y":724},{"Bonus":0,"Continent":"K57","ID":55369,"Name":"Wioska16.","PlayerID":699266530,"Points":3315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55369","ServerKey":"pl181","X":713,"Y":575},{"Bonus":0,"Continent":"K43","ID":55370,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":4207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55370","ServerKey":"pl181","X":350,"Y":464},{"Bonus":2,"Continent":"K42","ID":55371,"Name":"Osada koczownikĂłw","PlayerID":699795698,"Points":4063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55371","ServerKey":"pl181","X":267,"Y":491},{"Bonus":0,"Continent":"K75","ID":55372,"Name":"Kapitol_13","PlayerID":606407,"Points":4652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55372","ServerKey":"pl181","X":510,"Y":723},{"Bonus":0,"Continent":"K24","ID":55373,"Name":"????","PlayerID":698489071,"Points":4277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55373","ServerKey":"pl181","X":461,"Y":275},{"Bonus":0,"Continent":"K74","ID":55374,"Name":"021 - Budowanko!","PlayerID":7540891,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55374","ServerKey":"pl181","X":496,"Y":723},{"Bonus":0,"Continent":"K52","ID":55375,"Name":"005","PlayerID":698663855,"Points":9691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55375","ServerKey":"pl181","X":293,"Y":588},{"Bonus":0,"Continent":"K24","ID":55376,"Name":"Wioska","PlayerID":3411571,"Points":5599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55376","ServerKey":"pl181","X":418,"Y":288},{"Bonus":0,"Continent":"K66","ID":55377,"Name":"01# Wioska Menager86","PlayerID":8444698,"Points":4821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55377","ServerKey":"pl181","X":681,"Y":643},{"Bonus":0,"Continent":"K25","ID":55378,"Name":"North 063","PlayerID":849064752,"Points":5164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55378","ServerKey":"pl181","X":540,"Y":274},{"Bonus":0,"Continent":"K75","ID":55379,"Name":"Aa1","PlayerID":849097614,"Points":5495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55379","ServerKey":"pl181","X":592,"Y":713},{"Bonus":0,"Continent":"K76","ID":55380,"Name":"###155###","PlayerID":698285444,"Points":10495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55380","ServerKey":"pl181","X":602,"Y":710},{"Bonus":0,"Continent":"K47","ID":55381,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":4035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55381","ServerKey":"pl181","X":713,"Y":422},{"Bonus":0,"Continent":"K33","ID":55382,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":1074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55382","ServerKey":"pl181","X":380,"Y":305},{"Bonus":0,"Continent":"K52","ID":55383,"Name":"Tuturutu","PlayerID":849096458,"Points":3230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55383","ServerKey":"pl181","X":281,"Y":577},{"Bonus":0,"Continent":"K47","ID":55384,"Name":"[828] Odludzie","PlayerID":848985692,"Points":6078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55384","ServerKey":"pl181","X":717,"Y":441},{"Bonus":0,"Continent":"K64","ID":55385,"Name":"XXX","PlayerID":698650509,"Points":4963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55385","ServerKey":"pl181","X":400,"Y":678},{"Bonus":0,"Continent":"K25","ID":55386,"Name":"PPF-27","PlayerID":1424656,"Points":2247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55386","ServerKey":"pl181","X":535,"Y":275},{"Bonus":0,"Continent":"K66","ID":55387,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55387","ServerKey":"pl181","X":686,"Y":625},{"Bonus":0,"Continent":"K66","ID":55389,"Name":"PoƂudniowy WschĂłd 005","PlayerID":699778867,"Points":1116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55389","ServerKey":"pl181","X":698,"Y":612},{"Bonus":0,"Continent":"K62","ID":55390,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55390","ServerKey":"pl181","X":295,"Y":605},{"Bonus":0,"Continent":"K42","ID":55391,"Name":"Tumba","PlayerID":7259690,"Points":1909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55391","ServerKey":"pl181","X":296,"Y":401},{"Bonus":0,"Continent":"K63","ID":55393,"Name":"002","PlayerID":699356968,"Points":5236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55393","ServerKey":"pl181","X":303,"Y":607},{"Bonus":5,"Continent":"K57","ID":55395,"Name":"A#025","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55395","ServerKey":"pl181","X":729,"Y":510},{"Bonus":0,"Continent":"K36","ID":55396,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55396","ServerKey":"pl181","X":621,"Y":310},{"Bonus":0,"Continent":"K23","ID":55397,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55397","ServerKey":"pl181","X":386,"Y":298},{"Bonus":0,"Continent":"K52","ID":55398,"Name":"Wioska rafalzak 01","PlayerID":6083448,"Points":1141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55398","ServerKey":"pl181","X":269,"Y":514},{"Bonus":0,"Continent":"K33","ID":55399,"Name":"Wioska20","PlayerID":699711926,"Points":4285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55399","ServerKey":"pl181","X":332,"Y":347},{"Bonus":0,"Continent":"K33","ID":55400,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55400","ServerKey":"pl181","X":357,"Y":327},{"Bonus":0,"Continent":"K66","ID":55401,"Name":"Wioska barbarzyƄska","PlayerID":699576978,"Points":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55401","ServerKey":"pl181","X":633,"Y":692},{"Bonus":0,"Continent":"K47","ID":55402,"Name":"-002-","PlayerID":7418168,"Points":4429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55402","ServerKey":"pl181","X":728,"Y":492},{"Bonus":0,"Continent":"K63","ID":55403,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":3305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55403","ServerKey":"pl181","X":365,"Y":686},{"Bonus":0,"Continent":"K42","ID":55404,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55404","ServerKey":"pl181","X":290,"Y":416},{"Bonus":0,"Continent":"K23","ID":55405,"Name":"014","PlayerID":699694284,"Points":4790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55405","ServerKey":"pl181","X":398,"Y":292},{"Bonus":0,"Continent":"K42","ID":55406,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":1854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55406","ServerKey":"pl181","X":276,"Y":489},{"Bonus":0,"Continent":"K33","ID":55407,"Name":"Zaplecze Barba 041","PlayerID":699796330,"Points":2731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55407","ServerKey":"pl181","X":347,"Y":329},{"Bonus":0,"Continent":"K33","ID":55408,"Name":"181.03","PlayerID":7221139,"Points":881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55408","ServerKey":"pl181","X":328,"Y":344},{"Bonus":0,"Continent":"K75","ID":55409,"Name":"Wioska barbarzyƄska","PlayerID":769293,"Points":3417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55409","ServerKey":"pl181","X":519,"Y":732},{"Bonus":0,"Continent":"K25","ID":55410,"Name":"North K25","PlayerID":699146580,"Points":2607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55410","ServerKey":"pl181","X":524,"Y":276},{"Bonus":0,"Continent":"K74","ID":55411,"Name":"Wioska maniek38","PlayerID":9213654,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55411","ServerKey":"pl181","X":434,"Y":722},{"Bonus":0,"Continent":"K74","ID":55412,"Name":"0064","PlayerID":849037407,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55412","ServerKey":"pl181","X":453,"Y":727},{"Bonus":0,"Continent":"K66","ID":55413,"Name":"Wioska TheKingDestroyer","PlayerID":699812869,"Points":3257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55413","ServerKey":"pl181","X":696,"Y":628},{"Bonus":0,"Continent":"K66","ID":55414,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":2892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55414","ServerKey":"pl181","X":624,"Y":688},{"Bonus":0,"Continent":"K33","ID":55415,"Name":"Wioska barbarzyƄska 06","PlayerID":698757439,"Points":7020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55415","ServerKey":"pl181","X":342,"Y":338},{"Bonus":0,"Continent":"K47","ID":55416,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55416","ServerKey":"pl181","X":730,"Y":490},{"Bonus":0,"Continent":"K66","ID":55417,"Name":"Nowa Baza 4","PlayerID":698353083,"Points":5072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55417","ServerKey":"pl181","X":614,"Y":696},{"Bonus":0,"Continent":"K63","ID":55418,"Name":"014 | North","PlayerID":699511295,"Points":3093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55418","ServerKey":"pl181","X":378,"Y":694},{"Bonus":0,"Continent":"K33","ID":55419,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55419","ServerKey":"pl181","X":314,"Y":367},{"Bonus":0,"Continent":"K42","ID":55420,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55420","ServerKey":"pl181","X":276,"Y":462},{"Bonus":0,"Continent":"K63","ID":55422,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":3026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55422","ServerKey":"pl181","X":367,"Y":692},{"Bonus":7,"Continent":"K24","ID":55423,"Name":"????","PlayerID":698489071,"Points":4099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55423","ServerKey":"pl181","X":462,"Y":277},{"Bonus":0,"Continent":"K33","ID":55425,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":4783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55425","ServerKey":"pl181","X":372,"Y":312},{"Bonus":0,"Continent":"K25","ID":55426,"Name":".achim.","PlayerID":6936607,"Points":3015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55426","ServerKey":"pl181","X":575,"Y":284},{"Bonus":0,"Continent":"K37","ID":55427,"Name":"011. Wioska barbarzyƄska","PlayerID":2873154,"Points":7669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55427","ServerKey":"pl181","X":700,"Y":390},{"Bonus":0,"Continent":"K74","ID":55428,"Name":"#499 F","PlayerID":9037756,"Points":5524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55428","ServerKey":"pl181","X":441,"Y":721},{"Bonus":0,"Continent":"K24","ID":55429,"Name":"????","PlayerID":698489071,"Points":4957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55429","ServerKey":"pl181","X":477,"Y":273},{"Bonus":0,"Continent":"K42","ID":55430,"Name":"Avanti!","PlayerID":698625834,"Points":4478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55430","ServerKey":"pl181","X":270,"Y":466},{"Bonus":9,"Continent":"K57","ID":55431,"Name":"029","PlayerID":7085502,"Points":9720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55431","ServerKey":"pl181","X":730,"Y":531},{"Bonus":0,"Continent":"K62","ID":55432,"Name":"AZGARD 2.","PlayerID":6651072,"Points":462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55432","ServerKey":"pl181","X":295,"Y":609},{"Bonus":0,"Continent":"K47","ID":55433,"Name":"081. Wioska barbarzyƄska","PlayerID":7494497,"Points":4775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55433","ServerKey":"pl181","X":732,"Y":469},{"Bonus":0,"Continent":"K73","ID":55434,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55434","ServerKey":"pl181","X":387,"Y":705},{"Bonus":0,"Continent":"K52","ID":55435,"Name":"C0254","PlayerID":8841266,"Points":4441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55435","ServerKey":"pl181","X":269,"Y":526},{"Bonus":0,"Continent":"K63","ID":55436,"Name":"Wioska RĂłĆŒalXDD","PlayerID":699639001,"Points":1110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55436","ServerKey":"pl181","X":343,"Y":673},{"Bonus":0,"Continent":"K63","ID":55437,"Name":"O117","PlayerID":272173,"Points":7194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55437","ServerKey":"pl181","X":314,"Y":637},{"Bonus":0,"Continent":"K47","ID":55438,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55438","ServerKey":"pl181","X":711,"Y":400},{"Bonus":0,"Continent":"K74","ID":55439,"Name":"[017]","PlayerID":9094538,"Points":2713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55439","ServerKey":"pl181","X":462,"Y":726},{"Bonus":0,"Continent":"K57","ID":55440,"Name":"098","PlayerID":7085502,"Points":2271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55440","ServerKey":"pl181","X":731,"Y":514},{"Bonus":0,"Continent":"K24","ID":55441,"Name":"0081","PlayerID":848913037,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55441","ServerKey":"pl181","X":457,"Y":278},{"Bonus":0,"Continent":"K52","ID":55442,"Name":"Wioska obywateldb","PlayerID":699396429,"Points":6246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55442","ServerKey":"pl181","X":287,"Y":590},{"Bonus":0,"Continent":"K62","ID":55443,"Name":"Rewa","PlayerID":1276665,"Points":2111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55443","ServerKey":"pl181","X":296,"Y":603},{"Bonus":0,"Continent":"K52","ID":55444,"Name":"Ale UrwaƂ","PlayerID":849105417,"Points":6938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55444","ServerKey":"pl181","X":270,"Y":512},{"Bonus":0,"Continent":"K42","ID":55445,"Name":"004","PlayerID":699844314,"Points":1438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55445","ServerKey":"pl181","X":277,"Y":458},{"Bonus":0,"Continent":"K76","ID":55446,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":1885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55446","ServerKey":"pl181","X":608,"Y":708},{"Bonus":0,"Continent":"K75","ID":55447,"Name":"ZZZ .::. cinek3456/14","PlayerID":33900,"Points":1644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55447","ServerKey":"pl181","X":590,"Y":714},{"Bonus":0,"Continent":"K42","ID":55448,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55448","ServerKey":"pl181","X":288,"Y":418},{"Bonus":0,"Continent":"K63","ID":55449,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":8158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55449","ServerKey":"pl181","X":361,"Y":677},{"Bonus":0,"Continent":"K25","ID":55450,"Name":"Wioska IAmChaozu","PlayerID":849080011,"Points":6170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55450","ServerKey":"pl181","X":572,"Y":279},{"Bonus":0,"Continent":"K46","ID":55452,"Name":"42. JeGrzegorz","PlayerID":699804790,"Points":1430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55452","ServerKey":"pl181","X":672,"Y":474},{"Bonus":0,"Continent":"K25","ID":55453,"Name":"sh06","PlayerID":7064954,"Points":2573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55453","ServerKey":"pl181","X":514,"Y":274},{"Bonus":0,"Continent":"K33","ID":55454,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55454","ServerKey":"pl181","X":318,"Y":364},{"Bonus":0,"Continent":"K42","ID":55455,"Name":"[0276]","PlayerID":8630972,"Points":4027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55455","ServerKey":"pl181","X":266,"Y":495},{"Bonus":0,"Continent":"K24","ID":55456,"Name":"Wioska marko91","PlayerID":849070812,"Points":1367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55456","ServerKey":"pl181","X":497,"Y":268},{"Bonus":0,"Continent":"K24","ID":55457,"Name":"237...NORTH","PlayerID":6920960,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55457","ServerKey":"pl181","X":432,"Y":279},{"Bonus":0,"Continent":"K47","ID":55458,"Name":"[217]","PlayerID":8000875,"Points":1379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55458","ServerKey":"pl181","X":721,"Y":422},{"Bonus":0,"Continent":"K47","ID":55459,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55459","ServerKey":"pl181","X":724,"Y":490},{"Bonus":0,"Continent":"K24","ID":55460,"Name":"Wioska Gollum18","PlayerID":8947021,"Points":3318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55460","ServerKey":"pl181","X":409,"Y":286},{"Bonus":0,"Continent":"K25","ID":55461,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55461","ServerKey":"pl181","X":586,"Y":288},{"Bonus":0,"Continent":"K33","ID":55462,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55462","ServerKey":"pl181","X":319,"Y":365},{"Bonus":0,"Continent":"K52","ID":55463,"Name":"C0294","PlayerID":8841266,"Points":3974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55463","ServerKey":"pl181","X":277,"Y":523},{"Bonus":0,"Continent":"K42","ID":55464,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55464","ServerKey":"pl181","X":277,"Y":438},{"Bonus":0,"Continent":"K66","ID":55465,"Name":"BETON 115","PlayerID":699277039,"Points":81,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55465","ServerKey":"pl181","X":663,"Y":665},{"Bonus":0,"Continent":"K25","ID":55466,"Name":"006","PlayerID":698736778,"Points":1164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55466","ServerKey":"pl181","X":531,"Y":278},{"Bonus":0,"Continent":"K33","ID":55467,"Name":"Utumno","PlayerID":849100288,"Points":2696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55467","ServerKey":"pl181","X":328,"Y":356},{"Bonus":0,"Continent":"K25","ID":55468,"Name":".achim.","PlayerID":6936607,"Points":4908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55468","ServerKey":"pl181","X":568,"Y":287},{"Bonus":0,"Continent":"K36","ID":55469,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55469","ServerKey":"pl181","X":633,"Y":309},{"Bonus":0,"Continent":"K74","ID":55470,"Name":"Taka.","PlayerID":848999671,"Points":2119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55470","ServerKey":"pl181","X":484,"Y":728},{"Bonus":0,"Continent":"K52","ID":55471,"Name":"Wioska rufus997","PlayerID":849047233,"Points":4652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55471","ServerKey":"pl181","X":270,"Y":525},{"Bonus":0,"Continent":"K75","ID":55472,"Name":"1x1 Wioska barbarzyƄska","PlayerID":849055425,"Points":5734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55472","ServerKey":"pl181","X":570,"Y":712},{"Bonus":0,"Continent":"K25","ID":55473,"Name":"107 Wioska barbarzyƄska","PlayerID":699854484,"Points":1020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55473","ServerKey":"pl181","X":584,"Y":283},{"Bonus":0,"Continent":"K25","ID":55474,"Name":"061 Wioska barbarzyƄska","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55474","ServerKey":"pl181","X":551,"Y":282},{"Bonus":0,"Continent":"K24","ID":55475,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55475","ServerKey":"pl181","X":494,"Y":267},{"Bonus":0,"Continent":"K36","ID":55476,"Name":"100. Wioska barbarzyƄska","PlayerID":7494497,"Points":3023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55476","ServerKey":"pl181","X":695,"Y":373},{"Bonus":7,"Continent":"K57","ID":55477,"Name":"Osada koczownikĂłw","PlayerID":698666810,"Points":10999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55477","ServerKey":"pl181","X":725,"Y":561},{"Bonus":0,"Continent":"K32","ID":55478,"Name":"erebor","PlayerID":698677650,"Points":6098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55478","ServerKey":"pl181","X":292,"Y":395},{"Bonus":0,"Continent":"K24","ID":55479,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":9471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55479","ServerKey":"pl181","X":498,"Y":266},{"Bonus":0,"Continent":"K67","ID":55480,"Name":"Odludek","PlayerID":849101652,"Points":3273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55480","ServerKey":"pl181","X":701,"Y":609},{"Bonus":0,"Continent":"K33","ID":55481,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55481","ServerKey":"pl181","X":356,"Y":317},{"Bonus":0,"Continent":"K36","ID":55482,"Name":"TOLCIA 4","PlayerID":699868739,"Points":1180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55482","ServerKey":"pl181","X":640,"Y":313},{"Bonus":0,"Continent":"K66","ID":55483,"Name":"Wioska kosiarziii","PlayerID":8856821,"Points":7519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55483","ServerKey":"pl181","X":657,"Y":672},{"Bonus":0,"Continent":"K66","ID":55484,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55484","ServerKey":"pl181","X":639,"Y":683},{"Bonus":0,"Continent":"K42","ID":55485,"Name":"Hindenburg","PlayerID":699662232,"Points":4336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55485","ServerKey":"pl181","X":270,"Y":494},{"Bonus":0,"Continent":"K42","ID":55486,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55486","ServerKey":"pl181","X":270,"Y":456},{"Bonus":0,"Continent":"K75","ID":55487,"Name":"Wioska barbarzyƄska","PlayerID":8991696,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55487","ServerKey":"pl181","X":595,"Y":705},{"Bonus":0,"Continent":"K52","ID":55488,"Name":"PATOLOGIA","PlayerID":699774694,"Points":6322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55488","ServerKey":"pl181","X":288,"Y":598},{"Bonus":0,"Continent":"K57","ID":55489,"Name":"Wioska 124","PlayerID":848971079,"Points":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55489","ServerKey":"pl181","X":706,"Y":588},{"Bonus":0,"Continent":"K66","ID":55490,"Name":"Sony 911","PlayerID":1415009,"Points":6511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55490","ServerKey":"pl181","X":697,"Y":613},{"Bonus":0,"Continent":"K36","ID":55491,"Name":"XDX","PlayerID":699098531,"Points":4102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55491","ServerKey":"pl181","X":613,"Y":303},{"Bonus":0,"Continent":"K66","ID":55492,"Name":"2. Novigrad","PlayerID":849101526,"Points":2336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55492","ServerKey":"pl181","X":609,"Y":697},{"Bonus":0,"Continent":"K25","ID":55493,"Name":"Wioska barbarzyƄska","PlayerID":699799629,"Points":2740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55493","ServerKey":"pl181","X":525,"Y":268},{"Bonus":9,"Continent":"K36","ID":55494,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":9249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55494","ServerKey":"pl181","X":621,"Y":303},{"Bonus":0,"Continent":"K57","ID":55495,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":3899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55495","ServerKey":"pl181","X":721,"Y":571},{"Bonus":0,"Continent":"K63","ID":55496,"Name":"Wyspa","PlayerID":698769107,"Points":788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55496","ServerKey":"pl181","X":394,"Y":667},{"Bonus":0,"Continent":"K63","ID":55497,"Name":"Wioska barbarzyƄska","PlayerID":849096945,"Points":428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55497","ServerKey":"pl181","X":371,"Y":689},{"Bonus":0,"Continent":"K52","ID":55498,"Name":"...::181 08::...","PlayerID":699641777,"Points":3279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55498","ServerKey":"pl181","X":277,"Y":514},{"Bonus":0,"Continent":"K42","ID":55499,"Name":"Avanti!","PlayerID":698625834,"Points":6152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55499","ServerKey":"pl181","X":271,"Y":485},{"Bonus":0,"Continent":"K66","ID":55500,"Name":"4. Skellige Nowe IMPERIUM","PlayerID":698353083,"Points":4385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55500","ServerKey":"pl181","X":614,"Y":699},{"Bonus":0,"Continent":"K26","ID":55501,"Name":"XDX","PlayerID":699098531,"Points":3476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55501","ServerKey":"pl181","X":604,"Y":297},{"Bonus":4,"Continent":"K63","ID":55502,"Name":"Wioska 0007","PlayerID":9186126,"Points":10311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55502","ServerKey":"pl181","X":349,"Y":665},{"Bonus":0,"Continent":"K52","ID":55503,"Name":"C0314","PlayerID":8841266,"Points":2542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55503","ServerKey":"pl181","X":276,"Y":525},{"Bonus":0,"Continent":"K66","ID":55504,"Name":"Wz08","PlayerID":7142659,"Points":2982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55504","ServerKey":"pl181","X":698,"Y":605},{"Bonus":0,"Continent":"K52","ID":55505,"Name":"0000034Z","PlayerID":849089881,"Points":5793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55505","ServerKey":"pl181","X":275,"Y":563},{"Bonus":0,"Continent":"K33","ID":55506,"Name":"Wioska barbarzyƄska","PlayerID":1267913,"Points":998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55506","ServerKey":"pl181","X":303,"Y":381},{"Bonus":0,"Continent":"K37","ID":55507,"Name":"055- Mroczna Osada","PlayerID":849035905,"Points":5791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55507","ServerKey":"pl181","X":704,"Y":386},{"Bonus":0,"Continent":"K47","ID":55508,"Name":"[827] Odludzie","PlayerID":848985692,"Points":6330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55508","ServerKey":"pl181","X":719,"Y":440},{"Bonus":0,"Continent":"K33","ID":55509,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55509","ServerKey":"pl181","X":317,"Y":358},{"Bonus":0,"Continent":"K24","ID":55510,"Name":"Wioska a1","PlayerID":6343784,"Points":4584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55510","ServerKey":"pl181","X":421,"Y":280},{"Bonus":7,"Continent":"K42","ID":55511,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55511","ServerKey":"pl181","X":275,"Y":444},{"Bonus":0,"Continent":"K33","ID":55512,"Name":"Wioska barbarzyƄska","PlayerID":762975,"Points":473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55512","ServerKey":"pl181","X":300,"Y":397},{"Bonus":0,"Continent":"K33","ID":55513,"Name":"Zaplecze Barba 029","PlayerID":699796330,"Points":4950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55513","ServerKey":"pl181","X":360,"Y":321},{"Bonus":0,"Continent":"K25","ID":55514,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":3370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55514","ServerKey":"pl181","X":503,"Y":277},{"Bonus":0,"Continent":"K63","ID":55515,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55515","ServerKey":"pl181","X":310,"Y":625},{"Bonus":0,"Continent":"K57","ID":55516,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":9846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55516","ServerKey":"pl181","X":722,"Y":556},{"Bonus":0,"Continent":"K24","ID":55517,"Name":"004. niespodzianka","PlayerID":602408,"Points":1375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55517","ServerKey":"pl181","X":457,"Y":274},{"Bonus":0,"Continent":"K75","ID":55518,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":8179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55518","ServerKey":"pl181","X":537,"Y":731},{"Bonus":0,"Continent":"K67","ID":55519,"Name":"K67 03","PlayerID":698867483,"Points":7755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55519","ServerKey":"pl181","X":702,"Y":613},{"Bonus":0,"Continent":"K75","ID":55520,"Name":"Aa7","PlayerID":849097614,"Points":3669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55520","ServerKey":"pl181","X":594,"Y":711},{"Bonus":0,"Continent":"K24","ID":55521,"Name":"112.Stradi","PlayerID":698365960,"Points":6813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55521","ServerKey":"pl181","X":427,"Y":279},{"Bonus":0,"Continent":"K42","ID":55522,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55522","ServerKey":"pl181","X":293,"Y":412},{"Bonus":0,"Continent":"K36","ID":55524,"Name":"Wioska barbarzyƄska","PlayerID":849090846,"Points":2237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55524","ServerKey":"pl181","X":690,"Y":368},{"Bonus":0,"Continent":"K24","ID":55525,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55525","ServerKey":"pl181","X":486,"Y":269},{"Bonus":0,"Continent":"K36","ID":55527,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":4257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55527","ServerKey":"pl181","X":658,"Y":340},{"Bonus":0,"Continent":"K74","ID":55528,"Name":"New World","PlayerID":698152377,"Points":4713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55528","ServerKey":"pl181","X":418,"Y":714},{"Bonus":0,"Continent":"K33","ID":55529,"Name":"Wioska DAJWIDOS17","PlayerID":848913252,"Points":1401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55529","ServerKey":"pl181","X":320,"Y":351},{"Bonus":0,"Continent":"K33","ID":55530,"Name":"006","PlayerID":7919620,"Points":7185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55530","ServerKey":"pl181","X":313,"Y":376},{"Bonus":0,"Continent":"K24","ID":55531,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55531","ServerKey":"pl181","X":475,"Y":267},{"Bonus":0,"Continent":"K52","ID":55532,"Name":"...::181 12::...","PlayerID":699641777,"Points":2211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55532","ServerKey":"pl181","X":272,"Y":511},{"Bonus":0,"Continent":"K66","ID":55534,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55534","ServerKey":"pl181","X":685,"Y":637},{"Bonus":0,"Continent":"K26","ID":55535,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":2407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55535","ServerKey":"pl181","X":602,"Y":299},{"Bonus":0,"Continent":"K57","ID":55536,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":1897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55536","ServerKey":"pl181","X":727,"Y":544},{"Bonus":0,"Continent":"K52","ID":55537,"Name":"003","PlayerID":698663855,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55537","ServerKey":"pl181","X":292,"Y":591},{"Bonus":0,"Continent":"K42","ID":55538,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55538","ServerKey":"pl181","X":289,"Y":426},{"Bonus":0,"Continent":"K42","ID":55539,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55539","ServerKey":"pl181","X":270,"Y":492},{"Bonus":0,"Continent":"K24","ID":55540,"Name":"????","PlayerID":698489071,"Points":1622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55540","ServerKey":"pl181","X":461,"Y":274},{"Bonus":0,"Continent":"K66","ID":55541,"Name":"Wygwizdowa 013","PlayerID":698562644,"Points":3158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55541","ServerKey":"pl181","X":638,"Y":676},{"Bonus":0,"Continent":"K64","ID":55544,"Name":"S177 K64","PlayerID":849055309,"Points":772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55544","ServerKey":"pl181","X":415,"Y":686},{"Bonus":0,"Continent":"K75","ID":55545,"Name":"#0064","PlayerID":1536231,"Points":3860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55545","ServerKey":"pl181","X":577,"Y":718},{"Bonus":0,"Continent":"K57","ID":55546,"Name":"Wioska Karakan13","PlayerID":849096936,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55546","ServerKey":"pl181","X":727,"Y":502},{"Bonus":0,"Continent":"K63","ID":55547,"Name":"Psycha Siada","PlayerID":8099868,"Points":7098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55547","ServerKey":"pl181","X":320,"Y":646},{"Bonus":0,"Continent":"K47","ID":55549,"Name":"23 Blacha","PlayerID":849101845,"Points":2621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55549","ServerKey":"pl181","X":721,"Y":433},{"Bonus":0,"Continent":"K74","ID":55550,"Name":"Bagno 34","PlayerID":848883684,"Points":5244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55550","ServerKey":"pl181","X":475,"Y":726},{"Bonus":0,"Continent":"K52","ID":55552,"Name":"...::181 03::...","PlayerID":699641777,"Points":3121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55552","ServerKey":"pl181","X":276,"Y":513},{"Bonus":0,"Continent":"K52","ID":55553,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55553","ServerKey":"pl181","X":271,"Y":513},{"Bonus":0,"Continent":"K63","ID":55554,"Name":"Wioska barbarzyƄska","PlayerID":7494178,"Points":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55554","ServerKey":"pl181","X":381,"Y":699},{"Bonus":0,"Continent":"K63","ID":55555,"Name":"027","PlayerID":699356968,"Points":875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55555","ServerKey":"pl181","X":305,"Y":616},{"Bonus":0,"Continent":"K36","ID":55556,"Name":"25.TEEN TOP","PlayerID":9180206,"Points":3083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55556","ServerKey":"pl181","X":694,"Y":384},{"Bonus":0,"Continent":"K42","ID":55557,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55557","ServerKey":"pl181","X":292,"Y":417},{"Bonus":0,"Continent":"K52","ID":55558,"Name":"007","PlayerID":698663855,"Points":6042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55558","ServerKey":"pl181","X":291,"Y":593},{"Bonus":0,"Continent":"K75","ID":55559,"Name":"#0059","PlayerID":1536231,"Points":3872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55559","ServerKey":"pl181","X":575,"Y":713},{"Bonus":0,"Continent":"K74","ID":55561,"Name":"New World","PlayerID":698152377,"Points":9707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55561","ServerKey":"pl181","X":418,"Y":710},{"Bonus":0,"Continent":"K63","ID":55562,"Name":"Wioska dafffciu","PlayerID":848984022,"Points":9634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55562","ServerKey":"pl181","X":362,"Y":679},{"Bonus":0,"Continent":"K33","ID":55563,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55563","ServerKey":"pl181","X":317,"Y":366},{"Bonus":0,"Continent":"K63","ID":55564,"Name":"001 Oazis","PlayerID":699356968,"Points":10104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55564","ServerKey":"pl181","X":304,"Y":607},{"Bonus":0,"Continent":"K47","ID":55565,"Name":"-003-","PlayerID":7418168,"Points":4577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55565","ServerKey":"pl181","X":730,"Y":492},{"Bonus":0,"Continent":"K74","ID":55566,"Name":"|D| IS","PlayerID":698147372,"Points":1494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55566","ServerKey":"pl181","X":453,"Y":721},{"Bonus":0,"Continent":"K24","ID":55567,"Name":"Gorzow","PlayerID":699278528,"Points":4053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55567","ServerKey":"pl181","X":466,"Y":270},{"Bonus":0,"Continent":"K53","ID":55568,"Name":"078g","PlayerID":698641566,"Points":6556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55568","ServerKey":"pl181","X":318,"Y":553},{"Bonus":0,"Continent":"K42","ID":55569,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55569","ServerKey":"pl181","X":279,"Y":425},{"Bonus":0,"Continent":"K66","ID":55570,"Name":"Wygwizdowa 016","PlayerID":698562644,"Points":787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55570","ServerKey":"pl181","X":625,"Y":688},{"Bonus":0,"Continent":"K52","ID":55571,"Name":"C0308","PlayerID":8841266,"Points":3417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55571","ServerKey":"pl181","X":274,"Y":520},{"Bonus":0,"Continent":"K73","ID":55572,"Name":"Wioska bercion","PlayerID":699490365,"Points":1764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55572","ServerKey":"pl181","X":383,"Y":704},{"Bonus":0,"Continent":"K33","ID":55573,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":1189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55573","ServerKey":"pl181","X":322,"Y":353},{"Bonus":0,"Continent":"K42","ID":55574,"Name":"K42 ADAMUS 016","PlayerID":6212605,"Points":5264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55574","ServerKey":"pl181","X":287,"Y":428},{"Bonus":0,"Continent":"K42","ID":55575,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55575","ServerKey":"pl181","X":289,"Y":424},{"Bonus":0,"Continent":"K36","ID":55576,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55576","ServerKey":"pl181","X":651,"Y":332},{"Bonus":7,"Continent":"K75","ID":55577,"Name":"Osada koczownikĂłw","PlayerID":699878511,"Points":4465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55577","ServerKey":"pl181","X":546,"Y":728},{"Bonus":0,"Continent":"K33","ID":55578,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":3271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55578","ServerKey":"pl181","X":352,"Y":321},{"Bonus":0,"Continent":"K66","ID":55579,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55579","ServerKey":"pl181","X":689,"Y":634},{"Bonus":0,"Continent":"K36","ID":55580,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55580","ServerKey":"pl181","X":660,"Y":331},{"Bonus":0,"Continent":"K74","ID":55581,"Name":"Kapitol_31","PlayerID":606407,"Points":3844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55581","ServerKey":"pl181","X":497,"Y":734},{"Bonus":0,"Continent":"K45","ID":55582,"Name":"ADAMM","PlayerID":699409420,"Points":721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55582","ServerKey":"pl181","X":536,"Y":455},{"Bonus":0,"Continent":"K74","ID":55583,"Name":"New World","PlayerID":698152377,"Points":8387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55583","ServerKey":"pl181","X":429,"Y":723},{"Bonus":0,"Continent":"K66","ID":55584,"Name":"Sony 911","PlayerID":1415009,"Points":1691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55584","ServerKey":"pl181","X":676,"Y":655},{"Bonus":0,"Continent":"K25","ID":55585,"Name":"Wioska 7","PlayerID":7427966,"Points":1044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55585","ServerKey":"pl181","X":534,"Y":268},{"Bonus":0,"Continent":"K33","ID":55586,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":4775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55586","ServerKey":"pl181","X":373,"Y":308},{"Bonus":0,"Continent":"K63","ID":55587,"Name":"001","PlayerID":8752714,"Points":3875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55587","ServerKey":"pl181","X":312,"Y":636},{"Bonus":0,"Continent":"K24","ID":55588,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":3368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55588","ServerKey":"pl181","X":463,"Y":269},{"Bonus":0,"Continent":"K36","ID":55589,"Name":"002.","PlayerID":7557683,"Points":1512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55589","ServerKey":"pl181","X":698,"Y":379},{"Bonus":0,"Continent":"K57","ID":55590,"Name":"Wioska buuu","PlayerID":849048241,"Points":5178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55590","ServerKey":"pl181","X":734,"Y":509},{"Bonus":0,"Continent":"K63","ID":55591,"Name":"003 wolnoƛć","PlayerID":6910361,"Points":873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55591","ServerKey":"pl181","X":332,"Y":655},{"Bonus":0,"Continent":"K24","ID":55592,"Name":"111.Stradi","PlayerID":698365960,"Points":7487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55592","ServerKey":"pl181","X":426,"Y":279},{"Bonus":0,"Continent":"K63","ID":55593,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55593","ServerKey":"pl181","X":317,"Y":632},{"Bonus":7,"Continent":"K36","ID":55594,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55594","ServerKey":"pl181","X":618,"Y":302},{"Bonus":0,"Continent":"K74","ID":55595,"Name":"New World","PlayerID":698152377,"Points":3744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55595","ServerKey":"pl181","X":432,"Y":714},{"Bonus":0,"Continent":"K36","ID":55596,"Name":"26.WINNER","PlayerID":9180206,"Points":3343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55596","ServerKey":"pl181","X":696,"Y":383},{"Bonus":0,"Continent":"K25","ID":55597,"Name":"=SAwars=04=","PlayerID":849106420,"Points":3899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55597","ServerKey":"pl181","X":566,"Y":282},{"Bonus":0,"Continent":"K25","ID":55598,"Name":"North 038","PlayerID":849064752,"Points":6935,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55598","ServerKey":"pl181","X":510,"Y":268},{"Bonus":0,"Continent":"K33","ID":55599,"Name":"......","PlayerID":699595556,"Points":7559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55599","ServerKey":"pl181","X":300,"Y":387},{"Bonus":0,"Continent":"K33","ID":55600,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":2156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55600","ServerKey":"pl181","X":355,"Y":328},{"Bonus":0,"Continent":"K57","ID":55601,"Name":"Wioska Maverick1","PlayerID":699618326,"Points":3993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55601","ServerKey":"pl181","X":734,"Y":516},{"Bonus":0,"Continent":"K74","ID":55602,"Name":"012 - Budowanko!","PlayerID":7540891,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55602","ServerKey":"pl181","X":489,"Y":724},{"Bonus":7,"Continent":"K57","ID":55603,"Name":"Bocianikson022","PlayerID":7528491,"Points":1731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55603","ServerKey":"pl181","X":714,"Y":582},{"Bonus":0,"Continent":"K47","ID":55604,"Name":"037 Sootopolis City","PlayerID":699441366,"Points":8787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55604","ServerKey":"pl181","X":729,"Y":484},{"Bonus":0,"Continent":"K66","ID":55605,"Name":"Wioska 091","PlayerID":848971079,"Points":5678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55605","ServerKey":"pl181","X":697,"Y":617},{"Bonus":0,"Continent":"K75","ID":55606,"Name":"Kapitol_26_O","PlayerID":606407,"Points":5232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55606","ServerKey":"pl181","X":504,"Y":725},{"Bonus":0,"Continent":"K57","ID":55607,"Name":"Wioska barbarzyƄska","PlayerID":7528491,"Points":1591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55607","ServerKey":"pl181","X":714,"Y":583},{"Bonus":0,"Continent":"K66","ID":55608,"Name":"Wioska nsplus","PlayerID":849048856,"Points":6227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55608","ServerKey":"pl181","X":667,"Y":658},{"Bonus":0,"Continent":"K37","ID":55609,"Name":"Sqn","PlayerID":699598425,"Points":2878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55609","ServerKey":"pl181","X":707,"Y":395},{"Bonus":0,"Continent":"K66","ID":55610,"Name":"Wiadro21","PlayerID":8677963,"Points":1272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55610","ServerKey":"pl181","X":688,"Y":636},{"Bonus":0,"Continent":"K74","ID":55611,"Name":"Wiƛniowe wzgĂłrza","PlayerID":7526090,"Points":3672,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55611","ServerKey":"pl181","X":444,"Y":723},{"Bonus":0,"Continent":"K42","ID":55612,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55612","ServerKey":"pl181","X":268,"Y":470},{"Bonus":0,"Continent":"K73","ID":55614,"Name":"004 | North","PlayerID":699511295,"Points":9353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55614","ServerKey":"pl181","X":379,"Y":701},{"Bonus":0,"Continent":"K32","ID":55615,"Name":"Wioska SAGITTARIUS70","PlayerID":7259690,"Points":6237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55615","ServerKey":"pl181","X":293,"Y":398},{"Bonus":0,"Continent":"K24","ID":55616,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55616","ServerKey":"pl181","X":473,"Y":268},{"Bonus":0,"Continent":"K32","ID":55618,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55618","ServerKey":"pl181","X":297,"Y":389},{"Bonus":0,"Continent":"K52","ID":55619,"Name":"BB1","PlayerID":849110365,"Points":6221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55619","ServerKey":"pl181","X":270,"Y":514},{"Bonus":0,"Continent":"K33","ID":55620,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55620","ServerKey":"pl181","X":352,"Y":324},{"Bonus":0,"Continent":"K33","ID":55621,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":2020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55621","ServerKey":"pl181","X":313,"Y":372},{"Bonus":0,"Continent":"K74","ID":55622,"Name":"12. GT","PlayerID":849100262,"Points":3509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55622","ServerKey":"pl181","X":464,"Y":724},{"Bonus":0,"Continent":"K25","ID":55623,"Name":"Wioska katarzyna2012","PlayerID":7427966,"Points":3912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55623","ServerKey":"pl181","X":543,"Y":276},{"Bonus":0,"Continent":"K24","ID":55624,"Name":"235...NORTH","PlayerID":6920960,"Points":5174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55624","ServerKey":"pl181","X":433,"Y":279},{"Bonus":0,"Continent":"K24","ID":55625,"Name":"????","PlayerID":698489071,"Points":5320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55625","ServerKey":"pl181","X":491,"Y":266},{"Bonus":0,"Continent":"K74","ID":55626,"Name":"0066,","PlayerID":849037407,"Points":10405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55626","ServerKey":"pl181","X":445,"Y":724},{"Bonus":0,"Continent":"K42","ID":55627,"Name":"Wioska Mantvel","PlayerID":699795698,"Points":6582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55627","ServerKey":"pl181","X":270,"Y":482},{"Bonus":0,"Continent":"K76","ID":55628,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":2734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55628","ServerKey":"pl181","X":603,"Y":709},{"Bonus":0,"Continent":"K33","ID":55629,"Name":"NOT?","PlayerID":9236866,"Points":1244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55629","ServerKey":"pl181","X":314,"Y":361},{"Bonus":0,"Continent":"K62","ID":55630,"Name":"$013$ Interesting...","PlayerID":699550876,"Points":1349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55630","ServerKey":"pl181","X":299,"Y":621},{"Bonus":0,"Continent":"K66","ID":55631,"Name":"Wioska brzydko.1","PlayerID":699511370,"Points":7408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55631","ServerKey":"pl181","X":613,"Y":615},{"Bonus":0,"Continent":"K74","ID":55632,"Name":"bandzior","PlayerID":606407,"Points":4707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55632","ServerKey":"pl181","X":499,"Y":730},{"Bonus":0,"Continent":"K66","ID":55633,"Name":"sony911","PlayerID":1415009,"Points":4228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55633","ServerKey":"pl181","X":600,"Y":651},{"Bonus":0,"Continent":"K32","ID":55634,"Name":"shire","PlayerID":698677650,"Points":7728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55634","ServerKey":"pl181","X":294,"Y":396},{"Bonus":0,"Continent":"K75","ID":55636,"Name":"Wioska barbarzyƄska","PlayerID":849097370,"Points":1094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55636","ServerKey":"pl181","X":595,"Y":706},{"Bonus":0,"Continent":"K76","ID":55637,"Name":"wwwb","PlayerID":699828685,"Points":2881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55637","ServerKey":"pl181","X":601,"Y":708},{"Bonus":0,"Continent":"K74","ID":55638,"Name":"|D| IS","PlayerID":698147372,"Points":1842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55638","ServerKey":"pl181","X":459,"Y":723},{"Bonus":0,"Continent":"K62","ID":55639,"Name":"Wioska barbarzyƄskaC","PlayerID":698178312,"Points":661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55639","ServerKey":"pl181","X":295,"Y":606},{"Bonus":0,"Continent":"K32","ID":55640,"Name":"017. Tak o","PlayerID":698630507,"Points":1223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55640","ServerKey":"pl181","X":295,"Y":395},{"Bonus":7,"Continent":"K57","ID":55642,"Name":"Osada koczownikĂłw","PlayerID":698666810,"Points":7822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55642","ServerKey":"pl181","X":722,"Y":549},{"Bonus":0,"Continent":"K52","ID":55643,"Name":"Wioska leslawos","PlayerID":1227918,"Points":9529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55643","ServerKey":"pl181","X":267,"Y":513},{"Bonus":0,"Continent":"K63","ID":55644,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55644","ServerKey":"pl181","X":313,"Y":626},{"Bonus":0,"Continent":"K33","ID":55645,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55645","ServerKey":"pl181","X":303,"Y":380},{"Bonus":0,"Continent":"K63","ID":55646,"Name":"Psycha Siada","PlayerID":8099868,"Points":7229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55646","ServerKey":"pl181","X":320,"Y":643},{"Bonus":0,"Continent":"K63","ID":55647,"Name":"016 | North","PlayerID":699511295,"Points":2963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55647","ServerKey":"pl181","X":371,"Y":686},{"Bonus":0,"Continent":"K76","ID":55648,"Name":"Wioska barbarzyƄska","PlayerID":8627359,"Points":4669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55648","ServerKey":"pl181","X":610,"Y":701},{"Bonus":3,"Continent":"K47","ID":55649,"Name":"025","PlayerID":849091105,"Points":8779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55649","ServerKey":"pl181","X":725,"Y":491},{"Bonus":0,"Continent":"K66","ID":55650,"Name":"#05!","PlayerID":849101884,"Points":3215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55650","ServerKey":"pl181","X":643,"Y":680},{"Bonus":0,"Continent":"K75","ID":55651,"Name":"ZZZ .::. cinek3456/10","PlayerID":33900,"Points":2240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55651","ServerKey":"pl181","X":586,"Y":710},{"Bonus":0,"Continent":"K57","ID":55652,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55652","ServerKey":"pl181","X":729,"Y":520},{"Bonus":0,"Continent":"K57","ID":55653,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":2412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55653","ServerKey":"pl181","X":731,"Y":537},{"Bonus":0,"Continent":"K52","ID":55654,"Name":"xxx","PlayerID":699510045,"Points":4244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55654","ServerKey":"pl181","X":270,"Y":542},{"Bonus":0,"Continent":"K52","ID":55655,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55655","ServerKey":"pl181","X":283,"Y":588},{"Bonus":0,"Continent":"K53","ID":55656,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55656","ServerKey":"pl181","X":316,"Y":575},{"Bonus":0,"Continent":"K74","ID":55657,"Name":"Taka.","PlayerID":848999671,"Points":2044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55657","ServerKey":"pl181","X":484,"Y":732},{"Bonus":0,"Continent":"K75","ID":55658,"Name":"#K75 0037","PlayerID":699728159,"Points":4695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55658","ServerKey":"pl181","X":524,"Y":727},{"Bonus":0,"Continent":"K33","ID":55659,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55659","ServerKey":"pl181","X":322,"Y":348},{"Bonus":0,"Continent":"K33","ID":55660,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":1019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55660","ServerKey":"pl181","X":340,"Y":328},{"Bonus":0,"Continent":"K66","ID":55661,"Name":"#122#","PlayerID":692803,"Points":4518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55661","ServerKey":"pl181","X":651,"Y":669},{"Bonus":0,"Continent":"K57","ID":55662,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":1313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55662","ServerKey":"pl181","X":730,"Y":536},{"Bonus":0,"Continent":"K73","ID":55663,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55663","ServerKey":"pl181","X":395,"Y":707},{"Bonus":0,"Continent":"K63","ID":55664,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55664","ServerKey":"pl181","X":353,"Y":669},{"Bonus":0,"Continent":"K63","ID":55665,"Name":"$010$ KEN","PlayerID":699550876,"Points":1630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55665","ServerKey":"pl181","X":307,"Y":620},{"Bonus":0,"Continent":"K57","ID":55666,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":1890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55666","ServerKey":"pl181","X":724,"Y":564},{"Bonus":0,"Continent":"K47","ID":55667,"Name":"Republic Of Rukahs","PlayerID":699789609,"Points":2274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55667","ServerKey":"pl181","X":724,"Y":440},{"Bonus":0,"Continent":"K66","ID":55668,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55668","ServerKey":"pl181","X":683,"Y":638},{"Bonus":0,"Continent":"K66","ID":55669,"Name":"Wioska NiedzwiedzWampyr","PlayerID":849099887,"Points":1367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55669","ServerKey":"pl181","X":643,"Y":674},{"Bonus":0,"Continent":"K52","ID":55670,"Name":"075 obrzeĆŒa","PlayerID":699510259,"Points":2619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55670","ServerKey":"pl181","X":277,"Y":560},{"Bonus":0,"Continent":"K26","ID":55671,"Name":"Flap","PlayerID":699098531,"Points":4401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55671","ServerKey":"pl181","X":608,"Y":296},{"Bonus":0,"Continent":"K36","ID":55672,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55672","ServerKey":"pl181","X":648,"Y":318},{"Bonus":4,"Continent":"K74","ID":55673,"Name":"New World","PlayerID":698152377,"Points":5514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55673","ServerKey":"pl181","X":436,"Y":717},{"Bonus":0,"Continent":"K47","ID":55674,"Name":"Wioska barbarzyƄska","PlayerID":699146876,"Points":1839,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55674","ServerKey":"pl181","X":709,"Y":409},{"Bonus":0,"Continent":"K63","ID":55675,"Name":"068 Wioska barbarzyƄska","PlayerID":6354098,"Points":4664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55675","ServerKey":"pl181","X":339,"Y":659},{"Bonus":0,"Continent":"K47","ID":55676,"Name":"A#054","PlayerID":2065730,"Points":3958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55676","ServerKey":"pl181","X":707,"Y":409},{"Bonus":0,"Continent":"K24","ID":55677,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":1850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55677","ServerKey":"pl181","X":459,"Y":271},{"Bonus":8,"Continent":"K32","ID":55678,"Name":"Osada koczownikĂłw","PlayerID":356642,"Points":9619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55678","ServerKey":"pl181","X":299,"Y":381},{"Bonus":0,"Continent":"K24","ID":55679,"Name":"Wioska ddd121","PlayerID":849089654,"Points":2367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55679","ServerKey":"pl181","X":416,"Y":291},{"Bonus":0,"Continent":"K47","ID":55680,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55680","ServerKey":"pl181","X":731,"Y":474},{"Bonus":0,"Continent":"K25","ID":55681,"Name":".achim.","PlayerID":6936607,"Points":4280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55681","ServerKey":"pl181","X":569,"Y":282},{"Bonus":0,"Continent":"K63","ID":55682,"Name":"O155","PlayerID":272173,"Points":1477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55682","ServerKey":"pl181","X":304,"Y":629},{"Bonus":6,"Continent":"K42","ID":55683,"Name":"019","PlayerID":6131106,"Points":5215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55683","ServerKey":"pl181","X":270,"Y":455},{"Bonus":0,"Continent":"K57","ID":55684,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55684","ServerKey":"pl181","X":713,"Y":574},{"Bonus":0,"Continent":"K76","ID":55685,"Name":"Nowe IMPERIUM 7","PlayerID":698353083,"Points":2954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55685","ServerKey":"pl181","X":618,"Y":702},{"Bonus":0,"Continent":"K35","ID":55686,"Name":"Wioska borek102","PlayerID":6606543,"Points":5502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55686","ServerKey":"pl181","X":562,"Y":398},{"Bonus":0,"Continent":"K42","ID":55687,"Name":"Wioska miki11","PlayerID":50930,"Points":151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55687","ServerKey":"pl181","X":275,"Y":439},{"Bonus":4,"Continent":"K74","ID":55688,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":7858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55688","ServerKey":"pl181","X":417,"Y":713},{"Bonus":0,"Continent":"K24","ID":55689,"Name":"Wioska Wieslaw 3","PlayerID":699794421,"Points":2643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55689","ServerKey":"pl181","X":499,"Y":269},{"Bonus":0,"Continent":"K57","ID":55690,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55690","ServerKey":"pl181","X":720,"Y":553},{"Bonus":0,"Continent":"K25","ID":55691,"Name":"PPF-60","PlayerID":849080011,"Points":5108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55691","ServerKey":"pl181","X":572,"Y":276},{"Bonus":0,"Continent":"K52","ID":55692,"Name":"031. Gloria Victis","PlayerID":848886973,"Points":4812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55692","ServerKey":"pl181","X":285,"Y":572},{"Bonus":0,"Continent":"K75","ID":55693,"Name":"#0068","PlayerID":1536231,"Points":3233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55693","ServerKey":"pl181","X":575,"Y":717},{"Bonus":0,"Continent":"K76","ID":55694,"Name":"wy...","PlayerID":699828685,"Points":4060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55694","ServerKey":"pl181","X":602,"Y":705},{"Bonus":0,"Continent":"K42","ID":55695,"Name":"Wioska gall6","PlayerID":699598396,"Points":2752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55695","ServerKey":"pl181","X":269,"Y":475},{"Bonus":0,"Continent":"K47","ID":55696,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":2203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55696","ServerKey":"pl181","X":723,"Y":472},{"Bonus":0,"Continent":"K75","ID":55697,"Name":"Wioska dam111","PlayerID":3345943,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55697","ServerKey":"pl181","X":552,"Y":726},{"Bonus":0,"Continent":"K24","ID":55698,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55698","ServerKey":"pl181","X":487,"Y":271},{"Bonus":0,"Continent":"K24","ID":55700,"Name":"Gdansk","PlayerID":699278528,"Points":3272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55700","ServerKey":"pl181","X":449,"Y":271},{"Bonus":0,"Continent":"K52","ID":55701,"Name":"Wioska Farmer155","PlayerID":849095594,"Points":909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55701","ServerKey":"pl181","X":275,"Y":523},{"Bonus":0,"Continent":"K66","ID":55702,"Name":"Wioska 093","PlayerID":848971079,"Points":5415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55702","ServerKey":"pl181","X":699,"Y":618},{"Bonus":0,"Continent":"K24","ID":55703,"Name":"Wioska black","PlayerID":3411571,"Points":5001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55703","ServerKey":"pl181","X":416,"Y":290},{"Bonus":0,"Continent":"K75","ID":55704,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55704","ServerKey":"pl181","X":530,"Y":733},{"Bonus":0,"Continent":"K36","ID":55705,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55705","ServerKey":"pl181","X":650,"Y":327},{"Bonus":0,"Continent":"K25","ID":55707,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55707","ServerKey":"pl181","X":504,"Y":276},{"Bonus":0,"Continent":"K42","ID":55708,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55708","ServerKey":"pl181","X":288,"Y":425},{"Bonus":0,"Continent":"K47","ID":55709,"Name":"[832] Odludzie","PlayerID":848985692,"Points":6146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55709","ServerKey":"pl181","X":722,"Y":430},{"Bonus":0,"Continent":"K66","ID":55710,"Name":"Wioska barbarzyƄska","PlayerID":698786826,"Points":3083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55710","ServerKey":"pl181","X":686,"Y":643},{"Bonus":0,"Continent":"K57","ID":55712,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55712","ServerKey":"pl181","X":734,"Y":510},{"Bonus":7,"Continent":"K24","ID":55713,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55713","ServerKey":"pl181","X":487,"Y":272},{"Bonus":0,"Continent":"K36","ID":55714,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55714","ServerKey":"pl181","X":643,"Y":320},{"Bonus":0,"Continent":"K57","ID":55715,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55715","ServerKey":"pl181","X":728,"Y":523},{"Bonus":0,"Continent":"K33","ID":55716,"Name":"Gubernia 04 BarbarzyƄska","PlayerID":849107532,"Points":3893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55716","ServerKey":"pl181","X":373,"Y":310},{"Bonus":0,"Continent":"K42","ID":55717,"Name":"Avanti!","PlayerID":698625834,"Points":2783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55717","ServerKey":"pl181","X":271,"Y":470},{"Bonus":0,"Continent":"K33","ID":55718,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":3683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55718","ServerKey":"pl181","X":324,"Y":350},{"Bonus":0,"Continent":"K47","ID":55719,"Name":"094. Wioska barbarzyƄska","PlayerID":7494497,"Points":3715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55719","ServerKey":"pl181","X":728,"Y":468},{"Bonus":0,"Continent":"K47","ID":55720,"Name":"Wioska SmerfĂłw","PlayerID":849102480,"Points":4922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55720","ServerKey":"pl181","X":716,"Y":437},{"Bonus":0,"Continent":"K63","ID":55721,"Name":"Wioska z Pracza 2","PlayerID":8916982,"Points":1681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55721","ServerKey":"pl181","X":311,"Y":622},{"Bonus":0,"Continent":"K52","ID":55722,"Name":"Wioska barbarzyƄska","PlayerID":848988401,"Points":1354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55722","ServerKey":"pl181","X":282,"Y":577},{"Bonus":0,"Continent":"K74","ID":55723,"Name":"New World","PlayerID":698152377,"Points":10247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55723","ServerKey":"pl181","X":408,"Y":705},{"Bonus":0,"Continent":"K66","ID":55724,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55724","ServerKey":"pl181","X":642,"Y":679},{"Bonus":0,"Continent":"K47","ID":55726,"Name":"Wioska (046)","PlayerID":698232227,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55726","ServerKey":"pl181","X":725,"Y":461},{"Bonus":0,"Continent":"K24","ID":55727,"Name":"Wioska E","PlayerID":3411571,"Points":4733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55727","ServerKey":"pl181","X":401,"Y":287},{"Bonus":0,"Continent":"K75","ID":55728,"Name":"Wioska Abis","PlayerID":698934729,"Points":1245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55728","ServerKey":"pl181","X":515,"Y":734},{"Bonus":0,"Continent":"K46","ID":55729,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55729","ServerKey":"pl181","X":684,"Y":406},{"Bonus":0,"Continent":"K42","ID":55730,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55730","ServerKey":"pl181","X":279,"Y":426},{"Bonus":0,"Continent":"K23","ID":55731,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":1423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55731","ServerKey":"pl181","X":383,"Y":297},{"Bonus":0,"Continent":"K45","ID":55732,"Name":"117","PlayerID":7092442,"Points":4590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55732","ServerKey":"pl181","X":563,"Y":473},{"Bonus":0,"Continent":"K74","ID":55733,"Name":"Taka.","PlayerID":848999671,"Points":3242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55733","ServerKey":"pl181","X":488,"Y":725},{"Bonus":5,"Continent":"K63","ID":55734,"Name":"Lipa","PlayerID":8175236,"Points":5209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55734","ServerKey":"pl181","X":323,"Y":653},{"Bonus":0,"Continent":"K24","ID":55736,"Name":"006","PlayerID":699694284,"Points":7724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55736","ServerKey":"pl181","X":401,"Y":290},{"Bonus":0,"Continent":"K42","ID":55737,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55737","ServerKey":"pl181","X":287,"Y":409},{"Bonus":0,"Continent":"K36","ID":55738,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55738","ServerKey":"pl181","X":653,"Y":327},{"Bonus":0,"Continent":"K57","ID":55739,"Name":"Wioska lechman","PlayerID":8997874,"Points":4710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55739","ServerKey":"pl181","X":716,"Y":586},{"Bonus":0,"Continent":"K47","ID":55740,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":2254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55740","ServerKey":"pl181","X":727,"Y":466},{"Bonus":0,"Continent":"K25","ID":55741,"Name":"B011","PlayerID":699485250,"Points":4014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55741","ServerKey":"pl181","X":527,"Y":272},{"Bonus":0,"Continent":"K74","ID":55742,"Name":"Wioska utache","PlayerID":848965531,"Points":209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55742","ServerKey":"pl181","X":407,"Y":710},{"Bonus":0,"Continent":"K57","ID":55743,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55743","ServerKey":"pl181","X":714,"Y":579},{"Bonus":0,"Continent":"K33","ID":55744,"Name":"Lecymy DUR","PlayerID":6169408,"Points":1161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55744","ServerKey":"pl181","X":336,"Y":332},{"Bonus":0,"Continent":"K63","ID":55745,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55745","ServerKey":"pl181","X":326,"Y":653},{"Bonus":0,"Continent":"K25","ID":55746,"Name":"Wioska DrJointtt","PlayerID":8609713,"Points":3353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55746","ServerKey":"pl181","X":599,"Y":294},{"Bonus":0,"Continent":"K36","ID":55747,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55747","ServerKey":"pl181","X":665,"Y":339},{"Bonus":0,"Continent":"K53","ID":55748,"Name":"Wioska Mr Dymer","PlayerID":7865511,"Points":4193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55748","ServerKey":"pl181","X":326,"Y":593},{"Bonus":6,"Continent":"K52","ID":55749,"Name":"Nowy 0001","PlayerID":849096972,"Points":5212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55749","ServerKey":"pl181","X":285,"Y":595},{"Bonus":0,"Continent":"K33","ID":55750,"Name":"Wioska Ywozdreiwt Nyzuk","PlayerID":849110571,"Points":2552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55750","ServerKey":"pl181","X":311,"Y":373},{"Bonus":0,"Continent":"K33","ID":55751,"Name":"Maszlug kolonia XXIII","PlayerID":848977649,"Points":1183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55751","ServerKey":"pl181","X":317,"Y":361},{"Bonus":0,"Continent":"K33","ID":55752,"Name":"PIROTECHNIK 005","PlayerID":849101083,"Points":6948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55752","ServerKey":"pl181","X":336,"Y":336},{"Bonus":0,"Continent":"K25","ID":55753,"Name":"PPF-04","PlayerID":1424656,"Points":4933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55753","ServerKey":"pl181","X":518,"Y":274},{"Bonus":0,"Continent":"K42","ID":55754,"Name":"K42 ADAMUS 011","PlayerID":6212605,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55754","ServerKey":"pl181","X":280,"Y":431},{"Bonus":0,"Continent":"K66","ID":55755,"Name":"#117#","PlayerID":692803,"Points":4491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55755","ServerKey":"pl181","X":651,"Y":667},{"Bonus":0,"Continent":"K54","ID":55756,"Name":"069","PlayerID":699510259,"Points":3320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55756","ServerKey":"pl181","X":476,"Y":502},{"Bonus":0,"Continent":"K24","ID":55757,"Name":"#0175 darmuwa","PlayerID":1238300,"Points":5403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55757","ServerKey":"pl181","X":476,"Y":277},{"Bonus":0,"Continent":"K63","ID":55758,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55758","ServerKey":"pl181","X":356,"Y":672},{"Bonus":0,"Continent":"K42","ID":55759,"Name":"Wioska barbarzyƄska","PlayerID":849095814,"Points":2492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55759","ServerKey":"pl181","X":270,"Y":477},{"Bonus":0,"Continent":"K24","ID":55760,"Name":"ƚrednia osada","PlayerID":3411571,"Points":4041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55760","ServerKey":"pl181","X":419,"Y":280},{"Bonus":0,"Continent":"K36","ID":55761,"Name":"t027","PlayerID":2262902,"Points":780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55761","ServerKey":"pl181","X":667,"Y":345},{"Bonus":0,"Continent":"K52","ID":55762,"Name":"Wyspa 024","PlayerID":225023,"Points":1182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55762","ServerKey":"pl181","X":280,"Y":567},{"Bonus":0,"Continent":"K74","ID":55763,"Name":"039 - Budowanko!","PlayerID":7540891,"Points":5587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55763","ServerKey":"pl181","X":469,"Y":726},{"Bonus":0,"Continent":"K36","ID":55764,"Name":"Bombaj City.","PlayerID":699803189,"Points":4397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55764","ServerKey":"pl181","X":688,"Y":376},{"Bonus":0,"Continent":"K52","ID":55765,"Name":"005","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55765","ServerKey":"pl181","X":294,"Y":587},{"Bonus":0,"Continent":"K75","ID":55766,"Name":"Wiocha 6","PlayerID":849045675,"Points":7108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55766","ServerKey":"pl181","X":547,"Y":720},{"Bonus":0,"Continent":"K36","ID":55767,"Name":"Wioska barbarzyƄska","PlayerID":6956104,"Points":907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55767","ServerKey":"pl181","X":682,"Y":358},{"Bonus":0,"Continent":"K36","ID":55768,"Name":"Wioska Totalnie Mocarny Goƛciu","PlayerID":8924845,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55768","ServerKey":"pl181","X":647,"Y":319},{"Bonus":9,"Continent":"K33","ID":55769,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55769","ServerKey":"pl181","X":300,"Y":388},{"Bonus":0,"Continent":"K75","ID":55770,"Name":"Dina","PlayerID":6882236,"Points":3064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55770","ServerKey":"pl181","X":583,"Y":717},{"Bonus":0,"Continent":"K33","ID":55771,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":2054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55771","ServerKey":"pl181","X":356,"Y":326},{"Bonus":0,"Continent":"K36","ID":55772,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55772","ServerKey":"pl181","X":640,"Y":319},{"Bonus":9,"Continent":"K57","ID":55773,"Name":"OV1 Neath","PlayerID":699272880,"Points":4255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55773","ServerKey":"pl181","X":713,"Y":594},{"Bonus":0,"Continent":"K24","ID":55774,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55774","ServerKey":"pl181","X":401,"Y":298},{"Bonus":0,"Continent":"K52","ID":55775,"Name":"Na SsSskraju","PlayerID":1536625,"Points":4236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55775","ServerKey":"pl181","X":276,"Y":569},{"Bonus":0,"Continent":"K75","ID":55776,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":5275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55776","ServerKey":"pl181","X":541,"Y":721},{"Bonus":0,"Continent":"K36","ID":55777,"Name":"007","PlayerID":849020094,"Points":6789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55777","ServerKey":"pl181","X":655,"Y":339},{"Bonus":0,"Continent":"K74","ID":55778,"Name":"W81","PlayerID":7661091,"Points":7345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55778","ServerKey":"pl181","X":442,"Y":718},{"Bonus":0,"Continent":"K36","ID":55779,"Name":"Flap","PlayerID":699098531,"Points":4503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55779","ServerKey":"pl181","X":616,"Y":304},{"Bonus":0,"Continent":"K57","ID":55780,"Name":"0636zzz005","PlayerID":3986807,"Points":612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55780","ServerKey":"pl181","X":709,"Y":599},{"Bonus":0,"Continent":"K74","ID":55781,"Name":"New World","PlayerID":698152377,"Points":8286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55781","ServerKey":"pl181","X":414,"Y":710},{"Bonus":0,"Continent":"K75","ID":55782,"Name":"w myself","PlayerID":699828685,"Points":3415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55782","ServerKey":"pl181","X":598,"Y":706},{"Bonus":0,"Continent":"K66","ID":55783,"Name":"Nowe IMPERIUM 3","PlayerID":698353083,"Points":6098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55783","ServerKey":"pl181","X":617,"Y":692},{"Bonus":0,"Continent":"K66","ID":55784,"Name":"Opal","PlayerID":849048856,"Points":7777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55784","ServerKey":"pl181","X":667,"Y":659},{"Bonus":0,"Continent":"K74","ID":55785,"Name":"R 048","PlayerID":699195358,"Points":3578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55785","ServerKey":"pl181","X":491,"Y":729},{"Bonus":0,"Continent":"K75","ID":55786,"Name":"#0069","PlayerID":1536231,"Points":3057,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55786","ServerKey":"pl181","X":574,"Y":717},{"Bonus":0,"Continent":"K66","ID":55787,"Name":"Wioska barbarzyƄska","PlayerID":849096354,"Points":1071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55787","ServerKey":"pl181","X":633,"Y":686},{"Bonus":0,"Continent":"K67","ID":55788,"Name":"Wioska Jatutuptup","PlayerID":1044760,"Points":400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55788","ServerKey":"pl181","X":703,"Y":614},{"Bonus":0,"Continent":"K57","ID":55789,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55789","ServerKey":"pl181","X":728,"Y":511},{"Bonus":0,"Continent":"K47","ID":55790,"Name":"085. Wioska barbarzyƄska","PlayerID":7494497,"Points":3635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55790","ServerKey":"pl181","X":729,"Y":469},{"Bonus":0,"Continent":"K74","ID":55791,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55791","ServerKey":"pl181","X":400,"Y":707},{"Bonus":0,"Continent":"K42","ID":55792,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55792","ServerKey":"pl181","X":286,"Y":410},{"Bonus":0,"Continent":"K75","ID":55794,"Name":"Kapitol_30","PlayerID":606407,"Points":3824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55794","ServerKey":"pl181","X":504,"Y":732},{"Bonus":0,"Continent":"K52","ID":55795,"Name":"005 Rom","PlayerID":197581,"Points":4294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55795","ServerKey":"pl181","X":278,"Y":543},{"Bonus":0,"Continent":"K25","ID":55796,"Name":"North K25","PlayerID":699146580,"Points":1736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55796","ServerKey":"pl181","X":533,"Y":271},{"Bonus":9,"Continent":"K75","ID":55797,"Name":"0660","PlayerID":698659980,"Points":9740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55797","ServerKey":"pl181","X":588,"Y":717},{"Bonus":0,"Continent":"K75","ID":55798,"Name":"181","PlayerID":699614821,"Points":127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55798","ServerKey":"pl181","X":525,"Y":723},{"Bonus":0,"Continent":"K33","ID":55799,"Name":"Wioska barbarzyƄska","PlayerID":849098731,"Points":854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55799","ServerKey":"pl181","X":322,"Y":359},{"Bonus":0,"Continent":"K36","ID":55801,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55801","ServerKey":"pl181","X":642,"Y":326},{"Bonus":8,"Continent":"K74","ID":55802,"Name":"New World","PlayerID":698152377,"Points":10290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55802","ServerKey":"pl181","X":413,"Y":717},{"Bonus":0,"Continent":"K44","ID":55803,"Name":"231 Kalkuta","PlayerID":1497168,"Points":4343,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55803","ServerKey":"pl181","X":476,"Y":495},{"Bonus":2,"Continent":"K63","ID":55804,"Name":"004","PlayerID":8752714,"Points":2127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55804","ServerKey":"pl181","X":331,"Y":662},{"Bonus":0,"Continent":"K42","ID":55805,"Name":"Wioska ACFT","PlayerID":848906441,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55805","ServerKey":"pl181","X":276,"Y":442},{"Bonus":0,"Continent":"K66","ID":55806,"Name":"#154#","PlayerID":692803,"Points":1386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55806","ServerKey":"pl181","X":652,"Y":671},{"Bonus":0,"Continent":"K75","ID":55807,"Name":"#0083","PlayerID":1536231,"Points":2767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55807","ServerKey":"pl181","X":577,"Y":715},{"Bonus":0,"Continent":"K52","ID":55808,"Name":"Wioska barbarzyƄska","PlayerID":498483,"Points":972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55808","ServerKey":"pl181","X":289,"Y":577},{"Bonus":0,"Continent":"K47","ID":55810,"Name":"083. Wioska barbarzyƄska","PlayerID":7494497,"Points":4233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55810","ServerKey":"pl181","X":731,"Y":470},{"Bonus":0,"Continent":"K52","ID":55811,"Name":"Wioska POMPIARZ 12","PlayerID":849107881,"Points":5000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55811","ServerKey":"pl181","X":274,"Y":522},{"Bonus":0,"Continent":"K36","ID":55812,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":1535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55812","ServerKey":"pl181","X":678,"Y":353},{"Bonus":0,"Continent":"K23","ID":55813,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55813","ServerKey":"pl181","X":387,"Y":296},{"Bonus":0,"Continent":"K23","ID":55814,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":1516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55814","ServerKey":"pl181","X":381,"Y":298},{"Bonus":0,"Continent":"K42","ID":55815,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55815","ServerKey":"pl181","X":286,"Y":413},{"Bonus":0,"Continent":"K66","ID":55816,"Name":"komandos","PlayerID":7976264,"Points":3530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55816","ServerKey":"pl181","X":675,"Y":654},{"Bonus":0,"Continent":"K42","ID":55817,"Name":"KUKA IX","PlayerID":6127190,"Points":624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55817","ServerKey":"pl181","X":285,"Y":422},{"Bonus":0,"Continent":"K52","ID":55818,"Name":"New WorldA","PlayerID":849084005,"Points":958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55818","ServerKey":"pl181","X":268,"Y":511},{"Bonus":4,"Continent":"K47","ID":55819,"Name":"A#026","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55819","ServerKey":"pl181","X":732,"Y":472},{"Bonus":0,"Continent":"K75","ID":55820,"Name":"Kapitol_21","PlayerID":606407,"Points":4227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55820","ServerKey":"pl181","X":505,"Y":725},{"Bonus":0,"Continent":"K66","ID":55821,"Name":"#123#","PlayerID":692803,"Points":4460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55821","ServerKey":"pl181","X":653,"Y":677},{"Bonus":0,"Continent":"K57","ID":55823,"Name":"Wioska barbarzyƄska","PlayerID":254937,"Points":1926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55823","ServerKey":"pl181","X":734,"Y":522},{"Bonus":0,"Continent":"K66","ID":55825,"Name":"Wioska 01","PlayerID":126954,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55825","ServerKey":"pl181","X":668,"Y":663},{"Bonus":0,"Continent":"K24","ID":55826,"Name":"Gwenville 013","PlayerID":848986638,"Points":2925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55826","ServerKey":"pl181","X":451,"Y":270},{"Bonus":0,"Continent":"K52","ID":55827,"Name":"007","PlayerID":698663855,"Points":4486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55827","ServerKey":"pl181","X":290,"Y":587},{"Bonus":0,"Continent":"K74","ID":55828,"Name":"FP046","PlayerID":699605333,"Points":4564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55828","ServerKey":"pl181","X":454,"Y":725},{"Bonus":0,"Continent":"K36","ID":55829,"Name":"#0227 barbarzyƄska","PlayerID":1238300,"Points":3383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55829","ServerKey":"pl181","X":664,"Y":331},{"Bonus":0,"Continent":"K35","ID":55830,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":2219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55830","ServerKey":"pl181","X":592,"Y":324},{"Bonus":0,"Continent":"K42","ID":55831,"Name":"szymek3 OCB","PlayerID":1323424,"Points":2463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55831","ServerKey":"pl181","X":281,"Y":422},{"Bonus":0,"Continent":"K24","ID":55832,"Name":"Wioska b 002","PlayerID":6343784,"Points":1606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55832","ServerKey":"pl181","X":428,"Y":284},{"Bonus":0,"Continent":"K57","ID":55833,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":9689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55833","ServerKey":"pl181","X":721,"Y":548},{"Bonus":0,"Continent":"K74","ID":55834,"Name":"#001","PlayerID":849042480,"Points":5301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55834","ServerKey":"pl181","X":444,"Y":728},{"Bonus":0,"Continent":"K62","ID":55835,"Name":"Wioska barbarzyƄskaD","PlayerID":698178312,"Points":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55835","ServerKey":"pl181","X":293,"Y":608},{"Bonus":0,"Continent":"K63","ID":55836,"Name":"Psycha Siada","PlayerID":2289134,"Points":7523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55836","ServerKey":"pl181","X":317,"Y":640},{"Bonus":0,"Continent":"K42","ID":55837,"Name":"Avanti!","PlayerID":698625834,"Points":4578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55837","ServerKey":"pl181","X":272,"Y":485},{"Bonus":0,"Continent":"K42","ID":55838,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":4196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55838","ServerKey":"pl181","X":274,"Y":464},{"Bonus":0,"Continent":"K47","ID":55839,"Name":"Wioska MIREK2222222","PlayerID":6927748,"Points":3072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55839","ServerKey":"pl181","X":706,"Y":425},{"Bonus":0,"Continent":"K73","ID":55840,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":6278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55840","ServerKey":"pl181","X":399,"Y":700},{"Bonus":0,"Continent":"K62","ID":55841,"Name":"Wioska barbarzyƄskaA","PlayerID":698178312,"Points":4330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55841","ServerKey":"pl181","X":293,"Y":609},{"Bonus":0,"Continent":"K25","ID":55842,"Name":".achim.","PlayerID":6936607,"Points":3890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55842","ServerKey":"pl181","X":572,"Y":284},{"Bonus":0,"Continent":"K63","ID":55843,"Name":"Wioska barbarzyƄska","PlayerID":272173,"Points":1239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55843","ServerKey":"pl181","X":305,"Y":630},{"Bonus":0,"Continent":"K24","ID":55844,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55844","ServerKey":"pl181","X":414,"Y":281},{"Bonus":0,"Continent":"K25","ID":55845,"Name":"North 064","PlayerID":849064752,"Points":5128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55845","ServerKey":"pl181","X":541,"Y":273},{"Bonus":0,"Continent":"K66","ID":55846,"Name":"042","PlayerID":2323859,"Points":1312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55846","ServerKey":"pl181","X":674,"Y":647},{"Bonus":0,"Continent":"K33","ID":55847,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55847","ServerKey":"pl181","X":365,"Y":317},{"Bonus":0,"Continent":"K33","ID":55848,"Name":"NOT?","PlayerID":9236866,"Points":2495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55848","ServerKey":"pl181","X":314,"Y":360},{"Bonus":7,"Continent":"K47","ID":55849,"Name":"039 KTW","PlayerID":848883237,"Points":1726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55849","ServerKey":"pl181","X":724,"Y":454},{"Bonus":0,"Continent":"K66","ID":55850,"Name":"Sony 911","PlayerID":1415009,"Points":3054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55850","ServerKey":"pl181","X":661,"Y":670},{"Bonus":0,"Continent":"K57","ID":55851,"Name":"Z.07","PlayerID":699737356,"Points":2816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55851","ServerKey":"pl181","X":709,"Y":580},{"Bonus":0,"Continent":"K33","ID":55853,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55853","ServerKey":"pl181","X":366,"Y":306},{"Bonus":0,"Continent":"K36","ID":55854,"Name":"Nie atakuje robię flagi","PlayerID":3365981,"Points":1701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55854","ServerKey":"pl181","X":651,"Y":330},{"Bonus":0,"Continent":"K47","ID":55855,"Name":"X.03","PlayerID":699737356,"Points":3494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55855","ServerKey":"pl181","X":728,"Y":443},{"Bonus":0,"Continent":"K63","ID":55857,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":2302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55857","ServerKey":"pl181","X":349,"Y":675},{"Bonus":0,"Continent":"K36","ID":55858,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55858","ServerKey":"pl181","X":676,"Y":350},{"Bonus":0,"Continent":"K37","ID":55859,"Name":"backstage 3","PlayerID":849099696,"Points":3396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55859","ServerKey":"pl181","X":705,"Y":399},{"Bonus":0,"Continent":"K35","ID":55860,"Name":"Wiocha zabita dechami","PlayerID":849110711,"Points":4633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55860","ServerKey":"pl181","X":549,"Y":338},{"Bonus":0,"Continent":"K33","ID":55861,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55861","ServerKey":"pl181","X":362,"Y":321},{"Bonus":0,"Continent":"K24","ID":55862,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55862","ServerKey":"pl181","X":475,"Y":266},{"Bonus":0,"Continent":"K25","ID":55863,"Name":"=SAwars=03=","PlayerID":849106420,"Points":5327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55863","ServerKey":"pl181","X":563,"Y":277},{"Bonus":0,"Continent":"K54","ID":55864,"Name":"Myk","PlayerID":849022649,"Points":2956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55864","ServerKey":"pl181","X":424,"Y":569},{"Bonus":0,"Continent":"K52","ID":55865,"Name":"002","PlayerID":698663855,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55865","ServerKey":"pl181","X":288,"Y":594},{"Bonus":0,"Continent":"K42","ID":55866,"Name":"181","PlayerID":698941586,"Points":1576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55866","ServerKey":"pl181","X":268,"Y":460},{"Bonus":0,"Continent":"K47","ID":55867,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55867","ServerKey":"pl181","X":705,"Y":401},{"Bonus":0,"Continent":"K75","ID":55868,"Name":"Wioska ZYXW","PlayerID":698331388,"Points":3759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55868","ServerKey":"pl181","X":563,"Y":715},{"Bonus":0,"Continent":"K25","ID":55869,"Name":"PPF-24","PlayerID":1424656,"Points":1853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55869","ServerKey":"pl181","X":533,"Y":272},{"Bonus":0,"Continent":"K25","ID":55870,"Name":"Wioska kacper10ciupek","PlayerID":8015955,"Points":7061,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55870","ServerKey":"pl181","X":549,"Y":274},{"Bonus":0,"Continent":"K52","ID":55871,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55871","ServerKey":"pl181","X":284,"Y":586},{"Bonus":0,"Continent":"K42","ID":55872,"Name":"Wioska Zielony Zielony Zielony","PlayerID":699876746,"Points":5436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55872","ServerKey":"pl181","X":297,"Y":447},{"Bonus":0,"Continent":"K36","ID":55873,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55873","ServerKey":"pl181","X":685,"Y":358},{"Bonus":0,"Continent":"K25","ID":55874,"Name":"bagienko_03","PlayerID":849093353,"Points":3987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55874","ServerKey":"pl181","X":562,"Y":278},{"Bonus":0,"Continent":"K42","ID":55875,"Name":"krainy zachodu","PlayerID":698677650,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55875","ServerKey":"pl181","X":285,"Y":406},{"Bonus":0,"Continent":"K33","ID":55876,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":2161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55876","ServerKey":"pl181","X":369,"Y":318},{"Bonus":0,"Continent":"K75","ID":55877,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":7542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55877","ServerKey":"pl181","X":538,"Y":729},{"Bonus":0,"Continent":"K57","ID":55878,"Name":"CastAway #015","PlayerID":9314079,"Points":3618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55878","ServerKey":"pl181","X":707,"Y":588},{"Bonus":0,"Continent":"K33","ID":55879,"Name":"Wioska Donek94","PlayerID":699841905,"Points":3464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55879","ServerKey":"pl181","X":303,"Y":383},{"Bonus":0,"Continent":"K25","ID":55880,"Name":"--053--","PlayerID":542253,"Points":855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55880","ServerKey":"pl181","X":583,"Y":284},{"Bonus":0,"Continent":"K73","ID":55882,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55882","ServerKey":"pl181","X":394,"Y":708},{"Bonus":0,"Continent":"K57","ID":55883,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":1575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55883","ServerKey":"pl181","X":731,"Y":531},{"Bonus":0,"Continent":"K33","ID":55884,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55884","ServerKey":"pl181","X":354,"Y":324},{"Bonus":0,"Continent":"K74","ID":55885,"Name":"New World","PlayerID":698152377,"Points":10083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55885","ServerKey":"pl181","X":421,"Y":719},{"Bonus":0,"Continent":"K33","ID":55886,"Name":"Jack 69","PlayerID":699622781,"Points":2777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55886","ServerKey":"pl181","X":326,"Y":344},{"Bonus":0,"Continent":"K57","ID":55887,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55887","ServerKey":"pl181","X":728,"Y":503},{"Bonus":0,"Continent":"K63","ID":55888,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":3325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55888","ServerKey":"pl181","X":354,"Y":679},{"Bonus":0,"Continent":"K57","ID":55889,"Name":"065","PlayerID":699413040,"Points":3186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55889","ServerKey":"pl181","X":726,"Y":511},{"Bonus":0,"Continent":"K52","ID":55890,"Name":"C0299","PlayerID":8841266,"Points":4089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55890","ServerKey":"pl181","X":275,"Y":551},{"Bonus":0,"Continent":"K53","ID":55891,"Name":"MrozĂłw","PlayerID":1276665,"Points":1122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55891","ServerKey":"pl181","X":300,"Y":593},{"Bonus":0,"Continent":"K36","ID":55892,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55892","ServerKey":"pl181","X":630,"Y":315},{"Bonus":0,"Continent":"K74","ID":55893,"Name":"P|006|","PlayerID":699393742,"Points":6283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55893","ServerKey":"pl181","X":449,"Y":728},{"Bonus":0,"Continent":"K33","ID":55894,"Name":"No.2","PlayerID":849106612,"Points":2353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55894","ServerKey":"pl181","X":327,"Y":343},{"Bonus":0,"Continent":"K66","ID":55895,"Name":"Wioska Frolunda","PlayerID":8379825,"Points":536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55895","ServerKey":"pl181","X":630,"Y":693},{"Bonus":0,"Continent":"K66","ID":55896,"Name":"Nowe IMPERIUM 8","PlayerID":698353083,"Points":4719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55896","ServerKey":"pl181","X":620,"Y":698},{"Bonus":0,"Continent":"K36","ID":55897,"Name":"Ow Konfederacja","PlayerID":848915730,"Points":7384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55897","ServerKey":"pl181","X":608,"Y":399},{"Bonus":0,"Continent":"K26","ID":55898,"Name":"Flap","PlayerID":699098531,"Points":4165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55898","ServerKey":"pl181","X":610,"Y":296},{"Bonus":0,"Continent":"K36","ID":55899,"Name":"=|45|=","PlayerID":9101574,"Points":496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55899","ServerKey":"pl181","X":692,"Y":372},{"Bonus":0,"Continent":"K66","ID":55900,"Name":"WschĂłd 003","PlayerID":698562644,"Points":2142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55900","ServerKey":"pl181","X":695,"Y":622},{"Bonus":8,"Continent":"K25","ID":55901,"Name":".achim.","PlayerID":6936607,"Points":3247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55901","ServerKey":"pl181","X":579,"Y":283},{"Bonus":32,"Continent":"K63","ID":55902,"Name":"Twierdza (Ald)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55902","ServerKey":"pl181","X":331,"Y":609},{"Bonus":0,"Continent":"K57","ID":55903,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55903","ServerKey":"pl181","X":722,"Y":577},{"Bonus":0,"Continent":"K63","ID":55904,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":6206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55904","ServerKey":"pl181","X":324,"Y":633},{"Bonus":0,"Continent":"K36","ID":55905,"Name":"Grzejdas 2","PlayerID":849057764,"Points":6460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55905","ServerKey":"pl181","X":698,"Y":385},{"Bonus":0,"Continent":"K57","ID":55906,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55906","ServerKey":"pl181","X":726,"Y":554},{"Bonus":0,"Continent":"K47","ID":55907,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55907","ServerKey":"pl181","X":732,"Y":484},{"Bonus":0,"Continent":"K66","ID":55908,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55908","ServerKey":"pl181","X":647,"Y":684},{"Bonus":0,"Continent":"K32","ID":55910,"Name":"zwiedle wrzosowiska","PlayerID":698677650,"Points":6082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55910","ServerKey":"pl181","X":291,"Y":393},{"Bonus":0,"Continent":"K74","ID":55911,"Name":"|D| IS","PlayerID":698147372,"Points":2632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55911","ServerKey":"pl181","X":457,"Y":725},{"Bonus":0,"Continent":"K36","ID":55912,"Name":"003","PlayerID":699832463,"Points":2042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55912","ServerKey":"pl181","X":698,"Y":375},{"Bonus":0,"Continent":"K47","ID":55913,"Name":"Wioska","PlayerID":699765601,"Points":1537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55913","ServerKey":"pl181","X":723,"Y":471},{"Bonus":0,"Continent":"K25","ID":55914,"Name":"Wioska wojtek1435","PlayerID":6032352,"Points":4572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55914","ServerKey":"pl181","X":541,"Y":271},{"Bonus":0,"Continent":"K36","ID":55915,"Name":"Flap","PlayerID":699098531,"Points":5228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55915","ServerKey":"pl181","X":610,"Y":300},{"Bonus":0,"Continent":"K66","ID":55916,"Name":"Wioska barbarzyƄska","PlayerID":699778867,"Points":466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55916","ServerKey":"pl181","X":697,"Y":612},{"Bonus":0,"Continent":"K75","ID":55917,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55917","ServerKey":"pl181","X":560,"Y":726},{"Bonus":0,"Continent":"K64","ID":55918,"Name":"Wioska ElitoPogero","PlayerID":8827094,"Points":3844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55918","ServerKey":"pl181","X":446,"Y":673},{"Bonus":0,"Continent":"K52","ID":55919,"Name":"003","PlayerID":698663855,"Points":7432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55919","ServerKey":"pl181","X":291,"Y":596},{"Bonus":6,"Continent":"K24","ID":55920,"Name":"049","PlayerID":2502956,"Points":8538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55920","ServerKey":"pl181","X":473,"Y":269},{"Bonus":0,"Continent":"K66","ID":55921,"Name":"055","PlayerID":699099811,"Points":4220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55921","ServerKey":"pl181","X":671,"Y":650},{"Bonus":0,"Continent":"K74","ID":55922,"Name":"New World","PlayerID":698152377,"Points":6464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55922","ServerKey":"pl181","X":435,"Y":717},{"Bonus":0,"Continent":"K75","ID":55924,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":8609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55924","ServerKey":"pl181","X":540,"Y":728},{"Bonus":0,"Continent":"K42","ID":55925,"Name":"Australia D","PlayerID":699852080,"Points":4683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55925","ServerKey":"pl181","X":296,"Y":425},{"Bonus":0,"Continent":"K25","ID":55926,"Name":"D017","PlayerID":699299123,"Points":2653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55926","ServerKey":"pl181","X":562,"Y":279},{"Bonus":0,"Continent":"K37","ID":55927,"Name":"060-Mroczna Osada","PlayerID":849035905,"Points":908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55927","ServerKey":"pl181","X":701,"Y":379},{"Bonus":0,"Continent":"K36","ID":55928,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55928","ServerKey":"pl181","X":623,"Y":304},{"Bonus":0,"Continent":"K47","ID":55929,"Name":"Wioska polotny33","PlayerID":8776452,"Points":360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55929","ServerKey":"pl181","X":732,"Y":464},{"Bonus":0,"Continent":"K52","ID":55930,"Name":"61. Wioska 61","PlayerID":849091769,"Points":7662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55930","ServerKey":"pl181","X":281,"Y":566},{"Bonus":0,"Continent":"K25","ID":55931,"Name":"North 022","PlayerID":849064752,"Points":7793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55931","ServerKey":"pl181","X":509,"Y":273},{"Bonus":0,"Continent":"K33","ID":55932,"Name":"Gubernia 02 Robsona","PlayerID":849107532,"Points":4133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55932","ServerKey":"pl181","X":365,"Y":314},{"Bonus":0,"Continent":"K42","ID":55933,"Name":"Przylądek","PlayerID":848977600,"Points":2121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55933","ServerKey":"pl181","X":270,"Y":459},{"Bonus":0,"Continent":"K52","ID":55934,"Name":"023. Gloria Victis","PlayerID":848886973,"Points":7558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55934","ServerKey":"pl181","X":282,"Y":564},{"Bonus":0,"Continent":"K52","ID":55935,"Name":"C0252","PlayerID":8841266,"Points":5029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55935","ServerKey":"pl181","X":268,"Y":526},{"Bonus":0,"Continent":"K75","ID":55936,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":3258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55936","ServerKey":"pl181","X":548,"Y":719},{"Bonus":0,"Continent":"K63","ID":55937,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":2485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55937","ServerKey":"pl181","X":353,"Y":682},{"Bonus":0,"Continent":"K36","ID":55938,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55938","ServerKey":"pl181","X":654,"Y":322},{"Bonus":0,"Continent":"K74","ID":55939,"Name":"C007","PlayerID":8954402,"Points":2553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55939","ServerKey":"pl181","X":466,"Y":732},{"Bonus":0,"Continent":"K33","ID":55940,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":1176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55940","ServerKey":"pl181","X":334,"Y":336},{"Bonus":0,"Continent":"K52","ID":55941,"Name":"C0305","PlayerID":8841266,"Points":3722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55941","ServerKey":"pl181","X":276,"Y":529},{"Bonus":0,"Continent":"K42","ID":55942,"Name":"KUKA V","PlayerID":6127190,"Points":1097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55942","ServerKey":"pl181","X":279,"Y":436},{"Bonus":0,"Continent":"K66","ID":55943,"Name":"ble","PlayerID":848909464,"Points":1538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55943","ServerKey":"pl181","X":623,"Y":697},{"Bonus":0,"Continent":"K75","ID":55944,"Name":"#204 C","PlayerID":9037756,"Points":4022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55944","ServerKey":"pl181","X":509,"Y":733},{"Bonus":0,"Continent":"K52","ID":55945,"Name":"Wioska niko30","PlayerID":848988401,"Points":9581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55945","ServerKey":"pl181","X":285,"Y":577},{"Bonus":0,"Continent":"K42","ID":55946,"Name":"szymek4","PlayerID":1323424,"Points":1452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55946","ServerKey":"pl181","X":281,"Y":418},{"Bonus":0,"Continent":"K25","ID":55947,"Name":"116 Wioska barbarzyƄska","PlayerID":699854484,"Points":171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55947","ServerKey":"pl181","X":569,"Y":284},{"Bonus":0,"Continent":"K52","ID":55948,"Name":"007","PlayerID":698663855,"Points":4624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55948","ServerKey":"pl181","X":290,"Y":586},{"Bonus":4,"Continent":"K25","ID":55949,"Name":"North 017","PlayerID":849064752,"Points":8067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55949","ServerKey":"pl181","X":508,"Y":270},{"Bonus":0,"Continent":"K57","ID":55950,"Name":"067","PlayerID":699413040,"Points":2347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55950","ServerKey":"pl181","X":724,"Y":520},{"Bonus":0,"Continent":"K75","ID":55951,"Name":"akuku","PlayerID":6425087,"Points":1182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55951","ServerKey":"pl181","X":555,"Y":726},{"Bonus":0,"Continent":"K75","ID":55952,"Name":"#K75 0036","PlayerID":699728159,"Points":5266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55952","ServerKey":"pl181","X":523,"Y":726},{"Bonus":0,"Continent":"K33","ID":55953,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55953","ServerKey":"pl181","X":318,"Y":356},{"Bonus":0,"Continent":"K63","ID":55954,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":825,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55954","ServerKey":"pl181","X":334,"Y":655},{"Bonus":0,"Continent":"K63","ID":55955,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55955","ServerKey":"pl181","X":337,"Y":661},{"Bonus":0,"Continent":"K63","ID":55956,"Name":"63/2","PlayerID":8175236,"Points":2559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55956","ServerKey":"pl181","X":328,"Y":654},{"Bonus":0,"Continent":"K57","ID":55958,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55958","ServerKey":"pl181","X":724,"Y":549},{"Bonus":6,"Continent":"K23","ID":55959,"Name":"012","PlayerID":699694284,"Points":5104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55959","ServerKey":"pl181","X":395,"Y":292},{"Bonus":0,"Continent":"K47","ID":55960,"Name":"Artur Boruc v3","PlayerID":699146876,"Points":2667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55960","ServerKey":"pl181","X":711,"Y":405},{"Bonus":0,"Continent":"K63","ID":55961,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":5461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55961","ServerKey":"pl181","X":362,"Y":688},{"Bonus":0,"Continent":"K24","ID":55962,"Name":"Wioska Volf102","PlayerID":698202162,"Points":138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55962","ServerKey":"pl181","X":413,"Y":282},{"Bonus":3,"Continent":"K57","ID":55963,"Name":"Osada koczownikĂłw","PlayerID":254937,"Points":4282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55963","ServerKey":"pl181","X":730,"Y":523},{"Bonus":0,"Continent":"K67","ID":55964,"Name":"KERTO 01","PlayerID":7474527,"Points":3925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55964","ServerKey":"pl181","X":709,"Y":602},{"Bonus":0,"Continent":"K24","ID":55965,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55965","ServerKey":"pl181","X":479,"Y":271},{"Bonus":0,"Continent":"K25","ID":55966,"Name":"North 113","PlayerID":849064752,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55966","ServerKey":"pl181","X":512,"Y":274},{"Bonus":0,"Continent":"K74","ID":55967,"Name":"Bagno 37","PlayerID":848883684,"Points":4308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55967","ServerKey":"pl181","X":471,"Y":729},{"Bonus":0,"Continent":"K47","ID":55968,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":3552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55968","ServerKey":"pl181","X":733,"Y":492},{"Bonus":0,"Continent":"K73","ID":55969,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55969","ServerKey":"pl181","X":393,"Y":706},{"Bonus":0,"Continent":"K25","ID":55970,"Name":"102 Wioska barbarzyƄska","PlayerID":699854484,"Points":3978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55970","ServerKey":"pl181","X":536,"Y":272},{"Bonus":0,"Continent":"K24","ID":55971,"Name":"????","PlayerID":698489071,"Points":4474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55971","ServerKey":"pl181","X":477,"Y":274},{"Bonus":9,"Continent":"K76","ID":55972,"Name":"wybuduję sobie paƂac...","PlayerID":699828685,"Points":10178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55972","ServerKey":"pl181","X":602,"Y":703},{"Bonus":0,"Continent":"K24","ID":55973,"Name":"114.Stradi","PlayerID":698365960,"Points":6379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55973","ServerKey":"pl181","X":425,"Y":281},{"Bonus":0,"Continent":"K63","ID":55974,"Name":"$005$ JBL","PlayerID":699550876,"Points":8619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55974","ServerKey":"pl181","X":304,"Y":627},{"Bonus":0,"Continent":"K32","ID":55975,"Name":"Wioska muflon1922","PlayerID":1827485,"Points":376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55975","ServerKey":"pl181","X":297,"Y":388},{"Bonus":0,"Continent":"K25","ID":55976,"Name":".achim.","PlayerID":6936607,"Points":3100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55976","ServerKey":"pl181","X":578,"Y":285},{"Bonus":0,"Continent":"K66","ID":55977,"Name":"092 koniec ƛwiata","PlayerID":849093426,"Points":3547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55977","ServerKey":"pl181","X":634,"Y":693},{"Bonus":0,"Continent":"K47","ID":55978,"Name":"Wioska barbarzyƄska","PlayerID":113796,"Points":877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55978","ServerKey":"pl181","X":726,"Y":474},{"Bonus":4,"Continent":"K57","ID":55979,"Name":"A#027","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55979","ServerKey":"pl181","X":735,"Y":500},{"Bonus":0,"Continent":"K42","ID":55980,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55980","ServerKey":"pl181","X":271,"Y":444},{"Bonus":0,"Continent":"K32","ID":55981,"Name":"londyn","PlayerID":849089601,"Points":1181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55981","ServerKey":"pl181","X":299,"Y":395},{"Bonus":0,"Continent":"K52","ID":55982,"Name":"Wioska barbarzyƄska","PlayerID":6186491,"Points":424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55982","ServerKey":"pl181","X":268,"Y":502},{"Bonus":0,"Continent":"K57","ID":55983,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55983","ServerKey":"pl181","X":716,"Y":572},{"Bonus":3,"Continent":"K63","ID":55984,"Name":"005","PlayerID":8752714,"Points":2331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55984","ServerKey":"pl181","X":327,"Y":645},{"Bonus":0,"Continent":"K75","ID":55985,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55985","ServerKey":"pl181","X":582,"Y":720},{"Bonus":0,"Continent":"K42","ID":55986,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55986","ServerKey":"pl181","X":272,"Y":488},{"Bonus":0,"Continent":"K46","ID":55987,"Name":"Będzie zadyma?","PlayerID":699545762,"Points":771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55987","ServerKey":"pl181","X":623,"Y":474},{"Bonus":0,"Continent":"K36","ID":55988,"Name":"#0230 barbarzyƄska","PlayerID":1238300,"Points":3038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55988","ServerKey":"pl181","X":662,"Y":335},{"Bonus":0,"Continent":"K47","ID":55989,"Name":"Wioska leolen n","PlayerID":849104855,"Points":8321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55989","ServerKey":"pl181","X":731,"Y":498},{"Bonus":0,"Continent":"K36","ID":55990,"Name":"kamilkaze135 #19","PlayerID":699705601,"Points":1527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55990","ServerKey":"pl181","X":685,"Y":364},{"Bonus":0,"Continent":"K74","ID":55991,"Name":"Wioska Arda26 and Azdro","PlayerID":699429335,"Points":10160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55991","ServerKey":"pl181","X":499,"Y":715},{"Bonus":0,"Continent":"K36","ID":55992,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55992","ServerKey":"pl181","X":646,"Y":323},{"Bonus":0,"Continent":"K33","ID":55993,"Name":"#001","PlayerID":849110743,"Points":6725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55993","ServerKey":"pl181","X":304,"Y":374},{"Bonus":0,"Continent":"K33","ID":55994,"Name":"Blaviken","PlayerID":849098731,"Points":1045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55994","ServerKey":"pl181","X":323,"Y":356},{"Bonus":0,"Continent":"K74","ID":55995,"Name":"New World","PlayerID":698152377,"Points":7147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55995","ServerKey":"pl181","X":431,"Y":724},{"Bonus":0,"Continent":"K57","ID":55996,"Name":"071","PlayerID":699413040,"Points":1794,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55996","ServerKey":"pl181","X":730,"Y":519},{"Bonus":0,"Continent":"K47","ID":55997,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55997","ServerKey":"pl181","X":723,"Y":455},{"Bonus":0,"Continent":"K75","ID":55998,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":8201460,"Points":3575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55998","ServerKey":"pl181","X":539,"Y":722},{"Bonus":4,"Continent":"K75","ID":55999,"Name":"Osada koczownikĂłw","PlayerID":699828442,"Points":9496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=55999","ServerKey":"pl181","X":560,"Y":721},{"Bonus":0,"Continent":"K74","ID":56000,"Name":"Ave Why!","PlayerID":699121671,"Points":717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56000","ServerKey":"pl181","X":498,"Y":728},{"Bonus":0,"Continent":"K26","ID":56001,"Name":"XDX","PlayerID":699098531,"Points":4199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56001","ServerKey":"pl181","X":601,"Y":292},{"Bonus":0,"Continent":"K75","ID":56002,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56002","ServerKey":"pl181","X":521,"Y":726},{"Bonus":0,"Continent":"K75","ID":56003,"Name":"#0060","PlayerID":1536231,"Points":3602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56003","ServerKey":"pl181","X":579,"Y":711},{"Bonus":0,"Continent":"K36","ID":56004,"Name":"0001","PlayerID":8890346,"Points":7368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56004","ServerKey":"pl181","X":654,"Y":326},{"Bonus":0,"Continent":"K47","ID":56005,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":1333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56005","ServerKey":"pl181","X":719,"Y":425},{"Bonus":0,"Continent":"K42","ID":56006,"Name":"Nie gram tu","PlayerID":849061417,"Points":437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56006","ServerKey":"pl181","X":294,"Y":426},{"Bonus":0,"Continent":"K57","ID":56007,"Name":"CastAway #022","PlayerID":9314079,"Points":3590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56007","ServerKey":"pl181","X":713,"Y":589},{"Bonus":0,"Continent":"K36","ID":56008,"Name":"Freedom","PlayerID":699518384,"Points":726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56008","ServerKey":"pl181","X":648,"Y":324},{"Bonus":0,"Continent":"K25","ID":56009,"Name":"North K25","PlayerID":699146580,"Points":1923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56009","ServerKey":"pl181","X":562,"Y":273},{"Bonus":3,"Continent":"K67","ID":56010,"Name":"K67 ...........................","PlayerID":698867483,"Points":7543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56010","ServerKey":"pl181","X":702,"Y":614},{"Bonus":0,"Continent":"K46","ID":56011,"Name":"WIOSKA OD BIG PAPA MZM.","PlayerID":699117865,"Points":9633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56011","ServerKey":"pl181","X":614,"Y":480},{"Bonus":0,"Continent":"K32","ID":56012,"Name":"samotna gora","PlayerID":698677650,"Points":7611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56012","ServerKey":"pl181","X":293,"Y":392},{"Bonus":0,"Continent":"K75","ID":56013,"Name":"052 - Budowanko!","PlayerID":7540891,"Points":3669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56013","ServerKey":"pl181","X":503,"Y":731},{"Bonus":7,"Continent":"K42","ID":56014,"Name":"Granica1","PlayerID":848977600,"Points":2456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56014","ServerKey":"pl181","X":272,"Y":467},{"Bonus":0,"Continent":"K57","ID":56015,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":1632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56015","ServerKey":"pl181","X":728,"Y":540},{"Bonus":0,"Continent":"K33","ID":56016,"Name":"No.1","PlayerID":849106612,"Points":2521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56016","ServerKey":"pl181","X":329,"Y":339},{"Bonus":0,"Continent":"K63","ID":56017,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56017","ServerKey":"pl181","X":335,"Y":658},{"Bonus":0,"Continent":"K66","ID":56018,"Name":"#120#","PlayerID":692803,"Points":4239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56018","ServerKey":"pl181","X":649,"Y":669},{"Bonus":0,"Continent":"K33","ID":56019,"Name":"ciemnogrĂłd","PlayerID":849098731,"Points":484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56019","ServerKey":"pl181","X":322,"Y":358},{"Bonus":0,"Continent":"K24","ID":56020,"Name":"#0249 colt9","PlayerID":1238300,"Points":4624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56020","ServerKey":"pl181","X":438,"Y":281},{"Bonus":0,"Continent":"K25","ID":56021,"Name":"Wioska mevest","PlayerID":9067168,"Points":42,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56021","ServerKey":"pl181","X":549,"Y":275},{"Bonus":0,"Continent":"K47","ID":56022,"Name":"102. Wioska barbarzyƄska","PlayerID":7494497,"Points":6304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56022","ServerKey":"pl181","X":723,"Y":462},{"Bonus":0,"Continent":"K52","ID":56023,"Name":"Wioska barbarzyƄska","PlayerID":849097937,"Points":2962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56023","ServerKey":"pl181","X":280,"Y":585},{"Bonus":0,"Continent":"K47","ID":56025,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56025","ServerKey":"pl181","X":735,"Y":498},{"Bonus":0,"Continent":"K63","ID":56027,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":2425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56027","ServerKey":"pl181","X":347,"Y":678},{"Bonus":0,"Continent":"K24","ID":56028,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":1264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56028","ServerKey":"pl181","X":460,"Y":268},{"Bonus":0,"Continent":"K57","ID":56029,"Name":"Wioska 012","PlayerID":7999103,"Points":8189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56029","ServerKey":"pl181","X":710,"Y":595},{"Bonus":0,"Continent":"K24","ID":56030,"Name":"1 oo.oo","PlayerID":848933470,"Points":731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56030","ServerKey":"pl181","X":441,"Y":273},{"Bonus":0,"Continent":"K57","ID":56031,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":6121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56031","ServerKey":"pl181","X":727,"Y":554},{"Bonus":0,"Continent":"K25","ID":56032,"Name":"North K25","PlayerID":699146580,"Points":1501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56032","ServerKey":"pl181","X":561,"Y":280},{"Bonus":0,"Continent":"K52","ID":56033,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56033","ServerKey":"pl181","X":285,"Y":587},{"Bonus":0,"Continent":"K26","ID":56035,"Name":"XDX","PlayerID":699098531,"Points":3707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56035","ServerKey":"pl181","X":613,"Y":298},{"Bonus":0,"Continent":"K66","ID":56036,"Name":"nowa 4","PlayerID":699372829,"Points":975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56036","ServerKey":"pl181","X":631,"Y":694},{"Bonus":9,"Continent":"K66","ID":56037,"Name":"Bessa 016","PlayerID":848987051,"Points":8697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56037","ServerKey":"pl181","X":649,"Y":679},{"Bonus":0,"Continent":"K66","ID":56038,"Name":"013 Satoma","PlayerID":849102108,"Points":4646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56038","ServerKey":"pl181","X":676,"Y":647},{"Bonus":0,"Continent":"K24","ID":56039,"Name":"118.Stradi","PlayerID":698365960,"Points":4933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56039","ServerKey":"pl181","X":423,"Y":278},{"Bonus":9,"Continent":"K66","ID":56040,"Name":"058","PlayerID":699695167,"Points":2294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56040","ServerKey":"pl181","X":637,"Y":687},{"Bonus":0,"Continent":"K75","ID":56041,"Name":"NieMacieSzans","PlayerID":849110688,"Points":3153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56041","ServerKey":"pl181","X":501,"Y":731},{"Bonus":0,"Continent":"K73","ID":56042,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56042","ServerKey":"pl181","X":396,"Y":703},{"Bonus":0,"Continent":"K47","ID":56043,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":1599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56043","ServerKey":"pl181","X":714,"Y":431},{"Bonus":0,"Continent":"K66","ID":56044,"Name":"Wioska 004","PlayerID":6472706,"Points":6017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56044","ServerKey":"pl181","X":694,"Y":633},{"Bonus":2,"Continent":"K36","ID":56045,"Name":"010. Osada koczownikĂłw","PlayerID":2873154,"Points":6523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56045","ServerKey":"pl181","X":690,"Y":374},{"Bonus":0,"Continent":"K25","ID":56046,"Name":"ƁakaMakaFą","PlayerID":849096341,"Points":2881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56046","ServerKey":"pl181","X":563,"Y":270},{"Bonus":0,"Continent":"K33","ID":56047,"Name":"NP 03","PlayerID":849076810,"Points":1587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56047","ServerKey":"pl181","X":304,"Y":390},{"Bonus":0,"Continent":"K25","ID":56048,"Name":"093 Wioska barbarzyƄska","PlayerID":699854484,"Points":4840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56048","ServerKey":"pl181","X":540,"Y":271},{"Bonus":0,"Continent":"K66","ID":56049,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56049","ServerKey":"pl181","X":689,"Y":625},{"Bonus":0,"Continent":"K44","ID":56050,"Name":"paawlo13","PlayerID":698848067,"Points":7528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56050","ServerKey":"pl181","X":417,"Y":410},{"Bonus":0,"Continent":"K74","ID":56051,"Name":"No to jedziemy :D","PlayerID":699333701,"Points":2079,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56051","ServerKey":"pl181","X":474,"Y":733},{"Bonus":0,"Continent":"K32","ID":56053,"Name":"zelazne wzgorza","PlayerID":698677650,"Points":2510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56053","ServerKey":"pl181","X":291,"Y":399},{"Bonus":0,"Continent":"K74","ID":56054,"Name":"Wioska oliwer1996","PlayerID":699075613,"Points":6134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56054","ServerKey":"pl181","X":489,"Y":723},{"Bonus":0,"Continent":"K57","ID":56055,"Name":"Nowa 63","PlayerID":698702991,"Points":4366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56055","ServerKey":"pl181","X":723,"Y":567},{"Bonus":0,"Continent":"K52","ID":56056,"Name":"Wioska Morgan578","PlayerID":849047233,"Points":6435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56056","ServerKey":"pl181","X":277,"Y":527},{"Bonus":0,"Continent":"K36","ID":56057,"Name":"=|43|=","PlayerID":9101574,"Points":802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56057","ServerKey":"pl181","X":692,"Y":374},{"Bonus":0,"Continent":"K36","ID":56058,"Name":"Wioska klejmon","PlayerID":849095771,"Points":723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56058","ServerKey":"pl181","X":648,"Y":332},{"Bonus":8,"Continent":"K66","ID":56059,"Name":"#Kresy","PlayerID":2665207,"Points":7325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56059","ServerKey":"pl181","X":632,"Y":692},{"Bonus":0,"Continent":"K66","ID":56060,"Name":"Sony 911","PlayerID":1415009,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56060","ServerKey":"pl181","X":672,"Y":654},{"Bonus":0,"Continent":"K36","ID":56061,"Name":"Ć»ubr","PlayerID":699875213,"Points":1869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56061","ServerKey":"pl181","X":681,"Y":356},{"Bonus":0,"Continent":"K25","ID":56062,"Name":"RAMZES","PlayerID":8082376,"Points":2887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56062","ServerKey":"pl181","X":532,"Y":272},{"Bonus":0,"Continent":"K75","ID":56063,"Name":"#207 C","PlayerID":9037756,"Points":1555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56063","ServerKey":"pl181","X":517,"Y":729},{"Bonus":0,"Continent":"K26","ID":56064,"Name":"XDX","PlayerID":699098531,"Points":3264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56064","ServerKey":"pl181","X":616,"Y":299},{"Bonus":0,"Continent":"K24","ID":56065,"Name":"Gwenville 014","PlayerID":848986638,"Points":1090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56065","ServerKey":"pl181","X":453,"Y":270},{"Bonus":0,"Continent":"K36","ID":56066,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56066","ServerKey":"pl181","X":658,"Y":333},{"Bonus":0,"Continent":"K33","ID":56067,"Name":"Zaplecze Barba 038","PlayerID":699796330,"Points":2731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56067","ServerKey":"pl181","X":348,"Y":331},{"Bonus":0,"Continent":"K57","ID":56068,"Name":"CastAway !037","PlayerID":9314079,"Points":2645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56068","ServerKey":"pl181","X":713,"Y":582},{"Bonus":0,"Continent":"K47","ID":56069,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56069","ServerKey":"pl181","X":726,"Y":452},{"Bonus":0,"Continent":"K74","ID":56070,"Name":"New World","PlayerID":698152377,"Points":10291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56070","ServerKey":"pl181","X":432,"Y":719},{"Bonus":0,"Continent":"K75","ID":56071,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":3671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56071","ServerKey":"pl181","X":558,"Y":720},{"Bonus":0,"Continent":"K57","ID":56073,"Name":"CastAway !023","PlayerID":9314079,"Points":5669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56073","ServerKey":"pl181","X":710,"Y":593},{"Bonus":3,"Continent":"K33","ID":56074,"Name":"-12. Skandynawska huta","PlayerID":698345556,"Points":2045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56074","ServerKey":"pl181","X":317,"Y":365},{"Bonus":0,"Continent":"K73","ID":56075,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56075","ServerKey":"pl181","X":398,"Y":708},{"Bonus":0,"Continent":"K66","ID":56076,"Name":"032","PlayerID":699099811,"Points":1476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56076","ServerKey":"pl181","X":691,"Y":621},{"Bonus":0,"Continent":"K75","ID":56077,"Name":"Marysin","PlayerID":823987,"Points":2843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56077","ServerKey":"pl181","X":599,"Y":710},{"Bonus":0,"Continent":"K73","ID":56078,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56078","ServerKey":"pl181","X":385,"Y":704},{"Bonus":0,"Continent":"K33","ID":56080,"Name":"Lecymy DUR","PlayerID":6169408,"Points":995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56080","ServerKey":"pl181","X":342,"Y":327},{"Bonus":0,"Continent":"K42","ID":56081,"Name":"Wioska Krzych0007","PlayerID":699682780,"Points":3242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56081","ServerKey":"pl181","X":280,"Y":428},{"Bonus":0,"Continent":"K73","ID":56082,"Name":"Wioska Mietusek22","PlayerID":6001174,"Points":7351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56082","ServerKey":"pl181","X":399,"Y":710},{"Bonus":0,"Continent":"K57","ID":56083,"Name":"Alamo2","PlayerID":2723244,"Points":2133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56083","ServerKey":"pl181","X":716,"Y":569},{"Bonus":0,"Continent":"K47","ID":56084,"Name":"077. Wioska barbarzyƄska","PlayerID":7494497,"Points":5145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56084","ServerKey":"pl181","X":732,"Y":465},{"Bonus":0,"Continent":"K42","ID":56085,"Name":"KUKA III","PlayerID":6127190,"Points":3567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56085","ServerKey":"pl181","X":285,"Y":434},{"Bonus":0,"Continent":"K57","ID":56086,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":8567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56086","ServerKey":"pl181","X":726,"Y":550},{"Bonus":0,"Continent":"K74","ID":56087,"Name":"New World","PlayerID":698152377,"Points":1885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56087","ServerKey":"pl181","X":408,"Y":710},{"Bonus":0,"Continent":"K74","ID":56088,"Name":"New World","PlayerID":698152377,"Points":6934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56088","ServerKey":"pl181","X":437,"Y":715},{"Bonus":0,"Continent":"K47","ID":56089,"Name":"040 KTW","PlayerID":848883237,"Points":1840,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56089","ServerKey":"pl181","X":723,"Y":444},{"Bonus":0,"Continent":"K75","ID":56090,"Name":"Wioska Boski222","PlayerID":6299408,"Points":8206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56090","ServerKey":"pl181","X":563,"Y":720},{"Bonus":0,"Continent":"K24","ID":56091,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":2157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56091","ServerKey":"pl181","X":460,"Y":276},{"Bonus":0,"Continent":"K35","ID":56092,"Name":"Diduuu","PlayerID":849108339,"Points":2265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56092","ServerKey":"pl181","X":560,"Y":397},{"Bonus":0,"Continent":"K75","ID":56093,"Name":"wwwb","PlayerID":699828685,"Points":3367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56093","ServerKey":"pl181","X":599,"Y":707},{"Bonus":0,"Continent":"K36","ID":56094,"Name":"Wioska saladyn89.","PlayerID":7346797,"Points":5793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56094","ServerKey":"pl181","X":669,"Y":337},{"Bonus":2,"Continent":"K63","ID":56095,"Name":"003","PlayerID":8752714,"Points":2746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56095","ServerKey":"pl181","X":333,"Y":656},{"Bonus":0,"Continent":"K25","ID":56096,"Name":"--050--","PlayerID":542253,"Points":1916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56096","ServerKey":"pl181","X":583,"Y":290},{"Bonus":0,"Continent":"K57","ID":56097,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":8546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56097","ServerKey":"pl181","X":727,"Y":550},{"Bonus":0,"Continent":"K63","ID":56098,"Name":"O115","PlayerID":272173,"Points":6626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56098","ServerKey":"pl181","X":313,"Y":638},{"Bonus":0,"Continent":"K36","ID":56099,"Name":"B022","PlayerID":8740199,"Points":2553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56099","ServerKey":"pl181","X":627,"Y":309},{"Bonus":6,"Continent":"K33","ID":56100,"Name":"Osada koczownikĂłw 03","PlayerID":698757439,"Points":10138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56100","ServerKey":"pl181","X":340,"Y":336},{"Bonus":32,"Continent":"K63","ID":56101,"Name":"Twierdza (MAƁYSZ)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56101","ServerKey":"pl181","X":331,"Y":610},{"Bonus":32,"Continent":"K63","ID":56103,"Name":"Twierdza (Zajęnc)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56103","ServerKey":"pl181","X":331,"Y":611},{"Bonus":0,"Continent":"K42","ID":56104,"Name":"Maryna","PlayerID":699650981,"Points":4052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56104","ServerKey":"pl181","X":268,"Y":458},{"Bonus":0,"Continent":"K33","ID":56105,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":1472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56105","ServerKey":"pl181","X":312,"Y":368},{"Bonus":0,"Continent":"K42","ID":56106,"Name":"Wioska Cypis666","PlayerID":699730399,"Points":5440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56106","ServerKey":"pl181","X":274,"Y":460},{"Bonus":0,"Continent":"K66","ID":56107,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56107","ServerKey":"pl181","X":631,"Y":690},{"Bonus":0,"Continent":"K52","ID":56109,"Name":"002","PlayerID":698663855,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56109","ServerKey":"pl181","X":289,"Y":594},{"Bonus":0,"Continent":"K63","ID":56110,"Name":"Psycha Siada","PlayerID":2289134,"Points":6762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56110","ServerKey":"pl181","X":322,"Y":641},{"Bonus":0,"Continent":"K52","ID":56111,"Name":"0000042Z","PlayerID":849089881,"Points":1028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56111","ServerKey":"pl181","X":275,"Y":566},{"Bonus":0,"Continent":"K24","ID":56112,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56112","ServerKey":"pl181","X":492,"Y":267},{"Bonus":0,"Continent":"K63","ID":56113,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56113","ServerKey":"pl181","X":365,"Y":690},{"Bonus":0,"Continent":"K36","ID":56114,"Name":"Wioska barbarzyƄska","PlayerID":2976468,"Points":2624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56114","ServerKey":"pl181","X":675,"Y":351},{"Bonus":0,"Continent":"K76","ID":56115,"Name":"wwwb","PlayerID":699828685,"Points":2846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56115","ServerKey":"pl181","X":605,"Y":710},{"Bonus":0,"Continent":"K24","ID":56116,"Name":"BIMBER 6","PlayerID":6857973,"Points":1012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56116","ServerKey":"pl181","X":438,"Y":280},{"Bonus":0,"Continent":"K57","ID":56117,"Name":"Wioska barbarzyƄska","PlayerID":254937,"Points":3517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56117","ServerKey":"pl181","X":731,"Y":545},{"Bonus":0,"Continent":"K42","ID":56118,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56118","ServerKey":"pl181","X":284,"Y":419},{"Bonus":0,"Continent":"K57","ID":56119,"Name":"Wioska Mihalina","PlayerID":698849979,"Points":518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56119","ServerKey":"pl181","X":735,"Y":514},{"Bonus":0,"Continent":"K36","ID":56120,"Name":"Wioska 019","PlayerID":7226782,"Points":983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56120","ServerKey":"pl181","X":674,"Y":345},{"Bonus":3,"Continent":"K67","ID":56121,"Name":"K67 07","PlayerID":698867483,"Points":4350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56121","ServerKey":"pl181","X":702,"Y":607},{"Bonus":0,"Continent":"K25","ID":56122,"Name":"Wioska igrane5000","PlayerID":7427966,"Points":3286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56122","ServerKey":"pl181","X":557,"Y":272},{"Bonus":0,"Continent":"K74","ID":56123,"Name":"New World","PlayerID":698152377,"Points":2737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56123","ServerKey":"pl181","X":439,"Y":725},{"Bonus":0,"Continent":"K63","ID":56124,"Name":"43.","PlayerID":8665783,"Points":542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56124","ServerKey":"pl181","X":333,"Y":660},{"Bonus":0,"Continent":"K33","ID":56125,"Name":"Wioska25","PlayerID":699711926,"Points":3889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56125","ServerKey":"pl181","X":333,"Y":347},{"Bonus":0,"Continent":"K24","ID":56126,"Name":"115.Stradi","PlayerID":698365960,"Points":5462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56126","ServerKey":"pl181","X":425,"Y":278},{"Bonus":0,"Continent":"K36","ID":56127,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56127","ServerKey":"pl181","X":660,"Y":339},{"Bonus":0,"Continent":"K57","ID":56128,"Name":"028","PlayerID":6160655,"Points":2998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56128","ServerKey":"pl181","X":713,"Y":590},{"Bonus":0,"Continent":"K36","ID":56129,"Name":"035. marcopolo1324","PlayerID":2873154,"Points":2874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56129","ServerKey":"pl181","X":688,"Y":362},{"Bonus":0,"Continent":"K74","ID":56130,"Name":"New World","PlayerID":698152377,"Points":7310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56130","ServerKey":"pl181","X":430,"Y":723},{"Bonus":0,"Continent":"K74","ID":56131,"Name":"037. Small Town","PlayerID":848928624,"Points":2499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56131","ServerKey":"pl181","X":496,"Y":735},{"Bonus":0,"Continent":"K32","ID":56132,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56132","ServerKey":"pl181","X":289,"Y":399},{"Bonus":0,"Continent":"K25","ID":56133,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56133","ServerKey":"pl181","X":597,"Y":293},{"Bonus":0,"Continent":"K63","ID":56134,"Name":"pRoFiCe II","PlayerID":698712383,"Points":4844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56134","ServerKey":"pl181","X":362,"Y":678},{"Bonus":0,"Continent":"K24","ID":56135,"Name":"Wioska asiulkaaa23","PlayerID":3411571,"Points":6212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56135","ServerKey":"pl181","X":417,"Y":288},{"Bonus":0,"Continent":"K24","ID":56136,"Name":"????","PlayerID":698489071,"Points":3929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56136","ServerKey":"pl181","X":469,"Y":273},{"Bonus":0,"Continent":"K62","ID":56137,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56137","ServerKey":"pl181","X":298,"Y":619},{"Bonus":0,"Continent":"K74","ID":56138,"Name":"New World","PlayerID":698152377,"Points":3584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56138","ServerKey":"pl181","X":409,"Y":710},{"Bonus":0,"Continent":"K57","ID":56139,"Name":"=122= Wioska barbarzyƄska","PlayerID":3781794,"Points":1781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56139","ServerKey":"pl181","X":720,"Y":565},{"Bonus":0,"Continent":"K52","ID":56140,"Name":"0000039Z","PlayerID":849089881,"Points":2160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56140","ServerKey":"pl181","X":276,"Y":558},{"Bonus":0,"Continent":"K47","ID":56141,"Name":"042 KTW","PlayerID":848883237,"Points":1471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56141","ServerKey":"pl181","X":727,"Y":444},{"Bonus":8,"Continent":"K42","ID":56142,"Name":"K42 ADAMUS 007","PlayerID":6212605,"Points":9172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56142","ServerKey":"pl181","X":279,"Y":432},{"Bonus":0,"Continent":"K66","ID":56143,"Name":"Sony 911","PlayerID":1415009,"Points":1745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56143","ServerKey":"pl181","X":683,"Y":648},{"Bonus":3,"Continent":"K36","ID":56144,"Name":"004","PlayerID":849020094,"Points":4904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56144","ServerKey":"pl181","X":666,"Y":333},{"Bonus":0,"Continent":"K57","ID":56145,"Name":"Wioska cobra2ooo","PlayerID":699734795,"Points":628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56145","ServerKey":"pl181","X":708,"Y":587},{"Bonus":0,"Continent":"K25","ID":56146,"Name":"Zeta pięć","PlayerID":849080011,"Points":1231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56146","ServerKey":"pl181","X":573,"Y":277},{"Bonus":0,"Continent":"K25","ID":56147,"Name":"RPM CUSTOM 3","PlayerID":849102094,"Points":3023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56147","ServerKey":"pl181","X":556,"Y":282},{"Bonus":0,"Continent":"K73","ID":56148,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56148","ServerKey":"pl181","X":390,"Y":704},{"Bonus":0,"Continent":"K24","ID":56149,"Name":"Poznan 003","PlayerID":1924718,"Points":494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56149","ServerKey":"pl181","X":411,"Y":287},{"Bonus":0,"Continent":"K25","ID":56150,"Name":"All heil CSA","PlayerID":699448276,"Points":509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56150","ServerKey":"pl181","X":592,"Y":284},{"Bonus":0,"Continent":"K42","ID":56151,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":3698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56151","ServerKey":"pl181","X":275,"Y":464},{"Bonus":0,"Continent":"K52","ID":56152,"Name":"Wioska hiszpan78","PlayerID":699721590,"Points":409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56152","ServerKey":"pl181","X":277,"Y":534},{"Bonus":1,"Continent":"K75","ID":56153,"Name":"Kuzyn BƂaĆŒej","PlayerID":849098628,"Points":5503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56153","ServerKey":"pl181","X":583,"Y":714},{"Bonus":0,"Continent":"K25","ID":56154,"Name":"Wioska oleska2002","PlayerID":6296228,"Points":2999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56154","ServerKey":"pl181","X":593,"Y":283},{"Bonus":0,"Continent":"K66","ID":56155,"Name":"BETON 111","PlayerID":699277039,"Points":232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56155","ServerKey":"pl181","X":663,"Y":662},{"Bonus":0,"Continent":"K36","ID":56156,"Name":"Sony 911","PlayerID":1415009,"Points":2380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56156","ServerKey":"pl181","X":699,"Y":394},{"Bonus":0,"Continent":"K33","ID":56157,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2959,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56157","ServerKey":"pl181","X":357,"Y":318},{"Bonus":0,"Continent":"K57","ID":56159,"Name":"062","PlayerID":699413040,"Points":3570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56159","ServerKey":"pl181","X":725,"Y":511},{"Bonus":0,"Continent":"K24","ID":56160,"Name":"North 103","PlayerID":849064752,"Points":2591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56160","ServerKey":"pl181","X":484,"Y":265},{"Bonus":0,"Continent":"K26","ID":56161,"Name":"Flap","PlayerID":699098531,"Points":3009,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56161","ServerKey":"pl181","X":603,"Y":298},{"Bonus":0,"Continent":"K42","ID":56162,"Name":"M001","PlayerID":1669587,"Points":998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56162","ServerKey":"pl181","X":278,"Y":440},{"Bonus":0,"Continent":"K36","ID":56163,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56163","ServerKey":"pl181","X":651,"Y":320},{"Bonus":0,"Continent":"K66","ID":56164,"Name":"Wioska szaikan96","PlayerID":3860614,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56164","ServerKey":"pl181","X":620,"Y":697},{"Bonus":0,"Continent":"K25","ID":56165,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56165","ServerKey":"pl181","X":535,"Y":269},{"Bonus":0,"Continent":"K25","ID":56166,"Name":"#044","PlayerID":849064614,"Points":1121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56166","ServerKey":"pl181","X":560,"Y":283},{"Bonus":0,"Continent":"K33","ID":56167,"Name":"007","PlayerID":7919620,"Points":5071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56167","ServerKey":"pl181","X":318,"Y":377},{"Bonus":8,"Continent":"K57","ID":56168,"Name":"Alamo1","PlayerID":2723244,"Points":2773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56168","ServerKey":"pl181","X":718,"Y":565},{"Bonus":0,"Continent":"K25","ID":56169,"Name":"bagienko_06","PlayerID":849093353,"Points":3045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56169","ServerKey":"pl181","X":559,"Y":283},{"Bonus":0,"Continent":"K36","ID":56170,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56170","ServerKey":"pl181","X":647,"Y":325},{"Bonus":0,"Continent":"K23","ID":56171,"Name":"131.Stradi","PlayerID":698365960,"Points":3346,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56171","ServerKey":"pl181","X":394,"Y":294},{"Bonus":0,"Continent":"K47","ID":56172,"Name":"[840] Odludzie","PlayerID":848985692,"Points":5098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56172","ServerKey":"pl181","X":723,"Y":441},{"Bonus":0,"Continent":"K42","ID":56174,"Name":"[0269]","PlayerID":8630972,"Points":3941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56174","ServerKey":"pl181","X":266,"Y":493},{"Bonus":0,"Continent":"K25","ID":56175,"Name":"PPF-03","PlayerID":1424656,"Points":5276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56175","ServerKey":"pl181","X":521,"Y":272},{"Bonus":0,"Continent":"K66","ID":56177,"Name":"Cadiz","PlayerID":747422,"Points":3325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56177","ServerKey":"pl181","X":649,"Y":673},{"Bonus":0,"Continent":"K47","ID":56178,"Name":"Wioska Lord Ɓukasz05","PlayerID":8816336,"Points":2371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56178","ServerKey":"pl181","X":726,"Y":472},{"Bonus":0,"Continent":"K66","ID":56179,"Name":"Nowa Baza 2","PlayerID":698353083,"Points":5134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56179","ServerKey":"pl181","X":613,"Y":697},{"Bonus":0,"Continent":"K24","ID":56180,"Name":"247","PlayerID":7271812,"Points":481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56180","ServerKey":"pl181","X":451,"Y":280},{"Bonus":0,"Continent":"K52","ID":56181,"Name":"Wioska bartekwach","PlayerID":849107507,"Points":4382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56181","ServerKey":"pl181","X":266,"Y":517},{"Bonus":0,"Continent":"K33","ID":56182,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56182","ServerKey":"pl181","X":318,"Y":368},{"Bonus":0,"Continent":"K25","ID":56183,"Name":"B015","PlayerID":699485250,"Points":3809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56183","ServerKey":"pl181","X":529,"Y":269},{"Bonus":0,"Continent":"K24","ID":56184,"Name":"223...NORTH","PlayerID":6920960,"Points":1826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56184","ServerKey":"pl181","X":437,"Y":283},{"Bonus":0,"Continent":"K26","ID":56185,"Name":"Flap","PlayerID":699098531,"Points":4511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56185","ServerKey":"pl181","X":609,"Y":291},{"Bonus":0,"Continent":"K25","ID":56186,"Name":"Wioska XXARDASS","PlayerID":8015955,"Points":4590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56186","ServerKey":"pl181","X":546,"Y":272},{"Bonus":0,"Continent":"K24","ID":56187,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56187","ServerKey":"pl181","X":498,"Y":269},{"Bonus":0,"Continent":"K47","ID":56188,"Name":"Wioska AreYouHorny?","PlayerID":849067079,"Points":3620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56188","ServerKey":"pl181","X":720,"Y":440},{"Bonus":0,"Continent":"K23","ID":56189,"Name":"008","PlayerID":699694284,"Points":8100,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56189","ServerKey":"pl181","X":398,"Y":290},{"Bonus":9,"Continent":"K52","ID":56190,"Name":"C0237","PlayerID":8841266,"Points":9219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56190","ServerKey":"pl181","X":277,"Y":552},{"Bonus":0,"Continent":"K47","ID":56191,"Name":"C.058","PlayerID":9188016,"Points":1302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56191","ServerKey":"pl181","X":725,"Y":479},{"Bonus":0,"Continent":"K62","ID":56192,"Name":"Wioska barbarzyƄska","PlayerID":699604515,"Points":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56192","ServerKey":"pl181","X":298,"Y":608},{"Bonus":0,"Continent":"K75","ID":56193,"Name":"Wioska agjao","PlayerID":849070220,"Points":946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56193","ServerKey":"pl181","X":500,"Y":734},{"Bonus":0,"Continent":"K63","ID":56194,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":4629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56194","ServerKey":"pl181","X":354,"Y":676},{"Bonus":0,"Continent":"K52","ID":56195,"Name":"009","PlayerID":698663855,"Points":4210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56195","ServerKey":"pl181","X":293,"Y":589},{"Bonus":0,"Continent":"K74","ID":56196,"Name":"0048","PlayerID":699280514,"Points":980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56196","ServerKey":"pl181","X":478,"Y":732},{"Bonus":0,"Continent":"K42","ID":56197,"Name":"*001*","PlayerID":699791054,"Points":3350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56197","ServerKey":"pl181","X":275,"Y":433},{"Bonus":0,"Continent":"K42","ID":56198,"Name":":) :)","PlayerID":3972413,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56198","ServerKey":"pl181","X":268,"Y":464},{"Bonus":0,"Continent":"K74","ID":56199,"Name":"Ave Why!","PlayerID":699121671,"Points":1286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56199","ServerKey":"pl181","X":472,"Y":728},{"Bonus":0,"Continent":"K75","ID":56200,"Name":"C017","PlayerID":698599365,"Points":1902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56200","ServerKey":"pl181","X":535,"Y":724},{"Bonus":0,"Continent":"K47","ID":56201,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56201","ServerKey":"pl181","X":731,"Y":482},{"Bonus":0,"Continent":"K24","ID":56202,"Name":"????","PlayerID":698489071,"Points":5397,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56202","ServerKey":"pl181","X":490,"Y":265},{"Bonus":0,"Continent":"K73","ID":56203,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56203","ServerKey":"pl181","X":387,"Y":700},{"Bonus":0,"Continent":"K75","ID":56204,"Name":"!Wioska barbarzyƄska 2","PlayerID":8779575,"Points":3331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56204","ServerKey":"pl181","X":584,"Y":720},{"Bonus":0,"Continent":"K25","ID":56205,"Name":"Wioska Stefal-S22","PlayerID":2764337,"Points":841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56205","ServerKey":"pl181","X":556,"Y":271},{"Bonus":0,"Continent":"K32","ID":56206,"Name":"osgiliath","PlayerID":698677650,"Points":6696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56206","ServerKey":"pl181","X":291,"Y":392},{"Bonus":0,"Continent":"K57","ID":56207,"Name":"Mohicans","PlayerID":6002527,"Points":5442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56207","ServerKey":"pl181","X":727,"Y":538},{"Bonus":0,"Continent":"K74","ID":56208,"Name":"Wioska barczi1979","PlayerID":698692141,"Points":3566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56208","ServerKey":"pl181","X":400,"Y":701},{"Bonus":0,"Continent":"K33","ID":56209,"Name":"Wioska35","PlayerID":699711926,"Points":1599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56209","ServerKey":"pl181","X":325,"Y":345},{"Bonus":0,"Continent":"K74","ID":56210,"Name":"R 047","PlayerID":699195358,"Points":3634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56210","ServerKey":"pl181","X":491,"Y":728},{"Bonus":0,"Continent":"K32","ID":56211,"Name":"mroczna puszcza","PlayerID":698677650,"Points":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56211","ServerKey":"pl181","X":294,"Y":391},{"Bonus":0,"Continent":"K36","ID":56212,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56212","ServerKey":"pl181","X":652,"Y":332},{"Bonus":0,"Continent":"K24","ID":56213,"Name":"Wioska MannyKing97","PlayerID":849111244,"Points":4518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56213","ServerKey":"pl181","X":440,"Y":277},{"Bonus":0,"Continent":"K74","ID":56214,"Name":"FP041","PlayerID":699605333,"Points":5197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56214","ServerKey":"pl181","X":469,"Y":727},{"Bonus":9,"Continent":"K74","ID":56216,"Name":"|D| Cavemere","PlayerID":698147372,"Points":6146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56216","ServerKey":"pl181","X":455,"Y":722},{"Bonus":0,"Continent":"K42","ID":56217,"Name":"K42 ADAMUS 022","PlayerID":6212605,"Points":2926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56217","ServerKey":"pl181","X":279,"Y":430},{"Bonus":7,"Continent":"K36","ID":56218,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56218","ServerKey":"pl181","X":628,"Y":313},{"Bonus":0,"Continent":"K36","ID":56219,"Name":"Las Vegas","PlayerID":849111196,"Points":8602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56219","ServerKey":"pl181","X":659,"Y":335},{"Bonus":0,"Continent":"K63","ID":56220,"Name":"A003","PlayerID":849105102,"Points":3435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56220","ServerKey":"pl181","X":336,"Y":656},{"Bonus":0,"Continent":"K66","ID":56221,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56221","ServerKey":"pl181","X":678,"Y":640},{"Bonus":0,"Continent":"K36","ID":56222,"Name":"Wioska Grisza10","PlayerID":896355,"Points":6208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56222","ServerKey":"pl181","X":653,"Y":321},{"Bonus":0,"Continent":"K33","ID":56223,"Name":"Wioska barbarzyƄska","PlayerID":849101604,"Points":508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56223","ServerKey":"pl181","X":336,"Y":339},{"Bonus":0,"Continent":"K52","ID":56224,"Name":"[S]andacza","PlayerID":849106971,"Points":4171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56224","ServerKey":"pl181","X":274,"Y":549},{"Bonus":0,"Continent":"K42","ID":56225,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56225","ServerKey":"pl181","X":288,"Y":422},{"Bonus":0,"Continent":"K33","ID":56226,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56226","ServerKey":"pl181","X":356,"Y":315},{"Bonus":0,"Continent":"K52","ID":56227,"Name":"New WorldA","PlayerID":849084005,"Points":518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56227","ServerKey":"pl181","X":274,"Y":507},{"Bonus":0,"Continent":"K52","ID":56228,"Name":"Master","PlayerID":849052289,"Points":8663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56228","ServerKey":"pl181","X":274,"Y":545},{"Bonus":0,"Continent":"K24","ID":56229,"Name":"Wioska Kurji","PlayerID":698324343,"Points":7599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56229","ServerKey":"pl181","X":496,"Y":266},{"Bonus":0,"Continent":"K63","ID":56230,"Name":"$008$ Lordzik","PlayerID":699550876,"Points":7513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56230","ServerKey":"pl181","X":300,"Y":622},{"Bonus":0,"Continent":"K32","ID":56231,"Name":"gory mgliste","PlayerID":698677650,"Points":5137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56231","ServerKey":"pl181","X":288,"Y":395},{"Bonus":0,"Continent":"K33","ID":56232,"Name":"Wioska nortos17","PlayerID":699428898,"Points":126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56232","ServerKey":"pl181","X":336,"Y":337},{"Bonus":0,"Continent":"K67","ID":56233,"Name":"Wioska Wu7ek","PlayerID":849108157,"Points":3220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56233","ServerKey":"pl181","X":701,"Y":616},{"Bonus":0,"Continent":"K66","ID":56234,"Name":"Sony 911","PlayerID":1415009,"Points":4982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56234","ServerKey":"pl181","X":678,"Y":653},{"Bonus":0,"Continent":"K33","ID":56235,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56235","ServerKey":"pl181","X":349,"Y":323},{"Bonus":0,"Continent":"K75","ID":56236,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":6604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56236","ServerKey":"pl181","X":534,"Y":729},{"Bonus":0,"Continent":"K57","ID":56237,"Name":"CastAway !024","PlayerID":9314079,"Points":5466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56237","ServerKey":"pl181","X":711,"Y":591},{"Bonus":0,"Continent":"K47","ID":56238,"Name":"C.059","PlayerID":9188016,"Points":2952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56238","ServerKey":"pl181","X":726,"Y":482},{"Bonus":0,"Continent":"K25","ID":56240,"Name":"North 029","PlayerID":849064752,"Points":7117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56240","ServerKey":"pl181","X":508,"Y":269},{"Bonus":0,"Continent":"K75","ID":56241,"Name":"Wioska piro78","PlayerID":699840189,"Points":3589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56241","ServerKey":"pl181","X":578,"Y":714},{"Bonus":0,"Continent":"K36","ID":56242,"Name":"Spajki","PlayerID":7973893,"Points":1232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56242","ServerKey":"pl181","X":681,"Y":351},{"Bonus":0,"Continent":"K25","ID":56243,"Name":"117 Wioska barbarzyƄska","PlayerID":699854484,"Points":596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56243","ServerKey":"pl181","X":552,"Y":271},{"Bonus":0,"Continent":"K47","ID":56244,"Name":"C.060","PlayerID":9188016,"Points":3308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56244","ServerKey":"pl181","X":729,"Y":478},{"Bonus":0,"Continent":"K52","ID":56245,"Name":"Arczi997 08","PlayerID":849055181,"Points":382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56245","ServerKey":"pl181","X":266,"Y":512},{"Bonus":0,"Continent":"K74","ID":56246,"Name":"Bagno 33","PlayerID":848883684,"Points":4886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56246","ServerKey":"pl181","X":475,"Y":724},{"Bonus":0,"Continent":"K63","ID":56247,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56247","ServerKey":"pl181","X":370,"Y":689},{"Bonus":0,"Continent":"K37","ID":56248,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56248","ServerKey":"pl181","X":705,"Y":389},{"Bonus":0,"Continent":"K36","ID":56249,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56249","ServerKey":"pl181","X":629,"Y":304},{"Bonus":0,"Continent":"K42","ID":56250,"Name":"44 barbarzyƄska","PlayerID":849018442,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56250","ServerKey":"pl181","X":273,"Y":435},{"Bonus":0,"Continent":"K47","ID":56251,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":986,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56251","ServerKey":"pl181","X":721,"Y":456},{"Bonus":0,"Continent":"K24","ID":56252,"Name":"Wioska barbarzyƄska","PlayerID":3411571,"Points":1619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56252","ServerKey":"pl181","X":418,"Y":285},{"Bonus":0,"Continent":"K25","ID":56253,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56253","ServerKey":"pl181","X":598,"Y":298},{"Bonus":0,"Continent":"K74","ID":56254,"Name":"New World","PlayerID":698152377,"Points":7232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56254","ServerKey":"pl181","X":434,"Y":727},{"Bonus":0,"Continent":"K75","ID":56255,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56255","ServerKey":"pl181","X":532,"Y":724},{"Bonus":0,"Continent":"K25","ID":56256,"Name":"103 Wioska barbarzyƄska","PlayerID":699854484,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56256","ServerKey":"pl181","X":585,"Y":280},{"Bonus":0,"Continent":"K36","ID":56257,"Name":"Winterthur II","PlayerID":849109637,"Points":1736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56257","ServerKey":"pl181","X":694,"Y":367},{"Bonus":0,"Continent":"K33","ID":56258,"Name":"Wioska36","PlayerID":699711926,"Points":1629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56258","ServerKey":"pl181","X":325,"Y":346},{"Bonus":0,"Continent":"K63","ID":56259,"Name":"Wioska bartek696","PlayerID":6968280,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56259","ServerKey":"pl181","X":367,"Y":688},{"Bonus":0,"Continent":"K63","ID":56260,"Name":"Z02","PlayerID":698652014,"Points":2303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56260","ServerKey":"pl181","X":371,"Y":694},{"Bonus":0,"Continent":"K63","ID":56261,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56261","ServerKey":"pl181","X":362,"Y":681},{"Bonus":0,"Continent":"K47","ID":56262,"Name":"Wioska","PlayerID":849084474,"Points":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56262","ServerKey":"pl181","X":734,"Y":483},{"Bonus":0,"Continent":"K47","ID":56263,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":1056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56263","ServerKey":"pl181","X":724,"Y":455},{"Bonus":0,"Continent":"K57","ID":56264,"Name":"37.Etolia","PlayerID":8976313,"Points":2926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56264","ServerKey":"pl181","X":727,"Y":527},{"Bonus":0,"Continent":"K66","ID":56265,"Name":"Wioska Henryk IV","PlayerID":699421735,"Points":6526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56265","ServerKey":"pl181","X":674,"Y":658},{"Bonus":0,"Continent":"K57","ID":56266,"Name":"1023zznowuk","PlayerID":3986807,"Points":974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56266","ServerKey":"pl181","X":707,"Y":598},{"Bonus":0,"Continent":"K36","ID":56267,"Name":"XDX","PlayerID":699098531,"Points":3264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56267","ServerKey":"pl181","X":615,"Y":306},{"Bonus":0,"Continent":"K63","ID":56268,"Name":"005 | North","PlayerID":699511295,"Points":7807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56268","ServerKey":"pl181","X":383,"Y":695},{"Bonus":0,"Continent":"K42","ID":56269,"Name":"[0208]","PlayerID":8630972,"Points":6264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56269","ServerKey":"pl181","X":273,"Y":493},{"Bonus":7,"Continent":"K57","ID":56270,"Name":"Alamo3","PlayerID":2723244,"Points":2243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56270","ServerKey":"pl181","X":723,"Y":563},{"Bonus":0,"Continent":"K24","ID":56271,"Name":"Kheled-Zaram","PlayerID":3411571,"Points":6032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56271","ServerKey":"pl181","X":407,"Y":285},{"Bonus":0,"Continent":"K63","ID":56272,"Name":"069 Wioska barbarzyƄska","PlayerID":6354098,"Points":3785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56272","ServerKey":"pl181","X":338,"Y":661},{"Bonus":9,"Continent":"K75","ID":56273,"Name":"041 - Budowanko!","PlayerID":7540891,"Points":5587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56273","ServerKey":"pl181","X":535,"Y":725},{"Bonus":0,"Continent":"K52","ID":56274,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":4745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56274","ServerKey":"pl181","X":286,"Y":589},{"Bonus":0,"Continent":"K47","ID":56275,"Name":"Wioska bastekx","PlayerID":699855277,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56275","ServerKey":"pl181","X":720,"Y":418},{"Bonus":0,"Continent":"K42","ID":56276,"Name":"Avanti!","PlayerID":698625834,"Points":1843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56276","ServerKey":"pl181","X":268,"Y":468},{"Bonus":0,"Continent":"K75","ID":56277,"Name":"No.30","PlayerID":698826986,"Points":630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56277","ServerKey":"pl181","X":574,"Y":723},{"Bonus":0,"Continent":"K36","ID":56278,"Name":"Wioska Natalii","PlayerID":849076678,"Points":285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56278","ServerKey":"pl181","X":618,"Y":304},{"Bonus":0,"Continent":"K24","ID":56279,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":1256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56279","ServerKey":"pl181","X":462,"Y":278},{"Bonus":0,"Continent":"K24","ID":56280,"Name":"001Godziwa Wioska","PlayerID":602408,"Points":7971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56280","ServerKey":"pl181","X":455,"Y":274},{"Bonus":0,"Continent":"K25","ID":56282,"Name":"PPF-28","PlayerID":1424656,"Points":1631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56282","ServerKey":"pl181","X":537,"Y":269},{"Bonus":0,"Continent":"K42","ID":56283,"Name":"001","PlayerID":699282717,"Points":4381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56283","ServerKey":"pl181","X":274,"Y":446},{"Bonus":0,"Continent":"K33","ID":56284,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":1091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56284","ServerKey":"pl181","X":371,"Y":304},{"Bonus":0,"Continent":"K63","ID":56285,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56285","ServerKey":"pl181","X":366,"Y":688},{"Bonus":0,"Continent":"K33","ID":56286,"Name":"001","PlayerID":849109795,"Points":5082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56286","ServerKey":"pl181","X":301,"Y":394},{"Bonus":0,"Continent":"K63","ID":56287,"Name":"O151","PlayerID":272173,"Points":2594,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56287","ServerKey":"pl181","X":309,"Y":631},{"Bonus":0,"Continent":"K45","ID":56288,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56288","ServerKey":"pl181","X":537,"Y":482},{"Bonus":0,"Continent":"K42","ID":56289,"Name":"Wioska gall2","PlayerID":699598396,"Points":1784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56289","ServerKey":"pl181","X":272,"Y":474},{"Bonus":0,"Continent":"K33","ID":56291,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56291","ServerKey":"pl181","X":353,"Y":322},{"Bonus":0,"Continent":"K25","ID":56292,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56292","ServerKey":"pl181","X":599,"Y":296},{"Bonus":0,"Continent":"K66","ID":56293,"Name":"Wioska tomaszek74","PlayerID":698151302,"Points":2166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56293","ServerKey":"pl181","X":685,"Y":642},{"Bonus":0,"Continent":"K74","ID":56294,"Name":"New World","PlayerID":698152377,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56294","ServerKey":"pl181","X":418,"Y":718},{"Bonus":0,"Continent":"K57","ID":56295,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56295","ServerKey":"pl181","X":722,"Y":576},{"Bonus":0,"Continent":"K66","ID":56296,"Name":"Wioska 2","PlayerID":849111050,"Points":1376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56296","ServerKey":"pl181","X":664,"Y":661},{"Bonus":0,"Continent":"K66","ID":56298,"Name":"Wioska tedy1","PlayerID":3631404,"Points":393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56298","ServerKey":"pl181","X":660,"Y":667},{"Bonus":0,"Continent":"K75","ID":56299,"Name":"#0085","PlayerID":1536231,"Points":2907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56299","ServerKey":"pl181","X":579,"Y":720},{"Bonus":0,"Continent":"K36","ID":56300,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":76,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56300","ServerKey":"pl181","X":609,"Y":302},{"Bonus":0,"Continent":"K66","ID":56301,"Name":"Wioska barbarzyƄska","PlayerID":698353083,"Points":683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56301","ServerKey":"pl181","X":617,"Y":694},{"Bonus":0,"Continent":"K26","ID":56302,"Name":"Wioska ArturLublin","PlayerID":698906643,"Points":1094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56302","ServerKey":"pl181","X":609,"Y":298},{"Bonus":0,"Continent":"K56","ID":56303,"Name":"Enter Sandman","PlayerID":848926293,"Points":523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56303","ServerKey":"pl181","X":685,"Y":564},{"Bonus":0,"Continent":"K63","ID":56304,"Name":"O121","PlayerID":272173,"Points":5983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56304","ServerKey":"pl181","X":306,"Y":628},{"Bonus":0,"Continent":"K57","ID":56305,"Name":"Wioska 008","PlayerID":2999957,"Points":3373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56305","ServerKey":"pl181","X":731,"Y":505},{"Bonus":0,"Continent":"K36","ID":56306,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56306","ServerKey":"pl181","X":657,"Y":337},{"Bonus":0,"Continent":"K52","ID":56307,"Name":"C0315","PlayerID":8841266,"Points":2526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56307","ServerKey":"pl181","X":273,"Y":554},{"Bonus":0,"Continent":"K74","ID":56308,"Name":"New World","PlayerID":698152377,"Points":4361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56308","ServerKey":"pl181","X":411,"Y":707},{"Bonus":0,"Continent":"K52","ID":56309,"Name":"Vetiuss2","PlayerID":849096399,"Points":1608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56309","ServerKey":"pl181","X":281,"Y":571},{"Bonus":0,"Continent":"K76","ID":56310,"Name":"wwwb","PlayerID":699828685,"Points":2764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56310","ServerKey":"pl181","X":600,"Y":709},{"Bonus":0,"Continent":"K66","ID":56311,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56311","ServerKey":"pl181","X":643,"Y":687},{"Bonus":0,"Continent":"K75","ID":56312,"Name":"Wioska MORUSGRIN","PlayerID":7590275,"Points":7504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56312","ServerKey":"pl181","X":536,"Y":733},{"Bonus":0,"Continent":"K52","ID":56313,"Name":"72. Wioska 72","PlayerID":849091769,"Points":2560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56313","ServerKey":"pl181","X":278,"Y":563},{"Bonus":8,"Continent":"K57","ID":56314,"Name":"047","PlayerID":7085502,"Points":6046,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56314","ServerKey":"pl181","X":718,"Y":563},{"Bonus":0,"Continent":"K66","ID":56315,"Name":"ble","PlayerID":848909464,"Points":3995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56315","ServerKey":"pl181","X":622,"Y":699},{"Bonus":0,"Continent":"K52","ID":56316,"Name":"004","PlayerID":698663855,"Points":10068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56316","ServerKey":"pl181","X":294,"Y":594},{"Bonus":0,"Continent":"K25","ID":56317,"Name":"B016","PlayerID":699485250,"Points":3977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56317","ServerKey":"pl181","X":531,"Y":269},{"Bonus":0,"Continent":"K75","ID":56318,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56318","ServerKey":"pl181","X":543,"Y":732},{"Bonus":0,"Continent":"K66","ID":56319,"Name":"#158#","PlayerID":692803,"Points":1141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56319","ServerKey":"pl181","X":654,"Y":674},{"Bonus":0,"Continent":"K42","ID":56320,"Name":"Belweder","PlayerID":699854312,"Points":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56320","ServerKey":"pl181","X":281,"Y":416},{"Bonus":8,"Continent":"K63","ID":56321,"Name":"Psycha Siada","PlayerID":6910361,"Points":8511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56321","ServerKey":"pl181","X":315,"Y":640},{"Bonus":0,"Continent":"K66","ID":56322,"Name":"#131#","PlayerID":692803,"Points":3064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56322","ServerKey":"pl181","X":661,"Y":664},{"Bonus":0,"Continent":"K57","ID":56323,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56323","ServerKey":"pl181","X":729,"Y":512},{"Bonus":0,"Continent":"K67","ID":56324,"Name":"K67 26","PlayerID":698867483,"Points":2048,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56324","ServerKey":"pl181","X":706,"Y":609},{"Bonus":0,"Continent":"K36","ID":56325,"Name":"Winterthur","PlayerID":849109637,"Points":3905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56325","ServerKey":"pl181","X":693,"Y":364},{"Bonus":0,"Continent":"K47","ID":56326,"Name":"[831] Odludzie","PlayerID":848985692,"Points":6237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56326","ServerKey":"pl181","X":723,"Y":433},{"Bonus":0,"Continent":"K63","ID":56327,"Name":"Wioska Aragorn StraĆŒnik PóƂnocy","PlayerID":2051721,"Points":1364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56327","ServerKey":"pl181","X":342,"Y":673},{"Bonus":0,"Continent":"K47","ID":56328,"Name":"[838] Odludzie","PlayerID":848985692,"Points":5533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56328","ServerKey":"pl181","X":721,"Y":440},{"Bonus":8,"Continent":"K24","ID":56329,"Name":"003","PlayerID":699562874,"Points":7316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56329","ServerKey":"pl181","X":449,"Y":273},{"Bonus":0,"Continent":"K47","ID":56330,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":1268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56330","ServerKey":"pl181","X":723,"Y":429},{"Bonus":0,"Continent":"K75","ID":56331,"Name":"Wioska wertywer","PlayerID":699469600,"Points":1031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56331","ServerKey":"pl181","X":543,"Y":726},{"Bonus":0,"Continent":"K47","ID":56332,"Name":"X.02","PlayerID":699737356,"Points":2835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56332","ServerKey":"pl181","X":727,"Y":448},{"Bonus":0,"Continent":"K24","ID":56333,"Name":"DEMON-SRT","PlayerID":849098667,"Points":678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56333","ServerKey":"pl181","X":462,"Y":273},{"Bonus":0,"Continent":"K52","ID":56334,"Name":"024. Gloria Victis","PlayerID":848886973,"Points":6359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56334","ServerKey":"pl181","X":285,"Y":567},{"Bonus":0,"Continent":"K47","ID":56335,"Name":"Wioska Hary666","PlayerID":849104855,"Points":7359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56335","ServerKey":"pl181","X":728,"Y":488},{"Bonus":0,"Continent":"K66","ID":56336,"Name":"Nowe IMPERIUM 9","PlayerID":698353083,"Points":3121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56336","ServerKey":"pl181","X":620,"Y":699},{"Bonus":0,"Continent":"K52","ID":56337,"Name":"62. Wioska 62","PlayerID":849091769,"Points":4842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56337","ServerKey":"pl181","X":276,"Y":568},{"Bonus":0,"Continent":"K76","ID":56338,"Name":"o018","PlayerID":699189792,"Points":4348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56338","ServerKey":"pl181","X":613,"Y":706},{"Bonus":0,"Continent":"K36","ID":56339,"Name":"Odwierty","PlayerID":7973893,"Points":707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56339","ServerKey":"pl181","X":688,"Y":372},{"Bonus":0,"Continent":"K36","ID":56340,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56340","ServerKey":"pl181","X":626,"Y":308},{"Bonus":0,"Continent":"K24","ID":56341,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56341","ServerKey":"pl181","X":495,"Y":270},{"Bonus":0,"Continent":"K74","ID":56342,"Name":"|D| IS","PlayerID":698147372,"Points":2241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56342","ServerKey":"pl181","X":455,"Y":723},{"Bonus":0,"Continent":"K66","ID":56343,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56343","ServerKey":"pl181","X":628,"Y":690},{"Bonus":0,"Continent":"K57","ID":56344,"Name":"SmokeCity","PlayerID":849111487,"Points":4988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56344","ServerKey":"pl181","X":725,"Y":516},{"Bonus":0,"Continent":"K76","ID":56345,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":2539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56345","ServerKey":"pl181","X":608,"Y":709},{"Bonus":0,"Continent":"K36","ID":56346,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56346","ServerKey":"pl181","X":685,"Y":361},{"Bonus":0,"Continent":"K47","ID":56347,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56347","ServerKey":"pl181","X":706,"Y":402},{"Bonus":0,"Continent":"K74","ID":56348,"Name":"Wioska Szrek5","PlayerID":849020667,"Points":3864,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56348","ServerKey":"pl181","X":449,"Y":722},{"Bonus":0,"Continent":"K36","ID":56349,"Name":"wojo","PlayerID":849054951,"Points":2349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56349","ServerKey":"pl181","X":694,"Y":370},{"Bonus":0,"Continent":"K44","ID":56350,"Name":"Wioska barbarzyƄska","PlayerID":6258092,"Points":3532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56350","ServerKey":"pl181","X":404,"Y":465},{"Bonus":0,"Continent":"K36","ID":56351,"Name":"038. 5spajk5","PlayerID":2873154,"Points":1365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56351","ServerKey":"pl181","X":675,"Y":349},{"Bonus":0,"Continent":"K42","ID":56352,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56352","ServerKey":"pl181","X":274,"Y":449},{"Bonus":0,"Continent":"K33","ID":56353,"Name":"C-006","PlayerID":699406247,"Points":3003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56353","ServerKey":"pl181","X":321,"Y":357},{"Bonus":9,"Continent":"K36","ID":56354,"Name":"012. Osada koczownikĂłw","PlayerID":2873154,"Points":5810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56354","ServerKey":"pl181","X":685,"Y":367},{"Bonus":0,"Continent":"K42","ID":56355,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":3378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56355","ServerKey":"pl181","X":278,"Y":461},{"Bonus":0,"Continent":"K75","ID":56356,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":6607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56356","ServerKey":"pl181","X":536,"Y":730},{"Bonus":0,"Continent":"K42","ID":56357,"Name":"Wioska Gebels25","PlayerID":848942618,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56357","ServerKey":"pl181","X":291,"Y":410},{"Bonus":0,"Continent":"K63","ID":56358,"Name":"zielona2","PlayerID":2105150,"Points":3764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56358","ServerKey":"pl181","X":364,"Y":693},{"Bonus":0,"Continent":"K36","ID":56359,"Name":"=|51|=","PlayerID":9101574,"Points":327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56359","ServerKey":"pl181","X":687,"Y":374},{"Bonus":0,"Continent":"K47","ID":56360,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56360","ServerKey":"pl181","X":735,"Y":488},{"Bonus":0,"Continent":"K57","ID":56361,"Name":"Wioska wilka 06","PlayerID":6786449,"Points":3247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56361","ServerKey":"pl181","X":719,"Y":562},{"Bonus":0,"Continent":"K42","ID":56362,"Name":"[0270]","PlayerID":8630972,"Points":4173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56362","ServerKey":"pl181","X":265,"Y":495},{"Bonus":0,"Continent":"K63","ID":56363,"Name":"002","PlayerID":281866,"Points":254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56363","ServerKey":"pl181","X":366,"Y":685},{"Bonus":0,"Continent":"K42","ID":56364,"Name":"Avanti!","PlayerID":698625834,"Points":5509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56364","ServerKey":"pl181","X":267,"Y":485},{"Bonus":0,"Continent":"K47","ID":56365,"Name":"Wioska2 barbarzyƄska","PlayerID":8459255,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56365","ServerKey":"pl181","X":709,"Y":414},{"Bonus":0,"Continent":"K24","ID":56366,"Name":"????","PlayerID":698489071,"Points":3808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56366","ServerKey":"pl181","X":456,"Y":269},{"Bonus":0,"Continent":"K35","ID":56367,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56367","ServerKey":"pl181","X":542,"Y":386},{"Bonus":0,"Continent":"K75","ID":56368,"Name":"Kapitol_24","PlayerID":606407,"Points":4339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56368","ServerKey":"pl181","X":506,"Y":730},{"Bonus":0,"Continent":"K23","ID":56369,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56369","ServerKey":"pl181","X":388,"Y":296},{"Bonus":0,"Continent":"K33","ID":56370,"Name":"Motorola l10","PlayerID":698806018,"Points":3178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56370","ServerKey":"pl181","X":363,"Y":319},{"Bonus":0,"Continent":"K75","ID":56371,"Name":"ZZZ .::. cinek3456/12","PlayerID":33900,"Points":1359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56371","ServerKey":"pl181","X":585,"Y":712},{"Bonus":0,"Continent":"K33","ID":56372,"Name":"Wioska MauritiusMagnus","PlayerID":7508390,"Points":138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56372","ServerKey":"pl181","X":393,"Y":301},{"Bonus":0,"Continent":"K67","ID":56373,"Name":"K67 06","PlayerID":698867483,"Points":4013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56373","ServerKey":"pl181","X":702,"Y":622},{"Bonus":0,"Continent":"K42","ID":56374,"Name":"Wioska 3","PlayerID":699763225,"Points":395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56374","ServerKey":"pl181","X":295,"Y":401},{"Bonus":0,"Continent":"K63","ID":56375,"Name":"Psycha Siada","PlayerID":8099868,"Points":7092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56375","ServerKey":"pl181","X":319,"Y":647},{"Bonus":0,"Continent":"K66","ID":56376,"Name":"Wioska 014","PlayerID":7999103,"Points":5170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56376","ServerKey":"pl181","X":683,"Y":633},{"Bonus":0,"Continent":"K25","ID":56377,"Name":"Wioska barbarzyƄska","PlayerID":699799629,"Points":615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56377","ServerKey":"pl181","X":590,"Y":294},{"Bonus":0,"Continent":"K66","ID":56378,"Name":"Wioska 001","PlayerID":6472706,"Points":3969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56378","ServerKey":"pl181","X":692,"Y":630},{"Bonus":0,"Continent":"K33","ID":56379,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56379","ServerKey":"pl181","X":307,"Y":373},{"Bonus":0,"Continent":"K66","ID":56380,"Name":"Wioska barbarzyƄska","PlayerID":849104328,"Points":1014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56380","ServerKey":"pl181","X":634,"Y":684},{"Bonus":0,"Continent":"K25","ID":56381,"Name":".achim.","PlayerID":6936607,"Points":2233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56381","ServerKey":"pl181","X":571,"Y":282},{"Bonus":6,"Continent":"K57","ID":56382,"Name":"A#034","PlayerID":2065730,"Points":9173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56382","ServerKey":"pl181","X":724,"Y":529},{"Bonus":0,"Continent":"K52","ID":56383,"Name":"Wioska DRAGONMIR","PlayerID":698171150,"Points":1400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56383","ServerKey":"pl181","X":271,"Y":506},{"Bonus":0,"Continent":"K25","ID":56385,"Name":"sh08","PlayerID":7064954,"Points":2237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56385","ServerKey":"pl181","X":514,"Y":273},{"Bonus":0,"Continent":"K66","ID":56386,"Name":"Wioska barbarzyƄska","PlayerID":698786826,"Points":2419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56386","ServerKey":"pl181","X":687,"Y":643},{"Bonus":0,"Continent":"K47","ID":56387,"Name":"Wioska Jackob666","PlayerID":849104855,"Points":7386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56387","ServerKey":"pl181","X":726,"Y":478},{"Bonus":0,"Continent":"K25","ID":56388,"Name":"North 030","PlayerID":849064752,"Points":7011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56388","ServerKey":"pl181","X":517,"Y":273},{"Bonus":7,"Continent":"K66","ID":56389,"Name":"Bessa 017","PlayerID":848987051,"Points":5249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56389","ServerKey":"pl181","X":642,"Y":680},{"Bonus":0,"Continent":"K57","ID":56390,"Name":"069","PlayerID":699413040,"Points":1737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56390","ServerKey":"pl181","X":727,"Y":516},{"Bonus":0,"Continent":"K32","ID":56391,"Name":"isengard","PlayerID":698677650,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56391","ServerKey":"pl181","X":295,"Y":390},{"Bonus":0,"Continent":"K25","ID":56392,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56392","ServerKey":"pl181","X":538,"Y":278},{"Bonus":0,"Continent":"K52","ID":56393,"Name":"New WorldA","PlayerID":849084005,"Points":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56393","ServerKey":"pl181","X":272,"Y":539},{"Bonus":0,"Continent":"K66","ID":56394,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56394","ServerKey":"pl181","X":642,"Y":684},{"Bonus":0,"Continent":"K66","ID":56395,"Name":"#04!","PlayerID":849101884,"Points":8872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56395","ServerKey":"pl181","X":640,"Y":685},{"Bonus":0,"Continent":"K33","ID":56396,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56396","ServerKey":"pl181","X":365,"Y":313},{"Bonus":0,"Continent":"K24","ID":56397,"Name":"Wioska Zero 1.","PlayerID":7150939,"Points":2322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56397","ServerKey":"pl181","X":437,"Y":273},{"Bonus":0,"Continent":"K46","ID":56398,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56398","ServerKey":"pl181","X":681,"Y":482},{"Bonus":0,"Continent":"K74","ID":56399,"Name":"New World","PlayerID":698152377,"Points":6396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56399","ServerKey":"pl181","X":413,"Y":716},{"Bonus":0,"Continent":"K47","ID":56400,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56400","ServerKey":"pl181","X":724,"Y":456},{"Bonus":0,"Continent":"K25","ID":56401,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56401","ServerKey":"pl181","X":536,"Y":269},{"Bonus":0,"Continent":"K36","ID":56402,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56402","ServerKey":"pl181","X":624,"Y":307},{"Bonus":0,"Continent":"K52","ID":56403,"Name":"C0304","PlayerID":8841266,"Points":3515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56403","ServerKey":"pl181","X":275,"Y":550},{"Bonus":0,"Continent":"K76","ID":56404,"Name":"www","PlayerID":699828685,"Points":4264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56404","ServerKey":"pl181","X":602,"Y":706},{"Bonus":0,"Continent":"K57","ID":56405,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":8896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56405","ServerKey":"pl181","X":729,"Y":547},{"Bonus":0,"Continent":"K74","ID":56407,"Name":"New World","PlayerID":698152377,"Points":8108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56407","ServerKey":"pl181","X":434,"Y":717},{"Bonus":0,"Continent":"K25","ID":56409,"Name":"Wioska Aritian1","PlayerID":7492426,"Points":7563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56409","ServerKey":"pl181","X":547,"Y":269},{"Bonus":4,"Continent":"K25","ID":56410,"Name":"D011","PlayerID":699299123,"Points":3030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56410","ServerKey":"pl181","X":565,"Y":279},{"Bonus":0,"Continent":"K47","ID":56411,"Name":"Wioska agawy","PlayerID":7259218,"Points":1278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56411","ServerKey":"pl181","X":727,"Y":497},{"Bonus":0,"Continent":"K47","ID":56412,"Name":"X.04","PlayerID":699737356,"Points":3283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56412","ServerKey":"pl181","X":731,"Y":448},{"Bonus":4,"Continent":"K36","ID":56413,"Name":"Osada koczownikĂłw","PlayerID":1018357,"Points":1149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56413","ServerKey":"pl181","X":639,"Y":314},{"Bonus":0,"Continent":"K24","ID":56414,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56414","ServerKey":"pl181","X":415,"Y":283},{"Bonus":4,"Continent":"K47","ID":56416,"Name":"A#032","PlayerID":2065730,"Points":9797,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56416","ServerKey":"pl181","X":708,"Y":407},{"Bonus":0,"Continent":"K75","ID":56417,"Name":"Wioska1","PlayerID":849085293,"Points":743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56417","ServerKey":"pl181","X":549,"Y":720},{"Bonus":0,"Continent":"K42","ID":56418,"Name":"Avanti!","PlayerID":698625834,"Points":2122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56418","ServerKey":"pl181","X":271,"Y":468},{"Bonus":0,"Continent":"K74","ID":56419,"Name":"New World","PlayerID":698152377,"Points":3820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56419","ServerKey":"pl181","X":414,"Y":709},{"Bonus":0,"Continent":"K36","ID":56420,"Name":"E003","PlayerID":699299123,"Points":2248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56420","ServerKey":"pl181","X":634,"Y":312},{"Bonus":0,"Continent":"K42","ID":56421,"Name":"P4Kasik","PlayerID":699627771,"Points":1442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56421","ServerKey":"pl181","X":275,"Y":452},{"Bonus":0,"Continent":"K63","ID":56422,"Name":"Wioska 0027","PlayerID":9186126,"Points":816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56422","ServerKey":"pl181","X":341,"Y":675},{"Bonus":0,"Continent":"K57","ID":56423,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56423","ServerKey":"pl181","X":732,"Y":513},{"Bonus":0,"Continent":"K42","ID":56424,"Name":"Avanti!","PlayerID":698625834,"Points":5525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56424","ServerKey":"pl181","X":268,"Y":485},{"Bonus":0,"Continent":"K52","ID":56425,"Name":"New WorldA","PlayerID":849084005,"Points":1123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56425","ServerKey":"pl181","X":271,"Y":537},{"Bonus":0,"Continent":"K66","ID":56426,"Name":"Wioska 010","PlayerID":1647052,"Points":807,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56426","ServerKey":"pl181","X":687,"Y":639},{"Bonus":0,"Continent":"K75","ID":56428,"Name":"Kapitol_17","PlayerID":606407,"Points":4335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56428","ServerKey":"pl181","X":500,"Y":727},{"Bonus":0,"Continent":"K74","ID":56429,"Name":"New World","PlayerID":698152377,"Points":6757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56429","ServerKey":"pl181","X":424,"Y":715},{"Bonus":0,"Continent":"K63","ID":56430,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56430","ServerKey":"pl181","X":344,"Y":663},{"Bonus":0,"Continent":"K33","ID":56431,"Name":"Wioska dalesz1212","PlayerID":8217130,"Points":1026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56431","ServerKey":"pl181","X":387,"Y":303},{"Bonus":0,"Continent":"K42","ID":56432,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56432","ServerKey":"pl181","X":273,"Y":443},{"Bonus":3,"Continent":"K42","ID":56433,"Name":"Zakątek","PlayerID":848977600,"Points":3144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56433","ServerKey":"pl181","X":271,"Y":461},{"Bonus":0,"Continent":"K52","ID":56434,"Name":"atol 6","PlayerID":848930898,"Points":1007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56434","ServerKey":"pl181","X":277,"Y":544},{"Bonus":0,"Continent":"K63","ID":56435,"Name":"36.","PlayerID":8665783,"Points":1186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56435","ServerKey":"pl181","X":328,"Y":663},{"Bonus":0,"Continent":"K33","ID":56436,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56436","ServerKey":"pl181","X":371,"Y":306},{"Bonus":0,"Continent":"K36","ID":56437,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":2429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56437","ServerKey":"pl181","X":646,"Y":375},{"Bonus":0,"Continent":"K42","ID":56438,"Name":"Avanti!","PlayerID":698625834,"Points":5466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56438","ServerKey":"pl181","X":265,"Y":482},{"Bonus":2,"Continent":"K25","ID":56439,"Name":"064 Osada koczownikĂłw","PlayerID":699854484,"Points":9835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56439","ServerKey":"pl181","X":539,"Y":277},{"Bonus":0,"Continent":"K62","ID":56441,"Name":"Dajanka 26","PlayerID":849012843,"Points":708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56441","ServerKey":"pl181","X":290,"Y":604},{"Bonus":0,"Continent":"K63","ID":56443,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":3000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56443","ServerKey":"pl181","X":347,"Y":679},{"Bonus":0,"Continent":"K33","ID":56445,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56445","ServerKey":"pl181","X":320,"Y":347},{"Bonus":0,"Continent":"K66","ID":56446,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":4168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56446","ServerKey":"pl181","X":686,"Y":632},{"Bonus":0,"Continent":"K24","ID":56447,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56447","ServerKey":"pl181","X":421,"Y":278},{"Bonus":0,"Continent":"K42","ID":56448,"Name":"srodziemie","PlayerID":698677650,"Points":2334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56448","ServerKey":"pl181","X":285,"Y":401},{"Bonus":0,"Continent":"K24","ID":56449,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56449","ServerKey":"pl181","X":427,"Y":277},{"Bonus":9,"Continent":"K52","ID":56450,"Name":"001 Osada koczownikĂłw tu ƛlij","PlayerID":698663855,"Points":10544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56450","ServerKey":"pl181","X":292,"Y":594},{"Bonus":0,"Continent":"K42","ID":56451,"Name":"Wioska Lady elo320","PlayerID":699632387,"Points":3500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56451","ServerKey":"pl181","X":264,"Y":480},{"Bonus":0,"Continent":"K73","ID":56452,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56452","ServerKey":"pl181","X":389,"Y":704},{"Bonus":0,"Continent":"K57","ID":56453,"Name":"MaƂy","PlayerID":699724603,"Points":262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56453","ServerKey":"pl181","X":726,"Y":501},{"Bonus":0,"Continent":"K25","ID":56455,"Name":"UlanyKaplanisko","PlayerID":849111632,"Points":524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56455","ServerKey":"pl181","X":544,"Y":271},{"Bonus":0,"Continent":"K24","ID":56456,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":1980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56456","ServerKey":"pl181","X":413,"Y":281},{"Bonus":0,"Continent":"K63","ID":56457,"Name":"Wioska barbarzyƄska","PlayerID":849030086,"Points":575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56457","ServerKey":"pl181","X":374,"Y":696},{"Bonus":0,"Continent":"K52","ID":56458,"Name":"084 obrzeĆŒa","PlayerID":699510259,"Points":1021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56458","ServerKey":"pl181","X":272,"Y":559},{"Bonus":0,"Continent":"K24","ID":56459,"Name":"Poznan 000","PlayerID":1924718,"Points":3924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56459","ServerKey":"pl181","X":414,"Y":289},{"Bonus":0,"Continent":"K63","ID":56460,"Name":"072a Wioska barbarzyƄska","PlayerID":6354098,"Points":4132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56460","ServerKey":"pl181","X":339,"Y":669},{"Bonus":0,"Continent":"K57","ID":56462,"Name":"Wioska bolek13241","PlayerID":849064084,"Points":2648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56462","ServerKey":"pl181","X":724,"Y":567},{"Bonus":0,"Continent":"K47","ID":56463,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":2733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56463","ServerKey":"pl181","X":720,"Y":429},{"Bonus":6,"Continent":"K62","ID":56464,"Name":"O112","PlayerID":272173,"Points":7749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56464","ServerKey":"pl181","X":298,"Y":617},{"Bonus":0,"Continent":"K33","ID":56465,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56465","ServerKey":"pl181","X":315,"Y":370},{"Bonus":0,"Continent":"K76","ID":56466,"Name":"budowa 04","PlayerID":7139820,"Points":2238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56466","ServerKey":"pl181","X":601,"Y":710},{"Bonus":0,"Continent":"K74","ID":56467,"Name":"New World","PlayerID":698152377,"Points":6692,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56467","ServerKey":"pl181","X":414,"Y":717},{"Bonus":0,"Continent":"K73","ID":56468,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56468","ServerKey":"pl181","X":398,"Y":713},{"Bonus":0,"Continent":"K42","ID":56469,"Name":"EmilianĂłw","PlayerID":849116221,"Points":927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56469","ServerKey":"pl181","X":272,"Y":460},{"Bonus":0,"Continent":"K74","ID":56471,"Name":"New World","PlayerID":698152377,"Points":6634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56471","ServerKey":"pl181","X":412,"Y":717},{"Bonus":0,"Continent":"K62","ID":56473,"Name":"Wioska barbarzyƄskaG","PlayerID":698178312,"Points":457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56473","ServerKey":"pl181","X":293,"Y":611},{"Bonus":0,"Continent":"K47","ID":56474,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":2427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56474","ServerKey":"pl181","X":716,"Y":426},{"Bonus":0,"Continent":"K47","ID":56475,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56475","ServerKey":"pl181","X":705,"Y":406},{"Bonus":0,"Continent":"K33","ID":56476,"Name":"Urzędowa 2","PlayerID":699802012,"Points":835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56476","ServerKey":"pl181","X":323,"Y":343},{"Bonus":0,"Continent":"K63","ID":56477,"Name":"Wioska Puma79","PlayerID":848882397,"Points":2147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56477","ServerKey":"pl181","X":323,"Y":654},{"Bonus":0,"Continent":"K37","ID":56478,"Name":"Wioska barbarzyƄska","PlayerID":1767876,"Points":2193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56478","ServerKey":"pl181","X":704,"Y":380},{"Bonus":0,"Continent":"K75","ID":56479,"Name":"Kapitol_27","PlayerID":606407,"Points":2771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56479","ServerKey":"pl181","X":500,"Y":732},{"Bonus":0,"Continent":"K36","ID":56480,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56480","ServerKey":"pl181","X":622,"Y":309},{"Bonus":0,"Continent":"K66","ID":56481,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":5208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56481","ServerKey":"pl181","X":686,"Y":631},{"Bonus":7,"Continent":"K25","ID":56483,"Name":"North K25","PlayerID":699146580,"Points":2175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56483","ServerKey":"pl181","X":532,"Y":270},{"Bonus":0,"Continent":"K25","ID":56485,"Name":"ZƂoty ƚwit","PlayerID":698350371,"Points":930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56485","ServerKey":"pl181","X":595,"Y":288},{"Bonus":0,"Continent":"K47","ID":56486,"Name":"03 Wioska barbarzyƄska","PlayerID":8785003,"Points":2065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56486","ServerKey":"pl181","X":726,"Y":434},{"Bonus":0,"Continent":"K66","ID":56487,"Name":"043","PlayerID":2323859,"Points":982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56487","ServerKey":"pl181","X":677,"Y":643},{"Bonus":0,"Continent":"K47","ID":56488,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56488","ServerKey":"pl181","X":725,"Y":436},{"Bonus":0,"Continent":"K42","ID":56489,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56489","ServerKey":"pl181","X":271,"Y":443},{"Bonus":0,"Continent":"K47","ID":56490,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56490","ServerKey":"pl181","X":711,"Y":403},{"Bonus":0,"Continent":"K66","ID":56491,"Name":"nr7","PlayerID":364126,"Points":1385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56491","ServerKey":"pl181","X":637,"Y":692},{"Bonus":0,"Continent":"K23","ID":56492,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":6350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56492","ServerKey":"pl181","X":389,"Y":293},{"Bonus":0,"Continent":"K25","ID":56493,"Name":"PPF-16","PlayerID":1424656,"Points":3134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56493","ServerKey":"pl181","X":522,"Y":267},{"Bonus":0,"Continent":"K63","ID":56494,"Name":"Wioska PaweƂ I Wspanialy","PlayerID":470266,"Points":1674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56494","ServerKey":"pl181","X":319,"Y":634},{"Bonus":0,"Continent":"K25","ID":56495,"Name":"B012","PlayerID":699485250,"Points":3780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56495","ServerKey":"pl181","X":528,"Y":271},{"Bonus":0,"Continent":"K66","ID":56496,"Name":"Wioska sos1234","PlayerID":7150683,"Points":1258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56496","ServerKey":"pl181","X":646,"Y":682},{"Bonus":0,"Continent":"K63","ID":56497,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56497","ServerKey":"pl181","X":367,"Y":690},{"Bonus":0,"Continent":"K63","ID":56498,"Name":"Wioska ajnoƂ","PlayerID":6647642,"Points":3170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56498","ServerKey":"pl181","X":308,"Y":633},{"Bonus":0,"Continent":"K36","ID":56499,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":6640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56499","ServerKey":"pl181","X":651,"Y":319},{"Bonus":0,"Continent":"K25","ID":56500,"Name":".achim.","PlayerID":6936607,"Points":2262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56500","ServerKey":"pl181","X":578,"Y":287},{"Bonus":0,"Continent":"K75","ID":56501,"Name":"#0063","PlayerID":1536231,"Points":3011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56501","ServerKey":"pl181","X":573,"Y":713},{"Bonus":0,"Continent":"K24","ID":56502,"Name":"011","PlayerID":9283775,"Points":934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56502","ServerKey":"pl181","X":403,"Y":295},{"Bonus":8,"Continent":"K36","ID":56503,"Name":"Wioska 015","PlayerID":7226782,"Points":2895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56503","ServerKey":"pl181","X":680,"Y":348},{"Bonus":0,"Continent":"K25","ID":56504,"Name":"Wioska seba3333","PlayerID":849110382,"Points":1844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56504","ServerKey":"pl181","X":520,"Y":273},{"Bonus":0,"Continent":"K63","ID":56505,"Name":"073 Wioska barbarzyƄska","PlayerID":6354098,"Points":2632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56505","ServerKey":"pl181","X":341,"Y":668},{"Bonus":0,"Continent":"K36","ID":56506,"Name":"GRABARNIA","PlayerID":3957237,"Points":4075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56506","ServerKey":"pl181","X":692,"Y":366},{"Bonus":0,"Continent":"K74","ID":56507,"Name":"New World","PlayerID":698152377,"Points":8571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56507","ServerKey":"pl181","X":427,"Y":724},{"Bonus":8,"Continent":"K57","ID":56508,"Name":"Osada koczownikĂłw","PlayerID":2453888,"Points":7605,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56508","ServerKey":"pl181","X":723,"Y":579},{"Bonus":0,"Continent":"K74","ID":56509,"Name":"Wioska SzopPracz93","PlayerID":849099131,"Points":450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56509","ServerKey":"pl181","X":402,"Y":714},{"Bonus":0,"Continent":"K42","ID":56510,"Name":"Maryna 3","PlayerID":699650981,"Points":1025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56510","ServerKey":"pl181","X":269,"Y":458},{"Bonus":0,"Continent":"K66","ID":56511,"Name":"Wioska Developer1994","PlayerID":3467919,"Points":4337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56511","ServerKey":"pl181","X":686,"Y":605},{"Bonus":0,"Continent":"K66","ID":56512,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56512","ServerKey":"pl181","X":639,"Y":684},{"Bonus":0,"Continent":"K52","ID":56513,"Name":"C0317","PlayerID":8841266,"Points":2528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56513","ServerKey":"pl181","X":271,"Y":557},{"Bonus":0,"Continent":"K57","ID":56514,"Name":"061","PlayerID":699413040,"Points":2329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56514","ServerKey":"pl181","X":725,"Y":513},{"Bonus":0,"Continent":"K42","ID":56515,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56515","ServerKey":"pl181","X":276,"Y":466},{"Bonus":0,"Continent":"K33","ID":56516,"Name":"Wioska Dragonics1991","PlayerID":849111732,"Points":1549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56516","ServerKey":"pl181","X":336,"Y":342},{"Bonus":0,"Continent":"K52","ID":56517,"Name":"C0296","PlayerID":8841266,"Points":3684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56517","ServerKey":"pl181","X":273,"Y":524},{"Bonus":0,"Continent":"K47","ID":56518,"Name":"backstage 5","PlayerID":849099696,"Points":3076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56518","ServerKey":"pl181","X":707,"Y":401},{"Bonus":0,"Continent":"K63","ID":56520,"Name":"37.","PlayerID":8665783,"Points":2299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56520","ServerKey":"pl181","X":333,"Y":668},{"Bonus":0,"Continent":"K36","ID":56521,"Name":"Azgeda","PlayerID":849048455,"Points":1829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56521","ServerKey":"pl181","X":629,"Y":315},{"Bonus":0,"Continent":"K47","ID":56522,"Name":"Wioska Jabolek","PlayerID":698654164,"Points":3155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56522","ServerKey":"pl181","X":727,"Y":437},{"Bonus":0,"Continent":"K37","ID":56523,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56523","ServerKey":"pl181","X":702,"Y":397},{"Bonus":0,"Continent":"K52","ID":56524,"Name":"BB3","PlayerID":849110365,"Points":1661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56524","ServerKey":"pl181","X":270,"Y":510},{"Bonus":0,"Continent":"K63","ID":56525,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56525","ServerKey":"pl181","X":313,"Y":644},{"Bonus":0,"Continent":"K42","ID":56526,"Name":".3.!","PlayerID":762975,"Points":2217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56526","ServerKey":"pl181","X":287,"Y":411},{"Bonus":0,"Continent":"K57","ID":56527,"Name":"kww09","PlayerID":699831860,"Points":1892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56527","ServerKey":"pl181","X":728,"Y":544},{"Bonus":0,"Continent":"K75","ID":56528,"Name":"Wioska Mr.ElCzapo","PlayerID":849096990,"Points":3565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56528","ServerKey":"pl181","X":511,"Y":733},{"Bonus":0,"Continent":"K66","ID":56529,"Name":"Wioska barbarzyƄska","PlayerID":698786826,"Points":2786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56529","ServerKey":"pl181","X":687,"Y":644},{"Bonus":0,"Continent":"K33","ID":56530,"Name":"Wioska alexwpr","PlayerID":699802012,"Points":3908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56530","ServerKey":"pl181","X":323,"Y":342},{"Bonus":0,"Continent":"K33","ID":56531,"Name":"king-pin","PlayerID":849089601,"Points":7830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56531","ServerKey":"pl181","X":300,"Y":396},{"Bonus":0,"Continent":"K74","ID":56532,"Name":"059.","PlayerID":849034882,"Points":9850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56532","ServerKey":"pl181","X":445,"Y":730},{"Bonus":0,"Continent":"K63","ID":56533,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56533","ServerKey":"pl181","X":343,"Y":677},{"Bonus":0,"Continent":"K75","ID":56534,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56534","ServerKey":"pl181","X":598,"Y":709},{"Bonus":0,"Continent":"K25","ID":56535,"Name":"PPF-25","PlayerID":1424656,"Points":1946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56535","ServerKey":"pl181","X":534,"Y":276},{"Bonus":9,"Continent":"K75","ID":56536,"Name":"Nowa baza 1","PlayerID":698353083,"Points":6481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56536","ServerKey":"pl181","X":597,"Y":707},{"Bonus":0,"Continent":"K75","ID":56537,"Name":"Wioska 2","PlayerID":849100615,"Points":1843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56537","ServerKey":"pl181","X":514,"Y":724},{"Bonus":0,"Continent":"K25","ID":56538,"Name":"North K25","PlayerID":699146580,"Points":2746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56538","ServerKey":"pl181","X":527,"Y":274},{"Bonus":0,"Continent":"K57","ID":56539,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":3025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56539","ServerKey":"pl181","X":729,"Y":517},{"Bonus":0,"Continent":"K33","ID":56540,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":1987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56540","ServerKey":"pl181","X":312,"Y":373},{"Bonus":0,"Continent":"K73","ID":56541,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56541","ServerKey":"pl181","X":390,"Y":709},{"Bonus":0,"Continent":"K42","ID":56542,"Name":"Wioska kilolo","PlayerID":699844880,"Points":321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56542","ServerKey":"pl181","X":267,"Y":470},{"Bonus":0,"Continent":"K66","ID":56543,"Name":"056","PlayerID":699099811,"Points":1157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56543","ServerKey":"pl181","X":691,"Y":619},{"Bonus":0,"Continent":"K63","ID":56544,"Name":"Wioska misiek650","PlayerID":849022063,"Points":189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56544","ServerKey":"pl181","X":339,"Y":668},{"Bonus":0,"Continent":"K42","ID":56545,"Name":"[0238]","PlayerID":8630972,"Points":4285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56545","ServerKey":"pl181","X":270,"Y":493},{"Bonus":0,"Continent":"K24","ID":56546,"Name":"Saran11","PlayerID":848937248,"Points":360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56546","ServerKey":"pl181","X":408,"Y":291},{"Bonus":7,"Continent":"K63","ID":56547,"Name":"022","PlayerID":699356968,"Points":1639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56547","ServerKey":"pl181","X":302,"Y":614},{"Bonus":0,"Continent":"K25","ID":56548,"Name":"Wioska barbarzyƄska","PlayerID":699799629,"Points":777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56548","ServerKey":"pl181","X":591,"Y":292},{"Bonus":0,"Continent":"K26","ID":56549,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":2286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56549","ServerKey":"pl181","X":601,"Y":294},{"Bonus":0,"Continent":"K76","ID":56550,"Name":"Wioska Iceeman","PlayerID":584989,"Points":381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56550","ServerKey":"pl181","X":621,"Y":703},{"Bonus":0,"Continent":"K25","ID":56551,"Name":".achim.","PlayerID":6936607,"Points":4191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56551","ServerKey":"pl181","X":569,"Y":285},{"Bonus":0,"Continent":"K23","ID":56552,"Name":"017","PlayerID":699694284,"Points":1850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56552","ServerKey":"pl181","X":396,"Y":292},{"Bonus":0,"Continent":"K57","ID":56553,"Name":"070","PlayerID":699413040,"Points":1942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56553","ServerKey":"pl181","X":729,"Y":518},{"Bonus":0,"Continent":"K33","ID":56554,"Name":"181.02","PlayerID":7221139,"Points":887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56554","ServerKey":"pl181","X":329,"Y":346},{"Bonus":0,"Continent":"K57","ID":56555,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56555","ServerKey":"pl181","X":734,"Y":515},{"Bonus":0,"Continent":"K25","ID":56556,"Name":"004 Rohan II","PlayerID":849100383,"Points":7089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56556","ServerKey":"pl181","X":525,"Y":266},{"Bonus":0,"Continent":"K25","ID":56557,"Name":"#020","PlayerID":849064614,"Points":2842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56557","ServerKey":"pl181","X":546,"Y":269},{"Bonus":0,"Continent":"K33","ID":56558,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56558","ServerKey":"pl181","X":304,"Y":377},{"Bonus":0,"Continent":"K74","ID":56559,"Name":"znam ostropesta 2","PlayerID":699777372,"Points":2749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56559","ServerKey":"pl181","X":460,"Y":733},{"Bonus":0,"Continent":"K25","ID":56560,"Name":"Hardex","PlayerID":849110382,"Points":5596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56560","ServerKey":"pl181","X":519,"Y":271},{"Bonus":0,"Continent":"K25","ID":56561,"Name":"#021","PlayerID":849064614,"Points":2653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56561","ServerKey":"pl181","X":548,"Y":269},{"Bonus":0,"Continent":"K37","ID":56562,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56562","ServerKey":"pl181","X":705,"Y":391},{"Bonus":0,"Continent":"K36","ID":56563,"Name":"0126","PlayerID":698416970,"Points":1231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56563","ServerKey":"pl181","X":694,"Y":377},{"Bonus":0,"Continent":"K25","ID":56564,"Name":"Wioska barbarzyƄska","PlayerID":849010386,"Points":1618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56564","ServerKey":"pl181","X":568,"Y":274},{"Bonus":0,"Continent":"K63","ID":56565,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56565","ServerKey":"pl181","X":331,"Y":655},{"Bonus":5,"Continent":"K36","ID":56566,"Name":"031. Brauer92","PlayerID":2873154,"Points":5941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56566","ServerKey":"pl181","X":694,"Y":382},{"Bonus":0,"Continent":"K63","ID":56567,"Name":"Wioska Pracz 6","PlayerID":8916982,"Points":6348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56567","ServerKey":"pl181","X":309,"Y":626},{"Bonus":0,"Continent":"K74","ID":56568,"Name":"New World","PlayerID":698152377,"Points":7231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56568","ServerKey":"pl181","X":420,"Y":714},{"Bonus":0,"Continent":"K33","ID":56569,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56569","ServerKey":"pl181","X":352,"Y":326},{"Bonus":0,"Continent":"K52","ID":56570,"Name":"Wyspa 025","PlayerID":225023,"Points":2040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56570","ServerKey":"pl181","X":280,"Y":576},{"Bonus":0,"Continent":"K47","ID":56572,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":932,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56572","ServerKey":"pl181","X":730,"Y":452},{"Bonus":0,"Continent":"K36","ID":56573,"Name":"001","PlayerID":8019812,"Points":6303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56573","ServerKey":"pl181","X":699,"Y":393},{"Bonus":0,"Continent":"K57","ID":56574,"Name":"CastAway !020","PlayerID":9314079,"Points":5603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56574","ServerKey":"pl181","X":711,"Y":589},{"Bonus":0,"Continent":"K63","ID":56575,"Name":"Wioska z Pracza 3","PlayerID":8916982,"Points":2249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56575","ServerKey":"pl181","X":303,"Y":629},{"Bonus":0,"Continent":"K35","ID":56576,"Name":"Taran","PlayerID":699170684,"Points":2602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56576","ServerKey":"pl181","X":545,"Y":378},{"Bonus":0,"Continent":"K66","ID":56577,"Name":"108. Akala","PlayerID":8337151,"Points":2808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56577","ServerKey":"pl181","X":695,"Y":626},{"Bonus":0,"Continent":"K63","ID":56578,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56578","ServerKey":"pl181","X":333,"Y":666},{"Bonus":0,"Continent":"K36","ID":56579,"Name":"ƚw181*008","PlayerID":959179,"Points":887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56579","ServerKey":"pl181","X":674,"Y":342},{"Bonus":0,"Continent":"K24","ID":56580,"Name":"Wioska Glapy 1.","PlayerID":7150939,"Points":3007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56580","ServerKey":"pl181","X":440,"Y":271},{"Bonus":0,"Continent":"K75","ID":56581,"Name":"Ave Why!","PlayerID":699121671,"Points":1069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56581","ServerKey":"pl181","X":508,"Y":736},{"Bonus":0,"Continent":"K24","ID":56582,"Name":"062KP","PlayerID":849063849,"Points":2128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56582","ServerKey":"pl181","X":482,"Y":273},{"Bonus":0,"Continent":"K66","ID":56583,"Name":"Wioska barbarzyƄska","PlayerID":699664910,"Points":1618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56583","ServerKey":"pl181","X":691,"Y":633},{"Bonus":0,"Continent":"K23","ID":56584,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56584","ServerKey":"pl181","X":395,"Y":297},{"Bonus":6,"Continent":"K36","ID":56586,"Name":"Osada koczownikĂłw","PlayerID":849111196,"Points":4217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56586","ServerKey":"pl181","X":658,"Y":330},{"Bonus":0,"Continent":"K57","ID":56587,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56587","ServerKey":"pl181","X":719,"Y":580},{"Bonus":0,"Continent":"K63","ID":56588,"Name":"O116","PlayerID":272173,"Points":6447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56588","ServerKey":"pl181","X":314,"Y":639},{"Bonus":0,"Continent":"K57","ID":56589,"Name":"P 181","PlayerID":8997874,"Points":1729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56589","ServerKey":"pl181","X":715,"Y":583},{"Bonus":0,"Continent":"K33","ID":56590,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56590","ServerKey":"pl181","X":302,"Y":377},{"Bonus":0,"Continent":"K25","ID":56591,"Name":"#027","PlayerID":849064614,"Points":1677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56591","ServerKey":"pl181","X":547,"Y":274},{"Bonus":0,"Continent":"K57","ID":56592,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56592","ServerKey":"pl181","X":735,"Y":522},{"Bonus":0,"Continent":"K25","ID":56593,"Name":"North 072","PlayerID":849064752,"Points":3352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56593","ServerKey":"pl181","X":502,"Y":270},{"Bonus":0,"Continent":"K33","ID":56594,"Name":"Wioska barbarzyƄska 17","PlayerID":698757439,"Points":3243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56594","ServerKey":"pl181","X":344,"Y":334},{"Bonus":0,"Continent":"K33","ID":56595,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56595","ServerKey":"pl181","X":316,"Y":366},{"Bonus":0,"Continent":"K36","ID":56596,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56596","ServerKey":"pl181","X":631,"Y":315},{"Bonus":0,"Continent":"K63","ID":56597,"Name":"Wioska pebloss","PlayerID":849111911,"Points":4139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56597","ServerKey":"pl181","X":317,"Y":639},{"Bonus":0,"Continent":"K67","ID":56598,"Name":"K67 24","PlayerID":698867483,"Points":2408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56598","ServerKey":"pl181","X":708,"Y":611},{"Bonus":0,"Continent":"K47","ID":56599,"Name":"079. Wioska barbarzyƄska","PlayerID":7494497,"Points":4160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56599","ServerKey":"pl181","X":732,"Y":459},{"Bonus":9,"Continent":"K24","ID":56600,"Name":"????","PlayerID":698489071,"Points":5881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56600","ServerKey":"pl181","X":491,"Y":263},{"Bonus":0,"Continent":"K23","ID":56601,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56601","ServerKey":"pl181","X":398,"Y":295},{"Bonus":0,"Continent":"K63","ID":56602,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56602","ServerKey":"pl181","X":368,"Y":695},{"Bonus":0,"Continent":"K25","ID":56603,"Name":"D024","PlayerID":699299123,"Points":3977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56603","ServerKey":"pl181","X":563,"Y":280},{"Bonus":0,"Continent":"K25","ID":56605,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":1370,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56605","ServerKey":"pl181","X":592,"Y":291},{"Bonus":0,"Continent":"K24","ID":56606,"Name":"Wioska ZiomekWafla","PlayerID":849090573,"Points":4262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56606","ServerKey":"pl181","X":459,"Y":273},{"Bonus":0,"Continent":"K42","ID":56607,"Name":"Wioska barbarzyƄska","PlayerID":699662232,"Points":669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56607","ServerKey":"pl181","X":271,"Y":494},{"Bonus":0,"Continent":"K57","ID":56608,"Name":"Wioska kowala","PlayerID":849106923,"Points":4543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56608","ServerKey":"pl181","X":726,"Y":548},{"Bonus":8,"Continent":"K73","ID":56609,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":8032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56609","ServerKey":"pl181","X":386,"Y":706},{"Bonus":0,"Continent":"K52","ID":56610,"Name":"New WorldA","PlayerID":849084005,"Points":1564,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56610","ServerKey":"pl181","X":269,"Y":547},{"Bonus":0,"Continent":"K75","ID":56611,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":8356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56611","ServerKey":"pl181","X":542,"Y":728},{"Bonus":0,"Continent":"K75","ID":56612,"Name":"Ave Why!","PlayerID":699121671,"Points":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56612","ServerKey":"pl181","X":521,"Y":729},{"Bonus":0,"Continent":"K33","ID":56613,"Name":"E03","PlayerID":6301789,"Points":560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56613","ServerKey":"pl181","X":305,"Y":384},{"Bonus":0,"Continent":"K74","ID":56614,"Name":"020 - Budowanko!","PlayerID":7540891,"Points":5633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56614","ServerKey":"pl181","X":478,"Y":727},{"Bonus":0,"Continent":"K42","ID":56615,"Name":"Wioska 5","PlayerID":699763225,"Points":293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56615","ServerKey":"pl181","X":294,"Y":402},{"Bonus":0,"Continent":"K57","ID":56616,"Name":"Nowa 67","PlayerID":698702991,"Points":2475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56616","ServerKey":"pl181","X":712,"Y":595},{"Bonus":0,"Continent":"K25","ID":56617,"Name":"#033","PlayerID":849064614,"Points":1790,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56617","ServerKey":"pl181","X":559,"Y":273},{"Bonus":4,"Continent":"K36","ID":56618,"Name":"Wioska 018","PlayerID":7226782,"Points":1383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56618","ServerKey":"pl181","X":670,"Y":346},{"Bonus":0,"Continent":"K47","ID":56619,"Name":"JaskóƂcze Gniazdo","PlayerID":9095581,"Points":5391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56619","ServerKey":"pl181","X":721,"Y":415},{"Bonus":0,"Continent":"K34","ID":56620,"Name":"3lobit","PlayerID":1581890,"Points":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56620","ServerKey":"pl181","X":482,"Y":366},{"Bonus":0,"Continent":"K66","ID":56621,"Name":"Parking1","PlayerID":6528152,"Points":1065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56621","ServerKey":"pl181","X":633,"Y":685},{"Bonus":0,"Continent":"K25","ID":56622,"Name":"-01-","PlayerID":849112029,"Points":4337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56622","ServerKey":"pl181","X":582,"Y":278},{"Bonus":0,"Continent":"K25","ID":56623,"Name":"Wioska Paxon","PlayerID":849112033,"Points":4271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56623","ServerKey":"pl181","X":580,"Y":277},{"Bonus":0,"Continent":"K63","ID":56624,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":1968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56624","ServerKey":"pl181","X":350,"Y":677},{"Bonus":0,"Continent":"K42","ID":56625,"Name":"K42 ADAMUS 020","PlayerID":6212605,"Points":3833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56625","ServerKey":"pl181","X":275,"Y":429},{"Bonus":0,"Continent":"K75","ID":56626,"Name":"wwwb","PlayerID":699828685,"Points":2303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56626","ServerKey":"pl181","X":598,"Y":708},{"Bonus":0,"Continent":"K75","ID":56627,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":4128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56627","ServerKey":"pl181","X":526,"Y":734},{"Bonus":0,"Continent":"K47","ID":56628,"Name":"041 Sandgem Town","PlayerID":699441366,"Points":782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56628","ServerKey":"pl181","X":728,"Y":496},{"Bonus":1,"Continent":"K47","ID":56629,"Name":"GnojĂłwa","PlayerID":848902592,"Points":4242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56629","ServerKey":"pl181","X":711,"Y":411},{"Bonus":0,"Continent":"K24","ID":56630,"Name":"Gdynia","PlayerID":699278528,"Points":2117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56630","ServerKey":"pl181","X":447,"Y":269},{"Bonus":1,"Continent":"K36","ID":56631,"Name":"009. Osada koczownikĂłw","PlayerID":2873154,"Points":5919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56631","ServerKey":"pl181","X":697,"Y":382},{"Bonus":0,"Continent":"K25","ID":56632,"Name":"bagienko_05","PlayerID":849093353,"Points":2793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56632","ServerKey":"pl181","X":574,"Y":279},{"Bonus":0,"Continent":"K36","ID":56633,"Name":"#0223 barbarzyƄska","PlayerID":1238300,"Points":3059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56633","ServerKey":"pl181","X":661,"Y":334},{"Bonus":0,"Continent":"K74","ID":56634,"Name":"New World","PlayerID":698152377,"Points":3320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56634","ServerKey":"pl181","X":413,"Y":715},{"Bonus":0,"Continent":"K23","ID":56635,"Name":"Wioska barbarzyƄska","PlayerID":6186491,"Points":1872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56635","ServerKey":"pl181","X":391,"Y":290},{"Bonus":0,"Continent":"K52","ID":56636,"Name":"0000035Z","PlayerID":849089881,"Points":2254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56636","ServerKey":"pl181","X":280,"Y":556},{"Bonus":0,"Continent":"K36","ID":56637,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56637","ServerKey":"pl181","X":629,"Y":302},{"Bonus":3,"Continent":"K62","ID":56638,"Name":"Nowy 0002","PlayerID":849096972,"Points":1202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56638","ServerKey":"pl181","X":294,"Y":603},{"Bonus":0,"Continent":"K52","ID":56639,"Name":"0000033Z","PlayerID":849089881,"Points":2978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56639","ServerKey":"pl181","X":277,"Y":556},{"Bonus":0,"Continent":"K42","ID":56640,"Name":"Avanti!","PlayerID":698625834,"Points":5207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56640","ServerKey":"pl181","X":271,"Y":489},{"Bonus":0,"Continent":"K47","ID":56641,"Name":"Wioska Lord kongo","PlayerID":8877886,"Points":7132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56641","ServerKey":"pl181","X":733,"Y":481},{"Bonus":0,"Continent":"K63","ID":56642,"Name":"$012$ Volcano","PlayerID":699550876,"Points":1332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56642","ServerKey":"pl181","X":302,"Y":619},{"Bonus":0,"Continent":"K33","ID":56643,"Name":"Wioska herqers","PlayerID":849112094,"Points":3545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56643","ServerKey":"pl181","X":338,"Y":333},{"Bonus":0,"Continent":"K66","ID":56644,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56644","ServerKey":"pl181","X":669,"Y":664},{"Bonus":0,"Continent":"K74","ID":56645,"Name":"New World","PlayerID":698152377,"Points":7376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56645","ServerKey":"pl181","X":425,"Y":713},{"Bonus":0,"Continent":"K66","ID":56646,"Name":"Sony 911","PlayerID":1415009,"Points":3373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56646","ServerKey":"pl181","X":671,"Y":662},{"Bonus":0,"Continent":"K52","ID":56647,"Name":"Na SsSskraju","PlayerID":1536625,"Points":699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56647","ServerKey":"pl181","X":278,"Y":572},{"Bonus":0,"Continent":"K57","ID":56648,"Name":"KarlĂłwek","PlayerID":849111792,"Points":7417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56648","ServerKey":"pl181","X":724,"Y":557},{"Bonus":0,"Continent":"K73","ID":56649,"Name":"Wioska barbarzyƄska","PlayerID":2105150,"Points":3373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56649","ServerKey":"pl181","X":389,"Y":707},{"Bonus":0,"Continent":"K66","ID":56651,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56651","ServerKey":"pl181","X":646,"Y":684},{"Bonus":0,"Continent":"K66","ID":56652,"Name":"sony911","PlayerID":1415009,"Points":1969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56652","ServerKey":"pl181","X":675,"Y":645},{"Bonus":0,"Continent":"K24","ID":56653,"Name":"061KP","PlayerID":849063849,"Points":2034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56653","ServerKey":"pl181","X":491,"Y":275},{"Bonus":0,"Continent":"K63","ID":56654,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56654","ServerKey":"pl181","X":326,"Y":658},{"Bonus":0,"Continent":"K33","ID":56655,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56655","ServerKey":"pl181","X":374,"Y":305},{"Bonus":4,"Continent":"K24","ID":56656,"Name":"004","PlayerID":699562874,"Points":4820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56656","ServerKey":"pl181","X":448,"Y":272},{"Bonus":0,"Continent":"K63","ID":56657,"Name":"AGITER","PlayerID":849108762,"Points":400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56657","ServerKey":"pl181","X":339,"Y":665},{"Bonus":0,"Continent":"K33","ID":56658,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56658","ServerKey":"pl181","X":363,"Y":314},{"Bonus":0,"Continent":"K25","ID":56659,"Name":"#031","PlayerID":849064614,"Points":1780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56659","ServerKey":"pl181","X":556,"Y":273},{"Bonus":0,"Continent":"K63","ID":56660,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56660","ServerKey":"pl181","X":322,"Y":653},{"Bonus":0,"Continent":"K76","ID":56661,"Name":"Nowe IMPERIUM 6","PlayerID":698353083,"Points":5631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56661","ServerKey":"pl181","X":617,"Y":701},{"Bonus":0,"Continent":"K73","ID":56662,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56662","ServerKey":"pl181","X":390,"Y":706},{"Bonus":0,"Continent":"K67","ID":56663,"Name":"K67 22","PlayerID":698867483,"Points":3422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56663","ServerKey":"pl181","X":709,"Y":606},{"Bonus":0,"Continent":"K24","ID":56664,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56664","ServerKey":"pl181","X":481,"Y":267},{"Bonus":0,"Continent":"K75","ID":56665,"Name":"SZczytno","PlayerID":698934729,"Points":1004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56665","ServerKey":"pl181","X":526,"Y":731},{"Bonus":0,"Continent":"K66","ID":56666,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5045,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56666","ServerKey":"pl181","X":640,"Y":683},{"Bonus":0,"Continent":"K47","ID":56667,"Name":"Wioska Puchencjusz I WspaniaƂy","PlayerID":849107188,"Points":2084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56667","ServerKey":"pl181","X":735,"Y":472},{"Bonus":0,"Continent":"K63","ID":56669,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":4737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56669","ServerKey":"pl181","X":358,"Y":676},{"Bonus":0,"Continent":"K52","ID":56670,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56670","ServerKey":"pl181","X":264,"Y":510},{"Bonus":0,"Continent":"K74","ID":56671,"Name":"035 - Budowanko!","PlayerID":7540891,"Points":5633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56671","ServerKey":"pl181","X":476,"Y":732},{"Bonus":0,"Continent":"K66","ID":56672,"Name":"#134#","PlayerID":692803,"Points":2189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56672","ServerKey":"pl181","X":664,"Y":667},{"Bonus":0,"Continent":"K24","ID":56673,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56673","ServerKey":"pl181","X":490,"Y":271},{"Bonus":0,"Continent":"K73","ID":56674,"Name":"Wioska barbarzyƄska","PlayerID":849099876,"Points":2746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56674","ServerKey":"pl181","X":387,"Y":702},{"Bonus":0,"Continent":"K42","ID":56675,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":1368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56675","ServerKey":"pl181","X":269,"Y":455},{"Bonus":0,"Continent":"K24","ID":56676,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56676","ServerKey":"pl181","X":482,"Y":269},{"Bonus":0,"Continent":"K66","ID":56677,"Name":"WZ14","PlayerID":7142659,"Points":1239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56677","ServerKey":"pl181","X":696,"Y":613},{"Bonus":0,"Continent":"K47","ID":56678,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56678","ServerKey":"pl181","X":731,"Y":487},{"Bonus":0,"Continent":"K37","ID":56679,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56679","ServerKey":"pl181","X":705,"Y":390},{"Bonus":0,"Continent":"K74","ID":56680,"Name":"Taka.","PlayerID":848999671,"Points":2132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56680","ServerKey":"pl181","X":484,"Y":730},{"Bonus":0,"Continent":"K47","ID":56681,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":1259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56681","ServerKey":"pl181","X":722,"Y":450},{"Bonus":0,"Continent":"K75","ID":56682,"Name":"Wioska Zawodnik 4","PlayerID":698655859,"Points":2426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56682","ServerKey":"pl181","X":565,"Y":725},{"Bonus":0,"Continent":"K74","ID":56683,"Name":"New World","PlayerID":698152377,"Points":7903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56683","ServerKey":"pl181","X":422,"Y":713},{"Bonus":0,"Continent":"K57","ID":56684,"Name":"kww08","PlayerID":8976313,"Points":1194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56684","ServerKey":"pl181","X":723,"Y":541},{"Bonus":0,"Continent":"K66","ID":56685,"Name":"WZ12","PlayerID":7142659,"Points":1927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56685","ServerKey":"pl181","X":695,"Y":613},{"Bonus":0,"Continent":"K66","ID":56686,"Name":"Wioska barbarzyƄska","PlayerID":699277039,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56686","ServerKey":"pl181","X":670,"Y":664},{"Bonus":0,"Continent":"K66","ID":56687,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56687","ServerKey":"pl181","X":629,"Y":695},{"Bonus":0,"Continent":"K57","ID":56688,"Name":"066","PlayerID":699413040,"Points":2386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56688","ServerKey":"pl181","X":726,"Y":510},{"Bonus":0,"Continent":"K74","ID":56689,"Name":"J**** P**","PlayerID":849096435,"Points":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56689","ServerKey":"pl181","X":489,"Y":732},{"Bonus":0,"Continent":"K57","ID":56690,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56690","ServerKey":"pl181","X":721,"Y":578},{"Bonus":0,"Continent":"K37","ID":56691,"Name":"0112","PlayerID":698416970,"Points":988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56691","ServerKey":"pl181","X":704,"Y":381},{"Bonus":0,"Continent":"K36","ID":56692,"Name":"Wioska 020","PlayerID":7226782,"Points":985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56692","ServerKey":"pl181","X":672,"Y":349},{"Bonus":0,"Continent":"K57","ID":56693,"Name":"Alamo6","PlayerID":2723244,"Points":1165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56693","ServerKey":"pl181","X":716,"Y":577},{"Bonus":0,"Continent":"K25","ID":56694,"Name":"108 Wioska barbarzyƄska","PlayerID":699854484,"Points":900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56694","ServerKey":"pl181","X":584,"Y":280},{"Bonus":0,"Continent":"K25","ID":56695,"Name":"Wioska barbarzyƄska","PlayerID":849112033,"Points":1122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56695","ServerKey":"pl181","X":585,"Y":279},{"Bonus":0,"Continent":"K47","ID":56696,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56696","ServerKey":"pl181","X":715,"Y":406},{"Bonus":0,"Continent":"K24","ID":56697,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56697","ServerKey":"pl181","X":495,"Y":265},{"Bonus":0,"Continent":"K33","ID":56699,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":3561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56699","ServerKey":"pl181","X":344,"Y":322},{"Bonus":0,"Continent":"K52","ID":56700,"Name":"Wioska Lord Jack Carver","PlayerID":9231765,"Points":4086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56700","ServerKey":"pl181","X":273,"Y":535},{"Bonus":0,"Continent":"K47","ID":56701,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56701","ServerKey":"pl181","X":734,"Y":484},{"Bonus":0,"Continent":"K73","ID":56702,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56702","ServerKey":"pl181","X":384,"Y":701},{"Bonus":0,"Continent":"K33","ID":56703,"Name":"Tytanik","PlayerID":849068108,"Points":1360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56703","ServerKey":"pl181","X":370,"Y":307},{"Bonus":0,"Continent":"K66","ID":56704,"Name":"Sony 911","PlayerID":1415009,"Points":3524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56704","ServerKey":"pl181","X":670,"Y":661},{"Bonus":0,"Continent":"K25","ID":56705,"Name":"094 Wioska barbarzyƄska","PlayerID":699854484,"Points":4830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56705","ServerKey":"pl181","X":539,"Y":270},{"Bonus":0,"Continent":"K36","ID":56706,"Name":"08 Wioska","PlayerID":6517826,"Points":927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56706","ServerKey":"pl181","X":637,"Y":319},{"Bonus":0,"Continent":"K37","ID":56707,"Name":"003.","PlayerID":7557683,"Points":874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56707","ServerKey":"pl181","X":700,"Y":382},{"Bonus":0,"Continent":"K75","ID":56708,"Name":"-21-","PlayerID":849032414,"Points":4515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56708","ServerKey":"pl181","X":580,"Y":717},{"Bonus":0,"Continent":"K66","ID":56710,"Name":"wioska 002","PlayerID":6472706,"Points":3199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56710","ServerKey":"pl181","X":687,"Y":630},{"Bonus":0,"Continent":"K52","ID":56711,"Name":"C0301","PlayerID":8841266,"Points":3667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56711","ServerKey":"pl181","X":272,"Y":528},{"Bonus":0,"Continent":"K63","ID":56712,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56712","ServerKey":"pl181","X":335,"Y":660},{"Bonus":0,"Continent":"K24","ID":56713,"Name":"Wioska barbarzyƄska","PlayerID":849102150,"Points":458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56713","ServerKey":"pl181","X":424,"Y":287},{"Bonus":0,"Continent":"K42","ID":56714,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56714","ServerKey":"pl181","X":290,"Y":409},{"Bonus":0,"Continent":"K67","ID":56715,"Name":"zzz02","PlayerID":3986807,"Points":1018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56715","ServerKey":"pl181","X":703,"Y":605},{"Bonus":0,"Continent":"K32","ID":56716,"Name":"WB03","PlayerID":356642,"Points":4270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56716","ServerKey":"pl181","X":297,"Y":380},{"Bonus":0,"Continent":"K66","ID":56717,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":6096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56717","ServerKey":"pl181","X":653,"Y":679},{"Bonus":0,"Continent":"K24","ID":56718,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56718","ServerKey":"pl181","X":492,"Y":264},{"Bonus":0,"Continent":"K74","ID":56719,"Name":"037 - Budowanko!","PlayerID":7540891,"Points":5633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56719","ServerKey":"pl181","X":480,"Y":731},{"Bonus":0,"Continent":"K24","ID":56720,"Name":"Rozlewnia browaru Ć»uberka","PlayerID":849110622,"Points":2195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56720","ServerKey":"pl181","X":445,"Y":269},{"Bonus":0,"Continent":"K23","ID":56721,"Name":"130.Stradi","PlayerID":698365960,"Points":2974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56721","ServerKey":"pl181","X":395,"Y":294},{"Bonus":0,"Continent":"K57","ID":56722,"Name":"001","PlayerID":3409028,"Points":2895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56722","ServerKey":"pl181","X":724,"Y":584},{"Bonus":0,"Continent":"K42","ID":56723,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56723","ServerKey":"pl181","X":272,"Y":456},{"Bonus":0,"Continent":"K66","ID":56724,"Name":"Wioska barbarzyƄska","PlayerID":8627359,"Points":4416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56724","ServerKey":"pl181","X":632,"Y":684},{"Bonus":0,"Continent":"K74","ID":56725,"Name":"No to jedziemy :D","PlayerID":699333701,"Points":1678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56725","ServerKey":"pl181","X":472,"Y":735},{"Bonus":0,"Continent":"K66","ID":56726,"Name":"Sony 911","PlayerID":1415009,"Points":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56726","ServerKey":"pl181","X":665,"Y":655},{"Bonus":0,"Continent":"K74","ID":56727,"Name":"181~~~~ wiewioreczkavivat","PlayerID":7365299,"Points":3767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56727","ServerKey":"pl181","X":446,"Y":706},{"Bonus":0,"Continent":"K66","ID":56728,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56728","ServerKey":"pl181","X":628,"Y":694},{"Bonus":0,"Continent":"K76","ID":56729,"Name":"ble","PlayerID":848909464,"Points":4569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56729","ServerKey":"pl181","X":622,"Y":700},{"Bonus":0,"Continent":"K26","ID":56730,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56730","ServerKey":"pl181","X":604,"Y":299},{"Bonus":0,"Continent":"K63","ID":56731,"Name":"$011$ Arm Town","PlayerID":699550876,"Points":1453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56731","ServerKey":"pl181","X":302,"Y":622},{"Bonus":0,"Continent":"K24","ID":56732,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56732","ServerKey":"pl181","X":476,"Y":270},{"Bonus":0,"Continent":"K42","ID":56733,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56733","ServerKey":"pl181","X":274,"Y":451},{"Bonus":0,"Continent":"K25","ID":56734,"Name":"#017","PlayerID":849064614,"Points":3018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56734","ServerKey":"pl181","X":557,"Y":275},{"Bonus":0,"Continent":"K53","ID":56735,"Name":"Wioska Isabella","PlayerID":698519133,"Points":2251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56735","ServerKey":"pl181","X":373,"Y":546},{"Bonus":0,"Continent":"K63","ID":56736,"Name":"001","PlayerID":281866,"Points":516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56736","ServerKey":"pl181","X":366,"Y":684},{"Bonus":0,"Continent":"K53","ID":56737,"Name":"Wioska Szyszka77","PlayerID":8004076,"Points":4924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56737","ServerKey":"pl181","X":333,"Y":522},{"Bonus":0,"Continent":"K47","ID":56738,"Name":"[205]","PlayerID":8000875,"Points":1818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56738","ServerKey":"pl181","X":721,"Y":419},{"Bonus":0,"Continent":"K57","ID":56739,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56739","ServerKey":"pl181","X":721,"Y":555},{"Bonus":0,"Continent":"K25","ID":56740,"Name":"=SAwars=06=","PlayerID":849106420,"Points":2373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56740","ServerKey":"pl181","X":574,"Y":276},{"Bonus":0,"Continent":"K73","ID":56742,"Name":"Bajka","PlayerID":849111819,"Points":3177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56742","ServerKey":"pl181","X":399,"Y":713},{"Bonus":0,"Continent":"K75","ID":56743,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56743","ServerKey":"pl181","X":596,"Y":714},{"Bonus":0,"Continent":"K25","ID":56744,"Name":"Wioska Your Nightmare","PlayerID":8766033,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56744","ServerKey":"pl181","X":565,"Y":275},{"Bonus":0,"Continent":"K24","ID":56745,"Name":"????","PlayerID":698489071,"Points":3998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56745","ServerKey":"pl181","X":463,"Y":271},{"Bonus":0,"Continent":"K47","ID":56746,"Name":"21 PszczoƂy i WrĂłble","PlayerID":849101845,"Points":2603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56746","ServerKey":"pl181","X":725,"Y":447},{"Bonus":0,"Continent":"K36","ID":56747,"Name":"001.","PlayerID":7557683,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56747","ServerKey":"pl181","X":699,"Y":377},{"Bonus":0,"Continent":"K25","ID":56748,"Name":"Wioska barbarzyƄska","PlayerID":849010386,"Points":776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56748","ServerKey":"pl181","X":590,"Y":281},{"Bonus":0,"Continent":"K25","ID":56749,"Name":"PPF-34","PlayerID":1424656,"Points":1142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56749","ServerKey":"pl181","X":576,"Y":279},{"Bonus":0,"Continent":"K63","ID":56750,"Name":"Wioska z Pracza 6","PlayerID":8916982,"Points":977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56750","ServerKey":"pl181","X":308,"Y":629},{"Bonus":0,"Continent":"K24","ID":56751,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5929,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56751","ServerKey":"pl181","X":485,"Y":264},{"Bonus":0,"Continent":"K54","ID":56752,"Name":"Xxx","PlayerID":225023,"Points":988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56752","ServerKey":"pl181","X":430,"Y":586},{"Bonus":0,"Continent":"K42","ID":56753,"Name":"KUKA VII","PlayerID":6127190,"Points":874,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56753","ServerKey":"pl181","X":280,"Y":433},{"Bonus":0,"Continent":"K54","ID":56754,"Name":"Wioska barbarzyƄska","PlayerID":849028088,"Points":2544,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56754","ServerKey":"pl181","X":440,"Y":584},{"Bonus":0,"Continent":"K57","ID":56755,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56755","ServerKey":"pl181","X":735,"Y":526},{"Bonus":0,"Continent":"K42","ID":56757,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":2706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56757","ServerKey":"pl181","X":271,"Y":463},{"Bonus":0,"Continent":"K52","ID":56758,"Name":"077 obrzeĆŒa","PlayerID":699510259,"Points":1682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56758","ServerKey":"pl181","X":276,"Y":560},{"Bonus":0,"Continent":"K24","ID":56759,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":3532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56759","ServerKey":"pl181","X":487,"Y":268},{"Bonus":0,"Continent":"K36","ID":56760,"Name":"Wioska Luftwafel","PlayerID":848922958,"Points":4641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56760","ServerKey":"pl181","X":626,"Y":305},{"Bonus":0,"Continent":"K25","ID":56761,"Name":"#023","PlayerID":849064614,"Points":2436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56761","ServerKey":"pl181","X":546,"Y":268},{"Bonus":9,"Continent":"K25","ID":56762,"Name":"North K25","PlayerID":699146580,"Points":2795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56762","ServerKey":"pl181","X":554,"Y":271},{"Bonus":0,"Continent":"K74","ID":56763,"Name":"[018]","PlayerID":9094538,"Points":2921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56763","ServerKey":"pl181","X":461,"Y":728},{"Bonus":0,"Continent":"K36","ID":56764,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56764","ServerKey":"pl181","X":650,"Y":326},{"Bonus":0,"Continent":"K46","ID":56765,"Name":"106. Wioska barbarzyƄska","PlayerID":7494497,"Points":608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56765","ServerKey":"pl181","X":689,"Y":455},{"Bonus":0,"Continent":"K36","ID":56766,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":4023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56766","ServerKey":"pl181","X":650,"Y":323},{"Bonus":0,"Continent":"K66","ID":56767,"Name":"181","PlayerID":8922870,"Points":810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56767","ServerKey":"pl181","X":679,"Y":651},{"Bonus":0,"Continent":"K66","ID":56768,"Name":"Wiadro23","PlayerID":8677963,"Points":515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56768","ServerKey":"pl181","X":681,"Y":641},{"Bonus":0,"Continent":"K43","ID":56769,"Name":"PiotrekPazzi","PlayerID":289542,"Points":530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56769","ServerKey":"pl181","X":326,"Y":436},{"Bonus":0,"Continent":"K47","ID":56770,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56770","ServerKey":"pl181","X":727,"Y":484},{"Bonus":0,"Continent":"K75","ID":56771,"Name":"premka nie tu","PlayerID":6299408,"Points":3212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56771","ServerKey":"pl181","X":567,"Y":718},{"Bonus":0,"Continent":"K25","ID":56772,"Name":"095 Wioska barbarzyƄska","PlayerID":699854484,"Points":4528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56772","ServerKey":"pl181","X":541,"Y":267},{"Bonus":2,"Continent":"K74","ID":56773,"Name":"New World","PlayerID":698152377,"Points":7310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56773","ServerKey":"pl181","X":420,"Y":721},{"Bonus":0,"Continent":"K53","ID":56774,"Name":"Wioska Aneta517","PlayerID":2591538,"Points":426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56774","ServerKey":"pl181","X":373,"Y":544},{"Bonus":0,"Continent":"K66","ID":56775,"Name":"Nowe IMPERIUM 13","PlayerID":698353083,"Points":5837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56775","ServerKey":"pl181","X":623,"Y":698},{"Bonus":0,"Continent":"K74","ID":56776,"Name":"052. Witek","PlayerID":848928624,"Points":845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56776","ServerKey":"pl181","X":444,"Y":706},{"Bonus":0,"Continent":"K33","ID":56777,"Name":"Wioska barbarzyƄska","PlayerID":849068108,"Points":1175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56777","ServerKey":"pl181","X":369,"Y":309},{"Bonus":0,"Continent":"K47","ID":56778,"Name":"[206]","PlayerID":8000875,"Points":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56778","ServerKey":"pl181","X":721,"Y":418},{"Bonus":0,"Continent":"K25","ID":56780,"Name":"Flap","PlayerID":699098531,"Points":4340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56780","ServerKey":"pl181","X":598,"Y":284},{"Bonus":0,"Continent":"K75","ID":56781,"Name":"RosnochaƂ","PlayerID":849112312,"Points":2357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56781","ServerKey":"pl181","X":560,"Y":724},{"Bonus":0,"Continent":"K24","ID":56782,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56782","ServerKey":"pl181","X":463,"Y":267},{"Bonus":0,"Continent":"K24","ID":56783,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":1607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56783","ServerKey":"pl181","X":403,"Y":291},{"Bonus":0,"Continent":"K47","ID":56784,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56784","ServerKey":"pl181","X":729,"Y":483},{"Bonus":0,"Continent":"K73","ID":56785,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56785","ServerKey":"pl181","X":390,"Y":710},{"Bonus":0,"Continent":"K36","ID":56786,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56786","ServerKey":"pl181","X":667,"Y":337},{"Bonus":0,"Continent":"K33","ID":56787,"Name":"Wioska martin1181","PlayerID":7287342,"Points":4885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56787","ServerKey":"pl181","X":354,"Y":321},{"Bonus":0,"Continent":"K33","ID":56788,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":3078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56788","ServerKey":"pl181","X":381,"Y":308},{"Bonus":0,"Continent":"K53","ID":56789,"Name":"Brat447","PlayerID":699262350,"Points":2772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56789","ServerKey":"pl181","X":364,"Y":515},{"Bonus":0,"Continent":"K52","ID":56790,"Name":"074 obrzeĆŒa","PlayerID":699510259,"Points":1911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56790","ServerKey":"pl181","X":276,"Y":559},{"Bonus":0,"Continent":"K33","ID":56791,"Name":"Wioska peres5130","PlayerID":849019785,"Points":788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56791","ServerKey":"pl181","X":309,"Y":366},{"Bonus":0,"Continent":"K24","ID":56792,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":1322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56792","ServerKey":"pl181","X":462,"Y":274},{"Bonus":0,"Continent":"K52","ID":56793,"Name":"002-81","PlayerID":699396429,"Points":1682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56793","ServerKey":"pl181","X":283,"Y":595},{"Bonus":0,"Continent":"K52","ID":56794,"Name":"007","PlayerID":698663855,"Points":4787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56794","ServerKey":"pl181","X":294,"Y":592},{"Bonus":0,"Continent":"K63","ID":56795,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":51,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56795","ServerKey":"pl181","X":300,"Y":619},{"Bonus":0,"Continent":"K35","ID":56796,"Name":"Krasnolandia","PlayerID":3377827,"Points":7622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56796","ServerKey":"pl181","X":525,"Y":315},{"Bonus":0,"Continent":"K57","ID":56797,"Name":"Wioska superpuszka","PlayerID":6677893,"Points":276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56797","ServerKey":"pl181","X":730,"Y":556},{"Bonus":0,"Continent":"K26","ID":56798,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56798","ServerKey":"pl181","X":619,"Y":297},{"Bonus":0,"Continent":"K36","ID":56799,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56799","ServerKey":"pl181","X":665,"Y":338},{"Bonus":0,"Continent":"K52","ID":56800,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56800","ServerKey":"pl181","X":283,"Y":590},{"Bonus":0,"Continent":"K66","ID":56801,"Name":"Sony 911","PlayerID":1415009,"Points":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56801","ServerKey":"pl181","X":681,"Y":647},{"Bonus":0,"Continent":"K75","ID":56802,"Name":"Wioska HORTON","PlayerID":6035425,"Points":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56802","ServerKey":"pl181","X":514,"Y":731},{"Bonus":0,"Continent":"K42","ID":56803,"Name":"K42 ADAMUS 010","PlayerID":6212605,"Points":7770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56803","ServerKey":"pl181","X":285,"Y":430},{"Bonus":0,"Continent":"K74","ID":56804,"Name":"New World","PlayerID":698152377,"Points":4354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56804","ServerKey":"pl181","X":424,"Y":724},{"Bonus":0,"Continent":"K42","ID":56805,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56805","ServerKey":"pl181","X":273,"Y":442},{"Bonus":0,"Continent":"K25","ID":56806,"Name":"#014","PlayerID":849064614,"Points":4404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56806","ServerKey":"pl181","X":547,"Y":272},{"Bonus":0,"Continent":"K25","ID":56807,"Name":"096 Wioska barbarzyƄska","PlayerID":699854484,"Points":4827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56807","ServerKey":"pl181","X":540,"Y":270},{"Bonus":0,"Continent":"K47","ID":56808,"Name":"001","PlayerID":2837080,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56808","ServerKey":"pl181","X":704,"Y":410},{"Bonus":0,"Continent":"K63","ID":56809,"Name":"057 Wioska barbarzyƄska","PlayerID":6354098,"Points":4032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56809","ServerKey":"pl181","X":346,"Y":666},{"Bonus":0,"Continent":"K47","ID":56810,"Name":"Mordex","PlayerID":7023110,"Points":1358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56810","ServerKey":"pl181","X":706,"Y":400},{"Bonus":0,"Continent":"K73","ID":56811,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":5270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56811","ServerKey":"pl181","X":398,"Y":704},{"Bonus":0,"Continent":"K75","ID":56813,"Name":"#0065","PlayerID":1536231,"Points":2751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56813","ServerKey":"pl181","X":572,"Y":721},{"Bonus":0,"Continent":"K47","ID":56814,"Name":"-002-","PlayerID":7418168,"Points":4409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56814","ServerKey":"pl181","X":730,"Y":491},{"Bonus":9,"Continent":"K25","ID":56815,"Name":"068 Osada koczownikĂłw","PlayerID":699854484,"Points":8974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56815","ServerKey":"pl181","X":543,"Y":271},{"Bonus":0,"Continent":"K36","ID":56816,"Name":"Wioska Bociek80","PlayerID":545152,"Points":596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56816","ServerKey":"pl181","X":669,"Y":349},{"Bonus":3,"Continent":"K75","ID":56817,"Name":"#299 C","PlayerID":9037756,"Points":10971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56817","ServerKey":"pl181","X":515,"Y":731},{"Bonus":0,"Continent":"K26","ID":56818,"Name":"Wioska","PlayerID":8698728,"Points":3438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56818","ServerKey":"pl181","X":604,"Y":295},{"Bonus":0,"Continent":"K66","ID":56819,"Name":"Wioska barbarzyƄska","PlayerID":699372829,"Points":536,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56819","ServerKey":"pl181","X":631,"Y":697},{"Bonus":0,"Continent":"K74","ID":56820,"Name":"=SILDEN=","PlayerID":849112368,"Points":2394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56820","ServerKey":"pl181","X":481,"Y":731},{"Bonus":6,"Continent":"K73","ID":56821,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":5377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56821","ServerKey":"pl181","X":379,"Y":702},{"Bonus":0,"Continent":"K52","ID":56822,"Name":"0000037Z","PlayerID":849089881,"Points":2202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56822","ServerKey":"pl181","X":276,"Y":555},{"Bonus":0,"Continent":"K57","ID":56823,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56823","ServerKey":"pl181","X":733,"Y":524},{"Bonus":0,"Continent":"K33","ID":56824,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56824","ServerKey":"pl181","X":361,"Y":316},{"Bonus":0,"Continent":"K36","ID":56825,"Name":"Wioska dadan2","PlayerID":849086357,"Points":2958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56825","ServerKey":"pl181","X":653,"Y":329},{"Bonus":0,"Continent":"K55","ID":56826,"Name":"067","PlayerID":699373599,"Points":5416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56826","ServerKey":"pl181","X":591,"Y":560},{"Bonus":0,"Continent":"K33","ID":56827,"Name":"Wioska barbarzyƄska 08","PlayerID":698757439,"Points":7060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56827","ServerKey":"pl181","X":344,"Y":333},{"Bonus":0,"Continent":"K74","ID":56828,"Name":"Wioska monkeyy","PlayerID":848923754,"Points":55,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56828","ServerKey":"pl181","X":450,"Y":724},{"Bonus":0,"Continent":"K73","ID":56829,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1713,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56829","ServerKey":"pl181","X":391,"Y":701},{"Bonus":0,"Continent":"K24","ID":56830,"Name":"Wioska b 010","PlayerID":6343784,"Points":368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56830","ServerKey":"pl181","X":408,"Y":283},{"Bonus":0,"Continent":"K66","ID":56831,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56831","ServerKey":"pl181","X":626,"Y":689},{"Bonus":0,"Continent":"K47","ID":56832,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56832","ServerKey":"pl181","X":714,"Y":415},{"Bonus":0,"Continent":"K63","ID":56833,"Name":"O109","PlayerID":272173,"Points":7559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56833","ServerKey":"pl181","X":317,"Y":637},{"Bonus":0,"Continent":"K73","ID":56834,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56834","ServerKey":"pl181","X":399,"Y":708},{"Bonus":0,"Continent":"K74","ID":56835,"Name":"R 056","PlayerID":699195358,"Points":1687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56835","ServerKey":"pl181","X":491,"Y":734},{"Bonus":0,"Continent":"K36","ID":56837,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56837","ServerKey":"pl181","X":633,"Y":312},{"Bonus":0,"Continent":"K63","ID":56838,"Name":"Wioska barbarzyƄska","PlayerID":698167138,"Points":518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56838","ServerKey":"pl181","X":302,"Y":617},{"Bonus":0,"Continent":"K75","ID":56839,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56839","ServerKey":"pl181","X":535,"Y":733},{"Bonus":0,"Continent":"K24","ID":56840,"Name":"A04","PlayerID":849038597,"Points":1202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56840","ServerKey":"pl181","X":423,"Y":275},{"Bonus":0,"Continent":"K32","ID":56841,"Name":"HANDEN","PlayerID":7259690,"Points":743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56841","ServerKey":"pl181","X":294,"Y":399},{"Bonus":0,"Continent":"K33","ID":56842,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56842","ServerKey":"pl181","X":358,"Y":322},{"Bonus":0,"Continent":"K32","ID":56843,"Name":"WB02","PlayerID":356642,"Points":5169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56843","ServerKey":"pl181","X":297,"Y":383},{"Bonus":0,"Continent":"K75","ID":56844,"Name":"Wioska LORDHerkules13","PlayerID":699522257,"Points":4379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56844","ServerKey":"pl181","X":540,"Y":731},{"Bonus":0,"Continent":"K66","ID":56845,"Name":"Wioska barbarzyƄska","PlayerID":698786826,"Points":201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56845","ServerKey":"pl181","X":689,"Y":642},{"Bonus":0,"Continent":"K42","ID":56846,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56846","ServerKey":"pl181","X":286,"Y":407},{"Bonus":0,"Continent":"K33","ID":56847,"Name":"Wioska Lisq12","PlayerID":849111408,"Points":3712,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56847","ServerKey":"pl181","X":301,"Y":381},{"Bonus":0,"Continent":"K47","ID":56848,"Name":"01 Wioska ignacy","PlayerID":8785003,"Points":5431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56848","ServerKey":"pl181","X":727,"Y":434},{"Bonus":3,"Continent":"K66","ID":56849,"Name":"K66 Ć»elazo","PlayerID":698867483,"Points":2641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56849","ServerKey":"pl181","X":698,"Y":626},{"Bonus":0,"Continent":"K57","ID":56850,"Name":"Wioska ƚMIERCI","PlayerID":849096102,"Points":1954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56850","ServerKey":"pl181","X":719,"Y":590},{"Bonus":0,"Continent":"K47","ID":56851,"Name":"C.061","PlayerID":9188016,"Points":2960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56851","ServerKey":"pl181","X":729,"Y":479},{"Bonus":0,"Continent":"K74","ID":56852,"Name":"#498 F","PlayerID":9037756,"Points":750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56852","ServerKey":"pl181","X":442,"Y":723},{"Bonus":0,"Continent":"K52","ID":56853,"Name":"Wioska 3","PlayerID":699425709,"Points":363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56853","ServerKey":"pl181","X":267,"Y":511},{"Bonus":0,"Continent":"K75","ID":56854,"Name":"Wioska barbarzyƄska","PlayerID":3560281,"Points":1013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56854","ServerKey":"pl181","X":541,"Y":723},{"Bonus":0,"Continent":"K33","ID":56856,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56856","ServerKey":"pl181","X":303,"Y":369},{"Bonus":0,"Continent":"K42","ID":56857,"Name":"001","PlayerID":698511920,"Points":2716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56857","ServerKey":"pl181","X":276,"Y":465},{"Bonus":0,"Continent":"K25","ID":56858,"Name":"#016","PlayerID":849064614,"Points":2689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56858","ServerKey":"pl181","X":557,"Y":276},{"Bonus":9,"Continent":"K75","ID":56859,"Name":"0664","PlayerID":698659980,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56859","ServerKey":"pl181","X":585,"Y":721},{"Bonus":0,"Continent":"K63","ID":56860,"Name":"$009$ PakaĆŒu","PlayerID":699550876,"Points":3335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56860","ServerKey":"pl181","X":303,"Y":622},{"Bonus":0,"Continent":"K23","ID":56861,"Name":"009","PlayerID":699694284,"Points":5686,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56861","ServerKey":"pl181","X":393,"Y":290},{"Bonus":0,"Continent":"K74","ID":56862,"Name":"KWB5","PlayerID":9003698,"Points":2905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56862","ServerKey":"pl181","X":479,"Y":735},{"Bonus":0,"Continent":"K33","ID":56863,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56863","ServerKey":"pl181","X":318,"Y":357},{"Bonus":0,"Continent":"K66","ID":56864,"Name":"Sony 911","PlayerID":1415009,"Points":555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56864","ServerKey":"pl181","X":677,"Y":650},{"Bonus":0,"Continent":"K66","ID":56865,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56865","ServerKey":"pl181","X":641,"Y":679},{"Bonus":0,"Continent":"K63","ID":56866,"Name":"Wioska z Pracza 7","PlayerID":8916982,"Points":559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56866","ServerKey":"pl181","X":308,"Y":628},{"Bonus":0,"Continent":"K66","ID":56867,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56867","ServerKey":"pl181","X":640,"Y":679},{"Bonus":0,"Continent":"K25","ID":56868,"Name":"B020","PlayerID":699485250,"Points":3064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56868","ServerKey":"pl181","X":535,"Y":266},{"Bonus":0,"Continent":"K42","ID":56869,"Name":"[0193]","PlayerID":8630972,"Points":6253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56869","ServerKey":"pl181","X":274,"Y":497},{"Bonus":0,"Continent":"K42","ID":56870,"Name":"Avanti!","PlayerID":698625834,"Points":2427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56870","ServerKey":"pl181","X":269,"Y":485},{"Bonus":0,"Continent":"K42","ID":56871,"Name":"Wioska gall5","PlayerID":699598396,"Points":1006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56871","ServerKey":"pl181","X":267,"Y":472},{"Bonus":1,"Continent":"K75","ID":56872,"Name":"Osada koczownikĂłw","PlayerID":698704189,"Points":7364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56872","ServerKey":"pl181","X":537,"Y":733},{"Bonus":0,"Continent":"K36","ID":56873,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56873","ServerKey":"pl181","X":661,"Y":332},{"Bonus":0,"Continent":"K32","ID":56874,"Name":"west","PlayerID":849089601,"Points":6677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56874","ServerKey":"pl181","X":296,"Y":378},{"Bonus":0,"Continent":"K25","ID":56875,"Name":"81 skorbyk.","PlayerID":8015955,"Points":2337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56875","ServerKey":"pl181","X":549,"Y":278},{"Bonus":0,"Continent":"K36","ID":56876,"Name":"B023","PlayerID":8740199,"Points":2137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56876","ServerKey":"pl181","X":629,"Y":306},{"Bonus":0,"Continent":"K36","ID":56877,"Name":"Wioska Miltonia","PlayerID":849088414,"Points":146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56877","ServerKey":"pl181","X":671,"Y":340},{"Bonus":0,"Continent":"K74","ID":56878,"Name":"Bagno 35","PlayerID":848883684,"Points":4628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56878","ServerKey":"pl181","X":474,"Y":728},{"Bonus":0,"Continent":"K75","ID":56879,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56879","ServerKey":"pl181","X":529,"Y":730},{"Bonus":0,"Continent":"K66","ID":56880,"Name":"Wioska brodatykebab","PlayerID":849112443,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56880","ServerKey":"pl181","X":633,"Y":689},{"Bonus":0,"Continent":"K42","ID":56881,"Name":"[0264]","PlayerID":8630972,"Points":4369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56881","ServerKey":"pl181","X":270,"Y":491},{"Bonus":0,"Continent":"K75","ID":56882,"Name":"#0081","PlayerID":1536231,"Points":2466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56882","ServerKey":"pl181","X":580,"Y":714},{"Bonus":0,"Continent":"K47","ID":56883,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56883","ServerKey":"pl181","X":728,"Y":485},{"Bonus":0,"Continent":"K24","ID":56884,"Name":"117.Stradi","PlayerID":698365960,"Points":5398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56884","ServerKey":"pl181","X":421,"Y":287},{"Bonus":0,"Continent":"K36","ID":56885,"Name":"050","PlayerID":6160655,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56885","ServerKey":"pl181","X":693,"Y":373},{"Bonus":0,"Continent":"K36","ID":56887,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":2515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56887","ServerKey":"pl181","X":690,"Y":375},{"Bonus":0,"Continent":"K44","ID":56888,"Name":"Pf Konfederacja","PlayerID":848915730,"Points":3921,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56888","ServerKey":"pl181","X":493,"Y":497},{"Bonus":0,"Continent":"K75","ID":56889,"Name":"#0061","PlayerID":1536231,"Points":2927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56889","ServerKey":"pl181","X":578,"Y":713},{"Bonus":0,"Continent":"K25","ID":56890,"Name":"--055--","PlayerID":542253,"Points":431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56890","ServerKey":"pl181","X":588,"Y":284},{"Bonus":6,"Continent":"K25","ID":56891,"Name":"PPF-05","PlayerID":1424656,"Points":4216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56891","ServerKey":"pl181","X":507,"Y":264},{"Bonus":0,"Continent":"K47","ID":56892,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56892","ServerKey":"pl181","X":724,"Y":460},{"Bonus":0,"Continent":"K74","ID":56893,"Name":"New World","PlayerID":698152377,"Points":8593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56893","ServerKey":"pl181","X":412,"Y":709},{"Bonus":0,"Continent":"K52","ID":56894,"Name":"Wioska Lorda Posejdona","PlayerID":699878443,"Points":387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56894","ServerKey":"pl181","X":270,"Y":519},{"Bonus":0,"Continent":"K33","ID":56895,"Name":"Wioska barbarzyƄska 10","PlayerID":698757439,"Points":6599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56895","ServerKey":"pl181","X":343,"Y":330},{"Bonus":0,"Continent":"K47","ID":56897,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56897","ServerKey":"pl181","X":731,"Y":483},{"Bonus":0,"Continent":"K66","ID":56898,"Name":"#128#","PlayerID":692803,"Points":3052,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56898","ServerKey":"pl181","X":656,"Y":676},{"Bonus":0,"Continent":"K42","ID":56899,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56899","ServerKey":"pl181","X":269,"Y":446},{"Bonus":0,"Continent":"K57","ID":56900,"Name":"Wioska Vebo","PlayerID":848969313,"Points":4522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56900","ServerKey":"pl181","X":727,"Y":508},{"Bonus":0,"Continent":"K74","ID":56901,"Name":"No to jedziemy :D","PlayerID":699333701,"Points":1450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56901","ServerKey":"pl181","X":468,"Y":732},{"Bonus":0,"Continent":"K36","ID":56902,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":8049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56902","ServerKey":"pl181","X":619,"Y":300},{"Bonus":0,"Continent":"K75","ID":56903,"Name":"044 - Budowanko!","PlayerID":7540891,"Points":5144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56903","ServerKey":"pl181","X":504,"Y":728},{"Bonus":0,"Continent":"K63","ID":56904,"Name":"Wioska barbarzyƄska","PlayerID":8877156,"Points":2699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56904","ServerKey":"pl181","X":314,"Y":643},{"Bonus":0,"Continent":"K42","ID":56905,"Name":"[0239] xxx","PlayerID":8630972,"Points":4698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56905","ServerKey":"pl181","X":271,"Y":498},{"Bonus":0,"Continent":"K25","ID":56906,"Name":"#024","PlayerID":849064614,"Points":2216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56906","ServerKey":"pl181","X":554,"Y":277},{"Bonus":0,"Continent":"K67","ID":56907,"Name":"K67 12","PlayerID":698867483,"Points":3670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56907","ServerKey":"pl181","X":700,"Y":622},{"Bonus":0,"Continent":"K33","ID":56908,"Name":"CAP001","PlayerID":698661697,"Points":266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56908","ServerKey":"pl181","X":352,"Y":320},{"Bonus":0,"Continent":"K52","ID":56909,"Name":"0000032Z","PlayerID":849089881,"Points":4729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56909","ServerKey":"pl181","X":278,"Y":555},{"Bonus":0,"Continent":"K36","ID":56910,"Name":"Wioska 1","PlayerID":7346797,"Points":3113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56910","ServerKey":"pl181","X":668,"Y":338},{"Bonus":0,"Continent":"K42","ID":56911,"Name":"ZakƂad 1","PlayerID":848977600,"Points":633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56911","ServerKey":"pl181","X":264,"Y":474},{"Bonus":0,"Continent":"K54","ID":56912,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":3373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56912","ServerKey":"pl181","X":412,"Y":544},{"Bonus":0,"Continent":"K63","ID":56913,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56913","ServerKey":"pl181","X":324,"Y":657},{"Bonus":0,"Continent":"K47","ID":56914,"Name":"Wioska ligedman92","PlayerID":698676788,"Points":1792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56914","ServerKey":"pl181","X":713,"Y":420},{"Bonus":0,"Continent":"K66","ID":56915,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":2516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56915","ServerKey":"pl181","X":676,"Y":656},{"Bonus":0,"Continent":"K26","ID":56916,"Name":"Flap","PlayerID":699098531,"Points":3399,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56916","ServerKey":"pl181","X":601,"Y":286},{"Bonus":0,"Continent":"K36","ID":56917,"Name":"Wioska w00han","PlayerID":849111332,"Points":4060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56917","ServerKey":"pl181","X":658,"Y":326},{"Bonus":0,"Continent":"K74","ID":56918,"Name":"C006","PlayerID":8954402,"Points":1755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56918","ServerKey":"pl181","X":460,"Y":732},{"Bonus":0,"Continent":"K47","ID":56919,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":1004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56919","ServerKey":"pl181","X":724,"Y":425},{"Bonus":0,"Continent":"K33","ID":56920,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56920","ServerKey":"pl181","X":324,"Y":358},{"Bonus":0,"Continent":"K74","ID":56921,"Name":"FP051","PlayerID":699605333,"Points":3147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56921","ServerKey":"pl181","X":446,"Y":731},{"Bonus":0,"Continent":"K63","ID":56922,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":5252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56922","ServerKey":"pl181","X":320,"Y":638},{"Bonus":0,"Continent":"K63","ID":56923,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":3244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56923","ServerKey":"pl181","X":363,"Y":686},{"Bonus":0,"Continent":"K52","ID":56924,"Name":"Cisza","PlayerID":698769107,"Points":387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56924","ServerKey":"pl181","X":278,"Y":581},{"Bonus":0,"Continent":"K36","ID":56925,"Name":"048. Wioska barbarzyƄska","PlayerID":2873154,"Points":1667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56925","ServerKey":"pl181","X":678,"Y":354},{"Bonus":0,"Continent":"K47","ID":56926,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56926","ServerKey":"pl181","X":736,"Y":483},{"Bonus":0,"Continent":"K57","ID":56927,"Name":"Allara","PlayerID":8994199,"Points":1884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56927","ServerKey":"pl181","X":713,"Y":598},{"Bonus":0,"Continent":"K25","ID":56928,"Name":"D018","PlayerID":699299123,"Points":2409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56928","ServerKey":"pl181","X":563,"Y":278},{"Bonus":0,"Continent":"K36","ID":56929,"Name":"wioska XX","PlayerID":9314079,"Points":1743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56929","ServerKey":"pl181","X":678,"Y":347},{"Bonus":0,"Continent":"K37","ID":56930,"Name":"mc01","PlayerID":848939131,"Points":3383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56930","ServerKey":"pl181","X":706,"Y":388},{"Bonus":0,"Continent":"K66","ID":56931,"Name":"Sony 911","PlayerID":1415009,"Points":3882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56931","ServerKey":"pl181","X":677,"Y":653},{"Bonus":0,"Continent":"K24","ID":56932,"Name":"124.Stradi","PlayerID":698365960,"Points":2134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56932","ServerKey":"pl181","X":451,"Y":273},{"Bonus":0,"Continent":"K33","ID":56933,"Name":"NOT?","PlayerID":9236866,"Points":3810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56933","ServerKey":"pl181","X":312,"Y":356},{"Bonus":0,"Continent":"K66","ID":56934,"Name":"ASony 911","PlayerID":1415009,"Points":6964,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56934","ServerKey":"pl181","X":687,"Y":645},{"Bonus":0,"Continent":"K42","ID":56935,"Name":"[0271]","PlayerID":8630972,"Points":4280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56935","ServerKey":"pl181","X":265,"Y":489},{"Bonus":0,"Continent":"K73","ID":56936,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56936","ServerKey":"pl181","X":397,"Y":708},{"Bonus":0,"Continent":"K52","ID":56937,"Name":"Wioska barbarzyƄska","PlayerID":699846892,"Points":696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56937","ServerKey":"pl181","X":265,"Y":502},{"Bonus":0,"Continent":"K66","ID":56938,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56938","ServerKey":"pl181","X":680,"Y":645},{"Bonus":0,"Continent":"K25","ID":56939,"Name":"#018","PlayerID":849064614,"Points":2225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56939","ServerKey":"pl181","X":556,"Y":274},{"Bonus":0,"Continent":"K25","ID":56940,"Name":"Wioska alanbebz","PlayerID":698938264,"Points":894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56940","ServerKey":"pl181","X":576,"Y":283},{"Bonus":0,"Continent":"K74","ID":56941,"Name":"New World","PlayerID":698152377,"Points":3978,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56941","ServerKey":"pl181","X":422,"Y":716},{"Bonus":0,"Continent":"K36","ID":56942,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56942","ServerKey":"pl181","X":620,"Y":301},{"Bonus":5,"Continent":"K36","ID":56943,"Name":"015. Osada koczownikĂłw","PlayerID":2873154,"Points":6113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56943","ServerKey":"pl181","X":696,"Y":379},{"Bonus":0,"Continent":"K42","ID":56944,"Name":"spóƂka z o.o.","PlayerID":1700145,"Points":2056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56944","ServerKey":"pl181","X":286,"Y":424},{"Bonus":0,"Continent":"K74","ID":56945,"Name":"New World","PlayerID":698152377,"Points":4270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56945","ServerKey":"pl181","X":432,"Y":720},{"Bonus":0,"Continent":"K62","ID":56946,"Name":"Y Hy y Hy JESTEM HORY","PlayerID":699774694,"Points":3298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56946","ServerKey":"pl181","X":287,"Y":600},{"Bonus":0,"Continent":"K66","ID":56947,"Name":"Wioska 003","PlayerID":6472706,"Points":2573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56947","ServerKey":"pl181","X":687,"Y":635},{"Bonus":0,"Continent":"K25","ID":56948,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":4218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56948","ServerKey":"pl181","X":587,"Y":289},{"Bonus":0,"Continent":"K67","ID":56949,"Name":"KERTO 02","PlayerID":7474527,"Points":743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56949","ServerKey":"pl181","X":709,"Y":605},{"Bonus":0,"Continent":"K47","ID":56950,"Name":"034 KTW","PlayerID":848883237,"Points":3942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56950","ServerKey":"pl181","X":729,"Y":443},{"Bonus":0,"Continent":"K52","ID":56951,"Name":"032. Gloria Victis","PlayerID":848886973,"Points":4592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56951","ServerKey":"pl181","X":282,"Y":572},{"Bonus":0,"Continent":"K36","ID":56952,"Name":"Komaros1992","PlayerID":699679662,"Points":6007,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56952","ServerKey":"pl181","X":628,"Y":309},{"Bonus":0,"Continent":"K66","ID":56953,"Name":"WschĂłd 002","PlayerID":698562644,"Points":2650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56953","ServerKey":"pl181","X":699,"Y":619},{"Bonus":0,"Continent":"K24","ID":56954,"Name":"Wioska barbarzyƄska","PlayerID":849089654,"Points":590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56954","ServerKey":"pl181","X":415,"Y":296},{"Bonus":0,"Continent":"K57","ID":56955,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56955","ServerKey":"pl181","X":733,"Y":540},{"Bonus":0,"Continent":"K33","ID":56956,"Name":"Wioska DAJWIDOS16","PlayerID":848913252,"Points":2604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56956","ServerKey":"pl181","X":319,"Y":351},{"Bonus":0,"Continent":"K24","ID":56957,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3039,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56957","ServerKey":"pl181","X":400,"Y":295},{"Bonus":4,"Continent":"K57","ID":56958,"Name":"E03","PlayerID":848995478,"Points":3642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56958","ServerKey":"pl181","X":722,"Y":548},{"Bonus":0,"Continent":"K43","ID":56959,"Name":"Wioska NewBetterSatan","PlayerID":1021709,"Points":1671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56959","ServerKey":"pl181","X":309,"Y":466},{"Bonus":0,"Continent":"K57","ID":56960,"Name":"Wioska BANAN 22","PlayerID":2357773,"Points":6050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56960","ServerKey":"pl181","X":731,"Y":523},{"Bonus":0,"Continent":"K75","ID":56961,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56961","ServerKey":"pl181","X":536,"Y":724},{"Bonus":0,"Continent":"K42","ID":56962,"Name":"Wioska anatol2619","PlayerID":849106828,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56962","ServerKey":"pl181","X":264,"Y":476},{"Bonus":0,"Continent":"K24","ID":56963,"Name":"SirNiuchniuch","PlayerID":849109010,"Points":4210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56963","ServerKey":"pl181","X":447,"Y":270},{"Bonus":0,"Continent":"K33","ID":56964,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":4766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56964","ServerKey":"pl181","X":374,"Y":310},{"Bonus":0,"Continent":"K57","ID":56965,"Name":"CastAway !040","PlayerID":9314079,"Points":2579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56965","ServerKey":"pl181","X":711,"Y":596},{"Bonus":0,"Continent":"K47","ID":56966,"Name":"[842] Odludzie","PlayerID":848985692,"Points":3809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56966","ServerKey":"pl181","X":727,"Y":431},{"Bonus":0,"Continent":"K62","ID":56967,"Name":"AZGARD","PlayerID":6651072,"Points":3751,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56967","ServerKey":"pl181","X":295,"Y":608},{"Bonus":0,"Continent":"K63","ID":56968,"Name":"017 | North","PlayerID":699511295,"Points":2875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56968","ServerKey":"pl181","X":381,"Y":693},{"Bonus":0,"Continent":"K63","ID":56969,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56969","ServerKey":"pl181","X":353,"Y":683},{"Bonus":0,"Continent":"K24","ID":56970,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56970","ServerKey":"pl181","X":452,"Y":273},{"Bonus":0,"Continent":"K36","ID":56971,"Name":"Melogo","PlayerID":849112369,"Points":4362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56971","ServerKey":"pl181","X":699,"Y":374},{"Bonus":8,"Continent":"K74","ID":56972,"Name":"11. ƚwiatƂa na Ratajach","PlayerID":849092769,"Points":5704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56972","ServerKey":"pl181","X":459,"Y":729},{"Bonus":0,"Continent":"K47","ID":56973,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":2970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56973","ServerKey":"pl181","X":716,"Y":420},{"Bonus":0,"Continent":"K25","ID":56974,"Name":"PPF-32","PlayerID":1424656,"Points":1136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56974","ServerKey":"pl181","X":570,"Y":274},{"Bonus":0,"Continent":"K75","ID":56975,"Name":"-34-","PlayerID":849032414,"Points":1681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56975","ServerKey":"pl181","X":575,"Y":719},{"Bonus":0,"Continent":"K63","ID":56976,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56976","ServerKey":"pl181","X":363,"Y":687},{"Bonus":0,"Continent":"K26","ID":56977,"Name":"XDX","PlayerID":699098531,"Points":4198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56977","ServerKey":"pl181","X":605,"Y":290},{"Bonus":0,"Continent":"K33","ID":56978,"Name":"PIROTECHNIK 013","PlayerID":849101083,"Points":190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56978","ServerKey":"pl181","X":337,"Y":338},{"Bonus":0,"Continent":"K24","ID":56980,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56980","ServerKey":"pl181","X":481,"Y":263},{"Bonus":0,"Continent":"K46","ID":56981,"Name":"614|415 Wioska barbarzyƄska","PlayerID":6822957,"Points":2503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56981","ServerKey":"pl181","X":614,"Y":415},{"Bonus":0,"Continent":"K42","ID":56982,"Name":"Avanti!","PlayerID":698625834,"Points":2312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56982","ServerKey":"pl181","X":267,"Y":480},{"Bonus":0,"Continent":"K66","ID":56983,"Name":"Chwaliszew","PlayerID":6472706,"Points":3496,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56983","ServerKey":"pl181","X":692,"Y":634},{"Bonus":0,"Continent":"K33","ID":56984,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":4609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56984","ServerKey":"pl181","X":364,"Y":309},{"Bonus":30,"Continent":"K55","ID":56985,"Name":"Twierdza (MzM.)","PlayerID":0,"Points":4017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56985","ServerKey":"pl181","X":594,"Y":518},{"Bonus":0,"Continent":"K64","ID":56986,"Name":"Wio","PlayerID":698152498,"Points":2502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56986","ServerKey":"pl181","X":445,"Y":666},{"Bonus":0,"Continent":"K63","ID":56987,"Name":"Wioska Spekulant951","PlayerID":849038195,"Points":170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56987","ServerKey":"pl181","X":334,"Y":663},{"Bonus":0,"Continent":"K67","ID":56988,"Name":"K67 18","PlayerID":698867483,"Points":2649,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56988","ServerKey":"pl181","X":711,"Y":607},{"Bonus":0,"Continent":"K63","ID":56989,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56989","ServerKey":"pl181","X":300,"Y":627},{"Bonus":0,"Continent":"K74","ID":56990,"Name":"FP042","PlayerID":699605333,"Points":4032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56990","ServerKey":"pl181","X":462,"Y":732},{"Bonus":0,"Continent":"K63","ID":56991,"Name":"Adijen 2","PlayerID":699688180,"Points":3260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56991","ServerKey":"pl181","X":348,"Y":670},{"Bonus":0,"Continent":"K26","ID":56992,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56992","ServerKey":"pl181","X":616,"Y":297},{"Bonus":3,"Continent":"K42","ID":56993,"Name":"Avanti!","PlayerID":698625834,"Points":5005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56993","ServerKey":"pl181","X":270,"Y":481},{"Bonus":0,"Continent":"K76","ID":56995,"Name":"Nowe IMPERIUM 10","PlayerID":698353083,"Points":5660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56995","ServerKey":"pl181","X":620,"Y":702},{"Bonus":0,"Continent":"K44","ID":56996,"Name":"...Just like that","PlayerID":699723284,"Points":3228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56996","ServerKey":"pl181","X":461,"Y":478},{"Bonus":0,"Continent":"K33","ID":56997,"Name":"Wioska barbarzyƄska","PlayerID":848945529,"Points":455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56997","ServerKey":"pl181","X":314,"Y":363},{"Bonus":0,"Continent":"K52","ID":56998,"Name":"087 obrzeĆŒa","PlayerID":699510259,"Points":974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56998","ServerKey":"pl181","X":271,"Y":559},{"Bonus":0,"Continent":"K74","ID":56999,"Name":"New World","PlayerID":698152377,"Points":8423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=56999","ServerKey":"pl181","X":422,"Y":725},{"Bonus":0,"Continent":"K24","ID":57000,"Name":"Grudziadz","PlayerID":699278528,"Points":499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57000","ServerKey":"pl181","X":458,"Y":269},{"Bonus":0,"Continent":"K57","ID":57001,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":1799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57001","ServerKey":"pl181","X":725,"Y":563},{"Bonus":0,"Continent":"K75","ID":57002,"Name":"Kapitol_28","PlayerID":606407,"Points":2110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57002","ServerKey":"pl181","X":509,"Y":729},{"Bonus":0,"Continent":"K33","ID":57003,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":1233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57003","ServerKey":"pl181","X":327,"Y":352},{"Bonus":0,"Continent":"K36","ID":57004,"Name":"t029","PlayerID":2262902,"Points":379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57004","ServerKey":"pl181","X":670,"Y":343},{"Bonus":0,"Continent":"K24","ID":57005,"Name":"215...NORTH","PlayerID":6920960,"Points":2238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57005","ServerKey":"pl181","X":416,"Y":283},{"Bonus":0,"Continent":"K52","ID":57006,"Name":"New WorldA","PlayerID":849084005,"Points":898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57006","ServerKey":"pl181","X":265,"Y":523},{"Bonus":0,"Continent":"K75","ID":57007,"Name":"Wioska Karolinka6868","PlayerID":849094355,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57007","ServerKey":"pl181","X":576,"Y":717},{"Bonus":0,"Continent":"K37","ID":57008,"Name":"Sqn","PlayerID":699598425,"Points":1818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57008","ServerKey":"pl181","X":713,"Y":395},{"Bonus":0,"Continent":"K52","ID":57009,"Name":"7. Vermax","PlayerID":849089499,"Points":1076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57009","ServerKey":"pl181","X":279,"Y":580},{"Bonus":0,"Continent":"K63","ID":57010,"Name":"Wioska Adijen","PlayerID":699688180,"Points":7437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57010","ServerKey":"pl181","X":348,"Y":676},{"Bonus":0,"Continent":"K33","ID":57011,"Name":"Zaplecze Barba 047","PlayerID":699796330,"Points":1786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57011","ServerKey":"pl181","X":342,"Y":328},{"Bonus":0,"Continent":"K74","ID":57012,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57012","ServerKey":"pl181","X":401,"Y":714},{"Bonus":0,"Continent":"K37","ID":57013,"Name":"0128","PlayerID":698416970,"Points":759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57013","ServerKey":"pl181","X":703,"Y":380},{"Bonus":0,"Continent":"K33","ID":57014,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57014","ServerKey":"pl181","X":355,"Y":326},{"Bonus":0,"Continent":"K74","ID":57015,"Name":"FP056","PlayerID":699605333,"Points":6782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57015","ServerKey":"pl181","X":444,"Y":730},{"Bonus":0,"Continent":"K32","ID":57016,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57016","ServerKey":"pl181","X":285,"Y":398},{"Bonus":0,"Continent":"K24","ID":57017,"Name":"#0258 barbarzyƄska","PlayerID":1238300,"Points":1015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57017","ServerKey":"pl181","X":445,"Y":277},{"Bonus":0,"Continent":"K52","ID":57018,"Name":"011 R2 D2","PlayerID":197581,"Points":4589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57018","ServerKey":"pl181","X":275,"Y":543},{"Bonus":0,"Continent":"K33","ID":57019,"Name":"017","PlayerID":849101205,"Points":438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57019","ServerKey":"pl181","X":338,"Y":342},{"Bonus":0,"Continent":"K35","ID":57020,"Name":"Wioska dla mklo12","PlayerID":8678008,"Points":9233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57020","ServerKey":"pl181","X":521,"Y":373},{"Bonus":0,"Continent":"K74","ID":57021,"Name":"FP043","PlayerID":699605333,"Points":4292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57021","ServerKey":"pl181","X":465,"Y":732},{"Bonus":0,"Continent":"K75","ID":57022,"Name":"045 - Budowanko!","PlayerID":7540891,"Points":5653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57022","ServerKey":"pl181","X":538,"Y":728},{"Bonus":0,"Continent":"K47","ID":57023,"Name":"078. Wioska barbarzyƄska","PlayerID":7494497,"Points":4571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57023","ServerKey":"pl181","X":734,"Y":460},{"Bonus":0,"Continent":"K74","ID":57024,"Name":"024 - Budowanko!","PlayerID":7540891,"Points":5063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57024","ServerKey":"pl181","X":486,"Y":730},{"Bonus":0,"Continent":"K47","ID":57025,"Name":"220 |","PlayerID":8000875,"Points":1037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57025","ServerKey":"pl181","X":724,"Y":423},{"Bonus":0,"Continent":"K24","ID":57026,"Name":"TikTok","PlayerID":849051731,"Points":3414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57026","ServerKey":"pl181","X":487,"Y":265},{"Bonus":0,"Continent":"K24","ID":57027,"Name":"Wioska knoxville5","PlayerID":849110747,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57027","ServerKey":"pl181","X":444,"Y":280},{"Bonus":0,"Continent":"K74","ID":57028,"Name":"znam ostropesta","PlayerID":699777372,"Points":3467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57028","ServerKey":"pl181","X":461,"Y":733},{"Bonus":0,"Continent":"K24","ID":57029,"Name":"001-181","PlayerID":2297431,"Points":744,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57029","ServerKey":"pl181","X":468,"Y":273},{"Bonus":0,"Continent":"K66","ID":57030,"Name":"052","PlayerID":2323859,"Points":1037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57030","ServerKey":"pl181","X":665,"Y":670},{"Bonus":0,"Continent":"K36","ID":57031,"Name":"=|43|=","PlayerID":6160655,"Points":2213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57031","ServerKey":"pl181","X":689,"Y":374},{"Bonus":0,"Continent":"K47","ID":57032,"Name":"Wioska barbarzyƄska","PlayerID":699573053,"Points":1188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57032","ServerKey":"pl181","X":726,"Y":489},{"Bonus":0,"Continent":"K24","ID":57033,"Name":"#0251 barbarzyƄska","PlayerID":1238300,"Points":841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57033","ServerKey":"pl181","X":443,"Y":278},{"Bonus":0,"Continent":"K25","ID":57034,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":5223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57034","ServerKey":"pl181","X":594,"Y":293},{"Bonus":0,"Continent":"K24","ID":57035,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":1448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57035","ServerKey":"pl181","X":461,"Y":276},{"Bonus":0,"Continent":"K25","ID":57036,"Name":"--052--","PlayerID":542253,"Points":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57036","ServerKey":"pl181","X":585,"Y":285},{"Bonus":0,"Continent":"K63","ID":57037,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57037","ServerKey":"pl181","X":318,"Y":649},{"Bonus":0,"Continent":"K24","ID":57038,"Name":"????","PlayerID":698489071,"Points":4710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57038","ServerKey":"pl181","X":496,"Y":273},{"Bonus":0,"Continent":"K52","ID":57039,"Name":"Wioska barbarzyƄska","PlayerID":699396429,"Points":1161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57039","ServerKey":"pl181","X":278,"Y":585},{"Bonus":0,"Continent":"K57","ID":57040,"Name":"HajnĂłwka","PlayerID":698548451,"Points":3290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57040","ServerKey":"pl181","X":726,"Y":545},{"Bonus":0,"Continent":"K66","ID":57041,"Name":"Wioska 113","PlayerID":848971079,"Points":2180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57041","ServerKey":"pl181","X":686,"Y":648},{"Bonus":0,"Continent":"K36","ID":57042,"Name":"Lord Lord Franek .#189","PlayerID":698420691,"Points":2616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57042","ServerKey":"pl181","X":692,"Y":360},{"Bonus":3,"Continent":"K36","ID":57043,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57043","ServerKey":"pl181","X":625,"Y":303},{"Bonus":0,"Continent":"K57","ID":57044,"Name":"Wioska patrix01","PlayerID":849092978,"Points":3698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57044","ServerKey":"pl181","X":727,"Y":570},{"Bonus":0,"Continent":"K74","ID":57045,"Name":"001","PlayerID":849080197,"Points":2631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57045","ServerKey":"pl181","X":447,"Y":706},{"Bonus":0,"Continent":"K36","ID":57046,"Name":"Spajk","PlayerID":7973893,"Points":1199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57046","ServerKey":"pl181","X":680,"Y":349},{"Bonus":0,"Continent":"K47","ID":57048,"Name":"087. Wioska barbarzyƄska","PlayerID":7494497,"Points":3247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57048","ServerKey":"pl181","X":733,"Y":474},{"Bonus":0,"Continent":"K57","ID":57049,"Name":"Alamo7","PlayerID":2723244,"Points":936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57049","ServerKey":"pl181","X":717,"Y":576},{"Bonus":0,"Continent":"K52","ID":57050,"Name":"Wioska BabciaZosia","PlayerID":849110781,"Points":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57050","ServerKey":"pl181","X":267,"Y":537},{"Bonus":0,"Continent":"K36","ID":57051,"Name":"Wioska barbarzyƄska","PlayerID":849006385,"Points":341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57051","ServerKey":"pl181","X":646,"Y":316},{"Bonus":0,"Continent":"K57","ID":57052,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57052","ServerKey":"pl181","X":733,"Y":502},{"Bonus":0,"Continent":"K52","ID":57053,"Name":"C0302","PlayerID":8841266,"Points":3598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57053","ServerKey":"pl181","X":274,"Y":550},{"Bonus":0,"Continent":"K74","ID":57054,"Name":"New World","PlayerID":698152377,"Points":7405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57054","ServerKey":"pl181","X":432,"Y":724},{"Bonus":0,"Continent":"K23","ID":57055,"Name":"181","PlayerID":699829975,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57055","ServerKey":"pl181","X":399,"Y":293},{"Bonus":0,"Continent":"K36","ID":57056,"Name":"HAREDON","PlayerID":3957237,"Points":2653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57056","ServerKey":"pl181","X":692,"Y":364},{"Bonus":0,"Continent":"K42","ID":57057,"Name":"40 barbarzyƄska 3A","PlayerID":849018442,"Points":1879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57057","ServerKey":"pl181","X":269,"Y":451},{"Bonus":0,"Continent":"K42","ID":57058,"Name":"Wioska barbarzyƄska","PlayerID":849095814,"Points":1753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57058","ServerKey":"pl181","X":270,"Y":476},{"Bonus":2,"Continent":"K25","ID":57059,"Name":"ZƂoty ƚwit","PlayerID":699883079,"Points":1435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57059","ServerKey":"pl181","X":591,"Y":291},{"Bonus":0,"Continent":"K67","ID":57060,"Name":"K67 13","PlayerID":698867483,"Points":3534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57060","ServerKey":"pl181","X":702,"Y":608},{"Bonus":0,"Continent":"K24","ID":57061,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57061","ServerKey":"pl181","X":466,"Y":266},{"Bonus":0,"Continent":"K46","ID":57062,"Name":"Belmondo77","PlayerID":699058253,"Points":1584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57062","ServerKey":"pl181","X":642,"Y":483},{"Bonus":0,"Continent":"K75","ID":57063,"Name":"Wioska barbarzyƄska","PlayerID":769293,"Points":4890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57063","ServerKey":"pl181","X":520,"Y":727},{"Bonus":0,"Continent":"K66","ID":57064,"Name":"Wioska Stresik","PlayerID":699820572,"Points":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57064","ServerKey":"pl181","X":656,"Y":669},{"Bonus":0,"Continent":"K33","ID":57065,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":1316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57065","ServerKey":"pl181","X":333,"Y":332},{"Bonus":0,"Continent":"K42","ID":57066,"Name":"Wioska BoĆŒa","PlayerID":699854312,"Points":4596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57066","ServerKey":"pl181","X":279,"Y":417},{"Bonus":0,"Continent":"K63","ID":57067,"Name":"O106","PlayerID":2289134,"Points":8674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57067","ServerKey":"pl181","X":303,"Y":632},{"Bonus":0,"Continent":"K36","ID":57068,"Name":"Wioska barbarzyƄska","PlayerID":7139853,"Points":1134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57068","ServerKey":"pl181","X":634,"Y":307},{"Bonus":0,"Continent":"K47","ID":57069,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57069","ServerKey":"pl181","X":731,"Y":484},{"Bonus":0,"Continent":"K46","ID":57070,"Name":"Crezys","PlayerID":699057459,"Points":1525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57070","ServerKey":"pl181","X":643,"Y":478},{"Bonus":0,"Continent":"K36","ID":57071,"Name":"yuyuyuyu","PlayerID":7646152,"Points":2121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57071","ServerKey":"pl181","X":666,"Y":342},{"Bonus":0,"Continent":"K75","ID":57072,"Name":"0001","PlayerID":848987695,"Points":3321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57072","ServerKey":"pl181","X":525,"Y":726},{"Bonus":0,"Continent":"K74","ID":57073,"Name":"Kurnik","PlayerID":699603116,"Points":7183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57073","ServerKey":"pl181","X":450,"Y":721},{"Bonus":0,"Continent":"K75","ID":57074,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57074","ServerKey":"pl181","X":587,"Y":717},{"Bonus":0,"Continent":"K42","ID":57075,"Name":"[0281]","PlayerID":8630972,"Points":3949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57075","ServerKey":"pl181","X":265,"Y":488},{"Bonus":0,"Continent":"K57","ID":57076,"Name":"Tomekrol 6","PlayerID":849096334,"Points":4060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57076","ServerKey":"pl181","X":705,"Y":598},{"Bonus":0,"Continent":"K36","ID":57077,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":4080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57077","ServerKey":"pl181","X":628,"Y":301},{"Bonus":0,"Continent":"K42","ID":57078,"Name":"Wioska Aga22011993","PlayerID":849098592,"Points":327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57078","ServerKey":"pl181","X":265,"Y":465},{"Bonus":0,"Continent":"K52","ID":57079,"Name":"0000036Z","PlayerID":849089881,"Points":2353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57079","ServerKey":"pl181","X":278,"Y":556},{"Bonus":0,"Continent":"K26","ID":57080,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1682,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57080","ServerKey":"pl181","X":607,"Y":298},{"Bonus":0,"Continent":"K73","ID":57081,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57081","ServerKey":"pl181","X":394,"Y":707},{"Bonus":0,"Continent":"K66","ID":57082,"Name":"Sony 911","PlayerID":1415009,"Points":1701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57082","ServerKey":"pl181","X":682,"Y":648},{"Bonus":0,"Continent":"K74","ID":57083,"Name":"Domek Miniuka 03","PlayerID":699373225,"Points":3141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57083","ServerKey":"pl181","X":479,"Y":726},{"Bonus":0,"Continent":"K33","ID":57084,"Name":"Wioska ladio","PlayerID":698472522,"Points":225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57084","ServerKey":"pl181","X":365,"Y":311},{"Bonus":0,"Continent":"K75","ID":57085,"Name":"Wioska barbarzyƄska","PlayerID":8015775,"Points":575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57085","ServerKey":"pl181","X":549,"Y":727},{"Bonus":0,"Continent":"K33","ID":57086,"Name":"No.0","PlayerID":849106612,"Points":4001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57086","ServerKey":"pl181","X":328,"Y":338},{"Bonus":0,"Continent":"K52","ID":57087,"Name":"New WorldA","PlayerID":849084005,"Points":627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57087","ServerKey":"pl181","X":269,"Y":511},{"Bonus":0,"Continent":"K46","ID":57088,"Name":"Monia18","PlayerID":698776998,"Points":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57088","ServerKey":"pl181","X":651,"Y":477},{"Bonus":0,"Continent":"K33","ID":57089,"Name":"245","PlayerID":7271812,"Points":271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57089","ServerKey":"pl181","X":369,"Y":303},{"Bonus":0,"Continent":"K36","ID":57090,"Name":"wioska XX","PlayerID":9314079,"Points":1443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57090","ServerKey":"pl181","X":683,"Y":352},{"Bonus":0,"Continent":"K67","ID":57092,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":1640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57092","ServerKey":"pl181","X":711,"Y":601},{"Bonus":0,"Continent":"K35","ID":57093,"Name":"Wioska XVIII","PlayerID":698200480,"Points":1575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57093","ServerKey":"pl181","X":586,"Y":345},{"Bonus":0,"Continent":"K52","ID":57094,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57094","ServerKey":"pl181","X":270,"Y":506},{"Bonus":0,"Continent":"K47","ID":57095,"Name":"Wioska Gosia99","PlayerID":849075298,"Points":4491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57095","ServerKey":"pl181","X":732,"Y":463},{"Bonus":0,"Continent":"K36","ID":57096,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57096","ServerKey":"pl181","X":669,"Y":334},{"Bonus":0,"Continent":"K74","ID":57097,"Name":"Tycia *","PlayerID":698748891,"Points":1817,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57097","ServerKey":"pl181","X":492,"Y":733},{"Bonus":0,"Continent":"K25","ID":57098,"Name":"North 110","PlayerID":849064752,"Points":772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57098","ServerKey":"pl181","X":597,"Y":292},{"Bonus":0,"Continent":"K33","ID":57099,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":2835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57099","ServerKey":"pl181","X":331,"Y":333},{"Bonus":0,"Continent":"K37","ID":57100,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57100","ServerKey":"pl181","X":704,"Y":388},{"Bonus":0,"Continent":"K25","ID":57101,"Name":"North 079","PlayerID":849064752,"Points":4331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57101","ServerKey":"pl181","X":533,"Y":267},{"Bonus":0,"Continent":"K66","ID":57102,"Name":"o012","PlayerID":699189792,"Points":5936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57102","ServerKey":"pl181","X":611,"Y":698},{"Bonus":0,"Continent":"K67","ID":57104,"Name":"K67 09","PlayerID":698867483,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57104","ServerKey":"pl181","X":701,"Y":619},{"Bonus":0,"Continent":"K47","ID":57105,"Name":"093. Wioska barbarzyƄska","PlayerID":7494497,"Points":3279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57105","ServerKey":"pl181","X":730,"Y":471},{"Bonus":0,"Continent":"K36","ID":57106,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57106","ServerKey":"pl181","X":654,"Y":324},{"Bonus":5,"Continent":"K36","ID":57107,"Name":"=|39|=","PlayerID":9101574,"Points":2650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57107","ServerKey":"pl181","X":692,"Y":376},{"Bonus":0,"Continent":"K52","ID":57108,"Name":"Wioska Nevada","PlayerID":699693687,"Points":3491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57108","ServerKey":"pl181","X":267,"Y":544},{"Bonus":0,"Continent":"K52","ID":57109,"Name":"New WorldA","PlayerID":849084005,"Points":1172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57109","ServerKey":"pl181","X":268,"Y":541},{"Bonus":0,"Continent":"K24","ID":57110,"Name":"Wioska sznur","PlayerID":699832431,"Points":351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57110","ServerKey":"pl181","X":478,"Y":273},{"Bonus":0,"Continent":"K42","ID":57111,"Name":"[0240]","PlayerID":8630972,"Points":4486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57111","ServerKey":"pl181","X":272,"Y":497},{"Bonus":0,"Continent":"K33","ID":57112,"Name":"Janapola01","PlayerID":698806018,"Points":872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57112","ServerKey":"pl181","X":333,"Y":338},{"Bonus":0,"Continent":"K73","ID":57114,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57114","ServerKey":"pl181","X":395,"Y":708},{"Bonus":0,"Continent":"K25","ID":57115,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57115","ServerKey":"pl181","X":501,"Y":270},{"Bonus":5,"Continent":"K57","ID":57116,"Name":"Osada koczownikĂłw","PlayerID":8323711,"Points":1865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57116","ServerKey":"pl181","X":711,"Y":599},{"Bonus":0,"Continent":"K67","ID":57117,"Name":"WZ13","PlayerID":7142659,"Points":1688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57117","ServerKey":"pl181","X":701,"Y":607},{"Bonus":0,"Continent":"K36","ID":57118,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":1035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57118","ServerKey":"pl181","X":640,"Y":311},{"Bonus":0,"Continent":"K42","ID":57119,"Name":"Avanti!","PlayerID":698625834,"Points":1407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57119","ServerKey":"pl181","X":268,"Y":466},{"Bonus":0,"Continent":"K36","ID":57120,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57120","ServerKey":"pl181","X":654,"Y":333},{"Bonus":0,"Continent":"K52","ID":57121,"Name":"[0241]","PlayerID":8630972,"Points":4302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57121","ServerKey":"pl181","X":272,"Y":504},{"Bonus":0,"Continent":"K63","ID":57122,"Name":"Wioska barbarzyƄska","PlayerID":6910361,"Points":890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57122","ServerKey":"pl181","X":331,"Y":656},{"Bonus":0,"Continent":"K33","ID":57123,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":1336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57123","ServerKey":"pl181","X":311,"Y":366},{"Bonus":0,"Continent":"K24","ID":57124,"Name":"????","PlayerID":698489071,"Points":4838,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57124","ServerKey":"pl181","X":493,"Y":266},{"Bonus":0,"Continent":"K75","ID":57125,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":3683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57125","ServerKey":"pl181","X":561,"Y":720},{"Bonus":0,"Continent":"K57","ID":57126,"Name":"=123= Wioska barbarzyƄska","PlayerID":3781794,"Points":1500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57126","ServerKey":"pl181","X":726,"Y":568},{"Bonus":0,"Continent":"K36","ID":57127,"Name":"-003- Wioska barbarzyƄska","PlayerID":849095068,"Points":1651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57127","ServerKey":"pl181","X":684,"Y":351},{"Bonus":0,"Continent":"K66","ID":57128,"Name":"Sony 911","PlayerID":1415009,"Points":2062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57128","ServerKey":"pl181","X":680,"Y":653},{"Bonus":0,"Continent":"K47","ID":57129,"Name":"Wioska bambinos66","PlayerID":8325700,"Points":7196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57129","ServerKey":"pl181","X":716,"Y":416},{"Bonus":0,"Continent":"K36","ID":57130,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":1947,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57130","ServerKey":"pl181","X":657,"Y":323},{"Bonus":0,"Continent":"K33","ID":57131,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57131","ServerKey":"pl181","X":335,"Y":331},{"Bonus":0,"Continent":"K24","ID":57132,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57132","ServerKey":"pl181","X":403,"Y":294},{"Bonus":0,"Continent":"K67","ID":57133,"Name":"K67 15","PlayerID":698867483,"Points":2802,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57133","ServerKey":"pl181","X":705,"Y":619},{"Bonus":0,"Continent":"K36","ID":57134,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":3383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57134","ServerKey":"pl181","X":655,"Y":320},{"Bonus":0,"Continent":"K57","ID":57135,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":5531,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57135","ServerKey":"pl181","X":724,"Y":560},{"Bonus":0,"Continent":"K66","ID":57136,"Name":"komandos","PlayerID":7976264,"Points":3583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57136","ServerKey":"pl181","X":673,"Y":655},{"Bonus":0,"Continent":"K36","ID":57137,"Name":"Harem","PlayerID":848882577,"Points":5942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57137","ServerKey":"pl181","X":627,"Y":311},{"Bonus":0,"Continent":"K36","ID":57138,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":3577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57138","ServerKey":"pl181","X":674,"Y":346},{"Bonus":0,"Continent":"K57","ID":57139,"Name":"CastAway !035","PlayerID":9314079,"Points":2350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57139","ServerKey":"pl181","X":716,"Y":582},{"Bonus":0,"Continent":"K63","ID":57140,"Name":"04Wioska barbarzyƄska","PlayerID":699704542,"Points":3270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57140","ServerKey":"pl181","X":354,"Y":683},{"Bonus":0,"Continent":"K36","ID":57141,"Name":"Wioska Harmozabal","PlayerID":1675628,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57141","ServerKey":"pl181","X":676,"Y":343},{"Bonus":0,"Continent":"K73","ID":57142,"Name":"wuju1","PlayerID":849101224,"Points":975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57142","ServerKey":"pl181","X":381,"Y":702},{"Bonus":0,"Continent":"K36","ID":57143,"Name":"babababab","PlayerID":7646152,"Points":1097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57143","ServerKey":"pl181","X":668,"Y":343},{"Bonus":0,"Continent":"K47","ID":57144,"Name":"18 Spedd Box","PlayerID":849101845,"Points":5246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57144","ServerKey":"pl181","X":729,"Y":447},{"Bonus":0,"Continent":"K42","ID":57145,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57145","ServerKey":"pl181","X":267,"Y":464},{"Bonus":0,"Continent":"K47","ID":57146,"Name":"Wioska MARCINEK GROĆ»NY","PlayerID":849069010,"Points":270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57146","ServerKey":"pl181","X":726,"Y":477},{"Bonus":0,"Continent":"K25","ID":57147,"Name":"Ćčrebię","PlayerID":849080011,"Points":767,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57147","ServerKey":"pl181","X":572,"Y":281},{"Bonus":0,"Continent":"K25","ID":57148,"Name":"=SAwars=07=","PlayerID":849106420,"Points":1523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57148","ServerKey":"pl181","X":566,"Y":275},{"Bonus":0,"Continent":"K63","ID":57149,"Name":"Wioska barbarzyƄska","PlayerID":3933666,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57149","ServerKey":"pl181","X":367,"Y":694},{"Bonus":0,"Continent":"K26","ID":57150,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":2428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57150","ServerKey":"pl181","X":602,"Y":295},{"Bonus":0,"Continent":"K66","ID":57151,"Name":"Betka","PlayerID":849048856,"Points":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57151","ServerKey":"pl181","X":669,"Y":656},{"Bonus":0,"Continent":"K66","ID":57152,"Name":"Wioska warkoczynka","PlayerID":698580310,"Points":844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57152","ServerKey":"pl181","X":610,"Y":607},{"Bonus":0,"Continent":"K47","ID":57153,"Name":"043 KTW","PlayerID":848883237,"Points":850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57153","ServerKey":"pl181","X":728,"Y":442},{"Bonus":0,"Continent":"K33","ID":57154,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57154","ServerKey":"pl181","X":378,"Y":303},{"Bonus":0,"Continent":"K25","ID":57155,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":6012,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57155","ServerKey":"pl181","X":503,"Y":269},{"Bonus":9,"Continent":"K25","ID":57156,"Name":"D013","PlayerID":699299123,"Points":3493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57156","ServerKey":"pl181","X":564,"Y":281},{"Bonus":0,"Continent":"K57","ID":57157,"Name":"Wioska touchmeboy","PlayerID":849043776,"Points":430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57157","ServerKey":"pl181","X":716,"Y":575},{"Bonus":0,"Continent":"K74","ID":57158,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2759,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57158","ServerKey":"pl181","X":401,"Y":706},{"Bonus":0,"Continent":"K63","ID":57159,"Name":"Wioska Quattro only","PlayerID":849112435,"Points":6253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57159","ServerKey":"pl181","X":301,"Y":628},{"Bonus":0,"Continent":"K66","ID":57160,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57160","ServerKey":"pl181","X":640,"Y":688},{"Bonus":0,"Continent":"K74","ID":57161,"Name":"New World","PlayerID":698152377,"Points":4388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57161","ServerKey":"pl181","X":418,"Y":723},{"Bonus":0,"Continent":"K57","ID":57162,"Name":"Wioska greenapple","PlayerID":698604229,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57162","ServerKey":"pl181","X":727,"Y":536},{"Bonus":0,"Continent":"K37","ID":57163,"Name":"backstage 4","PlayerID":849099696,"Points":2785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57163","ServerKey":"pl181","X":706,"Y":399},{"Bonus":8,"Continent":"K52","ID":57164,"Name":"Na SsSskraju","PlayerID":1536625,"Points":5784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57164","ServerKey":"pl181","X":276,"Y":570},{"Bonus":0,"Continent":"K75","ID":57165,"Name":"Wioska PACYFICA","PlayerID":1450352,"Points":629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57165","ServerKey":"pl181","X":520,"Y":736},{"Bonus":0,"Continent":"K24","ID":57166,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57166","ServerKey":"pl181","X":478,"Y":263},{"Bonus":0,"Continent":"K74","ID":57167,"Name":"New World","PlayerID":698152377,"Points":3722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57167","ServerKey":"pl181","X":427,"Y":720},{"Bonus":0,"Continent":"K62","ID":57168,"Name":"001","PlayerID":849100796,"Points":5153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57168","ServerKey":"pl181","X":299,"Y":614},{"Bonus":0,"Continent":"K75","ID":57169,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57169","ServerKey":"pl181","X":537,"Y":732},{"Bonus":7,"Continent":"K57","ID":57170,"Name":"Osada koczownikĂłw","PlayerID":849082848,"Points":4777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57170","ServerKey":"pl181","X":737,"Y":518},{"Bonus":0,"Continent":"K66","ID":57171,"Name":"nowa 6","PlayerID":699372829,"Points":477,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57171","ServerKey":"pl181","X":631,"Y":689},{"Bonus":0,"Continent":"K42","ID":57172,"Name":"moczary","PlayerID":699880701,"Points":889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57172","ServerKey":"pl181","X":280,"Y":434},{"Bonus":0,"Continent":"K24","ID":57173,"Name":"Wioska daro1974","PlayerID":3773216,"Points":222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57173","ServerKey":"pl181","X":400,"Y":292},{"Bonus":0,"Continent":"K36","ID":57174,"Name":"Spy","PlayerID":7973893,"Points":1000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57174","ServerKey":"pl181","X":682,"Y":352},{"Bonus":0,"Continent":"K33","ID":57175,"Name":"Ɓatwy cel","PlayerID":699419851,"Points":6264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57175","ServerKey":"pl181","X":380,"Y":303},{"Bonus":0,"Continent":"K63","ID":57176,"Name":"015 | North","PlayerID":699511295,"Points":3239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57176","ServerKey":"pl181","X":371,"Y":687},{"Bonus":0,"Continent":"K74","ID":57177,"Name":"038 - Budowanko!","PlayerID":7540891,"Points":5190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57177","ServerKey":"pl181","X":485,"Y":733},{"Bonus":0,"Continent":"K66","ID":57178,"Name":"Nowa Baza 7","PlayerID":698353083,"Points":3695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57178","ServerKey":"pl181","X":615,"Y":697},{"Bonus":7,"Continent":"K74","ID":57179,"Name":"New World","PlayerID":698152377,"Points":6593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57179","ServerKey":"pl181","X":425,"Y":719},{"Bonus":0,"Continent":"K47","ID":57180,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3454,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57180","ServerKey":"pl181","X":716,"Y":408},{"Bonus":0,"Continent":"K36","ID":57181,"Name":"Ks Konfederacja","PlayerID":848915730,"Points":5401,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57181","ServerKey":"pl181","X":692,"Y":362},{"Bonus":0,"Continent":"K25","ID":57182,"Name":"Wioska SiwyStaruszek","PlayerID":848937780,"Points":1308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57182","ServerKey":"pl181","X":516,"Y":269},{"Bonus":0,"Continent":"K63","ID":57183,"Name":"013 | North","PlayerID":699511295,"Points":3037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57183","ServerKey":"pl181","X":378,"Y":695},{"Bonus":0,"Continent":"K74","ID":57184,"Name":"Wioska Pimpuƛ","PlayerID":849057655,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57184","ServerKey":"pl181","X":459,"Y":734},{"Bonus":0,"Continent":"K42","ID":57185,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57185","ServerKey":"pl181","X":274,"Y":466},{"Bonus":0,"Continent":"K42","ID":57186,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57186","ServerKey":"pl181","X":287,"Y":420},{"Bonus":0,"Continent":"K75","ID":57187,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57187","ServerKey":"pl181","X":544,"Y":728},{"Bonus":0,"Continent":"K33","ID":57188,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57188","ServerKey":"pl181","X":305,"Y":366},{"Bonus":0,"Continent":"K25","ID":57189,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":321,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57189","ServerKey":"pl181","X":544,"Y":275},{"Bonus":0,"Continent":"K73","ID":57190,"Name":"Wioska Stefek7","PlayerID":849108934,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57190","ServerKey":"pl181","X":376,"Y":703},{"Bonus":0,"Continent":"K25","ID":57191,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57191","ServerKey":"pl181","X":589,"Y":289},{"Bonus":3,"Continent":"K33","ID":57192,"Name":"Osada koczownikĂłw","PlayerID":8632462,"Points":590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57192","ServerKey":"pl181","X":321,"Y":349},{"Bonus":0,"Continent":"K73","ID":57193,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57193","ServerKey":"pl181","X":386,"Y":705},{"Bonus":0,"Continent":"K42","ID":57194,"Name":"Osada 1","PlayerID":848936053,"Points":2537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57194","ServerKey":"pl181","X":278,"Y":415},{"Bonus":0,"Continent":"K57","ID":57195,"Name":"099","PlayerID":7085502,"Points":1988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57195","ServerKey":"pl181","X":732,"Y":507},{"Bonus":0,"Continent":"K67","ID":57196,"Name":"WZ05","PlayerID":7142659,"Points":3480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57196","ServerKey":"pl181","X":713,"Y":600},{"Bonus":0,"Continent":"K74","ID":57197,"Name":"C008","PlayerID":8954402,"Points":1736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57197","ServerKey":"pl181","X":463,"Y":735},{"Bonus":0,"Continent":"K36","ID":57198,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":3391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57198","ServerKey":"pl181","X":654,"Y":330},{"Bonus":0,"Continent":"K42","ID":57200,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57200","ServerKey":"pl181","X":271,"Y":445},{"Bonus":0,"Continent":"K36","ID":57201,"Name":"Wioska barbarzyƄska","PlayerID":849048734,"Points":202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57201","ServerKey":"pl181","X":649,"Y":327},{"Bonus":0,"Continent":"K47","ID":57202,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57202","ServerKey":"pl181","X":731,"Y":440},{"Bonus":0,"Continent":"K32","ID":57203,"Name":"gondor","PlayerID":698677650,"Points":2335,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57203","ServerKey":"pl181","X":290,"Y":396},{"Bonus":0,"Continent":"K76","ID":57204,"Name":"o016","PlayerID":699189792,"Points":3678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57204","ServerKey":"pl181","X":613,"Y":700},{"Bonus":0,"Continent":"K63","ID":57205,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57205","ServerKey":"pl181","X":343,"Y":676},{"Bonus":0,"Continent":"K25","ID":57206,"Name":"005 Barad Dur","PlayerID":849100383,"Points":7160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57206","ServerKey":"pl181","X":505,"Y":270},{"Bonus":0,"Continent":"K25","ID":57207,"Name":"105 Wioska barbarzyƄska","PlayerID":699854484,"Points":1156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57207","ServerKey":"pl181","X":567,"Y":276},{"Bonus":0,"Continent":"K74","ID":57208,"Name":"P|007|","PlayerID":699393742,"Points":5261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57208","ServerKey":"pl181","X":439,"Y":730},{"Bonus":0,"Continent":"K25","ID":57209,"Name":"=SAwars=05=","PlayerID":849106420,"Points":3231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57209","ServerKey":"pl181","X":564,"Y":277},{"Bonus":0,"Continent":"K63","ID":57210,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57210","ServerKey":"pl181","X":347,"Y":669},{"Bonus":0,"Continent":"K52","ID":57212,"Name":"Arczi997 07","PlayerID":849055181,"Points":289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57212","ServerKey":"pl181","X":270,"Y":507},{"Bonus":0,"Continent":"K25","ID":57213,"Name":"#019","PlayerID":849064614,"Points":2145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57213","ServerKey":"pl181","X":558,"Y":274},{"Bonus":0,"Continent":"K57","ID":57214,"Name":"Wioska elgordo","PlayerID":1079223,"Points":1708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57214","ServerKey":"pl181","X":716,"Y":505},{"Bonus":0,"Continent":"K63","ID":57215,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57215","ServerKey":"pl181","X":346,"Y":677},{"Bonus":0,"Continent":"K62","ID":57216,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57216","ServerKey":"pl181","X":298,"Y":615},{"Bonus":0,"Continent":"K75","ID":57217,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57217","ServerKey":"pl181","X":530,"Y":725},{"Bonus":0,"Continent":"K57","ID":57218,"Name":"Wioska domin964","PlayerID":849112725,"Points":2064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57218","ServerKey":"pl181","X":730,"Y":535},{"Bonus":0,"Continent":"K66","ID":57219,"Name":"BETON 112","PlayerID":699277039,"Points":175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57219","ServerKey":"pl181","X":667,"Y":662},{"Bonus":0,"Continent":"K45","ID":57221,"Name":".:080:. Takmahal","PlayerID":848934935,"Points":3499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57221","ServerKey":"pl181","X":522,"Y":446},{"Bonus":0,"Continent":"K36","ID":57222,"Name":"Wioska mrozzo","PlayerID":849048112,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57222","ServerKey":"pl181","X":663,"Y":340},{"Bonus":0,"Continent":"K62","ID":57223,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57223","ServerKey":"pl181","X":295,"Y":613},{"Bonus":0,"Continent":"K63","ID":57224,"Name":"O158","PlayerID":272173,"Points":902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57224","ServerKey":"pl181","X":310,"Y":630},{"Bonus":0,"Continent":"K74","ID":57225,"Name":"Bagno 38","PlayerID":848883684,"Points":4145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57225","ServerKey":"pl181","X":461,"Y":730},{"Bonus":5,"Continent":"K24","ID":57226,"Name":"Osada koczownikĂłw","PlayerID":698231772,"Points":4000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57226","ServerKey":"pl181","X":406,"Y":286},{"Bonus":0,"Continent":"K52","ID":57228,"Name":"New WorldA","PlayerID":849084005,"Points":1334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57228","ServerKey":"pl181","X":271,"Y":517},{"Bonus":0,"Continent":"K32","ID":57229,"Name":".5.","PlayerID":762975,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57229","ServerKey":"pl181","X":289,"Y":391},{"Bonus":0,"Continent":"K66","ID":57230,"Name":"Wiadro25","PlayerID":8677963,"Points":608,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57230","ServerKey":"pl181","X":679,"Y":640},{"Bonus":0,"Continent":"K74","ID":57231,"Name":"marekkkzzz665","PlayerID":9195661,"Points":5601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57231","ServerKey":"pl181","X":402,"Y":717},{"Bonus":0,"Continent":"K66","ID":57232,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":6224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57232","ServerKey":"pl181","X":648,"Y":682},{"Bonus":0,"Continent":"K57","ID":57234,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":5522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57234","ServerKey":"pl181","X":726,"Y":559},{"Bonus":0,"Continent":"K42","ID":57235,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57235","ServerKey":"pl181","X":289,"Y":409},{"Bonus":0,"Continent":"K26","ID":57236,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57236","ServerKey":"pl181","X":621,"Y":297},{"Bonus":0,"Continent":"K24","ID":57237,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57237","ServerKey":"pl181","X":483,"Y":265},{"Bonus":0,"Continent":"K25","ID":57238,"Name":"North K25","PlayerID":699146580,"Points":1622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57238","ServerKey":"pl181","X":560,"Y":275},{"Bonus":0,"Continent":"K36","ID":57239,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":5324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57239","ServerKey":"pl181","X":625,"Y":308},{"Bonus":0,"Continent":"K66","ID":57240,"Name":"Wioska 092","PlayerID":848971079,"Points":4999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57240","ServerKey":"pl181","X":697,"Y":616},{"Bonus":0,"Continent":"K66","ID":57241,"Name":"...","PlayerID":849108991,"Points":1068,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57241","ServerKey":"pl181","X":685,"Y":636},{"Bonus":0,"Continent":"K76","ID":57242,"Name":"Nowa Baza 9","PlayerID":698353083,"Points":4847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57242","ServerKey":"pl181","X":615,"Y":702},{"Bonus":0,"Continent":"K47","ID":57243,"Name":"C.062","PlayerID":9188016,"Points":934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57243","ServerKey":"pl181","X":731,"Y":478},{"Bonus":0,"Continent":"K74","ID":57244,"Name":"New World","PlayerID":698152377,"Points":4216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57244","ServerKey":"pl181","X":423,"Y":725},{"Bonus":0,"Continent":"K33","ID":57245,"Name":"Wioska barbarzyƄska","PlayerID":1267913,"Points":437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57245","ServerKey":"pl181","X":306,"Y":380},{"Bonus":0,"Continent":"K52","ID":57246,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57246","ServerKey":"pl181","X":291,"Y":591},{"Bonus":0,"Continent":"K52","ID":57247,"Name":"New World","PlayerID":849084005,"Points":8098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57247","ServerKey":"pl181","X":272,"Y":543},{"Bonus":0,"Continent":"K75","ID":57248,"Name":"Aa2","PlayerID":849097614,"Points":5439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57248","ServerKey":"pl181","X":593,"Y":714},{"Bonus":0,"Continent":"K47","ID":57249,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57249","ServerKey":"pl181","X":727,"Y":441},{"Bonus":0,"Continent":"K67","ID":57250,"Name":"0920zzz006","PlayerID":3986807,"Points":560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57250","ServerKey":"pl181","X":708,"Y":601},{"Bonus":0,"Continent":"K33","ID":57252,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57252","ServerKey":"pl181","X":319,"Y":358},{"Bonus":0,"Continent":"K25","ID":57253,"Name":".achim.","PlayerID":6936607,"Points":946,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57253","ServerKey":"pl181","X":573,"Y":285},{"Bonus":0,"Continent":"K47","ID":57254,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":2967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57254","ServerKey":"pl181","X":712,"Y":417},{"Bonus":0,"Continent":"K25","ID":57255,"Name":"Waldus","PlayerID":849110382,"Points":3734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57255","ServerKey":"pl181","X":521,"Y":269},{"Bonus":0,"Continent":"K25","ID":57256,"Name":"PPF-09","PlayerID":1424656,"Points":1400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57256","ServerKey":"pl181","X":519,"Y":270},{"Bonus":0,"Continent":"K42","ID":57257,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57257","ServerKey":"pl181","X":277,"Y":444},{"Bonus":0,"Continent":"K23","ID":57258,"Name":"Wioska Mega Niepokorny","PlayerID":699741694,"Points":3937,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57258","ServerKey":"pl181","X":399,"Y":287},{"Bonus":3,"Continent":"K25","ID":57259,"Name":"#009","PlayerID":849064614,"Points":6221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57259","ServerKey":"pl181","X":553,"Y":274},{"Bonus":0,"Continent":"K66","ID":57260,"Name":"mogƂem wbić kolejnego klina","PlayerID":698353083,"Points":423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57260","ServerKey":"pl181","X":622,"Y":697},{"Bonus":0,"Continent":"K57","ID":57261,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":5736,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57261","ServerKey":"pl181","X":727,"Y":558},{"Bonus":0,"Continent":"K63","ID":57262,"Name":"Wioska 0019","PlayerID":9186126,"Points":6382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57262","ServerKey":"pl181","X":340,"Y":662},{"Bonus":0,"Continent":"K63","ID":57263,"Name":"Wiocha Zochy 2","PlayerID":8838462,"Points":282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57263","ServerKey":"pl181","X":361,"Y":689},{"Bonus":7,"Continent":"K24","ID":57264,"Name":"o,o 3","PlayerID":848933470,"Points":296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57264","ServerKey":"pl181","X":445,"Y":270},{"Bonus":0,"Continent":"K75","ID":57265,"Name":"Wioska Zawodnika 3","PlayerID":698655859,"Points":3539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57265","ServerKey":"pl181","X":569,"Y":723},{"Bonus":0,"Continent":"K42","ID":57266,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":7603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57266","ServerKey":"pl181","X":281,"Y":424},{"Bonus":0,"Continent":"K66","ID":57267,"Name":"Sony 911","PlayerID":1415009,"Points":2035,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57267","ServerKey":"pl181","X":678,"Y":647},{"Bonus":0,"Continent":"K25","ID":57268,"Name":"PPF-12","PlayerID":1424656,"Points":1875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57268","ServerKey":"pl181","X":522,"Y":269},{"Bonus":0,"Continent":"K74","ID":57269,"Name":"068.","PlayerID":849034882,"Points":9559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57269","ServerKey":"pl181","X":452,"Y":731},{"Bonus":0,"Continent":"K52","ID":57270,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57270","ServerKey":"pl181","X":281,"Y":589},{"Bonus":0,"Continent":"K75","ID":57271,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57271","ServerKey":"pl181","X":526,"Y":735},{"Bonus":0,"Continent":"K63","ID":57272,"Name":"Wioska Crift","PlayerID":848887366,"Points":1622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57272","ServerKey":"pl181","X":358,"Y":690},{"Bonus":0,"Continent":"K47","ID":57273,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57273","ServerKey":"pl181","X":727,"Y":494},{"Bonus":0,"Continent":"K36","ID":57274,"Name":"Wioska barbarzyƄska","PlayerID":7758085,"Points":2085,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57274","ServerKey":"pl181","X":686,"Y":359},{"Bonus":0,"Continent":"K66","ID":57275,"Name":"046","PlayerID":2323859,"Points":569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57275","ServerKey":"pl181","X":675,"Y":647},{"Bonus":0,"Continent":"K66","ID":57276,"Name":"Wioska barbarzyƄska","PlayerID":849096354,"Points":985,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57276","ServerKey":"pl181","X":632,"Y":693},{"Bonus":1,"Continent":"K63","ID":57277,"Name":"Osada koczownikĂłw","PlayerID":2725721,"Points":1033,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57277","ServerKey":"pl181","X":347,"Y":670},{"Bonus":0,"Continent":"K66","ID":57278,"Name":"Sony 911","PlayerID":1415009,"Points":2136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57278","ServerKey":"pl181","X":671,"Y":649},{"Bonus":0,"Continent":"K42","ID":57279,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57279","ServerKey":"pl181","X":276,"Y":443},{"Bonus":0,"Continent":"K25","ID":57280,"Name":"Wioska Sylwiaa1234","PlayerID":849048552,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57280","ServerKey":"pl181","X":571,"Y":283},{"Bonus":9,"Continent":"K33","ID":57281,"Name":"Wioska barbarzyƄska 09","PlayerID":698757439,"Points":6836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57281","ServerKey":"pl181","X":343,"Y":331},{"Bonus":0,"Continent":"K33","ID":57282,"Name":"Wioska amon201","PlayerID":7262049,"Points":945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57282","ServerKey":"pl181","X":320,"Y":353},{"Bonus":0,"Continent":"K24","ID":57283,"Name":"068KP","PlayerID":849063849,"Points":678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57283","ServerKey":"pl181","X":473,"Y":266},{"Bonus":0,"Continent":"K33","ID":57284,"Name":"Wioska barbarzyƄska","PlayerID":849098400,"Points":514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57284","ServerKey":"pl181","X":324,"Y":340},{"Bonus":0,"Continent":"K62","ID":57286,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57286","ServerKey":"pl181","X":294,"Y":613},{"Bonus":0,"Continent":"K32","ID":57287,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57287","ServerKey":"pl181","X":292,"Y":398},{"Bonus":0,"Continent":"K66","ID":57288,"Name":"Wioska 112","PlayerID":848971079,"Points":2809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57288","ServerKey":"pl181","X":687,"Y":641},{"Bonus":0,"Continent":"K57","ID":57289,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57289","ServerKey":"pl181","X":723,"Y":558},{"Bonus":0,"Continent":"K47","ID":57290,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2991,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57290","ServerKey":"pl181","X":712,"Y":408},{"Bonus":0,"Continent":"K23","ID":57292,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":3626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57292","ServerKey":"pl181","X":385,"Y":299},{"Bonus":0,"Continent":"K24","ID":57293,"Name":"Ciapolos","PlayerID":849111231,"Points":3203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57293","ServerKey":"pl181","X":446,"Y":270},{"Bonus":0,"Continent":"K24","ID":57294,"Name":"Wioska Pazuros","PlayerID":849111316,"Points":3090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57294","ServerKey":"pl181","X":449,"Y":265},{"Bonus":0,"Continent":"K42","ID":57295,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57295","ServerKey":"pl181","X":275,"Y":443},{"Bonus":0,"Continent":"K36","ID":57296,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57296","ServerKey":"pl181","X":664,"Y":339},{"Bonus":0,"Continent":"K24","ID":57297,"Name":"????","PlayerID":698489071,"Points":3902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57297","ServerKey":"pl181","X":461,"Y":272},{"Bonus":3,"Continent":"K23","ID":57298,"Name":"Osada koczownikĂłw","PlayerID":849017820,"Points":980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57298","ServerKey":"pl181","X":376,"Y":298},{"Bonus":0,"Continent":"K42","ID":57299,"Name":".6.","PlayerID":762975,"Points":2424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57299","ServerKey":"pl181","X":287,"Y":410},{"Bonus":0,"Continent":"K42","ID":57300,"Name":"K42 ADAMUS 021","PlayerID":6212605,"Points":3465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57300","ServerKey":"pl181","X":279,"Y":431},{"Bonus":0,"Continent":"K47","ID":57301,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57301","ServerKey":"pl181","X":730,"Y":498},{"Bonus":0,"Continent":"K66","ID":57302,"Name":"#149#","PlayerID":692803,"Points":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57302","ServerKey":"pl181","X":649,"Y":671},{"Bonus":0,"Continent":"K47","ID":57303,"Name":"102","PlayerID":7085502,"Points":1832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57303","ServerKey":"pl181","X":738,"Y":492},{"Bonus":0,"Continent":"K45","ID":57304,"Name":"Wioska Breisse","PlayerID":849093771,"Points":748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57304","ServerKey":"pl181","X":546,"Y":404},{"Bonus":0,"Continent":"K75","ID":57305,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2722,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57305","ServerKey":"pl181","X":551,"Y":728},{"Bonus":0,"Continent":"K57","ID":57306,"Name":"=124= Wioska barbarzyƄska","PlayerID":3781794,"Points":1500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57306","ServerKey":"pl181","X":717,"Y":573},{"Bonus":0,"Continent":"K42","ID":57307,"Name":"Wioska KrzysztofBerg95","PlayerID":699712243,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57307","ServerKey":"pl181","X":274,"Y":468},{"Bonus":0,"Continent":"K36","ID":57308,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57308","ServerKey":"pl181","X":634,"Y":310},{"Bonus":0,"Continent":"K33","ID":57309,"Name":"Lecymy DUR","PlayerID":6169408,"Points":411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57309","ServerKey":"pl181","X":341,"Y":329},{"Bonus":0,"Continent":"K25","ID":57310,"Name":"033. Syria","PlayerID":699799629,"Points":4842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57310","ServerKey":"pl181","X":524,"Y":265},{"Bonus":0,"Continent":"K57","ID":57311,"Name":"=125= Wioska barbarzyƄska","PlayerID":3781794,"Points":1327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57311","ServerKey":"pl181","X":727,"Y":571},{"Bonus":0,"Continent":"K63","ID":57312,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":2968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57312","ServerKey":"pl181","X":355,"Y":686},{"Bonus":0,"Continent":"K47","ID":57313,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57313","ServerKey":"pl181","X":730,"Y":459},{"Bonus":0,"Continent":"K66","ID":57314,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57314","ServerKey":"pl181","X":648,"Y":685},{"Bonus":0,"Continent":"K66","ID":57315,"Name":"nr8","PlayerID":364126,"Points":883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57315","ServerKey":"pl181","X":638,"Y":692},{"Bonus":0,"Continent":"K42","ID":57316,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57316","ServerKey":"pl181","X":276,"Y":422},{"Bonus":0,"Continent":"K42","ID":57317,"Name":"maƂy raj","PlayerID":699401083,"Points":2074,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57317","ServerKey":"pl181","X":272,"Y":447},{"Bonus":0,"Continent":"K62","ID":57318,"Name":"Wioska barbarzyƄska","PlayerID":699604515,"Points":135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57318","ServerKey":"pl181","X":298,"Y":606},{"Bonus":0,"Continent":"K47","ID":57319,"Name":"0130","PlayerID":698416970,"Points":439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57319","ServerKey":"pl181","X":714,"Y":416},{"Bonus":0,"Continent":"K63","ID":57320,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57320","ServerKey":"pl181","X":321,"Y":645},{"Bonus":0,"Continent":"K74","ID":57321,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57321","ServerKey":"pl181","X":402,"Y":713},{"Bonus":0,"Continent":"K75","ID":57322,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57322","ServerKey":"pl181","X":566,"Y":725},{"Bonus":0,"Continent":"K52","ID":57323,"Name":"New WorldA","PlayerID":849084005,"Points":669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57323","ServerKey":"pl181","X":267,"Y":517},{"Bonus":0,"Continent":"K57","ID":57324,"Name":"Wioska Hektor888.","PlayerID":8434727,"Points":886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57324","ServerKey":"pl181","X":723,"Y":590},{"Bonus":0,"Continent":"K25","ID":57325,"Name":"B010","PlayerID":699485250,"Points":3805,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57325","ServerKey":"pl181","X":529,"Y":274},{"Bonus":0,"Continent":"K36","ID":57326,"Name":"Wioska barbarzyƄska","PlayerID":6956104,"Points":2622,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57326","ServerKey":"pl181","X":682,"Y":364},{"Bonus":0,"Continent":"K63","ID":57327,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57327","ServerKey":"pl181","X":321,"Y":652},{"Bonus":0,"Continent":"K33","ID":57328,"Name":"Zaplecze Barba 043","PlayerID":699796330,"Points":1747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57328","ServerKey":"pl181","X":352,"Y":317},{"Bonus":0,"Continent":"K33","ID":57329,"Name":"Zaplecze Barba 044","PlayerID":699796330,"Points":1725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57329","ServerKey":"pl181","X":346,"Y":329},{"Bonus":0,"Continent":"K33","ID":57330,"Name":"Maszlug kolonia XXII","PlayerID":848977649,"Points":871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57330","ServerKey":"pl181","X":318,"Y":361},{"Bonus":0,"Continent":"K66","ID":57331,"Name":"Wioska 1edc","PlayerID":7007969,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57331","ServerKey":"pl181","X":698,"Y":623},{"Bonus":0,"Continent":"K66","ID":57332,"Name":"#135#","PlayerID":692803,"Points":2280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57332","ServerKey":"pl181","X":664,"Y":666},{"Bonus":0,"Continent":"K52","ID":57333,"Name":"Kombinat","PlayerID":699396429,"Points":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57333","ServerKey":"pl181","X":281,"Y":586},{"Bonus":0,"Continent":"K42","ID":57334,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57334","ServerKey":"pl181","X":274,"Y":436},{"Bonus":0,"Continent":"K62","ID":57335,"Name":"Wioska Kaczoland","PlayerID":6323735,"Points":222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57335","ServerKey":"pl181","X":289,"Y":608},{"Bonus":0,"Continent":"K74","ID":57336,"Name":"Wioska barbarzyƄska","PlayerID":9037756,"Points":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57336","ServerKey":"pl181","X":444,"Y":727},{"Bonus":0,"Continent":"K42","ID":57337,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57337","ServerKey":"pl181","X":269,"Y":459},{"Bonus":0,"Continent":"K47","ID":57338,"Name":"[207]","PlayerID":8000875,"Points":1890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57338","ServerKey":"pl181","X":720,"Y":420},{"Bonus":0,"Continent":"K25","ID":57340,"Name":"B018","PlayerID":699485250,"Points":3604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57340","ServerKey":"pl181","X":531,"Y":268},{"Bonus":0,"Continent":"K57","ID":57341,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":2111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57341","ServerKey":"pl181","X":720,"Y":557},{"Bonus":0,"Continent":"K57","ID":57342,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":1030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57342","ServerKey":"pl181","X":730,"Y":502},{"Bonus":0,"Continent":"K47","ID":57343,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57343","ServerKey":"pl181","X":719,"Y":435},{"Bonus":0,"Continent":"K63","ID":57344,"Name":"O118","PlayerID":272173,"Points":6577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57344","ServerKey":"pl181","X":311,"Y":636},{"Bonus":0,"Continent":"K25","ID":57345,"Name":"North 057","PlayerID":849064752,"Points":5186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57345","ServerKey":"pl181","X":528,"Y":266},{"Bonus":0,"Continent":"K57","ID":57346,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57346","ServerKey":"pl181","X":713,"Y":578},{"Bonus":0,"Continent":"K42","ID":57347,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57347","ServerKey":"pl181","X":271,"Y":454},{"Bonus":0,"Continent":"K73","ID":57348,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57348","ServerKey":"pl181","X":392,"Y":701},{"Bonus":0,"Continent":"K52","ID":57349,"Name":"008","PlayerID":698356304,"Points":799,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57349","ServerKey":"pl181","X":263,"Y":507},{"Bonus":0,"Continent":"K52","ID":57350,"Name":"Zzz 12 trochę daleko","PlayerID":849084740,"Points":645,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57350","ServerKey":"pl181","X":282,"Y":581},{"Bonus":0,"Continent":"K74","ID":57351,"Name":"New World","PlayerID":698152377,"Points":6538,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57351","ServerKey":"pl181","X":410,"Y":718},{"Bonus":0,"Continent":"K63","ID":57353,"Name":"001::","PlayerID":699730998,"Points":1723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57353","ServerKey":"pl181","X":352,"Y":685},{"Bonus":0,"Continent":"K47","ID":57354,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57354","ServerKey":"pl181","X":732,"Y":449},{"Bonus":0,"Continent":"K42","ID":57355,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57355","ServerKey":"pl181","X":269,"Y":482},{"Bonus":0,"Continent":"K52","ID":57357,"Name":"New WorldA","PlayerID":849084005,"Points":1398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57357","ServerKey":"pl181","X":273,"Y":538},{"Bonus":0,"Continent":"K25","ID":57358,"Name":"North 065","PlayerID":849064752,"Points":5364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57358","ServerKey":"pl181","X":515,"Y":270},{"Bonus":0,"Continent":"K25","ID":57359,"Name":"North K25","PlayerID":699146580,"Points":1791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57359","ServerKey":"pl181","X":566,"Y":274},{"Bonus":0,"Continent":"K25","ID":57360,"Name":".achim.","PlayerID":6936607,"Points":1527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57360","ServerKey":"pl181","X":580,"Y":282},{"Bonus":0,"Continent":"K25","ID":57361,"Name":"PoznaƄ","PlayerID":699872401,"Points":3559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57361","ServerKey":"pl181","X":559,"Y":271},{"Bonus":0,"Continent":"K25","ID":57362,"Name":"PPF-06","PlayerID":1424656,"Points":3501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57362","ServerKey":"pl181","X":508,"Y":265},{"Bonus":0,"Continent":"K25","ID":57364,"Name":"001 Mordor","PlayerID":849100383,"Points":8846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57364","ServerKey":"pl181","X":521,"Y":263},{"Bonus":0,"Continent":"K47","ID":57365,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":3001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57365","ServerKey":"pl181","X":713,"Y":407},{"Bonus":0,"Continent":"K25","ID":57366,"Name":"Wioska gajawa","PlayerID":7781236,"Points":634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57366","ServerKey":"pl181","X":589,"Y":287},{"Bonus":2,"Continent":"K42","ID":57367,"Name":"009","PlayerID":698652171,"Points":2626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57367","ServerKey":"pl181","X":273,"Y":465},{"Bonus":0,"Continent":"K76","ID":57369,"Name":"Wioska wjadr0","PlayerID":699711334,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57369","ServerKey":"pl181","X":604,"Y":712},{"Bonus":0,"Continent":"K25","ID":57370,"Name":"PPF-08","PlayerID":1424656,"Points":3220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57370","ServerKey":"pl181","X":518,"Y":271},{"Bonus":0,"Continent":"K52","ID":57372,"Name":"009","PlayerID":698663855,"Points":4209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57372","ServerKey":"pl181","X":284,"Y":595},{"Bonus":0,"Continent":"K24","ID":57373,"Name":"Saran12","PlayerID":848937248,"Points":312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57373","ServerKey":"pl181","X":407,"Y":284},{"Bonus":0,"Continent":"K33","ID":57374,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57374","ServerKey":"pl181","X":305,"Y":376},{"Bonus":0,"Continent":"K25","ID":57375,"Name":"PPF-35","PlayerID":1424656,"Points":950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57375","ServerKey":"pl181","X":573,"Y":276},{"Bonus":0,"Continent":"K47","ID":57376,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57376","ServerKey":"pl181","X":733,"Y":496},{"Bonus":0,"Continent":"K26","ID":57377,"Name":"Flap","PlayerID":699098531,"Points":4031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57377","ServerKey":"pl181","X":607,"Y":290},{"Bonus":0,"Continent":"K57","ID":57378,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57378","ServerKey":"pl181","X":731,"Y":522},{"Bonus":0,"Continent":"K52","ID":57379,"Name":"New WorldA","PlayerID":849084005,"Points":1695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57379","ServerKey":"pl181","X":273,"Y":545},{"Bonus":0,"Continent":"K52","ID":57380,"Name":"Wioska barbarzyƄska","PlayerID":699396429,"Points":775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57380","ServerKey":"pl181","X":286,"Y":590},{"Bonus":0,"Continent":"K63","ID":57381,"Name":"44.","PlayerID":8665783,"Points":717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57381","ServerKey":"pl181","X":331,"Y":660},{"Bonus":0,"Continent":"K33","ID":57383,"Name":"Wioska barbarzyƄska","PlayerID":698364331,"Points":2031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57383","ServerKey":"pl181","X":318,"Y":353},{"Bonus":0,"Continent":"K36","ID":57384,"Name":"BaligrĂłd","PlayerID":848922958,"Points":1995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57384","ServerKey":"pl181","X":626,"Y":303},{"Bonus":0,"Continent":"K42","ID":57385,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57385","ServerKey":"pl181","X":288,"Y":416},{"Bonus":0,"Continent":"K63","ID":57386,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57386","ServerKey":"pl181","X":354,"Y":681},{"Bonus":0,"Continent":"K75","ID":57387,"Name":"bandzior na koƄcu","PlayerID":849065697,"Points":3533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57387","ServerKey":"pl181","X":506,"Y":738},{"Bonus":0,"Continent":"K33","ID":57388,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57388","ServerKey":"pl181","X":318,"Y":350},{"Bonus":0,"Continent":"K36","ID":57389,"Name":"Wioska barbarzyƄska","PlayerID":2976468,"Points":1551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57389","ServerKey":"pl181","X":681,"Y":359},{"Bonus":0,"Continent":"K36","ID":57390,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57390","ServerKey":"pl181","X":635,"Y":311},{"Bonus":0,"Continent":"K47","ID":57391,"Name":"Wioska1 barbarzyƄska","PlayerID":8459255,"Points":3628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57391","ServerKey":"pl181","X":710,"Y":412},{"Bonus":0,"Continent":"K57","ID":57392,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":4694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57392","ServerKey":"pl181","X":722,"Y":582},{"Bonus":0,"Continent":"K66","ID":57393,"Name":"#126#","PlayerID":692803,"Points":2684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57393","ServerKey":"pl181","X":654,"Y":669},{"Bonus":0,"Continent":"K53","ID":57394,"Name":"Wioska mlodyfacetkosmita","PlayerID":849081284,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57394","ServerKey":"pl181","X":333,"Y":593},{"Bonus":0,"Continent":"K25","ID":57395,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":1925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57395","ServerKey":"pl181","X":589,"Y":286},{"Bonus":0,"Continent":"K33","ID":57396,"Name":"Wioska Alchemika","PlayerID":849068108,"Points":705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57396","ServerKey":"pl181","X":342,"Y":325},{"Bonus":0,"Continent":"K52","ID":57397,"Name":"New WorldA","PlayerID":849084005,"Points":1108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57397","ServerKey":"pl181","X":267,"Y":532},{"Bonus":9,"Continent":"K33","ID":57398,"Name":"NOT*","PlayerID":9236866,"Points":8169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57398","ServerKey":"pl181","X":312,"Y":354},{"Bonus":0,"Continent":"K75","ID":57399,"Name":"-23-","PlayerID":849032414,"Points":3317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57399","ServerKey":"pl181","X":578,"Y":726},{"Bonus":1,"Continent":"K42","ID":57400,"Name":"Avanti!","PlayerID":698625834,"Points":2499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57400","ServerKey":"pl181","X":270,"Y":490},{"Bonus":0,"Continent":"K63","ID":57401,"Name":"O156","PlayerID":272173,"Points":1461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57401","ServerKey":"pl181","X":308,"Y":632},{"Bonus":0,"Continent":"K25","ID":57402,"Name":"002 Moria","PlayerID":849100383,"Points":3989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57402","ServerKey":"pl181","X":519,"Y":264},{"Bonus":0,"Continent":"K74","ID":57403,"Name":"New World","PlayerID":698152377,"Points":7584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57403","ServerKey":"pl181","X":427,"Y":722},{"Bonus":0,"Continent":"K66","ID":57404,"Name":"Wiadro22","PlayerID":8677963,"Points":1878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57404","ServerKey":"pl181","X":682,"Y":651},{"Bonus":0,"Continent":"K63","ID":57405,"Name":"Wioska WiedĆșma","PlayerID":849106698,"Points":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57405","ServerKey":"pl181","X":304,"Y":628},{"Bonus":0,"Continent":"K25","ID":57406,"Name":"North K25","PlayerID":699146580,"Points":1854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57406","ServerKey":"pl181","X":562,"Y":280},{"Bonus":0,"Continent":"K33","ID":57407,"Name":"001","PlayerID":1809943,"Points":867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57407","ServerKey":"pl181","X":316,"Y":395},{"Bonus":0,"Continent":"K25","ID":57408,"Name":"Wioska barbarzyƄska","PlayerID":699799629,"Points":2096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57408","ServerKey":"pl181","X":528,"Y":265},{"Bonus":0,"Continent":"K33","ID":57409,"Name":"Wioska","PlayerID":9185931,"Points":6060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57409","ServerKey":"pl181","X":303,"Y":371},{"Bonus":0,"Continent":"K24","ID":57410,"Name":"????","PlayerID":698489071,"Points":3126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57410","ServerKey":"pl181","X":489,"Y":268},{"Bonus":0,"Continent":"K42","ID":57411,"Name":"Wioska gall4","PlayerID":699598396,"Points":1178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57411","ServerKey":"pl181","X":268,"Y":475},{"Bonus":3,"Continent":"K24","ID":57412,"Name":"005","PlayerID":699562874,"Points":4362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57412","ServerKey":"pl181","X":465,"Y":271},{"Bonus":0,"Continent":"K36","ID":57413,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57413","ServerKey":"pl181","X":655,"Y":333},{"Bonus":0,"Continent":"K57","ID":57414,"Name":"Alamo4","PlayerID":2723244,"Points":1856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57414","ServerKey":"pl181","X":714,"Y":578},{"Bonus":0,"Continent":"K26","ID":57415,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57415","ServerKey":"pl181","X":604,"Y":289},{"Bonus":0,"Continent":"K47","ID":57416,"Name":"076. Wioska barbarzyƄska","PlayerID":7494497,"Points":4737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57416","ServerKey":"pl181","X":729,"Y":464},{"Bonus":0,"Continent":"K42","ID":57417,"Name":"@@2","PlayerID":849113546,"Points":1316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57417","ServerKey":"pl181","X":266,"Y":499},{"Bonus":0,"Continent":"K62","ID":57418,"Name":"Wioska Deylor","PlayerID":849032741,"Points":453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57418","ServerKey":"pl181","X":291,"Y":605},{"Bonus":0,"Continent":"K33","ID":57419,"Name":"WB41","PlayerID":356642,"Points":1037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57419","ServerKey":"pl181","X":302,"Y":368},{"Bonus":0,"Continent":"K23","ID":57420,"Name":"Wioska Baat","PlayerID":699709160,"Points":872,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57420","ServerKey":"pl181","X":397,"Y":298},{"Bonus":0,"Continent":"K57","ID":57421,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":2661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57421","ServerKey":"pl181","X":724,"Y":550},{"Bonus":0,"Continent":"K33","ID":57422,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57422","ServerKey":"pl181","X":309,"Y":365},{"Bonus":0,"Continent":"K42","ID":57423,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57423","ServerKey":"pl181","X":275,"Y":446},{"Bonus":2,"Continent":"K63","ID":57424,"Name":"Osada koczownikĂłw","PlayerID":8877156,"Points":5637,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57424","ServerKey":"pl181","X":317,"Y":645},{"Bonus":0,"Continent":"K33","ID":57425,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57425","ServerKey":"pl181","X":349,"Y":321},{"Bonus":0,"Continent":"K65","ID":57426,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57426","ServerKey":"pl181","X":574,"Y":601},{"Bonus":0,"Continent":"K23","ID":57427,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57427","ServerKey":"pl181","X":384,"Y":294},{"Bonus":0,"Continent":"K42","ID":57428,"Name":"Wioska barbarzyƄska","PlayerID":849095814,"Points":589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57428","ServerKey":"pl181","X":270,"Y":474},{"Bonus":0,"Continent":"K63","ID":57429,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":3036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57429","ServerKey":"pl181","X":352,"Y":682},{"Bonus":0,"Continent":"K42","ID":57430,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3850,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57430","ServerKey":"pl181","X":282,"Y":422},{"Bonus":0,"Continent":"K24","ID":57431,"Name":"Wioska b 003","PlayerID":6343784,"Points":2032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57431","ServerKey":"pl181","X":423,"Y":277},{"Bonus":0,"Continent":"K74","ID":57432,"Name":"New World","PlayerID":698152377,"Points":4933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57432","ServerKey":"pl181","X":414,"Y":716},{"Bonus":0,"Continent":"K74","ID":57433,"Name":"New World","PlayerID":698152377,"Points":4110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57433","ServerKey":"pl181","X":422,"Y":714},{"Bonus":0,"Continent":"K47","ID":57434,"Name":"068.","PlayerID":849094609,"Points":1155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57434","ServerKey":"pl181","X":706,"Y":466},{"Bonus":0,"Continent":"K63","ID":57435,"Name":"Madagascar","PlayerID":7707390,"Points":6861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57435","ServerKey":"pl181","X":322,"Y":659},{"Bonus":0,"Continent":"K67","ID":57436,"Name":"K67 20","PlayerID":698867483,"Points":2449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57436","ServerKey":"pl181","X":705,"Y":611},{"Bonus":0,"Continent":"K57","ID":57437,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57437","ServerKey":"pl181","X":722,"Y":551},{"Bonus":0,"Continent":"K52","ID":57438,"Name":"...::181 13::...","PlayerID":699641777,"Points":1830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57438","ServerKey":"pl181","X":272,"Y":510},{"Bonus":2,"Continent":"K36","ID":57439,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57439","ServerKey":"pl181","X":624,"Y":301},{"Bonus":0,"Continent":"K66","ID":57440,"Name":"*01*","PlayerID":1284796,"Points":681,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57440","ServerKey":"pl181","X":685,"Y":632},{"Bonus":0,"Continent":"K24","ID":57441,"Name":"PóƂ 1","PlayerID":849096310,"Points":1280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57441","ServerKey":"pl181","X":438,"Y":279},{"Bonus":0,"Continent":"K63","ID":57442,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":1242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57442","ServerKey":"pl181","X":363,"Y":681},{"Bonus":0,"Continent":"K74","ID":57443,"Name":"R 054","PlayerID":699195358,"Points":1815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57443","ServerKey":"pl181","X":488,"Y":736},{"Bonus":0,"Continent":"K36","ID":57444,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57444","ServerKey":"pl181","X":616,"Y":300},{"Bonus":0,"Continent":"K33","ID":57445,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57445","ServerKey":"pl181","X":310,"Y":364},{"Bonus":0,"Continent":"K33","ID":57446,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57446","ServerKey":"pl181","X":318,"Y":359},{"Bonus":0,"Continent":"K63","ID":57447,"Name":"Oaza","PlayerID":2725721,"Points":402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57447","ServerKey":"pl181","X":348,"Y":669},{"Bonus":0,"Continent":"K74","ID":57448,"Name":"New World","PlayerID":698152377,"Points":4752,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57448","ServerKey":"pl181","X":404,"Y":706},{"Bonus":0,"Continent":"K75","ID":57449,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57449","ServerKey":"pl181","X":546,"Y":730},{"Bonus":0,"Continent":"K42","ID":57450,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57450","ServerKey":"pl181","X":285,"Y":408},{"Bonus":0,"Continent":"K25","ID":57451,"Name":"Wioska Tabaluga1922","PlayerID":848950255,"Points":871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57451","ServerKey":"pl181","X":501,"Y":263},{"Bonus":0,"Continent":"K36","ID":57452,"Name":"Ć»ywioƂ","PlayerID":699875213,"Points":281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57452","ServerKey":"pl181","X":680,"Y":356},{"Bonus":0,"Continent":"K36","ID":57453,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":1584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57453","ServerKey":"pl181","X":693,"Y":379},{"Bonus":0,"Continent":"K57","ID":57454,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":3232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57454","ServerKey":"pl181","X":720,"Y":576},{"Bonus":1,"Continent":"K63","ID":57455,"Name":"04Osada koczownikĂłw","PlayerID":699704542,"Points":8300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57455","ServerKey":"pl181","X":362,"Y":690},{"Bonus":0,"Continent":"K24","ID":57457,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":2381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57457","ServerKey":"pl181","X":467,"Y":271},{"Bonus":0,"Continent":"K25","ID":57458,"Name":"097 Wioska barbarzyƄska","PlayerID":699854484,"Points":4845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57458","ServerKey":"pl181","X":541,"Y":270},{"Bonus":0,"Continent":"K63","ID":57460,"Name":"O119","PlayerID":272173,"Points":6103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57460","ServerKey":"pl181","X":306,"Y":635},{"Bonus":0,"Continent":"K24","ID":57461,"Name":"Zęby Smoka","PlayerID":849037354,"Points":5804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57461","ServerKey":"pl181","X":412,"Y":281},{"Bonus":4,"Continent":"K26","ID":57462,"Name":"XDX","PlayerID":699098531,"Points":3743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57462","ServerKey":"pl181","X":614,"Y":298},{"Bonus":0,"Continent":"K23","ID":57464,"Name":"011","PlayerID":699694284,"Points":4620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57464","ServerKey":"pl181","X":394,"Y":288},{"Bonus":0,"Continent":"K57","ID":57466,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57466","ServerKey":"pl181","X":736,"Y":508},{"Bonus":0,"Continent":"K42","ID":57468,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57468","ServerKey":"pl181","X":277,"Y":424},{"Bonus":0,"Continent":"K74","ID":57469,"Name":"New World","PlayerID":698152377,"Points":2640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57469","ServerKey":"pl181","X":416,"Y":723},{"Bonus":0,"Continent":"K33","ID":57470,"Name":"Kiedyƛ Wielki Wojownik","PlayerID":8632462,"Points":1121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57470","ServerKey":"pl181","X":328,"Y":351},{"Bonus":2,"Continent":"K37","ID":57471,"Name":"031","PlayerID":849091105,"Points":7400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57471","ServerKey":"pl181","X":704,"Y":399},{"Bonus":0,"Continent":"K76","ID":57472,"Name":"Wioska","PlayerID":849113078,"Points":1402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57472","ServerKey":"pl181","X":603,"Y":703},{"Bonus":0,"Continent":"K75","ID":57473,"Name":"!Wioska barbarzyƄska 22","PlayerID":8779575,"Points":3352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57473","ServerKey":"pl181","X":583,"Y":721},{"Bonus":0,"Continent":"K26","ID":57474,"Name":"Wioska pepus1971","PlayerID":699238678,"Points":3441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57474","ServerKey":"pl181","X":607,"Y":289},{"Bonus":0,"Continent":"K66","ID":57475,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57475","ServerKey":"pl181","X":647,"Y":686},{"Bonus":0,"Continent":"K36","ID":57476,"Name":"magazyn PP xxx","PlayerID":849111196,"Points":1616,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57476","ServerKey":"pl181","X":664,"Y":338},{"Bonus":0,"Continent":"K42","ID":57477,"Name":"Wioska mysza","PlayerID":849110852,"Points":433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57477","ServerKey":"pl181","X":274,"Y":478},{"Bonus":0,"Continent":"K63","ID":57478,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57478","ServerKey":"pl181","X":317,"Y":650},{"Bonus":0,"Continent":"K74","ID":57479,"Name":"Wioska Trzepak7","PlayerID":849103237,"Points":249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57479","ServerKey":"pl181","X":405,"Y":712},{"Bonus":0,"Continent":"K24","ID":57480,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":1281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57480","ServerKey":"pl181","X":460,"Y":275},{"Bonus":0,"Continent":"K33","ID":57481,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57481","ServerKey":"pl181","X":300,"Y":377},{"Bonus":0,"Continent":"K66","ID":57482,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":1792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57482","ServerKey":"pl181","X":626,"Y":693},{"Bonus":0,"Continent":"K24","ID":57483,"Name":"Wioska Mlody165","PlayerID":849113055,"Points":2293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57483","ServerKey":"pl181","X":471,"Y":270},{"Bonus":0,"Continent":"K74","ID":57485,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57485","ServerKey":"pl181","X":403,"Y":706},{"Bonus":0,"Continent":"K75","ID":57486,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":3671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57486","ServerKey":"pl181","X":547,"Y":724},{"Bonus":0,"Continent":"K32","ID":57487,"Name":"Wioska Astecki","PlayerID":849112733,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57487","ServerKey":"pl181","X":291,"Y":394},{"Bonus":0,"Continent":"K25","ID":57488,"Name":"PPF-13","PlayerID":1424656,"Points":3030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57488","ServerKey":"pl181","X":510,"Y":262},{"Bonus":0,"Continent":"K25","ID":57490,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57490","ServerKey":"pl181","X":592,"Y":286},{"Bonus":0,"Continent":"K52","ID":57491,"Name":"009","PlayerID":698663855,"Points":4787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57491","ServerKey":"pl181","X":286,"Y":592},{"Bonus":0,"Continent":"K57","ID":57493,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57493","ServerKey":"pl181","X":732,"Y":518},{"Bonus":0,"Continent":"K37","ID":57494,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57494","ServerKey":"pl181","X":706,"Y":393},{"Bonus":0,"Continent":"K36","ID":57495,"Name":"Wioska barbarzyƄska","PlayerID":849102068,"Points":1439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57495","ServerKey":"pl181","X":641,"Y":319},{"Bonus":2,"Continent":"K23","ID":57496,"Name":"010","PlayerID":699694284,"Points":5427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57496","ServerKey":"pl181","X":397,"Y":288},{"Bonus":0,"Continent":"K57","ID":57497,"Name":"Wioska xmox","PlayerID":6822085,"Points":657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57497","ServerKey":"pl181","X":722,"Y":571},{"Bonus":0,"Continent":"K37","ID":57498,"Name":"Sony 912","PlayerID":1415009,"Points":3143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57498","ServerKey":"pl181","X":705,"Y":392},{"Bonus":0,"Continent":"K33","ID":57499,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":4533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57499","ServerKey":"pl181","X":362,"Y":317},{"Bonus":6,"Continent":"K63","ID":57500,"Name":"O160","PlayerID":272173,"Points":810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57500","ServerKey":"pl181","X":313,"Y":645},{"Bonus":0,"Continent":"K36","ID":57502,"Name":"Wioska mrugowal","PlayerID":849104474,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57502","ServerKey":"pl181","X":691,"Y":373},{"Bonus":0,"Continent":"K67","ID":57503,"Name":"2250zzz04","PlayerID":3986807,"Points":526,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57503","ServerKey":"pl181","X":708,"Y":602},{"Bonus":0,"Continent":"K63","ID":57505,"Name":"#002 Las Vegas","PlayerID":849101276,"Points":1188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57505","ServerKey":"pl181","X":331,"Y":666},{"Bonus":0,"Continent":"K33","ID":57506,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57506","ServerKey":"pl181","X":377,"Y":308},{"Bonus":0,"Continent":"K74","ID":57507,"Name":"Wioska rafi041072","PlayerID":1511101,"Points":559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57507","ServerKey":"pl181","X":416,"Y":722},{"Bonus":0,"Continent":"K24","ID":57508,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57508","ServerKey":"pl181","X":443,"Y":270},{"Bonus":0,"Continent":"K24","ID":57509,"Name":"????","PlayerID":698489071,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57509","ServerKey":"pl181","X":484,"Y":272},{"Bonus":0,"Continent":"K52","ID":57511,"Name":"Pan Pączek","PlayerID":849105417,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57511","ServerKey":"pl181","X":271,"Y":508},{"Bonus":0,"Continent":"K25","ID":57512,"Name":"PPF-07","PlayerID":1424656,"Points":3196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57512","ServerKey":"pl181","X":510,"Y":265},{"Bonus":0,"Continent":"K52","ID":57513,"Name":"Wioska Koc Mƛciwy","PlayerID":849083725,"Points":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57513","ServerKey":"pl181","X":279,"Y":573},{"Bonus":0,"Continent":"K24","ID":57514,"Name":"221...NORTH","PlayerID":6920960,"Points":2092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57514","ServerKey":"pl181","X":431,"Y":281},{"Bonus":0,"Continent":"K24","ID":57515,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57515","ServerKey":"pl181","X":425,"Y":277},{"Bonus":0,"Continent":"K33","ID":57516,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":3172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57516","ServerKey":"pl181","X":356,"Y":319},{"Bonus":0,"Continent":"K47","ID":57517,"Name":"Wioska Piotr-Wielki2","PlayerID":849110021,"Points":2286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57517","ServerKey":"pl181","X":727,"Y":432},{"Bonus":0,"Continent":"K74","ID":57518,"Name":"New World","PlayerID":698152377,"Points":5026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57518","ServerKey":"pl181","X":408,"Y":716},{"Bonus":0,"Continent":"K47","ID":57519,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":2597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57519","ServerKey":"pl181","X":728,"Y":436},{"Bonus":0,"Continent":"K32","ID":57521,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57521","ServerKey":"pl181","X":285,"Y":397},{"Bonus":0,"Continent":"K24","ID":57522,"Name":"Gwenville 016","PlayerID":848986638,"Points":510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57522","ServerKey":"pl181","X":455,"Y":271},{"Bonus":0,"Continent":"K24","ID":57523,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57523","ServerKey":"pl181","X":466,"Y":264},{"Bonus":0,"Continent":"K24","ID":57524,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":3340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57524","ServerKey":"pl181","X":483,"Y":263},{"Bonus":0,"Continent":"K25","ID":57525,"Name":"Flap","PlayerID":699098531,"Points":4572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57525","ServerKey":"pl181","X":597,"Y":283},{"Bonus":0,"Continent":"K33","ID":57526,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57526","ServerKey":"pl181","X":308,"Y":368},{"Bonus":0,"Continent":"K67","ID":57527,"Name":"Wioska 088","PlayerID":848971079,"Points":5764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57527","ServerKey":"pl181","X":715,"Y":600},{"Bonus":0,"Continent":"K35","ID":57528,"Name":"Nibylandia","PlayerID":849110711,"Points":765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57528","ServerKey":"pl181","X":555,"Y":344},{"Bonus":0,"Continent":"K52","ID":57530,"Name":"C0311","PlayerID":8841266,"Points":2469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57530","ServerKey":"pl181","X":272,"Y":551},{"Bonus":0,"Continent":"K47","ID":57531,"Name":"001","PlayerID":849078498,"Points":6070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57531","ServerKey":"pl181","X":732,"Y":482},{"Bonus":0,"Continent":"K57","ID":57532,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57532","ServerKey":"pl181","X":735,"Y":505},{"Bonus":0,"Continent":"K75","ID":57533,"Name":"026","PlayerID":698996782,"Points":2953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57533","ServerKey":"pl181","X":529,"Y":719},{"Bonus":0,"Continent":"K47","ID":57534,"Name":"Kami 2","PlayerID":849002796,"Points":1982,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57534","ServerKey":"pl181","X":736,"Y":476},{"Bonus":0,"Continent":"K52","ID":57535,"Name":"Wioska Raissa","PlayerID":699336679,"Points":499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57535","ServerKey":"pl181","X":273,"Y":510},{"Bonus":0,"Continent":"K74","ID":57536,"Name":"Snippet FR","PlayerID":849004274,"Points":5968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57536","ServerKey":"pl181","X":482,"Y":734},{"Bonus":0,"Continent":"K66","ID":57537,"Name":"Sony 911","PlayerID":1415009,"Points":1510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57537","ServerKey":"pl181","X":678,"Y":646},{"Bonus":0,"Continent":"K25","ID":57538,"Name":".achim.","PlayerID":6936607,"Points":1302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57538","ServerKey":"pl181","X":575,"Y":283},{"Bonus":0,"Continent":"K25","ID":57539,"Name":"North 080","PlayerID":849064752,"Points":3055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57539","ServerKey":"pl181","X":516,"Y":271},{"Bonus":0,"Continent":"K63","ID":57540,"Name":"Wioska telimena","PlayerID":699037086,"Points":5523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57540","ServerKey":"pl181","X":306,"Y":633},{"Bonus":0,"Continent":"K75","ID":57541,"Name":"+.75000...-2","PlayerID":8320319,"Points":4256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57541","ServerKey":"pl181","X":546,"Y":727},{"Bonus":0,"Continent":"K25","ID":57542,"Name":"B017","PlayerID":699485250,"Points":3779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57542","ServerKey":"pl181","X":529,"Y":268},{"Bonus":0,"Continent":"K66","ID":57543,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57543","ServerKey":"pl181","X":661,"Y":676},{"Bonus":0,"Continent":"K36","ID":57544,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57544","ServerKey":"pl181","X":680,"Y":354},{"Bonus":4,"Continent":"K25","ID":57545,"Name":"North 066","PlayerID":849064752,"Points":5695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57545","ServerKey":"pl181","X":511,"Y":272},{"Bonus":1,"Continent":"K47","ID":57547,"Name":"A#038","PlayerID":2065730,"Points":8661,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57547","ServerKey":"pl181","X":734,"Y":480},{"Bonus":0,"Continent":"K33","ID":57549,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":3535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57549","ServerKey":"pl181","X":369,"Y":310},{"Bonus":0,"Continent":"K36","ID":57550,"Name":"kamilkaze135 #18","PlayerID":699705601,"Points":1592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57550","ServerKey":"pl181","X":689,"Y":372},{"Bonus":0,"Continent":"K63","ID":57551,"Name":"sw 181","PlayerID":100452,"Points":2927,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57551","ServerKey":"pl181","X":360,"Y":683},{"Bonus":0,"Continent":"K66","ID":57552,"Name":"Wioska M1","PlayerID":6046368,"Points":2405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57552","ServerKey":"pl181","X":696,"Y":606},{"Bonus":0,"Continent":"K66","ID":57553,"Name":"117. Archipelag PoƂudniowy","PlayerID":8337151,"Points":2076,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57553","ServerKey":"pl181","X":694,"Y":625},{"Bonus":0,"Continent":"K47","ID":57555,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57555","ServerKey":"pl181","X":732,"Y":499},{"Bonus":0,"Continent":"K66","ID":57556,"Name":"Sony 911","PlayerID":1415009,"Points":2731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57556","ServerKey":"pl181","X":673,"Y":663},{"Bonus":0,"Continent":"K47","ID":57557,"Name":"086. Wioska barbarzyƄska","PlayerID":7494497,"Points":2939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57557","ServerKey":"pl181","X":735,"Y":466},{"Bonus":0,"Continent":"K24","ID":57558,"Name":"Wioska misiu12193","PlayerID":9129046,"Points":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57558","ServerKey":"pl181","X":433,"Y":282},{"Bonus":0,"Continent":"K42","ID":57559,"Name":"Qqqqqq","PlayerID":848981726,"Points":1282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57559","ServerKey":"pl181","X":272,"Y":470},{"Bonus":0,"Continent":"K66","ID":57560,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57560","ServerKey":"pl181","X":645,"Y":680},{"Bonus":0,"Continent":"K24","ID":57561,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":3405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57561","ServerKey":"pl181","X":460,"Y":265},{"Bonus":0,"Continent":"K42","ID":57562,"Name":"ZK Wronki","PlayerID":698279195,"Points":1595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57562","ServerKey":"pl181","X":272,"Y":437},{"Bonus":0,"Continent":"K33","ID":57563,"Name":"NOT?","PlayerID":9236866,"Points":3067,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57563","ServerKey":"pl181","X":311,"Y":360},{"Bonus":0,"Continent":"K25","ID":57564,"Name":"PPF-43","PlayerID":1424656,"Points":642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57564","ServerKey":"pl181","X":586,"Y":281},{"Bonus":0,"Continent":"K33","ID":57565,"Name":"kurwistaw8808","PlayerID":848963521,"Points":1633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57565","ServerKey":"pl181","X":369,"Y":305},{"Bonus":4,"Continent":"K57","ID":57566,"Name":"018","PlayerID":6160655,"Points":2600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57566","ServerKey":"pl181","X":713,"Y":591},{"Bonus":0,"Continent":"K26","ID":57567,"Name":"Wioska DZ4L4","PlayerID":849100496,"Points":128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57567","ServerKey":"pl181","X":621,"Y":298},{"Bonus":0,"Continent":"K33","ID":57568,"Name":"Hi Bady","PlayerID":848943145,"Points":3442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57568","ServerKey":"pl181","X":303,"Y":375},{"Bonus":0,"Continent":"K52","ID":57569,"Name":"Na SsSskraju","PlayerID":1536625,"Points":653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57569","ServerKey":"pl181","X":275,"Y":572},{"Bonus":1,"Continent":"K25","ID":57570,"Name":"North 019","PlayerID":849064752,"Points":6899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57570","ServerKey":"pl181","X":517,"Y":270},{"Bonus":0,"Continent":"K57","ID":57571,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":1593,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57571","ServerKey":"pl181","X":725,"Y":560},{"Bonus":4,"Continent":"K62","ID":57572,"Name":"O110","PlayerID":272173,"Points":7961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57572","ServerKey":"pl181","X":295,"Y":612},{"Bonus":0,"Continent":"K66","ID":57573,"Name":"#125#","PlayerID":692803,"Points":2877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57573","ServerKey":"pl181","X":651,"Y":672},{"Bonus":0,"Continent":"K33","ID":57574,"Name":"Wow23","PlayerID":699730714,"Points":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57574","ServerKey":"pl181","X":351,"Y":328},{"Bonus":0,"Continent":"K42","ID":57575,"Name":"GrochĂłw","PlayerID":699854312,"Points":449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57575","ServerKey":"pl181","X":284,"Y":408},{"Bonus":0,"Continent":"K23","ID":57576,"Name":"Wioska chopek1","PlayerID":8855679,"Points":2902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57576","ServerKey":"pl181","X":384,"Y":291},{"Bonus":0,"Continent":"K66","ID":57577,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":2984,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57577","ServerKey":"pl181","X":693,"Y":629},{"Bonus":2,"Continent":"K24","ID":57578,"Name":"DuĆŒa osada","PlayerID":3411571,"Points":7706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57578","ServerKey":"pl181","X":419,"Y":282},{"Bonus":0,"Continent":"K52","ID":57579,"Name":"Wioska graf72","PlayerID":849109885,"Points":1778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57579","ServerKey":"pl181","X":286,"Y":583},{"Bonus":0,"Continent":"K57","ID":57580,"Name":"=126= Wioska barbarzyƄska","PlayerID":3781794,"Points":1078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57580","ServerKey":"pl181","X":729,"Y":568},{"Bonus":0,"Continent":"K47","ID":57581,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57581","ServerKey":"pl181","X":735,"Y":479},{"Bonus":0,"Continent":"K66","ID":57582,"Name":"nowa 5","PlayerID":699372829,"Points":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57582","ServerKey":"pl181","X":630,"Y":689},{"Bonus":0,"Continent":"K25","ID":57583,"Name":"Wioska Somalija","PlayerID":699794286,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57583","ServerKey":"pl181","X":560,"Y":274},{"Bonus":0,"Continent":"K63","ID":57584,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":2677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57584","ServerKey":"pl181","X":362,"Y":682},{"Bonus":0,"Continent":"K63","ID":57585,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57585","ServerKey":"pl181","X":360,"Y":687},{"Bonus":0,"Continent":"K74","ID":57586,"Name":"028 - Budowanko!","PlayerID":7540891,"Points":5063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57586","ServerKey":"pl181","X":473,"Y":736},{"Bonus":0,"Continent":"K24","ID":57587,"Name":"North 095","PlayerID":849064752,"Points":4252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57587","ServerKey":"pl181","X":496,"Y":263},{"Bonus":0,"Continent":"K33","ID":57588,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":5058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57588","ServerKey":"pl181","X":366,"Y":308},{"Bonus":0,"Continent":"K32","ID":57589,"Name":"NieLubieRudzielcĂłw","PlayerID":849076515,"Points":312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57589","ServerKey":"pl181","X":296,"Y":394},{"Bonus":0,"Continent":"K63","ID":57590,"Name":"38.","PlayerID":8665783,"Points":1213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57590","ServerKey":"pl181","X":330,"Y":668},{"Bonus":0,"Continent":"K66","ID":57591,"Name":"Wioska MistycznaParowa","PlayerID":9096738,"Points":188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57591","ServerKey":"pl181","X":636,"Y":674},{"Bonus":0,"Continent":"K42","ID":57592,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57592","ServerKey":"pl181","X":272,"Y":446},{"Bonus":0,"Continent":"K47","ID":57593,"Name":"Wioska barbarzyƄska","PlayerID":699722599,"Points":3543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57593","ServerKey":"pl181","X":712,"Y":415},{"Bonus":0,"Continent":"K25","ID":57594,"Name":"North 067","PlayerID":849064752,"Points":5248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57594","ServerKey":"pl181","X":511,"Y":262},{"Bonus":0,"Continent":"K42","ID":57595,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57595","ServerKey":"pl181","X":274,"Y":427},{"Bonus":0,"Continent":"K52","ID":57596,"Name":"Wyspa 027","PlayerID":225023,"Points":1201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57596","ServerKey":"pl181","X":280,"Y":577},{"Bonus":0,"Continent":"K24","ID":57599,"Name":"elo","PlayerID":849085160,"Points":494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57599","ServerKey":"pl181","X":430,"Y":276},{"Bonus":0,"Continent":"K25","ID":57600,"Name":"#042","PlayerID":849064614,"Points":1020,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57600","ServerKey":"pl181","X":556,"Y":272},{"Bonus":0,"Continent":"K62","ID":57601,"Name":"O102","PlayerID":272173,"Points":7647,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57601","ServerKey":"pl181","X":293,"Y":620},{"Bonus":0,"Continent":"K57","ID":57602,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57602","ServerKey":"pl181","X":734,"Y":535},{"Bonus":0,"Continent":"K67","ID":57603,"Name":"Wioska gracforfun","PlayerID":699751562,"Points":1158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57603","ServerKey":"pl181","X":704,"Y":624},{"Bonus":0,"Continent":"K76","ID":57604,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":2301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57604","ServerKey":"pl181","X":610,"Y":706},{"Bonus":0,"Continent":"K52","ID":57605,"Name":"[0292]","PlayerID":8630972,"Points":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57605","ServerKey":"pl181","X":271,"Y":504},{"Bonus":0,"Continent":"K42","ID":57606,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57606","ServerKey":"pl181","X":287,"Y":418},{"Bonus":0,"Continent":"K42","ID":57607,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57607","ServerKey":"pl181","X":267,"Y":460},{"Bonus":0,"Continent":"K63","ID":57608,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57608","ServerKey":"pl181","X":316,"Y":640},{"Bonus":0,"Continent":"K66","ID":57609,"Name":"Saragossa","PlayerID":747422,"Points":1138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57609","ServerKey":"pl181","X":649,"Y":674},{"Bonus":0,"Continent":"K74","ID":57610,"Name":"Domek Miniuka 04","PlayerID":699373225,"Points":2375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57610","ServerKey":"pl181","X":478,"Y":726},{"Bonus":0,"Continent":"K32","ID":57611,"Name":"Wioska Machoneyy","PlayerID":848949517,"Points":987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57611","ServerKey":"pl181","X":296,"Y":386},{"Bonus":0,"Continent":"K74","ID":57612,"Name":"R 051","PlayerID":699195358,"Points":2842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57612","ServerKey":"pl181","X":491,"Y":731},{"Bonus":0,"Continent":"K74","ID":57613,"Name":"New World","PlayerID":698152377,"Points":4783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57613","ServerKey":"pl181","X":409,"Y":714},{"Bonus":0,"Continent":"K47","ID":57614,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57614","ServerKey":"pl181","X":739,"Y":494},{"Bonus":0,"Continent":"K42","ID":57615,"Name":"Wioska ociek123","PlayerID":699860418,"Points":3037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57615","ServerKey":"pl181","X":269,"Y":470},{"Bonus":0,"Continent":"K66","ID":57616,"Name":"Wioska lukempire","PlayerID":9247737,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57616","ServerKey":"pl181","X":651,"Y":681},{"Bonus":0,"Continent":"K52","ID":57617,"Name":"Na SsSskraju","PlayerID":1536625,"Points":754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57617","ServerKey":"pl181","X":275,"Y":571},{"Bonus":0,"Continent":"K62","ID":57618,"Name":"Wioska Marcelinka","PlayerID":849060357,"Points":2198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57618","ServerKey":"pl181","X":298,"Y":611},{"Bonus":0,"Continent":"K75","ID":57619,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":3635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57619","ServerKey":"pl181","X":592,"Y":708},{"Bonus":0,"Continent":"K73","ID":57621,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57621","ServerKey":"pl181","X":384,"Y":707},{"Bonus":7,"Continent":"K66","ID":57622,"Name":"Nowe IMPERIUM 11 Warksztat","PlayerID":698353083,"Points":5299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57622","ServerKey":"pl181","X":621,"Y":699},{"Bonus":0,"Continent":"K52","ID":57623,"Name":"New WorldA","PlayerID":849084005,"Points":1112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57623","ServerKey":"pl181","X":266,"Y":516},{"Bonus":0,"Continent":"K42","ID":57624,"Name":"[0282]","PlayerID":8630972,"Points":3728,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57624","ServerKey":"pl181","X":266,"Y":498},{"Bonus":0,"Continent":"K33","ID":57625,"Name":"Wioska Sir SilverBaron","PlayerID":699678801,"Points":2632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57625","ServerKey":"pl181","X":316,"Y":350},{"Bonus":0,"Continent":"K63","ID":57626,"Name":"41.","PlayerID":8665783,"Points":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57626","ServerKey":"pl181","X":333,"Y":663},{"Bonus":0,"Continent":"K33","ID":57628,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57628","ServerKey":"pl181","X":306,"Y":366},{"Bonus":0,"Continent":"K57","ID":57629,"Name":"CastAway !039","PlayerID":9314079,"Points":1828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57629","ServerKey":"pl181","X":708,"Y":596},{"Bonus":0,"Continent":"K74","ID":57630,"Name":"Wioska rkot","PlayerID":699449946,"Points":3295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57630","ServerKey":"pl181","X":468,"Y":728},{"Bonus":0,"Continent":"K26","ID":57631,"Name":"Flap","PlayerID":699098531,"Points":3878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57631","ServerKey":"pl181","X":601,"Y":290},{"Bonus":0,"Continent":"K75","ID":57632,"Name":"Wioska KKS Rakieta","PlayerID":849066808,"Points":630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57632","ServerKey":"pl181","X":501,"Y":738},{"Bonus":0,"Continent":"K26","ID":57634,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57634","ServerKey":"pl181","X":613,"Y":290},{"Bonus":0,"Continent":"K66","ID":57635,"Name":"Sony 911","PlayerID":1415009,"Points":1295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57635","ServerKey":"pl181","X":685,"Y":652},{"Bonus":0,"Continent":"K36","ID":57637,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57637","ServerKey":"pl181","X":628,"Y":311},{"Bonus":0,"Continent":"K74","ID":57638,"Name":"080 - Budowanko!","PlayerID":7540891,"Points":542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57638","ServerKey":"pl181","X":498,"Y":737},{"Bonus":0,"Continent":"K52","ID":57639,"Name":"009","PlayerID":698663855,"Points":4787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57639","ServerKey":"pl181","X":287,"Y":594},{"Bonus":5,"Continent":"K42","ID":57640,"Name":"[0265]","PlayerID":8630972,"Points":3758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57640","ServerKey":"pl181","X":262,"Y":499},{"Bonus":0,"Continent":"K36","ID":57641,"Name":"Wioska barbarzyƄska","PlayerID":609384,"Points":835,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57641","ServerKey":"pl181","X":676,"Y":352},{"Bonus":0,"Continent":"K74","ID":57642,"Name":"R 052","PlayerID":699195358,"Points":2584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57642","ServerKey":"pl181","X":492,"Y":732},{"Bonus":0,"Continent":"K33","ID":57643,"Name":"Wioska Krukuu","PlayerID":699699422,"Points":1038,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57643","ServerKey":"pl181","X":371,"Y":312},{"Bonus":0,"Continent":"K75","ID":57644,"Name":"046 - Budowanko!","PlayerID":7540891,"Points":4540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57644","ServerKey":"pl181","X":566,"Y":728},{"Bonus":1,"Continent":"K36","ID":57645,"Name":"zk kryniu","PlayerID":849105232,"Points":1275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57645","ServerKey":"pl181","X":684,"Y":364},{"Bonus":0,"Continent":"K24","ID":57646,"Name":"????","PlayerID":698489071,"Points":3016,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57646","ServerKey":"pl181","X":455,"Y":268},{"Bonus":0,"Continent":"K47","ID":57647,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57647","ServerKey":"pl181","X":721,"Y":426},{"Bonus":0,"Continent":"K37","ID":57648,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57648","ServerKey":"pl181","X":708,"Y":398},{"Bonus":0,"Continent":"K57","ID":57649,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1565,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57649","ServerKey":"pl181","X":737,"Y":532},{"Bonus":0,"Continent":"K52","ID":57650,"Name":"Wioska Lord Ɓoszo","PlayerID":698207545,"Points":696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57650","ServerKey":"pl181","X":269,"Y":557},{"Bonus":0,"Continent":"K42","ID":57651,"Name":"Maryna 4","PlayerID":699650981,"Points":570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57651","ServerKey":"pl181","X":267,"Y":459},{"Bonus":0,"Continent":"K44","ID":57652,"Name":"Wioska szabla32","PlayerID":8128478,"Points":560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57652","ServerKey":"pl181","X":472,"Y":498},{"Bonus":1,"Continent":"K57","ID":57653,"Name":"A#041","PlayerID":2065730,"Points":6643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57653","ServerKey":"pl181","X":730,"Y":517},{"Bonus":0,"Continent":"K25","ID":57654,"Name":"PPF-48","PlayerID":1424656,"Points":359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57654","ServerKey":"pl181","X":552,"Y":267},{"Bonus":0,"Continent":"K42","ID":57655,"Name":"Avanti!","PlayerID":698625834,"Points":2239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57655","ServerKey":"pl181","X":271,"Y":482},{"Bonus":0,"Continent":"K57","ID":57656,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57656","ServerKey":"pl181","X":727,"Y":539},{"Bonus":0,"Continent":"K33","ID":57657,"Name":"Wioska30","PlayerID":699711926,"Points":1813,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57657","ServerKey":"pl181","X":330,"Y":345},{"Bonus":0,"Continent":"K33","ID":57658,"Name":"karmelon","PlayerID":849099804,"Points":2453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57658","ServerKey":"pl181","X":353,"Y":318},{"Bonus":0,"Continent":"K33","ID":57659,"Name":"adam","PlayerID":6618608,"Points":5300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57659","ServerKey":"pl181","X":337,"Y":330},{"Bonus":0,"Continent":"K62","ID":57660,"Name":"Wioska KozioƂ","PlayerID":849109966,"Points":344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57660","ServerKey":"pl181","X":293,"Y":615},{"Bonus":0,"Continent":"K33","ID":57661,"Name":"NOT?","PlayerID":9236866,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57661","ServerKey":"pl181","X":308,"Y":362},{"Bonus":0,"Continent":"K75","ID":57662,"Name":"taka malutka","PlayerID":6116940,"Points":2603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57662","ServerKey":"pl181","X":531,"Y":710},{"Bonus":0,"Continent":"K26","ID":57664,"Name":"Wioska","PlayerID":7140413,"Points":901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57664","ServerKey":"pl181","X":622,"Y":298},{"Bonus":0,"Continent":"K32","ID":57665,"Name":"hobbiton","PlayerID":698677650,"Points":656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57665","ServerKey":"pl181","X":289,"Y":395},{"Bonus":0,"Continent":"K33","ID":57666,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57666","ServerKey":"pl181","X":307,"Y":376},{"Bonus":3,"Continent":"K25","ID":57667,"Name":"032. Ateny","PlayerID":699799629,"Points":4427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57667","ServerKey":"pl181","X":523,"Y":264},{"Bonus":0,"Continent":"K52","ID":57669,"Name":"[0284]","PlayerID":8630972,"Points":3394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57669","ServerKey":"pl181","X":266,"Y":500},{"Bonus":0,"Continent":"K57","ID":57670,"Name":"CastAway #026","PlayerID":9314079,"Points":2465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57670","ServerKey":"pl181","X":716,"Y":596},{"Bonus":0,"Continent":"K75","ID":57671,"Name":"KASHYYYK 3","PlayerID":699383121,"Points":1121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57671","ServerKey":"pl181","X":573,"Y":721},{"Bonus":0,"Continent":"K47","ID":57672,"Name":"040","PlayerID":849091105,"Points":1769,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57672","ServerKey":"pl181","X":715,"Y":411},{"Bonus":0,"Continent":"K36","ID":57673,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57673","ServerKey":"pl181","X":667,"Y":333},{"Bonus":0,"Continent":"K47","ID":57674,"Name":"[837] Odludzie","PlayerID":848985692,"Points":4918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57674","ServerKey":"pl181","X":720,"Y":437},{"Bonus":0,"Continent":"K36","ID":57675,"Name":"Wioska barbarzyƄska","PlayerID":2976468,"Points":520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57675","ServerKey":"pl181","X":685,"Y":356},{"Bonus":0,"Continent":"K47","ID":57676,"Name":"095. Wioska barbarzyƄska","PlayerID":7494497,"Points":3217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57676","ServerKey":"pl181","X":727,"Y":469},{"Bonus":0,"Continent":"K76","ID":57677,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57677","ServerKey":"pl181","X":607,"Y":710},{"Bonus":0,"Continent":"K76","ID":57678,"Name":"o022","PlayerID":699189792,"Points":2540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57678","ServerKey":"pl181","X":631,"Y":700},{"Bonus":8,"Continent":"K37","ID":57679,"Name":"Grzejdas 3","PlayerID":849057764,"Points":3990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57679","ServerKey":"pl181","X":705,"Y":378},{"Bonus":0,"Continent":"K75","ID":57680,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":3196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57680","ServerKey":"pl181","X":575,"Y":716},{"Bonus":0,"Continent":"K66","ID":57681,"Name":"#163#","PlayerID":692803,"Points":1234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57681","ServerKey":"pl181","X":657,"Y":677},{"Bonus":0,"Continent":"K66","ID":57682,"Name":"057","PlayerID":699099811,"Points":572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57682","ServerKey":"pl181","X":683,"Y":636},{"Bonus":0,"Continent":"K66","ID":57683,"Name":"Wygwizdowa 015","PlayerID":698562644,"Points":505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57683","ServerKey":"pl181","X":662,"Y":662},{"Bonus":0,"Continent":"K74","ID":57684,"Name":"R 055","PlayerID":699195358,"Points":1032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57684","ServerKey":"pl181","X":491,"Y":732},{"Bonus":0,"Continent":"K57","ID":57685,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":7259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57685","ServerKey":"pl181","X":723,"Y":557},{"Bonus":0,"Continent":"K26","ID":57686,"Name":"Wioska ChoraĆŒy","PlayerID":849098374,"Points":4629,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57686","ServerKey":"pl181","X":607,"Y":288},{"Bonus":0,"Continent":"K74","ID":57687,"Name":"Resist And Bite!","PlayerID":699069151,"Points":2203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57687","ServerKey":"pl181","X":447,"Y":724},{"Bonus":0,"Continent":"K57","ID":57688,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57688","ServerKey":"pl181","X":724,"Y":575},{"Bonus":1,"Continent":"K42","ID":57689,"Name":"Wioska gall3","PlayerID":699598396,"Points":2607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57689","ServerKey":"pl181","X":267,"Y":476},{"Bonus":0,"Continent":"K26","ID":57690,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57690","ServerKey":"pl181","X":610,"Y":289},{"Bonus":0,"Continent":"K32","ID":57691,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":84,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57691","ServerKey":"pl181","X":288,"Y":389},{"Bonus":0,"Continent":"K33","ID":57692,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":475,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57692","ServerKey":"pl181","X":334,"Y":337},{"Bonus":0,"Continent":"K26","ID":57693,"Name":"Wioska barbarzyƄska","PlayerID":849037469,"Points":3743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57693","ServerKey":"pl181","X":618,"Y":295},{"Bonus":8,"Continent":"K24","ID":57694,"Name":"MaƂa osada","PlayerID":3411571,"Points":7740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57694","ServerKey":"pl181","X":417,"Y":277},{"Bonus":0,"Continent":"K74","ID":57695,"Name":"FP045","PlayerID":699605333,"Points":3885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57695","ServerKey":"pl181","X":460,"Y":731},{"Bonus":0,"Continent":"K33","ID":57696,"Name":"Wioska31","PlayerID":699711926,"Points":1784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57696","ServerKey":"pl181","X":330,"Y":340},{"Bonus":0,"Continent":"K62","ID":57697,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57697","ServerKey":"pl181","X":293,"Y":614},{"Bonus":0,"Continent":"K25","ID":57698,"Name":"098 Wioska barbarzyƄska","PlayerID":699854484,"Points":5145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57698","ServerKey":"pl181","X":541,"Y":275},{"Bonus":0,"Continent":"K47","ID":57699,"Name":"Wioska 181","PlayerID":2363165,"Points":447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57699","ServerKey":"pl181","X":733,"Y":490},{"Bonus":0,"Continent":"K37","ID":57700,"Name":"Sqn","PlayerID":699598425,"Points":2220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57700","ServerKey":"pl181","X":715,"Y":397},{"Bonus":7,"Continent":"K32","ID":57701,"Name":"WB05","PlayerID":356642,"Points":4508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57701","ServerKey":"pl181","X":298,"Y":384},{"Bonus":0,"Continent":"K66","ID":57702,"Name":"001","PlayerID":849111050,"Points":2601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57702","ServerKey":"pl181","X":661,"Y":665},{"Bonus":1,"Continent":"K62","ID":57703,"Name":"PSYHOSOCIAL","PlayerID":699774694,"Points":1461,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57703","ServerKey":"pl181","X":292,"Y":600},{"Bonus":0,"Continent":"K75","ID":57704,"Name":"Wioska EpSi1","PlayerID":6516085,"Points":925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57704","ServerKey":"pl181","X":589,"Y":716},{"Bonus":0,"Continent":"K57","ID":57705,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1056,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57705","ServerKey":"pl181","X":736,"Y":501},{"Bonus":0,"Continent":"K36","ID":57706,"Name":"Wioska Maja40","PlayerID":8483719,"Points":1856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57706","ServerKey":"pl181","X":670,"Y":349},{"Bonus":0,"Continent":"K75","ID":57707,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57707","ServerKey":"pl181","X":521,"Y":737},{"Bonus":0,"Continent":"K74","ID":57708,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57708","ServerKey":"pl181","X":401,"Y":705},{"Bonus":0,"Continent":"K42","ID":57709,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57709","ServerKey":"pl181","X":275,"Y":428},{"Bonus":0,"Continent":"K52","ID":57710,"Name":"C0332","PlayerID":8841266,"Points":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57710","ServerKey":"pl181","X":262,"Y":518},{"Bonus":0,"Continent":"K52","ID":57711,"Name":"Wioska barbarzyƄska","PlayerID":849013126,"Points":437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57711","ServerKey":"pl181","X":265,"Y":503},{"Bonus":0,"Continent":"K74","ID":57712,"Name":"KWB6","PlayerID":9003698,"Points":4357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57712","ServerKey":"pl181","X":448,"Y":728},{"Bonus":0,"Continent":"K75","ID":57713,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57713","ServerKey":"pl181","X":507,"Y":739},{"Bonus":5,"Continent":"K23","ID":57714,"Name":"132.Stradi","PlayerID":698365960,"Points":3869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57714","ServerKey":"pl181","X":396,"Y":293},{"Bonus":0,"Continent":"K33","ID":57715,"Name":"Praven","PlayerID":699716785,"Points":2273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57715","ServerKey":"pl181","X":344,"Y":331},{"Bonus":0,"Continent":"K36","ID":57716,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57716","ServerKey":"pl181","X":621,"Y":304},{"Bonus":0,"Continent":"K33","ID":57718,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":2351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57718","ServerKey":"pl181","X":329,"Y":334},{"Bonus":0,"Continent":"K47","ID":57719,"Name":"Kami 4","PlayerID":849002796,"Points":1478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57719","ServerKey":"pl181","X":734,"Y":472},{"Bonus":0,"Continent":"K57","ID":57721,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":1405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57721","ServerKey":"pl181","X":715,"Y":576},{"Bonus":0,"Continent":"K75","ID":57722,"Name":"King Arkadius 1","PlayerID":699812653,"Points":1082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57722","ServerKey":"pl181","X":542,"Y":731},{"Bonus":4,"Continent":"K52","ID":57723,"Name":"008","PlayerID":698663855,"Points":4787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57723","ServerKey":"pl181","X":290,"Y":595},{"Bonus":0,"Continent":"K75","ID":57724,"Name":"Wioska PiĆșdzichlapica","PlayerID":849038572,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57724","ServerKey":"pl181","X":533,"Y":737},{"Bonus":0,"Continent":"K74","ID":57725,"Name":"022 - Budowanko!","PlayerID":7540891,"Points":6109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57725","ServerKey":"pl181","X":478,"Y":730},{"Bonus":0,"Continent":"K47","ID":57727,"Name":"084. Wioska barbarzyƄska","PlayerID":7494497,"Points":3206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57727","ServerKey":"pl181","X":731,"Y":465},{"Bonus":0,"Continent":"K42","ID":57728,"Name":"65 barbarzyƄska","PlayerID":849018442,"Points":114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57728","ServerKey":"pl181","X":276,"Y":457},{"Bonus":0,"Continent":"K36","ID":57729,"Name":"030. elli38","PlayerID":2873154,"Points":4093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57729","ServerKey":"pl181","X":698,"Y":366},{"Bonus":2,"Continent":"K36","ID":57730,"Name":"Osada koczownikĂłw","PlayerID":7973893,"Points":5581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57730","ServerKey":"pl181","X":669,"Y":345},{"Bonus":0,"Continent":"K74","ID":57731,"Name":"Wioska Sir sernik","PlayerID":849113300,"Points":313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57731","ServerKey":"pl181","X":425,"Y":720},{"Bonus":0,"Continent":"K36","ID":57732,"Name":"Wioska real124","PlayerID":848956537,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57732","ServerKey":"pl181","X":624,"Y":306},{"Bonus":8,"Continent":"K25","ID":57733,"Name":"North 018","PlayerID":849064752,"Points":7895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57733","ServerKey":"pl181","X":516,"Y":265},{"Bonus":0,"Continent":"K74","ID":57734,"Name":"New World","PlayerID":698152377,"Points":3354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57734","ServerKey":"pl181","X":426,"Y":720},{"Bonus":0,"Continent":"K42","ID":57736,"Name":"Avanti!","PlayerID":698625834,"Points":2516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57736","ServerKey":"pl181","X":269,"Y":488},{"Bonus":0,"Continent":"K47","ID":57737,"Name":"Wioska KOSMACZ1","PlayerID":848926070,"Points":439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57737","ServerKey":"pl181","X":732,"Y":447},{"Bonus":0,"Continent":"K74","ID":57738,"Name":"New World","PlayerID":698152377,"Points":5467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57738","ServerKey":"pl181","X":417,"Y":722},{"Bonus":0,"Continent":"K36","ID":57739,"Name":"Wioska Ɓukasz80","PlayerID":1227022,"Points":1055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57739","ServerKey":"pl181","X":632,"Y":308},{"Bonus":0,"Continent":"K66","ID":57741,"Name":"Sony 911","PlayerID":1415009,"Points":2791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57741","ServerKey":"pl181","X":669,"Y":662},{"Bonus":7,"Continent":"K24","ID":57742,"Name":"No na pewno","PlayerID":699854830,"Points":596,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57742","ServerKey":"pl181","X":402,"Y":288},{"Bonus":0,"Continent":"K52","ID":57743,"Name":"Stryszawa City v9","PlayerID":699729211,"Points":483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57743","ServerKey":"pl181","X":264,"Y":538},{"Bonus":0,"Continent":"K32","ID":57744,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57744","ServerKey":"pl181","X":291,"Y":398},{"Bonus":0,"Continent":"K52","ID":57745,"Name":"WWWWWW","PlayerID":1095489,"Points":919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57745","ServerKey":"pl181","X":264,"Y":532},{"Bonus":0,"Continent":"K66","ID":57746,"Name":"#151#","PlayerID":692803,"Points":905,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57746","ServerKey":"pl181","X":656,"Y":675},{"Bonus":0,"Continent":"K74","ID":57747,"Name":"FP054","PlayerID":699605333,"Points":3219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57747","ServerKey":"pl181","X":447,"Y":730},{"Bonus":0,"Continent":"K63","ID":57748,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57748","ServerKey":"pl181","X":373,"Y":697},{"Bonus":0,"Continent":"K24","ID":57749,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57749","ServerKey":"pl181","X":474,"Y":262},{"Bonus":0,"Continent":"K33","ID":57750,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57750","ServerKey":"pl181","X":366,"Y":313},{"Bonus":0,"Continent":"K37","ID":57751,"Name":"0110","PlayerID":698416970,"Points":1238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57751","ServerKey":"pl181","X":701,"Y":378},{"Bonus":0,"Continent":"K74","ID":57752,"Name":"New World","PlayerID":698152377,"Points":3628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57752","ServerKey":"pl181","X":435,"Y":723},{"Bonus":0,"Continent":"K52","ID":57753,"Name":"C0320","PlayerID":8841266,"Points":2466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57753","ServerKey":"pl181","X":267,"Y":524},{"Bonus":0,"Continent":"K63","ID":57754,"Name":"BOA6","PlayerID":699829494,"Points":2344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57754","ServerKey":"pl181","X":306,"Y":623},{"Bonus":0,"Continent":"K75","ID":57755,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":3897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57755","ServerKey":"pl181","X":553,"Y":724},{"Bonus":8,"Continent":"K33","ID":57756,"Name":"Zaplecze Osada 1","PlayerID":699796330,"Points":6980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57756","ServerKey":"pl181","X":361,"Y":315},{"Bonus":0,"Continent":"K75","ID":57757,"Name":"Wioska jurek15","PlayerID":699144886,"Points":1324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57757","ServerKey":"pl181","X":507,"Y":735},{"Bonus":0,"Continent":"K52","ID":57758,"Name":"Cisza","PlayerID":698769107,"Points":654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57758","ServerKey":"pl181","X":278,"Y":582},{"Bonus":0,"Continent":"K57","ID":57759,"Name":"Wioska Skols998","PlayerID":849005658,"Points":2841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57759","ServerKey":"pl181","X":733,"Y":529},{"Bonus":0,"Continent":"K56","ID":57760,"Name":"O67 Daeyami","PlayerID":699272880,"Points":668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57760","ServerKey":"pl181","X":687,"Y":566},{"Bonus":0,"Continent":"K75","ID":57761,"Name":"Wioska barbarzyƄska","PlayerID":849087855,"Points":379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57761","ServerKey":"pl181","X":585,"Y":720},{"Bonus":0,"Continent":"K36","ID":57762,"Name":"Wioska uks13","PlayerID":8411874,"Points":771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57762","ServerKey":"pl181","X":644,"Y":318},{"Bonus":0,"Continent":"K32","ID":57763,"Name":"rzeka anduina","PlayerID":698677650,"Points":579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57763","ServerKey":"pl181","X":292,"Y":391},{"Bonus":0,"Continent":"K24","ID":57764,"Name":"Tylko FALUBAZ","PlayerID":9277642,"Points":5414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57764","ServerKey":"pl181","X":470,"Y":268},{"Bonus":0,"Continent":"K25","ID":57765,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57765","ServerKey":"pl181","X":501,"Y":262},{"Bonus":0,"Continent":"K74","ID":57766,"Name":"New World","PlayerID":698152377,"Points":3199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57766","ServerKey":"pl181","X":412,"Y":722},{"Bonus":0,"Continent":"K25","ID":57767,"Name":"PPF-30","PlayerID":1424656,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57767","ServerKey":"pl181","X":566,"Y":279},{"Bonus":0,"Continent":"K37","ID":57768,"Name":"001","PlayerID":699832463,"Points":2928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57768","ServerKey":"pl181","X":711,"Y":394},{"Bonus":0,"Continent":"K67","ID":57769,"Name":"Sony 911","PlayerID":1415009,"Points":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57769","ServerKey":"pl181","X":707,"Y":618},{"Bonus":0,"Continent":"K47","ID":57770,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57770","ServerKey":"pl181","X":732,"Y":493},{"Bonus":0,"Continent":"K47","ID":57771,"Name":"Wioska Warkilia","PlayerID":3668212,"Points":2203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57771","ServerKey":"pl181","X":708,"Y":402},{"Bonus":0,"Continent":"K36","ID":57772,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57772","ServerKey":"pl181","X":667,"Y":332},{"Bonus":0,"Continent":"K66","ID":57774,"Name":"#137#","PlayerID":692803,"Points":2151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57774","ServerKey":"pl181","X":666,"Y":665},{"Bonus":0,"Continent":"K66","ID":57775,"Name":"Wioska rhodos77","PlayerID":7230689,"Points":3731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57775","ServerKey":"pl181","X":689,"Y":640},{"Bonus":0,"Continent":"K52","ID":57776,"Name":"C0318","PlayerID":8841266,"Points":2529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57776","ServerKey":"pl181","X":271,"Y":521},{"Bonus":0,"Continent":"K75","ID":57777,"Name":"049 - Budowanko!","PlayerID":7540891,"Points":4081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57777","ServerKey":"pl181","X":520,"Y":737},{"Bonus":0,"Continent":"K52","ID":57778,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57778","ServerKey":"pl181","X":267,"Y":550},{"Bonus":0,"Continent":"K75","ID":57779,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57779","ServerKey":"pl181","X":557,"Y":727},{"Bonus":0,"Continent":"K42","ID":57780,"Name":"jebacwas","PlayerID":849110380,"Points":225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57780","ServerKey":"pl181","X":263,"Y":490},{"Bonus":0,"Continent":"K47","ID":57781,"Name":"[834] Odludzie","PlayerID":848985692,"Points":5348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57781","ServerKey":"pl181","X":722,"Y":434},{"Bonus":0,"Continent":"K33","ID":57782,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57782","ServerKey":"pl181","X":301,"Y":374},{"Bonus":0,"Continent":"K57","ID":57784,"Name":"041 - Alcorcon","PlayerID":698342159,"Points":806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57784","ServerKey":"pl181","X":716,"Y":598},{"Bonus":0,"Continent":"K23","ID":57785,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57785","ServerKey":"pl181","X":380,"Y":293},{"Bonus":2,"Continent":"K74","ID":57786,"Name":"New World","PlayerID":698152377,"Points":4269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57786","ServerKey":"pl181","X":413,"Y":723},{"Bonus":0,"Continent":"K63","ID":57788,"Name":"Wioska barbarzyƄska","PlayerID":8877156,"Points":2131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57788","ServerKey":"pl181","X":313,"Y":643},{"Bonus":0,"Continent":"K74","ID":57790,"Name":"Wioska barbarzyƄska","PlayerID":606407,"Points":2147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57790","ServerKey":"pl181","X":498,"Y":736},{"Bonus":0,"Continent":"K66","ID":57791,"Name":"Wioska barbarzyƄska","PlayerID":699372829,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57791","ServerKey":"pl181","X":635,"Y":694},{"Bonus":0,"Continent":"K74","ID":57792,"Name":"New World","PlayerID":698152377,"Points":5026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57792","ServerKey":"pl181","X":429,"Y":727},{"Bonus":0,"Continent":"K36","ID":57793,"Name":"IGNESJA","PlayerID":3957237,"Points":1750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57793","ServerKey":"pl181","X":695,"Y":366},{"Bonus":0,"Continent":"K32","ID":57795,"Name":"lesna brama","PlayerID":698677650,"Points":1537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57795","ServerKey":"pl181","X":286,"Y":395},{"Bonus":0,"Continent":"K62","ID":57796,"Name":"Wioska mamcos98","PlayerID":9057880,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57796","ServerKey":"pl181","X":298,"Y":620},{"Bonus":0,"Continent":"K75","ID":57797,"Name":"-10-","PlayerID":765188,"Points":4014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57797","ServerKey":"pl181","X":516,"Y":737},{"Bonus":0,"Continent":"K57","ID":57798,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57798","ServerKey":"pl181","X":729,"Y":531},{"Bonus":0,"Continent":"K57","ID":57799,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":1618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57799","ServerKey":"pl181","X":726,"Y":536},{"Bonus":0,"Continent":"K33","ID":57800,"Name":"#10","PlayerID":2800032,"Points":529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57800","ServerKey":"pl181","X":342,"Y":335},{"Bonus":0,"Continent":"K32","ID":57801,"Name":"WB48","PlayerID":356642,"Points":276,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57801","ServerKey":"pl181","X":294,"Y":384},{"Bonus":0,"Continent":"K75","ID":57802,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57802","ServerKey":"pl181","X":554,"Y":730},{"Bonus":0,"Continent":"K32","ID":57804,"Name":"WB34","PlayerID":356642,"Points":1472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57804","ServerKey":"pl181","X":296,"Y":385},{"Bonus":0,"Continent":"K42","ID":57805,"Name":"45 barbarzyƄska","PlayerID":849018442,"Points":1157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57805","ServerKey":"pl181","X":271,"Y":438},{"Bonus":0,"Continent":"K36","ID":57806,"Name":"078","PlayerID":2502956,"Points":1614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57806","ServerKey":"pl181","X":675,"Y":339},{"Bonus":0,"Continent":"K32","ID":57808,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57808","ServerKey":"pl181","X":287,"Y":393},{"Bonus":0,"Continent":"K52","ID":57809,"Name":"@@1","PlayerID":849113546,"Points":4092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57809","ServerKey":"pl181","X":267,"Y":500},{"Bonus":0,"Continent":"K42","ID":57810,"Name":"shadow #1","PlayerID":1034117,"Points":3969,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57810","ServerKey":"pl181","X":260,"Y":493},{"Bonus":0,"Continent":"K26","ID":57811,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57811","ServerKey":"pl181","X":617,"Y":296},{"Bonus":0,"Continent":"K57","ID":57812,"Name":"Naboo","PlayerID":160513,"Points":4395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57812","ServerKey":"pl181","X":735,"Y":503},{"Bonus":0,"Continent":"K36","ID":57813,"Name":"ƻƻanetta","PlayerID":699875213,"Points":556,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57813","ServerKey":"pl181","X":681,"Y":355},{"Bonus":9,"Continent":"K57","ID":57814,"Name":"CastAway !012","PlayerID":9314079,"Points":6144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57814","ServerKey":"pl181","X":715,"Y":596},{"Bonus":0,"Continent":"K47","ID":57815,"Name":"050","PlayerID":849091105,"Points":279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57815","ServerKey":"pl181","X":733,"Y":447},{"Bonus":0,"Continent":"K36","ID":57816,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57816","ServerKey":"pl181","X":652,"Y":324},{"Bonus":0,"Continent":"K32","ID":57817,"Name":"lorien","PlayerID":698677650,"Points":508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57817","ServerKey":"pl181","X":294,"Y":390},{"Bonus":0,"Continent":"K42","ID":57820,"Name":"Avanti!","PlayerID":698625834,"Points":2055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57820","ServerKey":"pl181","X":267,"Y":479},{"Bonus":0,"Continent":"K33","ID":57821,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57821","ServerKey":"pl181","X":364,"Y":306},{"Bonus":0,"Continent":"K66","ID":57822,"Name":"Wioska 115","PlayerID":848971079,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57822","ServerKey":"pl181","X":688,"Y":642},{"Bonus":0,"Continent":"K57","ID":57823,"Name":"=127= Wioska barbarzyƄska","PlayerID":3781794,"Points":1433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57823","ServerKey":"pl181","X":725,"Y":568},{"Bonus":0,"Continent":"K52","ID":57824,"Name":"[0283]","PlayerID":8630972,"Points":3528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57824","ServerKey":"pl181","X":263,"Y":500},{"Bonus":0,"Continent":"K45","ID":57825,"Name":"Wioska Ć»ulionerka","PlayerID":849066125,"Points":254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57825","ServerKey":"pl181","X":501,"Y":495},{"Bonus":0,"Continent":"K74","ID":57826,"Name":"Bagno 36","PlayerID":848883684,"Points":4314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57826","ServerKey":"pl181","X":473,"Y":729},{"Bonus":0,"Continent":"K47","ID":57827,"Name":"Wioska Sir Moon Knight","PlayerID":849094972,"Points":143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57827","ServerKey":"pl181","X":711,"Y":402},{"Bonus":0,"Continent":"K75","ID":57828,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":1515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57828","ServerKey":"pl181","X":579,"Y":723},{"Bonus":0,"Continent":"K33","ID":57829,"Name":"adam3","PlayerID":6618608,"Points":269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57829","ServerKey":"pl181","X":338,"Y":328},{"Bonus":0,"Continent":"K25","ID":57830,"Name":".achim.","PlayerID":6936607,"Points":1579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57830","ServerKey":"pl181","X":577,"Y":285},{"Bonus":0,"Continent":"K75","ID":57831,"Name":"#203 C","PlayerID":9037756,"Points":784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57831","ServerKey":"pl181","X":517,"Y":737},{"Bonus":0,"Continent":"K73","ID":57832,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":4106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57832","ServerKey":"pl181","X":394,"Y":714},{"Bonus":0,"Continent":"K24","ID":57833,"Name":"Gwenville 018","PlayerID":848986638,"Points":507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57833","ServerKey":"pl181","X":450,"Y":270},{"Bonus":0,"Continent":"K52","ID":57834,"Name":"009","PlayerID":698356304,"Points":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57834","ServerKey":"pl181","X":264,"Y":504},{"Bonus":0,"Continent":"K63","ID":57836,"Name":"Wioska barbarzyƄska","PlayerID":699704542,"Points":2520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57836","ServerKey":"pl181","X":359,"Y":690},{"Bonus":0,"Continent":"K57","ID":57837,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57837","ServerKey":"pl181","X":730,"Y":525},{"Bonus":0,"Continent":"K62","ID":57838,"Name":"Wioska barbarzyƄska","PlayerID":3896657,"Points":494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57838","ServerKey":"pl181","X":293,"Y":616},{"Bonus":0,"Continent":"K63","ID":57839,"Name":"018 | North","PlayerID":699511295,"Points":3000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57839","ServerKey":"pl181","X":380,"Y":697},{"Bonus":0,"Continent":"K36","ID":57840,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57840","ServerKey":"pl181","X":671,"Y":333},{"Bonus":0,"Continent":"K25","ID":57841,"Name":".achim.","PlayerID":6936607,"Points":2495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57841","ServerKey":"pl181","X":573,"Y":281},{"Bonus":0,"Continent":"K47","ID":57842,"Name":"Wioska Kielce","PlayerID":849065829,"Points":209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57842","ServerKey":"pl181","X":735,"Y":454},{"Bonus":0,"Continent":"K62","ID":57843,"Name":"Wioska???","PlayerID":699774694,"Points":507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57843","ServerKey":"pl181","X":285,"Y":603},{"Bonus":0,"Continent":"K74","ID":57844,"Name":"New World","PlayerID":698152377,"Points":3877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57844","ServerKey":"pl181","X":409,"Y":717},{"Bonus":0,"Continent":"K36","ID":57845,"Name":"0132","PlayerID":698416970,"Points":791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57845","ServerKey":"pl181","X":698,"Y":381},{"Bonus":0,"Continent":"K42","ID":57846,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57846","ServerKey":"pl181","X":266,"Y":460},{"Bonus":0,"Continent":"K36","ID":57847,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57847","ServerKey":"pl181","X":674,"Y":339},{"Bonus":0,"Continent":"K57","ID":57848,"Name":"Delaware","PlayerID":6002527,"Points":1349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57848","ServerKey":"pl181","X":730,"Y":534},{"Bonus":0,"Continent":"K33","ID":57849,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57849","ServerKey":"pl181","X":348,"Y":316},{"Bonus":0,"Continent":"K63","ID":57850,"Name":"42.","PlayerID":8665783,"Points":1353,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57850","ServerKey":"pl181","X":329,"Y":665},{"Bonus":0,"Continent":"K25","ID":57851,"Name":"North K25","PlayerID":699146580,"Points":1702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57851","ServerKey":"pl181","X":565,"Y":273},{"Bonus":0,"Continent":"K66","ID":57852,"Name":"Wioska macp1","PlayerID":3750922,"Points":2267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57852","ServerKey":"pl181","X":657,"Y":668},{"Bonus":0,"Continent":"K63","ID":57853,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":1657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57853","ServerKey":"pl181","X":318,"Y":643},{"Bonus":0,"Continent":"K74","ID":57854,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":1031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57854","ServerKey":"pl181","X":472,"Y":733},{"Bonus":1,"Continent":"K63","ID":57855,"Name":"O113","PlayerID":272173,"Points":7032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57855","ServerKey":"pl181","X":305,"Y":629},{"Bonus":0,"Continent":"K36","ID":57856,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":806,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57856","ServerKey":"pl181","X":645,"Y":313},{"Bonus":0,"Continent":"K52","ID":57857,"Name":"007 baba","PlayerID":197581,"Points":4201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57857","ServerKey":"pl181","X":273,"Y":544},{"Bonus":0,"Continent":"K75","ID":57858,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57858","ServerKey":"pl181","X":528,"Y":731},{"Bonus":0,"Continent":"K36","ID":57859,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57859","ServerKey":"pl181","X":632,"Y":302},{"Bonus":0,"Continent":"K42","ID":57860,"Name":"36 barbarzyƄska 2A","PlayerID":849018442,"Points":2357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57860","ServerKey":"pl181","X":269,"Y":447},{"Bonus":0,"Continent":"K36","ID":57861,"Name":"Wioska barbarzyƄska","PlayerID":849102068,"Points":1261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57861","ServerKey":"pl181","X":642,"Y":319},{"Bonus":0,"Continent":"K55","ID":57862,"Name":"Wioska grzesiek576","PlayerID":7844370,"Points":299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57862","ServerKey":"pl181","X":517,"Y":530},{"Bonus":0,"Continent":"K42","ID":57863,"Name":"Avanti!","PlayerID":698625834,"Points":953,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57863","ServerKey":"pl181","X":267,"Y":468},{"Bonus":0,"Continent":"K42","ID":57864,"Name":"Wioska TCH1","PlayerID":7749444,"Points":4128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57864","ServerKey":"pl181","X":265,"Y":480},{"Bonus":0,"Continent":"K42","ID":57865,"Name":"Avanti!","PlayerID":698625834,"Points":2395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57865","ServerKey":"pl181","X":271,"Y":469},{"Bonus":0,"Continent":"K36","ID":57866,"Name":"Opalenica","PlayerID":849113595,"Points":1371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57866","ServerKey":"pl181","X":630,"Y":304},{"Bonus":0,"Continent":"K63","ID":57867,"Name":"Bunkier","PlayerID":699805839,"Points":2077,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57867","ServerKey":"pl181","X":344,"Y":674},{"Bonus":0,"Continent":"K36","ID":57868,"Name":"Leszno","PlayerID":849113597,"Points":1782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57868","ServerKey":"pl181","X":621,"Y":311},{"Bonus":0,"Continent":"K76","ID":57869,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":2357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57869","ServerKey":"pl181","X":609,"Y":704},{"Bonus":0,"Continent":"K33","ID":57870,"Name":"PIROTECHNIK 012","PlayerID":849101083,"Points":333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57870","ServerKey":"pl181","X":339,"Y":336},{"Bonus":7,"Continent":"K52","ID":57871,"Name":"Osada koczownikĂłw","PlayerID":698388578,"Points":745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57871","ServerKey":"pl181","X":263,"Y":517},{"Bonus":0,"Continent":"K24","ID":57873,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57873","ServerKey":"pl181","X":425,"Y":276},{"Bonus":0,"Continent":"K57","ID":57874,"Name":"JW94","PlayerID":849113603,"Points":859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57874","ServerKey":"pl181","X":736,"Y":515},{"Bonus":0,"Continent":"K24","ID":57875,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57875","ServerKey":"pl181","X":491,"Y":267},{"Bonus":0,"Continent":"K63","ID":57876,"Name":"Maroko","PlayerID":7707390,"Points":507,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57876","ServerKey":"pl181","X":323,"Y":661},{"Bonus":0,"Continent":"K66","ID":57877,"Name":"#121#","PlayerID":692803,"Points":3583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57877","ServerKey":"pl181","X":655,"Y":671},{"Bonus":0,"Continent":"K33","ID":57878,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":87,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57878","ServerKey":"pl181","X":312,"Y":352},{"Bonus":0,"Continent":"K33","ID":57879,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":2633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57879","ServerKey":"pl181","X":385,"Y":302},{"Bonus":0,"Continent":"K66","ID":57880,"Name":"Sony 911","PlayerID":1415009,"Points":1879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57880","ServerKey":"pl181","X":682,"Y":646},{"Bonus":0,"Continent":"K57","ID":57881,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":1082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57881","ServerKey":"pl181","X":728,"Y":532},{"Bonus":0,"Continent":"K33","ID":57882,"Name":"Zaplecze Barba 048","PlayerID":699796330,"Points":956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57882","ServerKey":"pl181","X":341,"Y":325},{"Bonus":0,"Continent":"K75","ID":57883,"Name":"KASHYYYK 4","PlayerID":699383121,"Points":916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57883","ServerKey":"pl181","X":574,"Y":722},{"Bonus":0,"Continent":"K24","ID":57884,"Name":"225...NORTH","PlayerID":6920960,"Points":1773,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57884","ServerKey":"pl181","X":437,"Y":279},{"Bonus":0,"Continent":"K67","ID":57885,"Name":"K67 17","PlayerID":698867483,"Points":3120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57885","ServerKey":"pl181","X":716,"Y":602},{"Bonus":0,"Continent":"K32","ID":57886,"Name":"Wioska pyari","PlayerID":1371998,"Points":2059,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57886","ServerKey":"pl181","X":297,"Y":393},{"Bonus":0,"Continent":"K57","ID":57887,"Name":"CastAway #028","PlayerID":9314079,"Points":2589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57887","ServerKey":"pl181","X":709,"Y":598},{"Bonus":0,"Continent":"K47","ID":57889,"Name":"Kami","PlayerID":849002796,"Points":2302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57889","ServerKey":"pl181","X":738,"Y":474},{"Bonus":0,"Continent":"K26","ID":57890,"Name":"Wioska barbarzyƄska","PlayerID":849037469,"Points":1883,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57890","ServerKey":"pl181","X":620,"Y":293},{"Bonus":0,"Continent":"K25","ID":57891,"Name":"North 058","PlayerID":849064752,"Points":4778,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57891","ServerKey":"pl181","X":529,"Y":267},{"Bonus":0,"Continent":"K36","ID":57892,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57892","ServerKey":"pl181","X":662,"Y":338},{"Bonus":0,"Continent":"K75","ID":57893,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1737,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57893","ServerKey":"pl181","X":556,"Y":728},{"Bonus":0,"Continent":"K75","ID":57894,"Name":"032 - Budowanko!","PlayerID":7540891,"Points":4809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57894","ServerKey":"pl181","X":500,"Y":740},{"Bonus":0,"Continent":"K36","ID":57895,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57895","ServerKey":"pl181","X":629,"Y":303},{"Bonus":0,"Continent":"K57","ID":57896,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":2516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57896","ServerKey":"pl181","X":727,"Y":552},{"Bonus":0,"Continent":"K25","ID":57897,"Name":"PPF-33","PlayerID":1424656,"Points":1285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57897","ServerKey":"pl181","X":570,"Y":276},{"Bonus":0,"Continent":"K75","ID":57899,"Name":"!Wioska barbarzyƄska 3","PlayerID":8779575,"Points":3075,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57899","ServerKey":"pl181","X":582,"Y":723},{"Bonus":0,"Continent":"K25","ID":57900,"Name":"North K25","PlayerID":699146580,"Points":1844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57900","ServerKey":"pl181","X":561,"Y":272},{"Bonus":0,"Continent":"K63","ID":57901,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57901","ServerKey":"pl181","X":326,"Y":659},{"Bonus":0,"Continent":"K42","ID":57902,"Name":"Wioska brt007","PlayerID":699131849,"Points":172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57902","ServerKey":"pl181","X":263,"Y":487},{"Bonus":0,"Continent":"K52","ID":57903,"Name":"Wioska H Cezar","PlayerID":7135037,"Points":3868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57903","ServerKey":"pl181","X":275,"Y":540},{"Bonus":0,"Continent":"K24","ID":57904,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":2474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57904","ServerKey":"pl181","X":458,"Y":265},{"Bonus":0,"Continent":"K75","ID":57905,"Name":"Wioska lord zbyszek1960","PlayerID":8741336,"Points":3431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57905","ServerKey":"pl181","X":528,"Y":732},{"Bonus":0,"Continent":"K57","ID":57906,"Name":"033","PlayerID":6160655,"Points":1388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57906","ServerKey":"pl181","X":722,"Y":584},{"Bonus":0,"Continent":"K76","ID":57907,"Name":"Wioska FreestylerWLKW","PlayerID":6135387,"Points":1320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57907","ServerKey":"pl181","X":608,"Y":710},{"Bonus":0,"Continent":"K36","ID":57908,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":831,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57908","ServerKey":"pl181","X":639,"Y":311},{"Bonus":0,"Continent":"K25","ID":57909,"Name":"xxx1","PlayerID":7427966,"Points":1225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57909","ServerKey":"pl181","X":537,"Y":268},{"Bonus":0,"Continent":"K74","ID":57910,"Name":"Wioska 665783847","PlayerID":699339594,"Points":5400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57910","ServerKey":"pl181","X":402,"Y":711},{"Bonus":0,"Continent":"K47","ID":57911,"Name":"093. Sufetula","PlayerID":849091866,"Points":4135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57911","ServerKey":"pl181","X":728,"Y":455},{"Bonus":0,"Continent":"K74","ID":57912,"Name":"KWB7","PlayerID":9003698,"Points":4246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57912","ServerKey":"pl181","X":486,"Y":734},{"Bonus":0,"Continent":"K36","ID":57913,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":7093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57913","ServerKey":"pl181","X":622,"Y":305},{"Bonus":0,"Continent":"K33","ID":57914,"Name":"Jannapol","PlayerID":698806018,"Points":1430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57914","ServerKey":"pl181","X":333,"Y":342},{"Bonus":0,"Continent":"K76","ID":57915,"Name":"Wioska barbarzyƄska","PlayerID":699189792,"Points":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57915","ServerKey":"pl181","X":618,"Y":705},{"Bonus":0,"Continent":"K75","ID":57916,"Name":"004","PlayerID":699730998,"Points":275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57916","ServerKey":"pl181","X":574,"Y":726},{"Bonus":0,"Continent":"K76","ID":57918,"Name":"103 koniec ƛwiata","PlayerID":849093426,"Points":2119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57918","ServerKey":"pl181","X":615,"Y":705},{"Bonus":0,"Continent":"K74","ID":57919,"Name":"038# Yaka","PlayerID":3933666,"Points":1179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57919","ServerKey":"pl181","X":488,"Y":739},{"Bonus":4,"Continent":"K74","ID":57920,"Name":"No to jedziemy :D","PlayerID":699333701,"Points":2671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57920","ServerKey":"pl181","X":470,"Y":736},{"Bonus":0,"Continent":"K24","ID":57921,"Name":"Wioska b 004","PlayerID":6343784,"Points":994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57921","ServerKey":"pl181","X":420,"Y":274},{"Bonus":5,"Continent":"K57","ID":57922,"Name":"Osada koczownikĂłw","PlayerID":2453888,"Points":3698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57922","ServerKey":"pl181","X":716,"Y":594},{"Bonus":0,"Continent":"K73","ID":57923,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57923","ServerKey":"pl181","X":397,"Y":711},{"Bonus":0,"Continent":"K52","ID":57924,"Name":"New WorldA","PlayerID":849084005,"Points":795,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57924","ServerKey":"pl181","X":272,"Y":532},{"Bonus":0,"Continent":"K74","ID":57925,"Name":"033 - Budowanko!","PlayerID":7540891,"Points":4578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57925","ServerKey":"pl181","X":494,"Y":737},{"Bonus":0,"Continent":"K52","ID":57926,"Name":"C0324","PlayerID":8841266,"Points":2178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57926","ServerKey":"pl181","X":268,"Y":553},{"Bonus":0,"Continent":"K33","ID":57927,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":1080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57927","ServerKey":"pl181","X":380,"Y":300},{"Bonus":0,"Continent":"K24","ID":57928,"Name":"????","PlayerID":698489071,"Points":2816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57928","ServerKey":"pl181","X":480,"Y":272},{"Bonus":0,"Continent":"K57","ID":57929,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":2371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57929","ServerKey":"pl181","X":730,"Y":555},{"Bonus":0,"Continent":"K57","ID":57930,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57930","ServerKey":"pl181","X":731,"Y":518},{"Bonus":0,"Continent":"K33","ID":57931,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57931","ServerKey":"pl181","X":307,"Y":377},{"Bonus":0,"Continent":"K75","ID":57932,"Name":"#208 C","PlayerID":9037756,"Points":2266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57932","ServerKey":"pl181","X":507,"Y":738},{"Bonus":0,"Continent":"K57","ID":57933,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57933","ServerKey":"pl181","X":731,"Y":512},{"Bonus":0,"Continent":"K75","ID":57934,"Name":"!Wioska barbarzyƄska 1","PlayerID":8779575,"Points":4578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57934","ServerKey":"pl181","X":594,"Y":720},{"Bonus":0,"Continent":"K47","ID":57937,"Name":"Wioska Domino00155","PlayerID":849030062,"Points":704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57937","ServerKey":"pl181","X":736,"Y":459},{"Bonus":0,"Continent":"K52","ID":57939,"Name":"C0321","PlayerID":8841266,"Points":2488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57939","ServerKey":"pl181","X":270,"Y":555},{"Bonus":0,"Continent":"K63","ID":57940,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57940","ServerKey":"pl181","X":373,"Y":694},{"Bonus":0,"Continent":"K47","ID":57941,"Name":"091. Wioska barbarzyƄska","PlayerID":7494497,"Points":2897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57941","ServerKey":"pl181","X":730,"Y":462},{"Bonus":0,"Continent":"K33","ID":57942,"Name":"Wioska Avgan","PlayerID":8877462,"Points":116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57942","ServerKey":"pl181","X":329,"Y":342},{"Bonus":0,"Continent":"K66","ID":57943,"Name":"#127#","PlayerID":692803,"Points":3237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57943","ServerKey":"pl181","X":656,"Y":682},{"Bonus":0,"Continent":"K25","ID":57944,"Name":"003 Rohan","PlayerID":849100383,"Points":2695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57944","ServerKey":"pl181","X":523,"Y":263},{"Bonus":0,"Continent":"K67","ID":57945,"Name":"K67 27","PlayerID":698867483,"Points":2062,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57945","ServerKey":"pl181","X":700,"Y":619},{"Bonus":0,"Continent":"K63","ID":57946,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":1826,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57946","ServerKey":"pl181","X":317,"Y":642},{"Bonus":0,"Continent":"K24","ID":57947,"Name":"????","PlayerID":698489071,"Points":2816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57947","ServerKey":"pl181","X":460,"Y":269},{"Bonus":0,"Continent":"K33","ID":57948,"Name":"Wioska Koza","PlayerID":849092868,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57948","ServerKey":"pl181","X":315,"Y":366},{"Bonus":0,"Continent":"K36","ID":57949,"Name":"=|44|=","PlayerID":9101574,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57949","ServerKey":"pl181","X":696,"Y":372},{"Bonus":0,"Continent":"K63","ID":57950,"Name":"Wioska barbarzyƄska","PlayerID":699037086,"Points":547,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57950","ServerKey":"pl181","X":303,"Y":631},{"Bonus":0,"Continent":"K63","ID":57951,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57951","ServerKey":"pl181","X":330,"Y":657},{"Bonus":0,"Continent":"K25","ID":57952,"Name":"PPF-15","PlayerID":1424656,"Points":2414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57952","ServerKey":"pl181","X":523,"Y":268},{"Bonus":0,"Continent":"K24","ID":57953,"Name":"Dam-Daj","PlayerID":8062053,"Points":1765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57953","ServerKey":"pl181","X":488,"Y":270},{"Bonus":0,"Continent":"K33","ID":57954,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57954","ServerKey":"pl181","X":318,"Y":352},{"Bonus":0,"Continent":"K74","ID":57955,"Name":"035Bethlechem","PlayerID":698620694,"Points":3237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57955","ServerKey":"pl181","X":452,"Y":727},{"Bonus":0,"Continent":"K33","ID":57956,"Name":"Lord Nc3dyh 6","PlayerID":699509284,"Points":725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57956","ServerKey":"pl181","X":324,"Y":339},{"Bonus":0,"Continent":"K63","ID":57957,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57957","ServerKey":"pl181","X":346,"Y":670},{"Bonus":0,"Continent":"K25","ID":57958,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5585,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57958","ServerKey":"pl181","X":503,"Y":262},{"Bonus":0,"Continent":"K42","ID":57959,"Name":"Avanti!","PlayerID":698625834,"Points":1640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57959","ServerKey":"pl181","X":268,"Y":479},{"Bonus":0,"Continent":"K36","ID":57960,"Name":"U-10","PlayerID":3600737,"Points":1941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57960","ServerKey":"pl181","X":643,"Y":311},{"Bonus":0,"Continent":"K75","ID":57961,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57961","ServerKey":"pl181","X":577,"Y":724},{"Bonus":0,"Continent":"K66","ID":57962,"Name":"#130#","PlayerID":692803,"Points":3157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57962","ServerKey":"pl181","X":663,"Y":666},{"Bonus":0,"Continent":"K57","ID":57963,"Name":"RETURN","PlayerID":849024152,"Points":1156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57963","ServerKey":"pl181","X":725,"Y":564},{"Bonus":0,"Continent":"K52","ID":57964,"Name":"Wioska","PlayerID":849086777,"Points":327,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57964","ServerKey":"pl181","X":279,"Y":586},{"Bonus":0,"Continent":"K66","ID":57965,"Name":"Wiocha","PlayerID":849048856,"Points":5604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57965","ServerKey":"pl181","X":666,"Y":658},{"Bonus":0,"Continent":"K32","ID":57966,"Name":"WB12","PlayerID":356642,"Points":3190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57966","ServerKey":"pl181","X":299,"Y":379},{"Bonus":0,"Continent":"K36","ID":57967,"Name":"=|41|=","PlayerID":9101574,"Points":997,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57967","ServerKey":"pl181","X":693,"Y":369},{"Bonus":0,"Continent":"K75","ID":57968,"Name":"Ooo","PlayerID":849089323,"Points":1926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57968","ServerKey":"pl181","X":581,"Y":725},{"Bonus":0,"Continent":"K57","ID":57969,"Name":"CastAway !029","PlayerID":9314079,"Points":3750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57969","ServerKey":"pl181","X":715,"Y":599},{"Bonus":0,"Continent":"K66","ID":57970,"Name":"Swojak","PlayerID":8185721,"Points":1976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57970","ServerKey":"pl181","X":697,"Y":637},{"Bonus":6,"Continent":"K47","ID":57971,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":6816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57971","ServerKey":"pl181","X":726,"Y":424},{"Bonus":0,"Continent":"K25","ID":57972,"Name":"TWIERDZA DAMIK 1","PlayerID":849093353,"Points":4326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57972","ServerKey":"pl181","X":578,"Y":277},{"Bonus":0,"Continent":"K75","ID":57973,"Name":"Ave Why!","PlayerID":699121671,"Points":966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57973","ServerKey":"pl181","X":510,"Y":735},{"Bonus":0,"Continent":"K66","ID":57974,"Name":"Wioska robert72","PlayerID":126954,"Points":4870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57974","ServerKey":"pl181","X":668,"Y":664},{"Bonus":0,"Continent":"K74","ID":57975,"Name":"New World","PlayerID":698152377,"Points":4961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57975","ServerKey":"pl181","X":436,"Y":724},{"Bonus":0,"Continent":"K33","ID":57976,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57976","ServerKey":"pl181","X":313,"Y":368},{"Bonus":0,"Continent":"K52","ID":57977,"Name":"New WorldA","PlayerID":849084005,"Points":764,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57977","ServerKey":"pl181","X":267,"Y":540},{"Bonus":0,"Continent":"K47","ID":57978,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57978","ServerKey":"pl181","X":734,"Y":492},{"Bonus":0,"Continent":"K24","ID":57979,"Name":"Wioska SirSin X","PlayerID":699390457,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57979","ServerKey":"pl181","X":481,"Y":265},{"Bonus":0,"Continent":"K33","ID":57980,"Name":"Wioska barbarzyƄska","PlayerID":849101205,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57980","ServerKey":"pl181","X":340,"Y":332},{"Bonus":0,"Continent":"K33","ID":57981,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57981","ServerKey":"pl181","X":321,"Y":355},{"Bonus":0,"Continent":"K36","ID":57982,"Name":"075","PlayerID":2502956,"Points":2562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57982","ServerKey":"pl181","X":665,"Y":333},{"Bonus":0,"Continent":"K33","ID":57983,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57983","ServerKey":"pl181","X":356,"Y":318},{"Bonus":0,"Continent":"K42","ID":57984,"Name":"shadow #3","PlayerID":1034117,"Points":720,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57984","ServerKey":"pl181","X":262,"Y":498},{"Bonus":0,"Continent":"K47","ID":57985,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57985","ServerKey":"pl181","X":716,"Y":409},{"Bonus":0,"Continent":"K57","ID":57986,"Name":"gosiaczek","PlayerID":848977412,"Points":3510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57986","ServerKey":"pl181","X":725,"Y":551},{"Bonus":0,"Continent":"K33","ID":57987,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57987","ServerKey":"pl181","X":301,"Y":387},{"Bonus":0,"Continent":"K25","ID":57988,"Name":"Wioska Kubaa333","PlayerID":849068436,"Points":676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57988","ServerKey":"pl181","X":556,"Y":276},{"Bonus":0,"Continent":"K57","ID":57989,"Name":"CastAway !038","PlayerID":9314079,"Points":1936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57989","ServerKey":"pl181","X":728,"Y":565},{"Bonus":0,"Continent":"K75","ID":57990,"Name":"053 - Budowanko!","PlayerID":7540891,"Points":3362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57990","ServerKey":"pl181","X":510,"Y":739},{"Bonus":0,"Continent":"K67","ID":57991,"Name":"KERTO 03","PlayerID":7474527,"Points":510,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57991","ServerKey":"pl181","X":710,"Y":604},{"Bonus":0,"Continent":"K63","ID":57993,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57993","ServerKey":"pl181","X":308,"Y":638},{"Bonus":0,"Continent":"K42","ID":57994,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":1015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57994","ServerKey":"pl181","X":266,"Y":465},{"Bonus":0,"Continent":"K66","ID":57995,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57995","ServerKey":"pl181","X":628,"Y":695},{"Bonus":0,"Continent":"K73","ID":57996,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57996","ServerKey":"pl181","X":396,"Y":704},{"Bonus":0,"Continent":"K66","ID":57997,"Name":"Wygwizdowa 017","PlayerID":698562644,"Points":344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57997","ServerKey":"pl181","X":650,"Y":680},{"Bonus":0,"Continent":"K74","ID":57998,"Name":"New World","PlayerID":698152377,"Points":3784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57998","ServerKey":"pl181","X":425,"Y":726},{"Bonus":0,"Continent":"K33","ID":57999,"Name":"Lecymy DUR","PlayerID":6169408,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=57999","ServerKey":"pl181","X":346,"Y":321},{"Bonus":0,"Continent":"K33","ID":58000,"Name":"Wioska barbarzyƄska","PlayerID":699660539,"Points":1095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58000","ServerKey":"pl181","X":312,"Y":371},{"Bonus":0,"Continent":"K34","ID":58001,"Name":"7.62 mm","PlayerID":699777234,"Points":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58001","ServerKey":"pl181","X":442,"Y":393},{"Bonus":0,"Continent":"K24","ID":58002,"Name":"214...NORTH","PlayerID":6920960,"Points":2197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58002","ServerKey":"pl181","X":416,"Y":282},{"Bonus":0,"Continent":"K63","ID":58003,"Name":"Wioska barbarzyƄska","PlayerID":8175236,"Points":348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58003","ServerKey":"pl181","X":326,"Y":650},{"Bonus":0,"Continent":"K34","ID":58004,"Name":"7.62 mm","PlayerID":699777234,"Points":2687,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58004","ServerKey":"pl181","X":437,"Y":396},{"Bonus":0,"Continent":"K63","ID":58005,"Name":"Telimena 3.","PlayerID":699037086,"Points":988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58005","ServerKey":"pl181","X":306,"Y":631},{"Bonus":0,"Continent":"K74","ID":58006,"Name":"Wioska barbarzyƄska","PlayerID":699656989,"Points":1621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58006","ServerKey":"pl181","X":477,"Y":739},{"Bonus":0,"Continent":"K75","ID":58007,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58007","ServerKey":"pl181","X":545,"Y":725},{"Bonus":0,"Continent":"K52","ID":58008,"Name":"Wioska Driata","PlayerID":699866271,"Points":812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58008","ServerKey":"pl181","X":281,"Y":588},{"Bonus":0,"Continent":"K25","ID":58010,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58010","ServerKey":"pl181","X":503,"Y":270},{"Bonus":0,"Continent":"K52","ID":58011,"Name":"078 obrzeĆŒa","PlayerID":699510259,"Points":1270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58011","ServerKey":"pl181","X":273,"Y":559},{"Bonus":0,"Continent":"K36","ID":58012,"Name":"Wioska barbarzyƄska","PlayerID":849111332,"Points":987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58012","ServerKey":"pl181","X":658,"Y":322},{"Bonus":0,"Continent":"K33","ID":58013,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58013","ServerKey":"pl181","X":317,"Y":345},{"Bonus":0,"Continent":"K24","ID":58014,"Name":"London","PlayerID":699325506,"Points":2843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58014","ServerKey":"pl181","X":418,"Y":284},{"Bonus":0,"Continent":"K52","ID":58015,"Name":"082 obrzeĆŒa","PlayerID":699510259,"Points":1223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58015","ServerKey":"pl181","X":273,"Y":563},{"Bonus":0,"Continent":"K75","ID":58016,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58016","ServerKey":"pl181","X":557,"Y":730},{"Bonus":0,"Continent":"K74","ID":58017,"Name":"027 - Budowanko!","PlayerID":7540891,"Points":4809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58017","ServerKey":"pl181","X":483,"Y":733},{"Bonus":0,"Continent":"K76","ID":58018,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":2922,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58018","ServerKey":"pl181","X":605,"Y":712},{"Bonus":0,"Continent":"K37","ID":58019,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58019","ServerKey":"pl181","X":702,"Y":393},{"Bonus":0,"Continent":"K75","ID":58020,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58020","ServerKey":"pl181","X":564,"Y":723},{"Bonus":0,"Continent":"K74","ID":58021,"Name":"KWB9.2","PlayerID":9003698,"Points":1450,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58021","ServerKey":"pl181","X":457,"Y":734},{"Bonus":0,"Continent":"K42","ID":58022,"Name":"Dream on","PlayerID":698962117,"Points":4431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58022","ServerKey":"pl181","X":296,"Y":485},{"Bonus":0,"Continent":"K42","ID":58023,"Name":"30 barbarzyƄska","PlayerID":849018442,"Points":2890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58023","ServerKey":"pl181","X":272,"Y":434},{"Bonus":0,"Continent":"K52","ID":58025,"Name":"010","PlayerID":698356304,"Points":182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58025","ServerKey":"pl181","X":262,"Y":505},{"Bonus":0,"Continent":"K75","ID":58026,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58026","ServerKey":"pl181","X":507,"Y":734},{"Bonus":0,"Continent":"K36","ID":58027,"Name":"Farma","PlayerID":699867743,"Points":1014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58027","ServerKey":"pl181","X":697,"Y":366},{"Bonus":0,"Continent":"K52","ID":58028,"Name":"RODZYNEK","PlayerID":6892517,"Points":1137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58028","ServerKey":"pl181","X":270,"Y":553},{"Bonus":1,"Continent":"K25","ID":58029,"Name":"#013","PlayerID":849064614,"Points":5205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58029","ServerKey":"pl181","X":547,"Y":271},{"Bonus":0,"Continent":"K24","ID":58030,"Name":"Wioska a4","PlayerID":6343784,"Points":1509,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58030","ServerKey":"pl181","X":425,"Y":282},{"Bonus":0,"Continent":"K67","ID":58031,"Name":"K67 10","PlayerID":698867483,"Points":3417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58031","ServerKey":"pl181","X":702,"Y":619},{"Bonus":0,"Continent":"K63","ID":58032,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58032","ServerKey":"pl181","X":306,"Y":615},{"Bonus":0,"Continent":"K74","ID":58033,"Name":"New World","PlayerID":698152377,"Points":4040,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58033","ServerKey":"pl181","X":422,"Y":723},{"Bonus":0,"Continent":"K33","ID":58034,"Name":"PIROTECHNIK 010","PlayerID":849101083,"Points":431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58034","ServerKey":"pl181","X":337,"Y":336},{"Bonus":0,"Continent":"K24","ID":58035,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58035","ServerKey":"pl181","X":407,"Y":281},{"Bonus":4,"Continent":"K47","ID":58036,"Name":"030","PlayerID":849091105,"Points":7869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58036","ServerKey":"pl181","X":733,"Y":493},{"Bonus":0,"Continent":"K75","ID":58038,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58038","ServerKey":"pl181","X":529,"Y":731},{"Bonus":0,"Continent":"K75","ID":58039,"Name":"Bzyk","PlayerID":699443920,"Points":3376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58039","ServerKey":"pl181","X":561,"Y":725},{"Bonus":0,"Continent":"K75","ID":58040,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":5209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58040","ServerKey":"pl181","X":534,"Y":733},{"Bonus":0,"Continent":"K67","ID":58041,"Name":"K67 30","PlayerID":698867483,"Points":1202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58041","ServerKey":"pl181","X":716,"Y":601},{"Bonus":0,"Continent":"K52","ID":58042,"Name":"Zzz 11 trochę za daleko","PlayerID":849084740,"Points":741,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58042","ServerKey":"pl181","X":280,"Y":579},{"Bonus":0,"Continent":"K75","ID":58043,"Name":"Wioska barbarzyƄska","PlayerID":8015775,"Points":436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58043","ServerKey":"pl181","X":550,"Y":724},{"Bonus":1,"Continent":"K52","ID":58044,"Name":"001 Drewno","PlayerID":698353083,"Points":5134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58044","ServerKey":"pl181","X":266,"Y":527},{"Bonus":7,"Continent":"K52","ID":58047,"Name":"New WorldA","PlayerID":849084005,"Points":1604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58047","ServerKey":"pl181","X":269,"Y":541},{"Bonus":0,"Continent":"K57","ID":58049,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58049","ServerKey":"pl181","X":727,"Y":528},{"Bonus":0,"Continent":"K33","ID":58051,"Name":"Wioska Cheltenham","PlayerID":849106820,"Points":690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58051","ServerKey":"pl181","X":336,"Y":340},{"Bonus":0,"Continent":"K52","ID":58052,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58052","ServerKey":"pl181","X":282,"Y":587},{"Bonus":0,"Continent":"K52","ID":58053,"Name":"083 obrzeĆŒa","PlayerID":699510259,"Points":1194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58053","ServerKey":"pl181","X":274,"Y":557},{"Bonus":0,"Continent":"K52","ID":58054,"Name":"009","PlayerID":698663855,"Points":4094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58054","ServerKey":"pl181","X":283,"Y":596},{"Bonus":0,"Continent":"K63","ID":58056,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58056","ServerKey":"pl181","X":371,"Y":699},{"Bonus":0,"Continent":"K42","ID":58057,"Name":"006","PlayerID":699844314,"Points":376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58057","ServerKey":"pl181","X":275,"Y":459},{"Bonus":0,"Continent":"K33","ID":58058,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58058","ServerKey":"pl181","X":364,"Y":304},{"Bonus":0,"Continent":"K75","ID":58059,"Name":"Wioska MegaMocny","PlayerID":8806145,"Points":2272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58059","ServerKey":"pl181","X":581,"Y":724},{"Bonus":0,"Continent":"K33","ID":58060,"Name":"NOT?","PlayerID":9236866,"Points":2770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58060","ServerKey":"pl181","X":308,"Y":358},{"Bonus":2,"Continent":"K62","ID":58061,"Name":"Osada koczownikĂłw","PlayerID":849047233,"Points":3502,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58061","ServerKey":"pl181","X":284,"Y":603},{"Bonus":0,"Continent":"K52","ID":58062,"Name":"Wioska Arash1","PlayerID":3462813,"Points":195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58062","ServerKey":"pl181","X":287,"Y":587},{"Bonus":0,"Continent":"K76","ID":58063,"Name":"budowa 06","PlayerID":7139820,"Points":1098,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58063","ServerKey":"pl181","X":613,"Y":710},{"Bonus":0,"Continent":"K75","ID":58064,"Name":"Wioska ddd121","PlayerID":2575842,"Points":493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58064","ServerKey":"pl181","X":523,"Y":733},{"Bonus":0,"Continent":"K52","ID":58065,"Name":"[0272]","PlayerID":8630972,"Points":3381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58065","ServerKey":"pl181","X":262,"Y":500},{"Bonus":0,"Continent":"K44","ID":58066,"Name":"234 Asuan","PlayerID":1497168,"Points":6004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58066","ServerKey":"pl181","X":469,"Y":498},{"Bonus":0,"Continent":"K75","ID":58067,"Name":"051 - Budowanko!","PlayerID":7540891,"Points":3706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58067","ServerKey":"pl181","X":513,"Y":739},{"Bonus":0,"Continent":"K24","ID":58068,"Name":"A02","PlayerID":849038597,"Points":1587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58068","ServerKey":"pl181","X":428,"Y":282},{"Bonus":0,"Continent":"K26","ID":58069,"Name":"Flap","PlayerID":699098531,"Points":4352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58069","ServerKey":"pl181","X":615,"Y":292},{"Bonus":0,"Continent":"K33","ID":58070,"Name":"Wioska sebastianxxx19","PlayerID":849101018,"Points":2979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58070","ServerKey":"pl181","X":346,"Y":345},{"Bonus":0,"Continent":"K67","ID":58071,"Name":"K67 21","PlayerID":698867483,"Points":2395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58071","ServerKey":"pl181","X":704,"Y":620},{"Bonus":0,"Continent":"K62","ID":58072,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58072","ServerKey":"pl181","X":295,"Y":617},{"Bonus":0,"Continent":"K75","ID":58073,"Name":"Ave Why!","PlayerID":699121671,"Points":749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58073","ServerKey":"pl181","X":518,"Y":739},{"Bonus":0,"Continent":"K47","ID":58074,"Name":"Kami 5","PlayerID":849002796,"Points":920,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58074","ServerKey":"pl181","X":736,"Y":471},{"Bonus":1,"Continent":"K52","ID":58075,"Name":"Wioska klez 030","PlayerID":698295651,"Points":1644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58075","ServerKey":"pl181","X":263,"Y":531},{"Bonus":0,"Continent":"K42","ID":58076,"Name":"Wioska Yeta","PlayerID":7259690,"Points":1856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58076","ServerKey":"pl181","X":288,"Y":402},{"Bonus":0,"Continent":"K75","ID":58077,"Name":"Ave Why!","PlayerID":699121671,"Points":670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58077","ServerKey":"pl181","X":525,"Y":728},{"Bonus":0,"Continent":"K33","ID":58078,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":710,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58078","ServerKey":"pl181","X":372,"Y":306},{"Bonus":0,"Continent":"K33","ID":58079,"Name":"NOT?","PlayerID":9236866,"Points":2431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58079","ServerKey":"pl181","X":311,"Y":355},{"Bonus":0,"Continent":"K73","ID":58080,"Name":"Wioska fafex","PlayerID":108256,"Points":471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58080","ServerKey":"pl181","X":383,"Y":700},{"Bonus":0,"Continent":"K33","ID":58081,"Name":"Lecymy DUR","PlayerID":6169408,"Points":781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58081","ServerKey":"pl181","X":345,"Y":317},{"Bonus":0,"Continent":"K24","ID":58082,"Name":"elo","PlayerID":849085160,"Points":650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58082","ServerKey":"pl181","X":431,"Y":272},{"Bonus":0,"Continent":"K62","ID":58083,"Name":"Nowy 0005","PlayerID":849096972,"Points":571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58083","ServerKey":"pl181","X":284,"Y":604},{"Bonus":0,"Continent":"K66","ID":58084,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":6095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58084","ServerKey":"pl181","X":650,"Y":677},{"Bonus":0,"Continent":"K47","ID":58085,"Name":"02 Wioska barbarzyƄska","PlayerID":8785003,"Points":2230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58085","ServerKey":"pl181","X":725,"Y":434},{"Bonus":0,"Continent":"K63","ID":58086,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58086","ServerKey":"pl181","X":348,"Y":678},{"Bonus":0,"Continent":"K62","ID":58087,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58087","ServerKey":"pl181","X":292,"Y":617},{"Bonus":0,"Continent":"K36","ID":58088,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58088","ServerKey":"pl181","X":615,"Y":300},{"Bonus":0,"Continent":"K25","ID":58089,"Name":"North 051","PlayerID":849064752,"Points":4373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58089","ServerKey":"pl181","X":518,"Y":264},{"Bonus":0,"Continent":"K47","ID":58090,"Name":"033 KTW","PlayerID":848883237,"Points":1973,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58090","ServerKey":"pl181","X":731,"Y":443},{"Bonus":0,"Continent":"K42","ID":58091,"Name":"K42 ADAMUS 023","PlayerID":6212605,"Points":2597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58091","ServerKey":"pl181","X":279,"Y":433},{"Bonus":0,"Continent":"K52","ID":58092,"Name":"New WorldA","PlayerID":849084005,"Points":1200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58092","ServerKey":"pl181","X":274,"Y":537},{"Bonus":0,"Continent":"K57","ID":58093,"Name":"Wioska gmaciejwagner","PlayerID":849114022,"Points":891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58093","ServerKey":"pl181","X":726,"Y":551},{"Bonus":0,"Continent":"K75","ID":58094,"Name":"047 - Budowanko!","PlayerID":7540891,"Points":3944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58094","ServerKey":"pl181","X":571,"Y":729},{"Bonus":0,"Continent":"K36","ID":58095,"Name":"#0221 barbarzyƄska","PlayerID":1238300,"Points":3001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58095","ServerKey":"pl181","X":663,"Y":335},{"Bonus":0,"Continent":"K36","ID":58096,"Name":"042. Wioska barbarzyƄska","PlayerID":2873154,"Points":821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58096","ServerKey":"pl181","X":684,"Y":348},{"Bonus":0,"Continent":"K36","ID":58097,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58097","ServerKey":"pl181","X":669,"Y":341},{"Bonus":0,"Continent":"K26","ID":58098,"Name":"Flap","PlayerID":699098531,"Points":3572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58098","ServerKey":"pl181","X":600,"Y":283},{"Bonus":1,"Continent":"K75","ID":58099,"Name":"-30-","PlayerID":849032414,"Points":3037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58099","ServerKey":"pl181","X":576,"Y":719},{"Bonus":0,"Continent":"K52","ID":58100,"Name":"C0330","PlayerID":8841266,"Points":2697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58100","ServerKey":"pl181","X":267,"Y":549},{"Bonus":0,"Continent":"K33","ID":58101,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58101","ServerKey":"pl181","X":322,"Y":347},{"Bonus":0,"Continent":"K75","ID":58102,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58102","ServerKey":"pl181","X":535,"Y":736},{"Bonus":0,"Continent":"K52","ID":58103,"Name":"Paris","PlayerID":2717161,"Points":2088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58103","ServerKey":"pl181","X":276,"Y":587},{"Bonus":0,"Continent":"K57","ID":58104,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58104","ServerKey":"pl181","X":734,"Y":505},{"Bonus":0,"Continent":"K63","ID":58105,"Name":"O159","PlayerID":272173,"Points":750,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58105","ServerKey":"pl181","X":314,"Y":640},{"Bonus":0,"Continent":"K42","ID":58107,"Name":"[0277]","PlayerID":8630972,"Points":3923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58107","ServerKey":"pl181","X":264,"Y":495},{"Bonus":0,"Continent":"K62","ID":58108,"Name":"002","PlayerID":849100796,"Points":4101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58108","ServerKey":"pl181","X":297,"Y":614},{"Bonus":0,"Continent":"K25","ID":58109,"Name":"North 068","PlayerID":849064752,"Points":5010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58109","ServerKey":"pl181","X":514,"Y":262},{"Bonus":0,"Continent":"K74","ID":58111,"Name":"Bagno 40","PlayerID":848883684,"Points":2633,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58111","ServerKey":"pl181","X":466,"Y":736},{"Bonus":0,"Continent":"K42","ID":58112,"Name":"Wioska Artok","PlayerID":849097477,"Points":1519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58112","ServerKey":"pl181","X":289,"Y":403},{"Bonus":0,"Continent":"K57","ID":58113,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58113","ServerKey":"pl181","X":728,"Y":537},{"Bonus":0,"Continent":"K66","ID":58114,"Name":"Wioska Moddark","PlayerID":6670484,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58114","ServerKey":"pl181","X":645,"Y":678},{"Bonus":0,"Continent":"K26","ID":58115,"Name":"XDX","PlayerID":699098531,"Points":3498,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58115","ServerKey":"pl181","X":611,"Y":295},{"Bonus":0,"Continent":"K52","ID":58116,"Name":"Wyspa 031","PlayerID":225023,"Points":1272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58116","ServerKey":"pl181","X":297,"Y":565},{"Bonus":6,"Continent":"K33","ID":58117,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58117","ServerKey":"pl181","X":372,"Y":307},{"Bonus":0,"Continent":"K57","ID":58118,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58118","ServerKey":"pl181","X":739,"Y":513},{"Bonus":7,"Continent":"K25","ID":58119,"Name":"North 025","PlayerID":849064752,"Points":6887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58119","ServerKey":"pl181","X":511,"Y":267},{"Bonus":0,"Continent":"K36","ID":58120,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58120","ServerKey":"pl181","X":669,"Y":332},{"Bonus":0,"Continent":"K47","ID":58121,"Name":"103","PlayerID":7085502,"Points":1989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58121","ServerKey":"pl181","X":737,"Y":488},{"Bonus":0,"Continent":"K75","ID":58122,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58122","ServerKey":"pl181","X":540,"Y":736},{"Bonus":0,"Continent":"K36","ID":58123,"Name":"-004- Wioska barbarzyƄska","PlayerID":849095068,"Points":307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58123","ServerKey":"pl181","X":685,"Y":348},{"Bonus":0,"Continent":"K63","ID":58124,"Name":"Wioska korek62","PlayerID":7422002,"Points":1451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58124","ServerKey":"pl181","X":338,"Y":664},{"Bonus":0,"Continent":"K43","ID":58125,"Name":"Wioska Addamus","PlayerID":371910,"Points":1903,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58125","ServerKey":"pl181","X":306,"Y":441},{"Bonus":0,"Continent":"K42","ID":58126,"Name":"[0273]","PlayerID":8630972,"Points":3933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58126","ServerKey":"pl181","X":263,"Y":491},{"Bonus":0,"Continent":"K36","ID":58127,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":2676,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58127","ServerKey":"pl181","X":674,"Y":343},{"Bonus":0,"Continent":"K24","ID":58128,"Name":"Polna","PlayerID":2801913,"Points":612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58128","ServerKey":"pl181","X":415,"Y":294},{"Bonus":0,"Continent":"K74","ID":58129,"Name":"13. Ford","PlayerID":849100262,"Points":3096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58129","ServerKey":"pl181","X":460,"Y":736},{"Bonus":0,"Continent":"K24","ID":58130,"Name":"Junak","PlayerID":849114085,"Points":1980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58130","ServerKey":"pl181","X":471,"Y":267},{"Bonus":0,"Continent":"K67","ID":58131,"Name":"WZ09","PlayerID":7142659,"Points":2069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58131","ServerKey":"pl181","X":702,"Y":624},{"Bonus":0,"Continent":"K25","ID":58132,"Name":"Piorunek1996 Wieƛ ..3.. PPF-28","PlayerID":849066618,"Points":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58132","ServerKey":"pl181","X":524,"Y":266},{"Bonus":0,"Continent":"K75","ID":58133,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58133","ServerKey":"pl181","X":565,"Y":724},{"Bonus":6,"Continent":"K24","ID":58134,"Name":"elo","PlayerID":849085160,"Points":975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58134","ServerKey":"pl181","X":432,"Y":271},{"Bonus":0,"Continent":"K75","ID":58136,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58136","ServerKey":"pl181","X":540,"Y":733},{"Bonus":0,"Continent":"K47","ID":58137,"Name":"-004-","PlayerID":7418168,"Points":3971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58137","ServerKey":"pl181","X":731,"Y":490},{"Bonus":0,"Continent":"K46","ID":58138,"Name":"Wioska Sir Christopher Last","PlayerID":699781390,"Points":836,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58138","ServerKey":"pl181","X":629,"Y":483},{"Bonus":0,"Continent":"K62","ID":58139,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58139","ServerKey":"pl181","X":298,"Y":621},{"Bonus":0,"Continent":"K47","ID":58140,"Name":"X.05","PlayerID":699737356,"Points":1638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58140","ServerKey":"pl181","X":729,"Y":449},{"Bonus":0,"Continent":"K36","ID":58141,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":4019,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58141","ServerKey":"pl181","X":623,"Y":306},{"Bonus":0,"Continent":"K47","ID":58142,"Name":"[216]","PlayerID":8000875,"Points":884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58142","ServerKey":"pl181","X":723,"Y":423},{"Bonus":0,"Continent":"K47","ID":58143,"Name":"Kami 3","PlayerID":849002796,"Points":1644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58143","ServerKey":"pl181","X":736,"Y":475},{"Bonus":0,"Continent":"K57","ID":58144,"Name":"ROBIĘ HETMANA","PlayerID":849018780,"Points":1289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58144","ServerKey":"pl181","X":726,"Y":566},{"Bonus":0,"Continent":"K76","ID":58145,"Name":"ble","PlayerID":848909464,"Points":4312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58145","ServerKey":"pl181","X":621,"Y":700},{"Bonus":0,"Continent":"K74","ID":58146,"Name":"Wioska Geamel","PlayerID":9282974,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58146","ServerKey":"pl181","X":421,"Y":725},{"Bonus":0,"Continent":"K52","ID":58147,"Name":"Na SsSskraju","PlayerID":1536625,"Points":307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58147","ServerKey":"pl181","X":276,"Y":573},{"Bonus":0,"Continent":"K63","ID":58148,"Name":"Bunkier","PlayerID":699805839,"Points":363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58148","ServerKey":"pl181","X":344,"Y":676},{"Bonus":0,"Continent":"K33","ID":58149,"Name":"Zaplecze Barba 033","PlayerID":699796330,"Points":4177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58149","ServerKey":"pl181","X":356,"Y":321},{"Bonus":0,"Continent":"K47","ID":58150,"Name":"089. Wioska barbarzyƄska","PlayerID":7494497,"Points":2910,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58150","ServerKey":"pl181","X":735,"Y":459},{"Bonus":0,"Continent":"K24","ID":58151,"Name":"127.Stradi","PlayerID":698365960,"Points":1382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58151","ServerKey":"pl181","X":439,"Y":275},{"Bonus":0,"Continent":"K36","ID":58152,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58152","ServerKey":"pl181","X":639,"Y":313},{"Bonus":0,"Continent":"K63","ID":58153,"Name":"#001 Chicago","PlayerID":849101276,"Points":2283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58153","ServerKey":"pl181","X":332,"Y":664},{"Bonus":0,"Continent":"K47","ID":58154,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58154","ServerKey":"pl181","X":728,"Y":476},{"Bonus":0,"Continent":"K36","ID":58155,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":6463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58155","ServerKey":"pl181","X":630,"Y":302},{"Bonus":0,"Continent":"K75","ID":58156,"Name":"]Zachowek[","PlayerID":192947,"Points":2431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58156","ServerKey":"pl181","X":536,"Y":737},{"Bonus":0,"Continent":"K75","ID":58157,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58157","ServerKey":"pl181","X":539,"Y":731},{"Bonus":0,"Continent":"K57","ID":58158,"Name":"Wioska skwr85","PlayerID":849104121,"Points":2130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58158","ServerKey":"pl181","X":723,"Y":551},{"Bonus":0,"Continent":"K52","ID":58159,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58159","ServerKey":"pl181","X":269,"Y":505},{"Bonus":0,"Continent":"K52","ID":58160,"Name":"Na SsSskraju","PlayerID":1536625,"Points":871,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58160","ServerKey":"pl181","X":276,"Y":571},{"Bonus":0,"Continent":"K63","ID":58161,"Name":"39.","PlayerID":8665783,"Points":749,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58161","ServerKey":"pl181","X":331,"Y":668},{"Bonus":9,"Continent":"K74","ID":58162,"Name":"New World","PlayerID":698152377,"Points":3110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58162","ServerKey":"pl181","X":435,"Y":728},{"Bonus":0,"Continent":"K42","ID":58163,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58163","ServerKey":"pl181","X":261,"Y":489},{"Bonus":0,"Continent":"K42","ID":58164,"Name":"Wioska gall7","PlayerID":699598396,"Points":754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58164","ServerKey":"pl181","X":266,"Y":471},{"Bonus":0,"Continent":"K42","ID":58165,"Name":"Maryna 2","PlayerID":699650981,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58165","ServerKey":"pl181","X":268,"Y":457},{"Bonus":0,"Continent":"K66","ID":58166,"Name":"Sony 911","PlayerID":1415009,"Points":4266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58166","ServerKey":"pl181","X":673,"Y":653},{"Bonus":0,"Continent":"K47","ID":58167,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58167","ServerKey":"pl181","X":730,"Y":443},{"Bonus":0,"Continent":"K24","ID":58168,"Name":"North 081","PlayerID":849064752,"Points":4289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58168","ServerKey":"pl181","X":487,"Y":262},{"Bonus":0,"Continent":"K25","ID":58170,"Name":"Wioska barbarzyƄska","PlayerID":849010386,"Points":960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58170","ServerKey":"pl181","X":543,"Y":266},{"Bonus":0,"Continent":"K66","ID":58171,"Name":"Gandalf","PlayerID":849112504,"Points":3131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58171","ServerKey":"pl181","X":680,"Y":641},{"Bonus":0,"Continent":"K36","ID":58172,"Name":"Wioska krycha9867","PlayerID":6995252,"Points":278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58172","ServerKey":"pl181","X":690,"Y":361},{"Bonus":0,"Continent":"K42","ID":58173,"Name":"Wioska lord leoni","PlayerID":8897100,"Points":884,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58173","ServerKey":"pl181","X":272,"Y":459},{"Bonus":0,"Continent":"K57","ID":58175,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58175","ServerKey":"pl181","X":732,"Y":557},{"Bonus":2,"Continent":"K42","ID":58176,"Name":"ZakƂad","PlayerID":848977600,"Points":2186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58176","ServerKey":"pl181","X":262,"Y":474},{"Bonus":0,"Continent":"K52","ID":58177,"Name":"Wioska lukaszking2","PlayerID":128353,"Points":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58177","ServerKey":"pl181","X":271,"Y":512},{"Bonus":0,"Continent":"K75","ID":58178,"Name":"Wioska Lord Ɓukasz1997","PlayerID":9097545,"Points":2138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58178","ServerKey":"pl181","X":512,"Y":739},{"Bonus":0,"Continent":"K32","ID":58179,"Name":"rohan","PlayerID":698677650,"Points":1505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58179","ServerKey":"pl181","X":293,"Y":396},{"Bonus":0,"Continent":"K25","ID":58180,"Name":"PPF-44","PlayerID":1424656,"Points":434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58180","ServerKey":"pl181","X":500,"Y":263},{"Bonus":0,"Continent":"K73","ID":58181,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58181","ServerKey":"pl181","X":381,"Y":703},{"Bonus":0,"Continent":"K52","ID":58182,"Name":"Elo Elo 20","PlayerID":699016994,"Points":930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58182","ServerKey":"pl181","X":280,"Y":584},{"Bonus":0,"Continent":"K75","ID":58183,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":1634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58183","ServerKey":"pl181","X":597,"Y":718},{"Bonus":0,"Continent":"K75","ID":58184,"Name":"Wiocha 7","PlayerID":849045675,"Points":2578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58184","ServerKey":"pl181","X":559,"Y":723},{"Bonus":0,"Continent":"K26","ID":58185,"Name":"XDX","PlayerID":699098531,"Points":3641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58185","ServerKey":"pl181","X":606,"Y":286},{"Bonus":0,"Continent":"K24","ID":58186,"Name":"Wioska Robert Nowakowski Jan","PlayerID":849101396,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58186","ServerKey":"pl181","X":429,"Y":277},{"Bonus":0,"Continent":"K33","ID":58187,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58187","ServerKey":"pl181","X":301,"Y":380},{"Bonus":0,"Continent":"K52","ID":58188,"Name":"Wioska 1","PlayerID":849114265,"Points":8569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58188","ServerKey":"pl181","X":266,"Y":510},{"Bonus":0,"Continent":"K24","ID":58189,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":2940,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58189","ServerKey":"pl181","X":464,"Y":268},{"Bonus":0,"Continent":"K67","ID":58190,"Name":"Wioska exim","PlayerID":699858532,"Points":602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58190","ServerKey":"pl181","X":714,"Y":607},{"Bonus":0,"Continent":"K57","ID":58191,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58191","ServerKey":"pl181","X":729,"Y":528},{"Bonus":0,"Continent":"K74","ID":58192,"Name":"#401 F","PlayerID":9037756,"Points":1568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58192","ServerKey":"pl181","X":445,"Y":723},{"Bonus":0,"Continent":"K24","ID":58193,"Name":"Wioska barbara","PlayerID":3411571,"Points":4205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58193","ServerKey":"pl181","X":419,"Y":285},{"Bonus":0,"Continent":"K62","ID":58194,"Name":"Wioska marq135","PlayerID":699598671,"Points":1160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58194","ServerKey":"pl181","X":293,"Y":605},{"Bonus":0,"Continent":"K66","ID":58195,"Name":"Nowe Dobra - budowa","PlayerID":699759128,"Points":3590,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58195","ServerKey":"pl181","X":690,"Y":629},{"Bonus":0,"Continent":"K52","ID":58196,"Name":"080 obrzeĆŒa","PlayerID":699510259,"Points":1073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58196","ServerKey":"pl181","X":273,"Y":562},{"Bonus":0,"Continent":"K52","ID":58197,"Name":"C0322","PlayerID":8841266,"Points":2339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58197","ServerKey":"pl181","X":268,"Y":554},{"Bonus":0,"Continent":"K66","ID":58198,"Name":"Sony 911","PlayerID":1415009,"Points":2448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58198","ServerKey":"pl181","X":677,"Y":658},{"Bonus":0,"Continent":"K42","ID":58199,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58199","ServerKey":"pl181","X":272,"Y":468},{"Bonus":0,"Continent":"K33","ID":58200,"Name":"Janapola02","PlayerID":698806018,"Points":419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58200","ServerKey":"pl181","X":333,"Y":337},{"Bonus":0,"Continent":"K57","ID":58201,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":431,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58201","ServerKey":"pl181","X":733,"Y":548},{"Bonus":0,"Continent":"K75","ID":58202,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58202","ServerKey":"pl181","X":564,"Y":730},{"Bonus":0,"Continent":"K52","ID":58203,"Name":"089 obrzeĆŒa","PlayerID":699510259,"Points":703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58203","ServerKey":"pl181","X":270,"Y":563},{"Bonus":0,"Continent":"K66","ID":58204,"Name":"sony911","PlayerID":1415009,"Points":1323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58204","ServerKey":"pl181","X":691,"Y":639},{"Bonus":0,"Continent":"K42","ID":58205,"Name":"Avanti!","PlayerID":698625834,"Points":1299,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58205","ServerKey":"pl181","X":265,"Y":479},{"Bonus":0,"Continent":"K33","ID":58206,"Name":"#004","PlayerID":849110743,"Points":3776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58206","ServerKey":"pl181","X":308,"Y":369},{"Bonus":0,"Continent":"K47","ID":58207,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58207","ServerKey":"pl181","X":723,"Y":412},{"Bonus":0,"Continent":"K75","ID":58208,"Name":"Wioska barbarzyƄska","PlayerID":848909464,"Points":2402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58208","ServerKey":"pl181","X":592,"Y":712},{"Bonus":0,"Continent":"K74","ID":58209,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":3873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58209","ServerKey":"pl181","X":404,"Y":717},{"Bonus":0,"Continent":"K47","ID":58210,"Name":"DCS","PlayerID":699687328,"Points":2584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58210","ServerKey":"pl181","X":725,"Y":446},{"Bonus":5,"Continent":"K37","ID":58211,"Name":"032. Brauer92","PlayerID":2873154,"Points":4156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58211","ServerKey":"pl181","X":704,"Y":376},{"Bonus":0,"Continent":"K57","ID":58212,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58212","ServerKey":"pl181","X":739,"Y":522},{"Bonus":0,"Continent":"K36","ID":58213,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":3939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58213","ServerKey":"pl181","X":625,"Y":305},{"Bonus":0,"Continent":"K52","ID":58214,"Name":"035. Gloria Victis","PlayerID":848886973,"Points":4218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58214","ServerKey":"pl181","X":282,"Y":571},{"Bonus":0,"Continent":"K66","ID":58215,"Name":"Wioska przemomam","PlayerID":9147518,"Points":1945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58215","ServerKey":"pl181","X":697,"Y":632},{"Bonus":0,"Continent":"K62","ID":58216,"Name":"SKUTE BO BO","PlayerID":699774694,"Points":1165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58216","ServerKey":"pl181","X":288,"Y":603},{"Bonus":0,"Continent":"K25","ID":58217,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":785,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58217","ServerKey":"pl181","X":579,"Y":280},{"Bonus":0,"Continent":"K75","ID":58218,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":4457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58218","ServerKey":"pl181","X":540,"Y":735},{"Bonus":0,"Continent":"K36","ID":58219,"Name":"[001] Wiesz nie","PlayerID":699477624,"Points":4867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58219","ServerKey":"pl181","X":662,"Y":323},{"Bonus":0,"Continent":"K66","ID":58220,"Name":"Sony 911","PlayerID":1415009,"Points":4022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58220","ServerKey":"pl181","X":687,"Y":646},{"Bonus":0,"Continent":"K33","ID":58221,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58221","ServerKey":"pl181","X":345,"Y":325},{"Bonus":7,"Continent":"K74","ID":58222,"Name":"ChceszPokojuSzykujSięDoWojny","PlayerID":699333701,"Points":1770,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58222","ServerKey":"pl181","X":470,"Y":734},{"Bonus":0,"Continent":"K76","ID":58223,"Name":"ble","PlayerID":848909464,"Points":3119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58223","ServerKey":"pl181","X":623,"Y":700},{"Bonus":0,"Continent":"K76","ID":58224,"Name":"095 koniec ƛwiata","PlayerID":849093426,"Points":3101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58224","ServerKey":"pl181","X":622,"Y":705},{"Bonus":0,"Continent":"K24","ID":58225,"Name":"238...North","PlayerID":6920960,"Points":1218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58225","ServerKey":"pl181","X":445,"Y":276},{"Bonus":0,"Continent":"K74","ID":58226,"Name":"FP047","PlayerID":699605333,"Points":4244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58226","ServerKey":"pl181","X":469,"Y":733},{"Bonus":0,"Continent":"K47","ID":58227,"Name":"088. Wioska barbarzyƄska","PlayerID":7494497,"Points":2855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58227","ServerKey":"pl181","X":731,"Y":471},{"Bonus":0,"Continent":"K52","ID":58228,"Name":"C0319","PlayerID":8841266,"Points":2445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58228","ServerKey":"pl181","X":272,"Y":522},{"Bonus":0,"Continent":"K74","ID":58229,"Name":"Taka.","PlayerID":848999671,"Points":1116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58229","ServerKey":"pl181","X":484,"Y":729},{"Bonus":0,"Continent":"K42","ID":58230,"Name":"[001] Sqaza","PlayerID":6692351,"Points":1381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58230","ServerKey":"pl181","X":269,"Y":456},{"Bonus":0,"Continent":"K63","ID":58231,"Name":"Wioska II","PlayerID":849095948,"Points":614,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58231","ServerKey":"pl181","X":313,"Y":651},{"Bonus":6,"Continent":"K25","ID":58232,"Name":"XDX","PlayerID":699098531,"Points":3673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58232","ServerKey":"pl181","X":599,"Y":282},{"Bonus":0,"Continent":"K74","ID":58233,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1705,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58233","ServerKey":"pl181","X":401,"Y":719},{"Bonus":0,"Continent":"K52","ID":58234,"Name":"@@@@","PlayerID":698879638,"Points":1130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58234","ServerKey":"pl181","X":264,"Y":523},{"Bonus":0,"Continent":"K26","ID":58235,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58235","ServerKey":"pl181","X":609,"Y":292},{"Bonus":0,"Continent":"K75","ID":58236,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58236","ServerKey":"pl181","X":532,"Y":729},{"Bonus":0,"Continent":"K63","ID":58237,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58237","ServerKey":"pl181","X":321,"Y":656},{"Bonus":0,"Continent":"K36","ID":58238,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58238","ServerKey":"pl181","X":662,"Y":328},{"Bonus":0,"Continent":"K36","ID":58239,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1650,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58239","ServerKey":"pl181","X":674,"Y":336},{"Bonus":0,"Continent":"K57","ID":58240,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":1112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58240","ServerKey":"pl181","X":727,"Y":543},{"Bonus":26,"Continent":"K47","ID":58241,"Name":"Twierdza (PRS)","PlayerID":0,"Points":2693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58241","ServerKey":"pl181","X":704,"Y":434},{"Bonus":0,"Continent":"K32","ID":58242,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58242","ServerKey":"pl181","X":293,"Y":399},{"Bonus":0,"Continent":"K63","ID":58243,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58243","ServerKey":"pl181","X":331,"Y":663},{"Bonus":0,"Continent":"K52","ID":58244,"Name":"0000044Z","PlayerID":849089881,"Points":781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58244","ServerKey":"pl181","X":267,"Y":558},{"Bonus":0,"Continent":"K56","ID":58245,"Name":"Experience","PlayerID":848926293,"Points":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58245","ServerKey":"pl181","X":656,"Y":573},{"Bonus":0,"Continent":"K25","ID":58246,"Name":"PPF-17","PlayerID":1424656,"Points":2190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58246","ServerKey":"pl181","X":517,"Y":266},{"Bonus":0,"Continent":"K24","ID":58247,"Name":"181 Wioska","PlayerID":3499467,"Points":347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58247","ServerKey":"pl181","X":494,"Y":266},{"Bonus":0,"Continent":"K33","ID":58248,"Name":"Zaplecze Barba 049","PlayerID":699796330,"Points":1211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58248","ServerKey":"pl181","X":341,"Y":328},{"Bonus":2,"Continent":"K63","ID":58249,"Name":"Osada koczownikĂłw","PlayerID":8175236,"Points":717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58249","ServerKey":"pl181","X":327,"Y":654},{"Bonus":0,"Continent":"K47","ID":58250,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":2457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58250","ServerKey":"pl181","X":718,"Y":411},{"Bonus":0,"Continent":"K33","ID":58251,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58251","ServerKey":"pl181","X":315,"Y":360},{"Bonus":0,"Continent":"K47","ID":58252,"Name":"Ghostmane9","PlayerID":848896434,"Points":571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58252","ServerKey":"pl181","X":726,"Y":455},{"Bonus":0,"Continent":"K42","ID":58253,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3464,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58253","ServerKey":"pl181","X":269,"Y":445},{"Bonus":0,"Continent":"K25","ID":58254,"Name":"Wioska Arlosik","PlayerID":849112960,"Points":1453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58254","ServerKey":"pl181","X":514,"Y":261},{"Bonus":0,"Continent":"K36","ID":58256,"Name":"MikoƂów","PlayerID":848932879,"Points":341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58256","ServerKey":"pl181","X":681,"Y":346},{"Bonus":0,"Continent":"K67","ID":58257,"Name":"Wz07","PlayerID":7142659,"Points":2566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58257","ServerKey":"pl181","X":706,"Y":602},{"Bonus":0,"Continent":"K75","ID":58258,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58258","ServerKey":"pl181","X":548,"Y":730},{"Bonus":0,"Continent":"K66","ID":58259,"Name":"#142#","PlayerID":692803,"Points":1357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58259","ServerKey":"pl181","X":649,"Y":676},{"Bonus":0,"Continent":"K25","ID":58260,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":5522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58260","ServerKey":"pl181","X":506,"Y":267},{"Bonus":4,"Continent":"K36","ID":58261,"Name":"Osada koczownikĂłw","PlayerID":849092309,"Points":873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58261","ServerKey":"pl181","X":655,"Y":325},{"Bonus":0,"Continent":"K47","ID":58262,"Name":"Wioska AP1997","PlayerID":9095581,"Points":2289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58262","ServerKey":"pl181","X":720,"Y":422},{"Bonus":0,"Continent":"K25","ID":58264,"Name":"#025","PlayerID":849064614,"Points":2256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58264","ServerKey":"pl181","X":552,"Y":268},{"Bonus":0,"Continent":"K35","ID":58265,"Name":"Wioska barbarzyƄska","PlayerID":698200480,"Points":939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58265","ServerKey":"pl181","X":586,"Y":346},{"Bonus":2,"Continent":"K33","ID":58266,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58266","ServerKey":"pl181","X":302,"Y":375},{"Bonus":0,"Continent":"K36","ID":58267,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":1008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58267","ServerKey":"pl181","X":643,"Y":308},{"Bonus":0,"Continent":"K37","ID":58268,"Name":"0119","PlayerID":698416970,"Points":718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58268","ServerKey":"pl181","X":702,"Y":377},{"Bonus":6,"Continent":"K47","ID":58269,"Name":"A#047","PlayerID":2065730,"Points":5447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58269","ServerKey":"pl181","X":738,"Y":469},{"Bonus":0,"Continent":"K25","ID":58270,"Name":"Wioska Ragnarok 76","PlayerID":849114408,"Points":1027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58270","ServerKey":"pl181","X":592,"Y":287},{"Bonus":0,"Continent":"K75","ID":58271,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58271","ServerKey":"pl181","X":538,"Y":737},{"Bonus":0,"Continent":"K63","ID":58272,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58272","ServerKey":"pl181","X":328,"Y":657},{"Bonus":0,"Continent":"K76","ID":58273,"Name":"Wioska slawekx28","PlayerID":6766467,"Points":255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58273","ServerKey":"pl181","X":619,"Y":708},{"Bonus":0,"Continent":"K25","ID":58274,"Name":"North 052","PlayerID":849064752,"Points":4423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58274","ServerKey":"pl181","X":514,"Y":260},{"Bonus":0,"Continent":"K57","ID":58276,"Name":"Wioska 001","PlayerID":7751626,"Points":524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58276","ServerKey":"pl181","X":731,"Y":552},{"Bonus":0,"Continent":"K25","ID":58277,"Name":"PPF-31","PlayerID":1424656,"Points":1188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58277","ServerKey":"pl181","X":566,"Y":277},{"Bonus":32,"Continent":"K63","ID":58278,"Name":"Twierdza (KOMY)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58278","ServerKey":"pl181","X":386,"Y":600},{"Bonus":0,"Continent":"K33","ID":58279,"Name":"Kolonia","PlayerID":699588526,"Points":546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58279","ServerKey":"pl181","X":384,"Y":303},{"Bonus":0,"Continent":"K54","ID":58280,"Name":"235 Bombaj","PlayerID":1497168,"Points":1987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58280","ServerKey":"pl181","X":483,"Y":510},{"Bonus":0,"Continent":"K76","ID":58281,"Name":"093 koniec ƛwiata","PlayerID":849093426,"Points":2504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58281","ServerKey":"pl181","X":614,"Y":701},{"Bonus":0,"Continent":"K63","ID":58282,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58282","ServerKey":"pl181","X":367,"Y":695},{"Bonus":0,"Continent":"K33","ID":58283,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58283","ServerKey":"pl181","X":370,"Y":300},{"Bonus":0,"Continent":"K47","ID":58284,"Name":"X.06","PlayerID":699737356,"Points":1755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58284","ServerKey":"pl181","X":728,"Y":438},{"Bonus":0,"Continent":"K24","ID":58285,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58285","ServerKey":"pl181","X":424,"Y":274},{"Bonus":0,"Continent":"K66","ID":58286,"Name":"WZ15","PlayerID":7142659,"Points":856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58286","ServerKey":"pl181","X":688,"Y":633},{"Bonus":0,"Continent":"K24","ID":58287,"Name":"Defini","PlayerID":699308637,"Points":652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58287","ServerKey":"pl181","X":444,"Y":268},{"Bonus":0,"Continent":"K73","ID":58288,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58288","ServerKey":"pl181","X":375,"Y":703},{"Bonus":0,"Continent":"K33","ID":58289,"Name":"adam1","PlayerID":6618608,"Points":983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58289","ServerKey":"pl181","X":336,"Y":330},{"Bonus":0,"Continent":"K76","ID":58290,"Name":"o017","PlayerID":699189792,"Points":3671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58290","ServerKey":"pl181","X":625,"Y":702},{"Bonus":0,"Continent":"K36","ID":58291,"Name":"056","PlayerID":849091105,"Points":328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58291","ServerKey":"pl181","X":687,"Y":355},{"Bonus":5,"Continent":"K24","ID":58292,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58292","ServerKey":"pl181","X":478,"Y":261},{"Bonus":0,"Continent":"K33","ID":58295,"Name":"Zaplecze Barba 050","PlayerID":699796330,"Points":1559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58295","ServerKey":"pl181","X":346,"Y":328},{"Bonus":0,"Continent":"K25","ID":58297,"Name":"North K25","PlayerID":699146580,"Points":2042,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58297","ServerKey":"pl181","X":555,"Y":272},{"Bonus":0,"Continent":"K52","ID":58298,"Name":"C0335","PlayerID":8841266,"Points":1176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58298","ServerKey":"pl181","X":265,"Y":528},{"Bonus":0,"Continent":"K52","ID":58299,"Name":"009","PlayerID":698663855,"Points":3979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58299","ServerKey":"pl181","X":286,"Y":591},{"Bonus":0,"Continent":"K63","ID":58300,"Name":"Wioska Ale AHMED","PlayerID":7687862,"Points":338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58300","ServerKey":"pl181","X":319,"Y":640},{"Bonus":0,"Continent":"K25","ID":58301,"Name":"PPF-14","PlayerID":1424656,"Points":2607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58301","ServerKey":"pl181","X":517,"Y":271},{"Bonus":0,"Continent":"K33","ID":58302,"Name":"WB50","PlayerID":356642,"Points":315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58302","ServerKey":"pl181","X":302,"Y":367},{"Bonus":0,"Continent":"K25","ID":58303,"Name":"#028","PlayerID":849064614,"Points":2065,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58303","ServerKey":"pl181","X":554,"Y":266},{"Bonus":0,"Continent":"K63","ID":58304,"Name":"40.","PlayerID":8665783,"Points":830,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58304","ServerKey":"pl181","X":332,"Y":666},{"Bonus":0,"Continent":"K66","ID":58305,"Name":"o019","PlayerID":699189792,"Points":3345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58305","ServerKey":"pl181","X":629,"Y":699},{"Bonus":0,"Continent":"K74","ID":58306,"Name":"Wioska barbarzyƄska","PlayerID":848999671,"Points":979,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58306","ServerKey":"pl181","X":496,"Y":733},{"Bonus":0,"Continent":"K74","ID":58307,"Name":"Taka.","PlayerID":848999671,"Points":1601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58307","ServerKey":"pl181","X":479,"Y":736},{"Bonus":0,"Continent":"K24","ID":58309,"Name":"????","PlayerID":698489071,"Points":5036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58309","ServerKey":"pl181","X":491,"Y":264},{"Bonus":0,"Continent":"K24","ID":58310,"Name":"Wioska barbarzyƄska","PlayerID":849090573,"Points":286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58310","ServerKey":"pl181","X":459,"Y":272},{"Bonus":0,"Continent":"K66","ID":58311,"Name":"#141#","PlayerID":692803,"Points":1369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58311","ServerKey":"pl181","X":669,"Y":669},{"Bonus":0,"Continent":"K63","ID":58312,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58312","ServerKey":"pl181","X":348,"Y":679},{"Bonus":0,"Continent":"K73","ID":58313,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58313","ServerKey":"pl181","X":376,"Y":702},{"Bonus":0,"Continent":"K73","ID":58314,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58314","ServerKey":"pl181","X":380,"Y":704},{"Bonus":0,"Continent":"K47","ID":58315,"Name":"rycho 13","PlayerID":2819768,"Points":1878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58315","ServerKey":"pl181","X":739,"Y":495},{"Bonus":0,"Continent":"K57","ID":58316,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58316","ServerKey":"pl181","X":738,"Y":511},{"Bonus":0,"Continent":"K26","ID":58317,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58317","ServerKey":"pl181","X":603,"Y":290},{"Bonus":0,"Continent":"K25","ID":58318,"Name":"PPF-18","PlayerID":1424656,"Points":1998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58318","ServerKey":"pl181","X":525,"Y":270},{"Bonus":0,"Continent":"K63","ID":58319,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58319","ServerKey":"pl181","X":314,"Y":649},{"Bonus":0,"Continent":"K26","ID":58320,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58320","ServerKey":"pl181","X":610,"Y":287},{"Bonus":0,"Continent":"K24","ID":58321,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58321","ServerKey":"pl181","X":424,"Y":272},{"Bonus":0,"Continent":"K33","ID":58322,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":27,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58322","ServerKey":"pl181","X":366,"Y":312},{"Bonus":0,"Continent":"K47","ID":58323,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":1968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58323","ServerKey":"pl181","X":733,"Y":468},{"Bonus":0,"Continent":"K52","ID":58324,"Name":"C0356","PlayerID":8841266,"Points":393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58324","ServerKey":"pl181","X":268,"Y":516},{"Bonus":0,"Continent":"K57","ID":58325,"Name":"A10","PlayerID":3692413,"Points":857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58325","ServerKey":"pl181","X":715,"Y":586},{"Bonus":0,"Continent":"K36","ID":58326,"Name":"Wioska barbarzyƄska","PlayerID":848915730,"Points":881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58326","ServerKey":"pl181","X":689,"Y":358},{"Bonus":0,"Continent":"K25","ID":58327,"Name":"North K25","PlayerID":699146580,"Points":1493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58327","ServerKey":"pl181","X":566,"Y":278},{"Bonus":0,"Continent":"K24","ID":58328,"Name":"BIMBER 4","PlayerID":6857973,"Points":941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58328","ServerKey":"pl181","X":441,"Y":278},{"Bonus":0,"Continent":"K67","ID":58330,"Name":"K67 14","PlayerID":698867483,"Points":3558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58330","ServerKey":"pl181","X":702,"Y":623},{"Bonus":0,"Continent":"K75","ID":58332,"Name":"#209 C","PlayerID":9037756,"Points":1289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58332","ServerKey":"pl181","X":516,"Y":730},{"Bonus":7,"Continent":"K75","ID":58333,"Name":"Kapitol_29","PlayerID":606407,"Points":1195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58333","ServerKey":"pl181","X":510,"Y":729},{"Bonus":0,"Continent":"K63","ID":58334,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58334","ServerKey":"pl181","X":314,"Y":636},{"Bonus":0,"Continent":"K66","ID":58335,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58335","ServerKey":"pl181","X":638,"Y":684},{"Bonus":0,"Continent":"K66","ID":58336,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":3344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58336","ServerKey":"pl181","X":653,"Y":676},{"Bonus":0,"Continent":"K33","ID":58337,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58337","ServerKey":"pl181","X":320,"Y":356},{"Bonus":0,"Continent":"K47","ID":58338,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":571,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58338","ServerKey":"pl181","X":725,"Y":422},{"Bonus":0,"Continent":"K57","ID":58339,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58339","ServerKey":"pl181","X":736,"Y":538},{"Bonus":0,"Continent":"K73","ID":58340,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58340","ServerKey":"pl181","X":383,"Y":703},{"Bonus":0,"Continent":"K25","ID":58341,"Name":"Flap","PlayerID":699098531,"Points":3895,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58341","ServerKey":"pl181","X":598,"Y":286},{"Bonus":0,"Continent":"K25","ID":58342,"Name":"Wioska CrazyJack","PlayerID":699835178,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58342","ServerKey":"pl181","X":599,"Y":281},{"Bonus":0,"Continent":"K36","ID":58344,"Name":"U-11","PlayerID":3600737,"Points":2157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58344","ServerKey":"pl181","X":647,"Y":310},{"Bonus":0,"Continent":"K66","ID":58346,"Name":"Bar","PlayerID":849048856,"Points":3873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58346","ServerKey":"pl181","X":668,"Y":662},{"Bonus":0,"Continent":"K52","ID":58347,"Name":"New WorldA","PlayerID":849084005,"Points":727,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58347","ServerKey":"pl181","X":276,"Y":545},{"Bonus":0,"Continent":"K36","ID":58348,"Name":"0-16","PlayerID":3600737,"Points":1704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58348","ServerKey":"pl181","X":696,"Y":360},{"Bonus":0,"Continent":"K52","ID":58349,"Name":"pinek 222","PlayerID":849103947,"Points":207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58349","ServerKey":"pl181","X":289,"Y":592},{"Bonus":0,"Continent":"K57","ID":58350,"Name":"Alamo5","PlayerID":2723244,"Points":1513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58350","ServerKey":"pl181","X":719,"Y":569},{"Bonus":0,"Continent":"K42","ID":58351,"Name":"28 barbarzyƄska","PlayerID":849018442,"Points":2758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58351","ServerKey":"pl181","X":271,"Y":437},{"Bonus":0,"Continent":"K42","ID":58352,"Name":"Wioska Zoso2000o","PlayerID":3639628,"Points":2198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58352","ServerKey":"pl181","X":277,"Y":413},{"Bonus":0,"Continent":"K57","ID":58353,"Name":"Wioska 009","PlayerID":2999957,"Points":2600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58353","ServerKey":"pl181","X":732,"Y":503},{"Bonus":0,"Continent":"K47","ID":58354,"Name":"04 Wioska barbarzyƄska","PlayerID":8785003,"Points":945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58354","ServerKey":"pl181","X":725,"Y":435},{"Bonus":0,"Continent":"K42","ID":58355,"Name":"37barbarzyƄska 2B","PlayerID":849018442,"Points":2347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58355","ServerKey":"pl181","X":273,"Y":431},{"Bonus":0,"Continent":"K33","ID":58357,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58357","ServerKey":"pl181","X":348,"Y":326},{"Bonus":0,"Continent":"K23","ID":58358,"Name":"128.Stradi","PlayerID":698365960,"Points":2679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58358","ServerKey":"pl181","X":395,"Y":295},{"Bonus":0,"Continent":"K25","ID":58359,"Name":"Wioska Wieslaw 5","PlayerID":699794421,"Points":1282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58359","ServerKey":"pl181","X":512,"Y":270},{"Bonus":0,"Continent":"K75","ID":58360,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58360","ServerKey":"pl181","X":531,"Y":728},{"Bonus":0,"Continent":"K33","ID":58361,"Name":"Wioska semunus","PlayerID":699776412,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58361","ServerKey":"pl181","X":319,"Y":353},{"Bonus":0,"Continent":"K52","ID":58362,"Name":"002","PlayerID":699730998,"Points":478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58362","ServerKey":"pl181","X":276,"Y":585},{"Bonus":0,"Continent":"K74","ID":58363,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58363","ServerKey":"pl181","X":406,"Y":713},{"Bonus":0,"Continent":"K74","ID":58364,"Name":"Taka.","PlayerID":848999671,"Points":1543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58364","ServerKey":"pl181","X":482,"Y":735},{"Bonus":0,"Continent":"K33","ID":58365,"Name":"Wioska KsiÄ™ĆŒnaAnna","PlayerID":699491827,"Points":743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58365","ServerKey":"pl181","X":378,"Y":302},{"Bonus":0,"Continent":"K24","ID":58366,"Name":"138.Stradi","PlayerID":698365960,"Points":1091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58366","ServerKey":"pl181","X":401,"Y":293},{"Bonus":0,"Continent":"K42","ID":58367,"Name":"godziwa","PlayerID":1095271,"Points":2022,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58367","ServerKey":"pl181","X":268,"Y":476},{"Bonus":0,"Continent":"K73","ID":58368,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":568,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58368","ServerKey":"pl181","X":382,"Y":700},{"Bonus":0,"Continent":"K24","ID":58369,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58369","ServerKey":"pl181","X":452,"Y":272},{"Bonus":0,"Continent":"K74","ID":58370,"Name":"New World","PlayerID":698152377,"Points":3684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58370","ServerKey":"pl181","X":420,"Y":724},{"Bonus":8,"Continent":"K66","ID":58371,"Name":"Osada koczownikĂłw","PlayerID":698353083,"Points":990,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58371","ServerKey":"pl181","X":622,"Y":696},{"Bonus":0,"Continent":"K36","ID":58372,"Name":"043. Mercel","PlayerID":2873154,"Points":577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58372","ServerKey":"pl181","X":681,"Y":344},{"Bonus":0,"Continent":"K66","ID":58374,"Name":"Sony 911","PlayerID":1415009,"Points":3537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58374","ServerKey":"pl181","X":672,"Y":659},{"Bonus":0,"Continent":"K32","ID":58375,"Name":"Wioska KRIS 74 PL","PlayerID":9029627,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58375","ServerKey":"pl181","X":298,"Y":377},{"Bonus":0,"Continent":"K37","ID":58376,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":1405,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58376","ServerKey":"pl181","X":702,"Y":380},{"Bonus":0,"Continent":"K75","ID":58378,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58378","ServerKey":"pl181","X":523,"Y":736},{"Bonus":0,"Continent":"K23","ID":58379,"Name":"FENIX","PlayerID":9016464,"Points":3572,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58379","ServerKey":"pl181","X":389,"Y":296},{"Bonus":0,"Continent":"K33","ID":58380,"Name":"adam2","PlayerID":6618608,"Points":747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58380","ServerKey":"pl181","X":337,"Y":327},{"Bonus":0,"Continent":"K52","ID":58381,"Name":"Wioska robosm3352","PlayerID":1684948,"Points":108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58381","ServerKey":"pl181","X":267,"Y":516},{"Bonus":0,"Continent":"K52","ID":58382,"Name":"Elo Elo 19","PlayerID":699016994,"Points":1173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58382","ServerKey":"pl181","X":279,"Y":584},{"Bonus":0,"Continent":"K75","ID":58383,"Name":"akuku","PlayerID":6425087,"Points":5196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58383","ServerKey":"pl181","X":549,"Y":730},{"Bonus":0,"Continent":"K52","ID":58384,"Name":"New WorldA","PlayerID":849084005,"Points":1044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58384","ServerKey":"pl181","X":267,"Y":530},{"Bonus":0,"Continent":"K76","ID":58386,"Name":"098 koniec ƛwiata","PlayerID":849093426,"Points":2176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58386","ServerKey":"pl181","X":626,"Y":702},{"Bonus":0,"Continent":"K23","ID":58387,"Name":"+01","PlayerID":699741694,"Points":1739,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58387","ServerKey":"pl181","X":397,"Y":291},{"Bonus":0,"Continent":"K36","ID":58388,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1589,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58388","ServerKey":"pl181","X":675,"Y":341},{"Bonus":9,"Continent":"K25","ID":58389,"Name":"Osada koczownikĂłw","PlayerID":699799629,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58389","ServerKey":"pl181","X":530,"Y":263},{"Bonus":0,"Continent":"K25","ID":58390,"Name":"Wioska Banan123","PlayerID":849112887,"Points":1214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58390","ServerKey":"pl181","X":565,"Y":270},{"Bonus":0,"Continent":"K52","ID":58391,"Name":"[J]esiotr","PlayerID":849106971,"Points":511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58391","ServerKey":"pl181","X":275,"Y":546},{"Bonus":0,"Continent":"K74","ID":58392,"Name":"Wioska barbarzyƄska","PlayerID":848999671,"Points":392,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58392","ServerKey":"pl181","X":471,"Y":733},{"Bonus":0,"Continent":"K33","ID":58393,"Name":"WB49","PlayerID":356642,"Points":514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58393","ServerKey":"pl181","X":303,"Y":365},{"Bonus":0,"Continent":"K24","ID":58394,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":782,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58394","ServerKey":"pl181","X":429,"Y":271},{"Bonus":0,"Continent":"K33","ID":58395,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58395","ServerKey":"pl181","X":377,"Y":306},{"Bonus":0,"Continent":"K37","ID":58396,"Name":"Wioska jaworbog","PlayerID":2256843,"Points":758,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58396","ServerKey":"pl181","X":712,"Y":392},{"Bonus":0,"Continent":"K24","ID":58397,"Name":"Wioska b 005","PlayerID":6343784,"Points":962,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58397","ServerKey":"pl181","X":404,"Y":292},{"Bonus":0,"Continent":"K42","ID":58398,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58398","ServerKey":"pl181","X":275,"Y":430},{"Bonus":0,"Continent":"K42","ID":58399,"Name":"[0242]","PlayerID":8630972,"Points":3924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58399","ServerKey":"pl181","X":268,"Y":495},{"Bonus":0,"Continent":"K36","ID":58400,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":1798,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58400","ServerKey":"pl181","X":655,"Y":323},{"Bonus":0,"Continent":"K63","ID":58401,"Name":"Bunkier","PlayerID":699805839,"Points":356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58401","ServerKey":"pl181","X":343,"Y":675},{"Bonus":0,"Continent":"K63","ID":58402,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58402","ServerKey":"pl181","X":306,"Y":640},{"Bonus":0,"Continent":"K52","ID":58403,"Name":"6. Meleys","PlayerID":849089499,"Points":693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58403","ServerKey":"pl181","X":273,"Y":578},{"Bonus":0,"Continent":"K63","ID":58404,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58404","ServerKey":"pl181","X":314,"Y":635},{"Bonus":0,"Continent":"K36","ID":58405,"Name":"0-17","PlayerID":3600737,"Points":1524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58405","ServerKey":"pl181","X":644,"Y":308},{"Bonus":0,"Continent":"K47","ID":58406,"Name":"Wioska barbarzyƄska","PlayerID":8459255,"Points":3489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58406","ServerKey":"pl181","X":712,"Y":411},{"Bonus":0,"Continent":"K24","ID":58407,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":1735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58407","ServerKey":"pl181","X":405,"Y":290},{"Bonus":0,"Continent":"K52","ID":58408,"Name":"Wioska barbarzyƄska","PlayerID":699396429,"Points":458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58408","ServerKey":"pl181","X":281,"Y":598},{"Bonus":0,"Continent":"K24","ID":58409,"Name":"North 096","PlayerID":849064752,"Points":4373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58409","ServerKey":"pl181","X":487,"Y":261},{"Bonus":0,"Continent":"K62","ID":58410,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58410","ServerKey":"pl181","X":298,"Y":610},{"Bonus":0,"Continent":"K25","ID":58411,"Name":"#045","PlayerID":849064614,"Points":541,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58411","ServerKey":"pl181","X":552,"Y":272},{"Bonus":0,"Continent":"K52","ID":58412,"Name":"Wioska barbarzyƄska","PlayerID":699065686,"Points":133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58412","ServerKey":"pl181","X":264,"Y":543},{"Bonus":0,"Continent":"K24","ID":58413,"Name":"A03","PlayerID":849038597,"Points":2214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58413","ServerKey":"pl181","X":425,"Y":283},{"Bonus":0,"Continent":"K37","ID":58414,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58414","ServerKey":"pl181","X":706,"Y":397},{"Bonus":0,"Continent":"K47","ID":58415,"Name":"099. Wioska barbarzyƄska","PlayerID":7494497,"Points":2049,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58415","ServerKey":"pl181","X":728,"Y":465},{"Bonus":0,"Continent":"K25","ID":58416,"Name":"099 Wioska barbarzyƄska","PlayerID":699854484,"Points":4367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58416","ServerKey":"pl181","X":541,"Y":269},{"Bonus":0,"Continent":"K25","ID":58417,"Name":"Wioska robertos1","PlayerID":699148121,"Points":1675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58417","ServerKey":"pl181","X":597,"Y":287},{"Bonus":0,"Continent":"K74","ID":58418,"Name":"#400 F","PlayerID":9037756,"Points":2162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58418","ServerKey":"pl181","X":446,"Y":723},{"Bonus":0,"Continent":"K47","ID":58419,"Name":"041","PlayerID":849091105,"Points":1221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58419","ServerKey":"pl181","X":709,"Y":405},{"Bonus":0,"Continent":"K66","ID":58420,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58420","ServerKey":"pl181","X":638,"Y":690},{"Bonus":0,"Continent":"K24","ID":58421,"Name":"#0255 barbarzyƄska","PlayerID":1238300,"Points":823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58421","ServerKey":"pl181","X":442,"Y":276},{"Bonus":0,"Continent":"K57","ID":58422,"Name":"CastAway !027","PlayerID":9314079,"Points":4081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58422","ServerKey":"pl181","X":716,"Y":592},{"Bonus":0,"Continent":"K33","ID":58423,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":2395,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58423","ServerKey":"pl181","X":357,"Y":307},{"Bonus":0,"Continent":"K75","ID":58424,"Name":"#0084","PlayerID":1536231,"Points":2400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58424","ServerKey":"pl181","X":582,"Y":718},{"Bonus":0,"Continent":"K66","ID":58425,"Name":"Wioska Sir zombi","PlayerID":848964811,"Points":821,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58425","ServerKey":"pl181","X":684,"Y":637},{"Bonus":0,"Continent":"K42","ID":58426,"Name":"41 barbarzyƄska 3B","PlayerID":849018442,"Points":2108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58426","ServerKey":"pl181","X":272,"Y":442},{"Bonus":0,"Continent":"K66","ID":58427,"Name":"#133#","PlayerID":692803,"Points":2207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58427","ServerKey":"pl181","X":673,"Y":667},{"Bonus":0,"Continent":"K74","ID":58428,"Name":"New World","PlayerID":698152377,"Points":3385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58428","ServerKey":"pl181","X":425,"Y":723},{"Bonus":0,"Continent":"K33","ID":58429,"Name":"181.01","PlayerID":7221139,"Points":5283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58429","ServerKey":"pl181","X":329,"Y":347},{"Bonus":0,"Continent":"K47","ID":58430,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":766,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58430","ServerKey":"pl181","X":728,"Y":453},{"Bonus":0,"Continent":"K57","ID":58431,"Name":"054","PlayerID":849091105,"Points":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58431","ServerKey":"pl181","X":739,"Y":526},{"Bonus":0,"Continent":"K63","ID":58432,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58432","ServerKey":"pl181","X":326,"Y":656},{"Bonus":0,"Continent":"K65","ID":58433,"Name":"Wioska sasa","PlayerID":2613743,"Points":4708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58433","ServerKey":"pl181","X":531,"Y":615},{"Bonus":0,"Continent":"K66","ID":58434,"Name":"#143#","PlayerID":692803,"Points":1358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58434","ServerKey":"pl181","X":668,"Y":671},{"Bonus":0,"Continent":"K36","ID":58435,"Name":"ƚw181*007","PlayerID":959179,"Points":780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58435","ServerKey":"pl181","X":666,"Y":341},{"Bonus":0,"Continent":"K52","ID":58436,"Name":"Wioska barbarzyƄska","PlayerID":1227918,"Points":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58436","ServerKey":"pl181","X":267,"Y":509},{"Bonus":0,"Continent":"K36","ID":58437,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":1201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58437","ServerKey":"pl181","X":656,"Y":320},{"Bonus":0,"Continent":"K74","ID":58438,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":1452,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58438","ServerKey":"pl181","X":408,"Y":714},{"Bonus":0,"Continent":"K25","ID":58439,"Name":"Wioska barbarzyƄska","PlayerID":699799629,"Points":1690,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58439","ServerKey":"pl181","X":527,"Y":266},{"Bonus":0,"Continent":"K25","ID":58440,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58440","ServerKey":"pl181","X":579,"Y":273},{"Bonus":0,"Continent":"K26","ID":58442,"Name":"Wioska barbarzyƄska","PlayerID":849037469,"Points":2954,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58442","ServerKey":"pl181","X":621,"Y":293},{"Bonus":0,"Continent":"K24","ID":58443,"Name":"065KP","PlayerID":849063849,"Points":915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58443","ServerKey":"pl181","X":472,"Y":266},{"Bonus":0,"Continent":"K47","ID":58444,"Name":"X.08","PlayerID":699737356,"Points":1161,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58444","ServerKey":"pl181","X":727,"Y":451},{"Bonus":0,"Continent":"K25","ID":58446,"Name":"#046","PlayerID":849064614,"Points":958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58446","ServerKey":"pl181","X":550,"Y":270},{"Bonus":0,"Continent":"K24","ID":58447,"Name":"003. Czysta","PlayerID":602408,"Points":2658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58447","ServerKey":"pl181","X":454,"Y":274},{"Bonus":0,"Continent":"K42","ID":58448,"Name":"Wioska BiiLii","PlayerID":849110726,"Points":162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58448","ServerKey":"pl181","X":265,"Y":468},{"Bonus":0,"Continent":"K63","ID":58449,"Name":"Wioska malwina1","PlayerID":9053254,"Points":1069,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58449","ServerKey":"pl181","X":326,"Y":651},{"Bonus":0,"Continent":"K57","ID":58450,"Name":"025","PlayerID":6160655,"Points":1279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58450","ServerKey":"pl181","X":709,"Y":595},{"Bonus":0,"Continent":"K37","ID":58452,"Name":"0116","PlayerID":698416970,"Points":1337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58452","ServerKey":"pl181","X":708,"Y":384},{"Bonus":7,"Continent":"K33","ID":58453,"Name":"NOT?","PlayerID":9236866,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58453","ServerKey":"pl181","X":310,"Y":353},{"Bonus":0,"Continent":"K23","ID":58454,"Name":"Wioska ArąStaro","PlayerID":848935732,"Points":2145,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58454","ServerKey":"pl181","X":389,"Y":288},{"Bonus":0,"Continent":"K23","ID":58455,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2293,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58455","ServerKey":"pl181","X":379,"Y":293},{"Bonus":0,"Continent":"K25","ID":58456,"Name":"North K25","PlayerID":699146580,"Points":1466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58456","ServerKey":"pl181","X":537,"Y":272},{"Bonus":0,"Continent":"K33","ID":58457,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58457","ServerKey":"pl181","X":365,"Y":303},{"Bonus":0,"Continent":"K66","ID":58458,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":3481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58458","ServerKey":"pl181","X":647,"Y":689},{"Bonus":0,"Continent":"K62","ID":58459,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58459","ServerKey":"pl181","X":299,"Y":610},{"Bonus":2,"Continent":"K24","ID":58460,"Name":"013","PlayerID":699694284,"Points":4388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58460","ServerKey":"pl181","X":401,"Y":286},{"Bonus":0,"Continent":"K52","ID":58461,"Name":"085 obrzeĆŒa","PlayerID":699510259,"Points":1037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58461","ServerKey":"pl181","X":274,"Y":564},{"Bonus":0,"Continent":"K57","ID":58462,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":2171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58462","ServerKey":"pl181","X":731,"Y":551},{"Bonus":2,"Continent":"K63","ID":58463,"Name":"04Osada koczownikĂłw","PlayerID":699704542,"Points":5857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58463","ServerKey":"pl181","X":356,"Y":683},{"Bonus":0,"Continent":"K36","ID":58465,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":1329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58465","ServerKey":"pl181","X":673,"Y":342},{"Bonus":0,"Continent":"K33","ID":58466,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":95,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58466","ServerKey":"pl181","X":325,"Y":336},{"Bonus":0,"Continent":"K33","ID":58467,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58467","ServerKey":"pl181","X":339,"Y":333},{"Bonus":0,"Continent":"K33","ID":58468,"Name":"Zaplecze Barba 034","PlayerID":699796330,"Points":2856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58468","ServerKey":"pl181","X":363,"Y":316},{"Bonus":0,"Continent":"K63","ID":58469,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58469","ServerKey":"pl181","X":365,"Y":688},{"Bonus":0,"Continent":"K42","ID":58470,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58470","ServerKey":"pl181","X":275,"Y":423},{"Bonus":0,"Continent":"K66","ID":58471,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58471","ServerKey":"pl181","X":644,"Y":681},{"Bonus":0,"Continent":"K66","ID":58472,"Name":"Zbąszynek","PlayerID":7520280,"Points":4207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58472","ServerKey":"pl181","X":676,"Y":658},{"Bonus":0,"Continent":"K47","ID":58473,"Name":"[215]","PlayerID":8000875,"Points":861,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58473","ServerKey":"pl181","X":722,"Y":423},{"Bonus":0,"Continent":"K36","ID":58474,"Name":"Katowice","PlayerID":848932879,"Points":774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58474","ServerKey":"pl181","X":677,"Y":343},{"Bonus":0,"Continent":"K66","ID":58475,"Name":"Wioska Monczi29i","PlayerID":849114477,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58475","ServerKey":"pl181","X":677,"Y":662},{"Bonus":0,"Continent":"K57","ID":58476,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":2000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58476","ServerKey":"pl181","X":733,"Y":517},{"Bonus":0,"Continent":"K33","ID":58477,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58477","ServerKey":"pl181","X":317,"Y":348},{"Bonus":0,"Continent":"K42","ID":58478,"Name":"Za dolinami","PlayerID":699821629,"Points":1703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58478","ServerKey":"pl181","X":283,"Y":412},{"Bonus":0,"Continent":"K32","ID":58480,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58480","ServerKey":"pl181","X":286,"Y":397},{"Bonus":0,"Continent":"K47","ID":58481,"Name":"046","PlayerID":849091105,"Points":601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58481","ServerKey":"pl181","X":717,"Y":403},{"Bonus":0,"Continent":"K47","ID":58482,"Name":"twoja stara","PlayerID":9095581,"Points":828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58482","ServerKey":"pl181","X":719,"Y":416},{"Bonus":0,"Continent":"K76","ID":58483,"Name":"Wioska barbarzyƄsko","PlayerID":7756002,"Points":1691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58483","ServerKey":"pl181","X":604,"Y":713},{"Bonus":0,"Continent":"K33","ID":58484,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58484","ServerKey":"pl181","X":355,"Y":315},{"Bonus":0,"Continent":"K42","ID":58485,"Name":"46 barbarzyƄska","PlayerID":849018442,"Points":1004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58485","ServerKey":"pl181","X":271,"Y":452},{"Bonus":0,"Continent":"K63","ID":58486,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58486","ServerKey":"pl181","X":352,"Y":687},{"Bonus":0,"Continent":"K24","ID":58487,"Name":"PóƂ 2","PlayerID":849096310,"Points":535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58487","ServerKey":"pl181","X":438,"Y":277},{"Bonus":0,"Continent":"K52","ID":58488,"Name":"C0306","PlayerID":8841266,"Points":3365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58488","ServerKey":"pl181","X":275,"Y":549},{"Bonus":0,"Continent":"K67","ID":58490,"Name":"WZ10","PlayerID":7142659,"Points":1899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58490","ServerKey":"pl181","X":713,"Y":609},{"Bonus":0,"Continent":"K52","ID":58491,"Name":"Wioska barbarzyƄska","PlayerID":1095489,"Points":358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58491","ServerKey":"pl181","X":264,"Y":535},{"Bonus":0,"Continent":"K66","ID":58492,"Name":"#144#","PlayerID":692803,"Points":1124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58492","ServerKey":"pl181","X":650,"Y":674},{"Bonus":0,"Continent":"K25","ID":58493,"Name":"North 059","PlayerID":849064752,"Points":5438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58493","ServerKey":"pl181","X":513,"Y":266},{"Bonus":0,"Continent":"K76","ID":58494,"Name":"o024","PlayerID":699189792,"Points":2188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58494","ServerKey":"pl181","X":626,"Y":700},{"Bonus":0,"Continent":"K25","ID":58495,"Name":"Flap","PlayerID":699098531,"Points":3425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58495","ServerKey":"pl181","X":599,"Y":289},{"Bonus":0,"Continent":"K66","ID":58496,"Name":"Wioska perfekcja","PlayerID":1286008,"Points":4000,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58496","ServerKey":"pl181","X":653,"Y":684},{"Bonus":0,"Continent":"K24","ID":58497,"Name":"067KP","PlayerID":849063849,"Points":791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58497","ServerKey":"pl181","X":464,"Y":274},{"Bonus":0,"Continent":"K36","ID":58498,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58498","ServerKey":"pl181","X":633,"Y":307},{"Bonus":0,"Continent":"K76","ID":58499,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":1574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58499","ServerKey":"pl181","X":612,"Y":704},{"Bonus":0,"Continent":"K63","ID":58500,"Name":"Wiriatus BD84","PlayerID":9021037,"Points":2004,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58500","ServerKey":"pl181","X":366,"Y":686},{"Bonus":4,"Continent":"K75","ID":58501,"Name":"Osada koczownikĂłw","PlayerID":7581876,"Points":1880,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58501","ServerKey":"pl181","X":577,"Y":720},{"Bonus":0,"Continent":"K75","ID":58502,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58502","ServerKey":"pl181","X":544,"Y":727},{"Bonus":0,"Continent":"K26","ID":58503,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58503","ServerKey":"pl181","X":602,"Y":293},{"Bonus":0,"Continent":"K47","ID":58504,"Name":"Wioska barbarzyƄska","PlayerID":849095435,"Points":508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58504","ServerKey":"pl181","X":732,"Y":444},{"Bonus":0,"Continent":"K25","ID":58505,"Name":"North K25","PlayerID":699146580,"Points":1491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58505","ServerKey":"pl181","X":554,"Y":267},{"Bonus":0,"Continent":"K63","ID":58506,"Name":"Wioska barbarzyƄska","PlayerID":6892517,"Points":320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58506","ServerKey":"pl181","X":314,"Y":652},{"Bonus":3,"Continent":"K36","ID":58507,"Name":"Osada koczownikĂłw","PlayerID":609384,"Points":1138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58507","ServerKey":"pl181","X":690,"Y":362},{"Bonus":0,"Continent":"K66","ID":58508,"Name":"#139#","PlayerID":692803,"Points":1358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58508","ServerKey":"pl181","X":671,"Y":665},{"Bonus":0,"Continent":"K62","ID":58510,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58510","ServerKey":"pl181","X":295,"Y":623},{"Bonus":0,"Continent":"K66","ID":58511,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":3481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58511","ServerKey":"pl181","X":651,"Y":680},{"Bonus":0,"Continent":"K74","ID":58512,"Name":"|D| IS","PlayerID":698147372,"Points":1771,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58512","ServerKey":"pl181","X":455,"Y":725},{"Bonus":0,"Continent":"K47","ID":58513,"Name":"Wioska czarekpol","PlayerID":849103644,"Points":99,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58513","ServerKey":"pl181","X":725,"Y":417},{"Bonus":0,"Continent":"K74","ID":58514,"Name":"Morelowy Sad","PlayerID":7526090,"Points":1054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58514","ServerKey":"pl181","X":444,"Y":729},{"Bonus":0,"Continent":"K47","ID":58515,"Name":"090. Wioska barbarzyƄska","PlayerID":7494497,"Points":2708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58515","ServerKey":"pl181","X":736,"Y":462},{"Bonus":0,"Continent":"K47","ID":58516,"Name":"Wioska Sir dziadekk19","PlayerID":849032027,"Points":786,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58516","ServerKey":"pl181","X":724,"Y":432},{"Bonus":0,"Continent":"K25","ID":58517,"Name":"#029","PlayerID":849064614,"Points":2099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58517","ServerKey":"pl181","X":555,"Y":268},{"Bonus":0,"Continent":"K75","ID":58518,"Name":"Wioska Nadav","PlayerID":849083534,"Points":2088,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58518","ServerKey":"pl181","X":553,"Y":728},{"Bonus":0,"Continent":"K62","ID":58519,"Name":"Wioska klez 031","PlayerID":698295651,"Points":482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58519","ServerKey":"pl181","X":284,"Y":606},{"Bonus":0,"Continent":"K42","ID":58520,"Name":"38 barbarzyƄska 2A","PlayerID":849018442,"Points":1630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58520","ServerKey":"pl181","X":269,"Y":444},{"Bonus":0,"Continent":"K36","ID":58521,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1381,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58521","ServerKey":"pl181","X":680,"Y":341},{"Bonus":0,"Continent":"K42","ID":58522,"Name":"61 barbarzyƄska","PlayerID":849018442,"Points":685,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58522","ServerKey":"pl181","X":271,"Y":440},{"Bonus":0,"Continent":"K57","ID":58523,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58523","ServerKey":"pl181","X":733,"Y":557},{"Bonus":0,"Continent":"K63","ID":58524,"Name":"Wioska oisaj-org","PlayerID":7067846,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58524","ServerKey":"pl181","X":358,"Y":683},{"Bonus":0,"Continent":"K57","ID":58525,"Name":"034","PlayerID":6160655,"Points":642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58525","ServerKey":"pl181","X":729,"Y":564},{"Bonus":0,"Continent":"K75","ID":58526,"Name":"bandzior","PlayerID":606407,"Points":4428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58526","ServerKey":"pl181","X":506,"Y":737},{"Bonus":0,"Continent":"K47","ID":58527,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58527","ServerKey":"pl181","X":740,"Y":487},{"Bonus":0,"Continent":"K74","ID":58528,"Name":"Wioska siedlik12345","PlayerID":849098477,"Points":1418,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58528","ServerKey":"pl181","X":419,"Y":722},{"Bonus":0,"Continent":"K75","ID":58529,"Name":"043.xxx","PlayerID":8612358,"Points":1096,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58529","ServerKey":"pl181","X":521,"Y":736},{"Bonus":0,"Continent":"K63","ID":58531,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58531","ServerKey":"pl181","X":321,"Y":649},{"Bonus":0,"Continent":"K63","ID":58532,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58532","ServerKey":"pl181","X":337,"Y":668},{"Bonus":0,"Continent":"K73","ID":58533,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58533","ServerKey":"pl181","X":385,"Y":701},{"Bonus":0,"Continent":"K57","ID":58534,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58534","ServerKey":"pl181","X":735,"Y":551},{"Bonus":0,"Continent":"K26","ID":58535,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58535","ServerKey":"pl181","X":602,"Y":292},{"Bonus":0,"Continent":"K52","ID":58536,"Name":"0000046Z","PlayerID":849089881,"Points":539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58536","ServerKey":"pl181","X":270,"Y":568},{"Bonus":0,"Continent":"K74","ID":58537,"Name":"Wioska barbarzyƄska","PlayerID":848999671,"Points":680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58537","ServerKey":"pl181","X":484,"Y":737},{"Bonus":0,"Continent":"K52","ID":58538,"Name":"bla bla","PlayerID":849091084,"Points":625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58538","ServerKey":"pl181","X":260,"Y":511},{"Bonus":0,"Continent":"K66","ID":58539,"Name":"Wioska game777","PlayerID":849071883,"Points":94,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58539","ServerKey":"pl181","X":689,"Y":632},{"Bonus":0,"Continent":"K42","ID":58540,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58540","ServerKey":"pl181","X":274,"Y":418},{"Bonus":0,"Continent":"K23","ID":58541,"Name":"Wioska bbbarteqqq","PlayerID":699589540,"Points":324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58541","ServerKey":"pl181","X":389,"Y":289},{"Bonus":0,"Continent":"K42","ID":58542,"Name":"[0243]","PlayerID":8630972,"Points":4180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58542","ServerKey":"pl181","X":268,"Y":498},{"Bonus":0,"Continent":"K47","ID":58543,"Name":"Wioska Sessue","PlayerID":699099385,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58543","ServerKey":"pl181","X":739,"Y":493},{"Bonus":0,"Continent":"K57","ID":58544,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":951,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58544","ServerKey":"pl181","X":733,"Y":555},{"Bonus":0,"Continent":"K75","ID":58545,"Name":"050 - Budowanko!","PlayerID":7540891,"Points":3330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58545","ServerKey":"pl181","X":510,"Y":736},{"Bonus":0,"Continent":"K52","ID":58546,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58546","ServerKey":"pl181","X":280,"Y":598},{"Bonus":0,"Continent":"K24","ID":58547,"Name":"Gruszczyn","PlayerID":849115431,"Points":717,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58547","ServerKey":"pl181","X":499,"Y":263},{"Bonus":0,"Continent":"K25","ID":58548,"Name":"Wioska Kross x Smerf","PlayerID":9280679,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58548","ServerKey":"pl181","X":545,"Y":270},{"Bonus":0,"Continent":"K36","ID":58549,"Name":"034. Charfa","PlayerID":2873154,"Points":2740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58549","ServerKey":"pl181","X":693,"Y":368},{"Bonus":0,"Continent":"K57","ID":58550,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":570,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58550","ServerKey":"pl181","X":729,"Y":534},{"Bonus":0,"Continent":"K66","ID":58551,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58551","ServerKey":"pl181","X":662,"Y":671},{"Bonus":0,"Continent":"K75","ID":58552,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58552","ServerKey":"pl181","X":548,"Y":732},{"Bonus":0,"Continent":"K66","ID":58553,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58553","ServerKey":"pl181","X":685,"Y":638},{"Bonus":0,"Continent":"K63","ID":58554,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58554","ServerKey":"pl181","X":302,"Y":635},{"Bonus":0,"Continent":"K36","ID":58555,"Name":"ONR 1","PlayerID":9090040,"Points":5364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58555","ServerKey":"pl181","X":657,"Y":318},{"Bonus":0,"Continent":"K26","ID":58556,"Name":"XDX","PlayerID":699098531,"Points":3490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58556","ServerKey":"pl181","X":616,"Y":298},{"Bonus":0,"Continent":"K66","ID":58557,"Name":"#147#","PlayerID":692803,"Points":1125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58557","ServerKey":"pl181","X":662,"Y":669},{"Bonus":0,"Continent":"K25","ID":58558,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58558","ServerKey":"pl181","X":563,"Y":268},{"Bonus":0,"Continent":"K35","ID":58559,"Name":"0002","PlayerID":7271812,"Points":3037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58559","ServerKey":"pl181","X":556,"Y":396},{"Bonus":0,"Continent":"K36","ID":58560,"Name":"ƁOPALENICA","PlayerID":848922958,"Points":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58560","ServerKey":"pl181","X":628,"Y":306},{"Bonus":0,"Continent":"K52","ID":58561,"Name":"Wioska barbarzyƄska","PlayerID":849097937,"Points":1340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58561","ServerKey":"pl181","X":274,"Y":584},{"Bonus":5,"Continent":"K75","ID":58563,"Name":"Kapitol_23","PlayerID":606407,"Points":1044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58563","ServerKey":"pl181","X":508,"Y":730},{"Bonus":0,"Continent":"K25","ID":58564,"Name":"North K25","PlayerID":699146580,"Points":1491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58564","ServerKey":"pl181","X":568,"Y":273},{"Bonus":0,"Continent":"K63","ID":58565,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58565","ServerKey":"pl181","X":359,"Y":691},{"Bonus":0,"Continent":"K25","ID":58566,"Name":"CSA forever","PlayerID":699448276,"Points":2490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58566","ServerKey":"pl181","X":593,"Y":282},{"Bonus":0,"Continent":"K42","ID":58567,"Name":"29 barbarzyƄska","PlayerID":849018442,"Points":2465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58567","ServerKey":"pl181","X":270,"Y":437},{"Bonus":8,"Continent":"K74","ID":58568,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":4695,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58568","ServerKey":"pl181","X":400,"Y":719},{"Bonus":0,"Continent":"K63","ID":58569,"Name":"flagi","PlayerID":603968,"Points":2114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58569","ServerKey":"pl181","X":365,"Y":687},{"Bonus":0,"Continent":"K36","ID":58570,"Name":"051. 5spajk5","PlayerID":2873154,"Points":329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58570","ServerKey":"pl181","X":679,"Y":351},{"Bonus":6,"Continent":"K47","ID":58572,"Name":"021 Z","PlayerID":699718269,"Points":1800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58572","ServerKey":"pl181","X":735,"Y":495},{"Bonus":0,"Continent":"K37","ID":58574,"Name":"0117","PlayerID":698416970,"Points":1013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58574","ServerKey":"pl181","X":704,"Y":379},{"Bonus":0,"Continent":"K52","ID":58576,"Name":"Wioska barbarzyƄska","PlayerID":1536625,"Points":426,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58576","ServerKey":"pl181","X":274,"Y":574},{"Bonus":0,"Continent":"K42","ID":58577,"Name":"Avanti!","PlayerID":698625834,"Points":1347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58577","ServerKey":"pl181","X":265,"Y":481},{"Bonus":0,"Continent":"K65","ID":58578,"Name":"0x01","PlayerID":439825,"Points":1641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58578","ServerKey":"pl181","X":576,"Y":656},{"Bonus":0,"Continent":"K62","ID":58579,"Name":"Wioska robsona","PlayerID":3896657,"Points":3159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58579","ServerKey":"pl181","X":294,"Y":616},{"Bonus":0,"Continent":"K74","ID":58580,"Name":"New World","PlayerID":698152377,"Points":3494,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58580","ServerKey":"pl181","X":431,"Y":728},{"Bonus":0,"Continent":"K24","ID":58581,"Name":"Gwenville 015","PlayerID":848986638,"Points":679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58581","ServerKey":"pl181","X":453,"Y":265},{"Bonus":0,"Continent":"K75","ID":58582,"Name":"Wioska AndrewwXYZ","PlayerID":698897472,"Points":1310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58582","ServerKey":"pl181","X":561,"Y":730},{"Bonus":0,"Continent":"K47","ID":58583,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":716,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58583","ServerKey":"pl181","X":729,"Y":428},{"Bonus":0,"Continent":"K63","ID":58584,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58584","ServerKey":"pl181","X":302,"Y":627},{"Bonus":0,"Continent":"K63","ID":58585,"Name":"021 | North","PlayerID":699511295,"Points":1373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58585","ServerKey":"pl181","X":375,"Y":693},{"Bonus":0,"Continent":"K66","ID":58586,"Name":"Wioska 114","PlayerID":848971079,"Points":1976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58586","ServerKey":"pl181","X":685,"Y":645},{"Bonus":0,"Continent":"K23","ID":58587,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58587","ServerKey":"pl181","X":378,"Y":297},{"Bonus":0,"Continent":"K33","ID":58588,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58588","ServerKey":"pl181","X":313,"Y":360},{"Bonus":0,"Continent":"K47","ID":58589,"Name":"C.063","PlayerID":9188016,"Points":1055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58589","ServerKey":"pl181","X":730,"Y":479},{"Bonus":0,"Continent":"K52","ID":58590,"Name":"Wioska pit71","PlayerID":6395848,"Points":3598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58590","ServerKey":"pl181","X":267,"Y":534},{"Bonus":0,"Continent":"K63","ID":58591,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58591","ServerKey":"pl181","X":339,"Y":667},{"Bonus":0,"Continent":"K74","ID":58592,"Name":"rt27 o","PlayerID":698623373,"Points":1262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58592","ServerKey":"pl181","X":497,"Y":733},{"Bonus":0,"Continent":"K47","ID":58593,"Name":"124","PlayerID":849088515,"Points":3796,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58593","ServerKey":"pl181","X":730,"Y":451},{"Bonus":0,"Continent":"K74","ID":58594,"Name":"028","PlayerID":8268010,"Points":1304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58594","ServerKey":"pl181","X":460,"Y":728},{"Bonus":0,"Continent":"K52","ID":58595,"Name":"5. Seasmoke","PlayerID":849089499,"Points":963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58595","ServerKey":"pl181","X":276,"Y":581},{"Bonus":0,"Continent":"K36","ID":58597,"Name":"..1","PlayerID":698420691,"Points":5553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58597","ServerKey":"pl181","X":690,"Y":363},{"Bonus":0,"Continent":"K52","ID":58598,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58598","ServerKey":"pl181","X":269,"Y":502},{"Bonus":0,"Continent":"K74","ID":58599,"Name":"FP055","PlayerID":699605333,"Points":2863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58599","ServerKey":"pl181","X":450,"Y":727},{"Bonus":0,"Continent":"K24","ID":58600,"Name":"North 097","PlayerID":849064752,"Points":3757,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58600","ServerKey":"pl181","X":491,"Y":268},{"Bonus":0,"Continent":"K57","ID":58601,"Name":"Wioska blatio","PlayerID":699518454,"Points":3307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58601","ServerKey":"pl181","X":731,"Y":569},{"Bonus":0,"Continent":"K24","ID":58602,"Name":"????","PlayerID":698489071,"Points":3788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58602","ServerKey":"pl181","X":462,"Y":272},{"Bonus":0,"Continent":"K33","ID":58603,"Name":"Zaplecze Barba 045","PlayerID":699796330,"Points":1410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58603","ServerKey":"pl181","X":353,"Y":313},{"Bonus":0,"Continent":"K75","ID":58604,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58604","ServerKey":"pl181","X":531,"Y":738},{"Bonus":0,"Continent":"K37","ID":58605,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58605","ServerKey":"pl181","X":702,"Y":391},{"Bonus":0,"Continent":"K63","ID":58606,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58606","ServerKey":"pl181","X":352,"Y":676},{"Bonus":0,"Continent":"K36","ID":58607,"Name":"TOLCIA 6","PlayerID":699868739,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58607","ServerKey":"pl181","X":644,"Y":319},{"Bonus":0,"Continent":"K26","ID":58608,"Name":"XDX","PlayerID":699098531,"Points":3304,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58608","ServerKey":"pl181","X":606,"Y":292},{"Bonus":0,"Continent":"K25","ID":58609,"Name":"North K25","PlayerID":699146580,"Points":1406,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58609","ServerKey":"pl181","X":577,"Y":279},{"Bonus":0,"Continent":"K75","ID":58610,"Name":"Wioska Unknown","PlayerID":9124682,"Points":150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58610","ServerKey":"pl181","X":514,"Y":739},{"Bonus":0,"Continent":"K25","ID":58611,"Name":"109 Wioska barbarzyƄska","PlayerID":699854484,"Points":926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58611","ServerKey":"pl181","X":587,"Y":280},{"Bonus":5,"Continent":"K42","ID":58613,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58613","ServerKey":"pl181","X":277,"Y":423},{"Bonus":0,"Continent":"K57","ID":58614,"Name":"Wioska KiepLach","PlayerID":699705910,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58614","ServerKey":"pl181","X":741,"Y":505},{"Bonus":0,"Continent":"K66","ID":58615,"Name":"109. Rollayna","PlayerID":8337151,"Points":2445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58615","ServerKey":"pl181","X":694,"Y":628},{"Bonus":0,"Continent":"K66","ID":58616,"Name":"#150#","PlayerID":692803,"Points":1070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58616","ServerKey":"pl181","X":644,"Y":690},{"Bonus":0,"Continent":"K75","ID":58617,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":1138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58617","ServerKey":"pl181","X":561,"Y":724},{"Bonus":0,"Continent":"K24","ID":58618,"Name":"North 102","PlayerID":849064752,"Points":2598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58618","ServerKey":"pl181","X":477,"Y":262},{"Bonus":0,"Continent":"K47","ID":58619,"Name":"Zarezerwowana.","PlayerID":8478874,"Points":5917,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58619","ServerKey":"pl181","X":723,"Y":416},{"Bonus":0,"Continent":"K66","ID":58621,"Name":"#136#","PlayerID":692803,"Points":2031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58621","ServerKey":"pl181","X":665,"Y":668},{"Bonus":0,"Continent":"K33","ID":58622,"Name":"Monkey","PlayerID":699803939,"Points":960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58622","ServerKey":"pl181","X":305,"Y":361},{"Bonus":0,"Continent":"K57","ID":58623,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58623","ServerKey":"pl181","X":739,"Y":506},{"Bonus":0,"Continent":"K57","ID":58625,"Name":"=128= Wioska barbarzyƄska","PlayerID":3781794,"Points":1018,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58625","ServerKey":"pl181","X":727,"Y":569},{"Bonus":0,"Continent":"K67","ID":58626,"Name":"K67 39","PlayerID":698867483,"Points":344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58626","ServerKey":"pl181","X":700,"Y":618},{"Bonus":0,"Continent":"K36","ID":58627,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":3412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58627","ServerKey":"pl181","X":667,"Y":338},{"Bonus":0,"Continent":"K74","ID":58628,"Name":"FP053","PlayerID":699605333,"Points":2646,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58628","ServerKey":"pl181","X":438,"Y":732},{"Bonus":0,"Continent":"K57","ID":58629,"Name":"Wioska barbarzyƄska","PlayerID":7528491,"Points":775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58629","ServerKey":"pl181","X":731,"Y":565},{"Bonus":3,"Continent":"K66","ID":58630,"Name":"Jelenia GĂłra","PlayerID":848932879,"Points":2844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58630","ServerKey":"pl181","X":674,"Y":655},{"Bonus":0,"Continent":"K57","ID":58631,"Name":"Wioska 20","PlayerID":2999957,"Points":1318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58631","ServerKey":"pl181","X":731,"Y":568},{"Bonus":0,"Continent":"K24","ID":58632,"Name":"Wioska b 006","PlayerID":6343784,"Points":610,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58632","ServerKey":"pl181","X":403,"Y":288},{"Bonus":1,"Continent":"K57","ID":58633,"Name":"Osada koczownikĂłw","PlayerID":698666810,"Points":5522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58633","ServerKey":"pl181","X":728,"Y":557},{"Bonus":0,"Continent":"K33","ID":58634,"Name":"Wioska Seylito","PlayerID":699283869,"Points":2030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58634","ServerKey":"pl181","X":342,"Y":332},{"Bonus":0,"Continent":"K42","ID":58635,"Name":"33 barbarzyƄska A","PlayerID":849018442,"Points":2591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58635","ServerKey":"pl181","X":268,"Y":449},{"Bonus":4,"Continent":"K36","ID":58636,"Name":"025. Osada koczownikĂłw","PlayerID":2873154,"Points":4172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58636","ServerKey":"pl181","X":690,"Y":354},{"Bonus":0,"Continent":"K23","ID":58637,"Name":"Wioska Firau","PlayerID":849105613,"Points":577,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58637","ServerKey":"pl181","X":381,"Y":295},{"Bonus":0,"Continent":"K63","ID":58638,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":268,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58638","ServerKey":"pl181","X":315,"Y":639},{"Bonus":0,"Continent":"K42","ID":58639,"Name":"Wioska mirmyn","PlayerID":698190039,"Points":1385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58639","ServerKey":"pl181","X":276,"Y":436},{"Bonus":0,"Continent":"K73","ID":58640,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":2511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58640","ServerKey":"pl181","X":377,"Y":707},{"Bonus":0,"Continent":"K67","ID":58641,"Name":"Wioska GeraltV47","PlayerID":699850967,"Points":384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58641","ServerKey":"pl181","X":710,"Y":613},{"Bonus":0,"Continent":"K52","ID":58642,"Name":"Wioska barbarzyƄska","PlayerID":8630972,"Points":259,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58642","ServerKey":"pl181","X":267,"Y":502},{"Bonus":0,"Continent":"K52","ID":58644,"Name":"C0325","PlayerID":8841266,"Points":2174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58644","ServerKey":"pl181","X":265,"Y":518},{"Bonus":9,"Continent":"K66","ID":58645,"Name":"Bessa 018","PlayerID":848987051,"Points":6095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58645","ServerKey":"pl181","X":651,"Y":683},{"Bonus":0,"Continent":"K25","ID":58647,"Name":"North 082","PlayerID":849064752,"Points":3394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58647","ServerKey":"pl181","X":514,"Y":270},{"Bonus":0,"Continent":"K57","ID":58648,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":2776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58648","ServerKey":"pl181","X":727,"Y":578},{"Bonus":0,"Continent":"K42","ID":58651,"Name":"Zadaleko","PlayerID":699821629,"Points":1429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58651","ServerKey":"pl181","X":281,"Y":412},{"Bonus":0,"Continent":"K47","ID":58652,"Name":"Wioska WiktorTraktor","PlayerID":849095430,"Points":4279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58652","ServerKey":"pl181","X":736,"Y":469},{"Bonus":0,"Continent":"K57","ID":58653,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58653","ServerKey":"pl181","X":729,"Y":543},{"Bonus":0,"Continent":"K67","ID":58654,"Name":"K67 31","PlayerID":698867483,"Points":1387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58654","ServerKey":"pl181","X":717,"Y":604},{"Bonus":0,"Continent":"K66","ID":58655,"Name":"sony911","PlayerID":1415009,"Points":1318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58655","ServerKey":"pl181","X":688,"Y":644},{"Bonus":0,"Continent":"K76","ID":58656,"Name":"Wioska falat030","PlayerID":698542183,"Points":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58656","ServerKey":"pl181","X":633,"Y":700},{"Bonus":0,"Continent":"K75","ID":58657,"Name":"#210 C","PlayerID":9037756,"Points":1221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58657","ServerKey":"pl181","X":507,"Y":737},{"Bonus":0,"Continent":"K63","ID":58658,"Name":"Wioska Lord lukis2012","PlayerID":698931404,"Points":1734,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58658","ServerKey":"pl181","X":306,"Y":639},{"Bonus":0,"Continent":"K67","ID":58659,"Name":"K67 19","PlayerID":698867483,"Points":2036,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58659","ServerKey":"pl181","X":716,"Y":605},{"Bonus":0,"Continent":"K24","ID":58660,"Name":"elo","PlayerID":849085160,"Points":263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58660","ServerKey":"pl181","X":434,"Y":275},{"Bonus":0,"Continent":"K76","ID":58661,"Name":"Wioska barbarzyƄska","PlayerID":699372829,"Points":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58661","ServerKey":"pl181","X":626,"Y":704},{"Bonus":0,"Continent":"K47","ID":58662,"Name":"Wioska Paveulon","PlayerID":849075298,"Points":1279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58662","ServerKey":"pl181","X":734,"Y":463},{"Bonus":0,"Continent":"K36","ID":58663,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":1095,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58663","ServerKey":"pl181","X":656,"Y":322},{"Bonus":0,"Continent":"K73","ID":58664,"Name":"Wioska KOMANDOR PIERWSZY","PlayerID":796977,"Points":508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58664","ServerKey":"pl181","X":384,"Y":711},{"Bonus":0,"Continent":"K25","ID":58665,"Name":"83Krzysiek83","PlayerID":849072703,"Points":899,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58665","ServerKey":"pl181","X":564,"Y":278},{"Bonus":0,"Continent":"K24","ID":58666,"Name":"#0262 colt9","PlayerID":1238300,"Points":774,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58666","ServerKey":"pl181","X":433,"Y":277},{"Bonus":0,"Continent":"K24","ID":58667,"Name":"212...NORTH","PlayerID":6920960,"Points":2455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58667","ServerKey":"pl181","X":420,"Y":276},{"Bonus":0,"Continent":"K75","ID":58668,"Name":"Wioska Terada","PlayerID":849052488,"Points":358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58668","ServerKey":"pl181","X":525,"Y":739},{"Bonus":0,"Continent":"K24","ID":58669,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58669","ServerKey":"pl181","X":479,"Y":267},{"Bonus":5,"Continent":"K47","ID":58670,"Name":"A#044","PlayerID":2065730,"Points":6618,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58670","ServerKey":"pl181","X":728,"Y":469},{"Bonus":0,"Continent":"K24","ID":58671,"Name":"123.Stradi","PlayerID":698365960,"Points":1849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58671","ServerKey":"pl181","X":448,"Y":273},{"Bonus":0,"Continent":"K25","ID":58672,"Name":"North 060","PlayerID":849064752,"Points":4562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58672","ServerKey":"pl181","X":512,"Y":260},{"Bonus":0,"Continent":"K47","ID":58673,"Name":"Wioska Szujski Mastess Team","PlayerID":3487933,"Points":429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58673","ServerKey":"pl181","X":721,"Y":406},{"Bonus":0,"Continent":"K42","ID":58674,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58674","ServerKey":"pl181","X":274,"Y":435},{"Bonus":0,"Continent":"K75","ID":58675,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58675","ServerKey":"pl181","X":567,"Y":720},{"Bonus":0,"Continent":"K52","ID":58676,"Name":"C0323","PlayerID":8841266,"Points":2337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58676","ServerKey":"pl181","X":267,"Y":523},{"Bonus":0,"Continent":"K57","ID":58678,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":1031,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58678","ServerKey":"pl181","X":740,"Y":507},{"Bonus":0,"Continent":"K42","ID":58681,"Name":"Za gĂłrami","PlayerID":699821629,"Points":3092,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58681","ServerKey":"pl181","X":282,"Y":412},{"Bonus":0,"Continent":"K66","ID":58682,"Name":"Sony 911","PlayerID":1415009,"Points":573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58682","ServerKey":"pl181","X":686,"Y":652},{"Bonus":0,"Continent":"K36","ID":58683,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":1029,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58683","ServerKey":"pl181","X":692,"Y":357},{"Bonus":0,"Continent":"K33","ID":58685,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58685","ServerKey":"pl181","X":376,"Y":385},{"Bonus":0,"Continent":"K23","ID":58686,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58686","ServerKey":"pl181","X":392,"Y":296},{"Bonus":0,"Continent":"K24","ID":58688,"Name":"????","PlayerID":698489071,"Points":4410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58688","ServerKey":"pl181","X":488,"Y":264},{"Bonus":0,"Continent":"K25","ID":58689,"Name":"Wioska E W A","PlayerID":3743817,"Points":66,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58689","ServerKey":"pl181","X":535,"Y":267},{"Bonus":0,"Continent":"K67","ID":58690,"Name":"K67 47","PlayerID":698867483,"Points":207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58690","ServerKey":"pl181","X":711,"Y":606},{"Bonus":0,"Continent":"K66","ID":58691,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":5030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58691","ServerKey":"pl181","X":648,"Y":683},{"Bonus":0,"Continent":"K66","ID":58692,"Name":"LordFallus","PlayerID":849112876,"Points":188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58692","ServerKey":"pl181","X":691,"Y":637},{"Bonus":0,"Continent":"K57","ID":58693,"Name":"Wioska barbarzyƄska","PlayerID":7528491,"Points":1086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58693","ServerKey":"pl181","X":715,"Y":582},{"Bonus":0,"Continent":"K66","ID":58694,"Name":"Sony 911","PlayerID":1415009,"Points":1530,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58694","ServerKey":"pl181","X":684,"Y":643},{"Bonus":0,"Continent":"K76","ID":58695,"Name":"budowa 02","PlayerID":7139820,"Points":1515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58695","ServerKey":"pl181","X":601,"Y":714},{"Bonus":0,"Continent":"K36","ID":58696,"Name":"Wioska barbarzyƄska","PlayerID":7973893,"Points":1726,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58696","ServerKey":"pl181","X":681,"Y":358},{"Bonus":0,"Continent":"K66","ID":58697,"Name":"Sony 911","PlayerID":1415009,"Points":772,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58697","ServerKey":"pl181","X":670,"Y":667},{"Bonus":0,"Continent":"K63","ID":58698,"Name":"45.","PlayerID":8665783,"Points":508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58698","ServerKey":"pl181","X":335,"Y":665},{"Bonus":0,"Continent":"K57","ID":58699,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58699","ServerKey":"pl181","X":731,"Y":555},{"Bonus":0,"Continent":"K57","ID":58700,"Name":"029","PlayerID":6160655,"Points":1441,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58700","ServerKey":"pl181","X":714,"Y":590},{"Bonus":0,"Continent":"K63","ID":58702,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58702","ServerKey":"pl181","X":370,"Y":697},{"Bonus":0,"Continent":"K57","ID":58703,"Name":"Wioska Stadar","PlayerID":698203538,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58703","ServerKey":"pl181","X":727,"Y":564},{"Bonus":0,"Continent":"K36","ID":58704,"Name":"053","PlayerID":849091105,"Points":440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58704","ServerKey":"pl181","X":689,"Y":351},{"Bonus":0,"Continent":"K52","ID":58705,"Name":"????","PlayerID":699774694,"Points":624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58705","ServerKey":"pl181","X":285,"Y":599},{"Bonus":0,"Continent":"K36","ID":58706,"Name":"Wioska Rafi43","PlayerID":849099141,"Points":580,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58706","ServerKey":"pl181","X":682,"Y":355},{"Bonus":0,"Continent":"K76","ID":58707,"Name":"100 koniec ƛwiata","PlayerID":849093426,"Points":1005,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58707","ServerKey":"pl181","X":625,"Y":703},{"Bonus":0,"Continent":"K63","ID":58708,"Name":"adi judo honor","PlayerID":699163285,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58708","ServerKey":"pl181","X":333,"Y":658},{"Bonus":0,"Continent":"K24","ID":58709,"Name":"239...North","PlayerID":6920960,"Points":1386,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58709","ServerKey":"pl181","X":435,"Y":274},{"Bonus":0,"Continent":"K24","ID":58710,"Name":"Wioska barbarzyƄska","PlayerID":699308637,"Points":748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58710","ServerKey":"pl181","X":408,"Y":280},{"Bonus":0,"Continent":"K75","ID":58711,"Name":"Wioska barbarzyƄska","PlayerID":699828442,"Points":925,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58711","ServerKey":"pl181","X":554,"Y":734},{"Bonus":0,"Continent":"K52","ID":58712,"Name":"Wyspa 028","PlayerID":225023,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58712","ServerKey":"pl181","X":279,"Y":577},{"Bonus":0,"Continent":"K37","ID":58713,"Name":"057- Mroczna Osada","PlayerID":849035905,"Points":1644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58713","ServerKey":"pl181","X":702,"Y":378},{"Bonus":0,"Continent":"K42","ID":58714,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58714","ServerKey":"pl181","X":271,"Y":458},{"Bonus":0,"Continent":"K57","ID":58715,"Name":"Wioska Pirdek999","PlayerID":849103156,"Points":2709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58715","ServerKey":"pl181","X":732,"Y":540},{"Bonus":0,"Continent":"K66","ID":58716,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":2844,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58716","ServerKey":"pl181","X":676,"Y":651},{"Bonus":0,"Continent":"K25","ID":58717,"Name":"#048","PlayerID":849064614,"Points":787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58717","ServerKey":"pl181","X":559,"Y":272},{"Bonus":0,"Continent":"K62","ID":58718,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58718","ServerKey":"pl181","X":285,"Y":606},{"Bonus":0,"Continent":"K66","ID":58719,"Name":"DĆŒejdĆŒej 8","PlayerID":849098326,"Points":357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58719","ServerKey":"pl181","X":690,"Y":639},{"Bonus":0,"Continent":"K37","ID":58720,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":1409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58720","ServerKey":"pl181","X":709,"Y":382},{"Bonus":0,"Continent":"K75","ID":58721,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58721","ServerKey":"pl181","X":534,"Y":732},{"Bonus":0,"Continent":"K25","ID":58722,"Name":"PPF-37","PlayerID":1424656,"Points":902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58722","ServerKey":"pl181","X":580,"Y":276},{"Bonus":0,"Continent":"K66","ID":58723,"Name":"LONGOBARDIA","PlayerID":699711996,"Points":390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58723","ServerKey":"pl181","X":644,"Y":680},{"Bonus":0,"Continent":"K24","ID":58724,"Name":"????","PlayerID":698489071,"Points":3693,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58724","ServerKey":"pl181","X":460,"Y":271},{"Bonus":9,"Continent":"K63","ID":58725,"Name":"Osada koczownikĂłw","PlayerID":8877156,"Points":4385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58725","ServerKey":"pl181","X":312,"Y":635},{"Bonus":0,"Continent":"K63","ID":58726,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58726","ServerKey":"pl181","X":342,"Y":672},{"Bonus":0,"Continent":"K24","ID":58727,"Name":"222...NORTH","PlayerID":6920960,"Points":1729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58727","ServerKey":"pl181","X":408,"Y":285},{"Bonus":0,"Continent":"K74","ID":58728,"Name":"033","PlayerID":8268010,"Points":975,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58728","ServerKey":"pl181","X":463,"Y":733},{"Bonus":0,"Continent":"K66","ID":58729,"Name":"059","PlayerID":699099811,"Points":387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58729","ServerKey":"pl181","X":688,"Y":637},{"Bonus":0,"Continent":"K23","ID":58730,"Name":"310","PlayerID":7271812,"Points":1677,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58730","ServerKey":"pl181","X":375,"Y":294},{"Bonus":0,"Continent":"K33","ID":58731,"Name":"Wioska CorAngar96","PlayerID":849115256,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58731","ServerKey":"pl181","X":318,"Y":348},{"Bonus":0,"Continent":"K25","ID":58732,"Name":"North 069","PlayerID":849064752,"Points":4330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58732","ServerKey":"pl181","X":533,"Y":268},{"Bonus":0,"Continent":"K62","ID":58733,"Name":"Wioska Struma1","PlayerID":849115994,"Points":212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58733","ServerKey":"pl181","X":298,"Y":623},{"Bonus":0,"Continent":"K74","ID":58734,"Name":"New World","PlayerID":698152377,"Points":3684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58734","ServerKey":"pl181","X":425,"Y":727},{"Bonus":0,"Continent":"K52","ID":58735,"Name":"Wioska Afterparty","PlayerID":699598764,"Points":1144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58735","ServerKey":"pl181","X":285,"Y":581},{"Bonus":0,"Continent":"K66","ID":58736,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58736","ServerKey":"pl181","X":639,"Y":686},{"Bonus":0,"Continent":"K57","ID":58737,"Name":"Wioska M A S S A C R E","PlayerID":848914661,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58737","ServerKey":"pl181","X":730,"Y":545},{"Bonus":0,"Continent":"K67","ID":58738,"Name":"K67 18","PlayerID":698867483,"Points":2185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58738","ServerKey":"pl181","X":701,"Y":631},{"Bonus":0,"Continent":"K57","ID":58739,"Name":"Wioska 011","PlayerID":2999957,"Points":1983,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58739","ServerKey":"pl181","X":734,"Y":519},{"Bonus":0,"Continent":"K52","ID":58740,"Name":"Na SsSskraju","PlayerID":1536625,"Points":297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58740","ServerKey":"pl181","X":273,"Y":571},{"Bonus":0,"Continent":"K73","ID":58741,"Name":"Wioska daria519","PlayerID":699831193,"Points":1611,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58741","ServerKey":"pl181","X":376,"Y":700},{"Bonus":0,"Continent":"K47","ID":58742,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":3330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58742","ServerKey":"pl181","X":725,"Y":437},{"Bonus":0,"Continent":"K36","ID":58743,"Name":"Wioska dixon15pl","PlayerID":849086132,"Points":149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58743","ServerKey":"pl181","X":645,"Y":307},{"Bonus":0,"Continent":"K24","ID":58744,"Name":"Gniezno","PlayerID":699278528,"Points":1446,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58744","ServerKey":"pl181","X":448,"Y":269},{"Bonus":0,"Continent":"K36","ID":58745,"Name":"Wioska Tohsaka Rin","PlayerID":9114562,"Points":394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58745","ServerKey":"pl181","X":648,"Y":323},{"Bonus":6,"Continent":"K33","ID":58746,"Name":"-13. Koniec ƛwiata","PlayerID":698345556,"Points":1155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58746","ServerKey":"pl181","X":316,"Y":359},{"Bonus":0,"Continent":"K63","ID":58747,"Name":"Wioska SkyForce2","PlayerID":849099138,"Points":2522,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58747","ServerKey":"pl181","X":364,"Y":686},{"Bonus":0,"Continent":"K33","ID":58748,"Name":"#003","PlayerID":849110743,"Points":1820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58748","ServerKey":"pl181","X":304,"Y":379},{"Bonus":1,"Continent":"K76","ID":58749,"Name":"budowa 01","PlayerID":7139820,"Points":2238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58749","ServerKey":"pl181","X":600,"Y":719},{"Bonus":0,"Continent":"K42","ID":58750,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58750","ServerKey":"pl181","X":274,"Y":416},{"Bonus":0,"Continent":"K36","ID":58752,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58752","ServerKey":"pl181","X":624,"Y":304},{"Bonus":0,"Continent":"K52","ID":58753,"Name":"0000041Z","PlayerID":849089881,"Points":2072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58753","ServerKey":"pl181","X":279,"Y":567},{"Bonus":0,"Continent":"K47","ID":58754,"Name":"041 KTW","PlayerID":848883237,"Points":995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58754","ServerKey":"pl181","X":725,"Y":443},{"Bonus":0,"Continent":"K36","ID":58755,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58755","ServerKey":"pl181","X":650,"Y":316},{"Bonus":0,"Continent":"K47","ID":58756,"Name":"092. Wioska barbarzyƄska","PlayerID":7494497,"Points":2775,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58756","ServerKey":"pl181","X":737,"Y":461},{"Bonus":0,"Continent":"K42","ID":58757,"Name":"Wioska Mateuszek0330","PlayerID":849079977,"Points":192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58757","ServerKey":"pl181","X":267,"Y":465},{"Bonus":0,"Continent":"K74","ID":58758,"Name":"New World","PlayerID":698152377,"Points":3842,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58758","ServerKey":"pl181","X":418,"Y":720},{"Bonus":0,"Continent":"K75","ID":58759,"Name":"zakręcona","PlayerID":6658016,"Points":2006,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58759","ServerKey":"pl181","X":578,"Y":725},{"Bonus":0,"Continent":"K47","ID":58760,"Name":"032 KTW","PlayerID":848883237,"Points":1689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58760","ServerKey":"pl181","X":725,"Y":444},{"Bonus":0,"Continent":"K57","ID":58761,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":698,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58761","ServerKey":"pl181","X":731,"Y":556},{"Bonus":0,"Continent":"K57","ID":58762,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":2192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58762","ServerKey":"pl181","X":728,"Y":552},{"Bonus":0,"Continent":"K42","ID":58763,"Name":"BorĂłw","PlayerID":849116221,"Points":4368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58763","ServerKey":"pl181","X":272,"Y":463},{"Bonus":0,"Continent":"K33","ID":58764,"Name":"No.4","PlayerID":849106612,"Points":506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58764","ServerKey":"pl181","X":328,"Y":337},{"Bonus":0,"Continent":"K66","ID":58765,"Name":"001","PlayerID":1609607,"Points":642,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58765","ServerKey":"pl181","X":690,"Y":645},{"Bonus":0,"Continent":"K26","ID":58766,"Name":"Wioska katarzyna2012","PlayerID":698931998,"Points":1898,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58766","ServerKey":"pl181","X":609,"Y":289},{"Bonus":2,"Continent":"K74","ID":58767,"Name":"FP050","PlayerID":699605333,"Points":2609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58767","ServerKey":"pl181","X":446,"Y":732},{"Bonus":0,"Continent":"K24","ID":58768,"Name":"Poznan 004","PlayerID":1924718,"Points":443,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58768","ServerKey":"pl181","X":408,"Y":282},{"Bonus":1,"Continent":"K75","ID":58769,"Name":"Osada koczownikĂłw","PlayerID":699878511,"Points":3066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58769","ServerKey":"pl181","X":534,"Y":731},{"Bonus":0,"Continent":"K52","ID":58770,"Name":"New WorldA","PlayerID":849084005,"Points":666,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58770","ServerKey":"pl181","X":274,"Y":543},{"Bonus":0,"Continent":"K24","ID":58771,"Name":"elo","PlayerID":849085160,"Points":621,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58771","ServerKey":"pl181","X":432,"Y":274},{"Bonus":0,"Continent":"K75","ID":58773,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":892,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58773","ServerKey":"pl181","X":551,"Y":731},{"Bonus":0,"Continent":"K75","ID":58774,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":680,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58774","ServerKey":"pl181","X":573,"Y":730},{"Bonus":0,"Continent":"K32","ID":58775,"Name":"WB36","PlayerID":356642,"Points":1190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58775","ServerKey":"pl181","X":289,"Y":385},{"Bonus":5,"Continent":"K74","ID":58776,"Name":"Osada koczownikĂłw","PlayerID":849037407,"Points":781,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58776","ServerKey":"pl181","X":464,"Y":733},{"Bonus":0,"Continent":"K37","ID":58778,"Name":"0111","PlayerID":698416970,"Points":918,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58778","ServerKey":"pl181","X":710,"Y":386},{"Bonus":0,"Continent":"K54","ID":58779,"Name":"Wioska barbarzyƄska","PlayerID":699425709,"Points":1435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58779","ServerKey":"pl181","X":411,"Y":531},{"Bonus":0,"Continent":"K47","ID":58780,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58780","ServerKey":"pl181","X":733,"Y":475},{"Bonus":0,"Continent":"K74","ID":58781,"Name":"029","PlayerID":8268010,"Points":1311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58781","ServerKey":"pl181","X":473,"Y":740},{"Bonus":0,"Continent":"K74","ID":58782,"Name":"New World","PlayerID":698152377,"Points":3619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58782","ServerKey":"pl181","X":406,"Y":711},{"Bonus":0,"Continent":"K74","ID":58783,"Name":"Wioska barbarzyƄska","PlayerID":698152377,"Points":1247,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58783","ServerKey":"pl181","X":430,"Y":728},{"Bonus":0,"Continent":"K74","ID":58784,"Name":"051. Cukiereczek","PlayerID":848928624,"Points":384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58784","ServerKey":"pl181","X":451,"Y":736},{"Bonus":0,"Continent":"K73","ID":58785,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58785","ServerKey":"pl181","X":399,"Y":707},{"Bonus":0,"Continent":"K24","ID":58786,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58786","ServerKey":"pl181","X":478,"Y":266},{"Bonus":0,"Continent":"K74","ID":58788,"Name":"New World","PlayerID":698152377,"Points":2271,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58788","ServerKey":"pl181","X":422,"Y":721},{"Bonus":0,"Continent":"K75","ID":58789,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":1072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58789","ServerKey":"pl181","X":586,"Y":721},{"Bonus":5,"Continent":"K24","ID":58790,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":4110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58790","ServerKey":"pl181","X":473,"Y":261},{"Bonus":0,"Continent":"K75","ID":58791,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58791","ServerKey":"pl181","X":553,"Y":733},{"Bonus":0,"Continent":"K24","ID":58792,"Name":"Wioska b 007","PlayerID":6343784,"Points":967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58792","ServerKey":"pl181","X":416,"Y":280},{"Bonus":0,"Continent":"K36","ID":58793,"Name":"Wioska wabos","PlayerID":698485268,"Points":128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58793","ServerKey":"pl181","X":684,"Y":357},{"Bonus":0,"Continent":"K66","ID":58794,"Name":"Wioska 1","PlayerID":849114445,"Points":1859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58794","ServerKey":"pl181","X":652,"Y":686},{"Bonus":0,"Continent":"K23","ID":58795,"Name":"015","PlayerID":699694284,"Points":3365,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58795","ServerKey":"pl181","X":397,"Y":285},{"Bonus":0,"Continent":"K32","ID":58796,"Name":"bystra rzeka","PlayerID":698677650,"Points":433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58796","ServerKey":"pl181","X":292,"Y":396},{"Bonus":0,"Continent":"K66","ID":58797,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":3344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58797","ServerKey":"pl181","X":648,"Y":684},{"Bonus":0,"Continent":"K47","ID":58798,"Name":"Etitek 7","PlayerID":848999448,"Points":1438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58798","ServerKey":"pl181","X":730,"Y":495},{"Bonus":0,"Continent":"K23","ID":58799,"Name":"241","PlayerID":7271812,"Points":1620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58799","ServerKey":"pl181","X":374,"Y":297},{"Bonus":0,"Continent":"K26","ID":58800,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58800","ServerKey":"pl181","X":614,"Y":291},{"Bonus":0,"Continent":"K32","ID":58801,"Name":"WB38","PlayerID":356642,"Points":970,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58801","ServerKey":"pl181","X":294,"Y":385},{"Bonus":0,"Continent":"K36","ID":58802,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58802","ServerKey":"pl181","X":664,"Y":323},{"Bonus":6,"Continent":"K25","ID":58803,"Name":"XDX","PlayerID":699098531,"Points":3331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58803","ServerKey":"pl181","X":599,"Y":291},{"Bonus":0,"Continent":"K33","ID":58804,"Name":"Lecymy DUR","PlayerID":6169408,"Points":2209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58804","ServerKey":"pl181","X":350,"Y":318},{"Bonus":0,"Continent":"K76","ID":58805,"Name":"budowa 03","PlayerID":7139820,"Points":1515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58805","ServerKey":"pl181","X":600,"Y":713},{"Bonus":0,"Continent":"K57","ID":58806,"Name":"Wioska Loca","PlayerID":848927262,"Points":54,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58806","ServerKey":"pl181","X":741,"Y":506},{"Bonus":0,"Continent":"K42","ID":58808,"Name":"32 barbarzyƄska","PlayerID":849018442,"Points":2382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58808","ServerKey":"pl181","X":266,"Y":447},{"Bonus":4,"Continent":"K36","ID":58809,"Name":"026. Osada koczownikĂłw","PlayerID":2873154,"Points":4212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58809","ServerKey":"pl181","X":699,"Y":385},{"Bonus":0,"Continent":"K66","ID":58810,"Name":"Wioska znek8","PlayerID":7866994,"Points":1015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58810","ServerKey":"pl181","X":670,"Y":663},{"Bonus":0,"Continent":"K63","ID":58811,"Name":"Wioska pierszak","PlayerID":6379173,"Points":574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58811","ServerKey":"pl181","X":367,"Y":693},{"Bonus":0,"Continent":"K33","ID":58812,"Name":"Wioska Szymkowiak","PlayerID":849100089,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58812","ServerKey":"pl181","X":370,"Y":304},{"Bonus":0,"Continent":"K36","ID":58813,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58813","ServerKey":"pl181","X":658,"Y":320},{"Bonus":0,"Continent":"K47","ID":58814,"Name":"Wioska natofp","PlayerID":849116251,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58814","ServerKey":"pl181","X":733,"Y":489},{"Bonus":0,"Continent":"K32","ID":58815,"Name":"WB28","PlayerID":356642,"Points":1656,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58815","ServerKey":"pl181","X":297,"Y":371},{"Bonus":0,"Continent":"K47","ID":58817,"Name":"Wioska Bicoss","PlayerID":699609445,"Points":887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58817","ServerKey":"pl181","X":712,"Y":400},{"Bonus":0,"Continent":"K24","ID":58818,"Name":"hope","PlayerID":849099965,"Points":3015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58818","ServerKey":"pl181","X":439,"Y":269},{"Bonus":0,"Continent":"K74","ID":58819,"Name":"030","PlayerID":8268010,"Points":1153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58819","ServerKey":"pl181","X":464,"Y":735},{"Bonus":0,"Continent":"K36","ID":58820,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58820","ServerKey":"pl181","X":662,"Y":329},{"Bonus":0,"Continent":"K24","ID":58821,"Name":"Wioska barbarzyƄska","PlayerID":3411571,"Points":2103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58821","ServerKey":"pl181","X":415,"Y":286},{"Bonus":0,"Continent":"K52","ID":58822,"Name":"New WorldA","PlayerID":849084005,"Points":725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58822","ServerKey":"pl181","X":264,"Y":550},{"Bonus":0,"Continent":"K47","ID":58823,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58823","ServerKey":"pl181","X":726,"Y":446},{"Bonus":0,"Continent":"K33","ID":58824,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":1854,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58824","ServerKey":"pl181","X":342,"Y":317},{"Bonus":0,"Continent":"K75","ID":58825,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":38,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58825","ServerKey":"pl181","X":564,"Y":725},{"Bonus":0,"Continent":"K37","ID":58826,"Name":"0121","PlayerID":698416970,"Points":648,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58826","ServerKey":"pl181","X":707,"Y":376},{"Bonus":0,"Continent":"K73","ID":58827,"Name":"Wioska prezes naczelny","PlayerID":698696420,"Points":3644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58827","ServerKey":"pl181","X":393,"Y":711},{"Bonus":0,"Continent":"K66","ID":58828,"Name":"Wioska AjuZGora","PlayerID":699696740,"Points":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58828","ServerKey":"pl181","X":680,"Y":648},{"Bonus":0,"Continent":"K36","ID":58829,"Name":"047. Wioska barbarzyƄska","PlayerID":2873154,"Points":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58829","ServerKey":"pl181","X":688,"Y":355},{"Bonus":0,"Continent":"K73","ID":58830,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58830","ServerKey":"pl181","X":372,"Y":700},{"Bonus":0,"Continent":"K52","ID":58831,"Name":"Wioska rafaltz","PlayerID":849116416,"Points":250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58831","ServerKey":"pl181","X":282,"Y":578},{"Bonus":0,"Continent":"K52","ID":58832,"Name":"C0333","PlayerID":8841266,"Points":1243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58832","ServerKey":"pl181","X":261,"Y":515},{"Bonus":0,"Continent":"K33","ID":58834,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":1868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58834","ServerKey":"pl181","X":350,"Y":312},{"Bonus":0,"Continent":"K26","ID":58835,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58835","ServerKey":"pl181","X":607,"Y":296},{"Bonus":0,"Continent":"K37","ID":58836,"Name":"0118","PlayerID":698416970,"Points":576,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58836","ServerKey":"pl181","X":706,"Y":376},{"Bonus":7,"Continent":"K42","ID":58837,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1740,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58837","ServerKey":"pl181","X":284,"Y":403},{"Bonus":0,"Continent":"K75","ID":58838,"Name":"Wioska LOƁKICK","PlayerID":849004461,"Points":1908,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58838","ServerKey":"pl181","X":543,"Y":733},{"Bonus":0,"Continent":"K33","ID":58839,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58839","ServerKey":"pl181","X":341,"Y":320},{"Bonus":0,"Continent":"K75","ID":58840,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58840","ServerKey":"pl181","X":586,"Y":719},{"Bonus":0,"Continent":"K24","ID":58841,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":3696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58841","ServerKey":"pl181","X":492,"Y":261},{"Bonus":0,"Continent":"K26","ID":58842,"Name":"Wioska VillaSHL","PlayerID":849116310,"Points":2427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58842","ServerKey":"pl181","X":615,"Y":293},{"Bonus":0,"Continent":"K52","ID":58843,"Name":"Wioska b 1","PlayerID":1164249,"Points":1416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58843","ServerKey":"pl181","X":260,"Y":508},{"Bonus":0,"Continent":"K24","ID":58844,"Name":"135.Stradi","PlayerID":698365960,"Points":755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58844","ServerKey":"pl181","X":445,"Y":272},{"Bonus":0,"Continent":"K24","ID":58845,"Name":"Gwenville 012","PlayerID":848986638,"Points":1415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58845","ServerKey":"pl181","X":454,"Y":264},{"Bonus":0,"Continent":"K74","ID":58846,"Name":"New World","PlayerID":698152377,"Points":724,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58846","ServerKey":"pl181","X":434,"Y":721},{"Bonus":0,"Continent":"K23","ID":58847,"Name":"139.Stradi","PlayerID":698365960,"Points":1187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58847","ServerKey":"pl181","X":398,"Y":293},{"Bonus":5,"Continent":"K52","ID":58848,"Name":"Pan Kebab","PlayerID":849105417,"Points":486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58848","ServerKey":"pl181","X":268,"Y":512},{"Bonus":0,"Continent":"K66","ID":58849,"Name":"Wioska izka1611","PlayerID":2232973,"Points":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58849","ServerKey":"pl181","X":698,"Y":631},{"Bonus":0,"Continent":"K42","ID":58850,"Name":"*002*","PlayerID":699791054,"Points":237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58850","ServerKey":"pl181","X":275,"Y":432},{"Bonus":0,"Continent":"K33","ID":58851,"Name":"Wioska barbarzyƄska","PlayerID":699870267,"Points":351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58851","ServerKey":"pl181","X":301,"Y":370},{"Bonus":0,"Continent":"K24","ID":58852,"Name":"North 091","PlayerID":849064752,"Points":2901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58852","ServerKey":"pl181","X":487,"Y":267},{"Bonus":0,"Continent":"K75","ID":58853,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":601,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58853","ServerKey":"pl181","X":592,"Y":719},{"Bonus":0,"Continent":"K33","ID":58854,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58854","ServerKey":"pl181","X":309,"Y":369},{"Bonus":0,"Continent":"K57","ID":58855,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58855","ServerKey":"pl181","X":736,"Y":537},{"Bonus":1,"Continent":"K66","ID":58856,"Name":"K66 Drewno","PlayerID":698867483,"Points":2235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58856","ServerKey":"pl181","X":699,"Y":627},{"Bonus":0,"Continent":"K62","ID":58858,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58858","ServerKey":"pl181","X":297,"Y":630},{"Bonus":0,"Continent":"K57","ID":58859,"Name":"Crazy Pig","PlayerID":848932879,"Points":714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58859","ServerKey":"pl181","X":725,"Y":567},{"Bonus":0,"Continent":"K37","ID":58860,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58860","ServerKey":"pl181","X":704,"Y":391},{"Bonus":0,"Continent":"K66","ID":58861,"Name":"#169#","PlayerID":692803,"Points":411,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58861","ServerKey":"pl181","X":642,"Y":689},{"Bonus":0,"Continent":"K74","ID":58862,"Name":"028Kawik","PlayerID":698620694,"Points":4221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58862","ServerKey":"pl181","X":466,"Y":731},{"Bonus":0,"Continent":"K37","ID":58863,"Name":"0134","PlayerID":698416970,"Points":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58863","ServerKey":"pl181","X":702,"Y":376},{"Bonus":0,"Continent":"K32","ID":58864,"Name":"samotna skala","PlayerID":698677650,"Points":341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58864","ServerKey":"pl181","X":288,"Y":393},{"Bonus":0,"Continent":"K47","ID":58866,"Name":"044 KTW","PlayerID":848883237,"Points":623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58866","ServerKey":"pl181","X":733,"Y":452},{"Bonus":0,"Continent":"K25","ID":58867,"Name":"Wioska barbarzyƄska","PlayerID":3027589,"Points":550,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58867","ServerKey":"pl181","X":525,"Y":263},{"Bonus":0,"Continent":"K47","ID":58868,"Name":"jeszcze dalej","PlayerID":849095435,"Points":1811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58868","ServerKey":"pl181","X":731,"Y":431},{"Bonus":0,"Continent":"K47","ID":58869,"Name":"040 - Albacete","PlayerID":698342159,"Points":956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58869","ServerKey":"pl181","X":727,"Y":416},{"Bonus":0,"Continent":"K75","ID":58870,"Name":"Wioska Jozin321","PlayerID":849116287,"Points":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58870","ServerKey":"pl181","X":589,"Y":720},{"Bonus":0,"Continent":"K73","ID":58871,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58871","ServerKey":"pl181","X":367,"Y":700},{"Bonus":0,"Continent":"K76","ID":58872,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":588,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58872","ServerKey":"pl181","X":629,"Y":700},{"Bonus":0,"Continent":"K36","ID":58873,"Name":"Zasiedmiogorogrodzie 004","PlayerID":698278542,"Points":1359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58873","ServerKey":"pl181","X":691,"Y":366},{"Bonus":5,"Continent":"K25","ID":58874,"Name":"Osada koczownikĂłw","PlayerID":849100406,"Points":3777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58874","ServerKey":"pl181","X":593,"Y":277},{"Bonus":0,"Continent":"K25","ID":58875,"Name":"sh07","PlayerID":7064954,"Points":743,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58875","ServerKey":"pl181","X":513,"Y":269},{"Bonus":0,"Continent":"K52","ID":58876,"Name":"Wioska barbarzyƄska","PlayerID":849084005,"Points":296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58876","ServerKey":"pl181","X":263,"Y":523},{"Bonus":0,"Continent":"K73","ID":58877,"Name":"Wioska marcinmista","PlayerID":849112879,"Points":2791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58877","ServerKey":"pl181","X":372,"Y":701},{"Bonus":0,"Continent":"K67","ID":58878,"Name":"K67 16","PlayerID":698867483,"Points":2780,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58878","ServerKey":"pl181","X":703,"Y":617},{"Bonus":0,"Continent":"K36","ID":58879,"Name":"Brzydgoszcz","PlayerID":848922958,"Points":961,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58879","ServerKey":"pl181","X":625,"Y":306},{"Bonus":0,"Continent":"K24","ID":58880,"Name":"North 098","PlayerID":849064752,"Points":2857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58880","ServerKey":"pl181","X":482,"Y":270},{"Bonus":0,"Continent":"K36","ID":58881,"Name":"[002] Czemu nie","PlayerID":699477624,"Points":2008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58881","ServerKey":"pl181","X":662,"Y":326},{"Bonus":0,"Continent":"K63","ID":58882,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58882","ServerKey":"pl181","X":341,"Y":679},{"Bonus":0,"Continent":"K76","ID":58883,"Name":"ble","PlayerID":848909464,"Points":930,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58883","ServerKey":"pl181","X":632,"Y":702},{"Bonus":0,"Continent":"K36","ID":58884,"Name":"-002- Wioska barbarzyƄska","PlayerID":849095068,"Points":1303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58884","ServerKey":"pl181","X":684,"Y":346},{"Bonus":2,"Continent":"K33","ID":58885,"Name":"WB44","PlayerID":356642,"Points":670,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58885","ServerKey":"pl181","X":300,"Y":366},{"Bonus":0,"Continent":"K76","ID":58886,"Name":"o020","PlayerID":699189792,"Points":3319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58886","ServerKey":"pl181","X":614,"Y":705},{"Bonus":0,"Continent":"K36","ID":58887,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58887","ServerKey":"pl181","X":649,"Y":323},{"Bonus":0,"Continent":"K52","ID":58888,"Name":"Wioska Butcher*","PlayerID":1153934,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58888","ServerKey":"pl181","X":268,"Y":558},{"Bonus":0,"Continent":"K57","ID":58889,"Name":"WschĂłd 005","PlayerID":698562644,"Points":567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58889","ServerKey":"pl181","X":720,"Y":599},{"Bonus":0,"Continent":"K24","ID":58890,"Name":"Wioska barbarzyƄska","PlayerID":698231772,"Points":1492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58890","ServerKey":"pl181","X":411,"Y":281},{"Bonus":0,"Continent":"K23","ID":58892,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":1055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58892","ServerKey":"pl181","X":390,"Y":287},{"Bonus":0,"Continent":"K66","ID":58893,"Name":"Warszawka","PlayerID":699843389,"Points":499,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58893","ServerKey":"pl181","X":699,"Y":632},{"Bonus":0,"Continent":"K57","ID":58894,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58894","ServerKey":"pl181","X":740,"Y":525},{"Bonus":0,"Continent":"K36","ID":58895,"Name":"Imperium","PlayerID":849116419,"Points":2251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58895","ServerKey":"pl181","X":695,"Y":361},{"Bonus":0,"Continent":"K36","ID":58896,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58896","ServerKey":"pl181","X":667,"Y":335},{"Bonus":0,"Continent":"K56","ID":58897,"Name":"Szlachcic","PlayerID":930720,"Points":6266,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58897","ServerKey":"pl181","X":638,"Y":542},{"Bonus":0,"Continent":"K47","ID":58898,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":787,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58898","ServerKey":"pl181","X":732,"Y":497},{"Bonus":0,"Continent":"K23","ID":58899,"Name":"018","PlayerID":699694284,"Points":1688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58899","ServerKey":"pl181","X":394,"Y":292},{"Bonus":2,"Continent":"K52","ID":58900,"Name":"Elo Elo 12","PlayerID":699016994,"Points":1282,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58900","ServerKey":"pl181","X":281,"Y":583},{"Bonus":0,"Continent":"K74","ID":58901,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58901","ServerKey":"pl181","X":472,"Y":732},{"Bonus":0,"Continent":"K36","ID":58902,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58902","ServerKey":"pl181","X":637,"Y":315},{"Bonus":0,"Continent":"K25","ID":58903,"Name":"Wioska Swiechu","PlayerID":698845107,"Points":102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58903","ServerKey":"pl181","X":574,"Y":278},{"Bonus":0,"Continent":"K75","ID":58905,"Name":"Wioska barbarzyƄska","PlayerID":849066849,"Points":416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58905","ServerKey":"pl181","X":517,"Y":739},{"Bonus":0,"Continent":"K25","ID":58906,"Name":"Wioska dynamit666","PlayerID":8552893,"Points":2551,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58906","ServerKey":"pl181","X":527,"Y":265},{"Bonus":1,"Continent":"K57","ID":58907,"Name":"A#049","PlayerID":2065730,"Points":5246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58907","ServerKey":"pl181","X":732,"Y":535},{"Bonus":0,"Continent":"K25","ID":58909,"Name":"Wioska barbarzyƄska","PlayerID":849064752,"Points":262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58909","ServerKey":"pl181","X":521,"Y":260},{"Bonus":0,"Continent":"K63","ID":58910,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58910","ServerKey":"pl181","X":348,"Y":687},{"Bonus":0,"Continent":"K75","ID":58911,"Name":"jagger23","PlayerID":2646397,"Points":3072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58911","ServerKey":"pl181","X":519,"Y":741},{"Bonus":0,"Continent":"K25","ID":58912,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58912","ServerKey":"pl181","X":597,"Y":289},{"Bonus":0,"Continent":"K63","ID":58913,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58913","ServerKey":"pl181","X":350,"Y":683},{"Bonus":0,"Continent":"K57","ID":58914,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":1380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58914","ServerKey":"pl181","X":720,"Y":580},{"Bonus":0,"Continent":"K33","ID":58915,"Name":"Zaplecze Barba 051","PlayerID":699796330,"Points":897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58915","ServerKey":"pl181","X":344,"Y":327},{"Bonus":0,"Continent":"K74","ID":58916,"Name":"R 053","PlayerID":699195358,"Points":1636,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58916","ServerKey":"pl181","X":490,"Y":733},{"Bonus":0,"Continent":"K66","ID":58917,"Name":"NIe Bij Chce tylko grac","PlayerID":9312528,"Points":4030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58917","ServerKey":"pl181","X":676,"Y":657},{"Bonus":0,"Continent":"K52","ID":58918,"Name":"New WorldA","PlayerID":849084005,"Points":857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58918","ServerKey":"pl181","X":267,"Y":529},{"Bonus":0,"Continent":"K55","ID":58919,"Name":"Wioska Makoo","PlayerID":848913030,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58919","ServerKey":"pl181","X":546,"Y":525},{"Bonus":0,"Continent":"K32","ID":58920,"Name":"Wioska barbarzyƄska","PlayerID":849076515,"Points":332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58920","ServerKey":"pl181","X":296,"Y":390},{"Bonus":0,"Continent":"K66","ID":58921,"Name":"Sony 911","PlayerID":1415009,"Points":675,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58921","ServerKey":"pl181","X":682,"Y":649},{"Bonus":0,"Continent":"K24","ID":58922,"Name":"122.Stradi","PlayerID":698365960,"Points":2239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58922","ServerKey":"pl181","X":449,"Y":274},{"Bonus":0,"Continent":"K37","ID":58923,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":1285,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58923","ServerKey":"pl181","X":703,"Y":379},{"Bonus":0,"Continent":"K66","ID":58924,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58924","ServerKey":"pl181","X":630,"Y":691},{"Bonus":0,"Continent":"K63","ID":58925,"Name":"Wioska Gimi7777","PlayerID":849091972,"Points":957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58925","ServerKey":"pl181","X":349,"Y":686},{"Bonus":0,"Continent":"K36","ID":58926,"Name":"t028","PlayerID":2262902,"Points":251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58926","ServerKey":"pl181","X":669,"Y":343},{"Bonus":0,"Continent":"K33","ID":58927,"Name":"DziaƂka","PlayerID":849098557,"Points":400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58927","ServerKey":"pl181","X":322,"Y":337},{"Bonus":3,"Continent":"K42","ID":58928,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4026,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58928","ServerKey":"pl181","X":274,"Y":447},{"Bonus":0,"Continent":"K36","ID":58929,"Name":"Wioska blady14","PlayerID":849106210,"Points":1881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58929","ServerKey":"pl181","X":642,"Y":308},{"Bonus":0,"Continent":"K52","ID":58930,"Name":"Wioska barbarzyƄska","PlayerID":698663855,"Points":64,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58930","ServerKey":"pl181","X":285,"Y":597},{"Bonus":0,"Continent":"K36","ID":58931,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58931","ServerKey":"pl181","X":677,"Y":340},{"Bonus":0,"Continent":"K63","ID":58932,"Name":"Wioska 7homasbaN1","PlayerID":699600855,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58932","ServerKey":"pl181","X":322,"Y":662},{"Bonus":0,"Continent":"K47","ID":58933,"Name":"052","PlayerID":849091105,"Points":221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58933","ServerKey":"pl181","X":733,"Y":478},{"Bonus":0,"Continent":"K63","ID":58934,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":283,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58934","ServerKey":"pl181","X":312,"Y":651},{"Bonus":0,"Continent":"K36","ID":58935,"Name":"040. 5spajk5","PlayerID":2873154,"Points":623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58935","ServerKey":"pl181","X":681,"Y":349},{"Bonus":0,"Continent":"K47","ID":58936,"Name":"221 |","PlayerID":8000875,"Points":603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58936","ServerKey":"pl181","X":725,"Y":416},{"Bonus":0,"Continent":"K75","ID":58937,"Name":"Wioska vodka442","PlayerID":8708728,"Points":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58937","ServerKey":"pl181","X":503,"Y":740},{"Bonus":0,"Continent":"K52","ID":58938,"Name":"Cisza","PlayerID":698769107,"Points":640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58938","ServerKey":"pl181","X":267,"Y":563},{"Bonus":0,"Continent":"K55","ID":58939,"Name":"Wioska Don Kalion","PlayerID":699552859,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58939","ServerKey":"pl181","X":544,"Y":516},{"Bonus":0,"Continent":"K47","ID":58940,"Name":"Wioska Gilutyna","PlayerID":849108933,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58940","ServerKey":"pl181","X":736,"Y":460},{"Bonus":2,"Continent":"K42","ID":58941,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58941","ServerKey":"pl181","X":270,"Y":440},{"Bonus":0,"Continent":"K75","ID":58943,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58943","ServerKey":"pl181","X":543,"Y":727},{"Bonus":3,"Continent":"K25","ID":58944,"Name":"PPF-10","PlayerID":1424656,"Points":2914,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58944","ServerKey":"pl181","X":510,"Y":263},{"Bonus":0,"Continent":"K66","ID":58945,"Name":"Wioska Ulanyksiadz","PlayerID":699673236,"Points":354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58945","ServerKey":"pl181","X":696,"Y":633},{"Bonus":0,"Continent":"K37","ID":58946,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2013,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58946","ServerKey":"pl181","X":714,"Y":391},{"Bonus":0,"Continent":"K47","ID":58947,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":617,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58947","ServerKey":"pl181","X":727,"Y":460},{"Bonus":0,"Continent":"K32","ID":58948,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58948","ServerKey":"pl181","X":285,"Y":399},{"Bonus":0,"Continent":"K37","ID":58949,"Name":"044","PlayerID":849091105,"Points":860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58949","ServerKey":"pl181","X":701,"Y":371},{"Bonus":0,"Continent":"K73","ID":58950,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":69,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58950","ServerKey":"pl181","X":392,"Y":714},{"Bonus":0,"Continent":"K42","ID":58951,"Name":"[0278]","PlayerID":8630972,"Points":3673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58951","ServerKey":"pl181","X":263,"Y":496},{"Bonus":0,"Continent":"K63","ID":58952,"Name":"Wioska I","PlayerID":849095948,"Points":3275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58952","ServerKey":"pl181","X":336,"Y":616},{"Bonus":0,"Continent":"K52","ID":58953,"Name":"C0349","PlayerID":8841266,"Points":218,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58953","ServerKey":"pl181","X":267,"Y":527},{"Bonus":0,"Continent":"K47","ID":58954,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58954","ServerKey":"pl181","X":714,"Y":409},{"Bonus":0,"Continent":"K66","ID":58955,"Name":"Sony 911","PlayerID":1415009,"Points":4047,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58955","ServerKey":"pl181","X":686,"Y":645},{"Bonus":0,"Continent":"K24","ID":58956,"Name":"Wioska barbarzyƄska","PlayerID":849090573,"Points":142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58956","ServerKey":"pl181","X":458,"Y":272},{"Bonus":0,"Continent":"K66","ID":58957,"Name":"04# Wioska barbarzyƄska","PlayerID":8444698,"Points":558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58957","ServerKey":"pl181","X":681,"Y":644},{"Bonus":0,"Continent":"K47","ID":58958,"Name":"097. Wioska barbarzyƄska","PlayerID":7494497,"Points":2470,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58958","ServerKey":"pl181","X":737,"Y":454},{"Bonus":0,"Continent":"K66","ID":58959,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4856,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58959","ServerKey":"pl181","X":649,"Y":683},{"Bonus":0,"Continent":"K47","ID":58960,"Name":"Wioska szewa432","PlayerID":849090890,"Points":164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58960","ServerKey":"pl181","X":740,"Y":482},{"Bonus":0,"Continent":"K63","ID":58961,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58961","ServerKey":"pl181","X":360,"Y":684},{"Bonus":0,"Continent":"K47","ID":58962,"Name":"105. Wioska barbarzyƄska","PlayerID":7494497,"Points":351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58962","ServerKey":"pl181","X":727,"Y":455},{"Bonus":0,"Continent":"K24","ID":58963,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58963","ServerKey":"pl181","X":452,"Y":274},{"Bonus":0,"Continent":"K63","ID":58964,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58964","ServerKey":"pl181","X":313,"Y":647},{"Bonus":0,"Continent":"K57","ID":58965,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":3130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58965","ServerKey":"pl181","X":719,"Y":594},{"Bonus":0,"Continent":"K33","ID":58966,"Name":"NOT?","PlayerID":9236866,"Points":553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58966","ServerKey":"pl181","X":303,"Y":362},{"Bonus":0,"Continent":"K66","ID":58967,"Name":"Wioska barbarzyƄska","PlayerID":8627359,"Points":2131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58967","ServerKey":"pl181","X":652,"Y":684},{"Bonus":4,"Continent":"K63","ID":58968,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":2362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58968","ServerKey":"pl181","X":371,"Y":698},{"Bonus":0,"Continent":"K32","ID":58969,"Name":"WB32","PlayerID":356642,"Points":995,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58969","ServerKey":"pl181","X":295,"Y":379},{"Bonus":0,"Continent":"K24","ID":58970,"Name":"005","PlayerID":602408,"Points":419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58970","ServerKey":"pl181","X":458,"Y":271},{"Bonus":0,"Continent":"K74","ID":58971,"Name":"New World","PlayerID":698152377,"Points":2827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58971","ServerKey":"pl181","X":420,"Y":719},{"Bonus":0,"Continent":"K66","ID":58972,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58972","ServerKey":"pl181","X":689,"Y":635},{"Bonus":0,"Continent":"K55","ID":58973,"Name":"Szlachcic","PlayerID":698867446,"Points":688,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58973","ServerKey":"pl181","X":544,"Y":514},{"Bonus":0,"Continent":"K36","ID":58974,"Name":"[003] Dobra nie","PlayerID":699477624,"Points":1372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58974","ServerKey":"pl181","X":661,"Y":323},{"Bonus":0,"Continent":"K47","ID":58976,"Name":"[843] Odludzie","PlayerID":848985692,"Points":2427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58976","ServerKey":"pl181","X":725,"Y":430},{"Bonus":0,"Continent":"K66","ID":58977,"Name":"Wioska Kerakein","PlayerID":849116357,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58977","ServerKey":"pl181","X":683,"Y":640},{"Bonus":0,"Continent":"K23","ID":58978,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58978","ServerKey":"pl181","X":385,"Y":293},{"Bonus":0,"Continent":"K74","ID":58979,"Name":"056 - Budowanko!","PlayerID":7540891,"Points":2519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58979","ServerKey":"pl181","X":483,"Y":731},{"Bonus":0,"Continent":"K57","ID":58980,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58980","ServerKey":"pl181","X":722,"Y":573},{"Bonus":0,"Continent":"K26","ID":58981,"Name":"Wioska Harpun98vos","PlayerID":848942734,"Points":512,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58981","ServerKey":"pl181","X":626,"Y":295},{"Bonus":0,"Continent":"K55","ID":58982,"Name":"Wioska Marcinho10","PlayerID":699844727,"Points":2177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58982","ServerKey":"pl181","X":545,"Y":514},{"Bonus":0,"Continent":"K42","ID":58983,"Name":"31 barbarzyƄska","PlayerID":849018442,"Points":2619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58983","ServerKey":"pl181","X":268,"Y":447},{"Bonus":0,"Continent":"K66","ID":58984,"Name":"Wioska pele z zar","PlayerID":724621,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58984","ServerKey":"pl181","X":677,"Y":656},{"Bonus":0,"Continent":"K52","ID":58986,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58986","ServerKey":"pl181","X":269,"Y":504},{"Bonus":0,"Continent":"K37","ID":58987,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":1582,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58987","ServerKey":"pl181","X":701,"Y":383},{"Bonus":0,"Continent":"K66","ID":58988,"Name":"Wioska jareczek951","PlayerID":849114683,"Points":1053,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58988","ServerKey":"pl181","X":655,"Y":682},{"Bonus":0,"Continent":"K47","ID":58989,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":719,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58989","ServerKey":"pl181","X":727,"Y":440},{"Bonus":0,"Continent":"K75","ID":58990,"Name":"Wioska miki021","PlayerID":699785141,"Points":793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58990","ServerKey":"pl181","X":598,"Y":713},{"Bonus":0,"Continent":"K26","ID":58991,"Name":"Wioska barbarzyƄska","PlayerID":849037469,"Points":1241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58991","ServerKey":"pl181","X":621,"Y":294},{"Bonus":0,"Continent":"K36","ID":58992,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58992","ServerKey":"pl181","X":626,"Y":306},{"Bonus":0,"Continent":"K42","ID":58993,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2099,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58993","ServerKey":"pl181","X":277,"Y":414},{"Bonus":0,"Continent":"K24","ID":58994,"Name":"Diabelski OgrĂłd","PlayerID":849037354,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58994","ServerKey":"pl181","X":413,"Y":277},{"Bonus":0,"Continent":"K33","ID":58995,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58995","ServerKey":"pl181","X":359,"Y":311},{"Bonus":0,"Continent":"K63","ID":58996,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58996","ServerKey":"pl181","X":329,"Y":656},{"Bonus":0,"Continent":"K75","ID":58997,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":2557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58997","ServerKey":"pl181","X":545,"Y":732},{"Bonus":0,"Continent":"K36","ID":58998,"Name":"Wioska Hejhej","PlayerID":699751062,"Points":318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58998","ServerKey":"pl181","X":666,"Y":325},{"Bonus":0,"Continent":"K33","ID":58999,"Name":"PIROTECHNIK 011","PlayerID":849101083,"Points":478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=58999","ServerKey":"pl181","X":338,"Y":337},{"Bonus":0,"Continent":"K33","ID":59000,"Name":"Wioska bunu4","PlayerID":849050087,"Points":1122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59000","ServerKey":"pl181","X":305,"Y":368},{"Bonus":0,"Continent":"K57","ID":59001,"Name":"KREV 006","PlayerID":848988744,"Points":248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59001","ServerKey":"pl181","X":723,"Y":593},{"Bonus":0,"Continent":"K42","ID":59002,"Name":"Maryna 5","PlayerID":699650981,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59002","ServerKey":"pl181","X":268,"Y":459},{"Bonus":0,"Continent":"K42","ID":59003,"Name":"34 barbarzyƄska B","PlayerID":849018442,"Points":3201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59003","ServerKey":"pl181","X":266,"Y":449},{"Bonus":0,"Continent":"K36","ID":59004,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59004","ServerKey":"pl181","X":659,"Y":330},{"Bonus":0,"Continent":"K33","ID":59005,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3704,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59005","ServerKey":"pl181","X":355,"Y":308},{"Bonus":0,"Continent":"K24","ID":59006,"Name":"North 104","PlayerID":849064752,"Points":2810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59006","ServerKey":"pl181","X":481,"Y":264},{"Bonus":0,"Continent":"K62","ID":59007,"Name":"Wioska barbarzyƄska","PlayerID":699321518,"Points":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59007","ServerKey":"pl181","X":289,"Y":605},{"Bonus":0,"Continent":"K63","ID":59008,"Name":"Wioska Raff Tierro","PlayerID":848932115,"Points":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59008","ServerKey":"pl181","X":350,"Y":676},{"Bonus":0,"Continent":"K76","ID":59009,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":2747,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59009","ServerKey":"pl181","X":606,"Y":712},{"Bonus":0,"Continent":"K36","ID":59010,"Name":"Wioska miro75","PlayerID":699825089,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59010","ServerKey":"pl181","X":641,"Y":316},{"Bonus":2,"Continent":"K32","ID":59011,"Name":"Odyseja","PlayerID":849076810,"Points":444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59011","ServerKey":"pl181","X":284,"Y":395},{"Bonus":0,"Continent":"K33","ID":59012,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":745,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59012","ServerKey":"pl181","X":374,"Y":306},{"Bonus":0,"Continent":"K32","ID":59013,"Name":"WB25","PlayerID":356642,"Points":1612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59013","ServerKey":"pl181","X":294,"Y":374},{"Bonus":0,"Continent":"K52","ID":59014,"Name":"C0329","PlayerID":8841266,"Points":1876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59014","ServerKey":"pl181","X":263,"Y":518},{"Bonus":0,"Continent":"K36","ID":59015,"Name":"Wioska barbarzyƄska","PlayerID":7346797,"Points":815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59015","ServerKey":"pl181","X":670,"Y":339},{"Bonus":0,"Continent":"K37","ID":59016,"Name":"004","PlayerID":699832463,"Points":1134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59016","ServerKey":"pl181","X":712,"Y":399},{"Bonus":0,"Continent":"K75","ID":59017,"Name":"Wioska SzymonMF6465","PlayerID":849114579,"Points":7901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59017","ServerKey":"pl181","X":521,"Y":731},{"Bonus":0,"Continent":"K74","ID":59018,"Name":"Wioska czorny-81","PlayerID":1260088,"Points":513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59018","ServerKey":"pl181","X":415,"Y":724},{"Bonus":0,"Continent":"K47","ID":59019,"Name":"[841] Odludzie","PlayerID":848985692,"Points":3492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59019","ServerKey":"pl181","X":725,"Y":432},{"Bonus":0,"Continent":"K33","ID":59020,"Name":"Wioska Power76","PlayerID":849096454,"Points":51,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59020","ServerKey":"pl181","X":383,"Y":381},{"Bonus":0,"Continent":"K66","ID":59021,"Name":"Wioska Kacperr12","PlayerID":849112264,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59021","ServerKey":"pl181","X":668,"Y":672},{"Bonus":0,"Continent":"K74","ID":59022,"Name":"036 - Budowanko!","PlayerID":7540891,"Points":5144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59022","ServerKey":"pl181","X":482,"Y":733},{"Bonus":0,"Continent":"K66","ID":59023,"Name":"Wioska YenSu","PlayerID":698363063,"Points":1822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59023","ServerKey":"pl181","X":689,"Y":644},{"Bonus":0,"Continent":"K36","ID":59024,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":1034,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59024","ServerKey":"pl181","X":681,"Y":342},{"Bonus":0,"Continent":"K32","ID":59025,"Name":"WB06","PlayerID":356642,"Points":4562,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59025","ServerKey":"pl181","X":297,"Y":379},{"Bonus":0,"Continent":"K24","ID":59026,"Name":"252...NORTH","PlayerID":6920960,"Points":968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59026","ServerKey":"pl181","X":433,"Y":273},{"Bonus":0,"Continent":"K33","ID":59027,"Name":"#11","PlayerID":2800032,"Points":484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59027","ServerKey":"pl181","X":342,"Y":333},{"Bonus":0,"Continent":"K63","ID":59028,"Name":"JAK","PlayerID":7083877,"Points":2671,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59028","ServerKey":"pl181","X":302,"Y":636},{"Bonus":0,"Continent":"K74","ID":59029,"Name":"FP058","PlayerID":699605333,"Points":2082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59029","ServerKey":"pl181","X":447,"Y":731},{"Bonus":0,"Continent":"K42","ID":59030,"Name":"Zabardzo","PlayerID":699821629,"Points":1051,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59030","ServerKey":"pl181","X":284,"Y":412},{"Bonus":0,"Continent":"K66","ID":59031,"Name":"Sony 911","PlayerID":1415009,"Points":2182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59031","ServerKey":"pl181","X":683,"Y":656},{"Bonus":0,"Continent":"K63","ID":59032,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59032","ServerKey":"pl181","X":346,"Y":680},{"Bonus":0,"Continent":"K75","ID":59033,"Name":"025 - Budowanko!","PlayerID":7540891,"Points":4809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59033","ServerKey":"pl181","X":505,"Y":733},{"Bonus":0,"Continent":"K57","ID":59034,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59034","ServerKey":"pl181","X":732,"Y":537},{"Bonus":0,"Continent":"K47","ID":59036,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59036","ServerKey":"pl181","X":716,"Y":406},{"Bonus":0,"Continent":"K24","ID":59037,"Name":"Wioska OneGiet","PlayerID":849108600,"Points":173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59037","ServerKey":"pl181","X":429,"Y":280},{"Bonus":0,"Continent":"K67","ID":59038,"Name":"Szlachcic","PlayerID":698867446,"Points":3103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59038","ServerKey":"pl181","X":707,"Y":610},{"Bonus":0,"Continent":"K36","ID":59039,"Name":"Wioska 1kip7","PlayerID":7346797,"Points":967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59039","ServerKey":"pl181","X":674,"Y":338},{"Bonus":0,"Continent":"K52","ID":59040,"Name":"Cisza","PlayerID":698769107,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59040","ServerKey":"pl181","X":282,"Y":575},{"Bonus":0,"Continent":"K25","ID":59041,"Name":"Wioska barbarzyƄska","PlayerID":849100406,"Points":1897,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59041","ServerKey":"pl181","X":591,"Y":277},{"Bonus":0,"Continent":"K57","ID":59042,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59042","ServerKey":"pl181","X":710,"Y":599},{"Bonus":0,"Continent":"K25","ID":59043,"Name":"#049","PlayerID":849064614,"Points":966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59043","ServerKey":"pl181","X":558,"Y":271},{"Bonus":0,"Continent":"K57","ID":59044,"Name":"Sony 911","PlayerID":1415009,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59044","ServerKey":"pl181","X":718,"Y":599},{"Bonus":0,"Continent":"K57","ID":59045,"Name":"CastAway !025","PlayerID":9314079,"Points":3963,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59045","ServerKey":"pl181","X":711,"Y":593},{"Bonus":0,"Continent":"K23","ID":59046,"Name":"1.Hanolulu","PlayerID":849117143,"Points":2083,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59046","ServerKey":"pl181","X":389,"Y":291},{"Bonus":0,"Continent":"K36","ID":59048,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59048","ServerKey":"pl181","X":674,"Y":337},{"Bonus":0,"Continent":"K33","ID":59049,"Name":"PIROTECHNIK 014","PlayerID":849101083,"Points":298,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59049","ServerKey":"pl181","X":336,"Y":338},{"Bonus":0,"Continent":"K32","ID":59051,"Name":"Wioska Olek96","PlayerID":849113480,"Points":1907,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59051","ServerKey":"pl181","X":290,"Y":387},{"Bonus":0,"Continent":"K33","ID":59052,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59052","ServerKey":"pl181","X":363,"Y":307},{"Bonus":0,"Continent":"K33","ID":59053,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59053","ServerKey":"pl181","X":316,"Y":345},{"Bonus":0,"Continent":"K24","ID":59054,"Name":"121.Stradi","PlayerID":698365960,"Points":2302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59054","ServerKey":"pl181","X":449,"Y":272},{"Bonus":0,"Continent":"K57","ID":59055,"Name":"Rheinmetall","PlayerID":849086925,"Points":308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59055","ServerKey":"pl181","X":732,"Y":556},{"Bonus":0,"Continent":"K36","ID":59056,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":1043,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59056","ServerKey":"pl181","X":659,"Y":321},{"Bonus":0,"Continent":"K33","ID":59058,"Name":"Wioska botlike","PlayerID":7970506,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59058","ServerKey":"pl181","X":335,"Y":335},{"Bonus":0,"Continent":"K42","ID":59059,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":4993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59059","ServerKey":"pl181","X":269,"Y":438},{"Bonus":0,"Continent":"K42","ID":59060,"Name":"Tupot maƂych nĂłĆŒek","PlayerID":7012651,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59060","ServerKey":"pl181","X":261,"Y":484},{"Bonus":0,"Continent":"K25","ID":59061,"Name":"Wioska barbarzyƄska","PlayerID":698350371,"Points":251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59061","ServerKey":"pl181","X":589,"Y":285},{"Bonus":0,"Continent":"K34","ID":59062,"Name":"Wioska Sindbad00","PlayerID":546458,"Points":592,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59062","ServerKey":"pl181","X":414,"Y":325},{"Bonus":0,"Continent":"K76","ID":59063,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59063","ServerKey":"pl181","X":602,"Y":709},{"Bonus":0,"Continent":"K33","ID":59064,"Name":"Wioska barbarzyƄska","PlayerID":3698627,"Points":2518,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59064","ServerKey":"pl181","X":352,"Y":318},{"Bonus":0,"Continent":"K33","ID":59065,"Name":"NOT?","PlayerID":9236866,"Points":274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59065","ServerKey":"pl181","X":309,"Y":359},{"Bonus":0,"Continent":"K66","ID":59066,"Name":"Wioska barbarzyƄska","PlayerID":698786826,"Points":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59066","ServerKey":"pl181","X":693,"Y":643},{"Bonus":0,"Continent":"K76","ID":59067,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59067","ServerKey":"pl181","X":604,"Y":714},{"Bonus":0,"Continent":"K45","ID":59068,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59068","ServerKey":"pl181","X":589,"Y":455},{"Bonus":0,"Continent":"K63","ID":59069,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":88,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59069","ServerKey":"pl181","X":343,"Y":671},{"Bonus":0,"Continent":"K42","ID":59070,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":5011,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59070","ServerKey":"pl181","X":277,"Y":422},{"Bonus":0,"Continent":"K52","ID":59071,"Name":"New WorldA","PlayerID":849084005,"Points":684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59071","ServerKey":"pl181","X":261,"Y":539},{"Bonus":0,"Continent":"K47","ID":59072,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":3442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59072","ServerKey":"pl181","X":724,"Y":436},{"Bonus":7,"Continent":"K52","ID":59073,"Name":"[0275]","PlayerID":8630972,"Points":2902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59073","ServerKey":"pl181","X":258,"Y":502},{"Bonus":0,"Continent":"K57","ID":59074,"Name":"Wioska 010","PlayerID":2999957,"Points":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59074","ServerKey":"pl181","X":741,"Y":511},{"Bonus":0,"Continent":"K66","ID":59075,"Name":"#166#","PlayerID":692803,"Points":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59075","ServerKey":"pl181","X":652,"Y":679},{"Bonus":0,"Continent":"K24","ID":59076,"Name":"072KP","PlayerID":849063849,"Points":427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59076","ServerKey":"pl181","X":467,"Y":270},{"Bonus":0,"Continent":"K25","ID":59077,"Name":"B021","PlayerID":699485250,"Points":2879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59077","ServerKey":"pl181","X":535,"Y":265},{"Bonus":0,"Continent":"K24","ID":59078,"Name":"Wioska b 008","PlayerID":6343784,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59078","ServerKey":"pl181","X":417,"Y":279},{"Bonus":0,"Continent":"K52","ID":59079,"Name":"C0336","PlayerID":8841266,"Points":1037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59079","ServerKey":"pl181","X":266,"Y":529},{"Bonus":0,"Continent":"K42","ID":59080,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59080","ServerKey":"pl181","X":273,"Y":441},{"Bonus":0,"Continent":"K63","ID":59081,"Name":"Wioska barbarzyƄska","PlayerID":6354098,"Points":116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59081","ServerKey":"pl181","X":345,"Y":680},{"Bonus":0,"Continent":"K66","ID":59082,"Name":"#161#","PlayerID":692803,"Points":696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59082","ServerKey":"pl181","X":661,"Y":680},{"Bonus":0,"Continent":"K47","ID":59083,"Name":"Wioska barbarzyƄska","PlayerID":699347951,"Points":709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59083","ServerKey":"pl181","X":727,"Y":453},{"Bonus":0,"Continent":"K33","ID":59085,"Name":"Wioska dezert8","PlayerID":2411854,"Points":1442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59085","ServerKey":"pl181","X":336,"Y":329},{"Bonus":0,"Continent":"K24","ID":59086,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":2165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59086","ServerKey":"pl181","X":483,"Y":260},{"Bonus":0,"Continent":"K75","ID":59087,"Name":"Wioska torys666","PlayerID":7210775,"Points":3674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59087","ServerKey":"pl181","X":566,"Y":729},{"Bonus":0,"Continent":"K47","ID":59088,"Name":"096. Wioska barbarzyƄska","PlayerID":7494497,"Points":2643,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59088","ServerKey":"pl181","X":733,"Y":464},{"Bonus":0,"Continent":"K25","ID":59089,"Name":"Wioska morfeusz37","PlayerID":849097357,"Points":364,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59089","ServerKey":"pl181","X":505,"Y":260},{"Bonus":0,"Continent":"K33","ID":59090,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59090","ServerKey":"pl181","X":316,"Y":360},{"Bonus":0,"Continent":"K25","ID":59091,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59091","ServerKey":"pl181","X":589,"Y":282},{"Bonus":0,"Continent":"K33","ID":59092,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":3669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59092","ServerKey":"pl181","X":367,"Y":311},{"Bonus":0,"Continent":"K65","ID":59093,"Name":"Wioska Matz32","PlayerID":848883542,"Points":523,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59093","ServerKey":"pl181","X":586,"Y":625},{"Bonus":0,"Continent":"K25","ID":59094,"Name":"Wioska barbarzyƄska","PlayerID":699146580,"Points":527,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59094","ServerKey":"pl181","X":582,"Y":279},{"Bonus":0,"Continent":"K25","ID":59095,"Name":"Wioska Deyna10","PlayerID":3518623,"Points":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59095","ServerKey":"pl181","X":591,"Y":285},{"Bonus":0,"Continent":"K33","ID":59096,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":1167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59096","ServerKey":"pl181","X":349,"Y":326},{"Bonus":0,"Continent":"K63","ID":59097,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59097","ServerKey":"pl181","X":301,"Y":632},{"Bonus":0,"Continent":"K63","ID":59098,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59098","ServerKey":"pl181","X":316,"Y":653},{"Bonus":5,"Continent":"K75","ID":59099,"Name":"budowa 05","PlayerID":7139820,"Points":869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59099","ServerKey":"pl181","X":558,"Y":732},{"Bonus":0,"Continent":"K75","ID":59100,"Name":"040Kret Orkuf","PlayerID":698620694,"Points":1924,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59100","ServerKey":"pl181","X":506,"Y":732},{"Bonus":0,"Continent":"K73","ID":59101,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59101","ServerKey":"pl181","X":391,"Y":710},{"Bonus":0,"Continent":"K24","ID":59102,"Name":"????","PlayerID":698489071,"Points":4210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59102","ServerKey":"pl181","X":494,"Y":263},{"Bonus":1,"Continent":"K66","ID":59103,"Name":"107. Puszcza Bukowa","PlayerID":8337151,"Points":4249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59103","ServerKey":"pl181","X":695,"Y":627},{"Bonus":0,"Continent":"K63","ID":59104,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59104","ServerKey":"pl181","X":335,"Y":673},{"Bonus":0,"Continent":"K47","ID":59105,"Name":"0131","PlayerID":698416970,"Points":358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59105","ServerKey":"pl181","X":731,"Y":451},{"Bonus":0,"Continent":"K25","ID":59106,"Name":"PPF-20","PlayerID":1424656,"Points":1438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59106","ServerKey":"pl181","X":504,"Y":260},{"Bonus":0,"Continent":"K75","ID":59107,"Name":"KWB8","PlayerID":9003698,"Points":803,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59107","ServerKey":"pl181","X":528,"Y":740},{"Bonus":0,"Continent":"K74","ID":59108,"Name":"026 - Budowanko!","PlayerID":7540891,"Points":4809,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59108","ServerKey":"pl181","X":474,"Y":736},{"Bonus":0,"Continent":"K76","ID":59109,"Name":"ALAMO","PlayerID":699025262,"Points":989,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59109","ServerKey":"pl181","X":607,"Y":716},{"Bonus":0,"Continent":"K25","ID":59110,"Name":"Wioska Mateusz400","PlayerID":849117427,"Points":597,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59110","ServerKey":"pl181","X":542,"Y":264},{"Bonus":0,"Continent":"K52","ID":59111,"Name":"Wioska barbarzyƄska","PlayerID":8630972,"Points":265,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59111","ServerKey":"pl181","X":262,"Y":503},{"Bonus":0,"Continent":"K24","ID":59112,"Name":"Wioska Monsio","PlayerID":699813587,"Points":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59112","ServerKey":"pl181","X":452,"Y":269},{"Bonus":0,"Continent":"K36","ID":59113,"Name":"ONR 2","PlayerID":9090040,"Points":1533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59113","ServerKey":"pl181","X":656,"Y":317},{"Bonus":0,"Continent":"K26","ID":59114,"Name":"Wioska HENRYK321","PlayerID":5989306,"Points":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59114","ServerKey":"pl181","X":615,"Y":288},{"Bonus":0,"Continent":"K42","ID":59115,"Name":"Bimber123","PlayerID":849117454,"Points":776,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59115","ServerKey":"pl181","X":272,"Y":461},{"Bonus":0,"Continent":"K66","ID":59116,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":822,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59116","ServerKey":"pl181","X":630,"Y":699},{"Bonus":0,"Continent":"K25","ID":59117,"Name":"PPF-55","PlayerID":1424656,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59117","ServerKey":"pl181","X":554,"Y":265},{"Bonus":0,"Continent":"K63","ID":59118,"Name":"O152","PlayerID":272173,"Points":1316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59118","ServerKey":"pl181","X":307,"Y":646},{"Bonus":0,"Continent":"K32","ID":59119,"Name":"Wioska aitseb","PlayerID":699870267,"Points":3463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59119","ServerKey":"pl181","X":296,"Y":372},{"Bonus":0,"Continent":"K42","ID":59120,"Name":"Wioska nsplus","PlayerID":6557824,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59120","ServerKey":"pl181","X":262,"Y":489},{"Bonus":0,"Continent":"K33","ID":59121,"Name":"Wioska Piwna","PlayerID":849107104,"Points":2149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59121","ServerKey":"pl181","X":316,"Y":344},{"Bonus":0,"Continent":"K47","ID":59122,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":619,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59122","ServerKey":"pl181","X":722,"Y":427},{"Bonus":0,"Continent":"K52","ID":59123,"Name":"Wioska noidea","PlayerID":699011415,"Points":458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59123","ServerKey":"pl181","X":278,"Y":573},{"Bonus":0,"Continent":"K47","ID":59124,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2663,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59124","ServerKey":"pl181","X":717,"Y":402},{"Bonus":0,"Continent":"K42","ID":59125,"Name":"shadow #2","PlayerID":1034117,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59125","ServerKey":"pl181","X":259,"Y":495},{"Bonus":0,"Continent":"K42","ID":59126,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59126","ServerKey":"pl181","X":271,"Y":459},{"Bonus":1,"Continent":"K75","ID":59127,"Name":"043 - Budowanko!","PlayerID":7540891,"Points":5063,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59127","ServerKey":"pl181","X":518,"Y":730},{"Bonus":0,"Continent":"K63","ID":59128,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":92,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59128","ServerKey":"pl181","X":312,"Y":633},{"Bonus":0,"Continent":"K66","ID":59129,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":492,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59129","ServerKey":"pl181","X":677,"Y":652},{"Bonus":0,"Continent":"K25","ID":59130,"Name":"110 Wioska barbarzyƄska","PlayerID":699854484,"Points":848,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59130","ServerKey":"pl181","X":586,"Y":282},{"Bonus":0,"Continent":"K36","ID":59131,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59131","ServerKey":"pl181","X":698,"Y":376},{"Bonus":0,"Continent":"K63","ID":59132,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59132","ServerKey":"pl181","X":319,"Y":654},{"Bonus":0,"Continent":"K63","ID":59133,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59133","ServerKey":"pl181","X":315,"Y":647},{"Bonus":0,"Continent":"K63","ID":59134,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59134","ServerKey":"pl181","X":374,"Y":698},{"Bonus":0,"Continent":"K63","ID":59135,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59135","ServerKey":"pl181","X":374,"Y":697},{"Bonus":0,"Continent":"K42","ID":59136,"Name":"27 barbarzyƄska","PlayerID":849018442,"Points":2288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59136","ServerKey":"pl181","X":267,"Y":435},{"Bonus":1,"Continent":"K47","ID":59137,"Name":"A#050","PlayerID":2065730,"Points":5054,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59137","ServerKey":"pl181","X":729,"Y":454},{"Bonus":0,"Continent":"K26","ID":59138,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59138","ServerKey":"pl181","X":621,"Y":295},{"Bonus":0,"Continent":"K42","ID":59139,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1459,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59139","ServerKey":"pl181","X":286,"Y":404},{"Bonus":0,"Continent":"K33","ID":59140,"Name":"Wioska Biegacz1","PlayerID":848978052,"Points":171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59140","ServerKey":"pl181","X":377,"Y":304},{"Bonus":0,"Continent":"K52","ID":59141,"Name":"0000045Z","PlayerID":849089881,"Points":529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59141","ServerKey":"pl181","X":266,"Y":558},{"Bonus":0,"Continent":"K57","ID":59142,"Name":"Wioska Marecki2222","PlayerID":699843936,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59142","ServerKey":"pl181","X":733,"Y":518},{"Bonus":0,"Continent":"K66","ID":59144,"Name":"Sony 911","PlayerID":1415009,"Points":1228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59144","ServerKey":"pl181","X":678,"Y":664},{"Bonus":0,"Continent":"K63","ID":59145,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59145","ServerKey":"pl181","X":359,"Y":688},{"Bonus":0,"Continent":"K47","ID":59146,"Name":"[208]","PlayerID":8000875,"Points":1516,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59146","ServerKey":"pl181","X":721,"Y":420},{"Bonus":0,"Continent":"K75","ID":59147,"Name":"068 - Budowanko!","PlayerID":7540891,"Points":1093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59147","ServerKey":"pl181","X":509,"Y":736},{"Bonus":0,"Continent":"K66","ID":59148,"Name":"Wioska mruva","PlayerID":2245160,"Points":347,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59148","ServerKey":"pl181","X":653,"Y":629},{"Bonus":0,"Continent":"K42","ID":59149,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":3789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59149","ServerKey":"pl181","X":273,"Y":451},{"Bonus":0,"Continent":"K23","ID":59150,"Name":"PP POLSKIE POLA 81","PlayerID":849107571,"Points":1396,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59150","ServerKey":"pl181","X":372,"Y":296},{"Bonus":0,"Continent":"K52","ID":59151,"Name":"C0334","PlayerID":8841266,"Points":1578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59151","ServerKey":"pl181","X":265,"Y":542},{"Bonus":0,"Continent":"K52","ID":59152,"Name":"C0337","PlayerID":8841266,"Points":957,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59152","ServerKey":"pl181","X":265,"Y":526},{"Bonus":0,"Continent":"K36","ID":59153,"Name":"Nowa","PlayerID":3600737,"Points":1236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59153","ServerKey":"pl181","X":638,"Y":301},{"Bonus":0,"Continent":"K33","ID":59155,"Name":"Wioska Szczerbatka","PlayerID":848939203,"Points":1468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59155","ServerKey":"pl181","X":329,"Y":338},{"Bonus":0,"Continent":"K33","ID":59156,"Name":"NOT?","PlayerID":9236866,"Points":2829,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59156","ServerKey":"pl181","X":308,"Y":360},{"Bonus":0,"Continent":"K73","ID":59157,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":558,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59157","ServerKey":"pl181","X":369,"Y":704},{"Bonus":0,"Continent":"K37","ID":59158,"Name":"0120","PlayerID":698416970,"Points":814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59158","ServerKey":"pl181","X":703,"Y":383},{"Bonus":0,"Continent":"K47","ID":59159,"Name":"227 |","PlayerID":8000875,"Points":151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59159","ServerKey":"pl181","X":722,"Y":426},{"Bonus":0,"Continent":"K36","ID":59160,"Name":"001","PlayerID":8006209,"Points":730,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59160","ServerKey":"pl181","X":654,"Y":336},{"Bonus":0,"Continent":"K73","ID":59161,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59161","ServerKey":"pl181","X":394,"Y":715},{"Bonus":0,"Continent":"K23","ID":59162,"Name":"Wioska zuzel","PlayerID":335509,"Points":1606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59162","ServerKey":"pl181","X":382,"Y":294},{"Bonus":0,"Continent":"K24","ID":59163,"Name":"Wioska a5","PlayerID":6343784,"Points":1387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59163","ServerKey":"pl181","X":423,"Y":281},{"Bonus":0,"Continent":"K24","ID":59164,"Name":"ziutek","PlayerID":849117622,"Points":1308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59164","ServerKey":"pl181","X":453,"Y":274},{"Bonus":0,"Continent":"K42","ID":59165,"Name":"[0274]","PlayerID":8630972,"Points":3612,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59165","ServerKey":"pl181","X":267,"Y":493},{"Bonus":4,"Continent":"K37","ID":59166,"Name":"038","PlayerID":849091105,"Points":4017,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59166","ServerKey":"pl181","X":701,"Y":374},{"Bonus":0,"Continent":"K36","ID":59168,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1960,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59168","ServerKey":"pl181","X":616,"Y":301},{"Bonus":0,"Continent":"K47","ID":59169,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59169","ServerKey":"pl181","X":735,"Y":465},{"Bonus":0,"Continent":"K24","ID":59170,"Name":"#0253 barbarzyƄska","PlayerID":1238300,"Points":936,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59170","ServerKey":"pl181","X":442,"Y":275},{"Bonus":2,"Continent":"K36","ID":59171,"Name":"Ks Konfederacja","PlayerID":848915730,"Points":3014,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59171","ServerKey":"pl181","X":691,"Y":362},{"Bonus":0,"Continent":"K23","ID":59172,"Name":"242","PlayerID":7271812,"Points":504,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59172","ServerKey":"pl181","X":377,"Y":293},{"Bonus":0,"Continent":"K25","ID":59173,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59173","ServerKey":"pl181","X":598,"Y":287},{"Bonus":0,"Continent":"K67","ID":59174,"Name":"K67 34","PlayerID":698867483,"Points":845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59174","ServerKey":"pl181","X":714,"Y":601},{"Bonus":0,"Continent":"K57","ID":59175,"Name":"100","PlayerID":7085502,"Points":1339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59175","ServerKey":"pl181","X":736,"Y":533},{"Bonus":0,"Continent":"K52","ID":59176,"Name":"Wioska Arco87","PlayerID":848974774,"Points":249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59176","ServerKey":"pl181","X":261,"Y":535},{"Bonus":0,"Continent":"K67","ID":59177,"Name":"K67 23","PlayerID":698867483,"Points":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59177","ServerKey":"pl181","X":715,"Y":605},{"Bonus":0,"Continent":"K63","ID":59178,"Name":"Wioska sada2","PlayerID":849114502,"Points":3943,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59178","ServerKey":"pl181","X":363,"Y":698},{"Bonus":0,"Continent":"K42","ID":59179,"Name":"002","PlayerID":699282717,"Points":974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59179","ServerKey":"pl181","X":275,"Y":445},{"Bonus":0,"Continent":"K63","ID":59180,"Name":"Wioska 0024","PlayerID":9186126,"Points":2655,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59180","ServerKey":"pl181","X":337,"Y":679},{"Bonus":0,"Continent":"K74","ID":59181,"Name":"FP048","PlayerID":699605333,"Points":2306,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59181","ServerKey":"pl181","X":448,"Y":733},{"Bonus":0,"Continent":"K62","ID":59182,"Name":"My City","PlayerID":944147,"Points":2828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59182","ServerKey":"pl181","X":296,"Y":605},{"Bonus":0,"Continent":"K52","ID":59183,"Name":"C0327","PlayerID":8841266,"Points":1853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59183","ServerKey":"pl181","X":268,"Y":527},{"Bonus":0,"Continent":"K25","ID":59184,"Name":"Wioska Kaminski95","PlayerID":849106303,"Points":1170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59184","ServerKey":"pl181","X":521,"Y":259},{"Bonus":0,"Continent":"K66","ID":59185,"Name":"Wioska Alderos","PlayerID":849117035,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59185","ServerKey":"pl181","X":684,"Y":651},{"Bonus":0,"Continent":"K57","ID":59186,"Name":"Wioska barbarzyƄska","PlayerID":698666810,"Points":1591,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59186","ServerKey":"pl181","X":727,"Y":546},{"Bonus":0,"Continent":"K36","ID":59187,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":934,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59187","ServerKey":"pl181","X":650,"Y":318},{"Bonus":0,"Continent":"K76","ID":59188,"Name":"094 koniec ƛwiata","PlayerID":849093426,"Points":3158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59188","ServerKey":"pl181","X":616,"Y":702},{"Bonus":0,"Continent":"K24","ID":59190,"Name":"????","PlayerID":698489071,"Points":4202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59190","ServerKey":"pl181","X":491,"Y":262},{"Bonus":0,"Continent":"K74","ID":59191,"Name":"Wioska PrawdziwyIlveron","PlayerID":699698873,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59191","ServerKey":"pl181","X":493,"Y":734},{"Bonus":0,"Continent":"K36","ID":59192,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59192","ServerKey":"pl181","X":657,"Y":326},{"Bonus":0,"Continent":"K76","ID":59193,"Name":"koniec","PlayerID":699883836,"Points":203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59193","ServerKey":"pl181","X":625,"Y":700},{"Bonus":6,"Continent":"K63","ID":59194,"Name":"Osada koczownikĂłw","PlayerID":2289134,"Points":345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59194","ServerKey":"pl181","X":313,"Y":648},{"Bonus":0,"Continent":"K23","ID":59195,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":67,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59195","ServerKey":"pl181","X":387,"Y":295},{"Bonus":0,"Continent":"K36","ID":59196,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59196","ServerKey":"pl181","X":649,"Y":324},{"Bonus":0,"Continent":"K65","ID":59197,"Name":"Karolo1","PlayerID":848960061,"Points":416,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59197","ServerKey":"pl181","X":566,"Y":655},{"Bonus":0,"Continent":"K24","ID":59198,"Name":"Wioska b 009","PlayerID":6343784,"Points":1086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59198","ServerKey":"pl181","X":426,"Y":280},{"Bonus":0,"Continent":"K33","ID":59199,"Name":"Wioska40","PlayerID":699711926,"Points":281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59199","ServerKey":"pl181","X":324,"Y":341},{"Bonus":0,"Continent":"K25","ID":59200,"Name":"#040","PlayerID":849064614,"Points":1027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59200","ServerKey":"pl181","X":554,"Y":273},{"Bonus":0,"Continent":"K75","ID":59202,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":3192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59202","ServerKey":"pl181","X":527,"Y":738},{"Bonus":0,"Continent":"K75","ID":59203,"Name":"!Wioska barbarzyƄska","PlayerID":8779575,"Points":355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59203","ServerKey":"pl181","X":599,"Y":717},{"Bonus":0,"Continent":"K26","ID":59204,"Name":"Następna","PlayerID":3600737,"Points":1200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59204","ServerKey":"pl181","X":633,"Y":299},{"Bonus":0,"Continent":"K24","ID":59205,"Name":"Wioska Gacek565","PlayerID":8978080,"Points":2870,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59205","ServerKey":"pl181","X":474,"Y":263},{"Bonus":0,"Continent":"K52","ID":59206,"Name":"003-81","PlayerID":699396429,"Points":2768,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59206","ServerKey":"pl181","X":287,"Y":592},{"Bonus":0,"Continent":"K24","ID":59207,"Name":"Wioska DrXE7","PlayerID":849106601,"Points":253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59207","ServerKey":"pl181","X":438,"Y":270},{"Bonus":0,"Continent":"K24","ID":59208,"Name":"Wioska barbarzyƄska","PlayerID":9299539,"Points":971,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59208","ServerKey":"pl181","X":454,"Y":268},{"Bonus":0,"Continent":"K57","ID":59209,"Name":"Chlewnik","PlayerID":699685533,"Points":1111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59209","ServerKey":"pl181","X":731,"Y":547},{"Bonus":4,"Continent":"K52","ID":59210,"Name":"002 Zagroda","PlayerID":698353083,"Points":1448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59210","ServerKey":"pl181","X":272,"Y":538},{"Bonus":0,"Continent":"K25","ID":59211,"Name":"PPF-50","PlayerID":1424656,"Points":529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59211","ServerKey":"pl181","X":572,"Y":275},{"Bonus":0,"Continent":"K66","ID":59212,"Name":"Wioska barbarzyƄska","PlayerID":6818593,"Points":539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59212","ServerKey":"pl181","X":626,"Y":696},{"Bonus":0,"Continent":"K33","ID":59213,"Name":"Wioska ksiÄ…ĆŒÄ™ plemienia","PlayerID":699816699,"Points":881,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59213","ServerKey":"pl181","X":306,"Y":373},{"Bonus":0,"Continent":"K42","ID":59214,"Name":"[0279]","PlayerID":8630972,"Points":2853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59214","ServerKey":"pl181","X":269,"Y":494},{"Bonus":7,"Continent":"K25","ID":59215,"Name":"Osada koczownikĂłw","PlayerID":699098531,"Points":2436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59215","ServerKey":"pl181","X":596,"Y":283},{"Bonus":0,"Continent":"K66","ID":59216,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59216","ServerKey":"pl181","X":647,"Y":687},{"Bonus":0,"Continent":"K24","ID":59217,"Name":"Ultimate Farming Simulator 6","PlayerID":699872032,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59217","ServerKey":"pl181","X":433,"Y":268},{"Bonus":0,"Continent":"K33","ID":59218,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":2466,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59218","ServerKey":"pl181","X":359,"Y":303},{"Bonus":0,"Continent":"K57","ID":59219,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59219","ServerKey":"pl181","X":738,"Y":520},{"Bonus":0,"Continent":"K25","ID":59220,"Name":"Wioska miniorek","PlayerID":849072919,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59220","ServerKey":"pl181","X":532,"Y":260},{"Bonus":0,"Continent":"K52","ID":59221,"Name":"C0328","PlayerID":8841266,"Points":1976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59221","ServerKey":"pl181","X":270,"Y":547},{"Bonus":7,"Continent":"K66","ID":59222,"Name":"Osada koczownikĂłw","PlayerID":3467919,"Points":372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59222","ServerKey":"pl181","X":687,"Y":637},{"Bonus":0,"Continent":"K52","ID":59223,"Name":"Wioska barbarzyƄska","PlayerID":8841266,"Points":138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59223","ServerKey":"pl181","X":267,"Y":528},{"Bonus":0,"Continent":"K73","ID":59224,"Name":"Sąsiad buduję Ci wioskę :)","PlayerID":3647080,"Points":1846,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59224","ServerKey":"pl181","X":385,"Y":703},{"Bonus":0,"Continent":"K36","ID":59225,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":2701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59225","ServerKey":"pl181","X":660,"Y":332},{"Bonus":0,"Continent":"K37","ID":59226,"Name":"0129","PlayerID":698416970,"Points":442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59226","ServerKey":"pl181","X":704,"Y":378},{"Bonus":0,"Continent":"K57","ID":59227,"Name":"=129= Wioska barbarzyƄska","PlayerID":3781794,"Points":1044,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59227","ServerKey":"pl181","X":729,"Y":567},{"Bonus":0,"Continent":"K62","ID":59229,"Name":"Wioska barbarzyƄska","PlayerID":699396429,"Points":357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59229","ServerKey":"pl181","X":282,"Y":601},{"Bonus":0,"Continent":"K24","ID":59230,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":701,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59230","ServerKey":"pl181","X":473,"Y":263},{"Bonus":0,"Continent":"K25","ID":59231,"Name":"North K25","PlayerID":699146580,"Points":1433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59231","ServerKey":"pl181","X":563,"Y":269},{"Bonus":0,"Continent":"K74","ID":59232,"Name":"Wioska Tombar76","PlayerID":2162471,"Points":626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59232","ServerKey":"pl181","X":490,"Y":739},{"Bonus":0,"Continent":"K52","ID":59233,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59233","ServerKey":"pl181","X":267,"Y":565},{"Bonus":0,"Continent":"K57","ID":59234,"Name":"Wioska Ferox-1","PlayerID":849113673,"Points":223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59234","ServerKey":"pl181","X":718,"Y":576},{"Bonus":0,"Continent":"K63","ID":59235,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59235","ServerKey":"pl181","X":317,"Y":655},{"Bonus":0,"Continent":"K24","ID":59236,"Name":"Bracket","PlayerID":699741694,"Points":344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59236","ServerKey":"pl181","X":401,"Y":285},{"Bonus":0,"Continent":"K52","ID":59237,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59237","ServerKey":"pl181","X":277,"Y":587},{"Bonus":0,"Continent":"K36","ID":59238,"Name":"Zasiedmiogorogrodzie 003","PlayerID":698278542,"Points":543,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59238","ServerKey":"pl181","X":698,"Y":363},{"Bonus":0,"Continent":"K63","ID":59239,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59239","ServerKey":"pl181","X":320,"Y":647},{"Bonus":2,"Continent":"K24","ID":59240,"Name":"????","PlayerID":698489071,"Points":3223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59240","ServerKey":"pl181","X":467,"Y":268},{"Bonus":0,"Continent":"K62","ID":59241,"Name":"Wioska chips03","PlayerID":849096346,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59241","ServerKey":"pl181","X":297,"Y":615},{"Bonus":0,"Continent":"K33","ID":59242,"Name":"WB45","PlayerID":356642,"Points":540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59242","ServerKey":"pl181","X":303,"Y":363},{"Bonus":0,"Continent":"K37","ID":59243,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59243","ServerKey":"pl181","X":715,"Y":392},{"Bonus":0,"Continent":"K74","ID":59244,"Name":"029 - Budowanko!","PlayerID":7540891,"Points":4789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59244","ServerKey":"pl181","X":491,"Y":740},{"Bonus":4,"Continent":"K24","ID":59246,"Name":"007","PlayerID":699562874,"Points":1987,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59246","ServerKey":"pl181","X":441,"Y":267},{"Bonus":0,"Continent":"K74","ID":59247,"Name":"liliput81","PlayerID":698321130,"Points":1665,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59247","ServerKey":"pl181","X":484,"Y":741},{"Bonus":0,"Continent":"K25","ID":59248,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59248","ServerKey":"pl181","X":558,"Y":272},{"Bonus":0,"Continent":"K36","ID":59249,"Name":"Krasnal","PlayerID":8583185,"Points":1184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59249","ServerKey":"pl181","X":653,"Y":315},{"Bonus":0,"Continent":"K32","ID":59250,"Name":"WB37","PlayerID":356642,"Points":867,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59250","ServerKey":"pl181","X":298,"Y":387},{"Bonus":0,"Continent":"K74","ID":59251,"Name":"New World","PlayerID":698152377,"Points":1948,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59251","ServerKey":"pl181","X":438,"Y":722},{"Bonus":0,"Continent":"K52","ID":59252,"Name":"Wioska Banan001","PlayerID":699765971,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59252","ServerKey":"pl181","X":263,"Y":528},{"Bonus":0,"Continent":"K66","ID":59253,"Name":"Wioska Szy.mek","PlayerID":849116679,"Points":869,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59253","ServerKey":"pl181","X":691,"Y":634},{"Bonus":0,"Continent":"K62","ID":59255,"Name":"CO TAM ????","PlayerID":699774694,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59255","ServerKey":"pl181","X":289,"Y":604},{"Bonus":0,"Continent":"K36","ID":59256,"Name":"Wioska barbarzyƄska","PlayerID":6956104,"Points":394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59256","ServerKey":"pl181","X":680,"Y":355},{"Bonus":0,"Continent":"K47","ID":59257,"Name":"Wioska Bozydar666","PlayerID":848959422,"Points":217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59257","ServerKey":"pl181","X":735,"Y":482},{"Bonus":8,"Continent":"K42","ID":59258,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59258","ServerKey":"pl181","X":279,"Y":421},{"Bonus":0,"Continent":"K23","ID":59259,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59259","ServerKey":"pl181","X":374,"Y":294},{"Bonus":0,"Continent":"K75","ID":59260,"Name":"!Wioska barbarzyƄska 4","PlayerID":8779575,"Points":3181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59260","ServerKey":"pl181","X":583,"Y":725},{"Bonus":0,"Continent":"K24","ID":59261,"Name":"endriu1990/181","PlayerID":698795589,"Points":689,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59261","ServerKey":"pl181","X":440,"Y":274},{"Bonus":0,"Continent":"K75","ID":59262,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59262","ServerKey":"pl181","X":596,"Y":716},{"Bonus":0,"Continent":"K32","ID":59263,"Name":"Wioska Galactus","PlayerID":698488800,"Points":237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59263","ServerKey":"pl181","X":287,"Y":388},{"Bonus":0,"Continent":"K75","ID":59264,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59264","ServerKey":"pl181","X":533,"Y":736},{"Bonus":0,"Continent":"K24","ID":59265,"Name":"Wioska sarab","PlayerID":6474323,"Points":1305,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59265","ServerKey":"pl181","X":458,"Y":266},{"Bonus":0,"Continent":"K24","ID":59266,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59266","ServerKey":"pl181","X":479,"Y":266},{"Bonus":0,"Continent":"K63","ID":59267,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59267","ServerKey":"pl181","X":358,"Y":695},{"Bonus":0,"Continent":"K57","ID":59268,"Name":"Wioska krzok14","PlayerID":698984562,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59268","ServerKey":"pl181","X":733,"Y":526},{"Bonus":4,"Continent":"K52","ID":59269,"Name":"Na SsSskraju","PlayerID":1536625,"Points":1089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59269","ServerKey":"pl181","X":270,"Y":572},{"Bonus":0,"Continent":"K36","ID":59270,"Name":"Wioska King2000","PlayerID":849101871,"Points":296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59270","ServerKey":"pl181","X":617,"Y":301},{"Bonus":0,"Continent":"K25","ID":59271,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":430,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59271","ServerKey":"pl181","X":571,"Y":273},{"Bonus":0,"Continent":"K25","ID":59272,"Name":"North 053","PlayerID":849064752,"Points":4240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59272","ServerKey":"pl181","X":529,"Y":264},{"Bonus":0,"Continent":"K24","ID":59273,"Name":"North 111","PlayerID":849064752,"Points":1711,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59273","ServerKey":"pl181","X":474,"Y":260},{"Bonus":0,"Continent":"K52","ID":59274,"Name":"FEEDBACK","PlayerID":699774694,"Points":2137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59274","ServerKey":"pl181","X":287,"Y":598},{"Bonus":0,"Continent":"K25","ID":59275,"Name":"106 Wioska barbarzyƄska","PlayerID":699854484,"Points":977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59275","ServerKey":"pl181","X":568,"Y":276},{"Bonus":0,"Continent":"K25","ID":59276,"Name":"North 056","PlayerID":849064752,"Points":4375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59276","ServerKey":"pl181","X":550,"Y":264},{"Bonus":0,"Continent":"K63","ID":59277,"Name":"21. Tama","PlayerID":849092769,"Points":248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59277","ServerKey":"pl181","X":352,"Y":689},{"Bonus":0,"Continent":"K25","ID":59278,"Name":"North 054","PlayerID":849064752,"Points":4290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59278","ServerKey":"pl181","X":536,"Y":262},{"Bonus":0,"Continent":"K67","ID":59279,"Name":"K67 37","PlayerID":698867483,"Points":539,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59279","ServerKey":"pl181","X":714,"Y":609},{"Bonus":0,"Continent":"K24","ID":59280,"Name":"Wioska b 012","PlayerID":6343784,"Points":255,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59280","ServerKey":"pl181","X":406,"Y":279},{"Bonus":0,"Continent":"K26","ID":59281,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59281","ServerKey":"pl181","X":616,"Y":294},{"Bonus":0,"Continent":"K52","ID":59282,"Name":"Wioska Simon93","PlayerID":849115254,"Points":1620,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59282","ServerKey":"pl181","X":274,"Y":569},{"Bonus":0,"Continent":"K36","ID":59283,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":2071,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59283","ServerKey":"pl181","X":665,"Y":328},{"Bonus":0,"Continent":"K57","ID":59285,"Name":"035","PlayerID":6160655,"Points":849,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59285","ServerKey":"pl181","X":725,"Y":588},{"Bonus":0,"Continent":"K33","ID":59286,"Name":"001Vixa","PlayerID":8819990,"Points":361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59286","ServerKey":"pl181","X":346,"Y":320},{"Bonus":0,"Continent":"K24","ID":59287,"Name":"MojeDnoToWaszSzczyt","PlayerID":9299539,"Points":1409,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59287","ServerKey":"pl181","X":468,"Y":263},{"Bonus":6,"Continent":"K25","ID":59288,"Name":"North 048","PlayerID":849064752,"Points":3735,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59288","ServerKey":"pl181","X":559,"Y":269},{"Bonus":0,"Continent":"K66","ID":59289,"Name":"Wioska barbarzyƄska","PlayerID":699189792,"Points":1810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59289","ServerKey":"pl181","X":636,"Y":699},{"Bonus":0,"Continent":"K63","ID":59290,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59290","ServerKey":"pl181","X":321,"Y":657},{"Bonus":0,"Continent":"K63","ID":59291,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59291","ServerKey":"pl181","X":300,"Y":620},{"Bonus":0,"Continent":"K25","ID":59292,"Name":"North 070","PlayerID":849064752,"Points":4554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59292","ServerKey":"pl181","X":507,"Y":263},{"Bonus":3,"Continent":"K62","ID":59293,"Name":"Osada koczownikĂłw","PlayerID":2289134,"Points":340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59293","ServerKey":"pl181","X":295,"Y":618},{"Bonus":0,"Continent":"K23","ID":59294,"Name":"Wioska Uparty1","PlayerID":699471024,"Points":634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59294","ServerKey":"pl181","X":385,"Y":295},{"Bonus":0,"Continent":"K75","ID":59295,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1625,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59295","ServerKey":"pl181","X":552,"Y":727},{"Bonus":0,"Continent":"K66","ID":59296,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59296","ServerKey":"pl181","X":649,"Y":687},{"Bonus":0,"Continent":"K74","ID":59298,"Name":"New World","PlayerID":698152377,"Points":3103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59298","ServerKey":"pl181","X":425,"Y":725},{"Bonus":0,"Continent":"K57","ID":59299,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59299","ServerKey":"pl181","X":731,"Y":541},{"Bonus":0,"Continent":"K32","ID":59300,"Name":"WB33","PlayerID":356642,"Points":1245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59300","ServerKey":"pl181","X":293,"Y":382},{"Bonus":0,"Continent":"K52","ID":59301,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":79,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59301","ServerKey":"pl181","X":269,"Y":546},{"Bonus":0,"Continent":"K74","ID":59302,"Name":"znam ostropesta 3","PlayerID":699777372,"Points":2410,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59302","ServerKey":"pl181","X":434,"Y":732},{"Bonus":0,"Continent":"K42","ID":59303,"Name":"Wioska Nogger14","PlayerID":3923887,"Points":765,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59303","ServerKey":"pl181","X":285,"Y":415},{"Bonus":0,"Continent":"K36","ID":59304,"Name":"PiekƂo to inni","PlayerID":848956765,"Points":1811,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59304","ServerKey":"pl181","X":656,"Y":323},{"Bonus":0,"Continent":"K36","ID":59305,"Name":"Wioska barbarzyƄska","PlayerID":896355,"Points":323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59305","ServerKey":"pl181","X":653,"Y":322},{"Bonus":0,"Continent":"K26","ID":59306,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59306","ServerKey":"pl181","X":611,"Y":293},{"Bonus":8,"Continent":"K26","ID":59307,"Name":"Flap","PlayerID":699098531,"Points":1823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59307","ServerKey":"pl181","X":604,"Y":281},{"Bonus":0,"Continent":"K42","ID":59309,"Name":"Avanti!","PlayerID":698625834,"Points":1535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59309","ServerKey":"pl181","X":267,"Y":481},{"Bonus":0,"Continent":"K67","ID":59310,"Name":"wu2ek","PlayerID":849108157,"Points":851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59310","ServerKey":"pl181","X":703,"Y":616},{"Bonus":0,"Continent":"K36","ID":59311,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59311","ServerKey":"pl181","X":632,"Y":303},{"Bonus":0,"Continent":"K42","ID":59312,"Name":"Wioska Szymon9405","PlayerID":849099145,"Points":4187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59312","ServerKey":"pl181","X":276,"Y":453},{"Bonus":0,"Continent":"K57","ID":59313,"Name":"101","PlayerID":7085502,"Points":1260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59313","ServerKey":"pl181","X":735,"Y":529},{"Bonus":0,"Continent":"K75","ID":59314,"Name":"Wioska Cegla x DrTaxi","PlayerID":7951206,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59314","ServerKey":"pl181","X":517,"Y":736},{"Bonus":0,"Continent":"K42","ID":59315,"Name":"Wioska gall8","PlayerID":699598396,"Points":323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59315","ServerKey":"pl181","X":265,"Y":470},{"Bonus":0,"Continent":"K24","ID":59316,"Name":"Wioska Gruby0905","PlayerID":1384222,"Points":515,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59316","ServerKey":"pl181","X":433,"Y":274},{"Bonus":0,"Continent":"K32","ID":59317,"Name":"WB24","PlayerID":356642,"Points":1483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59317","ServerKey":"pl181","X":298,"Y":367},{"Bonus":0,"Continent":"K47","ID":59318,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59318","ServerKey":"pl181","X":737,"Y":450},{"Bonus":0,"Continent":"K33","ID":59319,"Name":"Wioska33","PlayerID":699711926,"Points":1439,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59319","ServerKey":"pl181","X":328,"Y":341},{"Bonus":0,"Continent":"K57","ID":59320,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59320","ServerKey":"pl181","X":737,"Y":502},{"Bonus":0,"Continent":"K36","ID":59321,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59321","ServerKey":"pl181","X":630,"Y":307},{"Bonus":3,"Continent":"K47","ID":59322,"Name":"A#052","PlayerID":2065730,"Points":4700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59322","ServerKey":"pl181","X":737,"Y":464},{"Bonus":0,"Continent":"K36","ID":59324,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":800,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59324","ServerKey":"pl181","X":670,"Y":332},{"Bonus":0,"Continent":"K47","ID":59327,"Name":"222 |","PlayerID":8000875,"Points":374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59327","ServerKey":"pl181","X":718,"Y":416},{"Bonus":0,"Continent":"K25","ID":59328,"Name":"North 099","PlayerID":849064752,"Points":4358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59328","ServerKey":"pl181","X":548,"Y":263},{"Bonus":0,"Continent":"K57","ID":59330,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59330","ServerKey":"pl181","X":738,"Y":514},{"Bonus":0,"Continent":"K36","ID":59332,"Name":"041. Wioska barbarzyƄska","PlayerID":2873154,"Points":644,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59332","ServerKey":"pl181","X":685,"Y":349},{"Bonus":0,"Continent":"K52","ID":59333,"Name":"088 obrzeĆŒa","PlayerID":699510259,"Points":535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59333","ServerKey":"pl181","X":272,"Y":561},{"Bonus":0,"Continent":"K42","ID":59334,"Name":"Wioska 181","PlayerID":382222,"Points":1473,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59334","ServerKey":"pl181","X":284,"Y":401},{"Bonus":0,"Continent":"K74","ID":59335,"Name":"KWB9","PlayerID":9003698,"Points":5163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59335","ServerKey":"pl181","X":467,"Y":734},{"Bonus":0,"Continent":"K74","ID":59336,"Name":"New World","PlayerID":698152377,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59336","ServerKey":"pl181","X":434,"Y":725},{"Bonus":0,"Continent":"K74","ID":59337,"Name":"031 - Budowanko!","PlayerID":7540891,"Points":4540,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59337","ServerKey":"pl181","X":495,"Y":742},{"Bonus":0,"Continent":"K25","ID":59338,"Name":"Wioska lukas1980","PlayerID":2213632,"Points":1317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59338","ServerKey":"pl181","X":501,"Y":260},{"Bonus":0,"Continent":"K42","ID":59339,"Name":"42 barbarzyƄska 3A","PlayerID":849018442,"Points":2168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59339","ServerKey":"pl181","X":268,"Y":451},{"Bonus":0,"Continent":"K33","ID":59340,"Name":"Wioska 181","PlayerID":82782,"Points":1731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59340","ServerKey":"pl181","X":345,"Y":346},{"Bonus":0,"Continent":"K33","ID":59341,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59341","ServerKey":"pl181","X":335,"Y":324},{"Bonus":0,"Continent":"K63","ID":59342,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59342","ServerKey":"pl181","X":350,"Y":680},{"Bonus":0,"Continent":"K42","ID":59343,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59343","ServerKey":"pl181","X":263,"Y":472},{"Bonus":0,"Continent":"K67","ID":59344,"Name":"K67 25","PlayerID":698867483,"Points":1998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59344","ServerKey":"pl181","X":704,"Y":611},{"Bonus":0,"Continent":"K33","ID":59345,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59345","ServerKey":"pl181","X":329,"Y":330},{"Bonus":0,"Continent":"K52","ID":59346,"Name":"Wioska Koza2021","PlayerID":849106741,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59346","ServerKey":"pl181","X":279,"Y":579},{"Bonus":0,"Continent":"K36","ID":59348,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2789,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59348","ServerKey":"pl181","X":632,"Y":310},{"Bonus":6,"Continent":"K25","ID":59349,"Name":"B019","PlayerID":699485250,"Points":3187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59349","ServerKey":"pl181","X":534,"Y":266},{"Bonus":0,"Continent":"K75","ID":59350,"Name":"071 - Budowanko!","PlayerID":7540891,"Points":810,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59350","ServerKey":"pl181","X":514,"Y":735},{"Bonus":0,"Continent":"K57","ID":59351,"Name":"Kancelaria 1","PlayerID":849104468,"Points":1157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59351","ServerKey":"pl181","X":715,"Y":598},{"Bonus":0,"Continent":"K63","ID":59352,"Name":"Bunkier","PlayerID":699805839,"Points":458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59352","ServerKey":"pl181","X":344,"Y":675},{"Bonus":0,"Continent":"K47","ID":59353,"Name":"Wioska apokalipsa25","PlayerID":9135525,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59353","ServerKey":"pl181","X":733,"Y":485},{"Bonus":0,"Continent":"K26","ID":59354,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59354","ServerKey":"pl181","X":600,"Y":292},{"Bonus":0,"Continent":"K47","ID":59355,"Name":"Wioska Adrianzaq12wsx","PlayerID":1945202,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59355","ServerKey":"pl181","X":721,"Y":424},{"Bonus":0,"Continent":"K66","ID":59356,"Name":"K66","PlayerID":698867483,"Points":1427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59356","ServerKey":"pl181","X":698,"Y":627},{"Bonus":0,"Continent":"K42","ID":59357,"Name":"Wioska 6","PlayerID":699763225,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59357","ServerKey":"pl181","X":290,"Y":402},{"Bonus":0,"Continent":"K24","ID":59358,"Name":"????","PlayerID":698489071,"Points":2815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59358","ServerKey":"pl181","X":486,"Y":259},{"Bonus":0,"Continent":"K66","ID":59359,"Name":"002 Carlin","PlayerID":699516250,"Points":2595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59359","ServerKey":"pl181","X":692,"Y":645},{"Bonus":0,"Continent":"K52","ID":59360,"Name":"Wioska KrĂłl Mieszko1","PlayerID":849110674,"Points":706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59360","ServerKey":"pl181","X":265,"Y":527},{"Bonus":0,"Continent":"K47","ID":59361,"Name":"[209]","PlayerID":8000875,"Points":1390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59361","ServerKey":"pl181","X":722,"Y":417},{"Bonus":0,"Continent":"K23","ID":59362,"Name":"Wioska PtyƛTurbo","PlayerID":849095825,"Points":138,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59362","ServerKey":"pl181","X":386,"Y":295},{"Bonus":0,"Continent":"K75","ID":59363,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59363","ServerKey":"pl181","X":553,"Y":734},{"Bonus":0,"Continent":"K42","ID":59364,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59364","ServerKey":"pl181","X":273,"Y":423},{"Bonus":0,"Continent":"K37","ID":59365,"Name":"0123","PlayerID":698416970,"Points":554,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59365","ServerKey":"pl181","X":711,"Y":384},{"Bonus":0,"Continent":"K66","ID":59366,"Name":"Wioska 221719123","PlayerID":849050410,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59366","ServerKey":"pl181","X":695,"Y":631},{"Bonus":0,"Continent":"K26","ID":59367,"Name":"Wioska vasper123","PlayerID":848980727,"Points":729,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59367","ServerKey":"pl181","X":616,"Y":296},{"Bonus":0,"Continent":"K24","ID":59368,"Name":"Wioska barbarzyƄska","PlayerID":3411571,"Points":3087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59368","ServerKey":"pl181","X":418,"Y":277},{"Bonus":0,"Continent":"K42","ID":59369,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59369","ServerKey":"pl181","X":266,"Y":473},{"Bonus":0,"Continent":"K33","ID":59370,"Name":"Zaplecze Barba 042","PlayerID":699796330,"Points":2216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59370","ServerKey":"pl181","X":358,"Y":312},{"Bonus":0,"Continent":"K66","ID":59371,"Name":"124. Bezmiar Wschodni Bliski","PlayerID":8337151,"Points":303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59371","ServerKey":"pl181","X":663,"Y":679},{"Bonus":0,"Continent":"K25","ID":59372,"Name":"North 083","PlayerID":849064752,"Points":4238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59372","ServerKey":"pl181","X":554,"Y":269},{"Bonus":0,"Continent":"K36","ID":59373,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59373","ServerKey":"pl181","X":672,"Y":338},{"Bonus":0,"Continent":"K73","ID":59375,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":994,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59375","ServerKey":"pl181","X":379,"Y":703},{"Bonus":0,"Continent":"K24","ID":59376,"Name":"sobiska","PlayerID":849118259,"Points":1581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59376","ServerKey":"pl181","X":439,"Y":268},{"Bonus":0,"Continent":"K57","ID":59377,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59377","ServerKey":"pl181","X":739,"Y":523},{"Bonus":0,"Continent":"K73","ID":59378,"Name":"Flex 1","PlayerID":849114033,"Points":1126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59378","ServerKey":"pl181","X":375,"Y":701},{"Bonus":0,"Continent":"K25","ID":59380,"Name":"PPF-47","PlayerID":1424656,"Points":421,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59380","ServerKey":"pl181","X":518,"Y":268},{"Bonus":0,"Continent":"K24","ID":59381,"Name":"Wioska barbarzyƄska","PlayerID":9299539,"Points":956,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59381","ServerKey":"pl181","X":457,"Y":265},{"Bonus":0,"Continent":"K25","ID":59382,"Name":"Wioska samolot11","PlayerID":849105201,"Points":139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59382","ServerKey":"pl181","X":527,"Y":261},{"Bonus":3,"Continent":"K36","ID":59383,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":1615,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59383","ServerKey":"pl181","X":678,"Y":337},{"Bonus":0,"Continent":"K26","ID":59384,"Name":"Wioska OgnistaOwca","PlayerID":699868448,"Points":54,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59384","ServerKey":"pl181","X":616,"Y":295},{"Bonus":6,"Continent":"K36","ID":59385,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":904,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59385","ServerKey":"pl181","X":648,"Y":316},{"Bonus":0,"Continent":"K57","ID":59386,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59386","ServerKey":"pl181","X":739,"Y":503},{"Bonus":0,"Continent":"K57","ID":59387,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1573,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59387","ServerKey":"pl181","X":737,"Y":547},{"Bonus":0,"Continent":"K36","ID":59388,"Name":"ponger19955","PlayerID":849031759,"Points":505,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59388","ServerKey":"pl181","X":692,"Y":371},{"Bonus":0,"Continent":"K73","ID":59389,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59389","ServerKey":"pl181","X":386,"Y":713},{"Bonus":0,"Continent":"K36","ID":59390,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59390","ServerKey":"pl181","X":684,"Y":356},{"Bonus":0,"Continent":"K52","ID":59391,"Name":"Wioska ABE 1","PlayerID":7964548,"Points":181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59391","ServerKey":"pl181","X":269,"Y":524},{"Bonus":0,"Continent":"K63","ID":59392,"Name":"Wioska barbarzyƄska","PlayerID":698908184,"Points":1667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59392","ServerKey":"pl181","X":316,"Y":642},{"Bonus":0,"Continent":"K62","ID":59393,"Name":"Wioska dziwas2","PlayerID":8760563,"Points":2084,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59393","ServerKey":"pl181","X":296,"Y":606},{"Bonus":0,"Continent":"K47","ID":59394,"Name":"045 KTW","PlayerID":848883237,"Points":500,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59394","ServerKey":"pl181","X":733,"Y":448},{"Bonus":0,"Continent":"K42","ID":59395,"Name":"Wioska barbarzyƄska","PlayerID":699812351,"Points":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59395","ServerKey":"pl181","X":281,"Y":466},{"Bonus":0,"Continent":"K57","ID":59396,"Name":"Wioska bleta spz","PlayerID":699811133,"Points":275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59396","ServerKey":"pl181","X":728,"Y":571},{"Bonus":0,"Continent":"K47","ID":59397,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59397","ServerKey":"pl181","X":729,"Y":427},{"Bonus":0,"Continent":"K23","ID":59398,"Name":"Wioska koka17","PlayerID":848901822,"Points":952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59398","ServerKey":"pl181","X":372,"Y":297},{"Bonus":0,"Continent":"K66","ID":59399,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":4490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59399","ServerKey":"pl181","X":649,"Y":688},{"Bonus":0,"Continent":"K57","ID":59400,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":402,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59400","ServerKey":"pl181","X":739,"Y":531},{"Bonus":0,"Continent":"K74","ID":59401,"Name":"Wioska xarans","PlayerID":849044724,"Points":1146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59401","ServerKey":"pl181","X":410,"Y":723},{"Bonus":0,"Continent":"K66","ID":59402,"Name":"WZ11","PlayerID":7142659,"Points":1896,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59402","ServerKey":"pl181","X":697,"Y":621},{"Bonus":0,"Continent":"K66","ID":59403,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59403","ServerKey":"pl181","X":679,"Y":657},{"Bonus":0,"Continent":"K25","ID":59404,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59404","ServerKey":"pl181","X":595,"Y":280},{"Bonus":0,"Continent":"K74","ID":59405,"Name":"Wioska Pheniks2009","PlayerID":6541079,"Points":122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59405","ServerKey":"pl181","X":452,"Y":729},{"Bonus":0,"Continent":"K47","ID":59406,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":847,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59406","ServerKey":"pl181","X":740,"Y":464},{"Bonus":0,"Continent":"K66","ID":59407,"Name":"Wioska slawomirec","PlayerID":2345447,"Points":302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59407","ServerKey":"pl181","X":627,"Y":697},{"Bonus":0,"Continent":"K32","ID":59408,"Name":"Wioska Piorun000","PlayerID":699865716,"Points":333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59408","ServerKey":"pl181","X":290,"Y":380},{"Bonus":0,"Continent":"K42","ID":59409,"Name":"[0280]","PlayerID":8630972,"Points":3678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59409","ServerKey":"pl181","X":266,"Y":496},{"Bonus":0,"Continent":"K42","ID":59410,"Name":"pl181 n1g3r","PlayerID":6354962,"Points":2442,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59410","ServerKey":"pl181","X":268,"Y":478},{"Bonus":0,"Continent":"K75","ID":59411,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1748,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59411","ServerKey":"pl181","X":558,"Y":735},{"Bonus":0,"Continent":"K52","ID":59412,"Name":"Odrodzenie","PlayerID":848952556,"Points":783,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59412","ServerKey":"pl181","X":280,"Y":543},{"Bonus":0,"Continent":"K42","ID":59413,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1857,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59413","ServerKey":"pl181","X":276,"Y":409},{"Bonus":9,"Continent":"K74","ID":59414,"Name":"Bagno 41","PlayerID":848883684,"Points":1879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59414","ServerKey":"pl181","X":457,"Y":731},{"Bonus":0,"Continent":"K47","ID":59415,"Name":"Wioska Alibaba420","PlayerID":848942565,"Points":425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59415","ServerKey":"pl181","X":737,"Y":448},{"Bonus":0,"Continent":"K76","ID":59416,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":1254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59416","ServerKey":"pl181","X":613,"Y":704},{"Bonus":0,"Continent":"K74","ID":59417,"Name":"Wioska barbarzyƄska","PlayerID":698620694,"Points":950,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59417","ServerKey":"pl181","X":476,"Y":735},{"Bonus":2,"Continent":"K57","ID":59418,"Name":"Osada koczownikĂłw","PlayerID":1601917,"Points":2272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59418","ServerKey":"pl181","X":739,"Y":539},{"Bonus":0,"Continent":"K23","ID":59419,"Name":"Wioska snajpiradlo","PlayerID":2980670,"Points":150,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59419","ServerKey":"pl181","X":396,"Y":284},{"Bonus":0,"Continent":"K66","ID":59420,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59420","ServerKey":"pl181","X":656,"Y":684},{"Bonus":0,"Continent":"K33","ID":59421,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59421","ServerKey":"pl181","X":341,"Y":330},{"Bonus":0,"Continent":"K42","ID":59422,"Name":"Magnes","PlayerID":849116221,"Points":202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59422","ServerKey":"pl181","X":271,"Y":462},{"Bonus":0,"Continent":"K42","ID":59423,"Name":"62 barbarzyƄska","PlayerID":849018442,"Points":574,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59423","ServerKey":"pl181","X":276,"Y":432},{"Bonus":0,"Continent":"K25","ID":59424,"Name":"PPF-51","PlayerID":1424656,"Points":262,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59424","ServerKey":"pl181","X":544,"Y":268},{"Bonus":0,"Continent":"K73","ID":59425,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":891,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59425","ServerKey":"pl181","X":382,"Y":701},{"Bonus":0,"Continent":"K63","ID":59426,"Name":"Wioska to tylko hastrat","PlayerID":42635,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59426","ServerKey":"pl181","X":346,"Y":687},{"Bonus":0,"Continent":"K62","ID":59427,"Name":"Wioska barbarzyƄska","PlayerID":699321518,"Points":173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59427","ServerKey":"pl181","X":290,"Y":605},{"Bonus":0,"Continent":"K24","ID":59428,"Name":"North 071","PlayerID":849064752,"Points":4542,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59428","ServerKey":"pl181","X":497,"Y":258},{"Bonus":0,"Continent":"K62","ID":59429,"Name":"Wioska Love4evere3","PlayerID":849117240,"Points":349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59429","ServerKey":"pl181","X":297,"Y":611},{"Bonus":0,"Continent":"K63","ID":59430,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59430","ServerKey":"pl181","X":375,"Y":698},{"Bonus":0,"Continent":"K57","ID":59432,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":1863,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59432","ServerKey":"pl181","X":735,"Y":524},{"Bonus":0,"Continent":"K25","ID":59433,"Name":"Wioska wlodek1404","PlayerID":849118462,"Points":793,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59433","ServerKey":"pl181","X":580,"Y":272},{"Bonus":0,"Continent":"K42","ID":59434,"Name":"Wioska barbarzyƄska","PlayerID":849095814,"Points":533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59434","ServerKey":"pl181","X":269,"Y":478},{"Bonus":0,"Continent":"K42","ID":59435,"Name":"Wioska drrakox","PlayerID":699851001,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59435","ServerKey":"pl181","X":282,"Y":415},{"Bonus":0,"Continent":"K33","ID":59436,"Name":"Lecymy DUR","PlayerID":6169408,"Points":549,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59436","ServerKey":"pl181","X":348,"Y":319},{"Bonus":0,"Continent":"K25","ID":59437,"Name":"181","PlayerID":699147813,"Points":376,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59437","ServerKey":"pl181","X":517,"Y":260},{"Bonus":0,"Continent":"K47","ID":59438,"Name":"042","PlayerID":849091105,"Points":916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59438","ServerKey":"pl181","X":720,"Y":403},{"Bonus":0,"Continent":"K36","ID":59439,"Name":"Wioska BOMBA NA BANIIE","PlayerID":849029559,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59439","ServerKey":"pl181","X":636,"Y":302},{"Bonus":0,"Continent":"K66","ID":59440,"Name":"Wioska Jaayzik","PlayerID":699762118,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59440","ServerKey":"pl181","X":688,"Y":639},{"Bonus":0,"Continent":"K75","ID":59441,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59441","ServerKey":"pl181","X":599,"Y":715},{"Bonus":0,"Continent":"K52","ID":59442,"Name":"Wioska AdaSobieraj","PlayerID":849118441,"Points":654,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59442","ServerKey":"pl181","X":264,"Y":525},{"Bonus":0,"Continent":"K73","ID":59443,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59443","ServerKey":"pl181","X":384,"Y":712},{"Bonus":0,"Continent":"K47","ID":59444,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":845,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59444","ServerKey":"pl181","X":737,"Y":460},{"Bonus":2,"Continent":"K24","ID":59445,"Name":"Osada koczownikĂłw","PlayerID":3411571,"Points":3604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59445","ServerKey":"pl181","X":421,"Y":272},{"Bonus":0,"Continent":"K25","ID":59446,"Name":"qwerty","PlayerID":849117830,"Points":2257,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59446","ServerKey":"pl181","X":579,"Y":275},{"Bonus":0,"Continent":"K62","ID":59447,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59447","ServerKey":"pl181","X":296,"Y":613},{"Bonus":0,"Continent":"K75","ID":59448,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59448","ServerKey":"pl181","X":578,"Y":723},{"Bonus":0,"Continent":"K63","ID":59449,"Name":"46.","PlayerID":8665783,"Points":246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59449","ServerKey":"pl181","X":333,"Y":667},{"Bonus":0,"Continent":"K75","ID":59451,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":832,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59451","ServerKey":"pl181","X":579,"Y":726},{"Bonus":0,"Continent":"K62","ID":59452,"Name":"Wioska barbarzyƄskaF","PlayerID":698178312,"Points":586,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59452","ServerKey":"pl181","X":289,"Y":607},{"Bonus":0,"Continent":"K36","ID":59453,"Name":"Wioska barbarzyƄska","PlayerID":848915730,"Points":2086,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59453","ServerKey":"pl181","X":689,"Y":360},{"Bonus":2,"Continent":"K66","ID":59454,"Name":"Osada koczownikĂłw","PlayerID":699372829,"Points":235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59454","ServerKey":"pl181","X":632,"Y":690},{"Bonus":0,"Continent":"K32","ID":59456,"Name":"wichrowy czub","PlayerID":698677650,"Points":141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59456","ServerKey":"pl181","X":288,"Y":392},{"Bonus":0,"Continent":"K74","ID":59457,"Name":"034 - Budowanko!","PlayerID":7540891,"Points":4508,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59457","ServerKey":"pl181","X":470,"Y":731},{"Bonus":0,"Continent":"K76","ID":59458,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":207,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59458","ServerKey":"pl181","X":637,"Y":700},{"Bonus":0,"Continent":"K63","ID":59459,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59459","ServerKey":"pl181","X":350,"Y":690},{"Bonus":0,"Continent":"K36","ID":59460,"Name":"Wioska palkoneti","PlayerID":2602575,"Points":328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59460","ServerKey":"pl181","X":689,"Y":362},{"Bonus":0,"Continent":"K32","ID":59461,"Name":"WB30","PlayerID":356642,"Points":1348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59461","ServerKey":"pl181","X":292,"Y":377},{"Bonus":0,"Continent":"K32","ID":59462,"Name":"WB42","PlayerID":356642,"Points":340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59462","ServerKey":"pl181","X":291,"Y":385},{"Bonus":0,"Continent":"K75","ID":59463,"Name":"Wioska frolunda63","PlayerID":699391409,"Points":261,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59463","ServerKey":"pl181","X":557,"Y":729},{"Bonus":0,"Continent":"K42","ID":59464,"Name":"Wioska 2 die 4","PlayerID":2512219,"Points":232,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59464","ServerKey":"pl181","X":259,"Y":488},{"Bonus":0,"Continent":"K57","ID":59465,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59465","ServerKey":"pl181","X":732,"Y":560},{"Bonus":0,"Continent":"K52","ID":59466,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":316,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59466","ServerKey":"pl181","X":267,"Y":546},{"Bonus":0,"Continent":"K63","ID":59467,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":253,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59467","ServerKey":"pl181","X":343,"Y":678},{"Bonus":0,"Continent":"K24","ID":59468,"Name":"Wioska pluton1","PlayerID":662253,"Points":209,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59468","ServerKey":"pl181","X":446,"Y":264},{"Bonus":0,"Continent":"K75","ID":59469,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":1010,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59469","ServerKey":"pl181","X":577,"Y":729},{"Bonus":0,"Continent":"K63","ID":59470,"Name":"VASTO 2","PlayerID":849100016,"Points":1815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59470","ServerKey":"pl181","X":345,"Y":681},{"Bonus":0,"Continent":"K36","ID":59471,"Name":"-001- Wioska barbarzyƄska","PlayerID":849095068,"Points":2852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59471","ServerKey":"pl181","X":687,"Y":347},{"Bonus":0,"Continent":"K24","ID":59472,"Name":"Wioska dziki71","PlayerID":3667722,"Points":1479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59472","ServerKey":"pl181","X":403,"Y":286},{"Bonus":0,"Continent":"K52","ID":59473,"Name":"C0326","PlayerID":8841266,"Points":1851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59473","ServerKey":"pl181","X":269,"Y":519},{"Bonus":0,"Continent":"K33","ID":59474,"Name":"Wioska leolen","PlayerID":6617912,"Points":2639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59474","ServerKey":"pl181","X":331,"Y":326},{"Bonus":0,"Continent":"K66","ID":59475,"Name":"#140#","PlayerID":692803,"Points":1360,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59475","ServerKey":"pl181","X":664,"Y":663},{"Bonus":0,"Continent":"K67","ID":59476,"Name":"K67 38","PlayerID":698867483,"Points":404,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59476","ServerKey":"pl181","X":710,"Y":615},{"Bonus":0,"Continent":"K33","ID":59477,"Name":"Babylon","PlayerID":3377503,"Points":393,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59477","ServerKey":"pl181","X":340,"Y":325},{"Bonus":0,"Continent":"K73","ID":59478,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":389,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59478","ServerKey":"pl181","X":371,"Y":700},{"Bonus":0,"Continent":"K57","ID":59479,"Name":"Wioska barbarzyƄska","PlayerID":7528491,"Points":606,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59479","ServerKey":"pl181","X":718,"Y":579},{"Bonus":0,"Continent":"K63","ID":59480,"Name":"Wioska marlis1992","PlayerID":849098159,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59480","ServerKey":"pl181","X":351,"Y":685},{"Bonus":0,"Continent":"K47","ID":59481,"Name":"026 Z","PlayerID":699718269,"Points":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59481","ServerKey":"pl181","X":737,"Y":468},{"Bonus":8,"Continent":"K47","ID":59482,"Name":"A#053","PlayerID":2065730,"Points":4073,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59482","ServerKey":"pl181","X":724,"Y":412},{"Bonus":0,"Continent":"K54","ID":59483,"Name":"Wioska Kafaro","PlayerID":698911639,"Points":460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59483","ServerKey":"pl181","X":405,"Y":564},{"Bonus":0,"Continent":"K75","ID":59484,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59484","ServerKey":"pl181","X":526,"Y":738},{"Bonus":0,"Continent":"K47","ID":59485,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":302,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59485","ServerKey":"pl181","X":740,"Y":494},{"Bonus":0,"Continent":"K63","ID":59486,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59486","ServerKey":"pl181","X":338,"Y":670},{"Bonus":0,"Continent":"K57","ID":59487,"Name":"moĆŒna farmić - zapraszam","PlayerID":699600167,"Points":143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59487","ServerKey":"pl181","X":724,"Y":556},{"Bonus":0,"Continent":"K47","ID":59488,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59488","ServerKey":"pl181","X":741,"Y":485},{"Bonus":0,"Continent":"K36","ID":59489,"Name":"Wioska barbarzyƄska","PlayerID":849037469,"Points":239,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59489","ServerKey":"pl181","X":618,"Y":300},{"Bonus":0,"Continent":"K66","ID":59490,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":3481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59490","ServerKey":"pl181","X":651,"Y":684},{"Bonus":0,"Continent":"K63","ID":59491,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":91,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59491","ServerKey":"pl181","X":337,"Y":675},{"Bonus":0,"Continent":"K36","ID":59492,"Name":"=|42|=","PlayerID":9101574,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59492","ServerKey":"pl181","X":693,"Y":367},{"Bonus":5,"Continent":"K52","ID":59493,"Name":"Osada koczownikĂłw","PlayerID":699321518,"Points":1184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59493","ServerKey":"pl181","X":274,"Y":575},{"Bonus":0,"Continent":"K66","ID":59494,"Name":"Wioska pilkowski","PlayerID":849096856,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59494","ServerKey":"pl181","X":660,"Y":678},{"Bonus":0,"Continent":"K66","ID":59495,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":3344,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59495","ServerKey":"pl181","X":657,"Y":682},{"Bonus":0,"Continent":"K63","ID":59496,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59496","ServerKey":"pl181","X":302,"Y":628},{"Bonus":0,"Continent":"K47","ID":59497,"Name":"gracjan1995","PlayerID":698631190,"Points":1938,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59497","ServerKey":"pl181","X":720,"Y":427},{"Bonus":0,"Continent":"K24","ID":59498,"Name":"240...north","PlayerID":6920960,"Points":1366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59498","ServerKey":"pl181","X":435,"Y":272},{"Bonus":0,"Continent":"K37","ID":59499,"Name":"Wioska rycerzrzyk2000","PlayerID":6021542,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59499","ServerKey":"pl181","X":705,"Y":379},{"Bonus":0,"Continent":"K33","ID":59500,"Name":"Zaplecze Barba 046","PlayerID":699796330,"Points":2027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59500","ServerKey":"pl181","X":355,"Y":318},{"Bonus":0,"Continent":"K47","ID":59501,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59501","ServerKey":"pl181","X":729,"Y":430},{"Bonus":0,"Continent":"K25","ID":59502,"Name":"North K25","PlayerID":699146580,"Points":1521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59502","ServerKey":"pl181","X":560,"Y":269},{"Bonus":0,"Continent":"K26","ID":59503,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":65,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59503","ServerKey":"pl181","X":609,"Y":286},{"Bonus":0,"Continent":"K33","ID":59504,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2087,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59504","ServerKey":"pl181","X":365,"Y":307},{"Bonus":0,"Continent":"K25","ID":59505,"Name":"PPF-49","PlayerID":1424656,"Points":351,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59505","ServerKey":"pl181","X":553,"Y":268},{"Bonus":0,"Continent":"K74","ID":59506,"Name":"Wioska Bober5180","PlayerID":849106576,"Points":126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59506","ServerKey":"pl181","X":424,"Y":719},{"Bonus":0,"Continent":"K42","ID":59507,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":90,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59507","ServerKey":"pl181","X":269,"Y":480},{"Bonus":0,"Continent":"K63","ID":59508,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59508","ServerKey":"pl181","X":317,"Y":651},{"Bonus":0,"Continent":"K33","ID":59509,"Name":"Zaplecze Barba 052","PlayerID":699796330,"Points":579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59509","ServerKey":"pl181","X":344,"Y":323},{"Bonus":0,"Continent":"K42","ID":59510,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":83,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59510","ServerKey":"pl181","X":267,"Y":461},{"Bonus":0,"Continent":"K36","ID":59511,"Name":"045. Wioska barbarzyƄska","PlayerID":2873154,"Points":718,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59511","ServerKey":"pl181","X":687,"Y":352},{"Bonus":0,"Continent":"K75","ID":59512,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":1563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59512","ServerKey":"pl181","X":523,"Y":741},{"Bonus":2,"Continent":"K36","ID":59513,"Name":"049","PlayerID":849091105,"Points":746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59513","ServerKey":"pl181","X":691,"Y":352},{"Bonus":0,"Continent":"K37","ID":59514,"Name":"Wioska Shadow39","PlayerID":849073939,"Points":1208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59514","ServerKey":"pl181","X":704,"Y":382},{"Bonus":0,"Continent":"K24","ID":59515,"Name":"Wioska JuanPabloII","PlayerID":849091060,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59515","ServerKey":"pl181","X":414,"Y":285},{"Bonus":0,"Continent":"K36","ID":59516,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2332,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59516","ServerKey":"pl181","X":621,"Y":302},{"Bonus":0,"Continent":"K24","ID":59517,"Name":"2Pac","PlayerID":849117242,"Points":1192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59517","ServerKey":"pl181","X":467,"Y":266},{"Bonus":0,"Continent":"K66","ID":59518,"Name":"003 Venore","PlayerID":699516250,"Points":1662,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59518","ServerKey":"pl181","X":695,"Y":642},{"Bonus":0,"Continent":"K74","ID":59520,"Name":"New World","PlayerID":698152377,"Points":3377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59520","ServerKey":"pl181","X":433,"Y":731},{"Bonus":0,"Continent":"K36","ID":59521,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59521","ServerKey":"pl181","X":646,"Y":313},{"Bonus":0,"Continent":"K57","ID":59522,"Name":"Nowa 65","PlayerID":698702991,"Points":2563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59522","ServerKey":"pl181","X":722,"Y":595},{"Bonus":0,"Continent":"K33","ID":59523,"Name":"Wioska Vokhar","PlayerID":849118478,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59523","ServerKey":"pl181","X":334,"Y":334},{"Bonus":0,"Continent":"K74","ID":59524,"Name":"New World","PlayerID":698152377,"Points":3555,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59524","ServerKey":"pl181","X":427,"Y":723},{"Bonus":0,"Continent":"K33","ID":59525,"Name":"Wioska bylo21","PlayerID":1132842,"Points":199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59525","ServerKey":"pl181","X":307,"Y":366},{"Bonus":0,"Continent":"K52","ID":59526,"Name":"086 obrzeĆŒa","PlayerID":699510259,"Points":911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59526","ServerKey":"pl181","X":274,"Y":565},{"Bonus":3,"Continent":"K33","ID":59527,"Name":"Osada koczownikĂłw","PlayerID":699304554,"Points":900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59527","ServerKey":"pl181","X":331,"Y":334},{"Bonus":0,"Continent":"K24","ID":59529,"Name":"Wioska b 011","PlayerID":6343784,"Points":390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59529","ServerKey":"pl181","X":407,"Y":277},{"Bonus":0,"Continent":"K75","ID":59530,"Name":"!Wioska barbarzyƄska 33","PlayerID":8779575,"Points":2933,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59530","ServerKey":"pl181","X":583,"Y":723},{"Bonus":0,"Continent":"K67","ID":59531,"Name":"Sony 911","PlayerID":1415009,"Points":254,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59531","ServerKey":"pl181","X":706,"Y":625},{"Bonus":0,"Continent":"K76","ID":59532,"Name":"Wioska barbarzyƄska","PlayerID":101074,"Points":1090,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59532","ServerKey":"pl181","X":625,"Y":708},{"Bonus":0,"Continent":"K75","ID":59533,"Name":"Wioska Carlos75","PlayerID":337137,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59533","ServerKey":"pl181","X":510,"Y":738},{"Bonus":0,"Continent":"K25","ID":59534,"Name":"North 100","PlayerID":849064752,"Points":2878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59534","ServerKey":"pl181","X":507,"Y":259},{"Bonus":0,"Continent":"K66","ID":59535,"Name":"#171#","PlayerID":692803,"Points":660,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59535","ServerKey":"pl181","X":662,"Y":675},{"Bonus":0,"Continent":"K36","ID":59536,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1669,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59536","ServerKey":"pl181","X":659,"Y":322},{"Bonus":0,"Continent":"K36","ID":59537,"Name":"Mega kox","PlayerID":849111332,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59537","ServerKey":"pl181","X":658,"Y":328},{"Bonus":0,"Continent":"K36","ID":59538,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59538","ServerKey":"pl181","X":663,"Y":321},{"Bonus":0,"Continent":"K52","ID":59539,"Name":"036. Gloria Victis","PlayerID":848886973,"Points":1626,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59539","ServerKey":"pl181","X":269,"Y":576},{"Bonus":0,"Continent":"K37","ID":59540,"Name":"Wioska hair12345.","PlayerID":849118786,"Points":761,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59540","ServerKey":"pl181","X":702,"Y":390},{"Bonus":0,"Continent":"K32","ID":59541,"Name":"WB39","PlayerID":356642,"Points":609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59541","ServerKey":"pl181","X":289,"Y":386},{"Bonus":0,"Continent":"K47","ID":59543,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59543","ServerKey":"pl181","X":714,"Y":413},{"Bonus":0,"Continent":"K36","ID":59544,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":911,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59544","ServerKey":"pl181","X":640,"Y":308},{"Bonus":0,"Continent":"K75","ID":59545,"Name":"069 - Budowanko!","PlayerID":7540891,"Points":859,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59545","ServerKey":"pl181","X":513,"Y":735},{"Bonus":0,"Continent":"K37","ID":59546,"Name":"002","PlayerID":699832463,"Points":2129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59546","ServerKey":"pl181","X":716,"Y":390},{"Bonus":0,"Continent":"K24","ID":59547,"Name":"Wioska MARCINEK GROĆ»NY","PlayerID":6174010,"Points":369,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59547","ServerKey":"pl181","X":445,"Y":264},{"Bonus":0,"Continent":"K33","ID":59548,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":707,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59548","ServerKey":"pl181","X":342,"Y":320},{"Bonus":0,"Continent":"K47","ID":59549,"Name":"181","PlayerID":698957176,"Points":325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59549","ServerKey":"pl181","X":730,"Y":438},{"Bonus":0,"Continent":"K25","ID":59550,"Name":"Melissa monet","PlayerID":698936852,"Points":1894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59550","ServerKey":"pl181","X":573,"Y":274},{"Bonus":0,"Continent":"K42","ID":59551,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2213,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59551","ServerKey":"pl181","X":272,"Y":422},{"Bonus":0,"Continent":"K73","ID":59552,"Name":"Wioska plazmi","PlayerID":2177410,"Points":691,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59552","ServerKey":"pl181","X":392,"Y":716},{"Bonus":0,"Continent":"K33","ID":59553,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59553","ServerKey":"pl181","X":337,"Y":333},{"Bonus":0,"Continent":"K36","ID":59554,"Name":"ONR 3","PlayerID":9090040,"Points":206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59554","ServerKey":"pl181","X":662,"Y":319},{"Bonus":0,"Continent":"K36","ID":59555,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":945,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59555","ServerKey":"pl181","X":638,"Y":302},{"Bonus":0,"Continent":"K63","ID":59556,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59556","ServerKey":"pl181","X":334,"Y":666},{"Bonus":0,"Continent":"K62","ID":59557,"Name":"Wioska NurseJK","PlayerID":849113819,"Points":1520,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59557","ServerKey":"pl181","X":285,"Y":611},{"Bonus":23,"Continent":"K24","ID":59558,"Name":"Twierdza (Cadia)","PlayerID":0,"Points":2511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59558","ServerKey":"pl181","X":401,"Y":288},{"Bonus":0,"Continent":"K74","ID":59559,"Name":"035","PlayerID":8268010,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59559","ServerKey":"pl181","X":470,"Y":738},{"Bonus":0,"Continent":"K63","ID":59560,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59560","ServerKey":"pl181","X":346,"Y":679},{"Bonus":0,"Continent":"K74","ID":59562,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":27,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59562","ServerKey":"pl181","X":469,"Y":732},{"Bonus":0,"Continent":"K42","ID":59563,"Name":"Wioska dominik121","PlayerID":698639278,"Points":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59563","ServerKey":"pl181","X":274,"Y":424},{"Bonus":0,"Continent":"K24","ID":59564,"Name":"North 084","PlayerID":849064752,"Points":4179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59564","ServerKey":"pl181","X":488,"Y":261},{"Bonus":0,"Continent":"K73","ID":59565,"Name":"Wioska marek46aa","PlayerID":698346954,"Points":490,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59565","ServerKey":"pl181","X":398,"Y":720},{"Bonus":0,"Continent":"K57","ID":59566,"Name":"Wioska barbarzyƄska","PlayerID":699493750,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59566","ServerKey":"pl181","X":720,"Y":577},{"Bonus":0,"Continent":"K47","ID":59567,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59567","ServerKey":"pl181","X":741,"Y":488},{"Bonus":0,"Continent":"K52","ID":59568,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":81,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59568","ServerKey":"pl181","X":258,"Y":501},{"Bonus":0,"Continent":"K66","ID":59569,"Name":"Sony 911","PlayerID":1415009,"Points":1463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59569","ServerKey":"pl181","X":687,"Y":642},{"Bonus":0,"Continent":"K57","ID":59570,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":95,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59570","ServerKey":"pl181","X":732,"Y":552},{"Bonus":0,"Continent":"K75","ID":59571,"Name":"Wioska cycu269","PlayerID":7913305,"Points":2008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59571","ServerKey":"pl181","X":573,"Y":728},{"Bonus":0,"Continent":"K33","ID":59572,"Name":"Wioska Mistrzunio229","PlayerID":699545975,"Points":195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59572","ServerKey":"pl181","X":309,"Y":362},{"Bonus":0,"Continent":"K74","ID":59573,"Name":"Wioska barbarzyƄska","PlayerID":699280514,"Points":82,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59573","ServerKey":"pl181","X":445,"Y":728},{"Bonus":0,"Continent":"K67","ID":59574,"Name":"Wioska artur1488","PlayerID":7024597,"Points":804,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59574","ServerKey":"pl181","X":711,"Y":611},{"Bonus":0,"Continent":"K66","ID":59575,"Name":"03# Wioska barbarzyƄska","PlayerID":8444698,"Points":501,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59575","ServerKey":"pl181","X":682,"Y":642},{"Bonus":0,"Continent":"K66","ID":59576,"Name":"#172#","PlayerID":692803,"Points":236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59576","ServerKey":"pl181","X":648,"Y":690},{"Bonus":0,"Continent":"K33","ID":59577,"Name":"WB43","PlayerID":356642,"Points":484,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59577","ServerKey":"pl181","X":300,"Y":363},{"Bonus":0,"Continent":"K52","ID":59578,"Name":"Wioska Xpace67","PlayerID":849112774,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59578","ServerKey":"pl181","X":267,"Y":543},{"Bonus":0,"Continent":"K37","ID":59579,"Name":"Wioska barbarzyƄska","PlayerID":7340529,"Points":2001,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59579","ServerKey":"pl181","X":701,"Y":381},{"Bonus":0,"Continent":"K36","ID":59580,"Name":"Wioska Pati999","PlayerID":849115365,"Points":196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59580","ServerKey":"pl181","X":622,"Y":302},{"Bonus":0,"Continent":"K57","ID":59581,"Name":"036","PlayerID":6160655,"Points":632,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59581","ServerKey":"pl181","X":736,"Y":553},{"Bonus":0,"Continent":"K42","ID":59582,"Name":"Wioska Minister123","PlayerID":849118999,"Points":1916,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59582","ServerKey":"pl181","X":287,"Y":403},{"Bonus":0,"Continent":"K25","ID":59584,"Name":"North K25","PlayerID":699146580,"Points":1434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59584","ServerKey":"pl181","X":572,"Y":270},{"Bonus":0,"Continent":"K24","ID":59585,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59585","ServerKey":"pl181","X":497,"Y":263},{"Bonus":0,"Continent":"K57","ID":59586,"Name":"Wioska tomekjasko","PlayerID":849101646,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59586","ServerKey":"pl181","X":736,"Y":522},{"Bonus":0,"Continent":"K25","ID":59587,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59587","ServerKey":"pl181","X":531,"Y":265},{"Bonus":0,"Continent":"K52","ID":59588,"Name":"[0293]","PlayerID":8630972,"Points":315,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59588","ServerKey":"pl181","X":262,"Y":501},{"Bonus":0,"Continent":"K75","ID":59589,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59589","ServerKey":"pl181","X":551,"Y":735},{"Bonus":0,"Continent":"K32","ID":59590,"Name":"WB27","PlayerID":356642,"Points":1419,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59590","ServerKey":"pl181","X":299,"Y":375},{"Bonus":0,"Continent":"K74","ID":59591,"Name":"#002","PlayerID":849042480,"Points":876,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59591","ServerKey":"pl181","X":446,"Y":725},{"Bonus":0,"Continent":"K75","ID":59592,"Name":"Xxx","PlayerID":7098955,"Points":2244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59592","ServerKey":"pl181","X":509,"Y":740},{"Bonus":0,"Continent":"K63","ID":59593,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59593","ServerKey":"pl181","X":311,"Y":646},{"Bonus":0,"Continent":"K23","ID":59594,"Name":"244","PlayerID":7271812,"Points":436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59594","ServerKey":"pl181","X":366,"Y":299},{"Bonus":0,"Continent":"K24","ID":59595,"Name":"Wioska ascend","PlayerID":698830638,"Points":2812,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59595","ServerKey":"pl181","X":486,"Y":267},{"Bonus":0,"Continent":"K33","ID":59596,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59596","ServerKey":"pl181","X":334,"Y":327},{"Bonus":0,"Continent":"K74","ID":59597,"Name":"Wioska CebulowyRycerz","PlayerID":699492817,"Points":94,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59597","ServerKey":"pl181","X":467,"Y":731},{"Bonus":0,"Continent":"K47","ID":59598,"Name":"[210]","PlayerID":8000875,"Points":949,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59598","ServerKey":"pl181","X":722,"Y":419},{"Bonus":0,"Continent":"K42","ID":59599,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59599","ServerKey":"pl181","X":280,"Y":405},{"Bonus":0,"Continent":"K26","ID":59600,"Name":"Wioska barbarzyƄska","PlayerID":699098531,"Points":1640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59600","ServerKey":"pl181","X":611,"Y":294},{"Bonus":0,"Continent":"K52","ID":59602,"Name":"002 Wioska barbarzyƄska","PlayerID":915113,"Points":225,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59602","ServerKey":"pl181","X":259,"Y":515},{"Bonus":0,"Continent":"K62","ID":59603,"Name":"Dworek","PlayerID":8502135,"Points":1226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59603","ServerKey":"pl181","X":297,"Y":632},{"Bonus":0,"Continent":"K52","ID":59604,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59604","ServerKey":"pl181","X":279,"Y":599},{"Bonus":0,"Continent":"K25","ID":59605,"Name":"PPF-58","PlayerID":1424656,"Points":294,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59605","ServerKey":"pl181","X":544,"Y":277},{"Bonus":0,"Continent":"K66","ID":59606,"Name":"#148#","PlayerID":692803,"Points":1122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59606","ServerKey":"pl181","X":658,"Y":671},{"Bonus":0,"Continent":"K47","ID":59607,"Name":"057","PlayerID":849091105,"Points":81,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59607","ServerKey":"pl181","X":740,"Y":498},{"Bonus":0,"Continent":"K57","ID":59608,"Name":"KREV 007","PlayerID":848988744,"Points":217,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59608","ServerKey":"pl181","X":721,"Y":591},{"Bonus":0,"Continent":"K36","ID":59609,"Name":"Wioska miodzik9669","PlayerID":2422415,"Points":380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59609","ServerKey":"pl181","X":697,"Y":375},{"Bonus":0,"Continent":"K23","ID":59610,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":1858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59610","ServerKey":"pl181","X":368,"Y":299},{"Bonus":0,"Continent":"K33","ID":59611,"Name":"Wioska spiki2009.","PlayerID":6468217,"Points":569,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59611","ServerKey":"pl181","X":357,"Y":304},{"Bonus":0,"Continent":"K52","ID":59612,"Name":"New WorldA","PlayerID":849084005,"Points":1113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59612","ServerKey":"pl181","X":270,"Y":536},{"Bonus":0,"Continent":"K66","ID":59613,"Name":"sony911","PlayerID":1415009,"Points":220,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59613","ServerKey":"pl181","X":674,"Y":662},{"Bonus":0,"Continent":"K36","ID":59614,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59614","ServerKey":"pl181","X":668,"Y":324},{"Bonus":0,"Continent":"K47","ID":59615,"Name":"Wioska barbarzyƄska","PlayerID":698702991,"Points":414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59615","ServerKey":"pl181","X":733,"Y":439},{"Bonus":0,"Continent":"K75","ID":59616,"Name":"Aa3","PlayerID":849097614,"Points":1862,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59616","ServerKey":"pl181","X":592,"Y":720},{"Bonus":0,"Continent":"K73","ID":59617,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":49,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59617","ServerKey":"pl181","X":375,"Y":702},{"Bonus":0,"Continent":"K24","ID":59618,"Name":"066KP","PlayerID":849063849,"Points":700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59618","ServerKey":"pl181","X":482,"Y":266},{"Bonus":0,"Continent":"K57","ID":59619,"Name":"Wioska barbarzyƄska","PlayerID":2999957,"Points":174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59619","ServerKey":"pl181","X":732,"Y":561},{"Bonus":0,"Continent":"K42","ID":59620,"Name":"Tupot maƂych nĂłĆŒek 2","PlayerID":7012651,"Points":203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59620","ServerKey":"pl181","X":259,"Y":478},{"Bonus":0,"Continent":"K42","ID":59621,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59621","ServerKey":"pl181","X":272,"Y":420},{"Bonus":0,"Continent":"K62","ID":59622,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59622","ServerKey":"pl181","X":297,"Y":626},{"Bonus":0,"Continent":"K26","ID":59623,"Name":"Wioska Lejlu","PlayerID":699491924,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59623","ServerKey":"pl181","X":619,"Y":293},{"Bonus":0,"Continent":"K36","ID":59624,"Name":"045","PlayerID":849091105,"Points":818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59624","ServerKey":"pl181","X":695,"Y":371},{"Bonus":0,"Continent":"K26","ID":59625,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59625","ServerKey":"pl181","X":611,"Y":286},{"Bonus":0,"Continent":"K47","ID":59626,"Name":"Wioska 013","PlayerID":2999957,"Points":602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59626","ServerKey":"pl181","X":735,"Y":496},{"Bonus":0,"Continent":"K66","ID":59627,"Name":"Wioska barbarzyƄska","PlayerID":699189792,"Points":1902,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59627","ServerKey":"pl181","X":639,"Y":695},{"Bonus":0,"Continent":"K75","ID":59628,"Name":"181","PlayerID":849119121,"Points":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59628","ServerKey":"pl181","X":589,"Y":725},{"Bonus":0,"Continent":"K75","ID":59629,"Name":"048 - Budowanko!","PlayerID":7540891,"Points":3481,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59629","ServerKey":"pl181","X":513,"Y":741},{"Bonus":0,"Continent":"K57","ID":59630,"Name":"Valhalla","PlayerID":949279,"Points":890,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59630","ServerKey":"pl181","X":718,"Y":591},{"Bonus":0,"Continent":"K25","ID":59631,"Name":"North 085","PlayerID":849064752,"Points":3852,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59631","ServerKey":"pl181","X":512,"Y":265},{"Bonus":0,"Continent":"K33","ID":59632,"Name":"181.Nie ƛwiruję","PlayerID":6284929,"Points":1177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59632","ServerKey":"pl181","X":358,"Y":313},{"Bonus":0,"Continent":"K63","ID":59633,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59633","ServerKey":"pl181","X":328,"Y":670},{"Bonus":0,"Continent":"K75","ID":59634,"Name":"Wioska 43","PlayerID":3022364,"Points":367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59634","ServerKey":"pl181","X":579,"Y":729},{"Bonus":0,"Continent":"K42","ID":59635,"Name":"43 barbarzyƄska 3B","PlayerID":849018442,"Points":2167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59635","ServerKey":"pl181","X":271,"Y":430},{"Bonus":0,"Continent":"K52","ID":59637,"Name":"Peter","PlayerID":698766178,"Points":408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59637","ServerKey":"pl181","X":280,"Y":589},{"Bonus":0,"Continent":"K75","ID":59638,"Name":"Wioska Kamilooo97","PlayerID":848882446,"Points":694,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59638","ServerKey":"pl181","X":596,"Y":723},{"Bonus":0,"Continent":"K42","ID":59639,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1912,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59639","ServerKey":"pl181","X":273,"Y":414},{"Bonus":0,"Continent":"K57","ID":59640,"Name":"Wioska Koziok","PlayerID":849094319,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59640","ServerKey":"pl181","X":725,"Y":562},{"Bonus":0,"Continent":"K24","ID":59641,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":714,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59641","ServerKey":"pl181","X":431,"Y":273},{"Bonus":0,"Continent":"K25","ID":59643,"Name":"100 Wioska barbarzyƄska","PlayerID":699854484,"Points":3291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59643","ServerKey":"pl181","X":547,"Y":263},{"Bonus":0,"Continent":"K67","ID":59644,"Name":"Wioska kafejtor","PlayerID":849119173,"Points":227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59644","ServerKey":"pl181","X":714,"Y":614},{"Bonus":0,"Continent":"K47","ID":59645,"Name":"025 Z","PlayerID":699718269,"Points":273,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59645","ServerKey":"pl181","X":733,"Y":470},{"Bonus":0,"Continent":"K66","ID":59646,"Name":"SHIR","PlayerID":8134135,"Points":468,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59646","ServerKey":"pl181","X":680,"Y":660},{"Bonus":0,"Continent":"K24","ID":59648,"Name":"219...NORTH","PlayerID":6920960,"Points":1483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59648","ServerKey":"pl181","X":415,"Y":284},{"Bonus":0,"Continent":"K37","ID":59649,"Name":"Wioska Deckuƛ oddaj rower","PlayerID":699624570,"Points":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59649","ServerKey":"pl181","X":710,"Y":396},{"Bonus":0,"Continent":"K73","ID":59650,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59650","ServerKey":"pl181","X":384,"Y":703},{"Bonus":0,"Continent":"K63","ID":59651,"Name":"SHAKARA","PlayerID":699056677,"Points":478,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59651","ServerKey":"pl181","X":332,"Y":674},{"Bonus":0,"Continent":"K42","ID":59652,"Name":"Tupot maƂych nĂłĆŒek 1","PlayerID":7012651,"Points":307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59652","ServerKey":"pl181","X":258,"Y":477},{"Bonus":2,"Continent":"K76","ID":59653,"Name":"Osada koczownikĂłw","PlayerID":6818593,"Points":668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59653","ServerKey":"pl181","X":630,"Y":700},{"Bonus":0,"Continent":"K57","ID":59654,"Name":"Wioska lubiszT0","PlayerID":3295619,"Points":162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59654","ServerKey":"pl181","X":739,"Y":508},{"Bonus":0,"Continent":"K33","ID":59655,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59655","ServerKey":"pl181","X":362,"Y":311},{"Bonus":0,"Continent":"K42","ID":59656,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59656","ServerKey":"pl181","X":281,"Y":421},{"Bonus":0,"Continent":"K26","ID":59657,"Name":"Wioska PEPUS","PlayerID":699238678,"Points":148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59657","ServerKey":"pl181","X":606,"Y":287},{"Bonus":0,"Continent":"K33","ID":59658,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59658","ServerKey":"pl181","X":332,"Y":333},{"Bonus":0,"Continent":"K57","ID":59659,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59659","ServerKey":"pl181","X":730,"Y":532},{"Bonus":0,"Continent":"K23","ID":59660,"Name":"016","PlayerID":699694284,"Points":1980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59660","ServerKey":"pl181","X":396,"Y":285},{"Bonus":5,"Continent":"K37","ID":59661,"Name":"0105","PlayerID":698416970,"Points":923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59661","ServerKey":"pl181","X":706,"Y":379},{"Bonus":0,"Continent":"K52","ID":59662,"Name":"Arczi997 09","PlayerID":849055181,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59662","ServerKey":"pl181","X":266,"Y":511},{"Bonus":0,"Continent":"K37","ID":59663,"Name":"Malgagovo","PlayerID":849112369,"Points":249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59663","ServerKey":"pl181","X":701,"Y":372},{"Bonus":0,"Continent":"K42","ID":59664,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59664","ServerKey":"pl181","X":266,"Y":469},{"Bonus":0,"Continent":"K66","ID":59665,"Name":"K66","PlayerID":698867483,"Points":703,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59665","ServerKey":"pl181","X":699,"Y":637},{"Bonus":0,"Continent":"K63","ID":59666,"Name":"Wioska dami991","PlayerID":699777556,"Points":2105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59666","ServerKey":"pl181","X":348,"Y":686},{"Bonus":31,"Continent":"K44","ID":59667,"Name":"Twierdza (CSA-X)","PlayerID":0,"Points":5136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59667","ServerKey":"pl181","X":435,"Y":404},{"Bonus":32,"Continent":"K44","ID":59668,"Name":"Twierdza (CSA-Z)","PlayerID":0,"Points":6873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59668","ServerKey":"pl181","X":435,"Y":405},{"Bonus":0,"Continent":"K75","ID":59669,"Name":"Wioska liƛcia","PlayerID":849076953,"Points":1037,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59669","ServerKey":"pl181","X":501,"Y":732},{"Bonus":0,"Continent":"K53","ID":59670,"Name":"Wioska sadomaso","PlayerID":849117695,"Points":350,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59670","ServerKey":"pl181","X":332,"Y":514},{"Bonus":0,"Continent":"K24","ID":59671,"Name":"Wioska Bacik1906","PlayerID":849116980,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59671","ServerKey":"pl181","X":487,"Y":263},{"Bonus":0,"Continent":"K37","ID":59672,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59672","ServerKey":"pl181","X":710,"Y":399},{"Bonus":0,"Continent":"K66","ID":59673,"Name":"Wioska kizak1","PlayerID":848953472,"Points":1458,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59673","ServerKey":"pl181","X":640,"Y":694},{"Bonus":0,"Continent":"K33","ID":59674,"Name":"Wioska","PlayerID":8758298,"Points":1627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59674","ServerKey":"pl181","X":335,"Y":337},{"Bonus":0,"Continent":"K52","ID":59675,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59675","ServerKey":"pl181","X":264,"Y":530},{"Bonus":0,"Continent":"K57","ID":59676,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":300,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59676","ServerKey":"pl181","X":728,"Y":559},{"Bonus":8,"Continent":"K25","ID":59677,"Name":"North 089","PlayerID":849064752,"Points":3967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59677","ServerKey":"pl181","X":512,"Y":269},{"Bonus":0,"Continent":"K24","ID":59678,"Name":"Wioska BedsideBrick477","PlayerID":849107391,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59678","ServerKey":"pl181","X":454,"Y":272},{"Bonus":0,"Continent":"K57","ID":59679,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":1318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59679","ServerKey":"pl181","X":740,"Y":518},{"Bonus":0,"Continent":"K66","ID":59680,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":66,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59680","ServerKey":"pl181","X":661,"Y":672},{"Bonus":0,"Continent":"K63","ID":59681,"Name":"$014$ Ramzes","PlayerID":699550876,"Points":535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59681","ServerKey":"pl181","X":300,"Y":623},{"Bonus":0,"Continent":"K33","ID":59682,"Name":"Wioska barbarzyƄska","PlayerID":699796330,"Points":440,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59682","ServerKey":"pl181","X":339,"Y":322},{"Bonus":0,"Continent":"K36","ID":59683,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59683","ServerKey":"pl181","X":639,"Y":312},{"Bonus":0,"Continent":"K67","ID":59684,"Name":"K67 41","PlayerID":698867483,"Points":267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59684","ServerKey":"pl181","X":704,"Y":614},{"Bonus":0,"Continent":"K73","ID":59685,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1250,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59685","ServerKey":"pl181","X":390,"Y":713},{"Bonus":0,"Continent":"K25","ID":59687,"Name":"PPF-36","PlayerID":1424656,"Points":879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59687","ServerKey":"pl181","X":575,"Y":276},{"Bonus":0,"Continent":"K75","ID":59688,"Name":"Wioska barbarzyƄska","PlayerID":6425087,"Points":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59688","ServerKey":"pl181","X":568,"Y":728},{"Bonus":0,"Continent":"K23","ID":59689,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":2553,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59689","ServerKey":"pl181","X":372,"Y":299},{"Bonus":0,"Continent":"K33","ID":59690,"Name":"Wioska bestleevatican","PlayerID":849073156,"Points":1533,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59690","ServerKey":"pl181","X":318,"Y":349},{"Bonus":0,"Continent":"K25","ID":59691,"Name":"PPF-53","PlayerID":1424656,"Points":183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59691","ServerKey":"pl181","X":520,"Y":268},{"Bonus":0,"Continent":"K74","ID":59692,"Name":"Wioska zbawiciel4","PlayerID":699751887,"Points":64,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59692","ServerKey":"pl181","X":497,"Y":735},{"Bonus":0,"Continent":"K63","ID":59693,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":210,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59693","ServerKey":"pl181","X":327,"Y":667},{"Bonus":0,"Continent":"K66","ID":59694,"Name":"001","PlayerID":98294,"Points":524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59694","ServerKey":"pl181","X":691,"Y":635},{"Bonus":0,"Continent":"K24","ID":59695,"Name":"Wioska barbarzyƄska","PlayerID":699393759,"Points":679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59695","ServerKey":"pl181","X":407,"Y":282},{"Bonus":0,"Continent":"K76","ID":59696,"Name":"Meh","PlayerID":848883791,"Points":609,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59696","ServerKey":"pl181","X":612,"Y":715},{"Bonus":0,"Continent":"K37","ID":59698,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":2058,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59698","ServerKey":"pl181","X":708,"Y":390},{"Bonus":0,"Continent":"K75","ID":59700,"Name":"Wioska barbarzyƄska","PlayerID":848995242,"Points":434,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59700","ServerKey":"pl181","X":589,"Y":717},{"Bonus":0,"Continent":"K57","ID":59701,"Name":"Wioska Mikkerland","PlayerID":762859,"Points":269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59701","ServerKey":"pl181","X":737,"Y":504},{"Bonus":0,"Continent":"K47","ID":59702,"Name":"104","PlayerID":7085502,"Points":706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59702","ServerKey":"pl181","X":736,"Y":466},{"Bonus":0,"Continent":"K57","ID":59704,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59704","ServerKey":"pl181","X":740,"Y":514},{"Bonus":28,"Continent":"K55","ID":59705,"Name":"Twierdza (MzM)","PlayerID":0,"Points":3041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59705","ServerKey":"pl181","X":595,"Y":564},{"Bonus":0,"Continent":"K33","ID":59706,"Name":"miglanc06","PlayerID":849119328,"Points":699,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59706","ServerKey":"pl181","X":350,"Y":314},{"Bonus":0,"Continent":"K52","ID":59707,"Name":"SpiĆŒ","PlayerID":849049288,"Points":2818,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59707","ServerKey":"pl181","X":279,"Y":598},{"Bonus":0,"Continent":"K36","ID":59708,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59708","ServerKey":"pl181","X":656,"Y":314},{"Bonus":0,"Continent":"K76","ID":59710,"Name":"budowa 08","PlayerID":7139820,"Points":584,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59710","ServerKey":"pl181","X":600,"Y":712},{"Bonus":0,"Continent":"K42","ID":59711,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59711","ServerKey":"pl181","X":263,"Y":453},{"Bonus":0,"Continent":"K76","ID":59712,"Name":"Wioska barbarzyƄska","PlayerID":848912937,"Points":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59712","ServerKey":"pl181","X":607,"Y":714},{"Bonus":0,"Continent":"K36","ID":59713,"Name":"Wioska kuba987","PlayerID":699622958,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59713","ServerKey":"pl181","X":679,"Y":348},{"Bonus":0,"Continent":"K47","ID":59714,"Name":"Wioska barbarzyƄska","PlayerID":6510480,"Points":184,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59714","ServerKey":"pl181","X":734,"Y":495},{"Bonus":0,"Continent":"K73","ID":59716,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59716","ServerKey":"pl181","X":392,"Y":706},{"Bonus":0,"Continent":"K36","ID":59717,"Name":"046. tomnado","PlayerID":2873154,"Points":362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59717","ServerKey":"pl181","X":679,"Y":349},{"Bonus":5,"Continent":"K66","ID":59718,"Name":"Osada koczownikĂłw","PlayerID":848987051,"Points":3291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59718","ServerKey":"pl181","X":644,"Y":692},{"Bonus":0,"Continent":"K36","ID":59719,"Name":"Wioska WhiteMuffin","PlayerID":699812824,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59719","ServerKey":"pl181","X":658,"Y":316},{"Bonus":0,"Continent":"K63","ID":59720,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":188,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59720","ServerKey":"pl181","X":360,"Y":689},{"Bonus":0,"Continent":"K66","ID":59722,"Name":"#146#","PlayerID":692803,"Points":1132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59722","ServerKey":"pl181","X":676,"Y":659},{"Bonus":0,"Continent":"K75","ID":59723,"Name":"Wioska barbarzyƄska","PlayerID":699189792,"Points":879,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59723","ServerKey":"pl181","X":597,"Y":723},{"Bonus":0,"Continent":"K33","ID":59724,"Name":"Wioska38","PlayerID":699711926,"Points":1055,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59724","ServerKey":"pl181","X":327,"Y":345},{"Bonus":0,"Continent":"K52","ID":59725,"Name":"Wioska Pan ƚwirusek","PlayerID":699831524,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59725","ServerKey":"pl181","X":271,"Y":538},{"Bonus":0,"Continent":"K57","ID":59726,"Name":"105","PlayerID":7085502,"Points":967,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59726","ServerKey":"pl181","X":713,"Y":599},{"Bonus":0,"Continent":"K33","ID":59727,"Name":"Bolszewo","PlayerID":699852606,"Points":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59727","ServerKey":"pl181","X":338,"Y":335},{"Bonus":0,"Continent":"K63","ID":59728,"Name":"Wioska Krzysztofeks16","PlayerID":6298409,"Points":182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59728","ServerKey":"pl181","X":355,"Y":691},{"Bonus":0,"Continent":"K32","ID":59729,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59729","ServerKey":"pl181","X":288,"Y":396},{"Bonus":0,"Continent":"K42","ID":59730,"Name":"Wioska naja1920ruch","PlayerID":849088923,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59730","ServerKey":"pl181","X":261,"Y":491},{"Bonus":0,"Continent":"K52","ID":59731,"Name":"Wioska szymoniasty2740","PlayerID":849008396,"Points":352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59731","ServerKey":"pl181","X":286,"Y":597},{"Bonus":0,"Continent":"K32","ID":59732,"Name":"WB23","PlayerID":356642,"Points":1472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59732","ServerKey":"pl181","X":297,"Y":367},{"Bonus":0,"Continent":"K57","ID":59733,"Name":"Wioska maciejasz3k","PlayerID":699699563,"Points":1066,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59733","ServerKey":"pl181","X":719,"Y":587},{"Bonus":0,"Continent":"K43","ID":59734,"Name":"Wioska cyaaaa2","PlayerID":7560085,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59734","ServerKey":"pl181","X":324,"Y":494},{"Bonus":9,"Continent":"K62","ID":59735,"Name":"Osada koczownikĂłw","PlayerID":699321518,"Points":603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59735","ServerKey":"pl181","X":292,"Y":603},{"Bonus":0,"Continent":"K24","ID":59736,"Name":"141.Stradi","PlayerID":698365960,"Points":415,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59736","ServerKey":"pl181","X":413,"Y":274},{"Bonus":0,"Continent":"K63","ID":59737,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59737","ServerKey":"pl181","X":328,"Y":658},{"Bonus":0,"Continent":"K24","ID":59738,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59738","ServerKey":"pl181","X":461,"Y":267},{"Bonus":0,"Continent":"K32","ID":59739,"Name":"WB35","PlayerID":356642,"Points":1148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59739","ServerKey":"pl181","X":289,"Y":383},{"Bonus":0,"Continent":"K42","ID":59740,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59740","ServerKey":"pl181","X":267,"Y":483},{"Bonus":0,"Continent":"K56","ID":59741,"Name":"Wioska Omikronmen","PlayerID":849095448,"Points":1733,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59741","ServerKey":"pl181","X":609,"Y":506},{"Bonus":3,"Continent":"K42","ID":59742,"Name":"35 koczownikĂłw A","PlayerID":849018442,"Points":1988,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59742","ServerKey":"pl181","X":273,"Y":433},{"Bonus":0,"Continent":"K52","ID":59743,"Name":"Wioska Chronek09","PlayerID":849110916,"Points":658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59743","ServerKey":"pl181","X":282,"Y":597},{"Bonus":0,"Continent":"K33","ID":59744,"Name":"Wioska barbarzyƄska","PlayerID":8772425,"Points":607,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59744","ServerKey":"pl181","X":351,"Y":323},{"Bonus":0,"Continent":"K47","ID":59745,"Name":"Wioska Mc Fly","PlayerID":849118930,"Points":128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59745","ServerKey":"pl181","X":728,"Y":444},{"Bonus":0,"Continent":"K32","ID":59746,"Name":"WB26","PlayerID":356642,"Points":1444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59746","ServerKey":"pl181","X":299,"Y":368},{"Bonus":0,"Continent":"K57","ID":59747,"Name":"Wioska Rewson","PlayerID":849084911,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59747","ServerKey":"pl181","X":735,"Y":553},{"Bonus":0,"Continent":"K37","ID":59748,"Name":"Jehu_Kingdom_67","PlayerID":8785314,"Points":1021,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59748","ServerKey":"pl181","X":716,"Y":398},{"Bonus":5,"Continent":"K63","ID":59749,"Name":"Osada koczownikĂłw","PlayerID":6354098,"Points":919,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59749","ServerKey":"pl181","X":344,"Y":681},{"Bonus":0,"Continent":"K24","ID":59750,"Name":"Wioska Zelmer","PlayerID":849117551,"Points":524,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59750","ServerKey":"pl181","X":418,"Y":271},{"Bonus":7,"Continent":"K26","ID":59751,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59751","ServerKey":"pl181","X":615,"Y":291},{"Bonus":0,"Continent":"K32","ID":59752,"Name":"GOAT","PlayerID":699535590,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59752","ServerKey":"pl181","X":289,"Y":380},{"Bonus":0,"Continent":"K33","ID":59753,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59753","ServerKey":"pl181","X":334,"Y":324},{"Bonus":0,"Continent":"K52","ID":59754,"Name":"Wioska Future Traveler","PlayerID":8399822,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59754","ServerKey":"pl181","X":262,"Y":523},{"Bonus":0,"Continent":"K25","ID":59755,"Name":"PPF-41","PlayerID":1424656,"Points":702,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59755","ServerKey":"pl181","X":582,"Y":276},{"Bonus":4,"Continent":"K63","ID":59756,"Name":"O148","PlayerID":272173,"Points":1361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59756","ServerKey":"pl181","X":311,"Y":641},{"Bonus":0,"Continent":"K62","ID":59757,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59757","ServerKey":"pl181","X":290,"Y":602},{"Bonus":0,"Continent":"K47","ID":59758,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":941,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59758","ServerKey":"pl181","X":737,"Y":449},{"Bonus":0,"Continent":"K66","ID":59760,"Name":"K66","PlayerID":698867483,"Points":708,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59760","ServerKey":"pl181","X":697,"Y":628},{"Bonus":0,"Continent":"K73","ID":59762,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59762","ServerKey":"pl181","X":397,"Y":710},{"Bonus":1,"Continent":"K32","ID":59763,"Name":"WB40","PlayerID":356642,"Points":427,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59763","ServerKey":"pl181","X":292,"Y":387},{"Bonus":0,"Continent":"K74","ID":59764,"Name":"Wioska Minikod","PlayerID":849082839,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59764","ServerKey":"pl181","X":471,"Y":735},{"Bonus":0,"Continent":"K74","ID":59765,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":1249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59765","ServerKey":"pl181","X":403,"Y":723},{"Bonus":0,"Continent":"K47","ID":59766,"Name":"Wioska piter787878","PlayerID":848982635,"Points":153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59766","ServerKey":"pl181","X":742,"Y":494},{"Bonus":0,"Continent":"K57","ID":59767,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":602,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59767","ServerKey":"pl181","X":729,"Y":570},{"Bonus":0,"Continent":"K57","ID":59768,"Name":"181 002","PlayerID":7272223,"Points":245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59768","ServerKey":"pl181","X":730,"Y":562},{"Bonus":0,"Continent":"K74","ID":59770,"Name":"Wioska sabaciorz","PlayerID":849101403,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59770","ServerKey":"pl181","X":402,"Y":716},{"Bonus":0,"Continent":"K52","ID":59771,"Name":"Wioska t0m45","PlayerID":849111121,"Points":192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59771","ServerKey":"pl181","X":264,"Y":548},{"Bonus":0,"Continent":"K75","ID":59772,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":725,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59772","ServerKey":"pl181","X":590,"Y":715},{"Bonus":0,"Continent":"K73","ID":59773,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59773","ServerKey":"pl181","X":375,"Y":704},{"Bonus":0,"Continent":"K47","ID":59774,"Name":"[844] Odludzie","PlayerID":848985692,"Points":2923,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59774","ServerKey":"pl181","X":726,"Y":431},{"Bonus":0,"Continent":"K25","ID":59775,"Name":"Orzechowa United","PlayerID":849112050,"Points":1223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59775","ServerKey":"pl181","X":586,"Y":275},{"Bonus":0,"Continent":"K33","ID":59776,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":1367,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59776","ServerKey":"pl181","X":368,"Y":309},{"Bonus":0,"Continent":"K57","ID":59777,"Name":"Wioska MalinowaZaba","PlayerID":699677277,"Points":855,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59777","ServerKey":"pl181","X":738,"Y":543},{"Bonus":0,"Continent":"K57","ID":59778,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":471,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59778","ServerKey":"pl181","X":734,"Y":539},{"Bonus":0,"Continent":"K42","ID":59779,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59779","ServerKey":"pl181","X":269,"Y":481},{"Bonus":0,"Continent":"K26","ID":59780,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59780","ServerKey":"pl181","X":623,"Y":292},{"Bonus":0,"Continent":"K57","ID":59782,"Name":"Wioska Strusiek","PlayerID":699749184,"Points":422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59782","ServerKey":"pl181","X":735,"Y":536},{"Bonus":1,"Continent":"K52","ID":59783,"Name":"Osada koczownikĂłw","PlayerID":699425709,"Points":388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59783","ServerKey":"pl181","X":257,"Y":503},{"Bonus":0,"Continent":"K67","ID":59784,"Name":"K67 46","PlayerID":698867483,"Points":153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59784","ServerKey":"pl181","X":703,"Y":631},{"Bonus":0,"Continent":"K36","ID":59785,"Name":"051","PlayerID":849091105,"Points":482,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59785","ServerKey":"pl181","X":688,"Y":353},{"Bonus":0,"Continent":"K33","ID":59786,"Name":"Wioska Adison II ƚmiaƂy","PlayerID":849113226,"Points":487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59786","ServerKey":"pl181","X":365,"Y":308},{"Bonus":0,"Continent":"K37","ID":59787,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59787","ServerKey":"pl181","X":707,"Y":381},{"Bonus":0,"Continent":"K57","ID":59788,"Name":"Wioska Adikson16","PlayerID":849114112,"Points":143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59788","ServerKey":"pl181","X":730,"Y":566},{"Bonus":0,"Continent":"K25","ID":59789,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1164,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59789","ServerKey":"pl181","X":599,"Y":287},{"Bonus":0,"Continent":"K37","ID":59790,"Name":"ƁódĆș","PlayerID":698248308,"Points":1328,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59790","ServerKey":"pl181","X":708,"Y":382},{"Bonus":0,"Continent":"K24","ID":59791,"Name":"North 086","PlayerID":849064752,"Points":3546,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59791","ServerKey":"pl181","X":488,"Y":257},{"Bonus":0,"Continent":"K25","ID":59792,"Name":"Wioska jaromirek","PlayerID":7516892,"Points":814,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59792","ServerKey":"pl181","X":530,"Y":261},{"Bonus":0,"Continent":"K75","ID":59793,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":860,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59793","ServerKey":"pl181","X":547,"Y":731},{"Bonus":0,"Continent":"K66","ID":59794,"Name":"Wioska goodvibegoodman","PlayerID":848909292,"Points":1284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59794","ServerKey":"pl181","X":631,"Y":695},{"Bonus":0,"Continent":"K75","ID":59795,"Name":"Wioska Akantos","PlayerID":698262808,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59795","ServerKey":"pl181","X":556,"Y":729},{"Bonus":0,"Continent":"K36","ID":59797,"Name":"KADRONGE","PlayerID":3957237,"Points":1342,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59797","ServerKey":"pl181","X":693,"Y":363},{"Bonus":0,"Continent":"K73","ID":59798,"Name":"Wioska nawi4","PlayerID":7802435,"Points":1133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59798","ServerKey":"pl181","X":393,"Y":713},{"Bonus":0,"Continent":"K66","ID":59799,"Name":"#152#","PlayerID":692803,"Points":915,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59799","ServerKey":"pl181","X":645,"Y":688},{"Bonus":0,"Continent":"K47","ID":59800,"Name":"Wioska slawekkrasulak","PlayerID":699876653,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59800","ServerKey":"pl181","X":735,"Y":485},{"Bonus":0,"Continent":"K76","ID":59801,"Name":"#156#","PlayerID":692803,"Points":1974,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59801","ServerKey":"pl181","X":621,"Y":711},{"Bonus":0,"Continent":"K66","ID":59802,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59802","ServerKey":"pl181","X":658,"Y":680},{"Bonus":0,"Continent":"K66","ID":59803,"Name":"#145#","PlayerID":692803,"Points":1089,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59803","ServerKey":"pl181","X":675,"Y":663},{"Bonus":0,"Continent":"K52","ID":59806,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59806","ServerKey":"pl181","X":259,"Y":521},{"Bonus":1,"Continent":"K25","ID":59807,"Name":"Osada koczownikĂłw","PlayerID":699146580,"Points":901,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59807","ServerKey":"pl181","X":561,"Y":266},{"Bonus":0,"Continent":"K76","ID":59808,"Name":"Wioska Poranna Gwiazda","PlayerID":699753863,"Points":212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59808","ServerKey":"pl181","X":605,"Y":711},{"Bonus":0,"Continent":"K57","ID":59809,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":753,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59809","ServerKey":"pl181","X":728,"Y":562},{"Bonus":0,"Continent":"K75","ID":59811,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":697,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59811","ServerKey":"pl181","X":534,"Y":736},{"Bonus":0,"Continent":"K52","ID":59812,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":149,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59812","ServerKey":"pl181","X":275,"Y":583},{"Bonus":0,"Continent":"K26","ID":59813,"Name":"Ć»elaza Potęga","PlayerID":849052195,"Points":226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59813","ServerKey":"pl181","X":614,"Y":299},{"Bonus":0,"Continent":"K36","ID":59814,"Name":"Spray","PlayerID":7973893,"Points":816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59814","ServerKey":"pl181","X":680,"Y":352},{"Bonus":0,"Continent":"K57","ID":59815,"Name":"Wioska szalony iwan","PlayerID":8772923,"Points":561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59815","ServerKey":"pl181","X":734,"Y":551},{"Bonus":0,"Continent":"K67","ID":59816,"Name":"Wioska orko3","PlayerID":7069895,"Points":174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59816","ServerKey":"pl181","X":718,"Y":601},{"Bonus":0,"Continent":"K75","ID":59817,"Name":"031Luchowski","PlayerID":698620694,"Points":1777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59817","ServerKey":"pl181","X":508,"Y":737},{"Bonus":0,"Continent":"K75","ID":59818,"Name":"75001...","PlayerID":8320319,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59818","ServerKey":"pl181","X":549,"Y":732},{"Bonus":0,"Continent":"K42","ID":59819,"Name":"39 barbarzyƄska 2B","PlayerID":849018442,"Points":2028,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59819","ServerKey":"pl181","X":264,"Y":444},{"Bonus":0,"Continent":"K63","ID":59821,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59821","ServerKey":"pl181","X":330,"Y":662},{"Bonus":6,"Continent":"K75","ID":59822,"Name":"Osada koczownikĂłw","PlayerID":6299408,"Points":882,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59822","ServerKey":"pl181","X":580,"Y":723},{"Bonus":0,"Continent":"K63","ID":59823,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":69,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59823","ServerKey":"pl181","X":373,"Y":699},{"Bonus":0,"Continent":"K33","ID":59824,"Name":"Zaplecze Gubernia","PlayerID":699796330,"Points":1926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59824","ServerKey":"pl181","X":354,"Y":316},{"Bonus":0,"Continent":"K36","ID":59825,"Name":"AKIKU","PlayerID":2315542,"Points":886,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59825","ServerKey":"pl181","X":666,"Y":326},{"Bonus":0,"Continent":"K42","ID":59826,"Name":"[0294]","PlayerID":8630972,"Points":1657,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59826","ServerKey":"pl181","X":267,"Y":496},{"Bonus":0,"Continent":"K25","ID":59827,"Name":"PPF-59","PlayerID":1424656,"Points":62,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59827","ServerKey":"pl181","X":562,"Y":275},{"Bonus":0,"Continent":"K25","ID":59828,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59828","ServerKey":"pl181","X":598,"Y":278},{"Bonus":0,"Continent":"K47","ID":59829,"Name":"Wioska epstein.","PlayerID":848905784,"Points":123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59829","ServerKey":"pl181","X":742,"Y":491},{"Bonus":0,"Continent":"K47","ID":59830,"Name":"Kami 6","PlayerID":849002796,"Points":638,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59830","ServerKey":"pl181","X":741,"Y":469},{"Bonus":0,"Continent":"K47","ID":59831,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":98,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59831","ServerKey":"pl181","X":735,"Y":447},{"Bonus":0,"Continent":"K33","ID":59832,"Name":"Wioska barbarzyƄska","PlayerID":698160606,"Points":1893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59832","ServerKey":"pl181","X":361,"Y":313},{"Bonus":0,"Continent":"K66","ID":59833,"Name":"Wypizdowo","PlayerID":849119631,"Points":189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59833","ServerKey":"pl181","X":676,"Y":662},{"Bonus":0,"Continent":"K42","ID":59834,"Name":"Wioska sendzia555","PlayerID":6294942,"Points":139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59834","ServerKey":"pl181","X":264,"Y":450},{"Bonus":3,"Continent":"K74","ID":59835,"Name":"No.31","PlayerID":698826986,"Points":363,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59835","ServerKey":"pl181","X":473,"Y":735},{"Bonus":0,"Continent":"K47","ID":59836,"Name":"Wioska drewniak","PlayerID":849119848,"Points":195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59836","ServerKey":"pl181","X":719,"Y":408},{"Bonus":0,"Continent":"K25","ID":59837,"Name":"Wioska barbarzyƄska","PlayerID":849100406,"Points":893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59837","ServerKey":"pl181","X":594,"Y":275},{"Bonus":0,"Continent":"K24","ID":59838,"Name":"078KP","PlayerID":849063849,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59838","ServerKey":"pl181","X":489,"Y":264},{"Bonus":0,"Continent":"K36","ID":59839,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1559,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59839","ServerKey":"pl181","X":670,"Y":327},{"Bonus":0,"Continent":"K42","ID":59840,"Name":"Wioska solek4321","PlayerID":699808655,"Points":1119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59840","ServerKey":"pl181","X":260,"Y":461},{"Bonus":0,"Continent":"K36","ID":59841,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59841","ServerKey":"pl181","X":645,"Y":316},{"Bonus":0,"Continent":"K52","ID":59842,"Name":"Wioska bartki37","PlayerID":849016844,"Points":102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59842","ServerKey":"pl181","X":267,"Y":539},{"Bonus":0,"Continent":"K66","ID":59843,"Name":"Sony 911","PlayerID":1415009,"Points":887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59843","ServerKey":"pl181","X":683,"Y":654},{"Bonus":0,"Continent":"K57","ID":59845,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":788,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59845","ServerKey":"pl181","X":728,"Y":575},{"Bonus":0,"Continent":"K52","ID":59846,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59846","ServerKey":"pl181","X":270,"Y":551},{"Bonus":0,"Continent":"K52","ID":59847,"Name":"039. Gloria Victis","PlayerID":848886973,"Points":1115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59847","ServerKey":"pl181","X":276,"Y":578},{"Bonus":0,"Continent":"K42","ID":59849,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":57,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59849","ServerKey":"pl181","X":259,"Y":487},{"Bonus":0,"Continent":"K66","ID":59851,"Name":"Wioska WitoldWolski","PlayerID":849119432,"Points":153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59851","ServerKey":"pl181","X":629,"Y":697},{"Bonus":0,"Continent":"K57","ID":59852,"Name":"Wioska barbarzyƄska","PlayerID":942959,"Points":472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59852","ServerKey":"pl181","X":733,"Y":500},{"Bonus":0,"Continent":"K25","ID":59853,"Name":"Wioska barbarzyƄska","PlayerID":699854484,"Points":73,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59853","ServerKey":"pl181","X":564,"Y":275},{"Bonus":0,"Continent":"K26","ID":59854,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2215,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59854","ServerKey":"pl181","X":618,"Y":294},{"Bonus":0,"Continent":"K23","ID":59855,"Name":"Wioska Chwedi","PlayerID":848958005,"Points":1060,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59855","ServerKey":"pl181","X":388,"Y":288},{"Bonus":0,"Continent":"K36","ID":59856,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59856","ServerKey":"pl181","X":673,"Y":338},{"Bonus":6,"Continent":"K57","ID":59857,"Name":"Osada koczownikĂłw","PlayerID":848995478,"Points":939,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59857","ServerKey":"pl181","X":730,"Y":560},{"Bonus":0,"Continent":"K75","ID":59858,"Name":"079 - Budowanko!","PlayerID":7540891,"Points":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59858","ServerKey":"pl181","X":510,"Y":742},{"Bonus":0,"Continent":"K55","ID":59859,"Name":"Wioska ..Tomek..","PlayerID":849004759,"Points":2310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59859","ServerKey":"pl181","X":585,"Y":590},{"Bonus":0,"Continent":"K42","ID":59860,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59860","ServerKey":"pl181","X":261,"Y":463},{"Bonus":0,"Continent":"K74","ID":59861,"Name":"Wioska festher","PlayerID":849117362,"Points":1311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59861","ServerKey":"pl181","X":459,"Y":739},{"Bonus":0,"Continent":"K52","ID":59862,"Name":"Wioska bielacz","PlayerID":849096265,"Points":877,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59862","ServerKey":"pl181","X":275,"Y":582},{"Bonus":0,"Continent":"K66","ID":59863,"Name":"Sony 911","PlayerID":1415009,"Points":1107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59863","ServerKey":"pl181","X":692,"Y":642},{"Bonus":0,"Continent":"K24","ID":59864,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59864","ServerKey":"pl181","X":464,"Y":262},{"Bonus":0,"Continent":"K74","ID":59865,"Name":"032Drewno","PlayerID":698620694,"Points":2635,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59865","ServerKey":"pl181","X":481,"Y":732},{"Bonus":0,"Continent":"K26","ID":59866,"Name":"Wioska marekwalczyk","PlayerID":699155679,"Points":214,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59866","ServerKey":"pl181","X":624,"Y":292},{"Bonus":1,"Continent":"K75","ID":59867,"Name":"054 - Budowanko!","PlayerID":7540891,"Points":2667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59867","ServerKey":"pl181","X":508,"Y":733},{"Bonus":0,"Continent":"K37","ID":59868,"Name":"BORKOS","PlayerID":3487721,"Points":1731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59868","ServerKey":"pl181","X":721,"Y":398},{"Bonus":0,"Continent":"K63","ID":59870,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59870","ServerKey":"pl181","X":301,"Y":631},{"Bonus":0,"Continent":"K66","ID":59871,"Name":"Wioska barbarzyƄska","PlayerID":848987051,"Points":674,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59871","ServerKey":"pl181","X":635,"Y":692},{"Bonus":0,"Continent":"K52","ID":59872,"Name":"hyniu 2112","PlayerID":849094061,"Points":288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59872","ServerKey":"pl181","X":265,"Y":549},{"Bonus":0,"Continent":"K24","ID":59873,"Name":"073KP","PlayerID":849063849,"Points":372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59873","ServerKey":"pl181","X":466,"Y":269},{"Bonus":0,"Continent":"K63","ID":59874,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59874","ServerKey":"pl181","X":372,"Y":695},{"Bonus":0,"Continent":"K57","ID":59875,"Name":"Radiowa","PlayerID":848932879,"Points":1093,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59875","ServerKey":"pl181","X":723,"Y":565},{"Bonus":0,"Continent":"K47","ID":59876,"Name":"Wioska BastianCHW","PlayerID":849061406,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59876","ServerKey":"pl181","X":728,"Y":417},{"Bonus":0,"Continent":"K63","ID":59877,"Name":"Wioska Varendial x Visyq","PlayerID":848977748,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59877","ServerKey":"pl181","X":338,"Y":681},{"Bonus":6,"Continent":"K47","ID":59878,"Name":"0124","PlayerID":698416970,"Points":519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59878","ServerKey":"pl181","X":721,"Y":421},{"Bonus":0,"Continent":"K75","ID":59879,"Name":"akuku","PlayerID":6425087,"Points":659,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59879","ServerKey":"pl181","X":551,"Y":729},{"Bonus":0,"Continent":"K63","ID":59880,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59880","ServerKey":"pl181","X":320,"Y":651},{"Bonus":0,"Continent":"K32","ID":59881,"Name":"Wioska Damian0704","PlayerID":849075744,"Points":2200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59881","ServerKey":"pl181","X":293,"Y":394},{"Bonus":0,"Continent":"K66","ID":59882,"Name":"Wioska Maniek.W","PlayerID":699831603,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59882","ServerKey":"pl181","X":639,"Y":692},{"Bonus":0,"Continent":"K47","ID":59883,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59883","ServerKey":"pl181","X":727,"Y":421},{"Bonus":0,"Continent":"K47","ID":59884,"Name":"181","PlayerID":565043,"Points":640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59884","ServerKey":"pl181","X":732,"Y":457},{"Bonus":0,"Continent":"K75","ID":59885,"Name":"KASHYYYK 5","PlayerID":699383121,"Points":246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59885","ServerKey":"pl181","X":573,"Y":732},{"Bonus":0,"Continent":"K63","ID":59886,"Name":"Wioska SzCzAkUs","PlayerID":2684175,"Points":503,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59886","ServerKey":"pl181","X":338,"Y":669},{"Bonus":0,"Continent":"K47","ID":59887,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":1025,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59887","ServerKey":"pl181","X":735,"Y":439},{"Bonus":1,"Continent":"K52","ID":59888,"Name":"0000040Z","PlayerID":849089881,"Points":3837,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59888","ServerKey":"pl181","X":277,"Y":568},{"Bonus":0,"Continent":"K56","ID":59889,"Name":"Wioska Exodus303","PlayerID":849119994,"Points":998,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59889","ServerKey":"pl181","X":614,"Y":503},{"Bonus":0,"Continent":"K37","ID":59890,"Name":"0122","PlayerID":698416970,"Points":552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59890","ServerKey":"pl181","X":701,"Y":384},{"Bonus":0,"Continent":"K57","ID":59891,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59891","ServerKey":"pl181","X":737,"Y":525},{"Bonus":0,"Continent":"K47","ID":59892,"Name":"X.10","PlayerID":699737356,"Points":493,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59892","ServerKey":"pl181","X":726,"Y":440},{"Bonus":0,"Continent":"K47","ID":59893,"Name":"81 Calimera +747.000+-102","PlayerID":2571536,"Points":206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59893","ServerKey":"pl181","X":717,"Y":413},{"Bonus":0,"Continent":"K23","ID":59894,"Name":"Albiorix","PlayerID":3377503,"Points":311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59894","ServerKey":"pl181","X":383,"Y":298},{"Bonus":0,"Continent":"K76","ID":59895,"Name":"Wioska barbarzyƄska","PlayerID":699189792,"Points":322,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59895","ServerKey":"pl181","X":621,"Y":708},{"Bonus":0,"Continent":"K75","ID":59896,"Name":"Witten","PlayerID":849057450,"Points":1851,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59896","ServerKey":"pl181","X":596,"Y":724},{"Bonus":0,"Continent":"K67","ID":59897,"Name":"039 - Salamanca","PlayerID":698342159,"Points":1041,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59897","ServerKey":"pl181","X":720,"Y":600},{"Bonus":0,"Continent":"K37","ID":59898,"Name":"Wioska kijek","PlayerID":849115304,"Points":38,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59898","ServerKey":"pl181","X":710,"Y":377},{"Bonus":0,"Continent":"K37","ID":59899,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":70,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59899","ServerKey":"pl181","X":703,"Y":382},{"Bonus":0,"Continent":"K47","ID":59900,"Name":"Wioska Beast Palladin","PlayerID":3362925,"Points":1082,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59900","ServerKey":"pl181","X":733,"Y":433},{"Bonus":0,"Continent":"K52","ID":59901,"Name":"Zzz 13 trochę bardzo daleko","PlayerID":849084740,"Points":476,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59901","ServerKey":"pl181","X":283,"Y":582},{"Bonus":0,"Continent":"K57","ID":59902,"Name":"Wioska Dominoo1","PlayerID":699748916,"Points":429,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59902","ServerKey":"pl181","X":734,"Y":560},{"Bonus":0,"Continent":"K74","ID":59903,"Name":"Wioska mustanq123","PlayerID":6851059,"Points":86,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59903","ServerKey":"pl181","X":441,"Y":733},{"Bonus":0,"Continent":"K67","ID":59904,"Name":"K67 32","PlayerID":698867483,"Points":731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59904","ServerKey":"pl181","X":714,"Y":602},{"Bonus":0,"Continent":"K74","ID":59905,"Name":"081 - Budowanko!","PlayerID":7540891,"Points":79,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59905","ServerKey":"pl181","X":495,"Y":733},{"Bonus":0,"Continent":"K47","ID":59906,"Name":"Wioska marcinpaluch0211","PlayerID":849120093,"Points":69,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59906","ServerKey":"pl181","X":729,"Y":429},{"Bonus":0,"Continent":"K63","ID":59907,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59907","ServerKey":"pl181","X":335,"Y":676},{"Bonus":0,"Continent":"K24","ID":59908,"Name":"#0309 barbarzyƄska","PlayerID":1238300,"Points":102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59908","ServerKey":"pl181","X":439,"Y":273},{"Bonus":0,"Continent":"K73","ID":59909,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59909","ServerKey":"pl181","X":396,"Y":712},{"Bonus":0,"Continent":"K63","ID":59910,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":60,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59910","ServerKey":"pl181","X":348,"Y":685},{"Bonus":0,"Continent":"K25","ID":59911,"Name":"North 075","PlayerID":849064752,"Points":3483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59911","ServerKey":"pl181","X":502,"Y":266},{"Bonus":0,"Continent":"K74","ID":59912,"Name":"Wioska wiNo","PlayerID":849095756,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59912","ServerKey":"pl181","X":412,"Y":727},{"Bonus":0,"Continent":"K75","ID":59913,"Name":"Orkowi Zawodnicy Dominują Rybki","PlayerID":7589468,"Points":156,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59913","ServerKey":"pl181","X":573,"Y":729},{"Bonus":0,"Continent":"K57","ID":59914,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59914","ServerKey":"pl181","X":717,"Y":594},{"Bonus":2,"Continent":"K76","ID":59915,"Name":"Osada koczownikĂłw","PlayerID":7589468,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59915","ServerKey":"pl181","X":622,"Y":711},{"Bonus":0,"Continent":"K75","ID":59916,"Name":"082 - Budowanko!","PlayerID":7540891,"Points":67,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59916","ServerKey":"pl181","X":531,"Y":740},{"Bonus":9,"Continent":"K63","ID":59917,"Name":"O161","PlayerID":272173,"Points":993,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59917","ServerKey":"pl181","X":321,"Y":660},{"Bonus":0,"Continent":"K63","ID":59919,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59919","ServerKey":"pl181","X":348,"Y":675},{"Bonus":0,"Continent":"K57","ID":59920,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":82,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59920","ServerKey":"pl181","X":733,"Y":562},{"Bonus":0,"Continent":"K47","ID":59921,"Name":"228 |","PlayerID":8000875,"Points":245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59921","ServerKey":"pl181","X":727,"Y":415},{"Bonus":0,"Continent":"K25","ID":59922,"Name":"Wioska onek666","PlayerID":849032413,"Points":379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59922","ServerKey":"pl181","X":588,"Y":281},{"Bonus":0,"Continent":"K47","ID":59923,"Name":"047","PlayerID":849091105,"Points":595,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59923","ServerKey":"pl181","X":725,"Y":410},{"Bonus":0,"Continent":"K24","ID":59924,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59924","ServerKey":"pl181","X":454,"Y":270},{"Bonus":0,"Continent":"K24","ID":59925,"Name":"North 087","PlayerID":849064752,"Points":3091,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59925","ServerKey":"pl181","X":498,"Y":265},{"Bonus":0,"Continent":"K32","ID":59926,"Name":"SERWAR","PlayerID":849119528,"Points":1604,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59926","ServerKey":"pl181","X":287,"Y":383},{"Bonus":0,"Continent":"K23","ID":59927,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59927","ServerKey":"pl181","X":386,"Y":289},{"Bonus":0,"Continent":"K52","ID":59928,"Name":"Wioska japacz","PlayerID":7809316,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59928","ServerKey":"pl181","X":273,"Y":570},{"Bonus":0,"Continent":"K26","ID":59929,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":598,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59929","ServerKey":"pl181","X":630,"Y":294},{"Bonus":2,"Continent":"K74","ID":59930,"Name":"055 - Budowanko!","PlayerID":7540891,"Points":2667,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59930","ServerKey":"pl181","X":477,"Y":732},{"Bonus":0,"Continent":"K36","ID":59931,"Name":"Wioska pol992","PlayerID":8468862,"Points":121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59931","ServerKey":"pl181","X":667,"Y":334},{"Bonus":0,"Continent":"K75","ID":59932,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59932","ServerKey":"pl181","X":580,"Y":718},{"Bonus":0,"Continent":"K75","ID":59933,"Name":"Wioska Lego.","PlayerID":699778684,"Points":227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59933","ServerKey":"pl181","X":526,"Y":740},{"Bonus":0,"Continent":"K66","ID":59934,"Name":"Wioska Pietrasfryzjer","PlayerID":699866225,"Points":639,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59934","ServerKey":"pl181","X":693,"Y":632},{"Bonus":0,"Continent":"K63","ID":59935,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59935","ServerKey":"pl181","X":328,"Y":665},{"Bonus":0,"Continent":"K36","ID":59936,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1356,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59936","ServerKey":"pl181","X":667,"Y":326},{"Bonus":0,"Continent":"K76","ID":59938,"Name":"o023","PlayerID":699189792,"Points":2742,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59938","ServerKey":"pl181","X":601,"Y":720},{"Bonus":0,"Continent":"K42","ID":59939,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59939","ServerKey":"pl181","X":283,"Y":404},{"Bonus":0,"Continent":"K36","ID":59940,"Name":"0127","PlayerID":698416970,"Points":514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59940","ServerKey":"pl181","X":699,"Y":381},{"Bonus":0,"Continent":"K42","ID":59941,"Name":"NO. 00","PlayerID":849118262,"Points":424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59941","ServerKey":"pl181","X":268,"Y":474},{"Bonus":0,"Continent":"K73","ID":59942,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":640,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59942","ServerKey":"pl181","X":381,"Y":700},{"Bonus":0,"Continent":"K23","ID":59943,"Name":"Wioska damiano3106","PlayerID":848940223,"Points":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59943","ServerKey":"pl181","X":396,"Y":288},{"Bonus":0,"Continent":"K63","ID":59944,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59944","ServerKey":"pl181","X":358,"Y":686},{"Bonus":0,"Continent":"K25","ID":59945,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59945","ServerKey":"pl181","X":599,"Y":279},{"Bonus":0,"Continent":"K24","ID":59946,"Name":"Wioska barbarzyƄska","PlayerID":699191455,"Points":318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59946","ServerKey":"pl181","X":457,"Y":263},{"Bonus":0,"Continent":"K36","ID":59947,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":51,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59947","ServerKey":"pl181","X":656,"Y":327},{"Bonus":0,"Continent":"K37","ID":59948,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":1561,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59948","ServerKey":"pl181","X":718,"Y":392},{"Bonus":0,"Continent":"K26","ID":59949,"Name":"Pomiot obƂędu","PlayerID":849118709,"Points":326,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59949","ServerKey":"pl181","X":617,"Y":290},{"Bonus":0,"Continent":"K26","ID":59950,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59950","ServerKey":"pl181","X":626,"Y":294},{"Bonus":0,"Continent":"K24","ID":59951,"Name":"312","PlayerID":7271812,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59951","ServerKey":"pl181","X":445,"Y":273},{"Bonus":0,"Continent":"K26","ID":59952,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2030,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59952","ServerKey":"pl181","X":623,"Y":296},{"Bonus":0,"Continent":"K25","ID":59953,"Name":"81 kybb.","PlayerID":122492,"Points":878,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59953","ServerKey":"pl181","X":577,"Y":278},{"Bonus":0,"Continent":"K33","ID":59954,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":2002,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59954","ServerKey":"pl181","X":357,"Y":311},{"Bonus":1,"Continent":"K47","ID":59955,"Name":"Wioska barbarzyƄska","PlayerID":8325700,"Points":823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59955","ServerKey":"pl181","X":717,"Y":415},{"Bonus":0,"Continent":"K47","ID":59957,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":909,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59957","ServerKey":"pl181","X":735,"Y":443},{"Bonus":0,"Continent":"K33","ID":59958,"Name":"Wioska barbarzyƄska","PlayerID":356642,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59958","ServerKey":"pl181","X":303,"Y":367},{"Bonus":0,"Continent":"K24","ID":59959,"Name":"Gwenville 017","PlayerID":848986638,"Points":521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59959","ServerKey":"pl181","X":453,"Y":271},{"Bonus":0,"Continent":"K26","ID":59960,"Name":"Wioska Mufferr","PlayerID":698455203,"Points":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59960","ServerKey":"pl181","X":617,"Y":297},{"Bonus":0,"Continent":"K74","ID":59961,"Name":"033Nawisy lodowe","PlayerID":698620694,"Points":2333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59961","ServerKey":"pl181","X":472,"Y":734},{"Bonus":0,"Continent":"K66","ID":59962,"Name":"001 Thais","PlayerID":699516250,"Points":5178,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59962","ServerKey":"pl181","X":695,"Y":646},{"Bonus":0,"Continent":"K24","ID":59963,"Name":"North 101","PlayerID":849064752,"Points":2545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59963","ServerKey":"pl181","X":476,"Y":264},{"Bonus":0,"Continent":"K76","ID":59965,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":81,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59965","ServerKey":"pl181","X":605,"Y":708},{"Bonus":0,"Continent":"K73","ID":59966,"Name":"Wioska adamzagi","PlayerID":849103914,"Points":380,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59966","ServerKey":"pl181","X":393,"Y":717},{"Bonus":0,"Continent":"K74","ID":59967,"Name":"Wioska barbarzyƄska","PlayerID":7540891,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59967","ServerKey":"pl181","X":487,"Y":741},{"Bonus":0,"Continent":"K24","ID":59968,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59968","ServerKey":"pl181","X":417,"Y":280},{"Bonus":0,"Continent":"K33","ID":59969,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59969","ServerKey":"pl181","X":302,"Y":359},{"Bonus":0,"Continent":"K47","ID":59970,"Name":"Apollo8","PlayerID":6590149,"Points":403,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59970","ServerKey":"pl181","X":737,"Y":467},{"Bonus":0,"Continent":"K32","ID":59971,"Name":"Wioska damianslipiec","PlayerID":699865603,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59971","ServerKey":"pl181","X":296,"Y":371},{"Bonus":0,"Continent":"K32","ID":59972,"Name":"Wioska DomiNio","PlayerID":849109705,"Points":357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59972","ServerKey":"pl181","X":290,"Y":377},{"Bonus":0,"Continent":"K75","ID":59973,"Name":"Wioska barbarzyƄska","PlayerID":7589468,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59973","ServerKey":"pl181","X":575,"Y":731},{"Bonus":0,"Continent":"K52","ID":59974,"Name":"001","PlayerID":8617889,"Points":1858,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59974","ServerKey":"pl181","X":280,"Y":587},{"Bonus":0,"Continent":"K47","ID":59975,"Name":"Wioska justyna010114","PlayerID":849118261,"Points":489,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59975","ServerKey":"pl181","X":724,"Y":413},{"Bonus":0,"Continent":"K63","ID":59976,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":823,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59976","ServerKey":"pl181","X":377,"Y":697},{"Bonus":8,"Continent":"K26","ID":59977,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":2094,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59977","ServerKey":"pl181","X":613,"Y":289},{"Bonus":0,"Continent":"K57","ID":59978,"Name":"Wioska mjk105","PlayerID":849103876,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59978","ServerKey":"pl181","X":732,"Y":528},{"Bonus":0,"Continent":"K73","ID":59979,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":894,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59979","ServerKey":"pl181","X":395,"Y":716},{"Bonus":0,"Continent":"K24","ID":59980,"Name":"81 Dorian888","PlayerID":6423275,"Points":514,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59980","ServerKey":"pl181","X":499,"Y":268},{"Bonus":0,"Continent":"K74","ID":59981,"Name":"031","PlayerID":8268010,"Points":1008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59981","ServerKey":"pl181","X":470,"Y":737},{"Bonus":0,"Continent":"K24","ID":59982,"Name":"nic tu po mnie","PlayerID":849119862,"Points":483,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59982","ServerKey":"pl181","X":482,"Y":268},{"Bonus":8,"Continent":"K32","ID":59983,"Name":"WB31","PlayerID":356642,"Points":1235,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59983","ServerKey":"pl181","X":291,"Y":381},{"Bonus":0,"Continent":"K62","ID":59984,"Name":"Trundugl","PlayerID":849117196,"Points":958,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59984","ServerKey":"pl181","X":290,"Y":619},{"Bonus":0,"Continent":"K47","ID":59985,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":1385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59985","ServerKey":"pl181","X":716,"Y":405},{"Bonus":8,"Continent":"K52","ID":59986,"Name":"079 obrzeĆŒa","PlayerID":699510259,"Points":1487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59986","ServerKey":"pl181","X":265,"Y":560},{"Bonus":0,"Continent":"K52","ID":59987,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59987","ServerKey":"pl181","X":271,"Y":549},{"Bonus":0,"Continent":"K74","ID":59988,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59988","ServerKey":"pl181","X":464,"Y":739},{"Bonus":0,"Continent":"K63","ID":59989,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":181,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59989","ServerKey":"pl181","X":359,"Y":692},{"Bonus":0,"Continent":"K33","ID":59990,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":82,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59990","ServerKey":"pl181","X":350,"Y":317},{"Bonus":0,"Continent":"K25","ID":59993,"Name":"North 088","PlayerID":849064752,"Points":3080,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59993","ServerKey":"pl181","X":501,"Y":268},{"Bonus":0,"Continent":"K26","ID":59995,"Name":"Wioska pisior18","PlayerID":699551148,"Points":62,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59995","ServerKey":"pl181","X":610,"Y":290},{"Bonus":0,"Continent":"K75","ID":59996,"Name":"Wioska jaro513","PlayerID":849118128,"Points":228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59996","ServerKey":"pl181","X":555,"Y":733},{"Bonus":0,"Continent":"K33","ID":59997,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59997","ServerKey":"pl181","X":312,"Y":346},{"Bonus":0,"Continent":"K66","ID":59998,"Name":"Wioska pogromca xcc","PlayerID":8926516,"Points":176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59998","ServerKey":"pl181","X":660,"Y":674},{"Bonus":0,"Continent":"K74","ID":59999,"Name":"034Dendystka","PlayerID":698620694,"Points":2444,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=59999","ServerKey":"pl181","X":474,"Y":740},{"Bonus":5,"Continent":"K36","ID":60000,"Name":"Ks Konfederacja","PlayerID":848915730,"Points":1779,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60000","ServerKey":"pl181","X":695,"Y":360},{"Bonus":0,"Continent":"K62","ID":60001,"Name":"Wioska jozin4don","PlayerID":849106548,"Points":566,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60001","ServerKey":"pl181","X":292,"Y":613},{"Bonus":0,"Continent":"K63","ID":60002,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":159,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60002","ServerKey":"pl181","X":353,"Y":689},{"Bonus":0,"Continent":"K74","ID":60004,"Name":"New World","PlayerID":698152377,"Points":2064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60004","ServerKey":"pl181","X":425,"Y":724},{"Bonus":0,"Continent":"K23","ID":60005,"Name":"Wioska skwarol888","PlayerID":699741694,"Points":630,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60005","ServerKey":"pl181","X":398,"Y":281},{"Bonus":0,"Continent":"K26","ID":60006,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":1110,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60006","ServerKey":"pl181","X":605,"Y":289},{"Bonus":0,"Continent":"K75","ID":60007,"Name":"Wioska Jacymir15","PlayerID":849117536,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60007","ServerKey":"pl181","X":538,"Y":735},{"Bonus":0,"Continent":"K57","ID":60008,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60008","ServerKey":"pl181","X":724,"Y":566},{"Bonus":0,"Continent":"K42","ID":60009,"Name":"Melina","PlayerID":699854312,"Points":391,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60009","ServerKey":"pl181","X":276,"Y":416},{"Bonus":0,"Continent":"K36","ID":60010,"Name":"Wioska Sir fojerman","PlayerID":698885960,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60010","ServerKey":"pl181","X":690,"Y":366},{"Bonus":0,"Continent":"K47","ID":60011,"Name":"Moja1","PlayerID":849114119,"Points":1107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60011","ServerKey":"pl181","X":724,"Y":422},{"Bonus":0,"Continent":"K63","ID":60012,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60012","ServerKey":"pl181","X":315,"Y":652},{"Bonus":0,"Continent":"K75","ID":60013,"Name":"Wioska lukasz111","PlayerID":849066035,"Points":237,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60013","ServerKey":"pl181","X":576,"Y":730},{"Bonus":0,"Continent":"K74","ID":60014,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":28,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60014","ServerKey":"pl181","X":446,"Y":728},{"Bonus":0,"Continent":"K75","ID":60015,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":534,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60015","ServerKey":"pl181","X":522,"Y":736},{"Bonus":0,"Continent":"K66","ID":60016,"Name":"Wioska gnom1","PlayerID":849119476,"Points":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60016","ServerKey":"pl181","X":627,"Y":699},{"Bonus":0,"Continent":"K75","ID":60017,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":414,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60017","ServerKey":"pl181","X":598,"Y":716},{"Bonus":0,"Continent":"K66","ID":60018,"Name":"zenek12","PlayerID":849118820,"Points":289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60018","ServerKey":"pl181","X":685,"Y":656},{"Bonus":0,"Continent":"K42","ID":60019,"Name":"47 barbarzyƄska","PlayerID":849018442,"Points":833,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60019","ServerKey":"pl181","X":268,"Y":429},{"Bonus":0,"Continent":"K52","ID":60020,"Name":"Pallet Town","PlayerID":849119423,"Points":537,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60020","ServerKey":"pl181","X":268,"Y":542},{"Bonus":0,"Continent":"K74","ID":60021,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":55,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60021","ServerKey":"pl181","X":403,"Y":720},{"Bonus":0,"Continent":"K23","ID":60022,"Name":"142.Stradi","PlayerID":698365960,"Points":447,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60022","ServerKey":"pl181","X":391,"Y":287},{"Bonus":0,"Continent":"K36","ID":60023,"Name":"Wioska bartek145972","PlayerID":8942143,"Points":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60023","ServerKey":"pl181","X":662,"Y":325},{"Bonus":0,"Continent":"K62","ID":60024,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60024","ServerKey":"pl181","X":284,"Y":611},{"Bonus":5,"Continent":"K24","ID":60025,"Name":"Osada koczownikĂłw","PlayerID":6343784,"Points":889,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60025","ServerKey":"pl181","X":406,"Y":287},{"Bonus":0,"Continent":"K52","ID":60026,"Name":"Wioska rutej123","PlayerID":699720374,"Points":116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60026","ServerKey":"pl181","X":284,"Y":591},{"Bonus":0,"Continent":"K52","ID":60027,"Name":"Zzz 14 dalej niĆŒ daleko","PlayerID":849084740,"Points":245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60027","ServerKey":"pl181","X":280,"Y":586},{"Bonus":0,"Continent":"K66","ID":60028,"Name":"Wioska Chmielu94","PlayerID":849105187,"Points":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60028","ServerKey":"pl181","X":649,"Y":686},{"Bonus":0,"Continent":"K63","ID":60029,"Name":"47.","PlayerID":8665783,"Points":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60029","ServerKey":"pl181","X":334,"Y":667},{"Bonus":0,"Continent":"K57","ID":60031,"Name":"Wioska barbarzyƄska","PlayerID":699493750,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60031","ServerKey":"pl181","X":728,"Y":586},{"Bonus":0,"Continent":"K25","ID":60032,"Name":"Wioska Kampffliege","PlayerID":849120421,"Points":119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60032","ServerKey":"pl181","X":585,"Y":282},{"Bonus":0,"Continent":"K37","ID":60033,"Name":"Wioska badidek","PlayerID":9002278,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60033","ServerKey":"pl181","X":702,"Y":374},{"Bonus":0,"Continent":"K57","ID":60034,"Name":"Wioska borowka73","PlayerID":2811568,"Points":408,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60034","ServerKey":"pl181","X":732,"Y":567},{"Bonus":0,"Continent":"K73","ID":60035,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60035","ServerKey":"pl181","X":371,"Y":704},{"Bonus":0,"Continent":"K66","ID":60036,"Name":"Wioska Tomaszer12","PlayerID":849119407,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60036","ServerKey":"pl181","X":670,"Y":662},{"Bonus":0,"Continent":"K46","ID":60037,"Name":"Wioska Wanderwoman","PlayerID":849120438,"Points":519,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60037","ServerKey":"pl181","X":697,"Y":410},{"Bonus":0,"Continent":"K74","ID":60038,"Name":"Wioska 181","PlayerID":849120129,"Points":928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60038","ServerKey":"pl181","X":410,"Y":717},{"Bonus":0,"Continent":"K52","ID":60039,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":70,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60039","ServerKey":"pl181","X":266,"Y":545},{"Bonus":0,"Continent":"K26","ID":60040,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":820,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60040","ServerKey":"pl181","X":608,"Y":288},{"Bonus":0,"Continent":"K23","ID":60042,"Name":"019","PlayerID":699694284,"Points":1310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60042","ServerKey":"pl181","X":394,"Y":283},{"Bonus":0,"Continent":"K75","ID":60044,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60044","ServerKey":"pl181","X":546,"Y":737},{"Bonus":0,"Continent":"K37","ID":60045,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":86,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60045","ServerKey":"pl181","X":714,"Y":385},{"Bonus":0,"Continent":"K23","ID":60046,"Name":"Wioska smerfy 22","PlayerID":849116819,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60046","ServerKey":"pl181","X":384,"Y":293},{"Bonus":0,"Continent":"K63","ID":60047,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60047","ServerKey":"pl181","X":304,"Y":636},{"Bonus":0,"Continent":"K57","ID":60049,"Name":"CastAway !041","PlayerID":9314079,"Points":423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60049","ServerKey":"pl181","X":718,"Y":592},{"Bonus":0,"Continent":"K47","ID":60050,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":38,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60050","ServerKey":"pl181","X":738,"Y":465},{"Bonus":0,"Continent":"K47","ID":60051,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":362,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60051","ServerKey":"pl181","X":721,"Y":425},{"Bonus":3,"Continent":"K57","ID":60052,"Name":"Osada koczownikĂłw","PlayerID":699493750,"Points":433,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60052","ServerKey":"pl181","X":725,"Y":587},{"Bonus":0,"Continent":"K36","ID":60053,"Name":"Wioska bonktrzmiel I","PlayerID":849120488,"Points":269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60053","ServerKey":"pl181","X":627,"Y":304},{"Bonus":0,"Continent":"K25","ID":60054,"Name":"PPF-38","PlayerID":1424656,"Points":684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60054","ServerKey":"pl181","X":529,"Y":259},{"Bonus":0,"Continent":"K47","ID":60055,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":81,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60055","ServerKey":"pl181","X":719,"Y":406},{"Bonus":5,"Continent":"K52","ID":60056,"Name":"010 x","PlayerID":197581,"Points":1137,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60056","ServerKey":"pl181","X":273,"Y":557},{"Bonus":0,"Continent":"K26","ID":60057,"Name":"Miasteczko","PlayerID":849046206,"Points":1117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60057","ServerKey":"pl181","X":636,"Y":299},{"Bonus":0,"Continent":"K33","ID":60058,"Name":"Wioska barbarzyƄska","PlayerID":699191464,"Points":529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60058","ServerKey":"pl181","X":344,"Y":315},{"Bonus":0,"Continent":"K33","ID":60059,"Name":"Wioska Przemko duch","PlayerID":849119975,"Points":627,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60059","ServerKey":"pl181","X":317,"Y":341},{"Bonus":0,"Continent":"K37","ID":60060,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60060","ServerKey":"pl181","X":708,"Y":392},{"Bonus":0,"Continent":"K47","ID":60061,"Name":"40 Dol Blathanna","PlayerID":8976313,"Points":472,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60061","ServerKey":"pl181","X":740,"Y":469},{"Bonus":6,"Continent":"K24","ID":60062,"Name":"North 077","PlayerID":849064752,"Points":3078,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60062","ServerKey":"pl181","X":486,"Y":264},{"Bonus":0,"Continent":"K75","ID":60063,"Name":"TuRawka","PlayerID":849120285,"Points":165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60063","ServerKey":"pl181","X":597,"Y":716},{"Bonus":0,"Continent":"K66","ID":60064,"Name":"#159#","PlayerID":692803,"Points":696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60064","ServerKey":"pl181","X":662,"Y":674},{"Bonus":0,"Continent":"K36","ID":60065,"Name":"Wioska v3n1s","PlayerID":849109875,"Points":180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60065","ServerKey":"pl181","X":644,"Y":307},{"Bonus":0,"Continent":"K47","ID":60066,"Name":"X.09","PlayerID":699737356,"Points":488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60066","ServerKey":"pl181","X":726,"Y":447},{"Bonus":0,"Continent":"K25","ID":60068,"Name":"PPF-42","PlayerID":1424656,"Points":623,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60068","ServerKey":"pl181","X":536,"Y":260},{"Bonus":0,"Continent":"K76","ID":60069,"Name":"Wioska Mandrysi","PlayerID":849116044,"Points":295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60069","ServerKey":"pl181","X":605,"Y":715},{"Bonus":6,"Continent":"K76","ID":60070,"Name":"Osada koczownikĂłw","PlayerID":699828685,"Points":843,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60070","ServerKey":"pl181","X":608,"Y":715},{"Bonus":0,"Continent":"K66","ID":60071,"Name":"Wioska coreslaw","PlayerID":699564303,"Points":200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60071","ServerKey":"pl181","X":668,"Y":666},{"Bonus":0,"Continent":"K75","ID":60072,"Name":"Wioska barbarzyƄska","PlayerID":699828685,"Points":437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60072","ServerKey":"pl181","X":594,"Y":714},{"Bonus":0,"Continent":"K42","ID":60073,"Name":"Wioska Sir Pazdan","PlayerID":9270302,"Points":1333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60073","ServerKey":"pl181","X":266,"Y":462},{"Bonus":5,"Continent":"K36","ID":60074,"Name":"076","PlayerID":2502956,"Points":296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60074","ServerKey":"pl181","X":666,"Y":332},{"Bonus":0,"Continent":"K66","ID":60075,"Name":"Wioska polska222","PlayerID":849102833,"Points":251,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60075","ServerKey":"pl181","X":647,"Y":683},{"Bonus":0,"Continent":"K73","ID":60076,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60076","ServerKey":"pl181","X":376,"Y":710},{"Bonus":0,"Continent":"K63","ID":60077,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":231,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60077","ServerKey":"pl181","X":300,"Y":636},{"Bonus":0,"Continent":"K57","ID":60078,"Name":"Wioska fikumiku111","PlayerID":849055527,"Points":179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60078","ServerKey":"pl181","X":741,"Y":526},{"Bonus":0,"Continent":"K76","ID":60079,"Name":"#157#","PlayerID":692803,"Points":696,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60079","ServerKey":"pl181","X":609,"Y":718},{"Bonus":0,"Continent":"K74","ID":60081,"Name":"FP057","PlayerID":699605333,"Points":1382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60081","ServerKey":"pl181","X":446,"Y":730},{"Bonus":0,"Continent":"K23","ID":60082,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60082","ServerKey":"pl181","X":394,"Y":281},{"Bonus":0,"Continent":"K67","ID":60083,"Name":"K67 33","PlayerID":698867483,"Points":754,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60083","ServerKey":"pl181","X":718,"Y":603},{"Bonus":0,"Continent":"K66","ID":60084,"Name":"Wioska miro2558","PlayerID":1170102,"Points":204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60084","ServerKey":"pl181","X":669,"Y":670},{"Bonus":0,"Continent":"K47","ID":60085,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":684,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60085","ServerKey":"pl181","X":725,"Y":427},{"Bonus":0,"Continent":"K52","ID":60086,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60086","ServerKey":"pl181","X":265,"Y":564},{"Bonus":0,"Continent":"K25","ID":60087,"Name":"PPF-39","PlayerID":1424656,"Points":683,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60087","ServerKey":"pl181","X":521,"Y":267},{"Bonus":4,"Continent":"K33","ID":60088,"Name":"NOT?","PlayerID":9236866,"Points":1372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60088","ServerKey":"pl181","X":310,"Y":348},{"Bonus":0,"Continent":"K67","ID":60089,"Name":"Wioska dorkness","PlayerID":849055096,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60089","ServerKey":"pl181","X":700,"Y":620},{"Bonus":0,"Continent":"K42","ID":60090,"Name":"[0295]","PlayerID":8630972,"Points":445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60090","ServerKey":"pl181","X":266,"Y":494},{"Bonus":0,"Continent":"K25","ID":60091,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60091","ServerKey":"pl181","X":580,"Y":280},{"Bonus":0,"Continent":"K57","ID":60092,"Name":"kww10","PlayerID":699831860,"Points":486,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60092","ServerKey":"pl181","X":728,"Y":547},{"Bonus":0,"Continent":"K47","ID":60093,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60093","ServerKey":"pl181","X":742,"Y":497},{"Bonus":0,"Continent":"K42","ID":60094,"Name":"Wioska Zdrowa Pięta Achillesa","PlayerID":699699650,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60094","ServerKey":"pl181","X":280,"Y":406},{"Bonus":2,"Continent":"K33","ID":60095,"Name":"Zaplecze Osada 2","PlayerID":699796330,"Points":2125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60095","ServerKey":"pl181","X":357,"Y":312},{"Bonus":0,"Continent":"K57","ID":60096,"Name":"Wioska","PlayerID":2516620,"Points":312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60096","ServerKey":"pl181","X":723,"Y":568},{"Bonus":0,"Continent":"K42","ID":60097,"Name":"48 barbarzyƄska","PlayerID":849018442,"Points":834,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60097","ServerKey":"pl181","X":271,"Y":448},{"Bonus":1,"Continent":"K47","ID":60098,"Name":"048","PlayerID":849091105,"Points":511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60098","ServerKey":"pl181","X":733,"Y":442},{"Bonus":0,"Continent":"K47","ID":60099,"Name":"Wioska apysia","PlayerID":1322622,"Points":200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60099","ServerKey":"pl181","X":739,"Y":456},{"Bonus":0,"Continent":"K62","ID":60100,"Name":"oliwka. 1","PlayerID":849078119,"Points":384,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60100","ServerKey":"pl181","X":290,"Y":600},{"Bonus":0,"Continent":"K23","ID":60101,"Name":"Wioska jjaare","PlayerID":7013660,"Points":827,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60101","ServerKey":"pl181","X":392,"Y":290},{"Bonus":0,"Continent":"K57","ID":60102,"Name":"Wioska Miko6","PlayerID":6704738,"Points":312,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60102","ServerKey":"pl181","X":732,"Y":525},{"Bonus":8,"Continent":"K25","ID":60103,"Name":"Osada koczownikĂłw","PlayerID":849064614,"Points":868,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60103","ServerKey":"pl181","X":579,"Y":271},{"Bonus":0,"Continent":"K53","ID":60104,"Name":"Wioska Sir kamil 1999","PlayerID":9182487,"Points":119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60104","ServerKey":"pl181","X":374,"Y":572},{"Bonus":0,"Continent":"K66","ID":60105,"Name":"koniec","PlayerID":699883836,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60105","ServerKey":"pl181","X":626,"Y":698},{"Bonus":0,"Continent":"K24","ID":60106,"Name":"5,56mm Grot","PlayerID":3430969,"Points":1023,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60106","ServerKey":"pl181","X":486,"Y":256},{"Bonus":0,"Continent":"K73","ID":60107,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60107","ServerKey":"pl181","X":378,"Y":701},{"Bonus":0,"Continent":"K74","ID":60108,"Name":"Wioska Mario 76","PlayerID":699672060,"Points":628,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60108","ServerKey":"pl181","X":453,"Y":733},{"Bonus":0,"Continent":"K57","ID":60109,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60109","ServerKey":"pl181","X":737,"Y":534},{"Bonus":0,"Continent":"K43","ID":60110,"Name":"Wioska adahin","PlayerID":7995033,"Points":487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60110","ServerKey":"pl181","X":387,"Y":413},{"Bonus":0,"Continent":"K74","ID":60111,"Name":"Wioska Kapral161","PlayerID":849098217,"Points":292,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60111","ServerKey":"pl181","X":418,"Y":730},{"Bonus":0,"Continent":"K57","ID":60112,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60112","ServerKey":"pl181","X":727,"Y":549},{"Bonus":0,"Continent":"K42","ID":60113,"Name":"Wioska rere1995","PlayerID":1020792,"Points":885,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60113","ServerKey":"pl181","X":271,"Y":456},{"Bonus":0,"Continent":"K57","ID":60114,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":545,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60114","ServerKey":"pl181","X":730,"Y":578},{"Bonus":0,"Continent":"K74","ID":60115,"Name":"Wioska adamcx91","PlayerID":849111418,"Points":1457,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60115","ServerKey":"pl181","X":406,"Y":723},{"Bonus":0,"Continent":"K24","ID":60116,"Name":"North 105","PlayerID":849064752,"Points":2816,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60116","ServerKey":"pl181","X":492,"Y":258},{"Bonus":0,"Continent":"K46","ID":60117,"Name":"Wioska JungleBoyz","PlayerID":7915966,"Points":5873,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60117","ServerKey":"pl181","X":616,"Y":408},{"Bonus":0,"Continent":"K57","ID":60118,"Name":"Wioska barbarzyƄska","PlayerID":848995478,"Points":1808,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60118","ServerKey":"pl181","X":736,"Y":559},{"Bonus":0,"Continent":"K76","ID":60120,"Name":"Wioska barbarzyƄska","PlayerID":849104491,"Points":355,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60120","ServerKey":"pl181","X":618,"Y":711},{"Bonus":0,"Continent":"K52","ID":60121,"Name":"Wioska Latino","PlayerID":848893447,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60121","ServerKey":"pl181","X":286,"Y":593},{"Bonus":0,"Continent":"K63","ID":60122,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60122","ServerKey":"pl181","X":360,"Y":694},{"Bonus":0,"Continent":"K63","ID":60123,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60123","ServerKey":"pl181","X":307,"Y":635},{"Bonus":0,"Continent":"K24","ID":60124,"Name":"Wioska Krzysiek12","PlayerID":849117533,"Points":73,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60124","ServerKey":"pl181","X":419,"Y":271},{"Bonus":0,"Continent":"K42","ID":60125,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":2070,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60125","ServerKey":"pl181","X":276,"Y":410},{"Bonus":0,"Continent":"K32","ID":60126,"Name":"Wioska LOCODEMACONHA","PlayerID":699832737,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60126","ServerKey":"pl181","X":294,"Y":370},{"Bonus":0,"Continent":"K66","ID":60127,"Name":"#162#","PlayerID":692803,"Points":575,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60127","ServerKey":"pl181","X":659,"Y":676},{"Bonus":0,"Continent":"K62","ID":60128,"Name":"Wioska MichaƂ zƂoƛliwy","PlayerID":849107426,"Points":310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60128","ServerKey":"pl181","X":295,"Y":615},{"Bonus":0,"Continent":"K36","ID":60129,"Name":"039. 5spajk5","PlayerID":2873154,"Points":563,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60129","ServerKey":"pl181","X":678,"Y":349},{"Bonus":0,"Continent":"K67","ID":60131,"Name":"WschĂłd 004","PlayerID":698562644,"Points":467,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60131","ServerKey":"pl181","X":708,"Y":616},{"Bonus":0,"Continent":"K47","ID":60133,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":952,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60133","ServerKey":"pl181","X":725,"Y":420},{"Bonus":0,"Continent":"K36","ID":60134,"Name":"181","PlayerID":8890346,"Points":528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60134","ServerKey":"pl181","X":656,"Y":328},{"Bonus":0,"Continent":"K63","ID":60135,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60135","ServerKey":"pl181","X":308,"Y":640},{"Bonus":0,"Continent":"K24","ID":60136,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60136","ServerKey":"pl181","X":419,"Y":273},{"Bonus":0,"Continent":"K76","ID":60137,"Name":"Wioska barbarzyƄska","PlayerID":698353083,"Points":513,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60137","ServerKey":"pl181","X":620,"Y":712},{"Bonus":0,"Continent":"K76","ID":60139,"Name":"o021","PlayerID":699189792,"Points":2422,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60139","ServerKey":"pl181","X":628,"Y":702},{"Bonus":0,"Continent":"K47","ID":60140,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60140","ServerKey":"pl181","X":712,"Y":402},{"Bonus":0,"Continent":"K73","ID":60141,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60141","ServerKey":"pl181","X":371,"Y":702},{"Bonus":0,"Continent":"K25","ID":60142,"Name":"Wioska ptomptom","PlayerID":699780721,"Points":634,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60142","ServerKey":"pl181","X":523,"Y":261},{"Bonus":0,"Continent":"K52","ID":60143,"Name":"C0331","PlayerID":8841266,"Points":1631,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60143","ServerKey":"pl181","X":268,"Y":547},{"Bonus":0,"Continent":"K33","ID":60144,"Name":"Wioska Ankalagon Czarny","PlayerID":1517450,"Points":280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60144","ServerKey":"pl181","X":348,"Y":313},{"Bonus":0,"Continent":"K37","ID":60145,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60145","ServerKey":"pl181","X":712,"Y":387},{"Bonus":0,"Continent":"K73","ID":60146,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":641,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60146","ServerKey":"pl181","X":378,"Y":711},{"Bonus":0,"Continent":"K23","ID":60147,"Name":"Wioska Kolekcjon","PlayerID":849120526,"Points":140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60147","ServerKey":"pl181","X":365,"Y":299},{"Bonus":0,"Continent":"K73","ID":60148,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60148","ServerKey":"pl181","X":376,"Y":705},{"Bonus":0,"Continent":"K52","ID":60149,"Name":"Wioska matipo321","PlayerID":849114450,"Points":113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60149","ServerKey":"pl181","X":274,"Y":580},{"Bonus":0,"Continent":"K36","ID":60150,"Name":"Lord Lord Franek .#190","PlayerID":698420691,"Points":999,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60150","ServerKey":"pl181","X":698,"Y":359},{"Bonus":0,"Continent":"K52","ID":60151,"Name":"Wioska Rommel","PlayerID":698983867,"Points":371,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60151","ServerKey":"pl181","X":260,"Y":516},{"Bonus":0,"Continent":"K62","ID":60152,"Name":"Wioska Krejv95","PlayerID":699554427,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60152","ServerKey":"pl181","X":286,"Y":600},{"Bonus":0,"Continent":"K62","ID":60153,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60153","ServerKey":"pl181","X":295,"Y":630},{"Bonus":0,"Continent":"K42","ID":60154,"Name":"Stopy","PlayerID":849108891,"Points":303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60154","ServerKey":"pl181","X":279,"Y":407},{"Bonus":0,"Continent":"K24","ID":60155,"Name":"125.Stradi","PlayerID":698365960,"Points":1828,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60155","ServerKey":"pl181","X":449,"Y":268},{"Bonus":0,"Continent":"K63","ID":60156,"Name":"Wioska Lodar93","PlayerID":9138661,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60156","ServerKey":"pl181","X":346,"Y":688},{"Bonus":0,"Continent":"K24","ID":60157,"Name":"Wioska barbarzyƄska","PlayerID":699644852,"Points":153,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60157","ServerKey":"pl181","X":450,"Y":268},{"Bonus":0,"Continent":"K74","ID":60159,"Name":"041Szaraki","PlayerID":698620694,"Points":1972,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60159","ServerKey":"pl181","X":476,"Y":736},{"Bonus":0,"Continent":"K42","ID":60160,"Name":"Wioska KamykosXD","PlayerID":9128606,"Points":70,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60160","ServerKey":"pl181","X":272,"Y":426},{"Bonus":0,"Continent":"K75","ID":60161,"Name":"059 - Budowanko!","PlayerID":7540891,"Points":1731,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60161","ServerKey":"pl181","X":518,"Y":735},{"Bonus":3,"Continent":"K74","ID":60162,"Name":"New World","PlayerID":698152377,"Points":1968,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60162","ServerKey":"pl181","X":416,"Y":728},{"Bonus":0,"Continent":"K33","ID":60163,"Name":"111","PlayerID":698384726,"Points":295,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60163","ServerKey":"pl181","X":354,"Y":306},{"Bonus":0,"Continent":"K75","ID":60164,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":479,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60164","ServerKey":"pl181","X":566,"Y":732},{"Bonus":0,"Continent":"K74","ID":60165,"Name":"Wioska rozyczka","PlayerID":849120698,"Points":784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60165","ServerKey":"pl181","X":493,"Y":742},{"Bonus":0,"Continent":"K74","ID":60166,"Name":"Wioska Herkuless","PlayerID":699642954,"Points":887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60166","ServerKey":"pl181","X":413,"Y":725},{"Bonus":0,"Continent":"K74","ID":60167,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60167","ServerKey":"pl181","X":406,"Y":719},{"Bonus":0,"Continent":"K63","ID":60168,"Name":"Wioska Martynka2010","PlayerID":849120865,"Points":66,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60168","ServerKey":"pl181","X":348,"Y":683},{"Bonus":0,"Continent":"K74","ID":60169,"Name":"042KoƄcĂłwka","PlayerID":698620694,"Points":1679,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60169","ServerKey":"pl181","X":466,"Y":741},{"Bonus":0,"Continent":"K57","ID":60170,"Name":"Wioska kamien335","PlayerID":8886999,"Points":54,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60170","ServerKey":"pl181","X":738,"Y":522},{"Bonus":0,"Continent":"K26","ID":60171,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60171","ServerKey":"pl181","X":610,"Y":285},{"Bonus":0,"Continent":"K74","ID":60172,"Name":"Wioska Zachariasz Grundbaum","PlayerID":849096979,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60172","ServerKey":"pl181","X":435,"Y":732},{"Bonus":0,"Continent":"K63","ID":60173,"Name":"Wioska paviks","PlayerID":849119486,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60173","ServerKey":"pl181","X":313,"Y":649},{"Bonus":0,"Continent":"K75","ID":60174,"Name":"Aa4","PlayerID":849097614,"Points":1673,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60174","ServerKey":"pl181","X":589,"Y":715},{"Bonus":0,"Continent":"K67","ID":60175,"Name":"Wioska Knoxpl","PlayerID":849108157,"Points":425,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60175","ServerKey":"pl181","X":705,"Y":617},{"Bonus":0,"Continent":"K66","ID":60177,"Name":"juVe","PlayerID":698167153,"Points":1179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60177","ServerKey":"pl181","X":676,"Y":653},{"Bonus":0,"Continent":"K66","ID":60178,"Name":"119. Lida Aye","PlayerID":8337151,"Points":1186,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60178","ServerKey":"pl181","X":675,"Y":668},{"Bonus":0,"Continent":"K63","ID":60179,"Name":"Wioska piotrus507","PlayerID":3973432,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60179","ServerKey":"pl181","X":353,"Y":692},{"Bonus":0,"Continent":"K74","ID":60180,"Name":"YYY","PlayerID":2293376,"Points":2135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60180","ServerKey":"pl181","X":476,"Y":742},{"Bonus":0,"Continent":"K52","ID":60181,"Name":"Wioska patrykoss93","PlayerID":3428961,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60181","ServerKey":"pl181","X":264,"Y":544},{"Bonus":0,"Continent":"K74","ID":60182,"Name":"znam ostropesta 4","PlayerID":699777372,"Points":755,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60182","ServerKey":"pl181","X":436,"Y":732},{"Bonus":0,"Continent":"K36","ID":60183,"Name":"wilcza wioska","PlayerID":848976720,"Points":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60183","ServerKey":"pl181","X":643,"Y":310},{"Bonus":0,"Continent":"K62","ID":60184,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60184","ServerKey":"pl181","X":298,"Y":629},{"Bonus":0,"Continent":"K47","ID":60185,"Name":"Wioska igrane5000","PlayerID":699655364,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60185","ServerKey":"pl181","X":730,"Y":437},{"Bonus":0,"Continent":"K52","ID":60186,"Name":"090 obrzeĆŒa","PlayerID":699510259,"Points":378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60186","ServerKey":"pl181","X":266,"Y":561},{"Bonus":0,"Continent":"K47","ID":60188,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":1313,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60188","ServerKey":"pl181","X":732,"Y":456},{"Bonus":0,"Continent":"K45","ID":60189,"Name":"Wioska skowron","PlayerID":8831977,"Points":182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60189","ServerKey":"pl181","X":565,"Y":498},{"Bonus":0,"Continent":"K42","ID":60190,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1875,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60190","ServerKey":"pl181","X":277,"Y":407},{"Bonus":0,"Continent":"K52","ID":60191,"Name":"Wioska smagi007","PlayerID":6193337,"Points":887,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60191","ServerKey":"pl181","X":259,"Y":508},{"Bonus":0,"Continent":"K63","ID":60192,"Name":"Wioska tinki","PlayerID":849120855,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60192","ServerKey":"pl181","X":329,"Y":670},{"Bonus":0,"Continent":"K52","ID":60193,"Name":"037. Gloria Victis","PlayerID":848886973,"Points":1348,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60193","ServerKey":"pl181","X":268,"Y":575},{"Bonus":0,"Continent":"K47","ID":60194,"Name":"Wioska kokso420","PlayerID":3734803,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60194","ServerKey":"pl181","X":732,"Y":445},{"Bonus":0,"Continent":"K75","ID":60195,"Name":"Wioska Nowicjusz1","PlayerID":849113063,"Points":64,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60195","ServerKey":"pl181","X":560,"Y":729},{"Bonus":0,"Continent":"K42","ID":60196,"Name":"Wioska Wolin","PlayerID":849100891,"Points":583,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60196","ServerKey":"pl181","X":263,"Y":470},{"Bonus":0,"Continent":"K42","ID":60197,"Name":"[0296]","PlayerID":8630972,"Points":124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60197","ServerKey":"pl181","X":263,"Y":499},{"Bonus":0,"Continent":"K66","ID":60198,"Name":"Wioska tribal766","PlayerID":849116089,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60198","ServerKey":"pl181","X":671,"Y":666},{"Bonus":0,"Continent":"K66","ID":60199,"Name":"#160#","PlayerID":692803,"Points":624,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60199","ServerKey":"pl181","X":667,"Y":678},{"Bonus":0,"Continent":"K33","ID":60200,"Name":"Wioska wuener","PlayerID":8889781,"Points":462,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60200","ServerKey":"pl181","X":360,"Y":311},{"Bonus":0,"Continent":"K57","ID":60201,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60201","ServerKey":"pl181","X":721,"Y":586},{"Bonus":0,"Continent":"K33","ID":60202,"Name":"Wioska thor13","PlayerID":849103113,"Points":398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60202","ServerKey":"pl181","X":322,"Y":349},{"Bonus":0,"Continent":"K42","ID":60203,"Name":"Wioska barbarzyƄska","PlayerID":699213622,"Points":341,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60203","ServerKey":"pl181","X":267,"Y":453},{"Bonus":0,"Continent":"K75","ID":60204,"Name":"Wioska Mr.SoLo","PlayerID":699366937,"Points":578,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60204","ServerKey":"pl181","X":511,"Y":737},{"Bonus":0,"Continent":"K63","ID":60205,"Name":"Wioska Pongo","PlayerID":849116225,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60205","ServerKey":"pl181","X":302,"Y":633},{"Bonus":0,"Continent":"K62","ID":60206,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60206","ServerKey":"pl181","X":283,"Y":604},{"Bonus":0,"Continent":"K26","ID":60207,"Name":"Wioska jekord","PlayerID":849031779,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60207","ServerKey":"pl181","X":609,"Y":284},{"Bonus":0,"Continent":"K36","ID":60208,"Name":"Wioska PiotrBiznes","PlayerID":849105032,"Points":114,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60208","ServerKey":"pl181","X":670,"Y":335},{"Bonus":0,"Continent":"K76","ID":60209,"Name":"Wioska lech3838","PlayerID":6078176,"Points":120,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60209","ServerKey":"pl181","X":610,"Y":708},{"Bonus":0,"Continent":"K24","ID":60210,"Name":"Wioska Impro","PlayerID":699875086,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60210","ServerKey":"pl181","X":484,"Y":262},{"Bonus":0,"Continent":"K75","ID":60211,"Name":"Wioska sebo1303","PlayerID":848949271,"Points":135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60211","ServerKey":"pl181","X":547,"Y":735},{"Bonus":0,"Continent":"K25","ID":60212,"Name":"PóƂnocny Bagdad","PlayerID":8847546,"Points":824,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60212","ServerKey":"pl181","X":594,"Y":287},{"Bonus":0,"Continent":"K25","ID":60213,"Name":"Wioska Dzymek10","PlayerID":2514219,"Points":146,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60213","ServerKey":"pl181","X":543,"Y":274},{"Bonus":0,"Continent":"K75","ID":60214,"Name":"063 - Budowanko!","PlayerID":7540891,"Points":1375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60214","ServerKey":"pl181","X":535,"Y":734},{"Bonus":0,"Continent":"K24","ID":60215,"Name":"Wioska Elendila","PlayerID":699345087,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60215","ServerKey":"pl181","X":459,"Y":265},{"Bonus":0,"Continent":"K74","ID":60216,"Name":"062 - Budowanko!","PlayerID":7540891,"Points":1352,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60216","ServerKey":"pl181","X":468,"Y":738},{"Bonus":0,"Continent":"K75","ID":60217,"Name":"Wioska NajlepszyZiomekWeWsi","PlayerID":699360521,"Points":135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60217","ServerKey":"pl181","X":509,"Y":735},{"Bonus":0,"Continent":"K42","ID":60218,"Name":"49 barbarzyƄska","PlayerID":849018442,"Points":792,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60218","ServerKey":"pl181","X":267,"Y":443},{"Bonus":0,"Continent":"K63","ID":60219,"Name":"Wioska Huayna Capac","PlayerID":848964085,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60219","ServerKey":"pl181","X":339,"Y":678},{"Bonus":0,"Continent":"K66","ID":60220,"Name":"058","PlayerID":699099811,"Points":331,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60220","ServerKey":"pl181","X":694,"Y":638},{"Bonus":0,"Continent":"K24","ID":60221,"Name":"Wioska SmerfĂłw","PlayerID":8239348,"Points":128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60221","ServerKey":"pl181","X":462,"Y":261},{"Bonus":0,"Continent":"K52","ID":60222,"Name":"Wioska Kamileq69","PlayerID":849099785,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60222","ServerKey":"pl181","X":277,"Y":597},{"Bonus":0,"Continent":"K75","ID":60223,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60223","ServerKey":"pl181","X":557,"Y":735},{"Bonus":0,"Continent":"K52","ID":60224,"Name":"Wioska DzikiDzik","PlayerID":699405877,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60224","ServerKey":"pl181","X":275,"Y":568},{"Bonus":0,"Continent":"K67","ID":60225,"Name":"Wioska WillyBilly","PlayerID":849117644,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60225","ServerKey":"pl181","X":715,"Y":603},{"Bonus":0,"Continent":"K47","ID":60226,"Name":"Wioska barbarzyƄska","PlayerID":849095435,"Points":228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60226","ServerKey":"pl181","X":728,"Y":457},{"Bonus":0,"Continent":"K57","ID":60227,"Name":"Autopsja","PlayerID":7313287,"Points":1115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60227","ServerKey":"pl181","X":735,"Y":501},{"Bonus":0,"Continent":"K47","ID":60228,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":1244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60228","ServerKey":"pl181","X":737,"Y":476},{"Bonus":0,"Continent":"K63","ID":60229,"Name":"Wioska akamee","PlayerID":699767482,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60229","ServerKey":"pl181","X":354,"Y":687},{"Bonus":0,"Continent":"K24","ID":60230,"Name":"Wioska barbarzyƄska","PlayerID":699644852,"Points":139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60230","ServerKey":"pl181","X":450,"Y":264},{"Bonus":0,"Continent":"K63","ID":60231,"Name":"Wioska Rejku30","PlayerID":699648975,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60231","ServerKey":"pl181","X":310,"Y":647},{"Bonus":0,"Continent":"K42","ID":60232,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1900,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60232","ServerKey":"pl181","X":274,"Y":411},{"Bonus":0,"Continent":"K33","ID":60233,"Name":"Wioska GrubySponsor","PlayerID":849119078,"Points":141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60233","ServerKey":"pl181","X":327,"Y":331},{"Bonus":0,"Continent":"K67","ID":60234,"Name":"K67 36","PlayerID":698867483,"Points":480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60234","ServerKey":"pl181","X":711,"Y":621},{"Bonus":0,"Continent":"K25","ID":60235,"Name":"Wioska jankes630","PlayerID":3264281,"Points":73,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60235","ServerKey":"pl181","X":594,"Y":284},{"Bonus":0,"Continent":"K62","ID":60236,"Name":"O157","PlayerID":272173,"Points":600,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60236","ServerKey":"pl181","X":294,"Y":631},{"Bonus":0,"Continent":"K75","ID":60238,"Name":"Wioska barbarzyƄska","PlayerID":7590135,"Points":244,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60238","ServerKey":"pl181","X":536,"Y":738},{"Bonus":0,"Continent":"K75","ID":60239,"Name":"Wioska rainyday","PlayerID":7180447,"Points":383,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60239","ServerKey":"pl181","X":565,"Y":729},{"Bonus":0,"Continent":"K47","ID":60240,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60240","ServerKey":"pl181","X":738,"Y":452},{"Bonus":0,"Continent":"K24","ID":60241,"Name":"Wioska LodowyPtyƛ","PlayerID":699870923,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60241","ServerKey":"pl181","X":464,"Y":263},{"Bonus":0,"Continent":"K25","ID":60242,"Name":"PPF-45","PlayerID":1424656,"Points":552,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60242","ServerKey":"pl181","X":546,"Y":261},{"Bonus":1,"Continent":"K33","ID":60243,"Name":"Osada koczownikĂłw","PlayerID":699304554,"Points":279,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60243","ServerKey":"pl181","X":328,"Y":327},{"Bonus":0,"Continent":"K26","ID":60244,"Name":"Wioska Kilmonn","PlayerID":849101656,"Points":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60244","ServerKey":"pl181","X":602,"Y":289},{"Bonus":0,"Continent":"K42","ID":60245,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1928,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60245","ServerKey":"pl181","X":276,"Y":426},{"Bonus":3,"Continent":"K25","ID":60246,"Name":"Osada koczownikĂłw","PlayerID":699146580,"Points":288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60246","ServerKey":"pl181","X":581,"Y":270},{"Bonus":0,"Continent":"K24","ID":60248,"Name":"North 107","PlayerID":849064752,"Points":2216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60248","ServerKey":"pl181","X":487,"Y":257},{"Bonus":0,"Continent":"K62","ID":60249,"Name":"KOIEC NIC NIE ROBIĆ","PlayerID":849110289,"Points":603,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60249","ServerKey":"pl181","X":288,"Y":600},{"Bonus":0,"Continent":"K36","ID":60250,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":1132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60250","ServerKey":"pl181","X":666,"Y":330},{"Bonus":0,"Continent":"K63","ID":60251,"Name":"Wioska kamillo220","PlayerID":698403524,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60251","ServerKey":"pl181","X":326,"Y":668},{"Bonus":0,"Continent":"K33","ID":60252,"Name":"Wioska barbarzyƄska","PlayerID":849017820,"Points":432,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60252","ServerKey":"pl181","X":373,"Y":301},{"Bonus":0,"Continent":"K24","ID":60253,"Name":"Wioska I","PlayerID":699798847,"Points":133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60253","ServerKey":"pl181","X":400,"Y":288},{"Bonus":3,"Continent":"K52","ID":60254,"Name":"C0343","PlayerID":8841266,"Points":652,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60254","ServerKey":"pl181","X":259,"Y":532},{"Bonus":0,"Continent":"K36","ID":60255,"Name":"neo328","PlayerID":7114815,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60255","ServerKey":"pl181","X":638,"Y":308},{"Bonus":0,"Continent":"K66","ID":60257,"Name":"Wioska miki0412","PlayerID":9219778,"Points":166,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60257","ServerKey":"pl181","X":676,"Y":663},{"Bonus":0,"Continent":"K57","ID":60258,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60258","ServerKey":"pl181","X":733,"Y":520},{"Bonus":0,"Continent":"K52","ID":60259,"Name":"C0348","PlayerID":8841266,"Points":453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60259","ServerKey":"pl181","X":262,"Y":520},{"Bonus":0,"Continent":"K74","ID":60260,"Name":"Wioska Jack Daniels","PlayerID":849090289,"Points":126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60260","ServerKey":"pl181","X":429,"Y":731},{"Bonus":0,"Continent":"K73","ID":60261,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60261","ServerKey":"pl181","X":386,"Y":716},{"Bonus":0,"Continent":"K62","ID":60263,"Name":"Wioska stopercool","PlayerID":8366849,"Points":139,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60263","ServerKey":"pl181","X":286,"Y":617},{"Bonus":0,"Continent":"K67","ID":60264,"Name":"K67 35","PlayerID":698867483,"Points":653,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60264","ServerKey":"pl181","X":704,"Y":615},{"Bonus":0,"Continent":"K75","ID":60265,"Name":"Wioska Hwastu","PlayerID":849004338,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60265","ServerKey":"pl181","X":569,"Y":732},{"Bonus":0,"Continent":"K36","ID":60266,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":762,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60266","ServerKey":"pl181","X":670,"Y":340},{"Bonus":0,"Continent":"K73","ID":60267,"Name":"Polska","PlayerID":849099425,"Points":678,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60267","ServerKey":"pl181","X":366,"Y":704},{"Bonus":0,"Continent":"K42","ID":60268,"Name":"Wioska VaniaMay","PlayerID":849109701,"Points":382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60268","ServerKey":"pl181","X":262,"Y":495},{"Bonus":0,"Continent":"K25","ID":60269,"Name":"TWIERDZA DAMIK","PlayerID":6143689,"Points":474,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60269","ServerKey":"pl181","X":579,"Y":274},{"Bonus":0,"Continent":"K25","ID":60270,"Name":"Wioska Ludwik 3","PlayerID":1757722,"Points":175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60270","ServerKey":"pl181","X":538,"Y":269},{"Bonus":0,"Continent":"K52","ID":60271,"Name":"Wioska barbarzyƄska","PlayerID":6892517,"Points":267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60271","ServerKey":"pl181","X":266,"Y":565},{"Bonus":0,"Continent":"K66","ID":60272,"Name":"Wioska leon1214","PlayerID":849109152,"Points":111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60272","ServerKey":"pl181","X":696,"Y":625},{"Bonus":0,"Continent":"K42","ID":60273,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60273","ServerKey":"pl181","X":280,"Y":403},{"Bonus":0,"Continent":"K33","ID":60274,"Name":"Wioska Michal1614","PlayerID":849120966,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60274","ServerKey":"pl181","X":338,"Y":321},{"Bonus":0,"Continent":"K37","ID":60275,"Name":"mc02","PlayerID":848939131,"Points":336,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60275","ServerKey":"pl181","X":708,"Y":387},{"Bonus":0,"Continent":"K25","ID":60276,"Name":"Wioska De Integro","PlayerID":7431759,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60276","ServerKey":"pl181","X":593,"Y":280},{"Bonus":0,"Continent":"K74","ID":60277,"Name":"061 - Budowanko!","PlayerID":7540891,"Points":1358,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60277","ServerKey":"pl181","X":479,"Y":737},{"Bonus":0,"Continent":"K42","ID":60278,"Name":"Wioska Danielo3","PlayerID":849092875,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60278","ServerKey":"pl181","X":265,"Y":461},{"Bonus":0,"Continent":"K63","ID":60279,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":147,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60279","ServerKey":"pl181","X":301,"Y":638},{"Bonus":0,"Continent":"K63","ID":60280,"Name":"Wioska Rychu0890","PlayerID":849024208,"Points":517,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60280","ServerKey":"pl181","X":328,"Y":659},{"Bonus":0,"Continent":"K75","ID":60281,"Name":"Wioska Mizerkaa","PlayerID":849001388,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60281","ServerKey":"pl181","X":571,"Y":731},{"Bonus":0,"Continent":"K42","ID":60282,"Name":"50 barbarzyƄska","PlayerID":849018442,"Points":791,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60282","ServerKey":"pl181","X":276,"Y":437},{"Bonus":0,"Continent":"K47","ID":60283,"Name":"Wioska adrianh3","PlayerID":2083273,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60283","ServerKey":"pl181","X":737,"Y":480},{"Bonus":0,"Continent":"K66","ID":60284,"Name":"Wioska Lord patban177","PlayerID":849109232,"Points":448,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60284","ServerKey":"pl181","X":697,"Y":630},{"Bonus":0,"Continent":"K74","ID":60285,"Name":"034","PlayerID":8268010,"Points":260,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60285","ServerKey":"pl181","X":442,"Y":732},{"Bonus":0,"Continent":"K33","ID":60286,"Name":"-001- Osada","PlayerID":699406101,"Points":815,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60286","ServerKey":"pl181","X":337,"Y":319},{"Bonus":0,"Continent":"K74","ID":60287,"Name":"Wioska AP1997","PlayerID":848973968,"Points":249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60287","ServerKey":"pl181","X":419,"Y":730},{"Bonus":0,"Continent":"K42","ID":60288,"Name":"51 barbarzyƄska","PlayerID":849018442,"Points":1032,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60288","ServerKey":"pl181","X":265,"Y":443},{"Bonus":0,"Continent":"K74","ID":60289,"Name":"Wioska EpsHunT","PlayerID":849109601,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60289","ServerKey":"pl181","X":496,"Y":741},{"Bonus":0,"Continent":"K75","ID":60290,"Name":"067 - Budowanko!","PlayerID":7540891,"Points":926,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60290","ServerKey":"pl181","X":533,"Y":732},{"Bonus":0,"Continent":"K25","ID":60291,"Name":"Wioska Timb3r","PlayerID":698298333,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60291","ServerKey":"pl181","X":580,"Y":270},{"Bonus":0,"Continent":"K42","ID":60292,"Name":"Wioska Anko Itosu","PlayerID":699855469,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60292","ServerKey":"pl181","X":278,"Y":429},{"Bonus":0,"Continent":"K75","ID":60293,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60293","ServerKey":"pl181","X":585,"Y":724},{"Bonus":0,"Continent":"K24","ID":60294,"Name":"Wioska kozielniak","PlayerID":849118827,"Points":141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60294","ServerKey":"pl181","X":488,"Y":266},{"Bonus":0,"Continent":"K66","ID":60295,"Name":"#170#","PlayerID":692803,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60295","ServerKey":"pl181","X":639,"Y":693},{"Bonus":0,"Continent":"K25","ID":60296,"Name":"Wioska Terror x Miniqo","PlayerID":9154293,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60296","ServerKey":"pl181","X":542,"Y":260},{"Bonus":0,"Continent":"K24","ID":60297,"Name":"Wioska Kwiatuu","PlayerID":699264947,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60297","ServerKey":"pl181","X":457,"Y":266},{"Bonus":0,"Continent":"K57","ID":60298,"Name":"Wioska barbarzyƄska","PlayerID":17714,"Points":165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60298","ServerKey":"pl181","X":737,"Y":540},{"Bonus":0,"Continent":"K52","ID":60299,"Name":"Wioska wtkc","PlayerID":148405,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60299","ServerKey":"pl181","X":259,"Y":512},{"Bonus":0,"Continent":"K67","ID":60300,"Name":"Wioska marekttt","PlayerID":848893520,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60300","ServerKey":"pl181","X":703,"Y":636},{"Bonus":0,"Continent":"K63","ID":60301,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60301","ServerKey":"pl181","X":329,"Y":666},{"Bonus":0,"Continent":"K62","ID":60302,"Name":"StarogrĂłd","PlayerID":849063605,"Points":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60302","ServerKey":"pl181","X":296,"Y":629},{"Bonus":0,"Continent":"K24","ID":60303,"Name":"071KP","PlayerID":849063849,"Points":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60303","ServerKey":"pl181","X":471,"Y":260},{"Bonus":0,"Continent":"K62","ID":60304,"Name":"Wioska Kulfix","PlayerID":849114040,"Points":521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60304","ServerKey":"pl181","X":279,"Y":605},{"Bonus":0,"Continent":"K62","ID":60305,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":82,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60305","ServerKey":"pl181","X":290,"Y":603},{"Bonus":0,"Continent":"K63","ID":60307,"Name":"Wioska Nicosta","PlayerID":8984336,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60307","ServerKey":"pl181","X":309,"Y":636},{"Bonus":0,"Continent":"K52","ID":60308,"Name":"Wioska barbarzyƄska","PlayerID":699016994,"Points":245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60308","ServerKey":"pl181","X":279,"Y":582},{"Bonus":5,"Continent":"K74","ID":60309,"Name":"043 Ave WHY","PlayerID":698620694,"Points":1497,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60309","ServerKey":"pl181","X":487,"Y":733},{"Bonus":0,"Continent":"K25","ID":60311,"Name":"Wioska ARENTHAI","PlayerID":849121036,"Points":70,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60311","ServerKey":"pl181","X":564,"Y":266},{"Bonus":0,"Continent":"K24","ID":60312,"Name":"069KP","PlayerID":849063849,"Points":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60312","ServerKey":"pl181","X":469,"Y":266},{"Bonus":0,"Continent":"K62","ID":60313,"Name":"Wioska Saladyn Pustyny","PlayerID":8043286,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60313","ServerKey":"pl181","X":289,"Y":613},{"Bonus":0,"Continent":"K25","ID":60315,"Name":"North 106","PlayerID":849064752,"Points":2097,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60315","ServerKey":"pl181","X":522,"Y":266},{"Bonus":0,"Continent":"K33","ID":60316,"Name":"Twierdza","PlayerID":699795301,"Points":1557,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60316","ServerKey":"pl181","X":319,"Y":341},{"Bonus":0,"Continent":"K67","ID":60317,"Name":"WschĂłd 006","PlayerID":698562644,"Points":289,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60317","ServerKey":"pl181","X":705,"Y":624},{"Bonus":0,"Continent":"K42","ID":60318,"Name":"Wioska Ppfarmer","PlayerID":849121337,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60318","ServerKey":"pl181","X":287,"Y":404},{"Bonus":0,"Continent":"K36","ID":60319,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":977,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60319","ServerKey":"pl181","X":686,"Y":345},{"Bonus":0,"Continent":"K66","ID":60321,"Name":"K66","PlayerID":698867483,"Points":451,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60321","ServerKey":"pl181","X":697,"Y":627},{"Bonus":0,"Continent":"K66","ID":60322,"Name":"Wioska sajmon117","PlayerID":2727535,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60322","ServerKey":"pl181","X":642,"Y":685},{"Bonus":0,"Continent":"K63","ID":60323,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60323","ServerKey":"pl181","X":350,"Y":686},{"Bonus":0,"Continent":"K36","ID":60324,"Name":"Wioska Patryk95","PlayerID":849114664,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60324","ServerKey":"pl181","X":688,"Y":358},{"Bonus":0,"Continent":"K24","ID":60325,"Name":"North 112","PlayerID":849064752,"Points":1668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60325","ServerKey":"pl181","X":492,"Y":260},{"Bonus":0,"Continent":"K54","ID":60326,"Name":"Bexaaa","PlayerID":698698087,"Points":1129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60326","ServerKey":"pl181","X":455,"Y":569},{"Bonus":0,"Continent":"K37","ID":60328,"Name":"Wioska Jar0o","PlayerID":1610267,"Points":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60328","ServerKey":"pl181","X":703,"Y":367},{"Bonus":0,"Continent":"K52","ID":60330,"Name":"038. Gloria Victis","PlayerID":848886973,"Points":1129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60330","ServerKey":"pl181","X":278,"Y":575},{"Bonus":0,"Continent":"K24","ID":60331,"Name":"Wioska Lord Dan 1","PlayerID":849121331,"Points":567,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60331","ServerKey":"pl181","X":403,"Y":287},{"Bonus":0,"Continent":"K63","ID":60332,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60332","ServerKey":"pl181","X":329,"Y":672},{"Bonus":0,"Continent":"K24","ID":60333,"Name":"Wioska aghjs5","PlayerID":849113556,"Points":269,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60333","ServerKey":"pl181","X":419,"Y":278},{"Bonus":0,"Continent":"K25","ID":60334,"Name":"North 108","PlayerID":849064752,"Points":2190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60334","ServerKey":"pl181","X":511,"Y":261},{"Bonus":0,"Continent":"K33","ID":60335,"Name":"Wioska PiotrekPazzi","PlayerID":848917127,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60335","ServerKey":"pl181","X":336,"Y":328},{"Bonus":0,"Continent":"K33","ID":60336,"Name":"Wioska37","PlayerID":699711926,"Points":1081,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60336","ServerKey":"pl181","X":325,"Y":342},{"Bonus":0,"Continent":"K33","ID":60338,"Name":"Lecymy DUR","PlayerID":6169408,"Points":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60338","ServerKey":"pl181","X":340,"Y":329},{"Bonus":6,"Continent":"K73","ID":60339,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":407,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60339","ServerKey":"pl181","X":368,"Y":702},{"Bonus":0,"Continent":"K63","ID":60340,"Name":"Wioska OcHnIK","PlayerID":40666,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60340","ServerKey":"pl181","X":314,"Y":647},{"Bonus":0,"Continent":"K52","ID":60341,"Name":"bla bla 2","PlayerID":849091084,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60341","ServerKey":"pl181","X":256,"Y":504},{"Bonus":0,"Continent":"K47","ID":60342,"Name":"Wioska Księga przyrodniczo","PlayerID":7495050,"Points":102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60342","ServerKey":"pl181","X":730,"Y":421},{"Bonus":0,"Continent":"K25","ID":60343,"Name":"=SAwars=08=","PlayerID":849106420,"Points":378,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60343","ServerKey":"pl181","X":596,"Y":276},{"Bonus":0,"Continent":"K42","ID":60344,"Name":"Wioska Hilwoz","PlayerID":671516,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60344","ServerKey":"pl181","X":256,"Y":497},{"Bonus":0,"Continent":"K75","ID":60345,"Name":"Wioska barbarzyƄska","PlayerID":698620694,"Points":1157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60345","ServerKey":"pl181","X":505,"Y":734},{"Bonus":2,"Continent":"K24","ID":60346,"Name":"Osada koczownikĂłw","PlayerID":699191449,"Points":281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60346","ServerKey":"pl181","X":461,"Y":264},{"Bonus":0,"Continent":"K36","ID":60347,"Name":"Wioska afibatin","PlayerID":6326215,"Points":58,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60347","ServerKey":"pl181","X":664,"Y":320},{"Bonus":0,"Continent":"K63","ID":60348,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60348","ServerKey":"pl181","X":339,"Y":681},{"Bonus":7,"Continent":"K26","ID":60350,"Name":"Osada koczownikĂłw","PlayerID":699146580,"Points":148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60350","ServerKey":"pl181","X":603,"Y":289},{"Bonus":0,"Continent":"K75","ID":60351,"Name":"Wioska KATOZAUR","PlayerID":699156456,"Points":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60351","ServerKey":"pl181","X":520,"Y":738},{"Bonus":0,"Continent":"K36","ID":60352,"Name":"TOLCIA 5","PlayerID":699868739,"Points":296,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60352","ServerKey":"pl181","X":640,"Y":314},{"Bonus":0,"Continent":"K52","ID":60353,"Name":"Wioska ekopark","PlayerID":848993903,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60353","ServerKey":"pl181","X":270,"Y":561},{"Bonus":0,"Continent":"K33","ID":60354,"Name":"Wioska barbarzyƄska","PlayerID":699304554,"Points":185,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60354","ServerKey":"pl181","X":331,"Y":328},{"Bonus":0,"Continent":"K33","ID":60355,"Name":"Wioska Habibi Malik","PlayerID":849090243,"Points":85,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60355","ServerKey":"pl181","X":301,"Y":369},{"Bonus":0,"Continent":"K74","ID":60356,"Name":"New World","PlayerID":698152377,"Points":1715,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60356","ServerKey":"pl181","X":428,"Y":723},{"Bonus":0,"Continent":"K36","ID":60357,"Name":"Wioska golem6","PlayerID":1085802,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60357","ServerKey":"pl181","X":654,"Y":316},{"Bonus":0,"Continent":"K47","ID":60359,"Name":"224 |","PlayerID":8000875,"Points":94,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60359","ServerKey":"pl181","X":722,"Y":404},{"Bonus":0,"Continent":"K36","ID":60360,"Name":"Wioska xLyn","PlayerID":849121483,"Points":599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60360","ServerKey":"pl181","X":678,"Y":338},{"Bonus":0,"Continent":"K42","ID":60361,"Name":"Wioska cwaniaczek25","PlayerID":848930996,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60361","ServerKey":"pl181","X":273,"Y":421},{"Bonus":0,"Continent":"K36","ID":60362,"Name":"Gliwice","PlayerID":848932879,"Points":361,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60362","ServerKey":"pl181","X":679,"Y":346},{"Bonus":0,"Continent":"K52","ID":60363,"Name":"Wioska mani4884","PlayerID":848923646,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60363","ServerKey":"pl181","X":264,"Y":529},{"Bonus":0,"Continent":"K42","ID":60364,"Name":"52 barbarzyƄska","PlayerID":849018442,"Points":865,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60364","ServerKey":"pl181","X":267,"Y":429},{"Bonus":0,"Continent":"K35","ID":60365,"Name":"Barbakan","PlayerID":7803631,"Points":1027,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60365","ServerKey":"pl181","X":509,"Y":339},{"Bonus":0,"Continent":"K52","ID":60366,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60366","ServerKey":"pl181","X":260,"Y":536},{"Bonus":0,"Continent":"K24","ID":60367,"Name":"Wioska huzar28","PlayerID":849121389,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60367","ServerKey":"pl181","X":425,"Y":273},{"Bonus":1,"Continent":"K26","ID":60368,"Name":"Napewno to nie jest off","PlayerID":848912265,"Points":354,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60368","ServerKey":"pl181","X":637,"Y":298},{"Bonus":0,"Continent":"K47","ID":60369,"Name":"Wioska moskittt","PlayerID":8204028,"Points":307,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60369","ServerKey":"pl181","X":738,"Y":476},{"Bonus":0,"Continent":"K32","ID":60370,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60370","ServerKey":"pl181","X":285,"Y":392},{"Bonus":0,"Continent":"K36","ID":60371,"Name":"FARMA nie przejmowac","PlayerID":699492120,"Points":168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60371","ServerKey":"pl181","X":641,"Y":310},{"Bonus":0,"Continent":"K57","ID":60372,"Name":"Wioska Feruell","PlayerID":699825977,"Points":133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60372","ServerKey":"pl181","X":738,"Y":530},{"Bonus":0,"Continent":"K24","ID":60373,"Name":"KiszyniĂłw","PlayerID":699588526,"Points":460,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60373","ServerKey":"pl181","X":406,"Y":278},{"Bonus":0,"Continent":"K67","ID":60374,"Name":"Wioska tomek-gt","PlayerID":699867390,"Points":435,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60374","ServerKey":"pl181","X":721,"Y":603},{"Bonus":0,"Continent":"K42","ID":60375,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1390,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60375","ServerKey":"pl181","X":270,"Y":417},{"Bonus":0,"Continent":"K36","ID":60376,"Name":"Wioska Maniek28a","PlayerID":2942206,"Points":721,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60376","ServerKey":"pl181","X":649,"Y":309},{"Bonus":0,"Continent":"K57","ID":60377,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60377","ServerKey":"pl181","X":718,"Y":583},{"Bonus":0,"Continent":"K46","ID":60378,"Name":"Wioska faraon1981","PlayerID":849006011,"Points":453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60378","ServerKey":"pl181","X":642,"Y":477},{"Bonus":0,"Continent":"K52","ID":60379,"Name":"Na SsSskraju","PlayerID":1536625,"Points":256,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60379","ServerKey":"pl181","X":270,"Y":571},{"Bonus":0,"Continent":"K32","ID":60380,"Name":"Wioska ProCzacha","PlayerID":849099660,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60380","ServerKey":"pl181","X":299,"Y":378},{"Bonus":0,"Continent":"K74","ID":60381,"Name":"New World","PlayerID":698152377,"Points":1373,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60381","ServerKey":"pl181","X":414,"Y":719},{"Bonus":0,"Continent":"K25","ID":60382,"Name":"Wioska mikos","PlayerID":849109072,"Points":291,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60382","ServerKey":"pl181","X":590,"Y":277},{"Bonus":0,"Continent":"K52","ID":60383,"Name":"WygwizdĂłw","PlayerID":849096458,"Points":706,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60383","ServerKey":"pl181","X":279,"Y":593},{"Bonus":0,"Continent":"K52","ID":60384,"Name":"Wioska RYSIO E46","PlayerID":699812828,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60384","ServerKey":"pl181","X":264,"Y":509},{"Bonus":0,"Continent":"K47","ID":60385,"Name":"Wioska barbarzyƄska","PlayerID":699574408,"Points":521,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60385","ServerKey":"pl181","X":735,"Y":486},{"Bonus":0,"Continent":"K74","ID":60387,"Name":"Wioska barbarzyƄska","PlayerID":698620694,"Points":1179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60387","ServerKey":"pl181","X":486,"Y":742},{"Bonus":0,"Continent":"K63","ID":60388,"Name":"Wioska justyna1234","PlayerID":849103595,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60388","ServerKey":"pl181","X":366,"Y":665},{"Bonus":0,"Continent":"K23","ID":60389,"Name":"246","PlayerID":7271812,"Points":278,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60389","ServerKey":"pl181","X":366,"Y":298},{"Bonus":0,"Continent":"K42","ID":60390,"Name":"Wioska ten ktĂłry kroczy","PlayerID":1794060,"Points":121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60390","ServerKey":"pl181","X":268,"Y":467},{"Bonus":0,"Continent":"K57","ID":60391,"Name":"WschĂłd 007","PlayerID":698562644,"Points":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60391","ServerKey":"pl181","X":714,"Y":597},{"Bonus":0,"Continent":"K47","ID":60392,"Name":"Wioska barca35fcb","PlayerID":849118043,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60392","ServerKey":"pl181","X":739,"Y":489},{"Bonus":0,"Continent":"K57","ID":60393,"Name":"Wioska barbarzyƄska","PlayerID":8323711,"Points":122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60393","ServerKey":"pl181","X":712,"Y":598},{"Bonus":0,"Continent":"K66","ID":60394,"Name":"Wioska Dziobson266","PlayerID":699617524,"Points":203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60394","ServerKey":"pl181","X":683,"Y":651},{"Bonus":0,"Continent":"K24","ID":60395,"Name":"Wioska barbarzyƄska","PlayerID":849038597,"Points":801,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60395","ServerKey":"pl181","X":422,"Y":277},{"Bonus":0,"Continent":"K33","ID":60396,"Name":"Wioska marart2","PlayerID":699380730,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60396","ServerKey":"pl181","X":320,"Y":341},{"Bonus":0,"Continent":"K24","ID":60397,"Name":"GĂłra 3","PlayerID":849096310,"Points":345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60397","ServerKey":"pl181","X":440,"Y":269},{"Bonus":0,"Continent":"K52","ID":60398,"Name":"Wioska Sir Wiking","PlayerID":8790027,"Points":109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60398","ServerKey":"pl181","X":269,"Y":543},{"Bonus":0,"Continent":"K37","ID":60399,"Name":"Wioska rewox","PlayerID":849119017,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60399","ServerKey":"pl181","X":701,"Y":361},{"Bonus":0,"Continent":"K26","ID":60400,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60400","ServerKey":"pl181","X":603,"Y":284},{"Bonus":4,"Continent":"K25","ID":60401,"Name":"PPF-46","PlayerID":1424656,"Points":339,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60401","ServerKey":"pl181","X":543,"Y":270},{"Bonus":0,"Continent":"K66","ID":60402,"Name":"Wioska Sir NoToKredki","PlayerID":699560963,"Points":56,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60402","ServerKey":"pl181","X":643,"Y":693},{"Bonus":0,"Continent":"K47","ID":60403,"Name":"Wioska owen10","PlayerID":366938,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60403","ServerKey":"pl181","X":737,"Y":483},{"Bonus":0,"Continent":"K62","ID":60404,"Name":"Wioska aegalionkak","PlayerID":848912151,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60404","ServerKey":"pl181","X":291,"Y":607},{"Bonus":0,"Continent":"K33","ID":60405,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":1453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60405","ServerKey":"pl181","X":363,"Y":311},{"Bonus":0,"Continent":"K25","ID":60406,"Name":"Wioska gis1969b","PlayerID":7096208,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60406","ServerKey":"pl181","X":507,"Y":258},{"Bonus":0,"Continent":"K66","ID":60407,"Name":"Wioska tomas289","PlayerID":849099255,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60407","ServerKey":"pl181","X":659,"Y":682},{"Bonus":0,"Continent":"K76","ID":60408,"Name":"#164#","PlayerID":692803,"Points":388,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60408","ServerKey":"pl181","X":641,"Y":700},{"Bonus":0,"Continent":"K57","ID":60410,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":359,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60410","ServerKey":"pl181","X":734,"Y":548},{"Bonus":0,"Continent":"K52","ID":60411,"Name":"Wioska Angelina2013","PlayerID":849097729,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60411","ServerKey":"pl181","X":266,"Y":535},{"Bonus":0,"Continent":"K57","ID":60412,"Name":"Wioska ivanov66","PlayerID":2559569,"Points":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60412","ServerKey":"pl181","X":739,"Y":532},{"Bonus":0,"Continent":"K75","ID":60414,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":319,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60414","ServerKey":"pl181","X":553,"Y":736},{"Bonus":0,"Continent":"K52","ID":60415,"Name":"Wioska grzeg","PlayerID":699826312,"Points":387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60415","ServerKey":"pl181","X":277,"Y":580},{"Bonus":0,"Continent":"K33","ID":60416,"Name":"Wioska34","PlayerID":699711926,"Points":1297,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60416","ServerKey":"pl181","X":329,"Y":340},{"Bonus":0,"Continent":"K36","ID":60417,"Name":"Wioska TheZeNiT","PlayerID":849009945,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60417","ServerKey":"pl181","X":697,"Y":360},{"Bonus":0,"Continent":"K36","ID":60419,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60419","ServerKey":"pl181","X":636,"Y":306},{"Bonus":0,"Continent":"K57","ID":60420,"Name":"Wioska Khorstes","PlayerID":8709940,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60420","ServerKey":"pl181","X":722,"Y":586},{"Bonus":0,"Continent":"K47","ID":60421,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":424,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60421","ServerKey":"pl181","X":742,"Y":468},{"Bonus":3,"Continent":"K73","ID":60422,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60422","ServerKey":"pl181","X":391,"Y":708},{"Bonus":0,"Continent":"K25","ID":60423,"Name":"Wioska drzyzga123","PlayerID":849121725,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60423","ServerKey":"pl181","X":517,"Y":257},{"Bonus":0,"Continent":"K63","ID":60424,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60424","ServerKey":"pl181","X":310,"Y":653},{"Bonus":0,"Continent":"K26","ID":60425,"Name":"Wioska -umino-","PlayerID":8662264,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60425","ServerKey":"pl181","X":626,"Y":293},{"Bonus":0,"Continent":"K57","ID":60426,"Name":"Wioska - V -","PlayerID":9153430,"Points":241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60426","ServerKey":"pl181","X":726,"Y":581},{"Bonus":0,"Continent":"K32","ID":60427,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1072,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60427","ServerKey":"pl181","X":284,"Y":398},{"Bonus":0,"Continent":"K74","ID":60429,"Name":"Wioska jaktoon","PlayerID":848997058,"Points":78,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60429","ServerKey":"pl181","X":475,"Y":743},{"Bonus":0,"Continent":"K66","ID":60430,"Name":"060","PlayerID":699099811,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60430","ServerKey":"pl181","X":681,"Y":656},{"Bonus":0,"Continent":"K63","ID":60431,"Name":"Wioska METALCORE","PlayerID":849110644,"Points":121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60431","ServerKey":"pl181","X":311,"Y":637},{"Bonus":0,"Continent":"K36","ID":60432,"Name":"Wioska ManchesterKing","PlayerID":849002486,"Points":79,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60432","ServerKey":"pl181","X":651,"Y":309},{"Bonus":0,"Continent":"K57","ID":60433,"Name":"Wioska Tomus 01011973","PlayerID":849051363,"Points":337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60433","ServerKey":"pl181","X":729,"Y":550},{"Bonus":0,"Continent":"K47","ID":60434,"Name":"Mat05usz","PlayerID":849088515,"Points":1700,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60434","ServerKey":"pl181","X":733,"Y":438},{"Bonus":0,"Continent":"K25","ID":60435,"Name":"Wioska robotykjakinny","PlayerID":849121746,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60435","ServerKey":"pl181","X":561,"Y":275},{"Bonus":0,"Continent":"K37","ID":60436,"Name":"_001_ Wioska barbarzyƄska","PlayerID":849095068,"Points":853,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60436","ServerKey":"pl181","X":708,"Y":388},{"Bonus":0,"Continent":"K37","ID":60437,"Name":"Wioska muchaPG","PlayerID":698866770,"Points":495,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60437","ServerKey":"pl181","X":706,"Y":369},{"Bonus":0,"Continent":"K57","ID":60438,"Name":"Wioska 012","PlayerID":2999957,"Points":1050,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60438","ServerKey":"pl181","X":743,"Y":510},{"Bonus":0,"Continent":"K25","ID":60440,"Name":"Wioska Deadshot","PlayerID":921888,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60440","ServerKey":"pl181","X":551,"Y":270},{"Bonus":0,"Continent":"K36","ID":60441,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60441","ServerKey":"pl181","X":648,"Y":315},{"Bonus":0,"Continent":"K24","ID":60442,"Name":"Wioska *Kaziu*","PlayerID":848966404,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60442","ServerKey":"pl181","X":462,"Y":260},{"Bonus":0,"Continent":"K26","ID":60443,"Name":"Wioska Zaba12","PlayerID":699760696,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60443","ServerKey":"pl181","X":601,"Y":280},{"Bonus":0,"Continent":"K66","ID":60444,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":169,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60444","ServerKey":"pl181","X":643,"Y":685},{"Bonus":0,"Continent":"K26","ID":60445,"Name":"Wioska Chubi","PlayerID":8290773,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60445","ServerKey":"pl181","X":638,"Y":299},{"Bonus":0,"Continent":"K52","ID":60446,"Name":"WygwizdĂłwek","PlayerID":849096458,"Points":219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60446","ServerKey":"pl181","X":277,"Y":598},{"Bonus":8,"Continent":"K42","ID":60447,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60447","ServerKey":"pl181","X":274,"Y":423},{"Bonus":0,"Continent":"K47","ID":60448,"Name":"Wioska floraI","PlayerID":566379,"Points":252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60448","ServerKey":"pl181","X":740,"Y":468},{"Bonus":0,"Continent":"K76","ID":60449,"Name":"Aa6","PlayerID":849097614,"Points":1374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60449","ServerKey":"pl181","X":603,"Y":721},{"Bonus":0,"Continent":"K75","ID":60450,"Name":"Wioska tyskie323","PlayerID":849093724,"Points":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60450","ServerKey":"pl181","X":501,"Y":733},{"Bonus":0,"Continent":"K76","ID":60451,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60451","ServerKey":"pl181","X":609,"Y":719},{"Bonus":0,"Continent":"K25","ID":60452,"Name":"Wioska Abazur","PlayerID":849028040,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60452","ServerKey":"pl181","X":596,"Y":275},{"Bonus":0,"Continent":"K62","ID":60453,"Name":"Vivek","PlayerID":849114603,"Points":222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60453","ServerKey":"pl181","X":290,"Y":617},{"Bonus":0,"Continent":"K63","ID":60454,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60454","ServerKey":"pl181","X":327,"Y":664},{"Bonus":0,"Continent":"K75","ID":60455,"Name":"Wioska xFacHoWieCx","PlayerID":9073704,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60455","ServerKey":"pl181","X":597,"Y":713},{"Bonus":0,"Continent":"K32","ID":60456,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":723,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60456","ServerKey":"pl181","X":287,"Y":396},{"Bonus":0,"Continent":"K42","ID":60457,"Name":"Wioska","PlayerID":1034117,"Points":357,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60457","ServerKey":"pl181","X":256,"Y":495},{"Bonus":0,"Continent":"K63","ID":60458,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":76,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60458","ServerKey":"pl181","X":357,"Y":684},{"Bonus":0,"Continent":"K62","ID":60459,"Name":"Wioska MarcinMazury 1","PlayerID":849081641,"Points":290,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60459","ServerKey":"pl181","X":294,"Y":605},{"Bonus":0,"Continent":"K66","ID":60460,"Name":"Sony 911","PlayerID":1415009,"Points":581,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60460","ServerKey":"pl181","X":689,"Y":652},{"Bonus":0,"Continent":"K36","ID":60461,"Name":"Polandia","PlayerID":849121570,"Points":240,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60461","ServerKey":"pl181","X":644,"Y":310},{"Bonus":0,"Continent":"K75","ID":60462,"Name":"Wioska barbarzyƄska","PlayerID":849098628,"Points":201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60462","ServerKey":"pl181","X":579,"Y":725},{"Bonus":0,"Continent":"K24","ID":60463,"Name":"Wioska mati997","PlayerID":849121835,"Points":438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60463","ServerKey":"pl181","X":423,"Y":269},{"Bonus":0,"Continent":"K63","ID":60464,"Name":"Wioska solidna","PlayerID":9098296,"Points":182,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60464","ServerKey":"pl181","X":310,"Y":643},{"Bonus":0,"Continent":"K57","ID":60466,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":400,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60466","ServerKey":"pl181","X":731,"Y":578},{"Bonus":8,"Continent":"K47","ID":60467,"Name":"Osada koczownikĂłw","PlayerID":699524891,"Points":417,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60467","ServerKey":"pl181","X":740,"Y":485},{"Bonus":0,"Continent":"K52","ID":60468,"Name":"Wioska Yomikuri","PlayerID":849108148,"Points":203,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60468","ServerKey":"pl181","X":264,"Y":531},{"Bonus":0,"Continent":"K75","ID":60469,"Name":"065 - Budowanko!","PlayerID":7540891,"Points":1008,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60469","ServerKey":"pl181","X":502,"Y":745},{"Bonus":0,"Continent":"K32","ID":60470,"Name":"Wioska Danka Ch","PlayerID":7605446,"Points":506,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60470","ServerKey":"pl181","X":292,"Y":388},{"Bonus":0,"Continent":"K73","ID":60471,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":274,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60471","ServerKey":"pl181","X":381,"Y":704},{"Bonus":0,"Continent":"K34","ID":60472,"Name":"Wioska Wysypisko Ć»ycia","PlayerID":698147969,"Points":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60472","ServerKey":"pl181","X":403,"Y":321},{"Bonus":0,"Continent":"K75","ID":60473,"Name":"Wioska barbarzyƄska","PlayerID":849078942,"Points":258,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60473","ServerKey":"pl181","X":542,"Y":737},{"Bonus":0,"Continent":"K33","ID":60475,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60475","ServerKey":"pl181","X":320,"Y":335},{"Bonus":7,"Continent":"K47","ID":60476,"Name":"032 Wioska","PlayerID":699671454,"Points":529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60476","ServerKey":"pl181","X":736,"Y":455},{"Bonus":0,"Continent":"K37","ID":60477,"Name":"Wioska trend","PlayerID":849118806,"Points":338,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60477","ServerKey":"pl181","X":710,"Y":375},{"Bonus":0,"Continent":"K63","ID":60478,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":95,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60478","ServerKey":"pl181","X":342,"Y":675},{"Bonus":0,"Continent":"K67","ID":60479,"Name":"Wioska yaruciak1","PlayerID":699346267,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60479","ServerKey":"pl181","X":704,"Y":617},{"Bonus":0,"Continent":"K75","ID":60480,"Name":"077 - Budowanko!","PlayerID":7540891,"Points":314,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60480","ServerKey":"pl181","X":519,"Y":742},{"Bonus":0,"Continent":"K42","ID":60481,"Name":"Wioska Malfoja","PlayerID":849121811,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60481","ServerKey":"pl181","X":261,"Y":458},{"Bonus":0,"Continent":"K73","ID":60482,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60482","ServerKey":"pl181","X":386,"Y":703},{"Bonus":0,"Continent":"K62","ID":60483,"Name":"Wioska RudnikDagger","PlayerID":699577663,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60483","ServerKey":"pl181","X":285,"Y":615},{"Bonus":0,"Continent":"K52","ID":60484,"Name":"Wioska barbarzyƄska","PlayerID":1164249,"Points":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60484","ServerKey":"pl181","X":263,"Y":511},{"Bonus":0,"Continent":"K32","ID":60485,"Name":"Wioska niunia wredna","PlayerID":8423835,"Points":525,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60485","ServerKey":"pl181","X":298,"Y":395},{"Bonus":0,"Continent":"K47","ID":60486,"Name":"Wioska barbarzyƄska","PlayerID":8877886,"Points":288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60486","ServerKey":"pl181","X":733,"Y":480},{"Bonus":0,"Continent":"K33","ID":60487,"Name":"#001 - Zamek Wartburg","PlayerID":8595633,"Points":284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60487","ServerKey":"pl181","X":353,"Y":319},{"Bonus":0,"Continent":"K52","ID":60488,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":78,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60488","ServerKey":"pl181","X":281,"Y":594},{"Bonus":0,"Continent":"K23","ID":60489,"Name":"Wioska AzER","PlayerID":8704709,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60489","ServerKey":"pl181","X":387,"Y":290},{"Bonus":0,"Continent":"K42","ID":60490,"Name":"63 barbarzyƄska","PlayerID":849018442,"Points":488,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60490","ServerKey":"pl181","X":267,"Y":450},{"Bonus":0,"Continent":"K23","ID":60491,"Name":"Wioska QdamianQ","PlayerID":848965205,"Points":93,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60491","ServerKey":"pl181","X":392,"Y":281},{"Bonus":0,"Continent":"K24","ID":60492,"Name":"126.Stradi","PlayerID":698365960,"Points":1112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60492","ServerKey":"pl181","X":429,"Y":275},{"Bonus":0,"Continent":"K74","ID":60493,"Name":"Wioska Sonomi","PlayerID":7322865,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60493","ServerKey":"pl181","X":407,"Y":717},{"Bonus":0,"Continent":"K37","ID":60494,"Name":"055","PlayerID":849091105,"Points":111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60494","ServerKey":"pl181","X":711,"Y":383},{"Bonus":0,"Continent":"K74","ID":60495,"Name":"Wioska 5dych","PlayerID":848930498,"Points":140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60495","ServerKey":"pl181","X":411,"Y":721},{"Bonus":0,"Continent":"K25","ID":60496,"Name":"Wioska barbarzyƄska","PlayerID":849064614,"Points":345,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60496","ServerKey":"pl181","X":578,"Y":270},{"Bonus":0,"Continent":"K74","ID":60497,"Name":"Wioska rambo3423","PlayerID":849110479,"Points":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60497","ServerKey":"pl181","X":415,"Y":726},{"Bonus":0,"Continent":"K36","ID":60498,"Name":"Wioska olimpijska","PlayerID":849040462,"Points":229,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60498","ServerKey":"pl181","X":638,"Y":309},{"Bonus":0,"Continent":"K52","ID":60499,"Name":"Wioska Limited23","PlayerID":848963694,"Points":241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60499","ServerKey":"pl181","X":277,"Y":592},{"Bonus":0,"Continent":"K52","ID":60500,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60500","ServerKey":"pl181","X":266,"Y":515},{"Bonus":0,"Continent":"K26","ID":60501,"Name":"Wioska shakeit1","PlayerID":6178803,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60501","ServerKey":"pl181","X":608,"Y":285},{"Bonus":0,"Continent":"K24","ID":60502,"Name":"North 114","PlayerID":849064752,"Points":1064,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60502","ServerKey":"pl181","X":495,"Y":262},{"Bonus":0,"Continent":"K34","ID":60503,"Name":"Wioska kristoferix","PlayerID":849073486,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60503","ServerKey":"pl181","X":402,"Y":392},{"Bonus":0,"Continent":"K24","ID":60504,"Name":"Wioska barbarzyƄska","PlayerID":699191449,"Points":241,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60504","ServerKey":"pl181","X":440,"Y":264},{"Bonus":0,"Continent":"K33","ID":60505,"Name":"Wioska Marian1960","PlayerID":699714935,"Points":177,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60505","ServerKey":"pl181","X":345,"Y":312},{"Bonus":0,"Continent":"K75","ID":60506,"Name":"Wioska barbarzyƄska","PlayerID":8627359,"Points":980,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60506","ServerKey":"pl181","X":586,"Y":727},{"Bonus":0,"Continent":"K52","ID":60507,"Name":"81skorbyk.","PlayerID":129795,"Points":560,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60507","ServerKey":"pl181","X":269,"Y":564},{"Bonus":0,"Continent":"K42","ID":60508,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":1374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60508","ServerKey":"pl181","X":279,"Y":409},{"Bonus":0,"Continent":"K37","ID":60509,"Name":"Wioska Dj-saken","PlayerID":848995262,"Points":445,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60509","ServerKey":"pl181","X":708,"Y":393},{"Bonus":0,"Continent":"K42","ID":60510,"Name":"Wioska barbarzyƄska","PlayerID":849095814,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60510","ServerKey":"pl181","X":268,"Y":473},{"Bonus":0,"Continent":"K63","ID":60511,"Name":"HotChrum","PlayerID":849012219,"Points":219,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60511","ServerKey":"pl181","X":317,"Y":652},{"Bonus":7,"Continent":"K36","ID":60512,"Name":"Osada koczownikĂłw","PlayerID":698895940,"Points":658,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60512","ServerKey":"pl181","X":655,"Y":315},{"Bonus":0,"Continent":"K24","ID":60513,"Name":"Wioska Mishkkk","PlayerID":849119827,"Points":337,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60513","ServerKey":"pl181","X":437,"Y":269},{"Bonus":0,"Continent":"K67","ID":60514,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60514","ServerKey":"pl181","X":714,"Y":617},{"Bonus":0,"Continent":"K23","ID":60515,"Name":"Krzysiek933","PlayerID":699603033,"Points":102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60515","ServerKey":"pl181","X":385,"Y":294},{"Bonus":0,"Continent":"K52","ID":60516,"Name":"Wioska barbarzyƄska","PlayerID":1861962,"Points":212,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60516","ServerKey":"pl181","X":262,"Y":534},{"Bonus":0,"Continent":"K73","ID":60517,"Name":"Wioska mrufki komandoski","PlayerID":1525273,"Points":197,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60517","ServerKey":"pl181","X":363,"Y":701},{"Bonus":0,"Continent":"K57","ID":60518,"Name":"Wioska anita","PlayerID":849121975,"Points":264,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60518","ServerKey":"pl181","X":733,"Y":556},{"Bonus":0,"Continent":"K67","ID":60519,"Name":"WschĂłd 008","PlayerID":698562644,"Points":201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60519","ServerKey":"pl181","X":704,"Y":627},{"Bonus":0,"Continent":"K32","ID":60520,"Name":"Wioska Laduu","PlayerID":848887011,"Points":95,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60520","ServerKey":"pl181","X":297,"Y":375},{"Bonus":0,"Continent":"K42","ID":60521,"Name":"Wioska jack2","PlayerID":849104310,"Points":195,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60521","ServerKey":"pl181","X":260,"Y":492},{"Bonus":0,"Continent":"K37","ID":60522,"Name":"068- Mroczna Oada","PlayerID":849035905,"Points":664,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60522","ServerKey":"pl181","X":701,"Y":382},{"Bonus":0,"Continent":"K75","ID":60523,"Name":"Wioska Dziwny As","PlayerID":848897333,"Points":119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60523","ServerKey":"pl181","X":596,"Y":721},{"Bonus":0,"Continent":"K66","ID":60524,"Name":"Sony 911","PlayerID":1415009,"Points":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60524","ServerKey":"pl181","X":681,"Y":662},{"Bonus":0,"Continent":"K32","ID":60525,"Name":"Merilly-Tivis Prze:Kupa","PlayerID":849098324,"Points":491,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60525","ServerKey":"pl181","X":292,"Y":379},{"Bonus":0,"Continent":"K57","ID":60526,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":89,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60526","ServerKey":"pl181","X":743,"Y":513},{"Bonus":0,"Continent":"K62","ID":60527,"Name":"Wioska Kira Motyl","PlayerID":699282793,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60527","ServerKey":"pl181","X":289,"Y":614},{"Bonus":0,"Continent":"K63","ID":60528,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60528","ServerKey":"pl181","X":314,"Y":642},{"Bonus":0,"Continent":"K24","ID":60529,"Name":"181","PlayerID":699853526,"Points":651,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60529","ServerKey":"pl181","X":456,"Y":260},{"Bonus":0,"Continent":"K74","ID":60530,"Name":"Wioska barbarzyƄska","PlayerID":698620694,"Points":1003,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60530","ServerKey":"pl181","X":462,"Y":731},{"Bonus":7,"Continent":"K26","ID":60531,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60531","ServerKey":"pl181","X":625,"Y":298},{"Bonus":0,"Continent":"K33","ID":60532,"Name":"Wioska saulgoodman","PlayerID":849120075,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60532","ServerKey":"pl181","X":374,"Y":301},{"Bonus":0,"Continent":"K36","ID":60533,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":56,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60533","ServerKey":"pl181","X":648,"Y":317},{"Bonus":0,"Continent":"K63","ID":60534,"Name":"Wioska mefisom13","PlayerID":699749530,"Points":412,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60534","ServerKey":"pl181","X":304,"Y":645},{"Bonus":0,"Continent":"K23","ID":60535,"Name":"020","PlayerID":699694284,"Points":777,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60535","ServerKey":"pl181","X":394,"Y":280},{"Bonus":0,"Continent":"K26","ID":60536,"Name":"Wioska Alpinista","PlayerID":849096543,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60536","ServerKey":"pl181","X":620,"Y":287},{"Bonus":0,"Continent":"K63","ID":60537,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":65,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60537","ServerKey":"pl181","X":319,"Y":657},{"Bonus":0,"Continent":"K24","ID":60538,"Name":"Wioska Time Traveler","PlayerID":699811844,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60538","ServerKey":"pl181","X":434,"Y":268},{"Bonus":0,"Continent":"K47","ID":60539,"Name":"Wioska barbarzyƄska","PlayerID":849095599,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60539","ServerKey":"pl181","X":738,"Y":457},{"Bonus":0,"Continent":"K32","ID":60540,"Name":"Wioska Seledynowy skuter wodny","PlayerID":849109351,"Points":183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60540","ServerKey":"pl181","X":298,"Y":370},{"Bonus":0,"Continent":"K36","ID":60541,"Name":"1 Doniel","PlayerID":698766454,"Points":222,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60541","ServerKey":"pl181","X":690,"Y":352},{"Bonus":0,"Continent":"K36","ID":60542,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":158,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60542","ServerKey":"pl181","X":675,"Y":338},{"Bonus":0,"Continent":"K57","ID":60543,"Name":"Wioska grzesiek9522","PlayerID":849122047,"Points":66,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60543","ServerKey":"pl181","X":737,"Y":506},{"Bonus":0,"Continent":"K47","ID":60544,"Name":"Wioska peter3131","PlayerID":128346,"Points":333,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60544","ServerKey":"pl181","X":727,"Y":443},{"Bonus":0,"Continent":"K47","ID":60545,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60545","ServerKey":"pl181","X":726,"Y":418},{"Bonus":0,"Continent":"K66","ID":60546,"Name":".001. A","PlayerID":699877413,"Points":329,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60546","ServerKey":"pl181","X":664,"Y":679},{"Bonus":0,"Continent":"K25","ID":60547,"Name":"PPF-52","PlayerID":1424656,"Points":349,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60547","ServerKey":"pl181","X":513,"Y":263},{"Bonus":1,"Continent":"K32","ID":60548,"Name":"WB29","PlayerID":356642,"Points":1015,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60548","ServerKey":"pl181","X":292,"Y":373},{"Bonus":0,"Continent":"K74","ID":60549,"Name":"Wioska Soro","PlayerID":848963696,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60549","ServerKey":"pl181","X":478,"Y":744},{"Bonus":9,"Continent":"K75","ID":60550,"Name":"070 - Budowanko!","PlayerID":7540891,"Points":587,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60550","ServerKey":"pl181","X":504,"Y":738},{"Bonus":0,"Continent":"K33","ID":60551,"Name":"jop","PlayerID":849121762,"Points":377,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60551","ServerKey":"pl181","X":337,"Y":328},{"Bonus":4,"Continent":"K62","ID":60552,"Name":"73. Wioska 73","PlayerID":849091769,"Points":1189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60552","ServerKey":"pl181","X":288,"Y":611},{"Bonus":0,"Continent":"K33","ID":60553,"Name":"Wioska Grzaegorz1122","PlayerID":849118954,"Points":287,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60553","ServerKey":"pl181","X":337,"Y":325},{"Bonus":0,"Continent":"K73","ID":60554,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":272,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60554","ServerKey":"pl181","X":388,"Y":710},{"Bonus":0,"Continent":"K24","ID":60555,"Name":"Wioska Maarri91","PlayerID":699762681,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60555","ServerKey":"pl181","X":477,"Y":264},{"Bonus":0,"Continent":"K66","ID":60556,"Name":"#168#","PlayerID":692803,"Points":223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60556","ServerKey":"pl181","X":657,"Y":676},{"Bonus":0,"Continent":"K66","ID":60557,"Name":"Wioska Rangiku Matsumoto","PlayerID":9300026,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60557","ServerKey":"pl181","X":659,"Y":681},{"Bonus":0,"Continent":"K47","ID":60558,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":485,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60558","ServerKey":"pl181","X":712,"Y":401},{"Bonus":0,"Continent":"K67","ID":60560,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60560","ServerKey":"pl181","X":707,"Y":624},{"Bonus":0,"Continent":"K76","ID":60561,"Name":"Wioska MoistVonLipwing","PlayerID":6270765,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60561","ServerKey":"pl181","X":606,"Y":718},{"Bonus":0,"Continent":"K36","ID":60562,"Name":"Wioska kolejne multikonto","PlayerID":8975453,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60562","ServerKey":"pl181","X":694,"Y":358},{"Bonus":0,"Continent":"K74","ID":60563,"Name":"R 057","PlayerID":699195358,"Points":205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60563","ServerKey":"pl181","X":491,"Y":735},{"Bonus":0,"Continent":"K75","ID":60564,"Name":"Wioska Nooowka07","PlayerID":699548922,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60564","ServerKey":"pl181","X":563,"Y":736},{"Bonus":0,"Continent":"K42","ID":60565,"Name":"Wioska poweju56","PlayerID":2140084,"Points":189,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60565","ServerKey":"pl181","X":281,"Y":419},{"Bonus":0,"Continent":"K23","ID":60566,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":944,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60566","ServerKey":"pl181","X":371,"Y":293},{"Bonus":0,"Continent":"K47","ID":60568,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":784,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60568","ServerKey":"pl181","X":736,"Y":444},{"Bonus":0,"Continent":"K74","ID":60569,"Name":"Wioska TraktorWiktor","PlayerID":849101284,"Points":334,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60569","ServerKey":"pl181","X":463,"Y":737},{"Bonus":0,"Continent":"K67","ID":60570,"Name":"K67 40","PlayerID":698867483,"Points":286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60570","ServerKey":"pl181","X":718,"Y":602},{"Bonus":0,"Continent":"K62","ID":60571,"Name":"Wioska Kupidynek","PlayerID":7906167,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60571","ServerKey":"pl181","X":289,"Y":609},{"Bonus":0,"Continent":"K52","ID":60572,"Name":"Wioska Sebko70","PlayerID":699546317,"Points":245,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60572","ServerKey":"pl181","X":270,"Y":574},{"Bonus":0,"Continent":"K33","ID":60574,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60574","ServerKey":"pl181","X":318,"Y":336},{"Bonus":0,"Continent":"K25","ID":60575,"Name":"GdaƄsk*","PlayerID":1889913,"Points":230,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60575","ServerKey":"pl181","X":599,"Y":280},{"Bonus":0,"Continent":"K33","ID":60576,"Name":"Wioska Rebel1995","PlayerID":2692494,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60576","ServerKey":"pl181","X":311,"Y":358},{"Bonus":0,"Continent":"K75","ID":60577,"Name":"073 - Budowanko!","PlayerID":7540891,"Points":455,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60577","ServerKey":"pl181","X":519,"Y":735},{"Bonus":0,"Continent":"K32","ID":60578,"Name":"BobiLIVE","PlayerID":699807296,"Points":318,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60578","ServerKey":"pl181","X":287,"Y":380},{"Bonus":0,"Continent":"K67","ID":60579,"Name":"Wioska joaopaulo98","PlayerID":849118769,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60579","ServerKey":"pl181","X":700,"Y":635},{"Bonus":0,"Continent":"K75","ID":60580,"Name":"!Wioska barbarzyƄska 11","PlayerID":8779575,"Points":746,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60580","ServerKey":"pl181","X":597,"Y":721},{"Bonus":0,"Continent":"K62","ID":60581,"Name":"Wioska paweƂdante","PlayerID":849112178,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60581","ServerKey":"pl181","X":280,"Y":601},{"Bonus":0,"Continent":"K57","ID":60582,"Name":"Wioska Ed3kMonster","PlayerID":849023540,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60582","ServerKey":"pl181","X":722,"Y":585},{"Bonus":0,"Continent":"K47","ID":60583,"Name":"A#055","PlayerID":2065730,"Points":465,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60583","ServerKey":"pl181","X":732,"Y":475},{"Bonus":0,"Continent":"K74","ID":60584,"Name":"SunSun","PlayerID":849117087,"Points":579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60584","ServerKey":"pl181","X":404,"Y":715},{"Bonus":0,"Continent":"K67","ID":60585,"Name":"K67 42","PlayerID":698867483,"Points":243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60585","ServerKey":"pl181","X":711,"Y":603},{"Bonus":0,"Continent":"K75","ID":60586,"Name":"Wioska iminlove","PlayerID":8621570,"Points":173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60586","ServerKey":"pl181","X":595,"Y":724},{"Bonus":0,"Continent":"K25","ID":60587,"Name":"Wioska Myanmar","PlayerID":699508363,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60587","ServerKey":"pl181","X":501,"Y":265},{"Bonus":0,"Continent":"K52","ID":60588,"Name":"Wioska zniszczywacz","PlayerID":699858423,"Points":187,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60588","ServerKey":"pl181","X":264,"Y":522},{"Bonus":8,"Continent":"K24","ID":60589,"Name":"134.Stradi","PlayerID":698365960,"Points":966,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60589","ServerKey":"pl181","X":413,"Y":271},{"Bonus":0,"Continent":"K57","ID":60590,"Name":"Wioska Chuja","PlayerID":849114028,"Points":437,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60590","ServerKey":"pl181","X":723,"Y":585},{"Bonus":0,"Continent":"K66","ID":60591,"Name":"Wioska peniozdw","PlayerID":9294339,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60591","ServerKey":"pl181","X":672,"Y":665},{"Bonus":0,"Continent":"K63","ID":60592,"Name":"Wioska Vintrax","PlayerID":849097793,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60592","ServerKey":"pl181","X":342,"Y":683},{"Bonus":0,"Continent":"K66","ID":60593,"Name":"Wioska karplop123","PlayerID":849119842,"Points":66,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60593","ServerKey":"pl181","X":687,"Y":653},{"Bonus":0,"Continent":"K74","ID":60594,"Name":"072 - Budowanko!","PlayerID":7540891,"Points":487,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60594","ServerKey":"pl181","X":495,"Y":737},{"Bonus":0,"Continent":"K63","ID":60595,"Name":"Wioska Dawid4321","PlayerID":849098197,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60595","ServerKey":"pl181","X":324,"Y":667},{"Bonus":0,"Continent":"K47","ID":60596,"Name":"Wioska barbarzyƄska","PlayerID":8000875,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60596","ServerKey":"pl181","X":725,"Y":425},{"Bonus":0,"Continent":"K52","ID":60597,"Name":"Wioska SIR UNITED","PlayerID":9031705,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60597","ServerKey":"pl181","X":276,"Y":593},{"Bonus":0,"Continent":"K33","ID":60598,"Name":"Wioska Maxi Montana","PlayerID":849121846,"Points":286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60598","ServerKey":"pl181","X":309,"Y":355},{"Bonus":0,"Continent":"K33","ID":60599,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60599","ServerKey":"pl181","X":335,"Y":321},{"Bonus":0,"Continent":"K37","ID":60600,"Name":"Wioska Hakal93","PlayerID":849116911,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60600","ServerKey":"pl181","X":709,"Y":383},{"Bonus":0,"Continent":"K66","ID":60601,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60601","ServerKey":"pl181","X":685,"Y":647},{"Bonus":0,"Continent":"K52","ID":60602,"Name":"Wioska Mistrz 99","PlayerID":849089207,"Points":179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60602","ServerKey":"pl181","X":278,"Y":588},{"Bonus":0,"Continent":"K73","ID":60603,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60603","ServerKey":"pl181","X":395,"Y":712},{"Bonus":0,"Continent":"K33","ID":60604,"Name":"Wioska Czadamm","PlayerID":849104100,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60604","ServerKey":"pl181","X":308,"Y":356},{"Bonus":0,"Continent":"K52","ID":60605,"Name":"Wioska barbarzyƄska","PlayerID":1536625,"Points":131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60605","ServerKey":"pl181","X":271,"Y":575},{"Bonus":0,"Continent":"K32","ID":60606,"Name":"Leszek1964","PlayerID":849122297,"Points":579,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60606","ServerKey":"pl181","X":291,"Y":391},{"Bonus":0,"Continent":"K24","ID":60607,"Name":"Wioska hornet9","PlayerID":6249524,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60607","ServerKey":"pl181","X":452,"Y":268},{"Bonus":0,"Continent":"K24","ID":60608,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":62,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60608","ServerKey":"pl181","X":461,"Y":266},{"Bonus":0,"Continent":"K42","ID":60609,"Name":"Wioska QiczikJP","PlayerID":8662634,"Points":284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60609","ServerKey":"pl181","X":267,"Y":426},{"Bonus":0,"Continent":"K37","ID":60610,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":529,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60610","ServerKey":"pl181","X":713,"Y":391},{"Bonus":0,"Continent":"K74","ID":60611,"Name":"Wioska nocna1993","PlayerID":698798180,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60611","ServerKey":"pl181","X":440,"Y":733},{"Bonus":0,"Continent":"K63","ID":60612,"Name":"Wioska Jestem Pogromca z TOPu","PlayerID":698388041,"Points":277,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60612","ServerKey":"pl181","X":372,"Y":696},{"Bonus":0,"Continent":"K36","ID":60613,"Name":"Wioska barbarzyƄska","PlayerID":699072129,"Points":385,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60613","ServerKey":"pl181","X":668,"Y":334},{"Bonus":0,"Continent":"K75","ID":60614,"Name":"Wioska Marcin Marci","PlayerID":849113580,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60614","ServerKey":"pl181","X":579,"Y":721},{"Bonus":0,"Continent":"K66","ID":60615,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60615","ServerKey":"pl181","X":685,"Y":659},{"Bonus":0,"Continent":"K57","ID":60616,"Name":"Wioska JaaMwG 1","PlayerID":2593568,"Points":423,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60616","ServerKey":"pl181","X":725,"Y":594},{"Bonus":0,"Continent":"K42","ID":60617,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":200,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60617","ServerKey":"pl181","X":280,"Y":421},{"Bonus":0,"Continent":"K52","ID":60618,"Name":"Wioska Cinse","PlayerID":849111109,"Points":117,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60618","ServerKey":"pl181","X":258,"Y":537},{"Bonus":0,"Continent":"K36","ID":60619,"Name":"Wioska Kadar","PlayerID":849104297,"Points":323,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60619","ServerKey":"pl181","X":678,"Y":344},{"Bonus":0,"Continent":"K24","ID":60620,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":94,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60620","ServerKey":"pl181","X":467,"Y":265},{"Bonus":0,"Continent":"K33","ID":60621,"Name":"Wioska Hasha","PlayerID":849097006,"Points":453,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60621","ServerKey":"pl181","X":345,"Y":324},{"Bonus":0,"Continent":"K63","ID":60622,"Name":"Wioska wozny1020","PlayerID":848981523,"Points":284,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60622","ServerKey":"pl181","X":342,"Y":680},{"Bonus":0,"Continent":"K52","ID":60623,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60623","ServerKey":"pl181","X":264,"Y":547},{"Bonus":0,"Continent":"K52","ID":60624,"Name":"Wioska polska652","PlayerID":849122318,"Points":112,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60624","ServerKey":"pl181","X":276,"Y":565},{"Bonus":0,"Continent":"K33","ID":60625,"Name":"Wioska barbarzyƄska","PlayerID":699796330,"Points":325,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60625","ServerKey":"pl181","X":342,"Y":324},{"Bonus":0,"Continent":"K75","ID":60626,"Name":"Wioska tomek22863","PlayerID":6066254,"Points":93,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60626","ServerKey":"pl181","X":590,"Y":718},{"Bonus":0,"Continent":"K36","ID":60627,"Name":"Wioska barbarzyƄska","PlayerID":3600737,"Points":66,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60627","ServerKey":"pl181","X":637,"Y":303},{"Bonus":6,"Continent":"K36","ID":60628,"Name":"Osada koczownikĂłw","PlayerID":699072129,"Points":413,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60628","ServerKey":"pl181","X":674,"Y":331},{"Bonus":0,"Continent":"K33","ID":60629,"Name":"Wioska CccC2","PlayerID":848999518,"Points":140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60629","ServerKey":"pl181","X":307,"Y":358},{"Bonus":0,"Continent":"K57","ID":60630,"Name":"042 - Logrono","PlayerID":698342159,"Points":246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60630","ServerKey":"pl181","X":720,"Y":597},{"Bonus":0,"Continent":"K42","ID":60631,"Name":"Wioska Karki98","PlayerID":849101186,"Points":340,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60631","ServerKey":"pl181","X":264,"Y":463},{"Bonus":0,"Continent":"K62","ID":60632,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60632","ServerKey":"pl181","X":290,"Y":623},{"Bonus":0,"Continent":"K63","ID":60633,"Name":"Wioska LokiPLN","PlayerID":699431590,"Points":224,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60633","ServerKey":"pl181","X":322,"Y":654},{"Bonus":0,"Continent":"K36","ID":60634,"Name":"Wioska Jacaxxx","PlayerID":699451338,"Points":142,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60634","ServerKey":"pl181","X":678,"Y":332},{"Bonus":0,"Continent":"K57","ID":60635,"Name":"Wioska barbarzyƄska","PlayerID":8742874,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60635","ServerKey":"pl181","X":743,"Y":521},{"Bonus":0,"Continent":"K47","ID":60636,"Name":"Wioska Fezzoo","PlayerID":6557487,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60636","ServerKey":"pl181","X":734,"Y":488},{"Bonus":0,"Continent":"K42","ID":60637,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":51,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60637","ServerKey":"pl181","X":258,"Y":479},{"Bonus":0,"Continent":"K57","ID":60638,"Name":"Wioska Black Bird","PlayerID":699778028,"Points":942,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60638","ServerKey":"pl181","X":727,"Y":593},{"Bonus":0,"Continent":"K62","ID":60639,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":176,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60639","ServerKey":"pl181","X":299,"Y":623},{"Bonus":0,"Continent":"K66","ID":60640,"Name":"Wioska Lord Magik77","PlayerID":698162153,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60640","ServerKey":"pl181","X":667,"Y":667},{"Bonus":0,"Continent":"K24","ID":60641,"Name":"Wioska barbarzyƄska","PlayerID":849096310,"Points":228,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60641","ServerKey":"pl181","X":438,"Y":271},{"Bonus":0,"Continent":"K23","ID":60642,"Name":"Wioska halooogan","PlayerID":698676429,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60642","ServerKey":"pl181","X":381,"Y":297},{"Bonus":0,"Continent":"K73","ID":60643,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":171,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60643","ServerKey":"pl181","X":372,"Y":704},{"Bonus":0,"Continent":"K47","ID":60644,"Name":"Wioska lordlewy10","PlayerID":698380048,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60644","ServerKey":"pl181","X":720,"Y":414},{"Bonus":0,"Continent":"K32","ID":60645,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":65,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60645","ServerKey":"pl181","X":282,"Y":390},{"Bonus":0,"Continent":"K57","ID":60646,"Name":"Wioska Norane","PlayerID":8956715,"Points":242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60646","ServerKey":"pl181","X":736,"Y":540},{"Bonus":0,"Continent":"K24","ID":60647,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":86,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60647","ServerKey":"pl181","X":439,"Y":267},{"Bonus":0,"Continent":"K75","ID":60648,"Name":"Aqua","PlayerID":3395817,"Points":480,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60648","ServerKey":"pl181","X":581,"Y":730},{"Bonus":0,"Continent":"K76","ID":60649,"Name":"Wioska Jamson","PlayerID":205821,"Points":128,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60649","ServerKey":"pl181","X":609,"Y":717},{"Bonus":0,"Continent":"K42","ID":60650,"Name":"Wioska barbarzyƄska","PlayerID":698625834,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60650","ServerKey":"pl181","X":257,"Y":489},{"Bonus":0,"Continent":"K74","ID":60651,"Name":"Wioska Davcio1994","PlayerID":848916779,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60651","ServerKey":"pl181","X":416,"Y":727},{"Bonus":6,"Continent":"K24","ID":60652,"Name":"080KP","PlayerID":849063849,"Points":108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60652","ServerKey":"pl181","X":475,"Y":260},{"Bonus":0,"Continent":"K36","ID":60653,"Name":"Wioska Bliskoznaczny","PlayerID":699698745,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60653","ServerKey":"pl181","X":686,"Y":355},{"Bonus":0,"Continent":"K52","ID":60654,"Name":"lozi20","PlayerID":8362886,"Points":174,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60654","ServerKey":"pl181","X":269,"Y":545},{"Bonus":0,"Continent":"K73","ID":60656,"Name":"Wioska Lilit","PlayerID":849109045,"Points":463,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60656","ServerKey":"pl181","X":360,"Y":700},{"Bonus":0,"Continent":"K23","ID":60657,"Name":"OsioƂ trojaƄski","PlayerID":698162312,"Points":449,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60657","ServerKey":"pl181","X":384,"Y":288},{"Bonus":0,"Continent":"K46","ID":60658,"Name":"Wioska Helios874","PlayerID":7733128,"Points":242,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60658","ServerKey":"pl181","X":636,"Y":485},{"Bonus":0,"Continent":"K36","ID":60659,"Name":"MALBORK","PlayerID":848944534,"Points":226,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60659","ServerKey":"pl181","X":646,"Y":304},{"Bonus":0,"Continent":"K25","ID":60660,"Name":"113 Wioska barbarzyƄska","PlayerID":699854484,"Points":199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60660","ServerKey":"pl181","X":546,"Y":267},{"Bonus":0,"Continent":"K75","ID":60661,"Name":"Wioska gggg1989","PlayerID":699397280,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60661","ServerKey":"pl181","X":553,"Y":729},{"Bonus":0,"Continent":"K52","ID":60662,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":49,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60662","ServerKey":"pl181","X":264,"Y":545},{"Bonus":0,"Continent":"K33","ID":60663,"Name":"Wioska Patryczekk","PlayerID":848955756,"Points":310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60663","ServerKey":"pl181","X":320,"Y":340},{"Bonus":0,"Continent":"K57","ID":60664,"Name":"Wioska AllAdin","PlayerID":698826217,"Points":372,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60664","ServerKey":"pl181","X":735,"Y":570},{"Bonus":0,"Continent":"K73","ID":60665,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":152,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60665","ServerKey":"pl181","X":385,"Y":710},{"Bonus":0,"Continent":"K62","ID":60666,"Name":"Wioska *ZasadĆșca*","PlayerID":699062337,"Points":105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60666","ServerKey":"pl181","X":284,"Y":600},{"Bonus":0,"Continent":"K24","ID":60667,"Name":"Wioska b 013","PlayerID":6343784,"Points":160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60667","ServerKey":"pl181","X":430,"Y":269},{"Bonus":0,"Continent":"K76","ID":60668,"Name":"Queen A","PlayerID":848944455,"Points":379,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60668","ServerKey":"pl181","X":605,"Y":720},{"Bonus":0,"Continent":"K75","ID":60669,"Name":"Wioska barbarzyƄska","PlayerID":699878511,"Points":140,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60669","ServerKey":"pl181","X":558,"Y":734},{"Bonus":0,"Continent":"K25","ID":60670,"Name":"Wioska SteamUser1675976894","PlayerID":849122450,"Points":88,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60670","ServerKey":"pl181","X":511,"Y":265},{"Bonus":0,"Continent":"K33","ID":60671,"Name":"Wioska barbarzyƄska","PlayerID":698388578,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60671","ServerKey":"pl181","X":340,"Y":316},{"Bonus":0,"Continent":"K62","ID":60672,"Name":"Wioska zewlakow6","PlayerID":698379979,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60672","ServerKey":"pl181","X":292,"Y":612},{"Bonus":0,"Continent":"K47","ID":60673,"Name":"Wioska 014","PlayerID":2999957,"Points":599,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60673","ServerKey":"pl181","X":739,"Y":490},{"Bonus":0,"Continent":"K24","ID":60674,"Name":"Wioska PrzechyƂy i przechyƂy...","PlayerID":698167413,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60674","ServerKey":"pl181","X":482,"Y":259},{"Bonus":0,"Continent":"K36","ID":60675,"Name":"Wioska Destruktorix I","PlayerID":7539223,"Points":124,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60675","ServerKey":"pl181","X":671,"Y":341},{"Bonus":0,"Continent":"K57","ID":60676,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60676","ServerKey":"pl181","X":737,"Y":510},{"Bonus":0,"Continent":"K57","ID":60677,"Name":"Wioska Jaruga007","PlayerID":1350456,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60677","ServerKey":"pl181","X":724,"Y":568},{"Bonus":0,"Continent":"K47","ID":60678,"Name":"225 |","PlayerID":8000875,"Points":93,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60678","ServerKey":"pl181","X":719,"Y":419},{"Bonus":0,"Continent":"K75","ID":60679,"Name":"Wioska snake7","PlayerID":698556600,"Points":130,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60679","ServerKey":"pl181","X":548,"Y":731},{"Bonus":0,"Continent":"K75","ID":60680,"Name":"KWB9.3","PlayerID":9003698,"Points":223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60680","ServerKey":"pl181","X":506,"Y":736},{"Bonus":0,"Continent":"K75","ID":60681,"Name":"Wioska Stupid","PlayerID":699480768,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60681","ServerKey":"pl181","X":522,"Y":737},{"Bonus":0,"Continent":"K67","ID":60682,"Name":"K67 43","PlayerID":698867483,"Points":249,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60682","ServerKey":"pl181","X":700,"Y":623},{"Bonus":0,"Continent":"K47","ID":60683,"Name":"Wioska alexxdize","PlayerID":849107860,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60683","ServerKey":"pl181","X":727,"Y":433},{"Bonus":0,"Continent":"K33","ID":60684,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":893,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60684","ServerKey":"pl181","X":348,"Y":312},{"Bonus":0,"Continent":"K26","ID":60685,"Name":"Wioska adrianww13","PlayerID":8907258,"Points":317,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60685","ServerKey":"pl181","X":606,"Y":280},{"Bonus":0,"Continent":"K52","ID":60686,"Name":"Wioska","PlayerID":2365630,"Points":173,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60686","ServerKey":"pl181","X":266,"Y":501},{"Bonus":0,"Continent":"K42","ID":60687,"Name":"KONFA TO MARKA, NARKA","PlayerID":698152377,"Points":456,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60687","ServerKey":"pl181","X":275,"Y":438},{"Bonus":0,"Continent":"K74","ID":60688,"Name":"Wioska bino666","PlayerID":6310214,"Points":428,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60688","ServerKey":"pl181","X":492,"Y":739},{"Bonus":0,"Continent":"K25","ID":60689,"Name":"114 Wioska barbarzyƄska","PlayerID":699854484,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60689","ServerKey":"pl181","X":565,"Y":266},{"Bonus":0,"Continent":"K74","ID":60690,"Name":"Wioska kamilek6969","PlayerID":849122487,"Points":310,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60690","ServerKey":"pl181","X":407,"Y":715},{"Bonus":0,"Continent":"K42","ID":60691,"Name":"64 barbarzyƄska","PlayerID":849018442,"Points":469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60691","ServerKey":"pl181","X":269,"Y":454},{"Bonus":0,"Continent":"K26","ID":60692,"Name":"Wioska Genotypek","PlayerID":698281635,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60692","ServerKey":"pl181","X":609,"Y":281},{"Bonus":0,"Continent":"K33","ID":60693,"Name":"Wioska39","PlayerID":699711926,"Points":976,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60693","ServerKey":"pl181","X":324,"Y":345},{"Bonus":0,"Continent":"K33","ID":60694,"Name":"Wioska Bernhard Roth*","PlayerID":9186877,"Points":221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60694","ServerKey":"pl181","X":311,"Y":344},{"Bonus":0,"Continent":"K57","ID":60695,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":167,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60695","ServerKey":"pl181","X":738,"Y":557},{"Bonus":0,"Continent":"K47","ID":60696,"Name":"Wioska NikoMat","PlayerID":699820969,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60696","ServerKey":"pl181","X":739,"Y":469},{"Bonus":0,"Continent":"K57","ID":60697,"Name":"033 Wioska","PlayerID":699671454,"Points":192,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60697","ServerKey":"pl181","X":737,"Y":512},{"Bonus":0,"Continent":"K73","ID":60698,"Name":"Wioska Hasyp","PlayerID":1304915,"Points":532,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60698","ServerKey":"pl181","X":375,"Y":710},{"Bonus":0,"Continent":"K32","ID":60699,"Name":"0092","PlayerID":848913037,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60699","ServerKey":"pl181","X":283,"Y":389},{"Bonus":0,"Continent":"K62","ID":60700,"Name":"Wioska King Grzes","PlayerID":8746112,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60700","ServerKey":"pl181","X":294,"Y":621},{"Bonus":0,"Continent":"K32","ID":60701,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":57,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60701","ServerKey":"pl181","X":283,"Y":399},{"Bonus":0,"Continent":"K57","ID":60702,"Name":"Wioska S1mple...","PlayerID":849033395,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60702","ServerKey":"pl181","X":717,"Y":599},{"Bonus":0,"Continent":"K52","ID":60703,"Name":"Wioska zielonyjohn","PlayerID":848978169,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60703","ServerKey":"pl181","X":261,"Y":507},{"Bonus":0,"Continent":"K74","ID":60704,"Name":"Wioska barbarzyƄska","PlayerID":698152377,"Points":436,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60704","ServerKey":"pl181","X":408,"Y":715},{"Bonus":8,"Continent":"K75","ID":60705,"Name":"Osada koczownikĂłw","PlayerID":849098628,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60705","ServerKey":"pl181","X":597,"Y":719},{"Bonus":0,"Continent":"K25","ID":60706,"Name":"181","PlayerID":3760848,"Points":168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60706","ServerKey":"pl181","X":509,"Y":257},{"Bonus":0,"Continent":"K26","ID":60707,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":76,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60707","ServerKey":"pl181","X":614,"Y":294},{"Bonus":0,"Continent":"K65","ID":60708,"Name":"Wioska PetC","PlayerID":6300771,"Points":308,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60708","ServerKey":"pl181","X":586,"Y":665},{"Bonus":0,"Continent":"K33","ID":60709,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":841,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60709","ServerKey":"pl181","X":361,"Y":311},{"Bonus":0,"Continent":"K74","ID":60710,"Name":"Wioska Fontowcy Dual i MaƂpiake","PlayerID":698526500,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60710","ServerKey":"pl181","X":494,"Y":733},{"Bonus":0,"Continent":"K36","ID":60711,"Name":"Wioska barbarzyƄska","PlayerID":698290577,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60711","ServerKey":"pl181","X":677,"Y":336},{"Bonus":0,"Continent":"K25","ID":60712,"Name":"Wioska Jakub JĂłĆșwiak","PlayerID":699294577,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60712","ServerKey":"pl181","X":546,"Y":262},{"Bonus":0,"Continent":"K52","ID":60713,"Name":"091 obrzeĆŒa","PlayerID":699510259,"Points":206,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60713","ServerKey":"pl181","X":265,"Y":561},{"Bonus":0,"Continent":"K36","ID":60714,"Name":"Wioska kcys2","PlayerID":8907069,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60714","ServerKey":"pl181","X":664,"Y":325},{"Bonus":0,"Continent":"K47","ID":60715,"Name":"Wioska barbarzyƄska","PlayerID":699524891,"Points":227,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60715","ServerKey":"pl181","X":737,"Y":489},{"Bonus":0,"Continent":"K42","ID":60716,"Name":"Wioska Czaki995","PlayerID":849120088,"Points":194,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60716","ServerKey":"pl181","X":263,"Y":476},{"Bonus":0,"Continent":"K57","ID":60717,"Name":"Wioska KOYE","PlayerID":849120311,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60717","ServerKey":"pl181","X":735,"Y":546},{"Bonus":0,"Continent":"K46","ID":60718,"Name":"Wioska EvilTwin","PlayerID":699866510,"Points":55,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60718","ServerKey":"pl181","X":630,"Y":465},{"Bonus":0,"Continent":"K75","ID":60719,"Name":"Wioska cinek1998","PlayerID":849084699,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60719","ServerKey":"pl181","X":575,"Y":726},{"Bonus":0,"Continent":"K67","ID":60720,"Name":"K67 45","PlayerID":698867483,"Points":175,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60720","ServerKey":"pl181","X":713,"Y":602},{"Bonus":0,"Continent":"K75","ID":60721,"Name":"Wioska prosiaczek","PlayerID":849121623,"Points":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60721","ServerKey":"pl181","X":580,"Y":719},{"Bonus":0,"Continent":"K24","ID":60722,"Name":"Gwenville 019","PlayerID":848986638,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60722","ServerKey":"pl181","X":454,"Y":271},{"Bonus":0,"Continent":"K76","ID":60723,"Name":"Wioska Szalejot3","PlayerID":849121329,"Points":320,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60723","ServerKey":"pl181","X":622,"Y":704},{"Bonus":0,"Continent":"K47","ID":60724,"Name":"Wioska Itadakimasu","PlayerID":849049864,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60724","ServerKey":"pl181","X":736,"Y":472},{"Bonus":0,"Continent":"K66","ID":60725,"Name":"Sony 911","PlayerID":1415009,"Points":246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60725","ServerKey":"pl181","X":667,"Y":666},{"Bonus":0,"Continent":"K76","ID":60726,"Name":"Wioska kojak14","PlayerID":9201946,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60726","ServerKey":"pl181","X":622,"Y":708},{"Bonus":0,"Continent":"K76","ID":60727,"Name":"Wioska barbarzyƄska","PlayerID":848887199,"Points":131,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60727","ServerKey":"pl181","X":627,"Y":709},{"Bonus":0,"Continent":"K36","ID":60728,"Name":"Wioska Simon118","PlayerID":2210946,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60728","ServerKey":"pl181","X":693,"Y":358},{"Bonus":0,"Continent":"K75","ID":60729,"Name":"Wioska barbarzyƄska","PlayerID":7756002,"Points":1709,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60729","ServerKey":"pl181","X":567,"Y":724},{"Bonus":0,"Continent":"K36","ID":60730,"Name":"Wioska Feii","PlayerID":849097274,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60730","ServerKey":"pl181","X":645,"Y":303},{"Bonus":0,"Continent":"K42","ID":60731,"Name":"Wioska Frodo1","PlayerID":849108034,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60731","ServerKey":"pl181","X":267,"Y":456},{"Bonus":0,"Continent":"K67","ID":60732,"Name":"Wioska barbarzyƄska","PlayerID":698867483,"Points":103,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60732","ServerKey":"pl181","X":709,"Y":628},{"Bonus":0,"Continent":"K75","ID":60733,"Name":"Wioska Damian2023","PlayerID":849115920,"Points":121,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60733","ServerKey":"pl181","X":525,"Y":743},{"Bonus":0,"Continent":"K23","ID":60734,"Name":"021","PlayerID":699694284,"Points":275,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60734","ServerKey":"pl181","X":389,"Y":285},{"Bonus":0,"Continent":"K52","ID":60735,"Name":"Wioska AndrzejJ96","PlayerID":848995446,"Points":301,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60735","ServerKey":"pl181","X":268,"Y":567},{"Bonus":0,"Continent":"K75","ID":60736,"Name":"Wioska riki30.1976","PlayerID":2426019,"Points":205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60736","ServerKey":"pl181","X":511,"Y":744},{"Bonus":0,"Continent":"K23","ID":60737,"Name":"022","PlayerID":699694284,"Points":324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60737","ServerKey":"pl181","X":397,"Y":289},{"Bonus":0,"Continent":"K74","ID":60738,"Name":"Wioska Budrys2000","PlayerID":849118435,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60738","ServerKey":"pl181","X":471,"Y":734},{"Bonus":0,"Continent":"K47","ID":60739,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":54,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60739","ServerKey":"pl181","X":739,"Y":467},{"Bonus":0,"Continent":"K75","ID":60740,"Name":"Wioska Choroszcz","PlayerID":849121269,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60740","ServerKey":"pl181","X":592,"Y":725},{"Bonus":0,"Continent":"K42","ID":60741,"Name":"Wioska barbarzyƄska","PlayerID":698152377,"Points":193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60741","ServerKey":"pl181","X":276,"Y":417},{"Bonus":3,"Continent":"K36","ID":60742,"Name":"044. Osada koczownikĂłw","PlayerID":2873154,"Points":223,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60742","ServerKey":"pl181","X":679,"Y":343},{"Bonus":0,"Continent":"K74","ID":60743,"Name":"Wioska LeadyBoo","PlayerID":849121536,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60743","ServerKey":"pl181","X":473,"Y":739},{"Bonus":0,"Continent":"K63","ID":60744,"Name":"Wioska KrĂłl Mieszko I","PlayerID":698648691,"Points":122,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60744","ServerKey":"pl181","X":352,"Y":688},{"Bonus":0,"Continent":"K57","ID":60745,"Name":"Wioska barbarzyƄska","PlayerID":7038651,"Points":37,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60745","ServerKey":"pl181","X":735,"Y":567},{"Bonus":0,"Continent":"K74","ID":60747,"Name":"Wioska patryczekpyrka96","PlayerID":849100836,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60747","ServerKey":"pl181","X":493,"Y":739},{"Bonus":0,"Continent":"K33","ID":60748,"Name":"Wioska danek","PlayerID":849121686,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60748","ServerKey":"pl181","X":338,"Y":326},{"Bonus":0,"Continent":"K67","ID":60749,"Name":"K67 44","PlayerID":698867483,"Points":193,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60749","ServerKey":"pl181","X":704,"Y":635},{"Bonus":0,"Continent":"K37","ID":60751,"Name":"_002_ Wioska barbarzyƄska","PlayerID":849095068,"Points":118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60751","ServerKey":"pl181","X":708,"Y":373},{"Bonus":0,"Continent":"K47","ID":60752,"Name":"Wioska etrusk","PlayerID":848963634,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60752","ServerKey":"pl181","X":742,"Y":495},{"Bonus":0,"Continent":"K63","ID":60753,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":49,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60753","ServerKey":"pl181","X":364,"Y":698},{"Bonus":0,"Continent":"K75","ID":60754,"Name":"Wioska sweetdream","PlayerID":849122658,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60754","ServerKey":"pl181","X":577,"Y":728},{"Bonus":0,"Continent":"K74","ID":60755,"Name":"076 - Budowanko!","PlayerID":7540891,"Points":303,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60755","ServerKey":"pl181","X":482,"Y":742},{"Bonus":0,"Continent":"K47","ID":60756,"Name":"Wioska PROboszczz","PlayerID":699845927,"Points":74,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60756","ServerKey":"pl181","X":726,"Y":438},{"Bonus":0,"Continent":"K24","ID":60757,"Name":"Wioska barbarzyƄska","PlayerID":849085160,"Points":28,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60757","ServerKey":"pl181","X":435,"Y":266},{"Bonus":0,"Continent":"K33","ID":60758,"Name":"J3bacTo","PlayerID":849001762,"Points":267,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60758","ServerKey":"pl181","X":306,"Y":352},{"Bonus":0,"Continent":"K33","ID":60759,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":88,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60759","ServerKey":"pl181","X":312,"Y":358},{"Bonus":0,"Continent":"K36","ID":60760,"Name":"Wioska mmarcinho","PlayerID":699557165,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60760","ServerKey":"pl181","X":669,"Y":323},{"Bonus":0,"Continent":"K25","ID":60761,"Name":"118 Wioska barbarzyƄska","PlayerID":699854484,"Points":135,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60761","ServerKey":"pl181","X":553,"Y":271},{"Bonus":0,"Continent":"K66","ID":60762,"Name":"Wioska marianoitaliuano","PlayerID":9043233,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60762","ServerKey":"pl181","X":667,"Y":677},{"Bonus":0,"Continent":"K47","ID":60763,"Name":"22 No Future","PlayerID":849101845,"Points":866,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60763","ServerKey":"pl181","X":734,"Y":447},{"Bonus":0,"Continent":"K47","ID":60764,"Name":"Wioska Szpadyzor","PlayerID":849121691,"Points":133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60764","ServerKey":"pl181","X":726,"Y":423},{"Bonus":0,"Continent":"K47","ID":60765,"Name":"Wioska barbarzyƄska","PlayerID":699628084,"Points":154,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60765","ServerKey":"pl181","X":731,"Y":428},{"Bonus":0,"Continent":"K36","ID":60766,"Name":"Wioska colt9","PlayerID":6242167,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60766","ServerKey":"pl181","X":672,"Y":339},{"Bonus":0,"Continent":"K63","ID":60767,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":58,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60767","ServerKey":"pl181","X":361,"Y":698},{"Bonus":0,"Continent":"K66","ID":60768,"Name":"Wioska mariuszf","PlayerID":9004337,"Points":98,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60768","ServerKey":"pl181","X":644,"Y":697},{"Bonus":0,"Continent":"K62","ID":60769,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":55,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60769","ServerKey":"pl181","X":296,"Y":636},{"Bonus":0,"Continent":"K74","ID":60770,"Name":"Wioska ewazeth","PlayerID":849109507,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60770","ServerKey":"pl181","X":432,"Y":723},{"Bonus":0,"Continent":"K63","ID":60771,"Name":"Wioska wolf1982","PlayerID":849039766,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60771","ServerKey":"pl181","X":327,"Y":673},{"Bonus":0,"Continent":"K67","ID":60772,"Name":"Wioska Paveulon","PlayerID":849110304,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60772","ServerKey":"pl181","X":701,"Y":623},{"Bonus":8,"Continent":"K63","ID":60773,"Name":"#004 Las Palmas","PlayerID":849101276,"Points":108,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60773","ServerKey":"pl181","X":335,"Y":667},{"Bonus":0,"Continent":"K36","ID":60774,"Name":"Wioska artnow","PlayerID":8061953,"Points":119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60774","ServerKey":"pl181","X":697,"Y":355},{"Bonus":0,"Continent":"K25","ID":60775,"Name":"PPF-56","PlayerID":1424656,"Points":163,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60775","ServerKey":"pl181","X":524,"Y":262},{"Bonus":2,"Continent":"K75","ID":60776,"Name":"Xxx 2","PlayerID":7098955,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60776","ServerKey":"pl181","X":511,"Y":738},{"Bonus":0,"Continent":"K75","ID":60777,"Name":"Wioska czaka222","PlayerID":849120467,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60777","ServerKey":"pl181","X":571,"Y":728},{"Bonus":0,"Continent":"K52","ID":60778,"Name":"Wioska Lady Basia408","PlayerID":699330765,"Points":125,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60778","ServerKey":"pl181","X":272,"Y":560},{"Bonus":0,"Continent":"K73","ID":60779,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60779","ServerKey":"pl181","X":378,"Y":712},{"Bonus":0,"Continent":"K43","ID":60780,"Name":"Wioska Saladyn92t","PlayerID":849122738,"Points":438,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60780","ServerKey":"pl181","X":370,"Y":436},{"Bonus":0,"Continent":"K75","ID":60781,"Name":"078 - Budowanko!","PlayerID":7540891,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60781","ServerKey":"pl181","X":503,"Y":736},{"Bonus":0,"Continent":"K74","ID":60782,"Name":"Wioska yam1","PlayerID":8218433,"Points":172,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60782","ServerKey":"pl181","X":486,"Y":739},{"Bonus":0,"Continent":"K23","ID":60783,"Name":"Wioska bs160","PlayerID":2812197,"Points":280,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60783","ServerKey":"pl181","X":382,"Y":285},{"Bonus":0,"Continent":"K63","ID":60784,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":57,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60784","ServerKey":"pl181","X":338,"Y":676},{"Bonus":0,"Continent":"K42","ID":60785,"Name":"Wioska hmc.","PlayerID":699355948,"Points":38,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60785","ServerKey":"pl181","X":258,"Y":467},{"Bonus":0,"Continent":"K74","ID":60786,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60786","ServerKey":"pl181","X":405,"Y":716},{"Bonus":0,"Continent":"K25","ID":60787,"Name":"Wioska S3b3k1999","PlayerID":849121697,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60787","ServerKey":"pl181","X":584,"Y":282},{"Bonus":0,"Continent":"K52","ID":60788,"Name":"Wiocha","PlayerID":849122768,"Points":382,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60788","ServerKey":"pl181","X":284,"Y":584},{"Bonus":0,"Continent":"K66","ID":60789,"Name":"Wioska 127","PlayerID":848971079,"Points":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60789","ServerKey":"pl181","X":672,"Y":670},{"Bonus":0,"Continent":"K57","ID":60790,"Name":"Wioska Adrianxl95.","PlayerID":699707057,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60790","ServerKey":"pl181","X":742,"Y":521},{"Bonus":0,"Continent":"K37","ID":60791,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60791","ServerKey":"pl181","X":712,"Y":394},{"Bonus":0,"Continent":"K57","ID":60792,"Name":"Wioska Arto135","PlayerID":3840616,"Points":74,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60792","ServerKey":"pl181","X":729,"Y":556},{"Bonus":0,"Continent":"K74","ID":60793,"Name":"Wioska MANTOQ","PlayerID":8309492,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60793","ServerKey":"pl181","X":459,"Y":733},{"Bonus":0,"Continent":"K32","ID":60794,"Name":"Wioska LukaseQxxD","PlayerID":2130659,"Points":374,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60794","ServerKey":"pl181","X":294,"Y":377},{"Bonus":0,"Continent":"K57","ID":60795,"Name":"Wioska barbarzyƄska","PlayerID":848995478,"Points":387,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60795","ServerKey":"pl181","X":737,"Y":551},{"Bonus":0,"Continent":"K47","ID":60796,"Name":"WikingogrĂłd","PlayerID":848939434,"Points":233,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60796","ServerKey":"pl181","X":727,"Y":430},{"Bonus":0,"Continent":"K52","ID":60797,"Name":"Wioska --KEMPA--","PlayerID":6070734,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60797","ServerKey":"pl181","X":271,"Y":565},{"Bonus":0,"Continent":"K25","ID":60798,"Name":"Wioska barbarzyƄska","PlayerID":849064752,"Points":375,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60798","ServerKey":"pl181","X":522,"Y":257},{"Bonus":0,"Continent":"K47","ID":60799,"Name":"Grzelakb","PlayerID":849119223,"Points":394,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60799","ServerKey":"pl181","X":723,"Y":425},{"Bonus":0,"Continent":"K25","ID":60800,"Name":"North 115","PlayerID":849064752,"Points":528,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60800","ServerKey":"pl181","X":514,"Y":265},{"Bonus":0,"Continent":"K42","ID":60801,"Name":"Wioska BELOZ","PlayerID":849122819,"Points":95,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60801","ServerKey":"pl181","X":259,"Y":459},{"Bonus":0,"Continent":"K75","ID":60802,"Name":"Wioska SzefPatryƛ","PlayerID":849122821,"Points":64,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60802","ServerKey":"pl181","X":512,"Y":741},{"Bonus":0,"Continent":"K36","ID":60803,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60803","ServerKey":"pl181","X":639,"Y":308},{"Bonus":0,"Continent":"K67","ID":60804,"Name":"Wioska Sharkox","PlayerID":8728202,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60804","ServerKey":"pl181","X":716,"Y":608},{"Bonus":0,"Continent":"K42","ID":60805,"Name":"Wioska jmz41922","PlayerID":849122822,"Points":162,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60805","ServerKey":"pl181","X":278,"Y":417},{"Bonus":7,"Continent":"K74","ID":60806,"Name":"036","PlayerID":8268010,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60806","ServerKey":"pl181","X":443,"Y":732},{"Bonus":0,"Continent":"K57","ID":60807,"Name":"Wioska Agamemnon","PlayerID":699737563,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60807","ServerKey":"pl181","X":731,"Y":561},{"Bonus":0,"Continent":"K57","ID":60808,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60808","ServerKey":"pl181","X":737,"Y":507},{"Bonus":0,"Continent":"K25","ID":60809,"Name":"Wioska frrrantic","PlayerID":698747719,"Points":243,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60809","ServerKey":"pl181","X":520,"Y":260},{"Bonus":0,"Continent":"K76","ID":60810,"Name":"Wioska Mogok","PlayerID":7820575,"Points":183,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60810","ServerKey":"pl181","X":613,"Y":711},{"Bonus":0,"Continent":"K23","ID":60811,"Name":"Wioska barbarzyƄska","PlayerID":3484132,"Points":330,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60811","ServerKey":"pl181","X":377,"Y":298},{"Bonus":0,"Continent":"K25","ID":60812,"Name":"Wioska Lord Zabijaka1999","PlayerID":8773151,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60812","ServerKey":"pl181","X":509,"Y":256},{"Bonus":0,"Continent":"K47","ID":60813,"Name":"Wioska Chudy19","PlayerID":699856830,"Points":366,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60813","ServerKey":"pl181","X":738,"Y":449},{"Bonus":0,"Continent":"K42","ID":60814,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60814","ServerKey":"pl181","X":267,"Y":473},{"Bonus":0,"Continent":"K66","ID":60815,"Name":"Wioska miodek1143143","PlayerID":849031197,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60815","ServerKey":"pl181","X":671,"Y":673},{"Bonus":0,"Continent":"K52","ID":60816,"Name":"092 obrzeĆŒa","PlayerID":699510259,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60816","ServerKey":"pl181","X":268,"Y":560},{"Bonus":0,"Continent":"K33","ID":60817,"Name":"Wioska mayald","PlayerID":699873141,"Points":127,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60817","ServerKey":"pl181","X":326,"Y":331},{"Bonus":0,"Continent":"K36","ID":60818,"Name":"Wioska barbarzyƄska","PlayerID":698895940,"Points":281,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60818","ServerKey":"pl181","X":651,"Y":313},{"Bonus":7,"Continent":"K75","ID":60819,"Name":"Osada koczownikĂłw","PlayerID":699878511,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60819","ServerKey":"pl181","X":557,"Y":736},{"Bonus":0,"Continent":"K42","ID":60820,"Name":"Wioska rafixiem","PlayerID":699752776,"Points":246,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60820","ServerKey":"pl181","X":266,"Y":453},{"Bonus":0,"Continent":"K62","ID":60821,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60821","ServerKey":"pl181","X":297,"Y":624},{"Bonus":0,"Continent":"K66","ID":60822,"Name":"Wioska KAUN","PlayerID":849006194,"Points":180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60822","ServerKey":"pl181","X":661,"Y":674},{"Bonus":0,"Continent":"K24","ID":60823,"Name":"143.Stradi","PlayerID":698365960,"Points":96,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60823","ServerKey":"pl181","X":440,"Y":267},{"Bonus":0,"Continent":"K62","ID":60824,"Name":"Wioska Santa aka Dziadzia","PlayerID":698754087,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60824","ServerKey":"pl181","X":288,"Y":619},{"Bonus":0,"Continent":"K37","ID":60825,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":42,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60825","ServerKey":"pl181","X":703,"Y":364},{"Bonus":7,"Continent":"K36","ID":60826,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60826","ServerKey":"pl181","X":675,"Y":336},{"Bonus":0,"Continent":"K57","ID":60827,"Name":"Wioska Kokeszko94","PlayerID":849118761,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60827","ServerKey":"pl181","X":736,"Y":510},{"Bonus":0,"Continent":"K25","ID":60828,"Name":"PPF-57","PlayerID":1424656,"Points":97,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60828","ServerKey":"pl181","X":527,"Y":259},{"Bonus":0,"Continent":"K47","ID":60829,"Name":"Wioska Treon","PlayerID":849115010,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60829","ServerKey":"pl181","X":740,"Y":451},{"Bonus":0,"Continent":"K36","ID":60830,"Name":"Wioska barbarzyƄska","PlayerID":849037469,"Points":72,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60830","ServerKey":"pl181","X":626,"Y":301},{"Bonus":7,"Continent":"K76","ID":60831,"Name":"Osada koczownikĂłw","PlayerID":698191218,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60831","ServerKey":"pl181","X":611,"Y":712},{"Bonus":0,"Continent":"K75","ID":60832,"Name":"Wioska Patrz Ale Nie Zjadaj","PlayerID":698850319,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60832","ServerKey":"pl181","X":580,"Y":730},{"Bonus":0,"Continent":"K32","ID":60833,"Name":"WB47","PlayerID":356642,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60833","ServerKey":"pl181","X":298,"Y":374},{"Bonus":2,"Continent":"K73","ID":60834,"Name":"Osada koczownikĂłw","PlayerID":849014922,"Points":115,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60834","ServerKey":"pl181","X":388,"Y":715},{"Bonus":0,"Continent":"K36","ID":60835,"Name":"Wioska Brauer92","PlayerID":849098265,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60835","ServerKey":"pl181","X":626,"Y":365},{"Bonus":0,"Continent":"K25","ID":60836,"Name":"Wioska barbarzyƄska","PlayerID":849064752,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60836","ServerKey":"pl181","X":521,"Y":257},{"Bonus":0,"Continent":"K76","ID":60837,"Name":"Wioska adhd","PlayerID":849025839,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60837","ServerKey":"pl181","X":601,"Y":717},{"Bonus":0,"Continent":"K42","ID":60838,"Name":"Wioska kamera","PlayerID":849046397,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60838","ServerKey":"pl181","X":271,"Y":451},{"Bonus":0,"Continent":"K24","ID":60839,"Name":"Wioska barbarzyƄska","PlayerID":6343784,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60839","ServerKey":"pl181","X":420,"Y":270},{"Bonus":8,"Continent":"K25","ID":60840,"Name":"PPF-54","PlayerID":1424656,"Points":151,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60840","ServerKey":"pl181","X":529,"Y":260},{"Bonus":0,"Continent":"K24","ID":60841,"Name":"Wioska Ƃysy97","PlayerID":849023337,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60841","ServerKey":"pl181","X":493,"Y":256},{"Bonus":0,"Continent":"K66","ID":60842,"Name":"#173#","PlayerID":692803,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60842","ServerKey":"pl181","X":666,"Y":675},{"Bonus":0,"Continent":"K47","ID":60843,"Name":"Wioska extor98","PlayerID":849095446,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60843","ServerKey":"pl181","X":739,"Y":470},{"Bonus":0,"Continent":"K63","ID":60844,"Name":"Wioska heroarek","PlayerID":849117513,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60844","ServerKey":"pl181","X":325,"Y":667},{"Bonus":0,"Continent":"K76","ID":60845,"Name":"Wioska barbarzyƄska","PlayerID":698353083,"Points":535,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60845","ServerKey":"pl181","X":621,"Y":701},{"Bonus":0,"Continent":"K74","ID":60846,"Name":"Wioska Czaq1","PlayerID":849118231,"Points":111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60846","ServerKey":"pl181","X":492,"Y":735},{"Bonus":0,"Continent":"K47","ID":60847,"Name":"Wioska barbarzyƄska","PlayerID":2999957,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60847","ServerKey":"pl181","X":737,"Y":441},{"Bonus":0,"Continent":"K57","ID":60848,"Name":"Wioska Arletta82","PlayerID":3112100,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60848","ServerKey":"pl181","X":731,"Y":579},{"Bonus":0,"Continent":"K57","ID":60849,"Name":"Wioska barbarzyƄska","PlayerID":1601917,"Points":55,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60849","ServerKey":"pl181","X":741,"Y":504},{"Bonus":0,"Continent":"K25","ID":60850,"Name":"Wioska Wigerek","PlayerID":7910501,"Points":324,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60850","ServerKey":"pl181","X":531,"Y":264},{"Bonus":0,"Continent":"K47","ID":60851,"Name":"107. Wioska barbarzyƄska","PlayerID":7494497,"Points":133,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60851","ServerKey":"pl181","X":733,"Y":465},{"Bonus":0,"Continent":"K23","ID":60852,"Name":"181","PlayerID":848977118,"Points":469,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60852","ServerKey":"pl181","X":376,"Y":294},{"Bonus":0,"Continent":"K67","ID":60853,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60853","ServerKey":"pl181","X":702,"Y":639},{"Bonus":0,"Continent":"K57","ID":60854,"Name":"Wioska Albertini","PlayerID":848922517,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60854","ServerKey":"pl181","X":729,"Y":563},{"Bonus":0,"Continent":"K32","ID":60855,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60855","ServerKey":"pl181","X":284,"Y":384},{"Bonus":0,"Continent":"K33","ID":60856,"Name":"Melina","PlayerID":848909122,"Points":238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60856","ServerKey":"pl181","X":315,"Y":348},{"Bonus":0,"Continent":"K47","ID":60857,"Name":"Wioska barbarzyƄska","PlayerID":698191218,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60857","ServerKey":"pl181","X":733,"Y":458},{"Bonus":0,"Continent":"K33","ID":60858,"Name":"Wioska Botty","PlayerID":8055581,"Points":311,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60858","ServerKey":"pl181","X":316,"Y":347},{"Bonus":0,"Continent":"K42","ID":60859,"Name":"Wioska barbarzyƄska","PlayerID":634848,"Points":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60859","ServerKey":"pl181","X":283,"Y":406},{"Bonus":0,"Continent":"K36","ID":60860,"Name":"Wioska DonArturo","PlayerID":849108673,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60860","ServerKey":"pl181","X":665,"Y":320},{"Bonus":0,"Continent":"K36","ID":60861,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60861","ServerKey":"pl181","X":697,"Y":361},{"Bonus":0,"Continent":"K75","ID":60862,"Name":"Wioska przemekagatki","PlayerID":699802009,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60862","ServerKey":"pl181","X":594,"Y":715},{"Bonus":0,"Continent":"K66","ID":60863,"Name":"001","PlayerID":698410946,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60863","ServerKey":"pl181","X":654,"Y":686},{"Bonus":0,"Continent":"K66","ID":60864,"Name":"Wioska barbarzyƄska","PlayerID":8627359,"Points":190,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60864","ServerKey":"pl181","X":663,"Y":668},{"Bonus":0,"Continent":"K32","ID":60865,"Name":"Wioska Lech798","PlayerID":698743511,"Points":288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60865","ServerKey":"pl181","X":288,"Y":384},{"Bonus":0,"Continent":"K75","ID":60866,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":51,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60866","ServerKey":"pl181","X":561,"Y":726},{"Bonus":0,"Continent":"K42","ID":60867,"Name":"Wioska brutal29","PlayerID":698655576,"Points":56,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60867","ServerKey":"pl181","X":258,"Y":482},{"Bonus":0,"Continent":"K57","ID":60868,"Name":"Wioska barbarzyƄska","PlayerID":848946700,"Points":111,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60868","ServerKey":"pl181","X":717,"Y":589},{"Bonus":0,"Continent":"K63","ID":60869,"Name":"Wioska Andragon21","PlayerID":8197987,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60869","ServerKey":"pl181","X":324,"Y":660},{"Bonus":0,"Continent":"K57","ID":60870,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60870","ServerKey":"pl181","X":738,"Y":519},{"Bonus":0,"Continent":"K63","ID":60871,"Name":"Wioska Dawidoxil96","PlayerID":849119163,"Points":248,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60871","ServerKey":"pl181","X":337,"Y":673},{"Bonus":0,"Continent":"K47","ID":60872,"Name":"A#056","PlayerID":2065730,"Points":221,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60872","ServerKey":"pl181","X":734,"Y":479},{"Bonus":0,"Continent":"K63","ID":60873,"Name":"Wioska Savek","PlayerID":699868399,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60873","ServerKey":"pl181","X":310,"Y":648},{"Bonus":0,"Continent":"K52","ID":60874,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60874","ServerKey":"pl181","X":262,"Y":535},{"Bonus":0,"Continent":"K34","ID":60875,"Name":"Wioska Szymonos420","PlayerID":849121196,"Points":238,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60875","ServerKey":"pl181","X":488,"Y":324},{"Bonus":0,"Continent":"K32","ID":60876,"Name":"Wioska Bellu","PlayerID":849061418,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60876","ServerKey":"pl181","X":299,"Y":377},{"Bonus":0,"Continent":"K52","ID":60877,"Name":"C0357","PlayerID":8841266,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60877","ServerKey":"pl181","X":259,"Y":518},{"Bonus":0,"Continent":"K74","ID":60878,"Name":"Wioska stefek alibaba","PlayerID":849010955,"Points":105,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60878","ServerKey":"pl181","X":487,"Y":736},{"Bonus":0,"Continent":"K37","ID":60879,"Name":"058","PlayerID":849091105,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60879","ServerKey":"pl181","X":714,"Y":383},{"Bonus":0,"Continent":"K42","ID":60880,"Name":"Wioska KESHIK","PlayerID":9006528,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60880","ServerKey":"pl181","X":274,"Y":439},{"Bonus":0,"Continent":"K64","ID":60881,"Name":"Wioska MiczMicz","PlayerID":699630393,"Points":104,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60881","ServerKey":"pl181","X":491,"Y":672},{"Bonus":0,"Continent":"K42","ID":60882,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60882","ServerKey":"pl181","X":258,"Y":470},{"Bonus":0,"Continent":"K57","ID":60883,"Name":"Wioska boyka8721","PlayerID":848888394,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60883","ServerKey":"pl181","X":730,"Y":577},{"Bonus":0,"Continent":"K52","ID":60884,"Name":"093 obrzeĆŒa","PlayerID":699510259,"Points":61,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60884","ServerKey":"pl181","X":263,"Y":562},{"Bonus":0,"Continent":"K74","ID":60885,"Name":"Wioska KeymilLoveOrHate","PlayerID":849022907,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60885","ServerKey":"pl181","X":435,"Y":736},{"Bonus":0,"Continent":"K75","ID":60886,"Name":"Wioska Sir Hood","PlayerID":7663945,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60886","ServerKey":"pl181","X":568,"Y":729},{"Bonus":0,"Continent":"K57","ID":60887,"Name":"W kontakcie","PlayerID":848932879,"Points":71,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60887","ServerKey":"pl181","X":735,"Y":559},{"Bonus":0,"Continent":"K52","ID":60888,"Name":"Wioska Krasnoludek.Mędrek","PlayerID":849009059,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60888","ServerKey":"pl181","X":268,"Y":562},{"Bonus":0,"Continent":"K37","ID":60889,"Name":"Wioska barbarzyƄska","PlayerID":699598425,"Points":199,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60889","ServerKey":"pl181","X":714,"Y":398},{"Bonus":0,"Continent":"K52","ID":60890,"Name":"Wioska KARY1988","PlayerID":3824463,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60890","ServerKey":"pl181","X":255,"Y":517},{"Bonus":0,"Continent":"K75","ID":60891,"Name":"75003","PlayerID":8320319,"Points":116,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60891","ServerKey":"pl181","X":552,"Y":728},{"Bonus":0,"Continent":"K63","ID":60892,"Name":"Wioska xMario25x","PlayerID":848910971,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60892","ServerKey":"pl181","X":316,"Y":663},{"Bonus":0,"Continent":"K47","ID":60893,"Name":"Jehu_Kingdom_70","PlayerID":8785314,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60893","ServerKey":"pl181","X":722,"Y":409},{"Bonus":0,"Continent":"K47","ID":60894,"Name":"Wioska VencedorPL","PlayerID":699842078,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60894","ServerKey":"pl181","X":744,"Y":473},{"Bonus":0,"Continent":"K33","ID":60895,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60895","ServerKey":"pl181","X":305,"Y":369},{"Bonus":0,"Continent":"K73","ID":60896,"Name":"Wioska merty","PlayerID":699847354,"Points":286,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60896","ServerKey":"pl181","X":380,"Y":708},{"Bonus":0,"Continent":"K62","ID":60897,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60897","ServerKey":"pl181","X":297,"Y":637},{"Bonus":0,"Continent":"K76","ID":60898,"Name":"Wioska Mroczne Elfy 1","PlayerID":849113868,"Points":102,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60898","ServerKey":"pl181","X":620,"Y":706},{"Bonus":0,"Continent":"K74","ID":60899,"Name":"Wioska zapomniaƂem hasƂa","PlayerID":848911863,"Points":288,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60899","ServerKey":"pl181","X":446,"Y":735},{"Bonus":0,"Continent":"K74","ID":60900,"Name":"Wioska ndse","PlayerID":848980119,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60900","ServerKey":"pl181","X":474,"Y":737},{"Bonus":0,"Continent":"K57","ID":60901,"Name":"Wioska bsju","PlayerID":848980120,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60901","ServerKey":"pl181","X":732,"Y":549},{"Bonus":0,"Continent":"K32","ID":60902,"Name":"WB46","PlayerID":356642,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60902","ServerKey":"pl181","X":291,"Y":378},{"Bonus":0,"Continent":"K25","ID":60903,"Name":"Wioska gsno","PlayerID":848980456,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60903","ServerKey":"pl181","X":504,"Y":257},{"Bonus":0,"Continent":"K24","ID":60904,"Name":"Wioska barbarzyƄska","PlayerID":849085160,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60904","ServerKey":"pl181","X":401,"Y":280},{"Bonus":0,"Continent":"K33","ID":60905,"Name":"Wioska khiu","PlayerID":848980458,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60905","ServerKey":"pl181","X":302,"Y":371},{"Bonus":0,"Continent":"K37","ID":60906,"Name":"Wioska cvde","PlayerID":848980459,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60906","ServerKey":"pl181","X":709,"Y":372},{"Bonus":0,"Continent":"K25","ID":60907,"Name":"Wioska fswq","PlayerID":848980460,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60907","ServerKey":"pl181","X":588,"Y":272},{"Bonus":0,"Continent":"K36","ID":60908,"Name":"Wioska nipki","PlayerID":848980461,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60908","ServerKey":"pl181","X":673,"Y":335},{"Bonus":0,"Continent":"K63","ID":60909,"Name":"Wioska veru","PlayerID":848980492,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60909","ServerKey":"pl181","X":316,"Y":647},{"Bonus":0,"Continent":"K47","ID":60910,"Name":"Wioska tews","PlayerID":848980493,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60910","ServerKey":"pl181","X":731,"Y":425},{"Bonus":0,"Continent":"K33","ID":60911,"Name":"Wioska laszc","PlayerID":848980494,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60911","ServerKey":"pl181","X":323,"Y":341},{"Bonus":0,"Continent":"K33","ID":60912,"Name":"Wioska nmih","PlayerID":848980495,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60912","ServerKey":"pl181","X":349,"Y":312},{"Bonus":0,"Continent":"K52","ID":60913,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":42,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60913","ServerKey":"pl181","X":278,"Y":592},{"Bonus":0,"Continent":"K74","ID":60914,"Name":"Wioska afad","PlayerID":848980496,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60914","ServerKey":"pl181","X":412,"Y":719},{"Bonus":0,"Continent":"K74","ID":60915,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60915","ServerKey":"pl181","X":418,"Y":731},{"Bonus":0,"Continent":"K24","ID":60916,"Name":"Wioska freaky97","PlayerID":699011096,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60916","ServerKey":"pl181","X":436,"Y":274},{"Bonus":0,"Continent":"K24","ID":60917,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60917","ServerKey":"pl181","X":473,"Y":264},{"Bonus":0,"Continent":"K47","ID":60918,"Name":"Wioska vosd","PlayerID":848980497,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60918","ServerKey":"pl181","X":740,"Y":447},{"Bonus":0,"Continent":"K66","ID":60919,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":54,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60919","ServerKey":"pl181","X":651,"Y":687},{"Bonus":0,"Continent":"K52","ID":60920,"Name":"Wioska amlk","PlayerID":848980498,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60920","ServerKey":"pl181","X":269,"Y":582},{"Bonus":0,"Continent":"K36","ID":60921,"Name":"Wioska filip9399","PlayerID":698592565,"Points":101,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60921","ServerKey":"pl181","X":659,"Y":327},{"Bonus":0,"Continent":"K73","ID":60922,"Name":"Wioska warmonger","PlayerID":849065566,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60922","ServerKey":"pl181","X":393,"Y":718},{"Bonus":0,"Continent":"K36","ID":60923,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60923","ServerKey":"pl181","X":695,"Y":357},{"Bonus":0,"Continent":"K23","ID":60924,"Name":"Wioska Lady K8","PlayerID":699668392,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60924","ServerKey":"pl181","X":392,"Y":280},{"Bonus":0,"Continent":"K63","ID":60925,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":55,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60925","ServerKey":"pl181","X":346,"Y":691},{"Bonus":23,"Continent":"K42","ID":60926,"Name":"Twierdza (ANS)","PlayerID":0,"Points":2511,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60926","ServerKey":"pl181","X":293,"Y":420},{"Bonus":0,"Continent":"K67","ID":60927,"Name":"Wioska lucko5","PlayerID":699756403,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60927","ServerKey":"pl181","X":700,"Y":626},{"Bonus":0,"Continent":"K42","ID":60928,"Name":"Lukaczka","PlayerID":849123125,"Points":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60928","ServerKey":"pl181","X":265,"Y":491},{"Bonus":0,"Continent":"K23","ID":60929,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60929","ServerKey":"pl181","X":391,"Y":282},{"Bonus":6,"Continent":"K24","ID":60930,"Name":"Osada koczownikĂłw","PlayerID":699278528,"Points":134,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60930","ServerKey":"pl181","X":464,"Y":264},{"Bonus":0,"Continent":"K42","ID":60931,"Name":"Wioska farmerzestoczka","PlayerID":849123128,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60931","ServerKey":"pl181","X":262,"Y":483},{"Bonus":0,"Continent":"K36","ID":60933,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60933","ServerKey":"pl181","X":672,"Y":336},{"Bonus":0,"Continent":"K25","ID":60934,"Name":"Wioska Ljuboja1916","PlayerID":849123135,"Points":43,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60934","ServerKey":"pl181","X":531,"Y":260},{"Bonus":0,"Continent":"K75","ID":60935,"Name":"!Wioska barbarzyƄska","PlayerID":8779575,"Points":398,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60935","ServerKey":"pl181","X":584,"Y":718},{"Bonus":8,"Continent":"K52","ID":60936,"Name":"0000048Z","PlayerID":849089881,"Points":170,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60936","ServerKey":"pl181","X":271,"Y":572},{"Bonus":0,"Continent":"K33","ID":60937,"Name":"Wioska Kox12344","PlayerID":849115509,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60937","ServerKey":"pl181","X":374,"Y":302},{"Bonus":0,"Continent":"K75","ID":60938,"Name":"Wioska pawka283","PlayerID":849121320,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60938","ServerKey":"pl181","X":539,"Y":741},{"Bonus":0,"Continent":"K36","ID":60939,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60939","ServerKey":"pl181","X":655,"Y":310},{"Bonus":0,"Continent":"K57","ID":60940,"Name":"Wioska kondzio95rrr","PlayerID":699054327,"Points":160,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60940","ServerKey":"pl181","X":732,"Y":555},{"Bonus":0,"Continent":"K76","ID":60941,"Name":"Wioska Co biedaa","PlayerID":849003332,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60941","ServerKey":"pl181","X":606,"Y":716},{"Bonus":0,"Continent":"K47","ID":60942,"Name":"Wioska jesslexuwuowo","PlayerID":849123162,"Points":83,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60942","ServerKey":"pl181","X":725,"Y":412},{"Bonus":0,"Continent":"K52","ID":60943,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60943","ServerKey":"pl181","X":259,"Y":543},{"Bonus":0,"Continent":"K74","ID":60944,"Name":"Wioska Marass","PlayerID":849100349,"Points":179,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60944","ServerKey":"pl181","X":469,"Y":741},{"Bonus":0,"Continent":"K67","ID":60945,"Name":"Wioska 126","PlayerID":848971079,"Points":80,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60945","ServerKey":"pl181","X":705,"Y":631},{"Bonus":0,"Continent":"K42","ID":60946,"Name":"Flagi","PlayerID":699633365,"Points":668,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60946","ServerKey":"pl181","X":273,"Y":415},{"Bonus":0,"Continent":"K42","ID":60947,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":54,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60947","ServerKey":"pl181","X":261,"Y":461},{"Bonus":0,"Continent":"K37","ID":60948,"Name":"Wioska Bombelnik","PlayerID":849016425,"Points":143,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60948","ServerKey":"pl181","X":700,"Y":375},{"Bonus":0,"Continent":"K75","ID":60949,"Name":"!Wioska barbarzyƄska","PlayerID":8779575,"Points":234,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60949","ServerKey":"pl181","X":581,"Y":722},{"Bonus":0,"Continent":"K34","ID":60950,"Name":"Wioska Kanut","PlayerID":698791053,"Points":208,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60950","ServerKey":"pl181","X":426,"Y":398},{"Bonus":0,"Continent":"K52","ID":60951,"Name":"Wioska Vi-vali","PlayerID":1867410,"Points":236,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60951","ServerKey":"pl181","X":274,"Y":570},{"Bonus":0,"Continent":"K36","ID":60952,"Name":"050. Wioska barbarzyƄska","PlayerID":2873154,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60952","ServerKey":"pl181","X":688,"Y":351},{"Bonus":2,"Continent":"K57","ID":60953,"Name":"Osada koczownikĂłw","PlayerID":1601917,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60953","ServerKey":"pl181","X":740,"Y":522},{"Bonus":0,"Continent":"K42","ID":60954,"Name":"Wioska Szp4Q","PlayerID":848951699,"Points":129,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60954","ServerKey":"pl181","X":281,"Y":417},{"Bonus":0,"Continent":"K75","ID":60955,"Name":"!Wioska barbarzyƄska","PlayerID":8779575,"Points":123,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60955","ServerKey":"pl181","X":585,"Y":727},{"Bonus":0,"Continent":"K75","ID":60956,"Name":"Wioska 100dni","PlayerID":699878952,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60956","ServerKey":"pl181","X":505,"Y":742},{"Bonus":0,"Continent":"K36","ID":60957,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60957","ServerKey":"pl181","X":696,"Y":364},{"Bonus":0,"Continent":"K24","ID":60958,"Name":"Wioska gumis111","PlayerID":849122931,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60958","ServerKey":"pl181","X":454,"Y":260},{"Bonus":0,"Continent":"K75","ID":60959,"Name":"!Wioska barbarzyƄska","PlayerID":8779575,"Points":109,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60959","ServerKey":"pl181","X":585,"Y":729},{"Bonus":0,"Continent":"K76","ID":60960,"Name":"Wioska prince rudeboy","PlayerID":9234594,"Points":155,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60960","ServerKey":"pl181","X":617,"Y":711},{"Bonus":0,"Continent":"K75","ID":60961,"Name":"Wioska Lis44","PlayerID":699773770,"Points":64,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60961","ServerKey":"pl181","X":567,"Y":736},{"Bonus":0,"Continent":"K74","ID":60962,"Name":"Wioska barbarzyƄska","PlayerID":849014922,"Points":28,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60962","ServerKey":"pl181","X":404,"Y":725},{"Bonus":0,"Continent":"K36","ID":60963,"Name":"Wioska SwwQ","PlayerID":8312412,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60963","ServerKey":"pl181","X":687,"Y":341},{"Bonus":0,"Continent":"K57","ID":60964,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":52,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60964","ServerKey":"pl181","X":737,"Y":521},{"Bonus":0,"Continent":"K76","ID":60965,"Name":"Wioska jordonjbe","PlayerID":849108915,"Points":180,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60965","ServerKey":"pl181","X":614,"Y":709},{"Bonus":0,"Continent":"K24","ID":60966,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60966","ServerKey":"pl181","X":468,"Y":264},{"Bonus":0,"Continent":"K24","ID":60967,"Name":"Wioska B.E.R.S.E.R.","PlayerID":698645802,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60967","ServerKey":"pl181","X":447,"Y":268},{"Bonus":0,"Continent":"K24","ID":60968,"Name":"Wioska Forwalls","PlayerID":849064715,"Points":132,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60968","ServerKey":"pl181","X":470,"Y":266},{"Bonus":0,"Continent":"K42","ID":60969,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60969","ServerKey":"pl181","X":260,"Y":459},{"Bonus":0,"Continent":"K42","ID":60970,"Name":"Wioska playbackp","PlayerID":698226224,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60970","ServerKey":"pl181","X":267,"Y":425},{"Bonus":0,"Continent":"K33","ID":60971,"Name":"Wioska barbarzyƄska","PlayerID":699796330,"Points":118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60971","ServerKey":"pl181","X":350,"Y":319},{"Bonus":0,"Continent":"K36","ID":60972,"Name":"Wioska Saintros","PlayerID":699788972,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60972","ServerKey":"pl181","X":686,"Y":357},{"Bonus":0,"Continent":"K24","ID":60973,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":42,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60973","ServerKey":"pl181","X":447,"Y":267},{"Bonus":0,"Continent":"K33","ID":60974,"Name":"Wioska zdziƛ123","PlayerID":849123002,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60974","ServerKey":"pl181","X":365,"Y":304},{"Bonus":0,"Continent":"K57","ID":60975,"Name":"Wioska JeGrzegorz","PlayerID":2620389,"Points":62,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60975","ServerKey":"pl181","X":726,"Y":570},{"Bonus":0,"Continent":"K57","ID":60976,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60976","ServerKey":"pl181","X":725,"Y":589},{"Bonus":0,"Continent":"K37","ID":60977,"Name":"Wioska Dom Kichot","PlayerID":849028071,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60977","ServerKey":"pl181","X":704,"Y":383},{"Bonus":0,"Continent":"K37","ID":60978,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60978","ServerKey":"pl181","X":704,"Y":369},{"Bonus":0,"Continent":"K47","ID":60979,"Name":"Wioska NeXi","PlayerID":698850251,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60979","ServerKey":"pl181","X":719,"Y":412},{"Bonus":0,"Continent":"K25","ID":60980,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":45,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60980","ServerKey":"pl181","X":578,"Y":274},{"Bonus":0,"Continent":"K52","ID":60981,"Name":"Wioska Kluha Jo","PlayerID":849029077,"Points":141,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60981","ServerKey":"pl181","X":277,"Y":579},{"Bonus":0,"Continent":"K57","ID":60982,"Name":"Wioska gsxr600k2","PlayerID":699084064,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60982","ServerKey":"pl181","X":720,"Y":590},{"Bonus":0,"Continent":"K75","ID":60983,"Name":"Wioska techniq","PlayerID":698658087,"Points":67,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60983","ServerKey":"pl181","X":501,"Y":740},{"Bonus":0,"Continent":"K73","ID":60984,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":38,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60984","ServerKey":"pl181","X":369,"Y":703},{"Bonus":0,"Continent":"K23","ID":60985,"Name":"Wioska vaksso","PlayerID":8551316,"Points":113,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60985","ServerKey":"pl181","X":379,"Y":291},{"Bonus":0,"Continent":"K47","ID":60986,"Name":"23 Odszkodowanie","PlayerID":849101845,"Points":216,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60986","ServerKey":"pl181","X":731,"Y":462},{"Bonus":0,"Continent":"K63","ID":60987,"Name":"AAA 1","PlayerID":1809381,"Points":368,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60987","ServerKey":"pl181","X":306,"Y":651},{"Bonus":0,"Continent":"K52","ID":60988,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60988","ServerKey":"pl181","X":260,"Y":537},{"Bonus":0,"Continent":"K37","ID":60989,"Name":"ja tylko na moment xD","PlayerID":699825797,"Points":201,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60989","ServerKey":"pl181","X":706,"Y":387},{"Bonus":0,"Continent":"K26","ID":60990,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60990","ServerKey":"pl181","X":601,"Y":287},{"Bonus":0,"Continent":"K25","ID":60991,"Name":"Wioska lukaku","PlayerID":849040332,"Points":65,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60991","ServerKey":"pl181","X":526,"Y":256},{"Bonus":0,"Continent":"K66","ID":60992,"Name":"Wioska barbarzyƄska","PlayerID":848971079,"Points":37,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60992","ServerKey":"pl181","X":693,"Y":644},{"Bonus":0,"Continent":"K33","ID":60993,"Name":"Chwaliszew","PlayerID":849112510,"Points":168,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60993","ServerKey":"pl181","X":350,"Y":315},{"Bonus":0,"Continent":"K47","ID":60994,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60994","ServerKey":"pl181","X":732,"Y":438},{"Bonus":0,"Continent":"K73","ID":60995,"Name":"Wioska Mateo1315","PlayerID":849052549,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60995","ServerKey":"pl181","X":379,"Y":710},{"Bonus":0,"Continent":"K63","ID":60996,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60996","ServerKey":"pl181","X":334,"Y":671},{"Bonus":0,"Continent":"K24","ID":60997,"Name":"Wioska dragon622","PlayerID":7831811,"Points":270,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60997","ServerKey":"pl181","X":416,"Y":294},{"Bonus":0,"Continent":"K63","ID":60998,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60998","ServerKey":"pl181","X":301,"Y":644},{"Bonus":0,"Continent":"K47","ID":60999,"Name":"Wioska Knoxpl","PlayerID":849113485,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=60999","ServerKey":"pl181","X":735,"Y":428},{"Bonus":0,"Continent":"K67","ID":61000,"Name":"Wioska DĆŒejdĆŒejj","PlayerID":849046647,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61000","ServerKey":"pl181","X":710,"Y":627},{"Bonus":0,"Continent":"K63","ID":61001,"Name":"Camelot","PlayerID":5999909,"Points":191,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61001","ServerKey":"pl181","X":331,"Y":672},{"Bonus":0,"Continent":"K33","ID":61002,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":36,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61002","ServerKey":"pl181","X":315,"Y":352},{"Bonus":0,"Continent":"K73","ID":61003,"Name":"Wioska donpabloone","PlayerID":699618066,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61003","ServerKey":"pl181","X":399,"Y":712},{"Bonus":0,"Continent":"K67","ID":61004,"Name":"Wioska barbarzyƄska","PlayerID":698867483,"Points":76,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61004","ServerKey":"pl181","X":716,"Y":613},{"Bonus":0,"Continent":"K62","ID":61005,"Name":"Wioska TheMooon","PlayerID":849054606,"Points":205,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61005","ServerKey":"pl181","X":288,"Y":621},{"Bonus":0,"Continent":"K26","ID":61006,"Name":"Wioska wojtas0112","PlayerID":8106333,"Points":263,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61006","ServerKey":"pl181","X":615,"Y":284},{"Bonus":0,"Continent":"K47","ID":61007,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61007","ServerKey":"pl181","X":725,"Y":403},{"Bonus":0,"Continent":"K66","ID":61008,"Name":"Wioska marekkkzzz665","PlayerID":699798611,"Points":252,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61008","ServerKey":"pl181","X":631,"Y":696},{"Bonus":0,"Continent":"K63","ID":61009,"Name":"Wioska Luu123","PlayerID":849072855,"Points":93,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61009","ServerKey":"pl181","X":338,"Y":684},{"Bonus":0,"Continent":"K74","ID":61010,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61010","ServerKey":"pl181","X":480,"Y":743},{"Bonus":0,"Continent":"K52","ID":61011,"Name":"Wioska Stefan Batory V","PlayerID":849112561,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61011","ServerKey":"pl181","X":268,"Y":579},{"Bonus":0,"Continent":"K26","ID":61012,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":46,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61012","ServerKey":"pl181","X":620,"Y":292},{"Bonus":0,"Continent":"K33","ID":61013,"Name":"Wioska Gumaty","PlayerID":849108350,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61013","ServerKey":"pl181","X":320,"Y":336},{"Bonus":0,"Continent":"K42","ID":61014,"Name":"Wioska DiscoZenon","PlayerID":849112666,"Points":144,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61014","ServerKey":"pl181","X":259,"Y":482},{"Bonus":0,"Continent":"K24","ID":61015,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61015","ServerKey":"pl181","X":411,"Y":282},{"Bonus":0,"Continent":"K63","ID":61016,"Name":"Wioska Sewo2137","PlayerID":849123267,"Points":165,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61016","ServerKey":"pl181","X":311,"Y":645},{"Bonus":0,"Continent":"K42","ID":61017,"Name":"Wioska Harasi","PlayerID":8890611,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61017","ServerKey":"pl181","X":270,"Y":443},{"Bonus":0,"Continent":"K47","ID":61018,"Name":"Wioska Mozzie","PlayerID":849088429,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61018","ServerKey":"pl181","X":734,"Y":497},{"Bonus":0,"Continent":"K24","ID":61019,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":38,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61019","ServerKey":"pl181","X":499,"Y":259},{"Bonus":0,"Continent":"K36","ID":61020,"Name":"Wioska Layton","PlayerID":849120889,"Points":47,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61020","ServerKey":"pl181","X":691,"Y":365},{"Bonus":0,"Continent":"K25","ID":61021,"Name":"119 Wioska barbarzyƄska","PlayerID":699854484,"Points":41,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61021","ServerKey":"pl181","X":566,"Y":271},{"Bonus":5,"Continent":"K63","ID":61022,"Name":"Wioska 0028","PlayerID":9186126,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61022","ServerKey":"pl181","X":335,"Y":682},{"Bonus":0,"Continent":"K24","ID":61023,"Name":"Wioska maciej55413","PlayerID":9012894,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61023","ServerKey":"pl181","X":497,"Y":255},{"Bonus":0,"Continent":"K66","ID":61024,"Name":"Wioska barbarzyƄska","PlayerID":1415009,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61024","ServerKey":"pl181","X":669,"Y":671},{"Bonus":0,"Continent":"K74","ID":61025,"Name":"Metropolia","PlayerID":849041557,"Points":98,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61025","ServerKey":"pl181","X":430,"Y":736},{"Bonus":0,"Continent":"K47","ID":61026,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61026","ServerKey":"pl181","X":736,"Y":449},{"Bonus":0,"Continent":"K24","ID":61027,"Name":"Wioska xFeFe","PlayerID":699700007,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61027","ServerKey":"pl181","X":481,"Y":262},{"Bonus":0,"Continent":"K57","ID":61028,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61028","ServerKey":"pl181","X":736,"Y":509},{"Bonus":0,"Continent":"K37","ID":61029,"Name":"Wioska Tomasz Stanek","PlayerID":849083705,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61029","ServerKey":"pl181","X":702,"Y":362},{"Bonus":0,"Continent":"K33","ID":61030,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61030","ServerKey":"pl181","X":334,"Y":329},{"Bonus":0,"Continent":"K75","ID":61031,"Name":"Wioska HinduKush","PlayerID":849121504,"Points":107,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61031","ServerKey":"pl181","X":564,"Y":733},{"Bonus":0,"Continent":"K57","ID":61032,"Name":"Wioska barbarzyƄska","PlayerID":2453888,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61032","ServerKey":"pl181","X":724,"Y":569},{"Bonus":0,"Continent":"K75","ID":61033,"Name":"Wioska TeroXer s","PlayerID":6577211,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61033","ServerKey":"pl181","X":577,"Y":730},{"Bonus":0,"Continent":"K26","ID":61034,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61034","ServerKey":"pl181","X":618,"Y":298},{"Bonus":0,"Continent":"K36","ID":61035,"Name":"Wioska champion271","PlayerID":699864609,"Points":81,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61035","ServerKey":"pl181","X":670,"Y":329},{"Bonus":0,"Continent":"K24","ID":61036,"Name":"Wioska Pokraczny850","PlayerID":699790202,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61036","ServerKey":"pl181","X":440,"Y":272},{"Bonus":0,"Continent":"K63","ID":61037,"Name":"Wioska jedyny1taki","PlayerID":1626626,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61037","ServerKey":"pl181","X":323,"Y":657},{"Bonus":0,"Continent":"K76","ID":61038,"Name":"Wioska barbarzyƄska","PlayerID":699189792,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61038","ServerKey":"pl181","X":609,"Y":714},{"Bonus":0,"Continent":"K47","ID":61039,"Name":"Wioska Kolodzij","PlayerID":849118616,"Points":118,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61039","ServerKey":"pl181","X":723,"Y":417},{"Bonus":0,"Continent":"K24","ID":61040,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61040","ServerKey":"pl181","X":491,"Y":259},{"Bonus":0,"Continent":"K66","ID":61041,"Name":"Wioska FAST ROTHMANS","PlayerID":849111052,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61041","ServerKey":"pl181","X":637,"Y":690},{"Bonus":0,"Continent":"K62","ID":61042,"Name":"Wioska barbarzyƄska","PlayerID":2289134,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61042","ServerKey":"pl181","X":293,"Y":628},{"Bonus":0,"Continent":"K57","ID":61043,"Name":"Wioska spokojnabaƛka123","PlayerID":849120763,"Points":64,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61043","ServerKey":"pl181","X":739,"Y":536},{"Bonus":0,"Continent":"K74","ID":61044,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61044","ServerKey":"pl181","X":400,"Y":722},{"Bonus":0,"Continent":"K66","ID":61045,"Name":"Wioska GrubsonSzczecin","PlayerID":7286392,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61045","ServerKey":"pl181","X":674,"Y":670},{"Bonus":0,"Continent":"K26","ID":61046,"Name":"Wioska milosz21","PlayerID":849088914,"Points":75,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61046","ServerKey":"pl181","X":614,"Y":283},{"Bonus":0,"Continent":"K63","ID":61047,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":29,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61047","ServerKey":"pl181","X":314,"Y":656},{"Bonus":0,"Continent":"K25","ID":61048,"Name":"Wioska Lord Sir bogdan","PlayerID":9071253,"Points":148,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61048","ServerKey":"pl181","X":547,"Y":264},{"Bonus":0,"Continent":"K47","ID":61049,"Name":"Wioska Anakin97","PlayerID":849100416,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61049","ServerKey":"pl181","X":734,"Y":430},{"Bonus":0,"Continent":"K74","ID":61050,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":39,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61050","ServerKey":"pl181","X":465,"Y":741},{"Bonus":0,"Continent":"K36","ID":61052,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":33,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61052","ServerKey":"pl181","X":699,"Y":355},{"Bonus":0,"Continent":"K75","ID":61053,"Name":"Wioska dragonk6","PlayerID":698486277,"Points":196,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61053","ServerKey":"pl181","X":513,"Y":742},{"Bonus":0,"Continent":"K47","ID":61054,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61054","ServerKey":"pl181","X":744,"Y":492},{"Bonus":0,"Continent":"K52","ID":61055,"Name":"Wioska xandread","PlayerID":699702049,"Points":74,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61055","ServerKey":"pl181","X":256,"Y":525},{"Bonus":0,"Continent":"K42","ID":61056,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61056","ServerKey":"pl181","X":274,"Y":419},{"Bonus":0,"Continent":"K24","ID":61057,"Name":"Wioska Rwa1","PlayerID":848957736,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61057","ServerKey":"pl181","X":404,"Y":284},{"Bonus":0,"Continent":"K24","ID":61058,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":35,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61058","ServerKey":"pl181","X":490,"Y":255},{"Bonus":0,"Continent":"K47","ID":61059,"Name":"Wioska millxd12","PlayerID":849123286,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61059","ServerKey":"pl181","X":718,"Y":409},{"Bonus":0,"Continent":"K36","ID":61060,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61060","ServerKey":"pl181","X":645,"Y":310},{"Bonus":0,"Continent":"K47","ID":61061,"Name":"c-1","PlayerID":699845179,"Points":204,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61061","ServerKey":"pl181","X":725,"Y":407},{"Bonus":0,"Continent":"K75","ID":61062,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61062","ServerKey":"pl181","X":576,"Y":721},{"Bonus":0,"Continent":"K36","ID":61063,"Name":"Wioska K@Ts","PlayerID":2266562,"Points":198,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61063","ServerKey":"pl181","X":637,"Y":302},{"Bonus":0,"Continent":"K33","ID":61064,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":44,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61064","ServerKey":"pl181","X":309,"Y":349},{"Bonus":0,"Continent":"K74","ID":61065,"Name":"Wioska Martin1991","PlayerID":699027000,"Points":119,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61065","ServerKey":"pl181","X":486,"Y":745},{"Bonus":0,"Continent":"K76","ID":61066,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61066","ServerKey":"pl181","X":614,"Y":715},{"Bonus":0,"Continent":"K66","ID":61067,"Name":"Wioska Legiatto","PlayerID":849122864,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61067","ServerKey":"pl181","X":659,"Y":675},{"Bonus":0,"Continent":"K74","ID":61068,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":28,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61068","ServerKey":"pl181","X":471,"Y":738},{"Bonus":0,"Continent":"K57","ID":61069,"Name":"Wioska Darma dla zawodnika","PlayerID":849096606,"Points":48,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61069","ServerKey":"pl181","X":731,"Y":550},{"Bonus":0,"Continent":"K24","ID":61070,"Name":"Wioska TakiKris","PlayerID":848905770,"Points":211,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61070","ServerKey":"pl181","X":424,"Y":270},{"Bonus":0,"Continent":"K25","ID":61071,"Name":"Wioska barbarzyƄska","PlayerID":699854484,"Points":28,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61071","ServerKey":"pl181","X":543,"Y":263},{"Bonus":0,"Continent":"K57","ID":61072,"Name":"Wioska peterw21","PlayerID":699797065,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61072","ServerKey":"pl181","X":726,"Y":593},{"Bonus":0,"Continent":"K24","ID":61073,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61073","ServerKey":"pl181","X":496,"Y":264},{"Bonus":0,"Continent":"K36","ID":61074,"Name":"Wioska Baku97","PlayerID":699826338,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61074","ServerKey":"pl181","X":647,"Y":312},{"Bonus":0,"Continent":"K25","ID":61075,"Name":"Wioska barbarzyƄska","PlayerID":1424656,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61075","ServerKey":"pl181","X":515,"Y":262},{"Bonus":9,"Continent":"K52","ID":61076,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":34,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61076","ServerKey":"pl181","X":255,"Y":502},{"Bonus":0,"Continent":"K36","ID":61077,"Name":"Wioska kuba939","PlayerID":848989774,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61077","ServerKey":"pl181","X":656,"Y":325},{"Bonus":0,"Continent":"K74","ID":61078,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61078","ServerKey":"pl181","X":496,"Y":744},{"Bonus":0,"Continent":"K52","ID":61079,"Name":"Wioska PanCake","PlayerID":699758721,"Points":59,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61079","ServerKey":"pl181","X":269,"Y":578},{"Bonus":0,"Continent":"K33","ID":61080,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61080","ServerKey":"pl181","X":358,"Y":304},{"Bonus":0,"Continent":"K63","ID":61081,"Name":"Wioska michoopl","PlayerID":9161369,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61081","ServerKey":"pl181","X":331,"Y":676},{"Bonus":0,"Continent":"K57","ID":61082,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61082","ServerKey":"pl181","X":734,"Y":572},{"Bonus":0,"Continent":"K66","ID":61083,"Name":"Wioska mrkonrad18","PlayerID":849121195,"Points":157,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61083","ServerKey":"pl181","X":642,"Y":696},{"Bonus":0,"Continent":"K24","ID":61084,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":28,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61084","ServerKey":"pl181","X":482,"Y":263},{"Bonus":0,"Continent":"K25","ID":61085,"Name":"Wioska adam1234","PlayerID":849123469,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61085","ServerKey":"pl181","X":533,"Y":264},{"Bonus":0,"Continent":"K36","ID":61086,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":40,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61086","ServerKey":"pl181","X":676,"Y":336},{"Bonus":1,"Continent":"K52","ID":61087,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61087","ServerKey":"pl181","X":274,"Y":588},{"Bonus":0,"Continent":"K42","ID":61088,"Name":"Wioska martial.94","PlayerID":849123471,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61088","ServerKey":"pl181","X":258,"Y":498},{"Bonus":0,"Continent":"K75","ID":61089,"Name":"Wioska nawalonych7krasnali","PlayerID":7062739,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61089","ServerKey":"pl181","X":535,"Y":739},{"Bonus":0,"Continent":"K74","ID":61090,"Name":"Wioska Arokis","PlayerID":849122791,"Points":136,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61090","ServerKey":"pl181","X":469,"Y":739},{"Bonus":0,"Continent":"K37","ID":61091,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61091","ServerKey":"pl181","X":706,"Y":380},{"Bonus":0,"Continent":"K66","ID":61092,"Name":"Wioska tobiasz22","PlayerID":849089739,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61092","ServerKey":"pl181","X":664,"Y":668},{"Bonus":22,"Continent":"K65","ID":61093,"Name":"Twierdza (OKO)","PlayerID":0,"Points":1202,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61093","ServerKey":"pl181","X":582,"Y":682},{"Bonus":0,"Continent":"K37","ID":61094,"Name":"Wioska wilq332","PlayerID":9154820,"Points":77,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61094","ServerKey":"pl181","X":704,"Y":364},{"Bonus":0,"Continent":"K52","ID":61095,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61095","ServerKey":"pl181","X":263,"Y":538},{"Bonus":0,"Continent":"K66","ID":61096,"Name":"Wioska radek1234c","PlayerID":698282328,"Points":89,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61096","ServerKey":"pl181","X":636,"Y":697},{"Bonus":0,"Continent":"K24","ID":61097,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":32,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61097","ServerKey":"pl181","X":409,"Y":284},{"Bonus":7,"Continent":"K32","ID":61098,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":31,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61098","ServerKey":"pl181","X":282,"Y":399},{"Bonus":0,"Continent":"K42","ID":61099,"Name":"Wioska XXARDASS","PlayerID":1015528,"Points":126,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61099","ServerKey":"pl181","X":266,"Y":464},{"Bonus":8,"Continent":"K67","ID":61100,"Name":"Osada koczownikĂłw","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61100","ServerKey":"pl181","X":723,"Y":605},{"Bonus":0,"Continent":"K76","ID":61101,"Name":"Wioska lord MichaƂ 1","PlayerID":699860651,"Points":68,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61101","ServerKey":"pl181","X":620,"Y":708},{"Bonus":0,"Continent":"K76","ID":61102,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61102","ServerKey":"pl181","X":638,"Y":702},{"Bonus":0,"Continent":"K62","ID":61103,"Name":"Wioska Atanami","PlayerID":699169828,"Points":106,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61103","ServerKey":"pl181","X":291,"Y":623},{"Bonus":0,"Continent":"K37","ID":61104,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61104","ServerKey":"pl181","X":705,"Y":376},{"Bonus":0,"Continent":"K57","ID":61105,"Name":"Wioska chwalka","PlayerID":848957381,"Points":53,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61105","ServerKey":"pl181","X":727,"Y":591},{"Bonus":0,"Continent":"K57","ID":61106,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61106","ServerKey":"pl181","X":733,"Y":542},{"Bonus":0,"Continent":"K57","ID":61107,"Name":"Wioska XKONDZIOX529","PlayerID":849123536,"Points":50,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61107","ServerKey":"pl181","X":729,"Y":588},{"Bonus":0,"Continent":"K42","ID":61108,"Name":"Wioska Harald Piękny","PlayerID":699842008,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61108","ServerKey":"pl181","X":264,"Y":443},{"Bonus":0,"Continent":"K32","ID":61109,"Name":"Wioska barbarzyƄska","PlayerID":0,"Points":26,"ProfileURL":"https://pl181.plemiona.pl/game.php?screen=info_village\u0026id=61109","ServerKey":"pl181","X":289,"Y":378}] \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_building_info b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_building_info new file mode 100644 index 0000000..6b033f5 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_building_info @@ -0,0 +1,227 @@ + + +
+ 30 + 1 + 90 + 80 + 70 + 5 + 1.26 + 1.275 + 1.26 + 1.17 + 900 + 1.2 +
+ + 25 + 0 + 200 + 170 + 90 + 7 + 1.26 + 1.28 + 1.26 + 1.17 + 1800 + 1.2 + + + 20 + 0 + 270 + 240 + 260 + 8 + 1.26 + 1.28 + 1.26 + 1.17 + 6000 + 1.2 + + + 15 + 0 + 300 + 240 + 260 + 8 + 1.26 + 1.28 + 1.26 + 1.17 + 6000 + 1.2 + + + 1 + 0 + 15000 + 25000 + 10000 + 80 + 2 + 2 + 2 + 1.17 + 586800 + 1.2 + + + 20 + 0 + 220 + 180 + 240 + 20 + 1.26 + 1.275 + 1.26 + 1.17 + 6000 + 1.2 + + + 1 + 0 + 10 + 40 + 30 + 0 + 1.26 + 1.275 + 1.26 + 1.17 + 10860 + 1.2 + + + 1 + 0 + 220 + 220 + 220 + 10 + 1.26 + 1.275 + 1.26 + 1.17 + 1500 + 1.2 + + + 25 + 0 + 100 + 100 + 100 + 20 + 1.26 + 1.275 + 1.26 + 1.17 + 2700 + 1.2 + + + 30 + 0 + 50 + 60 + 40 + 5 + 1.25 + 1.275 + 1.245 + 1.155 + 900 + 1.2 + + + 30 + 0 + 65 + 50 + 40 + 10 + 1.27 + 1.265 + 1.24 + 1.14 + 900 + 1.2 + + + 30 + 0 + 75 + 65 + 70 + 10 + 1.252 + 1.275 + 1.24 + 1.17 + 1080 + 1.2 + + + 30 + 1 + 45 + 40 + 30 + 0 + 1.3 + 1.32 + 1.29 + 1 + 1200 + 1.2 + + + 30 + 1 + 60 + 50 + 40 + 0 + 1.265 + 1.27 + 1.245 + 1.15 + 1020 + 1.2 + + + 10 + 0 + 50 + 60 + 50 + 2 + 1.25 + 1.25 + 1.25 + 1.17 + 1800 + 1.2 + + + 20 + 0 + 50 + 100 + 20 + 5 + 1.26 + 1.275 + 1.26 + 1.17 + 3600 + 1.2 + +
\ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_config b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_config new file mode 100644 index 0000000..9cdb616 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_config @@ -0,0 +1,127 @@ + + + +1 +1 +1 + + 1 + + +2 +5 +300 + + +1 +600 + + + 7 + 60 + 20 + 1 + + + 2 + 3 + + 1 + 2 + 0 + 0 + 0 + 1 + 1 + 0.003 + 1 + 2000 + 1 + 1 + 1000 + 100000 + 30 + 10 + 0 + + + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + -1 + + + 1 + 0 + 2 + 1000 + 0.9 + 28000 + 30000 + 25000 + + + + 0 + 1 + 0 + 0 + 0 + 0 + 50 + 0 + 5 + 15000 + 7 + 1 + v1 + + + 1000 + 4 + 70 + 10 + 8287 + 1 + 336 + 1 + 1 + + +1 + + + 0 + 60 + 6 + 10 + 12 + 36 + 10 + + + 1 + 23 + 8 + 2 + 14 + + + 5 + + + \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_unit_info b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_unit_info new file mode 100644 index 0000000..b3ffee2 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/interface.phpget_unit_info @@ -0,0 +1,133 @@ + + + + 1020 + 1 + 18 + 10 + 15 + 45 + 20 + 25 + + + 1500 + 1 + 22 + 25 + 50 + 15 + 40 + 15 + + + 1320 + 1 + 18 + 40 + 10 + 5 + 10 + 10 + + + 1800 + 1 + 18 + 15 + 50 + 40 + 5 + 10 + + + 900 + 2 + 9 + 0 + 2 + 1 + 2 + 0 + + + 1800 + 4 + 10 + 130 + 30 + 40 + 30 + 80 + + + 2700 + 5 + 10 + 120 + 40 + 30 + 50 + 50 + + + 3600 + 6 + 11 + 150 + 200 + 80 + 180 + 50 + + + 4800 + 5 + 30 + 2 + 20 + 50 + 20 + 0 + + + 7200 + 8 + 30 + 100 + 100 + 50 + 100 + 0 + + + 21600 + 10 + 10 + 150 + 250 + 400 + 150 + 100 + + + 18000 + 100 + 35 + 30 + 100 + 50 + 100 + 0 + + + 1 + 0 + 0.016666666666667 + 0 + 15 + 45 + 25 + 0 + + \ No newline at end of file diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/ally.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/ally.txt new file mode 100644 index 0000000..cd8c38b --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/ally.txt @@ -0,0 +1,282 @@ +1,Konfederacja,CSA-X,50,9722,80591153,85672571,1 +4,Farmerzy,Farma,1,2,9811,9811,125 +7,Spoceni+Kuzyni,KUZYNI,39,4721,39582695,39582695,4 +8,W+O+W,WOW,10,10,26603,26603,90 +12,AveMy,AveMy,2,1,6060,6060,144 +13,FarmerzyPremium,P.P,1,1,490,490,214 +19,Wojna+Domowa+Centrum,%2AWDC%2A,2,1,129,129,239 +24,Anonymous,IT,17,21,70935,70935,63 +29,Elitarne+plemie+zbieraczy+PP,EPZPP,50,122,487760,490595,32 +31,Project+D,PD,20,28,72338,72338,62 +33,Towarzystwo+Wzajemnej+Asekuracji,TWA,25,62,248240,248240,44 +35,MotoMyszy.,MzM,48,4090,35366910,35967206,6 +39,OZDR+%2B+Why,Ozdr%40,27,342,2415762,2415762,15 +47,Konfederacja+Z,CSA-Z,48,9596,77915569,82611770,2 +53,Zakon+Zielonego+Li%C5%9Bcia,420,1,13,50577,50577,71 +56,Pot%C4%99%C5%BCne+Pelikany,%2APP%2A,1,1,678,678,205 +59,Znani+i+Nieznani,ZiN,9,10,18104,18104,105 +68,Obro%C5%84cy+Cadii,Cadia,20,104,490637,490637,31 +71,why+so+serious,Why%3F,26,1160,10008304,10008304,10 +72,Dinozaury,DINO,3,5,16182,16182,108 +77,Wyznawcy+Darksizmu,-WzDa-,5,5,3948,3948,160 +80,Legion,-LM-,13,31,162555,162555,49 +85,Motomyszy,MzM.,50,4622,39147296,40987712,5 +89,FRIENDOLINOS,OG,2,0,182,182,233 +92,MotoMyszy%21,MzM%21,1,1,3421,3421,165 +96,Zakon+Czerwonej+R%C3%B3%C5%BCy,Z.C.R,12,13,19300,19300,101 +97,FARMERZY+PLEMION,FARME,1,6,23599,23599,95 +106,GWIEZDNA+FEDERACJA,GF,24,342,1922259,1922259,16 +112,co%C5%9B+wi%C4%99cej,CW,4,3,1131,1131,194 +115,zgierzanie,zgr,1,7,46100,46100,75 +117,Przybysze+z+kosmosu,Pzk,5,5,19943,19943,100 +120,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,OZDR,49,5538,47095138,48430662,3 +125,Szcz%C4%99%C5%9Bliwi+Gracze,SG,4,6,33644,33644,85 +129,PREM,Punkty,5,19,24990,24990,93 +134,DarNocy,DN,1,5,31116,31116,87 +147,Bandycka+Elita+Niskoros%C5%82ych,BENIS,1,0,0,0,258 +157,Domino,Dom,34,181,930020,930020,25 +159,Oggr,Ogg,1,0,400,400,215 +176,Albanski+Raj,AR,2,6,42674,42674,78 +185,NISZCZYCIELE,%7CN%7C,1,0,0,0,259 +187,Champions+League,-ChL-,1,0,347,347,220 +194,Vis+Maior,VS,17,151,830193,830193,26 +200,Takie+tam,Ttm.,1,0,561,561,211 +206,Pppp,P..p,1,0,578,578,210 +210,NoPon,N-P,48,69,208123,209067,47 +211,%2APotrzymaj+mi+Piwo,%2APmP,2,5,18368,18368,104 +214,Armia+Bosmana,BOSMAN,3,3,4308,4308,157 +216,Plemie+Igora,P.L.I,1,0,0,0,260 +220,Amatorzy+Kiszonych+Og%C3%B3rk%C3%B3w,ALKO,3,3,2264,2264,177 +234,Pepeki123,pepek,24,28,82699,82699,57 +236,Nakr%C4%99cane+Myszy,NM,1,0,262,262,226 +255,-QED-,QED,1,3,23228,23228,96 +256,GET+this+osada,GETTO,1,1,2552,2552,172 +260,B%C5%82%C4%99kitna+Planeta,%2ABP%2A,1,0,5873,5873,146 +281,Liga+Mistrzow,LM,1,3,5950,5950,145 +285,Kompletnie+Bezsensowne+Plemi%C4%99+xD,KBS,17,52,216187,216187,46 +287,fififi,fi,1,3,10461,10461,122 +290,Komercja+Plemionn,K+-+P,1,0,197,197,231 +291,MotoMyszy%3F,.Mzm.,47,2600,19944126,20492470,8 +301,Psycho+szczury,MzM..,36,1860,14082725,14082725,9 +305,Pro+Sto,Pro,1,1,7528,7528,136 +309,Konfederacja+Y,CSA-Y,15,1002,8457463,8457463,11 +317,Szalone+Nied%C5%BAwiedzie,Mi%C5%9Bki,1,0,4609,4609,156 +319,PAKT,PAKT,2,2,6323,6323,143 +336,hkgj,kw,1,0,0,0,261 +339,ZARZEW,ZRW,1,0,2804,2804,169 +355,uuuuuuuuuuuuuuu,uuu,1,0,4128,4128,159 +365,GIE%C5%81DA,GA,1,0,8516,8516,129 +369,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,0ZDR,36,3034,26181329,26181329,7 +373,Gildia+Kupiecka,GK,2,3,13810,13810,115 +374,xyz.,xyz.,1,0,901,901,197 +375,PePeKi+PP.PP,PKTPP,17,16,39813,39813,80 +377,AKADEMIA+WD,AWD,24,25,54591,54591,68 +382,HANDEL,HANDEL,1,1,2203,2203,178 +385,Bia%C5%82a+Armia,B.A,5,17,81013,81013,58 +397,Emka,E.M.,1,1,1170,1170,193 +412,BOMBA,BOMBA,22,110,411596,411596,35 +413,Giht,Hggf,1,1,1374,1374,189 +415,.%3Axxx%3A.,xxxx,1,0,26,26,247 +429,Zabi+Staw,Z-S,1,0,855,855,199 +430,%2A%2AWojna+Idei%2A%2A,%2A%2AWD%2A%2A,1,0,0,0,262 +432,McOpole,McOpo,21,210,1263914,1263914,21 +435,ave+sieci,sieci,1,1,4647,4647,155 +441,Project+D%21,PD%21,24,45,103116,103116,55 +443,PEAKY+BLINDERS,PB,1,0,0,0,263 +451,AVE+%28M%29,AVE%28M%29,1,0,173,173,234 +452,Obro%C5%84cy+Krasnali+Ogroduwych,OKO,50,111,389742,392037,36 +474,zagubiony+natanek,wul,1,0,536,536,212 +475,Zbieracze+Punktow+Premium,Z%2AP%2AP,2,2,9372,9372,128 +503,TMPL,TMP,1,1,2332,2332,176 +517,M%C3%B3j+Dom,%3D+MD+%3D,2,1,1204,1204,191 +520,ESSA,ESSA,2,6,25610,25610,92 +523,Wiocha,Yuby,1,0,280,280,223 +546,WOJNA+IDEI,WD,1,1,50,50,246 +548,Co+Chcesz%3F,CO,1,1,317,317,222 +554,%3Dpremium%3D,pp.,3,2,4850,4850,154 +557,WYROLOWANI,WYROL,1,5,39927,39927,79 +594,T+E+R+Y+T+O+R+I+U+M,%5DT%5B,4,4,13708,13708,116 +597,Bractwo+Krzy%C5%BCowe,%2BBK%2B,2,1,7686,7686,133 +607,NAJEMNICY.,N%2FM%2FY,5,22,96031,96031,56 +624,K35+DEMONY,K35,1,3,19050,19050,103 +625,Wilki,Wilki,1,0,887,887,198 +626,Targowica,Targ,1,3,11298,11298,120 +633,Wolny,WS,1,16,80649,80649,59 +636,Superpremium,%28%24%29,5,5,5393,5393,149 +647,Ow%C5%82osione+Rogale,OwR,7,11,36541,36541,82 +651,Semper+Invicta,Sempe,3,4,12098,12098,119 +664,Kal-Kol,K+L+N,3,2,7408,7408,137 +666,KOM0RNICY+2,KOM2,27,502,3623764,3623764,13 +686,Semper+Invicta.,Semp.,3,2,3186,3186,167 +689,Ga%C5%9Bnice+Po%C5%BCarowe+Stra%C5%BCaka,GPS%21,1,0,132,132,238 +693,Why+So+Serious%3F,Why,1,0,0,0,264 +722,Bractwo+Nocnych+Polan,BNP,30,194,1057120,1057120,22 +723,Raki+nie+boraki,Rnb,1,1,2771,2771,170 +733,Kuzyni+2,KUZYNA,1,1,26,26,248 +750,Moje+OHV,OHV,1,0,277,277,224 +758,-300-,-300-,5,6,13864,13864,114 +766,%2AAnonymous%2A,%2AAMS%2A,1,0,0,0,265 +778,Imperium+Polskie,IP,12,11,29666,29666,88 +785,KOMORNICY3,KOM3,37,744,5127712,5127712,12 +786,JP2+2137,21%3A37,7,48,259042,259042,42 +806,Cesarstwo+Zachodnio+Rzymskie,SPQR,1,0,26,26,249 +809,NOC3,NOC3,1,0,367,367,218 +822,%2AGramy+Dla+Zabawy%2A%2A,%2AGDZ%2A%2A,2,10,42703,42703,77 +830,Komornicy,KOM1,3,13,74502,74502,61 +841,PP+Pan+Dziobak,PEPE,1,1,771,771,202 +847,Nowa+nadzieja,Nowa,35,120,361076,361076,39 +862,IMPERIUM+%2B,.%3A%2B%3A.,31,280,1738908,1738908,18 +936,Gracz+bula9001+zablokowa%C5%82+ci%C4%99.,bula90,1,8,77623,77623,60 +944,YOGI,YOGI,7,14,60146,60146,66 +945,Brygada+RR,RR,1,0,726,726,204 +963,Grupa+Amerykanka,GAZ,2,2,2349,2349,174 +965,Kamilanie+Gora,KG,1,0,1878,1878,179 +989,KOMORNICYX,KOMX,2,1,9905,9905,124 +991,Ordo+Theutonicorum,OT,1,0,0,0,266 +1023,AWANGARDA,.%29A%28.,3,14,53881,53881,69 +1039,IMPERIUM+%2B%2B,%3A%2B%3A,11,107,569479,569479,30 +1040,We+Are+Ready%21,WAR%21,2,3,18048,18048,106 +1052,Gachi+Frens,-%3DGF%3D-,11,28,141286,141286,51 +1058,Powa%C5%BCneUgrupowanieBy%C5%82ychGraczy,PUBG,1,1,10021,10021,123 +1079,Rycerze+Czerwonego+Tartanu,RCT,6,56,374051,374051,37 +1096,DNR+F,ACHTUN,4,7,39593,39593,81 +1108,K0MORNICY4,KOM4,12,68,334647,334647,40 +1127,BLOCKCHAIN,CRYPTO,1,8,50239,50239,72 +1128,Nazwa+b%C4%99dzie+wkr%C3%B3tce,NBW,16,80,415954,415954,34 +1140,0.7+zg%C5%82o%C5%9B+si%C4%99,POLEJ,8,135,1020829,1020829,24 +1148,HELLGATE,%2AHG%2A,9,61,237863,237863,45 +1161,Ose%C5%82ka,OS.,1,2,13553,13553,117 +1163,Kl8F,Klasa8,2,2,12795,12795,118 +1166,Dybuk,Dybuk,1,3,19291,19291,102 +1170,Nono,Nnn,1,0,0,0,267 +1209,Komandosi+na+5,KOM5,2,5,20529,20529,99 +1226,Cartel+TW,Cartel,40,477,3232718,3232718,14 +1232,Braty+i+Kompany,BiK,4,4,1437,1437,187 +1247,%C5%BCydek+natanek,qwq,1,0,261,261,227 +1258,Bum%21,Bum%21,1,0,128,128,240 +1261,Ujazdowcy,UJ,1,2,6741,6741,141 +1275,CSA-ATAK,CSA-AT,1,0,26,26,250 +1278,Waffen-SS,W-SS,1,3,7237,7237,139 +1293,youll+never+walk+alone,ynwa,11,50,302223,302223,41 +1312,Purpurowi+Zegarmistrze+%C5%9Awiat%C5%82a,ZEGARY,46,185,707516,708850,28 +1317,1edc,1edc,1,0,26,26,251 +1333,Grupa+Wsparcia+Amator%C3%B3w,GWA,1,0,814,814,200 +1336,Scandi+Power,SCP,21,266,1529373,1529373,19 +1338,weee,wg,1,0,0,0,268 +1347,BezCov,B-C,3,2,1827,1827,181 +1357,J.+B.+B....,JBB%3B%2F,1,0,0,0,269 +1368,Elitarny+Legion,ELITA,2,18,68427,68427,64 +1372,WIDMO,WIDMO,1,0,0,0,270 +1376,Wojna+Idei+P,WDP,1,1,628,628,208 +1389,dfbdfbd,db,1,0,4958,4958,153 +1399,Bojk%C3%B3w,_B_,3,6,36117,36117,83 +1411,HURAGAN,Tajfun,28,255,1414392,1414392,20 +1416,Z%C5%82odzieje+Przysz%C5%82o%C5%9Bci,%3DZP%3D,1,1,1857,1857,180 +1418,Plemi%C4%99+Rodu+Smoka,PRS,3,22,174240,174240,48 +1421,Dla+fanu+pykamy,DFP,1,0,1674,1674,184 +1423,Grupa+Armii+%C5%9Arodek,%C5%9Arodek,2,11,52902,52902,70 +1428,Wodne+zwierzaczki,WZ,1,3,17761,17761,107 +1431,Amanita+Muscaria,A-M,3,2,1513,1513,186 +1432,Nasze+Plemie,ABW,1,1,1675,1675,183 +1448,myself,%3DMf%3D,1,0,0,0,271 +1456,1-2-0,1x2,2,2,10863,10863,121 +1460,bobertos,ZIOM,2,1,200,200,230 +1466,GREEN+STREET+HOOLIGANS,GSH,7,20,113693,113693,54 +1470,SunnyValley,SV,1,6,45642,45642,76 +1477,Do+ko%C5%84ca%21,DK%21,1,1,360,360,219 +1480,KUZYN+X,KUZYN%3F,15,331,1765223,1765223,17 +1483,Afrika+Korps,AK,1,0,0,0,272 +1484,INVISIBLE,IV,1,0,26,26,252 +1494,Wioska+Matrix9105%40,Matrix,1,0,0,0,273 +1498,Kokoko,KKK7,1,0,2870,2870,168 +1523,Ty+i+Twoje+orzeszki,T.T,26,115,655456,655456,29 +1526,Polanie,Polani,1,0,0,0,274 +1528,NieZniszczalni.,NZ,3,3,2617,2617,171 +1530,S%C5%81OWIANIE,S%C5%81OWO,3,3,6555,6555,142 +1535,The+Gorillas,GOR,2,26,142004,142004,50 +1538,Ho+no+tu,SOO,1,2,7382,7382,138 +1551,Siewca+Wiatru,%7ESW%7E,7,14,49245,49245,73 +1573,DUCHY,DUCH,11,10,9541,9541,127 +1582,Ca%C5%82e+%C5%BBycie+z+Wariatami,WARIAT,1,1,8160,8160,132 +1585,SAM+WE+M%C5%81YNIE,SWM,1,0,744,744,203 +1588,Moment+Strategiczny,no+c%C3%B3%C5%BC,1,12,59739,59739,67 +1590,Bo+od+tylu+tez+jest+fajnie,Xes,5,5,3318,3318,166 +1597,Kontra,Kontra,42,181,807847,815265,27 +1599,ma%C5%82e+ciche+do+g%C4%99siej+szyji,mcgs,1,0,369,369,217 +1602,Uuuu,Uuy,1,1,3854,3854,163 +1609,asdd,das,1,0,0,0,275 +1610,Kombinat+Punkkt%C3%B3w+Premium,KPP,1,0,138,138,237 +1621,Rolnicy+Podlasie,RP,11,186,1025745,1025745,23 +1626,JazdaZKuramk,JZK,1,0,0,0,276 +1627,ANONYMOUSS,ANS,15,43,114308,114308,53 +1636,GDZIE+S%C4%84+%3F%3F%3F,MA%C5%81YSZ,1,1,4193,4193,158 +1638,asyy,asyy,1,0,26,26,253 +1643,1112,12,1,0,0,0,277 +1645,Rekontakt,REK,2,3,8492,8492,130 +1648,Aldente,Ald,1,1,338,338,221 +1651,Oszukani,New,2,1,3936,3936,161 +1652,%C5%81omocimy,Zaj%C4%99nc,1,7,15985,15985,109 +1656,Robotniczy+Klub+Sportowy+HUWDU,HUWDU,1,1,270,270,225 +1657,Xyz%2C,Xyz%2C,1,0,513,513,213 +1669,Mocny+FULL,FULL,4,6,14440,14440,113 +1672,MKM.,MKM.,1,2,9572,9572,126 +1680,Mymu,My,2,4,27342,27342,89 +1681,fehg,wwerj,1,0,0,0,278 +1683,......,FIN,1,9,49140,49140,74 +1687,SoSKooperacja,SoS,7,7,15033,15033,112 +1690,Nie%C5%9Bmiertelni,ookp,1,1,2343,2343,175 +1691,Zbieram+flagi,Zbf,1,4,7533,7533,135 +1692,Zapraszam+ch%C4%99tnych,Buuu,1,1,5178,5178,150 +1700,Fiku+Miku,FIUFIU,4,71,373191,373191,38 +1705,Galaktyczna+Federacja+%C5%9Awiat%C5%82a,GF+II,1,1,1671,1671,185 +1707,Koniec,1234,1,1,26,26,254 +1715,R-C-,RC,1,2,5005,5005,152 +1716,KOMORNIKI,KOMY,2,4,34258,34258,84 +1721,Pocahontas,Gg,1,2,5770,5770,147 +1724,Punkty+Premium+i+Flagi,Witamy,36,63,255952,255952,43 +1727,Lykanie,LK,1,0,0,0,279 +1728,fffff,fffff,1,1,3440,3440,164 +1729,Gallowo,GAL,1,7,15214,15214,111 +1734,Woir,Wrrrr,1,1,5703,5703,148 +1735,Strong+Ekipa,SE,32,118,416675,416675,33 +1737,Samiec+Alfa,Alfa,1,0,0,0,280 +1740,T.W.,%3DTW%3D,1,19,122227,122227,52 +1745,Dni+w+Plemieniu,DWP,1,2,15245,15245,110 +1750,CZY+TO+X%3F,Xx,1,0,0,0,281 +1751,xddd,xddd,1,0,68,68,244 +1753,eeee,eeee,1,1,810,810,201 +1754,PogromcY,PY,1,1,1184,1184,192 +1755,cudo,C%21%21,1,1,1111,1111,195 +1757,Lublin,LUB,1,1,1400,1400,188 +1758,Oddam+wioski,OW,1,5,26349,26349,91 +1760,Qwer,Qwe,1,4,8366,8366,131 +1763,Altra,ALR,1,5,24623,24623,94 +1764,Traktor,TRK,1,1,26,26,255 +1770,ooooo,ooo,1,1,153,153,236 +1771,WD40,30,1,2,7046,7046,140 +1772,Jdhd,Hdhdh,1,1,2516,2516,173 +1777,Chlip,CHP,1,1,998,998,196 +1779,1905,CWKS,1,2,7537,7537,134 +1780,Lololololol,Lol,2,0,0,0,282 +1782,disco,dsc,1,1,676,676,206 +1783,Niszczycielski+Akwedukt,NA,2,2,1747,1747,182 +1785,HELLO,HELLO,2,2,1343,1343,190 +1786,Pomy%C5%9Bl+zanim+kopniesz+Qunia,Q%C5%84.,1,1,3883,3883,162 +1787,WCF+%21,WCF,1,1,26,26,256 +1790,Kruk,-KR-,1,8,33111,33111,86 +1791,Wymiana,Flagi,1,1,26,26,257 +1792,Winners,Win,1,1,383,383,216 +1793,Sam1,Sam1,1,11,67586,67586,65 +1795,Kukabaka,kUKLA,2,2,603,603,209 +1797,Mi%C5%82o%C5%9Bnicy+Taniego+Piwa,Browar,18,19,21896,21896,97 +1798,Gggg,Ggg,1,1,5029,5029,151 +1799,Kkkkk,Kkkkk,2,2,52,52,245 +1802,weRFAS,DFSAFS,2,2,103,103,241 +1803,czarnuchowo,WPDS,1,1,162,162,235 +1804,12345,12345,3,3,78,78,243 +1806,Kto+zjad%C5%82+ciastka%3F,KZC%3F,1,1,221,221,228 +1807,ZaPPFrakcja+W,CSA-W,1,0,668,668,207 +1808,LECOQ,LECOQ,1,3,20719,20719,98 +1809,Vexel,Vexel,1,1,191,191,232 +1810,Sobie+Sam,SS,1,1,201,201,229 +1811,DziKusY,Dzk,2,2,103,103,242 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_all.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_all.txt new file mode 100644 index 0000000..340b794 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_all.txt @@ -0,0 +1,2562 @@ +1354,6948,110403 +865,17714,464632 +87,33900,8797062 +1185,50930,180594 +858,61791,475482 +656,82782,893970 +761,87575,643368 +894,89637,422592 +792,100452,564941 +2044,101074,7522 +2541,108256,4 +1933,112401,14205 +716,113796,721459 +2105,117208,5371 +1095,118121,227208 +1041,122492,263506 +2263,126954,1459 +2189,128353,2947 +1554,129795,59293 +2215,131972,2247 +2308,148405,748 +1085,160513,231831 +826,192947,518733 +1533,195249,61994 +1077,197581,234980 +2152,205821,4043 +21,225023,23891910 +1127,254937,206037 +1771,260666,29387 +70,272173,10921947 +1900,281866,16910 +1165,289542,188311 +784,301602,581213 +962,310729,346482 +1856,325491,20650 +518,335509,1408430 +1657,337137,42344 +200,356642,4715089 +915,361125,401452 +1456,363280,80352 +1406,364126,94892 +2519,371910,10 +1279,378757,136306 +472,382222,1631788 +185,393668,5018873 +1678,412571,40021 +1704,439825,37047 +1190,466800,179125 +1844,470266,21915 +257,477415,3495608 +1112,478956,217754 +1001,483145,306120 +1695,498483,38110 +1640,526350,44990 +1693,529552,38363 +251,542253,3617669 +2253,545152,1661 +1942,546458,13365 +349,556154,2489698 +842,563544,498350 +1987,566379,10283 +1313,569790,124391 +2011,570100,8959 +2120,583500,5011 +1045,584989,262862 +793,591733,562498 +2060,602408,6936 +2528,603968,10 +226,606407,4213628 +1197,606706,176086 +1539,609384,61314 +1818,610196,24651 +1121,634848,210707 +2553,662253,1 +874,671516,450991 +411,692803,1993901 +949,712216,359638 +822,724621,522076 +834,745946,508554 +1377,747422,102624 +341,758104,2574592 +2487,762859,17 +1832,762975,23251 +1394,763529,98069 +484,765188,1551117 +1169,769293,186877 +1469,796977,77899 +1827,823987,23953 +92,828637,8638652 +1618,869195,48231 +42,873575,15758880 +1420,878961,92194 +546,879782,1284424 +1393,881782,98848 +1209,896355,170021 +947,915113,361844 +2147,921888,4121 +119,926823,7227911 +2436,930720,59 +474,940693,1620850 +980,942959,328071 +1084,944147,232433 +1824,947564,24145 +1006,947923,297914 +2562,949279,1 +950,950985,359045 +1199,951823,174712 +1500,959179,70109 +1314,960100,123972 +38,1006847,16732683 +773,1015528,615673 +114,1018357,7439644 +928,1020792,390258 +966,1021709,342934 +2043,1034117,7612 +1293,1043028,130875 +1720,1044760,35302 +1882,1049851,18226 +605,1078121,1041548 +1491,1079223,71447 +252,1086351,3555446 +1346,1095271,112509 +305,1095489,2870336 +944,1096254,365203 +2095,1106220,5729 +2437,1132842,52 +1747,1164249,32486 +1560,1170102,58497 +1186,1205898,180539 +2061,1227022,6898 +1864,1227918,20282 +93,1238300,8605275 +1617,1260088,48433 +639,1267913,939976 +1108,1270916,220192 +1536,1276665,61531 +1661,1284796,41941 +1104,1285441,223509 +1414,1286008,93239 +2093,1322622,5796 +1724,1323424,34546 +652,1347385,901713 +1794,1350456,27384 +2050,1371998,7471 +1593,1406042,52241 +491,1415009,1529453 +1589,1415665,53519 +466,1424656,1670967 +57,1434753,14238672 +998,1450352,308664 +1189,1454871,179391 +2103,1493696,5389 +22,1497168,23583134 +1141,1510264,196178 +2376,1511101,231 +1558,1525273,58804 +222,1536231,4244174 +162,1536625,5643541 +2156,1553481,3966 +214,1553947,4466947 +562,1563417,1212382 +2101,1568700,5461 +2222,1568908,2078 +1571,1578509,55864 +2343,1581890,434 +766,1601917,631085 +1075,1606425,235250 +699,1608563,753663 +1177,1609607,184563 +1480,1610267,72919 +1471,1631690,76709 +2232,1645835,1946 +1487,1646837,72134 +1234,1647052,157339 +1863,1668965,20296 +1466,1669587,78351 +2272,1675628,1286 +1347,1693936,112417 +1078,1700145,234963 +728,1715091,706532 +454,1746216,1764506 +1247,1748180,148950 +1920,1757722,15483 +308,1767876,2847797 +1627,1775957,47025 +625,1782523,974785 +2390,1794060,169 +171,1804724,5406349 +668,1809381,849215 +1505,1809943,68512 +1319,1827485,122322 +221,1830149,4265002 +1708,1831874,36775 +1830,1861962,23336 +1874,1867161,19234 +1257,1867410,144074 +1639,1889913,45009 +737,1895081,682176 +697,1900364,758159 +1701,1924718,37364 +1008,1945202,296058 +1663,1957280,41544 +129,1990750,6856452 +552,2020935,1254025 +264,2044462,3329961 +1816,2051721,25093 +1813,2061701,25166 +358,2065730,2403215 +1198,2083273,175390 +1044,2087251,263088 +1974,2105150,11428 +337,2135129,2613778 +1774,2162471,29029 +1727,2177410,34097 +1931,2213632,14380 +1018,2232973,285339 +1544,2245160,61003 +999,2246711,308257 +1921,2256843,15439 +336,2262902,2615293 +1624,2268889,47735 +1131,2269943,204751 +67,2289134,11464890 +416,2293376,1938984 +1913,2297431,16100 +1978,2308351,11230 +347,2315542,2509277 +574,2321390,1173354 +1117,2323859,212941 +1270,2324569,140144 +1317,2345447,122954 +1032,2357773,272096 +1586,2362058,53777 +1588,2363165,53585 +1163,2365630,188672 +1823,2371436,24168 +1096,2392791,226853 +292,2411854,2982402 +478,2415972,1586892 +974,2418002,331667 +644,2418364,925999 +1445,2422415,84508 +1486,2426019,72152 +1658,2443031,42198 +422,2453888,1896760 +810,2467370,541789 +2395,2485646,152 +2200,2491724,2824 +291,2502956,2987084 +2457,2512219,38 +1821,2514219,24397 +1831,2516620,23251 +233,2559569,4103494 +1243,2569868,151131 +1796,2571407,27051 +1715,2571536,35833 +2072,2575842,6477 +4,2585846,59340190 +1506,2591538,67944 +1207,2593568,172203 +982,2595542,327287 +192,2600387,4886840 +2206,2613743,2485 +1579,2620389,55017 +1666,2646397,41043 +262,2665207,3356135 +1149,2692494,194266 +1463,2717161,78918 +1255,2723244,145393 +1916,2725721,15824 +1251,2730335,147842 +2192,2735370,2908 +1653,2764337,43298 +920,2798385,398122 +510,2800032,1437683 +918,2801913,399497 +204,2808172,4642136 +2163,2811353,3773 +879,2812197,437089 +2137,2819255,4541 +1786,2819768,27791 +2141,2837080,4430 +581,2873154,1150608 +1433,2893211,88823 +1327,2924071,118630 +747,2972329,660950 +1266,2976468,140958 +2423,2980670,90 +732,2999957,699668 +1206,3022364,172215 +2143,3024357,4359 +1379,3027589,102453 +1194,3057381,176648 +2545,3101080,4 +231,3108144,4119174 +853,3136062,480993 +1155,3181712,191778 +1403,3185732,95060 +713,3264534,731552 +380,3295619,2239785 +1741,3298564,32948 +1633,3298902,46324 +1232,3319611,157727 +1208,3340647,170087 +682,3342690,803533 +967,3345943,341095 +2241,3362925,1826 +1749,3364735,32271 +1578,3365981,55116 +2032,3372959,8054 +679,3377503,812130 +429,3377827,1861607 +941,3395817,370248 +1409,3409028,94419 +711,3411571,733516 +551,3428961,1256583 +895,3430969,421523 +2100,3441892,5484 +302,3454753,2899481 +2500,3462813,13 +1608,3467919,49752 +123,3475079,7111123 +178,3484132,5238765 +932,3487721,383196 +2029,3487933,8091 +2269,3499467,1367 +75,3502565,10493976 +2406,3518623,132 +2113,3529695,5269 +2354,3560281,340 +1159,3584298,190239 +1193,3589487,176871 +688,3600737,783117 +156,3613413,5912545 +1763,3631404,30510 +1102,3639628,224048 +2494,3647080,14 +1893,3647086,17235 +1256,3652727,144726 +1092,3667722,228358 +2199,3668212,2844 +1798,3692413,26976 +550,3698627,1258757 +1182,3713020,182517 +921,3734803,397318 +578,3739202,1163209 +2042,3743817,7693 +867,3750922,461512 +1628,3760848,46717 +1877,3762475,18974 +777,3781794,598016 +1631,3842862,46404 +1570,3860614,55913 +1690,3895471,38626 +1125,3896657,207146 +27,3909522,20253764 +2055,3923887,7187 +399,3933666,2057739 +1721,3957237,35282 +1312,3969110,124779 +746,3972413,661345 +401,3986807,2049504 +789,3990066,571673 +2243,5989306,1797 +150,5991728,6046548 +176,5997814,5286801 +1957,6001174,12212 +1502,6002527,70015 +2098,6021542,5564 +1735,6032352,33647 +1396,6046368,96592 +1371,6046743,104895 +972,6048627,333925 +995,6071567,310809 +1686,6078176,38784 +1015,6083448,287775 +797,6101033,559126 +2114,6111938,5268 +369,6116940,2322143 +524,6118079,1376109 +1397,6121024,96558 +1854,6127190,20894 +1219,6131106,164375 +845,6136757,493221 +2179,6143689,3258 +2203,6145316,2637 +706,6160655,741902 +1753,6167751,31755 +543,6169408,1293274 +1547,6171569,60452 +909,6174010,409244 +29,6180190,19570918 +960,6186491,349006 +1645,6212605,44131 +1758,6240801,31108 +805,6242167,545229 +2375,6243588,231 +782,6249486,583864 +304,6258092,2881524 +2063,6262469,6861 +965,6270765,343571 +2246,6276208,1785 +435,6276419,1821628 +1175,6284929,184836 +2448,6294942,42 +740,6296228,676940 +1164,6299408,188414 +1999,6300771,9620 +1204,6301789,172517 +247,6308670,3723845 +2411,6310214,121 +1725,6315553,34495 +2497,6323735,13 +1488,6326324,72066 +1907,6330147,16608 +428,6343784,1877253 +447,6354098,1783634 +2330,6354962,500 +2368,6379173,262 +165,6384450,5504105 +1157,6395848,191295 +2078,6409472,6297 +689,6414286,780986 +1411,6416213,93583 +1432,6417987,89468 +2305,6423275,763 +968,6423719,340696 +735,6425087,696318 +1235,6472706,157107 +394,6510480,2103201 +2154,6516085,4003 +1902,6517003,16708 +1408,6517826,94431 +731,6520732,701114 +465,6528152,1675875 +1843,6541079,22110 +1692,6554011,38576 +2414,6557487,112 +1883,6557824,18121 +1939,6590149,13504 +929,6606543,388448 +1834,6617912,22766 +733,6618608,696866 +461,6625437,1709114 +814,6625716,537399 +973,6647535,333630 +2501,6647642,13 +2435,6651072,63 +883,6654098,433795 +2124,6658016,4994 +2159,6674092,3888 +2282,6677893,1209 +2529,6692351,10 +1685,6704738,38878 +1446,6736666,84324 +1030,6786449,273875 +1545,6795280,60638 +152,6818593,6001229 +2136,6821136,4546 +2080,6822085,6170 +468,6822957,1656699 +1231,6837266,158079 +181,6853693,5094399 +1713,6857973,36000 +1252,6870350,147497 +1003,6882236,300439 +1503,6884492,69758 +1546,6892517,60465 +10,6910361,40917918 +135,6920960,6612255 +1343,6921135,113407 +327,6923061,2695043 +1115,6925574,215562 +1422,6927748,91761 +675,6929240,825393 +40,6936607,15871943 +122,6948793,7111708 +1945,6955809,13224 +1743,6956104,32874 +2181,6968280,3206 +512,6986891,1423590 +2398,6995252,149 +1613,7007969,48972 +666,7012651,855689 +643,7013660,929242 +1674,7023110,40349 +802,7038651,547136 +1212,7047342,169033 +1468,7064954,78275 +2323,7067846,544 +1004,7069895,300166 +2144,7083877,4286 +363,7085502,2351202 +132,7085510,6770436 +187,7092442,4991368 +1187,7097727,179832 +523,7098955,1377043 +1220,7125212,164005 +1395,7127455,97139 +2066,7135037,6705 +242,7139820,3805943 +1557,7139853,58968 +1580,7140413,54819 +448,7142659,1781109 +1687,7150683,38763 +453,7150939,1764789 +393,7154207,2111128 +906,7157316,410414 +1302,7158871,127535 +650,7181335,905977 +174,7183372,5299065 +1031,7210775,272123 +1731,7220989,33727 +1275,7221139,138410 +1055,7226782,247682 +1809,7230689,25729 +2138,7242969,4527 +50,7249451,14813379 +1434,7259218,88356 +2220,7259690,2222 +2371,7262049,246 +160,7271812,5788068 +844,7272223,495519 +1447,7287342,84038 +1091,7297881,228547 +1596,7313287,51817 +216,7318415,4456060 +458,7318949,1733593 +703,7333216,750230 +1521,7337110,65280 +71,7340529,10902270 +1351,7346797,111556 +225,7349282,4221913 +1738,7357503,33561 +2006,7365299,9102 +449,7386358,1780209 +769,7394371,627813 +2099,7409475,5560 +166,7417116,5493617 +609,7418168,1026768 +1688,7422002,38730 +1292,7427966,130983 +2009,7428666,9050 +2244,7440474,1793 +109,7449254,7625069 +173,7462660,5315655 +2202,7474527,2721 +2015,7477695,8821 +1392,7485877,98967 +89,7491093,8692995 +2119,7492426,5062 +1582,7494178,54701 +427,7494497,1878811 +2081,7499430,6111 +1587,7508390,53751 +1152,7516892,193218 +681,7518529,805241 +2407,7520280,128 +2276,7526090,1257 +1107,7528491,220774 +1842,7530708,22156 +2444,7539223,46 +139,7540891,6402104 +1258,7550472,144048 +41,7555180,15835069 +2266,7557683,1400 +1880,7559093,18541 +1648,7560474,43727 +459,7563185,1723435 +1402,7563943,95090 +1167,7574317,187482 +73,7581876,10701152 +831,7588382,511278 +355,7589468,2436021 +1625,7590135,47446 +1866,7590275,20127 +1548,7605446,60407 +2287,7629036,1026 +1224,7646152,161767 +1201,7651093,173266 +1144,7661091,195339 +674,7675610,828415 +1271,7691817,139935 +451,7695478,1771730 +1387,7695659,100195 +1535,7699382,61561 +2477,7707390,22 +2264,7720028,1432 +1308,7721441,125651 +1884,7733128,17885 +695,7749444,760905 +1716,7750835,35781 +423,7756002,1889946 +124,7758085,7098106 +230,7765098,4150871 +2096,7775311,5702 +1282,7781236,135294 +1375,7787254,102888 +1057,7802435,246697 +2230,7803631,2001 +2178,7809316,3303 +1369,7820575,105301 +213,7829201,4469807 +698,7831811,755146 +475,7842579,1605525 +400,7860453,2053099 +2310,7865511,701 +2170,7866994,3601 +1356,7897925,108845 +2493,7899232,15 +2473,7910501,23 +2274,7913305,1277 +2237,7914131,1891 +2270,7915966,1323 +1442,7919620,85473 +2352,7927374,347 +2097,7929731,5593 +1514,7970506,66342 +542,7973893,1295206 +141,7976264,6288631 +1681,7985956,39097 +744,7995033,668219 +1037,7999103,267521 +76,8000875,10299269 +112,8004076,7450119 +1322,8006209,120047 +964,8013349,344774 +1988,8015775,10204 +1629,8015955,46622 +869,8019812,457747 +567,8048374,1192884 +1762,8061953,30563 +1230,8062053,158235 +345,8078914,2538194 +2045,8082376,7509 +397,8096537,2069160 +1750,8097158,32092 +3,8099868,62582609 +607,8123790,1030647 +1989,8128478,10164 +640,8138506,939234 +39,8153179,16681613 +749,8153941,655887 +94,8155296,8597418 +2115,8160123,5237 +646,8167837,918492 +344,8175236,2551497 +350,8184383,2487715 +2520,8185721,10 +517,8191129,1411245 +1489,8192845,71624 +99,8199417,8229973 +188,8201460,4969270 +1756,8204028,31261 +1323,8204926,119933 +418,8218433,1933556 +1479,8224678,73059 +1607,8240209,49834 +1388,8240677,99974 +866,8259895,462586 +548,8268010,1279026 +1565,8274566,57162 +2126,8288459,4833 +2047,8292737,7485 +2065,8305343,6722 +1142,8320319,196079 +442,8323711,1794841 +1620,8325063,48099 +934,8325700,378872 +351,8337151,2483106 +1807,8362886,25958 +1245,8366045,150501 +2007,8366849,9089 +255,8369561,3535354 +2166,8369657,3746 +384,8369778,2187243 +1342,8373234,113494 +1776,8379825,28931 +1998,8379871,9689 +1770,8386608,29508 +1556,8400180,59027 +1227,8400975,160518 +2140,8408007,4454 +2054,8411874,7212 +1268,8418489,140520 +137,8419570,6575107 +1439,8420564,86555 +317,8423835,2755613 +2155,8425594,3987 +628,8428196,971393 +2425,8434727,79 +903,8438707,412409 +576,8444356,1168611 +1339,8444698,115374 +278,8459255,3165355 +175,8478874,5291618 +1081,8483719,233707 +957,8501514,349764 +1171,8502135,186277 +496,8503255,1507515 +2150,8510466,4098 +545,8513699,1289070 +51,8539216,14797481 +1114,8541236,216369 +1814,8552893,25113 +2051,8553904,7449 +1378,8574922,102566 +1166,8582487,187583 +2515,8583185,10 +1097,8588789,226702 +992,8593382,313564 +1460,8606809,79020 +167,8607734,5489586 +1427,8609713,91044 +376,8612358,2264074 +2416,8617889,108 +1898,8622901,17031 +368,8627359,2344425 +282,8630972,3109523 +271,8632462,3258371 +47,8649412,15341206 +430,8654156,1855377 +392,8662264,2136829 +2438,8662634,52 +579,8665783,1152359 +1885,8669398,17776 +549,8674163,1277411 +444,8675636,1789888 +1100,8677963,225367 +2256,8678008,1544 +2025,8696132,8277 +1173,8698728,185731 +2019,8699429,8666 +1118,8708728,212013 +2478,8709940,21 +211,8710047,4492189 +1630,8720321,46546 +1768,8724192,29570 +779,8729672,591265 +263,8740199,3332396 +859,8741336,475063 +771,8742874,622791 +1349,8752714,111739 +653,8753956,898159 +887,8758298,430228 +806,8760124,544808 +1530,8760563,63555 +1635,8772425,46011 +1828,8772923,23586 +1812,8773967,25205 +1840,8776452,22405 +26,8779575,21006735 +1959,8785003,12004 +595,8785314,1083600 +45,8788366,15642990 +1979,8792844,11152 +1260,8796215,142154 +1668,8806145,40954 +1216,8811880,165649 +243,8812550,3788544 +2221,8815353,2079 +381,8815749,2231142 +2522,8819990,10 +1839,8827094,22490 +1181,8831977,183378 +930,8839171,387074 +1722,8839403,35260 +15,8841266,28801647 +241,8842936,3836897 +1211,8843774,169224 +130,8847546,6842122 +946,8849267,363053 +2151,8852026,4083 +2294,8853146,859 +1418,8855679,92293 +2018,8856821,8701 +2249,8868716,1719 +1462,8876551,78919 +986,8877156,320744 +2329,8877886,500 +1389,8890346,99912 +665,8890793,855795 +328,8895532,2661110 +1099,8897100,225875 +591,8900955,1096729 +951,8907258,358910 +296,8908002,2947972 +1240,8908544,153342 +1457,8916982,80195 +1366,8922870,106282 +2129,8924845,4678 +1358,8925624,107428 +863,8925695,467993 +2533,8926516,9 +2320,8942143,563 +2306,8947021,756 +2169,8947705,3633 +293,8954402,2979818 +1660,8956715,41990 +197,8963720,4815571 +227,8966820,4206844 +107,8967440,7803952 +1373,8970390,104473 +787,8976313,575605 +1307,8978080,126088 +658,8980651,891569 +1150,8991696,193871 +2530,8994199,10 +1218,8997874,165020 +677,9000253,817699 +637,9003698,957657 +1325,9014108,119354 +1226,9016464,160998 +821,9016560,524769 +1981,9021037,10926 +356,9021920,2425794 +290,9023703,3003892 +2397,9029627,149 +283,9029928,3092607 +943,9031705,366879 +281,9037756,3130494 +256,9043233,3525740 +297,9047658,2940417 +396,9048764,2085913 +2370,9053254,252 +203,9057880,4684166 +193,9060641,4855009 +205,9060885,4636733 +1642,9067168,44548 +1612,9071253,49235 +2404,9090040,134 +1810,9091557,25592 +687,9094538,785343 +1846,9095581,21546 +854,9096738,480644 +1248,9097545,148684 +636,9101574,959817 +554,9103424,1245966 +473,9106642,1623352 +985,9106690,322853 +1278,9113064,136637 +1405,9120206,94913 +2218,9124682,2238 +2281,9129046,1214 +2314,9136062,647 +2224,9138661,2066 +924,9140898,392309 +1012,9147518,290590 +300,9148043,2902757 +1944,9148439,13275 +1316,9151549,123031 +2191,9153430,2913 +108,9154293,7705121 +253,9154820,3554050 +2198,9163140,2846 +77,9167250,10271407 +288,9174887,3014936 +1386,9179700,100419 +498,9180206,1500530 +547,9182487,1279677 +848,9185931,487362 +770,9186126,624828 +329,9186877,2656007 +217,9188016,4453768 +1567,9191031,56754 +662,9195661,878056 +621,9199885,979238 +2548,9213654,3 +1901,9225795,16840 +529,9228039,1353950 +1526,9231765,64364 +714,9234594,727335 +1383,9235561,101313 +35,9236866,18063277 +555,9238175,1234461 +342,9239515,2570530 +1454,9240154,80459 +1772,9253494,29316 +2091,9257513,5819 +1569,9260447,56021 +1778,9262877,28650 +470,9264752,1639792 +1614,9266092,48818 +2069,9270302,6583 +81,9272054,9078077 +1151,9277642,193677 +44,9280477,15669521 +670,9280679,838708 +1564,9282669,57582 +532,9282974,1337707 +708,9283142,738883 +1960,9283775,11938 +68,9291984,11129550 +1534,9292037,61632 +322,9299539,2736229 +2420,9312528,92 +485,9314079,1548717 +691,9314153,775182 +1364,9318449,106675 +148,9319058,6091520 +463,9320272,1691260 +494,698143931,1522616 +420,698147372,1913934 +389,698147969,2154353 +1561,698151302,58359 +2,698152377,64483141 +1444,698152498,85079 +196,698160606,4817557 +462,698162312,1691634 +2082,698162357,6109 +704,698167138,747975 +2365,698167153,280 +1241,698169715,152920 +811,698171150,541592 +511,698178312,1427932 +1962,698182935,11853 +1509,698187023,67586 +1963,698190039,11745 +975,698191218,331158 +1419,698200480,92229 +2040,698202162,7836 +970,698203538,335646 +507,698207545,1448850 +1475,698212272,73637 +154,698215322,5992429 +90,698231772,8663106 +1035,698232227,268823 +1890,698234770,17532 +180,698239813,5161982 +487,698241117,1540562 +775,698258283,607989 +2162,698262808,3798 +1737,698264828,33564 +701,698273555,751230 +1289,698278542,132088 +1229,698279195,158591 +1995,698281649,9810 +202,698285444,4684376 +467,698290319,1657034 +120,698290577,7209572 +593,698295651,1093948 +1391,698299678,99409 +525,698305474,1370882 +2285,698312347,1108 +1573,698315881,55545 +2546,698321130,4 +1215,698324343,166919 +1038,698330221,267052 +2350,698331388,371 +456,698338524,1748413 +717,698342159,721444 +917,698345556,400267 +2003,698346318,9412 +1137,698346954,200307 +850,698349125,483506 +194,698350371,4837614 +266,698353083,3311194 +1113,698356304,217322 +62,698361257,12448858 +1647,698363063,43927 +340,698364331,2576682 +426,698365960,1879251 +2201,698368493,2802 +1021,698373265,282992 +1975,698383417,11363 +1912,698384662,16453 +1892,698384726,17412 +1694,698385619,38157 +1811,698388041,25456 +417,698388578,1935434 +2102,698403524,5441 +359,698416970,2391187 +144,698420691,6250919 +616,698442418,1003917 +1568,698457392,56315 +220,698462285,4275609 +592,698477883,1094533 +1562,698485268,58113 +812,698486277,540843 +1064,698488800,243562 +219,698489071,4362741 +1806,698511920,26022 +1542,698519133,61160 +1221,698526036,163199 +983,698540331,326383 +727,698545981,707398 +2052,698548451,7406 +738,698557087,680465 +501,698562644,1482964 +1766,698580310,29636 +2184,698582741,3123 +131,698585370,6806381 +30,698588535,19344312 +760,698588812,643543 +2349,698592565,377 +2070,698592907,6560 +563,698599365,1207795 +781,698604229,584022 +1650,698605444,43675 +373,698613394,2287592 +553,698620694,1251296 +1736,698623373,33586 +274,698625834,3231569 +1947,698630140,12966 +504,698630507,1461305 +146,698635863,6127235 +138,698641566,6449298 +1938,698647624,13524 +431,698650301,1850095 +2302,698650509,793 +481,698652014,1559606 +1805,698652171,26067 +2509,698654164,10 +1632,698655576,46338 +1357,698655859,108416 +6,698659980,47666891 +2298,698661697,806 +892,698663855,423685 +1359,698666810,107340 +1878,698667255,18859 +600,698670524,1070897 +1374,698677650,103939 +1022,698680806,281908 +2277,698687597,1257 +1513,698687678,66439 +908,698692141,409713 +2039,698693697,7883 +2110,698696420,5311 +1605,698701911,50193 +335,698702991,2631328 +80,698704189,9557742 +1527,698704875,64198 +654,698723158,898083 +1584,698736778,54072 +1676,698738810,40225 +164,698739350,5509732 +2331,698743511,494 +1652,698748891,43352 +1784,698749311,28058 +1233,698757439,157369 +2116,698757487,5144 +2073,698766369,6454 +1994,698766454,9856 +284,698768565,3083564 +207,698769107,4587966 +2449,698776998,42 +1145,698783754,195271 +1791,698785538,27441 +190,698786826,4952726 +179,698789253,5223129 +1896,698791053,17070 +2442,698795589,50 +2470,698798180,25 +1742,698806018,32904 +32,698807570,19290274 +709,698811281,736131 +1968,698817235,11593 +127,698823542,6962284 +2391,698826217,166 +720,698826986,714219 +37,698829590,16889053 +2491,698830638,16 +823,698837993,520908 +596,698842996,1081714 +808,698845189,544065 +1498,698848067,70384 +1344,698848373,112781 +604,698849979,1049618 +2160,698855681,3872 +568,698867446,1190734 +365,698867483,2349415 +580,698879638,1150800 +330,698881022,2649164 +125,698884287,7041319 +276,698895940,3199646 +1435,698897472,87913 +1448,698905177,83875 +1360,698906190,107316 +2172,698906643,3530 +208,698908184,4584627 +1020,698908912,283972 +1967,698911639,11674 +2394,698913618,154 +424,698916948,1880728 +2001,698926585,9481 +2301,698931404,793 +2174,698931998,3499 +1511,698934729,67273 +1080,698938264,234404 +2512,698941586,10 +1168,698946155,187025 +1384,698957176,100899 +52,698962117,14665126 +46,698971484,15525372 +969,698983867,339411 +693,698987598,767458 +521,698993706,1395234 +712,698996782,733441 +1280,698998882,135573 +619,698999105,988540 +1538,699004723,61362 +2186,699006683,3027 +2038,699007059,7894 +2190,699011415,2946 +678,699016994,815873 +1895,699019249,17159 +1928,699025262,14585 +1421,699027000,91974 +1917,699034094,15658 +1304,699037086,126963 +1683,699039013,39001 +1350,699054327,111706 +149,699054373,6065824 +2484,699057459,19 +2446,699058253,45 +325,699065686,2721313 +1254,699066118,145991 +2057,699069151,7124 +111,699072129,7472273 +1485,699075351,72688 +450,699083129,1776566 +726,699086436,707750 +996,699088529,309464 +86,699088769,8888189 +1748,699091553,32444 +31,699097885,19327094 +7,699098531,45217889 +984,699099385,325610 +544,699099811,1293012 +830,699111651,513486 +1428,699117178,90754 +1622,699117865,47870 +1010,699117992,292775 +538,699121671,1310493 +1170,699121777,186725 +572,699126484,1182657 +2380,699126490,209 +1764,699127156,30224 +755,699127546,650396 +2393,699131849,156 +1029,699139964,274383 +1552,699144886,59805 +48,699146580,15259463 +1897,699146876,17055 +2550,699147813,2 +1803,699148121,26235 +631,699150527,967436 +767,699155679,629147 +1757,699156456,31124 +1611,699167148,49269 +1951,699169828,12463 +158,699170684,5840553 +437,699176234,1811252 +43,699189792,15723116 +945,699191449,363520 +952,699191455,358540 +778,699191464,592577 +515,699194766,1413992 +752,699195358,652950 +509,699196829,1443179 +469,699199084,1641689 +1129,699201278,205760 +561,699204478,1217334 +395,699208929,2086300 +2127,699212614,4822 +186,699213622,5004961 +569,699238479,1188053 +2183,699238678,3147 +1116,699244334,214380 +128,699246032,6962045 +215,699250676,4460847 +1829,699251542,23356 +115,699262350,7280262 +133,699265922,6702490 +1228,699266530,159925 +69,699269923,11003028 +1071,699272633,237925 +391,699272880,2138183 +98,699273451,8249333 +499,699277039,1491589 +730,699278528,703749 +414,699280514,1957178 +2219,699282717,2225 +493,699283869,1526096 +1481,699284822,72901 +1482,699285160,72811 +374,699287032,2281074 +163,699298370,5619356 +63,699299123,12382343 +997,699301458,309336 +311,699304554,2819883 +875,699308637,446123 +483,699316421,1557824 +1679,699319395,39758 +589,699320017,1116097 +642,699321518,935143 +244,699323302,3769457 +1507,699323781,67834 +2332,699325506,494 +1459,699326171,79112 +2456,699330765,38 +12,699333701,31336343 +1705,699336679,36850 +83,699336777,9045039 +2359,699339594,313 +432,699341889,1849599 +14,699342219,30315036 +1594,699343887,52121 +690,699346267,780131 +583,699346280,1146350 +622,699347951,976939 +2229,699351046,2003 +535,699351301,1321614 +315,699355601,2759835 +2236,699356102,1896 +841,699356968,502954 +1,699364813,70502457 +1065,699366937,242627 +9,699368887,44711673 +638,699372829,955404 +914,699373225,401816 +403,699373599,2044622 +1294,699375903,130500 +873,699377151,452638 +1089,699377401,230020 +508,699379895,1443786 +151,699380607,6008182 +723,699380621,711490 +65,699382126,12047704 +471,699383121,1633426 +85,699383279,8940268 +558,699385139,1218983 +601,699390457,1067811 +1512,699391409,66947 +143,699393742,6255307 +1195,699393759,176435 +1853,699396429,20912 +2382,699401083,196 +326,699402816,2709490 +1699,699405877,37410 +439,699406247,1808063 +1222,699406750,162789 +170,699406776,5447798 +375,699408669,2275226 +1301,699409420,127825 +367,699413040,2344696 +440,699413581,1802929 +1473,699419851,75724 +1765,699421735,30176 +1390,699423167,99588 +718,699424741,720744 +333,699425709,2641188 +2475,699428898,22 +331,699429153,2647344 +1401,699429335,95203 +183,699431255,5090158 +346,699432672,2513763 +210,699433558,4503598 +1780,699438389,28353 +855,699441366,480470 +18,699443920,25611151 +540,699448276,1303186 +2455,699448843,39 +1953,699449946,12404 +2344,699451338,427 +2053,699456288,7310 +2016,699469600,8802 +1926,699470220,14803 +1483,699471829,72799 +2058,699477624,7109 +676,699478692,823806 +1290,699483429,131866 +79,699485250,9834411 +1067,699488108,241354 +2537,699490365,6 +16,699491076,28465162 +2341,699491827,455 +2290,699491924,899 +2432,699492120,65 +1524,699493750,65022 +362,699494480,2366108 +172,699494488,5361231 +1870,699498602,19990 +1430,699501322,90234 +1603,699503079,50670 +1659,699508363,42129 +286,699509239,3031765 +627,699509284,972683 +1517,699510045,66053 +191,699510259,4892009 +1225,699511295,161027 +2227,699511370,2046 +8,699513260,44900450 +421,699516250,1911887 +1769,699516268,29526 +1790,699518384,27441 +2064,699518454,6790 +1531,699520575,63268 +1919,699522257,15521 +623,699523631,974961 +889,699524362,426866 +586,699524891,1139444 +1472,699530673,76683 +1793,699541376,27398 +2417,699542874,107 +1477,699543968,73359 +352,699545762,2481149 +1781,699545975,28324 +1525,699546317,64665 +360,699548295,2387060 +856,699550876,479775 +2004,699551148,9364 +324,699552859,2725747 +1492,699554427,71004 +1353,699556684,110527 +729,699557165,705423 +1329,699560327,117869 +260,699562182,3431915 +1179,699562874,184331 +140,699567608,6374869 +2217,699569800,2244 +267,699573053,3289630 +739,699574408,678103 +1368,699576407,105306 +1326,699576978,119015 +870,699578606,457027 +537,699580120,1318299 +955,699583677,352441 +2010,699588526,9047 +817,699589540,533051 +832,699590236,509942 +815,699595556,535650 +933,699598396,379151 +169,699598425,5470270 +2503,699598671,13 +2504,699598764,13 +2271,699600167,1314 +655,699600855,897623 +557,699603116,1228754 +1098,699604515,226400 +88,699605333,8786144 +2265,699609445,1407 +825,699611673,519657 +2358,699613884,323 +1671,699614027,40621 +2062,699614821,6879 +2506,699618326,12 +1174,699620730,185269 +1576,699621601,55297 +1993,699622781,9873 +1501,699622958,70074 +1601,699627771,50874 +388,699628084,2165207 +2122,699630110,4998 +1426,699632387,91314 +2355,699639001,326 +1621,699639005,48036 +901,699639122,415476 +979,699641777,328407 +1515,699642954,66255 +1161,699644054,189591 +1051,699644448,252461 +938,699644852,376879 +1943,699650981,13329 +1904,699651260,16663 +1997,699655364,9693 +1011,699656989,292275 +1879,699657242,18752 +764,699657450,636699 +235,699658023,3974122 +1782,699659708,28302 +250,699660539,3662763 +2023,699662232,8493 +989,699664910,318356 +1052,699665031,252354 +385,699665152,2186407 +2466,699668392,28 +1178,699671197,184469 +1017,699671454,286302 +2148,699672060,4112 +2379,699673236,222 +759,699674355,644007 +464,699676005,1679464 +1176,699677277,184774 +935,699678739,378462 +942,699678801,369484 +2000,699679662,9591 +2521,699682780,10 +757,699684062,644886 +531,699684693,1345012 +2347,699685533,395 +2319,699687328,581 +2260,699688180,1494 +954,699693687,353344 +1739,699694284,33278 +888,699695167,427285 +1336,699697136,116158 +33,699697558,19062379 +436,699698079,1815146 +100,699698253,8210953 +2488,699698745,17 +2161,699699422,3848 +2554,699699563,1 +74,699699601,10525703 +1264,699699650,141340 +1338,699703295,115717 +224,699703642,4224646 +177,699703782,5247823 +410,699704542,2000746 +1134,699705601,203422 +819,699706047,529367 +1285,699706955,134452 +1980,699709160,10948 +54,699710633,14532136 +1046,699711706,257921 +1026,699711723,278806 +835,699711926,506969 +2399,699711996,140 +382,699712422,2218906 +1119,699713515,211249 +2028,699716785,8152 +1050,699718269,255258 +2413,699720374,117 +84,699722599,9000918 +248,699723284,3722281 +1424,699724603,91702 +17,699725436,25763005 +1453,699726660,80533 +307,699728159,2858747 +2176,699728266,3439 +2335,699729211,472 +1950,699730399,12750 +633,699730714,966062 +881,699730998,435973 +212,699733098,4470943 +753,699733501,650880 +455,699734152,1759424 +1361,699734445,107068 +1143,699734795,195439 +585,699735020,1140829 +5,699736927,58365349 +121,699736959,7116416 +527,699737356,1361046 +634,699738350,963307 +2132,699739523,4620 +2128,699739891,4796 +2085,699741694,5966 +2348,699742054,390 +1072,699744012,237721 +161,699744766,5710647 +905,699745265,410698 +2418,699749184,102 +1056,699751062,247574 +2336,699752402,469 +897,699753640,420030 +2205,699753863,2544 +2492,699754856,15 +1522,699755859,65178 +53,699756210,14548659 +1200,699758688,174092 +145,699759128,6143594 +1949,699760767,12783 +49,699761749,15128884 +1859,699763225,20433 +1760,699765601,30795 +891,699765971,424391 +1990,699774694,10068 +2286,699776412,1091 +234,699777234,4026739 +762,699777372,642420 +748,699777556,659961 +398,699778028,2063079 +528,699778867,1355910 +1946,699779038,13094 +1664,699780721,41426 +1797,699780873,27029 +1822,699781390,24346 +649,699781605,907661 +13,699781762,30399535 +774,699783063,609992 +2471,699783641,25 +24,699783765,21758351 +56,699784536,14282814 +2173,699785141,3515 +209,699785935,4550312 +680,699788305,810320 +1691,699789609,38616 +956,699790202,351918 +1196,699791054,176315 +1602,699792747,50702 +898,699794286,417603 +1833,699794421,22984 +1932,699794720,14322 +301,699794765,2900231 +2422,699795301,90 +533,699795378,1337483 +1592,699795698,52249 +239,699796330,3897265 +1410,699796630,93889 +2092,699797065,5804 +836,699797252,505743 +477,699797508,1589401 +1400,699797805,95556 +1682,699798611,39058 +377,699799629,2260630 +1109,699800377,219463 +1013,699800992,289641 +1860,699802012,20400 +332,699803070,2647166 +2248,699803189,1743 +816,699804790,534790 +1455,699805379,80406 +926,699805839,390779 +2356,699811133,326 +1958,699811844,12181 +751,699812007,653248 +907,699812351,410334 +1269,699812571,140217 +1136,699812653,200509 +1673,699812869,40538 +168,699814283,5482130 +1088,699816699,230204 +1425,699818726,91448 +277,699820572,3173578 +492,699821629,1526344 +1148,699821755,194325 +1971,699823365,11520 +1634,699823490,46152 +852,699825089,483135 +1130,699825236,205025 +2430,699825977,67 +2396,699826312,150 +2361,699826996,305 +259,699827112,3463079 +1872,699828338,19860 +110,699828442,7576270 +157,699828685,5850192 +1563,699829494,57944 +1381,699829916,101642 +1991,699829975,10061 +1619,699830255,48182 +2289,699831193,914 +1541,699831366,61296 +1140,699831860,196996 +799,699832431,554941 +719,699832463,714850 +316,699833171,2756352 +364,699834004,2349872 +2168,699835178,3642 +1577,699837483,55244 +476,699837826,1601789 +2453,699840189,40 +1574,699841959,55536 +1868,699842853,20066 +2299,699843389,801 +937,699843417,377368 +2549,699843936,2 +1976,699844314,11297 +1267,699844594,140879 +573,699844727,1178661 +2513,699844880,10 +1464,699845400,78879 +273,699846892,3240207 +64,699849210,12217877 +434,699850967,1830207 +925,699851345,391682 +513,699851426,1419741 +78,699851427,10069043 +1476,699852080,73521 +1977,699853308,11284 +1310,699854312,125427 +299,699854484,2916538 +2071,699854830,6492 +2194,699855277,2867 +2235,699855647,1902 +1250,699856830,148258 +55,699856962,14482280 +696,699857387,759629 +1321,699858313,120661 +408,699859013,2010054 +2374,699860418,238 +2030,699860651,8074 +597,699861004,1080028 +2340,699862278,456 +1036,699863708,268489 +788,699864013,573736 +386,699866225,2179736 +2351,699866271,353 +667,699866510,852781 +971,699867602,334547 +2261,699867743,1480 +20,699868002,23991037 +2434,699868399,64 +1623,699868739,47810 +105,699869682,7860158 +660,699870198,885116 +743,699870923,668643 +1792,699872032,27422 +2234,699872401,1930 +1024,699872616,280833 +2075,699873141,6404 +1019,699875132,285278 +530,699875213,1348053 +2074,699875650,6425 +904,699876345,411555 +1276,699876746,138328 +776,699878150,601667 +312,699878511,2769397 +1047,699879113,256509 +796,699879556,559578 +559,699879927,1217808 +1348,699880701,111890 +106,699883079,7858799 +1309,699883836,125479 +2182,699884788,3148 +2087,848882397,5949 +2130,848882577,4638 +798,848883237,556655 +1876,848883542,19097 +321,848883684,2744903 +1519,848883791,65339 +361,848886056,2383831 +1636,848886200,45795 +840,848886870,503166 +155,848886973,5919155 +758,848887199,644345 +2325,848888787,539 +624,848889556,974911 +1300,848889850,128418 +1744,848890012,32768 +1910,848892804,16515 +1449,848895676,83760 +1093,848896434,228210 +298,848896948,2934508 +1210,848897972,169962 +603,848899726,1067522 +1908,848901396,16585 +1034,848902592,270768 +657,848902744,893390 +1493,848903260,70905 +1362,848903690,106887 +279,848905770,3160117 +2489,848905784,17 +1734,848907771,33665 +1707,848908144,36806 +2510,848909292,10 +489,848909464,1536128 +756,848910122,650264 +295,848912265,2958761 +780,848912772,585787 +1158,848912937,190479 +641,848913030,935557 +372,848913037,2294416 +2245,848913252,1788 +66,848913998,11654478 +1986,848914120,10288 +318,848914661,2753009 +1773,848915032,29147 +159,848915531,5795604 +11,848915730,34279950 +1133,848915956,203724 +1441,848916779,85595 +1333,848917127,116976 +2068,848917401,6637 +1086,848917570,230759 +2026,848918262,8170 +59,848918380,13281328 +2367,848919959,264 +1111,848921536,217999 +745,848921793,667174 +916,848921861,400974 +1850,848922118,21114 +2273,848922517,1286 +2196,848922958,2858 +1655,848923540,42712 +334,848924219,2634629 +864,848925840,465383 +2381,848926070,201 +615,848926293,1005626 +809,848927262,542408 +790,848928486,569247 +632,848928624,966210 +249,848930111,3677882 +1244,848930498,151017 +1961,848930898,11928 +1983,848931321,10691 +2146,848932115,4152 +877,848932879,440626 +1188,848933470,179740 +246,848934935,3724744 +577,848935020,1167324 +272,848935389,3250577 +2373,848935732,240 +725,848936053,709947 +2516,848936229,10 +1662,848937248,41847 +1590,848937780,53490 +1836,848939131,22689 +2401,848939203,138 +2035,848940223,8010 +1858,848942587,20437 +1909,848942618,16516 +2383,848942734,188 +1982,848942847,10697 +694,848942968,765781 +2388,848943145,176 +626,848945529,973401 +1040,848946608,265261 +722,848946700,712969 +1452,848949271,82007 +2403,848949517,134 +1714,848949597,35868 +2208,848950255,2465 +1802,848952556,26462 +1930,848952566,14483 +715,848953066,722231 +1656,848953472,42440 +2536,848954163,7 +1262,848954236,141428 +1146,848955311,194496 +96,848955783,8330876 +1025,848956013,280700 +58,848956513,13504529 +19,848956765,25399997 +1440,848958111,86182 +1103,848958556,223933 +2013,848959231,8919 +1516,848960061,66096 +829,848963236,515345 +2339,848963521,458 +1626,848964811,47306 +2433,848965531,65 +801,848966521,551097 +294,848967422,2973940 +60,848967710,13160232 +2486,848969160,18 +2427,848969313,73 +2177,848970357,3414 +519,848971079,1408362 +1711,848973715,36351 +2226,848973968,2063 +1837,848974611,22665 +1641,848974774,44622 +1028,848975192,274531 +741,848976034,673293 +2472,848976720,23 +2421,848977118,92 +2108,848977203,5330 +1291,848977412,131256 +1298,848977600,129373 +977,848977649,330173 +506,848977748,1449794 +1783,848978052,28201 +1952,848978284,12413 +113,848978297,7444668 +2187,848978534,3024 +409,848978903,2005361 +503,848980237,1465855 +2543,848980727,4 +1191,848981244,178874 +2250,848981523,1714 +1429,848981726,90390 +2022,848982634,8503 +2409,848982635,124 +1372,848984022,104772 +23,848985692,22571861 +541,848986287,1300472 +1058,848986638,245997 +587,848987051,1131164 +1886,848987695,17735 +1009,848988401,292842 +1263,848988744,141422 +1730,848989855,33812 +849,848993505,486238 +2284,848993769,1169 +280,848995242,3144264 +1416,848995291,92382 +2149,848995446,4104 +661,848995478,884941 +2292,848998530,892 +1415,848999448,92976 +1845,848999518,21637 +818,848999671,532408 +1555,849000135,59226 +1499,849001277,70144 +261,849001572,3372540 +189,849001724,4962163 +763,849002091,637870 +800,849002796,551359 +620,849004274,982158 +2247,849004461,1755 +500,849004759,1483576 +1849,849005658,21160 +1698,849005829,37528 +1160,849006011,189605 +269,849006145,3277982 +2458,849006194,36 +648,849006385,907994 +861,849006412,471917 +2468,849008396,27 +1787,849009623,27745 +198,849009945,4760765 +240,849010255,3893072 +772,849010386,622747 +117,849012521,7240820 +1066,849012843,241580 +520,849012985,1405337 +1299,849013126,128688 +486,849014147,1542515 +514,849014413,1415250 +28,849014922,20078612 +1649,849015875,43717 +1094,849017820,227281 +1819,849017894,24471 +34,849018239,18276157 +1162,849018442,189376 +1438,849018778,86964 +2212,849018780,2291 +1906,849019785,16608 +1273,849020094,139166 +2046,849020212,7504 +1382,849020667,101538 +1398,849021566,95822 +1553,849022063,59734 +2338,849022649,463 +565,849023078,1199153 +1259,849023212,142465 +383,849023540,2207981 +2118,849024152,5066 +1745,849024208,32567 +2180,849024333,3227 +1549,849025083,60365 +1865,849025558,20237 +142,849026145,6265779 +206,849027025,4610295 +838,849027653,503958 +851,849027712,483187 +1172,849028071,186136 +314,849028088,2765987 +2523,849030062,10 +1599,849030086,51114 +82,849030226,9066446 +505,849031818,1451658 +402,849031846,2044808 +2252,849032027,1670 +270,849032059,3264461 +927,849032413,390308 +1039,849032414,266453 +837,849032741,504632 +1616,849034666,48547 +201,849034882,4709364 +2392,849034917,161 +2036,849035447,7945 +390,849035525,2145461 +433,849035905,1842848 +2556,849036055,1 +1551,849036262,59825 +2135,849037354,4563 +103,849037407,7921784 +72,849037469,10728566 +1365,849037699,106429 +1156,849038195,191739 +2357,849038572,325 +2106,849038597,5362 +2188,849038985,2996 +1147,849039310,194375 +672,849040142,836013 +289,849040194,3004716 +1702,849040462,37345 +488,849041192,1537655 +2324,849042461,542 +2278,849042480,1252 +1284,849043776,134454 +1184,849044705,181601 +1180,849044961,183876 +353,849045047,2451513 +991,849045675,314724 +413,849045915,1962407 +2251,849046206,1705 +1615,849046232,48702 +2167,849047044,3716 +1061,849047233,244753 +446,849048112,1787404 +1070,849048216,238297 +1887,849048241,17669 +820,849048455,526096 +900,849048552,417026 +1496,849048562,70618 +1518,849048734,66028 +2175,849048856,3444 +803,849048867,546220 +425,849049045,1880220 +876,849049155,444797 +2531,849049288,10 +1795,849050087,27157 +1436,849050191,87389 +1014,849050734,288765 +885,849050849,431057 +1667,849051363,40999 +441,849051436,1796272 +2366,849051731,269 +1286,849051976,133888 +2402,849052195,135 +2094,849052289,5784 +285,849052549,3036086 +1242,849052588,152292 +2372,849053122,240 +1073,849053868,237456 +692,849054582,771897 +153,849054951,5992608 +1788,849055181,27670 +1417,849055309,92381 +959,849055425,349011 +1820,849055527,24432 +1063,849055553,243986 +1862,849056475,20311 +406,849056744,2025907 +1016,849056892,286426 +2083,849057176,6038 +902,849057450,414478 +313,849057572,2766649 +199,849057655,4746948 +843,849057764,498195 +1345,849059331,112602 +1005,849059457,299626 +118,849059491,7227994 +2079,849060099,6187 +2426,849060357,77 +182,849060446,5091535 +36,849061374,17785250 +258,849061406,3479079 +1867,849061417,20099 +2076,849062546,6368 +1572,849062920,55612 +370,849063605,2310886 +1265,849063793,141250 +457,849063849,1737203 +899,849063932,417027 +2254,849064084,1657 +1670,849064087,40706 +309,849064614,2840887 +1288,849064715,133533 +25,849064752,21420517 +1740,849065566,33162 +1925,849065606,14990 +608,849065697,1027235 +2165,849065829,3750 +2369,849066035,260 +1330,849066044,117646 +807,849066125,544237 +1106,849066618,222816 +2333,849066808,484 +673,849066849,830945 +1646,849067079,44002 +1851,849067192,21060 +1311,849067216,124790 +536,849068108,1318929 +857,849068662,477392 +2107,849069010,5332 +724,849069022,710657 +1767,849070220,29590 +516,849070335,1412364 +606,849070464,1034049 +2008,849070736,9084 +1775,849070812,28981 +495,849070946,1514224 +611,849071545,1016411 +1236,849072873,157046 +2552,849072919,2 +922,849073156,394536 +1972,849073314,11510 +2157,849074508,3955 +1948,849075298,12907 +1540,849075442,61308 +1101,849075836,224941 +1752,849076187,31828 +320,849076515,2748731 +981,849076678,327384 +343,849076810,2563529 +2412,849076953,120 +1450,849077481,83198 +1437,849078086,87148 +2532,849078119,9 +570,849078297,1186184 +275,849078498,3200547 +1911,849078942,16461 +2389,849079977,171 +721,849080011,713736 +1585,849080118,53798 +1922,849080197,15346 +2145,849080260,4267 +828,849080702,515459 +1675,849081284,40337 +1595,849081641,51847 +2464,849081869,30 +1451,849082154,82459 +1789,849082580,27478 +765,849082839,631936 +664,849082848,858601 +2321,849083293,549 +1478,849083294,73346 +379,849083501,2242954 +1970,849083534,11561 +736,849083725,695126 +61,849084005,12879525 +1838,849084066,22522 +1120,849084474,210965 +97,849084740,8328465 +147,849084911,6118507 +872,849084920,453641 +101,849084985,8186173 +1914,849085160,15989 +1543,849085293,61104 +1238,849085371,155127 +645,849085605,922641 +994,849085764,311222 +1861,849085908,20348 +617,849085961,1001561 +2363,849086132,292 +1297,849086357,129552 +306,849086491,2864710 +1053,849086693,249868 +1376,849086783,102821 +993,849086817,312867 +1033,849086925,271503 +2479,849087149,21 +705,849087581,743271 +445,849087742,1788851 +1964,849087786,11744 +415,849087855,1956095 +1808,849087895,25951 +1087,849088101,230406 +1703,849088199,37080 +126,849088243,7027282 +338,849088515,2610487 +1510,849088639,67485 +1583,849088882,54301 +1048,849088923,256361 +1528,849089207,64179 +2342,849089323,437 +104,849089459,7908782 +1523,849089499,65074 +1609,849089512,49747 +1815,849089601,25100 +2059,849089654,6996 +195,849089881,4837531 +237,849090130,3959273 +1287,849090187,133863 +2185,849090573,3072 +1717,849090765,35755 +2326,849090846,520 +2089,849090954,5873 +134,849091060,6694744 +287,849091084,3021831 +684,849091105,802590 +91,849091769,8649425 +479,849091866,1570936 +783,849091897,582774 +303,849091899,2897090 +497,849091947,1507010 +2005,849091972,9245 +629,849092109,971278 +1529,849092185,63567 +1246,849092244,150249 +630,849092309,969709 +2134,849092639,4604 +987,849092685,320314 +310,849092723,2834294 +566,849092769,1195520 +700,849092827,753295 +354,849092978,2436197 +911,849093003,407023 +880,849093155,436883 +1138,849093353,199325 +95,849093422,8358884 +228,849093426,4184530 +1043,849093576,263299 +588,849093742,1128637 +1213,849093771,167171 +599,849093875,1072635 +804,849093924,545410 +2280,849094006,1234 +671,849094023,836768 +371,849094067,2309275 +1575,849094111,55387 +827,849094147,516445 +2353,849094355,343 +482,849094586,1558460 +1332,849094597,117029 +685,849094603,799915 +366,849094609,2346752 +871,849094653,454953 +1719,849094688,35439 +939,849094759,375368 +1712,849094789,36244 +1875,849094972,19174 +229,849095014,4154128 +407,849095068,2021906 +1249,849095219,148644 +452,849095227,1766815 +319,849095240,2750057 +913,849095324,403978 +1680,849095376,39345 +2362,849095430,299 +839,849095435,503473 +1079,849095446,234739 +963,849095448,345644 +268,849095482,3286556 +1122,849095488,210272 +1825,849095509,24101 +936,849095599,377514 +1604,849095601,50602 +2033,849095642,8050 +1973,849095771,11507 +1128,849095778,205808 +1804,849095800,26086 +1751,849095814,31870 +1799,849095825,26937 +958,849095829,349090 +1306,849095879,126171 +614,849095948,1010131 +245,849095959,3730882 +1202,849095963,173172 +598,849095992,1073960 +1638,849096041,45392 +1461,849096102,78993 +2086,849096123,5965 +612,849096215,1012738 +1412,849096265,93576 +742,849096285,673064 +647,849096310,911534 +1651,849096334,43471 +2480,849096341,20 +1755,849096346,31524 +102,849096354,7982919 +613,849096383,1012255 +1550,849096399,59847 +1598,849096435,51547 +635,849096454,961863 +254,849096458,3537451 +480,849096544,1564034 +339,849096547,2608825 +1205,849096592,172449 +1083,849096594,233201 +116,849096606,7268582 +1732,849096631,33686 +534,849096649,1322921 +813,849096768,537780 +584,849096856,1142099 +618,849096874,990899 +357,849096882,2403901 +1537,849096891,61482 +1002,849096944,301356 +223,849096945,4236029 +912,849096958,406660 +896,849096972,421293 +884,849096977,432693 +526,849096979,1368607 +1710,849096990,36443 +768,849097002,628815 +1848,849097006,21307 +878,849097103,439966 +2317,849097123,607 +575,849097175,1171915 +990,849097220,317623 +2012,849097312,8923 +1355,849097357,110136 +1443,849097370,85184 +2275,849097373,1271 +1363,849097386,106733 +1956,849097445,12245 +2238,849097477,1867 +582,849097614,1148423 +1272,849097620,139507 +1733,849097681,33675 +1069,849097716,238932 +1431,849097729,89907 +824,849097737,520648 +1328,849097792,118490 +1076,849097793,234999 +348,849097799,2497365 +1954,849097837,12403 +707,849097898,741397 +1672,849097924,40562 +663,849097937,869863 +910,849097954,409054 +659,849097981,887832 +1126,849098109,207000 +1871,849098132,19975 +1203,849098136,172912 +1467,849098159,78345 +1465,849098162,78599 +1237,849098192,156540 +734,849098200,696404 +1217,849098217,165118 +560,849098265,1217717 +686,849098299,794565 +923,849098324,393674 +1966,849098326,11682 +1341,849098374,114269 +940,849098387,373750 +590,849098400,1114048 +1060,849098423,245338 +2153,849098476,4005 +2142,849098477,4388 +868,849098516,461252 +893,849098557,423588 +1779,849098592,28616 +2318,849098607,589 +238,849098628,3945325 +948,849098648,359923 +2211,849098667,2377 +136,849098688,6595230 +1801,849098693,26656 +265,849098695,3312749 +1399,849098724,95773 +785,849098727,577005 +2077,849098731,6315 +2207,849098766,2470 +571,849098769,1182703 +791,849098774,565268 +443,849098782,1790522 +890,849098784,425178 +702,849098791,750457 +1984,849098822,10615 +2002,849098827,9469 +1253,849098848,146933 +490,849098966,1532153 +2461,849098993,34 +236,849099021,3968568 +1905,849099054,16631 +651,849099105,903189 +1723,849099131,34906 +1000,849099138,307203 +1385,849099141,100555 +1153,849099145,193095 +438,849099160,1810078 +1283,849099258,135104 +218,849099276,4426917 +2049,849099280,7474 +1335,849099342,116624 +2090,849099391,5864 +1474,849099422,75690 +1068,849099434,239566 +539,849099463,1307172 +419,849099505,1916646 +1318,849099517,122681 +1700,849099541,37382 +683,849099544,802665 +1139,849099557,198955 +2067,849099558,6697 +1274,849099601,138576 +669,849099640,839056 +1955,849099660,12287 +1969,849099689,11571 +232,849099696,4104676 +594,849099785,1086842 +1407,849099797,94884 +1826,849099804,24012 +882,849099815,434659 +1490,849099859,71587 +1331,849099864,117234 +184,849099876,5054183 +1718,849099887,35690 +2024,849099924,8436 +1124,849099932,207333 +1458,849099955,79199 +378,849099965,2251443 +2316,849100006,615 +1042,849100016,263349 +750,849100034,654055 +1132,849100082,204714 +1835,849100083,22736 +2171,849100089,3581 +2216,849100134,2245 +564,849100149,1203796 +2300,849100162,797 +2133,849100199,4619 +1591,849100211,52425 +794,849100228,562085 +1295,849100246,130422 +754,849100262,650658 +2020,849100288,8604 +1643,849100289,44504 +610,849100323,1022793 +387,849100349,2179339 +1520,849100352,65317 +1277,849100354,136982 +1340,849100383,114567 +847,849100399,490576 +1110,849100406,218430 +2014,849100439,8859 +1082,849100463,233366 +1105,849100496,223069 +1759,849100584,30834 +988,849100611,318465 +1923,849100612,15285 +412,849100615,1983579 +1370,849100656,104971 +1192,849100680,177442 +1855,849100743,20848 +1074,849100744,236541 +2328,849100760,501 +2031,849100782,8071 +1600,849100787,51068 +1852,849100796,21048 +602,849100811,1067674 +833,849100814,509850 +2297,849100815,807 +1597,849100877,51690 +1305,849100882,126686 +1869,849100891,20041 +556,849100994,1229582 +1728,849101018,33928 +1214,849101029,166951 +1090,849101083,228731 +1054,849101092,247967 +1337,849101102,115944 +976,849101104,330866 +1746,849101108,32498 +522,849101116,1377047 +1135,849101132,202542 +1888,849101135,17634 +2231,849101144,1975 +1183,849101148,181608 +1059,849101162,245681 +2193,849101177,2902 +953,849101186,356956 +1239,849101205,153581 +1404,849101224,94938 +1929,849101232,14543 +1154,849101248,192900 +2158,849101268,3933 +1497,849101276,70590 +2088,849101284,5898 +1413,849101291,93468 +1644,849101293,44203 +1665,849101309,41138 +961,849101311,347637 +786,849101377,576520 +502,849101378,1479052 +1484,849101382,72731 +1281,849101391,135435 +2048,849101409,7476 +2283,849101443,1201 +1669,849101526,40748 +1709,849101578,36591 +931,849101579,386431 +1049,849101580,255835 +2288,849101581,947 +1023,849101604,281322 +2139,849101646,4462 +2123,849101647,4996 +1296,849101652,130273 +1726,849101674,34412 +1891,849101694,17467 +2197,849101771,2852 +1566,849101814,57088 +978,849101845,329091 +1706,849101871,36850 +919,849101881,398218 +1334,849101884,116952 +405,849101889,2032977 +1352,849101893,110631 +1494,849101945,70892 +1924,849101947,15078 +1470,849101962,77488 +2469,849102037,26 +323,849102068,2731982 +460,849102092,1713715 +1677,849102094,40181 +1223,849102108,162330 +2021,849102143,8602 +2214,849102150,2250 +2540,849102302,5 +1754,849102336,31534 +1007,849102464,297191 +1637,849102480,45681 +2547,849102505,3 +886,849102573,430361 +2385,849102985,184 +1581,849103148,54791 +2304,849103156,767 +2204,849103237,2564 +862,849103456,470082 +2490,849103595,16 +1696,849103688,38045 +2441,849103914,50 +1785,849103947,27898 +1606,849104010,49851 +1380,849104100,102134 +1027,849104286,274776 +1261,849104297,142114 +710,849104328,733790 +1303,849104356,127477 +860,849104491,471925 +846,849104546,492248 +2017,849104633,8711 +2112,849104814,5278 +2258,849104818,1523 +1684,849104855,38893 +1697,849105071,37936 +2495,849105072,14 +1367,849105102,105677 +2551,849105201,2 +1761,849105232,30618 +2378,849105408,224 +1847,849105417,21464 +1937,849105420,13551 +2164,849105463,3754 +2239,849105613,1853 +2034,849105954,8020 +1777,849106210,28838 +1927,849106303,14780 +2041,849106316,7723 +1062,849106340,244146 +1689,849106383,38704 +2240,849106420,1833 +2445,849106576,45 +2228,849106601,2032 +1610,849106612,49576 +2462,849106698,30 +1123,849106785,208691 +2386,849106820,180 +2524,849106828,10 +1936,849106971,13750 +2295,849107104,843 +2482,849107188,20 +1889,849107426,17603 +2233,849107507,1937 +1559,849107532,58695 +1996,849107703,9713 +2555,849107799,1 +2440,849107881,50 +1841,849108007,22165 +2293,849108053,884 +1504,849108148,69439 +2027,849108157,8164 +1324,849108328,119542 +2481,849108339,20 +2262,849108350,1464 +404,849108623,2042421 +2303,849108762,785 +795,849108780,561055 +1315,849108784,123115 +1873,849108934,19746 +2467,849108971,28 +1654,849108991,43297 +2345,849109010,426 +1495,849109072,70777 +2525,849109116,10 +1899,849109152,16951 +2538,849109232,6 +1423,849109413,91716 +1320,849109507,122292 +2213,849109521,2266 +1729,849109637,33843 +1857,849109795,20612 +2296,849109885,817 +1915,849109935,15916 +2257,849109966,1530 +2121,849110304,5001 +2125,849110310,4920 +1935,849110365,13887 +2447,849110380,43 +1800,849110382,26808 +2558,849110571,1 +1881,849110622,18396 +1992,849110644,9971 +2267,849110674,1399 +1894,849110688,17180 +1508,849110711,67742 +1941,849110743,13483 +2408,849110916,127 +2056,849111050,7137 +1532,849111196,62389 +2542,849111231,4 +2225,849111244,2066 +2415,849111316,110 +2109,849111332,5318 +2360,849111408,310 +2454,849111418,39 +2535,849111487,8 +2431,849111632,65 +1817,849111667,24659 +2387,849111732,178 +2346,849111792,419 +2384,849111819,186 +1940,849112029,13489 +2223,849112033,2067 +1934,849112050,14091 +2559,849112264,1 +2544,849112312,4 +1918,849112368,15556 +2131,849112369,4637 +2474,849112435,23 +2195,849112510,2858 +2037,849112774,7942 +2429,849112876,70 +1903,849112879,16665 +2268,849112887,1380 +2483,849112960,19 +2460,849113055,34 +2557,849113078,1 +2452,849113300,40 +2291,849113350,897 +2507,849113480,11 +2334,849113485,478 +2279,849113546,1243 +2104,849113595,5386 +2117,849113597,5128 +2476,849113603,22 +2327,849113673,512 +2511,849114022,10 +2337,849114028,464 +2312,849114033,678 +2242,849114085,1820 +2517,849114112,10 +2255,849114119,1628 +2377,849114265,230 +2084,849114408,6028 +2502,849114445,13 +2450,849114450,42 +2410,849114477,123 +2526,849114502,10 +2405,849114579,134 +2465,849114683,30 +2496,849115254,13 +2463,849115431,30 +2498,849115994,13 +2111,849116221,5279 +2210,849116310,2379 +2443,849116357,49 +2499,849116416,13 +1985,849116419,10597 +2424,849116679,88 +2560,849116980,1 +2311,849117143,693 +2322,849117196,549 +2505,849117240,13 +2209,849117242,2382 +2313,849117427,676 +2508,849117454,10 +2539,849117533,5 +1965,849117830,11714 +2364,849118259,282 +2514,849118262,10 +2309,849118441,723 +2518,849118462,10 +2451,849118709,40 +2259,849118786,1499 +2400,849118999,140 +2534,849119078,8 +2419,849119862,100 +2315,849119975,636 +2527,849119994,10 +2307,849120467,750 +2459,849121835,34 +2561,849122297,1 +2428,849122768,70 +2439,849122819,50 +2485,849123125,18 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_all_tribe.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_all_tribe.txt new file mode 100644 index 0000000..22b2e46 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_all_tribe.txt @@ -0,0 +1,263 @@ +2,1,518573688 +98,4,1148596 +3,7,513901496 +68,8,2934283 +82,12,1995450 +118,13,650623 +34,19,11791705 +79,24,2170371 +56,29,4083236 +62,31,3582008 +35,33,11535004 +8,35,117907676 +11,39,90994883 +4,47,467872721 +144,53,328407 +119,56,632131 +61,59,3643561 +45,68,7073381 +29,71,17132708 +126,72,544908 +25,77,24603199 +21,80,36196035 +7,85,121654301 +104,89,936121 +85,92,1913549 +71,96,2816660 +122,97,598608 +55,106,4489957 +22,112,30162886 +132,115,476582 +67,117,3041909 +1,120,575766755 +83,125,1945540 +64,129,3421838 +95,134,1255473 +81,147,2028269 +49,157,6376060 +209,159,35302 +167,176,158224 +139,185,377805 +251,187,1367 +20,194,38570320 +225,200,23586 +151,206,242627 +59,210,3760105 +70,211,2893518 +101,214,993612 +213,216,32443 +120,220,630577 +66,234,3106000 +182,236,91702 +211,255,35260 +50,256,6123731 +178,260,101651 +170,281,140209 +87,285,1526835 +233,287,11666 +253,290,539 +17,291,63046795 +18,301,54807871 +158,305,198650 +16,309,65460188 +164,317,182517 +115,319,708504 +149,336,267052 +242,339,5461 +112,355,760905 +200,365,52241 +5,369,177967660 +114,373,711036 +197,374,54819 +89,375,1417749 +52,377,5516679 +141,382,359638 +86,385,1780581 +207,397,36806 +40,412,7844341 +156,413,215538 +235,415,10061 +163,429,184774 +27,430,19841316 +41,432,7710423 +159,435,197777 +46,441,7053877 +184,443,83584 +161,451,188672 +38,452,9604806 +218,474,28931 +96,475,1255265 +238,503,7494 +72,517,2615421 +134,520,454684 +136,523,437089 +43,546,7268867 +42,548,7387675 +146,554,322799 +217,557,29930 +30,594,16158300 +172,597,139493 +91,607,1329820 +162,624,185431 +193,625,66255 +236,626,8121 +147,633,269857 +168,636,149408 +103,647,991269 +97,651,1202654 +90,664,1371321 +14,666,67663161 +117,686,672292 +174,689,135903 +33,693,13927849 +23,722,28486103 +246,723,4620 +128,733,512496 +107,750,876738 +94,758,1256466 +140,766,365059 +78,778,2174294 +10,785,107688398 +63,786,3554001 +131,806,476872 +165,809,171639 +77,822,2340609 +12,830,87500446 +190,841,69410 +75,847,2499022 +6,862,137050699 +84,936,1940894 +65,944,3297382 +223,945,27441 +179,963,97544 +222,965,27527 +74,989,2543700 +129,991,500661 +32,1023,14775879 +13,1039,85035694 +36,1040,11104753 +44,1052,7076030 +108,1058,863124 +58,1079,3828584 +110,1096,792047 +28,1108,17765763 +183,1127,83875 +15,1128,66590221 +48,1140,6606194 +39,1148,8067345 +100,1161,996140 +187,1163,77166 +234,1166,11428 +221,1170,27655 +106,1209,886014 +37,1226,10190721 +57,1232,3875472 +192,1247,66890 +153,1258,223069 +230,1261,13732 +137,1275,399365 +130,1278,481948 +53,1293,4834337 +76,1312,2363357 +204,1317,46145 +160,1333,197267 +26,1336,20414438 +177,1338,113620 +176,1347,125259 +152,1357,224264 +93,1368,1288589 +191,1372,68452 +47,1376,6847914 +201,1389,51601 +102,1399,992741 +19,1411,47947434 +157,1416,214684 +69,1418,2914447 +210,1421,35273 +133,1423,471241 +121,1428,630185 +123,1431,594841 +113,1432,733473 +169,1448,149206 +111,1456,785196 +255,1460,381 +88,1466,1450455 +127,1470,528181 +142,1477,358992 +24,1480,26541802 +80,1483,2062188 +226,1484,22060 +216,1494,30432 +175,1498,126080 +9,1523,117452472 +185,1526,81749 +51,1528,5769388 +99,1530,1117026 +199,1535,52879 +249,1538,3192 +138,1551,395786 +196,1573,56642 +247,1582,3987 +229,1585,13876 +214,1588,31524 +224,1590,26580 +54,1597,4762478 +166,1599,165273 +109,1602,805496 +180,1609,97494 +202,1610,48607 +31,1621,16042983 +231,1626,13439 +143,1627,334012 +154,1636,221031 +116,1638,699804 +244,1643,4920 +212,1645,33370 +92,1648,1299521 +73,1651,2577567 +150,1652,261207 +243,1656,5332 +155,1657,215830 +208,1669,36495 +241,1672,5468 +148,1680,267604 +189,1681,69556 +194,1683,64961 +173,1687,137468 +228,1690,16936 +188,1691,74062 +227,1692,17669 +125,1700,575954 +258,1705,62 +239,1715,6946 +124,1716,584874 +232,1721,12907 +105,1724,934176 +237,1727,7801 +240,1729,6680 +195,1734,64596 +135,1735,454224 +171,1737,140112 +186,1740,81233 +145,1745,323681 +205,1750,43707 +263,1753,2 +262,1754,10 +254,1755,395 +252,1757,1278 +215,1758,30731 +220,1760,27699 +203,1763,46599 +257,1770,124 +198,1771,54425 +245,1772,4774 +261,1777,10 +256,1779,207 +60,1780,3660507 +259,1783,52 +250,1785,1705 +206,1790,43136 +181,1793,97199 +260,1795,40 +219,1797,28823 +248,1808,3755 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_att.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_att.txt new file mode 100644 index 0000000..0196476 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_att.txt @@ -0,0 +1,1978 @@ +593,17714,222346 +88,33900,3695799 +741,50930,108523 +790,82782,84826 +1395,89637,4149 +1864,100452,88 +1266,112401,7325 +383,113796,613398 +1671,118121,695 +1917,122492,32 +1580,126954,1416 +1721,160513,395 +1045,192947,23281 +961,195249,36942 +661,197581,151562 +1843,205821,118 +129,225023,2344650 +1149,254937,13636 +54,272173,4736418 +1741,281866,326 +1334,289542,5480 +792,301602,83768 +1295,310729,6540 +1819,335509,147 +1539,337137,1910 +114,356642,2666299 +1133,361125,15088 +1669,364126,704 +1704,382222,500 +140,393668,2217050 +1827,412571,137 +121,477415,2498636 +1569,478956,1534 +708,483145,123243 +1550,498483,1784 +959,529552,37346 +367,542253,655274 +1762,545152,273 +206,556154,1531071 +1691,570100,581 +1636,584989,868 +1689,602408,584 +230,606407,1303914 +930,606706,44391 +1200,609384,10514 +1751,610196,291 +1417,634848,3636 +458,671516,433457 +185,692803,1692015 +1752,712216,291 +1242,724621,8189 +1132,745946,15103 +819,747422,72427 +190,758104,1639319 +1944,762859,17 +1284,762975,6746 +754,763529,98048 +852,765188,62873 +1905,769293,39 +38,828637,6062596 +1775,869195,247 +60,873575,4419223 +1686,878961,598 +238,879782,1210248 +1930,881782,26 +1208,915113,10216 +1568,921888,1537 +599,926823,215355 +1879,930720,59 +562,940693,260753 +538,942959,299012 +1882,944147,54 +830,947923,70422 +1720,950985,402 +876,951823,55882 +1384,959179,4387 +1644,960100,819 +36,1006847,6078359 +1003,1015528,28962 +282,1018357,994878 +1468,1021709,2754 +1264,1034117,7390 +1453,1049851,3043 +654,1078121,156288 +1846,1079223,111 +404,1086351,578456 +1323,1095271,5724 +620,1095489,190423 +724,1096254,112842 +1273,1164249,7102 +1910,1170102,36 +652,1205898,156438 +1594,1227918,1273 +66,1238300,4330135 +1657,1260088,753 +563,1267913,258364 +1275,1270916,6987 +1478,1276665,2578 +1524,1284796,2083 +1475,1285441,2647 +1613,1286008,1081 +1350,1323424,5193 +1583,1350456,1342 +215,1415009,1430195 +960,1415665,37085 +390,1424656,605341 +24,1434753,7421869 +1576,1450352,1454 +6,1497168,15229986 +1886,1525273,51 +220,1536231,1343958 +79,1536625,3985176 +201,1553947,1567485 +365,1563417,658662 +1922,1578509,29 +527,1601917,313184 +1448,1606425,3112 +638,1608563,170636 +1154,1609607,13065 +1377,1610267,4538 +895,1647052,51827 +385,1715091,611831 +983,1746216,33246 +882,1748180,54675 +464,1767876,424257 +1342,1775957,5313 +127,1804724,2408774 +1038,1809381,24601 +1380,1809943,4520 +735,1827485,109095 +310,1830149,883860 +1851,1861962,100 +1566,1867161,1565 +1234,1889913,8679 +1312,1895081,6017 +573,1900364,247673 +974,1924718,34008 +1465,1957280,2788 +56,1990750,4729013 +480,2020935,393851 +340,2044462,752647 +1146,2051721,13785 +237,2065730,1238622 +1870,2083273,75 +1729,2105150,365 +120,2135129,2501108 +916,2245160,47577 +626,2246711,184258 +736,2262902,109040 +1192,2268889,10833 +650,2269943,157821 +240,2289134,1196348 +307,2293376,903889 +1758,2297431,281 +1463,2308351,2838 +1361,2315542,4826 +701,2321390,126514 +717,2323859,115381 +891,2324569,52642 +1404,2357773,3999 +1412,2362058,3767 +1667,2371436,707 +1885,2392791,52 +817,2411854,72830 +1438,2415972,3262 +864,2418002,59356 +648,2418364,158284 +1251,2422415,7815 +1970,2426019,4 +1615,2443031,1069 +766,2453888,93738 +748,2467370,102048 +1624,2491724,988 +171,2502956,1874009 +676,2559569,141418 +1479,2571407,2576 +1763,2571536,271 +21,2585846,8078417 +1971,2591538,4 +883,2593568,54383 +1070,2595542,20472 +291,2600387,970939 +1835,2646397,133 +256,2665207,1096711 +799,2692494,80097 +848,2717161,64464 +1237,2723244,8528 +1291,2725721,6617 +1048,2730335,23035 +669,2798385,145709 +744,2800032,103062 +1442,2801913,3237 +98,2808172,3221684 +1399,2812197,4107 +1834,2819255,133 +1497,2819768,2359 +542,2873154,292119 +1247,2893211,7938 +1680,2924071,669 +753,2972329,98123 +911,2976468,48125 +366,2999957,655767 +1557,3027589,1701 +1776,3057381,240 +559,3108144,265001 +486,3136062,379388 +1883,3181712,53 +1068,3264534,20704 +164,3295619,1956061 +1522,3298564,2092 +1176,3298902,11826 +1005,3319611,28749 +774,3340647,89974 +1578,3342690,1427 +747,3345943,102379 +999,3364735,29853 +1311,3365981,6150 +863,3377503,59496 +589,3377827,226868 +1437,3395817,3267 +1552,3409028,1776 +896,3411571,51796 +311,3428961,877476 +952,3430969,39435 +1938,3441892,20 +229,3454753,1307442 +1016,3467919,27561 +518,3475079,327183 +113,3484132,2720416 +1842,3487721,120 +172,3502565,1867684 +1249,3584298,7889 +971,3589487,35170 +467,3600737,415862 +353,3613413,692833 +1476,3639628,2605 +772,3652727,90896 +1085,3667722,19593 +1217,3692413,9848 +440,3698627,467466 +630,3734803,178126 +257,3739202,1094385 +973,3750922,34248 +1360,3760848,4876 +418,3781794,519984 +1061,3860614,21659 +1774,3895471,249 +1602,3896657,1226 +7,3909522,14909975 +379,3933666,615746 +1255,3957237,7572 +1929,3969110,26 +685,3972413,139270 +1541,3986807,1855 +1542,3990066,1845 +587,5991728,228522 +658,5997814,155365 +1626,6001174,959 +1570,6002527,1529 +1331,6021542,5564 +1388,6032352,4272 +1318,6046368,5872 +1916,6046743,32 +1262,6048627,7416 +1612,6078176,1083 +1462,6101033,2843 +1430,6111938,3386 +344,6116940,729067 +619,6118079,190630 +1577,6121024,1449 +1097,6127190,18145 +1036,6131106,24823 +797,6136757,82082 +561,6160655,261778 +296,6169408,940764 +1455,6171569,2985 +700,6174010,127108 +18,6180190,8216200 +1918,6186491,31 +1004,6212605,28955 +1189,6240801,10973 +665,6242167,147534 +1411,6249486,3769 +177,6258092,1807600 +1346,6262469,5271 +832,6276419,70209 +1564,6284929,1603 +1898,6294942,42 +1702,6296228,523 +1126,6299408,15778 +994,6308670,30916 +1840,6310214,121 +1077,6315553,20168 +1952,6323735,13 +877,6326324,55768 +691,6343784,134942 +369,6354098,650787 +1708,6354962,492 +131,6384450,2319121 +1821,6395848,143 +734,6414286,109794 +857,6416213,60218 +932,6417987,43532 +1766,6423275,263 +1871,6423719,72 +392,6425087,602948 +662,6472706,149787 +239,6510480,1206064 +1873,6516085,68 +1761,6517003,278 +843,6517826,66214 +389,6520732,605732 +278,6528152,1007758 +1086,6554011,19559 +1332,6557824,5554 +1915,6590149,33 +687,6606543,138883 +1954,6617912,9 +860,6618608,59939 +583,6625437,234479 +1907,6651072,37 +1027,6654098,26508 +1434,6658016,3286 +955,6786449,38076 +1684,6795280,636 +399,6818593,592912 +1920,6821136,30 +281,6822957,996704 +1953,6837266,11 +217,6853693,1421140 +1106,6857973,17494 +710,6870350,122043 +1253,6882236,7684 +1609,6884492,1127 +1630,6892517,920 +67,6910361,4282751 +84,6920960,3771664 +786,6921135,85795 +580,6923061,239001 +1201,6925574,10510 +1586,6927748,1328 +393,6929240,599799 +40,6936607,5755652 +155,6948793,2028867 +1608,6955809,1130 +1203,6956104,10361 +568,6986891,251988 +1785,7007969,224 +670,7012651,145695 +516,7013660,330576 +948,7023110,40105 +463,7038651,424778 +752,7047342,98953 +925,7064954,45230 +1545,7069895,1819 +1387,7083877,4273 +130,7085502,2323922 +175,7085510,1817646 +77,7092442,4074636 +733,7097727,109938 +624,7098955,186439 +704,7125212,124759 +1440,7127455,3245 +186,7139820,1675232 +997,7139853,30579 +1853,7140413,99 +189,7142659,1639716 +1010,7150939,28166 +173,7154207,1836875 +782,7157316,87068 +1313,7158871,6000 +339,7181335,759021 +105,7183372,2954976 +1101,7210775,17729 +1373,7220989,4617 +1410,7221139,3852 +791,7226782,84055 +1770,7230689,260 +23,7249451,7754446 +1507,7259690,2202 +112,7271812,2742657 +1415,7272223,3685 +1514,7287342,2162 +1530,7297881,1980 +1826,7313287,138 +444,7318415,465797 +539,7318949,298296 +541,7333216,295815 +1472,7337110,2700 +264,7340529,1075960 +1257,7346797,7537 +304,7349282,910843 +1078,7357503,20068 +1339,7365299,5368 +554,7386358,273032 +529,7394371,311888 +1866,7409475,85 +428,7417116,490655 +289,7418168,976084 +886,7427966,53590 +57,7449254,4556859 +82,7462660,3865875 +1767,7474527,262 +1072,7485877,20368 +95,7491093,3366859 +1652,7492426,787 +1056,7494178,21988 +193,7494497,1621283 +1421,7508390,3587 +1450,7516892,3085 +918,7518529,47302 +1839,7520280,126 +1601,7526090,1235 +1041,7528491,24412 +1658,7530708,746 +1894,7539223,46 +533,7540891,307859 +1320,7550472,5836 +100,7555180,3202496 +1022,7560474,27037 +787,7563185,85726 +1139,7563943,14242 +1261,7574317,7480 +42,7581876,5618662 +479,7588382,397689 +520,7589468,326347 +1120,7590135,16373 +908,7651093,48526 +1685,7661091,626 +889,7675610,53026 +348,7695478,702181 +1653,7695659,770 +867,7699382,57501 +1599,7720028,1239 +382,7756002,614184 +110,7758085,2792437 +225,7765098,1321264 +1488,7775311,2430 +1897,7781236,42 +1793,7803631,190 +493,7829201,370169 +1140,7831811,14196 +483,7842579,386096 +316,7860453,853298 +1055,7897925,22263 +1946,7899232,15 +1934,7910501,23 +1595,7913305,1267 +1722,7915966,395 +1007,7919620,28506 +1209,7970506,10136 +301,7973893,919318 +115,7976264,2648080 +1565,7985956,1565 +1730,7995033,357 +576,7999103,241876 +20,8000875,8104385 +64,8004076,4404525 +1911,8006209,36 +547,8013349,286980 +921,8015955,46612 +578,8048374,240861 +1674,8062053,682 +214,8078914,1465374 +224,8096537,1322646 +139,8099868,2241865 +1051,8123790,22871 +320,8138506,834296 +283,8153179,993105 +609,8153941,203283 +147,8155296,2111209 +1501,8167837,2300 +773,8175236,90768 +528,8184383,312394 +371,8191129,648499 +1869,8192845,75 +231,8199417,1288954 +210,8201460,1495399 +1054,8204926,22310 +544,8218433,291140 +1152,8224678,13213 +985,8240677,33054 +468,8259895,415797 +412,8268010,552609 +1021,8274566,27042 +1605,8292737,1184 +1517,8305343,2139 +1642,8320319,835 +194,8323711,1611572 +939,8325063,42299 +1451,8325700,3082 +145,8337151,2163430 +681,8366045,140454 +515,8369561,331832 +1812,8369657,154 +596,8369778,216715 +1059,8373234,21695 +1932,8386608,23 +1443,8400180,3236 +1791,8400975,207 +696,8418489,130798 +52,8419570,4839656 +1597,8420564,1252 +1191,8423835,10882 +1881,8425594,55 +571,8428196,249868 +608,8438707,203839 +299,8444356,921138 +1723,8444698,382 +144,8459255,2165507 +466,8478874,416170 +1240,8501514,8340 +1678,8502135,671 +887,8503255,53417 +1559,8513699,1677 +68,8539216,4262575 +605,8541236,206989 +1868,8552893,82 +1049,8574922,22959 +1009,8582487,28311 +1062,8588789,21557 +1452,8606809,3078 +485,8607734,385579 +1079,8609713,19983 +261,8612358,1086396 +1848,8617889,108 +349,8627359,700860 +135,8630972,2283575 +297,8632462,934997 +124,8649412,2442694 +302,8654156,919083 +152,8662264,2037809 +462,8665783,428088 +1117,8669398,16694 +808,8674163,76735 +279,8675636,1006884 +655,8677963,156113 +1629,8678008,923 +1896,8696132,44 +1628,8698728,933 +1348,8699429,5241 +1887,8708728,51 +370,8710047,649362 +1044,8724192,23550 +749,8729672,101946 +184,8740199,1716256 +1477,8741336,2592 +450,8742874,449527 +963,8752714,36292 +1314,8753956,5998 +1119,8758298,16424 +1747,8760124,308 +1030,8772425,26118 +1921,8772923,30 +168,8779575,1904294 +286,8785314,986979 +28,8788366,6910165 +1403,8792844,4017 +934,8796215,43248 +1457,8806145,2969 +933,8811880,43447 +1351,8812550,5165 +151,8815749,2047423 +1500,8827094,2312 +1815,8839171,150 +4,8841266,18675900 +460,8842936,429833 +1485,8843774,2455 +72,8847546,4231061 +1033,8855679,25802 +1711,8856821,466 +1527,8876551,2031 +536,8877156,299887 +1709,8877886,480 +1233,8890346,8760 +586,8890793,229546 +163,8895532,1964676 +1735,8897100,342 +274,8900955,1027524 +1000,8907258,29681 +213,8908002,1471784 +1199,8908544,10563 +965,8916982,36071 +1891,8922870,46 +1393,8924845,4201 +844,8925624,66039 +461,8925695,429738 +1959,8926516,9 +136,8954402,2267958 +1238,8956715,8432 +347,8963720,707484 +195,8966820,1600938 +357,8967440,682393 +1727,8970390,367 +421,8976313,509733 +1939,8978080,19 +364,8980651,661120 +1236,8991696,8542 +1034,8997874,25667 +408,9000253,565891 +328,9003698,799302 +1162,9016464,12693 +644,9016560,164385 +1900,9021037,40 +497,9021920,361893 +167,9023703,1923934 +414,9029928,546963 +312,9037756,876817 +456,9043233,433855 +401,9047658,587673 +565,9048764,257270 +1773,9053254,252 +831,9057880,70229 +209,9060641,1504258 +410,9060885,560872 +1029,9067168,26283 +1830,9090040,134 +657,9094538,155893 +1076,9095581,20290 +765,9096738,93946 +523,9101574,321435 +890,9103424,52920 +429,9106642,488424 +1664,9106690,722 +1066,9120206,20805 +1857,9129046,94 +1850,9140898,107 +1297,9147518,6532 +426,9148043,502205 +1519,9148439,2122 +1931,9151549,24 +180,9154293,1746829 +128,9154820,2371307 +1742,9163140,323 +59,9167250,4451047 +106,9174887,2941544 +674,9180206,143491 +574,9182487,242341 +1614,9185931,1073 +683,9186126,139437 +154,9186877,2030581 +223,9188016,1324407 +1690,9191031,582 +632,9195661,177403 +603,9199885,208214 +1756,9225795,286 +246,9228039,1163994 +1581,9231765,1392 +1394,9234594,4169 +1012,9235561,27937 +15,9236866,10527807 +306,9238175,904200 +917,9239515,47568 +1960,9240154,9 +1170,9253494,12181 +205,9264752,1536924 +1779,9266092,233 +1294,9270302,6583 +202,9272054,1564933 +1028,9277642,26292 +25,9280477,7346222 +581,9280679,236718 +226,9282974,1318612 +1286,9283142,6735 +1474,9283775,2676 +47,9291984,5105162 +995,9292037,30875 +809,9299539,76381 +1862,9312528,90 +271,9314079,1044052 +1397,9314153,4139 +119,9319058,2504582 +738,9320272,108556 +335,698143931,774260 +303,698147372,913811 +548,698147969,285927 +8,698152377,14236876 +833,698152498,69650 +125,698160606,2425909 +1345,698162312,5304 +1659,698162357,744 +714,698167138,117907 +1760,698167153,280 +1631,698169715,910 +1263,698171150,7413 +788,698178312,84895 +1182,698182935,11437 +1802,698187023,174 +642,698191218,165097 +980,698200480,33407 +526,698203538,313978 +1025,698207545,26619 +1400,698212272,4090 +472,698215322,409575 +109,698231772,2845250 +721,698232227,114107 +1423,698234770,3573 +75,698239813,4087712 +614,698241117,192411 +1193,698258283,10755 +1414,698262808,3749 +1966,698264828,7 +1502,698273555,2252 +1469,698278542,2749 +1383,698279195,4455 +913,698285444,47917 +577,698290319,241742 +46,698290577,5140668 +869,698295651,57473 +1660,698299678,738 +219,698305474,1346898 +1090,698315881,19307 +1831,698324343,134 +1405,698330221,3986 +1937,698331388,20 +512,698338524,336873 +459,698342159,432760 +1428,698345556,3414 +1401,698346318,4063 +618,698349125,191761 +407,698350371,566660 +424,698353083,507127 +1389,698356304,4261 +39,698361257,5979433 +166,698364331,1924652 +176,698365960,1809143 +1511,698373265,2173 +1859,698383417,91 +204,698388578,1544526 +141,698416970,2205927 +69,698420691,4262388 +1416,698442418,3648 +631,698462285,177843 +647,698477883,158341 +1892,698485268,46 +702,698486277,126152 +1919,698488800,30 +97,698489071,3264277 +1627,698519133,956 +1355,698526036,5105 +1370,698540331,4646 +498,698545981,357251 +1693,698548451,568 +292,698562644,962021 +1188,698580310,11058 +81,698585370,3933261 +325,698588535,811094 +711,698588812,121448 +313,698599365,872898 +1011,698604229,28165 +1128,698605444,15753 +1427,698613394,3424 +454,698620694,439694 +1965,698623373,8 +814,698625834,75345 +1198,698630140,10588 +635,698630507,174143 +169,698635863,1888799 +87,698641566,3739531 +252,698650301,1112935 +376,698652014,623964 +1413,698652171,3759 +757,698655859,96154 +1,698659980,29803874 +1435,698663855,3286 +1100,698666810,17745 +1973,698667255,4 +326,698670524,802094 +745,698677650,102911 +780,698680806,87498 +1105,698687678,17616 +1158,698692141,12908 +1046,698701911,23148 +117,698702991,2535735 +85,698704189,3753042 +363,698723158,663253 +1116,698736778,16736 +1040,698738810,24468 +323,698739350,812446 +1705,698743511,494 +1836,698748891,132 +1153,698757439,13156 +1811,698757487,160 +331,698768565,791687 +345,698769107,720890 +1961,698776998,9 +1205,698783754,10341 +1867,698785538,82 +727,698786826,110777 +452,698789253,446204 +1143,698791053,13983 +1306,698806018,6302 +62,698807570,4410499 +813,698811281,75402 +1190,698817235,10954 +350,698823542,700256 +1808,698826217,166 +1327,698826986,5655 +427,698829590,493624 +1947,698830638,15 +1127,698837993,15770 +637,698842996,171918 +487,698845189,378801 +1901,698848067,40 +1459,698848373,2917 +1308,698849979,6276 +1484,698855681,2475 +447,698867446,453292 +319,698867483,835545 +937,698879638,42906 +979,698881022,33553 +58,698884287,4525870 +1053,698895940,22316 +1548,698897472,1809 +969,698905177,35542 +798,698906190,81751 +138,698908184,2253300 +1439,698908912,3253 +1820,698913618,144 +822,698916948,71394 +1487,698926585,2430 +950,698934729,39543 +1749,698946155,301 +1666,698957176,716 +17,698962117,9398986 +29,698971484,6887210 +1798,698983867,179 +1064,698987598,20922 +976,698993706,33839 +359,698996782,678653 +693,698999105,133381 +1852,699004723,100 +664,699016994,148137 +1648,699025262,797 +1754,699034094,288 +1696,699037086,557 +1445,699039013,3207 +1156,699054327,12991 +178,699054373,1799609 +1968,699057459,6 +1948,699058253,15 +280,699065686,998458 +705,699066118,124486 +1272,699069151,7114 +33,699072129,6252276 +640,699083129,166245 +768,699086436,93101 +1058,699088529,21902 +44,699088769,5301749 +242,699097885,1173563 +5,699098531,17506129 +750,699099385,101922 +343,699099811,737417 +453,699111651,440153 +1407,699117178,3941 +914,699117865,47870 +966,699117992,35982 +413,699121671,547084 +244,699126484,1165967 +1726,699127156,369 +1838,699127546,128 +1185,699139964,11192 +197,699146580,1580462 +1129,699146876,15589 +1281,699148121,6767 +322,699150527,821191 +1278,699155679,6927 +1015,699156456,27725 +116,699170684,2618121 +248,699176234,1133898 +108,699189792,2934901 +524,699191449,317315 +522,699191455,323191 +477,699191464,401931 +234,699194766,1278634 +595,699195358,218788 +233,699196829,1282710 +545,699199084,288786 +1050,699201278,22890 +1194,699204478,10725 +198,699208929,1574047 +1637,699212614,852 +96,699213622,3350082 +308,699238479,895074 +1769,699238678,260 +1164,699244334,12508 +222,699246032,1329013 +294,699250676,957939 +1739,699251542,336 +76,699262350,4085220 +73,699265922,4123585 +825,699266530,71099 +50,699269923,4923506 +668,699272633,145944 +170,699272880,1879400 +26,699273451,7156669 +245,699277039,1164542 +1483,699278528,2478 +266,699280514,1061805 +1505,699282717,2215 +275,699283869,1026083 +1801,699284822,175 +1616,699285160,1054 +333,699287032,775693 +86,699298370,3751608 +34,699299123,6248521 +946,699301458,40896 +317,699304554,852614 +491,699308637,374602 +276,699316421,1025362 +1713,699319395,460 +435,699320017,473923 +789,699321518,84866 +150,699323302,2065891 +1849,699323781,107 +1706,699325506,494 +1425,699326171,3470 +1906,699330765,38 +103,699333701,3021963 +1687,699336679,593 +92,699336777,3516662 +1745,699339594,311 +1622,699341889,998 +132,699342219,2318941 +1969,699343887,5 +355,699346267,689735 +337,699346280,771728 +354,699347951,692465 +284,699351301,991801 +730,699355601,110490 +482,699356968,386549 +19,699364813,8198947 +61,699368887,4411800 +1347,699372829,5260 +779,699373225,87942 +871,699373599,57303 +764,699375903,94263 +499,699377151,356398 +785,699377401,86084 +285,699379895,989301 +148,699380607,2104851 +374,699380621,628848 +49,699382126,5012098 +504,699383121,346073 +101,699383279,3082313 +540,699385139,297276 +329,699390457,798009 +1880,699391409,57 +104,699393742,3008669 +751,699393759,101240 +1553,699396429,1750 +1795,699401083,186 +149,699402816,2087928 +1765,699405877,268 +494,699406247,369812 +723,699406750,113306 +277,699406776,1021678 +451,699408669,446744 +1107,699409420,17370 +216,699413040,1429545 +794,699413581,83266 +902,699419851,49287 +1555,699423167,1703 +1243,699424741,8124 +228,699425709,1307457 +273,699429153,1032662 +1096,699429335,18591 +74,699431255,4092953 +165,699432672,1929087 +146,699433558,2118610 +1482,699438389,2492 +470,699441366,412936 +208,699443920,1505412 +352,699448276,697259 +1957,699451338,9 +949,699471829,39886 +1274,699477624,7089 +816,699478692,73080 +938,699483429,42899 +90,699485250,3586562 +707,699488108,123509 +14,699491076,10678304 +1138,699493750,14283 +1065,699494480,20822 +221,699494488,1338512 +1972,699501322,4 +1067,699503079,20717 +1032,699508363,26021 +488,699509239,376817 +1204,699509284,10355 +1374,699510045,4613 +111,699510259,2761552 +663,699511295,148893 +1772,699511370,254 +12,699513260,11458244 +514,699516250,334459 +1640,699516268,843 +1845,699518384,114 +1285,699518454,6738 +1634,699520575,889 +1130,699522257,15521 +403,699523631,581084 +484,699524362,385948 +441,699524891,467376 +1623,699530673,990 +1619,699541376,1030 +928,699543968,44744 +1780,699545762,233 +1276,699546317,6983 +511,699548295,339100 +824,699550876,71358 +1232,699551148,8803 +530,699552859,311220 +879,699554427,55212 +1319,699556684,5871 +728,699557165,110609 +854,699560327,62642 +689,699562182,137319 +1454,699562874,3025 +182,699567608,1731024 +1695,699569800,560 +107,699573053,2937106 +442,699574408,466980 +941,699576407,41810 +1195,699576978,10678 +475,699578606,406622 +686,699580120,139043 +1014,699583677,27873 +826,699589540,70850 +1113,699595556,16968 +53,699598425,4802676 +1665,699600167,721 +820,699600855,71783 +250,699603116,1127435 +835,699604515,69125 +41,699605333,5654937 +1856,699609445,94 +1177,699611673,11736 +1876,699613884,62 +1955,699614027,9 +1165,699621601,12387 +1738,699622781,340 +1525,699622958,2070 +1409,699627771,3920 +156,699628084,2013823 +1141,699632387,14188 +1803,699639005,174 +698,699639122,128299 +1589,699641777,1297 +1082,699644448,19695 +986,699644852,32961 +1521,699650981,2111 +550,699656989,279833 +1949,699657242,15 +784,699657450,86634 +153,699658023,2037094 +1042,699659708,23806 +122,699660539,2483129 +1504,699662232,2236 +553,699664910,273277 +720,699665031,114916 +262,699665152,1084503 +898,699671197,51484 +810,699671454,76062 +1832,699672060,134 +260,699676005,1086765 +1950,699678739,14 +904,699678801,49166 +1226,699679662,8983 +419,699684062,516211 +912,699684693,48095 +1698,699687328,555 +1573,699688180,1484 +1231,699693687,8808 +1293,699694284,6603 +612,699695167,197610 +839,699697136,67523 +22,699697558,8043400 +381,699698079,614874 +253,699698253,1105033 +474,699699601,408371 +775,699699650,89785 +866,699703295,58651 +174,699703642,1827672 +181,699703782,1731912 +338,699704542,762463 +793,699705601,83417 +1441,699706047,3243 +834,699706955,69389 +207,699710633,1508389 +855,699711706,62553 +604,699711723,207282 +827,699711926,70722 +1823,699711996,140 +433,699712422,477236 +901,699713515,50019 +682,699718269,139492 +35,699722599,6215951 +157,699723284,2003099 +1884,699724603,52 +51,699725436,4922480 +1940,699726660,19 +196,699728159,1600482 +1473,699728266,2678 +1302,699730399,6359 +984,699730714,33137 +1363,699730998,4776 +649,699733098,157885 +1080,699733501,19766 +1092,699734152,19080 +1095,699734445,18836 +978,699734795,33598 +415,699735020,533981 +10,699736927,12182758 +549,699736959,281169 +457,699737356,433729 +434,699738350,476861 +1817,699739891,149 +1315,699741694,5902 +1047,699744012,23114 +377,699744766,623353 +588,699745265,227742 +1789,699752402,215 +1091,699753640,19197 +1977,699753863,2 +868,699755859,57488 +45,699756210,5143754 +1017,699758688,27493 +48,699759128,5095690 +1543,699760767,1821 +188,699761749,1645924 +1214,699763225,9952 +746,699765971,102414 +1287,699774694,6710 +133,699777234,2318380 +420,699777372,509930 +1357,699777556,4993 +203,699778028,1564681 +496,699778867,362070 +1976,699780721,3 +1382,699780873,4473 +1725,699781390,375 +572,699781605,248822 +70,699781762,4252687 +633,699783063,177373 +3,699783765,19374739 +63,699784536,4406307 +199,699785935,1573583 +507,699788305,341992 +510,699790202,339675 +1196,699791054,10675 +1458,699792747,2932 +489,699794286,376475 +1587,699794421,1315 +1728,699794720,367 +126,699794765,2409536 +1860,699795301,90 +455,699795378,439524 +899,699795698,50929 +142,699796330,2183428 +1925,699796630,27 +1796,699797065,184 +551,699797508,275816 +1301,699797805,6409 +621,699799629,189512 +945,699800377,41163 +1081,699800992,19707 +906,699803070,48877 +425,699804790,505048 +991,699805379,31250 +1591,699805839,1285 +378,699812007,618674 +993,699812351,31042 +781,699812571,87112 +1563,699812653,1609 +1386,699812869,4285 +118,699814283,2527437 +1633,699816699,892 +805,699818726,77536 +300,699820572,920690 +692,699821629,134908 +968,699821755,35667 +958,699823490,37448 +743,699825089,104449 +795,699825236,83149 +1816,699826312,150 +159,699827112,1999002 +1841,699828338,120 +218,699828442,1367246 +318,699828685,839593 +1006,699829494,28618 +1283,699829916,6763 +1060,699830255,21686 +1216,699831860,9902 +850,699832463,63633 +760,699833171,95308 +241,699834004,1181874 +1546,699835178,1814 +947,699837483,40331 +873,699837826,56935 +1662,699843389,727 +1151,699843417,13382 +1700,699844314,545 +1277,699844594,6932 +742,699844727,105033 +1071,699845400,20375 +368,699846892,655024 +438,699849210,471992 +396,699850967,593804 +501,699851345,353653 +247,699851426,1143893 +32,699851427,6374797 +1719,699853308,403 +1786,699854312,223 +243,699854484,1170611 +1534,699854830,1940 +1951,699855277,13 +1296,699856830,6538 +16,699856962,10198813 +1279,699857387,6865 +1639,699858313,844 +473,699859013,409251 +1784,699860418,225 +398,699861004,593507 +1863,699862278,88 +1494,699863708,2390 +731,699864013,110100 +659,699866225,154484 +601,699867602,213531 +99,699868002,3213372 +1282,699868739,6763 +65,699869682,4387188 +1317,699870198,5894 +758,699870923,95802 +1600,699872032,1236 +1537,699872401,1920 +1013,699872616,27905 +1748,699875132,301 +815,699875213,73695 +597,699876345,216628 +1166,699876746,12258 +423,699878150,508408 +384,699878511,613070 +1392,699879113,4210 +1375,699879556,4572 +387,699879927,606514 +37,699883079,6066337 +1163,699883836,12651 +1807,699884788,167 +1372,848882577,4618 +509,848883237,339795 +1558,848883542,1691 +314,848883684,867105 +1341,848883791,5318 +481,848886056,387836 +1432,848886200,3338 +546,848886870,288718 +372,848886973,640673 +885,848887199,54031 +532,848889556,308758 +771,848889850,91467 +1579,848890012,1417 +1304,848892804,6343 +951,848895676,39462 +821,848896434,71400 +232,848896948,1286090 +1052,848897972,22564 +1529,848899726,2022 +1420,848901396,3612 +894,848902592,52177 +796,848902744,82423 +1001,848903260,29346 +1621,848903690,999 +875,848905770,56152 +977,848907771,33655 +305,848909464,908682 +1650,848910122,793 +137,848912265,2266959 +525,848912772,314086 +1974,848912937,4 +1108,848913030,17348 +200,848913037,1571938 +1549,848913252,1788 +187,848913998,1649787 +629,848914661,178796 +1418,848915032,3621 +123,848915531,2468770 +9,848915730,13326548 +1083,848916779,19662 +1531,848917127,1979 +1063,848917570,21197 +1344,848918262,5305 +31,848918380,6723809 +1356,848921536,5088 +678,848921793,141025 +517,848921861,329073 +1513,848922118,2164 +1466,848922958,2780 +1110,848923540,17122 +615,848924219,192066 +1211,848925840,10019 +422,848926293,508432 +859,848927262,59949 +502,848928486,351240 +332,848928624,783845 +718,848930111,115177 +1175,848930898,11918 +634,848932879,174928 +1094,848933470,18969 +134,848934935,2292773 +269,848935020,1052044 +162,848935389,1977167 +1781,848935732,230 +535,848936053,300947 +987,848937248,32792 +1603,848937780,1191 +1790,848939131,213 +1111,848942587,17073 +1909,848942734,36 +1556,848942968,1701 +1800,848943145,176 +1073,848945529,20363 +992,848946608,31213 +351,848946700,699904 +1893,848949271,46 +1829,848949517,134 +1031,848952556,26040 +1310,848952566,6161 +430,848953066,486952 +1018,848953472,27382 +1588,848955311,1298 +71,848955783,4249672 +13,848956513,10981900 +11,848956765,11463375 +1625,848958556,970 +1935,848959231,22 +1516,848960061,2144 +1837,848963521,130 +1818,848964811,149 +1122,848966521,16270 +254,848967422,1103638 +30,848967710,6828027 +1875,848969313,63 +437,848971079,472234 +1606,848973715,1172 +1855,848973968,94 +1447,848974774,3145 +1429,848975192,3409 +729,848976034,110525 +1933,848976720,23 +1858,848977118,92 +1647,848977203,800 +1103,848977600,17681 +756,848977649,96990 +298,848977748,922329 +1169,848978284,12182 +556,848978297,272949 +1675,848978903,678 +812,848980237,75561 +1975,848980727,4 +1582,848981726,1373 +1585,848982634,1329 +1290,848984022,6617 +2,848985692,19935406 +336,848986287,773527 +1481,848986638,2500 +555,848987051,272952 +709,848988401,122247 +1703,848988744,505 +1241,848989855,8316 +1810,848993505,161 +251,848995242,1121855 +402,848995478,585266 +998,848999448,30393 +492,848999671,371185 +1245,849000135,8063 +1260,849001277,7495 +267,849001572,1061216 +258,849001724,1092271 +513,849002091,334481 +1039,849002796,24518 +360,849004274,672395 +1874,849004461,67 +265,849004759,1073197 +1202,849005658,10370 +1359,849005829,4941 +1326,849006011,5690 +342,849006145,746908 +1908,849006194,36 +1222,849006385,9287 +552,849006412,275412 +1928,849008396,27 +1228,849009623,8931 +143,849009945,2170020 +211,849010255,1487535 +762,849010386,95065 +94,849012521,3442043 +923,849012843,45557 +690,849012985,134973 +713,849013126,118360 +611,849014147,200368 +270,849014413,1049826 +295,849014922,955019 +610,849017820,202782 +27,849018239,7153164 +645,849018442,163886 +1353,849018778,5148 +1943,849018780,18 +1324,849019785,5724 +840,849020094,67185 +1336,849020212,5394 +936,849021566,43051 +703,849023078,125772 +715,849023540,117897 +1575,849024152,1462 +1755,849024208,287 +1731,849024333,353 +1941,849025083,18 +531,849026145,310303 +91,849027025,3546284 +643,849027653,164707 +1768,849027712,260 +1681,849028071,668 +341,849028088,747828 +942,849030086,41802 +93,849030226,3462101 +293,849031818,961472 +613,849031846,194604 +537,849032059,299339 +1495,849032413,2381 +628,849032414,180537 +1220,849032741,9486 +83,849034882,3807184 +1813,849034917,151 +235,849035525,1271812 +327,849035905,799578 +1376,849037354,4563 +78,849037407,4045959 +575,849037469,242300 +1962,849038195,9 +1927,849038572,27 +1406,849038597,3956 +684,849039310,139342 +569,849040142,251895 +585,849040194,231335 +1329,849040462,5624 +881,849041192,55005 +1596,849042480,1252 +811,849044705,76015 +1366,849044961,4732 +249,849045047,1129117 +769,849045675,92981 +1467,849045915,2779 +1750,849046206,296 +996,849046232,30671 +1635,849047044,889 +625,849047233,184646 +567,849048112,255113 +944,849048216,41250 +1104,849048241,17635 +802,849048455,79603 +845,849048552,65666 +1125,849048562,15812 +956,849048734,37911 +1426,849048856,3444 +695,849048867,131708 +446,849049045,455166 +653,849049155,156399 +1230,849050087,8841 +1491,849050191,2415 +519,849050849,326552 +1087,849051436,19539 +1771,849051731,258 +940,849051976,41923 +1828,849052195,135 +1402,849052289,4050 +598,849052549,216618 +1444,849052588,3214 +1523,849053868,2087 +416,849054582,531083 +80,849054951,3981220 +1532,849055181,1978 +1743,849055309,313 +954,849055425,38310 +1567,849055553,1557 +767,849056744,93268 +1753,849057450,288 +590,849057572,224775 +506,849057655,343819 +1490,849057764,2416 +846,849059457,65582 +315,849059491,853911 +1656,849060099,755 +324,849060446,811352 +212,849061374,1481037 +183,849061406,1730001 +1419,849061417,3619 +1683,849062546,643 +1135,849062920,14829 +1131,849063605,15329 +907,849063793,48663 +397,849063849,593766 +617,849063932,191808 +1572,849064084,1487 +1562,849064087,1609 +560,849064614,262110 +43,849064752,5552486 +1515,849065606,2152 +394,849065697,598562 +1964,849066035,8 +920,849066044,46653 +924,849066125,45397 +1641,849066618,835 +1710,849066808,470 +719,849066849,115163 +1254,849067192,7575 +1269,849068108,7142 +570,849068662,250026 +1518,849069010,2129 +469,849069022,415790 +1617,849070220,1041 +964,849070335,36239 +288,849070464,983311 +1498,849070736,2315 +272,849070946,1041914 +431,849071545,482238 +1461,849072873,2849 +1235,849073156,8544 +1814,849073314,151 +1865,849074508,86 +1369,849075298,4653 +1210,849075836,10096 +755,849076515,97163 +1024,849076678,26756 +490,849076810,376346 +1844,849076953,116 +807,849077481,77228 +1171,849078086,12045 +1956,849078119,9 +616,849078297,191955 +1114,849078498,16927 +1168,849078942,12194 +926,849080011,44867 +1744,849080118,312 +1854,849080197,99 +436,849080702,472284 +1470,849082580,2744 +417,849082839,530007 +776,849082848,88817 +763,849083501,94636 +861,849083725,59710 +89,849084005,3674270 +1670,849084066,704 +962,849084474,36512 +192,849084740,1625465 +287,849084911,983368 +1223,849084920,9282 +55,849084985,4733087 +1225,849085160,8983 +1305,849085293,6318 +900,849085371,50519 +1335,849085605,5439 +970,849085764,35438 +1174,849085908,11977 +321,849085961,826978 +1197,849086357,10658 +386,849086491,609457 +943,849086693,41549 +1325,849087581,5713 +432,849087742,480694 +1300,849087786,6460 +449,849087855,449826 +697,849088101,130318 +268,849088243,1060779 +160,849088515,1991372 +870,849088639,57339 +1212,849088882,10010 +1136,849088923,14623 +1778,849089323,238 +259,849089459,1088445 +1538,849089499,1912 +1043,849089601,23556 +1352,849089654,5150 +478,849089881,401677 +406,849090130,566916 +1512,849090187,2172 +1877,849090573,60 +1607,849090765,1141 +191,849091060,1635335 +500,849091084,354536 +346,849091105,717406 +263,849091769,1083112 +309,849091866,890985 +443,849091897,466330 +606,849091899,206601 +1093,849091947,19038 +770,849092109,92403 +1207,849092309,10248 +699,849092685,127746 +508,849092723,340775 +290,849092769,972356 +675,849092827,142821 +1186,849092978,11148 +671,849093003,144665 +1560,849093155,1656 +623,849093353,186656 +400,849093422,590089 +227,849093426,1317202 +1159,849093576,12902 +330,849093742,795988 +591,849093875,223618 +582,849093924,234566 +1861,849094006,90 +356,849094023,684854 +395,849094067,597822 +1206,849094111,10300 +1179,849094147,11692 +1098,849094586,17958 +1112,849094597,16979 +1118,849094603,16543 +158,849094609,2001700 +1424,849094653,3515 +1338,849094688,5372 +1270,849094759,7141 +1381,849094789,4501 +411,849095014,553112 +465,849095068,421563 +1215,849095219,9932 +236,849095227,1252081 +505,849095240,345463 +677,849095324,141159 +1252,849095376,7687 +716,849095435,115921 +600,849095446,214986 +851,849095482,62908 +667,849095488,146070 +1446,849095509,3183 +521,849095599,325580 +1740,849095601,332 +1328,849095771,5632 +646,849095778,162684 +1486,849095800,2453 +1433,849095814,3316 +759,849095829,95532 +836,849095879,68774 +803,849095948,79087 +375,849095959,624305 +761,849095963,95155 +594,849095992,220800 +1349,849096041,5222 +1733,849096102,346 +1536,849096123,1936 +800,849096215,80042 +1267,849096265,7225 +1239,849096285,8373 +804,849096310,78908 +1124,849096334,15856 +1759,849096346,280 +361,849096354,668803 +1288,849096383,6653 +1365,849096399,4743 +1161,849096435,12707 +694,849096454,131952 +1008,849096458,28386 +1592,849096544,1283 +334,849096547,775162 +1825,849096592,138 +858,849096594,60115 +179,849096606,1779554 +1057,849096631,21967 +656,849096649,156077 +915,849096768,47803 +801,849096856,79903 +897,849096874,51529 +666,849096882,146389 +1307,849096891,6283 +841,849096944,67152 +579,849096945,240707 +725,849096958,112795 +929,849096972,44406 +1142,849096977,14149 +1561,849096979,1610 +778,849097002,88294 +1181,849097006,11458 +740,849097103,108532 +557,849097175,266031 +1460,849097312,2896 +828,849097357,70710 +1020,849097370,27094 +1978,849097373,1 +1492,849097386,2415 +1692,849097445,577 +1540,849097477,1867 +853,849097614,62725 +1144,849097620,13856 +874,849097716,56445 +622,849097737,186712 +1431,849097792,3370 +1172,849097793,12015 +161,849097799,1985000 +1777,849097837,240 +888,849097898,53035 +445,849097937,462866 +919,849097954,46717 +1089,849097981,19316 +829,849098109,70632 +1590,849098132,1295 +673,849098136,143710 +1148,849098159,13712 +1292,849098192,6608 +688,849098200,138832 +1137,849098217,14314 +391,849098265,603107 +1099,849098299,17879 +1256,849098324,7550 +1358,849098326,4952 +893,849098374,52211 +726,849098387,111540 +639,849098400,167715 +988,849098423,32790 +1809,849098476,161 +1503,849098477,2242 +892,849098516,52377 +1694,849098557,560 +1958,849098592,9 +471,849098628,411701 +607,849098648,205057 +358,849098688,680929 +1178,849098693,11724 +405,849098695,571334 +1173,849098724,12009 +1610,849098727,1101 +255,849098769,1098050 +842,849098774,66456 +592,849098782,222840 +865,849098784,59039 +818,849098791,72699 +1436,849098822,3281 +1618,849098848,1032 +1147,849098966,13768 +722,849099021,113452 +1183,849099054,11289 +1717,849099105,436 +1367,849099131,4731 +1248,849099138,7910 +1259,849099141,7515 +1508,849099145,2190 +636,849099160,173534 +1526,849099258,2052 +373,849099276,629120 +1378,849099280,4537 +732,849099342,110018 +1676,849099391,675 +849,849099422,63898 +584,849099434,234296 +680,849099463,140885 +739,849099505,108534 +981,849099517,33402 +495,849099544,365320 +1593,849099557,1277 +1464,849099558,2806 +931,849099601,43979 +1160,849099640,12849 +1547,849099660,1813 +1787,849099689,217 +388,849099696,606431 +448,849099785,449879 +1390,849099797,4243 +1396,849099804,4143 +1102,849099815,17692 +1354,849099859,5138 +1783,849099864,225 +102,849099876,3030696 +1084,849099932,19616 +982,849099955,33305 +564,849099965,257553 +1679,849100016,670 +1340,849100034,5351 +1184,849100082,11228 +1638,849100083,850 +660,849100149,152592 +1945,849100162,17 +1456,849100199,2969 +856,849100228,60742 +1362,849100246,4824 +534,849100262,303071 +1737,849100288,340 +1398,849100289,4129 +476,849100323,405020 +380,849100349,615081 +1489,849100352,2425 +1121,849100354,16357 +838,849100383,67666 +1715,849100399,444 +1322,849100406,5813 +1379,849100439,4526 +862,849100463,59523 +1265,849100584,7335 +1227,849100611,8960 +1471,849100612,2735 +543,849100615,291713 +922,849100656,46266 +1187,849100680,11131 +1661,849100743,734 +1213,849100744,9993 +1734,849100760,344 +1321,849100782,5817 +927,849100787,44762 +1075,849100796,20304 +672,849100811,144153 +1019,849100814,27265 +905,849100877,49041 +1002,849100882,29329 +1714,849100891,458 +362,849100994,664187 +1258,849101018,7521 +737,849101029,108930 +1115,849101083,16811 +884,849101092,54167 +909,849101102,48425 +1649,849101104,793 +1026,849101108,26544 +503,849101116,348746 +1598,849101132,1244 +1632,849101144,893 +1299,849101148,6502 +627,849101162,183618 +1520,849101177,2112 +1037,849101186,24677 +1289,849101205,6628 +1268,849101224,7197 +1604,849101232,1188 +972,849101248,34436 +1707,849101268,492 +1724,849101276,382 +1364,849101291,4755 +1646,849101293,800 +1391,849101311,4238 +880,849101377,55172 +651,849101378,157607 +975,849101382,33988 +1574,849101391,1471 +1493,849101409,2412 +1157,849101526,12984 +1732,849101578,349 +1422,849101579,3582 +706,849101580,123833 +1736,849101581,341 +967,849101604,35840 +1408,849101647,3923 +783,849101652,87038 +1167,849101674,12230 +1280,849101694,6859 +1316,849101814,5900 +566,849101845,255534 +1109,849101871,17249 +679,849101881,141008 +910,849101884,48199 +806,849101889,77389 +837,849101893,68265 +847,849101945,64553 +1385,849101947,4287 +823,849101962,71365 +439,849102068,471294 +409,849102092,562722 +957,849102094,37853 +712,849102108,118638 +1303,849102143,6345 +1571,849102150,1494 +1035,849102336,25002 +777,849102464,88534 +935,849102480,43138 +872,849102573,57070 +1804,849102985,172 +1298,849103148,6531 +1654,849103156,767 +1554,849103237,1716 +1244,849103456,8111 +1888,849103914,50 +1792,849103947,206 +1535,849104010,1937 +1221,849104100,9341 +1250,849104286,7875 +1155,849104297,13000 +558,849104328,265036 +903,849104356,49173 +1651,849104491,792 +1069,849104546,20697 +1788,849104818,216 +953,849104855,38798 +1229,849105071,8926 +990,849105102,32141 +1180,849105232,11584 +1134,849105417,14879 +1499,849105463,2314 +1903,849106303,40 +1330,849106316,5595 +1309,849106340,6233 +1672,849106383,695 +1655,849106420,762 +1895,849106576,45 +1368,849106612,4672 +1699,849106785,554 +1797,849106820,180 +1219,849106971,9541 +1643,849107104,833 +1510,849107426,2178 +1716,849107507,440 +878,849107532,55595 +1218,849107703,9713 +1806,849108007,170 +1645,849108053,818 +1449,849108148,3111 +1246,849108157,7940 +1509,849108328,2187 +641,849108623,165215 +1912,849108762,35 +602,849108780,211892 +1333,849108784,5507 +1088,849108934,19472 +1123,849108991,15956 +1936,849109010,20 +1899,849109152,42 +1967,849109232,6 +1551,849109413,1779 +1805,849109507,171 +1764,849109521,270 +989,849109637,32386 +1074,849109795,20358 +1611,849109966,1091 +1371,849110310,4638 +1145,849110365,13847 +1023,849110382,26798 +1668,849110674,707 +1697,849110688,557 +1150,849110743,13477 +1271,849111050,7117 +1506,849111196,2209 +1533,849111244,1978 +1847,849111316,110 +1343,849111332,5308 +1746,849111408,310 +1904,849111418,39 +1889,849111667,50 +1799,849111732,178 +1718,849111792,419 +1794,849111819,186 +1224,849112029,9237 +1480,849112368,2529 +1682,849112369,665 +1926,849112510,27 +1688,849112879,587 +1913,849113055,34 +1620,849113546,1002 +1337,849113595,5382 +1584,849113597,1330 +1712,849114028,464 +1544,849114085,1820 +1822,849114265,142 +1528,849114408,2030 +1924,849114477,28 +1833,849114579,134 +1923,849115431,28 +1701,849116221,530 +1496,849116310,2364 +1890,849116357,49 +1878,849116679,60 +1673,849117143,683 +1677,849117427,675 +1782,849117830,228 +1757,849118259,282 +1663,849118441,723 +1902,849118709,40 +1824,849118999,140 +1963,849119078,8 +1914,849121835,34 +1872,849122768,70 +1942,849123125,18 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_att_tribe.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_att_tribe.txt new file mode 100644 index 0000000..c8df303 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_att_tribe.txt @@ -0,0 +1,214 @@ +2,1,197811951 +162,4,7808 +4,7,134191270 +91,8,155525 +113,12,71331 +118,13,63826 +29,19,3109409 +81,24,205544 +60,29,426082 +68,31,271134 +99,33,128802 +6,35,68371296 +8,39,38636284 +1,47,237866835 +188,53,1297 +102,56,107411 +108,59,90043 +44,68,1097666 +15,71,8857798 +132,72,38620 +34,77,2196064 +25,80,4699158 +5,85,86384602 +105,89,94543 +80,92,208853 +128,96,40098 +136,97,33470 +39,106,1608248 +38,112,1711002 +141,115,25141 +145,117,21965 +3,120,140311413 +100,125,110559 +110,129,82762 +62,134,397211 +111,147,80447 +61,157,418012 +151,176,16504 +165,185,7378 +31,194,2617133 +209,200,30 +85,210,178718 +71,211,257208 +126,214,41525 +212,216,12 +160,220,8278 +65,234,362768 +203,236,52 +33,256,2264454 +155,260,10522 +90,285,160904 +174,287,4521 +9,291,37122902 +11,301,27416924 +147,305,19292 +10,309,36519242 +117,319,67239 +177,336,3986 +7,369,59026086 +127,373,40352 +201,374,99 +78,375,212543 +67,377,331213 +197,382,291 +92,385,153097 +52,412,653722 +32,430,2549096 +24,432,5119612 +146,435,20699 +55,441,609532 +191,443,1031 +48,452,725521 +137,475,30918 +184,503,2275 +171,517,4826 +96,520,137000 +175,523,4107 +35,546,2097153 +41,548,1309325 +208,554,32 +189,557,1239 +37,594,1766507 +159,597,8289 +74,607,222168 +182,624,2475 +122,633,51266 +123,636,48384 +112,647,72783 +97,651,136651 +149,664,18675 +17,666,8136342 +119,686,61938 +23,693,5125520 +27,722,3745388 +95,733,141728 +107,750,91301 +77,758,212637 +129,766,40018 +153,778,16261 +16,785,8763144 +58,786,492119 +83,806,187855 +76,822,214844 +20,830,6182634 +152,841,16412 +73,847,249481 +12,862,18925685 +40,936,1367259 +72,944,249585 +199,945,114 +168,963,6190 +183,965,2359 +49,989,702186 +104,991,99680 +46,1023,869386 +13,1039,10258911 +36,1040,1922517 +51,1052,664412 +124,1058,44295 +84,1079,182039 +134,1096,36721 +30,1108,2998016 +135,1127,35542 +18,1128,7828246 +21,1140,6065875 +42,1148,1223288 +120,1161,59985 +139,1163,28985 +194,1166,365 +169,1170,6131 +82,1209,200678 +26,1226,4252645 +86,1232,171874 +167,1261,6589 +63,1275,394386 +148,1278,19193 +66,1293,351864 +53,1312,641730 +206,1317,42 +170,1333,5757 +28,1336,3120017 +211,1347,15 +140,1357,26793 +93,1368,149732 +178,1372,3874 +47,1376,783132 +121,1399,57170 +22,1411,5712715 +156,1416,10013 +64,1418,364951 +180,1421,3128 +114,1423,70186 +54,1428,610324 +163,1431,7530 +115,1432,67981 +98,1448,132845 +154,1456,11762 +103,1466,101232 +57,1470,507857 +192,1477,375 +19,1480,7187879 +87,1483,171122 +166,1494,7195 +210,1498,19 +14,1523,9704033 +176,1526,4100 +59,1528,476359 +133,1530,36737 +161,1535,7897 +109,1551,86090 +195,1573,326 +202,1582,55 +198,1585,281 +142,1588,25002 +50,1597,699830 +130,1599,39978 +144,1602,23331 +204,1609,52 +43,1621,1204990 +157,1626,9530 +138,1627,29761 +75,1636,220320 +101,1638,107892 +173,1643,4638 +45,1648,1091715 +89,1651,166503 +70,1652,258353 +185,1656,2129 +131,1657,38951 +158,1669,9237 +214,1672,1 +88,1680,167187 +143,1681,24465 +187,1683,1682 +186,1687,1713 +193,1691,370 +150,1692,17635 +116,1700,67818 +56,1716,523524 +172,1721,4653 +79,1724,210586 +200,1729,106 +69,1735,261212 +190,1737,1032 +164,1745,7416 +213,1763,9 +94,1780,142522 +205,1783,50 +196,1785,296 +125,1790,43136 +106,1793,91636 +207,1795,40 +181,1797,2963 +179,1808,3755 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_def.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_def.txt new file mode 100644 index 0000000..5c20582 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_def.txt @@ -0,0 +1,2490 @@ +1256,6948,61670 +1809,17714,11560 +410,33900,720218 +1842,50930,10080 +538,61791,469152 +375,82782,804093 +442,87575,637385 +568,89637,409283 +473,100452,564853 +1903,101074,7522 +2467,108256,4 +1921,112401,6880 +1111,113796,91973 +1977,117208,5371 +784,118121,225152 +720,122492,263474 +2351,126954,43 +2072,128353,2947 +1280,129795,59293 +2113,131972,2247 +2222,148405,748 +778,160513,231436 +531,192947,481038 +1773,195249,13558 +1151,197581,83073 +2106,205821,2374 +14,225023,18438597 +1662,254937,21198 +1545,260666,29387 +89,272173,3814217 +1732,281866,16574 +872,289542,181301 +517,301602,494705 +751,310729,243705 +1663,325491,20650 +277,335509,1318402 +1423,337137,40415 +847,356642,188304 +595,361125,385441 +1164,363280,80352 +1102,364126,93807 +2456,371910,10 +973,378757,136306 +235,382222,1631288 +308,393668,1133980 +1426,412571,39884 +1460,439825,37047 +2101,466800,2424 +1649,470266,21915 +334,477415,961975 +800,478956,216220 +867,483145,182868 +1467,498483,36326 +1391,526350,44990 +2198,529552,1017 +132,542253,2962395 +2240,545152,549 +1781,546458,13365 +385,556154,787408 +514,563544,498350 +1837,566379,10283 +1007,569790,124391 +1879,570100,8378 +1991,583500,5000 +725,584989,261994 +478,591733,562496 +1940,602408,6351 +2417,603968,10 +1201,606407,72428 +981,606706,131662 +1347,609384,50800 +1621,610196,24360 +814,634848,207069 +2488,662253,1 +1711,671516,17534 +948,692803,146676 +619,712216,359347 +545,724621,455189 +519,745946,493346 +1534,747422,30197 +359,758104,852830 +1735,762975,16460 +2380,763529,21 +260,765188,1430770 +850,769293,186838 +1174,796977,77868 +1626,823987,23953 +315,828637,1073816 +1369,869195,47984 +1264,873575,60748 +1189,878961,74918 +1482,879782,35329 +1080,881782,98822 +894,896355,170018 +732,915113,258250 +2094,921888,2579 +47,926823,6789703 +293,940693,1217975 +1905,942959,7504 +777,944147,232379 +1624,947564,24145 +781,947923,227492 +2483,949279,1 +620,950985,358643 +1153,951823,82606 +1631,959179,23440 +1017,960100,122269 +43,1006847,7578926 +463,1015528,586710 +55,1018357,6197210 +590,1020792,390101 +638,1021709,338682 +2299,1034117,222 +985,1043028,130875 +1483,1044760,35302 +1789,1049851,12582 +349,1078121,885260 +1219,1079223,68604 +184,1086351,2050440 +1075,1095271,100624 +156,1095489,2481698 +1170,1096254,79117 +1964,1106220,5729 +2344,1132842,52 +1604,1164249,25384 +1290,1170102,58461 +1625,1205898,24100 +1920,1227022,6898 +1698,1227918,18722 +467,1238300,579861 +1375,1260088,47680 +490,1267913,544257 +803,1270916,212998 +1284,1276665,58951 +1427,1284796,39858 +792,1285441,220862 +1155,1286008,81894 +1961,1322622,5796 +1547,1323424,29353 +342,1347385,901713 +1605,1350456,25361 +1906,1371998,7469 +1340,1406042,52241 +1205,1415009,71681 +1738,1415665,16413 +493,1424656,536312 +71,1434753,4848432 +666,1450352,303399 +876,1454871,179391 +1975,1493696,5389 +98,1497168,3572946 +836,1510264,194017 +2294,1511101,231 +1286,1525273,58753 +1437,1536231,38943 +356,1536625,873016 +2028,1553481,3966 +177,1553947,2082119 +759,1563417,237156 +1972,1568700,5461 +2125,1568908,2078 +1310,1578509,55835 +2259,1581890,434 +1496,1601917,33997 +991,1606425,128503 +465,1608563,582629 +926,1609607,154613 +1221,1610267,68381 +1179,1631690,76709 +2132,1645835,1946 +1203,1646837,72134 +1070,1647052,102226 +1665,1668965,20296 +1173,1669587,78351 +2300,1675628,212 +1040,1693936,112417 +863,1700145,183686 +1336,1715091,52577 +256,1746216,1455179 +1097,1748180,94275 +1748,1757722,15483 +161,1767876,2399236 +1411,1775957,41712 +333,1782523,974769 +2310,1794060,169 +886,1804724,174840 +368,1809381,823822 +1243,1809943,63986 +1812,1827485,11450 +124,1830149,3119376 +1464,1831874,36775 +1636,1861962,23222 +1709,1867161,17648 +953,1867410,144074 +1468,1889913,36313 +425,1895081,674775 +1149,1900364,84449 +2058,1924718,3356 +675,1945202,296058 +1442,1957280,38756 +220,1990750,1734659 +358,2020935,860174 +194,2044462,1969425 +1820,2051721,10990 +1609,2061701,25166 +372,2065730,817769 +1395,2083273,44204 +721,2087251,263088 +1819,2105150,11063 +1775,2135129,13548 +1551,2162471,29029 +1495,2177410,34097 +1761,2213632,14380 +688,2232973,285338 +1780,2245160,13426 +1009,2246711,123999 +1749,2256843,15439 +163,2262902,2386143 +1462,2268889,36902 +1381,2269943,46929 +36,2289134,9256722 +1104,2293376,93212 +1745,2297431,15815 +2011,2308351,4392 +155,2315542,2504451 +321,2321390,1046840 +1387,2323859,46023 +1133,2324569,87502 +1016,2345447,122522 +710,2357773,267962 +1351,2362058,50009 +1330,2363165,53585 +845,2365630,188672 +1643,2371436,22527 +2112,2392791,2251 +183,2411854,2052512 +676,2415972,295378 +896,2418002,169554 +397,2418364,754818 +1184,2422415,76112 +1202,2426019,72148 +1415,2443031,41129 +230,2453888,1672543 +553,2467370,437865 +2312,2485646,152 +2142,2491724,1836 +787,2502956,223091 +2357,2512219,38 +1620,2514219,24397 +1635,2516620,23251 +103,2559569,3506095 +932,2569868,151131 +1623,2571407,24241 +1489,2571536,34773 +1938,2575842,6399 +3,2585846,46347601 +1225,2591538,67909 +1027,2593568,117820 +708,2595542,269482 +101,2600387,3511709 +2097,2613743,2485 +1321,2620389,55017 +1418,2646397,40910 +581,2665207,397341 +1362,2692494,48673 +1760,2717161,14454 +972,2723244,136865 +2040,2725721,3710 +1003,2730335,124806 +2076,2735370,2908 +1402,2764337,43298 +739,2798385,252071 +275,2800032,1334285 +583,2801913,396260 +951,2808172,146072 +2037,2811353,3773 +558,2812197,432982 +2010,2819255,4408 +1603,2819768,25432 +2008,2837080,4430 +550,2873154,442300 +1159,2893211,80885 +1025,2924071,117961 +486,2972329,551662 +1126,2976468,89299 +2328,2980670,90 +1486,2999957,35066 +889,3022364,172215 +2012,3024357,4355 +1074,3027589,100752 +881,3057381,176373 +2464,3101080,4 +96,3108144,3659008 +1304,3136062,56366 +853,3181712,186691 +1093,3185732,95060 +416,3264534,708434 +729,3295619,260032 +1527,3298564,30856 +1591,3298902,25938 +1012,3319611,123444 +1771,3340647,13660 +376,3342690,802106 +785,3345943,224932 +2144,3362925,1826 +2123,3364735,2098 +1360,3365981,48961 +1889,3372959,8054 +398,3377503,752634 +238,3377827,1628125 +641,3395817,333720 +1106,3409028,92643 +775,3411571,233028 +703,3428961,272273 +600,3430969,380673 +1971,3441892,5464 +1485,3454753,35098 +2401,3462813,13 +1695,3467919,18775 +51,3475079,6502818 +586,3484132,392907 +598,3487721,383076 +1887,3487933,8091 +2174,3499467,1367 +40,3502565,8050798 +2318,3518623,132 +1985,3529695,5269 +2273,3560281,340 +869,3584298,182350 +964,3589487,141696 +799,3600737,217022 +548,3613413,448075 +1531,3631404,30510 +846,3639628,188341 +2397,3647080,14 +1717,3647086,17235 +1342,3652727,51748 +812,3667722,208765 +2081,3668212,2841 +1720,3692413,17118 +1522,3698627,31353 +868,3713020,182517 +1616,3734803,24448 +1409,3739202,41940 +1898,3743817,7693 +560,3750922,427264 +1410,3760848,41840 +1692,3762475,18974 +1696,3781794,18765 +1578,3842862,27259 +2189,3860614,1126 +1448,3895471,38377 +816,3896657,205920 +204,3909522,1849363 +1913,3923887,7187 +495,3933666,530221 +1573,3957237,27710 +1005,3969110,124753 +1042,3972413,111265 +186,3986807,2047649 +469,3990066,569828 +2146,5989306,1797 +106,5991728,3442192 +81,5997814,4266167 +1816,6001174,11253 +1220,6002527,68486 +1546,6032352,29375 +1119,6046368,90712 +1060,6046743,104855 +648,6048627,326509 +662,6071567,310809 +1481,6078176,35438 +687,6083448,285903 +485,6101033,552089 +2138,6111938,1882 +1429,6116940,39674 +299,6118079,1177392 +1092,6121024,95109 +2085,6127190,2749 +1000,6131106,125418 +618,6136757,360143 +2062,6143689,3258 +2091,6145316,2637 +1806,6160655,11694 +1517,6167751,31755 +1052,6169408,107036 +1297,6171569,57467 +694,6174010,282124 +39,6180190,8432642 +884,6186491,175319 +2306,6212605,194 +1670,6240801,20135 +611,6242167,367771 +2295,6243588,231 +466,6249486,580095 +733,6258092,255973 +2160,6262469,1590 +630,6270765,343571 +2149,6276208,1785 +245,6276419,1551356 +1166,6284929,79689 +424,6296228,676417 +900,6299408,167506 +1855,6300771,9620 +960,6301789,142557 +95,6308670,3672613 +1762,6315553,14327 +1783,6326324,13300 +2127,6330147,2043 +232,6343784,1656957 +607,6354098,373066 +2458,6354962,8 +2285,6379173,262 +178,6384450,2081764 +841,6395848,191094 +1943,6409472,6297 +437,6414286,646106 +1502,6416213,33364 +1967,6417987,5655 +2251,6423275,500 +635,6423719,340624 +1596,6425087,25643 +1909,6472706,7320 +651,6510480,322888 +2030,6516085,3935 +1737,6517003,16430 +1567,6517826,28217 +2065,6520732,3133 +436,6528152,647531 +1653,6541079,21803 +1691,6554011,19017 +2322,6557487,112 +1790,6557824,12567 +1779,6590149,13471 +1197,6606543,72792 +1641,6617912,22757 +444,6618608,633567 +300,6625437,1176858 +492,6625716,537399 +643,6647535,330551 +2400,6647642,13 +2371,6651072,26 +572,6654098,407287 +2154,6658016,1708 +2304,6674092,200 +2182,6677893,1209 +2457,6692351,10 +1439,6704738,38878 +1150,6736666,84324 +763,6786449,235799 +1272,6795280,59956 +1712,6818593,17511 +2004,6821136,4516 +1945,6822085,6170 +504,6822957,513207 +918,6837266,158068 +955,6853693,143492 +2055,6857973,3366 +1647,6870350,22103 +750,6882236,243973 +1218,6884492,68631 +1278,6892517,59545 +6,6910361,32245198 +617,6920960,360466 +1966,6921135,5690 +187,6923061,2042173 +820,6925574,204893 +1160,6927748,80879 +1928,6929240,6697 +97,6936607,3634175 +138,6948793,2822013 +1800,6955809,12094 +1644,6956104,22498 +2063,6968280,3206 +313,6986891,1095740 +2314,6995252,149 +1363,7007969,48658 +420,7012651,696389 +670,7013660,298876 +2290,7023110,244 +1291,7038651,58460 +1838,7047342,10266 +1504,7064954,33045 +2243,7067846,544 +671,7069895,298332 +2406,7083877,13 +1727,7085502,16800 +86,7085510,4052425 +380,7092442,794965 +1213,7097727,69894 +311,7098955,1101037 +2102,7125212,2385 +1100,7127455,93894 +1927,7135037,6705 +994,7139820,126932 +1564,7139853,28389 +1326,7140413,54720 +996,7142659,126152 +1441,7150683,38763 +240,7150939,1598475 +1518,7154207,31748 +655,7157316,316045 +1162,7158871,80687 +1309,7181335,55955 +243,7183372,1583934 +735,7210775,254394 +1550,7220989,29110 +977,7221139,134432 +1491,7226782,34472 +1600,7230689,25469 +2003,7242969,4527 +70,7249451,4857805 +1128,7259218,88356 +2289,7262049,246 +366,7271812,828516 +521,7272223,491834 +1254,7287342,62324 +782,7297881,226567 +1343,7313287,51679 +113,7318415,3268635 +471,7318949,565878 +621,7333216,358104 +1261,7337110,61184 +33,7340529,9694364 +1065,7346797,103956 +520,7349282,492330 +1777,7357503,13493 +2039,7365299,3732 +336,7386358,945220 +657,7394371,315301 +2361,7409475,30 +84,7417116,4067887 +1359,7418168,49109 +1444,7422002,38730 +1177,7427966,77393 +1877,7428666,8492 +2147,7440474,1793 +259,7449254,1434313 +668,7462660,302189 +2100,7474527,2459 +1871,7477695,8821 +1172,7485877,78599 +68,7491093,4918696 +2014,7492426,4275 +1507,7494178,32678 +986,7494497,129925 +1957,7499430,5846 +1354,7508390,49802 +844,7516892,190133 +396,7518529,757917 +2476,7520280,2 +2376,7526090,22 +1980,7528491,5347 +1666,7530708,20255 +64,7540891,5444886 +971,7550472,138212 +34,7555180,9579441 +2172,7557683,1400 +1716,7559093,17374 +1728,7560474,16690 +236,7563185,1630845 +1161,7563943,80848 +875,7574317,180002 +766,7581876,235048 +1594,7588382,25739 +1874,7589468,8748 +1532,7590135,30453 +1671,7590275,20127 +1266,7605446,60407 +2196,7629036,1026 +922,7646152,157182 +1900,7651093,7667 +835,7661091,194713 +419,7675610,699257 +967,7691817,139935 +319,7695478,1061592 +1099,7695659,93936 +2026,7699382,3971 +2375,7707390,22 +2307,7720028,193 +999,7721441,125651 +1708,7733128,17728 +395,7749444,760905 +1478,7750835,35781 +1729,7756002,16666 +131,7758085,2982623 +139,7765098,2810170 +2068,7775311,3058 +1030,7781236,115811 +1066,7787254,102888 +747,7802435,246697 +2145,7803631,1811 +2059,7809316,3303 +1058,7820575,105301 +483,7829201,554232 +403,7831811,740950 +295,7842579,1214988 +585,7860453,393912 +2224,7865511,701 +2046,7866994,3601 +1135,7897925,86580 +2455,7913305,10 +2137,7914131,1891 +2200,7915966,928 +1300,7919620,56967 +2271,7927374,347 +1970,7929731,5593 +1587,7970506,26130 +707,7973893,269989 +505,7976264,511055 +2246,7985956,528 +499,7995033,522130 +1660,7999103,21305 +507,8000875,508779 +198,8004076,1928927 +1023,8006209,120011 +2044,8013349,3627 +1840,8015775,10204 +2412,8015955,10 +541,8019812,457747 +364,8048374,830634 +1530,8061953,30563 +921,8062053,157553 +795,8078914,218774 +1904,8082376,7509 +919,8096537,157944 +1514,8097158,32092 +2,8099868,57036847 +329,8123790,992528 +1867,8128478,9086 +1199,8138506,72556 +30,8153179,11485813 +822,8153941,203462 +94,8155296,3681017 +1987,8160123,5237 +369,8167837,822175 +188,8175236,2007007 +193,8184383,1973145 +2428,8185721,10 +742,8191129,248366 +1206,8192845,71549 +1579,8199417,27027 +909,8201460,164639 +1523,8204028,31261 +1085,8204926,97623 +267,8218433,1396037 +1332,8224678,53455 +1353,8240209,49834 +1229,8240677,66920 +1383,8259895,46787 +727,8268010,261746 +1537,8274566,30120 +1994,8288459,4820 +1942,8292737,6301 +1999,8305343,4583 +890,8320319,171958 +898,8323711,168573 +1960,8325063,5800 +616,8325700,360668 +774,8337151,233568 +1589,8362886,25958 +1954,8366045,5883 +1866,8366849,9089 +122,8369561,3160861 +2047,8369657,3592 +1488,8369778,34935 +1113,8373234,91799 +1554,8379825,28931 +1854,8379871,9689 +1544,8386608,29485 +1311,8400180,55791 +914,8400975,160311 +2009,8408007,4427 +1912,8411874,7212 +1851,8418489,9722 +317,8419570,1071165 +1147,8420564,85303 +143,8423835,2734448 +2031,8425594,3932 +1430,8428196,39652 +2331,8434727,79 +815,8438707,206319 +765,8444356,235096 +1035,8444698,114992 +386,8459255,779152 +69,8478874,4865740 +773,8483719,233698 +634,8501514,341384 +1006,8502135,124730 +257,8503255,1454075 +2021,8510466,4098 +487,8513699,551349 +52,8539216,6465964 +1868,8541236,9053 +1611,8552893,25031 +1907,8553904,7449 +1167,8574922,79600 +915,8582487,159272 +2414,8583185,10 +819,8588789,204935 +660,8593382,313270 +1185,8606809,75942 +91,8607734,3753381 +1246,8609713,63361 +1061,8612358,104660 +1722,8622901,17031 +2088,8627359,2707 +1298,8630972,57331 +279,8632462,1311596 +26,8649412,12180454 +1282,8654156,59206 +1114,8662264,91760 +2343,8662634,52 +695,8665783,280921 +2193,8669398,1082 +422,8674163,678183 +405,8675636,733895 +1392,8677963,44577 +2232,8678008,621 +1885,8696132,8233 +925,8698728,155674 +2107,8699429,2367 +807,8708728,211960 +2381,8709940,21 +126,8710047,3102084 +1384,8720321,46545 +1962,8724192,5787 +1533,8729672,30229 +307,8740199,1136594 +534,8741336,472471 +1902,8742874,7565 +1188,8752714,75259 +348,8753956,891275 +567,8758298,412229 +489,8760124,544500 +1265,8760563,60434 +1678,8772425,19893 +1628,8772923,23556 +1608,8773967,25205 +1646,8776452,22405 +16,8779575,18163001 +1801,8785003,12004 +1148,8785314,85008 +53,8788366,6350252 +1915,8792844,7135 +1103,8796215,93768 +1454,8806145,37985 +1408,8811880,42204 +108,8812550,3411019 +2124,8815353,2079 +1228,8815749,67438 +2420,8819990,10 +1668,8827094,20178 +865,8831977,183378 +593,8839171,386044 +1484,8839403,35260 +331,8841266,985349 +123,8842936,3144228 +904,8843774,166769 +306,8847546,1140866 +614,8849267,363053 +2022,8852026,4083 +2206,8853146,859 +1232,8855679,66491 +1884,8856821,8235 +2152,8868716,1719 +1181,8876551,76582 +1793,8877156,12503 +2388,8877886,20 +1118,8890346,91152 +453,8890793,609396 +615,8895532,362571 +783,8897100,225533 +1490,8900955,34490 +644,8907258,329223 +1190,8908002,74355 +959,8908544,142779 +1396,8916982,44124 +1055,8922870,106236 +2253,8924845,477 +1413,8925624,41389 +1839,8925695,10229 +2238,8942143,563 +2219,8947021,756 +2043,8947705,3633 +716,8954402,264636 +1501,8956715,33558 +83,8963720,4087908 +237,8966820,1630333 +48,8967440,6758765 +1064,8970390,103977 +1302,8976313,56565 +997,8978080,126069 +1428,8980651,39717 +857,8991696,185329 +2451,8994199,10 +975,8997874,135268 +754,9000253,242545 +1165,9003698,80197 +1037,9014108,113440 +943,9016464,148294 +1548,9016560,29316 +1823,9021037,10886 +309,9021920,1128918 +673,9023703,296858 +2315,9029627,149 +173,9029928,2156716 +628,9031705,344141 +554,9037756,437313 +130,9043233,2991485 +239,9047658,1624665 +226,9048764,1691587 +129,9057880,3010527 +134,9060641,2933303 +117,9060885,3190865 +1707,9067168,17729 +1358,9071253,49235 +1598,9091557,25519 +669,9094538,301302 +2184,9095581,1191 +793,9096738,220848 +942,9097545,148684 +832,9101574,196605 +310,9103424,1120247 +330,9106642,987378 +652,9106690,322131 +1263,9113064,61075 +1192,9120206,73740 +2115,9124682,2238 +2190,9129046,1120 +2229,9136062,647 +2126,9138661,2066 +589,9140898,392202 +689,9147518,284058 +168,9148043,2267080 +1818,9148439,11153 +1051,9151549,107257 +2075,9153430,2913 +58,9154293,5826417 +613,9154820,365469 +2096,9163140,2523 +105,9167250,3457749 +1480,9174887,35593 +1076,9179700,100419 +1137,9180206,86475 +448,9182487,625062 +526,9185931,486289 +1946,9186126,6107 +834,9186877,194796 +1139,9188016,86299 +1308,9191031,56169 +427,9195661,668174 +404,9199885,737788 +2471,9213654,3 +1795,9225795,12339 +1461,9228039,36966 +1248,9231765,62972 +409,9234594,723166 +1281,9235561,59213 +79,9236866,4335933 +1096,9238175,94505 +181,9239515,2065078 +1223,9240154,68044 +1719,9253494,17135 +2266,9257513,382 +1329,9260447,53601 +1557,9262877,28650 +1067,9264752,102868 +1526,9266092,30909 +253,9272054,1487112 +905,9277642,166763 +244,9280477,1558749 +458,9280679,600382 +1296,9282669,57579 +2032,9282974,3897 +406,9283142,732148 +1862,9283775,9262 +121,9291984,3176446 +1541,9292037,29827 +677,9299539,293814 +2472,9312528,2 +575,9314079,406006 +388,9314153,771043 +1053,9318449,106673 +302,9319058,1156945 +362,9320272,837597 +561,698143931,427224 +859,698147372,185139 +206,698147969,1844189 +1292,698151302,58359 +11,698152377,20341891 +1770,698152498,13887 +401,698160606,748433 +228,698162312,1674338 +1978,698162357,5365 +547,698167138,448815 +930,698169715,151990 +532,698171150,477951 +272,698178312,1343037 +2262,698182935,416 +1238,698187023,65726 +1805,698190039,11745 +1405,698191218,42454 +1285,698200480,58822 +1897,698202162,7836 +1655,698203538,21668 +262,698207545,1422231 +1215,698212272,69547 +1328,698215322,53855 +394,698231772,761071 +1465,698232227,36632 +1767,698234770,13959 +381,698239813,794181 +389,698241117,770662 +459,698258283,597234 +2349,698262808,49 +1505,698264828,32981 +400,698273555,748974 +1033,698278542,115205 +927,698279195,154136 +1849,698281649,9810 +1094,698285444,94869 +265,698290319,1414185 +252,698290577,1491930 +340,698295651,920772 +1082,698299678,98671 +1850,698305474,9770 +2191,698312347,1108 +1473,698315881,36238 +2469,698321130,4 +903,698324343,166785 +722,698330221,263066 +2270,698331388,351 +276,698338524,1319774 +719,698342159,263672 +582,698345556,396853 +1979,698346318,5349 +826,698346954,200307 +679,698349125,291745 +296,698350371,1212348 +287,698353083,1243536 +802,698356304,213061 +111,698361257,3348167 +1398,698363063,43927 +1134,698364331,86751 +1212,698365960,70108 +2083,698368493,2802 +696,698373265,280783 +1815,698383417,11272 +1736,698384662,16453 +1714,698384726,17412 +1449,698385619,38157 +1601,698388041,25456 +1169,698388578,79195 +1973,698403524,5441 +888,698416970,174220 +945,698420691,147460 +363,698442418,836207 +1306,698457392,56269 +99,698462285,3562096 +357,698477883,860871 +1315,698485268,55429 +578,698486277,403780 +752,698488800,243532 +629,698489071,344039 +1588,698511920,26022 +1275,698519133,59737 +917,698526036,158094 +653,698540331,321134 +1493,698545981,34411 +1925,698548451,6750 +421,698557087,680465 +1419,698562644,40626 +2156,698580310,1679 +2066,698582741,3123 +159,698585370,2433620 +20,698588535,16298759 +563,698588812,416536 +2267,698592565,377 +1930,698592907,6560 +672,698599365,297218 +481,698604229,555857 +1571,698605444,27922 +221,698613394,1724159 +576,698620694,405976 +1500,698623373,33578 +551,698625834,440879 +2104,698630140,2378 +318,698630507,1062035 +264,698635863,1415307 +297,698641566,1200161 +1776,698647624,13524 +426,698650301,672962 +2214,698650509,793 +470,698652014,567056 +2274,698652171,340 +2432,698654164,10 +1386,698655576,46338 +1797,698655859,12262 +25,698659980,12919925 +2212,698661697,806 +746,698663855,246835 +1688,698666810,19311 +1694,698667255,18855 +1239,698670524,65693 +2228,698677650,650 +1856,698680806,9597 +2181,698687597,1257 +1361,698687678,48823 +594,698692141,386000 +1896,698693697,7883 +1982,698696420,5311 +1622,698701911,24339 +1382,698702991,46906 +127,698704189,3037337 +1288,698704875,58563 +1307,698723158,56242 +1676,698736778,19902 +1746,698738810,15757 +1378,698739350,47439 +1455,698748891,37610 +1569,698749311,28058 +1743,698757439,16014 +1993,698757487,4984 +1934,698766369,6438 +1847,698766454,9854 +1393,698768565,44487 +115,698769107,3235406 +2367,698776998,28 +861,698783754,184930 +1575,698785538,27359 +1658,698786826,21625 +80,698789253,4326401 +2067,698791053,3087 +2346,698795589,50 +2372,698798180,25 +1580,698806018,26600 +23,698807570,14262032 +439,698811281,645083 +2230,698817235,639 +61,698823542,5640061 +706,698826986,270814 +21,698829590,15955280 +2484,698830638,1 +511,698837993,502449 +341,698842996,909796 +1487,698845189,34971 +1211,698848067,70156 +1045,698848373,109223 +339,698849979,926122 +2258,698855681,437 +528,698867446,483039 +399,698867483,750341 +417,698879638,703289 +153,698881022,2539293 +1013,698884287,123068 +120,698895940,3177177 +1141,698897472,86104 +1366,698905177,48333 +1597,698906190,25565 +2050,698906643,3530 +185,698908184,2049057 +697,698908912,280716 +1807,698911639,11674 +2440,698913618,10 +217,698916948,1757593 +1948,698926585,6055 +2213,698931404,793 +2052,698931998,3499 +1652,698934729,21817 +768,698938264,234404 +2430,698941586,10 +852,698946155,186724 +1078,698957176,100183 +289,698962117,1235820 +60,698971484,5753808 +637,698983867,339232 +435,698987598,647814 +283,698993706,1285969 +1324,698996782,54788 +974,698998882,135573 +1327,698999105,54026 +1260,699004723,61262 +2069,699006683,3027 +1895,699007059,7894 +2073,699011415,2946 +730,699016994,259639 +1718,699019249,17159 +1772,699025262,13657 +1110,699027000,91974 +1908,699034094,7438 +995,699037086,126159 +1529,699039013,30784 +1081,699054327,98715 +157,699054373,2458074 +2445,699057459,10 +2441,699058253,10 +255,699065686,1460733 +1690,699066118,19019 +2415,699069151,10 +412,699072129,718160 +1198,699075351,72688 +332,699083129,984577 +461,699086436,593183 +715,699088529,265549 +474,699088769,563499 +1510,699091553,32444 +19,699097885,16414227 +8,699098531,23120050 +818,699099385,205501 +1726,699099811,16873 +1560,699111651,28597 +1414,699117178,41266 +749,699117992,246113 +579,699121671,403150 +880,699121777,176539 +1747,699126484,15506 +2301,699126490,209 +1540,699127156,29855 +441,699127546,637577 +2311,699131849,156 +745,699139964,247277 +1274,699144886,59805 +32,699146580,10897733 +2166,699146876,1466 +2473,699147813,2 +1687,699148121,19468 +957,699150527,143272 +449,699155679,622220 +2060,699156456,3284 +1357,699167148,49269 +1794,699169828,12463 +312,699170684,1098874 +1656,699176234,21666 +54,699189792,6218296 +1459,699191449,37065 +1630,699191455,23490 +874,699191464,180564 +1069,699194766,102369 +871,699195358,181313 +954,699196829,143740 +324,699199084,1037005 +866,699201278,182870 +301,699204478,1166370 +956,699208929,143402 +2027,699212614,3970 +663,699213622,310176 +885,699238479,174910 +2077,699238678,2887 +824,699244334,201872 +62,699246032,5583684 +135,699250676,2905048 +1639,699251542,23020 +166,699262350,2314885 +665,699265922,309081 +1873,699266530,8802 +200,699269923,1896108 +1561,699272633,28567 +1019,699272880,122037 +423,699273451,676619 +1208,699277039,70907 +428,699278528,666235 +383,699280514,792100 +2416,699282717,10 +1168,699283869,79516 +1200,699284822,72455 +1204,699285160,71746 +1322,699287032,54827 +210,699298370,1807909 +114,699299123,3259775 +712,699301458,267120 +209,699304554,1828273 +1244,699308637,63758 +1156,699316421,81870 +1447,699319395,38519 +1368,699320017,48100 +361,699321518,844968 +882,699323302,175561 +1226,699323781,67727 +1191,699326171,74273 +7,699333701,27808250 +1470,699336679,36257 +371,699336777,818949 +2475,699339594,2 +215,699341889,1787465 +13,699342219,19004738 +1901,699343887,7666 +1152,699346267,82785 +1817,699346280,11250 +744,699347951,247629 +2129,699351046,2003 +1659,699351301,21382 +202,699355601,1883610 +2136,699356102,1896 +1029,699356968,116344 +1,699364813,60264498 +753,699366937,242627 +5,699368887,38843735 +413,699372829,715187 +736,699373225,254337 +1581,699373599,26525 +1474,699375903,36235 +1231,699377151,66497 +1766,699377401,13968 +938,699379895,149757 +728,699380607,260394 +1163,699380621,80538 +93,699382126,3711282 +1602,699383121,25442 +76,699383279,4681504 +408,699385139,730120 +764,699390457,235778 +1230,699391409,66890 +150,699393742,2568438 +1637,699393759,23186 +1689,699396429,19157 +2421,699401083,10 +1374,699402816,47710 +1457,699405877,37135 +268,699406247,1392482 +1376,699406750,47532 +78,699406776,4420376 +242,699408669,1594207 +1131,699409420,87995 +1120,699413040,90702 +246,699413581,1546850 +1583,699419851,26437 +1535,699421735,30176 +1084,699423167,97885 +414,699424741,712454 +391,699425709,769598 +2377,699428898,22 +731,699429153,258801 +1180,699429335,76612 +623,699431255,352558 +475,699432672,563117 +701,699433558,275453 +1593,699438389,25861 +1344,699441366,51402 +10,699443920,21307764 +533,699448276,475479 +2356,699448843,39 +1802,699449946,11922 +2261,699451338,418 +1910,699456288,7310 +1872,699469600,8802 +1755,699470220,14803 +1521,699471829,31595 +2386,699477624,20 +431,699478692,659466 +1214,699483429,69832 +77,699485250,4677868 +1041,699488108,111628 +2461,699490365,6 +18,699491076,16480230 +2256,699491827,455 +2203,699491924,899 +2337,699492120,65 +1702,699493750,18260 +176,699494480,2109979 +897,699494488,169239 +1675,699498602,19990 +1122,699501322,90225 +1539,699503079,29953 +1741,699508363,16108 +151,699509239,2552837 +355,699509284,874078 +1352,699510045,49928 +468,699510259,571940 +1799,699511295,12134 +2148,699511370,1792 +24,699513260,13381170 +1010,699516250,123787 +1556,699516268,28683 +1577,699518384,27327 +2345,699518454,52 +1253,699520575,62379 +1725,699523631,16883 +1911,699524362,7275 +1677,699524891,19902 +1186,699530673,75693 +1585,699541376,26368 +2323,699542874,107 +1558,699543968,28615 +516,699545762,497108 +1566,699545975,28324 +1295,699546317,57682 +212,699548295,1799870 +571,699550876,408417 +2239,699551148,561 +231,699552859,1663559 +1757,699554427,14796 +1739,699556684,16218 +460,699557165,594814 +1316,699560327,55227 +118,699562182,3186252 +873,699562874,181297 +1634,699567608,23311 +2186,699569800,1152 +797,699573053,217860 +1498,699574408,33756 +1389,699576407,45472 +1050,699576978,107887 +1367,699578606,48145 +326,699580120,1008267 +1032,699583677,115243 +1869,699588526,9046 +609,699589540,368909 +506,699590236,509942 +1705,699595556,17800 +604,699598396,377011 +455,699598425,605570 +2407,699598671,13 +2405,699598764,13 +2249,699600167,517 +377,699600855,800627 +1385,699603116,46457 +936,699604515,150336 +247,699605333,1543124 +2176,699609445,1313 +508,699611673,507543 +2286,699613884,261 +1420,699614027,40612 +1922,699614821,6879 +2409,699618326,12 +858,699620730,185252 +1446,699621601,38565 +1859,699622781,9533 +1224,699622958,68004 +1380,699627771,46954 +1756,699628084,14796 +1992,699630110,4998 +1178,699632387,77126 +2277,699639001,326 +1370,699639005,47862 +683,699639122,287177 +647,699641777,327110 +1235,699642954,66255 +902,699644054,166843 +776,699644448,232766 +633,699644852,342816 +1852,699650981,9702 +1730,699651260,16663 +1853,699655364,9693 +2117,699656989,2155 +1697,699657242,18737 +488,699657450,550031 +939,699658023,149332 +2006,699659708,4496 +1090,699660539,96854 +1944,699662232,6257 +2205,699664910,887 +992,699665031,128346 +382,699665152,792455 +2368,699668392,28 +989,699671197,128715 +1765,699671454,14081 +2024,699672060,3978 +2298,699673236,222 +530,699674355,481283 +692,699676005,282825 +862,699677277,184774 +605,699678739,375134 +654,699678801,320318 +2236,699679662,604 +2446,699682780,10 +990,699684062,128672 +281,699684693,1296895 +2264,699685533,395 +2369,699687328,26 +2450,699688180,10 +627,699693687,344532 +1796,699694284,12317 +1271,699695167,60029 +1364,699697136,48635 +42,699697558,7703145 +316,699698079,1072621 +46,699698253,6867460 +2391,699698745,17 +2034,699699422,3848 +2490,699699563,1 +35,699699601,9346551 +1403,699699650,43218 +1303,699703295,56371 +786,699703642,223963 +119,699703782,3186130 +510,699704542,503902 +1373,699705601,47751 +502,699706047,518734 +1240,699706955,64999 +1822,699709160,10948 +28,699710633,11809284 +833,699711706,195368 +1216,699711723,69437 +1813,699711926,11435 +224,699712422,1700606 +993,699713515,127113 +2202,699716785,914 +1145,699718269,85593 +2321,699720374,117 +144,699722599,2670312 +418,699723284,700502 +1115,699724603,91650 +12,699725436,19746356 +2041,699726660,3706 +1865,699728159,9184 +2217,699728266,760 +2254,699729211,472 +1939,699730399,6391 +337,699730714,932925 +599,699730998,381899 +85,699733098,4056320 +658,699733501,314352 +222,699734152,1713237 +1268,699734445,60337 +941,699734795,149003 +1077,699735020,100390 +4,699736927,40358911 +49,699736959,6667170 +854,699737356,186171 +1059,699738350,105247 +1997,699739523,4620 +1996,699739891,4647 +2341,699741694,64 +2265,699742054,390 +801,699744012,214603 +74,699744766,4693997 +870,699745265,182075 +2324,699749184,102 +748,699751062,246192 +2287,699752402,254 +1337,699753640,52425 +2095,699753863,2542 +2394,699754856,15 +1899,699755859,7690 +57,699756210,5882685 +949,699758688,146384 +373,699759128,815582 +1821,699760767,10960 +27,699761749,11920576 +1833,699763225,10459 +1528,699765601,30795 +656,699765971,315881 +2057,699774694,3358 +2192,699776412,1091 +891,699777234,171277 +979,699777372,132023 +476,699777556,563099 +913,699778028,160828 +1043,699778867,110375 +1784,699779038,13094 +1412,699780721,41423 +1841,699780873,10099 +432,699781605,658831 +9,699781762,22752090 +564,699783063,416148 +2373,699783641,25 +190,699783765,1997648 +1048,699784536,108683 +2051,699785141,3515 +479,699785935,560964 +1312,699788305,55774 +1445,699789609,38616 +2042,699790202,3686 +907,699791054,165635 +1371,699792747,47770 +1792,699794286,12528 +1654,699794421,21669 +1768,699794720,13955 +705,699794765,271231 +440,699795378,637875 +2175,699795698,1320 +848,699796330,188248 +1101,699796630,93862 +1969,699797065,5620 +509,699797252,505743 +305,699797508,1141082 +1963,699797805,5759 +1435,699798611,39058 +266,699799629,1397244 +968,699800377,138840 +711,699800992,267507 +1932,699802012,6494 +152,699803070,2549925 +2150,699803189,1743 +1857,699804790,9585 +1864,699805379,9222 +1661,699805839,21258 +2276,699811133,326 +1798,699811844,12181 +1846,699812007,9924 +603,699812351,378930 +1334,699812571,53090 +828,699812653,198897 +1471,699812869,36253 +325,699814283,1026711 +780,699816699,229009 +1769,699818726,13912 +171,699820572,2214059 +270,699821629,1388376 +916,699821755,158658 +1810,699823365,11520 +1876,699823490,8701 +640,699825089,336160 +1020,699825236,121840 +2335,699825977,67 +2278,699826996,305 +322,699827112,1045364 +1680,699828338,19740 +804,699828442,212676 +877,699828685,179233 +2119,699829494,2135 +1095,699829916,94758 +1843,699829975,10061 +1582,699830255,26496 +2201,699831193,914 +1259,699831366,61296 +851,699831860,186821 +482,699832431,554941 +809,699832463,210034 +145,699833171,2654911 +353,699834004,876737 +2143,699835178,1828 +1753,699837483,14911 +285,699837826,1265509 +2354,699840189,40 +1314,699841959,55536 +1673,699842853,20066 +2333,699843389,74 +636,699843417,340334 +2479,699843936,2 +1827,699844314,10752 +1073,699844594,100826 +320,699844727,1059806 +2419,699844880,10 +1313,699845400,55700 +154,699846892,2516489 +31,699849210,11031547 +411,699850967,718390 +1542,699851345,29772 +1257,699851426,61636 +691,699851427,283161 +1195,699852080,73479 +1825,699853308,10881 +1001,699854312,125197 +982,699854484,131263 +2001,699854830,4548 +2080,699855277,2854 +2134,699855647,1902 +963,699856830,141720 +208,699856962,1830196 +402,699857387,746571 +1024,699858313,119555 +254,699859013,1473883 +1888,699860651,8074 +525,699861004,486475 +2268,699862278,368 +714,699863708,266099 +1146,699864013,85439 +216,699866225,1778854 +2269,699866271,353 +443,699866510,636124 +1130,699867602,88006 +2165,699867743,1480 +44,699868002,7249917 +2340,699868399,64 +1416,699868739,41047 +133,699869682,2945540 +351,699870198,879222 +480,699870923,556010 +1586,699872032,26186 +2422,699872401,10 +741,699872616,250240 +1937,699873141,6401 +690,699875132,283357 +294,699875213,1217792 +1935,699875650,6425 +855,699876345,186055 +1011,699876746,123770 +1348,699878150,50643 +557,699878511,433361 +738,699879113,252299 +574,699879556,406752 +622,699879927,354767 +1056,699880701,105606 +810,699883079,209177 +1038,699883836,112828 +2161,699884788,1572 +1952,848882397,5949 +2387,848882577,20 +1247,848883237,63071 +1715,848883542,17406 +278,848883684,1318156 +1305,848883791,56303 +263,848886056,1416603 +1404,848886200,42457 +806,848886870,212189 +73,848886973,4722290 +462,848887199,589844 +2245,848888787,539 +452,848889556,609623 +1638,848889850,23163 +1570,848890012,28000 +1858,848892804,9541 +1452,848895676,38033 +924,848896434,156810 +464,848896948,582803 +946,848897972,147398 +1959,848899726,5803 +1786,848901396,12973 +796,848902592,218591 +407,848902744,730227 +1516,848903260,31764 +2116,848903690,2205 +125,848905770,3103885 +2392,848905784,17 +2442,848907771,10 +1463,848908144,36806 +2433,848909292,10 +762,848909464,235957 +434,848910122,647879 +779,848912265,231007 +734,848912772,254874 +843,848912937,190292 +457,848913030,600811 +923,848913037,156977 +38,848913998,8685859 +1836,848914120,10288 +170,848914661,2244365 +1627,848915032,23863 +591,848915531,387305 +17,848915730,17044032 +821,848915956,203724 +1236,848916779,65933 +1036,848917127,114991 +2227,848917401,675 +860,848917570,184938 +2079,848918262,2865 +241,848918380,1597838 +2284,848919959,264 +811,848921536,208966 +518,848921793,494414 +1252,848921861,62460 +1693,848922118,18950 +2178,848922517,1286 +2429,848922958,10 +1618,848923540,24410 +164,848924219,2342225 +546,848925840,453593 +2303,848926070,201 +1835,848926293,10303 +535,848927262,471726 +1187,848928486,75385 +1022,848928624,120223 +137,848930111,2835495 +933,848930498,151017 +2425,848930898,10 +1829,848931321,10691 +2019,848932115,4152 +1704,848932879,17825 +935,848933470,150596 +387,848934935,774851 +1144,848935020,85879 +451,848935389,609761 +2443,848935732,10 +569,848936053,408983 +2434,848936229,10 +1918,848937248,6936 +1339,848937780,52299 +1645,848939131,22476 +2317,848939203,138 +1892,848940223,8010 +2056,848942587,3364 +1733,848942618,16516 +2313,848942734,152 +1828,848942847,10697 +393,848942968,764080 +456,848945529,603130 +772,848946608,233810 +1933,848946700,6469 +1154,848949271,81959 +1477,848949597,35868 +2099,848950255,2465 +2260,848952556,422 +1881,848952566,8322 +769,848953066,234171 +1752,848953472,15058 +2459,848954163,7 +965,848954236,141428 +839,848955311,193198 +141,848955783,2753536 +698,848956013,280700 +328,848956513,1002084 +29,848956765,11540865 +1140,848958111,86182 +794,848958556,219395 +1870,848959231,8897 +1255,848960061,61849 +503,848963236,515345 +2275,848963521,328 +1379,848964811,47157 +2339,848965531,65 +494,848966521,534827 +249,848967422,1532391 +65,848967710,5313839 +2390,848969160,18 +2452,848969313,10 +2054,848970357,3414 +1998,848971079,4609 +1512,848973715,32305 +2131,848973968,1969 +1642,848974611,22665 +1431,848974774,39543 +709,848975192,268280 +477,848976034,562768 +2002,848977203,4530 +983,848977412,131203 +1116,848977600,91597 +883,848977649,175400 +1492,848977748,34469 +1595,848978052,25668 +2293,848978284,231 +45,848978297,6928341 +2070,848978534,3024 +189,848978903,2004353 +271,848980237,1380554 +879,848981244,178874 +2153,848981523,1714 +1136,848981726,86508 +1914,848982634,7174 +2320,848982635,124 +1083,848984022,98155 +167,848985692,2278363 +624,848986287,351736 +817,848986638,205635 +893,848987051,170400 +1706,848987695,17735 +895,848988401,169682 +970,848988744,138535 +1599,848989855,25496 +527,848993505,485142 +2185,848993769,1169 +1763,848995242,14270 +1108,848995291,92382 +2020,848995446,4104 +1299,848995478,57312 +2208,848998530,847 +1251,848999448,62583 +1657,848999518,21637 +1511,848999671,32400 +1346,849000135,51162 +2061,849001277,3276 +1633,849001572,23319 +162,849001724,2388705 +740,849002091,252066 +570,849002796,408463 +911,849004274,161247 +2155,849004461,1688 +717,849004759,264518 +1826,849005658,10790 +1508,849005829,32587 +966,849006011,140708 +160,849006145,2408894 +343,849006385,898707 +1377,849006412,47532 +1983,849009623,5287 +175,849009945,2131721 +214,849010255,1791206 +496,849010386,527682 +199,849012521,1913407 +1525,849012843,31209 +314,849012985,1080956 +1834,849013126,10328 +298,849014147,1198661 +1433,849014413,39362 +15,849014922,18389230 +1399,849015875,43717 +1615,849017820,24499 +1619,849017894,24404 +1046,849018239,109087 +1682,849018442,19642 +1157,849018778,81816 +2109,849018780,2269 +1824,849019785,10884 +1565,849020094,28376 +2122,849020212,2109 +1071,849020667,101537 +1349,849021566,50075 +1276,849022063,59734 +2255,849022649,463 +1143,849023078,86048 +962,849023212,142037 +195,849023540,1964003 +2045,849024152,3604 +1513,849024208,32280 +2078,849024333,2874 +1267,849025083,60347 +1667,849025558,20237 +66,849026145,5091924 +524,849027025,488758 +958,849027653,142923 +601,849027712,380521 +856,849028071,185468 +327,849028088,1002140 +2435,849030062,10 +1861,849030086,9312 +1072,849030226,101007 +642,849031818,331975 +211,849031846,1807307 +2157,849032027,1670 +180,849032059,2076358 +602,849032413,380349 +2121,849032414,2122 +523,849032741,489013 +1365,849034666,48547 +537,849034882,470214 +2424,849034917,10 +1893,849035447,7945 +699,849035525,280653 +566,849035905,414103 +2482,849036055,1 +1273,849036262,59825 +158,849037407,2439635 +41,849037469,7761358 +1054,849037699,106411 +840,849038195,191730 +2280,849038572,298 +2171,849038597,1406 +2071,849038985,2996 +1320,849039310,55033 +760,849040142,236841 +140,849040194,2755636 +1520,849040462,31721 +280,849041192,1297981 +2244,849042461,542 +976,849043776,134454 +1057,849044705,105586 +878,849044961,179137 +288,849045047,1239122 +798,849045675,217802 +197,849045915,1957340 +2170,849046206,1409 +1703,849046232,18031 +2084,849047044,2800 +1270,849047233,60107 +284,849048112,1281838 +987,849048216,129194 +2359,849048241,34 +559,849048455,428837 +632,849048552,342840 +1323,849048562,54806 +1685,849048734,19542 +608,849048867,372530 +282,849049045,1289083 +684,849049155,287016 +2436,849049288,10 +1701,849050087,18316 +1209,849050191,70827 +682,849050734,288160 +1063,849050849,104505 +1417,849051363,40999 +218,849051436,1752217 +2411,849051731,11 +1112,849051976,91965 +2151,849052289,1734 +142,849052549,2744723 +940,849052588,149021 +2292,849053122,240 +767,849053868,234522 +1044,849054582,109387 +543,849054951,457222 +1606,849055181,25301 +1109,849055309,92068 +1047,849055425,108987 +1617,849055527,24417 +755,849055553,242429 +1664,849056475,20311 +207,849056744,1832658 +685,849056892,286426 +1949,849057176,6038 +565,849057450,414190 +201,849057572,1887051 +110,849057655,3400530 +597,849057764,383279 +1039,849059331,112602 +1217,849059457,69002 +59,849059491,5804499 +1974,849060099,5431 +2332,849060357,77 +87,849060446,3954593 +22,849061374,14367363 +223,849061406,1712187 +1734,849061417,16480 +1965,849062546,5725 +1614,849062920,24527 +169,849063605,2261037 +1242,849063793,64158 +335,849063849,949742 +790,849063932,221569 +2309,849064084,170 +1436,849064087,39006 +292,849064614,1219468 +978,849064715,133533 +37,849064752,9100438 +1503,849065566,33162 +1787,849065606,12838 +1640,849065697,22864 +2038,849065829,3750 +2288,849066035,252 +1207,849066044,70970 +674,849066125,296816 +791,849066618,221074 +2396,849066808,14 +1976,849066849,5385 +1397,849067079,44002 +1778,849067192,13485 +1004,849067216,124790 +286,849068108,1252357 +1014,849068662,123016 +2064,849069010,3203 +726,849069022,261800 +1563,849070220,28548 +290,849070335,1233963 +1886,849070464,8146 +1923,849070736,6769 +1553,849070812,28981 +950,849070946,146263 +587,849071545,392443 +928,849072873,153960 +2477,849072919,2 +625,849073156,350774 +1814,849073314,11359 +2033,849074508,3869 +1883,849075298,8254 +1258,849075442,61308 +827,849075836,199864 +1515,849076187,31828 +149,849076515,2598655 +680,849076678,290430 +179,849076810,2080263 +2466,849076953,4 +1951,849077481,5970 +1196,849078086,73094 +384,849078297,790175 +146,849078498,2654505 +2015,849078942,4267 +2308,849079977,171 +450,849080011,613508 +1331,849080118,53486 +1751,849080197,15247 +2016,849080260,4267 +1804,849080702,11760 +1425,849081284,40337 +1341,849081641,51845 +2364,849081869,30 +1237,849082154,65817 +1612,849082580,24721 +1301,849082839,56580 +392,849082848,769329 +2242,849083293,549 +1262,849083294,61128 +219,849083501,1735439 +2316,849083534,140 +445,849083725,630756 +757,849084005,239553 +1651,849084066,21818 +887,849084474,174412 +82,849084740,4155652 +75,849084911,4688957 +552,849084920,438105 +174,849084985,2134007 +1917,849085160,7006 +1325,849085293,54786 +1062,849085371,104608 +374,849085605,813655 +702,849085764,274491 +1880,849085908,8371 +1721,849085961,17079 +2281,849086132,292 +1026,849086357,117898 +196,849086491,1963359 +823,849086693,203150 +1068,849086783,102821 +661,849086817,312867 +704,849086925,271503 +2379,849087149,21 +415,849087581,710874 +291,849087742,1232876 +2180,849087786,1259 +1289,849087855,58536 +1590,849087895,25951 +1087,849088101,97286 +1458,849088199,37080 +92,849088243,3742614 +491,849088515,537556 +1844,849088639,10044 +1394,849088882,44291 +756,849088923,241738 +1241,849089207,64179 +2305,849089323,199 +50,849089459,6639827 +1592,849089499,25905 +1355,849089512,49747 +2162,849089601,1518 +2141,849089654,1846 +88,849089881,3836992 +191,849090130,1977769 +980,849090187,131691 +2447,849090573,10 +1497,849090765,33866 +2248,849090846,520 +1956,849090954,5873 +100,849091060,3512699 +147,849091084,2649921 +1700,849091105,18623 +72,849091769,4846256 +931,849091866,151930 +1049,849091897,108190 +165,849091899,2339976 +258,849091947,1444331 +1863,849091972,9245 +352,849092109,878875 +1245,849092185,63567 +937,849092244,150249 +350,849092309,883476 +2000,849092639,4566 +1117,849092685,91305 +192,849092723,1973479 +910,849092769,163428 +584,849092827,395770 +172,849092978,2211817 +864,849093003,183664 +556,849093155,435227 +1788,849093353,12669 +63,849093422,5517326 +771,849093426,234055 +761,849093576,236327 +944,849093742,147529 +901,849093771,167153 +379,849093875,795817 +743,849093924,247902 +2188,849094006,1144 +1008,849094023,124354 +1723,849094067,16918 +1390,849094111,45087 +542,849094147,457389 +2272,849094355,343 +248,849094586,1534595 +1079,849094597,100050 +498,849094603,522598 +681,849094609,289601 +549,849094653,443820 +1538,849094688,30067 +610,849094759,368227 +1519,849094789,31743 +1740,849094972,16147 +102,849095014,3510084 +346,849095068,894916 +969,849095219,138712 +1674,849095227,20044 +182,849095240,2058221 +723,849095324,262819 +1543,849095376,29731 +2279,849095430,299 +1509,849095435,32475 +1681,849095446,19692 +1632,849095448,23321 +148,849095482,2625569 +1277,849095488,59670 +1669,849095509,20160 +1831,849095599,10506 +1350,849095601,50016 +1890,849095642,8050 +1955,849095771,5875 +1438,849095778,38906 +2187,849095800,1150 +1562,849095814,28554 +1607,849095825,25217 +737,849095829,253558 +1319,849095879,55090 +347,849095948,893227 +136,849095959,2889524 +1182,849095963,76177 +1335,849095992,52894 +1568,849096041,28193 +1176,849096102,77528 +2029,849096123,3961 +693,849096215,282312 +1138,849096265,86351 +430,849096285,662094 +365,849096310,828990 +1610,849096334,25095 +2382,849096341,20 +1524,849096346,31244 +56,849096354,6138802 +497,849096383,527556 +1317,849096399,55102 +1440,849096435,38840 +370,849096454,821507 +109,849096458,3405783 +250,849096544,1523826 +234,849096547,1642074 +947,849096592,147032 +899,849096594,168408 +128,849096606,3034492 +1936,849096631,6410 +303,849096649,1152616 +539,849096768,462218 +323,849096856,1044988 +367,849096874,826802 +227,849096882,1680655 +1318,849096891,55102 +770,849096944,234103 +116,849096945,3206856 +686,849096958,286142 +667,849096972,302335 +580,849096977,402600 +274,849096979,1337029 +1466,849096990,36443 +1123,849097002,90026 +1848,849097006,9849 +1422,849097103,40561 +2234,849097123,607 +378,849097175,799545 +2110,849097220,2260 +1950,849097312,6027 +1432,849097357,39375 +1293,849097370,58088 +2179,849097373,1270 +1089,849097386,97005 +1808,849097445,11668 +344,849097614,896854 +998,849097620,125651 +1499,849097681,33675 +961,849097716,142166 +1125,849097729,89907 +659,849097737,313271 +1034,849097792,115120 +789,849097793,222984 +645,849097799,328720 +1916,849097837,7119 +438,849097898,645389 +1421,849097924,40562 +649,849097937,326006 +639,849097954,337897 +360,849097981,848633 +1015,849098109,122932 +1699,849098132,18680 +1549,849098136,29188 +1250,849098159,62795 +1171,849098162,78599 +1175,849098192,77774 +718,849098200,263857 +934,849098217,150804 +588,849098265,392416 +626,849098299,346476 +592,849098324,386124 +1926,849098326,6730 +1279,849098374,59434 +837,849098387,193931 +446,849098400,629870 +805,849098423,212548 +2035,849098476,3844 +2118,849098477,2146 +573,849098516,406811 +562,849098557,421197 +1559,849098592,28607 +2237,849098607,589 +112,849098628,3345807 +929,849098648,153075 +2105,849098667,2377 +67,849098688,5024038 +1754,849098693,14903 +233,849098695,1653296 +1158,849098724,81040 +501,849098727,520998 +1947,849098731,6105 +2098,849098766,2470 +1406,849098769,42447 +513,849098774,498812 +354,849098782,875364 +1924,849098784,6751 +429,849098791,663077 +2005,849098822,4509 +1860,849098827,9469 +952,849098848,145901 +251,849098966,1517571 +2358,849098993,34 +90,849099021,3797508 +1981,849099054,5342 +345,849099105,896468 +1536,849099131,30175 +678,849099138,293035 +1107,849099141,92621 +842,849099145,190905 +261,849099160,1430188 +1002,849099258,125081 +107,849099276,3422165 +2074,849099280,2937 +2090,849099342,2640 +1988,849099391,5189 +1803,849099422,11792 +1986,849099434,5261 +304,849099463,1143022 +229,849099505,1673054 +2092,849099517,2632 +1456,849099541,37377 +612,849099544,367501 +830,849099557,197678 +2086,849099558,2742 +1098,849099601,94244 +700,849099640,279472 +1832,849099660,10474 +1878,849099689,8484 +104,849099696,3496033 +447,849099785,626275 +1121,849099797,90641 +1683,849099804,19628 +577,849099815,404279 +1233,849099859,66449 +1086,849099864,97343 +596,849099876,383476 +1479,849099887,35688 +2049,849099924,3534 +849,849099932,187717 +1388,849099955,45745 +203,849099965,1882017 +2233,849100006,615 +724,849100016,262679 +433,849100034,648704 +2199,849100082,984 +1650,849100083,21886 +2048,849100089,3581 +2114,849100134,2245 +1129,849100149,88120 +2216,849100162,780 +2158,849100199,1650 +1338,849100211,52425 +512,849100228,501343 +2093,849100246,2579 +813,849100262,207125 +1882,849100288,8264 +1424,849100289,40375 +515,849100323,497289 +269,849100349,1389187 +1249,849100352,62892 +1021,849100354,120625 +1476,849100383,36108 +522,849100399,490132 +1142,849100406,86066 +2013,849100439,4333 +892,849100463,171260 +788,849100496,223069 +1629,849100584,23499 +664,849100611,309505 +1791,849100612,12550 +273,849100615,1339341 +1287,849100656,58661 +906,849100680,166311 +1672,849100743,20114 +808,849100744,210497 +2342,849100760,54 +2135,849100782,1898 +1958,849100787,5807 +2223,849100796,744 +390,849100811,769844 +529,849100814,482585 +2211,849100815,807 +2089,849100877,2649 +1088,849100882,97043 +1684,849100891,19583 +472,849100994,565298 +1584,849101018,26407 +1294,849101029,58021 +1031,849101083,115474 +838,849101092,193800 +1227,849101102,67519 +646,849101104,328447 +2087,849101108,2711 +338,849101116,929257 +825,849101132,201298 +1710,849101135,17634 +2194,849101144,1080 +908,849101148,165276 +1283,849101162,58961 +2215,849101177,790 +650,849101186,325425 +1269,849101205,60298 +1132,849101224,87741 +1782,849101232,13355 +920,849101248,157598 +2053,849101268,3441 +1506,849101276,32896 +1953,849101284,5898 +1127,849101291,88713 +1400,849101293,43403 +1450,849101309,38129 +631,849101311,343399 +500,849101377,521348 +484,849101378,553244 +1443,849101382,38743 +984,849101391,131129 +1989,849101409,5064 +2183,849101443,1201 +1572,849101526,27759 +1472,849101578,36242 +831,849101579,197168 +1183,849101580,76122 +2235,849101581,606 +1091,849101604,95569 +2007,849101646,4462 +2360,849101647,32 +1494,849101652,34147 +1679,849101674,19823 +2197,849101694,1025 +2247,849101771,522 +1345,849101814,51188 +1193,849101845,73557 +1686,849101871,19476 +912,849101881,160854 +1222,849101884,68312 +213,849101889,1791816 +1407,849101893,42366 +1941,849101945,6339 +1919,849101947,6924 +1968,849101962,5625 +2370,849102037,26 +225,849102068,1695323 +454,849102092,608887 +2108,849102094,2328 +1469,849102108,36300 +2111,849102143,2253 +2218,849102150,756 +2463,849102302,5 +1931,849102336,6532 +829,849102464,198452 +2133,849102480,1936 +2470,849102505,3 +606,849102573,373291 +2410,849102985,12 +1475,849103148,36219 +2207,849103237,848 +540,849103456,461971 +2393,849103595,16 +1451,849103688,38045 +1574,849103947,27678 +1372,849104010,47751 +1105,849104100,92793 +713,849104286,266901 +988,849104297,129114 +555,849104328,436206 +1356,849104356,49375 +536,849104491,471133 +544,849104546,455874 +1875,849104633,8711 +1984,849104814,5278 +2177,849104818,1296 +2327,849104855,95 +1552,849105071,29010 +2398,849105072,14 +1194,849105102,73536 +2478,849105201,2 +1759,849105232,14534 +2296,849105408,224 +1929,849105417,6585 +1774,849105420,13551 +2169,849105463,1440 +2140,849105613,1853 +1891,849105954,8020 +1555,849106210,28838 +1758,849106303,14740 +2120,849106316,2128 +758,849106340,237913 +1453,849106383,38009 +2195,849106420,1071 +2128,849106601,2032 +1401,849106612,43358 +2362,849106698,30 +1713,849106785,17466 +2426,849106828,10 +2017,849106971,4209 +2453,849107104,10 +2385,849107188,20 +1750,849107426,15425 +2164,849107507,1497 +2139,849107532,1878 +2487,849107799,1 +2347,849107881,50 +1648,849108007,21994 +2336,849108053,66 +1234,849108148,66328 +2297,849108157,224 +1028,849108328,117355 +2383,849108339,20 +2167,849108350,1464 +205,849108623,1846329 +2220,849108762,750 +2018,849108780,4154 +1434,849108784,39351 +2283,849108934,274 +2366,849108971,28 +1576,849108991,27341 +2263,849109010,406 +1210,849109072,70777 +2437,849109116,10 +1724,849109152,16909 +1124,849109413,89934 +1018,849109507,122121 +2130,849109521,1996 +2168,849109637,1454 +2302,849109795,208 +2210,849109885,817 +1744,849109935,15916 +2257,849109966,439 +1990,849110304,5001 +2282,849110310,282 +2353,849110365,40 +2350,849110380,43 +2454,849110382,10 +2485,849110571,1 +2438,849110622,10 +1845,849110644,9971 +2225,849110674,692 +1731,849110688,16623 +2319,849110916,127 +2384,849111050,20 +1333,849111196,53222 +2329,849111244,88 +2413,849111332,10 +2468,849111487,4 +2338,849111632,65 +1613,849111667,24609 +2209,849112029,820 +2460,849112033,6 +1764,849112050,14091 +2486,849112264,1 +2465,849112312,4 +1785,849112368,13027 +2025,849112369,3972 +2374,849112435,23 +2082,849112510,2831 +1894,849112774,7942 +2334,849112876,70 +1742,849112879,16078 +2173,849112887,1380 +2389,849112960,19 +2481,849113078,1 +2355,849113300,40 +2204,849113350,897 +2252,849113485,478 +2291,849113546,241 +2036,849113597,3798 +2378,849113603,22 +2250,849113673,512 +2439,849114022,10 +2226,849114033,678 +2423,849114112,10 +2159,849114119,1628 +2330,849114265,88 +2023,849114408,3998 +2408,849114445,12 +2352,849114450,42 +2326,849114477,95 +2448,849114502,10 +2363,849114683,30 +2403,849115254,13 +2474,849115431,2 +2399,849115994,13 +1995,849116221,4749 +2395,849116310,15 +2404,849116416,13 +1830,849116419,10597 +2365,849116679,28 +2489,849116980,1 +2444,849117143,10 +2241,849117196,549 +2402,849117240,13 +2103,849117242,2382 +2480,849117427,1 +2449,849117454,10 +2462,849117533,5 +1811,849117830,11486 +2427,849118262,10 +2418,849118462,10 +2163,849118786,1499 +2325,849119862,100 +2231,849119975,636 +2431,849119994,10 +2221,849120467,750 +2348,849122819,50 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_def_tribe.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_def_tribe.txt new file mode 100644 index 0000000..93ff79d --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_def_tribe.txt @@ -0,0 +1,259 @@ +3,1,225228925 +90,4,1123538 +2,7,263753262 +66,8,2442607 +78,12,1791675 +115,13,586792 +33,19,7654576 +73,24,1964044 +51,29,3593415 +57,31,3184570 +31,33,7982804 +15,35,31145726 +12,39,40821572 +4,47,123736361 +133,53,327110 +117,56,524360 +56,59,3238973 +44,68,5634475 +34,71,7464048 +118,72,506287 +22,77,18308136 +17,80,27243988 +18,85,27003725 +99,89,819602 +81,92,1704695 +61,96,2767578 +116,97,543960 +65,106,2462841 +19,112,24098705 +124,115,432992 +63,117,2637247 +1,120,275985429 +77,125,1826223 +55,129,3272339 +98,134,819642 +74,147,1947811 +47,157,5019241 +200,159,35302 +159,176,141720 +129,185,370427 +245,187,1367 +16,194,29684725 +210,200,23556 +142,206,242627 +54,210,3465830 +67,211,2411001 +101,214,791197 +217,216,17866 +112,220,600370 +62,234,2742706 +172,236,91650 +201,255,35260 +60,256,2894965 +173,260,91124 +168,281,109440 +86,285,1307440 +227,287,7145 +248,290,539 +21,291,19215296 +37,301,6535547 +154,305,178401 +30,309,8654616 +153,317,182517 +109,319,638904 +141,336,263066 +233,339,5461 +103,355,760905 +189,365,52241 +13,369,40063000 +107,373,670466 +186,374,54720 +89,375,1196041 +45,377,5092537 +130,382,359347 +83,385,1615856 +199,397,36806 +38,412,6455126 +145,413,215538 +222,415,10061 +151,429,184774 +24,430,16198878 +71,432,2040888 +158,435,162816 +39,441,6276638 +175,443,82553 +150,451,188672 +32,452,7812313 +204,474,28931 +87,475,1224347 +234,503,5219 +64,517,2609213 +137,520,313250 +125,523,432982 +48,546,4265938 +49,548,4231284 +134,554,322767 +205,557,28691 +28,594,11702793 +162,597,131188 +92,607,1091090 +152,624,182954 +179,625,66255 +225,626,8121 +144,633,218591 +169,636,100862 +96,647,893889 +93,651,1039367 +85,664,1352646 +11,666,48673656 +111,686,602468 +161,689,135903 +35,693,7123124 +20,722,22187796 +237,723,4620 +132,733,328377 +105,750,735077 +95,758,1010984 +135,766,322406 +70,778,2157999 +7,785,82756525 +75,786,1933759 +140,806,276830 +156,809,171639 +76,822,1928071 +8,830,71201569 +188,841,52998 +69,847,2174797 +5,862,102003847 +119,936,477351 +59,944,2990567 +207,945,27327 +174,963,90726 +209,965,25168 +82,989,1684724 +128,991,393721 +29,1023,11625728 +9,1039,60773093 +36,1040,6807047 +40,1052,6131889 +100,1058,811470 +68,1079,2218970 +104,1096,752682 +26,1108,13489103 +192,1127,48333 +10,1128,54959104 +123,1140,443639 +41,1148,5970530 +121,1161,473253 +193,1163,47907 +221,1166,11063 +216,1170,19000 +110,1209,635798 +43,1226,5653666 +52,1232,3588148 +178,1247,66890 +143,1258,223069 +229,1261,6352 +235,1275,4979 +122,1278,462546 +50,1293,3808642 +84,1312,1606187 +195,1317,46103 +149,1333,191510 +25,1336,15231713 +167,1338,113618 +165,1347,125244 +147,1357,197411 +91,1368,1114375 +181,1372,64564 +42,1376,5740497 +190,1389,51599 +97,1399,860657 +14,1411,37052780 +146,1416,204671 +80,1418,1755743 +202,1421,32137 +127,1423,401050 +223,1428,9859 +114,1431,587311 +108,1432,665488 +219,1448,16361 +102,1456,769792 +250,1460,381 +88,1466,1198208 +215,1470,20287 +131,1477,358617 +23,1480,17353003 +79,1483,1762582 +212,1484,22040 +211,1494,23237 +163,1498,126061 +6,1523,92201588 +184,1526,60390 +46,1528,5076313 +94,1530,1014380 +197,1535,44982 +242,1538,3192 +139,1551,283986 +185,1573,56269 +239,1582,3932 +220,1585,13591 +228,1588,6522 +208,1590,26580 +53,1597,3485788 +164,1599,125295 +120,1602,475515 +171,1609,97442 +191,1610,48607 +27,1621,12298812 +240,1626,3909 +138,1627,302691 +247,1636,711 +113,1638,591912 +251,1643,282 +206,1645,28423 +148,1648,194797 +72,1651,2038539 +243,1652,2854 +241,1656,3203 +155,1657,176879 +214,1669,21765 +232,1672,5467 +170,1680,97513 +196,1681,45091 +182,1683,63279 +166,1687,117365 +218,1690,16936 +177,1691,73692 +255,1692,34 +126,1700,428112 +254,1705,62 +230,1715,6260 +183,1716,61350 +224,1721,8254 +106,1724,708479 +226,1727,7801 +238,1729,4434 +180,1734,64596 +157,1735,165821 +160,1737,139080 +176,1740,81019 +136,1745,316265 +198,1750,43707 +259,1753,2 +256,1754,10 +249,1755,395 +246,1757,1278 +203,1758,30731 +194,1763,46590 +253,1770,124 +187,1771,54425 +236,1772,4774 +257,1777,10 +252,1779,207 +58,1780,3113092 +258,1783,2 +244,1785,1409 +231,1793,5563 +213,1797,21860 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_sup.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_sup.txt new file mode 100644 index 0000000..49e7f53 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/kill_sup.txt @@ -0,0 +1,1421 @@ +703,6948,48733 +449,17714,230726 +36,33900,4381045 +668,50930,61991 +965,61791,6330 +996,82782,5051 +977,87575,5983 +927,89637,9160 +852,113796,16088 +1125,118121,1361 +869,192947,14414 +899,195249,11494 +1203,197581,345 +1112,205821,1551 +58,225023,3108663 +504,254937,171203 +92,272173,2371312 +1332,281866,10 +1115,289542,1530 +1052,301602,2740 +607,310729,96237 +617,335509,89881 +1308,337137,19 +120,356642,1860486 +1150,361125,923 +1195,364126,381 +129,393668,1667843 +495,466800,176701 +752,477415,34997 +1336,483145,9 +1159,545152,839 +503,556154,171219 +1328,583500,11 +1396,591733,2 +1417,602408,1 +70,606407,2837286 +1291,606706,33 +1387,634848,2 +517,692803,155210 +678,724621,58698 +1249,745946,105 +629,758104,82443 +1280,762975,45 +681,765188,57474 +1293,796977,31 +151,828637,1502240 +4,873575,11278909 +847,878961,16678 +736,879782,38847 +1372,896355,3 +609,915113,93378 +1357,921888,5 +452,926823,222853 +533,940693,142122 +817,942959,21555 +749,951823,36224 +723,959179,42282 +1154,960100,884 +59,1006847,3075398 +1407,1015528,1 +436,1018357,247556 +1238,1020792,157 +1117,1021709,1498 +1061,1049851,2601 +1053,1079223,2732 +202,1086351,926550 +973,1095271,6161 +470,1095489,198215 +500,1096254,173244 +1413,1205898,1 +1215,1227918,287 +43,1238300,3695279 +538,1267913,137355 +1231,1270916,207 +1390,1276665,2 +912,1286008,10264 +1167,1350456,681 +1392,1371998,2 +787,1415009,27577 +1304,1415665,21 +299,1424656,529314 +113,1434753,1968371 +1021,1450352,3811 +28,1497168,4780202 +1082,1510264,2161 +68,1536231,2861273 +226,1536625,785349 +219,1553947,817343 +400,1563417,316564 +416,1601917,283904 +588,1606425,103635 +1193,1608563,398 +842,1609607,16885 +1034,1647052,3286 +1140,1675628,1074 +697,1700145,51277 +725,1715091,42124 +421,1746216,276081 +802,1767876,24304 +1315,1782523,16 +72,1804724,2822735 +1161,1809381,792 +1345,1809943,6 +1101,1827485,1777 +424,1830149,261766 +1321,1861962,14 +1303,1867161,21 +1313,1889913,17 +1121,1895081,1384 +341,1900364,426037 +360,1990750,392780 +271,2044462,607889 +1209,2051721,318 +383,2065730,346824 +549,2083273,131111 +600,2135129,99122 +1418,2232973,1 +568,2262902,120110 +1412,2269943,1 +191,2289134,1011820 +197,2293376,941883 +1364,2297431,4 +1016,2308351,4000 +695,2323859,51537 +1190,2345447,432 +1242,2357773,135 +1416,2362058,1 +1148,2371436,934 +451,2392791,224550 +215,2411854,857060 +170,2415972,1288252 +593,2418002,102757 +885,2418364,12897 +1176,2422415,581 +550,2453888,130479 +1095,2467370,1876 +206,2502956,889984 +324,2559569,455981 +1225,2571407,234 +1162,2571536,789 +1260,2575842,78 +24,2585846,4914172 +1292,2591538,31 +742,2595542,37333 +358,2600387,404192 +119,2665207,1862083 +661,2692494,65496 +987,2725721,5497 +1404,2730335,1 +1204,2798385,342 +1205,2800032,336 +171,2808172,1274380 +346,2873154,416189 +901,2972329,11165 +1027,2976468,3534 +932,2999957,8835 +1369,3024357,4 +1289,3057381,35 +473,3108144,195165 +710,3136062,45239 +998,3181712,5034 +1070,3264534,2414 +805,3295619,23692 +934,3298902,8560 +986,3319611,5534 +660,3340647,66453 +881,3345943,13784 +1208,3364735,320 +1353,3365981,5 +962,3377827,6614 +758,3395817,33261 +329,3411571,448692 +582,3428961,106834 +1118,3430969,1415 +142,3454753,1556941 +1029,3467919,3416 +418,3475079,281122 +105,3484132,2125442 +282,3502565,575494 +1349,3589487,5 +521,3600737,150233 +29,3613413,4771637 +762,3639628,33102 +1088,3652727,2082 +1381,3668212,3 +1333,3692413,10 +234,3698627,759938 +474,3734803,194744 +791,3739202,26884 +1421,3760848,1 +677,3781794,59267 +830,3842862,19145 +760,3860614,33128 +48,3909522,3494426 +203,3933666,911772 +352,3972413,410810 +91,5991728,2375834 +213,5997814,865269 +1339,6046368,8 +1340,6046743,8 +1077,6078176,2263 +1096,6083448,1872 +1012,6101033,4194 +144,6116940,1553402 +942,6118079,8087 +875,6131106,14134 +698,6136757,50996 +318,6160655,468430 +439,6169408,245474 +1326,6174010,12 +65,6180190,2922076 +498,6186491,173656 +864,6212605,14982 +777,6242167,29924 +218,6258092,817951 +469,6276419,200063 +590,6284929,103544 +995,6299408,5130 +776,6301789,29960 +821,6308670,20316 +1043,6326324,2998 +868,6330147,14565 +625,6343784,85354 +235,6354098,759781 +181,6384450,1103220 +1271,6395848,58 +795,6414286,25086 +1409,6416213,1 +731,6417987,40281 +658,6425087,67727 +284,6510480,574249 +611,6520732,92249 +820,6528152,20586 +1211,6541079,307 +494,6606543,176773 +1030,6618608,3360 +411,6625437,297777 +1038,6647535,3079 +1023,6674092,3688 +1276,6795280,46 +20,6818593,5390806 +527,6822957,146788 +46,6853693,3529767 +862,6857973,15140 +1032,6870350,3351 +702,6882236,48782 +35,6910361,4389969 +83,6920960,2480125 +815,6921135,21922 +348,6923061,413869 +1237,6925574,159 +923,6927748,9554 +456,6929240,218897 +14,6936607,6482116 +97,6948793,2260828 +1319,6956104,15 +642,6986891,75862 +1256,7007969,90 +882,7012651,13605 +410,7013660,299790 +663,7038651,63898 +672,7047342,59814 +1318,7069895,15 +909,7085502,10480 +204,7085510,900365 +565,7092442,121767 +618,7098955,89567 +747,7125212,36861 +111,7139820,2003779 +860,7142659,15241 +537,7150939,138148 +441,7154207,242505 +955,7157316,7301 +729,7158871,40848 +615,7181335,91001 +233,7183372,760155 +1245,7221139,126 +554,7226782,129155 +103,7249451,2201128 +1307,7259690,20 +102,7271812,2216895 +827,7287342,19552 +246,7318415,721628 +212,7318949,869419 +606,7333216,96311 +1120,7337110,1396 +546,7340529,131946 +1268,7346797,63 +73,7349282,2818740 +1393,7365299,2 +291,7386358,561957 +1170,7394371,624 +989,7409475,5445 +199,7417116,935075 +1110,7418168,1575 +1178,7428666,558 +133,7449254,1633897 +179,7462660,1147591 +354,7491093,407440 +1288,7494178,35 +558,7494497,127603 +1218,7499430,265 +1200,7508390,362 +1302,7518529,22 +479,7528491,191015 +1133,7530708,1155 +263,7540891,649359 +61,7555180,3053132 +1132,7559093,1167 +960,7563185,6864 +25,7581876,4847442 +621,7588382,87850 +108,7589468,2100926 +1172,7590135,620 +1003,7646152,4585 +573,7651093,117073 +640,7675610,76132 +944,7695478,7957 +988,7695659,5489 +1257,7699382,89 +1239,7733128,157 +174,7756002,1259096 +166,7758085,1323046 +829,7765098,19437 +1228,7775311,214 +828,7781236,19441 +45,7829201,3545406 +1006,7842579,4441 +222,7860453,805889 +1386,7897925,2 +774,7970506,30076 +584,7973893,105899 +56,7976264,3129496 +745,7985956,37004 +529,7995033,145732 +1008,7999103,4340 +128,8000875,1686105 +180,8004076,1116667 +690,8013349,54167 +566,8048374,121389 +216,8078914,854046 +277,8096537,588570 +54,8099868,3303897 +859,8123790,15248 +1139,8128478,1078 +769,8138506,32382 +37,8153179,4202695 +433,8153941,249142 +74,8155296,2805192 +608,8167837,94017 +325,8175236,453722 +466,8184383,202176 +306,8191129,514380 +10,8199417,6913992 +53,8201460,3309232 +438,8218433,246379 +964,8224678,6391 +1382,8259895,2 +319,8268010,464671 +1324,8288459,13 +807,8320319,23286 +866,8323711,14696 +863,8325700,15122 +624,8337151,86108 +1013,8366045,4164 +719,8369561,42661 +116,8369778,1935593 +1296,8408007,27 +256,8419570,664286 +911,8423835,10283 +253,8428196,681873 +1080,8438707,2251 +891,8444356,12377 +454,8459255,220696 +921,8478874,9708 +1335,8483719,9 +1284,8501514,40 +670,8502135,60876 +1299,8503255,23 +241,8513699,736044 +39,8539216,4068942 +1207,8541236,327 +1341,8574922,7 +1230,8588789,210 +1214,8593382,294 +163,8607734,1350626 +948,8609713,7700 +185,8612358,1073018 +131,8627359,1640858 +229,8630972,768617 +192,8632462,1011778 +247,8649412,718058 +211,8654156,877088 +956,8662264,7260 +332,8665783,443350 +303,8674163,522493 +701,8675636,49109 +797,8677963,24677 +780,8698728,29124 +1141,8699429,1058 +1398,8708728,2 +240,8710047,740743 +1414,8720321,1 +1226,8724192,233 +321,8729672,459090 +315,8740199,479546 +509,8742874,165699 +1232,8752714,188 +1153,8753956,886 +1111,8758298,1575 +1036,8760563,3121 +198,8779575,939440 +897,8785314,11613 +90,8788366,2382573 +994,8796215,5138 +634,8811880,79998 +368,8812550,372360 +574,8815749,116281 +1156,8839171,880 +7,8841266,9140398 +422,8842936,262836 +153,8847546,1470195 +1212,8876551,306 +938,8877156,8354 +843,8890793,16853 +388,8895532,333863 +753,8900955,34715 +1347,8907258,6 +160,8908002,1401833 +784,8925695,28026 +330,8954402,447224 +822,8963720,20179 +195,8966820,975573 +373,8967440,362794 +1244,8970390,129 +925,8976313,9307 +480,8980651,190732 +1014,8997874,4085 +926,9000253,9263 +637,9003698,78158 +979,9014108,5914 +1329,9016464,11 +389,9016560,331068 +200,9021920,934983 +227,9023703,783100 +362,9029928,388928 +810,9031705,22738 +122,9037756,1816364 +597,9043233,100400 +244,9047658,728079 +539,9048764,137056 +135,9057880,1603410 +345,9060641,417448 +208,9060885,884996 +1179,9067168,536 +1262,9091557,73 +392,9094538,328148 +1266,9095581,65 +508,9096738,165850 +333,9101574,441777 +649,9103424,72799 +526,9106642,147550 +643,9113064,75562 +1198,9120206,368 +545,9148043,133472 +856,9151549,15750 +547,9154293,131875 +220,9154820,817274 +94,9167250,2362611 +740,9174887,37799 +172,9180206,1270564 +351,9182487,412274 +316,9186126,479284 +339,9186877,430630 +62,9188016,3043062 +1379,9191031,3 +768,9195661,32479 +759,9199885,33236 +1011,9225795,4215 +520,9228039,152990 +873,9235561,14163 +55,9236866,3199537 +444,9238175,235756 +323,9239515,457884 +890,9240154,12406 +990,9257513,5437 +1069,9260447,2420 +836,9266092,17676 +15,9272054,6026032 +1171,9277642,622 +12,9280477,6764550 +1108,9280679,1608 +1370,9282669,3 +861,9282974,15198 +69,9291984,2847942 +1149,9292037,930 +93,9299539,2366034 +603,9314079,98659 +1395,9318449,2 +86,9319058,2429993 +238,9320272,745107 +397,698143931,321132 +221,698147372,814984 +803,698147969,24237 +1,698152377,29904374 +1114,698152498,1542 +130,698160606,1643215 +894,698162312,11992 +490,698167138,181253 +1306,698169715,20 +684,698171150,56228 +1104,698187023,1686 +562,698191218,123607 +18,698215322,5528999 +21,698231772,5056785 +570,698232227,118084 +419,698239813,280089 +279,698241117,577489 +1177,698264828,576 +1362,698273555,4 +876,698278542,14134 +34,698285444,4541590 +1137,698290319,1107 +280,698290577,576974 +575,698295651,115703 +872,698305474,14214 +613,698338524,91766 +796,698342159,25012 +60,698350371,3058606 +140,698353083,1560531 +57,698361257,3121258 +289,698364331,565279 +1286,698373265,36 +405,698388578,311713 +902,698416970,11040 +121,698420691,1841071 +512,698442418,164062 +1277,698457392,46 +298,698462285,535670 +645,698477883,75321 +1059,698485268,2638 +903,698486277,10911 +236,698489071,754425 +1186,698519133,467 +1175,698540331,603 +403,698545981,315736 +1258,698548451,88 +314,698562644,480317 +841,698580310,16899 +336,698585370,439500 +100,698588535,2234459 +585,698588812,105559 +741,698599365,37679 +292,698613394,560009 +356,698620694,405626 +80,698625834,2715345 +450,698630507,225127 +71,698635863,2823129 +150,698641566,1509606 +662,698650301,64198 +370,698652014,368586 +814,698652171,21968 +23,698659980,4943092 +499,698663855,173564 +652,698666810,70284 +465,698670524,203110 +1197,698677650,378 +487,698680806,184813 +904,698692141,10805 +1055,698701911,2706 +704,698702991,48687 +77,698704189,2767363 +984,698704875,5635 +492,698723158,178588 +838,698736778,17434 +31,698739350,4649847 +985,698748891,5610 +556,698757439,128199 +1314,698766369,16 +1391,698766454,2 +99,698768565,2247390 +265,698769107,631670 +1351,698776998,5 +27,698786826,4820324 +327,698789253,450524 +1384,698806018,2 +269,698807570,617743 +858,698811281,15646 +268,698823542,621967 +337,698826986,437750 +335,698829590,440149 +1057,698837993,2689 +552,698845189,130293 +1233,698848067,188 +1168,698848373,641 +572,698849979,117220 +1146,698855681,960 +430,698867446,254403 +232,698867483,763529 +357,698879638,404605 +639,698881022,76318 +89,698884287,2392381 +1240,698895940,153 +417,698908184,282270 +1373,698908912,3 +694,698916948,51741 +1145,698926585,996 +980,698934729,5913 +40,698962117,4030320 +66,698971484,2884354 +602,698987598,98722 +644,698993706,75426 +223,698999105,801133 +353,699016994,408097 +1243,699025262,131 +945,699034094,7932 +1221,699037086,247 +999,699039013,5010 +123,699054373,1808141 +1371,699057459,3 +1305,699058253,20 +423,699065686,262122 +1067,699066118,2486 +309,699072129,501837 +267,699083129,625744 +818,699086436,21466 +813,699088529,22013 +63,699088769,3022941 +125,699097885,1739304 +33,699098531,4591710 +833,699099385,18187 +297,699099811,538722 +711,699111651,44736 +708,699117178,45547 +908,699117992,10680 +374,699121671,360259 +915,699121777,10186 +1130,699126484,1184 +887,699127546,12691 +855,699139964,15914 +76,699146580,2781268 +1044,699150527,2973 +1248,699156456,115 +106,699170684,2123558 +259,699176234,655688 +13,699189792,6569919 +928,699191449,9140 +896,699191455,11859 +917,699191464,10082 +765,699194766,32989 +431,699195358,252849 +846,699196829,16729 +402,699199084,315898 +732,699204478,40239 +369,699208929,368851 +164,699213622,1344703 +571,699238479,118069 +699,699246032,49348 +274,699250676,597860 +210,699262350,880157 +96,699265922,2269824 +633,699266530,80024 +38,699269923,4183414 +664,699272633,63414 +540,699272880,136746 +347,699273451,416045 +429,699277039,256140 +751,699278528,35036 +592,699280514,103273 +343,699283869,420497 +1217,699284822,271 +1327,699285160,11 +156,699287032,1450554 +671,699298370,59839 +67,699299123,2874047 +1126,699301458,1320 +536,699304554,138996 +946,699308637,7763 +326,699316421,450592 +1163,699319395,779 +275,699320017,594074 +991,699321518,5309 +147,699323302,1528005 +1124,699326171,1369 +308,699333701,506130 +30,699336777,4709428 +669,699341889,61136 +8,699342219,8991357 +712,699343887,44450 +950,699346267,7611 +372,699346280,363372 +748,699347951,36845 +408,699351301,308431 +231,699355601,765735 +1269,699356968,61 +109,699364813,2039012 +154,699368887,1456138 +446,699372829,234957 +674,699373225,59537 +114,699373599,1960794 +1394,699375903,2 +778,699377151,29743 +553,699377401,129968 +409,699379895,304728 +44,699380607,3642937 +1085,699380621,2104 +51,699382126,3324324 +173,699383121,1261911 +177,699383279,1176451 +478,699385139,191587 +756,699390457,34024 +254,699393742,678200 +693,699393759,52009 +1350,699396429,5 +285,699402816,573852 +1343,699405877,7 +707,699406247,45769 +1092,699406750,1951 +983,699406776,5744 +447,699408669,234275 +812,699409420,22460 +217,699413040,824449 +501,699413581,172813 +1235,699424741,166 +290,699425709,564133 +162,699429153,1355881 +264,699431255,644647 +816,699432672,21559 +107,699433558,2109535 +851,699441366,16132 +75,699443920,2797975 +551,699448276,130448 +1183,699449946,482 +1127,699471829,1318 +614,699478692,91260 +831,699483429,19135 +138,699485250,1569981 +971,699488108,6217 +169,699491076,1306628 +767,699493750,32479 +445,699494480,235307 +42,699494488,3853480 +1352,699501322,5 +595,699509239,102111 +620,699509284,88250 +898,699510045,11512 +141,699510259,1558517 +2,699513260,20061036 +155,699516250,1453641 +366,699523631,376994 +757,699524362,33643 +261,699524891,652166 +112,699545762,1983808 +434,699548295,248090 +237,699552859,750968 +1143,699554427,996 +619,699556684,88438 +580,699562182,108344 +1334,699562874,9 +32,699567608,4620534 +1180,699569800,532 +544,699573053,134664 +493,699574408,177367 +834,699576407,18024 +1188,699576978,450 +1078,699578606,2260 +505,699580120,170989 +462,699583677,209325 +1420,699588526,1 +610,699589540,93292 +310,699595556,500882 +1083,699598396,2140 +667,699598425,62024 +1261,699600167,76 +794,699600855,25213 +689,699603116,54862 +959,699604515,6939 +136,699605333,1588083 +1196,699611673,378 +1312,699620730,17 +1007,699621601,4345 +541,699628084,136588 +809,699644054,22748 +1138,699644852,1102 +1116,699650981,1516 +910,699656989,10287 +1290,699657450,34 +124,699658023,1787696 +184,699660539,1082780 +713,699664910,44192 +929,699665031,9092 +407,699665152,309449 +1009,699671197,4270 +472,699671454,196159 +514,699674355,162724 +406,699676005,309874 +1033,699678739,3314 +1366,699679662,4 +1380,699684062,3 +1301,699684693,22 +1365,699693687,4 +870,699694284,14358 +506,699695167,169646 +52,699697558,3315834 +557,699698079,127651 +443,699698253,238460 +228,699699601,770781 +939,699699650,8337 +1166,699703295,695 +104,699703642,2173011 +391,699703782,329781 +242,699704542,734381 +650,699705601,72254 +953,699706047,7390 +1267,699706955,64 +176,699710633,1214463 +1087,699711723,2087 +342,699711926,424812 +728,699712422,41064 +755,699713515,34117 +957,699716785,7238 +773,699718269,30173 +576,699722599,114655 +188,699723284,1018680 +182,699725436,1094169 +638,699726660,76808 +175,699728159,1249081 +1415,699728266,1 +700,699730998,49298 +427,699733098,256738 +399,699733501,316762 +790,699734152,27107 +785,699734445,27895 +886,699734795,12838 +307,699735020,506458 +17,699736927,5823680 +507,699736959,168077 +239,699737356,741146 +364,699738350,381199 +1359,699744012,4 +359,699744766,393297 +1155,699745265,881 +1123,699751062,1382 +381,699753640,348408 +47,699756210,3522220 +1227,699758688,215 +448,699759128,232322 +1399,699760767,2 +139,699761749,1562384 +1300,699763225,22 +976,699765971,6096 +146,699777234,1537082 +1185,699777372,467 +612,699777556,91869 +387,699778028,337570 +209,699778867,883465 +889,699780873,12457 +804,699781390,23971 +1338,699781605,8 +50,699781762,3394758 +849,699783063,16471 +363,699783765,385964 +6,699784536,9767824 +87,699785935,2415765 +350,699788305,412554 +935,699790202,8557 +1355,699791054,5 +782,699794286,28600 +455,699794765,219464 +426,699795378,260084 +148,699796330,1525589 +502,699797508,172503 +627,699797805,83388 +255,699799629,673874 +734,699800377,39460 +1068,699800992,2427 +878,699802012,13906 +705,699803070,48364 +823,699804790,20157 +733,699805379,39934 +371,699805839,368236 +798,699812007,24650 +1199,699812351,362 +1316,699812571,15 +1374,699812653,3 +117,699814283,1927982 +1213,699816699,303 +737,699820572,38829 +1039,699821629,3060 +1375,699823490,3 +722,699825089,42526 +1287,699825236,36 +344,699827112,418713 +16,699828442,5996348 +26,699828685,4831366 +789,699829494,27191 +1247,699829916,121 +1216,699831860,273 +334,699832463,441183 +974,699833171,6133 +414,699834004,291261 +1385,699837483,2 +420,699837826,279345 +806,699843417,23652 +761,699844594,33121 +879,699844727,13822 +1050,699845400,2804 +654,699846892,68694 +248,699849210,714338 +305,699850967,518013 +940,699851345,8257 +460,699851426,214212 +49,699851427,3411085 +1282,699852080,42 +1342,699854312,7 +134,699854484,1614664 +1368,699854830,4 +85,699856962,2453271 +972,699857387,6193 +1219,699858313,262 +559,699859013,126920 +1323,699860418,13 +1275,699861004,46 +365,699864013,378197 +437,699866225,246398 +458,699866510,216657 +764,699867602,33010 +3,699868002,13527748 +302,699869682,527430 +844,699870923,16831 +1058,699872616,2688 +1377,699873141,3 +1107,699875132,1620 +682,699875213,56566 +931,699876345,8872 +1075,699876746,2300 +720,699878150,42616 +126,699878511,1722966 +525,699879556,148254 +428,699879927,256527 +967,699880701,6284 +137,699883079,1583285 +1119,699884788,1409 +518,848883237,153789 +293,848883684,559642 +1022,848883791,3718 +278,848886056,579392 +1079,848886870,2259 +294,848886973,556192 +1184,848887199,470 +683,848889556,56530 +880,848889850,13788 +1031,848890012,3351 +1169,848892804,631 +968,848895676,6265 +186,848896948,1065615 +187,848899726,1059697 +632,848902744,80740 +919,848903260,9795 +587,848903690,103683 +1259,848905770,80 +361,848909464,391489 +1109,848910122,1592 +320,848912265,460795 +845,848912772,16827 +1234,848912937,183 +398,848913030,317398 +287,848913037,565501 +168,848913998,1318832 +390,848914661,329848 +1105,848915032,1663 +64,848915531,2939529 +41,848915730,3909370 +1348,848917127,6 +978,848917401,5962 +799,848917570,24624 +22,848918380,4959681 +1018,848921536,3945 +770,848921793,31735 +924,848921861,9441 +1263,848922958,68 +1131,848923540,1180 +598,848924219,100338 +1102,848925840,1771 +313,848926293,486891 +906,848927262,10733 +531,848928486,142622 +666,848928624,62142 +245,848930111,727210 +435,848932879,247873 +916,848933470,10175 +258,848934935,657120 +779,848935020,29401 +257,848935389,663649 +1311,848936053,17 +1084,848937248,2119 +380,848945529,349908 +1223,848946608,238 +963,848946700,6596 +1400,848949271,2 +1136,848953066,1108 +165,848955783,1327668 +149,848956513,1520545 +88,848956765,2395757 +1026,848958556,3568 +1086,848960061,2103 +386,848967422,337911 +189,848967710,1018366 +201,848971079,931519 +1045,848973715,2874 +1093,848974774,1934 +1047,848975192,2842 +1273,848977412,53 +824,848977600,20095 +679,848977649,57783 +312,848977748,492996 +1064,848978052,2533 +440,848978297,243378 +1206,848978903,330 +920,848980237,9740 +1066,848981726,2509 +376,848985692,358092 +496,848986287,175209 +738,848986638,37862 +252,848987051,687812 +1151,848988401,913 +1071,848988744,2382 +1147,848993505,935 +110,848995242,2008139 +442,848995478,242363 +1279,848998530,45 +555,848999671,128823 +1419,849000135,1 +676,849001277,59373 +95,849001572,2288005 +152,849001724,1481187 +696,849002091,51323 +569,849002796,118378 +524,849004274,148516 +528,849004759,145861 +716,849006011,43207 +564,849006145,122180 +523,849006412,148973 +883,849009623,13527 +322,849009945,459024 +270,849010255,614331 +118,849012521,1885370 +511,849012843,164814 +482,849012985,189408 +530,849014147,143486 +393,849014413,326062 +243,849014922,734363 +1265,849017894,67 +5,849018239,11013906 +982,849018442,5848 +1367,849018780,4 +715,849020094,43605 +1403,849020212,1 +1406,849020667,1 +1056,849021566,2696 +194,849023078,987333 +1191,849023212,428 +561,849023540,126081 +214,849026145,863552 +283,849027025,575253 +471,849027653,196328 +594,849027712,102406 +190,849028088,1016019 +19,849030226,5503338 +515,849031818,158211 +718,849031846,42897 +207,849032059,888764 +951,849032413,7578 +626,849032414,83794 +975,849032741,6133 +338,849034882,431966 +276,849035525,592996 +266,849035905,629167 +158,849037407,1436190 +78,849037469,2724908 +1310,849037699,18 +382,849040142,347277 +835,849040194,17745 +488,849041192,184669 +1344,849044961,7 +628,849045047,83274 +1019,849045675,3941 +1076,849045915,2288 +1295,849047044,27 +432,849048112,250453 +656,849048216,67853 +837,849048455,17656 +936,849048552,8520 +933,849048734,8575 +726,849048867,41982 +542,849049045,135971 +1122,849049155,1382 +874,849050191,14147 +1174,849050734,605 +800,849051436,24516 +647,849052549,74745 +1272,849052588,57 +1158,849053868,847 +548,849054582,131427 +143,849054951,1554166 +1194,849055181,391 +468,849055425,201714 +1317,849055527,15 +599,849056744,99981 +260,849057572,654823 +193,849057655,1002599 +578,849057764,112500 +510,849059457,165042 +286,849059491,569584 +1408,849060099,1 +395,849060446,325590 +115,849061374,1936850 +746,849061406,36891 +850,849062920,16256 +754,849063605,34520 +783,849063793,28429 +475,849063849,193695 +1024,849063932,3650 +1255,849064087,91 +161,849064614,1359309 +11,849064752,6767593 +355,849065697,405809 +1298,849066044,23 +467,849066125,202024 +1152,849066618,907 +249,849066849,710397 +675,849068108,59430 +586,849068662,104350 +763,849069022,33067 +1405,849070220,1 +532,849070335,142162 +721,849070464,42592 +394,849070946,326047 +534,849071545,141730 +1224,849072873,237 +750,849073156,35218 +865,849075836,14981 +692,849076515,52913 +914,849076678,10198 +581,849076810,106920 +1091,849078086,2009 +464,849078297,204054 +300,849078498,529115 +687,849080011,55361 +771,849080702,31415 +1401,849081641,2 +848,849082154,16642 +1325,849082580,13 +709,849082839,45349 +1187,849082848,455 +892,849083294,12218 +349,849083501,412879 +900,849083534,11421 +1002,849083725,4660 +9,849084005,8965702 +1283,849084474,41 +82,849084740,2547348 +331,849084911,446182 +970,849084920,6254 +167,849084985,1319079 +589,849085605,103547 +1128,849085764,1293 +516,849085961,157504 +1144,849086357,996 +413,849086491,291894 +993,849086693,5169 +792,849087581,26684 +646,849087742,75281 +1015,849087786,4025 +157,849087855,1447733 +1051,849088101,2802 +101,849088243,2223889 +630,849088515,81559 +1251,849088639,102 +491,849089459,180510 +744,849089499,37257 +1297,849089601,26 +272,849089881,598862 +159,849090130,1414588 +1042,849090573,3002 +1165,849090765,748 +145,849091060,1546710 +839,849091084,17374 +659,849091105,66561 +79,849091769,2720057 +301,849091866,528021 +941,849091897,8254 +379,849091899,350513 +714,849091947,43641 +641,849092309,75985 +1285,849092639,38 +596,849092685,101263 +304,849092723,520040 +673,849092769,59736 +459,849092827,214704 +461,849092978,213232 +635,849093003,78694 +98,849093422,2251469 +81,849093426,2633273 +877,849093576,14070 +486,849093742,185120 +1309,849093771,18 +691,849093875,53200 +665,849093924,62942 +788,849094023,27560 +127,849094067,1694535 +706,849094147,47364 +981,849094586,5907 +425,849094603,260774 +686,849094609,55451 +949,849094653,7618 +1040,849094972,3027 +616,849095014,90932 +250,849095068,705427 +311,849095227,494690 +384,849095240,346373 +1094,849095376,1927 +377,849095435,355077 +1270,849095446,61 +396,849095448,322323 +273,849095482,598079 +1004,849095488,4532 +1164,849095509,758 +727,849095599,41428 +1220,849095601,254 +1010,849095778,4218 +811,849095800,22483 +1103,849095825,1720 +1074,849095879,2307 +739,849095948,37817 +457,849095959,217053 +1097,849095963,1840 +224,849095992,800266 +895,849096041,11977 +1135,849096102,1119 +1264,849096123,68 +262,849096215,650384 +1062,849096285,2597 +1025,849096310,3636 +1065,849096334,2520 +178,849096354,1175314 +317,849096383,478046 +1389,849096399,2 +937,849096454,8404 +591,849096458,103282 +735,849096544,38925 +477,849096547,191589 +793,849096592,25279 +1001,849096594,4678 +84,849096606,2454536 +992,849096631,5309 +871,849096649,14228 +786,849096768,27759 +840,849096856,17208 +577,849096874,112568 +281,849096882,576857 +1254,849096891,97 +1252,849096944,101 +225,849096945,788466 +947,849096958,7723 +648,849096972,74552 +854,849096977,15944 +775,849096979,29968 +328,849097002,450495 +415,849097103,290873 +583,849097175,106339 +404,849097220,315363 +1274,849097357,51 +1397,849097370,2 +954,849097386,7313 +483,849097614,188844 +730,849097716,40321 +819,849097737,20665 +489,849097799,183645 +997,849097837,5044 +717,849097898,42973 +631,849097937,80991 +801,849097954,24440 +825,849097981,19883 +884,849098109,13436 +1322,849098136,14 +1098,849098159,1838 +651,849098192,72158 +412,849098200,293715 +453,849098265,222194 +340,849098299,430210 +1060,849098374,2624 +655,849098387,68279 +401,849098400,316463 +1089,849098516,2064 +1099,849098557,1831 +484,849098628,187817 +1100,849098648,1791 +205,849098688,890263 +1294,849098693,29 +183,849098695,1088119 +1054,849098724,2724 +688,849098727,54906 +1229,849098731,210 +724,849098769,42206 +251,849098782,692318 +375,849098784,359388 +867,849098791,14681 +1049,849098822,2825 +1160,849098966,814 +680,849099021,57608 +966,849099105,6285 +969,849099138,6258 +1192,849099141,419 +463,849099160,206356 +943,849099258,7971 +367,849099276,375632 +1017,849099342,3966 +1337,849099434,9 +808,849099463,23265 +543,849099505,135058 +623,849099517,86647 +1356,849099541,5 +653,849099544,69844 +1134,849099558,1149 +1202,849099601,353 +295,849099640,546735 +1046,849099689,2870 +1081,849099696,2212 +907,849099785,10688 +1222,849099804,241 +888,849099815,12688 +826,849099864,19666 +132,849099876,1640011 +1388,849099887,2 +1000,849099924,4902 +1241,849099955,149 +579,849099965,111873 +476,849100082,192502 +196,849100149,963084 +563,849100246,123019 +535,849100262,140462 +567,849100323,120484 +497,849100349,175071 +905,849100383,10793 +560,849100406,126551 +1063,849100463,2583 +378,849100615,352525 +1281,849100656,44 +853,849100744,16051 +1250,849100760,103 +1201,849100782,356 +1181,849100787,499 +519,849100811,153677 +1210,849100882,314 +1253,849100994,97 +604,849101083,96446 +1106,849101104,1626 +1035,849101108,3243 +601,849101116,99044 +1383,849101144,2 +918,849101148,9830 +1037,849101162,3102 +961,849101186,6854 +622,849101205,86655 +1157,849101248,866 +743,849101276,37312 +1041,849101309,3009 +230,849101378,768201 +1048,849101391,2835 +1354,849101526,5 +485,849101579,185681 +685,849101580,55880 +522,849101604,149913 +1142,849101647,1041 +930,849101652,9088 +1072,849101674,2359 +922,849101694,9583 +1073,849101771,2330 +1246,849101871,125 +605,849101881,96356 +1189,849101884,441 +513,849101889,163772 +1020,849101947,3867 +1182,849101962,498 +288,849102068,565365 +296,849102092,542106 +952,849102108,7392 +1360,849102143,4 +913,849102464,10205 +1173,849102480,607 +893,849103148,12041 +1320,849103947,14 +1236,849104010,163 +766,849104328,32548 +781,849104356,28929 +857,849104546,15677 +1330,849104818,11 +1005,849105232,4500 +1113,849106612,1546 +481,849106785,190671 +1129,849107532,1222 +1402,849108007,1 +772,849108623,30877 +385,849108780,345009 +636,849108784,78257 +1378,849109413,3 +1376,849109637,3 +1278,849109795,46 +832,849110622,18386 +657,849110711,67742 +1346,849110743,6 +958,849111196,6958 +1358,849111231,4 +1361,849111487,4 +1028,849112029,3432 +1090,849112033,2061 +1331,849113480,11 +1363,849113595,4 +1410,849114445,1 +1411,849122297,1 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/player.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/player.txt new file mode 100644 index 0000000..fbebcfd --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/player.txt @@ -0,0 +1,3096 @@ +6948,Bosman7,214,1,209,2253 +17714,skobol,301,81,478566,275 +33900,Mwito,120,255,2320084,34 +40666,OcHnIK,0,1,26,2590 +42635,to+tylko+hastrat,0,1,26,2591 +50930,miki11,0,1,151,2351 +61791,Macp,0,5,30899,814 +82782,pinkiola,157,1,1731,1699 +87575,VEGE,594,2,10828,1061 +89637,Mabes,0,0,0,2855 +98294,Antek93,0,1,524,1995 +100452,hirek+58,778,1,2927,1523 +101074,Krnik,1724,2,6647,1226 +108256,fafex,1797,1,471,2026 +112401,%2ATrilesto%2A,0,1,2840,1539 +113796,mpiechu,291,84,639178,222 +117208,milupa3+and+IdziPR,432,1,6898,1213 +118121,MRFELEK,1226,4,38887,745 +122492,kybb,554,1,878,1880 +126954,robert72,234,2,5068,1313 +128346,peter3131,0,1,333,2124 +128353,lukaszking2,234,1,129,2397 +129795,skorbyk,554,1,560,1985 +131972,Ares85,234,1,1438,1751 +148405,wtkc,0,1,26,2592 +160513,obi+van+kenobi,0,1,4395,1368 +192947,Jedrol,594,1,2431,1582 +195249,Marcio7,1336,10,57536,663 +197581,malwin,1312,11,52117,681 +205821,Jamson,0,1,128,2403 +225023,GKS+TYCHY,7,173,1526969,79 +254937,ilia55,301,12,96487,547 +260666,oracz1,0,1,8435,1136 +272173,dracodarco,7,249,1961019,52 +281866,bob+25,377,3,3739,1424 +289542,Jori,1411,2,6780,1220 +301602,Luki80,29,11,70147,613 +310729,Wilczekhehe,0,2,8151,1147 +325491,Zbyszko+Zbogda%C5%84ca,0,0,0,2856 +335509,zuzel,59,1,1606,1716 +337137,Carlos75,210,1,26,2593 +356642,FKG007,47,224,1821919,60 +361125,max-94,31,3,11514,1050 +363280,majku,1627,2,4725,1347 +364126,Borys35,1466,9,52263,680 +366938,owen10,0,1,26,2594 +371910,Addamus,847,1,1903,1671 +378757,hajza,0,1,4338,1372 +382222,lechu33,847,1,1473,1739 +393668,Bonnie+i+Clyde,47,206,1810647,61 +412571,bomba1,0,0,0,2857 +439825,Pawelstryju,1096,1,1641,1709 +466800,leito2,1602,1,3854,1414 +470266,Pawe%C5%82+I+Wspanialy,1421,1,1674,1704 +477415,dudas1,85,89,921882,158 +478956,Sir+Zordon,0,11,59367,658 +483145,Krzysztof1215,1411,15,134562,486 +498483,Grucha125,1312,6,21159,903 +526350,Maxwell+3,375,1,2448,1579 +529552,matekstryju,0,4,27236,837 +542253,Tomek+7,0,46,237644,387 +545152,Bociek80,96,1,596,1972 +546458,Sindbad00,125,1,592,1973 +556154,SweetKimo,85,80,745810,192 +563544,arkow,0,1,1497,1736 +565043,nikita.11,0,1,640,1953 +566379,floraI,0,1,252,2205 +569790,relag06,647,1,7515,1183 +570100,kazek-+15,194,9,39958,740 +583500,pchelka75,1728,1,3440,1461 +584989,Iceeman,0,1,381,2086 +591733,ShOcK,1058,1,10021,1079 +602408,dracart,1312,5,16540,975 +603968,Dreddenoth,1724,1,2114,1632 +606407,BaNdzi0r,120,123,1054941,135 +606706,adam1961,1128,5,26953,840 +609384,Brbi,29,9,21701,894 +610196,Tomek+z+Tyyrra+X+Adam547,0,2,778,1908 +634848,izolator,847,9,47710,702 +662253,pluton1,210,1,209,2254 +671516,Hilwoz,1275,1,26,2595 +692803,maradona1006,35,183,1325583,94 +712216,toreno1,382,1,2203,1616 +724621,pele+z+zar,8,1,198,2273 +745946,kazio73,1523,8,47441,703 +747422,janush4,412,8,22924,885 +758104,kaszak10,35,68,598014,240 +762859,Mikkerland,0,1,269,2190 +762975,xxczesiaxx,847,7,16066,983 +763529,Destination1,0,7,42322,730 +765188,pablo99999,666,11,83261,575 +769293,fan+zmijki,0,3,16247,980 +796977,KOMANDOR+PIERWSZY,607,1,508,2008 +823987,Pietrucha2,1724,1,2843,1535 +828637,mklo12,1,221,2254486,40 +869195,Lord+Siekier,0,1,2357,1593 +873575,kathare,120,240,2432343,29 +878961,marus1000,106,1,8752,1123 +879782,Janxxv,291,69,616981,232 +881782,szymon12-95,0,0,0,2858 +896355,Grisza10,375,2,6531,1230 +915113,gex1992,830,5,28304,830 +921888,Deadshot,0,1,26,2596 +926823,luki0911,785,7,40875,735 +930720,Susdam,301,4,26795,844 +940693,Kartes90,0,0,0,2859 +942959,D.E.M.O.N,1140,19,98801,542 +944147,klos111,377,1,2828,1542 +947564,matusia300,0,1,3986,1402 +947923,Piotr-B,452,4,19487,926 +949279,niupiro,0,1,890,1870 +950985,yen3,0,1,3897,1408 +951823,PawJag,722,13,100479,538 +959179,mirkos44,1597,8,23308,879 +960100,Konstansja,1672,2,9572,1100 +1006847,niezwyci%C4%99%C5%BCony,1,217,1784943,63 +1015528,XXARDASS,0,1,126,2410 +1018357,Wujek+W%C5%82adek,301,15,132884,487 +1020792,rere1995,31,1,885,1877 +1021709,NewBetterSatan,1705,1,1671,1706 +1034117,Splendid606,0,4,6525,1232 +1043028,badadi+97,24,1,3283,1482 +1044760,Jatutuptup,159,1,400,2071 +1049851,Strojgniew,0,4,18838,936 +1078121,Damian283,0,11,79159,586 +1079223,elgordo,8,1,1708,1701 +1085802,golem6,1791,1,26,2597 +1086351,plls,291,54,296518,356 +1095271,HUBERTS111,59,1,2022,1649 +1095489,Mikares,1523,4,4207,1383 +1096254,marmag,106,11,81183,578 +1106220,mon-men,0,1,1472,1740 +1132842,bylo21,0,1,199,2272 +1153934,Butcher%2A,0,1,32,2584 +1164249,kukiz70,72,3,11249,1053 +1170102,miro2558,234,1,204,2265 +1205898,bolopb,1226,33,201999,415 +1227022,%C5%81ukasz80,0,1,1055,1833 +1227918,leslawos,1312,2,9789,1089 +1238300,messi1996,1,314,2617826,21 +1260088,czorny-81,1657,1,513,2006 +1267913,19Adrian90,68,8,25018,862 +1270916,%2AWalkiria,1096,5,37773,755 +1276665,krowabojowa,1735,7,24253,874 +1284796,joybook,125,1,681,1937 +1285441,markus72,1431,0,0,2860 +1286008,perfekcja,59,1,4000,1400 +1304915,Hasyp,1797,1,532,1991 +1322622,apysia,0,1,200,2270 +1323424,szymekXIV,847,5,17074,967 +1347385,Zephyr+II,0,1,4323,1374 +1350456,Jaruga007,8,1,198,2274 +1371998,pyari,847,1,2059,1645 +1384222,Gruby0905,0,1,515,2004 +1406042,erielle,365,1,8516,1131 +1415009,sony911,35,195,1395801,85 +1415665,White_Lady88,1735,0,0,2861 +1424656,Vecci,47,98,475967,276 +1434753,Ryba9431+x+Diil3r,369,87,855455,170 +1450352,PACYFICA,441,1,629,1960 +1454871,gandalffa,413,1,1374,1760 +1493696,roooob,1786,1,3883,1410 +1497168,Krulowiec+Wielki,47,236,2268558,38 +1510264,%C5%81okietek+II,0,1,4104,1391 +1511101,rafi041072,24,1,559,1987 +1517450,Ankalagon+Czarny,0,1,280,2179 +1525273,mrufki+komandoski,210,1,197,2279 +1536231,vip999,369,103,855860,169 +1536625,Spojler201,47,108,884241,165 +1553481,STALLON327,0,1,2112,1633 +1553947,Tryfi,85,31,299146,354 +1563417,DilerPL,301,11,94811,549 +1568700,wilku1000,339,1,2804,1545 +1568908,MIRLEON,285,1,291,2162 +1578509,arek1s,24,1,8119,1150 +1581890,Argeen,0,1,847,1888 +1601917,asiok79,301,103,653348,217 +1606425,Sullivan+IV,785,4,42012,732 +1608563,loj99,722,0,0,2862 +1609607,hydra,0,1,642,1952 +1610267,Jar0o,0,1,115,2434 +1626626,jedyny1taki,0,1,32,2585 +1631690,kukus1946,0,1,2284,1603 +1645835,c%C5%82opciec,0,0,0,2863 +1646837,grek159,1735,1,2492,1577 +1647052,Peny25,1226,10,45879,711 +1668965,Rychont,220,1,1091,1823 +1669587,Mateuszek023,0,1,998,1848 +1675628,Harmozabal,0,1,53,2539 +1684948,robosm3352,0,1,108,2445 +1693936,Bukson,1621,7,29862,819 +1700145,elew,24,1,2056,1647 +1715091,podgrzybek+brunatny,291,92,691782,207 +1746216,Szaku%C5%8223,1411,10,63788,639 +1748180,Mistrz444,234,0,0,2864 +1757722,Ludwik+3,0,1,175,2320 +1767876,Kenshipl,1039,10,54269,671 +1775957,Szczepan+1954,778,1,2637,1562 +1782523,piter357,778,1,6720,1223 +1794060,ten+kt%C3%B3ry+kroczy,0,1,121,2419 +1804724,szyymekk,7,72,702566,205 +1809381,Wiesiek19,0,1,368,2099 +1809943,wiech17,377,1,867,1885 +1827485,muflon1922,0,1,376,2093 +1830149,zbyszek2609,666,26,194317,422 +1831874,denver72,0,0,0,2865 +1861962,Karl+132,0,2,5266,1306 +1867161,snake0,1597,7,29065,828 +1867410,Vi-vali,0,1,236,2225 +1889913,Hanah1,33,1,230,2230 +1895081,Najemnik+full+light,607,6,21274,902 +1900364,Rublow,301,33,226329,398 +1924718,.o0krychu0o.,412,5,7067,1205 +1945202,Adrianzaq12wsx,0,1,26,2598 +1957280,zulus72,0,1,4166,1388 +1990750,xkikutx,1,126,1211057,110 +2020935,tunks,0,0,0,2866 +2044462,Diablo+90,0,0,0,2867 +2051721,Aragorn+Stra%C5%BCnik+P%C3%B3%C5%82nocy,0,1,1364,1764 +2061701,pablo1912,0,0,0,2868 +2065730,Farmie+Kombajnem,291,148,1329082,93 +2083273,adrianh3,8,1,26,2599 +2087251,kondziu.27x,991,0,0,2869 +2105150,zielonelody,1166,3,19291,932 +2130659,LukaseQxxD,847,1,374,2095 +2135129,ADAMCZYCY,291,101,832333,176 +2140084,poweju56,0,1,189,2300 +2162471,Tombar76,0,1,626,1965 +2177410,plazmi,1797,1,691,1933 +2210946,Simon118,1799,1,26,2600 +2213632,lukas1980,0,1,1317,1771 +2232973,izka1611,31,1,260,2199 +2245160,mruva,0,1,347,2113 +2246711,jurger,607,8,45523,715 +2256843,jaworbog,0,1,758,1914 +2262902,totmes21,862,14,68919,619 +2266562,K%40Ts,0,1,198,2275 +2268889,dj.B.M.P.,33,4,17399,963 +2269943,gabsaw,301,23,163715,448 +2289134,Julixx,7,52,42706,728 +2293376,szkiel1552,369,77,702240,206 +2297431,BANKMAN,1585,1,744,1916 +2308351,markoz73,1797,2,4882,1331 +2315542,AKIKU,517,1,886,1875 +2321390,RED54,1336,34,164171,447 +2323859,alexiej,301,54,235843,391 +2324569,Boginysa,1735,1,3265,1484 +2345447,slawomirec,33,1,302,2152 +2357773,BANAN+22,24,1,6050,1263 +2362058,Sir+Lewan,0,1,9069,1116 +2363165,puciaa,68,1,447,2042 +2365630,zkiw,451,1,173,2323 +2371436,jedrzej152,0,4,21917,892 +2392791,artur3416,1079,3,30581,817 +2411854,dezert8,77,1,1442,1750 +2415972,Quelus,1411,14,124165,497 +2418002,Markus2008,1148,23,125081,496 +2418364,Artifoks,1108,16,91405,559 +2422415,miodzik9669,0,1,380,2087 +2426019,riki30.1976,0,1,205,2263 +2443031,HOST999,0,1,3081,1501 +2453888,MatikB87,1700,34,181828,434 +2467370,marciniok1,377,1,5013,1319 +2485646,Mitze,0,1,3139,1495 +2491724,krzysiu1969,0,1,1750,1696 +2502956,Ziomecek,1,83,782905,186 +2512219,2+die+4,0,1,232,2229 +2514219,Dzymek10,1590,1,146,2357 +2516620,waski098,0,1,312,2142 +2559569,ivanov66,0,1,412,2063 +2569868,LOLA1982,0,1,1238,1785 +2571407,Legion+15,97,6,23599,877 +2571536,Calimera,33,1,206,2261 +2575842,ddd121,80,1,493,2015 +2585846,Arrkoo,120,277,2272051,37 +2591538,Aneta+2,96,1,426,2056 +2593568,aleksandro987,1724,1,423,2060 +2595542,mastaw,722,0,0,2870 +2600387,DeMoN00,862,3,27838,833 +2602575,palkoneti,0,1,328,2127 +2613743,skate4321,0,1,4708,1348 +2620389,JeGrzegorz,452,1,62,2525 +2646397,jagger23,441,1,3072,1505 +2665207,xyacqqqx,666,71,651017,218 +2684175,SzCzAkUs,1735,1,503,2011 +2692494,Rebel1995,432,1,26,2601 +2717161,smerf007,29,5,30942,812 +2723244,1gladiator,1700,9,19852,921 +2725721,rudi+jk25,1735,11,27871,832 +2727535,sajmon117,0,1,26,2602 +2730335,niki63,29,1,6828,1216 +2735370,wovi,989,0,0,2871 +2764337,Stefal-S22,441,1,841,1891 +2798385,bencu,0,0,0,2872 +2800032,kamilheros2,157,11,70121,614 +2801913,iagre,412,1,612,1966 +2808172,yogi+1,120,120,1141621,121 +2811353,%2Aworm%2A,0,1,3546,1450 +2811568,borowka73,29,1,408,2067 +2812197,bs160,523,1,280,2180 +2819255,Atillaa,0,1,4043,1397 +2819768,rycho100,965,1,1878,1678 +2837080,LadyVv,210,1,2086,1637 +2873154,Kozak+Wielki+5,301,51,281485,362 +2893211,lukiluki1200,0,2,719,1925 +2924071,lew+mis,0,0,0,2873 +2942206,Maniek28a,0,1,721,1923 +2972329,Bigbangs,0,13,106506,525 +2976468,tomnado,29,10,45276,717 +2980670,snajpiradlo,0,1,150,2352 +2999957,GRABIERZCA+1,35,52,408819,298 +3022364,romusz43,809,1,367,2100 +3024357,DETONATOR2010,385,1,5045,1315 +3027589,Daria+201,0,2,6485,1234 +3057381,waldi0227,33,0,0,2874 +3101080,saba13,0,1,638,1955 +3108144,Vandip,1621,32,197732,418 +3112100,Arletta82,0,1,104,2450 +3136062,emeryt224,0,0,0,2875 +3181712,Roman150,377,0,0,2876 +3185732,Wielki+Wezyr,0,1,2431,1583 +3264281,jankes630,0,1,73,2497 +3264534,Sosiq...,1456,1,10698,1064 +3295619,lubiszT0,0,1,162,2337 +3298564,arek22310,847,1,1914,1668 +3298902,Sejmion,412,5,24470,871 +3319611,niedzwiedz8807,1735,1,2955,1519 +3340647,Chaos.Black,432,1,9494,1102 +3342690,zyzok108,157,2,5794,1273 +3345943,dam111,546,1,50,2551 +3362925,Beast+Palladin,375,1,1082,1826 +3364735,Vesemir7,1140,7,65977,631 +3365981,Panoramix112,285,1,1701,1702 +3372959,wowo.ww,626,3,11298,1051 +3377503,Czarny+Hetman,68,2,704,1928 +3377827,Krasnal01,194,3,22866,887 +3395817,Aquarius12,1724,1,480,2023 +3409028,giza61,452,1,2895,1526 +3411571,asiulkaaa23,412,20,99838,539 +3428961,patrykoss93,0,1,26,2603 +3430969,Barret,210,1,1023,1842 +3441892,w%C5%82adca+smok%C3%B3w+2,234,0,0,2877 +3454753,Iker96,120,79,727758,198 +3462813,Arash1,0,1,195,2284 +3467919,Tomcio+Rycerz,1226,16,90341,563 +3475079,de+Talleyrand,785,29,121772,502 +3484132,wojtek1409,47,165,1365876,90 +3487721,BORKOS4,24,1,1731,1700 +3487933,Szujski+Mastess+Team,0,1,429,2053 +3499467,ciechu0m,187,1,347,2114 +3502565,Erupcja,1411,25,157010,455 +3518623,Deyna10,0,1,194,2288 +3529695,Don+Kargul,0,1,9163,1112 +3560281,joannaniel,1724,2,8037,1152 +3584298,RYCERZ+MA%C5%81Y,0,0,0,2878 +3589487,fazii2155,1226,18,88638,566 +3600737,elli38,309,54,344696,336 +3613413,and987,120,69,635257,224 +3631404,tedy1,96,1,393,2077 +3639628,Zoso2000,33,1,2198,1619 +3647080,MP1001,1797,1,1846,1684 +3647086,bruno+60,8,1,7100,1204 +3652727,sancus,452,1,2383,1589 +3667722,dziki71,412,1,1479,1738 +3668212,Warkilia,0,1,2203,1617 +3692413,Kiubi5,452,3,5910,1269 +3698627,Bystek7,47,95,794661,181 +3713020,Tytus+Africanus,317,1,4609,1354 +3734803,kokso420,0,1,26,2604 +3739202,Tryagain,301,1,4809,1339 +3743817,E+W+A,0,1,66,2515 +3750922,macp1,1528,1,2267,1607 +3760848,wiciu12,0,1,168,2330 +3762475,tomiil,435,1,4647,1351 +3773216,daro1974,0,1,222,2240 +3781794,977007,35,130,1025189,142 +3824463,KARY1988,1804,1,26,2605 +3840616,Arto135,0,1,74,2494 +3842862,M4TeK,281,3,5950,1265 +3860614,szaikan96,0,1,26,2606 +3895471,mikwojka,441,1,1997,1655 +3896657,robson351971,1735,2,3653,1433 +3909522,paawlo13,47,460,4003987,8 +3923887,Nogger14,0,1,765,1912 +3933666,damian0ss,0,26,159180,452 +3957237,DARO36,29,6,30986,810 +3969110,ferrekin,319,1,3153,1492 +3972413,bartekzdroj,0,1,3385,1471 +3973432,piotrus507,0,1,26,2607 +3986807,ORKORAN,129,15,20306,914 +3990066,AsconX,0,6,21319,901 +5989306,HENRYK321,0,1,377,2091 +5991728,hodowca1,1523,0,0,2879 +5997814,Frejas933,120,31,184766,430 +5999909,piper97,441,1,191,2295 +6001174,Mietusek22,117,1,7351,1192 +6002527,Dj+Burglar,24,2,6791,1219 +6021542,rycerzrzyk2000,0,1,26,2608 +6032352,wojtek1435,441,2,5422,1298 +6035425,HORTON,0,1,96,2468 +6046368,Moniq15,129,1,2405,1587 +6046743,Filters,412,1,2365,1592 +6048627,rojek1122,1745,2,15245,994 +6066254,tomek22863,0,1,93,2473 +6070734,--KEMPA--,0,1,26,2609 +6071567,Petro180,664,0,0,2880 +6078176,lech3838,96,1,120,2423 +6083448,rafalzak,441,1,1141,1807 +6101033,Smiatuniu,80,2,7762,1168 +6111938,krzysztof+wspania%C5%82y,29,1,4068,1396 +6116940,pi%C3%B3ro78,369,58,445415,286 +6118079,geoo,722,25,154431,462 +6121024,topolskia,33,2,11204,1054 +6127190,kuka1,106,10,24398,872 +6131106,pinqa,106,26,151194,466 +6135387,FreestylerWLKW,1724,1,1320,1770 +6136757,Kaffik,1226,15,97246,545 +6143689,vacik11,0,1,474,2025 +6145316,zabario1,375,0,0,2881 +6160655,Hubix55,301,36,263979,374 +6167751,wlamus61,1278,3,7237,1198 +6169408,Hasava,47,89,612880,234 +6171569,andrzej84,1411,6,19872,919 +6174010,MARCINEK+GRO%C5%BBNY,1599,1,369,2098 +6178803,shakeit1,0,1,26,2610 +6180190,Chcesz+remont%3F,7,296,2511447,26 +6186491,andrux,211,4,14930,1000 +6193337,smagi007,1312,1,887,1872 +6212605,ADAMUS75,106,25,155778,457 +6240801,MrTed,1312,8,38110,753 +6242167,colt9,0,1,26,2611 +6243588,deEdion,666,1,9777,1090 +6249486,REXMUNDI,0,1,3881,1411 +6249524,hornet9,0,1,26,2612 +6258092,tarcza55,47,124,1104200,125 +6262469,Muck123,1108,0,0,2882 +6270765,MoistVonLipwing,96,1,26,2613 +6276208,biesta,0,1,463,2029 +6276419,gerania,80,0,0,2883 +6284929,antenkay,33,1,1177,1795 +6294942,sendzia555,0,1,139,2373 +6296228,oleska2002,475,1,2999,1513 +6298409,Krzysztofeks16,0,1,182,2308 +6299408,tylos3,1293,10,55423,669 +6300771,PetC,1466,1,308,2148 +6301789,Ewelinaq,68,3,8317,1140 +6308670,Artemida-21,0,0,0,2884 +6310214,bino666,210,1,428,2055 +6315553,LESTAT+SKI,157,6,16768,972 +6323735,Kaczoland,377,1,222,2241 +6326215,afibatin,0,1,58,2531 +6326324,Lubie%C5%BCny+Mietek,0,1,26,2614 +6330147,marcelinor,216,0,0,2885 +6343784,reiter+13,309,52,295742,357 +6354098,Wioska+Mia%C5%82a+By%C4%87+Pusta,666,87,595120,243 +6354962,filips+19,59,1,2442,1581 +6379173,pierszak,1797,1,574,1980 +6384450,ronislaw007,1,71,642753,221 +6395848,pit71,375,1,3598,1439 +6409472,Best+Wiedzmin,1226,5,25482,858 +6414286,myszkof1,0,0,0,2886 +6416213,Granit+19,157,5,21560,898 +6417987,majonespzn,301,27,193874,424 +6423275,Dorian888,1573,1,514,2005 +6423719,Bydlak777,185,0,0,2887 +6425087,moniullka987,432,4,7162,1200 +6468217,spiki2009,33,1,569,1981 +6472706,mondo96,0,7,29303,826 +6474323,sarab,0,1,1305,1776 +6510480,Bytomiak,85,135,1032696,140 +6516085,EpSi1,1724,1,925,1864 +6517003,...bil...,0,1,1064,1831 +6517826,maki5b,1052,8,27427,835 +6520732,lukassaw,301,27,241666,383 +6528152,blondynek23,301,46,311705,348 +6541079,Pheniks2009,210,1,122,2417 +6554011,mateusz16180,0,1,101,2458 +6557487,Fezzoo,0,1,26,2615 +6557824,nsplus,31,1,191,2296 +6577211,TeroXer+s,0,1,26,2616 +6590149,Apollo8,1573,1,403,2069 +6606543,borek102,0,1,5502,1293 +6617912,leolen,0,1,2639,1560 +6618608,paw%C5%82apiotra,452,4,7299,1194 +6625437,GRIGOR-2007,1039,19,127779,495 +6625716,zollmeister,0,0,0,2888 +6647535,Qtafon,0,1,1007,1846 +6647642,ajno%C5%82,319,1,3170,1490 +6651072,Tomek+20011989,377,2,4213,1381 +6654098,P-406,0,1,1360,1765 +6658016,DoRoCiA95,1724,1,2006,1652 +6670484,Moddark,0,1,26,2617 +6674092,wladyslaw011,1724,1,2104,1635 +6677893,superpuszka,0,1,276,2186 +6692351,nicoleesme,1627,1,1381,1759 +6704738,Miko6,0,1,312,2143 +6736666,szopen966,0,0,0,2889 +6766467,slawekx28,0,1,255,2202 +6786449,%3DWilku%3D,29,5,41461,733 +6795280,SUPER+KR%C3%93L+PAWE%C5%81,0,1,3945,1405 +6818593,CzarnamambaPL,120,111,848510,172 +6821136,3dychy,1779,2,7537,1179 +6822085,xmox,452,1,657,1946 +6822957,LegatusXI,85,59,522415,260 +6837266,swenty1968,0,1,4996,1323 +6851059,mustanq123,0,1,86,2478 +6853693,lukiuki,7,87,669577,211 +6857973,popki+2,722,11,32028,795 +6870350,13kris,39,19,144132,474 +6882236,Rosawow,1293,2,11779,1047 +6884492,Janusz+IV,0,7,50279,692 +6892517,D.M.K.,0,4,9851,1084 +6910361,Kuzyn+Kamil,7,36,145895,471 +6920960,grzesiek9521,1,277,2407495,30 +6921135,aksamitny71,1226,16,76653,594 +6923061,liberator1992,80,7,24354,873 +6925574,zyrer,1416,1,1857,1681 +6927748,MIREK2222222,377,1,3072,1506 +6929240,ruch135,301,46,346548,334 +6936607,.achim.,1,436,3899198,10 +6948793,Kuzyn+Bartosz,7,90,796687,180 +6955809,Hank+Evans,0,1,4982,1325 +6956104,marcopolo1324,1597,14,71135,610 +6968280,bartek696,1707,1,26,2618 +6986891,pasy18,862,1,1583,1720 +6995252,krycha9867,0,1,278,2181 +7007969,1edc,1317,1,26,2619 +7012651,Kr%C3%B3lowo+Z%C5%82ota,1148,7,20000,918 +7013660,jjaare,29,1,827,1893 +7023110,vanromex76,0,1,1358,1766 +7024597,artur1488,0,1,804,1899 +7038651,Yoh+Asakura,35,53,358536,320 +7047342,Rok+Szczura,85,106,1108632,124 +7062739,nawalonych7krasnali,0,1,26,2620 +7064954,shaggy909,1790,8,33111,788 +7067846,oisaj-org,0,1,26,2621 +7069895,orko3,0,1,174,2321 +7083877,jumperr88,1735,1,2671,1556 +7085502,Kuman333,291,125,982966,149 +7085510,magnats,7,90,604946,236 +7092442,Sir+Valense2,85,119,1132486,122 +7096208,gis1969b,0,1,26,2622 +7097727,spiderandsobol,0,15,91882,555 +7098955,Dragonus80,830,7,46097,709 +7114815,neo328,0,1,158,2342 +7125212,0xadam,85,28,239274,386 +7127455,rychor,0,9,63723,640 +7135037,H+Cezar,210,1,3868,1412 +7139820,-Efektywny%3F,120,101,921017,159 +7139853,gregorek18,1523,15,69155,617 +7140413,44dor,374,1,901,1866 +7142659,tomson89,85,71,624039,228 +7150683,sos1234,0,1,1258,1784 +7150939,gulden,722,2,5329,1305 +7154207,sylwek2011,301,89,793965,182 +7157316,TheHacker,693,0,0,2890 +7158871,Sapir1,475,1,6373,1240 +7180447,rainyday,1792,1,383,2083 +7181335,Sque,432,1,10160,1078 +7183372,MarcinFix,7,114,977278,151 +7210775,torys666,1052,1,3674,1432 +7220989,DontCry,0,1,3807,1417 +7221139,Nie%C5%9Bmiertelny97,452,3,7051,1207 +7226782,soloma1500,291,32,155561,459 +7230689,rhodos77,0,1,3731,1425 +7242969,gazolek123,0,1,79,2485 +7249451,Max+Delor,47,198,1703379,66 +7259218,kraczy%C5%84ski,0,1,1278,1781 +7259690,SAGITTARIUS70,847,6,15371,992 +7262049,amon201,0,1,945,1861 +7271812,spiryt+pro+elo,1,165,1260245,99 +7272223,robus7,4,2,9811,1086 +7286392,GrubsonSzczecin,0,1,26,2623 +7287342,martin1181,157,1,4885,1330 +7297881,Zawisza160,0,0,0,2891 +7313287,Striker09,1530,1,1115,1816 +7318415,bula9001,785,5,26820,842 +7318949,czarny8216,1645,2,8165,1145 +7322865,Sonomi,0,1,26,2624 +7333216,Majsmen,936,8,77623,590 +7337110,kwiatek7777,8,1,1162,1800 +7340529,morra12311,35,68,649545,219 +7346797,saladyn89.,758,4,10688,1066 +7349282,Sta%C5%9Bkinio,1480,9,55213,670 +7357503,kajko1962,0,6,31598,801 +7365299,wiewioreczkavivat,452,1,3767,1422 +7386358,upalamba,1336,13,64741,636 +7394371,adi7474,291,48,428096,293 +7409475,Xenae,1597,3,25425,859 +7417116,master%5E_%5E,666,17,166147,443 +7418168,smok42+PLEMIENNY+BUREK,1140,20,171664,442 +7422002,korek62,1735,1,1451,1748 +7427966,Pitter82,441,10,29373,825 +7428666,Maliniak77,285,1,4696,1349 +7431759,De+Integro,0,1,32,2586 +7440474,Lepsi5,0,1,3045,1508 +7449254,Bochun10,47,194,1745418,64 +7462660,vequs,47,141,1246831,105 +7474527,kerto13,157,3,5178,1309 +7477695,Pupenplatz,1727,0,0,2892 +7485877,ro98,0,12,59960,652 +7491093,nubeN,47,90,858678,167 +7492426,Aritian1,0,1,7563,1176 +7494178,minijuncio1,548,1,317,2139 +7494497,damiant61,291,107,821210,177 +7495050,Ksi%C4%99ga+przyrodniczo,0,1,102,2453 +7499430,kosmo1972,24,1,6057,1261 +7508390,MauritiusMagnus,1610,1,138,2376 +7516892,jaromirek,1333,1,814,1896 +7518529,LAROX,722,1,3407,1470 +7520280,barex10,29,1,4207,1384 +7526090,Ballab,847,2,4726,1346 +7528491,Bocianikson,35,28,193315,425 +7530708,SlodLenka,1312,6,17536,962 +7539223,Destruktorix+I,0,1,124,2415 +7540891,Ras+7C,369,85,372564,313 +7550472,Sir.Gardier,234,1,9711,1093 +7555180,LukasKeller,291,34,240289,385 +7557683,dadek26,1597,3,7638,1174 +7559093,WJHK,1399,1,5667,1283 +7560085,cyaaaa2,0,1,134,2386 +7560474,JasJ,33,10,63460,641 +7563185,zajadek96,0,2,5244,1307 +7563943,bukai,285,4,19008,934 +7574317,sir+alec,0,0,0,2893 +7581876,sas584,120,174,1614644,72 +7588382,buczkowice1998,291,51,431491,292 +7589468,Filipets,369,67,501560,269 +7590135,Arystek,1523,4,20810,908 +7590275,MORUSGRIN,0,1,7504,1184 +7605446,Danka+Ch,847,1,506,2009 +7629036,ziomeka4,0,1,2408,1586 +7646152,Kierownik44,1597,4,11858,1045 +7651093,Hankier,309,15,123917,500 +7661091,stecj,157,1,7345,1193 +7663945,Sir+Hood,0,1,26,2625 +7675610,kawskole,194,6,13341,1026 +7687862,Ale+AHMED,1648,1,338,2119 +7691817,czesc,1052,1,2706,1554 +7695478,Turbo+Gumi%C5%9B,0,0,0,2894 +7695659,MrZibo,0,1,1129,1810 +7699382,Diabe%C5%82+x+Sok%C3%B3%C5%82,0,0,0,2895 +7707390,Hellooo,0,2,7368,1190 +7720028,blok+konk,0,0,0,2896 +7721441,elisea,0,0,0,2897 +7733128,Helios874,33,1,242,2216 +7749444,TCH1,355,1,4128,1390 +7750835,Drago+Mich,0,0,0,2898 +7751626,neron+Lodz,0,1,524,1996 +7756002,HORUS+33,369,56,466937,279 +7758085,Obywatel+Leszcz,1,180,1591686,73 +7765098,per%C5%82a+1983,1411,10,90629,560 +7775311,lagoony,432,3,19499,925 +7781236,gajawa,59,1,634,1956 +7787254,ziutek+1,597,1,7559,1177 +7802435,nawi4,0,1,1133,1808 +7803631,Helios322,432,1,1027,1838 +7809316,japacz,0,1,26,2626 +7820575,Mogok,0,1,183,2306 +7829201,hbmacko,120,68,584660,246 +7831811,dragon622,412,1,270,2188 +7842579,basket60,785,30,212281,409 +7844370,grzesiek576,0,1,299,2157 +7860453,Bombardier11,369,41,298237,355 +7865511,Mr+Dymer,1636,1,4193,1385 +7866994,znek8,0,1,1015,1844 +7897925,Destroyers96,1312,0,0,2899 +7899232,seafighter1,29,1,7843,1163 +7906167,Kupidynek,0,1,26,2627 +7910501,Wigerek,0,1,324,2132 +7913305,cycu269,1724,1,2008,1651 +7914131,mateuszek15517,29,1,5067,1314 +7915966,JungleBoyz,85,5,38589,748 +7919620,Voxeti,1336,6,31734,799 +7927374,Knykie%C4%87+Dyl,0,1,196,2281 +7929731,rutek75,1735,1,4469,1364 +7951206,Cegla+x+DrTaxi,0,1,41,2578 +7964548,ABE+1,0,1,181,2311 +7970506,botlike,0,1,26,2628 +7973893,Tedock,301,90,715925,200 +7976264,komandos48,120,144,1182415,116 +7985956,Bocianv2,1293,1,8462,1134 +7995033,adahin,1411,1,487,2019 +7999103,Franko+Mocny+2,1226,22,146458,470 +8000875,B.+Moon+l+Black+E.,35,233,2012263,46 +8004076,ExpertoCredite,7,195,1712871,65 +8006209,Szymon9904,0,1,730,1919 +8013349,Malinka696,35,33,282617,361 +8015775,nihal3377,1052,3,10718,1063 +8015955,kacper10ciupek,441,3,13988,1014 +8019812,Vladoks,377,1,6303,1247 +8043286,Saladyn+Pustyny,0,1,26,2629 +8048374,szlon,666,21,159421,451 +8055581,Botty,452,1,311,2144 +8061953,artnow,0,1,119,2425 +8062053,Dam-,0,1,1765,1694 +8078914,Panicore1,35,127,1162594,118 +8082376,Chefrenus,0,1,2887,1529 +8096537,koffi950,85,80,726891,199 +8097158,maybe-later,0,1,1513,1735 +8099868,Brown,1480,54,460813,281 +8106333,wojtas0112,778,1,263,2196 +8123790,%C5%81YSY+WIATR,1128,10,23714,876 +8128478,szabla32,0,1,560,1986 +8134135,SHIRINA,1573,1,468,2028 +8138506,jablonka345,85,43,406217,300 +8153179,Gryffinhart,785,3,18354,941 +8153941,IIIIIIIIIIIII,0,23,135462,484 +8155296,maniek+1985,85,56,523467,259 +8160123,Ahaber,0,0,0,2900 +8167837,diwad11x,0,0,0,2901 +8175236,Joker77777,1480,14,18239,942 +8184383,ProXima26,1411,6,38800,746 +8185721,endwar77,0,1,1976,1658 +8191129,Diabellny,35,23,218030,406 +8192845,silesias+marco,1161,2,13553,1023 +8197987,Andragon21,0,1,61,2527 +8199417,abimm5644,369,91,918930,160 +8201460,MUNq,120,69,664628,215 +8204028,moskittt,0,1,307,2150 +8204926,crisyss,1551,0,0,2902 +8217130,dalesz1212,29,1,1026,1841 +8218433,yam1,666,1,172,2326 +8224678,marcinnn19922,1226,16,128678,494 +8239348,gejus007,0,1,128,2404 +8240209,nagtagumpay,89,0,0,2903 +8240677,saskie123,176,6,42308,731 +8259895,strateg5,106,52,275266,364 +8268010,WALECZNY213,666,36,236063,390 +8274566,dzoper1000,0,0,0,2904 +8288459,baka21sklad,210,0,0,2905 +8290773,Chubi+i+marcinzero,0,1,26,2630 +8292737,wodzu+22,31,1,6928,1212 +8305343,julix5,503,1,2332,1598 +8309492,MANTOQ,0,1,208,2257 +8312412,SwwQ,0,1,26,2631 +8320319,niunio69,59,3,4530,1357 +8323711,Yaooo,85,56,505120,265 +8325063,krzysiuaa,1523,0,0,2906 +8325700,bambinos66,210,2,8019,1153 +8337151,lisseks,85,133,1247295,104 +8362886,lozi20,1573,1,174,2322 +8366045,%2A%2ADzikos%2A%2A,106,20,136882,482 +8366849,stopercool,0,1,139,2374 +8369561,GELU-GELU,80,0,0,2907 +8369657,czarna+per%C5%82a,0,1,1175,1796 +8369778,PARASOL+X,120,53,448199,284 +8373234,20Cinek20,1626,0,0,2908 +8379825,Frolunda,474,1,536,1990 +8379871,bula1101-95,0,1,3783,1419 +8386608,milosz1612,0,0,0,2909 +8399822,Future+Traveler,0,1,26,2632 +8400180,plelinia,412,5,43453,725 +8400975,leo1414,234,2,3290,1479 +8408007,admirer2,607,1,1987,1656 +8411874,uks13,841,1,771,1911 +8418489,Inpetto,1140,10,72407,604 +8419570,Maddov,47,116,1073198,133 +8420564,dawinczi397,520,0,0,2910 +8423835,niunia+wredna,847,1,525,1993 +8425594,bobo2210,1582,1,8160,1146 +8428196,Sonofrad,301,70,530884,257 +8429484,MarekLH44,412,1,2003,1654 +8434727,Hektor888,452,1,886,1876 +8438707,rom2009,120,20,154567,461 +8444356,optyksrebro,309,19,190650,426 +8444698,Menager86,1691,4,7533,1180 +8459255,pallad,85,99,953617,154 +8468862,pol992,0,1,121,2420 +8478874,Tyson+23,1597,1,5917,1268 +8483719,Maja40,29,1,1856,1682 +8501514,Kugiel102,115,7,46100,708 +8502135,OZON-01,1735,1,1226,1786 +8503255,Czapla506506,1411,2,5682,1281 +8510466,RychuR,0,0,0,2911 +8513699,JW1964,80,4,23115,883 +8539216,adamkk222,120,118,224097,401 +8541236,katoryjcias,1140,8,69403,616 +8551316,vaksso,0,1,113,2439 +8552893,dynamit666,29,1,2551,1568 +8553904,Byziaczek,157,1,2140,1628 +8574922,mleczyk123,0,0,0,2912 +8582487,Jarl+P%C4%99kniny,0,2,16745,973 +8583185,kaka858,1754,1,1184,1793 +8588789,lolobolos,944,1,8790,1120 +8593382,lee-1,0,0,0,2913 +8595633,pi0run,33,1,284,2175 +8606809,sengus+avan123,0,5,25688,854 +8607734,EnPater,785,60,527192,258 +8609713,Vlo4,1597,6,33484,783 +8612358,Brayan20,120,27,210104,411 +8616713,Vasqu,0,1,206,2262 +8617889,Herold102,0,1,1858,1680 +8621570,iminlove,0,1,173,2324 +8622901,ArturNowy,1597,4,13717,1019 +8627359,Gregorius+XII,120,46,379544,308 +8630972,PijaniiBracia,47,317,2673203,19 +8632462,rohhan415,47,65,489226,273 +8644299,MAXIMUS-1,0,1,26,2633 +8646849,Margog,0,0,0,2914 +8649412,Unforget,1,52,471506,278 +8654156,Taki+Pan,0,0,0,2915 +8662264,-umino-,39,1,26,2634 +8662634,QiczikJP,1797,1,284,2176 +8665783,kolomoloolo,785,47,329112,341 +8669398,misiu809,29,12,62918,644 +8674163,klekoc,80,9,59779,653 +8675636,Hubix,35,67,631484,226 +8677963,WSWW,1226,26,158950,453 +8678008,Hanka32,432,1,9233,1109 +8696132,Sportowiec73,0,1,3606,1437 +8698728,zosia321,211,1,3438,1462 +8699429,Ma%C5%82pa07,1312,2,8765,1122 +8704709,AzER,0,1,26,2635 +8708728,vodka442,220,1,301,2153 +8709940,Khorstes,0,1,26,2636 +8710047,mikolaj4862,785,2,19844,922 +8720321,jajoasia,29,1,643,1951 +8724192,michal21871,1411,22,90363,562 +8728202,Sharkox,0,1,26,2637 +8729672,Wychylybymy14,71,22,208422,412 +8740199,miterez9,1,85,737426,195 +8741336,lord+zbyszek1960,1724,1,3431,1464 +8742874,Monia+i+Ruch,301,26,179948,436 +8746112,King+Grzes,0,1,47,2560 +8752714,Kamol1998,1735,7,22568,889 +8753956,GanjaMafiaTHC,1052,0,0,2916 +8758298,piotr1960,0,1,1627,1711 +8760124,Bonaro,0,1,4359,1371 +8760563,dziwas2,377,1,2084,1638 +8766033,Your+Nightmare,0,1,46,2567 +8772425,FilozofMiejski,0,29,101106,535 +8772923,szalony+iwan,200,1,561,1984 +8773151,Lord+Zabijaka1999,0,1,47,2561 +8773967,chudyn,0,2,14828,1005 +8776452,polotny33,1477,1,360,2104 +8779575,I+ZNOWU+KUBA,369,52,272769,367 +8785003,ignacy,29,4,10671,1067 +8785314,Jehu,85,73,572039,249 +8788366,Lord+Arsey,35,128,1251399,102 +8790027,Sir+Wiking,0,1,109,2444 +8792844,atotadzio,287,3,10461,1071 +8796215,Dnabuk,0,0,0,2917 +8806145,MegaMocny,1724,1,2272,1606 +8811880,tomek016,1023,7,13523,1024 +8812550,przytulaczekROBO,33,1,2517,1574 +8815353,Lord+Pawe%C5%82+I,375,0,0,2918 +8815749,Sir+Black+Blood,35,20,194145,423 +8816336,Lord+%C5%81ukasz05,96,1,2371,1591 +8819990,bitefight1998,0,1,361,2103 +8827094,ElitoPogero,39,10,88143,568 +8831977,skowron,89,1,182,2309 +8838462,Wilkuwolf,778,1,282,2178 +8839171,Marwinek,0,1,3547,1449 +8839403,IgnacEs,255,3,23228,881 +8841266,Bandii.,47,677,6122389,4 +8842936,z4l3wski,862,8,72391,605 +8843774,Lord+LovelyBones,624,3,19050,933 +8847546,traczu1224,1,245,1962111,51 +8849267,rzemo,0,0,0,2919 +8852026,forestrr,1597,1,7719,1170 +8853146,przemek2707,1312,1,7799,1165 +8855679,chopek1,210,1,2902,1525 +8856821,kosiarziii,125,1,7519,1182 +8868716,Lord+Sir+szok,554,1,3412,1469 +8876551,wodzuniunio1,0,3,9198,1110 +8877156,Woja7155,1480,31,248699,382 +8877462,Avgan,0,1,116,2432 +8877886,Lord+kongo,234,2,7420,1186 +8886999,kamien335,0,1,54,2536 +8889781,wuener,0,1,462,2033 +8890346,brif123456789,285,2,7896,1160 +8890611,Harasi,0,1,47,2562 +8890793,Ronoxo+and+Zaruss,432,0,0,2920 +8895532,KubekXD11,432,0,0,2921 +8897100,lord+leoni,0,1,884,1878 +8900955,Pablosta,85,34,271653,368 +8907069,kcys2,0,1,47,2563 +8907258,adrianww13,0,1,317,2140 +8908002,Kuzyn+Platynov,7,63,514718,264 +8908544,And%C5%BCi+San,1523,1,5624,1287 +8916982,morus854,1735,18,67967,623 +8922870,MAX+LU+Prime,1753,1,810,1898 +8924845,Totalnie+Mocarny+Go%C5%9Bciu,0,1,136,2379 +8925624,Napastnik.,39,9,57263,664 +8925695,tutek101,301,20,151945,464 +8926516,pogromca+xcc,0,1,176,2319 +8942143,bartek145972,0,1,339,2117 +8947021,Gollum18,0,1,3318,1476 +8947705,PysioSsie,0,1,286,2171 +8954402,darkmike01,369,76,710497,202 +8956715,Norane,29,1,242,2217 +8963720,Lord+Binladen,1039,5,32713,792 +8966820,arti..,369,16,115454,510 +8967440,Many,1621,44,268717,370 +8970390,dodocolo,0,1,2661,1558 +8975453,kolejne+multikonto,0,1,26,2638 +8976313,tranquill,291,52,371927,314 +8978080,Gacek565,1498,1,2870,1532 +8980651,cyni123,369,60,502402,268 +8984336,Nicosta,0,1,26,2639 +8991696,dziadek1974,1724,5,21641,895 +8994199,Froozantenna,0,1,1884,1676 +8997874,Sir+lechman,452,2,6439,1235 +9000253,Rokkas,0,0,0,2922 +9002278,badidek,0,1,26,2640 +9003698,Quenthelq,71,31,249811,381 +9004337,mariuszf,0,1,98,2463 +9006528,KESHIK,0,1,48,2556 +9012894,maciej55413,0,1,68,2507 +9014108,ewciamariusz,1411,1,1131,1809 +9016464,Sir+lobbek,210,1,3572,1444 +9016560,Vikingen+x+Control360,39,3,22215,891 +9021037,BD84,377,1,2004,1653 +9021920,Sebek4991,785,0,0,2923 +9023703,SirBia%C5%82y+VII,369,101,901777,162 +9029627,KRIS+74+PL,452,1,26,2641 +9029928,Smykaj,1039,8,33208,786 +9031705,SIR+UNITED,0,1,44,2571 +9037756,Psycho+McB,120,36,228073,394 +9043233,marianoitaliuano,0,1,26,2642 +9047658,Hanibal25,0,0,0,2924 +9048764,BagPipePL,35,2,20523,910 +9053254,malwina1,1735,1,1069,1828 +9057880,mamcos98,194,1,26,2643 +9060641,Koloalu,7,43,379321,309 +9060885,z%C5%82yy+banan.,862,3,15142,996 +9067168,mevest,0,1,42,2577 +9071253,Lord+Sir+bogdan,441,1,148,2356 +9073704,xFacHoWieCx,0,1,26,2644 +9090040,czubak91,0,3,7103,1202 +9091557,SzybaSc,0,1,3144,1494 +9094538,koziki,0,8,28257,831 +9095581,Lord+SnOOpDoG,210,3,8508,1132 +9096738,MistycznaParowa,0,1,188,2303 +9097545,Lord+%C5%81ukasz1997,210,1,2138,1629 +9098296,solidna,0,1,182,2310 +9101574,Hashirama,35,52,376299,311 +9103424,kiokiokio,862,12,74275,598 +9106642,Aftjero,1523,0,0,2925 +9106690,teduniook,0,2,4509,1360 +9113064,OlaLuv,722,6,18782,937 +9114562,Tohsaka+Rin,0,1,394,2075 +9120206,hubo00,1336,13,66423,629 +9124682,Unknown,0,1,150,2353 +9128606,KamykosXD,0,1,70,2504 +9129046,misiu12193,0,1,339,2118 +9135525,apokalipsa25,0,1,26,2645 +9136062,bercik53,29,1,1453,1746 +9138661,Lodar93,0,1,26,2646 +9140898,kmakma,0,2,7775,1167 +9147518,przemomam,944,1,1945,1662 +9148043,I+am+best1,862,41,275737,363 +9148439,przembarca20,1108,1,8120,1149 +9151549,Brzydal+3-5,0,1,3212,1487 +9153430,-+V+-,29,1,241,2218 +9154293,Terror+x+Miniqo,0,1,26,2647 +9154820,wilq332,0,1,77,2488 +9161369,michoopl,0,1,26,2648 +9163140,.Krakers.,1368,8,25076,860 +9167250,smieli,7,81,673416,210 +9174887,JedynyTwardyPrawdziwy,85,71,705731,204 +9179700,KonopiTop,1772,1,2516,1575 +9180206,Larvanger,85,30,224680,400 +9182487,Sir+kamil+1999,0,1,119,2426 +9185931,bury16,12,1,6060,1260 +9186126,KingJulian,666,29,230315,392 +9186877,Bernhard+Roth%2A,1806,1,221,2244 +9188016,byMuerte,301,150,1208203,112 +9191031,Lord+Yogurt+I,1763,5,24623,868 +9195661,M%C3%B3wMiHarpagan,1793,11,67586,624 +9199885,Sir+maniek,1480,26,151459,465 +9201946,kojak14,1799,1,26,2649 +9213654,maniek38,0,1,26,2650 +9219778,miki0412,0,1,166,2333 +9225795,SatsIronSide,0,1,6136,1256 +9228039,sKev,291,86,667989,213 +9231765,Lord+Jack+Carver,375,1,4086,1392 +9234594,prince+rudeboy,385,1,155,2347 +9235561,Chesterton,1312,12,64383,637 +9236866,notfair.,47,307,2662877,20 +9238175,Mucharadza,291,87,858294,168 +9239515,Wied%C5%BAma100,1411,21,94440,550 +9240154,JackBlant,847,2,4467,1365 +9247737,lukempire,0,1,26,2651 +9253494,LordDeltax,1470,6,45642,714 +9257513,adekkolt1,285,1,26,2652 +9260447,Mursilis,0,1,2540,1571 +9262877,Blautek+Janello,0,1,6399,1239 +9264752,Hitman003,1480,21,215655,407 +9266092,julka27,452,1,2120,1631 +9270302,Sir+Pazdan,452,1,1333,1767 +9272054,Gracze,120,94,886171,164 +9277642,cago1994,1530,1,5414,1299 +9280477,Kampaj3,47,278,2587854,22 +9280679,Kross+x+Smerf,0,1,26,2653 +9282669,Johnny+B,1389,1,4958,1327 +9282974,Geamel,0,1,26,2654 +9283142,Zi3lonoMi,412,2,11088,1057 +9283775,nani91,412,11,39248,744 +9291984,Alessaandra,1,215,1847017,56 +9292037,VestoreI,0,1,1581,1721 +9294339,peniozdw,0,1,26,2655 +9299539,DefinitelyRlyTheD0orek,1,174,1403123,84 +9300026,Rangiku+Matsumoto,0,1,26,2656 +9312528,mateszko166,31,1,4030,1398 +9314079,Kamilex00,291,101,772327,187 +9314153,Giermek+franek,0,1,3781,1420 +9318449,paulinarzy,1338,0,0,2926 +9319058,walka500,7,141,1349963,91 +9320272,Raukodel,0,3,12203,1042 +698143931,Thresh,71,27,265021,372 +698147372,hardkour,71,40,307284,351 +698147969,Wysypisko+%C5%BBycia,1128,1,115,2435 +698151302,tomaszek74,72,1,2166,1623 +698152377,DefinitelyRlyTheMackobl,47,892,7560082,1 +698152498,Murano,31,1,2502,1576 +698160606,denq,47,157,1254335,100 +698162153,Lord+Magik77,0,1,75,2491 +698162312,delta6583,594,1,449,2040 +698162357,SirCzoper,0,1,1974,1659 +698167138,borysdragosani,785,24,61787,648 +698167153,ok3m,0,1,1179,1794 +698167413,Przechy%C5%82y+i+przechy%C5%82y...,0,1,26,2657 +698169715,misiekma%C5%82y,0,1,3437,1463 +698171150,DRAGONMIR,1757,1,1400,1756 +698178312,mygos,452,13,37444,759 +698182935,xxShiva18xx,0,2,10243,1076 +698187023,dzbanek54321,1597,1,4472,1363 +698190039,mirmyn,0,1,1385,1758 +698191218,SeexyPapi,85,409,3167904,16 +698200480,Ida+Madame,285,20,113879,514 +698202162,Volf102,0,1,138,2377 +698203538,Stadar,0,1,26,2658 +698207545,Lord+%C5%81oszo,0,1,696,1931 +698212272,Szyderczy+promil,686,0,0,2927 +698215322,MeRHeT,120,131,1030972,141 +698226224,playbackp,0,1,26,2659 +698231772,Psykoo,1,311,2532132,24 +698232227,Vendea,85,46,386180,306 +698234770,zolw222,0,7,61681,649 +698239813,Tottal+Score,1,101,997050,148 +698241117,LordGeorg,1039,8,51493,685 +698248308,Mareaa,862,1,1328,1768 +698258283,Gran+Torino,1336,3,20086,917 +698262808,Akantos,0,1,50,2552 +698264828,Elener,31,1,2799,1546 +698273555,Sir+Paolo75,778,0,0,2928 +698278542,Lord+Znienacka,1597,5,20388,912 +698279195,CzerowyDziadek,24,1,1595,1718 +698281635,Genotypek,0,1,132,2392 +698281649,cycedoziemi,0,1,8500,1133 +698282328,radek1234c,0,1,89,2476 +698285444,Maniaq1,369,155,1626866,70 +698290319,homektyjek6,862,9,84521,574 +698290577,Mercel,47,193,1324013,95 +698295651,klez,666,22,142233,476 +698298333,Timb3r,0,1,26,2660 +698299678,KakaowyBudyn,1609,0,0,2929 +698305474,SajmonNijoo,301,46,400897,302 +698312347,Gienioslawek,0,1,3064,1507 +698315881,Lord+dankos,0,1,2905,1524 +698321130,liliput81,1347,1,1665,1707 +698324343,Kurji,0,1,7599,1175 +698330221,ninja92,336,0,0,2930 +698331388,ZYXW,636,1,3759,1423 +698338524,Nice,1683,9,49140,699 +698342159,Blaszczu11,291,42,356196,321 +698345556,Wiezowiec,1336,13,90255,565 +698346318,ByXon,0,7,54247,672 +698346954,marek46aa,13,1,490,2017 +698349125,KDK-,35,9,47031,705 +698350371,JuanDe,47,114,898318,163 +698353083,Mateuszekbezuszek,785,64,424286,295 +698356304,Sir+Zdzich,1312,10,38560,749 +698361257,grolas,1,239,2167773,42 +698363063,YenSu,157,1,1822,1686 +698364331,wdamianse,47,93,728095,197 +698365960,MrStradivarius,309,162,1386009,86 +698368493,Kaszyce131,1312,3,8542,1130 +698373265,Imperator+ciemno%C5%9Bci,0,0,0,2931 +698379979,zewlakow6,0,1,26,2661 +698380048,lordlewy10,0,1,26,2662 +698383417,aver121,944,1,8694,1125 +698384662,jar-11,0,1,1446,1749 +698384726,marszalek-duck,452,1,295,2159 +698385619,mioduch,686,1,2663,1557 +698388041,Jestem+Pogromca+z+TOPu,750,1,277,2182 +698388578,JJJuriJJJ,47,167,1430218,82 +698403524,kamillo220,0,1,26,2663 +698410946,RicoTW,0,1,48,2557 +698416970,zioms1,85,156,1085161,131 +698420691,Lord+Lord+Franek,1,240,2340547,32 +698431574,mk2014,0,1,2216,1614 +698442418,wolgler1234,194,2,14453,1008 +698455203,Mufferr,0,1,120,2424 +698457392,App1e,285,1,1413,1754 +698462285,%C5%BBulioner,24,2,5084,1312 +698472522,ladio,0,1,225,2236 +698477883,rufusix,1523,1,2838,1540 +698485268,wabos,0,1,128,2405 +698486277,dragonk6,666,1,196,2282 +698488800,Galactus,0,1,237,2223 +698489071,3lobit,1,187,1578890,75 +698511920,tarzan04,1627,1,2716,1552 +698519133,Isabella,96,1,2251,1610 +698526036,lordtados,373,2,13062,1030 +698526500,Fontowcy+Dual+i+Ma%C5%82piake,0,1,26,2664 +698540331,Kajtej,1148,6,28924,829 +698542183,falat030,0,1,59,2528 +698545981,Adaczu,39,0,0,2932 +698548451,Paul2493,651,1,3290,1480 +698556600,snake7,210,1,130,2396 +698557087,SenTu%C5%9Bka,594,0,0,2933 +698562644,DawidN,301,79,656201,216 +698580310,warkoczynka,0,1,844,1890 +698582741,ogri,0,0,0,2934 +698585370,S1Joker,71,158,1418122,83 +698588535,krismal,1,127,1209737,111 +698588812,Lord+Sir+felek,194,13,65457,633 +698592565,filip9399,0,1,101,2459 +698592907,MamTegoDo%C5%9B%C4%87,0,1,5928,1267 +698599365,RoBaCzEk101+reaktywacja,35,53,447788,285 +698604229,greenapple,0,1,26,2665 +698605444,1kip7,1357,0,0,2935 +698613394,SOL+menka,33,3,9716,1092 +698620694,rurek50029,71,54,364207,317 +698623373,rt27,0,1,1262,1782 +698625834,PjetreQ,309,188,1305401,96 +698630140,Espel132,0,1,7265,1197 +698630507,Mpower+e36,1411,17,114549,512 +698631190,gracjan1995,29,1,1938,1663 +698635863,JaaMwG,35,400,4050198,7 +698639278,dominik121,0,1,194,2289 +698641566,Kuzyn+Patryk,7,79,754376,190 +698645802,B.E.R.S.E.R.,0,1,26,2666 +698647624,Kayohix,0,1,6251,1251 +698648691,Kr%C3%B3l+Mieszko+I,0,1,122,2418 +698650301,Kopersss,71,39,350710,327 +698650509,DefinitelyNotLegion,0,2,7881,1161 +698652014,Maru,71,50,407879,299 +698652171,lordkali91s,106,15,88148,567 +698654164,Jabolek,0,1,3155,1491 +698655576,brutal29,31,1,56,2532 +698655859,Chmelnycky,0,4,19436,927 +698658087,techniq,0,1,67,2514 +698659980,zawodnik,120,634,6159808,3 +698661697,carrex95,0,1,266,2194 +698663855,Dzieciake,785,61,346976,332 +698666810,Gryfios,85,81,743913,193 +698667255,Szary+Ubek,210,1,733,1918 +698670524,Simon21,291,48,371466,315 +698676429,halooogan,0,1,26,2667 +698676788,ligedman92,377,1,1792,1690 +698677650,GranicaPSK,847,25,74245,599 +698680806,spartakus270,722,10,73322,600 +698687597,kjs12,377,1,628,1961 +698687678,ciniol97,0,0,0,2936 +698689858,kraku123,0,0,0,2937 +698692141,barczi1979,0,1,3566,1445 +698693697,AGH+Szary,35,2,14286,1010 +698696420,prezes+naczelny,117,1,3644,1434 +698698087,Sir+xyz1,0,1,1129,1811 +698701911,Xerez,106,12,41213,734 +698702991,carnage234,85,116,954824,153 +698704189,Reco,120,236,2011801,47 +698704875,Dominator2014,0,0,0,2938 +698712383,pRoFiCe+II,0,1,4844,1334 +698723158,kaliber84,369,65,444667,288 +698736778,Lady+mysza89100,1551,7,17056,969 +698738810,King+Kamil+I,377,2,5149,1311 +698739350,SaFaR,1,194,1786767,62 +698743511,Lech798,24,1,288,2167 +698747719,frrrantic,0,1,243,2215 +698748891,Sumienie,59,1,1817,1687 +698749311,Mergio,0,1,1489,1737 +698754087,Santa+aka+Dziadzia,1802,1,26,2668 +698757439,Kristoffs,157,24,199434,416 +698757487,Halny,0,1,2340,1596 +698766178,Peter1,1573,1,408,2068 +698766369,SHIZA,1573,1,1957,1660 +698766454,Doniel,1573,1,222,2242 +698768565,Ronin1995,301,182,1553518,76 +698769107,DobromirPan,7,88,591523,245 +698776998,Monia18,1573,1,1808,1689 +698783754,proof333,0,1,7960,1157 +698785538,LastWish,234,1,645,1950 +698786826,Sir+develes,369,111,1016410,144 +698789253,Galasfree,1039,1,3011,1511 +698791053,Kanut,106,1,208,2258 +698795589,endriu1990,210,1,689,1935 +698798180,nocna1993,0,1,26,2669 +698806018,krzysztofgucio,33,14,72418,603 +698807570,xHavajek,47,245,2310770,35 +698811281,SHENRON81,0,0,0,2939 +698817235,Lord+Baszczu123,157,3,19296,931 +698823542,AwangardazCiechanowa,862,4,36659,764 +698826217,AllAdin,0,1,372,2096 +698826986,Chirucas,39,16,43887,719 +698829590,S%C5%82odki+Urai,1,37,334694,339 +698830638,ascend,210,1,2812,1544 +698837993,Don+Quijote,0,3,5535,1290 +698842996,Ernesto+Hoosta,0,0,0,2940 +698845107,Swiechu,0,1,102,2454 +698845189,tesa,85,35,309732,349 +698848067,Sir+Hycel,305,1,7528,1181 +698848373,BloodyMath,722,10,31255,805 +698849979,Mihalina,112,1,518,2002 +698850251,NeXi,0,1,26,2670 +698850319,Patrz+Ale+Nie+Zjadaj,0,1,26,2671 +698855681,Pieguss,71,1,162,2338 +698866770,muchaPG,0,1,495,2014 +698867446,pisiur71,85,71,668859,212 +698867483,pa+ZZI,85,120,746077,191 +698879638,leito3,1760,4,8366,1138 +698881022,sila,1523,8,43472,724 +698884287,Nervouse,47,132,1305117,97 +698885960,Sir+fojerman,0,1,97,2465 +698895940,tnt3nt,0,13,45445,716 +698897472,AndrewwXYZ,1431,1,1310,1773 +698905177,TheWolfie,1127,8,50239,693 +698906190,MaraczxD,0,9,59398,657 +698906643,ArturLublin,0,1,1094,1822 +698908184,EXPUGNATOR,7,127,946411,155 +698908912,Chybik,35,9,92130,552 +698911639,Kafaro,0,1,460,2034 +698913618,kukis,157,1,2549,1569 +698916948,Jose2015,0,7,33606,782 +698926585,Sir+Rekin+II,989,1,9905,1082 +698931404,Lord+lukis2012,0,1,1734,1697 +698931998,katarzyna2012,0,1,1898,1673 +698934729,Gregor20-90,1523,5,14955,998 +698936852,ksiazejanusz,0,1,1894,1674 +698938264,alanbebz,1669,1,894,1868 +698941586,Vito+Corleone+2,1627,1,1576,1723 +698946155,Lord+Lord+Giza,0,1,2639,1561 +698957176,Pogodny+W%C3%B3dz,29,1,325,2131 +698962117,pawcio231,47,404,3476965,12 +698971484,ryju15,47,224,1891397,55 +698983867,Rommel,117,1,371,2097 +698984562,krzok14,0,1,71,2501 +698987598,Aniuta,0,0,0,2941 +698993706,barot2,1480,6,52588,678 +698996782,MrDynamitePl,39,27,199078,417 +698998882,Ervin21,0,2,11193,1055 +698999105,Rose1827,35,79,786701,185 +699004723,PLSPopo,0,0,0,2942 +699006683,qsza,0,0,0,2943 +699007059,Lolitkaa,0,1,6536,1228 +699011096,freaky97,0,1,26,2672 +699011415,noidea,1724,1,458,2035 +699016994,TeenShey,785,25,157317,454 +699019249,LoRd+BoNiO,0,1,1916,1666 +699025262,Pif+paf...,96,1,989,1851 +699027000,Martin1991,1347,1,119,2427 +699034094,Marduk,607,6,26739,845 +699037086,telimena,1735,4,9082,1115 +699039013,zbigbrader,1538,2,7382,1189 +699054327,kondzio95rrr,0,1,160,2341 +699054373,chelseafan69,120,79,741183,194 +699056677,SHAKARA,1573,1,478,2024 +699057459,Crezys,1573,1,1525,1730 +699058253,Belmondo77,1573,1,1584,1719 +699062337,%2AZasad%C5%BAca%2A,0,1,105,2448 +699065686,Sir+skawiu,0,1,133,2388 +699066118,tomiwet,194,12,72583,602 +699069151,ToHellAndBack,0,3,9795,1088 +699072129,Charfa,1,307,2552004,23 +699075351,JAN1234,1312,1,4233,1379 +699075613,oliwer1996,0,1,6134,1257 +699083129,skogu,666,25,195307,420 +699084064,gsxr600k2,1809,1,191,2297 +699086436,bogmar,1039,0,0,2944 +699088529,waldek10,1411,9,50839,689 +699088769,Before1995,1,217,2086210,44 +699091553,dudus1992,0,0,0,2945 +699097885,epsilonPL,785,32,273350,365 +699098531,Flip+i+Flap,1,744,6506806,2 +699099385,Sessue,0,1,43,2574 +699099811,P0tulny,301,66,450551,282 +699111651,POLdi,301,1,10290,1075 +699117178,Sir+Borsuk011,369,4,31021,809 +699117865,WOJOWNICZKA.,0,1,9633,1097 +699117992,Bakun83,1312,16,91838,556 +699121671,KotAlik,71,55,374803,312 +699121777,Trevor05,0,0,0,2946 +699126484,Andzynek,291,37,348019,330 +699126490,Bipi,0,1,2835,1541 +699127156,donguralesko80,1411,2,7443,1185 +699127546,kinia+20,0,1,4925,1329 +699131849,brt007,0,1,172,2327 +699139964,dudek2222,1771,2,7046,1208 +699144886,jurek15,0,1,1324,1769 +699146580,Lord+miki12323,1,95,613732,233 +699146876,DzikiNieogar,1597,4,13750,1017 +699147813,Zakrecony,0,1,376,2094 +699148121,robertos1,1432,1,1675,1703 +699150527,F4T4L,291,55,478730,274 +699155679,marekwalczyk,0,1,214,2248 +699156456,KATOZAUR,0,1,77,2489 +699163285,Zukos,0,1,26,2673 +699167148,dekunka2,0,1,1892,1675 +699169828,Atanami,0,1,106,2447 +699170684,krzychu20177,1,74,666480,214 +699176234,Loker,39,3,29822,821 +699189792,Inko,120,192,1672036,68 +699191449,Chodziu95,432,32,184851,429 +699191455,KingPoiek,432,27,160895,450 +699191464,Lord+Queno,432,24,115767,508 +699194766,osilek123,35,17,156418,456 +699195358,Ribeskanina,369,57,434935,290 +699196829,Ethan+Hunt,85,6,36544,766 +699199084,Sir+JuriGagarin,1480,1,436,2049 +699201278,wodzu11,1052,2,15806,985 +699204478,DannyQ,722,5,35138,774 +699208929,tann,1,101,836338,175 +699212614,Lord+xXWiLQXx,377,0,0,2947 +699213622,Murzyn,309,78,592511,244 +699238479,majster0607,71,23,187155,428 +699238678,pepus1971,0,2,3589,1440 +699244334,DO100JNY,722,11,35835,770 +699246032,Kwest,71,6,50587,690 +699250676,Sir+mary%C5%9Bka,0,2,17057,968 +699251542,Zoodix,1226,3,19854,920 +699262350,Brat447,47,118,1090665,128 +699264947,Kwiatuu,0,1,26,2674 +699265922,murzyn59,47,146,1249560,103 +699266530,LordTrol,1700,20,138238,479 +699269923,Kuzyn+Karol,7,152,1330106,92 +699272633,pachnis96,291,39,353613,325 +699272880,TyQ1710,85,141,1370377,89 +699273451,Gram+offa,47,269,2509456,27 +699277039,B.E.T.O.N,0,15,65352,634 +699278528,LadyMauritius,722,15,91697,557 +699280514,hary,120,18,80681,581 +699282717,jury1993,1627,2,5355,1303 +699282793,Kira+Motyl,0,1,26,2675 +699283869,Seylito,432,1,2030,1648 +699284822,Karol+III+WIelki,0,0,0,2948 +699285160,odek69,847,2,8187,1144 +699287032,%3DPanR%3D,39,2,16537,976 +699294577,Jakub+J%C3%B3%C5%BAwiak,0,1,26,2676 +699298370,Gatt,85,226,2136999,43 +699299123,d33L,1,212,1969338,49 +699301458,ZORDON2016,0,4,6046,1264 +699304554,TransportBUS,1148,13,20492,911 +699308637,Freshlajkdzieju,432,34,227498,395 +699316421,Alstrem+x+Ataturk,35,80,732610,196 +699319395,Cacu%C5%9B-Lion,1466,0,0,2949 +699320017,Sir+czerwis,0,0,0,2950 +699321518,cado,1735,8,24708,866 +699323302,zeta.reticuli,47,123,1204299,114 +699323781,bogdan0811,1597,2,4816,1337 +699325506,CareHoster,0,1,2843,1536 +699326171,SlashOfDark,0,1,8150,1148 +699330765,Lady+Basia408,0,1,125,2414 +699333701,Kr%C3%B3l+Fabian%2A,120,73,505059,266 +699336679,Raissa,234,1,499,2012 +699336777,Elsche+x+Astaroth,369,114,1041869,139 +699339594,665783847,117,1,5400,1301 +699341889,Rafer,1523,1,6355,1243 +699342219,BLACK15,120,240,2283868,36 +699343887,daniel420,1411,6,21624,896 +699345087,Elendila,0,1,26,2677 +699346267,yaruciak1,0,1,26,2678 +699346280,yuri09,369,53,516265,262 +699347951,abadon666,85,61,474365,277 +699351046,tomektonkiel,0,2,8002,1154 +699351301,Sir+ItWasntMe,35,101,936054,157 +699355601,piast123,1523,17,98204,543 +699355948,hmc.,0,1,38,2580 +699356102,streak2k12,1590,1,2159,1624 +699356968,Heui,7,27,131205,491 +699360521,NajlepszyZiomekWeWsi,1590,1,135,2384 +699364813,Warzywa+Style,120,149,1384393,87 +699366937,Mr.SoLo,206,1,578,1978 +699368887,Tomi77,1,223,1995381,48 +699372829,4+ewelina,1108,11,18141,947 +699373225,miniuk,0,2,5516,1291 +699373599,Sarna,301,93,714835,201 +699375903,Steven,29,1,2209,1615 +699377151,Hindukusz,291,15,99555,540 +699377401,stalowyhetzer,1336,13,81165,579 +699379895,Cet4boN,85,68,602962,237 +699380607,Dejv.oldplyr,47,123,1216709,109 +699380621,fajterooo,0,6,52456,679 +699380730,marart2,0,1,53,2540 +699382126,Tunios%C5%82aw,7,168,1626794,71 +699383121,Falco11,120,43,324297,344 +699383279,bax8009,7,149,1300265,98 +699385139,gotkamil,35,22,182879,433 +699390457,SirSin+X,0,1,134,2387 +699391409,frolunda63,1247,1,261,2198 +699393742,DeanMiles,71,71,634739,225 +699393759,Tekson1,432,23,150370,467 +699396429,obywateldb,1312,8,14865,1002 +699397280,gggg1989,0,1,26,2679 +699401083,Sir+Spiro,0,1,2074,1643 +699402816,Luxipux,47,52,515905,263 +699405877,DzikiDzik,210,1,132,2393 +699406101,HoroeX,0,1,815,1895 +699406247,Uaschitschun,1336,14,71324,607 +699406750,mAcIeK+1988,291,29,283289,360 +699406776,Maczo+-+Pieczarz+-+%C5%81obuz,1128,22,97390,544 +699408669,Merr,430,0,0,2951 +699409420,adam0218,80,1,721,1924 +699413040,%C5%9AlimakYT,85,71,598949,239 +699413581,DonRocco,1079,16,104458,528 +699419851,191deto,0,1,6264,1248 +699421735,Henryk+IV,0,1,6526,1231 +699423167,Mishiu,1651,1,3936,1407 +699424741,maciekz123,1128,2,13141,1029 +699425709,Wieslaw+Geralt,7,54,445112,287 +699428898,nortos17,0,1,126,2411 +699429153,%C5%81azan,85,202,1830991,57 +699429335,Arda26+and+Azdro,120,7,58464,662 +699431255,MacioB1997,1,167,1484487,80 +699431590,LokiPLN,0,1,224,2238 +699432672,142klp3,35,83,801464,179 +699433558,Guardian92,1,107,1017423,143 +699438389,super+hero,1735,1,4082,1393 +699441366,OdyseuszProFighter,85,41,359082,319 +699443920,mooseloose,369,147,1193842,115 +699448276,Minerva,0,2,2999,1514 +699448843,jarko123,0,1,1083,1824 +699449946,rkot,1480,1,3295,1478 +699451338,Jacaxxx,210,1,142,2366 +699456288,kapittan,0,1,679,1938 +699469600,wertywer,1724,1,1031,1837 +699470220,monitor123aa,0,0,0,2952 +699471024,Uparty1,0,1,634,1957 +699471829,witold2129,375,1,4734,1344 +699477624,Majin+Buu,1597,3,8247,1143 +699478692,Adas532,1039,9,35434,773 +699480768,Stupid,0,1,45,2569 +699483429,psychol16,1336,18,111287,518 +699485250,TYLKODOBRED%C5%BBISY,1,127,1109893,123 +699488108,Tw%C3%B3j+Kolega,862,14,116778,506 +699490365,bercion,1797,1,1764,1695 +699491076,DaSilva2402,1,206,1914918,53 +699491827,Ksi%C4%99%C5%BCnaAnna,0,1,743,1917 +699491924,Lejlu,1795,1,277,2183 +699492120,djraaa1,0,1,168,2331 +699492817,CebulowyRycerz,0,1,94,2471 +699493750,krychukozak,1700,8,33273,785 +699494480,Azucar,785,15,132714,488 +699494488,ScofieldTPS,369,123,1226804,108 +699498602,Tymek1,0,0,0,2953 +699501322,Egwene,0,1,2946,1520 +699503079,cinek3456,39,0,0,2954 +699508363,Myanmar,1232,1,26,2680 +699509239,XMM+Rudy+102,862,15,90306,564 +699509284,Lord+Nc3dyh,1148,5,20850,906 +699510045,BLACK+SOLDI+LP,1209,4,18086,951 +699510259,Dulnik,47,93,710495,203 +699511295,Raven000PL,0,21,114784,511 +699511370,brzydko.1,0,1,7408,1188 +699513260,Kuzyn+Marek,7,361,3502338,11 +699516250,Du%C5%BCy+Arek,0,3,9435,1105 +699516268,krakusekk,557,5,39927,741 +699518384,landhaus1,945,1,726,1921 +699518454,blatio,29,1,3307,1477 +699520575,Adamsoft,778,1,7994,1155 +699522257,LORDHerkules13,1724,1,4379,1370 +699523631,l2adziu,309,56,559450,251 +699524362,Pioter007,35,54,264737,373 +699524891,Tomall78,291,70,496492,270 +699530673,Westor,0,5,24042,875 +699535590,lsjhjvdhgvfskhbsfv,0,1,208,2259 +699541376,Mr.P,0,4,12161,1043 +699542874,Makss,0,0,0,2955 +699543968,0nxss,0,0,0,2956 +699545762,Deornoth,33,7,29712,823 +699545975,Mistrzunio229,0,1,195,2285 +699546317,Sebko70,647,1,245,2214 +699548295,zimny+11,1039,6,37922,754 +699548922,Nooowka07,0,1,26,2681 +699550876,StopsoN7,666,15,78580,588 +699551148,pisior18,0,1,62,2526 +699552859,Don+Kalion,77,1,26,2682 +699554427,Krejv95,0,1,26,2683 +699556684,Atryda,0,0,0,2957 +699557165,mmarcinho,1638,1,26,2684 +699560327,Hartigan,39,2,14893,1001 +699560963,Sir+NoToKredki,0,1,56,2533 +699562182,diammyx3,862,5,19795,923 +699562874,hubertw25,68,7,40580,737 +699564303,coreslaw,0,1,200,2271 +699567608,Stanly156,369,163,1533714,78 +699569800,Lululu95,210,3,18958,935 +699573053,MONAMI,85,106,1080784,132 +699574408,emoriar,291,105,842903,174 +699576407,AAnubiSS,862,6,35572,771 +699576978,andziolaa,0,1,847,1889 +699577663,RudnikDagger,0,1,26,2685 +699578606,Lord+Konzi,1716,0,0,2958 +699580120,Ciachociech,291,32,225112,399 +699583677,Lexmet,0,0,0,2959 +699588526,Dirk+ze+Skraju+Lasu,29,3,10341,1074 +699589540,bbbarteqqq,1528,1,324,2133 +699590236,ZygaH,0,1,3029,1510 +699595556,Lord+ramagama,1411,8,36892,762 +699598396,gall,0,9,19300,929 +699598425,Pomidorowy+dzem,291,195,1585744,74 +699598671,marq135,0,1,1160,1801 +699598764,Afterparty,0,1,1144,1806 +699600167,Szyszka77,29,1,143,2362 +699600855,7homasbaN1,77,1,277,2184 +699603033,Krzysiek933,0,1,102,2455 +699603116,Infamiia+x+Bartez,369,64,494300,272 +699604515,KruliK,1652,7,15985,984 +699605333,Dominik+17cm,369,136,1251597,101 +699609445,Bicoss,0,1,887,1873 +699611673,Asaret,1226,4,24528,870 +699613884,Bracket,0,0,0,2960 +699614027,BenyZSZ,0,1,989,1852 +699614821,gazda30,0,1,127,2408 +699617524,Dziobson266,0,1,203,2267 +699618066,donpabloone,0,1,26,2686 +699618326,Maverick1,24,1,3993,1401 +699620730,rumcajski,375,0,0,2961 +699621601,Joffrey666,785,22,144636,473 +699622781,Jack+69,452,1,2777,1548 +699622958,kuba987,33,1,97,2466 +699624570,Decku%C5%9B+Dow%C3%B3dca+Podziemia,1802,1,77,2490 +699627771,P1Kasik,106,4,12828,1034 +699628084,k4myk,35,99,787291,184 +699630110,Dam2314,664,1,4776,1341 +699630393,MiczMicz,0,1,104,2451 +699632387,Lady+elo320,0,1,3500,1456 +699633365,King+Schultz,1807,1,668,1942 +699635774,Mad+World,0,1,26,2687 +699639001,R%C3%B3%C5%BCalXDD,441,1,1110,1818 +699639005,kakuna,758,1,2287,1601 +699639122,Arkadio1,1226,2,8575,1129 +699641777,Lord+Shimonus,53,13,50577,691 +699642954,Herkuless,625,1,887,1874 +699644054,Lijor,1411,3,6881,1214 +699644448,Rodriges1271,385,14,67002,627 +699644852,Natka1968,194,7,13727,1018 +699648975,Rejku30,0,1,71,2502 +699650981,Jacollo,1627,5,7743,1169 +699651260,Cray123,0,0,0,2962 +699655364,igrane5000,1484,1,26,2688 +699656989,Hubixon,39,24,188830,427 +699657242,Krz40,210,1,2932,1522 +699657450,Lord+Myster+Boos,1336,24,134878,485 +699658023,Syisy,1,65,581442,247 +699659708,Melon944,0,8,33075,789 +699660539,Fresio,47,131,1013001,145 +699662232,raflinski,1715,2,5005,1320 +699664910,rze%C5%BAnik88,35,24,177203,437 +699665031,juventino1988,1460,1,150,2354 +699665152,marweb,1716,4,34258,779 +699665188,dawdevil,0,0,0,2963 +699668392,Lady+K8,0,1,26,2689 +699671197,arzipi,785,17,139255,477 +699671454,gazela1209,291,33,226619,396 +699672060,Mario+76,210,1,628,1962 +699673236,Ulanyksiadz,1590,1,354,2108 +699674355,Aniuta77,0,0,0,2964 +699676005,Groovyq,35,121,1159351,119 +699677277,MalinowaZaba,429,1,855,1887 +699678739,seba3333,59,0,0,2965 +699678801,Sir+SilverBaron,664,1,2632,1563 +699679662,Komaros1992,1312,2,7541,1178 +699682780,Krzych0007,0,1,3242,1486 +699684062,WanHeDa,120,49,425783,294 +699684693,XanSaul,0,2,17903,955 +699685533,Szaszka,1755,1,1111,1817 +699687328,AlekTbg,0,1,2584,1565 +699688180,Adijen,1735,2,10697,1065 +699693687,Nevada,210,1,3491,1457 +699694284,Yomasz,68,22,108695,524 +699695167,Kosiarze,369,59,364785,316 +699696740,AjuZGora,0,1,210,2252 +699697136,Hrabia+mol,1108,2,15563,989 +699697558,Deveste,1,442,4174509,6 +699698079,kejmill,1480,2,9398,1107 +699698253,Dominatorxd,120,43,267152,371 +699698745,Bliskoznaczny,0,1,26,2690 +699698873,PrawdziwyIlveron,1751,1,68,2508 +699699422,Krukuu,0,1,1038,1835 +699699563,maciejasz3k,29,1,1066,1830 +699699601,szczylo,666,5,27297,836 +699699650,Zdrowa+Pi%C4%99ta+Achillesa,1787,1,26,2691 +699700007,xFeFe,0,1,26,2692 +699702049,xandread,0,1,74,2495 +699703295,kowalola123,1597,2,12951,1032 +699703642,LadyAnimaVilis,120,92,874818,166 +699703782,pacyfic,0,0,0,2966 +699704542,Geriavit65,120,59,378346,310 +699705601,Kamilkaze135,291,23,164547,445 +699705910,KiepLach,0,1,26,2693 +699706047,zbycho73,0,0,0,2967 +699706955,migs,106,13,56866,667 +699707057,Adrianxl95.,0,1,26,2694 +699709160,Baat,220,1,872,1882 +699710633,Valhim,862,28,240726,384 +699711334,najarany+szachista,0,1,26,2695 +699711706,malaula,29,10,43684,721 +699711723,prayforyou,432,13,85756,572 +699711926,Inchi,157,41,226407,397 +699711996,Lord+lotos652,1466,1,390,2078 +699712243,KrzysztofBerg95,452,1,463,2030 +699712422,kukas94,1724,1,791,1903 +699713515,Shrek+z+Bagien,1740,19,122227,501 +699714935,Marian1960,0,1,177,2318 +699716785,Nijord,157,1,2273,1605 +699718269,SweetPain,291,12,63395,642 +699720374,rutej123,0,1,116,2433 +699721590,hiszpan78,0,1,409,2066 +699722599,Sandre,85,204,1913004,54 +699723284,Aissa,47,104,998306,147 +699724603,Sir+Ma%C5%82y101,236,1,262,2197 +699725436,Dimitria+x+Ciemny,71,91,854869,171 +699726660,ryhu,33,1,2889,1528 +699728159,Woocash,120,78,536636,256 +699728266,Buzka9395,1627,10,32815,790 +699729211,Robert242,0,1,483,2021 +699730399,Cypis666,1627,1,5440,1297 +699730714,Neroven,68,7,33194,787 +699730998,MATTI,944,8,26894,841 +699733098,Le+Coq,1808,3,20719,909 +699733501,Jopo32,1293,6,48852,700 +699734152,micha6,0,0,0,2968 +699734445,Sir+HEROES,8,2,8276,1141 +699734795,cobra2ooo,1376,1,628,1963 +699735020,dz1ku,291,1,9800,1087 +699736927,Bociarze,7,383,3245040,15 +699736959,mackooo24,666,2,8400,1137 +699737356,Sekou,301,82,626565,227 +699737563,Agamemnon,0,1,26,2696 +699738350,Ramdzis12,291,37,333297,340 +699739523,Ysiek,723,1,2771,1549 +699739891,Waldus,1551,0,0,2969 +699741694,Mega+Niepokorny,68,4,6650,1225 +699742054,Yeta,0,0,0,2970 +699744012,piratwoj,210,2,4075,1394 +699744766,CriS00,1523,2,12821,1035 +699745265,Misteryo777,39,6,57123,665 +699747504,maciusw,0,1,154,2348 +699748916,Dominoo1,0,1,429,2054 +699749184,Strusiek,0,1,422,2061 +699749530,mefisom13,0,1,412,2064 +699751062,Hejhej,517,1,318,2137 +699751562,gracforfun,0,1,1158,1802 +699751887,zbawiciel4,0,1,64,2520 +699752402,leonek,0,0,0,2971 +699752776,rafixiem,0,1,246,2213 +699753640,Raguel888,1621,7,25073,861 +699753863,Poranna+Gwiazda,0,1,212,2249 +699754856,Zwolin,29,1,5794,1274 +699755859,lixx1337,385,1,5017,1318 +699756210,rafaldan,1,169,1639064,69 +699756403,lucko5,0,1,26,2697 +699758688,Bedoi+King,1399,2,7181,1199 +699758721,PanCake,0,1,59,2529 +699759128,Guachilla,85,214,2056857,45 +699760696,Zaba12,0,1,26,2698 +699760767,ZemstaPowraca,285,0,0,2972 +699761749,Szwedzio,1,172,1692720,67 +699762118,Jaayzik,0,1,26,2699 +699762681,Maarri91,0,1,26,2700 +699763225,waldaksi12,847,9,24622,869 +699765601,Gryzipi%C3%B3rek,129,1,1537,1728 +699765971,Banan001,0,1,26,2701 +699766223,bart1234,0,0,0,2973 +699767482,akamee,0,1,26,2702 +699773770,Lis44,0,1,64,2521 +699774694,Trip+kuba,1735,9,19297,930 +699776412,semunus+x+Przemek9595,0,1,26,2703 +699777234,7.62+mm,1,86,791741,183 +699777372,Marioesp,71,21,132574,489 +699777556,dami991,1724,1,2105,1634 +699778028,Black+Bird,39,1,942,1862 +699778684,Lego.,0,1,227,2232 +699778867,kimbos,301,88,802141,178 +699779038,Feleross,0,0,0,2974 +699780721,ptomptom,0,1,634,1958 +699780873,Lexlutor,106,1,6192,1253 +699781390,Sir+Christopher+Last,33,1,836,1892 +699781605,Asmo17,722,0,0,2975 +699781762,Meok,120,104,1012342,146 +699783063,Tzarski707,0,3,15784,986 +699783641,mily546,0,0,0,2976 +699783765,xKentinPL,47,453,4364131,5 +699784536,kocziurs,120,177,1825164,58 +699785141,miki021,0,1,793,1901 +699785935,Vampirka%2A+x+Czaru%C5%9B,35,217,1962448,50 +699788305,lihtum,1,33,301741,352 +699788972,Saintros,0,1,26,2704 +699789609,LuzakNT,0,1,2274,1604 +699790202,Pokraczny850,0,1,26,2705 +699791054,Shooott,847,2,3587,1442 +699792747,Fatality51,0,1,5653,1284 +699794286,Somalija,0,1,80,2482 +699794421,wieslaw1,68,5,15473,991 +699794720,Ozilo,29,2,6815,1218 +699794765,KrulAndrzej,47,151,1053216,136 +699795301,Paranormalny,452,1,1557,1725 +699795378,hurricaneAG,85,44,403163,301 +699795698,dabek,0,4,24724,865 +699796330,SugarDandy,47,171,1372800,88 +699796630,nero26,452,2,6182,1254 +699797065,peterw21,0,1,26,2706 +699797252,Kaimek,96,1,3077,1503 +699797508,biunar,0,2,14858,1003 +699797805,Terminatorka1992,194,14,49591,697 +699798611,marekkkzzz665,0,1,252,2206 +699798847,aquarius250000,0,1,133,2389 +699799629,KaZZiu1993,309,41,353528,326 +699800377,Frupek,0,3,6371,1241 +699800992,BeIIator,0,1,6057,1262 +699802009,przemekagatki,0,1,26,2707 +699802012,alexwpr,452,2,4743,1343 +699803070,Ravmlm,0,0,0,2977 +699803189,MojaJedynaMi%C5%82o%C5%9B%C4%87,1597,3,8104,1151 +699803939,Drain,0,1,960,1855 +699804790,snake5665,1140,42,323491,345 +699805379,Pampun,1312,10,18153,946 +699805839,DejMon,666,22,111829,517 +699807296,Kuba555,847,1,318,2138 +699808655,solek4321,0,1,1119,1814 +699811133,bleta+spz,0,1,275,2187 +699811844,Time+Traveler,452,1,26,2708 +699812007,Pediadoks,291,26,204993,414 +699812351,Lisu79,1627,5,9398,1108 +699812571,kryska6969,0,2,3701,1428 +699812653,King+Arkadius+1,1724,1,1082,1827 +699812824,WhiteMuffin,0,1,32,2587 +699812828,RYSIO+E46,0,1,26,2709 +699812869,TheKingDestroyer,234,1,3257,1485 +699813587,Monsio,0,1,194,2290 +699814283,Majson+x+SZEF+RYSZARD,0,0,0,2978 +699816699,ksi%C4%85%C5%BC%C4%99+plemienia,0,1,881,1879 +699818726,Felicjan,194,23,162314,449 +699820572,Stresik,0,1,129,2398 +699820969,NikoMat,0,1,53,2541 +699821629,Lady+Miriam,1411,12,53533,673 +699821755,Dawidoff,1411,3,21574,897 +699823365,lulus69,0,0,0,2979 +699823490,hubert21227,106,11,68758,620 +699825089,miro75,0,1,32,2588 +699825236,magregor,194,15,102890,532 +699825797,gozzi+vel+jammeroe,1810,1,201,2269 +699825977,Feruell,0,1,133,2390 +699826312,grzeg,29,1,387,2079 +699826338,Baku97,0,1,26,2710 +699826996,krzy%C5%BCak1,377,1,1128,1812 +699827112,Orientall,369,33,308293,350 +699828338,Pigula1983,31,1,5474,1295 +699828442,Adalino,369,125,1042105,138 +699828685,myself,369,136,1088128,130 +699829494,BOA1,1735,7,31743,798 +699829916,Scarface91,0,1,3006,1512 +699829975,amsz,415,1,26,2711 +699830255,Lord+Sloik1935,1312,5,26268,850 +699831193,daria519,0,1,1611,1714 +699831366,P0L0,443,0,0,2980 +699831524,Pan+%C5%9Awirusek,0,1,26,2712 +699831603,Maniek.W,0,1,26,2713 +699831860,kawon2,651,2,2378,1590 +699832431,sznur,0,1,351,2110 +699832463,msramfis,862,5,20387,913 +699832737,LOCODEMACONHA,0,1,26,2714 +699833171,Roffi,120,21,123992,498 +699834004,Zero-,71,51,434677,291 +699835178,CrazyJack,0,1,191,2298 +699837483,MarcelloGawron,647,6,22924,886 +699837826,pierer123,862,16,68055,622 +699840189,piro78,1724,1,3589,1441 +699841905,Donek94,68,1,3464,1458 +699841959,Koticzak,157,1,3627,1435 +699842008,Harald+Pi%C4%99kny,0,1,26,2715 +699842078,VencedorPL,0,1,26,2716 +699842853,kriz73,1621,2,2562,1566 +699843389,Foks,0,1,499,2013 +699843417,hello11,0,0,0,2981 +699843936,Marecki2222,0,1,50,2553 +699844314,Szarik1,1627,7,16717,974 +699844594,MocarnyCzosnek,0,0,0,2982 +699844727,Marcinho10,77,1,2177,1622 +699844880,kilolo,0,1,321,2135 +699845179,Alanoi,210,1,204,2266 +699845400,czarny1975,1023,5,31338,803 +699845927,PROboszczz,0,1,74,2496 +699846892,Kupsztajl,0,51,323356,346 +699847354,jaro222,234,1,286,2172 +699849210,Alicei,7,58,381689,307 +699850967,GeraltV47,0,1,384,2081 +699851001,drrakox,0,1,26,2717 +699851345,Krolik14,35,26,237463,388 +699851426,Sir+%C5%9Amigi,0,0,0,2983 +699851427,ScigusseK,7,105,1055523,134 +699852080,Lord+Nemo,1627,3,7101,1203 +699852606,jacek1891,0,1,72,2499 +699853308,Hubs1,375,1,3290,1481 +699853526,Morbital,1232,1,651,1949 +699854312,Yebiewdenko,847,4,6221,1252 +699854484,DonSzwagreone,1,121,976489,152 +699854830,b5artek,1128,7,37451,758 +699855277,bastekx,0,1,26,2718 +699855469,Anko+Itosu,0,1,26,2719 +699855647,Michal+CR7,0,1,2842,1537 +699856830,Chudy19,176,1,366,2101 +699856962,Suppx,47,251,2256455,39 +699857387,Luk160,862,13,102117,533 +699858313,matstr,24,4,12978,1031 +699858423,zniszczywacz,0,1,187,2305 +699858532,exim,129,1,602,1969 +699859013,PECUS,0,5,32080,794 +699860418,ociek123,847,1,3037,1509 +699860651,lord+Micha%C5%82+1,0,1,68,2509 +699861004,PanTatami,85,10,90496,561 +699862278,w%C5%82adcamarceli,1209,1,2443,1580 +699863708,janusz6161,210,5,20932,904 +699864013,Arek486,666,13,93184,551 +699864609,champion271,0,1,81,2481 +699865603,damianslipiec,0,1,26,2720 +699865716,Piorun000,0,1,333,2125 +699866225,Pietrasfryzjer,80,1,639,1954 +699866271,Driata,0,1,812,1897 +699866510,EvilTwin,33,1,55,2534 +699867390,tomek-gt,0,1,435,2050 +699867602,wlodas62,1448,0,0,2984 +699867743,Skonek%C5%9Awir,0,1,1014,1845 +699868002,tw1ster2,120,12,79088,587 +699868399,Savek,0,1,26,2721 +699868448,OgnistaOwca,778,1,54,2537 +699868739,TOLCIA1,1597,6,18120,949 +699869682,wancki+i+gustlikk,0,0,0,2985 +699870198,JabaDu,0,0,0,2986 +699870267,aitseb,0,2,3814,1416 +699870923,LodowyPty%C5%9B,0,1,26,2722 +699872032,Ainsley,1535,6,46980,706 +699872401,PanByczek,441,1,3559,1447 +699872616,Kr%C3%B3l+Ja%C5%9B,1226,5,29848,820 +699873141,mayald,597,1,127,2409 +699875086,Impro,0,1,26,2723 +699875132,jarekamyk,0,1,3602,1438 +699875213,Sir+atylla,862,11,26592,847 +699875650,Czamba%C5%81amba,441,1,559,1988 +699876345,AG2018,39,21,184011,432 +699876653,slawekkrasulak,0,1,26,2724 +699876746,Zielony+Zielony+Zielony,106,4,16145,982 +699877413,Panda+Gomes,0,1,329,2126 +699878150,Pan+Magneto,291,34,210170,410 +699878443,ChudyMRW,441,1,387,2080 +699878511,Lorus22,120,105,622368,229 +699878952,100dni,0,1,26,2725 +699879113,munban,0,0,0,2987 +699879556,MDKS,0,1,3118,1498 +699879927,szymi3,0,0,0,2988 +699880701,Swoboda,758,1,889,1871 +699883079,VN+No+Door,1,249,2211801,41 +699883836,Soldier2020,452,3,9446,1104 +699884788,klogan,1597,1,6261,1249 +848882397,Puma79,0,1,2147,1626 +848882446,Kamilooo97,1724,1,694,1932 +848882577,lukaszn93,1312,1,5942,1266 +848883237,Flinii,291,49,346690,333 +848883542,Matz32,686,1,523,1999 +848883684,Bele7h,369,47,348803,329 +848883791,Jerzy-z-Lodowca,1724,1,609,1967 +848886056,Abo+co,1621,25,121632,503 +848886200,Bochunn,0,6,31482,802 +848886870,Akuzinek1,39,16,165643,444 +848886973,Traczu+Dominator,7,39,311840,347 +848887011,Laduu,0,1,95,2469 +848887199,Marceldom,1052,2,6833,1215 +848887366,Crift,0,1,1622,1712 +848888394,boyka8721,0,1,45,2570 +848888787,Samotny+Wilk,290,1,197,2280 +848889556,bohatejro,106,13,113726,515 +848889850,jonllll,1597,6,31899,796 +848890012,Glaber,1226,2,3543,1452 +848892804,Josef,1312,3,4828,1336 +848893447,Latino,0,1,26,2726 +848893520,marekttt,0,1,26,2727 +848895676,WarDuke,106,6,20894,905 +848896434,Liczyrzepa,0,12,29211,827 +848896948,TheDoubleSunset,369,54,503251,267 +848897333,Dziwny+As,0,1,119,2428 +848897972,Skiczak,0,0,0,2989 +848899726,Savi,301,15,109899,521 +848901396,Kekuu%C5%9B,0,3,12867,1033 +848901822,koka17,636,1,952,1858 +848902592,Generalruski,633,16,80649,582 +848902744,sliwatojo,722,4,32146,793 +848903260,Gazun,39,1,3428,1466 +848903690,Rajmundeq,822,1,4335,1373 +848905770,TakiKris,1128,1,211,2251 +848905784,epstein.,0,1,123,2416 +848906441,ACFT,0,1,26,2728 +848907771,DZiki250,0,2,8327,1139 +848908144,Speedway007,397,1,1170,1798 +848909122,hujozo,452,1,238,2221 +848909292,goodvibegoodman,452,1,1284,1780 +848909464,klops3,369,46,410742,297 +848910122,GrzyBson04,1411,9,16153,981 +848910971,xMario25x,1804,1,26,2729 +848911863,zapomnia%C5%82em+has%C5%82a,0,1,288,2168 +848912151,aegalionkak,0,1,26,2730 +848912265,Luftmysza93,1,71,557685,252 +848912772,xNieZnaJoMyx,785,25,236502,389 +848912937,Szalony+Ost,96,2,5186,1308 +848913030,Makoo,77,1,26,2731 +848913037,FraPe,47,92,758784,189 +848913252,DAJWIDOS16,0,2,4005,1399 +848913998,Kuzyn+Piotru%C5%9B,7,129,912301,161 +848914120,Lost+im+Wald,0,1,1175,1797 +848914661,M+A+S+S+A+C+R+E,1523,1,26,2732 +848915032,Naval3,0,1,7357,1191 +848915531,Amator7,120,171,1534905,77 +848915730,szunaj23+x+Kewlys,1,435,3941584,9 +848915956,Kreynoss,0,0,0,2990 +848916779,Davcio1994,234,1,26,2733 +848917127,PiotrekPazzi,157,1,158,2343 +848917401,G%C5%82az,452,1,1083,1825 +848917570,JURAND+WIELKI,1368,10,43351,726 +848918262,Przekocur,0,2,17663,961 +848918380,THEvMOLKA,309,241,2405472,31 +848919959,arusaru10,285,0,0,2991 +848921536,DemolkaHD,1411,17,100943,536 +848921793,kubaaa26,1523,1,11678,1048 +848921861,Tiex,1226,28,260569,377 +848922118,Perszing125,0,0,0,2992 +848922517,Albertini,0,1,26,2734 +848922958,Luftwafel,1312,4,7807,1164 +848923540,nival,0,0,0,2993 +848923646,mani4884,0,1,26,2735 +848923754,monkeyy,0,1,55,2535 +848924219,AndziaN,862,15,61567,650 +848925840,Ariel69,1040,2,18018,953 +848926070,KOSMACZ1,0,1,439,2044 +848926293,Mr.Creep,35,42,329070,342 +848927262,Loca,0,1,54,2538 +848928486,ciachbabkewpiach,0,8,55903,668 +848928624,Mr+Bizy,39,35,254901,379 +848930111,Slawpol,80,2,18564,939 +848930498,5dych,129,1,140,2370 +848930898,Niez%C5%82omni+44,31,4,14167,1011 +848930996,cwaniaczek25,0,1,26,2736 +848931321,tomek709,0,1,10986,1059 +848932115,Raff+Tierro,0,1,260,2200 +848932879,m%C5%82ody77,301,59,449958,283 +848933470,toficiii,1687,2,1027,1839 +848934935,Czakalaka,1,148,1237856,107 +848935020,Bkonkel4,291,28,219178,405 +848935389,Agresywny+Gabriel,0,35,346421,335 +848935732,Ar%C4%85Staro,29,1,2145,1627 +848936053,Born-kes,1108,1,2537,1572 +848936229,marianos1994,0,1,689,1936 +848937248,Saran1,412,12,34181,780 +848937780,SiwyStaruszek,0,1,1308,1774 +848939131,MichaelCh,0,2,3719,1426 +848939203,Szczerbatka,452,1,1468,1741 +848939434,wikingowy4321,0,1,233,2227 +848940223,damiano3106,0,1,129,2399 +848942565,Alibaba420,210,1,425,2058 +848942587,kamilpo4,1226,3,21485,899 +848942618,Gebels25,441,1,158,2344 +848942734,Harpun98,0,1,512,2007 +848942847,taysi,441,1,1917,1665 +848942968,Stalker1,0,5,20266,915 +848943145,allombard,847,1,3442,1460 +848944455,aniarobifoty,0,1,379,2089 +848944534,piteroch,1785,1,226,2234 +848945529,Niunia1,1621,13,66153,630 +848946608,-Robert-,520,6,25610,855 +848946700,Lord+Maximus,291,49,299401,353 +848949271,sebo1303,375,1,135,2385 +848949517,Machoneyy,0,1,987,1853 +848949597,RadoLigonss,785,6,29462,824 +848950255,Tabaluga1922,0,1,871,1883 +848951699,Szp4Q,0,1,129,2400 +848952556,Arthi1991,31,1,783,1907 +848952566,morogram,0,2,6100,1258 +848953066,Pippo11.4fun,71,13,110272,520 +848953472,kizak1,0,1,1458,1742 +848954163,Wiecznie+pok%C5%82ucony,0,1,1005,1847 +848954236,C.a.,0,1,3454,1459 +848955311,PyrMen,0,0,0,2994 +848955756,Patryczekk,452,1,310,2145 +848955783,Bucks+x+Kamiiiru,47,188,1477500,81 +848956013,%C5%81otrka,147,0,0,2995 +848956513,Ilia+x+BieniuS,35,258,2484327,28 +848956537,real124,0,1,26,2737 +848956765,Fristajla,1,376,3160102,17 +848957381,chwalka,1811,1,53,2542 +848957736,Rwa1,0,1,26,2738 +848958005,Chwedi,29,1,1060,1832 +848958111,WannaBeLoved,0,0,0,2996 +848958556,Bill40,0,5,16353,978 +848959231,swistolek,12,0,0,2997 +848959422,Bozydar666,0,1,217,2246 +848960061,Karolo1,0,1,416,2062 +848963236,Mararte,92,1,3421,1467 +848963521,Adrian8808,68,1,1633,1710 +848963634,etrusk,0,1,26,2739 +848963694,Limited23,0,1,241,2219 +848963696,Soro,0,1,26,2740 +848964085,Huayna+Capac,0,1,26,2741 +848964811,Sir+zombi,0,1,821,1894 +848965205,QdamianQ,0,1,93,2474 +848965531,utache,375,1,209,2255 +848966404,%2AKaziu%2A,0,1,47,2564 +848966521,Lu%C5%9Bka1206,1128,3,12425,1040 +848967422,Frenchi,0,1,10611,1069 +848967710,Exano,35,258,2525577,25 +848969160,acer123,0,1,1259,1783 +848969313,Vebo,24,1,4522,1358 +848970357,KrwawyBaronW3,106,2,5453,1296 +848971079,mocek12345,35,131,1146963,120 +848973715,Pawlo101,0,3,10841,1060 +848973968,AP1997,0,1,249,2209 +848974611,dawid20211,1312,1,5712,1278 +848974774,Arco87,0,1,249,2210 +848975192,Chmielu0927,8,1,2420,1585 +848976034,kiljanos,0,9,48218,701 +848976720,Lord+Patka999,33,1,412,2065 +848977118,sucha+woda,1232,1,469,2027 +848977203,mateusz15963,0,1,6747,1221 +848977412,goska111,96,1,3510,1455 +848977600,piwkoo,106,15,79365,585 +848977649,Maszlug,1621,24,164324,446 +848977748,Varendial+x+Visyq,432,1,26,2742 +848978052,Biegacz1,1466,1,171,2328 +848978169,zielonyjohn,0,1,26,2743 +848978284,olos,1551,0,0,2998 +848978297,Marcinmesi,1128,7,39458,742 +848978534,JUlkA07,0,0,0,2999 +848978903,RIPNAMAJKU,785,5,37327,760 +848980119,ndse,0,1,26,2744 +848980120,bsju,0,1,26,2745 +848980237,yonek111,785,1,8776,1121 +848980456,gsno,0,1,26,2746 +848980458,khiu,0,1,26,2747 +848980459,cvde,0,1,26,2748 +848980460,fswq,0,1,26,2749 +848980461,nipki,0,1,26,2750 +848980492,veru,0,1,26,2751 +848980493,tews,0,1,26,2752 +848980494,laszc,0,1,26,2753 +848980495,nmih,0,1,26,2754 +848980496,afad,0,1,26,2755 +848980497,vosd,0,1,26,2756 +848980498,amlk,0,1,26,2757 +848980727,vasper123,778,1,729,1920 +848981244,Kaktus49,0,1,4169,1387 +848981523,wozny1020,210,1,284,2177 +848981726,Rudzia06,1108,12,58967,659 +848982634,anda22,441,8,17779,959 +848982635,piter787878,1770,1,153,2349 +848983660,Janusz9704,0,1,7062,1206 +848984022,dafffciu,0,1,9634,1096 +848985692,Lord+Axen,85,347,3331514,13 +848986287,Klemens+Zdobywca+69,309,16,153732,463 +848986638,Gwen1,722,8,7783,1166 +848987051,Lord+Pumbarak,35,133,1099723,126 +848987695,goldman,1627,1,3321,1475 +848988401,niko30,0,3,13793,1015 +848988744,euro97,1226,7,46020,710 +848989774,kuba939,0,1,26,2758 +848989855,Zard,1399,3,23269,880 +848993505,Mallutka33,0,2,10648,1068 +848993769,Lord+Rycerz96,1627,2,3429,1465 +848993903,ekopark,0,1,52,2544 +848995242,Szpingischan,369,97,939344,156 +848995262,Dj-saken,0,1,445,2043 +848995291,SirArthureek,210,1,5028,1317 +848995446,AndrzejJ96,0,1,301,2154 +848995478,Delongii,301,78,548334,253 +848997058,jaktoon,0,1,78,2487 +848998530,Orgetoryks,847,5,21455,900 +848999448,Etitek,0,3,6817,1217 +848999518,CccC2,0,1,140,2371 +848999671,TakaTo,71,43,253527,380 +849000135,NoeyPl,1758,5,26349,849 +849001277,Ci%C4%99%C5%BCki+Kawalerzysta,1108,3,14048,1013 +849001388,Mizerkaa,0,1,26,2759 +849001572,Daremny,120,64,599954,238 +849001724,Tloluvin,39,4,40212,739 +849001762,J3bacTo,0,1,267,2193 +849002091,klima69,309,18,148422,469 +849002486,ManchesterKing,0,1,79,2486 +849002796,Hamar,1079,15,82277,577 +849003332,Co+biedaa,0,1,26,2760 +849004274,guex,71,28,273092,366 +849004338,Hwastu,0,1,26,2761 +849004461,LO%C5%81KICK,1724,1,1908,1669 +849004759,..Tomek..,0,1,2310,1599 +849005658,Skols998,24,1,2841,1538 +849005829,themonk,194,4,13430,1025 +849006011,faraon1981,33,1,453,2036 +849006145,pledos,71,12,104204,529 +849006194,KAUN,0,1,180,2312 +849006385,Lord+MARCEL12345,1597,14,52710,677 +849006412,Madarra,291,37,335228,338 +849008396,szymoniasty2740,0,1,352,2109 +849009059,Krasnoludek.M%C4%99drek,1804,1,26,2762 +849009623,Sir+zamelus365,1226,7,38529,750 +849009945,TheZeNiT,0,1,26,2763 +849010255,rutecky,1,69,517656,261 +849010386,Pomidorop,0,3,3354,1472 +849010955,stefek+alibaba,0,1,105,2449 +849012219,HotChrum,0,1,219,2245 +849012521,Born2befree+x+Hitman007,7,123,1044396,137 +849012843,Darktix87,1480,36,184145,431 +849012985,killeer,0,0,0,3000 +849013126,Baala,432,16,114189,513 +849014147,piotrekbmm,666,13,71313,608 +849014413,sygut,301,17,172773,441 +849014922,Tomasz+%C5%81omot,1480,122,347205,331 +849015875,DrJointtt,1750,0,0,3001 +849016425,Bombelnik,0,1,143,2363 +849016844,bartki37,0,1,102,2456 +849017820,Silent17,432,25,149942,468 +849017894,trail,385,1,3794,1418 +849018239,-P3K-,120,348,3249730,14 +849018442,go%C5%9B%C4%87018443,106,65,355273,322 +849018778,Lord+Pynio,1597,1,7266,1196 +849018780,Lak1,29,1,1289,1779 +849019785,peres5130,210,1,788,1904 +849020094,Bartonzkl,1597,13,68261,621 +849020212,InnosensQ,733,1,26,2764 +849020667,Szrek5,647,1,3864,1413 +849021566,raskip,157,2,12702,1037 +849022063,misiek650,441,1,189,2301 +849022649,mikiwnyk,0,1,2956,1518 +849022907,KeymilLoveOrHate,0,1,26,2765 +849023078,pingwin112,0,0,0,3002 +849023212,Aleksander1973,157,1,7649,1173 +849023337,%C5%82ysy97,0,1,26,2766 +849023540,Ed3kMonster,1523,1,233,2228 +849024152,polska1234,29,1,1156,1804 +849024208,Rychu0890,0,1,517,2003 +849024333,skwarol888,0,0,0,3003 +849025083,martwy+dzik,766,0,0,3004 +849025558,Szezeger,0,1,2762,1551 +849025839,adhd,0,1,68,2510 +849026145,Writter.89,1039,27,120365,504 +849027025,So%C5%82tys+ca%C5%82ej+wsi,47,146,1171556,117 +849027653,BIG+PAPA.,291,9,91645,558 +849027712,tomalascala,210,1,6370,1242 +849028040,Abazur,0,1,80,2483 +849028071,Dom+Kichot,1724,1,26,2767 +849028088,Bexaaa,120,37,355061,323 +849029077,Kluha+Jo,1312,1,141,2367 +849029559,BOMBA+NA+BANIIE,0,1,26,2768 +849030062,Domino00155,0,1,704,1929 +849030086,Arehukas,0,16,80246,583 +849030226,poolie96,7,108,1097491,127 +849031197,miodek1143143,0,1,26,2769 +849031759,ponger19955,862,1,505,2010 +849031779,jekord,0,1,26,2770 +849031818,Kinglevy,85,29,222966,402 +849031846,Lolek3333,1780,0,0,3005 +849032027,Sir+dziadekk19,647,1,786,1905 +849032059,Stickman,1780,0,0,3006 +849032413,onek666,0,1,379,2090 +849032414,georgek,39,35,229400,393 +849032741,Deylor,0,1,453,2037 +849033395,S1mple...,0,1,26,2771 +849034666,FanBednar,0,1,3137,1496 +849034882,GamiBer2021,71,58,605371,235 +849034917,Bombalena,432,1,9091,1114 +849035447,pinkolinka,260,1,5873,1270 +849035525,Aiken,71,53,495116,271 +849035905,Jamapet,291,76,687001,209 +849036055,AlfaCentauri,1040,1,30,2589 +849036262,egon+322,0,0,0,3007 +849037354,Saint+Clair,412,2,6329,1245 +849037407,Ksi%C4%85dz+PL,369,129,1205619,113 +849037469,h1d3th,1,46,393729,303 +849037699,shokode,651,1,6430,1236 +849038195,Spekulant951,0,1,170,2329 +849038572,Bzyyykox3,0,1,191,2299 +849038597,janusz12,0,5,14830,1004 +849038985,Kraken121,1724,1,2059,1646 +849039310,vwbora,1226,17,123919,499 +849039766,wolf1982,0,1,26,2772 +849040142,Vizier19,785,19,113403,516 +849040194,RabarbarWB,666,2,14574,1006 +849040332,lukaku,0,1,65,2519 +849040462,emilek,0,2,4868,1333 +849041192,Lord+Tost,35,14,70533,611 +849041557,Kavve,0,1,98,2464 +849042461,perespol43,0,1,2077,1642 +849042480,michelangelo420,210,2,6177,1255 +849043776,touchmeboy,0,1,430,2052 +849044705,Tathagatta,194,20,119967,505 +849044724,xarans,0,1,1146,1805 +849044961,Pawe%C5%82U136f,134,5,31116,808 +849045047,Songoku29,0,0,0,3008 +849045675,Debe%C5%9BciakZpodlasia,1052,8,67149,626 +849045915,Gremar90,452,2,16882,970 +849046206,Zuzia,1785,1,1117,1815 +849046232,kamilos937,785,4,34354,778 +849046397,kamera,0,1,52,2545 +849046647,D%C5%BCejd%C5%BCejj,0,1,26,2773 +849047044,Angelyears,1466,7,58702,660 +849047233,Morgan578,1312,7,32793,791 +849048112,mrozzo,1480,1,26,2774 +849048216,Wektor39,722,12,43533,723 +849048241,Krystian438997,1692,1,5178,1310 +849048455,Brannigan,0,1,1829,1685 +849048552,Sylwiaa1234,112,1,68,2511 +849048562,Adam19955,31,1,8663,1126 +849048734,Wincy94,1597,6,26027,852 +849048856,Ffran,0,6,25009,863 +849048867,sylwek02,301,30,208171,413 +849049045,rafal9725,0,14,138889,478 +849049155,NHL2022,0,3,25956,853 +849049288,maaadzior95,377,1,2818,1543 +849049864,Itadakimasu,0,1,26,2775 +849050087,bunu,847,3,3097,1499 +849050191,Sir+Refresh,1734,1,5703,1279 +849050410,221719123,0,1,26,2776 +849050734,piotrpeters,647,0,0,3009 +849050849,Dawid+84,722,7,49759,696 +849051363,Tomus+01011973,0,1,337,2121 +849051436,Cataloniaa,1523,0,0,3010 +849051731,dzidek76,210,1,3414,1468 +849051976,AdamC7,0,3,22245,890 +849052195,PaszaBiceps,0,1,226,2235 +849052289,Avilkson,1312,1,8663,1127 +849052488,Terada,0,1,358,2105 +849052549,Mateo1315,80,1,26,2777 +849052588,nula132,0,0,0,3011 +849053122,mockingcoffin,234,1,2886,1530 +849053868,Hajotus,0,0,0,3012 +849054582,Pompka15,291,46,328897,343 +849054606,TheMooon,0,1,205,2264 +849054951,maxigtr95,309,48,462887,280 +849055096,dorkness,0,1,136,2380 +849055181,Lord+Arczi997,1312,9,22758,888 +849055309,Rango,31,1,772,1910 +849055425,Karl+Dzikens,39,16,110361,519 +849055527,fikumiku111,1096,1,179,2315 +849055553,Bv3y,1597,2,7151,1201 +849056475,lis+1,0,1,1298,1778 +849056744,setts,862,7,33390,784 +849056892,General+Kaczor,0,0,0,3013 +849057176,Patoszek,0,0,0,3014 +849057450,Rutalo,1724,1,1851,1683 +849057572,L44ndryn,862,2,17788,957 +849057655,Pimpu%C5%9B,0,1,52,2546 +849057764,Grzejdas,862,8,30945,811 +849059331,Hubida,0,0,0,3015 +849059457,serwis%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F,1621,17,103761,530 +849059491,Robbinho,35,33,268910,369 +849060099,Krycek,0,1,9097,1113 +849060357,Marcelinka,0,1,2198,1620 +849060446,karu7,85,31,288816,358 +849061374,kosiarapan,291,11,101590,534 +849061406,BastianCHW,0,1,26,2778 +849061417,Poqson1337,1627,1,437,2047 +849061418,Bellu,0,1,26,2779 +849062546,karlitos+MMz,0,1,4432,1367 +849062920,TheJarzabek,285,2,5852,1272 +849063605,Mescalero,112,1,291,2163 +849063793,Nowak2508,285,11,40423,738 +849063849,specanz,47,80,620064,230 +849063932,Electriccc,0,0,0,3016 +849064084,bolek13241,0,1,2648,1559 +849064087,Myszka21,0,1,401,2070 +849064614,rzecznianin,47,96,543569,254 +849064715,Forwalls,689,1,132,2394 +849064752,Soliz,1,363,2920075,18 +849065566,warmonger,1347,1,43,2575 +849065606,AriaVikings,1724,1,1109,1820 +849065697,aJMers,39,1,3533,1454 +849065829,Sir+Kmicic,210,1,209,2256 +849066035,lukasz111,0,1,237,2224 +849066044,Rzezimieszek96,1226,6,50182,694 +849066125,%C5%BBulionerka,112,1,254,2203 +849066618,Piorunek1996,1551,1,1418,1752 +849066808,Argo733,636,1,630,1959 +849066849,Bilonhg,39,25,136890,481 +849067079,AreYouHorny%3F,29,1,3620,1436 +849067192,borys1695,210,6,26635,846 +849067216,Gum23,8,1,3982,1403 +849068108,Haszka13,822,9,38368,751 +849068436,Kubaa333,1782,1,676,1941 +849068662,Z%C5%82ylos,1336,20,137960,480 +849069010,Jackob666,1656,1,270,2189 +849069022,Jesse1910,0,0,0,3017 +849070220,agjao,214,1,946,1860 +849070335,MaRm13,80,3,27102,838 +849070464,Thao0,85,18,142540,475 +849070736,Go%C5%82abek,0,1,5870,1271 +849070812,marko91,1783,1,1367,1762 +849070946,Didu%C5%9B97,35,81,637638,223 +849071545,timonuser,80,0,0,3018 +849071883,game777,0,1,94,2472 +849072703,83Krzysiek83,0,1,899,1867 +849072855,Luu123,0,1,93,2475 +849072873,Nika1234,125,3,24852,864 +849072919,miniorek,0,1,26,2780 +849073156,bestleevatican,8,1,1533,1729 +849073314,DANIEL48,157,1,1192,1791 +849073486,kristoferix,0,1,26,2781 +849073939,Shadow39,862,1,1208,1789 +849074508,ZimoweMajtki,0,1,2892,1527 +849075298,Gosia99,1721,2,5770,1276 +849075442,isku,0,0,0,3019 +849075744,Damian0704,847,1,2200,1618 +849075836,Buku27,106,14,106211,526 +849076187,HappyTheFriends,0,0,0,3020 +849076515,kamilos4444,1411,7,23511,878 +849076678,EWKA82,778,1,285,2174 +849076810,Dziobak6658,1411,11,49410,698 +849076953,heweltjakub664,210,1,1037,1836 +849077481,dedej,0,0,0,3021 +849078086,123Misiek,210,1,5771,1275 +849078119,lukasz45567,452,1,384,2082 +849078297,Trenger,35,11,69125,618 +849078498,UUffoo,194,1,6070,1259 +849078942,Boski222,1724,1,258,2201 +849079977,Mateuszek0330,0,1,192,2293 +849080011,IAmChaozu,412,4,13276,1027 +849080118,fedziu675,0,0,0,3022 +849080197,Vectar,452,1,2631,1564 +849080260,Apfel,0,1,1776,1693 +849080702,Zorro,1226,30,262927,376 +849081284,mlodyfacetkosmita,0,1,41,2579 +849081641,MarcinMazury,377,1,290,2165 +849081869,3637,1627,1,12154,1044 +849082154,Cipendeys,68,4,18415,940 +849082580,nappystarr,377,0,0,3023 +849082839,Minikod,0,1,26,2782 +849082848,Jastrz%C4%85b+z+NBP,944,1,4777,1340 +849083293,Vocare,0,1,3698,1429 +849083294,Merida.waleczna,285,2,7853,1162 +849083501,SaturnV,1523,9,63065,643 +849083534,Nadav,1724,1,2088,1636 +849083705,Tomasz+Stanek,0,1,26,2783 +849083725,Koc+M%C5%9Bciwy,19,1,129,2401 +849084005,Kuzyn+Jacob,7,315,2320446,33 +849084066,RROO,412,2,10406,1072 +849084474,Atero,234,1,1456,1744 +849084699,cinek1998,0,1,26,2784 +849084740,Fisherrwd,7,71,539578,255 +849084911,Rewson,1523,1,26,2785 +849084920,Magdalena82,0,2,6533,1229 +849084985,Tivis,71,116,1089732,129 +849085160,ElMajkelos,1535,20,95024,548 +849085293,Misiaczka69,0,3,4594,1355 +849085371,wykolejonymiki,1597,5,26081,851 +849085605,LukaszWspanialy,1108,2,9426,1106 +849085764,Seiyouwasabi,0,0,0,3024 +849085908,krunor,0,0,0,3025 +849085961,owusum,39,1,9735,1091 +849086074,Lady+evee,285,1,4440,1366 +849086132,dixon15pl,0,1,149,2355 +849086357,dadan2,285,1,2958,1517 +849086491,Aratorn,862,7,40841,736 +849086693,Dixon+1993,1597,1,4774,1342 +849086777,cba444,29,1,327,2128 +849086783,Anton707,0,0,0,3026 +849086817,Elban,0,1,3080,1502 +849086925,Hautoria,0,1,308,2149 +849087149,mm1370,441,1,655,1947 +849087581,takenn90,0,0,0,3027 +849087742,RichiePichie,0,0,0,3028 +849087786,jajco55,194,6,25528,857 +849087855,Pegaz,120,40,361684,318 +849087895,Izuia98,1170,0,0,3029 +849088101,Sir+Dzikus,1680,1,9972,1080 +849088199,Balti,452,2,12666,1039 +849088243,noomouse,7,85,689892,208 +849088414,Miltonia,0,1,146,2358 +849088429,Mozzie,0,1,26,2786 +849088515,Maroni,85,68,596070,241 +849088639,Goku+ssj2,1680,3,17370,964 +849088882,Jastrz%C4%99bie+zdr%C3%B3j,1597,1,3343,1473 +849088914,milosz21,0,1,75,2492 +849088923,naja1920ruch,31,1,26,2787 +849089207,Mistrz+99,285,1,179,2316 +849089323,Hyzio,1293,1,1926,1664 +849089459,Abdoulxx,71,52,442075,289 +849089499,staszku,1312,8,20829,907 +849089512,bzyku195,0,1,426,2057 +849089601,krisssak,847,11,47199,704 +849089654,wawur,412,7,14483,1007 +849089739,tobiasz22,0,1,26,2788 +849089881,mcwie,7,49,341452,337 +849090130,AdamTy,785,44,350245,328 +849090187,Flisek10th,0,1,2243,1612 +849090243,Habibi+Malik,0,1,85,2479 +849090289,Jack+Daniels,0,1,126,2412 +849090573,ZiomekWafla,210,3,4690,1350 +849090765,%3DRosalet%3D,0,0,0,3030 +849090846,marek123,1597,2,10398,1073 +849090890,szewa432,0,1,164,2336 +849090954,Dr.W%C4%99giel,0,0,0,3031 +849091060,JuanPabloII,1523,1,26,2789 +849091084,Makro,1523,10,69413,615 +849091105,Raogar12,291,58,391515,305 +849091769,wotek,7,73,618650,231 +849091866,Mat05usz,85,108,978305,150 +849091897,Danon23,35,21,195158,421 +849091899,Arnhem,35,21,130250,493 +849091947,OSkoczekO,19,0,0,3032 +849091972,Gimi7777,1797,1,957,1857 +849092109,Lord+Endy,24,0,0,3033 +849092185,Antonio+PaTeras,758,0,0,3034 +849092244,kijo,758,0,0,3035 +849092309,Klaudek,291,36,197567,419 +849092639,GONDAS9696,0,1,2334,1597 +849092685,kalou,1735,11,52975,676 +849092723,Cocofedron69,0,9,81090,580 +849092769,Guti14PL,71,26,219574,404 +849092827,Najan,85,39,284858,359 +849092868,Koza,0,1,26,2790 +849092875,Danielo3,0,1,26,2791 +849092978,patrix01,0,1,3698,1430 +849093003,DANEK31.,0,0,0,3036 +849093155,lukasz0707,0,6,43053,727 +849093353,gorzki1984,412,7,31162,807 +849093422,niangmen,309,12,115618,509 +849093426,Kuba+Zenen,369,146,1237872,106 +849093576,Sylwek2503,722,1,2078,1641 +849093724,tyskie323,0,1,129,2402 +849093742,Marek+Pustoszyciel,85,63,560299,250 +849093771,Breisse,373,1,748,1915 +849093875,Martita08,291,6,26798,843 +849093924,bezludna,0,0,0,3037 +849094006,Wie%C5%9Bmenn,0,1,7681,1172 +849094023,Tasmanski22,0,0,0,3038 +849094061,marcin2202,210,1,288,2169 +849094067,Franss,120,56,595862,242 +849094111,Antos,72,1,2767,1550 +849094147,LordKat69,0,2,15275,993 +849094319,Koziok,0,1,26,2792 +849094355,Karolinka6868,0,1,26,2793 +849094586,Nekoyo,1621,3,9944,1081 +849094597,Wyczesany+Czes%C5%82aw,0,0,0,3039 +849094603,Go%C5%9B%C4%87094603,1411,2,6933,1210 +849094609,AkademiaPanaKleksa,85,93,763442,188 +849094653,Deny2107,0,0,0,3040 +849094688,dawszz,1312,5,27078,839 +849094759,aziii2,0,6,19709,924 +849094789,kortom,0,2,12782,1036 +849094972,Sir+Moon+Knight,0,1,143,2364 +849095014,Hexiu,1428,3,17761,960 +849095068,PogromcaZabieg%C5%82ych,35,80,647169,220 +849095219,the.+mehow,0,0,0,3041 +849095227,Krystiano242,35,89,843077,173 +849095240,JohnSnow,309,2,19428,928 +849095324,CarlosPL,0,0,0,3042 +849095376,Le%C5%9BnyJebas,1108,8,62032,647 +849095430,WiktorTraktor,375,1,4279,1376 +849095435,jawor,301,9,44878,718 +849095446,extor98,0,1,26,2794 +849095448,Omikronmen,0,1,1733,1698 +849095482,Adrian+SzachMat,785,21,100757,537 +849095488,Lancer0,0,0,0,3043 +849095509,kubek86,29,7,34518,777 +849095594,Farmer155,441,1,909,1865 +849095599,Diczku,291,39,260327,378 +849095601,Hydrawydra,0,1,7686,1171 +849095642,DamianDK,0,1,3330,1474 +849095756,wiNo,0,1,26,2795 +849095771,klejmon,0,1,723,1922 +849095778,komrat966,1226,6,53043,675 +849095800,Bigosowy,1597,2,14953,999 +849095814,Go%C5%9B%C4%87095814,1729,7,15214,995 +849095825,Pty%C5%9BTurbo,0,1,138,2378 +849095829,Lukanio,1681,0,0,3044 +849095879,Go%C5%9B%C4%87095879,0,1,5001,1321 +849095948,maribast,1480,2,3889,1409 +849095959,mateuszek720,0,5,18135,948 +849095963,matrix281,1226,12,103334,531 +849095992,Koba98,785,18,144711,472 +849096041,arobest,210,1,1110,1819 +849096102,Radziox321,452,1,1954,1661 +849096123,Miczenso,0,1,4733,1345 +849096215,Ig%C5%82aa,1621,12,35985,769 +849096265,bielacz,1312,1,877,1881 +849096285,MokryRick,0,2,9007,1118 +849096310,Giser,722,11,59408,656 +849096334,Tomekrol,1226,6,36190,768 +849096341,Meldennsen,441,1,2881,1531 +849096346,chips03,1530,1,26,2796 +849096354,Artur199556,666,10,38204,752 +849096383,Kallichore,0,0,0,3045 +849096399,Vetiuss,1312,1,1608,1715 +849096435,HKS+RUCH,0,1,1456,1745 +849096454,Power76,1128,1,51,2550 +849096458,wookash,666,19,131961,490 +849096543,Alpinista,0,1,26,2797 +849096544,Proczu,1128,11,96867,546 +849096547,mikson1995,1336,7,25537,856 +849096592,Marshmike,722,1,5414,1300 +849096594,Kerpi,0,1,1562,1724 +849096606,Darma+dla+zawodnika,0,1,48,2558 +849096631,Pot%C4%99%C5%BCny+Sycowianin,1226,11,78243,589 +849096649,BudzikRide,785,2,16346,979 +849096768,Adamo,1293,7,53478,674 +849096856,pilkowski,830,1,101,2460 +849096874,Igordaniel313,1651,0,0,3046 +849096882,MarekKrk,1128,7,50119,695 +849096891,Kapral16,31,1,5698,1280 +849096936,Karakan13,0,1,26,2798 +849096944,Jarko,944,1,8598,1128 +849096945,Boru1996,39,14,22925,884 +849096958,majchi96,1336,10,77130,592 +849096972,Triton1,785,33,212593,408 +849096977,Gabiii,0,1,3842,1415 +849096979,Zachariasz+Grundbaum,1128,1,26,2799 +849096990,Mr.ElCzapo,0,1,3565,1446 +849097002,KazuyaVV,666,21,172903,440 +849097006,Hasha,0,1,453,2038 +849097103,Krystian19k,786,18,79533,584 +849097123,RediiSD,1312,2,9183,1111 +849097175,GrendysaPowr%C3%B3t,1480,5,14163,1012 +849097220,wesolykrystek,786,4,18106,950 +849097274,Feii,0,1,26,2800 +849097312,Bbartek97,1597,2,8444,1135 +849097357,morfeusz37,0,1,364,2102 +849097370,CzarnyBlade,1293,7,33619,781 +849097373,pinoki,452,1,3534,1453 +849097386,betka36,0,1,3559,1448 +849097445,eddyk,157,1,661,1944 +849097477,Artok,847,1,1519,1734 +849097614,RUCHWKSAZBUD,666,17,116143,507 +849097620,MikolajOSK,68,0,0,3047 +849097681,piotr245,1798,1,5029,1316 +849097716,Ja1234,0,13,87345,569 +849097729,Angelina2013,375,1,132,2395 +849097737,VentX,1336,15,85931,571 +849097792,MihuPoKielichu,0,0,0,3048 +849097793,Vintrax,0,1,26,2801 +849097799,wgola,39,50,391832,304 +849097837,Adamek95,1735,9,50918,687 +849097898,kRolo94,785,8,59751,654 +849097924,Aragorn93,1096,0,0,3049 +849097937,Krasnetus,120,25,219765,403 +849097954,Mr.+Schecter,0,0,0,3050 +849097981,devaster,1523,8,67394,625 +849098109,wojtek11423,0,0,0,3051 +849098132,grzegorzzdw,1690,1,2343,1595 +849098136,Arhibitsus,194,8,56988,666 +849098159,marlis1992,0,1,26,2802 +849098162,Baleron1215,0,0,0,3052 +849098192,Guru18,1148,1,6610,1227 +849098197,Dawid4321,0,1,26,2803 +849098200,pestekkinice,862,0,0,3053 +849098217,Kapral161,1797,1,292,2161 +849098265,Brauer92,862,1,26,2804 +849098299,PParker,1336,12,61116,651 +849098324,Merilly,847,1,491,2016 +849098326,piotrczi,1226,8,43843,720 +849098374,Chora%C5%BCy+Torpeda,0,1,4629,1352 +849098387,paluchowski,666,9,76690,593 +849098400,Milq,1148,2,4486,1362 +849098423,Tuna93,0,0,0,3054 +849098476,beziuleq,0,0,0,3055 +849098477,siedlik12345,452,1,1418,1753 +849098516,shart3012,1128,0,0,3056 +849098557,chmielek,1148,1,400,2072 +849098592,Aga22011993,1645,1,327,2129 +849098607,Go%C5%9B%C4%87098607,0,1,2021,1650 +849098628,Gor%C4%85cyDelfinek69,785,20,65735,632 +849098648,Kamazer1,1336,9,64315,638 +849098667,barcioch,56,1,678,1939 +849098688,Gosia08,785,42,353831,324 +849098693,1kornik83,1226,10,71201,609 +849098695,KiwiThief,785,35,263084,375 +849098724,cienki11,452,2,7288,1195 +849098727,Riv93,1148,3,11020,1058 +849098731,Maarczu,31,4,5646,1285 +849098766,Inergio,377,1,2851,1534 +849098769,hesus93,291,52,416669,296 +849098774,CypisWariat,1128,0,0,3057 +849098782,Kratos007,35,60,579478,248 +849098784,Riko97,1411,2,4813,1338 +849098791,ilona12005,0,1,5561,1289 +849098822,SirCharles2,1226,3,17935,954 +849098827,zbrzeziu44,452,1,1655,1708 +849098848,Kufe,1737,0,0,3058 +849098966,GrimS,1411,12,71585,606 +849098993,bulkas9999333,0,1,532,1992 +849099021,mibre,1336,0,0,3059 +849099054,GromHellscream,194,7,51004,686 +849099105,GrandeGallo,1483,0,0,3060 +849099131,SzopPracz93,963,1,450,2039 +849099138,SkyForce2,377,1,2522,1573 +849099141,Rafi43,0,1,580,1975 +849099145,Szymon9405,0,1,4187,1386 +849099160,FiftyShades,722,10,105266,527 +849099255,tomas289,0,1,26,2805 +849099258,POLiii,785,6,36511,767 +849099276,Sosen1,862,7,37301,761 +849099280,staszek233,1724,2,4831,1335 +849099342,Michalxj6,722,7,45792,712 +849099391,AzinG,375,2,8706,1124 +849099422,franekkimono510,68,11,62522,645 +849099425,Ponury+Grabarz+1995,1797,1,678,1940 +849099434,luverten,68,11,86870,570 +849099463,mosiekk,785,5,37688,756 +849099505,Andrzejizator,1052,1,3075,1504 +849099517,MatWa,1597,5,37583,757 +849099541,Mrkime,1597,1,4308,1375 +849099544,happydrinker,1724,15,109649,522 +849099557,IZRA,412,0,0,3061 +849099558,Seprinoth,1052,1,2940,1521 +849099601,Pro100wryj,1108,7,23128,882 +849099640,DonOrleon,1079,11,74887,597 +849099660,ProCzacha,806,1,26,2806 +849099689,seba1234567,1226,3,11596,1049 +849099696,harryson,1039,14,73285,601 +849099785,Kamileq69,0,1,26,2807 +849099797,dekmax,0,1,1523,1731 +849099804,karmelon,33,1,2453,1578 +849099815,CarIsonn,0,0,0,3062 +849099859,Go%C5%9B%C4%87099859,157,1,3686,1431 +849099864,oskar996,0,1,5676,1282 +849099876,heetsik,7,194,1821942,59 +849099887,NiedzwiedzWampir,412,1,1367,1763 +849099924,kondzikkk,0,3,9710,1094 +849099932,Mati1995,0,0,0,3063 +849099955,VIK97,1226,2,6351,1244 +849099965,Don+Sracze,722,4,11804,1046 +849100006,andzia524,0,1,3577,1443 +849100016,pawelek113,0,1,1815,1688 +849100034,Dyaebel,68,0,0,3064 +849100082,malinos29,1079,6,51834,682 +849100083,paskowy,1128,3,18033,952 +849100089,Szymkowiak,636,1,26,2808 +849100134,Paprykk777,963,1,1899,1672 +849100149,kolo123321,452,14,109317,523 +849100162,Mag+Gywer,0,1,2852,1533 +849100199,Gra31,0,0,0,3065 +849100211,Andrew97,0,0,0,3066 +849100228,Koziar1999,234,3,30736,815 +849100246,atomwaffen,1079,5,30014,818 +849100262,YeQiu,71,19,174319,439 +849100288,metyh,157,1,2696,1555 +849100289,GalAnonim94,31,1,1521,1732 +849100323,zucholag,7,1,4875,1332 +849100349,Marass,722,1,179,2317 +849100352,cwiek21,1293,2,7001,1209 +849100354,Bo%C4%87ka,1523,8,76415,595 +849100383,KDJ7,1551,5,29779,822 +849100399,huzaj,68,2,14418,1009 +849100406,SEDZIADRED,722,6,35079,775 +849100416,Anakin97,0,1,26,2809 +849100439,%C5%9Api%C4%85cy+Szaman,0,1,1543,1727 +849100463,RaphaelMiner69,0,0,0,3067 +849100496,DZ4L4,1258,1,128,2406 +849100584,Matrix9105,1494,0,0,3068 +849100611,amazonka,0,1,4952,1328 +849100612,MajkelEs,452,4,16852,971 +849100615,wojas2302,785,2,5507,1292 +849100656,KK95VLV,210,5,43659,722 +849100680,TadeuszeQW,210,1,6421,1237 +849100743,Developer1994,0,0,0,3069 +849100744,Totomoose,1336,6,17836,956 +849100760,Majerasz,1293,1,949,1859 +849100782,Lord+Pat+Gla,1261,2,6741,1222 +849100787,Drwal+95+PL,1293,3,10235,1077 +849100796,Elzap,33,3,18237,943 +849100811,KOSSARII,785,1,2546,1570 +849100814,Aksente,0,8,26371,848 +849100815,Mercedes450,0,0,0,3070 +849100836,patryczekpyrka96,0,1,26,2810 +849100877,SteveT%C5%82ok,106,8,50886,688 +849100882,Elesar+Aragorn,106,0,0,3071 +849100891,S%C5%82owianie,0,1,583,1974 +849100994,Merlic,1226,22,176079,438 +849101018,sebastianxxx19,157,1,2979,1516 +849101029,bela831,1226,13,91949,553 +849101083,PIROTECHNIK,157,14,51548,684 +849101092,brajanacm,1108,5,31280,804 +849101102,skuzmi,1724,7,51644,683 +849101104,beazy,377,1,3774,1421 +849101108,rafisonik2,1293,10,70499,612 +849101116,kaban1988,722,6,36858,763 +849101132,Maciek2001PL,234,0,0,3072 +849101135,DZIMMMI,0,1,9816,1085 +849101144,Pascal277,786,3,17120,966 +849101148,Herom,1226,8,62201,646 +849101162,Transporter77,1226,27,130421,492 +849101177,Bunkier+u+Mariana,68,1,8264,1142 +849101186,Karki98,722,1,340,2116 +849101205,Adixkod,157,18,84637,573 +849101224,Max2255,1724,1,975,1854 +849101232,Szuwi,0,0,0,3073 +849101248,kaatbus,0,0,0,3074 +849101268,kaga,106,13,66640,628 +849101276,Witololo,666,5,13604,1020 +849101284,TraktorWiktor,375,1,334,2123 +849101291,wiras123,0,0,0,3075 +849101293,CatsDad,1735,2,8804,1119 +849101309,Dawideq102,452,7,27836,834 +849101311,Adrian11234595,1597,1,4075,1395 +849101377,HashandTag,1336,2,10802,1062 +849101378,Kie%C5%82ba,1418,12,99113,541 +849101382,ewaa,234,2,9872,1083 +849101391,dark.lady,0,0,0,3076 +849101396,Robert+Nowakowski+Jan,0,1,26,2811 +849101403,sabaciorz,0,1,26,2812 +849101409,Stachod%C5%BCons93,1597,5,15538,990 +849101443,Specjalista007,1372,0,0,3077 +849101526,qbaa.d,1423,3,10530,1070 +849101578,FIFI121212,0,1,1017,1843 +849101579,Duszkowsky,666,1,5736,1277 +849101580,michy,862,0,0,3078 +849101581,Siepacz,1735,1,4233,1380 +849101604,konradboss,157,14,76085,596 +849101646,tomekjasko,0,1,144,2359 +849101647,Ketarsky,1312,6,34698,776 +849101652,lidxoxo,1226,12,77382,591 +849101656,Kilmonn,0,1,72,2500 +849101674,mateusz2288,1523,7,31706,800 +849101694,Sir+Paxx,157,5,30647,816 +849101771,franka,1312,4,9680,1095 +849101814,czorny998,1023,2,9020,1117 +849101845,Fiko,1140,24,180393,435 +849101871,King2000,377,1,296,2158 +849101881,Lucyfer1999,1597,11,65038,635 +849101884,Patrycja412,1226,7,45713,713 +849101889,5spajk5,0,1,3274,1483 +849101893,kostunio,0,6,30906,813 +849101945,Oawek,1597,8,36612,765 +849101947,LokiValhallen,1597,1,4979,1326 +849101962,Babidi,68,8,46420,707 +849102037,Lord+tomekr,0,0,0,3079 +849102047,bartoszkar,0,0,0,3080 +849102068,TribalMaster,862,22,136616,483 +849102092,slovik-,1336,24,155146,460 +849102094,PavoreAni,441,3,15571,988 +849102108,Goveso,1226,13,82399,576 +849102143,Kacpro3310,1163,1,6488,1233 +849102150,DewTour,412,6,13758,1016 +849102302,dextermorgan,0,0,0,3081 +849102336,Albus+Lepus,1588,12,59739,655 +849102464,rafik9797,1418,2,16467,977 +849102480,Karyagin,1418,8,58660,661 +849102491,pawelec123,0,0,0,3082 +849102505,skubana123,0,0,0,3083 +849102573,Chispet92,1423,8,42372,729 +849102833,polska222,0,1,251,2207 +849102985,szaszek94,0,1,1673,1705 +849103113,thor13,0,1,398,2074 +849103148,Trollsonix,157,4,21840,893 +849103156,Pirdek999,0,1,2709,1553 +849103237,Trzepak7,375,1,249,2211 +849103456,Cukiernia+R%C3%B3%C5%BCa,0,0,0,3084 +849103570,henior123,0,0,0,3085 +849103595,justyna1234,1460,1,50,2554 +849103644,czarekpol,0,1,99,2462 +849103688,Avaqer,0,1,4277,1377 +849103876,mjk105,0,1,26,2813 +849103914,adamzagi,1783,1,380,2088 +849103947,pinek3,1312,1,207,2260 +849104010,Kawa,0,0,0,3086 +849104100,Czadamm,0,1,80,2484 +849104121,skwr85,0,1,2130,1630 +849104286,TwojaStaraTabaluga,210,1,6420,1238 +849104297,Kadar,452,1,323,2134 +849104310,jack2,0,1,195,2286 +849104328,Martinex,1226,19,155648,458 +849104356,KaszczuJ,452,4,39306,743 +849104468,Marian+Morderca,0,1,1157,1803 +849104474,mrugowal,7,1,71,2503 +849104491,MANUO,96,1,355,2107 +849104546,Jensiu90,722,5,35460,772 +849104633,Miia,0,0,0,3087 +849104814,Xava,0,0,0,3088 +849104818,bombelboniewo,847,1,4244,1378 +849104855,Hary666,1140,5,38693,747 +849105032,PiotrBiznes,0,1,114,2438 +849105071,myrcin,0,3,13591,1021 +849105072,Kendal,1312,1,7973,1156 +849105102,PatanTERROR,1735,4,24627,867 +849105187,Chmielu94,0,1,115,2436 +849105201,samolot11,0,1,139,2375 +849105232,krzysztofkryn148,1597,7,17786,958 +849105408,Fermer,0,1,2238,1613 +849105417,GdziePiniondzeSomZaLas,1312,5,12690,1038 +849105420,Natalia9388,0,1,9464,1103 +849105463,zwyczajny+bandyta,68,6,9553,1101 +849105613,Firau,29,1,577,1979 +849105954,SteamUser1668416228,0,0,0,3089 +849106210,blady14,0,1,1881,1677 +849106303,Kaminski95,0,1,1170,1799 +849106316,Dzejkob23,157,6,18231,945 +849106340,Koza69,1312,0,0,3090 +849106383,R0se69,0,2,13584,1022 +849106420,SAwars,412,8,31817,797 +849106548,jozin4don,1735,1,566,1983 +849106576,Bober5180,0,1,126,2413 +849106601,DrXE7,0,1,253,2204 +849106612,Ufok834,452,5,11272,1052 +849106698,Harley+Quinn,0,1,194,2291 +849106741,Koza2021,0,1,68,2512 +849106785,LordFrotto,1597,3,15783,987 +849106820,Cheltenham,157,1,690,1934 +849106828,anatol2619,0,1,463,2031 +849106923,kowal26022,29,1,4543,1356 +849106971,Irek216,1312,5,17287,965 +849107104,k3d4r89,452,1,2149,1625 +849107188,Bondzia,0,1,2084,1639 +849107391,BedsideBrick477,0,1,104,2452 +849107426,Micha%C5%82+z%C5%82o%C5%9Bliwy,234,1,310,2146 +849107507,bartekwach,0,1,4382,1369 +849107532,Ponury+morderca,157,5,18595,938 +849107571,mFxXx,0,1,1396,1757 +849107703,KRONOSIK8,1163,1,6307,1246 +849107799,Podzal,1551,1,992,1850 +849107860,alexxdize,0,1,136,2381 +849107881,POMPIARZ+122,1312,1,5000,1322 +849108007,SkalpeR1337,1523,2,9592,1099 +849108034,Frodo1,0,1,26,2814 +849108053,Olczii,647,1,1207,1790 +849108148,Yomikuri,1431,1,203,2268 +849108157,Wu7ek,234,3,4496,1361 +849108328,mirabelik,1687,0,0,3091 +849108339,DiduDidek,0,1,2265,1608 +849108350,Gumaty,0,1,144,2360 +849108600,OneGiet,0,1,173,2325 +849108623,Kapiburaczek,786,2,13253,1028 +849108673,DonArturo,0,1,26,2815 +849108762,batman2022,0,1,400,2073 +849108780,przegra%C5%82,786,11,91899,554 +849108784,Berciak,786,7,31188,806 +849108891,jd21372005,210,1,303,2151 +849108915,jordonjbe,0,1,180,2313 +849108933,Gilutyna,0,1,33,2583 +849108934,Stefek7,0,1,801,1900 +849108971,MGryglak95,377,1,2998,1515 +849108991,krisus8497,0,1,1068,1829 +849109010,SirNiuchniuch,1687,1,4210,1382 +849109045,Lilit,1797,1,463,2032 +849109072,mikos,1232,1,291,2164 +849109116,apolinary,778,1,5348,1304 +849109152,leon1214,0,1,111,2442 +849109232,Lord+patban177,944,1,448,2041 +849109351,Seledynowy+skuter+wodny,0,1,183,2307 +849109413,Javor,234,0,0,3092 +849109507,ewazeth,1528,1,26,2816 +849109521,justys3828,0,0,0,3093 +849109601,EpsHunT,0,1,26,2817 +849109637,Czemi96,1597,2,5641,1286 +849109701,VaniaMay,0,1,382,2084 +849109705,DomiNio,0,1,357,2106 +849109795,Peka44,847,5,18236,944 +849109875,v3n1s,0,1,180,2314 +849109885,graf72,0,1,1778,1692 +849109935,Patrykos91,0,1,1299,1777 +849109966,Kozio%C5%82,1735,1,344,2115 +849110021,Piotr-Wielki2,0,1,2286,1602 +849110289,daniok94,0,1,603,1968 +849110304,Paveulon,0,1,97,2467 +849110310,Mantvel,1643,0,0,3094 +849110365,bojanees,1312,3,9599,1098 +849110380,Jasne%C5%BBeSzymek,31,1,225,2237 +849110382,Hardex,33,3,11174,1056 +849110479,rambo3423,1797,1,115,2437 +849110571,Ywozdreiwt+Nyzuk,256,1,2552,1567 +849110622,ciulpa,1687,1,2195,1621 +849110644,METALCORE,0,1,121,2421 +849110674,Kr%C3%B3l+Mieszko1,0,1,706,1927 +849110688,Szarykocik717,214,1,3153,1493 +849110711,Johny544,786,3,7943,1158 +849110726,BiiLii,0,1,162,2339 +849110743,Bart97,847,4,15090,997 +849110747,knoxville5,0,1,26,2818 +849110781,BabciaZosia,0,1,59,2530 +849110852,mysza,0,1,433,2051 +849110916,Chronek09,0,1,658,1945 +849111050,Tomkos,0,2,3977,1404 +849111052,FAST+ROTHMANS,0,1,26,2819 +849111109,Cinse,0,1,117,2431 +849111121,t0m45,0,1,192,2294 +849111196,batomixmix,1597,4,20240,916 +849111231,Ciapolos,1687,1,3203,1488 +849111244,MannyKing97,722,1,4518,1359 +849111316,Pazuros,1687,1,3090,1500 +849111332,w00hanczyk,285,3,5572,1288 +849111408,Lisq12,847,1,3712,1427 +849111418,adamcx91,1797,1,1457,1743 +849111487,smokee944,24,1,4988,1324 +849111632,UlanyKaplan,1590,1,524,1997 +849111667,Artur350,0,0,0,3095 +849111732,Dragonics1991,157,1,1549,1726 +849111792,zbigniew.G,29,1,7417,1187 +849111819,Lord+darecki2,117,1,3177,1489 +849111911,pebloss,0,1,4139,1389 +849112029,macqu,1669,2,6930,1211 +849112033,Paxon13,1669,2,5393,1302 +849112050,nowikpzk,1669,1,1223,1787 +849112094,herqers,157,1,3545,1451 +849112178,pawe%C5%82dante,0,1,52,2547 +849112264,Kacperr12,0,1,47,2565 +849112312,Natalia1999,0,1,2357,1594 +849112368,Ruchna722,1797,1,2394,1588 +849112369,malagagaga,0,2,4611,1353 +849112435,Quattro+only,1735,1,6253,1250 +849112443,brodatykebab,0,1,26,2820 +849112504,HucuPL,0,1,3131,1497 +849112510,Chwaliszew2008,0,1,168,2332 +849112561,Stefan+Batory+V,0,1,26,2821 +849112666,DiscoZenon,0,1,144,2361 +849112725,domin964,0,1,2064,1644 +849112733,Astecki,0,1,52,2548 +849112774,Xpace67,0,1,26,2822 +849112876,Fajfus,0,1,188,2304 +849112879,marcinmista,1797,1,2791,1547 +849112887,Banan123,0,1,1214,1788 +849112960,Arlosik,29,1,1453,1747 +849113055,Mlody165,0,1,2293,1600 +849113063,Nowicjusz1,0,1,64,2522 +849113078,Sara23,0,1,1402,1755 +849113226,Adison+II+%C5%9Amia%C5%82y,0,1,487,2020 +849113300,Sir+sernik,0,1,313,2141 +849113350,SirPatryk23,1526,0,0,3096 +849113480,Olek96,847,1,1907,1670 +849113485,Knoxpl,0,1,48,2559 +849113546,bboy1994,0,3,6701,1224 +849113556,aghjs5,0,1,269,2191 +849113580,Marcin+Marci,0,1,26,2823 +849113595,Kosiaczkyyy,1312,1,1371,1761 +849113597,Wenol,1312,1,1782,1691 +849113603,JW94,0,1,859,1886 +849113673,Ferox-1,0,1,223,2239 +849113819,NurseJK,1735,1,1520,1733 +849113868,Mroczne+Elfy+1,0,1,102,2457 +849114022,gmaciejwagner,0,1,891,1869 +849114028,Ko%C5%82owata,0,1,437,2048 +849114033,przemys%C5%82+II,1797,1,1126,1813 +849114040,Kulfix,0,1,521,2000 +849114085,Krystiann11,0,1,1980,1657 +849114112,Adikson16,0,1,143,2365 +849114119,Adek77,452,1,1107,1821 +849114265,narcyz3973,1312,2,12273,1041 +849114408,Ragnarok+76,0,1,1027,1840 +849114445,kindza,1466,1,1859,1679 +849114450,matipo321,0,1,113,2440 +849114477,Monczi25,31,1,198,2276 +849114502,sada2,0,1,3943,1406 +849114579,SzymonMF6465,1724,1,7901,1159 +849114603,Flink,0,1,222,2243 +849114664,Patryk95,0,1,26,2824 +849114683,jareczek951,59,1,1053,1834 +849115010,Treon,0,1,53,2543 +849115254,Simon93,29,1,1620,1713 +849115256,CorAngar96,0,1,44,2572 +849115304,kijek,0,1,38,2581 +849115365,Pati999,0,1,196,2283 +849115431,fifiogf,1312,1,717,1926 +849115509,Kox12344,0,1,198,2277 +849115920,Damian2023,0,1,121,2422 +849115994,Struma,0,1,212,2250 +849116044,Mandrysi,0,1,295,2160 +849116089,tribal766,0,1,26,2825 +849116221,ChadxikH8,452,3,5497,1294 +849116225,Pongo,0,1,46,2568 +849116251,natofp,234,1,101,2461 +849116287,Jozin321,0,1,234,2226 +849116310,VillaSHL,778,1,2427,1584 +849116357,Kerakein,0,1,277,2185 +849116416,rafaltz,29,1,250,2208 +849116419,ArtBe,0,1,2251,1611 +849116679,Szy.mek,234,1,869,1884 +849116819,smerfy+22,0,1,52,2549 +849116911,Hakal93,0,1,26,2826 +849116980,Bacik1906,0,1,26,2827 +849117035,Alderos,0,1,26,2828 +849117087,SunSun,1797,1,579,1976 +849117143,karty123,29,1,2083,1640 +849117196,ekursy,1052,1,958,1856 +849117240,Love4evere3,0,1,349,2112 +849117242,frombosu1,0,1,1192,1792 +849117362,festher,0,1,1311,1772 +849117427,Mateusz400,441,1,597,1971 +849117454,Bimber123,452,1,776,1909 +849117513,heroarek,0,1,26,2829 +849117533,Krzysiek12,0,1,73,2498 +849117536,Jacymir15,0,1,68,2513 +849117551,perko,0,1,524,1998 +849117622,smiesznylucek,1687,1,1308,1775 +849117644,WillyBilly,0,1,26,2830 +849117695,sadomaso6903,210,1,350,2111 +849117830,kosmiczny,0,1,2257,1609 +849118043,barca35fcb,0,1,26,2831 +849118128,jaro513,0,1,228,2231 +849118231,Czaq1,0,1,111,2443 +849118259,Kopansky,0,1,1581,1722 +849118261,justyna010114,0,1,489,2018 +849118262,xKirioSan,0,1,424,2059 +849118435,Budrys2000,0,1,26,2832 +849118441,AdaSobieraj,29,1,654,1948 +849118462,wlodek1404,0,1,793,1902 +849118478,Vokhar,1764,1,26,2833 +849118616,Kolodzij,29,1,118,2430 +849118709,Addu,1795,1,326,2130 +849118761,Kokeszko94,0,1,26,2834 +849118769,joaopaulo98,0,1,26,2835 +849118786,hair12345,0,1,761,1913 +849118806,trend,0,1,338,2120 +849118820,zenek12,0,1,289,2166 +849118827,kozielniak,0,1,141,2368 +849118930,Mc+Fly,0,1,128,2407 +849118954,Grzaegorz1122,0,1,287,2170 +849118999,Minister123,847,1,1916,1667 +849119017,rewox,0,1,26,2836 +849119078,GrubySponsor,0,1,141,2369 +849119121,aceofa,1724,1,664,1943 +849119163,Dawidoxil1996,1735,1,248,2212 +849119173,kafejtor,0,1,227,2233 +849119223,Grzelakb,29,1,394,2076 +849119328,miglanc06,0,1,699,1930 +849119407,Tomaszer12,0,1,525,1994 +849119423,Polak212,210,1,537,1989 +849119432,WitoldWolski,0,1,153,2350 +849119476,gnom1,0,1,301,2155 +849119486,paviks,0,1,26,2837 +849119528,SERWAR,847,1,1604,1717 +849119631,ChujajBuja,0,1,189,2302 +849119827,Mishkkk,0,1,337,2122 +849119842,karplop123,0,1,66,2516 +849119848,drewniak,210,1,195,2287 +849119862,belzebub+szatan,0,1,483,2022 +849119975,Przemko+duch,0,1,627,1964 +849119994,Exodus303,1777,1,998,1849 +849120075,saulgoodman,0,1,136,2382 +849120088,Czaki995,0,1,194,2292 +849120093,marcinpaluch0211,0,1,69,2506 +849120129,Derek69,452,1,928,1863 +849120285,pollak21,1456,1,165,2334 +849120311,KOYE,0,1,26,2838 +849120421,Kampffliege,0,1,119,2429 +849120438,Wanderwoman,0,1,519,2001 +849120467,czaka222,0,1,198,2278 +849120488,bonktrzmiel,1312,1,269,2192 +849120526,Kolekcjon,0,1,140,2372 +849120698,rozyczka,0,1,784,1906 +849120763,spokojnaba%C5%9Bka123,0,1,64,2523 +849120855,tinki,0,1,26,2839 +849120865,Martynka2010,0,1,66,2517 +849120889,Layton,0,1,47,2566 +849120966,Michal1614,0,1,26,2840 +849121036,ARENTHAI,0,1,70,2505 +849121195,mrkonrad18,0,1,157,2346 +849121196,Szymonos420,0,1,238,2222 +849121269,Choroszcz,0,1,34,2582 +849121320,pawka283,0,1,44,2573 +849121329,Szalejot3,452,1,320,2136 +849121331,Dankok2k23,0,1,567,1982 +849121337,Ppfarmer,0,1,26,2841 +849121389,huzar28,0,1,26,2842 +849121483,xLyn,0,1,599,1970 +849121504,HinduKush,0,1,107,2446 +849121536,LeadyBoo,0,1,26,2843 +849121570,LupaPL,0,1,240,2220 +849121623,prosiaczek,0,1,301,2156 +849121686,danek,0,1,26,2844 +849121691,Szpadyzor,0,1,133,2391 +849121697,S3b3k1999,0,1,26,2845 +849121725,drzyzga123,0,1,26,2846 +849121746,robotykjakinny,0,1,26,2847 +849121762,Jopi,0,1,377,2092 +849121811,Cookie,0,1,158,2345 +849121835,mati997,0,1,438,2045 +849121846,Maxi+Montana,0,1,286,2173 +849121975,anita,0,1,264,2195 +849122047,grzesiek9522,0,1,66,2518 +849122297,Leszek1964,847,1,579,1977 +849122318,polska652,0,1,112,2441 +849122450,SteamUser1675976894,0,1,88,2477 +849122487,kamilek6969,0,1,310,2147 +849122658,sweetdream,0,1,26,2848 +849122738,Saladyn92,0,1,438,2046 +849122768,niedzwiedzxd,0,1,382,2085 +849122791,Arokis,0,1,136,2383 +849122819,BELOZ,0,1,95,2470 +849122821,SzefPatry%C5%9B,0,1,64,2524 +849122822,jmz41922,1803,1,162,2340 +849122864,Legiatto,0,1,26,2849 +849122931,gumis111,0,1,26,2850 +849123002,zdzi%C5%9B123,636,1,26,2851 +849123125,Lukaczka,0,1,216,2247 +849123128,farmerzestoczka,0,1,75,2493 +849123135,Ljuboja1916,441,1,43,2576 +849123162,jesslexuwuowo,0,1,83,2480 +849123267,Sewo2137,1735,1,165,2335 +849123286,millxd12,0,1,26,2852 +849123469,adam1234,0,1,26,2853 +849123471,martial.94,0,1,26,2854 +849123536,XKONDZIOX529,1811,1,50,2555 diff --git a/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/village.txt b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/village.txt new file mode 100644 index 0000000..a16f5db --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/pl181.plemiona.pl/map/village.txt @@ -0,0 +1,57694 @@ +1,2.+Tortoise+%2A%2A,493,536,849087855,7834,0 +2,0041+K54+and987+OZDR.,490,544,3613413,9861,0 +3,Ateny_62,472,531,7491093,9835,0 +4,AR_Madzia,466,518,2585846,5920,0 +5,013,475,523,849092723,9899,0 +6,Wioska+barbarzy%C5%84ska,516,443,8649412,6771,0 +7,024,463,524,2585846,2917,0 +8,Winter+is+coming,438,552,699856962,2114,0 +9,%2AAteny_41,470,532,2585846,9638,0 +10,amator,524,573,848915531,11550,0 +11,%2AAteny_15,471,525,2585846,3486,0 +12,NOT%3F,430,519,9236866,10042,0 +13,Front_19,456,528,2585846,9638,0 +14,KONFA+TO+MARKA%2C+NARKA,422,465,698152377,10303,0 +15,Front_12,458,524,2585846,4025,0 +16,Daleko+030,473,582,699364813,8744,0 +17,Wioska+barbarzy%C5%84ska,454,537,699698253,1329,0 +18,Lord+Arsey+KING,522,495,848956513,10285,0 +19,%2AAteny_08,470,535,2585846,9638,0 +20,%2AAteny_29,465,522,699333701,3497,0 +21,NOT%21,468,533,9236866,10042,0 +22,amfa+fatima,448,524,698971484,10008,0 +23,020,472,516,699333701,6848,0 +24,%2AAteny_48,466,529,2585846,8900,0 +25,%2AAteny_27,479,523,2585846,9638,0 +26,PRO8L3M,478,525,7491093,10242,0 +27,Lucky+Strike,497,527,699785935,9835,0 +28,A+012.,433,582,849028088,9894,0 +29,Lynortis,464,532,699698253,9705,0 +30,08+Belgia,587,490,8925695,8169,0 +31,keepo,475,515,848967710,5450,0 +32,012,473,520,699781762,3857,0 +33,DROGA+BEZ+POWROTU,539,468,8155296,10728,0 +34,5.+Koszutka,481,537,699781762,10330,0 +35,Suppi,445,525,699856962,9556,0 +36,keepo,482,534,848967710,10252,0 +37,Aleartis,481,538,698704189,9711,0 +38,KIELBA+084,455,600,699342219,10384,0 +39,051,419,525,699851427,10042,0 +40,Village,491,531,849094067,11596,0 +41,%C5%9Amieszkii,520,561,3454753,9064,0 +42,POGRZEB+GRUBYCH,540,446,8155296,9592,7 +43,031,479,525,699781762,10114,0 +44,Szlachcic,577,485,699759128,10237,0 +45,0006,496,501,848967710,10495,3 +46,Wioska+barbarzy%C5%84ska,398,481,699523631,10481,0 +47,%7E054.,497,573,7139820,10495,0 +48,006+Tokio,619,483,7092442,9718,0 +49,Ateny_74,470,528,2585846,7287,0 +50,%5B109%5D+North9,574,488,848985692,10218,0 +51,%2AAteny_46,474,534,2585846,9638,0 +52,119.,494,486,8788366,6555,0 +53,012,609,482,699573053,10495,0 +54,B062,472,464,699299123,8626,0 +55,Yogi,485,530,2808172,10078,0 +56,F067,489,519,699189792,9396,0 +57,Szlachcic,485,480,699098531,10295,0 +58,030,478,520,699781762,9764,0 +59,NOT%21,467,534,9236866,6994,0 +60,Alien%21,499,510,699785935,9835,0 +61,keepo,484,531,848967710,10495,0 +62,%230047+Samob%C3%B3j,489,546,9272054,10000,0 +63,061+Finlandia,572,465,7092442,10495,0 +64,1.+Is-7+%21%21%21,491,540,849087855,9820,0 +65,K44+008,426,483,698290577,6772,0 +66,%2AINTERTWINED%2A,478,544,698704189,9711,0 +67,Jungle+Boyz%21,495,510,699785935,9835,0 +68,F091,481,518,699189792,10019,0 +69,K55,538,518,848967710,10252,0 +70,%2AAteny_51,461,529,2585846,9638,0 +71,%7E%7ELataj%C4%85cyHolender%7E%7E,587,508,9174887,10144,0 +72,Lynortis,466,536,849001724,11824,0 +73,003,562,490,699099811,9202,0 +74,...,485,543,848915531,10067,0 +75,002,431,506,698971484,10008,0 +76,012,462,531,2585846,2141,0 +77,AbacadA+009,558,435,699756210,10495,0 +78,0096,464,550,698659980,9104,0 +79,Wioska+Barbarzy%C5%84ska,547,478,698867483,9889,0 +80,CHW%23028,480,538,699781762,10495,0 +81,Szlachcic,486,472,699098531,9885,0 +82,0065,487,526,699432672,10495,0 +83,Brat447,454,503,699262350,10559,0 +84,Yogi,485,531,2808172,9983,0 +85,CHW%23046,481,521,699781762,5000,0 +86,CALL+1017,553,562,699784536,10311,0 +87,SsSs,457,500,1536625,10002,0 +88,05+California,469,506,699781762,10728,0 +89,PRO8L3M,461,490,7491093,9976,0 +90,NOT%3F,417,532,9236866,10042,0 +91,Brat447,463,505,699262350,10720,0 +92,lady,494,583,699703642,10455,0 +93,0013,509,530,699432672,10495,0 +94,135+Puebla,479,483,1497168,9761,0 +95,R%C4%99cznik+do+zmiany,382,480,699697558,10495,0 +96,Monetki,474,425,699098531,10295,0 +98,NOT%3F,417,510,9236866,10042,0 +99,0052,519,524,699432672,10495,0 +100,Lord+Arsey+KING,520,501,848956513,9615,0 +101,0207,534,594,698659980,10019,0 +102,PRO8L3M,464,497,7491093,10311,0 +103,Horyzont+zdarze%C5%84,519,532,7581876,9835,0 +104,Winter+is+coming,444,540,698971484,2219,0 +105,Lord+Arsey+KING,515,520,848956513,10285,0 +106,Monetki,483,415,699098531,10295,0 +107,021N+Lord+Alexxx,577,440,8323711,10143,0 +108,063.+ALFI,474,564,8539216,1453,0 +109,Lord+Arsey+KING,531,522,848956513,10285,0 +110,Osada,499,438,699098531,10295,0 +111,Kasyno,440,510,7249451,9902,7 +112,0052+K55+and987+OZDR,509,550,3613413,10083,0 +113,-+037+-,534,580,849018239,10000,0 +114,ChceszPokojuSzykujSi%C4%99DoWojny,458,513,699333701,9827,0 +115,Brat447,460,508,699262350,6984,0 +116,Szlachcic,491,476,699098531,10311,0 +117,Village,502,585,849094067,11321,0 +118,MAXX,496,481,699098531,9835,0 +119,Wioska+Barbarzy%C5%84ska,546,480,698867483,10019,0 +120,Szlachcic,495,474,699098531,9690,0 +121,Szlachcic,489,464,699098531,10294,0 +122,0115,469,548,698659980,10019,0 +123,030+%7C,553,534,8000875,9957,4 +124,Szlachcic,487,475,699098531,9957,0 +125,Bagdad,477,382,8847546,10654,0 +126,Szlachcic,498,485,699098531,10311,0 +127,0015,508,505,698599365,9860,0 +128,Szlachcic,488,477,699098531,10292,0 +129,Mzm48,553,522,7142659,7447,0 +130,A001,490,415,699299123,10495,0 +131,CHW%23027r,484,538,698704189,9711,0 +132,161+Belo+Horizonte,482,473,1497168,9761,0 +133,%230068+Robert+L,498,561,9272054,10014,0 +134,Szlachcic,500,465,699098531,9637,0 +135,PRO8L3M,421,498,7491093,10178,0 +136,0003+smarfa,501,494,698599365,10019,0 +137,CALL+953,546,553,699784536,10311,0 +138,x+Cast+Away+001,457,491,698290577,8861,0 +139,005,510,545,848915531,10807,0 +140,...,497,545,848915531,10000,0 +141,%230105+Orch%C3%B3wek,481,544,9272054,9780,0 +142,makelovenotwar5,392,459,698807570,10068,0 +143,CALL+1046,540,550,699784536,10311,0 +144,30001,490,539,848915531,11130,0 +145,KONFA+TO+MARKA%2C+NARKA,434,462,698152377,10300,0 +146,F028,486,542,699189792,10003,0 +147,10%2A,571,544,699664910,7548,0 +148,Jaaa,578,541,698635863,10487,3 +149,...,495,543,848915531,10064,0 +150,2.+Su+%21%21%21,496,541,849087855,9823,0 +151,2.+Obj+261+%21%21%21,496,549,849087855,10362,0 +152,%230080+Czas+to+pu%C5%82apka,485,551,9272054,10003,0 +153,Piek%C5%82o+to+inni,522,482,848956765,10160,0 +154,Piek%C5%82o+to+inni,525,475,848956765,6776,0 +155,CALL+980,550,569,699784536,10544,0 +156,%C5%81yk+i+buch%21,493,510,699785935,10401,9 +157,NOT%21,466,537,9236866,9451,0 +158,Szlachcic,502,474,699098531,9882,0 +159,HCG,622,507,699379895,10495,0 +160,Yogi,517,540,2808172,7386,0 +161,%2A008%2A,620,505,698670524,8614,0 +162,OBTW,433,560,699443920,3236,0 +163,Szlachcic,510,463,699098531,9045,0 +164,SsSs,422,501,1536625,7524,0 +165,10+Backstage,615,510,9314079,9807,0 +166,Osada,498,444,699098531,10292,0 +167,Kielce,590,576,1715091,9835,0 +168,F033,491,534,699189792,9701,0 +169,015.,599,534,6520732,10019,0 +170,Winter+is+coming,435,550,699856962,2612,0 +171,Suppi,441,530,699856962,9549,8 +172,Handel,508,383,699368887,10237,0 +173,Village,505,589,849094067,10559,0 +174,Wioska+Edwardes,599,522,698845189,10083,0 +175,0076,602,523,699432672,10495,0 +176,Krab+Oceaniczny,475,585,7249451,8335,0 +177,Piek%C5%82o+to+inni,512,477,848956765,10019,6 +178,podgrzybek,598,573,1715091,9962,0 +179,KONFA+TO+MARKA%2C+NARKA,450,460,698152377,10311,0 +180,Taran+004,617,525,698562644,10311,0 +181,F008,507,535,699189792,9747,0 +182,rakieta+012,625,499,848928486,9819,0 +183,044.,509,486,8788366,10252,0 +184,Lord+Arsey+KING,518,499,848956513,10285,0 +185,032,592,569,699373599,10047,0 +186,001.+Ragnar,585,569,699373599,10252,0 +187,Joms+030,521,418,699756210,9708,0 +189,Wioska+barbarzy%C5%84ska,532,474,699355601,2866,0 +190,s%C5%82odziute%C5%84ka+09,604,536,8013349,10160,0 +191,P%C3%B3%C5%82noc,607,542,699785935,10093,0 +192,YES%3F,458,537,699660539,4104,0 +193,kto+ananasowy+pod+wod%C4%85+ma+dom,589,575,699628084,9797,0 +194,Jaaa,589,566,698635863,10236,0 +195,003.+NH+STREET,614,538,8900955,8814,0 +196,A.181.00,598,535,2999957,10242,0 +197,Wioska+barbarzy%C5%84ska,446,520,698971484,10008,0 +198,s%C5%82odziute%C5%84ka+01,603,533,8013349,9740,0 +199,013,525,497,8191129,9899,0 +200,Lord+Arsey+KING,512,496,848956513,10285,0 +201,023,456,438,9291984,10478,0 +202,%230001+Amegakure,527,620,699728159,9761,0 +203,Lord+Arsey+KING,529,486,848956513,10285,0 +204,010.+Czomolungma,602,570,1601917,10495,0 +205,kto+ananasowy+pod+wod%C4%85+ma+dom,570,504,699628084,9797,0 +206,Piek%C5%82o+to+inni,524,477,848956765,6331,0 +207,%3Acc,541,477,698867483,10019,0 +208,%5B001%5D+Drep+Big+%2A,604,538,848985692,10290,0 +209,Mzm06,613,535,7142659,10362,0 +210,Wioska+3,529,516,699385139,4383,0 +211,Wioska+17ohly17,596,572,1715091,9681,0 +212,Creep,594,565,848926293,9528,0 +213,SsSs,460,502,1536625,4660,0 +214,%C5%81om%C5%BCa,588,583,1715091,9324,0 +215,yogi,526,534,2808172,7609,0 +216,0011,505,502,698599365,10019,0 +217,Lord+Arsey+KING,519,507,848956513,10285,4 +218,Wioska+Dziadzi,600,532,848963236,3421,0 +219,Jaaa,568,560,698635863,10479,0 +220,Essa+002,573,573,848987051,10216,0 +221,-015-,465,427,9291984,10351,0 +222,Anio%C5%82+soli,603,526,3364735,9761,0 +223,Szlachcic,485,462,699098531,10291,0 +224,Essa+003+Magdula,568,581,848987051,10237,0 +225,Kiedy%C5%9B+Wielki+Wojownik,398,454,8632462,9818,0 +226,012+Lucek+ville,603,527,8323711,10495,0 +227,048,586,473,699573053,10495,0 +228,081,612,533,699373599,10093,0 +229,SsSs,452,499,1536625,10160,0 +230,Wioska+barbarzy%C5%84ska,484,544,7976264,9478,0 +231,Lord+Arsey+KING,516,497,848956513,10285,0 +232,%230074+%C5%81%C4%85ka,492,547,9272054,10019,0 +233,061.,513,506,8788366,7466,0 +234,%2A012%2A,608,496,698670524,8501,0 +235,-%5B027%5D-+Rakaposhi,562,485,849092827,7596,0 +236,002,509,501,758104,8024,0 +238,Szlachcic,487,465,699098531,10291,0 +239,NOT%3F,461,538,9236866,3526,0 +240,Szlachcic,498,467,699098531,9620,0 +241,025,415,524,699851427,10129,0 +242,Wioska+FKG007,421,409,356642,9835,0 +243,Szlachcic,487,476,699098531,10292,5 +244,s181eo01,393,447,393668,9894,0 +245,Wioska+barbarzy%C5%84ska,499,412,699658023,9817,0 +247,Gdybys+Kiedy%C5%9B,500,520,699785935,9835,0 +249,%7E%7ELataj%C4%85cyHolender%7E%7E,584,502,9174887,10144,0 +251,ChceszPokojuSzykujSi%C4%99DoWojny,462,509,699333701,9835,0 +253,Suppi,425,454,699856962,9570,0 +255,keepo,484,530,848967710,10145,0 +256,Pf+Konfederacja,482,496,848915730,9740,5 +257,001,385,462,3698627,9964,0 +258,Suppi,444,527,699856962,9551,0 +259,0080,465,554,698659980,7879,5 +260,%230127+Fascynacja,495,525,9272054,6988,0 +261,038.,554,513,8788366,10252,0 +262,%5B0001%5D,458,383,8630972,10495,0 +263,059,552,430,699761749,10495,6 +264,Szulernia,418,414,7249451,10053,0 +266,Yogi,515,540,2808172,10019,0 +268,Suppi,444,453,699856962,8782,0 +270,.%3A021%3A.+Chilout,510,420,848934935,8227,0 +271,A001,444,404,8740199,10479,0 +272,2xxxxxxxxxxxx,464,429,9291984,10354,0 +273,NOT,420,421,9236866,10042,0 +274,%7E%7ELataj%C4%85cyHolender%7E%7E,597,502,9174887,9905,0 +275,20005,505,541,848915531,10728,0 +276,00Wioska+barbarzy%C5%84ska,475,530,699781762,9251,0 +277,0079,442,401,699431255,10311,0 +278,KONFA+TO+MARKA%2C+NARKA,402,459,698152377,10971,0 +281,005,567,481,849070464,8493,0 +282,%2B44+61+Tassin+la+Demi+Lune,417,465,698361257,10019,0 +283,Cast+Away+011,453,483,698290577,8639,0 +284,%7E067.,498,529,7139820,8380,0 +285,-017-,461,430,9291984,10481,0 +286,K44+x001,442,404,698364331,10495,0 +287,JaamMwG+002,525,527,848987051,9814,0 +289,Strasznie+Mi%C5%82y+S%C4%85siad%21,546,447,556154,6472,0 +290,064.+%7CXD%7C,497,522,848967710,10252,0 +291,048+Belgia,583,478,7092442,10495,0 +293,%2B44+63+Bron,431,469,698361257,9841,0 +294,0007+K55+and987+OZDR.,504,559,3613413,9845,7 +295,NOT,415,428,9236866,10042,0 +297,Fajna+016,453,565,698971484,7275,0 +298,Minas+Tirith,506,516,849091897,10019,0 +299,Szlachcic,466,417,698388578,10237,0 +300,Land+of+Fire,395,447,698962117,9678,0 +301,Pf+Konfederacja,491,492,848915730,9938,0 +302,TRR+001,407,415,698971484,10008,0 +303,Szlachcic,492,476,699098531,9885,0 +305,9.+Wysypisko,547,434,8444356,10338,0 +306,20016,519,553,848915531,11130,4 +307,F002,507,531,699189792,9753,0 +308,0016+K55+and987+OZDR.,504,560,3613413,9780,0 +310,Brat447,452,500,699262350,10495,0 +313,Jaaa,577,539,698635863,10476,0 +315,Wioska+Mateoo,551,493,699432672,4155,0 +316,Nowy+Trueschool,503,523,699785935,9976,0 +317,PRO8L3M,450,499,7491093,10311,0 +318,028+Oxenfurt,620,521,699272880,10068,0 +320,NOT%3F,429,522,9236866,10042,0 +321,Amaranthe,498,520,699785935,9835,0 +322,Merhet,523,582,698215322,10228,3 +323,Village,488,528,849094067,9411,0 +324,Bucksbarzy%C5%84sKamiiiru,426,510,848955783,10178,0 +325,30002,494,541,848915531,12154,0 +327,Wioska+barbarzy%C5%84ska,432,501,698971484,9882,0 +328,2.+BC,496,531,849087855,7395,0 +330,.%3A097%3A.+Chillout,543,445,848934935,4267,0 +332,-%5B021%5D-+Khunyang+Chhish,552,491,849092827,7739,0 +334,keepo,486,528,848967710,9949,0 +335,015.+Wioska+tukkan,580,514,8788366,9986,3 +337,0000,441,396,699431255,10047,0 +338,Wioska_01,537,451,8674163,5417,0 +339,xhav,396,472,698807570,10068,0 +340,Horyzont+zdarze%C5%84,516,537,7581876,9835,0 +343,Butem+w+Morgen,485,513,848967710,10178,0 +344,MasteroN+02,568,449,699379895,10290,0 +347,Wioska+Wojtek150+005,533,523,7581876,9835,0 +348,014,491,387,698739350,9825,0 +349,Bucksbarzy%C5%84sKamiiiru,428,514,848955783,10001,0 +350,215+Broome,531,436,1497168,9761,2 +352,NOT%3F,426,540,9236866,7013,0 +354,Monetki,471,429,699098531,9623,0 +356,Warzywniak+020,451,546,698290577,1950,0 +357,Horyzont+zdarze%C5%84,535,547,7581876,10019,4 +360,0.Hollywood,520,584,698215322,9962,0 +362,025,467,525,2585846,4873,0 +364,Piek%C5%82o+to+inni,519,485,848956765,10160,0 +366,Vito+1,511,533,7581876,10019,0 +367,Piek%C5%82o+to+inni,516,451,848956765,10160,0 +368,xxx,513,459,698239813,10495,0 +369,.%3A029%3A.+Chillout,518,453,848934935,10495,0 +370,0030+K54+and987+OZDR.,488,551,3613413,9845,0 +371,1-%2AAirdrie...,526,445,8649412,12154,0 +372,064.+ALFI,481,563,8539216,1475,0 +373,213+Darwin,529,438,1497168,9761,0 +374,A023,487,415,699299123,10495,0 +375,19-Mesquite,528,446,8649412,9806,0 +376,Forteca,502,569,606407,10495,0 +377,.%3A039%3A.+Chillout,518,449,848934935,9388,0 +378,Szlachcic,507,475,699098531,9899,0 +379,Napewno+to+nie+jest+off,515,445,848912265,10495,0 +380,NOT%3F,436,552,9236866,1724,0 +381,Piek%C5%82o+to+inni,519,452,848956765,10160,0 +382,Szlachcic,508,465,699098531,8472,0 +383,Butem+w+Morgen,483,516,848967710,10150,0 +384,.achim.,519,454,6936607,10311,0 +385,Ko%C5%84czy%C4%87+czas%3A%29,548,446,699368887,8983,0 +386,.%3A031%3A.+Chillout,521,448,848934935,6720,0 +387,.%3A041%3A.+Chillout,520,451,848934935,10495,0 +388,Osada,498,455,699098531,9827,0 +389,.achim.,527,447,6936607,10544,0 +390,%2B44+75+Saint+Omer,454,473,698361257,9635,0 +391,Szlachcic,516,459,699098531,9279,0 +392,R%C4%99cznik+do+zmiany,414,486,699697558,10019,0 +394,Napewno+to+nie+jest+off,516,429,848912265,10495,0 +395,Bagdad,475,389,8847546,10654,0 +396,Dum+Spiro+Spero,491,554,848896948,9981,0 +397,xxx,511,446,698239813,10199,0 +398,05.+C3F,475,507,699781762,9572,0 +399,Piek%C5%82o+to+inni,529,437,848956765,10019,0 +400,AbacadA+019,559,431,699756210,10221,0 +401,7.62+mm,507,434,699777234,10019,0 +402,C034,522,450,699299123,7544,0 +403,Szlachcic,486,470,699098531,10300,0 +404,Zasiedmiog%C3%B3rogr%C3%B3d,517,444,699433558,10311,0 +406,NOT%3F,423,518,9236866,10042,0 +407,Szlachcic,505,460,699098531,7157,0 +408,%2311.,520,464,848967710,10252,0 +409,Osada,509,451,699098531,9617,0 +410,Piek%C5%82o+to+inni,522,484,848956765,10083,1 +411,Osada,507,456,699098531,9632,0 +412,-xx10,498,495,848967710,10252,0 +413,Osada,511,453,699098531,4916,0 +414,Szlachcic,499,457,699098531,10068,0 +415,Wioska+432,561,519,477415,10495,0 +416,Gravity,412,458,698962117,9491,0 +417,Wioska+514,571,446,477415,10495,0 +418,Piek%C5%82o+to+inni,510,466,848956765,10160,0 +419,051.+ALFI,483,566,8539216,1489,0 +420,7.62+mm,504,440,699777234,10019,0 +421,%230098+Kopyt%C3%B3w,475,557,9272054,9656,0 +422,Cast+Away+018,445,483,698290577,10867,1 +424,.%3A018%3A.+Chillout,508,420,848934935,7401,0 +425,Napewno+to+nie+jest+off,514,438,848912265,8904,0 +426,-+300+-,529,582,849018239,10000,0 +427,.%3A063%3A.+Chillout,512,425,848934935,5905,7 +429,028%23,538,455,8155296,10189,0 +430,.%3A034%3A.+Chillout,521,443,848934935,3306,0 +431,7.62+mm,503,435,699777234,10019,0 +433,Kasyno,445,516,7249451,9680,0 +434,Napewno+to+nie+jest+off,517,439,848912265,10495,0 +435,087.,475,500,8788366,10068,0 +436,Osada,501,445,699098531,10294,0 +437,JaamMwG+003,526,523,848987051,9809,0 +438,Szlachcic,508,460,699098531,9203,0 +439,016,566,549,699316421,9885,0 +440,%2304.,525,469,848967710,10252,0 +441,Yogi,533,563,2808172,10019,0 +442,Piek%C5%82o+to+inni,512,451,848956765,10160,0 +443,SsSs,421,496,1536625,9456,0 +445,Osada,500,447,699098531,10294,0 +446,xxx,477,437,698239813,10495,8 +447,4+w,530,460,6923061,2697,0 +448,kathare,498,570,873575,10322,0 +449,x+011.+Gar%C5%9B%C4%87+dynamitu,414,490,698290577,7856,5 +450,Szlachcic,499,476,699098531,10311,0 +451,K55+kaszka+manna%3AP,542,519,848967710,10252,0 +452,Szlachcic,496,483,699098531,9620,0 +453,%21Alakazam,567,445,699795378,10019,0 +454,Minas+Tirith,505,481,699098531,9835,0 +455,ChceszPokojuSzykujSi%C4%99DoWojny,457,514,699333701,3751,0 +456,Szlachcic,505,472,699098531,9888,0 +457,.achim.,532,461,6936607,9281,0 +458,093.,500,481,8788366,10004,0 +459,067.+ALFI,463,568,8539216,1331,0 +460,Szlachcic,488,474,699098531,10292,0 +461,004,508,545,848915531,10012,0 +462,Szlachcic,504,467,699098531,9899,0 +463,%7C083%7C,557,513,699664910,6614,0 +464,0016+b%C4%99c,513,494,698599365,10019,0 +465,020,537,474,848930111,9205,0 +466,P+Konfederacja+8,460,453,848915730,9784,7 +467,Wioska+Ko5a,492,478,699098531,9835,0 +468,004,568,482,849070464,8493,0 +469,-x7,499,498,848967710,10252,0 +470,CALL+1041,550,541,699784536,9899,0 +471,002,503,478,699098531,9976,0 +472,Szlachcic,505,469,699098531,9637,0 +473,Polania+002,540,451,758104,8024,0 +474,013W+Wiocha,558,511,8323711,10143,0 +475,Szlachcic,494,467,699098531,9767,0 +476,Ogr%C3%B3d+Warzywny,448,563,7249451,7499,0 +477,Szlachcic,491,477,699098531,9956,0 +478,KONFA+TO+MARKA%2C+NARKA,428,482,698152377,10654,0 +479,Szlachcic,500,470,699098531,10359,0 +480,KONFA+TO+MARKA%2C+NARKA,439,466,698152377,10292,0 +481,Szlachcic,508,481,699098531,9814,0 +482,067.,509,493,8788366,10393,0 +483,Szlachcic,504,472,699098531,10252,0 +484,009,414,501,699510259,9756,0 +485,0018,506,497,698599365,10019,0 +486,0056,513,519,699432672,10495,0 +487,%23Scyther,574,457,699795378,12154,9 +488,Piek%C5%82o+to+inni,518,477,848956765,9602,0 +489,Butem+w+Morgen,485,512,848967710,10495,0 +490,-xx15,491,496,848967710,10393,0 +491,0004+Venezuela,493,471,699098531,9835,0 +492,KONFA+TO+MARKA%2C+NARKA,423,463,698152377,10311,0 +493,Szlachcic,492,480,699098531,10311,0 +494,K44+024,426,495,698290577,5529,0 +495,Szlachcic,491,484,699098531,10311,0 +496,053.+ALFI,486,567,8539216,2872,0 +497,Szlachcic,496,457,699098531,9835,0 +498,Szlachcic,494,475,699098531,10294,0 +499,Szlachcic,504,468,699098531,9637,0 +500,043.,509,488,8788366,10485,0 +501,Szlachcic,559,469,698867446,9852,0 +502,Szlachcic,493,478,699098531,10311,0 +503,%235%23,500,480,699098531,9835,0 +504,095+Grand+Junction,477,461,1497168,9761,0 +505,002,489,472,699098531,9835,0 +506,K44+026,419,499,698290577,4303,0 +507,Szlachcic,510,464,699098531,9637,0 +508,Szlachcic,496,469,699098531,8896,0 +509,Pf+Konfederacja,487,484,848915730,9322,0 +510,Szlachcic,496,461,699098531,10115,0 +511,0027,504,492,698599365,9606,0 +512,0017+K55+and987+OZDR.,506,541,3613413,9861,0 +513,Lord+Arsey+KING,517,488,848956513,10285,0 +514,Pf+Konfederacja,495,489,848915730,9938,0 +515,Lord+Arsey+KING,515,494,848956513,10285,0 +516,Zero+Stresu,448,533,698971484,10083,0 +517,Lord+Arsey+KING,526,495,848956513,10285,0 +518,ChceszPokojuSzykujSi%C4%99DoWojny,456,517,699333701,7126,0 +519,Lord+Arsey+KING,513,490,848956513,10285,0 +520,K44+010,431,485,698290577,7003,0 +521,Wioska+11,520,504,848967710,10971,0 +522,R%C4%99cznik+do+zmiany,417,500,699697558,10845,0 +523,Lord+Arsey+KING,520,489,848956513,10285,0 +524,xxx,481,442,698239813,10495,0 +525,078.,508,503,8788366,11130,0 +526,KIELBA+028,451,577,699342219,10495,0 +527,Szlachcic,508,477,699098531,9068,0 +528,ChceszPokojuSzykujSi%C4%99DoWojny,467,513,699333701,3068,4 +529,054.,506,492,8788366,10252,0 +530,Lord+Arsey+KING,517,494,848956513,6294,0 +531,K45+-+004,558,465,6510480,10320,0 +532,Szlachcic,491,482,699098531,10303,2 +533,022,567,603,698999105,10311,0 +534,Winter+is+coming,444,548,698971484,2974,0 +535,Lord+Arsey+KING,513,492,848956513,10285,0 +536,CALL+976,547,544,699784536,10311,0 +537,Lord+Arsey+KING,521,495,848956513,10285,0 +538,112.,534,485,8788366,6241,0 +539,Lord+Arsey+KING,515,498,848956513,10285,0 +540,Napewno+to+nie+jest+off,515,437,848912265,6931,0 +541,Lord+Arsey+KING,519,488,848956513,10285,0 +542,%5B088%5D,535,486,848985692,10492,0 +543,Lord+Arsey+KING,576,592,848956513,10285,0 +544,0593,476,546,698659980,9559,0 +545,Lord+Arsey+KING,513,486,848956513,10285,0 +546,017+C12,522,466,848967710,3381,0 +547,Lord+Arsey+KING,525,486,848956513,10285,0 +548,Piek%C5%82o+to+inni,514,478,848956765,10019,0 +549,Monetki,482,416,699098531,10295,0 +550,Joms+008,529,417,699756210,10030,1 +551,Szlachcic,499,487,699098531,9680,0 +552,Piek%C5%82o+to+inni,520,480,848956765,10160,0 +553,CJRT,544,469,699368887,7573,0 +554,011,528,498,8191129,9835,0 +555,0014,621,528,6510480,10322,0 +556,WioskaC,516,584,8369778,9762,0 +557,Lord+Arsey+KING,520,507,848956513,10285,0 +558,Mzm20,558,529,7142659,10362,0 +559,Taran+009,623,528,698562644,9930,0 +560,%5B135%5D,563,535,8000875,9495,0 +561,0014,510,499,698599365,10019,0 +562,%3F%2B44+86+Zegerscappel,464,486,698361257,9695,0 +563,001,509,502,758104,8024,0 +564,Piek%C5%82o+to+inni,516,481,848956765,7964,0 +565,052.,504,494,8788366,10252,0 +566,F083,490,524,699189792,9072,0 +567,%5B066%5D+My,528,502,848985692,10216,0 +568,tawerna,570,594,699364813,10311,0 +569,Piek%C5%82o+to+inni,518,475,848956765,9746,0 +570,006+Wioska,521,466,848967710,10160,0 +571,C008,524,457,699299123,10971,0 +572,Szlachcic,490,477,699098531,10297,0 +573,%2303.,524,469,848967710,10485,0 +574,019.+ALFI,487,571,8539216,1424,0 +575,Piek%C5%82o+to+inni,516,473,848956765,10083,0 +576,Szafir,533,542,699785935,9976,0 +577,006,507,481,698881022,3150,0 +579,079.,567,465,849094609,9958,0 +580,014+piotr,618,521,8323711,10495,0 +581,Sharks%21,498,510,699785935,9835,0 +582,0026,505,501,698599365,5978,0 +583,%3F%3F%3F,481,546,698704189,9520,0 +584,Lord+Arsey+KING,523,501,848956513,10285,0 +585,%7E052.,493,571,7139820,10495,0 +586,012,524,498,8191129,11819,0 +587,%5B068%5D+Bunuh+kamu,535,511,848985692,10049,0 +588,Lord+Arsey+KING,528,487,848956513,10285,0 +589,Lord+Arsey+KING,515,496,848956513,10285,0 +590,206+Ohio+Rios,465,462,1497168,9761,0 +591,123.,512,485,8788366,7749,0 +592,Wioska+barbarzy%C5%84ska,451,534,698971484,4142,0 +593,2+Mnie,535,475,6923061,4120,0 +594,%7E074.,485,615,7139820,10495,0 +595,Lord+Arsey+KING,520,488,848956513,10285,0 +596,Piek%C5%82o+to+inni,521,486,848956765,10160,0 +597,%5B026%5D+Kubulala,587,523,848985692,10057,0 +598,0005+K55+and987+OZDR.,505,550,3613413,9953,0 +599,0Wioska+barbarzy%C5%84ska,479,531,699781762,9822,0 +600,F010,505,535,699189792,9761,0 +601,Mzm25,559,528,7142659,10362,0 +602,Yogi,508,533,2808172,10019,0 +603,x05,550,472,8459255,10066,0 +604,0043+K55+and987+OZDR,506,537,3613413,9861,0 +605,Gattacka,587,499,699298370,9554,0 +606,003+B.O.R,576,584,699524362,8538,0 +607,Horyzont+zdarze%C5%84,508,543,7581876,10019,0 +608,KONFA+TO+MARKA%2C+NARKA,436,458,698152377,10311,0 +609,CALL+1059,518,533,699784536,10495,0 +610,Szcz%C4%99%C5%9Bliwego+Nowego+Roku%3A%29,540,456,8155296,7901,0 +611,004.+Midnight+Never+Ends,615,528,699785935,10160,0 +612,057+Hana,457,467,1497168,9761,0 +613,Wioska+barbarzy%C5%84ska,434,443,698884287,10285,0 +614,Lord+Arsey+KING,515,528,848956513,10285,0 +615,Gravity,420,457,698962117,9505,0 +616,F063,506,536,699189792,9761,0 +617,Sparta_61,476,574,2585846,9638,0 +618,Yogi,518,535,2808172,10019,0 +619,F073,503,534,699189792,9761,0 +620,Koszmarna+Noc,497,514,699785935,10178,0 +621,020.+ALFI,486,571,8539216,1519,0 +622,Lord+Arsey+KING,514,530,848956513,10285,0 +623,%2AINTERTWINED%2A,498,543,698704189,9711,0 +624,%5B017%5D+Pepehi+ia+oe,586,524,848985692,10292,8 +625,20004,503,543,848915531,11130,0 +626,Bucksbarzy%C5%84sKamiiiru,428,502,848955783,10207,0 +627,%5B085%5D,553,513,8000875,10232,4 +628,50002,504,541,848915531,5477,0 +629,F062,488,520,699189792,9212,0 +630,ADEN,560,432,698588535,7636,0 +631,004.,613,543,8900955,7387,0 +632,0156,468,553,698659980,7488,0 +633,Gdy+zga%C5%9Bnie+s%C5%82o%C5%84ce,505,527,699785935,9835,0 +634,2.Strv+%21%21%21,493,531,849087855,10019,0 +635,kathare,499,571,873575,10495,0 +636,F005,502,542,699189792,9761,0 +637,Yogi,520,544,2808172,4542,0 +638,PRO8L3M,420,498,7491093,10068,0 +639,Yogi,489,540,2808172,10019,0 +640,Szlachcic,483,464,699098531,10294,0 +641,Gdy+opadnie+popi%C3%B3%C5%82%21,503,509,699785935,9835,0 +642,Bucksbarzy%C5%84sKamiiiru,424,507,848955783,9160,0 +644,0037,463,470,848913037,9118,0 +645,Szlachcic,503,459,699098531,7254,0 +646,Szlachcic,581,488,699759128,10237,0 +647,xxx,509,458,698239813,10495,0 +648,0063+Somali+lew,443,429,3909522,8805,0 +649,Osada,510,452,699098531,9637,0 +650,Szlachcic,506,462,699098531,7731,0 +651,F003,497,536,699189792,9326,0 +652,0014,506,526,699432672,10495,0 +653,F036,495,530,699189792,9245,0 +654,0053,509,519,699432672,10495,0 +655,Dum+Spiro+Spero,493,559,848896948,9976,0 +656,Strefa+Komfortu,500,521,699785935,10495,0 +657,B031,483,458,699299123,9985,0 +658,Miasto+%C5%9Amiechu,504,527,699785935,9835,0 +659,184+Medellin,469,472,1497168,9761,0 +660,Wioska+barbarzy%C5%84ska,509,541,7581876,10287,0 +661,JaamMwG+020,517,528,848987051,9817,0 +662,018+F-1,602,516,8323711,10495,0 +663,Diagnoza%21,494,509,699785935,10040,0 +664,Wioska+rafalzak+01,520,543,7581876,9835,0 +665,Osada+BR,454,539,699698253,2822,0 +666,F032,501,528,699189792,9761,0 +667,007,446,524,698971484,10008,0 +668,0066,506,518,699432672,10495,0 +669,CALL+1056,521,532,699784536,10495,0 +670,Napewno+to+nie+jest+off,516,442,848912265,7637,0 +671,Ogr%C3%B3d+Warzywny,450,562,7249451,8151,8 +672,3.+M41+Buldog+%21%21%21,496,537,849087855,10008,0 +673,%23038,519,551,849001572,10019,0 +675,keepo,489,529,848967710,9851,0 +676,0005,508,514,699432672,10495,0 +677,FF007,471,517,699189792,5523,0 +678,ztb,500,523,699785935,9835,0 +679,Wioska+1,521,514,699385139,7630,0 +681,0Wioska+barbarzy%C5%84ska,480,528,699781762,10193,0 +682,Bon+Appetit,518,511,699785935,12154,1 +683,F043,487,525,699189792,9088,0 +684,Monetki,471,422,699098531,10291,0 +685,2.+Isu+%21%21%21,501,539,849087855,9966,0 +686,Butem+w+Morgen,490,512,848967710,10559,0 +687,Front_08,460,522,2585846,4477,0 +688,1.+Type-5H,498,530,849087855,7727,0 +689,0092+Alakazam,455,436,3909522,9549,0 +691,%7E%7ELataj%C4%85cyHolender%7E%7E,546,475,9174887,10141,0 +692,005,522,529,7581876,10019,0 +693,Monetki,476,413,699098531,10292,0 +694,Harpagan5,501,533,7581876,9835,0 +695,%2B44+61+Lyon+Monplaisir,416,469,698361257,9818,0 +696,069.+%7CXD%7C,496,513,848967710,10252,0 +697,B010,491,448,699299123,10495,0 +698,CHW%23055s,527,520,7581876,5505,0 +699,50001,505,540,848915531,10728,0 +700,XXX+Abadon,563,487,699347951,10503,0 +701,Jeszcze+nie+czas,500,524,699785935,9835,0 +702,Horyzont+zdarze%C5%84,501,532,7581876,10019,0 +703,CALL+960,545,549,699784536,10311,0 +704,Hahahaha,488,470,699098531,9835,2 +705,1.Lansen+%21%21%21,498,540,849087855,9854,0 +706,%23Machamp,572,453,699795378,11130,0 +707,F064,505,536,699189792,9761,0 +708,F075,504,530,699189792,9761,0 +709,%7C006%7C,552,569,873575,10495,0 +710,F076,508,530,699189792,9741,0 +711,%C5%9Amieszkii,519,557,3454753,9115,0 +712,keepo,490,528,848967710,9850,0 +713,Lord+Arsey+KING,516,499,848956513,10285,0 +714,%7E065.,489,532,7139820,8332,0 +715,Lord+Arsey+KING,513,497,848956513,10285,0 +716,1.Amx+CDC+%21%21%21,497,534,849087855,10072,0 +717,Yogi,487,530,2808172,10078,0 +718,181,392,518,849030226,9724,0 +719,1.+Is-3,492,541,849087855,9674,0 +720,005,521,515,8191129,9702,0 +721,PRO8L3M,479,526,7491093,10019,0 +722,Wioska+barbarzy%C5%84ska,602,568,8742874,9720,0 +723,Szlachcic,487,469,699098531,10292,0 +724,F046,483,520,699189792,9564,0 +725,P.004,536,566,873575,9966,0 +726,keepo,482,531,848967710,10495,0 +727,Pf+Konfederacja,493,496,848915730,9740,0 +728,0057,490,519,699432672,10495,0 +729,Numenor,506,512,849091897,9899,0 +730,Klub,542,434,848986287,9753,3 +731,016,479,524,849092723,8603,0 +732,086+Orzech+pekan,541,464,7092442,10495,0 +733,bandzior,493,613,606407,10311,0 +734,Problemy+luksusowe,507,509,699785935,12154,0 +735,keepo,479,508,848967710,10330,0 +736,STAL+MIELEC,551,460,699368887,7535,0 +737,0062,507,525,699432672,10495,0 +738,165+Kurytyba,479,477,1497168,9761,0 +739,056,536,486,699351301,9615,7 +740,Wioska+barbarzy%C5%84ska......,486,548,7976264,10189,0 +741,%2AINTERTWINED%2A%2A,463,562,698704189,9491,0 +742,keepo,483,524,848967710,9289,0 +743,%3F%2B44+86+Quaedypre,465,488,698361257,9145,0 +744,0007,509,514,699432672,10495,0 +745,Butem+w+Morgen,487,513,848967710,10495,0 +746,Bucksbarzy%C5%84sKamiiiru,436,528,848955783,10971,0 +747,A019,494,411,699299123,10495,1 +748,F030,499,531,699189792,11420,0 +749,Lord+Arsey+KING,509,521,848956513,10285,0 +750,Rivendell,502,513,849091897,9522,0 +751,Hobbiton,504,508,849091897,10019,0 +752,001+-+Nowa+przygoda,421,581,225023,9836,0 +753,C+Zach+001+Gliwice,409,576,849084740,9937,0 +754,0063+b4,449,433,3909522,10239,0 +755,C+002+Mikolow,418,581,849084740,7915,0 +756,037+%7C,557,559,8000875,10141,0 +757,nijmegen,402,572,9167250,9135,0 +758,A045,497,422,699299123,10495,0 +759,A.005,409,575,849088243,9436,0 +760,Wioska+02,434,455,698884287,10285,0 +761,C+010+Bukowno,415,579,849084740,8081,0 +762,-004-,538,452,849070335,9034,0 +763,CALL+1016,552,562,699784536,10311,1 +764,001thx,411,573,9167250,9614,0 +765,NOT%3F,432,495,9236866,10042,0 +766,-5-+%28Loss+of+life%29,415,569,698769107,9170,0 +767,P001,503,561,698599365,9727,0 +768,Fajna+081,458,559,3613413,8747,9 +769,016,524,497,8191129,9976,0 +770,A+015.,431,584,849028088,10019,0 +771,Szlachcic,487,461,699098531,10294,0 +772,0058,489,514,699432672,10495,2 +773,WioskaKr%C3%B3l+Artur+I%28WiotrPitczak%29,408,581,698769107,9835,0 +774,001,426,579,849084740,10053,0 +775,B053,475,468,699299123,9380,0 +776,C+001+Katowice,417,581,849084740,10604,0 +777,C+008+Bochnia,419,577,849084740,8823,0 +778,A.018+LW,413,575,849088243,10476,0 +779,020,530,429,699788305,9741,0 +780,Barad+Eithel,495,512,849091897,7592,0 +781,Osada,508,454,699098531,9263,0 +782,poza+kontrol%C4%85+%21,493,506,699785935,10160,0 +783,066.+%7CXD%7C,494,513,848967710,10252,0 +784,0072,530,522,699432672,10495,0 +785,Myto+myto%21,497,505,699785935,9835,0 +786,Szlachcic+026,558,520,758104,9338,0 +787,O+czym+%C5%9Bnisz%3F%21,499,505,699785935,10362,0 +788,%2B44+72+Etaples,429,471,698361257,9841,0 +789,-x2,491,498,848967710,10252,0 +790,C024,526,453,699299123,7285,0 +791,%23PRO8L3M,431,491,7491093,10311,3 +792,072.+%7CXD%7C,494,512,848967710,9845,0 +793,027,528,576,699189792,9742,0 +794,Kontrast,514,509,699785935,10068,3 +795,005,488,518,849092723,10528,0 +796,04+Las+Palmas,472,503,699781762,12154,0 +797,094,539,504,699351301,9928,0 +798,Konfiasze,475,494,698908912,10971,0 +799,110+Thunder+Bay,477,489,1497168,10237,0 +800,0103,468,550,698659980,8704,0 +801,108.,480,499,8788366,10252,0 +802,Osada,491,437,699098531,10294,0 +803,031,479,492,699510259,9835,0 +804,108+Oho,543,458,7092442,3631,0 +805,PRO8L3M,473,484,7491093,10311,0 +806,Winter+is+coming,507,580,699364813,10178,0 +807,117+St+Catharines,478,495,1497168,9994,0 +808,7.62+mm,470,436,699777234,10019,0 +809,01+Eyjafjallajokull,472,509,699781762,11377,0 +810,008,472,512,1536625,6474,0 +811,021.+ALFI,475,568,8539216,1269,0 +813,Part+II,536,381,698350371,10495,0 +814,013,519,538,848915531,9171,0 +815,%5B056%5D+Eta,543,489,848985692,10232,7 +816,C005+Hamunarpta,602,563,8096537,9761,0 +817,B059,472,470,699299123,9331,0 +818,PRO8L3M1,454,501,7491093,9835,0 +819,Brat447,453,503,699262350,10495,0 +820,%5B120%5D+North20,570,471,848985692,10051,0 +821,-Billie+Jean,511,514,699785935,9835,0 +822,SsSs,448,499,1536625,9814,0 +823,068.,514,506,8788366,12154,0 +824,Os+Konfederacja,481,446,848915730,10055,0 +825,JaamMwG+027,520,522,848987051,10218,0 +826,023,549,532,8138506,7648,0 +828,%5B100%5D,548,504,8000875,9898,0 +829,066,482,494,699510259,9740,0 +830,0031+K54+and987+OZDR.,488,550,3613413,9917,0 +831,183+Bogota,467,466,1497168,9783,0 +832,0034+MzM,529,536,698416970,9807,0 +833,005,549,615,699189792,9747,0 +834,204+Santo+Domingo,468,464,1497168,9771,0 +835,006+wioska+Gda%C5%84sk,610,464,699671454,8735,0 +836,-Idziesz+spa%C4%87%2C+ja+robi%C4%99+bang,516,513,699785935,9835,0 +837,Horyzont+zdarze%C5%84,502,532,7581876,9835,0 +838,szlachcic,439,542,699170684,8745,9 +839,064.+Vindobona,615,473,849091866,9606,0 +840,Piek%C5%82o+to+inni,526,437,848956765,10160,0 +841,0022+K55+and987+OZDR.,505,551,3613413,9853,0 +842,008,618,475,8459255,10232,0 +843,162+Campo+Grande,483,475,1497168,9761,0 +844,1.+Is-1+%21%21%21,501,544,849087855,10019,0 +845,037,617,472,8459255,9924,0 +846,%230133+Rykoszet,494,519,9272054,9579,0 +847,034.,611,470,8900955,9835,0 +848,Szlachcic,505,473,699098531,9687,0 +849,50000,502,538,848915531,10838,0 +850,%2B44+73+Le+Touquet+Paris+plage,433,470,698361257,9840,0 +851,Sparta_36,480,579,2585846,9426,2 +852,C+006+Olkusz,415,577,849084740,7726,0 +853,Szlachcic,566,500,698867446,9721,0 +854,0002+K55+and987+OZDR.,505,552,3613413,10083,0 +855,Fajna+020,450,553,698971484,6857,0 +856,Komturia,512,541,7581876,10019,0 +857,091.,508,489,8788366,10252,0 +858,Szlachcic,615,483,698867446,10109,0 +859,yogi,514,552,2808172,10252,0 +860,P+Konfederacja,461,448,848915730,9521,0 +861,026,519,533,848915531,5377,0 +862,D022,576,417,699761749,10495,0 +863,017,489,526,849092723,7491,0 +864,0012+K55+and987+OZDR.,509,558,3613413,9853,0 +865,009+Kagawa,619,482,7092442,10495,0 +866,Monetki,469,416,699098531,10295,0 +867,Wioska+6,621,471,848935020,10001,0 +868,Horyzont+zdarze%C5%84,526,549,7581876,9835,0 +869,063.+Sinope,618,469,849091866,10236,0 +870,Szlachcic,573,490,699759128,10237,0 +871,064+The+Lion,621,482,2135129,9553,0 +872,Pauza,534,539,699785935,9835,0 +873,Carsultyal.,486,555,698704189,9711,0 +874,%230002+Carsultyal,485,553,9272054,10000,9 +875,L+6,614,478,849027653,10316,0 +876,%7E039.,489,554,7139820,10495,0 +877,Tu+spoczywa+Deornoth,625,474,699545762,9004,0 +878,1.Progetto+%21%21%21,498,547,849087855,10019,0 +879,2.+Strv1065%2A%2A,499,546,849087855,9291,0 +880,15+%C4%86punolandia,612,471,699347951,11550,0 +881,Sparta_73,475,574,2585846,9638,0 +882,boh12prawdziwy,396,562,9167250,8406,0 +883,Yogi,521,536,2808172,10019,0 +884,xxx,512,458,698239813,8695,0 +885,%230134+Bastian,496,520,9272054,9595,0 +886,C023,513,454,699299123,10971,0 +888,Wioska+barbarzy%C5%84ska,570,517,699851345,9691,0 +889,%5B189%5D,537,489,8000875,10290,8 +890,Piek%C5%82o+to+inni,517,451,848956765,10160,0 +891,Wioska+barbarzy%C5%84ska,536,495,848967710,10252,0 +892,xxx,514,459,698239813,10971,0 +893,Pf+Konfederacja+8,494,492,848915730,9938,0 +894,C001,523,456,699299123,10971,0 +895,NOT%3F,460,539,9236866,3395,0 +896,Piek%C5%82o+to+inni,515,452,848956765,10160,0 +897,%230113+Wie%C5%9B+P%C3%B3%C5%82nocna,478,541,9272054,10019,0 +898,Piek%C5%82o+to+inni,516,448,848956765,10160,0 +899,Mysza+1,483,509,698908912,6112,0 +900,Piek%C5%82o+to+inni,515,451,848956765,10160,0 +901,.%3A040%3A.+Chillout,519,451,848934935,10252,0 +902,%5B136%5D+North+----,581,475,848985692,10297,0 +903,xxx,505,454,698239813,10495,0 +904,003+YAYAMIOMATE,540,522,8649412,7139,6 +905,Napewno+to+nie+jest+off,516,446,848912265,10495,0 +906,04.+C2F,473,506,699781762,10838,0 +907,C033,531,451,699299123,8581,0 +908,A009,491,416,699299123,10495,0 +909,Szlachcic,508,462,699098531,9632,0 +910,keepo,487,529,848967710,10219,0 +911,009,413,500,699851427,10042,8 +912,C006,524,458,699299123,10728,0 +913,%7E%7ELataj%C4%85cyHolender%7E%7E,585,512,9174887,10149,0 +914,001,606,538,699413040,9860,0 +915,Winter+is+coming,447,537,698971484,9487,0 +916,%5B001%5D,618,541,698305474,9809,0 +917,Fajna+088,452,564,699856962,7144,0 +918,DDD,528,453,849091084,9618,0 +919,Wioska+barbarzy%C5%84ska,485,510,848967710,9694,0 +920,Piek%C5%82o+to+inni,514,452,848956765,10160,0 +921,Fred+Perry,505,521,699785935,10495,0 +922,.%3A002%3A.+Chillout,509,441,848934935,10362,0 +923,C029,524,449,699299123,10332,0 +924,CALL+1085,537,538,699784536,10495,0 +925,.%3A011%3A.+Chillout,517,431,848934935,7100,0 +926,Zasiedmiog%C3%B3rogr%C3%B3d,517,448,699433558,10311,0 +927,C043,536,458,699299123,5156,0 +928,.%3A098%3A.+Chillout,523,447,848934935,9771,0 +929,032,525,441,699788305,8828,0 +930,.%3A066%3A.+Chillout,500,417,848934935,7663,0 +931,.achim.,518,454,6936607,10311,0 +932,Szlachcic,567,487,698867446,9852,0 +933,Osada,511,452,699098531,9217,0 +934,109.+Dzi%C4%99ki+szunaj+%3A%5D,489,427,8788366,10252,0 +935,Lord+Arsey+KING,519,471,848956513,10068,0 +936,CHW%23025r,484,536,698704189,9038,0 +937,keepo,481,535,848967710,10078,0 +938,Monetki,473,435,699098531,10291,0 +939,Pf+Konfederacja,487,502,848915730,9938,0 +940,Osada,496,450,699098531,7584,0 +941,B022,483,457,699299123,9957,0 +942,B039,495,452,699299123,9694,0 +943,Ateny_45,471,529,699783765,9118,0 +944,20023,505,547,848915531,10971,0 +945,Pf+Konfederacja,489,492,848915730,9740,0 +946,0Osada+koczownik%C3%B3w,479,527,699781762,9203,6 +947,092.,499,483,8788366,10252,0 +948,SsSs,458,505,1536625,10487,0 +949,Pf+Konfederacja,496,490,848915730,10311,0 +950,.%3A120%3A.+Niangmen,513,415,848934935,9559,6 +951,.%3A029%3A.+San+Escobar,503,486,699098531,9260,0 +952,K45+-+010,560,468,6510480,9790,0 +953,-%5B013%5D-+Gaszerbrum+II,549,490,849092827,9216,0 +954,Feed+me+more+002,497,372,699756210,10300,0 +955,.033.,490,378,698489071,10485,0 +956,Piek%C5%82o+to+inni,520,435,848956765,10160,0 +957,ADEN,577,425,698588535,10311,0 +958,C041,535,455,699299123,10971,0 +959,So+Far+Away,511,526,699785935,9952,0 +960,Yogi,515,543,2808172,8684,0 +961,F080,510,530,699189792,8976,0 +962,Pi%C4%99kni+ludzie,502,518,699785935,10160,0 +963,F077,502,531,699189792,8398,0 +964,098,553,498,699351301,10035,0 +965,Szlachcic,506,467,699098531,10019,0 +966,xxx,510,457,698239813,10495,0 +967,Osada,511,454,699098531,9824,0 +968,006343+Miedziany+2,442,434,3909522,7892,0 +969,Piek%C5%82o+to+inni,512,472,848956765,10224,0 +970,Wioska+3,425,551,8779575,3025,0 +971,Piek%C5%82o+to+inni,515,472,848956765,10019,0 +972,Daleko+007,475,587,6116940,8276,0 +973,Szlachcic,504,458,699098531,9637,0 +974,Lord+Arsey+KING,524,493,848956513,10285,0 +975,%230026+Wirus,502,527,9272054,10478,0 +976,-Za+p%C3%B3%C5%BAno,518,514,699785935,9953,0 +977,Yogi,524,544,2808172,10160,0 +978,040.,502,492,8788366,10252,0 +979,55k%24+Grvvyq,528,534,699676005,10495,0 +980,%2AINTERTWINED%2A,485,538,698704189,9153,0 +981,Wioska+barbarzy%C5%84ska,521,541,7581876,9835,0 +982,JaamMwG+016,524,517,848987051,9539,0 +983,Micha%C5%82,534,538,848967710,10495,0 +984,Wioska+barbarzy%C5%84ska,452,452,699660539,9975,0 +985,Osada+GL,457,542,698290577,2873,2 +986,Podhala%C5%84ski+Zb%C3%B3j%21+-001-,525,549,7581876,10019,0 +987,%C5%9Amieszkii,530,545,3454753,10160,0 +988,008.,522,547,699695167,10047,0 +989,Ateny_64,476,536,2585846,7095,0 +990,20007,520,540,848915531,6364,0 +991,.achim.,520,457,6936607,10311,0 +992,JaamMwG+021,519,523,848987051,9806,0 +993,008,531,488,848967710,10252,0 +994,PRO8L3M,449,490,7491093,10178,6 +995,Pf+Konfederacja,486,498,848915730,9938,0 +996,Piek%C5%82o+to+inni,517,479,848956765,6905,0 +997,0061,506,524,699432672,10495,4 +999,%5B181%5D,531,555,8000875,9959,0 +1000,111+Winnipeg,478,491,1497168,9761,0 +1001,IQ151,552,452,699368887,6393,0 +1002,122+Banff,479,488,1497168,9761,0 +1003,5+ESIOK+f,538,463,8155296,9038,0 +1004,083.,481,493,8788366,10485,0 +1005,023,415,522,699851427,10129,0 +1006,Pf+Konfederacja+%2B,488,486,848915730,10066,0 +1007,.achim.,536,422,6936607,10311,0 +1008,Jaaa,579,596,698635863,10263,0 +1009,Butem+w+Morgen,484,513,848967710,10559,0 +1010,057.+Koniec+Konfy%3F%3F%3F,481,492,8788366,10252,0 +1011,Wioska+barbarzy%C5%84ska,465,432,9291984,10579,0 +1012,085.,474,498,8788366,9325,0 +1013,Monetki,481,426,699098531,10295,0 +1014,PRO8L3M,473,485,7491093,10311,0 +1015,0014+K55+and987+OZDR.,502,556,3613413,9847,0 +1016,148+Veracruz,472,493,1497168,9761,0 +1017,020+Wioska+barbarzy%C5%84ska,572,548,699316421,9744,0 +1018,keepo,478,508,848967710,10495,0 +1019,Gattacka,588,500,699298370,9747,0 +1020,A+013.,435,580,849028088,9811,0 +1021,-018-,466,427,9291984,10481,0 +1022,Pf+Konfederacja+8,486,500,848915730,10068,0 +1023,Wioska+barbarzy%C5%84ska,571,516,699851345,9689,0 +1024,Konfiasze,471,495,698908912,10971,0 +1025,146+Puerto+Escondido,478,486,1497168,9761,9 +1026,071,583,588,698999105,10311,0 +1027,082,616,529,699373599,10093,0 +1028,sas,536,556,7581876,10200,0 +1029,053.,507,491,8788366,9403,0 +1030,Wioska_06,544,449,8674163,7035,0 +1031,Yogi,521,540,2808172,10019,0 +1032,AAA,526,459,849091084,9159,0 +1033,025,523,534,2808172,8225,0 +1034,Piek%C5%82o+to+inni,516,478,848956765,10019,0 +1035,Vito+3,513,533,7581876,9835,0 +1036,Winter+is+coming,500,585,699364813,10068,0 +1037,adam5,523,539,7581876,9684,0 +1038,Esgaroth,503,513,849091897,8874,0 +1039,%2AAteny_78,474,540,2585846,9638,0 +1040,%5B083%5D,536,489,848985692,10293,0 +1041,CHW%23034,476,534,699781762,10330,0 +1042,Jaaa,574,539,698635863,10479,0 +1043,NOT%21,468,535,9236866,8320,0 +1044,1.+Type-4H,500,548,849087855,9116,0 +1045,Suppi,471,542,699856962,9682,0 +1046,Pf+Konfederacja,483,490,848915730,10268,0 +1047,SsSs,425,493,1536625,9818,7 +1048,039.+ALFI,468,551,699856962,1369,0 +1049,BBB,555,435,1006847,7189,0 +1050,038.+ALFI,467,554,8539216,1894,0 +1051,038+%7C,567,559,8000875,10478,0 +1052,034.+ALFI,476,552,8539216,2714,0 +1053,Wioska+Barbarzy%C5%84ska,546,496,698867483,10019,0 +1054,0649,477,548,698659980,10019,9 +1055,040.+ALFI,473,559,699856962,1407,0 +1056,...,483,542,848915531,9122,0 +1057,Ogr%C3%B3d+Warzywny,446,559,7249451,7969,0 +1058,CHW%23035,477,534,699781762,9602,0 +1059,NOT%3F,427,496,9236866,10042,0 +1060,%2AAteny_04,471,536,699856962,9638,0 +1061,Follow+%21,501,502,699785935,10375,0 +1062,0127,463,544,698659980,10019,0 +1063,Szlachcic,500,471,699098531,9617,0 +1064,Zosta%C5%82em+Krabem,464,542,699783765,10252,0 +1065,064.,509,492,8788366,10393,0 +1066,%230094+Lebiedziew,474,559,9272054,8087,0 +1067,Os+Konfederacja+%2B,475,449,848915730,10178,0 +1068,Kwidzyn,509,618,606407,10311,0 +1069,Miejsca+z+plakatu,503,524,699785935,10160,0 +1070,Business+District,519,620,8199417,10495,0 +1071,-+Jeszcze+pi%C4%99%C4%87+minut,511,517,699785935,10160,0 +1072,%2AAteny_35,470,521,2585846,3823,0 +1073,ChceszPokojuSzykujSi%C4%99DoWojny,455,517,699333701,9533,0 +1074,Szlachcic,491,469,699098531,10161,0 +1075,170+Caracas,478,494,1497168,9753,9 +1076,Szlachcic,487,479,699098531,10300,0 +1077,Szlachcic+%21%21%21,483,477,699098531,10311,0 +1078,Sector+5,509,587,8199417,10316,0 +1079,001,489,470,699098531,9596,0 +1080,Szlachcic,490,463,699098531,10297,0 +1081,Lord+Arsey+KING,518,507,848956513,10285,0 +1082,086.,478,500,8788366,10252,0 +1083,116.,542,518,8788366,7372,0 +1084,maro+baron+1997%28Mieszko+1995%29,410,583,698769107,9899,0 +1085,C+Zach+002+Sosnicowice,404,576,849084740,10503,0 +1086,Mzm13.,560,516,7142659,10426,0 +1087,A.002,417,579,849088243,10259,0 +1088,%5B076%5D+Tote+dich,535,491,848985692,10397,0 +1089,A.007,410,586,849088243,10475,0 +1090,A.013,411,580,849088243,10559,0 +1091,Abadon+landy,563,489,699347951,9938,0 +1092,xxx,496,435,698239813,10495,8 +1093,%5B163%5D,537,530,8000875,8973,0 +1094,D04,546,455,699368887,7594,0 +1096,MojeSzczytToTw%C3%B3jDno,534,389,828637,10160,0 +1097,%7E%7ELataj%C4%85cyHolender%7E%7E,578,507,9174887,10066,0 +1098,.achim.,540,394,6936607,10311,0 +1099,para,495,590,8369778,10636,0 +1100,122+Wioska-005-,541,387,699491076,10001,0 +1101,Osada,491,453,699098531,9842,0 +1102,026,543,394,1424656,9825,0 +1103,Lord+Arsey+KING,528,486,848956513,10285,0 +1104,MojeSzczytToTw%C3%B3jDno,528,389,828637,10479,0 +1106,Szlachcic,491,470,699098531,10096,0 +1107,001+%C5%9Awi%C4%99ta+Terra,521,547,7581876,10019,0 +1108,Lord+Arsey+KING,515,489,848956513,10285,0 +1109,Wioska+Barbarzy%C5%84ska,547,486,698867483,9149,7 +1110,Wioska+181,524,538,849066849,2552,0 +1111,%2AINTERTWINED%2A,471,562,698704189,9735,0 +1112,yogi,527,552,2808172,10019,0 +1113,Mzm38,564,524,7142659,10426,0 +1114,Horyzont+zdarze%C5%84,514,551,7581876,9835,0 +1115,015,529,432,699788305,9192,0 +1116,yogi,524,562,2808172,10019,0 +1117,%5B145%5D+North,581,466,848985692,10052,0 +1118,Jaaa,580,553,698635863,10495,0 +1119,Horyzont+zdarze%C5%84,514,543,7581876,10160,0 +1120,NOT%3F,420,512,9236866,10042,0 +1121,055.,513,560,699695167,9735,0 +1122,Zero+Stresu,445,534,698971484,10083,0 +1123,21+Valhalla,528,548,699861004,9819,0 +1124,%28031%29,419,538,699846892,9130,0 +1125,Micha%C5%82,534,543,848967710,10495,0 +1126,Pf+Konfederacja,487,497,848915730,10030,0 +1127,Mzm01,608,530,7142659,10362,0 +1128,168+Capo+Grande,480,473,1497168,9761,0 +1129,KR%C3%93L+PAPI+WIELKI,574,577,698191218,10000,0 +1130,0062+%7E4%7E,444,433,3909522,10237,0 +1131,P.024,536,559,873575,10436,8 +1132,-+097+-,545,581,849018239,10000,0 +1133,%5B070%5D+Epsilon,552,502,848985692,10495,0 +1134,B003,553,499,8138506,10019,0 +1135,KONFA+TO+MARKA%2C+NARKA,442,461,698152377,10303,0 +1136,Wioska+17,554,504,699385139,8353,0 +1137,keepo,477,517,848967710,4876,0 +1138,%5B174%5D,553,508,8000875,7205,0 +1139,%7E%7ELataj%C4%85cyHolender%7E%7E,559,510,9174887,10224,0 +1140,Jehu_Kingdom_25_,600,483,8785314,9993,0 +1141,Lord+Arsey+KING,510,494,848956513,10285,0 +1142,010,526,500,8191129,10068,0 +1143,xxx,512,450,698239813,10559,0 +1144,Brat447,391,515,699262350,10476,0 +1145,007,520,517,8191129,9175,0 +1146,009,531,516,8191129,9835,0 +1147,Piek%C5%82o+to+inni,516,480,848956765,6991,0 +1148,%5B069%5D+Vonoy+ianao,531,504,848985692,10051,0 +1149,-%5B009%5D-+Nanga+Parbat,550,486,849092827,8134,0 +1150,007.+Atelstan,593,578,699373599,10252,0 +1151,Lord+Arsey+KING,584,526,848956513,10285,0 +1152,005.,615,542,8900955,7764,0 +1153,224+Coober+Pedy,528,443,1497168,9761,0 +1155,Brat447,445,485,699262350,10495,0 +1156,NWO,388,524,849030226,10950,0 +1157,163+Recife,478,478,1497168,9761,0 +1158,068+%7C,546,509,8000875,10495,0 +1159,hack3d+by+gh05t,476,525,7491093,9738,0 +1160,Piek%C5%82o+to+inni,522,483,848956765,10019,7 +1161,118,543,517,8788366,10393,0 +1162,%5B213%5D,542,520,8000875,10216,0 +1163,CALL+993,535,552,699784536,10178,0 +1164,%5B060%5D+Theta+%2A%2A,534,509,848985692,10241,0 +1165,Wioska+dezert8,541,518,848967710,10252,0 +1166,SsSs,423,506,1536625,9745,0 +1167,%5B146%5D,540,502,8000875,9547,0 +1168,Osada,502,439,699098531,10295,0 +1169,031.+Wioska+Zb%C3%B3jnik44,552,514,8788366,10252,0 +1170,K45+-+009,564,462,6510480,10319,5 +1171,050.+A-RE-SE-EY,543,511,848967710,10252,0 +1172,0180,464,549,698659980,9467,0 +1173,K34+-+%5B133%5D+Before+Land,458,380,699088769,9018,0 +1174,Yuppi,473,542,699856962,9644,0 +1175,%2308.,519,463,848967710,10971,0 +1176,Carsultyal.,487,554,698704189,9711,0 +1177,0133,456,391,699431255,7769,0 +1178,C027,524,450,699299123,8637,0 +1179,K34+-+%5B005%5D+Before+Land,453,388,699088769,10259,0 +1180,Szlachcic,516,464,699098531,8506,0 +1181,KONFA+TO+MARKA%2C+NARKA,430,462,698152377,10292,0 +1182,047.+A-RE-SE-EY,553,515,848967710,10252,6 +1183,C009,523,460,699299123,10495,0 +1184,C026,526,451,699299123,8359,0 +1185,15%2A,567,539,699664910,6349,0 +1186,001+hodowca1,530,466,8155296,8193,0 +1187,Samarkanda,531,462,8513699,6396,0 +1188,%2309.,527,463,848967710,10971,0 +1189,Szlachcic,569,488,698867446,9852,0 +1190,KHAND,537,462,8155296,10559,0 +1191,.achim.,533,454,6936607,9825,0 +1192,Lord+Arsey+KING,539,533,848956513,10285,0 +1193,C002,524,455,699299123,10971,0 +1194,Wioska+barbarzy%C5%84ska,536,541,7581876,5753,0 +1195,1+ESIOK,538,467,8155296,9571,2 +1196,C046,536,462,699299123,4933,0 +1197,Os+Konfederacja,479,443,848915730,9812,0 +1198,GELU%40GELU,534,469,8155296,9010,0 +1199,Yogi,537,542,2808172,10019,0 +1200,Horyzont+zdarze%C5%84,511,540,7581876,10019,2 +1201,C030,526,455,699299123,9747,0 +1202,Mzm16,559,516,7142659,10426,0 +1203,016+GELU-GELU+a,530,469,8155296,10986,0 +1204,Piek%C5%82o+to+inni,526,428,848956765,10160,0 +1205,C022,525,459,699299123,8850,0 +1206,-000-,538,450,849070335,9034,0 +1207,%2AAteny_17,468,526,2585846,3028,0 +1208,%C5%BBELAZNE+WZG%C3%93RZA,532,463,8155296,10861,0 +1209,011.,525,557,699695167,10132,0 +1210,08%2A,567,544,699664910,7321,1 +1212,F019,494,535,699189792,9189,0 +1213,107.,508,485,8788366,7634,5 +1214,Szlachcic,505,467,699098531,9623,0 +1215,Horyzont+zdarze%C5%84,535,542,7581876,9811,0 +1216,Piek%C5%82o+to+inni,511,471,848956765,8386,0 +1217,BETI+005,457,571,8539216,1372,0 +1218,%3F%2B44+85+Audruicq,455,481,698361257,9653,0 +1219,B036,488,453,699299123,10728,0 +1220,Suppi,471,540,699856962,9664,0 +1221,Szlachcic,511,465,699098531,8252,0 +1222,0071,468,548,698659980,9624,0 +1223,043.,575,452,849094609,9827,0 +1224,NOT%3F,419,529,9236866,9897,0 +1225,0082,531,513,699432672,10495,0 +1226,0189,465,549,698659980,8216,0 +1227,BBB,555,439,1006847,8476,0 +1228,023+Iowa,606,489,7092442,10362,0 +1229,0101,461,546,698659980,7962,0 +1230,KIELBA+091,447,567,699342219,9357,0 +1231,%23052,476,605,699605333,10393,0 +1232,K45+-+002,561,465,6510480,10316,0 +1233,o.s.a.d.a,554,476,698867483,10495,8 +1234,%2AAteny_66,468,539,2585846,9638,0 +1235,Wioska+Matyy,547,497,848967710,7937,0 +1236,R%C4%99cznik+do+zmiany,386,481,699697558,10160,0 +1237,hack3d+by+gh05t,478,523,7491093,6024,0 +1238,003,610,535,699413040,9924,0 +1239,%3F%2B44+76+Lyon+Les+Etats+Unis,464,477,698361257,9793,0 +1240,0001+bunkkk,616,531,6510480,10971,0 +1241,JaamMwG+007,520,526,848987051,9699,0 +1242,Wioska+Fezzoo,604,539,2999957,10242,0 +1243,Szlachcic,493,459,699098531,10470,0 +1244,.Wioska+Rok+Szczura,609,555,7047342,10478,0 +1245,0001.+A+-+Ellesmera,606,527,7125212,9761,0 +1246,Bocianikson001,609,542,7528491,9950,0 +1247,0053+K55+and987+OZDR,510,550,3613413,10083,0 +1248,KR%C3%93L+PAPI+WIELKI,602,541,698191218,10000,0 +1249,%5B108%5D,562,544,8000875,9873,0 +1250,-1-,583,495,699347951,10971,0 +1251,ADEN,559,446,698588535,10136,0 +1252,016+Sebo,619,524,8323711,10160,0 +1253,095+Macedonia+P%C3%B3%C5%82nocna,572,468,7092442,10495,0 +1254,001+start,610,563,9238175,10559,0 +1255,South+Barba+3,455,459,699796330,9802,0 +1256,ccc,606,546,7047342,10474,0 +1257,0001+MzM,599,569,698416970,9630,0 +1258,Szlachcic+001,615,534,698562644,10311,0 +1259,Monetki,478,433,699098531,10295,0 +1261,0008,607,503,699429153,10337,0 +1262,F070,486,519,699189792,9343,0 +1263,Wioska+nocna1993,610,532,2999957,10242,0 +1264,-%5B019%5D-+Ngadi+Chuli,551,490,849092827,7377,0 +1265,0051,513,524,699432672,10495,1 +1266,A.015,594,567,9188016,10000,0 +1267,Gattacka,591,492,699298370,9821,0 +1268,20001,519,539,848915531,9472,0 +1269,tomson89,608,529,7142659,10362,0 +1270,002+pieska+Leszka,605,533,9238175,10545,0 +1271,036,583,463,699573053,10495,0 +1272,Jaaa,579,592,698635863,10045,0 +1273,-%5B008%5D-+Manaslu,544,488,849092827,8116,0 +1274,054.,518,554,699695167,9769,0 +1275,067,550,429,699761749,10444,0 +1276,rakieta+004,617,534,848928486,9905,0 +1277,002,620,498,849006412,9956,0 +1278,Pf+Konfederacja+8,489,495,848915730,9287,0 +1279,%2A5502%2A+Dym+Aguszka,592,564,7973893,10287,0 +1280,31.,565,480,698702991,10104,0 +1281,001+Pallet+Town,595,500,699441366,11109,0 +1282,%7E036.,492,568,7139820,10495,0 +1283,001,606,498,699573053,10495,0 +1284,F061,489,524,699189792,9488,0 +1285,058.,480,488,699851345,10252,6 +1286,%230131+Maja,486,533,9272054,4593,0 +1287,054+Waikiki,456,467,1497168,9761,5 +1288,%2AAteny_09,472,534,2585846,9595,0 +1289,%2AAteny_76,475,526,2585846,8144,0 +1290,185,558,442,849064752,9727,0 +1291,%2AAteny_10,472,526,2585846,3348,0 +1292,049.+A-RE-SE-EY,541,513,848967710,10252,0 +1293,067.+%7CXD%7C,493,513,848967710,9871,0 +1294,.%3A017%3A.+Znicz,510,410,8649412,10160,0 +1295,.%3A001%3A.+Here+We+Go+Again,509,410,8649412,9745,0 +1296,.achim.,532,447,6936607,10838,0 +1297,F053+8,486,517,848915730,9394,0 +1298,088.,475,499,8788366,8892,0 +1299,.%3A010%3A.+Etyka,502,410,8649412,9428,0 +1300,Wioska+barbarzy%C5%84ska,448,451,699660539,9533,0 +1301,F041,488,519,699189792,9056,0 +1302,208+Nassau,468,463,1497168,9761,0 +1303,.%3A006%3A.+Top%C3%B3r,510,417,8649412,9737,0 +1304,NOT%3F,423,516,9236866,10042,0 +1305,.%3A139%3A.+Niangmen,510,400,848934935,10362,0 +1306,A10,548,454,699368887,9889,0 +1307,.%3A001%3A.+Chillout,505,412,848934935,10001,0 +1308,Suppi,437,418,699856962,9994,0 +1309,xxx,515,464,698239813,8108,0 +1310,0053+Szkolna+17,439,421,3909522,10083,0 +1311,0020,508,500,698599365,10019,0 +1312,Lynortis,465,537,849001724,9830,0 +1314,0055,464,464,848913037,9993,0 +1315,017+Oklahoma,427,425,9291984,10479,0 +1316,Suppi,440,515,699856962,9570,0 +1317,NOT%21%3F+YET,459,533,3909522,1462,0 +1318,0033+Wioska+T+S,432,418,3909522,10342,0 +1319,0016+O,434,410,3909522,10075,0 +1320,%5B053%5D+Delta,539,492,848985692,10178,0 +1321,%5B090%5D,540,490,848985692,10068,0 +1322,Nie+%C5%9Bpi%C4%99+bo+gonie+sny,568,594,699785935,10224,0 +1323,KR%C3%93L+PAPI+WIELKI,570,587,698191218,9899,0 +1324,SsSs,421,501,1536625,8476,0 +1325,026.+Wioska+Songoku29,556,505,8788366,10252,0 +1326,Lord+Arsey+KING,566,589,848956513,10285,0 +1327,Po%C5%82udniowa+brama,572,599,699785935,10316,0 +1328,15+%7C+Legionex,541,437,849002091,5595,0 +1329,%5B126%5D,543,498,8000875,9914,0 +1330,Wioska+505,577,458,477415,10495,0 +1331,014,542,499,8191129,8408,0 +1333,7.62+mm,482,444,699777234,10019,0 +1334,074,566,603,698999105,10311,0 +1335,PRO8L3M,405,492,7491093,10495,0 +1336,F089,497,517,699189792,9912,0 +1337,Wioska+Barbarzy%C5%84ska,540,480,698867483,9267,0 +1338,78k%24+Grvvyq,541,492,699676005,9471,0 +1339,022.+ALFI,474,566,8539216,1821,0 +1340,%5B185%5D,540,487,8000875,9959,0 +1341,kathare,493,575,873575,9918,0 +1342,%5B055%5D+Dzeta+%2A%2A%2A,538,496,848985692,10252,0 +1343,%7E%7ELataj%C4%85cyHolender%7E%7E,568,497,9174887,9545,0 +1344,%5B094%5D,538,490,848985692,11321,0 +1345,A026,488,412,699299123,10495,0 +1346,%5B098%5D,534,493,848985692,11137,0 +1347,yogi,532,519,2808172,10160,0 +1348,PRO8L3M,409,496,7491093,10099,0 +1349,Witam+w+wietnamie,419,539,699856962,9899,0 +1350,%2AAteny_32,465,520,2585846,5706,0 +1351,018,462,528,2585846,2156,0 +1352,F050,491,519,699189792,9105,0 +1353,ChceszPokojuSzykujSi%C4%99DoWojny,459,515,699333701,3924,0 +1354,FF002,469,518,699189792,9663,0 +1355,%5B085%5D,528,507,848985692,10394,0 +1356,Szlachcic,484,472,699098531,10311,0 +1357,Piek%C5%82o+to+inni,513,474,848956765,10160,0 +1358,009.+Marzyciel+Shrek,456,499,698290577,5698,0 +1359,0069,528,526,699432672,10495,0 +1360,Brat447,457,495,699262350,6290,0 +1361,Wioska+426,590,511,477415,10495,0 +1362,...Just+like+that,452,487,699723284,10452,0 +1363,JaamMwG+025,522,525,848987051,9753,0 +1364,%3F%2B44+75+Feyzin,455,478,698361257,9840,0 +1365,041+Fairbanks,458,470,1497168,9761,0 +1366,-x3,500,499,848967710,10252,0 +1367,010+%7C,561,558,8000875,9888,5 +1369,...Just+like+that,462,487,699723284,4139,0 +1371,065+Phildelphia,462,474,1497168,9761,0 +1372,%3F%2B44+85+Lyon+Vaise,457,488,698361257,9852,0 +1373,Szlachcic,492,462,699098531,10297,0 +1374,Cast+Away+009,449,483,698290577,10068,0 +1375,B007,556,504,8138506,9640,0 +1376,Yogi,515,533,2808172,10019,0 +1377,Lord+Arsey+KING,517,527,848956513,10285,0 +1378,sas,514,534,7581876,9159,0 +1379,%C5%9Amieszkiii,479,581,3454753,8491,0 +1380,0009,507,526,699432672,10495,0 +1381,P.003,537,566,873575,10097,0 +1382,20011,518,531,848915531,11550,0 +1383,025.+A-RE-SE-EY,575,533,848967710,10252,0 +1384,Horyzont+zdarze%C5%84,516,536,7581876,10019,0 +1385,004,549,569,6818593,9835,0 +1386,yogi,516,541,2808172,10019,0 +1387,Butem+w+Morgen,484,512,848967710,10495,0 +1388,Micha%C5%82,531,536,848967710,10495,0 +1389,Hilonia,512,556,849066849,7946,0 +1390,Yogi,518,528,2808172,10019,0 +1391,Fajna+056,456,548,699868002,2308,0 +1392,Horyzont+zdarze%C5%84,526,546,7581876,9835,0 +1393,0073,511,531,699432672,10495,0 +1394,xxx,503,428,698239813,10495,0 +1395,Lord+Arsey+KING,515,522,848956513,10285,0 +1396,Wioska+barbarzy%C5%84ska,421,503,1536625,7704,0 +1397,Daleko+032,476,578,6116940,8576,2 +1398,0067,506,525,699432672,10495,0 +1399,017.+B%C5%82ud,511,563,699703642,9534,0 +1400,Lord+Arsey+KING,524,501,848956513,10285,0 +1401,Ateny_73,470,524,2585846,3033,0 +1402,B048,484,464,699299123,10495,6 +1403,Wioska+4,523,504,699385139,7268,0 +1404,002+Wawrzyszew,540,470,849083501,9792,0 +1405,%3F%2B44+85+Brexent+Enocq,458,484,698361257,9860,0 +1406,Wioska+barbarzy%C5%84ska,526,501,848967710,10252,0 +1407,066+Punxsutawney,461,477,1497168,9761,0 +1408,KONFA+TO+MARKA%2C+NARKA,393,464,698152377,10311,0 +1409,0006,390,460,699523631,10795,0 +1410,KONFA+TO+MARKA%2C+NARKA,387,468,698152377,10311,0 +1411,Piek%C5%82o+to+inni,520,487,848956765,9745,0 +1412,.%3A028%3A.+Belka,513,419,8649412,9130,1 +1413,Micha%C5%82,534,541,848967710,10495,0 +1414,.Br10..,428,545,8779575,9782,0 +1415,0050+K55+and987+OZDR,508,549,3613413,10083,0 +1416,%23008+-+Awzan,520,505,848967710,9015,0 +1417,P.008Z,506,553,873575,10157,0 +1418,018.+A-RE-SE-EY,572,528,848967710,10252,0 +1419,20009,503,545,848915531,11130,0 +1420,B043,480,469,699299123,10273,0 +1421,S%C5%82oneczna+Przysta%C5%84,519,543,7581876,10019,0 +1422,09%2A,571,542,699664910,8746,0 +1423,Horyzont+zdarze%C5%84,507,546,7581876,11911,0 +1424,adam3,525,538,7581876,9811,0 +1425,%2AINTERTWINED%2A%2A,522,552,698704189,9711,0 +1426,F040,482,520,699189792,9980,0 +1427,Horyzont+zdarze%C5%84,519,560,7581876,10019,0 +1428,%C5%9Amieszkii,517,565,3454753,9006,0 +1429,%C5%9Amieszkii,516,568,3454753,9182,0 +1430,059.,501,492,8788366,10252,0 +1431,yogi,526,556,2808172,10019,0 +1432,Bilonia,517,555,849066849,10376,0 +1433,yogi,520,538,2808172,10019,0 +1434,20027,507,549,848915531,11321,0 +1435,016+Przelot%C3%B3wka,421,540,699425709,9873,0 +1436,Zagrzeb,425,458,699660539,9765,7 +1437,%C5%9Amieszkii,525,548,3454753,10224,0 +1438,Gratuluje+m%C3%B3zgu,442,537,698971484,6573,0 +1439,%C5%9Amieszkii,517,557,3454753,9123,0 +1440,Horyzont+zdarze%C5%84,515,554,7581876,10019,0 +1441,10000,527,567,848915531,11321,0 +1442,Lord+Arsey+KING,523,495,848956513,10285,0 +1443,%C5%9Amieszkii,517,560,3454753,9335,0 +1444,006.,520,554,699695167,10188,0 +1445,Osada,497,439,699098531,10300,0 +1446,0050,508,526,699432672,10495,0 +1447,0038+K54+and987+OZDR.,495,564,3613413,9861,0 +1448,Ogr%C3%B3d+Warzywny,444,564,7249451,7833,8 +1449,Lord+Arsey+KING,522,492,848956513,10285,0 +1450,PRO8L3M,461,499,7491093,6572,0 +1451,051+Hilo,457,472,1497168,9761,0 +1452,%3F%2B44+76+Lyon+Tete+dOr,462,479,698361257,9752,0 +1453,%3F%2B44+85+Lyon+Perrache,454,480,698361257,10495,0 +1454,F068,486,520,699189792,9116,0 +1455,031+Nashville,452,468,1497168,9761,0 +1456,026,526,438,699788305,9290,0 +1457,PRO8L3M,466,495,7491093,10336,0 +1458,JaamMwG+008,519,526,848987051,9691,0 +1459,077.,467,492,8788366,10252,0 +1460,Mniejsze+z%C5%82o+0049,419,513,699794765,5923,0 +1461,SsSs,463,502,1536625,10495,0 +1462,Piek%C5%82o+to+inni,522,427,848956765,10160,0 +1463,068+Scranton,464,479,1497168,9761,2 +1464,.Mobile,469,494,699781762,12154,0 +1465,0035,464,470,848913037,7942,0 +1466,%3F%2B44+95+Pusignan,459,489,698361257,9726,0 +1467,keepo,482,532,848967710,10495,0 +1468,B060,473,464,699299123,10495,0 +1469,PRO8L3M,465,492,7491093,8530,0 +1470,PRO8L3M,460,497,7491093,10068,0 +1471,028,457,494,699510259,9761,0 +1472,Wioska+barbarzy%C5%84ska,537,505,848967710,10252,0 +1473,Horyzont+zdarze%C5%84,537,561,7581876,10019,8 +1474,%23%23%23%23Wioska+barbarzy%C5%84ska,437,429,9291984,10209,0 +1475,0026+K55+and987+OZDR.,500,560,3613413,9861,0 +1476,P.014,539,562,873575,10384,0 +1477,yogi,511,556,2808172,10019,0 +1478,0Wioska+barbarzy%C5%84ska,479,529,699781762,10085,0 +1479,004+%7C+Niflheim,508,548,7581876,10019,0 +1480,0008+K55+and987+OZDR.,506,560,3613413,10160,0 +1481,0062+%7E3%7E,443,435,3909522,10365,0 +1482,0102,445,415,699431255,9582,0 +1483,021.+A-RE-SE-EY,572,529,848967710,10252,0 +1484,027+San+Antonio,433,436,9291984,10476,0 +1485,-%5B005%5D-+Makalu,554,481,849092827,7296,0 +1486,2.Rhm-B-Wt+%21%21%21,497,541,849087855,10002,0 +1487,Wioska+barbarzy%C5%84ska,586,519,699851345,9708,0 +1488,0050+Mleko%C5%82ak,433,425,3909522,9885,0 +1489,WioskaA,513,584,8369778,10231,0 +1490,lady,504,567,699703642,10454,0 +1491,002,497,380,698739350,9761,0 +1492,Szlachcic,487,459,699098531,9680,0 +1493,Kiedy%C5%9B+Wielki+Wojownik,397,458,8632462,9835,0 +1494,Suppi,425,421,699856962,10220,0 +1495,Wioska+barbarzy%C5%84ska,474,539,698971484,10008,0 +1496,R%C4%99cznik+do+zmiany,398,438,699697558,10160,0 +1497,Monetki,486,425,699098531,10294,0 +1498,0013+G,431,410,3909522,10160,0 +1499,NOT%3F,434,533,9236866,7428,0 +1500,Gravity,409,451,698962117,9525,0 +1501,%2AINTERTWINED%2A,473,569,698704189,9711,0 +1502,0011+S,431,408,3909522,10075,0 +1503,Gravity,406,457,698962117,9763,0 +1504,0070,510,531,699432672,10495,0 +1505,Suppi,428,450,699856962,9894,0 +1506,7.62+mm,488,430,699777234,10019,7 +1507,x19,409,433,698884287,10285,0 +1508,033,520,571,699189792,9745,0 +1509,FKG+01-01,420,411,356642,9835,0 +1510,KONFA+TO+MARKA%2C+NARKA,448,453,698152377,10294,1 +1511,CALL+1055,520,532,699784536,10495,0 +1512,0026+A-01,428,414,3909522,10083,0 +1513,0045+K55+and987+OZDR,506,548,3613413,10083,0 +1514,SsSs,419,501,1536625,7710,0 +1515,A010,447,403,8740199,10237,0 +1516,Bucksbarzy%C5%84sKamiiiru,428,506,848955783,10093,0 +1517,CALL+1063,519,530,699784536,9727,0 +1518,NOT,422,427,9236866,10042,0 +1519,%5B141%5D+North,583,464,848985692,10054,0 +1520,...,496,544,848915531,10075,0 +1521,Winter+is+coming,445,552,698971484,5915,0 +1522,0002,443,395,699431255,10017,0 +1523,CALL+972,545,553,699784536,10452,2 +1524,%C5%9Amieszkii,532,544,3454753,10316,0 +1525,Winter+is+coming,443,548,698971484,1842,0 +1526,84k%24+Grvvyq,526,525,699676005,10495,0 +1527,0109,461,544,698659980,9251,0 +1528,Szlachcic,500,469,699098531,9883,4 +1529,Nie+oceniaj,505,519,699785935,10160,0 +1530,JaamMwG+009,521,528,848987051,9885,0 +1531,KAER+MORHEN,481,378,699658023,9674,0 +1532,%2307.,529,478,848967710,10252,0 +1533,0012+K,431,409,3909522,10252,0 +1534,Wioska+Barbarzy%C5%84ska,554,477,698867483,9309,0 +1535,0080,441,410,699431255,9924,0 +1536,%5B122%5D,568,536,8000875,9811,0 +1537,001,409,447,698884287,10285,0 +1538,A15,553,449,699368887,10068,5 +1539,Gravity,413,455,698962117,9502,0 +1540,%5B115%5D,542,504,8000875,9885,0 +1541,K44+x027,437,411,698364331,9850,0 +1542,CALL+975,541,545,699784536,10311,0 +1543,FAKE+OR+OFF,436,399,698231772,9858,0 +1544,SsSs,421,494,1536625,9454,0 +1545,002,580,534,8138506,10019,3 +1546,Lecymy+DUR,444,399,6169408,10495,0 +1547,22.,561,479,698702991,10178,0 +1548,K44+x004,442,400,698364331,9801,0 +1549,Osada+SP,449,536,698971484,9577,9 +1550,Kentin+ufam+Tobie,432,402,699783765,10019,0 +1551,%5B112%5D,555,533,8000875,9955,0 +1552,0063,505,513,699432672,10495,0 +1553,A005,446,403,8740199,10218,0 +1554,B012,537,481,8138506,9469,6 +1555,NOT,414,437,9236866,10042,0 +1556,Szlachcic+027,566,527,758104,9338,0 +1557,0107,456,386,699431255,9835,0 +1559,CALL+979,552,550,699784536,10311,0 +1560,%5B080%5D,533,526,848985692,10030,0 +1561,Osada,498,452,699098531,9976,0 +1562,No+i+Mi%C3%B3d,535,519,7581876,9835,0 +1563,%5B082%5D,530,527,848985692,10030,0 +1564,0120,460,547,698659980,6164,0 +1565,76k%24+Grvvyq,527,535,699676005,10495,0 +1566,80k%24+Grvvyq,530,526,699676005,10495,0 +1568,0061+Wioska,444,436,3909522,10242,0 +1569,JaamMwG+010,527,521,848987051,10087,0 +1570,Lord+Arsey+KING,522,500,848956513,10285,0 +1571,Szlachcic+004,618,533,698562644,10311,0 +1572,0081+Wioska,443,445,3909522,10223,0 +1573,117.,537,518,8788366,10252,0 +1574,BBB,552,428,1006847,6678,0 +1576,20028,507,548,848915531,10495,0 +1577,Suppi,424,424,699856962,9825,0 +1578,Wioska+barbarzy%C5%84ska,414,445,698884287,10285,0 +1579,00192+Wioska,438,412,3909522,7082,0 +1581,Osada,495,442,699098531,10292,0 +1582,%23039,520,553,849001572,10059,0 +1583,Filantrop_kto%C5%9B%3F,579,485,699347951,7770,3 +1584,0001,439,403,699431255,10201,0 +1585,Jaaa,569,534,698635863,10484,0 +1586,Land+of+Fire,396,443,698962117,9505,0 +1587,%28019%29,426,539,9236866,9699,0 +1588,Velenneth,403,427,7462660,10068,0 +1589,0116,450,390,699431255,10019,0 +1590,Szlachcic,455,462,698388578,11063,0 +1591,Gravity,406,445,698962117,9527,0 +1592,9.9+Heytroom,550,441,8444356,8584,0 +1593,05.+Brakuj%C4%85cy+element,404,565,9167250,10057,0 +1594,0019,531,533,699432672,10495,0 +1595,Alabama,409,469,699265922,9835,0 +1596,x11,406,429,698884287,10285,0 +1597,0030,512,498,698599365,9812,0 +1598,KONFA+TO+MARKA%2C+NARKA,401,465,698152377,11950,0 +1599,0Wioska+barbarzy%C5%84ska,477,535,699781762,10311,0 +1600,%C5%9Amieszkii,538,548,3454753,10160,0 +1601,F078,509,537,699189792,9753,0 +1602,Zeta+Reticuli+S,418,417,699323302,11188,0 +1603,R%C4%99cznik+do+zmiany,412,489,699697558,11635,0 +1604,20012,529,538,848915531,7036,0 +1605,Szlachcic,460,419,698388578,10237,0 +1607,Lord+Arsey+KING,538,533,848956513,10285,0 +1608,Osada,490,456,699098531,9637,4 +1609,CALL+996,543,542,699784536,9638,0 +1610,asasa,401,540,699856962,9840,0 +1611,003,531,482,848967710,10252,0 +1612,Mzm39,548,546,7142659,10362,0 +1613,10010,531,557,848915531,8708,0 +1614,C003,518,456,699299123,10971,0 +1615,003,552,539,699194766,8886,0 +1616,102.,505,480,8788366,7061,0 +1617,Yogi,539,527,2808172,9777,0 +1618,kto+ananasowy+pod+wod%C4%85+ma+dom,574,511,699628084,9797,0 +1619,0034%3A,431,417,3909522,10160,0 +1620,Daleko+039,485,592,8369778,9014,0 +1621,%5B0002%5D,423,408,8630972,10495,0 +1622,Pf+Konfederacja+8,491,502,848915730,9976,0 +1623,Gravity,406,450,698962117,9497,0 +1624,Br4,425,545,699364813,8845,0 +1625,Yogi,511,548,2808172,10019,0 +1626,Wioska+barbarzy%C5%84ska,495,517,848967710,10209,0 +1627,%2A310%2A,508,618,606407,10294,0 +1628,Szlachcic,497,480,699098531,9899,0 +1629,0117,461,545,698659980,7866,0 +1630,0001+K55+and987+OZDR.,504,552,3613413,10160,0 +1631,%C5%9Amieszkii,513,561,3454753,9835,0 +1632,Horyzont+zdarze%C5%84,517,549,7581876,9835,0 +1633,PRO8L3M,447,502,7491093,10311,0 +1634,CALL+1057,520,533,699784536,10495,0 +1635,Wioska+barbarzy%C5%84ska,430,503,698971484,9870,0 +1636,021.+%C5%BBmij,508,574,699703642,9761,0 +1637,018,539,486,849070464,4387,0 +1638,Reco,495,554,698704189,9711,0 +1639,.%3A065%3A.+Chillout,515,425,848934935,2753,0 +1640,%C5%9Amieszkii,511,552,3454753,10019,0 +1641,.%3A031%3A.+Makaron,512,416,8649412,8923,0 +1642,%5B182%5D,530,555,8000875,10233,0 +1643,.achim.,530,393,6936607,10311,0 +1644,207+San+Juan,466,463,1497168,9761,0 +1645,Gundabad,534,558,849091897,10971,0 +1646,R%C4%99cznik+do+zmiany,418,487,699697558,10845,0 +1647,%C5%9Amieszkii,518,562,3454753,9123,0 +1648,P.013,531,560,873575,10375,0 +1649,ChceszPokojuSzykujSi%C4%99DoWojny,453,512,699333701,9835,0 +1650,Yogi,514,544,2808172,10019,0 +1651,Dilonia,518,561,849066849,8160,0 +1652,Wioska+519,558,466,477415,10495,0 +1653,Shire,531,545,7581876,9811,0 +1654,Gattacka,586,514,699298370,10635,8 +1655,Horyzont+zdarze%C5%84,512,544,7581876,10019,0 +1656,0242,521,606,698659980,10019,0 +1657,NOT%3F,432,529,9236866,10042,0 +1658,Summer+Slam+%7E+006,513,541,7581876,9703,0 +1659,10002,525,567,848915531,11550,0 +1660,Lord+Arsey+KING,509,526,848956513,10285,7 +1661,Wioska+barbarzy%C5%84ska,510,544,7581876,10495,0 +1662,Lord+Arsey+KING,537,531,848956513,10285,0 +1663,xxx,487,443,698239813,10495,9 +1664,Wioska,383,503,849084005,10178,0 +1665,NOT%3F,418,510,9236866,10042,0 +1667,xxx,513,455,698239813,9032,0 +1668,019,517,538,848915531,7279,0 +1669,CALL+1015,551,562,699784536,10311,4 +1670,%23027,518,551,849001572,9941,0 +1671,068.+ALFI,477,558,8539216,1862,0 +1672,0080,527,548,699432672,10495,0 +1673,yogi,513,543,2808172,10019,0 +1674,Suppi,441,448,699856962,9697,0 +1675,A042,508,430,699299123,10495,8 +1676,20026,507,544,848915531,11321,0 +1677,Dum+Spiro+Spero,493,557,848896948,10183,0 +1678,CALL+962,545,546,699784536,10311,0 +1679,PARASOL+X,504,598,8369778,10221,0 +1680,Horyzont+zdarze%C5%84,509,544,7581876,10019,0 +1681,000+Wioska,510,538,848915531,10728,0 +1682,Gryfios+018,617,541,698666810,12143,0 +1683,Mzm50,538,520,7142659,4839,0 +1684,0023+K55+and987+OZDR.,505,558,3613413,9861,0 +1685,024.+A-RE-SE-EY,570,530,848967710,10252,0 +1686,%C5%9Amieszkii,522,563,3454753,9835,0 +1687,77k%24+Grvvyq,527,543,699676005,10495,0 +1688,024.+Utopiec,510,571,699703642,9761,0 +1689,.achim.,529,452,6936607,9398,0 +1690,KIELBA+103,450,569,699342219,10247,2 +1691,0046+K55+and987+OZDR,509,548,3613413,10083,0 +1692,lady,506,567,699703642,10612,0 +1693,10001,534,564,848915531,11130,9 +1694,Karaz-a-Karak,517,543,7581876,10019,0 +1695,035.+ALFI,471,560,8539216,1653,0 +1696,006+Deliverance,520,548,7581876,9835,0 +1697,0118,460,546,698659980,8118,0 +1698,Szlachcic,487,480,699098531,9685,6 +1699,Horyzont+zdarze%C5%84,513,552,7581876,10019,0 +1700,002+Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,465,543,698971484,10008,0 +1701,A002,493,417,699299123,10495,8 +1702,1.+Is-2+%21%21%21,500,549,849087855,10019,0 +1703,Wioska+501,577,459,477415,10495,0 +1704,2.+World+%21%21%21,503,540,849087855,10019,0 +1705,P+Konfederacja,454,447,848915730,9823,0 +1706,Wioska,391,535,849084005,9739,0 +1707,0054,460,470,848913037,6685,0 +1708,2.+Jagdpanzer+%21%21%21,500,541,849087855,9828,0 +1709,Szlachcic+009,564,528,758104,9338,0 +1710,015+-+Tychy%2A%2A%2A,448,582,225023,10495,0 +1711,20025,509,543,848915531,8672,0 +1712,20021,504,548,848915531,9926,0 +1713,0036+K55+and987+OZDR.,503,565,3613413,9919,0 +1714,-+Nie+bior%C4%99+tabletek+na+sen,510,513,699785935,9835,0 +1715,Nilonia,518,555,849066849,6238,0 +1716,JaamMwG+011,521,527,848987051,9148,0 +1717,0033,620,513,6510480,10203,0 +1718,NOT%3F,425,537,9236866,9990,0 +1719,Oilonia,512,559,849066849,6521,0 +1720,Szlachcic,551,496,698867446,9852,3 +1721,010.,530,553,699695167,10132,0 +1722,065.+ALFI,471,569,8539216,1299,0 +1723,And987,502,561,3613413,10495,0 +1724,%230124+Zabawa,493,522,9272054,9410,0 +1725,%C5%9Amieszkii,512,564,3454753,9175,0 +1726,004,530,483,848967710,10252,0 +1727,Aleartis,487,546,698704189,9711,6 +1728,Horyzont+zdarze%C5%84,529,543,7581876,9835,0 +1729,Head+Held+High,501,519,699785935,10362,0 +1730,Winter+is+coming,509,571,699364813,10311,0 +1731,007,528,480,848967710,10160,0 +1732,KARTAGINA+..2,454,583,8438707,6898,0 +1733,Wioska+7,443,544,698971484,1557,0 +1734,KIELBA+002,447,578,699342219,10495,0 +1735,0018,530,512,699432672,10495,0 +1736,Wioska+skobol,599,573,17714,10216,0 +1737,005,470,499,699781762,8144,0 +1738,001.+Pianohi1Tars,611,538,699785935,10059,0 +1739,Ilonia,520,555,849066849,8230,0 +1740,...xXx...+II,603,540,3364735,9966,0 +1741,7.62+mm,503,440,699777234,10019,0 +1742,001.Aconcagua,601,571,1601917,10495,0 +1743,037.,551,516,8788366,10252,0 +1744,Gliwice,593,577,1715091,9899,0 +1745,Brat447,418,520,699262350,10476,0 +1747,Napewno+to+nie+jest+off,515,443,848912265,7630,0 +1748,Krakow,592,567,1715091,9526,0 +1749,%230107+%C5%9Awi%C4%99ty+Miko%C5%82aj,480,541,698704189,9432,0 +1750,podgrzybek,601,572,1715091,9591,0 +1751,031,537,426,7271812,10495,0 +1752,W.181%2F01,608,536,2999957,10242,0 +1753,Monetki,472,421,699098531,10291,0 +1754,Godziwa+nazwa,605,540,3364735,9966,0 +1755,%7E%7ELataj%C4%85cyHolender%7E%7E,547,467,9174887,7923,0 +1756,.WIDZEW,595,569,6929240,9840,0 +1757,%2B44+73+Lyon+Confluence,430,471,698361257,9849,6 +1759,%230126+Koliber,494,524,9272054,10160,0 +1760,EXA,616,533,848967710,10495,0 +1761,017+Indianopolis,439,476,1497168,9761,0 +1762,%C5%9Apij+spokojnie,582,590,699785935,10495,0 +1763,Jaaa,571,541,698635863,10490,0 +1764,%2A5601%2A+Bradford+City,600,559,7973893,10287,0 +1765,09+%7C+Wioska+barbarzy%C5%84ska,541,439,849002091,9757,0 +1766,0001,604,549,477415,10495,0 +1767,Szlachcic,493,477,699098531,9637,0 +1768,Abadonia+WWW,618,487,699347951,10955,0 +1769,7.62+mm,477,440,699777234,10019,0 +1770,001+Sparta,605,530,8013349,10019,0 +1771,Yogi,540,543,2808172,10019,0 +1772,040,586,564,699373599,10068,0 +1773,001.+Wioska+BieniuS,593,520,8788366,10495,0 +1774,008.,615,536,8900955,6722,0 +1775,007+Sol.,611,529,699099811,10019,0 +1776,0018+MzM,607,555,698416970,9322,0 +1777,Osada,501,440,699098531,10300,0 +1778,0050,600,531,698416970,9483,0 +1779,0001,571,579,698191218,10343,0 +1780,CALL+1038,540,551,699784536,10838,0 +1781,9.6+Bonus+PKP,555,434,8444356,10471,4 +1782,%7E%7ELataj%C4%85cyHolender%7E%7E,598,500,9174887,10247,0 +1783,Ogr%C3%B3d+Warzywny,455,561,7249451,10569,3 +1784,002,606,537,699413040,9860,0 +1785,GONDOR+f,541,472,8155296,8877,0 +1786,ZAMEK+ABADONA+1,591,489,699347951,11130,0 +1787,amator+MO5,536,551,848915531,10495,0 +1788,s%C5%82odziute%C5%84ka+13,602,537,8013349,10160,0 +1789,Szlachcic,582,488,699759128,10237,0 +1790,111.,533,476,8788366,8369,0 +1791,s%C5%82odziute%C5%84ka+06,604,535,8013349,9821,0 +1792,CALL+956,547,549,699784536,10311,0 +1793,013,612,542,8428196,9934,0 +1794,PRO8L3M,447,488,7491093,10437,0 +1795,Wioska+JaaMwG,578,595,698635863,10478,0 +1796,Jaaa,567,580,698635863,10432,0 +1797,B044,480,468,699299123,10204,0 +1798,Szlachcic,579,493,699759128,10237,3 +1799,%5B186%5D,536,493,8000875,9976,0 +1800,%2301.,526,467,848967710,10252,0 +1801,a+mo%C5%BCe+off+%3F+%3A%29,574,587,698768565,9374,0 +1802,Wioska+408,555,514,477415,10495,0 +1803,022.,612,540,8900955,6874,0 +1804,Z%C5%82ote+Wrota,532,458,8513699,5950,0 +1805,010+Moria,604,529,8013349,9816,0 +1807,%2B44+63+Mions,432,469,698361257,9840,0 +1808,-001-+Delusions+of+Saviour,578,591,698693697,10294,0 +1809,139+Gudalajahara,472,489,1497168,9761,0 +1810,Szlachcic+x,508,461,699098531,9265,0 +1811,Wioska+barbarzy%C5%84ska,433,506,698971484,10008,0 +1812,EXA,605,527,848967710,10495,0 +1813,027,467,437,9291984,10346,0 +1814,000+PRO8L3M%3F,573,553,699316421,9744,0 +1815,F021,497,533,699189792,9753,0 +1816,Piek%C5%82o+to+inni,521,471,848956765,9761,0 +1817,Marienburg+8,527,480,699355601,2412,0 +1818,014.,599,545,8900955,7563,0 +1819,B007,483,442,699299123,10495,0 +1820,kto+ananasowy+pod+wod%C4%85+ma+dom,581,580,699628084,9797,0 +1821,.Wis%C5%82a+Krak%C3%B3w.,599,547,6929240,10328,0 +1822,%5B109%5D,544,506,8000875,9938,0 +1823,Piek%C5%82o+to+inni,518,482,848956765,9028,0 +1824,M%C3%B3wili+na+ni%C4%85+s%C5%82o%C5%84ce,577,594,699785935,10311,0 +1825,%2B44+63+Sainte+Foy+les+Lyon,433,464,698361257,9840,0 +1826,Lord+Arsey+KING,581,591,848956513,10285,0 +1827,115.,509,479,8788366,9436,0 +1828,A%23034%23,421,476,698807570,11837,6 +1829,0007,604,496,699429153,10301,0 +1830,Wioska+502,586,491,477415,10495,0 +1831,044,599,561,699373599,10068,0 +1832,07+Chorwacja,586,488,8925695,9595,0 +1833,012.,608,557,8900955,9737,0 +1834,Front_22,455,529,699856962,9638,0 +1835,Lord+Arsey+KING,575,590,848956513,10285,0 +1836,004,506,478,698881022,3134,0 +1837,Piek%C5%82o+to+inni,518,467,848956765,9761,0 +1838,Lord+Arsey+KING,581,590,848956513,10285,0 +1839,%230078+Wermikulit,496,559,9272054,10005,0 +1840,050,492,380,698739350,9619,0 +1841,016,465,577,848886870,10252,0 +1842,KR%C3%93L+PAPI+WIELKI,600,533,698191218,10000,0 +1843,B002,555,500,8138506,9588,0 +1844,0032,616,527,6510480,9846,0 +1845,0229,470,547,698659980,10019,0 +1846,OSTIGLIAT,532,469,8155296,8966,0 +1847,039,555,446,849063849,8677,0 +1848,007,558,541,699194766,9547,7 +1849,%5B035%5D,595,538,848985692,10252,0 +1850,Obro%C5%84cyZamkuTrzymaliSieDzielnie,479,530,7491093,10236,0 +1851,KiLL+YoU%21,603,537,848985692,10311,0 +1852,035,519,576,699189792,9747,0 +1853,Essa+001,570,576,848987051,10218,0 +1854,Szlachcic,569,474,698867446,9976,0 +1855,Jaaa,589,554,698635863,10479,0 +1856,.achim.,532,475,6936607,5455,0 +1857,Szlachcic+002,616,535,698562644,10311,0 +1858,Ateny_71,472,519,2585846,3345,0 +1859,006.,613,547,8900955,6373,0 +1860,K44+x020.,457,430,698364331,6957,0 +1861,Kotka+nie+ma%2C+myszka+harcuje,571,596,699785935,10160,0 +1862,nie+ma+mnie+%2Costrze+kredki,606,560,8742874,9761,0 +1863,Wioska+Barbarzy%C5%84ska,544,486,698867483,9761,0 +1864,Moria,535,532,7581876,6405,0 +1865,Micha%C5%82,531,537,848967710,10495,0 +1866,Pf+Konfederacja,491,500,848915730,7482,0 +1867,CALL+1077,528,546,699784536,10728,0 +1868,0055,510,517,699432672,10495,0 +1869,Wioska,384,520,849084005,10178,0 +1870,Zeta+Reticuli+S,404,420,699323302,11188,0 +1871,kek,545,516,848967710,7290,0 +1872,0073,451,439,3909522,10429,8 +1873,Szlachcic+060,540,527,758104,8024,0 +1874,Butem+w+Morgen,482,514,848967710,9996,0 +1875,CALL+999,542,540,699784536,10311,0 +1876,Os+Konfederacja,470,449,848915730,9646,0 +1877,026+-+Belfast,406,580,225023,10495,0 +1878,%5B143%5D,562,535,8000875,9809,0 +1879,Oh+oh+oho,537,534,699785935,10160,0 +1880,kathare,493,569,873575,10495,0 +1881,CALL+1061,523,533,699784536,10495,0 +1882,aaa,456,544,699698253,1985,0 +1883,003,524,531,7581876,10019,0 +1884,P+Konfederacja,453,446,848915730,9535,0 +1885,SsSs,418,492,1536625,9906,7 +1886,Wioska+uorior,530,539,7581876,9626,0 +1887,Szlachcic+%21%21%21,498,475,699098531,10311,0 +1888,amator+MO4,535,549,848915531,10495,0 +1889,keepo,477,512,848967710,6025,0 +1890,0038+MzM,547,541,698416970,10019,0 +1891,003,471,515,848967710,5613,0 +1892,sas,539,528,7581876,10277,0 +1893,10015,527,562,848915531,8014,0 +1894,Jilonia,513,555,849066849,6749,7 +1895,Micha%C5%82,537,543,848967710,10495,0 +1896,009,554,531,699316421,9744,0 +1897,Szlachcic,550,527,698867446,9852,0 +1898,.%3A009%3A.+Chillout,515,430,848934935,9146,1 +1899,kek,537,515,848967710,8753,0 +1900,032,522,573,699189792,9742,0 +1901,K55,531,524,698867483,11678,0 +1902,%5B089%5D,535,487,848985692,10005,0 +1903,Tamk+005.+Vegeta,398,501,698290577,9084,0 +1904,Fajna+001,450,557,698971484,4187,4 +1905,Lord+Arsey+KING,539,532,848956513,10285,0 +1906,CALL+1021,550,564,699784536,10311,0 +1907,CALL+1084,536,540,699784536,10495,0 +1908,002.+Marzyciel+Shrek,482,504,698290577,5781,0 +1909,85k%24+Grvvyq,535,529,699676005,9447,0 +1910,30005,488,542,848915531,9030,0 +1911,P.032,544,558,873575,10143,0 +1912,0062+%7E223%7E,442,439,3909522,9091,0 +1914,xxx,504,446,698239813,10023,0 +1915,056.,529,555,699695167,9741,0 +1916,B009,485,447,699299123,10495,0 +1917,%5B193,530,551,8000875,9814,0 +1918,0.Nowy+Jork,518,586,698215322,9954,0 +1919,Osada,493,448,699098531,9968,8 +1920,0001+paawlo13,424,412,3909522,10160,0 +1921,112+Ottawa,479,491,1497168,9761,0 +1924,Os+Konfederacja+8,480,448,848915730,9812,0 +1926,021,505,591,7976264,9986,0 +1928,457%7C424,450,405,9291984,10481,0 +1929,001+Delirium,425,416,9291984,10476,0 +1930,A010,489,414,699299123,10495,0 +1932,Fajna+045,458,557,3613413,3874,0 +1934,K44+009,429,483,698290577,7589,0 +1936,P+Konfederacja,456,449,848915730,9897,0 +1940,Lord+Arsey+KING,517,501,848956513,9247,0 +1941,Mam+do+tego+nosa,498,521,699785935,9899,0 +1942,011,468,579,848886870,10503,0 +1943,Darma,427,402,356642,9835,0 +1944,Butem+w+Morgen,489,510,848967710,10495,0 +1947,Fresio,420,419,699660539,10067,0 +1948,PRO8L3M,411,496,7491093,10311,0 +1949,0030,454,383,699431255,10677,0 +1950,045,543,431,7271812,6187,0 +1952,ChceszPokojuSzykujSi%C4%99DoWojny,452,516,699333701,9416,0 +1953,SugarDandy,431,406,699796330,10319,0 +1954,1.+T-10,493,530,849087855,10144,0 +1956,078.+ALFI,481,556,8539216,1905,0 +1957,Suppi,424,422,699856962,10231,0 +1958,Wioska+barbarzy%C5%84ska,442,441,9291984,9809,0 +1959,VN+No+Door,467,378,699883079,9835,0 +1961,B028,482,452,699299123,8626,0 +1963,Wioska+barbarzy%C5%84ska,586,521,699851345,9703,0 +1964,NOT,418,429,9236866,10042,0 +1965,Suppi,425,422,699856962,9559,0 +1966,Jaaa,583,534,698635863,10481,0 +1967,Szlachcic,494,478,699098531,10311,0 +1968,%3F%2B44+85+Zuydcoote,455,484,698361257,9747,0 +1969,yogi,510,547,2808172,10019,0 +1970,keepo,484,528,848967710,10495,0 +1972,Joms+005,527,422,699756210,10178,0 +1973,0158,462,550,698659980,8847,0 +1974,%2AINTERTWINED%2A,519,568,698704189,9711,0 +1975,kathare,498,569,873575,10401,0 +1976,lady+anima,495,577,699703642,9997,0 +1977,036.+Ara,506,576,699703642,9628,0 +1978,A%23064%23,417,474,698807570,10391,0 +1979,lady,495,586,699703642,7413,0 +1980,Landy+3,566,482,699347951,8845,0 +1981,Nowa+Nadzieja,493,592,699383121,9835,0 +1982,.%3A044%3A.+Chillout,500,394,848934935,10559,0 +1983,NOT%3F,422,528,9236866,9740,0 +1984,x16,432,441,698884287,10285,0 +1985,-xx13,490,497,848967710,10252,0 +1986,Suppi,431,442,699856962,10311,0 +1987,P+Konfederacja+8,458,450,848915730,9694,0 +1988,Suppi,439,447,699856962,9777,0 +1989,034,518,570,699189792,9745,0 +1990,Osada+ST,454,540,699698253,2840,6 +1991,Wioska+barbarzy%C5%84ska,426,445,698884287,10285,0 +1992,09+Niemcy,585,490,8925695,6263,0 +1993,064,420,514,699851427,10042,0 +1994,Os+Konfederacja,480,449,848915730,9720,0 +1995,014,421,511,699851427,10129,0 +1996,Szlachcic,492,482,699098531,10300,0 +1997,Lynortis,454,546,699698253,3793,2 +1998,058+Kahului,460,469,1497168,9761,0 +1999,046,421,487,699510259,9825,0 +2000,Jaaa,582,536,698635863,10484,0 +2001,%5B183%5D,553,540,8000875,9704,0 +2002,JL5,539,449,8155296,8533,0 +2003,Osada,491,441,699098531,10295,0 +2004,012+123+rta,542,455,699368887,9039,0 +2005,%21Aqua004,564,514,477415,10495,0 +2006,Cyber+detox,400,520,1804724,10204,0 +2007,172+Ushuaia,482,478,1497168,9761,0 +2008,Butem+w+Morgen,553,548,848967710,10495,0 +2009,004,555,543,699194766,9638,0 +2010,Taran,585,453,699759128,10237,0 +2011,BBB,576,448,1006847,8849,0 +2012,-+216+-,552,573,849018239,10000,0 +2013,070+Chicago,456,476,1497168,10019,4 +2014,20015,516,559,848915531,10971,0 +2015,F034,496,524,699189792,9750,0 +2016,012.+Yrka,510,560,699703642,10083,0 +2017,K55,539,519,848967710,9602,0 +2018,Obreit,431,561,699443920,4076,0 +2019,CALL+1062,520,534,699784536,9899,0 +2020,.%3A028%3A.Chillout,512,442,848934935,7734,0 +2021,%3F%2B44+75+Lyon+Grange+Blanche,459,477,698361257,9709,0 +2022,Napewno+to+nie+jest+off,513,439,848912265,9629,0 +2023,PRO8L3M,457,498,7491093,8419,0 +2024,0020,464,466,848913037,9993,9 +2025,P.016,534,568,873575,10345,0 +2026,C020,526,462,699299123,10347,0 +2027,051,531,576,699189792,10160,0 +2028,-+118+-,540,573,849018239,9610,0 +2029,%2B44+61+Chaponost,417,467,698361257,9860,0 +2030,Kasyno,437,512,7249451,9994,0 +2031,160+Fortaleza,479,479,1497168,9761,0 +2032,159+Rio+de+Janeiro,480,477,1497168,9761,0 +2033,KONFA+TO+MARKA%2C+NARKA,424,462,698152377,10291,0 +2034,003+Arizona,610,485,7092442,10495,0 +2035,0028+K55+and987+OZDR.,504,562,3613413,9842,0 +2036,%2B44+61+Rexpoede,415,469,698361257,9653,0 +2037,206,565,397,849064752,9835,0 +2038,7.62+mm,467,445,699777234,10019,0 +2039,0027,561,394,699485250,10211,0 +2040,2.+Vipera,489,538,849087855,10287,0 +2041,SsSs,423,489,1536625,10069,0 +2042,R%C4%99cznik+do+zmiany,426,480,699697558,12154,0 +2043,.%3A092%3A.+JuanPabloII,542,444,848934935,8743,0 +2044,%3F%2B44+86+Lyon+Croix+Rousse,460,485,698361257,9724,0 +2045,Brat447,441,488,699262350,8597,0 +2046,...Just+like+that,463,490,699723284,9477,0 +2047,CALL+959,543,548,699784536,10311,0 +2048,ANGMAR+a,532,467,8155296,11130,0 +2049,xxx,484,421,698239813,10495,0 +2050,Harbar+3,430,550,8779575,3223,0 +2051,xxx,481,430,698239813,10495,0 +2052,-019-,468,428,9291984,10490,0 +2053,Mielno,520,423,699433558,10375,0 +2054,-+046+-,539,581,849018239,10000,0 +2055,Zasiedmiog%C3%B3rogr%C3%B3d,518,429,699433558,10178,0 +2056,Pf+Konfederacja+%2B,485,483,848915730,9902,0 +2057,077+Shreveport,457,455,1497168,9761,0 +2058,Monetki,473,436,699098531,10290,6 +2059,P+Konfederacja+%2B,460,446,848915730,9720,0 +2060,SsSs,449,498,1536625,10495,0 +2061,Azgeda,537,439,848986287,9816,0 +2062,Wioska+barbarzy%C5%84ska,536,442,849002091,8511,0 +2063,Brat447,384,511,699262350,10160,0 +2064,Brat447,384,515,699262350,10244,0 +2065,2.+War%2A%2A,491,524,849087855,6062,0 +2066,ok.,389,532,849030226,10495,0 +2067,0009+K55+and987+OZDR.,504,555,3613413,9842,0 +2068,214+Gold+Coast,531,438,1497168,9761,0 +2069,0015+K55+and987+OZDR.,502,558,3613413,9844,0 +2070,.achim.,532,448,6936607,12154,0 +2071,Sparta_41,480,581,2585846,9638,0 +2072,.%3A089%3A.JuanPabloII,539,442,848934935,10495,0 +2073,007+Celadon+City,589,495,699441366,11109,0 +2074,PU%C5%81+WYP%C5%81ATY+POSZ%C5%81O+NA+MUREK+XDD,547,435,848986287,9878,0 +2075,Utumno,504,512,849091897,9680,0 +2076,Stage+group+A,503,582,699703642,8769,6 +2077,Stolica,537,433,848986287,10019,0 +2078,kto+ananasowy+pod+wod%C4%85+ma+dom,565,505,699628084,9797,0 +2079,Zasiedmiog%C3%B3rogr%C3%B3d,538,430,699433558,5978,0 +2080,%C5%9Amieszkii,519,572,3454753,9404,0 +2081,Catern,538,433,848986287,10019,0 +2082,2.+Sosnomysz,545,430,8444356,10252,0 +2083,Os+Konfederacja+%2B,475,450,848915730,10068,0 +2084,A034,496,417,699299123,9792,0 +2085,SsSs,461,502,1536625,9833,0 +2086,Piek%C5%82o+to+inni,518,442,848956765,10160,0 +2087,006,549,534,699194766,9711,7 +2088,Marienburgg+11,533,458,699355601,8945,0 +2089,-2-,585,493,699347951,10997,0 +2091,Szlachcic,562,470,698867446,9852,0 +2092,Teatr,433,565,7249451,10495,0 +2093,keepo,478,515,848967710,5264,0 +2094,Suppi,436,449,699856962,9556,0 +2095,Fajna+014,451,565,699856962,6504,0 +2096,%5B098%5D,552,508,8000875,9957,7 +2098,001+Jacek+Jaworek+baza,415,547,698971484,9766,0 +2099,Jaaa,573,542,698635863,10484,0 +2100,Suppi,416,540,699856962,9825,0 +2101,069,416,530,699851427,10129,0 +2102,.+Incepcja,419,545,699856962,9031,0 +2103,KIELBA+069,469,576,699342219,10365,0 +2104,.achim.,540,393,6936607,10311,0 +2105,027,422,516,699851427,10042,0 +2106,.achim.,532,396,6936607,10311,0 +2107,008,549,568,6818593,9835,0 +2108,BBB,583,440,1006847,10495,0 +2109,Pf+Konfederacja,484,500,848915730,9714,0 +2110,NOT%3F,425,540,9236866,9976,0 +2111,%3F%2B44+85+Brignais,459,481,698361257,9846,2 +2112,012,588,446,699722599,10495,0 +2113,Wioska+434,566,519,477415,10495,0 +2114,-xx14,492,501,848967710,10393,0 +2115,Wioska+424,563,506,477415,10495,0 +2116,BBB,588,442,1006847,9494,0 +2117,%5B091%5D,539,488,848985692,10057,0 +2118,Mzm15,547,537,7142659,10495,0 +2119,Mzm35,550,530,7142659,10362,0 +2120,0072,452,438,3909522,8839,0 +2121,00972,462,437,3909522,6600,0 +2122,Napewno+to+nie+jest+off,515,441,848912265,3751,0 +2123,0076,449,440,3909522,7693,0 +2124,.achim.,518,455,6936607,10311,0 +2125,00731+nsplus1,450,438,3909522,9835,0 +2126,Szlachcic,497,475,699098531,9885,0 +2127,00703,452,442,3909522,7528,0 +2128,B010,578,412,699761749,10495,0 +2129,P.021,538,561,873575,10136,0 +2130,014,584,408,849064752,10311,0 +2131,ladyanima,513,570,699703642,9811,0 +2132,052+%7C,545,505,8000875,9919,0 +2133,xxx,503,446,698239813,10495,0 +2134,ladyanima,515,569,699703642,9151,0 +2135,The+Last+One,500,454,699341889,6355,0 +2136,048,430,490,699510259,9771,0 +2137,Unlovable,506,509,699785935,8293,0 +2138,NOT%3F,439,550,9236866,2091,0 +2139,030,562,399,849063849,10636,0 +2140,G%C3%93RY+B%C5%81%C4%98KITNE+f%3F,530,468,8155296,11366,0 +2141,036.+ALFI,477,560,8539216,1705,0 +2142,052.,523,557,699695167,9902,0 +2143,Joms+004,526,422,699756210,10241,2 +2144,keepo,475,514,848967710,5093,0 +2145,-%5B031%5D-+Saltoro+Kangri,551,484,849092827,6756,0 +2147,001+Washington+D.C.,438,470,1497168,9761,0 +2148,Gratuluje+m%C3%B3zgu,444,535,698971484,10201,0 +2149,9.1+%C5%9Aciernisko,545,438,8444356,10495,0 +2150,KONFA+TO+MARKA%2C+NARKA,432,459,698152377,10291,0 +2151,Suppi,431,444,699856962,10237,0 +2152,Szlachcic,508,459,699098531,9622,0 +2153,.achim.,531,393,6936607,10311,0 +2154,015,417,519,699851427,5953,4 +2155,Mzm23,574,510,7142659,10362,0 +2156,P+Konfederacja,457,446,848915730,10068,0 +2157,A052,500,423,699299123,10495,2 +2158,024.+Wioska+k4myk,575,508,8788366,10252,0 +2159,a+mo%C5%BCe+off+%3F+%3A%29,583,587,698768565,10211,0 +2160,Going+Under,501,518,699785935,10362,0 +2161,Wioska+400,564,516,477415,10495,0 +2162,013.+Wioska+POLdi,574,513,8788366,10252,0 +2163,0025+K55+and987+OZDR.,503,562,3613413,9792,7 +2164,Filonia,521,554,849066849,8673,0 +2165,A06,550,448,699368887,8290,0 +2166,NOT%3F,435,528,9236866,10068,0 +2167,237+Maduraj,474,514,1497168,4792,7 +2169,076.,568,466,849094609,9949,0 +2170,Korczo,397,517,1804724,10204,0 +2171,045,448,537,698971484,6820,0 +2172,Wioska+szyymekk,396,525,960100,7447,0 +2173,Craven+Cottage,547,517,699194766,6806,0 +2174,Wioska+szyymekk,403,528,1804724,10251,0 +2175,Winter+is+coming,507,574,699364813,10311,6 +2176,06.+Yaren+Bolt,565,483,699347951,10110,0 +2177,Winter+is+coming,505,584,699364813,9843,0 +2178,B011,552,487,8138506,10160,0 +2179,NOT%3F,429,536,9236866,9359,0 +2180,-+069+-,543,576,849018239,10000,0 +2181,034,559,530,699316421,9744,0 +2182,Napewno+to+nie+jest+off,516,430,848912265,10178,0 +2183,0053,591,504,698416970,10971,0 +2184,Os+Konfederacja+%2B,475,440,848915730,9846,0 +2185,Wioska,384,529,849084005,10178,0 +2186,218+Adelaide,531,440,1497168,8850,0 +2187,AR_ELA,459,519,2585846,9638,0 +2188,Joms+018,518,417,699756210,10268,0 +2189,Wioska+Barbarzy%C5%84ska,542,494,698867483,10019,0 +2190,JaamMwG+012,524,529,848987051,9054,0 +2191,keepo,478,513,848967710,10362,0 +2192,Gravity,412,452,698962117,9497,0 +2193,Winter+is+coming,444,551,698971484,5640,0 +2194,Fajna+011,451,561,699868002,7736,0 +2195,xxx,502,435,698239813,10495,0 +2196,CALL+1045,567,561,699784536,7438,0 +2197,161,433,433,699660539,7247,0 +2198,Wioska+barbarzy%C5%84ska,434,500,698971484,10008,0 +2199,A038,507,428,699299123,10495,0 +2200,SsSs,401,491,1536625,9875,0 +2201,%5B142%5D+North,578,468,848985692,10052,0 +2202,-+099+-,533,580,849018239,9835,0 +2203,Wioska+barbarzy%C5%84ska,561,455,699368887,9902,0 +2204,JF2,555,457,699368887,5005,0 +2205,MasteroN+03,569,447,699379895,10636,0 +2206,026,432,486,699510259,9771,0 +2207,225+Auckland,539,444,1497168,9761,0 +2208,KIELBA+060,458,581,699342219,10444,0 +2209,xxx,512,447,698239813,8779,4 +2210,Jaaa,575,588,698635863,10239,0 +2211,amator+MO1,536,555,848915531,10636,0 +2212,-+049+-,540,574,849018239,10000,0 +2213,Wioska+CzarnamambaPL,562,583,6818593,9835,0 +2214,035.,504,491,8788366,10252,0 +2215,16%2A,565,543,699664910,6484,0 +2216,201+Asuncion,469,460,1497168,9761,0 +2217,Szlachcic+001,565,530,758104,8024,0 +2218,PRO8L3M,462,491,7491093,7740,0 +2219,JM4,561,458,699368887,5844,0 +2220,038+-+Getafe,609,500,698342159,8062,0 +2221,023,569,549,699316421,9744,0 +2222,Sheraton,579,585,699785935,10495,0 +2223,F013,493,544,699189792,9750,0 +2224,Bagdad,476,393,8847546,10654,0 +2225,.achim.,533,427,6936607,10311,0 +2226,CHW%23029,479,535,699781762,10495,0 +2227,Napewno+to+nie+jest+off,514,436,848912265,7478,0 +2228,%2AINTERTWINED%2A,531,556,698704189,9711,0 +2229,-+312+-,524,584,849018239,10000,0 +2230,Wioska4,492,598,8369778,10254,0 +2231,Wioska+barbarzy%C5%84ska,434,508,698971484,10008,0 +2232,Piek%C5%82o+to+inni,523,414,848956765,10160,0 +2233,Piek%C5%82o+to+inni,519,424,848956765,10160,0 +2234,Abadon+landy+2,566,491,699347951,7445,0 +2235,2.+Wz+%21%21%21,497,542,849087855,9817,0 +2236,monetki,508,433,699098531,9824,0 +2237,Osada+x,509,452,699098531,9478,0 +2238,Monetki,474,423,699098531,10297,0 +2239,Napewno+to+nie+jest+off,512,445,848912265,5068,0 +2240,Warzywniak+018,447,549,698290577,2856,0 +2241,028.+Rar%C3%B3g,518,559,699703642,9582,0 +2242,A02,549,454,699368887,9994,0 +2243,Bucksbarzy%C5%84sKamiiiru,438,531,848955783,7175,0 +2244,KONFA+TO+MARKA%2C+NARKA,437,465,698152377,10290,0 +2245,KONFA+TO+MARKA%2C+NARKA,452,457,698152377,10290,0 +2246,KIELBA+065,470,577,699342219,10495,0 +2247,Sparta_31,489,576,2585846,9638,9 +2248,017,418,518,699851427,10042,0 +2249,Szlachcic,568,484,698867446,9583,0 +2250,yogi,520,536,2808172,10019,0 +2251,yogi,522,530,2808172,10083,0 +2252,Piek%C5%82o+to+inni,520,424,848956765,10160,0 +2253,022+Grand+Forks,448,470,1497168,9761,6 +2254,001+Fiona,446,502,698290577,10203,0 +2255,029,539,420,7271812,10495,0 +2256,%2A%2A%2A9f%2A%2A%2A+Brzoskwinia,553,390,1990750,10068,0 +2257,012,574,550,699316421,9744,0 +2258,042,554,393,849064752,10311,0 +2259,0033+K55+and987+OZDR.,502,562,3613413,9861,0 +2260,031,451,550,698290577,2203,0 +2261,Forteca,499,569,606407,9174,0 +2262,Szlachcic,587,506,699759128,10104,0 +2263,Os+Konfederacja,474,452,848915730,10311,0 +2264,121+Trois+Rivieres,478,490,1497168,9761,0 +2265,Os+Konfederacja+%2B,474,450,848915730,9976,9 +2267,Cast+Away+021,441,482,698290577,4228,0 +2268,093+Luksemburg,574,474,7092442,10495,0 +2269,KONFA+TO+MARKA%2C+NARKA,428,486,698152377,10300,0 +2270,Village,504,603,849094067,12154,0 +2271,047,446,532,698971484,7670,0 +2272,--------1,455,421,9291984,10495,0 +2273,094+%C5%81otwa,572,471,7092442,10495,0 +2274,Onda,435,557,699443920,4028,0 +2275,%5B175%5D,562,562,8000875,6951,0 +2276,Kasyno,444,510,7249451,9902,0 +2277,%2AINTERTWINED%2A,515,614,698704189,9711,0 +2278,x03,545,473,8459255,10016,0 +2279,Midgard,483,496,848967710,10252,0 +2280,211+Wagga+Wagga,539,428,1497168,9398,0 +2281,Brat447,446,490,699262350,8577,0 +2282,Brat447,437,485,699262350,8154,0 +2283,PYRLANDIA+005+%24,571,594,33900,10495,0 +2284,Szlachcic,572,496,698867446,9852,0 +2285,sas,526,553,7581876,10019,0 +2286,105+Dumdi+diri+daj,542,460,7092442,5198,0 +2287,CALL+1081,532,548,699784536,10636,0 +2288,Horyzont+zdarze%C5%84,532,545,7581876,9835,0 +2289,Napewno+to+nie+jest+off,515,434,848912265,6552,0 +2290,xxx,485,431,698239813,10495,0 +2291,.%3A019%3A.+Krab,511,432,8649412,9742,0 +2292,100,409,514,699851427,10042,0 +2293,02+W%C5%82ochy,582,486,8925695,9374,0 +2294,Osada,499,450,699098531,9976,0 +2295,ChceszPokojuSzykujSi%C4%99DoWojny,457,519,699333701,3647,0 +2296,SsSs,416,496,1536625,9131,0 +2297,11+%7C+Pcim+dolny,537,440,849002091,8720,0 +2298,Wioska,391,505,849084005,10178,0 +2299,Wioska+barbarzy%C5%84ska,431,504,698971484,10008,0 +2300,001.+WDP,611,544,8900955,7669,0 +2301,0011+K55+and987+OZDR.,507,561,3613413,9861,0 +2302,Minas+Tirith,534,387,1990750,10068,0 +2303,Marienburg+2,523,481,699355601,3442,0 +2304,%5B0112%5D,443,398,8630972,10495,0 +2305,Szlachcic,576,494,699759128,10104,0 +2306,Monetki,469,421,699098531,10292,0 +2307,ADEN,582,433,698588535,10211,0 +2308,042+InnyNizWszyscy,540,389,699491076,9336,0 +2309,0030,560,391,699485250,10211,0 +2310,Szlachcic,498,461,699098531,8972,0 +2311,7.62+mm,489,421,699777234,10019,0 +2312,Szlachcic,495,483,699098531,10311,0 +2313,Wioska+barbarzy%C5%84ska,492,412,699658023,9664,0 +2314,%5B115%5D+North15,575,471,848985692,10052,0 +2315,.%3A004%3A.+Chillout,501,414,848934935,9496,0 +2316,B02,540,445,8649412,9814,0 +2317,A011,488,414,699299123,10495,0 +2318,0Wioska+barbarzy%C5%84ska,473,512,699333701,2780,0 +2319,%230021+Szczur,486,546,9272054,10019,0 +2320,Horyzont+zdarze%C5%84,525,545,7581876,10019,0 +2321,053,419,515,699851427,10129,0 +2322,x07,560,476,8459255,10267,0 +2323,PRO8L3M,423,505,7491093,8099,0 +2324,hack3d+by+gh05t,474,526,7491093,9835,0 +2325,101,548,498,699351301,10035,0 +2326,082+MEHEHE,497,618,6116940,10019,0 +2327,Suppi,438,518,699856962,9562,0 +2328,mehehehe,467,438,9291984,10481,0 +2329,Szlachcic,559,480,699759128,10237,0 +2330,%5B234%5D+WEST,598,451,848985692,10052,0 +2331,P+Konfederacja,457,443,848915730,9812,0 +2332,043,544,394,849064752,10311,0 +2333,ladyanima,514,571,699703642,9613,0 +2334,0000+Velka+pardubicka,471,423,3909522,9899,0 +2335,Yogi,512,552,2808172,10019,0 +2336,PRO8L3M,460,499,7491093,10495,0 +2337,x+Romper+Stomper,423,502,698290577,7238,0 +2338,Brat447,456,509,699262350,10728,0 +2339,%5B154%5D+North,566,465,848985692,10411,0 +2340,Wioska+barbarzy%C5%84ska,514,536,848915531,4953,0 +2341,Wioska+16,530,499,699385139,8852,0 +2342,Strasznie+Mi%C5%82y+S%C4%85siad%21,548,447,556154,9735,0 +2343,069.+ALFI,465,570,8539216,1493,0 +2344,%2B44+62+Broukerque,420,466,698361257,9669,0 +2345,037.+A-RE-SE-EY,548,499,848967710,10252,0 +2346,10022,531,561,848915531,10728,0 +2347,%5B111%5D,557,501,8000875,9976,0 +2348,Osada,498,443,699098531,10292,0 +2349,CALL+977,551,554,699784536,10311,0 +2350,Wioska+barbarzy%C5%84ska,452,455,699660539,7355,0 +2351,Szlachcic,577,484,699759128,10025,0 +2352,Lord+Arsey+KING,516,519,848956513,10285,9 +2353,RZESZ%C3%93W,422,428,699660539,9668,0 +2354,Ta+cena+si%C4%99+nie+zmienia,512,510,699785935,8549,0 +2355,Land+of+Fire,396,446,698962117,9505,0 +2356,slow,530,489,848967710,10316,0 +2357,Szlachcic,578,502,699759128,10237,0 +2358,0019.+B+-,577,505,7125212,10160,0 +2359,Wioska+barbarzy%C5%84ska,538,499,848967710,10595,0 +2360,Pf+Konfederacja,495,490,848915730,9438,0 +2361,023+Rapid+City,438,479,1497168,9761,0 +2362,FAKE+OR+OFF,438,398,698231772,9828,0 +2363,A031,496,415,699299123,10495,0 +2364,0016,547,547,699432672,10495,0 +2365,Lord+Arsey+KING,516,487,848956513,10285,0 +2366,kathare,497,571,873575,11130,0 +2367,010.+A-RE-SE-EY,575,526,848967710,10252,0 +2368,008+%7C+Lord+Axen+-+Beware%21,552,536,8000875,9960,0 +2369,0031,467,469,848913037,9086,0 +2370,Sir+Hood+1,386,531,1804724,10393,0 +2371,.%3A123%3A.+Niangmen,520,412,848934935,10068,0 +2372,%21Charizard,568,443,699795378,9816,0 +2373,DobromirPan,412,576,698769107,9701,0 +2375,KIELBA+032,453,574,699342219,9624,0 +2376,Wioska+Barbarzy%C5%84ska,547,484,698867483,10362,0 +2377,Wioska+sila,503,479,699098531,10779,0 +2378,106.,495,488,8788366,7287,0 +2379,0012,509,528,699432672,10495,0 +2380,221+Mackay,531,439,1497168,10043,0 +2381,0001,512,519,699432672,10495,0 +2382,Wioska+Barbarzy%C5%84ska,544,484,698867483,10019,0 +2383,FF011,465,518,699189792,4356,0 +2384,045.+ALFI,479,563,8539216,1767,0 +2385,%2B44+73+Saint+Priest+Bel+Air,430,476,698361257,9855,0 +2386,Carsultyal,482,556,698704189,9711,0 +2387,%230024+Wycieczka+szkolna,487,570,9272054,10019,0 +2388,FFF,531,464,849091084,4711,0 +2389,007.+ALFI,469,569,8539216,1581,0 +2390,Sparta_64,482,579,2585846,9638,0 +2391,Wioska+13,532,498,699385139,9227,0 +2393,kto+ananasowy+pod+wod%C4%85+ma+dom,575,505,699628084,9797,0 +2394,Monetki,485,412,699098531,10306,0 +2395,001.+ALFI,472,566,8539216,2237,0 +2396,KIELBA+074,469,574,699342219,10237,0 +2397,.achim.,558,448,6936607,10132,0 +2398,002.+ALFI,472,567,8539216,1235,0 +2399,Minas+Anor+017,573,461,699379895,10495,0 +2400,194+Georgetown,466,461,1497168,9761,0 +2401,Ogr%C3%B3d+Warzywny,447,564,7249451,7202,0 +2402,Szlachcic,566,498,698867446,9435,0 +2403,Szlachcic,491,472,699098531,10294,0 +2404,036+Tulsa,434,441,9291984,10495,0 +2405,KONFA+TO+MARKA%2C+NARKA,425,482,698152377,10311,0 +2406,Suppi,433,444,699856962,10104,0 +2407,086,533,486,699351301,5231,0 +2408,024+Trititi,543,464,849031818,10019,0 +2409,Wioska+barbarzy%C5%84ska,535,539,7581876,9811,0 +2410,Kentin+ufam+Tobie,391,485,699783765,10000,0 +2411,182+Artigas,479,484,1497168,9761,0 +2412,166+Belem,482,477,1497168,9761,0 +2413,.achim.,530,444,6936607,12154,0 +2414,7.62+mm,486,429,699777234,10019,6 +2415,0Wioska+barbarzy%C5%84ska,470,513,699189792,4527,0 +2416,0648,478,548,698659980,10005,0 +2417,C013,526,458,699299123,10042,0 +2418,004,473,510,1536625,8162,0 +2419,0062+%7E222%7E+zaj%C4%85c,442,438,3909522,10478,0 +2420,%5B147%5D+North,583,475,848985692,10060,0 +2421,91k%24+Grvvyq,559,540,699676005,10495,0 +2422,Obro%C5%84cyZamkuTrzymaliSieDzielnie,479,528,7491093,9945,0 +2423,%3F%2B44+96+Ecully+Val+dOuest,467,491,698361257,11487,0 +2424,033,522,567,699189792,9747,0 +2425,084.,469,485,8788366,10252,0 +2426,.achim.,534,423,6936607,6643,0 +2427,107+Quebec+City,464,488,1497168,9761,0 +2428,Piek%C5%82o+to+inni,517,474,848956765,9346,0 +2429,%230077+S%C5%82abo%C5%9B%C4%87,497,558,8827094,9976,0 +2430,049,588,480,699573053,10495,0 +2431,Lord+Arsey+KING,514,526,848956513,10285,2 +2432,%230079+UPC,495,565,9272054,10014,0 +2433,7.62+mm,498,426,699777234,10019,0 +2434,026+Nelin,542,467,849031818,9889,0 +2435,%230099+%C5%9Awidnik,479,546,9272054,9307,0 +2436,A018,489,418,699299123,10495,0 +2437,018+-+Chicanna%2A%2A%2A,436,591,225023,10495,0 +2438,Szlachcic,497,470,699098531,9693,0 +2439,7.62+mm,477,448,699777234,10019,0 +2440,015.+Dola,509,570,699703642,9449,0 +2441,Os+Konfederacja+%2B,478,445,848915730,9749,0 +2442,Osada,496,446,699098531,10294,0 +2443,Os+Konfederacja,473,444,848915730,10252,0 +2444,023.+ALFI,486,572,8369778,1618,0 +2445,Strasznie+Mi%C5%82y+S%C4%85siad%21,549,449,556154,9735,0 +2446,7.62+mm,514,441,699777234,10019,0 +2447,Jaaa,572,577,698635863,10282,0 +2448,Gratuluje+m%C3%B3zgu,442,536,698971484,9674,0 +2449,meh,438,553,699856962,1703,0 +2450,073.,493,487,8788366,10252,0 +2451,0081,527,512,699432672,10495,0 +2452,Wioska+barbarzy%C5%84ska,406,423,698971484,10008,0 +2453,009711,464,439,3909522,10133,0 +2454,P+Konfederacja,454,444,848915730,9921,0 +2455,NOT%3F,461,537,9236866,9184,0 +2456,%7E%7ELataj%C4%85cyHolender%7E%7E,583,508,9174887,10149,0 +2457,036,613,489,849006412,9701,0 +2458,Szlachcic,556,487,698867446,9798,0 +2459,Madryt,422,457,699660539,10495,0 +2460,0032,523,502,698599365,10132,0 +2461,031,523,441,699788305,7732,0 +2462,Kasyno,441,508,7249451,10237,0 +2463,Isengard,532,532,7581876,8441,0 +2464,Suppi,443,529,699856962,9559,0 +2465,Arizona,406,471,699265922,9761,0 +2466,SS04,533,493,699744766,5559,0 +2467,072+Houston,448,444,1497168,9761,0 +2468,Szlachcic,510,475,699098531,9623,0 +2469,086.+ALFI,484,564,8539216,1324,0 +2470,Fajna+025,446,552,698971484,6509,0 +2471,Atlantis+07,542,425,699433558,10654,0 +2472,Szlachcic,557,486,698867446,9721,0 +2473,Village,504,575,849094067,12154,0 +2474,Wioska+417,564,506,477415,10495,0 +2475,-+299+-,527,579,849018239,10008,0 +2476,Szlachcic,506,471,699098531,8483,0 +2477,%230015+Zapalniczka,500,566,9272054,10008,0 +2478,SsSs,424,495,1536625,7168,0 +2479,0034+K55+and987+OZDR.,503,558,3613413,9845,0 +2480,KIELBA+058,466,584,699342219,10259,0 +2481,warzywa+style,507,572,699364813,9790,0 +2483,JaamMwG+015,523,517,848987051,10226,0 +2484,040.+A-RE-SE-EY,563,528,848967710,10252,0 +2485,CALL+969,548,569,699784536,10311,0 +2486,079,568,393,849063849,10068,0 +2487,%2B44+72+Inxent,421,470,698361257,9710,0 +2488,..%3A%3A004%3A%3A..+Planeta+Guwbu,412,435,698884287,10285,0 +2489,093,591,474,699573053,10495,0 +2490,Szlachcic,491,481,699098531,10297,0 +2491,067+Baltimore,461,474,1497168,9761,0 +2492,IBAR,431,554,8779575,2670,0 +2493,043+Kodiak,463,469,1497168,9761,0 +2494,091+Liechtenstein,574,462,7092442,10495,0 +2495,062+Carson+City,457,470,1497168,9761,0 +2496,Suppi,431,457,699856962,9580,0 +2497,Cast+Away+023,438,478,698290577,3688,0 +2498,Joms+014,521,415,699756210,9861,0 +2499,%2B44+83+Ghyvelde,437,481,698361257,9839,0 +2500,Osada,491,440,699098531,10295,0 +2501,%7E086.,494,607,7139820,10495,0 +2502,Monetki,482,423,699098531,10294,0 +2503,Osada+KS,450,536,698971484,9829,5 +2504,Teby_01,504,609,2585846,9638,0 +2505,Brat447,437,486,699262350,8851,0 +2506,P+Konfederacja+%2B,458,449,848915730,9692,0 +2507,Wioska+Barbarzy%C5%84ska,553,477,698867483,10019,0 +2508,078+Albuquerque,463,453,1497168,9761,0 +2509,%3F%2B44+85+Hesdigneul+les+Boulogne,456,489,698361257,9849,0 +2510,JM3,561,456,699368887,8991,0 +2511,0636,438,600,698659980,10019,0 +2512,kek,535,516,848967710,7378,0 +2513,.achim.,536,447,6936607,10311,0 +2514,CALL+947,546,558,699784536,10311,0 +2515,Andrzejuuu,437,460,698884287,10285,0 +2516,021,432,490,699510259,10001,0 +2517,%7C064%7C000,568,531,699664910,6480,0 +2518,Knowhere,410,501,699723284,10452,0 +2519,001,554,402,699761749,10495,0 +2520,%5B114%5D,551,503,8000875,9886,0 +2521,027+%7C,555,545,8000875,10476,1 +2522,002,560,396,699761749,10495,0 +2523,%2AINTERTWINED%2A%2A,462,556,698704189,9735,0 +2524,%3F%2B44+85+Craywick,458,480,698361257,9728,0 +2525,Lord+Arsey+KING,516,506,848956513,10285,0 +2526,0032,564,391,699485250,10705,0 +2527,%5B132%5D,553,536,8000875,9808,0 +2528,%5B117%5D+North17,572,472,848985692,10052,0 +2529,010,588,449,699722599,10495,0 +2530,A01,548,453,699368887,9313,2 +2531,B067,474,475,699299123,10495,0 +2532,NOT%3F,434,527,9236866,10042,0 +2533,K44+004,418,477,698290577,10094,0 +2534,A%23039%23,419,474,698807570,11727,0 +2535,%5B073%5D,557,566,8000875,9960,0 +2536,K44+005,420,478,698290577,4703,0 +2537,132+Acapulco,478,480,1497168,9761,0 +2538,Joms+021,528,417,699756210,10273,5 +2539,0063+kamie%C5%84,446,428,3909522,9847,0 +2540,031.+Andromeda,490,584,699703642,10083,0 +2541,Szlachcic,580,491,699759128,10237,0 +2542,103.,504,481,8788366,10122,0 +2544,KONFA+TO+MARKA%2C+NARKA,449,471,698152377,10364,0 +2545,Gattacka,588,498,699298370,9835,0 +2546,0022+MzM,568,498,698416970,9258,0 +2547,Wioska+Wiecznie+pok%C5%82ucony,582,504,848954163,1005,0 +2548,C032,527,450,699299123,8192,0 +2549,...Just+like+that,452,488,699723284,10452,0 +2550,KONFA+TO+MARKA%2C+NARKA,426,461,698152377,10292,0 +2551,017+%7C,560,560,8000875,10140,0 +2552,budzik,441,533,699856962,5867,0 +2553,065+Holandia,573,453,7092442,10495,0 +2554,025,528,434,699788305,10147,0 +2555,045.,499,492,8788366,10252,0 +2556,Gratuluje+m%C3%B3zgu,441,536,698971484,8537,0 +2557,A05,552,451,699368887,9454,9 +2558,Suppi,445,526,699856962,9818,0 +2559,6.+N%C4%99dza,550,435,8444356,10471,0 +2560,Gratuluje+m%C3%B3zgu,444,539,698971484,8912,0 +2561,Yogi,514,542,2808172,8736,0 +2562,Szlachcic,582,497,699759128,10237,0 +2563,%7E%7ELataj%C4%85cyHolender%7E%7E,581,499,9174887,10139,0 +2564,Pf+Konfederacja+8,490,491,848915730,9938,0 +2565,Wioska+Barbarzy%C5%84ska,542,482,698867483,10019,0 +2566,Winter+is+coming,440,555,699856962,7018,0 +2567,7.62+mm,509,440,699777234,10019,0 +2568,CALL+952,551,553,699784536,10311,0 +2569,073,417,507,699851427,10042,0 +2570,BBB,527,456,849091084,9055,0 +2571,035,413,517,699851427,10042,0 +2572,.achim.,532,445,6936607,12154,0 +2573,%2AAteny_06,470,537,2585846,9638,0 +2574,C+004.,459,579,849028088,10713,0 +2575,NOT%3F,419,527,9236866,10042,0 +2576,B024,490,451,699299123,10495,0 +2577,%3F%2B44+86+La+Capelle+les+Boulogne,461,484,698361257,9669,0 +2578,010,552,492,849070464,8562,0 +2579,XXX002,570,456,699368887,8635,0 +2580,.achim.,528,449,6936607,10634,0 +2581,%C5%9Amieszkii,512,567,3454753,9210,0 +2582,0087,465,461,848913037,3764,0 +2583,ADEN,564,441,698588535,10180,0 +2584,%5B104%5D+North4,575,484,848985692,10049,0 +2585,10007,527,560,848915531,8251,0 +2586,Coruscant+2,503,603,699383121,9797,0 +2587,%7E015.,504,605,7139820,10495,0 +2588,0002+dla,506,505,698599365,10019,8 +2589,Yellow+Candy,402,458,698807570,10703,0 +2590,008+Fiona,447,506,698290577,7870,0 +2591,Fajna+028,446,557,698971484,7054,3 +2592,Yogi,527,557,2808172,10019,0 +2593,NOT%21%21,469,599,9236866,10122,0 +2594,006,465,600,699364813,10495,0 +2595,%231%23,501,483,699098531,9491,0 +2596,CALL+968,546,568,699784536,10311,0 +2597,.achim.,518,410,6936607,10311,0 +2598,yogi,513,546,2808172,10252,0 +2599,Horyzont+zdarze%C5%84,533,603,7581876,9835,0 +2600,Cast+Away+008,448,484,698290577,10206,0 +2601,043+%7C,566,568,8000875,10143,0 +2602,130,565,407,849064752,10311,0 +2603,0Wioska+barbarzy%C5%84ska,479,532,699781762,9414,0 +2604,Szlachcic,486,468,699098531,10290,0 +2605,Osada,500,436,699098531,10306,0 +2606,Wioska+Gebels25,465,409,9291984,7958,0 +2607,Szlachcic+035,562,526,758104,8024,0 +2608,Szlachcic,578,485,699759128,10237,0 +2609,PRO8L3M,414,498,7491093,9992,0 +2610,Lord+Arsey+KING,518,469,848956513,6953,0 +2611,R%C4%99cznik+do+zmiany,417,491,699697558,11489,0 +2612,Osada,491,454,699098531,10113,0 +2613,NOT%3F,467,548,9236866,8444,0 +2614,052.+ALFI,486,564,8539216,1866,0 +2615,Jaaa,605,436,698635863,10495,0 +2616,0176,473,544,698659980,10160,0 +2617,052+Waimea,453,458,1497168,9761,5 +2618,Suppi,443,449,699856962,9556,0 +2619,Pf+Konfederacja,497,490,848915730,9938,0 +2620,SsSs,423,504,1536625,8565,0 +2621,Wioska+barbarzy%C5%84ska,422,504,698290577,4172,0 +2622,NWO,393,525,849030226,10966,0 +2623,.%3A012%3A.Chillout,515,429,848934935,4162,0 +2624,Piek%C5%82o+to+inni,516,426,848956765,10160,0 +2625,Os+Konfederacja+8,474,438,848915730,9836,0 +2626,Warzywniak+007,451,545,698290577,2318,0 +2627,CALL+963,544,546,699784536,10311,0 +2628,Szlachcic+021,555,525,758104,9295,0 +2629,ADEN,561,438,698588535,6531,0 +2630,0102+dzik,468,446,3909522,10181,0 +2631,Jaaa,574,547,698635863,10438,0 +2632,0106+bbbb+kojotqqqqqqqqqqqqqqqqq,470,439,3909522,9739,0 +2633,WioskaD,513,581,8369778,9730,0 +2634,.%3A033%3A.+Chillout,502,411,848934935,5516,0 +2635,K44+011,433,484,698290577,4005,0 +2636,A+nie+pami%C4%99tasz+jak%3F,502,517,699785935,9835,2 +2637,Odepta,438,557,699443920,6259,0 +2638,NOT%3F,435,523,9236866,10042,0 +2639,keepo,488,529,848967710,9850,0 +2640,Winter+is+coming,447,538,698971484,9659,0 +2641,54k%24+Grvvyq,528,535,699676005,10495,0 +2642,009741,464,442,3909522,8652,0 +2643,086,425,514,699851427,10129,0 +2644,Bucksbarzy%C5%84sKamiiiru,428,505,848955783,9644,0 +2645,0028,548,527,699432672,9244,0 +2646,077.,569,462,849094609,10364,0 +2647,%5B074%5D,558,546,8000875,10295,0 +2648,Wioska+Klemens+Zdobywca+69,549,432,848986287,10476,0 +2649,1.+Baza,547,437,8444356,10495,0 +2650,Traptosteron%21,494,504,699785935,9835,6 +2651,049,540,424,699761749,10495,0 +2652,01+%7C+Wiocha,539,437,849002091,11383,0 +2653,196,548,428,849064752,10311,0 +2654,026.+P%C5%82anetnik,510,578,699703642,9761,0 +2655,Minas+Anor+025,574,463,699379895,10495,0 +2656,Monetki,474,424,699098531,10311,0 +2657,K45+-+012,559,467,6510480,9796,0 +2658,7.62+mm,494,424,699777234,10019,0 +2659,Wioska+barbarzy%C5%84ska,538,493,848967710,10252,0 +2660,Osada,500,456,699098531,9618,0 +2661,022,548,477,849031818,6072,0 +2662,xxx,501,453,698239813,10495,0 +2663,048+%7C,550,548,8000875,10164,2 +2664,Szlachcic,500,457,699098531,10019,0 +2665,%230023+Velo,486,558,9272054,10000,0 +2666,B025,496,453,699299123,10495,0 +2667,Pf+Konfederacja,485,489,848915730,9938,0 +2668,098+Sierra+Vista,480,459,1497168,9761,0 +2669,A017,491,411,699299123,10490,0 +2670,Wioska,379,521,849084005,10178,0 +2671,Szlachcic+002,566,524,758104,9338,0 +2672,R%C4%99cznik+do+zmiany,417,493,699697558,11911,0 +2673,szla,564,529,6818593,9835,0 +2674,Szlachcic+040,560,519,758104,9338,0 +2675,%5B097%5D,550,497,8000875,9957,0 +2676,Napewno+to+nie+jest+off,515,440,848912265,4639,0 +2677,%2AAteny_43,468,532,2585846,9735,0 +2679,KIELBA+013,446,573,699342219,10478,0 +2680,Wioska+Barbarzy%C5%84ska,545,479,698867483,9855,0 +2681,Fajna+071,459,562,698704189,6095,0 +2682,Suppi,428,447,699856962,10237,0 +2683,Suppi,427,449,699856962,9828,0 +2684,039+%7C,564,540,8000875,10060,9 +2685,-1-+FOB+UP,508,476,699098531,9835,0 +2686,CALL+1042,549,545,699784536,10070,0 +2687,099.,506,480,8788366,10252,0 +2688,F017,496,534,699189792,9195,0 +2689,Zasiedmiog%C3%B3rogr%C3%B3d,518,447,699433558,10083,0 +2690,xxx,509,449,698239813,10636,0 +2691,Szlachcic,582,499,699759128,10237,0 +2692,.%3A079%3A.+Takmahal,524,439,848934935,7685,0 +2693,zapodlina,569,416,849027712,6370,0 +2694,%230093+Leniuszki,483,550,9272054,10019,0 +2695,Wioska+419,565,518,477415,10636,0 +2696,-+305+-,529,583,849018239,10000,2 +2697,30004,486,543,848915531,10004,0 +2698,F014,488,537,699189792,9761,0 +2699,5.+Bieda,548,435,8444356,10495,0 +2700,%7E061.,480,548,7139820,10495,0 +2701,%230085+Kolonia+Piszczac,476,554,9272054,10019,0 +2702,Wioska+barbarzy%C5%84ska,556,473,699368887,7320,0 +2703,CHW%23031r,481,540,698704189,9711,0 +2704,%7E%7ELataj%C4%85cyHolender%7E%7E,579,502,9174887,9615,0 +2705,%230004+Warszawka,498,553,9272054,10495,0 +2706,Brat447,446,489,699262350,10481,0 +2707,%230020+Ka%C5%9Bka+Koniecko,494,563,9272054,10000,0 +2708,Pf+Konfederacja,490,485,848915730,9938,0 +2709,%230071+Mateusz+P,490,546,9272054,10019,0 +2710,070.+ALFI,475,563,8539216,821,0 +2711,Os+Konfederacja+%2B,480,446,848915730,9812,0 +2712,%2AAteny_42,469,533,2585846,9638,0 +2713,Mzm29,555,528,7142659,10362,0 +2714,%230115+Doniczka,479,551,9272054,9132,0 +2715,XXXX,500,381,849054951,10178,0 +2716,019.+A-RE-SE-EY,572,527,848967710,10252,0 +2717,001+Reaction,563,474,849031818,10377,0 +2718,%5B082%5D,541,503,8000875,9853,0 +2719,008+Hubal,562,477,849031818,7703,0 +2720,%23065,472,586,699605333,8660,5 +2721,002,568,480,849070464,8290,0 +2722,Osada,499,446,699098531,10297,0 +2723,035.+A-RE-SE-EY,571,513,848967710,10252,0 +2724,%5B120%5D,551,507,8000875,9820,0 +2725,076+Lubbock,456,455,1497168,9761,0 +2726,B051,476,467,699299123,9257,0 +2727,Wioska,385,534,849084005,10178,0 +2728,0001,559,392,699485250,10211,0 +2729,030+Chippewa+Falls,446,460,1497168,9761,0 +2730,%5B136%5D,561,536,8000875,10054,0 +2731,KONFA+TO+MARKA%2C+NARKA,397,465,698152377,12154,0 +2732,128.,491,487,8788366,10495,0 +2733,CALL+985,545,570,699784536,10495,0 +2734,A012,495,417,699299123,10495,0 +2735,R%C4%99cznik+do+zmiany,416,483,699697558,12154,0 +2736,KARTAGINA+.10,459,576,8438707,8157,0 +2737,xxx,510,427,698239813,11130,4 +2738,038+Lexinton,448,465,1497168,9761,0 +2739,Piek%C5%82o+to+inni,517,486,848956765,9908,0 +2740,Szlachcic,510,471,699098531,9824,0 +2741,KONFA+TO+MARKA%2C+NARKA,441,468,698152377,10941,0 +2742,Pu%C5%82apka+na+motyle,516,507,699785935,12154,0 +2743,Jaaa,578,533,698635863,7770,0 +2744,Piek%C5%82o+to+inni,522,464,848956765,10362,0 +2745,S%C5%82oneczna+W%C5%82%C3%B3cznia,540,465,8155296,4659,0 +2746,002,482,507,849092723,8447,0 +2747,008.+Marzyciel+Shrek,456,500,698290577,9959,0 +2748,Joms+013,527,419,699756210,10122,0 +2749,Szlachcic,559,497,698867446,9721,0 +2750,Pf+Konfederacja,493,500,848915730,9549,0 +2751,003,606,496,699573053,10495,0 +2752,083+Denver,479,468,1497168,9761,0 +2753,Mzm40,565,524,7142659,10362,0 +2754,B029,479,455,699299123,10495,0 +2755,07%2A,568,532,699664910,9531,0 +2756,00977,461,434,3909522,5903,0 +2757,Taran,544,388,699170684,9825,0 +2758,0063+Madrid,449,427,3909522,10262,0 +2759,.%3A074%3A.+Takmahal,526,444,848934935,8555,0 +2760,0063+12qqqqqqqqqqqqqqqqqqqq,448,429,3909522,10160,0 +2761,Osada+koczownik%C3%B3w,432,507,698971484,10008,3 +2762,0057,445,424,3909522,10072,0 +2763,075,569,396,849063849,9576,0 +2764,054,572,404,849064752,10311,0 +2765,049.,546,465,849094609,9835,0 +2766,0063+b11,455,430,3909522,9361,0 +2768,-+221+-,549,575,849018239,10000,0 +2769,078.,571,462,849094609,9946,0 +2770,013+%7C,561,562,8000875,10495,0 +2771,0036,461,468,848913037,9993,0 +2772,Szlachcic,578,486,699759128,10237,0 +2773,Dioda+v3,543,524,8000875,10256,0 +2774,009,566,483,849070464,8493,0 +2775,Lord+Arsey+KING,541,528,848956513,10285,0 +2776,%5B116%5D+North16,574,471,848985692,9980,0 +2777,%21+Wioska+436,548,528,477415,8520,0 +2778,Front_13,457,524,2585846,9638,0 +2779,ChceszPokojuSzykujSi%C4%99DoWojny,460,517,699333701,3568,0 +2780,0164,463,549,698659980,9336,0 +2781,SsSs,460,504,1536625,8501,0 +2782,Piek%C5%82o+to+inni,518,428,848956765,10160,0 +2783,Brat447,462,505,699262350,11302,0 +2784,Brat447,461,506,699262350,8649,0 +2785,CALL+957,550,549,699784536,10311,0 +2786,NIERAJ10,444,610,699859013,4089,0 +2787,P+Konfederacja+%2B,471,439,848915730,9687,0 +2788,Osada,501,454,699098531,9637,0 +2789,P+Konfederacja,462,444,848915730,9305,0 +2790,079+Orzech+arachidowy,551,471,7092442,10495,1 +2791,0327,446,609,698659980,9797,0 +2792,R%C4%99cznik+do+zmiany,420,491,699697558,10654,0 +2793,Wioska+barbarzy%C5%84ska,539,474,8155296,4188,0 +2794,Wioska+barbarzy%C5%84ska,497,417,699658023,9650,0 +2795,K44+025,425,496,698290577,9166,0 +2796,PRO8L3M,426,497,7491093,9899,0 +2797,ob%C3%B3z+Pracy,422,505,698290577,7348,0 +2798,Ateny_72,472,522,2585846,3079,0 +2799,SsSs,421,493,1536625,10149,0 +2800,018,432,492,699510259,9761,0 +2801,NOT%3F,434,537,9236866,3558,0 +2802,Wioska+barbarzy%C5%84ska,567,483,699347951,9302,0 +2803,013+Esiok+f,535,464,8155296,10179,0 +2804,0063+b5+mehehehe,450,434,3909522,10149,0 +2805,0063+13,452,428,3909522,9975,0 +2806,C005,523,457,699299123,10971,0 +2807,%5B058%5D+Kappa,526,504,848985692,10237,0 +2808,Wioska+415,570,506,477415,10495,0 +2809,Os+Konfederacja+%2B,469,452,848915730,9668,0 +2810,-%5B006%5D-+Czo+Oju,553,483,849092827,7088,0 +2811,Monetki,483,425,699098531,10291,7 +2812,195+Santiago+de+Surco,467,458,1497168,10068,0 +2813,Wioska_09,556,447,8674163,5490,0 +2814,CALL+949,547,556,699784536,10311,0 +2815,IQ154,554,452,699368887,6940,0 +2816,ChceszPokojuSzykujSi%C4%99DoWojny,462,517,699333701,3197,0 +2817,013,541,401,849064752,10311,0 +2818,.achim.,539,411,6936607,10801,0 +2819,-+319+-,525,582,849018239,10000,0 +2820,KONFA+TO+MARKA%2C+NARKA,389,470,698152377,10311,0 +2821,%C5%9Amieszkii,515,564,3454753,9156,0 +2822,KONFA+TO+MARKA%2C+NARKA,419,460,698152377,10292,0 +2823,KONFA+TO+MARKA%2C+NARKA,423,464,698152377,10311,0 +2824,Szlachcic,580,483,699759128,10237,0 +2825,F026,496,543,699189792,9745,0 +2826,003,461,577,848886870,10495,0 +2827,keepo,474,510,848967710,10495,0 +2828,0170,470,550,698659980,10091,0 +2829,B006,555,501,8138506,10160,0 +2830,003+-+Who+next%3F,426,573,225023,10495,0 +2831,Mesaria,437,455,698884287,10285,0 +2832,Merhet,521,585,698215322,10220,0 +2834,F084,484,523,699189792,9902,0 +2835,044.+A-RE-SE-EY,567,511,848967710,10252,0 +2836,%2B44+61+Ferques,412,464,698361257,9840,0 +2837,26.,565,482,698702991,10104,0 +2838,003,566,480,849031818,7361,0 +2839,Szlachcic+043,565,526,758104,9338,0 +2840,Szlachcic,556,474,698867446,10160,0 +2841,%5B137%5D,566,538,8000875,9750,0 +2842,10021,534,559,848915531,5765,0 +2843,Osada,498,449,699098531,9629,0 +2844,F011,500,529,699189792,9744,0 +2845,KONFA+TO+MARKA%2C+NARKA,399,472,698152377,12154,0 +2846,Mniejsze+z%C5%82o+0059,417,504,699794765,6076,0 +2847,Szlachcic,495,465,699098531,9166,0 +2848,10012,533,561,848915531,8163,0 +2849,A%C5%81A+NIE+BIJ+BOLI,493,469,699098531,9835,0 +2850,Szlachcic,492,475,699098531,9764,0 +2851,029+-+Katowice,406,579,225023,10495,0 +2852,%3F%2B44+85+Wirwignes,459,482,698361257,9175,0 +2853,228+Queenstown,535,442,1497168,9063,0 +2855,003+Osada+koczownik%C3%B3w,573,549,699316421,9744,5 +2857,Osada,496,447,699098531,9629,1 +2858,Szlachcic,509,480,699098531,9701,0 +2859,220+Townsville,536,441,1497168,9398,0 +2860,Winter+is+coming,503,585,699364813,9976,0 +2861,%C5%9Amieszkii,514,559,3454753,9115,0 +2862,025.+Oborot,505,579,699703642,9761,0 +2863,Wioska+506,575,456,477415,10495,0 +2864,Minas+Ithil,506,515,849091897,9386,0 +2865,%28023%29,422,544,699846892,10152,0 +2866,-+Alternatywa,507,514,699785935,10160,0 +2867,%2B44+73+Sorrus,435,479,698361257,9661,0 +2868,BBB,563,437,1006847,5982,0 +2869,%230097+Dobry%C5%84+Du%C5%BCy,473,555,699856962,9087,0 +2870,Ogr%C3%B3d+Warzywny,451,560,7249451,10495,0 +2871,088+Cincinnati,476,457,1497168,10247,9 +2872,008,415,502,699510259,9750,0 +2873,.%3A064%3A.+Chillout,510,422,848934935,5466,0 +2874,104,412,510,699851427,10129,0 +2875,065,423,508,699851427,10042,0 +2876,011,464,533,2585846,4164,0 +2877,Bucksbarzy%C5%84sKamiiiru,425,503,848955783,10756,0 +2878,Szlachcic,498,465,699098531,8073,0 +2879,%5B103%5D,552,503,8000875,9907,0 +2880,082,415,514,699851427,10042,0 +2881,Suppi,442,525,699856962,9636,0 +2882,NOT%3F,424,528,9236866,10042,0 +2883,Monetki+%3F%3F%3F,485,416,699098531,10295,0 +2884,Piek%C5%82o+to+inni,523,468,848956765,9761,0 +2885,044,553,398,849064752,10311,0 +2886,-+307+-,524,583,849018239,10000,0 +2887,South+K45,569,409,699146580,9297,0 +2888,KONFA+TO+MARKA%2C+NARKA,451,465,698152377,10311,0 +2889,B015,567,404,699761749,10495,0 +2890,wioska+ofensywna,549,430,848986287,9771,0 +2891,011,560,407,699761749,10495,0 +2892,Szlachcic,492,460,699098531,10311,0 +2893,002+King,531,466,848967710,5439,0 +2894,%2B44+61+Landrethun+le+Nord,416,466,698361257,9843,0 +2895,Marienburg+5,527,476,699355601,3592,0 +2896,Monetki,473,417,699098531,10292,0 +2897,SPARTA_67,480,582,2585846,9638,0 +2898,Szlachcic,559,476,698867446,9332,0 +2899,027.+ALFI,484,572,8369778,1846,0 +2900,%5B119%5D,563,538,8000875,9941,0 +2901,%230001,546,612,1536231,10495,0 +2902,0011,508,502,699432672,10495,0 +2903,%230017+Bober,489,561,9272054,10000,8 +2904,0083,551,608,698659980,10160,0 +2905,Wioska+Barbarzy%C5%84ska,546,483,698867483,9094,0 +2906,Bagdad,475,384,8847546,10654,0 +2907,Mzm24,551,520,7142659,10362,0 +2908,Konfederacja,468,384,848915730,10160,0 +2909,CALL+1033,550,555,699784536,10495,0 +2910,Yogi,533,567,2808172,10019,0 +2911,CALL+946,551,552,699784536,10311,0 +2912,P+Konfederacja,463,449,848915730,9222,0 +2913,-%3D+010+%3D-,443,519,698971484,10008,0 +2914,Fajna+078,459,557,3613413,4518,0 +2915,Suppi,442,522,699856962,9556,0 +2916,...Just+like+that,453,488,699723284,10452,0 +2917,D01,544,456,699355601,10301,0 +2918,Strasznie+Mi%C5%82y+S%C4%85siad%21,547,447,556154,9735,0 +2919,KONFA+TO+MARKA%2C+NARKA,444,457,698152377,10303,0 +2920,046+Boise,467,468,1497168,9761,0 +2921,Lord+Arsey+KING,519,493,848956513,10285,0 +2922,200+Paramaribo,470,459,1497168,9902,0 +2923,KONFA+TO+MARKA%2C+NARKA,431,480,698152377,10311,0 +2924,Os+Konfederacja+8,477,454,848915730,10203,0 +2925,10+%7C+002,537,434,849002091,5822,0 +2926,B041,476,456,699299123,9012,0 +2927,COUSINS,487,587,7976264,9255,0 +2928,014.+Wioska+mruva,578,516,8788366,10252,0 +2929,012,559,493,849070464,7981,0 +2930,Gattacka,579,513,699298370,10506,0 +2931,Jaaa,571,538,698635863,10490,0 +2932,BEEF,498,515,699785935,10495,0 +2933,Ogr%C3%B3d+Warzywny,457,563,7249451,319,0 +2934,Wioska+20.,495,523,848967710,10078,0 +2935,007+Fiona,445,506,698290577,7946,0 +2936,K55,539,529,698867483,10019,0 +2937,NOT%3F,412,513,9236866,10042,0 +2938,CALL+1086,536,537,699784536,10495,0 +2939,063+Grecja,572,462,7092442,10495,0 +2940,Wioska+barbarzy%C5%84ska,438,444,698884287,10285,0 +2941,Szlachcic,568,471,698867446,9845,0 +2942,Anioly3,438,537,699856962,7237,0 +2943,Abad+On,569,475,699347951,9863,0 +2944,Wioska+barbarzy%C5%84ska,435,440,9291984,10478,0 +2945,Szlachcic,568,479,699759128,10237,0 +2946,100.,503,482,8788366,6937,0 +2947,%5B143%5D+North,578,467,848985692,10311,0 +2948,Lord+Arsey+KING,518,501,848956513,10285,0 +2949,Suppi,435,444,699856962,9659,0 +2950,Lord+Arsey+KING,517,503,848956513,8480,0 +2951,.achim.,538,421,6936607,10375,0 +2952,SsSs,423,503,1536625,9698,0 +2953,Suppi,441,515,699856962,9553,0 +2954,037.+ALFI,469,557,8539216,1294,0 +2955,BETI+006,463,567,8539216,1655,0 +2956,0169,470,553,698659980,9155,0 +2957,Szlachcic,559,494,698867446,10117,0 +2958,Winter+is+coming,438,529,699856962,8012,0 +2959,019+Ewolucja,554,502,849031818,7165,0 +2960,...Just+like+that,452,506,699723284,10452,0 +2961,Montgomery,466,494,698290577,9960,4 +2962,007,553,496,849070464,8836,0 +2963,Piek%C5%82o+to+inni,522,426,848956765,10160,0 +2964,NEW+ABADON,563,499,699347951,9172,0 +2965,Piek%C5%82o+to+inni,523,423,848956765,10160,0 +2966,Anioly1,439,537,699856962,9670,0 +2967,Mzm31,547,539,7142659,10426,0 +2968,Gratuluje+m%C3%B3zgu,440,533,699856962,9924,0 +2969,Gratuluje+m%C3%B3zgu,442,539,698971484,7310,0 +2970,Piek%C5%82o+to+inni,521,417,848956765,10160,0 +2971,%2AINTERTWINED%2A,476,564,698704189,9711,0 +2972,.%3A062%3A.+Chillout,518,425,848934935,9274,0 +2973,004,563,491,699099811,10654,0 +2974,116+Mcbride,479,496,1497168,9761,0 +2976,006,481,586,7976264,10290,0 +2977,......,553,446,699368887,7846,0 +2978,scar,478,593,699364813,10365,0 +2979,107+Kasztan+Kasztanem+Pogania,544,459,7092442,5527,0 +2980,.%3A127%3A.+Niangmen,512,417,848934935,9976,0 +2981,7.62+mm,509,426,699777234,9112,0 +2982,Cast+Away+015,448,483,698290577,5597,0 +2983,045,566,403,849064752,10311,0 +2984,0Wioska+barbarzy%C5%84ska,473,505,699781762,10083,0 +2985,%5B130%5D+North,580,472,848985692,10060,0 +2986,Wioska+Barbarzy%C5%84ska,543,481,698867483,10019,0 +2987,097,568,399,849064752,10178,0 +2988,Piek%C5%82o+to+inni,525,425,848956765,10160,0 +2989,A04,555,449,699368887,9482,0 +2990,KONFA+TO+MARKA%2C+NARKA,425,466,698152377,10303,0 +2991,South+K45,574,410,699146580,8736,0 +2992,warzywa,496,588,699364813,10394,0 +2993,%3F%2B44+76+Charly,460,475,698361257,9554,7 +2994,Pf+Konfederacja,490,504,848915730,9682,0 +2995,Konfiasze,473,492,698908912,10787,0 +2996,%5B086%5D,529,528,848985692,10107,0 +2997,084+Pistacja,543,465,7092442,9747,0 +2998,JaamMwG+031,530,524,848987051,12154,0 +2999,Mzm21,560,517,7142659,10503,0 +3001,Monetki,469,417,699098531,10295,0 +3003,0032+K55+and987+OZDR.,503,564,3613413,9792,0 +3004,073+Amarillo,454,450,1497168,9771,0 +3006,20006,505,545,848915531,10838,0 +3007,071+Dallas,453,449,1497168,9761,0 +3008,%230033+%C5%9Awinouj%C5%9Bcie,486,563,9272054,10000,0 +3009,004.+ALFI,483,572,8369778,1577,0 +3010,Szlachcic+010,557,523,758104,8024,0 +3011,006+Fiona,444,506,698290577,7403,0 +3012,Mzm05,556,525,7142659,10636,0 +3013,Monetki,475,427,699098531,10291,0 +3014,Osada,500,451,699098531,9617,0 +3015,7.62+mm,472,434,699777234,10019,0 +3016,.%3A141%3A.+Niangmen,507,401,848934935,9902,0 +3017,.achim.,515,400,6936607,10311,0 +3018,Szlachcic,502,462,699098531,8495,0 +3019,Brat447,445,495,699262350,10495,0 +3020,Wioska+barbarzy%C5%84ska,533,436,699788305,9250,0 +3021,Brat447,447,490,699262350,10495,0 +3023,%23Kingler,573,457,699795378,10252,0 +3025,%7E045.,481,553,7139820,10495,0 +3026,NOT,419,422,9236866,10042,0 +3027,...001...,553,445,699368887,9060,0 +3028,%7C010%7C,553,569,873575,10311,0 +3029,A09,550,452,699368887,9994,0 +3030,%3F%2B44+86,463,486,698361257,9733,0 +3031,Wioska+barbarzy%C5%84ska,526,606,606407,10300,0 +3032,Tank+001,396,515,698290577,10343,0 +3033,C018,526,460,699299123,9813,0 +3034,LEGION_1,553,450,6101033,3482,0 +3035,FF009,468,518,699189792,5961,0 +3036,Strasznie+Mi%C5%82y+S%C4%85siad%21,548,442,556154,9735,0 +3037,%7E049.,492,565,7139820,10495,0 +3038,004,500,378,849010255,10019,0 +3039,slow,533,488,848967710,10252,0 +3041,024,531,574,699189792,9761,0 +3042,%5B180%5D,541,548,8000875,10524,8 +3043,Wioska,379,517,849084005,10178,0 +3044,007,507,482,698881022,6646,0 +3045,ccc,611,555,7047342,10476,0 +3046,lady+anima,493,582,699703642,10535,0 +3047,Wioska,380,526,849084005,10178,0 +3048,024+Buffalo,440,478,1497168,9761,0 +3049,Piek%C5%82o+to+inni,518,481,848956765,10160,0 +3050,P.018,540,562,873575,9915,0 +3051,.achim.,516,486,6936607,10311,0 +3052,4+ESIOK+f,538,462,8155296,9068,0 +3053,0063+4+Lechxxxxx,450,426,3909522,10316,0 +3054,0063+3,448,427,3909522,10083,0 +3055,%2AINTERTWINED%2A%2A,468,564,698704189,8727,0 +3056,P+Konfederacja,459,453,848915730,9319,0 +3057,0110,469,562,698659980,8866,0 +3058,CALL+1020,550,563,699784536,10311,0 +3059,Wioska+barbarzy%C5%84ska,431,446,698884287,10285,0 +3060,CALL+941,553,556,699784536,10311,0 +3061,K44+x014,441,417,698364331,10495,0 +3062,NOT%3F,425,519,9236866,9950,0 +3063,00533+W01,440,418,3909522,8006,0 +3064,Szlachcic,486,479,699098531,10300,2 +3065,070,547,413,699761749,10495,0 +3066,KONFA+TO+MARKA%2C+NARKA,446,470,698152377,10643,0 +3067,03+%7C+Osada+bolcownik%C3%B3w,543,432,849002091,8877,9 +3068,054,542,417,7271812,10495,0 +3069,Piek%C5%82o+to+inni,520,472,848956765,8221,9 +3070,Pf+Konfederacja,484,490,848915730,9912,0 +3071,Pf+Konfederacja+%2B,486,484,848915730,9938,0 +3072,.achim.,526,398,6936607,10311,0 +3073,P.019,539,555,873575,10028,0 +3074,%230018+Wizualizacja,490,550,9272054,10346,0 +3075,%2AINTERTWINED%2A,469,564,698704189,9656,0 +3076,amator+MO3,533,554,848915531,10971,0 +3077,-%5B023%5D-+Nanda+Devi,550,488,849092827,7445,0 +3078,CALL+1078,535,548,699784536,11130,0 +3079,0090,451,436,3909522,9924,0 +3080,%5B0101%5D,448,395,8630972,10495,0 +3081,.008,460,498,699781762,10495,0 +3082,K34+x002,447,385,698364331,10495,0 +3083,Wioska+420,554,511,477415,10495,0 +3084,Wioska+gotkamil,523,512,699385139,9909,0 +3085,219+Brisbane,532,439,1497168,9966,0 +3086,001,522,513,8191129,8095,0 +3087,A12,549,455,699368887,9994,0 +3088,Ateny_78,473,521,2585846,2629,0 +3089,09.+Ren+Grouver,563,480,698702991,10178,0 +3090,07+Zr%C3%B3b+mi+huragan,474,517,699781762,3251,0 +3091,-+034+-,532,574,849018239,10000,0 +3092,%2B44+62+Hesdin+l+Abbe,420,463,698361257,9852,0 +3093,-+261+-,529,581,849018239,10000,0 +3094,036,554,429,849063849,9711,0 +3095,Lord+Arsey+KING,501,471,848956513,10285,0 +3096,Front_21,456,529,2585846,9638,0 +3097,Szlachcic,498,478,699098531,9899,0 +3098,South+barba+1,457,460,699796330,10495,0 +3099,053,548,406,699761749,10495,0 +3100,013,556,398,699761749,10495,0 +3101,%2B44+84+Airon+Saint+Vaast,444,480,698361257,9652,0 +3102,NOT%3F,425,527,9236866,10042,0 +3103,P.020,540,556,873575,10026,0 +3104,NOT%3F,434,528,9236866,10042,0 +3105,Winter+is+coming,446,537,698971484,9136,0 +3106,Szlachcic,558,479,699759128,10237,0 +3107,Wioska+413,569,507,477415,10838,0 +3108,...Just+like+that,450,482,699723284,10452,6 +3109,002+KSG,560,473,849031818,9245,0 +3110,ASEINGARD+f,539,464,8155296,9384,0 +3111,Wioska+Barbarzy%C5%84ska.,555,476,698867483,10019,0 +3112,Maximize,507,520,699785935,10495,0 +3113,Lord+Arsey+KING,519,500,848956513,10285,0 +3114,PRO8L3M,412,499,7491093,9835,0 +3115,Wesz%C5%82o+%C5%82adnie,516,508,699785935,9835,0 +3116,-%5B014%5D-+Sziszapangma,551,491,849092827,8087,0 +3117,Lord+Arsey+KING,517,498,848956513,10285,0 +3118,Szlachcic,587,483,699759128,10237,0 +3119,070.,514,503,8788366,11321,0 +3120,%5B105%5D,559,542,8000875,9962,0 +3121,007+Hasta+la+vista+baby,465,505,1536625,9808,0 +3122,...Just+like+that,467,473,699723284,10117,0 +3123,ChceszPokojuSzykujSi%C4%99DoWojny,462,513,699333701,10252,0 +3124,F086,481,519,699189792,9771,0 +3125,05+Hafnarfjordur,472,511,699333701,5177,0 +3126,PRO8L3M,457,497,7491093,11321,0 +3127,Brat447,455,503,699262350,10728,0 +3128,Darma,425,403,356642,9835,0 +3129,002,424,399,699402816,10068,0 +3130,keepo,477,515,848967710,5015,0 +3131,%3F%2B44+85+Riillieux+la+Pape,455,489,698361257,9889,0 +3132,Fajna+086,456,567,8539216,860,0 +3133,%3F%2B44+85+Villeurbanne+Poudrette,457,484,698361257,9669,0 +3134,xxx,506,452,698239813,6511,0 +3135,KIELBA+035,451,573,699342219,10495,0 +3136,00971+ddd+pies,463,438,3909522,5505,0 +3137,7.+Brasil,453,567,699856962,7426,0 +3138,005,576,544,8138506,10019,1 +3139,A03,551,454,699368887,9482,0 +3140,SsSs,435,497,1536625,8542,0 +3141,A20,554,447,699368887,7512,0 +3142,Fajna+018,449,554,698971484,7755,0 +3143,Feed+me+more+007,492,373,699756210,10495,0 +3144,7+razy,544,446,6923061,3087,0 +3145,Yyyy,500,373,699883079,10132,0 +3146,%C5%9Amieszkii,510,552,3454753,9072,0 +3147,040,561,399,699761749,10495,0 +3148,Wioska+6,535,495,699385139,7576,0 +3149,.%3A083%3A.+Takmahal,524,451,848934935,10636,8 +3150,033,560,406,699761749,10495,0 +3151,Szlachcic,509,476,699098531,7603,0 +3152,7.62+mm,470,457,699777234,10019,0 +3153,KONFA+TO+MARKA%2C+NARKA,445,455,698152377,10447,0 +3155,Selonari.,460,563,698704189,9711,0 +3156,Psytrance,504,416,8649412,10171,0 +3157,BBB,554,436,1006847,6900,0 +3158,A051,503,419,699299123,10495,0 +3159,042+%7C,555,560,8000875,10178,0 +3160,F009,505,531,7581876,9586,0 +3161,F006,501,535,699189792,9756,0 +3162,0064,508,523,699432672,10495,0 +3163,Obnisk,434,562,699443920,4327,0 +3164,%5B084%5D,551,530,8000875,9976,0 +3165,018+%7C,550,534,8000875,10155,0 +3166,0078,463,547,698659980,10160,0 +3167,003+Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,465,542,698971484,10008,0 +3168,Osada,496,452,699098531,9637,0 +3169,Weso%C5%82ych+%C5%9Awi%C4%85t,558,452,699368887,11653,0 +3170,KONFA+TO+MARKA%2C+NARKA,426,463,698152377,10300,0 +3171,Ko%C5%84czy%C4%87+czas%3A%29,549,447,699368887,9955,0 +3172,063.,480,490,699851345,9935,0 +3173,Wioska+barbarzy%C5%84ska,564,446,699368887,9994,0 +3174,Wioska+barbarzy%C5%84ska,510,541,7581876,10083,1 +3175,A13,550,455,699368887,9994,0 +3176,Weso%C5%82ych+%C5%9Awi%C4%85t,564,452,699368887,7101,0 +3177,Szlachcic+%21%21%21,502,475,699098531,9685,0 +3178,%230090+Wycz%C3%B3%C5%82ki,474,552,9272054,10081,0 +3179,Monetki,479,416,699098531,10303,0 +3180,%2AINTERTWINED%2A,478,542,698704189,9711,0 +3181,KIELBA+062,462,581,699342219,10479,0 +3182,001,464,576,848886870,10495,0 +3183,Fajna007,467,569,8539216,1727,0 +3184,0092qqqqqqqqqqqqqqqqqqqqqqqqqqq,455,437,3909522,9503,0 +3185,2.+Bison%2A%2A,497,544,849087855,10157,0 +3186,Osada,499,442,699098531,10297,0 +3187,Dum+Spiro+Spero,493,554,848896948,9981,0 +3188,.%3A076%3A.+Takmahal,526,442,848934935,6812,0 +3189,055+%7C,547,502,8000875,10160,0 +3190,NOT%3F,426,520,9236866,10060,0 +3191,038.+A-RE-SE-EY,548,500,848967710,10316,0 +3192,Yeet,530,510,848908144,1170,0 +3193,030,469,523,2585846,7185,0 +3194,100,529,512,699351301,9918,0 +3195,Zadupie,493,568,699698253,10856,0 +3196,Cast+Away+016,447,479,698290577,3704,0 +3197,005.+ALFI,492,571,3613413,1797,0 +3198,%230014+Oscylator,498,560,9272054,10000,0 +3199,yogi,514,535,2808172,10019,0 +3200,167+Sao+Paulo,480,475,1497168,9761,0 +3201,Wioska+0005,407,514,1804724,10188,0 +3202,076.+%7CXD%7C,494,511,848967710,10252,0 +3203,Wioska,378,520,849084005,10178,0 +3204,Oponka,440,564,699443920,9761,0 +3205,Pobozowisko,420,592,699513260,10971,0 +3206,092+San+Bernardino,472,459,1497168,9761,0 +3207,Horyzont+zdarze%C5%84,520,549,7581876,9835,0 +3208,Horyzont+zdarze%C5%84,521,546,7581876,10019,0 +3209,0062+%7E21%7E,440,437,3909522,7252,0 +3210,-+113+-,544,578,849018239,9783,0 +3211,Osada,489,437,699098531,10053,0 +3212,-+061+-,543,579,849018239,10000,0 +3213,Oczko+w+g%C5%82owie,504,525,699785935,9835,0 +3214,035+Memphis,438,436,9291984,10479,0 +3215,Szlachcic,496,487,699098531,10311,0 +3216,034+Jacksonville,437,440,9291984,10495,0 +3217,EREGION+f,539,466,8155296,10324,2 +3218,003,560,482,849070464,8836,0 +3219,140+Zacatecas,473,489,1497168,9761,2 +3220,Szlachcic,563,475,698867446,9459,0 +3221,Wioska+523,557,468,477415,10495,0 +3222,Szlachcic+061,545,531,758104,9338,7 +3223,0071,565,487,698416970,10019,0 +3224,7.62+mm,494,439,699777234,10019,0 +3225,ChceszPokojuSzykujSi%C4%99DoWojny,468,508,699333701,11896,9 +3226,003,549,406,699761749,10495,0 +3227,xxx,495,440,698239813,10495,0 +3228,113+Prince+Rupert,477,487,1497168,9761,0 +3229,Osada,488,438,699098531,10306,0 +3230,Pf+Konfederacja+%2B,474,496,848915730,10068,0 +3231,Stage+group+B,440,539,698971484,6284,0 +3232,A%23054%23,415,474,698807570,10692,0 +3233,XnX-01,439,541,699170684,7994,0 +3234,120.,488,490,8788366,10252,0 +3235,K44+027,413,496,698290577,4447,0 +3236,Pf+Konfederacja,485,497,848915730,9938,0 +3237,Fajna+022,446,549,698290577,2091,0 +3238,CALL+1040,550,542,699784536,10178,0 +3239,Winter+is+coming,441,548,698971484,6089,0 +3240,CALL+945,546,557,699784536,10311,0 +3241,R%C4%99cznik+do+zmiany,393,440,699697558,10160,0 +3242,A024,487,416,699299123,10495,0 +3243,Kentin+ufam+Tobie,389,445,699783765,10000,0 +3244,%5B071%5D+Sayhello,548,501,848985692,10495,0 +3245,0097,459,438,3909522,10083,0 +3246,%2AINTERTWINED%2A,477,561,698704189,9711,0 +3247,3xxxxxxxxxxxx,462,429,9291984,10346,0 +3248,Fajna003,452,556,698971484,7408,0 +3249,Shot+Down,501,520,699785935,10495,0 +3250,KONFA+TO+MARKA%2C+NARKA,420,465,698152377,10303,0 +3251,%230005+G%C5%82%C4%99biej,501,559,9272054,10011,0 +3253,013W+Osada,562,511,8323711,10003,7 +3254,004+Asgard,603,566,699272880,9598,0 +3255,Wioska+barbarzy%C5%84ska,432,510,698971484,10008,0 +3256,003+Heviz,604,562,699272880,10161,0 +3257,7.62+mm,504,441,699777234,10019,0 +3258,.%3A131%3A.+Niangmen,516,418,848934935,9976,5 +3259,Suppi,441,529,699856962,10316,0 +3260,Nostra,458,571,699443920,9761,0 +3261,Suppi,442,527,699856962,9744,0 +3262,KIELBA+067,471,578,699342219,10495,0 +3263,Otim,433,557,699443920,3103,0 +3265,066.,498,486,8788366,10252,0 +3266,Jaaak%21+Kung+fu+panda+%28%3B,484,510,699785935,8403,6 +3267,Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,465,541,698971484,10008,0 +3268,Sparta_54,481,585,2585846,9638,0 +3269,081.+xDDDDDDDDDD,476,496,8788366,10252,6 +3270,002.+Taterka,427,549,699856962,4400,0 +3271,.achim.,515,411,6936607,10311,0 +3272,Wioska+4,426,551,8779575,3342,0 +3273,lady+anima,512,582,699703642,10471,0 +3274,Brat447,444,487,699262350,7717,0 +3275,022.+Wodnik,507,584,699703642,6517,0 +3276,To+nie+nasz+klimat,504,519,699785935,10495,0 +3277,C010,520,459,699299123,10172,0 +3278,-+054+-,541,572,849018239,10000,0 +3279,028+Texarkana,435,477,1497168,9761,5 +3280,CCC,527,455,849091084,9061,0 +3281,KONFA+TO+MARKA%2C+NARKA,428,458,698152377,10294,0 +3282,Napewno+to+nie+jest+off,495,413,848912265,10495,4 +3283,Joms+031,521,420,699756210,9835,0 +3284,Osada,501,437,699098531,10292,0 +3285,.achim.,526,411,6936607,10311,0 +3286,Szlachcic+%21%21%21,485,473,699098531,10295,0 +3287,.achim.,533,420,6936607,10311,0 +3288,023,548,531,8191129,9782,0 +3290,026,539,454,699250676,6291,0 +3291,B035,489,458,699299123,10495,0 +3292,Monetki,482,412,699098531,10355,0 +3293,.002.,500,376,698489071,10393,0 +3294,Feed+me+more+005,499,378,699756210,10325,0 +3295,Lord+Arsey+KING,522,502,848956513,9184,0 +3296,006,414,509,699851427,10042,8 +3297,004+%7C+Lord+Axen+-+rumbling%2C,556,559,8000875,9968,0 +3298,%230041+Zamczysko,495,556,9272054,10000,0 +3299,Dum+Spiro+Spero,494,557,848896948,10064,5 +3300,047+%7C,554,565,8000875,9976,0 +3301,016,529,434,699788305,9386,0 +3302,Minas+Anor+021,578,460,699379895,10495,0 +3303,K45+-+005,559,466,6510480,10186,0 +3304,%5B144%5D+North,576,465,848985692,10311,0 +3305,Malta%C5%84skie+Tango%21,495,508,699785935,9835,0 +3307,014+Fiona,447,507,698290577,9917,0 +3308,Joms+023,522,416,699756210,9733,7 +3310,.achim.,534,420,6936607,10311,0 +3311,Zero+Stresu,445,535,698971484,10008,0 +3312,F037,489,522,699189792,9718,0 +3313,szlachcic,442,540,698971484,3633,0 +3314,7.62+mm,489,423,699777234,10019,0 +3315,Winter+is+coming,440,544,698971484,1622,0 +3316,Mzm32,545,530,7142659,10362,0 +3317,%5B057%5D+Jota,532,505,848985692,10161,0 +3318,014+Espana,534,499,849031818,5410,0 +3319,B014,562,487,8138506,10019,0 +3320,Mniejsze+z%C5%82o+0065,416,504,699794765,7186,0 +3321,B015,560,492,8138506,10019,0 +3322,-+100+-,545,578,849018239,10000,0 +3323,...Just+like+that,467,476,699723284,6165,0 +3324,Os+Konfederacja+%2B,479,429,848915730,9960,4 +3325,%3F%2B44+76+Wierre+Effroy,466,478,698361257,9840,0 +3326,019+Spokane,438,474,1497168,9761,0 +3327,B006,486,447,699299123,10495,0 +3328,Gattacka,580,517,699298370,10560,1 +3329,%2B44+64+Villeurbanne+Gratte+Ciel,441,466,698361257,9695,0 +3330,12%2A,565,545,699664910,7075,0 +3331,ChceszPokojuSzykujSi%C4%99DoWojny,469,510,699333701,9630,0 +3332,ChceszPokojuSzykujSi%C4%99DoWojny,468,513,699333701,4509,0 +3333,-+071+-,543,578,849018239,10000,0 +3334,.achim.,533,451,6936607,10925,0 +3335,F009,496,546,699189792,9750,0 +3336,014.ZdM,389,560,699382126,10479,0 +3337,Amator,510,543,848915531,10971,0 +3338,.achim.,532,453,6936607,10068,0 +3339,015+DoNotCry.ZdM,392,562,699382126,8945,0 +3340,GRUBASKI,536,454,8155296,10093,0 +3341,Lord+Arsey+KING,582,522,848956513,10285,0 +3342,Gotham,545,443,848986287,9792,0 +3343,101.,502,484,8788366,8553,0 +3344,090+MEHEHE+2,491,588,6116940,10160,0 +3345,031,489,593,8369778,8190,0 +3346,BETI+007,460,570,8539216,2562,0 +3347,Piek%C5%82o+to+inni,521,483,848956765,8476,0 +3348,Fajna+040,461,566,8539216,1765,0 +3349,0030,463,468,848913037,9993,0 +3350,%7E%7ELataj%C4%85cyHolender%7E%7E,579,498,9174887,10636,0 +3351,SsSs,451,503,1536625,9914,0 +3352,yogi,516,547,2808172,10019,0 +3353,0063+L,452,430,3909522,5418,0 +3354,00633,443,430,3909522,6013,0 +3355,Sparta_45,481,574,2585846,9638,0 +3356,JK1,560,450,699368887,9761,0 +3357,131+Oaxaca,483,485,1497168,9761,0 +3358,184,562,444,849064752,10311,0 +3359,9.8+Sherwood,551,442,8444356,10471,0 +3360,Sparta_27,486,586,2585846,9638,0 +3361,A08,549,456,699368887,10058,0 +3362,Village,517,583,849094067,12154,0 +3363,JM5,563,459,699368887,8202,2 +3364,KONFA+TO+MARKA%2C+NARKA,450,455,698152377,10311,0 +3365,Szlachcic,494,460,699098531,9899,0 +3366,187,570,402,849064752,10311,0 +3367,P+Konfederacja,460,447,848915730,9030,0 +3368,0597,465,544,698659980,7918,0 +3369,0106,464,546,698971484,8196,0 +3370,%7E%7ELataj%C4%85cyHolender%7E%7E,554,522,9174887,10779,0 +3371,026,422,517,699851427,10129,0 +3372,Szlachcic+016,552,526,758104,8024,0 +3373,K44+019,433,494,698290577,7797,0 +3374,%7E%7ELataj%C4%85cyHolender%7E%7E,554,521,9174887,10160,0 +3375,%7E035.,489,565,7139820,10495,0 +3376,Wioska+Barbarzy%C5%84ska,543,493,698867483,10083,0 +3377,%2B44+61+Samer,418,465,698361257,9844,0 +3378,Wioska+Barbarzy%C5%84ska,546,484,698867483,8450,0 +3379,005,516,543,7581876,9835,0 +3380,0062+%7E2%7E,441,438,3909522,10083,0 +3381,Szlachcic,577,493,699759128,10237,0 +3382,Suppi,438,445,699856962,9708,0 +3383,xxx,503,441,698239813,10495,0 +3384,P.001,537,564,873575,10170,0 +3385,Osada,494,446,699098531,10358,0 +3386,P.009,535,562,873575,10157,0 +3387,Lord+Arsey+KING,543,520,848956513,6916,0 +3388,Wioska+barbarzy%C5%84ska,446,452,699660539,9830,0 +3389,CALL+1036,553,542,699784536,10311,0 +3390,Wioska+barbarzy%C5%84ska,448,446,9291984,10495,0 +3391,F035,491,535,699189792,9674,0 +3392,084,414,523,699851427,10129,0 +3393,x17,432,440,698884287,10285,8 +3394,072,417,514,699851427,10129,0 +3395,Wioska+barbarzy%C5%84ska,447,527,698971484,10008,0 +3396,Atena,461,557,698704189,8749,0 +3397,Piek%C5%82o+to+inni,521,477,848956765,9598,5 +3398,%2AINTERTWINED%2A,460,559,698704189,6817,0 +3399,NOT%3F,459,555,9236866,7884,0 +3400,Selonari,460,561,698704189,9325,0 +3401,Fajna+013,446,564,699868002,9727,0 +3402,043.+ALFI,462,564,8539216,1184,0 +3403,Fajna+026,445,554,699868002,7383,0 +3405,Wioska+barbarzy%C5%84ska,537,508,848967710,10252,0 +3406,jack+herrer,402,568,9167250,9357,0 +3407,Lord+Arsey+KING,543,530,848956513,10285,0 +3408,C+Zach+0011+Koz%C5%82%C3%B3w,407,576,849084740,10171,0 +3409,%7C063%7COoo,582,524,699664910,8548,0 +3410,055+Lanai+City,456,465,1497168,9761,0 +3411,Osada,495,451,699098531,9629,0 +3412,P+Konfederacja+8,459,457,848915730,8645,0 +3413,024,533,429,699788305,9352,0 +3414,017+M+Diler+to+marka,591,461,698829590,10495,0 +3415,x18,423,449,698884287,10285,0 +3416,Szlachcic,575,499,699759128,10237,0 +3417,-+066+-,537,570,849018239,10000,0 +3418,Winter+is+coming,502,581,699364813,9922,0 +3419,Tretogor,498,389,699433558,10495,0 +3420,%2B44+83+Lyon+La+Guillotiere,435,482,698361257,9802,0 +3421,A039,502,426,699299123,10365,0 +3422,A029,495,418,699299123,10495,0 +3423,033,551,532,699316421,9744,0 +3424,KIELBA+096,464,589,699342219,10495,0 +3425,Pf+Konfederacja+8,487,503,848915730,10030,0 +3426,KIELBA+039,456,589,699342219,10495,0 +3427,Wioska+barbarzy%C5%84ska,435,502,698971484,10008,0 +3428,%C5%9Amieszki,531,618,3454753,9095,0 +3429,Joms+033,535,417,699756210,10273,3 +3430,Kamyk,592,577,1715091,9835,0 +3431,K55,543,515,848967710,10252,0 +3432,064+Hiszpania,575,462,7092442,10495,0 +3433,PRO8L3M,454,499,7491093,9835,0 +3434,%21Wioska+500,576,459,477415,10495,0 +3435,ChceszPokojuSzykujSi%C4%99DoWojny,468,510,699333701,8042,0 +3436,HiA,431,552,8779575,2614,0 +3437,FF004,466,517,699189792,9835,0 +3438,Front_18,457,527,2585846,9261,0 +3439,Osada,490,439,699098531,10294,0 +3440,-+041+-,534,572,849018239,10000,0 +3441,B003,487,446,699299123,10111,0 +3442,Wioska+414,556,507,477415,10495,0 +3443,009991,470,433,3909522,10147,0 +3444,099+Douglas,479,464,1497168,9761,0 +3445,x10,563,477,8459255,10400,1 +3446,Monetki,475,429,699098531,9618,0 +3447,A01+Oslo,578,499,699272880,10355,0 +3448,%5B096%5D,562,540,8000875,9805,0 +3449,10+Albania,580,494,8925695,8914,0 +3450,011,553,487,849070464,10469,0 +3451,004+Chicago,427,417,9291984,10478,0 +3452,Thunderstruck,499,520,699785935,9835,0 +3453,%7E%7ELataj%C4%85cyHolender%7E%7E,576,498,9174887,10083,9 +3454,Suppi,428,423,699856962,9888,0 +3455,Oki-1,437,531,699265922,6808,0 +3456,0002+Fc+Gold+Paw,487,470,699098531,9835,0 +3457,0027+K54+and987+OZDR.,499,560,3613413,9861,7 +3458,173+Buenos+Aires,483,480,1497168,9835,0 +3459,040.,574,459,849094609,9461,0 +3460,yogi,485,548,2808172,10019,0 +3461,C+002.,450,567,849028088,10301,0 +3462,Aleartis,486,547,698704189,9711,0 +3463,%7E%7ELataj%C4%85cyHolender%7E%7E,563,497,9174887,10141,0 +3464,%7E%7ELataj%C4%85cyHolender%7E%7E,563,504,9174887,8555,0 +3465,077+Orzech+w%C5%82oski,551,475,7092442,10495,4 +3466,Szlachcic,568,493,699759128,10237,0 +3467,10005,531,564,848915531,10971,0 +3468,Dum+Spiro+Spero,490,553,848896948,9976,0 +3469,7.62+mm,489,422,699777234,10019,0 +3470,Valhalla,502,508,699861004,9835,5 +3471,Dum+Spiro+Spero,489,557,848896948,9995,0 +3472,022,573,547,699316421,9744,0 +3473,Brat447,445,491,699262350,10479,0 +3474,0647,477,547,698659980,10362,0 +3475,Piek%C5%82o+to+inni,521,436,848956765,10160,0 +3476,keepo,485,526,848967710,9598,0 +3477,...Just+like+that,454,490,699723284,5366,0 +3478,Szlachcic,491,463,699098531,10297,0 +3479,0084,537,533,699432672,9683,0 +3481,%5B148%5D+North,576,469,848985692,10294,0 +3482,Lord+Arsey+KING,543,527,848956513,10285,0 +3483,Suppi,436,518,699856962,9556,0 +3484,Wioska+barbarzy%C5%84ska,432,500,698971484,9989,0 +3485,0048,456,469,848913037,9596,0 +3486,Joms+026,526,421,699756210,10495,4 +3487,B014,481,444,699299123,10354,0 +3488,Wioska+barbarzy%C5%84ska,431,501,698290577,5961,0 +3489,%5B227%5D+WEST,605,451,848985692,10068,0 +3490,102+Toronto,475,483,1497168,9546,0 +3491,K44+028,415,491,698290577,10179,0 +3492,081+Jackson,468,473,1497168,9761,0 +3493,005+Jak+tam+ch%C5%82opie%2C+%C5%9Bpisz%3F,464,543,698971484,10008,0 +3494,P.028,535,567,873575,9929,0 +3495,05+Portugalia,581,487,8925695,8162,0 +3496,Fajna+037,455,570,8539216,1002,0 +3497,Szlachcic+%21%21%21,524,487,699098531,9727,0 +3498,4.Antykwariat,504,450,8649412,6710,0 +3499,0331,448,608,698659980,10495,0 +3500,Pf+Konfederacja,491,506,848915730,9924,0 +3501,013,527,431,699788305,10147,0 +3502,095.,502,481,8788366,10252,0 +3503,021,530,434,699788305,8969,0 +3504,037.+Aries,500,578,699703642,9513,0 +3505,K45+-+011,570,467,6510480,9790,0 +3506,%23020+A,463,614,33900,10083,0 +3507,xxx,511,447,698239813,10495,0 +3508,Monetki,478,414,699098531,10300,0 +3509,Szlachcic,487,464,699098531,10294,0 +3510,%230016+Kleszcz,491,563,9272054,10019,0 +3511,Os+Konfederacja+%2B,478,440,848915730,9822,0 +3512,NOT%3F,433,524,9236866,10042,0 +3513,205+Montego+Bay,466,462,1497168,9761,0 +3514,Garfii,434,457,698884287,10285,0 +3515,C045,534,458,699299123,3822,0 +3516,F022,500,532,699189792,9750,0 +3517,105.+DefinitelyRlyKoniecKonfy%3F%3F%3F,451,492,8788366,10252,0 +3518,%2AAteny_38,471,522,2585846,2240,0 +3519,14%2A,566,544,699664910,7370,0 +3520,029+%7C,564,562,8000875,10495,0 +3521,032.+A-RE-SE-EY,570,533,848967710,10252,0 +3522,Yogi,539,530,2808172,9885,0 +3524,Osada,499,448,699098531,10295,0 +3525,Wioska+pawela76,536,433,848986287,10495,0 +3526,2+c3risa,443,566,8779575,10237,0 +3527,Ogr%C3%B3d+Warzywny,448,559,7249451,8441,0 +3528,7.62+mm,487,429,699777234,10019,4 +3529,A058,500,424,699299123,10495,0 +3530,ladyanima,511,574,699703642,9151,0 +3531,0.St.+Louis,521,588,698215322,9970,0 +3532,%2AAteny_02,474,537,2585846,9638,0 +3533,NOT%3F,459,540,9236866,4689,0 +3534,Szlachcic,501,470,699098531,9422,0 +3535,%2A005%2A,608,508,698670524,8552,0 +3536,%23Raichu,565,464,699795378,10362,0 +3537,Os+Konfederacja,484,453,848915730,9915,0 +3538,Weso%C5%82ych+%C5%9Awi%C4%85t,581,481,699298370,9761,0 +3539,%21Wioska+504,575,457,477415,10495,0 +3540,Szlachcic+039,568,525,758104,8024,0 +3541,HibaST,427,552,8779575,3314,0 +3542,.achim.,529,454,6936607,6584,0 +3543,Village,518,584,849094067,12154,0 +3544,Fajna+069,453,564,8539216,4713,0 +3545,.achim.,529,395,6936607,10311,0 +3546,Wioska+12,527,495,699385139,5681,0 +3547,Wioska+leito2,562,506,466800,3854,0 +3548,Oster,443,556,699443920,9226,0 +3549,Lord+Arsey+KING,516,490,848956513,10285,9 +3550,016+Rammstein,562,463,849031818,7219,0 +3551,82k%24+Grvvyq,540,529,699676005,10495,0 +3552,Wioska+barbarzy%C5%84ska,598,568,8742874,9740,0 +3553,071.+ALFI,477,559,8539216,784,0 +3554,NOT%3F,430,544,9236866,6701,0 +3555,Os+Konfederacja,477,453,848915730,9853,0 +3556,keepo,476,513,848967710,4257,0 +3557,NOT%3F,419,534,9236866,8431,0 +3558,Fajna+027,446,556,698971484,4600,0 +3559,012+New+Bark+Town,590,501,699441366,11109,0 +3560,Ogr%C3%B3d+Warzywny,454,562,7249451,7549,0 +3561,086+Huntsville,480,455,1497168,9761,0 +3562,B013,559,486,8138506,10495,0 +3563,193+Guayaquil,464,463,1497168,9761,0 +3564,C+007+Wieliczka,418,574,849084740,7422,0 +3565,Amator,523,576,848915531,5078,0 +3566,kathare,542,544,873575,10503,0 +3567,024.+ALFI,477,568,8539216,1428,0 +3568,Wioska+Ania12345,471,582,699364813,9662,0 +3569,0123,463,548,698659980,10117,0 +3570,222+Hobart,531,446,1497168,9761,0 +3571,slow,535,481,848967710,10252,0 +3572,Summer+Slam+%7E+010,520,547,7581876,9835,0 +3573,Sarajewo,424,452,698884287,10285,0 +3574,-+032+-,537,578,849018239,10000,0 +3575,003,551,402,1424656,9746,0 +3576,Jaaa,568,539,698635863,10487,0 +3577,Kasyno,444,516,7249451,9902,0 +3579,Wioska+Barbarzy%C5%84ska,547,476,698867483,10019,0 +3580,%C5%9Amieszkii,513,564,3454753,9175,0 +3581,04%2Akit+pszczeli,572,545,699664910,7280,0 +3582,125.,511,483,8788366,11130,0 +3583,.achim.,540,422,6936607,8337,0 +3584,Wioska,545,520,712216,2203,0 +3585,Winter+is+coming,504,571,699364813,10311,0 +3586,0054+K55+and987+OZDR,506,562,3613413,10636,0 +3587,B020,488,451,699299123,10495,0 +3588,.%3A008%3A.+Magia,515,408,8649412,9761,0 +3589,005.+Marzyciel+Shrek,463,494,698290577,6357,0 +3590,002+Wioska+fan+zmijki,571,553,699316421,9744,0 +3591,R%C4%99cznik+do+zmiany,412,493,699697558,10845,0 +3592,RHUN,533,473,8155296,9805,0 +3593,.%3A032%3A.+Oliwa,512,412,8649412,9753,0 +3594,Suppi,436,447,699856962,9550,0 +3595,KIELBA+059,461,581,699342219,10247,0 +3596,BETI+008,457,566,8539216,1377,0 +3597,K55,540,511,848967710,9399,0 +3599,ladyanima,512,572,699703642,9064,0 +3600,Front_06,461,522,2585846,3818,0 +3601,Sparta_70,467,582,2585846,9638,0 +3602,082+Vancouver,453,453,1497168,9761,0 +3603,026.+A-RE-SE-EY,575,535,848967710,10252,0 +3604,I+Wioska+z+Czarodziejem,441,476,698349125,5662,0 +3605,Szlachcic,568,487,698867446,9965,0 +3606,3+KR%C3%93LESTWO,537,460,8155296,10590,0 +3607,%7E055.,490,573,7139820,10495,0 +3608,A028,492,410,699299123,10495,0 +3609,%28013%29,421,526,9236866,9101,0 +3610,118+Mississauga,476,487,1497168,9761,0 +3611,ADEN,559,440,698588535,10072,0 +3612,KIELBA+132,454,570,699342219,10223,0 +3613,Brat447,442,495,699262350,4951,0 +3614,145+Tuxla+Gutierezz,464,485,1497168,9761,7 +3615,K44+014,433,487,698290577,7674,0 +3616,150+Gwatemala,457,456,1497168,9761,0 +3617,ChceszPokojuSzykujSi%C4%99DoWojny,459,510,699333701,9563,0 +3618,KONFA+TO+MARKA%2C+NARKA,449,458,698152377,10311,0 +3619,%C5%9Amieszkii,518,560,3454753,9046,0 +3620,Wioska+barbarzy%C5%84ska,445,452,699660539,10103,0 +3621,Wioska+barbarzy%C5%84ska,465,433,9291984,10083,0 +3622,Front_16,458,528,2585846,9638,0 +3623,091+San+Diego,473,458,1497168,9835,0 +3624,A040,505,431,699299123,10495,0 +3625,Sparta_50,479,579,2585846,9638,0 +3626,Wioska+barbarzy%C5%84ska,540,501,848967710,10252,0 +3627,.achim.,527,415,6936607,10311,0 +3628,A057,503,422,699299123,10495,0 +3629,0063+b3,453,432,3909522,10075,0 +3630,NWO,388,516,849030226,10952,0 +3631,Szlachcic+%21%21%21,498,489,699098531,10311,0 +3632,Suppi,445,447,699856962,9596,0 +3634,Lord+Arsey+KING,526,489,848956513,10285,3 +3635,Szlachcic,503,468,699098531,9701,0 +3636,Pf+Konfederacja+%2B,486,491,848915730,9309,0 +3637,Bagdad,479,377,8847546,9835,0 +3638,Osada,498,454,699098531,9629,0 +3639,%5B050%5D+Alfa+%2A%2A%2A,542,486,848985692,10495,0 +3640,007,434,549,699856962,2892,3 +3641,A047,498,420,699299123,10042,0 +3642,Kasyno,445,509,7249451,9902,0 +3643,006+Wizna,567,489,849031818,8526,0 +3644,%C5%9Amieszkii,515,561,3454753,9017,0 +3645,Bucksbarzy%C5%84sKamiiiru,425,513,848955783,10344,0 +3646,P.017Z,523,565,873575,10150,0 +3647,Stage+group+B+2,462,557,698704189,9224,8 +3648,Puzzle,506,508,699785935,12154,0 +3649,COUSINS,491,580,699364813,10401,0 +3650,030.+Bieda,504,587,699703642,8930,0 +3651,089+Colorado+Springs,477,456,1497168,9761,0 +3652,CALL+1080,525,543,699784536,10559,0 +3653,018,542,453,699250676,10766,0 +3654,PRO8L3M,435,487,7491093,9835,0 +3655,Wioska+barbarzy%C5%84ska,509,439,699658023,8971,0 +3656,slow,533,479,848967710,10316,0 +3657,JaamMwG+005,527,523,848987051,10218,0 +3658,BBB,549,427,1006847,7371,0 +3659,TROJA.13,457,577,8438707,4224,0 +3660,NOT%3F,426,534,9236866,10042,0 +3661,KONFA+TO+MARKA%2C+NARKA,450,472,698152377,10297,9 +3662,033+Flagstaff,450,461,1497168,9761,0 +3663,037,428,488,699510259,9747,0 +3664,Zero+Stresu,446,535,698971484,10008,0 +3665,006+Fort+Worth,440,475,1497168,9761,0 +3666,%2AINTERTWINED%2A,475,564,698704189,9711,0 +3667,kto+ananasowy+pod+wod%C4%85+ma+dom,566,506,699628084,9797,0 +3668,Szlachcic,498,481,699098531,9888,0 +3669,%23017+S,472,606,33900,10252,0 +3670,023,464,525,2585846,3276,0 +3671,%28022%29,424,544,699846892,10160,0 +3672,018,572,549,699316421,9744,0 +3673,006,513,532,848915531,10365,0 +3674,Horyzont+zdarze%C5%84,526,543,7581876,9835,0 +3675,Arabska+noc,507,519,699785935,10068,0 +3676,046,447,534,698971484,9950,0 +3677,Gravity,422,458,698962117,9491,0 +3678,CALL+1014,520,609,699784536,10311,0 +3679,090.+ALFI,475,570,8539216,838,0 +3680,R%C4%99cznik+do+zmiany,412,490,699697558,10495,0 +3682,022,530,574,699189792,9966,0 +3683,Horyzont+zdarze%C5%84,524,541,7581876,10019,0 +3684,091,413,525,699851427,10129,0 +3685,%7E%7ELataj%C4%85cyHolender%7E%7E,560,501,9174887,10207,0 +3686,Lord+Arsey+KING,512,490,848956513,10285,0 +3687,Village,516,579,849094067,12154,5 +3688,057.+ALFI,474,560,8539216,1240,0 +3689,Wioska+barbarzy%C5%84ska,536,542,7581876,6952,0 +3690,.achim.,516,412,6936607,10311,0 +3691,020.+P%C3%B3lnica,494,585,699703642,9402,0 +3692,0126,463,553,698659980,5491,0 +3693,002+%7C,563,558,8000875,9962,8 +3694,Wioska+barbarzy%C5%84ska,533,499,848967710,10252,0 +3695,NWO,383,523,849030226,10957,0 +3696,Suppi,434,451,699856962,9554,0 +3697,ADEN,557,430,698588535,10072,0 +3698,%7C012%7C,555,571,873575,10439,0 +3699,013,418,517,699851427,10129,0 +3700,Osada,495,437,699098531,10294,0 +3701,...,477,532,699781762,10394,0 +3702,Pf+Konfederacja,493,494,848915730,9818,0 +3703,%230114+Krzywowierzba-Kolonia,489,569,9272054,9189,0 +3704,K44+018,434,493,698290577,8894,0 +3705,Brat447,459,506,699262350,5623,0 +3706,Bramborowa+dolina+004,536,487,698599365,10019,0 +3707,C039,536,457,699299123,10971,0 +3708,ADEN,563,440,698588535,9978,0 +3709,F087,488,534,699189792,10362,0 +3710,026+%7C,558,549,8000875,10495,0 +3711,7.62+mm,505,442,699777234,10019,0 +3712,A0303,376,502,8841266,10252,0 +3713,Wioska+409,559,524,477415,10495,0 +3714,.achim.,560,437,6936607,10311,2 +3715,Winter+is+coming,439,552,699856962,2360,0 +3716,021+%7C,564,560,8000875,10049,0 +3717,zx+deflektor+y,440,547,698971484,2018,0 +3718,PRO8L3M,453,493,7491093,10452,0 +3719,Suppi,441,527,699856962,9570,0 +3720,SsSs,464,499,1536625,9649,0 +3721,Piek%C5%82o+to+inni,517,422,848956765,10160,0 +3722,%3F%2B44+86+Bollezeele,463,487,698361257,9669,0 +3723,Szlachcic,492,481,699098531,10291,0 +3724,Z02+Saqqaq,562,514,699272880,10052,0 +3725,Monetki,479,415,699098531,10297,0 +3726,lady,498,577,699703642,10471,0 +3727,Wioska+barbarzy%C5%84ska,449,527,698971484,10008,0 +3728,021,421,512,699851427,10129,0 +3729,xxx,484,430,698239813,10495,0 +3730,PRO8L3M,463,497,7491093,10311,8 +3731,Fajna+069,455,565,8539216,6164,0 +3732,X+D02,547,459,3909522,10282,0 +3733,KONFA+TO+MARKA%2C+NARKA,435,463,698152377,10290,0 +3734,036+Reno,442,472,1497168,9761,0 +3735,060+%7C,548,510,8000875,9976,0 +3736,Tesa+11,531,476,698845189,6878,0 +3737,.%3A132%3A.+Niangmen,516,416,848934935,9976,0 +3738,003,490,525,849092723,9275,0 +3739,029,554,490,849031818,9995,0 +3740,Prywatny+bal,507,507,699785935,7387,0 +3741,Jaaa,573,566,698635863,10495,0 +3742,JF4,554,457,699368887,10971,0 +3743,Ithilien,571,518,849091897,9393,0 +3744,EEE+Abadon,565,477,699347951,9384,0 +3745,%C5%9Amieszkii,514,564,3454753,9256,0 +3746,PRO8L3M,467,499,7491093,9670,0 +3747,.%3A077%3A.+Takmahal,525,443,848934935,6071,0 +3748,SsSs,424,493,1536625,10144,8 +3749,Myk+i+do+kieszonki,378,512,9319058,9799,0 +3750,079,412,524,699851427,10086,0 +3751,Suppi,438,449,699856962,9562,7 +3752,7.62+mm,497,426,699777234,10019,0 +3753,Szlachcic,489,477,699098531,10290,0 +3754,Marienburg+3,528,483,699355601,9148,0 +3755,Jaaa,574,538,698635863,10476,0 +3756,Wioska+Mitze,522,431,2485646,3139,0 +3757,89k%24+Grvvyq,546,537,699676005,10108,0 +3758,008,414,515,699851427,10129,0 +3759,-%5B018%5D-+Distaghil+Sar,554,489,849092827,6791,0 +3760,Mzm28.,553,520,7142659,10362,0 +3761,119+Churchill,479,495,1497168,9761,0 +3762,-3-,589,484,699347951,10518,0 +3763,%2B44+63+Dardilly,434,466,698361257,9844,0 +3764,Joms+003,525,421,699756210,10140,0 +3765,%2B44+73+Lyon+La+Duchere,433,473,698361257,9843,0 +3766,Wioska+kiss-my-axe,440,549,698971484,2971,0 +3767,08+%7C+Tej+nie+atakuj,539,436,849002091,9613,0 +3768,Ta%C5%84cz%C4%85c+w+ciemno%C5%9Bciach,502,524,699785935,9899,0 +3769,134+Mexico+City,478,481,1497168,9761,0 +3770,Joms+009,518,420,699756210,10273,0 +3771,K44+023,428,497,698290577,9050,0 +3772,Wioska+barbarzy%C5%84ska,534,496,848967710,10252,0 +3773,Piek%C5%82o+to+inni,523,437,848956765,10160,0 +3774,0063+b15,454,432,3909522,10043,0 +3775,xxx,513,458,698239813,9922,0 +3776,%2B44+63+Caluire+et+Cuire,431,466,698361257,10002,0 +3777,%230086+Choty%C5%82%C3%B3w,475,554,9272054,10000,0 +3778,ADEN,563,442,698588535,10173,0 +3779,%2AINTERTWINED%2A,475,562,698704189,9079,0 +3780,%5B124%5D,564,535,8000875,9760,0 +3781,kathare,492,566,873575,10824,0 +3782,Gratuluje+m%C3%B3zgu,443,536,699364813,10495,0 +3783,009.+A-RE-SE-EY,579,526,848967710,10252,3 +3784,kathare,492,569,873575,10401,0 +3785,Knowhere,391,506,699723284,8007,0 +3786,PRO8L3M,422,495,7491093,2202,0 +3787,139,563,421,849064752,10311,0 +3788,CALL+997,544,539,699784536,9971,0 +3789,%2AAteny_16,470,525,2585846,3025,0 +3790,197+La+Paz,469,467,1497168,9390,0 +3791,011,494,582,8369778,7147,0 +3792,062.,497,488,8788366,10252,0 +3793,085+Nerkowiec,557,473,7092442,10252,0 +3794,Bucksbarzy%C5%84sKamiiiru,429,511,848955783,10971,0 +3795,115+Niagara+Falls,480,492,1497168,9761,0 +3796,%230050+Amarena,495,562,9272054,10235,0 +3797,%230010+Muflon,490,561,9272054,10019,0 +3798,Szlachcic+007,565,531,758104,8024,0 +3799,%5B064%5D+Omikron,540,493,848985692,9968,9 +3800,Kasyno,450,510,7249451,10838,0 +3801,-020-,456,421,9291984,10479,0 +3802,SsSs,464,507,1536625,4313,0 +3803,Cast+Away+010,452,483,698290577,8500,0 +3804,yogi,539,542,2808172,10019,0 +3805,Osada,503,455,699098531,8448,0 +3806,Szlachcic,584,490,699759128,10237,6 +3807,%7C025%7C,556,569,873575,10303,0 +3808,005+Fiona,446,505,698290577,7785,0 +3809,NOT%3F,434,522,9236866,10042,0 +3810,Szlachcic,467,420,698388578,10237,0 +3811,Szlachcic+%21%21%21,505,471,699098531,9058,0 +3812,Wioska+Barbarzy%C5%84ska,545,477,698867483,9081,0 +3813,A.017,606,549,9188016,7571,0 +3814,Fajna+044,458,556,3613413,6338,0 +3815,-021-,458,423,9291984,10479,0 +3816,JaamMwG+013,522,521,848987051,9489,0 +3817,20013,515,538,848915531,5931,0 +3818,Piek%C5%82o+to+inni,511,470,848956765,10019,0 +3819,155+Esquipulas,454,469,1497168,9966,0 +3820,Wioska+456,582,552,477415,10495,0 +3821,KIELBA+130,443,570,699342219,10361,0 +3822,Chatka+Hagrida,455,500,698290577,10237,0 +3823,ChceszPokojuSzykujSi%C4%99DoWojny,454,512,699333701,8457,0 +3824,Suppi,440,520,699856962,9554,0 +3825,005,461,578,848886870,10495,0 +3826,%C5%9Amieszkiii,496,566,3454753,9047,0 +3827,B066,473,471,699299123,10495,2 +3828,%230031,547,616,1536231,10495,0 +3829,%5B099%5D+KONIEC,538,488,848985692,8526,0 +3830,20024,502,549,848915531,8280,0 +3831,-046-,461,424,9291984,10371,0 +3832,.+Jameson,423,548,8779575,9245,0 +3833,Monetki,483,423,699098531,10170,0 +3834,.%3A019%3A.+Chilout,508,418,848934935,5049,0 +3835,097.+Wioska+Sarna,487,427,8788366,10252,0 +3836,Sparta_28,488,583,2585846,9638,0 +3837,Zasiedmiog%C3%B3rogr%C3%B3d,534,430,699433558,10132,0 +3838,7.62+mm,492,432,699777234,10019,0 +3839,Lord+Arsey+KING,581,587,848956513,10285,0 +3840,%5B113%5D+North13,575,472,848985692,10048,0 +3841,0009,619,525,6510480,10328,0 +3842,Yogi,524,574,2808172,10019,0 +3843,Ogr%C3%B3d+Warzywny,454,561,7249451,2969,0 +3844,Wioska+018,592,581,848971079,9761,0 +3845,%21Wioska+428,563,513,477415,10495,0 +3846,-022-,464,426,9291984,10479,0 +3847,032,583,471,699573053,10495,0 +3848,Szlachcic,484,476,699098531,10387,0 +3849,%5B191%5D,544,523,8000875,8663,0 +3850,Lord+Arsey+KING,517,525,848956513,10285,0 +3851,Warzywniak+004,447,544,698290577,3075,6 +3852,KONFA+TO+MARKA%2C+NARKA,451,461,698152377,10291,0 +3853,%21Wioska+429,564,518,477415,10495,0 +3854,012+Fiona,447,510,698290577,5486,0 +3855,.+Per%C5%82a,425,550,699856962,4238,0 +3856,Fajna+033,463,571,8539216,1847,0 +3857,Wioska+barbarzy%C5%84ska,519,505,848967710,8507,0 +3858,030,446,503,699510259,9761,0 +3859,KONFA+TO+MARKA%2C+NARKA,444,472,698152377,10643,0 +3860,015+Atlantic+City,444,470,1497168,9761,0 +3861,0100+pantera,465,446,3909522,10069,0 +3862,Oltar,440,559,699443920,3294,0 +3863,FAKE+OR+OFF,456,399,698231772,9842,0 +3864,Wioska+508,575,461,477415,10559,0 +3865,Gattacka,582,483,699298370,10019,0 +3866,042.+ALFI,467,572,8539216,1863,0 +3867,%5B180%5D,547,512,848985692,9645,0 +3868,039+-+pobite+gary,411,577,225023,10495,0 +3869,%5B144%5D,555,549,8000875,9554,0 +3871,Warzywniak+002,446,545,698290577,3857,0 +3872,0015,524,533,699432672,10495,0 +3873,016,420,511,699851427,10042,8 +3874,ADEN,564,442,698588535,10121,0 +3875,0594,476,545,698659980,9827,0 +3876,Konfederacja+8,460,382,848915730,10001,0 +3877,xxxx,497,429,698239813,10495,0 +3878,Baobab,385,491,699265922,9835,0 +3879,%3F%2B44+85+Lyon+Point+du+Jour,456,482,698361257,9860,0 +3880,9.4+Legancko,545,440,8444356,10136,0 +3881,Lord+Arsey+KING,517,500,848956513,10285,0 +3882,19.+Wioska+19,408,569,849091769,10019,0 +3883,Brat447,455,498,699262350,8401,0 +3884,STA%C5%81KA,451,533,699698253,4593,0 +3885,Fajna+089,456,565,8539216,1808,0 +3886,yogi,525,573,2808172,10019,0 +3887,KONFA+TO+MARKA%2C+NARKA,449,469,698152377,10306,0 +3888,Monetki,474,432,699098531,10295,0 +3889,C002,521,388,7758085,9963,0 +3890,KONFA+TO+MARKA%2C+NARKA,450,453,698152377,10311,0 +3891,045+%7C,561,548,8000875,10487,0 +3892,085+Saint+Louis,465,459,1497168,9761,8 +3893,Wioska+Barbarzy%C5%84ska,542,477,698867483,10019,0 +3894,Tranquillo,504,524,699785935,10032,0 +3895,Onest,442,554,699443920,8461,0 +3896,Pf+Konfederacja+w+%2B,494,488,848915730,10068,0 +3897,0062+%7E211%7E+miedziany+3,439,436,3909522,6925,0 +3898,ada,463,569,8539216,2044,0 +3899,KIELBA+054,455,590,699342219,10290,0 +3900,Winter+is+coming,441,542,698971484,2220,0 +3901,ChceszPokojuSzykujSi%C4%99DoWojny,456,518,699333701,10019,0 +3902,Wioska+507,570,448,477415,10495,0 +3903,125,549,389,849064752,10311,0 +3904,%C5%9Amieszkii,511,569,3454753,9210,0 +3905,053+Kahului,461,467,1497168,9761,0 +3906,Oibar,430,556,699443920,3105,0 +3907,013.+Dziwo%C5%BCona,513,572,699703642,10157,0 +3908,Welll,545,460,849086817,3080,0 +3909,0045,457,466,848913037,8634,0 +3910,Horyzont+zdarze%C5%84,533,543,7581876,9835,0 +3911,CALL+915,556,602,699784536,10311,0 +3912,Ogr%C3%B3d+Warzywny,449,560,7249451,6505,0 +3913,NOT+FOR+YOU,455,550,9236866,1943,9 +3914,Pf+Konfederacja+%2B,485,486,848915730,9938,0 +3915,Lord+Arsey+KING,516,520,848956513,10285,0 +3916,%5B063%5D+Lambda,542,484,848985692,10300,2 +3917,%7C044%7C,555,570,873575,10018,0 +3918,Szlachcic+%21%21%21,486,461,699098531,10303,0 +3919,C014,527,459,699299123,10971,0 +3920,Wioska+411,577,518,477415,10495,0 +3921,4.+Pierdziszewo,544,439,8444356,10471,0 +3922,Fajna+031,450,568,8539216,9222,0 +3923,NOT%3F,425,536,9236866,10042,0 +3924,Lynortis,463,532,849001724,12154,8 +3925,014,506,544,848915531,7618,0 +3927,KIELBA+115,450,572,699342219,10237,0 +3928,B040,473,459,699299123,10495,0 +3929,%5B024%5D+Et+mato,586,525,848985692,10052,0 +3930,001,587,518,6048627,5553,0 +3931,Winter+is+coming,440,550,698971484,1399,0 +3932,Suppi,454,598,699856962,9902,0 +3933,Wioska+barbarzy%C5%84ska,445,540,698971484,2487,0 +3934,0003,564,398,699485250,10211,0 +3935,JaamMwG+022,530,521,848987051,9806,0 +3936,%5B184%5D,543,552,8000875,10264,8 +3937,Zasiedmiog%C3%B3rogr%C3%B3d,532,434,699433558,9734,0 +3938,IQ153,553,452,699368887,6337,0 +3939,Wioska+barbarzy%C5%84ska,475,540,698971484,9496,0 +3940,NOT%3F,433,519,9236866,10068,0 +3941,KIELBA+066,470,578,699342219,10495,0 +3942,Wioska+barbarzy%C5%84ska,525,540,7581876,10019,0 +3943,0010+K55+and987+OZDR.,504,556,3613413,9841,0 +3944,ChceszPokojuSzykujSi%C4%99DoWojny,454,513,699333701,9835,6 +3945,097+MEHEHE+m,493,601,6116940,10019,0 +3946,Wioska+barbarzy%C5%84ska,572,552,699316421,5839,0 +3947,Szlachcic,503,471,699098531,9696,0 +3948,019.+Wioska+Zaconek,572,519,8788366,10252,0 +3949,Brat447,445,486,699262350,10490,0 +3950,001,607,545,6160655,10285,0 +3951,Ogr%C3%B3d+Warzywny,455,559,7249451,2407,0 +3952,CALL+1037,548,543,699784536,9868,0 +3953,Mzm37,549,530,7142659,10362,0 +3954,KONFA+TO+MARKA%2C+NARKA,452,466,698152377,10311,0 +3955,.achim.,523,412,6936607,10311,0 +3956,Szlachcic+062,556,519,758104,8288,0 +3957,JF1,555,456,699368887,7451,0 +3958,00634+Widzew,441,431,3909522,9037,0 +3959,K44+012,433,485,698290577,10343,0 +3960,Pf+Konfederacja,488,496,848915730,9938,0 +3962,Winter+is+coming,503,579,699364813,9976,0 +3963,011+Fiona,446,510,698290577,5142,0 +3964,%230062+LSD,491,551,9272054,10008,0 +3965,Szlachcic,501,482,699098531,7558,0 +3966,0024,512,518,698599365,10019,0 +3967,Wioska+Barbarzy%C5%84ska,545,484,698867483,9166,0 +3968,042,475,480,699510259,9742,0 +3969,%7C046%7C,558,570,873575,10211,0 +3970,ChceszPokojuSzykujSi%C4%99DoWojny,454,504,699333701,9835,0 +3971,010+Trumnypremium.pl,553,495,849031818,7634,0 +3972,Suppi,439,516,699856962,9584,0 +3973,amator+MO2,536,549,848915531,10971,0 +3974,069,552,431,699761749,10495,0 +3975,Wioska+barbarzy%C5%84ska,515,534,848915531,7400,0 +3976,K45+002,417,478,698290577,8403,0 +3977,%5BA%5D_%5B039%5D+Dejv.oldplyr,416,475,699380607,10495,0 +3978,SsSs,453,498,1536625,10160,0 +3979,kathare,493,573,873575,10362,0 +3980,023,529,533,7581876,9007,0 +3981,MARYLIN,515,379,699368887,10237,0 +3982,-+266+-,529,580,849018239,10000,0 +3983,%7E%7ELataj%C4%85cyHolender%7E%7E,561,508,9174887,10152,0 +3984,Szlachcic,485,471,699098531,10311,0 +3985,Szlachcic,559,472,698867446,9965,0 +3986,-+308+-,531,584,849018239,10000,0 +3987,%5B155%5D+North,561,468,848985692,10411,0 +3989,xxx,510,454,698239813,7958,0 +3990,%5B112%5D+North12,571,488,848985692,10161,0 +3992,014,421,480,699510259,9761,0 +3993,0Wioska+barbarzy%C5%84ska,476,535,699781762,10083,0 +3994,.achim.,534,388,6936607,10311,0 +3995,keepo,482,529,848967710,10495,0 +3996,.%3A068%3A.+Chillout,511,427,848934935,3497,0 +3997,087+Dziadek+do+orzech%C3%B3w,541,459,7092442,10495,0 +3998,030,536,418,7271812,10495,0 +3999,055,426,514,699851427,10042,0 +4000,0016%7CRzym,508,443,699098531,9821,0 +4002,Bulletproof,482,512,699785935,8551,0 +4003,Horyzont+zdarze%C5%84,530,550,7581876,10019,0 +4004,.%3A033%3A.+Czosnek,503,485,699098531,7324,0 +4005,Monetki,477,425,699098531,9835,0 +4006,Os+Konfederacja+%2B,478,444,848915730,9822,0 +4007,keepo,482,537,848967710,10559,2 +4009,K44+x021,459,431,698364331,6466,0 +4010,B004,556,503,8138506,9354,7 +4011,%7E090.,496,610,7139820,10495,0 +4012,%5B190%5D,544,521,8000875,9034,0 +4013,KIELBA+075,469,580,699342219,10223,0 +4014,Piek%C5%82o+to+inni,512,481,848956765,5684,0 +4015,Konfiasze,474,493,698908912,10971,0 +4016,...Just+like+that,461,489,699723284,7116,0 +4017,Suppi,439,522,699856962,9984,0 +4018,Sparta_53,477,579,2585846,9638,0 +4019,NOT%3F,431,538,9236866,8123,0 +4020,7.62+mm,470,437,699777234,10019,0 +4021,0114,468,561,698659980,8284,0 +4022,Sparta_43,482,582,2585846,9638,0 +4023,0022,519,516,699432672,10495,0 +4024,186+Barquisimeto,465,453,1497168,9761,0 +4025,027.+Wioska+Loalanek,564,508,8788366,10252,0 +4026,JaamMwG+024,531,525,848987051,8634,0 +4027,Qusz,420,556,699443920,9761,0 +4028,Monetki,484,423,699098531,10294,0 +4029,%5B119%5D+North19,571,471,848985692,10047,0 +4030,Osada,494,437,699098531,10291,0 +4031,Napewno+to+nie+jest+off,513,445,848912265,10495,0 +4032,NOT%3F,425,528,9236866,10042,0 +4033,005,571,550,699316421,9744,0 +4034,yogi,538,568,2808172,10019,0 +4035,Suppi,439,452,699856962,9580,0 +4036,Wioska+435,572,526,477415,10495,0 +4037,Wioska+402,559,509,477415,10495,0 +4038,016,492,580,8369778,9459,0 +4039,041.,504,489,8788366,10316,0 +4040,kto+ananasowy+pod+wod%C4%85+ma+dom,567,503,699628084,9797,0 +4041,Gravity,404,440,698962117,9506,0 +4042,FULL+DEFF,544,471,8155296,7987,0 +4043,Yogi,525,534,2808172,10019,0 +4044,ChceszPokojuSzykujSi%C4%99DoWojny,459,517,699333701,3753,0 +4045,P+Konfederacja,456,442,848915730,9484,5 +4046,-%5B017%5D-+Himalchuli,549,487,849092827,6844,0 +4047,Piek%C5%82o+to+inni,507,473,848956765,10019,0 +4048,00701,452,441,3909522,5439,0 +4049,Wioska+superpuszka,581,498,699347951,6419,0 +4050,20010,516,530,848915531,8583,0 +4051,038,552,427,849063849,9161,0 +4052,025,528,575,699189792,9742,0 +4053,0.Oklahoma,520,589,698215322,9974,0 +4054,049,527,576,699189792,9744,0 +4055,Sparta_39,483,575,2585846,9638,0 +4056,.054.,507,380,698489071,6906,0 +4057,NOT%3F,431,543,9236866,8075,0 +4058,%5B158%5D,538,530,8000875,6996,0 +4059,7.62+mm,499,424,699777234,10019,0 +4060,A027,496,413,699299123,10495,0 +4061,Monetki,481,417,699098531,10291,0 +4062,-%5B029%5D-+Kamet,558,472,849092827,7410,0 +4063,NOT%3F,428,524,9236866,10042,0 +4064,Ogr%C3%B3d+Warzywny,458,565,7249451,1600,0 +4065,014+Wierzbno,537,470,849083501,4456,0 +4066,W.181%2F21,611,532,2999957,10242,0 +4067,.%3A013%3A.+Wilk,508,428,8649412,9989,0 +4068,kto+ananasowy+pod+wod%C4%85+ma+dom,567,502,699628084,9797,0 +4069,yogi,491,542,2808172,10019,0 +4070,012,576,419,849064752,10311,0 +4071,008+Fuchsia+City,591,495,699441366,11109,0 +4072,X01,560,454,699368887,12154,0 +4073,kek,538,517,848967710,10252,0 +4074,037,542,614,699189792,9761,0 +4076,C021,523,454,699299123,10728,0 +4077,NOT%3F,463,533,9236866,8865,0 +4078,%C5%9Amieszkii,512,560,3454753,9011,0 +4079,Osada,495,448,699098531,9637,0 +4080,Wioska+%28033%29,573,507,698232227,9838,0 +4081,B010,536,480,8138506,10019,0 +4082,KONFA+TO+MARKA%2C+NARKA,413,481,698152377,10311,0 +4083,F042,488,521,699189792,8651,0 +4084,031,591,449,699722599,10838,0 +4085,Szlachcic,577,490,699759128,10237,0 +4086,STOLICA+DMK,401,570,6892517,8127,0 +4087,KONFA+TO+MARKA%2C+NARKA,443,459,698152377,10297,0 +4088,xxx,494,436,698239813,10495,0 +4089,Wioska+barbarzy%C5%84ska,463,441,9291984,10020,0 +4090,Wioska+barbarzy%C5%84ska,431,507,698971484,10008,0 +4091,.%3A034%3A.+Papryczka,510,432,699098531,8677,0 +4092,KONFA+TO+MARKA%2C+NARKA,440,464,698152377,10292,0 +4093,%28032%29,418,534,699846892,9402,0 +4094,Tank+009.+Za+gar%C5%9B%C4%87+dolar%C3%B3w,399,495,698290577,9362,0 +4095,007,556,609,699567608,9720,0 +4096,043,425,486,699510259,9753,0 +4097,AbacadA+012,567,426,699756210,9924,0 +4098,%3F%2B44+76+Baincthun,468,478,698361257,9844,0 +4099,90k%24+Grvvyq,561,539,699676005,10495,0 +4100,0024+K55+and987+OZDR.,505,556,3613413,9850,0 +4101,0049,457,469,848913037,9993,0 +4102,Szlachcic,489,474,699098531,10292,0 +4103,Wembley,620,512,699795378,10845,0 +4104,-023-,461,426,9291984,10479,0 +4105,Monetki,478,419,699098531,10292,0 +4106,006,582,535,8138506,10019,0 +4107,COUSINS...%2C....,474,584,7976264,10295,0 +4108,Monetki+%3F%3F%3F,481,423,699098531,10292,0 +4109,Lord+Arsey+KING,519,498,848956513,10285,0 +4110,30006,487,539,848915531,9238,0 +4111,Szlachcic,565,488,698867446,10029,0 +4112,Wioska+barbarzy%C5%84ska,464,432,9291984,10244,0 +4113,Fajna005,453,556,698971484,3523,0 +4114,031,521,571,699189792,9744,0 +4115,021.+Wioska+Krystiano242,570,507,8788366,10252,9 +4116,Domek+1+%2A,545,423,849064614,9005,0 +4117,Bucksbarzy%C5%84sKamiiiru,430,513,848955783,10971,0 +4119,yogi,502,546,2808172,10019,0 +4120,060+San+Jose,458,471,1497168,9761,0 +4121,K45+-+007,562,466,6510480,9841,0 +4122,Brat447,440,497,699262350,10476,0 +4123,Szlachcic,467,418,698388578,10237,0 +4124,%23Shellder,563,463,699795378,10362,0 +4125,Wioska+barbarzy%C5%84ska,458,540,699698253,2286,0 +4126,Monetki,487,434,699098531,10295,2 +4128,189+Cuzco,463,458,1497168,9761,0 +4129,7.62+mm,477,439,699777234,10019,0 +4130,Baza2,430,446,698884287,10285,0 +4131,%2AAteny_14,471,526,2585846,9638,0 +4132,0187,466,554,698659980,8786,0 +4133,004,445,524,698971484,10008,0 +4134,%7C065%7COoo,569,531,699664910,6894,0 +4135,87k%24+Grvvyq,542,536,699676005,9046,0 +4136,003,566,579,699316421,10273,0 +4137,Daleko+006,477,583,8369778,8156,0 +4138,Amator,522,578,848915531,11321,0 +4139,Sparta_44,485,578,2585846,9638,0 +4140,K45+-+008,563,461,6510480,10495,0 +4141,Mniejsze+z%C5%82o+0050,421,507,699794765,6463,0 +4142,3.+Gnojowice,549,433,8444356,10471,0 +4143,-+116+-,548,587,849018239,10000,0 +4144,A%23035%23,424,479,698807570,11383,3 +4145,Szlachcic,494,458,699098531,9980,0 +4146,Wioska+barbarzy%C5%84ska,539,539,7581876,6137,0 +4147,Sparta_37,478,576,2585846,9638,0 +4149,002,530,482,848967710,10252,0 +4150,7.62+mm,489,426,699777234,10019,0 +4151,Ko%C5%84czy%C4%87+czas%3A%29,552,443,699368887,6663,0 +4152,Front_03,460,520,2585846,5589,0 +4153,Deff+stop%2C+chyba+%C5%BCe+dla+ryca+exp,490,471,699098531,9835,0 +4154,Gravity,423,453,698962117,9505,0 +4156,07+%7C+Twoja+stara+wioska,544,431,849002091,10068,0 +4157,Pf+Konfederacja,494,493,848915730,10178,0 +4158,Osada,496,441,699098531,10292,3 +4159,Fajna+019,449,553,698971484,5935,0 +4160,049.,501,493,8788366,10252,0 +4161,076.,499,479,8788366,10252,0 +4162,048.,499,494,8788366,10485,0 +4163,ADEN,561,433,698588535,8278,0 +4164,001,555,405,7271812,10495,0 +4165,%230089+Brze%C5%9B%C4%87,476,556,9272054,10146,3 +4166,Merhet,522,582,698215322,10228,0 +4167,Wioska+barbarzy%C5%84ska,539,493,848967710,10252,0 +4168,054,448,479,699510259,9761,0 +4169,081.,567,463,849094609,10330,0 +4170,049,432,489,699510259,9750,0 +4171,0080,463,464,848913037,3942,0 +4172,-+033+-,535,580,849018239,10000,0 +4173,P+Konfederacja+8,457,445,848915730,10336,0 +4174,Szlachcic+%21%21%21,504,471,699098531,9701,0 +4175,Omali,435,555,699443920,3971,0 +4176,Zosta%C5%82em+Krabem,469,530,699783765,10005,0 +4177,0063+1,451,431,3909522,10478,2 +4178,%C5%9Amieszkii,510,563,3454753,9835,0 +4179,Wioska+barbarzy%C5%84ska,486,506,848967710,5439,0 +4180,Sparta_68,489,581,2585846,9261,0 +4181,025.+ALFI,484,571,8539216,1916,0 +4182,Zasiedmiog%C3%B3rogr%C3%B3d,537,428,699433558,9650,0 +4183,Fajna+034,462,570,8539216,1765,0 +4184,044+%7C,557,560,8000875,9953,0 +4185,043,421,521,699851427,10129,0 +4186,NOT%3F,425,531,9236866,10042,0 +4187,018,531,497,8191129,8564,0 +4188,SsSs,452,501,1536625,9860,0 +4189,KONFA+TO+MARKA%2C+NARKA,427,461,698152377,10292,0 +4190,Propion4t,623,505,699379895,9966,0 +4191,KONFA+TO+MARKA%2C+NARKA,439,464,698152377,10295,0 +4192,03.+C1F,473,507,699781762,12154,0 +4193,%230120+%C5%81aba%C5%82ba%C5%82,477,540,698704189,8773,0 +4194,KONFA+TO+MARKA%2C+NARKA,389,475,698152377,10311,0 +4195,-+092+-,539,582,849018239,10000,0 +4196,Zasiedmiog%C3%B3rogr%C3%B3d,532,436,699433558,6300,0 +4197,Joms+015,530,416,699756210,10036,0 +4198,%7C011%7C,559,570,873575,10178,0 +4199,Yogi,504,546,2808172,10019,0 +4200,%3F%2B44+86+Jons,460,480,698361257,9841,0 +4201,114.,534,483,8788366,9605,0 +4202,Wioska+Pitter82,478,501,848967710,10252,0 +4203,%7E%7ELataj%C4%85cyHolender%7E%7E,562,498,9174887,9288,0 +4204,002,411,507,699851427,10042,0 +4205,Aleartis,480,546,698704189,9711,0 +4206,Eldorado%21,498,501,699785935,9899,0 +4207,174+Cordoba,480,483,1497168,9761,0 +4208,KONFA+TO+MARKA%2C+NARKA,433,461,698152377,10300,0 +4209,P+Konfederacja,475,436,848915730,9202,0 +4210,%5B102%5D+North2,574,481,848985692,10054,0 +4211,009,567,412,849064752,10311,0 +4212,027.+Alkanost,510,579,699703642,9653,0 +4214,066+%7C,565,575,8000875,9938,0 +4215,Piek%C5%82o+to+inni,520,419,848956765,10160,0 +4216,KONFA+TO+MARKA%2C+NARKA,427,471,698152377,10294,0 +4217,WIE%C5%BBA+GRANICZNA,537,452,8155296,10409,0 +4218,Zadzwoni%C4%99+do+Ciebie+%21,500,503,699785935,10160,0 +4219,0184,475,543,698971484,9505,0 +4220,KONFA+TO+MARKA%2C+NARKA,443,461,698152377,10294,0 +4221,K44+007,421,475,698290577,5520,0 +4222,CALL+1019,543,563,699784536,10311,0 +4223,Horyzont+zdarze%C5%84,527,541,7581876,9835,0 +4224,Wioska+barbarzy%C5%84ska,457,543,699698253,2732,0 +4225,005.+Cintra,564,397,699799629,10495,0 +4226,Szlachcic,466,420,698388578,10237,0 +4228,Brat447,445,494,699262350,10481,0 +4229,.achim.,536,398,6936607,10311,0 +4230,Prawo+ponad+prawem%21,493,509,699785935,9835,0 +4231,Wioska+Barbarzy%C5%84ska,547,488,698867483,9449,0 +4232,P.006,540,559,873575,9807,0 +4233,Monetki,477,414,699098531,10291,6 +4234,Twierdza+001,421,571,849084740,10263,0 +4235,023,548,475,849031818,7371,0 +4236,NOT+FOR+YOU,456,552,9236866,6105,0 +4237,%5B097%5D,538,489,848985692,10068,0 +4238,0173,471,549,699856962,10083,0 +4239,015,420,477,699510259,9761,0 +4240,B011,488,448,699299123,10061,0 +4241,ATENY,474,536,698971484,10008,0 +4242,Szlachcic,560,490,698867446,9335,0 +4243,Akademia+Bogactwa,550,426,848986287,10160,0 +4245,-12-,589,482,699347951,10971,0 +4246,NOT%3F,433,515,9236866,10042,0 +4247,Wioska+Barbarzy%C5%84ska,548,479,698867483,10019,0 +4249,ladyanima,509,572,699703642,9223,0 +4251,Fajna+003,450,559,699868002,9163,0 +4252,Szlachcic,578,487,699759128,10237,0 +4253,Yuppi,454,529,699856962,9601,0 +4254,Szlachcic+050,567,532,758104,9338,0 +4255,KONFA+TO+MARKA%2C+NARKA,426,465,698152377,10311,0 +4256,Wioska,385,521,849084005,10178,0 +4257,CALL+1054,520,567,699784536,10559,0 +4258,ChceszPokojuSzykujSi%C4%99DoWojny,462,514,699333701,5185,0 +4259,Mniejsze+z%C5%82o+0008,391,463,699794765,9708,0 +4260,Mniejsze+z%C5%82o+0063,420,506,699794765,8442,0 +4261,Ikona%2A,394,525,1804724,10142,0 +4262,Szlachcic+%21%21%21,494,476,699098531,10311,0 +4263,6kilka,531,458,6923061,2284,0 +4264,.%3A116%3A.+Niangmen,513,410,848934935,9994,0 +4265,KIELBA+064,470,576,699342219,10273,0 +4266,Fajna+070,454,564,8539216,7929,0 +4267,MORIA+F,540,472,8155296,10817,0 +4268,xxx,504,452,698239813,10495,0 +4269,059.+ALFI,484,563,8539216,1132,0 +4270,NOT%3F,435,552,9236866,2313,0 +4271,Oreo,439,560,699443920,3940,0 +4272,Wawrzyniak+017,450,547,698290577,2380,0 +4273,Kasyno,449,518,7249451,10237,0 +4274,KONFA+TO+MARKA%2C+NARKA,425,465,698152377,10294,0 +4275,212+New+Delhi,472,490,1497168,6914,0 +4276,Jaaa,586,530,698635863,10495,0 +4277,NOT%3F,433,530,9236866,10042,0 +4279,%2AINTERTWINED%2A,476,563,698704189,9711,0 +4280,-----------------3,460,422,9291984,10495,0 +4281,NIERAJ07,442,610,699859013,5782,0 +4282,024,464,524,2585846,3069,0 +4283,Szlachcic,486,466,699098531,10478,0 +4284,0033,556,495,699432672,5384,0 +4285,153+MIKOX+054,591,413,699491076,10001,0 +4286,Monetki,482,414,699098531,10295,0 +4287,20008,519,540,848915531,7633,0 +4288,053+%7C,555,535,8000875,10311,0 +4289,Szlachcic,564,499,698867446,9721,0 +4290,CALL+958,543,550,699784536,10311,0 +4291,012+Moab,438,468,1497168,9761,0 +4292,055.+ALFI,485,568,8539216,2008,0 +4293,Belvedere+001,579,413,699756210,10290,0 +4294,055.,510,490,8788366,10252,0 +4295,Szlachcic,561,496,698867446,9771,0 +4296,P.002,532,559,873575,9964,0 +4297,%7E%7ELataj%C4%85cyHolender%7E%7E,581,503,9174887,10143,0 +4298,s181eo17,399,446,393668,9966,0 +4299,F052,483,521,699189792,8677,0 +4300,Joms+024,529,422,699756210,9924,0 +4301,-+302+-,528,582,849018239,10000,0 +4302,Domek+3,547,424,849064614,9750,0 +4303,.%3A006%3A.Chillout,511,443,848934935,8211,4 +4304,LEGION_2,553,448,6101033,4280,0 +4305,Fajna009,464,572,8539216,1721,0 +4306,PARA,475,581,8369778,9330,6 +4307,Szlachcic+%21%21%21,514,461,699098531,6697,0 +4308,Wioska+Barbarzy%C5%84ska,547,480,698867483,8923,0 +4309,009+HEAVY,555,485,849031818,9113,0 +4310,%5B187%5D,537,490,8000875,9885,0 +4311,amator,527,570,848915531,11550,0 +4312,.achim.,530,452,6936607,10654,0 +4313,.achim.,534,422,6936607,7055,0 +4314,Osada,497,443,699098531,9637,3 +4315,%21Snorlax,570,449,699795378,7879,0 +4316,Fajna+050,452,553,698971484,2477,0 +4317,039+St.+George,446,461,1497168,9761,0 +4318,xxx,486,440,698239813,10495,0 +4319,Wioska+Barbarzy%C5%84ska,547,483,698867483,9593,0 +4320,Sas,511,544,7581876,10019,0 +4321,keepo,475,509,848967710,12154,8 +4322,merkus+73,429,433,9291984,10479,0 +4323,OsaDavout,451,539,699698253,6173,0 +4324,Winter+is+coming,441,545,698971484,1408,0 +4325,012+%7C+Lord+Arsey+-+Konfederacji,567,553,8000875,10090,4 +4326,Cast+Away+022,440,486,698290577,4232,0 +4327,019,536,474,848930111,9359,0 +4328,Pf+Konfederacja+w,487,491,848915730,10311,0 +4329,Szlachcic,492,477,699098531,9690,0 +4330,R%C4%99cznik+do+zmiany,417,488,699697558,10083,0 +4331,JaamMwG+004,526,522,848987051,9084,0 +4332,BETI+009,461,568,8539216,1803,0 +4333,Fresio,449,445,699660539,9808,2 +4334,Village,505,594,849094067,12154,0 +4335,Pf+Konfederacja+%2B,491,490,848915730,9924,0 +4336,SsSs,422,490,1536625,9046,0 +4337,007,556,462,699368887,7518,0 +4338,001+%7C+B.+Moon+l+Black+E.,562,560,8000875,9959,0 +4339,Taran,580,465,699759128,10237,0 +4340,Szlachcic+041,567,527,758104,9338,0 +4341,SPARTA_66,485,579,2585846,8969,0 +4342,Szlachcic,485,481,699098531,10311,0 +4343,-+096+-,544,577,849018239,10000,0 +4344,Suppi,469,540,699856962,9570,0 +4345,White+widow,401,568,9167250,8845,0 +4346,060+Estonia,574,464,7092442,10495,0 +4347,Village,518,578,849094067,12154,0 +4348,01%2A,564,544,699664910,7111,0 +4349,108+St+Johns,473,491,1497168,9761,0 +4350,-+309+-,524,585,849018239,10000,0 +4351,-%5B024%5D-+Chomo+Lonzo,559,487,849092827,7605,0 +4352,F004,509,533,699189792,9761,0 +4353,...Just+like+that,456,505,699723284,10452,0 +4354,0005,449,391,699431255,9961,0 +4355,xxx,486,426,698239813,10495,0 +4356,%230118+Jupiter,499,550,9272054,10083,0 +4357,P+Konfederacja,455,451,848915730,9463,0 +4358,Winter+is+coming,506,574,699364813,10311,0 +4359,x01,544,470,8459255,10067,0 +4360,%5B108%5D+North8,571,486,848985692,9975,0 +4361,009.+Nocnica,497,586,699703642,10160,0 +4362,x04,549,468,8459255,10018,0 +4363,CALL+1082,540,549,699784536,10495,0 +4364,Fajna+049,454,553,698971484,979,0 +4365,Wioska+Barbarzy%C5%84ska,548,491,698867483,10019,0 +4366,Joms+039,532,427,699756210,9385,0 +4367,Sparta_23,496,596,2585846,9638,0 +4368,Wioska+barbarzy%C5%84ska,455,535,699698253,5213,0 +4369,%7E030.,476,600,7139820,10495,0 +4370,Szlachcic,492,459,699098531,9899,4 +4371,Szlachcic,457,403,698388578,10237,0 +4372,New+York,425,450,698884287,10285,0 +4373,Winter+is+coming,503,581,699364813,10075,0 +4374,027,567,545,699316421,9744,0 +4375,PRO8L3M,420,497,7491093,9835,0 +4376,Front_15,459,527,699856962,5851,0 +4377,x+B002,392,515,698290577,10345,0 +4378,001,585,543,8138506,10019,0 +4379,ChceszPokojuSzykujSi%C4%99DoWojny,467,496,699333701,11487,0 +4380,xxx,512,466,698239813,10971,0 +4381,011.+P%C3%B3%C5%82nocnica,505,578,699703642,9761,0 +4382,P.007Z,509,559,873575,10203,1 +4383,Wioska+barbarzy%C5%84ska,436,501,698971484,10160,0 +4384,Kasyno,440,509,7249451,9902,0 +4385,Fajna+087,457,564,8539216,1836,0 +4386,R%C4%99cznik+do+zmiany,421,479,699697558,10019,0 +4387,Kasyno,445,512,7249451,10337,0 +4388,001,530,480,848967710,10252,0 +4389,018,490,526,849092723,8019,0 +4390,023,529,575,699189792,10135,0 +4391,Pf+Konfederacja+8,493,488,848915730,9976,0 +4392,-+036+-,533,578,849018239,10000,0 +4393,006.+ALFI,484,573,8369778,2230,4 +4394,Offline,503,516,699785935,10495,0 +4395,Wioska+Kermej,537,525,7581876,7474,0 +4396,Wioska+barbarzy%C5%84ska,510,436,699658023,9135,0 +4397,Winter+is+coming,442,552,698971484,4779,0 +4398,Osada,500,453,699098531,8561,0 +4399,Yogi,532,550,2808172,10160,0 +4400,Rilonia,514,550,849066849,5371,0 +4401,Szlachcic+052,571,522,758104,9338,0 +4402,%5B095%5D,539,489,848985692,11391,0 +4403,%5B072%5D+Noqtlok,528,506,848985692,10178,0 +4404,Wioska+barbarzy%C5%84ska,512,435,699658023,9345,0 +4405,.achim.,533,447,6936607,12154,0 +4406,%5B121%5D+North21,571,470,848985692,10051,0 +4407,Szlachcic,565,500,698867446,9721,0 +4408,015.+ALFI,483,568,8539216,2586,1 +4409,PRO8L3M,468,500,7491093,8115,0 +4410,KONFA+TO+MARKA%2C+NARKA,440,463,698152377,10311,0 +4411,B017,485,451,699299123,10495,0 +4412,Brat447,418,519,699262350,10479,0 +4413,Suppi,444,449,699856962,9670,0 +4414,KONFA+TO+MARKA%2C+NARKA,445,471,698152377,10311,0 +4415,Jehu_Kingdom_30_,586,475,8785314,9993,0 +4416,Sparta_29,489,582,2585846,9638,0 +4417,023.+Ni+ma+opcji+xd,506,583,699703642,9761,3 +4418,.achim.,541,409,6936607,9703,0 +4419,%2AINTERTWINED%2A,479,543,698704189,9711,0 +4420,%5B124%5D+North24,572,473,848985692,10054,0 +4421,Knowhere,394,503,699723284,10452,0 +4422,016.+ALFI,471,571,8539216,2453,3 +4423,Dum+Spiro+Spero,494,558,848896948,10042,0 +4424,BBB,552,436,1006847,7788,0 +4425,007.+Wioska+lllllllllXDlllllllll,568,529,8788366,10495,2 +4427,NOT%3F,417,536,9236866,10042,0 +4428,165+Ale+mnie+g%C5%82%C3%B3wka+boli,386,545,699382126,10636,0 +4429,090+Des+Moines,478,456,1497168,9761,0 +4430,0008,505,524,699432672,10495,0 +4431,%230027+Kwarantanna,498,526,9272054,10066,0 +4432,096.,477,499,8788366,10047,0 +4433,Olenale,439,559,699443920,3508,0 +4434,Horyzont+zdarze%C5%84,517,546,7581876,9835,0 +4435,B071,476,454,699299123,9761,0 +4436,XXX001,569,456,699368887,10004,0 +4437,%7E%7ELataj%C4%85cyHolender%7E%7E,557,499,9174887,9708,0 +4438,KIELBA+072,471,577,699342219,10495,0 +4439,Daleko+019,484,589,8369778,8617,0 +4440,Lynortis,464,537,849001724,6404,0 +4441,%2AINTERTWINED%2A,481,522,698704189,6624,0 +4442,012,561,474,849031818,3874,0 +4443,Durthang,505,514,849091897,10160,0 +4444,046,549,391,849064752,10311,0 +4445,Wioska+Mateox,555,496,699432672,3778,0 +4446,.achim.,540,397,6936607,10311,0 +4447,Szlachcic,565,467,698867446,10043,0 +4448,Szlachcic+%21%21%21,499,474,699098531,9899,0 +4449,Zasiedmiog%C3%B3rogr%C3%B3d,530,433,699433558,10068,0 +4450,R%C4%99cznik+do+zmiany,423,485,699697558,10252,0 +4451,.achim.,525,385,6936607,10068,0 +4452,%2AINTERTWINED%2A%2A,532,563,698704189,9711,0 +4453,%5B118%5D,565,539,8000875,9894,0 +4454,Napewno+to+nie+jest+off,514,440,848912265,6733,0 +4455,-+109+-,540,580,849018239,10000,0 +4456,Gattacka,579,522,699298370,10373,0 +4457,045,472,482,699510259,10019,0 +4458,NOT%3F,418,513,9236866,10042,0 +4459,Bagdad,466,392,8847546,10242,0 +4460,C012,524,461,699299123,10728,0 +4461,035+%7C,568,551,8000875,10476,0 +4462,Pf+Konfederacja,494,498,848915730,10232,0 +4463,%2B44+84,444,481,698361257,9664,0 +4464,Bucksbarzy%C5%84sKamiiiru,436,525,848955783,10971,0 +4465,014,528,433,699788305,9798,0 +4466,B015,480,443,699299123,10495,0 +4467,C019,528,461,699299123,10140,0 +4468,%3F%2B44+96+Desvres,465,490,698361257,9669,0 +4469,P+Konfederacja,458,445,848915730,10030,0 +4470,Butem+w+Morgen,552,548,848967710,10495,0 +4471,0018+K55+and987+OZDR.,500,554,3613413,9845,0 +4472,Pf+Konfederacja,488,492,848915730,10365,0 +4473,%5B052%5D+Gamma,542,483,848985692,10311,0 +4474,Osada,510,453,699098531,6832,0 +4475,%230132+Kleofas,494,515,9272054,4642,0 +4476,P.015,541,560,873575,10271,0 +4477,NOT%3F,432,531,9236866,9033,0 +4478,Selonari,460,562,698704189,9735,0 +4479,Selonari,462,565,698704189,9711,0 +4480,CALL+940,548,557,699784536,10311,0 +4481,xxx,487,432,698239813,10495,1 +4482,10009,523,553,848915531,11550,0 +4483,%2F01,410,577,9167250,11568,0 +4484,Kasyno,442,504,7249451,10237,0 +4485,Jaaa,577,544,698635863,10479,0 +4486,Wioska+barbarzy%C5%84ska,445,453,699660539,9493,0 +4487,Wioska+10,530,498,699385139,9308,7 +4488,Piek%C5%82o+to+inni,517,438,848956765,10160,0 +4489,%2B44+64,445,462,698361257,8992,0 +4490,%C5%9Amieszkiii,480,586,3454753,7911,0 +4491,142+Durango,468,483,1497168,9761,0 +4492,%5B034%5D+MONETKI,597,535,848985692,10252,0 +4493,Wioska+barbarzy%C5%84ska,451,541,699698253,2249,0 +4494,Lord+Arsey+KING,581,529,848956513,10285,0 +4495,Butem+w+Morgen,485,515,848967710,10074,0 +4496,CALL+934,552,560,699784536,10311,0 +4497,-+043+-,535,571,849018239,10000,0 +4498,Monetki,473,432,699098531,10297,0 +4499,010,413,501,699510259,9761,0 +4500,Wioska,381,525,849084005,10178,0 +4501,7.62+mm,469,437,699777234,10019,0 +4502,0040+MzM,530,528,698416970,11678,0 +4503,026.+ALFI,483,569,8539216,1749,0 +4504,114+Yellowknife,478,488,1497168,9761,0 +4505,Weso%C5%82ych+%C5%9Awi%C4%85t,568,460,699368887,9994,0 +4506,001.xxx,464,617,849084985,10274,0 +4507,7.62+mm,489,430,699777234,10019,0 +4508,Wioska+barbarzy%C5%84ska,437,503,698971484,8670,0 +4509,0004+K55+and987+OZDR.,504,554,3613413,9899,0 +4510,7.62+mm,477,441,699777234,10019,0 +4511,007+Dworzec+Gda%C5%84ski,542,469,849083501,9763,0 +4512,022,482,584,699364813,9753,0 +4513,031+%7C,558,547,8000875,10149,0 +4514,006.+Marzyciel+Shrek,459,502,698290577,5646,0 +4515,017,462,529,2585846,2774,0 +4516,kathare,536,546,873575,10595,0 +4517,Myk+i+do+kieszonki,381,508,9319058,9799,0 +4518,.%3A016%3A.+Chillout,500,385,848934935,9516,0 +4519,20019,515,550,848915531,8729,0 +4520,Harbar,428,551,8779575,2898,0 +4521,C028,525,450,699299123,7615,0 +4522,Piek%C5%82o+to+inni,518,470,848956765,9761,0 +4523,%2313.,529,473,848967710,10971,0 +4524,Winter+is+coming,443,552,698971484,7394,0 +4525,Lord+Arsey+KING,508,524,848956513,10285,6 +4526,-+094+-,542,576,849018239,10000,0 +4527,Piek%C5%82o+to+inni,511,469,848956765,10083,0 +4528,%230138+Anne-Marie,557,519,9272054,3560,0 +4529,CALL+965,521,568,699784536,10311,0 +4530,0046,458,466,848913037,5467,0 +4531,xxx,511,466,698239813,8549,0 +4532,7.62+mm,511,448,699777234,8745,0 +4533,009+%7C+Lord+Axen+-+Coming+for+you,558,560,8000875,10303,0 +4534,-%5B022%5D-+Maszerbrum,555,491,849092827,7477,0 +4535,Szlachcic,583,493,699759128,10237,0 +4536,Palma+pod+palma%21,499,509,699785935,9835,0 +4537,009,550,522,699194766,9986,0 +4538,0062+%7E23%7E,438,439,3909522,10214,0 +4539,Grafoll,455,544,699698253,9753,0 +4540,015.+A-RE-SE-EY,574,524,848967710,10252,5 +4541,7.62+mm,495,433,699777234,10019,0 +4542,0202,455,614,698659980,10559,0 +4543,Wioska+430,565,515,477415,10495,0 +4544,Lord+Arsey+KING,511,467,848956513,10285,0 +4545,Wioska+401,561,516,477415,10495,0 +4546,Kasyno,443,510,7249451,8307,0 +4547,%2AINTERTWINED%2A,465,560,698704189,9735,0 +4548,Fajna+073,455,551,9236866,1586,0 +4549,Gattacka,581,523,699298370,9455,0 +4550,Wioska+Marceli+Tower,445,543,698971484,2827,0 +4551,%2B44+84,443,482,698361257,8798,0 +4552,04+Anglia,586,492,8925695,9394,0 +4553,ChceszPokojuSzykujSi%C4%99DoWojny,459,516,699333701,3899,0 +4554,ChceszPokojuSzykujSi%C4%99DoWojny,460,518,699333701,4406,0 +4555,Pf+Konfederacja,491,489,848915730,9575,0 +4556,P.012,544,563,873575,10141,0 +4557,008+Boulder+City,438,475,1497168,9761,0 +4558,Fort,501,571,606407,10300,0 +4559,%2B44+72+Montcavrel,421,472,698361257,10827,0 +4560,Lord+Arsey+KING,517,526,848956513,10285,0 +4561,lady,489,585,699703642,12154,0 +4562,068,551,429,699761749,10495,0 +4563,KONFA+TO+MARKA%2C+NARKA,450,467,698152377,10438,0 +4564,098.,503,483,8788366,7066,0 +4565,120+Royal+New+France,477,481,1497168,9761,0 +4566,D018,505,387,7758085,9925,0 +4567,NOT%3F,460,537,9236866,3688,0 +4568,071.,509,495,8788366,10252,0 +4569,002,472,514,848967710,4558,0 +4570,z+029,556,588,699342219,10237,0 +4571,036,598,565,699373599,10068,0 +4572,Joms+029,530,414,699756210,9761,0 +4573,Szlachcic,573,522,698867446,9492,0 +4574,x+cast+Away,434,495,698290577,9845,0 +4575,.achim.,540,464,6936607,5374,0 +4576,Dum+Spiro+Spero,492,558,848896948,10000,0 +4577,048+Bu%C5%82eczka+v3,532,401,699491076,10001,0 +4578,025,567,549,699316421,9744,0 +4579,Pf+Konfederacja+%2B,487,488,848915730,10157,0 +4580,015+Fiona,446,500,698290577,10096,0 +4581,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+10,622,505,699379895,8308,0 +4582,JaamMwG+028,521,523,848987051,9961,0 +4583,KONFA+TO+MARKA%2C+NARKA,446,455,698152377,10654,0 +4584,Wioska+mati,548,497,699432672,2755,6 +4585,Os+Konfederacja,469,453,848915730,9053,0 +4586,NOT%3F,436,533,9236866,8316,0 +4587,Horyzont+zdarze%C5%84,525,535,7581876,9814,0 +4588,7.62+mm,488,440,699777234,6597,0 +4589,%5B110%5D,569,548,8000875,9888,0 +4590,Ho%C5%82opole,493,389,699433558,10178,0 +4591,35+min+to+d%C5%82ugo,551,459,699368887,6359,0 +4592,%7E%7ELataj%C4%85cyHolender%7E%7E,586,507,9174887,10316,0 +4593,Wioska+barbarzy%C5%84ska,511,436,699658023,9458,0 +4594,%5B139%5D,548,535,8000875,9627,0 +4595,%3F%2B44+85+Villeurbanne+La+Doua,456,480,698361257,9841,8 +4596,%23181Wrrr...,579,510,2999957,3777,0 +4597,A%23061%23,416,476,698807570,10397,0 +4598,CALL+990,544,551,699784536,10311,0 +4599,Wioska+barbarzy%C5%84ska,526,502,848967710,10252,0 +4600,.%3A035%3A.+Cynamon,510,416,8649412,7667,0 +4601,Knowhere,389,493,699723284,10000,0 +4602,Winter+is+coming,430,539,9236866,3117,0 +4604,C015,518,459,699299123,10971,0 +4605,Nitrbolon,571,500,699379895,9885,0 +4606,Szlachcic,506,460,699098531,9068,0 +4607,0022,505,497,698599365,8037,0 +4608,Szlachcic+%21%21%21,507,470,699098531,7328,0 +4609,ADEN,568,430,698588535,10072,0 +4610,%5B091%5D,555,498,8000875,9962,0 +4611,Knowhere,385,492,699723284,10484,0 +4612,Mniejsze+z%C5%82o+0067,421,504,699794765,8014,0 +4613,028,468,522,2585846,2794,0 +4614,0050,462,473,848913037,8956,0 +4615,%2AINTERTWINED%2A,461,560,698704189,5648,0 +4616,C042,533,457,699299123,6623,0 +4617,011+Indigo+Plateau,588,495,699441366,11109,0 +4618,%21Wioska+406,559,514,477415,10495,0 +4619,%5B140%5D,559,533,8000875,9312,0 +4620,KIELBA+118,435,563,699342219,7880,0 +4621,Osada,501,439,699098531,10291,0 +4622,lady,487,584,699703642,9394,0 +4623,kek,537,519,848967710,8976,0 +4624,Szlachcic+028,572,522,758104,9338,0 +4625,030.+Wioska+osilek123,552,515,8788366,10252,0 +4626,06+Arabia+Saudyjska,468,506,699781762,9416,0 +4627,7.62+mm,494,428,699777234,10019,6 +4628,Szlachcic,573,491,699759128,10237,0 +4629,KONFA+TO+MARKA%2C+NARKA,449,463,698152377,10311,0 +4630,Wioska+431,557,500,477415,10495,0 +4631,0101,467,447,3909522,9841,0 +4632,B014,570,399,699761749,10495,0 +4633,CALL+1043,550,543,699784536,7430,0 +4634,ChceszPokojuSzykujSi%C4%99DoWojny,461,511,699333701,10290,0 +4635,SsSs,422,496,1536625,6265,0 +4636,Village,452,566,849094067,9534,0 +4637,Gattacka,583,517,699298370,8691,0 +4638,10014,533,556,848915531,9329,0 +4639,033,475,491,699510259,9761,0 +4640,Lord+Arsey+KING,516,522,848956513,10285,0 +4641,%C5%9Amieszkii,507,565,3454753,9248,0 +4642,0.Pittsburgh,518,583,698215322,9970,0 +4643,Winter+is+coming,441,553,699856962,7063,0 +4644,Jaaa,571,547,698635863,10487,0 +4645,0047,458,467,848913037,7037,0 +4647,187+Cali,470,467,1497168,9761,0 +4648,%2AINTERTWINED%2A%2A,461,561,698704189,9711,0 +4649,Gattacka,582,481,699298370,9570,0 +4650,A013,494,415,699299123,10481,0 +4651,022.+A-RE-SE-EY,575,525,848967710,10252,0 +4652,Front_28,454,526,2585846,7193,0 +4653,068,448,503,699510259,10237,0 +4654,KONFA+TO+MARKA%2C+NARKA,425,463,698152377,10311,0 +4655,041,445,538,698971484,8933,0 +4656,Piek%C5%82o+to+inni,519,489,848956765,9761,0 +4657,SsSs,437,499,1536625,3804,0 +4658,Szlachcic+037,552,520,758104,9338,0 +4659,Brat447,455,496,699262350,11321,0 +4660,Jaaa,572,541,698635863,10481,0 +4661,CALL+1047,542,553,699784536,10311,0 +4662,001+M%C5%82ociny,536,479,849083501,9849,0 +4663,011.,615,546,8900955,6359,0 +4664,adam4,526,538,7581876,9641,0 +4665,%7E009.,503,604,7139820,10495,0 +4666,-13-,586,474,699347951,10400,0 +4667,%2AAteny_49,465,529,2585846,2940,0 +4668,Monetki,477,413,699098531,10294,0 +4669,Winter+is+coming,440,543,698971484,2157,0 +4670,Monetki,481,416,699098531,10311,0 +4671,KONFA+TO+MARKA%2C+NARKA,446,471,698152377,10311,0 +4672,0004,622,520,6510480,10320,0 +4673,Daleko+029,472,584,699364813,8286,0 +4674,003,429,583,9167250,10068,0 +4675,Suppi,439,520,699856962,9554,2 +4676,Wioska+Barbarzy%C5%84ska,544,475,698867483,10019,0 +4677,A016,487,414,699299123,10495,0 +4678,.achim.,558,443,6936607,10311,0 +4679,104+Hejka,541,460,7092442,5893,0 +4680,Presja,512,508,699785935,12154,0 +4681,JaamMwG+017,529,525,848987051,10220,0 +4682,OOI,508,438,699658023,9738,0 +4683,xxx,501,434,698239813,10495,0 +4684,199+Santa+Cruz+de+La+Sierra,468,461,1497168,10016,0 +4685,1.+Obj+705+%21%21%21,498,533,849087855,10019,0 +4686,CALL+951,548,554,699784536,10311,0 +4687,Joms+025,532,418,699756210,10495,0 +4688,7.62+mm,465,454,699777234,8562,0 +4689,PRO8L3M,448,501,7491093,9862,0 +4690,.achim.,517,401,6936607,10311,0 +4691,%230096+Dobry%C5%84+Ma%C5%82y,475,556,9272054,10019,0 +4692,COUSINS,495,587,699364813,10203,0 +4693,%2B44+72+Sainte+Consorce,424,470,698361257,9726,0 +4694,034.,505,490,8788366,10201,0 +4695,0174,472,545,698971484,9140,0 +4696,F074,504,533,699189792,9676,0 +4697,.%3A009%3A.+Taktyka,517,415,8649412,9780,0 +4698,NOT,418,427,9236866,10042,0 +4699,KIELBA+068,470,579,699342219,10444,0 +4700,Cast+Away+012,450,483,698290577,5400,0 +4701,Joms+042,543,423,699756210,7209,0 +4702,96k%24+Grvvyq,553,551,699676005,10495,0 +4703,KONFA+TO+MARKA%2C+NARKA,428,461,698152377,10311,0 +4704,%5B0003%5D,450,396,8630972,10495,0 +4705,094+Barstow,480,457,1497168,9761,0 +4706,236+Denpasar,548,445,1497168,9994,0 +4707,093+Needles,474,460,1497168,9761,0 +4708,KONFA+TO+MARKA%2C+NARKA,430,484,698152377,10297,0 +4709,Szlachcic,468,419,698388578,10237,0 +4710,Szlachcic,555,473,698867446,9657,0 +4711,CALL+955,551,548,699784536,10311,0 +4712,Warsztat,552,442,849002091,7060,7 +4713,%2A002+Wyspy+owcze,385,541,699425709,9873,0 +4714,Szlachcic+047,569,530,758104,9338,0 +4715,ADEN,526,381,698588535,9737,0 +4716,%2B44+83+Escalles,435,483,698361257,10088,0 +4717,Szlachcic+006,565,529,758104,9338,1 +4718,Wioska+barbarzy%C5%84ska,500,418,699658023,9647,0 +4719,KIELBA+036,447,571,699342219,10495,0 +4720,Bilgewater,444,525,698971484,10008,0 +4721,%7C027%7C,553,567,873575,9913,0 +4722,Kentin+ufam+Tobie,431,400,699783765,11130,0 +4723,F072,508,538,699189792,10050,0 +4724,Winter+is+coming,504,581,699364813,9891,0 +4725,3+ESIOK+f,537,463,8155296,10239,0 +4726,ladyanima,516,566,699703642,9201,0 +4727,Lord+Arsey+KING,527,492,848956513,10285,0 +4728,A021,496,410,699299123,10495,0 +4729,017.+A-RE-SE-EY,573,536,848967710,10252,0 +4730,Metamorfoza,508,519,699785935,10030,0 +4731,F024,493,532,699189792,9750,0 +4732,Szlachcic,577,486,699759128,10237,0 +4733,P.011,538,563,873575,10273,0 +4734,C040,534,456,699299123,10081,0 +4735,%21+Wioska+barbarzy%C5%84ska,539,460,477415,9318,0 +4736,NOT%3F,431,519,9236866,10042,0 +4737,Wioska+barbarzy%C5%84ska,461,433,9291984,8504,0 +4738,Village,499,586,849094067,8211,0 +4739,0017,529,514,699432672,10495,0 +4740,P+Konfederacja,460,451,848915730,9508,0 +4741,065+%7C,560,567,8000875,9891,0 +4742,Pf+Konfederacja,491,504,848915730,9641,3 +4744,0185,474,544,698971484,9282,0 +4745,0.Savannah,519,581,698215322,9970,0 +4746,Mzm43,569,522,7142659,9924,0 +4747,%230109+Powodzenia,502,526,9272054,8171,0 +4748,Suppi,439,453,699856962,9556,0 +4749,Gattacka,594,493,699298370,9364,0 +4750,096+Malta,569,470,7092442,10495,0 +4751,0117,457,389,699431255,10495,0 +4752,188+Lima,468,458,1497168,10016,0 +4753,0079,462,465,848913037,6742,0 +4754,014+Violet+City,563,457,699441366,11109,0 +4755,Dum+Spiro+Spero,493,558,848896948,9979,0 +4756,Piek%C5%82o+to+inni,518,484,848956765,10019,0 +4757,7.62+mm,492,427,699777234,10019,0 +4758,Belegost,502,514,849091897,8730,0 +4759,Piek%C5%82o+to+inni,521,423,848956765,10160,5 +4760,009+Nie+wymi%C4%99k%C5%82em,602,479,699272633,10478,0 +4761,KIELBA+031,455,578,699342219,10495,0 +4762,%23060,518,588,849001572,9711,0 +4763,%5B151%5D+North,573,465,848985692,10052,0 +4764,KIELBA+098,465,580,699342219,10495,0 +4765,%3A%29.,542,475,698867483,10019,0 +4766,CALL+995,543,543,699784536,10311,0 +4767,Sparta_33,481,579,2585846,9638,0 +4768,Lord+Arsey+KING,516,525,848956513,10285,0 +4769,%2AINTERTWINED%2A,460,560,698704189,8056,0 +4770,COUS%2C%2C,498,578,8369778,6602,0 +4771,%C5%9Amieszkiii,485,588,3454753,9203,0 +4772,Os+Konfederacja,474,445,848915730,10068,0 +4773,066,550,430,699761749,6401,0 +4774,%7C041%7C,549,570,873575,9870,0 +4775,Suppi,444,526,699856962,9550,0 +4776,198,547,429,849064752,5351,0 +4777,Szlachcic,494,465,699098531,9687,0 +4778,004,521,517,8191129,9708,0 +4779,Mniejsze+z%C5%82o+0051,418,508,699794765,7936,0 +4780,020+%7C,553,552,8000875,10141,0 +4781,008,512,546,848915531,10192,0 +4783,Lord+Arsey+KING,525,496,848956513,10285,0 +4784,G%C5%82ucha+noc,506,520,699785935,10495,0 +4785,157+Belmopan,455,460,1497168,9761,0 +4786,Osada,497,450,699098531,9968,0 +4787,Suppi,442,455,699856962,8470,0 +4788,Piek%C5%82o+to+inni,513,426,848956765,10160,0 +4789,Oleander,438,559,699443920,4845,0 +4790,NOT%3F,432,523,9236866,10042,0 +4791,sas,531,551,7581876,7963,0 +4792,017,516,531,848915531,9192,0 +4794,Butla,582,503,9225795,6136,0 +4795,%23027,477,619,699605333,10393,0 +4796,%2B44+73+Verton,431,477,698361257,9799,0 +4797,Stage+group+B5,438,549,699170684,3547,0 +4798,ADEN,559,433,698588535,9890,0 +4799,023,481,582,699364813,10362,0 +4800,Odda%C5%82+wiosk%C4%99%2C+ma+gest%21,503,506,699785935,9835,0 +4801,032.+Antlia,489,579,699703642,9761,0 +4802,-x1,490,496,848967710,11307,6 +4803,F027,492,535,699189792,9628,0 +4804,Gattacka,583,518,699298370,10367,0 +4805,169+Natal,478,477,1497168,9825,0 +4806,WioskaB,511,584,8369778,10130,0 +4807,Wioska+Barbarzy%C5%84ska,548,492,698867483,10019,0 +4808,Kasyno,439,513,7249451,10301,0 +4809,009743,466,441,3909522,7021,0 +4810,Ogr%C3%B3d+Warzywny,458,564,7249451,5606,0 +4811,Os+Konfederacja,472,440,848915730,9304,0 +4812,7.62+mm,471,438,699777234,10019,0 +4813,053+Czarnog%C3%B3ra,580,458,7092442,9995,0 +4814,ADEN,561,439,698588535,6215,0 +4815,Wioska+433,570,524,477415,10495,0 +4816,NOT%3F,434,532,9236866,5871,0 +4817,NOT%3F,413,505,9236866,10042,0 +4818,yogi,537,537,2808172,10393,0 +4819,KONFA+TO+MARKA%2C+NARKA,445,454,698152377,10432,0 +4820,012.+A-RE-SE-EY,578,534,848967710,10252,0 +4821,BoBa,490,470,699098531,9596,0 +4822,Village,519,578,849094067,12154,0 +4823,Bruksela,424,455,699660539,9976,0 +4824,Szlachcic+025,556,537,758104,9338,0 +4825,009,468,573,848886870,10387,0 +4826,10018,537,554,848915531,9609,0 +4827,.achim.,535,441,6936607,8197,0 +4828,Otimek,433,556,699443920,2847,0 +4829,Carsultyal.,486,551,698704189,9711,0 +4830,CHW%23056t,451,553,698971484,1285,0 +4831,0091,454,437,3909522,10083,0 +4832,7.62+mm,466,450,699777234,8465,0 +4833,Joms+022,529,415,699756210,10365,0 +4834,Szlachcic,570,495,698867446,9778,0 +4835,yogi,486,530,2808172,9983,7 +4836,BETI+001,462,577,8539216,2009,0 +4837,7.62+mm,497,445,699777234,10019,0 +4838,Wioska+Matii,556,494,699432672,3845,0 +4839,Village,492,579,849094067,8888,0 +4840,Szlachcic,578,483,699759128,10237,0 +4841,%5B076%5D,562,567,8000875,9880,0 +4842,Wioska+tomaszek74,433,502,698971484,10008,0 +4843,JaamMwG+014,521,522,848987051,9225,0 +4844,012,546,529,699194766,9789,0 +4845,Szlachcic,542,516,698867446,3947,0 +4846,Gratuluje+m%C3%B3zgu,452,539,699698253,10252,0 +4847,Tesa+8,533,475,698845189,10019,0 +4848,Cast+Away+020,443,486,698290577,4077,0 +4849,Wioska+%28032%29,572,507,698232227,9814,0 +4850,.042.,502,382,698489071,10426,0 +4851,Natii,435,457,699660539,8767,0 +4852,Dum+Spiro+Spero,496,552,848896948,8923,0 +4853,Wioska+barbarzy%C5%84ska,564,435,699368887,6931,0 +4854,176,575,417,849064752,10311,0 +4855,Szlachcic+017,570,520,758104,8024,0 +4856,Zasiedmiog%C3%B3rogr%C3%B3d,530,431,699433558,10375,0 +4857,%7E%7ELataj%C4%85cyHolender%7E%7E,582,506,9174887,10149,0 +4858,KIELBA+125,450,564,699342219,7135,0 +4859,0040+K54+and987+OZDR.,496,563,3613413,9841,0 +4860,Jaaa,574,542,698635863,10481,0 +4861,006,557,615,699567608,10341,0 +4862,Jaaa,584,533,698635863,10487,0 +4863,Zasiedmiog%C3%B3rogr%C3%B3d,517,435,699433558,10495,9 +4864,Wioska,388,503,849084005,10178,0 +4865,Lord+Arsey+KING,517,522,848956513,10285,0 +4866,.%3A049%3A.Chillout,513,442,848934935,4064,0 +4867,0.San+Antonio,520,587,698215322,9951,0 +4868,...Just+like+that,461,487,699723284,4467,0 +4869,%230125+Koperta,492,521,9272054,9346,0 +4870,Wioska+browar150,407,567,9167250,6896,0 +4871,%2AINTERTWINED%2A,478,543,698704189,9711,0 +4872,Os+Konfederacja,478,439,848915730,9836,0 +4873,BBB,556,440,1006847,7779,0 +4874,0231,469,545,698659980,10083,0 +4875,Wioska+Barbarzy%C5%84ska,553,476,698867483,9188,0 +4876,Wioska+416,572,508,477415,10495,0 +4877,Szlachcic+013,572,535,758104,9338,0 +4878,Wioska+barbarzy%C5%84ska,455,546,699698253,3090,0 +4879,004+West+Palm+Beach,442,470,1497168,9761,6 +4880,Szlachcic+031,558,528,758104,9338,0 +4881,Winter+is+coming,439,538,699856962,8189,0 +4882,3+cmokn%C4%85%C4%87,536,475,6923061,7755,0 +4883,Wioska+barbarzy%C5%84ska,441,437,9291984,10821,0 +4884,ADEN,562,436,698588535,8437,0 +4885,%C5%9Amieszkiii,498,565,3454753,9130,0 +4886,Gravity,410,456,698962117,9515,0 +4887,A005,488,418,699299123,10495,0 +4888,Szlachcic,463,417,698388578,10237,0 +4889,%5BA%5D_%5B044%5D+Dejv.oldplyr,410,475,699380607,10444,0 +4890,A18,551,448,699368887,9014,0 +4891,024,614,473,8459255,10336,0 +4892,NOT%3F,434,518,9236866,10042,0 +4893,Jaaa,583,531,698635863,10400,0 +4894,%23Dragonite,578,454,699795378,10147,0 +4895,x11,552,471,8459255,10267,0 +4896,.Selonari,472,562,698704189,8639,2 +4897,0084,446,442,3909522,7046,0 +4898,Zajazd,504,420,699658023,6714,0 +4899,Winter+is+coming,505,580,699364813,10117,0 +4900,058+%7C,551,502,8000875,10336,0 +4901,keepo,484,532,848967710,10085,0 +4902,IQ149,552,453,699368887,6824,0 +4903,KONFA+TO+MARKA%2C+NARKA,428,459,698152377,10528,0 +4904,%5B121%5D,542,503,8000875,9809,0 +4905,%2AINTERTWINED%2A,460,565,698704189,8360,0 +4906,KONFA+TO+MARKA%2C+NARKA,429,484,698152377,10306,0 +4907,.achim.,520,401,6936607,10311,0 +4908,CALL+939,554,557,699784536,10311,0 +4910,%2B44+73+Irigny,433,472,698361257,9849,0 +4911,CALL+1048,520,568,699784536,10311,0 +4912,NOT%3F,433,522,9236866,10042,0 +4913,Lord+Arsey+KING,571,588,848956513,10285,0 +4914,FALAS+a,529,468,8155296,9666,0 +4915,Chill+gaming,583,504,698312347,3064,0 +4916,Wioska+barbarzy%C5%84ska,435,504,698971484,10008,0 +4917,028.+ALFI,476,568,8539216,1586,0 +4918,022,532,429,699788305,8746,0 +4919,020,531,499,8191129,9976,0 +4920,%7E066.,479,556,7139820,7494,0 +4921,PRO8L3M,434,486,7491093,9437,0 +4922,Szlachcic,498,482,699098531,9885,5 +4923,0596,475,542,698971484,9938,0 +4924,Gratuluje+m%C3%B3zgu,449,538,699698253,1932,0 +4925,Darma,423,402,356642,9835,0 +4926,x+Wioska+wsch%C3%B3d,438,502,698290577,8603,0 +4927,Pf+Konfederacja,493,490,848915730,9955,0 +4928,006,558,483,849070464,8976,4 +4929,yogi,538,550,2808172,10160,0 +4930,%5B065%5D+KSi,533,515,848985692,9994,0 +4931,055+Czechy,586,476,7092442,10252,0 +4932,Zimbabwe1,439,530,699856962,9011,0 +4933,%7E047.,487,552,7139820,10495,0 +4934,Nogrod,502,512,849091897,8299,0 +4935,Wioska+403,562,516,477415,10495,0 +4936,0137,456,613,698659980,10252,0 +4939,MasteroN+11,566,454,699379895,10252,0 +4940,.achim.,541,392,6936607,10311,0 +4941,ChceszPokojuSzykujSi%C4%99DoWojny,454,508,699333701,9828,0 +4943,Szlachcic,576,513,698867446,9852,0 +4944,005+nowoczesnenagrobki.eu,566,471,849031818,7749,0 +4945,Piek%C5%82o+to+inni,515,480,848956765,9761,0 +4946,03%2Aawangarda,549,528,699664910,9893,0 +4947,KARTAGINA+..9,461,572,8438707,8403,0 +4948,A007,489,420,699299123,10495,0 +4949,016.+Czart,510,561,699703642,9825,0 +4950,%230013+Retrospekcja,490,551,9272054,10005,0 +4951,B045,481,468,699299123,10495,0 +4952,Dum+Spiro+Spero,494,553,848896948,9995,0 +4953,Ogr%C3%B3d+Warzywny,448,561,7249451,6808,0 +4954,Fajna+066,450,563,699868002,6935,0 +4955,%2AINTERTWINED%2A%2A,528,564,698704189,9711,0 +4956,P+Konfederacja,460,445,848915730,9333,0 +4957,Noc,546,387,3600737,9013,0 +4958,001,471,509,699781762,10495,6 +4959,077.+%7CXD%7C,496,516,848967710,10252,0 +4960,Szlachcic,507,477,699098531,9623,0 +4961,Os+Konfederacja,482,453,848915730,10319,0 +4962,Wioska+barbarzy%C5%84ska,506,530,7581876,8579,0 +4963,%3F%2B44+95+Verlincthun,455,490,698361257,9846,0 +4964,Szlachcic+020,551,521,758104,8024,0 +4965,-x8,497,498,848967710,10252,0 +4966,10016,522,568,848915531,7662,0 +4967,0071,454,441,3909522,10290,0 +4968,074+San+Antonio,460,458,1497168,9761,5 +4969,Wioska+rufusix,546,474,699368887,10252,0 +4970,Wioska+barbarzy%C5%84ska,462,431,9291984,10048,0 +4971,010+Binghamton,438,466,1497168,9761,0 +4972,041.+Camelopardalis,512,580,699703642,9761,8 +4973,x+00022,551,464,3909522,7030,0 +4974,yogi,519,536,2808172,10019,0 +4975,Village,517,581,849094067,12154,0 +4976,Szcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,585,459,699368887,10245,0 +4977,xxx,499,485,699098531,9835,0 +4978,Suppi,428,452,699856962,9825,7 +4979,Suppi,443,453,699856962,9556,0 +4980,092,541,499,699351301,10106,0 +4981,S181+P%C4%99dz%C4%99+Sobie+Samogon,499,612,606407,10311,0 +4982,-%5B028%5D-+Namcze+Barwa,550,487,849092827,7638,0 +4983,063,442,499,699510259,9761,0 +4984,029.+A-RE-SE-EY,576,532,848967710,10252,0 +4985,084.,584,477,849094609,10225,8 +4986,Pf+Konfederacja,488,500,848915730,10068,0 +4987,Ogr%C3%B3d+Warzywny,449,561,7249451,9042,0 +4988,Wioska+407,559,518,477415,10495,0 +4989,Bounce,508,521,699785935,10495,0 +4990,NOT%3F,457,550,9236866,2760,0 +4991,072.+ALFI,465,574,8539216,1401,0 +4993,133+Tijuana,468,481,1497168,9771,0 +4994,Monetki,482,417,699098531,10295,0 +4995,Pf+Konfederacja,493,491,848915730,11164,6 +4996,014,468,576,848886870,10252,0 +4997,022.,580,523,6520732,7951,0 +4998,xxxx,492,429,698239813,10365,0 +4999,Lord+Arsey+KING,501,467,848956513,10285,0 +5000,SsSs,466,499,1536625,7967,0 +5001,7.62+mm,472,432,699777234,10019,0 +5002,Os+Konfederacja,475,445,848915730,10001,0 +5004,Wioska+barbarzy%C5%84ska,537,492,848967710,10252,0 +5005,025.+Wioska+Mozzie,560,504,8788366,10252,6 +5006,9.5+Moje,544,438,8444356,9968,0 +5007,GPS,540,535,699785935,9126,0 +5008,Piek%C5%82o+to+inni,513,487,848956765,10237,0 +5009,F029,486,540,699189792,9639,0 +5010,Fajna+076,456,564,8539216,5909,0 +5011,P+Konfederacja+8,460,448,848915730,9654,0 +5012,.%3A078%3A.+Takmahal,527,445,848934935,7624,0 +5013,xxx,517,452,698239813,10495,0 +5014,Wioska+11,524,496,699385139,10657,0 +5015,Lord+Arsey+KING,521,502,848956513,10285,0 +5016,Os+Konfederacja+%2B,469,448,848915730,9646,0 +5017,048,422,526,699851427,10129,0 +5018,Winter+is+coming,506,575,699364813,10311,0 +5019,NOT%3F,427,544,9236866,9177,0 +5020,11%2A,566,543,699664910,9457,0 +5021,009990,469,433,3909522,8459,0 +5022,Brat447,444,497,699262350,9143,0 +5023,%7E064.,489,531,7139820,9875,0 +5024,EXA,585,517,848967710,8396,0 +5025,A056,501,432,699299123,10495,0 +5026,szlachcic,439,540,698971484,6287,0 +5027,200,548,431,849064752,6086,0 +5028,004+Fiona,447,504,698290577,7997,0 +5029,Suppi,427,453,699856962,9691,0 +5030,NOT%3F,413,515,9236866,10042,0 +5031,079.,577,515,8788366,10252,0 +5032,NOT%3F,433,518,9236866,9712,0 +5033,0001+sztart,505,503,698599365,10019,0 +5034,%5B051%5D+Beta,545,488,848985692,10290,0 +5035,Os+Konfederacja+8,480,441,848915730,9824,0 +5036,Szlachcic+022,554,526,758104,8024,0 +5037,Osada+koczownik%C3%B3w,454,543,699698253,2731,1 +5038,NOT%3F,425,539,9236866,5264,0 +5039,-%5B026%5D-+Kanjut+Sar,551,485,849092827,7101,0 +5040,%5B106%5D+North6,574,484,848985692,10054,0 +5041,056.+ALFI,472,559,8539216,1941,0 +5042,%C5%9Amieszkii,520,560,3454753,8086,0 +5043,Piek%C5%82o+to+inni,512,484,848956765,9342,0 +5044,Kasyno,448,513,7249451,7511,0 +5045,Ogr%C3%B3d+Warzywny,449,562,7249451,10495,4 +5046,R%C4%99cznik+do+zmiany,395,439,699697558,10362,0 +5047,00952+meheheheqqqqqqqqqqqqqqqqqq,459,437,3909522,10152,0 +5048,Szlachcic+023,555,526,758104,9111,0 +5049,057.,523,558,699695167,10452,0 +5050,%2AINTERTWINED%2A%2A,462,561,698704189,9570,0 +5051,Szlachcic,572,491,699759128,10237,6 +5052,bazan,566,536,7038651,9663,0 +5053,B047,483,467,699299123,9711,0 +5054,...Just+like+that,454,505,699723284,10452,0 +5055,004+Cerulean+City,591,496,699441366,11109,0 +5056,Front_11,459,524,2585846,2977,0 +5057,0063+b5,450,433,3909522,10220,0 +5059,Wioska+Matyyy,549,497,848967710,6658,0 +5060,Gratuluje+m%C3%B3zgu,443,539,698971484,9670,0 +5061,Lord+Arsey+KING,519,525,848956513,10285,0 +5062,%2B44+74+Armbout+Cappel,448,476,698361257,9855,0 +5063,003,469,496,699781762,12154,0 +5064,BETI+003,460,566,8539216,1698,0 +5065,Wioska+Barbarzy%C5%84ska,553,478,698867483,9439,0 +5066,B032,490,452,699299123,10495,0 +5067,Pf+Konfederacja,492,495,848915730,9639,0 +5068,017,556,501,849070464,7725,0 +5069,.%3A036%3A.+Curry,507,438,8649412,8669,0 +5070,029,429,516,699851427,10129,0 +5071,Warzywniak+001,446,544,698290577,5462,0 +5072,024+%7C,560,552,8000875,10141,0 +5073,Wioska+barbarzy%C5%84ska,535,510,848967710,10252,0 +5074,%2A001%2A,613,502,698670524,9359,0 +5075,%3F%3F%3F,482,546,698704189,9711,0 +5076,DOL+GULDUR,543,472,8155296,9879,0 +5077,%C5%9Bnieg,494,500,848967710,10393,0 +5078,%5B218%5D,557,518,8000875,2482,0 +5079,NOT%3F,434,541,9236866,9711,0 +5080,%28003%29,428,539,9236866,9880,0 +5081,Wioska+ciniol97,508,602,699698253,9806,0 +5082,%7E%7ELataj%C4%85cyHolender%7E%7E,584,503,9174887,9547,0 +5083,096+Bisbee,478,460,1497168,9761,0 +5084,NOT%3F,427,523,9236866,10042,0 +5086,Lord+Arsey+KING,580,588,848956513,8610,0 +5087,ChceszPokojuSzykujSi%C4%99DoWojny,457,513,699333701,6513,0 +5088,%C5%9Amieszkiii,487,586,3454753,8254,0 +5089,Cast+Away+007,449,487,698290577,10138,0 +5090,kto+ananasowy+pod+wod%C4%85+ma+dom,573,510,699628084,9797,0 +5091,217+Sydney,529,441,1497168,9761,3 +5092,073,585,468,699573053,10495,0 +5093,kto+ananasowy+pod+wod%C4%85+ma+dom,573,511,699628084,9797,0 +5094,0BrunO,470,502,699781762,8388,0 +5095,PRO8L3M,451,493,7491093,10311,0 +5096,Merhet,520,579,698215322,6745,0 +5097,128+La+Paz,464,475,1497168,9761,0 +5098,%7E021.,489,567,7139820,10495,1 +5099,Weso%C5%82ych+%C5%9Awi%C4%85t,563,456,699368887,11653,0 +5100,027,467,523,2585846,3742,0 +5101,06+Polska,584,483,8925695,10426,0 +5102,031,455,438,9291984,10348,0 +5103,Horyzont+zdarze%C5%84,532,546,7581876,9835,0 +5104,Erebor,505,386,699368887,10237,0 +5105,Szlachcic+032,562,524,758104,9338,0 +5106,052,532,576,699189792,10160,1 +5107,010,466,435,9291984,10481,0 +5108,%21Wioska+421,552,507,477415,10636,0 +5109,%2B44+61+Looberghe,417,469,698361257,9797,0 +5110,Szlachcic,494,469,699098531,9696,0 +5111,%7E%7ELataj%C4%85cyHolender%7E%7E,582,496,9174887,10141,0 +5112,-+038+-,535,582,849018239,10000,0 +5113,Fajna+074,456,556,3613413,8397,0 +5114,%2AFront_27,453,527,2585846,9638,0 +5115,Butem+w+Morgen,489,511,848967710,10416,0 +5116,Gattacka,578,520,699298370,10268,0 +5117,Butem+w+Morgen,554,549,848967710,10495,0 +5118,A041,507,429,699299123,10495,0 +5119,Carsultyal.,484,556,698704189,9711,0 +5120,Wioska+Mati%C5%B9%C5%BA%C5%BA,554,494,699432672,4359,0 +5121,W007,446,497,698290577,9220,0 +5122,NOT%3F,413,504,9236866,10042,0 +5123,Wioska+barbarzy%C5%84ska,511,434,699658023,9650,0 +5124,0004+kolejowo,503,500,698599365,10019,0 +5125,NOT%21,465,540,9236866,10042,0 +5126,JF5,553,457,699368887,5564,0 +5127,002,524,510,8191129,9044,0 +5128,NOT%3F,411,508,9236866,10042,0 +5129,062+Francja,573,455,7092442,10495,8 +5130,xxxx,505,427,698239813,10495,0 +5131,JF3,555,458,699368887,6189,0 +5133,Mzm45,573,514,7142659,10426,0 +5134,024,566,547,699316421,9744,7 +5135,-xx12,491,497,848967710,10393,0 +5136,%C5%9Amieszkii,516,565,3454753,9046,0 +5137,Szlachcic,510,458,699098531,9617,0 +5138,Jaaa,579,539,698635863,10475,0 +5139,Szlachcic,493,476,699098531,10063,0 +5140,%7C009%7C,552,571,873575,10178,0 +5141,Jaaa,585,557,698635863,10495,0 +5142,-043-,470,428,9291984,10348,0 +5143,0094,457,437,3909522,10220,0 +5144,Mzm22.,561,528,7142659,10362,0 +5145,x15,427,451,698884287,10285,0 +5146,B050,475,465,699299123,9410,0 +5147,Przypa%C5%82,560,460,699368887,9016,0 +5148,Jaaa,580,541,698635863,10397,0 +5149,F023,491,532,699189792,9861,0 +5151,MojeSzczytToTw%C3%B3jDno,513,377,828637,10495,0 +5152,Wioska+Barbarzy%C5%84ska,543,477,698867483,10019,0 +5153,Lord+Arsey+KING,516,524,848956513,10285,0 +5154,%5B111%5D+North111,577,474,848985692,10068,0 +5155,003,505,478,698881022,7254,0 +5156,NOT%3F,432,538,9236866,8812,0 +5157,A07,552,449,699368887,9994,0 +5158,DOM+2,563,401,849064614,9555,0 +5159,.%3A071%3A.+Chillout,513,421,848934935,3573,0 +5160,Wioska+Barbarzy%C5%84ska,556,476,698867483,10019,0 +5161,%230108+Ma%C5%82aszewicze,472,556,9272054,9251,0 +5162,Belvedere+002,577,411,699756210,10290,0 +5163,-+035+-,535,576,849018239,10000,0 +5164,Ateny_57,473,531,2585846,8865,0 +5165,Jetlag%21,498,508,699785935,9835,0 +5166,KIELBA+076,475,579,699342219,10217,0 +5167,%2B44+74+Conchil+le+Temple,446,474,698361257,9715,0 +5168,Pf+Konfederacja,484,489,848915730,9516,0 +5169,W.181%2F24,613,520,2999957,10242,0 +5170,020.+Kompania+Braci,540,452,8155296,9249,0 +5171,%5B007%5D+Patyon+ka,603,522,848985692,10068,0 +5172,Taran,582,463,699759128,10237,0 +5173,025,543,463,849031818,9756,0 +5174,047,427,491,699510259,9747,0 +5175,070,563,400,849064752,10311,0 +5176,KONFA+TO+MARKA%2C+NARKA,438,469,698152377,10292,0 +5177,%230032+Suwalki,483,556,9272054,10000,0 +5178,012,529,433,699788305,8622,0 +5179,015,572,408,849064752,10311,0 +5180,B009,552,498,8138506,10019,0 +5181,COUSINS...%2C%2C%2C%2C...,485,587,7976264,10051,0 +5182,014,460,531,2585846,2758,1 +5183,Joms+040,548,416,699756210,10273,0 +5184,Marienburg+6,527,478,699355601,3120,0 +5186,%7E051.,488,568,7139820,10495,0 +5187,.%3A075%3A.+Takmahal,526,443,848934935,10600,2 +5188,xxx,482,428,698239813,10495,0 +5189,%230073+Je%C5%BC,493,562,9272054,10019,0 +5190,NOT%3F,439,551,9236866,2298,0 +5191,Warzywniak+003,447,542,698290577,1356,0 +5192,008,573,493,849070464,8493,0 +5193,.%3A037%3A.+Og%C3%B3rki,512,415,8649412,9742,0 +5194,Wioska+tnt3nt,510,433,698895940,11321,0 +5195,JK4,559,450,699368887,6284,0 +5196,Os+Konfederacja+%2B,471,454,848915730,8845,0 +5197,MOTEL+5,566,401,849064614,9741,0 +5198,Suppi,433,448,699856962,9283,0 +5199,%23029,490,589,849001572,8785,0 +5200,%2B44+83+Lyon+Mermoz,438,481,698361257,9860,0 +5201,Wioska+barbarzy%C5%84ska,535,461,8155296,10947,0 +5202,Wioska+509,574,458,477415,10495,0 +5203,Wioska+%28030%29,568,524,698232227,9232,0 +5204,-10-,589,481,699347951,10164,0 +5205,Wioska+barbarzy%C5%84ska,456,535,699698253,2937,0 +5206,005+Jose2k15,393,552,699382126,10495,0 +5207,051+%7C,563,539,8000875,9976,0 +5208,K44+x017,452,426,698364331,10705,0 +5209,138+Tepic,467,483,1497168,9761,8 +5210,Brat447,418,521,699262350,10476,0 +5211,K44+x015.,459,425,698364331,10658,0 +5212,Suppi,441,522,699856962,9570,0 +5213,Pf+Konfederacja,495,495,848915730,10068,0 +5214,yogi,531,563,2808172,10019,0 +5215,NOT%3F,428,544,9236866,3490,0 +5216,NOT%3F,412,512,9236866,10042,0 +5218,016,583,537,8138506,10019,0 +5219,066+Irlandia,574,454,7092442,10495,0 +5220,Wioska+barbarzy%C5%84ska,623,489,699347951,5011,0 +5221,Lord+Arsey+KING,518,496,848956513,10285,0 +5222,7.62+mm,547,428,699777234,6586,0 +5223,Bucksbarzy%C5%84sKamiiiru,425,507,848955783,9170,0 +5224,%2AAteny_40,472,532,2585846,9682,0 +5225,-037-,458,422,9291984,10479,0 +5226,Szlachcic,504,465,699098531,9262,0 +5227,0075,501,522,699432672,10495,0 +5228,B034,489,453,699299123,10365,0 +5229,F058,492,516,699189792,9581,4 +5230,Piek%C5%82o+to+inni,528,439,848956765,10160,0 +5231,044,546,429,7271812,4618,0 +5234,088+Orzech+macadamia,544,465,7092442,10164,0 +5235,Wioska+barbarzy%C5%84ska,435,439,698884287,10285,0 +5236,C036,530,456,699299123,10252,0 +5237,NOT%3F,420,517,9236866,10042,0 +5238,9.3+Gitara,545,439,8444356,10471,0 +5239,%21Wioska+437,556,497,477415,12154,0 +5240,002+Oklahoma+City,442,478,1497168,9761,8 +5241,FilipV,447,525,698971484,10008,0 +5242,00632,442,430,3909522,9882,0 +5243,001,471,514,848967710,4944,5 +5244,2.+Rybnik,510,619,606407,10544,0 +5245,09+Valhalla,502,507,699861004,9462,0 +5246,%2B44+71+Cucq,418,471,698361257,9849,0 +5247,%2B44+72+Beutin,422,472,698361257,9669,0 +5249,074.,567,458,849094609,9944,0 +5250,067+Islandia,572,452,7092442,10495,0 +5251,082.,496,488,8788366,10252,0 +5252,043+Vasperland,602,513,8323711,10495,0 +5253,Horyzont+zdarze%C5%84,517,547,7581876,9835,0 +5254,.%3A015%3A.+Chillout,515,435,848934935,7309,0 +5255,.%3A082%3A.JuanPabloII,540,443,848934935,8720,0 +5256,Wioska+LoRd+BoNiO,570,498,699019249,1916,0 +5257,015.,524,545,699695167,9902,0 +5258,lady,500,589,699703642,10471,0 +5259,SS03,533,492,699744766,7262,0 +5260,Os+Konfederacja+8,481,439,848915730,9791,0 +5261,A0174,382,472,8841266,10252,0 +5262,%5B149%5D,552,540,8000875,9616,0 +5263,Lord+Arsey+KING,516,505,848956513,10285,0 +5264,015,477,520,7491093,9205,0 +5265,033.,504,490,8788366,10252,0 +5266,Ateny_80,471,524,2585846,5431,2 +5267,Bucksbarzy%C5%84sKamiiiru,436,514,848955783,10971,0 +5268,%2AINTERTWINED%2A,470,574,698704189,9520,0 +5269,%2AINTERTWINED%2A,469,572,698704189,9711,7 +5270,Monetki,481,419,699098531,10290,0 +5271,lady,498,575,699703642,8514,0 +5272,Piek%C5%82o+to+inni,520,473,848956765,9781,4 +5273,Wioska+barbarzy%C5%84ska,442,608,699859013,3212,0 +5274,037,585,472,699573053,10495,0 +5275,011,536,499,849031818,8186,0 +5276,%2B44+75+Tassin+Le+Bourg,455,477,698361257,9860,0 +5277,026+Lafayette,447,469,1497168,9761,0 +5278,Szlachcic,470,399,698388578,10237,0 +5279,120+s000,401,557,699382126,8326,0 +5280,Szlachcic+033,555,536,758104,9338,0 +5281,Szlachcic,582,490,699759128,10237,0 +5282,2+KR%C3%93LESTWO+f%3F,537,461,8155296,8147,0 +5283,KONFA+TO+MARKA%2C+NARKA,446,454,698152377,10311,0 +5284,x02,545,475,8459255,10139,0 +5285,014,560,491,849070464,8493,0 +5286,Monetki,475,413,699098531,10294,0 +5287,%5B150%5D+North,578,472,848985692,10052,0 +5288,Szlachcic,489,467,699098531,10292,0 +5289,0035+K54+and987+OZDR.,499,565,3613413,9845,0 +5290,%7B001%7D+Asta,538,385,698350371,10495,0 +5291,%28014%29,419,536,9236866,9562,0 +5292,Szlachcic+049,567,531,758104,8851,0 +5293,015,564,486,849070464,4371,0 +5294,%5B078%5D,525,539,8000875,10173,0 +5295,KONFA+TO+MARKA%2C+NARKA,443,469,698152377,10303,0 +5296,Piek%C5%82o+to+inni,525,438,848956765,10160,0 +5297,Joms+016,519,418,699756210,10030,0 +5298,028,420,518,699851427,10129,0 +5299,A050,501,428,699299123,10336,0 +5300,Monetki,473,418,699098531,10226,0 +5301,Fajna008,464,571,8539216,2025,0 +5302,So%C5%82tys+Wsi+Dejvvvvv,441,416,849027025,10237,0 +5303,Wioska+barbarzy%C5%84ska,583,500,8925695,5127,0 +5305,.%3A087%3A.JuanPabloII,541,443,848934935,6962,0 +5307,KONFA+TO+MARKA%2C+NARKA,426,464,698152377,10311,8 +5308,%230052+Traumon,488,557,9272054,10362,0 +5309,KIELBA+105,454,574,699342219,10218,0 +5311,%21Wioska+405,564,513,477415,10838,0 +5312,Knowhere,379,496,699723284,10452,0 +5313,Lord+Arsey+KING,517,523,848956513,10285,0 +5314,056+%7C,549,501,8000875,10311,0 +5315,%5BA%5D_%5B038%5D+Dejv.oldplyr,408,483,699380607,10495,0 +5316,Os+Konfederacja,475,444,848915730,10201,0 +5317,002.+Zwiadowcy,480,601,7976264,10106,0 +5318,C035,529,458,699299123,10971,0 +5319,Gratuluje+m%C3%B3zgu,451,538,699698253,5917,0 +5320,kek,537,516,848967710,10019,1 +5321,NOT%3F,429,544,9236866,6425,0 +5322,%2AINTERTWINED%2A,488,545,698704189,9038,0 +5323,JaamMwG+030,523,514,848987051,9745,0 +5324,Wioska+kinia+20,540,483,699127546,4925,0 +5325,00621+Wioska,442,436,3909522,7366,0 +5326,.%3A003%3A.+Chillout,513,406,848934935,8597,0 +5327,Osada,494,443,699098531,10295,0 +5328,ChceszPokojuSzykujSi%C4%99DoWojny,454,509,699333701,10237,0 +5329,Szlachcic+018,553,526,758104,9338,0 +5330,002.+BAKAJOKO,611,541,8900955,6736,0 +5331,%7E%7ELataj%C4%85cyHolender%7E%7E,548,468,9174887,8396,0 +5332,.achim.,538,422,6936607,10311,0 +5333,019,532,465,8155296,8664,0 +5334,Ogr%C3%B3d+Warzywny,445,562,7249451,9522,0 +5335,Kasyno,447,517,7249451,10122,0 +5336,Front_36,457,522,2585846,2221,0 +5337,Ogr%C3%B3d+Warzywny,450,560,7249451,10452,0 +5338,Wioska+barbarzy%C5%84ska,464,435,9291984,10159,0 +5339,.achim.,531,455,6936607,7914,0 +5340,Suppi,425,449,699856962,9553,0 +5341,ADEN,563,443,698588535,10090,0 +5342,Czujno%C5%9B%C4%87+to+podstawa,593,434,848985692,10042,0 +5343,046.,504,487,8788366,9813,0 +5344,HELMOWY+RAJ,533,470,8155296,10569,0 +5345,024,415,523,699851427,10042,0 +5346,124,548,386,849064752,10311,0 +5347,PRO8L3M,453,504,7491093,10495,0 +5348,NOT%3F,424,520,9236866,10042,5 +5349,.achim.,525,404,6936607,10311,0 +5350,Lord+Arsey+KING,518,495,848956513,10285,0 +5351,Wioska+barbarzy%C5%84ska,435,586,849028088,10223,0 +5352,MasteroN+06,568,445,699379895,10135,0 +5353,Gryfios+002,615,538,698666810,10495,0 +5354,0025,530,516,699432672,10495,0 +5355,003.+Novigrad,562,397,699799629,10495,0 +5356,Szlachcic,567,492,699759128,10237,0 +5357,Kasyno,442,503,7249451,6843,0 +5358,NOT%3F,425,544,9236866,9921,0 +5359,%2AAteny_26,474,522,2585846,9473,0 +5360,Piek%C5%82o+to+inni,516,476,848956765,9717,0 +5361,-%5B007%5D-+Dhaulagiri,553,481,849092827,8063,0 +5362,NOT%3F,431,541,9236866,9029,0 +5363,PRO8L3M,432,493,7491093,2457,0 +5364,Bucksbarzy%C5%84sKamiiiru,427,503,848955783,9040,0 +5365,Piek%C5%82o+to+inni,517,476,848956765,9487,5 +5366,001,558,539,699194766,10019,0 +5367,185+Baranquilla,468,466,1497168,9771,0 +5368,xwqe,455,574,8438707,1886,0 +5369,Osada,503,443,699098531,10294,7 +5370,Szlachcic+034,561,532,758104,8024,0 +5371,0013+MzM,567,461,698416970,7642,0 +5372,Sparta_63,494,597,2585846,8174,0 +5373,7.62+mm,486,434,699777234,10019,0 +5374,Piek%C5%82o+to+inni,517,420,848956765,10160,0 +5375,Jaaa,580,542,698635863,10476,0 +5376,Suppi,444,447,699856962,9562,0 +5377,FAKE+OR+OFF,438,401,698231772,9816,0 +5378,00951,458,439,3909522,6520,0 +5379,032,565,393,699761749,10495,0 +5380,Z01+Galicznik,561,515,699272880,10426,0 +5381,Monetki,479,432,699098531,10303,0 +5382,JM1,559,453,699368887,7064,0 +5383,Wioska+BontaBom,556,431,1957280,4166,0 +5384,%5B075%5D+Vermoord+jou,529,501,848985692,10395,0 +5385,%2B44+72+Wacquinghen,426,476,698361257,9860,0 +5386,002,623,493,849091105,10160,0 +5387,.%3A038%3A.+Studnia,512,414,8649412,9546,0 +5388,2%2B2x2,509,432,698895940,10446,0 +5389,xxx,522,465,698239813,10971,0 +5390,F049,489,518,699189792,9047,0 +5391,0018%7CBerlin,511,445,699098531,9637,0 +5392,7.62+mm,498,427,699777234,10019,0 +5393,Zasiedmiog%C3%B3rogr%C3%B3d,541,422,699433558,6846,0 +5394,.achim.,523,452,6936607,6302,0 +5395,Suppi,444,454,699856962,9565,0 +5396,Piek%C5%82o+to+inni,516,452,848956765,10160,0 +5397,0063+b12,454,430,3909522,5986,0 +5398,Wioska+iver1,515,596,699698253,6875,0 +5399,014,569,554,699316421,9744,0 +5400,001+Viborg,599,557,699272880,10238,0 +5401,NOT%3F,433,552,9236866,2926,0 +5402,010+Fiona,447,509,698290577,9443,8 +5403,Village,516,577,849094067,12154,0 +5404,Szlachcic,490,475,699098531,9968,0 +5405,003,405,543,699425709,9873,0 +5406,Warzywniak+015,453,547,698290577,2538,0 +5407,013+Kuasta,614,481,8337151,9918,0 +5408,0001,466,604,33900,10010,0 +5409,Joms+036,532,424,699756210,8393,0 +5410,Pf+Konfederacja,486,486,848915730,9938,8 +5411,%7E%7ELataj%C4%85cyHolender%7E%7E,552,523,9174887,10160,0 +5412,00761,449,439,3909522,8332,0 +5414,Szlachcic,575,493,699759128,10237,0 +5415,Osada,495,444,699098531,9899,0 +5416,Szlachcic,579,491,699759128,10237,0 +5417,Wioska+barbarzy%C5%84ska,432,503,698971484,10008,0 +5418,7.62+mm,505,444,699777234,10019,0 +5419,A0153,381,468,8841266,10252,0 +5420,%230063+DMT,496,562,9272054,10008,0 +5421,.%3A010%3A.+Chillout,502,414,848934935,7622,6 +5422,kathare,498,571,873575,10495,0 +5423,003.+ALFI,472,568,8539216,1323,0 +5424,Wioska+barbarzy%C5%84ska,451,532,3909522,1811,0 +5425,NOT%3F,427,532,9236866,8188,0 +5426,Suppi,426,448,699856962,9570,0 +5427,023.+Wioska+kaszak10,579,511,8788366,10252,0 +5428,Szlachcic+048,574,515,758104,8024,0 +5429,%2312.,519,465,848967710,10971,0 +5430,Brat447,452,498,699262350,10479,3 +5431,13+%7C+Rozbojowisko,537,435,849002091,8286,0 +5432,Front_32,453,519,2585846,6640,0 +5433,Jaaa,581,540,698635863,10476,0 +5434,KIELBA+104,452,569,699342219,10223,0 +5435,SsSs,464,502,1536625,7058,0 +5436,Wioska+barbarzy%C5%84ska,584,465,699573053,10425,0 +5438,P.033,544,559,873575,10346,0 +5439,Zeta+Reticuli+0S,417,420,699323302,10728,0 +5440,xxx,503,447,698239813,9455,0 +5441,0063+b16qqqqqqqqqqqqqqqqqqqq,454,431,3909522,10083,0 +5442,B061,473,465,699299123,10495,0 +5443,%230006+To%C5%BCsamo%C5%9B%C4%87,492,549,9272054,10019,0 +5444,NOT%3F,437,530,9236866,6022,0 +5445,183,562,437,849064752,9922,0 +5446,113.,531,485,8788366,6555,0 +5447,Horyzont+zdarze%C5%84,527,553,7581876,10019,0 +5448,NOT%3F,428,530,9236866,8649,0 +5449,Szlachcic,573,488,699759128,10237,0 +5450,keepo,480,534,848967710,10495,0 +5451,Fajna+021,450,551,699868002,1616,0 +5452,xxx,510,449,698239813,10495,0 +5453,Osada+koczownik%C3%B3w,492,534,7581876,8908,6 +5454,.achim.,540,462,6936607,8091,0 +5455,Szlachcic+%21%21%21,488,462,699098531,10292,0 +5456,%2B44+72+Villeurbanne+Cusset,429,472,698361257,9872,0 +5457,Strasznie+Mi%C5%82y+S%C4%85siad%21,549,442,556154,9735,0 +5458,Dioda+v2,539,520,8649412,9757,0 +5459,PRO8L3M,452,494,7491093,10311,0 +5460,Wioska+barbarzy%C5%84ska,570,452,699368887,9994,0 +5461,7.62+mm,495,439,699777234,10019,0 +5462,Nottingham,554,445,699368887,5169,0 +5463,Myk+i+do+kieszonki,385,513,9319058,9799,0 +5464,080.+ALFI,480,557,8539216,1864,0 +5466,F057,494,522,699189792,9399,0 +5467,016,568,483,849070464,4313,0 +5468,SsSs,438,503,1536625,10149,0 +5469,%23050,524,588,849001572,7354,0 +5470,ladyanima,513,577,699703642,9613,0 +5471,Szlachcic,557,492,698867446,10117,0 +5472,DARMA+TUTEK101MZMNIEUMIECZYTA%C4%86,585,495,8925695,7414,0 +5473,Wioska+001,491,594,7976264,9981,0 +5474,Monetki,474,429,699098531,10295,0 +5475,C+011+D.G%C3%B3rnicza,413,579,849084740,9920,0 +5476,Sparta_38,483,576,2585846,9638,0 +5477,%7E%7ELataj%C4%85cyHolender%7E%7E,557,507,9174887,9561,0 +5478,slow,534,488,848967710,10485,0 +5479,0082,444,443,3909522,10453,0 +5480,x09,558,476,8459255,10267,0 +5481,Monetki,479,423,699098531,10096,4 +5482,CALL+964,542,547,699784536,10311,0 +5483,Wioska+barbarzy%C5%84ska,569,516,699851345,9694,0 +5484,016.+Wioska+Ronin1995,568,515,8788366,10252,0 +5485,036.,490,622,699494488,10237,0 +5486,Joms+019,531,416,699756210,9775,0 +5487,%2AAteny_39,465,523,699333701,5121,0 +5488,Ko%C5%84czy%C4%87+czas%3A%29,550,445,699368887,9902,0 +5489,%2AINTERTWINED%2A,477,562,698704189,9711,0 +5490,Ondulina,444,556,699443920,8876,0 +5491,010.+Topielica,496,584,699703642,10237,0 +5492,073.+ALFI,488,561,8539216,1874,0 +5493,Wioska+Barbarzy%C5%84ska,545,476,698867483,9912,0 +5494,Kasyno,447,515,7249451,9994,0 +5495,Ogr%C3%B3d+Warzywny,462,558,7249451,11130,0 +5496,005,561,542,699194766,9655,1 +5497,%2306.,526,478,848967710,10252,0 +5498,%5B092%5D,560,541,8000875,9959,0 +5499,0181,474,547,698659980,8776,0 +5500,006+Plac+Wilsona,535,476,849083501,5701,0 +5501,7.62+mm,465,449,699777234,9649,0 +5502,Marienburg+9,532,479,699355601,8821,0 +5503,KIELBA+033,454,573,699342219,10495,0 +5504,Szlachcic,572,492,698867446,9721,0 +5505,%2AAteny_28,466,522,699333701,5270,0 +5506,112+Fuga,541,453,7092442,8972,0 +5507,R%C4%99cznik+do+zmiany,423,486,699697558,11691,0 +5508,...Just+like+that,468,477,699723284,10452,0 +5509,%5B005%5D+Hil+zaitez,586,522,848985692,10306,0 +5510,%5B027%5D+K+D,584,522,848985692,10013,0 +5511,Szlachcic,552,486,698867446,9657,0 +5512,0056,605,512,6510480,10952,0 +5513,Jaaa,569,539,698635863,10484,0 +5514,%2B44+72+Vaulx+en+Velin,428,472,698361257,9846,0 +5515,%5B054%5D+pa+ZZI+BEST+dude,541,486,848985692,10362,0 +5516,KONFA+TO+MARKA%2C+NARKA,449,456,698152377,10300,1 +5517,Brat447,460,507,699262350,5177,0 +5518,%5B025%5D+Wanuchiy+QAN,584,521,848985692,10060,0 +5519,0005,458,504,1536625,8142,9 +5520,Warzywniak+011,443,546,698290577,2576,0 +5521,ChceszPokojuSzykujSi%C4%99DoWojny,451,512,699333701,4618,0 +5522,Wioska+Matiyyy,557,494,699432672,3692,0 +5523,11%2Aszpica,560,527,699664910,7479,0 +5524,Piek%C5%82o+to+inni,524,473,848956765,10147,7 +5525,%C5%9Amieszkiii,498,589,3454753,8827,0 +5526,B042,485,467,699299123,10495,0 +5527,Stage+group+B+7,437,532,699856962,8994,0 +5528,20020,503,547,848915531,7021,0 +5529,056,545,421,7271812,7528,0 +5530,NOT%3F,433,527,9236866,10060,0 +5531,Szlachcic,584,510,699759128,9856,0 +5532,Brat447,439,494,699262350,10479,0 +5533,rakieta+019,618,537,848928486,7357,0 +5534,%7E%7ELataj%C4%85cyHolender%7E%7E,547,469,9174887,9179,0 +5535,0081,441,402,699431255,9835,0 +5536,Gattacka,574,498,699298370,9894,0 +5537,Szlachcic,468,420,698388578,10237,0 +5538,020.+A-RE-SE-EY,573,527,848967710,10252,0 +5539,%5B084%5D,541,494,848985692,10049,0 +5540,Brat447,439,492,699262350,8903,0 +5541,Suppi,433,451,699856962,9606,0 +5542,0059,508,515,699432672,10495,0 +5543,A061,504,424,699299123,10495,0 +5544,K55,527,529,698867483,10495,0 +5545,B055,478,470,699299123,10271,0 +5546,Myk+i+do+kieszonki,382,507,9319058,9799,0 +5547,007.,524,557,699695167,9793,0 +5548,14+%7C+%C5%9Al%C4%85sk,537,431,849002091,5141,0 +5549,Micha%C5%82,533,544,848967710,10495,0 +5550,%5B184%5D,549,506,848985692,8021,0 +5551,Wioska+barbarzy%C5%84ska,397,535,849030226,10484,0 +5552,0Wioska+barbarzy%C5%84ska,482,538,699781762,10495,0 +5553,xxx,498,433,698239813,10495,0 +5554,Winter+is+coming,507,583,699364813,9976,0 +5555,0006,536,532,699432672,10495,0 +5556,%7E058.,487,542,7139820,10495,0 +5557,017.+ALFI,477,566,8539216,1421,2 +5558,BBB,562,412,1006847,11228,0 +5559,NOT%3F,414,511,9236866,10042,0 +5560,%230025+Oskar,491,569,9272054,10083,0 +5561,Mzm42,566,520,7142659,10362,0 +5562,0008,505,500,698599365,9940,0 +5563,Leicester,549,440,849002091,4796,0 +5564,00702,451,441,3909522,10069,0 +5565,Wioska+510,579,459,477415,10495,0 +5566,7.62+mm,483,436,699777234,10019,0 +5567,Szlachcic+%21%21%21,485,472,699098531,9891,0 +5568,Wioska+barbarzy%C5%84ska,499,413,699658023,9644,0 +5569,K44+013,433,486,698290577,7594,0 +5570,%7E040.,481,550,7139820,10495,7 +5571,035+Atlanta,441,470,1497168,9761,0 +5572,Sparta_48,485,574,2585846,9638,0 +5573,090+Kazachstan,576,462,7092442,10495,0 +5574,Everest,542,535,699785935,9835,0 +5575,Szlachcic,587,481,699759128,10237,0 +5576,C017,524,462,699299123,8832,0 +5577,Szlachcic,494,462,699098531,9637,0 +5578,KONFA+TO+MARKA%2C+NARKA,431,461,698152377,10295,0 +5580,D05,547,464,8649412,7883,0 +5581,xxx,509,469,698239813,7171,0 +5582,0062+Wioska,443,436,3909522,10495,0 +5583,.achim.,516,485,6936607,9601,0 +5584,Knowhere,389,496,699723284,10064,0 +5585,Pf+Konfederacja,485,504,848915730,9621,0 +5586,Yogi,526,574,2808172,10019,0 +5587,Wioska+X,543,450,699368887,4245,0 +5588,Wioska+404,565,514,477415,10495,0 +5589,003,524,518,8191129,9664,0 +5590,Fajna+024,448,548,699868002,2549,0 +5591,CALL+1035,545,555,699784536,9792,0 +5592,002.+Wioska+Exano,553,514,8788366,10252,0 +5593,CALL+973,544,571,699784536,10429,0 +5594,NOT+FOR+YOU,459,553,9236866,8307,2 +5595,ZBIE,598,574,17714,10222,0 +5596,016+Orlando,443,471,1497168,9761,5 +5598,Kapitan_B%C5%82%C4%85d,557,454,699368887,7903,0 +5599,00821,442,443,3909522,6081,0 +5600,FF006,464,516,699189792,6234,0 +5601,Szlachcic+004,561,533,758104,9338,5 +5602,BBB,579,442,1006847,9556,0 +5603,005.+Rusa%C5%82ka,507,590,699703642,9761,0 +5604,%23042,489,590,849001572,9790,0 +5605,024,527,533,7581876,8125,0 +5607,Wioska+defensywna,540,428,848986287,7286,0 +5608,A006,492,421,699299123,10495,0 +5609,Gratuluje+m%C3%B3zgu,450,538,699698253,10160,0 +5610,.%3A039%3A.+Sznur,513,434,8649412,9745,0 +5611,Marienburgg+10,534,480,699355601,7012,0 +5612,Wioska+Barbarzy%C5%84ska,545,492,698867483,9271,0 +5613,A033,477,415,699299123,10495,0 +5614,slow,534,489,848967710,10252,0 +5616,-8-,588,482,699347951,11321,0 +5617,.034.,489,379,698489071,10316,0 +5618,%C5%9Amieszkii,518,572,3454753,9375,0 +5619,054,416,516,699851427,10042,0 +5620,Os+Konfederacja,479,448,848915730,9890,0 +5621,020,522,537,2808172,6812,0 +5622,003,622,493,849091105,10019,0 +5624,%5B185%5D,536,498,848985692,4543,0 +5625,019,530,500,8191129,7677,0 +5626,Wioska+19,529,513,699385139,9475,0 +5627,%5B156%5D,545,508,8000875,8070,0 +5628,Napewno+to+nie+jest+off,489,387,848912265,10495,0 +5629,036,458,495,699510259,9980,0 +5630,Yogi,533,550,2808172,10636,0 +5631,KONFA+TO+MARKA%2C+NARKA,452,458,698152377,10444,0 +5632,Ateny_12,475,537,698971484,9809,0 +5633,007.+Marzyciel+Shrek,456,501,698290577,10109,0 +5634,084+Salt+Lake+City,473,469,1497168,9761,0 +5635,Szlachcic,489,475,699098531,9976,0 +5636,-Zapraszam+do+ta%C5%84ca%21+%3AP,515,514,699785935,10083,0 +5638,001+Puk...Puk...Przeprowadzka%21%21%21,576,585,699524362,10211,0 +5639,%C5%9Amieszkii,509,568,3454753,9267,0 +5640,B008,576,500,8138506,10019,0 +5641,Szlachcic,586,496,699759128,10237,0 +5642,Szlachcic,567,482,698867446,9647,0 +5643,%5B149%5D+North,573,466,848985692,10014,0 +5644,004+koka+hera+hasz+lsd+%3A%29+i,425,572,9167250,9933,0 +5645,P+Konfederacja,453,444,848915730,9664,0 +5646,Szlachcic,498,479,699098531,9626,0 +5647,Jaaa,576,542,698635863,10481,0 +5648,Ulu-mulu,431,601,699697558,10972,0 +5650,KONFA+TO+MARKA%2C+NARKA,437,459,698152377,10311,0 +5651,190+Trujillo,462,457,1497168,9761,0 +5652,017,529,435,699788305,9221,0 +5653,056+Kilauea,455,463,1497168,9761,0 +5654,Os+Konfederacja,477,438,848915730,9803,0 +5655,SsSs,453,495,1536625,6795,0 +5656,JW3,556,442,699368887,7354,0 +5657,%2B44+63+Ecully,430,467,698361257,9860,0 +5658,%2AAteny_05+Juppi+3+-,471,537,2585846,9638,0 +5659,Joms+028,529,419,699756210,10140,0 +5660,.achim.,537,419,6936607,8667,0 +5661,KONFA+TO+MARKA%2C+NARKA,416,480,698152377,10292,0 +5662,Cast+Away+017,446,479,698290577,4575,0 +5663,049+Fort+Laudardale,452,465,1497168,9761,0 +5664,x12,551,453,8459255,8356,0 +5665,MTS,493,520,699785935,9591,2 +5666,Fajna+077,456,557,698290577,7348,0 +5667,0063+10,451,430,3909522,10268,0 +5668,NOT%3F,415,511,9236866,10042,0 +5669,Szlachcic,566,475,698867446,9976,0 +5670,002,466,575,848886870,10495,0 +5671,087+Kansas+City,474,455,1497168,9761,0 +5672,Lord+Arsey+KING,535,518,848956513,10285,0 +5673,Zero+Stresu,446,538,698971484,10111,0 +5675,...Just+like+that,466,474,699723284,7202,0 +5676,%5B146%5D+North,581,467,848985692,10048,0 +5677,008.+ALFI,470,565,8539216,1426,0 +5678,Szlachcic,464,417,698388578,10237,0 +5679,%21Wioska+518,556,459,477415,10495,3 +5680,0.Edison+Mob,525,581,698215322,10474,0 +5681,Wioska+barbarzy%C5%84ska,574,449,699368887,9994,0 +5682,KONFA+TO+MARKA%2C+NARKA,432,484,698152377,9957,0 +5683,Wioska+barbarzy%C5%84ska,511,435,699658023,9362,0 +5684,Yogi,531,526,2808172,6189,0 +5685,Kasyno,444,517,7249451,9966,0 +5686,141+San+Louis+Potosi,471,481,1497168,9761,0 +5687,K45+-+006,561,467,6510480,10187,0 +5688,monetki,510,415,699098531,9821,6 +5689,yogi,525,576,2808172,10160,0 +5690,Piek%C5%82o+to+inni,511,479,848956765,9750,0 +5691,11111,479,602,699364813,10495,0 +5692,Piek%C5%82o+to+inni,520,478,848956765,9717,0 +5693,F001,498,537,699189792,9565,0 +5694,Piek%C5%82o+to+inni,521,419,848956765,10160,0 +5695,Joms+007,522,417,699756210,9867,0 +5696,South+K35,555,394,699146580,9809,0 +5697,%7E062.,487,562,7139820,8397,0 +5698,Ogr%C3%B3d+Warzywny,445,561,7249451,6131,0 +5699,CALL+936,548,560,699784536,10311,0 +5700,007.,609,537,8900955,7408,0 +5701,NOT%3F,438,548,9236866,1478,0 +5702,Wioska+barbarzy%C5%84ska,429,456,698884287,9906,0 +5703,063,553,433,699761749,10495,0 +5704,.+Jack+Daniels,423,547,699856962,9024,0 +5705,007+%7C+Lord+Axen+-+rumbling%21,559,547,8000875,10362,0 +5706,032,497,617,699878511,10495,0 +5707,Fajna+079,455,567,8539216,4265,0 +5708,1.+Type+58+%21%21%21,492,531,849087855,10019,0 +5709,Ateny_76,474,519,2585846,2668,0 +5710,Os+Konfederacja,479,441,848915730,9542,0 +5711,SsSs,419,503,1536625,10160,0 +5712,0026,591,503,699429153,10058,0 +5713,Yogi,525,562,2808172,10019,0 +5714,NOT%3F,430,537,9236866,9425,3 +5715,%21Pikaczu,569,444,699795378,10362,0 +5716,%7C084%7C,571,526,699664910,4199,0 +5717,slow,530,490,848967710,10595,0 +5718,068,415,525,699851427,10042,0 +5719,Wioska+barbarzy%C5%84ska,433,445,698884287,10285,0 +5720,Lord+Arsey+KING,540,531,848956513,10285,0 +5721,097+Tombstone,480,463,1497168,10019,4 +5722,046.,550,474,849094609,9899,0 +5723,NOT%3F,433,514,9236866,9656,0 +5724,Brat447,466,496,699262350,4551,0 +5725,MasteroN+07,570,445,699379895,10495,0 +5726,Fajna006,454,556,698971484,5894,0 +5727,NOT%21,467,540,9236866,10042,0 +5728,SsSs,438,497,1536625,9797,0 +5729,-+076+-,535,583,849018239,10000,0 +5730,%23001,467,612,699605333,10393,0 +5732,Brat447,461,507,699262350,8732,0 +5733,Wioska+barbarzy%C5%84ska,530,534,7581876,9581,0 +5734,Szlachcic,563,476,698867446,9721,0 +5735,Ko%C5%84czy%C4%87+czas%3A%29,552,444,699368887,7186,0 +5736,sas,535,536,7581876,9466,0 +5737,Wioska+Matixx,550,496,699432672,4008,0 +5738,Wioska+barbarzy%C5%84ska,489,599,7976264,10279,0 +5739,keepo,483,535,848967710,10173,0 +5740,Szlachcic+038,553,516,758104,9338,0 +5741,.%3A017%3A.+Chillout,514,433,848934935,7223,0 +5742,001,417,577,9167250,10004,0 +5743,5.+Witosa,477,536,699781762,9835,0 +5744,sas,512,542,7581876,9624,0 +5745,004,483,512,849092723,9417,0 +5746,0188,472,548,698659980,10019,0 +5747,%5B135%5D+North,578,473,848985692,10411,0 +5748,Suppi,433,450,699856962,9570,0 +5749,%5B061%5D+B%C4%99dzie+psikus,530,503,848985692,10311,0 +5750,-+Bis+zu+ende,518,517,699785935,9976,0 +5751,086+OD+KOGO+BIJE+BLASK,404,556,699382126,6606,0 +5752,Szlachcic,488,476,699098531,10292,0 +5753,Szlachcic+024,558,521,758104,8024,0 +5754,Suppi,442,524,699856962,9559,0 +5755,KIELBA+001,445,578,699342219,10273,0 +5756,029.+Leszy,511,560,699703642,9186,0 +5757,.%3A003%3A.+Same+Thing,511,413,8649412,9547,0 +5758,Fajna004,452,555,698971484,4992,0 +5759,Joms+011,520,417,699756210,9797,0 +5760,%23025,519,552,849001572,10030,0 +5761,126+Tulum,477,482,1497168,9761,0 +5762,7.62+mm,488,422,699777234,10019,0 +5763,044,431,514,699851427,10129,0 +5764,078+Orzech+laskowy,553,474,7092442,10495,2 +5765,0023,519,515,699432672,10495,0 +5766,%2B44+72+Vernaison,422,470,698361257,9914,0 +5767,Mimosa%21,498,512,699785935,9835,0 +5768,Lord+Arsey+KING,542,523,848956513,5452,0 +5769,%C5%9Amieszkii,519,559,3454753,9115,0 +5770,0020.+B+-,577,506,7125212,9825,0 +5771,OXA,497,521,699785935,9899,0 +5772,.achim.,534,391,6936607,10311,0 +5773,%3F%2B44+96,466,491,698361257,8825,0 +5774,171+Sao+Luis,479,471,1497168,9761,0 +5775,005,409,504,699851427,10129,0 +5776,016,412,484,699510259,9744,0 +5777,Butem+w+Morgen,488,511,848967710,10138,0 +5778,Sparta_11,495,599,2585846,9638,0 +5779,003.+Marzyciel+Shrek,466,493,698290577,6099,0 +5780,Szlachcic,580,485,699759128,10237,0 +5781,Joms+002,524,419,699756210,10140,0 +5782,-%5B002%5D-+K2,555,483,849092827,8104,0 +5783,Osada,501,451,699098531,9616,0 +5784,-+301+-,525,583,849018239,10008,0 +5785,Monetki,474,431,699098531,10294,0 +5786,SsSs,461,500,1536625,5405,0 +5787,%7E043.,482,551,7139820,10495,0 +5788,Szary+%C5%9Awiat,576,593,699785935,10224,0 +5789,TROJA.11,456,575,8438707,9036,0 +5790,Filip+IV,447,526,698971484,10008,0 +5791,Kattegat,518,543,7581876,9836,0 +5792,017+Ecruteak+City,565,456,699441366,11109,0 +5793,20003,516,550,848915531,8045,0 +5794,keepo,480,511,848967710,9470,0 +5795,C038,533,459,699299123,10971,0 +5796,South+K35,555,387,699146580,10042,0 +5797,0Wioska+barbarzy%C5%84ska,467,509,699333701,8363,0 +5798,JK5,559,447,699368887,6238,0 +5799,073,554,427,849064752,10311,0 +5800,Harbar+2,429,551,8779575,3459,0 +5801,%3F%2B44+76+Corbas,467,479,698361257,9844,0 +5802,%2B44+75+Rang+du+Fliers,451,479,698361257,9653,0 +5803,Warzywniak+022,453,549,698290577,3813,0 +5804,CALL+961,544,548,699784536,10311,0 +5805,B018,487,449,699299123,10042,0 +5806,%7E059.,491,543,7139820,10237,0 +5807,0021+K55+and987+OZDR.,502,551,3613413,9845,5 +5808,%5B153%5D+North,564,469,848985692,10411,0 +5809,Strasznie+Mi%C5%82y+S%C4%85siad%21,546,445,556154,5716,0 +5810,00974,462,441,3909522,9885,2 +5812,018,581,533,8138506,10019,0 +5813,Osada,506,449,699098531,8381,0 +5814,Bloody+Mary,560,546,699785935,10311,8 +5815,Wioska+barbarzy%C5%84ska,487,507,848967710,10252,0 +5816,Lord+Arsey+KING,547,530,848956513,10285,0 +5817,014.+A-RE-SE-EY,579,524,848967710,10252,0 +5818,Wioska+barbarzy%C5%84ska,528,538,7581876,9350,0 +5819,KONFA+TO+MARKA%2C+NARKA,428,460,698152377,10300,0 +5820,SSS-Abadon,566,479,699347951,10357,0 +5821,Szlachcic,574,496,698867446,9771,0 +5822,Wioska+2,523,518,699385139,8428,0 +5823,024,456,436,9291984,10478,0 +5824,05%2A,571,543,699664910,9525,0 +5825,COUSINS,483,587,7976264,10292,0 +5826,KONFA+TO+MARKA%2C+NARKA,421,466,698152377,10294,0 +5827,%5B164%5D,578,542,8000875,8337,0 +5828,CALL+1072,519,531,699784536,10495,0 +5829,Wioska+barbarzy%C5%84ska,486,508,848967710,10252,0 +5830,.achim.,517,450,6936607,7141,0 +5831,032.,503,490,8788366,10495,9 +5832,yogi,533,552,2808172,10224,0 +5833,Wioska+barbarzy%C5%84ska,497,416,699658023,9714,0 +5834,022,518,541,848915531,8174,0 +5835,%23058,518,585,849001572,9711,0 +5836,KONFA+TO+MARKA%2C+NARKA,395,456,698152377,11962,0 +5837,%2B44+62+Saint+Laurent+de+Mure,420,464,698361257,9841,0 +5838,NOT%3F,435,538,9236866,6644,0 +5839,144+Leon,471,487,1497168,9761,0 +5840,%2AINTERTWINED%2A,472,571,698704189,9711,0 +5841,Wioska,383,524,849084005,10178,0 +5842,Wioska+barbarzy%C5%84ska,432,511,698971484,10008,0 +5843,030.+A-RE-SE-EY,576,531,848967710,10252,0 +5844,x+0002+dwa+x+to+ma%C5%82o+091,551,463,3909522,9127,0 +5845,PRO8L3M,425,499,7491093,10311,0 +5846,080,425,515,699851427,10129,0 +5847,036.,502,489,8788366,10252,0 +5848,Szlachcic,509,472,699098531,9616,0 +5849,.%3A014%3A.+Owca,511,428,8649412,8862,0 +5850,PRO8L3M,466,490,7491093,10495,0 +5851,%21Wioska+522,558,461,477415,10495,0 +5852,.achim.,529,394,6936607,10311,0 +5853,PRO8L3M,457,496,7491093,10495,0 +5854,Si%C4%99+wje%C5%BCd%C5%BCa+%21,498,500,699785935,10495,3 +5855,Zasiedmiog%C3%B3rogr%C3%B3d,539,421,699433558,10311,0 +5856,amator,511,545,848915531,9094,0 +5857,Zasiedmiog%C3%B3rogr%C3%B3d,538,426,699433558,7092,0 +5858,Santorini,436,451,698884287,8985,0 +5859,xxx,507,450,698239813,10495,0 +5860,Gattacka,581,517,699298370,10302,0 +5861,026,568,545,699316421,9532,0 +5862,Lilonia,516,556,849066849,7388,0 +5863,Pf+Konfederacja+8,495,496,848915730,10301,0 +5864,Warzywniak+009,444,546,698290577,2834,0 +5865,-024-,456,422,9291984,10490,0 +5866,lady,494,577,699703642,9508,0 +5867,010.+Marzyciel+Shrek,455,499,698290577,10243,0 +5868,Wioska,381,520,849084005,10178,0 +5869,ADEN,557,436,698588535,4828,0 +5870,x06,559,477,8459255,10400,4 +5871,-002-,535,448,849070335,9034,0 +5872,Wioska+Barbarzy%C5%84ska,543,483,698867483,9492,0 +5873,%7E%7ELataj%C4%85cyHolender%7E%7E,558,507,9174887,9727,0 +5874,%2B44+84,447,486,698361257,9140,0 +5875,Piek%C5%82o+to+inni,523,430,848956765,10160,0 +5876,Wioska+barbarzy%C5%84ska,411,413,698971484,10008,0 +5878,%7E%7ELataj%C4%85cyHolender%7E%7E,559,506,9174887,10006,0 +5879,%5B140%5D+North,579,464,848985692,10060,4 +5880,NOT%3F,429,524,9236866,10042,0 +5881,Brat447,447,493,699262350,10479,0 +5882,076,416,507,699851427,10129,0 +5883,Wioska_02,538,451,8674163,8805,0 +5884,Szlachcic,508,471,699098531,9033,0 +5885,NOT%3F,404,549,9236866,9902,0 +5886,%7C007%7C,551,570,873575,10306,0 +5887,Wioska+barbarzy%C5%84ska,456,533,699660539,3839,0 +5888,C031,528,457,699299123,6705,0 +5889,008,533,513,8191129,9835,0 +5890,%21Blastoise,572,448,699795378,10083,0 +5891,CALL+933,552,561,699784536,10311,2 +5892,0175,473,546,698971484,9834,0 +5893,022.+Infinity+War,428,549,8779575,4191,0 +5894,%5B072%5D,556,567,8000875,9956,0 +5895,FF005,465,515,699189792,10232,0 +5896,CALL+938,553,558,699784536,10311,0 +5897,003,578,535,8138506,10019,0 +5898,CZEKAM+NA+SZLACHTE,536,453,8155296,10243,0 +5899,Wioska+barbarzy%C5%84ska,589,503,8925695,3940,0 +5900,Szlachcic,484,467,699098531,10300,0 +5901,A048,500,420,699299123,10495,0 +5902,CALL+942,555,565,699784536,10311,0 +5903,-+Na+pierwsze%2C+deser,514,513,699785935,9860,0 +5904,JaawmG+P,620,474,8815749,10019,0 +5905,Dum+Spiro+Spero,490,554,848896948,9995,0 +5906,Pf+Konfederacja,487,493,848915730,10047,0 +5907,%7E%7ELataj%C4%85cyHolender%7E%7E,560,497,9174887,12021,0 +5908,CALL+935,551,559,699784536,10311,0 +5909,EKG+.%3A%3A.Inchi+%2B+R,480,609,33900,10495,0 +5910,Monetki,473,427,699098531,10294,5 +5911,004+%28Popeye14%29,411,576,698769107,9953,0 +5912,010,464,579,848886870,10495,0 +5913,NOT%3F,431,540,9236866,8327,0 +5914,Wioska+barbarzy%C5%84ska,482,466,699098531,9835,0 +5915,0021,506,496,698599365,9547,0 +5916,KONFA+TO+MARKA%2C+NARKA,442,469,698152377,10297,0 +5917,...Just+like+that,463,479,699723284,6531,0 +5918,NOT%3F,430,541,9236866,9950,0 +5919,%23Weezing,569,463,699795378,10971,0 +5920,0119,467,550,698659980,7622,0 +5921,0058,589,514,698416970,8841,0 +5922,028,588,564,699373599,10047,0 +5923,0025,504,507,698599365,9655,0 +5924,Lord+Arsey+KING,517,496,848956513,10285,0 +5925,004+Mamy+pierwsz%C4%85+wysiadk%C4%99%21,603,486,699272633,10476,0 +5926,10011,532,555,848915531,10311,0 +5927,036+-+one,421,583,225023,10495,0 +5928,Pf+Konfederacja,484,503,848915730,9695,0 +5929,034,414,521,699851427,10042,0 +5930,015,526,498,8191129,9976,0 +5931,-%5B003%5D-+Kanczenczonga,555,482,849092827,8124,0 +5932,023,531,428,699788305,10019,5 +5933,KIELBA+071,474,579,699342219,10487,0 +5934,F007,507,530,699189792,9750,0 +5935,A001,609,450,699722599,10362,0 +5936,...Just+like+that,471,475,699723284,9746,0 +5937,Szlachcic,506,470,699098531,9606,0 +5938,-007-Richmond%2CVA,449,517,698971484,9490,6 +5939,.%3A011%3A.+Fresk,517,419,8649412,9839,0 +5940,KONFA+TO+MARKA%2C+NARKA,423,472,698152377,10162,0 +5941,%7E%7ELataj%C4%85cyHolender%7E%7E,560,507,9174887,10139,0 +5942,020+Roswell,441,474,1497168,9761,0 +5943,Lord+Arsey+KING,519,490,848956513,10285,0 +5944,.achim.,560,446,6936607,10311,0 +5945,0007,610,549,477415,10495,0 +5946,7.62+mm,495,431,699777234,10019,0 +5947,A013,513,382,7758085,9925,0 +5948,7.62+mm,466,444,699777234,10019,0 +5949,Sparta_56,487,574,2585846,9638,0 +5950,%5B131%5D,560,535,8000875,9616,0 +5951,B070,484,454,699299123,10495,0 +5952,00976+Alakazam,460,434,3909522,10226,0 +5953,%5B019%5D+Gbuo+gi,584,532,848985692,10217,2 +5955,065.,507,492,8788366,10252,0 +5956,A.010,414,575,849088243,10237,0 +5957,Szlachcic+%21%21%21,503,469,699098531,9891,0 +5958,Gattacka,587,498,699298370,9741,0 +5959,0020+K55+and987+OZDR.,506,561,3613413,9861,0 +5960,A032,496,416,699299123,10495,0 +5961,0019,466,466,848913037,9993,0 +5962,%2B44+84,441,484,698361257,9374,0 +5963,%21Arcanine,571,447,699795378,9486,0 +5964,Wioska_08,556,448,8674163,4237,0 +5965,Lord+Arsey+KING,520,497,848956513,10285,0 +5966,Weso%C5%82ych+%C5%9Awi%C4%85t,562,449,699368887,9994,0 +5967,%5B355%5D+Chor%C4%85giewka+na+wietrze,593,440,848985692,10474,0 +5968,ChceszPokojuSzykujSi%C4%99DoWojny,467,504,699333701,6579,0 +5969,s181eo02,396,449,393668,9886,0 +5970,023+%7C,559,559,8000875,10144,0 +5971,Wioska+barbarzy%C5%84ska,432,443,698884287,10178,0 +5972,Szlachcic+%21%21%21,497,466,699098531,7249,0 +5973,029.+ALFI,477,570,8539216,935,0 +5974,Lord+Arsey+KING,538,535,848956513,10285,0 +5975,keepo,479,512,848967710,9803,0 +5976,Front_30,453,520,2585846,6047,0 +5977,R%C4%99cznik+do+zmiany,412,485,699697558,10495,0 +5978,lady,510,559,699703642,10471,0 +5979,%7E%7ELataj%C4%85cyHolender%7E%7E,586,511,9174887,10149,0 +5980,164+Brasilia,481,476,1497168,9761,0 +5981,%2AAteny_65,470,539,2585846,9638,0 +5983,009.+ALFI,480,571,8539216,2435,3 +5985,Wioska+barbarzy%C5%84ska,454,455,699660539,10492,0 +5986,Semantyka,504,523,699785935,10019,0 +5987,0027,539,473,699432672,10252,0 +5988,037+Minneapolis,448,463,1497168,9761,2 +5989,B.001,410,568,849088243,10495,0 +5990,Village,517,580,849094067,11479,0 +5991,Zasiedmiog%C3%B3rogr%C3%B3d,518,427,699433558,10068,0 +5992,x+012089,551,462,3909522,8370,0 +5993,.%3A121%3A.+Niangmen,516,414,848934935,10068,0 +5994,Myk+i+do+kieszonki,381,509,9319058,9799,0 +5995,KONFA+TO+MARKA%2C+NARKA,441,473,698152377,10654,0 +5996,%2AAteny_60,476,523,2585846,9638,0 +5997,Nic+na+krech%C4%99,511,510,699785935,5908,0 +5998,029+Twierdza,622,521,8323711,9542,0 +5999,Os+Konfederacja+8,473,438,848915730,9812,0 +6000,Jaaa,575,548,698635863,10495,0 +6001,%2B44+71+Champagne+au+Mont+dOr,419,473,698361257,9849,0 +6002,Pilonia,520,552,849066849,8425,0 +6003,7.62+mm,490,438,699777234,5416,0 +6004,008,559,536,699194766,9555,0 +6005,NOT%3F,428,522,9236866,10042,0 +6006,-%5B034%5D-+Molamenqing,558,473,849092827,7201,0 +6007,Osada+koczownik%C3%B3w,469,585,699364813,10311,1 +6008,NOT,418,428,9236866,10042,0 +6009,Sparta_72,471,581,2585846,9638,0 +6010,.%3A048%3A.Chillout,507,393,848934935,10495,0 +6011,015+%7C,562,550,8000875,10481,3 +6012,Taran,581,464,699759128,10237,0 +6013,Skrzyd%C5%82a,496,528,699785935,9835,0 +6014,00975+Avada,461,440,3909522,10142,4 +6015,A.012,412,580,849088243,10559,0 +6016,Wioska+Nacz0,394,462,698807570,10057,0 +6017,002,605,497,699573053,10495,0 +6018,Suppi,443,450,699856962,9700,0 +6019,20017,515,548,848915531,9392,0 +6020,Joms+027,528,424,699756210,10252,0 +6021,JaamMwG+006,526,521,848987051,9814,0 +6022,Wioska+Barbarzy%C5%84ska,549,482,698867483,10019,0 +6023,Szlachcic,566,474,698867446,9922,0 +6024,Wioska_04,543,446,8674163,5399,0 +6025,Polania+003,539,450,758104,9338,0 +6026,K44+x031.,453,431,698364331,7075,0 +6027,%7E%7ELataj%C4%85cyHolender%7E%7E,559,504,9174887,10143,0 +6028,021+Pensacola,439,478,1497168,9761,0 +6029,%3F%2B44+85+Lyon+Brotteaux,455,485,698361257,9844,0 +6030,Bucks+x+Kamiiiru,449,610,848955783,10728,0 +6031,%5B087%5D,551,499,8000875,9894,0 +6033,Zasiedmiog%C3%B3rogr%C3%B3d,520,429,699433558,10311,0 +6034,%5B131%5D+North,582,475,848985692,10054,0 +6035,Village,517,576,849094067,12154,0 +6036,Wioska_03,538,448,8674163,8805,0 +6037,%5B152%5D+North,568,470,848985692,10411,0 +6038,Wioska+barbarzy%C5%84ska+017%7C,557,411,6343784,9619,0 +6039,NOT%3F,429,534,9236866,9693,0 +6040,%C5%9Amieszkiii,493,590,3454753,8532,0 +6041,7.62+mm,489,445,699777234,10019,0 +6042,027,533,432,699788305,8986,0 +6043,yogi,550,608,2808172,10495,0 +6045,Wioska+7,525,509,699385139,7908,0 +6047,%5B101%5D,551,535,8000875,9957,0 +6048,Wioska+8,533,516,699385139,9115,0 +6049,City+Ground,547,515,699194766,6342,0 +6050,Niespodzinaka+%3F,467,506,699333701,9925,0 +6051,Zasiedmiog%C3%B3rogr%C3%B3d,525,437,699433558,10297,0 +6052,elqueria,554,387,3600737,9013,0 +6053,Szlachcic,578,497,699759128,9679,0 +6054,A022,493,415,699299123,10495,0 +6055,%2B44+74+Airon+Notre+Dame,443,476,698361257,9655,0 +6056,%28002%29,423,544,699846892,10160,0 +6057,NOT%3F,433,534,9236866,4605,0 +6058,Zasiedmiog%C3%B3rogr%C3%B3d,535,424,699433558,10311,0 +6059,%23043,455,604,699605333,10728,0 +6060,0033,519,510,698599365,10019,0 +6061,PRO8L3M,420,499,7491093,10311,0 +6062,%5B074%5D+Tihlum+rawh,533,512,848985692,10311,0 +6063,10.+Dennis+Cranmer,562,478,698702991,10178,0 +6064,%C5%9Amieszkii,519,574,3454753,10478,0 +6065,Szlachcic+030,540,526,758104,8024,0 +6066,Porysowany,513,509,699785935,5715,0 +6067,041,540,401,7271812,10495,0 +6068,B002,487,447,699299123,10495,0 +6069,%2AINTERTWINED%2A,508,564,698704189,9711,0 +6070,.achim.,527,413,6936607,10311,0 +6071,Obl%C4%85g,439,554,699443920,8840,0 +6072,NOT%3F,429,545,9236866,3401,0 +6073,0.Mobilek,519,580,698215322,10495,8 +6074,7.62+mm,492,426,699777234,10019,0 +6075,Only,436,558,699443920,3758,0 +6076,060.,514,501,8788366,7083,0 +6077,Brat447,464,504,699262350,10374,0 +6078,1xxxxxxxxxxxx,467,429,9291984,10346,0 +6079,Monetki,470,415,699098531,10292,0 +6080,%2305.,526,470,848967710,10971,0 +6081,009742,464,443,3909522,9037,0 +6082,Praga,426,457,699660539,9841,0 +6083,202+Kingston,462,463,1497168,9398,0 +6084,F092,489,534,699189792,9878,0 +6085,------------------4,459,433,9291984,10543,0 +6086,KIELBA+037,444,571,699342219,10495,0 +6087,079.+ALFI,480,556,8539216,1725,0 +6088,Wioska+barbarzy%C5%84ska,590,485,8925695,7974,0 +6089,Forteca,501,569,606407,10306,0 +6090,A%23002%23,404,472,698807570,12154,0 +6091,%5B088%5D,541,487,848985692,10068,7 +6092,%C5%9Amieszki,536,614,3454753,9199,0 +6093,.%3A020%3A.+Chillout,509,419,848934935,6335,0 +6094,BBB,554,437,1006847,9341,0 +6095,028,532,432,699788305,8741,0 +6096,%2B44+84,443,480,698361257,9669,0 +6097,Suppi,430,457,699856962,9189,0 +6098,Osada,496,451,699098531,9632,0 +6099,011,439,491,699510259,9761,0 +6100,2.+Grille,493,534,849087855,7848,0 +6101,Pary%C5%BC,424,457,699660539,10083,0 +6102,Piek%C5%82o+to+inni,515,486,848956765,9150,0 +6103,F048,488,525,699189792,9545,0 +6104,-------------2,467,426,9291984,10495,8 +6105,006341,440,432,3909522,8754,0 +6106,Lord+Arsey+KING,529,520,848956513,8700,0 +6107,016+%7C,560,550,8000875,9956,4 +6108,%7E056.,489,542,7139820,10495,0 +6109,Bucksbarzy%C5%84sKamiiiru,437,523,848955783,10654,0 +6110,Horyzont+zdarze%C5%84,536,617,7581876,10495,0 +6111,Wioska+Barbarzy%C5%84ska,543,491,698867483,10019,0 +6112,A060,502,430,699299123,10444,0 +6113,NOT%3F,430,516,9236866,10060,0 +6114,OOIV,508,437,699658023,9267,3 +6115,050,528,573,699189792,9756,0 +6116,NOT%3F,426,543,9236866,9648,0 +6117,Wioska+4,443,542,698971484,2849,0 +6118,NOT%3F,431,539,9236866,3674,0 +6119,0012.+A+-+Petrovya,608,525,7125212,10160,0 +6120,Gratuluje+m%C3%B3zgu,442,538,698971484,7565,0 +6121,Wioska+barbarzy%C5%84ska,524,440,698895940,7195,0 +6122,018+Norfolk,441,475,1497168,9761,0 +6123,100+Jamestown,474,482,1497168,9761,0 +6124,NOT%3F,423,521,9236866,10042,0 +6125,045+Seattle,467,467,1497168,9761,0 +6126,Kasyno,448,518,7249451,9652,0 +6127,yogi,545,610,2808172,10019,0 +6128,065.+Palmyra,618,472,849091866,10233,0 +6129,Wioska+barbarzy%C5%84ska,456,539,699698253,2792,0 +6130,keepo,478,506,848967710,10495,0 +6131,%230064+Moleku%C5%82a+duszy,490,562,9272054,10000,0 +6132,Os+Konfederacja,469,450,848915730,9976,0 +6133,Piek%C5%82o+to+inni,511,472,848956765,10019,0 +6134,013+Cherrygrove+City,590,498,699441366,11109,0 +6135,Szlachcic,490,479,699098531,10099,2 +6136,033.+ALFI,477,552,8539216,1508,0 +6137,Castle+of+glass%21,497,500,699785935,9835,0 +6138,%7E%7ELataj%C4%85cyHolender%7E%7E,586,509,9174887,10160,0 +6139,A053,501,423,699299123,10336,0 +6140,zaboli,551,451,699368887,7788,0 +6141,C044,533,463,699299123,9345,0 +6142,Kentin+ufam+Tobie,436,405,699783765,10000,0 +6143,0005+CH,425,410,3909522,10495,0 +6144,19+Valhalla,484,506,698290577,5621,0 +6145,Piek%C5%82o+to+inni,525,467,848956765,9761,0 +6146,069.,510,493,8788366,10252,0 +6147,Warzywniak+014,449,546,698290577,2349,0 +6148,NOT%3F,432,544,9236866,4279,0 +6149,BBB,559,436,1006847,8368,0 +6150,001.+Kaer+Morhen,563,399,699799629,10495,0 +6151,-025-,459,426,9291984,10479,0 +6152,Angband,510,522,849091897,8195,0 +6153,0Wioska+barbarzy%C5%84ska,473,514,699781762,4030,0 +6154,0.Davenport,521,581,698215322,10211,0 +6155,Lord+Arsey+KING,521,496,848956513,10285,0 +6156,Wioska+427,559,501,477415,10495,0 +6157,%2AINTERTWINED%2A,465,559,698704189,9601,0 +6158,monetki,507,441,699098531,9532,0 +6159,-+111+-,538,572,849018239,10000,0 +6160,Szlachcic,502,472,699098531,9693,0 +6161,0044+K55+and987+OZDR,510,556,3613413,10083,0 +6162,Suppi,471,539,699856962,9896,0 +6163,%2AINTERTWINED%2A,530,559,698704189,9711,0 +6164,B001,486,449,699299123,10484,0 +6165,%3F%2B44+76+Recques+sur+Course,467,475,698361257,9653,0 +6166,xxx,486,424,698239813,10294,0 +6167,Osada,497,446,699098531,10303,0 +6168,KONFA+TO+MARKA%2C+NARKA,435,472,698152377,10432,0 +6169,2.Kanonjgpd+%21%21%21,496,536,849087855,9908,0 +6170,042,419,523,699851427,10042,0 +6171,Moria,520,539,7581876,10019,4 +6172,Wioska+Wojtek150+003,531,520,7581876,10019,0 +6173,%C5%9Amieszkiii,480,585,3454753,8514,0 +6174,113+Choroszcz,540,454,7092442,2273,0 +6175,F047,486,524,699189792,9203,0 +6176,Rampage+2,525,477,699355601,3173,0 +6177,Winter+is+coming,505,572,699364813,9960,0 +6178,Employee+Housing+Area,515,609,8199417,10495,0 +6179,%7E%7ELataj%C4%85cyHolender%7E%7E,583,509,9174887,10210,0 +6180,z+020,538,593,699342219,10216,0 +6181,040+Chattanooga,448,467,1497168,9761,0 +6182,0.Palm+Bay+Mob,525,579,698215322,10047,0 +6183,017,532,514,8191129,9766,0 +6184,0093,465,547,698659980,8765,0 +6185,.%3A070%3A.+Chillout,505,421,848934935,7509,0 +6186,.achim.,541,432,6936607,8527,0 +6187,216+Mount+Gambier,533,428,1497168,9761,0 +6188,SPARTA_71,468,581,2585846,9638,0 +6189,Dum+Spiro+Spero,494,552,848896948,10000,0 +6190,x+0001,548,461,3909522,6082,0 +6191,ChceszPokojuSzykujSi%C4%99DoWojny,462,496,699333701,10382,0 +6193,030.+ALFI,477,571,8539216,1290,0 +6194,002.+Licho,508,591,699703642,10160,0 +6195,yogi,513,553,2808172,10019,0 +6196,ADEN,567,438,698588535,10035,0 +6197,Osada+L,426,547,699856962,8076,4 +6199,Os+Konfederacja,477,447,848915730,10068,0 +6200,Kattegat,536,384,698350371,10495,0 +6201,NOT%3F,427,517,9236866,10042,0 +6202,kto+ananasowy+pod+wod%C4%85+ma+dom,574,501,699628084,9797,0 +6203,%5B132%5D+North,577,472,848985692,10295,8 +6204,PRO8L3M,411,499,7491093,10495,0 +6205,ChceszPokojuSzykujSi%C4%99DoWojny,458,511,699333701,10362,0 +6206,...Just+like+that,452,505,699723284,10452,0 +6207,083.+ALFI,482,562,8539216,1860,8 +6208,Weso%C5%82ych+%C5%9Awi%C4%85t,568,451,699368887,11653,0 +6209,Kontrola+Jako%C5%9Bci%21,499,504,699785935,9835,0 +6210,Village,519,584,849094067,12154,0 +6211,K55,543,514,848967710,10252,0 +6212,A030,497,413,699299123,10259,0 +6213,Mniejsze+z%C5%82o+0066,421,505,699794765,5256,0 +6214,018,527,435,699788305,8632,0 +6215,075.+%7CXD%7C,496,514,848967710,10252,0 +6216,KONFA+TO+MARKA%2C+NARKA,442,457,698152377,10306,0 +6217,025,436,486,699510259,9808,0 +6218,XnX-03,438,542,699170684,7806,0 +6219,Ko%C5%84czy%C4%87+czas%3A%29,547,450,699368887,6380,0 +6220,003+Osada,527,466,848967710,6512,2 +6221,018,554,399,849063849,10224,0 +6222,33-wara+od+moich+wiosek,543,438,849002091,7095,0 +6223,Suppi,442,447,699856962,9570,0 +6224,089+Orzech,545,465,7092442,8234,0 +6225,004+Uber+Schlesien,567,480,849031818,7604,0 +6226,050+%7C,550,537,8000875,10425,0 +6227,0054,513,526,699432672,10495,0 +6228,Opti,439,558,699443920,4119,0 +6229,0063+La+Casa+De+Los+Hombres,446,427,3909522,10401,0 +6230,Szlachcic,578,495,699759128,10237,0 +6231,%230030+%C5%9Awiebodzin,480,564,9272054,10000,2 +6232,U-6,544,427,3600737,6970,0 +6233,Piek%C5%82o+to+inni,512,483,848956765,5113,0 +6234,069+Harrisburg,460,474,1497168,9761,0 +6235,72k%24+Grvvyq,548,525,699676005,10495,0 +6236,Carsultyal.,485,554,698704189,9711,0 +6237,A025,492,417,699299123,10495,0 +6238,NOT%3F,435,527,9236866,10042,0 +6239,0111,468,559,698659980,9107,0 +6240,%2AINTERTWINED%2A,469,566,698704189,9711,0 +6241,Lynortis,458,541,699698253,4249,0 +6242,Joms+020,531,418,699756210,9771,0 +6243,Front_17,458,526,2585846,3053,0 +6244,061,441,496,699510259,9741,0 +6245,R%C4%99cznik+do+zmiany,416,488,699697558,11581,0 +6246,DEFF+CENTRUM,539,469,8155296,9523,0 +6247,136+Puerto+Vallarta,467,482,1497168,9761,0 +6248,Wioska+412,563,509,477415,10495,0 +6249,002,504,381,849010255,10019,0 +6250,Piek%C5%82o+to+inni,525,435,848956765,10160,0 +6251,Piek%C5%82o+to+inni,522,415,848956765,10160,0 +6252,016+Goldenrod+City,590,504,699441366,11109,0 +6254,Joms+034,534,418,699756210,10273,0 +6255,Winter+is+coming,503,580,699364813,9835,0 +6256,020,512,531,7581876,5751,0 +6257,Forteca,500,569,606407,10295,0 +6258,Ulu-mulu,431,600,699697558,10760,0 +6259,KIELBA+007,446,568,699342219,10247,0 +6260,0063,462,462,848913037,7829,0 +6261,Piek%C5%82o+to+inni,510,484,848956765,5745,0 +6262,%C5%9Amieszkiii,491,579,3454753,8338,0 +6263,Wioska+barbarzy%C5%84ska,434,511,698971484,10008,0 +6264,075+Nowy+Orlean,470,456,1497168,9761,0 +6265,West+04,587,475,698702991,9753,0 +6266,xxx,490,442,698239813,6081,0 +6267,CALL+1060,519,535,699784536,10495,0 +6268,Wioska+18,520,511,699385139,9480,0 +6269,08+Zakr%C4%99%C4%87+kur%C4%85+sw%C4%85,473,502,699781762,10178,0 +6270,003.,608,526,6520732,10019,0 +6271,Front_01,463,519,2585846,9638,0 +6272,Brat447+XXX,386,503,699262350,10495,0 +6273,020,457,436,9291984,10478,0 +6274,002,573,409,849064752,10311,0 +6275,Szlachcic,490,459,699098531,10178,0 +6276,Lord+Arsey+KING,521,500,848956513,10285,0 +6277,Taran,577,462,699759128,10237,0 +6278,Wioska+barbarzy%C5%84ska,533,505,848967710,10495,0 +6279,151+Quetzaltenango,453,465,1497168,9761,0 +6280,001,504,479,698881022,10231,0 +6281,Szlachcic,561,492,698867446,9521,0 +6282,163,538,418,849064752,10311,0 +6283,Szlachcic+011,557,528,758104,9338,2 +6284,Pf+Konfederacja+%2B,492,489,848915730,9068,0 +6285,B008,485,448,699299123,10484,0 +6286,Warzywniak+006,448,543,698290577,3048,0 +6287,007,605,496,699573053,10495,0 +6288,010,547,522,699194766,10107,0 +6289,Wioska+Barbarzy%C5%84ska,546,481,698867483,8899,0 +6290,0003,511,518,699432672,10495,0 +6291,-+021+-,539,600,849018239,10000,0 +6292,KONFA+TO+MARKA%2C+NARKA,438,459,698152377,10358,0 +6293,CHW%23038,480,521,699781762,8854,0 +6294,PRO8L3M,474,483,7491093,8673,0 +6295,keepo,484,534,848967710,10495,0 +6296,210+Port+Pirie,534,433,1497168,9835,0 +6297,Szlachcic,491,467,699098531,10297,1 +6298,Wioska+HI,427,551,8779575,2923,0 +6300,.%3A040%3A.+Hak,514,432,8649412,6700,0 +6301,Szlachcic+P%C3%B3%C5%82noc+006,624,506,698562644,7506,0 +6302,KONFA+TO+MARKA%2C+NARKA,440,457,698152377,10654,0 +6303,%2B44+72+Genas,427,474,698361257,9841,0 +6304,Front_10,459,523,2585846,1916,0 +6305,%230111+Talerz,479,541,698704189,9711,0 +6306,039,435,501,699510259,9747,0 +6307,Brat447,460,506,699262350,7374,0 +6308,Szlachcic,569,515,698867446,9922,0 +6309,a+Wioska+1,454,532,3909522,4864,0 +6310,KONFA+TO+MARKA%2C+NARKA,423,461,698152377,10290,0 +6311,JM2,561,454,699368887,6007,0 +6312,Kapitan_James_B%C5%82%C4%85d_007,557,455,699368887,10728,0 +6313,013+Fiona,448,510,698290577,5337,0 +6314,K45+-+001,561,464,699368887,10336,0 +6315,Lord+Arsey+KING,509,499,848956513,10285,0 +6316,Suppi,437,520,699856962,9652,0 +6317,xxxx,507,433,698239813,10495,0 +6318,Yogi,534,527,2808172,5414,0 +6319,P.023,538,552,873575,10254,0 +6320,%2AINTERTWINED%2A,465,566,698704189,9711,2 +6321,Suppi,443,528,699856962,9575,0 +6322,004,528,467,848967710,6725,0 +6323,%28001%29,420,537,9236866,9872,0 +6324,%28020%29,427,537,9236866,9564,0 +6325,Lord+Arsey+KING,515,495,848956513,10285,0 +6326,Piek%C5%82o+to+inni,521,435,848956765,10160,0 +6327,019,586,536,8138506,9546,0 +6328,K45+-+003,559,464,6510480,10079,0 +6329,095,413,522,699851427,10129,0 +6330,Gattacka,582,515,699298370,9847,0 +6331,%2B44+72+Coquelles,428,470,698361257,9849,0 +6332,%2AINTERTWINED%2A,479,542,698704189,9711,0 +6333,...Just+like+that,459,488,699723284,5851,0 +6334,Ja%C5%82ow%C4%99sy,535,470,8155296,8987,0 +6335,Piek%C5%82o+to+inni,521,426,848956765,10160,0 +6336,CALL+981,549,567,699784536,10311,0 +6337,Szlachcic,494,480,699098531,9952,0 +6338,keepo,477,519,848967710,8416,0 +6339,0098,459,439,3909522,10297,0 +6340,Wioska+barbarzy%C5%84ska,510,532,7581876,6735,0 +6341,Zasiedmiog%C3%B3rogr%C3%B3d,539,426,699433558,5699,0 +6342,Kasyno,443,509,7249451,9865,0 +6343,F016,497,543,699189792,9753,0 +6344,Wioska,379,518,849084005,10178,0 +6345,Orish,430,555,699443920,3284,0 +6346,041,417,526,699851427,10129,0 +6347,Oplot,437,557,699443920,6474,0 +6348,KONFA+TO+MARKA%2C+NARKA,445,468,698152377,10303,0 +6349,-+039+-,532,581,849018239,10000,0 +6350,Szlachcic,466,421,698388578,10237,0 +6351,SsSs,453,501,1536625,7563,0 +6352,-%5B020%5D-+Nuptse,558,481,849092827,7318,0 +6353,0001+Gehenna+Facility,387,460,698807570,10703,0 +6354,10006,529,562,848915531,11130,0 +6355,191+Cartagena,470,472,1497168,9761,0 +6356,KONFA+TO+MARKA%2C+NARKA,418,483,698152377,10311,7 +6358,%7E%7ELataj%C4%85cyHolender%7E%7E,585,509,9174887,10155,0 +6359,7.62+mm,493,432,699777234,10019,0 +6361,Horyzont+zdarze%C5%84,524,532,7581876,10019,0 +6362,Monetki,475,423,699098531,10290,0 +6363,0Wioska+barbarzy%C5%84ska,482,527,699781762,8786,0 +6364,PRO8L3M,461,498,7491093,7690,0 +6365,021,527,516,8191129,7247,0 +6366,Ateny_75,474,521,2585846,4621,0 +6367,24.,565,475,698702991,10178,0 +6368,001.+Gloria+Victis,439,605,848886973,10357,0 +6369,Ogr%C3%B3d+Warzywny,449,567,7249451,8472,0 +6370,0078,528,542,699432672,10495,0 +6371,%7E%7ELataj%C4%85cyHolender%7E%7E,585,508,9174887,10208,0 +6372,1.+Type+58+G+%21%21%21,494,531,849087855,10019,0 +6373,KONFA+TO+MARKA%2C+NARKA,418,480,698152377,10311,6 +6374,Szlachcic+%21%21%21,510,476,699098531,9835,0 +6375,028+%7C,556,561,8000875,10143,0 +6376,Wioska+barbarzy%C5%84ska,521,542,7581876,7376,0 +6377,keepo,481,534,848967710,9871,0 +6378,.%3A069%3A.+Chillout,503,418,848934935,10107,0 +6379,NOT%3F,438,530,9236866,10025,0 +6380,NIERAJ001,469,612,33900,10356,0 +6381,073.,568,458,849094609,7535,0 +6382,0076,456,395,699431255,9835,0 +6383,Gattacka,590,493,699298370,9750,0 +6384,A0006,388,479,8841266,10252,0 +6385,Forteca,500,570,606407,10311,0 +6386,FF001,469,517,699189792,7240,0 +6387,040,436,502,699510259,9742,0 +6388,%5B145%5D,568,535,8000875,9099,0 +6389,%5BA%5D_%5B023%5D+Dejv.oldplyr,404,486,699380607,10495,0 +6390,KONFA+TO+MARKA%2C+NARKA,437,463,698152377,10294,0 +6391,109+Aha,551,467,7092442,9727,0 +6393,%7E%7ELataj%C4%85cyHolender%7E%7E,566,495,9174887,9535,0 +6394,Your+Body%21,499,502,699785935,9835,0 +6395,Kasyno,448,514,7249451,10008,0 +6396,Wioska+barbarzy%C5%84ska,431,510,698971484,9411,0 +6397,0063+11,452,427,3909522,9919,0 +6398,P.022,539,550,873575,9964,0 +6399,Wioska+barbarzy%C5%84ska,471,432,9291984,8493,0 +6400,Pf+Konfederacja+8,482,500,848915730,9938,0 +6401,025,438,597,698659980,9747,0 +6402,002.,523,555,699695167,9902,0 +6403,050,425,517,699851427,10129,0 +6404,SsSs,452,496,1536625,8318,0 +6406,Fajna+090,455,568,8539216,831,0 +6407,%2AAteny_47,468,529,2585846,9638,0 +6408,%5B081%5D,555,547,8000875,9959,5 +6409,LE%C5%9ANE+KR%C3%93LESTWO,537,454,8155296,10184,0 +6410,7.62+mm,471,433,699777234,10019,0 +6411,Suppi,428,451,699856962,9808,0 +6412,Wioska+Barbarzy%C5%84ska,542,478,698867483,10019,0 +6413,105+Saskatoon,476,483,1497168,9761,0 +6414,CALL+954,545,554,699784536,10311,0 +6415,Erebor+7,499,591,699383121,7981,0 +6416,Szlachcic,464,420,698388578,10237,0 +6417,0056+Zodiak,439,428,3909522,10444,0 +6418,NOT%3F,413,507,9236866,9993,0 +6419,-+215+-,551,573,849018239,10000,0 +6420,.achim.,525,398,6936607,10311,0 +6421,kathare,496,577,873575,10011,0 +6422,Carsultyal.,487,553,698704189,6218,0 +6423,Osada,492,453,699098531,10113,0 +6424,Konfiasze,474,495,698908912,10971,0 +6425,014+%7C,568,552,8000875,10232,0 +6426,Horyzont+zdarze%C5%84,515,535,7581876,9835,0 +6427,00901,452,436,3909522,8501,0 +6428,%230036+Agrest,498,567,9272054,10019,0 +6429,Os+Konfederacja+8,474,437,848915730,9853,0 +6431,BBB,553,438,1006847,8653,0 +6432,Wioska+barbarzy%C5%84ska,441,531,699856962,3144,0 +6433,Wioska+423,558,504,477415,10495,0 +6434,Wioska,381,501,849084005,10178,0 +6435,PRO8L3M,464,487,7491093,8999,0 +6436,sas,536,539,7581876,10051,0 +6437,Osada,493,445,699098531,10306,0 +6438,%230031+%C5%9Awidwin,485,566,9272054,10000,0 +6439,Piek%C5%82o+to+inni,516,471,848956765,9761,0 +6440,xxx,479,430,698239813,10495,0 +6441,South+K45,595,431,699146580,10042,0 +6442,0063+b2qqqqqqqqqqqqqqqqqqqqqqqqq,453,429,3909522,10083,0 +6443,%230012+Szalony+Ogier,485,549,9272054,10000,0 +6445,KONFA+TO+MARKA%2C+NARKA,441,458,698152377,10311,0 +6446,ChceszPokojuSzykujSi%C4%99DoWojny,469,511,699333701,9642,0 +6447,Szlachcic,577,494,699759128,10237,0 +6449,0085,545,527,699432672,8261,0 +6450,Suppi,424,425,699856962,9881,0 +6451,-%5B004%5D-+Lhotse,555,481,849092827,7524,0 +6452,-+063+-,536,570,849018239,10000,0 +6453,BETI+004,457,572,8539216,1866,0 +6454,0051+Bombas,436,424,3909522,10444,0 +6455,013,581,534,8138506,10019,0 +6456,SZYMI+PALACE+1,392,539,9167250,9756,0 +6457,015,560,461,699368887,6107,0 +6458,Wioska+barbarzy%C5%84ska,437,443,698884287,10285,0 +6459,Os+Konfederacja+%2B,471,443,848915730,10001,4 +6460,.achim.,534,453,6936607,10311,0 +6461,Warzywniak+010,443,545,698290577,2111,0 +6462,Ogr%C3%B3d+Warzywny,450,561,7249451,9394,0 +6463,Wioska+barbarzy%C5%84ska,427,448,698884287,10285,0 +6464,Szlachcic+042,567,526,758104,9343,0 +6465,Mordor,503,531,849091897,10971,3 +6466,Suppi,432,452,699856962,9738,0 +6467,7.62+mm,500,428,699777234,10019,0 +6468,SSJ+002,489,596,699054373,9761,0 +6469,038,485,482,699510259,10237,0 +6470,0049+K55+and987+OZDR,500,553,3613413,9914,0 +6471,003+Fiona,446,504,698290577,6047,0 +6472,Szlachcic,501,468,699098531,9899,0 +6473,Osada,498,442,699098531,10295,0 +6474,Monetki,482,415,699098531,10297,0 +6475,0208,524,592,698659980,10019,0 +6476,Suppi,436,520,699856962,9559,0 +6477,Ost-in-Edhil,503,512,849091897,8751,0 +6478,Jaaa,581,536,698635863,10484,0 +6479,001.+Harna%C5%9B,428,550,8779575,9825,0 +6480,Marienburg+4,528,476,699355601,5368,0 +6481,0029,561,391,699485250,10211,0 +6482,Szlachcic,564,494,698867446,9721,4 +6483,Wioska+Barbarzy%C5%84ska,544,480,698867483,9478,0 +6484,015+Texas,432,426,9291984,10495,0 +6485,Suppi,440,524,699856962,9553,0 +6486,075.,570,461,849094609,9955,0 +6487,064,554,433,699761749,10495,0 +6488,P.010,539,561,873575,9915,0 +6489,Winter+is+coming,508,578,699364813,9868,0 +6490,Winter+is+coming,440,545,698971484,3370,0 +6491,.achim.,532,451,6936607,7513,0 +6492,0074,549,527,699432672,10495,0 +6493,KONFA+TO+MARKA%2C+NARKA,434,463,698152377,10306,0 +6494,-014-,453,415,9291984,10487,0 +6495,aaa,565,484,699347951,9342,0 +6496,NOT%3F,436,532,9236866,7671,0 +6497,%C5%9Amieszkii,517,571,3454753,9196,0 +6498,Opas,434,560,699443920,3529,0 +6499,0.Phoenix,522,586,698215322,9970,3 +6500,ADEN,559,448,698588535,10178,0 +6501,Wioska+barbarzy%C5%84ska,437,444,698884287,10285,0 +6502,Os+Konfederacja+%2B,476,445,848915730,10001,0 +6503,Szlachcic,571,497,699759128,10237,0 +6504,%7C008%7C,552,570,873575,10484,0 +6505,JaamMwG+018,525,517,848987051,9156,0 +6506,ADEN,558,446,698588535,10072,0 +6507,Wioska+503,578,455,477415,10495,0 +6508,PYRLANDIA+040+%24%2BC,578,594,33900,10401,0 +6509,025+Bayou+La+Batre,449,470,1497168,9797,0 +6510,...Just+like+that,453,505,699723284,10452,0 +6511,Mniejsze+z%C5%82o+0055,421,506,699794765,7553,0 +6512,Kasyno,442,510,7249451,10093,3 +6513,021,583,458,849031818,9181,0 +6514,A008,489,415,699299123,10495,0 +6515,Brat447,443,495,699262350,10476,0 +6516,NOT%3F,434,529,9236866,10042,0 +6517,Gattacka,587,501,699298370,9821,0 +6518,B068,473,472,699299123,10495,0 +6519,D03,548,463,699368887,10580,8 +6520,Front_05,460,521,2585846,3756,0 +6521,F060,489,523,699189792,9507,0 +6522,1+Mo%C5%BCesz,538,472,6923061,2525,0 +6523,002+Fiona,445,503,698290577,6893,0 +6524,02%2A,575,531,699664910,8210,0 +6525,%C5%9Amieszkii,517,556,3454753,9051,0 +6526,ADEN,555,428,698588535,10072,0 +6527,Wioska+barbarzy%C5%84ska,586,520,699851345,9700,0 +6528,Kasyno,443,517,7249451,10237,6 +6529,.achim.,527,398,6936607,10042,0 +6530,0014%7CZagrzeb,508,442,8649412,7460,0 +6531,Fajna+065,451,562,699868002,8574,0 +6532,B046,483,470,699299123,10495,0 +6534,0163,548,617,698659980,10495,0 +6536,92k%24+Grvvyq,564,536,699676005,10495,0 +6537,KIELBA+127,462,582,699342219,10226,0 +6538,%5B212%5D,545,501,8000875,8702,0 +6539,-026-,460,427,9291984,10213,0 +6540,.achim.,533,453,6936607,9401,5 +6542,Jaaa,575,546,698635863,10487,0 +6543,Yogi,492,544,2808172,10019,0 +6544,%230140+Sustanon,494,550,9272054,7225,0 +6545,087.+ALFI,475,560,8539216,1392,0 +6546,010.+ALFI,483,573,8369778,2432,0 +6547,124.,513,479,8788366,7179,0 +6548,037,543,391,1424656,9902,0 +6549,006,565,492,699099811,9835,0 +6550,Yogi,535,521,2808172,10083,0 +6551,Winter+is+coming,437,533,699856962,9439,0 +6552,043+-+B01%2A%2A%2A,434,584,225023,10495,0 +6553,042.,597,566,699373599,10068,0 +6554,%C5%9Amieszkii,506,564,3454753,9175,0 +6555,%230070+Piotr+J,497,560,9272054,10000,0 +6556,Fajna+075,455,564,699856962,5462,0 +6557,yogi,503,544,2808172,10019,0 +6558,042.+A-RE-SE-EY,569,512,848967710,10252,0 +6559,.achim.,529,450,6936607,12154,0 +6560,xxx,509,446,698239813,10495,0 +6561,JaamMwG+019,525,516,848987051,9616,0 +6562,TRR+002,410,415,698971484,10008,0 +6563,P+Konfederacja,466,438,848915730,10002,0 +6564,Sparta_40,483,578,2585846,9638,0 +6565,Piek%C5%82o+to+inni,526,425,848956765,10160,0 +6566,Monetki,480,417,699098531,10294,0 +6567,NOT%3F,413,518,9236866,10042,0 +6568,Brat447,459,500,699262350,8663,0 +6569,Szlachcic+015,558,522,758104,8024,0 +6570,058.+ALFI,484,562,8539216,1548,0 +6571,Szlachcic+%21%21%21,503,470,699098531,9565,0 +6572,Kilonia,516,552,849066849,7072,0 +6573,Jaaa,583,554,698635863,10484,0 +6574,%230082+Prawiedniki,498,554,9272054,10000,0 +6575,K45+-+012,557,466,6510480,10019,0 +6576,045+Plemi%C4%99,574,504,8323711,10495,0 +6577,%2AINTERTWINED%2A,477,544,698704189,9735,1 +6578,007,411,517,699851427,10042,0 +6579,KIELBA+029,452,577,699342219,10259,0 +6580,Burdel,550,433,848986287,10348,0 +6581,013,561,473,849031818,4358,0 +6582,Rubinowa+Dolina,535,462,8513699,5885,0 +6583,Kasyno,440,508,7249451,9994,0 +6584,P.026,538,559,873575,9913,0 +6585,Wioska+barbarzy%C5%84ska,446,530,698971484,10008,0 +6587,Yogi,541,566,2808172,10019,0 +6588,JW1,555,442,699368887,8719,0 +6589,.achim.,526,415,6936607,10311,0 +6591,A046,501,425,699299123,10336,0 +6592,050+Fresno,471,468,1497168,9761,8 +6593,Gattacka,581,496,699298370,9664,0 +6594,.achim.,532,419,6936607,10311,0 +6595,Awanturnik+1908,516,425,8649412,9080,0 +6596,006,523,515,8191129,9819,0 +6597,.achim.,532,462,6936607,10375,0 +6598,016.+A-RE-SE-EY,579,525,848967710,10252,0 +6599,Aleartis,488,544,698704189,9711,0 +6600,kathare,497,569,873575,10457,0 +6601,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,548,699364813,5942,0 +6602,%5B122%5D+North22,570,477,848985692,10054,0 +6603,ladyanima,516,571,699703642,9448,0 +6604,Kulik+003,402,511,698290577,7426,0 +6605,Wioska+0013,401,516,1804724,10188,0 +6606,%5B186%5D,540,498,848985692,8169,0 +6608,%230056+Nimesil,490,557,848896948,9976,0 +6609,Pf+Konfederacja+8,495,494,848915730,10887,0 +6610,%C5%9Amieszkiii,496,590,3454753,8820,0 +6611,Wioska+Ariel69,604,455,848925840,9771,0 +6612,P+Konfederacja,460,457,848915730,8246,0 +6613,JK6,562,446,699368887,9918,0 +6614,203+Port+au+Prince,468,462,1497168,9761,0 +6615,Monetki,473,428,699098531,9637,0 +6616,198+Alice+Springs,532,428,1497168,9902,5 +6617,P+Konfederacja+8,452,445,848915730,9808,0 +6618,xxx,504,448,698239813,10495,0 +6619,%7E%7ELataj%C4%85cyHolender%7E%7E,588,512,9174887,10149,0 +6620,Gattacka,582,495,699298370,9744,1 +6621,Barba,434,502,698971484,10008,0 +6622,.%3A037%3A.+Chillout,518,452,848934935,8829,0 +6623,Gratuluje+m%C3%B3zgu,441,537,698971484,5841,0 +6624,Suppi,426,450,699856962,9559,0 +6625,CALL+971,548,558,699784536,10311,6 +6626,Entrance,524,612,8199417,10495,0 +6627,Lord+Arsey+KING,528,491,848956513,10285,0 +6628,Wioska+2,428,538,9236866,5111,0 +6629,SsSs,422,503,1536625,9734,0 +6630,WesternGold,539,536,699785935,9578,0 +6631,044.+ALFI,485,564,8539216,1909,0 +6632,Dum+Spiro+Spero,493,556,848896948,9976,0 +6633,A%23044%23,423,477,698807570,11706,0 +6634,-027-,461,419,9291984,10479,0 +6636,11+S%C5%82owacja,589,486,8925695,6473,0 +6637,Os+Konfederacja,474,444,848915730,10068,0 +6638,Szlachcic,572,509,698867446,9721,0 +6639,C011,526,457,699299123,10954,0 +6640,Dum+Spiro+Spero,494,551,848896948,10000,0 +6641,Piek%C5%82o+to+inni,528,427,848956765,10160,0 +6642,Suppi,441,525,699856962,9627,0 +6643,022,463,525,2585846,1874,0 +6644,NOT%3F,433,521,9236866,10042,0 +6645,%3A%28.,542,474,698867483,8468,0 +6646,ABADON+STAY,568,489,699347951,9172,0 +6648,%5B073%5D+Patua+koe,536,509,848985692,10011,0 +6649,Szlachcic+058,576,519,758104,9338,0 +6650,CALL+986,555,556,699784536,10311,0 +6651,Winter+is+coming,439,529,699856962,9885,0 +6652,4+c4bat,439,563,8779575,9561,0 +6653,.achim.,534,421,6936607,10336,0 +6654,175+Bahia+Blanca,483,478,1497168,9761,0 +6655,%5B128%5D+North28,577,478,848985692,10400,0 +6656,Village,517,578,849094067,12154,0 +6657,091,558,397,849064752,10311,0 +6658,KIELBA+102,444,567,699342219,10229,0 +6659,.%3A067%3A.+Chillout,506,415,848934935,10636,3 +6660,Village,502,567,849094067,12154,0 +6661,Ogr%C3%B3d+Warzywny,454,560,7249451,8103,9 +6662,Oleole,436,555,699443920,4022,0 +6663,KIELBA+056,457,589,699342219,10290,0 +6664,002,446,526,698971484,10008,0 +6665,%5B134%5D,557,542,8000875,9494,0 +6666,008511,439,442,3909522,7809,0 +6667,Cast+Away+004,451,491,698290577,7876,0 +6668,-%3D+007+%3D-,443,514,698971484,10008,0 +6669,Szmaragdowa+Wyspa,537,467,8513699,4884,0 +6670,WioskaE,510,581,8369778,8367,0 +6671,Wioska+taysi,516,427,848942847,1917,0 +6672,0.+Mob,521,582,698215322,10241,0 +6673,Szlachcic,572,505,698867446,9721,0 +6674,%5B182%5D,543,518,848985692,7592,0 +6675,.achim.,528,415,6936607,10311,0 +6676,F085,490,518,699189792,9351,0 +6677,Kasyno,443,516,7249451,10104,0 +6678,A004,481,405,699299123,10495,0 +6679,x005,428,499,698290577,7063,5 +6681,keepo,484,525,848967710,10452,0 +6682,048+Miami,452,467,1497168,9761,0 +6683,Wioska+barbarzy%C5%84ska,443,440,9291984,10405,0 +6685,Wioska+%2ASwiss%2ABang%2A,445,519,698971484,8921,0 +6686,Osada,507,453,699098531,7840,0 +6687,FilipVII,442,531,699856962,9533,7 +6688,109+Sept-Iles,479,481,1497168,9825,0 +6689,Mniejsze+z%C5%82o+0032,418,512,699794765,8159,0 +6690,%5B071%5D,558,548,8000875,9894,0 +6691,KONFA+TO+MARKA%2C+NARKA,450,471,698152377,10311,0 +6692,C+016,563,395,6384450,10362,0 +6693,002,539,471,849091084,9128,0 +6695,005,603,459,8459255,10195,0 +6696,B012,490,449,699299123,10487,0 +6697,007+Tucson,440,469,1497168,9761,0 +6698,-+218+-,548,577,849018239,10000,0 +6699,013,461,531,2585846,2803,0 +6700,Pf+Konfederacja,495,499,848915730,9912,7 +6701,Brat447,447,495,699262350,10495,0 +6702,F044,485,523,699189792,9203,0 +6703,Brat447,463,503,699262350,5878,0 +6704,Szlachcic,495,461,699098531,9693,0 +6705,F066,484,519,699189792,9122,0 +6706,Lord+Arsey+KING,530,487,848956513,10285,0 +6707,%230135+Barbarian,552,542,9272054,5223,0 +6708,163+Ale+mnie+g%C5%82%C3%B3wka+boli,385,548,699382126,10636,0 +6709,075,413,523,699851427,10042,0 +6710,Szlachcic,468,421,698388578,10237,0 +6711,%21Rapidash,566,447,699795378,10160,0 +6712,0029+K54+and987+OZDR.,487,549,3613413,9856,6 +6713,%2B44+62+L+Arbresle,429,463,698361257,9669,0 +6714,-028-,466,434,9291984,10822,0 +6715,Szlachcic,505,476,699098531,10164,0 +6716,Omonomo,438,556,699443920,2950,0 +6717,Szlachcic+014,571,534,758104,9338,0 +6718,NOT+FOR+YOU,458,555,9236866,4914,0 +6719,Jaaa,570,538,698635863,10484,0 +6720,Ogr%C3%B3d+Warzywny,449,559,7249451,7660,0 +6721,005+Palm+Springs,444,469,1497168,10019,4 +6722,Mzm34,592,507,7142659,10362,0 +6723,Szlachcic,559,470,698867446,9771,0 +6724,ZS03,450,527,698971484,10008,2 +6725,Os+Konfederacja+8,482,460,848915730,9861,0 +6726,Lord+Arsey+KING,510,524,848956513,10285,0 +6727,2.Skorpion+%21%21%21,499,541,849087855,10000,0 +6728,PRO8L3M,427,499,7491093,9513,0 +6729,0051+K55+and987+OZDR,508,552,3613413,9878,0 +6730,%7C014%7C,554,571,873575,10336,0 +6731,Szlachcic,484,479,699098531,10357,8 +6732,041+%7C,561,560,8000875,10495,0 +6733,Os+Konfederacja,475,451,848915730,9969,0 +6734,Cast+Away+002,454,493,698290577,4853,0 +6735,-+212+-,547,574,849018239,10000,0 +6736,0003,614,529,6510480,10320,0 +6737,-xx11,497,494,848967710,10252,0 +6738,Szlachcic,494,482,699098531,10311,3 +6739,9.9.1+Legiony,544,442,8444356,5916,0 +6740,Pf+Konfederacja,494,484,699098531,10044,0 +6741,Szlachcic,558,480,699759128,10237,0 +6742,047.,500,490,8788366,10728,0 +6743,Azymut%21,498,503,699785935,9835,0 +6744,yogi,532,530,2808172,6530,0 +6745,%3F%2B44+85+Colombier+Saugnieu,454,482,698361257,9722,0 +6746,%7E%7ELataj%C4%85cyHolender%7E%7E,585,511,9174887,10252,0 +6747,%2AAteny_18,467,526,2585846,2869,0 +6748,NOT%3F,431,526,9236866,10042,0 +6749,R%C4%99cznik+do+zmiany,416,495,699697558,10362,0 +6751,Mzm18,567,524,7142659,10252,0 +6752,KONFA+TO+MARKA%2C+NARKA,427,462,698152377,10303,0 +6753,%23Sawk,566,466,699795378,10654,0 +6754,Szlachcic,509,457,699098531,9217,0 +6755,...Just+like+that,454,487,699723284,10452,0 +6757,034,437,488,699510259,9761,0 +6758,ADEN,561,443,698588535,8836,0 +6759,P+Konfederacja,460,450,848915730,10031,0 +6760,052.+A-RE-SE-EY,546,516,848967710,10252,6 +6761,033+%7C,569,551,8000875,10146,0 +6762,028,569,547,699316421,9744,0 +6763,Annapurna,380,486,699265922,9825,0 +6764,A%23051%23,415,472,698807570,10877,0 +6765,Brat447,462,512,699262350,9510,0 +6766,045,428,517,699851427,10042,0 +6768,Wioska+001,593,580,848971079,9761,0 +6769,Diss+na+budzik%21,495,507,699785935,10178,4 +6770,%23019,540,592,849001572,9866,0 +6771,Warzywniak+013,448,546,698290577,1521,7 +6772,SsSs,420,501,1536625,10160,0 +6773,Szlachcic,567,494,698867446,10029,0 +6774,7.62+mm,504,434,699777234,9707,0 +6775,Os+Konfederacja,483,440,848915730,3947,0 +6776,088,540,495,699351301,9963,0 +6777,014,558,457,699368887,5418,0 +6778,xxx,497,428,698239813,10495,0 +6779,Szlachcic,507,457,699098531,9177,0 +6780,PRO8L3M,457,480,7491093,10311,0 +6781,pogl%C4%85dowo%C5%9Bci+Z,569,546,699664910,5647,0 +6782,Warzywniak+005,447,547,698290577,865,0 +6783,Szlachcic+036,551,522,758104,9241,0 +6784,063,419,509,699851427,10129,0 +6785,Szlachcic,500,476,699098531,10311,0 +6786,074.,501,481,8788366,10252,0 +6787,Wioska+barbarzy%C5%84ska,501,416,699658023,8876,0 +6788,SsSs,436,497,1536625,9398,0 +6789,0029,508,495,698599365,10143,0 +6790,-%5B016%5D-+Tenzing+Peak,550,489,849092827,8430,0 +6791,Wioska+barbarzy%C5%84ska,564,451,699368887,9994,0 +6792,052,423,523,699851427,10042,0 +6793,%230081+Barabasz,483,557,9272054,10011,0 +6794,K44+016,435,485,698290577,7124,0 +6795,Zasiedmiog%C3%B3rogr%C3%B3d,535,427,699433558,10068,0 +6796,177+Punta+del+Diablo,479,480,1497168,9761,0 +6797,Front_34,455,520,2585846,9638,0 +6798,0113,471,546,698659980,9233,0 +6799,0010+pech,504,498,698599365,10019,0 +6800,KONFA+TO+MARKA%2C+NARKA,449,455,698152377,10536,0 +6801,COUS,493,581,8369778,10209,0 +6802,%5B125%5D,557,541,8000875,9912,0 +6803,Yogi,533,537,2808172,5469,0 +6804,Wioska+barbarzy%C5%84ska,500,484,699098531,9835,0 +6805,B005,555,503,8138506,6721,0 +6807,Butem+w+Morgen,488,510,848967710,10114,0 +6808,Wioska+barbarzy%C5%84ska,460,575,8438707,7350,0 +6809,031.+A-RE-SE-EY,571,533,848967710,10252,0 +6810,Osada,512,454,699098531,7159,0 +6811,BETI+010,459,568,8539216,1791,0 +6812,040,424,524,699851427,10129,0 +6813,020,581,459,849031818,7496,0 +6814,JaamMwG+023,528,530,848987051,8622,0 +6815,Szlachcic+%21%21%21,496,466,699098531,9522,0 +6816,066.+ALFI,470,566,8539216,1452,0 +6817,Lord+Arsey+KING,528,489,848956513,10285,0 +6818,%230022+Robercik,493,564,9272054,10019,0 +6819,Lord+Arsey+KING,522,488,848956513,10285,0 +6820,0592,476,547,698659980,10059,0 +6821,Szlachcic,500,458,699098531,10636,0 +6822,Suppi,428,449,699856962,9905,0 +6823,054+%7C,565,561,8000875,10068,3 +6824,080.,570,459,849094609,10375,0 +6825,Horyzont+zdarze%C5%84,528,545,7581876,9835,0 +6826,008.+Rivia,559,396,699799629,10495,0 +6827,Szlachcic,567,484,698867446,9580,0 +6828,B016,481,451,699299123,10495,0 +6829,monetki,508,441,699098531,9835,0 +6830,Daj+mi+zna%C4%87,511,508,699785935,7083,0 +6831,%3F%2B44+85+Fort+Mahon+Plage,455,482,698361257,9653,0 +6832,002.+Mediolanum,611,460,849091866,9379,0 +6833,KONFA+TO+MARKA%2C+NARKA,436,463,698152377,10295,0 +6835,Wioska+Barbarzy%C5%84ska,545,495,698867483,10019,0 +6836,-%5B011%5D-+Gaszerbrum+I,550,483,849092827,8078,0 +6837,Butem+w+Morgen,492,511,848967710,10559,0 +6838,20022,504,547,848915531,9175,0 +6839,Szlachcic,490,467,699098531,10292,0 +6840,P.030,543,560,873575,10636,0 +6841,.%3A035%3A.+Chillout,522,449,848934935,3082,0 +6842,Horyzont+zdarze%C5%84,527,544,7581876,9835,2 +6844,Cast+Away+014,454,483,698290577,10073,0 +6845,CHW%23024r,487,537,698704189,9711,0 +6846,Piek%C5%82o+to+inni,524,442,848956765,10160,0 +6847,013,569,467,849070464,8493,0 +6848,%5BA%5D_%5B032%5D+Dejv.oldplyr,408,475,699380607,10401,0 +6849,Mzm17.,559,519,7142659,10362,0 +6850,KONFA+TO+MARKA%2C+NARKA,429,461,698152377,10292,0 +6851,ChceszPokojuSzykujSi%C4%99DoWojny,454,516,699333701,9835,0 +6852,B001,558,502,8138506,10019,0 +6853,Front_24,455,530,699856962,9648,0 +6854,%2B44+75+Lyon+Menival,452,473,698361257,9846,0 +6855,%2AINTERTWINED%2A,532,566,698704189,9711,0 +6857,Suppi,440,519,699856962,9734,0 +6858,%5B020%5D+Membunuhmu,590,521,848985692,10211,0 +6859,.achim.,541,466,6936607,9415,0 +6861,Kaczystan,550,425,848986287,9576,0 +6862,Carsultyal.,484,557,698704189,9711,0 +6863,06+Hazard,614,515,9314079,9624,0 +6864,0019,507,497,698599365,10019,0 +6865,%28025%29,418,537,9236866,9156,0 +6866,029,527,572,699189792,9742,0 +6867,-029-,466,423,9291984,10479,0 +6868,KONFA+TO+MARKA%2C+NARKA,422,460,698152377,10297,0 +6869,Szlachcic,499,461,699098531,9693,0 +6870,Zasiedmiog%C3%B3rogr%C3%B3d,517,436,699433558,10224,9 +6871,Wioska,381,503,849084005,10178,0 +6872,Wioska+barbarzy%C5%84ska,457,539,699698253,9761,0 +6873,A015,490,412,699299123,10495,0 +6874,Osada,503,453,699098531,9623,0 +6875,Front_02,461,520,2585846,3747,0 +6876,008,478,606,8925624,5143,0 +6877,%5B086%5D,550,511,8000875,8596,0 +6878,Wioska+barbarzy%C5%84ska+016%7C,572,402,6343784,9582,0 +6879,009+Fiona,447,508,698290577,5050,0 +6880,C004,521,456,699299123,10971,0 +6881,Zasiedmiog%C3%B3rogr%C3%B3d,544,417,699433558,10311,0 +6882,005,564,491,699099811,10068,0 +6883,Piek%C5%82o+to+inni,517,472,848956765,9761,0 +6884,056.,511,494,8788366,10252,0 +6885,%5B153%5D,562,537,8000875,6589,0 +6886,szkot,486,620,699494488,10226,0 +6887,.%3A126%3A.+Niangmen,518,414,848934935,9976,0 +6888,022.+Wioska+Lord+Pumbarak,565,517,8788366,10252,8 +6889,F059,489,525,699189792,9584,0 +6890,CALL+950,552,553,699784536,10311,0 +6891,%2B44+72+Leffrinckouque,428,475,698361257,9841,2 +6892,Szlachcic,494,481,699098531,9715,0 +6893,B021,483,456,699299123,10495,9 +6894,Alltimov,501,417,699658023,7724,0 +6895,Szlachcic+%21%21%21,504,469,699098531,10068,4 +6896,Konfiasze,473,496,698908912,10492,0 +6897,Piek%C5%82o+to+inni,521,429,848956765,10160,0 +6898,20018,514,549,848915531,11321,0 +6899,011+Portland,445,472,1497168,9761,0 +6900,062+%7C,549,508,8000875,10476,3 +6901,0033,463,611,698659980,10019,0 +6902,074.+ALFI,485,559,8539216,1475,0 +6903,Szlachcic+056,562,530,758104,8024,0 +6904,076,565,396,849064752,10311,0 +6905,062.+ALFI,469,568,8539216,1433,0 +6907,kto+ananasowy+pod+wod%C4%85+ma+dom,572,498,699628084,9797,0 +6908,064+New+York+City,463,475,1497168,9761,6 +6909,080+Little+Rock,470,475,1497168,9761,0 +6910,ChceszPokojuSzykujSi%C4%99DoWojny,455,518,699333701,8474,0 +6911,.achim.,534,419,6936607,10311,0 +6912,040+%7C,560,565,8000875,10149,0 +6913,...,493,538,848915531,9501,0 +6914,%7E%7ELataj%C4%85cyHolender%7E%7E,560,508,9174887,10210,0 +6915,Wioska+barbarzy%C5%84ska,446,529,698971484,10008,0 +6916,CALL+1083,534,548,699784536,10495,0 +6917,1h10+jeszcze+d%C5%82u%C5%BCej,551,458,699368887,6548,0 +6918,A003,488,411,699299123,10495,0 +6919,111+Ok%3F+Ok.,539,455,7092442,10495,0 +6920,%23064,474,575,849001572,8142,0 +6921,7.62+mm,504,435,699777234,9026,0 +6922,A%23045%23,412,479,698807570,11106,0 +6923,Bye+Bye+Beautiful,491,511,699785935,10362,0 +6924,0026,527,502,699432672,10495,0 +6925,168+Ale+mnie+g%C5%82%C3%B3wka+boli,387,542,699382126,10636,0 +6926,223+Canberra,532,441,1497168,9261,0 +6927,Sparta_35,480,578,2585846,9638,0 +6928,041+Plemi%C4%99,574,502,8323711,10155,0 +6929,Witam+w+wietnamie,419,549,698971484,10008,0 +6930,Szlachcic,501,476,699098531,10303,0 +6931,106+Regina,472,488,1497168,9761,0 +6932,084.+ALFI,482,553,3613413,2339,1 +6933,006,485,525,849092723,9411,0 +6934,PRO8L3M,468,490,7491093,9899,0 +6935,Fajna+046,458,558,3613413,3797,0 +6936,Monetki,474,421,699098531,10290,0 +6937,Wystrzeli%C5%82em+si%C4%99+Tob%C4%85+%21,500,508,699785935,10083,0 +6938,To+chyba+to,483,503,698290577,5311,0 +6939,Tesa+15,533,496,698845189,4065,0 +6940,NOT%3F,428,531,9236866,10042,0 +6941,Mzm26,556,534,7142659,10362,0 +6942,Wioska+barbarzy%C5%84ska,451,518,698971484,8111,0 +6943,Winter+is+coming,438,538,699856962,9069,0 +6944,Lord+Arsey+KING,536,534,848956513,10285,0 +6945,Lincoln,554,446,699368887,5291,0 +6946,KONFA+TO+MARKA%2C+NARKA,446,469,698152377,10291,0 +6947,Szlachcic+005,567,547,758104,9338,0 +6948,033.+Apus,511,581,699703642,7606,0 +6949,0055+K55+and987+OZDR,507,562,3613413,10495,0 +6950,%230095+Zastawek,474,558,9272054,7898,0 +6951,xxx,506,444,698239813,10495,8 +6952,%2AINTERTWINED%2A%2A,503,546,698704189,9711,0 +6953,%7E%7ELataj%C4%85cyHolender%7E%7E,577,498,9174887,8272,0 +6954,Ho%C5%82opole,488,410,699433558,9976,0 +6955,%2AAteny_07,469,536,699856962,9643,0 +6956,WINTER+IS+COMING,471,504,1536625,9763,0 +6957,NOT%3F,434,524,9236866,10042,0 +6958,Sparta_30,484,578,2585846,7270,4 +6960,A044,496,421,699299123,10495,0 +6961,Winter+is+coming,504,583,699364813,9643,0 +6962,-+124+-,536,581,849018239,10000,0 +6963,021,574,548,699316421,9532,0 +6964,Amsterdam,538,386,698350371,10495,0 +6965,007,507,539,848915531,11305,0 +6966,keepo,483,529,848967710,9270,0 +6967,Wioska+418,557,511,477415,10495,0 +6968,Wioska+barbarzy%C5%84ska,438,418,849027025,9585,0 +6969,0035,553,494,699432672,4866,0 +6970,keepo,479,514,848967710,6050,0 +6971,%2B44+61+Marcy+LEtoile,418,462,698361257,9849,0 +6972,%5B200%5D+WEST,611,457,848985692,10047,0 +6973,%3Ac.,543,474,698867483,10019,0 +6974,%3F%2B44+85+Saint+Georges+sur+lAa,456,484,698361257,9653,0 +6975,Lord+Arsey+KING,521,499,848956513,8651,0 +6976,SsSs,462,500,1536625,7624,0 +6977,KONFA+TO+MARKA%2C+NARKA,400,469,698152377,12154,0 +6978,0144,467,552,698659980,7547,0 +6979,Napewno+to+nie+jest+off,494,412,848912265,10495,0 +6980,Monetki,480,424,699098531,10162,0 +6981,POGRZEB+GRUBYCH,539,446,8155296,10947,0 +6982,013,462,574,848886870,10252,0 +6983,005.+A-RE-SE-EY,585,530,848967710,10252,0 +6984,5.No+cheba,506,457,8649412,5971,0 +6985,Kentin+ufam+Tobie,408,491,699783765,10000,0 +6986,Monetki,475,414,699098531,10291,0 +6987,Micha%C5%82,530,536,848967710,10495,0 +6988,B021,496,494,848967710,10495,0 +6989,003,434,551,699856962,2992,0 +6990,NOT+FOR+YOU,456,551,9236866,7870,0 +6991,Weso%C5%82ych+%C5%9Awi%C4%85t,563,452,699368887,8627,0 +6992,018.KAT,556,484,849031818,8199,0 +6993,Lord+Arsey+KING,513,527,848956513,10285,0 +6994,budzik,443,535,698971484,8717,0 +6995,Szlachcic+046,549,518,758104,9338,0 +6996,-042-,456,425,9291984,10479,3 +6997,Skanned,555,445,699368887,3975,0 +6998,0091,469,556,698659980,8240,0 +6999,MasteroN+09,571,445,699379895,9869,0 +7000,Wioska+barbarzy%C5%84ska,581,486,1715091,8257,0 +7001,4xxxxxxxxxxxx,464,436,9291984,10042,0 +7002,EEE,530,458,849091084,9135,0 +7003,Szlachcic,579,497,699759128,10237,0 +7004,L+5,613,478,849027653,10316,0 +7005,x+A23,551,461,3909522,6570,0 +7006,Wioska+barbarzy%C5%84ska,485,509,848967710,10252,0 +7007,.achim.,530,451,6936607,8361,0 +7008,006,475,506,699781762,10297,0 +7009,A036,494,410,699299123,7481,0 +7010,%5B0059%5D,416,415,8630972,10495,0 +7011,Domek+2,547,423,849064614,9761,0 +7012,050,411,484,699510259,9761,0 +7013,0000,451,427,3909522,10495,9 +7014,Z04+Rivan,561,522,699272880,10186,0 +7015,KONFA+TO+MARKA%2C+NARKA,452,459,698152377,10539,0 +7016,0012,507,505,698599365,10019,0 +7017,Piek%C5%82o+to+inni,524,428,848956765,10160,0 +7018,CALL+944,551,555,699784536,10311,0 +7019,K44+022,428,496,698290577,5573,0 +7020,Marienburg+1,524,481,699355601,9690,0 +7021,2.+Jagdtiger,494,527,849087855,8995,0 +7022,029,534,431,699788305,8600,0 +7023,.achim.,517,445,6936607,8642,0 +7024,Kasyno,442,511,7249451,9817,3 +7025,Wioska+barbarzy%C5%84ska,419,541,699846892,1470,0 +7026,Szlachcic,489,480,699098531,10297,0 +7027,030+Kentucky,607,488,7092442,10495,0 +7028,Monetki,471,419,699098531,10292,0 +7029,Wioska+Wojtek150+002,534,519,7581876,10019,1 +7030,Fajna+051,448,555,698971484,6153,0 +7031,Mniejsze+z%C5%82o+0056,420,504,699794765,6628,0 +7032,Warzywniak+021,452,548,698290577,1546,0 +7033,Gattacka,590,491,699298370,9744,0 +7035,F031,500,531,699189792,9761,0 +7036,Front_35,455,521,2585846,3751,0 +7037,0063+Cr250r,455,428,3909522,9562,0 +7038,%5B096%5D,541,482,848985692,9835,0 +7039,%5B133%5D+North,582,474,848985692,10054,0 +7040,%C5%9Amieszkiii,499,567,3454753,9303,0 +7041,NOT%3F,429,493,9236866,10060,0 +7042,0062+%7E41%7EWioska,444,432,3909522,8208,0 +7043,PRO8L3M,449,501,7491093,10068,0 +7044,Osada,502,443,699098531,9960,0 +7045,%230069+Mateusz+W,494,548,9272054,10019,0 +7046,Piek%C5%82o+to+inni,524,438,848956765,10160,0 +7047,Piek%C5%82o+to+inni,509,467,848956765,9215,0 +7048,Jaaa,584,534,698635863,10476,0 +7049,Monetki,481,435,699098531,10300,1 +7050,006+Lavender+Town,587,493,699441366,11109,0 +7051,10008,523,566,848915531,6788,0 +7052,Szlachcic,483,472,699098531,9690,0 +7053,B049,477,464,699299123,10495,0 +7054,-%5B200%5D-+Mont+Blanc,575,446,849092827,9650,0 +7055,PRO8L3M,462,492,7491093,8788,0 +7056,Osada,508,451,699098531,9279,0 +7057,013W+JaCoB%2A,561,511,8323711,10495,0 +7058,10003,527,568,848915531,10838,0 +7059,Wioska+barbarzy%C5%84ska,434,507,698971484,10008,0 +7060,%5BA%5D_%5B006%5D+Dejv.oldplyr,398,483,699380607,10495,0 +7061,Winter+is+coming,504,572,699364813,10311,0 +7062,ADEN,524,381,698588535,10268,0 +7063,KONFA+TO+MARKA%2C+NARKA,425,462,698152377,10311,0 +7064,Taran,545,384,699170684,9566,0 +7065,NOT%3F,418,514,9236866,10042,0 +7066,kek,536,519,848967710,9444,0 +7067,091,540,496,699351301,10108,0 +7068,JaamMwG+029,525,521,848987051,9975,0 +7069,7.62+mm,490,429,699777234,10019,0 +7070,ADEN,528,381,698588535,9819,0 +7071,Brat447,434,488,699262350,6053,0 +7072,007,465,583,848886870,10495,0 +7073,0017%7CPraga,511,444,699098531,8302,0 +7074,-004-,512,543,7581876,10019,4 +7075,016,481,583,7976264,9109,0 +7076,Gattacka,590,497,699298370,9753,0 +7077,%2AINTERTWINED%2A%2A,461,558,698704189,9318,0 +7078,Mzm47,557,520,7142659,7896,0 +7079,00976+ZARABIAM+PP,462,439,3909522,5913,0 +7080,Pf+Konfederacja,490,494,848915730,9938,0 +7081,002,554,540,699194766,9553,0 +7082,-+095+-,546,576,849018239,10000,0 +7083,Brat447,456,498,699262350,9159,0 +7084,-045-,464,425,9291984,10236,6 +7085,PRO8L3M,430,492,7491093,8812,0 +7086,%5B114%5D+North14,574,477,848985692,9975,0 +7087,EXA,606,531,848967710,10495,0 +7088,Piek%C5%82o+to+inni,520,432,848956765,10160,0 +7089,Szlachcic,496,458,699098531,9701,0 +7091,PRO8L3M,409,494,7491093,9359,0 +7092,%230029+%C5%9Awi%C4%99toch%C5%82owice,482,560,9272054,10008,1 +7093,KONIEC,509,494,699785935,9835,0 +7094,Pf+Konfederacja+8,488,488,848915730,9955,0 +7095,NOT%3F,432,534,9236866,5905,0 +7096,MONNN,506,437,698239813,10971,0 +7097,NOT%3F,426,542,9236866,8229,0 +7098,SsSs,423,484,1536625,8937,0 +7099,xxx,515,460,698239813,9162,0 +7100,F056,506,533,699189792,9516,0 +7101,Winter+is+coming,504,584,699364813,10068,0 +7102,035.,479,618,699494488,10495,0 +7103,%5B062%5D+O+i+jest+Psikus,532,503,848985692,10088,0 +7104,050,540,418,699761749,10495,0 +7105,kek,534,515,848967710,7326,0 +7106,006.+Kikimora,509,589,699703642,9761,0 +7107,Szlachcic,491,468,699098531,9472,0 +7108,%2AINTERTWINED%2A,472,569,698704189,9711,0 +7109,Szlachcic+029,554,520,758104,9230,0 +7110,P+Konfederacja,459,446,848915730,10068,0 +7111,008,553,530,699316421,9744,0 +7112,001,538,471,849091084,8787,0 +7114,Winter+is+coming,463,603,699364813,4273,0 +7115,xxx,505,437,698239813,10495,0 +7116,%21+011,556,467,477415,9966,0 +7117,Tu+obok+ju%C5%BC+nie+macie+tyle+defa%3F,583,413,848985692,10362,0 +7118,053.,522,557,699695167,9902,0 +7119,036,412,521,699851427,10129,0 +7120,Vaes+Drakaris,476,611,699494488,10495,0 +7121,Monetki,472,418,699098531,10292,0 +7122,.%3A027%3A.+Kaktus,504,430,8649412,10273,0 +7123,031.+ALFI+-+2%2C5,479,571,8539216,1627,0 +7124,%230044+Yagami+W%C3%B3dz,495,557,9272054,10000,7 +7125,00705,450,441,3909522,9036,0 +7126,.achim.,540,427,6936607,10273,0 +7127,F079,502,537,699189792,8829,0 +7128,nie+atakujcie+mnie%3A%28,445,553,698971484,2593,0 +7129,a+Wioska+2,453,533,3909522,7710,0 +7130,-Cze%C5%9B%C4%87%21+Jak+si%C4%99+masz%3F+%3A%29,515,515,699785935,10083,0 +7131,Osada+1,431,505,698971484,10008,1 +7132,0087,447,439,3909522,9637,0 +7133,Szlachcic,575,488,699759128,10237,0 +7134,NOT%3F,414,504,9236866,10042,0 +7135,058.,515,504,8788366,8377,0 +7136,002,602,464,8459255,10093,0 +7137,Wioska+barbarzy%C5%84ska,527,505,848967710,10252,0 +7138,Jaaa,571,540,698635863,10490,0 +7139,Merhet,521,583,698215322,10136,0 +7140,0Wioska+barbarzy%C5%84ska,480,527,699781762,10193,0 +7141,Szlachcic,467,417,698388578,10237,0 +7142,R%C4%99cznik+do+zmiany,415,485,699697558,12154,0 +7143,181+Maracaibo,467,454,1497168,9825,0 +7144,032,565,551,699316421,9744,0 +7145,Wioska+barbarzy%C5%84ska,432,512,698971484,10008,0 +7146,Zasiedmiog%C3%B3rogr%C3%B3d,536,426,699433558,8726,5 +7147,%5B090%5D,555,544,8000875,9888,0 +7148,-%5B012%5D-+Broad+Peak,556,478,849092827,8113,0 +7149,BETI+011,464,558,8539216,886,0 +7150,%28016%29,424,539,699846892,9926,0 +7151,Lord+Arsey+KING,500,473,848956513,10285,0 +7152,103+Montreal,468,482,1497168,9761,0 +7153,KIELBA+099,447,569,699342219,10320,7 +7154,011,586,414,849064752,10311,0 +7155,yogi,523,524,2808172,11074,0 +7156,Winter+is+coming,438,534,699856962,6930,0 +7157,06%2A,568,543,699664910,8922,8 +7158,B058,477,474,699299123,10495,0 +7159,Warzywniak+008,444,544,698290577,1404,0 +7160,SsSs,397,505,1536625,9979,0 +7161,-x9,497,497,848967710,10252,0 +7162,048.,548,476,849094609,10495,0 +7163,xxx,512,441,698239813,10495,0 +7164,B056,474,470,699299123,9003,0 +7165,kto+ananasowy+pod+wod%C4%85+ma+dom,574,503,699628084,9797,0 +7166,Wioska+barbarzy%C5%84ska,442,544,698971484,2617,0 +7167,Suppi,426,453,699856962,9806,0 +7168,Szlachcic,392,480,6258092,10160,0 +7169,046,489,398,698739350,8504,0 +7170,Fffff,422,581,225023,10297,0 +7171,KONFA+TO+MARKA%2C+NARKA,428,464,698152377,10361,0 +7172,Wioska,386,539,849084005,10178,0 +7173,0018,463,466,848913037,9993,0 +7174,ChceszPokojuSzykujSi%C4%99DoWojny,466,512,699333701,8864,0 +7175,002,548,473,699368887,10005,0 +7176,051.,497,487,8788366,10393,0 +7177,P+Konfederacja,459,455,848915730,9797,0 +7178,xxx,499,435,698239813,10495,0 +7179,Szlachcic,564,497,698867446,9721,0 +7180,Szlachcic+045,570,528,758104,9338,0 +7181,%2AINTERTWINED%2A,463,563,698704189,9433,0 +7182,063,586,481,699573053,10495,0 +7183,kathare,494,575,873575,10495,0 +7184,szlachcic,440,542,698971484,2435,0 +7185,.achim.,528,454,6936607,8373,0 +7186,xxx,461,418,9291984,8934,0 +7187,10013,529,556,848915531,8674,0 +7189,027.+A-RE-SE-EY,574,532,848967710,10252,0 +7190,C+Zach+008+Tarnowskie+G,411,571,849084740,9352,0 +7191,026,467,524,2585846,3503,0 +7192,Z03+Qeqertat,562,513,699272880,10006,0 +7193,B027,478,457,699299123,10149,0 +7194,0024,526,512,699432672,10495,1 +7195,Fajna+052,449,556,698971484,8229,0 +7196,046+%7C,559,566,8000875,10104,0 +7197,CALL+1023,543,565,699784536,10311,0 +7198,-+045+-,533,570,849018239,10000,0 +7200,075.+ALFI,466,571,8539216,1330,0 +7201,050.+ALFI,480,563,8539216,1517,0 +7202,%5B129%5D+North29,577,477,848985692,10391,0 +7203,0009,468,608,33900,9975,0 +7204,147+Zihuatanejo,466,487,1497168,9761,0 +7205,Tesa+10,533,491,698845189,10252,0 +7206,Merhet,519,587,698215322,5762,0 +7207,Mzm03,601,528,7142659,10362,0 +7208,...,436,507,698971484,10008,0 +7209,Selonari,459,558,3613413,9150,0 +7210,012,460,577,848886870,10495,0 +7211,0034,554,496,699432672,5339,0 +7212,Feed+me+more+004,497,379,699756210,10160,0 +7213,0177,471,541,698659980,10083,0 +7214,%7C013%7C,556,571,873575,10433,0 +7215,017+TNN,561,490,849031818,7804,0 +7216,Nospa,456,571,699443920,10396,0 +7217,Wioska+mockingcoffin,621,525,849053122,2886,0 +7218,154+Puerto+Barrios,454,457,1497168,9761,0 +7219,KIELBA+094,445,566,699342219,10495,0 +7220,xxx,503,426,698239813,10495,0 +7221,003+Virginia+Beach,441,478,1497168,9761,5 +7222,CALL+1034,544,545,699784536,10311,0 +7223,Niby+to+myszy+w+nocy+harcuj%C4%85..,545,525,8649412,9116,0 +7224,031+Colorado+Springs,423,420,9291984,10484,0 +7225,050.,507,489,8788366,10252,0 +7226,Front_29,453,531,2585846,5763,0 +7227,5+pompk%C4%99,530,459,6923061,1886,0 +7228,kto+ananasowy+pod+wod%C4%85+ma+dom,568,504,699628084,9797,0 +7229,226+Wellington,533,442,1497168,8850,0 +7231,7.62+mm,467,435,699777234,10019,0 +7232,ChceszPokojuSzykujSi%C4%99DoWojny,453,514,699333701,10147,0 +7233,Lord+Arsey+KING,515,524,848956513,10285,0 +7234,NOT%3F,424,519,9236866,10042,0 +7235,008+Czary+mary,588,463,698829590,8603,0 +7236,COUS%2C,493,580,8369778,7043,0 +7237,081.+ALFI,479,558,8539216,1814,0 +7238,Sparta_42,481,581,2585846,9638,0 +7239,%21+Wioska+MMM,557,497,477415,4051,0 +7240,-004-+Uszka+mee,455,413,9291984,10479,0 +7241,Osada,499,443,699098531,10294,0 +7242,047+Idaho+Falls,469,471,1497168,9761,0 +7243,A054,497,425,699299123,10495,0 +7244,121.,495,485,8788366,8565,0 +7245,%7E%7ELataj%C4%85cyHolender%7E%7E,567,497,9174887,10160,0 +7246,Wioska+Barbarzy%C5%84ska,544,496,698867483,9013,0 +7247,JF6,553,458,699368887,6984,0 +7248,039.,506,491,8788366,10252,0 +7249,-+211+-,548,576,849018239,10000,0 +7250,P+Konfederacja+8,458,447,848915730,9812,0 +7251,Szlachcic,581,501,699759128,10237,0 +7252,ROHAN,536,465,8155296,9383,0 +7253,.54,428,509,848955783,10291,0 +7254,8.+Gruzowisko,543,434,8444356,10471,0 +7255,Suppi,439,518,699856962,9565,0 +7256,0228,451,612,698659980,10495,0 +7257,7.62+mm,502,442,699777234,10019,0 +7258,MYSZO%C5%81%C3%93W,539,512,8155296,10286,0 +7259,Weso%C5%82ych+%C5%9Awi%C4%85t,559,454,699368887,9994,0 +7260,209+Margaret+River,535,432,1497168,9835,0 +7261,011.+ALFI,476,570,8539216,1484,0 +7262,%2B44+73+Bourbourg,433,477,698361257,10195,0 +7263,NWO,394,520,849030226,10971,0 +7264,0085,443,441,3909522,9924,0 +7265,Zaodrze,389,548,699425709,3650,0 +7266,0Wioska+barbarzy%C5%84ska,474,504,699781762,10083,0 +7267,NOT%3F,469,544,9236866,9737,0 +7268,B063,477,471,699299123,10362,0 +7269,030,526,575,699189792,9745,0 +7270,Osada,498,440,699098531,10295,0 +7271,Wioska+Barbarzy%C5%84ska,544,493,698867483,9561,0 +7272,Gattacka,575,496,699298370,10370,0 +7273,ADEN,562,435,698588535,8022,0 +7274,018,417,511,699851427,10129,0 +7275,xxx,487,420,698239813,10495,0 +7276,%7E060.,481,549,7139820,10237,0 +7277,001,434,550,699856962,1328,0 +7278,Lord+Arsey+KING,540,523,848956513,8087,0 +7279,CALL+1039,545,536,699784536,9387,0 +7280,Mzm36,543,528,7142659,10362,0 +7281,DAWA%C4%86+GRUBE,540,447,8155296,8954,0 +7282,Os+Konfederacja,480,450,848915730,9812,0 +7283,018.+Wioska+B.E.R.S.E.R.,565,516,8788366,10252,0 +7284,F020,493,542,699189792,9756,0 +7285,PRO8L3M,465,493,7491093,10495,0 +7286,054.+ALFI,485,567,8539216,1672,0 +7287,A21,556,449,699368887,9596,0 +7288,%3F%2B44+85+Marquise,458,486,698361257,9844,0 +7289,079+Mobile,461,451,1497168,9761,0 +7290,7.62+mm,470,440,699777234,10019,0 +7291,73k%24+Grvvyq,549,520,699676005,10495,0 +7292,Yogi,514,533,2808172,8822,0 +7293,MasteroN,568,448,699379895,10160,0 +7294,037+Fresno,436,435,9291984,9804,0 +7295,xxx,484,425,698239813,10495,0 +7296,%2AINTERTWINED%2A,458,560,698704189,8644,0 +7297,Pf+Konfederacja,495,492,848915730,9938,0 +7298,kek,544,515,848967710,6506,0 +7299,Kasyno,446,517,7249451,10237,0 +7300,Fajna+062,452,559,699868002,8274,0 +7301,042.,510,495,8788366,9462,0 +7302,Jehu_Kingdom_04_,587,477,8785314,9993,0 +7303,NOT%3F,412,503,9236866,10042,0 +7304,%5B133%5D,567,538,8000875,9774,0 +7305,.%3A129%3A.+Niangmen,519,414,848934935,9814,0 +7306,Szlachcic,494,466,699098531,9899,0 +7307,.achim.,529,447,6936607,10654,0 +7308,.achim.,535,422,6936607,10311,0 +7309,Suppi,469,537,699856962,9549,0 +7310,-Ca%C5%82o%C5%9B%C4%87+do+ca%C5%82o%C5%9Bci,516,510,699785935,9814,0 +7311,02+%7C+Ciemnogr%C3%B3d,537,437,849002091,9477,0 +7312,PRO8L3M,456,497,7491093,9615,0 +7313,Taran,579,465,699759128,10237,0 +7314,-+058+-,540,576,849018239,10000,0 +7315,Wioska+barbarzy%C5%84ska,452,543,699698253,1503,0 +7316,Osada,492,448,699098531,9962,9 +7317,Joms+041,546,413,699756210,10273,0 +7318,SsSs,455,497,1536625,7242,0 +7319,ChceszPokojuSzykujSi%C4%99DoWojny,460,512,699333701,9761,0 +7320,%5B188%5D,532,492,8000875,9885,2 +7321,Ogr%C3%B3d+Warzywny,456,558,7249451,5203,0 +7322,Cast+Away+013,453,481,698290577,9608,0 +7323,Osada+koczownik%C3%B3w,534,434,848986287,9111,7 +7324,Piek%C5%82o+to+inni,519,483,848956765,10252,0 +7325,Bellucci,503,519,699785935,10495,0 +7326,002+-+Madrid,597,490,698342159,10019,0 +7327,Monetki,469,420,699098531,10311,0 +7328,Teatr,437,565,7249451,8474,0 +7329,Mzm02.,609,532,7142659,10019,0 +7330,83k%24+Grvvyq,547,532,699676005,10495,2 +7331,Daleko+012,480,584,6116940,8824,0 +7332,Suppi,442,453,699856962,9554,0 +7333,F045,483,517,699189792,9048,0 +7334,...Just+like+that,461,492,699723284,10452,0 +7335,%2B44+73+Frencq,432,473,698361257,9844,0 +7336,KONFA+TO+MARKA%2C+NARKA,448,454,698152377,10297,0 +7337,I+po+%C5%9Awi%C4%99tach+%3B%29%29%29,563,451,699368887,7204,0 +7338,0.Nowy+Orlean,521,586,698215322,9951,0 +7339,EKG+M14,484,596,33900,10004,0 +7340,B054,481,470,699299123,10495,0 +7341,Wioska+barbarzy%C5%84ska,449,522,698971484,10008,0 +7342,JK3,559,449,699368887,7072,1 +7343,021,552,395,849064752,10311,0 +7344,Milonia,518,556,849066849,7083,0 +7345,KONFA+TO+MARKA%2C+NARKA,422,474,698152377,10292,0 +7346,%2AAteny_13,470,527,2585846,9735,0 +7347,Napewno+to+nie+jest+off,516,444,848912265,10495,0 +7348,CALL+967,545,567,699784536,10311,0 +7349,013+Savanah,440,465,1497168,9761,0 +7350,050+Bu%C5%82garia,585,480,7092442,10495,0 +7351,F069,492,515,699189792,9515,0 +7352,%28021%29,424,543,699846892,10160,0 +7353,Wioska+barbarzy%C5%84ska,493,511,848967710,9831,0 +7354,...Just+like+that,469,478,699723284,10452,0 +7355,.%3A038%3A.+Chillout,521,449,848934935,7228,0 +7356,P.034,543,557,873575,10297,0 +7357,Szlachcic+054,573,519,758104,9338,0 +7358,PRO8L3M,448,490,7491093,9221,0 +7359,Warzywniak016,453,548,698290577,2401,0 +7360,Monetki,475,417,699098531,10290,0 +7361,%23020,472,615,699605333,10393,0 +7362,Piek%C5%82o+to+inni,521,473,848956765,9010,0 +7363,Wioska+10.,496,525,848967710,11141,0 +7364,ladyanima+200+pik+300+miecz,514,567,699703642,9415,0 +7365,Lord+Arsey+KING,523,503,848956513,10285,0 +7366,XnX-02,437,541,699856962,8720,2 +7367,-+031+-,535,578,849018239,10000,0 +7368,-%5B025%5D-+Batura+Sar,557,490,849092827,8089,0 +7369,011.+A-RE-SE-EY,577,527,848967710,10252,0 +7370,002,587,519,6048627,9692,0 +7371,%28006%29,416,533,699846892,9471,0 +7372,Monetki,468,417,699098531,10297,0 +7373,022,518,515,8191129,10160,0 +7374,A014,494,416,699299123,10495,0 +7375,xxx,514,455,698239813,10495,0 +7376,NOT%3F,428,495,9236866,9329,0 +7377,Niusam,457,570,699443920,9761,0 +7378,Suppi,425,455,699856962,9570,0 +7379,Sparta_34,479,582,2585846,9638,9 +7380,Niedopasowany,498,528,699785935,9899,0 +7381,Piek%C5%82o+to+inni,520,479,848956765,10160,0 +7382,011+%7C+Lord+Arsey+-+Poskramiacz,560,566,8000875,10140,1 +7383,%7E%7ELataj%C4%85cyHolender%7E%7E,550,467,9174887,8790,0 +7384,1.+Char+mle,495,531,849087855,9355,0 +7385,004+Are+you+seriously%3F,570,553,699316421,9744,0 +7386,039,414,505,699851427,10129,0 +7387,A043,505,428,699299123,10058,0 +7388,KIELBA+126,465,584,699342219,7286,0 +7389,Bagdad,475,381,8847546,10470,0 +7390,Muszla,398,458,698807570,10068,0 +7391,lady,493,577,699703642,9761,0 +7392,C037,532,456,699299123,10971,0 +7393,Wioska+barbarzy%C5%84ska,528,541,7581876,9835,0 +7394,B023,484,457,699299123,10495,0 +7395,lady,510,584,699703642,9761,0 +7396,NOT%3F,410,514,9236866,10042,0 +7397,Jaaa,570,542,698635863,10484,0 +7398,slow,531,490,848967710,10485,0 +7399,1.+Is-4+%21%21%21,488,539,849087855,9917,0 +7400,Wioska+barbarzy%C5%84ska,560,571,6818593,9835,0 +7401,011+Politechnika,538,481,849083501,4464,0 +7402,yogi,524,534,2808172,10019,0 +7403,-%3D+004+%3D-,446,521,698971484,10008,4 +7404,NOT%3F,411,512,9236866,10042,0 +7405,Lord+Arsey+KING,528,494,848956513,10285,0 +7406,Front_31,453,521,2585846,3889,0 +7407,CALL+1000,552,576,699784536,10411,0 +7408,.%3A073%3A.+Takmahal,522,440,848934935,4075,0 +7409,.achim.,526,413,6936607,10311,0 +7410,kek,546,515,848967710,7268,0 +7412,Optima,432,557,699443920,2828,0 +7414,Piek%C5%82o+to+inni,522,467,848956765,9761,0 +7415,Szlachcic,586,512,698867446,9902,0 +7416,063+Pittsburg,464,474,1497168,9761,0 +7417,%230117+Rambo,499,551,9272054,10019,0 +7418,%5B101%5D+Mateni+Kowe,574,476,848985692,10252,0 +7419,CALL+937,549,561,699784536,10311,0 +7420,%23046,475,613,699605333,10393,0 +7421,sas,537,541,7581876,9836,0 +7422,%2AINTERTWINED%2A,474,571,698704189,9711,0 +7423,Suppi,427,447,699856962,9570,3 +7424,B038,487,456,699299123,10166,0 +7425,K44+015,435,484,698290577,3394,0 +7426,%230066+Jakub+K,493,563,9272054,10000,0 +7427,082.+%7CXD%7C,495,516,848967710,10252,0 +7428,0083,445,443,3909522,7022,0 +7429,Lord+Arsey+KING,525,491,848956513,10285,0 +7430,116,399,560,699382126,4373,0 +7431,Szlachcic+%21%21%21,489,469,699098531,10294,0 +7432,Strasznie+Mi%C5%82y+S%C4%85siad%21,551,449,556154,9735,0 +7433,Zasiedmiog%C3%B3rogr%C3%B3d,524,436,699433558,9442,0 +7434,HARAD+f,534,466,8155296,11188,0 +7435,Wioska+1,426,552,8779575,9753,0 +7436,ADEN,558,440,698588535,9711,0 +7437,P+Konfederacja,453,450,848915730,9759,0 +7439,Szlachcic,487,467,699098531,10292,0 +7440,%230067+Daniel+Z,486,557,9272054,10000,0 +7441,046.+ALFI,482,563,8539216,1386,0 +7442,%2B44+70+Collonges+au+Mont+dOr,409,472,698361257,9846,0 +7443,.%3A042%3A.+Chillout,523,450,848934935,5861,0 +7444,Bucksbarzy%C5%84sKamiiiru,435,529,848955783,10971,0 +7445,95k%24+Grvvyq,548,523,699676005,4763,0 +7446,x08,558,478,8459255,10267,5 +7447,Sparta_58,479,573,2585846,9638,0 +7448,%C5%9Amieszkii,512,563,3454753,9117,0 +7449,006.+Wioska+Lord+Axen,574,523,8788366,10495,0 +7450,Szlachcic,574,494,699759128,10237,0 +7451,DOM+7,567,408,849064614,9818,0 +7452,xxx,512,459,698239813,9319,0 +7453,Fajna010,460,574,8539216,1918,0 +7454,0063+7+strupin,446,431,3909522,10078,0 +7455,Z07+Mikkeli,561,514,699272880,10345,7 +7456,-x6,499,497,848967710,10495,0 +7457,0036+MzM,544,540,698416970,10019,0 +7458,033,584,468,699573053,10495,0 +7459,007+Rupik95,576,550,699316421,9744,0 +7460,Joms+035,533,421,699756210,6881,0 +7461,Wioska+Barbarzy%C5%84ska,555,477,698867483,8893,0 +7462,Sparta_74,470,583,2585846,9638,0 +7463,019+%7C,556,552,8000875,10159,1 +7464,Stage+group+D,463,596,699364813,9924,0 +7465,041.+A-RE-SE-EY,573,508,848967710,10252,0 +7466,Ethan+Hunt+04,603,476,698702991,9844,0 +7467,Knowhere,378,500,699723284,10452,0 +7468,058,444,490,699510259,9747,0 +7469,13%2A,568,542,699664910,8902,0 +7470,Kasyno,443,504,7249451,9994,0 +7471,Szlachcic+%21%21%21,507,484,699098531,10178,0 +7472,Piek%C5%82o+to+inni,520,482,848956765,10083,0 +7473,Kasyno,444,514,7249451,10058,0 +7474,%5B117%5D,544,507,8000875,9875,0 +7475,006,529,480,848967710,10160,0 +7476,%21Wioska+511,576,458,477415,10495,0 +7477,-%5B032%5D-+Jannu,555,474,849092827,9568,0 +7478,XnX-16,458,534,699698253,9780,0 +7479,%5B125%5D+North25,574,475,848985692,10236,0 +7480,%5B009%5D+MORTU+VIN,607,533,848985692,10159,0 +7481,JW2,553,443,699368887,6806,0 +7482,%5B127%5D+North27,573,477,848985692,10359,0 +7483,MINAS+MORGUL+F,537,464,8155296,10997,0 +7484,%5BA%5D_%5B022%5D+Dejv.oldplyr,400,479,699380607,10365,0 +7485,Rampage+1,527,472,699355601,3705,0 +7486,004+-+piek%C5%82o,418,579,225023,10495,0 +7487,059+%7C,547,500,8000875,10160,0 +7488,Wioska+barbarzy%C5%84ska,450,521,698971484,10241,0 +7489,PRO8L3M,423,496,7491093,7358,0 +7490,038,424,508,699851427,10129,0 +7491,0063+b56,452,434,3909522,8487,0 +7492,Weso%C5%82ych+%C5%9Awi%C4%85t,561,452,699368887,9994,0 +7493,ladyanima,513,571,699703642,9689,0 +7494,Ogr%C3%B3d+Warzywny,451,567,7249451,7849,0 +7495,Wioska+025,590,575,848971079,9761,0 +7496,Tutkowa+darma,590,489,8925695,7772,0 +7497,Owa,429,555,699443920,3135,0 +7498,027,441,492,699510259,10016,0 +7499,043.+A-RE-SE-EY,563,530,848967710,10252,0 +7500,Szlachcic+051,577,512,758104,9338,0 +7501,%3F%2B44+76+Hoymille,465,479,698361257,9763,0 +7502,F090,495,527,699189792,9593,0 +7503,ChceszPokojuSzykujSi%C4%99DoWojny,455,512,699333701,9701,0 +7504,Tank+Wioska+Damian0704,430,501,698290577,10217,0 +7505,Osada,501,435,699098531,10292,0 +7506,Moria,494,518,849091897,4414,0 +7507,%5B089%5D,550,507,8000875,9902,0 +7508,PRO8L3M,413,495,7491093,10375,0 +7509,06+%7C+Zag%C5%82%C4%99bie+Rury,542,431,849002091,9291,0 +7510,Cilonia,514,556,849066849,8322,0 +7511,ANIO%C5%81Y+I+DEMONY,502,525,699785935,10083,0 +7512,%7C054%7C,551,568,873575,9834,0 +7513,A17,550,449,699368887,7727,7 +7514,0003,444,395,699431255,10025,0 +7515,%2AAteny_01,474,535,2585846,9735,0 +7516,Napewno+to+nie+jest+off,514,445,848912265,2762,0 +7517,10004,525,566,848915531,11550,0 +7518,Lord+Arsey+KING,502,467,848956513,10087,0 +7519,OOV,510,437,699658023,9700,0 +7520,152+Jutiapa,454,454,1497168,9761,0 +7521,Selonari.,461,556,698704189,8484,0 +7522,Front_26,453,528,2585846,9638,0 +7523,022,542,396,849064752,10311,0 +7524,047,424,511,699851427,10042,0 +7525,Suppi,441,518,699856962,9553,0 +7526,003.,523,556,699695167,9902,0 +7527,Fresio,450,445,699660539,9409,0 +7528,156+Mazatenango,454,459,1497168,9783,0 +7529,Wioska,384,545,849084005,10178,0 +7530,008,463,578,848886870,10495,0 +7531,Wioska+barbarzy%C5%84ska,437,502,698971484,10072,0 +7532,keepo,479,509,848967710,7598,0 +7533,Wioska+barbarzy%C5%84ska,434,444,698884287,10285,0 +7534,005,508,480,698881022,6291,0 +7536,Wioska+Barbarzy%C5%84ska,544,495,698867483,10083,0 +7537,008+Ratusz+Arsena%C5%82,540,469,849083501,4508,0 +7538,Osada+koczownik%C3%B3w,434,503,698971484,10008,2 +7540,Wioska+21,538,500,699385139,4126,0 +7541,Winter+is+coming,438,539,699856962,6151,0 +7542,Szlachcic+003,570,536,758104,9338,0 +7543,Osada,500,439,699098531,10297,0 +7544,COUSINS,490,595,7976264,10259,0 +7545,KIELBA+034,452,572,699342219,10495,0 +7546,Part+III,535,381,698350371,10495,0 +7547,Wioska+barbarzy%C5%84ska,455,542,699698253,2701,0 +7548,Wioska+barbarzy%C5%84ska,592,557,8742874,9740,0 +7549,034.+A-RE-SE-EY,570,537,848967710,10252,0 +7550,Village,499,583,849094067,8441,0 +7551,00704,452,440,3909522,9577,0 +7552,%5B079%5D,527,537,8000875,9957,0 +7553,Szlachcic,491,478,699098531,10167,0 +7554,.%3A096%3A.+Rewson,542,445,848934935,6201,0 +7555,Piek%C5%82o+to+inni,522,423,848956765,10083,0 +7556,NOT%3F,433,536,9236866,7296,0 +7557,Lord+Arsey+KING,517,497,848956513,10285,0 +7558,Yogi,494,545,2808172,10019,0 +7559,Otr%C4%99t,444,554,699443920,9951,0 +7560,B030,485,458,699299123,9133,0 +7561,Osada,496,442,699098531,10300,0 +7562,R%C4%99cznik+do+zmiany,416,485,699697558,12154,0 +7563,FF003,467,518,699189792,5949,0 +7564,Strasznie+Mi%C5%82y+S%C4%85siad%21,547,449,556154,6990,0 +7565,009+Dras-Leona,611,482,8337151,10083,0 +7566,.%3A041%3A.+%C5%81a%C5%84cuch,503,410,8649412,8853,0 +7567,020.+Wioska+SeexyPapi,578,515,8788366,10252,0 +7568,192+Quito,472,468,1497168,7991,0 +7569,Monetki,474,414,699098531,10292,0 +7570,019,492,577,3613413,9304,0 +7571,Lord+Arsey+KING,575,584,848956513,10285,0 +7572,MasteroN+10,565,448,699379895,9887,0 +7573,Szlachcic,488,463,699098531,10358,0 +7574,Sector+5+Slums+Area,514,590,8199417,10083,0 +7575,Szlachcic+x,508,458,699098531,9835,0 +7576,P.005,535,566,873575,10184,0 +7577,00973,461,437,3909522,10279,0 +7578,PRO8L3M,465,496,7491093,9446,0 +7579,7.62+mm,465,448,699777234,9533,0 +7580,046.+A-RE-SE-EY,554,517,848967710,10485,0 +7581,%C5%9Amieszkii,508,563,3454753,9175,0 +7582,Osada,499,440,699098531,10291,0 +7583,Wioska+barbarzy%C5%84ska,572,518,699851345,9697,0 +7584,Wioska_05,539,448,8674163,9341,0 +7585,0063+b1,456,431,3909522,10072,0 +7586,%3F%2B44+76+Tingry,460,476,698361257,9649,0 +7587,K44+020,431,499,698290577,9996,0 +7588,Winter+is+coming,505,583,699364813,9976,0 +7589,0039+K55+and987+OZDR.,505,543,3613413,9842,0 +7590,Szlachcic,577,511,698867446,9852,0 +7591,Wioska+barbarzy%C5%84ska,565,457,699368887,10058,0 +7592,PRO8L3M,452,502,7491093,10311,0 +7593,002,462,440,9291984,10478,0 +7594,Piek%C5%82o+to+inni,520,431,848956765,10160,0 +7595,Napewno+to+nie+jest+off,518,445,848912265,2477,0 +7596,Suppi,443,448,699856962,9570,0 +7597,0060,509,517,699432672,10495,0 +7598,Szlachcic+053,569,520,758104,9338,0 +7599,075.,504,485,8788366,10252,0 +7600,Brat447,384,509,699262350,10476,0 +7601,Gratuluje+m%C3%B3zgu,444,536,698971484,10008,0 +7602,044,434,492,699510259,9745,0 +7603,Jaaa,567,588,698635863,10830,0 +7604,Abadon+landy+3,563,488,699347951,6416,0 +7605,A11,548,455,699368887,9994,0 +7606,Kentin+ufam+Tobie,433,400,699783765,10000,0 +7607,B065,478,471,699299123,10495,0 +7608,061+Sacramento,462,472,1497168,9761,0 +7609,017.+Wioska+Exano,569,521,8788366,10252,0 +7610,101+Edmonton,472,486,1497168,9761,0 +7611,A049,500,426,699299123,10495,0 +7612,P+Konfederacja+%2B,462,445,848915730,9678,0 +7613,Piek%C5%82o+to+inni,521,422,848956765,10160,0 +7614,012+Sosnowiec,429,426,9291984,10478,0 +7615,015,570,556,699316421,9744,0 +7616,028.+Wioska+Misiaczek6,569,504,8788366,10252,9 +7618,%5B107%5D+North7,579,476,848985692,9978,0 +7619,Fajna002,451,556,698971484,7611,0 +7620,Jaaa,575,537,698635863,10476,0 +7621,P.027,538,551,873575,9913,0 +7622,.%3A100%3A.+Niangmen,502,394,848934935,10068,0 +7623,%2B44+62+Saint+Didier+au+Mont+dOr,425,469,698361257,9844,0 +7624,Szlachcic,507,459,699098531,8552,0 +7625,-001-+Chod%C5%BA+chod%C5%BA+chod%C5%BA,450,411,9291984,10487,0 +7626,...Just+like+that,455,507,699723284,10452,0 +7627,Wioska+barbarzy%C5%84ska,436,504,698971484,10008,0 +7629,010+Cinnabar+Island,565,458,699441366,11109,0 +7630,Szlachcic+%21%21%21,498,477,699098531,10365,0 +7631,Piek%C5%82o+to+inni,521,427,848956765,10160,0 +7632,KONFA+TO+MARKA%2C+NARKA,442,464,698152377,10297,0 +7633,W001Wygnanie,445,498,698290577,10157,0 +7634,Ateny_10,473,535,698971484,10008,0 +7635,Joms+001,523,420,699756210,9800,0 +7636,-+052+-,541,577,849018239,10000,0 +7637,Winter+is+coming,508,585,699364813,10311,0 +7638,kto+ananasowy+pod+wod%C4%85+ma+dom,566,502,699628084,9797,0 +7639,.%3A020%3A.+Kot,506,431,8649412,9747,0 +7640,Winter+is+coming,510,587,699364813,10559,0 +7641,%C5%9Amieszkiii,486,590,3454753,8995,0 +7642,...Just+like+that,469,474,699723284,5414,0 +7643,Daleko+014,474,583,3454753,10471,0 +7644,South+Barba+2,457,458,699796330,10563,0 +7645,Jaaa,577,549,698635863,10479,2 +7646,%5B155%5D,550,505,8000875,7842,0 +7647,CALL+970,552,557,699784536,10311,0 +7648,WioskaF,509,584,8369778,8095,0 +7649,%5B110%5D+North10,578,474,848985692,10051,0 +7650,CALL+1012,525,614,699784536,10311,0 +7651,JaamMwG+001,524,524,848987051,9808,0 +7653,Szlachcic,489,479,699098531,10300,0 +7654,Fajna+083,457,562,698971484,5737,0 +7655,Suppi,439,450,699856962,9554,0 +7656,a+CSA-Z,454,533,3909522,2930,0 +7657,Os+Konfederacja,471,444,848915730,9556,0 +7658,Kasyno,441,503,7249451,8965,0 +7659,ABADON+NEW1,553,472,699347951,5594,0 +7660,.%3A004%3A.+Kr%C3%B3lestwo,511,418,8649412,9860,0 +7661,7.62+mm,468,433,699777234,10019,0 +7662,NOT%3F,433,540,9236866,8743,0 +7663,Suppi,441,528,699856962,9556,0 +7664,CALL+1058,522,532,699784536,10495,9 +7665,%230075+Rado%C5%9B%C4%87,497,559,8827094,9981,0 +7666,Marienburg+7,526,479,699355601,2661,0 +7667,Summer+Slam+%7E+011,521,548,7581876,9810,0 +7668,014,558,519,699194766,9922,0 +7669,Enigma+004,508,453,699098531,6747,0 +7670,Cast+Away+005,450,490,698290577,8804,0 +7671,keepo,476,512,848967710,4287,0 +7672,000+Warszawa,541,470,849083501,10019,0 +7673,0013+K55+and987+OZDR.,509,547,3613413,9845,0 +7674,%2B44+61+Nesles,411,461,698361257,9878,0 +7675,Szlachcic,580,479,699759128,10237,0 +7676,0053,460,472,848913037,4585,0 +7677,%230122+Uprzejmo%C5%9B%C4%87,482,548,9272054,10003,0 +7678,Piek%C5%82o+to+inni,514,424,848956765,10019,0 +7679,SsSs,451,499,1536625,10160,0 +7680,keepo,482,535,848967710,10495,0 +7681,0062+%7E1%7E,444,434,3909522,10083,0 +7682,lady,501,588,699703642,10471,0 +7683,Ethan+Hunt+01,603,477,698702991,9768,0 +7684,061.+ALFI,469,565,8539216,1229,0 +7685,.%3A021%3A.+Pies,518,418,8649412,8976,0 +7686,0060+Wioska,447,434,3909522,10436,0 +7687,Mersulka,433,457,698884287,10285,0 +7688,.%3A030%3A.+Sos,499,488,699098531,9162,0 +7689,%7E%7ELataj%C4%85cyHolender%7E%7E,561,507,9174887,10146,0 +7690,%7E%7ELataj%C4%85cyHolender%7E%7E,581,497,9174887,10393,0 +7691,Szlachcic+9%3B20,505,475,699098531,10332,0 +7692,019,531,434,699788305,8464,0 +7693,Front_04,459,520,2585846,9638,0 +7694,yogi,539,567,2808172,10019,0 +7695,WarehousePCC,585,494,699347951,11550,0 +7696,067+%7C,553,501,8000875,10025,0 +7697,090.,506,489,8788366,10252,0 +7698,027+Memphis,444,482,1497168,9761,0 +7699,Lord+Arsey+KING,517,495,848956513,10285,4 +7700,%21+Wioska+barbarzy%C5%84ska,543,459,477415,8982,0 +7701,%2B44+72+Villeurbanne+Bon+Coin,426,471,698361257,9841,0 +7702,KONFA+TO+MARKA%2C+NARKA,427,467,698152377,10291,0 +7703,Piek%C5%82o+to+inni,515,475,848956765,10019,0 +7704,Village,503,589,849094067,10636,0 +7705,Piek%C5%82o+to+inni,523,429,848956765,10160,0 +7706,Lord+Arsey+KING,573,585,848956513,10285,0 +7707,Okaz,436,556,699443920,3857,0 +7708,0070+Osada,453,441,3909522,7565,6 +7709,Sparta_46,480,576,2585846,9648,0 +7710,20000,520,541,848915531,11321,0 +7711,008,595,458,849088515,10019,0 +7712,%5B183%5D,536,515,848985692,7997,0 +7713,Osada,508,456,699098531,9637,0 +7714,.achim.,515,412,6936607,10311,0 +7715,EPICENTRUM,539,467,8155296,10035,0 +7716,0063+sawin,447,431,3909522,10239,0 +7717,%5B128%5D,553,546,8000875,9761,0 +7718,Joms+010,518,419,699756210,9861,0 +7719,-%5B033%5D-+Tiricz+Mir,558,474,849092827,8121,0 +7720,067,413,516,699851427,10129,0 +7721,0015%7CLublana,510,441,8649412,9383,0 +7723,0wi,471,512,699189792,4854,0 +7724,10019,537,555,848915531,7324,0 +7725,B052,475,469,699299123,9906,0 +7726,0006+MzM,572,449,698416970,8529,0 +7727,C+015+Bia%C5%82y+Ko%C5%9Bci%C3%B3%C5%82,417,575,849084740,9834,0 +7728,Szlachcic,580,501,699759128,10237,0 +7729,Wioska+Barbarzy%C5%84ska,544,482,698867483,10160,0 +7730,KIELBA+124,452,562,699342219,4967,0 +7731,yogi,514,547,2808172,6686,0 +7732,015,549,522,699194766,8781,0 +7733,062,408,501,699851427,10129,0 +7734,Mzm30,555,521,7142659,10362,0 +7736,Winter+is+coming,443,550,698971484,1532,0 +7737,%5B067%5D+Chwilowa,535,492,848985692,10257,1 +7738,Za+daleko,578,593,699785935,10178,0 +7739,Suppi,439,451,699856962,9570,0 +7740,Horyzont+zdarze%C5%84,534,554,7581876,9835,0 +7741,040.+Caelum,512,579,699703642,9628,0 +7742,Szlachcic,579,483,699759128,10237,0 +7743,Szlachcic,488,468,699098531,10162,0 +7744,Piek%C5%82o+to+inni,513,427,848956765,10160,0 +7745,MIKOR+004,559,388,6343784,10083,0 +7746,Wioska+barbarzy%C5%84ska,449,528,698971484,10008,0 +7747,WINTER+IS+COMING,473,503,1536625,10207,0 +7748,R%C4%99cznik+do+zmiany,417,482,699697558,10495,0 +7749,%28004%29,412,535,699846892,9796,0 +7750,keepo,488,523,848967710,9431,0 +7751,Osada,504,456,699098531,9637,0 +7752,-030-,464,423,9291984,10479,0 +7753,CALL+978,545,566,699784536,10311,0 +7754,x+daro+091,552,469,3909522,8574,0 +7755,033.,483,624,699494488,10495,0 +7756,Mzm41,567,523,7142659,10252,0 +7757,%5B126%5D+Dolina+Cienia,581,473,848985692,10362,3 +7758,036.+A-RE-SE-EY,569,509,848967710,10252,0 +7759,Joms+006,527,421,699756210,10273,0 +7760,Fajna+002,450,558,699868002,6481,0 +7761,Wioska_07,546,451,8674163,5250,0 +7762,Sparta_49,485,575,2585846,9638,0 +7763,Bia%C5%82y+Sad,483,379,699658023,9756,0 +7764,018,492,578,3613413,8954,0 +7765,Wioska+barbarzy%C5%84ska,484,548,7976264,10174,0 +7766,029+Montgomery,437,476,1497168,9761,0 +7767,B026,478,454,699299123,10495,0 +7768,022+%7C,560,558,8000875,10144,0 +7769,Fajna+035,458,572,8539216,1987,0 +7770,Szlachcic,462,412,698388578,10237,0 +7771,%2AINTERTWINED%2A,533,546,698704189,9711,0 +7772,077.+ALFI,466,568,8539216,1536,0 +7773,Ho%C5%82opole,487,380,699433558,10160,0 +7774,Suppi,431,458,699856962,11678,0 +7775,%21Wioska+410,571,520,477415,10495,0 +7776,.%3A081%3A.+Takmahal,525,452,848934935,3944,0 +7777,Mniejsze+z%C5%82o+0057,420,505,699794765,7091,0 +7778,Gattacka,572,493,699298370,8532,4 +7779,Wioska+Nie+Rusza%C4%87,498,534,7581876,9811,0 +7780,0080+Wioska,443,446,3909522,10083,0 +7781,-14-,584,475,699347951,10508,0 +7782,Wioska+barbarzy%C5%84ska,513,477,699098531,4150,0 +7783,R%C4%99cznik+do+zmiany,416,493,699697558,11123,0 +7784,KIELBA+090,445,570,699342219,10239,0 +7785,NOT%3F,419,510,9236866,10042,0 +7786,Wioska+20,515,531,699385139,12154,0 +7787,-+Killing+Me+Slowly,510,516,699785935,10083,0 +7788,Winter+is+coming,434,547,699856962,2162,0 +7789,R%C4%99cznik+do+zmiany,419,480,699697558,11348,0 +7790,009+Saffron+City,564,459,699441366,11109,2 +7791,Szlachcic,578,493,699759128,10237,0 +7792,lady,514,572,699703642,10521,0 +7793,0000009%23,434,573,849089881,10475,0 +7794,%5B077%5D+Kukupha+iwe,530,505,848985692,10516,0 +7795,Lord+Arsey+KING,529,521,848956513,9179,0 +7796,127+San+Felipe,462,475,1497168,9761,0 +7797,Szlachcic,567,467,698867446,9781,0 +7798,Pf+Konfederacja,487,490,848915730,9976,0 +7799,085.+ALFI,482,552,3613413,1875,0 +7800,Horyzont+zdarze%C5%84,527,549,7581876,10019,0 +7801,-+306+-,530,585,849018239,10000,0 +7802,Z05+Danderyd,561,524,699272880,10429,0 +7803,Szlachcic,499,490,699098531,9882,0 +7804,021+-+Palenque%2A%2A%2A,435,591,225023,10495,0 +7805,Village,498,582,849094067,8475,0 +7806,xxx,500,430,698239813,10495,0 +7807,Wioska+barbarzy%C5%84ska,588,521,699851345,9689,0 +7808,K44+003,418,476,698290577,7446,0 +7809,SsSs,465,500,1536625,9436,0 +7810,Lord+Arsey+KING,535,535,848956513,10285,0 +7811,Hengfors,486,380,699433558,10311,0 +7812,F053,493,516,699189792,9511,0 +7813,Front_25,455,528,2585846,9426,0 +7814,018.+ALFI,481,566,8539216,1975,9 +7815,Horyzont+zdarze%C5%84,519,546,7581876,10019,0 +7816,Cast+Away+006,450,489,698290577,10073,0 +7817,Met4n4boL,618,505,699379895,10495,0 +7818,NOT%3F,441,552,9236866,5807,0 +7819,Sparta_32,489,575,2585846,9638,0 +7820,NOT%3F,424,530,9236866,6763,0 +7821,Lord+Arsey+KING,526,484,848956513,10285,0 +7822,Xx+Pegaz+xX,500,542,849087855,10002,0 +7823,SsSs,453,497,1536625,8114,0 +7824,B057,475,471,699299123,10495,0 +7825,Piek%C5%82o+to+inni,522,419,848956765,10160,0 +7826,CALL+984,546,571,699784536,10068,0 +7827,keepo,480,512,848967710,9620,0 +7828,Szlachcic+012,556,533,758104,8024,0 +7829,Village,520,575,849094067,12154,0 +7830,0002,510,518,699432672,10495,0 +7831,034,478,521,2585846,7008,0 +7832,ChceszPokojuSzykujSi%C4%99DoWojny,466,511,699333701,9138,0 +7833,122.,494,487,8788366,4981,0 +7834,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+14,620,510,699379895,6167,0 +7835,Szlachcic,576,496,699759128,10237,0 +7836,Dum+Spiro+Spero,493,555,848896948,9984,0 +7837,Suppi,429,445,699856962,10229,0 +7838,009+%C5%9Awi%C4%99tokrzyska,535,477,849083501,4513,0 +7839,P+Konfederacja,459,444,848915730,9361,5 +7840,8.+Columbia,459,560,698704189,8779,0 +7841,Fajna+038,454,566,8539216,6749,0 +7842,Ogr%C3%B3d+Warzywny,464,559,7249451,8435,0 +7843,%5B101%5D+North1,573,481,848985692,10083,0 +7844,Zasiedmiog%C3%B3rogr%C3%B3d,534,428,699433558,10787,0 +7845,063.,511,506,8788366,7398,0 +7846,K44+017,433,490,698290577,8225,0 +7847,CALL+948,548,559,699784536,10311,0 +7848,Pf+Konfederacja,489,488,848915730,9653,0 +7849,Szlachcic,584,494,699759128,10237,0 +7850,Wioska+10,443,540,698971484,2696,0 +7851,A.001,410,585,849088243,10559,0 +7852,%23028,491,589,849001572,9744,0 +7853,%5B139%5D+North,588,470,848985692,10787,0 +7854,Lord+Arsey+KING,532,517,848956513,10285,0 +7855,081,565,416,849064752,10311,0 +7856,047.+ALFI,484,565,8539216,1642,0 +7857,Majin+Buu+005,440,565,699054373,9408,0 +7858,%5B141%5D,560,533,8000875,9921,0 +7859,Pln+001+Busko-Zdr%C3%B3j,421,565,849084740,9128,0 +7860,Wioska+barbarzy%C5%84ska,529,505,848967710,10485,0 +7861,Village,518,576,849094067,12154,0 +7862,Wioska+barbarzy%C5%84ska,538,502,848967710,10252,0 +7863,%230130+Kropiwki,483,548,9272054,9579,0 +7864,kathare,538,545,873575,10348,0 +7865,006+Miami,431,430,9291984,10495,0 +7866,080.,513,505,8788366,10252,0 +7867,keepo,483,534,848967710,10495,0 +7868,015,461,530,2585846,2718,0 +7869,B044,430,547,8779575,2327,0 +7870,Konfiasze,472,497,698908912,10544,6 +7871,ChceszPokojuSzykujSi%C4%99DoWojny,459,509,699333701,6333,0 +7872,Szlachcic,499,469,699098531,9682,0 +7873,200131,514,538,848915531,6868,0 +7874,NOT%3F,458,552,9236866,2643,0 +7875,F055,502,535,699189792,9756,0 +7876,Szlachcic,582,489,699759128,10237,1 +7877,Gravity,416,459,698962117,9579,0 +7878,NOT%3F,413,510,9236866,9954,0 +7879,Wioska+barbarzy%C5%84ska,488,548,7976264,7877,0 +7880,%2B44+72+Heyrieux,420,470,698361257,10000,0 +7881,%2AINTERTWINED%2A%2A,526,561,698704189,9711,4 +7882,Kula,544,463,698477883,2838,0 +7883,ChceszPokojuSzykujSi%C4%99DoWojny,465,512,699333701,5919,0 +7884,044,545,500,699573053,10495,0 +7885,szlachcic,442,541,698971484,2152,0 +7886,Wioska+Barbarzy%C5%84ska,539,477,698867483,10019,0 +7887,Wioska+Barbarzy%C5%84ska,548,483,698867483,10019,0 +7888,Monetki,478,427,699098531,9814,0 +7889,B004,484,445,699299123,10495,0 +7890,ADEN,522,384,698588535,9737,0 +7891,Barad-dur,533,532,7581876,7041,0 +7892,009791+Choroszcz,463,431,3909522,7501,0 +7893,087,543,497,699351301,10121,0 +7894,143+Ciudad+Juarez,466,484,1497168,9761,0 +7895,0063+2+wierzbica,448,430,3909522,10075,0 +7896,Osada,496,444,699098531,10292,0 +7897,Szlachcic+%21%21%21,504,473,699098531,9899,0 +7898,103,413,527,699851427,10042,0 +7899,Wioska+521,556,463,477415,10495,0 +7900,Szlachcic,505,470,699098531,9279,0 +7901,k55+Hieronim,543,538,698867483,8514,0 +7902,03+Francja,584,486,8925695,8020,0 +7903,NOT%3F,426,528,9236866,10042,0 +7904,076,569,395,849063849,10316,0 +7905,%5B151%5D,550,509,8000875,9613,0 +7906,Wioska,380,523,849084005,10178,0 +7907,Szlachcic,487,463,699098531,10306,0 +7908,Kentin+ufam+Tobie,405,482,699783765,10000,0 +7909,SsSs,425,484,1536625,8938,0 +7910,045+-+B06%2A%2A%2A,433,591,225023,10495,0 +7911,016+Fiona,445,499,698290577,10109,0 +7912,Monetki,484,414,699098531,10291,0 +7913,Joms+038,544,422,699756210,7930,0 +7914,%7E050.,489,552,7139820,10495,0 +7915,NOT%3F,433,529,9236866,10042,0 +7916,Piek%C5%82o+to+inni,528,438,848956765,10160,0 +7917,%2AINTERTWINED%2A,524,555,698704189,9711,0 +7918,%2B44+73+Maninghen+Henne,430,473,698361257,9841,0 +7919,Gattacka,583,482,699298370,9663,0 +7920,KIELBA+051,466,583,699342219,10495,0 +7921,-031-,457,424,9291984,10479,0 +7922,.achim.,533,456,6936607,5372,0 +7923,JK2,560,448,699368887,6550,0 +7924,Andrzejownia+Pupownia,544,423,848986287,9752,0 +7925,046,427,510,699851427,10129,0 +7926,Szlachcic,499,470,699098531,10311,0 +7927,-%5B015%5D-+Gyachung+Kang,557,484,849092827,8087,0 +7928,ADEN,564,444,698588535,10311,0 +7929,NOT%3F,430,493,9236866,10042,0 +7930,Wioska+barbarzy%C5%84ska,449,521,698971484,9871,0 +7931,K44+006,420,479,698290577,7331,0 +7932,048.+A-RE-SE-EY,549,510,848967710,10252,0 +7933,030,421,523,699851427,10042,6 +7934,083,418,532,699851427,10042,0 +7935,030,531,425,699788305,9372,0 +7936,%C5%9Amieszkiii,498,563,3454753,9847,0 +7937,kathare,538,547,873575,10224,0 +7938,0086,447,441,3909522,8149,0 +7939,Szlachcic+055,561,527,758104,8024,0 +7940,Lord+Arsey+KING,519,499,848956513,10285,4 +7941,%2AINTERTWINED%2A,512,617,698704189,9711,0 +7943,NOT%3F,430,526,9236866,10042,0 +7944,Szlachcic,585,417,699170684,9835,0 +7945,034,584,466,699573053,10495,0 +7946,%2310.,524,465,848967710,10252,0 +7947,051.+A-RE-SE-EY,543,516,848967710,10252,0 +7949,Village,504,585,849094067,11824,0 +7950,041.+ALFI,468,571,8539216,1367,0 +7951,Lord+Arsey+KING,518,471,848956513,10285,0 +7952,Sk%C5%82ad,513,616,606407,10291,0 +7953,Lord+Arsey+KING,523,489,848956513,10285,0 +7954,Dobranoc,423,545,699364813,9835,0 +7955,keepo,484,527,848967710,9541,0 +7956,xxx,520,466,698239813,10495,0 +7957,F018,495,542,699189792,9677,0 +7959,R%C4%99cznik+do+zmiany,422,487,699697558,11215,0 +7960,041,433,501,699510259,9756,6 +7961,.achim.,533,449,6936607,10841,0 +7962,046,541,424,7271812,6261,0 +7963,013+Rac%C5%82awicka,537,468,8155296,3540,0 +7964,032+Santa+Barbara,441,461,1497168,9761,0 +7965,KIELBA+073,471,580,699342219,10301,0 +7966,%2B44+61+Lyon+Gerland,417,462,698361257,9846,0 +7967,.achim.,557,443,6936607,9704,0 +7968,02+Skrable,617,504,699377151,8865,0 +7969,Suppi,438,515,699856962,9559,0 +7970,Szlachcic+%21%21%21,514,465,699098531,7503,0 +7971,-%5B030%5D-+Dhaulagiri+II,551,494,849092827,7050,0 +7972,Pf+Konfederacja,494,490,848915730,9938,0 +7973,Fajna+017,449,555,698971484,8447,0 +7974,%2AINTERTWINED%2A,480,539,698704189,9711,0 +7975,kathare,497,572,873575,10121,0 +7976,Piek%C5%82o+to+inni,526,434,848956765,10160,0 +7977,TROJA.14,460,578,8438707,8661,0 +7978,WINTER+IS+COMING,472,504,1536625,10636,0 +7979,CALL+1079,540,544,699784536,10971,0 +7980,Village,514,581,849094067,12154,0 +7981,%5B093%5D,532,496,848985692,9172,0 +7982,%7E%7ELataj%C4%85cyHolender%7E%7E,581,514,9174887,10152,0 +7983,7.62+mm,491,428,699777234,10019,0 +7984,NOT%3F,411,510,9236866,10042,0 +7985,KONFA+TO+MARKA%2C+NARKA,421,462,698152377,10297,0 +7986,00851,440,441,3909522,8213,0 +7987,026+co+ja+tu+robie+2,582,480,8459255,10001,0 +7988,Sparta_69,469,583,2585846,9638,0 +7989,Szlachcic,577,487,699759128,10237,0 +7990,0006+K55+and987+OZDR.,501,558,3613413,9844,2 +7991,yogi,525,533,2808172,10083,0 +7992,%230141+Reptilianin,497,553,9272054,10495,0 +7993,Wioska+barbarzy%C5%84ska,514,421,8649412,2904,0 +7994,125+Cancun,479,486,1497168,9761,0 +7995,Zochcinek+f%3F,536,468,8155296,8464,0 +7996,7.62+mm,500,429,699777234,10019,0 +7997,099,552,506,699351301,9963,0 +7998,ERIADOR,535,468,8155296,10359,0 +7999,.%3A005%3A.+Chillout,514,431,848934935,6383,0 +8001,Sparta_47,483,582,2585846,9638,0 +8002,.....,544,549,848915531,11321,9 +8003,%21+Szcz%C4%99%C5%9Bliwego+Nowego+Roku%3A%29,553,463,477415,6527,0 +8004,064,587,478,699573053,10495,0 +8005,Mniejsze+z%C5%82o+0058,415,507,699794765,8400,7 +8006,%23Ma%C5%82eOrzeszki,571,456,699795378,10019,0 +8007,Ten+stan,515,511,699785935,6941,0 +8008,Wioska+barbarzy%C5%84ska,537,507,848967710,10252,0 +8009,%C5%9Amieszkii,515,560,3454753,9115,0 +8010,B019,484,451,699299123,10495,0 +8011,C016,516,458,699299123,9621,0 +8012,Wioska+Szpanerq,523,561,6818593,9835,0 +8013,%2B44+73+Pierre+Benite,432,476,698361257,9860,0 +8014,Sparta_51,480,583,2585846,9638,0 +8015,Szlachcic+057,573,520,758104,9338,0 +8016,Piek%C5%82o+to+inni,511,484,848956765,2761,0 +8017,017,426,488,699510259,10083,0 +8018,Horyzont+zdarze%C5%84,530,548,7581876,9835,0 +8020,0650,476,549,698659980,10019,0 +8021,.%3A124%3A.+Niangmen,519,413,848934935,10068,0 +8022,PRO8L3M,467,490,7491093,9610,0 +8023,047.,549,475,849094609,10132,0 +8024,Jaaa,580,539,698635863,10476,0 +8025,C025,519,458,699299123,10971,0 +8026,Suppi,435,449,699856962,9570,9 +8027,076.+ALFI,486,562,8539216,1364,0 +8028,Piek%C5%82o+to+inni,521,469,848956765,8838,0 +8029,Winter+is+coming,439,549,698971484,2018,0 +8030,Szlachcic,505,457,699098531,8986,0 +8031,F025,496,529,699189792,9747,0 +8032,%5B152%5D,561,540,8000875,8094,0 +8033,kto+ananasowy+pod+wod%C4%85+ma+dom,573,506,699628084,9797,0 +8034,.achim.,529,453,6936607,10237,0 +8035,%5B118%5D+North18,579,473,848985692,9977,0 +8036,COUSINS,490,585,699364813,10113,0 +8037,Mniejsze+z%C5%82o+0064,418,504,699794765,6504,0 +8038,%2AAteny_03,472,536,698971484,10241,0 +8039,CALL+966,547,567,699784536,10311,0 +8040,008.+A-RE-SE-EY,586,528,848967710,10252,0 +8041,Gattacka,585,502,699298370,9811,0 +8042,.achim.,540,423,6936607,10311,3 +8043,001,619,496,849091105,10728,0 +8044,B005,483,443,699299123,10495,0 +8045,%2B44+62+Condette,422,469,698361257,9860,0 +8046,033.+A-RE-SE-EY,570,534,848967710,10252,0 +8047,0021+MzM,559,483,698416970,9258,2 +8048,129+Playa+Del+Carmen,465,485,1497168,9761,0 +8049,Wioska+422,563,507,477415,10495,0 +8050,BBB,557,440,1006847,7628,6 +8051,C004+Kamigata,606,559,8096537,9277,0 +8052,%7E%7ELataj%C4%85cyHolender%7E%7E,588,514,9174887,10155,0 +8053,Winter+is+coming,504,582,699364813,9812,0 +8054,Winter+is+coming,506,586,699364813,10068,0 +8055,PRO8L3M,455,495,7491093,10452,0 +8056,0095,458,438,3909522,10306,0 +8057,013,560,404,849063849,9783,0 +8058,FF008,470,516,699189792,6581,0 +8059,Wioska+barbarzy%C5%84ska,429,500,698290577,4702,0 +8060,103+Niemi%C5%82e+zaskoczenie,542,459,7092442,9028,0 +8061,032,595,470,8459255,10971,0 +8062,004+eQNares,488,547,698704189,9711,1 +8063,.achim.,531,456,6936607,10336,0 +8064,%7E048.,480,560,7139820,10495,0 +8065,Bagdad,469,388,8847546,10654,0 +8066,Front_07,461,523,2585846,2631,0 +8067,-+093+-,539,575,849018239,10000,1 +8068,Monetki,472,429,699098531,9632,0 +8069,Szlachcic,485,461,699098531,10292,0 +8070,0063+M,453,430,3909522,5290,0 +8071,KIELBA+070,473,577,699342219,10273,0 +8072,064,439,501,699510259,9745,0 +8073,Wioska+barbarzy%C5%84ska,453,535,3909522,2659,0 +8074,026,529,572,699189792,9745,0 +8075,0002Loarderon,422,577,9167250,9400,0 +8076,.achim.,516,411,6936607,10311,0 +8077,Wioska,408,418,698971484,10008,0 +8078,Wioska+barbarzy%C5%84ska,428,446,698884287,10285,0 +8079,%5B094%5D,562,541,8000875,9962,0 +8080,005+%7C+Lord+Axen+-+its+coming%21,563,554,8000875,10158,0 +8081,K44+001,417,476,698290577,9337,0 +8082,110.,507,485,8788366,8740,0 +8083,%C5%9Amieszkiii,479,587,3454753,9734,0 +8084,057+%7C,550,499,8000875,10495,6 +8085,Suppi,445,449,699856962,10223,0 +8086,179+Caracas,468,457,1497168,9761,0 +8087,Brat447,446,492,699262350,10481,0 +8088,Joms+017,523,415,699756210,10401,0 +8089,Front_33,454,520,2585846,3843,0 +8090,Wioska+barbarzy%C5%84ska,454,538,699698253,1988,0 +8091,%5B093%5D,552,500,8000875,9821,0 +8092,%2AINTERTWINED%2A%2A,522,566,698704189,9711,0 +8093,Joanna,497,411,699658023,9708,0 +8094,2.+GW+e100+%21%21%21,489,539,849087855,10144,0 +8095,A059,504,422,699299123,10495,0 +8096,027+co+ja+tu+robie+3,584,480,8459255,9924,0 +8097,130+Merida,483,491,1497168,9761,0 +8098,Yogi,512,548,2808172,7338,0 +8099,Wioska+barbarzy%C5%84ska,444,519,698971484,10008,0 +8100,9.2+San+Francisco,536,432,8444356,10495,0 +8101,SsSs,420,494,1536625,7424,0 +8102,.%3A022%3A.+Misa,507,411,8649412,9028,0 +8103,Napewno+to+nie+jest+off,506,426,848912265,10495,0 +8104,029.+Wioska+Groovyq,552,516,8788366,10252,0 +8105,008+Pusta+Xd,554,389,3600737,9549,0 +8106,Szlachcic,484,462,699098531,10297,0 +8107,Osada,501,444,699098531,10290,0 +8108,Szlachcic,493,470,699098531,9687,0 +8109,Gattacka,570,501,699298370,10452,0 +8110,NOT%3F,416,519,9236866,10042,0 +8111,196+Sucre,467,461,1497168,9761,0 +8112,025+%7C,567,558,8000875,10140,2 +8113,F015,488,536,699189792,9744,0 +8114,Wioska+barbarzy%C5%84ska,451,520,698971484,10160,0 +8115,CALL+994,543,544,699784536,10311,0 +8116,ladyanima,513,576,699703642,8788,0 +8117,R%C4%99cznik+do+zmiany,417,483,699697558,11970,0 +8118,.%3A084%3A.+Takmahal,540,444,848934935,12154,0 +8119,158+Belize+City,454,461,1497168,9761,0 +8120,Wioska+Barbarzy%C5%84ska,543,478,698867483,10019,0 +8121,%3F%2B44+76+Cormont,464,476,698361257,9661,0 +8122,%21Wioska+425,568,501,477415,10495,0 +8123,NOT%3F,432,540,9236866,9591,0 +8124,-+314+-,525,586,849018239,10000,0 +8125,Teatr,436,568,7249451,10478,0 +8126,CALL+998,541,540,699784536,10311,0 +8127,-032-,458,430,9291984,10241,0 +8128,Ateny_79,472,523,2585846,1073,0 +8129,Horyzont+zdarze%C5%84,529,541,7581876,9835,0 +8130,%2B44+63+Coudekerque,434,468,698361257,9844,0 +8131,Napewno+to+nie+jest+off,503,417,848912265,4739,0 +8132,Gliniok,541,476,698867483,10019,2 +8133,Oldschool,442,556,699443920,9683,0 +8134,20014,532,541,848915531,6359,0 +8135,%7E%7ELataj%C4%85cyHolender%7E%7E,582,505,9174887,10160,0 +8136,Pf+Konfederacja,492,487,848915730,10132,0 +8137,Szlachcic,584,500,699759128,10232,0 +8138,002,565,489,699099811,8712,0 +8139,042+Anchorage,465,467,1497168,9761,0 +8140,%5B187%5D,531,496,848985692,6647,0 +8141,P.025,535,568,873575,10056,0 +8142,Wioska+barbarzy%C5%84ska,447,528,698971484,10008,0 +8143,045.+A-RE-SE-EY,564,520,848967710,10054,0 +8144,%2AINTERTWINED%2A%2A,463,561,698704189,8121,0 +8145,slow,534,487,848967710,10252,0 +8146,Gattacka,580,499,699298370,9745,5 +8147,001.+Roma,611,461,849091866,10252,0 +8148,Front_09,459,522,2585846,9638,0 +8149,A055,502,423,699299123,10336,0 +8150,7.62+mm,494,425,699777234,10019,0 +8151,Erebor,507,513,849091897,12154,0 +8152,028.+A-RE-SE-EY,576,535,848967710,10252,0 +8153,072.,482,491,8788366,9400,0 +8154,106+Nieuczciwe+praktyki+rynkowe,544,460,7092442,7658,0 +8155,0155,461,549,698659980,6987,0 +8156,ADEN,561,435,698588535,6753,0 +8157,086.,584,476,849094609,7582,0 +8158,049+Bo%C5%9Bnia+i+Hercegowina,584,478,7092442,10252,0 +8159,ADEN,566,438,698588535,9475,0 +8160,0Wioska+barbarzy%C5%84ska,483,538,699781762,10636,0 +8161,0Wioska+barbarzy%C5%84ska,473,516,699781762,3432,0 +8162,%3F%2B44+76+Toussieu,463,473,698361257,9998,0 +8163,Konfiasze,479,498,698908912,10311,0 +8164,Wioska+barbarzy%C5%84ska,450,524,698971484,10008,0 +8165,Brat447,444,488,699262350,5053,0 +8166,%2AAteny_30,464,522,699333701,2047,0 +8167,KONFA+TO+MARKA%2C+NARKA,433,469,698152377,10292,0 +8168,Napewno+to+nie+jest+off,516,428,848912265,6411,0 +8169,%5B099%5D,551,539,8000875,9968,0 +8170,028,527,573,699189792,9745,0 +8171,Z06+Nokia,559,525,699272880,10185,0 +8172,Wioska+barbarzy%C5%84ska,448,447,699660539,9924,0 +8173,104+Calgary,470,481,1497168,9761,0 +8174,Osada+C,450,534,698971484,10504,0 +8175,012.+ALFI,480,567,8539216,2276,8 +8176,052+Chorwacja,580,463,7092442,10495,0 +8177,%230072+Marian,485,546,9272054,10019,0 +8178,F082,488,524,699189792,9400,0 +8179,MasteroN+04,565,449,699379895,10019,0 +8180,074,592,466,699573053,10421,0 +8181,Kolbudy,436,539,699856962,5491,0 +8182,Wioska+barbarzy%C5%84ska,457,535,699698253,2993,0 +8183,Szlachcic,462,420,698388578,10237,0 +8184,P+Konfederacja,460,456,848915730,9319,0 +8185,.%3A061%3A.+Chillout,517,432,848934935,2826,0 +8186,015,465,578,848886870,9047,0 +8187,R%C4%99cznik+do+zmiany,413,494,699697558,10495,0 +8188,00611,445,437,3909522,6902,0 +8189,Ateny_44,471,530,2585846,9261,0 +8190,005+koczownik%C3%B3w,587,480,9238175,10349,2 +8191,Fresio,450,449,699660539,9851,0 +8192,0063+b4+Wioska+bb,449,432,3909522,9747,0 +8193,Monetki,476,419,699098531,10292,0 +8194,%230051+Coca-Cola,484,547,9272054,10000,0 +8195,042,448,536,698971484,6786,0 +8196,%2AAteny_31,465,521,699333701,5016,0 +8197,CALL+1028,543,561,699784536,10311,0 +8198,B064,478,469,699299123,10495,0 +8199,Mzm46,578,511,7142659,10236,7 +8201,xxx,515,456,698239813,10495,0 +8202,NOT%3F,427,535,9236866,10042,0 +8203,095,545,499,699351301,9934,0 +8204,%C5%9Amieszkii,518,557,3454753,9019,0 +8205,10020,532,556,848915531,8448,0 +8206,Piek%C5%82o+to+inni,518,476,848956765,9259,0 +8207,008x,531,467,8155296,10346,0 +8208,.achim.,531,448,6936607,11550,0 +8209,Wioska+barbarzy%C5%84ska,437,510,698971484,10008,0 +8210,NOT%3F,437,550,9236866,1207,0 +8211,0107,469,558,698659980,9156,0 +8212,036,522,575,699189792,9742,0 +8213,7.62+mm,480,440,699777234,8788,0 +8214,0068,521,529,699432672,10495,0 +8215,%5B103%5D+North3,573,483,848985692,10049,0 +8216,EKG+M02+%C5%81,478,612,33900,10495,0 +8217,7.+Pisowisko,551,434,8444356,10495,0 +8218,047,561,398,849064752,10311,0 +8219,002,511,534,848915531,9756,0 +8220,%5B083%5D,558,544,8000875,9957,0 +8221,%2B44+72+Groffliers,425,474,698361257,9749,0 +8222,%230087+Zamo%C5%82odycze,483,547,9272054,9346,0 +8223,Suppi,438,517,699856962,9551,0 +8224,Mzm33.,590,508,7142659,10362,0 +8225,%230076+%C5%9Awiecko,485,565,9272054,10019,0 +8226,Wioska+barbarzy%C5%84ska,533,507,848967710,10252,0 +8227,%C5%812%C5%81,536,463,8155296,7726,0 +8228,-%5B010%5D-+Annapurna+I,556,485,849092827,7612,0 +8229,Wioska+09,495,522,848967710,10673,0 +8230,%230011+Partycypacja,486,550,9272054,10000,0 +8231,0037+K55+and987+OZDR.,508,568,3613413,9842,0 +8232,KONFA+TO+MARKA%2C+NARKA,434,472,698152377,10303,0 +8233,Szlachcic+044,569,524,758104,9338,0 +8234,039.+A-RE-SE-EY,546,500,848967710,10252,0 +8235,0002,594,423,8459255,10268,0 +8236,137+Colima,473,483,1497168,9761,0 +8237,KIELBA+128,467,584,699342219,10025,0 +8238,%7E%7ELataj%C4%85cyHolender%7E%7E,582,512,9174887,10155,0 +8239,Piek%C5%82o+to+inni,518,473,848956765,10192,2 +8240,-+083+-,538,581,849018239,10000,0 +8241,013,482,578,7976264,8070,0 +8242,%2AINTERTWINED%2A,471,564,698704189,9711,0 +8243,%2AAteny_33,466,520,699333701,3150,0 +8244,023.+A-RE-SE-EY,570,529,848967710,10252,0 +8245,Gattacka,581,500,699298370,9753,5 +8246,Mzm51,538,519,7142659,7719,0 +8247,Monetki,475,420,699098531,10292,0 +8248,AbacadA+020,558,431,699756210,10290,0 +8249,F071,496,548,699189792,10385,0 +8250,F065,507,537,699189792,9745,0 +8251,...Just+like+that,462,478,699723284,10452,0 +8252,Napewno+to+nie+jest+off,498,395,848912265,10495,0 +8253,.achim.,558,447,6936607,9012,0 +8254,FF010,470,517,699189792,7253,0 +8255,.%3A005%3A.+Busik,509,415,8649412,9577,0 +8256,Bucksbarzy%C5%84sKamiiiru,437,524,848955783,10971,0 +8257,0359,502,623,698659980,10495,0 +8258,7.62+mm,495,424,699777234,10019,0 +8259,153+Escuintla,453,466,1497168,9761,0 +8260,007.+Boginka,506,589,699703642,9761,0 +8261,keepo,486,525,848967710,10145,0 +8263,Szlachcic,567,488,698867446,9721,0 +8264,Wioska+Krolik14,593,526,699851345,9907,0 +8265,%5B091%5D,540,494,848985692,10528,0 +8266,015,491,389,698739350,9761,0 +8267,.Tuscaloosa,469,493,699781762,10252,3 +8268,Suppi,440,454,699856962,9570,0 +8269,Sparta_59,475,578,2585846,9638,0 +8270,Wioska+barbarzy%C5%84ska,563,389,699072129,10075,0 +8271,Daleko+005,475,586,699868002,8342,0 +8272,Monetki,479,418,699098531,10311,0 +8273,7.62+mm,468,441,699777234,8960,0 +8274,Ma%C5%82y,466,382,699393759,8321,0 +8275,007+Wrz%C3%B3d+na+d....,566,489,849031818,7832,0 +8276,.achim.,533,426,6936607,10311,0 +8277,010.,614,545,8900955,5889,0 +8278,0105qqqqqqqqqqqqqqqqqqqqqqqqq,468,445,3909522,10069,0 +8280,Szlachcic,493,481,699098531,10300,0 +8281,NOT%3F,427,528,9236866,10042,0 +8282,Piek%C5%82o+to+inni,517,426,848956765,10160,0 +8283,Village,517,579,849094067,12154,0 +8284,0082,463,460,848913037,9860,0 +8285,MIKOR+000,559,391,6343784,10232,0 +8286,xxx,484,431,698239813,10495,0 +8287,013.+ALFI,482,568,8539216,1421,0 +8288,Jaaa,580,544,698635863,10476,0 +8289,001,495,411,699658023,9753,0 +8290,-+213+-,553,573,849018239,10000,0 +8291,Wioska+Michalpol545,394,523,849030226,10955,0 +8292,.achim.,524,411,6936607,10311,0 +8293,003,407,508,699851427,10129,0 +8294,Jaaa,586,537,698635863,10484,0 +8295,035,583,469,699573053,10495,0 +8296,Taran,580,461,699759128,10237,0 +8297,060,403,505,699851427,10042,0 +8298,0599,438,594,698659980,10019,0 +8299,0052,591,515,698416970,10971,0 +8300,0.Chicago,520,590,698215322,9956,0 +8301,2..,426,446,698884287,10285,0 +8302,A020,481,412,699299123,10495,0 +8303,IBAR+2,432,554,8779575,3209,0 +8304,065,589,479,699573053,10495,0 +8305,Suppi,418,536,699856962,10076,6 +8306,Zasiedmiog%C3%B3rogr%C3%B3d,543,422,699433558,6199,0 +8307,KIELBA+026,454,581,699342219,10273,0 +8308,Majin+Buu+013,438,566,699054373,9591,0 +8309,Atlantis+15,542,418,699433558,5323,0 +8310,SKELLIGE,497,410,699658023,9686,0 +8311,KONFA+TO+MARKA%2C+NARKA,418,460,698152377,10292,0 +8312,04+%7C+Wygwizd%C3%B3w,541,431,849002091,9409,0 +8313,-+323+-,530,586,849018239,10000,0 +8314,%28007%29,419,537,699846892,10143,0 +8315,KONFA+TO+MARKA%2C+NARKA,390,468,698152377,10311,0 +8316,Erebor+6,499,590,699383121,9133,0 +8317,Alabasta,498,411,699433558,10311,0 +8318,-+320+-,528,586,849018239,10343,0 +8319,00631+Wioska,442,429,3909522,7362,0 +8320,xxx%3AAabadon,591,486,699347951,11824,0 +8321,Szlachcic,465,413,698388578,10237,0 +8322,0.Honolulu,519,588,698215322,9983,0 +8323,Probol4N,592,502,699379895,10495,0 +8324,012,583,536,8138506,10005,0 +8325,003,563,410,849064752,10311,0 +8326,.achim.,514,411,6936607,10452,0 +8327,%5B203%5D+WEST,612,455,848985692,9974,0 +8328,.achim.,518,409,6936607,10311,0 +8329,069+%7C,567,565,8000875,10068,1 +8330,039.,577,450,849094609,10495,0 +8331,Village,471,588,849094067,8396,0 +8332,057,546,419,7271812,7416,0 +8333,Jaaa,568,562,698635863,10484,0 +8334,050,587,473,699573053,10495,0 +8335,A%23023%23,402,475,698807570,11970,0 +8336,066,586,463,699573053,10495,0 +8338,%28024%29,420,539,699846892,8928,0 +8339,0.Nashville,519,589,698215322,9959,0 +8340,Erebor+4,501,593,699383121,10471,0 +8341,Teatr,434,564,7249451,7415,0 +8342,.achim.,516,395,6936607,10311,0 +8343,047+POD+MOSTEM,421,548,699382126,10476,0 +8344,091+MEHEHE,494,612,6116940,10019,0 +8345,%5B015%5D+Matarte,589,526,848985692,10052,7 +8346,Lord+Arsey+KING,579,582,848956513,10285,0 +8347,Feed+me+more+003,497,377,699756210,9924,0 +8348,Wioska+2,425,552,8779575,3791,0 +8349,Cztery+kostki+lodu,566,567,699785935,10311,0 +8350,%2B44+61+Lyon+Charpennes,415,463,698361257,9669,0 +8351,0017,465,605,33900,9816,0 +8352,PRO8L3M,407,499,7491093,9984,6 +8353,.0.Brooklyn,521,589,698215322,9978,0 +8354,Gattacka,591,491,699298370,9757,0 +8355,Oskal,429,560,699443920,2999,0 +8356,%2B44+71+Blecquenecques,416,470,698361257,9658,0 +8357,.achim.,517,409,6936607,10311,0 +8358,-4-,590,483,699347951,10495,0 +8359,197,546,428,849064752,7821,0 +8360,%5B077%5D,563,566,8000875,9933,0 +8361,Dobranoc,418,543,699856962,9670,0 +8362,Wioska+barbarzy%C5%84ska,591,521,848967710,10252,0 +8363,-+085+-,535,584,849018239,10000,0 +8364,%2B44+52+Lyon+Eurexpo,421,455,698361257,9681,0 +8365,K34+-+%5B045%5D+Before+Land,462,387,699088769,10016,0 +8366,-+081+-,538,585,849018239,10000,0 +8367,Boszkowo,420,546,699856962,9381,0 +8368,0054,591,514,698416970,10838,0 +8369,-+244+-,544,581,849018239,10000,0 +8370,NOT%3F,414,536,9236866,10063,0 +8371,C+001.,450,574,849028088,9530,0 +8372,Jaaa,577,552,698635863,10123,0 +8374,Feed+me+more+011,492,408,699756210,10140,0 +8375,033+Palm+Springs,433,441,9291984,10495,0 +8376,Darma+tutek101,591,485,8925695,9169,0 +8377,077,425,516,699851427,10042,0 +8378,G008,438,565,8779575,8212,0 +8379,0.Miami,524,589,698215322,9975,0 +8380,0002,615,527,6510480,10495,0 +8381,KIELBA+025,453,581,699342219,10273,0 +8382,.+Interstellar,422,550,8779575,9365,0 +8384,0062+%7E25%7E,437,436,3909522,7716,0 +8385,0178,466,543,698659980,10252,0 +8386,Jaaa,570,557,698635863,10484,0 +8387,%7C026%7C,557,569,873575,10295,0 +8388,-010-+Czemu%3F+Wyt%C5%82umacz%C4%99+potem,456,419,9291984,10479,0 +8389,013,571,555,699316421,9744,0 +8390,Monetki,471,411,699098531,10303,0 +8391,059,543,419,7271812,6446,0 +8392,Zao,489,407,699433558,10311,0 +8393,%2B44+61+Ecuires,413,466,698361257,9650,0 +8394,0059,447,424,3909522,10495,0 +8395,Wioska+barbarzy%C5%84ska,590,522,848967710,10252,0 +8396,%5B0004%5D,452,388,8630972,10495,0 +8397,Wioska+barbarzy%C5%84ska,497,406,699658023,9806,0 +8398,%2B44+71+Campigneulles+les+Petites,414,470,698361257,9669,0 +8399,Popas9,407,494,699265922,8939,0 +8401,WDG,425,553,8779575,3176,0 +8402,Szlachcic,568,486,698867446,9329,0 +8403,%5B107%5D,567,564,8000875,9864,0 +8405,Wioska+Szymon4077,427,442,698971484,10008,0 +8406,Wioska+barbarzy%C5%84ska,587,465,699573053,10487,0 +8407,z+007,560,596,699342219,10476,0 +8408,KIELBA+129,464,584,699342219,10237,0 +8409,Majin+Buu+014,439,568,699054373,6210,0 +8410,Knowhere,410,503,699723284,10452,0 +8411,KIELBA+005,445,575,699342219,10495,0 +8412,Wioska+barbarzy%C5%84ska,571,443,699368887,9994,0 +8413,00593,453,424,3909522,10276,0 +8414,.achim.,535,416,6936607,10544,0 +8415,015+Azalea+Town,591,505,699441366,11109,0 +8416,%5B095%5D,562,566,8000875,10221,0 +8417,Wioska+barbarzy%C5%84ska,503,389,7758085,9861,0 +8418,Jaaa,581,545,698635863,10479,0 +8419,0090,460,615,698659980,10083,0 +8420,%23Gyarados,577,453,699795378,10019,0 +8422,Wioska+barbarzy%C5%84ska,500,408,699658023,9656,0 +8423,Village,471,587,849094067,7999,0 +8424,lady,500,590,699703642,10471,0 +8425,Suppi,417,543,699856962,10090,1 +8426,%7E%7ELataj%C4%85cyHolender%7E%7E,602,498,9174887,10146,0 +8427,Wioska+512,581,458,477415,10495,0 +8428,Wioska+barbarzy%C5%84ska,511,542,848915531,3859,0 +8429,%23008,577,448,699368887,7889,0 +8430,%23052,525,590,849001572,9742,0 +8431,011,574,551,699316421,9744,0 +8432,KONFA+TO+MARKA%2C+NARKA,412,476,698152377,10336,0 +8433,Mzm27,589,505,7142659,10426,0 +8434,Monetki,471,414,699098531,10291,0 +8435,NOT%3F,409,507,9236866,10042,0 +8436,.%3A013%3A.+Chillout,504,407,848934935,7979,0 +8437,Teatr,433,566,7249451,9524,0 +8438,WD1,426,553,8779575,3624,0 +8439,00.1,496,418,699658023,9074,0 +8440,Jaaa,578,551,698635863,10487,0 +8442,105,412,530,699851427,10129,0 +8443,-+298+-,537,582,849018239,10000,6 +8444,102,564,401,849064752,10311,0 +8445,Wioska+barbarzy%C5%84ska,425,446,698884287,10285,0 +8446,00562,439,430,3909522,5214,0 +8447,%23045,522,590,849001572,9809,0 +8448,%23049,522,591,849001572,6709,0 +8449,Brat447,410,517,699262350,10495,0 +8450,Wioska+barbarzy%C5%84ska,570,440,699368887,9994,0 +8451,A037,490,411,699299123,6875,0 +8452,038+Kansas+City,435,435,9291984,9283,0 +8453,Wioska+barbarzy%C5%84ska,431,441,698884287,10090,0 +8454,.%3A043%3A.+Kisiel,504,409,8649412,9742,0 +8455,Gryfios+003,617,539,698666810,10484,0 +8456,Opyle,429,559,699443920,3402,0 +8457,%5B138%5D,565,564,8000875,9897,0 +8458,.achim.,514,410,6936607,10311,0 +8459,WDJ,425,554,8779575,3659,0 +8460,.achim.,526,412,6936607,10311,0 +8461,Wioska+barbarzy%C5%84ska,424,445,698884287,10285,0 +8462,Suppi,427,446,699856962,9644,0 +8463,012,412,481,699510259,9775,0 +8464,KONFA+TO+MARKA%2C+NARKA,413,476,698152377,10311,0 +8465,D0004,439,567,8841266,8492,0 +8466,%23004,578,448,699368887,8882,0 +8467,.achim.,537,392,6936607,10452,0 +8468,Jaaa,574,557,698635863,10441,0 +8469,00594,451,420,3909522,4924,0 +8470,Wioska+barbarzy%C5%84ska,495,407,699658023,9820,0 +8471,Jaaa,583,540,698635863,10484,0 +8472,049,414,526,699851427,10129,0 +8473,002.+Lagerta,589,565,699373599,10252,0 +8474,%23005,576,447,699368887,7657,0 +8475,Radek,413,473,699523631,10495,0 +8476,00591,449,424,3909522,10072,0 +8477,044.,579,455,849094609,10551,0 +8478,0017,594,499,699429153,10168,0 +8479,049+%7C,563,569,8000875,10068,0 +8480,K34+x025.,466,396,698364331,10495,0 +8481,005.+Wioska+JaaMwG,591,511,8788366,10495,0 +8482,Sparta_25,492,592,2585846,9638,0 +8483,15.+Cloud+Strife,535,587,8199417,10559,6 +8485,.achim.,518,408,6936607,10311,0 +8486,Suppi,414,534,699856962,9825,0 +8487,Gravity,420,454,698962117,9773,0 +8488,%23006,576,449,699368887,8122,0 +8489,047+Riihimaki,605,524,699272880,10579,0 +8490,-+084+-,534,586,849018239,10000,8 +8491,0007,502,506,698599365,10019,0 +8492,010,574,552,699316421,9744,0 +8493,Sparta_06,498,595,2585846,9181,0 +8494,.achim.,520,408,6936607,10311,0 +8495,Suppi,415,539,699856962,10459,2 +8496,NOT%3F,410,516,9236866,10042,0 +8497,Hej+hoo,456,385,699191449,10495,0 +8498,Ho%C5%82opole,489,409,699433558,10303,0 +8499,0338,499,624,698659980,10495,0 +8500,Knowhere,410,504,699723284,10452,0 +8501,.achim.,524,410,6936607,10311,0 +8502,-+077+-,535,586,849018239,10000,0 +8503,Nowa+Nadzieja+1,497,592,699383121,9263,0 +8504,Monetki,479,408,699098531,10294,0 +8505,Jaaa,574,554,698635863,10495,0 +8506,Gravity,418,456,698962117,9505,3 +8507,KIELBA+044,458,582,699342219,10495,0 +8508,-+057+-,540,582,849018239,10000,0 +8509,Lubi%C5%82a+r%C3%B3%C5%BCe..,562,565,699785935,10311,0 +8510,Wioska+barbarzy%C5%84ska,569,563,6818593,9835,0 +8511,Taran,582,462,699759128,10237,6 +8512,krzysiek1293-vequ2,412,425,7462660,10122,0 +8513,ADEN,560,429,698588535,6912,0 +8514,Majin+Buu+002,440,571,699054373,9761,0 +8516,047,565,395,849063849,10728,0 +8517,NOT%3F,411,514,9236866,10042,0 +8518,049+-+A01.%2A%2A%2A,440,603,225023,10495,0 +8519,Gattacka,593,492,699298370,7333,4 +8520,%5B004%5D+Maak+jou+dood+%2A,590,525,848985692,10162,0 +8521,182,558,428,849064752,10311,6 +8522,CALL+1024,561,568,699784536,10311,0 +8523,0.Columbia,522,588,698215322,9786,0 +8524,Kentin+ufam+Tobie,406,490,699783765,10000,0 +8525,BBB,555,425,1006847,10213,0 +8526,048,552,400,849064752,10311,0 +8527,KIELBA+014,445,572,699342219,10484,0 +8528,Avanti%21,378,479,698625834,10152,0 +8529,Ob%C5%82o...,432,562,699443920,3633,0 +8530,MasteroN+05,570,442,699379895,10362,0 +8531,Wioska+516,584,456,477415,10495,0 +8532,Majin+Buu+001,442,572,699054373,9761,0 +8533,-9-,591,477,699347951,12154,0 +8534,%C5%9Amieszki,532,618,3454753,9168,0 +8535,Syrup+Village,499,410,699433558,10311,0 +8536,%5BA%5D_%5B049%5D+Dejv.oldplyr,408,484,699380607,10248,0 +8537,NOT%3F,410,507,9236866,10042,0 +8539,Teatr,434,566,7249451,9888,0 +8540,0098,447,423,699431255,9835,0 +8541,.%3A142%3A.+Niangmen,508,406,848934935,9761,0 +8542,-+082+-,537,585,849018239,10000,1 +8543,%2A301%2A,507,612,606407,10311,0 +8544,.achim.,532,412,6936607,10311,0 +8545,0060,592,510,698416970,7364,0 +8546,Gravity,418,458,698962117,9489,0 +8547,Gattacka,591,494,699298370,9741,0 +8548,B033,488,455,699299123,10495,0 +8549,Jaaa,577,550,698635863,10476,0 +8550,Canberra,422,450,698884287,10285,0 +8551,Alaska,414,472,699265922,9761,0 +8552,Jaaa,581,544,698635863,10481,0 +8553,-+318+-,527,588,849018239,10000,0 +8554,Research+and+Development,532,585,8199417,10316,0 +8555,S7+-+6+Service+Tunnel,533,585,8199417,10224,0 +8556,Wioska+barbarzy%C5%84ska,585,466,699573053,10495,0 +8557,.achim.,517,407,6936607,10311,0 +8558,%23002,577,447,699368887,9594,0 +8559,%5B014%5D+Kashe+Ka,591,526,848985692,10223,0 +8560,NOT%3F,416,536,9236866,10042,0 +8561,041,557,427,849064752,10311,9 +8562,Suppi,419,546,699856962,9944,0 +8563,Wioska+barbarzy%C5%84ska,431,440,698884287,10285,0 +8564,COUSINS,484,592,7976264,10104,0 +8565,058,539,418,7271812,10495,0 +8566,Ho%C5%82opole,490,407,699433558,10311,0 +8567,KIELBA+004,446,575,699342219,10495,0 +8568,KARTAGINA+..4,456,580,8438707,8770,0 +8569,Horyzont+zdarze%C5%84,531,611,7581876,9835,0 +8570,Wioska+barbarzy%C5%84ska,565,569,6818593,9835,0 +8571,019.+Brzeginka,505,582,699703642,6676,0 +8572,5.+Szprotka,478,536,699781762,10013,0 +8573,%5BA%5D_%5B036%5D+Dejv.oldplyr,409,475,699380607,10495,0 +8574,041.,579,451,849094609,9456,0 +8575,Wioska+513,584,458,477415,10495,0 +8576,-+210+-,549,578,849018239,10000,0 +8577,Suppi,426,447,699856962,9670,0 +8578,jol+jol,402,566,9167250,7567,0 +8579,0056,592,517,698416970,9675,0 +8580,%7C020%7C,557,570,873575,10444,0 +8581,KIELBA+024,452,581,699342219,10273,0 +8582,%5B0055%5D,448,397,8630972,10495,0 +8583,Wioska+barbarzy%C5%84ska,493,408,699658023,9881,0 +8584,NOT%3F,413,536,9236866,10042,0 +8585,Monetki,481,411,699098531,10167,0 +8586,083.,588,478,849094609,11344,0 +8587,061,406,504,699851427,10042,0 +8588,A016,449,420,8740199,10221,0 +8589,Idar,428,555,8779575,3694,0 +8590,0034,589,513,6510480,9787,0 +8591,-+129+-,542,583,849018239,10000,8 +8592,%23067,471,586,699605333,9829,0 +8593,.achim.,519,408,6936607,10311,0 +8594,02.+Wioska+Prykopek,470,589,699364813,10495,0 +8595,x13,422,448,698884287,10285,0 +8596,Wioska+barbarzy%C5%84ska,573,441,699368887,9994,0 +8597,Monetki,476,409,699098531,10294,0 +8598,NOT%3F,408,518,9236866,10060,0 +8599,Ghost+Rider4,487,593,7976264,9155,0 +8600,Kiedy%C5%9B+Wielki+Wojownik,394,455,8632462,9829,0 +8601,Wioska+barbarzy%C5%84ska,447,454,699660539,9492,0 +8602,Wioska+barbarzy%C5%84ska,481,590,7976264,9318,0 +8603,Majin+Buu+016,436,565,699054373,9546,0 +8604,.+Fight+Club,422,548,8779575,9492,0 +8605,.achim.,526,403,6936607,10311,0 +8606,Wioska+0020,408,523,1804724,9539,0 +8607,Wioska+barbarzy%C5%84ska,428,441,698884287,10285,0 +8608,029+Honolulu,434,436,9291984,9597,3 +8609,.achim.,523,409,6936607,10311,0 +8610,Szlachcic,592,511,698867446,9721,0 +8611,.%3A015%3A.+Szafa,507,405,8649412,9761,0 +8612,West+02,591,480,698702991,9761,0 +8613,KIELBA+008,445,573,699342219,10245,3 +8614,D0001,439,569,8841266,10354,0 +8615,merhet,538,587,698215322,10036,0 +8616,A0010,384,483,8841266,10252,0 +8617,096,409,526,699851427,10042,0 +8618,Erebor+3,502,594,699383121,10471,0 +8619,CALL+1001,555,577,699784536,10495,0 +8620,%C5%9Amieszki,534,619,3454753,9131,0 +8621,Jaaa,570,558,698635863,10484,0 +8622,Suppi,412,536,699856962,9827,0 +8623,Popas3,407,498,699265922,9761,0 +8624,Suppi,417,544,699856962,9811,0 +8625,098,414,530,699851427,10048,0 +8626,.achim.,537,413,6936607,10544,0 +8627,028,547,420,7271812,10495,0 +8628,Sparta_62,493,594,2585846,9638,0 +8629,scoti,492,619,699494488,10349,0 +8630,Wioska+0007,410,524,1804724,10161,0 +8631,Wioska+barbarzy%C5%84ska,499,406,699658023,9897,0 +8632,-11-,590,472,699347951,10177,0 +8633,Jaaa,577,551,698635863,10478,0 +8634,KOSZARY+ABADONA,590,484,699347951,12154,0 +8635,Mmmmm,429,563,699833171,4632,0 +8636,KIELBA+089,452,578,699342219,10023,0 +8637,055,545,416,699761749,10495,0 +8638,%5BA%5D_%5B033%5D+Dejv.oldplyr,404,477,699380607,10444,0 +8639,.%3A002%3A.+Another+World,510,408,8649412,8930,5 +8640,Kentin+ufam+Tobie,406,491,699783765,10000,0 +8641,0000001%23,432,574,849089881,10542,0 +8642,034,557,428,849063849,9259,0 +8643,Jehu_Kingdom_26_,598,485,8785314,9993,0 +8644,KONFA+TO+MARKA%2C+NARKA,409,487,698152377,10311,0 +8646,%5B104%5D,568,565,8000875,9956,0 +8647,SsSs,417,492,1536625,9547,0 +8648,AbacadA+016,559,426,699756210,10273,0 +8649,Hammerhead,531,613,8199417,10160,0 +8650,037,411,524,699851427,10042,0 +8651,Szlachcic,470,414,698388578,9284,0 +8652,%5B137%5D+North,587,469,848985692,10311,0 +8653,Gattacka,594,488,699298370,9745,0 +8654,Monetki+%3F%3F%3F,479,406,699098531,10292,0 +8655,003+Jednak+za+ma%C5%82o+deffa+w+nocy,587,463,698829590,10319,0 +8656,%5BA%5D_%5B034%5D+Dejv.oldplyr,409,474,699380607,10495,0 +8657,027.+Beta,543,416,699799629,10495,0 +8658,%23044,520,591,849001572,9809,0 +8659,Wioska+barbarzy%C5%84ska,589,468,699573053,10490,0 +8660,Wioska+barbarzy%C5%84ska,464,415,9291984,6485,0 +8661,Teatr,436,570,7249451,9722,0 +8662,011,545,521,699194766,9634,0 +8663,KIELBA+047,460,583,699342219,10495,0 +8664,x05,423,445,698884287,10285,1 +8665,Suppi,416,544,699856962,9808,0 +8666,.achim.,521,407,6936607,10311,0 +8667,Ho%C5%82opole,480,400,699433558,9899,0 +8668,.%3A023%3A.+Zlew,509,409,8649412,9906,0 +8669,%3F%3F%3F,425,557,8779575,9296,0 +8670,%5B138%5D+North,587,472,848985692,10051,0 +8671,FKG+01-16,418,406,356642,9835,0 +8672,089,406,513,699851427,10129,0 +8673,0002,558,394,699485250,10211,0 +8674,Daleko+025,481,594,6116940,8208,0 +8675,Teatr,435,568,7249451,10029,0 +8676,022,410,527,699851427,10129,0 +8677,Malbork,441,571,698769107,9835,0 +8678,0001,606,495,699429153,10559,0 +8679,Jaaa,578,552,698635863,10479,0 +8680,.achim.,528,413,6936607,10311,3 +8681,026+Andora,589,474,7092442,10495,0 +8682,Wioska+barbarzy%C5%84ska,432,438,698884287,10285,0 +8683,.za%C5%9B+ten+KUBA,423,550,8779575,8840,0 +8684,KIELBA+015,442,573,699342219,10294,0 +8685,003+Pewter+City,595,499,699441366,11109,0 +8686,%23012,532,588,849001572,9761,0 +8687,0020,594,502,699429153,10301,0 +8688,KIELBA+012,445,576,699342219,10259,0 +8689,Popas,405,498,699265922,9816,0 +8690,019,575,556,699316421,9744,0 +8691,012,618,476,8459255,10320,0 +8692,Sector+6+Slums+Area,514,591,8199417,10083,0 +8693,Okuba,431,556,699443920,3628,0 +8694,-013-+Wszystko+dlatego+%C5%BCe,456,418,9291984,10479,0 +8695,Wioska+barbarzy%C5%84ska+018%7C,547,421,6343784,9663,0 +8696,%23068,476,588,699605333,10728,0 +8697,045.,582,456,849094609,9760,0 +8698,Village,470,587,849094067,8303,0 +8699,042.,578,451,849094609,9827,0 +8700,045,503,385,698739350,10247,0 +8701,.achim.,518,407,6936607,10311,0 +8702,Teatr,434,568,7249451,10143,6 +8703,098+MEHEHE,518,612,6116940,10160,0 +8704,Jaaa,584,543,698635863,10478,0 +8705,ADEN,562,432,698588535,9130,0 +8706,Sector+1,531,585,8199417,10559,0 +8707,COUSINS,485,593,7976264,10041,0 +8708,Osada+koczownik%C3%B3w,430,560,699443920,3641,1 +8709,Cast+Away+019,444,484,698290577,10636,0 +8710,-+214+-,555,573,849018239,10000,0 +8711,002+Viridian+City,592,499,699441366,11109,5 +8712,Darma+Tomi77,510,384,699368887,10237,0 +8713,Teatr,431,564,7249451,9960,0 +8714,ADEN,564,430,698588535,10056,0 +8715,Monetki,472,411,699098531,10292,0 +8717,.achim.,525,411,6936607,10311,0 +8719,NOT%3F,410,513,9236866,10042,0 +8720,PRO8L3M,408,498,7491093,10311,0 +8721,Witam+w+wietnamie,420,552,698971484,10008,0 +8722,%C5%9Amieszkiii,475,588,3454753,8573,0 +8723,0013,595,497,699429153,10301,0 +8724,.achim.,533,410,6936607,10311,0 +8725,Popas7,406,495,699265922,9252,0 +8726,VN+Canalie+Braize,467,380,699883079,9558,0 +8727,KARTAGINA+..1,455,582,8438707,7904,0 +8728,IRW,427,555,8779575,3297,0 +8729,0058,446,421,3909522,10259,0 +8730,Wioska+0010,408,519,1804724,10167,0 +8731,Szlachcic,509,477,699098531,9835,0 +8732,Szlachcic,459,415,698388578,10237,0 +8733,-+284+-,517,592,849018239,10000,0 +8734,Wioska7,512,593,8369778,10220,0 +8735,F074,508,534,699189792,7706,0 +8736,%5BA%5D_%5B027%5D+Dejv.oldplyr,408,482,699380607,10495,5 +8737,%2B44+61+Widehem,413,468,698361257,9669,0 +8738,Szlachcic,462,415,698388578,10237,0 +8739,012,477,592,699364813,10093,0 +8740,CALL+1027,558,574,699784536,10311,0 +8741,Szlachcic,494,473,699098531,9762,0 +8742,PRO8L3M,406,497,7491093,9220,0 +8743,.achim.,534,411,6936607,10311,0 +8744,020,419,517,699851427,10042,0 +8745,ADEN,561,430,698588535,8124,0 +8746,051,588,471,699573053,10495,0 +8747,%2B44+61+Decines,411,465,698361257,9841,6 +8748,Witam+w+wietnamie,422,553,698971484,8001,0 +8749,181+Kicia..........,463,582,7976264,10129,0 +8750,Sparta_05,500,595,2585846,9638,0 +8751,%2B44+61+Bray+Dunes,412,467,698361257,10495,0 +8752,Winstrol,593,499,699379895,10495,0 +8753,015,587,536,8138506,9814,0 +8754,%230095,510,595,1536231,10495,0 +8755,Szlachcic,464,414,698388578,10237,0 +8756,Daleko+027,480,592,8369778,8518,0 +8757,079,549,421,849064752,10311,0 +8758,Teatr,434,567,7249451,10503,0 +8759,.%3A025%3A.+Rower,513,407,8649412,9745,0 +8760,090,592,481,699573053,10495,0 +8761,Wioska+barbarzy%C5%84ska,568,436,699368887,7620,0 +8762,0016,477,593,699280514,10273,0 +8763,017+-+Legancko%2A%2A%2A,448,580,225023,10495,0 +8764,West+Blue,492,407,699433558,10530,5 +8765,Szlachcic,459,414,698388578,10237,0 +8767,NOT%3F,408,511,9236866,10042,0 +8768,L+4,613,476,849027653,10224,0 +8769,.achim.,538,412,6936607,9869,0 +8770,ADEN,565,433,698588535,7819,0 +8771,027,574,441,699368887,10104,8 +8772,.+%C5%BBywiec,424,548,698971484,7636,0 +8773,020,542,612,699189792,9761,0 +8774,010,584,540,8138506,9892,0 +8775,00592,450,423,3909522,10160,0 +8776,Suppi,414,540,699856962,9989,0 +8777,Bez+s%C5%82%C3%B3w,564,568,699785935,10311,0 +8778,Szlachcic,468,414,698388578,10237,0 +8779,Radek,410,473,699523631,10478,0 +8780,097,409,525,699851427,10129,0 +8781,KR%C3%93L+PAPI+WIELKI,573,560,698191218,10000,0 +8782,CALL+1022,559,574,699784536,10311,0 +8783,Ho%C5%82opole,485,408,699433558,10311,0 +8784,Mzm08.,593,510,7142659,10495,0 +8785,092,591,472,699573053,10495,0 +8786,004,561,403,849063849,10636,0 +8787,%28010%29,416,538,699846892,10143,0 +8788,Kanczendzonga,378,486,699265922,9825,0 +8789,0062+%7E26%7E+Lech+-7,437,433,3909522,9850,0 +8790,074,408,516,699851427,10042,0 +8791,Wioska+517,582,453,477415,10495,0 +8792,011,414,539,699425709,9873,0 +8793,Suppi,416,539,699856962,10362,0 +8794,KONFA+TO+MARKA%2C+NARKA,418,459,698152377,10292,0 +8795,Osada+koczownik%C3%B3w,424,446,698884287,10285,2 +8796,Taran,583,453,699759128,9592,0 +8797,Gattacka,594,487,699298370,9753,0 +8798,XXXX,491,383,849054951,10242,0 +8799,008.+Wietrzyca,507,592,699703642,9697,0 +8800,Jaaa,581,550,698635863,10479,5 +8801,Monetki+2,470,411,699098531,10349,0 +8802,WDBar,425,555,8779575,2603,0 +8803,KIELBA+049,461,584,699342219,10247,0 +8804,Szlachcic,462,414,698388578,10237,0 +8805,026+Nashville,431,439,9291984,10495,0 +8807,%230035+Coals,481,561,9272054,10000,0 +8808,.achim.,525,410,6936607,10311,0 +8809,-5-,589,472,699347951,10569,0 +8810,%23003,577,444,699368887,7429,0 +8812,Daleko+010,478,590,8369778,7538,0 +8813,Teatr,434,565,7249451,10157,0 +8814,Wioska+%28041%29,620,485,698232227,9785,0 +8815,G001,432,566,8779575,10311,0 +8816,%2B44+61+Saint+Priest+Manissieux,412,466,698361257,9844,0 +8817,Gravity,415,458,698962117,9579,0 +8818,Witam+w+wietnamie,415,540,699856962,9644,0 +8819,Feed+me+more+013,493,406,699756210,10066,4 +8820,017,399,544,699856962,9550,0 +8821,Pszcz%C3%B3%C5%82ki,432,564,8779575,10311,0 +8823,FAKE+OR+OFF,442,403,698231772,9833,0 +8824,012,572,438,699368887,9439,0 +8825,-015-+Dotyka%C4%87%2C+przytula%C4%87,456,415,9291984,10441,0 +8826,0004,524,521,699432672,10495,0 +8827,Z03,554,579,873575,10180,0 +8829,Szlachcic,461,416,698388578,10237,0 +8830,KIELBA+010,445,577,699342219,10273,0 +8831,Kentin+ufam+Tobie,431,401,699783765,10000,0 +8832,PRO8L3M,406,505,7491093,10311,0 +8833,.016.,482,382,698489071,10316,0 +8834,039+Baltimore,431,433,9291984,10487,0 +8835,.achim.,534,396,6936607,10311,0 +8836,CALL+1004,553,577,699784536,10544,0 +8838,088+MEHEHE+4,487,594,6116940,10019,0 +8839,%23%23%23%23,451,580,699342219,10495,9 +8840,Zasiedmiog%C3%B3rogr%C3%B3d,540,426,699433558,9976,0 +8841,064+%7C,565,565,8000875,9740,0 +8842,Jehu_Kingdom_29_,591,476,8785314,9993,0 +8843,Wioska+515,583,451,477415,10495,2 +8844,.achim.,527,410,6936607,10311,0 +8845,.achim.,525,409,6936607,10311,0 +8846,020,504,594,7976264,10211,0 +8847,Lord+Arsey+KING,590,534,848956513,10285,0 +8848,Szlachcic,460,417,698388578,10237,0 +8849,Szlachcic,466,410,698388578,8316,0 +8850,Dobranoc,418,545,699856962,9670,0 +8851,Connecticut,410,469,699265922,9761,0 +8852,%5B092%5D,531,501,848985692,10057,0 +8853,%2B44+61+Hervelinghen,413,461,698361257,9844,0 +8854,%2B44+61+Uxem,415,466,698361257,9658,0 +8855,Wioska+barbarzy%C5%84ska,405,503,698290577,5630,0 +8856,Monetki,483,408,699098531,10311,0 +8857,-6-,592,483,699347951,10636,0 +8858,-+091+-,536,585,849018239,10000,0 +8859,088,410,523,699851427,10129,0 +8860,KARTAGINA+..5,456,581,8438707,9028,0 +8861,-+281+-,518,594,849018239,10000,0 +8862,AbacadA+014,561,427,699756210,9658,0 +8863,023+Jednak+z+sensem,432,433,9291984,9749,0 +8864,Jaaa,580,551,698635863,10484,0 +8865,021,408,526,699425709,9505,0 +8866,daleko+009,478,589,8369778,8217,0 +8867,Stage+group+C,568,597,699364813,10311,0 +8868,%2AINTERTWINED%2A%2A,525,561,698704189,9711,0 +8869,Monetki+%3F%3F%3F,477,408,699098531,10292,0 +8870,bright+crystal,469,497,698290577,9077,0 +8871,Gravity,416,455,698962117,9498,0 +8872,F012,500,528,699189792,9756,0 +8873,Mi%C4%99guszowiecki+Szczyt,414,467,849013126,9614,0 +8874,01.+Piccolo,512,596,849085961,9735,0 +8875,Popas4,405,497,699265922,9811,0 +8876,-+098+-,548,581,849018239,10000,7 +8878,%5BA%5D_%5B029%5D+Dejv.oldplyr,404,489,699380607,10495,0 +8879,.%3A054%3A.Chillout,508,405,848934935,8053,0 +8880,Sector+6,513,590,8199417,10019,0 +8881,KIELBA+133,465,587,699342219,10362,0 +8882,Tu+poleg%C5%82+Kalifah+Idris+IV,506,580,699364813,10362,0 +8883,085,404,502,699851427,10129,0 +8884,003.+A-RE-SE-EY,591,528,848967710,10252,0 +8885,001,408,508,699851427,10129,0 +8886,Sphinx,426,560,699833171,4995,0 +8887,NOT%21%21,466,585,9236866,10042,0 +8889,Z06,545,583,873575,9870,0 +8890,S%C5%82odki+Urai,504,389,849017894,3794,0 +8891,-+104+-,543,586,849018239,10000,0 +8892,%5B100%5D+North,576,481,848985692,10181,0 +8893,Ho%C5%82opole,492,406,699433558,9835,0 +8894,-+122+-,542,586,849018239,10016,0 +8895,Suppi,413,534,699856962,9809,0 +8896,082.+ALFI,481,557,8539216,1357,0 +8897,031,573,438,699368887,9244,0 +8898,Taran,585,465,699759128,10237,4 +8899,010,406,516,699851427,10129,0 +8900,%230091+Piszczac+Pierwszy,478,553,9272054,10083,0 +8901,Monetki+x,476,410,699098531,10292,0 +8902,006+%7C+Lord+Axen+-+Rumbling%2C,559,549,8000875,10343,0 +8903,011,586,540,8138506,10019,0 +8904,KIELBA+046,459,583,699342219,10495,0 +8905,.achim.,513,405,6936607,10311,0 +8906,Szlachcic,465,412,698388578,10237,0 +8907,030,491,593,8369778,8466,0 +8908,K44+x028.,451,422,698364331,6323,0 +8909,004.+A-RE-SE-EY,591,525,848967710,10252,9 +8910,088,566,395,849064752,10311,0 +8912,-+103+-,542,584,849018239,10000,0 +8913,Knowhere,376,493,699723284,10452,0 +8914,eeeeee,575,445,849092827,7464,0 +8915,Gravity,421,452,698962117,9553,0 +8916,KONFA+TO+MARKA%2C+NARKA,409,476,698152377,10311,0 +8917,Wioska+barbarzy%C5%84ska,497,404,699658023,9653,0 +8918,026.,591,478,8900955,9995,0 +8919,0019,476,593,33900,9704,0 +8920,.J+wydzia%C5%82,421,550,699856962,8756,0 +8921,003.+Wioska+Ilia,593,525,8788366,10495,9 +8922,Szlachcic,580,484,699759128,10237,0 +8923,Village,467,587,849094067,8079,0 +8924,bluberry,590,474,698702991,9835,0 +8925,Suppi,418,542,699856962,9550,0 +8926,099,409,521,699851427,10042,0 +8927,Domek+6,557,422,849064614,9750,0 +8928,Gattacka,594,485,699298370,9821,9 +8929,Gattacka,583,476,699298370,9664,0 +8930,Wioska+barbarzy%C5%84ska,566,569,6818593,9835,0 +8932,PPP1,429,565,699833171,3655,0 +8933,-7-,592,477,699347951,10728,0 +8934,Jaaa,583,548,698635863,10476,0 +8935,04.,572,439,699368887,9994,0 +8936,AbacadA+022,560,425,699756210,9824,0 +8937,053,484,407,698739350,9761,0 +8938,00593,449,421,3909522,10566,0 +8939,%5B002%5D+Ubiti+te,591,533,848985692,10273,0 +8940,Z07,548,582,873575,9972,0 +8941,%230028+Kr%C4%85g,487,559,9272054,10019,0 +8942,Gravity,420,452,698962117,9497,0 +8943,Village,503,595,849094067,12154,0 +8944,Rysy,415,462,849013126,9667,0 +8945,-+316+-,528,588,849018239,10000,0 +8946,Cintra,515,594,699698253,9430,0 +8947,Szlachcic,455,416,698388578,10237,0 +8948,Carpo,423,558,699833171,9401,0 +8949,CALL+1018,559,575,699784536,10311,6 +8950,.achim.,516,406,6936607,10311,0 +8951,.%3A053%3A.+Chillout,503,406,848934935,6181,0 +8952,Jehu_Kingdom_05_,592,474,8785314,9993,0 +8953,%21+KOXOWNIA,582,554,477415,9874,0 +8954,.achim.,540,414,6936607,10677,0 +8956,013.+A-RE-SE-EY,587,533,848967710,10252,0 +8957,Ostr%C3%B3dzki+Sektor,517,510,699785935,10838,0 +8958,Gravity,416,454,698962117,9489,0 +8960,NOT,421,428,9236866,10042,0 +8961,Wioska+barbarzy%C5%84ska,594,522,699851345,9264,0 +8962,KR%C3%93L+PAPI+WIELKI,568,567,698191218,10000,0 +8963,Wioska+barbarzy%C5%84ska,587,461,699573053,9524,0 +8964,090,410,526,699851427,10042,0 +8965,ADEN,566,435,698588535,10055,0 +8966,0052+Kerfurqqqqqqqqqqqqqqqqqqqq,439,425,3909522,9438,0 +8967,Wioska%2C,504,596,8369778,10089,0 +8968,Gravity,419,454,698962117,9505,0 +8969,002.+A-RE-SE-EY,590,530,848967710,10252,6 +8970,Gravity,419,455,698962117,9763,0 +8971,-+285+-,519,592,849018239,10000,0 +8972,Jaaa,580,550,698635863,10479,0 +8973,023,562,426,849064752,9966,0 +8974,Teatr,436,569,7249451,9794,0 +8975,001+Hello+Moto,595,424,699491076,10001,0 +8976,Wioska+barbarzy%C5%84ska,426,442,698884287,10285,0 +8977,017,587,535,8138506,10019,0 +8978,Gravity,417,453,698962117,9500,0 +8979,C001,573,400,699722599,10311,0 +8980,Zasiedmiog%C3%B3rogr%C3%B3d,544,416,699433558,7284,0 +8981,Erebor,500,593,699383121,10471,0 +8982,%5BA%5D_%5B050%5D+Dejv.oldplyr,406,488,699380607,10231,0 +8983,CALL+1002,552,578,699784536,10544,0 +8984,Teatr,430,564,7249451,10282,0 +8985,Wioska+barbarzy%C5%84ska,403,507,698290577,5858,0 +8986,%5B102%5D,566,565,8000875,9966,0 +8987,Wioska+0030,406,521,1804724,10210,0 +8988,Batory,501,595,606407,10495,0 +8989,072,550,417,699761749,10365,0 +8990,Jaaa,583,543,698635863,10475,0 +8991,.achim.,531,408,6936607,10311,0 +8992,%21Mew,582,449,699795378,9968,0 +8993,.achim.,512,406,6936607,10273,0 +8994,KIELBA+135,431,566,699342219,9811,0 +8996,Wioska+barbarzy%C5%84ska,426,440,698884287,10285,0 +8997,009,585,538,8138506,10019,0 +8998,KARTAGINA+..3,456,582,8438707,6817,0 +8999,0204,407,521,7085510,10216,0 +9000,Gravity,404,446,698962117,9539,0 +9001,Daleko+016,481,591,8369778,7987,0 +9002,083+MEHEHE+6,465,590,6116940,10083,0 +9003,KIELBA+042,459,586,699342219,10495,0 +9004,Wyspy+Skellige,496,405,699658023,9783,0 +9005,Sparta_07,498,597,2585846,9742,0 +9006,161,562,428,849064752,8087,6 +9007,KARTAGINA+...,457,583,8438707,8423,0 +9008,KR%C3%93L+PAPI+WIELKI,566,570,698191218,10000,0 +9009,Gattacka,594,476,699298370,9976,4 +9010,.032.,490,379,698489071,10393,0 +9011,KARTAGINA+..7,454,584,8438707,10019,0 +9012,A.019,598,562,9188016,10000,0 +9014,.achim.,537,412,6936607,10920,0 +9015,032+Odense,603,524,699272880,10160,0 +9016,Teatr,430,566,7249451,8762,0 +9017,KR%C3%93L+PAPI+WIELKI,574,560,698191218,10000,0 +9018,056,401,507,699851427,10129,0 +9019,CALL+1044,571,565,699784536,10311,0 +9020,181,624,474,699726660,2889,0 +9021,Daleko+026,480,594,6116940,8734,0 +9022,Land+of+Fire,394,443,698962117,9505,0 +9023,0004+MzM,602,569,698416970,9630,0 +9024,Wioska+barbarzy%C5%84ska,567,433,699368887,8334,0 +9025,001+Bybzi+Bybzi,572,558,699316421,9797,0 +9026,024,547,418,7271812,10495,0 +9027,Wioska,382,525,849084005,10178,0 +9028,0055,592,514,698416970,10971,0 +9029,Nowa+Nadzieja+7,502,595,699383121,6380,0 +9030,0008,530,613,848915531,11130,0 +9031,Wioska+0031,405,518,1804724,8557,0 +9032,Ostend,423,555,699443920,9761,0 +9033,022,581,547,8138506,10019,0 +9034,COUSINS00000,490,593,7976264,10133,0 +9035,Gravity,419,449,698962117,9515,0 +9036,007,584,541,8138506,10019,7 +9037,056,545,415,699761749,10495,0 +9038,SINGED+X+SZEF,494,378,699368887,10178,0 +9039,134,559,425,849064752,10311,0 +9040,Z02,554,580,873575,10495,0 +9041,Kalifornia,410,466,699265922,9462,0 +9042,.achim.,522,406,6936607,10311,0 +9043,Jaaa,569,568,698635863,10495,0 +9044,.achim.,539,412,6936607,10971,0 +9045,Najlepszy+s%C4%85siad+012,601,442,699756210,10273,0 +9046,.NA+PRZECIWKO,423,552,8779575,9860,0 +9047,NOT%3F,433,526,9236866,10042,0 +9048,Lord+Arsey+KING,577,592,848956513,8548,0 +9049,Jaaa,578,558,698635863,10487,0 +9050,Pobozowisko,414,590,699513260,10971,0 +9052,Z08,550,581,873575,9966,0 +9053,%7E092.,495,619,7139820,10495,0 +9054,Monetki,475,410,699098531,10292,0 +9055,Wioska+barbarzy%C5%84ska,591,522,848967710,10252,0 +9056,0057,592,516,698416970,10100,0 +9057,Wioska,587,543,698702991,9835,0 +9058,032,404,503,699851427,10129,0 +9059,008,412,537,699425709,9873,0 +9061,%2B44+61+Lyon+Part+Dieu,411,467,698361257,9841,9 +9062,Fajna+082,459,563,698704189,6847,0 +9063,Darma,428,397,356642,9835,0 +9064,.%3A125%3A.+Niangmen,508,397,848934935,9976,0 +9065,Szlachcic,587,456,698867446,9721,0 +9066,30003,489,543,848915531,11113,0 +9067,.achim.,533,412,6936607,10311,0 +9068,%23013,534,589,849001572,9761,0 +9069,%23056,522,594,849001572,9809,0 +9070,%23047,527,591,849001572,9750,0 +9071,Wioska+Velsaniq+3,490,597,7976264,7873,3 +9072,Gattacka,598,421,699298370,9835,0 +9073,101,408,520,699851427,10129,0 +9074,0054+To+ju%C5%BC+koniecqqqqqqqqqqqqqq,441,426,3909522,10078,0 +9075,Wioska+M01,406,524,1804724,9722,0 +9076,002,396,498,699510259,9761,0 +9077,082,589,463,699573053,10490,0 +9078,Gravity,420,448,698962117,9515,0 +9079,Sector+7,509,596,8199417,10019,0 +9080,CALL+1025,563,570,699784536,10311,0 +9081,-15-,591,469,699347951,10551,0 +9082,KARTAGINA+..8,453,584,8438707,9770,0 +9083,A.001,601,559,9188016,10000,0 +9084,Jaaa,584,548,698635863,10441,0 +9085,-+120+-,538,589,849018239,10000,0 +9086,020,410,525,699425709,9873,0 +9087,Monetki,473,410,699098531,10311,0 +9088,Jaaa,576,557,698635863,10490,0 +9089,Szlachcic,453,416,698388578,10237,0 +9090,Wioska8,515,593,8369778,10208,0 +9091,A043,475,407,8740199,10294,0 +9092,%5BA%5D_%5B041%5D+Dejv.oldplyr,409,473,699380607,10444,0 +9093,BBB,579,444,1006847,10083,0 +9094,KIELBA+018,444,575,699342219,10259,0 +9095,132,551,420,849064752,10311,7 +9096,Suppi,417,545,699856962,9825,0 +9097,Gravity,412,457,698962117,9505,0 +9098,Dobranoc,414,545,699856962,8930,0 +9099,Wioska6%2C,514,594,8369778,9883,0 +9100,021+Horik,580,552,699373599,10019,0 +9102,Erebor+2,502,593,699383121,10471,7 +9103,Shire,594,519,849091897,10160,0 +9104,A017,449,418,8740199,10223,0 +9105,CALL+1003,551,578,699784536,10311,0 +9107,038,609,499,699573053,10495,0 +9108,Gattacka,593,490,699298370,9747,0 +9109,003+-+Valencia,597,492,698342159,10019,0 +9110,KR%C3%93L+PAPI+WIELKI,576,562,698191218,10000,0 +9111,Monetki,470,407,699098531,10297,0 +9112,KIELBA+119,430,567,699342219,10183,0 +9113,para,498,594,8369778,8155,0 +9114,071,405,510,699851427,10129,0 +9115,Wioska+barbarzy%C5%84ska,423,444,698884287,10285,0 +9116,%7E%7ELataj%C4%85cyHolender%7E%7E,597,495,9174887,10160,0 +9117,Majin+Buu+010,439,571,699054373,9761,0 +9119,004+-+Sevilla,597,487,698342159,10019,0 +9120,Kentin+ufam+Tobie,407,492,699783765,10014,0 +9121,Sparta_08,497,597,2585846,9638,0 +9122,013,409,527,699425709,9873,0 +9123,Blaviken,489,406,699433558,9899,0 +9124,Jehu_Kingdom_27_,595,486,8785314,9993,5 +9125,%23055,520,592,849001572,9809,0 +9126,Oby..,430,562,699443920,4780,0 +9127,030.,565,394,699799629,10495,0 +9128,%23007,576,445,699368887,7741,0 +9129,020,583,547,8138506,10019,0 +9130,029,552,419,699761749,10495,0 +9131,Monetki,479,405,699098531,10294,0 +9132,.+GRYZIESZ+PIACH,422,551,8779575,9761,0 +9133,W+002+bombastik,432,591,849084740,9239,0 +9134,005+Vermilion+City,595,504,699441366,11109,0 +9135,.%3A016%3A.+Kosa,511,405,8649412,9745,0 +9136,098,547,416,849064752,10311,0 +9137,003,604,458,8459255,10203,0 +9138,Gattacka,593,486,699298370,10653,9 +9139,Wodospady,560,572,699785935,10375,0 +9140,0209,524,594,698659980,10083,0 +9141,%2B44+61+Vaugneray,414,461,698361257,9860,0 +9143,.%3A055%3A.+Chillout,504,405,848934935,6860,0 +9144,0024,596,497,699429153,9889,0 +9145,Arkansass,409,467,699265922,9761,0 +9146,0009,532,592,698659980,10252,9 +9147,.achim.,522,409,6936607,10311,0 +9148,Wioska+barbarzy%C5%84ska,427,439,698884287,10285,0 +9149,004,588,541,8138506,10019,6 +9150,10017,527,556,848915531,11321,0 +9151,Wioska+barbarzy%C5%84ska,574,438,699368887,7565,0 +9152,024,569,425,849063849,8399,0 +9153,Taran,543,386,699170684,9814,0 +9154,----------5,454,425,9291984,10479,0 +9155,KIELBA+027,440,573,699342219,10237,0 +9156,0052+kA,440,425,3909522,10083,7 +9157,KIELBA+003,447,577,699342219,10495,0 +9158,Cristo+de+la+Concordia,428,562,699833171,4456,0 +9159,Kentin+ufam+Tobie,403,486,699783765,10000,0 +9160,KIELBA+041,459,587,699342219,10495,0 +9161,AbacadA+021,566,429,699756210,8021,0 +9162,Z04,555,579,873575,10449,0 +9163,%23022,531,589,849001572,9564,0 +9164,Jaaa,563,575,698635863,9986,0 +9165,%23048,526,590,849001572,9750,0 +9166,%5B041%5D,590,532,848985692,10394,0 +9167,025,546,418,7271812,10495,0 +9168,001,411,539,699425709,9873,0 +9169,%23057,521,593,849001572,9735,0 +9170,0051+Zodiak,437,426,3909522,9649,0 +9171,Wioska+barbarzy%C5%84ska,402,504,698290577,5338,0 +9172,033,416,518,699851427,10129,0 +9173,Wioska+barbarzy%C5%84ska,448,417,9291984,7718,0 +9174,KONFA+TO+MARKA%2C+NARKA,407,483,698152377,10311,0 +9175,021,584,546,8138506,10019,0 +9176,%7C031%7C,569,564,6818593,9835,0 +9177,Majin+Buu+011,438,572,699054373,9761,0 +9178,Teatr,433,567,7249451,9312,0 +9179,008.+Wioska+Vampirka%2A,593,524,8788366,10252,0 +9180,Monetki,478,405,699098531,10291,0 +9181,Sparta_60,496,597,2585846,9638,0 +9182,%23059,517,596,849001572,9711,0 +9183,067,595,484,699573053,10444,0 +9184,A%23026%23,406,479,698807570,11949,0 +9185,%5BA%5D_%5B045%5D+Dejv.oldplyr,407,471,699380607,10336,0 +9186,KIELBA+101,463,590,699342219,10220,0 +9187,WK46,460,588,1631690,2284,0 +9188,%5BA%5D_%5B052%5D+Dejv.oldplyr,405,485,699380607,10495,0 +9189,Wioska+kruszynka1,432,434,9291984,10495,0 +9190,kathare,536,547,873575,10362,0 +9191,.%2C.%2C,403,517,1804724,9676,0 +9192,%5B003%5D+Te+vras,592,533,848985692,10300,0 +9193,010,410,536,699425709,9873,0 +9194,Monetki,477,406,699098531,10297,6 +9195,O%3AAabadon+A,596,480,699347951,12154,0 +9196,KR%C3%93L+PAPI+WIELKI,575,563,698191218,10000,0 +9197,Suppi,411,534,699856962,9809,2 +9199,KONFA+TO+MARKA%2C+NARKA,408,479,698152377,10311,0 +9200,Village,473,590,849094067,8399,0 +9201,0021,595,505,699429153,10301,0 +9202,049,547,399,849064752,10311,0 +9203,Wioska+Horst,405,523,1804724,9870,0 +9204,Popas10,402,502,699265922,9808,0 +9205,kathare,549,613,873575,10495,0 +9206,048,551,418,7271812,10495,0 +9207,.%3A024%3A.+Motyka,508,404,8649412,9761,0 +9208,Sparta_04,500,596,2585846,9638,0 +9209,.achim.,526,407,6936607,10290,0 +9211,%28034%29,406,528,699846892,10072,0 +9212,Jaaa,578,557,698635863,10479,0 +9213,Jehu_Kingdom_28_,594,481,8785314,9993,4 +9214,-+102+-,544,582,849018239,10000,0 +9215,026,561,426,849063849,8588,0 +9216,%2A001+Islandia,388,541,699425709,9873,0 +9217,Wioska+452,588,542,477415,10495,0 +9218,PRO8L3M,449,492,7491093,10178,0 +9219,Monetki,481,406,699098531,10294,0 +9220,Village,471,589,849094067,8132,0 +9221,Szlachcic,459,413,698388578,10237,0 +9222,Napewno+to+nie+jest+off,496,398,848912265,10495,0 +9223,0012,595,502,699429153,10168,0 +9224,Wioska,427,560,699833171,7837,0 +9225,.achim.,534,410,6936607,10311,0 +9226,Gravity,420,446,698962117,9486,0 +9228,091,585,456,699573053,10495,0 +9229,NOT%3F,412,539,9236866,8666,0 +9230,1.Indianapolis,542,587,698215322,10094,0 +9231,Z05,555,578,873575,10838,1 +9232,0202,403,509,7085510,10216,0 +9233,NOT%3F,413,537,9236866,9950,0 +9234,South+K35,564,392,699146580,10042,0 +9235,BBB,579,447,1006847,7834,0 +9236,005,596,491,699573053,10495,0 +9237,0201,405,511,7085510,10216,0 +9238,s181eo31,383,463,393668,10611,0 +9239,KR%C3%93L+PAPI+WIELKI,577,560,698191218,10000,0 +9240,Wioska+barbarzy%C5%84ska,569,432,699368887,7298,0 +9241,00505+CalciFord,433,429,3909522,9942,0 +9242,Gravity,417,450,698962117,9498,0 +9243,Monetki,476,407,699098531,9816,0 +9244,K34+-+%5B017%5D+Before+Land,447,389,699088769,10290,0 +9245,Szlachcic,463,411,698388578,10237,0 +9247,Sparta_10,495,598,2585846,9638,0 +9248,KIELBA+050,454,586,699342219,10247,6 +9249,102,406,529,699851427,10129,0 +9250,022,597,500,699573053,10495,0 +9251,Gravity,417,452,698962117,9499,7 +9252,Jaaa,578,559,698635863,10495,0 +9253,OBB,425,560,699443920,3436,0 +9254,KIELBA+016,441,573,699342219,10273,0 +9255,CALL+1026,562,571,699784536,10311,0 +9256,P.031,545,560,873575,10503,0 +9257,.achim.,539,413,6936607,10971,0 +9258,0056+Wioska+1,440,428,3909522,10083,0 +9259,AAA,509,404,849093422,9761,0 +9260,111........,476,595,7976264,8760,0 +9261,.achim.,526,409,6936607,10311,0 +9262,Wioska+barbarzy%C5%84ska,563,571,6818593,9835,0 +9263,Gravity,418,449,698962117,9499,0 +9264,Kentin+ufam+Tobie,403,484,699783765,10000,0 +9265,1.Atlanta,541,589,698215322,9980,2 +9266,%2A00D1,560,605,699567608,9041,0 +9267,KIELBA+006,443,580,699342219,10273,0 +9268,Sparta_03,501,597,2585846,9638,0 +9269,%7E044.,488,593,7139820,10495,0 +9270,Avanti%21,380,484,698625834,9989,0 +9271,AbacadA+002,565,427,699756210,10362,0 +9272,.achim.,517,406,6936607,10311,0 +9273,A018,447,418,8740199,10221,0 +9274,05+%7C+Zalesie,542,432,849002091,9521,0 +9275,ADEN,564,431,698588535,10167,0 +9276,083,595,508,699573053,9601,0 +9277,KR%C3%93L+PAPI+WIELKI,582,546,698191218,10000,0 +9278,Teatr,432,569,7249451,10076,9 +9279,Monetki,469,411,699098531,10311,0 +9280,KIELBA+009,446,577,699342219,10273,0 +9281,-+280+-,518,596,849018239,10000,6 +9282,A020,450,419,8740199,10221,0 +9283,011.+Wioska+Mucharadza,593,522,8788366,10252,0 +9284,Bagdad,468,389,8847546,10679,0 +9285,-012-+opresji+wytaraska%C4%87,457,416,9291984,10481,0 +9286,%5B006%5D+Ubiti,590,533,848985692,10223,0 +9287,004,598,494,699573053,10495,0 +9288,lady,481,595,699703642,9045,0 +9289,granica+wyobrazni,559,608,699567608,9818,0 +9290,A022,447,417,8740199,10226,0 +9291,A062,504,433,699299123,8816,0 +9292,Domek+7,559,423,849064614,9761,0 +9293,-011-+Yo%2C+nie+mog%C4%99+si%C4%99+z,457,417,9291984,10479,0 +9294,Szlachcic,462,410,698388578,10237,0 +9295,kathare,548,614,873575,10362,0 +9296,Jaaa,581,554,698635863,10478,5 +9297,-+321+-,532,590,849018239,9312,0 +9298,00561,438,429,3909522,8824,0 +9299,Samotna+G%C3%B3ra,534,530,7581876,10019,0 +9300,018,557,420,699761749,10495,0 +9301,.achim.,527,408,6936607,10311,0 +9302,Szlachcic,461,411,698388578,10237,0 +9303,0210,524,593,698659980,10083,2 +9304,041,490,403,698739350,9761,0 +9305,Wioska+0003,399,530,1804724,10311,0 +9306,027+Herman+Melville,590,461,698829590,6254,0 +9307,014.+ALFI,474,565,8539216,2999,0 +9308,Jaaa,581,552,698635863,10484,0 +9310,G004,431,567,8779575,10506,0 +9312,.achim.,530,410,6936607,10311,0 +9313,Witam+w+wietnamie,416,551,698971484,10008,0 +9314,%2B44+61+Villeurbanne+Grandclement,412,462,698361257,9841,8 +9315,F051,490,521,699189792,9053,0 +9316,KIELBA+114,430,565,699342219,8301,0 +9317,Wioska+barbarzy%C5%84ska,488,404,699433558,9835,0 +9318,A%23025%23,407,478,698807570,11951,7 +9319,-+313+-,536,591,849018239,9666,0 +9320,Wioska+barbarzy%C5%84ska,576,442,699368887,9994,0 +9321,075,591,470,699573053,10161,0 +9322,.%3A145%3A.+Niangmen,502,402,848934935,9825,0 +9323,022,608,457,849088515,8426,0 +9324,Monetki,469,410,699098531,10294,0 +9326,B16,499,405,849093422,9825,0 +9327,Gravity,416,457,698962117,9505,0 +9328,084,587,464,699573053,9024,0 +9330,Teatr,431,568,7249451,10490,0 +9332,.Intouchables,418,550,698971484,10008,0 +9333,NOT,420,443,9236866,10042,0 +9334,ladyanima,514,569,699703642,9761,0 +9335,Lord+Arsey+KING,594,530,848956513,10285,0 +9336,009+Syracuse,441,469,1497168,9761,0 +9337,%230091,509,598,1536231,10495,0 +9338,Monetki,469,408,699098531,10292,6 +9339,%28012%29,408,531,699846892,10149,0 +9340,016,549,582,699189792,9741,4 +9341,%23061,520,595,849001572,9819,0 +9342,0012,522,595,698659980,10252,9 +9343,.achim.,537,420,6936607,10311,0 +9344,-014-+ci%C4%85gle+chcesz+mnie+g%C5%82aska%C4%87,456,412,9291984,10479,0 +9346,Wioska+barbarzy%C5%84ska,443,421,849027025,9051,0 +9347,Szlachcic,457,414,698388578,10237,0 +9348,00502,434,430,3909522,8732,0 +9349,Wioska5,509,594,8369778,10212,0 +9350,NOT%3F,411,538,9236866,10042,0 +9351,Ataturk+Mask,425,561,699833171,2624,0 +9352,KR%C3%93L+PAPI+WIELKI,565,570,698191218,10000,0 +9353,Popas6,403,494,699265922,9816,0 +9354,Dobranoc,415,544,699856962,10083,0 +9355,030,585,450,699722599,10346,0 +9356,Polania+001,541,451,758104,9415,0 +9357,Astana,422,447,698884287,10285,0 +9358,BBB,581,444,1006847,6926,0 +9359,Monetki,477,404,699098531,10292,3 +9360,BBB,582,444,1006847,8195,0 +9361,BBB,556,424,1006847,6396,0 +9362,137,565,430,849064752,10311,0 +9363,Szlachcic+019,590,537,758104,9338,0 +9364,Wioska+M.01,404,515,1804724,8839,0 +9365,Wioska+barbarzy%C5%84ska,422,445,698884287,10285,0 +9366,AbacadA+023,560,422,699756210,5444,0 +9367,KONFA+TO+MARKA%2C+NARKA,406,478,698152377,10311,0 +9368,BBB,553,422,1006847,7757,0 +9369,0002,597,497,699429153,10301,8 +9370,Lecymy+DUR,443,391,6169408,7251,0 +9371,KIELBA+052,454,587,699342219,10290,0 +9372,%5B040%5D,592,537,848985692,10392,0 +9373,.achim.,536,411,6936607,10598,0 +9374,Wioska+0008,402,517,1804724,10185,0 +9375,%5B038%5D,593,532,848985692,10068,0 +9376,o3pO,442,564,699443920,9370,0 +9377,Sector+7Slums+Area,512,597,8199417,10083,0 +9378,0053+kA1,441,424,3909522,10430,0 +9379,.achim.,520,407,6936607,10311,0 +9380,0000,552,608,698659980,10160,0 +9381,Z01,555,582,873575,10346,0 +9382,Sparta_12,496,599,2585846,9638,0 +9383,0004.+B+-+Teirm,595,488,7125212,9761,0 +9384,Q%C5%82osek,419,556,699443920,9994,0 +9385,Szlachcic,456,414,698388578,10237,0 +9386,Monetki,469,409,699098531,10295,0 +9387,Wioska15,620,478,848935020,8804,0 +9388,1.Detroit,551,584,698215322,9980,0 +9389,%5BA%5D_%5B043%5D+Dejv.oldplyr,407,474,699380607,10444,0 +9390,Gravity,415,451,698962117,9505,0 +9391,068,587,460,699573053,10495,0 +9392,%23054,476,596,699605333,10393,0 +9393,Witam+w+wietnamie,421,556,698971484,10008,0 +9394,004,556,400,699761749,10495,0 +9395,Gravity,415,453,698962117,9506,0 +9396,-+286+-,517,597,849018239,10000,0 +9397,Wioska4%2C,492,597,8369778,10221,0 +9398,Suppi,413,539,699856962,10237,0 +9399,%5B031%5D+Kwica+YoU,597,516,848985692,10019,0 +9400,013,440,491,699510259,9761,0 +9401,A023,451,416,8740199,10229,0 +9402,Monetki,478,403,699098531,10291,0 +9403,Ni%C5%BCnie+Rysy,408,462,849013126,9580,0 +9404,CHW%23051,481,520,699781762,9315,0 +9405,020+Wioska,619,520,8323711,10495,0 +9406,A+007.,438,576,849028088,9980,0 +9407,NOT%3F,427,536,9236866,9811,0 +9408,KIELBA+057,462,587,699342219,10273,0 +9409,063+%7C,545,504,8000875,10160,0 +9410,Jehu_Kingdom_06_,593,472,8785314,9993,0 +9411,-+317+-,533,591,849018239,10000,0 +9412,0350,444,603,698659980,10019,0 +9413,Z09,550,584,873575,10144,0 +9414,Tczew,429,566,698769107,9835,0 +9416,Jaaa,579,557,698635863,10478,0 +9417,Jaaa,570,567,698635863,10955,0 +9418,.%3A146%3A.+Niangmen,505,401,848934935,9825,0 +9419,001,564,400,849063849,10636,0 +9420,KR%C3%93L+PAPI+WIELKI,571,567,698191218,10000,0 +9421,-+287+-,519,594,849018239,10000,0 +9422,Weso%C5%82ych+%C5%9Awi%C4%85t,585,455,699368887,9994,0 +9423,Gattacka,596,488,699298370,9835,0 +9424,Wioska+Sekou,607,565,699737356,8723,0 +9425,Jaaa,569,560,698635863,10478,0 +9426,Nowa+Nadzieja+3,495,597,699383121,9797,0 +9427,KIELBA+063,462,589,699342219,10362,0 +9428,032,404,492,699510259,10217,9 +9429,U+Patryka,542,410,699433558,10295,0 +9430,Wioska+barbarzy%C5%84ska,572,434,699368887,7703,0 +9431,%7E%7ELataj%C4%85cyHolender%7E%7E,595,501,9174887,10160,0 +9432,K44+x012,445,422,698364331,9636,0 +9433,BBB,581,446,1006847,7116,0 +9434,A+010.,438,575,849028088,10218,0 +9435,KONFA+TO+MARKA%2C+NARKA,405,479,698152377,10311,0 +9436,0211,526,593,698659980,10019,0 +9437,AbacadA+010,562,427,699756210,9788,0 +9438,NOT,424,437,9236866,10042,0 +9439,Napewno+to+nie+jest+off,490,404,848912265,9558,0 +9440,.Cwajka+Fans,500,597,606407,10495,0 +9441,-+282+-,518,595,849018239,10000,0 +9442,001,475,512,699333701,2148,0 +9443,Jaaa,582,594,698635863,10162,0 +9444,Domek+5,558,421,849064614,9814,0 +9445,COUSINS,484,594,7976264,9596,9 +9446,F081,488,526,699189792,9017,0 +9447,006,410,541,699425709,9873,0 +9448,Wioska+REXMUNDI,491,595,7976264,10004,0 +9449,Jaaa,585,546,698635863,10484,0 +9450,0622,550,610,698659980,10495,0 +9451,Winter+is+coming,511,595,699364813,10311,0 +9453,052,555,420,7271812,10495,0 +9454,Gravity,413,453,698962117,9505,0 +9455,Wioska+455,591,538,477415,10495,0 +9456,.%3A051%3A.+Chillout,502,405,848934935,7240,0 +9457,A.011,409,578,849088243,10495,0 +9458,CALL+988,560,577,699784536,10495,8 +9460,AbacadA+006,563,424,699756210,10030,0 +9461,West+03,595,472,698702991,9819,0 +9462,Wioska+barbarzy%C5%84ska,426,561,699833171,1053,0 +9463,KONFA+TO+MARKA%2C+NARKA,402,481,698152377,10311,0 +9464,%2B44+61+Bergues,411,466,698361257,9844,0 +9465,Winter+is+coming,455,588,699364813,9812,0 +9466,Wioska+0015,404,523,1804724,10196,0 +9467,057,544,412,699761749,10495,0 +9468,Szlachcic,451,418,698388578,10237,0 +9469,Wioska+barbarzy%C5%84ska,425,435,698884287,10285,0 +9470,Wioska+barbarzy%C5%84ska,441,423,849027025,9744,0 +9471,KIELBA+019,442,576,699342219,10259,0 +9472,Wioska,508,403,3895471,1997,0 +9473,017WDZ+ZN%C3%93W+GO%C5%9ACI+W+TWOICH+SNACH,411,544,699856962,9867,0 +9474,009+Nie+ca%C5%82kiem+zgodnie+z+planem,493,380,7758085,9861,0 +9475,0000010%23,436,573,849089881,10490,0 +9476,0212,532,594,698659980,10019,0 +9477,KIELBA+021,444,581,699342219,10495,0 +9478,Winter+is+coming,466,592,699364813,10311,0 +9479,-+311+-,531,592,849018239,10000,0 +9480,BBB,581,445,1006847,9752,0 +9481,Wioska+barbarzy%C5%84ska,564,571,6818593,9835,0 +9482,%5BA%5D_%5B031%5D+Dejv.oldplyr,403,480,699380607,10495,0 +9483,ABADON+B.A.D+L.I.N.E,594,478,699347951,11321,0 +9484,005+-+Zaragoza,598,487,698342159,10019,7 +9485,Quimon,419,555,699443920,9976,0 +9486,%23063,480,596,849001572,8180,0 +9487,033,554,418,7271812,10495,0 +9488,Sector+7+Pillar,515,598,8199417,10375,0 +9489,Joms+043,553,416,699756210,9609,0 +9490,.achim.,532,410,6936607,10311,0 +9491,%5BA%5D_%5B028%5D+Dejv.oldplyr,405,487,699380607,10495,4 +9492,Yogi,489,530,2808172,9903,0 +9493,Adiyogi+Shiva,426,562,699833171,5784,0 +9494,1.Memphis,540,591,698215322,10016,0 +9495,KR%C3%93L+PAPI+WIELKI,593,535,698191218,10000,5 +9496,AAA,498,403,849093422,8567,0 +9497,Wioska+barbarzy%C5%84ska,594,529,699851345,9689,0 +9498,009,384,455,3698627,10206,0 +9499,BBB,583,445,1006847,6543,0 +9500,ChceszPokojuSzykujSi%C4%99DoWojny,467,497,699333701,12154,0 +9501,0213,524,595,698659980,10019,0 +9502,Suppi,411,536,699856962,9806,0 +9503,076,592,469,699573053,10097,0 +9504,Szlachcic,507,458,699098531,9637,0 +9505,Wioska,596,520,698845189,9134,0 +9506,Wioska+Inko,545,605,699189792,9744,0 +9507,043,551,415,849063849,8724,6 +9508,FAKE+OR+OFF,440,401,698231772,9963,0 +9509,AbacadA+008,577,439,699756210,10495,0 +9510,022,477,594,7976264,10166,0 +9511,Sparta_77,498,596,2585846,9638,0 +9512,NOT%3F,404,509,9236866,10042,0 +9513,045o,445,582,699099811,11558,0 +9514,087+MEHEHE,488,598,6116940,10019,0 +9515,025+co+ja+tu+robie,599,505,8459255,10679,0 +9516,KIELBA+017,441,575,699342219,10297,0 +9517,%C5%81akomy+majk,472,596,699364813,9860,0 +9518,Wioska+barbarzy%C5%84ska,572,431,699368887,6447,0 +9519,Jaaa,575,562,698635863,10479,9 +9520,KONFA+TO+MARKA%2C+NARKA,397,469,698152377,12154,0 +9521,.achim.,529,409,6936607,10311,0 +9522,Wioska+006,403,500,698290577,10081,0 +9523,Majin+Buu+003,438,571,699054373,9761,0 +9524,Nowa+Nadzieja+2,490,598,699383121,9478,0 +9525,%23043,537,591,849001572,10005,0 +9526,Pf+Konfederacja+p+8,488,513,848915730,9938,0 +9527,Stage+group+D+2,477,595,699364813,9960,0 +9528,%5BA%5D_%5B025%5D+Dejv.oldplyr,406,482,699380607,10273,0 +9529,0000014%21,446,584,849089881,10130,0 +9531,.%3A147%3A.+Niangmen,500,404,848934935,9761,0 +9532,Szlachcic,453,413,698388578,10237,3 +9533,010+Powolutku,506,388,7758085,9925,0 +9534,Wioska+barbarzy%C5%84ska,427,562,699833171,2889,0 +9535,%230090,510,598,1536231,10495,0 +9536,009,411,535,699425709,9873,0 +9537,.achim.,518,404,6936607,10311,0 +9538,010,438,577,849028088,10495,0 +9539,AbacadA+003,566,427,699756210,10273,0 +9540,%7E%7ELataj%C4%85cyHolender%7E%7E,596,499,9174887,9835,0 +9541,.achim.,523,407,6936607,10311,0 +9542,066,404,508,699851427,10129,0 +9543,.achim.,527,405,6936607,10311,0 +9544,Wioska,589,543,698702991,10362,0 +9545,KIELBA+022,445,581,699342219,10262,0 +9546,-+322+-,516,596,849018239,10000,0 +9547,.achim.,528,410,6936607,10311,0 +9548,B20,497,403,8649412,9801,0 +9549,010.+Punkty+Topce,482,597,7976264,7789,0 +9550,Popas5,404,500,699265922,9752,0 +9551,KR%C3%93L+PAPI+WIELKI,571,568,698191218,10000,0 +9552,Wrzosowa,488,401,699433558,10495,8 +9553,Sinope,423,559,699833171,8974,0 +9554,Wioska+0014,404,525,1804724,10059,0 +9555,SsSs,402,491,1536625,8812,0 +9556,Wioska,504,597,8369778,10228,0 +9557,Winter+is+coming,464,593,699364813,9234,0 +9558,Gravity,413,457,698962117,9505,0 +9559,Daleko+018,481,593,699703642,7370,0 +9560,018+MASZ+KOLEJNY+TAKT,411,543,699425709,9873,0 +9561,.achim.,543,413,6936607,10634,0 +9562,Gravity,411,456,698962117,9494,0 +9563,-+268+-,533,581,849018239,10000,0 +9564,Sparta_13,498,599,2585846,9638,0 +9565,A024,446,416,8740199,10216,0 +9566,.achim.,521,406,6936607,10311,0 +9567,Monetki,474,408,699098531,9623,0 +9568,022,550,414,699761749,10495,0 +9569,JaawmG+P,583,551,8815749,10019,0 +9570,Leda,422,558,699833171,8339,0 +9571,009.+Wioska+Alstrem,593,523,8788366,10252,0 +9572,Kentin+ufam+Tobie,401,485,699783765,10000,0 +9573,092,404,514,699851427,10129,0 +9574,Domek+4,556,419,849064614,9549,0 +9575,Wioska+0032,405,517,1804724,10154,0 +9576,-+304+-,536,589,849018239,10000,0 +9577,%23057,480,598,699605333,10393,0 +9578,0014,597,494,699429153,10301,0 +9579,012.+Wioska+ruch135,594,520,8788366,10252,0 +9580,Teby_38,484,597,2585846,9638,0 +9581,Jaaa,580,559,698635863,10484,0 +9582,Gravity,419,448,698962117,9579,0 +9583,Wioska3,507,596,8369778,10220,0 +9584,%7C032%7C,570,565,6818593,9835,0 +9585,Pelplin,430,568,698769107,9835,0 +9586,%5B211%5D,570,568,8000875,2054,0 +9587,006.+Rygjafylke,426,433,699660539,10492,0 +9588,Wioska+barbarzy%C5%84ska,426,565,699833171,3333,0 +9590,-+114+-,548,586,849018239,10000,0 +9591,Z10,555,581,873575,10012,0 +9592,Winter+is+coming,478,594,699364813,9569,0 +9593,KR%C3%93L+PAPI+WIELKI,578,562,698191218,10000,0 +9594,%5BA%5D_%5B007%5D+Dejv.oldplyr,394,486,699380607,10495,0 +9595,Majin+Buu+006,434,576,699054373,9761,0 +9597,Szlachcic,467,409,698388578,10237,0 +9598,Wioska1%2C,504,599,8369778,9676,0 +9599,AbacadA+011,564,427,699756210,10273,0 +9600,%23062,520,594,849001572,9809,0 +9601,Winter+is+coming,463,593,699364813,9835,0 +9602,031,401,506,699851427,10042,0 +9603,Ho%C5%82opole,485,404,699433558,9835,0 +9604,BBB,556,423,1006847,9751,0 +9605,.%3A032%3A.+Chillout,520,449,848934935,7998,0 +9606,008,587,541,8138506,10019,0 +9607,-+105+-,544,586,849018239,10000,0 +9608,NOT,421,442,9236866,10042,0 +9609,Wioska+barbarzy%C5%84ska,577,436,699368887,9447,0 +9610,KIELBA+121,442,580,699342219,10252,0 +9612,019,553,415,699761749,10495,0 +9613,AbacadA+005,564,426,699756210,9742,0 +9614,%28030%29,407,532,699846892,9309,0 +9615,KIELBA+116,464,592,699342219,10237,0 +9616,Tank+003,401,505,698290577,9469,0 +9617,Monetki,480,406,699098531,10290,0 +9618,%23053,488,600,699605333,10728,0 +9619,.achim.,522,403,6936607,10311,0 +9620,069,597,474,699573053,10495,0 +9622,Teby_36,485,597,2585846,9638,0 +9623,Winter+is+coming,475,593,699364813,10311,0 +9624,B12,506,404,849093422,9596,0 +9625,KIELBA+087,456,587,699342219,10495,0 +9626,0214,522,597,698659980,10019,1 +9627,.%3A099%3A.+Niangmen,503,394,848934935,10544,0 +9628,%28035%29,405,528,699846892,10143,0 +9629,Suppi,413,538,699856962,10487,0 +9630,Monetki,482,402,699098531,10311,0 +9631,017,551,417,699761749,10495,0 +9632,Newbie,558,607,699567608,10144,0 +9633,%7E%7ELataj%C4%85cyHolender%7E%7E,600,502,9174887,9786,0 +9634,Joms+032,533,423,699756210,10401,0 +9635,.achim.,515,402,6936607,10311,0 +9636,070+%7C,543,521,8000875,10336,0 +9637,Osada+koczownik%C3%B3w,478,596,699364813,10311,3 +9638,015+%2A+Lady+Porto+%2A,595,521,699406750,12154,0 +9639,Wioska+sznur,403,504,699265922,8554,0 +9640,Wioska+M.04,405,522,1804724,9325,0 +9641,Czaru%C5%9B,573,599,699785935,10495,0 +9642,Ho%C5%82opole,488,405,699433558,10311,0 +9643,.achim.,537,389,6936607,10311,0 +9644,BBB,583,448,1006847,5987,0 +9645,%5BA%5D_%5B047%5D+Dejv.oldplyr,404,474,699380607,10495,0 +9646,020,589,454,699722599,10241,0 +9647,O%3AAabadon+d,593,478,699347951,12154,0 +9648,.achim.,513,402,6936607,10311,0 +9649,Wioska+0033,404,521,1804724,8759,0 +9650,Jehu_Kingdom_01_,598,481,8785314,9993,0 +9651,Wioska+barbarzy%C5%84ska,429,434,9291984,8375,0 +9652,Executive+Suite,522,608,8199417,10495,0 +9653,Winter+is+coming,478,597,699364813,10268,0 +9654,%2B44+62+Oye+Plage,427,469,698361257,9987,0 +9655,Eukalade,424,558,699833171,9458,0 +9656,056.+Isenstar,589,540,8337151,10083,8 +9657,Witam+w+wietnamie,418,553,698971484,10008,0 +9658,011+Myszy+z+dyszy,589,461,698829590,10495,0 +9659,Z11,546,584,873575,9966,0 +9660,%5B036%5D,593,538,848985692,10068,0 +9661,%28026%29,407,531,699846892,10144,0 +9662,Jaaa,584,552,698635863,10478,0 +9663,Monetki,477,405,699098531,10158,3 +9664,mehehe,523,597,699698253,9744,0 +9665,W.181%2F06,613,536,2999957,10242,0 +9666,Wioska+barbarzy%C5%84ska,409,461,699523631,10490,0 +9667,%230096,514,599,1536231,10495,0 +9668,%23054,520,596,849001572,9735,0 +9669,Dobranoc,414,543,699856962,9213,0 +9670,Dobranoc,416,547,698971484,10083,0 +9671,Szlachcic,460,413,698388578,10237,0 +9672,Monetki,479,403,699098531,10291,0 +9673,Wioska+barbarzy%C5%84ska,569,433,699368887,7500,0 +9674,Sparta_14,494,600,2585846,9638,0 +9675,-008-+Jestem+kotem,461,408,9291984,7362,4 +9676,Wioska+M...,404,520,1804724,8483,0 +9677,0000013%23,430,571,849089881,9793,0 +9678,%5BA%5D_%5B035%5D+Dejv.oldplyr,405,473,699380607,10444,0 +9679,%23024,486,599,699605333,10393,0 +9680,Z12,550,583,873575,10343,0 +9681,Gravity,416,449,698962117,9496,0 +9682,Wioska+barbarzy%C5%84ska,420,558,699833171,9324,0 +9683,Ho%C5%82opole,489,405,699433558,9835,0 +9684,Jehu_Kingdom_23_,597,509,8785314,9993,0 +9687,052,595,483,699573053,10495,0 +9688,KONFA+TO+MARKA%2C+NARKA,406,475,698152377,10311,0 +9689,%5B028%5D+Nuzudyti+tave,598,517,848985692,10057,0 +9690,KIELBA+097,463,592,699342219,10276,1 +9691,Prosecco,407,562,699443920,9878,0 +9692,Ciasny+wiesiek+222,504,600,699364813,10495,8 +9693,002,467,406,9291984,5579,0 +9694,A025,451,412,8740199,10237,0 +9695,012.+Bastion,417,556,698971484,10008,0 +9696,Wioska+barbarzy%C5%84ska,481,596,7976264,10024,0 +9698,koczownicza+03,402,515,1804724,9572,3 +9699,Wioska+%28016%29,598,511,698232227,9361,0 +9700,Quasi,418,555,699443920,5950,0 +9701,Wioska+barbarzy%C5%84ska,568,429,699368887,9592,0 +9702,z+028,564,603,699342219,10317,0 +9703,Gravity,409,457,698962117,9489,0 +9704,0215,525,594,698659980,10019,0 +9705,CALL+982,560,579,699784536,10495,0 +9706,AbacadA+007,572,430,699756210,10273,0 +9707,005-+Br%C3%B3dka+mo%C5%BCe+hmmm,455,410,9291984,6507,4 +9708,024+Ciemna+strona+mocy,590,457,698829590,6556,0 +9709,Mzm04,600,509,7142659,10252,0 +9710,Gravity,413,451,698962117,9502,0 +9712,Wioska+0028,402,521,1804724,9886,0 +9714,%23010,538,592,849001572,9740,0 +9715,Qumin,419,557,699443920,9761,0 +9716,CALL+1029,577,563,699784536,10654,0 +9717,CALL+1032,572,565,699784536,10311,0 +9718,Kulik+004,402,513,698290577,7294,0 +9719,Wioska+myszka,493,593,7976264,10047,0 +9720,Wioska+0002,406,466,698807570,9166,0 +9721,xx+006.+Bubu,400,494,698290577,8960,0 +9722,Winter+is+coming,507,599,699364813,10365,0 +9723,Szlachcic,463,409,698388578,10237,0 +9724,%7E%7ELataj%C4%85cyHolender%7E%7E,601,491,9174887,9812,0 +9725,.achim.,535,404,6936607,10247,0 +9726,0000020%23,428,571,849089881,10140,0 +9727,Joms+037,533,419,699756210,5288,0 +9728,004,490,603,7976264,10495,0 +9729,Cyk,571,432,848985692,7106,0 +9730,NOT,420,442,9236866,10042,0 +9731,Wioska+004,414,551,698971484,9513,0 +9732,Wioska,586,549,698702991,10083,0 +9733,Gravity,415,449,698962117,9503,0 +9734,%5B018%5D+Tua+Koj+MONETY,595,525,848985692,10221,3 +9735,xx+008.+Za+kilka+dolar%C3%B3w+wi%C4%99cej,401,497,698290577,9372,0 +9736,Z13,551,582,873575,10184,7 +9737,014+-+lista%2A%2A%2A,443,582,225023,10495,0 +9738,%23046,523,594,849001572,9809,0 +9739,Wioska+barbarzy%C5%84ska,421,558,699833171,8886,0 +9740,Wioska+0016,404,524,1804724,10157,0 +9741,Napewno+to+nie+jest+off,498,399,848912265,6891,0 +9742,A%23027%23,407,473,698807570,11951,0 +9743,Gravity,418,447,698962117,9491,0 +9744,KR%C3%93L+PAPI+WIELKI,571,569,698191218,10000,0 +9745,VN+Alexander+the+Great,465,381,699883079,9771,0 +9747,Szlachcic,461,409,698388578,10237,0 +9748,Kentin+ufam+Tobie,402,487,699783765,10000,0 +9749,106,550,389,849064752,10311,0 +9750,AAA,494,401,849093422,9902,0 +9751,Monetki,471,404,699098531,10290,0 +9752,0051+LZ,437,425,3909522,10484,0 +9753,Qled,416,555,699443920,6440,0 +9754,015+Gonzzollo,407,540,699425709,9873,0 +9755,Teatr,433,572,7249451,10294,0 +9756,.achim.,516,402,6936607,10311,0 +9757,%28009%29,405,531,699846892,10160,0 +9758,094,593,474,699573053,10495,0 +9759,001.,429,570,9167250,10104,0 +9760,-007-+Siemanko,462,407,9291984,10479,9 +9761,A+009.,441,576,849028088,9631,0 +9762,wioska,451,588,699364813,9129,0 +9763,013,586,450,699722599,10479,0 +9764,001,425,566,699833171,4157,0 +9765,Wish+You+Were+Here,587,545,848926293,7501,0 +9767,KIELBA+020,441,578,699342219,10273,0 +9768,won+zajente,480,403,1782523,6720,0 +9769,Kentin+ufam+Tobie,402,486,699783765,10000,0 +9770,KIELBA+100,463,591,699342219,10223,0 +9771,CALL+1030,573,564,699784536,10311,0 +9772,x+barbarzy%C5%84ska+009,400,497,698290577,8649,0 +9773,Teatr,432,570,7249451,9984,0 +9774,Wioska+barbarzy%C5%84ska,574,437,699368887,6771,0 +9775,Ho%C5%82opole,492,403,699433558,9899,0 +9776,0022,597,491,699429153,10058,0 +9777,Szlachcic,459,412,698388578,10237,0 +9778,AAA,510,402,849093422,9596,0 +9779,Wioska+%28018%29,592,538,698232227,9342,0 +9780,A026,447,415,8740199,10221,0 +9781,AbacadA+001,563,427,699756210,10273,0 +9782,Winter+is+coming,470,595,699364813,8947,0 +9784,KR%C3%93L+PAPI+WIELKI,575,564,698191218,10000,0 +9785,%7E%7ELataj%C4%85cyHolender%7E%7E,600,493,9174887,9070,0 +9786,040+Louisville,427,432,9291984,10371,0 +9787,NOT%3F,429,520,9236866,10042,0 +9788,KR%C3%93L+PAPI+WIELKI,561,578,698191218,10000,0 +9789,%28008%29,407,530,699846892,10152,0 +9790,-+112+-,548,585,849018239,9786,0 +9792,...,575,433,698867483,9319,8 +9793,00506,435,427,3909522,4931,0 +9794,Bagdad,477,383,8847546,10654,0 +9795,Feed+me+more+010,490,402,699756210,10365,0 +9796,PRO8L3M,465,497,7491093,10311,0 +9797,014,589,538,8138506,9555,0 +9798,CSA,403,518,1804724,9623,3 +9799,.achim.,523,404,6936607,10311,0 +9800,007,503,601,7976264,10028,0 +9801,Truskawkowy+Bili,471,597,699364813,9537,0 +9802,.achim.,517,403,6936607,10311,0 +9803,031,589,457,849088515,9824,0 +9804,Joms+044,555,417,699756210,6902,0 +9805,044,561,419,699761749,10495,0 +9806,Wioska+barbarzy%C5%84ska,556,579,6818593,9835,0 +9807,Kiedy%C5%9B+Wielki+Wojownik,393,457,8632462,9835,0 +9808,Szlachcic,588,456,698867446,9771,0 +9809,%7E020.,497,599,7139820,10495,0 +9810,Village,505,599,849094067,12154,0 +9811,NOT,422,440,9236866,10042,0 +9812,.achim.,513,404,6936607,10311,0 +9813,.%3A140%3A.+Niangmen,511,400,848934935,9761,0 +9814,001,399,508,698290577,3820,0 +9815,00504,433,428,3909522,8561,0 +9816,Osada+koczownik%C3%B3w2,426,563,699833171,4021,1 +9817,.achim.,515,403,6936607,10311,0 +9818,-+106+-,545,586,849018239,10000,0 +9819,.achim.,530,405,6936607,8897,0 +9820,A041,468,405,8740199,6467,0 +9821,Gryfios+020,608,556,698666810,12154,0 +9822,Metis,421,559,699833171,9321,0 +9823,BBB,583,447,1006847,6166,0 +9824,.%3A112%3A.+Niangmen,505,397,848934935,10068,0 +9825,011,509,601,7976264,9965,0 +9826,Szlachcic,465,410,698388578,8906,0 +9827,CALL+1031,572,564,699784536,10787,0 +9828,Teatr,432,572,7249451,10495,0 +9829,A027,452,411,8740199,10226,0 +9831,Winter+is+coming,450,586,699364813,9438,0 +9832,Piek%C5%82o+to+inni,486,404,848956765,10160,0 +9833,049+Bu%C5%82eczka+v4,533,406,699491076,9836,0 +9834,Wioska+barbarzy%C5%84ska,409,463,699523631,10348,0 +9835,048,560,419,699761749,10495,0 +9836,KR%C3%93L+PAPI+WIELKI,585,550,698191218,10000,0 +9837,Witam+w+wietnamie,418,552,698971484,10008,0 +9838,Nope,405,466,6258092,10083,0 +9839,050,565,423,849064752,10103,4 +9840,031,551,414,1424656,9801,0 +9841,AbacadA+013,562,424,699756210,10273,0 +9842,039,537,407,7271812,10495,6 +9843,%C5%81APANKA%21%21%21%21,395,562,9167250,9946,0 +9844,.achim.,523,406,6936607,10311,0 +9846,E.01,573,433,699368887,8024,0 +9847,Wioska+%28001%29,619,477,698232227,9316,0 +9848,Majin+Buu+017,437,573,699054373,9761,0 +9849,Kulik+005,400,511,698290577,4888,0 +9850,Lord+Arsey+KING,535,534,848956513,10285,0 +9851,%5B043%5D,594,535,848985692,10392,0 +9852,025+Austin,428,430,9291984,9792,0 +9853,093+MEHEHE,491,597,6116940,10019,0 +9854,%23055,476,597,699605333,10393,0 +9855,Wioska+barbarzy%C5%84ska,572,432,699368887,7999,0 +9856,006+-+Malaga,597,488,698342159,10019,0 +9857,009+Hokus+pokus,589,462,698829590,6617,0 +9858,A028,451,411,8740199,10217,0 +9859,01+Monety+3+p500,573,436,699368887,9994,0 +9860,DOM+4+%2A,564,403,849064614,9382,0 +9861,%7E033.,475,598,7139820,10495,0 +9862,%7E003.,506,604,7139820,10495,0 +9863,.achim.,529,404,6936607,10311,0 +9864,Wioska+wosiur12,469,405,9291984,3265,0 +9865,Winter+is+coming,462,593,699364813,10068,0 +9866,W%3D01,611,475,7142659,10636,0 +9867,Napewno+to+nie+jest+off,495,399,848912265,7520,0 +9868,Medellin,404,533,849030226,10011,0 +9869,BBB,582,442,1006847,6512,0 +9870,EKG+M13,487,599,33900,9831,0 +9871,AAAA-006-+Kotek%2C+kotek%2C+kotek,454,414,9291984,10479,9 +9872,x+Wioska+barbarzy%C5%84ska,399,496,698290577,9034,0 +9873,Popas8,402,503,699265922,10022,0 +9874,0216,521,597,698659980,10019,0 +9875,-+108+-,545,587,849018239,10000,0 +9876,Farma,404,469,698807570,12154,0 +9877,.achim.,519,402,6936607,10311,8 +9878,Napewno+to+nie+jest+off,484,403,848912265,5081,0 +9879,BBB,580,441,1006847,7467,0 +9880,SsSs,400,493,1536625,9777,0 +9881,030+Co%C5%9B+tam,592,461,698829590,8548,0 +9882,044,413,551,698971484,10008,0 +9883,%5BA%5D_%5B048%5D+Dejv.oldplyr,406,473,699380607,10495,0 +9884,yogi,490,531,2808172,9193,0 +9885,.achim.,531,391,6936607,10311,0 +9886,Wioska+barbarzy%C5%84ska,563,580,6818593,9835,0 +9888,.achim.,529,407,6936607,10311,0 +9889,Wioska+barbarzy%C5%84ska,558,581,6818593,9835,0 +9890,.achim.,514,403,6936607,10311,0 +9891,Wioska+barbarzy%C5%84ska,424,433,699660539,9918,0 +9892,SsSs,402,492,1536625,9344,0 +9893,021+Las+Vegas,429,427,9291984,10387,0 +9894,Wioska+barbarzy%C5%84ska,426,435,698884287,10285,0 +9895,Coruscant+7,506,601,699383121,9566,0 +9896,Quest,415,554,699443920,5271,0 +9897,makelovenotwar3,384,461,698807570,9717,0 +9898,z+050,550,585,699342219,10220,0 +9899,.achim.,515,397,6936607,10311,0 +9900,.achim.,535,410,6936607,10311,0 +9901,%23056,477,596,699605333,10393,0 +9902,Centrum+01,605,565,698702991,9745,0 +9903,Wioska+barbarzy%C5%84ska,400,505,698290577,5864,0 +9904,075+Wojownik,542,389,699491076,10001,0 +9905,Szlachcic,587,457,698867446,9976,0 +9906,Monetki,476,406,699098531,10290,0 +9907,033+Galfni,600,508,8337151,10160,0 +9908,CALL+1075,551,615,699784536,10495,0 +9909,Szlachcic,463,408,698388578,10237,0 +9910,Gravity,411,452,698962117,9505,0 +9911,Wioska1,503,599,8369778,10203,0 +9912,Wioska,588,545,698702991,9889,7 +9913,.achim.,521,404,6936607,10311,0 +9914,Wioska+0026,402,527,1804724,8755,0 +9915,.achim.,519,404,6936607,10311,2 +9916,B13,505,402,849093422,9566,0 +9917,A035,465,405,8740199,10221,6 +9918,Quantum,419,558,699443920,10160,0 +9919,013+OCB,590,456,698829590,10495,3 +9920,Napewno+to+nie+jest+off,486,403,848912265,7287,0 +9921,.achim.,532,408,6936607,10311,0 +9922,Radek,401,480,699523631,10495,0 +9923,x+012.+Rio+Bravo,399,499,698290577,9450,0 +9924,Gravity,419,446,698962117,9486,0 +9925,008,584,442,699722599,10495,0 +9926,%7E031.,479,596,7139820,10495,0 +9927,Sparta_02,502,599,2585846,9638,0 +9928,Wioska,596,519,698845189,6232,0 +9929,%5BA%5D_%5B026%5D+Dejv.oldplyr,400,486,699380607,10401,0 +9930,Szlachcic,466,409,698388578,10237,0 +9931,223+%7C,563,577,8000875,818,0 +9932,001+-+Barcelona,598,491,698342159,10019,0 +9933,mehehe+2,452,588,699364813,10047,0 +9934,KIELBA+061,452,585,699342219,10273,0 +9935,.%3A135%3A.+Niangmen,507,400,848934935,9924,0 +9936,NOT,421,436,9236866,10042,0 +9937,.%3A144%3A.Niangmen,507,402,848934935,9761,7 +9938,.achim.,530,402,6936607,10025,0 +9939,Part+X,536,378,698350371,10495,0 +9940,BBB,584,445,1006847,5591,0 +9941,%28036%29,408,532,699846892,10160,0 +9942,B.004,427,570,849088243,9986,0 +9943,%2A009%2A,611,497,698670524,8527,0 +9944,025.,598,483,8900955,9995,0 +9946,Popas+11,403,497,699265922,9752,0 +9947,South+K35,558,392,699146580,10042,0 +9948,-+073+-,538,594,849018239,10000,0 +9949,Kiedy%C5%9B+Wielki+Wojownik,394,458,8632462,9843,0 +9950,A+004.,439,577,849028088,9761,0 +9951,0085,440,403,699431255,9729,0 +9952,035,596,470,8459255,10336,0 +9953,Wioska+barbarzy%C5%84ska,443,416,849027025,9980,0 +9954,Lord+Arsey+KING,593,529,848956513,10285,7 +9955,062,545,410,699761749,10495,0 +9956,0000022%23,431,572,849089881,9121,0 +9958,Majin+Buu+004,435,578,699054373,9761,0 +9959,.%3A030%3A.+Chillout,521,447,848934935,10636,0 +9960,%28027%29,404,530,699846892,10155,0 +9961,Welcome+To+The+Machine,585,548,848926293,7379,0 +9962,%28028%29,404,531,699846892,7900,0 +9963,KR%C3%93L+PAPI+WIELKI,565,573,698191218,10000,0 +9964,Sparta_01,501,598,2585846,9638,0 +9965,Gravity,411,454,698962117,9488,0 +9966,Wioska+0027,400,519,1804724,7684,0 +9967,KONFA+TO+MARKA%2C+NARKA,402,478,698152377,10311,0 +9968,004+Pomalutku,591,456,698829590,10008,0 +9969,Szlachcic,458,411,698388578,10237,0 +9970,021,587,453,699722599,10244,0 +9971,FRONT,461,521,2585846,9638,0 +9972,Farma,402,474,698807570,12154,0 +9973,Gravity,417,449,698962117,9505,0 +9974,NOT%3F,469,593,9236866,9579,0 +9975,Wioska+barbarzy%C5%84ska,564,580,6818593,9835,0 +9976,.achim.,522,400,6936607,10311,0 +9977,Popas2,398,504,699265922,10228,6 +9978,%5BA%5D_%5B051%5D+Dejv.oldplyr,409,466,699380607,10495,0 +9979,084,599,566,699373599,9636,0 +9980,Wioska+barbarzy%C5%84ska,441,418,849027025,9355,0 +9981,A042,476,403,8740199,10247,0 +9982,ADEN,580,438,698588535,10221,0 +9983,A+001.,437,581,849028088,9847,0 +9984,Jaaa,580,555,698635863,10495,0 +9986,KONFA+TO+MARKA%2C+NARKA,402,472,698152377,10311,0 +9987,Zatoka+Marze%C5%84,597,486,699347951,11824,0 +9988,Wioska+barbarzy%C5%84ska,402,512,698290577,4346,0 +9989,Wioska,384,501,849084005,10178,0 +9990,071,546,412,699761749,7776,0 +9991,Wioska,513,399,849044961,9180,0 +9992,KONFA+TO+MARKA%2C+NARKA,401,479,698152377,10311,0 +9993,057.+Jezioro+Leona,590,540,8337151,10083,0 +9994,A006,467,405,8740199,10237,0 +9995,Szlachcic,474,401,698388578,10237,0 +9996,081,404,522,699851427,10042,0 +9997,%23021,527,594,849001572,9745,0 +9999,Wioska4%2C%2C,487,600,8369778,10209,0 +10000,Napewno+to+nie+jest+off,487,405,848912265,3420,0 +10001,%23063,480,597,699605333,8847,0 +10002,.achim.,529,403,6936607,8514,0 +10003,094,408,535,699851427,10042,0 +10004,Teby_41,484,599,2585846,9638,0 +10005,Ho%C5%82opole,488,399,699433558,10178,0 +10006,%5B046%5D,597,534,848985692,10495,0 +10007,%230097,514,601,1536231,10495,0 +10008,Suppi,428,456,699856962,9538,0 +10009,KR%C3%93L+PAPI+WIELKI,593,536,698191218,10000,6 +10010,071+-+Kremin,422,586,225023,9470,0 +10011,A+003.,439,578,849028088,9761,0 +10012,Szlachcic,476,402,698388578,10084,0 +10015,%5B029%5D+Boma+YoU,596,518,848985692,10237,0 +10016,%5BA%5D_%5B037%5D+Dejv.oldplyr,405,476,699380607,10444,0 +10017,A+002.,439,581,849028088,9825,0 +10018,006+Minas+Thirit,597,530,8013349,8992,0 +10019,011,409,515,699851427,10129,0 +10021,-+310+-,529,586,849018239,10008,0 +10022,Joms+045,555,419,699756210,10002,0 +10023,Wioska,385,519,849084005,10178,0 +10024,007+-+Murcia,598,486,698342159,10019,0 +10025,Wioska+0001,402,526,1804724,9978,0 +10026,014,580,562,699524362,6684,0 +10027,059+Honolulu,459,464,1497168,9761,0 +10028,0095,467,549,698659980,9637,0 +10030,-+288+-,520,597,849018239,10000,0 +10031,Wioska+0006,405,526,1804724,10199,0 +10032,Psychiatryk,504,595,699698253,9966,0 +10033,Wioska+barbarzy%C5%84ska,426,432,699660539,8207,0 +10034,Wioska2%2C,506,598,8369778,9901,0 +10035,Winter+is+coming,468,592,699364813,5733,0 +10037,Wioska2,506,597,8369778,10202,0 +10038,0065,598,515,698416970,10252,0 +10039,028,591,465,849088515,7135,0 +10040,022,551,413,7271812,10495,0 +10041,.%3A119%3A.+Niangmen,509,395,848934935,10068,0 +10042,057,402,500,699851427,10129,8 +10043,012,576,435,849063849,10503,0 +10044,%5BA%5D_%5B021%5D+Dejv.oldplyr,398,493,699380607,10495,0 +10045,Wioska+barbarzy%C5%84ska,562,581,6818593,9835,0 +10046,.achim.,518,402,6936607,10311,0 +10048,Winter+is+coming,460,592,699364813,10001,0 +10049,028+Daret,599,508,8337151,10160,0 +10050,A+008.,439,579,849028088,9761,0 +10051,AbacadA+018,567,427,699756210,9860,0 +10052,%23%23%23,516,598,699698253,9950,0 +10053,%7C049B%7C,558,583,6818593,9835,0 +10054,koczownicza+01,401,526,1804724,10179,5 +10055,This+Is+Sparta+%21%21%21,477,599,699364813,1448,0 +10056,0015+MzM,593,541,698416970,9258,0 +10057,0182,544,620,698659980,10252,0 +10058,FAKE+OR+OFF,458,407,698231772,9883,0 +10059,00381+Wioska,437,421,3909522,9444,0 +10060,AbacadA+015,564,425,699756210,9853,0 +10061,Szlachcic,461,410,698388578,10237,0 +10062,Wioska.,512,398,849044961,8229,0 +10063,-+324+-,530,593,849018239,9628,0 +10064,Wioska+0004,399,515,1804724,10242,0 +10065,x+Wioska+barbarzy%C5%84ska,400,499,698290577,9374,0 +10066,0.Minneapolis,521,587,698215322,9986,0 +10067,-+283+-,518,597,849018239,10000,0 +10069,Wioska+barbarzy%C5%84ska,405,467,699523631,10484,0 +10070,Essa+006,569,574,848987051,9578,6 +10071,033,549,415,1424656,9144,0 +10072,Wioska+barbarzy%C5%84ska,589,459,848925840,8247,0 +10073,028,556,415,699761749,10495,4 +10074,050+Bu%C5%82eczka+v5,539,405,699491076,10001,0 +10075,%230093,512,600,1536231,10495,0 +10076,K44+x003,436,404,698364331,10362,0 +10077,007,483,596,7976264,9047,0 +10078,.achim.,515,399,6936607,10311,0 +10079,027,595,462,849088515,9824,0 +10080,099,567,423,849064752,10273,0 +10081,022+San+Jose,428,427,9291984,10478,0 +10082,%7E037.,470,596,7139820,10495,0 +10083,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,605,7589468,8819,0 +10084,mam,558,584,6818593,9835,0 +10085,048+-+A03%2A%2A%2A,433,590,225023,10495,0 +10086,%5BA%5D_%5B042%5D+Dejv.oldplyr,401,493,699380607,10311,0 +10087,0339,499,621,698659980,10495,0 +10088,KONFA+TO+MARKA%2C+NARKA,403,466,698152377,12154,0 +10089,Ho%C5%82opole,480,401,699433558,10311,0 +10090,Wioska6%2C%2C%2C%2C,518,601,8369778,9883,0 +10091,021,570,427,849063849,9721,7 +10092,Wioska+0002,405,524,1804724,10164,0 +10093,Jaaa,581,556,698635863,10438,0 +10094,Monetki,479,402,699098531,10297,0 +10095,Wioska+Lord+Wasir,445,417,9291984,10495,0 +10096,AbacadA+017,566,424,699756210,9612,0 +10097,%5BA%5D_%5B046%5D+Dejv.oldplyr,406,470,699380607,10495,0 +10098,Wioska+barbarzy%C5%84ska,404,466,699523631,10495,0 +10099,095+MEHEHE+m,493,600,6116940,10019,0 +10100,Gravity,414,451,698962117,9505,0 +10101,Gravity,412,451,698962117,9496,0 +10103,007+Mordor,598,529,8013349,9846,0 +10104,.%3A007%3A.+Idea,505,398,8649412,9767,0 +10105,Centrum+02,605,564,698702991,9761,0 +10106,Wioska+morisanti,507,601,699698253,9966,0 +10107,PYZA+002+Nuke,579,566,33900,9536,1 +10108,002,587,452,699722599,10362,0 +10109,ADEN,561,417,698588535,9321,0 +10110,Tesa+14,597,524,698845189,9396,0 +10111,Gravity,410,451,698962117,9497,0 +10112,001,604,459,849088515,10019,0 +10113,011,582,562,699524362,10211,0 +10114,%23040,458,609,699605333,10971,0 +10115,NOT%3F,409,544,9236866,10042,0 +10116,NOT,418,439,9236866,10042,0 +10117,Wioska6%2C%2C%2C,519,597,8369778,10023,0 +10118,019,405,537,699425709,9873,0 +10119,NOT,421,439,9236866,10042,0 +10120,0000019%24,434,578,849089881,9814,0 +10122,Gravity,411,458,698962117,9486,0 +10123,Twierdza+016,427,566,9167250,4172,0 +10124,0010,472,598,33900,9269,0 +10125,0099,443,419,699431255,9682,0 +10126,.achim.,514,399,6936607,10311,0 +10127,Kulik+001,398,509,698290577,9093,0 +10128,Wioska+barbarzy%C5%84ska,508,399,849044961,6571,0 +10129,.achim.,515,401,6936607,10311,0 +10131,Sparta_16,497,600,2585846,9638,0 +10132,%23053,525,596,849001572,9735,0 +10133,Wioska+barbarzy%C5%84ska,576,436,699368887,8983,0 +10134,-+119+-,548,589,849018239,10000,0 +10135,%28029%29,405,532,699846892,10160,0 +10136,Gravity,412,450,698962117,9485,5 +10137,032+Stay+Alive,592,459,698829590,9593,0 +10138,KIELBA+040,456,590,699342219,10495,0 +10139,004.,488,602,7976264,10004,0 +10140,%5B045%5D,596,536,848985692,10646,0 +10142,0003,599,501,699429153,10058,0 +10143,045,548,409,699761749,10495,0 +10144,Jaaa,587,554,698635863,10481,0 +10145,.achim.,520,399,6936607,10311,0 +10146,028,572,433,699368887,9994,0 +10147,CALL+983,559,579,699784536,10495,0 +10148,Napewno+to+nie+jest+off,497,398,848912265,10495,0 +10149,Wioska+barbarzy%C5%84ska,406,464,699523631,10144,0 +10150,Wioska+barbarzy%C5%84ska,438,396,849027025,9819,0 +10151,Witam+w+wietnamie,415,552,698971484,10008,0 +10152,051,400,498,699510259,9744,0 +10153,Winter+is+coming,449,587,699364813,9426,0 +10154,jaaa,575,567,698635863,10475,0 +10155,1.Sacramento,532,596,698215322,9951,0 +10156,Szulernia,418,413,7249451,9981,0 +10157,Jaaa,590,550,698635863,10476,0 +10158,0217,533,592,698659980,10019,0 +10159,046+Bu%C5%82eczka+v1,536,405,699491076,10001,0 +10160,.%3A143%3A.+Niangmen,501,401,848934935,9761,0 +10161,K44+x007,445,414,698364331,8415,0 +10162,%23006,537,595,849001572,9545,0 +10163,0026+Wioska,428,413,3909522,10481,0 +10164,044,483,399,698739350,9902,0 +10165,A09,598,466,849093742,10019,0 +10166,Wioska+-+xd,601,517,698845189,9813,0 +10167,Winter+is+coming,470,597,699364813,9976,0 +10168,Wioska+barbarzy%C5%84ska,525,598,606407,10306,0 +10170,Wioska+barbarzy%C5%84ska,561,579,6818593,9835,0 +10171,Wioska+barbarzy%C5%84ska,406,469,699523631,10481,0 +10172,Wioska+barbarzy%C5%84ska,414,444,698884287,8861,0 +10173,Tesa+12,599,519,698845189,10019,0 +10174,Z03,515,602,2293376,10160,0 +10175,Szlachcic,472,403,698388578,10237,0 +10176,014+New+Haven,430,428,9291984,10141,0 +10177,%23020,525,599,849001572,9549,6 +10178,KR%C3%93L+PAPI+WIELKI,582,558,698191218,10000,0 +10179,009,566,425,849063849,10503,0 +10180,019+Philadelphia,431,429,9291984,9488,0 +10181,Qbek,417,554,699443920,6506,0 +10182,B18,498,401,849093422,9761,0 +10183,1.60tp+%21%21%21,500,536,849087855,9746,0 +10184,Domek+8,561,421,849064614,9827,0 +10185,029,594,466,8459255,10495,0 +10186,%230094,510,599,1536231,10495,0 +10187,Bunkier+001,587,449,698350371,10495,6 +10188,A0046,380,473,8841266,10252,0 +10189,019.,595,537,8900955,6862,0 +10190,Wioska+450,590,547,477415,10728,0 +10191,Wioska+barbarzy%C5%84ska,420,559,699833171,6973,0 +10192,BBB,583,446,1006847,9155,0 +10193,Winter+is+coming,451,589,699364813,10055,0 +10194,Pod,590,585,1715091,9644,0 +10195,EKG+.%3A%3A.+freaky97%2F2,488,605,33900,10495,0 +10196,033,597,469,8459255,10189,0 +10197,Napewno+to+nie+jest+off,493,397,848912265,10495,3 +10198,038,538,407,7271812,10495,0 +10199,%5BA%5D_%5B011%5D+Dejv.oldplyr,398,487,699380607,10495,0 +10200,004.+Wioska+Gatt,598,522,8788366,10495,0 +10201,%230098,513,601,1536231,10495,0 +10202,z+032,553,586,699342219,10237,0 +10203,020+Phoenix,430,427,9291984,9792,0 +10204,014+Jedno+albo+drugie,600,481,699272633,10487,0 +10205,0103,443,417,699431255,9587,0 +10206,A18,594,460,849093742,9656,0 +10207,018,601,506,699573053,10495,0 +10208,Jaaa,584,553,698635863,10476,0 +10210,Wioska+barbarzy%C5%84ska,596,526,699851345,9689,0 +10211,.achim.,528,401,6936607,10311,0 +10212,Szlachcic,478,401,698388578,8454,0 +10213,x+barbarzy%C5%84ska+008,397,511,698290577,9131,0 +10214,005,491,599,7976264,10315,0 +10216,Szlachcic,464,407,698388578,10237,0 +10217,013+Delaware,601,487,7092442,10495,0 +10218,%5B047%5D,598,523,848985692,10057,0 +10219,034,552,413,1424656,6784,0 +10220,043,481,398,698739350,8300,0 +10221,Szlachcic,467,404,698388578,10104,0 +10222,Joms+012,527,418,699756210,10238,0 +10223,czekoladowy+john,471,596,699364813,10311,0 +10224,%7E022.,474,598,7139820,10495,0 +10225,Brat447,386,500,699262350,10476,0 +10226,Wioska+barbarzy%C5%84ska,399,520,1804724,8162,0 +10227,%23018,544,588,849001572,9741,0 +10228,SSJ+015,520,622,699054373,9761,0 +10229,018+Houston,431,426,9291984,10495,0 +10230,006,486,598,7976264,10162,0 +10231,sony911,565,604,1415009,10222,0 +10232,%5B402%5D+Zatrzymam+to+sobie,576,431,848985692,8622,0 +10233,0000006%23,427,572,849089881,10484,0 +10234,k45+016,577,433,699368887,10393,0 +10235,%5BA%5D_%5B008%5D+Dejv.oldplyr,399,488,699380607,10444,0 +10236,%7E076.,490,607,7139820,10495,0 +10237,071,544,409,849064752,10311,0 +10238,.achim.,517,400,6936607,10311,0 +10239,099+MEHEHE+1,492,602,6116940,10019,0 +10240,A+005.,436,581,849028088,10229,0 +10241,Wioska+barbarzy%C5%84ska,442,417,849027025,9889,0 +10242,NOT%3F,410,546,9236866,10042,0 +10243,Rotrigo+3,405,535,849030226,10495,0 +10244,0075,599,496,698416970,10019,0 +10245,006+Czysta+gra,591,455,698829590,9334,0 +10246,Wioska+barbarzy%C5%84ska,578,438,699368887,9799,0 +10247,NOT%3F,409,550,9236866,10042,0 +10248,101+%2A%2A%2A1%2A%2A%2A+Arbuz,543,389,699491076,10001,0 +10249,SsSs,402,490,1536625,8779,0 +10250,.achim.,516,398,6936607,10311,0 +10251,010.+Wioska+V1p3r646,593,515,8788366,10495,0 +10252,D001,510,397,7758085,9925,0 +10253,%5BA%5D_%5B024%5D+Dejv.oldplyr,400,483,699380607,10495,0 +10254,009,557,584,6818593,9835,0 +10255,Twierdza+015,424,565,9167250,6016,0 +10256,Winter+is+coming,507,600,699364813,10495,0 +10257,Village,468,595,849094067,11691,0 +10258,002,406,541,699425709,9873,0 +10259,1.Houston,542,595,698215322,9951,0 +10260,010+-+Bilbao,602,493,698342159,10019,0 +10261,Wioska+barbarzy%C5%84ska,562,582,6818593,9835,0 +10262,018+Problemy+internetowe+dorka,591,457,698829590,10008,0 +10263,mehehe+3,462,592,699364813,10311,0 +10264,Napewno+to+nie+jest+off,493,398,848912265,7271,0 +10265,.achim.,520,385,6936607,10311,0 +10266,B07,504,400,849093422,9761,0 +10267,Stage+group+D+1,452,590,699364813,9930,0 +10268,Twierdza+011,424,568,9167250,8789,0 +10269,004+Arkansas,603,487,7092442,10495,0 +10270,%7E034.,472,599,7139820,10495,0 +10271,Fairy+Tail,485,398,699433558,10311,0 +10272,Wioska6%2C%2C%2C%2C%2C,517,601,8369778,9759,0 +10273,Szlachcic,469,403,698388578,9720,0 +10274,Napewno+to+nie+jest+off,492,399,848912265,9318,0 +10275,0000008%23,429,573,849089881,10238,0 +10276,EKG+.%3A%3A.+KOM+004+Napychaj%C4%85c,477,600,33900,10495,0 +10277,KR%C3%93L+PAPI+WIELKI,566,575,698191218,10000,0 +10278,Napewno+to+nie+jest+off,497,399,848912265,8977,0 +10279,-+123+-,543,590,849018239,10000,0 +10280,%5B042%5D,591,539,848985692,10049,0 +10281,-+315+-,533,595,849018239,10000,0 +10282,A044,479,398,8740199,5446,0 +10283,B+004.,445,583,849028088,9825,0 +10284,-+115+-,552,586,849018239,10000,0 +10285,Wioska+451,591,547,477415,10495,0 +10286,Wioska+barbarzy%C5%84ska,413,447,698884287,10285,0 +10287,023+Farma+czy+nie,591,454,698829590,6971,0 +10288,.achim.,518,403,6936607,10311,0 +10289,KIELBA+077,458,593,699342219,10365,0 +10290,.achim.,520,400,6936607,10311,0 +10291,0218,520,600,698659980,10019,0 +10292,007,409,541,699425709,9873,0 +10293,011,576,595,698999105,10311,0 +10294,015,580,565,699524362,10211,0 +10295,087,400,524,699851427,10129,5 +10296,0000012%23,431,573,849089881,10224,0 +10297,0000024%23,429,572,849089881,9283,0 +10298,KONFA+TO+MARKA%2C+NARKA,409,462,698152377,11953,0 +10299,%C5%9Aci%C4%99ty+grzyb..,582,599,699785935,10160,0 +10300,A+006.,438,578,849028088,9753,0 +10301,KIELBA+080,457,594,699342219,10495,0 +10302,Wioska+barbarzy%C5%84ska,441,419,849027025,9563,0 +10303,%5B048%5D,597,525,848985692,10054,0 +10304,NOT%21%21,467,596,9236866,10042,0 +10305,Wioska+dare,562,577,6818593,9835,0 +10306,045,601,488,699573053,10495,0 +10307,019,413,519,699851427,10129,0 +10308,C+003.,449,568,849028088,10237,0 +10309,AbacadA+004,567,425,699756210,10424,0 +10310,SsSs,397,504,1536625,10152,0 +10311,Jehu_Kingdom_24_,600,480,8785314,9993,0 +10312,013+Norwalk,430,426,9291984,10484,7 +10313,NOT%3F,411,546,9236866,10042,0 +10314,%C5%81%C3%B3d%C5%BA,593,579,1715091,8813,0 +10315,%7E%7ELataj%C4%85cyHolender%7E%7E,599,498,9174887,10052,0 +10316,0004,442,392,699431255,9966,0 +10317,Tesa+5,599,521,698845189,10005,0 +10318,N01,585,445,699368887,10400,0 +10319,.%3A114%3A.+Niangmen,504,397,848934935,10068,0 +10321,.%3A136%3A.+Niangmen,507,398,848934935,9902,0 +10322,x010.+PewnegoRazuNaDzikimZach..,394,489,698290577,7828,0 +10323,keepo,486,529,848967710,10495,0 +10324,0009,602,495,699429153,10301,0 +10325,Wioska+barbarzy%C5%84ska,563,582,6818593,9835,0 +10326,Witam+w+wietnamie,413,556,698971484,10008,0 +10327,1.Madison,541,593,698215322,8966,0 +10328,0000015%21,446,585,849089881,8775,0 +10329,.achim.,527,404,6936607,10311,0 +10330,KR%C3%93L+PAPI+WIELKI,575,570,698191218,10000,0 +10332,z+025,551,586,699342219,10221,0 +10333,Kentin+ufam+Tobie,401,486,699783765,10000,0 +10334,013,584,561,699524362,10113,0 +10335,0038+Wioska,436,420,3909522,10078,0 +10336,NOT,416,440,9236866,10042,0 +10337,Wioska+barbarzy%C5%84ska,511,599,606407,10290,0 +10338,-+072+-,536,597,849018239,10000,0 +10339,Gravity,410,450,698962117,9486,0 +10340,Suppi,422,432,699856962,9811,0 +10341,007,424,571,9167250,8884,0 +10343,0035+MzM,588,548,698416970,10495,0 +10344,Magnolia,486,398,699433558,10311,5 +10346,Wioska+0029,402,520,1804724,10145,0 +10347,kto+ananasowy+pod+wod%C4%85+ma+dom,580,564,699628084,9797,0 +10348,Wioska+barbarzy%C5%84ska,396,496,698290577,7397,0 +10349,032,588,453,699722599,10139,0 +10350,-+070+-,534,598,849018239,10000,0 +10351,Wioska+barbarzy%C5%84ska,450,413,9291984,3069,0 +10353,Wioska+barbarzy%C5%84ska,579,432,699368887,8402,0 +10354,NOT%3F,434,540,9236866,6135,0 +10355,Gravity,407,464,698962117,9505,0 +10356,KR%C3%93L+PAPI+WIELKI,582,559,698191218,10000,0 +10357,015,551,410,699761749,10495,0 +10358,00501+Essa,433,422,3909522,10259,0 +10359,Sparta_19,494,603,2585846,9544,0 +10360,051,587,414,849064752,10311,0 +10361,Ho%C5%82opole,487,400,699433558,10311,0 +10362,EKG+.%3A%3A.+KOM+005+Orkowi+%C5%81+%2B+R,482,601,33900,10495,0 +10363,008+Isengard,598,531,8013349,10003,0 +10364,004.+Ivar+Bez+Ko%C5%9Bci,588,568,699373599,10030,0 +10365,0219,520,602,698659980,10019,0 +10366,%2A029%2A,601,513,698670524,5564,0 +10367,008.+Cent,431,425,699660539,10350,0 +10368,Suppi,431,451,699856962,9580,0 +10369,0014,472,600,33900,10068,0 +10370,027,591,452,699722599,10426,0 +10371,009+Osgiliath,598,534,8013349,10011,0 +10372,022+Indiana,603,490,7092442,10495,0 +10373,Szlachcic,589,456,698867446,9976,0 +10375,-+090+-,538,582,849018239,10000,0 +10376,0027,603,505,699429153,10168,0 +10377,z+033,553,587,699342219,10220,0 +10378,Wioska+Rafraf,402,519,1804724,8766,0 +10379,Essa+007,569,576,848987051,9805,0 +10380,%23023,539,595,849001572,5665,0 +10381,NOT%3F,408,546,9236866,10042,0 +10383,042,571,424,849063849,7837,7 +10384,015.+Erlendur,585,564,699373599,10030,0 +10385,South+Blue,485,399,699433558,10521,0 +10387,022,572,426,849063849,9787,0 +10388,052,552,412,849064752,10311,9 +10389,Jaaa,586,557,698635863,10474,0 +10390,Quska,418,558,699443920,6476,0 +10391,-+121+-,546,589,849018239,10000,0 +10392,KR%C3%93L+PAPI+WIELKI,566,576,698191218,10000,0 +10393,P%C5%82ezent%3F,491,510,699785935,9835,0 +10394,KR%C3%93L+PAPI+WIELKI,572,569,698191218,10000,0 +10395,030,592,451,849088515,10019,0 +10396,029+Dauth,600,507,8337151,10362,3 +10397,xx+017.+M%C5%9Bciciel,397,507,698290577,9416,0 +10398,004.,493,603,7976264,9811,0 +10399,Piomat,416,560,699443920,9761,0 +10400,005+Barka,592,455,698829590,10218,0 +10402,Wioska+insidecomer,559,581,6818593,9835,0 +10403,Wioska+0025,402,523,1804724,10099,0 +10404,%21kuba,518,598,8779575,9886,0 +10405,017,590,451,699722599,10316,0 +10406,KIELBA+038,441,580,699342219,10237,0 +10407,Ho%C5%82opole,481,401,699433558,9976,0 +10408,085,611,505,699573053,10349,0 +10409,Wioska+0017,402,522,1804724,10362,0 +10410,So%C5%82tys+Wsi+charlie4,439,418,849027025,9592,0 +10411,008,505,601,7976264,10060,0 +10412,012,469,600,7976264,10311,0 +10413,A%23022%23,403,475,698807570,11956,0 +10414,041,553,393,699761749,10495,0 +10415,A%23028%23,403,470,698807570,11950,0 +10416,008+-+Las+Palmas,599,483,698342159,10019,0 +10417,Village,474,591,849094067,8869,0 +10418,KR%C3%93L+PAPI+WIELKI,573,572,698191218,10000,0 +10420,barba,468,599,7976264,10237,0 +10421,014+Ta%C5%84cz%C4%85cy+z+myszami,596,463,698829590,10019,0 +10422,Sparta_21,498,604,2585846,9544,0 +10423,Wioska+barbarzy%C5%84ska,434,419,849027025,9424,0 +10424,Wioska+karrrol923,600,516,699851345,9840,0 +10425,013.,601,510,8900955,6742,0 +10426,Wioska+barbarzy%C5%84ska,594,465,699573053,9376,0 +10427,0642,443,588,698659980,9811,0 +10428,.achim.,522,402,6936607,10311,0 +10429,0000016%23,424,570,849089881,10487,0 +10430,Tylko+grzeczni+ch%C5%82opcy,515,508,699785935,12154,0 +10431,FAKE+OR+OFF,453,408,698231772,9868,0 +10432,105,544,407,849064752,10311,0 +10433,D0003,438,568,8841266,9900,0 +10434,x+013.+Rio+Lobo,398,497,698290577,10209,0 +10435,0037+grosik,437,417,3909522,10495,0 +10436,021.,601,516,8900955,8919,0 +10437,Wioska+dysio923,595,512,699851345,9978,0 +10438,Monetki,474,404,699098531,9620,0 +10439,0079,550,618,698659980,10160,0 +10440,Wioska+barbarzy%C5%84ska,578,432,699368887,7594,0 +10441,%5B0492%5D,593,545,848985692,9125,0 +10442,-+078+-,537,596,849018239,10000,0 +10443,Gravity,413,449,698962117,9505,0 +10444,z+039,556,584,699342219,10478,0 +10445,022,588,452,699722599,10362,0 +10446,EKG+.%3A%3A.+KOM+003+Jajca,482,600,33900,10365,0 +10447,%23069,487,603,699605333,10728,0 +10448,041,570,424,849063849,10279,0 +10449,.1.Waszyngton,546,594,698215322,9980,0 +10450,A10,599,466,849093742,10019,0 +10451,035+Lithgow,605,501,8337151,10654,0 +10452,EKG+.%3A%3A.+KOM+001+Li%C5%BC%C4%85+%C5%81,482,602,33900,10495,0 +10453,Szlachcic,401,477,6258092,10083,0 +10454,0003,546,603,698659980,10160,0 +10455,-+075+-,539,594,849018239,10000,0 +10456,.achim.,541,395,6936607,10311,0 +10457,Wioska6%2C%2C,517,599,8369778,9886,0 +10458,Gravity,417,459,698962117,9763,0 +10460,047,548,410,699761749,10495,0 +10461,Teby_39,483,598,2585846,9638,0 +10462,KONFA+TO+MARKA%2C+NARKA,402,465,698152377,11949,0 +10463,Wioska+barbarzy%C5%84ska,424,432,699660539,8750,0 +10464,Tesa,600,520,698845189,10019,0 +10465,025,568,421,849063849,9785,0 +10466,Szlachcic,472,402,698388578,10237,0 +10467,Wioska+barbarzy%C5%84ska,576,434,699368887,8607,0 +10468,PYZA+001+Bubel,576,571,33900,6745,5 +10469,049o,442,584,699099811,10725,0 +10470,Sector+3,515,604,8199417,10041,0 +10471,Suppi,425,443,699856962,10237,0 +10472,x+014.+15%3A10+do+Yumy,398,500,698290577,9158,0 +10473,%5BA%5D_%5B030%5D+Dejv.oldplyr,402,482,699380607,10495,0 +10474,%230102,513,602,1536231,10495,0 +10476,KONFA+TO+MARKA%2C+NARKA,407,462,698152377,10311,0 +10477,BBB,583,438,1006847,7039,0 +10479,021,595,459,849088515,10019,0 +10480,Jaaa,567,579,698635863,9677,0 +10481,Skyview+Hall,527,601,8199417,10559,0 +10482,%230103,512,603,1536231,10495,0 +10483,129,550,411,849064752,10311,0 +10484,Wioska+barbarzy%C5%84ska,406,462,699523631,11119,0 +10485,Wioska+barbarzy%C5%84ska,402,466,699523631,7117,0 +10486,Wioska+barbarzy%C5%84ska,442,416,849027025,9744,0 +10487,-+062+-,538,597,849018239,10000,0 +10488,-%5B001%5D-+Mount+Everest,554,482,849092827,9934,0 +10489,010.+Yang,408,543,699856962,9825,0 +10490,Szlachcic,475,401,698388578,10237,0 +10491,054,488,398,698739350,9902,0 +10492,ADEN,573,425,698588535,9222,0 +10493,A.006,408,584,849088243,9460,0 +10494,Sparta_17,494,601,2585846,9638,0 +10495,Okradzionow,432,423,699660539,10008,0 +10496,%23051,523,590,849001572,10136,0 +10497,%230101,512,602,1536231,10495,0 +10499,NOT%3F,408,550,9236866,10042,0 +10500,-033-,452,408,9291984,10479,0 +10501,0035,616,514,6510480,10325,0 +10502,070,600,473,699573053,10559,0 +10503,%7E001.,498,606,7139820,10495,0 +10504,Szlachcic,465,406,698388578,8781,0 +10505,028+Raz+dwa+trzy,594,454,698829590,8353,0 +10506,Suppi,428,425,699856962,9886,5 +10507,z+030,554,587,699342219,10708,0 +10508,FAKE+OR+OFF,458,406,698231772,9822,0 +10509,030.+A%C5%82a,408,544,699856962,9700,0 +10510,023.,602,522,8900955,9824,0 +10511,KR%C3%93L+PAPI+WIELKI,598,536,698191218,10000,0 +10512,022+a+to+peszek,596,465,8459255,10203,0 +10513,004,498,382,698739350,9761,0 +10514,Gravity,407,455,698962117,9618,0 +10515,Jaaa,587,557,698635863,10559,8 +10516,086+MEHEHE,495,600,6116940,10019,0 +10517,KONFA+TO+MARKA%2C+NARKA,401,482,698152377,10311,0 +10518,Wioska+ferrekin,447,590,3969110,3153,0 +10519,005,596,542,6160655,10296,0 +10520,B+002.,458,594,849028088,10237,3 +10521,z+037,557,587,699342219,10495,0 +10522,Sparta_22,499,604,2585846,9638,0 +10523,Szlachcic,452,412,698388578,10237,0 +10524,Szlachcic,469,404,698388578,10237,0 +10525,NOT,417,438,9236866,10042,0 +10526,Wioska+barbarzy%C5%84ska,481,599,7976264,9992,0 +10527,002,570,575,699316421,9792,0 +10528,017,551,409,7271812,10495,0 +10529,020,548,411,699761749,10495,1 +10530,1.Cleveland,541,595,698215322,9951,0 +10531,017,403,539,699425709,9873,0 +10532,KONFA+TO+MARKA%2C+NARKA,406,461,698152377,11954,0 +10533,West+01,597,476,698702991,10162,0 +10534,KR%C3%93L+PAPI+WIELKI,568,577,698191218,10000,0 +10535,0.Lincoln,528,596,698215322,9954,0 +10536,Wioska+barbarzy%C5%84ska,385,456,3698627,9979,0 +10537,034,564,420,699761749,9269,0 +10538,Gattacka,596,489,699298370,9430,0 +10539,%5BA%5D_%5B015%5D+Dejv.oldplyr,396,490,699380607,10290,0 +10540,017.,597,542,8900955,5220,0 +10541,009,507,602,7976264,10178,0 +10542,KIELBA+053,457,591,699342219,10365,0 +10543,KONFA+TO+MARKA%2C+NARKA,401,466,698152377,12154,0 +10544,0048,596,537,698416970,10160,0 +10545,007+997+ten+numer+to+k%C5%82opoty,590,455,698829590,9535,0 +10546,.achim.,525,403,6936607,10311,0 +10547,Lord+Arsey+KING,601,527,848956513,10285,0 +10548,KR%C3%93L+PAPI+WIELKI,574,573,698191218,10000,0 +10549,014,407,539,699425709,9873,0 +10550,NOT%3F,406,543,9236866,9888,0 +10551,KONFA+TO+MARKA%2C+NARKA,400,472,698152377,12154,0 +10552,007+Zadupie,601,520,8323711,10495,0 +10553,kulik+002,399,512,698290577,8435,0 +10554,Wioska+0022,398,514,1804724,10089,0 +10555,060,546,408,699761749,10495,0 +10556,Jaaa,605,432,698635863,9534,0 +10557,A036,466,405,8740199,9744,0 +10559,NOT,419,434,9236866,10042,0 +10560,.%3A093%3A.+Chillout,506,394,848934935,8314,0 +10561,NOT,417,437,9236866,10042,0 +10562,Peverlo,415,562,699443920,10104,0 +10563,KR%C3%93L+PAPI+WIELKI,563,584,698191218,10000,0 +10564,00091,523,600,848915531,11130,0 +10565,018,404,539,699425709,9873,0 +10566,Jaaa,564,581,698635863,10222,0 +10567,036,596,469,8459255,10671,0 +10568,Gravity,406,455,698962117,9488,0 +10569,.achim.,528,400,6936607,10311,0 +10570,026,601,507,699573053,10495,0 +10571,Wioska,384,550,849084005,10178,0 +10572,001.+Marzyciel+Shrek,481,503,698290577,5764,0 +10573,Winter+is+coming,463,597,699364813,9976,0 +10574,Mako+Reactor+1+-+Connecting+Pass,520,621,8199417,10559,0 +10575,051+Bu%C5%82eczka+v6,537,404,699491076,9868,0 +10576,143+Wioska+barbarzy%C5%84ska,392,555,699382126,5011,0 +10577,007+Salt+Like+City,425,432,9291984,10495,0 +10578,Suppi,426,426,699856962,9809,0 +10579,Jehu_Kingdom_31_,600,468,8785314,9993,0 +10580,Wioska+barbarzy%C5%84ska,398,517,698290577,5175,0 +10581,Ho%C5%82opole,485,400,699433558,9976,0 +10582,NOT,420,434,9236866,10042,0 +10583,047o,446,586,699099811,11558,0 +10584,%28015%29,404,532,699846892,10143,2 +10585,mammm,562,580,6818593,9835,0 +10586,Wioska+M.02,400,516,1804724,8918,0 +10587,023+Barba,603,514,8323711,10495,0 +10588,Gravity,407,452,698962117,9485,0 +10589,Jaaa,585,554,698635863,10495,8 +10590,A037,478,398,8740199,10221,0 +10591,South+K45,571,425,699146580,6026,0 +10592,024,594,462,849088515,9750,0 +10593,.achim.,517,404,6936607,10311,0 +10594,.achim.,520,397,6936607,10311,0 +10595,%23035,532,600,849001572,10141,0 +10596,Gravity,408,452,698962117,9504,0 +10597,%7E041.,504,604,7139820,10495,0 +10598,1.Springfield,540,593,698215322,9030,0 +10599,-034-,452,407,9291984,10479,0 +10600,s181eo03,398,452,393668,9886,0 +10601,018.,600,534,6520732,9835,0 +10602,Z02,513,603,2293376,10083,0 +10603,Teatr,427,571,7249451,10223,0 +10604,011,569,421,849063849,8926,0 +10605,Kentin+ufam+Tobie,398,486,699783765,10000,0 +10606,007,599,465,8459255,10362,0 +10607,Ho%C5%82opole,491,396,699433558,9835,0 +10608,%23011,525,601,849001572,9737,0 +10609,002+Tutaj+Szlachta+Pracuje+%21%21%21,577,571,699524362,10211,0 +10610,.achim.,519,399,6936607,10311,0 +10611,Jehu_Kingdom_03_,600,475,8785314,9993,0 +10612,1.Little+Rock,531,597,698215322,9953,0 +10613,028.+Oj+Nie+%C5%81adnie,406,545,699856962,9611,0 +10614,Majin+Buu+007,433,575,699054373,9761,0 +10615,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,518,621,8980651,10019,0 +10616,NOT,420,439,9236866,10063,9 +10617,1.Manhattan,554,588,698215322,9994,0 +10618,Jaaa,566,582,698635863,10239,0 +10619,0000007%23,430,573,849089881,10342,4 +10620,Szlachcic,475,399,698388578,10237,0 +10621,Lord+Arsey+KING,600,527,848956513,10285,0 +10622,KR%C3%93L+PAPI+WIELKI,576,572,698191218,9899,0 +10623,NOT%3F,409,548,9236866,10042,0 +10624,1.San+Jose,548,591,698215322,9970,0 +10625,Tesa+3,603,519,698845189,10008,0 +10626,Winter+is+coming,452,593,699364813,8055,0 +10627,NOT,416,436,9236866,10042,0 +10628,%7E006.,502,604,7139820,10495,0 +10629,016,557,415,699761749,10495,0 +10630,001+Hyjal,599,518,698845189,10019,0 +10631,%5B030%5D+Te+bikujin,602,515,848985692,9977,0 +10632,Twierdza+003,423,568,9167250,9284,1 +10634,0040+Wioska,436,416,3909522,10348,0 +10635,0205,400,513,7085510,5672,0 +10636,barba,468,596,699364813,10311,0 +10637,046,548,408,699761749,10495,8 +10638,%5B139%5D+North,577,471,848985692,10311,0 +10639,x+Wioska+barbarzy%C5%84ska,397,496,698290577,8390,0 +10640,1.Charlotte,549,593,698215322,9983,0 +10641,150,550,413,849064752,10311,0 +10642,026+Rurki+z+kremem,593,454,698829590,9533,0 +10643,046+-+B03,435,582,849028088,10812,0 +10644,023,590,450,699722599,10235,0 +10645,KIELBA+043,463,586,699342219,10495,0 +10646,Kentin+ufam+Tobie,387,445,699783765,10000,0 +10647,Szlachcic,470,402,698388578,10237,0 +10648,00350+kole%C5%BCka,429,418,3909522,10083,0 +10649,Gravity,407,456,698962117,9544,0 +10650,NOT%3F,407,547,9236866,10042,2 +10651,Jaaa,588,553,698635863,10479,0 +10652,Wioska+barbarzy%C5%84ska,398,515,1804724,10168,0 +10653,KIELBA+107,451,593,699342219,7781,0 +10654,Jaaa,586,560,698635863,10478,5 +10656,Gravity,410,449,698962117,9486,0 +10658,Farma,402,476,698807570,12154,0 +10659,Jehu_Kingdom_02_,603,482,8785314,9993,0 +10660,Wioska+0009,397,521,1804724,10187,0 +10661,Jaaa,589,552,698635863,10478,4 +10662,038+OZDR,466,622,699336777,10083,0 +10663,Wioska+Susu,423,429,699660539,9868,0 +10664,.achim.,524,391,6936607,10365,0 +10665,KONFA+TO+MARKA%2C+NARKA,388,471,698152377,10311,0 +10666,KONFA+TO+MARKA%2C+NARKA,402,463,698152377,10300,0 +10667,008,407,585,9264752,10495,0 +10668,mehehe+1,452,591,699364813,8965,0 +10669,1.Austin,541,594,698215322,9953,0 +10670,South+K35,553,392,699146580,9950,0 +10671,B+003.,439,584,849028088,9891,0 +10672,.achim.,539,403,6936607,11137,0 +10673,Essa+005,569,575,848987051,9879,3 +10674,036,565,418,699761749,10035,0 +10675,%C5%9Amieci+Wyw%C3%B3z+5,464,596,699364813,10083,0 +10676,003+Wioska+Best+Wiedzmin,603,515,6409472,4624,0 +10677,Jaaa,569,580,698635863,10213,0 +10678,KONFA+TO+MARKA%2C+NARKA,399,469,698152377,12154,0 +10679,012,583,561,699524362,5397,0 +10680,010,477,598,699364813,10444,0 +10681,004,586,442,699722599,10478,0 +10682,KONFA+TO+MARKA%2C+NARKA,403,467,698152377,12154,0 +10683,005+Bonuuus,605,487,699272633,10490,0 +10684,NOT,419,439,9236866,10004,0 +10685,Gravity,412,449,698962117,9494,0 +10686,0039+MzM,579,567,698416970,10019,0 +10687,1.Boston,547,594,698215322,9978,0 +10688,BBB,574,425,1006847,8185,0 +10689,.%3A105%3A.+Niangmen,502,395,848934935,10068,0 +10690,Zasiedmiog%C3%B3rogr%C3%B3d,536,429,699433558,9835,0 +10691,.achim.,519,400,6936607,10311,0 +10692,Napewno+to+nie+jest+off,492,397,848912265,10495,0 +10693,KIELBA+113,448,590,699342219,8756,0 +10694,Wioska+M02,399,519,1804724,9299,0 +10695,KIELBA+081,456,596,699342219,10365,0 +10696,0220,517,603,698659980,10019,0 +10697,Piajok,415,561,699443920,9761,0 +10698,0626,445,589,698659980,10019,0 +10699,.achim.,521,401,6936607,10311,0 +10700,%2A019%2A,605,495,698670524,8501,0 +10701,Yesterday,589,567,848926293,9741,0 +10702,KIELBA+079,457,595,699342219,10273,0 +10703,.achim.,525,399,6936607,10311,0 +10704,Gattacka,539,392,699298370,9821,0 +10705,.achim.,514,398,6936607,10311,0 +10706,023+Buragh,599,477,8337151,10083,0 +10707,N07,587,448,699368887,9951,0 +10708,NOT%3F,407,549,9236866,10042,0 +10709,007+-+T_002%2A%2A%2A,439,586,225023,10495,0 +10710,Gravity,406,458,698962117,9712,0 +10711,%5B372%5D+Chor%C4%85giewka+na+wietrze,585,437,848985692,10357,3 +10712,SsSs,395,501,1536625,9369,0 +10713,Sabaody,486,397,699433558,10311,0 +10715,Teby_37,484,600,2585846,9638,0 +10716,Wioska,395,508,849084005,10178,0 +10717,Wioska+barbarzy%C5%84ska,399,510,698290577,10055,0 +10718,z+041,556,587,699342219,10495,1 +10719,xx+002.+WHL,395,499,698290577,10273,0 +10720,061,547,408,699761749,10495,0 +10721,040+Massachusetts,604,482,7092442,10495,0 +10722,Radek,400,468,699523631,10495,0 +10723,Czarna+woda,419,567,698769107,9533,0 +10724,011,586,447,699722599,10479,0 +10725,0050+Wioska,434,423,3909522,10078,0 +10726,0631,447,591,698659980,10019,0 +10727,Wioska+barbarzy%C5%84ska,410,555,698971484,10008,0 +10728,.achim.,522,397,6936607,10452,0 +10729,Essa+008,572,575,848987051,9885,0 +10730,EKG+M21,482,604,33900,10248,0 +10731,0221,520,601,698659980,10019,0 +10732,005,589,447,699722599,10346,0 +10733,007,588,447,699722599,10346,0 +10734,Taran,545,387,699170684,9379,0 +10735,Wioska+0011,401,531,1804724,10205,0 +10736,Osada+M.,400,522,1804724,10210,6 +10737,.+Chivas,424,550,8779575,8863,0 +10738,0013,503,492,698599365,9976,0 +10739,052+Bu%C5%82eczka+v7,532,400,699491076,10001,0 +10740,%7E087.,491,605,7139820,10495,0 +10741,%23025,471,619,699605333,10503,0 +10742,SsSs,394,499,1536625,6156,0 +10743,Szlachcic,469,399,698388578,10237,0 +10744,Wioska+barbarzy%C5%84ska,574,428,699368887,6789,0 +10745,D006,508,395,7758085,9925,0 +10746,-+026+-,547,595,849018239,10000,0 +10747,Gravity,405,460,698962117,9579,0 +10748,008,582,565,699524362,7721,0 +10749,051+Michigan,602,481,7092442,7893,0 +10750,NOT,417,436,9236866,10042,0 +10751,Postit,417,563,699443920,9847,0 +10752,007.+Hordafylke,423,432,699660539,10008,0 +10753,026,595,464,849088515,9912,0 +10754,K44+x019,442,413,698364331,6773,0 +10755,Osobliwie,426,558,699443920,3543,0 +10756,AAA,510,399,849093422,9761,0 +10758,Jaaa,568,575,698635863,10495,0 +10759,Twierdza+004,422,571,849084740,8143,0 +10760,Wioska+0012,400,517,1804724,9871,0 +10761,031,575,429,849063849,9851,0 +10762,Wioska+0024,397,515,1804724,10237,0 +10763,016,580,566,699524362,7089,0 +10764,Twierdza+009,423,566,9167250,6893,0 +10765,Tesa+1,604,519,698845189,10019,0 +10766,019.,598,532,6520732,9761,0 +10767,a+mo%C5%BCe+off+%3F+%3A%29,579,570,698768565,9978,9 +10768,A012,461,403,8740199,10237,0 +10769,%2A%2A%2A-035-,453,407,9291984,10083,0 +10770,005,565,579,699316421,10273,0 +10771,018,590,449,699722599,10252,0 +10772,081+PRZECIWKO+KR%C3%93LESTWU+PAKT,411,558,699382126,10478,0 +10773,033,584,443,699722599,4730,0 +10774,Wioska+barbarzy%C5%84ska,423,430,699660539,8469,0 +10775,Knowhere,395,511,699723284,9796,0 +10776,Szlachcic,505,474,699098531,9701,0 +10777,.achim.,529,399,6936607,10311,0 +10778,z+038,558,587,699342219,10221,0 +10780,071,601,471,699573053,10495,0 +10781,006+Attitude+Adjustment,581,568,699316421,9861,0 +10782,028,577,427,849063849,9885,0 +10783,x+barbarzy%C5%84ska+007,397,510,698290577,8485,0 +10784,sentyment,400,529,1804724,10140,0 +10785,.%3A135%3A.+Niangmen,508,398,848934935,9899,0 +10786,1.Dallas,551,593,698215322,9953,0 +10787,%23036,530,598,849001572,8436,0 +10788,KIELBA+055,446,578,699342219,10495,0 +10789,004.,491,602,7976264,10035,0 +10790,018+Hawaii,602,483,7092442,10495,0 +10791,033+Greene,602,526,699272880,9558,6 +10792,NOT%3F,410,547,9236866,10042,0 +10793,Brat447,395,513,699262350,9203,0 +10794,016+Georgia,604,484,7092442,10495,0 +10795,053+Bu%C5%82eczka+v8,538,402,699491076,10001,0 +10796,%23024,485,600,849001572,9761,0 +10798,Teby_40,481,598,2585846,9638,0 +10799,P.029,543,559,873575,10268,0 +10800,%23%23%23%23%23,562,599,699342219,10495,0 +10801,005,553,405,699761749,10495,0 +10802,Wioska+barbarzy%C5%84ska,395,517,698290577,6203,0 +10803,.%3A111%3A.+Niangmen,504,395,848934935,5281,0 +10804,Kentin+ufam+Tobie,401,481,699783765,10000,0 +10806,065,546,409,699761749,10495,0 +10807,-+014+-,538,599,849018239,10000,0 +10808,001,605,517,8323711,10495,0 +10809,Sparta_18,496,602,2585846,9638,0 +10810,Szlachcic,462,403,698388578,10237,0 +10811,.achim.,519,398,6936607,10311,1 +10813,KR%C3%93L+PAPI+WIELKI,575,575,698191218,10000,0 +10814,020,596,455,849088515,10019,0 +10815,z+040,557,585,699342219,10257,0 +10816,020,556,392,849063849,10636,0 +10817,%230092,512,601,1536231,10495,0 +10818,%5BA%5D_%5B018%5D+Dejv.oldplyr,395,487,699380607,10495,0 +10819,NOT%3F,408,553,9236866,9899,0 +10820,xxx,514,456,698239813,10495,0 +10821,017,580,567,699524362,6922,0 +10822,D%C4%85browa+G%C3%B3rnicza,431,423,699660539,9883,0 +10823,A029,450,412,8740199,10221,0 +10824,wojtas0114,477,601,699364813,9835,0 +10825,.achim.,523,399,6936607,10311,0 +10826,Jaaa,567,582,698635863,10219,0 +10827,Wioska+barbarzy%C5%84ska,403,463,699523631,10481,0 +10828,013+Gundabad,597,540,8013349,9371,0 +10829,KIELBA+110,448,592,699342219,5676,0 +10830,023,571,426,849063849,8886,0 +10831,007+Dakota,598,484,7092442,10252,0 +10832,ADEN,581,433,698588535,9895,0 +10834,019,578,567,699524362,6852,0 +10836,034,596,467,8459255,10146,0 +10837,DOM+13+%2A,560,413,849064614,9398,0 +10838,018,581,569,699524362,10211,0 +10839,Szlachcic,398,474,6258092,10160,0 +10840,0024,603,509,6510480,10023,0 +10841,FAKE+OR+OFF,456,405,698231772,9853,0 +10842,A+014.,436,582,849028088,9994,0 +10843,029,593,449,699722599,10495,0 +10844,Sparta_15,496,600,2585846,9638,0 +10845,039,606,506,699573053,10495,0 +10846,Gonzzollo+1,403,535,849030226,12154,0 +10847,C.001,439,599,849088243,10237,0 +10848,0019,606,503,699429153,10301,0 +10849,E005,515,396,7758085,9925,0 +10850,5.+Northumbria,425,430,699660539,10173,0 +10851,.%3A103%3A.+Niangmen,503,395,848934935,10068,0 +10852,029+Pierwsze+wybory+Konfederacji,594,455,698829590,2372,0 +10853,018.+Baba+Jaga,510,580,699703642,9367,0 +10854,KIELBA+082,457,597,699342219,10256,0 +10855,%7E032.,476,602,7139820,10495,0 +10856,054+Bu%C5%82eczka+v9,537,403,699491076,10001,0 +10857,045+Bu%C5%82eczka,535,403,699491076,10001,0 +10858,002,605,519,8323711,11550,0 +10859,Lord+Arsey+KING,599,524,848956513,10285,0 +10860,Wioska+barbarzy%C5%84ska,411,445,698884287,10285,0 +10861,Kentin+ufam+Tobie,399,485,699783765,10000,0 +10862,.%3A043%3A.+Chillout,523,445,848934935,9953,0 +10863,-+064+-,536,599,849018239,10000,0 +10864,1.Filadelfia,555,591,698215322,10018,0 +10865,025,596,462,849088515,10019,0 +10866,-+303+-,533,596,849018239,10000,0 +10867,-+117+-,549,589,849018239,10000,0 +10868,046,566,394,849063849,10595,0 +10869,CALL+991,553,616,699784536,10311,0 +10870,Wioska+barbarzy%C5%84ska,403,533,849030226,10628,0 +10871,NOT%3F,407,550,9236866,10042,0 +10872,Pjana,415,564,699443920,9761,0 +10873,016.+Ogar,412,551,698971484,10008,0 +10874,1.Los+Angeles,544,596,698215322,9956,0 +10875,CALL+911,554,606,699784536,10311,0 +10876,NOT%3F,406,546,9236866,10042,0 +10877,%7E077.,494,606,7139820,10495,0 +10878,022+Bullridge,601,475,8337151,10495,0 +10879,001,570,579,699316421,10273,0 +10880,%5BA%5D_%5B004%5D+Dejv.oldplyr,399,483,699380607,10495,0 +10881,021+Illinois,605,489,7092442,10495,3 +10882,Horyzont+zdarze%C5%84,541,614,7581876,9835,0 +10883,034+Hedarth,606,504,8337151,10654,0 +10884,006,582,567,699524362,10211,0 +10885,Jaaa,589,556,698635863,10495,0 +10886,0031+Wioska,433,418,3909522,10146,0 +10887,Sparta_65,482,575,2585846,9638,0 +10888,Wioska+barbarzy%C5%84ska,513,604,7976264,9981,0 +10889,Napewno+to+nie+jest+off,496,394,848912265,10495,0 +10890,Knowhere,396,510,699723284,10452,0 +10891,Wioska+0018,398,529,1804724,9660,0 +10893,A.181.02,599,533,2999957,10242,0 +10894,Wioska+barbarzy%C5%84ska,580,430,699368887,8396,0 +10895,Osada,496,455,699098531,9835,0 +10896,KR%C3%93L+PAPI+WIELKI,586,561,698191218,10000,0 +10897,Witam+w+wietnamie,415,550,698971484,10008,0 +10898,NOT,416,438,9236866,10042,0 +10899,00431+pawel84,430,422,3909522,8829,0 +10900,048+Viljandi,606,514,699272880,10146,0 +10901,Kentin+ufam+Tobie,397,488,699783765,10000,5 +10902,%23032,523,603,849001572,9756,0 +10903,020+Aroughs,602,473,8337151,10030,0 +10904,033,557,396,849063849,10971,0 +10905,040,571,422,849063849,9475,0 +10906,054,554,413,699761749,10495,0 +10907,Kentin+ufam+Tobie,397,484,699783765,10000,0 +10908,Wioska+barbarzy%C5%84ska,460,404,8740199,7167,0 +10909,A015,463,400,8740199,10217,0 +10910,.achim.,526,399,6936607,10311,0 +10911,KONFA+TO+MARKA%2C+NARKA,404,460,698152377,10311,0 +10912,Jaaa,588,558,698635863,10559,8 +10913,kto+ananasowy+pod+wod%C4%85+ma+dom,575,511,699628084,9797,0 +10914,0222,523,601,698659980,10019,0 +10916,A030,451,408,8740199,10218,0 +10917,.achim.,542,395,6936607,10311,0 +10918,Teatr,424,572,7249451,10295,0 +10919,0042+Wioska,431,421,3909522,9981,0 +10920,makelovenotwar4,384,462,698807570,10068,0 +10921,046o,445,586,699099811,11742,0 +10922,moneciarnia,414,438,698884287,10285,0 +10923,Wioska+barbarzy%C5%84ska,565,584,6818593,9835,0 +10924,NOT%3F,410,556,9236866,10063,0 +10925,%7E028.,476,599,7139820,10495,0 +10926,003,487,602,7976264,10232,5 +10927,NOT,419,437,9236866,10042,0 +10928,0043+Wioska,431,422,3909522,10091,0 +10929,EKG+.%3A%3A.+Siwyy8848%2F5,498,619,33900,10495,0 +10930,Plum,416,562,699443920,9825,0 +10931,149,550,408,849064752,10311,0 +10932,KIELBA+111,452,594,699342219,10229,0 +10933,002+To+nie+by%C5%82+najlepszy+pomys%C5%82,572,422,698829590,10000,6 +10934,z+036,555,587,699342219,10230,0 +10935,Winter+is+coming,505,603,699364813,10178,0 +10936,Witam+w+wietnamie,417,552,698971484,10008,0 +10937,.achim.,527,399,6936607,10290,0 +10938,FAKE+OR+OFF,460,405,698231772,9820,0 +10939,-+074+-,553,592,849018239,10000,0 +10940,Horyzont+zdarze%C5%84,531,540,7581876,9898,0 +10941,009,582,564,699524362,10211,0 +10942,.%3A115%3A.+Niangmen,504,394,848934935,9835,0 +10943,002.+Gloria+Victis,440,605,848886973,10636,0 +10944,Wioska+barbarzy%C5%84ska,578,428,699368887,9389,0 +10945,027,569,423,849063849,9835,0 +10946,K44+x030,464,401,698364331,9150,0 +10947,Yogi,543,613,2808172,10495,0 +10948,2.+Wessex,425,428,699660539,10100,0 +10949,Knowhere,394,492,699723284,10282,0 +10950,EXA,599,531,848967710,10252,0 +10951,Dobranoc,419,542,699856962,9170,0 +10952,Wioska+0021,401,525,1804724,9623,0 +10953,Knowhere,397,493,699723284,10374,0 +10954,008,474,601,699364813,9835,0 +10955,144,566,422,849064752,10311,0 +10956,Mzm44,604,524,7142659,10362,0 +10957,NOT,420,429,9236866,10042,0 +10958,%7E027.,475,599,7139820,10495,0 +10959,0057,602,512,6510480,9860,0 +10960,EKG+.%3A%3A.+freaky97%2F1,487,605,33900,10495,0 +10961,Omen+1,399,523,1804724,10104,0 +10962,Wioska+barbarzy%C5%84ska,398,530,849030226,10957,0 +10963,%5B012%5D+Vous+tuer,601,524,848985692,10292,8 +10965,Jehu_Kingdom_07_,596,460,8785314,9993,0 +10967,003,428,584,9167250,9263,0 +10968,B+005.,440,583,849028088,10221,0 +10969,0025,607,511,6510480,9916,0 +10970,A019,463,402,8740199,10237,0 +10971,Garnizon_01,512,605,2585846,9638,0 +10972,s011,409,555,698971484,10008,0 +10973,KONFA+TO+MARKA%2C+NARKA,402,468,698152377,12154,0 +10975,019+Kurczaki+i+Ziemniaki,593,455,698829590,10144,0 +10976,Gattacka,597,424,699298370,9835,0 +10977,Wioska+454,593,544,477415,10495,0 +10978,KIELBA+120,435,573,699342219,9718,0 +10979,106+Suchy+Karaluch,409,552,699382126,10476,0 +10980,0044+Wioska,438,416,3909522,10401,0 +10981,Suppi,411,547,699856962,9878,0 +10982,0041+Wioska,432,420,3909522,10130,0 +10983,Wioska,604,516,698845189,8765,0 +10984,%7E084.,475,602,7139820,10495,0 +10985,A031,450,408,8740199,10218,0 +10986,Jaaa,572,576,698635863,10476,0 +10987,024.,600,522,8900955,10072,0 +10989,x+Wioska+barbarzy%C5%84ska,398,495,698290577,7494,0 +10990,B+001.,439,585,849028088,10495,0 +10991,A04,600,465,849093742,10019,0 +10992,Jaaa,576,570,698635863,10484,0 +10993,s010,411,554,698971484,10008,0 +10994,KONFA+TO+MARKA%2C+NARKA,404,458,698152377,10311,0 +10995,NOT,418,433,9236866,10042,0 +10996,EXA,603,529,848967710,10252,0 +10997,Suppi,425,424,699856962,9977,0 +10998,Gravity,406,454,698962117,9486,0 +10999,Szlachcic,396,477,6258092,10083,0 +11000,094,569,419,849064752,10311,0 +11001,KR%C3%93L+PAPI+WIELKI,584,566,698191218,10000,0 +11002,NOT%3F,410,554,9236866,10054,0 +11003,D004,511,395,7758085,9925,0 +11004,Wioska+%2Awyrwszat,461,599,699364813,9496,0 +11005,.achim.,517,397,6936607,10311,0 +11006,K44+x018,442,414,698364331,7262,0 +11007,SSJ+006,488,596,699054373,9761,0 +11008,.%3A046%3A.Chillout,502,393,848934935,10495,0 +11009,EKG+M12,486,604,33900,10231,0 +11010,BBB,560,415,1006847,10861,0 +11011,Wioska,606,516,698845189,9404,0 +11012,019.+Mithril+Mountain,435,583,849028088,9860,0 +11013,KR%C3%93L+PAPI+WIELKI,573,571,698191218,10000,0 +11014,A002,467,401,8740199,11073,0 +11015,BBB,564,419,1006847,6920,0 +11016,Wioska+barbarzy%C5%84ska,516,606,606407,10311,0 +11017,NOT%3F,408,552,9236866,10042,0 +11018,Wioska+barbarzy%C5%84ska,607,491,699573053,8504,0 +11019,NOT%21%21,470,600,9236866,10495,0 +11020,Motywacja+%2A,396,523,1804724,7675,0 +11021,NOT%21%21,467,598,9236866,10042,0 +11022,gdzie+napisane+%C5%BCe+mo%C5%BCna+farmi%C4%87%3F,464,600,699364813,9835,0 +11023,0025,603,492,699429153,9966,0 +11024,%2A038%2A,604,498,698670524,3196,0 +11025,Pataszon,414,558,699443920,9761,0 +11027,.achim.,517,395,6936607,10311,0 +11028,Gravity,405,453,698962117,9488,0 +11029,Wioska+barbarzy%C5%84ska,400,533,849030226,10971,0 +11030,0051,461,475,848913037,9084,0 +11031,NOT%3F,405,544,9236866,5535,0 +11032,022,405,549,699425709,9040,0 +11033,Tesa+2,601,519,698845189,10019,0 +11034,011,596,459,849088515,9821,0 +11035,%C5%9Amieszki,531,617,3454753,9057,0 +11036,019.+Kalf,585,562,699373599,10030,0 +11037,KR%C3%93L+PAPI+WIELKI,572,579,698191218,10000,0 +11038,Twierdza+006,421,569,849084740,9211,0 +11039,0223,522,602,698659980,10495,1 +11040,KONFA+TO+MARKA%2C+NARKA,398,480,698152377,10311,0 +11041,020,556,411,7271812,10495,0 +11042,037,500,375,698739350,9761,0 +11043,.achim.,529,398,6936607,10311,0 +11044,-+107+-,534,599,849018239,10000,0 +11045,105+RUSZYMY+NA+ZNAK+%28BACH%29,409,553,699382126,10241,0 +11047,A11+Maroni,599,460,849093742,10019,0 +11048,0543,474,555,698659980,11432,0 +11049,001.+Kathare,564,599,873575,10444,0 +11050,Suppi,426,422,699856962,9978,0 +11051,Ho%C5%82opole,490,396,699433558,10311,0 +11053,057+Wioska+barbarzy%C5%84ska,539,404,699491076,10001,0 +11054,Jaaa,590,558,698635863,10495,0 +11055,024,402,544,699425709,9873,0 +11056,013,599,541,6160655,10223,0 +11057,051,566,416,699761749,9907,0 +11058,D003,512,396,7758085,9925,0 +11059,002,490,602,7976264,10380,0 +11060,Wioska+barbarzy%C5%84ska,580,433,699368887,9725,0 +11061,007,425,577,9167250,8602,0 +11062,Napewno+to+nie+jest+off,499,397,848912265,7110,0 +11063,FAKE+OR+OFF,457,406,698231772,9826,0 +11064,027+Dalgon,607,505,8337151,10362,0 +11065,029,397,495,699510259,10284,1 +11066,Szlachcic+%21%21%21,504,470,699098531,9637,0 +11067,Rotrigo,402,534,849030226,10503,0 +11068,Tank+004.+%2ANW%2A,398,498,698290577,9959,0 +11069,Piek%C5%82o+to+inni,486,395,848956765,10019,0 +11070,Wioska+barbarzy%C5%84ska,515,603,7976264,9994,0 +11071,%5BA%5D_%5B014%5D+Dejv.oldplyr,395,489,699380607,10444,0 +11072,Wioska+barbarzy%C5%84ska,402,531,849030226,9393,0 +11073,004,410,445,698884287,10285,0 +11074,Sector+4,513,605,8199417,10559,2 +11075,One,585,561,848926293,9267,0 +11076,%5B377%5D+Chor%C4%85giewka+na+wietrze,583,436,848985692,10397,0 +11077,072,607,508,699573053,10495,0 +11078,0015,603,497,699429153,10301,0 +11079,.achim.,531,399,6936607,10311,0 +11080,040+Charpo,627,507,8323711,10559,0 +11081,%5B373%5D+Chor%C4%85giewka+na+wietrze,586,436,848985692,10411,0 +11082,Vasperland_009,624,503,7047342,10478,0 +11083,Bucks+x+Kamiiiru,457,598,848955783,10635,0 +11085,0224,519,603,698659980,10019,0 +11086,Formouth+Garrison,527,604,8199417,10224,0 +11087,Gattacka,605,503,699298370,10160,8 +11088,Ethan+Hunt+03,601,476,698702991,9860,0 +11089,.achim.,518,398,6936607,10311,0 +11090,007+Ogr,401,541,699856962,10143,0 +11091,.achim.,530,399,6936607,10259,0 +11092,s%C5%82odziute%C5%84ka+07,599,535,8013349,3752,0 +11093,070,413,524,699851427,10042,0 +11094,%2B44+74+Saint+Bonnet+de+Mure,447,474,698361257,9669,0 +11095,048o,443,586,699099811,10178,0 +11096,Wioska+453,595,549,477415,10495,0 +11097,0038,450,593,699280514,7557,0 +11098,.achim.,529,397,6936607,10311,0 +11099,Gravity,403,458,698962117,9550,0 +11100,Knowhere,397,513,699723284,3593,0 +11101,A15,600,464,849093742,10019,0 +11102,Szlachcic,454,403,698388578,10237,8 +11103,KONFA+TO+MARKA%2C+NARKA,403,464,698152377,12154,0 +11104,%5B037%5D,594,543,848985692,10170,0 +11105,.achim.,519,397,6936607,10311,0 +11106,032+Doru+Araeba,605,502,8337151,11074,0 +11107,Gomora,509,545,848915531,12154,0 +11108,Ho%C5%82opole,490,393,699433558,10311,0 +11109,%23001,545,600,849001572,9740,0 +11110,Wioska+barbarzy%C5%84ska,402,457,699523631,10160,0 +11111,004,573,579,699316421,10273,1 +11112,0039+Wioska,437,419,3909522,10222,0 +11113,002,409,445,698884287,10285,0 +11114,mamm,569,577,6818593,9835,0 +11115,1.San+Diego,550,591,698215322,9965,0 +11116,%5BA%5D_%5B010%5D+Dejv.oldplyr,397,486,699380607,10495,0 +11117,KONFA+TO+MARKA%2C+NARKA,398,479,698152377,10311,0 +11118,Szlachcic,458,402,698388578,10237,0 +11119,Knowhere,394,494,699723284,10282,0 +11120,Wioska+Gilbert,564,582,6818593,9835,0 +11121,.achim.,516,394,6936607,10311,0 +11122,005,404,540,699425709,9873,0 +11123,D002,511,397,7758085,9925,0 +11124,NOT%3F,407,543,9236866,10042,0 +11125,Piek%C5%82o+to+inni,484,394,848956765,10083,0 +11126,004+Gusto,401,539,699856962,10143,0 +11127,Wioska+barbarzy%C5%84ska,411,444,698884287,10285,0 +11129,026,564,417,7271812,10495,0 +11130,012,405,548,699425709,9873,0 +11132,006,585,441,699722599,10345,0 +11133,%7E002.,495,606,7139820,10495,8 +11134,0077,446,408,699431255,9976,0 +11135,.achim.,525,400,6936607,10311,0 +11136,A032,449,407,8740199,10229,0 +11137,PYZA+003+Gajder,580,570,33900,10046,0 +11138,007,582,566,699524362,5778,0 +11139,Piek%C5%82o+to+inni,484,393,848956765,10019,0 +11140,0225,520,603,698659980,10083,0 +11141,00331+Wioska,431,418,3909522,9096,0 +11142,Bagdad,475,396,8847546,9835,0 +11143,010,553,412,7271812,10495,3 +11144,-002-+Psst+psst+psst,456,406,9291984,10495,0 +11145,Szlachcic,478,397,698388578,10237,0 +11146,139+s004,406,555,699382126,10838,0 +11147,140+s009,407,555,699382126,10728,0 +11149,Horyzont+zdarze%C5%84,539,596,7581876,10019,6 +11150,-+125+-,550,593,849018239,9809,0 +11151,VN+Dante+Zogriatis,475,379,699883079,9626,0 +11152,0062,606,513,6510480,10346,0 +11153,B19,499,401,849093422,9761,0 +11154,Jaaa,569,581,698635863,10194,0 +11155,Piek%C5%82o+to+inni,486,393,848956765,10019,0 +11156,Tesa+6,603,520,698845189,10019,0 +11157,%23037,482,619,699605333,10393,0 +11158,.%3A133%3A.+Niangmen,507,397,848934935,9976,0 +11159,%5BA%5D_%5B001%5D+Dejv.oldplyr,394,482,699380607,10495,0 +11160,015,592,447,699722599,10149,2 +11161,FAKE+OR+OFF,459,402,698231772,9825,0 +11162,002,584,567,698169715,3437,0 +11163,058+Wioska+%C5%81asiak17,540,404,699491076,10001,0 +11164,0628,444,591,698659980,10019,0 +11165,037,561,401,699761749,10495,0 +11166,023.+Frontier,436,586,849028088,7650,0 +11167,003.+Sussex,424,427,699660539,9924,0 +11168,-+024+-,542,598,849018239,10000,0 +11169,040,542,401,7271812,10365,0 +11170,KONFA+TO+MARKA%2C+NARKA,387,466,698152377,10311,0 +11171,Elevator+Hall,532,603,8199417,8700,0 +11172,0201,451,609,698659980,10495,0 +11173,BBB,584,440,1006847,8101,0 +11175,009.+Sztucznie,475,603,7976264,9790,0 +11176,Szlachcic,459,405,698388578,10237,0 +11177,Kentin+ufam+Tobie,396,481,699783765,10000,0 +11179,A07,599,462,849093742,10019,0 +11180,-+067+-,549,594,849018239,10000,0 +11181,012,505,606,7976264,9963,0 +11182,055+Bu%C5%82eczka+vv10,537,400,699491076,9580,0 +11183,%7E042.,481,606,7139820,10495,0 +11184,K34+x023,467,397,698364331,10495,2 +11185,%5B401%5DChwila+prawdy,578,431,848985692,7446,0 +11186,KONFA+TO+MARKA%2C+NARKA,404,457,698152377,10375,0 +11187,011,606,511,699573053,10495,0 +11188,017,606,499,699573053,10495,0 +11189,Wioska+barbarzy%C5%84ska,510,606,7976264,9965,0 +11190,D005,509,396,7758085,9925,0 +11191,0000002%24,434,579,849089881,10475,8 +11192,North+Blue,485,396,699433558,10311,0 +11193,Knowhere,396,513,699723284,10452,0 +11195,xhav,396,473,698807570,10057,0 +11196,0640,444,592,698659980,10019,0 +11197,Szlachcic,474,400,698388578,10237,0 +11198,EKG+.%3A%3A.+freaky97%2F4,485,606,33900,10495,0 +11199,.%3A102%3A.+Niangmen,504,393,848934935,10068,7 +11200,yogi,529,604,2808172,10019,0 +11201,A05,506,393,849093422,9761,3 +11202,kathare+xx,519,564,873575,10545,0 +11203,K44+x011,451,405,698364331,9194,0 +11204,D023,509,397,7758085,9861,0 +11205,019,394,515,699510259,9742,0 +11206,KONFA+TO+MARKA%2C+NARKA,401,464,698152377,12154,3 +11208,NOT%3F,403,545,9236866,10042,0 +11209,104+POCZUJE+KA%C5%BBDY+WACK,410,552,699382126,10542,0 +11210,A03,600,463,849093742,10019,0 +11212,barba,464,601,698971484,10008,0 +11213,Knowhere,392,503,699723284,10452,1 +11214,0015,472,603,33900,9372,0 +11215,Gravity,407,451,698962117,9488,0 +11216,ADEN,563,416,698588535,10898,0 +11217,003,587,442,699722599,10362,0 +11218,NOT%3F,405,551,9236866,10042,0 +11219,Ho%C5%82opole,498,394,699433558,9835,0 +11220,%5B374%5D+Chor%C4%85giewka+na+wietrze,587,438,848985692,10411,0 +11221,A08,599,461,849093742,10019,0 +11222,024,608,503,699573053,10495,0 +11224,Piek%C5%82o+to+inni,485,393,848956765,10019,0 +11225,006+Otwieraj+ryyyyjjjj,604,487,699272633,10476,0 +11226,030,565,419,699761749,10495,0 +11227,016+Denver,430,420,9291984,10476,2 +11228,0082,441,411,699431255,9585,0 +11229,%23009,537,597,849001572,9740,0 +11230,024,593,446,699722599,10048,0 +11231,B.006,415,567,849088243,10495,0 +11232,Horyzont+zdarze%C5%84,535,603,7581876,9835,0 +11233,016,557,413,7271812,10495,0 +11234,013,596,457,849088515,10019,0 +11235,Knowhere,395,488,699723284,10484,0 +11236,039+Naantali,600,530,699272880,9811,0 +11237,%23037,532,601,849001572,5481,0 +11238,Wioska+krulu+zloty,399,534,849030226,10475,0 +11239,PYRLANDIA+027,564,585,33900,10063,0 +11240,Wioska,394,506,849084005,10178,0 +11241,0627,443,589,698659980,10019,0 +11242,Wioska+barbarzy%C5%84ska,395,518,698290577,5974,0 +11243,008+Bonus+wyyymi%C4%99k%C5%82,603,481,699272633,10476,0 +11244,Z01,514,603,2293376,10083,0 +11245,003.+Bjorn,585,567,699373599,10252,2 +11246,004,552,406,7271812,10495,0 +11247,Suppi,425,423,699856962,9811,0 +11248,016,591,450,699722599,9976,0 +11249,KONFA+TO+MARKA%2C+NARKA,402,464,698152377,10291,0 +11250,Wioska+barbarzy%C5%84ska,469,398,699191449,5846,0 +11251,FAKE+OR+OFF,460,400,698231772,9834,0 +11252,013,552,408,7271812,10495,0 +11253,Szlachcic,471,398,698388578,10237,0 +11254,%5BA%5D_%5B020%5D+Dejv.oldplyr,395,490,699380607,10495,0 +11255,NOT%3F,408,549,9236866,10042,0 +11256,%3D002%3D+By%C5%82a+akcja,606,553,3781794,10145,0 +11257,.achim.,530,398,6936607,10311,0 +11258,Coruscant+3,500,605,699383121,9797,0 +11259,008,608,499,699573053,10495,0 +11260,%21Wioska+520,560,467,477415,10495,0 +11261,KR%C3%93L+PAPI+WIELKI,573,580,698191218,10000,0 +11262,.%3A008%3A.+Chillout,499,392,848934935,10268,0 +11263,Bucks+x+Kamiiiru,456,599,848955783,10971,0 +11264,%7E029.,476,601,7139820,10495,0 +11266,014,589,440,699722599,10342,0 +11267,0086,441,412,699431255,9525,0 +11268,073,607,516,699373599,6251,0 +11269,0270,527,602,698659980,10019,0 +11270,%5B039%5D,594,544,848985692,10161,0 +11271,Szlachcic,477,399,698388578,10237,9 +11272,Hojo+s+Laboratory+Sublevel,521,619,8199417,10160,0 +11273,151,573,421,849064752,10311,0 +11274,Z14,548,583,873575,10120,0 +11275,-+055+-,539,598,849018239,10000,0 +11276,%2A021%2A,606,508,698670524,8448,0 +11277,005+Wioska+barbarzy%C5%84ska,608,510,6409472,4232,0 +11278,004,515,605,8925624,7978,0 +11279,0045+Wioska,436,417,3909522,9867,0 +11280,ccc,607,524,7047342,10484,0 +11281,Wioska+barbarzy%C5%84ska,579,430,699368887,7439,0 +11282,KONFA+TO+MARKA%2C+NARKA,398,465,698152377,12154,0 +11283,00191+Wioska,437,412,3909522,10072,0 +11284,Tank+xx+Niesamowity+je%C5%BAdziec,396,512,698290577,10016,0 +11285,-+110+-,540,601,849018239,9319,0 +11286,Wioska+barbarzy%C5%84ska,408,442,698884287,10285,0 +11287,Sector+4+Slums+Area,528,602,8199417,10141,0 +11288,027,604,479,699573053,10495,0 +11289,%7E007.,503,605,7139820,10495,0 +11290,K44+x032,463,403,698364331,9006,0 +11291,0635,446,593,698659980,10019,0 +11292,KONFA+TO+MARKA%2C+NARKA,397,478,698152377,10311,0 +11293,Osada,500,446,699098531,10300,0 +11294,Drum+Island,486,396,699433558,10068,0 +11295,004,564,413,849064752,10311,4 +11296,Wioska+dabkof,604,520,698845189,10019,0 +11297,Jaaa,588,555,698635863,10481,0 +11298,moze+teraz,559,607,699567608,9622,0 +11299,Kiedy%C5%9B+Wielki+Wojownik,393,455,8632462,9835,0 +11300,016,595,455,849088515,10019,0 +11301,Gryfios+001,616,538,698666810,10495,0 +11302,Tesa+4,603,518,698845189,10019,0 +11303,181,592,527,699851345,9452,0 +11304,010,583,563,699524362,10211,0 +11305,Piek%C5%82o+to+inni,480,378,848956765,10160,0 +11306,0028+Wioska,434,413,3909522,10072,0 +11307,019+-+Edzna%2A%2A%2A,437,588,225023,10495,0 +11309,Wioska+barbarzy%C5%84ska,396,529,849030226,10551,0 +11310,%5BA%5D_%5B005%5D+Dejv.oldplyr,396,485,699380607,10495,0 +11311,NOT,416,434,9236866,10042,0 +11312,004,397,491,699510259,9761,0 +11313,NOT,416,431,9236866,10042,0 +11314,PYRLANDIA+025+pod+ce,560,588,33900,10311,0 +11315,barba,464,599,698971484,10008,0 +11316,Jaaa,571,558,698635863,10476,0 +11317,003+mucharadza,604,532,9238175,10488,0 +11318,.%3A113%3A.+Niangmen,508,396,848934935,9835,0 +11319,019.+Gloria+Victis,440,611,848886973,10461,0 +11320,.%3A130%3A.+Niangmen,509,394,848934935,9976,0 +11321,.%3A104%3A.+Niangmen,501,395,848934935,10068,0 +11322,008,438,587,849028088,10495,0 +11323,%2A006%2A,606,502,698670524,8468,0 +11324,006,599,543,6160655,10569,0 +11325,Knowhere,378,493,699723284,10452,0 +11326,x+R017,393,514,698290577,9400,0 +11327,Okonek,399,577,698769107,9365,0 +11328,Wioska+0023,394,521,1804724,9923,0 +11329,Jaaa,573,541,698635863,10479,0 +11330,Wioska+2,547,458,698881022,3554,0 +11331,Wioska+barbarzy%C5%84ska,564,584,6818593,9835,0 +11332,Knowhere,394,493,699723284,10282,0 +11333,Twierdza,421,570,699429335,9234,0 +11334,003,395,496,699510259,9761,0 +11335,Brat447,392,496,699262350,10952,0 +11336,FAKE+OR+OFF,456,401,698231772,9830,0 +11337,0032+Wioska+S,433,417,3909522,9905,0 +11338,%2ATam02%2A,525,604,606407,10311,0 +11339,015+Florida,606,478,7092442,10495,0 +11340,0638,447,594,698659980,10019,0 +11341,EKG+.%3A%3A.+freaky97%2F5,486,607,33900,10495,0 +11342,Kentin+ufam+Tobie,440,412,699783765,10000,0 +11343,%5BA%5D_%5B040%5D+Dejv.oldplyr,410,467,699380607,10495,0 +11344,%7E010.,495,605,7139820,10495,0 +11345,%7E016.,503,606,7139820,10495,0 +11346,A033,448,407,8740199,10226,0 +11347,bandzior,529,603,606407,10294,6 +11348,038,549,405,1424656,5437,0 +11349,%5B376%5D+Chor%C4%85giewka+na+wietrze%2B%2B,583,437,848985692,10411,0 +11350,BBB,554,438,1006847,6841,0 +11352,%7E063.,474,602,7139820,10222,0 +11353,003,412,445,698884287,10285,0 +11354,0041+MzM,594,554,698416970,9821,0 +11355,A009,459,400,8740199,10237,0 +11356,.%3A101%3A.+Niangmen,507,395,848934935,10068,0 +11357,Kentin+ufam+Tobie,394,481,699783765,10000,0 +11358,.%3A045%3A.+Chillout,503,393,848934935,10495,0 +11359,NOT%3F,407,548,9236866,10042,0 +11360,004+Melon944,606,519,8323711,10495,0 +11361,Wioska,392,510,849084005,10178,0 +11362,0226,521,603,698659980,10019,0 +11363,NOT%21%21,467,599,9236866,10042,0 +11364,K34+-+%5B001%5D+Before+Land,458,381,699088769,10259,0 +11365,Jaaa,590,560,698635863,10479,0 +11366,Bocianikson014,606,507,7528491,9952,0 +11367,0059,605,511,6510480,10133,0 +11368,003+Kartagina,604,530,8013349,9771,0 +11369,Sparta_20,494,604,2585846,9638,0 +11370,Wioska+barbarzy%C5%84ska,408,447,698884287,10285,0 +11371,.achim.,534,398,6936607,10311,0 +11372,-+079+-,553,591,849018239,10000,0 +11373,%5B352%5D+Chor%C4%85giewka+na+wietrze,591,441,848985692,10287,0 +11374,.%3A047%3A.+Chillout,505,393,848934935,10495,0 +11375,A045,462,400,8740199,7833,0 +11376,Wioska+barbarzy%C5%84ska,394,508,698290577,5222,0 +11377,KIELBA+095,449,595,699342219,7079,0 +11378,0005+niespodzianka,579,425,8459255,10336,0 +11379,035,545,401,7271812,10495,0 +11380,014,597,464,849088515,10019,0 +11381,Wioska+barbarzy%C5%84ska,569,584,6818593,9835,0 +11382,KONFA+TO+MARKA%2C+NARKA,397,470,698152377,12154,8 +11383,031,566,415,699761749,10095,0 +11384,009.+Lunden,424,426,699660539,10090,0 +11385,006+barbarzy%C5%84ska,603,528,9238175,10281,0 +11386,%7E004.,494,605,7139820,10495,0 +11387,%2ATytan+zerknij+w+notk%C4%99,586,434,848985692,10052,0 +11388,189,575,404,849064752,10311,0 +11389,NOT%3F,402,548,9236866,9293,0 +11390,.%3A106%3A.+Niangmen,503,392,848934935,10068,0 +11391,Brat447,394,512,699262350,4937,4 +11392,009,479,605,8925624,3656,0 +11393,Piek%C5%82o+to+inni,484,395,848956765,10160,0 +11394,EKG+.%3A%3A.+KOM+002+Sobie,478,602,33900,10273,0 +11396,-+059+-,548,594,849018239,10000,0 +11397,003a+o,430,577,9167250,6853,0 +11398,HOTEL+3,566,414,849064614,9761,0 +11399,KIELBA+078,458,595,699342219,10365,0 +11400,053,605,474,699573053,10495,0 +11401,Myk+i+do+kieszonki,379,509,9319058,9799,0 +11402,SsSs,393,500,1536625,10019,0 +11403,NOT,413,435,9236866,10042,0 +11404,025,594,446,699722599,10219,0 +11405,ZrolowanaSt%C3%B3wa,554,448,699368887,10434,0 +11406,KONFA+TO+MARKA%2C+NARKA,397,471,698152377,12154,0 +11407,Wioska+barbarzy%C5%84ska,399,533,849030226,10952,0 +11408,s%C5%82odziute%C5%84ka+05,604,534,8013349,6133,0 +11409,Sk%C5%82ad,524,605,606407,10295,0 +11411,Wioska+barbarzy%C5%84ska,399,531,849030226,10495,0 +11412,Wioska+Nya.,572,441,699368887,8561,0 +11413,Marienburg+0,527,477,699355601,9782,0 +11414,0060,604,511,6510480,10003,0 +11415,%21Sk%C5%82ad,510,607,606407,10303,0 +11416,Velen,479,374,699658023,9745,0 +11417,KR%C3%93L+PAPI+WIELKI,577,578,698191218,9899,0 +11418,Lord+Arsey+KING,577,591,848956513,10285,0 +11419,Bocianikson017,597,547,7528491,9899,0 +11420,006+-+T_001%2A%2A%2A,440,586,225023,10495,0 +11421,BBB,565,413,1006847,9855,0 +11422,Wioska+barbarzy%C5%84ska,531,603,606407,10452,0 +11423,.achim.,524,396,6936607,10311,0 +11424,KONFA+TO+MARKA%2C+NARKA,398,462,698152377,11954,0 +11425,EKG+M08+green3,483,606,33900,10055,0 +11426,Napewno+to+nie+jest+off,494,391,848912265,9713,0 +11427,Szlachcic,397,476,6258092,10160,0 +11428,028,594,450,699722599,10495,0 +11429,Brat447,392,513,699262350,10479,0 +11431,Wioska,392,504,849084005,10178,0 +11432,002,382,458,3698627,9974,0 +11433,x+Wioska+barbarzy%C5%84ska,395,507,698290577,8907,0 +11434,Ethan+Hunt+02,604,477,698702991,9766,0 +11435,Knowhere,397,514,699723284,10452,0 +11436,Szlachcic,458,403,698388578,10237,0 +11437,021,579,569,699524362,8708,0 +11438,%5B049%5D,601,533,848985692,7168,0 +11439,-+040+-,550,596,849018239,10000,0 +11440,.achim.,530,397,6936607,10311,0 +11441,0641,446,590,698659980,10019,0 +11442,Piek%C5%82o+to+inni,481,393,848956765,10160,0 +11443,%5BA%5D_%5B013%5D+Dejv.oldplyr,394,488,699380607,10444,0 +11444,Lord+Arsey+KING,579,591,848956513,10285,0 +11445,082+TO+NIE+%C5%81ADNIE,412,557,699382126,10100,0 +11446,025,402,543,699425709,9873,0 +11447,Szlachcic,468,399,698388578,8976,0 +11448,Lecymy+DUR,443,394,6169408,9650,0 +11449,%7E014.,501,607,7139820,10495,0 +11450,Oxenfurt,493,392,699433558,10311,0 +11451,wola+4,480,397,849093155,7331,0 +11452,%5B0491%5D,593,548,848985692,9372,0 +11453,K44+x002,444,408,698364331,10495,5 +11454,.achim.,537,398,6936607,10311,0 +11456,002,510,609,8925624,9197,0 +11457,SsSs,394,497,1536625,9299,0 +11458,053,569,415,849063849,10595,0 +11459,Poison,592,558,848926293,9463,0 +11460,047,557,409,7271812,3024,0 +11461,Ponello,411,562,699443920,9761,0 +11462,.achim.,521,393,6936607,10311,0 +11463,Village,515,607,849094067,12154,0 +11464,A19,603,467,849093742,10019,0 +11465,NOT%21%21,472,601,9236866,10042,0 +11466,Bucks+x+Kamiiiru,456,598,848955783,10971,0 +11467,GARNIZON,513,606,2585846,9638,9 +11468,ADEN,588,436,698588535,9809,0 +11469,Enklawa,395,525,1804724,10248,0 +11470,Jaaa,568,582,698635863,9982,6 +11471,Brat447,391,502,699262350,10711,0 +11472,s%C5%82odziute%C5%84ka+12,599,538,8013349,6205,0 +11473,KR%C3%93L+PAPI+WIELKI,571,583,698191218,9949,1 +11474,041.,587,566,699373599,10068,0 +11475,017,597,455,849088515,8904,0 +11476,003.+Strzyga,509,588,699703642,10295,0 +11477,Gravity,404,455,698962117,9505,0 +11478,BBB,563,411,1006847,10791,0 +11479,%7E026.,488,609,7139820,10495,0 +11480,0000018,438,584,849089881,10063,0 +11482,%23040,485,608,849001572,9835,0 +11483,0005,607,495,699429153,10323,3 +11484,KONFA+TO+MARKA%2C+NARKA,400,462,698152377,10375,0 +11485,motywacja+00000001,395,523,1804724,10164,0 +11486,-+065+-,553,593,849018239,10000,0 +11487,K34+x010,466,399,698364331,8850,0 +11488,020+Idaho,608,491,7092442,10495,0 +11489,A014,449,404,8740199,10220,0 +11490,A0003,387,476,8841266,10252,0 +11491,.achim.,518,405,6936607,10311,0 +11492,NOT,415,437,9236866,10042,0 +11493,NOT%3F,407,553,9236866,10042,0 +11494,Galdin+Quay,528,604,8199417,10083,0 +11496,0083,442,410,699431255,9835,0 +11497,Gattacka,573,498,699298370,10501,0 +11498,120,546,402,849064752,10311,0 +11500,Ho%C5%82opole,494,393,699433558,10311,0 +11501,Brat447,389,502,699262350,10495,0 +11502,021,552,407,7271812,10495,0 +11503,Napewno+to+nie+jest+off,494,392,848912265,10495,0 +11504,4.+Strathclyde,423,426,699660539,10986,0 +11505,Wioska+Podusia+%3A%29,396,519,1804724,7444,0 +11506,A12,598,462,849093742,10019,0 +11507,028,538,401,1424656,10160,0 +11508,0078,442,407,699431255,9835,0 +11509,Z+barba+007,429,580,225023,10283,0 +11510,Piek%C5%82o+to+inni,482,395,848956765,10083,0 +11511,020,400,540,699856962,9664,0 +11512,.achim.,517,393,6936607,10268,0 +11513,Wioska+Dawidssssss,510,383,699368887,10237,0 +11514,0011,605,493,699429153,10301,0 +11515,S012,409,554,698971484,10008,7 +11516,0036+skarbnica,435,418,3909522,10004,0 +11517,Suppi,424,423,699856962,9806,0 +11518,Ho%C5%82opole,491,394,699433558,10311,0 +11519,A13,597,460,849093742,10019,0 +11520,Moje+Fantazje,397,518,1804724,10770,9 +11521,Horyzont+zdarze%C5%84,539,612,7581876,10019,0 +11522,015,599,455,849088515,10019,0 +11523,Wioska+barbarzy%C5%84ska,531,604,606407,10292,0 +11524,KONFA+TO+MARKA%2C+NARKA,396,469,698152377,12154,0 +11525,Nope,396,479,6258092,10362,0 +11526,Pobozowisko,419,592,699513260,10960,0 +11527,K44+x025,442,412,698364331,7109,0 +11529,KONFA+TO+MARKA%2C+NARKA,400,464,698152377,10311,6 +11530,0145,460,617,698659980,10083,0 +11531,Kentin+ufam+Tobie,397,479,699783765,10000,0 +11532,PRO8L3M,395,516,7491093,10365,0 +11533,KONFA+TO+MARKA%2C+NARKA,400,460,698152377,10295,0 +11534,001,490,601,7976264,10390,0 +11535,Kiedy%C5%9B+Wielki+Wojownik,401,456,8632462,9747,0 +11536,Kiedy%C5%9B+Wielki+Wojownik,397,468,8632462,9976,0 +11537,Wioska,391,504,849084005,10178,0 +11538,008,554,406,7271812,10495,0 +11539,Niespodzianka,608,504,849095240,10168,0 +11540,0000011,429,581,849089881,9555,0 +11541,Lord+Arsey+KING,500,474,848956513,10285,0 +11542,Kiedy%C5%9B+Wielki+Wojownik,400,457,8632462,9733,0 +11543,%23016,486,608,849001572,8255,0 +11544,Szlachcic,393,475,6258092,10160,0 +11545,094+MEHEHE,499,614,6116940,9922,0 +11546,Pf+Konfederacja+8,490,498,848915730,9704,0 +11547,-Kr%C3%B3lestwo+Szefa-,552,596,6818593,9835,0 +11548,023.xxx,479,604,8612358,10063,0 +11549,Gravity,402,454,698962117,9484,0 +11550,Szlachcic,397,477,6258092,10252,0 +11551,Ptokas,412,559,699443920,9761,0 +11552,Kentin+ufam+Tobie,392,482,699783765,10000,0 +11553,030,587,565,699373599,10068,0 +11554,Piek%C5%82o+to+inni,485,392,848956765,10160,0 +11555,Wioska+barbarzy%C5%84ska,395,520,849030226,9760,0 +11556,Another+Brick+In+The+Wall,591,555,848926293,7375,0 +11557,013.+Hvitserk,587,562,699373599,10030,0 +11558,Piek%C5%82o+to+inni,483,395,848956765,2444,0 +11559,%2A313%2A,518,608,606407,10292,0 +11560,027+California,607,490,7092442,10495,0 +11561,Coruscant+6,498,609,699383121,9139,0 +11562,%23041,487,608,849001572,9875,0 +11563,Wioska+barbarzy%C5%84ska,436,588,849028088,9225,0 +11564,Winter+is+coming,458,597,699364813,9835,0 +11565,Bagdad,476,395,8847546,10654,0 +11566,a+mo%C5%BCe+off+%3F+%3A%29,580,575,698768565,9568,9 +11567,019+Yazuac,604,473,8337151,10362,0 +11568,Napewno+to+nie+jest+off,492,391,848912265,9899,0 +11569,KR%C3%93L+PAPI+WIELKI,600,541,698191218,10000,0 +11570,EKG+M09+green4,483,607,33900,10083,0 +11571,A.181.01,601,530,2999957,10242,0 +11572,Sk%C5%82ad,525,605,606407,10294,0 +11573,%5B239%5DTasuj+Tasuj+prze%C5%82%C3%B3%C5%BC+Tasuj,598,452,848985692,10049,0 +11574,Wioska+barbarzy%C5%84ska,578,430,699368887,7304,0 +11575,xhav,395,472,698807570,10068,0 +11576,057+-+Hexiu,418,567,225023,10495,0 +11577,E001,518,395,7758085,5789,4 +11578,002+-+Zaczynamy,425,576,225023,10495,0 +11579,062+OZDR,476,621,699336777,10336,0 +11580,111,547,401,849064752,10311,0 +11581,047+%C5%9Awie%C5%BCa+Bu%C5%82eczka,533,399,699491076,4759,4 +11582,A02,599,464,849093742,10019,0 +11583,014.+Halfdan,586,563,699373599,10030,0 +11584,Village,517,606,849094067,12154,0 +11585,027.+Corduba,604,465,849091866,9075,0 +11586,Wioska+barbarzy%C5%84ska,562,586,6818593,9835,0 +11587,087+JESTE%C5%9A+Z+ULICY,409,557,699382126,10481,0 +11589,%5B371%5D+Chor%C4%85giewka+na+wietrze,585,431,848985692,10411,0 +11590,Wioska+barbarzy%C5%84ska,395,524,849030226,10955,0 +11591,080+-+Twierdza+003,422,573,225023,9544,0 +11592,dla+Ethan+Hunt,604,489,699429153,10296,0 +11593,.achim.,523,400,6936607,10311,0 +11594,0106,465,397,699431255,9500,0 +11595,001,509,607,8925624,9967,0 +11596,025,609,495,699573053,10495,0 +11598,008.+Sigi,589,563,699373599,10030,0 +11599,Wioska+0019,400,530,1804724,10164,0 +11600,Szlachcic+%21%21%21,492,466,699098531,9778,0 +11601,-+068+-,535,599,849018239,10000,0 +11602,.achim.,523,393,6936607,5289,0 +11603,NOT,419,428,9236866,10042,0 +11604,NOT,419,427,9236866,10042,0 +11605,08.+Reorganizacja.+%28Maczeta.%29,417,567,698769107,9756,5 +11606,Wioska+barbarzy%C5%84ska,397,530,849030226,9521,0 +11607,.achim.,521,398,6936607,10311,0 +11608,Knowhere,390,493,699723284,10484,0 +11609,Piek%C5%82o+to+inni,488,391,848956765,10160,0 +11610,Suppi,426,423,699856962,10084,2 +11611,%23030,467,600,849001572,7592,0 +11612,%23030+A,444,595,9037756,9835,0 +11613,D010,508,391,7758085,9925,0 +11614,KR%C3%93L+PAPI+WIELKI,570,581,698191218,10000,0 +11615,039,531,600,699189792,9745,0 +11616,FAKE+OR+OFF,441,400,698231772,9840,0 +11617,Kiedy%C5%9B+Wielki+Wojownik,399,457,8632462,9976,0 +11618,020,610,506,849006412,10271,0 +11619,A038,479,397,8740199,10358,0 +11620,Knowhere,393,492,699723284,10205,0 +11621,135+Wioska+barbarzy%C5%84ska,404,555,699382126,10478,0 +11622,009.+Helga,587,564,699373599,10030,0 +11623,0009,609,490,477415,10495,0 +11624,Knowhere,391,494,699723284,10506,0 +11625,.achim.,516,393,6936607,10311,0 +11626,Pjon,415,565,699443920,9761,0 +11627,001,588,441,699722599,10495,0 +11628,Bagdad,475,395,8847546,10068,0 +11629,077,607,507,699573053,9974,0 +11630,019,590,444,699722599,10252,0 +11631,Gravity,406,452,698962117,9486,0 +11632,%5B230%5D+WEST,600,455,848985692,10048,0 +11633,Bunkier+002,591,447,698350371,10495,0 +11634,Wioska4%2C%2C%2C,482,606,8369778,6813,0 +11635,0003+K55+and987+OZDR.,505,553,3613413,9844,0 +11636,x+R001,396,516,698290577,9630,0 +11637,Brat447,392,495,699262350,10957,0 +11638,Crown+City,529,605,8199417,10083,0 +11639,Wioska,394,509,849084005,10178,0 +11640,008+Drewno,606,517,8323711,10495,1 +11641,0007.+A+-+Nadindel,606,528,7125212,10285,0 +11642,024,551,407,849064752,10311,0 +11644,Knowhere,395,510,699723284,10452,0 +11645,Lord+Arsey+KING,570,584,848956513,10285,8 +11646,002+Alaska,608,490,7092442,10252,0 +11647,%23005,539,601,849001572,9741,0 +11648,%23026,535,601,849001572,6684,0 +11649,0001,555,406,7271812,10495,0 +11650,191,431,581,9179700,2516,0 +11651,054,607,478,699573053,10311,0 +11652,Winter+is+coming,462,599,699364813,9888,0 +11653,028,607,489,699573053,10495,0 +11654,West+05,604,470,698702991,9830,0 +11655,0077,603,523,699432672,10495,0 +11656,Lord+Arsey+KING,575,579,848956513,10285,4 +11657,195,575,419,849064752,5658,0 +11658,.achim.,517,394,6936607,10311,0 +11659,055,610,500,699573053,10158,0 +11660,Wioska+barbarzy%C5%84ska,396,528,849030226,9491,0 +11661,00361+Wioska,435,417,3909522,6333,0 +11662,020.+Kwenthrith,587,561,699373599,10030,0 +11663,Napewno+to+nie+jest+off,489,408,848912265,10068,0 +11664,NOT,417,435,9236866,10042,0 +11665,Jehu_Kingdom_32_,602,468,8785314,9993,0 +11666,%2A016%2A,605,509,698670524,8501,0 +11667,029,609,487,699573053,10495,0 +11668,04+Flary,620,507,699377151,9142,0 +11669,0016,598,507,699429153,10426,0 +11670,ADEN,576,424,698588535,10072,0 +11671,A021,465,399,8740199,10247,0 +11672,-+023+-,541,601,849018239,10000,0 +11673,k45+015,574,433,699368887,10093,0 +11674,A007,459,401,8740199,10237,0 +11675,Shimotsuki+Village,494,390,699433558,10311,0 +11676,Z+barba+005,428,579,225023,10495,0 +11677,064,585,591,698999105,10311,0 +11678,Wioska+barbarzy%C5%84ska,593,557,8742874,9724,0 +11679,A035,495,416,699299123,10130,0 +11680,0634,447,595,698659980,10160,0 +11681,18120,436,589,849028088,6817,0 +11682,SsSs,394,498,1536625,8288,0 +11683,010+To+dawaj+lufe,603,479,699272633,10475,0 +11685,005+Od+teraz+bilet+do+Bydgoszczy,503,390,7758085,9861,0 +11686,K44+-+%5B001%5D+Before+Land,466,400,699088769,10259,4 +11687,037+Petro180+-+1.,608,515,8323711,10495,0 +11688,Knowhere,391,503,699723284,10452,0 +11689,053,579,405,849064752,10311,0 +11690,KONFA+TO+MARKA%2C+NARKA,396,468,698152377,12154,0 +11691,x+Osada+koczownik%C3%B3w,390,508,698290577,9293,6 +11692,1.Denver,554,591,698215322,9994,0 +11693,Gravity,408,449,698962117,9508,0 +11694,0624,442,593,698659980,10019,0 +11695,.achim.,520,398,6936607,10311,0 +11696,Gravity,405,450,698962117,9486,0 +11697,%5B008%5D+...,393,521,849030226,10951,9 +11698,00311+Wioska,434,418,3909522,9283,0 +11699,086,610,507,699573053,10300,0 +11701,Osada+koczownik%C3%B3w,412,442,698884287,10285,1 +11702,A004,446,404,8740199,10237,0 +11703,.Huntsville,470,495,699781762,10495,0 +11704,-+022+-,540,602,849018239,10000,0 +11705,Teby_02,504,610,2585846,9638,0 +11706,%5BA%5D_%5B012%5D+Dejv.oldplyr,394,487,699380607,10444,0 +11707,010,574,423,849063849,10636,0 +11708,056,610,508,699573053,10401,0 +11709,%5B322%5D+Chor%C4%85giewka+na+wietrze,590,437,848985692,10394,0 +11710,Bagdad,471,396,8847546,9835,0 +11711,078,610,511,699573053,10495,0 +11712,044+White+Horse,466,467,1497168,9761,0 +11713,.achim.,514,392,6936607,10311,0 +11714,E002,515,392,7758085,6119,4 +11715,Gravity,404,454,698962117,9497,0 +11716,%5B371%5D+Chor%C4%85giewka+na+wietrze+D,588,433,848985692,10411,0 +11717,PYRLANDIA+033+%24,556,595,33900,10273,2 +11718,PYRLANDIA+023+s,562,589,33900,10311,0 +11719,%2A308%2A,512,609,606407,10297,0 +11720,.achim.,515,393,6936607,10311,0 +11721,%7E013.,499,605,7139820,10495,0 +11722,0629,440,593,698659980,10019,0 +11723,NOT,416,430,9236866,10042,0 +11724,kto+ananasowy+pod+wod%C4%85+ma+dom,581,573,699628084,9797,0 +11725,Naboo+4,486,610,699383121,9236,0 +11726,%2A027%2A,610,498,698670524,5861,0 +11727,119,564,412,849064752,10311,0 +11728,Riders+On+The+Storm,589,561,848926293,9581,0 +11729,ADEN,575,424,698588535,8933,0 +11730,KONFA+TO+MARKA%2C+NARKA,397,467,698152377,12154,0 +11731,037+Konfideracja,597,447,698829590,8739,0 +11733,010,597,457,849088515,10019,0 +11734,Crestholm+Channels,530,603,8199417,10019,0 +11735,007,596,547,6160655,10367,0 +11736,017,607,474,8459255,9963,0 +11737,TEBY,504,607,2585846,7060,4 +11738,007,477,607,33900,10254,0 +11739,BBB,567,416,1006847,9976,7 +11740,aaa,477,605,698971484,10008,0 +11741,0010,605,492,699429153,10301,0 +11742,Wioska+barbarzy%C5%84ska,395,532,849030226,10479,0 +11743,A14,599,459,849093742,9656,0 +11744,029,594,451,849088515,10019,0 +11745,Gravity,403,453,698962117,9489,0 +11746,Szlachcic,393,484,6258092,10362,3 +11747,%2A5502%2Aa+Dzie%C5%84+jak+codzie%C5%84,596,556,7973893,10287,0 +11748,Wioska+barbarzy%C5%84ska,397,533,849030226,10822,0 +11749,Winter+is+coming,460,601,699364813,9737,0 +11750,Konfederacja,470,384,848915730,9682,0 +11751,KONFA+TO+MARKA%2C+NARKA,402,460,698152377,10311,0 +11752,%5B320%5D+Chor%C4%85giewka+na+wietrze,589,434,848985692,10397,0 +11753,KONFA+TO+MARKA%2C+NARKA,396,465,698152377,12154,0 +11754,Suppi,427,422,699856962,9975,0 +11755,011+Pola+Pelennoru,604,526,8013349,9043,0 +11756,%5B023%5D+Tappaa+sinut,602,533,848985692,10242,0 +11757,%7E012.,501,609,7139820,10495,0 +11758,PYZA+006+brif123456789,581,574,33900,10125,0 +11759,%2ATam03%2A,523,605,606407,10290,0 +11760,.%3A090%3A.JuanPabloII,542,442,848934935,10485,0 +11761,121,548,401,849064752,10311,0 +11762,050+%C5%81%C4%85koszyn,390,556,699382126,9206,0 +11763,023,596,453,849088515,8793,0 +11764,s%C5%82odziute%C5%84ka+03,603,535,8013349,6789,0 +11765,044+Ferragus,622,529,8323711,9124,0 +11766,025,548,402,849064752,10311,0 +11767,0010,509,527,699432672,10495,0 +11768,z+051,558,591,699342219,10476,0 +11769,085+koniec,407,556,699382126,2741,0 +11770,Piek%C5%82o+to+inni,480,391,848956765,10160,0 +11771,005,542,399,849064752,10311,0 +11772,KONFA+TO+MARKA%2C+NARKA,398,469,698152377,12154,0 +11773,032,543,398,1424656,10160,0 +11774,024,558,407,699761749,10495,0 +11775,%23007,543,601,849001572,9753,0 +11776,Wioska+123Misiek,568,418,849078086,5771,0 +11777,00062,535,605,848915531,7876,0 +11778,Mako+Reactor,523,608,8199417,10559,0 +11779,Wioska+smieli,403,569,9167250,9592,0 +11780,NOT,413,433,9236866,9950,0 +11781,Tatry,507,608,606407,10311,0 +11782,A+011.,434,583,849028088,9805,0 +11783,KIELBA+112,454,595,699342219,10237,0 +11784,0004,606,500,699429153,10301,0 +11785,0095,456,400,699431255,9727,0 +11786,KONFA+TO+MARKA%2C+NARKA,400,459,698152377,10295,0 +11787,D008,511,392,7758085,9925,0 +11788,Wioska+barbarzy%C5%84ska,397,538,849030226,10479,0 +11789,Coruscant+1,499,606,699383121,9797,0 +11790,s%C5%82odziute%C5%84ka+11,602,536,8013349,9626,0 +11791,K44+x026m,434,406,698364331,6778,0 +11792,Avanti%21,379,486,698625834,9956,0 +11793,Wioska+barbarzy%C5%84ska,388,534,849030226,10495,0 +11794,0036,610,516,6510480,9790,0 +11795,%7E093.,491,606,7139820,10495,0 +11796,Piek%C5%82o+to+inni,483,391,848956765,10019,0 +11797,028,591,460,8459255,10495,0 +11798,Ggggg,420,574,225023,10495,0 +11799,%23034,522,604,849001572,9761,0 +11800,KR%C3%93L+PAPI+WIELKI,572,581,698191218,10000,0 +11801,0033,463,396,699431255,10037,0 +11802,zajad,424,577,9167250,7159,0 +11803,004+Luxx,603,532,8013349,9835,0 +11804,0027+Wioska,434,412,3909522,10305,0 +11805,0049,608,471,698416970,10362,0 +11806,Wioska+barbarzy%C5%84ska,413,436,698884287,10285,0 +11807,K44+x034,439,408,698364331,7278,0 +11808,020,583,569,699524362,8125,0 +11809,%7E%7ELataj%C4%85cyHolender%7E%7E,576,495,9174887,10149,0 +11810,057,606,477,699573053,9525,0 +11811,023,543,399,7271812,10495,3 +11812,-%3D001%3D-,567,585,6818593,9835,0 +11813,%7E025.,489,610,7139820,10495,0 +11814,TYLKO+PP,394,547,699364813,3539,0 +11816,Wioska+barbarzy%C5%84ska,413,431,698884287,10285,0 +11817,A20,604,463,849093742,10019,0 +11818,-+051+-,539,604,849018239,10000,0 +11819,Suppi,452,595,699856962,10237,0 +11820,Jaaa,609,439,698635863,10495,0 +11821,Wioska,393,506,849084005,10178,0 +11822,0003,466,605,33900,8939,0 +11823,0006,606,494,699429153,10301,0 +11824,0014.+A+-,610,510,7125212,10160,0 +11825,Kentin+ufam+Tobie,434,398,699783765,10000,0 +11826,%23017,486,609,849001572,9735,0 +11827,Wioska+%28011%29,603,542,698232227,9344,0 +11828,KR%C3%93L+PAPI+WIELKI,601,540,698191218,10000,0 +11829,FAKE+OR+OFF,453,401,698231772,9814,0 +11830,NOT,413,437,9236866,10042,0 +11831,032+Louisiana,607,472,7092442,10495,0 +11832,NOT,415,434,9236866,10042,0 +11833,Wioska+barbarzy%C5%84ska,604,521,698845189,7985,0 +11834,%7E018.,501,608,7139820,10495,0 +11835,Gravity,403,450,698962117,9489,0 +11836,NOT,418,425,9236866,10042,0 +11837,%2ATam01%2A,525,606,606407,10294,0 +11838,Winter+is+coming,460,595,699364813,8962,0 +11839,Guardian,499,389,7758085,10094,0 +11840,0035+Wioska+Sjt,430,418,3909522,10155,0 +11841,020.,600,536,8900955,5967,0 +11842,Suppi,423,422,699856962,9891,0 +11843,%5B356%5D+Chor%C4%85giewka+na+wietrze,594,442,848985692,10072,5 +11844,%23033,522,605,849001572,9737,0 +11845,003,428,580,849084740,7387,0 +11846,001+Wioska+Best+Wiedzmin,606,512,6409472,8114,0 +11847,Gravity,403,456,698962117,9494,0 +11848,%40%40%40%40%40%40%40%40,411,433,7462660,10122,0 +11849,Bagdad,474,395,8847546,10178,0 +11850,xhav,394,471,698807570,9174,0 +11851,KR%C3%93L+PAPI+WIELKI,579,578,698191218,10000,0 +11852,Bucks+x+Kamiiiru,455,596,848955783,10971,0 +11853,Beginners+Hall,467,606,8199417,10000,0 +11854,Wioska+barbarzy%C5%84ska,413,432,698884287,10285,0 +11855,007,554,405,7271812,10495,0 +11856,020.xxx,477,608,8612358,9989,0 +11857,013,544,602,699189792,9744,0 +11858,0004,467,605,33900,9313,0 +11859,B11,408,556,698971484,10008,0 +11860,0644,441,592,698659980,10019,7 +11861,006,552,403,699761749,10495,0 +11862,W+006,433,589,849084740,6295,0 +11863,PYZA+005+Zoonk,582,570,33900,9027,1 +11864,Yaima,591,564,848926293,9580,0 +11865,005,421,574,9167250,9352,0 +11866,Tank+002,393,515,698290577,10348,0 +11867,EKG+Chia+%2B+R,470,602,33900,10336,0 +11868,Zasiedmiog%C3%B3rogr%C3%B3d,529,427,699433558,10311,0 +11869,0005,602,540,477415,10495,0 +11870,177,578,423,849064752,10311,0 +11871,0092,463,399,699431255,9772,0 +11872,%2302.,527,468,848967710,10595,0 +11873,-+016+-,550,600,849018239,10000,0 +11874,%5BA%5D_%5B017%5D+Dejv.oldplyr,393,490,699380607,10495,0 +11875,Jaaa,568,585,698635863,10495,0 +11876,019,610,499,699573053,10495,0 +11877,011,608,476,8459255,10203,0 +11878,008,601,545,6160655,10560,0 +11879,FAKE+OR+OFF,439,407,698231772,9831,0 +11880,Wioska+barbarzy%C5%84ska,392,522,849030226,10952,0 +11881,0005,504,500,698599365,10019,0 +11882,Peska,413,562,699443920,9761,0 +11883,W+003,434,590,849084740,9251,0 +11884,Erem,395,527,1804724,10161,0 +11886,010,610,505,699573053,10495,0 +11887,Wioska+barbarzy%C5%84ska,399,462,699523631,10495,0 +11888,026,562,410,699761749,10495,0 +11889,KONFA+TO+MARKA%2C+NARKA,400,463,698152377,10290,0 +11890,A06,601,463,849093742,10019,0 +11891,So%C5%82tys+Twojej+Wsi,439,393,849027025,9619,0 +11892,A046,459,399,8740199,10232,0 +11893,Kentin+ufam+Tobie,394,483,699783765,10000,0 +11894,0643,440,589,698659980,10019,0 +11895,Nope,393,479,6258092,10160,0 +11896,Wioska+barbarzy%C5%84ska,398,536,849030226,10484,0 +11897,50-4+CYTADELA,584,432,699368887,7089,0 +11898,KONFA+TO+MARKA%2C+NARKA,401,455,698152377,10311,0 +11899,080,553,394,849064752,10311,0 +11900,Szlachcic,396,475,6258092,10160,0 +11901,KR%C3%93L+PAPI+WIELKI,585,572,698191218,10000,0 +11902,Knowhere,392,512,699723284,10452,0 +11903,Wioska+barbarzy%C5%84ska,610,494,699573053,10365,0 +11904,015.,599,544,8900955,5107,0 +11905,D0002,438,569,8841266,9633,0 +11906,KR%C3%93L+PAPI+WIELKI,581,576,698191218,10000,0 +11907,Osada+koczownik%C3%B3w,396,533,849030226,10954,9 +11908,Gattacka,533,394,699298370,9761,0 +11909,K44+x008,438,411,698364331,7516,0 +11910,0006,598,546,477415,10495,1 +11911,Napewno+to+nie+jest+off,497,392,848912265,10495,0 +11912,KONFA+TO+MARKA%2C+NARKA,400,461,698152377,10311,0 +11913,BBB,563,412,1006847,10116,0 +11914,01.+Pollin,395,467,699523631,6578,0 +11915,Wioska+004,598,581,848971079,9761,0 +11916,021,490,390,698739350,9761,0 +11917,009,605,522,698999105,10311,3 +11918,.achim.,536,396,6936607,10311,0 +11919,FAKE+OR+OFF,454,402,698231772,9823,0 +11920,001,603,464,8459255,10362,0 +11921,NOT,415,436,9236866,10042,0 +11922,Szlachcic,455,414,698388578,10237,0 +11923,Collapsed+Expressway+-+Old+Bypas,527,607,8199417,10559,0 +11924,Gravity,404,443,698962117,9506,0 +11925,Wioska+barbarzy%C5%84ska,568,584,6818593,9835,0 +11926,KIELBA+030,454,578,699342219,10247,0 +11927,160,572,421,849064752,10311,0 +11928,A003,445,404,8740199,10223,0 +11929,.achim.,526,395,6936607,4302,0 +11930,%C5%9Amieszki,529,607,3454753,9026,1 +11931,0003.+A+-+Uru+baen,607,525,7125212,9761,0 +11932,moneciarnia2,413,439,698884287,10285,0 +11933,NOT%3F,403,553,9236866,7386,0 +11934,Suppi,426,427,699856962,9882,0 +11935,%5B0069%5D,455,398,8630972,10495,0 +11936,Knowhere,390,497,699723284,10484,0 +11937,005.+Floki,588,566,699373599,9887,0 +11938,Wioska+KanzerSuze,409,439,7462660,9902,0 +11939,009+New+Orleans,426,417,9291984,10475,0 +11940,002+Saliva+Grey+-+Gimme+a+Sec.,407,559,9167250,9388,0 +11941,-+028+-,542,601,849018239,10000,0 +11942,FAKE+OR+OFF,453,400,698231772,9833,0 +11943,KONFA+TO+MARKA%2C+NARKA,392,474,698152377,10311,0 +11944,.%3A108%3A.+Niangmen,499,393,848934935,9976,0 +11945,%5B370%5D+Chor%C4%85giewka+na+wietrze,586,433,848985692,10068,0 +11947,0348,449,598,698659980,10019,0 +11948,0000003%23,430,569,849089881,10160,0 +11949,026,595,446,699722599,10486,0 +11950,007,470,501,699781762,10325,0 +11951,040,605,470,699573053,10495,0 +11952,Napewno+to+nie+jest+off,496,390,848912265,10495,0 +11953,KR%C3%93L+PAPI+WIELKI,578,579,698191218,9949,0 +11954,Yogi,537,604,2808172,6568,0 +11955,113,566,410,849064752,10311,0 +11956,DOM+12+%2A,561,412,849064614,9398,0 +11957,Tank+004,393,511,698290577,10343,0 +11959,Altissia,528,606,8199417,10490,0 +11960,KR%C3%93L+PAPI+WIELKI,571,585,698191218,10000,0 +11961,Brat447,391,516,699262350,10476,0 +11962,.achim.,539,401,6936607,10311,0 +11963,0006+Wioskaaa,503,499,698599365,10019,0 +11964,046,606,476,699573053,10495,0 +11965,013+Fiu+fiu,607,528,9238175,10284,0 +11966,FAKE+OR+OFF,452,401,698231772,9830,0 +11967,K44+x009,437,409,698364331,8135,0 +11968,Mniejsze+z%C5%82o+0006,374,477,699794765,9844,0 +11969,%23008,547,599,849001572,9546,0 +11970,%23004,542,600,849001572,9365,7 +11971,Zeta+Reticuli+S,417,425,699323302,10997,0 +11972,W.181%2F03,606,536,2999957,10242,0 +11973,Sparta_75,486,584,2585846,7338,0 +11974,Mori,596,551,848926293,9517,0 +11975,002,453,598,699364813,10336,8 +11976,0018,607,502,699429153,10301,0 +11977,NOT,419,431,9236866,10042,0 +11978,Szlachcic,391,479,6258092,10083,0 +11979,Wioska,391,509,849084005,10178,0 +11981,Coruscant+4,496,611,699383121,9797,0 +11982,barba,463,601,699364813,10311,0 +11983,005+Connecticut,605,475,7092442,10495,0 +11984,027.xxx,479,606,8612358,10075,0 +11985,W+samym+%C5%9Brodku+roju,571,418,848985692,10311,0 +11986,z+023,554,595,699342219,10478,0 +11987,Piek%C5%82o+to+inni,481,391,848956765,10160,9 +11988,00071+Wioska,426,414,3909522,10216,0 +11989,Wioska+barbarzy%C5%84ska,595,559,8742874,8165,0 +11990,Piek%C5%82o+to+inni,483,390,848956765,10019,0 +11991,Piek%C5%82o+to+inni,491,393,848956765,10019,0 +11992,%23034,459,604,699605333,10393,0 +11993,%7E023.,492,608,7139820,10495,0 +11994,BUNKIER,601,549,848899726,4081,0 +11995,Wioska+barbarzy%C5%84ska+1,506,485,698349125,8684,0 +11996,227+Christchurch,535,445,1497168,9761,0 +11997,KONFA+TO+MARKA%2C+NARKA,399,466,698152377,12154,0 +11998,0019+K,436,411,3909522,10152,0 +11999,D013,508,389,7758085,9925,0 +12000,%2A010%2A,610,501,698670524,8640,0 +12001,Corneo+Colosseum,531,605,8199417,10559,0 +12002,0019+Japan,435,411,3909522,10278,0 +12003,Wioska+barbarzy%C5%84ska,425,419,699660539,9710,0 +12004,096+MEHEHE+m,501,611,6116940,10019,0 +12005,141+izka1611,387,551,699382126,9348,0 +12006,Osada+koczownik%C3%B3w,410,434,7462660,10068,5 +12007,127,546,406,849064752,10311,0 +12008,Szlachcic,461,400,698388578,10237,0 +12009,%5B010%5D+do+MARV+%21%21,608,522,848985692,10216,5 +12010,Jaaa,569,585,698635863,10474,0 +12011,Wioska+barbarzy%C5%84ska,398,532,849030226,10963,0 +12012,Gravity,401,450,698962117,9489,0 +12013,026.+Ogr%C3%B3d+Warzywny,528,394,7758085,9925,0 +12014,0058,605,508,6510480,10128,0 +12015,CALL+1010,523,609,699784536,10311,0 +12016,yogi,530,569,2808172,10019,0 +12017,50-3+SAMOSIERRA+AT,584,428,699368887,8348,0 +12018,Lord+Arsey+KING,570,585,848956513,10285,3 +12019,s181eo11,397,448,393668,9902,0 +12020,008,551,404,1424656,9825,0 +12021,A16,601,461,849093742,10019,0 +12022,E003,514,391,7758085,9925,0 +12023,012+SINGED+NA+ROBOCIE,596,451,698829590,10005,0 +12024,-+017+-,550,598,849018239,10000,0 +12025,%5BA%5D_%5B009%5D+Dejv.oldplyr,393,486,699380607,10495,0 +12026,028.,594,557,8900955,9547,0 +12027,019,598,543,6160655,10699,0 +12028,005+Wioska+Lecha,609,474,8337151,10083,0 +12029,%5B236%5D+WEST,597,451,848985692,10057,0 +12030,Wioska+barbarzy%C5%84ska,581,430,699368887,10135,0 +12031,023,400,544,699425709,9244,0 +12032,CALL+974,555,585,699784536,10311,0 +12033,Szlachcic,505,468,699098531,9637,0 +12034,DOM+11,565,409,849064614,9428,0 +12035,MassXxl,611,510,699379895,10495,0 +12036,barba,462,601,699364813,10311,5 +12037,Myk+i+do+kieszonki,373,502,9319058,9820,0 +12038,041,612,500,699573053,10495,0 +12039,PRO8L3M,389,515,7491093,10311,0 +12040,-+025+-,542,599,849018239,10000,0 +12041,Jaaa,569,582,698635863,10218,0 +12042,Suppi,423,423,699856962,9883,0 +12043,%7E072.,489,607,7139820,10495,0 +12044,Yogi,538,604,2808172,10019,0 +12045,-+056+-,553,596,849018239,10000,0 +12046,010,603,544,699413040,9860,0 +12047,D007,509,393,7758085,9925,0 +12048,Gravity,407,444,698962117,9491,0 +12049,KR%C3%93L+PAPI+WIELKI,575,580,698191218,10000,0 +12050,018,506,377,849010255,9497,0 +12051,092,548,404,849064752,10311,0 +12053,024,489,389,698739350,9761,0 +12054,Bagdad,473,395,8847546,10068,0 +12055,058,606,482,699573053,10495,0 +12056,Conference+Rooms,529,608,8199417,10495,0 +12057,191,572,415,849064752,10311,0 +12058,ADEN,590,435,698588535,10254,0 +12059,a+mo%C5%BCe+off+%3F+%3A%29,578,580,698768565,9024,0 +12060,NOT%3F,404,551,9236866,10042,0 +12061,0101,460,398,699431255,9746,0 +12062,Najlepszy+s%C4%85siad+013,596,446,699756210,10273,0 +12063,-+019+-,541,600,849018239,10000,0 +12064,021+Mountain+Dew,597,450,698829590,10019,0 +12065,015,559,405,7271812,10495,0 +12066,039,543,402,849064752,10311,0 +12067,a+mo%C5%BCe+off+%3F+%3A%29,582,571,698768565,9559,0 +12068,Osada+koczownik%C3%B3w,500,612,699698253,9629,6 +12069,%5B358%5D+Chor%C4%85giewka+na+wietrze,594,439,848985692,10201,0 +12070,Twierdza+010,419,571,849084740,7973,0 +12071,0002.+A+-+Tronjheim,607,527,7125212,9761,0 +12072,Wioska+barbarzy%C5%84ska,398,461,699523631,10478,0 +12073,0012,463,605,33900,10095,0 +12074,Piek%C5%82o+to+inni,483,394,848956765,10083,0 +12075,amator,526,614,848915531,12154,0 +12076,0010.+A+-+Ceunon,605,521,7125212,10469,0 +12077,%2A003%2A,614,506,698670524,8501,0 +12078,Bucks+x+Kamiiiru,454,602,848955783,10544,0 +12080,%7E008.,502,609,7139820,10495,2 +12081,PYRLANDIA+021+s,568,589,33900,10265,0 +12082,015,609,484,699573053,10495,0 +12083,Bagdad,472,393,8847546,10654,0 +12084,008,544,603,699189792,9744,0 +12085,z+019,555,598,699342219,10476,2 +12086,004,427,579,849084740,5306,0 +12087,FAKE+OR+OFF,455,403,698231772,9835,0 +12088,040+-+pi%C4%99knie,419,576,225023,10495,0 +12089,011+Minneapolis,427,415,9291984,10479,0 +12090,012.+Porunn,587,563,699373599,9983,0 +12091,Gravity,405,451,698962117,9499,0 +12092,012,409,513,699851427,9974,0 +12093,032,577,419,849063849,10636,0 +12094,E004,516,390,7758085,9925,0 +12095,TAG,621,497,699795378,10393,0 +12096,0011,465,607,33900,9977,0 +12097,009,602,462,8459255,10362,0 +12098,0013,470,606,33900,9227,0 +12099,kto+ananasowy+pod+wod%C4%85+ma+dom,582,576,699628084,9797,0 +12100,022+Znamy+si%C4%99%3F,597,448,698829590,10635,0 +12102,Teby_04,503,612,2585846,9638,0 +12104,Dusk+Till+Dawn,592,563,848926293,9523,0 +12105,Jaaa,590,559,698635863,10495,0 +12106,D021,574,417,699761749,6305,0 +12107,.achim.,519,395,6936607,10311,0 +12108,z+018,558,590,699342219,10478,0 +12109,Wioska+barbarzy%C5%84ska,393,524,849030226,10951,0 +12110,Napewno+to+nie+jest+off,496,388,848912265,10495,0 +12111,016,608,482,699573053,10495,0 +12112,%21%2A303%2A,507,610,606407,10311,0 +12113,South+K45,573,420,699146580,10042,0 +12114,Wioska+Michal+CR7,523,443,699855647,2842,0 +12115,004+619,583,570,8742874,9720,5 +12117,Balouve+Mines,528,607,8199417,10495,0 +12118,014+d%C5%82ugo+jeszcze%3F,608,527,9238175,10301,0 +12119,Jaaa,576,582,698635863,10479,0 +12120,Kentin+ufam+Tobie,390,481,699783765,10000,0 +12121,Wioska+barbarzy%C5%84ska,427,438,698884287,10285,0 +12122,NWO,392,519,849030226,11550,0 +12123,%5B380%5D+Chor%C4%85giewka+na+wietrze,586,430,848985692,10201,0 +12124,Bagdad,467,395,8847546,10654,0 +12125,%5B317%5D+Chor%C4%85giewka+na+wietrze,591,435,848985692,10403,0 +12126,NOT%3F,404,552,9236866,5915,0 +12127,Honeybee+Inn,526,604,8199417,10147,0 +12128,010+-+Wioska,415,590,225023,10287,0 +12129,Wioska+barbarzy%C5%84ska,565,590,6818593,9835,0 +12130,%5B241%5D+WEST,600,456,848985692,10400,0 +12132,NWO,395,535,849030226,10728,0 +12133,EKG+M20,482,607,33900,10033,0 +12134,Bagdad,476,392,8847546,10654,0 +12135,Wioska+barbarzy%C5%84ska,606,518,698845189,5358,0 +12136,PYZA+004+King+1,582,572,33900,10429,0 +12137,D009,508,392,7758085,9861,0 +12138,Wioska+X2,392,467,699523631,9987,0 +12139,0063,609,509,6510480,9807,0 +12140,kto+ananasowy+pod+wod%C4%85+ma+dom,585,568,699628084,9797,0 +12141,.achim.,537,396,6936607,10311,0 +12143,00351+W+3+DNI,428,418,3909522,10075,0 +12145,monetki+A,580,576,698768565,9556,0 +12146,Czyli+mo%C5%BCna+Ciebie+zaskoczyc,581,427,699368887,7952,0 +12147,023+Baraki,604,462,8459255,10077,0 +12148,A05,603,463,849093742,10019,0 +12149,Part+IV,533,382,698350371,10495,0 +12150,018,398,539,699856962,9559,0 +12151,45.+Wioska+45,427,584,849091769,8912,0 +12152,19+im+B%C5%82ochina,578,421,849037469,9809,0 +12154,026,492,388,698739350,9761,0 +12155,Jaaa,577,575,698635863,10495,0 +12156,001+Naura,405,461,698807570,10054,0 +12157,Wioska+barbarzy%C5%84ska,396,538,849030226,9781,0 +12158,Suppi,454,597,699856962,10239,5 +12159,164+Ale+mnie+g%C5%82%C3%B3wka+boli,386,547,699382126,10636,0 +12160,Wola+3,478,394,849093155,7910,0 +12161,A0036,391,474,8841266,10252,0 +12162,Knowhere,388,500,699723284,10542,9 +12163,090+OCE%C5%83+SAM+KTO+DAJE+LAK,397,557,699382126,6503,0 +12165,Knowhere,392,492,699723284,10282,0 +12166,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,438,609,1434753,10068,0 +12167,%5B321%5D+Chor%C4%85giewka+na+wietrze+PAA,591,436,848985692,10411,0 +12168,NOT%21%21,471,604,9236866,7686,0 +12169,%5B231%5D+WEST,602,454,848985692,10403,0 +12170,KR%C3%93L+PAPI+WIELKI,576,580,698191218,10000,0 +12171,079+-+Twierdza+002,418,571,225023,10495,0 +12172,001+Alabama,609,485,7092442,10495,0 +12173,A013,448,404,8740199,10216,0 +12174,%5B359%5D+Chor%C4%85giewka+na+wietrze,594,440,848985692,10093,0 +12175,003,603,456,849088515,10019,0 +12176,Puaaa,409,562,699443920,9761,0 +12177,038,537,607,699189792,9745,0 +12179,Zeta+Reticuli+S,415,426,699323302,11188,0 +12180,Wioska+barbarzy%C5%84ska,412,436,698884287,10285,0 +12181,010,539,395,849064752,10311,0 +12182,NOT,417,427,9236866,10068,0 +12184,C+016+Zederman,418,575,849084740,8642,0 +12185,006,557,408,7271812,10495,0 +12186,Wioska+C.a.,552,402,848954236,3454,0 +12187,047,610,495,699573053,10495,0 +12188,.achim.,538,397,6936607,10311,0 +12189,Barba+3,432,411,699796330,9887,5 +12190,Wioska+NTSL,395,462,699523631,3407,0 +12191,0018+Wioska,434,409,3909522,10481,0 +12192,Immigrant+Song,588,563,848926293,9485,0 +12193,Piek%C5%82o+to+inni,486,388,848956765,10160,0 +12194,Run,591,565,848926293,9318,0 +12195,Wioska+barbarzy%C5%84ska,595,558,8742874,9586,0 +12196,035,559,404,1424656,8352,0 +12197,Gravity,405,448,698962117,9505,0 +12198,122+s005,400,552,699382126,10838,0 +12199,009,608,531,699413040,9860,0 +12200,PRO8L3M,450,493,7491093,9021,0 +12201,Suppi,424,421,699856962,9974,0 +12202,034,543,401,7271812,10495,0 +12203,003,409,434,699788305,10019,0 +12204,Piek%C5%82o+to+inni,480,389,848956765,10160,0 +12205,%2A015%2A,609,498,698670524,8484,0 +12206,Osada+koczownik%C3%B3w,397,536,849030226,10714,2 +12207,Szlachcic,389,486,6258092,10083,0 +12208,Wioska+barbarzy%C5%84ska,388,515,849030226,10475,0 +12209,010,604,467,8459255,9985,0 +12210,%5B330%5D+Chor%C4%85giewka+na+wietrze,584,426,848985692,10301,0 +12211,koczownicza+02,396,531,1804724,10109,6 +12212,0108,443,405,699431255,9729,0 +12213,Land+of+Fire,399,448,698962117,9496,0 +12214,Bagdad,470,392,8847546,10654,9 +12215,Radek,395,471,699523631,10495,0 +12216,z+017,559,591,699342219,10475,0 +12217,A011,447,404,8740199,10217,0 +12218,Czersk,416,571,698769107,9835,0 +12219,013.xxx,483,611,8612358,9909,0 +12220,Szlachcic,389,488,6258092,10160,0 +12221,Kiedy%C5%9B+Wielki+Wojownik,396,458,8632462,9275,0 +12222,059,611,500,699573053,10495,0 +12223,-+018+-,549,597,849018239,10000,0 +12224,Wioska+barbarzy%C5%84ska,582,427,699368887,9664,0 +12225,Wioska+%28019%29,598,512,698232227,9434,0 +12226,031+Colorado,606,472,7092442,10495,0 +12227,020+-+Yaxchilan%2A%2A%2A,435,590,225023,10495,0 +12228,Wioska+barbarzy%C5%84ska,397,534,849030226,10700,0 +12229,%5B301%5D+West,599,453,848985692,10273,0 +12230,ADEN,588,430,698588535,10223,0 +12231,Bagdad,472,394,8847546,10787,0 +12232,%23003,544,600,849001572,9717,0 +12234,KR%C3%93L+PAPI+WIELKI,570,582,698191218,10000,0 +12235,Wioska20,620,476,848935020,9579,0 +12236,032,543,400,7271812,10495,0 +12237,002+New+York+City,425,417,9291984,10495,0 +12238,Wioska+barbarzy%C5%84ska,473,607,7976264,8427,0 +12239,s%C5%82odziute%C5%84ka+10,605,536,8013349,10059,0 +12240,002,427,580,849084740,10224,0 +12241,Brat447,392,514,699262350,10476,3 +12243,0023+Wioska,430,412,3909522,9913,0 +12244,024.+Ogr%C3%B3d+Warzywny,527,394,7758085,9925,0 +12245,0104,459,398,699431255,9824,0 +12246,004,600,546,8742874,9724,0 +12248,089+MEHEHE+3,491,608,6116940,10019,0 +12249,%5B332%5D+Chor%C4%85giewka+na+wietrze,585,425,848985692,10391,0 +12250,-+011+-,551,600,849018239,10000,0 +12251,006.+Isengard,485,612,699494488,10231,0 +12252,%23032+A,451,601,9037756,10019,0 +12253,Kaktus,375,497,699265922,10019,0 +12254,Coruscant+5,495,612,699383121,9835,0 +12255,1.Milwaukee,550,599,698215322,9973,0 +12256,Bocianikson015,600,545,7528491,9175,0 +12258,013.+G%C3%B3ry+Mgliste,485,611,699494488,10484,0 +12259,s%C5%82odziute%C5%84ka+02,602,535,8013349,6189,0 +12260,NOT,418,430,9236866,10042,0 +12261,042,609,476,699573053,10094,0 +12262,x10,410,436,698884287,10285,0 +12263,%5B364%5D+Chor%C4%85giewka+na+wietrze,594,441,848985692,10192,0 +12264,016.+Torstein,589,569,699373599,10030,0 +12265,.achim.,524,393,6936607,8990,0 +12266,0646,437,594,698659980,10495,0 +12267,085+MEHEHE+5,488,608,6116940,10019,0 +12268,Teby_05,502,613,2585846,9638,0 +12269,barba,463,602,699364813,10311,0 +12270,016+-+Legenda%2A%2A%2A,441,581,225023,10495,0 +12271,%5B232%5D+WEST,601,453,848985692,10403,0 +12273,Desperato%2A,393,526,1804724,9873,0 +12274,016,495,387,698739350,9761,0 +12275,Lecymy+DUR,445,401,6169408,8617,0 +12276,C.002,444,598,849088243,10208,0 +12277,Ccccc,419,578,225023,10495,0 +12278,002,547,601,699189792,9742,0 +12279,%5B011%5D+MarV+Hondlorz,608,523,848985692,10292,9 +12280,Bagdad,475,392,8847546,10654,0 +12281,00023Dalaran,423,576,9167250,8993,0 +12282,194,568,414,849064752,9127,0 +12283,.achim.,528,391,6936607,10311,0 +12284,20029,516,533,848915531,10321,0 +12285,0007,465,606,33900,9977,0 +12286,Najlepszy+s%C4%85siad+006,592,441,699756210,10336,0 +12287,031+Santorini,611,516,8323711,9530,0 +12288,Wioska6,514,595,8369778,10291,0 +12289,Knowhere,387,511,699723284,10374,0 +12290,0625,439,590,698659980,10019,0 +12291,Gravity,404,441,698962117,9495,0 +12292,001,561,405,849064752,10311,0 +12293,008,606,535,699413040,9860,0 +12294,%5B379%5D+Chor%C4%85giewka+na+wietrze,587,432,848985692,10411,0 +12295,020,605,469,8459255,9907,0 +12296,-+089+-,549,607,849018239,10000,0 +12297,Lord+Arsey+KING,578,582,848956513,10285,0 +12298,z+013,560,595,699342219,10475,0 +12299,Jaaa,579,597,698635863,10478,0 +12301,Najlepszy+s%C4%85siad+003,597,443,699756210,9750,0 +12302,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,470,607,8201460,10237,0 +12303,Urojone+Elizjum,455,603,7249451,10237,0 +12304,010.+Aslaug,588,567,699373599,10030,0 +12305,Kiedy%C5%9B+Wielki+Wojownik,399,458,8632462,9976,0 +12306,%5B013+%5DPa+O,607,539,848985692,10284,3 +12307,.achim.,518,394,6936607,10311,0 +12308,006,425,580,849084740,10679,0 +12309,026+Cithri,610,512,8337151,10160,0 +12310,003+Los+Angeles,426,418,9291984,10475,1 +12311,NWO,392,524,849030226,10957,0 +12312,025+wje%C5%BCd%C5%BCamZczo%C5%82gami,608,514,8323711,10495,0 +12313,Bagdad,472,391,8847546,9835,0 +12314,Jaaa,583,553,698635863,10487,0 +12315,%23028+M,445,598,9037756,10311,0 +12316,009,602,545,6160655,10564,0 +12317,Mrocza,422,580,698769107,8716,0 +12318,NOT,414,424,9236866,10042,0 +12319,007+Te+pandy+takie+nie+za+mocne,504,388,7758085,9861,0 +12320,005,610,534,699413040,9860,0 +12321,Wioska+barbarzy%C5%84ska,422,420,699660539,9925,0 +12322,0003+MzM,603,562,698416970,9630,0 +12323,%5B310%5D+Chor%C4%85giewka+na+wietrze,590,434,848985692,10394,0 +12324,EKG+.%3A%3A.+Siwyy8848%2F1,496,616,33900,10495,0 +12325,0084,442,402,699431255,9835,0 +12327,%5B323%5D+Chor%C4%85giewka+na+wietrze,590,439,848985692,10400,0 +12328,002,472,507,1536625,12154,0 +12329,Wioska+barbarzy%C5%84ska,424,418,699660539,9913,0 +12330,A16,556,452,699368887,10470,0 +12331,Wioska+barbarzy%C5%84ska,595,557,8742874,9528,0 +12332,Hhhhh,420,573,225023,10495,0 +12333,ok.,389,523,849030226,10487,0 +12334,015,605,466,8459255,10186,0 +12335,025,558,405,699761749,10495,0 +12336,Mniejsze+z%C5%82o+0012,391,469,699794765,9744,0 +12337,KIELBA+086,461,601,699342219,10444,0 +12338,C+012+Niepolomice,417,573,849084740,6912,0 +12339,KONFA+TO+MARKA%2C+NARKA,403,457,698152377,10336,0 +12340,018,490,387,698739350,9902,0 +12341,.achim.,529,392,6936607,10311,9 +12342,South+K45,572,416,699146580,10042,0 +12343,Bier+sie+stad+ino+a+wartko,389,451,699711723,10019,0 +12344,1818,434,587,849028088,9763,0 +12346,Pemberley,407,561,699443920,11094,0 +12347,017.+Astrid,587,569,699373599,10030,0 +12348,0206,447,601,698659980,10252,0 +12349,PYRLANDIA+028+ni+pod+ci,566,591,33900,10351,0 +12350,0024+W,431,412,3909522,10075,0 +12351,131+B04,402,554,699382126,10559,0 +12352,Jaaa,589,562,698635863,10478,0 +12353,007+Lufa+na+le%C5%BC%C4%85co,608,486,699272633,10495,0 +12354,096,549,403,849064752,10311,0 +12355,Wioska+barbarzy%C5%84ska,397,547,699364813,3494,0 +12356,079,609,492,699573053,10490,0 +12357,013,549,401,1424656,9899,0 +12358,Piek%C5%82o+to+inni,485,389,848956765,10160,0 +12359,010,553,402,699761749,10495,0 +12360,023,398,537,699856962,9562,0 +12362,092+MEHEHE,493,608,6116940,9966,0 +12363,0020+Wioska,433,409,3909522,10160,7 +12365,138+B05,404,553,699382126,10371,0 +12366,0029+Wioska,433,414,3909522,10078,0 +12367,010+Nie+potwierdzam,598,446,698829590,5253,0 +12368,NOT%3F,404,550,9236866,10042,0 +12369,ADEN,587,431,698588535,10311,3 +12370,Wioska+JemekJankowski,391,471,699523631,10478,0 +12371,%5B244%5D+West,600,452,848985692,5812,0 +12372,asasas,398,540,699856962,9871,0 +12373,Wielki+mur+2,478,392,849093155,8734,0 +12374,Zeta+Reticuli+S,415,425,699323302,11417,0 +12375,Kentin+ufam+Tobie,436,408,699783765,10000,0 +12377,009,602,459,849088515,10019,0 +12378,037,501,610,699878511,10160,0 +12379,A0035,390,475,8841266,10252,0 +12381,K44+x013,432,410,698364331,9610,0 +12382,Wioska+barbarzy%C5%84ska,394,540,849030226,9824,0 +12383,bucks+x+kamiiiru,421,423,848955783,10971,0 +12384,011,462,604,699364813,10362,0 +12385,0645,439,594,698659980,10019,0 +12386,%23+Szymi+6,394,539,699425709,9873,0 +12388,C001,520,388,7758085,9925,0 +12389,FAKE+OR+OFF,443,403,698231772,9821,0 +12390,006.+Rollo,588,565,699373599,10030,0 +12391,020+Notfair+to+kox,599,446,698829590,10019,0 +12392,Wioska+barbarzy%C5%84ska,598,547,8742874,9721,0 +12393,137+B14,403,559,699382126,8016,0 +12394,Najlepszy+s%C4%85siad+004,597,444,699756210,10273,0 +12395,043,608,487,699573053,10478,0 +12396,Kentin+ufam+Tobie,436,407,699783765,10000,0 +12397,175,543,380,849064752,8927,0 +12398,NOT%3F,401,547,9236866,10042,0 +12399,KONFA+TO+MARKA%2C+NARKA,396,463,698152377,10311,0 +12400,002,551,400,1424656,9804,3 +12401,Brat447,391,517,699262350,10495,0 +12402,Piek%C5%82o+to+inni,487,390,848956765,10160,0 +12403,089,574,414,849064752,10311,1 +12404,078+-+Twierdza+001,418,572,225023,9489,0 +12405,kto+ananasowy+pod+wod%C4%85+ma+dom,580,573,699628084,9797,0 +12406,Lord+Arsey+KING,579,581,848956513,10285,0 +12407,Knowhere,391,514,699723284,10452,0 +12408,Knowhere,390,492,699723284,10484,0 +12409,Wioska+Bleeklos,608,533,2999957,10242,0 +12410,002+%28LukaszWspanialy%29,413,572,698769107,9835,0 +12411,Wioska+barbarzy%C5%84ska,398,451,698807570,10047,0 +12413,Gattacka,539,394,699298370,8913,0 +12414,Wioska+marekkkzzz665,388,480,699523631,10495,0 +12415,%7E011.,499,613,7139820,10495,0 +12416,x02,408,435,698884287,10285,0 +12417,078,414,512,699851427,10129,0 +12418,024.xxx,481,609,8612358,10002,0 +12419,002buuuuu,408,564,9167250,9594,0 +12420,A006,514,387,7758085,9925,0 +12421,Wioska,388,505,849084005,10178,0 +12422,.achim.,524,399,6936607,10311,0 +12423,136+S013,405,556,699382126,7787,0 +12424,%5B233%5D+WEST,600,451,848985692,10063,0 +12425,005+Helmowy+Jar,609,528,8013349,9935,0 +12426,KIELBA+085,454,601,699342219,10495,0 +12427,017,540,605,699189792,9740,0 +12428,0006,535,608,848915531,11130,0 +12429,032+Kreta,613,512,8323711,9669,0 +12430,0026+utache,427,413,3909522,9909,0 +12431,Brat447,387,513,699262350,10478,0 +12432,003,509,611,8925624,8569,0 +12434,Majin+Buu+009,441,565,699054373,8156,0 +12435,Wioska+barbarzy%C5%84ska,566,587,6818593,9835,0 +12436,%5B0088%5D,449,399,8630972,10495,0 +12437,003a+barba,428,583,9167250,9277,0 +12438,%5B306%5D+Chor%C4%85giewka+na+wietrze,590,431,848985692,10167,0 +12439,Z+barba+003,423,577,225023,10495,0 +12440,NOT,415,429,9236866,9950,0 +12441,026,545,396,849064752,10311,1 +12442,Mniejsze+z%C5%82o+0009,392,468,699794765,9847,0 +12443,%2A018%2A,609,512,698670524,8447,0 +12444,ZABAWA+-2-+Waldemar+Wielki,407,440,698884287,10285,0 +12445,yogi,537,606,2808172,10019,0 +12446,060,610,503,699573053,10495,0 +12447,0007+N,425,414,3909522,10083,0 +12448,%5B237%5D+WEST,599,452,848985692,10054,0 +12449,Wioska+barbarzy%C5%84ska,413,430,698884287,10285,0 +12450,CALL+1006,521,608,699784536,10178,0 +12451,0011+F,430,408,3909522,10160,0 +12452,009,613,499,849006412,9677,0 +12453,D01,621,479,849093742,10019,0 +12454,0016,612,520,6510480,10317,0 +12455,005+San+Francisco,427,416,9291984,10479,0 +12456,0003,601,548,477415,10495,0 +12457,Wioska,388,518,849084005,10178,0 +12458,KR%C3%93L+PAPI+WIELKI,582,574,698191218,9899,0 +12459,032+-+GKS,425,583,225023,10495,8 +12460,007a,422,579,9167250,9175,0 +12461,.achim.,525,391,6936607,10311,0 +12462,%5BA%5D_%5B016%5D+Dejv.oldplyr,392,490,699380607,10495,0 +12463,D017,505,388,7758085,9925,0 +12464,A.002,602,551,9188016,10000,8 +12465,Wioska+pchelka75,594,437,583500,3440,0 +12466,.achim.,526,393,6936607,3974,0 +12467,0232,451,598,698659980,7325,0 +12468,Mzm14,610,530,7142659,10252,0 +12469,%23002,543,602,849001572,9761,0 +12470,A008,448,403,8740199,10221,0 +12471,Teby_03,503,610,2585846,9638,0 +12472,Naboo+6,487,610,699383121,8889,0 +12473,Wioska+barbarzy%C5%84ska,390,523,849030226,9271,0 +12474,Gravity,404,442,698962117,9525,0 +12475,Kentin+ufam+Tobie,392,441,699783765,10064,0 +12476,066+-+Cenny%2A%2A%2A,436,590,225023,6293,0 +12477,006,609,470,8459255,10192,0 +12478,Wioska+barbarzy%C5%84ska,390,519,849030226,7764,0 +12479,Fresio,424,419,699660539,10128,0 +12480,16.+Barret+Wallace,521,612,8199417,10495,0 +12481,012,544,400,1424656,9976,0 +12482,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,463,607,8201460,10237,0 +12483,006+LordTrol,611,522,8323711,10495,0 +12484,107,569,411,849064752,10311,0 +12485,Yogi,540,607,2808172,10019,0 +12486,Heart+Of+Steel,593,561,848926293,9526,0 +12487,Popas1,387,500,699265922,9752,0 +12488,Wioska+barbarzy%C5%84ska,409,436,698884287,10285,0 +12489,004,610,525,699413040,9860,0 +12490,%7E089.,492,612,7139820,10495,0 +12491,055,549,397,849064752,10311,0 +12492,027,562,407,699761749,10495,0 +12493,002,604,460,849088515,10019,0 +12494,Wioska+barbarzy%C5%84ska,412,434,698884287,10285,0 +12495,%5B360%5D+Chor%C4%85giewka+na+wietrze,592,438,848985692,10068,0 +12496,-+128+-,551,596,849018239,8669,0 +12497,%7E075.,490,612,7139820,10495,0 +12498,R%C4%99cznik+do+zmiany,389,479,699697558,10495,1 +12499,025+To+by%C5%82y+czasy,596,449,698829590,10207,0 +12500,0025+Wioska,429,413,3909522,10083,0 +12501,032,603,462,849088515,8031,6 +12502,025+Ellesmera,601,504,8337151,12154,0 +12503,KONFA+TO+MARKA%2C+NARKA,393,476,698152377,10311,0 +12504,India,596,560,699737356,8663,0 +12505,Ceiling+-+Air-Conditioning+Duct,530,609,8199417,10495,0 +12506,038,589,572,699373599,10030,0 +12507,x06,410,432,698884287,10285,0 +12508,.achim.,526,391,6936607,10311,0 +12509,013,612,483,699573053,10495,9 +12510,007,407,437,698884287,10285,0 +12511,00354+Ma%C5%82ego+Franka,427,419,3909522,8790,0 +12512,007+barbarzy%C5%84ska,608,528,9238175,10318,0 +12513,007,604,457,849088515,10019,0 +12514,011.+Torvi,589,564,699373599,10030,0 +12515,EKG+M+.%3A%3A.+Paola65,480,608,33900,10495,0 +12516,%5B218%5D+WEST,606,458,848985692,10052,0 +12517,kto+ananasowy+pod+wod%C4%85+ma+dom,582,577,699628084,9797,0 +12518,.achim.,526,392,6936607,10311,0 +12519,025+Albania,593,467,7092442,10495,0 +12520,075+Minnesota,611,486,7092442,10495,1 +12521,005+Moss,602,543,699272880,10319,0 +12522,B.002,410,567,849088243,9221,0 +12523,Piek%C5%82o+to+inni,479,388,848956765,10083,0 +12524,A.020,596,559,9188016,10000,0 +12525,DOM+14,567,411,849064614,9824,0 +12526,Sk%C5%82ad,507,611,606407,10121,0 +12527,South+K45,574,416,699146580,5602,0 +12528,Baza1,408,439,698884287,10285,0 +12529,.achim.,529,393,6936607,10311,0 +12530,Wioska,389,506,849084005,10178,0 +12531,083+Missouri,611,490,7092442,10495,0 +12532,Wioska+barbarzy%C5%84ska,405,563,9167250,5554,0 +12533,014,611,527,698999105,10311,0 +12534,s181eo04,399,452,393668,9902,0 +12535,bucks+x+kamiiiru,421,421,848955783,10971,0 +12536,Wioska,388,508,849084005,10178,0 +12538,074,608,516,699373599,7952,0 +12539,006,596,558,848899726,7979,0 +12540,0005.+C+-+Aberon,623,504,7125212,9825,0 +12541,014,607,464,8459255,10192,0 +12542,Jaaa,584,545,698635863,10475,0 +12543,Wioska,387,508,849084005,10178,0 +12544,021.+Patavium,614,458,849091866,10252,0 +12545,041+Dallas,424,414,9291984,10481,0 +12546,%2A1Nocne+Harce,584,430,848985692,10052,0 +12547,0009,532,605,848915531,11824,0 +12548,terra+vista,398,541,849030226,10252,0 +12549,RUSZEK+NIE+DLA+CIEBIE,588,569,1715091,9669,0 +12550,East+Blue,494,387,699433558,10375,0 +12551,%21%2A305%2A,508,611,606407,10311,0 +12552,Wioska,380,531,849084005,10178,0 +12553,Insomnia,527,608,8199417,10495,0 +12555,%5B0036%5D,455,397,8630972,10495,0 +12556,Land+of+Fire,399,451,698962117,9497,0 +12557,Galia+3,595,442,848989855,5558,0 +12558,05+Makija%C5%BC,614,501,699377151,9097,0 +12559,031,591,568,699373599,10068,0 +12560,%2A007%2A,618,519,698670524,8805,0 +12561,024+-+B08.%2A%2A%2A,439,597,225023,10495,0 +12563,Z+barba+004,424,581,225023,8518,0 +12564,0133,461,607,698659980,10160,0 +12565,Memorial+Museum,516,613,8199417,10559,6 +12566,Soldier+Of+Fortune,595,560,848926293,9456,0 +12567,0000025%40,435,594,849089881,10160,0 +12568,Mourinho,626,516,699795378,10083,0 +12569,C004,523,388,7758085,9925,0 +12570,Grand+Line,490,394,699433558,10495,0 +12571,KR%C3%93L+PAPI+WIELKI,573,583,698191218,10000,0 +12572,005,613,500,849006412,10098,0 +12573,011,558,403,7271812,10495,0 +12574,%23010,473,610,699605333,10393,0 +12575,0037,614,513,6510480,9791,0 +12576,.achim.,536,395,6936607,10311,0 +12577,013,492,387,698739350,9902,1 +12579,Piek%C5%82o+to+inni,484,392,848956765,10019,0 +12580,030,610,486,699573053,10495,0 +12581,.achim.,536,393,6936607,10311,0 +12582,NIERAJ006,469,608,33900,10126,0 +12583,0047+MzM,601,515,698416970,9258,0 +12584,Kentin+ufam+Tobie,438,406,699783765,10000,0 +12586,-+050+-,540,604,849018239,10000,0 +12587,Vegus+to+wygra%C5%82,398,426,7462660,10122,0 +12588,A0032,389,481,8841266,10252,0 +12589,018,609,469,8459255,10001,0 +12591,Knowhere,388,511,699723284,10484,0 +12592,.%3A007%3A.Chillout,501,388,848934935,10495,0 +12593,MojeSzczytToTw%C3%B3jDno,529,389,828637,10478,0 +12594,Wioska+%28015%29,604,543,698232227,9850,0 +12595,%7E017.,500,614,7139820,10495,0 +12596,D019,504,387,7758085,9925,0 +12597,Gravity,401,446,698962117,9515,0 +12598,%23019,474,611,699605333,10393,0 +12599,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,463,608,8201460,10237,0 +12600,Wioska+barbarzy%C5%84ska,604,540,3364735,9966,0 +12601,010+Detroit,425,418,9291984,10484,0 +12602,%23031,521,604,849001572,9970,0 +12603,%5B0005%5D,454,399,8630972,10495,0 +12604,.achim.,522,391,6936607,10311,0 +12605,Jeremy,599,550,848926293,8560,0 +12606,0022+przemas1994,428,411,3909522,10132,0 +12607,Gravity,406,444,698962117,9509,0 +12608,044+-+A02%2A%2A%2A,433,588,225023,10495,0 +12609,0022,429,411,3909522,10069,0 +12610,%5B235%5D+WEST,599,449,848985692,10209,9 +12611,NOT,419,421,9236866,10042,0 +12612,004,545,395,1424656,9783,0 +12613,Kentin+ufam+Tobie,378,459,699783765,10000,0 +12614,A005,516,387,7758085,9925,0 +12616,Kentin+ufam+Tobie,438,404,699783765,10000,0 +12617,L+1,612,476,849027653,10032,5 +12618,011,546,602,699189792,9742,0 +12619,Kiedy%C5%9B+Wielki+Wojownik,395,454,8632462,9236,0 +12621,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,458,603,8201460,10237,0 +12622,017+Okinawa,614,495,7092442,10495,0 +12623,Szlachcic,391,480,6258092,10160,0 +12624,036,545,397,7271812,10495,0 +12625,Ww+005,443,599,849084740,10190,8 +12626,0323,446,601,698659980,10019,0 +12627,Gravity,405,442,698962117,9485,0 +12628,003+%7C+Lord+Axen+-+Rumbling%2C,562,552,8000875,10235,0 +12629,Kiedy%C5%9B+Wielki+Wojownik,395,460,8632462,9819,0 +12630,%5BA%5D_%5B003%5D+Dejv.oldplyr,392,478,699380607,10444,8 +12631,Wioska+barbarzy%C5%84ska,439,388,849027025,7860,0 +12632,Knowhere,389,503,699723284,10452,0 +12633,.achim.,519,387,6936607,10311,0 +12634,Wioska+barbarzy%C5%84ska,410,435,698884287,10285,0 +12635,Wa%C5%82+si%C4%99,612,511,6837266,4996,0 +12636,Lord+Arsey+KING,572,585,848956513,10285,0 +12637,015+Bez+strachu,598,448,698829590,10002,0 +12638,Bagdad,467,390,8847546,10654,0 +12639,Knowhere,388,501,699723284,10452,0 +12640,B.005,413,568,849088243,9370,0 +12641,Wioska+DETONATOR2010,506,389,3024357,5045,0 +12642,SZYMI+PALACE+14,392,538,9167250,5950,0 +12643,%2A004%2A,609,514,698670524,8600,0 +12644,093+JESTE%C5%9A+SOB%C4%84+LUB+KOGO%C5%9A+GRASZ,399,553,699382126,10475,0 +12645,Gravity,402,447,698962117,9486,0 +12646,Lord+Arsey+KING,578,583,848956513,10285,0 +12647,0032,462,393,699431255,9970,0 +12648,0347,446,610,698659980,10362,0 +12649,061,613,494,699573053,10373,0 +12650,ADEN,578,419,698588535,9730,0 +12651,A007,513,387,7758085,9925,0 +12652,Najlepszy+s%C4%85siad+014,596,445,699756210,8688,0 +12653,018,540,606,699189792,9741,0 +12654,NWO,392,523,849030226,12133,0 +12655,Podzi%C4%99kowa%C5%82+2,455,395,699796330,10303,0 +12656,s181eo18,399,455,393668,9902,0 +12657,%5B305%5D+Chor%C4%85giewka+na+wietrze,592,431,848985692,10600,0 +12658,.achim.,518,387,6936607,10311,0 +12659,SZYMI+PALACE+15,393,537,9167250,6890,0 +12660,0008,464,608,33900,8983,0 +12661,005,426,580,849084740,8327,0 +12662,Z+barba+017,410,569,225023,7655,0 +12663,Zeta+Reticuli+S,417,421,699323302,11417,0 +12664,004,610,469,8459255,10316,8 +12665,Wioska+lordtados,416,573,698526036,6647,0 +12666,016,574,406,849064752,10311,0 +12667,129+B01,402,557,699382126,6865,0 +12668,002,435,392,699783765,11130,0 +12669,0030+wolawce,430,415,3909522,10069,0 +12670,004,432,395,8740199,11130,0 +12671,%5B238%5D+WEST,601,452,848985692,10057,0 +12672,Gravity,401,444,698962117,9485,4 +12673,.003.,495,380,698489071,10595,0 +12674,W.181%2F04,607,535,2999957,10242,0 +12675,013,609,468,8459255,9910,0 +12676,PYRLANDIA+031+RYCERZ+MA%C5%81Y,562,592,33900,10153,0 +12677,A008,512,387,7758085,9925,0 +12678,009+ludki,610,517,8323711,10149,4 +12679,South+K45,573,414,699146580,10042,0 +12680,0009,430,410,3909522,9967,0 +12681,K44+x023,437,408,698364331,7641,0 +12682,001,414,574,9167250,9458,0 +12683,%2AINTERTWINED%2A%2A,509,625,698704189,9711,0 +12685,Brat447,389,511,699262350,10476,0 +12686,Wioska+Bartiii95,506,615,606407,10311,0 +12687,.013.,496,385,698489071,10316,0 +12688,027,546,395,849064752,10311,0 +12689,A.004,600,550,9188016,10000,0 +12690,K44+x006,440,404,698364331,8561,0 +12691,Najlepszy+s%C4%85siad+001,596,442,699756210,10273,3 +12692,056,545,398,849064752,10311,0 +12693,035+Witam+ponownie,605,454,698829590,10019,0 +12694,Osada+koczownik%C3%B3w,396,535,849030226,11116,1 +12695,Valhalla+Calling,598,558,848926293,9462,0 +12696,Wioska+barbarzy%C5%84ska,411,427,7462660,10068,0 +12697,%23050,448,602,699605333,10393,0 +12698,%5B349%5D+Chor%C4%85giewka+na+wietrze,583,424,848985692,10068,0 +12699,%2AINTERTWINED%2A,467,565,698704189,6187,0 +12700,Ddddd,419,579,225023,10495,0 +12701,012,609,465,849088515,9519,4 +12702,01+im+Trockiego,593,429,849037469,9809,0 +12703,z+014,558,598,699342219,10476,0 +12705,Sir+Hood+7,389,528,1804724,6846,0 +12706,ADEN,571,411,698588535,7947,0 +12707,%2A5501%2A+Everton,590,563,7973893,10287,9 +12708,Wioska,391,536,849084005,9708,0 +12709,036+Kabel+VGA,597,446,698829590,10019,0 +12711,181-004,585,575,8876551,3445,0 +12712,Szlachcic,388,475,6258092,10019,0 +12713,%5B304%5D+Chor%C4%85giewka+na+wietrze+nr2,592,432,848985692,10054,0 +12714,Coruscant+8,495,611,699383121,9528,0 +12715,Brat447,386,499,699262350,10484,0 +12716,005,563,408,849063849,10559,0 +12717,%5B313%5D+Chor%C4%85giewka+na+wietrze+-,597,438,848985692,10403,0 +12718,0079,600,517,699432672,10495,0 +12719,012.+Gloria+Victis,423,586,848886973,10449,0 +12720,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,465,608,8201460,10237,0 +12721,NOT%3F,403,552,9236866,5130,0 +12722,Kentin+ufam+Tobie,435,408,699783765,10000,0 +12723,Sir+Hood+4,388,529,1804724,10213,0 +12724,Lord+Arsey+KING,575,585,848956513,10285,0 +12725,%21Land+of+Fire,399,445,698962117,9488,9 +12727,Wioska+barbarzy%C5%84ska,567,589,6818593,9835,0 +12728,CALL+924,554,602,699784536,10311,0 +12729,PYRLANDIA+005+s+%2B+8K,568,591,33900,10495,0 +12730,026+Wioska,611,521,8323711,9958,0 +12731,152,581,418,849064752,10311,0 +12732,Suppi,418,541,699856962,10362,0 +12733,%5B225%5D+WEST,603,450,848985692,10132,0 +12734,.achim.,528,392,6936607,10311,0 +12735,021,538,606,699189792,9741,0 +12736,Wioska,385,508,849084005,10178,0 +12737,Lord+Arsey+KING,575,583,848956513,10285,0 +12738,Najlepszy+s%C4%85siad+011,600,445,699756210,9797,0 +12739,Wioska+Nevada+%28Nevada%29,415,571,698769107,9989,0 +12740,z+027,561,596,699342219,10237,0 +12741,.achim.,525,389,6936607,10311,0 +12742,DOM+8,565,408,849064614,9741,0 +12743,Mi%C4%99guszowiecki+Szczyt+Czarny,386,510,849013126,7741,0 +12744,Wioska,390,535,849084005,9559,0 +12745,019+MoonsteRR,611,511,8323711,10495,1 +12746,007,544,604,699189792,9742,0 +12747,B.003,410,566,849088243,9323,0 +12748,CALL+1008,526,611,699784536,10311,0 +12749,Ground+Level,479,612,8199417,10559,0 +12750,EKG+.%3A%3A.+Limak+x+Orlok,492,611,33900,10495,0 +12751,Maintenance+Hall,526,608,8199417,10495,0 +12752,Zeta+Reticuli+S,414,426,699323302,10997,0 +12753,0002,467,607,33900,10030,0 +12754,Gravity,400,446,698962117,9486,0 +12755,PYRLANDIA+010+S+%2B+8K,571,589,33900,10495,0 +12756,125+B13,400,554,699382126,9376,0 +12757,0096,457,398,699431255,9742,0 +12758,lo1,478,391,849093155,9967,0 +12759,020,611,480,699573053,10495,0 +12760,0017+I,435,409,3909522,10160,0 +12761,048,485,386,698739350,7381,0 +12762,Sir+Hood+2,392,531,1804724,10332,0 +12763,057,555,399,849064752,10311,0 +12764,NOT,415,427,9236866,10042,0 +12765,Prairie+Outpost,469,606,8199417,9892,0 +12766,008,607,526,698999105,10311,0 +12767,Sir+Hood+6,392,529,1804724,10178,0 +12768,Kiedy%C5%9B+Wielki+Wojownik,397,454,8632462,9868,9 +12769,Holistic+Town,504,615,699698253,9988,0 +12770,Sust4noL,613,503,699379895,10495,0 +12771,Civil+War,589,570,848926293,9608,0 +12772,042+-+A04,430,587,225023,10495,0 +12773,051.,593,441,849094609,4824,0 +12774,FAKE+OR+OFF,440,402,698231772,9821,0 +12775,Ok.,387,524,849030226,10143,5 +12776,%2A%2A+1+Czujesz+ten+dreszczyk+%3F,590,432,848985692,10469,0 +12777,007,605,538,699413040,9860,0 +12778,kto+ananasowy+pod+wod%C4%85+ma+dom,583,578,699628084,9797,0 +12779,s%C5%82odziute%C5%84ka+04,605,535,8013349,4340,0 +12780,NOT,420,422,9236866,10042,5 +12781,0087,459,396,699431255,9824,0 +12782,San+Jose,398,549,699425709,9637,0 +12783,Jezu+co+za+szpetny+ryj+mosz,399,449,699711723,9695,0 +12784,.achim.,526,390,6936607,10311,0 +12785,PYRLANDIA+011+S+%2B+C,573,590,33900,10559,0 +12786,018,606,470,849088515,10019,0 +12787,C.006,428,588,849088243,10226,0 +12788,%5B242%5D+WEST,602,456,848985692,10394,0 +12789,103,579,418,849064752,10311,0 +12790,017,569,410,849064752,10311,0 +12791,W.181%2F05,607,537,2999957,10242,0 +12792,MojeSzczytToTw%C3%B3jDno,536,390,828637,10495,0 +12793,049.+ALFI,473,564,8539216,1300,0 +12794,032.,610,470,8900955,9953,0 +12795,NOT,416,427,9236866,10042,0 +12796,Urojone+Elizjum,456,605,7249451,10223,0 +12797,FAKE+OR+OFF,438,405,698231772,9820,0 +12798,R%C4%99cznik+do+zmiany,388,483,699697558,10495,5 +12800,Teby_10,502,615,2585846,9638,0 +12801,R%C4%99cznik+do+zmiany,385,487,699697558,10495,0 +12802,013+Albo+pijesz+lufe,620,466,699272633,10474,0 +12803,Bagdad,468,394,8847546,10654,0 +12804,Lord+Arsey+KING,575,586,848956513,10285,1 +12805,.045.,472,390,698489071,10301,0 +12806,%5B302%5D+Chor%C4%85giewka+na+wietrze,592,433,848985692,10054,0 +12807,Brat447,385,504,699262350,10476,3 +12808,133+S015,402,560,699382126,7558,0 +12809,%5B365%5D+Chor%C4%85giewka+na+wietrze+%2B2,594,438,848985692,10293,0 +12810,Myk+i+do+kieszonki,379,514,9319058,9799,0 +12811,Bbbbb,419,580,225023,9894,0 +12812,Guardian,499,388,7758085,9925,0 +12813,006,606,459,849088515,10019,0 +12814,NOT,411,429,9236866,10042,0 +12815,Sir+Hood+8,389,529,1804724,10285,0 +12816,EKG,497,613,33900,10495,0 +12817,058,548,398,849064752,10311,0 +12818,Najlepszy+s%C4%85siad+008,600,443,699756210,9861,0 +12819,038+-+Barba,423,582,225023,10495,0 +12820,006+Denne+FO+181,505,389,7758085,9782,0 +12821,Bagdad,472,392,8847546,10654,0 +12822,181-002,587,575,8876551,3143,0 +12823,009+-+Mira,421,580,225023,10452,0 +12824,s181eo12,399,453,393668,9894,0 +12825,.achim.,536,394,6936607,10354,0 +12826,KR%C3%93L+PAPI+WIELKI,581,579,698191218,10000,0 +12827,012,543,603,699189792,9742,0 +12828,Wioska+barbarzy%C5%84ska,389,526,849030226,10830,0 +12829,%2A%2A%2A008+Sacramento,426,416,9291984,9507,0 +12830,NWO,388,525,849030226,10971,0 +12831,ok.,389,533,849030226,10160,0 +12832,Knowhere,373,514,699723284,10452,0 +12833,%5B0037%5D,452,398,8630972,10495,0 +12835,Piek%C5%82o+to+inni,483,388,848956765,10160,0 +12836,Teby_06,504,613,2585846,9638,0 +12837,035+O%C5%9Bka,613,517,8323711,8670,0 +12838,NWO,388,522,849030226,9850,0 +12839,C+003+Orzesze,419,582,849084740,7784,0 +12840,a+mo%C5%BCe+off+%3F+%3A%29,582,573,698768565,9560,0 +12841,Jehu_Kingdom_16_,625,471,8785314,9993,0 +12842,%2A017%2A,614,507,698670524,8383,0 +12843,010,614,550,6160655,10561,0 +12844,121+B09,402,556,699382126,8163,0 +12845,%7E024.,491,612,7139820,10495,0 +12846,00231+Wioska,430,411,3909522,10242,0 +12847,EXA,612,526,848967710,10252,0 +12848,03+Grzybek+Muchomorek,605,529,8013349,10062,0 +12849,%23+Szymi+7,393,534,699425709,9873,0 +12850,002buaa,408,565,9167250,9222,0 +12851,076+-+Kopalnia+tytanu,422,584,225023,8588,0 +12852,.achim.,535,394,6936607,10506,0 +12853,00051,533,608,848915531,9621,0 +12854,Piek%C5%82o+to+inni,490,389,848956765,10160,0 +12855,A0033,390,480,8841266,10252,0 +12856,Wioska,389,504,849084005,10178,0 +12857,006.+Ravenna,608,461,849091866,9228,0 +12858,Jaaa,586,577,698635863,9641,0 +12859,Bagdad,467,392,8847546,10654,0 +12860,Ww+006,442,600,849084740,10426,0 +12861,0324,447,600,698659980,10019,0 +12862,FAKE+OR+OFF,443,400,698231772,9816,0 +12863,018,614,493,849006412,10054,0 +12864,07+Ground+Zero,616,493,699377151,9061,0 +12865,scoti,486,613,699494488,10237,0 +12866,008+-+Majne,421,582,225023,10495,0 +12867,NOT%3F,401,548,9236866,10042,0 +12868,130+s001,402,555,699382126,10636,0 +12869,023,612,479,699573053,10495,0 +12870,z+016,559,593,699342219,10474,0 +12871,0021,446,599,699280514,9942,0 +12872,Knowhere,389,497,699723284,10205,0 +12873,020.,565,593,873575,9870,0 +12874,Napewno+to+nie+jest+off,491,391,848912265,10495,0 +12875,Piek%C5%82o+to+inni,485,394,848956765,10160,0 +12876,Wioska+barbarzy%C5%84ska,605,539,3364735,9966,0 +12877,Jigsaw,567,590,699364813,10495,0 +12878,A+001,611,476,849027653,9846,0 +12879,%5B0043%5D,457,395,8630972,10495,0 +12880,042+Vasperland,615,509,8323711,10495,6 +12881,Darma,425,398,356642,9835,0 +12882,Wioska,391,537,849084005,10178,0 +12884,Bagdad,474,391,8847546,10654,0 +12885,Wioska+barbarzy%C5%84ska,393,529,849030226,10479,0 +12886,011,546,394,1424656,9976,0 +12887,Atrium,520,612,8199417,10487,0 +12888,Wioska,388,514,849084005,10178,0 +12889,scoti,489,616,699494488,10223,0 +12890,065+-+Uxmal%2A%2A%2A,434,592,225023,7005,0 +12891,%5B361%5D+Chor%C4%85giewka+na+wietrze,593,438,848985692,10475,8 +12892,%2A026%2A,611,509,698670524,6446,0 +12893,00244+Wioska,432,412,3909522,10298,0 +12894,011.+Moria,486,612,699494488,10226,0 +12895,24.+Wioska+24,425,585,849091769,10232,0 +12896,MojeSzczytToTw%C3%B3jDno,532,389,828637,10474,0 +12897,Sir+Hood+5,388,530,1804724,9955,0 +12898,%5B309%5D+Chor%C4%85giewka+na+wietrze,589,431,848985692,10525,0 +12899,ZABAWA+-1-+Waldemar+Wielki,407,439,7462660,10122,0 +12900,019,607,468,849088515,10019,0 +12901,A039,444,405,8740199,10237,0 +12902,%23015.483%7C497,602,448,556154,9735,0 +12903,30+im+%C5%81udriego,588,431,849037469,9809,0 +12904,Wioska+X3,391,466,699523631,7816,0 +12905,004,607,467,849088515,10019,0 +12906,Bagdad,466,390,8847546,10654,0 +12907,%5B400%5D+Myszka+pod+miot%C5%82%C4%85,587,434,848985692,10068,0 +12908,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,546,699364813,7269,0 +12909,05+Przypadek,407,566,9167250,9219,0 +12910,KIELBA+093,443,600,699342219,9973,0 +12911,Combat+Simulator+Lounge,525,610,8199417,10495,0 +12912,a+mo%C5%BCe+off+%3F+%3A%29,573,587,698768565,9955,0 +12913,019,541,607,699189792,9744,0 +12914,A0007,389,482,8841266,10252,0 +12915,0632,446,591,698659980,10019,0 +12916,007.+Arpinum,609,461,849091866,10235,0 +12917,Wioska+sbbb,406,569,9167250,7799,0 +12918,%23010+A,464,610,33900,8997,0 +12919,Jaaa,608,465,698635863,10495,0 +12920,157,581,420,849064752,10311,0 +12921,Myk+i+do+kieszonki,378,511,9319058,9799,0 +12922,wielki+m,474,389,849093155,770,0 +12923,014,559,403,7271812,10495,0 +12924,A010,512,386,7758085,10002,0 +12925,.achim.,532,391,6936607,10311,0 +12926,Self+Made,577,589,699785935,10065,0 +12927,KONFA+TO+MARKA%2C+NARKA,388,473,698152377,10311,0 +12928,128+B02,400,553,699382126,9747,0 +12929,Szlachcic,389,487,6258092,10083,0 +12930,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,464,605,8201460,10237,0 +12931,CALL+1007,527,611,699784536,10375,0 +12932,153,579,420,849064752,10311,0 +12933,Bagdad,473,391,8847546,10654,0 +12934,021,555,398,699761749,10495,0 +12935,Kentin+ufam+Tobie,439,405,699783765,10000,0 +12936,South+K45,569,406,699146580,6702,0 +12937,z+021,555,596,699342219,10495,0 +12938,Wioska+barbarzy%C5%84ska,402,438,698884287,10285,0 +12939,033,614,499,849006412,10186,0 +12941,Kentin+ufam+Tobie,439,404,699783765,10000,0 +12942,K34+x003,465,394,698364331,10495,0 +12943,NIERAJ005,471,610,33900,10555,0 +12944,Najlepszy+s%C4%85siad+005,598,442,699756210,10495,0 +12945,Zeta+Reticuli+S,418,418,699323302,10887,0 +12946,Kiedy%C5%9B+Wielki+Wojownik,391,459,8632462,9835,0 +12947,Kiedy%C5%9B+Wielki+Wojownik,394,460,8632462,9086,0 +12948,nie+badz+smieszny+%3A%29,406,559,9167250,10362,0 +12949,-+006+-,552,604,849018239,10000,0 +12950,119+Wioska+barbarzy%C5%84ska,399,552,699382126,10479,0 +12951,EXA,609,524,848967710,10252,0 +12952,KONFA+TO+MARKA%2C+NARKA,389,467,698152377,10311,0 +12953,158,577,418,849064752,10311,0 +12954,bucks+x+kamiiiru,415,424,848955783,10971,0 +12955,%C5%9Amieszki,535,611,3454753,9117,0 +12956,CALL+913,557,600,699784536,10178,0 +12957,.achim.,531,390,6936607,10311,0 +12958,Jaaa,607,465,698635863,10476,0 +12959,x04,408,437,698884287,10285,0 +12960,%2A312%2A,515,612,606407,10297,0 +12961,MojeSzczytToTw%C3%B3jDno,529,388,828637,10476,0 +12962,002+Hattusa,601,557,699272880,9861,0 +12963,Taran+002,617,526,698562644,10311,0 +12964,EKG+M15,482,612,33900,8463,0 +12965,Elbl%C4%85g,513,609,606407,10311,0 +12966,118,560,400,849064752,10311,0 +12967,0005,468,607,33900,9809,6 +12968,0061,611,508,6510480,9843,0 +12969,004+U-Boot,503,387,7758085,9861,0 +12970,%C5%82uno+plus,398,521,1804724,10234,0 +12971,Piek%C5%82o+to+inni,476,390,848956765,10160,0 +12972,17.+Wioska+17,413,569,849091769,10019,0 +12973,South+K45,589,425,699146580,10042,0 +12974,ADEN,572,412,698588535,7950,0 +12975,HOTEL+1+%2A,576,414,849064614,9384,0 +12976,%2AINTERTWINED%2A,514,615,698704189,8390,0 +12977,bede+bronil+%3A%29,397,553,9167250,4938,0 +12978,A.016,415,576,849088243,10232,0 +12979,C+009+Tychy,417,580,849084740,8915,4 +12980,FAKE+OR+OFF,443,402,698231772,9821,0 +12981,Kiedy%C5%9B+Wielki+Wojownik,395,455,8632462,9976,0 +12983,ok.,389,534,849030226,10160,0 +12984,W%3D02.,611,474,7142659,10636,0 +12985,C+017+Jaworzno,416,579,849084740,8356,0 +12986,00061,535,606,848915531,10291,0 +12987,C.005,429,588,849088243,9977,0 +12988,18.+Wioska+18,426,585,849091769,10066,0 +12989,.achim.,532,393,6936607,10375,0 +12990,bucks+x+kamiiiru,421,420,848955783,10971,0 +12991,A004,515,387,7758085,9925,5 +12992,%23049,448,603,699605333,10393,0 +12993,007.+Gloria+Victis,424,588,848886973,10503,0 +12994,A04+Kross,612,488,699272880,10452,0 +12995,014,542,606,699189792,9741,0 +12996,NOT,412,428,9236866,9876,0 +12997,Mniejsze+z%C5%82o+0074,391,461,699794765,11036,0 +12998,Wioska+barbarzy%C5%84ska,411,428,7462660,10122,0 +12999,Mzm11,608,511,7142659,10495,0 +13000,Gravity,400,450,698962117,9505,0 +13001,Soldier+Side,597,558,848926293,9458,0 +13002,A0027,388,476,8841266,10252,0 +13003,General+Affairs,519,610,8199417,10495,0 +13004,FAKE+OR+OFF,442,399,698231772,9817,0 +13006,z+009,560,599,699342219,10475,0 +13007,C007,520,456,699299123,10971,0 +13008,PRO8L3M,388,513,7491093,10311,0 +13009,PYRLANDIA+030+Ramzez+s,560,594,33900,10273,0 +13010,Zeta+Reticuli+S,414,422,699323302,10997,0 +13011,PYRLANDIA+026+%2B+R,564,591,33900,10365,0 +13012,EKG+003+%2B+R,495,615,33900,10017,0 +13013,%23012,474,613,699605333,10393,0 +13014,.achim.,512,404,6936607,10311,0 +13015,128,545,389,849064752,10311,0 +13016,%5B331%5D+Chor%C4%85giewka+na+wietrze,586,428,848985692,10397,0 +13017,a+mo%C5%BCe+off+%3F+%3A%29,579,579,698768565,9771,1 +13018,PYRLANDIA+020+S,566,590,33900,10495,0 +13019,Piek%C5%82o+to+inni,476,388,848956765,10160,0 +13020,MORDOR+f,538,469,8155296,9589,0 +13021,059,555,397,849064752,10311,0 +13022,029+Carolina,608,470,7092442,10495,0 +13023,.achim.,528,390,6936607,10311,0 +13024,019,488,385,698739350,9761,0 +13025,A0161,378,475,8841266,10160,0 +13026,004+Night+Watch,390,520,849030226,10483,0 +13027,z+005,562,598,699342219,10476,0 +13028,018.+Gisela,591,569,699373599,10030,0 +13029,044+Wioska+HUSARIUS,404,564,699382126,9925,0 +13030,%5B0034%5D,450,399,8630972,10495,0 +13031,PYRLANDIA+024+s,568,588,33900,10052,9 +13032,Lord+Arsey+KING,574,585,848956513,10285,0 +13033,-+217+-,551,572,849018239,10000,0 +13034,D012,511,389,7758085,9861,0 +13036,037,599,559,699373599,10068,0 +13037,%5B335%5D+Chor%C4%85giewka+na+wietrze,588,424,848985692,10397,0 +13038,EKG+M03+%2B+KAC+T%C5%81,477,613,33900,10365,0 +13039,Z+barba+002,423,583,225023,10495,0 +13040,Piek%C5%82o+to+inni,477,387,848956765,10160,0 +13041,kto+ananasowy+pod+wod%C4%85+ma+dom,586,571,699628084,9861,0 +13042,016,608,468,8459255,10183,0 +13043,iWioska+barbarzy%C5%84ska,497,387,699368887,10237,0 +13044,0623,438,592,698659980,10019,0 +13045,bucks+x+kamiiiru,421,419,848955783,10971,0 +13046,Teby_11,501,617,2585846,9440,0 +13047,Kiedy%C5%9B+Wielki+Wojownik,393,454,8632462,9835,0 +13048,Szlachcic,458,394,698388578,10237,0 +13049,025.xxx,483,614,8612358,10078,0 +13050,ADEN,567,405,698588535,10120,0 +13051,Czekam+na+VS,534,383,698350371,10495,0 +13052,Land+of+Fire,397,446,698962117,9502,0 +13053,%5B347%5D+Chor%C4%85giewka+na+wietrze,586,423,848985692,10394,0 +13054,156,571,409,849064752,9890,0 +13055,Back+ln+Black,595,566,848926293,9493,0 +13056,Wioska,381,524,849084005,10178,0 +13057,Brat447,385,511,699262350,10083,0 +13058,Lord+Arsey+KING,580,584,848956513,10285,0 +13059,z+052,560,600,699342219,5029,0 +13061,%5B0042%5D,454,397,8630972,10495,0 +13062,R%C4%99cznik+do+zmiany,385,482,699697558,10495,0 +13063,krzysiek1293-vequ1,411,425,7462660,10122,0 +13064,Szlachcic,615,484,698867446,9802,0 +13065,132+B15,402,559,699382126,10444,0 +13066,016.+Athenae,608,463,849091866,9286,0 +13067,002,416,576,9167250,9370,0 +13068,NOT,413,427,9236866,10042,0 +13069,A0203,387,482,8841266,10252,0 +13070,011,605,548,6160655,10694,0 +13071,Bagdad,471,391,8847546,10654,0 +13072,Ww+004,442,597,849084740,10744,0 +13073,Bagdad,468,390,8847546,10178,0 +13074,047+-+A07%2A%2A%2A,434,591,225023,10495,0 +13075,Sector+7+Undercity+Station,512,595,8199417,10559,0 +13076,Wioska+barbarzy%C5%84ska1%28goodboy666%29,425,588,698769107,9976,0 +13077,Myk+i+do+kieszonki,389,512,9319058,9799,0 +13078,x14,408,430,698884287,10285,8 +13080,C.003,440,600,849088243,10228,0 +13081,Najlepszy+s%C4%85siad+009,601,441,699756210,10268,0 +13082,A0253,377,488,8841266,10252,0 +13083,Love+Bites,594,564,848926293,9541,0 +13084,059,483,389,698739350,9994,0 +13085,074+-+Znajd%C5%BAka,424,586,225023,10444,0 +13086,0005,534,609,848915531,11321,0 +13087,00111+Wioska,429,408,3909522,8440,0 +13088,Wioska,382,541,849084005,10178,0 +13089,To+moja,383,497,699265922,9816,0 +13090,Wioska+barbarzy%C5%84ska,388,468,699523631,10476,0 +13091,z+011,562,596,699342219,10476,0 +13092,W.181%2F02,608,538,2999957,10242,7 +13093,Sparta_52,482,583,2585846,9638,0 +13094,%5B362%5D+Chor%C4%85giewka+na+wietrze,595,440,848985692,10495,0 +13095,Bagdad,469,390,8847546,10178,0 +13096,K34+x006,467,393,698364331,10362,1 +13097,075,613,528,699373599,9883,0 +13098,003+Spodziewana+niespodzianka,503,388,7758085,9861,0 +13099,%230036,539,623,1536231,10495,0 +13100,Tu+powstaje+co%C5%9B+wi%C4%99kszego,428,586,849028088,9761,0 +13101,-+265+-,550,602,849018239,10000,0 +13102,032+Columbus,423,415,9291984,10479,0 +13103,Lord+Arsey+KING,580,582,848956513,10285,0 +13104,SZYMI+PALACE+3,392,541,9167250,7444,0 +13105,EKG+.%3A%3A.+Siwyy8848%2F2,499,616,33900,10495,0 +13106,Naboo+5,493,615,699383121,9835,0 +13107,004.+Syracusae,612,469,849091866,9485,0 +13108,NIERAJ004,468,611,33900,10251,0 +13109,Gravity,403,444,698962117,9489,6 +13110,062,614,482,699573053,10495,0 +13111,003,556,399,7271812,10495,4 +13112,084+MEHEHE,493,611,6116940,10019,0 +13113,Gattacka,539,390,699298370,9691,0 +13114,Wioska+barbarzy%C5%84ska,394,461,698807570,10068,0 +13115,Sk%C5%82ad,510,612,606407,10290,0 +13116,0006+R,427,410,3909522,10160,0 +13117,Bagdad,469,395,8847546,10654,0 +13118,Wioska+barbarzy%C5%84ska,412,429,7462660,10068,0 +13119,.achim.,531,394,6936607,10311,0 +13120,A.007,604,554,9188016,10000,0 +13121,Wioska+barbarzy%C5%84ska,412,431,698884287,10285,0 +13122,Brat447,388,517,699262350,4937,4 +13123,%5B367%5D+Chor%C4%85giewka+na+wietrze,589,424,848985692,5599,0 +13124,.achim.,529,391,6936607,10311,0 +13125,007.+Angband,484,613,699494488,10478,1 +13126,A.011,602,554,9188016,10000,0 +13127,ok.,390,534,849030226,10484,0 +13128,bucks+x+kamiiiru,414,423,848955783,10147,0 +13129,El+Escorial,397,551,698916948,5474,0 +13130,001+Bunia,401,542,699856962,10160,0 +13131,EKG+M01+Mavreli,477,611,33900,10495,0 +13132,036,493,617,699878511,10475,0 +13133,Urojone+Elizjum,456,609,7249451,10237,0 +13134,KONFA+TO+MARKA%2C+NARKA,390,466,698152377,10311,0 +13135,027,543,395,1424656,9835,0 +13136,Lhotse,384,499,849013126,9222,0 +13137,Teby_09,506,614,2585846,9638,0 +13138,0006,464,607,33900,9983,0 +13139,Teby_12,504,617,2585846,9638,0 +13140,Wioska,386,512,849084005,10178,0 +13141,R%C4%99cznik+do+zmiany,385,486,699697558,10252,0 +13142,0004,604,545,477415,10495,0 +13143,Szlachcic,615,488,698867446,10160,0 +13144,asd,393,543,849095014,6446,0 +13145,%23060,478,617,699605333,10393,0 +13146,%2A+IDE+po+WAS+%21,594,432,848985692,10112,0 +13148,082+Missisipi,611,488,7092442,10495,0 +13150,0017,611,523,6510480,10322,0 +13151,0624,437,593,698659980,10019,0 +13152,A008+Sylwester+z+jedynka,603,447,699722599,10487,0 +13154,Farmie+PP,568,605,8627359,9271,0 +13155,006,497,385,698739350,9761,0 +13156,13+im+Gad%C5%BCyjewa,589,428,849037469,9809,0 +13158,%5B348%5D+Chor%C4%85giewka+na+wietrze,582,420,848985692,10051,0 +13159,Cet4boN,615,503,699379895,10160,0 +13160,Bagdad,469,392,8847546,10178,9 +13161,Horyzont+zdarze%C5%84,540,608,7581876,10019,0 +13162,Piek%C5%82o+to+inni,486,386,848956765,10160,0 +13164,055+-+%C5%81atwizna,410,572,225023,10495,0 +13165,Last+Train+for+Bound+Sector+7,525,615,8199417,10495,0 +13166,Brusy,412,569,698769107,8866,0 +13167,-+003+-,552,603,849018239,10000,0 +13168,FAKE+OR+OFF,438,402,698231772,9822,0 +13169,DOM+9,564,408,849064614,9750,0 +13170,Ohara,493,387,699433558,10311,0 +13171,081+Montana,612,489,7092442,10362,7 +13172,Wioska+stary56,564,592,699364813,10495,0 +13173,Wioska,383,501,849084005,10178,0 +13174,K34+-+%5B037%5D+Before+Land,466,388,699088769,10259,0 +13175,KONFA+TO+MARKA%2C+NARKA,390,465,698152377,10311,0 +13176,0000026%25,428,591,849089881,9989,0 +13177,Bucksbarzy%C5%84sKamiiiru,385,515,848955783,9846,3 +13178,PYRLANDIA+012%24,574,591,33900,10495,0 +13179,Jaaa,587,576,698635863,10416,0 +13180,z+053,562,593,699342219,10220,0 +13181,aaaa,448,400,698231772,9833,0 +13182,0639,436,598,698659980,10019,0 +13183,Lord+Arsey+KING,579,586,848956513,10285,6 +13184,Szlachcic,463,394,698388578,10237,0 +13185,A003,514,386,7758085,9925,2 +13186,Knowhere,388,493,699723284,10141,0 +13187,003+stal,589,571,1715091,9615,3 +13188,Z+002,562,597,699342219,10474,0 +13189,%5B351%5D+Chor%C4%85giewka+na+wietrze,600,439,848985692,9255,0 +13190,0010+S,433,408,3909522,10357,0 +13191,bucks+x+kamiiiru,414,425,848955783,10971,0 +13192,ADEN,567,409,698588535,10898,0 +13193,%2AAnihilacja,592,428,848985692,10063,0 +13194,-+008+-,550,604,849018239,10000,0 +13195,Mniejsze+z%C5%82o+0073,389,462,699794765,11079,0 +13196,%5B0039%5D,454,398,8630972,10495,0 +13198,Gravity,401,443,698962117,9489,0 +13199,0349,443,602,698659980,10019,0 +13200,09+Monza,616,507,699377151,9548,0 +13201,Wioska+barbarzy%C5%84ska,420,417,699660539,9606,0 +13202,Mniejsze+z%C5%82o+0030,391,462,699794765,9283,0 +13203,0011,429,407,3909522,10021,0 +13204,%23042,451,605,699605333,10728,0 +13205,015,605,545,6160655,10396,0 +13206,Wioska+Pawe%C5%82+I+Wspanialy,417,417,699660539,9725,0 +13207,C+005+Krakow,416,574,849084740,9233,0 +13208,0329,449,606,698659980,10495,0 +13209,NOT,413,425,9236866,10042,0 +13210,%5B318%5D+Chor%C4%85giewka+na+wietrze,592,436,848985692,10394,0 +13211,.achim.,541,391,6936607,10311,0 +13212,FAKE+OR+OFF,446,399,698231772,9822,0 +13213,0008,605,549,477415,10495,0 +13215,.achim.,534,393,6936607,10311,0 +13216,W.181%2F07,611,533,2999957,10242,0 +13217,Lord+Arsey+KING,579,584,848956513,10285,0 +13218,Myk+i+do+kieszonki,386,514,9319058,9799,0 +13220,%23+Szymi+3,395,542,699425709,9873,0 +13221,031,613,481,699573053,10495,0 +13222,09+im+Watutina,591,429,849037469,9809,0 +13223,EKG+004+%2B+R,495,614,33900,10322,0 +13224,%2A011%2A,613,506,698670524,8692,0 +13225,006,568,411,849064752,10311,4 +13226,002,525,623,699336777,9825,0 +13227,%23+Szymi+1,394,544,699364813,8197,0 +13228,0132,456,604,698659980,10495,0 +13229,So%C5%82tys+Twojej+Wsi,439,391,849027025,9384,0 +13230,Teby_07,504,614,2585846,9638,0 +13231,001,616,499,849006412,9819,0 +13232,022,492,386,698739350,9825,0 +13233,Wioska,389,538,849084005,10068,0 +13234,A.008,603,553,9188016,10000,0 +13235,Ethan+Hunt+09,617,494,698702991,8806,0 +13236,NWO,387,525,849030226,10951,0 +13237,KR%C3%93L+PAPI+WIELKI,578,584,698191218,10000,0 +13238,013,614,496,849006412,10294,0 +13239,%23059,481,616,699605333,10636,0 +13240,0038,616,509,6510480,9907,0 +13241,%2A%2ANocne+%C5%82akocie,584,421,848985692,10233,0 +13242,004,408,512,699851427,10042,0 +13243,Wioska,390,537,849084005,10178,0 +13244,Kentin+ufam+Tobie,435,403,699783765,10000,0 +13245,009,545,603,699189792,9745,0 +13246,Winter+is+coming,504,574,699364813,9833,0 +13247,FAKE+OR+OFF,444,397,698231772,9814,0 +13248,%2AINTERTWINED%2A,514,614,698704189,9711,0 +13249,%5B0108%5D,453,397,8630972,10495,0 +13250,%5B219%5D+WEST,607,459,848985692,10049,0 +13251,006+Prawie+noc...,389,531,849030226,10957,0 +13252,-+009+-,550,603,849018239,10000,0 +13253,Szlachcic,582,418,699170684,9835,0 +13254,Naboo+3,489,614,699383121,8380,0 +13255,Wioska,384,506,849084005,10178,0 +13256,Naterki+003,575,415,699812571,2141,0 +13257,kto+ananasowy+pod+wod%C4%85+ma+dom,584,578,699628084,9797,0 +13258,004,607,543,6160655,10913,0 +13259,Gattacka,591,493,699298370,9372,0 +13260,118+B07,400,558,699382126,7915,0 +13261,%5B226%5D+WEST+Punch,602,453,848985692,10068,0 +13262,K34+-+%5B071%5D+Before+Land,454,392,699088769,9924,0 +13263,Glatteis,562,558,699785935,10311,0 +13264,C.004,433,597,849088243,10401,0 +13265,0009+MzM,586,578,698416970,9258,0 +13266,0093,455,439,3909522,9247,0 +13267,051,512,385,698739350,8306,0 +13268,009+-+Palma+de+Mallorca,599,495,698342159,10019,0 +13269,Szlachcic,593,508,699759128,9907,0 +13270,Bucksbarzy%C5%84sKamiiiru,384,514,848955783,5502,0 +13271,ccc,606,551,7047342,10495,0 +13272,DOM+3,564,402,849064614,9744,0 +13273,ADEN,592,430,698588535,10216,0 +13274,011,615,495,849006412,9681,0 +13275,s181eo05,394,452,393668,9902,0 +13276,Mniejsze+z%C5%82o+0022,387,488,699794765,9463,8 +13277,Zeta+Reticuli+S,416,421,699323302,11321,0 +13278,-+013+-,548,602,849018239,10000,0 +13279,.achim.,520,387,6936607,10311,0 +13280,A011,513,385,7758085,9925,0 +13282,0206,398,508,7085510,5277,0 +13283,P+Konfederacja,457,442,848915730,10325,0 +13284,%5B228%5D+WEST,606,452,848985692,10051,0 +13285,NIE+DZI%C5%9A+HEJKA,399,559,8539216,946,0 +13286,-+010+-,549,605,849018239,10000,0 +13287,kto+ananasowy+pod+wod%C4%85+ma+dom,585,579,699628084,9797,0 +13288,A.003,600,560,9188016,10000,0 +13289,Oslo+%28Mieszko+1995%29,416,578,698769107,8976,0 +13291,A0005,387,475,8841266,10252,5 +13292,Wioska,379,522,849084005,10178,0 +13293,Wioska+barbarzy%C5%84ska,406,571,9167250,6148,0 +13294,Z+barba+006,426,589,225023,10495,0 +13295,SZYMI+PALACE+13,392,544,699364813,6015,0 +13296,007,550,396,1424656,9825,0 +13297,%5B369%5D+Chor%C4%85giewka+na+wietrze,590,426,848985692,7218,0 +13298,Brat447,385,507,699262350,10066,0 +13299,0038,429,405,848913037,8824,0 +13300,South+K35,552,396,699146580,10042,0 +13301,C.008,429,592,849088243,10479,0 +13302,Bocianikson002,610,541,7528491,9952,0 +13303,035+-+lowe,421,586,225023,10495,1 +13304,A0009,382,482,8841266,10252,0 +13305,Wioska+sbb,406,572,9167250,7887,0 +13306,Gattacka,538,390,699298370,9389,0 +13307,nie+masz+wiecej+heh+dawaj+ofy,393,542,849095014,5486,0 +13308,Teby_08,506,613,2585846,9638,0 +13309,%5B366%5D+Chor%C4%85giewka+na+wietrze,596,440,848985692,10475,0 +13310,034+-+B09.%2A%2A%2A,439,598,225023,10495,0 +13311,012+Rivendell,610,533,8013349,9814,0 +13312,C+013+Be%C5%82k,420,587,849084740,10431,0 +13313,Piek%C5%82o+to+inni,483,386,848956765,10160,0 +13314,D021,505,383,7758085,9925,0 +13315,Wioska,385,518,849084005,10178,0 +13316,A.012,602,553,9188016,10000,0 +13317,010,543,607,699189792,9741,0 +13318,008+legancko,604,546,9238175,10559,0 +13319,Szlachcic,585,504,699759128,9835,0 +13320,Z+barba+018,419,585,225023,10085,0 +13321,ADEN,520,381,698588535,9737,0 +13322,scoti,487,614,699494488,10217,0 +13323,Lecymy+DUR,445,395,6169408,10495,0 +13324,CALL+920,553,602,699784536,10311,0 +13325,Kentin+ufam+Tobie,435,406,699783765,10000,0 +13326,007,495,385,698739350,9761,0 +13327,Lecymy+DUR,440,398,6169408,9472,0 +13328,ZABAWA+-3-+Waldemar+Wielki,405,438,698884287,10285,0 +13329,A0034,386,482,8841266,10252,0 +13330,Galia+2,599,440,848989855,7715,0 +13331,Land+of+Fire,398,445,698962117,9486,6 +13332,036+Pot%C4%99%C5%BCny+Dzban,389,554,699382126,10476,0 +13333,FAKE+OR+OFF,437,401,698231772,9822,0 +13334,002+Troja,609,530,8013349,9781,0 +13335,%2A302%2A,508,615,606407,10291,0 +13336,Wioska,386,521,849084005,10178,0 +13337,PYRLANDIA+003+S,569,592,33900,10495,0 +13338,%5B229%5D+WEST,606,453,848985692,10009,0 +13339,EKG+002+%2B+R,498,616,33900,10311,0 +13340,Wioska+barbarzy%C5%84ska,409,430,698884287,10285,0 +13341,Knowhere,385,497,699723284,10374,0 +13342,z+015,559,597,699342219,10476,0 +13343,Legion+pierwszy+upad%C5%82y,567,596,699364813,10495,0 +13344,Mniejsze+z%C5%82o+0018,390,461,699794765,8244,0 +13345,12+im+Chmyrowa,589,427,849037469,9809,0 +13346,South+K45,573,410,699146580,6564,0 +13347,Wioska+barbarzy%C5%84ska,592,574,1715091,9835,0 +13348,20.+Wioska+20,426,586,849091769,10030,0 +13349,Jaaa,603,433,698635863,10375,0 +13350,EKG+.%3A%3A.+Siwyy8848%2F3,498,617,33900,10495,0 +13351,10.+Ravus+Nox+Fleuret,520,616,8199417,10495,0 +13352,Wioska+barbarzy%C5%84ska,391,534,849030226,10484,0 +13353,014,603,545,6160655,10693,0 +13354,EKG+zderek,497,614,33900,10137,0 +13355,Fappoleon,494,388,699433558,10311,0 +13356,Wioska+barbarzy%C5%84ska,406,433,698884287,10285,0 +13357,EKG+006,496,614,33900,10143,0 +13358,007,561,402,849063849,9703,0 +13359,Piwna+09,607,430,699812007,9294,0 +13360,021.+Gloria+Victis,425,587,848886973,10065,0 +13361,A0001,384,477,8841266,10160,0 +13362,MojeSzczytToTw%C3%B3jDno,528,387,828637,10474,0 +13363,030,602,560,6160655,10580,0 +13364,021,612,480,699573053,10495,0 +13365,.achim.,538,400,6936607,11366,0 +13366,0029,389,468,6258092,10795,0 +13367,Wioska+barbarzy%C5%84ska,386,528,849030226,10971,0 +13368,%23013,473,611,699605333,10393,0 +13369,B.007,410,573,849088243,10559,0 +13370,x01,405,434,698884287,10285,0 +13371,K34+x013,466,389,698364331,7011,0 +13372,0020,602,548,477415,10495,3 +13373,74k%24+Grvvyq,548,524,699676005,10495,0 +13374,%5B0029%5D,449,397,8630972,10495,0 +13375,Najlepszy+s%C4%85siad+002,597,442,699756210,9925,0 +13376,13.+Tifa+Lockhart,520,613,8199417,10559,0 +13377,%7E057.,501,615,7139820,10495,0 +13378,Najlepszy+s%C4%85siad+007,600,442,699756210,9859,7 +13379,0002+MzM,603,557,698416970,9630,0 +13380,Land+of+Fire,397,444,698962117,9494,0 +13381,A0012,384,482,8841266,10252,0 +13383,A0020,384,481,8841266,10252,0 +13384,W.181%2F17,613,529,2999957,10242,0 +13385,Gattacka,539,391,699298370,9768,0 +13386,067+-+LG%2A%2A%2A,435,597,225023,8631,0 +13387,NOT,418,420,9236866,10042,0 +13388,A.006,601,558,9188016,10000,0 +13389,028,584,417,849064752,10311,0 +13390,023+-+B05.%2A%2A%2A,441,598,225023,10495,0 +13391,089+KO%C5%83CZY+SI%C4%98+TW%C3%93J+CZAS,395,552,699382126,10478,0 +13392,Land+of+Fire,398,444,698962117,9486,0 +13393,055.+Singidunum,603,443,849091866,8822,0 +13394,091+POZOSTAJESZ+BEZ+SZANS,399,558,699382126,10539,0 +13395,016+YouAreNext,390,557,699382126,9804,0 +13396,R%C4%99cznik+do+zmiany,384,486,699697558,10495,0 +13397,009,554,401,699761749,10495,0 +13398,Wioska,386,520,849084005,10178,0 +13399,South+K45,588,426,699146580,10042,0 +13400,003.+Byzantium,610,462,849091866,9133,1 +13401,007,493,618,699494488,10311,0 +13403,D05,617,482,849093742,10160,0 +13404,004.+Oxenfurt,562,400,699799629,10495,0 +13406,Bocianikson003,611,540,7528491,9950,0 +13408,063,476,387,698739350,9761,0 +13410,03.+Pusty+w+%C5%9Brodku,402,565,9167250,9027,0 +13411,107+ZERO+ZERO+SIEDEM,398,553,699382126,10495,0 +13412,Myk+i+do+kieszonki,385,514,9319058,9799,0 +13414,Ethan+Hunt+10,616,485,698702991,9843,0 +13415,%23030,460,607,699605333,10728,0 +13416,Kiedy%C5%9B+Wielki+Wojownik,391,455,8632462,9835,0 +13417,043.,598,561,699373599,10068,0 +13418,Optymistycznie,613,555,699501322,2946,0 +13419,Unieszewo+004,575,413,699812571,1560,0 +13420,Gravity,402,449,698962117,9494,0 +13421,.achim.,526,388,6936607,10311,0 +13422,R%C4%99cznik+do+zmiany,383,481,699697558,10495,4 +13423,057,485,383,698739350,8274,0 +13424,16+im+Jekiela,591,427,849037469,9809,0 +13425,%5B314%5D+Chor%C4%85giewka+na+wietrze,598,437,848985692,10394,0 +13426,126+B06,399,561,699382126,8047,0 +13427,-+002+-,548,603,849018239,10000,4 +13428,Sk%C5%82ad,509,614,606407,10291,0 +13429,A019,510,382,7758085,9925,0 +13430,Lord+Arsey+KING,583,582,848956513,10285,0 +13431,A0254,382,492,8841266,10252,0 +13432,KONFA+TO+MARKA%2C+NARKA,388,466,698152377,10311,0 +13433,%5B0031%5D,451,396,8630972,10495,0 +13435,Myk+i+do+kieszonki,383,515,9319058,7419,4 +13436,Stage+group+B3,421,543,699856962,9781,0 +13437,D015,509,387,7758085,9861,0 +13439,South+K45,596,431,699146580,10042,3 +13440,%2AINTERTWINED%2A,508,625,698704189,9711,0 +13441,002,404,431,699788305,10019,0 +13442,EKG+.%3A%3A.+Mat26%2F2,493,614,33900,10237,0 +13443,%23051,449,602,699605333,10393,0 +13444,Mniejsze+z%C5%82o+0076,390,462,699794765,11079,0 +13445,%23003.484%7C497,603,448,556154,9735,0 +13446,087,615,493,699573053,10103,0 +13447,Z+barba+001,422,588,225023,8840,0 +13448,D016,507,386,7758085,9861,0 +13449,A0228,377,490,8841266,10252,0 +13450,%5B368%5D+Chor%C4%85giewka+na+wietrze,590,425,848985692,10391,0 +13451,W.181%2F08,614,531,2999957,10375,0 +13452,EKG+M04+%2B+KAC+2+WZ,476,613,33900,10194,0 +13454,011,603,546,699413040,9860,0 +13455,00355+Refugia,428,419,3909522,9886,0 +13456,Konfederacja+8,467,387,848915730,9917,0 +13457,%5B008%5D+Dreabe+dig,602,534,848985692,10294,0 +13458,KONFA+TO+MARKA%2C+NARKA,387,464,698152377,10311,0 +13459,Zeta+Reticuli+S,417,419,699323302,11188,0 +13460,0200,453,604,698659980,10495,0 +13461,Lecymy+DUR,444,396,6169408,10495,0 +13462,.achim.,521,386,6936607,10311,0 +13463,A+005,614,472,7915966,10140,0 +13464,%5B088%5D,566,557,8000875,9902,0 +13465,%2AINTERTWINED%2A,516,616,698704189,9276,0 +13466,Myk+i+do+kieszonki,373,515,9319058,9799,0 +13467,Naboo+2,492,614,699383121,9528,0 +13468,028,489,384,698739350,9761,0 +13469,Aaaaa,420,580,225023,10495,0 +13470,.achim.,542,393,6936607,9220,0 +13471,%2A307%2A,511,613,606407,10292,0 +13472,024,617,510,849006412,6382,0 +13473,C+004+Wyry,418,580,849084740,7794,0 +13474,Jaaa,598,585,698635863,10495,0 +13475,%23+Szymi+2,395,544,699364813,6826,0 +13476,W.181%2F16,610,536,2999957,10242,0 +13477,x07,406,430,698884287,10285,0 +13478,Land+of+Fire,398,443,698962117,9505,0 +13479,-+047+-,542,609,849018239,10000,0 +13480,%5B240%5D+WEST,602,451,848985692,10057,0 +13481,OSP,419,573,225023,8970,0 +13482,EKG+M16,484,612,33900,9355,0 +13483,%5B324%5D+Chor%C4%85giewka+na+wietrze,596,439,848985692,10397,0 +13484,%2A+Zagrasz+w+kotka+i+myszk%C4%99%3F,585,420,848985692,10183,0 +13485,Wioska+barbarzy%C5%84ska,419,419,699660539,10009,0 +13486,Wioska,384,519,849084005,10178,0 +13487,scoti,489,617,699494488,10237,0 +13488,a+mo%C5%BCe+off+%3F+%3A%29,575,589,698768565,9256,0 +13489,%5B0033%5D,449,395,8630972,10495,0 +13490,South+K45,595,432,699146580,10042,0 +13491,060.+Tergeste,604,442,849091866,9608,0 +13492,045+Ithilien,405,562,699382126,10475,1 +13494,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,396,545,699364813,6219,0 +13495,Bucksbarzy%C5%84sKamiiiru,436,529,848955783,10971,0 +13496,0015+Szlachcic,433,410,3909522,10083,0 +13497,0002,424,411,3909522,10495,3 +13498,0031,451,379,699431255,10544,0 +13499,Ok.,387,527,849030226,10543,3 +13500,Wioska+barbarzy%C5%84ska,402,436,698884287,10285,0 +13501,Wioska,387,503,849084005,10178,0 +13503,PowerPunch,615,511,699379895,10252,0 +13504,033,486,382,698739350,9761,0 +13505,Eeeee,420,581,225023,8453,0 +13506,Naboo+1,490,614,699383121,8794,0 +13507,Kiedy%C5%9B+Wielki+Wojownik,392,454,8632462,9835,0 +13508,012,551,399,699761749,10495,0 +13509,Zadupie,412,573,869195,2357,0 +13510,014,613,483,699573053,10495,0 +13511,Wioska+barbarzy%C5%84ska,420,418,699660539,9708,0 +13512,--003--,432,597,225023,10416,0 +13513,%C5%9Amieszki,532,614,3454753,9055,0 +13514,%5B0006%5D,449,396,8630972,10495,9 +13516,EKG+.%3A%3A.+Siwyy8848%2F7,500,617,33900,10495,2 +13517,End+of+the+Road,519,615,8199417,10559,0 +13518,Ethan+Hunt+08,617,490,698702991,9816,0 +13519,Galia,598,441,848989855,9996,0 +13521,%5B308%5D+Chor%C4%85giewka+na+wietrze,596,434,848985692,10373,0 +13522,159,578,415,849064752,10311,0 +13523,%5B363%5D+Chor%C4%85giewka+na+wietrze,596,438,848985692,10474,5 +13524,Jaaa,609,463,698635863,10269,0 +13525,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,550,699364813,5790,0 +13526,Kentin+ufam+Tobie,389,443,699783765,10000,0 +13527,Jaaa,571,593,698635863,9982,8 +13528,C+010,567,392,6384450,10362,0 +13529,Mniejsze+z%C5%82o+0077,388,459,699794765,10930,0 +13530,Lord+Arsey+KING,577,585,848956513,10285,0 +13531,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,459,612,8201460,10237,0 +13532,.001.,495,381,698489071,10316,0 +13533,KONFA+TO+MARKA%2C+NARKA,387,474,698152377,10311,0 +13534,Ethan+Hunt+05,617,485,698702991,9750,0 +13535,012+%28Popeye14%29,415,582,698769107,9835,1 +13536,Brat447,384,505,699262350,10069,0 +13537,006.+Gloria+Victis,444,600,848886973,10595,0 +13538,Wioska+barbarzy%C5%84ska,591,570,6929240,9093,0 +13539,C001+Las+Noches,608,560,8096537,9742,0 +13540,Ethan+Hunt+07,618,492,698702991,9664,0 +13541,scofield+darmiarz+mehehe,487,613,699494488,10247,0 +13542,Wioska,383,500,849084005,10178,0 +13543,0000021%40,433,598,849089881,9707,0 +13544,%23039,483,613,699605333,10393,0 +13545,FKG+01-23,424,413,356642,9835,0 +13546,%5B0007%5D,420,415,8630972,10495,0 +13547,008,618,498,849006412,9879,0 +13548,123.+Z%C5%82ote+Wzg%C3%B3rza,618,474,8337151,10083,0 +13549,Brat447+XXX,382,499,699262350,10481,2 +13550,%23+Szymi+5,391,545,699604515,5836,0 +13551,Gravity,401,445,698962117,9484,0 +13552,11+im+%C5%81ukszyna,591,428,849037469,9809,0 +13553,%5B0028%5D,449,394,8630972,10495,0 +13554,%5B350%5D+Chor%C4%85giewka+na+wietrze,588,422,848985692,10068,0 +13555,%7E073.,486,614,7139820,10495,0 +13556,08+Suuuuu,405,568,9167250,7665,0 +13557,Lord+Arsey+KING,582,585,848956513,10285,0 +13558,027+Wioska,612,521,8323711,10478,0 +13559,0008,426,411,3909522,9886,0 +13560,%5B224%5D+WEST,608,459,848985692,10159,0 +13561,072+-+Antwerpia,421,587,225023,9225,0 +13562,ww+003,443,598,849084740,9745,3 +13563,KONFA+TO+MARKA%2C+NARKA,386,465,698152377,10311,0 +13564,HOTEL+2,576,415,849064614,9742,0 +13565,%5B357%5D+Chor%C4%85giewka+na+wietrze,591,432,848985692,10479,0 +13566,033,591,576,699373599,10068,5 +13568,FAKE+OR+OFF,437,404,698231772,9823,0 +13569,043+InnyNizWszyscy,541,389,699491076,10001,0 +13570,124+Wioska+barbarzy%C5%84ska,399,562,699382126,10029,0 +13571,127+s002,400,560,699382126,7344,0 +13572,%23051.,616,486,556154,9735,0 +13574,%5B315%5D+Chor%C4%85giewka+na+wietrze,598,439,848985692,10403,0 +13575,Wioska+sb,405,572,9167250,9404,0 +13577,%2A309%2A,511,617,606407,10295,0 +13578,Horyzont+zdarze%C5%84,536,621,7581876,10019,0 +13579,MojeSzczytToTw%C3%B3jDno,526,387,828637,10476,0 +13580,003.xxx,466,611,8612358,9914,4 +13581,Bucksbarzy%C5%84sKamiiiru,380,516,848955783,9011,0 +13582,A0014,384,484,8841266,10252,0 +13583,NIERAJ007,467,609,33900,10006,0 +13584,%5B206%5D+WEST,606,448,848985692,9975,6 +13585,010+Anatol,617,519,8323711,10495,0 +13586,016+Jestem+na+tak,600,441,698829590,10479,0 +13587,Kiedy%C5%9B+Wielki+Wojownik,389,457,8632462,9835,0 +13588,Wi%C4%99cbork,416,581,698769107,10019,5 +13589,003,497,383,698739350,9761,0 +13590,Tuchola,412,575,698769107,9835,0 +13591,008.+Brundisium,611,465,849091866,9231,0 +13593,K34+-+%5B068%5D+Before+Land,457,391,699088769,10016,0 +13595,015.+Gloria+Victis,424,592,848886973,10559,0 +13596,-+020+-,546,608,849018239,10000,0 +13597,Wioska+Woki606,383,484,699523631,10474,0 +13598,A0028,388,478,8841266,10252,0 +13599,09+Tytanowy+kr%C4%99gos%C5%82up%28Maczeta.%29,417,568,698769107,9835,0 +13600,FAKE+OR+OFF,442,398,698231772,9816,0 +13601,Bucksbarzy%C5%84sKamiiiru,386,515,848955783,7778,0 +13602,%5B0008%5D+Raf,424,410,8630972,10495,0 +13603,Ethan+Hunt+06,614,492,698702991,9653,0 +13604,scoti,491,618,699494488,10217,0 +13605,South+K35,553,396,699146580,9809,0 +13606,K44+x029,433,404,698364331,6602,0 +13607,036,485,382,698739350,9761,0 +13609,NIERAJ002,469,611,33900,10232,0 +13610,060,576,411,849064752,10311,3 +13611,Szlachcic,455,392,698388578,10237,0 +13612,010.+Gloria+Victis,425,591,848886973,10441,0 +13613,095+B%C4%98D%C4%98+ICH+POZDRAWIA%C4%86,411,553,699382126,11489,0 +13614,0108,461,550,698659980,8163,0 +13615,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,547,699364813,5732,0 +13616,011+Anatol,616,518,8323711,10495,0 +13617,037,614,487,849006412,9871,0 +13618,FAKE+OR+OFF,446,400,698231772,9819,0 +13619,Wioska+wymiany+surowc%C3%B3w,609,539,2999957,10242,0 +13620,%5B316%5D+Chor%C4%85giewka+na+wietrze,597,439,848985692,10406,0 +13621,%23005.485%7C496,604,447,556154,9735,0 +13622,012.+Messana,612,468,849091866,9289,0 +13623,Kentin+ufam+Tobie,433,402,699783765,10000,0 +13624,Naboo,491,615,699383121,8380,0 +13625,%7E091.,495,616,7139820,10495,0 +13626,0004,423,412,3909522,10393,0 +13627,Land+of+Fire,398,450,698962117,9489,0 +13628,Gryfios+011,615,533,698666810,10495,0 +13629,sony911,562,610,1415009,10205,0 +13630,z+012,559,598,699342219,10479,0 +13631,A+004,596,561,8078914,10478,0 +13632,A0015,376,469,8841266,10252,0 +13633,Wioska+barbarzy%C5%84ska,586,582,1715091,9768,0 +13634,poldi+czytaj+PW,596,567,6929240,9167,0 +13635,Lord+Arsey+KING,583,585,848956513,10285,0 +13636,HOTEL+7,571,407,849064614,9761,0 +13637,Sk%C5%82ad,510,614,606407,10295,0 +13638,Wall+Market,466,610,8199417,10362,0 +13639,%C5%9Amieszki,532,612,3454753,9009,0 +13640,005,392,499,699510259,9761,0 +13641,058.+Durocorotum,602,442,849091866,8563,0 +13643,Land+of+Fire,397,450,698962117,9495,0 +13644,010+%28Popeye14%29,416,580,698769107,9637,0 +13645,%5B311%5D+Chor%C4%85giewka+na+wietrze,597,437,848985692,10400,0 +13647,Mako+Reactor+1+-+B7F,517,614,8199417,10426,0 +13649,Dhaulagiri,382,500,699265922,9747,0 +13650,080,618,494,699573053,10481,0 +13651,0014+Oz,432,408,3909522,10495,0 +13652,EKG+.%3A%3A.+Siwyy8848%2F4,494,616,33900,10495,0 +13654,FAKE+OR+OFF,444,398,698231772,9822,0 +13655,%2A306%2A,511,614,606407,10295,0 +13656,%5B0009%5D,449,398,8630972,10495,0 +13657,%C5%9Amieszki,533,614,3454753,9111,0 +13658,005.xxx,465,609,8612358,10160,0 +13659,NOT%3F,409,549,9236866,10042,0 +13660,A0024,385,474,8841266,10252,0 +13661,001.,609,536,6520732,10019,0 +13663,%23009,473,613,699605333,10393,0 +13664,022+R3MIX97,621,518,8323711,10481,0 +13665,00061+Wioska,428,410,3909522,10012,0 +13666,Osada+koczownik%C3%B3w,391,464,698807570,10057,9 +13667,Wioska+loos,411,574,9167250,9427,0 +13668,PYRLANDIA+007+POD+c,569,594,33900,10072,0 +13669,B001,509,385,7758085,9925,0 +13670,a+mo%C5%BCe+off+%3F+%3A%29,582,586,698768565,9969,0 +13671,116,583,419,849064752,10311,0 +13672,EKG+022,494,619,33900,10397,6 +13673,134+S016,402,563,699382126,7228,0 +13674,MojeSzczytToTw%C3%B3jDno,535,387,828637,10478,0 +13675,0325,445,605,698659980,10083,0 +13676,Szlachcic,613,468,7915966,10066,0 +13677,Knowhere,386,491,699723284,10484,0 +13678,Wioska+021,587,581,848971079,9761,0 +13680,06.+Aranea+Highwind,518,618,8199417,10495,0 +13681,DOM+6,565,404,849064614,10048,0 +13682,061,548,392,849064752,10311,0 +13683,%2A0013+Baraki,600,437,8459255,10195,0 +13684,%23005,470,614,699605333,10393,3 +13685,067,584,592,698999105,10311,0 +13686,015.,566,596,873575,9913,0 +13687,Sztum,511,618,606407,10303,0 +13688,%5B341%5D+Chor%C4%85giewka+na+wietrze,592,423,848985692,9696,0 +13689,%23005+S,471,614,33900,12154,3 +13690,M%C5%81ODE+OR%C5%81Y+002,576,600,33900,10083,0 +13691,Cypis,400,437,698884287,10285,0 +13692,a+mo%C5%BCe+off+%3F+%3A%29,576,590,698768565,9557,0 +13693,020,488,386,698739350,9761,0 +13694,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,462,608,8201460,10237,0 +13695,Mniejsze+z%C5%82o+0013,388,463,699794765,9556,0 +13696,00353+Nibylandia,428,420,3909522,10239,0 +13697,006,548,394,1424656,9783,0 +13698,029,488,382,698739350,9761,0 +13699,K34+-+%5B066%5D+Before+Land,464,388,699088769,10126,0 +13700,004.,563,595,873575,10254,0 +13701,00173+Wie%C5%9B,434,405,3909522,4856,0 +13702,.achim.,519,385,6936607,10311,0 +13703,Nanga+Parbat,381,498,849013126,9697,0 +13704,028+NOF+CHERCH,625,511,8323711,10495,0 +13705,D06,617,483,849093742,10083,0 +13706,00171+dziki+ogon,438,407,3909522,4799,0 +13707,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,393,545,699364813,6284,0 +13708,01+Molly,616,503,699377151,9170,0 +13709,0424,547,609,698659980,10019,0 +13711,Bagdad,471,387,8847546,10654,0 +13712,037,557,398,849063849,10061,0 +13713,A.023,412,581,849088243,10301,0 +13714,WW8,617,481,698845189,10083,0 +13715,023,562,404,699761749,10495,0 +13716,x03,406,432,698884287,10285,0 +13717,010.+G%C3%B3ry+Szare,490,619,699494488,9828,0 +13718,Teby_26,502,619,2585846,9638,0 +13719,077+-+Stronghold,421,589,225023,10495,0 +13720,022,545,391,1424656,9612,0 +13721,Twierdza,505,381,699368887,10301,0 +13722,Wioska,384,508,849084005,10178,0 +13723,Lord+Arsey+KING,582,584,848956513,10285,0 +13724,.027.,483,385,698489071,10301,0 +13725,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+13,616,511,699379895,8142,0 +13726,011,503,384,698739350,9761,0 +13727,SSJ+008,500,615,699054373,9761,0 +13728,.017.,483,383,698489071,10316,0 +13729,Horyzont+zdarze%C5%84,536,613,7581876,10019,0 +13730,Gattacka,578,498,699298370,10556,0 +13731,Z+003,563,598,699342219,10478,0 +13732,A012,513,383,7758085,9925,0 +13733,K34+-+%5B009%5D+Before+Land,458,389,699088769,10375,0 +13734,%23015,486,606,849001572,9745,0 +13736,%5B336%5D+Chor%C4%85giewka+na+wietrze,587,421,848985692,10527,0 +13737,28.+Wioska+28,409,570,849091769,10003,0 +13738,075+-+Schowek+na+bity,423,588,225023,8446,0 +13739,Abadonia+ZZZ,618,486,699347951,11111,0 +13740,ADEN,526,383,698588535,9737,0 +13741,039,591,575,699373599,10068,0 +13742,NWO,386,524,849030226,9762,0 +13743,064+-+Nuda,427,587,225023,10495,0 +13744,006,565,399,849063849,9840,0 +13745,Bucks+x+Kamiiiru,450,607,848955783,10083,0 +13747,Jaaa,609,464,698635863,10280,0 +13748,0039,615,519,6510480,9367,0 +13749,A018,518,383,7758085,10094,0 +13751,043,568,407,7271812,10205,0 +13752,A.013,596,563,9188016,10000,0 +13753,066,474,388,698739350,8664,0 +13754,K44+x005,437,403,698364331,9466,0 +13755,Kiedy%C5%9B+Wielki+Wojownik,392,456,8632462,9612,0 +13756,W+001+bombastik,431,592,849084740,9610,0 +13757,W.181%2F15,611,537,2999957,10242,0 +13758,013,612,529,698999105,10311,0 +13759,.achim.,526,385,6936607,10311,0 +13760,Wioska+MaximusGreat,529,386,1990750,10068,0 +13761,019,573,408,7271812,10495,0 +13762,029,557,394,849063849,9924,0 +13763,Knowhere,385,493,699723284,10374,0 +13764,OldTrafford,620,509,699795378,9951,0 +13765,z+004,561,599,699342219,10495,0 +13766,.achim.,522,387,6936607,10311,0 +13767,Szlachcic,486,467,699098531,10292,0 +13768,S%C4%99p%C3%B3lno+Kraje%C5%84skie,412,577,698769107,9835,1 +13769,102+Mykni%C4%99ty+jak+102,393,551,699382126,10495,0 +13770,Kentin+ufam+Tobie,402,484,699783765,10000,0 +13771,%2A003+Grenlandia,389,540,699425709,9873,0 +13772,K34+-+%5B069%5D+Before+Land,454,393,699088769,10259,0 +13774,FAKE+OR+OFF,438,400,698231772,9830,0 +13775,A001,520,368,699208929,10356,0 +13776,030+Zakyntos,614,516,8323711,10144,7 +13777,Wioska+barbarzy%C5%84ska,403,436,698884287,10285,0 +13778,Mniejsze+z%C5%82o+0075,388,460,699794765,11079,0 +13779,078,575,411,849064752,10013,5 +13780,Lord+Arsey+KING,581,584,848956513,10285,0 +13781,11+VHS,619,514,9314079,9624,0 +13782,PYRLANDIA+006,569,593,33900,9839,0 +13783,Barba+2,432,407,699796330,9928,0 +13784,A.009,602,557,9188016,10000,0 +13785,069,585,589,698999105,10311,0 +13786,0017.+A+-,616,515,7125212,6728,0 +13787,Wioska5%2C,509,592,8369778,8452,0 +13788,C+Zach+006+Pyskowice,411,572,849084740,7574,0 +13789,014,617,501,849006412,10533,0 +13790,0037,462,610,698659980,10160,5 +13791,x12,404,429,698884287,10285,0 +13792,%5B0010%5D,423,409,8630972,10495,0 +13793,%2A+1+Teraz+bedzie+Akcja+-2,595,434,848985692,10052,0 +13794,Zeta+Reticuli+S,414,419,699323302,11188,0 +13795,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,395,549,699364813,8397,0 +13796,Zeta+Reticuli+S,409,428,699323302,10838,0 +13797,K44+x016,433,405,698364331,8135,0 +13798,CALL+1009,525,613,699784536,10311,0 +13800,088,615,492,699573053,10095,0 +13801,z+008,560,601,699342219,10475,0 +13802,%5B0027%5D,448,393,8630972,10495,0 +13804,042,498,381,698739350,7200,0 +13805,Wioska,387,520,849084005,10178,0 +13806,Wioska,383,519,849084005,10178,0 +13807,012,605,546,6160655,10566,0 +13808,Belvedere+003,578,409,699756210,9797,0 +13809,FAKE+OR+OFF,435,401,698231772,9828,0 +13810,Runing+Up+That+Hill,596,566,848926293,9469,7 +13812,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,391,550,699364813,6385,0 +13813,Negr,381,493,699265922,9746,0 +13814,Emklan+Biedanu,516,371,828637,10495,0 +13815,ADEN,520,384,698588535,9737,0 +13816,Lord+Arsey+KING,540,532,848956513,10285,0 +13817,Chojnice,409,571,698769107,9835,0 +13819,002,567,401,849063849,10495,0 +13820,0328,449,605,698659980,10019,0 +13822,0334,447,603,698659980,10019,0 +13823,Wioska,383,521,849084005,10178,0 +13824,%3D003%3D+W+czarnym+lesie,609,550,3781794,10357,0 +13825,0203,452,610,698659980,10019,0 +13826,bucks+x+kamiiiru,413,418,848955783,10838,0 +13827,Madryt+%28Mieszko+1995%29,413,581,698769107,9835,0 +13828,Wioska+bary20006,589,576,1715091,9753,0 +13829,017,492,385,698739350,9761,0 +13830,050.,486,627,699494488,10237,0 +13831,R%C4%99cznik+do+zmiany,400,433,699697558,10160,0 +13832,.018.,482,383,698489071,10595,0 +13833,Myk+i+do+kieszonki,383,514,9319058,8521,0 +13834,B01.+obstawiona+%28Motonari%29,441,599,698769107,10375,3 +13835,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,396,549,699364813,9277,0 +13836,A0030,387,481,8841266,10252,0 +13837,003,606,545,6160655,10563,0 +13838,Piek%C5%82o+to+inni,477,388,848956765,10160,0 +13839,Oaza,380,496,699265922,9752,0 +13840,071,481,381,698739350,7378,0 +13841,Myk+i+do+kieszonki,383,513,9319058,10051,0 +13842,0012,613,524,6510480,10192,0 +13843,amator,527,613,848915531,9176,0 +13844,EKG+M07,476,615,33900,10273,0 +13845,K55,544,538,698867483,10019,0 +13846,055,546,421,7271812,10495,0 +13847,016.+Gloria+Victis,424,593,848886973,10728,0 +13848,Sk%C5%82ad,508,617,606407,8672,2 +13849,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,456,606,8201460,10237,0 +13850,23+XXX,619,493,699377151,456,0 +13851,023,499,384,698739350,9761,0 +13853,Gattacka,587,500,699298370,9744,0 +13854,NIERAJ003,469,613,33900,10215,0 +13855,Wioska+xHavajek,395,464,698807570,10068,0 +13856,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,459,613,8201460,10237,0 +13857,ADEN,521,383,698588535,10287,3 +13858,Kentin+ufam+Tobie,437,402,699783765,10000,0 +13859,bucks+x+kamiiiru,411,421,848955783,10506,0 +13860,006.,563,600,873575,10291,0 +13861,033+Lesbos,613,518,8323711,10152,0 +13862,002,581,598,698999105,10311,0 +13863,Wioska+henry113,512,384,699368887,10237,0 +13864,003,615,500,849006412,9825,0 +13865,Zulus,384,489,699265922,9804,0 +13866,Wioska,385,525,849084005,10178,0 +13867,Czako,383,493,699265922,9825,0 +13868,L+3,615,477,849027653,10019,0 +13870,Jaaa,572,551,698635863,10475,0 +13871,PYRLANDIA+004+%2B+2R,567,593,33900,10495,0 +13872,%230020,523,625,699728159,9761,0 +13873,0022,615,529,6510480,10325,0 +13874,041-+friday,409,577,225023,10495,0 +13875,Myk+i+do+kieszonki,382,512,9319058,9799,0 +13876,Myk+i+do+kieszonki,382,509,9319058,9799,0 +13877,Myk+i+do+kieszonki,382,511,9319058,9799,0 +13878,Wioska+%28007%29,620,473,698232227,9170,0 +13880,031,489,381,698739350,9761,0 +13881,40+im+Mieklina,590,427,849037469,6683,0 +13882,K34+-+%5B084%5D+Before+Land,452,391,699088769,10259,0 +13883,A020,602,444,699722599,10233,5 +13884,A-003,533,388,1990750,10068,0 +13885,-+042+-,544,609,849018239,10000,0 +13886,D020,506,384,7758085,9925,0 +13887,Myk+i+do+kieszonki,381,516,9319058,9799,0 +13888,Wioska+barbarzy%C5%84ska,586,583,1715091,9644,0 +13889,0008,387,461,698807570,10703,0 +13890,Wioska+barbarzy%C5%84ska,416,399,699402816,9835,0 +13891,Cho+Oyu,383,494,699265922,9750,0 +13892,Twierdza+%232,505,382,699368887,10042,0 +13893,Konfederacja+8,467,386,848915730,9761,0 +13895,-+012+-,548,606,849018239,10000,0 +13896,0000004%25,425,593,849089881,10160,0 +13897,K34+-+%5B109%5D+Before+Land,452,390,699088769,10259,5 +13898,0010,386,460,3698627,10447,0 +13899,.achim.,527,386,6936607,10311,0 +13900,%23061,481,617,699605333,10393,0 +13901,017,615,501,849006412,9827,0 +13902,Wioska+019,591,577,848971079,9761,0 +13903,K34+-+%5B072%5D+Before+Land,450,391,699088769,10126,0 +13904,0330,447,606,698659980,10019,0 +13905,096+Mienia+zaw%C3%B3d+Roman+Ch%C4%99do%C5%BCy,395,556,699382126,10484,0 +13906,092+PYTA%C5%83+BRAK,393,554,699382126,10495,0 +13907,-+086+-,549,608,849018239,10000,0 +13908,W.181%2F10,616,526,2999957,10242,0 +13909,FKG+01-06,421,411,356642,9835,0 +13910,%5B0074%5D,451,394,8630972,10495,0 +13911,.%3A117%3A.+Niangmen,507,396,848934935,10393,0 +13912,%2A304%2A,509,615,606407,10300,0 +13913,026,502,628,699878511,10146,0 +13914,A016,608,447,699722599,10484,0 +13915,Suppi,426,424,699856962,9745,0 +13916,Wioska,381,505,849084005,10178,0 +13917,D010,598,415,699761749,9467,0 +13918,%C5%9Amieszki,533,610,3454753,9017,0 +13920,Wioska,388,537,849084005,10178,0 +13921,bucks+x+kamiiiru,411,422,848955783,10564,0 +13922,Wioska,382,523,849084005,10178,0 +13924,%5B212%5D+WEST,609,452,848985692,10048,0 +13925,Wioska,381,502,849084005,10178,0 +13926,%C5%9Amieszki,529,616,3454753,9155,0 +13927,Kentin+ufam+Tobie,436,402,699783765,10000,0 +13928,Wioska,384,518,849084005,10178,0 +13929,K34+-+%5B088%5D+Before+Land,451,391,699088769,10259,0 +13930,JaawmG+P,617,473,698635863,9888,0 +13931,MojeSzczytToTw%C3%B3jDno,531,389,828637,10478,0 +13932,%23028,457,607,699605333,10728,0 +13933,Kiedy%C5%9B+Wielki+Wojownik,390,458,8632462,9620,0 +13934,Wioska,381,519,849084005,10178,0 +13935,Wioska+barbarzy%C5%84ska,383,526,849030226,9975,0 +13936,Wioska+015,593,576,848971079,9761,0 +13937,Kentin+ufam+Tobie,434,401,699783765,10000,0 +13938,079+FAT+FAT,581,413,699491076,10001,0 +13939,030,501,374,698739350,9761,0 +13940,Wioska,382,505,849084005,10178,0 +13941,ADEN,524,384,698588535,10154,0 +13942,Lord+Arsey+KING,580,587,848956513,10285,0 +13943,rakieta+005,612,543,848928486,9843,0 +13945,007,620,502,849006412,9709,0 +13946,%5B0110%5D,421,415,8630972,10259,0 +13947,00172,439,406,3909522,4296,0 +13948,Myk+i+do+kieszonki,380,512,9319058,8279,0 +13949,Mzm49,544,517,7142659,8748,0 +13950,FAKE+OR+OFF,434,402,698231772,9813,0 +13951,Sir+Hood+3,385,531,1804724,9335,0 +13952,z+024,560,604,699342219,10495,0 +13953,FAKE+OR+OFF,439,401,698231772,9817,0 +13954,%7E%7ELataj%C4%85cyHolender%7E%7E,598,495,9174887,10144,0 +13955,Wioska,385,535,849084005,10178,0 +13956,WB3,387,529,849030226,9400,0 +13957,A0026,384,475,8841266,10252,0 +13958,Szlachcic,587,418,699170684,9453,0 +13959,Wioska+barbarzy%C5%84ska+007%7C,575,407,6343784,9740,0 +13960,%5B0011%5D,420,414,8630972,10495,0 +13961,D022,508,382,7758085,9861,0 +13962,.achim.,523,387,6936607,10311,0 +13963,z+026,561,603,699342219,10217,0 +13964,szlachcic,385,469,698807570,10311,0 +13965,011.+Gloria+Victis,424,589,848886973,10449,0 +13966,.achim.,536,423,6936607,10311,0 +13967,%7E%7ELataj%C4%85cyHolender%7E%7E,607,499,9174887,10139,0 +13968,035,557,400,849063849,10393,0 +13969,Wioska+barbarzy%C5%84ska,600,567,6929240,8917,0 +13970,006.,612,537,6520732,9835,0 +13971,Wioska+barbarzy%C5%84ska,387,526,849030226,10475,0 +13972,%5B209%5D+WEST,609,453,848985692,10052,0 +13973,%5B081%5D,532,528,848985692,10373,0 +13974,HOTEL+6,570,407,849064614,9750,0 +13975,017,557,397,849063849,10147,0 +13976,016,617,496,849006412,9676,0 +13977,Wioska,383,528,849084005,10178,0 +13978,008,556,393,849063849,9797,0 +13979,Land+of+Fire,395,446,698962117,9515,0 +13980,Bagdad,476,383,8847546,10654,0 +13981,003+%28Popeye14%29,410,579,698769107,9899,0 +13982,W+004,431,597,849084740,8353,0 +13983,Myk+i+do+kieszonki,380,511,9319058,9799,0 +13984,In+The+End,595,567,848926293,9270,0 +13986,Gasherbrum+I,379,501,699265922,9820,0 +13987,012.+G%C3%B3ra+Gundabad,488,619,699494488,10476,0 +13988,Bagdad,473,385,8847546,10654,0 +13990,08+Crash+Test,618,509,699377151,9124,0 +13991,%5B0012%5D,453,394,8630972,10495,0 +13992,Gryfios+001a,613,539,698666810,10487,0 +13994,022+-+Lamanai,429,596,225023,10495,0 +13995,Wioska+%28042%29,618,483,698232227,9989,0 +13996,083,607,514,699373599,10093,0 +13997,MojeSzczytToTw%C3%B3jDno,534,386,828637,10479,0 +13998,002,608,542,6160655,10822,0 +13999,A.005,604,551,9188016,10000,9 +14000,005+Wioska+barbarzy%C5%84ska,529,379,699854484,10068,0 +14001,Sony+911,562,602,1415009,10205,0 +14002,Foteviken,536,383,1990750,10068,0 +14003,a+mo%C5%BCe+off+%3F+%3A%29,584,586,698768565,9774,0 +14004,006+TiZi+iZi,384,560,699382126,10495,0 +14005,a+mo%C5%BCe+off+%3F+%3A%29,574,589,698768565,9780,0 +14006,076,609,527,699373599,10093,0 +14007,002.+Orkowe+Wzg%C3%B3rze,488,618,699494488,10292,0 +14008,bucks+x+kamiiiru,413,423,848955783,10971,9 +14010,%23029,458,608,699605333,10728,0 +14011,5.+Szopienice,478,538,699781762,10394,0 +14012,Barba+4,431,404,699796330,10169,0 +14013,005,498,383,698739350,9761,9 +14014,155,549,390,849064752,10311,0 +14015,0354,445,606,698659980,10160,0 +14016,South+K35,555,395,699146580,9809,0 +14017,%23006,474,616,699605333,10393,1 +14018,Czekam+na+VS,538,384,698350371,10495,0 +14019,%230022,543,611,1536231,10495,0 +14020,D004,585,418,699761749,10311,0 +14021,Mniejsze+z%C5%82o+0015,388,462,699794765,8735,0 +14022,Taran,543,388,699170684,10104,0 +14023,scoti,492,618,699494488,10217,0 +14024,C003,521,387,7758085,9925,0 +14025,D02,614,475,849093742,10160,0 +14026,A.024,411,579,849088243,9419,0 +14027,%5B0013%5D,419,414,8630972,10495,0 +14028,066,585,597,698999105,10311,0 +14029,PYRLANDIA+013+%24,573,591,33900,10220,0 +14030,Wioska+barbarzy%C5%84ska,405,570,9167250,9868,0 +14031,-+001+-,551,604,849018239,10000,0 +14032,Wioska,388,538,849084005,10178,0 +14033,056+Trelleborg,533,385,699491076,10001,1 +14034,015+Seba,618,520,8323711,10495,0 +14035,Bocianikson006,611,547,7528491,9955,0 +14036,Avanti%21,381,487,698625834,9956,0 +14037,0002,529,617,848915531,11824,0 +14038,A0022,383,477,8841266,10252,0 +14039,A0049,382,473,8841266,10252,0 +14040,Kiedy%C5%9B+Wielki+Wojownik,391,460,8632462,9835,0 +14041,003,544,608,699189792,9761,0 +14042,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,394,550,699364813,7079,0 +14044,Wioska+barbarzy%C5%84ska,572,597,930720,4022,0 +14045,%5B216%5D+WEST,613,456,848985692,10057,0 +14046,Myk+i+do+kieszonki,381,504,9319058,9799,0 +14047,A002,515,384,7758085,10094,0 +14048,Feed+me+more+012,488,383,699756210,10465,0 +14049,s181eo13,391,452,393668,9886,0 +14050,CALL+1013,524,616,699784536,10311,0 +14051,0014+A+Wioska,432,406,3909522,10136,0 +14052,%5B0014%5D,421,414,8630972,10495,0 +14053,ADEN,517,382,698588535,10338,0 +14054,009,562,401,7271812,10495,0 +14055,Twierdza+2,613,460,848935020,10126,0 +14056,R%C4%99cznik+do+zmiany,385,483,699697558,10495,9 +14057,025.+Venetia,613,465,849091866,9228,0 +14058,014.,566,600,873575,9839,0 +14059,%2A023%2A,619,521,698670524,8462,0 +14060,A.010,605,556,9188016,10000,0 +14062,%23035,444,602,699605333,10393,0 +14063,022.,564,602,873575,9869,0 +14064,HOTEL+10,567,399,849064614,9778,0 +14065,RHUDAUR+f,534,467,8155296,11078,0 +14066,Wioska+barbarzy%C5%84ska,407,425,7462660,10068,0 +14067,CALL+917,554,607,699784536,10311,0 +14068,%23016+A,464,614,33900,10160,0 +14069,004.+Gloria+Victis,441,605,848886973,10838,0 +14070,CALL+921,556,605,699784536,10311,0 +14071,%5B0030%5D,450,394,8630972,10495,0 +14072,s181eo08,391,448,393668,9886,0 +14073,-+088+-,549,606,849018239,10000,2 +14074,Knowhere,383,502,699723284,10452,0 +14075,W+005,431,598,849084740,8002,0 +14077,FAKE+OR+OFF,437,399,698231772,9819,0 +14078,.achim.,524,385,6936607,8461,0 +14079,K34+-+%5B062%5D+Before+Land,457,388,699088769,10259,0 +14081,011,504,379,849010255,9821,0 +14083,ADEN,520,383,698588535,9737,0 +14084,s181eo07,400,444,393668,9902,0 +14085,CALL+1011,524,613,699784536,10495,0 +14086,096+Wioska+barbarzy%C5%84ska,579,415,699491076,9786,0 +14087,01.+Dzikie+Pandy,403,565,9167250,8851,0 +14088,Wioska,380,517,849084005,10178,0 +14089,Abadonia+XXX,618,489,699347951,11808,0 +14090,0552,499,620,698659980,9968,0 +14091,szcz%C4%99%C5%9Bliwego+nowego+fejkomatu,402,562,699364813,4037,0 +14092,123+S014,397,558,699382126,9534,0 +14093,015,484,620,699494488,9980,0 +14094,%23002,468,613,699605333,10393,0 +14095,PYRLANDIA+001+S,570,593,33900,10222,2 +14096,Kentin+ufam+Tobie,379,445,699783765,10000,0 +14097,%23009+A,465,613,33900,10311,0 +14098,180+Montevideo,482,479,1497168,9771,0 +14099,089,618,493,699573053,10495,0 +14100,176+Mar+Del+Plata,481,481,1497168,9761,0 +14101,R%C4%99cznik+do+zmiany,398,436,699697558,10319,0 +14102,Piek%C5%82o+to+inni,481,384,848956765,10160,0 +14103,FAKE+OR+OFF,441,397,698231772,9819,0 +14104,0003,425,411,3909522,10083,0 +14105,-007-+%28WiotrPitczak%29,416,582,698769107,9055,6 +14106,EKG+M05,478,614,33900,10247,0 +14107,043,542,613,699189792,9747,0 +14108,038,493,383,698739350,9761,0 +14109,%23041,452,608,699605333,10393,0 +14110,Westcoast.005,400,432,848918380,10178,0 +14111,018.+Gloria+Victis,432,600,848886973,10436,0 +14112,PataTaj,431,403,699796330,9887,6 +14113,001.+Gloria+Victis,436,602,699697558,6989,0 +14114,004,386,459,3698627,9963,0 +14115,Szlachcic,453,389,698388578,10237,3 +14116,dawaj+ziomek,392,543,849095014,5829,0 +14117,003+arepa,608,518,8323711,10495,0 +14118,0436,542,620,698659980,10019,0 +14119,Kiedy%C5%9B+Wielki+Wojownik,388,457,8632462,10611,0 +14120,0048,436,599,699697558,10845,0 +14121,141,545,393,849064752,10311,0 +14122,Gravity,400,452,698962117,9505,0 +14123,s181eo09,392,446,393668,9885,0 +14124,%5B325%5D+Chor%C4%85giewka+na+wietrze+RRR,599,433,848985692,10403,0 +14125,017,544,392,1424656,10460,0 +14126,0021+Ja+tu+tylko+po+gie%C5%82de,433,411,3909522,10152,0 +14127,A009,608,449,699722599,10362,0 +14128,Wioska+Wielkie+Oczy,398,564,9167250,10319,0 +14129,%23017,473,617,699605333,10393,0 +14130,ESSA+%28Kamaaam%29,419,584,698769107,9835,0 +14131,Teby_27,501,620,2585846,9638,0 +14132,7.62+mm,479,438,699777234,9827,0 +14134,Land+of+Fire,394,444,698962117,9488,0 +14135,Wioska+barbarzy%C5%84ska,595,574,6929240,8980,0 +14136,Mniejsze+z%C5%82o+0020,389,463,699794765,9712,0 +14137,019,556,394,849063849,10224,0 +14138,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,460,609,8201460,10237,0 +14139,001,581,600,698999105,10311,0 +14140,Wioska,382,517,849084005,10178,0 +14141,Szlachcic,590,418,699170684,9379,0 +14142,0041,461,610,698659980,10019,0 +14143,Najlepszy+s%C4%85siad+010,602,441,699756210,10273,0 +14144,Tylko+Tesco+JL,602,519,698845189,10019,0 +14145,A020,510,380,7758085,9925,0 +14146,Ciiichutko,590,421,848985692,10030,2 +14147,0032,425,409,848913037,9993,0 +14148,035,599,562,699373599,10068,0 +14149,Buszmen,380,492,699265922,9761,0 +14150,%5B343%5D+Chor%C4%85giewka+na+wietrze,593,424,848985692,9791,0 +14151,%5B344%5D+Chor%C4%85giewka+na+wietrze+%3F,597,431,848985692,10400,0 +14152,X04,389,535,849030226,10490,0 +14153,Kiedy%C5%9B+Wielki+Wojownik,390,455,8632462,9438,0 +14154,.64,452,605,848955783,10971,0 +14155,K34+-+%5B098%5D+Before+Land,463,387,699088769,10259,0 +14156,017.+Gloria+Victis,434,598,848886973,10636,0 +14157,026,438,599,698659980,9381,0 +14158,EKG+M06,477,615,33900,10336,0 +14159,004,435,599,699697558,11078,0 +14160,%2A5502%2Ab+Meta%3A%29,597,563,7973893,10287,0 +14161,Wioska,384,517,849084005,9542,0 +14163,014.+Gloria+Victis,442,601,848886973,10470,0 +14164,ADEN,522,383,698588535,10338,0 +14165,CALL+918,553,607,699784536,10311,0 +14166,028+Kansas,606,490,7092442,10495,0 +14167,rakieta+007,617,529,848928486,6783,0 +14168,%23066,486,602,699605333,10728,0 +14169,bucks+x+kamiiiru,412,421,848955783,10971,7 +14170,bucks+x+kamiiiru,412,419,848955783,10971,0 +14171,Feed+me+more+006,498,379,699756210,10001,0 +14172,x08,407,429,698884287,10285,0 +14173,Pobozowisko,418,590,699513260,10954,0 +14174,Wioska,382,501,849084005,10178,0 +14175,Ok.,386,525,849030226,9257,0 +14176,%5B0015%5D,418,412,8630972,10495,0 +14177,0040,619,519,6510480,9378,0 +14178,024+Kattegat,609,558,699272880,9924,0 +14179,015,619,503,849006412,11347,0 +14180,Lord+Arsey+KING,589,581,848956513,9409,0 +14181,Bucks+x+Kamiiiru,450,608,848955783,10495,0 +14182,181-003,587,577,8876551,2610,0 +14183,0136,456,612,698659980,10083,0 +14184,%23014,475,616,699605333,10393,0 +14185,Teby_16,507,617,2585846,9638,0 +14186,042,541,613,699189792,9745,0 +14187,%C5%9Amieszki,536,616,3454753,9012,0 +14189,Bocianikson004,608,544,7528491,9966,0 +14190,osada+Marian,567,598,699364813,10495,0 +14192,Wioska+barbarzy%C5%84ska,598,570,6929240,8970,0 +14193,Teby_14,505,619,2585846,9638,0 +14194,CALL+916,554,605,699784536,10311,0 +14195,CALL+989,516,620,699784536,10311,0 +14196,Brat447,384,512,699262350,10016,0 +14197,Suppi,430,441,699856962,10247,0 +14198,Teby_13,505,618,2585846,9638,0 +14199,0325,446,608,698659980,10083,0 +14200,0041,621,514,6510480,9793,0 +14201,B+006,584,415,6384450,10362,2 +14202,0005,426,408,848913037,9993,0 +14203,A014,513,379,7758085,9925,0 +14204,07.+Iris+Amicitia,522,618,8199417,10495,0 +14205,South+K35,552,393,699146580,10042,0 +14206,014+Tampa,434,469,1497168,9761,0 +14207,A0023,386,476,8841266,10252,0 +14208,Horyzont+zdarze%C5%84,538,611,7581876,9835,0 +14209,-+027+-,548,607,849018239,10000,0 +14210,Wioska+Smerf%C3%B3w,595,572,1715091,9606,0 +14212,Wioska+Karol-boss,457,579,8438707,7086,0 +14213,XXXX,492,384,849054951,10132,6 +14214,bucks+x+kamiiiru,410,421,848955783,10971,0 +14215,Highway+to+Hell,598,564,848926293,9500,0 +14216,%7B004%7D+Shuno,534,384,698350371,10495,0 +14217,CALL+912,558,601,699784536,10311,4 +14218,34+im+Duszkina,577,400,849037469,9766,0 +14219,Pobozowisko,419,590,699513260,10714,0 +14220,0425,551,607,698659980,10019,0 +14221,K34+-+%5B060%5D+Before+Land,454,388,699088769,10126,0 +14222,Westcoast.009,400,431,848918380,10178,0 +14223,048+.Maczeta,403,564,699382126,7200,0 +14224,0002,604,552,477415,10495,0 +14225,9mm,568,599,699364813,10495,0 +14226,Do+Azot+i+nazot+puliku+jeden,392,450,699711723,9669,0 +14227,006,621,499,849006412,10311,0 +14228,HOTEL+8,574,407,849064614,9701,0 +14229,%5B329%5D+Chor%C4%85giewka+na+wietrze+%2B%2B,600,432,848985692,10411,0 +14230,Wioska+barbarzy%C5%84ska,596,569,6929240,9101,0 +14231,bucks+x+kamiiiru,409,421,848955783,10744,3 +14232,Street,584,416,848985692,10049,0 +14233,AL+002,615,480,849027653,10503,6 +14234,Wola+5,478,385,849093155,8341,0 +14235,012,560,398,7271812,10495,0 +14237,022.+Barcino,616,462,849091866,9193,0 +14238,%5B205%5D+WEST,612,454,848985692,10049,0 +14239,R%C4%99cznik+do+zmiany,402,434,699697558,10495,9 +14240,Wioska+%28044%29,617,492,698232227,7950,0 +14241,%C5%9Amieszki,534,615,3454753,9058,0 +14243,%23021,472,617,699605333,10393,0 +14244,038,570,406,849064752,10311,0 +14245,Wioska+%28006%29,619,475,698232227,8622,0 +14246,Wyzima,483,373,699658023,9742,0 +14247,A002,610,450,699722599,10160,0 +14248,Mzm12,612,532,7142659,10362,0 +14249,0014,387,458,698807570,10703,0 +14250,193,571,402,849064752,10085,0 +14251,Lord+Arsey+KING,579,590,848956513,10285,0 +14252,%C5%9Amieszki,535,616,3454753,9267,2 +14253,062,492,367,698739350,8153,0 +14254,%23011,471,616,699605333,10393,0 +14255,Sector+2+Slums+Area,504,619,8199417,10559,0 +14256,bohprawdziwy,396,563,9167250,5283,0 +14257,FAKE+OR+OFF,439,400,698231772,9817,0 +14258,Wioska+barbarzy%C5%84ska,407,423,7462660,10068,0 +14259,ADEN,526,382,698588535,10287,2 +14261,sony911,565,601,1415009,10273,0 +14262,Wioska+silnypakiao,407,421,7462660,10068,0 +14263,Wioska+016,590,580,848971079,9761,0 +14264,001,532,384,698350371,10495,0 +14265,Avanti%21,380,483,698625834,9956,0 +14266,Belvedere+004,580,412,699756210,7762,0 +14267,%5B339%5D+Chor%C4%85giewka+na+wietrze,587,422,848985692,10406,0 +14268,Omn4dreN,619,507,699379895,10495,0 +14269,Wioska,381,526,849084005,10178,0 +14270,0038,461,614,698659980,10083,0 +14272,Wioska+barbarzy%C5%84ska+010%7C,573,404,6343784,9121,0 +14273,CALL+919,553,608,699784536,10311,0 +14275,-+080+-,536,582,849018239,10000,0 +14276,030,616,472,8459255,9908,0 +14277,038,618,468,8459255,8520,0 +14278,008.+Gloria+Victis,423,590,848886973,10433,0 +14279,K34+-+%5B119%5D+Before+Land,468,386,699088769,8344,0 +14280,009,502,381,698739350,9761,0 +14281,019+Kayce,604,563,699272880,10083,7 +14282,Yogi,521,615,2808172,10019,0 +14283,K34+-+%5B054%5D+Before+Land,463,386,699088769,10259,0 +14284,Wioska9,502,589,8369778,6310,0 +14285,K34+-+%5B042%5D+Before+Land,461,384,699088769,10126,0 +14286,%2AINTERTWINED%2A,515,615,698704189,9711,4 +14287,%23002+MG,465,612,33900,10971,0 +14288,Wioska+barbarzy%C5%84ska,592,573,6929240,8972,0 +14289,Sector+2,506,621,8199417,10316,0 +14290,Wioska,381,522,849084005,10178,0 +14292,A010,607,449,699722599,10362,0 +14293,0355,444,607,698659980,10083,0 +14294,%5B0016%5D,442,395,8630972,10495,0 +14295,Bucks+x+Kamiiiru,455,608,848955783,10342,0 +14296,038+France,620,523,8323711,5880,0 +14297,Lord+Arsey+KING,587,579,848956513,7423,0 +14298,Wioska,385,539,849084005,10178,0 +14299,Pobozowisko,415,584,699513260,10971,0 +14300,Bagdad,471,382,8847546,10654,0 +14301,051+-+A03.%2A%2A%2A,438,602,225023,10495,0 +14302,005+-+Zio%C5%82owo,419,581,225023,8686,0 +14303,013.+Gloria+Victis,422,591,848886973,9973,0 +14304,041,374,535,698641566,9809,0 +14305,K34+-+%5B038%5D+Before+Land,462,388,699088769,9924,0 +14306,%2A311%2A,509,617,606407,10291,0 +14307,Lord+Arsey+KING,581,585,848956513,10285,0 +14308,Dum+Spiro+Spero,496,554,848896948,9976,0 +14309,076+Kami,620,482,7092442,10495,0 +14310,Wioska,385,517,849084005,10178,0 +14311,%23014.488%7C495,607,446,556154,9735,0 +14312,0000023%40,431,599,849089881,10160,0 +14313,02.+Lunafreya+Nox+Fleuret,524,619,8199417,10495,0 +14314,0026,617,516,6510480,10001,0 +14315,Abadonia+QQQ,619,491,699347951,12154,0 +14316,A-006,531,387,1990750,10068,0 +14317,%23006+M,464,615,33900,10045,0 +14318,B001,593,423,699722599,10487,0 +14319,%5B353%5D+Chor%C4%85giewka+na+wietrze,600,438,848985692,9288,0 +14320,Mniejsze+z%C5%82o+0078,389,461,699794765,10575,0 +14321,.005.,499,379,698489071,10595,0 +14322,Kentin+ufam+Tobie,433,399,699783765,10000,0 +14323,%2A%2A+Mysia+Trutka,598,435,848985692,10068,0 +14324,FKG+01-13,422,407,356642,9835,0 +14325,017+Valyria,606,565,699272880,10142,0 +14326,094+TO+NASZ+%C5%9AWIAT,395,557,699382126,9839,0 +14327,smiel,401,572,9167250,9231,0 +14328,073+InnyNizWszyscy,539,389,699491076,8883,0 +14329,Prabuty,508,619,606407,10306,0 +14330,kto+ananasowy+pod+wod%C4%85+ma+dom,584,583,699628084,9797,0 +14331,041.,489,628,699494488,10237,0 +14332,K34+-+%5B031%5D+Before+Land,465,382,699088769,10259,0 +14333,Wioska,388,540,849084005,10178,0 +14334,Zeta+Reticuli+S,414,414,699323302,10838,0 +14335,Mzm09,614,530,7142659,10495,0 +14336,0134,454,611,698659980,10019,0 +14337,Mniejsze+z%C5%82o+0014,389,464,699794765,9343,0 +14338,01.+Noctis+Lucis+Caelum,521,620,8199417,10495,0 +14339,Evergreen+Park,526,623,8199417,10495,0 +14340,Kentin+ufam+Tobie,429,403,699783765,10003,0 +14341,Moongoose,467,626,699443920,9994,0 +14342,%5B0017%5D,423,410,8630972,10495,0 +14343,%5B312%5D+Chor%C4%85giewka+na+wietrze,598,434,848985692,10411,0 +14344,L+2,619,479,849027653,10102,0 +14345,009.+Gloria+Victis,422,590,848886973,10429,0 +14346,0138,453,613,698659980,10019,0 +14347,004.,443,603,699695167,10267,0 +14348,13+Furioza,620,508,699377151,4858,0 +14349,0008.+A+-+Gilead,607,517,7125212,9761,0 +14350,Wioska,384,521,849084005,10178,0 +14351,ADEN,525,384,698588535,9737,3 +14352,Bocianikson005,611,543,7528491,9949,0 +14353,097+Jesie%C5%84+%C5%9Bredniowiecza,398,558,699382126,10490,0 +14354,062,563,391,849064752,10311,0 +14355,HOTEL+9,577,407,849064614,9753,0 +14356,ccc,609,554,7047342,10475,0 +14357,K34+-+%5B112%5D+Before+Land,455,386,699088769,10259,0 +14360,008+Carvahall,614,470,8337151,10083,9 +14361,FKG+01-07,417,403,356642,9835,0 +14362,Ho%C5%82opole,493,385,699433558,10311,0 +14363,K34+-+%5B039%5D+Before+Land,458,391,699088769,10259,0 +14364,B013,482,434,699299123,10161,0 +14365,048,536,615,699189792,9742,0 +14366,Szlachcic,587,417,699170684,9453,0 +14367,juz+po+ptakach,579,598,699785935,10019,0 +14368,Knowhere,373,499,699723284,7316,0 +14370,Wioska,381,523,849084005,10178,0 +14371,A.004,416,585,849088243,10401,0 +14372,0198,451,610,698659980,10083,0 +14373,Lecymy+DUR,445,396,6169408,9089,0 +14374,%5B208%5D+WEST,609,454,848985692,9977,0 +14375,011+-+Yhym,421,593,225023,9476,0 +14376,%23016,466,613,699605333,10393,0 +14377,R%C4%99cznik+do+zmiany,398,433,699697558,10160,0 +14378,0009.+C+-+Sithrim,622,502,7125212,10285,0 +14379,0042,615,523,6510480,9723,0 +14380,004.xxx,461,612,8612358,10146,0 +14381,013.+Antioch,612,464,849091866,9355,0 +14383,bucks+x+kamiiiru,407,422,848955783,10971,1 +14384,Gainer,620,519,699379895,10495,0 +14385,A0019,382,481,8841266,10252,0 +14386,0001,529,615,848915531,11321,1 +14387,ADEN,525,381,698588535,9737,0 +14388,Pobozowisko,416,588,699513260,10546,0 +14389,002,532,385,1990750,10068,0 +14390,Horyzont+zdarze%C5%84,537,612,7581876,10019,0 +14391,001,547,393,1424656,9963,0 +14392,03.+Ignis+Scienta,525,618,8199417,10495,0 +14393,Wioska+elli38,558,388,3600737,9575,0 +14394,Wioska+barbarzy%C5%84ska,405,428,7462660,10122,0 +14395,WW3,621,480,849088515,9898,0 +14396,Wioska,383,538,849084005,10178,0 +14397,Szulernia,411,417,7249451,9991,0 +14398,Wioska,382,529,849084005,10178,0 +14400,Darma,428,402,356642,9835,0 +14401,%23004+A,459,614,33900,10362,0 +14402,C+Zach+007,403,575,849084740,6351,0 +14403,.RUCH+CHORZ%C3%93W,595,573,6929240,9828,0 +14404,%5B0018%5D,441,395,8630972,10495,0 +14405,A0078,383,473,8841266,10252,0 +14406,Ponad+L%C4%85d,580,590,699785935,10160,0 +14408,%2A004+Reykjavik,387,541,699425709,9976,0 +14409,029,382,533,8908002,9993,0 +14410,018,570,404,7271812,10495,0 +14411,074+OZDR,493,632,699336777,9899,0 +14412,Taran,545,386,699170684,9761,0 +14413,095,584,413,849064752,10311,0 +14414,A021,615,452,699722599,10476,0 +14415,Wioska,381,527,849084005,10178,0 +14416,D04,620,479,849093742,10019,0 +14417,Ko%C5%82obrzeg,551,391,3600737,9549,0 +14419,-+044+-,544,610,849018239,10000,0 +14421,Avanti%21,379,483,698625834,9950,0 +14422,074+InnyNizWszyscy,540,388,699491076,10001,0 +14423,Pod,587,582,1715091,9623,0 +14424,%23+Szymi+8,389,542,699425709,9873,0 +14425,Wioska+barbarzy%C5%84ska,596,574,6929240,9037,0 +14426,Piwna+05,617,438,699812007,9181,0 +14427,bucks+x+kamiiiru,411,423,848955783,10209,0 +14428,099+Ja+nie+panimajet,393,561,699382126,6658,0 +14429,Wioska+020,588,580,848971079,9761,0 +14430,-+220+-,547,568,849018239,10000,0 +14431,A0016,385,476,8841266,10252,0 +14432,South+K45,598,428,699146580,10042,0 +14433,Wioska+024,594,576,848971079,9761,0 +14434,A016,515,378,7758085,9925,0 +14435,K34+-+%5B002%5D+Before+Land,455,388,699088769,10259,0 +14436,%2AINTERTWINED%2A,516,617,698704189,9711,0 +14437,Mzm07,618,532,7142659,10362,0 +14438,ADEN,520,382,698588535,10154,0 +14439,005+Z%C5%82ap-Mnie,602,520,8323711,10495,0 +14440,3.+D%C4%99bie%C5%84sko,511,620,606407,10452,0 +14441,047,537,614,699189792,9745,0 +14442,0003,530,618,848915531,11550,0 +14443,scofield+darmiarz+mehehe,489,618,699494488,10240,0 +14444,%C5%9Amieszki,527,615,3454753,9008,0 +14445,Berlin+%28Mieszko+1995%29,411,583,698769107,9976,0 +14446,Wioska+barbarzy%C5%84ska,408,420,698971484,10008,0 +14447,W.181%2F12,615,526,2999957,10242,0 +14448,Gryfios+004,617,538,698666810,8921,0 +14449,A0021,383,476,8841266,10252,0 +14450,Osada+koczownik%C3%B3w,405,426,7462660,10160,4 +14451,%7E019.,520,617,7139820,10495,0 +14452,012+Albo+jeste%C5%9B+pizz%40,623,463,699272633,10478,0 +14453,Wioska+barbarzy%C5%84ska+009%7C,574,404,6343784,9499,0 +14454,023,437,599,698659980,10019,0 +14455,Gryfios+010,616,541,698666810,10559,0 +14456,017+Sebix,619,522,8323711,10495,0 +14457,Kentin+ufam+Tobie,399,438,699783765,10000,0 +14458,038+-+Mroczna+Osada,613,454,849035905,12154,0 +14459,%5B342%5D+Chor%C4%85giewka+na+wietrze+PAA,592,421,848985692,9264,0 +14460,Land+of+Fire,398,440,698962117,9489,0 +14461,041,541,616,699189792,9741,0 +14462,Knowhere,383,496,699723284,10141,0 +14463,Zeta+Reticuli+S,414,416,699323302,10887,0 +14464,Jaaa,607,441,698635863,10495,0 +14465,Z+barba+013,405,573,225023,10495,0 +14466,K34+-+%5B061%5D+Before+Land,460,390,699088769,10126,0 +14467,EKG+.%3A%3A.+Siwyy8848%2F6,496,619,33900,10495,0 +14468,077,618,530,699373599,9883,0 +14469,005,385,458,3698627,10203,0 +14470,EKG+.%3A%3A.+freaky97%2F3,486,605,33900,10495,0 +14471,00011,528,614,848915531,11550,0 +14472,Jaaa,601,438,698635863,10479,0 +14473,Zeta+Reticuli+S,416,419,699323302,10997,0 +14474,Myk+i+do+kieszonki,378,509,9319058,9799,0 +14475,100+St%C3%B3kwa,400,565,699382126,10487,0 +14476,%3D004%3D+O+poranku,608,553,3781794,10145,0 +14477,019,620,504,849006412,10311,0 +14478,Land+of+Fire,397,441,698962117,9494,0 +14479,Wioska,384,524,849084005,10178,0 +14480,009.xxx,465,615,8729672,10125,0 +14481,A0013,381,476,8841266,10252,0 +14482,Czekam+na+VS,532,382,698350371,10495,0 +14483,0352,442,605,698659980,10019,0 +14484,A0004,381,471,8841266,10160,5 +14485,Bobolice,397,559,698769107,9835,0 +14486,Myk+i+do+kieszonki,383,516,9319058,9493,0 +14487,033,500,618,699878511,10149,0 +14488,004,611,539,8428196,9936,0 +14489,OB%23001,507,382,699368887,10237,0 +14490,%3D005%3D+Przyjecha%C5%82o+czarne,611,550,3781794,10133,0 +14491,%23015,469,617,699605333,10393,0 +14492,Wioska,382,503,849084005,10178,0 +14493,So%C5%82tys+Twojej+Wsi,438,395,849027025,9768,0 +14494,Szlachcic,590,419,699170684,9453,0 +14495,K34+-+%5B004%5D+Before+Land,455,387,699088769,10259,0 +14496,FKG+01-09,420,408,356642,9835,0 +14497,%23058,478,620,699605333,10728,1 +14498,Wioska+barbarzy%C5%84ska,404,425,7462660,10122,0 +14499,Jaaa,585,584,698635863,10827,0 +14500,138,588,416,849064752,10311,0 +14501,Barba+1,431,405,699796330,9895,0 +14502,Pobozowisko,418,589,699513260,8973,5 +14503,ADEN,525,380,698588535,9614,0 +14504,Wioska+barbarzy%C5%84ska,403,432,698884287,10285,0 +14505,Feed+me+more+014,486,379,699756210,9938,0 +14506,Wioska,380,525,849084005,10178,5 +14507,FKG+01-02,419,413,356642,9835,0 +14508,Kentin+ufam+Tobie,402,493,699783765,10000,0 +14509,A0017,382,479,8841266,10252,0 +14510,15+im+Galicyna,595,430,849037469,9809,0 +14511,Wioska+barbarzy%C5%84ska,597,575,1715091,9633,0 +14512,020.+Gloria+Victis,441,603,848886973,10357,0 +14513,s181eo14,392,451,393668,9883,0 +14514,SantiagoBernabeu,621,508,699795378,10654,0 +14515,052,559,398,699761749,10495,0 +14516,Wioska,382,502,849084005,10178,0 +14517,010,550,392,1424656,9810,0 +14518,Zach%C3%B3d+-+007,398,565,225023,10088,0 +14519,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,459,611,8201460,10237,0 +14520,Pobozowisko,419,588,699513260,10950,0 +14521,%23018.487%7C495,606,446,556154,9735,0 +14522,Wioska+barbarzy%C5%84ska,405,423,7462660,10068,0 +14523,012.+wraca,484,618,699494488,10229,0 +14524,058,478,384,698739350,9664,0 +14525,03+Prequel,621,500,699377151,9160,0 +14526,W.181%2F22,618,522,2999957,10242,0 +14527,0205,450,610,698659980,10147,0 +14528,0014,577,406,699485250,10211,0 +14529,Ok.,388,535,849030226,9100,0 +14530,%5B217%5D+WEST,607,453,848985692,10019,0 +14531,024+Raikiri,613,459,7092442,10495,0 +14532,A011,607,448,699722599,10252,0 +14533,018+Starfall,609,557,699272880,10595,0 +14534,Land+of+Fire,399,440,698962117,9505,0 +14535,Wioska+Matz32+181.1,591,578,1715091,10560,0 +14536,023,622,506,849006412,9819,0 +14537,Konfederacja+8,469,386,848915730,9824,0 +14538,005,602,562,848899726,9455,0 +14539,%23032,479,621,699605333,10393,0 +14540,Wioska+barbarzy%C5%84ska,380,536,849030226,10971,0 +14541,Gryfios+012,614,535,698666810,10954,0 +14543,.014.,503,380,698489071,10316,0 +14545,Bagdad,473,381,8847546,10654,0 +14546,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+06,622,514,699379895,9656,0 +14547,003.+Gloria+Victis,440,606,848886973,9956,0 +14549,%5B345%5D+Chor%C4%85giewka+na+wietrze,597,432,848985692,10403,0 +14551,Wioska+barbarzy%C5%84ska,380,528,849030226,11550,0 +14552,Myk+i+do+kieszonki,380,507,9319058,7722,0 +14553,%23016.491%7C494,610,445,556154,9735,0 +14554,008+NABOSAKASUKA,541,522,2999957,9056,0 +14555,145,581,412,849064752,10311,0 +14556,Castle+Rock,483,622,699494488,10259,0 +14557,%3D017%3D+Nowe+pokolenie,609,549,3781794,10580,0 +14558,%23013.490%7C495,609,446,556154,9735,0 +14559,SINGED+X+SZEF,491,378,699368887,9994,0 +14560,MOTEL+4,566,400,849064614,9960,0 +14561,0088,548,611,698659980,10160,4 +14563,A+002,606,558,8078914,9590,0 +14564,Cz%C5%82uch%C3%B3w,404,574,698769107,9835,0 +14565,004.+Dol+Guldur,488,621,699494488,10273,0 +14566,Wioska+barbarzy%C5%84ska24,504,377,699368887,10237,0 +14567,%5B213%5D+WEST,608,453,848985692,10013,0 +14568,%3D006%3D+Auto%2C+od+szwagra,611,552,3781794,10580,0 +14569,%5B337%5D+Chor%C4%85giewka+na+wietrze,589,421,848985692,10406,0 +14570,MojeSzczytToTw%C3%B3jDno,523,372,828637,10476,0 +14571,0021,615,530,6510480,10162,0 +14572,064,572,424,849063849,3676,0 +14573,HMB,623,503,699379895,10252,0 +14574,002,402,431,698884287,10285,8 +14575,Mako+Reactor+1+-+B6F,522,616,8199417,10083,0 +14576,Zeta+Reticuli+S,412,418,699323302,10997,0 +14578,084,584,412,849064752,9772,0 +14579,020.+Cyrene,615,460,849091866,9226,0 +14580,Konfederacja+%2B+8,469,384,848915730,9699,0 +14581,Jehu_Kingdom_08_,610,460,8785314,9993,0 +14582,24+im+Proszyna,564,396,849037469,9809,0 +14583,Jaaa,575,595,698635863,10478,0 +14584,0029,427,406,848913037,9993,0 +14585,159+Ale+mnie+g%C5%82%C3%B3wka+boli,387,549,699382126,10646,0 +14586,Z+barba+011,408,576,225023,9562,0 +14587,012+Miyazaki,621,481,7092442,10495,0 +14588,K34+-+%5B046%5D+Before+Land,457,387,699088769,10016,0 +14589,%2AINTERTWINED%2A,507,623,698704189,9711,0 +14590,Darma,427,403,356642,9835,0 +14591,Land+of+Fire,394,445,698962117,9489,0 +14592,B+004,585,419,6384450,10362,3 +14593,077,475,620,699336777,10083,0 +14594,Szlachcic,578,592,930720,10280,0 +14595,C+014+Ornontowice,419,587,849084740,7420,0 +14596,%2A013%2A,622,512,698670524,8726,0 +14597,Bagdad,473,382,8847546,10654,0 +14598,015.+Carthago,615,468,849091866,9344,0 +14599,Essos,480,621,699494488,6922,0 +14600,Makalu,380,493,849013126,9656,0 +14601,K34+-+%5B093%5D+Before+Land,462,379,699088769,10259,0 +14602,102+%2A%2A%2A5a%2A%2A%2A+Wi%C5%9Bnia,540,385,699491076,10001,0 +14603,Avanti%21,380,487,698625834,9950,0 +14604,29+im+BelaPorto,594,429,849037469,9809,0 +14605,Teby_15,506,619,2585846,9638,0 +14606,0011,614,528,6510480,10322,0 +14607,037+Pot%C4%99%C5%BCny+Dzban,391,554,699382126,10478,0 +14608,166+Ale+mnie+g%C5%82%C3%B3wka+boli,388,544,699382126,10265,0 +14609,R%C4%99cznik+do+zmiany,398,432,699697558,10495,0 +14610,R%C4%99cznik+do+zmiany,401,434,699697558,10319,1 +14611,033,620,477,849088515,10019,0 +14612,Belvedere+005,579,407,699756210,10030,0 +14613,063+-+Wara%2A%2A%2A,438,605,225023,6138,0 +14614,054,568,397,849063849,10109,0 +14615,CALL+992,554,609,699784536,10311,0 +14616,s181eo29,386,456,393668,10611,0 +14617,South+K35,558,391,699146580,9809,0 +14618,Knowhere,377,501,699723284,10506,0 +14619,Wioska+barbarzy%C5%84ska,406,422,698971484,10008,0 +14621,101+Sposob%C3%B3w+na,399,566,699382126,10490,0 +14623,.achim.,538,389,6936607,9863,0 +14624,010,623,492,849091105,10160,0 +14625,011.xxx,472,618,8612358,10146,9 +14626,Lecymy+DUR,444,394,6169408,10247,0 +14627,Jaaa,608,441,698635863,10239,0 +14628,Brat447,379,512,699262350,9000,4 +14629,Bagdad,474,381,8847546,10654,0 +14630,FAKE+OR+OFF,437,400,698231772,9819,0 +14631,0004,532,615,848915531,11321,7 +14634,0015,616,528,6510480,10322,0 +14635,K34+-+%5B065%5D+Before+Land,467,382,699088769,9847,0 +14636,Bocianikson007,609,547,7528491,9952,0 +14637,021+Pot%C4%99%C5%BCny+Dzban,394,561,699382126,6174,0 +14638,006,441,606,848886870,10495,0 +14639,Wioska+waldziu93,404,427,7462660,10122,0 +14640,K34+-+%5B047%5D+Before+Land,456,388,699088769,10259,0 +14641,Lord+Arsey+KING,586,584,848956513,6739,0 +14642,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+02,622,508,699379895,10495,0 +14643,%23018,477,620,699605333,10393,0 +14644,%23007+taki+agent,467,615,699605333,10393,0 +14645,CALL+923,556,604,699784536,10311,0 +14646,007+Roskilde,603,567,699272880,9994,0 +14647,Belvedere+006,580,408,699756210,10273,0 +14648,--004--,432,599,225023,10495,0 +14649,Wioska+naja1920ruch,396,555,9167250,9100,0 +14650,South+K35,558,393,699146580,10042,0 +14651,%5B328%5D+Chor%C4%85giewka+na+wietrze,601,432,848985692,10411,0 +14652,Zach%C3%B3d+-+008,399,564,225023,9904,0 +14653,005.Botew,599,571,1601917,10495,0 +14654,R%C4%99cznik+do+zmiany,397,435,699697558,10289,0 +14655,013,506,379,849010255,10019,0 +14656,Szulernia,412,415,7249451,9981,0 +14657,Konfederacja+8,470,383,848915730,9782,0 +14658,006,401,426,699788305,8739,0 +14659,Gattacka,599,429,699298370,10384,5 +14660,%2AINTERTWINED%2A,514,622,698704189,9614,0 +14661,%2AINTERTWINED%2A,515,617,698704189,9711,0 +14662,VN+Ishida+Mitsunari,478,382,699883079,10119,0 +14663,%23026,498,618,699605333,10393,0 +14664,Wioska,600,572,17714,10222,0 +14665,028,480,380,849010255,9816,0 +14666,R%C4%99cznik+do+zmiany,397,440,699697558,10160,7 +14667,012,620,501,849006412,10294,0 +14668,Wioska,384,540,849084005,10178,0 +14669,albo+jutro,560,607,699567608,10052,0 +14670,Wioska,599,574,17714,10222,0 +14671,Wioska+barbarzy%C5%84ska,408,426,7462660,10068,0 +14672,CALL+932,554,611,699784536,10311,0 +14673,%23+Szymi+9,388,548,699425709,9873,0 +14674,Wioska,382,526,849084005,10178,0 +14675,009.+G%C3%B3ra+Gram,488,627,699494488,10237,0 +14676,%5B340%5D+Chor%C4%85giewka+na+wietrze,588,421,848985692,10392,0 +14677,WW1,620,480,849088515,10019,0 +14678,scoti,486,617,699494488,10221,0 +14679,00978,462,434,3909522,9885,0 +14680,-Miasto+tonie,517,513,699785935,9576,0 +14681,ADEN,526,380,698588535,10287,0 +14682,003.,563,601,873575,10263,0 +14683,15+Prawdy+nie+m%C3%B3wi+nikt,620,511,699377151,3645,0 +14684,Jaaa,603,437,698635863,9851,0 +14685,K34+-+%5B086%5D+Before+Land,451,387,699088769,10259,0 +14686,A005,614,452,699722599,10146,0 +14687,Wioska+barbarzy%C5%84ska,408,419,698971484,10008,0 +14688,%230030,547,613,1536231,10495,0 +14689,0022.+C+-,621,486,7125212,10160,0 +14690,Jaaa,607,439,698635863,10495,0 +14691,%5B0019%5D,447,393,8630972,10495,0 +14692,.036.,483,380,698489071,10503,0 +14693,Land+of+Fire,397,442,698962117,9486,0 +14695,K34+-+%5B079%5D+Before+Land,464,385,699088769,10259,0 +14696,W.181%2F09,614,532,2999957,10242,0 +14697,083,471,620,699336777,9216,0 +14698,027+Nilfgaard,620,520,699272880,10263,0 +14699,Marktoberdorf,594,579,1715091,9835,0 +14700,Wioska+barbarzy%C5%84ska+008%7C,575,406,6343784,9643,0 +14701,A+003,607,562,8078914,9725,0 +14702,Wioska,384,535,849084005,10178,0 +14703,Wioska+barbarzy%C5%84ska,479,378,699658023,9659,0 +14704,s181eo10,391,445,393668,9886,0 +14705,Z+barba+014,401,565,225023,3431,0 +14706,0007,441,392,699431255,9957,0 +14707,008.xxx,469,619,8612358,10146,9 +14708,Wioska,380,527,849084005,10178,0 +14709,017.xxx,469,618,8612358,9925,0 +14710,117,581,408,849064752,10311,0 +14711,0023+Wioska+barbarzy%C5%84ska,424,597,9060641,4918,0 +14712,600%7C428+Wioska+barbarzy%C5%84ska19,600,428,6822957,9790,0 +14713,020,487,379,849010255,10019,0 +14714,Barba+5,430,403,699796330,9814,0 +14715,bucks+x+kamiiiru,408,421,848955783,10971,0 +14716,0021.+C+-,620,489,7125212,10140,0 +14717,Wioska+barbarzy%C5%84ska+012%7C,575,409,6343784,9582,0 +14718,A.014,600,566,9188016,10000,0 +14719,0001,598,426,8459255,10341,0 +14720,006,507,378,849010255,10019,1 +14721,064,475,385,698739350,9761,0 +14722,%2A005+Vestmannaeyjar,388,539,699425709,9873,0 +14723,%3F%2B44+85+Miribel,456,488,698361257,9849,0 +14724,016.,562,605,873575,9870,0 +14725,Jaaa,601,434,698635863,10495,0 +14726,0016+Bigi,428,601,9060641,8327,0 +14727,001,618,538,8428196,10055,0 +14728,0043,622,523,6510480,9638,0 +14729,%23027.490%7C494,609,445,556154,9735,0 +14730,156+Ale+mnie+g%C5%82%C3%B3wka+boli,390,550,699382126,4934,0 +14731,076.+Utgard,626,477,8337151,11678,0 +14732,003,564,399,849063849,10495,0 +14733,0012,387,459,698807570,10686,0 +14734,Gryfios+019,619,535,698666810,11888,0 +14735,Wioska+012,594,580,848971079,9761,0 +14736,%2AINTERTWINED%2A%2A,517,618,698704189,9711,0 +14737,0351,444,604,698659980,10019,9 +14738,Hojo+s+Laboratory,519,621,8199417,10083,0 +14739,149+MIKOX+025,592,418,699491076,9363,0 +14740,Taran+007,618,524,698562644,10311,0 +14741,%5B022%5D+Patayin+ka,599,517,848985692,10068,0 +14742,Kentin+ufam+Tobie,430,399,699783765,10000,0 +14743,Belvedere+024,582,408,699756210,10083,0 +14744,Avanti%21,379,482,698625834,9950,0 +14745,%2AArmagedon,591,420,848985692,10068,0 +14746,0006,444,393,699431255,9967,0 +14747,A001,624,491,9314079,9818,0 +14748,0005,388,461,698807570,10703,8 +14749,%23019+M,458,614,9037756,10715,0 +14750,Darma,423,404,356642,9835,0 +14751,0026,559,395,699485250,10211,0 +14752,0008+JacekDD,427,412,3909522,10365,0 +14753,050+-+A02.%2A%2A%2A,439,602,225023,10495,0 +14754,R%C4%99cznik+do+zmiany,401,432,699697558,10495,9 +14755,160+Ale+mnie+g%C5%82%C3%B3wka+boli,387,548,699382126,10628,0 +14756,599%7C426+012,599,426,6822957,10012,0 +14757,04.+Gladiolus+Amicitia,524,617,8199417,10495,0 +14758,0637,437,600,698659980,10019,0 +14759,Gryfios+007,617,535,698666810,10559,0 +14760,W.181%2F23,617,520,2999957,10242,0 +14761,s181eo30,390,456,393668,10595,0 +14762,Midgard,533,386,1990750,10068,0 +14764,%C5%9Amieszki,533,617,3454753,9046,0 +14765,Zeta+Reticuli+S,413,420,699323302,11188,0 +14766,FKG+01-11,422,409,356642,9835,0 +14767,Wioska+barbarzy%C5%84ska,404,426,7462660,10068,0 +14768,%2AINTERTWINED%2A,515,621,698704189,9711,0 +14769,R%C4%99cznik+do+zmiany,400,434,699697558,10160,0 +14771,A0247,379,494,8841266,10252,0 +14772,%230022,523,624,699728159,6513,0 +14773,Wioska,383,466,6258092,7028,0 +14774,085,599,567,699373599,9661,0 +14775,Zeta+Reticuli+S,412,416,699323302,11321,0 +14776,P%C5%82ocicz,412,578,698769107,7596,0 +14777,Aerith+House,520,620,8199417,10495,0 +14778,xxx,514,458,698239813,7195,0 +14779,0099,454,612,698659980,10019,7 +14780,029,539,384,849064752,10311,0 +14781,ADEN,523,378,698588535,10232,0 +14782,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+07,621,515,699379895,9509,0 +14783,Horyzont+zdarze%C5%84,536,618,7581876,10083,0 +14784,001,422,400,699402816,9835,0 +14785,Bagdad,478,380,8847546,10654,0 +14786,R%C4%99cznik+do+zmiany,399,437,699697558,10160,0 +14787,K34+-+%5B120%5D+Before+Land,449,388,699088769,10259,0 +14788,Myk+i+do+kieszonki,383,511,9319058,9799,0 +14789,Myk+i+do+kieszonki,379,507,9319058,9799,0 +14790,%5B223%5D+WEST+KA,611,453,848985692,10052,0 +14791,034.,481,618,699494488,10226,0 +14792,A0223,376,491,8841266,10252,0 +14794,14+im+Klimowa,595,427,849037469,9809,0 +14795,ADEN,521,381,698588535,10228,0 +14796,034+Pot%C4%99%C5%BCny+Dzban,391,558,699382126,10484,0 +14797,Konfederacja+%2B,463,381,848915730,10336,0 +14798,Darma,428,399,356642,9835,0 +14799,%5B210%5D+WEST,611,450,848985692,10232,7 +14800,020,431,490,699510259,9976,0 +14801,004,620,491,849006412,9819,0 +14802,A0047,381,469,8841266,10252,0 +14803,Darma,427,401,356642,9835,0 +14804,K34+-+%5B089%5D+Before+Land,457,386,699088769,10259,0 +14805,rakieta+009,619,529,848928486,5632,0 +14806,003,614,542,8428196,9937,0 +14807,31+im+Lorda+Mikiego,561,397,849037469,9809,0 +14808,Yogi,546,613,2808172,10019,0 +14809,Wioska+barbarzy%C5%84ska,390,546,699425709,8567,0 +14810,Kiedy%C5%9B+Wielki+Wojownik,389,458,8632462,10611,0 +14811,12+Vanitas,618,512,9314079,9687,0 +14812,%23023,477,621,699605333,10393,0 +14813,%230005+Kumogakure,529,621,699728159,9761,0 +14814,0006,425,407,848913037,9993,1 +14815,%2AINTERTWINED%2A,513,623,698704189,9711,0 +14816,%23001+A,460,614,9037756,10495,0 +14817,008,621,494,849091105,9986,0 +14818,A.014,416,587,849088243,10495,0 +14819,A.008,411,578,849088243,9353,0 +14820,%23004,470,616,699605333,10393,2 +14821,Szlachcic,589,419,699170684,9835,0 +14822,0135,453,612,698659980,10083,0 +14823,Kentin+ufam+Tobie,432,397,699783765,10000,0 +14824,%23007+A,464,613,33900,10495,0 +14825,008+Hokkaido,623,483,7092442,10495,0 +14826,%5B327%5D+Chor%C4%85giewka+na+wietrze,602,430,848985692,10400,0 +14827,151+MIKOX+027,591,418,699491076,9235,0 +14828,020+Pot%C4%99%C5%BCny+Dzban,393,563,699382126,10479,0 +14830,05.+Prompto+Argentum,526,618,8199417,10495,0 +14831,Bagdad,480,382,8847546,10654,0 +14832,%2AINTERTWINED%2A,507,624,698704189,9711,0 +14833,Feed+me+more+008,488,376,699756210,10348,0 +14834,Czekam+na+VS,535,382,698350371,10495,0 +14835,088+Wioska+barbarzy%C5%84ska,594,422,699491076,9380,0 +14836,010,622,501,849006412,9650,0 +14837,K34+-+%5B073%5D+Before+Land,458,388,699088769,10259,0 +14838,Jaaa,583,592,698635863,10548,0 +14839,Nope,392,479,6258092,10083,0 +14840,Wioska+barbarzy%C5%84ska,404,428,7462660,10068,0 +14841,South+K45,592,422,699146580,10042,0 +14842,Bagdad,472,380,8847546,10654,0 +14843,0082,458,616,698659980,10160,5 +14844,%5B134%5D+North,582,473,848985692,10068,0 +14845,Dextrose,624,500,699379895,10495,0 +14846,Wioska+barbarzy%C5%84ska,383,461,3698627,10078,0 +14847,So%C5%82tys+Twojej+Wsi,438,392,849027025,9627,0 +14849,A.025,406,575,849088243,9415,0 +14850,077,586,412,849064752,10311,0 +14851,R%C4%99cznik+do+zmiany,395,437,699697558,10050,0 +14852,Wioska+mateuszek1123,553,391,3600737,9013,0 +14853,078,621,530,699373599,6869,0 +14854,0020,621,527,6510480,10336,0 +14855,0044,619,512,6510480,9948,0 +14856,Wioska,385,545,849084005,10178,6 +14857,007,621,495,849091105,10160,0 +14858,z+010,561,601,699342219,10474,0 +14859,%2AINTERTWINED%2A,513,621,698704189,9711,0 +14860,Nowa+03,605,561,698702991,9824,0 +14861,Wioska+026,597,578,848971079,9761,0 +14862,072,618,529,699373599,10030,0 +14863,ADEN,522,382,698588535,9737,5 +14864,Ci%C4%99%C5%BCka+powieka,565,568,699785935,10311,0 +14865,EKG+024,486,621,33900,9992,0 +14866,Myk+i+do+kieszonki,380,509,9319058,9799,0 +14867,W.181%2F11,617,528,2999957,10242,0 +14868,Taran,555,379,699170684,9492,0 +14869,Myk+i+do+kieszonki,381,512,9319058,9799,0 +14870,%2AINTERTWINED%2A%2A,509,621,698704189,8963,0 +14871,makelovenotwar,387,462,698807570,10068,0 +14872,0027.+C+-,624,487,7125212,8738,0 +14874,103+Cvrvvus,396,560,699382126,10104,0 +14875,So%C5%82tys+Wsi+Twin1992,438,397,849027025,9293,0 +14876,0028,561,393,699485250,10211,0 +14877,Jaaa,572,601,698635863,10474,0 +14878,028+-+Manchester,407,579,225023,10495,0 +14879,020,605,435,699298370,7343,3 +14880,K34+-+%5B007%5D+Before+Land,447,380,699088769,10259,0 +14881,ADEN,522,381,698588535,10338,0 +14882,0004,593,417,8459255,10203,0 +14883,010,501,378,698739350,9761,0 +14884,Sawanna,380,490,699265922,9752,0 +14885,0011.+C+-+Belatona,624,502,7125212,10285,0 +14886,Taran+001,620,531,698562644,10311,5 +14887,Gryfios+014,617,542,698666810,12002,0 +14888,Bagdad,474,379,8847546,10654,0 +14889,%230002,517,377,7651093,9811,0 +14890,%3D007%3D+Bez+ko%C5%82a+zapasowego,612,552,3781794,10365,0 +14891,001,569,480,849070464,8836,0 +14892,Gasherbrum+II,378,490,699265922,9835,0 +14893,bucks+x+kamiiiru,409,422,848955783,10384,3 +14894,004,580,598,698999105,10311,0 +14895,Gattacka,600,427,699298370,9367,0 +14896,-+015+-,546,609,849018239,10000,0 +14897,Myk+i+do+kieszonki,376,506,9319058,9799,0 +14898,s181eo06,391,447,393668,9886,0 +14899,Ulu-mulu,437,615,699697558,9948,0 +14900,Wioska+barbarzy%C5%84ska,587,585,1715091,9628,0 +14901,Wioska+%28008%29,619,476,698232227,8531,0 +14902,%2AINTERTWINED%2A,511,623,698704189,9711,0 +14903,043.,480,618,699494488,10237,0 +14904,068,586,590,698999105,10311,0 +14906,0045,620,516,6510480,9660,0 +14907,R%C4%99cznik+do+zmiany,397,439,699697558,10160,0 +14909,072,586,587,698999105,10311,0 +14910,Wioska,382,519,849084005,10178,0 +14911,Wioska+barbarzy%C5%84ska,416,408,699402816,9835,0 +14912,Wioska+vequs,405,427,7462660,10252,0 +14913,SINGED+X+SZEF,494,377,699368887,9994,0 +14915,049+Zimny+Lehos%C5%82aw,389,552,699382126,8621,0 +14916,K34+-+%5B027%5D+Before+Land,465,383,699088769,10259,9 +14917,FAKE+OR+OFF,443,401,698231772,10025,0 +14918,Sam+goroli+ciulaja,386,452,699711723,9701,0 +14919,Ulu-mulu,432,603,699697558,9373,0 +14920,Tanjirou,574,596,699364813,10495,0 +14921,Brat447,375,494,699262350,10495,0 +14922,Land+of+Fire,394,441,698962117,9491,0 +14923,Zeta+Reticuli+S,414,411,699323302,10997,0 +14925,Avanti%21,378,487,698625834,9950,0 +14926,Malinki+1,621,521,8013349,6924,0 +14927,FKG+01-19,415,412,356642,9835,0 +14928,Wioska,388,553,849084005,5902,0 +14929,K34+-+%5B043%5D+Before+Land,462,390,699088769,10126,0 +14930,006,620,497,849091105,9922,0 +14931,K34+-+%5B057%5D+Before+Land,456,387,699088769,10126,0 +14932,Bagdad,472,383,8847546,10654,0 +14933,Sk%C5%82ad,512,618,606407,10249,0 +14934,A022,620,457,699722599,10354,0 +14935,Wioska+036,591,584,848971079,9761,0 +14936,Land+of+Fire,395,441,698962117,9491,0 +14937,Horyzont+zdarze%C5%84,540,615,7581876,10019,0 +14938,MojeSzczytToTw%C3%B3jDno,512,377,828637,10495,0 +14939,.035.,486,378,698489071,10252,0 +14941,%2A%2A%2A9ebaabc9d%2A%2A%2A+Granat,550,388,1990750,10068,0 +14942,Land+of+Fire,399,450,698962117,9485,0 +14944,Wioska+017,592,576,848971079,9761,0 +14945,A0008,378,482,8841266,10252,0 +14946,004+Wioska+barbarzy%C5%84ska,528,380,699854484,10068,0 +14947,165,557,390,849064752,10311,4 +14949,Jaaa,610,441,698635863,10476,0 +14950,0356,446,607,698659980,10083,1 +14951,%2AINTERTWINED%2A,515,622,698704189,9711,0 +14952,060+-+Ukulele,424,595,225023,5158,0 +14953,0469,449,609,698659980,10083,0 +14954,0139,454,614,698659980,10297,0 +14955,Wioska+barbarzy%C5%84ska,387,453,3698627,10073,0 +14956,VN+Aehelfaed,466,381,699883079,9651,0 +14957,Wioska+barbarzy%C5%84ska,381,533,849030226,9842,0 +14958,Wioska+barbarzy%C5%84ska,482,378,699658023,9647,0 +14959,097+Wioska+barbarzy%C5%84ska,595,422,699491076,8841,0 +14960,030,503,625,699878511,10140,0 +14961,CALL+925,508,623,699784536,10311,1 +14962,Lecymy+DUR,443,392,6169408,7532,0 +14963,7.62+mm,484,378,699777234,6846,0 +14964,%230008+Kiedy%C5%9B,490,545,848915531,9981,0 +14965,%2A014%2A,609,511,698670524,8480,0 +14966,Feed+me+more+015,484,380,699756210,9818,0 +14967,Z+barba+008,405,578,225023,10495,0 +14968,Taran,548,387,699170684,9443,0 +14969,010.,564,606,873575,9923,0 +14970,012.xxx,465,617,8612358,10146,0 +14971,Wioska,601,569,17714,10222,0 +14972,008,601,574,699099811,9835,0 +14973,Nic+dwa+razy,573,597,699785935,9976,0 +14974,Gravity,404,456,698962117,9489,0 +14975,008.,565,600,873575,10150,0 +14976,Pobozowisko,408,590,699513260,10971,0 +14977,ADEN,527,381,698588535,10287,0 +14978,0426,548,610,698659980,10019,0 +14979,Jaaa,617,460,698635863,10478,0 +14980,Warzywniak+019,449,551,698290577,2714,0 +14981,Szulernia,414,413,7249451,9981,0 +14982,016.xxx,469,620,8612358,10152,0 +14983,005,401,425,699788305,9744,0 +14984,0357,444,608,698659980,10083,0 +14985,Westcoast.016,391,439,848918380,10178,6 +14986,000,613,541,8428196,9883,0 +14988,065,567,599,699373599,10030,0 +14989,Myk+i+do+kieszonki,377,509,9319058,9799,0 +14990,Wioska,383,529,849084005,8640,0 +14991,Avanti%21,376,485,698625834,9950,0 +14992,Brat447,376,517,699262350,10495,0 +14993,Jaaa,574,598,698635863,10478,0 +14994,%23022+A,458,615,9037756,10495,0 +14995,037+-+two,416,583,225023,10495,0 +14996,ADEN,528,377,698588535,9183,0 +14997,Jehu_Kingdom_33_,616,461,8785314,9993,0 +14999,Wioska+%28043%29,619,484,698232227,10026,0 +15000,Czekam+na+VS,538,382,698350371,10495,0 +15001,A.019,409,585,849088243,9535,0 +15002,018.xxx,467,618,8612358,10146,0 +15003,006.xxx,472,619,8612358,9925,0 +15004,161+Ale+mnie+g%C5%82%C3%B3wka+boli,386,548,699382126,10495,0 +15006,.achim.,529,384,6936607,9899,0 +15007,011,623,495,849091105,9854,0 +15008,08.+Cindy+Aurum,520,619,8199417,10495,0 +15009,A012,613,447,699722599,10357,0 +15010,South+K45,591,421,699146580,9455,0 +15011,P%21nk,580,591,699785935,10224,0 +15012,Wioska+barbarzy%C5%84ska,598,571,6929240,8966,0 +15013,Wioska+barbarzy%C5%84ska,610,558,7047342,10487,0 +15014,005.+Dor+Daedeloth,489,621,699494488,10233,0 +15015,068+Jokohama,620,471,7092442,10495,0 +15016,K34+-+%5B052%5D+Before+Land,454,389,699088769,10126,0 +15017,Bagdad,473,378,8847546,10654,0 +15018,0004,425,408,848913037,9993,7 +15019,%2F05+%28Mati72611%29,408,575,698769107,9835,0 +15020,008,500,379,698739350,9761,0 +15021,Z+barba+016,401,569,225023,7050,0 +15022,Gryfios+006,617,537,698666810,10495,0 +15023,ADEN,525,382,698588535,9737,0 +15024,054+-+GoldFaber,420,594,225023,9888,0 +15025,Kentin+ufam+Tobie,389,446,699783765,10000,0 +15026,Planeta+Vegeta,410,409,698971484,10008,0 +15027,Wioska+barbarzy%C5%84ska,609,560,7047342,10478,0 +15028,Taran,551,378,699170684,9452,0 +15029,Wioska+Altivo,572,442,699368887,9994,0 +15030,087,599,568,699373599,9087,0 +15031,Wioska-003-,541,385,699170684,9379,3 +15032,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,622,8201460,10237,0 +15033,%23022,467,616,699605333,10393,0 +15034,Carnagos,604,564,698702991,9761,0 +15035,Lord+Arsey+KING,582,581,848956513,8366,0 +15036,K2.,376,498,849013126,9557,0 +15037,019,613,462,8459255,10077,0 +15038,Teby_21,503,622,2585846,9638,0 +15039,Pf+Konfederacja+%2B,496,489,848915730,9938,0 +15040,SINGED+X+SZEF,488,377,699368887,9994,0 +15041,KONFA+TO+MARKA%2C+NARKA,401,463,698152377,10495,0 +15042,039-+Mroczna+Osada,612,460,849035905,12154,0 +15043,Avanti%21,378,483,698625834,9950,0 +15044,003+Sir+D%C5%BCony,390,554,699382126,10478,0 +15045,Bagdad,472,379,8847546,10375,0 +15046,Wioska,385,543,849084005,10178,0 +15047,Wioska+barbarzy%C5%84ska,402,467,699523631,10484,0 +15048,Kentin+ufam+Tobie,431,399,699783765,10078,0 +15049,Knowhere,390,502,699723284,10452,0 +15050,001,557,610,699567608,9031,0 +15051,Darma,428,400,356642,9835,0 +15052,People+Are+Strange,597,568,848926293,9501,0 +15053,150+MIKOX+026,593,418,699491076,8971,0 +15054,%2AINTERTWINED%2A,516,627,698704189,9711,0 +15055,Jaaa,580,593,698635863,10061,0 +15056,A0037,381,473,8841266,10252,0 +15057,007,505,378,849010255,10019,0 +15058,South+K35,558,390,699146580,9809,0 +15059,A021,510,378,7758085,9925,0 +15060,0048+K55+and987+OZDR,501,554,3613413,9899,0 +15061,Teby_20,505,621,2585846,9638,0 +15062,A0048,378,474,8841266,10252,0 +15063,%3D015%3D+Wioska+barbarzy%C5%84ska,612,556,3781794,10365,0 +15064,Bagdad,478,381,8847546,10654,0 +15065,Z%C5%82ote+tarasy,576,597,699785935,9899,0 +15066,kathare,548,613,873575,9872,0 +15067,WW2,621,478,849088515,9319,0 +15068,Horyzont+zdarze%C5%84,513,540,7581876,9995,0 +15069,SINGED+X+SZEF,491,375,699368887,9994,0 +15070,Wioska,383,540,849084005,10178,0 +15072,R%C4%99cznik+do+zmiany,396,439,699697558,10160,0 +15073,CALL+943,553,565,699784536,10311,0 +15074,009,623,496,849091105,9828,0 +15075,Land+of+Fire,388,451,698962117,9617,2 +15076,100,449,612,849084985,8715,0 +15077,K34+-+%5B041%5D+Before+Land,463,383,699088769,10259,0 +15078,0007,555,611,698659980,10252,0 +15079,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+03,623,514,699379895,10362,0 +15080,Feed+me+more+001,495,377,699756210,10146,0 +15081,K34+-+%5B055%5D+Before+Land,461,386,699088769,9924,0 +15082,%2A002%2A,613,504,698670524,8883,0 +15083,R-3,555,390,3600737,9013,0 +15084,038,433,392,699783765,10654,0 +15085,0005+MzM,602,567,698416970,9630,0 +15086,R%C4%99cznik+do+zmiany,399,432,699697558,10252,0 +15087,Jaaa,617,459,698635863,10261,0 +15088,Wioska+barbarzy%C5%84ska,382,464,3698627,10208,0 +15089,Jastrowie,398,580,698769107,7946,0 +15090,C002,573,401,699722599,10479,0 +15091,143+MIKOX+011,594,420,699491076,10001,0 +15092,Teby_19,504,621,2585846,9638,0 +15093,Lord+Arsey+KING,584,591,848956513,10285,0 +15094,018+Nie+mam+pomys%C5%82u,393,564,699382126,6757,3 +15095,A0031,383,474,8841266,10252,0 +15096,--005--,426,600,225023,10495,0 +15097,030+Atlanta,436,430,9291984,10495,0 +15098,A0018,382,478,8841266,10252,0 +15099,Bagdad,477,378,8847546,10654,0 +15100,Wioska+barbarzy%C5%84ska,484,379,699658023,9510,0 +15101,Kentin+ufam+Tobie,431,396,699783765,10000,0 +15102,Lord+Arsey+KING,588,586,848956513,9701,0 +15103,K34+-+%5B029%5D+Before+Land,462,382,699088769,10259,0 +15104,%23003+A,462,618,849084985,9810,4 +15105,001,397,498,699510259,9761,0 +15106,%2A%2A%2A5b%2A%2A%2A+Czere%C5%9Bnia,541,384,1990750,10068,0 +15107,Ho%C5%82opole,500,395,699433558,9976,0 +15108,Alfa,607,564,699737356,8958,0 +15109,Piek%C5%82o+to+inni,486,390,848956765,10160,0 +15110,L%C4%99dyczek,401,577,698769107,9811,0 +15111,Wyzima,497,390,699433558,10495,0 +15112,Pod,589,585,1715091,9570,0 +15113,A.016,603,568,9188016,10000,0 +15114,053+-+Mleko,423,594,225023,8638,0 +15115,Napewno+to+nie+jest+off,496,396,848912265,10495,0 +15116,0046,619,516,6510480,9748,0 +15117,Delta,608,565,699737356,8665,0 +15118,0026+XXARDASS,433,604,9060641,6628,0 +15121,014.+Lilybaeum,619,462,849091866,9179,0 +15123,C+Zach+004+%C5%81ab%C4%99dy,404,575,849084740,7728,0 +15124,A0152,379,469,8841266,10252,0 +15125,SsSs,392,500,1536625,10139,0 +15126,%2B44+60+Lyon+Montchat,408,466,698361257,9763,0 +15127,038+Pot%C4%99%C5%BCny+Dzban,391,553,699382126,5411,0 +15128,162+Ale+mnie+g%C5%82%C3%B3wka+boli,386,546,699382126,10636,0 +15129,s181eo19,383,455,393668,9886,0 +15130,%28005%29,412,533,9236866,9715,0 +15131,R%C4%99cznik+do+zmiany,393,435,699697558,10319,0 +15133,wioska+4,624,489,848935020,8013,0 +15134,Wioska+barbarzy%C5%84ska,381,535,849030226,10484,0 +15135,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,514,623,8201460,10237,0 +15136,A.015,405,575,849088243,10093,0 +15137,0122,448,388,699431255,10019,0 +15138,Ulu-mulu,436,607,699697558,11678,0 +15140,A.021,414,583,849088243,8863,0 +15141,Brat447,386,505,699262350,10479,0 +15142,Pobozowisko,415,589,699513260,10955,0 +15143,%5B113%5D,557,550,8000875,9904,0 +15144,FKG+01-21,419,404,356642,9835,0 +15145,007,400,426,699788305,10019,0 +15146,190,569,397,849064752,10311,0 +15147,%2AINTERTWINED%2A,515,623,698704189,9711,0 +15148,%230005,544,613,1536231,10495,0 +15149,A017,516,380,7758085,9925,0 +15150,Pobozowisko,417,588,699513260,10770,0 +15151,CSA,416,407,3340647,9494,0 +15152,%230003+Konohagakure,528,620,699728159,9761,0 +15153,EKG+020,494,624,33900,10336,0 +15154,Bar+Seventh+Heaven,526,621,8199417,10495,0 +15155,0027,621,526,6510480,9982,0 +15156,Wioska+julka2003,402,425,7462660,10122,0 +15157,Szlachcic,617,467,698867446,9328,0 +15158,Jedna+czerwona+kropka,500,487,848921793,11678,0 +15159,EKG+025+%2B+R+DODAT,484,622,33900,10290,0 +15160,ADEN,526,384,698588535,10154,0 +15161,Bagdad,475,382,8847546,10654,2 +15162,Wioska+barbarzy%C5%84ska,404,424,7462660,10068,0 +15163,Szlachcic,583,414,699170684,9453,0 +15164,Kiedy%C5%9B+Wielki+Wojownik,392,455,8632462,9976,0 +15165,098+Wioska+barbarzy%C5%84ska,596,420,699491076,8728,0 +15166,002,548,389,3600737,9013,0 +15167,A01+Sir+Valanzy3,600,461,849093742,10083,0 +15168,spoceni+xD,437,608,699280514,7286,0 +15169,Black+Castel,481,619,699494488,10495,6 +15170,Wioska+Nevomex1,405,429,7462660,10068,0 +15171,bucks+x+kamiiiru,409,420,848955783,10971,0 +15172,035,495,620,699878511,10160,0 +15173,%23062,481,621,699605333,10636,0 +15174,Gravity,405,446,698962117,9488,0 +15175,032,489,380,698739350,9761,0 +15176,0437,547,615,698659980,10019,0 +15177,021.xxx,461,617,849084985,9614,0 +15178,Piek%C5%82o+to+inni,479,381,848956765,10160,0 +15179,A013,612,450,699722599,10155,0 +15180,MojeSzczytToTw%C3%B3jDno,523,379,828637,10495,0 +15181,Land+of+Fire,393,446,698962117,9485,2 +15182,z+031,547,604,699342219,10495,0 +15183,Yogi,561,619,2808172,10117,0 +15184,MojeSzczytToTw%C3%B3jDno,507,376,828637,10365,0 +15185,099+Wioska+barbarzy%C5%84ska,594,419,699491076,10001,0 +15186,Wioska+010,597,580,848971079,9761,0 +15187,Halinanium,603,564,698702991,9756,0 +15188,K34+-+%5B063%5D+Before+Land,449,390,699088769,10126,0 +15189,Mako+Reactor+1+-+B8F,518,617,8199417,10083,0 +15190,%2AINTERTWINED%2A%2A,515,624,698704189,9711,0 +15191,Myk+i+do+kieszonki,378,505,9319058,8669,0 +15192,Wioska,385,533,849084005,10178,0 +15193,%2A025%2A,623,501,698670524,5660,0 +15194,039+Pot%C4%99%C5%BCny+Dzban,390,559,699382126,10479,0 +15196,028.,486,624,699494488,10220,0 +15197,Wioska+%28022%29,623,475,698232227,8424,0 +15198,Wioska+barbarzy%C5%84ska,611,558,7047342,10478,0 +15199,uprawy,610,559,7047342,10495,0 +15200,033+Pot%C4%99%C5%BCny+Dzban,389,558,699382126,10478,0 +15201,0032,549,609,698659980,10252,0 +15202,VN+Hannibal+Barca,466,380,699883079,9626,7 +15203,CALL+1005,514,619,699784536,10311,0 +15204,059+-+Sayil,427,597,225023,4554,0 +15205,Zach%C3%B3d+-+009,396,568,225023,5532,0 +15206,Jaaa,609,437,698635863,10342,0 +15207,Piek%C5%82o+to+inni,482,391,848956765,10160,0 +15208,.006.,496,376,698489071,10595,0 +15209,008,384,456,3698627,9979,0 +15210,%5B207%5D+WEST,612,452,848985692,10221,0 +15211,001+Parostatkiem+pi%C4%99kny+rejs,502,389,698829590,10495,0 +15212,--001--,425,599,225023,9747,0 +15213,167+Ale+mnie+g%C5%82%C3%B3wka+boli,387,543,699382126,10636,0 +15214,jest+moc,557,609,699567608,9699,0 +15215,Teby_28,501,622,2585846,9638,0 +15216,010.+Antium,618,460,849091866,9135,0 +15217,015+Tarnag,624,504,8337151,10083,0 +15218,Wioska+.580,383,532,849030226,7875,0 +15219,K34+-+%5B035%5D+Before+Land,454,385,699088769,10259,0 +15221,A0040,381,467,8841266,10252,0 +15222,%5B004%5D+Siluca+Meletes,478,372,699658023,10495,0 +15223,Gryfios+005,619,541,698666810,10495,0 +15224,Bagdad,480,379,8847546,10654,0 +15225,0008+Bigi02,430,605,9060641,10544,0 +15226,Taran,544,386,699170684,9771,0 +15227,Czekam+na+VS,542,384,698350371,10495,3 +15228,K34+-+%5B034%5D+Before+Land,460,389,699088769,10259,0 +15229,s181eo26,382,457,393668,9885,4 +15231,%23033,474,619,699605333,10393,0 +15232,025.,486,623,699494488,10218,0 +15233,FKG+01-10,421,408,356642,9835,0 +15234,013.+Salon+kosmetyczny+Lalusia,566,393,699799629,10495,0 +15236,D018,580,410,699761749,10495,0 +15237,%230002,544,612,1536231,10495,8 +15238,0019,624,516,6510480,10336,0 +15239,Part+IX,534,382,698350371,10495,0 +15240,.44,410,420,848955783,10971,1 +15241,wioska+smielii,399,570,9167250,7095,0 +15242,Part+XIX,535,379,698350371,10196,0 +15243,K34+-+%5B022%5D+Before+Land,459,388,699088769,10259,0 +15244,%23036,471,622,699605333,10393,0 +15245,SINGED+X+SZEF,482,380,699368887,9643,6 +15246,006,604,497,699573053,10495,0 +15247,015+Jestem+pizz%40,619,464,699272633,10481,0 +15248,Jebalnik1,507,379,699368887,10237,0 +15249,029,481,377,849010255,10019,0 +15250,Wioska,383,543,849084005,10068,0 +15251,Wioska+Mwito,569,591,33900,10495,0 +15253,Dzie%C5%84+Dobry+%3A%29,534,380,698350371,10495,0 +15254,A002,518,370,699208929,10400,0 +15255,013+B%C4%99dzie+klinowane,391,561,699382126,10476,0 +15257,015.xxx,469,621,8612358,10069,0 +15258,Wioska,380,535,849084005,10178,0 +15259,A023,616,451,699722599,10354,0 +15260,Mniejsze+z%C5%82o+0004,376,480,699794765,9781,0 +15261,Mniejsze+z%C5%82o+0002,380,478,699794765,10249,0 +15263,%3D014%3D+P%C3%B3%C5%BAniej+szed%C5%82+taki+Zbyszek,613,554,3781794,10580,0 +15264,0342,502,622,698659980,10495,0 +15265,Darma,428,401,356642,9835,0 +15266,Wioska+spiderandsobol,397,564,9167250,7998,0 +15267,052+-+Boom,424,594,225023,9719,0 +15268,Jaaa,609,442,698635863,10223,0 +15269,K34+-+%5B064%5D+Before+Land,448,392,699088769,9924,0 +15270,Kentin+ufam+Tobie,385,449,699783765,10000,0 +15271,Collapsed+Expressway,525,620,8199417,10495,0 +15272,R-5,551,385,3600737,9013,0 +15273,Mniejsze+z%C5%82o+0007,375,481,699794765,8498,0 +15274,033+-+A09.%2A%2A%2A,439,604,225023,10495,0 +15275,Wioska,379,524,849084005,10178,0 +15276,Cypel,613,549,698702991,9835,0 +15277,Sahara,376,495,699265922,10019,0 +15278,Yogi,534,616,2808172,10495,0 +15279,%2B44+61+Neufchatel+Hardelot,413,469,698361257,10019,0 +15280,K34+-+%5B077%5D+Before+Land,456,384,699088769,9924,0 +15282,NIERAJ05,450,616,698143931,8291,0 +15283,K34+-+%5B033%5D+Before+Land,462,383,699088769,10259,0 +15284,066,570,603,699373599,10030,0 +15285,040,542,617,699189792,9761,0 +15286,0027+XXARDASS,432,601,9060641,8100,0 +15288,Bagdad,473,383,8847546,10654,0 +15289,Tank+x+007.+Dobry%2C+z%C5%82y+i+brzydki,404,499,698290577,9281,0 +15291,Wioska+5,621,473,848935020,8208,0 +15292,002+Wioska+oleska2002,530,380,699854484,10178,0 +15293,108,583,408,849064752,10311,0 +15294,K44+x033,430,400,698364331,8073,0 +15295,.010.,495,378,698489071,10485,0 +15296,Wioska+WojoKox626,435,549,699856962,2772,0 +15297,%2A006+Thorshavn,386,542,699425709,9873,0 +15298,207,569,386,849064752,9885,0 +15299,030,565,607,699316421,9744,0 +15300,01.+Wioska+mrPosel,469,586,699364813,10495,0 +15301,K34+-+%5B085%5D+Before+Land,456,382,699088769,9783,0 +15303,Wioska+barbarzy%C5%84ska+013%7C,580,404,6343784,9180,0 +15304,Osada+koczownik%C3%B3w,404,419,698971484,10008,7 +15305,%3D008%3D+Lampa+z+przodu,607,549,3781794,10365,0 +15306,Wioska+027,599,578,848971079,10019,0 +15307,Darma,424,406,356642,9835,0 +15308,%3D009%3D+By%C5%82a+w+niez%C5%82ym+stanie,610,550,3781794,10130,0 +15309,003.+Orkowa+Kopalnia,490,625,699494488,10495,8 +15310,Teby_23,504,624,2585846,9638,0 +15311,013.,623,521,6520732,9342,0 +15312,021+Driftmark,606,567,699272880,10375,0 +15313,21+XXX,619,481,699377151,7764,1 +15314,002,560,609,699567608,9633,0 +15315,Jaaa,576,596,698635863,10220,0 +15316,I+Po+Co%3F,621,483,7142659,10426,5 +15317,SPARTA,499,600,2585846,9181,0 +15319,Jaaa,609,441,698635863,10478,0 +15320,030+Lenka,633,504,2135129,9500,0 +15321,035+Izumi,625,488,7092442,10495,0 +15322,Kentin+ufam+Tobie,386,445,699783765,10000,0 +15323,Wioska,393,504,849084005,10178,0 +15324,TRR+003,407,417,698971484,10008,0 +15326,SINGED+X+SZEF,487,376,699368887,9994,0 +15327,Jaaa,590,588,698635863,10281,0 +15328,Czekam+na+VS,533,383,698350371,10495,0 +15329,20002,516,546,848915531,10636,0 +15330,Wioska,402,421,7462660,10030,7 +15331,026,456,437,9291984,10474,0 +15332,C+Zach+005+kleszczow,405,574,849084740,6491,0 +15333,ave+why%21,449,614,698143931,10192,0 +15334,004,544,615,699189792,9744,0 +15335,006.+Gloria+Victis,437,606,699697558,9747,0 +15336,K34+-+%5B040%5D+Before+Land,458,385,699088769,10259,0 +15337,018.+Pompeii,614,460,849091866,9087,0 +15338,A.017,409,586,849088243,9341,0 +15339,089,598,572,699373599,9741,9 +15340,yogi,513,545,2808172,10019,0 +15341,0008,622,524,6510480,10336,0 +15342,%2A033%2A,623,479,698670524,8596,0 +15343,Pod,591,581,1715091,9606,0 +15344,R%C4%99cznik+do+zmiany,397,433,699697558,10362,0 +15345,Vittese,402,570,9167250,9701,0 +15346,Taran,547,387,699170684,9825,0 +15347,Myk+i+do+kieszonki,374,502,9319058,9799,0 +15348,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,630,8201460,10237,0 +15349,VN+Rhya,475,376,699883079,9570,0 +15350,003,513,591,699698253,10487,0 +15351,Myk+i+do+kieszonki,378,513,9319058,9799,0 +15352,Wioska+l2adziu,390,476,699523631,10478,0 +15353,Wioska,379,519,849084005,10178,0 +15354,Gattacka,600,426,699298370,9643,0 +15355,046,539,619,699189792,9742,0 +15356,South+K35,552,387,699146580,10042,0 +15357,C+017,562,394,6384450,10362,0 +15358,030.,493,624,699494488,10481,0 +15359,27+im+Sazykina,594,417,849037469,9809,0 +15360,NOT+FOR+YOU,458,554,9236866,5643,0 +15361,Czekam+na+VS,540,382,698350371,10495,0 +15362,148,582,411,849064752,10311,0 +15363,0019+MzM,603,565,698416970,9258,0 +15364,085,574,405,849064752,10311,0 +15365,%2A032%2A,622,482,698670524,8433,0 +15366,Horyzont+zdarze%C5%84,538,618,7581876,10019,0 +15367,020,576,405,849064752,10311,0 +15368,015,476,624,699336777,9825,0 +15369,Mlask,468,622,699443920,9761,0 +15370,192,570,395,849064752,10311,0 +15371,014,581,410,849063849,10636,0 +15372,Gattacka,605,430,699298370,9296,0 +15373,Master+Carry,507,368,699368887,10237,0 +15374,Part+XXIII,531,381,698350371,10495,0 +15375,035+Pot%C4%99%C5%BCny+Dzban,390,555,699382126,10495,0 +15376,Jaaa,604,431,698635863,10481,0 +15377,074,586,408,849064752,10311,0 +15378,Ulu-mulu,428,603,699697558,10782,0 +15379,Myk+i+do+kieszonki,380,514,9319058,6652,0 +15381,Wioska,383,547,849084005,10178,0 +15382,0031+Wioska+barbarzy%C5%84ska,431,603,9060641,5445,0 +15383,110,570,398,849064752,10311,0 +15384,005.+Neapolis,614,456,849091866,9179,4 +15385,ADEN,527,382,698588535,9737,0 +15386,Knowhere,390,494,699723284,10542,0 +15387,A0248,378,495,8841266,10252,0 +15388,058+-+Brise,423,600,225023,7689,0 +15389,030,584,410,849064752,10311,0 +15390,Wioska,377,526,849084005,10178,0 +15391,010.xxx,463,617,8729672,9976,0 +15392,Kentin+ufam+Tobie,388,446,699783765,10000,0 +15393,Wioska+barbarzy%C5%84ska,612,558,7047342,10479,0 +15394,Kentin+ufam+Tobie,386,448,699783765,10000,0 +15395,Pobozowisko,416,589,699513260,10955,0 +15396,HOTEL+5,568,400,849064614,9747,0 +15397,Wioska+barbarzy%C5%84ska,406,417,698971484,10008,0 +15398,NWO,391,522,849030226,10954,0 +15399,Szlachcic+007,622,534,698562644,10311,0 +15400,ave+why%21,449,613,698143931,10213,0 +15401,wioska+smieliiii,401,571,9167250,8381,5 +15402,Wioska+barbarzy%C5%84ska,446,386,699191449,10495,0 +15403,Wioska+barbarzy%C5%84ska,405,424,7462660,10068,0 +15404,R%C4%99cznik+do+zmiany,397,437,699697558,10160,0 +15405,Brat447,374,494,699262350,10490,0 +15406,Pobozowisko,417,591,699513260,9916,0 +15407,0028+XXARDASS,433,601,9060641,9563,0 +15408,Myk+i+do+kieszonki,380,510,9319058,9799,0 +15409,061+-+Bonanza,423,593,225023,4138,0 +15410,K34+-+%5B008%5D+Before+Land,452,384,699088769,10259,0 +15411,D011,509,391,7758085,9861,0 +15412,Wioska+barbarzy%C5%84ska,447,386,699191449,9958,0 +15413,Westcoast.003,391,435,848918380,10178,0 +15414,Bagdad,477,379,8847546,9835,7 +15415,0027,555,612,698659980,10019,0 +15416,ShocK,624,510,699379895,10019,0 +15417,Avanti%21,380,482,698625834,9950,0 +15418,MojeSzczytToTw%C3%B3jDno,520,378,828637,10495,0 +15419,Vengerberg,492,395,699433558,10311,0 +15420,0008,444,389,699431255,9969,0 +15421,%23008,469,609,699605333,10393,0 +15422,Taran,545,382,699170684,9379,0 +15423,Jaaa,581,594,698635863,10228,0 +15424,Wioska+barbarzy%C5%84ska,408,414,698971484,10008,0 +15426,K34+-+%5B021%5D+Before+Land,466,384,699088769,10259,0 +15427,Jaaa,613,443,698635863,9753,0 +15428,0015.+C+-,621,506,7125212,10149,0 +15429,Jaaa,607,440,698635863,10062,0 +15430,Defensywa+III,575,399,698350371,8186,0 +15431,0024+XXARDASS,426,597,9060641,9563,0 +15432,Wioska+barbarzy%C5%84ska,380,465,3698627,10075,0 +15433,011+...,622,470,699272633,10475,3 +15434,%23048.504%7C527,623,478,556154,9735,0 +15435,Wioska,378,518,849084005,10178,0 +15436,K34+-+%5B048%5D+Before+Land,457,383,699088769,10259,0 +15437,%5BA%5D_%5B019%5D+Dejv.oldplyr,398,492,699380607,10336,0 +15438,wioska+sbbbb,403,573,9167250,6794,0 +15439,%5B222%5D+WESTsssss,613,451,848985692,10236,0 +15440,0012+Wioska+barbarzy%C5%84ska,425,602,9060641,9360,0 +15441,002.,564,605,873575,9617,5 +15442,020.,487,624,699494488,10220,0 +15443,Ulu-mulu,435,606,699697558,11272,0 +15444,PRO8L3M,466,485,7491093,9835,0 +15445,R%C4%99cznik+do+zmiany,394,434,699697558,10160,0 +15446,%3D010%3D+Grzyb%C3%B3w+Janusz,612,550,3781794,10580,0 +15447,Avanti%21,380,481,698625834,10152,0 +15448,Wioska,377,518,849084005,10178,0 +15449,Nibelheim,507,621,8199417,9338,0 +15450,Wioska+barbarzy%C5%84ska,400,570,9167250,5885,0 +15451,HOTEL+4,567,398,849064614,9747,0 +15452,Wioska,380,541,849084005,10178,0 +15453,z+054,585,603,699342219,10481,0 +15454,031,622,469,8459255,9913,0 +15455,0088,459,383,699431255,9835,0 +15456,Bagdad,475,380,8847546,10654,0 +15457,003,400,430,698884287,10285,8 +15458,Wioska+barbarzy%C5%84ska+011%7C,577,404,6343784,9606,0 +15459,Pobozowisko,416,590,699513260,10952,0 +15460,Wioska,377,525,849084005,10178,0 +15461,%2AINTERTWINED%2A%2A,507,625,698704189,9711,0 +15462,My+Immortal,580,592,699785935,10224,0 +15463,Wioska+barbarzy%C5%84ska,406,416,698971484,10008,0 +15464,AWioska+barbarzy%C5%84ska,614,552,7047342,10495,0 +15465,Myk+i+do+kieszonki,377,506,9319058,9799,0 +15466,031.,610,471,8900955,11130,0 +15467,0047,621,524,6510480,9343,0 +15468,.021.,493,375,698489071,10595,0 +15469,031,569,603,699316421,9744,0 +15470,Lecymy+DUR,441,390,6169408,9168,0 +15471,043+Pot%C4%99%C5%BCny+Dzban,389,555,699382126,10481,0 +15472,604%7C541+013+legatus,604,541,6822957,10239,0 +15473,.achim.,534,392,6936607,10311,0 +15474,Myk+i+do+kieszonki,375,504,9319058,9799,0 +15475,R%C4%99cznik+do+zmiany,384,478,699697558,10495,0 +15476,Pobozowisko,411,586,699513260,10626,0 +15477,Centrum+dowodzenia,631,491,9314079,9819,0 +15478,002+To+tylko+farma,389,559,699382126,10475,8 +15479,052.,485,623,699494488,10218,0 +15480,%3D011%3D+Tego+dnia+sporo+zebra%C5%82,607,552,3781794,10447,0 +15481,0358,445,608,698659980,10019,2 +15483,111+AK+Suisited,388,555,699382126,10495,0 +15484,Jaaa,607,435,698635863,10373,0 +15485,0006,619,536,6510480,10319,0 +15486,0063+b13,457,433,3909522,7093,0 +15487,Wioska+013,597,579,848971079,9761,0 +15488,008,505,375,849010255,10019,7 +15489,s181eo20,381,457,393668,9883,0 +15490,090,583,407,849064752,10311,0 +15491,23+im+Sawickej,585,416,849037469,9809,0 +15492,R%C4%99cznik+do+zmiany,397,434,699697558,10362,0 +15493,C.007,421,596,849088243,10319,0 +15494,034+Toyama,626,489,7092442,10495,0 +15495,021,568,604,698999105,10311,0 +15497,005,616,545,8428196,9939,0 +15498,KONFA+TO+MARKA%2C+NARKA,388,474,698152377,10311,0 +15499,Hej+hoo,443,387,699191449,10209,0 +15500,makelovenotwar2,385,459,698807570,10178,0 +15501,32.+Wioska+32,393,568,849091769,10005,0 +15502,Wioska+barbarzy%C5%84ska,379,538,849030226,10481,0 +15503,011,621,536,8428196,9937,0 +15504,Osada+koczownik%C3%B3w,379,534,849030226,10971,5 +15505,A+001,606,561,8078914,9888,0 +15506,021,618,467,8459255,10203,0 +15507,003,560,610,699567608,9959,0 +15508,005.+Gloria+Victis,441,607,848886973,10280,0 +15509,%2AINTERTWINED%2A,514,626,698704189,9711,0 +15510,025,502,375,698739350,9761,0 +15511,Reco,489,545,698704189,9711,0 +15512,024+Pot%C4%99%C5%BCny+Dzban,389,561,699382126,10476,0 +15513,Czekam+na+VS,531,382,698350371,10495,0 +15514,Lecymy+DUR,443,388,6169408,7803,0 +15515,SSJ+017,513,626,699054373,9761,0 +15516,XXXVIII,533,378,698350371,10345,0 +15517,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+01,623,498,699379895,10254,6 +15518,.053.,484,375,698489071,7154,0 +15519,Defensywa+II,574,400,698350371,10495,0 +15520,Pobozowisko,396,571,699513260,10076,2 +15521,20+im+Rusaka,583,405,849037469,9809,0 +15522,008+Wioska,619,469,699671454,6690,0 +15523,002.xxx,466,617,8612358,10160,0 +15524,031,584,404,849064752,10311,1 +15525,0087,554,610,698659980,10160,0 +15526,Gattacka,597,425,699298370,9744,0 +15527,054,602,587,698786826,10237,0 +15528,011.+San+Marino,619,460,849091866,10300,0 +15529,018.,489,623,699494488,10217,0 +15530,Lecymy+DUR,444,403,6169408,10495,0 +15531,Kilo,610,560,699737356,8665,0 +15532,Ulu-mulu,437,607,699697558,10787,8 +15535,0014+Wioska+barbarzy%C5%84ska,422,600,9060641,10375,0 +15536,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+11,626,515,699379895,8921,0 +15537,Jaaa,603,434,698635863,10034,0 +15538,C004,571,397,699722599,10490,0 +15539,D017,580,407,699761749,10495,0 +15540,Wioska+przemomam,440,608,699697558,6284,0 +15541,010,505,379,849010255,9390,0 +15542,Szlachcic+003,617,533,698562644,10311,0 +15543,K34+-+%5B101%5D+Before+Land,455,383,699088769,10259,0 +15544,005+Sewilla,624,480,849093875,9656,0 +15545,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,444,612,8201460,10237,0 +15546,Wioska+JuanDe,536,380,698350371,10495,0 +15547,Wioska,383,546,849084005,6928,0 +15548,Darma,426,397,356642,9835,0 +15549,.achim.,535,390,6936607,8080,0 +15550,A.020,411,585,849088243,9977,0 +15551,012,496,387,698739350,9761,0 +15552,0032+Wioska+barbarzy%C5%84ska,434,609,9060641,5939,0 +15553,A0162,373,491,8841266,10252,0 +15554,-x5,501,496,848967710,10495,0 +15555,114+MikeJazz,388,551,699382126,9495,0 +15556,%2AINTERTWINED%2A,520,625,698704189,9117,0 +15557,...Just+like+that,461,488,699723284,10452,0 +15558,Myk+i+do+kieszonki,377,512,9319058,9799,0 +15559,009.,614,549,8900955,5706,0 +15560,So%C5%82tys+Twojej+Wsi,440,388,849027025,9886,0 +15561,Zach%C3%B3d+-+016,395,570,225023,10149,0 +15562,Wioska+%28005%29,621,485,698232227,9902,0 +15563,Excelsior,572,598,699364813,10495,9 +15564,004.+Zmora,508,589,699703642,9761,0 +15565,0018,471,618,33900,10358,0 +15566,%7E088.,497,603,7139820,10495,0 +15567,Gryfios+008,619,539,698666810,10273,7 +15568,0013.+C+-+Tarnag,626,503,7125212,9778,0 +15569,0046,460,618,698659980,10083,0 +15570,0018,619,526,6510480,10317,0 +15571,EKG+M10+%C5%81,479,609,33900,10559,0 +15572,0008,557,381,699485250,10211,0 +15573,Pobozowisko,410,587,699513260,10955,0 +15574,Gattacka,604,429,699298370,9372,0 +15575,039.,484,625,699494488,10226,0 +15576,0000+oko,413,408,3909522,9344,0 +15577,Jedyneczka,504,378,699368887,10470,0 +15578,Wioska+barbarzy%C5%84ska,418,408,699402816,9835,0 +15579,Piek%C5%82o+to+inni,482,394,848956765,10019,0 +15580,Jaaa,587,591,698635863,10368,0 +15581,31.+Wioska+31,393,567,849091769,8904,0 +15582,%5B211%5D+WEST,614,451,848985692,10236,7 +15583,Wioska14,619,468,848935020,10362,0 +15584,006+Wioska+barbarzy%C5%84ska,530,377,699854484,10178,0 +15585,kathare,547,614,873575,9912,0 +15586,Bagdad,478,378,8847546,10654,5 +15587,Wioska+barbarzy%C5%84ska,512,379,699368887,10237,0 +15588,K34+-+%5B126%5D+Before+Land,451,388,699088769,10259,0 +15589,011,502,627,699878511,10152,0 +15590,087,583,411,849064752,10311,0 +15592,A.009,405,576,849088243,9351,0 +15593,R%C4%99cznik+do+zmiany,401,428,699697558,10160,0 +15594,VN+Guan+Yu,469,380,699883079,9641,0 +15595,Wioska+barbarzy%C5%84ska,380,537,849030226,10484,0 +15596,Wioska13,620,468,848935020,9554,0 +15597,158+Ale+mnie+g%C5%82%C3%B3wka+boli,387,550,699382126,10487,0 +15598,Avanti%21,374,487,698625834,9950,0 +15599,MojeSzczytToTw%C3%B3jDno,511,373,828637,10495,0 +15600,Belvedere+007,585,406,699756210,10311,0 +15601,053.,484,624,699494488,10093,0 +15602,Westcoast.065,395,428,848918380,10178,0 +15603,Taran,546,386,699170684,9835,0 +15604,Myk+i+do+kieszonki,374,510,9319058,9799,0 +15605,XXXII,538,379,698350371,10495,0 +15606,Vasperland_024,623,513,7047342,10484,0 +15607,VN+Belisarius,469,381,699883079,9653,0 +15608,045.,493,625,699494488,10220,0 +15609,012,622,497,849091105,10309,0 +15610,R%C4%99cznik+do+zmiany,386,477,699697558,10495,0 +15611,Sian%C3%B3w,387,553,698769107,8154,0 +15612,bucks+x+kamiiiru,421,422,848955783,10971,0 +15613,%5B009%5D,621,541,698305474,9809,0 +15614,0003,597,421,8459255,10203,0 +15615,TRR+004,407,416,698971484,10008,0 +15616,02+im+Kirowa,588,415,849037469,9809,4 +15617,Ufam+Tobie,383,482,699265922,9782,0 +15618,Wioska,380,533,849030226,10951,0 +15619,Oeste+dos,385,554,698916948,5667,0 +15620,070,588,590,698999105,10311,0 +15621,016,483,623,699494488,9364,0 +15622,%5BA%5D_%5B002%5D+Dejv.oldplyr,393,480,699380607,10444,0 +15623,145+MIKOX+016,589,413,699491076,8755,0 +15624,A0041,378,472,8841266,10252,0 +15625,GOGOLICE,514,376,699368887,10237,0 +15626,Teby_22,506,622,2585846,9638,0 +15627,037.,482,626,699494488,10223,0 +15628,174,549,386,849064752,10311,0 +15629,Mniejsze+z%C5%82o+0019,375,483,699794765,9746,0 +15630,Ulu-mulu,432,604,699697558,5201,0 +15631,Myk+i+do+kieszonki,376,509,9319058,9799,0 +15632,EKG+026+Dawid,482,620,33900,10120,0 +15633,.53,382,514,848955783,10971,0 +15634,Twierdza+3,624,486,848935020,7786,0 +15635,CALL+914,509,626,699784536,10311,5 +15636,Szlachcic+008,619,533,698562644,10311,0 +15637,089+Wioska+barbarzy%C5%84ska,595,421,699491076,9369,0 +15638,Wioska,379,525,849084005,10178,0 +15639,znow+zawijam+lolka+z+grama,392,567,9167250,5335,0 +15640,0013,620,528,6510480,10315,0 +15641,R%C4%99cznik+do+zmiany,397,430,699697558,10160,3 +15642,Avanti%21,375,487,698625834,9950,0 +15643,026,427,395,699783765,11130,0 +15644,rakieta+010,620,529,848928486,6155,0 +15645,Czekam+na+VS,543,382,698350371,10444,0 +15646,Mniejsze+z%C5%82o+0001,379,478,699794765,10147,0 +15647,Wioska+barbarzy%C5%84ska,442,387,699191449,10495,0 +15648,079,624,497,699373599,7818,0 +15649,031,447,613,849084985,10295,0 +15650,Taran,545,383,699170684,10019,0 +15651,099,448,615,849084985,10593,0 +15653,A024,617,451,699722599,10233,0 +15654,K34+-+%5B030%5D+Before+Land,454,384,699088769,10259,0 +15655,Pustynia,377,497,699265922,9816,0 +15657,Wioska+barbarzy%C5%84ska,382,532,849030226,9574,0 +15658,Taran,549,383,699170684,9492,0 +15659,Wioska+022,595,584,848971079,9761,0 +15660,075,480,625,699336777,9899,0 +15661,Mniejsze+z%C5%82o+0033,374,485,699794765,10011,0 +15662,HORUS,517,625,7756002,9893,0 +15663,055,483,376,698739350,7929,0 +15664,B008,624,496,9314079,9819,0 +15665,Pigmej,376,488,699265922,9752,0 +15666,22+im+%C5%81orenta,583,406,849037469,9809,0 +15667,Winter+is+coming,500,576,699364813,9753,0 +15668,Darma,426,399,356642,9835,0 +15669,WW4,618,481,849088515,10019,0 +15670,Wioska+barbarzy%C5%84ska,614,554,7047342,10481,0 +15671,Knowhere,373,509,699723284,7912,0 +15672,Wioska,380,542,849084005,10178,0 +15673,012+Wioska+Crawley,622,475,699671454,8583,0 +15674,Wioska,379,516,849084005,10178,0 +15675,025+-+AAAAA,423,599,225023,10495,0 +15676,Ulu-mulu,438,610,699697558,9637,0 +15677,Gwiazda+%C5%9Amierci,541,381,698350371,10495,5 +15678,--002--,425,600,225023,10495,0 +15679,Jaaa,575,600,698635863,10479,0 +15680,Gorzelnia,622,511,699795378,10252,0 +15681,%2AINTERTWINED%2A%2A,516,622,698704189,9711,0 +15682,MojeSzczytToTw%C3%B3jDno,521,377,828637,10495,0 +15683,MojeSzczytToTw%C3%B3jDno,517,375,828637,10495,0 +15684,0048,623,520,6510480,9723,0 +15685,Wioska+barbarzy%C5%84ska,416,410,699402816,9835,0 +15686,Bocianikson013,612,549,7528491,7520,0 +15687,Gryfios+001b,621,538,698666810,11879,0 +15688,FKG+01-12,420,405,356642,9835,0 +15689,006.+Blaviken,566,392,699799629,10495,0 +15690,Westcoast.014,392,437,848918380,10178,0 +15691,Wioska,375,521,849084005,10178,0 +15692,0150,549,614,698659980,10252,0 +15693,Wioska,386,552,849084005,7303,0 +15694,14+K-PAX,622,509,699377151,6259,0 +15695,038.,483,626,699494488,10221,0 +15696,.037.,489,375,698489071,10595,0 +15697,Kentin+ufam+Tobie,384,448,699783765,10000,0 +15699,103,446,614,849084985,10078,0 +15700,%2A0006+Baraki,607,431,8459255,10362,0 +15701,Bocianikson008,613,548,7528491,9958,0 +15702,Wioska+barbarzy%C5%84ska,477,375,699658023,9650,0 +15703,0340,498,622,698659980,10495,0 +15704,FKG+01-18,419,403,356642,9835,0 +15705,003+Osada+gazela,622,467,699671454,9045,2 +15706,Piek%C5%82o+to+inni,489,395,848956765,10019,0 +15707,0157,452,616,698659980,8863,0 +15708,069+Fukuoka,619,472,7092442,10495,0 +15709,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,624,8201460,10237,0 +15710,Jaaa,606,430,698635863,10495,0 +15711,Wioska+014,595,576,848971079,9761,0 +15712,Wioska+barbarzy%C5%84ska,404,416,698971484,10008,0 +15713,C+018,564,394,6384450,10362,0 +15714,%5B220%5D+WEST,616,454,848985692,10290,0 +15715,Zach%C3%B3d+-+001,398,575,225023,10495,0 +15716,MojeSzczytToTw%C3%B3jDno,523,367,828637,10495,0 +15717,0000027%25,420,596,849089881,10160,0 +15718,078.+Vakar,626,478,8337151,11678,0 +15719,%23064,476,620,699605333,10636,0 +15720,R-6,550,384,3600737,9013,0 +15721,W.181%2F13,620,527,2999957,10242,0 +15722,0028,420,403,848913037,9993,0 +15723,A032,614,453,699722599,10481,0 +15724,wioska12,625,473,848935020,10362,8 +15725,Czarny,380,494,699265922,9835,0 +15726,VN+Tomyris,466,379,699883079,9643,0 +15727,Lord+Arsey+KING,589,584,848956513,10285,0 +15728,Kentin+ufam+Tobie,388,443,699783765,10000,4 +15729,A0124,375,489,8841266,10252,0 +15730,027+-+Birmingham,405,580,225023,10495,0 +15731,CALL+922,556,615,699784536,10311,0 +15732,Belvedere+020,588,408,699756210,10311,0 +15733,Ulu-mulu,436,610,699697558,10886,0 +15734,Gryfios+013,616,543,698666810,11805,0 +15735,Wioska+ValiossQ,558,612,699567608,10047,0 +15736,A014,612,447,699722599,10351,0 +15737,%2A042%2A,625,501,698670524,3351,0 +15738,Kentin+ufam+Tobie,387,442,699783765,10000,0 +15739,Wioska+barbarzy%C5%84ska+014%7C,581,404,6343784,9372,0 +15740,0029,537,517,699432672,10495,0 +15741,Knowhere,373,516,699723284,10452,0 +15742,069+-+Wojenka,420,583,225023,10495,0 +15743,.028.,486,373,698489071,10595,0 +15744,Kentin+ufam+Tobie,384,447,699783765,10000,0 +15745,Teby_29,505,625,2585846,9638,0 +15746,Jaaa,577,598,698635863,10476,0 +15747,Wioska+barbarzy%C5%84ska,379,528,849030226,10484,0 +15748,Jaaa,608,434,698635863,10479,0 +15749,Part+XXXI,533,379,698350371,10311,0 +15750,%2A024%2A,625,481,698670524,8108,0 +15751,Avanti%21,375,488,698625834,9962,0 +15752,Wioska+barbarzy%C5%84ska,399,463,699523631,10484,0 +15753,Nowa+04,612,557,698702991,9824,0 +15754,Ciapkowo,623,502,699795378,7072,0 +15755,014.,624,522,6520732,9573,0 +15756,MojeSzczytToTw%C3%B3jDno,521,379,828637,10495,0 +15757,Mut4ntMass,623,517,699379895,10495,0 +15758,009,401,420,699788305,7846,0 +15759,A0245,377,493,8841266,10252,0 +15760,MasterWolf12,556,391,3600737,9013,0 +15761,MojeSzczytToTw%C3%B3jDno,520,374,828637,10487,0 +15762,TRR+005,411,414,698971484,10008,4 +15763,Wioska,383,541,849084005,10178,0 +15764,004+Wolni+farmerzy,387,560,699382126,10478,8 +15765,Wioska+008,595,583,848971079,9761,0 +15766,%23018+A,461,615,9037756,10019,0 +15767,Jaaa,611,441,698635863,10478,0 +15768,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+04,625,515,699379895,10578,0 +15769,034,502,372,698739350,9761,0 +15771,Mniejsze+z%C5%82o+0041,377,465,699794765,9911,0 +15772,MojeSzczytToTw%C3%B3jDno,522,375,828637,10479,0 +15773,Ulu-mulu,429,603,699697558,10422,0 +15774,FKG+01-17,418,405,356642,9835,0 +15775,ADEN,522,377,698588535,10311,0 +15776,081+-+PATO-orki,436,604,225023,10495,0 +15777,A030,618,454,699722599,10476,0 +15778,010,400,420,699788305,7406,0 +15779,006,478,605,8925624,8513,0 +15780,Wioska,381,544,849084005,10178,0 +15781,0009,421,403,848913037,9993,0 +15782,Pi%C4%99kny+%C5%9Bwiat%2A.%2A,566,604,699785935,10160,0 +15783,Diablooo,561,387,3600737,9070,0 +15784,008.Baltoro+Sangri,603,569,1601917,10495,0 +15785,Kentin+ufam+Tobie,369,455,699783765,10000,0 +15786,Konfederacja+8,460,381,848915730,9812,0 +15787,Wioska+barbarzy%C5%84ska+015%7C,576,400,6343784,9582,0 +15788,Wioska+barbarzy%C5%84ska,611,559,7047342,10481,0 +15789,Bagdad,478,379,8847546,10654,0 +15790,%23014,485,607,849001572,10006,0 +15791,scoti,494,622,699494488,10223,0 +15792,%2B44+84+Grezieu+la+Varenne,449,485,698361257,9542,0 +15793,Wioska,599,575,17714,10222,0 +15794,008,559,613,699567608,10160,0 +15795,Wioska+barbarzy%C5%84ska,405,420,698971484,10008,0 +15796,030.,616,479,8900955,10316,0 +15797,028.+Rewir+II,398,569,9167250,8042,0 +15798,034+%7C+PALESTINA,623,467,9228039,9544,0 +15799,Szulernia,408,409,7249451,10237,0 +15800,.007.,496,377,698489071,10252,0 +15801,Taran,547,383,699170684,7334,0 +15802,Avanti%21,377,478,698625834,9852,0 +15803,Knowhere,394,504,699723284,10452,0 +15804,%230006+Iwagakure,530,620,699728159,9761,0 +15806,%230002+Kirigakure,527,621,699728159,9761,0 +15807,Osada+koczownik%C3%B3w,603,571,17714,10216,4 +15808,-036-,460,424,9291984,10479,0 +15809,FKG+01-27,413,406,356642,9835,0 +15810,Horyzont+zdarze%C5%84,540,620,7581876,9835,0 +15811,Tank+001.+Szykullo,398,499,698290577,10343,0 +15812,Wioska+barbarzy%C5%84ska,439,392,849027025,9648,0 +15813,Amnesia,397,569,9167250,8940,0 +15814,Wioska,378,519,849084005,10178,0 +15815,%2AINTERTWINED%2A,516,626,698704189,9711,7 +15816,VN+Centurion,453,384,699883079,10495,0 +15817,Wioska,403,423,7462660,10068,0 +15818,Kentin+ufam+Tobie,384,449,699783765,10000,0 +15819,R%C4%99cznik+do+zmiany,394,433,699697558,10050,0 +15820,Gattacka,599,424,699298370,9358,0 +15821,Wioska,382,535,849084005,10178,0 +15822,%3D012%3D+Lecz+Gra%C5%BCyna+zobaczy%C5%82a,612,553,3781794,10580,3 +15823,MojeSzczytToTw%C3%B3jDno,524,376,828637,10481,0 +15824,A0011,379,467,8841266,10252,0 +15825,%5B002%5D,619,543,698305474,9809,0 +15826,Darma,425,399,356642,9835,0 +15827,Avanti%21,377,483,698625834,9950,0 +15828,A015,613,446,699722599,10155,0 +15830,Teby_24,503,624,2585846,9638,0 +15831,A0029,379,473,8841266,10252,0 +15832,023,483,377,849010255,10019,0 +15833,SsSs,399,498,1536625,10160,0 +15834,South+K35,556,386,699146580,10042,0 +15835,Buk,372,513,699265922,8570,0 +15836,0025+XXARDASS,427,599,9060641,9365,0 +15837,So%C5%82tys+Twojej+Wsi,438,391,849027025,9294,5 +15838,Konfederacjan+%28LXIX%29+Gie%C5%82danu,522,370,828637,10495,0 +15839,Wioska+barbarzy%C5%84ska,613,558,7047342,10481,0 +15840,186,576,398,849064752,10311,0 +15841,Defensywa+IV,575,396,698350371,10495,0 +15842,Winter+is+coming,503,578,699364813,9935,0 +15843,krzysiek1293,412,427,7462660,10122,0 +15844,023.+Lugdunum,616,463,849091866,9185,0 +15845,026,379,532,8908002,9993,0 +15846,003,452,619,699859013,10495,0 +15847,003.Annapurna,605,569,1601917,10495,0 +15848,Mniejsze+z%C5%82o+0005,375,484,699794765,9783,0 +15849,SINGED+X+SZEF,492,375,699368887,9994,0 +15850,Skarbonka+%28cado%29,416,591,698769107,9835,0 +15851,Avanti%21,375,486,698625834,9959,0 +15852,%2A0014+Baraki,604,430,8459255,10187,0 +15853,FAKE+OR+OFF,436,395,698231772,9816,0 +15854,Lord+Arsey+KING,517,499,848956513,10285,0 +15855,002.Avicenny,604,573,1601917,10495,0 +15856,026.xxx,449,615,698143931,10045,0 +15857,002b+d,394,569,9167250,8938,0 +15858,Darma,429,399,356642,9835,0 +15859,Kraal,377,498,699265922,9761,0 +15860,050+%7C+PALESTINA,622,478,9228039,9544,0 +15861,%230022,519,626,699728159,7396,0 +15862,Wioska+003,594,581,848971079,9761,0 +15863,0013+BBBB,425,597,9060641,10539,0 +15864,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+08,622,516,699379895,9522,0 +15865,FKG+01-24,420,402,356642,9835,0 +15866,010+Wioska,625,472,699671454,6471,0 +15867,%23023+A,457,615,9037756,9835,0 +15868,147+MIKOX+021,591,411,699491076,7694,0 +15869,001+Wioska+DonSzwagreone,528,379,699854484,10068,0 +15870,0016,556,610,698659980,10252,0 +15871,Wioska,377,535,849084005,10178,0 +15872,012+Ile+typa+many,390,563,699382126,10478,4 +15873,030,381,530,8908002,9993,0 +15874,Deka,627,500,699379895,10495,0 +15875,To+co+masz+Ty,572,603,699785935,10083,0 +15876,MojeSzczytToTw%C3%B3jDno,519,376,828637,10495,0 +15877,Jaaa,606,435,698635863,10481,0 +15878,ADEN,519,383,698588535,9737,0 +15879,Part+XXIV,537,377,698350371,10495,0 +15880,MojeSzczytToTw%C3%B3jDno,527,373,828637,10495,0 +15881,Wioska+barbarzy%C5%84ska,422,398,699402816,9835,0 +15882,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,625,8201460,10237,0 +15883,VN+Wu+Zetian,468,377,699883079,9655,0 +15884,013+-+melina,416,592,225023,9110,0 +15885,HORUS...,516,624,7756002,9939,0 +15886,009,619,544,8428196,9936,0 +15887,Defensywa+I,576,402,698350371,10132,0 +15889,043+OZDR,463,623,699336777,9902,0 +15890,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,624,8201460,10237,0 +15891,Kentin+ufam+Tobie,390,442,699783765,10000,0 +15892,005,615,451,849088515,10019,0 +15893,Wioska+barbarzy%C5%84ska,381,464,3698627,10072,0 +15894,0432,543,619,698659980,10019,0 +15895,Pobozowisko,409,590,699513260,10971,0 +15896,Westcoast.011,392,435,848918380,10178,0 +15897,%230008+Kusagakure,530,621,699728159,9761,0 +15898,W.181%2F18,622,528,2999957,10242,0 +15899,xDD,439,608,699280514,6674,0 +15900,Berlin,397,574,9167250,9227,5 +15901,032,585,411,849064752,10311,0 +15902,MojeSzczytToTw%C3%B3jDno,531,376,828637,10365,0 +15903,E+007,590,591,8078914,9997,0 +15904,100+Wioska+barbarzy%C5%84ska,597,419,699491076,9319,0 +15905,XXXVI,538,377,698350371,10495,0 +15906,Bagdad,473,380,8847546,10654,0 +15907,Wioska+barbarzy%C5%84ska,529,376,828637,10495,0 +15908,C003,574,399,699722599,10495,0 +15909,015.+Winter+is+coming,481,624,848883684,10266,0 +15910,002+Hello+Moto,596,418,699491076,10001,0 +15911,Taran,548,382,699170684,9379,0 +15912,027.,491,628,699494488,10218,0 +15913,S%C5%82awno,388,552,698769107,6657,0 +15914,003,508,372,849010255,10019,0 +15916,0003,413,593,225023,10495,0 +15917,Myk+i+do+kieszonki,376,500,9319058,8461,0 +15918,%3D013%3D+Sporego+grzyba...,613,552,3781794,10580,0 +15919,0009,566,381,699485250,10211,0 +15921,C+Pld+002+Kijow,409,588,849084740,6785,0 +15922,Wioska+barbarzy%C5%84ska,484,623,699494488,10093,0 +15923,Wioska,377,517,849084005,10178,0 +15924,Sparta_09,497,598,2585846,9638,0 +15925,Zeta+Reticuli+S,405,422,699323302,11188,0 +15926,%23019.496%7C503,615,454,556154,9735,0 +15927,045,543,618,699189792,9747,0 +15928,%23002.490%7C496,609,447,556154,9735,0 +15929,014,476,625,699336777,9825,0 +15930,017.,487,626,699494488,10479,0 +15931,Jehu_Kingdom_34_,618,452,8785314,9993,0 +15932,Jaaa,614,455,698635863,10484,0 +15933,Pobozowisko,413,587,699513260,10301,0 +15934,003,381,465,3698627,9958,0 +15935,Hojo+s+Laboratory+Main+Level,521,623,8199417,10426,0 +15936,Bocianikson011,621,543,7528491,9409,0 +15937,005.,614,547,6520732,9761,5 +15939,025,429,395,699783765,10718,0 +15940,034,627,485,849006412,6795,0 +15941,Momito,468,623,699443920,9761,0 +15942,0055+w,443,426,3909522,10147,0 +15943,K34+-+%5B020%5D+Before+Land,448,382,699088769,10259,0 +15944,Stadio+Olimpico,625,516,699795378,10252,0 +15945,Wioska,606,569,17714,10259,0 +15946,%23031,468,619,699605333,10393,0 +15947,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,622,8201460,10237,0 +15948,06+im+Jegorowa,584,405,849037469,9809,0 +15949,Wioska+barbarzy%C5%84ska,593,586,1715091,9656,0 +15950,karas,376,492,699265922,8900,3 +15951,Wioska+%28024%29,622,473,698232227,9368,0 +15952,144+MIKOX+015,589,410,699491076,9209,0 +15953,x001,398,496,698290577,7165,0 +15954,Liana,372,495,699265922,9761,5 +15955,A0125,372,491,8841266,10252,0 +15956,0062,457,619,698659980,10083,0 +15957,Wioska+barbarzy%C5%84ska,376,465,3698627,9971,0 +15958,Wioska+005,595,579,848971079,9761,0 +15959,So%C5%82tys+Twojej+wsi,435,389,849027025,9481,0 +15960,A-005,417,408,8419570,10580,9 +15961,Pobozowisko,412,590,699513260,10955,0 +15962,VN+Seondeok,470,376,699883079,9636,0 +15963,DOOSAN+PUMA+2100LMS,530,568,699698253,9825,0 +15964,Yyy,497,373,699883079,10132,0 +15965,A+READY,593,414,1553947,10019,6 +15966,040+Pot%C4%99%C5%BCny+Dzban,388,557,699382126,9370,0 +15967,014.+Wraca,487,617,699494488,10229,0 +15968,Wioska+barbarzy%C5%84ska,380,461,3698627,9959,0 +15969,Jaaa,608,436,698635863,10543,0 +15970,Piwna+01,613,435,699812007,9318,0 +15971,035,503,372,698739350,9761,0 +15972,Mniejsze+z%C5%82o+0080,377,462,699794765,7207,0 +15973,007+Gr%C3%B3jec,549,388,3600737,9549,0 +15975,EKG+022+WZ,496,625,33900,10292,0 +15976,Vileda,402,524,1804724,10190,0 +15977,A.003,408,587,849088243,9362,0 +15978,A003,614,445,699722599,10362,0 +15979,MojeSzczytToTw%C3%B3jDno,507,375,828637,10495,0 +15980,Jaaa,621,457,698635863,10479,0 +15981,Kentin+ufam+Tobie,381,452,699783765,10000,0 +15982,Teby_25,505,623,2585846,9638,0 +15984,Wioska+barbarzy%C5%84ska,379,465,3698627,9965,0 +15985,Jaaa,620,458,698635863,10476,0 +15986,021,625,494,849006412,9899,0 +15987,D03,622,468,849093742,10036,0 +15988,%2A047%2A,629,495,698670524,9761,0 +15989,006,618,547,8428196,9936,0 +15990,008.+Angmar,492,627,699494488,10271,3 +15991,MojeSzczytToTw%C3%B3jDno,521,378,828637,10495,0 +15992,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,624,8201460,10237,0 +15993,Westcoast.069,394,429,848918380,10178,0 +15994,008,401,422,699788305,7729,0 +15995,Ulu-mulu,435,609,699697558,11911,0 +15996,030+-+Londyn,406,581,225023,10495,8 +15997,Wioska+barbarzy%C5%84ska,404,417,698971484,10008,0 +15998,Ulu-mulu,428,605,699697558,11678,0 +15999,012,504,375,849010255,10019,0 +16000,Taran,546,382,699170684,9374,0 +16001,Wioska+barbarzy%C5%84ska,405,421,7462660,10047,0 +16002,Westcoast.017,389,439,848918380,10178,0 +16003,%2A%2A%2A9f%2A%2A%2A,553,388,3600737,9013,0 +16004,FKG+01-34,412,409,356642,9835,0 +16005,Wioska+MoonWalk,379,475,699523631,10475,0 +16006,Wioska+barbarzy%C5%84ska,403,418,698971484,10008,0 +16007,A025,617,457,699722599,10476,0 +16008,%230007+Otogakure,531,620,699728159,9761,0 +16009,ADEN,524,379,698588535,9737,0 +16010,Westcoast.068,389,434,848918380,10178,0 +16011,Wioska+028,600,578,848971079,9761,0 +16012,113+Wioska+barbarzy%C5%84ska,387,552,699382126,10495,0 +16013,ADEN,524,380,698588535,9737,0 +16014,042+OZDR,465,624,699336777,9902,0 +16015,Pobozowisko,406,587,699513260,10172,0 +16016,Wioska+006,592,582,848971079,9761,0 +16017,Pobozowisko,417,590,699513260,10945,0 +16018,009.Baintha+Brakk,605,567,1601917,10495,0 +16019,Czekam+na+VS,539,382,698350371,10495,0 +16020,Wioska+barbarzy%C5%84ska,390,548,699425709,6557,0 +16021,Jaaa,605,434,698635863,10495,0 +16022,001,628,511,699139964,4574,0 +16023,Wioska+barbarzy%C5%84ska,479,375,699658023,9454,0 +16024,A019,616,453,699722599,10475,0 +16025,115+Wioska+barbarzy%C5%84ska,531,380,699854484,9835,0 +16026,Westcoast.028,397,428,848918380,10178,0 +16027,A.022,404,577,849088243,10221,0 +16028,009.,563,606,873575,10167,0 +16029,Wioska+barbarzy%C5%84ska,379,466,3698627,9962,0 +16030,Bia%C5%82a+Cerkiew,377,534,849030226,9761,0 +16031,Lagovi%C4%87,436,609,699697558,4172,0 +16032,Osada+koczownik%C3%B3w,400,424,7462660,10068,1 +16034,Myk+i+do+kieszonki,377,511,9319058,9799,0 +16036,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,445,612,8201460,10237,0 +16037,K34+-+%5B058%5D+Before+Land,457,384,699088769,10259,0 +16038,CALL+929,509,624,699784536,10311,0 +16039,051,568,394,849063849,10316,0 +16040,Kentin+ufam+Tobie,386,449,699783765,10000,4 +16041,E+001,592,593,8078914,10479,0 +16042,0053,625,520,6510480,9362,0 +16043,%2A044%2A,625,490,698670524,4951,7 +16044,Pobozowisko,410,596,699513260,10950,0 +16045,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,623,8201460,10237,0 +16046,sony911,565,605,1415009,10222,0 +16047,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,438,611,1434753,10068,6 +16048,098+Aneta+420,390,558,699382126,7190,0 +16049,188,569,398,849064752,10232,0 +16051,Karhold,481,623,699494488,10495,0 +16052,0010,422,403,848913037,9993,0 +16053,U-03,561,389,3600737,9549,0 +16054,0047,455,619,698659980,10019,0 +16055,%230003,516,373,7651093,9814,0 +16056,Wioska+barbarzy%C5%84ska,406,414,698971484,10008,0 +16057,A0305,374,508,8841266,10252,6 +16058,Jaaa,593,584,698635863,10474,0 +16059,Pobozowisko,400,581,699513260,9266,0 +16060,Wioska,381,541,849084005,10178,0 +16061,K34+x012,449,384,698364331,8348,0 +16062,MojeSzczytToTw%C3%B3jDno,530,375,828637,10495,0 +16063,A0079,374,475,8841266,10252,0 +16064,.008.,495,376,698489071,10224,0 +16065,148+MIKOX+024,592,411,699491076,9888,0 +16066,%5B005%5D,620,539,698305474,9809,0 +16067,MojeSzczytToTw%C3%B3jDno,522,373,828637,10479,0 +16068,FKG+01-14,421,405,356642,9835,0 +16069,PYRLANDIA+022+Menager+s+%2B+8k,565,587,33900,10495,0 +16070,21+im+Sierowa,583,404,849037469,9809,0 +16071,Wioska+011,596,580,848971079,9761,0 +16072,004,559,612,699567608,9988,0 +16073,%2AINTERTWINED%2A,510,626,698704189,9711,0 +16074,Darma,430,393,356642,9835,0 +16075,Wioska+barbarzy%C5%84ska,424,397,699402816,9835,0 +16076,Darma,426,400,356642,9835,0 +16077,Wioska+barbarzy%C5%84ska,614,551,7047342,10484,0 +16078,Wioska+barbarzy%C5%84ska,438,387,849027025,7462,0 +16079,007+Wioska+barbarzy%C5%84ska,532,376,699854484,10178,0 +16080,Pobozowisko,408,585,699513260,9564,0 +16081,Sfinks,375,499,699265922,10019,9 +16082,EKG+021+Broonx,490,623,33900,10090,0 +16083,C+008,580,399,6384450,10362,0 +16084,Belvedere+008,583,402,699756210,10311,0 +16085,104+%2A%2A%2A9d%2A%2A%2A+Porzeczka,553,389,699491076,10001,0 +16086,016.,488,626,699494488,10478,0 +16087,Myk+i+do+kieszonki,375,501,9319058,9799,0 +16088,005,510,373,849010255,10019,3 +16089,sie+jara+od+nocy+do+rana,399,571,9167250,6235,0 +16090,%2A0008+Baraki,609,432,8459255,10189,0 +16091,%230004+Sunagakure,529,620,699728159,9761,0 +16092,Bocianikson009,615,549,7528491,9958,0 +16093,Jaaa,615,441,698635863,10495,0 +16094,R%C4%99cznik+do+zmiany,395,435,699697558,10362,0 +16096,Horyzont+zdarze%C5%84,536,620,7581876,9835,0 +16097,019+OTW%C3%93RZ+RYJ+TEEEJ,624,466,699272633,10481,0 +16098,Vasperland_022,625,512,7047342,10441,0 +16099,Wioska+%28002%29,620,469,698232227,8531,4 +16100,020,500,627,699878511,10143,0 +16101,CALL+926,556,614,699784536,10311,0 +16102,A001,515,383,7758085,10094,0 +16103,Wioska,383,549,849084005,6916,0 +16104,029,565,608,699316421,9744,0 +16105,Wioska+Aizen-T,411,406,699402816,9835,0 +16106,0002,414,593,225023,10495,0 +16107,Wioska+%28014%29,624,475,698232227,9713,0 +16108,09.+Gentiana,523,623,8199417,10495,0 +16109,002+Plantacja+Marchewy,394,568,9167250,9234,0 +16110,Jaaa,596,586,698635863,10396,0 +16111,KR%C3%93L+PAPI+WIELKI,573,577,698191218,10000,0 +16112,Jaaa,576,602,698635863,10487,0 +16113,Lord+Arsey+KING,593,585,848956513,7526,0 +16115,Jaaa,580,596,698635863,9876,3 +16116,KR%C3%93L+PAPI+WIELKI,576,578,698191218,10000,0 +16117,MojeSzczytToTw%C3%B3jDno,515,372,828637,10495,0 +16119,Pobozowisko,403,584,699513260,10971,0 +16120,037,577,398,7271812,10495,0 +16122,Shallow,575,599,699785935,10160,0 +16123,Jaaa,622,461,698635863,10487,0 +16124,Wioska+barbarzy%C5%84ska,444,384,699191449,11130,0 +16125,Lecymy+DUR,445,390,6169408,9856,0 +16126,Merin,482,624,699494488,7980,0 +16127,30.+Wioska+30,392,566,849091769,9659,0 +16128,Gattacka,601,426,699298370,9550,0 +16129,%23001.500%7C500,619,451,556154,9735,0 +16130,Wioska+barbarzy%C5%84ska,590,412,699491076,5559,0 +16131,-+087+-,552,597,849018239,10000,0 +16132,K34+-+%5B059%5D+Before+Land,455,384,699088769,10259,0 +16133,Szlachcic+P%C3%B3%C5%82noc+004,629,509,698562644,10311,0 +16134,Wioska+barbarzy%C5%84ska,614,559,7047342,10475,0 +16135,Oaza,568,603,699785935,9348,0 +16136,Konfederacja+8,461,379,848915730,9737,0 +16137,031+Pot%C4%99%C5%BCny+Dzban,385,557,699382126,10479,0 +16138,A0043,378,470,8841266,10252,0 +16139,E+010,587,594,8078914,9783,0 +16140,Teby_30,504,625,2585846,9638,0 +16141,A0154,373,471,8841266,10252,0 +16142,Wioska+barbarzy%C5%84ska,381,531,849030226,10551,0 +16143,037+OZDR,467,625,699336777,9899,5 +16144,%5B080%5D,560,551,8000875,9962,0 +16145,Jaaa,613,444,698635863,9902,0 +16146,Jaaa,578,597,698635863,10474,0 +16147,0028,625,531,6510480,10074,0 +16148,03+im+Berii,595,414,849037469,9809,0 +16149,Kentin+ufam+Tobie,386,441,699783765,10000,0 +16150,kkkk,425,605,699342219,10478,0 +16151,zak%C5%82ad+pogrzebowy+to+ju%C5%BC+czas,566,605,699364813,10495,4 +16152,017,503,376,849010255,10019,0 +16153,A-006,414,406,8419570,10580,9 +16154,Wioska+barbarzy%C5%84ska,417,409,699402816,9835,0 +16155,045+OZDR,464,624,699336777,9825,0 +16156,014+Wioska,621,464,699671454,8078,0 +16157,016,476,626,699336777,9825,0 +16158,Kentin+ufam+Tobie,387,446,699783765,10000,0 +16159,0150,626,487,698416970,6916,0 +16160,.012.,497,376,698489071,10316,0 +16161,Kentin+ufam+Tobie,386,442,699783765,10000,0 +16162,Pobozowisko,410,588,699513260,10971,0 +16163,Kentin+ufam+Tobie,388,441,699783765,10000,0 +16164,Bravo,609,566,699737356,8159,0 +16165,012.,564,612,873575,9966,0 +16166,Jaaa,592,585,698635863,10484,0 +16167,0001,415,593,225023,10495,0 +16169,Westcoast.051,399,422,848918380,10178,0 +16170,006,581,599,698999105,10311,0 +16171,0029,621,529,6510480,10189,0 +16172,VN+Tomoe+Gozen,451,380,699883079,10311,9 +16173,So%C5%82tys+Wsi+Filters,437,390,849027025,9718,0 +16174,VN+Hisoka,478,373,699883079,9667,0 +16175,Westcoast.002,390,435,848918380,10178,0 +16176,Pobozowisko,409,587,699513260,9635,0 +16177,Knowhere,373,501,699723284,10452,0 +16178,023+Pot%C4%99%C5%BCny+Dzban,391,562,699382126,9465,0 +16179,Wioska+Go%C5%82abek,592,584,17714,10216,0 +16180,0004,415,595,225023,10495,0 +16181,Szulernia,409,410,7249451,9738,0 +16182,A026,617,456,699722599,10348,0 +16183,A015,514,378,7758085,9925,0 +16184,So%C5%82tys+Twojej+Wsi,435,390,849027025,9378,0 +16185,029.+Aquitania,623,462,849091866,9419,0 +16186,Taran,549,381,699170684,9364,0 +16187,Kentin+ufam+Tobie,387,448,699783765,10000,0 +16188,Kokoyashi,491,390,699433558,10544,0 +16189,Westcoast.018,392,438,848918380,10178,0 +16190,Myk+i+do+kieszonki,374,500,9319058,9046,0 +16191,051+OZDR,480,628,699336777,10559,0 +16192,Jaaa,581,597,698635863,10479,0 +16193,Wioska+fikumiku111,565,611,699567608,9031,0 +16194,Pobozowisko,411,590,699513260,10952,0 +16195,Sony+911,567,609,1415009,9947,0 +16196,024,430,396,699783765,11130,0 +16197,Yyyy,499,371,699883079,10132,0 +16198,17+im+Kanukowa,587,409,849037469,9809,0 +16199,010,576,599,698999105,10311,0 +16200,Ulu-mulu,421,602,699697558,6540,0 +16201,Kentin+ufam+Tobie,433,390,699783765,10019,0 +16202,Belvedere+009,580,406,699756210,7180,0 +16203,01+Hiszpania,586,489,8925695,10426,0 +16204,Westcoast.058,390,439,848918380,10178,0 +16205,K34+-+%5B012%5D+Before+Land,457,380,699088769,10259,0 +16206,Wioska,380,549,849084005,10178,5 +16207,044,541,618,699189792,9825,0 +16208,Kentin+ufam+Tobie,381,448,699783765,10000,0 +16209,007,589,592,698999105,10311,0 +16210,MojeSzczytToTw%C3%B3jDno,531,383,828637,10495,0 +16211,Wioska+%28012%29,625,470,698232227,9694,1 +16212,MojeSzczytToTw%C3%B3jDno,537,376,828637,9814,0 +16213,A0306,372,516,8841266,10252,0 +16214,D013,586,406,699761749,10495,0 +16215,FKG+01-22,414,412,356642,9835,0 +16216,Brat447,387,506,699262350,10476,0 +16217,Wioska+barbarzy%C5%84ska,380,538,849030226,9782,0 +16218,K34+-+%5B036%5D+Before+Land,461,380,699088769,10259,0 +16219,.011.,497,375,698489071,10316,0 +16220,.026.,484,374,698489071,10301,7 +16221,Wioska,383,551,849084005,10178,0 +16222,A0081,371,487,8841266,10252,0 +16223,Ob1,599,416,8192845,9710,0 +16224,Wioska+barbarzy%C5%84ska,482,372,699658023,9121,0 +16225,072,586,403,849064752,10311,4 +16226,023,570,604,698999105,10311,0 +16227,Wioska,380,550,849084005,10178,0 +16228,Wioska,381,551,849084005,9899,0 +16229,001,482,376,1454871,1374,0 +16230,038+Inazawa,625,483,7092442,10495,0 +16231,Brat447,371,498,699262350,10479,0 +16232,Part+XV,535,378,698350371,10475,0 +16234,18+im+Dygaja,586,407,849037469,9809,0 +16235,028+Seattle,433,437,9291984,10559,0 +16236,Wioska+barbarzy%C5%84ska,593,566,8742874,5165,0 +16237,-010-+K55,591,592,8096537,9740,0 +16238,019+020,547,381,699491076,10001,0 +16239,179,548,385,849064752,10311,0 +16240,007+Wioska+Sir+Krzysztof,624,465,699671454,7634,0 +16242,012+-+ZOBACZYMY,414,596,225023,10495,0 +16243,0072,453,618,698659980,10083,0 +16244,Dzungla,373,495,699265922,9825,8 +16245,Monia,402,420,7462660,10052,0 +16246,Wioska+barbarzy%C5%84ska,398,572,9167250,6074,0 +16247,045,432,390,699783765,10879,0 +16248,032.,482,627,699494488,10237,0 +16249,Gryfios+015,618,542,698666810,11534,0 +16250,006,380,464,3698627,10206,0 +16251,035,479,626,699336777,9825,0 +16252,Suppi,432,444,699856962,10290,0 +16253,Sony+911,566,608,1415009,10274,0 +16254,014.xxx,461,621,849084985,9892,0 +16255,Wioska,377,523,849084005,10178,0 +16257,South+K35,559,386,699146580,9809,0 +16258,A008,518,368,699208929,10039,0 +16259,Part+XXVII,531,379,698350371,10495,0 +16260,FKG+01-25,414,404,356642,9835,0 +16261,susza,375,498,699265922,8550,0 +16262,Part+XII,541,380,698350371,10495,0 +16263,Charlie,611,564,699737356,7779,0 +16264,B016,629,494,9314079,9835,0 +16265,Kentin+ufam+Tobie,381,449,699783765,10000,0 +16266,MojeSzczytToTw%C3%B3jDno,511,371,828637,10495,0 +16267,SLA-03,432,437,9291984,10007,0 +16268,059,402,505,699851427,10129,0 +16269,Belvedere+010,581,405,699756210,9608,0 +16270,007,401,582,9264752,10495,0 +16271,A0249,376,494,8841266,10252,0 +16272,%5B011%5D,618,543,698305474,9809,0 +16273,Yogi,520,537,2808172,8148,0 +16274,Z+barba+009,403,579,225023,10495,0 +16275,Westcoast.052,397,429,848918380,10178,0 +16276,A0039,377,472,8841266,10252,0 +16277,RTS+16,571,609,848995242,10143,0 +16278,0065,456,618,698659980,10083,0 +16279,A0042,378,469,8841266,10252,0 +16280,091,438,613,849084985,3835,0 +16281,PRO8L3M,407,495,7491093,10559,0 +16282,K34+-+%5B087%5D+Before+Land,453,379,699088769,10259,0 +16283,040+OZDR,465,623,699336777,9825,0 +16284,VN+Eulji+Mundeok,477,366,699883079,10273,0 +16286,005+Wioska+barbarzy%C5%84ska,437,609,699280514,2012,0 +16287,MojeSzczytToTw%C3%B3jDno,530,376,828637,10178,0 +16288,018,565,609,699351301,10149,0 +16289,Napewno+to+nie+jest+off,495,394,848912265,9014,0 +16290,0023,623,540,6510480,9845,0 +16291,014,505,376,849010255,9574,0 +16292,0007,542,622,848915531,11321,0 +16293,Jaaa,622,460,698635863,10478,0 +16294,CALL+1065,556,616,699784536,10495,0 +16295,Westcoast.049,393,427,848918380,10178,0 +16297,032+jest+dobrze+w+chu1111,623,471,699272633,10476,0 +16298,Hotel,608,567,699737356,9764,0 +16299,Westcoast.045,390,434,848918380,10178,0 +16300,048.+F64D,483,631,699494488,10217,0 +16301,MojeSzczytToTw%C3%B3jDno,512,371,828637,10495,0 +16302,004,399,431,699788305,11130,0 +16303,Malinki+2,626,522,8013349,6605,0 +16304,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,434,612,1434753,9960,3 +16305,Wioska+barbarzy%C5%84ska,379,529,849030226,10484,0 +16306,Darma,427,399,356642,9835,0 +16307,%2A007+Akureyri,382,545,699425709,8694,0 +16308,031.,493,626,699494488,10217,0 +16309,%2A043%2A,627,498,698670524,9737,4 +16310,016.,626,517,6520732,7981,0 +16311,098,454,619,849084985,10059,0 +16312,011,400,419,699788305,7980,0 +16313,%23024.513%7C522,632,473,556154,9735,0 +16314,MojeSzczytToTw%C3%B3jDno,518,373,828637,10476,3 +16315,Jaaa,611,443,698635863,10239,0 +16316,012,620,548,8428196,9937,0 +16317,K34+-+%5B114%5D+Before+Land,453,380,699088769,10259,0 +16318,VN+Frederick+I,477,381,699883079,9876,0 +16319,Kentin+ufam+Tobie,379,451,699783765,10000,0 +16320,042.,493,627,699494488,10223,0 +16321,Westcoast.001,390,433,848918380,10178,0 +16322,%2A046%2A,630,504,698670524,6980,0 +16323,Part+VIII,534,379,698350371,10495,0 +16324,Knowhere,372,510,699723284,10452,0 +16325,Storm,627,499,699379895,10495,0 +16326,K34+-+%5B078%5D+Before+Land,449,383,699088769,10259,0 +16327,Szlachcic+015,626,532,698562644,10311,0 +16328,Mniejsze+z%C5%82o+0021,372,486,699794765,9396,0 +16329,VN+Ramesses,468,380,699883079,9641,0 +16330,Wioska+barbarzy%C5%84ska,402,417,698971484,10008,0 +16331,Knowhere,375,513,699723284,10452,0 +16332,015,504,376,849010255,9605,0 +16334,Myk+i+do+kieszonki,376,501,9319058,9799,0 +16335,056+-+Wiocha,412,592,225023,8018,0 +16336,012,498,629,699878511,10149,0 +16337,CampNou,624,508,699795378,10252,0 +16338,28+im+Ga%C5%82kina,593,416,849037469,9809,0 +16339,%5B0095%5D,414,397,8630972,10495,0 +16340,Avanti%21,375,485,698625834,9959,0 +16341,Kentin+ufam+Tobie,387,441,699783765,10000,0 +16342,Pobozowisko,405,588,699513260,10955,0 +16343,0007,624,525,6510480,10461,0 +16344,VN+Sun+Tzu,477,368,699883079,10239,0 +16345,003,580,600,698999105,10311,0 +16346,0049,628,519,6510480,9551,0 +16348,%2AINTERTWINED%2A,518,629,698704189,8721,0 +16349,Wioska+barbarzy%C5%84ska,563,387,699072129,10229,0 +16350,A0131,372,489,8841266,10252,0 +16351,ave+why%21,442,615,698143931,10197,9 +16352,Mniejsze+z%C5%82o+0016,372,483,699794765,9180,0 +16353,FKG+01-15,419,405,356642,9835,0 +16354,yyyy,498,372,699883079,9942,0 +16355,Pobozowisko,408,589,699513260,8265,0 +16356,Teby_41,502,625,2585846,3391,0 +16357,Wioska+%28013%29,622,481,698232227,9749,0 +16359,%230037,540,622,1536231,10495,0 +16360,Piwna+11,607,432,699812007,9379,0 +16362,0056,457,618,698659980,10019,0 +16363,A-007,413,405,8419570,10580,0 +16364,Myk+i+do+kieszonki,371,509,9319058,8908,0 +16365,Montek,468,624,699443920,9761,0 +16366,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,443,615,8201460,10237,0 +16367,Jaaa,610,442,698635863,10158,0 +16368,048,443,616,849084985,9835,0 +16369,MIKOR+001,559,389,6343784,10009,0 +16370,007,620,547,8428196,9934,0 +16371,006,434,393,699783765,11130,0 +16372,K34+-+%5B024%5D+Before+Land,462,377,699088769,10259,0 +16373,029+Pot%C4%99%C5%BCny+Dzban,384,559,699382126,10479,0 +16374,Wioska+barbarzy%C5%84ska,435,608,699697558,1788,0 +16375,Jehu_Kingdom_09_,620,453,8785314,9993,0 +16376,Kentin+ufam+Tobie,370,456,699783765,10000,0 +16377,A0219,372,496,8841266,10252,0 +16378,Land+of+Fire,385,453,698962117,9579,0 +16379,%2AINTERTWINED%2A,508,628,698704189,9711,0 +16380,%23049%23,629,506,692803,9761,0 +16381,Taran,551,381,699170684,9364,0 +16382,Jaaa,618,456,698635863,10478,0 +16383,MojeSzczytToTw%C3%B3jDno,509,372,828637,10495,0 +16384,003,503,632,699878511,10160,0 +16386,0054,624,517,6510480,9714,0 +16387,MojeSzczytToTw%C3%B3jDno,523,374,828637,10495,8 +16388,%2A041%2A,625,500,698670524,8921,0 +16389,Myk+i+do+kieszonki,374,522,9319058,6733,0 +16391,Westcoast.041,398,422,848918380,10178,0 +16392,NIERAJ01,453,620,8729672,9580,0 +16393,B002,628,491,9314079,9821,0 +16394,MojeSzczytToTw%C3%B3jDno,510,371,828637,10495,0 +16395,South+K35,578,397,699146580,9950,0 +16396,Wioska+barbarzy%C5%84ska,599,418,1990750,10068,0 +16397,003,428,395,699783765,11130,0 +16398,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,535,625,8201460,10237,0 +16399,D012,595,413,699761749,9680,0 +16400,Wioska+barbarzy%C5%84ska,378,460,3698627,9959,0 +16401,Kentin+ufam+Tobie,379,455,699783765,10000,0 +16402,Pobozowisko,410,592,699513260,10952,0 +16403,024.,489,626,699494488,10216,0 +16404,R%C4%99cznik+do+zmiany,394,431,699697558,10160,0 +16405,078,475,621,699336777,10083,0 +16406,South+K35,558,383,699146580,9809,0 +16407,610%7C431+Wioska+barbarzy%C5%84ska21,610,431,6822957,8251,0 +16408,%5B181%5D,544,518,848985692,10060,0 +16409,Kentin+ufam+Tobie,389,442,699783765,10000,0 +16410,Konfederacja+%2B,458,377,848915730,10001,4 +16411,Jaaa,582,598,698635863,10479,0 +16412,%230035,539,621,1536231,10495,0 +16413,Bagdad,469,376,8847546,10654,6 +16414,Belvedere+011,588,412,699756210,10008,0 +16415,Wioska,377,527,849084005,10178,0 +16416,Malinki+3,624,521,8013349,9017,0 +16417,018.,624,535,8900955,5623,0 +16418,VN+Moctezuma,473,371,699883079,10055,0 +16419,BARA,630,506,9314079,9818,0 +16420,0050,459,619,698659980,10083,0 +16421,Yogi,558,616,2808172,10083,0 +16422,Westcoast.012,389,437,848918380,10178,0 +16423,KONFA+TO+MARKA%2C+NARKA,381,462,698152377,10311,3 +16424,017+-+Hospitalet+de+Llobregat,632,512,698342159,10019,0 +16425,Avanti%21,376,479,698625834,9956,0 +16426,Piasek,375,496,699265922,10019,0 +16427,Tu+Deornoth+odpoczywa,626,474,699545762,3989,0 +16428,078+k45+001,589,411,699491076,10001,0 +16429,Wioska+009,596,582,848971079,9761,0 +16430,Wioska+barbarzy%C5%84ska,614,557,7047342,10474,0 +16431,South+K35,552,384,699146580,9809,0 +16432,Wioska,376,528,849084005,10178,0 +16433,Wioska+barbarzy%C5%84ska,577,395,699146580,9575,0 +16434,Kentin+ufam+Tobie,389,441,699783765,10000,0 +16435,Wioska+barbarzy%C5%84ska+019%7C,542,380,6343784,9606,0 +16436,A0050,377,482,8841266,10252,0 +16437,C+009,578,396,6384450,9367,0 +16438,Yyyy,504,371,699883079,10068,7 +16439,A0307,377,505,8841266,10252,0 +16440,Wioska+barbarzy%C5%84ska,438,385,849027025,9372,0 +16441,0089,448,405,699431255,9835,0 +16442,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,625,8201460,10237,0 +16443,Pastorlandia+2,374,530,849030226,10401,0 +16444,Sony+911,569,610,1415009,10238,0 +16445,Nowa+09,613,562,698702991,9818,0 +16446,058+Miyoshi,626,473,7092442,9637,0 +16447,009,507,371,849010255,10019,0 +16449,%2A0009+Baraki,610,432,8459255,10251,0 +16450,Taran,549,382,699170684,9379,0 +16451,0057,459,620,698659980,10083,0 +16452,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,623,8201460,10237,0 +16453,110+Murcia+tres,391,565,699382126,9911,0 +16454,092,451,619,849084985,10612,0 +16455,Mniejsze+z%C5%82o+0040,376,466,699794765,10385,0 +16456,VN+Mulan,467,377,699883079,9643,0 +16457,VN+El+Cid,466,374,699883079,9641,0 +16458,Og%C3%B3rkowy+baron,407,399,356642,9835,0 +16459,026,481,375,849010255,7680,0 +16460,VN+Charles+Martel,461,378,699883079,9961,2 +16461,.Wioska+barbarzy%C5%84ska,600,577,6929240,9601,0 +16462,004,453,619,8729672,10481,0 +16463,%2A031%2A,624,482,698670524,7492,0 +16464,Vasperland_018,629,515,7047342,10357,0 +16465,Belvedere+012,586,410,699756210,10290,0 +16466,MojeSzczytToTw%C3%B3jDno,514,375,828637,10495,0 +16467,023,378,542,6853693,5643,5 +16468,scoti,487,611,699494488,10211,0 +16469,So%C5%82tys+Twojej+Wsi,434,390,849027025,9744,0 +16470,rybak,379,490,699265922,9825,0 +16471,612%7C424+003+Stolica+Kapitana,612,424,6822957,9888,0 +16472,M%C5%81ODE+OR%C5%81Y+001,575,602,33900,10495,3 +16473,0053,459,621,698659980,10083,0 +16474,%23008+A,458,621,698143931,10947,4 +16475,Jaaa,609,434,698635863,10100,0 +16476,SINGED+X+SZEF,491,376,699368887,9994,0 +16477,A0044,375,470,8841266,10252,0 +16478,MojeSzczytToTw%C3%B3jDno,519,378,828637,10495,0 +16479,WE+ARE+READY%21,587,402,1553947,9623,0 +16480,R%C4%99cznik+do+zmiany,393,436,699697558,10160,0 +16481,%230038,540,621,1536231,10495,0 +16482,K34+x022,446,384,698364331,6622,0 +16483,105+Do%C5%9B%C4%87,595,418,699491076,10001,0 +16484,Szlachcic+013,624,539,698562644,10311,0 +16485,016,599,586,698999105,10311,0 +16486,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,445,614,8201460,10237,0 +16487,031+Zbara%C5%BC,607,581,699272880,10611,0 +16488,MojeSzczytToTw%C3%B3jDno,522,374,828637,10479,0 +16489,A018,617,454,699722599,10345,7 +16490,.047.,488,371,698489071,10503,0 +16491,sony911,575,607,1415009,10205,0 +16492,%230009,531,621,699728159,9761,0 +16493,Sony+911,564,608,1415009,10211,0 +16494,%5B005%5D,460,624,849084985,10063,0 +16495,Gattacka,610,421,699298370,9902,0 +16496,Szulernia,412,410,7249451,9998,0 +16497,Knowhere,372,514,699723284,10452,0 +16498,011.+Czo+Oju,606,570,1601917,10495,0 +16499,0052,627,519,6510480,9249,0 +16500,Konfederacja,459,378,848915730,9696,0 +16502,004+B,621,452,699718269,9711,0 +16503,Kentin+ufam+Tobie,384,445,699783765,10000,0 +16504,030,473,625,699336777,9825,0 +16505,Bandii+nie+r%C3%B3b+mi+tego+xd,589,408,699756210,9242,0 +16506,032+Pot%C4%99%C5%BCny+Dzban,388,558,699382126,6560,0 +16507,0006,413,592,225023,10495,0 +16508,Brat447,386,506,699262350,10490,0 +16509,020,374,524,6853693,10495,0 +16510,Emirates+Stadium,629,499,699795378,10019,0 +16511,CALL+928,508,627,699784536,10311,0 +16512,MojeSzczytToTw%C3%B3jDno,505,371,828637,10495,0 +16513,Jaaa,617,441,698635863,10322,0 +16514,Westcoast.025,398,419,848918380,10178,0 +16515,Piwna+07,613,437,699812007,9112,9 +16516,Zach%C3%B3d+-+005,395,576,225023,10495,0 +16517,Wioska+%28009%29,622,459,698232227,8602,0 +16518,PART+XXV,537,375,698350371,10495,0 +16519,MojeSzczytToTw%C3%B3jDno,513,376,828637,10495,0 +16520,Westcoast.057,396,423,848918380,10178,0 +16521,Jaaa,610,436,698635863,10495,0 +16522,VN+Dorothy+Unsworth,464,371,699883079,9637,0 +16523,%2A045%2A,628,505,698670524,8173,0 +16525,FKG+01-30,417,400,356642,9835,0 +16526,064,427,386,849027025,5404,0 +16527,Wioska+007,596,581,848971079,9761,0 +16528,kathare,546,622,873575,10436,0 +16529,007+Hello+Moto,598,414,699491076,10001,0 +16530,%21009.498%7C496,617,447,556154,9735,3 +16531,ADEN,527,372,698588535,10311,0 +16532,031.+Wioska+barbarzy%C5%84ska,576,396,699799629,10495,0 +16533,069+OZDR,469,625,699336777,10495,0 +16534,Lecymy+DUR,449,381,6169408,10141,0 +16535,Darma,429,397,356642,9835,0 +16536,0011,444,391,699431255,10000,0 +16537,VN+Yuno,475,375,699883079,9530,0 +16538,K34+-+%5B014%5D+Before+Land,447,381,699088769,10259,8 +16540,Wioska+barbarzy%C5%84ska,399,573,9167250,6770,0 +16541,VN+Genghis+Khan,467,376,699883079,9646,0 +16542,Westcoast.026,398,423,848918380,10178,0 +16543,Mount+Everest,375,500,849013126,9550,0 +16544,robie+katasy+%21%21%21,571,611,848995242,10495,0 +16545,Partia+Razem+Szpingischan,571,610,848995242,10495,0 +16546,CALL+927,555,614,699784536,10311,0 +16547,001,404,433,698884287,10285,0 +16548,006.Broad+Peak,606,572,1601917,10495,0 +16549,D016,584,406,699761749,10495,0 +16550,092.,629,491,849094609,3236,0 +16551,Kentin+ufam+Tobie,378,454,699783765,10000,0 +16552,Z+barba+015,401,576,225023,10495,0 +16553,Konfederacja,465,376,848915730,10001,0 +16554,K34+-+%5B162%5D+Before+Land,439,387,699088769,9558,0 +16555,A017,618,453,699722599,10152,0 +16556,Wioska+barbarzy%C5%84ska,379,531,849030226,9033,0 +16557,HORUS%2B,523,628,7756002,9886,0 +16558,FKG+01-05,417,401,356642,9835,2 +16560,018,584,397,849064752,10311,0 +16561,041+Pot%C4%99%C5%BCny+Dzban,387,558,699382126,10479,0 +16562,Wioska,381,546,849084005,7736,0 +16563,MojeSzczytToTw%C3%B3jDno,531,374,828637,9814,0 +16564,019.xxx,462,621,849084985,9503,0 +16565,%5B003%5D,619,540,698305474,9809,0 +16566,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,626,8201460,10237,0 +16567,Bocianikson016,622,538,7528491,4642,0 +16568,A027,619,456,699722599,10484,0 +16569,017.,566,619,873575,10292,0 +16570,Zeta+Reticuli+S,411,408,699323302,11417,0 +16571,015,582,406,849063849,10636,0 +16572,Zach%C3%B3d+-+002,397,576,225023,10495,0 +16573,100,628,518,849090187,2243,0 +16574,Mniejsze+z%C5%82o+0010,375,477,699794765,9589,0 +16576,Teby_31,505,626,2585846,9638,0 +16577,Sony+911,568,609,1415009,6976,0 +16578,Kentin+ufam+Tobie,379,452,699783765,10000,0 +16579,031+-+Cardiff,403,585,225023,10495,1 +16580,034,597,561,699373599,10068,0 +16581,Gattacka,584,501,699298370,9753,0 +16582,Gattacka,603,425,699298370,9761,0 +16583,010,517,633,698704189,9711,0 +16585,020.,572,391,699799629,10495,0 +16586,Brat447,371,511,699262350,10495,0 +16587,Taran+006,626,529,698562644,10311,0 +16588,Wioska+barbarzy%C5%84ska,524,627,7756002,9888,0 +16589,Wioska+barbarzy%C5%84ska,543,377,1990750,10068,0 +16590,004,406,586,9264752,10393,0 +16591,019+Pot%C4%99%C5%BCny+Dzban,393,565,699382126,10478,0 +16592,yyyy,498,371,699883079,10052,0 +16593,Jaaa,615,446,698635863,10478,0 +16594,002.+Skellige,567,389,699799629,10495,3 +16595,018,598,583,698999105,10311,0 +16596,SINGED+X+SZEF,493,372,699368887,9994,0 +16597,VN+Scipio+Africanus,474,375,699883079,10204,6 +16598,019,625,548,8428196,9761,0 +16599,Jaaa,587,596,698635863,10666,0 +16600,A0109,372,480,8841266,10252,7 +16601,ADEN,527,377,698588535,10154,0 +16602,Yyyy,499,373,699883079,10068,0 +16603,063,586,594,698999105,10311,0 +16604,K34+x005,447,383,698364331,8953,0 +16605,0098,453,616,698659980,10083,4 +16606,0104,458,619,698659980,10019,0 +16607,Myk+i+do+kieszonki,372,512,9319058,8281,0 +16608,Pobozowisko,400,583,699513260,7468,0 +16609,%230021,523,626,699728159,9761,0 +16610,Bocianikson012,610,546,7528491,9966,0 +16611,Myk+i+do+kieszonki,373,517,9319058,9277,0 +16612,007.xxx,473,622,8612358,10146,0 +16613,A028,615,453,699722599,10252,0 +16614,Oeste+tres,383,555,698916948,4889,0 +16615,023.,490,626,699494488,10217,0 +16616,Wioska+krzysiuaa,509,369,699368887,9994,0 +16617,Kentin+ufam+Tobie,378,455,699783765,10000,0 +16618,Wioska+Expezo,403,421,698971484,10008,0 +16619,Wioska+barbarzy%C5%84ska,405,418,698971484,10008,0 +16620,Myk+i+do+kieszonki,372,502,9319058,8370,0 +16621,044+OZDR,463,622,699336777,9902,0 +16622,B+003,593,410,6384450,10362,0 +16623,Wioska+barbarzy%C5%84ska,405,417,698971484,10008,0 +16624,Wioska+barbarzy%C5%84ska,618,555,7047342,10490,0 +16625,Brzoza,370,513,699265922,9835,0 +16626,056,493,370,698739350,6169,0 +16627,RTS+6,574,608,848995242,10495,0 +16628,Ulu-mulu,431,605,699697558,9671,0 +16629,z+046,579,604,699342219,10256,0 +16630,Wioska+audi80lpa,377,460,698807570,10048,0 +16631,Kentin+ufam+Tobie,390,441,699783765,10000,0 +16632,027,502,374,698739350,9761,0 +16633,053+OZDR,475,623,699336777,9825,0 +16634,009+barbarzy%C5%84ska,610,564,9238175,10367,0 +16635,Malinki+4,623,523,8013349,6566,0 +16636,Wioska+barbarzy%C5%84ska,440,385,849027025,9747,0 +16638,Jaaa,596,585,698635863,10475,0 +16639,Belvedere+013,587,406,699756210,10140,0 +16640,Taran+003,623,529,698562644,10311,0 +16641,Wioska+tomektonkiel,607,425,699351046,4563,0 +16642,0033,562,390,699485250,10426,3 +16643,0063+8+Piast,446,432,3909522,10252,0 +16644,004.Abi+Gamin,603,576,1601917,10495,0 +16645,Avanti%21,373,480,698625834,9959,0 +16646,Myk+i+do+kieszonki,371,514,9319058,8877,0 +16647,Kentin+ufam+Tobie,379,448,699783765,10000,8 +16648,Darma,418,400,356642,9835,0 +16649,022,432,393,699783765,11130,0 +16650,0151,625,487,698416970,9485,0 +16651,Szlachcic+006,623,536,698562644,10311,0 +16652,026,368,536,6853693,8128,0 +16653,Westcoast.029,396,430,848918380,10178,0 +16654,Taran,551,383,699170684,9746,0 +16655,021.,490,627,699494488,10218,0 +16656,Piwna+15,608,429,699812007,9181,0 +16657,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+05,627,495,699379895,10317,0 +16658,Zakrecona+3,573,606,8627359,9256,0 +16659,Tesa+7,627,528,698845189,10019,0 +16660,001Podbitka,455,629,698620694,9687,0 +16661,s181eo16,382,455,393668,9883,0 +16662,VN+Leonidas,469,373,699883079,9647,0 +16663,Szlachcic+005,620,535,698562644,10311,0 +16664,Jaaa,616,448,698635863,10478,0 +16665,%21011.507%7C495,626,446,556154,9735,0 +16666,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,626,8201460,10237,0 +16668,Konradzik,428,392,356642,9835,0 +16669,ADEN,525,377,698588535,10311,0 +16670,Konfederacja,456,377,848915730,9694,0 +16671,SINGED+X+SZEF,490,373,699368887,9994,0 +16672,027,476,629,699336777,9924,0 +16673,0009,444,385,699431255,10194,0 +16674,073,373,523,6853693,5904,0 +16675,Zzz,488,370,699658023,9891,0 +16676,029,474,625,699336777,9955,0 +16677,022,631,498,849006412,9821,0 +16678,0063,456,617,698659980,10019,0 +16679,0034,564,388,699485250,10595,0 +16680,%5B006%5D,622,544,698305474,9809,5 +16681,ADEN,528,378,698588535,9737,0 +16682,0055,627,520,6510480,9793,0 +16683,Wioska+barbarzy%C5%84ska,433,388,849027025,9829,0 +16684,035.,571,392,699799629,9835,2 +16685,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,440,613,8201460,6276,0 +16686,U-02,557,388,3600737,9549,0 +16688,Ulu-mulu,425,604,699697558,11678,0 +16689,006,631,528,699413040,9860,0 +16690,CALL+1076,554,613,699784536,10495,0 +16691,080,619,528,699373599,6016,0 +16692,Wioska+barbarzy%C5%84ska,617,556,7047342,10484,0 +16693,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,444,613,8201460,10237,0 +16694,Wioska+barbarzy%C5%84ska,618,550,7047342,10476,0 +16697,kathare,547,618,873575,10495,0 +16698,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,627,8201460,10237,0 +16699,FKG+01-33,412,403,356642,9835,0 +16700,Twierdza,566,612,699567608,9647,0 +16701,082.+Aler,629,476,8337151,11678,0 +16702,039,557,403,699761749,10495,0 +16703,082,437,387,849027025,7223,0 +16704,008,434,613,699859013,8502,7 +16705,Brat447,370,496,699262350,10476,0 +16706,031.+Aurelia,624,461,849091866,9422,0 +16707,Valhalla,539,375,698350371,10444,0 +16708,010,448,620,849084985,10211,0 +16709,37.+Wioska+37,394,570,849091769,10241,0 +16710,Kentin+ufam+Tobie,385,445,699783765,10000,0 +16711,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,626,1434753,10068,9 +16712,%5B002%5D+Konata+Izumi,479,371,699658023,10140,0 +16713,FKG+01-31,417,399,356642,9835,0 +16714,097,447,614,849084985,10177,0 +16715,A029,619,454,699722599,10484,0 +16716,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,625,8201460,10237,0 +16717,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,433,612,1434753,9883,0 +16718,Szlachcic,466,412,698388578,10237,0 +16719,Zach%C3%B3d+-+003,397,577,225023,9920,0 +16720,Taran,541,386,699170684,10147,0 +16721,Westcoast.073,391,427,848918380,10178,0 +16722,Konradzik,428,393,356642,9835,0 +16723,CALL+1064,555,615,699784536,10495,0 +16724,036+dudek2222,626,513,8323711,10495,0 +16725,ADEN,523,373,698588535,10311,0 +16726,Wioska+barbarzy%C5%84ska,616,553,7047342,10481,0 +16727,609%7C426+Wioska+barbarzy%C5%84ska12,609,426,6822957,9487,0 +16728,Ulu-mulu,424,607,699697558,11678,0 +16729,010+Kioto,626,476,7092442,10297,4 +16730,Wioska,603,574,17714,10222,0 +16731,009+Jokkmokk,609,567,699272880,10397,0 +16732,MojeSzczytToTw%C3%B3jDno,508,371,828637,10495,0 +16733,Wioska+050,634,497,848971079,9783,0 +16734,33.+Wioska+33,389,566,849091769,9108,0 +16736,MojeSzczytToTw%C3%B3jDno,526,373,828637,10047,0 +16737,kathare,547,621,873575,10183,0 +16738,Knowhere,363,500,699723284,3837,0 +16740,020+019,547,379,699491076,10001,0 +16741,Wioska+barbarzy%C5%84ska,507,627,606407,10291,0 +16742,szlachcic,386,467,698807570,10311,0 +16743,Wioska+barbarzy%C5%84ska,421,401,699402816,9835,0 +16744,-002-+K55,591,595,8096537,9982,0 +16745,Wioska+barbarzy%C5%84ska,376,529,849030226,10495,0 +16746,K44+x022,463,420,698364331,7621,0 +16747,084,422,384,698364331,8662,0 +16748,FKG+01-20,418,402,356642,9835,0 +16749,VN+Siren+Tium,469,372,699883079,9608,0 +16750,016,503,375,849010255,10019,0 +16751,Kentin+ufam+Tobie,380,455,699783765,10000,0 +16752,A23+Wioska+barbarzy%C5%84ska,463,625,849037407,10220,0 +16753,Horyzont+zdarze%C5%84,537,613,7581876,10019,0 +16754,031,378,531,8908002,9993,0 +16755,Wioska+barbarzy%C5%84ska,401,419,7462660,9994,0 +16756,Wioska+barbarzy%C5%84ska,618,553,7047342,10478,0 +16757,A+READY,584,399,1553947,10252,0 +16758,SINGED+X+SZEF,490,376,699368887,10104,0 +16759,Wioska,375,520,849084005,5622,0 +16760,South+K35,557,382,699146580,10042,0 +16761,Wioska,377,539,849084005,10178,0 +16762,010,620,546,8428196,9973,0 +16763,0Wioska+barbarzy%C5%84ska,470,514,699189792,5013,0 +16764,Julia,610,569,699737356,9259,0 +16765,0438,545,618,698659980,10019,0 +16766,020,471,629,699336777,9825,0 +16767,Wioska,377,546,849084005,10178,0 +16768,0063+b55,452,433,3909522,6853,0 +16769,029.+Wioska+barbarzy%C5%84ska,577,397,699799629,10495,0 +16770,030,446,615,849084985,10237,0 +16771,Wioska,381,554,849084005,9527,0 +16772,s181eo21,381,456,393668,9883,0 +16773,Lord+Arsey+KING,588,594,848956513,10285,0 +16774,025,496,631,699878511,10146,0 +16775,110,460,621,849084985,9703,0 +16776,Wioska+barbarzy%C5%84ska1,509,370,699368887,9994,0 +16777,Westcoast.019,392,436,848918380,10178,0 +16778,608%7C428+Wioska+barbarzy%C5%84ska18,608,428,6822957,9839,0 +16779,Gattacka,605,422,699298370,9740,0 +16780,Wioska+barbarzy%C5%84ska,619,552,7047342,10478,0 +16781,Westcoast.030,388,439,848918380,10178,0 +16782,Wioska+barbarzy%C5%84ska,436,386,849027025,9355,0 +16783,003,421,398,699402816,10178,0 +16784,Westcoast.072,390,428,848918380,10178,0 +16785,R%C4%99cznik+do+zmiany,389,478,699697558,10495,0 +16786,A0126,373,490,8841266,10252,0 +16787,610%7C429+Wioska+barbarzy%C5%84ska20,610,429,6822957,9809,0 +16788,Wioska,381,555,849084005,10178,0 +16789,022,481,374,849010255,8582,0 +16791,Wioska+barbarzy%C5%84ska,544,378,1990750,10068,0 +16792,0005,414,594,225023,10495,0 +16793,Wioska+barbarzy%C5%84ska,622,548,7047342,10484,0 +16794,Lord+Arsey+KING,593,597,848956513,10285,0 +16795,008,492,630,699336777,9825,0 +16796,024+Agenci,626,521,8323711,10495,0 +16797,%2AINTERTWINED%2A%2A,516,629,698704189,9711,0 +16799,WE+ARE+READY%21,591,406,1553947,9824,0 +16800,Mniejsze+z%C5%82o+0025,372,477,699794765,8875,0 +16802,Gattacka,602,423,699298370,9965,0 +16803,Mniejsze+z%C5%82o+0035,372,470,699794765,9949,0 +16804,021+022,545,379,699491076,10001,0 +16805,Gra+pozor%C3%B3w%3F,579,600,699785935,9899,0 +16806,MojeSzczytToTw%C3%B3jDno,515,369,828637,10479,0 +16807,028,509,627,699878511,10139,0 +16808,Westcoast.046,395,429,848918380,10178,0 +16809,%2A048%2A,631,500,698670524,2557,0 +16810,Konfederacja+%2B,452,379,848915730,9868,7 +16811,%2AINTERTWINED%2A%2A,511,625,698704189,9711,0 +16812,A0082,373,476,8841266,10252,0 +16813,Szlachcic+017,625,539,698562644,10311,0 +16814,005,563,609,699567608,9620,0 +16815,Wioska,604,574,17714,10222,0 +16816,%23004.505%7C509,624,460,556154,9735,0 +16817,South+K35,556,382,699146580,9809,0 +16818,Wioska+barbarzy%C5%84ska,379,463,3698627,9963,0 +16819,Piwna+08,612,432,699812007,8817,0 +16820,Pobozowisko,393,572,699513260,11130,2 +16821,%2AINTERTWINED%2A%2A,512,627,698704189,9711,0 +16822,NIERAJ03,450,622,8729672,10249,0 +16824,Jaaa,585,598,698635863,10476,0 +16825,Jaaa,597,589,698635863,10481,0 +16826,Darmowe+przeprowadzki,435,611,848935389,9809,0 +16827,Vasperland_019,629,517,7047342,10487,0 +16828,0004,584,400,699485250,10211,8 +16829,Zielona+cebulka,416,406,699402816,9835,0 +16830,A0290,370,487,8841266,10252,0 +16831,001,391,424,848921536,10104,0 +16832,VN+Saladin,468,375,699883079,9534,0 +16833,012.+Vengerberg,576,397,699799629,10495,0 +16834,Piwna+16,613,434,699812007,6535,0 +16835,013,502,629,699878511,10141,0 +16836,Village,506,588,849094067,12154,0 +16837,019,378,533,8908002,9383,0 +16838,Pobozowisko,394,574,699513260,10963,0 +16839,Pobozowisko,411,591,699513260,10954,0 +16840,031,501,623,699878511,10160,0 +16841,VN+Nobunaga+Hazama,475,374,699883079,9652,0 +16842,Murcia+cuatro,391,567,698916948,3396,0 +16843,Jaaa,608,435,698635863,10478,0 +16844,Kasztan,372,506,699265922,9825,0 +16845,B017,630,503,9314079,10051,0 +16846,Boxes+of+Shinra+Property,527,628,8199417,10495,0 +16848,Akacja,371,502,699265922,9761,0 +16849,MojeSzczytToTw%C3%B3jDno,518,375,828637,10495,0 +16850,010,371,524,6853693,10484,0 +16851,005,580,599,698999105,10311,0 +16852,%2AINTERTWINED%2A,510,630,698704189,9711,0 +16853,Wioska+barbarzy%C5%84ska,621,550,7047342,10484,0 +16854,Pobozowisko,413,598,699513260,8599,9 +16855,049,561,406,7271812,10495,0 +16856,Wioska+barbarzy%C5%84ska,600,415,8192845,3843,0 +16857,Knowhere,373,513,699723284,10452,0 +16858,A0118,368,494,8841266,10252,0 +16859,085.+Gard%C5%82o,627,468,8337151,11678,0 +16860,007+%7C+PALESTINA,625,457,9228039,9544,4 +16861,%5B004%5D,624,544,698305474,9809,0 +16862,Wioska+barbarzy%C5%84ska,374,532,849030226,10160,0 +16863,014,555,382,699761749,10495,0 +16864,Wioska+barbarzy%C5%84ska,620,554,7047342,10481,0 +16865,114,588,407,849064752,10311,0 +16866,022,378,532,8908002,9993,0 +16867,025+Pot%C4%99%C5%BCny+Dzban,387,563,699382126,10476,0 +16868,Pobozowisko,415,598,699513260,9136,0 +16869,Konradzik,427,391,356642,9835,0 +16870,Zach%C3%B3d+-+004,396,575,225023,10495,0 +16871,B001,628,494,9314079,9778,5 +16872,C+Pld+001+Kraina+kebaba,408,588,849084740,9475,0 +16873,Avanti%21,374,484,698625834,9950,0 +16874,054+OZDR,467,628,699336777,9994,0 +16875,Brat447+XXX,369,499,699262350,10487,0 +16876,Pobozowisko,411,594,699513260,10957,0 +16877,K34+-+%5B081%5D+Before+Land,451,381,699088769,10259,0 +16878,086,582,404,849064752,10311,0 +16879,072+KUZYNI+mehehehe,480,630,699336777,9902,0 +16880,Ruins+of+the+Sector+7,529,628,8199417,10495,0 +16881,%5B010%5D,621,542,698305474,9809,0 +16882,046.+F64D,485,630,699494488,10478,0 +16883,040.,485,625,699494488,10218,0 +16884,Papa,613,568,699737356,9950,0 +16885,Myk+i+do+kieszonki,373,519,9319058,9006,0 +16886,Wioska+barbarzy%C5%84ska,402,415,698971484,10008,0 +16887,Zeta+Reticuli+S,408,407,699323302,10997,0 +16888,Pobozowisko,408,593,699513260,10620,0 +16889,Westcoast.070,393,428,848918380,10178,0 +16890,K34+x011,444,380,698364331,6293,0 +16891,VN+Yi+Seong-Gye,466,376,699883079,9638,0 +16892,Myk+i+do+kieszonki,373,505,9319058,9799,0 +16893,013,630,527,699413040,9860,0 +16894,613%7C432+010+Podarta+Strona,613,432,6822957,9620,0 +16895,Konfederacja+%2B,455,380,848915730,9720,3 +16897,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,433,613,1434753,10068,0 +16898,%23010.500%7C497,619,448,556154,9735,0 +16899,Pobozowisko,397,573,699513260,10957,0 +16900,Brat447,368,508,699262350,7278,0 +16901,%5B204%5D+WEST,619,452,848985692,10306,0 +16902,South+K35,576,392,699146580,9060,0 +16903,U-5,548,377,3600737,9549,0 +16904,A003,626,497,9314079,9827,0 +16905,Ressier,510,374,699368887,9994,0 +16906,023,497,626,699878511,10144,0 +16907,017+Fasol+podzi%C4%99kowa%C5%82,389,551,699382126,10484,0 +16908,Taran+005,625,526,698562644,10311,0 +16909,Pobozowisko,411,597,699513260,10302,0 +16910,A0175,371,470,8841266,10252,0 +16911,0028,375,463,3698627,10447,0 +16912,0146,553,621,698659980,10019,0 +16913,030,491,371,849010255,7223,0 +16914,SSJ+012,515,630,699054373,9761,6 +16916,FKG+01-29,415,402,356642,9835,0 +16917,Knowhere,372,499,699723284,10452,0 +16918,Westcoast.078,386,435,848918380,10178,0 +16919,Osada+koczownik%C3%B3w,403,415,698971484,10008,6 +16920,%5B007%5D,620,540,698305474,9809,0 +16921,MojeSzczytToTw%C3%B3jDno,539,374,828637,6607,0 +16923,33+im+Or%C5%82owa,577,396,849037469,9809,0 +16924,Westcoast.053,397,423,848918380,10178,0 +16925,Pobozowisko,401,581,699513260,9811,0 +16926,40002,488,631,848915531,10838,0 +16927,C+006,579,395,6384450,9154,0 +16928,A0176,376,475,8841266,10252,0 +16929,Brat447,368,506,699262350,7069,0 +16930,C+Zach+003+Rudziniec,403,578,849084740,9608,0 +16931,Pobozowisko,395,579,699513260,8493,0 +16932,060+OZDR,465,627,699336777,9825,0 +16933,s2+Wioska+barbarzy%C5%84ska,399,415,7462660,10301,0 +16934,041,432,391,699783765,10638,0 +16935,Wioska+barbarzy%C5%84ska,479,630,699494488,10226,0 +16936,Polska,541,375,1990750,10068,0 +16937,089.,501,491,8788366,10016,0 +16938,Xyz,436,444,698884287,10285,0 +16939,001+Wioska+gazela,622,464,699671454,10343,0 +16940,073,569,607,698999105,10311,0 +16941,Osada+koczownik%C3%B3w,377,459,3698627,10008,7 +16942,C002+Yarikawa,615,556,8096537,9687,0 +16943,0011+Wioska+barbarzy%C5%84ska,423,601,9060641,10092,0 +16944,0064,457,621,698659980,10083,0 +16945,A0083,371,494,8841266,10252,0 +16946,Knowhere,374,513,699723284,10452,0 +16947,050+OZDR,469,628,699336777,9902,0 +16948,012,376,546,6853693,10478,4 +16950,009,568,391,1424656,9825,0 +16951,VN+Atylla,467,375,699883079,9558,0 +16952,Konfederacja+8,459,376,848915730,9741,0 +16953,Ruch135,593,572,6929240,9183,0 +16954,017,597,587,698999105,10311,0 +16955,Konfederacja+8,453,377,848915730,9976,6 +16956,047,484,370,698739350,10247,0 +16957,032,470,626,699336777,9825,0 +16958,Wioska+barbarzy%C5%84ska,543,378,1990750,10068,0 +16959,Jaaa,613,441,698635863,10106,0 +16960,40004,483,629,848915531,10971,0 +16961,A0127,369,484,8841266,10252,0 +16962,Westcoast.093,386,437,848918380,10178,0 +16963,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,432,612,1434753,10068,0 +16964,027,371,526,6853693,5465,0 +16965,005+VC+Palarnia,400,417,698971484,10008,0 +16966,014+Okayama,626,483,7092442,10495,0 +16967,Feed+me+more+016,485,380,699756210,10066,0 +16968,Kentin+ufam+Tobie,383,451,699783765,10000,0 +16969,Sector+1+Slums+Area,505,620,8199417,10224,0 +16970,011+Meereen,614,568,699272880,10249,0 +16971,Jan+Krosse,629,480,879782,6655,0 +16972,MojeSzczytToTw%C3%B3jDno,526,372,828637,10387,0 +16973,Wioska,381,549,849084005,7903,0 +16974,Jaaa,621,455,698635863,10484,0 +16976,Ulu-mulu,424,608,699697558,11678,0 +16977,Sony+911,566,610,1415009,10046,0 +16978,55.+Wioska+55,377,550,849091769,10003,0 +16979,%24%24%24,421,605,225023,10495,0 +16980,Myk+i+do+kieszonki,375,514,9319058,9799,0 +16981,ave+why%21,459,631,698143931,10300,0 +16982,002+osada+koniki,600,579,1715091,9835,6 +16983,013+KTW,621,449,848883237,10495,0 +16984,036,629,512,699413040,9860,0 +16985,Bocianikson010,618,546,7528491,9955,0 +16986,017,372,524,6853693,6141,0 +16987,A031,615,455,699722599,10495,0 +16988,0553,554,619,698659980,10019,0 +16989,%5B008%5D,626,533,698305474,9809,0 +16990,CALL+1066,555,616,699784536,10495,0 +16991,Poca%C5%82uj+mnie+prosto+w+d%2A%2Ae,630,477,849094111,2767,0 +16992,Wioska+barbarzy%C5%84ska,422,396,699402816,9835,0 +16993,CALL+930,507,628,699784536,10311,0 +16994,011,495,631,699336777,9825,0 +16995,Jaaa,577,602,698635863,10487,0 +16996,021.+Hyperporea,571,389,699799629,10495,0 +16997,Pobozowisko,399,586,699513260,10914,0 +16998,K34+-+%5B070%5D+Before+Land,462,376,699088769,10126,0 +16999,Horyzont+zdarze%C5%84,535,621,7581876,9835,1 +17000,c+000+Wioska,419,396,3909522,10083,0 +17001,Pobozowisko,393,571,699513260,10971,0 +17002,004+Wioska+Witcher,623,458,699671454,9255,0 +17003,Ulu-mulu,432,611,699697558,7214,0 +17004,Avanti%21,374,480,698625834,9950,0 +17005,024.+Primis,619,554,849091866,10252,0 +17006,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,627,7589468,8820,0 +17007,005,406,591,9264752,10495,0 +17008,Kentin+ufam+Tobie,384,442,699783765,10019,0 +17009,FKG+01-32,415,400,356642,9835,0 +17010,Westcoast.060,387,430,848918380,10178,0 +17011,015+Cailin,612,570,699272880,10030,0 +17013,yyy,494,371,699883079,10209,0 +17014,-048-,467,434,9291984,10346,0 +17015,.043.,494,369,698489071,10503,0 +17016,Part+XXIX,534,378,698350371,10495,0 +17017,007.Batura+Sar,605,571,1601917,10495,0 +17018,073+-+Ruten,422,593,225023,9836,0 +17019,XXX+Daleko,372,527,699425709,7386,0 +17020,Ulu-mulu,422,603,699697558,10451,9 +17021,0035,555,617,698659980,10083,0 +17022,Wioska+barbarzy%C5%84ska2,508,368,699368887,9994,0 +17023,011+Teufel666,389,563,699382126,10495,0 +17024,108,443,614,849084985,10237,0 +17025,Wioska,601,576,17714,10222,0 +17026,Jaaa,582,597,698635863,10476,7 +17027,Westcoast.023,390,432,848918380,10178,0 +17029,181,573,395,849064752,10311,0 +17030,Wioska,604,578,17714,10222,0 +17031,048,479,629,699336777,9825,0 +17032,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,629,8201460,10237,0 +17033,065,584,595,698999105,10311,0 +17034,Jaaa,619,446,698635863,10475,0 +17035,Pobozowisko,398,581,699513260,10960,0 +17036,0067,456,621,698659980,10083,0 +17037,Wioska+barbarzy%C5%84ska,367,504,698807570,8483,0 +17038,Ulu-mulu,422,607,699697558,10229,0 +17039,Ulu-mulu,418,601,699697558,9257,0 +17040,Piwna+04,616,439,699812007,8528,0 +17041,0550,429,608,698659980,9185,0 +17042,Gattacka,602,426,699298370,9886,0 +17043,XXXX,504,370,699883079,9898,0 +17044,006+Ystad,607,570,699272880,10551,4 +17045,030+Pot%C4%99%C5%BCny+Dzban,386,559,699382126,10478,0 +17046,009+legarda,387,557,699382126,10475,0 +17047,36+im+Diemina,584,401,849037469,9809,0 +17049,023,562,387,1424656,9825,0 +17050,0314,428,606,698659980,9824,0 +17051,Tys+je+pofirtany+mamlosie,377,466,699711723,9661,0 +17052,A0084,373,474,8841266,10252,0 +17053,.044.,497,368,698489071,10485,0 +17054,BAC%C3%93WKA+%7C016%7C,633,502,7394371,12154,0 +17055,SINGED+X+SZEF,493,371,699368887,9994,0 +17056,048,482,368,698739350,10237,0 +17057,MojeSzczytToTw%C3%B3jDno,534,375,828637,9814,0 +17058,0131,448,379,699431255,10083,0 +17059,SSJ+029,506,632,699364813,9505,0 +17060,-043-,386,567,9167250,7413,0 +17061,A0137,371,480,8841266,10252,0 +17062,Wioska+%28003%29,624,467,698232227,8529,4 +17063,Wioska+barbarzy%C5%84ska,377,530,849030226,10484,0 +17064,Westcoast.013,389,435,848918380,10178,0 +17065,K34+x004,445,380,698364331,9934,0 +17066,Wioska,375,544,849084005,10178,0 +17067,Horyzont+zdarze%C5%84,539,626,7581876,10019,0 +17068,023+%7C+PALESTINA,621,450,9228039,9544,0 +17069,Zeta+Reticuli+S2,399,414,699323302,11550,0 +17070,019,553,380,1424656,9449,0 +17071,Horyzont+zdarze%C5%84,535,622,7581876,10019,0 +17072,SINGED+X+SZEF,482,374,699368887,8896,6 +17073,Kentin+ufam+Tobie,377,456,699783765,10000,0 +17074,Po+PP,608,422,9262877,6399,0 +17075,Wioska+barbarzy%C5%84ska,546,376,1990750,10068,0 +17076,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,625,8201460,10237,0 +17077,0305,425,608,698659980,10019,0 +17078,205,573,396,849064752,8651,0 +17079,%2AINTERTWINED%2A%2A,510,629,698704189,9711,0 +17080,Bocianikson018,622,540,7528491,7392,0 +17081,A0085,372,484,8841266,10252,0 +17082,18+W+domach+z+betonu,630,519,9314079,4872,0 +17083,Westcoast.031,390,430,848918380,10178,0 +17085,010+Qarth,612,565,699272880,9808,0 +17086,%230004,519,372,7651093,9817,0 +17087,008,619,546,8428196,9975,0 +17088,0003+Wioska+barbarzy%C5%84ska,424,610,9060641,10544,0 +17089,26+im+Gribowa,581,401,849037469,9809,0 +17090,Hornvale,484,631,699494488,10495,0 +17091,Vasperland_021,627,502,7047342,10484,0 +17092,Kentin+ufam+Tobie,385,443,699783765,10000,0 +17093,Kentin+ufam+Tobie,378,450,699783765,10000,0 +17094,219+%7C,621,540,8000875,2817,0 +17095,Twierdz%C4%85+5,625,476,848935020,7409,0 +17096,Wioska+barbarzy%C5%84ska,403,412,698971484,10008,0 +17097,B010,628,490,9314079,9835,0 +17098,K34+x021,468,393,698364331,8251,0 +17099,Pobozowisko,400,582,699513260,7736,0 +17100,007,395,500,699510259,9753,0 +17101,Hel+02,613,563,698702991,9819,0 +17102,40003,488,632,848915531,10838,0 +17103,Jaaa,613,442,698635863,10484,0 +17104,VN+Illumi+Zoldyck,461,375,699883079,9632,0 +17105,Konradzik,427,394,356642,9835,0 +17107,0031,582,398,699485250,9968,0 +17108,0010+Wioska+barbarzy%C5%84ska,423,602,9060641,9434,0 +17109,Wioska+barbarzy%C5%84ska,373,464,699523631,10479,0 +17111,Westcoast.067,387,440,848918380,10178,0 +17112,South+K35,551,384,699146580,10042,6 +17113,015,600,583,698999105,10311,0 +17114,022.,489,627,699494488,10220,0 +17115,012+Asshai,611,572,699272880,10400,0 +17116,Szulernia,411,409,7249451,9995,0 +17117,Wioska,381,521,849084005,10178,0 +17118,Konradzik,428,394,356642,9835,0 +17119,Pastorlandia,374,531,849030226,10495,0 +17120,033,580,396,849064752,10311,0 +17121,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,625,8201460,10237,0 +17122,Darma,426,392,356642,9835,1 +17123,001,524,622,699336777,9825,0 +17124,-006-+K55,595,592,8096537,9750,0 +17125,Ulu-mulu,424,605,699697558,11678,0 +17126,014,497,631,699878511,10141,0 +17127,Westcoast.054,394,422,848918380,10178,9 +17128,So%C5%82tys+Twojej+Wsi,434,387,849027025,9638,0 +17129,Westcoast.047,396,428,848918380,10178,0 +17130,Essa+004,571,577,848987051,10087,0 +17131,049,475,371,698739350,10237,0 +17132,Mniejsze+z%C5%82o+0011,375,478,699794765,9615,0 +17133,VN+Pelagius,476,371,699883079,10119,2 +17134,047.+F64D,484,630,699494488,10220,0 +17135,Taran,548,381,699170684,9415,0 +17136,0152,552,621,698659980,10019,0 +17137,Gattacka,604,423,699298370,9818,0 +17138,WKS+ZAWISZA+BDG,391,566,9167250,5885,0 +17139,Ulu-mulu,431,610,699697558,10371,0 +17140,0009+Wioska+Gernot,424,602,9060641,10544,0 +17141,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,439,617,8201460,10378,0 +17142,SSJ+047,505,632,699364813,9330,0 +17143,Westcoast.034,395,423,848918380,10178,0 +17144,%23020.499%7C489,618,440,556154,9735,0 +17145,028+Pot%C4%99%C5%BCny+Dzban,385,561,699382126,10479,0 +17146,Taran,549,377,699170684,9173,0 +17147,090.+Z%C5%82y+Kraj,625,468,8337151,11678,0 +17148,ave+why%21,455,622,698143931,10213,1 +17149,PRO8L3M,470,485,7491093,9835,0 +17150,R-4,556,384,3600737,9013,0 +17152,Pobozowisko,410,591,699513260,10951,0 +17153,026.,491,627,699494488,10217,0 +17154,008,498,632,699878511,10143,0 +17155,R012,391,576,8607734,5516,0 +17156,HORUS,524,629,7756002,9885,0 +17157,Belvedere+014,580,413,699756210,9841,0 +17158,Pobozowisko,395,575,699513260,10966,0 +17159,Wioska+030,603,579,848971079,9761,0 +17160,Pobozowisko,400,587,699513260,10767,1 +17162,Kentin+ufam+Tobie,435,391,699783765,10000,0 +17163,%230001+-+CSA,520,379,7651093,10019,0 +17164,Szulernia,410,407,7249451,9981,0 +17165,Wioska+barbarzy%C5%84ska,417,598,699697558,5187,0 +17166,Jan+029+%C5%BBycz%C4%99+powodzenia+Nord+K,637,499,879782,9688,0 +17168,Knowhere,397,490,699723284,10374,0 +17169,Murcia+dos,390,567,698916948,4082,0 +17170,0147,550,622,698659980,10160,0 +17171,Westcoast.055,397,419,848918380,10178,0 +17172,Osada+koczownik%C3%B3w,572,607,1415009,10242,3 +17173,Powolutku,582,419,848985692,10252,0 +17174,Avanti%21,373,481,698625834,9950,0 +17175,0123,448,381,699431255,10019,0 +17176,Belvedere+015,588,406,699756210,9358,0 +17177,005+Hello+Moto,604,417,699491076,10001,0 +17178,VN+Takeda,466,373,699883079,9527,0 +17179,z+044,578,604,699342219,10226,0 +17180,Kentin+ufam+Tobie,381,441,699783765,10000,0 +17181,B011,598,411,699761749,7687,0 +17183,Ulu-mulu,425,607,699697558,11678,0 +17185,MojeSzczytToTw%C3%B3jDno,526,369,828637,10495,0 +17186,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,437,611,1434753,10068,3 +17187,Wioska+barbarzy%C5%84ska,487,368,699658023,8438,0 +17188,014+KTW,623,449,848883237,10495,0 +17189,HORUS,517,624,7756002,9905,0 +17190,Pobozowisko,408,594,699513260,10952,0 +17191,Wioska+barbarzy%C5%84ska,446,382,699191449,10476,0 +17192,Kentin+ufam+Tobie,384,439,699783765,10000,0 +17193,Zeta+Reticuli+S3,426,390,699323302,10795,0 +17194,Wioska,378,546,849084005,9197,0 +17195,Oeste,385,553,698916948,5301,0 +17196,K34+-+%5B074%5D+Before+Land,450,382,699088769,10259,4 +17197,Westcoast.074,399,423,848918380,10178,0 +17198,025,564,386,1424656,10252,0 +17199,Kentin+ufam+Tobie,381,450,699783765,10000,0 +17200,Wioska+barbarzy%C5%84ska,545,375,1990750,10068,0 +17201,034+%7C,622,543,8000875,10105,4 +17202,Wioska+barbarzy%C5%84ska,421,393,699402816,9835,0 +17203,0154,547,624,698659980,10083,0 +17204,FKG+01-03,414,403,356642,9835,4 +17205,A0128,369,496,8841266,10252,0 +17206,s5+Wioska+barbarzy%C5%84ska,401,416,7462660,10068,0 +17207,A0304,373,506,8841266,10252,0 +17208,0030,625,528,6510480,10319,0 +17209,012,611,579,699099811,9835,0 +17210,Kentin+ufam+Tobie,381,440,699783765,10000,0 +17211,Belvedere+016,585,410,699756210,10273,0 +17212,029,509,628,699878511,10139,0 +17213,023,470,628,699336777,9825,0 +17214,Pobozowisko,415,602,699513260,8803,0 +17215,Wioska,374,523,849084005,9835,0 +17216,0018.+C+-,627,504,7125212,7140,0 +17217,Wioska+Strange123,455,376,699191449,3950,0 +17218,Gattacka,604,425,699298370,9861,0 +17219,005,523,629,699336777,9825,0 +17220,%5B0058%5D,417,396,8630972,10495,0 +17221,K34+-+%5B067%5D+Before+Land,461,376,699088769,10259,0 +17222,146+MIKOX+019,593,413,699491076,9765,0 +17223,W.181%2F14,616,537,2999957,10242,0 +17224,012,578,602,698999105,10311,0 +17225,BossMan+%28%3D%29,561,462,699368887,10495,0 +17226,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,626,7589468,8819,0 +17227,20+Art+Brud,626,519,699377151,2435,0 +17228,055+OZDR,467,629,699336777,10365,8 +17229,068,630,524,699373599,10495,0 +17230,019,600,582,698999105,10311,0 +17231,A+READY,587,405,1553947,10252,0 +17232,026+Pot%C4%99%C5%BCny+Dzban,387,561,699382126,10475,0 +17233,010.,628,527,6520732,9835,0 +17234,Pobozowisko,393,577,699513260,10957,0 +17235,Wioska+023,594,585,848971079,9761,0 +17236,012.,628,530,6520732,9835,8 +17237,C+004,580,394,6384450,10283,0 +17238,Wioska+barbarzy%C5%84ska,378,536,849030226,9458,0 +17239,Belvedere+019,587,404,699756210,9957,0 +17240,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,630,8201460,10237,0 +17241,RTS+1,570,614,848995242,10495,5 +17242,Darma,419,400,356642,9429,0 +17243,A0119,372,493,8841266,10252,0 +17244,32+im+Naumowa,580,400,849037469,9809,7 +17246,004+Hello+Moto,602,418,699491076,10001,0 +17247,K34+x014,444,379,698364331,7944,0 +17248,Pobozowisko,396,581,699513260,10971,0 +17249,Ulu-mulu,426,605,699697558,11678,0 +17250,Belvedere+017,584,411,699756210,9809,0 +17251,025.+Thangorodrim,565,387,699799629,10495,0 +17252,CALL+931,508,629,699784536,10311,0 +17253,032+%7C,623,545,8000875,9919,4 +17254,Kentin+ufam+Tobie,382,448,699783765,10000,0 +17255,%2A0007+Baraki,609,431,8459255,10252,0 +17256,November,613,571,699737356,9983,0 +17257,Sasowy+R%C3%B3g,373,537,849030226,9411,0 +17258,Zakr%C4%99cona+2,575,604,8627359,9159,0 +17259,R-2,561,385,3600737,9013,0 +17260,B+001,586,411,6384450,10362,0 +17261,A0310,369,519,8841266,10252,0 +17262,Darma,425,395,356642,9835,0 +17263,Kentin+ufam+Tobie,381,451,699783765,10000,0 +17264,%5B215%5D+WEST,608,454,848985692,10048,0 +17265,063,563,388,849064752,10311,0 +17266,002,404,586,9264752,10495,0 +17267,029.,491,629,699494488,10218,0 +17268,Wioska,378,537,849084005,10178,0 +17269,Tank+015.+Bez+przebaczenia,396,511,698290577,9812,0 +17270,Wioska+barbarzy%C5%84ska3,506,369,699368887,9994,0 +17271,B011,630,493,9314079,9827,0 +17272,001,502,632,699878511,10141,0 +17273,Wioska+barbarzy%C5%84ska,378,465,3698627,9962,0 +17274,Kentin+ufam+Tobie,382,439,699783765,10000,0 +17275,K34+-+%5B075%5D+Before+Land,464,381,699088769,10259,0 +17276,Taran,550,382,699170684,9379,0 +17277,Kentin+ufam+Tobie,385,444,699783765,10000,1 +17279,Wioska+barbarzy%C5%84ska,372,466,699523631,10479,0 +17281,Jaaa,614,442,698635863,10479,0 +17283,maney,420,395,699402816,9835,0 +17284,Wioska+Kurji,368,484,699265922,9216,0 +17285,Wioska,611,571,17714,10222,0 +17286,Wioska,376,547,849084005,10178,0 +17287,Wioska+barbarzy%C5%84ska,615,557,7047342,10478,0 +17288,Westcoast.048,395,418,848918380,10178,0 +17289,Jaaa,617,445,698635863,10484,0 +17290,016,630,529,699413040,9860,0 +17291,006+Hello+Moto,603,418,699491076,10001,0 +17292,007.+Nilfgaard,567,388,699799629,10495,0 +17293,Belvedere+021,590,407,699756210,10273,0 +17294,030,634,520,699413040,9860,0 +17295,031+lecimy+kurv%40+tutaj,624,470,699272633,10481,0 +17296,.020.,494,372,698489071,10252,0 +17297,Wioska,375,542,849084005,10178,0 +17299,%2AINTERTWINED%2A,517,628,698704189,9711,0 +17300,South+K35,558,380,699146580,9809,0 +17301,Zach%C3%B3d+-+013,389,571,225023,7935,0 +17302,Westcoast.015,389,436,848918380,10178,1 +17303,West+06,629,477,698702991,9747,0 +17304,MojeSzczytToTw%C3%B3jDno,516,368,828637,10478,0 +17305,094,449,622,849084985,9264,0 +17306,Taran,550,376,699170684,9379,0 +17307,D020,594,407,699761749,10495,0 +17308,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,614,8201460,10237,0 +17309,MojeSzczytToTw%C3%B3jDno,529,371,828637,10170,0 +17310,Belvedere+022,588,405,699756210,9976,0 +17311,%23026+A,456,624,698143931,9261,0 +17312,001+Samotnia,497,381,698739350,9924,0 +17313,058+Pot%C4%99%C5%BCny+Dzban,384,563,699382126,10479,0 +17314,A034,450,409,8740199,10220,0 +17315,A0086,369,488,8841266,10252,0 +17316,0000,531,616,848915531,11321,0 +17317,Pobozowisko,415,597,699513260,7775,0 +17318,Byczyna,376,535,849030226,10336,0 +17319,Ulu-mulu,419,604,699697558,5674,0 +17320,028,368,522,6853693,6098,0 +17321,Pobozowisko,402,589,699513260,9215,0 +17322,029,369,521,6853693,5790,0 +17323,067,441,613,849084985,9821,5 +17324,059+Pot%C4%99%C5%BCny+Dzban,382,563,699382126,10490,0 +17326,Jaaa,623,455,698635863,10622,0 +17327,Myk+i+do+kieszonki,373,512,9319058,9811,7 +17329,%5B307%5D+Chor%C4%85giewka+na+wietrze,589,423,848985692,10068,0 +17330,Szlachcic+012,623,539,698562644,10311,0 +17331,FKG+01-26,414,405,356642,9835,0 +17332,%23027+A,454,624,698585370,9930,0 +17333,Ulu-mulu,428,612,699697558,7274,0 +17334,Ulu-mulu,436,616,699697558,8625,0 +17335,Kentin+ufam+Tobie,382,449,699783765,10000,4 +17336,008+O+rety+rety%2C+lec%C4%85+karety%21,389,569,699382126,10478,0 +17337,Wioska+barbarzy%C5%84ska,404,414,698971484,10008,0 +17338,Wioska+barbarzy%C5%84ska,396,415,7462660,9994,0 +17339,016,556,379,1424656,9735,0 +17340,001+Monety+1+p600,511,367,699368887,9994,9 +17341,Wioska+barbarzy%C5%84ska,371,467,699523631,10479,0 +17342,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,438,617,8201460,10104,0 +17343,A0132,373,488,8841266,10252,0 +17344,04+im+Owsjenki,591,414,849037469,9809,0 +17345,Wioska+barbarzy%C5%84ska,405,410,698971484,10008,0 +17346,Og%C3%B3rkowy+baron,404,408,356642,9835,9 +17347,Wioska+034,604,583,848971079,9761,0 +17348,Wioska+barbarzy%C5%84ska,546,375,1990750,10068,0 +17349,yyyy,497,371,699883079,10209,0 +17350,-+127+-,542,582,849018239,10000,0 +17351,A-001,415,405,8419570,10654,0 +17352,A+READY,589,402,1553947,10019,0 +17353,Wioska+031,602,585,848971079,9761,0 +17354,MojeSzczytToTw%C3%B3jDno,514,367,828637,10476,0 +17355,049.+F64D,482,631,699494488,10221,0 +17356,Wioska+barbarzy%C5%84ska,374,465,3698627,9866,0 +17358,%5B0090%5D,411,402,8630972,10495,0 +17359,Wioska+barbarzy%C5%84ska,367,506,698807570,6799,0 +17360,Gattacka,603,423,699298370,9761,0 +17361,023.,565,613,873575,10167,0 +17362,s181eo22,378,457,393668,9883,0 +17363,BAC%C3%93WKA+%7C018%7C,630,501,7394371,10228,0 +17364,022+021,546,379,699491076,10001,0 +17365,%23062.,622,456,556154,9524,0 +17366,Wilczek87,569,612,848995242,9765,0 +17367,Wioska,379,550,849084005,10178,0 +17368,WB+02,576,608,8627359,9159,0 +17369,0010,442,382,699431255,9983,0 +17370,0446,563,618,698659980,8795,0 +17371,D019,582,412,699761749,10444,0 +17372,MojeSzczytToTw%C3%B3jDno,527,370,828637,10474,0 +17373,South+K35,552,383,699146580,10200,0 +17374,Pobozowisko,395,573,699513260,10966,1 +17375,015,501,629,699878511,10160,0 +17376,%5B0080%5D,416,396,8630972,10365,0 +17377,Piwna+12,614,436,699812007,9633,0 +17378,Westcoast.091,388,431,848918380,10178,0 +17379,Wioska+barbarzy%C5%84ska,507,366,699368887,9994,0 +17380,016,371,523,6853693,6121,0 +17381,031,470,629,699336777,9825,0 +17382,027+Pot%C4%99%C5%BCny+Dzban,386,561,699382126,10479,0 +17383,018+Wioska,630,467,699671454,6381,0 +17384,Nowa+01,606,578,698702991,9835,0 +17385,022.+Wioska+barbarzy%C5%84ska,574,389,699799629,10495,0 +17386,Mniejsze+z%C5%82o+0031,371,476,699794765,8439,0 +17387,Wioska+.Dwukropek.,400,451,698807570,9417,0 +17388,WE+ARE+READY%21,593,406,1553947,9807,0 +17389,Piek%C5%82o+to+inni,486,389,848956765,10083,0 +17390,zZZ,488,369,699658023,9882,4 +17391,0012,578,405,699485250,10211,0 +17392,040,569,387,849064752,10311,6 +17393,016,504,630,699878511,10146,0 +17394,%230045,548,625,1536231,10495,0 +17395,Westcoast.075,389,427,848918380,10178,0 +17396,Szlachcic+014,625,533,698562644,10311,0 +17397,Sony+911,578,608,1415009,10208,0 +17398,%230018,546,626,1536231,10495,0 +17399,A0213,370,471,8841266,10252,0 +17400,Cedynia,372,536,849030226,9464,0 +17401,Wioska+yogi+1,548,609,2808172,10019,0 +17402,042+Pot%C4%99%C5%BCny+Dzban,383,561,699382126,10484,0 +17403,BARB,632,507,9314079,9816,0 +17404,Wioska+barbarzy%C5%84ska,419,395,699402816,9835,0 +17405,Wioska+Beniek+Pogromca,375,529,849030226,10346,0 +17406,Lord+Lord+Franek+.%23015,549,379,698420691,10152,0 +17407,VN+Noelle+Silva,466,372,699883079,8985,0 +17408,C+007,580,397,6384450,8650,0 +17409,Wioska,377,542,849084005,10178,0 +17410,003,404,585,9264752,9889,0 +17411,064,564,385,849064752,10311,0 +17412,009,493,630,699336777,9902,0 +17413,Kentin+ufam+Tobie,428,405,699783765,10000,0 +17414,0017+Bezimienna,420,602,9060641,9542,0 +17415,.025.,496,369,698489071,10316,0 +17416,35+im+Malkowa,583,400,849037469,9809,0 +17417,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,627,8201460,10237,0 +17418,Lecymy+DUR,439,383,6169408,3432,0 +17419,Pobozowisko,408,596,699513260,10963,0 +17420,039+OZDR,466,624,699336777,9825,0 +17421,068+-+FiniteSpace,419,583,225023,10495,0 +17422,011,609,579,699099811,9835,0 +17423,A11+Wioska+barbarzy%C5%84ska,462,627,849037407,10479,0 +17424,Bagdad,472,387,8847546,10654,0 +17425,Brat447,374,492,699262350,10487,0 +17426,112,586,404,849064752,10311,0 +17428,Wioska+barbarzy%C5%84ska,375,454,3698627,9962,0 +17429,017,471,628,699336777,9955,0 +17430,Jarzebina,370,507,699265922,9825,0 +17431,154+MIKOX+056,592,410,699491076,10001,0 +17432,Kentin+ufam+Tobie,382,441,699783765,10000,0 +17433,Wiocha,471,374,699658023,9904,0 +17434,-1-,460,376,699393759,8777,0 +17435,Wioska+barbarzy%C5%84ska,484,367,699658023,9570,0 +17436,155+MIKOX+061,593,409,699491076,10001,0 +17437,Wioska+barbarzy%C5%84ska,416,599,699697558,6310,0 +17438,Pobozowisko,412,596,699513260,9580,0 +17439,VN+Lemiel+Silvamillion,462,372,699883079,9643,0 +17441,Wioska+035,605,582,848971079,9761,0 +17442,088.,635,489,849094609,9912,0 +17443,%23049.501%7C533,620,484,556154,9301,0 +17444,Taran,552,382,699170684,9364,0 +17445,Ulu-mulu,432,610,699697558,8219,0 +17446,W.181%2F25,630,523,2999957,10242,0 +17447,003+Osada+koczownik%C3%B3w,530,372,699854484,10178,2 +17448,SSJ+005,508,631,699054373,9761,0 +17449,015,629,500,849093875,3736,0 +17450,Gattacka,602,422,699298370,9681,8 +17451,Deveste+ufam+Tobie,433,617,699783765,9710,0 +17452,Sony+911,577,610,1415009,10211,0 +17453,%C5%9Amieszki,529,619,3454753,9976,0 +17454,SSJ+010,506,628,699364813,9737,3 +17455,High+Heart,483,632,699494488,10495,0 +17456,Westcoast.033,382,435,848918380,10178,0 +17457,Selonari,461,564,698704189,7487,0 +17458,A0087,369,480,8841266,10252,0 +17459,Jan+B+Nord+K,631,505,879782,9215,0 +17460,Jaaa,596,587,698635863,10478,0 +17461,Kentin+ufam+Tobie,431,402,699783765,10000,0 +17462,108+Summer+Slam,392,568,699382126,10456,0 +17463,MojeSzczytToTw%C3%B3jDno,527,369,828637,10478,0 +17464,013+Lewa+Waza,619,449,699671454,7796,0 +17465,066,367,517,6853693,10495,0 +17466,611%7C425+Wioska+barbarzy%C5%84ska,611,425,6822957,6642,0 +17467,051.,481,628,699494488,10090,0 +17468,010.,639,490,849094609,9481,0 +17469,A0308,371,508,8841266,10252,0 +17470,K34+-+%5B003%5D+Before+Land,458,376,699088769,10259,0 +17471,018,431,386,699783765,11130,0 +17472,Nowa+06,615,559,698702991,9835,0 +17473,021+Kury%C5%82%C5%82%C5%82yyhhhhaaa,626,470,699272633,10484,0 +17474,Wioska+SkanWhite09,431,435,9291984,7718,0 +17475,024,475,631,699336777,10160,0 +17476,Pobozowisko,411,595,699513260,10955,0 +17477,Pobozowisko,409,595,699513260,10621,0 +17478,0029,555,618,698659980,10160,0 +17479,Knowhere,374,495,699723284,10452,0 +17480,Wioska+Dominatorxd,508,600,699698253,9744,0 +17481,082,595,410,849064752,10311,0 +17482,Mniejsze+z%C5%82o+0042,377,461,699794765,8528,0 +17483,Knowhere,368,502,699723284,10452,0 +17484,Ulu-mulu,433,616,699697558,11163,0 +17486,A0088,370,485,8841266,10252,0 +17487,K34+-+%5B056%5D+Before+Land,458,379,699088769,10259,0 +17488,A0120,372,485,8841266,10252,0 +17489,0031,545,609,698659980,10160,0 +17490,Ulu-mulu,432,615,699697558,3933,0 +17491,208,570,386,849064752,10362,0 +17492,MojeSzczytToTw%C3%B3jDno,511,369,828637,10495,0 +17493,%2A0011+Baraki,611,428,8459255,10325,0 +17494,Wioska+barbarzy%C5%84ska,397,415,7462660,10068,0 +17495,005.,565,612,873575,9699,5 +17496,608%7C421+Wioska+barbarzy%C5%84ska13,608,421,6822957,9592,0 +17497,Szlachcic+016,630,530,698562644,10311,0 +17498,Szlachcic+P%C3%B3%C5%82noc+005,637,514,698562644,10311,0 +17499,Mike,613,572,699737356,7741,0 +17500,019,585,394,849064752,10311,0 +17501,0306,426,608,698659980,10019,0 +17502,.029.,483,368,698489071,10393,0 +17503,Mniejsze+z%C5%82o+0037,376,467,699794765,8986,0 +17504,017,502,634,699878511,10139,0 +17505,060+Pot%C4%99%C5%BCny+Dzban,380,560,699382126,10495,0 +17506,C003+Brokilon,613,566,8096537,9825,0 +17507,XXX+Daleko,370,527,699425709,7761,0 +17508,Piwna+06,616,432,699812007,7405,0 +17509,004,494,631,699336777,9825,0 +17511,01+Monety+2+p500,493,377,699368887,10365,0 +17512,Lord+Arsey+KING,596,591,848956513,10285,0 +17513,VN+Sylph,473,375,699883079,9559,0 +17514,609%7C428+Wioska+barbarzy%C5%84ska09,609,428,6822957,9304,0 +17515,yogi,541,627,2808172,10019,0 +17516,003,629,511,699139964,2472,0 +17518,A0177,372,475,8841266,10252,0 +17519,Zeta+Reticuli+S,407,403,699323302,11691,0 +17520,Darma,426,394,356642,9835,0 +17521,%3D035%3D+Wioska+barbarzy%C5%84ska,622,551,3781794,8871,0 +17523,Wioska+barbarzy%C5%84ska,375,530,849030226,10954,0 +17524,Pobozowisko,395,583,699513260,10797,0 +17525,Westcoast.032,388,436,848918380,10178,0 +17526,016Niespodziewanka,457,627,698620694,9249,0 +17527,Wioska+barbarzy%C5%84ska,632,523,6510480,7470,0 +17528,007,585,404,849064752,10311,0 +17529,Westcoast.038,395,420,848918380,10178,0 +17530,B019,631,501,9314079,9821,0 +17531,611%7C427+Wioska+barbarzy%C5%84ska06,611,427,6822957,9913,0 +17532,.TO+NIE+DLA+SOSU,414,549,698971484,9933,0 +17533,Sony+911,577,608,1415009,10206,0 +17534,A004,522,367,699208929,10292,0 +17535,yyyy,500,368,699883079,10052,0 +17536,0139,449,379,699431255,10019,0 +17537,Piwna+10,612,435,699812007,9492,0 +17538,FB001,634,494,9314079,9835,0 +17539,Zeta+Reticuli+S,401,411,699323302,11550,0 +17540,106+Wioska+barbarzy%C5%84ska,599,417,699491076,9263,0 +17542,015+Wioska,631,469,699671454,8870,0 +17543,A29+MARUDER+stolica,462,629,849037407,11321,0 +17544,Kentin+ufam+Tobie,381,439,699783765,10000,0 +17545,Kentin+ufam+Tobie,370,454,699783765,10000,0 +17546,Jaaa,616,444,698635863,10381,0 +17547,ADEN,521,382,698588535,10228,0 +17548,z+045,581,606,699342219,10262,0 +17549,.048.,496,367,698489071,10393,0 +17550,Wioska+barbarzy%C5%84ska,509,366,699368887,9994,0 +17551,063,367,512,6853693,10487,6 +17552,MojeSzczytToTw%C3%B3jDno,528,368,828637,10495,0 +17553,Part+XXX,540,373,698350371,10495,0 +17554,092.+Favianis,615,437,849091866,8664,0 +17555,G001,573,609,8627359,9337,0 +17556,034,592,405,849064752,10311,0 +17557,.046.,487,371,698489071,10503,0 +17558,B+010,594,408,6384450,10362,0 +17559,609%7C423+011+FRANKIA,609,423,6822957,9953,0 +17560,VN+Beyond+Netero,458,374,699883079,9640,0 +17561,C+005,579,394,6384450,8959,0 +17562,VN+Meruem,495,363,699883079,10375,0 +17563,027,482,373,849010255,8674,0 +17564,.000.,496,381,698489071,10301,0 +17565,yyy,495,370,699883079,10068,0 +17567,036,585,397,1424656,9363,0 +17568,A004,615,442,699722599,10362,0 +17569,Wioska+barbarzy%C5%84ska,616,556,7047342,10487,0 +17570,Wioska+barbarzy%C5%84ska,624,540,8970390,2661,0 +17571,Westcoast.087,387,427,848918380,10178,0 +17572,-042-,385,568,9167250,8572,0 +17573,Nowa+02,615,558,698702991,9818,0 +17574,SSJ+031,507,632,699054373,9761,0 +17575,Golf,611,566,699737356,9808,0 +17576,084,480,368,698739350,10237,0 +17577,017+KTW,625,452,848883237,10495,0 +17578,0141,432,384,699431255,6793,0 +17579,040-+Mroczna+Osada,616,434,849035905,12154,0 +17580,A016,474,632,699383279,9899,0 +17581,014+Harrenhal,608,571,699272880,10403,0 +17582,093,451,620,849084985,10437,0 +17583,014,374,539,6853693,5793,0 +17584,MojeSzczytToTw%C3%B3jDno,501,367,828637,10362,0 +17585,Sony+911,577,611,1415009,10212,0 +17586,Kentin+ufam+Tobie,369,459,699783765,10000,0 +17587,A31+MARUDER+XD,463,628,849037407,9805,0 +17588,001.+Wioska+Orka,489,619,699494488,10495,0 +17589,Zeta+Reticuli+S3,426,391,699323302,10887,0 +17590,A002,628,487,9314079,9835,0 +17591,0007+MzM,620,551,698416970,9258,1 +17592,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,625,8201460,10237,0 +17593,A0291,368,498,8841266,10252,0 +17594,C+021,581,394,6384450,9006,0 +17595,004,497,629,699878511,10160,0 +17596,Szlachcic,387,472,6258092,10160,0 +17597,Wioska,379,552,849084005,10178,0 +17598,Westcoast.027,389,428,848918380,10178,4 +17599,Wioska+barbarzy%C5%84ska,563,386,699072129,10176,0 +17600,Wioska+barbarzy%C5%84ska,376,462,3698627,9867,0 +17601,Szlachcic+009,624,537,698562644,10311,0 +17602,025,480,372,849010255,6643,0 +17603,007,499,630,699878511,10141,1 +17604,MojeSzczytToTw%C3%B3jDno,502,369,828637,10362,0 +17605,Jaaa,616,441,698635863,10247,0 +17606,Dewej+na+hebel+Maryla,376,450,699711723,4789,0 +17607,Wioska+barbarzy%C5%84ska,546,377,1990750,10068,0 +17608,Horyzont+zdarze%C5%84,537,610,7581876,10019,0 +17609,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,625,7589468,8825,0 +17610,aaaa,480,632,6948793,10068,0 +17611,612%7C427+Wioska+barbarzy%C5%84ska01,612,427,6822957,9882,0 +17612,amonka,525,370,828637,10476,9 +17613,012+barbarzy%C5%84ska,611,565,9238175,9853,0 +17614,Kentin+ufam+Tobie,385,446,699783765,10000,0 +17615,Pobozowisko,399,581,699513260,10957,0 +17616,PIERWSZY+KUZYN+W+KOSMOSIE,521,629,698704189,8653,0 +17617,Wioska+barbarzy%C5%84ska,440,383,849027025,9204,0 +17618,003,446,622,849084985,10211,0 +17619,015+KTW,622,449,848883237,10495,0 +17620,0005,623,527,6510480,10336,0 +17621,020+Co+si%C4%99+sta%C5%82o+z+p.+Witczakiem,628,468,699272633,10484,0 +17622,Kentin+ufam+Tobie,377,445,699783765,10000,3 +17623,Pobozowisko,399,587,699513260,10945,0 +17624,Wioska+barbarzy%C5%84ska,373,468,3698627,9971,0 +17625,Westcoast.089,385,431,848918380,10178,0 +17626,%5B046%5D,630,522,698305474,3606,0 +17628,Wioska+barbarzy%C5%84ska,573,392,3600737,8429,0 +17629,%5B0073%5D......,413,398,8630972,10495,0 +17630,VN+Yami+Sukehiro,470,373,699883079,9568,0 +17631,015,555,380,1424656,9953,0 +17632,.achim.,527,453,6936607,7312,0 +17633,WE+ARE+READY,593,405,1553947,10019,0 +17634,.achim.,515,386,6936607,10290,0 +17635,Jan+018-12+P%C5%82n+K,632,495,879782,9496,0 +17636,Knowhere,370,503,699723284,10452,0 +17637,A0121,370,478,8841266,10252,0 +17638,C019+Port+Hope,619,563,8096537,9750,0 +17639,001,505,377,849010255,10019,0 +17640,Jednak+wol%C4%99+gofry,486,633,6180190,8274,0 +17641,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,628,1434753,10068,0 +17642,048,371,540,8908002,7195,0 +17643,B021,632,498,9314079,9894,0 +17644,050,475,368,698739350,10237,0 +17645,Lord+Arsey+KING,595,591,848956513,10285,0 +17646,014+Palma+de+Mallorca,630,512,698416970,8574,0 +17647,Kentin+ufam+Tobie,383,439,699783765,10000,0 +17648,Kentin+ufam+Tobie,374,457,699783765,10000,0 +17649,096,444,620,849084985,9883,0 +17650,024,556,377,1424656,9797,0 +17651,046,479,628,699336777,9902,0 +17652,39+im+Akimowa,596,406,849037469,9809,0 +17653,028,476,630,699336777,9825,0 +17654,Piwna+02,613,438,699812007,8888,0 +17655,Jaaa,601,587,698635863,10479,0 +17656,FA001,632,491,9314079,9816,9 +17657,Pobozowisko,407,590,699513260,8277,0 +17658,Wioska+%28023%29,634,491,698232227,9411,0 +17659,s6+Wioska+barbarzy%C5%84ska,398,415,7462660,10068,0 +17660,Hel+01,613,564,698702991,9821,0 +17661,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,631,8201460,10237,0 +17662,_PUSTA,633,498,849014413,10093,0 +17663,Ulu-mulu,421,601,699697558,6782,0 +17664,.022.,486,371,698489071,10728,0 +17665,z+042,579,605,699342219,10479,0 +17666,VN+Charlotte+Roselei,469,374,699883079,9629,0 +17667,MojeSzczytToTw%C3%B3jDno,525,369,828637,10481,0 +17668,Brat447,387,499,699262350,10481,0 +17669,z+048,581,607,699342219,10385,0 +17670,A+READY,589,400,699759128,10365,0 +17671,HORUS%21,519,629,7756002,9955,0 +17672,B+005,594,404,6384450,10362,0 +17673,Wioska+barbarzy%C5%84ska,486,362,699658023,7228,0 +17674,Piwna+14,615,434,699812007,8056,0 +17675,Kaer+Morhen,478,369,699658023,9744,0 +17676,Twierdza+1,637,470,848935020,10401,0 +17677,131,592,409,849064752,10311,0 +17678,Wioska+Krz40,417,604,699657242,2932,0 +17679,Szlachcic+P%C3%B3%C5%82noc+001,632,505,698562644,10311,0 +17680,033.,615,479,8900955,10083,0 +17681,MojeSzczytToTw%C3%B3jDno,521,372,828637,10479,0 +17682,009,609,576,699099811,9835,0 +17683,012.+Chomo+Lonzo,603,580,1601917,10495,0 +17684,Jaaa,607,580,698635863,10495,0 +17685,Konfederacja,455,373,848915730,9682,0 +17686,019,372,525,6853693,5489,0 +17687,007,375,539,6853693,10559,0 +17688,012+KTW,624,448,848883237,10495,0 +17689,MojeSzczytToTw%C3%B3jDno,536,373,828637,9814,0 +17690,Wioska+barbarzy%C5%84ska,619,549,7047342,10475,0 +17691,Ulu-mulu,418,602,699697558,8732,0 +17692,007.+A-RE-SE-EY,575,527,848967710,10252,0 +17693,007,616,568,848899726,7166,0 +17694,052+OZDR,477,631,699336777,10259,0 +17695,019,472,628,699336777,9825,0 +17696,MojeSzczytToTw%C3%B3jDno,515,371,828637,10474,0 +17697,018.,633,512,849094609,9827,0 +17698,Westcoast.035,388,435,848918380,10178,0 +17699,-+325+-+RR,587,599,849018239,9890,0 +17700,Ulu-mulu,421,608,699697558,5361,0 +17701,A0201,370,473,8841266,10252,0 +17702,11.+Sarah,524,626,8199417,10495,0 +17703,007.,565,614,873575,10203,0 +17704,WE+ARE+READY%21,590,406,1553947,9771,0 +17705,Westcoast.006,384,436,848918380,10178,0 +17706,030,373,538,6853693,5843,0 +17707,Gattacka,605,421,699298370,9355,0 +17708,Dum+Spiro+Spero,494,559,848896948,12130,0 +17709,-+333+-+RR,587,601,849018239,9712,0 +17710,023.+Wioska+barbarzy%C5%84ska,569,389,699799629,10495,0 +17711,%3D019%3D+Wioska+barbarzy%C5%84ska,623,552,3781794,10580,0 +17712,Sony+911,576,611,1415009,10209,2 +17714,Pobozowisko,388,584,699513260,10892,0 +17715,Wioska+barbarzy%C5%84ska,420,394,699402816,9835,0 +17716,009,498,633,699878511,10139,0 +17717,Ulu-mulu,425,606,699697558,11678,0 +17718,%3A%3A%3A+B+%3A%3A%3A,364,474,848917570,6144,0 +17719,020,431,390,699783765,11130,0 +17720,MojeSzczytToTw%C3%B3jDno,529,375,828637,10495,0 +17721,Kentin+ufam+Tobie,377,450,699783765,10000,0 +17722,B013,596,407,699761749,10495,0 +17723,38+im+Kadyrowa,595,406,849037469,7949,0 +17724,149+Ale+mnie+g%C5%82%C3%B3wka+boli,383,565,699382126,10115,0 +17725,A0138,368,479,8841266,10252,0 +17726,Westcoast.064,387,426,848918380,10178,0 +17727,Wioska+barbarzy%C5%84ska,561,381,699072129,10223,0 +17729,B009,629,488,9314079,9819,0 +17730,Bagdad,476,379,8847546,10654,0 +17731,A0309,370,515,8841266,10252,0 +17732,s181eo27,379,457,393668,10336,0 +17734,A003,517,369,699208929,10047,0 +17735,046,369,522,6853693,10495,0 +17736,021.,568,615,873575,9913,0 +17737,005,555,619,698659980,10019,0 +17738,MojeSzczytToTw%C3%B3jDno,506,371,828637,10362,0 +17739,a+mo%C5%BCe+off+%3F+%3A%29,595,586,698768565,10211,0 +17740,018.,569,615,873575,9866,0 +17741,610%7C424+001Legatus,610,424,6822957,9882,4 +17742,Westcoast.088,385,430,848918380,10178,0 +17743,%5B025%5D,635,513,698305474,9809,0 +17744,Wioska+barbarzy%C5%84ska,483,370,699658023,9659,0 +17745,065+OZDR,461,627,699336777,9825,0 +17746,005,362,517,698641566,9809,0 +17747,Wioska,380,553,849084005,10178,0 +17748,A+READY,596,413,1553947,10160,6 +17749,Feed+me+more+009,494,374,699756210,10444,0 +17750,Wioska+barbarzy%C5%84ska,423,392,699402816,10178,0 +17751,A0204,366,479,8841266,10252,0 +17752,16+Przeb%C3%B3j+nocy,628,520,9314079,6116,0 +17753,-+326+-+RR,584,600,849018239,10135,0 +17754,Taran,552,378,699170684,9364,0 +17755,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,629,8201460,10237,0 +17756,Nowa+11,613,565,698702991,9821,0 +17757,CALL+1067,557,618,699784536,10495,8 +17758,A0159,367,476,8841266,10252,0 +17759,Brat447,368,496,699262350,10481,0 +17760,018.,573,388,699799629,10495,0 +17761,Zakrecona+4,574,605,8627359,9071,0 +17762,MojeSzczytToTw%C3%B3jDno,540,374,828637,8319,0 +17763,065,436,618,849084985,9989,0 +17764,Brat447,369,513,699262350,9733,0 +17765,035,570,390,849064752,10311,9 +17766,008,375,537,6853693,10495,0 +17767,A+READY,590,403,849064752,10037,0 +17768,Kentin+ufam+Tobie,380,450,699783765,10000,0 +17769,044+Warszawa,633,508,7092442,10495,0 +17770,A0002,387,473,8841266,10252,0 +17771,kathare,545,621,873575,9915,0 +17772,Wioska+barbarzy%C5%84ska,618,558,7047342,10479,0 +17773,071+OZDR,469,630,699336777,10495,0 +17774,Port,578,610,8627359,9174,0 +17776,008.,626,540,6520732,9835,0 +17777,SSJ+024,511,631,699054373,9761,0 +17778,027,599,592,698999105,10311,0 +17779,Wioska+barbarzy%C5%84ska,400,416,7462660,9980,0 +17780,D029+Iwa,598,592,8096537,9745,0 +17782,Wioska+barbarzy%C5%84ska,423,391,699402816,9579,0 +17783,Vasperland_008,628,516,7047342,10954,5 +17784,Nowa+05,615,566,698702991,9815,0 +17785,South+K35,559,379,699146580,10042,0 +17786,Brat447,374,493,699262350,10495,0 +17787,007.,627,538,6520732,9761,0 +17789,017,627,545,8428196,9859,0 +17790,060,366,511,6853693,9753,0 +17792,MojeSzczytToTw%C3%B3jDno,527,371,828637,10475,0 +17793,Foxtrot,612,567,699737356,8782,0 +17794,MojeSzczytToTw%C3%B3jDno,522,369,828637,10474,0 +17795,K34+x009,443,379,698364331,8365,0 +17796,Wioska+barbarzy%C5%84ska,545,374,1990750,10068,0 +17798,011.,566,613,873575,10280,0 +17799,So%C5%82tys+Twojej+Wsi,434,388,849027025,9297,0 +17800,Wioska+barbarzy%C5%84ska,372,537,849030226,6920,0 +17801,Kentin+ufam+Tobie,369,460,699783765,10000,0 +17802,19+Na+audiencji,630,521,9314079,4320,0 +17803,Westcoast.061,387,431,848918380,10178,0 +17804,Part+XXVIII,539,373,698350371,10237,0 +17805,A0157,360,483,8841266,10252,0 +17806,013+Tyria,612,571,699272880,10391,0 +17807,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,629,8201460,10237,0 +17808,Zach%C3%B3d+-+006,395,578,225023,10495,0 +17809,07+im+Jakira,597,428,849037469,9809,0 +17810,047,368,524,6853693,5845,0 +17811,0423,562,619,698659980,8502,0 +17812,Wioska+barbarzy%C5%84ska,481,368,699658023,9647,0 +17813,Westcoast.085,386,429,848918380,10178,0 +17814,Wioska+%28017%29,619,557,698232227,9834,0 +17815,067+OZDR,458,625,699336777,9627,0 +17816,RTS,572,613,848995242,10495,0 +17817,Dawanie+w+szyje,415,605,9060641,10209,0 +17818,014.+Barbarzy%C5%84ska+Osada,568,385,699799629,10495,0 +17819,010,479,589,7976264,10100,0 +17820,036,366,520,6853693,6428,0 +17821,Wioska+syisy,483,363,699658023,9740,0 +17822,Gattacka,606,417,699298370,9745,0 +17823,Kentin+ufam+Tobie,379,440,699783765,10000,0 +17824,Nowa+10,614,563,698702991,9821,0 +17825,Knowhere,389,514,699723284,10452,0 +17826,A0089,366,490,8841266,10252,0 +17827,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,632,8201460,10237,0 +17828,Jednak+wol%C4%99+gofry,487,633,6180190,10036,0 +17830,Mzm10,628,524,7142659,10495,0 +17831,%5B0084%5D,413,401,8630972,10495,0 +17832,086,599,570,699373599,9739,0 +17833,%5B045%5D,632,522,698305474,4619,0 +17834,%2A4609%2Aa+Patagonia,634,496,7973893,10287,0 +17835,608%7C424+Wioska+barbarzy%C5%84ska15,608,424,6822957,9793,0 +17836,008+Wioska+barbarzy%C5%84ska,532,372,699854484,10178,0 +17837,Wioska+barbarzy%C5%84ska,372,469,3698627,9870,0 +17838,Westcoast.021,382,438,848918380,10178,3 +17839,C008+Yalahar,622,565,8096537,9902,0 +17840,SSJ+035,515,631,699054373,9761,0 +17841,Gravity,409,452,698962117,9758,0 +17842,Wioska+barbarzy%C5%84ska,423,394,699402816,9835,0 +17843,046+Kurka+w%C3%B3dka,411,557,699382126,9925,0 +17844,Wioska+barbarzy%C5%84ska,420,398,699402816,9835,0 +17845,022,623,542,8428196,9750,0 +17846,A0075,366,498,8841266,10252,9 +17847,Og%C3%B3rkowy+baron,403,409,356642,9835,0 +17848,SSJ+013,511,632,699364813,9737,0 +17850,Szlachcic+010,625,537,698562644,10311,0 +17851,Jaaa,598,593,698635863,10476,4 +17852,0002+Wiocha,424,612,9060641,10544,0 +17853,0018+Bezimienna,421,604,9060641,8078,0 +17854,Zach%C3%B3d+-+011,391,579,225023,8110,0 +17855,017+Wioska,632,471,699671454,8290,0 +17856,Wioska+barbarzy%C5%84ska,546,374,1990750,10068,0 +17857,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,635,6948793,10044,0 +17859,RTS+17,570,612,848995242,10342,0 +17860,Witam+w+wietnamie,415,551,698971484,10008,0 +17861,Westcoast.007,381,436,848918380,10178,0 +17862,KIELBA+092,459,626,699342219,10221,0 +17863,026,630,525,699413040,9860,0 +17864,026+%7C+PALESTINA,633,503,9228039,9544,0 +17865,005,549,394,1424656,9902,0 +17866,Jaaa,616,442,698635863,10479,0 +17867,052,433,382,698364331,5337,0 +17868,WE+ARE+READY%21,592,406,1553947,9889,0 +17869,Konfederacja+%2B,456,373,848915730,9801,7 +17870,0051,629,532,6510480,9748,0 +17871,D011,596,412,699761749,9691,0 +17872,Hel+03,614,564,698702991,9744,0 +17873,Sony+911,579,608,1415009,10214,0 +17874,MasteroN+08,567,446,699379895,10495,0 +17875,0148,551,620,698659980,10160,0 +17876,006,564,616,699189792,9804,0 +17878,012,494,630,699336777,9825,0 +17880,%23025+A,457,623,698585370,9792,0 +17881,A0178,367,477,8841266,10252,0 +17882,Deor%2C+kaj+si%C4%99+pchosz%3F,629,470,699545762,3388,0 +17883,083,438,615,849084985,8250,0 +17884,Lord+Lord+Franek+.%23016,550,378,698420691,9957,0 +17885,MojeSzczytToTw%C3%B3jDno,505,369,828637,10362,0 +17886,Pobozowisko,396,585,699513260,10955,0 +17887,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,635,6180190,9936,0 +17888,0058,560,621,698659980,10083,0 +17889,Wioska,381,552,849084005,10178,0 +17890,sony911,568,610,1415009,10218,0 +17891,Deor+czuje+dym+%3B-%29,628,474,699545762,5645,0 +17892,Kentin+ufam+Tobie,377,455,699783765,10000,0 +17894,020,555,378,1424656,9887,0 +17895,Westcoast.094,392,418,848918380,10178,0 +17896,00000A,376,461,3698627,10690,0 +17897,Westcoast.037,397,417,848918380,10178,0 +17898,NWO,376,532,849030226,10971,0 +17899,Wioska+barbarzy%C5%84ska,543,374,1990750,10068,0 +17900,A0108,363,488,8841266,10252,0 +17901,002+B,622,447,699718269,9735,0 +17902,Wioska+barbarzy%C5%84ska,373,456,3698627,9962,0 +17903,Pobozowisko,393,578,699513260,10971,0 +17904,Zeta+Reticuli+S,399,410,699323302,11321,0 +17905,0046,447,375,699431255,10311,0 +17906,Gattacka,606,424,699298370,9589,0 +17907,031,633,519,699413040,9860,0 +17908,Brat447,369,516,699262350,10134,5 +17909,.031.,489,378,698489071,10393,0 +17910,R-01,560,384,3600737,9013,0 +17911,049,371,538,8908002,5638,0 +17912,009+Wioska+barbarzy%C5%84ska,535,371,699854484,10068,0 +17913,%23+Szymi+4,390,545,699425709,9873,0 +17914,022.xxx,454,623,698143931,10045,0 +17915,MojeSzczytToTw%C3%B3jDno,521,366,828637,10495,0 +17916,C+015,579,397,6384450,9533,0 +17917,Wioska+Pog%C3%B3rze+1,628,535,698562644,10311,0 +17918,Wa%C5%82cz,394,577,698769107,9702,0 +17919,Bagdad,492,364,8847546,10040,0 +17920,%230018,520,634,699728159,7888,0 +17921,Horyzont+zdarze%C5%84,520,527,7581876,10019,0 +17922,Zeta+Reticuli+S,406,406,699323302,10728,0 +17923,.024.,485,369,698489071,10316,0 +17924,0031,625,535,6510480,9982,0 +17925,A0090,368,487,8841266,10252,0 +17926,Zeta+Reticuli+S,401,408,699323302,11188,0 +17927,013+-+Vigo,634,487,698342159,10019,0 +17928,MojeSzczytToTw%C3%B3jDno,512,365,828637,10495,0 +17929,Szlachcic+P%C3%B3%C5%82noc+003,630,510,698562644,10311,0 +17931,097.+Kirlan,626,465,8337151,11678,0 +17932,126+im+Gribowa,602,411,699491076,9379,6 +17933,Wioska,379,554,849084005,8642,0 +17934,A+READY,589,401,699759128,10362,0 +17935,Pobozowisko,407,598,699513260,9537,0 +17936,Belvedere+018,585,400,699756210,9998,0 +17937,Darmowe+przeprowadzki,435,618,848935389,8844,0 +17938,Gattacka,607,418,699298370,9042,0 +17939,%230011,549,626,1536231,10495,0 +17940,Lecymy+DUR,441,382,6169408,7047,0 +17941,FB006,629,493,9314079,9827,0 +17942,A0091,364,491,8841266,10252,0 +17943,Wioska+032,604,582,848971079,9761,0 +17944,Wioska,382,527,849084005,10178,0 +17945,014+Wioska+barbarzy%C5%84ska,540,370,699854484,10178,0 +17946,089.,634,489,849094609,9319,0 +17947,004,404,542,699425709,9873,0 +17948,016+Wymi%C4%99k%C5%82em+w+hu11,626,459,699272633,10711,0 +17949,088+LUDZI+CA%C5%81A+MASA,407,557,699382126,10325,0 +17950,Wioska+%28021%29,620,440,698232227,9786,0 +17951,036%7C,622,552,8000875,10143,4 +17952,032,369,532,698641566,9809,0 +17953,007,554,400,699761749,10495,0 +17954,Wioska+barbarzy%C5%84ska,601,414,1990750,10068,0 +17955,A-002,412,397,8419570,10654,0 +17956,033,472,630,699336777,9902,0 +17957,B032,634,512,9314079,9824,0 +17958,Wioska,380,551,849084005,10178,0 +17959,018,496,630,699878511,10143,0 +17960,024,591,600,698999105,10311,0 +17961,Pobozowisko,412,599,699513260,10765,0 +17962,A+READY,586,395,699759128,10237,0 +17963,Zeta+Reticuli+S,408,402,699323302,10997,0 +17964,615%7C429+Wioska+barbarzy%C5%84ska02,615,429,6822957,9569,0 +17965,022,474,631,699336777,9825,0 +17966,Gattacka,590,492,699298370,9537,0 +17967,616%7C429+Wioska+barbarzy%C5%84ska07,616,429,6822957,9609,0 +17968,Zeta+Reticuli+S,410,406,699323302,10838,0 +17969,Nowa+07,615,570,698702991,9835,0 +17970,051,471,368,698739350,10259,0 +17971,Deor%2C+dej+na+luz,627,475,699545762,4059,0 +17973,Westcoast.039,399,419,848918380,10178,0 +17976,Kentin+ufam+Tobie,375,450,699783765,10000,0 +17977,070+OZDR,473,631,699336777,9825,0 +17978,123,493,369,699761749,10344,0 +17979,Westcoast.022,389,433,848918380,10178,0 +17980,estadio,400,414,698971484,10008,0 +17981,Darma,417,392,356642,9450,0 +17982,Wioska+barbarzy%C5%84ska,404,409,698971484,10008,0 +17983,Wioska+Czerwonacki+Magnat,423,389,699402816,10311,0 +17984,A0179,368,476,8841266,10252,0 +17985,021,628,528,699413040,10030,0 +17986,Konfederacja+%2B,457,374,848915730,9761,0 +17987,Pobozowisko,408,599,699513260,10821,0 +17988,Wioska+barbarzy%C5%84ska,372,455,3698627,10205,0 +17989,WE+ARE+READY%21,594,403,1553947,10019,0 +17990,Ulu-mulu,417,602,699697558,9300,0 +17991,s181eo28,382,459,393668,10611,0 +17992,Jaaa,595,589,698635863,10478,0 +17993,Asgard,539,372,1990750,10068,0 +17994,Wioska+barbarzy%C5%84ska,523,630,7756002,9888,0 +17995,083.+G%C3%B3ry+Dziel%C4%85ce,626,462,8337151,11911,0 +17996,Ulu-mulu,431,615,699697558,10869,0 +17997,Jaaa,617,443,698635863,10063,0 +17998,%230017,546,627,1536231,10495,0 +17999,B10,411,555,698971484,10008,0 +18000,Wioska,372,542,849084005,9383,0 +18001,Jesion,370,506,699265922,9825,0 +18002,D008,602,413,699761749,10495,0 +18003,024+aaaa+pozdro+600,630,462,699272633,9386,0 +18004,VN+Fanzell+Kruger,463,371,699883079,9599,0 +18005,Lecymy+DUR,442,379,6169408,3829,0 +18006,Piwna+03,612,434,699812007,9437,3 +18007,023.,632,504,849094609,9824,0 +18008,%5B024%5D,632,514,698305474,9809,0 +18009,69.+Wioska+69,386,570,849091769,3920,0 +18010,Nowa+19,618,567,698702991,9750,0 +18011,E+003,595,593,8078914,10093,0 +18012,yyyy,495,364,699883079,10375,1 +18013,068,439,618,849084985,9847,0 +18014,614%7C426+002Legatus,614,426,6822957,9841,0 +18015,Kozio,564,383,699072129,10495,0 +18016,Rze%C5%BAnia,383,432,1746216,8615,0 +18018,Wioska+barbarzy%C5%84ska,391,572,698526036,6415,0 +18019,Novigrad,478,370,699658023,9756,0 +18020,R008,390,575,8607734,10083,0 +18021,Wioska+barbarzy%C5%84ska,372,464,699523631,10476,0 +18022,Wioska+barbarzy%C5%84ska,578,391,699146580,6757,0 +18023,010+Opowiem+Wam+bajeczk%C4%99,377,555,699382126,10475,0 +18024,Wioska,373,543,849084005,10178,0 +18025,Pobozowisko,397,588,699513260,10966,0 +18026,Westcoast.036,394,423,848918380,10178,0 +18027,Kentin+ufam+Tobie,376,446,699783765,10000,0 +18028,%5B0076%5D,417,398,8630972,10495,0 +18029,SSJ+048,505,634,699054373,9653,0 +18030,Yyyy,499,368,699883079,10132,0 +18031,061+Pot%C4%99%C5%BCny+Dzban,381,564,699382126,10476,0 +18032,E+008,592,594,8078914,9939,0 +18033,Lipa,368,507,699265922,9752,0 +18035,40001,487,631,848915531,11130,0 +18036,005,501,625,699878511,10143,0 +18037,026,595,597,698999105,10311,0 +18038,C013,578,392,699761749,6885,0 +18039,616%7C424+006+P%C5%82yta+Red%C5%82owska,616,424,6822957,9882,0 +18040,Kentin+ufam+Tobie,385,440,699783765,10000,0 +18041,K34+-+%5B082%5D+Before+Land,458,375,699088769,6446,0 +18042,056,608,583,698786826,10226,0 +18043,Zach%C3%B3d+-+010,390,572,225023,8018,0 +18044,015,442,622,849084985,9724,0 +18045,K44+x036,404,404,698364331,9150,1 +18047,WE+ARE+READY%21,587,397,699759128,10444,0 +18048,ChceszPokojuSzykujSi%C4%99DoWojny,459,513,699333701,9687,0 +18049,R001,386,574,8607734,10495,0 +18050,Pobozowisko,398,584,699513260,10237,0 +18051,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,482,634,6948793,9647,0 +18052,018,557,378,1424656,9607,0 +18053,Wioska+So%C5%82tys+ca%C5%82ej+wsi,439,394,849027025,9899,0 +18054,Wioska+Pog%C3%B3rze+2,627,535,698562644,10311,0 +18055,Westcoast.042,383,436,848918380,10178,0 +18056,042+Takaoka,629,486,7092442,10495,0 +18057,R009,389,576,8607734,10019,0 +18058,Bagdad,500,365,8847546,9976,0 +18059,0062,459,368,699431255,9972,0 +18060,012,600,590,699316421,10273,0 +18062,Wioska+033,604,587,848971079,9761,0 +18063,009.+Velen,565,383,699799629,10559,0 +18064,Wioska+barbarzy%C5%84ska,392,573,699621601,5263,0 +18065,%230007,548,627,1536231,10495,0 +18066,Kentin+ufam+Tobie,382,444,699783765,10000,0 +18067,Wioska+barbarzy%C5%84ska,520,628,7756002,9885,0 +18068,019.+Massilia,625,458,849091866,9428,0 +18069,%5B019%5D,625,543,698305474,9809,0 +18071,%5B013%5D+Akeno+Misaki,481,369,699658023,10140,0 +18072,Westcoast.071,392,423,848918380,10178,0 +18074,SSJ+003,513,631,699364813,9737,0 +18075,007+KTW,626,451,848883237,10495,0 +18076,Lecymy+DUR,439,379,6169408,7738,0 +18077,Kentin+ufam+Tobie,376,447,699783765,10000,0 +18078,014+B,624,453,556154,9361,0 +18079,090,440,615,849084985,4152,0 +18080,082,479,367,698739350,10237,0 +18081,Wioska,376,542,849084005,10178,0 +18082,Lolita,368,528,849030226,7453,0 +18083,A+READY,588,397,699759128,10237,0 +18084,0090,444,407,699431255,9835,0 +18085,Wioska+7,634,481,848935020,6827,0 +18087,Pobozowisko,382,578,699513260,10971,0 +18088,022.,633,511,849094609,9814,0 +18090,012+B,621,447,556154,8643,0 +18092,Bagdad,495,368,8847546,9976,0 +18093,002.+Nottingham,448,378,698364331,10007,0 +18094,050,369,534,8908002,5523,0 +18095,A08+Wioska+barbarzy%C5%84ska,467,631,849037407,10220,0 +18096,046+Krak%C3%B3w,634,509,7092442,10495,0 +18097,Kentin+ufam+Tobie,383,442,699783765,10000,0 +18098,yyyy,497,361,699883079,10108,0 +18099,A0129,371,482,8841266,10252,0 +18100,Wioska+barbarzy%C5%84ska,435,387,849027025,9554,0 +18101,Wioska+barbarzy%C5%84ska,601,415,1990750,10068,0 +18102,0039+Andrzej+speaking,414,605,9060641,8266,0 +18103,031,368,521,6853693,5607,0 +18104,Wioska+FANBOY+Krolik14,597,522,698845189,10019,0 +18105,FB005,631,492,9314079,9816,0 +18106,Westcoast.063,387,429,848918380,10178,0 +18107,Konfederacja+%2B,456,376,848915730,9737,0 +18108,A0092,367,488,8841266,10252,0 +18109,NIERAJ02,453,622,8729672,5485,0 +18110,059,434,386,698364331,6230,0 +18111,Wioska+barbarzy%C5%84ska,372,465,699523631,10484,0 +18112,.achim.,537,391,6936607,11970,0 +18113,Pobozowisko,404,595,699513260,10954,0 +18114,A0093,367,486,8841266,10252,0 +18115,VN+Minamoto,468,373,699883079,9643,0 +18116,%230017,515,633,699728159,9761,0 +18117,-008-+K55+Storm,590,599,8096537,9747,0 +18118,%2B44+72+Lyon+Sans+Souci,424,471,698361257,9749,0 +18119,010,492,633,699336777,9825,0 +18120,KONFA+TO+MARKA%2C+NARKA,427,466,698152377,10311,0 +18121,E+009,592,598,8078914,9643,0 +18122,Pobozowisko,402,595,699513260,10955,0 +18123,055,370,529,6853693,4621,0 +18124,0006+-1-,426,609,9060641,10544,0 +18125,So%C5%82tys+Wsi+craig1,439,385,849027025,9689,0 +18126,Taran,551,376,699170684,9566,0 +18127,0012,440,379,699431255,10117,0 +18128,Taran,549,374,699170684,9440,0 +18129,Wioska+permo2x,476,374,699658023,9741,0 +18130,Piwna+13,614,435,699812007,8697,0 +18131,007+New+Episode+v1,399,413,7462660,10068,0 +18132,RTS+73,569,613,848995242,10495,0 +18133,Wioska+barbarzy%C5%84ska,420,390,699402816,9835,0 +18134,AMojeSzczytToTw%C3%B3jDno,515,370,828637,10484,0 +18135,Wioska+2,558,382,3600737,9013,0 +18136,%5B0060%5D,418,398,8630972,10495,0 +18137,020+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,622,439,9228039,9346,0 +18138,A+READY,591,401,1553947,10160,0 +18139,Plate+Partition+-+Interior,525,631,8199417,10654,0 +18140,608%7C420+Wioska+barbarzy%C5%84ska11,608,420,6822957,9457,0 +18141,RTS+4,572,611,848995242,10495,0 +18142,Ulu-mulu,421,609,699697558,9421,0 +18143,022,614,585,699099811,9835,0 +18144,Zach%C3%B3d+-+012,390,579,225023,8313,0 +18145,Taran,548,374,699170684,9452,0 +18146,034,622,443,849088515,10019,0 +18148,013.,563,615,873575,10008,0 +18149,K34+x007,445,382,698364331,8809,0 +18151,A09+Wioska+barbarzy%C5%84ska,467,632,849037407,10226,0 +18152,Wioska+barbarzy%C5%84ska,620,556,7047342,10476,0 +18153,%230015,517,635,699728159,9761,0 +18154,041+Murayama,633,469,7092442,10495,0 +18155,Kiwi+Kiwi,576,613,8627359,9151,0 +18157,A0139,368,490,8841266,10252,0 +18158,064,366,513,6853693,10495,0 +18159,BAC%C3%93WKA+%7C017%7C,631,502,7394371,12046,0 +18160,MojeSzczytToTw%C3%B3jDno,528,372,828637,10479,0 +18161,069,367,523,6853693,10495,0 +18162,Sony+911,568,611,1415009,10230,0 +18163,Grab,364,501,699265922,9825,0 +18164,Jehu_Kingdom_66_,626,455,8785314,9993,0 +18165,055+Kuzyn+skonfiskowa%C5%82+Stawik,380,565,699382126,10484,0 +18166,WE+ARE+READY,594,399,1553947,8205,0 +18167,Klon,367,505,699265922,9771,0 +18168,049,375,548,6853693,9064,0 +18169,SSJ+034,511,636,699054373,9761,0 +18170,0055,561,621,698659980,10252,0 +18171,037,365,521,6853693,5699,0 +18172,%23048+Upsss,446,625,699605333,10585,0 +18173,SSJ+062,520,633,699364813,9495,0 +18174,034...strazakkk,462,368,6920960,10495,0 +18175,Pobozowisko,395,581,699513260,8439,0 +18176,0427,562,616,698659980,9745,0 +18177,VN+Fuegoleon+Vermillion,460,370,699883079,9634,0 +18178,045+Gda%C5%84sk,633,506,7092442,10495,0 +18179,061,479,389,698739350,6998,0 +18180,W.10,584,606,873575,10362,0 +18181,South+K45,593,431,699146580,10042,0 +18182,021,565,384,1424656,10160,0 +18183,Wioska+barbarzy%C5%84ska,562,379,699072129,10218,0 +18184,009+Wioska,633,473,699671454,6975,0 +18185,Brat447,368,511,699262350,7470,0 +18186,Pobozowisko,387,575,699513260,9086,0 +18187,MojeSzczytToTw%C3%B3jDno,526,371,828637,10495,0 +18188,E+005,590,598,8078914,9767,0 +18189,Nowa+18,614,574,698702991,9827,0 +18190,038,365,519,6853693,6017,0 +18191,201,636,507,849088515,10019,0 +18192,%5B0085%5D,414,400,8630972,10495,0 +18193,27.+Wioska+27,375,549,849091769,10144,0 +18194,Wioska+barbarzy%C5%84ska,370,464,699523631,10478,0 +18195,0005,583,398,699485250,10211,1 +18196,%230046,549,627,1536231,10495,0 +18197,40005,488,633,848915531,10242,0 +18198,009,561,617,699567608,9709,0 +18199,Kentin+ufam+Tobie,377,447,699783765,10000,0 +18200,%2A4609%2A+Tutaj,636,495,7973893,10287,0 +18201,PoNocyPoluj+a+gryfin+zasta+nie+m,479,633,6948793,9899,0 +18202,1.+Baraki,619,566,8096537,8959,0 +18203,MojeSzczytToTw%C3%B3jDno,534,369,828637,10365,0 +18204,0050,631,530,6510480,9395,0 +18205,Westcoast.040,382,437,848918380,10178,0 +18206,Westcoast.043,381,434,848918380,10178,0 +18207,056+OZDR,465,628,699336777,9825,0 +18208,%5B0089%5D,413,399,8630972,10495,0 +18209,MojeSzczytToTw%C3%B3jDno,508,369,828637,10495,0 +18210,E+006,594,591,8078914,9724,0 +18211,A+READY,587,395,699759128,10237,0 +18212,063+OZDR,457,628,699336777,7972,0 +18213,018+KUZYNI,471,630,699336777,10122,8 +18214,066+OZDR,460,629,699336777,9462,0 +18215,0037+W%C4%99giel,416,605,9060641,10654,0 +18216,024,503,636,699878511,10155,0 +18217,%230047,547,625,1536231,10495,0 +18218,Pobozowisko,399,584,699513260,10960,7 +18219,Mako+Reactor+1+-+B4F,522,631,8199417,9358,0 +18220,Pobozowisko,410,603,699513260,10056,0 +18221,FKG+01-28,415,401,356642,9835,0 +18222,Pobozowisko,394,582,699513260,10954,0 +18223,061+OZDR,458,627,699336777,9825,6 +18224,z+022,555,597,699342219,10478,0 +18225,%5BB%5D_%5B203%5D+Dejv.oldplyr,430,382,699380607,9148,0 +18226,Whiskey+In+The+Jar,609,578,848926293,8813,0 +18227,062+Pot%C4%99%C5%BCny+Dzban,381,561,699382126,10484,0 +18228,0004,482,635,6180190,10636,0 +18229,Pobozowisko,387,574,699513260,10971,0 +18230,Wioska+Szyderczy+promil,572,615,8627359,9122,0 +18231,017.,629,529,6520732,5197,0 +18232,Mzm19,609,529,7142659,10362,0 +18233,019.,571,388,699799629,10495,0 +18234,100,553,395,849064752,10311,0 +18235,03.+Matelanka,605,424,1990750,10068,0 +18236,608%7C419+010+FRANKIA,608,419,6822957,9989,0 +18237,A+READY,589,403,1553947,10019,0 +18238,Zeta+Reticuli+S,407,402,699323302,10997,0 +18239,015,627,546,8428196,9910,0 +18240,MojeSzczytToTw%C3%B3jDno,526,368,828637,10475,0 +18241,014,623,546,8428196,9894,0 +18242,VN+Ragnar+Lodbrok,466,370,699883079,9660,0 +18243,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,536,629,7589468,8820,0 +18245,012,631,527,699413040,9860,0 +18246,Wioska+barbarzy%C5%84ska,394,415,7462660,9901,0 +18247,0114,437,379,699431255,7561,0 +18248,128,489,365,699761749,10495,0 +18249,FAKE+OR+OFF,439,402,698231772,9915,0 +18250,A04+Wioska+barbarzy%C5%84ska,466,631,849037407,10475,0 +18251,025+KTW,627,448,848883237,7300,0 +18252,001,428,385,849027025,11130,0 +18253,WE+ARE+READY%21,592,402,1553947,9435,0 +18254,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,496,633,1434753,10068,0 +18255,Part+XXVI,537,374,698350371,10495,0 +18256,008,549,404,849064752,10311,0 +18257,018,371,525,6853693,5767,0 +18258,002,559,408,7271812,10495,0 +18259,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,626,7589468,8819,0 +18260,yogi,539,607,2808172,10019,0 +18261,Jan+012+Pln+K,631,495,879782,9630,0 +18262,A0296,364,494,8841266,10160,0 +18263,SSJ+025,506,636,699054373,9761,0 +18264,SSJ+020,511,633,699054373,9761,5 +18265,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,434,614,1434753,9557,0 +18266,052,477,369,698739350,10237,0 +18267,061,365,516,6853693,9506,0 +18268,%5B0111%5D,417,393,8630972,10495,0 +18269,Kentin+ufam+Tobie,384,438,699783765,10000,0 +18270,008+KTW,627,450,848883237,10495,0 +18271,008+Hello+Moto,604,416,699491076,10001,0 +18272,039,376,541,6853693,6901,0 +18273,020,599,589,698999105,10311,0 +18274,Wioska+barbarzy%C5%84ska,621,554,7047342,10478,0 +18276,Brat447,365,500,699262350,10235,0 +18277,614%7C432+007+1+Strona,614,432,6822957,9969,0 +18278,Zulu,613,575,699737356,8088,0 +18279,%23017.506%7C495,625,446,556154,9735,0 +18280,006,501,633,699878511,10143,0 +18281,Westcoast.062,387,438,848918380,10178,0 +18282,Wioska+barbarzy%C5%84ska,630,536,7047342,10481,0 +18283,MojeSzczytToTw%C3%B3jDno,518,367,828637,10484,0 +18284,NOT%3F,416,534,9236866,10068,0 +18285,Corneo+s+Mansion,526,632,8199417,10495,0 +18286,Wioska+barbarzy%C5%84ska,633,532,7047342,10548,0 +18287,Pobozowisko,412,598,699513260,10957,0 +18288,Pobozowisko,400,590,699513260,10952,0 +18289,0017+MzM,622,561,698416970,9258,0 +18290,0063+k,452,431,3909522,10083,0 +18291,062,364,516,6853693,10495,0 +18292,026+Daevon,611,577,699272880,10393,0 +18293,Westcoast.004,388,434,848918380,10178,0 +18294,009.,628,539,6520732,9761,0 +18295,A0122,366,484,8841266,10252,0 +18296,Gattacka,610,418,699298370,9883,0 +18297,040.+Wioska,479,635,848928624,6615,0 +18298,Zeta+Reticuli+S,405,406,699323302,11321,0 +18299,019+-+Grenada,637,489,698342159,10019,0 +18301,Wioska+029,603,581,848971079,9761,0 +18302,Westcoast.077,386,433,848918380,10178,0 +18303,Kentin+ufam+Tobie,375,446,699783765,10000,0 +18304,Gattacka,610,419,699298370,9745,0 +18305,Jaaa,581,596,698635863,10495,0 +18306,067,366,518,6853693,7324,0 +18307,010,610,576,699099811,9835,0 +18308,A+READY,596,409,1553947,10160,0 +18309,Pobozowisko,402,597,699513260,10487,0 +18310,013+B,625,450,556154,6622,0 +18311,Zeta+Reticuli+S,402,408,699323302,11417,0 +18312,Westcoast.092,389,429,848918380,10178,0 +18313,053,476,369,698739350,10237,0 +18314,126,491,364,699761749,10495,0 +18315,054,480,367,698739350,10237,0 +18316,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,496,637,6948793,9874,0 +18317,sony911,579,607,1415009,10214,0 +18318,%23067.,626,453,556154,9272,0 +18319,Jaaa,586,600,698635863,10479,0 +18320,010,429,385,849027025,11130,0 +18321,024,370,521,6853693,5561,1 +18322,KIELBA+011,447,576,699342219,10273,0 +18323,Wioska+barbarzy%C5%84ska,371,464,699523631,10479,0 +18324,Wioska+barbarzy%C5%84ska,405,409,698971484,10008,0 +18325,Westcoast.008,387,436,848918380,10178,0 +18326,063+Pot%C4%99%C5%BCny+Dzban,378,560,699382126,10478,0 +18327,006.+Requiem,627,542,254937,9788,0 +18328,Wioska+barbarzy%C5%84ska,421,396,699402816,9835,0 +18329,Pobozowisko,407,595,699513260,10667,0 +18330,A0133,371,478,8841266,10252,0 +18331,Ulu-mulu,424,614,699697558,9697,0 +18332,.049.,494,363,698489071,10503,0 +18333,043,475,367,698739350,10237,0 +18334,614%7C430+Wioska+barbarzy%C5%84ska14,614,430,6822957,9299,0 +18335,MojeSzczytToTw%C3%B3jDno,536,367,828637,10495,0 +18336,Horyzont+zdarze%C5%84,558,624,7581876,9835,0 +18337,VN+Xerx+Lugner,468,367,699883079,9380,0 +18338,Kentin+ufam+Tobie,378,437,699783765,10000,0 +18339,023,436,487,699510259,9861,0 +18340,A0212,366,495,8841266,10252,0 +18341,Kentin+ufam+Tobie,377,443,699783765,10000,9 +18342,Knowhere,364,522,699723284,10452,0 +18343,C013+Venore,622,562,8096537,9740,0 +18344,siedze+na+tronie,572,610,848995242,10495,0 +18345,Ulu-mulu,428,614,699697558,8943,0 +18346,Lima,612,574,699737356,8783,0 +18347,Kentin+ufam+Tobie,379,442,699783765,10000,0 +18348,C007+Jotunheim,619,562,8096537,7803,0 +18349,013,600,589,699316421,9124,0 +18350,Kentin+ufam+Tobie,379,447,699783765,10000,0 +18351,z+049,582,605,699342219,10481,0 +18352,%2A0033+Baraki,618,439,8459255,9130,0 +18353,VN+Secre+Swallowtail,469,371,699883079,9615,0 +18354,B+008,596,410,6384450,10362,5 +18355,Pobozowisko,391,581,699513260,10971,0 +18356,Wioska+barbarzy%C5%84ska,422,393,699402816,9835,0 +18358,25+im+Minakowa,598,409,849037469,9809,0 +18359,12.+Kr%C3%B3l+Regis+Lucis+Caelum+CXII,530,606,8199417,10495,0 +18360,Westcoast.076,391,426,848918380,10178,0 +18361,Wioska+barbarzy%C5%84ska,629,534,7047342,10484,0 +18362,%23058.,622,441,556154,9735,0 +18363,010+Wioska+barbarzy%C5%84ska,533,372,699854484,10178,0 +18364,Pobozowisko,392,581,699513260,10957,0 +18365,A0094,365,486,8841266,10252,0 +18366,A+READY,601,412,1553947,10083,0 +18367,Piwna+23,621,435,699812007,9379,0 +18368,Zeta+Reticuli+S3,425,390,699323302,10373,0 +18369,54.+Wioska+54,376,551,849091769,10003,0 +18371,Westcoast.024,396,421,848918380,10178,0 +18372,006,447,626,849084985,10285,8 +18373,%230006,545,630,1536231,10495,0 +18374,010.+Lyria,566,385,699799629,10495,0 +18375,Wioska+barbarzy%C5%84ska,618,564,7047342,10487,0 +18376,Wioska,374,538,849084005,10178,0 +18377,0005+Kiko210,426,612,9060641,10544,0 +18378,MojeSzczytToTw%C3%B3jDno,531,366,828637,9814,0 +18379,Sony+911,578,611,1415009,10211,0 +18380,10.+Wioska+10,375,558,849091769,9802,0 +18381,%3D016%3D+Lewy+nie+trafia+Karnego,622,554,3781794,10238,0 +18382,Pobozowisko,406,598,699513260,10951,0 +18383,Wioska+barbarzy%C5%84ska,564,384,699072129,9266,0 +18385,Wioska+barbarzy%C5%84ska,375,460,3698627,9887,0 +18386,003,487,634,272173,10252,0 +18387,WE+ARE+READY%21,593,401,1553947,10019,0 +18389,SSJ+036,512,637,699054373,9761,0 +18390,064+Pot%C4%99%C5%BCny+Dzban,382,562,699382126,10479,0 +18391,Konfederacja+%2B,456,374,848915730,9734,0 +18392,13.+Wioska+13,373,554,849091769,10003,0 +18393,035,630,513,699413040,9860,0 +18394,A0095,365,492,8841266,10252,0 +18395,%230039+Bagna,494,549,9272054,10019,0 +18396,006,602,592,698786826,10211,0 +18398,Konfederacja+8,454,373,848915730,9692,0 +18399,Ja+sie+nie+bije+.,567,614,848995242,10495,0 +18401,Lecymy+DUR,437,383,6169408,8145,0 +18402,003%C5%81atki,456,627,698620694,9687,0 +18403,005+B,624,449,699718269,9711,0 +18404,0001,424,404,848913037,9993,0 +18405,Zeta+Reticuli+S3,423,388,699323302,10795,0 +18406,s181eo32,389,448,393668,9883,0 +18407,R010,390,576,8607734,9860,0 +18408,Wioska+3,631,482,848935020,8168,0 +18409,Gattacka,609,418,699298370,9960,0 +18410,K34+-+%5B092%5D+Before+Land,451,374,699088769,10016,0 +18411,%230020,545,626,1536231,10495,0 +18412,0008+MzM,624,557,698416970,9258,0 +18413,%5B017%5D,626,543,698305474,9809,0 +18414,Taran,551,372,699170684,9835,0 +18415,024.+Wioska+barbarzy%C5%84ska,572,387,699799629,10495,0 +18416,South+K35,559,378,699146580,9809,0 +18417,aaaa,476,635,6948793,9899,0 +18418,Ulu-mulu,430,611,699697558,11678,0 +18419,Kentin+ufam+Tobie,378,441,699783765,10000,0 +18420,F+001,638,507,8078914,10290,0 +18422,R002,385,574,8607734,10019,0 +18423,202,637,503,849088515,6234,0 +18424,011,429,386,849027025,11106,0 +18425,026.+Alexandria,624,555,849091866,9799,0 +18426,%230014,518,636,699728159,9761,0 +18427,012,443,624,849084985,10285,7 +18428,Wioska+Herosek751,565,619,848995242,10495,0 +18429,C014,578,394,699761749,7358,0 +18430,Nowa+15,616,570,698702991,9824,0 +18431,Kentin+ufam+Tobie,377,454,699783765,10000,0 +18433,SSJ+019,507,635,699054373,9761,0 +18434,033,425,388,7462660,10836,0 +18435,%5B015%5D,629,543,698305474,9809,0 +18436,0126,436,379,699431255,9750,0 +18437,BWioska+barbarzy%C5%84ska,622,550,7047342,10487,0 +18438,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,633,8201460,10237,0 +18439,019+Osaka,636,477,7092442,10495,4 +18440,609%7C422+009+FRANKIA,609,422,6822957,10083,0 +18441,084.+Wielkie+Gard%C5%82o,631,467,8337151,10845,0 +18442,008+B,625,449,699718269,9721,0 +18443,029+Seonon,620,562,699272880,10457,0 +18444,Jednak+wol%C4%99+gofry,487,637,699725436,10067,0 +18446,052,608,586,698786826,10247,0 +18447,018,632,484,849093875,2587,0 +18448,Kentin+ufam+Tobie,378,446,699783765,10000,0 +18449,A12+Wioska+barbarzy%C5%84ska,466,633,849037407,10226,0 +18451,Wioska+barbarzy%C5%84ska,624,556,7047342,10490,0 +18452,027,637,519,699413040,9860,0 +18453,VN+Nozel+Silva,467,369,699883079,9626,0 +18454,Wioska+barbarzy%C5%84ska,560,376,699072129,10223,0 +18455,Bagdad,500,362,8847546,9976,0 +18456,Wyngiel+we+wsi,566,382,699170684,5223,0 +18458,010,497,632,699878511,10140,0 +18459,057+OZDR,460,626,699336777,10104,0 +18460,A0294,365,498,8841266,10252,0 +18461,069,434,618,849084985,7128,0 +18462,VN+Julius+Novachrono,468,369,699883079,9667,0 +18463,004,447,624,849084985,10285,1 +18464,0023,504,502,698599365,8311,0 +18465,085.,635,523,849094609,4655,0 +18466,Wioska,378,550,849084005,10178,9 +18467,035,632,482,849006412,6351,0 +18468,046,369,541,8908002,4601,0 +18469,034,364,519,6853693,5711,0 +18470,05+im+Jepiszewa,593,408,849037469,7468,0 +18471,007,445,619,849084985,10243,0 +18472,Wioska+barbarzy%C5%84ska,371,466,699523631,10478,0 +18473,D001,602,409,699761749,10495,9 +18475,-055-,384,568,699097885,3843,0 +18476,W.01,585,608,873575,10178,0 +18477,Kentin+ufam+Tobie,374,449,699783765,10000,0 +18478,A0239,368,463,8841266,10252,0 +18479,Sony+911,572,614,1415009,10208,0 +18480,A0110,365,495,8841266,10252,0 +18481,059+OZDR,468,629,699336777,9902,0 +18482,009+%7C+PALESTINA,632,466,9228039,9544,0 +18483,0004+Wioska+barbarzy%C5%84ska,424,615,9060641,10544,0 +18484,A+READY,592,400,699759128,10252,7 +18485,082.,633,520,849094609,4187,0 +18486,Kentin+ufam+Tobie,371,454,699783765,10000,5 +18487,VN+Constantine,476,375,699883079,10043,0 +18488,F+002,635,503,8078914,10031,0 +18489,011,476,594,699364813,10160,0 +18490,Jan+020+%288%29+K,633,474,879782,9488,0 +18491,s181eo24,397,453,393668,9886,0 +18492,018+Jak+ja+nie+pije,626,460,699272633,10495,0 +18493,005,555,404,7271812,10495,0 +18494,KONFA+TO+MARKA%2C+NARKA,405,462,698152377,10311,0 +18495,070+Pot%C4%99%C5%BCny+Dzban,378,563,699382126,10487,0 +18496,001+Tunios%C5%82aw,390,561,699382126,10481,0 +18497,019,628,529,699413040,9860,0 +18498,0020+MzM,624,554,698416970,9258,0 +18499,K34+-+%5B091%5D+Before+Land,451,375,699088769,9924,0 +18500,R%C4%99cznik+do+zmiany,384,487,699697558,10495,0 +18501,Jednak+wol%C4%99+gofry,497,637,699725436,10311,0 +18502,063,439,622,849084985,8256,0 +18503,%230010,549,625,1536231,10495,0 +18505,002,385,426,848921536,9761,0 +18507,Wioska+barbarzy%C5%84ska,632,536,7047342,10481,0 +18508,Pobozowisko,406,593,699513260,10971,0 +18509,047g,371,532,698641566,9809,0 +18510,%C5%9Amieszkiii,477,585,3454753,10495,0 +18511,048,371,535,698641566,9809,0 +18512,B004,603,413,699761749,10495,0 +18513,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,490,636,6180190,10068,0 +18514,XXXV,542,371,698350371,10495,0 +18515,%230021,545,625,1536231,10495,0 +18516,Zeta+Reticuli+S2,397,409,699323302,11078,0 +18517,Kentin+ufam+Tobie,378,436,699783765,10000,0 +18518,027+Last+Templar,635,498,9238175,10301,0 +18519,B002,605,410,699761749,10495,0 +18520,D007,603,412,699761749,10495,0 +18521,R013,384,573,8607734,6478,0 +18522,Szlachcic+011,626,537,698562644,10311,0 +18523,091.,636,508,849094609,3613,0 +18524,Kentin+ufam+Tobie,380,446,699783765,10000,0 +18525,-050-,380,567,9167250,5977,0 +18526,Kiedy%C5%9B+Wielki+Wojownik,392,458,8632462,9756,0 +18527,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki2,522,636,849090130,10068,0 +18528,Deveste+ufam+Tobie,433,618,699783765,10362,7 +18529,Taran,549,371,699170684,9379,0 +18530,Jaaa,589,596,698635863,10475,0 +18531,R011,388,577,8607734,7073,0 +18532,Westcoast.080,398,408,848918380,10178,0 +18533,091.+Morze+Puste,627,465,8337151,11678,0 +18534,K44+x037,402,403,698364331,5889,0 +18535,Lut%C3%B3wko,412,579,698769107,6596,0 +18537,z+043,580,606,699342219,10481,0 +18539,%230024,517,634,699728159,4273,0 +18540,Taran,546,372,699170684,5586,0 +18542,075,591,402,849064752,10311,0 +18543,001,446,623,849084985,10285,0 +18544,Wioska+8,635,480,848935020,5937,0 +18545,009,373,539,6853693,10116,9 +18547,065+Pot%C4%99%C5%BCny+Dzban,384,564,699382126,10481,0 +18548,009,387,425,848921536,3469,0 +18549,016.,564,621,699695167,9823,0 +18550,Ave+Why%21,443,620,8729672,9606,1 +18553,A0217,364,497,8841266,10252,0 +18554,Kentin+ufam+Tobie,387,449,699783765,10000,0 +18555,Zeta+Reticuli+S2,408,404,699323302,11417,0 +18556,Pobozowisko,407,594,699513260,9857,0 +18559,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,626,7589468,8820,0 +18561,017.,574,388,699799629,10495,0 +18562,047,502,387,698739350,9902,0 +18563,A24+Wioska+barbarzy%C5%84ska,457,626,849037407,10220,0 +18564,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,488,634,6948793,9239,0 +18565,Ave+Why%21,450,625,8729672,9808,0 +18566,Wioska+2,635,482,848935020,7733,0 +18567,056,364,511,6853693,10495,0 +18568,041,608,584,698786826,10223,0 +18569,Wioska+barbarzy%C5%84ska,372,459,699523631,10438,0 +18570,011,600,588,699316421,9312,0 +18572,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,631,8201460,10237,0 +18573,yyyy,497,364,699883079,10068,2 +18574,Wioska+lee-1,434,616,699697558,11742,0 +18575,085+KUZYNI+mehehehe,478,632,699336777,9899,7 +18576,Konfederacja,454,370,848915730,8835,0 +18577,A13+Wioska+barbarzy%C5%84ska,462,631,849037407,10416,0 +18579,032,367,522,6853693,5700,0 +18580,Taran,554,376,699170684,9430,0 +18581,032,636,520,699413040,9860,0 +18582,Ulu-mulu,423,613,699697558,11449,0 +18583,017+Ze+mn%C4%85+wymi%C4%99k%C5%82e%C5%9B%3F,627,462,699272633,10481,0 +18584,xx+GW00,394,507,698290577,9336,0 +18585,Barba,578,614,8627359,9209,0 +18586,006,521,634,699336777,9825,0 +18587,Pobozowisko,402,598,699513260,10955,0 +18588,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,495,637,6948793,10044,5 +18589,Kentin+ufam+Tobie,373,455,699783765,10000,0 +18590,aaaa,478,633,6948793,9899,0 +18591,A26+Wioska+barbarzy%C5%84ska,470,633,849037407,10226,0 +18592,033+%7C+PALESTINA,631,465,9228039,9523,0 +18593,Dab,366,497,699265922,9761,0 +18594,Wioska+barbarzy%C5%84ska,372,461,699523631,10345,0 +18595,HORUS%21,525,630,7756002,9885,0 +18596,172,587,394,849064752,10311,0 +18597,Wioska+barbarzy%C5%84ska,617,562,7047342,10478,0 +18598,003+KTW,624,454,848883237,10495,0 +18599,0140,430,387,699431255,10362,0 +18600,aaaa,481,636,6948793,10311,0 +18601,002,501,634,699878511,10144,0 +18602,009,447,621,849084985,10295,0 +18603,614%7C423+005Legatusxi,614,423,6822957,9899,0 +18604,VN+Mereoleona+Vermillion,466,371,699883079,9610,0 +18605,Sparta_24,494,594,2585846,9638,0 +18606,124,493,368,699761749,10444,0 +18607,017,633,499,849093875,3262,0 +18608,Bronowice,378,574,8607734,9976,0 +18609,Wioska+Paradoxus,561,380,3600737,9549,0 +18610,033,443,626,849084985,10068,0 +18611,Jaaa,595,598,698635863,10479,8 +18612,000,450,619,849084985,10019,0 +18613,020,633,514,849091105,10019,0 +18614,A005,523,366,699208929,10354,0 +18615,Jan+Nie+m%C3%B3wili+P%C5%82n+K,634,495,879782,9944,0 +18616,SSJ+028,516,632,699054373,9761,0 +18617,0111,434,379,699431255,9746,0 +18619,079.+Bezmiar+P%C3%B3%C5%82nocy,630,473,8337151,11678,0 +18620,%5B0020%5D,441,398,8630972,10495,0 +18622,055,629,549,849095227,9740,0 +18623,VN+Lohar,454,380,699883079,10268,0 +18624,044,368,539,8908002,7984,0 +18625,049,444,614,849084985,9835,0 +18626,005,625,557,849095227,9757,8 +18627,055,474,369,698739350,10237,0 +18628,Nowa+17,618,565,698702991,9775,0 +18629,025+na+%C5%82azarskim+rejonie,630,460,699272633,8478,0 +18630,039+Brasil,633,510,8323711,10495,0 +18631,064,440,620,849084985,10019,0 +18632,047,371,542,8908002,6896,0 +18633,Nowa+20,618,568,698702991,9824,0 +18634,Bagdad,427,384,8847546,11130,0 +18635,Podzi%C4%99kowa%C5%82+1,457,377,699796330,10290,0 +18636,Wioska+barbarzy%C5%84ska,389,579,699621601,6551,0 +18637,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,484,637,6180190,9135,0 +18638,127,491,365,699761749,10495,0 +18639,Odrodzenie,380,432,1746216,8632,0 +18640,Wioska+barbarzy%C5%84ska,623,561,7047342,10479,0 +18641,015,374,540,6853693,5967,0 +18642,014.+Ja+tu+tylko+zbieram+PP,511,366,699368887,9994,0 +18643,%2A0015+Baraki,618,430,8459255,10192,0 +18644,%230019,517,631,699728159,9761,0 +18645,060,445,626,849084985,9899,0 +18646,Wioska+barbarzy%C5%84ska,623,551,7047342,10481,0 +18647,%2A0021+Baraki,621,433,8459255,10074,0 +18648,z+047,587,603,699342219,10495,1 +18649,003+%7C+PALESTINA,631,459,9228039,9544,0 +18650,0061,561,623,698659980,10160,0 +18651,A20+Wioska+barbarzy%C5%84ska,458,629,849037407,10218,0 +18652,%230028,553,628,1536231,10495,0 +18653,004+VC+danield83+%40,397,414,7462660,10068,0 +18654,016+KTW,623,450,848883237,10495,0 +18655,A0150,362,505,8841266,10252,9 +18656,008,626,552,849095227,9761,0 +18657,056,469,366,698739350,10237,0 +18658,.%3A036%3A.+%C5%81OBUZIK,559,375,848934935,10495,0 +18659,K34+-+%5B097%5D+Before+Land,450,373,699088769,9924,0 +18660,Ulu-mulu,430,613,699697558,9608,9 +18661,004+%7C+PALESTINA,628,453,9228039,9346,0 +18662,003,387,578,699621601,9585,0 +18664,%7E%7E008%7E%7E,599,596,7829201,9819,0 +18665,Jehu_Kingdom_37_,625,442,8785314,9993,0 +18666,Gattacka,606,415,699298370,9607,0 +18667,007,390,422,848921536,5336,0 +18668,007,434,392,699783765,11130,0 +18669,Pobozowisko,412,603,699513260,9046,0 +18670,RTS+2+.,577,613,848995242,10495,0 +18671,%23008.507%7C496,626,447,556154,9735,0 +18672,002+VC+NIC+TU+NIE+MA,394,411,3108144,9204,0 +18673,A0111,368,485,8841266,10252,0 +18674,G002,576,610,8627359,9145,0 +18675,%230023,547,630,1536231,10495,0 +18676,MojeSzczytToTw%C3%B3jDno,530,365,828637,10068,0 +18677,B003,605,413,699761749,8078,0 +18678,067,493,365,698739350,6509,0 +18679,%5B0053%5D,413,400,8630972,10495,0 +18680,Pobozowisko,410,600,699513260,10952,0 +18681,c+%C5%9Btyliwnia,417,389,3909522,8466,0 +18682,Pobozowisko,390,582,699513260,10955,6 +18683,Wioska+barbarzy%C5%84ska,488,507,848967710,10252,0 +18684,D002,604,408,699761749,10495,0 +18685,A+READY,585,395,699759128,10237,0 +18686,057+Pot%C4%99%C5%BCny+Dzban,376,557,699382126,10479,0 +18687,058+OZDR,461,626,699336777,9462,0 +18688,Westcoast.066,386,430,848918380,10178,0 +18689,021+KTW,629,454,848883237,10495,0 +18690,%5B013%5D,636,524,698305474,9809,0 +18691,B.034,639,503,9188016,9798,0 +18692,10+Ebe+ebe,601,526,8013349,9751,0 +18693,Ave+Why%21,452,623,8729672,9842,0 +18694,kathare,553,627,873575,10362,0 +18695,0013,591,396,699485250,10211,0 +18696,Zeta+Reticuli+S,408,403,699323302,10728,0 +18697,DOM+1,560,399,849064614,9835,0 +18698,A010,472,633,699383279,9808,0 +18699,Westcoast.086,385,432,848918380,10178,0 +18700,115,578,386,849064752,10311,0 +18701,B031,634,507,9314079,9835,0 +18702,FB002,633,492,9314079,9824,0 +18703,B+009,597,403,6384450,10362,3 +18704,Deveste+ufam+Tobie,432,618,699783765,9873,0 +18705,A0299,363,498,8841266,10252,0 +18706,021+Roma+Victrix,640,494,699878150,5457,0 +18708,054+Kuzyn+skonfiskowa%C5%82+Meszno,381,563,699382126,10495,0 +18709,065,592,403,849064752,10311,0 +18710,066,570,381,849064752,10311,0 +18711,R-7,556,374,3600737,9013,0 +18712,%230092+Zaluty%C5%84,475,552,9272054,8855,0 +18713,Pobozowisko,400,591,699513260,9418,0 +18714,Westcoast.056,392,420,848918380,10178,0 +18715,005%2C,488,636,8369778,6161,0 +18716,Wioska+Pog%C3%B3rze+3,631,537,698562644,10311,0 +18717,A-010,409,397,8419570,10168,0 +18718,MojeSzczytToTw%C3%B3jDno,521,367,828637,10479,0 +18719,30000,494,540,848915531,11242,0 +18720,Jednak+wol%C4%99+gofry,488,638,272173,6903,0 +18722,z+055,586,604,699342219,10217,0 +18723,007,601,592,698786826,10211,0 +18724,019.,567,615,873575,9913,0 +18725,0013,435,383,699431255,9987,0 +18726,002,446,624,849084985,10285,0 +18727,mklo,498,367,828637,10338,0 +18728,aaaa,475,635,6948793,9899,0 +18729,031,632,543,6160655,10229,0 +18730,A14+Wioska+barbarzy%C5%84ska,461,629,849037407,10237,0 +18731,37+im+Or%C5%82owa,597,406,849037469,8416,0 +18732,%210010,623,438,477415,12154,0 +18733,019,609,585,699099811,9835,0 +18734,Pobozowisko,405,599,699513260,10951,0 +18735,029+Lenka,633,500,2135129,9809,0 +18736,psycha+sitting,417,610,699736927,10146,0 +18737,Wioska+barbarzy%C5%84ska,371,465,699523631,10476,0 +18738,Wioska+barbarzy%C5%84ska,526,480,699355601,4166,0 +18739,%23031.515%7C502,634,453,556154,9735,0 +18740,613%7C423+Wioska+barbarzy%C5%84ska03,613,423,6822957,9644,0 +18741,610%7C426+Wioska+barbarzy%C5%84ska16,610,426,6822957,9392,0 +18742,W.09,584,607,873575,10232,0 +18743,Bulle,578,609,8627359,9110,0 +18744,Kentin+ufam+Tobie,373,450,699783765,10000,0 +18745,0000005%25,425,594,849089881,10160,0 +18746,016+Winterfell,617,564,699272880,10329,0 +18747,Ave+Why%21,450,626,8729672,9814,0 +18748,.Krakers.+002,365,481,9163140,3919,0 +18749,005,420,388,699402816,10311,0 +18750,A15+Wioska+barbarzy%C5%84ska,461,631,849037407,10226,0 +18751,Kentin+ufam+Tobie,372,456,699783765,10019,0 +18752,Szlachcic,492,479,699098531,9681,0 +18753,029,636,515,699413040,9860,0 +18754,005,486,636,8369778,9372,0 +18755,67.+Wioska+67,379,568,849091769,7150,0 +18756,Westcoast.044,380,435,848918380,10178,0 +18757,0011,571,384,699485250,10211,0 +18758,614%7C424+004+Wioska+Kapitana+%3A%29,614,424,6822957,9878,0 +18759,Wioska+barbarzy%C5%84ska,562,382,699072129,10220,0 +18760,Kentin+ufam+Tobie,378,445,699783765,10000,0 +18761,A+READY,589,398,699759128,10237,0 +18762,Pobozowisko,399,589,699513260,9704,0 +18763,%2A0017+Baraki,612,429,8459255,9913,0 +18764,c+Komarno+001,411,396,3909522,7501,0 +18765,E+004,595,594,8078914,9880,0 +18767,%5B0046%5D,412,400,8630972,10495,0 +18768,FKG+01-04,418,403,356642,9835,0 +18769,021,628,555,849095227,9796,0 +18770,Twierdza,371,536,849030226,6414,0 +18771,%230014,547,629,1536231,10495,0 +18772,VN+William+Vangeance,467,368,699883079,9563,0 +18773,001,455,599,699364813,10311,0 +18774,.006.Jababing,560,375,699072129,10223,0 +18775,006+KTW,621,451,848883237,10495,0 +18776,001+KTW,625,448,848883237,10495,0 +18777,Monetio,453,370,699191455,10495,0 +18779,A0216,366,477,8841266,10252,0 +18780,Village,500,598,849094067,12154,0 +18781,Pobozowisko,396,583,699513260,10971,0 +18782,118,490,368,699761749,10495,0 +18783,080,436,622,849084985,9060,0 +18784,Deveste+ufam+Tobie,435,622,699783765,9290,0 +18785,A32,467,635,849037407,11550,0 +18786,MojeSzczytToTw%C3%B3jDno,528,370,828637,10495,0 +18787,025,474,630,699336777,9825,0 +18788,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,483,637,6180190,9510,0 +18789,003,387,423,848921536,9761,0 +18790,002+KTW,627,451,848883237,10495,0 +18791,Ulu-mulu,422,610,699697558,11678,0 +18792,nie+zesraj+si%C4%99,635,478,8812550,2517,0 +18793,Wioska+barbarzy%C5%84ska,529,634,7756002,9918,0 +18794,%5B0077%5D.....,415,396,8630972,10495,0 +18795,036,573,385,849064752,10311,0 +18796,013,447,628,849084985,10297,0 +18798,Wioska+6,383,425,699343887,3086,0 +18800,Lecymy+DUR,443,374,6169408,5818,0 +18801,043+Pozna%C5%84,627,503,7092442,10495,0 +18802,Osada+karczownik%C3%B3w+.,570,615,848995242,10495,1 +18803,%23006.505%7C491,624,442,556154,9735,0 +18806,071,365,524,6853693,7920,0 +18807,034,425,387,7462660,10560,0 +18808,027.,639,492,849094609,9819,0 +18809,A0172,369,470,8841266,10252,4 +18810,-+004+-,551,601,849018239,10000,0 +18811,0132,447,378,699431255,10083,0 +18812,024,480,373,849010255,7504,0 +18813,016,441,621,849084985,9965,0 +18814,SSJ+069,506,633,699364813,9339,0 +18815,057,470,368,698739350,10237,0 +18816,011+-+Mroczna+Osada,625,440,849035905,10616,0 +18817,%5B0001%5D,558,632,699567608,9904,0 +18818,Zeta+Reticuli+S2,396,409,699323302,10997,0 +18819,001+B,622,445,556154,9717,2 +18820,Wioska+barbarzy%C5%84ska,367,461,699523631,10728,0 +18821,Zagroda+30+Reszt%C4%99+Burzymy,453,371,699191464,9002,1 +18822,Deveste+ufam+Tobie,430,617,699783765,7703,0 +18823,033,366,521,6853693,6214,0 +18824,095,444,622,849084985,9170,7 +18825,Za+rzeka,363,484,699265922,10252,0 +18826,kathare,557,626,873575,10123,0 +18828,121,493,362,699761749,9583,0 +18829,014+%7C+PALESTINA,632,461,9228039,9544,0 +18830,Pobozowisko,401,592,699513260,7990,0 +18831,Jan+021-12+P%C5%82n+K,635,492,879782,9534,0 +18832,002+%7C+PALESTINA,629,458,9228039,9529,0 +18833,K34+-+%5B044%5D+Before+Land,459,380,699088769,9783,0 +18834,048,607,586,698786826,9694,0 +18835,A06+Wioska+barbarzy%C5%84ska,465,632,849037407,10185,0 +18836,066+Pot%C4%99%C5%BCny+Dzban,383,564,699382126,10487,0 +18837,Jan+08_%233+K,634,474,879782,9494,0 +18838,Taran,544,369,699170684,4851,0 +18839,0036+Wioska+Jastrz%C4%85b+z+NBP,417,608,9060641,10654,0 +18840,SSJ+026,502,637,699054373,9761,0 +18841,07.+Wioska+7,373,555,849091769,10019,0 +18842,Wioska+barbarzy%C5%84ska,507,363,699368887,9994,0 +18843,0015,566,380,699485250,10168,0 +18844,609%7C420+008+FRANKIA,609,420,6822957,9989,0 +18845,Wioska+barbarzy%C5%84ska,510,364,699368887,9994,0 +18846,Boss+04,370,465,699523631,10474,0 +18847,082,366,525,6853693,5309,0 +18848,003.,635,486,849094609,9345,0 +18849,14.+Wioska+14,373,553,849091769,10003,0 +18850,024.,634,504,849094609,9818,0 +18851,R005,386,576,8607734,5736,0 +18852,002.,638,479,849094609,10011,0 +18853,011,448,622,849084985,10211,0 +18854,Pobozowisko,400,594,699513260,10952,5 +18855,0142,429,383,699431255,6572,0 +18856,049,608,585,698786826,10090,0 +18857,%230039,554,626,1536231,10495,0 +18858,%2A020%2A,635,496,698670524,9165,0 +18859,Ulu-mulu,427,612,699697558,8177,0 +18860,Jednak+wol%C4%99+gofry,496,638,699736927,10311,0 +18861,A0073,365,493,8841266,10252,0 +18862,A0289,366,496,8841266,10252,0 +18863,MojeSzczytToTw%C3%B3jDno,497,365,828637,10362,0 +18864,MojeSzczytToTw%C3%B3jDno,521,371,828637,10495,0 +18865,Sony+911,575,610,1415009,10206,0 +18866,-+334+-+RR,587,602,849018239,9629,0 +18867,Wioska+barbarzy%C5%84ska+1,371,461,699523631,10487,0 +18868,VN+Rill+Boismortier,467,366,699883079,9637,0 +18869,052,369,545,8908002,9993,0 +18870,Ulu-mulu,428,615,699697558,8244,7 +18871,Pobozowisko,396,582,699513260,10971,0 +18872,Wioska+barbarzy%C5%84ska,632,533,7047342,10620,0 +18873,VN+Gaius+Marius,440,381,699883079,10055,9 +18874,127.,509,483,8788366,10728,0 +18875,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,489,637,6180190,9530,0 +18877,Taran,553,372,699170684,9379,0 +18878,034,631,543,699351301,10160,0 +18879,Wioska+barbarzy%C5%84ska,561,379,699072129,10221,0 +18880,020+KTW,630,454,848883237,10495,0 +18881,Westcoast.050,380,436,848918380,10178,0 +18882,0341,497,623,698659980,10452,0 +18883,0045,561,622,698659980,10019,0 +18884,Wioska+barbarzy%C5%84ska,561,378,699072129,10217,0 +18885,073+KUZYNI+mehehehe,480,633,699336777,10247,0 +18886,0065,443,377,699431255,10311,0 +18887,014,613,580,699099811,9335,3 +18888,-023-,396,587,699097885,9189,0 +18889,034,632,513,699413040,9860,0 +18890,B009,600,409,699761749,10495,0 +18891,A0180,367,475,8841266,10252,0 +18892,%5B018%5D,626,542,698305474,9809,0 +18893,Wioska+barbarzy%C5%84ska,562,381,699072129,10218,0 +18894,Lecymy+DUR,437,382,6169408,9177,0 +18895,008,600,594,698786826,10211,0 +18896,Gattacka,609,417,699298370,9742,0 +18898,A0112,368,483,8841266,10252,0 +18899,Wioska+5,383,430,699343887,3086,0 +18900,VN+Langris+Vaude,461,373,699883079,9667,0 +18901,089.+Rhenus,618,431,849091866,8384,0 +18902,%5B0021%5D,451,397,8630972,10495,0 +18903,Jehu_Kingdom_44,631,478,8785314,8312,0 +18904,021,504,636,699878511,10139,0 +18905,039+%7C+PALESTINA,635,465,9228039,6047,0 +18906,054,362,513,6853693,10495,0 +18907,Pobozowisko,391,580,699513260,10971,0 +18908,067+Pot%C4%99%C5%BCny+Dzban,380,563,699382126,10484,0 +18909,0168,551,626,698659980,10083,0 +18910,-011-,392,590,699097885,9802,0 +18911,Jaaa,587,606,698635863,10027,0 +18913,W.05,583,609,873575,10362,0 +18914,Pobozowisko,383,575,699513260,8873,0 +18915,66.+Wioska+66,385,569,849091769,5790,0 +18916,Jan+02_v+K,639,467,879782,9730,0 +18917,Twierdza+6,634,503,848935020,10636,0 +18918,Taran,553,371,699170684,9379,0 +18919,Pomoc,384,428,1746216,5427,0 +18920,na+blisko+.,568,616,848995242,10362,0 +18921,Taran,551,375,699170684,9566,0 +18922,Darma,418,392,356642,9835,0 +18923,058,471,366,698739350,10237,0 +18924,Kentin+ufam+Tobie,369,457,699783765,10000,0 +18925,c+imperium,417,388,3909522,9824,0 +18926,Wioska+2,383,429,699343887,3251,0 +18927,Nowa+08,621,566,698702991,9827,0 +18928,A16+Wioska+barbarzy%C5%84ska,460,630,849037407,10226,0 +18929,%3D042%3D+Wioska+barbarzy%C5%84ska,622,553,3781794,7910,0 +18930,Wioska+barbarzy%C5%84ska,619,560,7047342,10620,0 +18931,002,485,634,272173,10311,0 +18932,Pobozowisko,393,590,699513260,10786,0 +18933,Gattacka,608,413,699298370,9744,0 +18934,016,583,412,849063849,10636,0 +18935,P032+Adachi,636,501,8096537,9744,0 +18936,051,370,545,8908002,8579,0 +18937,Taran,545,371,699170684,4523,0 +18938,004,416,395,699402816,10311,0 +18939,Kentin+ufam+Tobie,375,442,699783765,10000,0 +18940,Konfederacja+%2B,454,375,848915730,10001,4 +18941,147+Oj+Mareczku+co%C5%9B+za+du%C5%BCo+cyfr,380,568,699382126,8551,0 +18942,152+MIKOX+042,590,416,699491076,9662,0 +18943,029+Wwwwwweeeeekkkkkkkk,636,502,9238175,10281,0 +18944,San+Piero+a+Sieve,369,539,699494480,9153,0 +18945,123,574,385,849064752,10311,0 +18946,059,474,365,698739350,10237,0 +18947,%3D018%3D+Polska+0%3A0+Meksyk,620,559,3781794,8212,0 +18948,Lecymy+DUR,441,378,6169408,10495,0 +18949,074,367,518,6853693,5050,0 +18950,Wioska,370,548,849084005,10178,0 +18951,52.+Wioska+52,376,552,849091769,10000,0 +18952,Pobozowisko,412,605,699513260,9316,0 +18953,0007+Wioska+barbarzy%C5%84ska,425,615,9060641,10544,0 +18955,Brat447,367,501,699262350,10478,0 +18956,A0074,367,484,8841266,10252,9 +18957,021,630,550,8428196,9874,0 +18958,Wioska+barbarzy%C5%84ska,610,408,7915966,2374,0 +18959,030,555,372,1424656,10636,0 +18960,151+Ale+mnie+g%C5%82%C3%B3wka+boli,377,570,699382126,8923,0 +18961,Pobozowisko,411,600,699513260,7490,0 +18962,Taran,558,377,699170684,9379,2 +18963,152+Ale+mnie+g%C5%82%C3%B3wka+boli,379,566,699382126,10303,0 +18964,c+rze%C5%BAnia,416,390,3909522,10431,0 +18965,Ave+Why%21,451,630,8729672,9861,0 +18966,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,540,627,7589468,8822,0 +18967,ave+why%21,454,622,698143931,10311,0 +18968,Nowa+14,616,567,698702991,9824,0 +18969,006+Wioska+kolekjarek,566,378,699509239,6632,0 +18970,Zeta+Reticuli+S,407,400,699323302,11188,0 +18971,MojeSzczytToTw%C3%B3jDno,520,366,828637,10479,0 +18972,0016.+C+-,623,506,7125212,4321,0 +18973,028,635,517,699413040,10019,0 +18974,Pobozowisko,406,602,699513260,10954,0 +18975,045,605,585,698786826,10237,0 +18976,Konfederacja+8,453,372,848915730,9690,0 +18977,Master+Carry1,509,367,699368887,9466,0 +18978,Taran,556,376,699170684,9761,0 +18979,Kentin+ufam+Tobie,385,441,699783765,10000,0 +18980,115,488,361,699761749,10495,0 +18981,A25+Wioska+barbarzy%C5%84ska,459,629,849037407,10220,0 +18982,nic,573,618,699828685,9781,0 +18983,%230016,546,628,1536231,10495,0 +18984,HORUS%2B,525,636,7756002,9981,0 +18985,614%7C427+000+LegatusXI,614,427,6822957,10014,0 +18986,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,636,6948793,10044,0 +18987,072,369,538,698641566,9809,0 +18988,075+Lisie+g%C3%B3ry,381,568,699382126,10481,0 +18989,%7E%7E035%7E%7E,594,603,7829201,9742,0 +18990,Taran,554,374,699170684,9492,0 +18991,%230013,548,628,1536231,10495,0 +18992,.Krakers.+007,365,474,9163140,1672,0 +18993,055,606,584,698786826,10221,1 +18994,041-+Mroczna+Osada,622,437,849035905,12154,0 +18995,Deveste+ufam+Tobie,430,616,699783765,10083,0 +18996,002,387,424,9239515,8049,0 +18997,004,617,569,849095227,9761,0 +18998,052+Kuzyn+skonfiskowa%C5%82+Bull+Run,382,573,699382126,10495,0 +19000,SSJ+011,510,636,699054373,9761,0 +19001,005+TASUKA+MARAKA,538,524,7581876,9811,0 +19002,016,629,546,8428196,9814,0 +19003,KIELBA+048,461,583,699342219,10495,0 +19004,Konfederacja,448,373,848915730,8635,0 +19005,Belzebub,384,427,1746216,8584,0 +19006,Gattacka,611,419,699298370,9719,0 +19007,-052-,383,567,9167250,5737,0 +19008,Wioska,373,545,849084005,10178,0 +19009,%7E%7E043%7E%7E,591,604,7829201,9488,0 +19010,FA002,640,496,9314079,9835,0 +19011,018+-+A+Coruna,636,490,698342159,10019,0 +19012,004+KTW,629,448,848883237,10495,0 +19013,119,483,364,699761749,10495,0 +19014,sony911,580,613,1415009,10223,0 +19015,Og%C3%B3rkowy+baron,402,406,356642,9835,0 +19016,0038+Zero+zaskoczenia,418,606,9060641,10787,0 +19017,MojeSzczytToTw%C3%B3jDno,523,365,828637,10481,0 +19018,Wioska+Vexijio,381,427,8967440,7704,0 +19019,%23064.,628,452,556154,4604,0 +19020,060,470,369,698739350,10237,0 +19021,A+READY,590,396,699759128,10237,0 +19022,026+nie+jest+kolorowo,637,472,699272633,9738,0 +19023,%C5%BBuraw,624,571,849095778,9889,0 +19024,0002,481,637,6180190,10432,4 +19025,034+Phoenix,448,461,1497168,9761,0 +19026,Za+miedza,362,484,699265922,9797,0 +19027,069,596,602,699373599,10495,0 +19028,c+00445+%21%21%21,414,390,3909522,9899,0 +19029,Wioska+barbarzy%C5%84ska,368,458,3698627,10075,0 +19030,021,611,585,699099811,9835,0 +19031,K34+-+%5B090%5D+Before+Land,450,376,699088769,9162,0 +19032,023+%C5%82aaaa+naebaem+si%C4%99+w+hu11111,634,472,699272633,10295,0 +19033,A006,521,365,699208929,10038,0 +19034,040,367,519,6853693,5711,0 +19036,Wioska17,633,477,848935020,5313,0 +19037,%23065.,628,454,556154,7411,0 +19038,%230009,549,629,1536231,10495,0 +19039,PYRLANDIA+002+S,570,592,33900,10160,0 +19040,036.+Ader,629,453,849091866,9600,0 +19041,A0077,366,469,8841266,10252,3 +19042,Jaaa,586,605,698635863,10487,0 +19043,0068,636,530,6510480,8135,0 +19044,037,638,515,699413040,10001,0 +19046,0048,557,621,698659980,10160,0 +19047,xx+003.+ONI,400,502,698290577,10233,0 +19048,A+READY,590,400,699759128,10252,0 +19049,Westcoast.090,387,428,848918380,10178,0 +19050,Wioska+barbarzy%C5%84ska,515,362,699368887,9994,0 +19051,Jednak+wol%C4%99+gofry,493,639,699725436,10311,0 +19052,SINGED+X+SZEF,495,375,699368887,9994,0 +19053,A0181,361,490,8841266,10252,0 +19054,C009+South+Lake,620,564,8096537,9664,0 +19055,Wioska+barbarzy%C5%84ska,366,460,699523631,10484,0 +19056,Lecymy+DUR,433,380,6169408,7409,0 +19057,007+Bez+nazwy,382,561,699382126,10495,0 +19058,Wioska+barbarzy%C5%84ska,529,363,1990750,10068,0 +19059,Pobozowisko,409,601,699513260,10414,0 +19060,Westcoast.020,385,436,848918380,10178,0 +19061,Pobozowisko,410,599,699513260,10954,0 +19062,Kentin+ufam+Tobie,374,447,699783765,10000,0 +19063,057,364,512,6853693,10281,0 +19064,Pobozowisko,399,592,699513260,6281,0 +19065,Wioska+barbarzy%C5%84ska,631,529,7047342,10487,0 +19066,Konfederacja+%2B,449,371,848915730,9728,0 +19067,%230013,516,636,699728159,9761,0 +19068,107+Stop,605,417,699491076,9058,0 +19069,006,366,539,6853693,10479,8 +19070,VN+Shizuku+Murasaki,470,363,699883079,9448,0 +19071,MojeSzczytToTw%C3%B3jDno,514,366,828637,10476,0 +19072,s3+Osada+koczownik%C3%B3w,396,414,7462660,10068,1 +19074,072+Najwi%C4%99kszy+Dzban,377,563,699382126,10484,0 +19075,008,361,515,698641566,9809,0 +19076,022+hyhyhy+kuhw%40,631,472,699272633,10010,0 +19077,%2AINTERTWINED%2A%2A,507,634,698704189,9711,0 +19078,A018,472,635,699383279,9802,0 +19079,R-09,547,372,3600737,9013,0 +19080,D003,603,407,699761749,10495,0 +19081,c+ub,418,388,3909522,6105,0 +19082,Wioska+barbarzy%C5%84ska,577,389,699146580,10393,0 +19083,VN+Alex+Louis+Armstrong,464,365,699883079,9626,0 +19084,009+KTW,631,455,848883237,10495,0 +19086,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,637,6948793,10044,0 +19087,Kentin+ufam+Tobie,370,453,699783765,10000,0 +19088,Zeta+Reticuli+S3,424,389,699323302,10997,0 +19089,A0215,363,497,8841266,10252,0 +19090,A0224,364,468,8841266,10252,0 +19091,Wioska+barbarzy%C5%84ska,632,531,7047342,10487,0 +19092,Bagdad,430,385,8847546,10311,0 +19093,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,633,8201460,10237,0 +19094,Brat447,367,514,699262350,6005,0 +19095,Ave+Why%21,449,626,8729672,9248,0 +19096,VN+Rose,463,369,699883079,9969,1 +19097,0109,435,378,699431255,9761,0 +19098,Zeta+Reticuli+S,400,410,699323302,10887,0 +19099,013+Wioska+barbarzy%C5%84ska,538,368,699854484,9976,0 +19100,22+XXX,632,525,699377151,971,0 +19101,A0293,362,476,8841266,10252,0 +19102,055.+F64D,484,633,699494488,10218,0 +19103,Sprzedam+Drewno,452,370,699191455,7103,1 +19104,%5B012%5D,635,528,698305474,9809,0 +19105,A05+Wioska+barbarzy%C5%84ska,464,630,849037407,10217,0 +19106,A0209,366,494,8841266,10252,0 +19107,Brat447,366,508,699262350,10134,0 +19108,0023,600,503,699429153,10168,0 +19109,Wioska+barbarzy%C5%84ska,631,540,7047342,10821,0 +19110,%5B021%5D,636,529,698305474,9809,0 +19111,Manypolis,384,423,8967440,11606,0 +19112,113,489,366,699761749,10495,0 +19114,A17+Wioska+barbarzy%C5%84ska,462,630,849037407,10247,0 +19116,Wioska+barbarzy%C5%84ska,387,572,699621601,6278,0 +19117,060,589,394,7271812,9259,0 +19118,c+Robcio+80002,410,393,3909522,7817,0 +19119,020+-+Vitoria,638,486,698342159,10019,0 +19120,Bagdad,499,364,8847546,10040,0 +19121,Pobozowisko,411,604,699513260,8785,0 +19122,BETI+002,457,578,8539216,1700,0 +19123,RTS+7,574,614,848995242,10362,0 +19125,Lord+Lord+Franek+.%23206,512,362,698420691,10362,0 +19126,K34+-+%5B076%5D+Before+Land,450,372,699088769,10126,0 +19127,028+lenka,637,500,9238175,10412,4 +19129,Zeta+Reticuli+S,407,404,699323302,10887,0 +19130,Westcoast.084,389,421,848918380,10178,0 +19131,Ow+Konfederacja,599,398,848915730,9938,0 +19132,018,633,526,699413040,9924,0 +19133,A0246,370,463,8841266,10252,0 +19134,A0096,360,494,8841266,10252,0 +19135,aaaa,477,637,6948793,9899,0 +19136,012+-+Cordoba,633,485,698342159,10019,0 +19137,Wioska+barbarzy%C5%84ska,394,412,7462660,7150,0 +19138,004,600,597,698786826,10211,0 +19139,Wioska+niszczyciel1123456,528,366,1990750,10068,0 +19140,A0097,366,492,8841266,10252,0 +19141,030.,638,485,849094609,10103,0 +19142,0015+Wioska+barbarzy%C5%84ska,424,616,9060641,6726,0 +19143,.Wioska+barbarzy%C5%84ska,623,567,6929240,6181,0 +19144,0015,430,384,699431255,9966,0 +19145,Gattacka,611,417,699298370,9741,0 +19146,Pobozowisko,396,590,699513260,9138,0 +19147,Pobozowisko,393,584,699513260,10955,0 +19148,.Krakers.+005,364,479,9163140,3498,0 +19149,xkikutx,519,358,1990750,10068,0 +19150,0407,542,634,698659980,9127,0 +19151,0066,560,623,698659980,10083,0 +19152,012+Wioska+barbarzy%C5%84ska,538,370,699854484,10068,0 +19153,%23007.503%7C476,622,427,556154,9735,0 +19154,010,600,593,698786826,10211,0 +19155,Wioska+h,563,378,699072129,10237,0 +19156,0040,615,421,699429153,9825,0 +19157,0368,561,624,698659980,9516,0 +19158,Wioska+barbarzy%C5%84ska,362,501,698807570,9740,0 +19159,SSJ+027,513,638,699054373,9761,0 +19160,057,608,582,698786826,9978,0 +19162,SSJ+022,505,640,699054373,9761,0 +19163,Jednak+wol%C4%99+gofry,492,639,699725436,10178,0 +19164,Pobozowisko,397,591,699513260,10046,0 +19165,%23061.,620,436,556154,9735,0 +19166,013,429,384,849027025,11130,0 +19167,%5B0092%5D,417,394,8630972,10495,0 +19168,Myk+i+do+kieszonki,360,507,9319058,9799,0 +19169,A0098,366,488,8841266,10252,0 +19171,%5B003%5D,461,634,698585370,10530,0 +19172,023+KTW,631,457,848883237,10495,0 +19173,019,500,635,699878511,10139,0 +19174,Ulu-mulu,423,612,699697558,9768,0 +19175,067,552,394,849064752,10311,0 +19176,SSJ+030,506,639,699054373,9761,0 +19177,0374,564,624,698659980,10495,0 +19178,006,388,420,848921536,9566,0 +19179,A019,471,635,699383279,9825,0 +19180,Jednak+wol%C4%99+gofry,498,635,699725436,10108,0 +19181,Pobozowisko,388,583,699513260,10952,0 +19182,SSJ+042,508,639,699054373,9761,0 +19183,c+masarniaqqqqqqqqqqqqqqqqqqqqqq,418,387,3909522,8248,0 +19184,Myk+i+do+kieszonki,367,542,8908002,9609,1 +19185,Pobozowisko,406,595,699513260,8363,0 +19186,0063,460,367,699431255,9978,0 +19187,c+00449,412,392,3909522,10078,0 +19188,007+Legio+I+Noricorum,638,490,699878150,6029,0 +19189,A0205,365,480,8841266,10252,2 +19190,Kentin+ufam+Tobie,373,448,699783765,10019,0 +19191,0044,536,635,698659980,10083,0 +19192,B+002,596,398,6384450,10362,0 +19193,c+mordownia,416,389,3909522,7936,0 +19194,028,593,602,698999105,10311,0 +19195,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,537,630,8201460,10237,0 +19196,Kentin+ufam+Tobie,372,445,699783765,10000,0 +19197,Wioska+Apfel,601,589,849080260,1776,0 +19198,070,367,531,6853693,8021,0 +19199,Wioska+barbarzy%C5%84ska,630,537,7047342,10487,0 +19200,071+Pot%C4%99%C5%BCny+Dzban,378,562,699382126,10479,0 +19201,A0113,366,493,8841266,10252,0 +19202,kathare,554,629,873575,9867,0 +19203,A0182,359,476,8841266,10252,0 +19204,001.,639,477,849094609,9950,0 +19205,016.,571,385,699799629,10495,0 +19206,Wioska+barbarzy%C5%84ska,394,416,7462660,9978,0 +19207,041,364,520,6853693,5692,0 +19208,0005,565,620,698659980,10252,9 +19209,Wioska+barbarzy%C5%84ska,638,524,7047342,10476,0 +19210,Nowa+12,621,567,698702991,9821,0 +19211,052,411,486,699510259,9761,0 +19212,FB004,640,493,9314079,9818,0 +19214,040,364,529,698641566,9809,0 +19215,013,389,424,848921536,3154,0 +19216,Taran,555,377,699170684,10019,4 +19217,009,603,501,699573053,10495,0 +19218,B.035,640,503,9188016,10000,0 +19219,Pobozowisko,396,588,699513260,10665,0 +19220,A+READY,589,399,699759128,10365,0 +19221,B005,603,410,699761749,8129,0 +19222,OZDR,521,638,2665207,10068,0 +19223,037,590,401,849064752,10311,0 +19224,Nowa+13,618,575,698702991,9821,0 +19226,Wioska+barbarzy%C5%84ska,503,360,699368887,9223,0 +19227,0244,535,635,698659980,10019,0 +19228,054,366,540,8908002,5626,0 +19229,039,364,527,698641566,9809,0 +19230,Jehu_Kingdom_43,634,463,8785314,9373,0 +19231,064+OZDR,458,628,699336777,8137,0 +19232,56.+Wioska+56,376,561,849091769,10019,0 +19233,Ave+Why%21,440,621,8729672,7836,0 +19234,%7E%7E033%7E%7E,595,600,7829201,9494,0 +19235,Aqueduct+1,528,631,8199417,10140,0 +19236,0023+MzM,630,553,698416970,9258,7 +19237,Wioska+barbarzy%C5%84ska,507,364,699368887,9994,0 +19238,011+B,627,446,699718269,9811,0 +19239,Darmowe+przeprowadzki,436,620,848935389,9058,0 +19240,Wioska+barbarzy%C5%84ska,369,465,699523631,10475,0 +19241,Westcoast.095,392,419,848918380,10178,0 +19242,010+%7C+PALESTINA,631,462,9228039,9544,0 +19244,061,481,366,698739350,10237,0 +19245,A0099,362,490,8841266,10252,0 +19246,038.+Salmantica,632,457,849091866,9661,0 +19247,Myk+i+do+kieszonki,361,507,9319058,9799,0 +19248,0373,563,624,698659980,10485,0 +19249,%2A0030+Baraki,620,439,8459255,10195,0 +19250,K34+-+%5B108%5D+Before+Land,451,372,699088769,10259,0 +19252,068,361,511,698641566,9809,0 +19253,014,389,418,848921536,4034,0 +19254,021+-+Badalona,639,486,698342159,10019,0 +19255,HORUS%2B,524,637,7756002,9883,0 +19256,Wioska+barbarzy%C5%84ska,510,361,699368887,9994,0 +19257,0001+Wioska+Koloalu,425,616,9060641,10544,0 +19258,Wioska,373,542,849084005,10178,0 +19259,015+%7C+PALESTINA,633,464,9228039,8764,0 +19260,%3A%3A%3A+C+%3A%3A%3A,365,477,848917570,4302,0 +19262,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,420,616,1434753,10068,0 +19263,088.+Messambria,619,434,849091866,8671,0 +19264,Kentin+ufam+Tobie,374,444,699783765,10000,0 +19265,029+Wioska+barbarzy%C5%84ska,540,363,699854484,10068,0 +19266,Jan+09+Wuking+K,634,464,879782,9436,0 +19267,PRO8L3M,412,494,7491093,10311,0 +19268,Wioska+barbarzy%C5%84ska,420,389,699402816,9835,0 +19269,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,494,638,6948793,9903,0 +19271,Wioska+Szyderczy+Promil+2,572,616,8627359,9343,0 +19272,Wioska,369,552,2443031,3081,1 +19273,015,369,533,698641566,9809,0 +19274,079,482,362,698739350,10580,0 +19275,Gattacka,609,411,699298370,10158,0 +19276,019+KTW,632,454,848883237,10495,0 +19277,Wioska+barbarzy%C5%84ska,365,505,698807570,9387,0 +19278,R007,388,573,8607734,6943,0 +19279,061,438,626,849084985,7060,0 +19280,7.62+mm,377,438,699777234,1473,0 +19281,009+Legio+I+Italica,639,491,699878150,4372,0 +19282,Wioska+barbarzy%C5%84ska,563,381,699072129,10217,0 +19283,Jednak+wol%C4%99+gofry,495,639,699725436,9835,0 +19284,OZDR,520,639,2665207,10068,0 +19285,Kentin+ufam+Tobie,372,452,699783765,10000,0 +19286,A0100,361,494,8841266,10252,0 +19287,A07+Wioska+barbarzy%C5%84ska,464,631,849037407,10221,0 +19288,074.+Helgrind,624,437,8337151,10160,0 +19289,032,367,543,8908002,9237,0 +19290,BARBA,639,483,698613394,2602,0 +19291,051+Vallenar,610,578,699272880,10569,0 +19292,040,609,584,698786826,10221,0 +19293,Konfederacja,455,371,848915730,9684,0 +19294,Bagdad,426,384,8847546,11130,0 +19295,Wioska+barbarzy%C5%84ska,636,525,7047342,10478,0 +19297,036+OZDR,473,633,699336777,9825,0 +19298,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,628,8201460,10237,0 +19299,Deveste+ufam+Tobie,429,616,699783765,9097,0 +19300,Og%C3%B3rkowy+baron,406,400,356642,9835,0 +19301,Wioska+Kuba+Takine,423,383,699796330,10559,0 +19302,Dziupla+.,571,619,848995242,10362,0 +19303,Pobozowisko,396,586,699513260,8304,0 +19304,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,637,1434753,10068,0 +19305,026,472,631,699336777,9825,0 +19306,Deveste+ufam+Tobie,433,622,699783765,7043,0 +19308,sony911,580,612,1415009,10211,0 +19309,Ave+Why%21,448,626,8729672,8316,0 +19310,Molinia+coerulea,495,360,699883079,9933,0 +19312,036.,639,479,849094609,8214,0 +19313,Nowa+24,614,575,698702991,9891,0 +19314,%2A0034+Baraki,619,439,8459255,9908,0 +19315,028.,639,493,849094609,9821,0 +19316,A01+Plebania,464,632,849037407,10475,0 +19317,Wioska+barbarzy%C5%84ska,634,531,7047342,10495,0 +19318,SSJ+070,504,640,699054373,8431,0 +19319,0059,454,367,699431255,9955,0 +19320,%21Inferno,508,607,606407,10365,0 +19322,Horyzont+zdarze%C5%84,527,542,7581876,10019,0 +19323,Taran,555,371,699170684,10130,0 +19324,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,637,6948793,10044,0 +19326,D009,598,408,699761749,10495,0 +19327,yyyy,496,360,699883079,10028,0 +19328,Pobozowisko,383,578,699513260,10657,0 +19329,Brat447,369,510,699262350,10134,0 +19330,015+-+Santa+Cruz+de+Tenerife,636,487,698342159,10019,0 +19331,Kentin+ufam+Tobie,372,450,699783765,10000,0 +19332,Jednak+wol%C4%99+gofry,498,641,699725436,10311,0 +19333,025,364,534,698641566,9809,0 +19334,.007.Alvaro,559,373,699072129,10226,0 +19337,President+s+Office,524,633,8199417,11074,0 +19338,011+KTW,633,454,848883237,10495,0 +19339,034.+Mamucium,628,455,849091866,9609,0 +19340,VN+Ging+Freecss,497,362,699883079,9933,0 +19341,C+023,582,391,6384450,6728,0 +19342,Brat447,366,515,699262350,3024,0 +19343,WE+ARE+READY%21,596,397,1553947,9240,0 +19344,Monetki,477,419,699098531,10292,0 +19345,068+Pot%C4%99%C5%BCny+Dzban,378,561,699382126,10481,0 +19346,002.+Wioska+barbarzy%C5%84ska,391,419,698884287,9369,0 +19347,Pobozowisko,401,599,699513260,10957,0 +19348,Ulu-mulu,415,604,699697558,9833,0 +19349,067,360,512,698641566,9809,0 +19350,016,363,530,698641566,9809,7 +19351,Mo%C5%BCe+co%C5%9B+pogram%3F,506,606,699698253,9809,0 +19352,061,586,391,7271812,9143,0 +19353,036,425,386,7462660,10638,0 +19354,Monetki,473,426,699098531,10294,0 +19355,Ow+Konfederacja,600,405,848915730,9976,0 +19356,%5B0103%5D,410,395,8630972,10495,0 +19357,a+mo%C5%BCe+off+%3F+%3A%29,605,587,698768565,10104,0 +19358,A02,466,632,849037407,10226,0 +19359,Konfederacja,448,369,848915730,10874,0 +19360,008,624,561,848899726,8387,0 +19361,Kentin+ufam+Tobie,374,438,699783765,10000,0 +19362,090.,634,486,849094609,5002,0 +19363,K34+-+%5B018%5D+Before+Land,452,372,699088769,10259,0 +19364,B007,601,403,699761749,6196,0 +19365,0054,444,375,699431255,10067,0 +19366,%230011,515,637,699728159,9761,0 +19367,29.+Wioska+29,372,550,849091769,9691,0 +19368,Kentin+ufam+Tobie,374,437,699783765,10000,0 +19369,020,636,533,699413040,9860,3 +19370,Ulu-mulu,420,609,699697558,3722,0 +19371,%230041,545,633,1536231,10495,0 +19372,0199,453,611,698659980,10495,0 +19373,MojeSzczytToTw%C3%B3jDno,531,369,828637,10490,0 +19374,A30+MARUDER,464,629,849037407,10197,0 +19375,R004,384,575,8607734,8924,0 +19377,0127,436,376,699431255,8559,0 +19378,018,600,591,698786826,10221,0 +19379,Wioska+barbarzy%C5%84ska,511,359,699368887,9994,0 +19380,-003-,393,592,699097885,10158,0 +19381,Dzisiaj+trening+.,570,621,848995242,10495,0 +19382,Kentin+ufam+Tobie,379,439,699783765,10000,0 +19383,0370,562,627,698659980,10495,0 +19384,Horyzont+zdarze%C5%84,532,543,7581876,10019,0 +19385,sas,559,625,7581876,10019,0 +19386,No+to+hetman,368,470,6258092,10795,0 +19387,071,437,623,849084985,6445,0 +19388,037+Nadindel,625,451,8337151,10083,3 +19389,028.+Tentyra,626,558,849091866,10295,0 +19390,Wioska+barbarzy%C5%84ska,419,393,699402816,9835,0 +19391,%3D031%3D+Wioska+barbarzy%C5%84ska,624,560,3781794,8242,0 +19392,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,421,615,1434753,8075,0 +19393,15.+Wioska+15,371,556,849091769,10064,0 +19394,A0101,364,488,8841266,10252,0 +19395,A0229,367,464,8841266,10252,0 +19396,MojeSzczytToTw%C3%B3jDno,513,366,828637,10495,0 +19397,055,366,543,8908002,4981,0 +19398,Myk+i+do+kieszonki,362,508,9319058,9799,0 +19399,%5BB%5D_%5B204%5D+Dejv.oldplyr,432,382,699380607,6113,0 +19400,c+piekarnia,418,386,3909522,9213,0 +19401,Wioska+%28036%29,635,461,698232227,4975,0 +19402,Kentin+ufam+Tobie,370,448,699783765,7250,0 +19403,034,367,532,698641566,9809,0 +19404,015,389,414,848921536,3516,0 +19405,062,469,365,698739350,10237,0 +19406,090.+Toletum,617,432,849091866,9182,0 +19407,VN+Cao+Cao,462,365,699883079,10096,0 +19408,030+181,360,504,698807570,8238,0 +19409,Szlachcic+P%C3%B3%C5%82noc+002,637,512,698562644,10311,0 +19411,Ave+Why%21,464,633,698585370,8134,0 +19412,kathare,556,625,873575,10192,0 +19413,A22+Wioska+barbarzy%C5%84ska,456,630,849037407,10220,0 +19414,.Wioska+barbarzy%C5%84ska,623,566,6929240,5241,0 +19415,Wioska+barbarzy%C5%84ska,636,531,7047342,10495,0 +19416,K34+-+%5B006%5D+Before+Land,444,371,699088769,10126,0 +19417,209,577,386,849064752,5277,0 +19418,%230012,516,637,699728159,9761,0 +19420,022,362,526,698641566,9809,0 +19421,Village,529,631,849094067,9687,0 +19422,Konfederacja,457,367,848915730,9720,0 +19423,086.+Faesulae,621,436,849091866,9176,0 +19424,018,368,540,8908002,9993,0 +19425,MojeSzczytToTw%C3%B3jDno,526,363,828637,10475,0 +19426,120,494,361,699761749,9722,0 +19427,MojeSzczytToTw%C3%B3jDno,533,365,828637,9814,0 +19428,%230016,518,634,699728159,9761,0 +19429,MojeSzczytToTw%C3%B3jDno,525,365,828637,10476,0 +19430,Bagdad,499,362,8847546,9497,0 +19431,Sebo1303,617,575,7973893,6605,0 +19432,0016,568,380,699485250,10211,0 +19433,0212,421,617,699697558,9561,0 +19434,056,367,538,8908002,4400,0 +19435,Gattacka,608,410,699298370,9792,0 +19436,Kentin+ufam+Tobie,377,436,699783765,10000,0 +19437,Wioska,373,548,849084005,10178,0 +19438,%230015,546,629,1536231,10495,0 +19439,021+Belatona,625,434,8337151,10495,0 +19440,sony911,576,616,1415009,10229,0 +19441,Zach%C3%B3d+-+014,388,581,225023,9885,0 +19442,154,593,400,849064752,10311,0 +19443,Westcoast.116,376,433,848918380,10178,0 +19444,09.+Wioska+9,374,553,849091769,10002,0 +19445,030.+Chersonesus,630,449,849091866,10495,0 +19446,0129,436,374,699431255,8973,0 +19448,018,628,542,8428196,9978,0 +19449,WOJSKO,502,361,7651093,3189,0 +19450,K34+-+%5B150%5D+Before+Land,433,383,699088769,11130,6 +19451,065,366,514,6853693,9995,0 +19452,K34+x016,445,373,698364331,6601,0 +19453,033+Y13J,639,494,2135129,9300,0 +19454,616%7C427+Wioska+barbarzy%C5%84ska04,616,427,6822957,9560,0 +19455,014,442,625,849084985,10294,2 +19456,A0220,369,467,8841266,10252,0 +19457,WB+01,576,612,8627359,9411,0 +19458,0034+Executive+Director,416,607,9060641,10544,0 +19459,A0114,365,489,8841266,10252,0 +19460,013,614,579,699099811,9620,0 +19461,0053,454,368,699431255,10067,0 +19462,c+00446,414,389,3909522,8206,0 +19463,Wioska+%28025%29,638,472,698232227,9529,0 +19464,035,426,387,7462660,10478,0 +19465,%5B0087%5D,415,394,8630972,10495,0 +19466,005,444,625,849084985,9769,6 +19467,029,589,605,698999105,10311,0 +19468,Lecymy+DUR,441,379,6169408,9304,0 +19469,Jaaa,612,584,698635863,10476,0 +19470,Pobozowisko,410,601,699513260,10955,0 +19471,MojeSzczytToTw%C3%B3jDno,516,364,828637,10474,5 +19472,Ave+Why%21,451,629,8729672,9877,0 +19473,XXXIV,540,371,698350371,9627,0 +19474,%7CA22%7C+nale%C5%9Bniki+z+granatem,500,639,849006145,9447,6 +19476,Wioska+barbarzy%C5%84ska,544,373,1990750,10068,0 +19478,005.,559,621,699695167,10004,0 +19479,Pobozowisko,403,597,699513260,10955,0 +19480,Wioska+barbarzy%C5%84ska,507,362,699368887,9994,0 +19481,013,370,551,6853693,10474,0 +19482,Jednak+wol%C4%99+gofry,487,640,6948793,9811,0 +19483,003+VC+Gangsta116+%40,396,408,3108144,9366,0 +19484,Armagedon,390,419,698884287,8712,0 +19485,%2A0037+Baraki,620,433,8459255,10178,0 +19486,Zeta+Reticuli+S,406,402,699323302,11188,0 +19487,s4+Osada+koczownik%C3%B3w,395,413,7462660,10132,3 +19488,%5B002%5D,458,634,698585370,10185,0 +19489,Kentin+ufam+Tobie,372,441,699783765,10000,0 +19490,%2A0032+Baraki,623,434,8459255,9349,0 +19491,Pobozowisko,404,602,699513260,10952,0 +19492,011.+Temeria,565,380,699799629,10495,0 +19493,Wioska+barbarzy%C5%84ska,387,581,699621601,4941,0 +19494,Lecymy+DUR,441,376,6169408,8272,0 +19495,Wioska+barbarzy%C5%84ska,562,376,699072129,10221,0 +19496,0131,533,634,698659980,10019,0 +19497,A0183,359,488,8841266,10252,0 +19498,076,432,624,699783765,5696,0 +19499,045,371,541,8908002,6898,0 +19500,Jehu_Kingdom_18_,636,475,8785314,9993,6 +19501,Pobozowisko,408,605,699513260,8758,0 +19502,Pobozowisko,391,582,699513260,10957,0 +19503,Westcoast.097,393,421,848918380,10135,0 +19504,116,487,360,699761749,10336,0 +19505,C+001,586,390,6384450,10229,0 +19506,South+K35,550,369,699146580,10042,0 +19507,MojeSzczytToTw%C3%B3jDno,522,363,828637,10478,0 +19508,0122,534,635,698659980,10019,0 +19509,Wioska+barbarzy%C5%84ska,514,360,699368887,9994,0 +19510,Pobozowisko,399,591,699513260,10923,0 +19511,011+-+Valladolid,635,485,698342159,10019,0 +19512,Dania,386,426,1746216,7746,0 +19513,080,482,363,698739350,10237,0 +19514,%2AAteny_36,466,521,699333701,2354,0 +19515,Pobozowisko,403,602,699513260,10951,0 +19516,022,497,627,699878511,10152,0 +19517,%230025,545,631,1536231,10495,0 +19518,0372,563,626,698659980,10495,0 +19519,aaaa,478,635,6948793,9899,0 +19520,0119,434,377,699431255,9163,0 +19521,B+007,596,403,6384450,10362,0 +19522,014.+Wi%C5%82a,510,566,699703642,9902,0 +19523,D005,605,408,699761749,10495,0 +19525,0017,569,380,699485250,10211,0 +19526,061,359,510,698641566,9809,7 +19527,RTS+5,573,614,848995242,10495,0 +19528,R-8,562,374,3600737,9013,0 +19529,087.+Iaurinum,627,437,849091866,8643,0 +19530,005,601,595,698786826,10211,0 +19531,Ateny_70,470,519,2585846,3224,0 +19532,Za+lasem,359,490,699265922,9752,0 +19533,001,471,362,699883079,9011,0 +19534,Og%C3%B3rkowy+baron,403,400,356642,9835,0 +19535,VN+Edward+Elric,496,363,699883079,9933,0 +19536,Jan+.+izi+pizi+Nord+K,639,499,879782,9635,0 +19537,Kentin+ufam+Tobie,378,440,699783765,10000,7 +19538,048,362,518,6853693,10495,0 +19539,A0184,361,478,8841266,10252,0 +19540,068+OZDR,469,631,699336777,9825,0 +19541,077+Zgierz%C4%85tka,381,567,699382126,10495,0 +19542,Yeremiah,389,416,7462660,10068,0 +19543,083,479,366,698739350,10104,0 +19544,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,639,1434753,10068,1 +19545,Wioska,373,547,849084005,10178,0 +19546,070,437,626,849084985,10068,0 +19547,117,401,553,699382126,10628,0 +19548,Kentin+ufam+Tobie,368,456,699783765,10000,0 +19549,Zeta+Reticuli+S2,403,398,699323302,11188,0 +19550,A18+Wioska+barbarzy%C5%84ska,460,631,849037407,10223,0 +19551,Horyzont+zdarze%C5%84,544,636,7581876,10019,0 +19552,Nowa+16,622,567,698702991,9756,0 +19553,Obrze%C5%BCa+01,543,633,848915531,11130,0 +19554,A0171,367,470,8841266,10252,0 +19555,A004,474,633,699383279,9824,0 +19556,015+Wioska+barbarzy%C5%84ska,537,366,699854484,10178,0 +19557,038,575,385,699761749,10495,0 +19558,kathare,555,625,873575,9921,0 +19559,Pobozowisko,411,610,699513260,9244,0 +19560,078+Wehjerowo,379,570,699382126,10495,0 +19561,002,366,533,698641566,9809,0 +19562,018+Wioska+barbarzy%C5%84ska,539,364,699854484,10068,0 +19563,%5B016%5D,637,516,698305474,9809,0 +19564,Westcoast.059,379,435,848918380,10178,0 +19565,Pobozowisko,409,606,699513260,10951,0 +19566,016+Legio+XXII+Deiotariana,638,492,699878150,5463,0 +19567,Wioska+barbarzy%C5%84ska,390,415,7462660,9303,0 +19568,066,438,621,849084985,10401,0 +19569,Deveste+ufam+Tobie,431,620,699783765,7901,6 +19570,043,606,590,698786826,10262,0 +19571,039,610,584,698786826,9575,0 +19572,%2AINTERTWINED%2A,510,638,698704189,9711,0 +19573,Ave+Why%21,453,627,698585370,9198,0 +19574,Ulu-mulu,422,611,699697558,9000,0 +19575,D015,597,402,699761749,5588,0 +19576,005+181,359,509,698807570,10495,0 +19577,Kentin+ufam+Tobie,371,456,699783765,10000,0 +19578,Wioska+barbarzy%C5%84ska,628,554,7047342,10481,0 +19579,Jehu_Kingdom_11,625,435,8785314,8081,0 +19580,Majami,543,369,1990750,10068,0 +19581,Og%C3%B3rkowy+baron,400,405,356642,9835,0 +19582,Wioska+zygmunciarz,382,423,8967440,5724,0 +19583,.Krakers.+003,362,480,9163140,3630,0 +19584,015,565,621,699189792,9741,4 +19586,Szlachcic,636,494,699098531,9629,0 +19587,Konfederacja+%2B,451,371,848915730,9692,0 +19588,Westcoast.104,379,433,848918380,10178,0 +19589,R014,384,571,8607734,5852,0 +19590,Wioska+barbarzy%C5%84ska,476,361,698739350,9761,0 +19591,027,507,637,699878511,10160,0 +19592,157+Ale+mnie+g%C5%82%C3%B3wka+boli,375,560,699382126,8635,0 +19593,Pobozowisko,406,604,699513260,7456,8 +19594,014,360,519,698641566,9809,0 +19595,063,476,364,698739350,10237,0 +19596,053,361,518,698641566,9809,0 +19597,040+%7C+PALESTINA,634,462,9228039,6441,0 +19599,068,365,513,6853693,6148,0 +19600,004.,633,480,849094609,9889,0 +19601,Jan+0xxx+%2808%29+K,636,473,879782,9450,0 +19602,SSJ+014,512,642,699054373,9761,0 +19603,003,627,557,849095227,9746,0 +19604,%230010,517,637,699728159,9761,0 +19605,057,365,540,8908002,5195,0 +19606,148+Oj+Mareczku+co%C5%9B+za+du%C5%BCo+cyfr,375,565,699382126,10490,0 +19607,%230004,548,626,1536231,10495,0 +19608,0018,547,369,699485250,10211,0 +19609,.%3A024%3A.+%C5%81OBUZIK,554,369,848934935,9889,0 +19610,%5BB%5D_%5B201%5D+Dejv.oldplyr,432,383,699380607,9518,0 +19612,c+Robcio+80003qqqqqqqqqqqqqqqqqq,415,391,3909522,10005,0 +19613,HMS+Perseus,387,416,698884287,9439,0 +19614,C012,584,387,699761749,5019,0 +19615,028,555,629,699176234,10019,0 +19616,0207,418,615,699697558,5155,0 +19617,055,360,521,698641566,9809,0 +19618,018,362,528,698641566,9809,0 +19619,kathare,552,628,873575,10495,0 +19620,MojeSzczytToTw%C3%B3jDno,518,362,828637,10479,0 +19621,%230003,546,623,1536231,10495,0 +19622,029,630,551,849095227,9740,0 +19623,%5B0070%5D,411,397,8630972,10495,0 +19624,.Krakers.+004,364,478,9163140,3626,0 +19625,F+004,639,502,8078914,10137,0 +19626,P031+Sakai,637,507,8096537,9549,0 +19627,SSJ+004,510,640,699054373,9761,0 +19628,Kentin+ufam+Tobie,375,437,699783765,10000,0 +19629,Sony+911,576,615,1415009,10230,0 +19630,Gattacka,608,417,699298370,9747,0 +19631,0254,537,631,698659980,10019,0 +19632,064,473,362,698739350,10237,0 +19633,0227,516,600,698659980,10147,0 +19634,%7E%7E012%7E%7E,596,600,7829201,9760,0 +19635,Ave+Why%21,492,644,698585370,10104,0 +19636,%5B0083%5D,414,394,8630972,10495,0 +19637,A0300,362,499,8841266,10252,0 +19638,Jednak+wol%C4%99+gofry,496,640,699736927,10311,0 +19639,A+READY,602,407,1553947,10019,0 +19640,MojeSzczytToTw%C3%B3jDno,524,364,828637,10479,0 +19641,Wioska+barbarzy%C5%84ska,525,633,7756002,9950,0 +19642,135,574,381,849064752,10311,0 +19643,VN+Vanica+Zogriatis,465,363,699883079,9638,0 +19644,58.+Wioska+58,372,552,849091769,9309,0 +19645,Pobozowisko,399,597,699513260,10954,0 +19646,Pobozowisko,403,596,699513260,10951,0 +19647,Taran,551,374,699170684,9654,0 +19648,009.,637,479,849094609,9835,0 +19649,023+024,530,363,699491076,10001,0 +19650,%5B023%5D,634,527,698305474,9809,0 +19651,Wioska+barbarzy%C5%84ska,524,363,699208929,5752,0 +19652,069+Pot%C4%99%C5%BCny+Dzban,381,565,699382126,10484,0 +19653,Wioska+orton150,371,457,699523631,5470,0 +19654,Wied%C5%BAma+-+Celebryci,385,421,698884287,8024,0 +19655,Lecymy+DUR,439,377,6169408,7316,0 +19656,.052.,485,361,698489071,10503,0 +19657,Wioska+barbarzy%C5%84ska,480,365,699658023,9556,0 +19658,004,385,425,848921536,9761,0 +19659,Mniejsze+z%C5%82o+0026,363,465,699794765,7375,7 +19660,Pobozowisko,384,579,699513260,10603,0 +19661,%2A5604%2A+LuncherS,620,575,7973893,10287,0 +19662,Wioska+barbarzy%C5%84ska,631,541,7047342,10487,0 +19663,001,604,596,698786826,10211,0 +19664,A0140,362,487,8841266,10252,0 +19665,026,364,533,698641566,9701,0 +19666,Jednak+wol%C4%99+gofry,499,640,699725436,10311,0 +19667,060,494,365,698739350,5805,0 +19668,036+Pelargir,615,580,699272880,10218,0 +19669,16.+Wioska+16,369,551,849091769,10068,0 +19670,Lecymy+DUR,441,377,6169408,10495,0 +19671,VN+Chrollo+Lucilfer,466,365,699883079,9657,0 +19672,Wioska+barbarzy%C5%84ska,639,530,7047342,10622,0 +19673,Wioska+barbarzy%C5%84ska,368,447,3698627,10075,0 +19675,006+VC+Wioska+barbarzy%C5%84ska,392,414,3108144,8449,0 +19676,psycha+sitting,416,614,699736927,10311,9 +19677,029+na+%C5%82azarskim+rejonie,637,467,699272633,9053,0 +19678,Gattacka,610,413,699298370,9816,0 +19679,Ryszard+ty+draniu+%2Coddaj+rower%21%21,574,619,848995242,10495,0 +19680,070.+Lindum,631,448,849091866,10495,0 +19681,%3A%3A%3A+A+%3A%3A%3A+I,363,476,848917570,5021,0 +19682,Ave+Why%21,468,638,698585370,10068,0 +19683,051+%7C+PALESTINA,626,442,9228039,9544,0 +19684,039,371,553,8908002,9993,8 +19685,042,545,399,699761749,10495,0 +19686,079+Radom,381,569,699382126,10495,0 +19687,Pobozowisko,397,592,699513260,10558,0 +19688,Pobozowisko,387,584,699513260,10971,0 +19689,Wioska+barbarzy%C5%84ska,510,362,699368887,9994,0 +19690,D006,603,405,699761749,10495,0 +19692,.KSU,638,498,6929240,8353,0 +19693,Pobozowisko,404,596,699513260,10950,0 +19694,Ksi%C4%85d%C5%BA+do+spania+dzieciaku,462,637,698585370,9557,0 +19695,.achim.,533,445,6936607,7602,0 +19696,A0102,361,492,8841266,10252,0 +19697,Konfederacja+%2B,448,375,848915730,9833,4 +19698,a+mo%C5%BCe+off+%3F+%3A%29,619,575,698768565,9347,0 +19699,Myk+i+do+kieszonki,361,508,9319058,9799,0 +19700,054+%7C+PALESTINA,628,459,9228039,4018,0 +19701,Ave+Why%21,450,623,8729672,9861,0 +19702,Ulu-mulu,415,614,699697558,3958,3 +19704,Pobozowisko,392,582,699513260,10963,0 +19705,Taran,547,368,699170684,9389,0 +19706,WE+ARE+READY%21,597,399,1553947,9408,0 +19707,ave+why%21,450,632,698143931,9761,0 +19708,173,587,392,849064752,10085,0 +19709,a+mo%C5%BCe+off+%3F+%3A%29,634,541,698768565,9967,0 +19710,W.03,583,610,873575,10232,0 +19711,A27+Wioska+barbarzy%C5%84ska,469,634,849037407,10220,0 +19712,V+002,585,390,6384450,9141,0 +19713,-021-,393,593,699097885,9172,0 +19714,59.+Wioska+59,371,552,849091769,8716,0 +19715,Jehu_Kingdom_17_,632,467,8785314,9993,9 +19716,032.,471,637,849034882,10838,0 +19717,35.+Wioska+35,381,572,849091769,10046,0 +19718,204,585,393,849064752,5682,0 +19719,210,580,384,849064752,9782,0 +19720,Wioska+barbarzy%C5%84ska,637,515,6510480,7135,0 +19721,0138,429,379,699431255,9619,0 +19722,033,367,544,8908002,8535,0 +19723,0030,367,472,6258092,10887,0 +19724,Hepatica+nobilis,493,358,699883079,9933,0 +19725,Pobozowisko,389,588,699513260,3572,0 +19726,038,365,528,698641566,9809,0 +19727,C+011,584,389,6384450,8983,0 +19728,Wioska+barbarzy%C5%84ska,561,376,699072129,10216,0 +19729,007.,640,482,849094609,9813,0 +19730,0554,564,627,698659980,10019,0 +19731,015+016,540,367,699491076,10001,7 +19732,Wioska+barbarzy%C5%84ska,564,374,699072129,10218,0 +19733,Bagdad,502,359,8847546,9976,0 +19734,0121,438,376,699431255,8357,0 +19735,A007,521,363,699208929,10064,0 +19736,So%C5%82tys+Wsi+Misinho,437,397,849027025,9835,0 +19737,01.,509,361,699368887,10237,0 +19738,617%7C429+Wioska+barbarzy%C5%84ska08,617,429,6822957,9987,0 +19739,047,443,628,849084985,8058,0 +19740,Pobozowisko,410,609,699513260,8962,0 +19741,Og%C3%B3rkowy+baron,404,403,356642,9835,0 +19742,Wioska+barbarzy%C5%84ska,388,412,698884287,8671,0 +19743,053,441,629,849084985,9835,0 +19744,014.+Minas+Morgul,488,628,699494488,10237,0 +19745,125,491,363,699761749,10495,0 +19746,004+%C5%81ysy+Las,620,425,699429153,9899,0 +19747,z+056,587,604,699342219,10484,0 +19748,015.,572,384,699799629,10495,0 +19750,%2A0010+Baraki,621,429,8459255,10198,0 +19751,K43+x001,399,407,698364331,5865,0 +19752,017,615,583,699099811,9835,0 +19753,Residential+Area,526,633,8199417,10426,0 +19754,019+Legio+I+Brittannica,642,499,699878150,5161,0 +19755,Szlachcic,636,491,699098531,9626,0 +19756,A21+Wioska+barbarzy%C5%84ska,458,631,849037407,10223,0 +19757,B001,605,407,699761749,9665,0 +19758,019,608,592,698786826,10232,0 +19759,060,358,510,698641566,9809,0 +19760,167,583,389,849064752,10311,0 +19761,0052,452,366,699431255,9649,0 +19762,A0236,363,464,8841266,10252,0 +19763,140,574,379,849064752,10311,0 +19764,142+MIKOX+010,596,416,699491076,10001,0 +19765,0005,481,635,6180190,10431,0 +19767,%C5%9Alachcic,639,497,849093742,10019,0 +19768,181,387,582,8305343,2332,0 +19769,Wioska+barbarzy%C5%84ska,363,503,698807570,9158,0 +19770,108+Wioska+barbarzy%C5%84ska,605,414,699491076,9122,0 +19771,Osada+koczownik%C3%B3w,385,576,699621601,8364,2 +19772,Wioska+barbarzy%C5%84ska,534,367,1990750,10068,0 +19773,%3D036%3D+Wioska+barbarzy%C5%84ska,631,554,3781794,9100,0 +19774,002,626,557,849095227,9761,3 +19775,Jehu_Kingdom_10_,629,449,8785314,9993,0 +19776,a+mo%C5%BCe+off+%3F+%3A%29,636,539,698768565,10074,0 +19777,Druga+Dla+MOSE,580,615,699560327,5638,0 +19778,SSJ+021,508,637,699054373,9761,0 +19779,Wioska+barbarzy%C5%84ska,621,425,699429153,9825,0 +19780,0144,431,376,699431255,5894,0 +19781,050,374,551,6853693,6906,0 +19782,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,640,1434753,10068,0 +19783,Zeta+Reticuli+S2,399,408,699323302,10049,0 +19784,HMS+Warspite,384,422,8967440,12154,0 +19785,B016,599,405,699761749,8280,7 +19786,006.,631,480,849094609,9250,0 +19787,034,610,580,698786826,10218,0 +19789,059+Wioska+barbarzy%C5%84ska,535,366,699491076,10001,0 +19790,0001,538,633,698659980,10252,8 +19791,Wioska+barbarzy%C5%84ska,421,387,699402816,9835,0 +19792,A0222,365,465,8841266,10252,0 +19793,0019+Bezimienna,416,610,9060641,11727,0 +19794,010Rolety,448,630,698620694,9740,0 +19795,Wsch%C3%B3d+Droga+004,632,544,698562644,9187,0 +19796,A+READY,592,399,1553947,10019,0 +19797,Kentin+ufam+Tobie,377,437,699783765,10000,0 +19798,.%3A134%3A.+Niangmen,506,360,848934935,9797,0 +19799,Wioska+%28027%29,637,468,698232227,9188,0 +19801,0039,538,635,698659980,10083,0 +19802,Osada,380,430,699644054,1141,6 +19804,-053-,377,571,699097885,6278,0 +19805,Ave+Why%21,465,639,698585370,9917,0 +19806,Wied%C5%BAma+-+Barbakan,384,417,698884287,6772,0 +19807,SSJ+038,515,640,699054373,9761,0 +19808,Jednak+wol%C4%99+gofry,494,639,699725436,10311,0 +19809,%230033,545,628,1536231,10495,0 +19810,0044,451,368,699431255,9957,0 +19811,A003,474,638,699383279,9796,0 +19812,Wioska+barbarzy%C5%84ska,636,527,7047342,10481,0 +19813,Bagdad,500,366,8847546,10040,0 +19814,615%7C426+Wioska+barbarzy%C5%84ska05,615,426,6822957,9534,0 +19816,Belvedere+023,586,398,699756210,7707,0 +19817,OZDR,520,638,2665207,10068,0 +19818,Wied%C5%BAma+-+Ateny,386,422,698884287,10705,0 +19819,Pobozowisko,406,600,699513260,10951,0 +19820,Lord+Lord+Franek+.%23207,512,361,698420691,10362,9 +19821,Piek%C5%82o+to+inni,516,453,848956765,10160,0 +19822,Taran,542,369,699170684,5332,0 +19823,W.02,586,607,873575,10362,0 +19824,c+055d,423,385,3909522,5977,0 +19826,%2AINTERTWINED%2A%2A,509,637,698704189,9711,0 +19828,%5B027%5D,637,513,698305474,9654,0 +19829,Wioska+Pog%C3%B3rze+4,635,536,698562644,10311,0 +19831,0208,419,615,6910361,10072,0 +19832,Wioska,370,550,849084005,7591,0 +19833,%230043,546,632,1536231,10495,0 +19834,Nowa+21,622,569,698702991,9830,0 +19835,0239,537,635,698659980,9276,0 +19836,%23012.510%7C489,629,440,556154,9735,0 +19837,SSJ+039,511,642,699054373,9761,0 +19838,Pobozowisko,381,573,699513260,10971,0 +19839,A016,585,386,699761749,10256,1 +19840,013,360,516,698641566,9809,0 +19841,mys,570,625,699828685,10311,0 +19842,XXXIII,541,371,698350371,10495,3 +19843,056,360,522,698641566,9809,0 +19844,063,358,513,698641566,9809,0 +19845,Village,527,634,849094067,12154,0 +19846,Ave+Why%21,460,635,698585370,10495,0 +19847,Darma,417,390,356642,9835,0 +19848,Ow+Konfederacja,598,400,848915730,10259,0 +19849,084+KUZYNI+mehehehe,472,634,699336777,9816,0 +19850,Wioska+barbarzy%C5%84ska,416,405,699402816,9835,0 +19851,Deveste+ufam+Tobie,433,619,699783765,6670,0 +19852,Za+rogiem,357,496,699265922,9752,2 +19853,Wioska,371,546,849084005,10178,0 +19854,010,387,421,848921536,4849,0 +19856,Wioska+barbarzy%C5%84ska,636,526,6510480,8057,0 +19857,Pobozowisko,405,600,699513260,10971,0 +19858,Taran,548,366,699170684,9364,0 +19859,A+READY,592,396,699759128,10203,0 +19860,039,491,382,698739350,9513,0 +19861,MojeSzczytToTw%C3%B3jDno,513,361,828637,10495,0 +19862,Lord+Lord+Franek+.%23208,517,359,698420691,10160,0 +19864,Pobozowisko,413,612,699513260,6352,0 +19865,006.+darthmoth298,560,625,699567608,10160,0 +19866,Wioska+barbarzy%C5%84ska,629,553,7047342,10824,0 +19867,A0185,360,485,8841266,10252,0 +19868,w+kupie+si%C5%82a+.,572,619,848995242,10362,0 +19869,Zeta+Reticuli+S2,394,408,699323302,11188,0 +19870,A0230,364,466,8841266,10252,0 +19871,027+czasem+zapija+si%C4%99+smutki,638,471,699272633,8994,0 +19872,K34+-+%5B147%5D+Before+Land,446,370,699088769,11130,4 +19873,Pobozowisko,390,587,699513260,9152,0 +19874,.Elana+Toru%C5%84.,623,571,6929240,9568,0 +19875,c+00448,413,391,3909522,8783,0 +19877,Pobozowisko,391,584,699513260,10957,0 +19878,Bizy+2,499,638,698585370,10201,0 +19879,003,365,533,698641566,9809,0 +19880,%5B0102%5D,406,396,8630972,10559,0 +19881,017,442,629,849084985,10237,0 +19882,c+0044+Wioska,413,388,3909522,10072,0 +19883,B.028,642,516,9188016,10000,0 +19884,Wioska+barbarzy%C5%84ska,616,582,699800992,6057,0 +19885,0064,462,366,699431255,9740,0 +19886,MojeSzczytToTw%C3%B3jDno,520,361,828637,10474,0 +19887,c+Tva,405,394,3909522,10142,0 +19888,-+332+-+RR,591,607,849018239,9569,0 +19889,Zeta+Reticuli+S2,395,405,699323302,11550,0 +19890,Gattacka,614,414,699298370,9761,0 +19891,Taran,556,373,699170684,9389,0 +19892,032,483,362,849010255,6905,0 +19893,Westcoast.010,383,437,848918380,10178,0 +19894,Deveste+ufam+Tobie,432,622,699783765,6393,0 +19895,001%29+Filipets,533,637,7589468,8999,0 +19896,011,589,611,699567608,9505,0 +19897,012,366,534,698641566,9809,3 +19898,211,579,385,849064752,10452,0 +19899,A03,463,633,849037407,9937,9 +19900,Zeta+Reticuli+S2,394,409,699323302,10728,0 +19901,-015-,394,589,699097885,9163,0 +19902,%230032,553,626,1536231,10495,0 +19903,008+Legio+I+Flavia+Martis,639,488,699878150,6765,0 +19904,Mniejsze+z%C5%82o+0023,361,467,699794765,9835,0 +19905,Pobozowisko,412,611,699513260,10755,0 +19907,014+-+Alicante,636,483,698342159,10019,0 +19909,A0115,363,495,8841266,10252,0 +19910,049+%7C+PALESTINA,637,465,9228039,5193,0 +19911,SSJ+033,513,640,699054373,9653,0 +19912,001+Wioska+dechami+zabita,568,377,699509239,7005,0 +19913,%210011,624,438,477415,10971,0 +19914,C+020,587,387,6384450,9968,0 +19915,062,441,623,849084985,7527,0 +19916,R-10,575,382,3600737,8291,0 +19917,Zeta+Reticuli+S2,394,405,699323302,10838,0 +19918,028,367,540,8908002,9950,0 +19919,w%C5%82adca+pieczeni,571,617,848995242,10362,0 +19920,C010,586,388,699761749,8609,0 +19921,009.+Hierosolyma,614,468,849091866,9527,0 +19922,015.+Minas+Tirith,485,616,699494488,10365,0 +19924,114,488,360,699761749,10495,0 +19925,Ow+Konfederacja,600,402,848915730,9976,0 +19926,Wioska+barbarzy%C5%84ska,510,360,699368887,9994,0 +19927,0376,579,618,698659980,8461,0 +19928,Pobozowisko,401,601,699513260,10950,0 +19929,054+Konosu,639,475,7092442,10083,0 +19930,%230048,550,627,1536231,10495,0 +19931,c+077d,419,384,3909522,5426,0 +19932,W.04,585,610,873575,10362,0 +19933,Wioska+barbarzy%C5%84ska,627,563,7047342,10481,0 +19934,014+By%C5%82em+Tam+Kolego,531,363,699491076,10001,0 +19935,178,563,371,849064752,10311,0 +19936,010,466,364,699883079,9716,0 +19937,014,635,533,699413040,9860,0 +19938,A02+Rosario,642,496,699272880,10263,0 +19939,%2A0036+Baraki,620,435,8459255,10158,0 +19940,R-14,577,383,3600737,9013,0 +19941,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,634,8201460,10237,0 +19942,%230024,546,631,1536231,10495,0 +19943,073,434,622,849084985,6758,0 +19944,%23059.,627,439,556154,7439,0 +19945,020+Wioska+barbarzy%C5%84ska,542,366,699854484,10068,0 +19946,045,364,537,6853693,6739,0 +19947,Wioska+barbarzy%C5%84ska,564,378,699072129,10218,0 +19948,045,471,364,698739350,10237,0 +19949,Bagdad,500,364,8847546,9835,0 +19950,A009,513,389,7758085,10094,0 +19951,A0211,361,498,8841266,10252,0 +19952,Lord+Lord+Franek+.%23181,513,358,698420691,9976,0 +19953,011+Legio+I+Flavia+Pacis+%28D%29,637,488,699878150,4931,0 +19954,Pobozowisko,378,573,699513260,10971,0 +19955,A0123,353,495,8841266,10252,0 +19956,162,588,392,849064752,10311,0 +19957,arkach,437,621,8588789,8790,0 +19958,Wioska+barbarzy%C5%84ska,633,533,7047342,10475,0 +19959,015,551,633,873575,10362,6 +19960,Sony+911,581,614,1415009,10259,0 +19961,017,389,415,848921536,3795,0 +19963,SSJ+001,509,641,699054373,9761,0 +19964,Wioska+barbarzy%C5%84ska,619,424,699429153,9825,0 +19966,E+002,596,597,8078914,10476,0 +19967,0036,538,637,698659980,10083,0 +19968,K34+-+%5B149%5D+Before+Land,443,373,699088769,5343,0 +19969,bucks+x+kamiiiru,410,419,848955783,7164,0 +19970,nic,572,624,699828685,10311,0 +19971,107,484,358,699761749,10495,0 +19972,Jojo,392,416,7462660,9709,0 +19973,-+340+-+RR,599,599,849018239,9805,0 +19974,A0207,365,470,8841266,10252,0 +19975,Gniazdko,579,610,8627359,9505,0 +19976,MojeDnoToWaszSzczyt,562,377,699697558,7959,0 +19977,Ave+Why%21,492,641,698585370,9842,7 +19978,Ave+Why%21,492,642,698585370,10203,0 +19979,Kentin+ufam+Tobie,368,450,699783765,10000,0 +19980,c+Kolwicz+003,409,390,3909522,10064,0 +19981,gram+w+kuchni+.,574,622,848995242,10495,0 +19982,R016,383,571,8607734,3980,0 +19983,Horyzont+zdarze%C5%84,558,625,7581876,10019,0 +19984,020,631,549,8428196,9861,0 +19985,Jan+III+Nord+K,633,458,879782,9686,0 +19986,001,589,610,699567608,9031,0 +19987,c+006+Osada,413,394,3909522,10303,6 +19988,a+mo%C5%BCe+off+%3F+%3A%29,636,541,698768565,9722,0 +19989,nic,570,622,699828685,10117,0 +19990,c+Kolwicz+001,407,391,3909522,8832,0 +19991,020,630,549,849095227,9735,0 +19992,Kentin+ufam+Tobie,371,453,699783765,10000,0 +19993,Wioska+s,507,404,849044961,4368,0 +19994,054,444,628,849084985,8754,0 +19995,077,359,519,698641566,9809,0 +19996,0125,435,376,699431255,9730,0 +19997,.achim.,532,397,6936607,10311,0 +19998,0143,432,377,699431255,7249,0 +19999,Ow+Konfederacja,606,407,848915730,10273,8 +20001,025+Rivia,612,579,699272880,10373,0 +20002,006+Legio+I+Flavia+Gallicana,640,491,699878150,8107,0 +20003,0375,565,623,698659980,10252,0 +20004,033,481,361,849010255,6542,0 +20005,U-7,578,385,3600737,7686,0 +20006,0033+Wioska+barbarzy%C5%84ska,410,610,9060641,5807,0 +20007,038+Orthiad,626,434,8337151,10030,0 +20009,Deveste+ufam+Tobie,433,620,699783765,8639,0 +20010,Konfederacja,455,369,848915730,9370,0 +20011,nic,573,622,699828685,10311,0 +20013,Ave+Why%21,468,637,699121671,9809,0 +20014,Pobozowisko,409,607,699513260,10558,0 +20015,Sony+911,582,611,1415009,10221,0 +20016,155+Ale+mnie+g%C5%82%C3%B3wka+boli,376,566,699382126,7241,0 +20017,018+KTW,632,451,848883237,10495,0 +20018,Paulina+Obro%C5%84ca+Kuwety,538,429,699433558,9835,0 +20019,Kentin+ufam+Tobie,369,442,699783765,10000,0 +20020,153+Ale+mnie+g%C5%82%C3%B3wka+boli,376,567,699382126,10495,0 +20021,008,456,366,699883079,9672,0 +20022,017+Legio+XV+Apollinaris,640,497,699878150,4194,0 +20023,Jehu_Kingdom_58,637,476,8785314,6036,0 +20025,Ave+Why%21,459,636,698585370,9029,0 +20026,084,642,511,699351301,6294,0 +20027,kathare,547,636,873575,9860,0 +20028,Kentin+ufam+Tobie,370,457,699783765,10000,0 +20029,0023,538,638,698659980,10083,0 +20030,Wioska+barbarzy%C5%84ska,638,531,7047342,10475,0 +20031,pepe,361,530,849030226,6715,0 +20032,002,384,572,699621601,8746,0 +20033,%23029.516%7C501,635,452,556154,9735,0 +20034,K34+-+%5B146%5D+Before+Land,445,371,699088769,11130,0 +20035,042,367,548,6853693,6425,0 +20036,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,491,637,6180190,9936,0 +20037,080,637,522,699351301,8140,0 +20038,MojeSzczytToTw%C3%B3jDno,522,378,828637,10495,0 +20039,027,361,531,698641566,9809,0 +20040,007,363,519,698641566,4344,4 +20041,0043,620,423,699429153,9825,0 +20042,612%7C422+Wioska+barbarzy%C5%84ska10,612,422,6822957,9827,0 +20043,Ow+Konfederacja+%2B,600,398,848915730,10311,0 +20044,A0202,365,471,8841266,10252,0 +20045,%230027,547,627,1536231,10495,0 +20046,Kentin+ufam+Tobie,366,450,699783765,10014,0 +20047,003,365,542,8908002,9993,4 +20048,009,631,547,849095227,9761,0 +20049,053,364,518,6853693,6381,0 +20050,kathare,547,620,873575,10495,0 +20051,Wioska+barbarzy%C5%84ska,625,567,6929240,8937,0 +20052,021,361,516,698641566,9809,0 +20053,Jednak+wol%C4%99+gofry,496,639,699736927,10311,0 +20054,A0221,366,472,8841266,10252,0 +20055,Westcoast.108,379,432,848918380,10178,0 +20056,yyyy,504,363,699883079,10132,0 +20057,nic,574,621,699828685,10301,0 +20058,CSA,525,362,7651093,6169,0 +20059,A33,463,635,849037407,10495,0 +20060,Pobozowisko,393,587,699513260,10971,0 +20061,Mniejsze+z%C5%82o+0027,363,470,699794765,9229,0 +20062,056+Kuzyn+skonfiskowa%C5%82+Drewnik,378,569,699382126,10487,2 +20063,No+Way,402,470,6258092,9048,0 +20064,%2A5622%2Aa+Weso%C5%82a,638,523,7973893,10287,0 +20065,0057,444,368,699431255,9981,0 +20067,019,445,629,849084985,10178,0 +20068,Westcoast.083,396,411,848918380,10178,0 +20069,Westcoast.109,378,434,848918380,10178,0 +20070,Lecymy+DUR,433,381,6169408,7840,0 +20072,011+Wioska+barbarzy%C5%84ska,535,368,699854484,10178,0 +20073,%5B168%5D,633,547,8000875,6823,0 +20074,026.,643,493,849094609,9816,0 +20075,212,577,380,849064752,10728,0 +20076,0056,449,367,699431255,9998,0 +20078,pepe,361,524,849030226,6048,0 +20079,%230032+gram+w+lig%C4%99,462,364,1238300,10178,0 +20080,051+Wioska+barbarzy%C5%84ska,543,365,699854484,10301,0 +20081,%2AINTERTWINED%2A%2A,504,643,698704189,9711,0 +20082,%C5%BBelazna,506,488,698349125,6502,0 +20083,A+READY,591,403,7915966,10136,0 +20084,kathare,556,632,873575,9983,0 +20085,Og%C3%B3rkowy+baron,401,405,356642,9835,0 +20086,Wioska+barbarzy%C5%84ska,548,365,699072129,10470,0 +20087,C012+Ankhsunamon,623,564,8096537,9747,0 +20088,Jednak+wol%C4%99+gofry,498,639,699725436,10311,0 +20089,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,536,637,7589468,8825,0 +20090,sony911,575,618,1415009,9060,0 +20091,Wied%C5%BAma+-+Dragoni,386,423,698884287,8851,1 +20092,Kentin+ufam+Tobie,367,452,699783765,10000,0 +20093,Zeta+Reticuli+S2,394,413,699323302,10997,0 +20094,%2A0018+Baraki,623,433,8459255,9645,0 +20095,A0148,356,496,8841266,10252,0 +20096,Sony+911,576,617,1415009,10268,0 +20097,003+Hello+Moto,600,419,699491076,10001,0 +20098,0074,559,624,698659980,10083,0 +20100,044,433,389,699783765,10887,0 +20101,%23021.510%7C488,629,439,556154,9735,0 +20102,Wioska+%28029%29,639,472,698232227,8907,0 +20103,Jednak+wol%C4%99+gofry,493,640,699725436,10311,0 +20104,Piek%C5%82o+to+inni,481,383,848956765,10160,0 +20105,Fresio,435,374,699660539,10106,0 +20106,B.037,642,504,9188016,10000,0 +20107,Gattacka,609,408,699298370,8844,0 +20108,Jednak+wol%C4%99+gofry,485,642,699725436,10311,0 +20109,Kentin+ufam+Tobie,365,453,699783765,10000,0 +20110,Pobozowisko,407,608,699513260,8331,0 +20111,Yogi,552,634,2808172,10019,0 +20112,012+Legio+I+Illyricorum,642,487,699878150,7816,0 +20113,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,633,8201460,10237,0 +20115,0019,548,369,699485250,10211,0 +20116,028.+Hakerrrrr,576,385,699799629,6834,0 +20117,0369,561,627,698659980,10316,0 +20119,065,465,361,698739350,10237,0 +20120,0031,508,497,698599365,9490,0 +20121,021+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,630,453,9228039,7939,0 +20122,Wioska+barbarzy%C5%84ska,508,360,699368887,9994,0 +20123,Wioska+barbarzy%C5%84ska,622,568,6929240,8986,0 +20124,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,501,643,699725436,9640,0 +20125,%23063.,622,435,556154,9735,0 +20126,Wioska+3,382,427,699343887,3086,0 +20127,a+mo%C5%BCe+off+%3F+%3A%29,634,539,698768565,10377,0 +20128,Pobozowisko,408,607,699513260,9193,0 +20130,0066,456,369,699431255,10056,0 +20132,084,365,544,6853693,6951,0 +20133,Ave+Why%21,491,643,698585370,9689,0 +20134,011,358,517,698641566,9809,3 +20135,%5B014%5D,636,536,698305474,9809,0 +20136,%2A0031+Baraki,625,437,8459255,10330,0 +20137,018+Tronjheim,626,435,8337151,10160,5 +20138,015,605,596,698786826,10220,0 +20139,25.+Wioska+25,373,552,849091769,10002,0 +20140,011,387,422,848921536,3962,0 +20141,Wioska+barbarzy%C5%84ska,506,363,699368887,9994,0 +20142,Wioska+barbarzy%C5%84ska,514,363,699368887,9994,0 +20143,020,444,631,849084985,9899,0 +20144,Wioska+barbarzy%C5%84ska,387,418,698884287,9203,0 +20145,059,363,513,6853693,9345,0 +20146,025,590,608,698999105,10311,0 +20147,066,468,360,698739350,10237,0 +20148,0046,621,422,699429153,9782,0 +20149,0021,537,638,698659980,10160,0 +20150,Ulu-mulu,415,615,699697558,3386,0 +20151,a+mo%C5%BCe+off+%3F+%3A%29,633,551,698768565,9329,0 +20152,0112,436,378,699431255,9002,0 +20153,093,584,385,849064752,10311,7 +20154,A0186,360,477,8841266,10252,0 +20155,025+Wioska+barbarzy%C5%84ska,538,365,699854484,10068,0 +20156,012+Pole+Mokotowskie,538,468,8155296,4477,0 +20157,Jednak+wol%C4%99+gofry,495,643,699725436,10311,0 +20158,122,490,362,699761749,10495,0 +20159,012,635,549,849095227,9735,3 +20160,067,471,361,698739350,9994,0 +20161,A0143,360,495,8841266,10252,0 +20162,%7CX%7C+Roguebell,467,640,698147372,9191,0 +20163,Wioska,370,547,849084005,10178,0 +20164,Ulu-mulu,420,613,699697558,9808,0 +20165,%C5%9Apij+s%C5%82odko+nale%C5%9Bniczku,483,639,6948793,9835,0 +20166,Osada+koczownik%C3%B3w,376,429,699644054,1244,5 +20167,Westcoast.098,378,430,848918380,10178,0 +20169,Ave+Why%21,470,640,699121671,9809,0 +20170,57.+Wioska+57,366,548,849091769,6858,0 +20171,Pobozowisko,386,587,699513260,9955,0 +20172,%230040,542,631,1536231,10495,0 +20173,Jednak+wol%C4%99+gofry,484,639,699725436,9360,0 +20174,Konfederacja+%2B,456,368,848915730,10001,4 +20175,0408,540,636,698659980,9549,0 +20176,034,483,360,849010255,8092,0 +20177,Kentin+ufam+Tobie,369,456,699783765,10000,0 +20178,%5BB%5D_%5B202%5D+Dejv.oldplyr,431,382,699380607,9733,0 +20179,Lecymy+DUR,441,370,6169408,9450,0 +20180,0041,453,367,699431255,10311,0 +20181,05.+Wioska+5,372,556,849091769,10011,0 +20182,039....STRAZAK,459,363,6920960,10273,0 +20183,Lecymy+DUR,433,373,6169408,5929,0 +20184,Kentin+ufam+Tobie,367,446,699783765,10000,0 +20185,016,611,583,699099811,9835,0 +20186,024+023,533,362,699491076,10001,0 +20187,Lecymy+DUR,443,375,6169408,6466,0 +20188,Wioska+1,382,428,699343887,6029,0 +20189,F+003,637,508,8078914,10050,0 +20190,%7E%7E020%7E%7E,598,605,7829201,9818,0 +20191,037,366,529,698641566,9809,0 +20192,0016+MzM,621,565,698416970,9258,7 +20193,Lecymy+DUR,442,370,6169408,3220,0 +20194,025+026,536,363,699491076,10001,0 +20195,012+Wioska+barbarzy%C5%84ska,567,376,699509239,6340,0 +20196,Jednak+wol%C4%99+gofry,497,640,699725436,10311,0 +20197,129,475,360,7271812,5610,0 +20198,a+mo%C5%BCe+off+%3F+%3A%29,618,579,698768565,9367,0 +20199,033...strazak,461,365,6920960,10559,0 +20200,kathare,552,629,873575,10362,0 +20201,Fresio,434,373,699660539,9924,0 +20202,%2A3+Myszki+Harcuj%C4%85,588,429,848985692,10047,0 +20203,Wioska+barbarzy%C5%84ska,505,359,699368887,7626,0 +20204,007,631,557,849095227,9761,0 +20206,Wioska+barbarzy%C5%84ska,372,554,699326171,8150,0 +20207,%7E%7E038%7E%7E,596,603,7829201,9750,0 +20208,%2A0012+Baraki,620,429,8459255,10251,0 +20209,008G%C4%85siory,450,633,698620694,9738,0 +20210,Wied%C5%BAma+-+Honolulu,381,420,698884287,9474,9 +20212,024,627,561,849095227,9721,0 +20213,Wioska+barbarzy%C5%84ska,633,537,7047342,10481,0 +20214,037,424,385,698364331,10997,0 +20215,068,476,363,698739350,10237,0 +20216,%7CX%7C+Caveham,468,639,698147372,10495,0 +20217,Kentin+ufam+Tobie,371,443,699783765,10000,0 +20218,W.08,582,614,873575,10232,0 +20219,-056-,377,569,699097885,5638,0 +20220,014+181,358,502,698807570,10049,0 +20221,Kentin+ufam+Tobie,366,452,699783765,10000,0 +20222,MojeDnoToWaszSzczyt,558,370,699697558,10495,0 +20223,A014,477,638,699383279,9858,0 +20224,015,588,609,699567608,9646,0 +20225,062,427,623,699783765,4813,0 +20226,Pobozowisko,398,593,699513260,9632,0 +20227,031+181,360,500,698807570,9160,0 +20228,a+mo%C5%BCe+off+%3F+%3A%29,618,576,698768565,9489,0 +20229,063+%23%C5%BBWMP,370,544,8908002,9565,0 +20231,Westcoast.101,376,430,848918380,10178,7 +20233,A0187,360,487,8841266,10252,0 +20234,0014+MzM,613,581,698416970,9258,0 +20235,W.181%2F19,639,529,2999957,10242,0 +20236,MojeSzczytToTw%C3%B3jDno,525,363,828637,10474,0 +20237,081,482,360,698739350,10378,0 +20238,028,360,530,698641566,9809,0 +20239,0118,434,376,699431255,9735,0 +20240,Gattacka,608,412,699298370,9751,0 +20241,38.+Wioska+38,376,569,849091769,9800,0 +20242,0055,460,366,699431255,10311,0 +20243,Gattacka,610,415,699298370,9747,0 +20244,MojeSzczytToTw%C3%B3jDno,511,361,828637,10495,0 +20245,MojeSzczytToTw%C3%B3jDno,524,365,828637,10476,0 +20246,06.+Wioska+6,371,560,849091769,8861,0 +20247,046,604,593,698786826,10216,0 +20248,023,363,534,698641566,9809,0 +20249,VN+Killua+Zoldyck,467,365,699883079,9643,0 +20250,058,364,538,8908002,3779,0 +20251,-+341+-+RR,593,609,849018239,9809,0 +20252,Mniejsze+z%C5%82o+0028,364,461,699794765,7848,0 +20253,030+Wioska+barbarzy%C5%84ska,540,364,699854484,9976,0 +20254,Wioska+barbarzy%C5%84ska,635,543,7047342,10484,0 +20255,-040-,387,579,699097885,9428,2 +20256,002,604,597,698786826,10211,0 +20257,Jehu_Kingdom_35_,627,447,8785314,9993,0 +20258,014,588,608,699567608,9519,0 +20259,.Wioska+barbarzy%C5%84ska,626,564,6929240,6509,0 +20260,072,430,375,699796330,7230,0 +20261,A0144,358,494,8841266,10252,0 +20262,Wioska+barbarzy%C5%84ska,629,555,7047342,10487,0 +20263,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,488,637,6180190,9164,0 +20264,Ow+Konfederacja,606,403,848915730,10273,0 +20265,0053,614,412,699429153,9825,0 +20266,Pobozowisko,405,606,699513260,9815,5 +20267,Wioska+4,382,429,699343887,3086,0 +20268,Wioska+barbarzy%C5%84ska,513,362,699368887,9994,0 +20269,Astapor,466,636,6948793,10362,0 +20270,Kentin+ufam+Tobie,367,448,699783765,10000,0 +20271,A0188,364,486,8841266,10252,0 +20272,Jednak+wol%C4%99+gofry,490,641,699725436,9968,0 +20273,Og%C3%B3rkowy+baron,401,396,356642,9835,2 +20274,Knowhere,357,506,699723284,5060,0 +20275,tutaj,387,417,698884287,9416,0 +20276,005,370,546,6853693,10484,5 +20277,001.+Las+Sherwood,449,378,698364331,10362,0 +20278,WE+ARE+READY%21,593,398,699759128,9716,0 +20279,049.,469,635,849034882,10066,0 +20280,Pobozowisko,399,596,699513260,10951,4 +20281,.%3A091%3A.+%C5%81OBUZIK,553,366,848934935,5966,0 +20282,.Krakers.+006,361,479,9163140,2064,0 +20283,043,364,521,6853693,5707,0 +20284,C+022,589,391,6384450,4953,0 +20285,%3A%3A%3A+B+%3A%3A%3A+I,365,475,848917570,4155,0 +20286,0238,532,634,698659980,9847,0 +20287,.Krakers.+001,364,481,9163140,5136,0 +20288,015,610,583,699099811,10252,0 +20289,Kentin+ufam+Tobie,365,452,699783765,10000,0 +20290,018,444,629,849084985,9433,0 +20291,aaaa,474,637,6948793,9899,0 +20292,Knowhere,382,496,699723284,10506,0 +20293,%7E%7E026%7E%7E,595,605,7829201,9794,0 +20294,Ave+Why%21,455,636,698585370,7473,0 +20295,009.+Manchester,634,446,849095599,9835,0 +20296,004+Legio+I+Flavia+Constantia+R,640,488,699878150,5794,0 +20297,110,478,360,7271812,10495,0 +20298,c+0013,411,389,3909522,10237,0 +20299,%2A2%2A,580,385,849064614,10104,0 +20300,026+025,542,362,699491076,10001,0 +20301,027+028,538,363,699491076,10001,0 +20302,Westcoast.081,397,407,848918380,10178,0 +20303,Bagdad,424,383,8847546,9037,0 +20304,A0288,358,481,8841266,10252,0 +20305,0006,480,637,6180190,10359,0 +20306,213,579,387,849064752,9104,0 +20307,009+Wioska+barbarzy%C5%84ska,566,376,699509239,4773,0 +20308,021.,634,457,849094609,9830,0 +20309,016,607,595,698786826,10216,0 +20310,%3D025%3D+Wioska+barbarzy%C5%84ska,628,552,3781794,7741,0 +20311,055,439,625,849084985,8126,0 +20312,056,440,624,849084985,9835,0 +20313,019,430,622,699783765,5610,0 +20314,A015,471,641,699383279,9474,0 +20315,01.+Wioska+1,373,560,849091769,9745,0 +20316,Pobozowisko,402,604,699513260,9233,0 +20317,.%3A022%3A.+%C5%81OBUZIK,554,368,848934935,10252,0 +20318,005,384,426,848921536,9395,0 +20319,Lord+Lord+Franek+.%23203,515,358,698420691,10362,0 +20320,Jaaa,615,582,698635863,9677,0 +20321,Pobozowisko,391,587,699513260,10971,0 +20322,042,609,591,698786826,10221,0 +20323,%2AINTERTWINED%2A,510,639,698704189,9711,0 +20324,016.+Smoke,636,455,849095599,8911,0 +20325,keepo,477,513,848967710,4141,0 +20327,Salamony,626,570,849095778,6467,0 +20328,%23044,492,617,699605333,10393,0 +20329,%3A%3A%3A+A+%3A%3A%3A+II,363,475,848917570,4987,0 +20330,013+Laleczka+Chucky,539,365,699491076,10001,0 +20331,Gattacka,612,414,699298370,9745,0 +20332,Pobozowisko,399,594,699513260,10951,0 +20333,a+mo%C5%BCe+off+%3F+%3A%29,632,558,698768565,9353,0 +20334,0010+MzM,618,544,698416970,9258,0 +20335,South+K35,551,368,699146580,10042,0 +20337,.Wioska+barbarzy%C5%84ska,627,562,6929240,5788,0 +20338,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,491,639,698585370,9545,0 +20339,Lord+Lord+Franek+.%23198,514,357,698420691,10362,0 +20340,kathare,548,618,873575,10495,0 +20341,Syringa+vulgaris,494,356,699883079,9856,0 +20342,Jan+019+K,640,471,879782,9425,0 +20343,020,610,585,699099811,9835,0 +20344,c+Wioska,416,385,3909522,7331,0 +20345,170,573,378,849064752,10311,0 +20346,0381,583,617,698659980,10019,0 +20347,062,359,511,698641566,9809,0 +20348,004,360,544,8908002,9993,0 +20349,015+Legio+I+Flavia+Virtutis+%28G%29,644,489,699878150,10034,0 +20350,Mniejsze+z%C5%82o+0060,363,460,699794765,6218,0 +20351,-+330+-+RR,599,603,849018239,9955,0 +20352,Kentin+ufam+Tobie,375,438,699783765,10000,0 +20353,010+Wioska+barbarzy%C5%84ska,569,376,699509239,5348,0 +20355,030,585,609,698999105,10311,0 +20356,Taran,545,367,699170684,9364,0 +20358,%230012,550,628,1536231,10495,0 +20359,023+Legio+I+Martia,641,499,699878150,4075,0 +20360,Lecymy+DUR,440,369,6169408,3649,0 +20361,Lord+Lord+Franek+.%23205,519,359,698420691,10362,0 +20362,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,640,1434753,10068,0 +20363,Pobozowisko,388,592,699513260,10928,0 +20364,0380,582,616,698659980,10019,0 +20365,lady+anima,512,573,699703642,10451,0 +20366,0039,614,418,699429153,9746,0 +20367,Gattacka,610,410,699298370,9367,0 +20368,Ave+Why%21,467,637,698585370,9320,0 +20369,Ulu-mulu,418,619,699697558,2262,0 +20370,-+331+-+RR,594,609,849018239,9894,0 +20371,a+mo%C5%BCe+off+%3F+%3A%29,636,544,698768565,8852,0 +20372,074,642,524,699351301,9761,0 +20373,%5B022%5D,635,527,698305474,9809,0 +20374,0250,535,633,698659980,10019,0 +20375,040,440,628,849084985,9070,0 +20376,069,477,363,698739350,10237,0 +20377,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,518,642,1434753,10068,0 +20378,Wioska+barbarzy%C5%84ska,625,569,6929240,9302,0 +20379,Wioska+barbarzy%C5%84ska,525,359,1990750,10068,0 +20380,Pobozowisko,390,584,699513260,8916,0 +20381,aaaa,467,636,6948793,10178,0 +20382,kathare,557,629,873575,10362,0 +20383,49.+Wioska+49,364,548,849091769,6391,0 +20384,073+Tu+si%C4%99+nie+%C5%9Bpi+harry88,382,572,699382126,10475,0 +20385,WB003,581,615,8627359,9345,0 +20386,Pobozowisko,398,601,699513260,10966,0 +20387,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,634,8201460,10237,0 +20388,094.+Zama+Regia,634,455,849091866,8397,0 +20389,0120,436,377,699431255,7887,0 +20390,Oxalis+acetosella,492,356,699883079,9513,0 +20391,MojeSzczytToTw%C3%B3jDno,521,361,828637,10475,0 +20392,Kentin+ufam+Tobie,371,446,699783765,10000,0 +20393,MojeSzczytToTw%C3%B3jDno,524,362,828637,10495,0 +20395,c+Robcio+80004,414,391,3909522,9311,0 +20396,A0163,361,477,8841266,10252,0 +20397,South+K35,550,366,699146580,10042,0 +20398,%7E%7ELataj%C4%85cyHolender%7E%7E,600,498,9174887,10143,0 +20399,0386,586,615,698659980,10019,0 +20400,001+%7C+PALESTINA,633,444,9228039,9544,0 +20401,050,612,585,698786826,9753,0 +20402,Za+sciana,359,496,699265922,9752,7 +20403,Wioska+barbarzy%C5%84ska,378,572,849095992,5797,0 +20404,Wioska+barbarzy%C5%84ska,508,359,699368887,9994,0 +20405,Jednak+wol%C4%99+gofry,499,643,699725436,10290,0 +20406,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,532,640,7589468,9211,0 +20407,002K%C4%85t%C3%B3wka+aku,446,631,698620694,9708,0 +20408,B006,603,409,699761749,10495,0 +20409,Gattacka,608,414,699298370,9357,5 +20410,--3.+Zadupie,390,409,698345556,10290,0 +20411,A0208,366,473,8841266,10252,0 +20412,017+-+Mroczna+Osada,626,439,849035905,10329,0 +20413,0025+MzM,638,460,698416970,9258,2 +20414,109+Wioska+barbarzy%C5%84ska,536,361,699491076,10001,0 +20415,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki1,523,636,849090130,10122,0 +20417,081,641,523,699351301,6255,0 +20419,A005,477,639,699383279,9808,0 +20420,42.+Wioska+42,374,566,849091769,8102,0 +20421,B017,607,408,699761749,10495,0 +20422,B.061,642,509,9188016,10000,0 +20423,Jehu_Kingdom_36_,628,443,8785314,9993,0 +20424,03.+Wioska+3,372,561,849091769,9751,0 +20425,.050.,483,361,698489071,10160,0 +20426,000002,584,614,873575,10362,4 +20428,Pobozowisko,398,594,699513260,10971,0 +20429,A0149,356,491,8841266,10252,0 +20430,028+Wioska+barbarzy%C5%84ska,539,367,699854484,10068,0 +20431,23.+Wioska+23,365,548,849091769,8524,0 +20432,a+mo%C5%BCe+off+%3F+%3A%29,620,577,698768565,9969,0 +20433,A0189,357,482,8841266,10252,0 +20435,102,485,359,699761749,10495,0 +20436,017+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,627,441,9228039,9544,0 +20437,032...strazak,460,363,6920960,10444,0 +20438,yyyy,492,362,699883079,10178,2 +20440,060,420,381,698160606,7872,0 +20441,-+345+-+RR,599,602,849018239,9816,0 +20442,A0164,360,489,8841266,10252,0 +20443,017,608,593,698786826,10217,0 +20444,Wioska+barbarzy%C5%84ska,542,363,7158871,6373,0 +20445,%3A%3A%3A+A+%3A%3A%3A,364,476,848917570,6635,0 +20446,SSJ+023,512,641,699054373,9761,0 +20447,Zeta+Reticuli+S2,395,404,699323302,10795,0 +20448,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,480,638,6180190,9647,0 +20449,%7E%7E001%7E%7E,599,605,7829201,9694,8 +20450,Pobozowisko,410,608,699513260,8775,0 +20451,Zach%C3%B3d+-+015,388,580,225023,7042,0 +20452,Ave+Why%21,462,640,698585370,10362,0 +20453,Og%C3%B3rkowy+baron,401,397,356642,9835,0 +20454,0010,579,386,699485250,10168,1 +20455,0379,582,618,698659980,10019,0 +20456,A0141,356,493,8841266,10252,0 +20457,Kentin+ufam+Tobie,372,439,699783765,10014,0 +20458,Wioska+barbarzy%C5%84ska,630,556,7047342,10636,0 +20459,070,359,521,698641566,8824,0 +20460,c+002+Wioska,410,389,3909522,10300,0 +20461,Zeta+Reticuli+S2,393,409,699323302,10997,0 +20462,045.+Olisipo,636,456,849091866,9241,0 +20463,068,505,367,698739350,8591,0 +20464,Pigi+1,620,588,699778867,12154,0 +20465,Wioska+barbarzy%C5%84ska,623,569,6929240,9191,0 +20466,Kentin+ufam+Tobie,370,451,699783765,10000,0 +20468,006,367,539,8908002,9993,0 +20469,Deveste+ufam+Tobie,437,629,699783765,8468,0 +20470,006,386,578,699621601,4339,0 +20471,616%7C426+Wioska+barbarzy%C5%84ska17,616,426,6822957,9721,0 +20472,011,362,543,8908002,7617,0 +20473,Wioska+barbarzy%C5%84ska,357,509,698807570,7035,0 +20474,002+P%C5%82aska+Kotlina,623,425,699429153,9847,2 +20475,024+181,357,503,698807570,10019,0 +20476,Pobozowisko,385,586,699513260,10957,0 +20478,M181_058,371,437,393668,9886,0 +20480,030+roni21,640,499,9238175,10282,0 +20481,0003,479,640,699117178,5297,0 +20482,%5BC%5D_%5B004%5D+Dejv.oldplyr,358,474,699380607,10495,0 +20483,041,501,357,849010255,7298,0 +20484,Wioska+barbarzy%C5%84ska,630,554,7047342,10487,0 +20485,011+Miyagi,640,480,7092442,10160,3 +20486,Westcoast.107,372,432,848918380,10178,0 +20487,Pobozowisko,403,598,699513260,10957,0 +20488,A017,584,386,699761749,7071,0 +20489,Ulu-mulu,414,613,699697558,3468,0 +20490,057,441,630,849084985,10146,0 +20491,032+181,357,505,698807570,8326,0 +20492,A36,474,643,849037407,9940,0 +20493,010+KTW,625,432,848883237,10495,0 +20494,0028,537,637,698659980,10019,0 +20495,0039,449,366,699431255,10015,0 +20496,kathare,551,641,873575,10285,0 +20497,%7E%7E034%7E%7E,593,608,849018239,9467,0 +20498,0124,533,635,698659980,10083,0 +20499,089.+Zatoka+Szara,636,457,8337151,10362,0 +20500,036,365,529,698641566,9809,0 +20501,005.,638,477,849094609,9656,0 +20502,0064,639,528,6510480,9238,0 +20503,Wioska+barbarzy%C5%84ska,363,528,699425709,2352,0 +20504,033+181,360,501,698807570,8099,0 +20505,Wioska+barbarzy%C5%84ska,525,638,7756002,9924,0 +20506,MojeDnoToWaszSzczyt,557,368,699697558,10495,6 +20507,Majin+Buu+012,438,563,699054373,9357,0 +20508,072,363,523,6853693,7389,0 +20509,Kentin+ufam+Tobie,373,445,699783765,10000,5 +20511,Wioska+barbarzy%C5%84ska,394,404,6171569,2574,0 +20512,SSJ+032,510,643,699054373,9761,0 +20513,Pobozowisko,392,596,699513260,10558,0 +20514,Ow+Konfederacja,600,403,848915730,10273,0 +20515,005+Wioska+barbarzy%C5%84ska,568,376,699509239,4966,0 +20516,Skellige,529,365,1990750,10068,0 +20517,0038,615,417,699429153,8754,0 +20518,004+181,355,499,698807570,9806,0 +20519,075,366,537,6853693,6221,0 +20520,107,443,617,849084985,7815,0 +20521,%23028.517%7C500,636,451,556154,9735,0 +20522,A0076,366,468,8841266,10252,3 +20523,Kentin+ufam+Tobie,367,455,699783765,10000,0 +20524,A0190,361,487,8841266,10252,0 +20525,Wioska+barbarzy%C5%84ska,521,360,699208929,7157,0 +20526,012+181,359,500,698807570,10057,0 +20527,005,429,621,699783765,4531,0 +20528,ADEN,581,434,698588535,9730,0 +20529,ETAT+Z+PO%C5%9AREDNIAKA,423,618,848913998,8044,0 +20530,Wioska+%28035%29,637,459,698232227,6060,0 +20531,c+001+Wioska,410,387,3909522,10083,0 +20532,ETAT+Z+PO%C5%9AREDNIAKA,426,619,848913998,7584,0 +20533,013+181,359,499,698807570,9473,0 +20534,Wioska+barbarzy%C5%84ska,622,571,6929240,8998,0 +20535,Fresio,435,373,699660539,9907,0 +20536,086,366,545,6853693,6232,0 +20537,kathare,547,637,873575,10362,0 +20538,007+181,356,501,698807570,10049,0 +20539,a+mo%C5%BCe+off+%3F+%3A%29,637,544,698768565,9348,0 +20540,SSJ+058,515,642,699054373,9281,0 +20541,A005,598,394,699761749,7502,0 +20542,B008,601,405,699761749,10300,7 +20543,030,642,523,849006412,5989,0 +20544,074+Najwi%C4%99kszy+dzban,377,564,699382126,10490,0 +20545,K34+-+%5B083%5D+Before+Land,447,367,699088769,10259,9 +20548,0103,420,618,699697558,7091,0 +20549,001+VC+Vandip,392,413,3108144,7866,0 +20550,024,448,633,849084985,10229,3 +20551,off+100+%25,367,555,849012521,9033,0 +20552,011+181,359,505,698807570,10051,0 +20553,009Wr%C3%B3bl%C3%B3wki,451,632,698620694,9358,0 +20554,Wioska+barbarzy%C5%84ska,442,369,699191455,10173,0 +20555,Kentin+ufam+Tobie,369,440,699783765,10247,0 +20557,Wioska+barbarzy%C5%84ska,624,573,6929240,8930,0 +20558,018+-+Mroczna+Osada,626,438,849035905,12146,0 +20559,021+KUZYNI,486,641,699336777,10104,0 +20560,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,533,640,7589468,8816,0 +20561,.%3A025%3A.+%C5%81OBUZIK,556,368,848934935,9210,0 +20562,166,580,381,849064752,10311,0 +20563,0021,414,612,9060641,6676,0 +20564,Wioska+barbarzy%C5%84ska,630,559,7047342,10487,0 +20565,WelcomeToTheJungle,621,505,699795378,10362,0 +20566,%2A0020+Baraki,620,428,8459255,10082,0 +20567,023,448,632,849084985,10218,0 +20568,06.+Nevada,407,613,9060641,10941,0 +20569,Pobozowisko,389,587,699513260,7643,0 +20570,a+mo%C5%BCe+off+%3F+%3A%29,638,545,698768565,9329,0 +20571,VN+Neferpitou,493,357,699883079,10178,0 +20572,%3D001-006-A%3D%2B%40%23-4-,569,626,699287032,10193,0 +20573,001+myself,567,636,699828685,10068,0 +20575,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,639,1434753,10068,0 +20576,a+mo%C5%BCe+off+%3F+%3A%29,625,574,698768565,9544,0 +20577,Kentin+ufam+Tobie,372,440,699783765,10000,0 +20578,Taran,544,365,699170684,9707,0 +20579,Maszlug+kolonia+XIII,370,437,848977649,5215,0 +20580,Nowa+23,614,578,698702991,9827,0 +20581,0652,567,629,698659980,9839,0 +20582,036+Nirasaki,638,475,7092442,10495,0 +20583,006,399,600,9264752,10495,0 +20584,004+Umy%C5%82em+Z%C4%85bki,534,362,699491076,10001,0 +20585,0066,638,517,6510480,8782,0 +20586,Wioska+barbarzy%C5%84ska,529,361,1990750,9976,0 +20587,024+KTW,637,455,848883237,10495,0 +20588,028+i+bywa+czila%C5%82towo,639,471,699272633,9594,0 +20589,B.039,644,502,9188016,10003,0 +20590,020+This+land+is+ours%21,643,491,699878150,9909,0 +20591,011.+Barbarian+Village,555,626,699567608,9335,0 +20592,Lord+Lord+Franek+.%23211,518,359,698420691,10362,0 +20593,Deveste+ufam+Tobie,435,627,699783765,10083,0 +20594,Westcoast.117,373,435,848918380,10178,0 +20595,%2AINTERTWINED%2A,512,623,698704189,9711,0 +20596,012,388,417,848921536,4189,0 +20597,A0155,359,486,8841266,10252,0 +20598,0409,543,637,698659980,8425,0 +20599,019+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,629,441,9228039,9544,0 +20600,0041,616,423,699429153,9825,0 +20601,A19+Wioska+barbarzy%C5%84ska,463,634,849037407,10223,0 +20602,0555,567,628,698659980,10495,0 +20603,K43+x002,393,406,698364331,5007,0 +20604,Wioska+barbarzy%C5%84ska,639,482,698613394,1638,0 +20605,022+VC+HMS+Cheshire,383,422,3108144,8648,0 +20606,Taki+Pan,520,357,698420691,10362,0 +20607,035,365,532,698641566,10085,0 +20608,049,357,517,698641566,9809,0 +20609,075.+Marna,627,435,8337151,10083,0 +20610,022%7C%7C+Leo+Minor,487,641,849035525,10019,0 +20611,017,361,540,8908002,10005,0 +20612,c+Kolwicz+002,408,390,3909522,9414,0 +20613,Pobozowisko,404,605,699513260,7884,0 +20614,Mako+Reactor+1+-+B5F,553,632,8199417,3360,0 +20615,-048-,381,575,699097885,7047,0 +20616,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,636,8201460,10237,0 +20617,c+Wioska,416,387,3909522,8301,0 +20618,062,588,391,7271812,5042,0 +20619,kathare,555,630,873575,10268,0 +20620,11.+Wioska+11,374,556,849091769,10003,0 +20621,Ow+Konfederacja+%2B,599,399,848915730,10311,0 +20623,Kentin+ufam+Tobie,369,443,699783765,10000,0 +20624,A024,585,384,699485250,10168,0 +20626,0059,535,634,698659980,10160,0 +20627,.%3A060%3A.+%C5%81OBUZIK,508,358,848934935,10311,0 +20628,kathare,555,633,873575,10203,0 +20629,017,610,407,699298370,9454,0 +20630,Pobozowisko,399,595,699513260,10950,0 +20631,009,603,592,698786826,10211,0 +20632,029,360,529,698641566,9809,0 +20633,K34+-+%5B148%5D+Before+Land,445,369,699088769,11130,0 +20634,Wioska+barbarzy%C5%84ska,629,557,7047342,10481,0 +20635,Deveste+ufam+Tobie,438,630,699783765,8725,0 +20636,025,643,522,699413040,9860,0 +20637,Jednak+wol%C4%99+gofry,492,638,699725436,9788,0 +20638,Wioska+barbarzy%C5%84ska,511,358,699368887,9994,0 +20639,%5B007%5D,455,635,8729672,8785,0 +20640,Pobozowisko,411,608,699513260,5134,0 +20641,Kentin+ufam+Tobie,368,440,699783765,10000,0 +20642,033+Ch%C5%82opaki+nie+bijcie,631,440,698829590,4767,0 +20643,kathare,549,636,873575,9851,0 +20644,0556,563,629,698659980,10362,0 +20645,Wioska+barbarzy%C5%84ska,629,437,699429153,9247,0 +20647,Wioska+barbarzy%C5%84ska,634,548,7047342,10484,0 +20649,0006,578,621,698659980,10252,8 +20650,053,614,586,698786826,6591,0 +20651,011Deszcz,450,630,698620694,9835,0 +20652,071,356,512,698641566,9809,0 +20653,Ulu-mulu,419,620,699697558,2956,0 +20654,214,576,380,849064752,7925,0 +20655,0008,572,623,698659980,10252,2 +20656,Bagdad,499,360,8847546,10096,0 +20657,%230025,542,637,699728159,9761,0 +20658,0115,434,375,699431255,10019,0 +20659,aaaa,484,642,6948793,10068,0 +20660,B%C5%82aszki,625,572,849095778,10718,0 +20661,B.036,640,504,9188016,10000,0 +20662,0557,568,627,698659980,10019,0 +20663,003,373,540,6853693,10481,0 +20664,036+%7C+PALESTINA,636,464,9228039,7565,0 +20666,Kentin+ufam+Tobie,373,442,699783765,10000,0 +20667,Karka-han+%28LazyShiro%29,413,578,698769107,9835,0 +20668,022,447,632,849084985,10285,0 +20669,Wioska+barbarzy%C5%84ska,530,360,1990750,10068,0 +20670,SSJ+046,515,644,699054373,9761,0 +20671,C+012,590,390,6384450,5425,0 +20672,070,470,365,698739350,9761,0 +20673,B.042,642,519,9188016,10000,0 +20674,SSJ+071,504,641,699054373,8184,0 +20675,113,476,358,7271812,10444,0 +20677,A0191,360,486,8841266,10252,0 +20679,Jednak+wol%C4%99+gofry,488,639,699725436,8760,0 +20680,010+181,355,503,698807570,10048,0 +20681,Westcoast.096,392,421,848918380,10178,0 +20682,jaaa,630,563,698635863,10495,0 +20683,Ave+Why%21,462,639,698585370,10471,0 +20684,MELISKA,358,469,699794765,8894,0 +20686,Z001,523,359,699208929,10089,0 +20687,0558,565,626,698659980,9756,9 +20688,%7E%7E015%7E%7E,609,595,7829201,9819,0 +20689,A0134,356,489,8841266,10252,0 +20690,A+READY,594,396,699759128,10290,6 +20691,061,615,589,698786826,5762,0 +20692,%21OFF+100+%25,384,585,849012521,10478,0 +20693,004,385,581,699621601,9593,0 +20694,Wioska+barbarzy%C5%84ska,511,360,699368887,9994,0 +20695,A013,473,641,699383279,9785,0 +20696,Wioska+barbarzy%C5%84ska,628,561,6929240,7268,0 +20697,Pobozowisko,406,610,699513260,8825,0 +20698,B005,645,494,9314079,9821,0 +20699,Gattacka,611,410,699298370,9897,0 +20700,Jaaa,570,559,698635863,10495,0 +20701,The+Game+Has+Only+Just+Begun,359,533,9280477,9976,0 +20702,Pobozowisko,387,583,699513260,10971,0 +20703,150+Ale+mnie+g%C5%82%C3%B3wka+boli,376,568,699382126,5173,0 +20704,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki3,523,638,849090130,10068,0 +20705,%230023,517,639,699728159,5933,0 +20706,Taran,557,369,699170684,9379,0 +20707,Knowhere,380,497,699723284,10452,0 +20708,kathare,556,634,873575,10495,0 +20709,%23023.511%7C491,630,442,556154,9735,0 +20710,Niegodziwo%C5%9Bci,547,364,699072129,10636,0 +20711,A0192,355,485,8841266,10252,0 +20712,%5B001%5D,459,634,699238479,12154,0 +20713,c+080d,416,383,3909522,5654,0 +20714,066,361,512,698641566,9809,0 +20715,038,371,565,8908002,9993,0 +20716,B020,645,501,9314079,9818,0 +20717,Wioska+barbarzy%C5%84ska,367,458,3698627,9962,0 +20718,021,449,631,849084985,10285,0 +20719,Nowa+22,619,571,698702991,9835,0 +20720,031,362,532,698641566,9656,0 +20721,0387,586,616,698659980,10019,0 +20722,005,458,367,699883079,9653,0 +20723,Bagdad,500,360,8847546,9976,0 +20724,001+Legio+I+Adiutrix+%28G%29,641,490,699878150,9785,0 +20725,.Wioska+.,639,537,6929240,5553,0 +20726,0559,567,623,698659980,10252,0 +20727,026+181,356,504,698807570,10495,0 +20728,A0214,364,469,8841266,10252,0 +20729,035+Y13J,644,493,2135129,9553,0 +20730,051+Kuzyn+skonfiskowa%C5%82+Eneid%C4%99,379,578,699382126,10474,0 +20731,Pobozowisko,395,598,699513260,9559,0 +20732,.%3A085%3A.+%C5%81OBUZIK,555,369,848934935,10042,0 +20733,007.+Acapulco,636,454,849095599,9835,6 +20734,a+mo%C5%BCe+off+%3F+%3A%29,625,575,698768565,9555,0 +20735,-034-,383,586,699097885,4118,0 +20736,017,544,524,699316421,9665,0 +20737,%2A%2AA+bo+co...,576,624,699443920,9761,0 +20738,Szlachcic+059,546,522,758104,5292,0 +20739,136,578,383,849064752,10311,0 +20740,069,356,518,698641566,9592,0 +20741,Wioska+barbarzy%C5%84ska,435,629,6910361,6050,0 +20742,kathare,557,627,873575,10362,6 +20743,017,635,534,699413040,9860,0 +20744,Deveste+ufam+Tobie,434,623,699783765,6700,0 +20745,005.+Maroko,638,455,849095599,9835,0 +20746,The+Game+Has+Only+Just+Begun,357,527,9280477,9976,0 +20747,kathare,557,633,873575,10268,0 +20748,180,581,618,8627359,9285,0 +20749,Ave+Why%21,469,638,698585370,4833,0 +20750,Pobozowisko,389,584,699513260,8556,0 +20751,073,356,513,698641566,9809,0 +20752,a+mo%C5%BCe+off+%3F+%3A%29,619,579,698768565,9534,0 +20753,WE+ARE+READY%21,594,397,1553947,8411,0 +20754,Lord+Lord+Franek+.%23219,518,357,698420691,10362,0 +20755,a+mo%C5%BCe+off+%3F+%3A%29,637,539,698768565,9411,0 +20756,%5B0008%5D,559,633,699567608,10253,0 +20757,R-12,582,384,3600737,8319,0 +20758,xxx,504,445,698239813,10495,0 +20759,%2A0005+Baraki,618,424,8459255,10679,0 +20760,024,639,523,699413040,9860,0 +20761,0097,539,633,698659980,10083,0 +20762,002+Legio+XXI+Rapax,643,488,699878150,7529,0 +20763,%7E%7E017%7E%7E,614,589,7829201,9814,0 +20764,018+Legio+I+Pontica,641,498,699878150,4152,0 +20765,The+Game+Has+Only+Just+Begun,359,528,9280477,5279,0 +20766,020.,640,461,849094609,10083,0 +20767,0137,439,372,699431255,8093,0 +20768,Pobozowisko,401,598,699513260,10735,0 +20769,Wioska+zielonelody,429,625,2105150,12154,0 +20770,0026+MzM,639,462,698416970,9258,0 +20771,016,428,627,699783765,4196,0 +20772,0020,414,611,9060641,6726,0 +20773,071,470,364,698739350,10237,0 +20774,0128,438,375,699431255,7887,0 +20775,Wioska+barbarzy%C5%84ska,436,369,699308637,10481,0 +20776,0024,539,639,698659980,10160,0 +20777,-001-+Celia,558,367,699072129,10220,0 +20778,jaaa,634,555,698635863,10728,0 +20779,015,361,539,8908002,9548,0 +20780,%5B0011%5D,559,629,699567608,9016,0 +20781,%2A5603%2A+KKS+Kalisz,620,574,7973893,10287,2 +20782,Wsch%C3%B3d+Droga+003,637,545,698562644,10311,0 +20783,0128,536,641,698659980,10019,0 +20784,060,427,621,699783765,5831,0 +20785,076,364,539,6853693,6671,0 +20786,MojeDnoToWaszSzczyt,559,371,699697558,10495,0 +20787,off+100+%25,382,581,849012521,10254,0 +20788,011.+Koczkodan,637,457,849095599,9860,0 +20789,035,487,361,849010255,7036,0 +20790,Jednak+wol%C4%99+gofry,486,639,6948793,9811,0 +20791,Westcoast.105,375,435,848918380,10178,0 +20792,016+181,354,501,698807570,9390,0 +20793,Bagdad,473,389,8847546,10654,0 +20794,64.+Wioska+64,369,563,849091769,7604,0 +20795,0111,419,619,699697558,1781,0 +20796,Gattacka,609,407,699298370,9720,0 +20797,Lord+Lord+Franek+.%23212,511,356,698420691,10362,0 +20798,.004.K%C5%82alaLumpur,567,372,699072129,10229,0 +20799,003+Niska+G%C3%B3ra,617,423,699429153,9899,0 +20800,.%3A118%3A.+Niangmen,506,396,848934935,9835,0 +20802,A0218,363,472,8841266,10252,0 +20803,.002.Alabastia,563,375,699072129,10232,0 +20804,019,359,524,698641566,9809,8 +20805,Pobozowisko,395,587,699513260,8762,0 +20806,-+338+-+RR,592,607,849018239,9883,0 +20807,MojeDnoToWaszSzczyt,562,369,699697558,10495,0 +20808,Lord+Lord+Franek+.%23199,513,357,698420691,10362,0 +20809,025+Wioska,645,487,699671454,9071,0 +20810,A0173,357,478,8841266,10252,0 +20811,Pobozowisko,391,593,699513260,8721,0 +20812,020,642,475,849093875,3746,0 +20813,A0080,355,492,8841266,10252,0 +20814,039+Maryland,607,481,7092442,10495,0 +20815,.001.Xenomorf,564,370,699072129,10237,0 +20816,Tylko+nie+p%C5%82acz,457,601,699364813,9702,0 +20817,Kentin+ufam+Tobie,363,455,699783765,10000,0 +20818,Drewno,533,642,7589468,8819,1 +20819,Mniejsze+z%C5%82o+0045,364,465,699794765,6635,0 +20820,Pobozowisko,405,604,699513260,8956,0 +20821,-017-,391,589,699097885,8988,0 +20822,017+FOXX,641,494,9238175,10409,0 +20823,C007,587,385,699761749,7816,0 +20824,077,481,359,698739350,10713,0 +20825,053,369,549,8908002,9993,0 +20826,007Przeci%C4%85g,447,631,698620694,9782,0 +20827,ETAT+Z+PO%C5%9AREDNIAKA,422,618,848913998,6882,0 +20828,015,638,522,699413040,9860,0 +20829,Pobozowisko,407,611,699513260,10954,0 +20830,0061,456,362,699431255,10075,0 +20831,171,583,386,849064752,10311,0 +20832,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,636,7589468,8996,0 +20833,0051,450,367,699431255,9730,0 +20834,Ave+Why%21,454,637,698585370,10471,0 +20836,Pobozowisko,391,590,699513260,9348,0 +20837,%21Myk+i+do+kieszonki,381,582,699621601,10495,0 +20838,Szlachcic,421,378,698388578,10237,0 +20839,Ave+Why%21,453,634,698585370,7718,0 +20840,0135,430,374,699431255,9745,0 +20841,Ave+Why%21,448,627,8729672,9811,0 +20842,Wioska+barbarzy%C5%84ska,632,554,7047342,10622,0 +20843,Avanti%21,355,508,698625834,9950,0 +20844,Osada+koczownik%C3%B3w,411,385,699402816,10311,9 +20845,0052,540,635,698659980,10160,0 +20846,Deveste+ufam+Tobie,429,620,699783765,3817,0 +20848,%2A0023+Baraki,629,431,8459255,10344,0 +20849,%7E%7E006%7E%7E,597,608,7829201,9815,0 +20850,Zeta+Reticuli+S2,390,405,699323302,10477,0 +20851,%7E%7E010%7E%7E,604,601,7829201,9816,0 +20852,025,628,559,849095227,9732,0 +20853,003,588,611,699567608,9646,0 +20854,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,642,7417116,9960,0 +20855,Lecymy+DUR,438,372,6169408,7119,0 +20857,033+034,531,362,699491076,10001,0 +20859,143,587,384,849064752,10311,0 +20860,kathare,546,638,873575,10362,0 +20861,60.+KaruTown,625,478,849060446,9735,0 +20862,Wioska,383,587,699621601,9587,0 +20863,B.026,643,520,9188016,10000,0 +20864,HMS+Drake,386,420,698884287,9495,0 +20865,Pobozowisko,403,606,699513260,5254,0 +20866,%2A5622%2A+Happy+happy,641,527,7973893,10287,3 +20867,kiki,375,575,849095992,4586,0 +20868,033+Wioska+barbarzy%C5%84ska,544,364,699854484,9976,0 +20869,Wioska+Kaimek,367,554,699797252,3077,0 +20870,Pobozowisko,407,606,699513260,7159,0 +20871,VN+Menthuthuyoup,492,357,699883079,10409,0 +20872,Taran,546,367,699170684,9364,0 +20873,010+Legio+I+Parthica,641,493,699878150,4101,0 +20874,003,600,598,698786826,10211,0 +20875,Chatachama,384,416,698884287,9799,8 +20877,Pobozowisko,382,574,699513260,10971,0 +20878,003+Wioska+IdzieJesien,569,372,699509239,7824,0 +20879,Ave+Why%21,494,644,698585370,10235,0 +20880,Yogi,545,634,2808172,10019,0 +20881,Wioska+barbarzy%C5%84ska,639,532,7047342,10487,0 +20882,Ave+Why%21,466,637,698585370,8990,0 +20883,Obrze%C5%BCa+06,544,632,848915531,10971,0 +20884,083,585,382,849064752,10311,0 +20885,001,403,431,699788305,9875,0 +20886,0384,584,619,698659980,10083,0 +20887,xkikutx,520,359,1990750,10068,0 +20888,042-+Mroczna+Osada,636,447,849035905,10459,0 +20889,A017,479,644,699383279,9834,0 +20890,W.07,582,613,873575,10362,0 +20891,A017,583,385,699761749,4044,0 +20892,111+Wioska+barbarzy%C5%84ska,534,359,699491076,10001,0 +20893,Yogi,553,634,2808172,8458,0 +20894,0113,435,377,699431255,8616,0 +20895,Ow+Konfederacja,605,400,848915730,8442,0 +20896,%249.000+Grvvyq,635,551,699676005,10495,0 +20897,Wioska+barbarzy%C5%84sk33,387,411,698884287,10285,0 +20898,%2A0019+Baraki,621,430,8459255,10189,0 +20899,--006--,382,415,698884287,10285,0 +20900,%7E%7E005%7E%7E,600,603,7829201,9814,0 +20901,-+339+-+RR,598,603,849018239,9880,0 +20902,36.+Wioska+36,373,569,849091769,8369,0 +20903,039,502,358,849010255,6771,0 +20904,04.+Wioska+4,374,560,849091769,10019,0 +20905,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,639,1434753,10068,7 +20906,003.,484,650,849034882,10495,0 +20907,Ulu-mulu,411,615,699697558,3390,0 +20909,a+mo%C5%BCe+off+%3F+%3A%29,617,578,698768565,9424,0 +20911,0022,537,639,698659980,10160,0 +20913,%23035.519%7C501,638,452,556154,9735,0 +20914,A0232,365,463,8841266,10252,0 +20915,%2AINTERTWINED%2A,507,645,698704189,9711,0 +20916,030,362,531,698641566,9809,0 +20917,46.+Wioska+46,366,549,849091769,8612,0 +20918,115,622,424,7085502,9750,0 +20919,0009,483,644,6180190,9814,0 +20920,Wioska+barbarzy%C5%84ska,629,561,6929240,8114,0 +20921,Bagdad,502,360,8847546,9976,0 +20922,108,485,355,699761749,10495,0 +20923,026,451,637,849084985,9899,0 +20924,Ulu-mulu,420,621,699697558,2149,0 +20925,%23060.,629,434,556154,10192,0 +20926,057+Yatomi,642,476,7092442,10495,0 +20927,A35,472,644,849037407,10241,0 +20928,%23030.516%7C502,635,453,556154,9735,0 +20931,059,358,511,698641566,8362,0 +20932,215,579,384,849064752,5030,0 +20933,Aldrajch+to+nie+Slonsk+gorolu,375,439,699711723,5765,0 +20934,Og%C3%B3rkowy+baron,400,401,356642,9835,0 +20935,%23022.518%7C500,637,451,556154,9735,0 +20936,004,362,534,698641566,9809,0 +20937,35k%24+Grvvyq,634,550,699676005,10428,0 +20938,Jan+na+kra%C5%84cu+%C5%9Bwiata,645,499,879782,8620,0 +20939,53.+Wioska+53,364,546,849091769,8527,0 +20940,%2A0027+Baraki,626,431,8459255,10057,0 +20941,0023,593,383,699485250,10211,0 +20942,RTS+12,577,621,848995242,10362,0 +20943,Wioska+barbarzy%C5%84ska,623,430,8337151,5308,0 +20944,082,641,512,699351301,6821,0 +20945,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,643,1434753,9826,0 +20946,Pobozowisko,409,613,699513260,9325,0 +20947,Jan+013+k,642,472,879782,9427,0 +20948,0371,562,628,698659980,10252,0 +20949,005,393,570,699621601,9610,0 +20950,072,469,361,698739350,9902,0 +20951,Wioska+Polanski19ooo7,453,543,699698253,2818,0 +20952,0030,535,640,698659980,10083,0 +20953,02.+Wioska+2,372,560,849091769,10005,0 +20954,122,576,382,849064752,10311,0 +20955,033,638,512,699413040,10001,0 +20956,60.+Wioska+60,370,554,849091769,10003,0 +20957,A0295,361,488,8841266,10252,0 +20958,0004,479,643,699117178,10218,5 +20959,127,475,358,7271812,6567,0 +20960,035,611,587,698786826,10237,0 +20961,Jednak+wol%C4%99+gofry,491,641,699725436,5254,0 +20962,%2A0022+Baraki,622,432,8459255,10060,0 +20963,yogi,546,635,2808172,10019,0 +20964,034,449,637,849084985,9835,0 +20965,Ulu-mulu,417,619,699697558,3055,0 +20966,Zeta+Reticuli+S2,391,405,699323302,10838,0 +20967,0042,617,421,699429153,9825,0 +20968,Gattacka,609,404,699298370,9619,0 +20969,Gattacka,607,405,699298370,9819,8 +20971,Konfederacja,449,368,848915730,9976,0 +20972,0145,430,372,699431255,6016,0 +20973,B.040,644,503,9188016,10000,0 +20974,WE+ARE+READY%21,597,391,1553947,6442,0 +20975,.%3A128%3A.+Niangmen,506,398,848934935,9902,0 +20976,Wioska+barbarzy%C5%84ska,621,419,699429153,9782,0 +20977,034+Armeria,618,585,699272880,10068,0 +20978,044,472,360,698739350,10237,0 +20979,006.Critical+2.0,632,441,699429153,10083,0 +20980,A012,474,641,699383279,9794,0 +20981,0025,539,640,698659980,10019,0 +20982,ADEN,526,379,698588535,9737,0 +20983,Zeta+Reticuli+S2,394,401,699323302,10265,0 +20984,off+100+%25,382,583,849012521,10163,0 +20985,V+001,589,390,6384450,8988,0 +20986,Jan+028+%281%29,641,469,879782,9001,0 +20987,Gattacka,611,414,699298370,9745,0 +20988,111,483,356,699761749,10273,0 +20989,a+mo%C5%BCe+off+%3F+%3A%29,622,577,698768565,9555,0 +20990,0058,448,365,699431255,9999,0 +20991,012+Dobry+Film,537,362,699491076,10001,0 +20992,Wioska+barbarzy%C5%84ska,638,527,7047342,10484,0 +20993,%5B012%5D,609,590,1715091,9835,0 +20994,024,362,527,698641566,9809,0 +20995,025,362,536,6853693,5562,7 +20996,A009,518,361,699208929,10035,0 +20997,Wied%C5%BAma,382,420,698884287,4586,0 +20999,Ave+Why%21,490,640,698585370,7944,0 +21000,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,640,1434753,10068,0 +21001,W.06,585,613,873575,10362,0 +21002,051,614,587,698786826,8870,0 +21004,103,486,356,699761749,10495,0 +21005,Wioska+barbarzy%C5%84ska,641,532,6510480,7241,0 +21006,Janxxv+01+K,642,469,879782,9694,0 +21007,Wioska,366,547,849084005,8308,0 +21008,053+Kuzyn+skonfiskowa%C5%82+Atlantyd%C4%99,378,577,699382126,10495,0 +21009,%5B026%5D,639,514,698305474,9809,0 +21010,0035,449,365,699431255,10135,6 +21011,Lecymy+DUR,440,371,6169408,10495,0 +21013,Jehu_Kingdom_47,642,467,8785314,7580,0 +21014,A0193,360,481,8841266,10252,0 +21015,.3.,366,555,849012521,8373,0 +21016,Wioska+barbarzy%C5%84ska,641,513,0,6528,0 +21017,119,471,357,7271812,10495,0 +21018,aaaa,479,642,6948793,9835,0 +21019,Westcoast.099,374,430,848918380,10178,0 +21020,016+015,537,361,699491076,10001,1 +21021,012,605,593,698786826,10211,0 +21022,091.+Byblus,626,432,849091866,9289,0 +21023,Lesne+dzbany,579,620,848995242,10495,0 +21024,Ave+Why%21,463,639,698585370,10495,0 +21025,Wioska_1,489,356,848942968,3577,0 +21026,Hey+You,625,568,848926293,7537,0 +21027,%230029+gram+w+lig%C4%99,461,363,1238300,10178,0 +21028,ave+why%21,449,634,698143931,10311,0 +21029,Kentin+ufam+Tobie,369,446,699783765,10495,0 +21030,22.+Wioska+22,366,557,849091769,10158,0 +21031,054,426,621,699783765,5723,6 +21032,A022,587,383,699485250,10035,0 +21033,Jaaa,614,581,698635863,10481,0 +21034,RTS+10,580,622,848995242,10346,0 +21035,Kentin+ufam+Tobie,366,455,699783765,10000,0 +21036,003.+Piszcza%C5%82ka,504,642,848928624,10216,0 +21037,Szlachcic,426,376,698388578,8267,0 +21038,Osada+koczownik%C3%B3w,526,638,7589468,8884,2 +21039,monetki+D,637,548,698768565,9334,0 +21040,0560,568,628,698659980,10019,0 +21041,Lord+Lord+Franek+.%23180,515,355,698420691,10144,0 +21042,006,360,517,698641566,9809,0 +21043,Wioska+barbarzy%C5%84ska,624,564,7047342,10479,0 +21044,0093,459,397,699431255,9835,0 +21045,Wioska+barbarzy%C5%84ska,386,418,698884287,9046,0 +21046,004,429,623,699783765,4328,2 +21047,B007,645,489,9314079,10890,0 +21048,.005.Mul%C4%99R%C3%B3%C5%BC,561,373,699072129,10232,0 +21049,036,612,589,698786826,9291,0 +21050,MELISKA,358,470,699794765,10369,0 +21051,psycha+sitting,454,639,699736927,10311,0 +21052,The+Game+Has+Only+Just+Begun,358,528,9280477,9976,0 +21053,052,642,532,699351301,10160,7 +21054,A-026,400,399,8419570,10168,0 +21055,Og%C3%B3rkowy+baron,404,396,356642,9835,0 +21056,008.,645,502,849094609,9925,0 +21057,A007,598,393,699761749,10311,0 +21059,014,607,592,698786826,10211,0 +21060,A011,472,641,699383279,9819,0 +21062,%23.43+Wioska+barbarzy%C5%84ska,638,482,849054582,4622,0 +21063,%5B0006%5D+Franek+154,560,629,699567608,9011,0 +21064,Gattacka,612,416,699298370,9809,0 +21065,VN+Franklin+Bordeau,455,366,699883079,8458,0 +21066,Zeta+Reticuli+S2,392,407,699323302,10265,0 +21067,Jan+6+mdomek+02+K,639,470,879782,9857,0 +21068,Westcoast.110,376,435,848918380,10178,0 +21069,Ow+Konfederacja+%2B,597,398,848915730,10140,0 +21070,0046,560,528,698416970,10019,0 +21071,%7E%7E002%7E%7E,601,602,7829201,9815,0 +21072,Idris,382,576,8607734,10019,0 +21073,K65,534,637,7589468,8816,0 +21074,Pobozowisko,399,601,699513260,10971,0 +21075,067,427,378,698388578,7662,0 +21076,Og%C3%B3rkowy+baron,405,407,356642,9835,0 +21077,Szlachcic,425,377,698388578,6481,0 +21078,A009,580,377,699485250,10211,0 +21079,065+Biedronkowo+PP,537,364,699854484,9899,0 +21080,014.+Troja,637,447,849095599,9835,0 +21081,Bogdaniec,505,390,699755859,5017,0 +21082,Myk+i+do+kieszonki,359,508,9319058,9441,0 +21083,Szlachcic,426,374,698388578,7735,0 +21084,Wioska+barbarzy%C5%84ska,526,357,1990750,10068,0 +21085,Afro,379,493,699265922,9761,0 +21086,016+Wioska,634,458,699671454,5752,0 +21087,Wioska+barbarzy%C5%84ska,399,567,9167250,9598,0 +21088,Og%C3%B3rkowy+baron,397,398,356642,9835,0 +21089,Pobozowisko,411,611,699513260,10208,0 +21090,c+061d,417,380,3909522,6850,0 +21091,K34+-+%5B023%5D+Before+Land,441,373,699088769,10259,3 +21092,A0145,360,497,8841266,10252,0 +21093,SSJ+044,512,643,699054373,9761,0 +21094,022+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,624,428,9228039,9346,0 +21095,0002,476,643,699117178,5268,0 +21096,017,429,622,699783765,5033,0 +21097,Oww+Konfederacja,606,401,848915730,9476,0 +21098,Pobozowisko,395,595,699513260,5156,0 +21099,Pobozowisko,400,598,699513260,10858,0 +21101,%2AINTERTWINED%2A,508,643,698704189,9711,0 +21103,a+mo%C5%BCe+off+%3F+%3A%29,638,550,698768565,9362,0 +21105,073,465,359,698739350,9994,0 +21106,043,370,564,8908002,9993,0 +21107,Ow+Konfederacja,602,395,848915730,10259,0 +21108,K34+-+%5B115%5D+Before+Land,450,380,699088769,10259,0 +21109,0410,541,634,698659980,8954,0 +21110,070,429,376,699796330,8031,0 +21111,Pobozowisko,410,613,699513260,8594,0 +21112,c+00447,413,390,3909522,9829,0 +21113,Lord+Lord+Franek+.%23209,518,358,698420691,10362,0 +21114,Bagdad,497,356,8847546,9976,0 +21115,Wioska+barbarzy%C5%84ska,433,628,6910361,5296,0 +21116,a+mo%C5%BCe+off+%3F+%3A%29,621,583,698768565,9534,0 +21117,JUHUUUUUUU+%3AP,381,585,849095992,4961,0 +21118,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,641,1434753,10068,0 +21119,.%3A058%3A.+%C5%81OBUZIK,552,365,848934935,3108,0 +21120,154+Ale+mnie+g%C5%82%C3%B3wka+boli,375,567,699382126,7988,0 +21121,%23003,472,611,699605333,10393,0 +21122,Szlachcic,423,376,698388578,9605,0 +21123,Gattacka,613,416,699298370,9345,0 +21124,C002,594,387,699761749,10495,0 +21125,Wioska+barbarzy%C5%84ska,491,358,848942968,3761,0 +21126,c+Fyra+3,402,394,3909522,9520,0 +21127,The+Game+Has+Only+Just+Begun,360,525,9280477,9976,0 +21128,0rkowi+Zawodnicy+Dominuj%C4%85+Rybki,419,616,1434753,10068,0 +21129,ETAT+Z+PO%C5%9AREDNIAKA,425,620,848913998,6673,0 +21130,0405,553,637,698659980,10019,0 +21131,The+Game+Has+Only+Just+Begun,357,533,9280477,9158,0 +21133,R-11,588,384,3600737,8319,0 +21134,Kentin+ufam+Tobie,369,451,699783765,10000,0 +21135,C011,584,388,699761749,6376,0 +21137,016,387,415,848921536,3142,0 +21138,a+mo%C5%BCe+off+%3F+%3A%29,638,549,698768565,9337,0 +21139,Gattacka,609,410,699298370,9559,0 +21140,013,360,546,8908002,9993,0 +21141,024,363,542,8908002,7613,0 +21142,Pobozowisko,395,596,699513260,9639,0 +21143,Kentin+ufam+Tobie,372,443,699783765,10005,0 +21144,Jednak+wol%C4%99+gofry,497,642,699725436,10311,0 +21145,ZDERZENIE+Z+BETONEM,578,393,699761749,8444,0 +21146,Wioska+%28037%29,644,479,698232227,7932,0 +21147,c+057d,422,382,3909522,6656,0 +21148,058,619,585,698786826,8554,0 +21149,001+RTS+CZW,579,624,699567608,9701,0 +21150,101,454,636,849084985,9206,0 +21151,SSJ+009,507,640,699054373,9761,0 +21152,A037,571,373,699485250,9338,0 +21155,lubie+ogie%C5%84+.,580,621,848995242,10362,0 +21156,Konfederacja+%2B,466,375,848915730,9976,0 +21157,%7CA%7C+Elderbourne,480,643,698147372,10495,0 +21158,104,477,356,7271812,9957,0 +21159,Pobozowisko,400,606,699513260,10954,0 +21160,024,610,405,699298370,7735,0 +21162,104,483,357,699761749,10495,0 +21163,A0168,354,484,8841266,10252,0 +21164,B.014,646,515,9188016,10000,0 +21165,.Wioska+barbarzy%C5%84ska,631,563,6929240,7882,0 +21166,Prawa,544,639,7589468,8884,0 +21167,a+mo%C5%BCe+off+%3F+%3A%29,635,540,698768565,9370,0 +21168,106,474,358,7271812,10311,0 +21169,Jaaa,613,583,698635863,10479,0 +21171,Wioska+Dam2314,496,356,699630110,4776,0 +21172,pepe,360,524,849030226,8940,0 +21174,Westcoast.111,378,428,848918380,10135,0 +21175,003+Legio+I+Iulia+Alpina+%28R%29,642,492,699878150,6956,0 +21176,Wioska+barbarzy%C5%84ska,388,586,699621601,2827,0 +21177,c+Kolwicz+006,408,392,3909522,10229,0 +21178,007,464,363,699883079,9569,0 +21179,019,630,555,849095227,9745,0 +21180,000,450,634,698143931,8753,0 +21181,Nowa+25,628,567,698702991,9827,0 +21182,%2A%2AAsap,576,625,699443920,9761,0 +21183,033,361,534,698641566,9809,0 +21184,Darmowe+przeprowadzki,480,645,699383279,9809,0 +21185,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,639,1434753,10068,0 +21186,Zbieram+PP,382,484,849034917,9091,0 +21187,016.+Kacundzk,641,481,849094609,9994,0 +21188,04+Twierdza+Zach%C3%B3d,544,361,849108780,7515,0 +21189,MELISKA,359,471,699794765,9380,0 +21190,-008-,390,600,699097885,9177,0 +21191,Ow+Konfederacja,601,401,848915730,10273,0 +21192,A+READY,594,390,1553947,10160,0 +21193,Og%C3%B3rkowy+baron,392,401,356642,9835,0 +21194,%7E%7E019%7E%7E,596,606,7829201,9818,0 +21195,Kovir,528,362,1990750,10068,8 +21196,Pobozowisko,408,610,699513260,10145,0 +21197,Wioska+barbarzy%C5%84ska,432,625,6910361,3637,0 +21198,MojeDnoToWaszSzczyt,563,374,699697558,9834,0 +21199,026+KTW,635,451,848883237,8704,0 +21200,MojeDnoToWaszSzczyt,563,370,699697558,10495,0 +21201,0034,614,417,699429153,9825,0 +21202,Pobozowisko,387,585,699513260,10971,0 +21203,.003.P%C4%99dziBolec,564,373,699072129,10226,0 +21204,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,499,642,699725436,10044,0 +21205,065,360,513,698641566,9809,0 +21206,001.,426,546,8779575,9729,0 +21207,A0146,357,495,8841266,10252,0 +21208,Wioska+barbarzy%C5%84ska,436,631,6910361,7177,0 +21209,Lecymy+DUR,432,373,6169408,5449,0 +21210,Lord+Lord+Franek+.%23220,509,354,698420691,10216,0 +21211,002.+Lubi%C4%99+rude,503,647,848928624,10237,0 +21212,014,364,544,8908002,7186,0 +21214,Lord+Lord+Franek+.%23200,514,358,698420691,10362,0 +21215,Za+progiem,355,494,699265922,9847,0 +21216,Mniejsze+z%C5%82o+0046,360,462,699794765,8612,0 +21217,025,452,634,849084985,10294,0 +21218,Og%C3%B3rkowy+baron,397,397,356642,9835,0 +21219,030+Wioska,647,489,699671454,8598,0 +21220,34.Sparta,353,501,698807570,9623,0 +21221,016,617,411,699429153,9899,0 +21222,0120,425,626,6910361,1699,0 +21223,0105,422,623,6910361,2865,6 +21224,-019-,387,591,699097885,9167,0 +21225,Myk+i+do+kieszonki,358,509,9319058,9799,0 +21226,a+mo%C5%BCe+off+%3F+%3A%29,622,581,698768565,9533,0 +21227,a+mo%C5%BCe+off+%3F+%3A%29,640,544,698768565,9351,0 +21228,Szlachcic,427,375,698388578,9020,0 +21229,006.+Blaviken,637,452,849095599,10019,0 +21230,006,391,497,699510259,9742,0 +21231,0044,621,417,699429153,9825,0 +21232,02+KALINA,637,453,699524891,12154,0 +21233,RTS+3,580,620,848995242,10495,0 +21234,B.066,644,509,9188016,10000,0 +21235,%2AINTERTWINED%2A,508,647,698704189,9711,0 +21236,%5BC%5D_%5B010%5D+Dejv.oldplyr,360,459,699380607,10233,0 +21237,002,549,362,699072129,8871,0 +21238,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,371,571,8004076,9880,0 +21239,066.+Gandava,631,442,849091866,10302,1 +21240,011+Grane+Blindy+125%2F250,541,361,699491076,10001,0 +21241,Wioska+barbarzy%C5%84ska,530,356,1990750,10068,0 +21242,Podzi%C4%99kowa%C5%82+4,421,377,699796330,9818,0 +21243,44.+KaruTown,614,406,699298370,9345,0 +21244,002.+Night+City,634,445,849095599,9835,1 +21246,Wioska+barbarzy%C5%84ska,424,622,6910361,1350,0 +21247,005+Legio+VI+Victrix,641,489,699878150,8515,0 +21249,Jehu_Kingdom_45,641,476,8785314,7629,0 +21250,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,510,646,1434753,10025,1 +21252,0036,619,416,699429153,9655,0 +21253,Wioska+barbarzy%C5%84ska,383,413,698884287,10285,0 +21254,023+Wioska+barbarzy%C5%84ska,544,363,699854484,10068,0 +21255,c+0011+le%C5%9Bniowice,410,388,3909522,10078,0 +21257,Pobozowisko,406,612,699513260,10971,0 +21258,Wioska+barbarzy%C5%84ska,642,531,7047342,10479,0 +21259,0137,642,462,698416970,10083,0 +21260,Za+domem,357,493,699265922,9825,0 +21261,Ave+Why%21,459,640,698585370,10495,0 +21262,Barbachama,377,423,8967440,5731,2 +21264,Avanti%21,354,507,698625834,9950,0 +21266,mys,565,632,699828685,9976,0 +21267,%2A0035+Baraki,622,430,8459255,9201,0 +21268,Jednak+wol%C4%99+gofry,475,645,699725436,9835,0 +21269,a+mo%C5%BCe+off+%3F+%3A%29,633,552,698768565,9337,0 +21270,Jednak+wol%C4%99+gofry,497,646,699725436,10204,0 +21271,079,643,531,699351301,9894,0 +21272,072.+Pisae,633,442,849091866,10252,0 +21273,A0256,354,494,8841266,10252,0 +21274,Lord+Lord+Franek+.%23213,511,354,698420691,10294,0 +21275,107,476,356,7271812,10285,0 +21276,Flinii,626,427,848883237,10019,0 +21277,-+343+-+RR,594,610,849018239,9803,0 +21278,064,360,511,698641566,9809,0 +21279,c+Ett,405,393,3909522,10222,0 +21280,Ohne+Dich,621,573,848926293,4937,0 +21281,-022-,389,590,699097885,8228,0 +21282,%5B166%5D,631,555,8000875,8691,0 +21283,060+Wioska+barbarzy%C5%84ska,536,358,699491076,10001,0 +21284,amzi+x1,469,643,698585370,8468,0 +21285,117,487,354,699761749,10495,0 +21286,Brat447,355,509,699262350,10144,2 +21287,131+DaSilva2402,522,358,699491076,10001,0 +21288,34.+Wioska+34,373,567,849091769,9465,0 +21289,The+Game+Has+Only+Just+Begun,357,524,9280477,9976,0 +21290,kathare,553,630,873575,10428,1 +21291,68.+Wioska+68,370,562,849091769,9362,0 +21292,Wioska+barbarzy%C5%84ska,509,359,699368887,9994,0 +21293,Barbachama+II,378,423,8967440,3914,0 +21294,Wioska+barbarzy%C5%84ska,642,534,7047342,10490,0 +21295,Lecymy+DUR,440,370,6169408,6415,0 +21296,The+Game+Has+Only+Just+Begun,359,529,9280477,9976,0 +21297,VN+Alphonse+Elric,464,361,699883079,9653,0 +21298,118,620,421,7085502,9697,0 +21299,Avanti%21,355,514,698625834,9950,0 +21300,101,487,358,699761749,10495,0 +21301,%2A0ST,580,624,699567608,9123,0 +21302,Mniejsze+z%C5%82o+0036,361,469,699794765,9878,0 +21303,032,592,612,698999105,10311,0 +21305,MojeDnoToWaszSzczyt,559,372,699697558,10495,0 +21306,-+342+-+RR,596,609,849018239,9701,0 +21307,Yeremiah+2,386,415,698884287,10131,0 +21308,001,627,560,849095227,9835,0 +21309,0042,447,363,699431255,9959,0 +21310,--010--,385,411,698884287,8512,0 +21311,047,607,591,698786826,7518,0 +21312,019.,645,476,849094609,9960,6 +21313,B037,497,458,699299123,10495,0 +21314,Pobozowisko,407,610,699513260,7661,0 +21315,Wioska+%28026%29,641,477,698232227,9305,0 +21316,The+Game+Has+Only+Just+Begun,358,534,9280477,9600,0 +21317,The+Game+Has+Only+Just+Begun,356,529,9280477,9976,0 +21318,Maszlug+kolonia+IX,370,433,848977649,9311,0 +21319,%2A0024+Baraki,628,428,8459255,9947,0 +21320,od+biedy+do+pot%C4%99gi+6,370,445,699783765,2481,0 +21321,jaaa,635,558,698635863,10476,0 +21322,047...PO%C5%81UDNIE,463,360,6920960,10311,0 +21323,Lecymy+DUR,439,371,6169408,8754,0 +21324,Kentin+ufam+Tobie,362,454,699783765,10000,0 +21325,przed+potoom,465,643,699736927,9048,0 +21326,017,361,533,698641566,9809,1 +21327,off+100+%25,360,556,849012521,10311,0 +21328,The+Game+Has+Only+Just+Begun,355,523,9280477,9976,0 +21329,.%3A086%3A.+%C5%81OBUZIK,558,365,848934935,10495,0 +21330,nic,573,623,699828685,10209,0 +21331,a+mo%C5%BCe+off+%3F+%3A%29,635,557,698768565,9353,0 +21332,North+Barba+033,428,371,699796330,10087,0 +21334,SSJ+037,514,641,699054373,9761,0 +21335,Pobozowisko,391,594,699513260,9336,0 +21336,010,630,562,849095227,9761,0 +21337,A0142,359,495,8841266,10252,0 +21338,0453,549,640,698659980,9261,0 +21339,Konfederacja+%2B,455,365,848915730,9720,0 +21340,Westcoast.112,372,434,848918380,10178,0 +21341,Stalker2,491,357,848942968,4065,0 +21344,Szlachcic,425,376,698388578,10237,0 +21345,%230093+barbarzy%C5%84ska,467,357,1238300,9444,0 +21346,65.+Wioska+65,374,563,849091769,9519,0 +21347,Zeta+Reticuli+S2,393,403,699323302,10728,0 +21348,43.+Wioska+43,365,546,849091769,7533,0 +21349,Osada+koczownik%C3%B3w,512,359,699368887,9063,9 +21351,020,612,595,698786826,9977,0 +21352,%7E%7E021%7E%7E,603,601,7829201,9824,0 +21353,B.068,644,510,9188016,10002,0 +21355,Deveste+ufam+Tobie,418,622,699783765,5602,0 +21357,061+Wioska+barbarzy%C5%84ska,536,357,699491076,10001,0 +21358,Kentin+ufam+Tobie,365,445,699783765,10000,0 +21359,049%7C%7C+Microscopium,469,639,849035525,9951,0 +21361,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,643,1434753,9829,0 +21362,Wioska+barbarzy%C5%84ska,364,450,3698627,10078,0 +21363,0059,620,418,699429153,9825,0 +21365,074...barbarka+centr,460,358,6920960,10226,0 +21366,XXXX,475,357,849054951,10485,0 +21367,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,640,1434753,10068,0 +21368,128,475,359,7271812,5962,0 +21369,Deveste+ufam+Tobie,435,626,699783765,10257,0 +21370,-+335+-+RR,591,609,849018239,9670,0 +21371,MELISKA,357,469,699794765,10351,0 +21372,Wioska+barbarzy%C5%84ska,555,363,699072129,10220,0 +21373,077,364,541,6853693,5821,0 +21374,Prawa,542,638,7589468,8820,0 +21375,Pobozowisko,404,609,699513260,7320,0 +21376,Avanti%21,355,507,698625834,9950,0 +21377,0012+MzM,612,592,698416970,9258,6 +21378,027+181+181,358,505,698807570,10311,0 +21379,Deveste+ufam+Tobie,436,628,699783765,6752,0 +21380,%2A5604%2Ab+Ten+mecz,622,583,7973893,10287,0 +21381,MojeDnoToWaszSzczyt,564,369,699697558,10495,0 +21382,018,613,584,699099811,9835,0 +21383,%230038+barbarzy%C5%84ska,465,358,1238300,10178,0 +21384,KONFA+TO+MARKA%2C+NARKA,398,472,698152377,11349,0 +21385,VN+Phinks+Magcub,457,361,699883079,9651,0 +21386,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,646,698585370,9371,0 +21387,c+001a,409,386,3909522,8646,0 +21388,Wioska,368,548,849084005,10178,0 +21389,Mniejsze+z%C5%82o+00100,356,472,699794765,10342,0 +21390,%2A%2AAdango,574,624,699443920,9761,0 +21391,Spa%C4%87,551,388,3600737,9549,0 +21393,Ambrela+015,571,372,698823542,10495,0 +21394,0117,424,624,6910361,1772,0 +21395,Pobozowisko,405,612,699513260,11111,0 +21396,Ave+Why%21,493,641,698585370,7678,0 +21397,003+P%C5%82aci%C5%82em+Za+Ksi%C4%85%C5%BCki,540,359,699491076,10001,5 +21398,.%3A014%3A.+Chillout,508,421,848934935,10495,0 +21399,--9.+Parzymiechy+G%C3%B3rne,386,405,698345556,7646,0 +21400,%23036.518%7C497,637,448,556154,9735,0 +21402,--005--,382,412,698884287,9460,0 +21403,125,545,360,699491076,9632,0 +21405,50.+Wioska+50,365,545,849091769,7438,0 +21406,%5B009%5D,610,591,1715091,9659,0 +21407,Lord+Lord+Franek+.%23221,523,356,698420691,10362,0 +21408,A011,579,379,699485250,10211,0 +21409,Ow+Konfederacja+%2B,607,401,848915730,9874,0 +21411,%2A%2ASIxMileLake,575,627,699443920,9761,0 +21412,008,363,544,8908002,9993,0 +21413,0206,417,615,699697558,3088,0 +21414,016,492,646,698650301,9421,0 +21415,B014,648,498,9314079,9814,0 +21416,%5BC%5D_%5B007%5D+Dejv.oldplyr,359,475,699380607,10495,0 +21417,-005-,387,593,699097885,9885,0 +21418,Wioska+barbarzy%C5%84ska,439,368,699191464,10387,0 +21419,Pobozowisko,403,611,699513260,10971,0 +21420,MojeDnoToWaszSzczyt,565,370,699697558,10495,0 +21421,003,463,375,699883079,9638,0 +21422,Szlachcic,420,378,698388578,10237,0 +21424,017.+Watykan,631,444,849095599,8990,0 +21425,011,629,562,849095227,9761,3 +21426,030+Eoam,629,433,8337151,10026,0 +21427,deff+100+%25,383,581,849012521,10251,0 +21428,Ow+Konfederacja,602,400,848915730,10273,0 +21429,Taran,557,370,699170684,10495,0 +21430,0003,489,644,6180190,10495,6 +21432,004,379,423,9239515,5293,0 +21433,Ow+Konfederacja,608,400,848915730,10032,0 +21434,%2A5603%2Aa+RKS+CHUWDU,624,576,7973893,10287,0 +21435,%230040+barbarzy%C5%84ska,462,357,1238300,10178,0 +21436,Westcoast.082,397,408,848918380,10178,0 +21437,Szlachcic,418,378,698388578,7178,0 +21438,Wioska+barbarzy%C5%84ska,622,425,699429153,9825,0 +21439,Wioska+andrzej84,391,401,6171569,5659,0 +21440,020+Wioska,639,460,699671454,6273,0 +21441,0045,619,422,699429153,9746,0 +21442,a+mo%C5%BCe+off+%3F+%3A%29,635,542,698768565,9337,0 +21443,RTS+8,580,618,848995242,10487,0 +21444,Pobozowisko,412,612,699513260,10629,0 +21445,006+181,354,505,698807570,10051,0 +21446,.%3A059%3A.+%C5%81OBUZIK,553,365,848934935,4847,0 +21447,066,426,377,698388578,6881,0 +21448,031,586,617,698999105,10311,0 +21449,009,461,359,699883079,9663,0 +21450,041.+Moguntiacum,632,437,849091866,10495,0 +21451,The+Game+Has+Only+Just+Begun,357,525,9280477,9976,0 +21453,Wied%C5%BAma+-+Imperium,384,418,698884287,11321,0 +21454,013+Wioska+barbarzy%C5%84ska,568,371,699509239,4766,0 +21455,The+Game+Has+Only+Just+Begun,353,517,9280477,9976,0 +21456,031%7C%7C+Centaurus,488,644,849035525,10019,0 +21457,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,639,1434753,10068,0 +21458,.4.,366,553,849012521,9021,0 +21459,Wioska+barbarzy%C5%84ska,364,443,699088529,6036,0 +21460,059,366,544,8908002,3704,0 +21461,A-004,397,399,8419570,10580,0 +21462,Bagdad,497,359,8847546,9976,0 +21463,034+181,355,505,698807570,6717,0 +21464,SSJ+053,502,647,699054373,9517,0 +21465,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,645,699828442,9817,0 +21466,Wioska+barbarzy%C5%84ska,381,577,699621601,2562,0 +21467,071.+Ptolemais,632,442,849091866,10068,0 +21468,044+%7C+PALESTINA,640,467,9228039,4759,0 +21470,kathare,554,632,873575,10362,0 +21471,078,366,546,6853693,6521,0 +21472,B006,647,495,9314079,9835,0 +21473,022+Wioska+barbarzy%C5%84ska,541,360,699854484,10544,0 +21474,015+Mario,560,469,849031818,8978,0 +21475,Bagdad,499,357,8847546,9976,0 +21476,Pobozowisko,395,602,699513260,10622,1 +21477,Napewno+to+nie+jest+off,486,383,848912265,5612,0 +21478,A0244,352,498,8841266,10252,0 +21479,Valhalla+A8,375,577,849097002,4968,0 +21480,020,361,545,8908002,7414,0 +21481,a+mo%C5%BCe+off+%3F+%3A%29,641,541,698768565,9351,0 +21482,005,379,420,9239515,4963,0 +21483,142,584,383,849064752,10311,0 +21484,Westcoast.106,372,435,848918380,10178,0 +21485,014.+A%C5%82a,503,643,848928624,10237,0 +21486,SSJ+041,512,644,699054373,9761,0 +21487,%230015+barbarzy%C5%84ska,464,356,1238300,10178,4 +21488,yogi,488,530,2808172,10495,0 +21490,Zeta+Reticuli+S2,395,401,699323302,10265,0 +21491,a+mo%C5%BCe+off+%3F+%3A%29,575,587,698768565,10103,0 +21492,WB02,398,395,356642,9835,0 +21493,Mniejsze+z%C5%82o+0043,361,464,699794765,9160,0 +21494,Wioska+barbarzy%C5%84ska,550,364,699072129,10220,0 +21495,183,578,622,8627359,9203,0 +21496,062+Wioska+barbarzy%C5%84ska,542,359,699491076,10001,8 +21497,Arnswalde,379,424,8967440,7262,0 +21499,-027-,389,597,699665152,7068,0 +21500,SSJ+018,511,641,699054373,9761,2 +21501,Mobil,532,639,7589468,8825,0 +21502,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,638,7589468,8820,0 +21503,077...barbarka,458,358,6920960,10223,0 +21504,Lord+Lord+Franek+.%23222,510,355,698420691,9461,0 +21505,C+013,590,391,6384450,5419,0 +21506,Wioska+barbarzy%C5%84ska,435,631,6910361,5875,0 +21507,B.038,643,505,9188016,10000,0 +21509,018,635,554,849095227,9731,0 +21510,Sweet+Child+O+Mine,629,565,848926293,7939,0 +21511,Wioska+barbarzy%C5%84ska,363,444,699088529,4592,0 +21512,Og%C3%B3rkowy+baron,398,393,356642,9835,0 +21513,080,356,463,6258092,9866,0 +21516,Lord+Lord+Franek+.%23195,516,358,698420691,10362,0 +21518,a+mo%C5%BCe+off+%3F+%3A%29,621,576,698768565,9554,0 +21519,od+biedy+do+pot%C4%99gi+4,366,446,699783765,4927,0 +21521,Bagdad,498,355,8847546,9976,0 +21522,Ow+Konfederacja,603,394,848915730,4127,0 +21523,MojeDnoToWaszSzczyt,558,369,699697558,10495,0 +21524,%21+Siwa+Wrona,492,603,606407,10685,0 +21525,A038,570,373,699485250,9174,7 +21526,AA08+Norwegia,379,417,483145,12021,0 +21527,Pobozowisko,404,612,699513260,10957,0 +21528,MojeDnoToWaszSzczyt,561,368,699697558,10495,0 +21529,Szlachcic,422,375,698388578,10237,0 +21530,B.041,641,508,9188016,10000,0 +21531,Wioska+%28031%29,644,476,698232227,8491,0 +21532,-009-,392,599,699097885,8316,0 +21533,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,639,1434753,10068,0 +21534,005,430,373,698364331,11130,0 +21535,Ave+Why%21,463,640,698585370,10495,0 +21536,-064-,376,570,699097885,4831,0 +21537,Avanti%21,355,510,698625834,9950,0 +21538,0065,642,540,6510480,9540,0 +21539,036,372,569,8908002,8160,4 +21540,c+0012,411,388,3909522,9040,0 +21541,K05..,370,577,849090130,10495,0 +21542,Jednak+wol%C4%99+gofry,500,644,699725436,10311,0 +21543,xkikutx,521,359,1990750,9885,0 +21544,A0243,362,464,8841266,10252,0 +21545,B030,643,499,9314079,9879,0 +21546,016,361,541,8908002,7413,0 +21547,164,571,378,849064752,9480,0 +21548,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,563,8004076,8494,0 +21549,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,640,1434753,10068,0 +21550,.%3A023%3A.+%C5%81OBUZIK,556,364,848934935,7368,0 +21551,%2A%2AUnexpected,573,628,699443920,9761,0 +21552,0067,640,530,6510480,8051,0 +21553,Dzikie+wsparcie,481,646,699383279,9706,7 +21554,%2A%2AAgon,575,626,699443920,9761,0 +21555,0385,585,615,698659980,10019,0 +21556,a+mo%C5%BCe+off+%3F+%3A%29,640,543,698768565,9377,0 +21557,Wioska+barbarzy%C5%84ska,527,355,1990750,10068,0 +21558,038.,645,478,849094609,9138,0 +21559,kathare,548,633,873575,10257,0 +21560,a+mo%C5%BCe+off+%3F+%3A%29,637,553,698768565,9495,0 +21561,Og%C3%B3rkowy+baron,396,399,356642,9835,0 +21562,0043,446,367,699431255,9959,0 +21563,182,580,619,8627359,9134,0 +21564,Pobozowisko,402,607,699513260,8699,0 +21565,Avanti%21,353,508,698625834,9950,0 +21566,B.015,646,518,9188016,10000,2 +21567,Kentin+ufam+Tobie,357,471,699783765,10000,0 +21568,028+027,543,361,699491076,10001,0 +21569,A035,575,373,699485250,10168,0 +21570,0130,434,374,699431255,5594,0 +21571,Pobozowisko,404,606,699513260,10321,0 +21572,Wioska+barbarzy%C5%84ska,384,584,699621601,3946,0 +21573,Wioska+barbarzy%C5%84ska,441,369,699191449,10293,0 +21575,0388,587,616,698659980,10019,0 +21576,Gattacka,610,411,699298370,9643,5 +21577,09.+Amon+Din,634,429,849060446,9735,0 +21578,Pobozowisko,406,613,699513260,9718,0 +21579,Wioska+barbarzy%C5%84ska,381,587,699621601,2178,0 +21580,Kentin+ufam+Tobie,363,447,699783765,10000,0 +21581,004,359,539,6853693,10481,0 +21582,MojeSzczytToTw%C3%B3jDno,524,372,828637,10495,0 +21583,FB003,642,493,9314079,9821,0 +21584,0259,537,644,698659980,10160,0 +21585,A34,463,637,849037407,10362,0 +21586,021%7C%7C+Pyxis,490,648,849035525,10019,0 +21587,Pobozowisko,401,605,699513260,10950,7 +21588,0382,583,620,698659980,9753,0 +21589,AA10+Anglia,377,422,483145,5066,0 +21590,0133,642,465,698416970,8626,0 +21591,Wioska+barbarzy%C5%84ska,388,405,8419570,10337,0 +21592,023,362,546,8908002,6861,0 +21594,Wioska+barbarzy%C5%84ska,640,526,7047342,10490,0 +21595,Ave+Why%21,464,641,698585370,10471,0 +21596,Lecymy+DUR,433,371,6169408,5524,0 +21597,001,464,651,848883684,10019,0 +21598,Wioska+barbarzy%C5%84ska,438,365,849017820,6505,0 +21599,c+065d,422,381,3909522,4217,0 +21600,Belek,471,647,849089459,9580,0 +21601,%5B0007%5D,561,630,699567608,9569,0 +21602,002,357,537,6853693,10474,7 +21603,Wioska+barbarzy%C5%84ska,633,549,7047342,10487,0 +21604,c+062d,415,381,3909522,7602,0 +21605,Gattacka,606,398,699298370,10160,0 +21606,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,519,642,7417116,9960,0 +21607,AA01+Polska,379,413,483145,12154,0 +21608,019+Wioska,636,459,699671454,8069,0 +21609,B01,461,640,849037407,10311,0 +21610,Szlachcic,418,377,698388578,10237,0 +21611,Pami%C4%99tasz+tamte+czasy%3F,491,359,848942968,5047,0 +21612,Ow+Konfederacja,600,395,848915730,10273,0 +21613,jaaa,642,544,698635863,10478,3 +21614,001,382,582,699621601,10019,0 +21615,kathare,549,637,873575,10292,0 +21616,037,615,591,698786826,9313,0 +21617,MojeDnoToWaszSzczyt,564,367,699697558,10495,0 +21618,%5BC%5D_%5B008%5D+Dejv.oldplyr,361,460,699380607,10205,0 +21619,c+001b,410,383,3909522,6976,0 +21620,0035,615,415,699429153,9247,0 +21621,Pobozowisko,387,595,699513260,10608,0 +21622,058,440,631,849084985,9835,0 +21623,029+Wioska,644,488,699671454,8214,0 +21624,Pobozowisko,391,591,699513260,7502,0 +21625,005%7C%7C+Leo,491,645,849035525,10019,0 +21626,c+Fyra+2,401,394,3909522,9380,0 +21627,006+Ogromny+Pag%C3%B3rek,620,422,699429153,9899,0 +21628,B.030,645,511,9188016,10000,9 +21629,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,519,641,1434753,10025,0 +21630,Darmowe+przeprowadzki,467,642,848935389,10338,0 +21631,a+mo%C5%BCe+off+%3F+%3A%29,619,582,698768565,10225,8 +21632,031,481,353,698739350,10237,0 +21633,Wioska+barbarzy%C5%84ska,540,643,7756002,9988,0 +21634,Piwna+18,627,431,699812007,7227,0 +21635,Mniejsze+z%C5%82o+0052,360,461,699794765,7676,0 +21636,D%C4%85browa+0008,384,592,849096972,3500,0 +21637,A0156,354,486,8841266,10252,0 +21638,070,601,600,699373599,8993,0 +21639,Kentin+ufam+Tobie,360,454,699783765,10000,0 +21640,North+Barba+004,430,370,699796330,10247,0 +21642,169,582,381,849064752,10311,0 +21643,0014,428,380,699431255,9715,0 +21644,Los+Santos,603,395,699298370,10116,0 +21645,027,613,404,699298370,5616,0 +21646,%21034.519%7C498,638,449,556154,9735,0 +21647,%5B+Szukam+Guza+%5D,579,619,848995242,10495,0 +21648,035.,645,482,849094609,9821,0 +21649,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,638,6180190,9989,0 +21650,011.,486,647,849034882,10495,0 +21651,Ave+Why%21,478,646,698585370,10160,0 +21652,A010,590,382,699761749,10495,0 +21653,002,428,626,699783765,4487,0 +21654,117,472,359,7271812,10484,0 +21655,Gravity,404,449,698962117,9484,0 +21656,053...barbarka,455,359,6920960,10438,0 +21657,Avanti%21,354,506,698625834,9950,0 +21658,Baa,380,488,699265922,9825,0 +21659,deff+100+%25,377,581,849012521,10243,0 +21660,The+Game+Has+Only+Just+Begun,356,530,9280477,9976,0 +21661,Szlachcic,420,375,698388578,10067,0 +21662,Busz,379,491,699265922,9761,0 +21663,MojeDnoToWaszSzczyt,566,367,699697558,10495,0 +21664,a+mo%C5%BCe+off+%3F+%3A%29,640,539,698768565,9395,0 +21665,038,445,638,849084985,9902,0 +21666,035,644,548,698999105,10311,0 +21667,Pobozowisko,386,589,699513260,10270,0 +21668,147...ksi%C4%85%C5%BC%C4%99+plemienia,452,361,6920960,8334,0 +21669,025,364,542,8908002,6190,0 +21670,a+mo%C5%BCe+off+%3F+%3A%29,639,542,698768565,9361,0 +21671,001-Mi%C5%82o%C5%9B%C4%87,433,629,6910361,3976,0 +21672,M181_057,367,437,393668,9894,0 +21673,kathare,551,636,873575,9969,0 +21674,011,606,598,698786826,10211,0 +21675,Ave+Why%21,460,642,698585370,8016,0 +21676,Cardiff,377,424,8967440,10094,0 +21677,B.064,645,506,9188016,10000,0 +21678,012,362,542,8908002,7826,0 +21679,Pobozowisko,406,611,699513260,11819,0 +21680,Kentin+ufam+Tobie,369,445,699783765,10487,0 +21682,0057,619,415,699429153,9825,0 +21683,Wioska+barbarzy%C5%84ska,528,357,1990750,10068,7 +21685,087...barbarka,455,362,6920960,10287,0 +21686,Jan+osada+03+K,639,469,879782,9400,2 +21687,zzzGranica+Bledu+03,606,602,699778867,10503,0 +21688,067.+Gesoriacum,631,439,849091866,10052,0 +21689,Wioska+barbarzy%C5%84ska,440,634,6910361,8386,0 +21690,0029,620,420,699429153,9889,0 +21691,The+Game+Has+Only+Just+Begun,356,534,9280477,9976,0 +21693,M181_056,368,438,393668,9575,0 +21694,s181eo23,393,452,393668,9912,0 +21695,kathare,551,637,873575,9978,0 +21696,Ulu-mulu,420,620,699697558,2857,0 +21697,kathare,548,637,873575,10213,0 +21698,zima,625,421,849095435,9543,0 +21699,Kentin+ufam+Tobie,363,454,699783765,10000,0 +21700,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,641,7589468,8822,0 +21701,121,615,412,7085502,10054,0 +21702,Wioska+Totenhaim,602,538,3364735,9761,0 +21703,002+Wioska+hspr1,569,374,699509239,5030,0 +21704,Ow+Konfederacja+%2B,601,397,848915730,10311,0 +21705,0113,417,617,699697558,6780,7 +21706,020%7C%7C+Monoceros,459,638,849035525,9530,0 +21707,kathare,558,635,873575,10247,0 +21708,Why+dominuje+Orki%21,496,647,698585370,9838,2 +21709,015,475,646,699238479,5542,0 +21710,Wioska+barbarzy%C5%84ska,640,527,7047342,10545,0 +21711,086,453,638,849084985,9570,0 +21712,A023,586,383,699485250,10211,0 +21713,Ave+Why%21,465,642,698585370,7773,0 +21714,MojeDnoToWaszSzczyt,558,363,699697558,10495,0 +21715,Pobozowisko,410,614,699513260,9657,0 +21716,SSJ+040,517,645,699054373,9761,0 +21717,hbmacko,600,602,7829201,9955,0 +21718,MELISKA,357,468,699794765,10036,0 +21719,Wioska+barbarzy%C5%84ska,609,406,848915730,9574,5 +21721,Wioska_2,489,358,848942968,3816,0 +21722,The+Game+Has+Only+Just+Begun,358,525,9280477,9976,0 +21723,%230035+barbarzy%C5%84ska,466,357,1238300,10178,0 +21724,Kentin+ufam+Tobie,357,459,699783765,10019,0 +21725,34k%24+Grvvyq,637,550,699676005,9897,0 +21726,Pobozowisko,405,605,699513260,7760,0 +21727,%2A1%2A,581,382,849064614,9382,0 +21728,Lecymy+DUR,437,367,6169408,10838,0 +21729,A0292,355,481,8841266,10252,0 +21731,142+Nowy+pocz%C4%85tek,373,568,699382126,7375,0 +21732,%2AINTERTWINED%2A%2A,518,644,698704189,9711,0 +21733,Ow+Konfederacja,603,399,848915730,10273,0 +21734,Nowa+Nadzieja+5,494,598,699383121,9528,0 +21735,%2A5621%2A+Happy,640,525,7973893,10287,0 +21736,032,643,523,849006412,5425,0 +21737,off+100+%25,362,555,849012521,10256,0 +21738,Kentin+ufam+Tobie,364,454,699783765,10000,0 +21739,Pobozowisko,398,603,699513260,10954,0 +21740,%2A%2AAlgonquin,574,627,699443920,9761,0 +21741,0390,587,614,698659980,10019,0 +21742,0007,475,643,6180190,10637,0 +21743,001.+Wioska+Mr+Bizy,502,643,848928624,10273,0 +21744,069.+Nicaea,632,443,849091866,10236,0 +21745,Wioska+barbarzy%C5%84ska,434,631,6910361,6388,0 +21746,013,607,598,698786826,10211,0 +21747,___,378,471,699523631,10479,0 +21748,063+Wioska+barbarzy%C5%84ska,546,359,699491076,10001,0 +21749,BEZDZIETNY+KAWALER,425,627,848913998,6141,0 +21750,South+K35,552,368,699146580,10042,0 +21751,Pobozowisko,391,606,699513260,10950,0 +21752,Brat447,354,479,699262350,10476,0 +21754,Pobozowisko,400,600,699513260,10950,0 +21755,Bunkier+002,618,588,699778867,12154,0 +21756,nic,575,621,699828685,10311,0 +21757,011,621,416,699429153,9899,0 +21758,A012,599,392,699761749,10495,2 +21759,Szlachcic,422,377,698388578,10237,0 +21760,08.+Wioska+8,370,560,849091769,9648,0 +21761,So%C5%82tys+Twojej+Wsi,403,387,849027025,9747,0 +21762,069,430,376,699796330,6475,0 +21763,Reginopolis,380,431,699644054,4496,0 +21764,Ulu-mulu,410,617,699697558,3829,0 +21765,033.,643,476,849094609,9827,0 +21767,015.+Kacundzk,642,478,849094609,9819,0 +21768,%C5%82aweczka,629,427,849095435,10300,0 +21769,c+Konarskiego+2,407,388,3909522,7007,0 +21770,%2A%2AAfter,574,625,699443920,9761,0 +21771,pepe,358,526,849030226,7852,0 +21772,ARE+YOU+READY%3F,592,388,699485250,6589,0 +21773,Lecymy+DUR,444,363,6169408,2624,0 +21774,%7E%7E023%7E%7E,601,607,7829201,9819,0 +21775,014.+Kacundzk,648,486,849094609,9761,0 +21776,008+Wioska+barbarzy%C5%84ska,569,375,699509239,7190,0 +21777,kathare,547,638,873575,9830,0 +21778,058,427,622,699783765,4797,7 +21779,Pigi+1+Blisko,619,589,699778867,12154,0 +21780,A0169,353,487,8841266,10252,0 +21781,zXanadu,391,595,699849210,10064,0 +21782,028,632,551,849095227,9719,0 +21783,011.,648,493,849094609,9999,0 +21784,xkikutx,520,358,1990750,10068,0 +21785,%23032.517%7C499,636,450,556154,9735,0 +21786,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,641,1434753,9829,0 +21788,A0194,356,486,8841266,10252,0 +21789,002,359,542,8908002,9993,0 +21790,xWioska,525,353,1990750,10068,0 +21791,058,357,512,698641566,9809,0 +21792,%5BC%5D_%5B001%5D+Dejv.oldplyr,358,472,699380607,10495,0 +21793,Darmowe+przeprowadzki,466,642,848935389,10471,0 +21794,074,470,361,698739350,9761,0 +21795,Ave+Why%21,465,638,699121671,9809,0 +21796,034,484,353,698739350,10237,0 +21797,WB004,585,619,8627359,9452,0 +21798,Konfederacja+%2B,456,365,848915730,9707,0 +21800,019,643,475,849093875,3811,0 +21801,Szlachcic,425,374,698388578,8367,0 +21802,A+023,600,393,6384450,8268,0 +21803,WE+ARE+READY%21,594,385,1553947,8510,0 +21804,102,476,354,7271812,10495,0 +21805,ETAT+Z+PO%C5%9AREDNIAKA,422,622,848913998,5005,0 +21806,Wioska+2,382,586,699621601,9071,0 +21807,026,613,406,699298370,3690,0 +21808,psycha+sitting,461,643,699736927,10311,0 +21809,Ow+Konfederacja,603,397,848915730,10273,0 +21810,112+Wioska+barbarzy%C5%84ska,537,357,699491076,10001,0 +21811,026+Wioska,643,486,699671454,6482,0 +21812,0031,624,421,699429153,9627,0 +21814,--4.+Pole+kalafior%C3%B3w,386,407,698345556,10336,5 +21816,Wioska+barbarzy%C5%84ska,528,358,1990750,9968,0 +21817,MojeDnoToWaszSzczyt,563,367,699697558,10495,0 +21818,%23001,605,395,7555180,10495,0 +21819,Kentin+ufam+Tobie,361,448,699783765,10014,0 +21820,A-003,388,402,8419570,10580,9 +21821,079,360,540,6853693,4882,0 +21822,0024+-+teraz+si%C4%99+obudzi%C5%82,488,645,33900,10143,0 +21823,c+Fyra+1,400,397,3909522,9137,0 +21824,025+-+Mostoles,643,481,698342159,10019,0 +21825,Wioska+barbarzy%C5%84ska,546,363,699072129,8884,0 +21826,B018,641,459,9314079,10068,0 +21827,040,644,517,699351301,6138,0 +21828,00193,440,413,3909522,5429,0 +21829,Kurczak+Po%C5%BCogi,358,473,3713020,4609,0 +21830,006%7C%7C+Virgo,487,644,849035525,10019,0 +21831,Lord+Lord+Franek+.%23196,504,352,698420691,9187,0 +21832,Ave+Why%21,456,639,698585370,10251,5 +21833,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,564,8004076,9203,0 +21834,ave+why%21,435,634,698143931,10237,0 +21835,Horyzont+zdarze%C5%84,539,644,7581876,9835,0 +21836,087,445,639,849084985,3140,0 +21837,132+DaSilva2402,517,353,699491076,10001,0 +21838,021,609,598,698786826,7013,0 +21839,%2A%2AEasy,570,631,699443920,9771,0 +21840,B.043,649,513,9188016,10019,0 +21841,0288,535,641,698659980,9690,0 +21842,027,361,547,8908002,6898,0 +21843,031...strazacki,460,362,6920960,10495,0 +21844,44.+Wioska+44,370,566,849091769,9921,0 +21845,Wioska+barbarzy%C5%84ska,374,577,849012521,5962,0 +21846,B.044,647,511,9188016,10003,0 +21847,deff+100+%25,364,557,849012521,9602,0 +21848,Ambrela+001,575,372,698823542,10495,0 +21849,%23.44+Wioska+barbarzy%C5%84ska,641,483,849054582,4060,0 +21850,Wioska+barbarzy%C5%84ska,381,580,699621601,3366,0 +21851,Pobozowisko,389,591,699513260,7591,0 +21852,a+mo%C5%BCe+off+%3F+%3A%29,639,553,698768565,9334,0 +21854,003%7C%7C+Gemini,485,645,849035525,10019,0 +21855,029+030,539,361,699491076,10001,0 +21856,BEZDZIETNY+KAWALER,418,624,848913998,5543,0 +21857,A0195,356,492,8841266,10252,0 +21858,BZioska+barbarzy%C5%84ska,638,551,7047342,10479,0 +21859,-024-,389,592,699097885,9359,2 +21860,0107,418,618,699697558,5906,0 +21861,Westcoast.113,377,426,848918380,10178,0 +21862,jaaa,641,542,698635863,10636,0 +21863,jaaa,635,563,698635863,10495,0 +21864,jaaa,631,568,698635863,10481,0 +21865,078,483,359,698739350,10713,0 +21866,114,478,356,7271812,10348,0 +21867,Wioska+barbarzy%C5%84ska,642,455,699524891,9647,0 +21868,Wioska+barbarzy%C5%84ska,372,428,699753640,4204,0 +21869,0085,531,643,698659980,10160,0 +21870,K34+-+%5B026%5D+Before+Land,443,370,699088769,10259,0 +21871,Ow+Konfederacja,608,401,848915730,10654,0 +21872,Kentin+ufam+Tobie,357,470,699783765,10000,0 +21873,Ulu-mulu,414,615,699697558,4785,0 +21874,Jehu_Kingdom_46,645,472,8785314,10304,0 +21876,c+003+j%C3%B3zefin,412,386,3909522,10072,0 +21877,106,485,353,699761749,10137,0 +21878,yyyy,500,355,699883079,10057,0 +21879,B.063,645,504,9188016,10000,0 +21880,046,469,360,698739350,10237,0 +21881,-+328+-+RR,592,615,849018239,9465,0 +21882,0001,478,643,699117178,10238,0 +21883,Kentin+ufam+Tobie,360,451,699783765,10019,0 +21884,wioska+strachu,547,361,699072129,10247,0 +21885,005,361,544,8908002,9993,0 +21886,Mniejsze+z%C5%82o+0061,363,459,699794765,6936,0 +21887,0110,436,375,699431255,9746,0 +21888,--8.+Parzymiechy+Dolne,384,407,698345556,7848,0 +21889,0036,443,367,699431255,10069,0 +21890,Westcoast.102,369,431,848918380,10178,0 +21891,068,583,379,849064752,10311,0 +21892,A0103,355,489,8841266,10252,0 +21894,Ave+Why%21,442,636,698585370,9019,0 +21895,Wioska+barbarzy%C5%84ska,552,360,699072129,10232,0 +21896,08.+Wiocha,435,630,6910361,10019,0 +21897,a+mo%C5%BCe+off+%3F+%3A%29,633,557,698768565,9340,0 +21898,mys,563,635,699828685,10068,0 +21899,012.,643,496,849094609,10019,0 +21900,a+mo%C5%BCe+off+%3F+%3A%29,642,545,698768565,9737,0 +21901,aaaa,476,641,6948793,9899,0 +21902,Jestem+Poza+Kontrol%C4%85,364,550,8004076,9148,0 +21903,%23033.518%7C499,637,450,556154,9735,0 +21904,0049,443,365,699431255,9923,5 +21905,071,643,532,699351301,10301,0 +21906,029,451,640,849084985,9626,0 +21907,Kentin+ufam+Tobie,365,449,699783765,10000,0 +21908,The+Game+Has+Only+Just+Begun,353,518,9280477,9976,0 +21909,Ave+Why%21,456,640,698585370,9239,0 +21910,Valhalla+A7,374,578,849097002,4894,0 +21911,Ow+Konfederacja,603,400,848915730,10273,2 +21912,ETAT+Z+PO%C5%9AREDNIAKA,425,619,848913998,5734,0 +21913,Wioska+barbarzy%C5%84ska,533,354,1990750,9665,0 +21914,Wioska+barbarzy%C5%84ska,528,359,1990750,10068,0 +21915,023+-+Sabadell,643,514,698342159,10019,0 +21916,ETAT+Z+PO%C5%9AREDNIAKA,424,618,848913998,10311,0 +21917,014,637,549,849095227,9761,0 +21918,VN+Shaiapouf,496,355,699883079,10375,0 +21919,SSJ+043,514,644,699054373,9761,0 +21920,145,450,361,6920960,7226,0 +21921,Wioska+raj,392,402,6171569,2445,0 +21922,Avanti%21,352,508,698625834,9950,0 +21923,-+344+-+RR,595,610,849018239,9744,0 +21924,Deveste+ufam+Tobie,437,630,699783765,10362,8 +21925,MojeSzczytToTw%C3%B3jDno,533,387,828637,10474,0 +21926,aAa+Szlaban+4,601,601,699778867,11321,0 +21927,Og%C3%B3rkowy+baron,391,398,356642,9835,0 +21928,Bagdad,498,357,8847546,9976,0 +21929,Osada+koczownik%C3%B3w,366,443,699088529,8486,2 +21930,A021,587,382,699485250,10168,0 +21931,003,427,626,2289134,4325,0 +21932,000000000,553,633,873575,10390,9 +21933,--7.+Zimna+Dziura,386,408,698345556,8636,0 +21934,0045,445,364,699431255,9967,0 +21935,Wioska+%28010%29,627,434,698232227,8555,6 +21936,%23008,604,397,7555180,9300,0 +21937,078,647,525,699351301,9552,0 +21938,Wioska+002,389,401,6171569,3194,0 +21939,0561,568,631,698659980,10019,0 +21940,0136,437,371,699431255,8754,0 +21941,AB14+Kosowo,382,417,483145,4716,0 +21942,%2AINTERTWINED%2A,507,643,698704189,9711,0 +21943,VN+Machi+Komacine,457,362,699883079,10063,0 +21945,A0147,353,497,8841266,10252,0 +21946,Wioska+barbarzy%C5%84ska,641,536,7047342,10714,0 +21948,c+086d,413,381,3909522,5611,0 +21949,C004,596,385,699761749,7156,0 +21950,a+mo%C5%BCe+off+%3F+%3A%29,641,544,698768565,9366,0 +21951,033,585,618,698999105,10311,0 +21952,015+Wioska+barbarzy%C5%84ska,568,370,699509239,5219,0 +21953,013+%7C+PALESTINA,639,446,9228039,9544,6 +21954,Lecymy+DUR,444,366,6169408,9160,0 +21955,Fto+mi+moplik+dupno%C5%82+gorole,360,453,699711723,6166,0 +21956,Gattacka,610,403,699298370,9382,0 +21957,002,495,645,848953066,10187,0 +21958,Ulu-mulu,416,619,699697558,1531,0 +21959,Wioska+barbarzy%C5%84ska,385,406,8419570,10242,0 +21960,168,573,377,849064752,10311,0 +21961,c+010+Oaza+8,414,380,3909522,9294,0 +21962,037,371,566,8908002,8358,0 +21963,a+mo%C5%BCe+off+%3F+%3A%29,623,577,698768565,10005,0 +21965,%7E%7E025%7E%7E,596,607,7829201,9488,0 +21966,cichy+oszust,588,577,1715091,9835,0 +21967,%230037+barbarzy%C5%84ska,466,358,1238300,10178,0 +21968,%230001+messi1996,468,353,1238300,10178,0 +21969,A0104,353,488,8841266,10252,0 +21970,jaaa,627,566,698635863,10476,0 +21971,Piek%C5%82o+to+inni,572,371,848956765,10495,0 +21972,050,427,624,699783765,4630,0 +21973,Bia%C5%82o%C5%82%C4%99ka,402,388,849027025,9446,0 +21974,BEZDZIETNY+KAWALER,420,627,848913998,6479,0 +21975,030+031,543,362,699491076,10001,0 +21977,Og%C3%B3rkowy+baron,398,400,356642,9835,0 +21978,111,628,424,7085502,10251,0 +21979,012+%7C+PALESTINA,633,438,9228039,9239,0 +21980,SSJ+061,521,648,699054373,9505,0 +21982,Jednak+wol%C4%99+gofry,496,646,699725436,9888,0 +21983,Jednak+wol%C4%99+gofry,429,634,699736927,10311,0 +21984,c+001c,409,382,3909522,8813,0 +21985,Mniejsze+z%C5%82o+0038,361,468,699794765,7496,0 +21986,Iluminacja,377,576,849095992,4521,0 +21987,B.008,649,511,9188016,10000,0 +21988,%5B0017%5D,555,632,699567608,9031,0 +21989,029,470,645,698650301,8473,0 +21990,%23037.520%7C496,639,447,556154,9735,0 +21991,Szlachcic,433,370,698388578,8792,0 +21992,Ulu-mulu,427,614,699697558,8313,0 +21993,014+Legio+I+Herculia+%28G%29,650,500,699878150,9165,5 +21994,105,488,354,699761749,10495,0 +21995,Wioska+barbarzy%C5%84ska,405,402,0,10019,0 +21996,-+337+-+RR,595,612,849018239,9959,0 +21997,Og%C3%B3rkowy+baron,400,391,356642,9835,0 +21998,010-Patryk,431,628,6910361,3491,0 +21999,125,505,354,7271812,7039,0 +22000,--6.+Ruska+Rafineria,388,411,698884287,10285,0 +22001,Szlachcic,424,375,698388578,10061,0 +22002,Wioska+barbarzy%C5%84ska,371,575,849012521,5452,0 +22003,A008,580,373,699485250,10211,0 +22004,The+Game+Has+Only+Just+Begun,357,528,9280477,9976,0 +22005,Avanti%21,352,513,698625834,9950,0 +22006,a+mo%C5%BCe+off+%3F+%3A%29,632,557,698768565,9334,0 +22007,Pobozowisko,375,581,699513260,10141,0 +22008,013+Legio+I+Isaura+Sagitaria,646,486,699878150,4056,0 +22009,%230020+kamilsan993,469,357,1238300,10178,0 +22010,030+Sibir,616,584,699272880,9935,0 +22011,Wioska+barbarzy%C5%84ska,390,416,7462660,10172,0 +22012,South+K35,555,366,699146580,9809,0 +22013,A0165,352,491,8841266,10252,0 +22014,046...CENTRO,455,357,6920960,10237,0 +22015,Zeta+Reticuli+S2,391,408,699323302,10265,0 +22016,Piwna+19,631,435,699812007,6330,0 +22017,Piek%C5%82o+to+inni,571,371,848956765,10495,4 +22018,Pobozowisko,396,599,699513260,10971,0 +22019,062,618,591,698786826,5194,0 +22021,0026,538,641,698659980,10083,0 +22022,Kentin+ufam+Tobie,362,452,699783765,10000,0 +22023,Jan+Nord+K,642,458,879782,9535,0 +22024,Ulu-mulu,413,620,699697558,2535,0 +22025,Daje+w+szyje+.,578,627,848995242,10495,0 +22026,Og%C3%B3rkowy+baron,403,395,356642,9835,0 +22027,Lecymy+DUR,435,368,6169408,8369,0 +22028,059,438,632,849084985,8478,0 +22029,North+Barba+015,431,368,699796330,9761,0 +22030,MojeDnoToWaszSzczyt,563,366,699697558,10495,0 +22031,%2A%2AKillarney,575,629,699443920,9761,0 +22032,Pobozowisko,393,601,699513260,10945,0 +22033,081,450,638,849084985,8372,0 +22034,-003-,358,544,9253494,9798,0 +22035,019.+Winner,503,648,848928624,9796,0 +22036,Wioska+barbarzy%C5%84ska%2C,582,621,848995242,10233,0 +22037,Ow+Konfederacja,607,402,848915730,10273,0 +22038,monetki+B,621,577,698768565,9557,9 +22039,Eilonia,516,570,849066849,8759,0 +22040,Lecymy+DUR,438,366,6169408,3715,0 +22041,The+Game+Has+Only+Just+Begun,353,520,9280477,9976,0 +22043,Ow+Konfederacja,602,398,848915730,10273,0 +22044,Coruscant,501,602,699383121,9797,0 +22046,c+Agnesiara,399,390,3909522,7268,0 +22047,MojeDnoToWaszSzczyt,557,367,699697558,10495,0 +22048,Wioska+barbarzy%C5%84ska,362,442,699088529,4096,0 +22049,Myk+i+do+kieszonki,358,560,9319058,9799,0 +22050,c+004+Wioska,413,387,3909522,10083,0 +22051,Mniejsze+z%C5%82o+0062,362,460,699794765,5641,0 +22052,126,508,353,7271812,6883,0 +22053,%23004+Zenit+W%C5%82adca+%C5%9Awiata,365,440,849096215,2052,0 +22054,Jan+04+K,639,457,879782,9299,0 +22055,B.045,644,520,9188016,10000,0 +22056,%7E%7E039%7E%7E,596,608,849018239,9718,0 +22057,A012,578,377,699485250,10211,0 +22058,Amsterdam,492,351,699244334,3700,0 +22059,008+181,356,500,698807570,10004,0 +22060,Ulu-mulu,415,621,699697558,3431,0 +22061,Nowa+Nadzieja+4,497,591,699383121,7307,0 +22062,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,368,567,8004076,7821,0 +22063,B006,399,605,699383279,9592,0 +22064,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,369,567,8004076,9133,0 +22065,Maszlug+kolonia,367,432,848977649,9797,0 +22066,Jestem+Poza+Kontrol%C4%85,359,548,8004076,7764,0 +22067,027,579,380,7271812,10495,9 +22068,Pobozowisko,387,596,699513260,10952,0 +22069,Mobil,539,643,7589468,8825,0 +22070,006+Robi%C4%99+Papiery,545,363,699491076,10001,0 +22071,Rohan,612,407,699298370,7450,0 +22073,MELISKA,357,466,699794765,9330,0 +22074,008+Sprz%C4%85tana+%C5%81azienka,539,362,699491076,10001,0 +22075,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,367,565,8004076,9389,0 +22077,Og%C3%B3rkowy+baron,396,397,356642,9835,0 +22078,%21%21off+100+%25,364,555,849012521,10265,0 +22079,Ulu-mulu,414,617,699697558,4432,0 +22080,Wioska+barbarzy%C5%84ska,553,363,699072129,10237,0 +22081,%7CA%7C+Nightcross,480,649,698807570,10495,0 +22082,009.,485,647,849034882,10838,0 +22083,Aleksandria,493,353,699244334,4167,0 +22085,023+Alta,617,585,699272880,10172,0 +22086,North+PataTaj,431,369,699796330,9923,6 +22087,037.,640,479,849094609,7385,0 +22088,-x4,499,499,848967710,10252,0 +22089,Pobozowisko,374,581,699513260,10971,0 +22090,od+biedy+do+pot%C4%99gi+3,366,439,849094603,3341,0 +22091,0048,451,363,699431255,10053,0 +22092,SSJ+045,514,646,699054373,9761,0 +22093,Szlachcic,423,371,698388578,10237,0 +22094,120,475,353,7271812,10268,0 +22095,Mniejsze+z%C5%82o+0047,361,463,699794765,9475,0 +22096,Ulu-mulu,412,620,699697558,2788,0 +22097,Wioska+barbarzy%C5%84ska,373,577,849012521,4564,0 +22098,022,615,592,698786826,10220,0 +22099,Konfederacja+%2B,449,369,848915730,9976,0 +22100,064+Wioska+barbarzy%C5%84ska,537,359,699491076,10001,0 +22102,Opactwo,378,582,8607734,9654,0 +22104,BEZDZIETNY+KAWALER,425,622,848913998,6360,0 +22105,065+Wioska+barbarzy%C5%84ska,544,357,699491076,10001,0 +22106,MojeDnoToWaszSzczyt,564,366,699697558,10495,0 +22107,MojeDnoToWaszSzczyt,560,369,699697558,10495,0 +22108,A008,475,641,699383279,9793,0 +22109,B022,646,502,9314079,9835,0 +22110,The+Game+Has+Only+Just+Begun,358,533,9280477,9976,0 +22111,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,647,699828442,9899,0 +22112,47.+Wioska+47,363,549,849091769,7720,0 +22113,%7E%7E047%7E%7E,600,610,7829201,9742,0 +22114,Herrmein,371,572,8607734,10019,0 +22115,Pobozowisko,392,594,699513260,7890,0 +22116,0562,567,631,698659980,10019,0 +22117,B.010,648,509,9188016,10000,0 +22118,Wioska+barbarzy%C5%84ska,364,442,699088529,7882,0 +22119,080,358,536,6853693,5375,0 +22120,Gattacka,620,414,699298370,11422,0 +22121,Pobozowisko,395,597,699513260,10963,0 +22123,Kentin+ufam+Tobie,363,451,699783765,10000,0 +22124,006,462,360,699883079,9716,0 +22125,B012,643,490,9314079,10042,0 +22126,%3D002-00%3DSzlachcic%3D%40%23-4-,564,634,699287032,6344,0 +22127,074,438,635,849084985,9994,0 +22128,087,356,540,6853693,4016,0 +22129,North+Barba+036,433,367,699796330,9761,0 +22130,023,611,596,698786826,10084,0 +22131,Hieracium+pilosella,496,352,699883079,9902,0 +22132,MojeDnoToWaszSzczyt,557,363,699697558,10495,8 +22133,Kentin+ufam+Tobie,362,451,699783765,10000,0 +22134,The+Game+Has+Only+Just+Begun,354,525,9280477,9976,2 +22135,113,624,416,7085502,11215,0 +22136,Jednak+wol%C4%99+gofry,501,647,699725436,7910,0 +22137,B004,647,493,9314079,9818,0 +22138,jaaa,631,569,698635863,10495,0 +22139,SSJ+057,514,649,699054373,9761,0 +22140,-+336+-+RR,596,613,849018239,9965,0 +22141,%2A%2AUnlikely,573,629,699443920,9761,0 +22142,005,637,557,698702991,9819,0 +22143,North+Barba+005,430,368,699796330,10290,0 +22144,%2AINTERTWINED%2A%2A,511,648,698704189,9353,0 +22145,004.+Nightmare,632,438,849095599,10019,0 +22146,Piek%C5%82o+to+inni,569,373,848956765,9643,0 +22147,027,478,352,698739350,10237,0 +22148,Brat447,461,505,699262350,10779,0 +22149,Ave+Why%21,476,645,699121671,9809,0 +22150,c+088d,412,381,3909522,5606,0 +22151,dawidek,401,387,849027025,9889,0 +22153,Westcoast.103,368,429,848918380,10178,0 +22155,Wioska+barbarzy%C5%84ska,396,394,8419570,10168,0 +22156,133+DaSilva2402,518,351,699491076,10001,0 +22157,Mexico3,458,643,699736927,10178,0 +22159,012.+Ebe+ebe,634,443,849095599,10019,0 +22161,%7CA%7C+Heartcall..,490,647,698147372,10495,0 +22162,%2A%2AJoy,571,631,699443920,9902,0 +22163,K34+-+%5B118%5D+Before+Land,446,360,699088769,10259,0 +22164,Lord+Lord+Franek+.%23201,500,352,698420691,9143,0 +22165,A0166,354,490,8841266,10252,0 +22166,jaaa,634,564,698635863,10478,0 +22167,psycha+sitting,452,642,699736927,10311,4 +22169,A011,587,386,699761749,10401,0 +22170,0055,617,412,699429153,9519,0 +22171,c+Tre1,400,392,3909522,7210,0 +22173,Lecymy+DUR,442,362,6169408,4555,0 +22174,Wioska+barbarzy%C5%84ska,630,437,699429153,8336,0 +22175,Pobozowisko,399,606,699513260,10237,0 +22178,Mniejsze+z%C5%82o+0048,357,462,699794765,6450,0 +22180,126.+Agary,630,424,8337151,7140,0 +22181,A0206,357,481,8841266,10252,0 +22182,059+Koganei,640,466,7092442,10495,0 +22183,B015,647,494,9314079,9998,0 +22184,034.,577,374,699799629,2590,0 +22186,ETAT+Z+PO%C5%9AREDNIAKA,424,619,848913998,6160,0 +22187,Oww+Konfederacja,609,394,848915730,9938,0 +22188,Konfederacja+%3F,613,401,849094147,7521,0 +22189,015+Szare+%C5%BBycie,617,408,699429153,9899,0 +22190,nic,573,624,699828685,10311,0 +22191,MojeDnoToWaszSzczyt,556,367,699697558,10495,0 +22192,xOsada+koczownik%C3%B3w,530,355,1990750,10068,8 +22193,019.,486,622,699494488,10495,0 +22194,Pobozowisko,403,612,699513260,11550,0 +22195,Lord+Lord+Franek+.%23223,524,355,698420691,9914,0 +22196,Pobozowisko,405,611,699513260,10920,0 +22197,050,646,533,699351301,10160,0 +22198,017,639,552,849095227,9761,0 +22199,c+005+Wioska,403,388,3909522,10357,0 +22200,A0058,350,492,8841266,10252,8 +22202,kathare,552,638,873575,9785,0 +22203,016,639,546,849095227,9761,0 +22204,Ulu-mulu,411,618,699697558,5660,0 +22206,Ave+Why%21,455,637,698585370,6992,0 +22207,Pobozowisko,394,598,699513260,3719,0 +22208,x%3DALFA%3D,527,357,1990750,10068,0 +22209,A-022,392,396,8419570,10168,0 +22210,0563,567,630,698659980,10019,0 +22211,a+mo%C5%BCe+off+%3F+%3A%29,624,578,698768565,10211,0 +22212,B.046,649,515,9188016,10000,0 +22213,120,644,536,7038651,9873,0 +22214,AA05+Portugalia,380,416,483145,12154,0 +22215,Maszlug+kolonia+II,368,435,848977649,9137,2 +22216,%23.02+Baza+Gliwice,652,480,849054582,10019,0 +22217,-026-,388,595,699665152,7590,0 +22219,067,647,529,699351301,10141,0 +22220,Brat447,354,477,699262350,10709,0 +22221,Wioska+barbarzy%C5%84ska,366,444,699088529,8052,0 +22223,yyyy,501,350,699883079,10052,0 +22224,-+236+-+RR,590,619,849018239,10000,0 +22225,--2.+Generalne+Gubernatorstwo,385,409,698345556,10495,6 +22226,Ave+Why%21,440,637,698585370,8610,0 +22227,Pobozowisko,397,608,699513260,10952,6 +22228,Lecymy+DUR,441,367,6169408,1628,0 +22229,B.067,643,508,9188016,10000,0 +22230,Barbara+002,419,623,699730998,9409,0 +22231,035+%7C+PALESTINA,635,434,9228039,5019,0 +22232,.1.,365,555,849012521,9404,0 +22233,Maszlug+kolonia+XIV,373,433,848977649,5630,0 +22234,037+Nakagawa,643,480,7092442,10495,0 +22235,Pobozowisko,382,593,699513260,10971,0 +22236,028,484,352,698739350,10237,0 +22237,024,611,597,698786826,6635,0 +22238,066,354,468,6258092,10252,0 +22239,Maszlug+kolonia+III,366,431,848977649,9541,0 +22240,Kentin+ufam+Tobie,357,454,699783765,10000,0 +22241,c+063d,415,380,3909522,6896,0 +22243,B03+radzik354,466,645,849037407,9741,0 +22244,Avanti%21,354,509,698625834,9950,0 +22245,216,573,386,849064752,10503,0 +22246,073,643,528,699351301,9750,0 +22247,a+mo%C5%BCe+off+%3F+%3A%29,639,551,698768565,9344,0 +22248,Szlachcic,406,387,699402816,9835,0 +22249,kathare,554,637,873575,9910,0 +22251,xkikutx,507,350,1990750,10068,0 +22252,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,493,636,6948793,10044,0 +22253,zMakadi+Bay,391,596,699849210,10077,0 +22254,034,359,544,8908002,8136,0 +22255,ETAT+Z+PO%C5%9AREDNIAKA,421,624,848913998,4968,0 +22256,A0160,356,495,8841266,10252,0 +22257,Ahmadabad,492,353,699244334,4676,0 +22258,045,441,634,849084985,9835,0 +22259,Jednak+wol%C4%99+gofry,468,646,699725436,10311,0 +22260,0040,451,362,699431255,10047,0 +22261,0030,624,420,699429153,9825,0 +22262,Maszlug+kolonia+V,368,432,848977649,9103,0 +22263,0037,450,364,699431255,10311,0 +22264,mys,562,634,699828685,9976,0 +22265,Wioska+barbarzy%C5%84ska,370,428,699753640,2429,0 +22266,0047,616,410,699429153,9825,0 +22267,%23003+Kocham+Zenita,365,441,849096215,3889,0 +22268,Tomall78,633,430,699524891,7140,0 +22269,%7CX%7C+Xenxa,469,646,698147372,10140,0 +22270,Gattacka,604,395,699298370,10059,0 +22271,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,569,8004076,8084,0 +22272,020,359,526,698641566,9809,8 +22274,Beka+z+why,488,646,6180190,9803,0 +22275,0378,581,625,698659980,7658,0 +22276,Pobozowisko,399,609,699513260,10955,0 +22277,108,354,464,6258092,9814,0 +22278,Pf+Konfederacja+%2B,494,497,848915730,10838,0 +22279,015+181,354,502,698807570,9690,0 +22280,Magiczne+koszary,482,645,848935389,9809,0 +22281,026.+Oranje,502,649,848928624,10362,0 +22282,%2B%2B002%2B%2B,382,414,698884287,9596,0 +22283,0391,588,614,698659980,10019,0 +22284,Sony+911,575,612,1415009,10209,0 +22285,BEZDZIETNY+KAWALER,416,625,848913998,5600,0 +22286,A0135,353,489,8841266,10252,0 +22287,Za+oknem,355,493,699265922,9752,0 +22288,Wioska+2,468,641,699121671,9809,0 +22289,0139,644,462,698416970,7031,0 +22290,029%7C%7C+Canis+Major,490,646,849035525,9925,0 +22291,South+K35,555,367,699146580,10042,0 +22292,a+mo%C5%BCe+off+%3F+%3A%29,641,543,698768565,9340,0 +22293,%7E%7E013%7E%7E,603,600,7829201,9815,0 +22294,MELISKA,358,465,699794765,10252,0 +22295,0112,423,624,6910361,2016,0 +22296,A044,583,380,699485250,5132,7 +22298,014+Wioska+barbarzy%C5%84ska,569,370,699509239,5303,0 +22299,Centauria,375,578,8607734,10019,3 +22300,0022,592,384,699485250,10211,0 +22301,015.+Ale+kac,634,437,849095599,10019,0 +22302,-+101+-+RR,588,621,849018239,10000,0 +22303,Jednak+wol%C4%99+gofry,476,648,699725436,9835,0 +22304,24.+Altanka+u+banana,379,588,8665783,8866,0 +22305,Wioska+barbarzy%C5%84ska.,374,427,699753640,2036,0 +22306,Jan+014+K,642,471,879782,9310,0 +22307,c+0031,412,385,3909522,10005,0 +22308,AB15+Ukraina,375,417,483145,4224,1 +22309,Ulu-mulu,430,615,699697558,3546,0 +22310,Ave+Why%21,457,638,698585370,9412,0 +22311,Alicization+6,462,647,699849210,9029,0 +22312,Pobozowisko,404,616,699513260,10971,0 +22313,psycha+sitting,452,647,699736927,10178,0 +22314,The+Game+Has+Only+Just+Begun,354,526,9280477,9976,0 +22315,010.+Benten,634,447,849095599,10019,0 +22316,The+Game+Has+Only+Just+Begun,354,522,9280477,9976,0 +22317,%245.000+Grvvyq,635,550,699676005,10495,0 +22318,--004--,381,411,698884287,10285,0 +22319,Wioska+barbarzy%C5%84ska,548,360,699072129,10237,0 +22320,%23038.520%7C498,639,449,556154,9735,0 +22321,Wioska+barbarzy%C5%84ska,382,408,698884287,10285,0 +22322,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,647,699828442,9825,0 +22324,Pobozowisko,404,610,699513260,7213,0 +22325,Pobozowisko,397,603,699513260,10951,0 +22326,10.+Hell,408,616,9060641,9184,0 +22327,AA07+Grecja,378,414,483145,12154,0 +22328,Westcoast.114,378,425,848918380,10178,0 +22329,021.+Szczupaka,507,649,848928624,9402,0 +22330,%7CA%7C+Mistrun..,484,644,698147372,10495,0 +22331,KR%C3%93L+PAPI+WIELKI,572,570,698191218,10000,0 +22332,24k%24+Grvvyq,638,554,699676005,10495,0 +22333,26.+Okuninka,379,587,8665783,7293,0 +22334,So%C5%82tys+Twojej+Wsi,403,386,849027025,9622,0 +22335,%7CA%7C+Roguehollow,480,646,698807570,10495,0 +22336,075,467,360,698739350,9902,0 +22337,Cisza+2,356,543,698769107,4971,0 +22338,017+018,537,360,699491076,10001,2 +22339,Ulu-mulu,431,607,699697558,7717,0 +22340,A0298,354,481,8841266,10252,0 +22341,Pobozowisko,397,607,699513260,10971,0 +22342,jaaa,632,567,698635863,10481,0 +22343,064,647,520,699351301,10160,0 +22344,kathare,551,634,873575,9909,0 +22345,Ulu-mulu,417,623,699697558,3739,0 +22346,CSA,521,357,7651093,9811,0 +22347,65.+KaruTown,642,450,849060446,9735,3 +22348,Jehu_Kingdom_52,638,454,8785314,4106,0 +22349,Wioska+barbarzy%C5%84ska,639,539,7047342,10495,0 +22350,Wioska+barbarzy%C5%84ska,552,361,699072129,10221,0 +22351,WW26,646,464,698845189,7056,0 +22352,The+Game+Has+Only+Just+Begun,353,533,9280477,9976,2 +22354,Kentin+ufam+Tobie,352,477,699783765,10000,0 +22355,%5BC%5D_%5B002%5D+Dejv.oldplyr,359,473,699380607,10495,0 +22356,K34+-+%5B117%5D+Before+Land,449,358,699088769,9783,0 +22357,032,647,521,699351301,10155,0 +22358,Piek%C5%82o+to+inni,569,371,848956765,8778,0 +22359,deff+100+%25,364,558,849012521,10251,0 +22360,Wioska+barbarzy%C5%84ska,528,355,1990750,9968,0 +22361,0029+Wioska+barbarzy%C5%84ska,408,615,9060641,8003,0 +22362,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,646,699828442,9811,0 +22363,c+Kolwicz+005,402,391,3909522,10224,0 +22364,0050,447,355,699431255,10311,0 +22365,025,613,593,698786826,7315,0 +22366,Godynice,625,571,849095778,7161,0 +22367,Jestem+Poza+Kontrol%C4%85,354,547,8004076,6823,0 +22368,Wioska+barbarzy%C5%84ska,643,538,7047342,10551,0 +22370,Wioska+barbarzy%C5%84ska,550,363,699072129,10237,0 +22371,%7E%7E052%7E%7E,606,606,7829201,9701,0 +22372,076,467,359,698739350,10237,0 +22373,Zeta+Reticuli+S2,391,404,699323302,10887,0 +22374,021,361,546,8908002,7366,0 +22375,%23.11+Wioska+barbarzy%C5%84ska,649,477,849054582,10019,0 +22376,0043,541,635,698659980,10083,0 +22377,a+mo%C5%BCe+off+%3F+%3A%29,624,582,698768565,9536,0 +22379,Wioska+barbarzy%C5%84ska,509,357,699368887,7826,0 +22380,111,532,355,1990750,10068,0 +22381,Owp+Konfederacja,593,386,848915730,7947,0 +22382,149+San+Cristobal,467,494,1497168,9761,0 +22384,003,388,401,6171569,1965,0 +22385,006,430,631,699783765,9305,0 +22386,Kentin+ufam+Tobie,363,453,699783765,10000,0 +22387,036,485,351,698739350,10237,0 +22388,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,641,1434753,10068,0 +22389,kathare,548,640,873575,10495,2 +22391,041,645,521,699351301,9761,0 +22392,Wioska+%28034%29,645,477,698232227,7033,0 +22393,046,441,635,849084985,10542,0 +22394,Kentin+ufam+Tobie,364,453,699783765,10000,0 +22395,202,573,376,849064752,5398,0 +22396,-004-+K56,649,503,8096537,9742,0 +22398,A043,584,380,699485250,4325,0 +22399,C+014,591,388,6384450,6947,0 +22401,R-15,601,392,3600737,6868,0 +22404,The+Game+Has+Only+Just+Begun,355,534,9280477,9976,0 +22405,035+181,355,502,698807570,7712,0 +22406,145+Wioska+01,373,579,699382126,7319,0 +22407,105,479,353,7271812,10495,0 +22408,-010-,385,595,699097885,8391,0 +22409,yogi,558,636,2808172,10019,0 +22410,.achim.,536,391,6936607,9578,0 +22411,Wojo,498,354,699883079,10237,0 +22412,Ow+Konfederacja+%2B,601,396,848915730,9938,0 +22413,Bagdad,499,351,8847546,9976,0 +22414,0389,587,615,698659980,10019,0 +22415,--007--,384,414,698884287,8284,0 +22416,-+030+-+RR,584,622,849018239,10000,0 +22417,AA09+W%C5%82ochy,376,422,483145,7632,0 +22418,zzzGranica+Bledu+04,611,602,699778867,10887,0 +22419,Gravity,417,456,698962117,9579,0 +22420,142,454,360,6920960,7510,0 +22421,0101,419,618,699697558,4894,0 +22422,Pobozowisko,385,594,699513260,7592,0 +22423,Avanti%21,351,504,698625834,9950,0 +22424,off+100+%25,361,559,849012521,10559,5 +22425,Szlachcic,426,370,698388578,7669,0 +22426,Wioska+%28020%29,637,454,698232227,9822,0 +22427,A0059,350,490,8841266,10252,8 +22429,%2A%2AKonkol,576,630,699443920,9761,0 +22430,008+Hobro,620,584,699272880,10548,0 +22431,The+Game+Has+Only+Just+Begun,352,527,9280477,9976,0 +22432,The+Game+Has+Only+Just+Begun,353,522,9280477,9976,0 +22433,122,616,412,7085502,9959,0 +22435,a+mo%C5%BCe+off+%3F+%3A%29,638,546,698768565,9995,0 +22436,0084,530,643,698659980,10160,0 +22437,Kentin+ufam+Tobie,357,460,699783765,10075,0 +22439,.2.,365,554,849012521,8527,0 +22440,0032,617,415,699429153,8754,0 +22441,K34+-+%5B099%5D+Before+Land,449,359,699088769,9797,0 +22442,Wioska+barbarzy%C5%84ska,546,357,699072129,10218,0 +22443,c+Fyra+4,403,394,3909522,9877,0 +22444,M181_059,365,437,393668,9888,7 +22445,%23.36+Wioska+barbarzy%C5%84ska,649,476,849054582,3198,0 +22446,PI3,354,460,6258092,10559,2 +22447,A020,587,381,699485250,10168,0 +22448,013.+Rumpel,508,650,848928624,10237,0 +22449,Wioska+barbarzy%C5%84ska,364,440,699088529,2955,0 +22451,Lord+Lord+Franek+.%23214,511,355,698420691,10362,0 +22452,Wioska+barbarzy%C5%84ska,623,424,699429153,9825,0 +22453,Ulu-mulu,412,615,699697558,6101,0 +22454,Deveste+ufam+Tobie,433,633,699783765,8899,0 +22455,K34+-+%5B010%5D+Before+Land,443,361,699088769,10259,5 +22456,037,642,550,849095227,9724,0 +22457,-+029+-+RR,588,622,849018239,10000,0 +22460,Wioska+barbarzy%C5%84ska,363,555,6853693,3730,0 +22461,105,439,637,849084985,2875,0 +22462,Avanti%21,355,513,698625834,9950,0 +22463,The+Game+Has+Only+Just+Begun,352,521,9280477,9976,0 +22464,%5BC%5D_%5B003%5D+Dejv.oldplyr,359,472,699380607,10495,0 +22465,112,484,356,699761749,9918,6 +22466,Ave+Why%21,471,648,699121671,9809,0 +22468,025,434,630,699783765,9734,0 +22469,217,575,377,849064752,10411,0 +22470,031+Barba,651,487,2135129,9553,0 +22471,035,641,548,849095227,9729,0 +22472,Myk+i+do+kieszonki,356,564,9319058,9799,0 +22473,%2AINTERTWINED%2A,517,647,698704189,9711,0 +22474,146,453,362,6920960,7781,0 +22475,The+Game+Has+Only+Just+Begun,356,532,9280477,9976,0 +22476,Pobozowisko,402,603,699513260,10844,0 +22477,Wioska+Hajkon,474,644,699238479,9998,0 +22478,007,375,418,848945529,3413,0 +22480,016+MONETKI,646,483,7588382,8783,0 +22481,a+mo%C5%BCe+off+%3F+%3A%29,636,552,698768565,9351,0 +22482,Avanti%21,352,507,698625834,9950,0 +22483,002.+Oto+ja%21,439,641,699736927,10232,0 +22484,43.+G%C3%B3ry+Sine,606,397,8976313,10019,0 +22485,A045,583,378,699485250,5594,0 +22486,Za+luba,354,495,699265922,9252,0 +22488,Wioska+barbarzy%C5%84ska,550,357,699072129,10229,0 +22489,A-018,391,395,8419570,10168,0 +22490,001,358,537,6853693,10474,0 +22491,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,365,568,8004076,9395,0 +22492,001.+Po%C5%82udnica,507,591,699703642,9889,0 +22493,VN+Kalluto+Zoldyck,459,359,699883079,9865,0 +22495,Szlachcic,421,375,698388578,10237,0 +22496,27.+KaruTown,615,403,699298370,9442,0 +22497,Jednak+wol%C4%99+gofry,499,645,699725436,10311,0 +22498,Wioska+RADZA121,383,588,699621601,10208,0 +22499,Pobozowisko,405,614,699513260,10610,0 +22500,%7CA%7C+Windbarrow..,481,649,698807570,10495,0 +22501,A0066,350,484,8841266,10252,0 +22502,The+Game+Has+Only+Just+Begun,353,523,9280477,9976,0 +22503,CSA,524,353,7651093,9817,0 +22504,A0130,351,498,8841266,10252,0 +22506,-+327+-+RR,591,615,849018239,9703,0 +22507,C003,591,383,699761749,9899,0 +22508,Jednak+wol%C4%99+gofry,469,650,699725436,10362,0 +22509,A+013,600,388,6384450,10362,0 +22510,mys,563,634,699828685,9976,0 +22511,kathare,554,638,873575,9882,0 +22512,074,428,374,699796330,6625,0 +22513,012,427,627,699783765,4701,0 +22514,Jan+Ii+K,644,474,879782,9570,0 +22515,070,481,385,698739350,8340,0 +22516,MojeDnoToWaszSzczyt,563,368,699697558,10495,0 +22518,020+Summerhall,621,585,699272880,9924,0 +22519,Pobozowisko,398,604,699513260,10971,0 +22520,%5BC%5D_%5B006%5D+Dejv.oldplyr,356,475,699380607,10495,0 +22521,%23057.,642,448,556154,9735,0 +22522,ave+why%21,434,633,698143931,10254,0 +22523,Wioska+barbarzy%C5%84ska,438,368,699308637,10495,0 +22524,024,434,487,699510259,9899,0 +22525,091,355,458,6258092,10019,0 +22526,MojeDnoToWaszSzczyt,562,365,699697558,10495,0 +22527,%2AINTERTWINED%2A%2A,509,648,698704189,9658,0 +22529,078,442,638,849084985,10495,0 +22530,054.+Snoob,515,651,848928624,10436,0 +22531,A10+Wioska+barbarzy%C5%84ska,466,635,849037407,10270,0 +22532,Rudy+rydz+sie+pisze+a+nie+ryc,570,372,699509239,9417,0 +22533,112,478,357,7271812,7085,0 +22534,058,648,517,699351301,10224,0 +22535,c+Fyra,402,393,3909522,9989,0 +22536,144,451,358,6920960,10052,0 +22537,A015,593,388,699761749,4167,0 +22539,The+Game+Has+Only+Just+Begun,351,526,9280477,9976,0 +22540,015+MONETKI,648,484,7588382,8840,0 +22541,024%7C%7C+Antlia,485,638,849035525,10019,0 +22542,Mobil,538,645,7589468,8831,0 +22543,080+Osada+koczownik%C3%B3w,375,574,699382126,9902,9 +22544,Maszlug+kolonia+VI,367,431,848977649,9109,0 +22545,The+Game+Has+Only+Just+Begun,352,517,9280477,9976,0 +22546,Jednak+wol%C4%99+gofry,501,645,699725436,5784,0 +22547,The+Game+Has+Only+Just+Begun,355,521,9280477,9976,0 +22548,North+Barba+016,429,367,699796330,9742,0 +22549,Wioska+barbarzy%C5%84ska,646,525,7047342,10487,0 +22550,108,476,351,7271812,9742,0 +22551,086,632,565,849095227,7982,0 +22553,101,474,353,7271812,10495,0 +22555,Kentin+ufam+Tobie,354,474,699783765,10000,0 +22556,Kentin+ufam+Tobie,355,474,699783765,10000,0 +22557,yyyy,500,353,699883079,10319,0 +22558,0025,595,385,699485250,10211,0 +22559,Podzi%C4%99kowa%C5%82+3,424,374,699796330,10495,0 +22560,Pobozowisko,391,603,699513260,10957,0 +22561,%23.42+Wioska+barbarzy%C5%84ska,651,486,849054582,4273,0 +22562,036+Wioska+barbarzy%C5%84ska,538,360,699854484,9976,0 +22563,022+Revyl,620,585,699272880,10093,0 +22564,007+Wioska+barbarzy%C5%84ska,566,371,699509239,5036,0 +22565,B.004,650,512,9188016,10000,0 +22566,Wioska+barbarzy%C5%84ska,632,562,7047342,10487,0 +22567,051%7C%7C+Pegasus,494,651,849035525,9903,0 +22568,AA06+Islandia,381,417,483145,12154,0 +22569,Wioska+barbarzy%C5%84ska,644,529,7047342,10476,0 +22570,018+%7C+PALESTINA+%7C+Msqt+%5B%2A%5D,630,434,9228039,9544,0 +22571,Szlachcic,426,371,698388578,8413,0 +22573,Wioska+barbarzy%C5%84ska,473,644,699238479,8756,0 +22574,Wioska+barbarzy%C5%84ska,639,456,699524891,9516,0 +22575,0037,618,416,699429153,9412,0 +22576,WE+ARE+READY%21,594,383,1553947,10209,5 +22577,044,446,641,849084985,9976,0 +22579,0052,618,411,699429153,9825,0 +22580,kto+ananasowy+pod+wod%C4%85+ma+dom,570,505,699628084,9797,0 +22581,Kentin+ufam+Tobie,355,473,699783765,10000,0 +22583,0002,538,640,698659980,10160,8 +22584,005+%7C+PALESTINA,639,440,9228039,9544,0 +22585,B003,648,494,9314079,9818,0 +22586,069,643,534,699351301,10160,0 +22587,a+mo%C5%BCe+off+%3F+%3A%29,637,554,698768565,9334,0 +22588,Wioska+barbarzy%C5%84ska,373,576,849012521,5956,0 +22589,Ave+Why%21,455,638,698585370,7739,0 +22590,Lord+Lord+Franek+.%23224,525,354,698420691,8910,0 +22591,Ga%C5%82ki,627,570,849095778,9404,0 +22592,%23039.519%7C496,638,447,556154,9735,0 +22593,Jan+017+K,643,465,879782,9905,0 +22594,MojeDnoToWaszSzczyt,565,365,699697558,10495,0 +22595,A007,473,634,699383279,9809,0 +22596,Br%C4%85szewice,626,576,849095778,9404,0 +22597,M181_060,365,433,393668,10592,9 +22598,020.+DePRESJA,635,443,849095599,9063,0 +22599,%23025.520%7C499,639,450,556154,9735,0 +22600,Jednak+wol%C4%99+gofry,481,644,699725436,10178,0 +22601,S181,629,568,131972,1438,0 +22602,zzzGranica+Bledu+01,607,604,699778867,11130,0 +22603,Jestem+Poza+Kontrol%C4%85,361,550,8004076,9880,7 +22605,Szlachcic,419,372,698388578,10237,0 +22606,%7E%7E018%7E%7E,606,605,7829201,9821,0 +22607,019+181,352,501,698807570,10060,0 +22608,002+Ogl%C4%85dam+Powt%C3%B3rk%C4%99+CZE+-+POR,540,358,699491076,10001,0 +22609,014,427,628,699783765,5992,0 +22610,038%7C%7C+Norma,480,650,849035525,10019,0 +22611,037,644,543,698999105,10311,0 +22612,Wioska+barbarzy%C5%84ska,551,364,699072129,10223,0 +22613,AA04+Hiszpania,378,411,483145,12154,0 +22614,Ulu-mulu,408,619,699697558,7025,0 +22615,%2AINTERTWINED%2A,509,649,698704189,9711,0 +22616,B.013,647,512,9188016,10000,0 +22618,%7E%7E007%7E%7E,603,603,7829201,9870,0 +22619,038,613,590,698786826,6018,0 +22620,Pobozowisko,396,606,699513260,10218,0 +22621,kathare,557,639,873575,9954,0 +22622,109,622,417,7085502,9899,0 +22624,The+Game+Has+Only+Just+Begun,356,523,9280477,9976,0 +22626,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,646,699828442,9808,0 +22627,a+mo%C5%BCe+off+%3F+%3A%29,638,552,698768565,9348,0 +22628,007.+Bond+James+Bond,506,646,848928624,10237,0 +22629,B013,648,496,9314079,9818,0 +22630,Ave+Why%21,477,648,698585370,9377,0 +22631,jaaa,633,572,698635863,10495,0 +22632,K34+-+%5B113%5D+Before+Land,447,361,699088769,9202,0 +22633,wioska,604,394,849061374,10032,0 +22634,WW27,645,466,698845189,5697,0 +22635,Yogi,554,647,2808172,10019,0 +22636,kathare,546,641,873575,9884,0 +22637,024,433,630,699783765,8361,0 +22638,Wioska+Barba+I,383,407,8967440,4073,0 +22639,K08,369,577,849090130,2210,0 +22640,020,489,349,698739350,10237,0 +22641,B02+wr%C3%B3ci%C5%82a%C5%9B+do+mnie+%3A%29,458,642,849037407,11109,0 +22642,Lecymy+DUR,438,367,6169408,3683,0 +22643,Og%C3%B3rkowy+baron,398,394,356642,9835,0 +22644,A010,579,378,699485250,10211,0 +22645,004.,487,650,849034882,10838,0 +22646,0058,623,411,699429153,9966,0 +22647,LadyAnimavillis,596,616,699703642,7472,0 +22648,No.+1,477,653,698585370,9225,0 +22649,031+%7C+PALESTINA,631,433,9228039,9232,0 +22650,627%7C423+Wioska+barbarzy%C5%84ska22,627,423,6822957,8971,0 +22651,0047,444,365,699431255,10058,0 +22652,Jestem+Poza+Kontrol%C4%85,350,549,8004076,9880,0 +22653,yyyyy,504,354,699883079,10052,0 +22654,035,360,541,6853693,9979,0 +22655,008,428,630,699783765,5632,0 +22656,c+Kolwicz+004,403,392,3909522,10477,0 +22657,MojeDnoToWaszSzczyt,560,367,699697558,10495,0 +22658,kathare,548,639,873575,9913,0 +22659,P027+Royal+Kush,650,519,8096537,9761,0 +22660,R%C4%99cznik+do+zmiany,372,419,699697558,7097,0 +22661,Lord+Arsey+KING,526,503,848956513,10285,0 +22662,K34+-+%5B049%5D+Before+Land,445,359,699088769,7529,0 +22663,Brat447,355,478,699262350,10476,0 +22664,Jotunheim,376,576,8607734,8196,0 +22665,076....barbakra,456,359,6920960,10221,0 +22666,CSA,516,354,7651093,9811,0 +22667,018.+Rzym,632,436,849095599,9541,0 +22668,CSA,519,352,7651093,7900,0 +22669,AB11+Turcja,375,421,483145,6678,0 +22670,A0065,350,488,8841266,10252,0 +22671,Westcoast.115,373,429,848918380,10178,0 +22672,Jan+07+K,642,464,879782,9450,2 +22673,Wioska+barbarzy%C5%84ska,632,561,7047342,10475,0 +22674,Lord+Lord+Franek+.%23225,510,353,698420691,10354,0 +22675,032+VW+xyz,379,412,3108144,11278,0 +22676,The+Game+Has+Only+Just+Begun,352,531,9280477,9976,0 +22678,094+duko+3,547,357,699491076,10001,0 +22680,Monetio,444,359,699393759,10495,0 +22681,Og%C3%B3rkowy+baron,400,403,356642,9835,0 +22682,B002,396,608,699383279,9793,0 +22683,Kentin+ufam+Tobie,359,443,699783765,7117,0 +22684,M002,650,505,848899726,9730,0 +22685,Og%C3%B3rkowy+baron,400,406,356642,9835,0 +22686,Pobozowisko,385,597,699513260,9468,0 +22687,032+%7C+PALESTINA,638,437,9228039,8032,0 +22688,012,469,645,698650301,6725,0 +22689,0060,443,366,699431255,10121,0 +22690,a+mo%C5%BCe+off+%3F+%3A%29,625,583,698768565,9534,0 +22691,48.+Wioska+48,362,547,849091769,7846,0 +22692,Wioska+barbarzy%C5%84ska,534,354,1990750,9933,0 +22693,Wioska+barbarzy%C5%84ska,433,632,6910361,6456,0 +22694,002...CENTR_Jazda_D,463,353,6920960,10495,0 +22695,Wioska+barbarzy%C5%84ska,371,429,699753640,3170,0 +22696,076+Atlanda,543,358,699491076,10001,0 +22697,018,520,350,1990750,10068,0 +22698,012,613,400,699298370,9818,8 +22699,008,373,421,848945529,3596,0 +22700,The+Game+Has+Only+Just+Begun,350,519,9280477,9976,0 +22701,Kentin+ufam+Tobie,358,459,699783765,10000,0 +22702,Szlachcic,352,466,6258092,10160,8 +22704,09.+Shine+it,498,648,849100262,9812,0 +22705,off+100+%25,362,556,849012521,10265,0 +22706,Pobozowisko,388,603,699513260,10950,0 +22707,jaaa,628,576,698635863,10495,0 +22708,A0136,348,495,8841266,10252,0 +22709,A006,474,640,699383279,9852,0 +22710,040,371,567,8908002,8153,0 +22711,The+Game+Has+Only+Just+Begun,351,530,9280477,9976,0 +22712,Jednak+wol%C4%99+gofry,430,635,848913998,8792,0 +22713,Wioska+03,384,589,699621601,3422,0 +22714,043,444,640,849084985,9115,0 +22715,kropka.,601,611,699778867,11321,0 +22717,%230002+Farmer155,466,352,1238300,10178,0 +22718,%5BC%5D_%5B005%5D+Dejv.oldplyr,352,475,699380607,10495,0 +22719,CALL+987,555,550,699784536,10311,0 +22720,Lord+Lord+Franek+.%23215,500,349,698420691,9250,0 +22721,023,636,555,849095227,9809,4 +22722,A004.Wioska+barbarzy%C5%84ska,392,597,699665152,9899,0 +22723,c+087d,411,383,3909522,5185,0 +22724,Klinton,374,576,8607734,10019,0 +22725,--009--,381,408,698884287,7734,0 +22726,jaaa,632,574,698635863,10495,0 +22727,057,636,562,849095227,9721,0 +22728,Jednak+wol%C4%99+gofry,470,651,699725436,9835,0 +22729,089,355,459,6258092,10019,0 +22730,035+%23Aquel,371,569,8908002,9993,0 +22731,%7E%7E048%7E%7E,603,611,7829201,9761,0 +22732,C009,600,386,699761749,5973,0 +22733,061,364,536,8908002,4568,0 +22734,021+Barba,650,485,2135129,9010,0 +22735,Wioska+barbarzy%C5%84ska,380,587,699621601,3685,0 +22736,110,483,355,699761749,9008,0 +22737,AB12+W%C4%99gry,376,420,483145,4723,0 +22738,%5B004%5D,456,641,698585370,10191,0 +22739,A018,590,379,699485250,10211,0 +22741,%5B147%5D,636,567,8000875,9688,0 +22742,BEZDZIETNY+KAWALER,417,630,848913998,9676,0 +22743,c+kinderki,398,387,3909522,8314,0 +22744,001.+Gotham,633,447,849095599,10019,0 +22745,Gattacka,605,396,699298370,9835,0 +22746,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,643,699828442,9825,0 +22747,042.,398,618,2665207,9835,0 +22748,Lord+Lord+Franek+.%23191,505,348,698420691,5312,0 +22749,Piwna+20,638,438,699812007,5902,0 +22750,kathare,552,636,873575,9910,0 +22751,R%C4%99cznik+do+zmiany,376,413,699697558,10160,0 +22752,The+Game+Has+Only+Just+Begun,357,529,9280477,9976,0 +22753,0121,424,627,6910361,1448,0 +22754,K34+-+%5B100%5D+Before+Land,448,359,699088769,11824,0 +22755,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,643,1434753,9935,0 +22756,002+Minas+Tirith,385,401,8967440,5569,3 +22757,C+002,592,380,6384450,10362,0 +22758,Hydrawydra,426,616,849095601,7686,0 +22759,149...ksi%C4%85%C5%BC%C4%99+plemienia,453,359,6920960,8481,0 +22760,c+011+Przysta%C5%84+4,413,377,3909522,10328,0 +22761,Piek%C5%82o+to+inni,570,370,848956765,9744,0 +22762,032,479,352,698739350,10237,0 +22763,MojeDnoToWaszSzczyt,570,365,699697558,10019,0 +22764,The+Game+Has+Only+Just+Begun,357,532,9280477,9013,0 +22765,Lord+Lord+Franek+.%23226,523,355,698420691,10362,0 +22766,A034,577,372,699485250,10211,0 +22767,%7E%7E024%7E%7E,604,606,7829201,9800,0 +22768,Lord+Arsey+I,371,424,698349125,2819,5 +22770,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,641,7589468,8816,0 +22771,Kikut,515,349,1990750,10068,0 +22772,Knowhere,376,489,699723284,10484,0 +22773,Pobozowisko,385,604,699513260,10952,0 +22774,SSJ+049,515,647,699054373,9761,0 +22775,29.+KaruTown,616,403,699298370,9653,0 +22776,Ashemark,452,639,699736927,9425,0 +22777,Avanti%21,355,511,698625834,9950,0 +22778,027,451,638,849084985,10033,9 +22779,Hiszpan1,646,543,7038651,10474,0 +22780,Pobozowisko,403,614,699513260,10971,0 +22782,Wioska+9,648,468,848935020,7605,0 +22783,A-014,391,394,8419570,10168,4 +22784,0007,403,383,699402816,9899,0 +22785,od+biedy+do+pot%C4%99gi+5,362,443,849094603,3592,0 +22786,Wioska+Bochun10,346,506,7449254,9669,0 +22787,-+224+-+RR,586,620,849018239,8850,0 +22788,Wioska+barbarzy%C5%84ska,369,572,849012521,6240,0 +22790,a+mo%C5%BCe+off+%3F+%3A%29,640,545,698768565,9499,0 +22791,Pobozowisko,407,614,699513260,9485,0 +22792,-+346+-+RR,596,610,849018239,9747,0 +22793,038,481,350,698739350,10237,0 +22794,021,488,349,698739350,10237,0 +22795,118,474,357,7271812,10230,0 +22796,066+Wioska+barbarzy%C5%84ska,537,353,699491076,10001,0 +22797,02+Forteca,548,358,849108780,9098,0 +22798,-+239+-+RR,592,618,849018239,10000,0 +22799,kathare,559,637,873575,10285,0 +22800,040,652,484,2135129,9553,0 +22801,Posterunek+002,400,613,848912772,10178,0 +22802,025+181,354,500,698807570,10019,0 +22803,a+mo%C5%BCe+off+%3F+%3A%29,622,579,698768565,9534,0 +22804,kathare,551,638,873575,9872,0 +22805,021,359,537,6853693,5749,0 +22806,--008--,382,413,698884287,9652,0 +22807,0060,623,415,699429153,9825,0 +22808,026,614,597,698786826,9694,0 +22809,0203,405,513,7085510,6383,0 +22811,BEZDZIETNY+KAWALER,414,625,848913998,3842,0 +22812,021.+Pacanowo,637,435,849095599,9413,0 +22813,027+Wioska,646,490,699671454,9082,0 +22814,The+Game+Has+Only+Just+Begun,355,524,9280477,9976,0 +22815,deff+100+%25,374,580,849012521,8131,0 +22816,Jednak+wol%C4%99+gofry,498,649,699725436,10178,0 +22817,031+VW+GD+--011--,380,409,3108144,3163,0 +22818,0049,617,409,699429153,9825,0 +22819,004+Wioska+konri2008,568,372,699509239,5457,0 +22820,%2A%2ASkill,571,632,699443920,9761,0 +22821,007,377,533,8908002,9993,0 +22822,%2ALebioda,573,632,699443920,9994,0 +22823,Mexico,455,642,699736927,10311,0 +22824,0035+Wioska+barbarzy%C5%84ska,405,615,9060641,6353,0 +22825,Wioska+shokode,486,657,849037699,6430,0 +22826,Lord+Lord+Franek+.%23136,506,351,698420691,10636,0 +22827,Myk+i+do+kieszonki,361,563,9319058,9799,0 +22828,B023,649,487,9314079,9816,0 +22829,jaaa,630,569,698635863,10478,0 +22830,Piek%C5%82o+to+inni,569,366,848956765,10495,0 +22831,MELISKA,357,464,699794765,8802,0 +22832,Jaaa,622,588,698635863,10389,0 +22833,67.+KaruTown,641,450,849060446,9735,0 +22834,MojeDnoToWaszSzczyt,569,365,699697558,10019,0 +22835,%230039+barbarzy%C5%84ska,465,356,1238300,10178,0 +22836,%23.29+Wioska+barbarzy%C5%84ska,647,472,849054582,4554,0 +22837,Wioska+barbarzy%C5%84ska,646,461,699524891,9983,0 +22838,0038,450,363,699431255,10311,0 +22839,Szlachcic,426,369,698388578,8856,0 +22840,Pobozowisko,392,606,699513260,9007,0 +22841,Jestem+Poza+Kontrol%C4%85,356,547,8004076,9197,0 +22842,C+003,595,383,6384450,10362,0 +22843,WIOSKA,631,438,699429153,10224,2 +22844,A0167,353,482,8841266,10252,0 +22845,059,618,586,698786826,9497,0 +22846,Wioska+cacciatore,534,381,698350371,10495,0 +22847,0377,581,623,698659980,8922,0 +22848,054,646,537,699351301,10139,0 +22849,-007-,389,602,699097885,9881,0 +22850,%23.13+Wioska+barbarzy%C5%84ska,648,475,849054582,10019,0 +22851,A-008,400,398,8419570,10337,0 +22852,Wioska+1,390,400,6171569,4035,0 +22854,.%3A057%3A.%C5%81OBUZIK,553,364,848934935,5598,0 +22855,R%C4%99cznik+do+zmiany,376,412,699697558,10160,0 +22856,019.+Florencja,631,436,849095599,9066,0 +22857,05+Nowa+Szpica,544,359,849108780,9854,0 +22858,%7CA%7C+Lightgulch,479,650,698807570,10495,0 +22859,Pobozowisko,386,595,699513260,10338,0 +22860,Ave+Why%21,479,648,698585370,10160,0 +22861,%23040.521%7C499,640,450,556154,9735,0 +22862,Kentin+ufam+Tobie,351,472,699783765,10000,0 +22863,Horyzont+zdarze%C5%84,537,647,7581876,10019,4 +22864,MojeSzczytToTw%C3%B3jDno,510,349,828637,12138,0 +22865,116,629,425,7085502,9303,0 +22866,SSJ+051,503,645,699054373,9682,0 +22867,D+010,650,499,8078914,9542,0 +22868,Ave+Why%21,438,634,698585370,7930,1 +22869,084,441,640,849084985,10286,0 +22870,031+030,543,359,699491076,10001,0 +22871,Osada+003,400,615,848912772,10178,0 +22872,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,535,642,7589468,8822,0 +22874,So%C5%82tys+Wsi+Enaor1990,408,382,849027025,8854,0 +22875,The+Game+Has+Only+Just+Begun,352,524,9280477,9976,0 +22876,015,429,628,699783765,4765,0 +22877,Szlachcic,424,373,698388578,10237,0 +22878,115,478,354,7271812,7155,0 +22879,042,651,484,2135129,9553,0 +22881,Avanti%21,349,502,698625834,9950,0 +22882,jaaa,632,575,698635863,10495,0 +22883,42.+KaruTown,615,400,699298370,9827,0 +22884,Wioska+Barba+II,382,407,698884287,7453,0 +22885,A002,597,385,699761749,10495,0 +22886,immortale+bo+morale,511,350,9140898,5426,0 +22887,030,353,470,6258092,10252,0 +22888,Pobozowisko,392,601,699513260,10971,0 +22889,Tylos,549,363,699072129,10237,0 +22890,011,424,631,699783765,5282,0 +22891,-+329+-+RR,593,613,849018239,9049,0 +22892,30.+KaruTown,615,405,699298370,9744,0 +22893,mys,565,633,699828685,9976,0 +22894,Szlachcic,415,378,698388578,6644,0 +22895,psycha+sitting,450,644,699736927,10178,6 +22896,ETAT+Z+PO%C5%9AREDNIAKA,423,620,848913998,9766,0 +22897,054.+Gades,645,471,849091866,9174,0 +22898,%2ALajs,577,636,699443920,9761,0 +22899,100,356,462,6258092,7660,0 +22900,BEZDZIETNY+KAWALER,412,631,848913998,9922,0 +22901,%2A0025+Baraki,626,425,8459255,9924,0 +22902,Lord+Lord+Franek+.%23197,505,352,698420691,9662,0 +22903,A014,580,371,699485250,10168,0 +22905,028+VW+GD+--017--,370,422,3108144,3941,0 +22906,A007,581,374,699485250,10168,0 +22907,c+Sztum,400,389,3909522,8288,0 +22908,Lord+Lord+Franek+.%23044,533,353,698420691,9962,0 +22909,Wioska+DamianDK,416,622,849095642,3330,0 +22910,jaaa,631,578,698635863,10495,0 +22911,x012,359,567,9264752,10495,0 +22912,006.+%3AD,506,647,848928624,10444,0 +22913,103,476,355,7271812,9854,0 +22914,BAC%C3%93WKA+%7C009%7C,620,408,7394371,11989,0 +22915,120,624,417,7085502,10068,0 +22916,Wioska+Trer+Ceiri,539,385,698350371,10495,0 +22917,Lord+Lord+Franek+.%23202,504,350,698420691,10483,0 +22918,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,644,1434753,10068,0 +22919,024+Legio+I+Claudia,650,489,699878150,5373,0 +22920,Monetki,468,408,699098531,9637,0 +22921,Magiczne+koszary,483,645,848935389,9809,0 +22922,BEZDZIETNY+KAWALER,417,628,848913998,10311,0 +22924,Szcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,610,396,699368887,8352,0 +22925,Kentin+ufam+Tobie,362,439,699783765,10000,0 +22926,ave+why%21,434,636,698143931,9269,0 +22927,0118,423,625,6910361,3923,0 +22928,CSA,518,353,7651093,8592,0 +22929,Skazany+Na+Instynkt,368,575,8004076,8319,0 +22930,Szlachcic%2FTaran,619,400,699759128,10237,0 +22931,Pobozowisko,393,600,699513260,10950,0 +22932,The+Game+Has+Only+Just+Begun,352,514,9280477,9976,0 +22933,0033,623,422,699429153,9825,0 +22934,0162,537,648,698659980,10019,0 +22935,North+Barba+031,431,371,699796330,9557,0 +22936,Wioska+Smarze,386,401,8419570,10221,0 +22937,M181_055,365,431,393668,9891,0 +22938,-005,358,543,9253494,6301,0 +22939,0470,536,648,698659980,10019,0 +22940,0089,532,648,698659980,10160,5 +22941,Jednak+wol%C4%99+gofry,437,637,848913998,9835,0 +22942,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,370,569,8004076,7283,0 +22943,034.,645,481,849094609,9821,4 +22944,MojeDnoToWaszSzczyt,562,367,699697558,10495,0 +22945,Prawa,545,639,7589468,8820,0 +22946,%5B030%5D,641,528,698305474,9798,0 +22947,Wioska+barbarzy%C5%84ska,372,576,849012521,6832,0 +22948,Wioska+barbarzy%C5%84ska,482,354,698739350,6569,0 +22949,BEZDZIETNY+KAWALER,420,626,848913998,6465,0 +22950,B.006,647,507,9188016,10000,0 +22952,019,489,348,698739350,10237,0 +22953,A019,588,378,699485250,10211,0 +22954,Wyngiel+we+wsi,556,359,699072129,10484,0 +22955,%7E%7E016%7E%7E,610,596,7829201,9883,0 +22956,mys,565,634,699828685,10068,0 +22957,030,480,353,698739350,10104,0 +22958,BEZDZIETNY+KAWALER,420,629,848913998,10160,0 +22959,034,644,544,698999105,10311,0 +22960,134+DaSilva2402,518,352,699491076,10001,0 +22961,A0158,352,486,8841266,10252,0 +22962,%7E%7E009%7E%7E,600,601,7829201,9835,0 +22963,B003,400,610,699383279,9796,0 +22964,KUZYN+KUZYNOWI+KUZYNEM,429,638,848913998,6109,0 +22965,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,646,699828442,9820,0 +22966,015...P%C5%81D+WSCH,465,357,6920960,10495,0 +22967,K07,368,577,849090130,2521,0 +22968,Ambrela+014,580,378,698823542,10228,0 +22969,036,447,640,849084985,10237,0 +22970,%21%21%21off+100+%25,357,563,849012521,11321,0 +22971,So%C5%82tys+Wsi+Enaor1990,406,384,849027025,9761,0 +22972,600,645,545,7038651,10152,0 +22973,117,623,413,7085502,9753,0 +22974,042...CENTRUM_PO%C5%81UDNIE,457,356,6920960,10315,0 +22975,027,612,594,698786826,8283,0 +22976,B.032,650,515,9188016,7608,0 +22977,Wioska+barbarzy%C5%84ska+....,578,630,848995242,10495,0 +22978,D01..,364,573,849090130,10362,0 +22979,007,518,627,699336777,9825,0 +22980,Przysta%C5%84+5,405,382,699402816,9835,0 +22981,044,360,539,6853693,5951,0 +22982,Pobozowisko,408,620,699513260,10955,0 +22984,031,646,523,699351301,9483,0 +22985,Jestem+Poza+Kontrol%C4%85,353,541,8004076,9880,0 +22986,Kentin+ufam+Tobie,351,477,699783765,10000,0 +22987,Kentin+ufam+Tobie,357,447,699783765,10013,0 +22988,SSJ+054,505,648,699054373,9761,0 +22989,Makima2,460,644,699736927,10311,0 +22990,051,516,650,2293376,9993,0 +22991,039.+Bootes,597,615,699703642,10139,0 +22992,%23.23+Wioska+barbarzy%C5%84ska,649,482,849054582,7317,0 +22993,%23.30+Wioska+barbarzy%C5%84ska,647,474,849054582,4625,0 +22994,A032,579,372,699485250,10168,0 +22995,0001,487,639,6180190,10728,0 +22996,0403,549,639,698659980,10019,0 +22997,001,487,635,272173,9957,0 +22998,B.024,646,517,9188016,10000,0 +22999,Forteca,398,615,848912772,10495,0 +23000,0021,591,385,699485250,10211,2 +23001,019%7C%7C+Hydra,475,651,849035525,9227,0 +23002,Alicization+5,461,647,699849210,8490,0 +23003,B.027,650,517,9188016,10000,0 +23004,0467,383,597,698659980,9753,0 +23005,-+232+-+RR,594,618,849018239,10000,0 +23006,zzzGranica+Bledu+02,606,601,699778867,9664,0 +23007,Kentin+ufam+Tobie,362,446,699783765,10000,8 +23008,%2A%2AZabajone,574,630,699443920,9761,0 +23009,Makima,463,645,699849210,9803,7 +23010,Wioska+barbarzy%C5%84ska,634,440,699429153,8386,0 +23011,A+007,602,386,6384450,10362,0 +23012,017,564,636,699828685,9976,0 +23013,028,611,599,698786826,7498,0 +23014,The+Game+Has+Only+Just+Begun,355,528,9280477,9976,0 +23015,Charfa,522,349,699072129,10495,0 +23016,019.,491,650,849034882,10559,0 +23017,077,444,639,849084985,10495,0 +23018,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,364,568,8004076,8298,0 +23019,So%C5%82tys+Wsi+Enaor1990,407,383,849027025,9906,0 +23020,116,472,357,7271812,10495,0 +23021,029+VW+GD+--018--,371,423,3108144,3668,0 +23022,0004,544,646,698659980,10252,8 +23023,0383,584,624,698659980,9244,0 +23024,Ave+Why%21,474,647,699121671,9809,0 +23025,Lecymy+DUR,436,363,6169408,4730,0 +23026,0318,541,643,698659980,8188,0 +23027,041,649,484,2135129,9553,0 +23029,deff+100+%25,378,581,849012521,10358,0 +23031,Kentin+ufam+Tobie,352,472,699783765,10000,0 +23032,Szlachcic,421,376,698388578,10237,0 +23033,Sony+911,584,626,1415009,10214,0 +23034,%23.12+Wioska+barbarzy%C5%84ska,650,479,849054582,10019,0 +23035,WW28,648,465,1715091,5951,0 +23036,03+Forteca+Zach%C3%B3d,546,360,849108780,7645,0 +23037,Caravaggio,375,587,849095992,10247,0 +23038,Jednak+wol%C4%99+gofry,430,634,699736927,10178,0 +23039,AA03+Niemcy,380,412,483145,12154,0 +23041,141,452,358,6920960,9062,0 +23042,So%C5%82tys+Wsi+Enaor1990,408,381,849027025,9394,0 +23043,WE+ARE+READY%21,595,387,1553947,8814,0 +23044,031,642,551,849095227,9721,0 +23045,Og%C3%B3rkowy+baron,396,398,356642,9835,0 +23046,143,452,357,6920960,9121,0 +23047,Kentin+ufam+Tobie,363,448,699783765,10235,0 +23048,The+Game+Has+Only+Just+Begun,356,527,9280477,9976,0 +23049,Wsp%C3%B3lna+15,404,384,849027025,6578,0 +23050,%2A%2A%2A001%2A%2A%2A,506,348,8843774,8103,0 +23051,100,646,544,7038651,10960,0 +23052,A0196,354,485,8841266,10252,0 +23053,063,518,652,2293376,10476,0 +23054,CSA,513,350,7651093,7903,0 +23055,c+Moje+kochanie,406,386,3909522,8567,7 +23056,kathare,551,642,873575,9866,0 +23057,kathare,553,641,873575,9896,0 +23058,Podzi%C4%99kowa%C5%82+5,418,376,699796330,10295,1 +23060,MojeDnoToWaszSzczyt,560,361,699697558,10495,0 +23061,029,610,599,698786826,5573,0 +23062,047%7C%7C+Lyra,469,649,849035525,10019,0 +23063,No+sory,559,562,699785935,10311,0 +23064,M007,653,507,848899726,5131,0 +23066,B.062,646,504,9188016,10000,0 +23067,Osada+koczownik%C3%B3w,548,361,699072129,10452,1 +23068,123,625,416,7085502,10661,0 +23069,A-019,388,396,8419570,10168,0 +23070,Dajanka+01,352,557,849012843,11130,0 +23071,Kentin+ufam+Tobie,358,445,699783765,8042,0 +23072,Pobozowisko,411,612,699513260,10769,0 +23073,Wioska+barbarzy%C5%84ska,552,359,699072129,10218,0 +23075,Czarodziejka+z+Marsa,430,636,849006145,7839,0 +23076,-+234+-+RR,589,617,849018239,6796,0 +23077,M181_054,363,434,393668,9902,0 +23078,A0197,352,485,8841266,10252,0 +23079,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,365,562,8004076,9752,0 +23080,B.012,649,514,9188016,10000,1 +23081,The+Game+Has+Only+Just+Begun,355,533,9280477,9976,0 +23082,A0054,348,494,8841266,10252,5 +23083,024+%7C+PALESTINA,631,449,9228039,9544,0 +23084,a+mo%C5%BCe+off+%3F+%3A%29,638,553,698768565,9403,0 +23085,Metallica,555,359,699072129,10237,0 +23086,Avanti%21,354,516,698625834,9950,0 +23087,034.+Aquarius,599,614,699703642,9761,0 +23088,Medyna,472,649,849089459,9783,0 +23089,051,646,532,699351301,10152,0 +23090,historia,617,602,699778867,12154,0 +23091,Jestem+Poza+Kontrol%C4%85,358,548,8004076,9816,0 +23092,Wioska+barbarzy%C5%84ska,651,522,6510480,6368,0 +23093,Oww+Konfederacja,606,390,848915730,9937,0 +23094,020,650,521,699351301,9430,0 +23095,Lecymy+DUR,440,364,6169408,6438,0 +23096,%7E%7E011%7E%7E,600,607,7829201,10161,1 +23097,Maszlug+kolonia+XII,369,425,848977649,7002,0 +23098,Minas+Tirith,613,396,848915730,7507,3 +23099,.%3A056%3A.%C5%81OBUZIK,556,361,848934935,7927,0 +23100,062,354,541,8908002,4561,0 +23101,Ave+Why%21,458,638,698585370,10160,0 +23102,%230013+barbarzy%C5%84ska,468,350,1238300,10178,0 +23103,ave+why%21,434,632,698143931,9957,0 +23104,North+Barba+034,427,371,699796330,9845,0 +23105,deff+100+%25,376,581,849012521,10172,0 +23106,010,558,613,699567608,10160,0 +23107,Wioska+barbarzy%C5%84ska,369,426,699753640,2425,0 +23108,Wioska+-STRONGHOLD-,526,352,1990750,10068,0 +23109,13.+Gargamel%C3%B3wa,617,403,699298370,9735,0 +23110,BAC%C3%93WKA+%7C010%7C,621,407,7394371,11550,0 +23111,Piek%C5%82o+to+inni,574,369,848956765,10495,0 +23112,0058,419,371,848913037,9993,0 +23113,043,652,489,2135129,9553,0 +23114,Wioska+barbarzy%C5%84ska,438,364,849017820,10484,0 +23115,067...barbarka,460,359,6920960,10320,0 +23116,%23041.520%7C502,639,453,556154,9735,0 +23117,a+mo%C5%BCe+off+%3F+%3A%29,625,584,698768565,9542,0 +23118,015,641,550,849095227,9761,8 +23119,Wioska+barbarzy%C5%84ska,650,527,7047342,10124,0 +23120,Aleppo,492,349,699244334,3404,0 +23121,stop,620,404,849060446,9735,0 +23122,MojeDnoToWaszSzczyt,562,363,699697558,10495,0 +23123,059,635,556,849095227,9721,0 +23124,zzzGranica+Bledu+05,601,614,699778867,9241,0 +23125,Pobozowisko,390,596,699513260,10971,0 +23126,jaaa,632,577,698635863,10481,0 +23127,-+005+-,553,610,849018239,10000,0 +23128,jaaa,636,570,698635863,10495,0 +23129,%2A0028+Baraki,630,429,8459255,10384,0 +23130,Tomall78,633,428,699524891,9447,0 +23131,-+238+-+RR,592,617,849018239,10000,0 +23132,Pobozowisko,404,618,699513260,10955,0 +23133,038,620,406,9148043,9818,0 +23134,%23.35+Wioska+barbarzy%C5%84ska,650,481,849054582,3748,0 +23135,Serenity,430,637,849006145,10348,0 +23136,ave+why%21,456,631,698143931,10237,0 +23137,Wioska+barbarzy%C5%84ska,436,367,699308637,9968,0 +23138,%230067+barbarzy%C5%84ska,471,353,1238300,10047,0 +23139,Lord+Lord+Franek+.%23017,536,351,698420691,10143,0 +23140,A013,594,380,699761749,10495,5 +23141,Ave+Why%21,459,639,698585370,9376,0 +23143,B05,643,447,849093742,10019,0 +23144,001,360,543,8908002,9993,0 +23145,Wioska+barbarzy%C5%84ska,356,448,6258092,7856,0 +23146,B.002,653,508,9188016,10000,1 +23147,0048,621,414,699429153,9746,0 +23148,North+Barba+038,423,369,699796330,9756,0 +23149,MEH+001,615,606,699778867,12154,0 +23150,d+001,393,400,3909522,7313,0 +23151,016+-+Gijon,641,443,698342159,10019,0 +23152,022...PO%C5%81UDNIE,456,357,6920960,10223,0 +23153,A-027,388,399,8419570,10168,0 +23154,c+085d,414,381,3909522,6084,0 +23155,Ulu-mulu,413,618,699697558,3368,0 +23156,056...+barbarka,454,354,6920960,10325,0 +23157,psycha+sitting,454,647,699736927,10311,0 +23158,0471,534,648,698659980,10362,0 +23159,%23.01+Wioska+Pompka15,650,477,849054582,10019,0 +23160,B001,397,606,699383279,9819,0 +23161,Lord+Arsey+KING,516,495,848956513,10285,0 +23162,The+Game+Has+Only+Just+Begun,350,518,9280477,9976,0 +23163,PDWB,642,451,9314079,9835,0 +23164,0051,617,410,699429153,9825,0 +23165,kathare,559,635,873575,9831,0 +23166,A0057,348,487,8841266,10252,0 +23167,Myk+i+do+kieszonki,360,559,9319058,9799,0 +23168,yyyy,502,350,699883079,10121,0 +23169,Jednak+wol%C4%99+gofry,432,632,699736927,7240,0 +23170,S_007,512,651,849049155,11191,0 +23171,019,521,351,1990750,10068,0 +23172,Lecymy+DUR,437,361,6169408,8880,5 +23173,Piwna+21,638,434,699812007,5130,0 +23174,122.+Seyen,631,423,8337151,4290,0 +23175,038+Hella,624,588,699272880,10209,0 +23176,0007,582,376,699485250,10168,5 +23177,028,446,639,849084985,10237,0 +23178,0043,412,374,848913037,8496,0 +23180,kathare,550,637,873575,10203,0 +23181,0564,546,645,698659980,9821,0 +23182,The+Game+Has+Only+Just+Begun,349,520,9280477,9976,0 +23183,007+Suche+Jezioro,625,422,699429153,9825,0 +23185,Piek%C5%82o+to+inni,573,371,848956765,10362,0 +23186,MojeSzczytToTw%C3%B3jDno,521,369,828637,10495,0 +23187,Pobozowisko,402,612,699513260,9003,0 +23188,C001,521,352,699208929,10248,0 +23189,Szlachcic,354,466,6258092,10160,0 +23190,Charfa,556,357,699072129,10221,0 +23191,Wioska+Bochun10,347,506,7449254,10311,0 +23192,Piek%C5%82o+to+inni,578,369,848956765,10160,0 +23193,003,377,419,9239515,5730,0 +23194,A0053,349,494,8841266,10252,4 +23195,The+Game+Has+Only+Just+Begun,356,535,9280477,9568,0 +23196,deff+100+%25,362,559,849012521,8592,0 +23197,a+mo%C5%BCe+off+%3F+%3A%29,641,554,698768565,9329,0 +23198,R%C4%99cznik+do+zmiany,375,411,699697558,10160,0 +23199,Wioska+barbarzy%C5%84ska,644,449,699524891,9718,0 +23200,Wioska+barbarzy%C5%84ska,470,357,698739350,9359,0 +23201,Wioska+Jaro,373,420,8967440,9915,0 +23202,Wioska+barbarzy%C5%84ska,383,403,8419570,10221,0 +23203,058,635,566,849095227,9729,0 +23204,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,644,699828442,9825,0 +23205,Avanti%21,349,509,698625834,9950,0 +23206,110.+P%C3%B3%C5%82wysep+Ma%C5%82y+Dartan,630,426,8337151,5547,0 +23207,Oww+Konfederacja,609,398,848915730,8707,0 +23208,Piek%C5%82o+to+inni,568,363,848956765,10160,0 +23209,Wioska+barbarzy%C5%84ska,367,426,699753640,2658,0 +23210,006...CENTR_ogarek2,460,352,6920960,10495,0 +23211,Kentin+ufam+Tobie,358,458,699783765,10005,0 +23212,041+%7C+PALESTINA,635,435,9228039,5108,0 +23213,zzzGranica+Bledu+14,611,605,699778867,11550,0 +23214,048...CENTR,458,352,6920960,10237,0 +23215,R%C4%99cznik+do+zmiany,371,417,699697558,7444,0 +23216,178+Punta+del+Este,477,478,1497168,9825,0 +23217,a+mo%C5%BCe+off+%3F+%3A%29,626,584,698768565,9422,0 +23218,Lecymy+DUR,437,363,6169408,10490,0 +23219,Alicization+1,458,647,699849210,10167,0 +23220,Wioska+barbarzy%C5%84ska,645,537,7047342,10479,0 +23221,So%C5%82tys+wsi+Agnes96,399,388,849027025,11021,0 +23222,0135,643,462,698416970,8332,0 +23223,Wioska+barbarzy%C5%84ska,556,358,699072129,10217,0 +23224,7+barba,578,628,848995242,9952,0 +23225,044,612,599,698786826,10220,6 +23226,MRF+002,630,579,118121,9085,0 +23227,A+014,600,389,6384450,9976,0 +23229,0241,543,647,698659980,10083,0 +23230,0245,541,646,698659980,10117,0 +23231,P024+Kair,652,518,8096537,9976,0 +23232,A042,586,380,699485250,6750,0 +23233,101,584,381,849064752,10311,0 +23234,DajankA+18,356,544,849012843,10160,0 +23235,Wioska+%28038%29,646,476,698232227,7277,0 +23236,Ave+Why%21,471,649,699121671,9809,0 +23237,Ave+Why%21,457,640,698585370,9569,0 +23238,025.+P%C4%99dz%C4%99,505,650,848928624,8424,0 +23239,028+Wioska,647,483,699671454,9018,0 +23240,%2A%2A%2A003%2A%2A%2A,504,351,8843774,4052,0 +23241,Gattacka,623,414,699298370,9761,0 +23242,Kentin+ufam+Tobie,356,450,699783765,10114,0 +23243,013+Deportacja+z+Polski,613,405,699298370,9959,0 +23244,A009,593,380,699761749,10495,0 +23245,Asy%C5%BC,492,350,699244334,2665,0 +23246,A+015,601,388,6384450,9692,0 +23247,Wioska+barbarzy%C5%84ska,636,440,699429153,9825,0 +23248,-002-,357,545,9253494,8137,0 +23249,016,565,637,699828685,9976,0 +23251,Szlachcic,415,377,698388578,7251,0 +23252,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,646,699828442,9811,0 +23253,I%23034,603,389,2065730,5259,0 +23254,021,424,630,699783765,4474,0 +23255,zzzGranica+Bledu+07,608,607,699778867,8651,0 +23257,013,636,558,849095227,9735,0 +23258,R%C4%99cznik+do+zmiany,375,414,699697558,10160,0 +23259,053,646,540,699351301,10160,6 +23260,B.009,651,506,9188016,10000,0 +23261,%2AINTERTWINED%2A,511,647,698704189,9711,0 +23262,Wioska+barbarzy%C5%84ska,546,361,699072129,10470,0 +23263,Westcoast.100,369,430,848918380,10178,0 +23264,WW30,650,465,1715091,3819,0 +23265,kathare,555,638,873575,9866,0 +23267,jaaa,629,579,698635863,10495,7 +23268,jestem+Boomerem+%21%21%21%21,588,626,848995242,10362,0 +23269,Pobozowisko,396,603,699513260,10950,0 +23270,psycha+sitting,455,644,699736927,10311,0 +23271,%230065+barbarzy%C5%84ska,471,352,1238300,10178,0 +23272,Wioska+barbarzy%C5%84ska,364,422,393668,9902,0 +23273,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,647,699828442,9825,0 +23274,093+duko+2,546,355,699491076,10001,6 +23275,034+Y13J,653,502,2135129,9500,0 +23276,Cladonia+arbuscula,495,352,699883079,9517,0 +23277,135+DaSilva2402,517,352,699491076,10001,0 +23278,The+Game+Has+Only+Just+Begun,355,529,9280477,9976,0 +23279,165...Kalichore,453,355,6920960,7033,0 +23280,Sony+911,580,626,1415009,10097,0 +23281,Lecymy+DUR,441,364,6169408,10971,0 +23282,Kentin+ufam+Tobie,359,449,699783765,10000,0 +23283,WB005,589,618,8627359,9415,0 +23285,006.,482,652,849034882,10838,0 +23286,Wioska+Syriusz1,571,608,8627359,9390,0 +23287,14+Helmowy+Jar,457,644,699736927,10311,0 +23288,030,614,595,698786826,6486,0 +23289,-+233+-+RR,593,622,849018239,10000,0 +23290,c+001c,410,382,3909522,9269,0 +23292,The+Game+Has+Only+Just+Begun,354,529,9280477,9976,0 +23293,024+Ceunon,602,474,8337151,9986,0 +23294,--5.+%C5%81ysa+Polana,387,407,698345556,10559,0 +23296,Kikut,516,350,1990750,10068,0 +23297,Valhalla+A5,373,584,849097002,6077,0 +23299,032,643,552,849095227,9714,0 +23300,Jestem+Poza+Kontrol%C4%85,349,545,8004076,9880,0 +23301,kathare,558,637,873575,9779,0 +23302,So%C5%82tys+wsi+Agnes96,399,389,849027025,10309,0 +23303,kathare,546,643,873575,9957,0 +23304,%5B075%5D,639,561,8000875,10252,0 +23305,The+Game+Has+Only+Just+Begun,351,517,9280477,9976,0 +23306,A017,590,377,699485250,10211,0 +23307,0284,545,646,698659980,9861,0 +23308,Jestem+Poza+Kontrol%C4%85,351,538,8004076,8589,0 +23309,%7CA%7C+Hazelvalley,479,647,698807570,10495,0 +23310,The+Game+Has+Only+Just+Begun,348,520,9280477,9976,1 +23311,Shinra+Building+-+Perimeter,508,592,8199417,10083,0 +23312,ILO,599,617,6417987,10479,0 +23313,243...SOUTH,478,348,6920960,8776,0 +23314,%7E%7E027%7E%7E,603,608,7829201,9511,0 +23316,Oww+Konfederacja,608,392,848915730,9938,0 +23317,A0297,353,480,8841266,10252,0 +23318,Siara,537,351,849101144,3665,0 +23319,Kentin+ufam+Tobie,357,443,699783765,10147,0 +23320,c+0055+Wioska,403,389,3909522,10083,0 +23321,c+010+Oaza+9,414,379,3909522,10083,0 +23322,B.019,648,507,9188016,10000,0 +23323,Jan+011+Watergate+K,648,462,879782,9435,1 +23324,Avanti%21,349,499,698625834,9950,0 +23325,.Wioska+barbarzy%C5%84ska,637,565,6929240,6021,0 +23326,a+mo%C5%BCe+off+%3F+%3A%29,627,582,698768565,9534,0 +23327,A0062,351,488,8841266,10252,0 +23328,069,560,402,849064752,10311,0 +23329,EMERYTOWANY+KUZYN,422,632,848913998,8261,0 +23330,033,482,353,698739350,10237,0 +23331,Piek%C5%82o+to+inni,573,370,848956765,10160,0 +23332,BUNKIER+004,636,437,7588382,8171,0 +23333,029.,644,491,849094609,10346,0 +23334,A0105,350,498,8841266,10252,0 +23335,kathare,559,638,873575,9994,0 +23336,010,366,535,698641566,9809,0 +23337,BAC%C3%93WKA+%7C021%7C,628,422,7394371,7475,0 +23338,33.Or%C5%82y,379,595,8665783,10465,6 +23339,The+Game+Has+Only+Just+Begun,353,530,9280477,9976,0 +23340,006Okna,447,635,698620694,9687,0 +23341,JaawmG,645,547,8815749,10019,0 +23342,023,480,351,698739350,10237,0 +23343,yogi,572,637,2808172,7283,0 +23344,%23055.,643,448,556154,9735,0 +23345,%2B%2B001%2B%2B,381,413,698884287,10285,5 +23346,009+nie+ma+spania+na+wyjazdach,446,644,699238479,9485,0 +23347,Ave+Why%21,483,655,698585370,9847,0 +23348,A-020,390,395,8419570,10168,0 +23349,The+Game+Has+Only+Just+Begun,352,516,9280477,9976,8 +23350,050,443,642,849084985,10336,0 +23351,EMERYTOWANY+KUZYN,426,630,848913998,6637,0 +23352,Jestem+Poza+Kontrol%C4%85,355,543,8004076,8215,0 +23353,065,646,529,699351301,10144,0 +23354,A-023,386,397,8419570,10168,0 +23355,Village,520,648,849094067,12154,0 +23356,Wioska+barbarzy%C5%84ska,361,443,699088529,4793,0 +23357,063,649,527,699351301,9745,0 +23358,Pobozowisko,402,605,699513260,7209,0 +23359,jaaa,630,578,698635863,10487,0 +23360,Myk+i+do+kieszonki,364,566,9319058,9799,1 +23361,Jednak+wol%C4%99+gofry,473,650,699725436,9830,0 +23362,100,475,354,7271812,10495,0 +23363,Osada+koczownik%C3%B3w,544,355,699072129,10226,1 +23364,Punta+Cana,457,645,699736927,7680,0 +23365,Kentin+ufam+Tobie,352,478,699783765,10000,0 +23366,Jehu_Kingdom_19_,645,469,8785314,9993,0 +23367,kathare,556,637,873575,9829,0 +23368,Wioska+barbarzy%C5%84ska+M,372,423,8967440,3402,0 +23369,Jan+o8+II,641,457,879782,8902,0 +23370,123,507,347,7271812,10214,0 +23371,06+Jar+Kapitolu,546,356,849108780,2164,0 +23372,Jestem+Poza+Kontrol%C4%85,357,548,8004076,8589,0 +23373,Deveste+ufam+Tobie,437,627,699783765,10083,0 +23374,Jaaa,624,590,698635863,10484,0 +23375,A041,587,380,699485250,10342,0 +23376,017,480,349,698739350,10237,0 +23378,Oww+Konfederacja,606,392,848915730,4508,0 +23379,026+serniczek+na+urodziny,493,647,8954402,9767,0 +23380,029+181,348,499,698807570,8675,0 +23381,The+Game+Has+Only+Just+Begun,352,523,9280477,9976,3 +23383,Ulu-mulu,410,620,699697558,5476,0 +23384,Myk+i+do+kieszonki,362,562,9319058,9102,0 +23385,Wioska+barbarzy%C5%84ska+.,581,627,848995242,10362,0 +23386,Wioska+Przekl%C4%99tych,553,360,699072129,10237,0 +23387,BEZDZIETNY+KAWALER,417,626,848913998,4759,0 +23388,022,626,419,699429153,7050,0 +23389,A-028,391,397,8419570,10168,0 +23390,121,626,421,7085502,9899,0 +23391,Jestem+Poza+Kontrol%C4%85,360,548,8004076,8048,0 +23392,kathare,548,643,873575,10495,8 +23393,002+-+Mroczna+Osada,634,426,849035905,11085,0 +23394,B.017,657,508,9188016,10000,0 +23395,013,521,350,1990750,10068,0 +23396,114+Tonami,645,462,7092442,8040,0 +23397,So%C5%82tys+Wsi+Enaor1990,408,384,849027025,9761,0 +23398,Kentin+ufam+Tobie,355,455,699783765,10000,0 +23399,Ave+Why%21,472,652,698585370,10019,0 +23400,1.1,390,393,8967440,10177,0 +23401,Ulu-mulu,418,623,699697558,3802,0 +23402,M181_053,364,427,393668,10017,0 +23403,Hipnagogia,372,587,849095992,8816,0 +23404,a+mo%C5%BCe+off+%3F+%3A%29,625,578,698768565,10005,0 +23405,zz+To+nie+by%C5%82+przypadek+Magiorek,618,598,699778867,11824,0 +23406,052.+Tripolis,646,468,849091866,9548,0 +23407,012.+%C5%BBeby+k%C3%B3zka.....,508,653,848928624,10054,0 +23408,MojeDnoToWaszSzczyt,571,366,699697558,10019,0 +23409,Wioska+barbarzy%C5%84ska,622,407,699429153,9847,0 +23410,A+012,607,389,6384450,4676,0 +23411,a+mo%C5%BCe+off+%3F+%3A%29,624,583,698768565,9550,0 +23412,psycha+sitting,452,640,699736927,10311,0 +23413,029,438,639,699736927,9072,0 +23414,001,376,418,9239515,8240,0 +23415,Piek%C5%82o+to+inni,565,360,848956765,10971,0 +23416,Pobozowisko,384,601,699513260,10951,0 +23417,%23.28+Wioska+barbarzy%C5%84ska,648,472,849054582,5912,0 +23418,25.+Speluna,378,587,8665783,7515,0 +23419,008.+Hawaje,639,437,849095599,9835,0 +23420,Pobozowisko,385,601,699513260,7169,0 +23421,Wioska+barbarzy%C5%84ska,449,386,699191449,9338,0 +23422,041,623,406,9148043,9389,0 +23423,c+Boniu30,406,388,3909522,10426,0 +23424,buuu,395,567,9167250,9827,0 +23425,001+G%C3%B3rzysta+Dolina,623,423,699429153,9899,0 +23426,Wioska+barbarzy%C5%84ska,529,352,1990750,10068,0 +23427,009%7C%7C+Sagittarius,483,648,849035525,10019,0 +23428,Wioska,592,621,8627359,9343,0 +23429,93k%24+Grvvyq,645,548,699676005,4608,0 +23430,MojeSzczytToTw%C3%B3jDno,505,351,828637,9792,0 +23431,Szlachcic+%21%21%21,498,474,699098531,9279,0 +23432,Pobozowisko,385,607,699513260,10907,0 +23433,093,357,457,6258092,8942,0 +23434,jaaa,631,574,698635863,10495,0 +23435,EMERYTOWANY+KUZYN,422,633,848913998,9364,0 +23436,Pobozowisko,389,606,699513260,6977,0 +23437,jaaa,628,574,698635863,10495,0 +23438,Pobozowisko,391,604,699513260,10952,0 +23439,006+Danowiec+City,433,639,849006145,10333,0 +23440,The+Game+Has+Only+Just+Begun,347,518,9280477,9976,0 +23441,D+009,650,498,8078914,9776,0 +23442,Lord+Lord+Franek+.%23041,528,351,698420691,10795,0 +23443,106,352,463,6258092,9860,0 +23444,Jehu_Kingdom_21_,644,455,8785314,9993,0 +23445,mys,569,632,699828685,9976,0 +23446,Piek%C5%82o+to+inni,572,369,848956765,10495,6 +23447,042,443,639,849084985,9835,0 +23448,048,649,526,698999105,10311,0 +23449,M181_017,361,430,393668,9891,0 +23450,jaaa,634,571,698635863,10495,0 +23451,085,355,461,6258092,10019,0 +23452,%23.15+Wioska+barbarzy%C5%84ska,649,473,849054582,10019,0 +23453,Oww+Konfederacja,611,400,848915730,9976,4 +23454,%5BC%5D_%5B009%5D+Dejv.oldplyr,358,462,699380607,9598,0 +23455,Pobozowisko,383,594,699513260,7217,0 +23456,Pacza%C5%82kowo,427,637,849006145,10197,0 +23457,0050,618,408,699429153,9825,0 +23458,A28+Braunschweig,469,633,849037407,10484,0 +23459,Wioska+barbarzy%C5%84ska,553,355,699072129,10218,0 +23460,Wioska+barbarzy%C5%84ska,385,402,848886056,4083,0 +23461,Piek%C5%82o+to+inni,573,368,848956765,10495,0 +23462,%230008,550,646,1536231,10495,7 +23463,Myk+i+do+kieszonki,357,557,9319058,9799,0 +23464,%23.09+Wioska+barbarzy%C5%84ska,651,478,849054582,10019,0 +23465,Ave+Why%21,457,641,698585370,9012,0 +23466,004.,614,546,6520732,10019,0 +23467,025,479,350,698739350,10237,0 +23468,Pobozowisko,393,606,699513260,9138,0 +23469,0119,424,626,6910361,4674,0 +23470,EMERYTOWANY+KUZYN,425,634,848913998,5127,0 +23471,-+228+-+RR,595,619,849018239,9544,0 +23472,0015,418,369,848913037,9993,0 +23473,Sparta_76,479,583,2585846,2146,0 +23474,022,638,557,849095227,9726,0 +23475,Wioska+4,537,356,849097220,1428,0 +23476,North+Barba+025,424,366,699796330,9761,0 +23477,003,489,347,698739350,10237,0 +23478,045,571,635,699828685,9232,0 +23479,038+%7C+PALESTINA,639,442,9228039,5967,0 +23480,A0259,351,500,8841266,10252,0 +23481,RTS+71,579,626,848995242,10495,6 +23482,The+Game+Has+Only+Just+Begun,349,518,9280477,9976,0 +23483,The+Game+Has+Only+Just+Begun,347,521,9280477,9976,0 +23484,080.,489,657,849034882,10495,0 +23485,Wiocha+003,393,611,848912772,10178,0 +23486,032,428,634,849084985,10285,0 +23487,Chekku+-+meito,343,523,9280477,10178,0 +23488,LadyAnimavillis,600,616,699703642,9761,0 +23489,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,567,8004076,9816,0 +23490,Oww+Konfederacja,606,393,848915730,4482,0 +23492,The+Game+Has+Only+Just+Begun,346,512,9280477,9976,0 +23493,C002,520,352,699208929,10032,0 +23494,31k%24+Grvvyq,639,557,699676005,10495,0 +23495,048,646,524,699351301,10207,0 +23496,Mniejsze+z%C5%82o+0068,353,462,699794765,6188,0 +23497,Lord+Lord+Franek+.%23018,533,349,698420691,9956,0 +23498,The+Game+Has+Only+Just+Begun,354,534,9280477,9976,0 +23499,Avanti%21,348,516,698625834,9950,0 +23500,%23001+Mentor+Zenit,358,441,849096215,3249,0 +23501,B.047,653,516,9188016,10005,0 +23502,Pobozowisko,386,604,699513260,10952,0 +23504,Ave+Why%21,455,633,8729672,10019,0 +23505,KREV+005,638,563,848988744,9735,0 +23506,Darkheim,377,582,8607734,10019,0 +23507,Wioska+xkikutx,526,356,1990750,10068,0 +23508,A-021,393,392,8419570,10168,0 +23509,Flinii,632,421,848883237,4460,0 +23511,K04.,369,578,849090130,10495,0 +23512,So%C5%82tys+Twojej+Wsi,402,384,849027025,10220,0 +23513,So%C5%82tys+Twojej+Wsi,403,385,849027025,9559,0 +23514,001+Grudzi%C4%85dz,649,498,2135129,9756,0 +23515,The+Unforgiven,626,586,848926293,8464,0 +23516,A033,578,372,699485250,10168,0 +23517,Oww+Konfederacja,600,391,848915730,5295,0 +23518,W+01,647,451,699524891,9744,0 +23519,001,429,631,699783765,8811,0 +23520,BUNKIER+002,636,429,7588382,11215,0 +23521,A020,470,637,699383279,10479,0 +23522,B.031,648,513,9188016,10000,0 +23523,B005,397,609,699383279,9810,0 +23524,0081,532,644,698659980,10160,0 +23525,Jestem+Poza+Kontrol%C4%85,358,554,8004076,8962,0 +23526,psycha+sitting,445,644,699736927,9540,0 +23527,NOT,417,428,9236866,10042,0 +23528,038,653,523,699351301,5966,0 +23530,Piek%C5%82o+to+inni,578,370,848956765,10495,0 +23531,-+225+-+RR,589,620,849018239,7134,0 +23532,060,635,571,849095227,9723,9 +23533,Wioska+barbarzy%C5%84ska,644,452,699524891,9637,0 +23534,c+011+Przysta%C5%84+2,412,377,3909522,10297,0 +23535,Lord+Lord+Franek+.%23227,524,354,698420691,10121,0 +23536,075...barbarka+centr+-----------,462,354,6920960,10218,0 +23537,006%29+Sulistrowiczki,540,351,849097103,4203,0 +23538,Wioska+barbarzy%C5%84ska,553,357,699072129,10226,0 +23539,Avanti%21,353,513,698625834,9950,0 +23540,A0025,385,472,8841266,10252,0 +23541,Alicization8,461,645,699736927,8366,0 +23542,kathare,561,636,873575,9869,0 +23543,NOT%3F,428,543,9236866,9574,0 +23544,%230014+barbarzy%C5%84ska,464,352,1238300,10178,0 +23545,0024,594,384,699485250,10211,0 +23546,Jestem+Poza+Kontrol%C4%85,352,540,8004076,9880,0 +23547,The+Game+Has+Only+Just+Begun,352,529,9280477,9976,0 +23548,Jestem+Poza+Kontrol%C4%85,358,549,8004076,9523,0 +23549,025,653,506,849006412,7110,0 +23550,off+100+%25,359,564,849012521,10294,0 +23551,a+mo%C5%BCe+off+%3F+%3A%29,627,575,698768565,9566,0 +23552,R%C4%99cznik+do+zmiany,372,415,699697558,10160,0 +23553,Lecymy+DUR,432,366,6169408,10495,0 +23554,028+-+Cartagena,640,442,698342159,10019,0 +23555,046%7C%7C+Telescopium,473,648,849035525,9718,0 +23556,%2A0026+Baraki,630,425,8459255,10088,0 +23557,Wioska+barbarzy%C5%84ska,363,557,849012521,6125,0 +23558,010,481,347,698739350,10237,0 +23559,off+100+%25,370,573,849012521,7351,0 +23560,020.+Morning,506,653,848928624,10104,0 +23561,mys,569,631,699828685,9976,0 +23562,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,650,699828442,9809,0 +23563,Pobozowisko,396,613,699513260,7727,0 +23564,010+Towar+Wydany,540,355,699491076,10001,0 +23565,Jehu_Kingdom_12_,632,422,8785314,9993,0 +23566,28.+ko%C5%82o+bila,376,587,8665783,10263,0 +23567,005+Lecia%C5%82em+Na+Hulajce,543,354,699491076,10001,0 +23568,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,497,652,698585370,9671,0 +23569,aAa+Szlaban+5,606,610,699778867,12154,0 +23570,039,652,486,2135129,9500,0 +23571,%2ALan,575,634,699443920,9761,0 +23572,MojeDnoToWaszSzczyt,563,360,699697558,10495,0 +23573,Pobozowisko,407,620,699513260,10954,0 +23574,013+MONETKI,652,488,7588382,8869,0 +23575,yyyyy,503,352,699883079,10063,1 +23576,003+181,352,495,698807570,10162,0 +23577,MojeDnoToWaszSzczyt,564,363,699697558,10495,0 +23578,Szlachcic,422,371,698388578,10237,0 +23579,AA02+Francja,378,413,483145,12154,0 +23580,Oww+Konfederacja,607,395,848915730,7066,0 +23582,Lord+Lord+Franek+.%23137,515,347,698420691,10233,0 +23583,Wioska+barbarzy%C5%84ska,371,573,849012521,5743,0 +23584,0472,533,649,698659980,10252,0 +23585,042+wioska+barbarka,391,609,6354098,9438,0 +23586,Wioska+barbarzy%C5%84ska,386,395,8419570,2135,0 +23587,057,426,631,699783765,5556,0 +23588,Wioska+Zielony2607,472,645,699238479,9816,0 +23589,SSJ+064,515,653,699054373,9761,0 +23590,-004-,358,545,9253494,9746,0 +23591,006+C3tiv,653,487,2135129,9080,0 +23592,018+Barba,654,500,2135129,9500,0 +23593,Deveste+ufam+Tobie,431,619,699783765,6663,0 +23594,Jednak+wol%C4%99+gofry,440,642,699736927,10068,0 +23595,200,645,541,7038651,10476,0 +23596,Lecymy+DUR,441,362,6169408,2731,0 +23597,Ave+Why%21,496,654,698585370,10311,2 +23598,Myk+i+do+kieszonki,362,561,9319058,9799,0 +23599,%2A%2AQuetico,575,628,699443920,9761,0 +23600,0473,537,649,698659980,10495,0 +23601,Wioska+3,538,354,849097220,3049,0 +23602,Ave+Why%21,464,642,698585370,6176,0 +23603,BEZDZIETNY+KAWALER,423,632,848913998,7670,0 +23604,81k%24+Grvvyq,643,544,699676005,10495,0 +23605,%2ALoch,574,634,699443920,9761,0 +23606,Charizard,498,352,699883079,10332,0 +23607,%7E%7E004%7E%7E,605,600,7829201,9839,0 +23608,B.048,654,516,9188016,10002,0 +23609,0040+Wioska+barbarzy%C5%84ska,406,614,9060641,6453,0 +23610,7.62+mm,379,404,848886056,2177,0 +23611,020+Barba,653,492,2135129,9500,0 +23612,A0055,347,489,8841266,10252,0 +23614,074+Rozpusta4,638,430,9238175,10132,0 +23615,The+Game+Has+Only+Just+Begun,351,525,9280477,8986,0 +23616,-018-,377,587,699097885,9203,0 +23617,041,370,563,8908002,9993,0 +23618,Dajanka+13,356,555,849012843,6451,0 +23619,150...ksi%C4%85%C5%BC%C4%99+plemienia,453,360,6920960,7276,0 +23620,022,652,502,849091105,10252,0 +23621,007+-+Mroczna+Osada,628,415,849035905,11550,0 +23622,0142,536,644,698659980,10019,0 +23623,023%7C%7C+Canis+Minor,491,648,849035525,9920,0 +23624,Kentin+ufam+Tobie,351,475,699783765,10000,0 +23625,A0060,349,487,8841266,10252,0 +23626,MojeDnoToWaszSzczyt,561,365,699697558,10495,0 +23627,Kentin+ufam+Tobie,350,480,699783765,10000,0 +23628,Wioska+barbarzy%C5%84ska,395,465,698807570,10068,0 +23629,jaaa,636,573,698635863,10484,0 +23630,BEZDZIETNY+KAWALER,423,627,848913998,8204,0 +23631,SSJ+050,511,649,699054373,9761,0 +23632,-012-,378,588,699097885,9266,4 +23633,109,485,356,699761749,10495,0 +23634,North+Barba+029,430,369,699796330,9747,0 +23635,008...P%C5%81D_Ogar,456,358,6920960,10495,0 +23636,%230023+barbarzy%C5%84ska,468,355,1238300,10178,0 +23637,0012,420,368,848913037,9993,0 +23638,zzzGranica+Bledu+10,607,608,699778867,9026,0 +23639,W+02,643,455,699524891,9666,0 +23640,067,355,465,6258092,10083,0 +23641,0474,532,652,698659980,10019,0 +23642,A0225,347,499,8841266,10252,0 +23643,86k%24+Grvvyq,646,546,699676005,10436,0 +23644,B004,401,610,699383279,9808,0 +23645,036,636,564,849095227,9752,0 +23646,Jan+05+K,645,464,879782,9476,3 +23647,B.033,654,514,9188016,10000,0 +23648,115+Sagae,651,465,7092442,5807,0 +23649,Nowe+4,537,645,7589468,8820,0 +23650,-+242+-+RR,596,618,849018239,10000,0 +23651,mioduch001,585,628,698385619,2663,0 +23652,A001,599,386,699761749,9643,0 +23654,psycha+sitting,454,643,699736927,8229,0 +23655,Sque+zostaje,524,348,7181335,10160,0 +23656,K34+-+%5B110%5D+Before+Land,444,360,699088769,10259,0 +23657,A0106,352,490,8841266,10252,0 +23658,A004,405,616,848912772,7886,0 +23660,Wiocha+001,394,613,848912772,10178,0 +23661,0146,425,371,699431255,10903,0 +23662,Isengard,611,395,848915730,6201,0 +23663,Pobozowisko,395,606,699513260,10871,0 +23664,0057,620,411,699429153,9825,0 +23665,A0170,355,486,8841266,10252,0 +23666,kathare,558,643,873575,10187,0 +23667,Ave+Why%21,452,630,8729672,9922,0 +23668,A0210,368,473,8841266,10252,0 +23669,A025,585,370,699485250,10211,0 +23670,15+Gondolin,458,645,699736927,8041,0 +23671,jaaa,629,582,698635863,10484,0 +23672,0475,536,649,698659980,9901,0 +23673,MojeDnoToWaszSzczyt,572,364,699697558,10019,0 +23674,067+Wioska+barbarzy%C5%84ska,549,355,699491076,10001,0 +23675,004,649,533,699351301,12134,0 +23676,Ave+Why%21,482,659,698585370,9346,0 +23677,Lecymy+DUR,435,360,6169408,10481,0 +23678,yyyy,490,345,699883079,10068,3 +23679,013.+Daro+Lew,639,441,849095599,9835,0 +23680,Charfa,517,349,699072129,10226,0 +23681,Kentin+ufam+Tobie,388,442,699783765,10000,0 +23682,Monetio,443,357,849017820,10495,0 +23683,Vataha,554,357,699072129,10311,0 +23684,A-029,383,399,8419570,10168,0 +23685,MojeDnoToWaszSzczyt,574,364,699697558,10019,0 +23687,%23.06+KWASIOR,651,467,849054582,10019,0 +23688,Jednak+wol%C4%99+gofry,439,640,699736927,7338,0 +23689,Pobozowisko,395,609,699513260,10960,0 +23690,Lecymy+DUR,432,361,6169408,7140,0 +23691,MRF+001,629,580,118121,11911,0 +23692,Wioska+barbarzy%C5%84ska,637,440,699429153,9825,0 +23693,042,484,351,698739350,10237,0 +23694,%23.21+Wioska+barbarzy%C5%84ska,648,478,849054582,8063,0 +23695,Owp+Konfederacja,595,384,848915730,9278,0 +23696,017+181,352,502,698807570,10474,0 +23697,Bagdad,499,350,8847546,9976,0 +23698,A0311,346,505,8841266,9966,0 +23699,A0151,348,490,8841266,10252,0 +23700,R%C4%99cznik+do+zmiany,372,416,699697558,10160,0 +23701,131...centr,459,355,6920960,10237,0 +23702,off+100+%25,361,554,849012521,10251,0 +23703,A+READY,595,397,1553947,10160,0 +23704,AB13+Szkocja,377,417,483145,4424,0 +23705,Ave+Why%21,460,640,698585370,10495,0 +23706,XXXX,496,346,699883079,10132,0 +23707,Flinii,632,431,848883237,6303,0 +23709,075,437,636,849084985,9388,0 +23710,MojeDnoToWaszSzczyt,561,359,699697558,10083,0 +23711,003,376,415,848945529,7880,9 +23712,Dzikie+wsparcie,468,653,698807570,9872,0 +23713,DajankA+08,355,557,849012843,10362,0 +23715,A0107,352,492,8841266,10252,0 +23716,018+017,539,355,699491076,10001,7 +23717,MojeDnoToWaszSzczyt,565,363,699697558,10495,0 +23718,Ave+Why%21,472,651,698585370,10019,0 +23719,009+181,352,506,698807570,10049,6 +23720,058,651,528,698999105,9947,0 +23721,027+VW+GD+--016--,370,421,3108144,4495,0 +23722,007...P%C5%81D_Ogarniamy,456,356,6920960,10559,0 +23723,Stany,372,422,1746216,5150,0 +23724,BEZDZIETNY+KAWALER,414,626,848913998,6012,0 +23725,Lord+Lord+Franek+.%23138,518,349,698420691,10143,0 +23726,002+MONETKI,648,485,7588382,10019,2 +23727,.achim.,527,387,6936607,10311,0 +23728,Wioska+barbarzy%C5%84ska,497,347,699244334,4230,0 +23729,Ave+Why%21,497,655,698585370,8554,0 +23730,Szlachcic,349,466,6258092,10083,0 +23731,Kentin+ufam+Tobie,350,474,699783765,10000,0 +23732,009,483,348,698739350,10237,0 +23733,Maszlug+Stolica,366,432,848977649,12154,0 +23734,Mandarynki1,457,648,699736927,10311,0 +23735,Osada+koczownik%C3%B3w,557,356,699072129,10218,1 +23736,%23.03+AVEWiking,652,471,849054582,10019,0 +23737,R%C4%99cznik+do+zmiany,374,416,699697558,10160,0 +23738,Lord+Lord+Franek+.%23045,516,346,698420691,9976,0 +23739,Joker+pozdrawia+%3B%29,426,636,849006145,7350,0 +23740,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,644,7589468,8817,0 +23741,K02..,367,580,849090130,9522,0 +23742,Ulmus+glabra,503,346,699883079,8669,0 +23743,Myk+i+do+kieszonki,360,564,9319058,9799,0 +23744,B.049,650,516,9188016,10000,0 +23745,A013,581,371,699485250,10168,0 +23746,The+Game+Has+Only+Just+Begun,353,531,9280477,9976,0 +23748,Mandarynki+3,459,649,699736927,8440,0 +23749,Wioska+Don+Kargul,349,536,3529695,9163,0 +23750,0252,541,647,698659980,10160,0 +23751,KUZYN+REMONCIARZ,427,630,848913998,4553,0 +23753,Avanti%21,347,513,698625834,9950,0 +23754,Pobozowisko,388,606,699513260,10951,0 +23755,060,355,541,8908002,4696,0 +23756,Alicization+3,459,647,699849210,9814,0 +23757,045%7C%7C+Vulpecula,501,652,849035525,10019,0 +23758,B.001,651,514,9188016,10000,8 +23759,Szlachcic,582,485,699759128,10237,0 +23760,Kentin+ufam+Tobie,358,444,699783765,9829,0 +23761,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,652,699828442,9808,0 +23762,off+100+%25,359,556,849012521,8690,0 +23763,psycha+sitting,453,646,699736927,10311,0 +23764,-+227+-+RR,596,621,849018239,10000,0 +23765,North+Barba+027,428,368,699796330,9899,0 +23766,Wioska+barbarzy%C5%84ska+024,498,346,6343784,7244,0 +23767,0476,517,649,698659980,9398,0 +23768,009,357,542,8908002,9993,0 +23769,Mniejsze+z%C5%82o+0079,389,459,699794765,10887,0 +23770,900,645,539,7038651,10233,0 +23771,134,482,350,7271812,5754,0 +23772,No.+2,477,652,698585370,9201,0 +23773,Ave+Why%21,475,649,699121671,9809,0 +23774,A0226,346,499,8841266,10252,0 +23775,MojeDnoToWaszSzczyt,560,365,699697558,10495,0 +23776,010...CENTR_FOX,462,353,6920960,10218,0 +23777,Brat447,348,506,699262350,10134,8 +23778,A002,474,639,699383279,9861,0 +23779,So%C5%82tys+Twojej+Wsi,401,388,849027025,9744,0 +23780,ave+why%21,447,642,698143931,10019,0 +23781,Jehu_Kingdom_22,649,485,8785314,8152,0 +23782,%23.31+Wioska+grunwald45,653,483,849054582,10019,0 +23783,Jestem+Poza+Kontrol%C4%85,358,551,8004076,9778,0 +23784,Maszlug+kolonia+VII,366,430,848977649,9109,0 +23785,23.+Altanka+u+pompa,375,588,8665783,9179,0 +23786,003,642,557,849095963,10668,1 +23787,Jednak+wol%C4%99+gofry,442,644,699736927,8733,0 +23788,Szlachcic,353,467,6258092,10083,0 +23789,040,485,345,698739350,10237,0 +23790,R%C4%99cznik+do+zmiany,375,408,699697558,10160,0 +23791,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,365,569,8004076,9682,0 +23792,S_010,503,653,849100262,10653,0 +23793,PZ033,654,520,8096537,9745,0 +23794,0054,621,410,699429153,9782,0 +23795,%5B148%5D,633,566,8000875,9607,0 +23796,D+008,655,503,8078914,9428,0 +23797,0039,418,373,848913037,8830,0 +23799,Pobozowisko,393,605,699513260,10950,0 +23800,LadyAnimavillis,602,617,699703642,9861,0 +23801,Edirne,418,629,849089459,8444,0 +23802,Wioska+Bochun10,347,483,7449254,10495,0 +23803,Szlachcic,436,365,698388578,4355,0 +23804,The+Game+Has+Only+Just+Begun,349,529,9280477,9976,0 +23805,08+Ksi%C4%99%C5%BCyc%2C+u%C5%BCywaj%C4%85c+motyki,465,650,699121671,9599,0 +23806,A046,586,371,699485250,8224,0 +23807,Pobozowisko,403,618,699513260,10971,0 +23808,Szlachcic,355,449,6258092,9747,4 +23809,Pobozowisko,398,609,699513260,10971,0 +23810,085,439,639,849084985,9706,0 +23811,R%C4%99cznik+do+zmiany,375,412,699697558,9834,0 +23812,S_012,507,655,849100262,7688,0 +23814,MojeDnoToWaszSzczyt,571,367,699697558,10019,0 +23815,0280,546,646,698659980,9924,0 +23816,069,637,572,849095227,9714,0 +23817,Kentin+ufam+Tobie,355,444,699783765,10495,0 +23818,A006,601,386,699761749,10025,0 +23819,Pobozowisko,397,612,699513260,10951,4 +23820,031,616,598,698786826,7745,0 +23821,020,564,641,699828685,9976,0 +23822,101,429,557,8779575,3161,0 +23823,078+cevelel,638,429,9238175,10284,0 +23824,Kentin+ufam+Tobie,368,448,699783765,10000,0 +23825,Szlachcic,424,370,698388578,8662,0 +23826,089,438,637,849084985,7094,0 +23827,010,425,632,699783765,8527,0 +23828,109,475,352,7271812,7765,0 +23829,039,546,647,698659980,9390,0 +23830,Wioska+barbarzy%C5%84ska,359,453,6258092,9216,0 +23831,A0116,349,497,8841266,10252,0 +23832,0001.,475,647,848999671,10290,0 +23833,%2ALoslosos,576,633,699443920,9761,0 +23836,Posterunek+001,400,616,848912772,10178,0 +23837,007,421,631,699783765,6805,0 +23838,-+226+-+RR,591,619,849018239,8696,0 +23839,c+Wronki,396,385,3909522,7092,0 +23840,Wioska+2,538,353,849097220,4718,0 +23842,032,613,599,698786826,6083,0 +23843,Oaza+8,405,380,699402816,9925,0 +23845,Lecymy+DUR,430,361,6169408,6575,0 +23846,A0051,348,488,8841266,10252,9 +23847,Wioska+barbarzy%C5%84ska,551,360,699072129,10237,0 +23848,102,351,464,6258092,10019,0 +23849,A003,597,384,699761749,7269,0 +23850,110+Wioska+barbarzy%C5%84ska,539,357,699491076,10030,0 +23851,Wioska+barbarzy%C5%84ska,551,358,699072129,10364,0 +23852,.achim.,528,447,6936607,11321,0 +23853,%23005+nazwa,374,589,8607734,10019,0 +23854,Jestem+Poza+Kontrol%C4%85,357,549,8004076,9880,0 +23855,VN+Maes+Hughes,465,373,699883079,9657,0 +23856,007.,482,653,849034882,10838,0 +23857,Grahamek,533,355,1990750,10068,0 +23858,sony911,581,629,1415009,10228,0 +23859,052+Bethesda,625,588,699272880,9524,0 +23860,%23.32+Wioska+grunwald45.2,653,482,849054582,4067,0 +23861,Pobozowisko,386,605,699513260,4105,0 +23862,32k%24+Grvvyq,639,556,699676005,10495,7 +23863,Wioska,557,362,699072129,10237,0 +23864,%23042.520%7C494,639,445,556154,9735,0 +23865,037...CENTRUM_PO%C5%81UDNIE,458,356,6920960,10247,0 +23866,Kentin+ufam+Tobie,355,452,699783765,10316,0 +23867,31.KaruTown,616,401,699298370,9520,0 +23868,71k%24+Grvvyq,639,569,699676005,9441,0 +23870,032+033,542,356,699491076,10001,0 +23871,Szlachcic,415,376,698388578,8677,0 +23872,024,487,351,698739350,10237,0 +23874,Wsch%C3%B3d+Droga+008,631,584,698562644,10311,0 +23875,030+%7C+PALESTINA,637,436,9228039,9544,0 +23876,B13,647,450,849093742,9004,0 +23877,124,474,352,7271812,3056,0 +23878,I%23002,598,381,2065730,9797,0 +23879,%5B106%5D,634,568,8000875,10143,0 +23880,009...CENTR_FOX,460,353,6920960,10495,0 +23881,Jaaa,618,595,698635863,10280,0 +23883,zzzGranica+Bledu+08,612,607,699778867,8872,0 +23884,The+Game+Has+Only+Just+Begun,350,521,9280477,9976,0 +23885,Dajanka+05,356,557,849012843,10360,0 +23886,A021+Go%C5%9B%C4%87095879+g%C5%82%C3%B3wna,653,459,113796,10224,0 +23887,North+Barba+032,423,370,699796330,9817,0 +23888,The+Game+Has+Only+Just+Begun,352,528,9280477,10040,0 +23889,kropka..,602,614,699778867,10096,0 +23890,A0238,351,481,8841266,10252,0 +23891,001,483,347,698739350,10237,0 +23892,0027,416,370,848913037,4969,0 +23893,Wioska+barbarzy%C5%84ska,384,399,698884287,6182,0 +23894,Avanti%21,347,502,698625834,9950,0 +23895,-028-,382,595,699097885,10019,0 +23896,0058,620,412,699429153,9825,0 +23897,KONFA+TO+MARKA%2C+NARKA,384,464,698152377,10311,0 +23898,007,491,349,698739350,10237,0 +23899,025,468,650,698650301,9999,0 +23900,xkikutx,507,351,1990750,10157,0 +23901,D04.,367,574,849090130,6947,0 +23902,Lord+Lord+Franek+.%23001,526,344,698420691,10235,0 +23903,Wsch%C3%B3d+Droga+001,644,549,698562644,10311,0 +23904,A-015,390,397,8419570,10168,1 +23905,S1Joker,476,656,698585370,11321,0 +23906,0477,538,649,698659980,9752,0 +23907,A-009,394,392,8419570,10245,0 +23908,%23066.,621,428,556154,9735,0 +23910,Pobozowisko,402,618,699513260,10971,0 +23911,081,356,542,6853693,6121,0 +23912,kathare,557,644,873575,10030,0 +23913,B%C4%85k+z+wanny+.,586,626,848995242,10495,0 +23915,010,651,533,699351301,8928,0 +23916,K34+-+%5B107%5D+Before+Land,443,355,699088769,10259,0 +23917,Wioska+barbarzy%C5%84ska,586,627,1415009,3874,0 +23918,So%C5%82tys+Twojej+Wsi,400,382,849027025,9142,0 +23919,Szlachcic,351,455,6258092,9053,0 +23920,Dziadostwo+Atakuje,453,651,698264828,2799,0 +23921,019,612,396,699298370,8548,0 +23922,M181_052,364,428,393668,9088,0 +23923,70k%24+Grvvyq,638,571,699676005,10495,0 +23924,Pobozowisko,386,597,699513260,9866,0 +23925,The+Game+Has+Only+Just+Begun,351,536,9280477,9976,0 +23926,Wioska+barbarzy%C5%84ska,554,360,699072129,10221,0 +23927,a+mo%C5%BCe+off+%3F+%3A%29,626,582,698768565,9333,0 +23928,U-08,586,378,3600737,5097,0 +23929,011+nica,567,638,699828685,9976,0 +23930,%23.16+Wioska+barbarzy%C5%84ska,651,475,849054582,10019,0 +23931,marcovia,372,425,8967440,8750,0 +23932,Pobozowisko,382,594,699513260,5561,0 +23933,K03..,368,579,849090130,6894,0 +23934,Posterunek+003,397,613,848912772,10178,0 +23935,M001,650,508,848899726,7208,0 +23936,Kentin+ufam+Tobie,380,439,699783765,10000,0 +23937,MojeDnoToWaszSzczyt,565,364,699697558,10495,5 +23938,001,359,530,698641566,9809,0 +23939,%2A0029+Baraki,631,427,8459255,9971,0 +23941,Lord+Lord+Franek+.%23046,535,352,698420691,9959,0 +23942,MojeSzczytToTw%C3%B3jDno,510,346,828637,10475,0 +23943,Piek%C5%82o+to+inni,580,369,848956765,10495,0 +23944,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,648,699828442,10083,0 +23945,Dajanka+03,355,556,849012843,11321,0 +23946,Avanti%21,347,504,698625834,9950,0 +23947,BEZDZIETNY+KAWALER,417,632,848913998,9263,0 +23948,0478,534,650,698659980,10252,0 +23949,030,441,638,699736927,9790,0 +23950,122,472,351,7271812,5151,0 +23951,MojeDnoToWaszSzczyt,567,362,699697558,10495,0 +23952,Lord+Lord+Franek+.%23019,532,350,698420691,9960,0 +23953,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,653,698585370,9829,3 +23954,A+016,604,388,6384450,10362,0 +23955,BAC%C3%93WKA+%7C020%7C,629,422,7394371,8619,0 +23956,A0312,345,488,8841266,10252,0 +23957,kathare,553,646,873575,10268,0 +23958,Mexico4,458,644,699736927,10311,0 +23959,Magik69,610,603,699778867,12154,0 +23960,A+003,605,388,6384450,10362,0 +23961,005,501,650,848953066,9577,0 +23962,Mandarynki+2,457,649,699736927,9835,0 +23963,A003,406,620,848912772,10311,0 +23964,017.+Londinium,653,471,849091866,10311,9 +23965,Wioska+barbarzy%C5%84ska,384,398,698884287,6574,0 +23966,014,560,643,699828685,9976,0 +23967,X-01,595,377,3600737,7754,0 +23968,EMERYTOWANY+KUZYN,425,633,848913998,6730,0 +23969,Wioska+barbarzy%C5%84ska+022%7C,497,348,6343784,9989,0 +23970,Lord+Lord+Franek+.%23020,534,351,698420691,9959,0 +23971,LadyAnimavillis,601,618,699703642,9127,0 +23973,700,648,540,7038651,10149,0 +23974,psycha+sitting,446,645,699736927,10268,0 +23975,%23.22+Wioska+barbarzy%C5%84ska,649,481,849054582,8369,0 +23976,Oww+Konfederacja,609,393,848915730,4784,0 +23977,113+Wioska+barbarzy%C5%84ska,543,357,699491076,10060,0 +23979,Jednak+wol%C4%99+gofry,436,640,848913998,9835,0 +23980,BEZDZIETNY+KAWALER+%3A%29,411,628,848913998,6363,0 +23981,020+181,351,501,698807570,10634,0 +23983,Bizy+8,503,654,8954402,10213,0 +23985,050+Laval,620,590,699272880,10108,0 +23986,Wioska+barbarzy%C5%84ska,555,355,699072129,10218,0 +23987,018+181,356,507,698807570,10068,0 +23988,jaaa,636,559,698635863,10490,0 +23989,M181_051,363,431,393668,9891,0 +23990,psycha+sitting,451,645,699736927,10009,0 +23991,kathare,554,646,873575,10295,0 +23992,BEZDZIETNY+KAWALER,412,623,848913998,6649,0 +23993,Wioska+barbarzy%C5%84ska,350,456,6258092,10019,0 +23994,7.62+mm,379,402,848886056,3040,0 +23995,Wioska+barbarzy%C5%84ska,381,401,848886056,3111,3 +23996,Dajanka+11,360,555,849012843,7973,0 +23997,07.+Boi,378,594,8665783,9463,0 +23998,Owp+Konfederacja,596,384,848915730,6055,0 +23999,B04,641,439,849093742,10495,0 +24000,-+248+-+RR,593,625,849018239,5499,0 +24001,031,354,470,6258092,10252,0 +24002,MojeDnoToWaszSzczyt,560,358,699697558,10160,0 +24003,%2AINTERTWINED%2A,509,651,698704189,9711,0 +24004,043...CENTRUM+PO%C5%81,458,357,6920960,10322,0 +24005,MojeDnoToWaszSzczyt,573,364,699697558,10019,0 +24006,No.+3,478,654,698585370,9201,0 +24007,Kentin+ufam+Tobie,358,443,699783765,10495,0 +24008,001+Montuje+Plisy,541,355,699491076,10001,0 +24009,psycha+sitting,456,648,699736927,10178,0 +24010,A-016,392,393,8419570,10168,5 +24011,Kentin+ufam+Tobie,351,445,699783765,10495,0 +24012,MRF+003,629,584,118121,9109,0 +24013,Kentin+ufam+Tobie,355,448,699783765,10000,0 +24014,Kentin+ufam+Tobie,357,446,699783765,10490,0 +24015,Yogi,545,649,2808172,10019,0 +24016,148...ksi%C4%85%C5%BC%C4%99+plemienia,452,359,6920960,8324,0 +24017,Wioska+barbarzy%C5%84ska,566,640,699828685,9028,0 +24018,A-011,392,397,8419570,10168,0 +24020,%230028+barbarzy%C5%84ska,471,347,1238300,10178,0 +24021,SSJ+068,518,653,699364813,9427,0 +24022,EMERYTOWANY+KUZYN,425,635,848913998,7986,0 +24023,%230022+barbarzy%C5%84ska,470,354,1238300,10178,0 +24024,0479,519,650,698659980,10083,0 +24025,310,648,546,7038651,9704,0 +24026,Maszlug+kolonia+IV,366,433,848977649,10067,0 +24028,The+Game+Has+Only+Just+Begun,346,518,9280477,9976,0 +24029,017.+Pepe,501,651,848928624,10237,0 +24030,Kentin+ufam+Tobie,351,479,699783765,10000,0 +24031,010.+Fishing,502,650,698585370,10237,0 +24032,0460,379,598,698659980,10252,0 +24033,053,649,520,699413040,9860,0 +24034,085,642,559,849095227,9797,0 +24035,Lord+Lord+Franek+.%23216,509,348,698420691,9427,0 +24036,055,647,535,699351301,10160,0 +24037,D02..,364,574,849090130,9160,0 +24039,JawmaG+P,620,591,8815749,10019,0 +24040,jaaa,633,568,698635863,10495,0 +24041,zzz+Magiorkowy+kleks,618,599,699778867,11824,0 +24042,Valhalla+A6,373,581,849097002,5266,0 +24043,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,653,699828442,9825,0 +24045,R%C4%99cznik+do+zmiany,374,410,699697558,9948,0 +24046,North+Barba+030,425,369,699796330,10454,0 +24047,RTS+15,587,624,848995242,9833,0 +24048,Oww+Konfederacja,608,389,848915730,7060,0 +24049,B19,647,459,849093742,10019,0 +24050,Pobozowisko,382,591,699513260,7981,0 +24051,003+cho1sen,570,635,699828685,9976,0 +24052,045...Centrum+zach,457,353,6920960,10262,0 +24053,BEZDZIETNY+KAWALER,419,625,848913998,4236,0 +24054,-+053+-+RR,590,622,849018239,10000,0 +24055,makelovenotwar6,384,466,698807570,9127,0 +24056,A0069,346,490,8841266,10252,0 +24057,Wioska+barbarzy%C5%84ska,552,358,699072129,10561,0 +24058,jaaa,635,570,698635863,10495,0 +24059,038...CENTRUM,458,353,6920960,10336,0 +24060,Piek%C5%82o+to+inni,582,367,848956765,10495,0 +24061,Oww+Konfederacja,607,394,848915730,6806,0 +24062,Posterunek+004,399,616,848912772,10178,0 +24063,Wioska+barbarzy%C5%84ska,552,354,699072129,10226,0 +24064,psycha+sitting,449,648,699736927,10311,0 +24065,040,643,556,849095227,9740,0 +24066,MELISKA,358,454,699794765,2120,0 +24067,.achim.,519,388,6936607,10080,0 +24068,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,649,699828442,9875,0 +24069,Pobozowisko,392,610,699513260,9448,0 +24070,011,481,348,698739350,10237,0 +24071,0006,588,372,699485250,10211,8 +24072,R%C4%99cznik+do+zmiany,373,418,699697558,8953,0 +24073,Denger+19,368,584,698353083,9643,0 +24074,Sangeda,539,429,848986287,7480,0 +24075,A002,588,374,699485250,10168,0 +24076,Wioska+barbarzy%C5%84ska,646,460,699524891,9044,0 +24077,2.6,403,378,699402816,9899,0 +24079,M181_050,367,425,393668,10229,0 +24080,Skazany+Na+Instynkt,370,580,8004076,9880,0 +24081,I%23037,596,378,2065730,10019,0 +24082,007-Dzieci,432,630,6910361,4502,0 +24083,%230010+barbarzy%C5%84ska,464,351,1238300,10178,0 +24084,Oww+Konfederacja,608,391,848915730,10140,0 +24085,0063+9+Rak%C3%B3wqqqqqqqqqqqqqqqqqqqq,445,434,3909522,10418,0 +24086,0480,516,649,698659980,10019,0 +24087,-+250+-+RR,594,617,849018239,10000,0 +24088,061+%7C,647,551,8000875,9747,0 +24089,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,367,568,8004076,8215,0 +24090,A002,405,620,848912772,9933,0 +24091,Lord+Lord+Franek+.%23228,515,346,698420691,8472,0 +24092,044%7C%7C+Lacerta,502,653,849035525,10362,0 +24093,054,606,387,849010255,4000,0 +24094,014...P%C5%81D,455,356,6920960,10221,0 +24095,-+007+-+RR,587,622,849018239,10000,8 +24097,%230026+barbarzy%C5%84ska,471,350,1238300,10178,0 +24098,Jestem+Poza+Kontrol%C4%85,352,541,8004076,8038,0 +24099,%2ALulu,574,638,699443920,9761,0 +24101,Lord+Lord+Franek+.%23111,505,345,698420691,9962,0 +24102,EMERYTOWANY+KUZYN,434,642,848913998,7094,0 +24103,Dunharrow,500,504,849091897,7950,0 +24104,Wioska+barbarzy%C5%84ska,549,354,699072129,10221,0 +24105,058,403,506,699851427,10129,0 +24106,Wioska+004,390,390,8419570,10168,0 +24108,Brat447,347,505,699262350,10057,0 +24109,027,652,538,699351301,10149,0 +24110,The+Game+Has+Only+Just+Begun,347,528,9280477,9200,0 +24111,Pobozowisko,388,599,699513260,7743,0 +24112,011+%7C+PALESTINA,635,460,9228039,9544,0 +24113,Wioska+barbarzy%C5%84ska,363,429,393668,10362,0 +24114,028,437,639,698143931,9017,9 +24115,0481,540,649,698659980,10495,0 +24116,K34+-+%5B032%5D+Before+Land,445,356,699088769,10259,0 +24117,I%23036,605,392,2065730,9797,0 +24118,So%C5%82tys+Wsi+Enaor1990,407,382,849027025,9372,0 +24119,Wioska+Jaro2,370,419,8967440,8401,0 +24120,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,548,644,7589468,8825,0 +24121,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,654,699828442,9825,0 +24122,psycha+sitting,459,650,699736927,10178,0 +24123,Wioska+barbarzy%C5%84ska,648,458,699524891,9724,0 +24124,off+100+%25,362,571,849012521,7714,0 +24125,Lord+Lord+Franek+.%23002,528,346,698420691,10068,0 +24126,Qzuri,493,354,699883079,10311,0 +24127,Kentin+ufam+Tobie,357,451,699783765,10559,0 +24128,Winter+is+coming,505,585,699364813,10311,0 +24129,Avanti%21,344,507,698625834,9950,0 +24130,0011,581,634,698659980,10252,4 +24131,%23.37+Wioska+barbarzy%C5%84ska,651,480,849054582,2930,0 +24132,Kentin+ufam+Tobie,356,451,699783765,10559,0 +24133,jan+Dzik+I,643,435,879782,9101,0 +24134,deff+100+%25,357,560,849012521,6850,0 +24135,D+007,651,497,8078914,10236,0 +24136,0020,591,381,699485250,10211,0 +24137,Odmienny+Stan+%C5%9Awiadomo%C5%9Bci,366,570,8004076,8589,0 +24139,0063+b14+Wis%C5%82a,455,432,3909522,10083,0 +24140,-002-,380,590,699097885,9241,0 +24141,009,650,530,699351301,10818,0 +24142,W+04,644,451,699524891,9721,5 +24143,Ave+Why%21,475,650,699121671,9809,0 +24144,cc+spoko+pobawimy+si%C4%99+do+jutra,408,375,3909522,9045,0 +24145,Podzi%C4%99kowa%C5%82+7,417,375,699796330,9622,0 +24146,053.+Caprae,647,467,849091866,9355,0 +24147,Wioska+Bochun10,345,479,7449254,10311,0 +24148,040,624,405,9148043,9351,0 +24150,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,652,699828442,9805,0 +24151,Wioska+barbarzy%C5%84ska,354,459,6258092,4863,0 +24152,005,374,420,848945529,6583,0 +24153,078,620,603,698786826,10495,0 +24154,0011,611,610,6417987,8936,0 +24155,hed,610,611,6417987,4816,4 +24156,c+011+Oaza+7,411,378,3909522,10160,0 +24157,Myk+i+do+kieszonki,361,562,9319058,9799,0 +24158,047,654,487,2135129,9137,0 +24159,R%C4%99cznik+do+zmiany,376,406,699697558,10160,0 +24160,Obrze%C5%BCa+04,544,649,848915531,11550,0 +24161,R%C4%99cznik+do+zmiany,372,412,699697558,9995,0 +24162,4AA,357,435,7765098,9017,0 +24163,12+Kuba+3+zero+zero+7,464,649,848883684,9350,0 +24164,North+Barba+023,422,368,699796330,9761,0 +24165,Jestem+Poza+Kontrol%C4%85,353,542,8004076,7476,0 +24166,Maszlug+kolonia+X,368,423,848977649,8813,0 +24167,ladyanima,511,572,699703642,9083,0 +24168,002,643,561,849095963,10660,0 +24169,A0063,346,495,8841266,10252,0 +24170,Vasteroy135,362,431,393668,5808,8 +24171,%23043.521%7C495,640,446,556154,9735,0 +24172,A015,581,370,699485250,10211,0 +24173,x010,358,565,9264752,10495,0 +24174,M005,650,503,848899726,6638,0 +24175,A005,585,373,699485250,10168,0 +24176,sony911,579,634,1415009,10220,0 +24177,2.8,393,383,8419570,10503,0 +24178,Piek%C5%82o+to+inni,575,371,848956765,10495,0 +24179,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,647,699828442,9899,0 +24180,024,465,656,698650301,9990,0 +24181,011,652,531,699351301,10141,0 +24182,109,584,382,849064752,10311,0 +24183,116+Murayama,648,467,7092442,4995,0 +24184,024+Piwo+moje+paliwo,396,617,8268010,5791,0 +24185,300,646,542,7038651,9643,0 +24186,Swarz%C4%99dz,644,560,849095963,11713,0 +24187,Piek%C5%82o+to+inni,578,368,848956765,9433,0 +24188,%2A%2A%2A002%2A%2A%2A,503,347,8843774,6895,0 +24189,119,626,416,7085502,7943,0 +24190,Szlachcic,422,372,698388578,10237,0 +24191,K34+-+%5B144%5D+Before+Land,451,355,699088769,9783,1 +24192,027,640,557,849095227,9761,0 +24193,R%C4%99cznik+do+zmiany,372,410,699697558,10160,0 +24194,P025+Maple+Kush,655,519,8096537,9761,7 +24195,MojeDnoToWaszSzczyt,567,364,699697558,10495,0 +24196,013,428,632,699783765,8230,0 +24197,Punta+Cana+3,456,646,699736927,10311,0 +24198,Pobozowisko,387,601,699513260,7275,0 +24199,Darmowe+przeprowadzki,467,647,848935389,9553,0 +24200,006,376,405,848945529,3393,0 +24201,0079+wojs%C5%82awice,446,441,3909522,10054,0 +24202,a+mo%C5%BCe+off+%3F+%3A%29,642,554,698768565,9356,0 +24203,002+cesarok,569,634,699828685,9976,4 +24204,%5B021%5D,449,646,9094538,1969,0 +24205,-+243+-+RR,595,621,849018239,10000,0 +24206,Jaaa,606,582,698635863,10478,0 +24207,BEZDZIETNY+KAWALER,415,624,848913998,5042,0 +24208,%7CA%7C+Dimstair,481,650,698147372,10495,0 +24209,A-032,394,389,8419570,10168,0 +24210,Wioska+barbarzy%C5%84ska,511,351,9140898,2349,0 +24211,2.1,386,393,8419570,10168,0 +24212,Wioska+barbarzy%C5%84ska,364,424,393668,6519,0 +24213,DajankA+10,357,558,849012843,10160,0 +24214,074.+Mursa,624,432,849091866,10252,0 +24215,0024+MzM,624,593,698416970,9258,0 +24216,jaaa,640,569,698635863,10289,0 +24217,0482,518,649,698659980,9761,0 +24218,kathare,557,642,873575,9914,0 +24219,S_003,509,656,849100262,11965,0 +24220,035+Vattweir,623,587,699272880,10058,0 +24221,A-017,390,398,8419570,10168,7 +24223,Piek%C5%82o+to+inni,568,361,848956765,10495,0 +24224,%7CA%7C+Darkdale,479,649,698807570,10495,0 +24225,kathare,550,644,873575,10218,0 +24226,VN+Artemisia,464,377,699883079,9639,0 +24227,R%C4%99cznik+do+zmiany,372,414,699697558,10160,0 +24228,Zorg,371,588,8607734,6826,0 +24229,B.050,654,509,9188016,10000,0 +24230,0001.+HMS+Prince+Royal+%281663%29,460,652,699121671,9809,0 +24231,Sony+911,584,627,1415009,10205,0 +24232,028,655,497,7085502,10365,0 +24233,A0038,384,469,8841266,10252,0 +24234,Skazany+Na+Instynkt,367,578,8004076,9816,0 +24235,041,445,637,849084985,10401,0 +24236,jaaa,637,575,698635863,10351,0 +24237,A+006,609,387,6384450,6356,0 +24238,025,615,399,699298370,8719,0 +24239,Jednak+wol%C4%99+gofry,471,650,699725436,10559,0 +24240,Wioska+Bochun10,347,480,7449254,10311,0 +24241,33k%24+Grvvyq,639,555,699676005,10490,0 +24242,Jednak+wol%C4%99+gofry,438,641,699736927,7946,0 +24243,Pobozowisko,391,610,699513260,10092,0 +24244,008.,486,651,849034882,10559,0 +24245,The+Game+Has+Only+Just+Begun,351,537,9280477,10319,0 +24246,sony911,580,633,1415009,10228,0 +24247,Kentin+ufam+Tobie,349,474,699783765,10000,0 +24248,K34+-+%5B050%5D+Before+Land,442,356,699088769,9704,0 +24249,jaaa,630,581,698635863,10495,0 +24250,SSJ+059,511,654,699054373,9555,0 +24251,Darmowe+przeprowadzki,467,646,848935389,9656,0 +24252,Lord+Arsey+KING,583,589,848956513,10285,0 +24253,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,653,699828442,9806,0 +24254,%230021+barbarzy%C5%84ska,470,353,1238300,10178,0 +24255,Dajanka+14,358,553,849012843,6910,0 +24256,B.003,650,507,9188016,10000,2 +24257,Pobozowisko,384,604,699513260,10960,0 +24258,%2A4626%2A+Dzielnica+cesarska,640,435,7973893,10287,0 +24259,Kentin+ufam+Tobie,356,446,699783765,7682,0 +24260,Jednak+wol%C4%99+gofry,444,644,699736927,10130,0 +24261,Wioska+barbarzy%C5%84ska,555,358,699072129,10218,0 +24262,022+181,349,510,698807570,9015,6 +24263,Piwna+17,626,428,699812007,7759,0 +24264,Nahrawan,435,638,849089459,9719,0 +24265,Jednak+wol%C4%99+gofry,431,634,699736927,9899,0 +24266,Pobozowisko,384,600,699513260,6110,0 +24267,042,649,550,698999105,10311,0 +24268,Owp+Konfederacja,600,382,848915730,5977,0 +24269,Og%C3%B3rkowy+baron,405,396,356642,9835,0 +24270,kathare,552,641,873575,10224,0 +24271,046.,407,623,2665207,8098,0 +24272,West,624,406,1086351,6183,0 +24274,CSA,511,344,7651093,8736,0 +24275,%2ALeser,574,633,699443920,9761,0 +24276,0026,417,370,848913037,7802,0 +24277,011%7C%7C+Aquarius,481,645,849035525,10019,0 +24278,037+%7C+PALESTINA,643,439,9228039,5359,0 +24279,Alicization+2,455,649,699849210,9985,8 +24280,Jestem+Poza+Kontrol%C4%85,349,538,8004076,9325,0 +24281,%230003+barbarzy%C5%84ska,467,351,1238300,10178,0 +24282,Jaaa,622,592,698635863,10269,0 +24283,025+Legio+I+Claudia+Pia+Fidelis,651,488,699878150,5504,0 +24284,kathare,556,640,873575,10336,8 +24286,%2A4621%2A+Pierwszy+gol,643,444,7973893,10287,0 +24287,MojeDnoToWaszSzczyt,568,364,699697558,10495,0 +24288,Piek%C5%82o+to+inni,576,368,848956765,9764,0 +24289,The+Game+Has+Only+Just+Begun,347,533,9280477,9976,6 +24290,Z+barba+010,406,576,225023,10495,0 +24291,Lord+Lord+Franek+.%23013,520,345,698420691,9960,7 +24292,0483,538,650,698659980,10362,0 +24293,Happy+New+Year+2k23,595,375,7462660,8975,0 +24294,Mniejsze+z%C5%82o+0029,345,498,699794765,8128,0 +24295,Wioska,351,454,6258092,7821,0 +24296,001+181,356,502,698807570,10495,0 +24297,18.+A+kit+go+wie,508,656,849092769,11839,0 +24298,Pobozowisko,393,608,699513260,10952,0 +24299,Wioska+barbarzy%C5%84ska,629,417,699429153,8961,0 +24300,Jestem+Poza+Kontrol%C4%85,350,545,8004076,8962,0 +24301,K34+-+%5B053%5D+Before+Land,441,357,699088769,7464,0 +24302,Tomall78,635,427,699524891,9654,0 +24303,Lord+Lord+Franek+.%23010,535,348,698420691,10244,0 +24304,BAC%C3%93WKA+%7C022%7C,631,418,7394371,7938,0 +24305,061,648,533,699351301,10160,0 +24306,029,478,351,698739350,10237,0 +24307,0061,418,371,848913037,9993,0 +24308,A+002,610,392,6384450,10362,0 +24309,026,652,539,699351301,12154,0 +24310,Myk+i+do+kieszonki,355,561,9319058,9799,3 +24311,002+181,355,500,698807570,10476,0 +24312,Wioska+barbarzy%C5%84ska,364,426,393668,10118,0 +24313,049.+Ardwen,637,425,8337151,10595,0 +24314,Avanti%21,345,516,698625834,9950,0 +24315,The+Game+Has+Only+Just+Begun,349,511,9280477,9976,0 +24316,0077,532,647,698659980,10083,0 +24317,Lord+Lord+Franek+.%23021,523,344,698420691,9957,0 +24318,035,648,523,699351301,6589,0 +24319,008,518,346,699072129,10495,0 +24320,jaaa,637,576,698635863,10484,0 +24321,Monetio,445,354,699308637,10495,9 +24322,Ave+Why%21,464,644,698585370,9414,0 +24323,K34+-+%5B130%5D+Before+Land,440,355,699088769,10259,0 +24324,033,353,471,6258092,10362,0 +24325,Oww+Konfederacja,611,392,848915730,5179,0 +24326,Belweder,374,593,849095992,11550,0 +24327,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,651,7589468,8822,0 +24328,psycha+sitting,459,643,699736927,10311,0 +24329,7.62+mm,380,400,848886056,2697,0 +24330,093,415,374,698364331,6022,0 +24331,Pobozowisko,386,608,699513260,5694,0 +24332,%2AINTERTWINED%2A,506,649,698704189,9711,0 +24333,%23044.522%7C497,641,448,556154,9535,0 +24334,M003,651,507,848899726,10000,0 +24335,M181_049,363,428,393668,9955,0 +24336,KUZYN+NA+MALEDIWACH,419,630,848913998,9173,9 +24337,Sony911,585,631,1415009,10292,0 +24338,Avanti%21,350,516,698625834,9950,0 +24339,009+toples145,560,641,699828685,9976,0 +24341,070,652,530,699351301,6342,0 +24342,Wioska+Kaffik+VI,635,580,6136757,7524,0 +24343,019,647,524,699351301,10160,0 +24344,Pobozowisko,389,600,699513260,6141,0 +24345,MojeDnoToWaszSzczyt,564,364,699697558,10495,4 +24347,Lord+Lord+Franek+.%23022,529,346,698420691,9957,0 +24348,A016,580,370,699485250,10211,0 +24349,0033,416,371,848913037,4948,0 +24350,%7E%7E050%7E%7E,607,612,7829201,9597,0 +24351,Nowa+27,638,567,698702991,9753,0 +24352,North+glinianka,422,364,699796330,9887,2 +24354,Bizy+5,505,657,8954402,10075,0 +24355,Piek%C5%82o+to+inni,566,357,848956765,10160,0 +24356,Wioska+Pabols+1,382,396,8967440,5707,0 +24357,Taki+Pan,504,345,698739350,9408,0 +24358,137,473,351,7271812,3117,0 +24359,2.2,388,392,698364331,2737,0 +24360,M181_018,364,430,393668,9902,0 +24361,Denger+22,374,585,698353083,9657,0 +24362,S_008,506,657,849100262,11741,0 +24363,Wioska+barbarzy%C5%84ska,645,453,699524891,10104,0 +24365,Wioska+Kaffik+IV,633,581,6136757,7432,0 +24366,R%C4%99cznik+do+zmiany,371,418,699697558,7511,0 +24367,off+100+%25,355,562,849012521,10254,0 +24368,Kentin+ufam+Tobie,356,458,699783765,10000,0 +24369,Kentin+ufam+Tobie,353,453,699783765,10495,0 +24370,011.+Erwin+Domel,507,650,848928624,10237,0 +24371,019,474,653,699238479,10019,0 +24372,Piek%C5%82o+to+inni,576,370,848956765,10495,0 +24373,Sony+911,583,631,1415009,10319,0 +24374,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,542,651,7589468,8836,0 +24375,Lecymy+DUR,428,361,6169408,7766,0 +24376,021,467,650,698650301,9486,0 +24377,Szlachcic,348,468,6258092,10019,0 +24378,Lord+Lord+Franek+.%23179,516,349,698420691,10152,0 +24379,x006,359,566,9264752,10495,0 +24380,Wioska+barbarzy%C5%84ska,370,581,0,2874,0 +24381,historia+blisko+4,614,604,699778867,11824,0 +24383,013,653,534,699351301,9556,0 +24384,The+Game+Has+Only+Just+Begun,346,508,9280477,9976,1 +24385,%7CB%7C+Avlefirr,486,655,698147372,10495,0 +24386,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,654,699828442,9825,0 +24387,%5B319%5D+Chor%C4%85giewka+na+wietrze,591,437,848985692,10395,0 +24388,043,570,639,699828685,9976,0 +24389,zzzGranica+Bledu+06,607,611,699778867,9335,0 +24391,B.007,652,514,9188016,10000,0 +24392,008,645,561,849095963,7478,0 +24393,Szlachcic%3ATaran,617,396,698241117,5095,0 +24394,Wioska+barbarzy%C5%84ska,380,401,848886056,9288,0 +24395,B03,645,439,849093742,10160,0 +24397,Epitaph,639,564,848926293,9562,0 +24398,SSJ+055,508,652,699054373,9761,0 +24399,039,446,640,849084985,10178,0 +24400,ave+why%21,445,642,698143931,9122,0 +24401,Pobozowisko,383,609,699513260,11321,0 +24402,002%7C%7C+Taurus,487,651,849035525,10019,0 +24403,BBB,561,415,1006847,8713,0 +24404,019,563,640,699828685,9976,0 +24405,Jestem+Poza+Kontrol%C4%85,354,543,8004076,6953,0 +24406,Wioska+2,589,629,8627359,9274,0 +24407,006+-+Mroczna+Osada,630,418,849035905,10114,0 +24408,R%C4%99cznik+do+zmiany,373,408,699697558,10019,0 +24409,I%23024,598,378,2065730,6503,0 +24410,BEZDZIETNY+KAWALER,416,630,848913998,4425,0 +24411,R%C4%99cznik+do+zmiany,374,406,699697558,10019,0 +24412,Jednak+wol%C4%99+gofry,440,645,699736927,9670,0 +24413,005,520,465,848967710,10252,0 +24414,EMERYTOWANY+KUZYN,429,640,848913998,10787,0 +24415,The+Game+Has+Only+Just+Begun,349,534,9280477,9976,0 +24416,Pobozowisko,407,616,699513260,8276,0 +24417,Avanti%21,350,511,698625834,9950,0 +24418,020,427,632,699783765,8680,0 +24419,SSJ+052,511,651,699054373,9517,0 +24421,The+Game+Has+Only+Just+Begun,351,527,9280477,9976,0 +24422,ladyanima,518,571,699703642,9151,0 +24423,The+sweetest+ass+in+the+world,375,591,849095992,10495,2 +24424,psycha+sitting,452,645,699736927,10311,0 +24425,Myk+i+do+kieszonki,360,563,9319058,9799,0 +24426,BAC%C3%93WKA+%7C003%7C,631,416,7394371,10795,3 +24427,Wioska+barbarzy%C5%84ska,368,572,849012521,4117,0 +24428,Wioska+Kaffik+I,633,579,6136757,6964,0 +24429,B.029,650,518,9188016,10000,0 +24430,The+Game+Has+Only+Just+Begun,350,513,9280477,10178,3 +24431,244...SOUTH,474,348,6920960,6764,0 +24432,North+Barba+003,421,366,699796330,9889,0 +24433,Ave+Why%21,459,641,698585370,9212,0 +24434,B02,647,452,849093742,10252,0 +24435,002,485,342,698739350,10237,0 +24436,Pobozowisko,387,605,699513260,4585,0 +24437,071,648,553,849095227,9747,0 +24438,jaaa,633,583,698635863,10495,0 +24439,Koszalin,384,554,698769107,9835,0 +24440,040...CENTRUM,459,354,6920960,10247,0 +24441,018%7C%7C+Camelopardalis,474,650,849035525,10019,0 +24442,Jehu_Kingdom_13,641,433,8785314,8881,0 +24443,Lord+Lord+Franek+.%23204,501,349,698420691,9775,0 +24444,037.1+mys,553,648,699828685,9303,0 +24445,073...barbarka,459,350,6920960,10223,0 +24446,Wioska+barbarzy%C5%84ska,492,343,698739350,8021,0 +24447,017...CENTR,456,352,6920960,10495,0 +24448,Kentin+ufam+Tobie,351,478,699783765,10000,0 +24449,M181_048,362,435,393668,9805,0 +24450,Terrestre,347,462,6258092,10083,0 +24451,Wioska+barbarzy%C5%84ska,645,456,699524891,9337,0 +24452,000000VN+Zenon+Zogriatis,466,369,699883079,9626,0 +24453,Taka006,474,652,848999671,9138,0 +24454,M008,653,504,848899726,4839,0 +24455,%7E005.,502,608,7139820,10495,0 +24456,011,382,401,849059457,5460,0 +24457,Raz+na+wozie%2Craz+w+nawozie,578,629,848995242,10495,0 +24458,034,570,637,699828685,9976,0 +24459,Kentin+ufam+Tobie,356,449,699783765,7517,0 +24460,A030,589,378,699485250,10168,0 +24461,kathare,554,641,873575,9831,0 +24462,037,450,641,849084985,10216,0 +24463,013...CENTR,460,351,6920960,10481,0 +24465,-033-,378,590,699097885,7384,0 +24466,Mniejsze+z%C5%82o+0044,344,497,699794765,6483,0 +24467,Piek%C5%82o+to+inni,580,368,848956765,9070,0 +24469,0008,476,651,6180190,10637,0 +24470,Quzynafide,408,625,848913998,5929,0 +24471,MojeSzczytToTw%C3%B3jDno,506,345,828637,10495,0 +24472,Kentin+ufam+Tobie,350,475,699783765,10000,0 +24473,Jestem+Poza+Kontrol%C4%85,349,541,8004076,8376,0 +24474,Flinii,635,421,848883237,8992,0 +24475,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,651,699828442,9817,0 +24476,Wioska+barbarzy%C5%84ska,347,468,6258092,9325,0 +24477,013%7C%7C+Cepheus,490,653,849035525,10019,0 +24478,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,653,698807570,10252,0 +24479,Mockingbird,374,592,849095992,10495,0 +24480,026,655,508,849006412,9283,0 +24482,MojeDnoToWaszSzczyt,575,363,699697558,10019,0 +24483,Carsultyal.,485,555,698704189,9711,0 +24484,jaaa,641,571,698635863,10636,0 +24485,B.051,657,506,9188016,6040,0 +24486,Kentin+ufam+Tobie,350,472,699783765,10064,0 +24487,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,654,699828442,9805,0 +24488,Ambroambro,614,603,699778867,12154,0 +24489,Ulu-mulu,412,622,699697558,4584,0 +24490,017.,401,623,2665207,9835,0 +24491,North+Barba+001,421,365,699796330,9887,0 +24492,088...bar,453,351,6920960,10459,0 +24493,Wioska+barbarzy%C5%84ska,491,347,699244334,2929,0 +24494,Avanti%21,349,506,698625834,9809,0 +24495,Taki+Pan,507,344,698739350,7282,0 +24496,a+mo%C5%BCe+off+%3F+%3A%29,627,584,698768565,9563,0 +24497,ave+why%21,436,636,698143931,7096,0 +24498,Lord+Lord+Franek+.%23023,526,347,698420691,9962,0 +24499,%7E%7E055%7E%7E,605,614,7829201,9505,0 +24500,0057,420,372,848913037,9993,0 +24501,Myk+i+do+kieszonki,357,567,9319058,9799,0 +24502,BUNKIER+001,635,428,7588382,11215,0 +24503,Wioska+barbarzy%C5%84ska,614,394,698241117,3706,0 +24504,A004,586,373,699485250,10168,0 +24505,EMERYTOWANY+KUZYN,424,634,848913998,5133,0 +24506,Magik69+2,609,605,699778867,10373,0 +24507,kathare,549,644,873575,9664,0 +24508,079+barbarzy%C5%84ska,640,428,9238175,8162,0 +24509,Wioska+Bochun10,348,483,7449254,10495,0 +24510,psycha+sitting,448,643,699736927,10311,0 +24511,%C5%BBUBRAWKA+A002,603,615,33900,10272,0 +24512,-+230+-+RR,591,621,849018239,10000,0 +24513,Owp+Konfederacja,601,382,848915730,7101,0 +24514,8AA,358,437,7765098,10178,0 +24515,B.052,654,517,9188016,10000,0 +24516,R%C4%99cznik+do+zmiany,370,416,699697558,9858,0 +24517,12.+Wioska+12,362,564,849091769,7035,0 +24518,kathare,554,645,873575,9913,0 +24519,Mehehehe,518,651,699494488,10487,0 +24520,CSA,512,347,7651093,9325,0 +24521,003,524,345,699072129,10495,0 +24522,Avanti%21,346,502,698625834,9950,0 +24524,%2AINTERTWINED%2A,515,650,698704189,9711,0 +24525,x002,362,572,9264752,10495,9 +24526,a+mo%C5%BCe+off+%3F+%3A%29,641,553,698768565,9720,0 +24527,022,490,349,698739350,10237,0 +24528,Macarnia,432,634,849089459,9654,0 +24529,Wiocha+5,427,360,849096544,10595,0 +24530,STOP+ZWIAD+-+GET+OFF,496,658,698585370,6100,0 +24531,Avanti%21,345,503,698625834,9950,0 +24532,Yogi,491,530,2808172,9967,0 +24533,Wioska+barbarzy%C5%84ska,352,456,6258092,8771,0 +24534,The+Game+Has+Only+Just+Begun,348,522,9280477,9976,0 +24535,047.,481,655,849034882,10495,0 +24536,0143,530,651,698659980,10019,0 +24537,070...barbarka+centr,457,351,6920960,10226,0 +24538,Lord+Lord+Franek+.%23047,534,352,698420691,9976,0 +24539,Pobozowisko,384,602,699513260,7358,0 +24540,053+Sligo,625,587,699272880,8612,0 +24541,013.,647,468,849094609,10067,0 +24542,Wioska+barbarzy%C5%84ska,648,452,699524891,9726,0 +24543,002.+Dla+flag,354,438,698630507,9888,0 +24544,D%C4%85browa+0016,377,590,849096972,8140,0 +24545,PZ038,656,522,8096537,9744,0 +24546,Wioska+barbarzy%C5%84ska+023,499,348,6343784,9594,0 +24547,020Ferdek,390,611,698620694,9716,0 +24548,Jaaa,628,588,698635863,10261,0 +24549,Wioska+barbarzy%C5%84ska,497,345,699244334,2715,0 +24550,072,646,539,699351301,10160,0 +24551,The+Game+Has+Only+Just+Begun,348,532,9280477,10117,0 +24552,Oww+Konfederacja+%2B,607,390,848915730,9938,0 +24553,014.,488,653,849034882,10636,0 +24554,Wioska+barbarzy%C5%84ska,354,455,6258092,9474,0 +24555,Piek%C5%82o+to+inni,569,360,848956765,10160,0 +24556,002,615,545,8428196,9894,0 +24557,037,502,652,8954402,10495,0 +24558,Wioska+barbarzy%C5%84ska,434,357,699308637,9285,0 +24559,majonespzn,606,611,6417987,10478,0 +24560,Wioska+Bochun10,346,479,7449254,10311,4 +24561,%23.10+Wioska+barbarzy%C5%84ska,650,473,849054582,10019,0 +24562,Kanada,372,421,1746216,2743,0 +24563,062+xyz,638,431,9238175,10375,0 +24564,017,379,399,849059457,2314,0 +24565,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,656,699828442,9806,0 +24566,kathare,553,642,873575,10216,0 +24567,Lecymy+DUR,434,358,6169408,10495,0 +24568,C002..,368,582,849090130,10147,0 +24569,K06,369,579,849090130,2375,0 +24570,ave+why%21,448,642,698143931,10237,0 +24571,LadyAnimavillis,599,615,699703642,9761,0 +24572,033,641,561,849095227,9735,0 +24573,010+Wiatr,656,484,2135129,9500,0 +24574,Jednak+wol%C4%99+gofry,441,641,699736927,6874,0 +24575,BEZDZIETNY+KAWALER,420,628,848913998,5119,0 +24576,Dajanka+17,357,551,849012843,5036,0 +24577,%23.14+Wioska+barbarzy%C5%84ska,656,481,849054582,10019,0 +24578,Wioska+Kaffiks+XIII,631,585,6136757,5970,0 +24579,Wioska+barbarzy%C5%84ska,475,345,699433558,4688,0 +24580,C003,520,351,699208929,9970,0 +24581,003+Krotu,656,490,2135129,9553,0 +24582,15.+%C5%81o+Ci%C4%99+Krynca,512,654,849092769,10019,0 +24583,043,648,551,698999105,10311,0 +24584,016,486,347,698739350,10273,0 +24585,A006,613,457,699722599,10495,0 +24586,014+M,654,526,699351301,10971,9 +24587,Jednak+wol%C4%99+gofry,438,642,699736927,9323,0 +24588,K34+x001,446,383,698364331,10495,0 +24589,Chekku+-+meito,345,527,9280477,10319,0 +24590,North+1,420,365,699796330,10306,0 +24591,0274,544,650,698659980,10083,0 +24592,027,652,505,849006412,6520,0 +24593,Nowa+28,639,568,698702991,9398,0 +24595,001.+Dla+Flag,354,439,698630507,10027,0 +24596,c+Strzelce+Opolskie,395,386,3909522,8360,0 +24597,aaaaaaaaa,451,357,699191464,10495,0 +24598,048-+Mroczna+Osada,628,410,849035905,3670,0 +24599,Kentin+ufam+Tobie,354,453,699783765,10495,0 +24600,A0198,342,490,8841266,10252,0 +24601,Sony+911,586,630,1415009,10268,0 +24602,%5B05%5D+Huelva,354,457,6258092,9263,0 +24603,jaaa,634,570,698635863,10484,0 +24604,%5B0022%5D+Rafalek,426,409,8630972,10495,0 +24605,Jednak+wol%C4%99+gofry,436,639,699736927,10068,3 +24606,Dajanka+15,351,553,849012843,5636,0 +24607,A0072,347,486,8841266,10252,0 +24608,Wioska+barbarzy%C5%84ska,532,353,1990750,10068,0 +24609,03.+Reina+R,482,656,849100262,10336,0 +24610,kathare,547,642,873575,10164,0 +24611,c+Patole,397,384,3909522,8301,0 +24612,I%23009,599,383,2065730,9797,0 +24613,068,655,523,699351301,9410,0 +24614,810,651,542,7038651,9117,0 +24615,The+Game+Has+Only+Just+Begun,347,524,9280477,9976,0 +24616,Wioska+barbarzy%C5%84ska,598,616,699796630,2424,0 +24617,psycha+sitting,459,651,699736927,10311,0 +24618,W+08,647,458,699524891,9752,0 +24619,024+-+Terrassa,644,440,698342159,10019,0 +24620,Twierdza+8,653,464,848935020,5243,0 +24621,Darma+dla+zawodnika,511,656,699494488,10481,0 +24622,A005,404,626,848912772,9835,0 +24623,EMERYTOWANY+KUZYN,429,639,848913998,8393,0 +24624,Lord+Lord+Franek+.%23217,508,347,698420691,9114,0 +24625,017.,486,653,849034882,10728,0 +24626,W+03,646,455,699524891,9608,0 +24627,Parking,372,584,8607734,10019,0 +24628,0061,626,410,699429153,9825,0 +24629,B.018,657,505,9188016,10000,0 +24630,005,651,526,699351301,11321,0 +24631,Lord+Lord+Franek+.%23024,524,347,698420691,9960,0 +24632,054+Gwalijar,623,588,699272880,9080,0 +24633,historia+blisko+2,616,601,699778867,11824,0 +24635,Pobozowisko,384,599,699513260,9428,0 +24636,Jaaa,625,595,698635863,10559,0 +24637,A001,588,373,699485250,10211,0 +24638,2.3,391,390,8419570,10168,0 +24639,cc+089d,411,375,3909522,4118,0 +24640,Pobozowisko,384,606,699513260,5331,0 +24641,C006,599,384,699761749,9755,0 +24642,004+MONETKI,657,487,7588382,8968,0 +24643,Kentin+ufam+Tobie,348,472,699783765,10002,0 +24644,.%3A107%3A.+Niangmen,505,396,848934935,9976,0 +24646,aaaaaaaaa,450,354,699191464,10495,0 +24647,Bagienko.Anker..,380,403,699713515,8620,0 +24648,Jan+dzik+V+K,636,432,879782,9631,0 +24649,000,390,610,699513260,10971,9 +24650,%230049,551,646,1536231,8724,0 +24651,0544,517,659,698659980,10019,0 +24652,Oksywie,390,389,8419570,8860,0 +24653,008,654,530,699351301,9659,0 +24654,015,565,636,699828685,9976,0 +24655,007.Oko,344,511,1830149,9797,0 +24656,068+Wioska+barbarzy%C5%84ska,541,349,699491076,10001,0 +24657,0003,418,365,848913037,9993,3 +24658,K33+x001,396,387,698364331,4423,0 +24659,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,654,699828442,10178,0 +24660,S_009,509,652,849100262,11421,0 +24661,Taki+Pan,511,343,698739350,8061,0 +24662,Nowa+26,641,570,698702991,9753,0 +24663,093.+P%C3%B3%C5%82nocna+Granica,636,419,8337151,7721,0 +24664,039%7C%7C+Ophiuchus,480,651,849035525,10019,0 +24665,Wioska+Atillaa,350,539,2819255,4043,0 +24666,off+100+%25,361,572,849012521,5535,0 +24667,Piek%C5%82o+to+inni,568,358,848956765,10160,0 +24668,077+cybil,641,428,9238175,10355,0 +24669,I%23033,596,377,2065730,7342,0 +24671,022+-+Oviedo,641,441,698342159,10019,0 +24672,K34+-+%5B131%5D+Before+Land,433,357,699088769,9924,0 +24673,Jednak+wol%C4%99+gofry,425,638,699736927,9899,0 +24674,jaaa,632,582,698635863,10495,0 +24675,002,379,407,848945529,6978,0 +24676,0141,579,631,698659980,10083,0 +24677,005+Szcz%C4%99%C5%9Bciarz,432,641,849006145,10436,0 +24678,002.,400,622,2665207,9835,0 +24679,Kentin+ufam+Tobie,355,454,699783765,10000,0 +24680,012,653,531,699351301,9100,0 +24681,BAC%C3%93WKA+%7C004%7C,629,415,7394371,12154,0 +24682,Jehu_Kingdom_50,642,436,8785314,6284,0 +24683,Kentin+ufam+Tobie,347,473,699783765,10000,0 +24684,Wioska+barbarzy%C5%84ska+Lo,381,399,8967440,3515,0 +24685,The+Game+Has+Only+Just+Begun,347,517,9280477,9976,0 +24686,Jestem+Poza+Kontrol%C4%85,349,540,8004076,9026,0 +24687,Jestem+Poza+Kontrol%C4%85,360,545,8004076,9880,0 +24688,005.,483,652,849034882,10838,0 +24689,021+-+Mroczna+Osada,633,411,849035905,11550,0 +24691,136+DaSilva2402,520,349,699491076,10001,0 +24692,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,383,598,849097937,8147,0 +24693,M004,654,507,848899726,6080,0 +24694,North+Barba+021,424,368,699796330,9977,0 +24695,Piek%C5%82o+to+inni,513,472,848956765,8991,0 +24696,Alicization+4,460,647,699849210,9717,0 +24697,s181eo15,389,449,393668,9883,0 +24698,DW7,348,448,393668,10311,0 +24699,%2A4622%2A+Stalowy+potw%C3%B3r,644,445,7973893,10287,0 +24700,Wioska+barbarzy%C5%84ska,629,414,699429153,9781,0 +24701,wMirajane,446,646,699849210,4892,0 +24702,aAa+Szlaban+1,608,608,699778867,12154,0 +24703,Wioska+barbarzy%C5%84ska,485,343,698739350,9894,0 +24704,KUZYN+FARMACEUTA,426,638,848913998,7652,0 +24705,015,462,651,698650301,9965,0 +24706,034+033,548,351,699491076,10001,0 +24707,0007,418,367,848913037,9993,0 +24709,BAC%C3%93WKA+%7C015%7C,623,409,7394371,8237,0 +24710,P017+Gigas,655,506,8096537,9393,6 +24711,P016+Heisneberg,657,509,8096537,9747,0 +24712,Wiocha+6,424,362,849096544,10595,0 +24714,Trelis,480,345,849048216,5192,0 +24715,Piek%C5%82o+to+inni,577,370,848956765,9809,0 +24716,%5B142%5D,636,568,8000875,9886,0 +24717,BUNKIER+003,640,433,7588382,6684,0 +24718,A0199,343,491,8841266,10252,0 +24719,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,652,698585370,9643,0 +24720,aaaaaaa,439,356,699191449,10495,0 +24721,0021,414,371,848913037,9993,0 +24722,SSJ+066,514,652,699054373,9761,0 +24723,Westcoast.079,386,436,848918380,10178,0 +24724,BEZDZIETNY+KAWALER,410,630,848913998,5654,0 +24725,%230025+barbarzy%C5%84ska,467,346,1238300,10178,0 +24726,psycha+sitting,452,649,699736927,9644,0 +24727,%7CA%7C+Ironminster,480,653,698147372,10495,0 +24728,Taki+Pan,507,342,698739350,7206,0 +24729,%23001+Altdorf,375,590,8607734,9922,0 +24730,Nowa+30,636,566,698702991,9835,0 +24731,Pobozowisko,391,611,699513260,10963,0 +24732,065,623,599,698786826,7569,0 +24733,MELISKA,352,462,699794765,9398,1 +24734,Podzi%C4%99kowa%C5%82+6,417,374,699796330,10495,0 +24735,Pobozowisko,387,608,699513260,10951,0 +24736,Avanti%21,346,513,698625834,9950,0 +24737,052,639,573,698999105,9885,0 +24738,035+036,547,351,699491076,10001,0 +24739,MojeDnoToWaszSzczyt,559,353,699697558,10160,0 +24740,061,629,588,698999105,9731,0 +24741,Wioska+barbarzy%C5%84ska,607,386,699351046,3439,0 +24742,008,398,382,849027025,7818,0 +24743,P010+Banuta,657,513,8096537,9747,0 +24744,Lord+Lord+Franek+.%23139,514,349,698420691,10160,0 +24745,Piek%C5%82o+to+inni,579,368,848956765,10495,8 +24746,A0233,344,484,8841266,10252,0 +24747,Wioska+barbarzy%C5%84ska,530,350,1990750,10068,0 +24748,Piek%C5%82o+to+inni,576,369,848956765,9806,0 +24749,026+VW+GajdaDawid,369,422,3108144,8639,0 +24750,%23.33+Wioska+barbarzy%C5%84ska,657,482,849054582,4559,0 +24751,056,638,574,849095227,9724,0 +24753,M181_021,360,427,393668,9738,0 +24754,Wioska+barbarzy%C5%84ska,542,652,7756002,9935,0 +24755,015,483,345,698739350,10237,0 +24756,017+nie+ma+spania+na+wyjazdach,447,648,699238479,9835,0 +24757,Kentin+ufam+Tobie,346,474,699783765,10000,0 +24758,Kentin+ufam+Tobie,348,476,699783765,10000,0 +24759,Jaaa,626,592,698635863,10266,0 +24760,Avanti%21,343,505,698625834,9950,0 +24761,MojeDnoToWaszSzczyt,558,357,699697558,10160,0 +24762,Gattacka,611,390,699298370,10470,0 +24763,A0061,344,492,8841266,10252,1 +24764,RTS+14,586,628,699567608,9592,0 +24765,%2ALipa,575,635,699443920,9761,0 +24766,14k%24+Grvvyq,637,552,699676005,10495,0 +24767,0056,621,408,699429153,9825,0 +24768,%2ALastmoon,574,639,699443920,9761,0 +24769,050.+Geneva,650,466,849091866,9366,0 +24770,068,646,556,849095227,9745,0 +24771,Taki+Pan,500,344,698739350,5905,0 +24772,Lord+Lord+Franek+.%23025,522,347,698420691,9955,0 +24773,Lord+Lord+Franek+.%23048,517,343,698420691,9960,0 +24774,0005,404,377,699402816,9899,0 +24775,kathare,555,645,873575,9830,0 +24776,MojeDnoToWaszSzczyt,570,364,699697558,10019,0 +24777,Grvvyq+121k%24,606,613,699676005,10083,0 +24778,BEZDZIETNY+KAWALER,412,625,848913998,3639,0 +24779,039,482,349,698739350,10104,0 +24780,psycha+sitting,460,643,699736927,10311,0 +24781,I%23022,598,379,2065730,9797,0 +24782,SSJ+065,517,654,699054373,9761,0 +24784,jaaa,641,557,698635863,10495,0 +24785,BEZDZIETNY+KAWALER,415,626,848913998,4838,0 +24786,Wioska+Bochun10,344,506,7449254,10544,0 +24787,%230011+barbarzy%C5%84ska,465,351,1238300,10178,0 +24788,Piek%C5%82o+to+inni,568,360,848956765,10019,0 +24789,Ulu-mulu,423,603,699697558,8028,0 +24790,016,427,638,849089459,9835,0 +24791,off+100+%25,359,570,849012521,10291,0 +24792,0484,538,651,698659980,10160,0 +24793,022+Legio+I+Maximiana,652,483,699878150,5526,0 +24794,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,497,654,698585370,9486,0 +24795,Ave+Why%21,465,652,698585370,10019,0 +24796,Kozaki+4,615,607,699778867,11550,0 +24797,%23.26+Wioska+barbarzy%C5%84ska,653,473,849054582,5028,0 +24798,009+Karta+Nie+Idzie,550,350,699491076,10001,0 +24799,BEZDZIETNY+KAWALER,416,632,848913998,5068,0 +24800,K34+-+%5B095%5D+Before+Land,442,353,699088769,9847,0 +24801,Pobozowisko,389,605,699513260,4627,0 +24802,xyz+%23010+TerrorMachine,580,363,7555180,9378,0 +24803,002+Wioska+gazela,630,466,699671454,8010,0 +24804,K34+-+%5B051%5D+Before+Land,444,358,699088769,10016,0 +24805,Lord+Lord+Franek+.%23003,534,350,698420691,10226,0 +24806,018+MONETKI,652,490,7588382,9296,0 +24807,-+246+-+RR,596,620,849018239,10000,0 +24808,RON,652,537,698768565,8260,0 +24809,Wioska+barbarzy%C5%84ska,404,463,699523631,10405,0 +24810,037,479,347,698739350,10237,0 +24811,ave+why%21,451,626,698143931,10202,0 +24812,Wiocha+3,426,361,849096544,10426,0 +24813,%2A%2AAhtala,575,625,699443920,9761,0 +24814,005.Dla+flag,355,440,698630507,8765,0 +24815,Szlachcic,405,374,698160606,10559,0 +24816,Myk+i+do+kieszonki,362,568,9319058,9799,5 +24817,jaaa,642,567,698635863,10220,0 +24818,So%C5%82tys+Twojej+Wsi,400,383,849027025,9789,0 +24819,036+035,541,354,699491076,10001,0 +24820,036+Galust2,654,499,2135129,9500,0 +24821,BEZDZIETNY+KAWALER,414,633,848913998,8787,0 +24822,A0067,344,493,8841266,10252,0 +24823,060,630,587,698999105,9980,0 +24824,jaaa,634,577,698635863,10484,0 +24825,Lord+Lord+Franek+.%23009,525,346,698420691,10232,3 +24826,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,498,655,698585370,9486,0 +24827,Brat447,367,507,699262350,10134,0 +24828,018,486,348,698739350,10237,0 +24829,800,650,542,7038651,10495,0 +24830,llllllll,624,403,699429153,9889,0 +24831,M006,655,507,848899726,5662,0 +24832,014,383,396,849059457,3930,0 +24833,Lord+Lord+Franek+.%23004,535,346,698420691,10426,0 +24834,Lecymy+DUR,435,357,6169408,10495,0 +24835,033,612,394,699298370,3784,0 +24836,Szatana,392,384,606706,8198,0 +24837,0466,379,597,699513260,4254,0 +24838,Wiocha+2,427,363,849096544,10887,0 +24839,015.,486,656,849034882,10495,0 +24840,off+100+%25,355,563,849012521,10253,0 +24841,Jamapet,633,425,699735020,9800,0 +24842,Wioska+barbarzy%C5%84ska,352,449,6258092,9279,0 +24843,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,657,699828442,9825,0 +24844,PDWB,651,450,9314079,9891,0 +24845,102,442,640,849084985,9039,0 +24846,I%23038,594,376,2065730,10160,0 +24847,Jestem+Poza+Kontrol%C4%85,347,542,8004076,8640,0 +24848,%230012+barbarzy%C5%84ska,465,350,1238300,10178,0 +24849,Z+005,487,342,6384450,9835,0 +24850,I%23001,599,380,2065730,9797,0 +24851,I%23005,600,380,2065730,9797,0 +24852,Lord+Lord+Franek+.%23049,531,351,698420691,9960,0 +24853,Taki+Pan,499,344,698739350,6193,0 +24854,006.,401,624,2665207,9835,0 +24855,c+Wioska+pp,399,383,3909522,6445,0 +24856,Wioska+Bochun10,345,480,7449254,10311,0 +24857,xxOsada+koczownik%C3%B3w,530,351,1990750,10068,8 +24858,-+223+-+RR,592,622,849018239,8434,0 +24859,41.+KaruTown,616,400,699298370,7847,0 +24860,Wioska+barbarzy%C5%84ska,382,403,848886056,3208,0 +24861,Hama,432,635,849089459,8200,0 +24862,Wioska+barbarzy%C5%84ska,551,357,699072129,10237,0 +24863,Osada+koczownik%C3%B3w,384,402,848886056,5586,2 +24864,PZ034,658,508,8096537,9750,0 +24865,Quzynafide,406,628,848913998,3080,0 +24867,R%C4%99cznik+do+zmiany,373,412,699697558,9664,0 +24868,001...CENTR_Czeczen,461,354,6920960,10495,0 +24869,Ave+Why%21,480,657,698585370,9493,0 +24870,Dyy,574,361,699485250,5687,0 +24871,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,651,699828442,9808,0 +24872,D+006,651,498,8078914,10034,0 +24873,022,641,522,699413040,9860,0 +24874,103,350,463,6258092,10019,0 +24875,A-030,385,398,8419570,10168,0 +24876,%5B162%5D,637,567,8000875,7865,0 +24877,Wioska+%28028%29,634,422,698232227,9778,0 +24878,A0227,345,495,8841266,10252,0 +24879,042.+Trapezus,637,431,849091866,10054,0 +24880,Wioska+barbarzy%C5%84ska,651,455,699524891,9198,0 +24881,Sony+911,586,633,1415009,10220,0 +24882,Wioska+barbarzy%C5%84ska,349,452,6258092,7805,0 +24883,012,568,639,699828685,9976,0 +24884,R%C4%99cznik+do+zmiany,374,411,699697558,10160,0 +24885,sony911,587,632,1415009,10287,0 +24886,005Kra%C5%84c%C3%B3wki,391,612,698620694,9825,1 +24887,Z+moralami+nie+wygrasz,504,341,849096594,1562,0 +24888,MotoMyszy+%3F,613,398,849094147,7754,0 +24889,MojeDnoToWaszSzczyt,562,359,699697558,10160,0 +24890,%230050,551,649,1536231,9397,0 +24891,002.AJaTamNieWiem,343,510,1830149,9818,0 +24892,Happy+New+Year+2k23,595,374,7462660,8040,0 +24893,004,498,657,848953066,9632,0 +24894,056,604,384,849010255,5817,0 +24895,A0056,347,496,8841266,10252,4 +24896,050KZ,484,339,849063849,7448,0 +24897,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,652,698807570,10252,0 +24898,Lecymy+DUR,431,360,6169408,10495,0 +24899,063+tete,635,422,9238175,9870,0 +24900,Wioska+barbarzy%C5%84ska,648,461,699524891,9226,0 +24901,Oww+Konfederacja,610,389,848915730,9924,0 +24902,Szlachcic,502,476,699098531,10303,0 +24903,R%C4%99cznik+do+zmiany,371,412,699697558,9568,0 +24904,Wioska+barbarzy%C5%84ska,628,408,699429153,9825,0 +24905,A001,405,619,848912772,9835,0 +24906,020,637,584,6160655,9146,0 +24907,Ave+why+%21,391,615,698620694,9305,0 +24908,Zakr%C4%99t+6,410,375,699402816,9835,0 +24909,Bizy+7,500,653,8954402,8931,0 +24911,B.005,652,509,9188016,10000,0 +24912,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,654,699828442,9806,0 +24913,K34+-+%5B106%5D+Before+Land,450,353,699088769,10259,0 +24914,Ave+Why%21,485,661,698585370,9630,0 +24915,0485,541,652,698659980,10252,0 +24916,9AA,357,439,7765098,8665,0 +24917,027+-+Pamplona,641,444,698342159,9871,0 +24918,051,444,641,849084985,9086,0 +24919,Szlachcic%2FTaran,620,396,699759128,10237,0 +24920,30k%24+Grvvyq,647,561,699676005,10495,0 +24921,K01..,366,579,849090130,10495,0 +24922,0059,419,370,848913037,9993,0 +24923,004.Ciabas,342,511,1830149,9797,0 +24924,Wioska+barbarzy%C5%84ska,454,640,699736927,5385,0 +24925,Ulu-mulu,409,623,699697558,8023,0 +24926,014+MONETKI,653,495,7588382,8634,0 +24927,106,442,641,849084985,4585,0 +24928,I%23023,596,374,2065730,8709,0 +24929,B01,648,445,849093742,10019,0 +24930,STOLYCA,649,532,699351301,11109,0 +24931,610,647,547,7038651,8606,0 +24932,Wioska+barbarzy%C5%84ska,494,343,698739350,8952,0 +24933,Sony+911,591,627,1415009,10284,0 +24934,0243,538,647,698659980,10083,0 +24935,Sparta_57,488,577,2585846,9638,0 +24936,K33+x003,390,386,698364331,2875,0 +24937,36.+KaruTown,635,416,849060446,6960,0 +24938,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,657,699828442,9808,0 +24939,The+Game+Has+Only+Just+Begun,357,522,9280477,9976,0 +24940,zzzGranica+Bledu+09,607,614,699778867,9310,0 +24941,-+048+-+RR,594,623,849018239,10000,0 +24942,017%29,541,346,849097103,4799,0 +24943,Zeta+Reticuli+S2,392,406,699323302,10997,0 +24944,MojeDnoToWaszSzczyt,567,363,699697558,10495,0 +24945,A+001,603,393,6384450,10362,0 +24946,BEZDZIETNY+KAWALER,416,634,848913998,10019,0 +24947,Wioska+barbarzy%C5%84ska,344,469,6258092,10083,0 +24948,Orze%C5%82+Wyl%C4%85dowa%C5%82,466,653,698807570,10252,0 +24949,Wioska+Bochun10,344,509,7449254,7951,0 +24950,068...felus,456,353,6920960,10220,0 +24951,2.7,397,382,698364331,3011,0 +24952,XXXX,503,364,699883079,10221,0 +24953,R%C4%99cznik+do+zmiany,372,407,699697558,8838,0 +24954,Lecymy+DUR,432,362,6169408,6807,0 +24955,Pobozowisko,384,608,699513260,10957,0 +24956,022,424,637,849089459,10236,2 +24957,Szlachcic,347,460,6258092,8547,0 +24958,0486,519,651,698659980,10019,0 +24959,Kumpel,348,519,699604515,8492,0 +24960,A0242,343,485,8841266,10252,0 +24961,BAC%C3%93WKA+%7C014%7C,627,407,7394371,10838,0 +24962,043,548,647,698659980,10015,0 +24963,Nowa+35,637,578,698702991,9824,0 +24964,Osada+001,399,614,848912772,10178,0 +24965,Lecymy+DUR,436,361,6169408,10237,0 +24966,cc+092d,410,376,3909522,8154,0 +24967,cc+pol008,400,376,3909522,5693,0 +24968,A0052,347,491,8841266,10252,0 +24969,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,382,604,849097937,9854,0 +24970,Wioska+barbarzy%C5%84ska,551,355,699072129,10226,0 +24971,Lord+Lord+Franek+.%23218,501,346,698420691,8885,0 +24972,0240,545,647,698659980,10083,0 +24973,-+231+-+RR,596,622,849018239,9623,0 +24975,7AA,358,435,7765098,10060,0 +24976,055,651,525,698999105,9507,0 +24977,A0117,348,497,8841266,10252,0 +24979,Kentin+ufam+Tobie,349,476,699783765,10000,0 +24980,ave+why%21,448,641,698143931,10311,0 +24981,Sony+911,582,632,1415009,10206,0 +24982,Potworna,540,350,570100,8106,0 +24983,Szlachcic,349,470,6258092,10019,0 +24984,037,654,529,699351301,4675,0 +24985,Jan+010+The+White+Rabbit+K,654,468,879782,9404,1 +24986,050.+Anora,638,424,8337151,10559,0 +24987,Szlachcic,407,374,698160606,10479,0 +24988,%230034,551,647,1536231,10495,0 +24989,Cannabinol,364,580,848980237,8776,0 +24990,030,653,529,699351301,4184,0 +24991,004,523,342,699072129,10495,0 +24992,Granica,370,574,8607734,10019,0 +24993,%3F003+buRoczki+LC+%3A%29,539,654,699828685,9976,0 +24994,Jehu_Kingdom_39_,644,433,8785314,9993,0 +24995,off+100+%25,357,562,849012521,10297,0 +24996,So%C5%82tys+Wsi+danio007xd,428,386,849027025,10001,0 +24997,Taki+Pan,503,342,698739350,7673,0 +24999,Maszlug+kolonia+XI,367,423,848977649,7662,0 +25000,Jestem+Poza+Kontrol%C4%85,353,549,8004076,9880,0 +25001,049,646,554,849095227,9295,0 +25002,041+OZDR,465,622,699336777,9966,0 +25003,North+Barba+002,420,364,699796330,9885,0 +25004,%23.25+Wioska+barbarzy%C5%84ska,654,474,849054582,6667,0 +25005,Wioska+barbarzy%C5%84ska,439,360,699393759,9899,0 +25006,Tomall78,634,425,699524891,10159,0 +25007,005.Kambod%C5%BCa,344,510,1830149,9824,0 +25008,A0234,341,489,8841266,10252,0 +25009,-+060+-+RR,591,622,849018239,10000,0 +25010,Ave+Why%21,473,651,698585370,10083,0 +25011,19+Angmar,453,652,699849210,4726,2 +25012,Skazany+Na+Instynkt,365,580,8004076,9394,0 +25013,000002,557,647,873575,10495,4 +25014,Jehu_Kingdom_56,635,479,8785314,4261,0 +25015,Lord+Lord+Franek+.%23026,532,351,698420691,9962,0 +25016,Klaudek9,593,374,849092309,6361,0 +25017,19.+%23%23%23,504,653,849092769,11911,0 +25018,A040,591,374,699485250,8631,0 +25019,R%C4%99cznik+do+zmiany,372,406,699697558,10019,0 +25020,A006,584,372,699485250,10168,0 +25021,018.,487,658,849034882,10838,0 +25022,BAC%C3%93WKA+%7C019%7C,633,414,7394371,8444,0 +25023,Dzikie+wsparcie,465,648,848935389,9809,0 +25024,cc+090d,411,376,3909522,6188,0 +25025,kathare,553,649,873575,8085,0 +25026,Szlachcic%2FTaran,619,399,699759128,10237,0 +25027,040+Knykie%C4%87+Dyl,569,637,699828685,9976,0 +25028,075+hallo,639,426,9238175,10359,0 +25029,Osada,505,448,699098531,9637,0 +25030,I%23006,602,379,2065730,9797,0 +25031,Mniejsze+z%C5%82o+0003,379,479,699794765,10050,0 +25032,Avanti%21,341,502,698625834,9950,0 +25033,Wioska+Bochun10,346,481,7449254,10311,1 +25034,Myk+i+do+kieszonki,363,581,9319058,9799,0 +25035,MojeDnoToWaszSzczyt,558,352,699697558,10160,0 +25036,007+Galust1,654,498,2135129,9756,0 +25037,Wioska+barbarzy%C5%84ska,555,352,699072129,10217,0 +25038,Kentin+ufam+Tobie,347,475,699783765,10000,6 +25039,I%23035,605,390,2065730,9797,0 +25040,WWWioska+Daniels88,619,597,699778867,12154,0 +25041,C008,600,385,699761749,9914,0 +25042,Wioska+005,392,616,848912772,7052,0 +25043,A03+Mendoza,643,497,699272880,10242,0 +25044,Chekku+-+meito,342,519,9280477,9976,0 +25045,Przysta%C5%84+9,405,381,699402816,9835,0 +25046,Ave+Why%21,474,651,698585370,9645,0 +25047,0285,545,652,698659980,10160,0 +25048,Szlachcic,421,370,698388578,10237,0 +25049,052%7C%7C+Piscis+Austrinus,476,652,849035525,9640,0 +25050,Lecymy+DUR,437,360,6169408,10016,0 +25052,B07,491,652,698652014,9971,0 +25053,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,384,609,849097937,8166,0 +25054,D+017,658,502,8078914,9889,0 +25055,014%7C%7C+Cassiopeia,494,652,849035525,9552,0 +25056,JaamwG+P,645,546,8815749,10019,0 +25057,Wioska+Bochun10,348,478,7449254,10495,0 +25058,420,649,539,7038651,7414,0 +25059,041,490,348,698739350,9878,0 +25061,042,621,405,9148043,9741,0 +25062,Twierdza+7,653,463,848935020,9570,0 +25063,Bizy+4,501,657,8954402,7027,0 +25064,Wioska+barbarzy%C5%84ska,502,344,699433558,8341,0 +25065,z+034,573,641,699342219,10220,0 +25066,B.065,656,507,9188016,10000,0 +25067,C003..,366,581,849090130,10495,0 +25069,Pobozowisko,401,617,699513260,10963,0 +25070,K34+-+%5B105%5D+Before+Land,441,356,699088769,10259,0 +25071,R%C4%99cznik+do+zmiany,372,411,699697558,10160,0 +25072,019...CENTR+P%C3%93%C5%81_A,464,347,6920960,10495,0 +25073,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,657,699828442,9806,0 +25074,A027,587,368,699485250,9537,0 +25075,I%23031,597,376,2065730,9797,0 +25076,0003,613,611,6417987,7014,0 +25077,002+Missisipi,477,655,699238479,9889,0 +25078,AA14,357,441,699783765,10047,0 +25079,070+Nakano,656,480,7092442,9747,0 +25080,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,650,699828442,9899,0 +25081,Dolina+Krzemu,625,401,699429153,9966,0 +25082,yyyy,492,341,699883079,10350,0 +25083,008+miliony+monet,567,643,699828685,9976,0 +25085,002%29Pieszyce,544,348,849097103,8209,0 +25086,I%23014,600,376,2065730,9797,0 +25087,Sony+911,589,632,1415009,10223,0 +25088,003.+Dla+flag,354,440,698630507,8422,0 +25089,Wioska+Bochun10,343,482,7449254,10099,0 +25091,A-036,386,388,8419570,10242,0 +25092,006+%7C+PALESTINA,645,441,9228039,9544,0 +25093,The+Game+Has+Only+Just+Begun,346,529,9280477,9253,0 +25095,OKO+ZA+OKO+ZAB+ZA+ZAB,448,353,699191464,10495,0 +25096,I%23018,597,377,2065730,7113,0 +25097,Ambrela+032,578,364,698823542,5441,0 +25098,Lecymy+DUR,433,362,6169408,10481,0 +25099,Wioska+barbarzy%C5%84ska,363,423,393668,6954,0 +25100,Jednak+wol%C4%99+gofry,436,645,699736927,5495,0 +25101,ave+why%21,443,643,698143931,10223,0 +25102,041,642,558,849095227,9778,0 +25103,Wioska+barbarzy%C5%84ska,555,356,699072129,10023,0 +25104,Lord+Lord+Franek+.%23027,527,345,698420691,9987,0 +25105,110,350,468,6258092,4075,0 +25106,BAC%C3%93WKA+%7C024%7C,632,411,7394371,5425,0 +25107,Wioska+barbarzy%C5%84ska,384,400,698884287,6168,0 +25108,044,654,485,2135129,9553,0 +25109,Zb%C3%B3jnik.,391,384,606706,5444,9 +25110,039,648,555,699316421,7209,0 +25111,Klaudek2,590,371,849092309,8028,0 +25112,xxx,507,443,698239813,10495,0 +25113,MojeDnoToWaszSzczyt,572,366,699697558,10019,0 +25114,Wioska+barbarzy%C5%84ska,537,651,7589468,8825,0 +25115,015%29+Niuniu%C5%9B,536,348,849097103,4208,0 +25116,047.,407,622,699665152,9701,0 +25117,006,646,561,849095963,9488,0 +25118,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,497,653,698585370,9915,0 +25119,Kentin+ufam+Tobie,356,441,699783765,10160,0 +25120,The+Game+Has+Only+Just+Begun,350,532,9280477,9976,0 +25121,Szlachcic,404,373,698160606,10254,0 +25122,Valhalla+7,373,594,849097002,10887,0 +25123,A0068,347,490,8841266,10252,0 +25124,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,653,699828442,9994,0 +25125,The+Game+Has+Only+Just+Begun,350,538,9280477,7633,0 +25126,I%23003,599,381,2065730,9797,0 +25128,Wioska+Bochun10,345,482,7449254,10495,0 +25129,Monetki,475,418,699098531,9878,0 +25130,Cisza+2,348,542,698769107,4550,0 +25131,X001-Czarna+Strefa,360,573,9264752,10495,0 +25132,Norynberg,369,587,8607734,9860,0 +25133,X003,360,570,9264752,10495,0 +25134,Piek%C5%82o+to+inni,565,357,848956765,10160,8 +25135,004Knaki,391,614,698620694,9782,0 +25136,LadyAnimavillis,600,618,699703642,9902,0 +25137,0468,380,604,698659980,9627,0 +25138,Wioska+barbarzy%C5%84ska,554,353,699072129,9814,0 +25139,019+serniczek+z+galaretk%C4%85,503,656,8954402,10252,0 +25140,Denger+21,370,588,698353083,9654,0 +25141,R%C4%99cznik+do+zmiany,373,413,699697558,10160,0 +25142,0565,548,645,698659980,8927,0 +25143,KONFA+TO+MARKA%2C+NARKA,409,470,698152377,10638,0 +25144,016...CENTR,460,350,6920960,10220,0 +25145,Yyyyy,497,344,699883079,10068,0 +25146,B09,647,447,849093742,10019,0 +25147,Wiocha+004,393,610,848912772,10178,0 +25148,025,514,343,699072129,10226,0 +25149,K34+-+%5B028%5D+Before+Land,444,356,699088769,10259,0 +25150,096,619,604,698786826,10495,0 +25151,%23045.520%7C497,639,448,556154,9735,0 +25152,Piek%C5%82o+to+inni,578,363,848956765,10083,0 +25153,Wioska+barbarzy%C5%84ska,598,617,699796630,3758,0 +25154,32.+KaruTown,635,425,849060446,9735,0 +25155,Sony+911,584,632,1415009,10226,0 +25156,B024,655,500,9314079,10051,0 +25157,I%23019,597,374,2065730,6650,0 +25158,-006-,385,603,699097885,9189,0 +25159,Taki+Pan,504,343,698739350,7960,0 +25160,Wioska+barbarzy%C5%84ska,478,347,699433558,5147,0 +25161,042+kryzys,570,638,699828685,9976,0 +25162,Monetkownia,611,607,699759128,10237,0 +25163,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,658,699828442,9809,0 +25164,3AA,356,431,7765098,9450,0 +25165,001,645,560,849095963,10890,0 +25166,Szlachcic,583,490,699759128,10237,0 +25167,064,618,597,698786826,7905,0 +25168,MojeDnoToWaszSzczyt,561,358,699697558,10252,0 +25169,Przysta%C5%84+8,408,374,699402816,9835,0 +25170,028,652,534,699351301,10160,0 +25171,jaaa,637,571,698635863,10487,0 +25172,Lord+Lord+Franek+.%23028,524,344,698420691,9984,0 +25173,Wioska+barbarzy%C5%84ska,558,355,699072129,10444,0 +25174,023,519,344,699072129,10475,0 +25175,%23.08+Osada+koczownik%C3%B3w,651,479,849054582,10019,3 +25176,szping,596,626,848995242,10495,0 +25177,Jaaa,624,596,698635863,10490,0 +25178,W+05,647,455,699524891,9721,9 +25179,51.+Wioska+51,355,546,849091769,7444,0 +25180,jaaa,633,577,698635863,10495,0 +25181,021+MONETKI,659,495,7588382,9887,0 +25182,M181_016,361,429,393668,9886,0 +25183,BAC%C3%93WKA+%7C013%7C,626,409,7394371,9578,0 +25184,aAa+Szlaban+3,609,606,699778867,12154,0 +25185,Samana3,460,653,699736927,5433,0 +25186,037.+Pons+Aelius,651,470,849091866,9468,0 +25187,Jaaa,630,593,698635863,10272,0 +25188,Ave+Why%21,467,656,699121671,9809,0 +25189,EMERYTOWANY+KUZYN,423,636,848913998,9321,0 +25190,wez+otworz+.,577,632,848995242,10411,0 +25191,Jednak+wol%C4%99+gofry,440,643,699736927,4990,0 +25192,%3F007,541,654,699828685,9976,0 +25193,Wioska+Krycek,348,511,849060099,9097,0 +25194,Denger+23,375,589,698353083,10687,0 +25195,%230044,539,624,1536231,10971,0 +25196,.004.,493,378,698489071,10316,0 +25197,Wioska+barbarzy%C5%84ska,551,354,699072129,10237,0 +25198,06.+Lutkowszcza%C5%84scy+tubylcy,376,596,8665783,10287,0 +25199,Jednak+wol%C4%99+gofry,444,643,699736927,9134,0 +25200,Wioska+barbarzy%C5%84ska,648,446,699524891,9288,0 +25201,Roz%C5%82am,626,403,699491076,8367,0 +25202,Wioska+Bochun10,342,509,7449254,10544,0 +25203,Wioska+barbarzy%C5%84ska,489,342,698739350,9825,0 +25204,040,485,375,698739350,9761,0 +25205,SINGED+X+SZEF,495,379,699368887,10178,0 +25206,0488,532,651,698659980,10252,0 +25208,0060,420,370,848913037,9993,0 +25209,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,653,698807570,9670,0 +25210,077+Duko+1,547,355,699491076,10001,0 +25211,BAC%C3%93WKA+%7C006%7C,627,408,7394371,12154,0 +25212,044,546,650,2808172,10019,0 +25213,P006+Roshammul,658,511,8096537,9882,6 +25215,jaaa,632,573,698635863,10495,0 +25216,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,530,655,699828442,9809,0 +25218,007+big+girls+do+not+cry,565,643,699828685,9976,0 +25220,018...MONETKI,453,347,6920960,10495,0 +25221,037+Galust3,655,496,2135129,9500,0 +25223,R%C4%99cznik+do+zmiany,373,411,699697558,10160,0 +25224,066,654,527,699351301,10382,0 +25225,Konfederacja,461,377,848915730,9333,0 +25226,Wioska+barbarzy%C5%84ska,525,655,699828442,9761,0 +25227,---011,369,586,8607734,9555,0 +25228,009,431,640,849089459,8792,0 +25229,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,655,699828442,9806,0 +25230,Lord+Lord+Franek+.%23008,519,339,698420691,10235,0 +25231,SX001,572,640,8627359,9231,0 +25232,014,484,348,698739350,10237,0 +25233,%5B116%5D,636,574,8000875,10243,0 +25234,Wioska+5,425,641,699736927,5114,0 +25235,-004-,376,593,699097885,9755,0 +25236,131,476,345,7271812,4605,0 +25237,Wioska+Hubs1,620,601,699853308,3290,0 +25238,049.+Heliopolis,653,467,849091866,9377,0 +25239,Bergen+op+Zon,604,380,9103424,5674,0 +25240,Quzynafide,407,627,848913998,3777,0 +25241,017+MONETKI,656,496,7588382,9490,0 +25242,030,614,397,699298370,6970,0 +25243,Wioska+barbarzy%C5%84ska,645,450,699524891,8204,0 +25245,Wioska+barbarzy%C5%84ska,556,355,699072129,10220,0 +25246,04.+Monster+Machine,494,654,849100262,10019,0 +25247,Jestem+Poza+Kontrol%C4%85,355,548,8004076,9791,0 +25248,057,656,519,698999105,8806,0 +25249,213...barba,465,346,6920960,4947,0 +25250,The+Game+Has+Only+Just+Begun,342,516,9280477,9976,7 +25251,0007,402,376,699402816,9963,0 +25252,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,650,699828442,9806,0 +25253,Wioska+pit,375,594,849095992,10495,0 +25254,Pobozowisko,406,622,699513260,9833,0 +25255,%3F012+Tawern,536,656,699828685,9976,0 +25256,Wioska+barbarzy%C5%84ska,538,654,7756002,9902,0 +25257,Szlachcic,407,371,698160606,10048,0 +25258,Kentin+ufam+Tobie,351,443,699783765,7478,0 +25259,033,616,599,698786826,10217,0 +25260,K34+-+%5B025%5D+Before+Land,444,357,699088769,10259,0 +25261,jaaa,636,582,698635863,10275,0 +25262,Wioska+barbarzy%C5%84ska,363,427,393668,5041,0 +25263,Monetki,476,412,699098531,10290,0 +25264,007,384,395,849059457,7002,0 +25265,Kentin+ufam+Tobie,351,457,699783765,10000,0 +25266,011+MONETKI,657,469,7588382,8438,0 +25267,The+Game+Has+Only+Just+Begun,347,520,9280477,9976,0 +25268,002,652,533,699351301,11300,8 +25269,0034,420,369,848913037,5395,0 +25270,A016+Go%C5%9B%C4%87+%C5%BCelazo,653,456,113796,10160,3 +25271,Wioska+barbarzy%C5%84ska,378,399,848886056,3619,0 +25272,MojeDnoToWaszSzczyt,577,364,699697558,10019,0 +25273,D%C4%85browa+0015,363,577,849096972,9763,0 +25274,%230017+barbarzy%C5%84ska,467,349,1238300,10178,0 +25275,Monetio,441,352,699191449,10495,0 +25276,004,482,348,698739350,10237,4 +25277,I%23025,596,379,2065730,9058,0 +25278,The+Game+Has+Only+Just+Begun,346,533,9280477,9265,0 +25279,K34+-+%5B111%5D+Before+Land,441,358,699088769,10259,0 +25280,Wioska+barbarzy%C5%84ska,362,426,393668,7944,0 +25281,032,616,396,699298370,4101,0 +25282,Kentin+ufam+Tobie,354,454,699783765,10495,0 +25283,Village,518,655,849094067,9922,0 +25284,A008,603,387,699761749,10495,0 +25285,1.3,393,382,849095959,1819,0 +25286,Wioska+Bochun10,346,480,7449254,10311,0 +25287,Prawdziwa+Osada+koczownik%C3%B3w,614,606,699778867,12154,8 +25288,Myk+i+do+kieszonki,361,577,849012521,10240,0 +25289,Wiocha+002,393,612,848912772,10178,0 +25290,Maszlug+kolonia+XVIII,363,417,848977649,4206,0 +25291,B025,655,494,9314079,9824,0 +25292,A+020,602,381,6384450,9889,0 +25294,%230016+barbarzy%C5%84ska,467,347,1238300,10178,0 +25296,Gattacka,613,388,699298370,10470,0 +25297,Szlachcic,465,419,698388578,10237,0 +25298,off+100+%25,358,569,849012521,10242,0 +25300,PZ035,656,517,8096537,9761,0 +25301,R%C4%99cznik+do+zmiany,372,405,699697558,10019,0 +25302,KREV+004,642,565,848988744,7336,0 +25303,Jestem+Poza+Kontrol%C4%85,354,550,8004076,9880,0 +25304,wolna.,561,647,699828685,10001,7 +25305,033%7C%7C+Corvus,452,650,849035525,10019,0 +25306,deff+100+%25,357,559,849012521,7620,0 +25307,Kozaki+1,614,605,699778867,12154,0 +25308,0462,380,599,699513260,3737,0 +25309,0010+Bia%C5%82ystok,393,381,849096882,8200,0 +25310,SSJ+063,514,653,699364813,9737,0 +25311,052.,416,628,2665207,9835,0 +25312,Piek%C5%82o+to+inni,566,359,848956765,10160,0 +25313,Lord+Lord+Franek+.%23029,525,343,698420691,9984,0 +25314,A-024,387,395,8419570,10168,0 +25315,xxx+%23002%23TerrorMachine+x+Miniqo,584,364,7555180,10146,0 +25316,Myk+i+do+kieszonki,364,583,849012521,7218,0 +25317,410,649,538,7038651,8611,0 +25318,LadyAnimavillis,603,617,699703642,9138,0 +25319,Tomall78,636,426,699524891,10635,0 +25320,Kentin+ufam+Tobie,351,441,699783765,10660,0 +25321,007,626,406,699429153,10237,0 +25322,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,653,699828442,9817,0 +25323,004+Krotu2,655,488,2135129,9553,0 +25324,Lord+Lord+Franek+.%23050,519,343,698420691,10112,0 +25325,Banan%234,584,368,699485250,10211,0 +25326,Piek%C5%82o+to+inni,569,361,848956765,10160,0 +25328,SSJ+067,517,653,699364813,9737,0 +25330,A003,587,372,699485250,10211,0 +25331,Dajanka+06,354,559,849012843,8477,0 +25332,Avanti%21,346,507,698625834,9950,0 +25333,K34+-+%5B136%5D+Before+Land,433,354,699088769,9783,0 +25334,Obrze%C5%BCa+02,538,652,848915531,11550,0 +25335,35.+KaruTown,636,416,849060446,8012,0 +25336,D03.,366,574,849090130,10362,5 +25337,%C5%BBUBRAWKA+A001+rufus997,602,615,33900,10481,0 +25338,psycha+sitting,455,647,699736927,10178,0 +25339,037+038,550,351,699491076,10001,0 +25340,musze+sie+napi%C4%87+.,593,626,848995242,10362,0 +25341,Darma+Tomi77,514,383,699368887,10237,0 +25342,006+king+rysio,566,643,699828685,9976,0 +25343,Village,579,635,849094067,7656,0 +25344,0461,380,598,698659980,3775,0 +25345,Banan%232,589,369,699485250,10211,0 +25346,HORUS...,544,645,7756002,9968,0 +25347,004,341,519,1830149,9811,0 +25348,011,398,380,849027025,9358,0 +25349,AA10,358,440,7765098,8958,0 +25350,A-025,386,396,8419570,10168,0 +25351,Klaudek.1,592,371,849092309,8369,0 +25352,RON+L,656,532,698768565,6939,0 +25353,K34+-+%5B011%5D+Before+Land,445,357,699088769,10259,0 +25354,038+037,549,351,699491076,10001,0 +25355,Wioska+barbarzy%C5%84ska,647,453,699524891,9397,0 +25356,Wioska+barbarzy%C5%84ska,433,363,699191455,8780,0 +25357,003,506,654,699336777,9938,4 +25358,Samana,452,651,699849210,7107,0 +25359,Kentin+ufam+Tobie,343,467,699783765,10000,0 +25360,jaaa,639,567,698635863,10222,0 +25361,013,484,347,698739350,10128,0 +25362,off+100+%25,361,574,849012521,10031,0 +25363,Kentin+ufam+Tobie,343,479,699783765,10019,0 +25364,Szlachcic,345,460,6258092,10019,0 +25365,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,549,652,7589468,8825,0 +25366,Horyzont+zdarze%C5%84,541,650,7581876,9835,0 +25367,%3D063%3D+Wioska+barbarzy%C5%84ska,652,550,3781794,10148,0 +25368,Monetki,471,424,699098531,10291,0 +25369,105,351,461,6258092,9654,0 +25370,aaaaaaaaaaa,442,358,699191455,10495,0 +25371,A-037,384,391,8419570,10242,0 +25372,051.+Tridentum,655,468,849091866,9366,0 +25373,Maszlug+kolonia+XVII,365,418,848977649,4561,0 +25374,North+Barba+022,423,365,699796330,9805,0 +25375,008.Wioska+BenyZSZ,346,510,1830149,9816,0 +25376,Lord+Lord+Franek+.%23042,531,348,698420691,10160,0 +25377,013+so+sick,560,642,699828685,9976,0 +25378,Dzikie+wsparcie,471,657,848935389,9809,1 +25379,Monetki,483,416,699098531,10291,0 +25380,0663,379,600,698659980,10495,0 +25381,037.,397,622,2665207,9835,4 +25382,1AA,356,434,7765098,7981,0 +25383,Gr%C3%B3d+4,475,344,699204478,2960,0 +25384,Monetki,474,410,699098531,10291,0 +25385,B.025,645,512,9188016,10000,0 +25386,I%23004,598,382,2065730,9797,0 +25388,JaawmG+P,649,558,8815749,10019,0 +25389,Wioska+barbarzy%C5%84ska,380,396,848886056,3161,0 +25390,Piek%C5%82o+to+inni,570,361,848956765,10019,0 +25391,Wioska+MokryRick,624,601,699778867,12154,0 +25392,027+-+Mroczna+Osada,640,423,849035905,12143,0 +25393,Lord+Lord+Franek+.%23005,529,345,698420691,10311,0 +25394,033.+Dubris,653,470,849091866,10481,0 +25395,023+181,344,501,698807570,9332,3 +25396,Darma+dla+zawodnika,514,659,699494488,10319,0 +25397,Wioska+barbarzy%C5%84ska,578,636,848995242,10255,0 +25398,Wioska+Flip+i+Flap+%3B%5D,465,421,9291984,7798,0 +25399,%23008+Zenit+Postrach+Plemion,359,432,849096215,2268,0 +25400,%23007+Zenitu%C5%9B,360,431,849096215,1595,0 +25402,North+Barba+013,422,362,699796330,9892,0 +25403,B.011,646,512,9188016,10000,0 +25404,Szulernia,417,363,7249451,9993,0 +25405,Wioska+barbarzy%C5%84ska,630,408,699429153,8763,0 +25406,0151,546,652,698659980,10019,0 +25407,079,619,606,698786826,10495,0 +25408,7.62+mm,373,402,8967440,6208,0 +25409,Lekka+Jazda.,608,617,699778867,12154,0 +25410,No.+4,478,655,698585370,9201,0 +25411,B07,644,447,849093742,10019,0 +25412,009.,402,626,2665207,9835,0 +25413,Zakr%C4%99t+1,408,376,699402816,9835,0 +25414,%3F001,539,655,699828685,9976,0 +25415,08.+Pelc,377,594,8665783,9916,0 +25416,066,625,599,698786826,10223,0 +25417,004+Lowland,552,348,699072129,8143,0 +25418,.%3A026%3A.+%C5%81OBUZIK,555,368,848934935,10495,0 +25420,Szlachcic,403,372,698160606,10479,0 +25421,North+Barba+006,422,365,699796330,9886,0 +25422,002+Winterfell,653,484,2135129,9553,0 +25423,KREV+001,642,563,848988744,9711,0 +25424,Lord+Lord+Franek+.%23014,520,343,698420691,9956,1 +25425,073+zxc,638,427,9238175,10216,0 +25426,CHARFA,512,341,699072129,10218,0 +25427,%23.07+%2AOsada+1%2A,659,473,849054582,10019,0 +25428,066+%7C+PALESTINA,638,432,9228039,5903,0 +25430,Darma+dla+zawodnika,518,659,699494488,10484,0 +25431,Szlachcic%2FTaran,621,397,699759128,10237,0 +25432,051.+Az+Ragni,638,418,8337151,10118,0 +25433,023,641,521,699413040,9860,0 +25434,007,397,381,849027025,6774,0 +25435,004+memyselfandi,566,644,699828685,9976,8 +25437,112,629,411,7085502,9976,0 +25438,0487,532,653,698659980,10252,7 +25439,Ave+Why%21,499,656,698585370,11321,0 +25440,Lord+Lord+Franek+.%23030,520,346,698420691,9956,0 +25441,.happy2,643,529,6929240,9511,0 +25442,%3D045%3D+Wioska+barbarzy%C5%84ska,651,551,3781794,9824,0 +25443,Chekku+-+meito,345,531,9280477,7947,0 +25444,MojeDnoToWaszSzczyt,567,366,699697558,10495,0 +25445,Lord+Lord+Franek+.%23031,527,343,698420691,9982,0 +25446,082...barb,457,348,6920960,10237,0 +25447,A-038,385,397,8419570,10168,0 +25448,022+-+Mroczna+Osada,631,411,849035905,11550,0 +25449,R%C4%99cznik+do+zmiany,370,411,699697558,10160,0 +25450,BEZDZIETNY+KAWALER,413,629,848913998,5925,0 +25451,Zadupiee,366,408,8967440,7464,0 +25452,008,494,626,699494488,10311,0 +25453,004,642,561,849095963,9881,0 +25454,Pobozowisko,390,606,699513260,10971,0 +25455,0040,412,373,848913037,9993,0 +25456,Giser,435,354,849096310,9860,0 +25457,071...barbarka+centr,458,350,6920960,10231,0 +25458,Jaaa,626,591,698635863,10280,0 +25459,0036,470,652,698585370,10083,0 +25460,036,649,556,699316421,9744,0 +25461,LadyAnimavillis,606,618,699703642,8131,0 +25462,okok,627,409,849095435,9965,0 +25463,004%29+%C5%81agiewniki,542,348,849097103,6151,1 +25464,-014-,373,599,699097885,10259,0 +25465,P021+Gotham,658,503,8096537,9741,0 +25466,Monetki,475,412,699098531,10291,0 +25467,Lecymy+DUR,427,358,6169408,6973,0 +25468,Kentin+ufam+Tobie,343,471,699783765,10000,0 +25469,008,446,626,849084985,10221,0 +25470,B14,652,449,849093742,8111,0 +25472,030,568,643,699828685,9976,0 +25473,0002.+HMS+Prince+%281670%29,468,654,699121671,9809,0 +25474,A-034,390,388,8419570,10168,0 +25475,K53+040+Castamere,345,509,1830149,9978,0 +25477,009,398,384,849027025,8133,0 +25478,BAC%C3%93WKA+%7C039%7C,622,403,7394371,11550,0 +25479,.023.,485,368,698489071,10728,0 +25480,D+014,662,504,8078914,9751,0 +25482,RON,656,534,698768565,9019,0 +25483,007,401,376,699402816,9835,0 +25484,C001,607,384,699485250,6950,0 +25485,016,653,544,699351301,9814,0 +25488,A031,590,369,699485250,8722,0 +25489,Orze%C5%82+Wyl%C4%85dowa%C5%82,454,657,698807570,9609,0 +25490,Krosno+10,532,343,7485877,3552,0 +25492,Ave+Why%21,490,654,849004274,9835,0 +25493,%2A055,602,624,699567608,9289,0 +25494,A006,404,627,848912772,4318,0 +25495,M181_040,356,428,393668,9770,0 +25496,MojeDnoToWaszSzczyt,566,365,699697558,10495,0 +25497,Wioska+barbarzy%C5%84ska,557,355,699072129,10042,0 +25498,sony911,586,635,1415009,10217,0 +25499,Wioska+barbarzy%C5%84ska,617,393,698241117,7256,0 +25500,028,657,495,849006412,7860,0 +25501,Kentin+ufam+Tobie,343,469,699783765,10005,0 +25502,035,659,497,7085502,9735,0 +25503,004.+Dla+flag,353,437,698630507,8521,0 +25504,Kentin+ufam+Tobie,354,444,699783765,7929,0 +25505,RE3,348,453,6258092,9764,0 +25506,Antyszczepany,599,624,848995242,10495,0 +25507,017,655,535,699351301,10141,0 +25509,Wioska+006,388,387,8419570,10242,0 +25510,0029+MzM,624,595,698416970,9258,2 +25511,C004,610,384,699485250,9825,0 +25512,Jan+015+Nord+K,650,450,879782,9633,0 +25513,Wioska+Kaffiks+X,639,579,6136757,6231,0 +25514,94k%24+Grvvyq,608,619,699676005,10495,0 +25515,Lord+Lord+Franek+.%23112,529,342,698420691,10431,0 +25516,A0064,346,491,8841266,10252,0 +25517,Jednak+wol%C4%99+gofry,438,644,699736927,10444,0 +25518,A028,586,368,699485250,10121,0 +25519,%5B019%5D,450,650,9094538,3130,0 +25520,Bizy+9,504,656,8954402,8956,0 +25521,Jestem+Poza+Kontrol%C4%85,350,552,8004076,9880,0 +25522,Wioska+barbarzy%C5%84ska,652,458,849095879,5001,0 +25523,Wioska+Lolitkaa,389,607,699007059,6536,0 +25524,Starszyzna,370,587,8607734,10019,0 +25525,Avanti%21,346,514,698625834,9950,0 +25526,Darma+dla+zawodnika,514,660,699494488,10320,0 +25527,Wioska+barbarzy%C5%84ska,655,462,113796,5776,0 +25528,%23010+Zenitek+Love,359,433,849096215,2764,0 +25529,%23009+Zenit+Pan+K43,360,434,849096215,2368,0 +25530,026.Barbara10,340,514,1830149,4985,0 +25531,Pobozowisko,392,609,699513260,9723,0 +25532,044,570,642,699828685,9976,0 +25533,%230005+ScorpioSTW,472,347,1238300,10178,0 +25534,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,652,699828442,9994,0 +25535,Yyyy,491,342,699883079,10068,0 +25536,022,655,520,699351301,9063,0 +25537,C001,365,582,849090130,6727,0 +25538,jaaa,638,576,698635863,10559,0 +25539,Bagienko.Anker...,376,398,699713515,9028,0 +25540,Wioska+barbarzy%C5%84ska,494,342,698739350,10022,0 +25541,0013,419,366,848913037,9993,0 +25542,Wioska+barbarzy%C5%84ska,491,343,698739350,10237,0 +25543,Kentin+ufam+Tobie,351,444,699783765,10495,0 +25544,Wioska+003,382,392,8419570,10061,0 +25545,North+Sochaczew,423,359,699796330,10311,0 +25546,10.+Grzybek,376,599,8665783,9381,0 +25547,%23056.,645,433,556154,9735,0 +25548,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,379,606,849097937,9802,0 +25549,MojeSzczytToTw%C3%B3jDno,507,341,828637,10495,0 +25550,Lord+Lord+Franek+.%23032,525,345,698420691,9987,0 +25551,B+019,657,537,8078914,9227,0 +25552,Wioska+Kaffik+VII,635,579,6136757,7035,0 +25553,cc+Wielka+M3,403,374,3909522,6835,0 +25554,Wioska,350,453,848946608,6016,0 +25555,0042,411,370,848913037,8572,0 +25556,BAC%C3%93WKA+%7C026%7C,632,420,7394371,5450,0 +25557,P028+Afgan+Skun,658,523,8096537,10068,0 +25558,029,647,526,699351301,9476,0 +25559,North+Barba+018,421,361,699796330,9836,0 +25560,K34+-+%5B016%5D+Before+Land,445,350,699088769,10259,0 +25561,x013,358,566,9264752,9909,0 +25562,A-046-Heffitto,389,387,8419570,10168,0 +25563,0016,416,366,848913037,9993,0 +25564,046-+Mroczna+Osada,629,413,849035905,6135,0 +25565,Ave+Why%21,491,644,698585370,10217,0 +25566,B.016,666,507,9188016,10000,0 +25567,001,645,570,699301458,1475,0 +25568,Szlachcic,408,373,698160606,10425,0 +25569,Wyngiel+we+wsi,554,348,699072129,10108,0 +25570,021,654,523,699351301,9013,5 +25572,016.,488,656,849034882,10362,0 +25573,03.+Maj+preszysz,369,593,8665783,10085,3 +25574,500,649,544,7038651,9560,0 +25575,0014,419,368,848913037,9993,0 +25577,-013-,372,598,699097885,9177,0 +25580,LadyAnimavillis,607,616,699703642,8660,0 +25582,%C5%BBUBRAWKA+003,604,623,33900,10247,0 +25583,Myk+i+do+kieszonki,365,583,849012521,10283,0 +25584,024+MONETKI,654,482,7588382,9555,0 +25585,62k%24+Grvvyq,648,563,699676005,10495,0 +25586,%3D038%3D+Wioska+barbarzy%C5%84ska,651,552,3781794,10187,0 +25587,W+06,654,455,699524891,9726,0 +25588,Chekku+-+meito,342,521,9280477,9976,0 +25589,0004,613,614,6417987,10342,0 +25590,017.,559,648,699695167,9902,0 +25591,Jednak+wol%C4%99+gofry,499,636,699725436,8380,0 +25592,B06,645,445,849093742,10019,0 +25593,Osada+koczownik%C3%B3w,550,348,699072129,10378,7 +25594,Wioska+Kaffiks+XII,632,579,6136757,4277,0 +25595,Kr%C3%B3lestwo+Pledos+ASPKTO,488,659,849004274,9835,0 +25598,off+100+%25,355,570,849012521,10243,0 +25599,BAC%C3%93WKA+%7C031%7C,625,410,7394371,5808,0 +25600,014.,341,520,1830149,9758,0 +25601,PZ036,656,520,8096537,9747,0 +25602,026+-+Elx,644,443,698342159,10019,0 +25603,%2ALo%C5%82mont,575,636,699443920,9761,6 +25604,104,442,643,849084985,4739,0 +25605,Ave+Why%21,451,628,8729672,9995,0 +25606,Piek%C5%82o+to+inni,567,359,848956765,10160,0 +25607,kathare,557,645,873575,9869,0 +25608,Lord+Lord+Franek+.%23210,508,346,698420691,9707,0 +25609,%2A252%2A,355,435,699273451,9317,0 +25610,020,514,341,699072129,10495,0 +25611,Pobozowisko,386,603,699513260,10952,0 +25613,off+100+%25,358,568,849012521,8795,0 +25614,A0237,343,487,8841266,10252,0 +25615,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,653,7589468,7626,0 +25616,Wioska+barbarzy%C5%84ska+030,501,340,6343784,7437,0 +25617,Lord+Lord+Franek+.%23051,536,343,698420691,9960,0 +25618,Wioska+Fellipe23,587,627,848995242,10362,0 +25619,A0071,346,486,8841266,10252,0 +25620,SSJ+060,506,655,699054373,9333,0 +25621,Chekku+-+meito,342,527,9280477,9712,0 +25622,North+Barba+Zeus,424,364,699796330,10456,0 +25624,off+100+%25,352,562,849012521,10242,0 +25625,R%C4%99cznik+do+zmiany,369,415,699697558,10160,0 +25626,072...barbarka+centr,457,350,6920960,10273,0 +25627,B18,647,448,849093742,7944,0 +25628,MojeSzczytToTw%C3%B3jDno,510,342,828637,9835,0 +25629,Wioska+barbarzy%C5%84ska+III,377,404,8967440,2415,0 +25631,Kentin+ufam+Tobie,351,442,699783765,10479,0 +25632,033,571,639,699828685,9976,0 +25633,Taran,664,510,699598425,10728,0 +25634,Mamm60n,375,596,849095992,10222,0 +25635,Karolina3116+%28Karolina3116%29,414,578,698769107,9835,0 +25636,038,653,489,2135129,9553,0 +25637,0464,382,601,698659980,10178,0 +25638,Kentin+ufam+Tobie,352,442,699783765,10495,0 +25639,Piek%C5%82o+to+inni,560,352,848956765,10252,0 +25640,off+100+%25,356,570,849012521,8940,0 +25641,Piek%C5%82o+to+inni,579,364,848956765,9745,0 +25642,12+Esgaroth,451,654,699849210,9825,0 +25643,a+mo%C5%BCe+off+%3F+%3A%29,626,589,698768565,9790,0 +25644,x011,353,563,9264752,10495,0 +25645,Wioska+Bochun10,344,481,7449254,10311,0 +25646,Jednak+wol%C4%99+gofry,434,646,699736927,10319,0 +25647,Wioska+011,381,392,8419570,8775,0 +25648,w%C5%82odek+%3A%29,563,646,699828685,9976,0 +25649,B06,491,654,698652014,9879,0 +25650,Myk+i+do+kieszonki,362,557,9319058,9799,0 +25651,078...barbarka+------------,458,347,6920960,10237,0 +25652,S1Joker,476,657,698585370,11213,0 +25653,off+100+%25,358,567,849012521,10311,0 +25654,Edessa,431,643,849089459,8149,0 +25655,Oww+Konfederacja,609,389,848915730,6182,0 +25656,012,484,345,698739350,10495,0 +25657,Jestem+Poza+Kontrol%C4%85,351,560,8004076,9880,0 +25658,Wioska+Kaffiks+XIV,631,586,6136757,6375,0 +25659,off+100+%25,356,571,849012521,10273,0 +25661,%3F005,537,655,699828685,9976,0 +25662,A+021,603,377,6384450,10362,0 +25663,Ronin+P,612,611,698768565,9995,0 +25664,Wioska+Bochun10,346,482,7449254,10311,0 +25665,Avanti%21,345,505,698625834,9950,0 +25666,jaaa,641,566,698635863,10545,0 +25667,MojeSzczytToTw%C3%B3jDno,508,343,828637,10478,0 +25668,023.Barbara+7,340,508,1830149,4261,0 +25669,The+Game+Has+Only+Just+Begun,347,537,9280477,10117,0 +25670,Lecymy+DUR,433,358,6169408,3546,0 +25671,220,653,540,7038651,8300,0 +25672,Myk+i+do+kieszonki,360,565,9319058,9799,0 +25673,050,661,498,7085502,9732,0 +25674,0005+Warszawa,394,380,699402816,10544,0 +25675,7.62+mm,368,418,699777234,5619,0 +25677,Szlachcic,633,590,930720,6227,0 +25678,047.+Florentia,651,468,849091866,9361,0 +25679,045+Providence,634,587,699272880,5837,0 +25680,094,408,370,698364331,3958,0 +25681,069+Wioska+barbarzy%C5%84ska,546,350,699491076,10001,0 +25682,089...bar,459,345,6920960,10223,0 +25683,076,657,522,699351301,9766,0 +25684,Jestem+Poza+Kontrol%C4%85,350,546,8004076,9764,0 +25686,aaaaaaaaaa,438,358,699191455,10487,0 +25688,Jan+dzik+II,647,435,879782,7497,0 +25689,027,561,645,699828685,9976,0 +25690,B16,650,446,849093742,9156,0 +25691,Ave+Why%21,477,659,698585370,9686,0 +25692,0489,533,652,698659980,10495,0 +25693,zzzGranica+Bledu+11,609,610,699778867,8510,0 +25694,Dublin,431,642,699736927,9736,0 +25695,0545,531,658,698659980,10083,0 +25696,079,645,556,849095227,9730,6 +25697,032,658,498,7085502,9864,0 +25698,Bardzo+czy%C5%9Bciutko+tutaj,346,452,6258092,4125,0 +25699,%2ALusita,574,635,699443920,9761,0 +25700,Piek%C5%82o+to+inni,563,352,848956765,10019,0 +25701,A+004,605,387,6384450,10362,0 +25702,124+xx2,548,349,699491076,9955,0 +25704,EMERYTOWANY+KUZYN,421,634,848913998,5232,0 +25705,005+serniczek+na+zimno,503,661,8954402,10252,7 +25707,Flotsam2,484,340,849048216,3020,0 +25708,W+odwiedzinach+u+kuzyna,431,639,848913998,11470,0 +25709,jaaa,638,575,698635863,10089,0 +25710,Denger+20,368,587,698353083,9139,0 +25711,EMERYTOWANY+KUZYN,434,641,848913998,7352,0 +25712,Wioska+barbarzy%C5%84ska,487,661,8501514,8225,0 +25713,Valhalla+B0,379,605,849097002,10029,0 +25714,North+Barba+009,424,360,699796330,10294,0 +25715,Wioska+barbarzy%C5%84ska,377,398,848886056,4096,0 +25717,107,351,460,6258092,10019,0 +25718,R%C4%99cznik+do+zmiany,373,409,699697558,10160,9 +25719,lllllllllllllllll,624,401,699429153,10040,0 +25720,RON,655,537,698768565,6552,0 +25721,004...CENTR_na+prz%C3%B3d,461,352,6920960,10495,0 +25722,063,619,598,698786826,5057,0 +25723,psycha+sitting,451,649,699736927,9590,0 +25724,Belle+Fourche,619,391,699298370,9976,0 +25725,023,630,585,699099811,9587,0 +25726,0009+ah+ten+stan,504,505,698599365,10019,0 +25727,psycha+sitting,454,649,699736927,10311,0 +25728,K34+-+%5B096%5D+Before+Land,444,355,699088769,10259,0 +25729,The+Game+Has+Only+Just+Begun,348,529,9280477,10076,0 +25730,0587,542,656,698659980,8331,0 +25731,Wioska+Bochun10,345,478,7449254,10495,0 +25732,Krak%C3%B3w,375,401,848886056,5650,0 +25733,Wioska+barbarzy%C5%84ska,340,523,9280477,2039,0 +25734,032.,642,482,849094609,9821,0 +25735,A+018,605,385,6384450,8768,0 +25736,1.2,392,390,8967440,3480,0 +25737,off+100+%25,357,569,849012521,10495,0 +25738,Wioska+barbarzy%C5%84ska,489,345,698739350,10104,0 +25739,Wioska+zbiku1990,646,450,699524891,9379,0 +25740,I%23007,599,378,2065730,9684,0 +25741,Piek%C5%82o+to+inni,565,354,848956765,10160,0 +25742,tego+nie,513,656,699494488,10475,0 +25743,Kentin+ufam+Tobie,343,478,699783765,10000,0 +25744,010+lord+cesarok,562,643,699828685,9976,0 +25745,Dajanka+02,350,556,849012843,10559,0 +25746,19.+Holenderscy+likwidatorzy,369,594,8665783,8712,0 +25747,021+serniczek+kr%C3%B3lewski,511,660,8954402,10144,3 +25748,Wioska+barbarzy%C5%84ska,544,354,699072129,10223,0 +25749,026,483,344,698739350,10237,0 +25750,Klaudek3,592,369,849092309,7388,0 +25751,%2A051,590,631,699567608,9704,0 +25752,081...CENTR,454,350,6920960,10237,0 +25753,kathare,558,648,873575,9786,0 +25755,002+Halland,552,351,699072129,8313,0 +25756,A0235,342,485,8841266,10252,0 +25757,053,658,520,698999105,10311,0 +25759,D+005,659,508,8078914,9858,0 +25760,Maniek+PZGXR,491,660,849004274,9835,0 +25761,Wiocha+4,427,361,849096544,10887,0 +25762,B026,654,494,9314079,9827,0 +25763,No+way,346,456,6258092,11348,0 +25764,A+005,608,387,6384450,9046,0 +25765,007,644,558,849095963,9042,0 +25766,R%C4%99cznik+do+zmiany,372,408,699697558,10160,0 +25768,B08,649,450,849093742,10160,0 +25769,004+serniczek+z+truskawkami,502,661,8954402,10252,0 +25770,Weso%C5%82ych+%C5%9Awi%C4%85t,582,361,848915730,4125,0 +25772,Kentin+ufam+Tobie,342,466,699783765,10000,0 +25773,sony911,585,629,1415009,9842,0 +25775,Wioska+barbarzy%C5%84ska,650,455,699524891,9756,0 +25776,Avanti%21,342,503,698625834,9950,0 +25777,R%C4%99cznik+do+zmiany,370,405,699697558,10160,0 +25778,Wioska+Wstydu+i+Rozpaczy,621,393,699298370,7896,0 +25779,Jednak+wol%C4%99+gofry,470,657,699725436,10508,3 +25780,0633,377,601,698659980,10559,0 +25781,18.Wszystko+si,635,411,849060446,9735,0 +25782,020...P%C3%93%C5%81NOCKA,463,349,6920960,10495,0 +25783,Taki+Pan,499,343,698739350,6264,0 +25784,tego+nie,515,659,699494488,10495,0 +25785,Jestem+Poza+Kontrol%C4%85,352,550,8004076,8038,0 +25786,75.,622,398,849060446,9735,0 +25787,067,627,596,698786826,9457,0 +25788,Wioska+barbarzy%C5%84ska,633,412,699429153,8961,0 +25789,RE5,350,450,6258092,8655,0 +25790,021...P%C3%B3%C5%82noc,463,345,6920960,10495,0 +25791,Z+004,493,339,6384450,7771,0 +25792,Silva,523,348,699491076,8060,4 +25793,Lecymy+DUR,428,360,6169408,5513,0 +25794,023...P%C3%93%C5%81NOC,461,350,6920960,10495,0 +25795,0457,379,602,699513260,4634,0 +25796,0465,376,600,699513260,3408,0 +25797,114+Wioska+barbarzy%C5%84ska,545,346,699491076,9550,0 +25798,Lord+Lord+Franek+.%23033,526,342,698420691,9957,0 +25799,Pobozowisko,388,597,699513260,9638,0 +25800,Lord+Lord+Franek+.%23052,533,343,698420691,10023,0 +25801,Wioska+barbarzy%C5%84ska,569,645,699828685,9646,0 +25802,%230263+deleted,474,346,1238300,2705,0 +25803,%230019+kamilsan993,465,343,1238300,10178,0 +25804,Wioska+barbarzy%C5%84ska,493,345,698739350,7485,0 +25806,MInas+Morgul,627,600,849096285,4411,0 +25807,049.,410,627,2665207,9835,0 +25808,097,622,605,698786826,10495,0 +25809,Szlachcic,404,371,698160606,10484,9 +25810,CSA,500,340,698739350,3892,0 +25811,cc+008,401,378,3909522,8495,0 +25812,0086,585,630,698659980,10160,6 +25813,Avanti%21,346,503,698625834,9950,0 +25814,Klaudek6,592,368,849092309,7172,0 +25815,245...SOUTH,476,347,6920960,4283,0 +25816,M181_024,357,424,393668,9888,0 +25817,MojeDnoToWaszSzczyt,561,357,699697558,10160,0 +25818,012%7C%7C+Pisces,470,636,849035525,10019,0 +25819,Wioska+Bochun10,346,478,7449254,10495,0 +25820,2AA,355,434,7765098,8449,0 +25821,Monetki,476,417,699098531,10294,0 +25822,010+nie+ma+spania+na+wyjazdach,445,650,699238479,4752,0 +25823,043+Kirkwall,629,593,699272880,8324,0 +25824,Jednak+wol%C4%99+gofry,473,658,699725436,10362,6 +25825,36.,352,548,8004076,5282,0 +25826,Piek%C5%82o+to+inni,564,354,848956765,10160,0 +25827,Banan%233,588,370,699485250,8152,3 +25828,%23001,379,395,8967440,7018,0 +25829,psycha+sitting,451,642,699736927,10311,0 +25830,EMERYTOWANY+KUZYN,432,644,848913998,4216,0 +25831,Lord+Lord+Franek+.%23034,523,347,698420691,9955,0 +25832,R%C4%99cznik+do+zmiany,374,408,699697558,10160,0 +25833,P023+Soul+Society,653,519,8096537,9949,8 +25834,wioska+Papatryk94,623,600,699778867,12154,0 +25835,Lecymy+DUR,431,358,6169408,3881,0 +25836,R%C4%99cznik+do+zmiany,370,412,699697558,9568,0 +25837,0033+MzM,625,593,698416970,9128,0 +25838,Wioska+%28039%29,644,438,698232227,5022,0 +25839,025+MONETKI,657,489,7588382,9777,0 +25840,Taki+Pan,512,340,698739350,4677,0 +25841,039+kryzys,570,641,699828685,9976,0 +25842,Sony+911,587,631,1415009,10464,0 +25843,K34+-+%5B125%5D+Before+Land,439,351,699088769,10259,0 +25844,sony911,583,633,1415009,10220,0 +25845,Gattacka,618,390,699298370,10142,0 +25846,KREV+002,644,567,848988744,9585,0 +25848,Macp+3,340,512,61791,5614,0 +25849,Szlachcic%2FTaran,621,396,699759128,10237,0 +25850,Valhalla+5,381,606,849097002,8443,0 +25851,Wioska+barbarzy%C5%84ska,400,379,849027025,10229,0 +25853,Myk+i+do+kieszonki,355,565,9319058,9799,0 +25854,Wioska+barbarzy%C5%84ska,432,623,6910361,4425,0 +25855,005%29+Strzelin,545,344,849097103,5004,0 +25857,A0240,342,487,8841266,10252,0 +25858,Wioska+barbarzy%C5%84ska,533,654,529552,10317,0 +25859,085.,485,654,849034882,9341,0 +25860,Jestem+Poza+Kontrol%C4%85,343,529,8004076,9880,0 +25861,Wioska+Bochun10,345,483,7449254,10311,0 +25862,Wioska+014,392,389,8419570,10204,0 +25863,%2ANalfabet+ulic,575,643,699443920,5326,0 +25864,MojeDnoToWaszSzczyt,562,355,699697558,10160,0 +25865,K33+x002,394,387,698364331,3941,0 +25866,MInas+Ithil,626,599,849096285,4596,0 +25867,K34+-+%5B104%5D+Before+Land,442,354,699088769,9783,0 +25868,025+%7C+PALESTINA,646,444,9228039,9544,0 +25869,010.,399,626,2665207,9761,0 +25870,093,656,543,699351301,10019,0 +25871,A035+Wioska+barbarzy%C5%84ska,650,460,113796,10149,0 +25872,080,624,603,698786826,10495,0 +25873,%23.27+Wioska+barbarzy%C5%84ska,659,479,849054582,6113,0 +25874,B10,647,446,849093742,10019,0 +25875,Szlachcic,409,374,698160606,10478,0 +25876,mpiechu,652,456,113796,10139,5 +25877,Mordor,438,350,849096310,9637,0 +25878,025,564,645,699828685,9976,0 +25879,%C5%BBUBRAWKA+004,600,622,33900,10069,0 +25880,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,660,699828442,9809,0 +25881,Twierdza,618,393,699298370,8172,0 +25882,011.,400,623,2665207,9835,0 +25883,059.,391,622,2665207,9835,0 +25884,Wioska+barbarzy%C5%84ska+.,582,637,848995242,10495,0 +25886,035,481,345,698739350,10104,0 +25888,DW3,346,449,6258092,10444,0 +25889,Skazany+Na+Instynkt,366,578,8004076,8986,0 +25890,20+Osgiliath,452,653,699849210,3539,0 +25892,K34+-+%5B138%5D+Before+Land,433,353,699088769,9783,0 +25893,cofn%C4%85%C4%87,627,400,699429153,9889,0 +25894,LadyAnimavillis,601,620,699703642,9994,2 +25895,039.,398,622,2665207,9835,0 +25896,Taki+Pan,508,344,698739350,7923,0 +25897,KlikKlak,341,528,849096458,8883,0 +25898,081,625,602,698786826,10444,0 +25900,051+csodo,658,484,2135129,10147,0 +25902,Lecymy+DUR,431,362,6169408,6405,0 +25903,0490,531,653,698659980,10362,0 +25905,04.+Przystanek+pod+palcem,370,595,8665783,10085,0 +25906,R%C4%99cznik+do+zmiany,368,411,699697558,10160,0 +25907,Chekku+-+meito,343,530,9280477,10012,0 +25908,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,531,654,699828442,9805,0 +25909,Avanti%21,346,516,698625834,9950,0 +25910,040,652,556,699316421,7549,0 +25911,016+jogurtowy+serniczek,499,655,8954402,10160,0 +25912,MojeDnoToWaszSzczyt,561,352,699697558,10160,0 +25913,Tars,420,636,849089459,12154,0 +25914,%2ANesco,572,644,699443920,9114,0 +25915,026+MONETKI,659,484,7588382,9634,0 +25916,043,651,553,699316421,5815,0 +25917,Pocz%C4%85tek,354,433,393668,6154,0 +25918,Wioska+Kaffiks+IX,636,579,6136757,5152,0 +25919,Osada+cadownik%C3%B3w,376,604,8607734,9859,9 +25920,cc+02+Wioska+barbarzy%C5%84ska,406,375,3909522,8307,0 +25921,North+Barba+008,420,363,699796330,9644,0 +25922,%23.34+Wioska+barbarzy%C5%84ska,658,478,849054582,5221,0 +25923,Piek%C5%82o+to+inni,571,356,848956765,10160,0 +25924,Oww+Konfederacja,601,390,848915730,6884,0 +25925,North+Barba+014,426,357,699796330,10220,0 +25926,Lecymy+DUR,432,356,6169408,5213,0 +25927,%7E%7E051%7E%7E,607,613,7829201,9491,0 +25929,15.+Kamper,378,595,8665783,9176,0 +25930,083.,483,657,849034882,10495,9 +25931,Wioska+koliber2,541,658,529552,2163,0 +25932,004.,398,621,2665207,9835,0 +25934,038+kryzys,569,643,699828685,9976,0 +25935,Wioska+barbarzy%C5%84ska,364,423,393668,9912,0 +25936,Wioska+barbarzy%C5%84ska,648,455,699524891,9753,0 +25937,115+Wioska+barbarzy%C5%84ska,548,346,699491076,9632,0 +25938,D18,656,542,848995478,5017,0 +25940,Wioska+Kaffik+VIII,635,578,6136757,6340,0 +25941,EMERYTOWANY+KUZYN,424,636,848913998,10311,0 +25942,BAC%C3%93WKA+%7C001%7C,632,413,7394371,12154,0 +25943,Jestem+Poza+Kontrol%C4%85,346,546,8004076,9880,0 +25944,The+Game+Has+Only+Just+Begun,346,524,9280477,9976,0 +25945,%230259+deleted,479,340,1238300,2205,0 +25946,D%C4%85browa+0005,366,589,849096972,10019,0 +25947,Wioska+barbarzy%C5%84ska,442,357,699393759,6419,0 +25948,MojeDnoToWaszSzczyt,567,353,848915730,9976,0 +25949,Owp+Konfederacja,603,382,848915730,6620,0 +25950,K34+-+%5B121%5D+Before+Land,438,351,699088769,10259,0 +25951,The+Game+Has+Only+Just+Begun,345,517,9280477,9976,0 +25952,MRF+004,630,584,118121,8782,0 +25953,R%C4%99cznik+do+zmiany,370,415,699697558,10160,0 +25954,DajankA+07,353,555,849012843,10160,0 +25955,Wioska+001,390,615,848912772,10178,0 +25956,kathare,559,645,873575,10401,3 +25957,Chekku+-+meito,344,531,9280477,9976,0 +25958,xyz+%23014+TerrorMachine,580,362,7555180,6321,0 +25959,031,659,513,849006412,5482,0 +25960,B+049,660,521,8078914,7713,0 +25961,A027+Greg+Wioska+6,651,443,113796,10160,0 +25962,cc+Wioska+675,401,373,3909522,6030,0 +25963,Wioska+Barba+III,382,398,8967440,3451,0 +25964,Krosno+9,530,348,7485877,4936,0 +25965,%C5%BBUBRAWKA+002,603,620,33900,10259,0 +25966,062,655,525,699351301,9552,0 +25967,007+Jurassik+World,543,348,699491076,10001,9 +25968,Szlachcic,349,461,6258092,10160,0 +25969,%2A014+Nemeczek%2A,363,414,2415972,8931,0 +25970,Wioska+Bochun10,344,482,7449254,10311,0 +25971,Chekku+-+meito,345,524,9280477,9000,0 +25972,0458,381,602,699513260,4897,0 +25973,R%C4%99cznik+do+zmiany,371,406,699697558,10160,9 +25974,Jestem+Poza+Kontrol%C4%85,352,555,8004076,9880,0 +25975,Lecymy+DUR,428,357,6169408,6299,0 +25976,2.03,344,454,6258092,4979,0 +25977,Aulas,420,639,849089459,9016,0 +25978,Chekku+-+meito,342,525,9280477,9002,0 +25979,PZ037,657,515,8096537,9809,0 +25980,B027,655,490,9314079,9819,0 +25981,Architekci+Plac%C3%B3w+Boju,344,543,8004076,9880,0 +25982,028+MONETKI,661,480,7588382,9711,0 +25983,7.62+mm,367,408,699777234,5631,0 +25984,%23004+Grunburg,374,590,8607734,10019,0 +25985,20.+Czuwaj,627,410,849060446,9735,0 +25986,05.+Wiadukt+na+dopko,376,595,8665783,10377,0 +25987,005...ZACH_A,454,347,6920960,10495,3 +25988,A0231,343,497,8841266,10252,0 +25989,Ave+Why%21,438,636,698585370,10019,0 +25990,%5B0009%5D,560,630,699567608,9981,0 +25991,R%C4%99cznik+do+zmiany,371,405,699697558,9717,0 +25993,%2A4624%2A+Piko,648,437,7973893,10287,0 +25994,%28%2B%29%28%2B%29,587,636,1415009,10228,0 +25995,035,570,645,699828685,10209,0 +25996,Wioska+barbarzy%C5%84ska,632,414,699429153,6651,0 +25997,068,620,598,698786826,7808,0 +25998,Wioska+Bochun10,341,507,7449254,6381,0 +25999,Jestem+Poza+Kontrol%C4%85,348,539,8004076,9880,0 +26000,0078,628,599,698416970,10252,0 +26001,stop,618,403,849060446,9735,0 +26002,046.+Oea,658,467,849091866,10004,0 +26003,D+019,658,501,8078914,3865,0 +26004,Lecymy+DUR,431,357,6169408,6891,0 +26005,0121,581,633,698659980,10019,0 +26006,Wioska+Bochun10,339,495,7449254,10311,0 +26007,16.+Wiejskie+potupanki,368,592,8665783,9166,0 +26008,023+-+Mroczna+Osada,636,418,849035905,11130,0 +26009,%23002+Zenit+to+KR%C3%93L,353,441,849096215,8577,0 +26010,CSA,502,340,7651093,3203,0 +26012,%7C024%7C+Faliraki,498,662,699393742,9881,0 +26013,Kentin+ufam+Tobie,340,477,699783765,10000,0 +26014,A-035,387,387,8419570,10332,0 +26015,05.+Yellowbird,495,661,849100262,9447,0 +26016,M181_044,360,432,393668,10611,4 +26017,005+Mekka,379,394,849059457,8969,0 +26018,0152,630,596,698416970,5185,0 +26019,Wioska+barbarzy%C5%84ska,344,551,8004076,771,0 +26020,Jehu_Kingdom_20,650,461,8785314,8498,6 +26021,011+Deiren,642,422,9238175,10375,0 +26022,Dajanka+16,352,551,849012843,5187,0 +26023,041+VANITAS,388,611,6354098,10160,0 +26024,Szlachcic,346,464,6258092,10083,0 +26025,A+008,606,379,6384450,10362,0 +26026,Dajanka+12,350,554,849012843,7421,0 +26027,17.+G%C3%B3rna+Wilda,506,660,849092769,11526,0 +26028,CHARFA,516,342,699072129,10220,0 +26029,Wioska+Bochun10,339,499,7449254,10311,0 +26030,Wioska+barbarzy%C5%84ska,631,408,699429153,9825,0 +26031,070+Wioska+barbarzy%C5%84ska,542,351,699491076,10001,0 +26032,039,651,549,849095227,9761,0 +26033,029+%7C+PALESTINA,643,440,9228039,7803,0 +26034,Lecymy+DUR,431,356,6169408,6188,0 +26035,018+nie+ma+spania+na+wyjazdach,444,645,699238479,5608,0 +26036,0491,536,658,698659980,10019,0 +26037,The+Game+Has+Only+Just+Begun,346,538,9280477,9976,0 +26038,089,658,549,699351301,3281,0 +26039,036,658,496,7085502,9726,0 +26040,off+100+%25,352,565,849012521,10257,0 +26041,a+mo%C5%BCe+off+%3F+%3A%29,627,594,698768565,9870,4 +26042,%5B028%5D,642,530,698305474,8176,0 +26043,North+Barba+012,421,367,699796330,9886,0 +26044,Dodowo,345,529,849096458,9323,0 +26045,Denger+16,364,587,698353083,9648,0 +26046,Kentin+ufam+Tobie,342,465,699783765,10011,6 +26047,%23.38+Wioska+barbarzy%C5%84ska,658,476,849054582,3160,0 +26048,%230027+barbarzy%C5%84ska,467,345,1238300,10178,0 +26049,003+MONETKI,656,464,7588382,9710,1 +26050,004,491,661,698650301,8494,0 +26051,037,650,561,699316421,9744,0 +26053,Skowronek,338,499,699265922,9860,0 +26056,A0241,340,492,8841266,10252,0 +26057,Jednak+wol%C4%99+gofry,435,648,699736927,10242,0 +26059,Chekku+-+meito,340,522,9280477,9976,0 +26060,048.,406,630,2665207,8787,0 +26061,003,655,534,699351301,11803,8 +26062,106,650,442,849088515,10019,0 +26063,013%29+Jordan%C3%B3w+%C5%9Al%C4%85ski,540,348,849097103,5673,0 +26064,070+%7C+PALESTINA,635,420,9228039,9544,0 +26065,BAC%C3%93WKA+%7C007%7C,627,405,7394371,12154,0 +26066,historia+blisko+3,619,601,699778867,11550,0 +26067,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,647,1434753,10068,0 +26068,Jestem+Poza+Kontrol%C4%85,351,550,8004076,9797,0 +26069,072+rest,641,429,9238175,10216,0 +26070,Zbira,394,383,606706,5815,0 +26071,deff+100%25,358,573,849012521,5692,0 +26072,036+barbarzy%C5%84ska,641,427,9238175,6705,0 +26073,Czarodziejka+z+Wenus,425,637,849006145,5873,0 +26074,%3F002,539,656,699828685,9976,0 +26075,%230008+barbarzy%C5%84ska,464,350,1238300,10178,0 +26076,Monetio,445,352,699191464,10495,0 +26077,Jan+dzik+IV,643,436,879782,7565,0 +26078,Bagienko.Anker...,380,397,699713515,8443,2 +26079,012+Eldorado,657,491,2135129,9500,0 +26080,%3F008,541,657,699828685,9976,0 +26081,012.+Dla+flag,352,440,698630507,2309,0 +26082,llllllllll,624,400,699429153,9825,0 +26083,MojeDnoToWaszSzczyt,562,353,699697558,10160,0 +26084,027,662,500,7085502,9740,0 +26085,Chekku+-+meito,341,515,9280477,10319,0 +26086,Piek%C5%82o+to+inni,564,355,848956765,10160,0 +26087,Darma+dla+zawodnika,510,660,849004274,10495,0 +26088,044,651,547,698999105,10311,0 +26089,079,440,638,849084985,12154,0 +26090,Lecymy+DUR,437,358,6169408,6206,0 +26091,020+Ellander,458,655,699834004,7745,0 +26092,Szlachcic,344,458,6258092,7701,0 +26094,M181_041,358,429,393668,8885,0 +26095,Wioska+barbarzy%C5%84ska,626,407,699429153,9825,0 +26096,North+Barba+017,423,360,699796330,9750,0 +26098,Bagdad,501,338,8847546,10068,0 +26099,B028,657,493,9314079,10052,0 +26100,kathare,556,638,873575,10256,0 +26101,Wioska+barbarzy%C5%84ska,557,353,699072129,10220,0 +26102,%7E%7ELataj%C4%85cyHolender%7E%7E,576,505,9174887,10160,0 +26103,Jednak+wol%C4%99+gofry,436,644,699736927,9331,0 +26104,C005,610,386,699485250,10211,0 +26105,Taran+016,600,372,7462660,9761,0 +26106,Osada+koczownik%C3%B3w,552,346,699072129,10220,4 +26108,R%C4%99cznik+do+zmiany,371,408,699697558,10160,0 +26109,DW1,347,448,393668,10311,0 +26110,Jestem+Poza+Kontrol%C4%85,351,552,8004076,9880,4 +26111,078,629,591,698999105,6714,0 +26112,Pobozowisko,385,612,699513260,8881,0 +26113,Myk+i+do+kieszonki,357,566,9319058,9799,0 +26114,Jednak+wol%C4%99+gofry,435,646,699736927,5789,0 +26115,A019+go%C5%9B%C4%87+KamilToJa,651,458,113796,10224,0 +26116,Jestem+Poza+Kontrol%C4%85,350,548,8004076,9880,0 +26117,012.zbyszek,341,518,1830149,9794,0 +26118,R%C4%99cznik+do+zmiany,369,410,699697558,10160,0 +26120,Krosno+2,534,341,7485877,6562,0 +26121,R%C4%99cznik+do+zmiany,369,406,699697558,10160,0 +26123,062,630,589,698999105,8740,0 +26124,off+100+%25,356,569,849012521,10273,0 +26125,1v9+machine,390,619,699697558,10019,0 +26126,Darma+dla+zawodnika,516,662,699494488,10476,1 +26127,ADEN,516,374,698588535,10144,0 +26128,Obrze%C5%BCa+093,555,652,848915531,5251,0 +26129,MojeDnoToWaszSzczyt,561,355,699697558,10160,0 +26130,R%C4%99cznik+do+zmiany,373,403,699697558,10019,0 +26131,Pobozowisko,385,606,699513260,5836,0 +26132,004%7C%7C+Cancer,479,658,849035525,10019,0 +26133,Szlachcic,348,460,6258092,9050,0 +26134,036,653,533,699351301,8309,0 +26135,Wioska+barbarzy%C5%84ska,537,657,7756002,9904,0 +26136,North+Barba+011,419,363,699796330,9889,0 +26137,The+Game+Has+Only+Just+Begun,343,517,9280477,9976,0 +26138,jaaa,639,574,698635863,10495,0 +26139,%23.24+Wioska+barbarzy%C5%84ska,655,474,849054582,6183,0 +26140,%230045+barbarzy%C5%84ska,469,344,1238300,10178,0 +26141,0134,429,375,699431255,10019,0 +26142,011+VW+Wioska+barbarzy%C5%84ska,366,409,3108144,5936,0 +26143,I%23013,601,377,2065730,9797,0 +26144,DW10,345,446,393668,10375,0 +26145,Szlachcic,404,370,698160606,10478,0 +26146,Czarodziejka+z+Merkurego,426,637,849006145,9089,0 +26147,Polanie,480,341,849048216,5322,0 +26148,Wioska+barbarzy%C5%84ska,479,344,699244334,1702,0 +26149,K34+-+%5B103%5D+Before+Land,450,351,699088769,10259,0 +26151,Wioska+Kaffik+V,634,583,6136757,7140,0 +26152,A-012,393,387,8419570,10245,0 +26153,A-031,392,387,8419570,10168,0 +26154,021,510,657,2293376,9993,0 +26155,14.+Altanka+u+ple%C5%9Bni,377,595,8665783,8702,0 +26156,A023+Ateny,653,458,113796,10160,0 +26157,Pobozowisko,388,608,699513260,7399,0 +26158,C004..,366,582,849090130,10495,0 +26159,Malinki+5,657,518,8013349,6418,0 +26160,Monia+i+Ruch,594,566,8742874,9344,0 +26161,Dajanka+04,355,559,849012843,11824,0 +26162,0011,387,382,8419570,10204,0 +26163,044.+Valentia,653,469,849091866,9641,0 +26165,04+Wioska,443,651,698993706,9740,0 +26166,Wioska+Bochun10,342,506,7449254,8857,0 +26167,Taki+Pan,506,338,698739350,6286,0 +26168,kathare,557,648,873575,10183,0 +26169,psycha+sitting,457,650,699736927,10178,0 +26170,Krab,434,353,849096310,9202,0 +26171,Gattacka,614,387,699298370,10470,0 +26172,Jednak+wol%C4%99+gofry,473,655,699725436,10178,0 +26174,Jednak+wol%C4%99+gofry,436,649,699736927,9408,0 +26175,NI4,345,459,6258092,10495,0 +26176,Dajanka+35,356,576,849012843,2125,0 +26177,.najazd+i+ostrzal+zrobiony,550,652,7589468,9827,6 +26178,Zero+Stresu,445,536,698971484,10047,0 +26179,Jestem+Poza+Kontrol%C4%85,353,551,8004076,8659,0 +26183,002+Elizjum,378,393,849059457,8682,0 +26184,Igneum+Castrum,631,594,8337151,9245,0 +26185,013.,395,623,2665207,9835,0 +26186,095+duko+4,549,353,699491076,10001,0 +26187,Bunkier+001,614,607,699778867,10002,0 +26188,Ave+Why%21,477,654,698585370,10116,0 +26189,Wioska+barbarzy%C5%84ska,488,343,698739350,8401,0 +26190,BEZDZIETNY+KAWALER,416,631,848913998,5224,8 +26191,02.02.02,371,594,8665783,10195,0 +26192,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,392,620,849097937,9772,4 +26194,008.+Dla+flag,356,440,698630507,6669,0 +26195,Szulernia,410,365,7249451,9981,1 +26196,Sexxy+P,606,621,8815749,10019,0 +26197,0492,530,658,698659980,9750,0 +26198,007,659,526,699351301,11550,0 +26199,017%7C%7C+Ursa+Major,500,659,849035525,10019,0 +26200,Jednak+wol%C4%99+gofry,436,647,699736927,6759,0 +26201,044%2Cxxx,512,660,849004274,10402,0 +26202,015+barbarzy%C5%84ska,642,421,9238175,10281,0 +26203,Lord+Lord+Franek+.%23053,528,343,698420691,9962,0 +26204,KR%C3%93L+PAPI+WIELKI,600,624,698191218,7333,0 +26205,041,659,492,7085502,9650,0 +26206,Piek%C5%82o+to+inni,563,355,848956765,10160,0 +26207,%230094+barbarzy%C5%84ska,460,343,1238300,8854,0 +26208,Wioska+barbarzy%C5%84ska,535,344,698350371,4891,0 +26209,Chekku+-+meito,343,526,9280477,9167,0 +26210,035+barbarzy%C5%84ska,643,425,9238175,6153,0 +26211,015,425,639,849089459,9022,0 +26212,D+011,661,503,8078914,9668,0 +26213,Architekci+Plac%C3%B3w+Boju,343,539,8004076,8986,0 +26214,019.,400,625,2665207,9835,0 +26216,BAC%C3%93WKA+%7C044%7C,627,401,7394371,10109,0 +26217,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,660,699828442,9825,0 +26218,0008,417,366,848913037,9993,0 +26219,061.+Ariminium,645,468,849091866,8640,0 +26220,211...barba,465,348,6920960,4758,0 +26221,North+Barba+026,422,361,699796330,9747,0 +26222,BEZDZIETNY+KAWALER,415,635,848913998,8538,0 +26223,Wioska+pdw78,472,650,698585370,9164,0 +26224,K34+-+%5B102%5D+Before+Land,443,351,699088769,10259,0 +26225,%23.41+Wioska+barbarzy%C5%84ska,648,470,849054582,2773,0 +26226,Wioska+barbarzy%C5%84ska,653,453,699524891,9554,0 +26227,K34+-+%5B013%5D+Before+Land,447,349,699088769,10259,0 +26228,Myk+i+do+kieszonki,359,581,9319058,9994,0 +26229,013.+Dla+flag,349,442,698630507,8082,0 +26230,D%C4%85browa+0014,364,576,849096972,10718,0 +26231,%230004+BigKnaga,467,343,1238300,10178,0 +26232,A007,405,625,848912772,4378,0 +26234,Bagienko.Anker...,377,399,699713515,8711,0 +26235,015+VW+Wioska+barbarzy%C5%84ska,363,415,3108144,5420,0 +26236,BAC%C3%93WKA+%7C008%7C,632,412,7394371,12154,0 +26237,Piek%C5%82o+to+inni,577,361,848956765,10160,0 +26240,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,377,607,849097937,9854,0 +26241,%7CA%7C+Capitol,480,648,698807570,10495,0 +26243,MojeDnoToWaszSzczyt,568,353,848915730,9938,0 +26244,0009,612,610,6417987,7366,0 +26245,North+Barba+020,425,355,699796330,9971,0 +26247,qqq,628,400,699429153,9966,0 +26248,007+MONETKI,654,469,7588382,8401,0 +26249,Jestem+Poza+Kontrol%C4%85,348,560,8004076,9880,0 +26251,20.+%C5%81owcza%C5%84skie+wygibasy,370,593,8665783,8512,0 +26252,Aboard+na,489,659,849004274,9835,0 +26253,Avanti%21,345,513,698625834,9950,0 +26254,Jehu_Kingdom_59,644,437,8785314,4635,0 +26255,098,618,607,698786826,10495,0 +26257,The+Game+Has+Only+Just+Begun,344,522,9280477,9976,0 +26259,%2A036%2A,631,590,698670524,8289,0 +26260,099,620,606,698786826,10495,0 +26261,Valhalla+A2,376,603,849097002,8071,0 +26262,A029+La+Mata,655,457,113796,10160,0 +26263,%2ALister,576,638,699443920,9994,0 +26264,The+Game+Has+Only+Just+Begun,348,536,9280477,9976,6 +26265,071+%7C+PALESTINA,636,421,9228039,9976,0 +26266,Hibana,372,590,849095992,8733,0 +26267,Krzychu+%2C+kadetem+tera+.,588,630,848995242,10362,7 +26268,%2ANomad,578,642,699443920,9761,0 +26269,Szlachcic,346,461,6258092,10019,0 +26270,032,569,641,699828685,9976,0 +26271,Wioska+Tomek+z+Tyyrra+X+Adam547,371,400,610196,398,0 +26272,Wioska+Bochun10,337,501,7449254,8339,0 +26274,0588,544,656,698659980,9821,0 +26275,off+100+%25,361,575,849012521,10248,0 +26276,Taras,590,365,699485250,10211,5 +26278,024,656,526,699351301,9840,0 +26279,%2ANonsens,577,643,699443920,9761,0 +26280,Wioska+barbarzy%C5%84ska,347,446,393668,6431,0 +26281,Chekku+-+meito,339,525,9280477,10066,0 +26282,MojeSzczytToTw%C3%B3jDno,510,338,828637,10720,0 +26284,079...barbarka,460,346,6920960,10226,0 +26285,034,659,490,7085502,9520,9 +26287,Piek%C5%82o+to+inni,570,358,848956765,10160,0 +26288,Wioska+majonespzn,614,613,6417987,10495,0 +26289,98k%24+Grvvyq,652,559,699676005,10495,0 +26290,c+Wioska+015,395,387,3909522,8745,0 +26291,Nowa+31,646,567,698702991,9824,0 +26292,No+Way,345,451,6258092,10495,0 +26293,109,348,459,6258092,10019,0 +26294,The+Game+Has+Only+Just+Begun,345,515,9280477,9976,0 +26295,Battery,630,595,848926293,4789,0 +26296,Maszlug+kolonia+XVI,364,420,848977649,5360,0 +26297,079,628,597,698999105,3585,0 +26298,083,653,556,849095227,9761,0 +26299,064...barbarka,456,346,6920960,10237,0 +26300,Wioska+002,388,614,848912772,10178,0 +26301,024.barbara+8,339,508,1830149,4451,0 +26302,0630,379,601,698659980,10559,0 +26303,JawwmG+P,651,561,698635863,9574,0 +26304,A047,587,365,699485250,7699,0 +26305,16.+Trumienka,637,412,699298370,9711,0 +26306,Wioska+Bochun10,339,500,7449254,8895,0 +26307,041,649,552,698999105,10311,0 +26308,Ave+Why%21,497,658,698585370,9818,0 +26309,Jaaa,623,596,698635863,10479,0 +26310,EMERYTOWANY+KUZYN,428,639,848913998,4267,0 +26311,O22+Inari,660,523,699272880,10016,0 +26313,045,655,547,698999105,10311,0 +26314,Wioska+barbarzy%C5%84ska,612,609,6417987,5719,0 +26315,0023,413,366,848913037,8580,0 +26316,.030.,486,370,698489071,10393,0 +26317,0293,533,659,698659980,10019,0 +26318,Lord+Lord+Franek+.%23054,532,344,698420691,9968,0 +26319,Jestem+Poza+Kontrol%C4%85,349,550,8004076,8653,0 +26320,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,656,699828442,9808,0 +26321,kulik+000,400,508,698290577,9877,0 +26322,Wioska+barbarzy%C5%84ska,649,567,699316421,1851,0 +26324,A0250,338,488,8841266,10252,0 +26325,KUZYN,413,637,848913998,10160,0 +26326,082,617,606,698786826,10495,0 +26327,Macp+4,339,514,61791,4104,0 +26329,ona,389,386,8419570,10168,0 +26330,K34+-+%5B019%5D+Before+Land,450,355,699088769,10259,0 +26331,K34+-+%5B127%5D+Before+Land,444,347,699088769,10016,0 +26334,Darmowe+przeprowadzki,474,660,848935389,11321,0 +26335,037+mys,556,648,699828685,9976,0 +26336,M181_043,358,425,393668,9321,0 +26337,Wioska+003,388,613,848912772,10178,0 +26338,090...bar,457,343,6920960,10301,0 +26339,Wioska+barbarzy%C5%84ska,483,369,699658023,9645,0 +26340,0456,378,602,698659980,3942,0 +26341,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,658,699828442,9825,0 +26342,23.+KaruTown,638,413,849060446,9735,0 +26343,%23.18+XXX,661,475,849054582,10019,0 +26345,Szulernia,410,364,7249451,9989,0 +26346,010,484,657,848953066,11130,0 +26347,Wiocha,426,363,849096544,10728,0 +26348,KREV+003,644,564,848988744,9188,0 +26349,0193,556,650,698659980,10019,0 +26350,%C5%BBUBRAWKA+009,600,629,33900,10005,0 +26351,MojeSzczytToTw%C3%B3jDno,511,342,828637,10474,0 +26352,%2A040,590,635,699567608,9387,0 +26353,Lord+Lord+Franek+.%23035,521,344,698420691,10047,0 +26354,psycha+sitting,448,649,699736927,10311,0 +26355,Wioska+Bochun10,338,497,7449254,10495,3 +26356,038,654,545,849095227,9797,0 +26357,%230060+barbarzy%C5%84ska,468,341,1238300,10178,0 +26358,NI2,347,458,6258092,10495,0 +26359,0024,415,369,848913037,8817,0 +26360,Szlachcic,347,465,6258092,10393,0 +26361,Lord+Lord+Franek+.%23055,534,343,698420691,9960,0 +26362,Dzielnica+handlowa,481,341,849048216,4918,0 +26363,off+100+%25,355,572,849012521,10256,0 +26364,016%29+Pustk%C3%B3w+Wilczkowski,538,348,849097103,2807,0 +26365,Krosno+11,532,341,7485877,4281,0 +26366,041...ZACH%C3%93D,453,345,6920960,10220,0 +26367,I%23021,598,372,2065730,8287,0 +26368,0024,418,358,699431255,9958,0 +26369,Lord+Lord+Franek+.%23056,537,343,698420691,10029,0 +26370,So%C5%82tys+Wsi+Legionistars,396,377,849027025,7586,0 +26371,yogi+czysta,546,651,2808172,6469,0 +26372,022+Pot%C4%99%C5%BCny+Dzban,392,561,699382126,10474,0 +26373,049,638,532,699351301,10160,0 +26374,011,484,663,848953066,9197,0 +26376,Wioska+barbarzy%C5%84ska+II,377,402,8967440,2861,0 +26377,Jestem+Poza+Kontrol%C4%85,345,540,8004076,9764,0 +26378,Sony+911,639,585,1415009,7947,0 +26379,Lecymy+DUR,436,358,6169408,10247,0 +26380,D+004,659,503,8078914,9244,0 +26382,014,458,652,698650301,7148,0 +26383,M181_020,359,429,393668,9675,0 +26384,troja4,560,350,698290319,9955,0 +26385,K34+x033,409,367,698364331,10838,0 +26386,Wioska+barbarzy%C5%84ska,618,389,698241117,6980,0 +26387,cc+Sqnow,409,376,3909522,10160,0 +26388,Szlachcic,345,461,6258092,10019,0 +26389,005+Mikrus+V,392,619,8268010,9835,0 +26390,Piek%C5%82o+to+inni,574,360,848956765,10160,0 +26391,110,630,410,7085502,9899,0 +26392,12.+Danucha,372,600,8665783,10273,0 +26393,x005,357,568,9264752,10495,0 +26394,Z%C5%82a,540,349,570100,4661,0 +26395,cc+pol006,398,376,3909522,5446,0 +26396,MojeSzczytToTw%C3%B3jDno,511,340,828637,10476,0 +26397,008%29+S%C5%82upiec,545,350,849097103,2574,0 +26398,Weso%C5%82ych+%C5%9Awi%C4%85t,572,354,848915730,10066,0 +26399,cc+Wielka+Mqqqqqqqqqqqqqqq,407,376,3909522,10155,0 +26400,Darma+dla+zawodnika,514,656,699494488,10475,0 +26401,%3D037%3D+Wioska+barbarzy%C5%84ska,655,552,3781794,8874,0 +26402,Janusz+biznesu,590,627,848995242,10495,0 +26403,017+bounce+xD,589,365,1018357,10019,0 +26404,026,564,646,699828685,9976,0 +26405,MojeDnoToWaszSzczyt,559,352,699697558,10160,0 +26406,BEZDZIETNY+KAWALER,418,635,848913998,9118,0 +26408,Wioska+barbarzy%C5%84ska,659,469,699574408,8683,0 +26409,Dzikie+wsparcie,470,658,848935389,9809,0 +26410,Myk+i+do+kieszonki,359,578,9319058,9799,0 +26411,018+koczownik%C3%B3w,641,424,9238175,10282,9 +26412,Obrze%C5%BCa+092,551,652,848915531,7712,0 +26413,Jaaa,660,489,698635863,10322,0 +26414,JEDNOR%C4%98KI+BANDYTA,411,634,848913998,10083,0 +26415,Wioska+037,632,591,848971079,9761,0 +26416,MojeSzczytToTw%C3%B3jDno,508,340,828637,10495,0 +26417,044...P%C3%93%C5%81NOC,461,344,6920960,10265,0 +26418,0041,417,367,848913037,9993,8 +26419,017,424,642,699736927,3637,0 +26420,Wioska+NePtuNn998,465,660,698807570,10118,0 +26421,DW9,346,446,393668,10223,0 +26422,0197,557,650,698659980,10083,0 +26423,A017+go%C5%9B%C4%87+D0dG3r3k,657,465,113796,10301,0 +26424,Wioska+barbarzy%C5%84ska,379,398,848886056,3479,0 +26425,Wioska+barbarzy%C5%84ska,346,445,393668,7540,0 +26426,cc+Wioska+M6,403,375,3909522,8201,0 +26427,sony911,586,639,1415009,10226,0 +26428,Chekku+-+meito,344,528,9280477,9140,0 +26429,BEZDZIETNY+KAWALER,414,632,848913998,6857,0 +26430,067+%7C+PALESTINA,642,427,9228039,3469,0 +26431,North+P%C5%82o%C5%84sk,426,356,699796330,9898,0 +26432,Szlachcic,405,372,698160606,10487,0 +26433,Chekku+-+meito,343,533,9280477,9179,0 +26434,0002,412,370,848913037,9993,0 +26435,049,645,565,699316421,9425,0 +26436,Wioska+barbarzy%C5%84ska,399,371,698160606,7532,0 +26437,%2A034%2A,633,588,698670524,7205,0 +26438,Pobozowisko,384,613,699513260,10957,2 +26439,019+VW+Wioska+barbarzy%C5%84ska,368,421,3108144,6279,0 +26440,08.+Maximum+Acceleration,495,657,849100262,9811,0 +26441,psycha+sitting,457,651,699736927,5018,0 +26442,033+NePtuNn998,468,658,699834004,9976,0 +26443,029,660,495,849006412,7703,0 +26444,028+%7C+PALESTINA,638,425,9228039,9544,0 +26445,z+035,587,639,699342219,10220,0 +26446,Piek%C5%82o+to+inni,568,359,848956765,10160,0 +26447,Wioska+barbarzy%C5%84ska,394,393,698364331,1491,0 +26448,Wioska+barbarzy%C5%84ska,342,541,8004076,3210,0 +26451,A0302,340,487,8841266,10252,0 +26452,0011,418,363,848913037,9993,7 +26453,O27+Valga,660,512,699272880,10066,0 +26454,Wioska+007,387,388,8419570,10168,0 +26455,Bagdad,499,337,8847546,10068,0 +26456,100,624,605,698786826,10495,0 +26458,Wioska+000,659,530,2999957,7035,0 +26460,Skazany+Na+Instynkt,367,583,8004076,9621,0 +26461,Kentin+ufam+Tobie,340,476,699783765,10000,0 +26462,0015+centrum,389,380,8419570,10168,0 +26463,FKG+01-08,415,415,356642,9835,0 +26464,.14.+Limoges+a,370,600,272173,9804,0 +26465,Wioska+4,423,638,699736927,8790,0 +26466,0459,379,599,699513260,4009,0 +26467,A0251,340,491,8841266,10252,0 +26468,021+Wioska,656,465,699671454,6079,0 +26469,wCana,444,652,699849210,4959,0 +26470,Jaaa,629,592,698635863,10263,0 +26471,Wioska+barbarzy%C5%84ska,415,638,699736927,5154,0 +26472,A020+darek+jackr1,659,452,113796,10301,0 +26473,Monetkownia,608,616,699759128,10237,0 +26474,Lord+Lord+Franek+.%23012,535,347,698420691,10252,0 +26475,B+012,658,529,8078914,9801,0 +26476,045,647,554,699316421,8433,0 +26477,005.,402,627,2665207,9835,0 +26478,076,622,599,698786826,8416,0 +26479,0017,415,366,848913037,9993,0 +26480,B+044,654,531,8078914,9579,0 +26481,Lord+Lord+Franek+.%23057,521,340,698420691,9959,0 +26482,Wioska+barbarzy%C5%84ska,338,519,699262350,5683,0 +26483,004+Eden,380,393,849059457,10205,0 +26484,0493,541,653,698659980,10252,0 +26485,Kentin+ufam+Tobie,340,481,699783765,10000,0 +26487,Szlachcic,348,451,6258092,10495,0 +26488,Darmowe+przeprowadzki,471,656,848935389,9809,0 +26489,022.,401,630,2665207,9835,0 +26490,Lord+Lord+Franek+.%23036,530,346,698420691,9984,0 +26491,016,381,395,849059457,2512,0 +26492,011...ZACH_O,454,352,6920960,10495,0 +26493,A0070,343,493,8841266,10252,0 +26495,0025,413,367,848913037,6655,0 +26496,039+040,550,346,699491076,10001,0 +26497,Yyyy,496,342,699883079,10060,0 +26498,039,663,505,7085502,9229,0 +26499,%3D046%3D+Wioska+barbarzy%C5%84ska,655,548,3781794,10580,0 +26500,A026,587,369,699485250,10211,0 +26501,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,389,619,849097937,8425,0 +26502,cc+Osada+11,400,374,3909522,5846,7 +26503,jaaa,634,581,698635863,10495,0 +26504,No.+8,479,662,849089459,9355,0 +26505,022,358,540,6853693,10487,0 +26506,Piek%C5%82o+to+inni,576,360,848956765,10019,0 +26507,025,419,639,849089459,9016,0 +26508,2.10,345,455,6258092,9440,0 +26509,BEZDZIETNY+KAWALER,413,635,848913998,10160,0 +26510,Wioska+barbarzy%C5%84ska,549,345,699072129,10226,0 +26511,Pobozowisko,385,611,699513260,10806,0 +26512,%230047+barbarzy%C5%84ska,473,340,1238300,10178,0 +26513,sony911,588,633,1415009,10226,0 +26514,042,651,544,849095227,9740,0 +26515,20.+Morasko,508,658,849092769,11946,0 +26516,B11,647,444,849093742,10083,0 +26517,B+045,661,528,8078914,9256,0 +26518,Lord+Lord+Franek+.%23151,503,340,698420691,9959,0 +26519,044,649,562,699316421,6270,0 +26520,2.06,342,455,3502565,7592,0 +26521,BEZDZIETNY+KAWALER,415,632,848913998,6352,0 +26522,A+010,603,376,6384450,10362,0 +26524,Jestem+Poza+Kontrol%C4%85,349,558,8004076,9742,0 +26525,Alicization7,461,646,699736927,10311,0 +26526,%2ANoname,576,642,699443920,9408,0 +26527,005+Oxenfurt,467,659,699834004,7765,0 +26528,Krakowskie+Przedmie%C5%9Bcie+CXSP%C5%BB,489,662,849004274,9782,0 +26529,01.+Jamajka,637,413,849060446,9735,0 +26530,Szlachcic,345,464,6258092,10083,0 +26531,0012,386,384,8419570,9837,0 +26533,Wioska+Conana,383,395,8967440,3956,0 +26534,Marshmike,493,335,849096592,5414,0 +26535,Myk+i+do+kieszonki,354,572,9319058,9799,0 +26536,Kentin+ufam+Tobie,345,475,699783765,10064,1 +26538,Darmowe+przeprowadzki,473,663,848935389,11041,0 +26539,0094,622,395,698416970,6984,0 +26540,Postarajcie+si%C4%99+bardziej+%3B%2A,600,371,7462660,10122,0 +26541,Bagdad,503,338,8847546,10068,0 +26542,Piek%C5%82o+to+inni,581,361,848956765,10160,3 +26543,%230006+deleted,474,339,1238300,10178,0 +26544,032+Barba,657,488,2135129,9553,0 +26545,Chekku+-+meito,345,522,9280477,9976,0 +26546,KR%C3%93L+PAPI+WIELKI,607,624,698191218,10000,0 +26547,Bagienko.Anker...,376,394,699713515,7175,0 +26548,043,660,531,699351301,9761,0 +26549,009%29+Wi%C4%85z%C3%B3w,545,343,849097103,2910,0 +26550,056.+Metis,658,468,849091866,9193,0 +26551,0495,517,658,698659980,10083,0 +26552,009+Niuniuniuniu,539,346,849108623,10426,0 +26553,lllllllll,623,399,699429153,10224,0 +26554,Wioska,374,545,849084005,10178,0 +26555,023+MONETKI,661,495,7588382,9544,0 +26556,Wyngiel+we+wsi,552,347,699072129,8567,0 +26557,O17+Caripito,661,526,699272880,10006,0 +26558,kathare,555,648,873575,9801,0 +26559,030+MONETKI,661,482,7588382,9544,0 +26560,kathare,560,651,873575,9225,0 +26561,001.+A-RE-SE-EY,590,528,848967710,10252,0 +26562,Wioska+barbarzy%C5%84ska,485,662,698585370,8843,0 +26563,K34+-+%5B159%5D+Before+Land,448,346,699088769,10559,0 +26565,Mordor,623,397,699759128,8246,0 +26567,008,492,656,698650301,10160,0 +26568,022+Harry+Potter,394,618,8268010,7324,0 +26569,%2A4623%2A+Ko%C5%84+mechaniczny,649,437,7973893,10287,9 +26570,I%23020,597,372,2065730,9797,0 +26571,010,593,632,699316421,6404,0 +26572,aAa+Szlaban+2,607,615,699778867,12154,0 +26573,Piek%C5%82o+to+inni,573,357,848956765,10160,0 +26575,Wioska+106,640,583,848971079,10016,0 +26576,W+07,646,437,699524891,9771,0 +26577,Aleje+Jerozolimskie+BO,494,664,849004274,9835,0 +26578,0496,534,657,698659980,10019,0 +26579,023,564,643,699828685,9976,0 +26580,z+006,574,640,699342219,10476,8 +26581,0662,380,602,698659980,10559,0 +26582,BEZDZIETNY+KAWALER,417,633,848913998,9449,0 +26583,PUSTA,634,590,6929240,7208,0 +26584,Szulernia,411,365,7249451,9993,0 +26585,0497,526,661,698659980,10160,0 +26586,041,570,640,699828685,9976,0 +26587,Valevag+140,357,434,393668,2906,0 +26588,Gattacka,613,386,699298370,10890,0 +26589,Wioska,340,535,849096458,8647,0 +26590,053.,408,633,2665207,9835,0 +26592,Oman,482,338,849048216,4646,0 +26593,006,456,342,2502956,10019,0 +26594,MojeDnoToWaszSzczyt,559,355,699697558,10160,0 +26595,101,623,604,698786826,10495,8 +26596,Wioska,597,520,698845189,7490,0 +26597,No.+5,476,658,848999671,9025,0 +26598,Wioska+barbarzy%C5%84ska,489,341,698739350,9761,0 +26599,040.,397,619,2665207,9835,0 +26600,Gattacka,617,387,699298370,10470,4 +26601,002.,484,654,849034882,10838,0 +26602,Darma+dla+zawodnika,514,663,699494488,10566,0 +26603,Szczytno,542,343,849108784,2696,0 +26604,Wioska+barbarzy%C5%84ska,657,451,113796,8137,0 +26605,Lord+Lord+Franek+.%23058,521,338,698420691,9976,0 +26606,%2A085%2A,359,416,699273451,10211,0 +26607,116...centr,457,342,6920960,10229,0 +26608,046,612,381,849010255,10039,0 +26609,Jednak+wol%C4%99+gofry,423,644,699736927,2741,0 +26610,Wioska+Bochun10,338,515,7449254,8390,6 +26612,Kentin+ufam+Tobie,352,443,699783765,9874,0 +26613,Maradona,611,613,8815749,10019,0 +26614,Mniejsze+z%C5%82o+0034,342,499,699794765,7856,0 +26615,Gorgoneion,382,393,8419570,9666,0 +26616,off+100+%25,353,567,849012521,10257,0 +26617,Wioska+barbarzy%C5%84ska+029,500,339,6343784,4634,0 +26618,021+Straszne+jaskinie,394,615,8268010,7479,0 +26619,harley,620,391,699298370,10311,0 +26620,Wioska+barbarzy%C5%84ska,615,394,0,2340,0 +26621,PIERWSZA,363,585,698353083,10971,0 +26622,070,629,595,698786826,9462,0 +26623,%230090+barbarzy%C5%84ska,478,337,1238300,10025,0 +26624,Piek%C5%82o+to+inni,585,361,848956765,10160,0 +26625,Wioska+013,381,388,8419570,8236,0 +26626,Myk+i+do+kieszonki,356,567,9319058,9799,0 +26627,Lessie,663,510,699851345,9691,4 +26628,116+Wioska+barbarzy%C5%84ska,544,349,699491076,9877,0 +26629,045,661,497,7085502,7463,0 +26630,Charfa,518,343,699072129,10495,0 +26631,%23011+W%C5%82adca+Piekie%C5%82+ZENIT,350,438,849096215,1982,0 +26632,BEZDZIETNY+KAWALER,416,635,848913998,10160,0 +26633,Bagienko.Anker...,377,393,699713515,5945,0 +26634,Myk+i+do+kieszonki,357,581,9319058,9799,0 +26635,0246,558,652,698659980,10160,0 +26636,Wioska+Bochun10,337,493,7449254,10311,0 +26637,Maradona,610,614,8815749,10019,0 +26638,A004,612,380,699761749,10444,0 +26639,25.+KaruTown,634,412,849060446,8474,0 +26640,001.,491,662,849034882,10728,0 +26641,Dzikie+wsparcie,473,657,848935389,9809,0 +26642,051,661,521,698999105,9933,0 +26643,Chekku+-+Meito,343,509,9280477,10311,2 +26644,003...CENTR,457,352,6920960,10495,0 +26645,BETON+004,621,610,699277039,10495,0 +26646,Jaaa,662,489,698635863,10169,0 +26647,029,567,648,699828685,9976,0 +26648,004+Wioska+barbarzy%C5%84ska,336,508,915113,4200,0 +26649,Free+Stevie%21,500,505,699785935,9835,0 +26650,_2_,490,336,9113064,2746,0 +26652,016+barbarzy%C5%84ska,643,422,9238175,10285,0 +26653,Piek%C5%82o+to+inni,573,360,848956765,10019,0 +26654,Jehu_Kingdom_15_,651,437,8785314,9993,0 +26655,MojeSzczytToTw%C3%B3jDno,509,340,828637,10478,1 +26656,Okropna,542,349,570100,3655,0 +26657,Wioska+barbarzy%C5%84ska,588,637,848995242,10478,0 +26658,004+Azyl,641,422,9238175,10097,0 +26659,The+Game+Has+Only+Just+Begun,347,536,9280477,9976,5 +26660,tego+nie,516,657,699494488,10474,0 +26661,KUZYN,413,639,848913998,4552,0 +26662,%2ANewbee,577,642,699443920,9761,0 +26663,Weso%C5%82ych+%C5%9Awi%C4%85t,555,348,848915730,5745,0 +26664,038.,399,621,2665207,9835,0 +26665,Szulernia,406,366,7249451,9964,1 +26666,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,525,659,699828442,9994,0 +26667,Jestem+Poza+Kontrol%C4%85,352,553,8004076,9127,0 +26668,046,658,539,698999105,10311,0 +26669,K34+-+%5B122%5D+Before+Land,434,350,699088769,10400,0 +26670,Mobil,537,652,7589468,8819,0 +26671,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,529,652,699828442,9994,0 +26672,68k%24+Grvvyq,641,572,699676005,7353,0 +26673,0404,548,635,698659980,10160,0 +26674,Wioska+barbarzy%C5%84ska+Krrr,370,404,8967440,3065,0 +26675,040+039,549,350,699491076,10001,0 +26676,Myk+i+do+kieszonki,354,570,9319058,9799,0 +26677,K34+-+%5B015%5D+Before+Land,444,350,699088769,10259,0 +26678,O23+Kiruna,662,514,699272880,10520,0 +26679,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,650,699828442,9825,0 +26680,Village,520,655,849094067,8541,0 +26681,B+013,660,536,8078914,9692,9 +26682,%2A011+Nemeczek%2A,362,411,2415972,9097,0 +26683,amator,554,652,848915531,9694,0 +26684,%3D040%3D+Wioska+barbarzy%C5%84ska,653,553,3781794,8293,0 +26685,Bizy+1,499,657,698585370,10186,0 +26686,M181_047,358,428,393668,7186,0 +26687,%5B154%5D,638,581,8000875,9561,0 +26688,06+Wioska,441,651,698993706,9525,0 +26689,%3D043%3D+Wioska+barbarzy%C5%84ska,651,550,3781794,10580,0 +26690,Kentin+ufam+Tobie,340,475,699783765,10000,5 +26691,cc+pol005qqqqqqqqqqqqqqqqqqqqqqq,395,381,3909522,6008,0 +26692,013+Wioska+zwiadowcza,551,347,699072129,4674,0 +26693,Darmowe+przeprowadzki,468,656,698807570,9785,0 +26694,Wioska+barbarzy%C5%84ska,663,509,699598425,10728,0 +26695,083,619,613,698786826,10495,0 +26696,Jestem+Poza+Kontrol%C4%85,347,547,8004076,9880,0 +26697,jaaa,637,580,698635863,9656,0 +26698,Darma+dla+zawodnika,524,662,7860453,10226,0 +26699,%230007+SnniKeer,473,341,1238300,10178,0 +26700,Psycha+Siada,459,659,698807570,10252,0 +26701,007,589,631,699316421,10099,0 +26702,Obrze%C5%BCa+094,556,649,848915531,6484,0 +26703,Seljukia,422,638,849089459,7036,0 +26704,Wioska+barbarzy%C5%84ska+%2C,603,626,848995242,10351,0 +26705,NI5,346,458,6258092,10495,0 +26706,R%C4%99cznik+do+zmiany,374,407,699697558,10160,0 +26707,51.+KaruTown,642,434,849091866,9711,0 +26708,Jeruzalem,419,641,699736927,6824,0 +26710,050,662,520,698999105,10311,0 +26711,I%23015,603,379,2065730,9483,0 +26712,Jan+dzik+III,644,439,879782,8777,0 +26713,111,653,439,849088515,8920,0 +26714,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,528,645,699828442,9825,0 +26715,Szlachcic,409,372,698160606,10476,0 +26716,M181_026,360,421,393668,9883,9 +26717,.019.,492,374,698489071,10316,0 +26718,Myk+i+do+kieszonki,366,585,849012521,10654,0 +26719,O06+Alicante,661,518,699272880,10234,0 +26720,043.+Malaca,645,438,849091866,9284,7 +26721,Weso%C5%82ych+%C5%9Awi%C4%85t,585,362,848915730,10019,0 +26722,K44+x010,431,413,698364331,10495,0 +26723,xyz+%23006+TerrorMachine,581,363,7555180,10152,0 +26724,018.,402,631,2665207,9835,0 +26725,004+RVW+Wioska+barbarzy%C5%84ska,364,408,3108144,6119,0 +26726,028+serniczkowe+lody,511,664,8954402,9729,0 +26727,Myk+i+do+kieszonki,350,570,849012521,9119,0 +26728,Frombork,541,342,849108784,4101,0 +26730,%230009+BudzikRide,469,339,1238300,10178,0 +26731,%3D058%3D+Wioska+barbarzy%C5%84ska,654,548,3781794,8533,0 +26732,130,473,346,7271812,4303,0 +26733,A+022,607,375,6384450,8714,0 +26734,A030+Sierpc,656,458,113796,10160,0 +26735,amator,555,654,848915531,10130,0 +26736,014%29+%C5%BB%C3%B3rawina,540,342,849097103,4001,0 +26737,2.02,344,453,3502565,7483,0 +26738,Wioska+barbarzy%C5%84ska,337,518,699262350,5075,0 +26740,EMERYTOWANY+KUZYN,430,645,848913998,10178,0 +26741,Tunis,414,641,699736927,8844,0 +26743,Taki+Pan,497,340,698739350,6176,0 +26744,035.+Luguvalium,655,472,849091866,9597,0 +26745,Dek,575,361,699485250,9735,0 +26746,Wioska+barbarzy%C5%84ska,349,445,393668,6247,0 +26747,Wioska+barbarzy%C5%84ska,350,451,6258092,7519,0 +26748,013+Blocksberg,661,484,2135129,9500,0 +26749,wLevy,445,655,699849210,3894,0 +26750,025+pawelk95,664,486,2135129,9044,0 +26751,Klaudek8,594,368,849092309,7754,0 +26752,--Polan222,619,386,8096537,10114,0 +26753,MojeDnoToWaszSzczyt,568,352,848915730,9938,0 +26754,Kentin+ufam+Tobie,341,462,699783765,10233,0 +26755,Hej+hoo,438,355,699191455,10495,0 +26756,A0252,340,488,8841266,10252,0 +26757,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,658,699828442,9809,0 +26758,Piek%C5%82o+to+inni,572,358,848956765,10019,0 +26759,Szlachcic%2FTaran,629,409,699759128,10237,2 +26760,Terrolowelove,590,366,699485250,10211,0 +26761,034,616,392,699298370,3663,0 +26762,cc+Radom,396,375,3909522,9633,0 +26763,Wioska+barbarzy%C5%84ska,345,448,393668,10301,0 +26764,Piek%C5%82o+to+inni,557,350,848956765,9643,0 +26765,Wioska+Bochun10,339,486,7449254,10311,0 +26766,013+Brugge,466,658,699834004,10104,0 +26767,52k%24+Grvvyq,647,571,699676005,7184,0 +26768,%C5%BBUBRAWKA+008,600,628,33900,9970,0 +26769,K34+-+%5B116%5D+Before+Land,451,351,699088769,9797,0 +26770,019,664,494,7085502,9740,0 +26771,083...TOM,483,337,6920960,9347,0 +26772,Brzoz%C3%B3wka,343,457,6258092,10416,0 +26773,Orze%C5%82+Wyl%C4%85dowa%C5%82,453,655,698807570,10252,0 +26774,Wioska+3,420,640,699736927,9976,0 +26775,Wioska+barbarzy%C5%84ska,664,509,699598425,10728,0 +26776,Village,517,657,849094067,12154,0 +26777,0392,559,654,698659980,9792,0 +26778,Wioska+barbarzy%C5%84ska,399,373,3484132,7924,0 +26780,wBisca,449,655,699849210,8463,0 +26781,%230058+barbarzy%C5%84ska,471,339,1238300,10178,0 +26782,pol003,395,378,849027025,6695,0 +26783,%2A117%2A,360,419,699273451,10211,0 +26784,005+always+remember+LC,565,644,699828685,9976,8 +26785,_4_,493,336,9113064,2536,0 +26786,B+020,659,527,8078914,9634,0 +26788,S_011,512,662,849049155,7740,0 +26789,Szulernia,413,362,7249451,9991,0 +26790,Tere+fere+hihihi,372,404,8967440,9399,4 +26791,So%C5%82tys+Wsi+Legionistars,397,377,849027025,9783,0 +26792,A036+Wioska+barbarzy%C5%84ska,655,459,113796,10160,0 +26793,J02.,364,593,849090130,8137,0 +26794,Lord+Lord+Franek+.%23059,534,345,698420691,10141,0 +26795,00503Ciapek,435,430,3909522,9916,0 +26796,psycha+sitting,446,654,699736927,9072,0 +26797,039,665,497,699351301,8058,0 +26798,A+019,604,376,6384450,10362,0 +26799,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,659,698807570,4912,0 +26800,083,605,378,2502956,8484,0 +26801,Charfa,513,343,699072129,10232,0 +26802,EMERYTOWANY+KUZYN,428,640,848913998,6144,0 +26803,Grvvyq+115k%24,633,595,699676005,4682,0 +26804,0498,532,655,698659980,10019,0 +26805,121,625,424,7085502,9824,0 +26806,%3D067%3D+Wioska+barbarzy%C5%84ska,653,551,3781794,9935,0 +26807,024,565,645,699828685,9976,0 +26808,Wioska+Ysiek,656,551,699739523,2771,0 +26809,2.01,343,451,3502565,5681,0 +26810,049+Mallaig,629,594,699272880,8838,6 +26811,016%7C%7C+Draco,497,661,849035525,10019,0 +26812,MojeDnoToWaszSzczyt,561,354,699697558,10160,0 +26813,0157,391,623,7085510,9224,0 +26814,041+040,551,349,699491076,10001,0 +26816,off+100+%25,350,566,849012521,10265,0 +26817,%23.40+Wioska+barbarzy%C5%84ska,661,469,849054582,3672,0 +26818,074+Kofu,655,454,7092442,10297,0 +26819,B+017,658,530,8078914,9771,0 +26820,O05+Ourense,660,518,699272880,10030,0 +26821,Obrze%C5%BCa+095,556,652,848915531,4201,0 +26822,So%C5%82tys+Wsi+Enaor1990,398,378,849027025,9725,0 +26823,Wioska+barbarzy%C5%84ska,651,454,699524891,9252,0 +26824,Klaudek11,595,372,849092309,7378,0 +26825,Monetkownia,617,608,699759128,10237,0 +26826,016+nie+ma+spania+na+wyjazdach,443,647,699238479,4333,0 +26828,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,526,659,699828442,9825,0 +26829,Piek%C5%82o+to+inni,560,347,848956765,10160,0 +26830,cc+Gorzk%C3%B3w,397,376,3909522,7834,0 +26831,A0255,340,490,8841266,10252,0 +26832,034+Buongiorno,606,455,698829590,10083,0 +26833,Ave+Why%21,476,663,698585370,9175,0 +26834,O13+Stokkseyri,661,523,699272880,10030,0 +26835,Myk+i+do+kieszonki,365,584,849012521,5882,0 +26836,040%7C%7C+Lupus,482,660,849035525,10049,0 +26837,15.+Budujemy+mosty,636,412,849060446,9735,0 +26838,Chekku+-+meito,341,526,9280477,9976,0 +26839,115...center,451,345,6920960,9467,0 +26840,Szulernia,410,363,7249451,9967,0 +26841,O02+Pyke,660,519,699272880,10122,0 +26843,0196,556,654,698659980,10019,0 +26844,P022+Karakura,655,512,8096537,9761,0 +26845,North+Barba+040,420,358,699796330,9455,0 +26846,015+M,651,520,699351301,10207,0 +26847,psycha+sitting,429,647,699736927,4973,0 +26848,Wioska+barbarzy%C5%84ska,651,449,699524891,9169,0 +26849,D+015,661,504,8078914,8961,0 +26850,Wioska+barbarzy%C5%84ska,347,443,393668,10281,0 +26852,D+013,664,506,8078914,9655,0 +26853,Weso%C5%82ych+%C5%9Awi%C4%85t,561,353,848915730,10636,0 +26854,Wioska+barbarzy%C5%84ska+021%7C,546,343,6343784,9619,0 +26855,004+Czarna+pantera,392,621,8268010,9835,0 +26856,0499,531,660,698659980,8979,0 +26857,Wioska+Ukryta+w+Li%C5%9Bciach,373,603,8607734,9456,0 +26858,026+Legio+I+Traiana+Fortis,643,489,699878150,10971,0 +26859,051.,407,635,2665207,8961,0 +26860,067,656,550,849095227,9745,0 +26861,%3F004,538,656,699828685,9976,0 +26862,A039,594,374,699485250,10211,5 +26863,%7CB%7C+Claywood,485,660,698147372,10495,0 +26864,BAC%C3%93WKA+%7C027%7C,633,415,7394371,4817,0 +26865,Jednak+wol%C4%99+gofry,425,646,699736927,6356,0 +26866,Wioska,403,422,7462660,10122,0 +26867,Sony+911,582,641,1415009,10278,0 +26869,Szlachcic%2FTaran,622,397,699759128,9086,0 +26870,Gattacka,618,388,699298370,10470,0 +26871,--Rapid+City,623,393,8096537,9376,0 +26872,Jestem+Poza+Kontrol%C4%85,346,555,8004076,9880,0 +26873,Wioska+barbarzy%C5%84ska,400,371,698160606,7602,0 +26874,Wioska+Bochun10,337,491,7449254,10311,0 +26875,kathare,561,649,873575,10232,0 +26876,609%7C373,606,377,699580120,9570,0 +26877,16.+Cytadela,506,661,849092769,10299,0 +26878,0500,535,660,698659980,8399,0 +26879,Piek%C5%82o+to+inni,588,363,848956765,10160,0 +26880,%2ALubicz,575,638,699443920,9761,0 +26881,Mniejsze+z%C5%82o+0070,340,505,699794765,6624,0 +26882,wolna,563,649,699828685,9976,0 +26883,026,515,341,699072129,10221,0 +26884,057.+Liburnum,654,471,849091866,9207,0 +26885,cc+Wioska,402,377,3909522,8037,0 +26886,007,390,457,3698627,10104,0 +26887,Kentin+ufam+Tobie,338,474,699783765,10008,0 +26888,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,626,1434753,10068,0 +26889,0002,615,612,6417987,10019,0 +26890,%2A4626%2Aa+Czas+przyspiesza,646,430,7973893,10287,0 +26891,Wioska+barbarzy%C5%84ska,350,435,393668,6349,0 +26892,North+Barba+039,421,358,699796330,9747,0 +26893,027+%7C+PALESTINA,639,424,9228039,9544,0 +26894,North+Barba+010,421,363,699796330,9887,0 +26895,071+Shimada,659,476,7092442,8971,0 +26896,Nowa+Aleksandria,415,640,699736927,6683,0 +26897,.%3A137%3A.+Niangmen,500,342,848934935,6136,0 +26898,Gattacka,613,391,699298370,9824,0 +26899,%2A266%2A,353,428,699273451,2607,0 +26900,Darmowe+przeprowadzki,471,662,848935389,11218,0 +26901,031,571,643,699828685,9976,0 +26902,%2ALupita,573,643,699443920,9761,0 +26903,%242.000+Grvvyq,648,571,699676005,10495,5 +26904,amator+czysta,544,653,848915531,7468,0 +26906,039.+Durnovaria,657,474,849091866,10640,0 +26907,C003,609,383,699485250,10211,0 +26908,Yyyy,502,371,699883079,10178,0 +26909,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,378,607,849097937,9575,0 +26910,Kentin+ufam+Tobie,341,468,699783765,10000,0 +26911,Polanie2,482,340,849048216,2561,0 +26912,Pr%C4%99dzej+martwy+ni%C5%BC+za+kratkami,663,512,699851345,9689,0 +26913,Szlachcic,344,460,6258092,10160,0 +26914,035,650,558,699316421,9744,0 +26915,J03,365,594,849090130,6418,0 +26916,Szlachcic,409,371,698160606,10475,0 +26917,%230018+kamilsan993,464,346,1238300,10178,0 +26918,--custer,624,395,8096537,10311,0 +26919,007+YNO+ROW,388,618,8268010,9835,0 +26920,61.+KaruTown,629,405,7394371,6233,0 +26922,Wioska+Bochun10,335,486,7449254,10311,0 +26923,%230135+barbarzy%C5%84ska,467,340,1238300,6566,0 +26924,B.053,659,506,9188016,9814,0 +26925,Wioska+barbarzy%C5%84ska,350,443,393668,8710,0 +26926,121.+Seneletta,644,422,8337151,10147,1 +26927,%23.17+Wioska+SmackHQ,660,474,849054582,10019,0 +26928,037,615,392,699298370,2730,0 +26929,0153,548,654,698659980,11074,0 +26930,sony911,588,638,1415009,10223,0 +26931,Myk+i+do+kieszonki,361,584,9319058,9799,0 +26932,101,654,442,849088515,10019,0 +26933,Wetlina,338,532,849096458,8953,0 +26934,021.Barbara+5,337,507,1830149,5003,0 +26935,Tesa+9,661,530,698845189,10019,0 +26936,%C5%BBUBRAWKA+012,604,625,33900,9713,0 +26937,034.,406,635,2665207,9835,0 +26938,O25+Tijuana,660,515,699272880,9977,0 +26939,D+003,663,506,8078914,10042,0 +26940,011,459,655,698650301,9106,0 +26941,033,662,495,7085502,9724,0 +26942,Szlachcic,407,369,698160606,10495,0 +26943,084,623,607,698786826,10495,0 +26944,deff+100+%25,351,567,849012521,10245,0 +26945,.%3A138%3A.+Niangmen,498,341,848934935,5926,0 +26946,Architekci+Plac%C3%B3w+Boju,341,537,8004076,9880,0 +26947,Szulernia,415,361,7249451,9988,0 +26948,Kentin+ufam+Tobie,340,478,699783765,10000,0 +26949,%2ALust,574,643,699443920,9682,0 +26950,09.+chrubiesz%C3%B3w,374,599,8665783,9069,0 +26951,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,659,699828442,9806,0 +26952,c+Zagna%C5%84ska+155,406,389,3909522,8506,0 +26953,%23.20+ZZZ,659,471,849054582,9285,0 +26954,30.+%C5%81opuszka+wielka,376,602,8665783,8918,0 +26955,Elsche+x+Astaroth+Smacznego+x3,455,645,699736927,7867,0 +26956,0194,548,655,698659980,10019,0 +26957,Piek%C5%82o+to+inni,575,358,848956765,10147,2 +26958,MojeDnoToWaszSzczyt,564,348,848915730,9976,0 +26959,bbb,486,660,848999671,8969,0 +26960,088,436,637,849084985,8054,0 +26961,102,623,602,698786826,10495,0 +26963,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,527,655,699828442,9804,0 +26964,Wioska+barbarzy%C5%84ska,348,452,6258092,9621,0 +26965,Mniejsze+z%C5%82o+0072,340,507,699794765,6568,0 +26966,%2ANo+%C5%BCesz...,579,640,699443920,9761,0 +26967,P011+Hawkins,657,512,8096537,9348,0 +26968,cofn%C4%85%C4%87,624,402,699429153,9825,0 +26969,012,486,659,848953066,8691,0 +26970,Nowy+%C5%9Bwiat+A,347,553,849084005,5817,0 +26971,003+Kirkjubour,552,350,699072129,6605,0 +26972,0001,614,614,6417987,10149,0 +26973,J0091.,373,602,849090130,9807,0 +26974,Pa%C5%84stfa+Pu%C5%82nocy,583,362,699433558,6612,0 +26975,Wioska+barbarzy%C5%84ska,361,426,393668,6803,0 +26976,BAC%C3%93WKA+%7C005%7C,631,407,7394371,12154,0 +26977,026+-+Mroczna+Osada,637,415,849035905,12154,0 +26978,041+Lazarevac,628,594,699272880,7251,0 +26979,052-+Mroczna+Osada,629,397,849035905,10609,0 +26980,Wioska+barbarzy%C5%84ska+030+a,504,338,6343784,4705,0 +26981,015,378,394,849059457,2954,0 +26982,025.,612,620,6520732,9835,0 +26983,Wioska+barbarzy%C5%84ska,373,397,610196,380,0 +26984,Jednak+wol%C4%99+gofry,495,638,699725436,9835,0 +26985,kopi%C4%99+pr%C4%85dem+.,584,634,848995242,10495,0 +26986,041,650,554,699316421,7732,0 +26987,%2A082%2A,360,413,699273451,10211,0 +26988,020.Avalon,369,404,3108144,8087,0 +26989,K44+x024,433,413,698364331,10396,0 +26990,MojeSzczytToTw%C3%B3jDno,506,339,828637,10481,0 +26991,017+VW.Low+Key,362,409,3108144,6459,0 +26992,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,655,698807570,8604,5 +26993,Wioska+Kaffiks+XV,635,584,6136757,5814,0 +26994,Piek%C5%82o+to+inni,569,358,848956765,10160,0 +26996,013.Wioska+barbarzy%C5%84ska,341,517,1830149,7224,0 +26997,%3D075%3D+Darm%C4%99+dosta%C5%82em+xD,654,547,3781794,10787,0 +26998,Pobozowisko,381,615,699513260,10102,0 +26999,Jednak+wol%C4%99+gofry,445,651,699736927,9835,0 +27000,011+Amaterasu,661,501,2135129,9553,0 +27001,Chekku+-+meito,342,520,9280477,9976,0 +27002,085,622,604,698786826,10495,0 +27003,67k%24+Grvvyq,642,571,699676005,10495,0 +27004,001,348,439,393668,4794,0 +27005,%2A035%2A,633,585,698670524,9368,0 +27006,004,641,578,699301458,1396,0 +27007,Jaaa,665,485,698635863,9946,0 +27008,%23.05+Wioska+jelonqqq,657,477,849054582,10019,0 +27009,%5B020%5D,449,649,9094538,2913,0 +27010,Gumi,558,341,699072129,10237,0 +27011,6AA,352,431,7765098,9277,0 +27012,0362,545,658,698659980,10224,0 +27013,Wioska+barbarzy%C5%84ska,595,365,849041192,5303,0 +27014,%230073+barbarzy%C5%84ska,468,338,1238300,9957,0 +27015,Architekci+Plac%C3%B3w+Boju,342,539,8004076,9880,0 +27016,Samana+2,454,652,699849210,6314,0 +27017,012.,397,627,2665207,9835,0 +27018,Wioska+barbarzy%C5%84ska,361,424,393668,8383,0 +27019,009+Wioska+na+gwarancji,481,660,698650301,9771,0 +27020,049+BOBI+3,663,486,2135129,9553,0 +27022,%3F006,538,658,699828685,9976,0 +27023,mys,573,648,699828685,9976,0 +27024,Kentin+ufam+Tobie,337,474,699783765,10000,0 +27025,086,621,611,698786826,10495,0 +27026,038,658,495,7085502,9494,0 +27027,Wioska+barbarzy%C5%84ska,570,644,699828685,9532,0 +27028,006.Dla+flag,352,437,698630507,7603,0 +27029,%3D049%3D+Wioska+barbarzy%C5%84ska,644,578,3781794,9804,0 +27030,Patatajnia,345,452,6258092,3971,0 +27031,CHARFA,511,339,699072129,10218,0 +27032,%7C015%7C+Gazi,498,660,699393742,9835,0 +27033,Uwa%C5%BCaj+Jurkowski,349,435,393668,6700,0 +27034,BAC%C3%93WKA+%7C002%7C,635,407,7394371,11130,0 +27035,Pobozowisko,384,618,699513260,7334,0 +27036,M181_039,354,429,393668,8712,0 +27037,Wioska+barbarzy%C5%84ska,657,523,6510480,6735,0 +27038,Wioska+Bochun10,340,496,7449254,10311,0 +27039,Myk+i+do+kieszonki,360,578,9319058,9799,0 +27040,001,545,341,849087786,7285,0 +27041,Lord+Lord+Franek+.%23037,524,340,698420691,9955,0 +27042,018%29,538,345,849097103,3214,0 +27043,Wioska+Bochun10,340,498,7449254,10311,9 +27044,049,660,490,7085502,8214,0 +27045,001%7C%7C+Aries,487,645,849035525,10019,0 +27046,Wioska+barbarzy%C5%84ska,379,396,848886056,3727,0 +27047,Pobozowisko,387,603,699513260,10971,0 +27048,I%23011,603,380,2065730,9797,2 +27049,P026+Alfheim,658,517,8096537,9761,0 +27050,Kentin+ufam+Tobie,342,471,699783765,10000,0 +27052,Wioska+Kaffiks+XI,643,578,6136757,6163,0 +27053,072,603,370,2502956,10019,0 +27054,Lecymy+DUR,433,356,6169408,3729,0 +27055,Szlachcic,495,466,699098531,9879,0 +27056,g%C3%B3ra,434,351,849096310,9247,0 +27057,O29+Struer,661,519,699272880,10195,0 +27058,36k%24+Grvvyq,648,574,699676005,10495,0 +27059,011,376,525,6853693,10474,0 +27060,Kentin+ufam+Tobie,339,482,699783765,10000,0 +27061,Myk+i+do+kieszonki,353,574,9319058,9799,0 +27062,Darmowe+przeprowadzki,471,655,848935389,9676,0 +27064,071,629,597,698786826,9423,0 +27065,14.+tego+nie,509,659,849100262,10002,0 +27066,Darma+dla+zawodnika,517,663,699494488,10221,0 +27067,044+Qarinus,633,587,699272880,10028,6 +27068,001+Syjon,480,664,698650301,9234,0 +27069,Piek%C5%82o+to+inni,579,358,848956765,10019,0 +27070,mys,564,649,699828685,9976,0 +27071,Sony+911,585,639,1415009,10248,0 +27072,Obrze%C5%BCa+07,554,651,848915531,8461,0 +27073,B15,649,447,849093742,8347,0 +27074,%2A4624%2Aa+Bawaria,649,436,7973893,10287,0 +27075,North+Barba+041,423,357,699796330,9742,0 +27077,Saturn,547,343,699797805,4274,0 +27078,1v9+machine,387,618,699697558,10083,0 +27079,Myk+i+do+kieszonki,358,582,9319058,9537,0 +27080,Gattacka,615,387,699298370,10470,0 +27081,Myk+i+do+kieszonki,357,580,9319058,9799,0 +27083,x+Wioska+grzegorz1806,398,510,698290577,10233,0 +27084,058.,392,623,2665207,9835,0 +27085,Sony+911,586,636,1415009,6000,0 +27086,B+021,660,529,8078914,9499,0 +27087,Szlachcic+Siedmiomilowy,617,379,848924219,7718,0 +27088,11.+Remiza,373,600,8665783,9312,0 +27089,Szulernia,416,363,7249451,9993,0 +27090,Li%C5%9Bciaste+Rozstaje,345,453,6258092,3597,0 +27091,022.+Barbara+6,338,505,1830149,6786,0 +27092,Wioska+barbarzy%C5%84ska,649,571,0,2351,3 +27093,Ave+Why%21,473,649,699121671,9809,0 +27094,Wioska+barbarzy%C5%84ska,662,509,699851345,6803,0 +27096,0006,611,614,6417987,9353,0 +27097,Weso%C5%82ych+%C5%9Awi%C4%85t,580,351,848915730,10160,0 +27098,Chamabuda,366,403,8967440,4270,0 +27099,008+%7C+PALESTINA,648,429,9228039,9544,0 +27100,Lord+Lord+Franek+.%23152,505,337,698420691,10149,0 +27101,cc+Wioska+jqqqqqqqqqqqqqqqqqqq,397,375,3909522,5959,0 +27102,Sony+911,589,635,1415009,10206,0 +27103,B12,649,446,849093742,10019,0 +27105,K34+-+%5B128%5D+Before+Land,438,352,699088769,9783,0 +27106,Sony+911,583,642,1415009,10203,0 +27108,039,655,544,698999105,10311,0 +27109,012.,483,658,849034882,10728,0 +27110,Jednak+wol%C4%99+gofry,443,649,699736927,9899,0 +27111,016+%7C+PALESTINA,649,428,9228039,9544,0 +27112,%2ANie+ma+to+jak...,577,644,699443920,9761,4 +27113,%230046+barbarzy%C5%84ska,466,341,1238300,10178,0 +27114,Szlachcic,408,371,698160606,10476,0 +27115,0501,535,659,698659980,10083,0 +27116,DajankA+09,352,560,849012843,9624,0 +27117,%2A041,593,637,699567608,9717,0 +27118,01.Czekam+Na,457,654,361125,4546,0 +27119,077,630,594,698786826,10229,0 +27120,5..,432,648,699736927,7773,0 +27121,Wioska+Bochun10,338,490,7449254,10311,0 +27122,63k%24+Grvvyq,649,563,699676005,10495,2 +27124,091...bar,455,342,6920960,10237,0 +27125,MojeDnoToWaszSzczyt+%2B,566,352,848915730,9976,0 +27126,A028+Hurghada,654,460,113796,10160,0 +27127,K34+-+%5B160%5D+Before+Land,449,350,699088769,10495,0 +27128,Myk+i+do+kieszonki,362,578,849012521,9924,0 +27129,Denger+14,362,590,698353083,9648,0 +27130,007.+Dla+flag,353,438,698630507,6822,0 +27131,0502,533,655,698659980,10252,0 +27132,%3D047%3D+Wioska+barbarzy%C5%84ska,653,550,3781794,8057,0 +27133,%3D061%3D+Wioska+barbarzy%C5%84ska,652,553,3781794,10580,0 +27134,042,656,529,699351301,9368,0 +27135,Wioska+barbarzy%C5%84ska,648,572,699316421,1429,0 +27136,ladyanima,605,621,699703642,6418,0 +27137,%230055+barbarzy%C5%84ska,470,340,1238300,10178,0 +27138,Abdoulxx,473,660,849089459,11321,0 +27139,Lord+Lord+Franek+.%23153,510,340,698420691,9960,0 +27140,%C5%BBUBRAWKA+005,604,627,33900,10495,0 +27141,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,660,698807570,6297,0 +27142,105,654,443,849088515,10019,0 +27143,036...Zachodzik,452,343,6920960,10294,0 +27144,Mroczne+Rozlewisko,366,405,848886056,5128,0 +27145,Wioska+barbarzy%C5%84ska,356,425,393668,6633,0 +27146,Lord+Lord+Franek+.%23113,514,335,698420691,10009,0 +27147,Niger1,362,403,848886056,9883,0 +27148,M181_023,360,425,393668,9897,2 +27150,Wiocha+7,426,359,849096544,9909,0 +27151,Jehu_Kingdom_49,651,432,8785314,4799,0 +27152,Wioska+006,386,616,848912772,9899,0 +27153,068+front,600,368,2502956,9515,0 +27154,llllllllll,627,399,699429153,9825,0 +27155,0008,390,382,8419570,10242,0 +27157,Dajanka+20,342,550,849012843,1787,0 +27158,Wioska+barbarzy%C5%84ska,400,370,698160606,6371,0 +27159,%230084+barbarzy%C5%84ska,471,337,1238300,8313,0 +27160,Mobil,537,653,7589468,8817,0 +27161,Wioska+barbarzy%C5%84ska,348,434,849097716,2859,0 +27162,Szulernia,394,375,7249451,6243,4 +27163,...,486,661,848999671,8111,0 +27164,036,568,645,699828685,9976,0 +27165,MojeDnoToWaszSzczyt,573,352,848915730,9938,0 +27166,Piek%C5%82o+to+inni,565,355,848956765,10160,0 +27167,Kentin+ufam+Tobie,344,465,699783765,10011,0 +27168,North+Barba+049,423,353,699796330,9427,0 +27169,0454,377,602,699513260,4629,0 +27170,Wioska+barbarzy%C5%84ska,349,441,393668,5199,0 +27171,M181_045,349,436,393668,8529,0 +27172,010%29+Borek+Strzeli%C5%84ski,543,344,849097103,2166,0 +27173,The+Game+Has+Only+Just+Begun,354,530,9280477,9976,0 +27174,g%C5%82ow%C4%85+bigos+mieszam+.,580,640,848995242,10362,0 +27175,Kentin+ufam+Tobie,344,468,699783765,10005,0 +27176,kathare,560,648,873575,9937,0 +27177,012%29+Ole%C5%9Bnica+Ma%C5%82a,545,342,849097103,1829,0 +27178,S%C5%82oneczna+63,374,597,849095992,10336,0 +27179,Wsch%C3%B3d+Droga+002,647,559,698562644,10311,0 +27180,019,451,655,698650301,9662,0 +27182,910,653,546,7038651,9999,0 +27183,Wioska+barbarzy%C5%84ska,353,427,393668,6657,0 +27184,Sony+911,641,583,1415009,10259,0 +27185,M181_042,358,427,393668,8893,0 +27186,1.+Kattegat,426,428,699660539,10204,0 +27187,0661,546,657,698659980,9080,0 +27188,003+-+Mroczna+Osada,640,425,849035905,11550,5 +27189,Wioska+barbarzy%C5%84ska,382,384,8419570,2736,0 +27190,%23012+AUUUUUUUUU,350,439,849096215,2061,0 +27191,Wioska+barbarzy%C5%84ska,599,627,848995242,10351,0 +27192,North+Barba+019,421,360,699796330,10262,0 +27193,%C5%BBUBRAWKA+021+tiriolenin,596,631,33900,10495,0 +27194,Macp+2,339,513,61791,8364,0 +27196,003%29+Bielawa,545,347,849097103,7166,0 +27197,Village,568,646,849094067,9137,0 +27198,BAC%C3%93WKA+%7C028%7C,632,405,7394371,6849,0 +27199,%5BB%5D_%5B021%5D+Dejv.oldplyr,430,353,699380607,10495,9 +27200,MojeDnoToWaszSzczyt,567,351,848915730,9938,0 +27201,Chekku+-+meito,343,527,9280477,9976,0 +27202,Wioska+barbarzy%C5%84ska,551,348,699072129,10285,0 +27203,%C5%BBUBRAWKA+023,594,635,33900,10201,0 +27204,SX002,575,648,8627359,9231,0 +27205,Orlando%2C+Floryda,602,375,7462660,10068,0 +27206,0503,534,655,698659980,10019,0 +27207,092...bar,459,344,6920960,9814,0 +27208,%C5%BBUBRAWKA+007,602,626,33900,9943,0 +27209,06.+GT-R,494,662,849100262,9812,0 +27210,Wioska+barbarzy%C5%84ska,661,468,699574408,9348,0 +27211,OhhhnOoo,625,392,699759128,8255,0 +27212,010,645,574,849095963,5072,0 +27213,006,464,657,698650301,9349,0 +27214,North+Barba+028,427,354,699796330,10047,0 +27215,026,647,562,849095227,9761,4 +27216,%23110%23,636,594,692803,9761,0 +27217,Wioska+Bochun10,339,509,7449254,5908,0 +27218,170...monlib,451,346,6920960,6718,0 +27219,Jehu_Kingdom_53,649,429,8785314,6358,0 +27220,K34+-+%5B145%5D+Before+Land,437,348,699088769,9783,0 +27221,O04+Toledo,661,517,699272880,9994,0 +27222,Maszlug+kolonia+XX,367,414,848977649,3796,0 +27223,133,475,342,7271812,9225,0 +27224,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,657,698807570,10252,0 +27225,-11-,334,499,765188,6163,0 +27226,A-033,383,393,8419570,10168,0 +27227,Klaudek.4,591,368,849092309,8573,0 +27228,Wioska+Bochun10,343,473,7449254,10311,3 +27229,Jestem+Poza+Kontrol%C4%85,349,552,8004076,9880,0 +27230,The+Game+Has+Only+Just+Begun,346,539,9280477,9976,0 +27232,007%29+Nowa+Ruda,546,349,849097103,3191,0 +27233,C005,611,380,699761749,10495,0 +27234,MojeDnoToWaszSzczyt,565,350,848915730,9976,0 +27235,Grvvyq+110k%24,652,563,699676005,4551,0 +27236,The+Game+Has+Only+Just+Begun,345,535,9280477,9169,0 +27237,Valhalla+A4,377,606,849097002,7463,0 +27238,Wioska+barbarzy%C5%84ska,502,337,698739350,5446,0 +27239,608%7C375,606,373,699580120,8703,0 +27240,Ave+Why%21,485,659,698585370,9525,8 +27242,%230031+GL01N,469,338,1238300,10178,0 +27243,Gattacka,617,382,699298370,9372,0 +27245,I%23016,605,381,2065730,9797,0 +27246,Tight+OB,495,665,849004274,9782,0 +27247,Wioska+Bochun10,336,494,7449254,10311,0 +27248,Pobozowisko,382,617,699513260,8300,0 +27249,MojeDnoToWaszSzczyt,574,353,848915730,9938,0 +27250,%2A037%2A,633,593,698670524,8308,0 +27251,Sir+develes,618,613,698786826,10471,0 +27252,A020+Darek+sxdf,656,449,113796,10160,0 +27253,Wioska+%C5%9Amiechu,380,394,8967440,3277,0 +27254,Wioska+barbarzy%C5%84ska,448,653,699849210,3439,0 +27255,Jestem+Poza+Kontrol%C4%85,348,550,8004076,9880,0 +27256,011+serniczek+z+niespodziank%C4%85,501,661,8954402,9733,0 +27257,Darmowe+przeprowadzki,476,661,698807570,11321,0 +27258,Sir+develes,625,606,698786826,9327,0 +27259,Wioska+barbarzy%C5%84ska,660,468,699574408,8541,0 +27260,%7E%7E076%7E%7E,614,618,7829201,7326,0 +27261,013+Weso%C5%82y+Cyrk,392,618,8268010,9835,0 +27262,Myk+i+do+kieszonki,354,565,9319058,9799,0 +27263,003+Vengerberg,469,660,699834004,10168,0 +27264,Wioska+Bochun10,335,482,7449254,10311,0 +27266,K34+x032,410,368,698364331,6145,0 +27267,B+022,662,529,8078914,9631,0 +27268,22.+Przybud%C3%B3wka+u+sebcia,369,599,8665783,8957,0 +27269,006,499,660,848953066,6431,0 +27270,020+serniczek+na+biszkopcie,509,664,8954402,10252,0 +27271,KUZYN,411,638,848913998,10160,0 +27272,057+xxx,640,426,9238175,10545,6 +27273,053,529,577,699189792,10052,0 +27274,North+Barba+043,427,352,699796330,9894,0 +27275,Wioska+barbarzy%C5%84ska,347,439,393668,2337,0 +27276,Wioska+Bochun10,339,460,7449254,6273,0 +27277,080,656,554,849095227,9825,0 +27278,0546,531,659,698659980,10019,0 +27279,Weso%C5%82ych+%C5%9Awi%C4%85t,576,356,848915730,6971,4 +27280,Wioska+Bochun10,337,488,7449254,10311,0 +27281,054.,390,625,2665207,9835,0 +27282,cc+44,400,375,3909522,4038,0 +27283,Lord+Lord+Franek+.%23154,504,334,698420691,10141,0 +27284,Architekci+Plac%C3%B3w+Boju,339,532,8004076,8993,5 +27285,Ave+Why%21,471,652,699121671,9809,0 +27286,Psycha+Siada+i+sie+nie+podnosi,466,656,698807570,10252,0 +27287,072,444,635,849084985,10311,0 +27288,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,659,698807570,10252,0 +27289,016+Neapol,380,385,8419570,10221,0 +27290,%230079+barbarzy%C5%84ska,475,336,1238300,10178,0 +27291,Bagienko.Anker...,375,392,699713515,8505,0 +27292,aaaa,476,636,6948793,9899,0 +27293,BAC%C3%93WKA+%7C029%7C,631,406,7394371,8053,0 +27294,Jehu_Kingdom_38,644,435,8785314,7179,0 +27295,Lord+Lord+Franek+.%23114,517,338,698420691,10252,0 +27296,021.,400,627,2665207,9835,0 +27297,MojeDnoToWaszSzczyt,568,350,848915730,9976,0 +27298,xxx+-+04,605,629,699778867,10318,0 +27299,Wyngiel+we+wsi,556,347,699072129,10064,0 +27300,Kentin+ufam+Tobie,339,472,699783765,9364,0 +27301,094,619,611,698786826,10365,0 +27302,001+MONETKI,659,467,7588382,9108,0 +27303,Klaudek12,592,365,849092309,4566,0 +27304,A+011,604,377,6384450,8768,0 +27305,Elevation+WY,490,663,849004274,9835,0 +27306,028+-+Mroczna+Osada,639,416,849035905,8382,0 +27307,Nowy+%C5%9Bwiat+A,344,553,849084005,3031,0 +27308,006+MONETKI,660,467,7588382,9828,0 +27309,Myk+i+do+kieszonki,362,582,9319058,9799,0 +27310,017.+Barbara1,335,506,1830149,2957,0 +27311,011%29+Radk%C3%B3w,548,348,849097103,2137,0 +27312,005,646,562,849095963,9351,0 +27313,020+Psycha+Siad%C5%82a+%3AD,460,655,698650301,4354,0 +27314,deff+100+%25,351,569,849012521,9166,0 +27315,041.,394,622,2665207,9835,5 +27316,Wioska+barbarzy%C5%84ska,631,602,848993505,2228,0 +27317,Wioska+Bochun10,341,496,7449254,10311,0 +27318,Gra+o+Tron,614,617,8815749,10019,0 +27320,Wioska+barbarzy%C5%84ska,662,463,113796,5399,0 +27321,023,660,524,699351301,10067,2 +27322,Szulernia,407,363,7249451,10638,0 +27323,Lord+Lord+Franek+.%23115,515,336,698420691,9729,0 +27325,Wie%C5%9Bmak,334,529,849096458,8426,0 +27326,amator+czysto,544,654,848915531,7919,0 +27327,Wioska+barbarzy%C5%84ska,600,626,848995242,10252,0 +27328,D%C4%85browa+0006,367,590,849096972,9966,0 +27329,%230097+barbarzy%C5%84ska,460,342,1238300,8869,0 +27330,Kirkus,422,639,849089459,11911,0 +27331,Kentin+ufam+Tobie,339,475,699783765,10000,0 +27332,132,473,343,7271812,8002,0 +27333,Lord+Lord+Franek+.%23038,524,343,698420691,10141,0 +27334,009+MONETKI,662,465,7588382,8903,0 +27335,Maszlug+kolonia+XV,367,407,848977649,5996,0 +27336,B+046,657,531,8078914,9057,0 +27337,001+-+Mroczna+Osada,639,418,849035905,9306,0 +27338,Wioska+002,383,391,8419570,10168,0 +27339,Soltys+Waszych+Wsi,398,377,849027025,8491,0 +27340,Wioska+barbarzy%C5%84ska,658,454,113796,6234,0 +27341,Bagienko.Anker...,376,395,699713515,6824,0 +27342,Wioska+barbarzy%C5%84ska,416,641,699736927,7373,0 +27343,003+Arkadia,378,392,849059457,8478,0 +27344,Piek%C5%82o+to+inni,582,359,848956765,10160,0 +27345,025.,404,632,2665207,9835,0 +27346,112,347,452,6258092,5043,0 +27347,BAC%C3%93WKA+%7C033%7C,625,397,7394371,8925,0 +27348,Jestem+Poza+Kontrol%C4%85,347,543,8004076,9880,8 +27349,0141,625,592,698416970,10252,0 +27350,Mniejsze+z%C5%82o+0071,338,502,699794765,4879,0 +27351,095,622,602,698786826,10495,0 +27352,Weso%C5%82ych+%C5%9Awi%C4%85t,574,354,848915730,10109,0 +27353,Piek%C5%82o+to+inni,565,353,848956765,10160,0 +27354,Kentin+ufam+Tobie,338,477,699783765,10000,0 +27355,010,377,391,849059457,5602,0 +27356,Chekku+-+meito,338,523,9280477,9976,0 +27357,29k%24+Grvvyq,647,563,699676005,10495,0 +27358,Szulernia,412,362,7249451,10259,8 +27359,Jednak+wol%C4%99+gofry,436,648,699736927,10954,0 +27360,Wioska+barbarzy%C5%84ska,663,513,699851345,5863,0 +27361,Architekci+Plac%C3%B3w+Boju,341,549,8004076,9880,1 +27363,MojeSzczytToTw%C3%B3jDno,507,337,828637,10495,0 +27365,034+barbarzy%C5%84ska,642,425,9238175,7993,0 +27366,076+terror,640,422,9238175,9557,0 +27367,North+Wyszk%C3%B3w,427,357,699796330,10297,0 +27368,Lord+Lord+Franek+.%23060,521,335,698420691,9976,0 +27370,A+003,643,463,849027653,10287,0 +27371,Charfa,514,339,699072129,10223,0 +27373,0504,534,660,698659980,10160,0 +27374,Lord+Lord+Franek+.%23099,513,335,698420691,10089,2 +27375,002,643,572,699301458,1612,0 +27376,668%7C371,608,375,699580120,5710,0 +27377,0019,412,358,699431255,10046,0 +27378,Wioska+004,387,615,848912772,10068,0 +27380,LortMort__1__,381,398,8967440,6774,0 +27381,%2ANo+i+po...,574,646,699443920,8392,0 +27382,001+Roma,378,406,848945529,7270,0 +27383,Ma%C5%82omice,372,599,849095992,10365,0 +27384,014.+Dla+flag,350,441,698630507,3745,0 +27385,Pobozowisko,385,618,699513260,8410,0 +27386,Wied%C5%BAma+-+Gwiazda,385,416,698884287,6253,0 +27387,Darmowe+przeprowadzki,464,648,848935389,9704,0 +27388,0191,546,654,698659980,10019,0 +27389,006,629,554,849095227,9783,0 +27390,4.02,346,443,393668,9976,0 +27391,I%23008,599,375,2065730,9797,0 +27392,Macp+1,339,512,61791,9152,0 +27393,Kentin+ufam+Tobie,342,468,699783765,10000,0 +27394,08+Wioska,441,649,698993706,9835,0 +27395,myself,562,647,699828685,9976,0 +27396,Nowa+32,650,569,698702991,10178,0 +27397,Osada+koczownik%C3%B3w,542,340,699066118,6857,3 +27398,046,570,648,699828685,8913,0 +27399,0025,419,358,699431255,9961,0 +27400,Wioska+Bochun10,336,488,7449254,10311,0 +27401,B.054,665,504,9188016,10008,0 +27402,cc+Zo%C5%9Bka,399,370,3909522,10067,1 +27403,Piek%C5%82o+to+inni,561,349,848956765,9938,0 +27404,Wioska+barbarzy%C5%84ska,631,596,8337151,5765,0 +27405,Wioska+semunus,626,392,699758688,1316,0 +27406,Wioska+Bochun10,339,496,7449254,10311,0 +27407,012+serniczek+na+ciep%C5%82o,500,664,8954402,9964,0 +27408,Kentin+ufam+Tobie,342,472,699783765,10000,0 +27409,Wioska+barbarzy%C5%84ska+Krr,368,402,8967440,3184,0 +27410,Szulernia,415,362,7249451,9983,0 +27411,Kozaki+2,629,604,699778867,12154,2 +27413,0044,409,370,848913037,9533,0 +27414,Denger+18,366,587,698353083,9654,0 +27415,066,665,484,7085502,8742,0 +27416,0002,394,382,8419570,10480,0 +27417,Sparta_26,488,591,2585846,9638,0 +27418,17.solidna+tama,367,592,8665783,9133,0 +27419,Lece+bokiem,463,651,698807570,10252,0 +27420,MojeSzczytToTw%C3%B3jDno,508,341,828637,10559,0 +27421,--1.+Chatka+Wielkiego+W%C5%82adka,388,409,698345556,10495,0 +27422,Bagienko.Anker...,376,393,699713515,9058,0 +27423,%230063+barbarzy%C5%84ska,468,343,1238300,10178,0 +27424,Jehu_Kingdom_60,649,431,8785314,4777,0 +27425,102,653,442,849088515,10019,0 +27427,Szczebel,631,597,8337151,8272,0 +27428,lupi,374,395,699842853,1289,0 +27429,MojeDnoToWaszSzczyt,569,353,848915730,9938,0 +27430,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,657,699828442,10016,0 +27431,013+serniczek+zag%C5%82ady,504,663,8954402,9745,0 +27432,001+D%C5%BCinek,391,618,8268010,9835,0 +27433,KUZYN,412,642,848913998,3023,0 +27434,Krosno+1,533,341,7485877,4815,0 +27435,Weso%C5%82ych+%C5%9Awi%C4%85t,592,361,848915730,5346,0 +27436,Gattacka,613,382,699298370,9488,0 +27437,Jestem+Poza+Kontrol%C4%85,346,551,8004076,9880,9 +27438,J006,366,605,849090130,10160,0 +27439,Wioska+barbarzy%C5%84ska,662,470,699574408,8866,0 +27440,A-013,385,399,8419570,10319,0 +27441,005+VW+AreKing,364,410,3108144,8266,4 +27442,Gattacka,619,385,699298370,9367,0 +27443,Dajanka+34,352,576,849012843,1553,0 +27444,053,609,380,849010255,3089,0 +27445,Gattacka,615,384,699298370,9382,0 +27446,Wioska+barbarzy%C5%84ska,342,449,393668,7063,0 +27447,%3F010+barbarzy%C5%84ska,539,659,699828685,9976,0 +27448,SSJ+007,510,631,699054373,9761,0 +27449,0005,612,614,6417987,9442,0 +27450,A33,472,664,698652014,9756,0 +27451,607%7C369,605,379,699580120,6544,0 +27452,107,655,440,849088515,9716,0 +27453,042,660,484,7085502,8748,0 +27454,Valhalla+B1,378,605,849097002,11130,0 +27455,Z+001,487,338,6384450,7396,0 +27456,Piek%C5%82o+to+inni,578,354,848956765,10160,0 +27457,Wioska+barbarzy%C5%84ska,556,344,699072129,10237,0 +27459,Wioska+barbarzy%C5%84ska,403,368,698160606,5936,0 +27460,X009,352,564,9264752,9462,0 +27461,012Wybuch+gazu,389,615,698620694,9127,0 +27462,Weso%C5%82ych+%C5%9Awi%C4%85t,577,352,848915730,10160,6 +27463,Wioska+barbarzy%C5%84ska,428,350,699191455,9073,0 +27464,%7C001%7C+Chania,496,670,699393742,10063,0 +27465,012+MONETKI,661,467,7588382,8514,0 +27466,086...barba+centr,457,347,6920960,10229,0 +27467,%2ANontendo,575,644,699443920,9761,0 +27468,ADEN,572,350,698588535,10053,0 +27470,666%7C375,609,375,699580120,9570,0 +27471,Gattacka,618,385,699298370,9358,0 +27472,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,393,627,1434753,10068,0 +27473,001+Gex1992,336,511,915113,9478,0 +27474,I%23010,602,378,2065730,9797,9 +27475,029+-+Mroczna+Osada,642,417,849035905,6441,0 +27476,O09+Almada,665,523,699272880,10132,0 +27477,%7CB%7C+Silentshear,487,665,698147372,9954,0 +27478,65k%24+Grvvyq,650,562,699676005,9275,0 +27479,059.+Puteoli,657,466,849091866,9177,0 +27480,Wioska+barbarzy%C5%84ska,380,386,8419570,5814,0 +27481,.%3A072%3A.+Chillout,506,395,848934935,3937,0 +27482,Pobozowisko,384,614,699513260,6791,0 +27483,0013,536,662,698659980,10252,1 +27484,%23105%23,633,601,692803,9761,0 +27485,Ludzikowo,338,534,849096458,8643,0 +27487,.055.,467,341,698489071,7430,0 +27488,Wioska+barbarzy%C5%84ska,401,371,698160606,7255,0 +27489,Pobozowisko,389,618,699513260,5822,0 +27490,Zygmunciarz+2,380,425,8967440,4108,0 +27491,off+100+%25,361,576,849012521,10495,0 +27493,Wioska+barbarzy%C5%84ska,664,508,699851345,8341,0 +27495,Lord+Lord+Franek+.%23155,505,336,698420691,9839,0 +27496,31.+Sko%C5%82osz%C3%B3w+skrzy%C5%BCowanie,373,606,8665783,10971,0 +27497,Taki+Pan,513,336,698739350,5970,0 +27498,006+serniczek+z+kaw%C4%85,504,660,8954402,10160,0 +27499,017,460,656,698650301,9825,0 +27500,Grvvyq+117k%24,613,618,699676005,10252,0 +27501,D+001,663,504,8078914,9976,0 +27502,-04-,333,502,765188,10062,0 +27503,%230044+barbarzy%C5%84ska,470,344,1238300,10178,0 +27504,Wioska+barbarzy%C5%84ska,344,448,393668,8281,0 +27505,01Wioska,368,598,8607734,9398,0 +27506,029+weekend+z+serniczkiem,506,664,8954402,9730,0 +27507,%3D064%3D+Wioska+barbarzy%C5%84ska,657,552,3781794,10139,0 +27508,Maszlug+kolonia+XXI,362,415,848977649,3993,0 +27509,mys,573,649,699828685,9645,0 +27510,%3D050%3D+Wioska+barbarzy%C5%84ska,644,579,3781794,10580,0 +27511,022,450,651,698650301,4390,2 +27512,B+038,662,532,8078914,8674,0 +27513,%230081+barbarzy%C5%84ska,471,336,1238300,10178,0 +27514,0010,534,662,698659980,10252,1 +27515,Jestem+Poza+Kontrol%C4%85,345,545,8004076,9880,0 +27516,087,621,605,698786826,10495,0 +27517,Wioska+barbarzy%C5%84ska,346,544,8004076,3454,0 +27518,Architekci+Plac%C3%B3w+Boju,339,544,8004076,7805,0 +27519,%C5%81ajka,663,507,699851345,9730,0 +27521,-08-,334,498,765188,6188,0 +27522,Lord+Lord+Franek+.%23039,522,343,698420691,10141,0 +27523,B+023,663,534,8078914,9505,0 +27524,Tylko+pp+%2F,620,392,7559093,5667,0 +27525,050,662,542,849095227,9721,0 +27526,Kentin+ufam+Tobie,393,481,699783765,10000,0 +27527,%5B160%5D,566,555,8000875,9024,0 +27528,Urged+nal,510,661,849004274,9835,0 +27529,%230077+barbarzy%C5%84ska,473,335,1238300,10050,0 +27530,xyz+%23004+TerrorMachine,580,361,7555180,9740,0 +27531,008.,400,630,2665207,9835,3 +27532,Wioska+barbarzy%C5%84ska,339,515,9280477,1038,0 +27533,Pobozowisko,378,613,699513260,10688,0 +27535,MojeSzczytToTw%C3%B3jDno,503,369,828637,10362,0 +27536,5AA,355,432,7765098,8594,0 +27537,Szlachcic+%21%21%21,506,475,699098531,9681,0 +27538,B+047,657,530,8078914,8992,0 +27539,North+Barba+044,424,356,699796330,9396,0 +27541,048,664,496,7085502,9968,0 +27542,KUZYN,417,641,848913998,3230,0 +27543,Wioska+barbarzy%C5%84ska,344,445,393668,2267,0 +27544,05+Wioska,442,653,698993706,7455,0 +27545,Weso%C5%82ych+%C5%9Awi%C4%85t,591,362,848915730,6524,7 +27546,Bagdad,495,339,8847546,10368,0 +27547,Szulernia,409,363,7249451,10169,0 +27548,Darmowe+przeprowadzki,476,662,698807570,11297,0 +27549,sas,557,622,7581876,9835,0 +27550,Szulernia,411,361,7249451,9989,0 +27551,Myk+i+do+kieszonki,357,583,9319058,9799,4 +27552,003.,397,626,2665207,9761,0 +27553,0463,380,605,698659980,9883,0 +27554,038,649,561,699316421,9744,7 +27555,MojeSzczytToTw%C3%B3jDno,507,340,828637,10495,0 +27556,Szlachcic,406,368,698160606,10253,0 +27557,Gattacka,617,388,699298370,10470,0 +27558,068+xyz013,644,427,9238175,10242,0 +27559,13+-+Osada,376,610,8607734,10495,4 +27561,Osada+koczownik%C3%B3w,557,343,699072129,10220,2 +27562,Gattacka,615,386,699298370,10470,0 +27563,%5B170%5D,641,576,8000875,7340,0 +27564,Ronin+P,611,620,8815749,10019,0 +27565,083,661,525,699351301,5460,0 +27566,Myk+i+do+kieszonki,379,511,9319058,9799,0 +27567,North+Kutno,420,356,699796330,10292,0 +27568,024.,401,633,2665207,9835,0 +27569,Erebor+1,501,592,699383121,10471,0 +27570,012...P%C5%81D_O,455,358,6920960,10495,0 +27571,Wioska+barbarzy%C5%84ska,379,386,8419570,3397,0 +27572,026,664,499,7085502,9937,0 +27573,004Wioska,463,656,698807570,10051,0 +27574,%230072+barbarzy%C5%84ska,469,337,1238300,9438,7 +27575,M181_025,359,423,393668,9902,0 +27576,045.xxx,512,661,849004274,10168,0 +27577,024+Boston,430,434,9291984,10319,0 +27578,Lord+Lord+Franek+.%23116,519,340,698420691,9984,0 +27579,0008+Gda%C5%84sk,377,381,849096882,6723,0 +27580,0505,533,657,698659980,10019,0 +27582,0000,618,382,848924219,2772,0 +27583,Grvvyq+102k%24,653,558,699676005,10495,0 +27584,Bagdad,502,338,8847546,10068,5 +27585,Pobozowisko,409,589,699513260,10952,0 +27586,xyz+%23012+TerrorMachine,583,364,7555180,6806,0 +27587,Piek%C5%82o+to+inni,581,359,848956765,10160,0 +27588,%230034+barbarzy%C5%84ska,464,343,1238300,10178,0 +27589,Jestem+Poza+Kontrol%C4%85,346,559,8004076,9880,0 +27590,wErza,449,654,699849210,5482,0 +27591,026...+Zach%C3%B3d,434,349,6920960,10559,6 +27592,%7CA%7C+Timberfrost,478,649,698807570,10495,0 +27593,012+VW+Wioska+barbarzy%C5%84ska,365,412,3108144,4174,0 +27594,cc+01+Wioska+barbarzy%C5%84ska,402,370,3909522,10503,0 +27595,0088,606,628,699432672,10495,0 +27596,%2A056,602,625,699567608,9615,0 +27597,O08+Sintra,665,522,699272880,10157,0 +27598,0506,532,661,698659980,9747,0 +27599,010+barbarzy%C5%84ska,642,423,9238175,10290,0 +27600,Wioska+barbarzy%C5%84ska,348,444,393668,10178,0 +27601,Szlachcic,403,371,698160606,10495,0 +27602,%230074+barbarzy%C5%84ska,472,335,1238300,10178,0 +27604,Akra,418,643,699736927,9067,0 +27605,002,599,366,1018357,10019,0 +27606,BETON+024,623,605,699277039,10495,0 +27607,Piek%C5%82o+to+inni,564,351,848956765,10160,0 +27608,Wioska+barbarzy%C5%84ska,385,382,8419570,1848,0 +27609,030,663,484,7085502,9893,0 +27610,Krosno+3,537,338,7485877,5807,0 +27611,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,663,699828442,9825,0 +27612,Wioska+barbarzy%C5%84ska,558,347,699072129,10370,0 +27613,Obrze%C5%BCa+09,552,655,848915531,5983,0 +27614,Wioska+Bochun10,335,497,7449254,7917,0 +27615,A0301,340,486,8841266,10252,0 +27616,0536,562,659,698659980,10426,0 +27617,Bagdad,496,334,8847546,10311,0 +27618,32.+Na+Wa%C5%82brzych,373,598,8665783,10728,0 +27619,D+002,660,505,8078914,10479,0 +27620,Jaaa,665,486,698635863,10555,0 +27621,Rabsztyn,378,407,848945529,8906,0 +27622,O15+Alftanes,664,517,699272880,10006,0 +27623,A007,617,453,699722599,10362,0 +27624,Lord+Lord+Franek+.%23061,535,342,698420691,10023,0 +27625,BEZDZIETNY+KAWALER,412,635,848913998,10301,0 +27626,R%C4%99cznik+do+zmiany,369,407,699697558,10160,0 +27627,Szulernia,409,365,7249451,10237,0 +27628,O26+Songdo,664,524,699272880,9852,0 +27629,%2A052,593,631,699567608,9728,0 +27630,0507,519,660,698659980,10160,0 +27631,010+MONETKI,656,466,7588382,8757,0 +27633,Pobozowisko,383,615,699513260,7332,0 +27634,off+100+%25,352,566,849012521,10245,0 +27635,102...tomecz,483,335,6920960,9613,0 +27636,wJuvia,447,656,699849210,4849,0 +27637,Myk+i+do+kieszonki,348,564,9319058,9799,0 +27638,Gattacka,617,386,699298370,10470,0 +27639,K34+-+%5B132%5D+Before+Land,437,353,699088769,9783,0 +27640,North+Barba+047,425,357,699796330,9115,0 +27641,111,473,352,7271812,10495,0 +27642,Selawi,344,456,6258092,8873,0 +27643,B+030,660,535,8078914,9509,0 +27644,0023,417,355,699431255,10069,0 +27645,utopia,365,415,8967440,8506,0 +27646,Myk+i+do+kieszonki,362,581,9319058,9799,0 +27647,059,665,518,698999105,8620,0 +27648,025+-+Mroczna+Osada,636,410,849035905,10728,0 +27649,Sexxy+P,609,617,8815749,10019,5 +27650,Nowa+34,646,572,698702991,9819,0 +27651,Myk+i+do+kieszonki,358,583,9319058,10045,0 +27652,BEZDZIETNY+KAWALER,412,634,848913998,10066,0 +27653,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,662,698807570,7144,0 +27654,%3D041%3D+Wioska+barbarzy%C5%84ska,650,555,3781794,10217,0 +27655,North+Brze%C5%9B%C4%87+Kujawski,418,355,699796330,9887,0 +27656,24.+KaruTown,634,405,849060446,9735,0 +27657,J004.,367,601,849090130,10083,0 +27658,0012,612,616,6417987,7756,0 +27659,Zapora,391,380,606706,2587,0 +27660,cc+pol004,400,373,3909522,6197,0 +27661,Wioska+barbarzy%C5%84ska,570,646,6818593,9835,0 +27662,0001+Krak%C3%B3w,391,378,699402816,10634,0 +27663,CC+Choroszcz,395,372,3909522,9888,0 +27664,J06,365,596,849090130,3047,0 +27665,%2A244%2A,351,437,699273451,10233,0 +27666,Wioska+Tomek85,388,496,699265922,9761,0 +27667,Sir+develes,622,608,698786826,10471,0 +27668,POMIDOR,662,471,699598425,10728,0 +27669,Wioska+barbarzy%C5%84ska,338,521,8004076,8419,0 +27670,psycha+sitting,425,655,699736927,10311,0 +27671,%230089+barbarzy%C5%84ska,471,343,1238300,9734,0 +27672,001+Teneesse,476,655,698585370,9811,0 +27673,Jestem+Poza+Kontrol%C4%85,349,560,8004076,8803,0 +27674,048.+Hispalis,630,455,849091866,10252,0 +27675,Szlachcic,403,373,698160606,10475,0 +27676,027.+Propaganda,512,666,848928624,9904,0 +27677,Minneapolis%2C+Minnesota,602,371,7462660,10068,0 +27678,Wioska+barbarzy%C5%84ska,402,365,8419570,7534,0 +27679,Osada+koczownik%C3%B3w,586,638,1415009,10481,6 +27680,Monetkownia,616,616,699759128,10237,0 +27681,Nowa+29,644,569,698702991,9960,0 +27682,Wioska+barbarzy%C5%84ska,540,338,699066118,5401,0 +27683,Szulernia,409,364,7249451,9981,0 +27684,J007.,369,601,849090130,10019,0 +27685,psycha+sitting,442,657,699736927,10311,0 +27686,0547,528,663,698659980,9860,0 +27687,Szlachcic,456,416,698388578,10237,0 +27688,BAC%C3%93WKA+%7C023%7C,640,410,7394371,7047,0 +27689,02+tonieostatnieslowo,606,371,699861004,9554,0 +27690,BAC%C3%93WKA+%7C037%7C,633,403,7394371,5667,0 +27692,020,661,490,7085502,9783,0 +27693,015.,396,624,2665207,9835,0 +27695,Wioska+Bochun10,336,493,7449254,10336,0 +27696,609%7C372,607,374,699580120,5627,0 +27697,Architekci+Plac%C3%B3w+Boju,340,543,8004076,3549,7 +27698,Ave+Why%21,456,638,698585370,9924,0 +27699,011,595,635,849097799,8264,0 +27700,0015,556,656,698659980,10252,1 +27701,008,380,392,849059457,4490,0 +27702,Stawiamy+p%C5%82otek,347,451,6258092,2083,0 +27703,Jestem+Poza+Kontrol%C4%85,348,554,8004076,9880,0 +27704,Wioska+Bochun10,337,498,7449254,10569,0 +27705,0089,614,623,699432672,10495,0 +27706,cc+Tworki,396,371,3909522,10027,0 +27707,117+Wioska+barbarzy%C5%84ska,548,344,699491076,9756,0 +27708,Pobozowisko,377,611,699513260,7998,0 +27709,012,662,492,7085502,9740,0 +27710,%2ANeptek,580,646,699443920,9761,0 +27711,%2A095%2A,359,413,699273451,10211,0 +27712,084,654,556,849095227,9806,9 +27713,Banan%231,593,367,699485250,10211,0 +27714,Myk+i+do+kieszonki,359,576,9319058,9799,0 +27715,049,657,553,698999105,9782,0 +27716,Wioska+001,384,388,8419570,9873,0 +27717,014.,403,628,2665207,9835,0 +27718,023+pawelk95,661,487,2135129,9500,0 +27719,26.+KaruTown,635,405,849060446,9735,0 +27720,A001,472,639,699383279,9805,0 +27721,Kuku+na+Muniu,344,536,849096458,8652,0 +27722,Chekku+-+meito,336,525,9280477,10068,0 +27723,18+Belegost,458,649,699736927,6871,0 +27724,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,658,699828442,9809,0 +27725,-007-,344,446,393668,10136,0 +27726,MojeDnoToWaszSzczyt,566,350,848915730,9924,0 +27727,076+komornicy,341,544,699510259,2622,0 +27729,Jednak+wol%C4%99+gofry,424,644,699736927,7828,0 +27730,Kozaki+3,616,609,699778867,12154,0 +27731,006+Speyside,554,345,699072129,6081,0 +27732,%3D051%3D+Wioska+barbarzy%C5%84ska,642,575,3781794,9192,0 +27733,--keystone,623,390,8096537,10311,0 +27734,040,655,543,698999105,10311,0 +27735,135,475,335,7271812,6810,0 +27737,BAC%C3%93WKA+%7C030%7C,631,405,7394371,5878,0 +27738,I009,664,450,699722599,10140,0 +27739,0086,609,625,699432672,10495,0 +27740,088,622,603,698786826,10401,0 +27741,07+Wioska,440,651,698993706,6548,0 +27742,Darmowe+przeprowadzki,467,657,848935389,9809,0 +27743,Wioska+barbarzy%C5%84ska,664,526,6510480,7072,0 +27746,Dodowo+mniejsze,339,533,849096458,8998,0 +27747,0030,612,625,699432672,10495,0 +27748,003,650,565,699301458,1563,0 +27749,005+Jeszcze+%C5%BCyje,337,508,915113,5716,0 +27750,007+serniczek+z+czekolad%C4%85,504,662,8954402,10160,0 +27751,072,627,598,698786826,8892,0 +27752,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,655,698807570,10093,0 +27753,0195,546,656,698659980,10019,0 +27754,%3D048%3D+Wioska+barbarzy%C5%84ska,657,550,3781794,10526,0 +27755,%23%23+Nieznana+%23%23,630,602,699778867,10094,0 +27756,Krosno+6,538,341,7485877,5263,0 +27757,MojeSzczytToTw%C3%B3jDno,508,338,828637,10490,0 +27758,006.Lille,336,507,1830149,9792,0 +27759,Pobozowisko,381,616,699513260,9474,0 +27760,011.,624,524,6520732,10019,0 +27761,023+M%C5%82odzie%C5%84cza+rado%C5%9B%C4%87,391,620,8268010,8777,0 +27762,B.08,667,510,699737356,9566,0 +27763,Lord+Lord+Franek+.%23062,527,341,698420691,9965,0 +27764,%C5%BBUBRAWKA+001,603,622,33900,10452,6 +27765,004,423,641,849089459,9835,0 +27766,Myk+i+do+kieszonki,348,565,9319058,9799,0 +27767,Ave+Why%21,477,666,698585370,9194,0 +27768,Samarkanda,426,644,849089459,9452,0 +27770,Grvvyq+100k%24,653,559,699676005,10495,0 +27772,0283,554,657,698659980,9419,0 +27773,NI1,346,457,6258092,10495,5 +27774,Wioska+Bochun10,333,492,7449254,10336,0 +27775,Piek%C5%82o+to+inni,564,353,848956765,10019,0 +27776,Obrze%C5%BCa+03,554,655,848915531,10838,4 +27777,Fifon%C5%BC,339,529,849096458,9459,0 +27778,012,602,368,1018357,9797,0 +27779,%2ANic+nowego...,578,646,699443920,9761,0 +27780,Architekci+Plac%C3%B3w+Boju,338,541,8004076,4589,0 +27781,Jamachama,367,398,8967440,6965,0 +27782,12k%24+Grvvyq,657,567,699676005,10495,0 +27783,-01-,332,497,765188,10728,0 +27784,Jednak+wol%C4%99+gofry,422,644,699736927,5197,0 +27786,%3D052%3D+Wioska+barbarzy%C5%84ska,644,576,3781794,10580,0 +27787,Chekku+-+meito,334,519,9280477,8207,0 +27788,003+Wioska+barbarzy%C5%84ska,335,515,915113,8685,0 +27789,Gattacka,612,385,699298370,9372,0 +27790,Monetkownia,617,615,699759128,10237,0 +27791,Osi%C4%99ciny-morra12311,650,425,7340529,10534,0 +27792,z+057,583,640,699342219,10495,0 +27793,A033+Wioska+7,657,443,113796,9615,0 +27794,001,422,640,849089459,9995,0 +27795,%C5%BBUBRAWKA+B002,618,617,33900,9149,0 +27797,%5B172%5D,637,586,8000875,7170,0 +27798,Obrze%C5%BCa+05,554,653,848915531,11550,0 +27799,DW5,347,449,6258092,10495,0 +27801,026+barbarzy%C5%84ska,643,418,9238175,9879,0 +27802,Darmowe+przeprowadzki,466,659,848935389,11143,0 +27803,Wioska+Bochun10,336,518,7449254,4644,0 +27804,0028,416,357,699431255,9546,0 +27805,Valhalla+8.,375,602,849097002,9078,0 +27806,056.,392,624,2665207,9835,0 +27807,North+Barba+045,426,353,699796330,9714,0 +27808,SPOCENI+KUZYNI,416,645,848913998,9487,0 +27809,Gattacka,618,383,699298370,10470,0 +27810,0508,541,662,698659980,10019,0 +27811,North+Barba+037,421,357,699796330,9983,0 +27812,Lord+Lord+Franek+.%23156,503,339,698420691,9976,0 +27813,B+058,664,531,8078914,5924,0 +27814,073,629,596,698786826,8761,0 +27816,Obrze%C5%BCa+091,553,655,848915531,5641,0 +27817,Taran,544,385,699170684,9379,0 +27818,A034+Wioska+8,654,452,113796,10140,0 +27819,%2A142%2A,358,416,699273451,8986,7 +27820,Valhalla+9,374,603,849097002,10262,0 +27821,Taki+Pan,501,336,698739350,6487,0 +27822,79k%24+Grvvyq,655,564,699676005,10495,0 +27823,2.05,343,456,3502565,6818,0 +27825,Krosno+5,538,339,7485877,4926,0 +27826,0006,424,643,699736927,4390,0 +27827,Darma+dla+zawodnika,518,667,699494488,10229,7 +27828,Zachodnie+skrzydlo,614,383,848924219,4233,0 +27829,Wioska+barbarzy%C5%84ska,633,407,699429153,9825,0 +27830,Lord+Lord+Franek+.%23157,501,332,698420691,9971,0 +27831,Ave+Why%21,480,666,698585370,9387,0 +27832,Lord+Lord+Franek+.%23007,525,335,698420691,10294,0 +27833,023,452,655,698650301,10019,0 +27834,Avanti%21,381,485,698625834,9950,0 +27835,O12+Barbosa,662,519,699272880,10006,0 +27836,10+im+Mironowa,591,430,849037469,9809,0 +27837,Bagdad,498,337,8847546,10132,0 +27838,%3D068%3D+Wioska+barbarzy%C5%84ska,659,550,3781794,10380,0 +27839,Wioska+barbarzy%C5%84ska,573,647,6818593,9835,0 +27840,113.+Morze+Garyjskie,634,600,8337151,7968,0 +27841,024+pawelk95,663,483,2135129,9000,0 +27842,030+-+Mroczna+Osada,642,414,849035905,6848,0 +27843,Dajanka+30,353,575,849012843,446,0 +27844,%7C016%7C+Kato+Zakros,493,662,699393742,10252,0 +27845,130...centr,447,344,6920960,9814,0 +27846,Piek%C5%82o+to+inni,583,360,848956765,10160,0 +27847,Taki+Pan,513,333,698739350,5208,0 +27848,wStyx,447,658,699849210,5960,0 +27849,%7C019%7C+Gialos,499,668,699393742,10160,0 +27850,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,664,698807570,8913,0 +27851,000000,415,583,225023,10495,0 +27852,D+016,662,499,8078914,9820,0 +27853,Maszlug+kolonia+XIX,361,419,848977649,4531,0 +27854,0087,610,627,699432672,10495,0 +27855,027.,406,636,2665207,9835,0 +27856,Lord+Lord+Franek+.%23063,535,343,698420691,10144,0 +27857,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,619,1434753,10068,0 +27858,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,522,661,699828442,9817,0 +27859,K34+-+%5B129%5D+Before+Land,441,349,699088769,9783,0 +27860,%23113%23,638,592,692803,8257,0 +27861,A22,476,667,698652014,10842,0 +27862,Obrze%C5%BCa+08,553,651,848915531,6731,0 +27863,A029,595,370,699485250,9368,0 +27864,Wioska+Bochun10,337,475,7449254,10444,0 +27865,llllllllllllllll,626,400,699429153,10224,0 +27866,104,654,445,849088515,10019,0 +27867,Wioska+Bochun10,340,464,7449254,10311,0 +27868,13.+Stara+uje%C5%BCd%C5%BCalnia,371,596,8665783,8984,0 +27870,SPOCENI+KUZYNI,421,647,848913998,10109,0 +27871,%5BB%5D_%5B027%5D+Dejv.oldplyr,434,345,699380607,9441,0 +27872,Architekci+Plac%C3%B3w+Boju,342,538,8004076,7700,0 +27874,002,423,640,849089459,9428,0 +27875,005+MONETKI,657,467,7588382,8911,0 +27877,MojeDnoToWaszSzczyt,565,347,848915730,9938,0 +27878,0022,414,363,848913037,9993,0 +27879,Ave+Why%21,476,660,698585370,11297,0 +27880,Piwna+26,648,426,699812007,7583,0 +27882,Bagdad,499,336,8847546,9820,0 +27883,Lord+Lord+Franek+.%23178,531,337,698420691,10160,0 +27884,Chekku+-+meito,343,531,9280477,8719,0 +27885,--Lead,623,386,8096537,10104,0 +27887,Szlachcic%2FTaran,613,376,699759128,10237,0 +27888,Lord+Lord+Franek+.%23064,525,337,698420691,9957,0 +27889,009,646,570,849095963,5946,0 +27890,Psycha+Siada,457,661,698807570,9214,0 +27891,Lech+Pozna%C5%84+NWR,491,668,849004274,9835,0 +27892,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,656,698807570,10252,0 +27893,Kentin+ufam+Tobie,338,480,699783765,10000,0 +27894,029+MONETKI,662,476,7588382,9581,0 +27895,052,663,537,849095227,9562,0 +27896,Wioska+Bochun10,338,501,7449254,8541,0 +27897,Nowy+%C5%9Awiat+RCxD,487,660,849004274,9835,0 +27899,xyz+%23016+TerrorMachine,583,363,7555180,5753,0 +27900,639%7C410+Wioska+barbarzy%C5%84ska,639,410,6822957,7089,0 +27901,Ave+Why%21,477,665,698585370,9385,0 +27902,Kentin+ufam+Tobie,337,478,699783765,10000,0 +27903,I%23030,598,368,2065730,8385,0 +27904,Dajanka+29,353,580,849012843,2214,0 +27905,North+P%C5%82ock,426,355,699796330,9906,0 +27906,039+Attre,468,663,699834004,9976,0 +27907,Architekci+Plac%C3%B3w+Boju,341,543,8004076,9795,0 +27908,WKS,332,506,849097614,9405,0 +27909,Jednak+wol%C4%99+gofry,473,652,699725436,10083,0 +27910,%2ANess,576,645,699443920,9761,0 +27912,50k%24+Grvvyq,650,570,699676005,8098,0 +27913,Wioska+065,640,590,848971079,9761,0 +27914,%2A245%2A,353,431,699273451,9322,0 +27915,002+serniczek+z+rodzynkami,500,668,8954402,10160,1 +27917,yogi,531,543,2808172,10393,0 +27918,KUZYN,415,642,848913998,2943,0 +27919,Wioska+barbarzy%C5%84ska,577,649,6818593,9835,0 +27920,18.+Podlascy+inwigilatorzy,373,605,8665783,9238,0 +27921,127+Village+Name+2,598,365,699491076,10001,0 +27922,032+barbarzy%C5%84ska,644,419,9238175,8151,0 +27923,Taki+Pan,499,339,698739350,5937,0 +27924,Wioska+barbarzy%C5%84ska,379,385,8419570,7236,0 +27925,%3D059%3D+Wioska+barbarzy%C5%84ska,645,581,3781794,10580,0 +27926,Wioska+barbarzy%C5%84ska,556,343,699072129,10217,0 +27927,Mexico2,455,643,699736927,9428,0 +27928,0566,567,653,698659980,10019,0 +27930,ADEN,576,352,698588535,10311,0 +27931,020,627,610,699567608,9525,0 +27932,B+016,662,535,8078914,10458,0 +27933,wWendy,448,655,699849210,7087,0 +27934,mys,565,650,699828685,9976,0 +27935,Lord+Lord+Franek+.%23065,532,337,698420691,10152,0 +27936,Pobozowisko,385,613,699513260,8580,0 +27937,0161,535,667,698659980,10160,0 +27938,I%23029,597,368,2065730,5811,0 +27939,Taran,667,491,699598425,10728,0 +27940,Ziemia,549,341,699797805,3450,0 +27941,Grab%C3%B3wek,387,386,8419570,10168,0 +27942,Wioska+Bochun10,334,504,7449254,10495,0 +27943,Sony+911,582,645,1415009,10208,0 +27944,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,393,626,1434753,10068,0 +27945,D+012,666,504,8078914,9746,0 +27946,%5B157%5D,642,587,8000875,8236,0 +27947,%230091+barbarzy%C5%84ska,479,337,1238300,9438,0 +27948,K34+-+%5B134%5D+Before+Land,432,353,699088769,10126,3 +27950,B.055,665,507,9188016,10000,0 +27951,Ave+Why%21,476,665,698585370,9465,9 +27952,Weso%C5%82ych+%C5%9Awi%C4%85t,588,361,848915730,5562,0 +27953,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,664,698807570,10158,0 +27954,0509,521,665,698659980,10495,0 +27956,030...Ob,453,344,6920960,10220,0 +27957,Jestem+Poza+Kontrol%C4%85,349,554,8004076,8369,0 +27958,Lord+Lord+Franek+.%23040,525,342,698420691,9960,0 +27959,021+Anor+Londo,487,671,699834004,10787,0 +27960,029...OPELEK,441,345,6920960,10233,0 +27961,Piek%C5%82o+to+inni,580,353,848956765,4483,0 +27962,Rework,366,592,849095992,9668,0 +27963,MojeDnoToWaszSzczyt,565,348,848915730,9938,0 +27964,Lord+Lord+Franek+.%23066,534,337,698420691,9962,0 +27966,Lord+Lord+Franek+.%23117,509,332,698420691,9960,0 +27967,Wioska+klez+017,335,511,698295651,6967,0 +27968,Gattacka,613,378,699298370,9809,0 +27969,036+Thurn,442,655,699834004,3426,0 +27970,Wioska+barbarzy%C5%84ska,554,342,699072129,10220,0 +27971,-0003-,543,339,2972329,9761,0 +27972,Valhalla+3,369,603,849097002,9218,0 +27973,011,433,651,849089459,9811,0 +27974,121...centr,457,341,6920960,7611,0 +27976,Wioska+barbarzy%C5%84ska,553,343,699072129,10378,0 +27977,134...barba,458,338,6920960,9074,0 +27978,--wall+drug,624,387,8096537,9761,0 +27980,Wioska+Bochun10,337,516,7449254,4703,0 +27981,Ave+Why%21,479,661,698585370,11297,0 +27982,MojeSzczytToTw%C3%B3jDno,510,337,828637,10478,0 +27983,004+nazwa,363,597,8607734,10019,0 +27984,Wioska+barbarzy%C5%84ska,379,384,8419570,6251,0 +27985,026%7C%7C+Puppis,490,638,849035525,10019,0 +27986,%C5%BBUBRAWKA+024,592,636,33900,9849,0 +27987,Darmowe+przeprowadzki,461,656,848935389,11321,0 +27988,02Wioska,367,599,8607734,7643,0 +27989,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F1,597,630,33900,6812,0 +27990,118+Wioska+barbarzy%C5%84ska,548,345,699491076,9997,0 +27991,Dajanka+21,341,542,849012843,1925,0 +27992,0019,625,388,699857387,6173,0 +27993,D%C4%85browa+0001,359,592,849096972,10083,0 +27994,Jowisz,550,341,699797805,4202,0 +27995,CHARFA,512,339,699072129,10218,5 +27996,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,659,699828442,9817,0 +27997,%23.19+YYY,659,472,849054582,10019,0 +27998,%5B0023%5D,419,415,8630972,10495,0 +27999,Szlachcic+%21%21%21,496,471,699098531,8983,0 +28000,%C5%BBUBRAWKA+014,602,628,33900,9606,0 +28001,009,593,640,699316421,7991,0 +28002,Piek%C5%82o+to+inni,580,357,848956765,10160,0 +28003,023+VW+Wioska+barbarzy%C5%84ska,362,407,3108144,3363,0 +28005,Szlachcic%2FTaran,622,394,699759128,9238,0 +28006,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,662,698807570,9491,0 +28007,047,661,536,698999105,10311,0 +28008,34.+Lutkow+litra+na+%C5%82ep,378,575,8665783,7442,0 +28009,Wioska,386,380,8419570,9559,0 +28011,Krosno,533,339,7485877,7335,0 +28012,%5B0024%5D,416,413,8630972,10495,0 +28013,Monetkownia,619,617,699759128,10237,0 +28015,Jaaa,666,498,698635863,9398,0 +28016,%2A007,591,639,699567608,10144,4 +28017,Wioska+barbarzy%C5%84ska,351,428,393668,6439,0 +28018,77.,634,401,7394371,6539,0 +28019,Itself+SA,511,666,849004274,9835,0 +28020,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,661,699828442,9825,0 +28021,Piek%C5%82o+to+inni,561,345,848956765,10160,0 +28022,%3D053%3D+Wioska+barbarzy%C5%84ska,645,579,3781794,9807,0 +28024,Taki+Pan,513,337,698739350,6167,0 +28025,Monetkownia,617,610,699759128,10237,0 +28026,001.,398,624,2665207,9835,0 +28027,Mniejsze+z%C5%82o+0085,339,505,699794765,5180,0 +28028,060,656,541,699351301,10160,0 +28029,deff+100+%25,347,568,849012521,8982,0 +28030,001.Wioska+zbyszek2609,333,506,1830149,9814,0 +28031,016,454,339,2502956,10019,0 +28032,009.+Dla+flag,348,437,698630507,7188,0 +28033,015,667,488,7085502,9746,0 +28034,Jestem+Poza+Kontrol%C4%85,348,552,8004076,9587,0 +28035,03+Wioska,442,652,698993706,9485,0 +28036,Wioska+009,386,387,8419570,10168,0 +28037,nosze+klapki+marki+Kubota,581,639,848995242,10346,0 +28038,E%23001,634,406,2065730,5829,0 +28039,Darma+dla+zawodnika,515,660,699494488,10424,0 +28040,%C5%BBUBRAWKA+015,596,629,33900,8000,0 +28041,Jaaa,668,496,698635863,10495,0 +28042,zzzRezygnacja+01,631,606,848971079,11270,0 +28043,112,652,439,849088515,7270,0 +28044,cc+Kobierzynqqqqqqqqqqqqqqqqq,394,373,3909522,10144,0 +28045,Ave+Why%21,481,665,698585370,9632,4 +28046,%230098+barbarzy%C5%84ska,460,344,1238300,7959,0 +28047,Lord+Lord+Franek+.%23067,523,335,698420691,10032,0 +28049,A032+Wioska+3,658,445,113796,10143,0 +28050,Hej+hoo,436,350,699393759,10495,0 +28051,Jestem+Poza+Kontrol%C4%85,349,561,8004076,9880,0 +28052,.achim.,490,334,6936607,10266,0 +28053,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,630,1434753,10068,0 +28054,-016-,371,598,699097885,9899,0 +28055,%5BA%5D013,430,650,849097175,3335,0 +28056,A01,472,666,698652014,10019,0 +28057,050.,406,634,2665207,9835,0 +28058,031,667,484,7085502,10158,0 +28059,Nowy+%C5%9Bwiat+3,344,560,849084005,6927,0 +28060,8047,375,605,8607734,8480,0 +28061,Aila,419,646,699736927,7441,0 +28062,Chekku+-+meito,335,526,9280477,9976,0 +28063,Lord+Lord+Franek+.%23158,509,333,698420691,10299,0 +28064,089,623,609,698786826,10401,0 +28065,Valhalla+A3,374,602,849097002,7321,0 +28066,Wioska+barbarzy%C5%84ska,661,463,113796,4082,0 +28067,A036,574,372,699485250,10211,0 +28068,SPOCENI+KUZYNI,413,644,848913998,3731,0 +28069,66.+KaruTown,631,402,7394371,10080,9 +28070,042+%7C+PALESTINA,645,421,9228039,9544,0 +28071,Darmowe+przeprowadzki,468,661,848935389,10753,0 +28072,xxx+-+06,609,620,6520732,10374,0 +28073,007,598,632,849097799,8401,0 +28074,008+serniczek+z+karmelem,502,664,8954402,9984,0 +28075,psycha+sitting,428,651,699736927,7380,0 +28076,M181_022,356,427,393668,9902,0 +28077,023.,401,629,2665207,9835,0 +28078,Denger+13,360,589,698353083,9239,0 +28079,0510,533,661,698659980,10083,0 +28080,040,662,498,7085502,9735,0 +28081,%2ANo+i+co+z+tego...,575,645,699443920,9761,1 +28082,Wioska+Bochun10,333,487,7449254,10311,0 +28083,003,545,340,849087786,3356,0 +28084,016.,403,629,2665207,9835,0 +28085,025,653,538,699351301,11321,0 +28086,Lord+Lord+Franek+.%23118,518,333,698420691,8273,0 +28087,008+Gors+Velen,466,660,699834004,10104,0 +28088,052KZ,486,332,849063849,7662,0 +28089,Wioska+barbarzy%C5%84ska,540,337,699066118,5154,0 +28090,070,602,372,2502956,10019,0 +28091,022,603,367,1018357,10019,9 +28092,0297,568,654,698659980,10083,0 +28093,002,547,341,849087786,5150,2 +28094,093...bar,453,339,6920960,9464,0 +28095,Darma+dla+zawodnika,527,663,7860453,9804,0 +28096,%23.39+Wioska+barbarzy%C5%84ska,662,474,849054582,4058,0 +28097,019+-+Mroczna+Osada,635,410,849035905,10320,2 +28098,025...+P%C3%B3%C5%82+zach,450,344,6920960,10495,0 +28099,B.09,663,495,699737356,7473,0 +28100,---010,375,612,8607734,9704,0 +28101,026.,401,632,2665207,9835,0 +28102,Myk+i+do+kieszonki,358,578,9319058,9799,5 +28103,42k%24+Grvvyq,649,578,699676005,10421,0 +28104,%7CB%7C+Crystalshell.,488,667,698147372,10495,0 +28106,072,659,551,849095227,7967,0 +28107,%2A4625%2Aa+Remont,646,429,7973893,9791,0 +28108,Wioska+barbarzy%C5%84ska,576,648,6818593,9792,0 +28109,27.+W+buszu,360,592,8665783,8109,0 +28110,J009,365,601,849090130,6391,0 +28111,009+serniczek+z+makrel%C4%85,502,663,8954402,10139,0 +28112,B.056,668,506,9188016,10000,0 +28113,Valhalla+1,369,605,849097002,12154,0 +28114,zzzRezygnacja+04,627,601,699778867,10495,0 +28115,045KZ,483,334,849063849,8716,0 +28116,%2A025,600,635,699567608,9712,0 +28117,Weso%C5%82ych+%C5%9Awi%C4%85t,591,360,848915730,5625,0 +28118,027+MONETKI,663,482,7588382,9544,0 +28119,Wioska+Kaffik+II,634,582,6136757,6769,0 +28120,Wioska+barbarzy%C5%84ska,384,386,8419570,7025,0 +28122,090,622,609,698786826,10495,0 +28123,0233,540,661,698659980,10083,7 +28124,113...centr,453,346,6920960,8672,0 +28125,0235,558,656,698659980,10083,0 +28126,%2A01+Nemeczek%2A,362,412,2415972,10177,0 +28127,Klan+Wilka,346,435,849097716,8035,0 +28128,Kasyno,449,512,7249451,9689,0 +28129,Lord+Lord+Franek+.%23106,516,339,698420691,9957,0 +28130,X008,351,563,9264752,10008,0 +28131,Gattacka,615,383,699298370,9372,0 +28132,Wioska+barbarzy%C5%84ska,543,343,698350371,4142,0 +28133,--Lyon,619,384,8096537,10703,0 +28134,Dzielnica+klasztorna,481,340,849048216,5120,0 +28135,Twierdz%C4%85+4,660,464,848935020,7670,0 +28136,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,627,1434753,10068,0 +28137,Valhalla+A1,374,604,849097002,7614,0 +28138,0067,424,352,699431255,9473,0 +28140,048+BOBI+4,662,481,2135129,9309,0 +28141,cc+Z0000000000000,393,377,3909522,6059,0 +28142,022,470,661,699834004,7688,0 +28143,046+Essex,632,592,699272880,8142,0 +28144,Wuwuzela,340,534,849096458,8703,0 +28145,B+018,661,537,8078914,9789,0 +28146,Lord+Lord+Franek+.%23159,503,334,698420691,9925,0 +28147,018,634,404,7092442,5600,0 +28148,O33+Florida,667,522,699272880,10006,0 +28149,Myk+i+do+kieszonki,353,571,9319058,9799,0 +28150,Wioska+barbarzy%C5%84ska,371,399,848886056,3768,0 +28151,Wioska+barbarzy%C5%84ska,384,383,8419570,4092,0 +28152,1v9+machine,391,619,699697558,10019,0 +28153,054,356,517,698641566,9809,0 +28154,014+serniczek+z+posypk%C4%85,504,661,8954402,9806,0 +28155,012+Beauclair,460,658,699834004,10311,0 +28156,53.+KaruTown,636,405,7092442,4863,0 +28157,Bagdad,498,334,8847546,10311,0 +28158,Wioska+Bochun10,337,462,7449254,10452,0 +28159,chata+z+basenem,594,637,848995242,10362,0 +28160,deff+100+%25,349,570,849012521,9790,0 +28161,Lord+Lord+Franek+.%23068,526,335,698420691,9962,0 +28162,%5BB%5D_%5B003%5D+Dejv.oldplyr,429,351,699380607,10495,0 +28163,016.Barbara,335,507,1830149,4927,0 +28164,Orze%C5%82+Wyl%C4%85dowa%C5%82,466,663,698807570,10160,0 +28165,North+Barba+048,423,351,699796330,9753,0 +28166,kto+ananasowy+pod+wod%C4%85+ma+dom,661,539,699628084,9938,0 +28167,008+MONETKI,663,477,7588382,9828,0 +28168,013W-B%C4%99dzin,558,510,8323711,10495,0 +28169,Lord+Lord+Franek+.%23069,517,336,698420691,9976,0 +28170,nie+budzi%C4%87+%21%21%21,582,646,848995242,10268,0 +28172,K34+-+%5B139%5D+Before+Land,442,347,699088769,9783,0 +28173,0030+MzM,634,592,698416970,8788,3 +28174,010+-+Mroczna+Osada,640,421,849035905,10602,0 +28175,WB+10,632,604,2269943,3480,0 +28176,Lord+Lord+Franek+.%23070,526,338,698420691,9955,0 +28177,Myk+i+do+kieszonki,347,562,9319058,9799,0 +28178,Szulernia,383,378,7249451,10898,0 +28179,Budal,620,390,699298370,10259,0 +28180,Wioska+barbarzy%C5%84ska,350,430,393668,7122,0 +28181,Sony+911,588,636,1415009,10257,0 +28182,MojeDnoToWaszSzczyt,566,347,848915730,9938,0 +28183,Lord+Lord+Franek+.%23119,511,333,698420691,9933,0 +28184,X007,352,563,9264752,10495,0 +28185,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,628,1434753,10068,0 +28186,Architekci+Plac%C3%B3w+Boju,341,551,8004076,4042,0 +28187,Architekci+Plac%C3%B3w+Boju,338,538,8004076,9778,0 +28188,136,476,337,7271812,7535,0 +28189,%230042+barbarzy%C5%84ska,470,338,1238300,10178,0 +28190,amator,554,654,848915531,8811,0 +28191,Klaudek,591,370,849092309,9994,0 +28192,Wioska+Bochun10,336,463,7449254,8238,0 +28193,043,660,539,849095227,9790,0 +28195,Grvvyq+116k%24,612,617,699676005,10362,0 +28196,%2A080%2A,358,413,699273451,10211,0 +28197,Z+002,488,338,6384450,6744,0 +28198,004+-+Mroczna+Osada,642,419,849035905,11321,0 +28199,089,658,556,849095227,9753,0 +28200,Lord+Lord+Franek+.%23160,505,334,698420691,10029,0 +28201,02.+Stra%C5%BC+miejska+na+Zawadach,505,668,849092769,9986,0 +28202,020+MONETKI,662,479,7588382,9380,0 +28203,Valhalla+A0,372,603,849097002,9629,0 +28204,Cezaria,408,637,849096944,8598,0 +28205,%3A%3A%3A%3A35%3A%3A%3A,447,657,699849210,8179,0 +28207,033+serniczek+rosa,515,667,8954402,10970,0 +28208,%2A013+Nemeczek%2A,363,413,2415972,9274,0 +28209,%2A064%2A,356,416,699273451,10211,0 +28210,0653,539,667,698659980,9747,0 +28211,Klaudek7,594,369,849092309,7160,0 +28212,%5BA%5D001,425,651,699736927,7561,0 +28213,A022+Alicante,658,459,113796,10160,0 +28214,BAC%C3%93WKA+%7C036%7C,631,399,7394371,12154,0 +28215,Z+003,488,339,6384450,9111,0 +28216,Orze%C5%82+Wyl%C4%85dowa%C5%82,451,660,698807570,8834,0 +28217,Lord+Lord+Franek+.%23161,501,334,698420691,9881,0 +28218,%5BB%5D_%5B007%5D+Dejv.oldplyr,424,350,699380607,10728,0 +28219,Wioska+barbarzy%C5%84ska,349,444,393668,5940,0 +28220,Wioska+Bochun10,338,462,7449254,10311,0 +28221,Lord+Lord+Franek+.%23120,516,332,698420691,8406,0 +28222,Wioska+barbarzy%C5%84ska,422,653,699736927,7130,0 +28223,A+009,608,378,6384450,10362,0 +28224,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,390,628,849097937,9190,0 +28225,005.Coma,366,404,8967440,8158,0 +28226,%5BB%5D_%5B013%5D+Dejv.oldplyr,428,349,699380607,10636,0 +28227,C005,361,588,8607734,10160,9 +28228,005+fristajloo,595,363,1018357,10019,0 +28229,A026+Gradac,660,458,113796,10160,0 +28230,0026,413,355,699431255,9813,0 +28231,.achim.,532,399,6936607,10311,0 +28232,Architekci+Plac%C3%B3w+Boju,339,538,8004076,7700,0 +28233,%25+2+%25+spocone+dziadki,582,638,848995242,10426,0 +28234,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,397,634,1434753,10068,0 +28235,Jehu_Kingdom_14,650,431,8785314,7604,0 +28236,005,546,339,849087786,1629,0 +28237,.achim.,526,386,6936607,8801,0 +28238,Weso%C5%82ych+%C5%9Awi%C4%85t,597,363,848915730,7410,0 +28239,North+Barba+050,426,349,699796330,9385,0 +28240,Szlachcic%2FTaran,625,390,699759128,10237,0 +28241,0171,546,662,698659980,10019,0 +28242,%7C023%7C+Rodos,498,664,699393742,9976,0 +28243,Krosno+7,535,341,7485877,2964,0 +28245,Wioska+barbarzy%C5%84ska+C,365,404,8967440,2851,0 +28246,Wioska+Foxter,473,647,698585370,9347,0 +28247,Wioska+Bochun10,334,492,7449254,10311,0 +28248,-0004-,540,340,2972329,9761,0 +28249,48k%24+Grvvyq,652,571,699676005,9892,0 +28250,028.,404,637,2665207,9835,0 +28251,Weso%C5%82ych+%C5%9Awi%C4%85t,589,357,848915730,8151,0 +28252,012,435,652,699246032,9226,4 +28253,Sexxy+P,614,619,8815749,10019,0 +28254,%2A131%2A,354,416,699273451,10211,0 +28255,kto+ananasowy+pod+wod%C4%85+ma+dom,664,538,699628084,9571,0 +28256,%230101+barbarzy%C5%84ska,478,339,1238300,9960,0 +28257,%3D033%3D+Wioska+barbarzy%C5%84ska,655,554,3781794,8043,0 +28258,Wioska+Bochun10,334,513,7449254,4043,0 +28259,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,663,698807570,10252,1 +28260,030+serniczek+z+budyniem,510,666,8954402,9735,0 +28261,Cz%C4%99stochowa,669,498,699737356,8488,0 +28262,Wioska+barbarzy%C5%84ska,441,655,699736927,4263,0 +28263,0511,536,659,698659980,10083,0 +28264,Chekku+-+meito,336,524,9280477,9976,0 +28265,CRESOVIA,336,513,849097614,9086,0 +28266,cc+Bimbrownia,397,368,3909522,9144,0 +28268,%2ANokturn,577,641,699443920,9761,0 +28269,Izbica+Kujawska-morra12311,650,427,7340529,10654,0 +28270,081,659,555,849095227,9835,0 +28271,%2A157%2A,357,412,699273451,8053,0 +28273,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,661,698807570,9483,0 +28274,Wioska+barbarzy%C5%84ska,445,344,699308637,9051,0 +28275,066...barbarka,441,343,6920960,10229,0 +28276,005,596,636,849097799,9070,3 +28277,O03+Isengard,661,516,699272880,10436,0 +28278,MojeDnoToWaszSzczyt,570,351,848915730,9938,0 +28279,A+READY,595,399,1553947,10019,0 +28280,%2A012+Nemeczek%2A,361,413,2415972,8806,0 +28281,Piek%C5%82o+to+inni,579,353,848956765,10019,0 +28282,Jestem+Poza+Kontrol%C4%85,348,559,8004076,9880,0 +28283,Bagdad,497,338,8847546,10368,0 +28284,Wioska+barbarzy%C5%84ska,384,384,8419570,7836,0 +28285,042,653,555,699316421,9744,0 +28286,Ave+Why%21,475,660,698585370,10863,0 +28287,031+serniczek+z+owocami,507,665,8954402,9729,0 +28288,Denger+17,364,590,698353083,9651,0 +28289,I002+uuuu,663,457,699722599,10387,9 +28290,%C5%BBUBRAWKA+022+wioska+123,595,633,33900,10052,0 +28292,Wioska+barbarzy%C5%84ska,551,344,699072129,10229,0 +28293,001+serniczek,501,664,8954402,10160,0 +28294,Chekku+-+meito,334,534,9280477,9976,0 +28296,Orze%C5%82+Wyl%C4%85dowa%C5%82,452,659,698807570,6910,0 +28297,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,664,699828442,9811,0 +28298,Chamachata,378,390,8967440,4562,5 +28299,Pa%C5%84stfa+Pu%C5%82nocy,581,352,699433558,10444,0 +28300,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F1,621,616,33900,10140,0 +28301,Architekci+Plac%C3%B3w+Boju,342,560,8004076,9880,0 +28302,005,477,352,698739350,10237,0 +28303,047,664,540,699351301,10143,0 +28304,K34+-+%5B123%5D+Before+Land,444,346,699088769,9924,0 +28305,Myk+i+do+kieszonki,357,579,9319058,4283,4 +28306,No.+7,481,662,698826986,9092,0 +28307,Lord+Lord+Franek+.%23071,526,339,698420691,9965,0 +28308,Szulernia,417,361,7249451,9981,0 +28309,048,649,566,699316421,8034,0 +28310,Orze%C5%82+Wyl%C4%85dowa%C5%82,450,660,698807570,5441,0 +28311,DW4,341,448,393668,10311,8 +28312,Wioska+Kaffik+III,642,578,6136757,8060,0 +28313,Modesto%2C+Kalifornia,603,373,7462660,10122,0 +28314,O11+Logrono,660,520,699272880,9989,0 +28315,Wioska+barbarzy%C5%84ska,664,468,699574408,8761,0 +28316,%C5%BBUBRAWKA+016,604,630,33900,9845,0 +28317,Wioska+barbarzy%C5%84ska,554,660,7756002,9370,0 +28318,020+-+Mroczna+Osada,636,408,849035905,10830,0 +28319,Myk+i+do+kieszonki,349,566,9319058,9215,0 +28320,A20,474,664,698652014,10834,0 +28321,0081,628,604,698416970,8549,0 +28323,Xray,671,504,699737356,8745,0 +28324,0172,545,663,698659980,10083,0 +28325,Faring,347,435,849097716,4073,0 +28326,Nordson,352,428,393668,6720,0 +28327,ADEN,571,348,698588535,10311,0 +28328,Szulernia,392,377,7249451,2712,0 +28329,1.08,339,454,3502565,4284,0 +28330,055+Shinsoo,627,589,699272880,7184,0 +28331,Myk+i+do+kieszonki,358,579,9319058,9799,0 +28332,Wioska+VEGE+2,657,559,87575,6148,0 +28333,B.057,667,504,9188016,10000,0 +28334,Jestem+Przest%C4%99pc%C4%85,663,511,699851345,10141,0 +28335,Denger+10,360,584,698353083,10386,0 +28337,B+048,662,528,8078914,9281,0 +28338,cc+Cedron,391,373,3909522,10152,1 +28339,Wioska+Bochun10,335,503,7449254,5509,0 +28340,030.,401,636,2665207,9835,0 +28342,nowa+parcela,580,641,848995242,10362,0 +28343,008,595,631,699316421,10273,0 +28345,%C5%BBUBRAWKA+005+kuba,600,625,33900,10037,0 +28346,Lord+Lord+Franek+.%23072,532,335,698420691,9976,0 +28347,Wioska+Bochun10,332,482,7449254,6643,0 +28348,Klaudek5,591,365,849092309,3599,0 +28349,%230080+barbarzy%C5%84ska,474,338,1238300,8646,0 +28350,TORPEDA,331,510,849097614,9212,0 +28351,37k%24+Grvvyq,649,574,699676005,10042,0 +28352,M181_035,348,427,393668,9705,0 +28354,031.,403,636,2665207,9835,0 +28355,021,625,613,699567608,10495,0 +28356,049,649,569,699316421,7313,0 +28357,002.,609,538,6520732,10019,0 +28358,%3D044%3D+Osada+koczownik%C3%B3w,656,549,3781794,10580,9 +28359,001+Arcadia+Bay,468,660,699834004,10252,0 +28360,B+024,661,535,8078914,9580,0 +28361,049KZ,487,331,849063849,5963,0 +28362,aaaaaaaaa,435,349,699308637,10559,0 +28363,Weso%C5%82ych+%C5%9Awi%C4%85t,586,362,848915730,8728,0 +28364,055.,389,623,2665207,9835,0 +28365,Szlachcic%2FTaran,627,389,699759128,10237,0 +28366,Wioska+barbarzy%C5%84ska,594,359,849041192,5228,0 +28367,%243.000+Grvvyq,644,574,699676005,10495,8 +28368,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,629,1434753,10068,0 +28369,%7C004%7C+Retimno,496,665,699393742,10063,0 +28370,Piek%C5%82o+to+inni,586,361,848956765,9742,0 +28371,%3D054%3D+Wioska+barbarzy%C5%84ska,644,577,3781794,10580,0 +28372,-09-,333,496,765188,5707,0 +28373,SPOCENI+KUZYNI,420,646,848913998,2083,0 +28374,001+nazwa,362,603,8607734,10252,0 +28375,Wioska+barbarzy%C5%84ska,397,367,3484132,7452,0 +28377,I010+Stado+Pingwin%C3%B3w,661,454,699722599,10144,0 +28379,%C5%BBUBRAWKA+018,609,626,33900,4877,0 +28380,Jednak+wol%C4%99+gofry,428,648,699736927,9584,0 +28381,MojeDnoToWaszSzczyt,567,349,848915730,9976,0 +28382,Jehu_Kingdom_40,649,434,8785314,7769,0 +28383,Kentin+ufam+Tobie,357,452,699783765,10000,0 +28384,P014+Balacha,667,505,8096537,9741,0 +28385,Didus+P,655,562,849070946,10160,0 +28387,Gattacka,614,384,699298370,9408,0 +28388,Moria,372,396,848886056,6055,0 +28389,.2.,600,370,7462660,10485,0 +28390,Dzikie+wsparcie,469,659,848935389,9809,0 +28391,%C5%BBUBRAWKA+010,601,629,33900,9941,0 +28393,114...centr,451,343,6920960,6865,0 +28394,060.+ALFI,464,562,8539216,872,0 +28395,Taka001,479,664,848999671,9594,0 +28396,17.+%C5%81ysy+ekipa,636,411,849060446,9747,0 +28397,nowa+parcelaa,582,639,848995242,10426,0 +28399,Weso%C5%82ych+%C5%9Awi%C4%85t,588,358,848915730,9902,0 +28400,%C5%BBUBRAWKA+006+Kantero,602,629,33900,10203,0 +28401,Wioska+barbarzy%C5%84ska,556,659,7756002,9902,0 +28402,.achim.,525,412,6936607,10311,0 +28403,Wioska+barbarzy%C5%84ska+032,490,339,6343784,6590,0 +28404,044.,389,626,2665207,9835,0 +28405,14.+Palce+w+Natalce,637,408,849060446,9750,0 +28407,Dzie%C5%84+s%C4%85du+nadszed%C5%82,511,661,849004274,10160,0 +28408,Jednak+wol%C4%99+gofry,424,645,699736927,8093,0 +28409,Wioska+Bochun10,336,482,7449254,10311,6 +28410,Wioska+Bochun10,336,484,7449254,10336,0 +28411,BAC%C3%93WKA+%7C045%7C,631,401,7394371,7313,0 +28412,016,427,649,699736927,8042,0 +28413,Wioska+Bochun10,338,471,7449254,10311,0 +28414,jedziemy+dalej,347,441,849098784,2676,0 +28415,Szulernia,408,359,7249451,9981,0 +28417,Wioska+b21,495,332,698239813,8353,0 +28418,133...centr+barb,449,345,6920960,8552,0 +28419,Szulernia,410,360,7249451,10010,0 +28421,SPOCENI+KUZYNI,417,646,848913998,2810,0 +28422,JEDNOR%C4%98KI+BANDYTA,411,635,848913998,10160,0 +28423,%230088+barbarzy%C5%84ska,477,337,1238300,9951,0 +28424,%2A141%2A,358,415,699273451,10211,0 +28426,%5BB%5D_%5B012%5D+Dejv.oldplyr,425,349,699380607,10495,0 +28427,021,457,344,2502956,10019,0 +28428,DMN+003,650,421,698998882,5316,0 +28429,%5BB%5D%5B04%5D+Bottom+Lounge,433,344,699380621,10161,7 +28430,Wioska+Kora,395,468,699523631,10476,0 +28432,%7CC18%7C+Nale%C5%9Bniki+z+ramen,450,662,8966820,10160,0 +28434,Szlachcic%2FTaran,612,373,699759128,10237,0 +28435,008,482,352,698739350,10247,0 +28436,58k%24+Grvvyq,646,581,699676005,7557,0 +28438,010+VW+Wioska+barbarzy%C5%84ska,363,408,3108144,6440,0 +28439,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,381,609,849097937,8971,0 +28440,0512,520,668,698659980,9827,0 +28441,0017,415,356,699431255,9946,1 +28442,Ow+Konfederacja+%2B,595,402,848915730,10079,0 +28443,Wioska+barbarzy%C5%84ska,345,547,8004076,2818,0 +28445,Piek%C5%82o+to+inni,577,357,848956765,10160,0 +28446,021,597,634,849097799,7627,0 +28447,Jaaa,664,487,698635863,10618,0 +28448,Szulernia,408,362,7249451,9981,0 +28449,Bagdad,496,337,8847546,10068,0 +28450,Darmowe+przeprowadzki,474,662,848935389,11065,0 +28451,001.Phantom+Menace,361,409,8967440,8876,0 +28453,043.,388,626,2665207,9835,0 +28454,Pobozowisko,380,619,699513260,10971,0 +28455,034+plemienny+serniczek,517,665,8954402,10829,0 +28456,cc+Zarabie,394,372,3909522,10052,3 +28457,009.Wioska+jedyny1taki,333,510,1830149,9824,0 +28458,158...wSCHODDD,493,331,6920960,8699,0 +28459,Lord+Lord+Franek+.%23006,525,333,698420691,10178,0 +28460,Zamek+Drakenhof,428,647,699736927,10311,0 +28461,Piek%C5%82o+to+inni,583,359,848956765,10160,0 +28462,Weso%C5%82ych+%C5%9Awi%C4%85t,590,362,848915730,5642,0 +28463,MELISKA,340,466,699794765,8799,0 +28465,J001.,364,602,849090130,10361,0 +28466,Ob+Konfederacja,437,344,848915730,6649,0 +28467,1v9+machine,387,620,699697558,10083,0 +28468,B.058,668,508,9188016,7937,0 +28469,0513,530,665,698659980,9636,0 +28471,Wioska+barbarzy%C5%84ska,400,363,8419570,8086,0 +28472,0567,564,653,698659980,9745,0 +28473,Jehu_Kingdom_41,647,427,8785314,7802,0 +28474,Wioska+barbarzy%C5%84ska,596,630,1415009,430,0 +28475,Taran,665,477,699598425,10728,0 +28477,074,630,598,698786826,10226,0 +28478,001%29+Dzier%C5%BConi%C3%B3w,544,347,849097103,9291,0 +28479,Pobozowisko,381,619,699513260,10951,0 +28480,062+%7C+PALESTINA,648,428,9228039,2945,0 +28481,deff+100+%25,350,568,849012521,9353,0 +28482,Lord+Lord+Franek+.%23121,527,336,698420691,7931,0 +28483,B+025,661,533,8078914,9460,0 +28485,Myk+i+do+kieszonki,359,583,9319058,9799,0 +28486,Taka007,477,664,848999671,9594,0 +28487,Denger+11,360,586,698353083,9648,0 +28488,Abdoulxx,474,657,849089459,11321,0 +28489,Jaaa,665,493,698635863,9214,0 +28491,028,627,612,699567608,10365,0 +28492,0010,621,523,6510480,10322,0 +28493,020.,402,634,2665207,9835,0 +28494,A-039,403,361,8419570,10795,0 +28495,Lord+Lord+Franek+.%23162,508,335,698420691,9960,0 +28496,O18+Temuco,663,521,699272880,10001,0 +28498,Piek%C5%82o+to+inni,562,350,848956765,10160,0 +28499,Nowy+%C5%9Bwiat+A,345,554,849084005,5518,0 +28500,I004,663,458,699722599,10140,0 +28501,sony911,584,646,1415009,9949,0 +28502,Monetkownia,620,619,699759128,10237,0 +28503,46k%24+Grvvyq,650,571,699676005,9522,0 +28504,Nowy+%C5%9Bwiat+A,340,556,849084005,5304,0 +28507,O21+Valdivia,664,532,699272880,10373,0 +28508,Wioska+barbarzy%C5%84ska,492,340,8847546,8309,0 +28510,Darma+dla+zawodnika,517,666,699494488,10157,0 +28511,009+Cidaris,469,663,699834004,10104,0 +28512,--one+eye+jack,622,390,8096537,9495,0 +28513,%2A268%2A,353,429,699273451,2339,0 +28514,Dajanka+19,343,549,849012843,1442,0 +28515,078,654,558,849095227,9767,0 +28516,0256,561,655,698659980,10160,0 +28517,2.04,343,453,3502565,3648,0 +28518,SPOCENI+KUZYNI,416,646,848913998,4915,0 +28519,004,550,340,849087786,6039,0 +28520,%2A002,596,638,699567608,8862,0 +28521,Pobozowisko,380,609,699513260,8121,0 +28522,I070,662,455,699722599,9971,0 +28523,drewutnia,385,375,8419570,9545,0 +28524,046,662,508,699351301,4922,0 +28526,180,579,421,849064752,10311,0 +28527,M181_036,347,425,393668,9691,0 +28528,0514,537,660,698659980,10019,0 +28529,026,628,607,699567608,9851,0 +28530,0541,563,655,698659980,5938,0 +28531,057,667,523,699413040,6551,0 +28532,%230075+barbarzy%C5%84ska,473,336,1238300,8738,6 +28533,Lord+Lord+Franek+.%23163,499,333,698420691,9976,0 +28534,%230179+MiBM,490,331,1238300,7184,0 +28535,Wioska+10,378,384,849096544,3875,0 +28536,%2C%2C%2C,348,443,849098784,2137,0 +28537,M181_003,345,431,393668,9912,0 +28538,039+Boru1996+%233,386,625,6354098,9972,0 +28539,Myk+i+do+kieszonki,350,576,849012521,8321,7 +28540,0088,612,627,698416970,8911,0 +28541,046,658,547,849095227,9867,0 +28542,A018+go%C5%9B%C4%87+fabianello,660,463,113796,10301,0 +28543,I028+3+W+Nocy,659,440,699722599,10238,0 +28545,A34,472,663,698652014,9835,0 +28546,North+Barba+024,426,354,699796330,10087,0 +28548,.%3A004%3A.,374,610,7417116,12154,0 +28549,KUZYN,416,642,848913998,7993,0 +28550,018.Barbara2,334,509,1830149,3749,0 +28551,Myk+i+do+kieszonki,360,582,9319058,9799,0 +28552,%2A138%2A,357,417,699273451,10211,0 +28553,.%3A027%3A.+%C5%81OBUZIK,553,370,848934935,8971,0 +28554,119+Wioska+barbarzy%C5%84ska,555,345,699491076,10001,0 +28555,024...+FELEK_P%C3%B3%C5%82noc,461,348,6920960,10495,0 +28556,%3D055%3D+Wioska+barbarzy%C5%84ska,645,583,3781794,8647,0 +28557,zzzRezygnacja+02,630,607,699778867,10131,0 +28558,0234,535,662,698659980,10083,0 +28559,Wioska+TakaTo,476,654,848999671,9783,0 +28560,046,668,519,699413040,9245,0 +28561,Kiedy%C5%9B+Wielki+Wojownik,394,465,8632462,9312,0 +28562,Khorinis,343,436,849097716,9887,0 +28563,Valhalla+4.,371,604,849097002,9774,0 +28565,0568,568,655,698659980,9797,0 +28566,Pustostan,635,603,2269943,6738,0 +28567,Psycha+Siada,457,660,698807570,8622,0 +28568,sony911,583,646,1415009,9995,0 +28569,Bagdad,499,335,8847546,10068,0 +28570,Piek%C5%82o+to+inni,562,345,848956765,10160,0 +28571,K34+-+%5B137%5D+Before+Land,441,348,699088769,10259,0 +28572,43.+KaruTown,641,410,6822957,9365,0 +28573,A09,469,664,698652014,10019,0 +28574,010.,485,648,849034882,10495,0 +28577,B+026,659,537,8078914,10114,0 +28578,0016,414,356,699431255,10162,0 +28579,%230100+barbarzy%C5%84ska,463,336,1238300,10011,0 +28580,%7C008%7C+Elunda+%21%21%21%21%21%21%21%21%21%21%21%21%21%21%21%21,490,668,699393742,9782,9 +28581,004+Cintra,471,661,699834004,9997,0 +28583,031+MONETKI,665,482,7588382,9311,0 +28584,DW6,346,448,393668,10311,0 +28585,Chekku+-+meito,334,518,9280477,9976,0 +28587,Wioska+barbarzy%C5%84ska,428,653,699736927,4565,0 +28588,Nowy+%C5%9Bwiat+A,341,556,849084005,6353,0 +28589,Klaudek23,595,364,849092309,4136,0 +28590,R%C4%99cznik+do+zmiany,361,404,699697558,10019,0 +28591,Wioska+barbarzy%C5%84ska,665,469,699574408,9394,0 +28592,Szlachcic%2FTaran,627,388,699759128,10237,0 +28593,Stanowisko+lepienia+pierog%C3%B3w,427,646,849006145,7144,0 +28594,Popas12,406,498,699265922,9199,0 +28595,%5BB%5D_%5B017%5D+Dejv.oldplyr,430,349,699380607,10495,0 +28597,Weso%C5%82ych+%C5%9Awi%C4%85t,590,361,848915730,3174,0 +28598,054,661,534,698999105,10311,0 +28599,%2ANantek,572,646,699443920,9761,0 +28600,A30,478,669,698652014,3522,0 +28601,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,399,634,1434753,10068,0 +28602,kon+trojanski,561,350,698290319,9744,0 +28603,J008.,367,600,849090130,10160,0 +28604,0022,417,354,699431255,10005,0 +28605,1.10,340,444,3502565,4603,0 +28606,Wioska+Krnik,604,626,101074,5557,0 +28607,Architekci+Plac%C3%B3w+Boju,336,538,8004076,9130,0 +28608,Monetkownia,618,616,699759128,10237,5 +28609,027...JEDZIEMY,452,338,6920960,10479,0 +28610,22k%24+Grvvyq,651,577,699676005,10495,0 +28611,Wioska+barbarzy%C5%84ska,557,341,699072129,10237,0 +28612,%3D020%3D+Wioska+barbarzy%C5%84ska,646,579,3781794,10580,0 +28613,%2ANadeptane+z%C4%99bem+czasu...,579,645,699443920,9761,8 +28614,Valhalla+6.,369,604,849097002,8189,0 +28615,103,654,441,849088515,10019,0 +28616,Dajanka+36,355,575,849012843,832,0 +28617,001+Ruda.,593,565,699099811,10019,0 +28618,033.,407,636,2665207,9637,0 +28619,_3_,495,334,9113064,2826,0 +28620,07tonieostatnieslowo,605,370,699861004,7506,0 +28621,I012,664,461,699722599,10144,0 +28623,C01,439,652,698652014,3570,0 +28624,Weso%C5%82ych+%C5%9Awi%C4%85t+%2B,585,354,848915730,8882,0 +28626,Weso%C5%82ych+%C5%9Awi%C4%85t,580,355,848915730,9924,0 +28627,Lord+Lord+Franek+.%23073,537,336,698420691,10144,5 +28628,%241.000+Wioska+Groovyq,650,577,699676005,10495,0 +28629,Wioska+barbarzy%C5%84ska,665,479,699598425,10728,0 +28630,Guardian+Star,427,636,849006145,11348,0 +28631,075,629,599,698786826,9198,0 +28632,026.,630,393,699491076,10611,0 +28633,Veni+vidi+kici+kici,340,459,6258092,5966,0 +28634,045,663,547,699351301,10160,0 +28635,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,663,699828442,9806,0 +28637,%23108%23,639,596,692803,9761,0 +28639,Ave+Why%21,492,666,698585370,3478,0 +28640,0021,413,358,699431255,9979,0 +28641,055KZ,489,336,849063849,4803,0 +28642,012,367,397,849059457,4812,0 +28643,Wioska+KKK,371,402,8967440,10203,0 +28644,Wioska+Bochun10,337,497,7449254,10311,0 +28646,075,660,541,699351301,6651,0 +28647,KUZYNEIRO,407,641,848913998,8706,9 +28648,MojeSzczytToTw%C3%B3jDno,509,337,828637,10146,0 +28649,0540,564,655,698659980,6326,0 +28650,013,483,665,698650301,8217,0 +28651,1.09,340,445,3502565,7849,0 +28652,Taran,667,475,699598425,10728,0 +28653,D%C4%85browa+0017,359,591,849096972,7033,0 +28654,Lululu955,374,401,848886056,4637,0 +28655,001+Eldorado,379,392,849059457,10037,0 +28656,035+Rivia,469,662,699834004,9835,0 +28657,Wioska+Bochun10,334,494,7449254,10452,0 +28658,A16,455,662,698652014,10134,0 +28659,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,384,620,849097937,9791,0 +28660,Malbork,539,340,849108784,5354,0 +28661,Szulernia,408,363,7249451,9981,0 +28662,B+004,665,533,8078914,9809,0 +28663,Wioska+barbarzy%C5%84ska,349,565,7333216,9598,0 +28665,Wioska+Bochun10,335,491,7449254,7983,0 +28666,Yellow,489,660,849004274,9835,0 +28667,0264,548,662,698659980,10147,0 +28668,Lord+Lord+Franek+.%23074,521,337,698420691,9965,0 +28669,Architekci+Plac%C3%B3w+Boju,342,544,8004076,9880,0 +28670,Wioska+barbarzy%C5%84ska+D,364,405,8967440,2885,0 +28671,deff+100+%25,348,568,849012521,8637,0 +28672,KAMIOKA,349,572,7318949,5074,0 +28673,Grand+Hill,649,418,1086351,5527,0 +28674,Wioska+yen3,456,663,950985,3897,0 +28675,O10+Goiania,666,520,699272880,10848,0 +28676,ADEN,573,347,698588535,10052,0 +28677,Psycha+Siada,457,663,698807570,10093,0 +28678,017+najlepszy+serniczek,507,663,8954402,11130,0 +28679,Myk+i+do+kieszonki,358,580,9319058,9799,0 +28680,005+Czerwona+Twierdza,332,481,699823490,7387,0 +28681,13k%24+Grvvyq,657,565,699676005,10495,6 +28682,Architekci+Plac%C3%B3w+Boju,341,538,8004076,8533,0 +28683,108...centr,454,342,6920960,10218,0 +28684,E004,657,558,8428196,9051,0 +28685,Wioska+barbarzy%C5%84ska,606,370,699861004,4811,0 +28686,Valhalla+2.,371,606,849097002,9607,0 +28688,Weso%C5%82ych+%C5%9Awi%C4%85t,573,355,848915730,10160,0 +28689,Wioska+066,638,587,848971079,9761,0 +28690,%230146+Thorus5,473,332,1238300,6265,0 +28691,Gromkowie+5,370,609,7417116,8780,0 +28692,sony911,586,647,1415009,9999,0 +28693,Architekci+Plac%C3%B3w+Boju,337,541,8004076,9880,0 +28694,Lord+Lord+Franek+.%23164,502,334,698420691,9960,0 +28695,Piek%C5%82o+to+inni,581,351,848956765,10160,0 +28697,Architekci+Plac%C3%B3w+Boju,341,535,8004076,8163,0 +28698,Darma+dla+zawodnika,518,662,699494488,9980,0 +28699,Wioska+Bochun10,330,503,7449254,9726,0 +28700,39.+KaruTown,637,405,849060446,6937,0 +28701,Pudelko,633,604,2269943,5692,0 +28702,ADEN,573,349,698588535,10139,0 +28703,MojeDnoToWaszSzczyt+%2B,569,352,848915730,9938,0 +28704,Szulernia,387,377,7249451,10380,0 +28705,Zeta+Reticuli+W,371,392,699323302,4132,0 +28706,North+Grudzi%C4%85dz,422,352,699796330,9961,0 +28707,029.,402,636,2665207,9835,0 +28708,Witam,452,656,698807570,10048,2 +28710,012+Glen+Moray,550,339,699072129,12154,0 +28711,Psycha+Siada,455,664,698807570,8681,0 +28712,Taka004,475,661,848999671,9530,0 +28713,KUZYN,415,641,848913998,5393,0 +28714,Wioska+barbarzy%C5%84ska,438,346,699308637,8748,0 +28715,003.+Wiocha,630,441,849095599,10019,0 +28716,Gra+o+Tron,614,616,8815749,10019,0 +28718,Myk+i+do+kieszonki,347,564,9319058,9799,0 +28719,K34+-+%5B140%5D+Before+Land,441,347,699088769,9783,0 +28720,Wioska+barbarzy%C5%84ska,658,458,113796,7881,0 +28721,I%23026,597,369,2065730,8480,0 +28723,aaaaaaaaaaa,440,345,699308637,10636,0 +28724,109...centr,460,339,6920960,10380,0 +28725,Architekci+Plac%C3%B3w+Boju,344,548,8004076,9880,0 +28726,091,623,610,698786826,10495,0 +28727,07.+Wangan+Midnight,494,663,849100262,9811,0 +28728,x+Wioska+Lord+CrazY,404,505,698290577,9959,0 +28729,MojeDnoToWaszSzczyt,568,351,848915730,9938,0 +28730,a+mo%C5%BCe+off%3F+%3A%29,646,578,698768565,9494,4 +28731,007.,394,632,2665207,9835,0 +28732,%2A151%2A,357,411,699273451,10211,0 +28733,0115,627,396,698416970,12154,0 +28734,I011,662,458,699722599,10128,0 +28735,Wioska+Bochun10,330,502,7449254,9525,0 +28736,%3D056%3D+Wioska+barbarzy%C5%84ska,646,580,3781794,9932,0 +28737,Dajanka+27,354,583,849012843,1623,0 +28738,028.,628,392,699491076,6965,0 +28739,012,455,338,2502956,10019,0 +28740,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,664,698807570,9267,7 +28741,Weso%C5%82ych+%C5%9Awi%C4%85t,583,355,848915730,7531,0 +28743,0014,390,379,8419570,10168,0 +28744,Jehu_Kingdom_42,654,438,8785314,6541,0 +28745,Jaaa,670,498,698635863,8902,0 +28746,061,662,486,7085502,8745,0 +28747,0008,436,654,849097175,4304,0 +28748,wLucy,449,658,699849210,5604,0 +28749,028,563,650,699828685,9976,0 +28750,57.+KaruTown,655,431,9238175,9711,0 +28751,Marvila,354,587,699494480,9574,0 +28752,Orze%C5%82+Wyl%C4%85dowa%C5%82,447,661,698807570,8287,0 +28753,Orze%C5%82+Wyl%C4%85dowa%C5%82,448,661,698807570,8513,0 +28754,%230106+tomek791103,480,333,1238300,10178,0 +28755,I014+Jamnik,662,450,699722599,10241,0 +28757,A025+Flap+1,661,445,113796,6632,0 +28758,Architekci+Plac%C3%B3w+Boju,337,540,8004076,9880,0 +28759,Wioska+barbarzy%C5%84ska,595,360,849041192,5262,0 +28760,013+-+Mroczna+Osada,650,423,849035905,10817,0 +28761,V003,350,423,849097737,7395,0 +28762,029,528,667,2293376,9993,0 +28763,Wioska+barbarzy%C5%84ska,666,482,699598425,9832,0 +28764,M181_005,346,428,393668,9885,4 +28765,007,463,340,2502956,10019,0 +28766,4.01,347,444,3502565,7566,0 +28767,Myk+i+do+kieszonki,348,571,849012521,8717,0 +28768,051,658,537,849095227,8550,0 +28769,042+Isparta,631,592,699272880,10276,0 +28770,Architekci+Plac%C3%B3w+Boju,336,541,8004076,9880,0 +28771,0589,545,657,698659980,9745,0 +28772,Szulernia,410,361,7249451,9989,0 +28773,KR%C3%93L+PAPI+WIELKI,610,630,698191218,10000,0 +28774,0535,561,658,698659980,5982,0 +28775,115,655,448,849088515,8337,0 +28776,%2A096%2A,353,416,699273451,10211,0 +28777,116,652,424,849088515,7304,0 +28778,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,520,658,699828442,9825,0 +28779,Wioska+Bochun10,337,502,7449254,9130,0 +28780,008,599,639,849097799,8314,0 +28781,TAJFUN,333,507,849097614,9959,0 +28782,%230061+Disco1Panda,476,339,1238300,10178,0 +28783,Gattacka,616,375,699298370,10160,0 +28784,Sk010,443,661,8954402,8450,0 +28785,Tu+tak+troch%C4%99+s%C5%82abo+grzane+by%C5%82o,445,660,8954402,9835,0 +28786,Wioska+barbarzy%C5%84ska,393,368,3484132,7495,0 +28788,Wi005,497,329,698239813,9178,0 +28789,cc+Lipinki,392,370,3909522,8134,0 +28790,Myk+i+do+kieszonki,354,578,9319058,9883,0 +28791,Wioska+barbarzy%C5%84ska,552,339,699072129,9418,0 +28792,0515,536,660,698659980,10160,0 +28793,17k%24+Grvvyq,653,574,699676005,10495,6 +28794,001+Ronaldinho,456,335,2502956,10019,0 +28795,%247.000+Grvvyq,651,578,699676005,10495,0 +28796,KUZYN,412,638,848913998,10160,0 +28797,Chekku+-+meito,332,524,9280477,9976,0 +28798,Wioska+Bochun10,334,490,7449254,10311,0 +28799,057.,391,624,2665207,9835,0 +28800,125...centr,460,336,6920960,10229,0 +28801,Psycha+Siada,458,659,698807570,10252,0 +28802,Grvvyq+120k%24,609,629,699676005,10160,0 +28803,Wioska+Bochun10,333,490,7449254,10061,0 +28804,Wioska+barbarzy%C5%84ska,588,643,1415009,9313,0 +28805,Wioska+barbarzy%C5%84ska,556,346,699072129,10122,0 +28806,Architekci+Plac%C3%B3w+Boju,343,548,8004076,9880,0 +28807,KUZYNEIRO,405,639,848913998,6620,0 +28808,069...jaka,448,350,6920960,11063,0 +28809,0289,539,662,698659980,10083,0 +28810,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,662,698807570,7796,0 +28811,%3D060%3D+Wioska+barbarzy%C5%84ska,646,582,3781794,10580,0 +28813,%2A079%2A,355,419,699273451,10211,0 +28814,181,402,637,698383417,8694,0 +28815,Wioska+barbarzy%C5%84ska,552,341,699072129,10237,0 +28816,Myk+i+do+kieszonki,362,589,9319058,9799,0 +28818,%23118%23,618,622,692803,8635,0 +28819,Pobozowisko,380,616,699513260,5347,0 +28820,Wioska+barbarzy%C5%84ska,552,343,699072129,10217,0 +28821,Rodzinne+historie,336,529,698338524,5853,0 +28822,--spearfish,622,392,8096537,10068,0 +28823,Konfederacja+8,459,370,848915730,9737,0 +28824,010,605,633,849097799,8268,0 +28825,Myk+i+do+kieszonki,353,576,9319058,9885,2 +28826,Sony+911,639,590,1415009,10476,0 +28827,%230136+Thorus5,474,332,1238300,8657,0 +28828,Wioska+067,639,592,848971079,9761,0 +28830,0516,534,661,698659980,10160,0 +28831,111...centr,452,340,6920960,9467,0 +28832,Wioska+barbarzy%C5%84ska,530,340,698350371,5599,0 +28834,B.04,669,502,699737356,7327,0 +28835,006+Tretogor,476,659,699834004,10231,0 +28836,Psycha+Siada,456,661,698807570,10252,0 +28837,Lord+Lord+Franek+.%23075,527,335,698420691,10224,0 +28838,PUSTA,631,600,6929240,4858,0 +28839,Jehu_Kingdom_51,653,434,8785314,5708,0 +28840,Myk+i+do+kieszonki,350,578,9319058,9799,0 +28841,Wioska+barbarzy%C5%84ska,436,436,9291984,7857,0 +28842,%2A140%2A,355,412,699273451,10211,0 +28843,080...barbarka----------,475,333,6920960,9634,0 +28844,014,602,632,849097799,8203,0 +28845,Taki+Pan,505,332,698739350,4525,0 +28846,Wrath+011,567,346,699756210,10273,0 +28847,003,475,657,698650301,8104,0 +28848,Trelis,343,435,849097716,6265,0 +28849,--DOBRA+MAC,622,385,8096537,10104,0 +28850,wie%C5%9B+2,347,429,393668,9886,0 +28852,Nowy+%C5%9BwiatA,342,558,849084005,4407,0 +28854,Chekku+-+meito,335,535,9280477,9976,0 +28855,008+-+Mroczna+Osada,647,417,849035905,11824,0 +28856,Wioska+sobie+016,403,638,7349282,9969,0 +28857,Taran,662,472,699598425,10728,8 +28858,031+-+Mroczna+Osada,641,418,849035905,7648,0 +28859,greeece,635,398,698290319,9476,0 +28860,4+barb,584,645,848995242,10016,0 +28862,%3D065%3D+Wioska+barbarzy%C5%84ska,656,556,3781794,10580,0 +28863,%2A213%2A,364,404,699273451,9791,0 +28864,Grvvyq+109k%24,656,566,699676005,3544,0 +28865,-0001-,542,335,2972329,12154,0 +28866,035+-+Mroczna+Osada,645,412,849035905,6733,0 +28867,troja2,563,346,698290319,8933,0 +28868,asd,669,479,699598425,10728,0 +28869,Wioska+barbarzy%C5%84ska,576,650,6818593,9835,0 +28870,KARTAGINA+..6,455,579,8438707,8698,0 +28871,Wioska+barbarzy%C5%84ska,546,337,699066118,7775,0 +28872,%2A144%2A,355,411,699273451,8405,0 +28873,berkuza+3,591,356,7340529,10887,0 +28874,%23007%23,619,615,692803,9761,0 +28875,0105,409,356,699431255,4602,0 +28876,000,344,572,7333216,9711,0 +28877,Wioska+barbarzy%C5%84ska,493,332,6118079,3699,0 +28878,0517,531,661,698659980,9747,0 +28879,psycha+sitting,429,654,699736927,5185,0 +28881,MojeDnoToWaszSzczyt,565,351,848915730,9412,0 +28882,KUZYN,417,642,848913998,5731,0 +28883,MojeDnoToWaszSzczyt,566,351,848915730,9938,0 +28884,110,652,441,849088515,7971,0 +28885,Wioska+barbarzy%C5%84ska,663,467,699574408,9092,0 +28886,016,667,497,7085502,9740,0 +28887,SPOCENI+KUZYNI,414,647,848913998,9869,0 +28888,Zulu,375,389,699842853,1273,0 +28889,DW8,343,446,393668,10311,0 +28890,J05,365,595,849090130,3226,0 +28891,Wioska+barbarzy%C5%84ska,632,596,8337151,5251,0 +28892,Wrath+001,570,346,699756210,10362,0 +28893,%230124+tomek791103,484,333,1238300,10005,0 +28894,Wioska+Bochun10,335,461,7449254,10311,0 +28895,Zach%C3%B3d,431,350,849096310,8846,0 +28896,049...CLIO,444,340,6920960,10495,0 +28897,Obrze%C5%BCa+098,553,662,848915531,6437,0 +28898,Vasco+da+Gama,356,586,699494480,9480,0 +28899,mys,567,650,699828685,9534,0 +28900,1.01,339,449,3502565,9361,0 +28901,0569,566,652,698659980,10019,0 +28902,Fajna+036,456,576,8438707,8801,0 +28903,Szulernia,383,376,7249451,10484,0 +28904,020,604,634,849097799,7793,0 +28906,Gattacka,614,382,699298370,9367,0 +28907,021,665,490,7085502,9732,0 +28908,57k%24+Grvvyq,655,568,699676005,7123,0 +28909,Wioska+Bochun10,337,459,7449254,5120,0 +28910,1.05,338,447,3502565,6666,0 +28911,D+018,664,505,8078914,9745,0 +28912,085+%C5%9Awi%C4%99ta+Bo%C5%BCego+Narodzenia,599,364,699491076,10001,0 +28913,Wioska+barbarzy%C5%84ska,559,341,699072129,10216,0 +28914,Wioska+barbarzy%C5%84ska,663,508,699851345,4733,0 +28915,DO6orze%C5%82+z+po%C5%82amanymi+skrzyd%C5%82ami,459,665,849037407,10362,0 +28916,D%C4%85browa+0002,357,591,849096972,10083,0 +28917,Wioska+barbarzy%C5%84ska,400,362,8419570,7236,0 +28919,Wioska+1,539,352,849097220,8911,0 +28920,%230096+barbarzy%C5%84ska,461,342,1238300,8139,0 +28921,0068,417,351,699431255,9519,0 +28922,%230099+barbarzy%C5%84ska,463,335,1238300,10178,0 +28923,0290,557,653,698659980,9078,0 +28924,Ave+Why%21,499,667,698585370,9569,0 +28925,Szlachcic,392,368,698160606,7359,0 +28926,Wioska+barbarzy%C5%84ska,631,393,699759128,4346,0 +28927,Taka002,480,665,848999671,9594,0 +28928,Lord+Lord+Franek+.%23076,535,333,698420691,10144,0 +28929,O40+Fethiye,662,536,699272880,10154,0 +28930,030+PAKOL+TI+VI,658,448,699272633,9330,0 +28931,%C5%9Amieszki,534,614,3454753,9100,0 +28932,009,379,387,849059457,7661,0 +28933,Wioska+02,596,362,849041192,2852,0 +28934,Dajanka+25,354,582,849012843,2192,0 +28935,Myk+i+do+kieszonki,354,577,9319058,9799,0 +28936,Zeta+Reticuli+W,360,406,699323302,5538,0 +28938,Psycha+Siada,454,663,698807570,10252,0 +28939,-02-,333,497,765188,10654,0 +28940,Piek%C5%82o+to+inni,585,359,848956765,10160,0 +28941,050+BOBI+2,664,484,2135129,10135,9 +28942,035.,408,636,2665207,9835,0 +28943,Szlachcic%2FTaran,626,388,699759128,10237,0 +28944,psycha+sitting,430,651,699736927,9405,0 +28945,SPOCENI+KUZYNI,418,648,848913998,10122,0 +28946,%3D069%3D+Wioska+barbarzy%C5%84ska,657,549,3781794,8695,0 +28947,068+%7C+PALESTINA,646,418,9228039,5544,0 +28948,007,433,643,849089459,9827,0 +28949,034+Rakverelin,469,667,699834004,8431,0 +28950,033+lecimy+tutaj,659,450,699272633,9154,0 +28951,Wioska+barbarzy%C5%84ska,382,382,8419570,3357,0 +28953,Gr%C3%B3d+3,474,333,699204478,4483,0 +28954,%7CB%7C+Arrowgrove,489,664,698147372,10495,0 +28955,1.04,338,451,3502565,6281,0 +28956,003,347,440,393668,3797,0 +28957,058,546,405,699761749,10495,0 +28958,A014,612,379,699761749,4455,0 +28959,MAKS,555,343,699072129,10378,0 +28960,%230235+Segadorr+dar,466,333,1238300,10178,0 +28962,Wrath+002,572,345,699756210,10273,3 +28963,008,388,426,848921536,3149,0 +28964,Wioska+Bochun10,340,463,7449254,10311,0 +28965,Jaaa,669,495,698635863,9900,0 +28966,SPOCENI+KUZYNI,416,647,848913998,4900,0 +28967,O16+Talca,663,526,699272880,10044,0 +28968,0248,559,653,698659980,10160,0 +28969,AAA,533,332,1006847,9641,0 +28970,Bagdad,489,331,8847546,10838,0 +28971,Krosno+4,537,337,7485877,6700,0 +28972,WKRA,334,508,849097614,9646,0 +28973,006,483,352,698739350,10237,0 +28974,xxx+-+08,614,624,699778867,10110,0 +28975,022+serniczek+z+oreo,505,671,8954402,10252,0 +28976,036.,408,635,2665207,9835,0 +28978,Jaaa,663,491,698635863,9435,0 +28979,44k%24+Grvvyq,649,579,699676005,7229,0 +28980,Wioska+barbarzy%C5%84ska,575,649,6818593,9835,0 +28982,%2AAteny_11,475,536,698971484,9809,0 +28983,N003,343,568,272173,5758,0 +28984,Ave+Why%21,497,669,698585370,8976,5 +28985,SPOCENI+KUZYNI,415,648,848913998,9934,0 +28986,108,655,446,849088515,9027,0 +28987,O49+Lendava,660,551,699272880,12154,0 +28988,082,440,635,849084985,9601,0 +28989,Wrath+012,571,345,699756210,10273,2 +28990,M181_014,344,432,393668,9239,0 +28992,A010+Jospe+D,664,452,113796,10160,0 +28993,On+average+%C5%9AR,493,669,849004274,9835,0 +28995,15.+Rezerwacja+w+Pachy,520,667,698659980,8797,0 +28996,BAC%C3%93WKA+%7C035%7C,632,397,7394371,5630,0 +28997,1v9+machine,385,617,699697558,10019,0 +28998,%7CC%7C+Swampforest,505,669,698147372,10495,0 +28999,ADEN,572,347,698588535,10056,0 +29001,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,617,849097937,9754,0 +29002,Akaria,418,649,849089459,9761,0 +29003,045,670,517,699413040,8690,0 +29004,3..,421,651,6910361,10011,0 +29005,8068,376,607,8607734,10019,0 +29006,%230026,546,625,1536231,10495,0 +29007,K34+x030,409,357,698364331,6364,0 +29009,V009,352,424,849097737,4370,0 +29011,Alice+Rose,546,663,849106383,3529,0 +29012,0031,616,623,699432672,10495,0 +29013,Architekci+Plac%C3%B3w+Boju,341,546,8004076,9880,0 +29014,10k%24+Grvvyq,649,575,699676005,10495,9 +29015,181+Zulu+Gula+%21,521,332,2571407,3879,0 +29016,%7E%7E075%7E%7E,616,618,7829201,7474,0 +29017,Wioska+Bochun10,334,515,7449254,5884,0 +29018,B+027,668,535,8078914,9170,0 +29019,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,658,698807570,5316,0 +29020,A21,473,664,698652014,10643,0 +29021,021+VW+Wioska+barbarzy%C5%84ska,365,397,3108144,3700,0 +29022,A003+Thais+2,660,448,113796,8064,0 +29024,017+Szachy+-+Skoczek,366,606,8268010,7360,0 +29025,%230068+tomek791103,477,331,1238300,10178,0 +29026,%2A011,594,641,699567608,9031,0 +29027,Myk+i+do+kieszonki,353,579,9319058,9799,0 +29028,Wioska+barbarzy%C5%84ska,651,574,0,2951,0 +29029,Uran,549,336,699797805,2744,0 +29031,Wrath+014,569,343,699756210,9803,0 +29032,Piek%C5%82o+to+inni,591,364,848956765,9371,0 +29033,Lord+Lord+Franek+.%23165,511,332,698420691,10205,0 +29035,03+tonieostatnieslowo,607,370,699861004,9780,0 +29036,Szulernia,398,367,7249451,10483,0 +29037,%5BA%5D008,423,651,699736927,6937,0 +29038,I005,663,456,699722599,10149,0 +29039,028...OPELEK,446,341,6920960,10279,0 +29040,Myk+i+do+kieszonki,355,582,9319058,9799,0 +29041,SIR+DEVELES,620,611,698786826,10471,0 +29042,K34+-+%5B142%5D+Before+Land,437,345,699088769,9783,0 +29043,052...qashqai,442,342,6920960,10559,0 +29044,Zeta+Reticuli+S2,364,400,699323302,8506,0 +29045,0103,634,399,698416970,3612,0 +29046,%2A134%2A,355,414,699273451,10211,0 +29047,%23103%23,631,605,692803,9761,0 +29048,Ave+Why%21,498,667,698585370,9202,0 +29049,%7CB%7C+Newmouth,484,664,698147372,6077,0 +29050,Wioska+barbarzy%C5%84ska,365,399,0,2072,0 +29051,%230180+MiBM,487,330,1238300,8527,0 +29052,E010,660,553,8428196,7610,0 +29053,059,658,544,699351301,10149,5 +29054,%7C005%7C+Kissamos,493,667,699393742,10063,0 +29055,0018,412,356,699431255,9949,0 +29056,Wioska+099,647,587,848971079,9761,0 +29057,%230086+barbarzy%C5%84ska,472,334,1238300,10178,0 +29058,%23.04+Wioska+Natalka69,649,472,849054582,10019,0 +29059,Wioska+barbarzy%C5%84ska,442,344,699191449,9349,0 +29060,Szlachcic%2FTaran,613,374,699759128,10237,0 +29061,Wioska+klez+014,333,509,698295651,7170,0 +29062,Architekci+Plac%C3%B3w+Boju,340,557,8004076,9880,0 +29063,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,630,1434753,10068,0 +29064,032+serniczek+na+%C5%9Bniadanie,511,665,8954402,9729,0 +29065,Wioska+Bochun10,336,516,7449254,9575,5 +29067,Wioska+barbarzy%C5%84ska,579,650,6818593,8765,0 +29068,032+MONETKI,666,480,7588382,9761,0 +29069,Szlachcic%2FTaran,612,372,699759128,10237,0 +29070,Westfold.010,347,424,848918380,10178,9 +29071,%3F013,540,658,699828685,8412,0 +29072,06.+Ofir,337,458,848910122,1348,0 +29073,008+Campbeltown,555,346,699072129,9971,0 +29074,Architekci+Plac%C3%B3w+Boju,342,545,8004076,4843,0 +29075,Omo%C5%BCe,432,560,699443920,9183,0 +29076,080...s%C5%82%C4%85biak,433,349,699308637,10479,0 +29077,%2A042,597,636,699567608,9712,0 +29078,CC+Wioska+z,389,373,3909522,5116,0 +29079,Jestem+Poza+Kontrol%C4%85,345,557,8004076,9160,0 +29081,Myk+i+do+kieszonki,382,579,849012521,10495,0 +29082,112...center,450,342,6920960,8929,0 +29083,0003+Zakopane,388,379,849096882,8955,1 +29084,Kentin+ufam+Tobie,338,479,699783765,10000,0 +29085,A013+darekdd,658,450,113796,10160,0 +29086,Lord+Lord+Franek+.%23122,519,334,698420691,7635,0 +29087,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,662,698807570,9630,0 +29088,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F10,625,617,33900,10192,0 +29089,North+Barba+051,425,350,699796330,9813,0 +29090,asd,670,478,699598425,10728,0 +29091,M181_004,345,430,393668,9883,0 +29092,Lord+Lord+Franek+.%23123,527,331,698420691,7830,0 +29093,054,665,489,7085502,9123,0 +29094,%2ANaturalna+kolej+rzeczy...,576,646,699443920,9761,0 +29095,Darmowe+przeprowadzki,453,665,848935389,9809,4 +29096,%230083+barbarzy%C5%84ska,475,337,1238300,9444,0 +29097,Ave+Why%21,481,669,699121671,9809,0 +29098,Myk+i+do+kieszonki,346,567,9319058,9799,0 +29099,%7C003%7C+Agia+Pelagia,492,668,699393742,9738,0 +29100,A03,469,669,698652014,10160,0 +29101,Wioska+klez+008,332,513,698295651,9012,0 +29102,Wioska+104,647,588,848971079,9783,0 +29103,0393,551,661,698659980,10019,0 +29104,Valhalla+5,371,609,7417116,10053,0 +29105,041+Ban+Gleann,460,661,699834004,10160,0 +29106,Myk+i+do+kieszonki,369,611,9319058,11321,0 +29107,Jestem+Poza+Kontrol%C4%85,343,554,8004076,9880,0 +29108,Osada+koczownik%C3%B3w,551,342,699072129,10217,9 +29109,%2A5610%2A+Brudki+Stare,650,583,7973893,10287,0 +29110,002,341,458,6258092,5731,0 +29112,Piek%C5%82o+to+inni,560,348,848956765,10160,0 +29113,Wioska+barbarzy%C5%84ska,451,336,699308637,9243,0 +29114,Piek%C5%82o+to+inni,577,353,848956765,10160,0 +29115,aaaaaaaaa,439,347,699308637,10495,0 +29116,Szlachcic%2FTaran,625,393,699759128,6670,0 +29117,A002+La+La+Laggerx,663,451,113796,10146,0 +29118,Wioska+063,639,599,848971079,9761,0 +29119,%230109+tomek791103,482,330,1238300,10178,0 +29120,WB+05,634,605,2269943,8307,0 +29121,053+%7C+PALESTINA,648,424,9228039,4315,0 +29122,%5B12%5D,431,657,699698079,3305,0 +29123,A12,469,668,698652014,9835,7 +29124,Warownia+3,431,654,849089459,9639,0 +29125,Twferdza+Nie+do+zfobycia,518,665,9314153,3781,0 +29126,Chekku+-+meito,335,533,9280477,9976,0 +29127,%7C009%7C+Malia,499,666,699393742,10063,0 +29128,Wioska+barbarzy%C5%84ska,558,343,699072129,10221,0 +29129,0267,552,659,698659980,10160,0 +29130,029.,632,394,699491076,6981,0 +29131,092,620,613,698786826,10495,0 +29132,Pomost,335,544,699265922,7827,0 +29133,PUSTA,630,604,6929240,5407,0 +29134,A29,478,668,698652014,9566,0 +29135,Tyr,419,649,849089459,9828,0 +29136,Myk+i+do+kieszonki,347,573,9319058,9799,0 +29137,Architekci+Plac%C3%B3w+Boju,340,538,8004076,6635,0 +29138,B+006,663,529,8078914,10072,0 +29139,scofield,525,665,699494488,10237,0 +29140,0009+Szczecin,372,376,849096882,4541,0 +29141,Taran,667,476,699598425,10728,0 +29142,SPOCENI+KUZYNI,415,649,848913998,8265,0 +29143,Kentin+ufam+Tobie,434,399,699783765,10000,0 +29144,005+Highlands,554,346,699072129,9021,0 +29145,Wioska+Bochun10,329,497,7449254,10311,0 +29146,011.+Dla+flag,351,432,698630507,8317,1 +29147,%2A090%2A,359,417,699273451,10211,0 +29148,047,516,671,2293376,9993,0 +29149,046,654,557,699316421,9532,0 +29150,Myk+i+do+kieszonki,345,566,7333216,9711,0 +29151,Grvvyq+119k%24,615,620,699676005,10160,0 +29152,WIS%C5%81A,332,504,849097614,10201,0 +29153,Delaware,668,521,8096537,9761,0 +29154,Szlachcic%2FTaran,618,378,699759128,10237,0 +29155,Warownia,431,655,849006145,4800,0 +29156,002,604,635,849097799,9765,0 +29157,O14+Warzazat,666,525,699272880,10209,0 +29158,Sony+911,640,589,1415009,7532,1 +29159,K34+-+%5B154%5D+Before+Land,439,346,699088769,10365,0 +29160,Jaaa,666,494,698635863,10134,0 +29161,Lord+Lord+Franek+.%23166,508,334,698420691,10026,0 +29162,28.+KaruTown,638,403,849060446,6988,0 +29163,Sk_019,438,653,8954402,4041,0 +29164,0014,627,384,848915730,9938,0 +29165,BUNKIER+005,643,427,7588382,10019,0 +29166,Monetkownia,621,621,699759128,10237,0 +29167,jaskinia,388,375,8419570,9716,0 +29168,021+Radom,402,360,698364331,9362,0 +29169,O30+Konoha,662,531,699272880,10411,0 +29170,Wioska+Bochun10,336,467,7449254,9234,0 +29171,042,666,517,699413040,10283,0 +29172,I036,656,437,699722599,10490,0 +29173,Nowy+%C5%9Bwiat+6,342,566,849084005,5116,0 +29174,Jaaa,667,495,698635863,9538,0 +29175,Szulernia,410,362,7249451,9979,0 +29176,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,663,698807570,8270,0 +29177,Wioska+barbarzy%C5%84ska,556,345,699072129,9239,0 +29178,Flotsam,481,337,849048216,3307,0 +29179,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,615,849097937,9409,0 +29180,Dal,612,624,849091897,10019,0 +29181,%230087+barbarzy%C5%84ska,474,334,1238300,10178,0 +29182,J003.,366,603,849090130,10019,0 +29183,E002,659,559,8428196,6300,0 +29184,B.059,668,507,9188016,10000,0 +29185,063...Agent+Pumba,443,346,6920960,10220,0 +29186,D%C4%85browa+0018,353,589,849096972,4819,0 +29187,Nowy+%C5%9Bwiat+5,342,565,849084005,5055,0 +29188,%5B161%5D,642,583,8000875,6449,0 +29190,Wioska+barbarzy%C5%84ska,371,397,848886056,3709,0 +29191,Wioska+Bochun10,339,469,7449254,10311,0 +29192,0001,626,385,848915730,9938,0 +29193,Wioska+Bochun10,329,500,7449254,9978,0 +29195,pierwsza+gwiazdka,442,659,8954402,9640,0 +29196,084...TOM-----------,475,334,6920960,10282,0 +29197,Wioska+Ewelina1809,593,583,1715091,9835,0 +29198,Monetkownia,618,625,699759128,10237,0 +29199,%230029,564,657,1536231,10495,0 +29200,Myk+i+do+kieszonki,355,577,9319058,9978,0 +29201,%230141+barbarzy%C5%84ska,469,334,1238300,6262,0 +29202,Wioska+%28040%29,667,463,698232227,7153,0 +29203,Pa%C5%84stfa+Pu%C5%82nocy,582,353,699433558,9906,0 +29204,Weso%C5%82ych+%C5%9Awi%C4%85t+%2B,592,356,848915730,5682,0 +29205,Hiszpania,340,457,1746216,4832,0 +29206,018+VW.King+Tulip,364,407,3108144,7010,0 +29207,032.,404,636,2665207,9835,0 +29208,Sony+911,583,648,1415009,10206,0 +29209,Jaaa,670,491,698635863,10487,0 +29210,-06-,330,494,765188,7057,0 +29211,Pa%C5%84stfa+Pu%C5%82nocy,583,353,699433558,9819,0 +29213,45k%24+Grvvyq,649,577,699676005,9458,0 +29214,003+serniczek+z+brzoskwiniami,505,672,8954402,10160,5 +29216,%2A003,598,637,699567608,9033,0 +29217,Jestem+Poza+Kontrol%C4%85,347,559,8004076,9880,8 +29218,047,660,546,849095227,9494,0 +29220,%2A264%2A,351,430,699273451,2863,0 +29221,%230085+barbarzy%C5%84ska,470,337,1238300,9444,0 +29222,wie%C5%9B2,590,356,7340529,9559,0 +29223,Wioska+Bochun10,340,465,7449254,10311,0 +29224,%5BB%5D_%5B014%5D+Dejv.oldplyr,429,350,699380607,10636,0 +29225,%230052+geryk,468,331,1238300,10178,0 +29226,%23112%23,635,597,692803,9761,0 +29227,SPOCENI+KUZYNI,412,645,848913998,7503,0 +29228,%2A063%2A,355,416,699273451,10211,0 +29229,pusta,386,378,8419570,10168,0 +29230,Pobozowisko,376,614,699513260,9757,0 +29231,04.+Maroko,640,402,699491076,9570,0 +29232,Wioska+Bochun10,334,517,7449254,9875,0 +29233,05.+Kolumbia,640,404,699491076,9735,0 +29234,0548,531,662,698659980,9756,0 +29235,Dajanka+23,351,581,849012843,2172,0 +29236,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F2,608,630,33900,10364,0 +29237,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,663,698807570,8367,0 +29238,--badlands,622,387,8096537,8503,0 +29239,071+Wioska+barbarzy%C5%84ska,546,348,699491076,10001,0 +29240,Weso%C5%82ych+%C5%9Awi%C4%85t,588,356,848915730,5885,0 +29241,1v9+machine,388,621,699697558,10083,0 +29242,Pobozowisko,384,622,699513260,7454,0 +29243,%7C030%7C+Lindos,501,670,699393742,9528,0 +29244,4.02,344,444,3502565,5017,0 +29245,Wioska+11,499,329,951823,10068,0 +29246,%230104+tomek791103,480,330,1238300,10178,0 +29247,Puszcza,638,601,2269943,5959,0 +29248,024+-+Mroczna+Osada,642,411,849035905,11130,0 +29249,Ave+Why%21,501,669,698585370,4741,0 +29251,Myk+i+do+kieszonki,350,567,9319058,9799,0 +29252,Pobozowisko,377,608,699513260,10705,0 +29253,%3D074%3D+Wioska+0,655,553,3781794,9026,0 +29254,zaraz+bede+.,583,643,848995242,10157,0 +29255,043,559,384,699761749,10495,0 +29256,023,629,612,699567608,10311,0 +29257,A04,473,669,698652014,10019,0 +29258,Wioska+barbarzy%C5%84ska,348,580,3990066,2389,0 +29259,%2A132%2A,354,417,699273451,10211,0 +29260,Sony+911,587,642,1415009,10035,0 +29261,D%C4%85browa+0009,362,597,849096972,10083,0 +29262,pomi%C4%99dzy,628,396,699832463,12154,0 +29263,S_013,514,668,849049155,7025,0 +29264,6+barba,584,643,848995242,9804,0 +29265,V006,350,417,849097737,4124,0 +29266,%3D070%3D+Wioska+barbarzy%C5%84ska,658,552,3781794,10580,0 +29267,007+Aldersberg,466,662,699834004,10178,0 +29269,Sony+911,587,643,1415009,10206,0 +29270,050...JUKE,451,342,6920960,10495,0 +29271,Wioska+Bochun10,336,471,7449254,10311,0 +29272,Wioska+Bochun10,328,501,7449254,10311,0 +29273,xxx,641,587,1415009,10237,0 +29274,Forza+12,438,652,849100323,4875,0 +29276,Wioska+barbarzy%C5%84ska,668,470,699574408,9999,0 +29277,wLisanna,446,659,699849210,2824,0 +29278,I037,661,441,699722599,10115,0 +29279,075,650,567,849095227,9198,0 +29280,Szlachcic%2FTaran,635,396,699759128,10237,0 +29281,psycha+sitting,425,656,699736927,9899,0 +29282,BETON+026,622,610,699277039,10495,0 +29283,Chekku+-+meito,340,527,9280477,10296,0 +29284,Wioska+barbarzy%C5%84ska,511,329,698350371,4678,0 +29285,Lord+Lord+Franek+.%23077,520,334,698420691,9957,0 +29286,Po+%C5%9Bwi%C4%99tach,604,369,848915730,9924,0 +29287,Wioska+12,496,333,951823,9594,0 +29288,--hill+city,622,388,8096537,7955,0 +29289,Szlachcic%2FTaran,612,374,699759128,10237,6 +29290,Szlachcic,505,458,699098531,9637,0 +29291,017,668,497,7085502,9740,0 +29292,.%3A001%3A.,373,611,7417116,12154,0 +29293,Lord+Lord+Franek+.%23078,517,333,698420691,10299,0 +29294,Wioska+barbarzy%C5%84ska,572,652,6818593,9835,0 +29295,%2A078%2A,357,418,699273451,10211,0 +29296,Wigor,577,650,849097386,3559,0 +29297,Myk+i+do+kieszonki,348,578,9319058,9799,0 +29298,%230160+deleted,470,331,1238300,8905,0 +29299,049-+Mroczna+Osada,630,397,849035905,11824,0 +29300,025.+barbara9,333,501,1830149,3711,0 +29301,055...barbarka,449,341,6920960,10237,0 +29302,%C5%BBUBRAWKA+039,609,633,33900,10495,3 +29303,018,424,641,849089459,3040,0 +29304,0533,559,659,698659980,5839,0 +29305,Piek%C5%82o+to+inni,590,353,848956765,9027,0 +29306,014,454,341,2502956,10019,0 +29307,Wioska+Bochun10,333,462,7449254,4215,0 +29308,%2A010,594,640,699567608,9073,0 +29309,%2A043,600,634,699567608,9720,0 +29310,M181_007,345,425,393668,10373,0 +29311,Kentin+ufam+Tobie,335,458,699783765,10000,0 +29312,Szlachcic%2FTaran,612,371,699759128,10237,0 +29313,Y+%7C+Forest+Cyaaaanku,329,504,699213622,10000,0 +29314,I013+Solnik,664,460,699722599,10285,0 +29315,Zeta+Reticuli+W,364,397,699323302,9647,0 +29316,Architekci+Plac%C3%B3w+Boju,338,553,8004076,9880,0 +29317,Piek%C5%82o+to+inni,586,356,848956765,10160,0 +29318,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,518,664,699828442,9966,0 +29319,Szlachcic%2FTaran,613,371,699759128,10237,0 +29321,014+-+Mroczna+Osada,643,409,849035905,10318,0 +29322,K34+x034,406,356,698364331,4224,0 +29323,Jehu_Kingdom_57,656,428,8785314,5384,0 +29324,North+Barba+007,419,364,699796330,9887,0 +29325,Wioska+sobie+015,402,640,7349282,10393,0 +29326,%C5%BBUBRAWKA+017,605,630,33900,9794,0 +29327,SOKzGUMIjag%C3%B3d,595,357,849059491,4394,0 +29328,%230111+tomek791103,483,331,1238300,10178,2 +29329,Jaaa,670,490,698635863,10476,0 +29330,cc+110+7,375,384,3909522,7733,0 +29331,%5BB%5D_%5B044%5D+Dejv.oldplyr,419,350,699380607,10495,5 +29332,119...centr,459,341,6920960,8382,0 +29333,B+037,663,531,8078914,8660,0 +29334,%2A135%2A,353,413,699273451,10211,2 +29335,1.14,335,452,3502565,3283,0 +29336,Szlachcic%2FTaran,636,395,699759128,10237,0 +29337,A-041,402,363,8419570,10375,0 +29338,Chekku+-+meito,331,522,9280477,10311,0 +29339,--buffalo+chip,624,393,8096537,9114,0 +29340,022.+Madzikostwo+Wielkie,510,664,849004274,10170,0 +29341,0271,543,666,698659980,10160,0 +29342,xxx+%23013%23TerrorMachine+x+Miniqo,586,355,7340529,11130,0 +29343,014,600,364,1018357,9761,0 +29344,%5BB%5D_%5B011%5D+Dejv.oldplyr,428,346,699380607,10636,0 +29345,002+Maribour,459,660,699834004,10521,8 +29346,3.02,344,440,393668,7012,0 +29347,19k%24+Grvvyq,654,570,699676005,10495,0 +29348,wNatsu,450,658,699849210,7348,0 +29349,Wioska+119,671,520,848971079,9761,0 +29350,Wioska+Bochun10,331,491,7449254,9785,0 +29351,Denger+12,360,588,698353083,10311,0 +29352,Parque+das+Nacoes,356,587,699494480,7357,0 +29354,Skrzypas+en,360,601,849014147,5033,0 +29355,greeece2,636,398,698290319,10164,0 +29356,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,662,698807570,10160,0 +29357,Szulernia,393,376,7249451,10173,3 +29358,010+kocham+serniczek,502,666,8954402,10005,0 +29359,M181_038,345,426,393668,9897,0 +29360,%2A044,599,634,699567608,9397,0 +29361,Avalon,573,656,699567608,8075,0 +29363,Mi%C4%99guszowiecki+Szczyt+Po%C5%9Bredni,332,483,849013126,5962,0 +29364,Wioska+barbarzy%C5%84ska,342,445,393668,6571,0 +29365,Wioska+barbarzy%C5%84ska,556,340,699072129,10218,0 +29366,E009,661,554,8428196,8530,0 +29367,MojeDnoToWaszSzczyt,570,350,848915730,9938,9 +29368,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,663,699828442,9806,0 +29370,Darma+dla+zawodnika,520,665,699494488,10495,0 +29371,-008-,538,332,698588812,2987,0 +29372,Jestem+Poza+Kontrol%C4%85,345,532,8004076,8638,0 +29373,O20+Quillota,666,539,699272880,10006,0 +29374,Chekku+-+meito,344,526,9280477,9835,0 +29375,Architekci+Plac%C3%B3w+Boju,340,548,8004076,6649,0 +29377,M181_034,348,430,393668,9885,0 +29378,002,667,489,7085502,9721,4 +29381,025+Rzym,383,385,848978297,7396,0 +29383,Wioska+barbarzy%C5%84ska,381,382,8419570,6139,0 +29385,Chekku+-+meito,332,530,9280477,9976,0 +29386,mys,571,651,699828685,9976,0 +29387,Chekku+-+meito,333,538,9280477,9976,9 +29389,-0010-,540,334,2972329,7990,0 +29390,Lord+Lord+Franek+.%23124,512,333,698420691,9747,0 +29391,G01,347,426,393668,5693,0 +29392,%5BB%5D_%5B042%5D+Dejv.oldplyr,423,350,699380607,10495,6 +29393,Wioska+008,381,387,8419570,8840,0 +29394,011+nazwa,364,597,8607734,10019,0 +29395,I038+Kaszanka+na+zimno,658,438,699722599,10202,0 +29396,C0138,330,523,8841266,10252,0 +29398,%3D062%3D+Wioska+barbarzy%C5%84ska,645,578,3781794,8456,0 +29399,0360,551,663,698659980,7577,7 +29400,001,336,531,699265922,9747,0 +29401,053,665,542,849095227,9656,0 +29402,A06,476,666,698652014,9968,6 +29403,Wioska+Pigula1983,445,657,699828338,5474,0 +29404,KAMIONKA+1,349,573,7318949,3091,0 +29405,Bagienko.Anker...,373,386,699713515,2764,0 +29408,006,547,340,849087786,2069,0 +29410,Ceres,548,342,699797805,3401,0 +29412,%23%23+Nieznana+%23%23,627,605,699778867,7957,0 +29413,Chekku+-+meito,339,535,9280477,9976,0 +29414,Rodziny+si%C4%99+nie+wybiera,337,530,698338524,6556,0 +29415,Forza+06,433,658,699849210,9512,0 +29416,Chekku+-+meito,332,536,9280477,9976,0 +29417,Szarak+%3F,336,526,698338524,9213,0 +29418,054-+Mroczna+Osada,629,396,849035905,12154,0 +29419,10+-+Wioska,373,608,8607734,10495,0 +29420,Wioska+barbarzy%C5%84ska,554,341,699072129,10221,0 +29421,007,482,667,698650301,9172,6 +29422,0298,569,658,698659980,9861,0 +29423,23k%24+Grvvyq,650,575,699676005,10495,0 +29424,-0002-,542,338,2972329,9761,0 +29425,Wioska+klez+006,330,511,698295651,7540,0 +29426,04+tonieostatnieslowo,605,371,699861004,10160,0 +29427,Wioska+barbarzy%C5%84ska,553,341,699072129,10218,0 +29428,006,592,642,699316421,10273,0 +29429,%2A136%2A,357,416,699273451,10130,0 +29430,B+014,667,536,8078914,10083,0 +29431,Lord+Lord+Franek+.%23125,508,331,698420691,9992,0 +29432,Jaaa,669,488,698635863,10476,0 +29433,Architekci+Plac%C3%B3w+Boju,339,540,8004076,5373,0 +29434,Baixa,349,588,699494480,9899,0 +29435,032+-+Mroczna+Osada,644,415,849035905,9378,0 +29436,O48+Bovec,663,548,699272880,9916,0 +29437,I015,665,450,699722599,10144,0 +29438,Szlachcic%2FTaran,625,389,699759128,9778,0 +29439,109,656,439,849088515,7998,0 +29440,A015+Barba+2,666,454,113796,9148,0 +29441,cc+Wioska+pqqqqqqqqqqqqqqq,390,372,3909522,6296,0 +29442,093,620,612,698786826,10495,0 +29443,Weso%C5%82ych+%C5%9Awi%C4%85t,579,351,848915730,9089,0 +29444,Piorunek1996,572,656,699567608,9160,0 +29445,Pobozowisko,368,608,699513260,4999,0 +29446,cc+Walercia,391,370,3909522,8211,0 +29447,Wioska+Bochun10,334,505,7449254,10311,0 +29448,Zeta+Reticuli+W,363,398,699323302,9073,0 +29449,004,605,636,849097799,9076,0 +29450,Ave+Why%21,497,671,698585370,5747,0 +29451,Wyspa+012,619,380,699756210,10273,0 +29452,0003,626,384,848915730,12154,0 +29453,Taka005,477,663,848999671,9542,0 +29454,045,628,383,849010255,10495,0 +29455,I016+Gwiezdny+Patrol,662,451,699722599,10149,0 +29458,51k%24+Grvvyq,654,578,699676005,9889,0 +29459,.%3A017%3A.+kr,629,386,849098782,9653,0 +29460,wHappy,446,656,699849210,5649,0 +29461,--Silver+Haze,625,382,8096537,10273,0 +29462,Wioska+barbarzy%C5%84ska,387,378,8419570,9604,0 +29463,Nowy+%C5%9Bwiat+4,349,567,849084005,6292,0 +29464,I029,658,441,699722599,10308,0 +29465,Wioska+barbarzy%C5%84ska,646,573,0,6707,0 +29466,kto+ananasowy+pod+wod%C4%85+ma+dom,662,541,699628084,10140,0 +29467,Wioska+tomiwet,544,336,699066118,7672,0 +29468,%2ANull+nic+nie+znaczy...,580,647,699443920,9761,3 +29469,046,669,501,2135129,10453,0 +29470,020+barbarzy%C5%84ska,645,417,9238175,10301,0 +29472,Weso%C5%82ych+%C5%9Awi%C4%85t,582,356,848915730,7531,0 +29473,Wioska+barbarzy%C5%84ska,553,342,699072129,10221,0 +29474,%230041+GL01N,469,330,1238300,10178,0 +29475,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,662,698807570,10252,0 +29476,Zeta+Reticuli+W,367,391,699323302,6836,0 +29477,016+Szachy+-+Wie%C5%BCa,367,605,8268010,9237,0 +29479,Wioska+barbarzy%C5%84ska,664,525,6510480,7388,0 +29480,DW2,342,448,393668,10178,0 +29481,ADEN,574,347,698588535,10064,0 +29482,101...tomecz,482,335,6920960,10221,7 +29483,Taurogi,574,653,6818593,9835,0 +29484,022,603,638,849097799,7627,0 +29485,0094,418,350,699431255,4101,0 +29486,0417,552,661,698659980,10019,0 +29487,Wioska+barbarzy%C5%84ska,402,359,8419570,8256,0 +29489,Weso%C5%82ych+%C5%9Awi%C4%85t,583,350,848915730,7711,0 +29491,0016+centurm,390,378,8419570,9574,0 +29492,035...P%C3%93%C5%81NOC+VIS,462,337,6920960,10495,0 +29493,047,563,652,699828685,9000,0 +29494,017+Kto+mnie+ten+z%C5%82om+zap%C5%82aci%3F,385,628,6354098,10141,0 +29495,Wioska+barbarzy%C5%84ska,624,391,698241117,6396,0 +29496,0034,415,358,699431255,9489,0 +29497,Zeta+Reticuli+W,364,396,699323302,8275,0 +29498,%7C006%7C+Gramvousa,493,665,699393742,10061,0 +29499,Chekku+-+meito,332,519,9280477,9976,0 +29500,Lord+Lord+Franek+.%23110,511,328,698420691,10538,0 +29501,%23Sk_016,436,660,699849210,3489,0 +29502,Dajanka+31,349,575,849012843,710,0 +29503,014+Anchor,464,660,699834004,7660,0 +29504,Co+to+by%C5%82o,598,360,849041192,6221,0 +29505,104.+Wyspy+Przybrze%C5%BCne,634,602,8337151,9112,0 +29506,Jestem+Poza+Kontrol%C4%85,345,561,8004076,9515,0 +29507,Szlachcic%2FTaran,615,378,699759128,10237,0 +29508,Sony+911,588,640,1415009,10208,0 +29509,Darmowe+przeprowadzki,439,659,848935389,8491,3 +29510,0518,521,664,698659980,10160,0 +29511,027+serniczek+z+bez%C4%85,507,668,8954402,9802,0 +29512,Wioska+Bochun10,335,480,7449254,10311,0 +29513,O19+Iquique,666,541,699272880,10544,0 +29514,045.,389,627,2665207,9835,0 +29515,0519,533,662,698659980,8435,0 +29516,Wioska+ba3,498,329,6118079,7703,0 +29517,SPOCENI+KUZYNI,416,648,848913998,5712,0 +29518,082,659,554,849095227,9761,0 +29519,ADEN,575,348,698588535,9979,0 +29520,217...barba,461,332,6920960,8528,0 +29521,Wioska+Bochun10,330,471,7449254,7196,0 +29522,Ave+Why%21,498,668,698585370,9235,0 +29523,B.05,667,501,699737356,7282,0 +29524,Wioska+barbarzy%C5%84ska,349,427,393668,8491,0 +29525,103.+Szczyty+Ksi%C4%85%C5%BC%C4%99ce,644,594,8337151,7741,0 +29526,SPOCENI+KUZYNI,421,646,848913998,3168,0 +29527,025,524,670,2293376,9993,0 +29528,015,456,340,2502956,10019,0 +29529,Lord+Lord+Franek+.%23167,510,332,698420691,10160,0 +29530,Yankee,670,499,699737356,10001,0 +29532,Wioska+barbarzy%C5%84ska,416,651,699736927,1798,0 +29533,121,472,354,7271812,10220,0 +29534,Rzym,585,356,848915730,10160,0 +29535,kto+ananasowy+pod+wod%C4%85+ma+dom,669,536,699628084,8839,0 +29536,Wioska+barbarzy%C5%84ska,384,382,8419570,2960,0 +29537,A02,471,667,698652014,10019,2 +29538,Piek%C5%82o+to+inni,577,354,848956765,10160,0 +29539,D02+A+jednak+uda%C5%82o+si%C4%99+.,459,666,849037407,10160,0 +29541,Wioska+barbarzy%C5%84ska,671,480,699598425,10728,0 +29542,%2A%2A20%2A%2A,630,391,849098782,10154,0 +29543,Lord+Lord+Franek+.%23126,517,334,698420691,10143,0 +29544,048+front,601,367,2502956,10019,0 +29545,Wioska+barbarzy%C5%84ska,652,573,0,2617,0 +29546,Weso%C5%82ych+%C5%9Awi%C4%85t,572,352,848915730,10066,0 +29547,Wioska+Mayweather+7,597,640,699567608,10301,0 +29548,008,602,364,1018357,10019,0 +29549,Chekku+-+meito,331,518,9280477,9976,0 +29550,Ave+Why%21,496,666,698585370,6175,0 +29551,Pobozowisko,380,614,699513260,11130,0 +29552,%2A%2A30%2A%2A,661,440,849098782,9350,0 +29553,troja,562,341,698290319,7240,0 +29554,Valhalla+A9,369,613,849097002,2829,0 +29555,Wioska+barbarzy%C5%84ska,516,329,698350371,6671,0 +29556,Orle,655,584,849039310,8228,0 +29557,I041,659,436,699722599,10049,0 +29558,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,664,698807570,8571,0 +29559,Wioska+barbarzy%C5%84ska,667,469,699574408,10053,0 +29560,berkuza+2,588,355,7340529,9015,0 +29561,A26,470,666,698652014,1871,0 +29562,The+Game+Has+Only+Just+Begun,354,513,9280477,9976,0 +29565,Wioska+barbarzy%C5%84ska,539,336,699066118,5762,0 +29566,Plutosea+026,330,534,699523631,10143,0 +29567,0279,547,659,698659980,10160,0 +29568,Architekci+Plac%C3%B3w+Boju,335,550,8004076,9880,0 +29569,157+Nocny+Jastrz%C4%85b+002,643,406,699491076,8443,0 +29570,Wioska+Bochun10,332,475,7449254,10311,6 +29571,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,621,1434753,10019,0 +29572,79.,632,401,699429153,7390,0 +29573,.achim.,490,335,6936607,9825,0 +29574,Lord+Lord+Franek+.%23079,530,334,698420691,10144,0 +29576,%23101+C,531,669,9037756,10311,0 +29577,tylna,627,614,6417987,10140,8 +29578,%248.000+Grvvyq,658,568,699676005,10495,0 +29579,1.011,338,444,3502565,8764,0 +29580,Chekku+-+meito,329,524,9280477,9976,0 +29581,.%3A003%3A.,373,610,7417116,10971,0 +29583,B+031,667,531,8078914,8406,0 +29584,VADER,655,573,699845400,7157,0 +29585,057...barbarka,451,341,6920960,10311,0 +29586,Weso%C5%82ych+%C5%9Awi%C4%85t,596,363,848915730,6525,0 +29587,Chekku+-+meito,333,513,9280477,9976,0 +29588,Architekci+Plac%C3%B3w+Boju,340,539,8004076,9880,0 +29589,Wioska+barbarzy%C5%84ska,497,330,6118079,6369,0 +29590,Wioska+Bochun10,331,481,7449254,5722,0 +29591,003.Bordeaux,332,501,1830149,9718,2 +29592,Bagdad,493,328,8847546,10068,0 +29593,D+020,671,511,8078914,10495,0 +29594,I042,657,437,699722599,9905,0 +29595,Y+%7C+Forest+Cyaaaanku,328,498,699213622,10000,0 +29596,07.+DMN,651,417,9238175,9711,0 +29597,%2A143%2A,357,415,699273451,10211,0 +29598,%5BB%5D%5B03%5D+Avondale,429,344,699380621,9037,0 +29599,sony911,589,639,1415009,10124,0 +29600,Deveste+ufam+Tobie,399,638,699783765,10000,0 +29602,--Deadwood,622,389,8096537,10178,0 +29603,Kiedy%C5%9B+Wielki+Wojownik,568,342,848915730,9976,0 +29604,Weso%C5%82ych+%C5%9Awi%C4%85t,581,357,848915730,9938,0 +29605,Wioska+barbarzy%C5%84ska,441,344,699191449,9029,0 +29607,kto+ananasowy+pod+wod%C4%85+ma+dom,658,548,699628084,9797,0 +29608,0537,562,655,698659980,6288,0 +29609,Piek%C5%82o+to+inni,581,356,848956765,10083,0 +29610,Francuzik,337,528,698338524,2019,0 +29611,Psycha+Siada,457,664,698807570,10252,0 +29612,Gattacka,620,376,699298370,9451,0 +29613,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,635,1434753,10068,0 +29614,010,336,533,699265922,6077,0 +29615,015+Szachy+-+Kr%C3%B3l,364,606,8268010,9835,0 +29616,Sony+911,583,651,1415009,10214,0 +29618,BETON+053,623,618,699277039,7105,0 +29619,Lord+Lord+Franek+.%23080,532,338,698420691,9956,0 +29620,Szlachcic%3Btaran%21,635,394,849092309,10178,0 +29621,psycha+sitting,441,657,699736927,7010,5 +29623,Szarlatan,389,381,606706,4909,0 +29624,0570,565,652,698659980,10019,0 +29625,Cyk,341,524,698338524,5836,0 +29626,V002,350,420,849097737,7349,0 +29627,110...tomcz,482,328,6920960,10223,0 +29628,026.,612,621,6520732,9835,0 +29629,Jaaa,670,489,698635863,10484,0 +29630,0140,536,666,698659980,10083,0 +29631,025+VW+Wioska+barbarzy%C5%84ska,362,406,3108144,3912,0 +29632,Deff+robi+brrr,348,573,7333216,9735,4 +29633,Wioska+Yator11,616,617,699778867,12154,0 +29634,Jednak+wol%C4%99+gofry,434,651,699736927,4155,0 +29635,0520,531,663,698659980,9747,0 +29636,106.+Wyspy+Ko%C5%84ca,644,591,8337151,8252,0 +29637,psycha+sitting,423,656,699736927,9976,0 +29638,Architekci+Plac%C3%B3w+Boju,340,542,8004076,4062,0 +29639,D%C4%85browa+0022,355,590,849096972,3321,0 +29640,Nowy+%C5%9Bwiat+5,343,562,849084005,5490,0 +29641,Nowy+%C5%9Bwiat,345,564,849084005,10178,0 +29642,Szlachcic,391,365,698160606,10430,0 +29643,WB+08,635,606,2269943,8316,0 +29644,Jehu_Kingdom_62,651,421,8785314,5707,0 +29645,Master+Od+Puppets,633,598,848926293,4499,0 +29646,Oeste+cuatro,383,556,698916948,4797,0 +29647,-006-,537,334,698588812,4688,0 +29648,Wioska+barbarzy%C5%84ska,670,479,699598425,10728,0 +29649,M181_002,344,431,393668,9902,0 +29650,Myk+i+do+kieszonki,347,563,9319058,9799,0 +29651,Piwna+24,653,418,699812007,4695,0 +29652,033+-+Mroczna+Osada,645,413,849035905,8951,0 +29653,I%23012,613,370,2065730,9797,0 +29654,Chekku+-+meito,337,525,9280477,9976,1 +29655,Rowerowo,361,599,8607734,9966,0 +29656,Jaaa,666,489,698635863,8830,0 +29657,Wioska+barbarzy%C5%84ska+Kr,368,400,8967440,3915,0 +29658,Wioska+klez+002,330,513,698295651,9637,0 +29659,deff+100+%25,345,569,849012521,9240,0 +29660,K44+x038,465,400,698364331,6446,0 +29661,Wyspa+018,620,377,699756210,7021,0 +29662,0149,541,665,698659980,10160,0 +29663,.%3A010%3A.,374,616,7417116,10005,0 +29664,0363,552,663,698659980,9547,0 +29665,030,625,614,699567608,10160,0 +29666,Ave+Why%21,482,671,699121671,9809,0 +29667,Wioska+Bochun10,334,475,7449254,7584,0 +29668,0286,552,658,698659980,9268,0 +29669,085,667,515,699351301,5818,0 +29670,deff+100+%25,344,569,849012521,10254,0 +29671,Pobozowisko,378,614,699513260,12154,2 +29672,Grvvyq+112k%24,633,596,699676005,9788,0 +29673,Wioska+Bochun10,332,485,7449254,10311,0 +29674,Esfarajen,431,658,849089459,5266,0 +29675,Szulernia,385,371,7249451,3537,0 +29676,SOKzGUMIjag%C3%B3d,652,427,849059491,8312,0 +29677,Wioska+Bochun10,330,498,7449254,7060,0 +29678,001,663,549,6929240,8000,0 +29679,Myk+i+do+kieszonki,351,586,9319058,9799,0 +29680,%2A006,594,646,699567608,9031,0 +29681,014Rozw%C3%B3d,433,653,698620694,9761,0 +29682,B+008,666,531,8078914,10019,0 +29683,Wioska+barbarzy%C5%84ska,558,661,7756002,9883,0 +29684,019,434,652,699246032,2927,0 +29685,Wioska+Bochun10,335,498,7449254,7216,0 +29686,%7E005%7E,356,595,849014147,7422,0 +29687,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,664,698807570,7251,0 +29688,0007,624,388,699857387,5400,0 +29689,Wioska+Bochun10,333,491,7449254,10300,0 +29692,Taran,672,485,699598425,10728,0 +29693,AAA,531,331,1006847,9398,0 +29694,%7CC%7C+Lagoonwatch,510,669,698147372,10636,0 +29696,Jehu_Kingdom_54,659,433,8785314,5592,0 +29697,Taran+005,615,373,699298370,10947,0 +29698,Kr%C3%B3lestwo,645,405,1086351,7598,0 +29699,%23106%23,636,596,692803,9761,0 +29700,048,666,550,849095227,9735,0 +29701,002+Rasiak,453,336,2502956,10019,0 +29702,081+komornicy,340,547,699510259,2789,0 +29703,034.,638,395,699491076,10587,0 +29704,011+Kabelki+to+jest+%C5%BCycie...,384,625,6354098,9868,0 +29705,Wioska+barbarzy%C5%84ska,611,369,310729,2533,0 +29706,---009,374,611,8607734,10199,9 +29707,S+AKUKU,596,361,699491076,9759,0 +29708,Wioska+barbarzy%C5%84ska,664,479,699598425,10728,0 +29709,011+Aedd+Gynvael,465,659,699834004,6174,0 +29710,ADEN,595,358,698588535,6516,0 +29711,A27,477,669,698652014,9640,0 +29712,xqq,656,572,699845400,5421,0 +29713,016+-+Mroczna+Osada,643,410,849035905,11807,0 +29714,Piek%C5%82o+to+inni,563,353,848956765,10160,0 +29715,Psycha+Siada,451,662,698807570,10252,0 +29716,013,667,496,7085502,9746,0 +29717,006+Polibuda,390,629,8268010,9835,0 +29718,RADOM,339,549,699794765,6757,0 +29719,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,390,630,1434753,10068,1 +29720,016+Tyranus2,671,496,2135129,9553,0 +29721,45.+KaruTown,641,401,699491076,5178,0 +29722,Taran,665,475,699598425,10728,0 +29723,03Wioska+barbarzy%C5%84ska,387,630,699704542,8679,0 +29724,0521,537,668,698659980,10495,0 +29725,Sony+911,643,588,1415009,10220,0 +29727,Szulernia,382,379,7249451,7013,0 +29728,AZBUD,331,509,849097614,9254,0 +29729,%5BB%5D_%5B016%5D+Dejv.oldplyr,429,349,699380607,10326,0 +29730,wiosna,660,549,849097445,661,0 +29731,Architekci+Plac%C3%B3w+Boju,338,550,8004076,9880,0 +29732,0522,525,671,698659980,10160,0 +29733,E006,659,560,8428196,6079,0 +29734,Weso%C5%82ych+%C5%9Awi%C4%85t,581,355,848915730,10160,0 +29735,095...TOMECZEK,477,334,6920960,10226,0 +29736,I017,658,442,699722599,10001,0 +29737,0011,626,386,848915730,9955,0 +29738,pa+tera,463,655,698807570,10252,0 +29739,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,393,635,1434753,10068,0 +29740,Ave+Why%21,496,668,698585370,4847,0 +29741,%230076+barbarzy%C5%84ska,474,335,1238300,10014,0 +29742,%21%2135+59+xxx,596,356,698361257,10267,0 +29743,227...barba,460,332,6920960,5959,0 +29745,Szlachcic%2FTaran,611,375,699759128,10237,0 +29746,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F7,627,618,33900,9903,0 +29747,--sturgis,621,385,8096537,9563,0 +29748,Wioska+barbarzy%C5%84ska,428,650,699736927,6688,0 +29749,2+barba+%2A,581,645,848995242,10109,0 +29750,Chop+Suey,641,589,848926293,5730,0 +29751,tego+nie,519,665,699494488,10229,0 +29752,Sony+911,586,642,1415009,10270,0 +29753,wkonfitura+groo+xdd,654,574,699845400,6615,0 +29754,Architekci+Plac%C3%B3w+Boju,338,547,8004076,9880,0 +29755,039,534,665,2293376,8355,0 +29756,B.07,667,503,699737356,9366,0 +29757,Wioska+barbarzy%C5%84ska,396,366,3484132,7492,0 +29758,deff+100+%25,346,568,849012521,9711,0 +29759,Wioska+odyn123,633,603,848993505,8420,0 +29760,Gromkowie+4,370,614,7417116,5478,0 +29761,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,396,634,1434753,10068,0 +29762,1barba,585,648,848995242,10252,0 +29763,Mniejsze+z%C5%82o+0081,333,542,699794765,5590,0 +29764,BETON+038,628,611,699567608,8685,0 +29765,-004-,335,448,8184383,9805,0 +29766,005,636,401,699429153,7959,0 +29767,0265,545,665,698659980,10083,0 +29768,Weso%C5%82ych+%C5%9Awi%C4%85t+%2B,590,358,848915730,10030,0 +29769,K34+x028,408,356,698364331,6733,0 +29770,%2AINTERTWINED%2A,510,623,698704189,9711,0 +29771,Wioska+barbarzy%C5%84ska,504,673,699781762,10495,0 +29772,Chekku+-+meito,337,531,9280477,9976,0 +29773,A011+Jospe+2,663,452,113796,10140,0 +29774,Pobozowisko,378,615,699513260,9570,0 +29775,Westfold.014,348,424,848918380,9412,0 +29776,Myk+i+do+kieszonki,348,575,849012521,10311,0 +29777,FanBednar,588,357,849034666,3137,0 +29778,38k%24+Grvvyq,648,576,699676005,9897,0 +29779,kto+ananasowy+pod+wod%C4%85+ma+dom,668,537,699628084,8477,0 +29780,Lord+Lord+Franek+.%23168,505,330,698420691,9868,0 +29781,0534,561,659,698659980,9018,0 +29782,Szulernia,381,379,7249451,10288,3 +29783,0523,540,664,698659980,9750,0 +29784,111.+Morze+Zwarte,632,602,8337151,8555,0 +29786,Wioska+barbarzy%C5%84ska+Ph,361,408,8967440,3259,0 +29787,Wyspa+011,622,380,699756210,9587,0 +29788,%23009%23,626,625,692803,9761,0 +29789,%2A%2ASorrow,572,627,699443920,9994,0 +29791,034+-+Mroczna+Osada,642,412,849035905,7151,0 +29792,Wioska+barbarzy%C5%84ska,379,378,699711706,1959,0 +29793,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,392,633,1434753,10068,0 +29794,Weso%C5%82ych+%C5%9Awi%C4%85t,590,360,848915730,6143,0 +29795,Wioska+Bochun10,329,490,7449254,10946,0 +29796,Architekci+Plac%C3%B3w+Boju,338,549,8004076,9880,0 +29797,Piek%C5%82o+to+inni,586,357,848956765,10160,5 +29798,000+Plutosea,333,539,9280477,9976,0 +29799,emoriar,663,442,699574408,5438,0 +29800,032.,636,396,699491076,10795,0 +29801,Wioska+barbarzy%C5%84ska,549,334,699066118,5391,0 +29802,Wioska+zomo,498,328,6118079,7012,0 +29804,Bagienko.Anker...,374,386,699713515,4865,0 +29805,Taran,669,485,699598425,10728,0 +29806,031,628,612,699567608,10365,0 +29807,0014,542,661,698659980,10160,3 +29808,%23Mareleona,437,657,699849210,9456,0 +29809,Wioska+klez+005,328,510,698295651,9632,0 +29810,Lord+Lord+Franek+.%23104,523,330,698420691,10160,0 +29811,Wioska+barbarzy%C5%84ska,381,383,8419570,2272,0 +29812,010.Wioska+wachul9,337,504,1830149,9815,0 +29813,022,626,611,699567608,10311,0 +29814,Wioska+barbarzy%C5%84ska,396,365,3484132,7440,0 +29816,Weso%C5%82ych+%C5%9Awi%C4%85t,587,358,848915730,7219,0 +29817,A0280,328,482,8841266,10252,0 +29818,Szlachcic%2FTaran,614,377,699759128,10237,0 +29820,0237,543,667,698659980,9878,0 +29821,%230043+GL01N,466,330,1238300,10178,0 +29822,Wioska+barbarzy%C5%84ska,553,335,699072129,10223,0 +29823,Myk+i+do+kieszonki,348,577,9319058,9799,2 +29825,Wioska+Bochun10,330,490,7449254,9789,0 +29826,Taki+Pan,508,333,698739350,5322,0 +29827,0102,543,668,698659980,10083,0 +29828,027,627,608,699567608,9877,0 +29829,%23Leopold,437,662,699849210,7802,5 +29830,Wioska+Bochun10,337,470,7449254,10365,0 +29831,%230078+barbarzy%C5%84ska,469,333,1238300,10011,0 +29832,D05,665,554,848995478,11824,0 +29833,%5B167%5D,650,582,8000875,6153,0 +29834,North+FiFa+3,435,342,699796330,9744,6 +29835,017,465,328,2502956,10019,0 +29836,%230102+barbarzy%C5%84ska,461,338,1238300,10178,0 +29837,%C5%BBUBRAWKA+040,607,633,33900,10257,0 +29838,127...centr,449,343,6920960,8720,0 +29839,Wyspa+019,624,381,699756210,7281,0 +29840,Lord+Lord+Franek+.%23088,517,327,698420691,9976,0 +29841,0029,412,353,699431255,9999,0 +29842,D%C4%85browa+0024,354,585,849096972,3005,0 +29843,A0287,328,484,8841266,10362,0 +29844,0144,633,605,698416970,7298,0 +29845,015+-+Mroczna+Osada,644,408,849035905,12134,0 +29846,Wioska+08,501,328,951823,5582,0 +29847,%5BA%5D012,429,649,849097175,4247,0 +29848,017,599,635,849097799,8038,0 +29849,The+Game+Has+Only+Just+Begun,347,535,9280477,9976,0 +29850,Gra+o+Tron,617,617,8815749,10019,0 +29851,Kentin+ufam+Tobie,334,455,699783765,11348,0 +29852,Psycha+Siada,449,664,698807570,6542,0 +29853,R+011+%7ESzaikan%7E,485,671,699195358,9976,0 +29854,001,602,638,849097799,9885,0 +29855,Weso%C5%82ych+%C5%9Awi%C4%85t,578,351,848915730,9924,0 +29856,Bunkier+003,619,623,699778867,7846,0 +29857,Monetkownia,618,623,699759128,10237,0 +29858,%2A4623%2Ac+Cymbalowo,653,433,7973893,10287,0 +29859,Chekku+-+meito,332,525,9280477,9976,0 +29860,Blackhaven,670,471,699574408,10019,0 +29861,Taran,343,573,6180190,9960,0 +29862,Wioska+110,642,606,848971079,8830,0 +29863,B.060,668,505,9188016,10005,0 +29864,%23Vangeance,436,655,699849210,7369,0 +29865,Wioska+barbarzy%C5%84ska+028,512,330,6343784,6341,0 +29866,%2A152%2A,353,419,699273451,8424,0 +29867,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,391,627,849097937,9465,0 +29868,North+Fifa+2,437,341,699796330,9745,0 +29869,Sony+911,644,589,1415009,10476,0 +29870,wie%C5%9B,346,430,393668,9902,0 +29871,come+on,332,531,699523631,10224,0 +29872,043+%7C+PALESTINA,654,422,9228039,7881,0 +29873,deff+100+%25,348,569,849012521,8913,7 +29874,02.+California,637,409,849060446,9735,0 +29875,SPOCENI+KUZYNI,414,650,848913998,2658,0 +29876,%230119+tomek791103,478,333,1238300,8637,0 +29877,amator+czysto,558,663,848915531,6255,0 +29878,033,666,488,699351301,9843,0 +29879,Wioska+barbarzy%C5%84ska,357,406,699323302,2924,0 +29880,027+pawelk95,666,477,2135129,9372,8 +29881,A05,472,667,698652014,10019,0 +29882,Wioska+ba11,499,331,6118079,6789,0 +29884,A0281,327,488,8841266,10252,0 +29885,0016,625,383,848915730,9561,0 +29886,Orze%C5%82+Wyl%C4%85dowa%C5%82,450,659,698807570,9208,9 +29887,Knowhere,382,510,699723284,10452,0 +29888,AAA,534,331,1006847,9417,0 +29889,asd,664,476,699598425,10728,0 +29890,0019,568,658,698659980,10252,2 +29891,cc+Bia%C5%82ystok,392,369,3909522,8040,0 +29892,Wioska+barbarzy%C5%84ska,370,394,848886056,3589,0 +29893,Dajanka+22,354,581,849012843,1196,0 +29894,1.5,367,390,849095959,4149,0 +29895,231...CENTR,458,332,6920960,6071,0 +29896,J01,363,595,849090130,3805,0 +29897,Wioska+apysia,658,571,699845400,6560,0 +29898,ADEN,575,347,698588535,10154,0 +29899,CHARFA,514,342,699072129,10441,0 +29900,Lord+Lord+Franek+.%23081,528,332,698420691,9957,0 +29901,0186,545,659,698659980,10019,0 +29902,216...barba,463,333,6920960,5294,0 +29903,Wioska+barbarzy%C5%84ska,545,333,699066118,2841,0 +29904,K34+-+%5B124%5D+Before+Land,438,345,699088769,9783,0 +29905,%2A130%2A,369,393,699273451,10211,1 +29906,%21+Stark+Tower,629,384,699723284,5468,0 +29907,050-+Mroczna+Osada,629,394,849035905,9384,0 +29908,Wioska+barbarzy%C5%84ska,530,332,698350371,1653,0 +29909,.%3A018%3A.,372,606,7417116,6968,0 +29911,1.4,376,383,849095959,5055,0 +29912,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,665,698807570,10252,4 +29913,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,663,698807570,10252,0 +29915,_6_,493,333,9113064,2900,0 +29916,045,521,671,2293376,9993,0 +29917,038,422,647,699736927,5683,0 +29918,North+Barba+042,432,348,699796330,9498,0 +29919,Dana+Point,615,625,848932879,10971,0 +29920,BEZDZIETNY+KAWALER,418,632,848913998,6244,0 +29921,V007,352,423,849097737,5826,0 +29922,Pobozowisko,372,607,699513260,8405,0 +29923,%23029+A,444,596,9037756,10311,0 +29924,---012,361,600,8607734,7503,0 +29926,KR%C3%93L+PAPI+WIELKI,636,606,698191218,10000,0 +29927,TROJA.12,455,576,8438707,7359,0 +29928,Wioska+barbarzy%C5%84ska,620,378,848924219,2336,0 +29929,mys,570,650,699828685,9976,0 +29930,Wioska+barbarzy%C5%84ska,451,337,699308637,7729,0 +29931,031.+Night+Raid-,476,670,699684062,11041,0 +29932,0524,543,664,698659980,10495,0 +29933,Zeta+Reticuli+W,362,400,699323302,7781,0 +29934,%5BB%5D_%5B046%5D+Dejv.oldplyr,417,353,699380607,10495,0 +29935,%7CC%7C+Northreach,506,668,698147372,10495,0 +29936,0004+Pozna%C5%84,377,377,849096882,9971,0 +29937,054...barbarka,449,342,6920960,10479,0 +29938,103.+Brigetio,648,416,849091866,5338,0 +29939,Zeta+Reticuli+W,356,402,699323302,3956,0 +29940,O41+Sharjila,663,541,699272880,10797,0 +29941,I018,669,464,699722599,10342,0 +29942,Wioska+Bochun10,334,503,7449254,4736,0 +29943,PUSTO,642,584,1415009,10237,0 +29944,Piek%C5%82o+to+inni,587,355,848956765,3073,0 +29945,Pobozowisko,368,609,699513260,10928,0 +29946,A024+FlapFactor,660,445,113796,10160,0 +29947,I043,665,461,699722599,10236,0 +29949,3+barba,584,649,848995242,10018,0 +29950,Wioska+108,642,588,848971079,7706,0 +29951,Sony+911,586,644,1415009,10217,0 +29952,113,655,428,849088515,7002,0 +29953,Wioska+064,638,594,848971079,9771,0 +29954,Ob+Konfederacja+%2B,436,339,848915730,8461,0 +29955,Zeta+Reticuli+W,368,397,699323302,6123,0 +29956,Zeta+Reticuli+W,367,392,699323302,6338,0 +29958,K34+-+%5B141%5D+Before+Land,436,346,699088769,9372,0 +29959,%7C032%7C+Prasonisi,496,667,699393742,10107,0 +29960,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,669,698807570,9821,0 +29961,%23Sk_014,438,663,699849210,2668,0 +29962,0571,568,660,698659980,9756,0 +29963,%230030+GL01N,465,336,1238300,10178,0 +29964,Wioska+barbarzy%C5%84ska,560,339,699072129,10220,0 +29965,North+Olsztyn,425,347,699796330,9930,0 +29966,E007,660,557,8428196,8428,0 +29967,Wioska+barbarzy%C5%84ska,503,674,699781762,9837,0 +29968,ADEN,576,348,698588535,10107,0 +29969,Wioska+Bochun10,331,474,7449254,6599,0 +29970,1v9+machine,388,625,699697558,10019,0 +29971,Gattacka,621,378,699298370,9372,0 +29972,024+imprezowy+serniczek,511,668,8954402,9899,0 +29973,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,634,1434753,10068,0 +29974,0257,555,661,698659980,10019,0 +29975,%C5%9Amierdzi+potem+x,352,590,7318415,4657,0 +29976,MojeDnoToWaszSzczyt,567,345,848915730,9938,0 +29977,Witoszyn-morra12311,654,426,7340529,8998,0 +29978,137...barb,446,338,6920960,6403,0 +29979,Wiocha+8,377,384,849096544,7537,0 +29980,Szulernia,385,372,7249451,4453,0 +29981,07.+Pi%C4%99kny+rynek,509,669,849092769,9688,0 +29982,Monetkownia,621,619,699759128,10237,0 +29983,08+im+Riutina,607,428,849037469,9809,0 +29984,KUZYNEIRO,405,642,848913998,6813,0 +29986,R%C4%99cznik+do+zmiany,358,402,699697558,10019,0 +29987,0073,413,350,699431255,6050,0 +29988,000+Plutosea,334,540,9280477,10068,0 +29989,014,364,603,699083129,9599,0 +29991,Wioska+barbarzy%C5%84ska,561,340,699072129,10216,0 +29992,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,379,621,1434753,9593,0 +29993,Pa%C5%84stfa+Pu%C5%82nocy,583,357,699433558,10401,0 +29994,Mora+Sul,344,435,849097716,6653,0 +29995,Ave+Why%21,480,670,699121671,9280,0 +29996,5+barba,585,650,848995242,10018,0 +29997,126...TOMCZ,479,335,6920960,10322,0 +29998,Lord+Arsey+KING,572,595,848956513,10285,0 +29999,%2A%2A13%2A%2A,632,389,849098782,10052,0 +30000,Lord+Lord+Franek+.%23011,519,332,698420691,10252,0 +30001,015+Tyranus1,669,496,2135129,9231,0 +30002,Zeta+Reticuli+W,365,398,699323302,8697,0 +30003,Gromkowie+3,370,613,698908184,9071,9 +30004,North+W%C5%82oc%C5%82awek,420,354,699796330,10294,0 +30005,D03+Brown+gubisz+si%C4%99,458,666,849037407,10838,0 +30006,NAREW,332,509,849097614,8483,0 +30007,Wioska+barbarzy%C5%84ska,555,665,7756002,9882,0 +30008,%7CB%7C+Madmoor,490,667,698147372,9455,0 +30009,SPOCENI+KUZYNI,414,648,848913998,9536,0 +30010,0167,549,664,698659980,10019,0 +30011,troja3,562,342,698290319,8708,0 +30012,Chekku+-+meito,328,524,9280477,8191,0 +30013,23.+WHY%21,513,670,849092769,4960,0 +30014,Wioska+barbarzy%C5%84ska,670,484,699598425,10728,0 +30015,%3A%3A%3A2%3A%3A%3AKoniki,456,664,699827112,9960,0 +30016,D%C4%85browa+0011,356,592,849096972,8589,0 +30017,%230051+geryk,467,330,1238300,10178,1 +30018,KR%C3%93L+PAPI+WIELKI,631,601,698191218,10000,0 +30019,53k%24+Grvvyq,655,576,699676005,8049,0 +30020,Piek%C5%82o+to+inni,331,535,848956765,10160,0 +30021,024.+Mazgajkiewo+Ma%C5%82e,513,666,848928624,10160,0 +30022,Wioska+barbarzy%C5%84ska,401,357,8419570,6139,0 +30023,Chekku+-+meito,331,524,9280477,9976,0 +30025,03.+Meksyk,637,403,849060446,9735,0 +30026,%2A202%2A,356,407,699273451,7656,0 +30027,607%7C374,609,372,699580120,4049,0 +30028,Szlachcic%2FTaran,636,392,699491076,10080,0 +30029,%2A012,598,641,699567608,10140,3 +30030,1.15,341,442,3502565,3157,0 +30031,scofield,525,666,699494488,9974,0 +30032,%7CB%7C+Darkcoast,488,668,698147372,10495,0 +30033,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,629,1434753,10068,0 +30034,A+049,371,617,699342219,8290,6 +30035,Lord+Lord+Franek+.%23127,513,326,698420691,7771,0 +30036,Architekci+Plac%C3%B3w+Boju,339,554,8004076,9880,0 +30037,xxx+-+11,615,630,699778867,10362,0 +30038,077,664,527,699351301,9780,0 +30039,0143,629,598,698416970,7974,0 +30040,Szlachcic%2FTaran,610,374,699759128,7094,0 +30041,G%C3%93RNIK,331,505,849097614,9835,0 +30042,Lord+Lord+Franek+.%23090,517,328,698420691,9976,0 +30043,%2A026,593,646,699567608,9720,0 +30044,%5B022%5D+Wioska+barbarzy%C5%84ska,661,438,849095068,9312,0 +30045,%2A%2A1234%2A%2A,634,385,849098782,11422,0 +30046,BAC%C3%93WKA+%7C032%7C,641,408,7394371,5244,0 +30047,Chekku+-+meito,334,524,9280477,9976,0 +30048,Piek%C5%82o+to+inni,589,352,848956765,9761,1 +30049,026+pawelk95,667,477,2135129,9500,0 +30050,%2A226%2A,378,376,699273451,9101,0 +30052,%7CB%7C+Oakenview,487,668,698147372,10362,0 +30053,Architekci+Plac%C3%B3w+Boju,340,549,8004076,9880,0 +30054,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,611,849097937,9584,0 +30055,010+Unternehmen+Barbarossa,604,362,849091899,4581,0 +30056,Jaaa,667,487,698635863,8702,0 +30057,Wioska+barbarzy%C5%84ska,561,343,699072129,10217,0 +30058,Ob+Konfederacja,433,340,848915730,9168,0 +30059,sony911,589,648,1415009,10053,0 +30060,051,565,410,7271812,10495,0 +30061,Lord+Lord+Franek+.%23128,523,334,698420691,7915,0 +30062,Cary+k+Tampa,597,355,849061374,10104,0 +30063,Chekku+-+meito,337,533,9280477,9019,0 +30064,181..,351,590,849090130,6199,0 +30065,Westfold.003,347,416,848918380,10178,0 +30066,Wioska+II,581,347,698200480,6964,0 +30067,%230105+tomek791103,478,327,1238300,10178,0 +30068,-015-,339,560,8004076,7488,0 +30069,030.+Night+Raid-,476,673,699684062,10909,0 +30070,KUZYNEIRO,407,643,848913998,8167,0 +30071,A0286,329,482,8841266,10252,0 +30072,%230070+tomek791103,478,329,1238300,10178,6 +30073,Wioska+barbarzy%C5%84ska,668,525,6510480,6471,0 +30074,I019,661,459,699722599,9662,0 +30075,Lord+Lord+Franek+.%23082,526,334,698420691,10436,0 +30076,Gromkowie+2,369,612,698908184,11874,0 +30077,Bagdad,493,326,8847546,10068,0 +30078,057,536,670,2293376,9993,0 +30079,1.12,340,446,3502565,3958,0 +30080,B+032,670,530,8078914,10061,0 +30081,Wioska+barbarzy%C5%84ska,496,386,699433558,9174,0 +30082,Wrath+007,574,343,699756210,10273,0 +30083,Monetkownia,619,624,699759128,10237,0 +30084,Architekci+Plac%C3%B3w+Boju,342,564,8004076,9880,0 +30085,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,395,632,1434753,10068,0 +30086,Wioska+Bochun10,327,517,7449254,10300,0 +30087,011,516,670,2293376,9993,0 +30088,Szulernia,383,372,7249451,9981,0 +30089,%2A169%2A,349,415,699273451,10211,0 +30090,%5BB%5D_%5B048%5D+Dejv.oldplyr,427,348,699380607,10287,0 +30091,104.+Egara,647,411,849091866,9604,0 +30092,North+Barba+055,407,355,699796330,7083,0 +30093,Moczy+kij,331,541,699265922,9761,0 +30094,Szulernia,408,364,7249451,10045,0 +30095,Chekku+-+meito,333,521,9280477,9976,0 +30096,KUZYNEIRO,407,642,848913998,10160,0 +30097,%230182+MiBM,489,328,1238300,6561,0 +30098,Radek,398,470,699523631,10474,0 +30099,.achim.,491,333,6936607,10946,0 +30100,03Wioska+barbarzy%C5%84ska,390,633,699704542,8682,0 +30101,MojeDnoToWaszSzczyt,565,346,848915730,9924,0 +30102,%5BA%5D009,424,651,699736927,6110,0 +30103,Deveste+ufam+Tobie,406,647,699783765,10000,8 +30104,A0263,330,487,8841266,10252,0 +30105,Wioska+barbarzy%C5%84ska,561,342,699072129,10218,0 +30106,Zeta+Reticuli+W,362,394,699323302,7808,0 +30107,D%C4%85browa+0012,354,588,849096972,9630,0 +30108,Szulernia,407,362,7249451,10017,6 +30109,Jednak+wol%C4%99+gofry,410,649,848913998,9835,0 +30111,Oddej+te+ko%C5%82o+bo+ci+ciulna,329,464,699711723,3182,0 +30112,Bagdad,497,334,8847546,9682,0 +30113,%21off+100+%25,348,570,849012521,10495,0 +30114,WB6,651,413,1086351,2917,0 +30115,005+Wioska+FredS,626,467,699671454,7743,0 +30116,Ave+Why%21,496,669,698585370,4550,0 +30117,K34+-+%5B143%5D+Before+Land,439,344,699088769,9924,0 +30118,Muaq,675,477,699574408,9551,0 +30119,660%7C387,609,373,699580120,7695,0 +30120,Wioska+Bochun10,335,465,7449254,9960,0 +30121,047+%7C+PALESTINA,655,423,9228039,6761,0 +30122,Gattacka,603,424,699298370,9041,0 +30123,%2A014,595,641,699567608,8862,0 +30124,06.+Dubaj,647,414,849060446,9735,0 +30125,Wioska+barbarzy%C5%84ska,406,415,698971484,10008,0 +30126,022+Raya+Lucaria,486,672,699834004,10104,0 +30127,KR%C3%93L+PAPI+WIELKI,637,600,698191218,9571,0 +30128,%5B326%5D+Chor%C4%85giewka+na+wietrze,595,439,848985692,10397,0 +30129,Nowy+%C5%9Bwiat+2,345,563,849084005,10178,0 +30130,003,456,329,2502956,10019,0 +30131,120...tomcz,485,331,6920960,10237,0 +30132,Pobozowisko,386,586,699513260,10838,0 +30133,Wioska+barbarzy%C5%84ska,556,335,699072129,10218,0 +30134,0010,614,611,6417987,8295,0 +30135,Monetkownia,620,616,699759128,10237,0 +30136,D%C4%85browa+0003,360,595,849096972,10083,0 +30137,Wioska+barbarzy%C5%84ska,557,664,7756002,10229,0 +30138,2.5,373,385,849095959,5171,0 +30139,%5BA%5D002,424,650,699736927,7992,0 +30140,Lord+Lord+Franek+.%23101,524,328,698420691,10160,0 +30141,040,672,516,699413040,9996,0 +30142,Wioska+Bochun10,334,460,7449254,4998,0 +30143,Jaaa,671,488,698635863,10402,0 +30144,Wioska+barbarzy%C5%84ska,597,362,849041192,3393,0 +30145,Myk+i+do+kieszonki,346,570,849012521,7406,0 +30146,Sony+911,590,649,1415009,10208,0 +30147,%5BB%5D%5B02%5D+Aragon+Ballroom,434,344,699380621,10113,0 +30148,Westfold.020,346,423,848918380,8854,0 +30149,Adasko22,631,613,2269943,4650,0 +30150,Oscar,673,507,699737356,8026,0 +30151,Jehu_Kingdom_55,648,425,8785314,7098,0 +30152,-0009-,540,333,2972329,6536,0 +30153,cz+10+4,367,389,3909522,9926,0 +30154,Architekci+Plac%C3%B3w+Boju,335,557,8004076,6775,0 +30155,Wioska+barbarzy%C5%84ska,401,360,8419570,7434,0 +30156,Wioska+barbarzy%C5%84ska,555,339,699072129,9813,0 +30157,Wyspa+006,625,381,699756210,10273,0 +30158,A003+Thais,661,448,113796,10160,0 +30159,cz+Wioska+15,367,388,3909522,4377,0 +30160,Grvvyq+118k%24,614,627,699676005,9783,0 +30161,Nowy+%C5%9Bwiat+A,341,557,849084005,2190,0 +30162,S%C5%82o%C5%84ce,546,338,699797805,3976,0 +30163,Nawet+przytulnie+tutaj,444,659,8954402,9860,0 +30164,128...centr,445,343,6920960,8591,0 +30165,Kiedy%C5%9B+Wielki+Wojownik,566,341,848915730,9976,0 +30166,012,343,571,8839171,3547,0 +30167,Szlachcic%2FTaran,639,397,699759128,8695,0 +30168,%3D057%3D+Wioska+barbarzy%C5%84ska,647,584,3781794,10580,0 +30169,Zeta+Reticuli+W,364,399,699323302,10887,0 +30170,81+.%C5%9Aroda.,521,331,2571407,2611,0 +30171,81+Wtorek,522,332,2571407,3955,0 +30172,645%7C411+Wioska+barbarzy%C5%84ska,645,411,6822957,5159,0 +30173,Wioska+barbarzy%C5%84ska,553,340,699072129,10293,0 +30174,%2A%2A41%2A%2A,664,440,849098782,9441,0 +30175,032.+Night+Raid-,477,673,699684062,10686,0 +30176,0266,538,664,698659980,10224,0 +30177,%2A%2A24%2A%2A,633,395,849098782,10878,0 +30178,Vccc-2,414,645,699736927,6922,0 +30180,A0264,329,487,8841266,10362,0 +30181,Salt+Lake+City,599,360,699491076,9755,0 +30182,KR%C3%93L+PAPI+WIELKI,638,605,698191218,10000,0 +30183,Jestem+Poza+Kontrol%C4%85,342,555,8004076,9880,0 +30184,Wioska+barbarzy%C5%84ska,552,340,699072129,10232,0 +30185,%2A007,600,640,699567608,9031,0 +30186,B+029,663,535,8078914,9296,0 +30187,Architekci+Plac%C3%B3w+Boju,339,553,8004076,9880,0 +30188,%230059+barbarzy%C5%84ska,471,329,1238300,10178,0 +30189,Gattacka,619,378,699298370,10470,0 +30190,%2A263%2A,336,445,699273451,9963,0 +30191,B+007,673,540,8078914,10189,0 +30192,Deveste+ufam+Tobie,409,642,699783765,10000,6 +30193,Grvvyq+111k%24,655,565,699676005,5488,0 +30194,Wioska+barbarzy%C5%84ska,580,649,6818593,9835,0 +30195,%2A077%2A,356,414,699273451,10211,0 +30196,Ave+Why%21,498,670,698585370,4547,0 +30197,%5B021%5D+Audi+A+szczy,662,438,849095068,9312,0 +30198,Samotna+wioska+8,355,592,698353083,9994,0 +30199,KUZYN,410,640,848913998,4097,9 +30200,-007-,539,331,698588812,3759,0 +30201,Zeta+Reticuli+W,363,397,699323302,10275,0 +30202,Wyspa+004,623,381,699756210,10273,6 +30203,%C5%81o%C5%9B+z+g%C5%82ow%C4%85+%C5%9Blimaka,373,391,848886056,6523,0 +30204,0159,556,655,698659980,10019,0 +30205,Wioska+barbarzy%C5%84ska,350,412,849096547,2174,0 +30206,008,455,334,2502956,10019,0 +30207,%230178+MiBM,488,330,1238300,8133,0 +30208,047.,389,628,2665207,6232,0 +30209,Wiocha+9,378,385,849096544,6602,0 +30210,Village,649,417,1086351,7742,0 +30211,O32+Alaska,669,523,699272880,10452,3 +30212,015%7C%7C+Ursa+Minor,496,672,849035525,10019,0 +30213,010,483,667,698650301,9583,0 +30214,Szlachcic,393,363,698160606,9997,0 +30215,...,564,339,699072129,10303,0 +30217,wokalista+zespo%C5%82u%2C%2C%2C+Leszcze,594,638,848995242,9850,0 +30218,cc+Lanckorona,391,372,3909522,9888,0 +30219,Chekku+-+meito,329,522,9280477,9976,0 +30220,010+Aberlou,557,337,699072129,5322,0 +30221,%2A%2A22%2A%2A,633,394,849098782,5634,0 +30222,Architekci+Plac%C3%B3w+Boju,337,557,8004076,7244,6 +30223,Kentin+ufam+Tobie,434,404,699783765,10000,0 +30224,03Wioska+barbarzy%C5%84ska,389,630,699704542,8497,0 +30225,1.02,337,446,3502565,8634,4 +30227,AAA,528,328,1006847,9673,0 +30228,021.,651,585,6520732,9835,0 +30229,Szulernia,390,368,7249451,9710,0 +30230,%5BB%5D_%5B036%5D+Dejv.oldplyr,421,345,699380607,10495,0 +30231,Wioska+Bochun10,336,472,7449254,7912,0 +30232,Wioska+TakiKris,386,379,8419570,9105,0 +30233,28k%24+Grvvyq,656,576,699676005,10495,0 +30234,A0045,377,473,8841266,10252,0 +30235,%C5%BBUBRAWKA+041,609,635,33900,6745,0 +30236,Kentin+ufam+Tobie,353,457,699783765,10000,0 +30237,New+World,493,673,698152377,10301,0 +30239,I%23017,618,368,2065730,9797,0 +30240,Wioska+barbarzy%C5%84ska+026,512,331,6343784,8733,0 +30241,053,532,669,2293376,9993,0 +30242,0160,548,664,698659980,10019,0 +30243,psycha+sitting,417,653,699736927,10013,0 +30244,KR%C3%93L+PAPI+WIELKI,636,600,698191218,9111,5 +30245,Wioska+barbarzy%C5%84ska,342,447,393668,8069,0 +30246,Ave+Why%21,479,672,699121671,9809,0 +30247,A0265,333,480,8841266,10252,0 +30248,V005,346,420,849097737,6376,0 +30249,0049,553,618,698659980,10083,0 +30250,Wonderwall,333,547,698962117,9515,0 +30251,Jestem+Poza+Kontrol%C4%85,343,556,8004076,9515,0 +30252,E008,661,562,8428196,6997,0 +30255,0654,566,659,698659980,9825,0 +30256,Wioska+Bochun10,325,491,7449254,10311,0 +30257,%2A005,594,645,699567608,9031,0 +30258,Taran,665,476,699598425,10728,0 +30259,Taran,672,482,699598425,10728,0 +30260,Szulernia,386,370,7249451,9630,0 +30261,Szlachcic%2FTaran,610,368,699759128,10237,0 +30262,Zeta+Reticuli+W,364,401,699323302,7200,0 +30263,117...tomcz,482,329,6920960,10311,0 +30264,ZiOm2311Gacek,442,577,849028088,10256,0 +30265,Gotha,345,438,849097716,3912,0 +30266,0247,540,662,698659980,10160,0 +30267,Wioska+barbarzy%C5%84ska,439,661,699849210,2159,0 +30268,103...tomcz,479,333,6920960,10495,0 +30269,Ave+Why%21,474,672,699121671,9809,0 +30270,008+Stromy+P%C5%82askowy%C5%BC,626,424,699429153,9899,0 +30271,%5B042%5D,644,586,698305474,7175,0 +30272,Skocz+po+Deff+do+OZDR,348,572,7333216,9711,0 +30273,Kaj+jo+je%2C+sam+ino+gorole+sa,330,466,699711723,5394,0 +30274,%230064+Saturennr,472,353,1238300,10178,0 +30275,psycha+sitting,428,655,699736927,10311,9 +30276,Wyspa+008,623,383,699756210,9655,0 +30277,Jehu_Kingdom_63,659,431,8785314,6426,0 +30280,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F4,625,618,33900,10053,0 +30281,029,631,611,699567608,9171,0 +30282,Wioska+Bochun10,327,493,7449254,10495,0 +30283,V004,350,411,849097737,6134,0 +30284,0069,417,349,699431255,7158,0 +30285,%7CC%7C+Northgarde,510,668,698147372,11321,0 +30286,Wioska+barbarzy%C5%84ska,672,468,699574408,9989,0 +30287,%23045,493,612,699605333,10393,0 +30288,Wioska+ba13,499,327,6118079,6898,0 +30289,Szlachcic,390,366,698160606,8815,0 +30291,Mosul,430,654,849089459,5403,0 +30292,%2A223%2A,380,382,699273451,6437,0 +30293,O39+Katmandu,664,545,699272880,10546,5 +30294,Wioska+barbarzy%C5%84ska,438,656,699849210,2692,0 +30295,_5_,494,333,9113064,3416,0 +30296,Bagdad,485,328,8847546,10068,0 +30297,N005,342,569,272173,3766,0 +30298,cc+Wioska+prince,396,362,3909522,3825,0 +30299,R%C4%99cznik+do+zmiany,361,405,699697558,10019,0 +30300,%23111%23,638,600,692803,9761,0 +30301,0142,631,610,698416970,9300,0 +30302,%5BB%5D_%5B005%5D+Dejv.oldplyr,429,354,699380607,10495,0 +30303,010,603,365,1018357,10019,0 +30304,81+.%3A5%3A.,522,329,2571407,4017,0 +30305,030,478,672,698650301,9887,0 +30306,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,669,698807570,7828,4 +30307,Szulernia,378,379,7249451,9625,0 +30308,Szulernia,379,379,7249451,7820,0 +30309,Grvvyq+107k%24,655,570,699676005,3749,0 +30310,Chekku+-+meito,334,522,9280477,9896,0 +30311,Wioska+005,383,388,8419570,10301,0 +30312,Chekku+-+meito,334,535,9280477,9976,0 +30314,Wioska+barbarzy%C5%84ska,575,656,6818593,9835,0 +30315,%230048+geryk,469,329,1238300,10178,0 +30316,Szlachcic,667,500,699098531,8047,0 +30317,Lord+Lord+Franek+.%23169,509,325,698420691,10160,0 +30318,Wioska+059,647,593,848971079,9761,0 +30319,%230145+Thorus5,474,331,1238300,6371,0 +30320,102.+P%C3%B3%C5%82wysep+Akara,642,598,8337151,10160,0 +30321,A-040,401,365,8419570,10332,2 +30322,Ko%C5%84sko,354,596,849014147,9064,0 +30323,SPOCENI+KUZYNI,413,647,848913998,7845,0 +30325,Wioska+klez+004,330,514,698295651,8393,0 +30326,Wyspa+017,625,380,699756210,7657,0 +30327,046,457,333,2502956,10014,0 +30328,KR%C3%93L+PAPI+WIELKI,639,601,698191218,7504,0 +30329,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F3,607,632,33900,10231,0 +30330,Wioska+Bochun10,327,495,7449254,7213,0 +30331,Chekku+-+meito,332,518,9280477,9976,0 +30332,%2ANobo,578,647,699443920,9761,0 +30333,Chekku+-+meito,331,527,9280477,8792,0 +30334,D%C4%85browa+0004,359,596,849096972,10083,0 +30335,0262,555,658,698659980,10160,0 +30336,%7C027%7C+Archangelos,506,672,699393742,9988,0 +30337,A0279,326,485,8841266,10252,0 +30338,Obrze%C5%BCa+099,553,663,848915531,5660,0 +30339,KR%C3%93L+PAPI+WIELKI,637,603,698191218,6659,0 +30340,KUZYNEIRO,407,640,848913998,9501,0 +30341,Deff+robi+brrr,346,573,7333216,9735,4 +30342,002,592,357,7340529,11824,0 +30343,226...barba,462,333,6920960,5115,0 +30344,Szulernia,388,370,7249451,9270,5 +30345,1v9+machine,386,632,699697558,10019,0 +30346,233...CENTR,461,331,6920960,4446,0 +30348,Lord+Lord+Franek+.%23129,517,329,698420691,8360,0 +30349,Ave+Why%21,491,642,698585370,9978,0 +30350,.%3A012%3A.,371,616,698908184,9717,0 +30351,Szulernia,389,370,7249451,10055,0 +30352,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F4,609,631,33900,8069,0 +30353,Darmowe+przeprowadzki,452,664,848935389,9597,0 +30354,Szulernia,383,370,7249451,9415,0 +30355,Architekci+Plac%C3%B3w+Boju,341,545,8004076,8969,0 +30356,Wioska+barbarzy%C5%84ska,347,434,849097716,3629,0 +30357,O37+Bator,664,539,699272880,10963,2 +30358,M181_006,344,426,393668,9894,0 +30359,I030,660,441,699722599,10302,0 +30360,031,605,632,849097799,7201,0 +30361,S1Joker,479,666,698585370,10962,0 +30362,Architekci+Plac%C3%B3w+Boju,334,549,8004076,9880,0 +30363,Normandiz+en,359,603,849014147,3803,0 +30364,Kentin+ufam+Tobie,335,456,699783765,10000,0 +30365,045,668,500,2135129,10444,0 +30366,Taran,666,475,699598425,10728,0 +30367,Architekci+Plac%C3%B3w+Boju,339,545,8004076,9880,0 +30368,-012-,540,331,698588812,3774,0 +30369,%7C012%7C+Zaros,498,675,698152377,9811,0 +30370,przeprawa,601,641,699567608,9200,0 +30371,%230062+barbarzy%C5%84ska,467,337,1238300,10178,0 +30372,027.,629,393,699491076,10654,0 +30373,Westfold.022,345,424,848918380,10070,0 +30374,Jaaa,673,493,698635863,10435,0 +30375,Ave+Why%21,482,672,699121671,9207,0 +30376,Wioska+barbarzy%C5%84ska,451,335,849017820,9374,0 +30377,R%C4%99cznik+do+zmiany,355,403,699697558,10019,0 +30378,Miasys+1,350,574,849090130,5461,7 +30379,Architekci+Plac%C3%B3w+Boju,340,551,8004076,9880,0 +30380,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,394,633,1434753,10068,0 +30381,%230033+GL01N,469,332,1238300,10178,0 +30382,Lord+Lord+Franek+.%23043,517,331,698420691,10498,7 +30383,Cape+Dun,342,435,849097716,11376,0 +30384,Muchomor+%2A020%2A,515,672,606407,10294,0 +30385,%2A%2A19%2A%2A,630,390,849098782,9592,0 +30386,Myk+i+do+kieszonki,367,609,9319058,10216,0 +30387,Villaggio,362,593,8607734,7484,0 +30388,Grupka+7+wiosek+7,358,604,698353083,10425,0 +30389,cycedoziemi,629,392,698281649,8500,0 +30390,%5BA%5D010,422,650,699736927,7734,0 +30391,Miasys+2,348,581,849090130,4017,0 +30392,Wioska+barbarzy%C5%84ska,439,660,699849210,1852,0 +30393,Wioska+barbarzy%C5%84ska,346,442,393668,6082,0 +30394,Bagienko.Anker...,371,388,699713515,6392,0 +30395,nowa,600,361,1990750,6742,0 +30396,DejMon3,371,619,699805839,8989,0 +30397,Gra+o+Tron,620,627,8815749,10019,0 +30398,54.+KaruTown,656,427,849060446,9692,0 +30400,Wioska+Bochun10,334,465,7449254,9091,0 +30401,Wioska+Bochun10,334,469,7449254,7352,0 +30404,North+FiFa+1,436,342,699796330,10311,0 +30405,Wioska+ba22,500,331,6118079,8136,0 +30406,Deveste+ufam+Tobie,398,640,699783765,10000,0 +30407,Gamma,624,382,848924219,4126,0 +30408,%7C013%7C+Jerapetra,492,669,699393742,10063,0 +30409,KR%C3%93L+PAPI+WIELKI,632,611,698191218,8914,0 +30410,011,457,334,2502956,10019,0 +30411,-003-,540,332,698588812,8349,7 +30412,Wioska+barbarzy%C5%84ska,505,331,698739350,3114,0 +30413,O24+Puebla,669,534,699272880,10006,0 +30414,Szlachcic%2FTaran,615,368,699759128,10237,0 +30415,094...bar,442,335,6920960,10352,0 +30416,%5BB%5D_%5B009%5D+Dejv.oldplyr,428,345,699380607,10444,0 +30417,005+Kocz,670,469,2135129,9553,8 +30418,Chiado,350,587,699494480,7159,0 +30419,%2A237%2A,335,444,699273451,9749,0 +30420,Szlachcic,393,364,698160606,9952,0 +30421,Lord+Lord+Franek+.%23130,518,328,698420691,7841,0 +30422,022+To+nie+s%C4%85+tanie+rzeczy,386,626,6354098,10140,0 +30423,%7CC%7C+Scorchhallow,502,669,698147372,10495,0 +30424,RUCH,333,505,849097614,10079,0 +30425,Wioska+Bochun10,327,477,7449254,9424,0 +30426,Bagienko.Anker...,378,383,699713515,7260,0 +30427,Bagienko.Anker...,375,386,699713515,2988,0 +30428,Daruj+sobie,647,408,1086351,3589,0 +30429,%230173+Asmo17,485,332,1238300,8307,0 +30430,008+Thriller,387,624,8268010,9835,0 +30431,056,668,513,698999105,10032,0 +30433,Wioska+2,504,325,698680806,7574,0 +30434,Wioska+barbarzy%C5%84ska,390,515,698290577,5707,0 +30435,wie%C5%9B+3,345,428,393668,9885,0 +30436,Wioska+ba16,495,325,698239813,8061,0 +30437,Lord+Lord+Franek+.%23170,512,332,698420691,10141,0 +30438,A+004,370,617,699342219,10452,0 +30439,Ob+Konfederacja,432,336,848915730,9682,0 +30440,Wioska+Bochun10,332,478,7449254,3779,0 +30441,North+Suwa%C5%82ki,433,336,699796330,9980,0 +30443,%2A004,594,644,699567608,9031,0 +30444,%2A021,597,637,699567608,9704,0 +30445,%230171+Asmo17,486,328,1238300,9548,0 +30446,The+Game+Has+Only+Just+Begun,355,535,9280477,9976,0 +30447,%23106+C,529,669,9037756,7994,0 +30448,kto+ananasowy+pod+wod%C4%85+ma+dom,669,538,699628084,9664,0 +30449,Gattacka,619,376,699298370,10146,4 +30450,Piek%C5%82o+to+inni,588,352,848956765,9761,0 +30451,SPOCENI+KUZYNI,415,647,848913998,8806,0 +30452,Wioska+Bochun10,334,471,7449254,10311,0 +30453,Wioska+barbarzy%C5%84ska,346,581,6180190,2407,0 +30455,Lord+Lord+Franek+.%23095,510,326,698420691,9956,0 +30456,Taki+Pan,514,333,698739350,6428,0 +30457,O55+Orzammar,673,530,699272880,10132,0 +30458,Mashhad,431,659,849089459,9825,0 +30459,Wioska+barbarzy%C5%84ska,343,444,393668,6744,0 +30460,Szulernia,390,370,7249451,9919,0 +30461,024,629,609,699567608,9849,0 +30462,Pf+Konfederacja,489,505,848915730,9938,0 +30463,off+100+%25,343,575,849012521,9581,0 +30464,M181_046,339,434,393668,9902,0 +30465,052,448,650,849084985,10311,0 +30466,001+Wioska+Mia%C5%82a+By%C4%87+Pusta,381,627,6354098,9953,0 +30467,0590,550,659,698659980,8667,0 +30468,A0285,328,483,8841266,10252,0 +30469,%5BB%5D%5B05%5D+Ashbarys,428,347,699380621,10311,0 +30470,%7E%7E092%7E%7E,632,616,699567608,10066,9 +30471,Wrath+003,572,343,699756210,10273,0 +30472,%2A009,600,643,699567608,8869,0 +30473,Zeta+Reticuli+W,361,399,699323302,7564,0 +30474,Monetkownia,619,620,699759128,10087,0 +30475,Monetkownia,622,624,699759128,10237,0 +30476,Grupka+7+wiosek+7%2B,359,601,698353083,9876,0 +30477,013+Akoooord%21,377,624,6354098,10143,0 +30478,berkuza,587,356,7340529,11130,0 +30479,Taran,342,573,6180190,9956,0 +30480,pusta,494,331,8847546,10044,0 +30481,A23,475,666,698652014,11321,0 +30482,Horyzont+zdarze%C5%84,524,672,7581876,9835,3 +30483,tego+nie,528,671,699494488,10481,0 +30484,Dajanka+32,350,575,849012843,1262,0 +30485,Gattacka,619,375,699298370,10001,0 +30486,Kreskowo_5,591,649,699567608,8174,0 +30487,%23011%23,629,616,692803,9761,0 +30488,%2A%2A16%2A%2A,635,388,849098782,9915,0 +30489,043,670,514,699413040,8964,0 +30490,Wioska+Bochun10,335,468,7449254,9668,0 +30491,B+028,670,531,8078914,9545,0 +30492,Chekku+-+meito,332,527,9280477,10495,0 +30493,Graca,349,587,699494480,9412,0 +30495,tarka,497,325,6118079,7364,0 +30496,0525,534,666,698659980,9710,0 +30497,O42+Georgia,668,524,699272880,8583,0 +30498,Jestem+Poza+Kontrol%C4%85,342,556,8004076,8988,0 +30499,Wioska+barbarzy%C5%84ska,550,336,699066118,4780,0 +30500,Jednak+wol%C4%99+gofry,425,645,699736927,8514,0 +30501,D%C4%85browa+0007,359,600,849096972,10019,0 +30502,A18,467,668,698652014,11188,0 +30503,Chekku+-+meito,328,528,9280477,9976,0 +30504,Pobozowisko,381,621,699513260,7550,0 +30505,030,601,638,849097799,7397,0 +30506,Szulernia,383,380,7249451,10158,0 +30507,64k%24+Grvvyq,659,569,699676005,8886,0 +30508,Kholinar,667,470,699574408,10336,0 +30510,%2A247%2A,333,452,699273451,9963,0 +30511,%2A241%2A,336,443,699273451,10158,0 +30512,Szlachcic,396,359,3484132,9640,0 +30513,0299,539,663,698659980,10019,0 +30514,0433,558,659,698659980,10019,0 +30515,Warzywniak+012,447,545,698290577,1319,0 +30516,Dewej+ta+frela+bo+ci+ciulna,328,466,699711723,4004,0 +30517,015,610,635,849097799,8246,0 +30518,N004,341,566,272173,3950,0 +30520,006,365,608,699083129,9022,0 +30522,Szlachcic%2FTaran,611,365,699759128,10237,0 +30523,Westfold.011,345,418,848918380,10178,0 +30524,xvc,653,572,699845400,5585,0 +30525,Zeta+Reticuli+W,369,391,699323302,4524,0 +30526,0166,553,659,698659980,10362,0 +30527,A25+Night+Raid-,475,667,698652014,10019,0 +30528,01.+Na+%C5%9Ar%C3%B3dce+znow+wypadek,507,667,849092769,9710,0 +30529,Szlachcic,392,364,698160606,10365,0 +30530,psycha+sitting,424,657,699736927,10311,0 +30531,deff+100%25,348,586,849012521,5382,0 +30532,D.008,404,645,849088243,8831,0 +30533,Jaaa,668,490,698635863,9457,0 +30534,Westfold.018,347,422,848918380,9815,0 +30535,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,377,616,849097937,9361,0 +30536,Roger,674,501,699737356,9531,0 +30537,M181_037,346,426,393668,9755,0 +30538,R%C4%99cznik+do+zmiany,353,406,699697558,10019,0 +30539,Y+%7C+Forest+Cyaaaanku,326,500,699213622,10000,0 +30540,D%C4%85browa+0013,359,590,849096972,8373,0 +30541,Szulernia,387,370,7249451,8977,7 +30542,BAC%C3%93WKA+%7C011%7C,615,404,7394371,12154,0 +30543,041,674,516,699413040,11583,0 +30544,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,618,1434753,9792,0 +30545,Wioska+barbarzy%C5%84ska,447,336,699308637,8424,0 +30546,Szlachcic%2FTaran,633,392,699759128,10237,0 +30547,Laguna+Niguel,616,624,848932879,10838,0 +30548,1.012,337,447,3502565,9285,0 +30550,012,522,671,2293376,9993,0 +30551,042,579,400,7271812,10495,0 +30552,Gattacka,618,375,699298370,9466,0 +30553,80.+KaruTown,661,432,849060446,9735,0 +30554,%23199+C,530,671,9037756,10495,0 +30555,Wioska+kr%C3%B3lowej,512,667,849096977,3842,0 +30557,047,671,512,699413040,7677,0 +30558,0pe%C5%82nalod%C3%B3wka,470,512,699189792,4542,0 +30559,S1Joker,480,667,698585370,11297,0 +30560,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,666,698807570,9642,0 +30561,Architekci+Plac%C3%B3w+Boju,338,551,8004076,9880,0 +30563,Sk_009,442,660,8954402,6571,0 +30564,Wioska+barbarzy%C5%84ska,366,387,0,2949,3 +30565,.%3A013%3A.,363,606,7417116,12154,0 +30566,029,603,639,849097799,7509,0 +30567,1v9+machine,387,632,699697558,10019,9 +30568,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,669,698807570,5540,0 +30569,-001-+H%C4%99%3F,541,332,698588812,9114,0 +30570,Wioska+barbarzy%C5%84ska,421,652,699736927,5616,0 +30571,Wioska+118,674,523,848971079,9761,3 +30572,0572,567,659,698659980,10083,0 +30573,D%C5%BCokej77,444,660,8954402,8055,0 +30574,O50+Apatin,663,540,699272880,8875,0 +30575,1.07,337,453,3502565,4678,0 +30576,Chekku+-+meito,331,534,9280477,9976,0 +30577,Wioska+klez+011,326,520,698295651,6626,0 +30578,%230184+MiBM,489,329,1238300,6518,0 +30579,0027,415,354,699431255,9957,0 +30580,poludnie1,598,644,699567608,9701,8 +30581,%5BB%5D_%5B006%5D+Dejv.oldplyr,413,351,699380607,10495,0 +30582,NoeyPL+3,334,557,849000135,1857,0 +30583,0539,565,655,698659980,7412,0 +30584,Mniejsze+z%C5%82o+0086,335,539,699794765,4212,0 +30585,Tokio,655,566,849070946,3511,0 +30586,056+komornicy,332,544,699510259,7266,0 +30587,A005+Legionas+Racuchy,667,454,113796,10160,0 +30588,%2A058,604,642,699567608,10001,0 +30589,SOKzGUMIjag%C3%B3d,594,352,849059491,10026,4 +30590,C0135,331,520,8841266,10252,0 +30591,Szcz%C4%99%C5%9Bliwego+Nowego+Roku,626,380,699088769,6322,0 +30592,045,665,548,849095227,9281,0 +30593,%25+6+%25+SOPLICA,586,656,699567608,9628,0 +30594,ADEN,572,348,698588535,10053,0 +30595,0291,565,660,698659980,9663,0 +30596,scofield,524,669,699494488,9978,0 +30598,greeece3,636,397,698290319,10247,0 +30599,R%C4%99cznik+do+zmiany,356,404,699697558,10019,0 +30601,Myk+i+do+kieszonki,364,610,9319058,8813,0 +30602,107,620,373,7085502,7328,0 +30603,%23102+C,530,668,9037756,10311,0 +30604,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,667,698807570,5038,0 +30605,Shinso,342,440,699800377,2362,0 +30606,Taran,672,484,699598425,10728,0 +30607,Lord+Lord+Franek+.%23098,509,326,698420691,9960,0 +30608,D.018,404,647,849088243,4753,0 +30609,Taran+017,608,366,699098531,9961,0 +30610,Monetkownia,620,625,699759128,10237,0 +30611,%2A236%2A,336,444,699273451,10211,0 +30612,061,525,670,2293376,9129,0 +30613,Zr%C4%85b+%236,349,424,393668,4054,0 +30614,%7C018%7C+Aija+Rumeli,496,671,699393742,9879,0 +30615,021+echo,655,430,9238175,10446,5 +30616,psycha+sitting,427,658,699736927,5736,0 +30617,off+100+%25,343,576,849012521,7933,0 +30618,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,385,627,1434753,10068,0 +30619,fff,485,324,698239813,10495,0 +30620,018+Waldemar+Etykietyyyy%21,376,624,6354098,9589,0 +30621,%7CC%7C+Grassfrost.,504,672,698147372,10495,0 +30622,%7CC%7C+Oldfort,501,672,698147372,5207,0 +30623,E001,659,558,8428196,9957,0 +30624,036+...+i+zami%C5%82owanie,661,450,699272633,5758,0 +30625,011,363,604,699083129,9516,0 +30626,Ciapek+97,344,436,1746216,6004,0 +30627,%230181+MiBM,490,330,1238300,6698,0 +30628,Szlachcic%2FTaran,610,371,699759128,10237,0 +30629,03Wioska+barbarzy%C5%84ska,390,635,699704542,9225,0 +30630,0014,435,655,849097175,1924,0 +30631,Architekci+Plac%C3%B3w+Boju,337,565,8004076,9430,0 +30633,Amsterdam,667,499,699737356,8774,0 +30634,88k%24+Grvvyq,655,578,699676005,7465,0 +30635,D%C4%85browa+0010,358,596,849096972,9504,0 +30636,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,664,698807570,6508,0 +30637,Wioska+107,639,603,848971079,9761,0 +30638,Wioska+RATRYK,595,647,699567608,10063,0 +30639,D07,667,550,848995478,8555,0 +30640,Chekku+-+meito,329,527,9280477,9976,0 +30641,Szulernia,400,358,7249451,10080,0 +30642,0253,553,666,698659980,10040,0 +30643,I001,666,449,699722599,10495,9 +30644,034,494,617,699878511,10232,0 +30645,Wioska+057,648,591,848971079,9761,0 +30646,052+%7C+PALESTINA,617,439,9228039,9544,0 +30647,Plotka,330,543,699265922,8545,0 +30648,Lord+Lord+Franek+.%23131,512,326,698420691,7579,0 +30649,Sk_010,440,659,8954402,4265,0 +30650,Ob+Konfederacja,442,337,848915730,5636,0 +30651,008,535,672,2293376,9993,0 +30652,B+005,670,538,8078914,10083,0 +30653,Y+%7C+Forest+Cyaaaanku,326,503,699213622,10000,0 +30654,%2A201%2A,353,409,699273451,10301,0 +30655,0020,412,357,699431255,9947,0 +30656,WARSZAWA,348,423,849097681,5029,0 +30657,Robi+wra%C5%BCenie...,584,654,848995242,10236,0 +30658,North+Barba+056,395,363,699796330,2904,0 +30659,Deveste+ufam+Tobie,393,637,699783765,10000,0 +30660,K34+x015,407,356,698364331,9603,0 +30661,033.+Night+Raid-,476,672,699684062,10909,0 +30662,060+Wioska+006,659,430,9238175,10311,0 +30663,0077,639,600,698416970,9821,0 +30664,Bagdad,490,325,8847546,10068,3 +30665,K34+x029,401,356,698364331,4683,0 +30666,Gattacka,621,375,699298370,9422,0 +30667,Wioska+barbarzy%C5%84ska,450,332,849017820,6386,0 +30668,O36+Irkuck,672,531,699272880,10971,1 +30669,Szlachcic%2FTaran,631,394,699759128,10237,0 +30670,Architekci+Plac%C3%B3w+Boju,337,538,8004076,9523,0 +30671,T.M,651,406,1086351,7230,0 +30672,.%3A007%3A.,373,612,7417116,11824,0 +30673,%2A127%2A,363,391,699273451,10104,0 +30674,Wioska,329,457,848946608,6644,0 +30675,Wioska+barbarzy%C5%84ska,668,478,699598425,10728,0 +30676,%2A218%2A,379,380,699273451,6658,0 +30677,Wioska,500,324,951823,8723,0 +30678,Wioska+barbarzy%C5%84ska,345,584,849046232,6284,0 +30679,Monrera,342,438,849097716,5616,0 +30681,Wioska+barbarzy%C5%84ska,343,430,393668,2056,0 +30683,%C5%BBUBRAWKA+A003+NeXi,607,610,33900,9613,0 +30684,Wioska+barbarzy%C5%84ska,672,473,699574408,8029,0 +30685,Mars,552,338,699797805,3775,0 +30686,018+Schwere+Panzer-Abteilung+501,601,361,849091899,7371,0 +30687,deff+100+%25,347,574,849012521,5321,0 +30688,Wioska+barbarzy%C5%84ska,556,663,7756002,10057,0 +30689,0032+MzM,630,610,698416970,9258,6 +30690,Architekci+Plac%C3%B3w+Boju,335,552,8004076,8731,0 +30691,Zeta+Reticuli+W,359,404,699323302,6321,0 +30692,%5B019%5D+Skoda+Ka%C5%82szkaj,664,438,849095068,9312,0 +30693,%230196+Segadorr+dar,460,329,1238300,10178,0 +30694,Orze%C5%82+Wyl%C4%85dowa%C5%82,462,667,698807570,7866,0 +30695,Wioska+barbarzy%C5%84ska,558,338,699072129,10218,0 +30696,SPOCENI+KUZYNI,415,650,848913998,10311,4 +30697,Deveste+ufam+Tobie,396,638,699783765,10143,0 +30698,I040,665,455,699722599,9976,0 +30699,Wioska+Szwonik,586,649,848995242,1716,0 +30700,Architekci+Plac%C3%B3w+Boju,333,554,8004076,9233,0 +30701,061...SKRZYP+PO%C5%81UDNIE,439,343,6920960,10495,2 +30702,%230019,545,627,1536231,10495,0 +30703,0249,551,666,698659980,8430,0 +30704,Stanly,606,638,699567608,9959,0 +30705,Cais+do+Sodre,351,588,699494480,9619,0 +30706,%5B08%5D,428,660,699698079,6093,0 +30707,0032,604,629,699432672,10495,0 +30708,045+%7C+PALESTINA,656,419,9228039,9544,0 +30710,012+Jaaaadu+Jaduuuu,377,626,6354098,10144,0 +30711,%25+8+%25,590,650,699567608,9032,0 +30712,43k%24+Grvvyq,650,578,699676005,9897,0 +30713,POMIDOR,663,472,699598425,10728,0 +30714,Szulernia,381,372,7249451,5333,0 +30715,Piwna+22,649,416,699812007,5635,0 +30716,wie%C5%9B3,591,352,7340529,8417,0 +30717,Muchomor+%2A015%2A,515,673,606407,10306,0 +30718,Wioska+r+12,553,668,848915531,6909,0 +30719,Pobozowisko,377,614,699513260,10287,0 +30721,018,605,635,849097799,8066,0 +30722,34.+KaruTown,642,410,6822957,7295,0 +30723,%25+7+%25,579,656,699567608,9105,0 +30724,005.+Barry,480,669,848999671,9530,0 +30725,%7CC%7C+Knightwater,502,671,698147372,10495,0 +30726,J005.,365,602,849090130,10252,0 +30727,Szulernia,387,368,7249451,9280,0 +30728,051+Wioska,660,429,9238175,10042,0 +30729,028+%2A+Lady+Porto+%2A,643,398,699406750,6040,0 +30730,Wioska+barbarzy%C5%84ska,505,673,699781762,10160,0 +30731,D01,666,555,848995478,9871,0 +30732,Z%7C012%7C+Mordor,469,671,699393742,10160,4 +30733,Szlachcic%2FTaran,615,369,699759128,10237,0 +30734,1.06,337,448,3502565,6588,0 +30735,16k%24+Grvvyq,654,579,699676005,10495,5 +30737,Qmple,566,566,699785935,10311,0 +30738,Bagdad,488,333,8847546,10068,2 +30739,%2A053,571,658,699567608,9770,0 +30740,Architekci+Plac%C3%B3w+Boju,335,559,8004076,5728,0 +30741,Pretoria+2,555,333,699072129,10228,0 +30742,04.+Stadion+Miejski,495,669,849092769,7785,0 +30744,Sekou,672,508,699737356,10224,0 +30745,028+%C5%BBelazko,674,499,2135129,9553,3 +30746,Szulernia,391,368,7249451,9054,0 +30747,Chekku+-+meito,330,518,9280477,9976,0 +30748,006+nazwa,362,602,8607734,10019,2 +30749,203,583,377,849064752,10503,0 +30750,Wioska+VEGE+3,659,563,87575,4680,0 +30752,2%3A0,420,651,699736927,5246,0 +30754,cz+Wioska+77,369,384,3909522,5529,0 +30755,%230057+barbarzy%C5%84ska,468,332,1238300,10178,0 +30756,0655,531,665,698659980,10160,0 +30757,M181_008,338,435,393668,9908,0 +30758,_PUSTA,649,590,698768565,7732,0 +30760,Wioska+05,499,325,951823,5340,0 +30761,%2A030,604,641,699567608,9711,0 +30762,003,673,496,699737356,6984,0 +30763,012+-+Mroczna+Osada,653,424,849035905,10705,0 +30764,Psycha+Siada,453,666,698807570,10083,0 +30765,Chekku+-+meito,333,524,9280477,9976,0 +30766,Architekci+Plac%C3%B3w+Boju,336,544,8004076,9139,0 +30767,Wioska+barbarzy%C5%84ska,376,378,699711706,3620,0 +30768,M181_009,338,436,393668,9912,9 +30769,.%3A016%3A.+kr,632,387,849098782,10535,0 +30770,Wioska+128,635,609,848971079,7557,0 +30771,%2A125%2A,361,392,699273451,10211,0 +30772,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,667,698807570,7155,0 +30773,Bagienko.Anker...,375,387,699713515,5991,0 +30774,KR%C3%93L+PAPI+WIELKI,637,606,698191218,10000,0 +30775,Pobozowisko,373,616,699513260,12154,0 +30776,005+-+Mroczna+Osada,644,410,849035905,11550,0 +30778,Szulernia,388,367,7249451,11137,0 +30779,043,527,671,2293376,9993,0 +30781,Gattacka,622,373,699298370,10470,0 +30782,Zeta+Reticuli+W,357,399,699323302,4157,0 +30784,SPOCENI+KUZYNI,415,651,848913998,6643,0 +30785,003,532,673,2293376,9993,0 +30786,Lord+Lord+Franek+.%23085,518,325,698420691,12154,0 +30787,-0005-,542,334,2972329,8638,0 +30788,Wioska+barbarzy%C5%84ska,504,676,699781762,10024,0 +30789,47k%24+Grvvyq,656,578,699676005,10102,0 +30790,Vengard,344,437,849097716,10958,0 +30791,Kentin+ufam+Tobie,329,462,699783765,10000,0 +30792,I044,667,461,699722599,10297,0 +30793,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,668,698807570,8441,0 +30794,C0277,327,506,8841266,10191,9 +30795,018,564,638,699828685,9976,0 +30796,Ob+Konfederacja,439,336,848915730,8828,0 +30797,Wioska+barbarzy%C5%84ska,348,426,393668,8086,0 +30798,Architekci+Plac%C3%B3w+Boju,336,562,8004076,9880,0 +30799,Wioska+barbarzy%C5%84ska,502,676,699781762,10394,0 +30801,Leszcz,333,549,699265922,10495,0 +30802,0004.+HMS+Charles+%281668%29,483,674,699121671,9730,0 +30803,Barcelona,672,497,699737356,7897,0 +30804,Orze%C5%82+Wyl%C4%85dowa%C5%82,457,665,698807570,10252,1 +30805,Ave+Why%21,483,670,699121671,7196,0 +30806,Wioska+barbarzy%C5%84ska,671,479,699598425,10728,0 +30807,007+Wioska+barbarzy%C5%84ska,383,626,6354098,10063,0 +30808,Wioska+barbarzy%C5%84ska,451,334,699393759,9472,0 +30809,R+017+%7EBia%C5%82a+Gra%C5%84%7E,483,677,699195358,10019,0 +30810,Wioska+barbarzy%C5%84ska,329,494,699823490,4035,0 +30811,006,669,493,7085502,9721,3 +30812,M181_001,342,432,393668,9902,0 +30813,%2A%2A21%2A%2A,633,393,849098782,10437,0 +30814,107...tomcz,476,331,6920960,10239,0 +30815,085...TOM+D----------,476,338,6920960,10590,0 +30816,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F2,623,617,33900,10251,0 +30817,B+001,668,533,8078914,9942,4 +30818,%23053.,663,434,556154,7349,0 +30819,Dejmon7,372,622,699805839,5224,0 +30820,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,372,615,849097937,9885,0 +30821,002+Wioska+barbarzy%C5%84ska,382,627,6354098,9806,0 +30822,0100,413,347,699431255,4588,0 +30823,Myk+i+do+kieszonki,369,608,9319058,10401,0 +30824,KR%C3%93L+PAPI+WIELKI,635,607,698191218,10000,0 +30825,%7C011%7C+Agios+Nikolaos,499,676,699393742,9975,0 +30826,%5BB%5D_%5B037%5D+Dejv.oldplyr,420,343,699380607,6514,0 +30827,Wioska+barbarzy%C5%84ska,399,364,8419570,8723,0 +30828,009+Barbara,673,497,2135129,9500,0 +30829,Wioska+barbarzy%C5%84ska,555,662,7756002,9918,0 +30830,105.+Wyspy+Okr%C4%85g%C5%82e,642,593,8337151,7552,0 +30831,kto+ananasowy+pod+wod%C4%85+ma+dom,671,535,699628084,9861,0 +30832,Jaaa,569,561,698635863,10495,0 +30833,Wioska+III,584,347,698200480,5556,0 +30834,005,667,548,6929240,1789,0 +30835,Piek%C5%82o+to+inni,599,359,848956765,10235,0 +30836,Wioska+barbarzy%C5%84ska+025,504,329,6343784,8674,0 +30837,wioska,607,366,848915730,1570,0 +30838,Darma+dla+zawodnika,527,672,699494488,10311,0 +30839,29.+Pod+chat%C4%85,356,590,8665783,7921,0 +30840,New+World,494,673,698152377,9835,0 +30841,Wioska+barbarzy%C5%84ska,507,673,699781762,9635,0 +30842,D+021,671,509,8078914,10083,0 +30843,Ave+Why%21,494,669,698585370,6036,0 +30844,Muchomor+%2A021%2A,523,674,606407,10291,0 +30845,%7C031%7C+Kiotari,497,670,699393742,10107,0 +30846,WB+06,638,607,2269943,8455,0 +30847,DMN+004,649,421,698998882,5877,0 +30848,V001,350,421,849097737,10218,0 +30849,Jehu_Kingdom_48,655,433,8785314,6508,0 +30850,019,602,637,849097799,7824,5 +30851,Springfield%2C+Massachusetts,600,357,849061374,10214,0 +30853,Mniejsze+z%C5%82o+0069,331,538,699794765,7178,0 +30854,123...tomcz,477,332,6920960,10495,0 +30855,J002.,364,601,849090130,8991,0 +30856,%230170+Kamil0ss1,489,325,1238300,10178,0 +30857,A0266,327,487,8841266,10252,0 +30858,Weso%C5%82ych+%C5%9Awi%C4%85t,592,355,848915730,6876,0 +30859,Taran,673,485,699598425,10728,0 +30860,Sierra,675,498,699737356,9469,0 +30861,Wioska+Bochun10,335,459,7449254,4511,0 +30862,kto+ananasowy+pod+wod%C4%85+ma+dom,670,535,699628084,9689,0 +30863,SOKzGUMIjag%C3%B3d,596,358,849059491,5219,0 +30864,Bagdad,484,328,8847546,10068,0 +30865,Zeta+Reticuli+W,362,395,699323302,8804,0 +30866,0439,539,672,698659980,10362,0 +30867,A031+Wioska+2,659,445,113796,10141,0 +30868,.051.,501,381,698489071,10316,0 +30869,New+World,492,674,698152377,9899,0 +30870,Chekku+-+meito,326,527,9280477,9976,0 +30871,010+Welen.V2,464,668,699834004,9426,0 +30872,034,632,552,849095227,9761,0 +30873,%230183+MiBM,488,326,1238300,6492,0 +30874,056+Goku,641,596,699272880,9578,0 +30875,-0012-,545,332,2972329,3971,0 +30876,%246.000+Grvvyq,656,577,699676005,10495,0 +30877,Po+%C5%9Bwi%C4%99tach,606,365,848915730,10400,0 +30878,025.+Night+Raid-,472,672,699684062,9976,6 +30879,Westfold.002,346,415,848918380,10178,0 +30880,Szulernia,386,368,7249451,9691,0 +30881,Echo,676,505,699737356,9614,2 +30882,Wioska+barbarzy%C5%84ska,513,332,698739350,5319,0 +30883,Szlachcic,389,365,698160606,9963,0 +30884,023+To+Ty+nic+nie+umiesz%3F,383,630,6354098,10143,0 +30885,Wioska+070,646,592,848971079,9761,0 +30886,deff+100+%25,343,577,849012521,10243,1 +30887,Chekku+-+meito,343,528,9280477,9976,0 +30888,Wioska+barbarzy%C5%84ska,519,325,698350371,8106,0 +30889,009,606,641,849097799,8286,0 +30890,041,448,336,2502956,10019,0 +30891,027,609,634,849097799,7419,0 +30892,E003,658,558,8428196,9753,0 +30893,Wioska+Bochun10,326,472,7449254,10311,0 +30894,Bukowy+Las,652,586,849039310,7289,0 +30895,012,608,643,849097799,8213,0 +30896,Wioska+barbarzy%C5%84ska,451,332,699191455,4701,0 +30897,Wioska+barbarzy%C5%84ska,508,328,698680806,3567,0 +30898,Bagienko.Anker...,372,387,699713515,8550,0 +30899,Klan+M%C5%82ota,343,437,849097716,7140,0 +30900,118...tomcz,479,332,6920960,10478,0 +30901,D16,666,543,848995478,4510,0 +30903,Wioska,333,457,848946608,2586,0 +30904,006+Schwere+Panzer-Abteilung+507,605,363,849091899,9440,0 +30905,Ave+Why%21,484,670,699121671,9809,0 +30906,Myk+i+do+kieszonki,342,568,7333216,9711,0 +30907,Wioska+barbarzy%C5%84ska,427,625,6910361,1931,0 +30908,%5BB%5D_%5B010%5D+Dejv.oldplyr,421,346,699380607,10495,0 +30909,1v9+machine,389,636,699697558,10019,0 +30910,Ulu-mulu,433,615,699697558,9217,0 +30911,Wioska+barbarzy%C5%84ska,674,482,699598425,10728,0 +30912,BEZDZIETNY+KAWALER,418,625,848913998,5922,0 +30913,03Wioska+barbarzy%C5%84ska,390,632,699704542,8653,0 +30914,0183,549,655,698659980,10252,0 +30915,O58+Halland,668,547,699272880,8776,0 +30916,R%C4%99cznik+do+zmiany,356,405,699697558,10019,0 +30917,104...tommcz,476,330,6920960,10336,0 +30918,%230103+tomek791103,479,328,1238300,10178,2 +30919,FLAGI,324,482,699780873,6192,0 +30920,0100,548,667,698659980,10160,0 +30921,Coimbra,354,592,699494480,7149,0 +30922,J%23025,576,343,2065730,10273,0 +30923,%5B039%5D,650,590,698305474,9111,0 +30925,Centrum+6,649,411,1086351,3971,0 +30926,Deveste+ufam+Tobie,404,643,699783765,10000,4 +30927,%2A054,583,654,699567608,9369,0 +30928,Wioska+001,674,528,2999957,9520,0 +30929,69k%24+Grvvyq,640,570,699676005,10495,0 +30930,A0267,330,477,8841266,10252,0 +30931,Taran,678,493,699598425,10728,0 +30932,Braga,342,436,849097716,6942,0 +30933,002.,578,658,1270916,9045,0 +30934,036,516,668,8954402,5843,0 +30935,027.Barbara11,331,501,1830149,4459,0 +30936,%2A5614%2A+Nowy+Targ,660,566,7973893,10287,0 +30937,Y+%7C+Forest+Cyaaaanku,325,507,699213622,6338,0 +30938,emoriar,666,442,699574408,6745,0 +30939,08+Rivendell,434,664,699736927,8484,0 +30940,%5BB%5D_%5B015%5D+Dejv.oldplyr,428,348,699380607,10495,0 +30941,Wioska+Bochun10,327,471,7449254,10311,0 +30942,Jednak+wol%C4%99+gofry,420,653,699736927,9562,0 +30943,Wioska+barbarzy%C5%84ska,448,339,699308637,6820,0 +30944,%23067%23,624,624,692803,9761,0 +30945,SPOCENI+KUZYNI,410,648,848913998,5021,0 +30946,Wioska+barbarzy%C5%84ska,575,657,6818593,9835,0 +30947,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,377,620,1434753,10068,2 +30948,Architekci+Plac%C3%B3w+Boju,337,556,8004076,4710,0 +30949,AAA,535,328,1006847,7071,0 +30950,Wioska+barbarzy%C5%84ska,662,445,113796,2975,0 +30951,%7C062%7C+Osiedle+Zielone,513,682,699781762,8878,0 +30952,661%7C559+Wioska+barbarzy%C5%84ska,661,559,6822957,7710,0 +30953,095.+Kanaza,618,480,8337151,12154,0 +30954,129...OPELU,442,333,6920960,9693,0 +30955,Gattacka,620,381,699298370,9372,0 +30956,A+011,369,615,699342219,5982,0 +30957,Grupka+7+wiosek+3,355,598,698353083,8298,0 +30958,Szlachcic%2FTaran,640,398,699759128,9935,0 +30959,Wioska+barbarzy%C5%84ska,449,331,699191455,9132,0 +30960,009+-+Mroczna+Osada,646,407,849035905,11130,0 +30961,Wioska+Westor,358,395,699530673,6049,0 +30962,Wioska+barbarzy%C5%84ska,514,328,698350371,4892,0 +30963,Szlachcic,593,500,699759128,9934,0 +30964,Architekci+Plac%C3%B3w+Boju,336,557,8004076,5103,0 +30965,039,671,515,699413040,10442,0 +30966,I049,657,436,699722599,9998,0 +30967,B03,490,676,8954402,9596,0 +30968,O01+Dunharrow,667,520,699272880,10671,0 +30969,Wioska+barbarzy%C5%84ska,506,676,699781762,10057,0 +30971,Wioska+klez+001,329,512,698295651,9701,0 +30973,027%7C%7C+Lynx,498,672,849035525,10019,0 +30974,Minas,675,494,699737356,8715,0 +30975,074,662,562,849095227,8457,0 +30977,I007,665,447,699722599,10141,0 +30978,Wioska+Bochun10,331,490,7449254,7524,0 +30979,0295,569,657,698659980,9115,0 +30980,038,669,514,699413040,9860,0 +30981,%7C007%7C+Balos,482,670,699393742,10063,0 +30982,D04+orze%C5%82+nie+wyl%C4%85duje+tu.,459,667,849037407,8103,0 +30983,25k%24+Grvvyq,663,566,699676005,10495,0 +30984,A10,468,670,698652014,5275,0 +30985,049,676,515,699413040,9948,0 +30986,Wioska+051,644,596,848971079,9761,0 +30987,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F3,625,616,33900,10311,0 +30988,Myk+i+do+kieszonki,343,567,9319058,9799,0 +30989,Deveste+ufam+Tobie,395,638,699783765,7515,0 +30990,Deveste+ufam+Tobie,399,644,699783765,10000,9 +30991,%21%2135+59+xyx,598,354,698361257,10093,0 +30992,%23Yamiiiii,434,660,699849210,4405,0 +30993,Wioska+barbarzy%C5%84ska,503,675,699781762,10029,0 +30994,Centrum+5,649,408,1086351,5496,0 +30995,060...Skrzyp+Centr,445,339,6920960,10728,0 +30996,08.+Vengerberg,330,456,848910122,955,0 +30997,%2A251%2A,336,446,699273451,6115,0 +30998,%5B023%5D+Wioska+barbarzy%C5%84ska,660,439,849095068,9312,0 +30999,Napewno+to+nie+jest+off,485,397,848912265,10495,0 +31000,Pobozowisko,373,619,699513260,11321,0 +31002,Muchomor+%2A016%2A,517,671,606407,10292,0 +31003,Szulernia,381,371,7249451,10048,0 +31004,Surprise%2C+Arizona,600,360,1990750,9581,0 +31005,I034,665,458,699722599,10241,0 +31006,003+Cha%C5%82upa+na+wzg%C3%B3rzu,372,618,8268010,9835,0 +31007,0179,548,658,698659980,10019,0 +31008,Wioska+barbarzy%C5%84ska,676,492,699598425,10728,0 +31009,D+022,669,513,8078914,10083,8 +31010,1.03,336,449,3502565,7199,0 +31011,Kentin+ufam+Tobie,328,460,699783765,10067,0 +31012,Wrath+004,573,343,699756210,10273,2 +31013,A32,479,671,698652014,7238,0 +31014,Nowy+%C5%9Bwiat,333,555,849084005,10178,0 +31015,Wioska+barbarzy%C5%84ska,449,334,849017820,9185,0 +31016,333,634,393,849092309,5621,0 +31017,Plutosea+Barbarzy%C5%84ska,330,545,699402816,9835,0 +31018,Deveste+ufam+Tobie,392,638,699783765,10000,5 +31019,Wioska+K+A+J+T+E+K,625,604,699778867,12154,0 +31020,Y+%7C+Forest+Cyaaaanku,329,501,699213622,10000,0 +31021,Wioska+094,642,601,848971079,9761,0 +31022,C.04,675,524,699737356,8849,0 +31023,R%C4%99cznik+do+zmiany,352,406,699697558,10019,2 +31024,444,634,394,849092309,5160,0 +31025,Wonderwall,331,547,698962117,9500,0 +31026,Szulernia,379,382,7249451,3189,7 +31027,0263,544,669,698659980,10160,0 +31028,%5B040%5D,648,588,698305474,7622,0 +31029,Tu+te%C5%BC+przytulnie,443,659,8954402,10160,0 +31030,Wioska+barbarzy%C5%84ska+027,514,330,6343784,8510,0 +31031,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,521,659,699828442,9805,0 +31032,Bagdad,486,330,8847546,10068,0 +31033,%7C026%7C+Kolymbia,504,674,699781762,8881,0 +31034,Zeta+Reticuli+W,359,405,699323302,5789,0 +31035,20k%24+Grvvyq,657,572,699676005,10495,0 +31036,%5BB%5D_%5B041%5D+Dejv.oldplyr,425,346,699380607,10495,0 +31037,Chekku+-+meito,330,531,9280477,9976,0 +31038,New+World,493,674,698152377,10612,1 +31039,Wioska+P1ter+1,598,647,699567608,9937,0 +31040,Wioska+klez+013,326,510,698295651,6870,0 +31041,K34+x027,403,353,698364331,5588,0 +31042,Wioska+ba,498,323,6118079,7250,0 +31043,Awaryjne+%C5%9Bwiat%C5%82a%21,498,504,699785935,9702,0 +31044,0573,564,661,698659980,8944,0 +31045,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,631,1434753,8946,0 +31047,Wioska+129,635,605,848971079,8891,0 +31048,020.,486,658,849034882,10838,0 +31049,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,661,698807570,9027,0 +31050,Za+darmo,361,597,8607734,2264,0 +31051,%7C041%7C+Tirana,496,675,698152377,9714,0 +31052,Szlachcic%2FTaran,612,369,699759128,9172,0 +31053,%7C002%7C+Heraklion,495,671,699393742,10160,0 +31054,.%3A007%3A.+gr,635,386,849078297,6921,0 +31055,022+Wioska,659,429,699671454,5428,0 +31056,__28__+Setarrif,376,620,6354098,4120,0 +31057,B+033,667,529,8078914,9197,0 +31058,Wyspa+007,624,383,699756210,9783,0 +31059,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,672,698807570,7751,0 +31060,Wioska+03,503,327,951823,8186,0 +31061,Piek%C5%82o+to+inni,601,359,848956765,10160,0 +31062,Mallutka,634,603,2269943,4268,0 +31063,046,518,672,2293376,7865,0 +31064,-+Dragon1,548,334,699825236,8492,0 +31065,Zeta+Reticuli+W,356,403,699323302,3944,0 +31066,Szlachcic%2FTaran,642,398,699759128,10237,0 +31067,Grvvyq+114k%24,630,613,699676005,7868,0 +31068,Zeta+Reticuli+W,366,390,699323302,5452,0 +31069,Wiocha+11,378,382,849096544,4826,0 +31070,%7E%7E086%7E%7E,634,613,7829201,9756,0 +31071,AAA,674,479,699574408,9787,0 +31072,Wioska+barbarzy%C5%84ska,326,514,61791,3665,0 +31073,0440,537,672,698659980,10083,0 +31074,Nowy+%C5%9Bwiat+7,342,562,849084005,5463,0 +31075,020+Jo+ni+ma+Fasola,381,624,6354098,10143,0 +31076,Gattacka,619,373,699298370,9711,0 +31077,0304,574,661,698659980,9696,0 +31078,Wioska+IV,577,346,698200480,7749,0 +31079,crackhouse,582,652,848995242,3255,0 +31080,%230110+tomek791103,482,331,1238300,10178,3 +31081,01.+kololand,374,596,8665783,11271,0 +31082,D12,665,551,848995478,3128,0 +31083,Szlachcic%2FTaran,616,377,699759128,10237,0 +31084,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,524,653,699828442,9761,0 +31085,070,663,552,849095227,9755,0 +31086,03Wioska+barbarzy%C5%84ska,388,630,699704542,9742,0 +31088,0073,554,664,698659980,10083,0 +31090,-010-,334,452,8184383,7348,0 +31091,Piek%C5%82o+to+inni,584,346,848956765,5462,0 +31093,Wioska+Bochun10,332,469,7449254,8441,0 +31094,ADEN,575,349,698588535,10268,0 +31095,A001+Mpiechu+2,670,451,113796,9883,0 +31096,Wioska+barbarzy%C5%84ska,381,370,698160606,7734,0 +31097,Jednak+wol%C4%99+gofry,420,655,699736927,7352,0 +31098,Wioska+barbarzy%C5%84ska,674,481,699598425,10728,0 +31099,yyyy,500,369,699883079,10132,0 +31100,052,339,570,6853693,10490,0 +31101,Asaret,650,593,699611673,12021,0 +31102,Cleveland,601,354,1990750,10068,0 +31103,E012,661,560,8428196,4212,0 +31104,002,662,549,6929240,4347,0 +31105,184..,350,592,849090130,6298,6 +31106,Lord+Lord+Franek+.%23096,511,324,698420691,10252,0 +31107,ASD,680,490,699598425,10728,0 +31108,Wioska+barbarzy%C5%84ska,342,428,393668,8413,0 +31109,Didi,654,584,849070946,10971,0 +31110,Wioska+barbarzy%C5%84ska,672,480,699598425,10728,0 +31111,168...LordRDW,443,336,6920960,6611,0 +31113,0292,570,654,698659980,9790,0 +31114,Wioska+barbarzy%C5%84ska,453,334,699191455,5488,0 +31115,Wioska+barbarzy%C5%84ska,522,326,698350371,9232,0 +31116,Szlachcic,394,358,3484132,10495,0 +31117,Amur,329,545,699265922,7398,0 +31118,Chekku+-+meito,327,523,9280477,9976,0 +31120,58.+KaruTown,662,431,9238175,9711,0 +31121,%2A5612%2Ae+Nasza+szansa,657,580,7973893,10287,3 +31122,-013-,339,559,8004076,9880,0 +31123,%2A%2A15%2A%2A,634,387,849098782,9013,0 +31124,Wioska+Bochun10,329,516,7449254,10311,0 +31125,014+Z%C5%82oty+dziewi%C4%99%C4%87dziesi%C4%85t+pi%C4%99%C4%87,386,629,6354098,10144,0 +31126,Pobozowisko,375,620,699513260,10971,0 +31127,Wioska+102,649,586,848971079,8368,0 +31128,Erebor+5,498,590,699383121,8953,0 +31129,Po+%C5%9Bwi%C4%99tach,607,365,848915730,10066,0 +31130,Wioska+barbarzy%C5%84ska,507,676,699781762,9494,0 +31131,Jaaa,670,494,698635863,9460,0 +31132,52.+KaruTown,642,402,849091866,6041,0 +31133,Krosno+8,534,333,7485877,2819,0 +31134,-+DragonA,547,329,699825236,9145,0 +31135,Weso%C5%82ych+%C5%9Awi%C4%85t,563,335,848915730,5679,0 +31136,%23Bakasta,436,661,699849210,8582,0 +31137,027+Pont+Vanis,467,671,699834004,6598,0 +31139,02+Zamek,539,674,849097981,8454,0 +31140,136...barb,444,336,6920960,6565,0 +31141,SPOCENI+KUZYNI,417,647,848913998,9467,5 +31142,Wioska+barbarzy%C5%84ska,452,330,699393759,8412,0 +31143,Myk+i+do+kieszonki,347,572,849012521,6086,0 +31144,0165,544,665,698659980,10019,0 +31145,Bocianikson019,660,568,7528491,5022,0 +31146,Sony+911,616,632,1415009,9993,0 +31147,%21+Stark+Tower,627,385,699723284,10452,0 +31148,WB+04,637,608,2269943,8307,0 +31149,M181_030,340,432,393668,9735,0 +31150,009,362,604,699083129,9284,0 +31151,Wyspa+014,624,379,699756210,9791,0 +31152,%23Sk_015,437,664,699849210,3152,0 +31153,.achim.,485,325,6936607,10311,0 +31154,%2A4601%2A+Ostra+gra,675,484,7973893,10287,0 +31155,Orze%C5%82+Wyl%C4%85dowa%C5%82,458,664,698807570,6867,0 +31156,Wioska+barbarzy%C5%84ska,556,336,699072129,10223,0 +31157,KR%C3%93L+PAPI+WIELKI,639,604,698191218,10000,5 +31158,Wioska+047,646,597,848971079,9761,0 +31159,C0273,325,513,8841266,9378,0 +31160,Wioska+barbarzy%C5%84ska,544,337,699066118,7523,0 +31161,41k%24+Grvvyq,652,578,699676005,9514,0 +31162,-+Dragon3,548,332,699825236,7321,0 +31163,Deveste+ufam+Tobie,393,638,699783765,10000,0 +31164,Merkury,547,337,699797805,4326,0 +31165,017+Bremervoord,468,669,699834004,8524,0 +31166,Jednak+wol%C4%99+gofry,418,656,699736927,10068,0 +31167,Wioska+barbarzy%C5%84ska,582,656,6818593,9835,0 +31168,Gattacka,617,374,699298370,9860,0 +31169,Architekci+Plac%C3%B3w+Boju,336,554,8004076,9700,0 +31170,49k%24+Grvvyq,655,577,699676005,7436,0 +31171,Wioska+121,672,524,848971079,9294,0 +31172,%7CC%7C+Southgulf,508,669,698147372,10636,5 +31173,Wioska+Bochun10,332,461,7449254,4549,0 +31174,deff+100+%25,346,569,849012521,8945,0 +31175,Wioska+barbarzy%C5%84ska,448,333,699393759,8753,0 +31176,Wioska+Bochun10,330,517,7449254,10311,0 +31177,%2A174%2A,347,414,699273451,10211,0 +31178,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F6,626,619,33900,10065,0 +31179,Wrath+008,574,344,699756210,9771,0 +31180,028,477,670,698650301,9916,0 +31181,Westfold.015,346,419,848918380,7555,0 +31182,Wallie,647,413,1086351,4141,0 +31183,%C5%BBUBR+.%3A%3A.Adaczu%2F01,608,631,33900,7104,0 +31184,Taran,675,499,699598425,10728,9 +31185,Szlachcic%2FTaran,610,369,699759128,7094,0 +31186,%2A128%2A,365,391,699273451,10211,0 +31187,O35+Akita,671,519,699272880,8246,0 +31188,Gra+o+Tron,612,631,8815749,10019,0 +31189,_PUSTA%2B,669,552,699628084,10160,0 +31190,Ow+Konfederacja,601,395,848915730,9787,0 +31191,R%C4%99cznik+do+zmiany,354,406,699697558,10019,8 +31192,A001+mpiechu,669,450,113796,10208,0 +31193,A0268,328,487,8841266,10252,0 +31194,Wioska+barbarzy%C5%84ska,400,357,8419570,8860,0 +31195,Chekku+-+meito,325,526,9280477,9976,0 +31196,Bagdad,487,328,8847546,10068,0 +31197,%2A022,602,643,699567608,9700,0 +31200,zzzRezygnacja+03,630,608,699778867,9141,0 +31201,139...barba,443,341,6920960,5984,0 +31202,%2A056%2A,360,392,699273451,10211,0 +31203,%230092+barbarzy%C5%84ska,467,329,1238300,9966,0 +31204,Kiedy%C5%9B+Wielki+Wojownik,590,349,8632462,6592,0 +31205,%23114%23,639,597,692803,8575,0 +31207,%5BB%5D_%5B019%5D+Dejv.oldplyr,422,341,699380607,10636,0 +31208,Taran,340,577,6180190,9957,0 +31209,%230053+geryk,469,326,1238300,10178,0 +31210,Jaaa,676,488,698635863,10484,0 +31211,0148,635,611,698416970,6074,0 +31213,sony911,619,630,1415009,9967,0 +31214,%230069+tomek791103,479,331,1238300,10178,0 +31215,A014+Barba,663,445,113796,10379,0 +31216,Kentin+ufam+Tobie,334,458,699783765,11074,0 +31217,Psycha+Siada,449,668,698807570,7668,0 +31218,Wioska+barbarzy%C5%84ska,351,594,849014147,2330,0 +31219,Chekku+-+meito,330,540,9280477,9976,0 +31220,J%23018,574,339,2065730,9797,0 +31221,-+Dragon2,548,333,699825236,7760,0 +31222,C0068,324,517,8841266,10252,0 +31223,Kiedy%C5%9B+Wielki+Wojownik,564,338,848915730,9976,0 +31224,%2A249%2A,337,442,699273451,10416,0 +31225,Taran,672,483,699598425,10728,0 +31226,Happy+station,643,401,1086351,3636,0 +31227,deff+100+%25,344,570,849012521,8864,0 +31228,%7E046.,473,596,7139820,10495,0 +31229,Sony+911,619,628,1415009,9754,0 +31230,Szlachcic,395,486,6258092,10160,0 +31231,%230107+tomek791103,481,331,1238300,10178,0 +31232,J%23022,573,340,2065730,9829,0 +31233,%2A%2A11%2A%2A,633,388,849098782,9925,0 +31234,Szlachcic,397,359,3484132,10351,0 +31235,Inny+plan,629,378,7555180,10160,0 +31236,Wioska+barbarzy%C5%84ska,608,561,7047342,10474,0 +31237,ABC,652,419,1086351,8989,0 +31238,Taran,677,492,699598425,10728,0 +31239,SOKzGUMIjag%C3%B3d,595,350,849059491,5137,0 +31240,%2A016,595,642,699567608,9016,0 +31241,Ob+Konfederacja,435,340,848915730,5834,0 +31242,078.+Ambracia,653,412,849091866,9539,0 +31243,%2A001,598,643,699567608,9016,2 +31244,0230,555,663,698659980,10083,0 +31245,%5B192%5D,539,513,8000875,9761,0 +31246,156+Nocny+Jastrz%C4%85b+001,645,400,699491076,9070,0 +31247,D05+Macko+wi%C4%99cej+deffa.,459,668,849037407,7084,0 +31248,Klen,330,542,699265922,9563,0 +31250,PUSTO,637,604,698191218,4404,0 +31251,Qadros,675,475,699574408,10151,0 +31252,008+Wioska+barbarzy%C5%84ska,383,627,6354098,8859,0 +31253,North+Barba+046,423,349,699796330,9653,0 +31254,%2A%2A43%2A%2A,665,442,849098782,8993,0 +31255,1v9+machine,389,635,699697558,10019,0 +31256,C0164,328,539,8841266,10252,0 +31257,Bagienko.Anker...,372,386,699713515,4010,0 +31258,Bagdad,483,326,8847546,10068,0 +31259,sony911,589,650,1415009,10203,0 +31260,I050,668,452,699722599,9738,0 +31261,Be+patient,509,676,849004274,9835,0 +31262,0072,409,350,699431255,6569,0 +31263,B.021,677,502,9188016,10000,0 +31264,Osada+koczownik%C3%B3w,549,662,848915531,10495,8 +31265,%2A214%2A,350,415,699273451,5364,0 +31266,Kentin+ufam+Tobie,328,459,699783765,10000,3 +31267,073,661,565,849095227,9860,0 +31268,Taran,673,490,699598425,10728,0 +31269,56k%24+Grvvyq,653,575,699676005,8837,0 +31270,Wioska+barbarzy%C5%84ska,544,335,699066118,7171,0 +31271,Weso%C5%82ych+%C5%9Awi%C4%85t,578,350,848915730,9924,3 +31272,%5B171%5D,649,581,8000875,8218,0 +31273,%2A126%2A,363,389,699273451,10211,0 +31274,003+%C5%81uk+Kurski,608,361,849091899,11281,0 +31275,Lord+Lord+Franek+.%23171,507,327,698420691,10144,0 +31276,064,677,501,699413040,6932,0 +31277,Szlachcic,396,360,3484132,8250,0 +31278,Dark+hill,647,409,1086351,3706,0 +31279,Wioska+bada,494,329,6118079,6250,0 +31280,Pobozowisko,364,609,699513260,9888,0 +31281,%2A248%2A,335,440,699273451,6641,0 +31282,R%C4%99cznik+do+zmiany,355,404,699697558,10019,0 +31283,Wioska+barbarzy%C5%84ska,596,646,699567608,9706,0 +31284,Wioska+barbarzy%C5%84ska,578,655,6818593,9835,0 +31285,044,665,545,849095227,9482,7 +31286,Bairro+Alto,348,587,699494480,8521,0 +31287,Wioska+barbarzy%C5%84ska,510,674,699781762,9927,0 +31288,006,601,636,849097799,8414,0 +31289,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,384,631,1434753,10068,0 +31291,0276,555,666,698659980,9861,0 +31292,Lord+Lord+Franek+.%23182,543,330,698420691,12154,0 +31293,0428,551,668,698659980,10019,0 +31294,Wioska+barbarzy%C5%84ska,561,341,699072129,10216,0 +31295,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F5,607,634,33900,9719,0 +31296,KR%C3%93L+PAPI+WIELKI,640,607,698191218,10000,0 +31297,81+Ta+ostatnia+Niedziela+%3A%29998%28%3A,523,332,2571407,5650,0 +31298,00571+Wioska,446,425,3909522,9248,0 +31299,Wioska+barbarzy%C5%84ska,558,340,699072129,10218,0 +31300,E013,660,560,8428196,7808,0 +31301,Psycha+Siada,447,668,698807570,7653,0 +31302,Village,506,569,849094067,11466,0 +31303,Taran+033,620,374,699098531,9835,0 +31304,EKG+.%3A%3A.+Mat26%2F1,496,615,33900,10495,0 +31305,Wioska+barbarzy%C5%84ska,579,655,6818593,9835,0 +31306,Ave+Why%21,500,670,698585370,4309,0 +31307,Wioska+barbarzy%C5%84ska,677,485,699598425,9157,0 +31308,Deveste+ufam+Tobie,398,639,699783765,10000,0 +31309,Zeta+Reticuli+W,360,398,699323302,6575,0 +31310,Sk_006,438,660,8954402,9835,0 +31311,Wioska+barbarzy%C5%84ska,352,597,8877156,6606,0 +31313,%2A051%2A,356,396,699273451,10211,0 +31314,%230051,541,628,1536231,10495,0 +31315,Wioska+barbarzy%C5%84ska,602,362,849041192,4270,0 +31317,Wioska+barbarzy%C5%84ska,672,477,699574408,8542,0 +31318,0615,478,675,698650301,9842,0 +31319,Szulernia,387,366,7249451,9983,0 +31320,C0276,326,508,8841266,7999,0 +31321,Jednak+wol%C4%99+gofry,419,657,699736927,8027,0 +31322,%5BB%5D_%5B020%5D+Dejv.oldplyr,422,342,699380607,10233,0 +31323,Kiedy%C5%9B+Wielki+Wojownik,562,343,848915730,9976,0 +31324,Forza+11,440,663,8954402,9507,0 +31325,120,652,422,849088515,4543,0 +31326,0074,416,344,699431255,6482,0 +31328,C004,361,598,8607734,10160,9 +31330,001.,557,334,699797805,2347,0 +31331,Wioska+barbarzy%C5%84ska,673,471,699574408,10209,0 +31332,014+Szachy+-+Hetman,364,607,8268010,9835,0 +31333,Plls2,654,412,1086351,3914,0 +31334,Wioska+Westor+5,358,398,699530673,4629,0 +31335,krytl11,514,324,1990750,10068,0 +31336,0442,534,671,698659980,7836,0 +31337,Bezimienni+Bytom,585,651,848995242,9528,0 +31338,A+002,367,618,699342219,10259,0 +31339,Wioska+103,648,590,848971079,7071,0 +31340,AAA,529,327,1006847,9656,0 +31341,59k%24+Grvvyq,654,575,699676005,7615,0 +31342,108,616,367,7085502,5700,0 +31344,Kentin+ufam+Tobie,330,454,699783765,10000,2 +31345,0574,565,658,698659980,10019,0 +31346,025,602,640,849097799,7512,0 +31347,011+Tr%C3%B3jmiasto+2%2F3,388,628,8268010,9835,0 +31348,0075,545,668,698659980,10083,7 +31349,Horyzont+zdarze%C5%84,526,545,7581876,10019,0 +31350,Jaaa,672,489,698635863,10476,0 +31351,City,655,408,1086351,4945,0 +31352,Wioska+barbarzy%C5%84ska,575,661,6818593,9835,0 +31353,I045+Czy+ten+Pan+i+Pani,670,458,699722599,10160,0 +31354,I020,665,451,699722599,10346,0 +31355,Bagdad,487,327,8847546,10068,0 +31356,%7CC%7C+Oflashoot,500,672,698147372,6297,0 +31357,D%C4%85browa+0019,359,597,849096972,4503,0 +31358,Szulernia,379,373,7249451,3362,0 +31359,Piek%C5%82o+to+inni,603,357,848956765,10160,0 +31360,C0283,324,512,8841266,5763,0 +31361,Berlin,548,355,699072129,10216,0 +31362,Wioska+097,644,601,848971079,8680,0 +31363,.9.,610,361,1990750,8117,0 +31364,002,651,407,1086351,8450,0 +31365,%7C039%7C+Symi,490,671,699393742,9858,0 +31367,Zero+Stresu,447,535,698971484,10008,0 +31368,A0269,329,476,8841266,10252,0 +31369,Lord+Arsey+KING,582,582,848956513,10285,0 +31370,Wioska+barbarzy%C5%84ska,670,467,699574408,8759,0 +31371,Piek%C5%82o+to+inni,514,425,848956765,10083,0 +31372,AAA,532,327,1006847,9667,0 +31373,Monetkownia,628,624,699759128,10237,0 +31374,234...cENTR,463,332,6920960,4177,0 +31375,Lord+Lord+Franek+.%23132,519,331,698420691,7748,0 +31376,AAA,538,329,1006847,9478,0 +31377,024+idea,660,430,9238175,10284,0 +31378,M181_027,338,437,393668,9755,0 +31379,Kentin+ufam+Tobie,330,461,699783765,10000,2 +31380,%7C021%7C+Samaria,501,676,699781762,9147,0 +31381,%2A061%2A,354,399,699273451,10211,0 +31383,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,671,698807570,10087,0 +31384,B004,470,674,8954402,10975,0 +31385,%2A189%2A,374,375,699273451,9563,0 +31386,%2A024,602,642,699567608,9711,0 +31387,SOKzGUMIjag%C3%B3d,600,352,849059491,10094,0 +31388,006+Avalon,374,381,849059457,6945,0 +31389,Wioska+barbarzy%C5%84ska,546,335,699066118,6256,0 +31390,Szulernia,380,371,7249451,3036,0 +31391,Westfold.005,348,421,848918380,10178,0 +31392,Wioska+Westor+3,358,396,699530673,4735,0 +31393,016+.10.+Infanterie-Division,597,358,849091899,2239,0 +31394,0062,671,460,698416970,6508,0 +31395,1.11,339,446,3502565,5154,0 +31396,A+010,371,618,699342219,5894,0 +31397,.%3A001%3A.+gr,635,384,849078297,10241,0 +31398,C0262,323,515,8841266,9044,0 +31399,fff,491,323,698239813,8672,0 +31400,Kiedy%C5%9B+Wielki+Wojownik,564,342,848915730,9976,0 +31402,%2A%2A18%2A%2A,630,389,849098782,9057,0 +31403,Dajanka+33,347,575,849012843,1099,0 +31404,Wioska+barbarzy%C5%84ska,669,519,6510480,6481,0 +31405,%2A007%2A,355,400,699273451,10211,0 +31406,%2A150%2A,351,417,699273451,10211,0 +31407,Deveste+ufam+Tobie,399,639,699783765,10000,3 +31408,Wioska+r+1,555,668,848915531,4803,0 +31409,Osada+koczownik%C3%B3w,655,586,849039310,8884,7 +31410,Wioska+06,499,323,951823,7747,0 +31411,A24,473,670,698652014,11321,0 +31412,Gilonia,513,556,849066849,7688,0 +31413,017,518,670,2293376,9993,0 +31414,012+Tr%C3%B3jmiasto+3%2F3,385,635,8268010,9835,0 +31415,%2A129%2A,365,392,699273451,10211,0 +31416,Wioska+Bochun10,325,519,7449254,10311,0 +31417,Kreskowo_4,594,649,699567608,9799,0 +31418,Wioska+Bochun10,326,470,7449254,10452,0 +31419,Z%7C001%7C+Mediolan,471,673,699393742,9365,0 +31420,OSADA+II,677,499,699598425,8143,0 +31421,Szulernia,382,368,7249451,8061,0 +31422,21k%24+Grvvyq,657,568,699676005,10495,0 +31423,D%C4%85browa+0021,356,591,849096972,5126,0 +31424,002,335,441,699800377,2764,0 +31425,%5B020%5D+VW+Klupo,663,436,849095068,9312,0 +31426,ADEN,602,355,698588535,9769,0 +31427,Szulernia,387,369,7249451,9209,0 +31428,Monetkownia,625,625,699759128,10237,0 +31429,I051,670,455,699722599,9603,0 +31430,Wioska+barbarzy%C5%84ska,569,337,0,8306,0 +31431,Bunkier+004,621,627,699778867,7631,0 +31432,Wioska+barbarzy%C5%84ska,677,490,699598425,10728,0 +31433,Architekci+Plac%C3%B3w+Boju,335,555,8004076,7603,0 +31434,Warkoczynka+2,611,611,699778867,12154,0 +31435,Lord+Lord+Franek+.%23086,517,325,698420691,9976,0 +31436,040+Rabka+Zdr%C3%B3j+Akademia,371,375,848978297,2946,0 +31437,026+%2A+Lady+Porto+%2A,644,397,699406750,10636,0 +31438,.%3A004%3A.+gr,636,385,849078297,9398,0 +31439,BETON,634,611,2269943,7959,0 +31440,B+034,667,534,8078914,9305,0 +31441,001.+Wioska+Krugal+02,577,658,1270916,8833,0 +31442,030.+Upss,514,670,848928624,7110,0 +31443,09.+Cintra,331,457,848910122,612,0 +31444,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,378,620,1434753,10068,0 +31445,cc+%C5%BBor,391,369,3909522,9350,9 +31447,Lecymy+DUR,441,363,6169408,3648,0 +31448,Wioska+barbarzy%C5%84ska,553,336,699072129,10122,0 +31451,009,604,365,1018357,10019,0 +31452,%C5%82%C3%B3dka,329,549,699265922,9761,0 +31453,Wioska+barbarzy%C5%84ska,611,363,310729,5618,0 +31454,055,676,502,699413040,10336,0 +31455,Adidas+2,417,652,9191031,5357,0 +31456,029+-+Jerez+de+la+Frontera,676,519,698342159,10019,0 +31457,001,611,360,1990750,10795,0 +31458,027,477,671,698650301,9609,0 +31460,Szlachcic%2FTaran,613,366,699759128,10237,0 +31461,-005-,544,331,698588812,5363,3 +31462,cz+Wioska+16,365,386,3909522,4466,0 +31463,M181_033,339,430,393668,10321,0 +31464,-004-+Amazonia,578,586,699111651,10290,0 +31465,Centrum+2,652,412,1086351,4302,0 +31466,Wioska+01,502,324,951823,7822,4 +31467,O+tutaj,601,362,849041192,9291,0 +31468,%2A139%2A,356,410,699273451,10211,0 +31469,229+%7C,644,605,8000875,7207,0 +31470,Jaaa,671,486,698635863,10351,0 +31471,OFF,670,524,1563417,8809,9 +31472,Wioska+Bochun10,325,476,7449254,7830,0 +31473,Nowy+%C5%9Bwiat+A,340,562,849084005,4901,0 +31474,0287,545,671,698659980,9888,0 +31475,WB2,654,410,1086351,6295,0 +31476,070+-+woli,426,582,225023,10495,0 +31477,Whiskey,674,496,699737356,8902,0 +31478,007,359,606,699083129,9462,9 +31479,Wioska+9,531,517,699385139,7909,0 +31480,002,675,495,699737356,7520,0 +31481,Jaaa,671,498,698635863,9024,0 +31482,Wioska+Bochun10,325,473,7449254,10311,0 +31483,Szulernia,378,370,7249451,4315,0 +31484,Wioska+barbarzy%C5%84ska,669,448,113796,4447,0 +31485,Kentin+ufam+Tobie,327,462,699783765,10000,6 +31486,deff+100+%25,342,578,849012521,10319,0 +31487,golisz+nogi+%3F,592,652,848995242,10595,0 +31488,Paranoje,344,581,7318415,9574,0 +31489,054,669,545,849095227,9372,0 +31490,Szlachcic%2FTaran,619,366,699759128,9604,0 +31491,1.13,335,450,3502565,4326,0 +31492,O43+Trabzon,671,543,699272880,9003,0 +31493,071,601,358,2502956,10019,0 +31494,Wioska+barbarzy%C5%84ska,331,452,7012651,2095,0 +31495,010,456,332,2502956,10019,0 +31496,Stamford%2C+Connecticut,598,359,699491076,10047,0 +31497,psycha+sitting,426,657,699736927,2852,0 +31498,AAA,535,329,1006847,6700,0 +31499,B+060,671,541,8078914,7119,0 +31500,-012-,336,453,8184383,5691,0 +31501,Bunkier+005,623,624,699778867,6559,0 +31502,0526,534,672,698659980,10495,5 +31503,Taran+001,606,362,699098531,10971,0 +31504,%230128+Thorus5,474,329,1238300,10114,0 +31506,222,373,381,699711706,5608,0 +31507,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,371,611,849097937,7362,0 +31508,Wioska+barbarzy%C5%84ska,677,498,699598425,10728,0 +31509,0268,542,670,698659980,9296,0 +31510,Grupka+7+wiosek+5,356,601,698353083,9662,0 +31511,Wioska+barbarzy%C5%84ska,551,338,699072129,9242,0 +31512,060+%7C+PALESTINA,655,417,9228039,6673,0 +31513,Nie+fulaj+dewej+na+halba+mamyjo,328,461,699711723,3567,0 +31514,Castle,652,410,1086351,9240,0 +31515,Chekku+-+meito,326,529,9280477,10040,0 +31516,Orze%C5%82+Wyl%C4%85dowa%C5%82,467,673,698807570,7130,0 +31517,kto+ananasowy+pod+wod%C4%85+ma+dom,669,539,699628084,9600,0 +31518,Wioska+sobie+028,401,639,7349282,9549,0 +31519,C0142,329,520,8841266,9720,0 +31520,Winna,574,659,6818593,5542,2 +31521,%2A010%2A,324,546,8630972,10495,0 +31522,055,459,327,2502956,10019,0 +31523,0275,540,669,698659980,8249,0 +31524,Wioska+barbarzy%C5%84ska,451,329,849017820,8424,0 +31525,371%7C619+Wioska+barbarzy%C5%84ska,619,371,6822957,6499,0 +31526,BETON+065,634,616,699277039,5216,0 +31527,001Marcinmesi,379,371,848978297,9177,0 +31528,Myk+i+do+kieszonki,347,578,9319058,9799,0 +31529,AAA,536,327,1006847,9132,0 +31530,Ave+Why%21,475,673,699121671,9612,0 +31531,019,527,675,2293376,9993,0 +31532,Orze%C5%82+Wyl%C4%85dowa%C5%82,456,669,698807570,8034,0 +31533,Osada+koczownik%C3%B3w,550,329,699797805,2680,7 +31534,Lubieszyn,656,587,849039310,8661,0 +31535,Wioska+barbarzy%C5%84ska,385,369,698160606,5632,0 +31536,%3F009,542,655,699828685,9869,0 +31537,Adidas+3,415,652,9191031,4093,0 +31538,Szlachcic,380,368,698160606,10300,0 +31539,_PUSTA+%21,674,525,1563417,6777,6 +31540,Wonderwall,332,546,698962117,9761,0 +31541,Wioska+044,646,598,848971079,9761,0 +31542,Jehu_Kingdom_64,661,427,8785314,5605,0 +31543,%7C071%7C+BlackBird+6,473,675,699393742,10909,0 +31545,Wioska+barbarzy%C5%84ska,672,467,699574408,10054,0 +31546,%2A057,604,637,699567608,9175,0 +31547,Wioska+barbarzy%C5%84ska,578,657,6818593,9835,0 +31548,Jednak+wol%C4%99+gofry,426,662,699736927,7569,0 +31549,.%3A013%3A.,631,383,849078297,4855,0 +31550,Wioska+barbarzy%C5%84ska,672,461,699574408,9082,0 +31551,060+komornicy,335,545,699510259,6458,0 +31552,%5BB%5D_%5B040%5D+Dejv.oldplyr,430,343,699380607,10495,0 +31553,bandzior,520,671,606407,10303,0 +31555,040+Szkoda+mi+Pe+Pe+na+mur+%3Bc,387,628,6354098,9614,0 +31556,Wioska+barbarzy%C5%84ska,440,662,699849210,1912,0 +31557,Szlachcic%2FTaran,641,396,699759128,10104,0 +31558,Wioska+r+8,555,667,848915531,5623,0 +31559,.%3A002%3A.,632,384,849098782,10233,7 +31560,R+019+%7EWichrowy+Tron%7E,485,674,699195358,9390,0 +31561,Wioska+barbarzy%C5%84ska,454,330,699393759,7187,0 +31562,Witam+S%C4%85siedzie+%3A%29%29,339,441,699800377,1245,0 +31563,004.,579,657,1270916,7315,0 +31564,I%23027,616,365,2065730,9797,0 +31565,Jad%C4%99+na+mopie+%21%21,587,654,848995242,10362,0 +31566,%5BB%5D_%5B031%5D+Dejv.oldplyr,418,342,699380607,10211,0 +31567,Silver+dream,648,403,1086351,3394,0 +31568,011+Unternehmen+Seelowe,605,362,849091899,4810,0 +31569,625%7C336,607,369,699580120,9835,0 +31570,psycha+sitting,436,664,699736927,3446,0 +31571,002+Stalingrad,605,360,849091899,11678,7 +31573,ADEN,578,347,698588535,9452,5 +31574,Wioska+klez+015,324,513,698295651,6127,0 +31575,Wioska+Bochun10,325,493,7449254,10311,0 +31576,087,664,569,849095227,9727,0 +31577,001,603,364,1018357,10019,0 +31578,Deveste+ufam+Tobie,399,646,699783765,10000,0 +31579,%2A076%2A,362,388,699273451,10211,0 +31580,Wioska+barbarzy%C5%84ska,338,561,849012521,2846,0 +31581,06+tonieostatnieslowo,610,364,699861004,9976,0 +31582,Wioska+barbarzy%C5%84ska,570,660,6818593,9835,0 +31583,023,469,670,699238479,8875,0 +31584,%230056+barbarzy%C5%84ska,469,328,1238300,10178,0 +31585,Wioska+plls,652,409,1086351,8218,0 +31586,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,375,618,849097937,9752,0 +31587,%2A183%2A,378,374,699273451,10211,0 +31588,Bagdad,491,325,8847546,10178,0 +31589,Wioska+barbarzy%C5%84ska,571,660,6818593,9835,0 +31590,Jednak+wol%C4%99+gofry,421,658,699736927,4097,0 +31591,Nowa+49,662,576,698702991,7702,0 +31592,%5BB%5D_%5B028%5D+Dejv.oldplyr,434,336,699380607,10401,0 +31593,013,373,384,849059457,3708,0 +31594,Lord+Lord+Franek+.%23089,520,325,698420691,10301,0 +31595,R%C4%99cznik+do+zmiany,353,404,699697558,10019,0 +31596,Wioska+barbarzy%C5%84ska,555,338,699072129,10220,0 +31597,B+056,675,536,8078914,9515,0 +31598,Centrum,653,410,1086351,5903,0 +31599,deff+100+%25,338,572,849012521,7014,0 +31600,Wioska+klez+016,330,507,698295651,6710,0 +31601,Monetkownia,620,622,699759128,10237,0 +31602,114,658,430,849088515,6808,0 +31603,Wioska+V,581,348,698200480,7588,0 +31604,Wioska+r+15,559,667,848915531,3516,0 +31605,07.+Rivia,333,453,848910122,1131,0 +31606,B+009,668,531,8078914,10064,9 +31607,Deveste+ufam+Tobie,395,640,699783765,10019,0 +31608,B.06,670,506,699737356,9420,0 +31610,.%3A008%3A.,635,383,849078297,5751,0 +31611,018+Szachy+-+Goniec,361,603,8268010,5410,0 +31612,Wioska+barbarzy%C5%84ska,367,614,698908184,6195,0 +31613,A28,475,670,698652014,8763,0 +31614,B+002,667,535,8078914,10273,1 +31616,Wioska+barbarzy%C5%84ska,673,472,699574408,10018,0 +31617,Wioska+Bochun10,328,469,7449254,9971,0 +31618,210,668,550,7038651,8471,0 +31619,A+001,369,618,699342219,10946,0 +31620,Chekku+-+meito,328,521,9280477,9976,0 +31621,Wypizdow+dolny,673,467,699574408,10237,0 +31622,Kiedy%C5%9B+Wielki+Wojownik,567,343,848915730,9976,0 +31623,A+007,368,616,699342219,10237,0 +31624,Piek%C5%82o+to+inni,588,351,848956765,6480,0 +31625,Ob+Konfederacja,443,335,848915730,9016,0 +31626,I031,665,456,699722599,10064,0 +31627,025,631,612,699567608,9812,0 +31628,%2A137%2A,352,413,699273451,10211,0 +31629,13.+Metinna,333,456,848910122,295,0 +31630,053+Arkansas,675,518,2135129,9500,0 +31631,Ob+Konfederacja,437,334,848915730,9291,0 +31632,%23003%23,625,619,692803,9761,0 +31633,Bagienko.Anker...,374,385,699713515,3135,0 +31634,%2A133%2A,353,414,699273451,10211,0 +31635,Gr%C3%B3d+2,471,325,699204478,7524,0 +31636,055+%7C+PALESTINA,652,423,9228039,4098,0 +31637,AAA,531,329,1006847,9573,9 +31638,03.Mordo+%3A%29,448,662,361125,3182,0 +31639,065,452,331,2502956,9976,0 +31640,Wioska+barbarzy%C5%84ska,631,379,7555180,349,0 +31641,Sekou,676,509,699737356,9688,0 +31642,%3D%7C29%7C%3D,641,393,9101574,10495,0 +31643,Ruska+onuca,588,652,848995242,10495,0 +31644,WB3,650,413,1086351,6551,9 +31645,Jaaa,672,487,698635863,10478,0 +31646,010,363,605,699083129,9647,0 +31647,Wioska+barbarzy%C5%84ska,338,562,849012521,2510,0 +31648,K34+x026,402,356,698364331,7163,0 +31649,025+przepis+na+serniczek,506,675,8954402,10160,0 +31650,11k%24+Grvvyq,663,568,699676005,10495,8 +31651,2.Santander,562,667,698215322,6866,0 +31652,Darmowe+przeprowadzki,461,672,848935389,9809,0 +31653,%23054%23,627,625,692803,9761,0 +31654,Lord+Lord+Franek+.%23107,507,323,698420691,10316,0 +31655,A0270,328,475,8841266,10252,0 +31656,057+komornicy,331,539,699510259,9835,0 +31657,fff,488,322,698239813,10268,0 +31658,Wioska+117,670,526,848971079,9878,0 +31659,Wioska+barbarzy%C5%84ska,673,464,699574408,9472,0 +31660,I021,668,464,699722599,10476,0 +31661,0617,475,674,698650301,9804,0 +31662,Wioska+Bochun10,323,492,7449254,3825,0 +31663,%2A192%2A,378,371,699273451,10211,0 +31664,Architekci+Plac%C3%B3w+Boju,337,552,8004076,8436,0 +31665,Wioska+barbarzy%C5%84ska,571,659,6818593,9835,0 +31666,C0272,325,515,8841266,9121,0 +31667,069,451,330,2502956,10019,0 +31668,Deveste+ufam+Tobie,396,640,699783765,10000,9 +31669,018,533,673,2293376,9993,0 +31670,023,664,557,8428196,7084,0 +31671,psycha+sitting,426,658,699736927,10311,0 +31672,C0281,325,508,8841266,10252,0 +31673,03Wioska+barbarzy%C5%84ska,388,631,699704542,8581,0 +31674,%5B020%5D,582,348,848915730,9519,0 +31675,080.+Napoca,655,413,849091866,9542,0 +31676,A+028,368,615,699342219,6396,7 +31677,%23.45+Wioska+barbarzy%C5%84ska,670,463,849054582,4338,0 +31678,Ob+Konfederacja,440,336,848915730,9682,0 +31679,psycha+sitting,452,643,699736927,9948,0 +31680,059+komornicy,331,542,699510259,9747,0 +31681,Wioska+Bochun10,338,514,7449254,12154,0 +31682,cz+Wioska+78,367,383,3909522,4711,0 +31683,Deveste+ufam+Tobie,391,640,699783765,8448,0 +31684,Kampaj%C3%B3wka,324,529,698338524,6782,0 +31685,I022+Ty+masz+ten+idealny+stan,667,462,699722599,9978,0 +31686,Szlachcic,390,359,3484132,10495,0 +31687,1v9+machine,390,638,699697558,10019,0 +31688,KR%C3%93L+PAPI+WIELKI,637,611,698191218,10000,6 +31689,001+Kuba,675,489,699737356,8448,0 +31690,Wioska+105,642,602,848971079,9761,0 +31691,Wioska+barbarzy%C5%84ska,662,446,113796,6635,0 +31692,off+100+%25,340,570,849012521,9836,0 +31693,%2A068%2A,361,388,699273451,10211,4 +31694,A005,491,678,8954402,10063,0 +31695,KNATIGOR,678,500,699598425,10728,0 +31696,023,605,643,849097799,7764,0 +31697,Arka+Noego,383,375,8419570,9481,0 +31698,005,363,609,699083129,8955,0 +31699,069,620,599,698786826,7652,0 +31700,Myk+i+do+kieszonki,347,577,9319058,9799,0 +31701,Komornik+004,329,540,698290577,5222,0 +31702,Kentin+ufam+Tobie,332,457,699783765,10000,0 +31703,Monetkownia,616,626,699759128,10104,0 +31704,AAA,519,323,1006847,8760,0 +31705,Wioska+010,384,385,8419570,10168,0 +31706,K34+x018,410,352,698364331,9949,0 +31707,0012+Podole,386,376,849096882,6464,0 +31708,C0052,326,519,8841266,10252,0 +31709,020+Krak%C3%B3w,405,354,848978297,9448,0 +31710,%2A055%2A,356,397,699273451,10211,0 +31711,Wioska+barbarzy%C5%84ska,373,383,699711706,2628,0 +31712,%2A167%2A,348,411,699273451,10095,0 +31713,0007,616,613,6417987,9579,0 +31714,A-042-Heffito,404,347,8419570,10178,0 +31715,Wioska+barbarzy%C5%84ska,503,673,699781762,10495,0 +31716,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,633,1434753,10068,2 +31717,%7E%7E090%7E%7E,635,617,7829201,8181,0 +31718,Zeta+Reticuli+W,362,399,699323302,8559,0 +31719,.%3A002%3A.,372,620,7417116,12154,0 +31720,0538,563,664,698659980,5676,0 +31721,Jaaa,672,491,698635863,9632,0 +31722,Muchomor+%2A014%2A,517,675,606407,10433,0 +31723,Wyspa+002,623,380,699756210,10140,0 +31724,Wioska+barbarzy%C5%84ska,503,672,699781762,10495,0 +31725,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,670,698807570,9642,3 +31726,Lord+Lord+Franek+.%23149,507,324,698420691,7984,0 +31727,Ow+Konfederacja+%2B,612,402,848915730,10157,0 +31729,%2A%2A14%2A%2A,633,389,849098782,9573,0 +31730,D%C4%85browa+0020,357,594,849096972,5448,0 +31731,-014-,337,561,8004076,9880,1 +31732,007,332,458,699879556,3118,0 +31733,Jaaa,675,492,698635863,10487,0 +31734,Wioska+barbarzy%C5%84ska,462,329,849017820,5753,0 +31735,wioska,409,348,699854830,7119,0 +31736,364%7C616Osada+koczownik%C3%B3w1,616,364,6822957,10078,7 +31737,660%7C426+Wioska+barbarzy%C5%84ska,660,426,6822957,4460,0 +31738,Sekou,674,507,699737356,9899,0 +31739,%23Fuegoleon,436,659,699849210,10247,0 +31740,012%23+Angelina,472,673,3933666,9179,0 +31741,Wioska+Bochun10,324,472,7449254,10311,0 +31742,Szlachcic,395,357,3484132,10495,0 +31743,0394,556,665,698659980,10252,0 +31744,Lord+Lord+Franek+.%23102,524,329,698420691,10160,0 +31745,SOKzGUMIjag%C3%B3d,596,352,849059491,6472,0 +31746,Monetkownia,626,624,699759128,10237,0 +31747,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,376,618,849097937,9752,0 +31748,%2A216%2A,371,377,699273451,6269,0 +31749,Szlachcic,384,362,3484132,10478,0 +31750,-013-,339,440,699273451,5200,0 +31751,%230108+tomek791103,477,328,1238300,10178,0 +31752,0272,541,670,698659980,9531,0 +31753,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F9,629,621,33900,9868,0 +31754,%2A%2A35%2A%2A,668,432,849098782,10220,0 +31755,Wioska+02,500,327,951823,7342,0 +31756,%2A190%2A,372,375,699273451,10104,0 +31757,Wioska+Bochun10,323,489,7449254,10365,0 +31758,22.+Las+Venturas,497,673,849092769,7707,0 +31759,Lord+Lord+Franek+.%23185,544,330,698420691,10319,0 +31760,%2A196%2A,364,389,699273451,6249,0 +31761,B.020,677,500,9188016,10000,1 +31762,Orze%C5%82+Wyl%C4%85dowa%C5%82,447,662,698807570,7848,0 +31763,0614,478,674,698650301,9886,0 +31764,Wioska+Bochun10,329,495,7449254,10495,0 +31765,Myk+i+do+kieszonki,346,580,849012521,10245,0 +31766,0050,567,327,699485250,10229,0 +31767,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,381,623,849097937,9512,0 +31768,0083,543,525,699432672,10495,0 +31769,New+World,495,674,698152377,9714,0 +31770,1.013,335,451,3502565,9135,6 +31772,080+tulpa,650,417,9238175,10275,0 +31773,Wie%C5%9B+11,353,600,8877156,9003,0 +31774,Wioska+ma%C5%82a,503,322,6118079,7682,0 +31775,R+012+%7EGwiazda+Zaranna%7E,487,674,699195358,9602,0 +31776,Sekou,672,507,699737356,9701,0 +31777,009+Panzergruppe+Afrika,606,361,849091899,5420,0 +31778,M181_029,337,431,393668,9730,0 +31779,0091,412,351,699431255,3567,0 +31780,Moja,541,353,570100,8823,0 +31781,Po+sasiedzku,615,372,848924219,7496,0 +31782,M181_028,338,432,393668,9741,0 +31783,%23038%23,625,622,692803,9761,0 +31784,%244.000+Grvvyq,658,576,699676005,10495,0 +31785,Wioska+XV,576,344,698200480,9000,0 +31786,AAA,534,328,1006847,9032,0 +31787,Osada+koczownik%C3%B3w,676,467,699574408,9473,1 +31788,Wioska+barbarzy%C5%84ska,511,677,699781762,10160,0 +31789,Deveste+ufam+Tobie,397,637,699783765,10000,6 +31790,Mosty,352,587,8607734,10019,0 +31791,008,409,651,699246032,9835,0 +31792,Wioska+barbarzy%C5%84ska,673,463,699574408,9426,0 +31793,South+K35,556,395,699146580,10042,0 +31794,%40LL+ok,595,352,849059491,4397,0 +31795,Szulernia,387,367,7249451,9832,0 +31796,MojeDnoToWaszSzczyt,561,363,699697558,10495,0 +31797,0610,480,674,698650301,10019,0 +31798,%7C010%7C+Agia+Meriadia,495,679,699393742,10053,4 +31799,Lord+Arsey+KING,580,580,848956513,10285,0 +31801,Wioska+klez+010,329,519,698295651,6783,0 +31802,003+Osada+koczownik%C3%B3w,378,624,6354098,8904,4 +31803,KR%C3%93L+PAPI+WIELKI,578,569,698191218,10000,0 +31804,Wioska+barbarzy%C5%84ska,558,337,699072129,10218,0 +31805,004+Kabul,585,592,699524362,9989,0 +31806,%2A207%2A,346,412,699273451,6884,0 +31807,Wioska+Bochun10,329,491,7449254,7944,3 +31808,1v9+machine,388,640,699697558,10019,0 +31809,Jaaa,675,487,698635863,10487,0 +31810,Wioska+barbarzy%C5%84ska,338,430,393668,8315,0 +31811,Szlachcic,395,356,3484132,10484,0 +31812,Dajanka+28,349,580,849012843,1166,0 +31813,O53+Bildudalur,675,533,699272880,9475,0 +31814,Y+%7C+Forest+Cyaaaanku,321,497,699213622,9527,0 +31815,D+023,671,510,8078914,9908,0 +31816,054,523,677,2293376,9327,0 +31817,%2A215%2A,349,413,699273451,6481,0 +31818,Wioska+barbarzy%C5%84ska,608,365,848915730,2023,0 +31820,Wioska+Bochun10,327,469,7449254,8872,7 +31821,AAA,532,328,1006847,10233,0 +31822,Wioska+Bochun10,328,495,7449254,6579,0 +31823,%5BB%5D_%5B033%5D+Dejv.oldplyr,416,342,699380607,6765,0 +31824,61k%24+Grvvyq,655,575,699676005,7123,0 +31825,DejMon2,370,623,699805839,9587,0 +31826,Monetki,475,419,699098531,9637,0 +31827,Dijon,677,496,699737356,8610,0 +31828,Wioska+04,498,326,951823,6051,0 +31829,Deveste+ufam+Tobie,392,639,699783765,9897,0 +31830,.%3A003%3A.+kr,630,385,849098782,9474,7 +31831,Wioska+barbarzy%C5%84ska,575,655,6818593,9835,0 +31832,063+%7C+PALESTINA,655,419,9228039,6614,0 +31834,Lord+Lord+Franek+.%23105,526,329,698420691,10160,0 +31835,037+troll7,664,431,9238175,10388,0 +31836,%23SecreSwallowtail,434,657,699849210,4274,0 +31837,026,479,674,698650301,9523,4 +31838,M181_032,340,430,393668,9231,0 +31839,Architekci+Plac%C3%B3w+Boju,336,556,8004076,8186,0 +31840,034+yhyyy,669,446,699272633,8496,0 +31841,008+Mord,678,512,2135129,9756,0 +31842,kto+ananasowy+pod+wod%C4%85+ma+dom,674,539,699628084,9266,0 +31843,A+003,366,618,699342219,10237,0 +31844,AAA,530,326,1006847,9484,0 +31845,%3D%7C28%7C%3D,640,392,9101574,10495,0 +31846,001.,622,370,699098531,10654,0 +31847,Kiedy%C5%9B+Wielki+Wojownik,563,341,848915730,9976,0 +31848,%5B07%5D,428,664,699849210,8326,0 +31849,Westfold.004,344,421,848918380,10178,0 +31850,Komornik+003,330,537,698290577,8042,0 +31851,Wyspa+016,619,377,699756210,10399,0 +31852,B003,468,673,8954402,10067,0 +31853,Westfold.012,338,425,848918380,10178,0 +31854,N001,340,574,272173,9814,0 +31855,15k%24+Grvvyq,662,573,699676005,10495,1 +31856,B001,469,672,8954402,9569,0 +31857,368%7C617+Wioska+barbarzy%C5%84ska,617,368,6822957,10016,0 +31858,Wioska+barbarzy%C5%84ska,431,662,699736927,3204,0 +31859,Wioska+barbarzy%C5%84ska,337,562,849012521,2221,0 +31860,A07,468,671,698652014,10019,7 +31861,Szlachcic%2FTaran,633,391,699759128,10237,0 +31862,022+pawelk95,661,483,2135129,9500,0 +31863,Wioska+barbarzy%C5%84ska,430,337,699393759,8562,0 +31864,Wioska+barbarzy%C5%84ska,675,464,699574408,8789,0 +31865,017+.11.+Infanterie-Division,597,356,849091899,3416,0 +31866,historia+blisko+1,617,603,699778867,12154,0 +31867,Sony+911,621,630,1415009,10223,0 +31868,Lord+Lord+Franek+.%23097,511,325,698420691,10051,0 +31869,K34+-+%5B153%5D+Before+Land,428,337,699088769,7619,0 +31870,0411,544,635,698659980,10019,0 +31871,%23%5B10%5D,431,661,699849210,4657,0 +31872,Premium,410,650,699736927,10178,0 +31873,Ob+Konfederacja,441,335,848915730,7254,0 +31874,I046+Sa+w+sobie+zakochani,667,457,699722599,10044,0 +31875,ABB,657,416,1086351,5295,0 +31876,K34+x024,405,356,698364331,7569,0 +31877,Psycha+Siada,443,666,698807570,5372,0 +31878,xdd,679,496,699598425,10728,0 +31879,NAPLETON,351,599,7183372,10294,0 +31880,Jednak+wol%C4%99+gofry,427,661,699736927,6362,0 +31882,psycha+sitting,433,664,699736927,4611,0 +31883,1000,620,365,699150527,10146,0 +31884,Szulernia,376,375,7249451,3463,0 +31885,Wioska+barbarzy%C5%84ska,409,650,699736927,2934,0 +31886,Wioska+5,504,326,698680806,5566,0 +31887,%2A023,604,640,699567608,9031,0 +31889,Odprysk+Ksi%C4%99%C5%BCyca01,675,474,699574408,9592,0 +31890,Psycha+Siada,442,669,698807570,10411,0 +31891,Szulernia,380,380,7249451,7808,0 +31892,Lord+Lord+Franek+.%23093,517,322,698420691,9976,0 +31893,Pomidorowy+dzem,674,514,699598425,10728,0 +31894,Kiedy%C5%9B+Wielki+Wojownik,567,342,848915730,9976,2 +31895,216,433,335,7271812,6948,0 +31896,Ob+Konfederacja,434,338,848915730,8463,0 +31897,Wioska+barbarzy%C5%84ska,346,410,8503255,2580,0 +31898,Taran,340,576,6180190,9721,0 +31899,A0260,329,479,8841266,10252,0 +31900,Wrath+013,570,344,699756210,10273,0 +31901,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,629,1434753,6835,0 +31902,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F5,626,618,33900,10073,0 +31903,Wioska+barbarzy%C5%84ska,575,662,6818593,9835,0 +31904,ADEN,598,356,698588535,7220,0 +31905,cz+10+9,371,383,3909522,8185,0 +31906,%2A%2A34%2A%2A,664,441,849098782,9691,0 +31907,Wyspa+001,624,380,699756210,10273,0 +31908,019,361,604,699083129,5512,0 +31909,032.+Alesia,652,421,849091866,10479,7 +31910,033,607,641,849097799,7005,0 +31911,DOM+10,564,409,849064614,9815,0 +31912,%230189+Segadorr+dar,463,327,1238300,10178,0 +31913,Wioska+barbarzy%C5%84ska,677,468,699574408,8530,0 +31914,Chekku+-+meito,327,524,9280477,9976,0 +31915,Chekku+-+meito,326,530,9280477,9976,0 +31916,Wioska+Bochun10,324,471,7449254,9384,0 +31917,017+Wioska+Kolegi,613,362,6822957,10203,0 +31918,369%7C621+Wioska+barbarzy%C5%84ska,621,369,6822957,6705,0 +31919,Lord+Lord+Franek+.%23133,523,326,698420691,9798,0 +31920,Makemake,551,335,699797805,3699,0 +31921,WB+07,636,609,2269943,8298,0 +31922,%3D%7C31%7C%3D,647,398,9101574,10087,0 +31923,%2A219%2A,379,377,699273451,6296,0 +31924,oriental,454,665,8980651,9030,0 +31925,Wioska+barbarzy%C5%84ska,555,332,699072129,10220,0 +31926,cz+Wioska+76,370,385,3909522,4601,0 +31927,Wioska+barbarzy%C5%84ska,559,339,699072129,10216,0 +31928,024+Waldu%C5%9B+dzia%C5%82ej%21,375,623,6354098,10149,0 +31930,Wioska+barbarzy%C5%84ska,342,571,849012521,7488,0 +31932,Wioska+barbarzy%C5%84ska,566,661,6818593,9792,0 +31933,-+Arctos,551,326,699825236,6894,0 +31934,-+Dragon4,547,333,699825236,8966,0 +31935,Wonderwall,334,541,698962117,9036,0 +31936,Kentin+ufam+Tobie,328,453,699783765,10000,0 +31937,A.08+sp%C3%B3%C5%82dzielnia+gryzoni,561,334,699072129,9095,0 +31938,.%3A005%3A.,634,384,849098782,9085,0 +31939,Wioska+barbarzy%C5%84ska,672,469,699574408,10012,0 +31940,Grupka+7+wiosek+1,354,600,698353083,9654,0 +31941,-004-,539,326,698588812,7601,6 +31942,Taran,674,491,699598425,10728,0 +31943,025+Mom+to+gdzie%C5%9B+ida+do+dom,374,623,6354098,8730,0 +31944,Wioska+barbarzy%C5%84ska,555,336,699072129,10220,0 +31945,fff,489,322,698239813,10388,0 +31946,AAA,528,323,1006847,9666,0 +31947,NoeyPL,331,557,849000135,4958,0 +31948,0612,482,673,698650301,10019,0 +31949,Wrath+005,573,344,699756210,10273,0 +31950,Drakonia,551,329,699825236,5234,0 +31951,051,341,573,6853693,9866,0 +31952,03Wioska+barbarzy%C5%84ska,389,634,699704542,8398,0 +31953,D+024,673,513,8078914,10495,0 +31954,Wioska+Bochun10,327,516,7449254,10303,0 +31955,M181_031,340,431,393668,9676,0 +31956,BETON+055,624,618,699277039,6441,0 +31957,Ajuda,347,589,699494480,9737,0 +31958,Wioska+Bochun10,324,490,7449254,10495,2 +31959,SPOCENI+KUZYNI,411,650,848913998,3876,0 +31960,N002,341,570,272173,10208,0 +31961,Architekci+Plac%C3%B3w+Boju,330,552,8004076,9880,0 +31962,Sony+911,581,658,1415009,9774,0 +31963,Wioska+039,648,601,848971079,9761,0 +31964,020+toni,678,465,849098769,10971,0 +31965,Wioska+barbarzy%C5%84ska,450,330,699308637,8880,0 +31966,Sony+911,618,632,1415009,9841,0 +31967,023+serniczek+z+napojem,506,673,8954402,9783,0 +31968,Wioska+054,642,599,848971079,9761,0 +31969,Sam+fridhof+u%C5%82omow+i+pofirtnacow,328,465,699711723,4144,0 +31970,off+100+%25,339,571,849012521,8516,0 +31971,Gattacka,623,372,699298370,9449,0 +31972,B+035,671,531,8078914,9566,0 +31973,Wioska+042,649,599,848971079,9761,0 +31974,014.,636,393,699491076,9785,6 +31976,%5B017%5D+Kr%C3%B3lowie+klozet%C3%B3w,665,435,849095068,9312,0 +31977,%230143+Thorus5,470,324,1238300,6616,7 +31978,Wioska+barbarzy%C5%84ska,670,476,699574408,10022,0 +31979,Piek%C5%82o+to+inni,588,348,848956765,8846,0 +31981,045+Toporowa+cyrhla+II,378,377,848978297,2836,0 +31982,XDX,624,371,699098531,10822,0 +31983,Deveste+ufam+Tobie,394,638,699783765,9952,0 +31984,C0167,327,537,8841266,10252,0 +31985,Wioska+VI,584,342,698200480,6391,0 +31987,01+Kapitol,539,675,849097981,11321,0 +31988,%23019.+Wstyd+za+Artura,453,673,848896948,8649,0 +31989,emoriar,664,442,699574408,6088,0 +31990,Monetkownia,627,622,699759128,10237,0 +31991,Architekci+Plac%C3%B3w+Boju,335,556,8004076,9483,0 +31992,%23001%23,627,623,692803,9761,0 +31993,rotes+idz+spac+misiu,456,674,698807570,9623,0 +31994,21.+KaruTown,650,416,9238175,9711,0 +31995,E011,664,552,8428196,6999,0 +31996,Wioska+Bochun10,323,494,7449254,10311,0 +31997,01+tonieostatnieslowo,609,364,699861004,9593,0 +31998,055+komornicy,333,543,699510259,9545,0 +31999,V012,341,420,849097737,3379,0 +32000,Wioska+r+9,556,671,848915531,5887,0 +32001,%5B165%5D,649,585,8000875,8993,0 +32002,O62+Makeb,675,511,699272880,10402,8 +32003,Architekci+Plac%C3%B3w+Boju,333,553,8004076,8254,0 +32004,Wioska+barbarzy%C5%84ska,675,478,699574408,9439,0 +32005,Wioska+r+18,559,668,848915531,3306,0 +32006,%5BB%5D_%5B004%5D+Dejv.oldplyr,428,340,699380607,10495,0 +32007,Deveste+ufam+Tobie,398,641,699783765,10000,0 +32008,I023+Dzisiaj+spisz+w+szafie,666,463,699722599,10155,0 +32009,Orze%C5%82+Wyl%C4%85dowa%C5%82,460,673,698807570,10252,0 +32010,%5BB%5D_%5B008%5D+Dejv.oldplyr,426,344,699380607,10495,3 +32011,B+055,673,531,8078914,9738,0 +32012,Sony+911,618,631,1415009,10226,0 +32013,03Wioska+barbarzy%C5%84ska,389,632,699704542,8153,0 +32014,Bunkier+006,624,625,699778867,7628,0 +32015,090,662,559,699351301,1842,0 +32016,R+003+%7EAlisia%7E,488,678,699195358,10019,0 +32017,sony911,617,632,1415009,10228,0 +32018,Monetkownia,623,622,699759128,10237,0 +32019,Krytl13,509,321,1990750,9352,0 +32020,0043,675,465,698416970,8227,6 +32021,%24AtlantaHawks,677,523,699795378,7338,0 +32022,Centrum+3,651,405,1086351,5926,0 +32023,370%7C618+Wioska+barbarzy%C5%84ska,618,370,6822957,7942,0 +32025,Szlachcic,394,361,3484132,10484,0 +32026,Hello+hello,437,667,8966820,4124,0 +32027,%7C035%7C+Mandriko,495,678,699393742,10252,0 +32028,Wioska+Ida+Madame,578,344,698200480,5521,0 +32029,%2A234%2A,331,445,699273451,10057,0 +32030,Szlachcic,378,369,698160606,10481,1 +32031,Kreskowo+_1,592,646,699567608,9774,0 +32032,Wioska+barbarzy%C5%84ska,495,324,698239813,5852,0 +32033,1v9+machine,388,642,699697558,10019,0 +32034,%2A233%2A,332,443,699273451,10064,0 +32035,Szlachcic%2FTaran,638,396,699759128,10237,0 +32036,Osada+koczownik%C3%B3w,594,647,699567608,9243,2 +32037,Wioska+barbarzy%C5%84ska,485,366,699658023,9556,0 +32038,%2A041%2A,356,394,699273451,10211,0 +32039,Wioska+Bochun10,325,495,7449254,10311,0 +32040,C0048,322,521,8841266,10252,0 +32041,Wioska+DANIEL48,340,421,849073314,1192,0 +32042,Wioska+barbarzy%C5%84ska,504,679,699781762,10495,0 +32043,A007+Dumel,671,447,113796,10141,0 +32044,Wioska+barbarzy%C5%84ska,467,326,699191455,7786,0 +32045,SOKzGUMIjag%C3%B3d,594,353,849059491,10728,0 +32046,Ani+przed%2C+ani+po,609,365,699478692,5346,0 +32047,Wioska+malaula,374,377,699711706,9535,0 +32048,Wioska+Bochun10,329,473,7449254,10311,0 +32049,%2A240%2A,331,444,699273451,9769,0 +32050,Szlachcic,379,370,698160606,10476,0 +32051,044,456,333,2502956,9911,0 +32052,W%C4%85ski,541,351,849101144,4808,0 +32053,Wioska+Bochun10,331,473,7449254,10311,4 +32054,Y+%7C+Forest+Cyaaaanku,328,499,699213622,10000,0 +32055,006,535,673,2293376,9993,0 +32057,Deveste+ufam+Tobie,400,646,699783765,10000,0 +32058,Szale+%24%24%24,444,669,8966820,6922,0 +32059,016+Przerwa+na+szpuli%21,379,630,6354098,10143,0 +32060,Grupka+7+wiosek+Koszary,357,598,698353083,9808,5 +32061,XXXX,491,329,849054951,10161,0 +32062,050+Wioska,658,422,9238175,9660,0 +32063,-+290+-+SS,542,672,849018239,10000,7 +32064,Wioska+barbarzy%C5%84ska,661,580,478956,1427,0 +32065,013,606,635,849097799,8340,0 +32066,%2A229%2A,333,438,699273451,10211,0 +32067,A041,607,643,9023703,7981,0 +32068,Pomidorowy+dzem,676,516,699598425,9377,0 +32069,Westfold.007,345,422,848918380,10178,0 +32070,03Wioska+barbarzy%C5%84ska,386,631,699704542,8407,0 +32071,106,617,369,7085502,8011,0 +32072,%2A203%2A,344,412,699273451,8026,0 +32073,Ave+Why%21,470,655,699121671,9809,0 +32074,059+%7C+PALESTINA,657,414,9228039,6781,0 +32075,Y+%7C+Forest+Cyaaaanku,326,499,699213622,5700,0 +32076,AAA,536,330,1006847,9205,0 +32077,0575,552,671,698659980,9555,0 +32078,Wioska+conradox,473,654,848999671,9758,0 +32079,Bagienko.Anker...,371,386,699713515,3963,0 +32080,%5BB%5D_%5B002%5D+Dejv.oldplyr,420,346,699380607,10495,0 +32081,Psycha+Siada,441,669,698807570,10083,0 +32082,Wioska+Bochun10,328,492,7449254,7301,0 +32083,026,538,670,2293376,9993,0 +32084,Lord+Arsey+III,339,421,698349125,2768,0 +32085,81+Czwartek,522,330,2571407,3487,0 +32086,Bagdad,483,325,8847546,10068,0 +32087,Wioska+2,571,335,7560474,5024,0 +32088,Klan+Ognia,341,435,393668,6575,0 +32089,Piek%C5%82o+to+inni,586,348,848956765,5784,0 +32090,SOKzGUMIjag%C3%B3d,595,349,849059491,10838,0 +32091,Chekku+-+meito,325,531,9280477,10040,0 +32092,024,449,330,2502956,10019,0 +32094,218...barba,460,331,6920960,4257,0 +32095,New+World,496,676,698152377,10065,0 +32096,Wioska+barbarzy%C5%84ska,522,325,698350371,9235,0 +32097,Monetkownia,621,626,699759128,10237,0 +32098,niespodzianka+%3A%29,364,614,698908184,11874,9 +32099,Wioska+002,676,528,2999957,8061,0 +32100,Wioska+095,641,602,848971079,9761,0 +32101,Wioska+barbarzy%C5%84ska,680,496,699598425,10728,0 +32102,Wioska+klez+018,321,506,698295651,4556,0 +32103,026+Jo+Cie+dupia.exe,374,622,6354098,10146,0 +32104,Szlachcic%2FTaran,614,369,699759128,7242,0 +32105,Ob+Konfederacja,434,339,848915730,9836,4 +32106,027+minus+pi%C4%99%C4%87set,374,624,6354098,9585,0 +32107,BOTLEY,402,350,8123790,1704,0 +32108,A012+Dla+mpiechu+Killeros,671,456,113796,10160,0 +32109,.%3A020%3A.+kr,632,385,849098782,9088,0 +32110,ZUBRAWKA+050,615,631,33900,9982,0 +32111,Chekku+-+meito,332,535,9280477,9976,0 +32112,Wioska+043,647,598,848971079,9761,0 +32113,Osada+koczownik%C3%B3w,511,678,699781762,10057,8 +32115,NoeyPL+2,329,555,849000135,5414,0 +32116,D.024,395,645,849088243,3856,0 +32117,%2A031,596,650,699567608,9709,0 +32118,thats+not+gonna+be+easy,330,532,699523631,10141,0 +32119,Wioska+barbarzy%C5%84ska,568,659,6818593,9835,0 +32120,C0285,322,508,8841266,5933,0 +32121,A0261,324,483,8841266,10252,0 +32122,Nowa+33,660,579,698702991,10054,0 +32123,kto+ananasowy+pod+wod%C4%85+ma+dom,672,536,699628084,10030,0 +32124,AAA,539,327,1006847,9454,0 +32125,Wioska+klez+007,328,516,698295651,7879,0 +32126,Jednak+wol%C4%99+gofry,417,656,699736927,6303,0 +32127,090+Tomek,679,513,2135129,7510,0 +32128,Komornik+002,330,536,698290577,6616,0 +32129,Centrum+4,649,410,1086351,6220,0 +32130,27k%24+Grvvyq,657,576,699676005,10495,0 +32131,Wioska+Bochun10,327,474,7449254,10311,0 +32132,The+Game+Has+Only+Just+Begun,350,524,9280477,9976,0 +32133,Wioska+barbarzy%C5%84ska,370,395,848886056,7281,0 +32134,0071,418,347,699431255,6067,0 +32135,Deveste+ufam+Tobie,397,640,699783765,10000,0 +32136,Sin+City,563,334,8908544,5624,0 +32137,P%C3%B3%C5%82nocny+Bagdad,627,383,8847546,9835,0 +32138,O44+Derinkuyu,669,542,699272880,6761,0 +32139,Szlachcic,322,529,698388578,7509,0 +32140,000+Plutosea,328,540,9280477,9976,0 +32141,0075,420,348,699431255,6052,0 +32142,Wioska+Bochun10,323,473,7449254,7303,0 +32143,183.,352,592,849090130,7438,0 +32144,Lord+Lord+Franek+.%23172,516,321,698420691,12154,0 +32145,Bagdad,492,336,8847546,10068,0 +32146,007,536,673,2293376,9993,0 +32147,Bagdad,482,322,8847546,10068,0 +32148,I032,667,445,699722599,9775,0 +32150,%5B043%5D,650,587,698305474,3897,0 +32151,Ob+Konfederacja,446,337,848915730,7470,0 +32152,wioska+dla+myszy+nie+tyka%C4%87,591,583,8742874,9746,0 +32153,witojcie+pamponie+%2C,592,651,848995242,10426,0 +32154,.%3A010%3A.+ma,636,384,699406750,3540,0 +32155,A009+%C5%BBelazo,670,441,113796,10141,3 +32156,psycha+sitting,422,657,699736927,5664,0 +32157,Wioska+barbarzy%C5%84ska,404,652,699736927,6120,0 +32158,Architekci+Plac%C3%B3w+Boju,330,560,8004076,9646,0 +32159,k36,602,361,7340529,10654,0 +32160,%2A032,598,650,699567608,9717,0 +32161,Psycha+Siada,454,668,698807570,6994,0 +32162,Szulernia,386,365,7249451,2267,0 +32163,070+Wioska+010,659,428,9238175,9498,0 +32164,szkolna+17,353,604,849014147,2600,0 +32165,Wioska+barbarzy%C5%84ska,571,334,0,5498,0 +32166,052+Wioska+005,658,419,9238175,10323,0 +32167,08+Klasztor,539,673,849097981,8300,0 +32168,%3D%7C26%7C%3D,639,387,9101574,6019,0 +32169,%2A208%2A,343,414,699273451,10211,0 +32170,Wyspa+005,626,381,699756210,9120,0 +32171,AAA,528,324,1006847,9891,0 +32172,Wyspa+023,628,378,699756210,3607,0 +32173,067+komornicy,335,547,699510259,7785,0 +32174,%23%5B09%5D,430,662,699849210,5044,0 +32175,deff+100+%25,341,572,849012521,7919,0 +32176,A0271,327,475,8841266,9720,0 +32177,Wioska+barbarzy%C5%84ska,552,329,699797805,2687,0 +32178,Wioska+Bochun10,323,471,7449254,7202,0 +32179,%230193+Segadorr+dar,464,324,1238300,10178,0 +32181,nie+wolno,438,668,8966820,2453,0 +32182,0576,551,671,698659980,10019,0 +32183,Wioska+klez+003,328,513,698295651,9419,0 +32184,Wioska+Bochun10,327,491,7449254,10311,4 +32185,kathare,551,628,873575,10362,0 +32186,Wonderwall,333,548,698962117,9763,0 +32187,%2A%2A39%2A%2A,670,442,849098782,10195,0 +32188,%2A250%2A,334,448,699273451,8151,0 +32189,Myk+i+do+kieszonki,362,615,9319058,9902,0 +32190,Stolica,652,408,1086351,3706,0 +32192,Myk+i+do+kieszonki,365,615,9319058,7425,0 +32193,%23054.,666,432,556154,7268,0 +32194,Taran+010,622,360,2600387,10971,0 +32195,Kentin+ufam+Tobie,330,462,699783765,10069,0 +32196,R+001+%7EMicz%7E,488,677,699195358,10019,0 +32197,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,668,698807570,8524,0 +32198,%7E%7E088%7E%7E,630,616,7829201,8751,0 +32199,Gattacka,618,372,699298370,9769,1 +32200,-0007-,544,327,2972329,8720,0 +32201,Sony+911,581,657,1415009,7674,0 +32202,%2A%2A06%2A%2A,667,439,849098782,11954,0 +32203,B.01,675,496,699737356,10050,0 +32204,R+024,486,676,699195358,9390,0 +32205,marchewka,364,616,698908184,11824,0 +32206,%2A060%2A,349,411,699273451,10211,0 +32207,%2A232%2A,332,441,699273451,10211,0 +32209,Wioska+barbarzy%C5%84ska,429,335,699191464,8292,0 +32210,Wioska+Ukryta+w+Li%C5%9Bciach,360,603,8607734,7755,0 +32211,Wioska+barbarzy%C5%84ska,341,428,393668,6616,0 +32213,Tango,679,500,699737356,9282,0 +32215,V015,340,423,849097737,8793,0 +32216,Lord+Lord+Franek+.%23145,515,322,698420691,9882,0 +32217,Adidsa+4,412,652,9191031,3969,0 +32218,BETON+076,630,617,699277039,4662,0 +32219,O45+Fatsa,671,526,699272880,8631,0 +32220,AAA,519,322,1006847,9008,0 +32221,002,347,601,7183372,10476,0 +32222,054+California,674,519,2135129,9500,0 +32223,R+027,489,677,699195358,9758,0 +32224,UltraInstynkt-%2F%3D,577,338,699710633,9902,0 +32225,Wioska+barbarzy%C5%84ska,538,671,7589468,8836,0 +32226,Miasys+5,344,583,849090130,9953,0 +32227,002,675,490,699598425,8344,0 +32228,%2A059,585,659,699567608,9167,0 +32229,Garczyn,654,582,849039310,4273,0 +32230,024,611,633,849097799,7699,0 +32231,WB+01,638,617,2269943,8262,0 +32232,Y+%7C+Forest+Cyaaaanku,325,505,699213622,5480,0 +32233,__29__+Thorniara,377,622,6354098,3273,0 +32234,002,528,675,2293376,9993,0 +32235,A+008,368,619,699342219,6091,0 +32236,K34+x017,403,354,698364331,9661,0 +32237,Chekku+-+meito,327,525,9280477,9976,0 +32238,B+003,670,533,8078914,9924,6 +32239,005+Wioska+Plemienna,377,630,6354098,9787,0 +32240,123,477,675,9003698,10373,0 +32241,Wioska+barbarzy%C5%84ska,612,370,699759128,6481,0 +32242,Wrath+006,572,342,699756210,10401,0 +32243,Quattro,407,345,699854830,9727,0 +32244,Architekci+Plac%C3%B3w+Boju,336,553,8004076,9909,0 +32245,008+Alianz+Arena,673,458,849098769,9968,0 +32246,Wioska+barbarzy%C5%84ska,557,339,699072129,10221,0 +32247,Wioska+Bochun10,326,480,7449254,4967,0 +32248,Wioska1,581,655,699567608,7632,6 +32249,Wioska+barbarzy%C5%84ska,391,639,0,801,0 +32250,Piek%C5%82o+to+inni,593,346,848956765,5705,0 +32251,K34+x031,404,352,698364331,5612,0 +32252,008.,624,370,699098531,9954,0 +32253,Kiedy%C5%9B+Wielki+Wojownik,595,347,8632462,9842,0 +32254,Bagdad,490,326,8847546,9935,0 +32255,Kiedy%C5%9B+Wielki+Wojownik,568,339,848915730,9976,0 +32256,Wioska+barbarzy%C5%84ska,521,327,698350371,8027,0 +32257,Wioska+barbarzy%C5%84ska,678,483,699598425,10728,0 +32258,169...lord+rdw,450,327,6920960,6835,0 +32259,Neptun,552,335,699797805,4147,0 +32260,Wonderwall,333,545,698962117,9486,0 +32261,Piczki,648,410,1086351,3683,0 +32262,Nowa+41,664,571,698702991,9761,0 +32263,%230116+tomek791103,478,326,1238300,10178,0 +32264,kto+ananasowy+pod+wod%C4%85+ma+dom,667,540,699628084,8623,0 +32265,Wioska+038,650,596,848971079,9994,0 +32266,M181_013,339,436,393668,9885,0 +32267,Psycha+Siada,453,667,698807570,8600,0 +32268,%2A4602%2A+Du%C5%BCe+k%C5%82opoty,676,485,7973893,10287,2 +32269,I087,671,448,699722599,10227,0 +32270,Wioska+barbarzy%C5%84ska,341,426,393668,8194,0 +32271,%2A032,595,652,699567608,9706,0 +32272,Wioska+barbarzy%C5%84ska,554,333,699072129,10232,0 +32273,rotes+idz+spac+misiu,466,676,698807570,8604,0 +32274,AAA,531,323,1006847,6679,0 +32275,Wioska+Bochun10,331,470,7449254,6822,0 +32276,%23052.,665,430,556154,7636,0 +32277,Bromberg,352,595,8877156,8630,0 +32279,B005,472,674,8954402,10966,0 +32280,%23Sewa%23005,671,445,113796,9979,0 +32281,039+Brzezinki+akademia,377,376,848978297,4039,0 +32282,%2A164%2A,348,409,699273451,10211,0 +32283,%7C022%7C+Goudouras,494,680,699393742,9740,0 +32284,Orze%C5%82+Wyl%C4%85dowa%C5%82,466,673,698807570,10252,0 +32285,I024,665,445,699722599,9896,0 +32286,Myk+i+do+kieszonki,362,614,9319058,10495,0 +32287,028+Pa%C5%82a+na+hali%21,385,629,6354098,9798,0 +32288,Szlachcic%2FTaran,616,368,699759128,10237,0 +32289,Connecticut,676,522,699851345,6895,0 +32290,Wioska+barbarzy%C5%84ska,618,365,699857387,7142,0 +32291,.%3A011%3A.,635,381,849078297,3626,0 +32292,%23107+C,527,673,9037756,8682,0 +32293,Wioska+055,642,597,848971079,9761,0 +32294,Dejmon6,370,620,699805839,6037,0 +32295,Wioska+barbarzy%C5%84ska,675,466,699574408,9701,0 +32296,Piek%C5%82o+to+inni,564,357,848956765,10019,0 +32297,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,635,1434753,6481,0 +32298,Didek,666,562,849070946,10487,0 +32299,Wioska+barbarzy%C5%84ska,410,345,699380607,2563,0 +32300,105...tomcz,484,323,6920960,10425,0 +32301,R+006+%7EKsi%C4%85%C5%BC%C4%99%7E,487,679,699195358,9854,0 +32302,0097,411,352,699431255,2145,0 +32303,Wioska+barbarzy%C5%84ska,327,464,699823490,4232,0 +32304,Szlachcic,385,364,698160606,7932,0 +32306,031,478,671,698650301,10019,0 +32307,Homs,417,651,849089459,7871,0 +32308,D11,667,544,848995478,3481,0 +32309,003,655,592,699251542,4563,0 +32310,.%3A110%3A.+Niangmen,509,327,848934935,4302,0 +32311,013,359,605,699083129,8180,0 +32312,Piek%C5%82o+to+inni,588,349,848956765,9385,0 +32313,038+Assengard,475,677,699834004,11024,0 +32314,Wioska+barbarzy%C5%84ska,418,654,699736927,2032,0 +32315,63.+KaruTown,661,420,9238175,9741,0 +32316,A.09+sp%C3%B3%C5%82dzielnia+gryzoni,564,332,699072129,6010,0 +32317,015+Ard+Carraigh,467,669,699834004,9566,0 +32318,Bagdad,484,326,8847546,9976,0 +32319,Suppi,470,540,699856962,9623,0 +32320,665%7C552+Wioska+barbarzy%C5%84ska,665,552,6822957,6211,0 +32321,Istanbul,419,633,849089459,9628,0 +32322,Monetkownia,632,622,699759128,10237,0 +32323,Weso%C5%82ych+%C5%9Awi%C4%85t,564,336,848915730,5835,0 +32324,%7C020%7C+Livadia,496,673,699393742,10063,4 +32325,off+100+%25,337,568,849012521,10110,0 +32327,0611,484,674,698650301,9813,1 +32328,Wioska+P1ter,597,647,699567608,9431,0 +32329,Wioska+056,643,595,848971079,9761,0 +32330,Wioska+barbarzy%C5%84ska,322,502,7098955,8007,0 +32331,Ob+Konfederacja,430,334,848915730,8249,0 +32332,%2A191%2A,378,372,699273451,10211,0 +32333,C0163,328,538,8841266,10252,0 +32334,%5B008%5D+Zas%C5%82a%C5%82em+%C5%82%C3%B3%C5%BCko,669,436,849095068,10237,0 +32335,138...barba,444,338,6920960,6400,0 +32336,%2A168%2A,342,415,699273451,10026,0 +32337,B12,476,677,698652014,5928,0 +32339,M181_015,344,428,393668,9451,0 +32340,Szulernia,398,360,7249451,10000,0 +32341,AAA,530,329,1006847,9384,0 +32342,Wioska+Czesieekk,674,475,699574408,8956,0 +32343,Szlachcic,394,364,698160606,10487,0 +32344,Jednak+wol%C4%99+gofry,418,659,699736927,8168,0 +32345,D.017,402,650,849088243,6129,0 +32346,42+G%C3%B3ry+Smocze,620,368,8976313,6496,2 +32347,North+Savek,420,339,699796330,520,0 +32348,KR%C3%93L+PAPI+WIELKI,614,634,698191218,7463,0 +32349,%23081%23,622,633,692803,9761,0 +32350,024,361,607,699083129,8069,0 +32351,Po+%C5%9Bwi%C4%99tach,604,366,848915730,10503,0 +32352,Gattacka,619,374,699298370,9482,0 +32353,amator,560,666,848915531,5297,0 +32354,GuRu18.1,337,428,393668,5076,0 +32355,A-043-Hefitto,404,350,8419570,10168,0 +32356,C0056,321,525,8841266,10252,0 +32357,Sekou,675,512,699737356,10059,0 +32358,Brat+bierz,327,500,699262350,5358,0 +32359,Jednak+wol%C4%99+gofry,425,661,699736927,6886,0 +32360,Jednak+wol%C4%99+gofry,415,659,699736927,9727,0 +32361,Wioska+barbarzy%C5%84ska,338,423,2418002,3549,0 +32362,A.01+sp%C3%B3%C5%82dzielnia+gryzoni,565,335,699072129,10365,0 +32363,-+259+-+SS,536,677,849018239,7615,0 +32364,fff,492,322,698239813,9328,7 +32365,132...opelu,442,331,6920960,10470,0 +32366,Wioska+barbarzy%C5%84ska,502,673,699781762,10057,0 +32367,Sk_001,441,663,8954402,10728,0 +32368,ADEN,576,425,698588535,10203,0 +32369,064+Wioska+009,660,428,9238175,9739,0 +32370,Darma+dla+zawodnika,526,678,699494488,9553,0 +32371,%2A238%2A,334,445,699273451,9554,0 +32372,Darma+dla+zawodnika,523,679,699494488,10495,0 +32373,Wioska+Bochun10,330,474,7449254,7769,0 +32374,Magdalenakwa82,359,392,849084920,4129,2 +32375,A007,601,648,9023703,10237,0 +32376,223,424,338,7271812,8034,0 +32379,216,449,327,698365960,8006,0 +32381,Wioska+barbarzy%C5%84ska,573,659,6818593,9835,0 +32382,B+011,660,533,8078914,9924,0 +32383,Wioska+barbarzy%C5%84ska,333,439,393668,5890,0 +32384,081.+Pentele,654,408,849091866,9831,0 +32385,B.023,678,501,9188016,10000,5 +32386,Wioska+Bochun10,324,468,7449254,5230,0 +32387,11.+Tretogor,334,456,848910122,395,0 +32388,Wioska+r+19,554,669,848915531,11130,0 +32389,004,486,634,272173,9727,0 +32390,A001,600,646,9023703,10237,0 +32391,KR%C3%93L+PAPI+WIELKI,640,603,698191218,10000,0 +32392,%5B036%5D,667,549,698305474,8575,0 +32393,072.+Nia,644,614,8337151,10083,0 +32394,2.Getafe,563,669,698215322,7548,0 +32395,Svaneke,337,571,849098387,11678,0 +32396,003,496,632,848953066,9923,0 +32397,218,448,328,698365960,7372,0 +32398,Deveste+ufam+Tobie,397,642,699783765,10000,0 +32399,B+050,677,533,8078914,6858,0 +32401,C0042,323,520,8841266,10252,0 +32402,032%7C%7C+Hercules,486,644,849035525,10019,0 +32403,Szlachcic,397,352,3484132,10479,0 +32405,0070,412,349,699431255,8418,0 +32406,Przewidzia%C5%82e%C5%9B+%C5%BCe+ja+oddasz%3F,481,638,6948793,10068,0 +32407,Wioska+barbarzy%C5%84ska,519,327,698350371,8187,0 +32408,Jednak+wol%C4%99+gofry,499,641,699725436,10311,0 +32409,A.14+sp%C3%B3%C5%82dzielnia+gryzoni,561,332,699072129,8142,0 +32410,015,610,363,6822957,8807,0 +32411,%230197+Segadorr+dar,463,325,1238300,10178,0 +32412,D%C4%85browa+0023,349,591,849096972,3905,0 +32413,Wioska+VII,585,343,698200480,4679,0 +32414,Niszapur,430,658,849089459,4073,0 +32415,158+Nocny+Jastrz%C4%85b+003,644,403,699491076,10492,0 +32416,Architekci+Plac%C3%B3w+Boju,335,562,8004076,9880,0 +32417,%C5%BBUBR+.%3A%3A.B.E.T.O.N+%2F8,630,621,33900,10118,0 +32418,Sandacz,328,552,699265922,9888,0 +32419,025,360,608,699083129,7721,0 +32420,049,478,631,699336777,9902,0 +32421,Wioska+barbarzy%C5%84ska,511,674,699781762,9848,0 +32422,I%23028,620,363,2065730,9797,0 +32423,Wioska+07,501,322,951823,7040,0 +32424,070.+Parlim,645,612,8337151,10147,0 +32425,Wioska+barbarzy%C5%84ska,559,335,699072129,10221,0 +32426,002+Ceg%C5%82owa+wioska,367,619,8268010,9835,0 +32428,AAA,535,323,1006847,9561,3 +32429,003,608,642,849097799,9088,0 +32430,Grupka+7+wiosek+2,354,602,698353083,9646,0 +32431,Kiedy%C5%9B+Wielki+Wojownik,563,337,848915730,9976,0 +32432,K34+-+%5B155%5D+Before+Land,432,337,699088769,9199,0 +32433,C120,365,620,699383279,12111,2 +32434,Szlachcic,396,353,3484132,10475,0 +32435,Taran,341,585,6180190,9965,0 +32436,K34+x019,403,356,698364331,8824,0 +32437,Pstrag,326,546,699265922,7727,0 +32438,Architekci+Plac%C3%B3w+Boju,331,554,8004076,9880,0 +32439,K34+-+%5B156%5D+Before+Land,431,335,699088769,7906,0 +32440,Chekku+-+meito,322,527,9280477,9976,0 +32441,R+004+%7EKaprys%7E,490,679,699195358,10019,4 +32442,Y+%7C+Forest+Cyaaaanku,322,495,699213622,10000,0 +32443,K34+x020,404,355,698364331,8546,0 +32444,%5BB%5D_%5B045%5D+Dejv.oldplyr,431,340,699380607,10495,0 +32445,Ave+Why%21,481,673,699121671,9809,0 +32446,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,490,637,6180190,9560,0 +32447,Wioska+barbarzy%C5%84ska,677,489,699598425,10728,0 +32449,1v9+machine,392,642,699697558,10019,0 +32450,I052,672,457,699722599,9956,0 +32451,Wioska+Bochun10,323,474,7449254,8567,0 +32452,%2A%2A12%2A%2A,632,388,849098782,9956,0 +32453,%2A%2A08%2A%2A,670,431,849098782,12154,0 +32454,Kentin+ufam+Tobie,328,454,699783765,10000,0 +32455,109.Stradi,447,327,698365960,8691,0 +32456,Wioska+barbarzy%C5%84ska,337,564,849012521,2391,0 +32457,101.+Camulodunum,656,412,849091866,9969,4 +32460,Jednak+wol%C4%99+gofry,419,659,699736927,6397,0 +32461,007%7C%7C+Libra,488,647,849035525,10019,0 +32462,Wioska+Bochun10,323,465,7449254,4326,0 +32463,Orze%C5%82+Wyl%C4%85dowa%C5%82,461,674,698807570,9918,0 +32464,Wioska,328,457,848946608,3614,0 +32465,C+013,677,516,8078914,10495,0 +32466,aaaa,483,641,6948793,9976,0 +32467,cz+Wioska+79,366,381,3909522,4669,0 +32469,AJJ,345,585,7318415,2793,0 +32470,%2A255%2A,337,438,699273451,9841,0 +32471,Szulernia,379,366,7249451,3356,0 +32472,Taran,678,497,699598425,10728,0 +32473,A0272,323,485,8841266,10452,0 +32476,Szlachcic,392,360,3484132,10475,0 +32477,xdd,491,636,6180190,9936,0 +32478,Wioska+048,645,597,848971079,9761,0 +32479,057+%7C+PALESTINA,662,426,9228039,5287,0 +32480,Wyspa+003,627,381,699756210,9925,0 +32482,%230130+Thorus5,477,325,1238300,10178,0 +32483,Gattacka,621,373,699298370,10224,0 +32484,%2A044%2A,352,399,699273451,10211,0 +32485,004,677,487,7085502,9729,0 +32486,New+World,436,669,698152377,10295,0 +32488,Komornicy+023,353,603,699336777,6807,0 +32489,%7CA%7C+Farmeadow,482,646,698807570,10495,0 +32490,%230125+korniczeks,476,324,1238300,10178,0 +32491,A+012,368,620,699342219,6062,0 +32493,Barba2,651,408,1086351,4487,0 +32494,Jednak+wol%C4%99+gofry,489,640,699725436,9830,0 +32495,Jednak+wol%C4%99+gofry,486,640,699725436,9835,0 +32496,A0273,323,484,8841266,10252,0 +32497,0130,543,673,698659980,10019,0 +32498,X+%7C+Forest+Cyaaaanku,323,479,699213622,9828,0 +32499,R+010+%7EThe+end%7E,486,678,699195358,10019,0 +32500,Lord+Lord+Franek+.%23103,523,329,698420691,10160,0 +32501,019+Lux+robota%21,379,631,6354098,10141,0 +32502,O56+Fano,675,534,699272880,10234,0 +32503,Osada+koczownik%C3%B3w,625,630,1415009,10487,3 +32504,0412,533,672,698659980,8438,0 +32505,Wioska+barbarzy%C5%84ska,338,576,6180190,3941,0 +32506,005,322,466,848895676,2099,0 +32507,Wioska+barbarzy%C5%84ska,466,323,699191449,5487,0 +32508,%C5%BBUBR+PSYCHIATRYK+001,611,643,33900,8278,0 +32509,Wioska+barbarzy%C5%84ska,347,581,6180190,2461,0 +32510,bromberg,352,605,849014147,7700,6 +32511,12+%C5%81otwa,593,491,8925695,10341,0 +32512,Ave+Why%21,454,673,698585370,8053,0 +32513,Wioska+bprog,642,610,699432672,8183,0 +32514,Szulernia,382,367,7249451,8424,0 +32516,%5BB%5D_%5B030%5D+Dejv.oldplyr,424,344,699380607,9729,0 +32517,A+015,362,612,699342219,10237,0 +32518,Wioska+100,646,588,848971079,10418,0 +32520,B+051,674,542,8078914,6635,0 +32521,Szulernia,388,368,7249451,8760,0 +32522,008+.10.Panzergrenadier+Division,605,359,849091899,6162,0 +32523,Wioska+barbarzy%C5%84ska,509,674,699781762,9937,0 +32524,Deveste+ufam+Tobie,395,643,699783765,10000,5 +32525,Taran+004,622,375,699098531,10971,0 +32526,Ave+Why%21,446,669,698585370,9623,0 +32527,Wioska+r+2,555,669,848915531,5218,0 +32528,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,671,698807570,6973,0 +32529,0361,559,666,698659980,10160,0 +32530,sony911,615,632,1415009,10231,0 +32532,029+Firma+na+Pana+liczy%21,374,627,6354098,9842,0 +32533,C0192,322,531,8841266,7367,0 +32534,Wioska+barbarzy%C5%84ska,588,651,848995242,10238,0 +32536,0105,543,669,698659980,10160,0 +32537,66k%24+Grvvyq,658,569,699676005,7439,0 +32538,_PUSTA,672,552,699628084,10495,7 +32539,amator+czysta,557,665,848915531,5621,0 +32540,%2A242%2A,332,448,699273451,10336,0 +32541,Wioska+barbarzy%C5%84ska,350,598,7183372,6207,0 +32542,Wioska+barbarzy%C5%84ska,673,468,699574408,10029,0 +32543,%2A057%2A,354,400,699273451,10211,0 +32544,fff,493,321,698239813,9709,0 +32545,krytl09,515,320,1990750,10068,0 +32546,.009.+Love+Hate,501,377,698489071,10316,0 +32547,%2311,432,661,699849210,3830,0 +32548,Sekou+1,676,508,699737356,10083,0 +32549,Miasys+4,344,584,849090130,5967,0 +32550,AAA,531,322,1006847,6791,0 +32551,%230121+tomek791103,479,320,1238300,8327,0 +32552,%7C057%7C+Barba,498,679,699393742,8621,0 +32553,%230115+tomek791103,478,322,1238300,9993,0 +32554,K34+-+%5B157%5D+Before+Land,431,338,699088769,8708,0 +32555,V013,338,419,849097737,2307,0 +32556,Wioska+barbarzy%C5%84ska,670,452,113796,2170,0 +32557,012,357,607,699083129,7829,0 +32558,067,675,491,7085502,9725,0 +32559,%28006%29Rall+Elorim,334,567,849098695,10311,0 +32560,Wioska+Natka1968_05,526,324,699644852,1633,0 +32561,Myk+i+do+kieszonki,360,615,9319058,9799,0 +32563,Chekku+-+meito,326,528,9280477,9976,0 +32564,Wioska+barbarzy%C5%84ska,506,680,699781762,9898,0 +32565,%3A%3A%3A2%3A%3A%3AKoniki,450,666,699827112,10004,6 +32566,Grupka+7+wiosek+4,355,599,698353083,10025,0 +32567,%2A054%2A,353,400,699273451,10211,0 +32568,B+036,674,522,8078914,8703,0 +32569,052+Arizona,674,521,2135129,9553,0 +32570,%3D%7C25%7C%3D,637,388,9101574,10365,0 +32571,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,386,637,1434753,10068,0 +32572,%23Sk_011,438,662,699849210,3308,0 +32573,%23103+C,530,672,9037756,8348,0 +32574,w%C4%85chaj+wora+%21%21%21,589,654,848995242,10362,0 +32575,Wzdr%C4%99ga,329,550,699265922,9825,0 +32576,amator+czysta,552,665,848915531,5519,0 +32577,TWIERDZA+%232,587,343,849063793,4365,0 +32578,030,600,355,2502956,10019,0 +32579,O34+Sendai,676,523,699272880,9458,0 +32580,Taran,344,574,6180190,9957,0 +32581,C0043,323,519,8841266,10252,0 +32583,Kentin+ufam+Tobie,330,453,699783765,10019,0 +32584,1v9+machine,389,640,699697558,10019,0 +32585,Wioska+barbarzy%C5%84ska,461,326,699191449,8415,0 +32586,J04,365,597,849090130,6379,0 +32587,Parole,350,403,699595556,6048,2 +32588,018,361,606,699083129,4715,0 +32589,Wioska+Bochun10,328,517,7449254,10311,0 +32590,117,659,426,849088515,6830,0 +32591,Wioska+barbarzy%C5%84ska,552,333,699072129,10183,0 +32592,Weso%C5%82ych+%C5%9Awi%C4%85t,562,334,848915730,5199,0 +32593,008,356,606,699083129,9740,0 +32594,005+Schwere+Panzer-Abteilung+502,604,360,849091899,9797,0 +32596,Piek%C5%82o+to+inni,599,358,848956765,10160,0 +32597,polska,351,595,849014147,2192,0 +32598,witam+somsiadow,587,659,848995242,10170,0 +32599,A13,463,675,698652014,9889,3 +32600,XXXX,489,326,8847546,10178,0 +32601,Taran,338,573,6180190,9959,0 +32602,I088,672,448,699722599,8245,0 +32603,Komornicy+021,353,606,699336777,12154,0 +32604,D.028,395,647,849088243,3282,0 +32605,C.01,681,515,699737356,10143,0 +32606,Szlachcic%2FTaran,635,380,699759128,10237,0 +32607,0542,562,663,698659980,6533,0 +32608,Piek%C5%82o+to+inni,327,538,848956765,10160,0 +32609,Wrath+010,575,342,699756210,9814,0 +32610,A-051-Heffitto,401,348,8419570,10168,0 +32611,021+%2A+Lady+Porto+%2A,645,394,699406750,12154,0 +32612,182.,352,591,849090130,7537,0 +32613,%7E%7E094%7E%7E,630,615,699567608,10361,0 +32614,AAA,528,329,1006847,4793,0 +32615,Psycha+Siada,448,666,698807570,8628,0 +32616,1v9+machine,386,641,699697558,10019,0 +32617,030%7C%7C+Vela,468,679,849035525,10019,0 +32618,%2A239%2A,333,444,699273451,10211,0 +32619,Komornik+001,329,536,698290577,8249,0 +32620,Alfama,350,588,699494480,7471,0 +32621,001,362,610,699083129,9924,0 +32622,A0277,321,483,8841266,9381,0 +32623,UltraInstynkt%2B%2B,585,341,699710633,10068,0 +32624,Out+of+Touch,331,437,698962117,3906,0 +32625,Szale,463,676,698807570,10019,1 +32626,C0035,321,520,8841266,10252,0 +32627,M181_012,338,434,393668,9247,0 +32628,O64+Miryang,674,552,699272880,10351,0 +32629,Wioska+barbarzy%C5%84ska,557,328,699072129,10229,0 +32630,Wioska+barbarzy%C5%84ska,677,471,699574408,8157,0 +32631,A003,487,680,8954402,10083,0 +32632,Osada+koczownik%C3%B3w,623,628,1415009,10320,7 +32633,Taran,681,498,699598425,10728,0 +32634,%23079%23,618,636,692803,9761,0 +32635,146+Oj+Mareczku+co%C5%9B+za+du%C5%BCo+cyfr,372,580,699382126,6043,0 +32636,Sony+911,580,657,1415009,7141,0 +32637,Wie%C5%9B+Arhibitsusa,549,325,849098136,12154,0 +32639,Lord+Lord+Franek+.%23148,508,319,698420691,8463,0 +32640,%3D%7C10%7C%3D,638,387,9101574,10495,0 +32641,Wioska+barbarzy%C5%84ska,370,375,0,2028,0 +32642,Ave+Why%21,452,672,698585370,6001,0 +32643,025.,618,374,9048764,10654,0 +32644,%230126+korniczeks,474,323,1238300,10178,0 +32645,-+DragonB,547,327,699825236,6591,0 +32646,Ave+Why%21,478,679,699121671,9809,0 +32647,Normalnie+nie,575,569,699785935,10311,0 +32648,A+005,369,616,699342219,10237,0 +32649,Ob+Konfederacja,440,337,848915730,9763,0 +32650,002,668,564,699493750,7971,0 +32651,012,319,502,7097727,4394,0 +32652,Taran+009,623,367,699098531,10971,0 +32653,Architekci+Plac%C3%B3w+Boju,333,560,8004076,9880,0 +32654,064,452,332,2502956,10019,0 +32655,Pobozowisko,367,610,699513260,4946,0 +32656,Wsch%C3%B3d+Droga+007,665,559,698562644,5330,0 +32657,%23013.+Nobody+Like+Me,457,676,848896948,8590,0 +32658,016,614,360,6822957,8901,0 +32659,Wioska+Westor+2,358,394,699530673,4380,0 +32660,Wioska+barbarzy%C5%84ska,348,596,7183372,6647,0 +32661,Psycha+Siada,448,672,698807570,5029,0 +32662,Wioska+Cray123,373,380,699711706,1117,0 +32663,I025,667,447,699722599,9983,0 +32665,.%3A015%3A.,634,378,849078297,4763,0 +32666,-0006-,543,326,2972329,9750,0 +32667,AAA,532,322,1006847,9685,0 +32668,C0241,327,521,8841266,10252,0 +32669,Wioska+XIV,577,345,698200480,7784,0 +32670,Ob+Konfederacja,428,335,848915730,9791,0 +32671,%2A032,595,650,699567608,9004,0 +32672,Taran,342,581,6180190,9933,0 +32673,Psycha+Siada,462,670,8099868,730,0 +32674,044,673,511,699413040,9828,0 +32676,%5B025%5D+Wioska+barbarzy%C5%84ska,667,436,849095068,9312,0 +32678,%2A230%2A,332,438,699273451,10211,0 +32679,Ob+Konfederacja,437,335,848915730,9816,0 +32680,%2A008,598,646,699567608,9129,0 +32681,Wioska+barbarzy%C5%84ska,384,371,698160606,7533,0 +32682,%7C025%7C+RIO,499,680,699781762,8864,0 +32683,Szlachcic%2FTaran,634,391,699759128,10104,0 +32684,097...tomecz,480,326,6920960,10217,0 +32685,-+Apokalipto181,547,328,699825236,9349,0 +32686,Lord+Lord+Franek+.%23092,515,324,698420691,9976,0 +32687,KR%C3%93L+PAPI+WIELKI,634,614,698191218,10000,0 +32688,SOKzGUMIjag%C3%B3d,594,347,849059491,9089,0 +32689,Kentin+ufam+Tobie,335,455,699783765,10005,0 +32690,Wioska+barbarzy%C5%84ska,343,424,393668,6553,0 +32691,014+zs+1,675,503,2135129,9586,0 +32692,Wioska+090,659,587,848971079,9761,0 +32693,053+komornicy,332,545,699510259,9761,0 +32694,Szlachcic,393,358,3484132,10476,0 +32695,Monetkownia,621,631,699759128,10104,0 +32696,106.Stradi,454,328,698365960,10390,0 +32697,Certa,333,552,699265922,10297,4 +32698,217,433,332,7271812,10429,0 +32699,A+018,363,619,699342219,10749,0 +32700,UltraInstynkt%3D,579,338,699710633,10068,0 +32701,Wioska+barbarzy%C5%84ska,672,475,699574408,9430,0 +32703,%230199+Segadorr+dar,458,325,1238300,10178,0 +32704,A.03+sp%C3%B3%C5%82dzielnia+gryzoni,560,333,699072129,9640,0 +32705,Wioska+barbarzy%C5%84ska,465,325,699191455,6124,0 +32706,-24-,629,376,699837826,2471,0 +32707,J%23011,569,333,2065730,8802,0 +32708,Wioska+barbarzy%C5%84ska,554,336,699072129,10226,0 +32709,2.4,371,382,849095959,1941,0 +32710,Wioska+barbarzy%C5%84ska,355,603,849014147,2365,0 +32711,Muchomor+%2A017%2A,520,674,606407,10300,0 +32712,013,457,329,2502956,10019,0 +32713,Bania+u+Cygana,342,412,849098299,3396,0 +32714,Szlachcic%2FTaran,641,395,699759128,10237,0 +32715,Wioska+barbarzy%C5%84ska,630,378,7555180,5998,0 +32716,A004,493,679,8954402,8683,0 +32717,Wioska+Sir+Zordon+002,666,574,478956,6251,0 +32718,%24MinnesotaTimberwolves,680,519,699795378,6768,0 +32719,Niby+01,357,605,8607734,5918,0 +32720,0441,537,669,698659980,8705,0 +32721,Sekou,674,509,699737356,10059,0 +32722,077.+Acyra,653,409,849091866,10057,7 +32723,S-F.+Elektryczna+Mysz,662,579,849098693,6732,0 +32724,Chekku+-+meito,326,525,9280477,9976,0 +32725,%230071+tomek791103,478,331,1238300,10178,0 +32726,Deveste+ufam+Tobie,400,643,699783765,10000,0 +32727,hell,649,406,1086351,7930,8 +32728,018,460,327,2502956,10019,0 +32729,080+%C5%9Awi%C4%85teczna+Bombka,649,399,699491076,10001,0 +32730,0294,547,671,698659980,10160,0 +32731,V011,338,417,849097737,4179,0 +32732,Wioska+XIII,582,343,698200480,7794,0 +32733,Pretoria+1,558,331,699072129,10252,0 +32734,A0282,325,484,8841266,10252,0 +32735,Nie,441,666,8966820,2235,0 +32736,Szlachcic,381,369,698160606,7652,0 +32737,083+Ludzie+tu+nikogo+nie+ma,332,571,699382126,10495,0 +32738,AAA,531,326,1006847,9766,0 +32739,%2A002%2A,357,388,699273451,10211,0 +32740,%230114+tomek791103,479,323,1238300,10178,0 +32741,Brown,492,675,849004274,9835,0 +32742,SOKzGUMIjag%C3%B3d,594,346,849059491,4487,0 +32743,Horyzont+zdarze%C5%84,514,680,7581876,10019,0 +32744,%5B026%5D+Wioska+barbarzy%C5%84ska,667,434,849095068,9312,0 +32745,Wioska+Samuraj,500,320,698680806,8791,0 +32746,Wioska+barbarzy%C5%84ska,436,331,699308637,9887,0 +32747,002+Po%C5%BCarski+na+wynos,479,660,698650301,8803,0 +32748,Taran,337,575,6180190,9959,0 +32750,Piek%C5%82o+to+inni,591,350,848956765,8789,0 +32751,%C5%BBUBRAWKA+057+.%3A%3A.nic+tu+nie+ma,613,643,33900,10247,0 +32752,Gudhjem,335,569,849098387,8341,0 +32753,%23005%23,619,636,692803,9761,0 +32754,059,534,670,2293376,9993,0 +32755,Myk+i+do+kieszonki,363,615,9319058,7780,0 +32756,AAA,528,321,1006847,9295,0 +32758,Redemption+Song,645,604,2269943,8394,0 +32759,Setubal,349,590,699494480,9625,2 +32760,V010,340,418,849097737,4473,0 +32761,037,530,677,2293376,9993,0 +32762,Wyspa+010,628,376,699756210,10273,0 +32763,%23065%23,624,623,692803,9761,0 +32764,B05,476,679,698652014,9835,0 +32765,052,675,515,699413040,6947,0 +32766,%23004%23,629,632,692803,9761,0 +32767,R%C4%99cznik+do+zmiany,355,405,699697558,10019,0 +32768,Miami%2C+Floryda,603,371,7462660,10444,0 +32769,B.02,675,493,699737356,8748,0 +32770,1v9+machine,391,642,699697558,10019,0 +32771,lolo,625,628,849092639,2334,0 +32772,R%C4%99cznik+do+zmiany,354,403,699697558,10019,0 +32773,025+Nowy+rok,356,611,8268010,4971,0 +32774,084,627,373,2502956,7029,0 +32775,%2A%2A36%2A%2A,668,441,849098782,10643,0 +32776,SJ3,327,449,6258092,10495,0 +32777,Wioska+barbarzy%C5%84ska,382,370,698160606,7544,0 +32778,Barbababarba,345,409,849098299,2703,0 +32779,Kentin+ufam+Tobie,323,461,699783765,10000,0 +32782,AAA,540,325,1006847,4465,0 +32783,Jehu_Kingdom_69,664,436,8785314,670,0 +32784,Wioska+barbarzy%C5%84ska,680,482,699598425,10728,0 +32785,125.+Bezmiar+Wschodni+Daleki,644,400,8337151,7143,0 +32786,Westfold.016,338,427,848918380,8361,0 +32787,%5BB%5D_%5B029%5D+Dejv.oldplyr,424,343,699380607,10365,0 +32788,Taran+022,639,381,699098531,10728,0 +32789,WB+02,639,611,2269943,8295,0 +32790,A004+PASTOR,663,449,113796,10160,0 +32791,46.+KaruTown,641,400,849091866,6879,0 +32792,Szlachcic,387,361,698160606,10476,0 +32793,042,522,680,2293376,9993,0 +32794,0017,628,389,848924219,4835,0 +32795,122...tomcz,477,321,6920960,10273,0 +32796,%5B02%5D,428,662,699849210,8235,3 +32797,Wioska+barbarzy%C5%84ska,663,560,849045915,8108,0 +32798,0656,551,670,698659980,9505,7 +32799,009,525,673,2293376,8640,0 +32800,Taran,342,583,6180190,9968,0 +32801,%7C061%7C+Id%C4%85+%C5%9Awi%C4%99ta,509,681,699781762,10006,0 +32802,%3D%7C37%7C%3D,640,390,9101574,10495,0 +32803,AJY,343,586,7318415,3663,0 +32804,Lord+Lord+Franek+.%23147,508,323,698420691,10101,0 +32805,Szulernia,374,374,7249451,3233,0 +32806,0124,411,347,699431255,5082,0 +32807,A0262,328,476,8841266,10252,2 +32809,C0148,324,532,8841266,9472,0 +32810,26.+335i,552,326,699072129,10697,0 +32812,Wioska+barbarzy%C5%84ska,630,380,7555180,9027,0 +32814,Wioska+barbarzy%C5%84ska,675,470,699574408,9950,0 +32815,Lord+Lord+Franek+.%23134,519,328,698420691,7389,0 +32817,012,591,351,7340529,9783,0 +32818,0444,559,670,698659980,8776,0 +32819,%28011%29Panatham,332,567,849098695,8946,0 +32820,_PUSTA,650,591,698768565,10237,0 +32821,002+Rabarbarum,592,343,699576407,7505,0 +32822,Brat447,391,499,699262350,10971,0 +32823,006,322,476,7127455,7707,0 +32824,025+g%C3%B3ra,661,433,9238175,10508,0 +32825,%230122+tomek791103,480,319,1238300,9353,0 +32826,Zach%C3%B3d+002,369,387,8967440,3516,0 +32827,%230113+tomek791103,477,322,1238300,10178,0 +32828,Wioska+Sir+Zordon,665,574,478956,8909,0 +32829,krytl01,510,319,1990750,9821,0 +32830,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,673,698807570,9854,6 +32831,Wioska+JasJ,573,341,7560474,11083,0 +32832,kto+ananasowy+pod+wod%C4%85+ma+dom,675,538,699628084,8315,0 +32833,%2A059%2A,350,410,699273451,10211,0 +32834,Wioska+r+10,557,671,848915531,4257,0 +32835,-+295+-+SS,544,677,849018239,8542,0 +32836,Wioska+barbarzy%C5%84ska,353,402,699323302,2403,0 +32837,-+291-+SS,544,675,849018239,9615,0 +32838,Wioska+Sir+Zordon+003,664,576,478956,7431,0 +32839,Szlachcic%2FTaran,640,394,699759128,10237,0 +32840,AAA,530,321,1006847,7040,0 +32841,32.+Sophisticated,557,330,699072129,10220,0 +32842,A+052,369,625,699342219,9279,0 +32843,Wioska+barbarzy%C5%84ska,554,332,699072129,10221,0 +32844,054.+Eldor,657,590,8337151,10083,0 +32845,X+%7C+Forest+Cyaaaanku,322,477,699213622,8748,0 +32846,Freytaga+II,641,609,2269943,8124,0 +32847,2.Leganes,563,668,698215322,5004,0 +32848,Szlachcic%2FTaran,640,397,699759128,10104,0 +32849,Wioska+barbarzy%C5%84ska,629,380,699837826,3403,0 +32850,Wioska+barbarzy%C5%84ska,350,603,7183372,7210,0 +32851,MMMMMM,490,324,698239813,10340,0 +32852,Grvvyq+108k%24,680,530,699676005,10184,0 +32853,D.005,403,648,849088243,8503,0 +32854,046+%7C+PALESTINA,657,419,9228039,9544,0 +32855,Taran,344,580,6180190,9328,0 +32857,Westfold.019,336,428,848918380,8642,0 +32858,R+018+%7EMorthal%7E,487,675,699195358,9854,0 +32859,107,593,649,849097799,8555,0 +32860,Pikachu,550,327,849098136,5708,0 +32862,Wioska+barbarzy%C5%84ska,675,476,699574408,9934,0 +32863,A001,492,678,8954402,10495,0 +32864,%230095+barbarzy%C5%84ska,472,329,1238300,9533,0 +32865,Tykocin,576,658,6818593,9835,0 +32866,Jednak+wol%C4%99+gofry,419,656,699736927,7473,0 +32867,Wioska+Brzydal+3-5,669,553,9151549,3212,0 +32868,DejMon4,366,622,699805839,9715,0 +32869,Szlachcic,383,366,698160606,9989,0 +32870,DejMon,371,620,699805839,9182,0 +32871,Wioska,327,454,848946608,2846,0 +32872,Kentin+ufam+Tobie,329,454,699783765,10000,0 +32873,Ave+Why%21,445,672,698585370,9085,0 +32874,%2AINTERTWINED%2A,517,679,698704189,7279,0 +32875,Szlachcic,398,355,3484132,10481,0 +32876,Wioska+b1,503,317,6118079,7616,0 +32877,004+Wioska+barbarzy%C5%84ska,606,505,6409472,4488,0 +32878,02.Twoje+Offy,448,670,361125,3786,0 +32879,TAKE+It,578,338,699710633,9994,0 +32880,A+006,366,619,699342219,8643,0 +32881,SPOCENI+KUZYNI,408,649,848913998,5902,0 +32882,Niby+02,355,602,8607734,10019,0 +32883,-+255+-+SS,537,676,849018239,8132,0 +32884,Szlachcic,382,366,698160606,10675,0 +32885,038+Boru1996+%232,375,630,6354098,10143,0 +32886,Wioska+barbarzy%C5%84ska,460,325,849017820,5191,0 +32887,AAA,536,324,1006847,9246,0 +32888,BB1,650,409,1086351,4535,0 +32889,%3A%3A%3A2%3A%3A%3AKoniki,450,667,699827112,8028,0 +32890,%23104+C,529,672,9037756,8821,0 +32891,053,458,329,2502956,9813,0 +32892,224,420,337,7271812,7492,0 +32893,Wioska+3,574,334,7560474,6320,0 +32894,004+LordDaymon,378,630,6354098,9330,0 +32895,-009-,541,325,698588812,3305,0 +32896,Darma+dla+zawodnika,521,678,699494488,9112,0 +32897,Wioska+%231,589,344,849063793,3759,0 +32899,Zeta+Reticuli+W,359,398,699323302,6281,0 +32900,%2A062%2A,349,412,699273451,10211,0 +32901,030.,633,378,698361257,3976,0 +32902,%230049+geryk,470,329,1238300,10178,0 +32903,Brickstone,647,404,1086351,2647,0 +32904,Wioska+Bochun10,325,471,7449254,10311,0 +32905,Wioska+barbarzy%C5%84ska,351,603,7183372,7558,0 +32906,Wioska+barbarzy%C5%84ska,639,383,7340529,10654,0 +32907,Adam%C3%B3w,568,665,698723158,8102,0 +32908,Maradonna,623,625,699778867,12154,0 +32909,I006,666,448,699722599,9841,0 +32910,Psycha+Siada,445,669,698807570,5579,0 +32911,Wioska+ba15,496,324,6118079,7021,0 +32912,Guru18,332,431,849098192,6610,0 +32913,Wioska+barbarzy%C5%84ska,376,374,699711706,3812,0 +32914,Wioska+Bochun10,322,469,7449254,7031,0 +32916,02.+Novigrad,331,449,848910122,10539,0 +32917,Barba,414,660,849089459,3741,0 +32918,R%C4%99cznik+do+zmiany,351,407,699697558,10019,0 +32919,021,483,372,849010255,8696,0 +32920,030+Maaooooo%21,383,633,6354098,10144,0 +32921,Szlachcic,392,353,3484132,10476,0 +32922,A14,466,674,698652014,9906,0 +32923,Osada+koczownik%C3%B3w,675,479,699574408,9722,2 +32924,Pretoria+3,558,332,699072129,10229,0 +32925,043,449,548,698290577,876,0 +32926,C0027,320,515,8841266,10252,0 +32927,046+Numer,658,420,9238175,10157,0 +32928,Lord+Arsey+KING,518,490,848956513,10285,0 +32930,Wioska+barbarzy%C5%84ska,342,424,393668,6602,0 +32932,056+Wioska+001,659,418,9238175,10400,0 +32933,Wioska+barbarzy%C5%84ska,557,331,699072129,10217,0 +32934,060,530,679,2293376,9651,0 +32935,C0071,322,514,8841266,10252,0 +32936,Y+%7C+Forest+Cyaaaanku,320,489,699213622,10000,0 +32937,Komornik+005,326,537,698290577,6305,0 +32939,Szlachcic,383,362,698160606,10476,0 +32941,Lord+Lord+Franek+.%23135,527,321,698420691,8140,0 +32942,0011+MzM,614,556,698416970,9258,0 +32943,New+World,438,671,698152377,10290,0 +32945,Lin,330,550,699265922,7729,0 +32946,Osada+koczownik%C3%B3w,403,654,699736927,6184,7 +32947,Did,669,562,849070946,10971,0 +32948,0307,552,675,698659980,9015,0 +32949,ZUBRAWKA+052+pinkolinka,615,637,33900,10222,0 +32950,New+Land+23,344,413,849064752,2456,0 +32951,Piek%C5%82o+to+inni,589,351,848956765,9761,0 +32952,Wioska+barbarzy%C5%84ska,639,526,7047342,10484,0 +32953,%C5%BBubr+.%3A%3A.+Metanol+Lecter%2F6,610,637,33900,8167,0 +32954,%230185+KacperII,466,322,1238300,5732,3 +32955,%2A220%2A,370,376,699273451,5711,0 +32956,188...Segador+M,445,329,6920960,9337,0 +32957,029.xxx,494,677,699393742,7869,0 +32958,%5B020%5D,635,529,698305474,9809,0 +32959,X+%7C+Forest+Cyaaaanku,325,499,699213622,5223,0 +32960,Wioska+barbarzy%C5%84ska,620,366,699857387,6705,0 +32961,Wioska+barbarzy%C5%84ska,344,592,7183372,7453,0 +32962,Wioska+barbarzy%C5%84ska,503,678,699781762,10495,0 +32963,005,676,486,7085502,9726,0 +32964,Wioska+060,652,595,848971079,9761,0 +32965,Centrum+7,648,408,1086351,2925,0 +32966,Wioska+barbarzy%C5%84ska,641,531,7047342,10617,0 +32968,Y+%7C+Forest+Cyaaaanku,318,488,699213622,10000,0 +32969,TWIERDZA+%234,584,341,849063793,3997,0 +32970,100...tomecz,481,322,6920960,10474,0 +32971,DejMon8,366,623,699805839,4298,0 +32972,Szlachcic%2FTaran,633,380,699759128,9914,0 +32973,Psycha+Siada,440,669,698807570,10122,0 +32974,J%23021,582,339,2065730,9797,0 +32975,%2A049%2A,350,400,699273451,10211,0 +32976,%2A050%2A,360,393,699273451,10211,0 +32977,104.Stradi,455,327,698365960,9817,0 +32978,A042,609,645,9023703,8730,0 +32979,%2A042%2A,359,390,699273451,10211,0 +32980,Wioska+barbarzy%C5%84ska,495,326,6118079,4157,0 +32981,Wioska+barbarzy%C5%84ska+x,650,602,1900364,9547,0 +32982,Out+of+Touch,329,444,698962117,9505,0 +32984,Lord+Lord+Franek+.%23194,611,358,698420691,9843,0 +32985,Mekka,475,656,849089459,11078,0 +32986,%2A217%2A,370,377,699273451,6467,0 +32987,Didek,667,559,849070946,10160,0 +32988,AAA,536,326,1006847,7595,0 +32989,Wioska+barbarzy%C5%84ska,351,600,7183372,6672,0 +32990,Wioska+r+6,560,668,848915531,5474,0 +32991,New+World,431,671,698152377,10294,0 +32992,AAA,537,323,1006847,6512,0 +32993,026,609,639,849097799,7478,0 +32994,020,411,657,699736927,6365,0 +32995,%5B018%5D+Hans+Klop+s,665,438,849095068,9312,0 +32996,Jednak+wol%C4%99+gofry,419,661,699736927,7906,0 +32997,Vanaheim,626,377,699837826,10310,0 +32998,%2A163%2A,345,411,699273451,10211,0 +32999,Wioska+barbarzy%C5%84ska,523,320,698350371,7571,0 +33000,Mroczny+Zamek+019,384,640,699269923,10239,0 +33001,cz+110+3,369,379,3909522,8456,0 +33002,zachod+002,369,383,8967440,10393,0 +33003,Monetkownia,622,629,699759128,10237,0 +33004,0006,673,465,699574408,9391,0 +33005,59.+KaruTown,662,433,9238175,9711,0 +33006,Jaaa,676,489,698635863,10479,0 +33008,Bunkier+007,621,625,699778867,6253,0 +33009,Liniewo,656,589,849039310,12154,0 +33010,Gold+dream,647,403,1086351,4052,0 +33012,Wioska+barbarzy%C5%84ska,518,324,698350371,7794,0 +33013,%3D%7C27%7C%3D,641,389,9101574,10495,9 +33014,056,676,501,699413040,8986,0 +33015,041,535,671,2293376,9993,0 +33016,Wsch%C3%B3d+Droga+009,673,556,698562644,4584,0 +33017,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,673,698807570,10252,0 +33018,Wioska+barbarzy%C5%84ska,505,680,699781762,10057,0 +33019,Lord+Lord+Franek+.%23186,545,330,698420691,11489,0 +33020,I039,669,454,699722599,9811,0 +33021,%5BB%5D_%5B018%5D+Dejv.oldplyr,421,342,699380607,10495,0 +33022,220,427,336,7271812,6431,0 +33024,Wioska+barbarzy%C5%84ska,430,335,699308637,9215,0 +33027,J%23023,573,338,2065730,9938,5 +33029,Osada+koczownik%C3%B3w,503,676,699781762,10495,3 +33030,%23046.521%7C496,640,447,556154,9735,0 +33031,%230190+Segadorr+dar,460,328,1238300,10178,0 +33032,05+Bor%C3%B3wka,646,605,8224678,2020,0 +33034,A-049-Heffitto,403,348,8419570,10168,0 +33035,Wioska+VIII,582,346,698200480,6874,0 +33036,%C5%BBUBRAWKA+054,612,643,33900,9791,0 +33037,BAC%C3%93WKA+%7C038%7C,634,395,7394371,11307,0 +33038,Wioska0,578,659,699567608,9584,0 +33039,A+013,369,620,699342219,6395,0 +33041,Wonderwall,325,550,698962117,9486,0 +33042,Szlachcic,396,356,3484132,10478,0 +33043,Szlachcic%2FTaran,639,393,699759128,10237,0 +33044,071+komornicy,326,547,699510259,6976,0 +33045,X+%7C+Forest+Cyaaaanku,323,478,1536625,10052,0 +33046,Wioska+barbarzy%C5%84ska,679,472,699574408,9737,0 +33048,Ob+Konfederacja,436,336,848915730,8463,0 +33049,A002,491,677,8954402,9861,0 +33050,Psycha+Siada,449,667,698807570,8160,0 +33051,Pluszaki,325,536,698338524,5828,0 +33052,Ave+Why%21,449,674,698585370,4975,0 +33053,48.+KaruTown,642,400,699491076,7971,0 +33054,020+%2A+Lady+Porto+%2A,646,394,699406750,12154,0 +33055,%2A071%2A,360,387,699273451,10211,0 +33056,Deveste+ufam+Tobie,396,645,699783765,10000,0 +33057,%2A%2A42%2A%2A,672,443,849098782,8347,0 +33058,098.+Heraclea,657,409,849091866,5194,0 +33059,%2A058%2A,357,400,699273451,10211,0 +33060,Taran,342,575,6180190,9343,0 +33061,Szlachcic,391,356,3484132,10475,0 +33062,Orze%C5%82+Wyl%C4%85dowa%C5%82,463,672,698807570,5279,9 +33063,Wioska+Bochun10,323,472,7449254,6466,0 +33064,X+%7C+Forest+Cyaaaanku,320,474,1536625,9976,0 +33065,Wioska+barbarzy%C5%84ska,513,676,699781762,10495,0 +33066,New+World,493,675,698152377,10136,0 +33067,%23053%23,626,626,692803,9761,0 +33068,AAA,535,321,1006847,6720,0 +33069,--19--,348,591,8877156,7537,0 +33070,014+.2.+Infanterie-Division,606,354,849091899,3878,0 +33071,D03,667,553,848995478,9993,0 +33072,Wioska+barbarzy%C5%84ska,679,471,699574408,8917,0 +33073,dalej+nie+id%C4%99+%21%21%21,590,655,848995242,10492,0 +33074,Jednak+wol%C4%99+gofry,419,663,699736927,5908,0 +33075,031+Czemu+mnie+maszyna+stoi%3F,383,632,6354098,10160,0 +33076,Lord+Lord+Franek+.%23108,512,325,698420691,10559,0 +33077,0607,481,678,698659980,8795,0 +33078,ABD,660,412,1086351,4282,0 +33079,037+Boru1996,374,630,6354098,10141,0 +33081,R+016+%7ESamotnia%7E,483,678,699195358,10019,0 +33082,%5B334%5D+Mroczna+Myszka+ZBUD,584,424,848985692,10530,0 +33083,029.+Night+Raid-,471,675,699684062,10845,0 +33084,%5BB%5D_%5B001%5D+Dejv.oldplyr,422,344,699380607,10495,0 +33085,011,592,351,7340529,8855,0 +33086,tego+nie,528,674,699494488,9808,0 +33087,096.+Naissus,656,409,849091866,5716,0 +33088,044+rychuzdk002,659,420,9238175,10470,0 +33089,%2A260%2A,333,437,699273451,4394,0 +33090,0609,480,675,698650301,10019,0 +33091,TWIERDZA+.%3A052%3A.,668,561,7154207,10787,0 +33092,%7E%7E089%7E%7E,634,618,7829201,8837,0 +33093,Theoden+King,460,676,848896948,9999,2 +33094,Taran,681,490,699598425,10728,0 +33095,BETON+070,630,618,699277039,4366,0 +33096,%7C033%7C+Macheria,497,676,698152377,10083,0 +33097,C0274,325,512,8841266,7707,0 +33098,Naggaroth,413,653,699736927,8506,0 +33099,022,430,491,699510259,9861,0 +33100,Wioska+barbarzy%C5%84ska,402,653,699736927,4837,0 +33101,Mietus,324,547,699265922,9761,0 +33102,22.+Szeksox+1,678,478,699804790,10237,0 +33103,Lord+Lord+Franek+.%23187,542,331,698420691,9792,0 +33104,p%C4%99czek+drutu,612,359,1990750,9647,0 +33105,A011,607,647,9023703,10311,0 +33107,%2A158%2A,340,412,699273451,10211,0 +33108,K36+-+%5B004%5D+Before+Land,625,370,699088769,9925,0 +33110,O31+Kumogakure,673,542,699272880,9270,0 +33111,%5B041%5D,654,587,698305474,8189,0 +33112,099.+Drobeta,656,410,849091866,8251,0 +33113,Kentin+ufam+Tobie,328,463,699783765,10064,0 +33114,367%7C617+Wioska+barbarzy%C5%84ska,617,367,6822957,9805,0 +33115,xxx,626,369,6625437,9687,0 +33116,Wioska+barbarzy%C5%84ska,461,329,699191455,6394,0 +33117,XDX,610,358,699098531,10544,0 +33118,Wioska+barbarzy%C5%84ska,335,424,2418002,6696,0 +33119,Wioska+Misiaczki,612,366,699759128,7688,0 +33120,Orze%C5%82+Wyl%C4%85dowa%C5%82,465,672,698807570,9854,0 +33121,998+Stoch,665,423,699491076,9459,0 +33122,O54+Aasiaat,674,535,699272880,9694,0 +33123,P.P.,593,568,8742874,4745,0 +33124,psycha+sitting,425,658,699736927,6191,0 +33125,051...OPEL,441,329,6920960,10495,0 +33126,C+004,681,521,8078914,6696,0 +33127,%21XXX,337,563,849012521,10259,0 +33128,--20--,349,598,8877156,7119,0 +33129,Wioska+barbarzy%C5%84ska,515,536,7581876,6945,0 +33130,Szulernia,376,376,7249451,10090,9 +33131,Wioska+Bochun10,327,472,7449254,9258,0 +33132,Wioska+barbarzy%C5%84ska,603,348,1990750,8368,0 +33133,X+%7C+Forest+Cyaaaanku,320,471,1536625,10000,1 +33134,038,643,545,698999105,10311,0 +33135,New+World,434,666,698807570,10063,0 +33136,Taran,674,490,699598425,10728,0 +33137,J%23026,577,342,2065730,10068,0 +33138,Wioska+barbarzy%C5%84ska,679,466,699574408,9468,0 +33140,096...tomeczek,476,325,6920960,10247,0 +33142,007+.3.Panzergrenadier+Division,604,359,849091899,6682,0 +33143,R+002+%7EWaleriana%7E,485,676,699195358,10019,0 +33144,R+007+%7E%C5%BBona%7E,487,678,699195358,10019,0 +33145,059+Wioska+011,660,418,9238175,9677,0 +33146,Wioska+001,573,339,699703295,8724,0 +33147,077.Stradi,446,326,698365960,10376,0 +33148,%21XXX,607,353,698361257,6801,0 +33149,Lord+Lord+Franek+.%23087,517,321,698420691,10160,2 +33151,Wioska+barbarzy%C5%84ska,680,467,699574408,9055,0 +33152,ADEN,599,356,698588535,9855,0 +33153,I026,674,452,699722599,9586,0 +33154,Wioska+barbarzy%C5%84ska,495,319,698239813,5708,0 +33155,Wioska+barbarzy%C5%84ska,562,329,699072129,10221,0 +33156,North+Barba+052,406,352,699796330,8251,0 +33157,Wioska+barbarzy%C5%84ska,370,374,699711706,2194,0 +33158,010+Solary+%3D+Dolary,378,632,6354098,10141,0 +33159,O47+Tuzla,678,530,699272880,8129,0 +33160,Andrzej,609,354,849056744,8079,0 +33161,Lord+Lord+Franek+.%23100,525,328,698420691,10160,8 +33162,UltraInstynkt-,579,335,699710633,10068,0 +33163,DejMon9,367,623,699805839,4092,0 +33164,Wioska+Kr%C3%B3l+Ja%C5%9B,649,607,1900364,9750,0 +33165,084.+Perusia,649,405,849091866,9255,0 +33166,Ogonek,613,356,698420691,9727,0 +33167,Muchomor+%2A023%2A,517,680,606407,8455,0 +33168,Wioska+r+4,558,670,848915531,5956,0 +33169,Ruda+Dolno%C5%9Bl%C4%85ska,551,333,849110711,2545,0 +33170,%2A002%2A+CSA-Zaiwania%C4%87,625,367,849095068,10311,0 +33171,%23Keep+Calm,459,676,848896948,6357,0 +33172,Gr%C3%B3d,474,324,699204478,11360,0 +33173,TRAILER+PARK+BOYS,551,346,699072129,9756,0 +33174,Jestem+Poza+Kontrol%C4%85,341,558,8004076,9880,0 +33175,devils+tower,639,384,7340529,10887,0 +33176,C0165,329,542,8841266,10252,0 +33177,021+Tu+ci%C4%85gle+nie+ma+miejsca...,379,623,6354098,7616,0 +33178,Wioska+P1ter+2,598,648,699567608,9416,0 +33179,UltraInstynkt-,589,341,699710633,10068,0 +33180,krytl05,513,321,1990750,10311,0 +33181,135...opelu,443,333,6920960,7893,0 +33182,ASre,649,592,699611673,3641,0 +33183,Savi2,676,504,848899726,10019,0 +33184,%2A001%2A+CSA+si%C4%99+by%C5%82o+uczy%C4%87%21,604,350,849095068,10230,0 +33185,Jaaa,675,486,698635863,10481,0 +33186,%23016%23,628,623,692803,9761,0 +33187,%5B03%5D,428,667,699827112,7172,0 +33188,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,375,608,849097937,10019,0 +33189,Wioska+barbarzy%C5%84ska,504,677,699781762,10057,0 +33190,%7C017%7C+Fajstos,490,672,699393742,10063,0 +33191,Sony+911,620,630,1415009,10206,0 +33193,1002,621,362,699150527,9899,0 +33194,Ob+Konfederacja,436,337,848915730,5834,0 +33195,Taran,337,577,6180190,9212,0 +33196,Wioska+barbarzy%C5%84ska,560,330,699072129,10226,0 +33197,Komornicy+019,352,607,699336777,8731,0 +33198,Brrzana,329,546,699265922,9963,0 +33199,Wyspa+022,625,374,699756210,10273,0 +33200,GerHIs,650,595,699611673,3899,0 +33201,001,531,675,2293376,9993,0 +33203,Nowa+40,662,585,698702991,9745,0 +33205,Szlachcic%2FTaran,613,367,699759128,10237,0 +33206,R+009+%7ENami%7E,486,677,699195358,10019,0 +33207,J%23015,578,336,2065730,9797,0 +33208,Y+%7C+Forest+Cyaaaanku,325,503,699213622,10000,8 +33209,%23014%23,631,625,692803,9761,0 +33210,reco,508,682,698704189,9547,0 +33211,Wioska+barbarzy%C5%84ska,508,678,699781762,10091,0 +33212,053.+Flam,658,589,8337151,9837,0 +33213,Taran,682,486,699598425,10728,4 +33214,%28031%29Iri,335,567,849098695,2974,0 +33215,123,477,674,9003698,10373,0 +33216,1006,614,364,699150527,9910,0 +33217,001,343,594,7183372,10346,0 +33218,Wioska+046,646,603,848971079,9761,0 +33219,657%7C422+Wioska+barbarzy%C5%84ska,657,422,6822957,2556,0 +33220,B+064,678,532,8078914,8476,0 +33221,026%23Sewa%23002,671,444,849098769,10001,0 +33222,Psycha+Siada,444,665,698807570,5871,0 +33223,Z%7C010%7C+Rzym,461,678,699393742,10063,0 +33224,C0154,321,528,8841266,10246,0 +33225,C0271,323,507,8841266,10252,0 +33226,Wioska+barbarzy%C5%84ska+031,460,322,6343784,6470,0 +33227,Szlachcic,398,356,3484132,10481,0 +33228,010,526,675,2293376,7206,0 +33229,Chekku+-+meito,325,528,9280477,9976,0 +33230,Ronne,329,562,849098387,9978,0 +33231,rotes+idz+spac+misiu,454,674,698807570,6772,0 +33232,KR%C3%93L+PAPI+WIELKI,638,614,698191218,10000,0 +33233,Wioska+r+14,553,667,848915531,4069,0 +33234,-013-,541,329,698588812,3312,0 +33235,Brakuje+drewna+m%C3%B3j+panie,441,665,8954402,10203,0 +33236,Wioska+kamilatak,641,617,848942587,6104,0 +33237,Psycha+Siada,441,667,698807570,6299,0 +33238,%24Curry,679,526,699795378,5876,0 +33239,Wioska+3,500,323,698680806,7386,0 +33240,Muchomor+%2A012%2A,518,676,606407,10527,0 +33241,Wioska+barbarzy%C5%84ska,404,656,699516268,9596,0 +33242,New+World,445,675,698152377,10297,0 +33244,0429,551,667,698659980,10019,0 +33245,050,677,515,699413040,5888,0 +33246,Myk+i+do+kieszonki,364,611,9319058,10237,0 +33247,%3D%7C36%7C%3D,644,392,9101574,4562,0 +33248,137.Stradi,451,326,698365960,3313,0 +33249,Wioska+barbarzy%C5%84ska,674,473,699574408,7343,0 +33250,028+Zakopane+akademia,379,374,848978297,3616,0 +33251,032+Toffifeeeeee%21,372,630,6354098,10141,0 +33252,Monetkownia,622,626,699759128,10237,0 +33254,SOKzGUMIjag%C3%B3d,601,352,849059491,5511,0 +33255,AAA,533,324,1006847,7024,0 +33256,033,670,459,7588382,8125,0 +33257,Wioska+barbarzy%C5%84ska,407,651,699516268,7324,0 +33258,SOKzGUMIjag%C3%B3d,596,349,849059491,6979,0 +33259,C.03,680,518,699737356,8378,0 +33260,Psycha+Siada,444,670,698807570,9623,0 +33261,A004,603,647,9023703,10237,0 +33262,B+052,673,541,8078914,6396,0 +33263,New+World,443,674,698152377,10311,0 +33264,008,319,477,7127455,5888,0 +33265,015+530i,615,360,698361257,11130,0 +33267,Wioska+barbarzy%C5%84ska,677,486,699598425,10728,0 +33268,Gabsaw,641,611,2269943,8046,0 +33269,Wioska+4,503,326,698680806,6935,0 +33270,%23022.+Ster%2C+%C5%BBeglarz+i+Okr%C4%99t,441,671,848896948,9047,6 +33272,Wioska+gal%C3%B3w,351,601,8877156,3063,0 +33273,Wioska+barbarzy%C5%84ska,476,318,698680806,7587,0 +33274,%5B044%5D,661,577,698305474,4472,0 +33275,R+013+%7EFalkret%7E,485,681,699195358,10019,0 +33276,krytl15,508,318,1990750,9403,0 +33277,60k%24+Grvvyq,659,574,699676005,8151,0 +33278,B.022,675,502,9188016,10000,0 +33279,Miasys+3,343,583,849090130,10160,0 +33280,Bagdad,426,661,849089459,9835,0 +33281,Szlachcic,393,360,3484132,10474,0 +33282,Westfold.001,342,417,848918380,10178,0 +33283,AAA,547,323,1006847,8040,0 +33284,_PUSTA,654,599,698768565,10199,0 +33285,076,476,616,699336777,10083,0 +33286,217,447,328,698365960,7128,0 +33287,019+%2A+Lady+Porto+%2A,644,396,699406750,6104,0 +33288,Wioska+barbarzy%C5%84ska,408,652,699516268,4352,0 +33289,124...OPELU,442,334,6920960,10569,0 +33290,I047,669,449,699722599,9883,0 +33292,Szulernia,368,373,7249451,3753,0 +33294,Wioska+barbarzy%C5%84ska,342,418,848918380,5032,0 +33295,002,650,592,699251542,5481,0 +33296,D.032,390,640,849088243,3040,0 +33298,Wioska+Natka1968_02,526,323,699644852,2945,0 +33299,Psycha+Siada,446,670,698807570,6491,0 +33300,Restelo,346,589,699494480,9272,0 +33301,Forza+7,435,662,699849210,3298,0 +33302,0651,574,662,698659980,5889,0 +33303,I027,676,452,699722599,10093,0 +33304,Lord+Lord+Franek+.%23173,518,321,698420691,9976,2 +33305,Wyspa+009,628,381,699756210,10362,0 +33306,szpiegula,505,324,6118079,8123,0 +33308,055,527,680,2293376,8294,0 +33309,Wioska+barbarzy%C5%84ska,505,317,6118079,4432,0 +33310,SZYNCHIL,400,351,3484132,5800,0 +33311,027+%2A+Lady+Porto+%2A,645,397,699406750,12154,0 +33312,Szulernia,372,369,7249451,2586,0 +33313,Wioska+6,520,327,698680806,6627,0 +33314,044,676,529,699351301,7232,0 +33315,yankes6,588,656,699567608,7552,0 +33316,Out+of+Touch,328,441,698962117,9061,0 +33317,Hard2,366,624,699805839,2170,0 +33318,051,676,513,699413040,9703,0 +33319,Out+of+Touch,328,439,698962117,2602,0 +33320,Wioska+barbarzy%C5%84ska,321,487,849013126,3522,0 +33321,Wioska+barbarzy%C5%84ska,378,402,848886056,8277,0 +33322,Szlachcic,385,362,698160606,10475,0 +33323,Wioska+barbarzy%C5%84ska,348,600,7183372,6180,0 +33324,Wioska+Bochun10,325,467,7449254,4595,0 +33325,Wioska+13,318,489,849075836,4613,0 +33326,-21-,631,373,699837826,5729,0 +33328,%230176+Kamil0ss1,488,318,1238300,10178,0 +33329,C0156,320,527,8841266,9472,0 +33330,A15,466,679,698652014,4573,0 +33331,a+mo%C5%BCe+off+%3F+%3A%29,637,619,698768565,9334,0 +33332,Wioska+barbarzy%C5%84ska,339,587,3990066,2374,0 +33333,Wioska+barbarzy%C5%84ska,501,681,699781762,10057,0 +33334,%2A176%2A,345,412,699273451,10211,5 +33335,Wioska+barbarzy%C5%84ska,372,380,699711706,5532,0 +33336,D02,673,550,848995478,10495,0 +33337,Wioska+barbarzy%C5%84ska,502,682,699781762,10057,0 +33338,A17,597,467,849093742,10019,0 +33339,Wioska+XVII,574,336,698200480,3662,0 +33340,0413,533,677,698659980,8950,0 +33341,Taran,342,584,6180190,9957,3 +33342,0395,564,667,698659980,10252,0 +33343,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,674,7589468,8817,0 +33345,Deveste+ufam+Tobie,394,640,699783765,8387,0 +33347,0449,533,675,698659980,9104,0 +33348,Wioska+barbarzy%C5%84ska,679,463,699574408,10211,0 +33349,A002,601,646,9023703,10237,0 +33350,Defolij+1,554,327,849098136,4102,0 +33351,Radomice-Hubix,663,422,8675636,5887,0 +33352,057,453,323,2502956,10019,0 +33353,0308,574,663,698659980,9412,0 +33354,Wyspa+024,628,374,699756210,4327,0 +33355,Jednak+wol%C4%99+gofry,418,662,699736927,9899,0 +33356,%2A162%2A,345,410,699273451,10211,0 +33357,%2A047%2A,351,397,699273451,10211,0 +33358,Jednak+wol%C4%99+gofry,414,653,699736927,10068,0 +33359,ADEN,578,343,698588535,10177,0 +33361,Adidas+5,410,651,9191031,3175,0 +33362,010,408,659,699246032,9814,0 +33363,%230132+Thorus5,472,327,1238300,9455,0 +33364,0045,677,457,698416970,9258,0 +33365,Y+%7C+Forest+Cyaaaanku,318,486,699213622,10000,0 +33366,009+Twardy+Sen,380,633,8268010,9835,0 +33367,Hi%C5%84czowa+Turnia,318,480,849013126,3719,0 +33368,Wioska+barbarzy%C5%84ska,670,453,113796,4086,0 +33369,deff+100+%25,337,573,849012521,7881,0 +33370,Wioska+r+17,552,670,848915531,4141,0 +33371,Kingdom,680,503,699598425,10728,0 +33372,AAA,537,324,1006847,9013,0 +33373,Najpi%C4%99kniejsza,627,375,7555180,10144,0 +33374,Wioska+barbarzy%C5%84ska,678,488,699598425,10728,0 +33375,-009-,334,573,8710047,9761,0 +33376,Wioska+Bochun10,326,473,7449254,10311,0 +33378,Freytaga+I,640,609,2269943,8099,0 +33379,cz+013+CORSA,367,378,3909522,7447,0 +33380,%230138+Kamil0ss1,479,318,1238300,10178,0 +33381,X+%7C+Forest+Cyaaaanku,319,473,1536625,9976,0 +33382,056,454,325,2502956,10019,0 +33383,Wrath+015,574,335,699756210,8954,0 +33384,%2A027,598,651,699567608,9916,0 +33385,%5BB%5D_%5B043%5D+Dejv.oldplyr,425,334,699380607,10495,0 +33386,B+010,673,532,8078914,9872,6 +33387,56.+KaruTown,644,399,849091866,6549,0 +33388,Lubieszynek,655,591,849039310,7591,0 +33389,Szlachcic,383,361,698160606,9915,0 +33390,A008,602,649,9023703,10237,0 +33391,Wioska+barbarzy%C5%84ska,643,390,698241117,3876,0 +33392,Y+%7C+Forest+Cyaaaanku,318,491,699213622,8641,0 +33393,Kiedy%C5%9B+Wielki+Wojownik,599,348,8632462,8384,0 +33394,Wioska+Bochun10,319,494,7449254,6374,0 +33395,Kreskowo_3,594,652,699567608,9853,0 +33396,025%7C%7C+Crater,467,679,849035525,10019,0 +33397,Didiek,669,567,849070946,6437,0 +33398,M181_011,337,435,393668,9239,0 +33399,%21%2136+94+Adancata,649,395,698361257,6310,0 +33401,%5B011%5D,423,659,9094538,8109,0 +33403,R+014+%7EMarkart%7E,485,680,699195358,10019,0 +33404,024,530,681,2293376,9993,0 +33405,Pparkerowska,355,387,849098299,6446,0 +33406,Wioska+barbarzy%C5%84ska,346,598,7183372,8391,0 +33407,%23026.548%7C482,667,433,556154,9735,4 +33408,Taran,339,584,6180190,7033,0 +33409,%7E%7E087%7E%7E,631,617,699567608,9721,0 +33410,Wioska+Bochun10,321,493,7449254,7349,0 +33411,Wioska+IX,580,340,698200480,6904,0 +33412,079,472,616,699336777,10083,0 +33413,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,637,1434753,10044,0 +33415,ADEN,603,350,698588535,9761,0 +33416,Ob+Konfederacja+%2B,436,334,848915730,7275,0 +33417,Barbakasia,344,410,849098299,2743,0 +33418,Wioska+109,638,608,848971079,7538,0 +33419,Wioska+123,682,523,848971079,7135,0 +33420,B002,468,672,8954402,9564,0 +33421,059,455,324,2502956,10019,0 +33422,Mniejsze+z%C5%82o+0093,322,540,699794765,6100,7 +33423,-04-,623,371,699837826,10495,0 +33424,Wioska+barbarzy%C5%84ska,348,599,8877156,7806,0 +33425,Osada+koczownik%C3%B3w,591,650,1415009,10257,7 +33426,AG16,590,659,699876345,6210,0 +33427,%23050.,666,429,556154,8923,0 +33428,Out+of+Touch,329,447,698962117,2881,0 +33429,058+%7C+PALESTINA,656,417,9228039,8262,0 +33430,%5B0285%5D,475,319,8630972,4740,0 +33431,%23052%23,625,631,692803,9761,0 +33432,098...tomecz,479,325,6920960,10231,0 +33433,004,668,569,699493750,6404,0 +33434,AAA,533,321,1006847,6677,0 +33435,Wioska+125,680,525,848971079,8223,0 +33436,%2A045,590,651,699567608,9704,0 +33437,%5BB%5D_%5B022%5D+Dejv.oldplyr,419,342,699380607,10559,0 +33438,A.04+sp%C3%B3%C5%82dzielnia+gryzoni,564,334,699072129,4881,0 +33439,B+053,671,540,8078914,5974,0 +33440,O51+Saloniki,675,535,699272880,10301,0 +33441,I%23032,621,363,2065730,7566,0 +33442,060,451,331,2502956,10019,0 +33443,Wioska+Bochun10,324,492,7449254,10311,2 +33444,Taran,683,498,699598425,10728,0 +33445,Szlachcic,394,354,3484132,10474,0 +33446,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,389,642,1434753,10025,0 +33447,E.01,679,505,699737356,9202,0 +33448,Szlachcic%2FTaran,642,395,699759128,8336,0 +33449,%7C036%7C+Kalavarda,494,679,699393742,10056,0 +33450,%3F011+Lowruks,541,659,699828685,10109,0 +33451,Wioska+1,573,335,7560474,7654,0 +33452,%2A075%2A,360,390,699273451,10211,0 +33453,ADEN,579,343,698588535,10292,0 +33454,177...Segadorr-m,443,325,6920960,10713,0 +33455,Wioska+barbarzy%C5%84ska,620,639,699567608,9700,0 +33456,D.021,393,643,849088243,8303,0 +33457,Wioska+barbarzy%C5%84ska+2,502,482,698349125,6614,0 +33458,wioska,350,599,7183372,10083,0 +33459,Jednak+wol%C4%99+gofry,420,663,699736927,5879,0 +33460,080.Stradi,446,329,698365960,10089,0 +33461,-005-,347,400,1693936,3487,0 +33462,%230194+Segadorr+dar,462,323,1238300,10178,0 +33463,.achim.,486,317,6936607,7164,0 +33464,Nowa+52,669,560,698702991,7795,0 +33465,XXDe,326,557,849096458,7577,0 +33466,Out+of+Touch,327,442,698962117,9643,0 +33467,Duolingo,647,396,7973893,7702,0 +33468,O60+Roslagen,672,556,699272880,5423,0 +33469,Lady+Madelaine,644,608,2269943,7008,0 +33470,Z%7C007%7C+Bari,466,683,699393742,7723,0 +33471,C0267,317,506,8841266,7032,0 +33472,City,645,402,699491076,5112,0 +33473,111,637,381,849092309,5743,0 +33474,Wioska+barbarzy%C5%84ska,511,675,699781762,10160,0 +33475,A+096,377,635,7085510,8542,9 +33476,KR%C3%93L+PAPI+WIELKI,564,563,698191218,10000,0 +33477,Nexo,329,564,849098387,5914,0 +33478,K36+-+%5B006%5D+Before+Land,625,368,699088769,10654,0 +33479,%23Sewa%23004,669,442,113796,10141,0 +33480,Kiedy%C5%9B+Wielki+Wojownik,565,334,8632462,7256,0 +33481,033+Dawaj+dawaj+Pomagaj+pomagaj%21,380,634,6354098,10143,0 +33482,Jednak+wol%C4%99+gofry,414,654,699736927,9835,0 +33483,Wioska+barbarzy%C5%84ska,558,330,699072129,10220,0 +33484,AAA,528,319,1006847,8149,0 +33485,New+World,444,674,698152377,10303,0 +33486,Wioska+Westor+4,357,395,699530673,4249,0 +33487,%23097%23,627,630,692803,9761,0 +33489,0129,549,674,698659980,10083,0 +33490,Ob+Konfederacja,433,329,848915730,10132,0 +33491,106,319,505,7098955,9504,0 +33492,021+toni,677,462,849098769,10838,0 +33493,Wioska+barbarzy%C5%84ska,678,544,7038651,4157,0 +33494,039+Mucharadza,664,418,9238175,10284,0 +33495,Oww+Konfederacja,611,401,848915730,10273,0 +33496,Didi,671,558,849070946,8991,0 +33497,%7C046%7C+Wioska+Mikimixx,502,679,699781762,9873,0 +33498,Chekku+-+meito,323,525,9280477,9976,0 +33500,02.+Mamy+To%21,589,660,699423167,3936,0 +33501,D.004,401,654,849088243,9345,0 +33502,017,355,611,699083129,5340,0 +33503,Mniejsze+z%C5%82o+0099,323,541,699794765,8130,0 +33504,Wedkarz,330,546,699265922,9761,0 +33505,X+%7C+Forest+Cyaaaanku,320,472,1536625,9976,0 +33506,Wioska+barbarzy%C5%84ska,505,681,699781762,10057,0 +33507,00631+Wioska,446,426,3909522,7333,0 +33508,022+%3A%29,658,418,9238175,10465,0 +33509,%2A258%2A,342,414,699273451,2875,0 +33510,Monetkownia,621,629,699759128,10237,0 +33511,XDX,610,352,699098531,10160,0 +33512,ZUBRAWKA+051,614,635,33900,10362,0 +33513,081+%C5%9Awi%C4%85teczna+Bombka,653,399,699491076,9539,0 +33514,SOKzGUMIjag%C3%B3d,596,351,849059491,5771,0 +33515,Szlachcic,384,366,698160606,9891,0 +33516,Wioska+barbarzy%C5%84ska,430,336,699191455,6954,0 +33517,%2A003%2A,352,391,699273451,10211,0 +33518,0251,534,678,698659980,10160,0 +33519,Wioska+barbarzy%C5%84ska,355,402,699323302,3218,0 +33520,065+Wioska+014,663,415,9238175,9206,0 +33521,SJ1,322,457,6258092,10495,0 +33522,048+%7C+PALESTINA,662,419,9228039,9544,0 +33523,Wioska+barbarzy%C5%84ska,677,459,699574408,9108,0 +33524,%2A246%2A,335,437,699273451,10209,0 +33525,Szlachcic,395,354,3484132,10495,0 +33526,Opol,357,613,699864013,4240,0 +33527,Suppi,595,348,7462660,9783,0 +33528,Komornik+006,325,537,698290577,8171,0 +33529,Kentin+ufam+Tobie,329,455,699783765,10000,0 +33531,0300,569,662,698659980,9861,0 +33532,amator,561,666,848915531,5548,0 +33533,%23051%23,628,632,692803,9761,0 +33534,A+033,370,625,699342219,5903,0 +33535,%2A254%2A,339,412,699273451,3106,0 +33536,B+039,675,530,8078914,7104,0 +33537,.%3A006%3A.,632,383,849078297,7384,0 +33539,Wioska+barbarzy%C5%84ska,673,459,699574408,9462,0 +33540,%21Wszystkie+rybki+maj%C4%85+...%3F,331,567,849012521,9670,6 +33541,Victor,678,499,699737356,10005,0 +33542,D.003,401,652,849088243,9348,0 +33543,Taran,336,579,6180190,9962,0 +33544,Architekci+Plac%C3%B3w+Boju,334,561,8004076,9880,0 +33545,C0160,324,535,8841266,10171,0 +33546,Iskierka,677,550,848932879,1800,0 +33547,Y+%7C+Forest+Cyaaaanku,324,498,699213622,10000,0 +33548,Wioska+096,645,603,848971079,9825,0 +33549,Sony+911,617,631,1415009,9898,0 +33550,WB+03,638,611,2269943,8295,0 +33551,Szlachcic,391,353,3484132,10478,0 +33552,045+Brenna,466,681,699834004,10213,0 +33553,%7C034%7C+Kamiros+Skala,497,679,699393742,9976,0 +33554,Darud%C5%BCystan181,674,470,699574408,10481,0 +33555,Muchomor+%2A011%2A,518,678,606407,10300,0 +33556,Szlachcic,382,359,698160606,10290,0 +33557,0003.+HMS+St+Andrew+96+%281670%29,473,676,699121671,7710,0 +33558,Jaaa,675,488,698635863,10117,0 +33559,055.+Gaena,659,590,8337151,10160,0 +33560,off+100+%25,338,571,849012521,9304,0 +33561,Most,327,549,699265922,6868,0 +33562,12.+Lyria,330,450,848910122,389,0 +33563,000+Plutosea,327,554,9280477,11307,0 +33564,023+%2A+Lady+Porto+%2A,646,393,699406750,12154,0 +33565,Architekci+Plac%C3%B3w+Boju,331,556,8004076,5653,0 +33566,03+Twierdza,539,676,849097981,6119,0 +33567,Psycha+Siada,451,668,698807570,10068,0 +33568,%2A025%2A,357,389,699273451,10211,0 +33569,Out+of+Touch,327,441,698962117,7943,0 +33570,Partyzantka+ludowa,674,464,699574408,10010,0 +33571,Szlachcic,493,479,699098531,9879,0 +33572,Didi,667,564,849070946,7475,0 +33573,04+Bastion,541,673,849097981,8300,0 +33574,Chrztowo,656,583,849039310,7058,0 +33575,%5B007%5D+Kupa+po+pachy,673,437,849095068,10237,1 +33576,%28014%29Frostlands,334,564,849098695,6393,0 +33577,Mroczny+Zamek+030,384,639,699699601,6039,0 +33578,-0008-,544,328,2972329,6339,0 +33579,AAA,532,320,1006847,6549,0 +33580,Out+of+Touch,328,437,698962117,3640,0 +33581,B+040,680,534,8078914,7621,0 +33583,%2A269%2A,345,407,699273451,2286,0 +33584,Wioska+barbarzy%C5%84ska,672,451,113796,4045,0 +33585,Sparta,503,323,698680806,8914,0 +33586,015+Dajesz+Pan+rad%C4%99%3F,376,625,6354098,9850,0 +33588,fff,473,321,698239813,10495,0 +33589,022,355,607,699083129,4455,0 +33590,Szlachcic,395,358,3484132,10481,0 +33591,_PUSTA,653,594,698768565,10080,0 +33592,POOL,401,351,8123790,1340,0 +33593,%2A231%2A,361,386,699273451,10211,0 +33594,New+World,435,670,698152377,10294,0 +33595,Lord+Lord+Franek+.%23174,519,321,698420691,12154,0 +33596,SOKzGUMIjag%C3%B3d,612,360,849059491,10224,0 +33597,Wioska+barbarzy%C5%84ska,338,424,2418002,4432,0 +33598,014+Wirginia,491,683,699238479,5679,0 +33600,061+%7C+PALESTINA,656,416,9228039,4314,0 +33601,079.+Hadrianopolis,654,414,849091866,8781,0 +33602,X+%7C+Forest+Cyaaaanku,322,478,699213622,8354,0 +33603,013,443,668,8966820,10178,0 +33604,005,531,679,2293376,9993,0 +33605,Wioska+Bochun10,338,500,7449254,10311,0 +33606,C0173,317,514,8841266,10205,0 +33607,Wioska+Luk160,618,366,699857387,10019,0 +33608,Wioska+Sir+Zordon+007,660,580,478956,3731,0 +33609,New+World,444,672,698152377,10311,0 +33610,D10,667,556,848995478,3384,0 +33611,005,408,655,699246032,9835,0 +33612,Wioska+barbarzy%C5%84ska,520,319,698350371,8743,0 +33613,Nowa+50,657,581,698702991,6988,0 +33614,Chekku+-+meito,324,527,9280477,9976,0 +33615,Wioska+10,496,323,951823,10242,0 +33616,Architekci+Plac%C3%B3w+Boju,330,558,8004076,7143,0 +33617,Miejsce,489,668,849004274,9835,0 +33618,12.,631,371,699562182,5171,0 +33619,Bona+Mediolan,344,409,849098299,6203,0 +33620,097+invidia,523,676,849093426,9306,0 +33621,139+Dolina+Trzciny,649,398,699491076,6773,0 +33622,...Just+like+that,466,470,699723284,7862,0 +33623,Colorado+Springs,603,355,1990750,9380,0 +33624,C0258,317,508,8841266,7921,0 +33625,O59+Uppland,673,547,699272880,5302,0 +33626,R+005+%7ESamanta%7E,488,675,699195358,10019,0 +33627,%2A178%2A,373,373,699273451,10211,0 +33628,%2A104%2A,363,380,699273451,10211,0 +33629,-14-,625,377,699837826,2989,0 +33630,Wioska+barbarzy%C5%84ska,679,470,699574408,9064,0 +33631,%5BB%5D_%5B039%5D+Dejv.oldplyr,419,343,699380607,4399,0 +33632,Wioska+dziwas2,525,536,7581876,10019,0 +33633,085.+Raphae,656,413,849091866,9002,0 +33634,Architekci+Plac%C3%B3w+Boju,330,559,8004076,9695,6 +33635,Allinge,335,571,849098387,11417,0 +33636,225,422,338,7271812,10495,0 +33637,UltraInstynkt,578,333,699710633,10068,0 +33638,SJ4,324,453,6258092,10495,8 +33640,Wioska+Markus2008,334,422,2418002,10034,0 +33641,_PUSTA,654,595,698768565,10065,0 +33642,102.+Aenus,659,410,849091866,5504,0 +33643,%230191+Segadorr+dar,458,327,1238300,10178,0 +33644,Komornicy+007,355,608,699336777,7405,0 +33645,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,641,1434753,9790,0 +33646,-+Arbos,552,327,699825236,6561,0 +33647,Wioska+002,648,600,848971079,9761,8 +33648,005+KTW,635,456,848883237,10495,0 +33649,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,385,634,1434753,10068,0 +33650,Wioska+Bochun10,316,499,7449254,6695,0 +33651,Szulernia,376,368,7249451,9961,0 +33652,Rubiez16,321,463,699265922,4201,0 +33653,SOKzGUMIjag%C3%B3d,594,344,849059491,4758,0 +33654,0527,532,658,698659980,10019,0 +33655,Szlachcic,388,356,698160606,10025,0 +33656,-002-,542,324,698588812,7960,4 +33657,A+029,368,624,699342219,7741,0 +33658,C0083,319,510,8841266,10252,0 +33659,025+Ho%C5%82opole,465,675,699834004,9889,0 +33660,Bukowe+Pole,653,586,849039310,7514,0 +33661,Szlachcic,397,348,3484132,10821,0 +33662,Wioska+barbarzy%C5%84ska,502,681,699781762,10057,0 +33663,C0157,320,528,8841266,10416,0 +33664,Szlachcic,322,539,698388578,7725,0 +33665,X+%7C+Forest+Cyaaaanku,320,468,1536625,9976,5 +33666,%23Finral,427,666,699849210,5353,0 +33667,095.+Vitudurum,652,405,849091866,7330,0 +33668,Muchomor+%2A022%2A,524,675,606407,9342,0 +33669,%C5%BBUBRAWKA+054,616,640,33900,9464,0 +33670,A.11+sp%C3%B3%C5%82dzielnia+gryzoni,563,332,699072129,7991,0 +33671,BETON+078,635,614,699277039,4220,0 +33672,Kair,412,660,849089459,9722,8 +33673,A+009,367,616,699342219,10237,0 +33674,Wioska+barbarzy%C5%84ska,428,338,699191455,7883,0 +33675,Wrath+009,571,339,699756210,10030,0 +33676,%C5%BBUBR+PSYCHIATRYK+005,612,641,33900,7156,5 +33677,Ob+Konfederacja,428,334,848915730,10065,0 +33678,Psycha+Siada,445,670,698807570,8532,0 +33679,Szlachcic,394,359,3484132,10487,0 +33680,Ob+Konfederacja,430,333,848915730,7147,0 +33681,cz+Kielce,366,377,3909522,5976,0 +33682,G%C5%82odowo,668,575,849039310,3957,0 +33683,Auu+02,578,667,699567608,9720,0 +33684,997+%C5%BBy%C5%82a,666,424,699491076,9856,0 +33685,J%23002,571,330,2065730,9797,4 +33686,Piek%C5%82o+to+inni,590,348,848956765,8630,0 +33687,004+Leningrad,607,358,849091899,10652,0 +33688,06+Posterunek,541,676,849097981,8300,0 +33689,K36+-+%5B005%5D+Before+Land,625,373,699088769,10654,0 +33690,Out+of+Touch,330,436,698962117,7742,0 +33691,Architekci+Plac%C3%B3w+Boju,330,561,8004076,7988,0 +33692,-001-,328,565,849012521,10311,0 +33693,Szlachcic,395,352,3484132,10474,0 +33694,%7E%7E093%7E%7E,635,616,7829201,9188,9 +33695,0013,680,464,699574408,9093,0 +33696,%5BB%5D_%5B047%5D+Dejv.oldplyr,425,337,699380607,10287,0 +33697,%C5%9Awiat+fistaszk%C3%B3w,555,327,849098136,6947,3 +33698,C0107,318,522,8841266,10252,0 +33699,Wioska+barbarzy%C5%84ska,551,330,699072129,9811,0 +33700,Wioska+barbarzy%C5%84ska,522,324,698350371,6930,0 +33701,Modzerowo-Hubix,664,422,8675636,10019,0 +33702,R%C3%B3wne,657,583,849039310,5219,0 +33703,040+Ban+Ard,474,677,699834004,7155,0 +33704,%5B0286%5D,473,319,8630972,5996,1 +33705,Westfold.017,337,425,848918380,8199,0 +33706,%2A103,579,663,699567608,9704,0 +33708,Szulernia,378,368,7249451,9964,0 +33709,Kingdom+4,682,503,699598425,10728,0 +33710,Utah,678,502,699737356,10144,0 +33711,Wioska+barbarzy%C5%84ska,348,405,0,2020,0 +33712,Wioska+barbarzy%C5%84ska,620,367,699857387,4497,0 +33713,0156,412,343,699431255,4936,0 +33715,A056,607,649,9023703,10223,0 +33716,Bagdad,485,317,8847546,10068,0 +33717,Wioska+barbarzy%C5%84ska,340,428,393668,8143,0 +33718,Hard,365,622,699805839,2706,0 +33719,Jednak+wol%C4%99+gofry,418,664,699736927,9835,1 +33721,-006-,346,400,1693936,3541,0 +33722,fff,489,319,698239813,8763,0 +33723,%2A111%2A,362,382,699273451,9942,0 +33724,XDX,610,354,699098531,10019,0 +33725,067,542,678,2293376,8677,0 +33726,%23Forza+01,437,668,699849210,7007,0 +33727,015+ksieciunio68,324,506,926823,9746,0 +33728,deff+100+%25,347,586,849012521,8153,0 +33729,J%23001,572,331,2065730,9797,4 +33730,Wioska+barbarzy%C5%84ska,577,660,6818593,9835,0 +33731,014,348,602,7183372,10107,0 +33732,Kentin+ufam+Tobie,326,459,699783765,10000,0 +33733,Wioska+barbarzy%C5%84ska,373,376,699711706,7679,0 +33734,Wesolych+%C5%9Awi%C4%85t,626,368,699088769,8993,0 +33735,%2A060,584,660,699567608,7883,0 +33736,034+Pu%C5%9Bcisz+to+dzisio%3F,372,629,6354098,9346,0 +33737,Wioska+barbarzy%C5%84ska,679,465,699574408,8642,0 +33739,Wioska+barbarzy%C5%84ska,341,414,8503255,3102,0 +33740,003,356,612,699083129,9886,0 +33741,Wioska+7,499,322,698680806,10375,0 +33742,Wioska+barbarzy%C5%84ska,675,462,699574408,9898,0 +33743,Wioska+barbarzy%C5%84ska,402,352,3484132,8519,0 +33744,-22-,633,375,699837826,3769,0 +33745,Wyspa+021,631,374,699756210,10273,6 +33746,sarnow,610,373,698290319,10054,0 +33747,K34+-+%5B135%5D+Before+Land,431,336,699088769,9660,0 +33748,-+271+-+SS,539,679,849018239,7657,0 +33749,07+Fort,540,677,849097981,8300,0 +33750,070+komornicy,329,552,699510259,10481,6 +33751,I090,672,445,699722599,10495,0 +33752,Wioska+6,575,336,7560474,4937,0 +33754,014+Glina+Wykopana,614,407,699298370,9794,0 +33755,010+Tr%C3%B3jmiasto+1%2F3,386,635,8268010,9835,0 +33756,0157,408,342,699431255,4979,0 +33757,%3F%3F%3F,485,318,698489071,8575,0 +33758,%230192+Segadorr+dar,458,324,1238300,10178,0 +33760,Kentin+ufam+Tobie,326,462,699783765,10000,0 +33761,025Sewa%23001,670,444,849098769,9899,0 +33762,%23019%23,627,634,692803,9761,0 +33763,%2A5612%2Ad+Kraina+przepowiedni,663,586,7973893,10287,2 +33764,OFF,647,600,849014413,10159,0 +33765,Westfold.021,337,426,848918380,8838,0 +33766,0415,534,673,698659980,8449,0 +33767,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,632,1434753,10068,2 +33769,AAA,539,325,1006847,9693,0 +33770,C0049,324,519,8841266,10252,0 +33771,%5B16%5D,434,663,8966820,3308,0 +33772,Szlachcic,380,360,698160606,9858,0 +33773,A006+Drewno,673,446,113796,10141,1 +33774,044,527,674,2293376,9993,0 +33775,Wioska+barbarzy%C5%84ska,350,407,849064752,2219,0 +33776,065+komornicy,324,534,699510259,5461,0 +33777,Lord+Lord+Franek+.%23091,512,324,698420691,9976,4 +33779,A0278,322,483,8841266,9469,0 +33780,Szulernia,380,365,7249451,10790,0 +33781,Osada+koczownik%C3%B3w,511,676,699781762,9983,8 +33782,Szlachcic%2FTaran,637,389,699759128,10237,0 +33783,Architekci+Plac%C3%B3w+Boju,332,552,8004076,9880,0 +33784,032,536,681,2293376,9993,0 +33785,Jednak+wol%C4%99+gofry,416,656,699736927,2620,0 +33786,C0058,325,523,8841266,10252,4 +33787,%23024%23,627,629,692803,9761,0 +33788,New+World,437,672,698152377,10297,0 +33789,006+Kr%C3%B3lestwo+RickyKeki,378,627,6354098,8944,0 +33791,016,614,645,849097799,7965,0 +33793,%23Finesse,427,665,699849210,8759,0 +33794,034+Wioska+barbarzy%C5%84ska,678,462,849098769,6916,0 +33795,A+016,369,621,699342219,5894,0 +33796,Wioska+barbarzy%C5%84ska,623,364,6625437,9580,0 +33797,B+062,677,528,8078914,10273,0 +33798,1v9+machine,390,642,699697558,10019,0 +33799,000,675,558,1715091,10362,0 +33800,Ulu-mulu,431,609,699697558,3233,0 +33801,C0158,318,529,8841266,9462,0 +33802,016,357,612,699083129,5790,0 +33803,Wioska+barbarzy%C5%84ska,624,364,6625437,6039,0 +33804,Szulernia,376,371,7249451,9981,0 +33805,Wioska+barbarzy%C5%84ska,431,331,849017820,8777,0 +33806,Monetkownia,620,631,699759128,9868,0 +33807,Wied%C5%BAma,557,327,570100,2842,0 +33808,North+Barba+035,405,349,699796330,10245,0 +33809,Szlachcic,389,361,698160606,10034,0 +33810,0094,572,665,698659980,10160,2 +33811,0315,560,670,698659980,9884,0 +33812,Wioska+barbarzy%C5%84ska,405,652,699736927,3912,0 +33813,004,332,563,849012521,7066,6 +33814,B+054,677,536,8078914,5889,0 +33815,Wioska+barbarzy%C5%84ska,676,464,699574408,9196,0 +33816,A.03+sp%C3%B3%C5%82dzielnia+gryzoni,564,327,849026145,3189,0 +33817,%5B0287%5D,475,318,8630972,2921,0 +33818,Wioska+Zoodix,652,592,699251542,9810,0 +33819,fff,490,319,698239813,9138,0 +33820,V014,339,416,849097737,2563,0 +33821,Wioska+barbarzy%C5%84ska,647,389,6986891,1583,0 +33822,173...Segadorr,442,326,6920960,10616,0 +33823,%2A008%2A,353,388,699273451,10211,0 +33824,23.+Szeksox+2,678,477,699804790,9362,0 +33825,Lord+Lord+Franek+.%23188,543,329,698420691,10285,0 +33826,I065,680,461,699722599,10081,0 +33827,012+.1.+Infanterie-Division,604,354,1990750,7140,0 +33829,004+Winterfel,321,486,699823490,8134,0 +33830,Sekou+2,677,511,699737356,8071,0 +33831,0016,681,464,699574408,8234,0 +33832,-002-,334,578,7183372,10178,8 +33833,Midgard,628,373,9291984,10495,0 +33834,tuaj,459,681,8966820,7599,0 +33835,Wioska+barbarzy%C5%84ska,585,662,848995242,10208,0 +33836,Wioska+brabarzy%C5%84c%C3%B3w,652,610,8224678,10971,0 +33837,R+021,485,684,699195358,9854,0 +33839,Belem,345,588,699494480,9286,0 +33840,05+Baza,542,674,849097981,8300,0 +33841,Szlachcic,602,346,1990750,8219,0 +33842,OFF,680,532,1563417,7389,0 +33843,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,631,7589468,8816,0 +33844,%3D%7C30%7C%3D,644,387,9101574,7806,0 +33845,%230311+sliwatojo,462,320,1238300,4928,0 +33846,24.+Szeksox+3,680,478,699804790,9540,0 +33847,120+Wioska+barbarzy%C5%84ska,537,378,699491076,10001,0 +33848,061,455,330,2502956,10019,0 +33849,Westfold.009,335,431,848918380,10178,8 +33850,Taran,338,575,6180190,9959,0 +33852,C0176,325,540,8841266,10252,0 +33853,AAA,537,322,1006847,6176,0 +33854,Kentin+ufam+Tobie,329,453,699783765,10014,0 +33855,Wioska+barbarzy%C5%84ska,401,353,3484132,7325,0 +33856,C0186,320,531,8841266,8462,0 +33858,Piek%C5%82o+to+inni,604,356,848956765,8057,0 +33859,Jednak+wol%C4%99+gofry,420,662,699736927,10311,0 +33860,Wioska+Natka1968,525,322,699644852,3764,0 +33861,052.+Edda,660,591,8337151,10252,0 +33862,ADEN,580,343,698588535,10292,1 +33863,%23%23%231,486,323,849064614,9061,0 +33864,364%7C615+Ma%C5%82y+Gr%C3%B3d,615,364,6822957,9805,0 +33865,%23045%23,635,624,692803,10019,0 +33866,0657,549,669,698659980,9590,6 +33868,O46+Drvenik,683,519,699272880,8930,0 +33869,off+100+%25,336,570,849012521,10057,0 +33870,0549,477,676,698650301,9771,0 +33871,A+014,368,622,699342219,10237,0 +33872,Muchomor+%2A019%2A,515,679,606407,10300,0 +33874,Lord+Lord+Franek+.%23183,611,356,698420691,7555,0 +33875,183...segador,437,330,6920960,7541,0 +33876,%2A102,581,664,699567608,9963,0 +33877,Ob+Konfederacja,441,333,848915730,8596,0 +33878,Didi,669,573,849070946,10160,0 +33879,Avelorn,405,654,699736927,9972,3 +33880,X+%7C+Forest+Cyaaaanku,324,477,699213622,10000,0 +33881,067+Wioska+012,661,417,9238175,9657,0 +33882,Wioska,514,677,3264534,10698,0 +33883,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,640,699269923,9788,0 +33884,011.,633,379,698361257,9925,0 +33885,%5B033%5D,663,582,698305474,8082,0 +33887,AAA,545,323,1006847,6349,0 +33888,I081+Nie+trzeba+t%C4%99gich+g%C5%82ow,672,447,699722599,9776,0 +33889,A.01+sp%C3%B3%C5%82dzielnia+gryzoni,567,331,849026145,5937,0 +33890,004,532,680,2293376,9993,0 +33891,Ob+Konfederacja,435,330,848915730,6767,0 +33892,%5BB%5D_%5B032%5D+Dejv.oldplyr,418,343,699380607,8403,0 +33893,Na+Skraju+Raju,324,542,8004076,9880,0 +33894,C0185,320,533,8841266,7932,0 +33895,%2A012%2A,356,388,699273451,10211,0 +33896,031.,623,369,699098531,10654,0 +33897,Muchomor+%2A010%2A,516,682,606407,10300,0 +33898,AAA,548,323,1006847,11898,0 +33899,wioska,353,605,849014147,7492,0 +33900,-007-,348,403,1693936,2070,0 +33901,A044,611,646,9023703,8621,0 +33902,C0171,318,514,8841266,8733,0 +33903,019+MONETKI,678,472,7588382,9724,0 +33904,LONDON,403,351,8123790,1113,0 +33905,%230169+yasoke19,491,316,1238300,9506,0 +33906,k36+2,612,354,7340529,11130,0 +33907,A008+Glina,668,440,113796,10141,2 +33908,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,635,1434753,10069,0 +33909,Szlachcic,384,360,698160606,9986,0 +33910,001.+Bordeaux,573,602,8627359,9149,0 +33911,0009,430,332,2321390,5348,0 +33913,fff,489,323,698239813,10337,0 +33914,KRAKPOLIS,403,656,699516268,9627,0 +33915,019,449,329,2502956,10019,0 +33916,Szlachcic,388,362,698160606,10559,0 +33917,Szulernia,382,369,7249451,7385,0 +33918,117,592,657,849097799,3871,0 +33919,Wioska+barbarzy%C5%84ska01,670,545,7973893,2613,0 +33920,Barba,415,658,849089459,2898,0 +33921,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,637,1434753,9967,0 +33922,%5B243%5D+Arrivederci,607,456,848985692,10158,0 +33923,Out+of+Touch,328,431,698962117,4066,0 +33924,%5BB%5D_%5B023%5D+Dejv.oldplyr,416,338,699380607,10495,1 +33925,Wierzbica,572,669,698723158,6048,0 +33926,%2A179%2A,339,414,699273451,10211,0 +33927,FILIPOWO+BRODWINO,345,591,7183372,9468,0 +33928,A0274,323,483,8841266,10252,0 +33929,115,593,656,849097799,4652,0 +33930,psycha+sitting,435,664,699736927,4998,0 +33931,A003,602,646,9023703,10237,0 +33932,Szlachcic%2FTaran,640,389,699759128,10237,0 +33933,.%3A018%3A.,635,382,849098782,11130,0 +33934,ADEN,600,348,698588535,9503,0 +33935,Architekci+Plac%C3%B3w+Boju,332,561,8004076,7077,0 +33936,%28019%29Marat,329,565,849098695,5652,0 +33937,Szulernia,383,368,7249451,10311,0 +33938,Wioska+barbarzy%C5%84ska,622,365,6625437,7890,0 +33939,C0175,316,508,8841266,10252,0 +33940,-008-,328,561,8004076,9567,0 +33941,Wioska+Bochun10,322,471,7449254,7449,0 +33942,031.xxx,498,681,699393742,3965,0 +33943,002,318,476,7127455,7189,0 +33944,Wioska+09,496,318,951823,6742,0 +33945,035+tutaj+pierwsza+mi%C5%82o%C5%9B%C4%87,670,446,699272633,7235,0 +33946,Wioska+barbarzy%C5%84ska,461,327,849017820,7502,0 +33947,003+Alaska,489,682,699238479,9889,0 +33948,Jednak+wol%C4%99+gofry,417,662,699736927,9357,0 +33949,A043,610,646,9023703,8689,0 +33950,B+041,671,542,8078914,8199,0 +33951,AAA,532,325,1006847,7371,0 +33952,%5BB%5D_%5B038%5D+Dejv.oldplyr,417,339,699380607,4532,0 +33953,A038,607,645,9023703,10031,0 +33954,Lord+Lord+Franek+.%23184,611,357,698420691,9100,0 +33955,A.02+sp%C3%B3%C5%82dzielnia+gryzoni,564,331,849026145,3137,0 +33956,088,664,567,849095227,9835,0 +33957,Jednak+wol%C4%99+gofry,424,661,699736927,7902,0 +33958,009+%C5%9Aw181%2A%2A001+kubu%C5%9B,376,626,6354098,10001,0 +33959,%230133+DannyQ,474,325,1238300,10178,0 +33960,%2A039%2A,353,395,699273451,10211,0 +33961,New+World,449,677,698152377,10294,0 +33962,Wioska+barbarzy%C5%84ska,341,416,849096547,2260,0 +33963,1v9+machine,393,642,699697558,9645,7 +33964,-011-,543,321,698588812,2893,0 +33965,Karp,326,539,699265922,8280,0 +33966,023,527,682,2293376,9993,0 +33967,020,354,613,699083129,5246,0 +33968,-%3D+011+%3D-,445,518,698971484,10008,0 +33969,kto+ananasowy+pod+wod%C4%85+ma+dom,676,538,699628084,6795,0 +33970,065+%7C+PALESTINA,656,415,9228039,3302,0 +33971,Wioska+Bochun10,322,500,7449254,5541,0 +33972,0018,530,680,698659980,10252,2 +33973,131,392,649,699269923,5532,0 +33974,Wioska+barbarzy%C5%84ska,585,657,8627359,4063,0 +33975,Jesiotr,326,550,699265922,6465,0 +33976,059.Stradi,452,323,698365960,10438,0 +33977,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,636,1434753,10025,0 +33978,0577,568,667,698659980,8260,0 +33979,%2A%2A23%2A%2A,637,386,849098782,10248,0 +33980,Wsch%C3%B3d+Droga+006,670,571,698562644,10311,0 +33981,%2A%2A17%2A%2A,631,389,849098782,10252,0 +33982,Didek,669,565,849070946,10241,0 +33983,Pomidorowy+dzem,682,511,699598425,10728,0 +33984,%230172+yasoke19,490,316,1238300,6249,0 +33985,%7C044%7C+Durres,493,685,699393742,9282,0 +33986,%28004%29Kholinar,331,566,849098695,8639,0 +33987,011.+Bemowo,685,475,7494497,9902,0 +33988,Jednak+wol%C4%99+gofry,421,663,699736927,7187,0 +33989,La+Burdello+III,507,683,8501514,3321,0 +33990,Wioska+6,331,428,699821755,7188,0 +33991,01+Banan,641,613,8224678,10414,0 +33992,Szlachcic,394,353,3484132,10474,0 +33993,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,434,672,8980651,9978,1 +33994,Gwoli+%C5%9Acis%C5%82o%C5%9Bci,342,406,849098299,6083,0 +33995,110,674,560,7038651,7308,0 +33996,028,612,636,849097799,7553,0 +33997,008,345,601,7183372,10362,0 +33998,043+Mucharadza,663,420,9238175,9869,0 +33999,AAA,530,319,1006847,9494,2 +34000,Wioska+085,646,612,848971079,9825,0 +34001,a+mo%C5%BCe+off+%3F+%3A%29,635,626,698768565,9349,0 +34002,Wioska+barbarzy%C5%84ska,349,606,7183372,6053,0 +34003,Szlachcic,391,358,3484132,10160,0 +34004,018.,557,620,699695167,8200,0 +34005,A039,608,647,9023703,10226,0 +34006,A+090,374,635,699269923,10030,0 +34008,Wioska+barbarzy%C5%84ska,324,454,6258092,5267,0 +34009,SJ2,322,455,6258092,10495,5 +34010,004+Arizona,490,683,699238479,9821,0 +34011,Auu+05,582,662,699567608,9709,0 +34013,062...skrzyp+p%C3%B3%C5%82noc,439,329,6920960,10273,0 +34014,043+Bia%C5%82y+Most,469,677,699834004,9359,0 +34015,052.,458,678,849034882,10362,0 +34016,_PUSTA,657,601,698768565,10082,0 +34017,Taran,336,576,6180190,9957,0 +34018,191...segador,456,323,6920960,10301,0 +34019,Jaaa,676,490,698635863,10479,0 +34020,Damietta,412,658,849089459,8643,0 +34021,Jednak+wol%C4%99+gofry,419,658,699736927,6135,0 +34023,0296,573,664,698659980,10160,0 +34024,10.+Netflix+and+chill,555,326,699072129,10290,0 +34025,G%C3%B3ra+%C5%9Bw+Anny,675,551,848932879,10559,0 +34026,019+Barba,684,497,2135129,9553,0 +34027,4+Vienna,621,366,699857387,4669,0 +34028,ADEN,599,347,698588535,7068,0 +34029,Wioska+arek1s,457,679,1578509,8119,0 +34030,wreszcie+moja,651,401,1086351,8115,0 +34031,Wyspa_32,505,684,2585846,9689,0 +34032,Jednak+wol%C4%99+gofry,403,657,699736927,9835,0 +34033,A037,598,657,9023703,10237,0 +34034,26.+Siedlik12345,678,473,699804790,8779,0 +34035,Wioska+004,678,531,2999957,7862,0 +34037,006,410,659,699246032,8950,0 +34038,%5B01%5D,430,668,699849210,10636,0 +34039,036,529,680,2293376,7184,0 +34040,Sony+911,621,637,1415009,8860,0 +34041,C+014,678,517,8078914,10083,0 +34042,X+%7C+Forest+Cyaaaanku,325,479,699213622,8912,0 +34043,Venlo,607,357,9103424,4394,0 +34044,New+World,437,673,698152377,10297,0 +34045,0153,410,341,699431255,2837,0 +34046,%7C063%7C+Ponton,508,679,699781762,8760,0 +34047,0414,544,634,698659980,10019,0 +34048,.%3A009%3A.,633,383,849078297,5317,0 +34049,Wioska+Sir+Zordon+001,663,574,478956,8886,0 +34050,TK2,651,602,1900364,4101,0 +34051,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,641,1434753,9875,0 +34052,C0023,316,514,8841266,10252,0 +34053,Wonderwall,328,549,698962117,9761,0 +34054,Wioska+Bochun10,318,496,7449254,5103,0 +34055,%25+10+%25+spocone+dziadki,587,656,848995242,1592,0 +34056,Szulernia,375,374,7249451,4432,0 +34057,Mniejsze+z%C5%82o+0097,324,541,699794765,8284,0 +34058,1v9+machine,390,639,699697558,10019,0 +34059,A-050-Heffitto,403,349,8419570,10168,0 +34060,cz+110+8,367,375,3909522,6098,0 +34061,082+%C5%9Awi%C4%85teczna+Bombka,650,399,699491076,7997,0 +34062,100.+Aquae+Sextiae,658,409,849091866,10042,0 +34063,C0284,322,506,8841266,6613,0 +34064,J%23006,571,332,2065730,9797,0 +34065,-+292+-+SS,548,673,849018239,10000,0 +34066,%23014.+NightWalk,456,676,848896948,9009,0 +34067,Auu+03,577,667,848995242,9623,0 +34068,Nadolice,355,614,699864013,5410,0 +34069,Wioska+barbarzy%C5%84ska,623,365,6625437,8963,0 +34070,Szulernia,380,366,7249451,10084,0 +34071,J%23016,579,334,2065730,5910,0 +34072,Szulernia,375,371,7249451,10102,0 +34073,Pomidorowy+dzem,681,512,699598425,10226,0 +34074,007+Haty,347,454,6258092,10055,0 +34075,Po%C5%82udnie.009,555,671,873575,10044,0 +34076,Szlachcic,396,349,3484132,10479,0 +34077,Winterhome.037,494,315,848918380,10178,0 +34078,Wioska+barbarzy%C5%84ska,526,317,1990750,10068,0 +34079,Jaksi%C4%99maszkochaniefilllaarako,343,410,849098299,8455,0 +34080,%2A048%2A,358,391,699273451,10211,0 +34081,Wioska+barbarzy%C5%84ska,674,462,699574408,7395,0 +34082,Wioska+barbarzy%C5%84ska,641,383,7340529,9301,0 +34083,001,318,478,7127455,9593,0 +34084,I055,677,452,699722599,9944,0 +34085,058,513,683,2293376,9993,0 +34086,%5B036%5D+Wioska+barbarzy%C5%84ska,674,443,849095068,9288,0 +34087,Sony+911,620,632,1415009,9840,0 +34088,Wioska+V,456,675,848896948,7846,0 +34090,Wioska+barbarzy%C5%84ska,680,486,699598425,10728,0 +34091,Szlachcic,386,359,698160606,10475,0 +34092,Napewno+to+nie+jest+off,584,340,848912265,3761,0 +34093,Weso%C5%82ych+%C5%9Awi%C4%85t+2,639,380,7340529,10636,0 +34094,A+091,375,635,699342219,9560,0 +34095,A+074,368,629,699342219,3152,0 +34096,DejMon5,371,622,699805839,7720,0 +34097,Po%C5%82udnie.010,556,673,873575,10011,0 +34098,Szlachcic,392,358,3484132,10484,0 +34099,I%C5%82ownica,667,574,849039310,4144,0 +34100,083.+Utinum,656,406,849091866,8447,0 +34101,Wioska+barbarzy%C5%84ska,577,662,6818593,6441,0 +34102,.4.,606,356,1990750,10068,0 +34103,Wioska+barbarzy%C5%84ska,495,321,698239813,5901,0 +34104,A.10+sp%C3%B3%C5%82dzielnia+gryzoni,563,333,699072129,7800,0 +34105,189...barba,439,325,6920960,5157,0 +34106,003,347,602,7183372,10495,0 +34107,Out+of+Touch,327,439,698962117,3469,0 +34108,C0062,321,523,8841266,10252,0 +34109,fff,491,318,698239813,9190,0 +34110,A-045-Heffitto,402,347,8419570,10470,4 +34111,0084,609,351,848913037,9993,0 +34112,Wioska+barbarzy%C5%84ska,506,319,6118079,3673,0 +34113,060+pfennig,682,508,2135129,8437,0 +34114,003,608,350,1990750,10316,0 +34115,%23015.+Tony+Hawk,451,678,848896948,9702,0 +34116,Darma+dla+zawodnika,526,682,699494488,10247,0 +34117,Wioska+barbarzy%C5%84ska,679,483,699598425,10728,0 +34118,New+World,444,675,698152377,10303,0 +34119,-001-,375,637,849096354,4127,0 +34120,%2A124%2A,364,383,699273451,10211,0 +34121,B+057,678,535,8078914,8307,0 +34123,Szulernia,376,370,7249451,10362,0 +34124,073.Stradi,454,322,698365960,10073,0 +34125,cz+Wo%C5%82%C3%B3w,365,383,3909522,4230,0 +34126,Wioska+lejto27,680,469,699574408,10123,0 +34127,%28032%29Rira,336,567,849012521,9436,0 +34128,Szulernia,370,371,7249451,9646,0 +34129,Y+%7C+Forest+Cyaaaanku,320,490,699213622,10000,0 +34130,010.+Dla+flag,354,435,698630507,8556,0 +34131,Sob%C4%85cz,653,589,849039310,6885,0 +34132,Wyspa+015,631,380,699756210,8679,0 +34133,0260,555,653,698659980,10019,0 +34134,Wioska+barbarzy%C5%84ska,316,495,699823490,3471,0 +34135,Szlachcic,391,352,3484132,10495,0 +34136,%23064%23,629,625,692803,9761,0 +34137,008,550,407,699761749,10495,0 +34138,%5BB%5D_%5B035%5D+Dejv.oldplyr,417,344,699380607,8913,0 +34139,Ob+Konfederacja,437,331,848915730,6620,0 +34140,0002,625,384,848915730,9938,0 +34142,P%C5%82achty,659,583,849039310,5860,0 +34143,Wioska+barbarzy%C5%84ska,320,485,849013126,3715,0 +34144,050,475,676,699834004,9740,0 +34145,Ob+Konfederacja,429,333,848915730,6890,0 +34146,O57+Winnipeg,670,554,699272880,7676,0 +34147,%2A066%2A,356,386,699273451,10211,0 +34148,%C5%BBUBR+PSYCHIATRYK+003,612,639,33900,8644,0 +34149,003,680,506,699598425,10490,0 +34150,Wioska+Bochun10,315,490,7449254,10311,0 +34151,A015,611,649,9023703,10229,0 +34152,fff,488,319,698239813,8830,0 +34153,J%23019,571,337,2065730,9797,0 +34154,Wioska+barbarzy%C5%84ska,684,496,699598425,10728,0 +34155,2.Badalona,565,672,698215322,5532,0 +34156,035+Brak+do%C5%9Bwiadczenia+na+maszyn,373,628,6354098,8549,0 +34157,Out+of+Touch,327,443,698962117,9838,0 +34158,-+296+-+SS,549,673,849018239,10000,0 +34159,Wioska+barbarzy%C5%84ska,622,363,6625437,6962,0 +34160,No.19,478,682,698826986,2515,0 +34161,002.+Brwin%C3%B3w,322,447,849098966,7339,0 +34162,055+Wioska+015,660,421,9238175,8368,0 +34163,New+World,446,678,698152377,10294,0 +34164,Zeta+Reticuli+O,415,337,699323302,10317,0 +34165,1v9+machine,382,641,699697558,10019,0 +34166,%2A261%2A,339,415,699273451,2955,0 +34167,Muchomor+%2A007%2A,511,685,606407,10311,0 +34168,%230312+sliwatojo,460,321,1238300,6636,0 +34170,094.+Zatoka+Kr%C3%B3lewska,665,583,8337151,10160,6 +34171,LordAlamar,636,615,699797508,6739,0 +34172,%28007%29Thaylen+City,328,568,849098695,9948,0 +34173,Wyspa+027,636,374,699756210,6276,0 +34174,_PUSTA,660,592,698768565,10069,0 +34175,Wyspa+020,629,375,699756210,10273,0 +34176,B006,473,679,8954402,9494,0 +34177,TWIERDZA+.%3A047%3A.,667,562,7154207,10838,0 +34178,BAC%C3%93WKA+%7C040%7C,661,408,7394371,7142,0 +34179,019+Czarnoksi%C4%99%C5%BCnik,366,627,8268010,6620,0 +34180,042+Belhaven,471,678,699834004,9718,0 +34181,Wioska+barbarzy%C5%84ska,630,377,7555180,4936,0 +34182,.%3A012%3A.,637,380,849078297,4577,0 +34184,-+293+-+SS,544,674,849018239,10000,0 +34185,Szulernia,374,373,7249451,5818,4 +34186,C0025,320,520,8841266,10252,0 +34187,021,412,657,699736927,6475,0 +34188,028%23+Lajrra,457,680,3933666,10268,0 +34189,Wioska+barbarzy%C5%84ska,343,589,7183372,7451,0 +34190,Gattacka,622,372,699298370,9852,0 +34191,Lord+Lord+Franek+.%23143,514,322,698420691,10026,0 +34192,037,677,479,7085502,9719,0 +34193,034.xxx,479,684,699393742,4161,0 +34194,007+Islay,557,325,699072129,6541,0 +34195,75k%24+Grvvyq,673,566,699676005,10495,0 +34196,Wioska+barbarzy%C5%84ska,628,368,6625437,5217,0 +34197,200+km,408,344,699854830,4012,0 +34198,%5B014%5D+Klocuchowo,673,435,849095068,9312,0 +34199,rotes+idz+spac+misiu,462,675,698807570,8632,0 +34200,114,595,656,849097799,5199,0 +34201,SJ5,330,448,6258092,10252,6 +34202,-003-,346,396,1693936,3934,0 +34203,Myszki+to+%C5%BCart+tego+serwera+%3A%29,605,347,849057572,10252,0 +34204,209,422,333,7271812,3496,0 +34205,X+%7C+Forest+Cyaaaanku,318,474,1536625,5940,5 +34206,0578,566,665,698659980,8923,0 +34207,Chekku+-+meito,324,524,9280477,9976,0 +34208,Piek%C5%82o+to+inni,592,347,848956765,3972,0 +34209,0020,546,671,698659980,10160,0 +34210,080,474,614,699336777,10083,0 +34211,A0283,321,485,8841266,9257,0 +34212,New+World,442,676,698152377,10294,0 +34213,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,641,699269923,9832,0 +34214,Wioska+4,575,333,7560474,7042,0 +34215,A057,606,651,9023703,10221,0 +34216,0154,411,343,699431255,2414,0 +34217,village+2,650,402,1086351,9507,0 +34219,%230134+golek95,477,319,1238300,8230,0 +34220,Kiedy%C5%9B+Wielki+Wojownik,598,348,8632462,5003,0 +34221,047-+Mroczna+Osada,651,394,849035905,9552,0 +34222,OSADA+III,679,499,699598425,10582,0 +34223,Psycha+Siada,441,668,698807570,10068,0 +34224,Wioska+Bochun10,323,470,7449254,6731,0 +34225,I056,681,461,699722599,10377,0 +34226,Almere,603,353,1990750,9480,0 +34227,%2A%2A38%2A%2A,672,439,849098782,9995,0 +34228,%2A235%2A,333,445,699273451,10433,0 +34229,C0072,320,512,8841266,10252,0 +34230,%2A243%2A,336,437,699273451,9951,0 +34231,Wioska+barbarzy%C5%84ska,628,375,7555180,3668,0 +34232,A+030,368,628,699342219,8916,0 +34233,138+Dolina+Konopii,648,399,699491076,8250,0 +34234,012+Mordor,456,677,698585370,9739,0 +34235,0608,476,683,698659980,10019,0 +34236,XXX,461,676,699827112,8662,0 +34237,Westfold.008,331,422,848918380,10178,0 +34238,C0084,319,511,8841266,10252,0 +34239,Wioska+barbarzy%C5%84ska,460,324,849017820,6703,0 +34240,001,324,557,849012521,10495,8 +34241,%3D%7C38%7C%3D,645,391,9101574,4291,0 +34242,Wioska+barbarzy%C5%84ska,321,452,6258092,3857,0 +34244,Pomidorowy+dzem,679,516,699598425,10728,0 +34245,Farcik,660,585,2269943,6215,0 +34246,Toru%C5%84,555,323,849108784,3162,0 +34247,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,384,633,1434753,9029,0 +34248,%230165+yasoke19,490,318,1238300,10178,0 +34249,Krytl07,512,320,1990750,10311,0 +34250,C004+Liskota,591,661,9023703,10104,0 +34251,0052,602,353,848913037,9993,0 +34252,Mirzec,572,667,698723158,5805,0 +34253,S1Joker+pozdrawia+%3B%29,333,570,849098695,6757,0 +34254,Wioska+barbarzy%C5%84ska,318,506,7098955,8730,0 +34255,Ob+Konfederacja,427,331,848915730,4584,0 +34256,No.17,473,678,698826986,1713,0 +34257,New+World,435,668,698152377,10297,0 +34258,KONFA+TO+MARKA%2C+NARKA,319,458,698152377,10292,0 +34259,%2A030%2A,349,393,699273451,10211,0 +34260,J%23017,576,337,2065730,9797,0 +34261,%2A009%2A,354,387,699273451,10211,0 +34262,%23086%23,633,625,692803,9247,0 +34263,155...hubertw25,441,326,6920960,10237,0 +34264,-10-,624,373,699837826,6835,0 +34265,Szlachcic,379,359,698160606,10476,4 +34266,Wioska+barbarzy%C5%84ska,332,422,2418002,8470,0 +34267,140+Dolina+Wilk%C3%B3w,649,397,699491076,5495,0 +34268,Twierdza+%28GETTO%29,477,636,0,6873,32 +34269,016+Claremont,476,678,699834004,10019,0 +34270,003+Desant,480,682,698620694,9443,0 +34271,Wioska+Rublow,650,601,1900364,9745,0 +34272,Pomidorowy+dzem,685,512,699598425,8006,0 +34274,cz+zachod+005,364,377,3909522,3351,0 +34275,0003,677,465,699574408,10008,0 +34276,C0057,319,515,8841266,10252,0 +34277,Wioska+045,647,603,848971079,9761,0 +34278,%23Forza+03,434,667,699849210,6814,0 +34279,Dlaczego..%3F,413,667,699684693,9124,0 +34280,Wioska+barbarzy%C5%84ska,679,497,699598425,10728,0 +34281,KR%C3%93L+PAPI+WIELKI,642,617,698191218,9662,0 +34282,Wioska+Kr%C3%B3lowo+Z%C5%82ota+3,328,433,7012651,4114,2 +34283,_PUSTA,658,592,698768565,10338,0 +34284,Ten+tego,565,333,699710633,9134,0 +34285,Po%C5%82udnie.006,555,675,873575,10297,0 +34286,021,358,606,699083129,4223,0 +34287,006+Liberty+Stadium,675,445,849098769,9924,0 +34288,Wioska+barbarzy%C5%84ska,344,591,7183372,8465,0 +34290,Out+of+Touch,327,431,698962117,8948,0 +34291,J%23007,572,332,2065730,9797,0 +34292,007+Nebraska,487,684,699238479,4285,0 +34293,080.+Morze+Eniwetty,666,579,8337151,7600,0 +34294,Out+of+Touch,330,431,698962117,2761,0 +34295,A37,471,644,849037407,9804,0 +34296,076,663,573,849095227,9407,0 +34298,Wioska+Bochun10,325,472,7449254,10311,0 +34299,0397,564,669,698659980,10252,0 +34300,New+Land+24,337,412,849064752,2299,0 +34301,097.+Italica,658,407,849091866,9352,0 +34302,Orze%C5%82+Wyl%C4%85dowa%C5%82,459,674,698807570,10252,0 +34304,016art,605,348,1990750,10116,8 +34305,Kamyk,320,454,849098400,3972,0 +34306,002+FF,314,504,7097727,6569,0 +34307,019+Schwere+Panzer-Abteilung+504,605,356,849091899,3884,0 +34308,0236,533,680,698659980,10083,0 +34309,1001,622,361,699150527,10160,0 +34310,Wioska,324,456,848946608,3904,0 +34311,Wioska+barbarzy%C5%84ska,685,492,699598425,10099,0 +34312,%2AINTERTWINED%2A,511,680,698704189,4068,0 +34314,Lord+Lord+Franek+.%23146,509,322,698420691,10110,0 +34315,092+Tomek,685,510,2135129,6497,1 +34316,015+arena,678,448,849098769,9761,0 +34317,Wioska+barbarzy%C5%84ska,343,599,7183372,10216,0 +34318,_PUSTA,656,596,698768565,10061,0 +34319,Taran,682,498,699598425,10728,0 +34321,07+Cytadela+P%C3%B3%C5%82nocna,564,330,849108780,10362,0 +34322,C0149,320,526,8841266,10252,0 +34323,089+Tomek,680,512,2135129,7862,0 +34325,New+World,432,670,698152377,10292,0 +34326,Wioska+barbarzy%C5%84ska,344,589,7183372,4117,0 +34327,No.15,477,677,698826986,1237,0 +34328,OFF,654,598,849014413,10159,0 +34329,KONFA+TO+MARKA%2C+NARKA,318,462,698152377,10294,0 +34330,ORLE,356,616,699864013,12154,0 +34331,081.Stradi,447,326,698365960,10308,0 +34332,R+026,486,680,699195358,9055,0 +34333,KR%C3%93L+PAPI+WIELKI,636,624,698191218,10319,0 +34334,Wioska+J,572,338,7560474,3809,0 +34335,510,676,554,7038651,8314,0 +34336,Wieniec-Hubix,660,423,7142659,9995,0 +34337,059+pfennig,684,509,2135129,8129,0 +34338,.achim.,484,312,6936607,7969,0 +34339,%2A045%2A,344,398,699273451,10211,0 +34340,OFF,654,594,849014413,9585,0 +34341,Nowa+39,662,587,698702991,9455,0 +34342,C0177,325,541,8841266,10252,0 +34343,Auu+07,578,668,848995242,7096,0 +34344,Wioska+Sir+Zordon+004,664,574,478956,6064,0 +34345,Wioska+Bochun10,320,495,7449254,7724,0 +34346,195...Segadro,456,325,6920960,10650,0 +34347,Mayans,649,392,7973893,9269,0 +34348,R+015+%7EP%C4%99knina%7E,484,678,699195358,10019,0 +34349,Didek,671,561,849070946,10160,0 +34350,214,433,331,7271812,9889,0 +34351,Sekou+3,679,509,699737356,10059,0 +34352,C0044,323,521,8841266,10252,0 +34353,Out+of+Touch,324,443,698962117,9472,0 +34354,Wioska+X,580,339,698200480,7234,0 +34355,C0169,319,519,8841266,10252,0 +34356,%2A228%2A,331,438,699273451,8183,0 +34357,0044,678,463,698416970,10019,0 +34358,Wioska+r+3,558,668,848915531,5286,0 +34359,Taran+008,607,360,699098531,10971,0 +34360,22.+Dayz,555,325,699072129,9258,0 +34361,016+Wioska+barbarzy%C5%84ska,679,450,849098769,8553,0 +34362,%C5%BBUBR+PSYCHIATRYK+004,616,642,33900,8218,0 +34363,B+015,675,550,8078914,9770,0 +34364,C0031,316,522,8841266,10252,0 +34365,016+%2A+Lady+Porto+%2A,646,396,699406750,12154,0 +34366,New+Land+17,342,403,849064752,3887,0 +34367,Szlachcic%2FTaran,634,375,699759128,10237,7 +34369,Chekku+-+meito,321,526,9280477,9976,0 +34370,B+059,677,534,8078914,7005,0 +34371,109+And+another+one,334,571,699382126,10476,0 +34372,%5BB%5D_%5B026%5D+Dejv.oldplyr,416,336,699380607,10495,9 +34373,-05-,322,516,765188,8127,0 +34374,Winterhome.069,504,314,848918380,10045,0 +34375,%230198+Segadorr+dar,460,319,1238300,7578,0 +34376,019+Mucharadza,663,426,9238175,10559,0 +34378,999+Kubacki,669,421,699491076,5830,0 +34379,Prosto+do+nieba+czw%C3%B3rkami+szli..,449,328,699590236,3029,0 +34380,058+Wioska+004,663,416,9238175,9963,0 +34381,Jednak+wol%C4%99+gofry,416,660,699736927,2803,0 +34382,172...Segadorr,438,329,6920960,10330,0 +34383,009,678,495,7085502,9735,4 +34384,Nowa+47,664,568,698702991,7695,0 +34385,Winterhome.042,493,314,848918380,10178,0 +34386,Hiszpan2,672,551,7038651,10389,0 +34387,Wsch%C3%B3d+X1,684,529,698562644,7987,0 +34389,Taran,341,583,6180190,9957,0 +34390,022+toni,683,457,849098769,9861,0 +34391,A064,603,654,9023703,8543,0 +34393,007,315,505,7097727,6689,0 +34394,Wioska+barbarzy%C5%84ska,467,325,699191449,6298,0 +34395,208,421,331,7271812,3739,0 +34396,184...skrzyp,444,325,6920960,7504,0 +34397,.015.,503,379,698489071,10595,0 +34398,Wioska+barbarzy%C5%84ska,506,683,699781762,10057,0 +34399,START+06,574,670,698723158,3398,0 +34400,C+005,682,514,8078914,7517,0 +34401,Metalchem,682,539,848932879,10971,8 +34403,Wioska+r+11,556,672,848915531,3949,0 +34404,%230292+nt,466,318,1238300,7757,0 +34405,Jaz,322,551,699265922,6351,0 +34406,%2A001%2A,353,392,699273451,10211,0 +34407,sony911,621,642,1415009,10560,0 +34408,%2A094%2A,360,380,699273451,10211,0 +34409,Architekci+Plac%C3%B3w+Boju,334,562,8004076,9880,0 +34410,%2A100%2A,360,381,699273451,10211,9 +34411,Wioska+barbarzy%C5%84ska,553,331,699072129,9412,0 +34412,Weso%C5%82ych+%C5%9Awi%C4%85t,638,377,848924219,3541,0 +34413,Z%7C006%7C+Foggia,474,684,699393742,8918,0 +34414,Helms+Deep,459,679,849004274,9835,0 +34416,%7C065%7C+Ostry,488,682,699393742,10252,0 +34417,%23023%23,620,634,692803,9761,0 +34418,0601,488,680,698659980,10083,0 +34419,sundance,640,383,7340529,10887,0 +34420,Wioska+barbarzy%C5%84ska,345,596,7183372,5717,0 +34421,niemanieba,502,519,699785935,9976,0 +34422,Wioska+Barbarzy%C5%84ska,339,586,3990066,5130,0 +34423,Adidas,418,658,9191031,8029,0 +34424,%230118+tomek791103,473,320,1238300,8244,0 +34425,182...segador+M,443,327,6920960,8336,0 +34426,Proposal+WN,496,683,849004274,9835,0 +34427,Wyspa_33,506,684,2585846,9638,0 +34428,Kuzyn+B%C5%82a%C5%BCej,545,678,849098628,10322,0 +34429,0322,446,605,698659980,10252,0 +34430,%23017%23,630,631,692803,9761,0 +34431,C113,368,631,699383279,9580,0 +34432,Szulernia,368,369,7249451,3238,0 +34433,014,320,501,7097727,5019,0 +34434,020,535,677,2293376,9993,0 +34435,011+Montana,495,684,699238479,7573,0 +34436,A0276,322,484,8841266,10362,0 +34438,005+Emirates+Stadium,677,448,849098769,9738,0 +34439,1v9+machine,389,645,699697558,10019,0 +34440,-004-,347,398,1693936,3812,0 +34441,A034,599,655,9023703,10237,0 +34442,%231+Imperium,659,586,699778867,12154,0 +34443,Wioska+barbarzy%C5%84ska,683,470,849098769,6508,0 +34444,008+I+myk+pierwsza+darma,499,390,7758085,9861,0 +34445,Dolina+Rze%C5%BAnik%C3%B3w,646,390,7973893,7043,0 +34446,Taran,338,583,6180190,6948,7 +34447,Barbabasia,343,412,849098299,2410,0 +34448,Y+%7C+Forest+Cyaaaanku,319,487,699213622,10075,0 +34449,%23006%23,631,632,692803,9761,0 +34450,KR%C3%93L+PAPI+WIELKI,642,619,698191218,10336,0 +34451,Kiedy%C5%9B+Wielki+Wojownik,592,348,8632462,8083,0 +34452,B+061,677,531,8078914,9831,0 +34453,017+%2A+Lady+Porto+%2A,646,395,699406750,6022,0 +34454,083+%C5%9Awi%C4%85teczna+Bombka,653,400,699491076,9266,0 +34455,Ronin+P,641,629,8815749,10019,0 +34456,Wioska+barbarzy%C5%84ska,672,455,113796,4070,0 +34457,%3D%7C48%7C%3D,650,394,9101574,10008,0 +34458,Jednak+wol%C4%99+gofry,424,663,699736927,8650,0 +34459,Po%C5%82udnie.018,552,677,873575,9964,0 +34460,-010-,543,324,698588812,2352,0 +34462,%234+Centrum,661,586,699778867,9556,0 +34463,016+Teirm,658,590,8337151,10083,0 +34464,Szlachcic%2FTaran,642,394,699759128,10237,0 +34466,K34+-+%5B161%5D+Before+Land,429,330,699088769,8440,0 +34467,210,423,333,7271812,5584,0 +34468,003,314,502,7097727,8581,0 +34469,%2A116%2A,361,381,699273451,10211,0 +34470,%2A%2A33%2A%2A,666,434,849098782,10913,0 +34471,%23094%23,622,634,692803,9761,0 +34472,%5BB%5D_%5B025%5D+Dejv.oldplyr,428,336,699380607,9499,0 +34473,%23012%23,623,630,692803,9761,0 +34474,psycha+sitting,409,661,699736927,6206,0 +34475,X+%7C+Forest+Cyaaaanku,318,468,1536625,10000,0 +34476,0008,615,610,6417987,9827,0 +34477,009,345,602,7183372,10015,0 +34478,002,361,610,699083129,10222,2 +34479,Ma%C5%82yszyn,573,667,698723158,6824,0 +34480,Wioska+barbarzy%C5%84ska,498,682,699781762,10495,0 +34481,_PUSTA,656,598,698768565,10063,0 +34482,Romeo,684,490,699737356,10152,0 +34483,Nowa+45,665,570,698702991,9902,0 +34484,038+Mucharadza,664,419,9238175,10559,0 +34485,0302,571,665,698659980,9950,0 +34486,0579,550,671,698659980,9745,0 +34487,%28015%29Herdaz,329,567,849098695,7327,0 +34488,710,675,559,7038651,8245,0 +34490,%2A%2A44%2A%2A,676,442,849098782,7745,0 +34491,MojeSzczytToTw%C3%B3jDno,516,372,828637,11321,0 +34492,Grvvyq+101k%24,679,539,699676005,9247,0 +34493,%23174%23,643,619,692803,9761,0 +34494,%2AINTERTWINED%2A,510,683,698704189,9022,0 +34495,B+042,684,530,8078914,6952,0 +34497,Wioska+barbarzy%C5%84ska,462,325,699191464,6855,0 +34498,0416,546,634,698659980,8128,0 +34499,Taran,598,342,1990750,7674,0 +34500,--Tinka,620,385,8096537,10104,0 +34501,sony911,624,639,1415009,10017,0 +34502,A031,602,655,9023703,10237,0 +34503,Wioska+002,572,336,699703295,4227,0 +34504,004,314,499,7097727,7491,0 +34505,FILIPOWO+Aga2201199+Z%C5%81O,345,581,6180190,9976,0 +34506,Sullivanum+%5B3%5D,336,588,1606425,11875,0 +34507,022+GypsyLand,615,355,699098531,6525,0 +34508,%2A046%2A,348,396,699273451,10211,0 +34509,Darma+dla+zawodnika,524,682,699494488,8852,0 +34510,0604,488,683,698659980,10160,0 +34511,Wioska+barbarzy%C5%84ska,521,318,698350371,6733,0 +34512,-+245+-+SS,537,682,849018239,10000,5 +34513,A040,444,402,8740199,10217,0 +34514,Liniewko,656,588,849039310,12154,0 +34515,123,469,681,9003698,10373,0 +34516,KR%C3%93L+PAPI+WIELKI,647,614,698191218,10354,0 +34517,Wioska+%28004%29,673,456,698232227,3143,0 +34518,%2A%2A51%2A%2A,670,424,849098782,7979,0 +34519,Wioska+barbarzy%C5%84ska,678,466,699574408,10000,0 +34520,Wioska+barbarzy%C5%84ska,517,686,606407,8640,0 +34521,Taran,337,583,6180190,9965,0 +34522,.%3A019%3A.,635,378,849078297,6292,0 +34523,%230117+tomek791103,479,322,1238300,10178,0 +34524,048,672,513,699413040,9807,0 +34525,320,674,557,7038651,8827,0 +34526,082.+Vicentia,654,409,849091866,7506,0 +34527,4.Lipovka,412,336,849098648,7176,0 +34528,Szlachcic,383,359,698160606,10380,0 +34529,B.15+duchy+serca+puszczy,551,321,849026145,3322,0 +34531,A+050,368,623,699342219,3131,0 +34532,218,427,337,7271812,7482,0 +34533,C0033,321,517,8841266,10252,7 +34534,psycha+sitting,422,668,699736927,10146,0 +34535,AAA,529,322,1006847,6877,0 +34536,016,670,570,6160655,9016,0 +34537,C0266,314,508,8841266,5251,0 +34538,Wioska+barbarzy%C5%84ska,680,485,699598425,10728,0 +34539,OFF,683,527,1563417,8150,0 +34540,Osada+koczownik%C3%B3w,500,681,699781762,10057,3 +34541,Szale,460,682,698807570,9792,0 +34542,C+006,681,519,8078914,9114,0 +34543,058+pfennig,680,509,2135129,7684,0 +34544,Kariko+Village,478,318,849048216,1968,0 +34545,xddd,468,320,699393759,5258,0 +34547,%28016%29Tu+Bayla,331,569,849098695,9491,0 +34548,New+World,433,671,698152377,10290,0 +34549,1v9+machine,390,641,699697558,10019,0 +34550,.%2F%2F%2F...%2F%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F.%2F,370,630,849097937,10061,0 +34551,%2AINTERTWINED%2A,514,681,698704189,7308,0 +34553,Piek%C5%82o+to+inni,596,347,848956765,3758,0 +34554,A+019,365,621,699342219,7118,0 +34557,Wioska+003,680,527,2999957,7953,0 +34558,007,491,684,848953066,4489,0 +34559,Ajjj,343,588,7318415,6133,0 +34560,048,540,680,2293376,9993,0 +34561,Wioska+barbarzy%C5%84ska,373,363,849027025,8447,0 +34562,%2A%2A32%2A%2A,675,436,849098782,10436,0 +34563,Wioska+barbarzy%C5%84ska,646,609,1900364,5146,0 +34564,V008,337,419,849097737,8445,0 +34565,New+World,437,676,698152377,10300,7 +34566,ups+pomy%C5%82ka,333,433,7012651,7247,0 +34567,Thuzal+5,358,616,699699601,12021,0 +34568,ZULA,400,343,8123790,4492,0 +34569,Czarny+8,603,351,1990750,10068,5 +34570,New+Land+29,345,403,849064752,2667,0 +34571,Staw,320,543,699265922,6341,0 +34572,KR%C3%93L+PAPI+WIELKI,640,617,698191218,10000,0 +34573,066,452,329,2502956,8652,0 +34574,Szlachcic,631,372,848924219,6821,2 +34575,Wioska+Go%C5%9B%C4%87098607,326,543,849098607,2021,0 +34576,Wioska+barbarzy%C5%84ska,568,669,6818593,8048,0 +34577,017+arena,678,447,849098769,9899,0 +34578,KR%C3%93L+PAPI+WIELKI,638,618,698191218,10164,0 +34579,AAA,540,320,1006847,6722,0 +34580,Wioska+barbarzy%C5%84ska,624,368,6625437,6409,0 +34581,%C5%BBUBR+PSYCHIATRYK+002,611,642,33900,7814,0 +34582,%5BB%5D%5B01%5D+House+of+Blues,426,339,699380621,10809,0 +34583,Psycha+Siada,440,671,698807570,7163,0 +34584,%2A257%2A,355,386,699273451,2208,0 +34585,A+022,365,629,699342219,5757,0 +34586,-+269+-+SS,539,678,849018239,7399,0 +34587,Tolpyga,324,550,699265922,5996,0 +34588,Osada+koczownik%C3%B3w,340,596,7183372,10139,7 +34589,Komornicy+011,350,609,699336777,5458,0 +34590,fff,488,323,698239813,10495,0 +34591,Wioska+barbarzy%C5%84ska%2C,590,653,848995242,10146,0 +34592,Wioska+barbarzy%C5%84ska,544,322,699244334,2247,0 +34593,Nowa+44,662,578,698702991,9358,0 +34594,Na+Skraju+Raju,320,547,8004076,7995,0 +34595,%2A160,342,409,699273451,10211,0 +34596,Stanisko,581,659,1415009,3250,3 +34597,Wioska+Tomko119,387,646,699269923,9625,0 +34598,Ob+Konfederacja,441,332,848915730,7285,0 +34599,39k%24+Grvvyq,674,563,699676005,10495,2 +34600,%C5%BBUBRAWKA+011,603,630,33900,10259,0 +34601,Zeta+Reticuli+O,420,336,699323302,10887,0 +34602,Ronin+P,598,618,698768565,9995,0 +34603,C0170,327,541,8841266,10495,0 +34604,Wioska+barbarzy%C5%84ska,336,418,2418002,3093,0 +34605,%3D%7C18%7C%3D,642,381,9101574,6271,0 +34606,026+Stormveil+Castle,514,315,1990750,10068,0 +34607,C0102,319,521,8841266,10362,0 +34608,Wioska+pawel1980r,387,648,699269923,9994,0 +34609,New+World,442,675,698152377,10292,0 +34610,Z%7C005%7C+Neapol,470,678,699393742,9421,0 +34611,Kentin+ufam+Tobie,323,460,699783765,10000,0 +34612,New+World,436,673,698152377,10303,0 +34613,%5B003%5D+Revenge+33333,569,334,699710633,10178,0 +34614,036+Wioska+barbarzy%C5%84ska,672,452,849098769,7633,0 +34615,Rakieta,328,432,849098727,2958,0 +34616,Out+of+Touch,327,446,698962117,2571,0 +34617,Wioska+barbarzy%C5%84ska,575,325,7563943,2572,0 +34618,%3D%7C32%7C%3D,646,398,9101574,7129,0 +34619,RADOM,323,537,699794765,6191,0 +34620,0309,570,668,698659980,8336,0 +34621,16.+Denver,685,481,699804790,9362,0 +34622,Wioska+7,315,486,849075836,8514,0 +34623,cz+Agnes,365,379,3909522,9851,0 +34624,-+294+-+SS,544,676,849018239,10008,0 +34625,Wioska+barbarzy%C5%84ska,559,329,699072129,10281,0 +34626,03+Broku%C5%82,642,615,8224678,9210,0 +34627,C0280,321,504,8841266,10317,0 +34628,AG18,585,666,699876345,8224,0 +34630,13.+Roch,682,482,699804790,9362,0 +34631,2.Burgos,562,670,698215322,5136,0 +34632,Wioska+Kr%C3%B3lowo+Z%C5%82ota+2,334,434,7012651,5917,0 +34633,400,675,555,7038651,10348,0 +34634,Wioska+kimic19,344,590,7183372,3031,0 +34635,Ob+Konfederacja,435,332,848915730,10067,3 +34636,R+020+%7EZimowa+Twierdza%7E,484,684,699195358,9717,0 +34637,B02,476,681,698652014,8662,0 +34638,-03-,322,504,765188,6055,0 +34639,Kingdom+2,680,504,699598425,10728,0 +34640,C01,678,542,848995478,10776,1 +34642,%2A017%2A,358,389,699273451,10211,0 +34643,Wioska+barbarzy%C5%84ska,506,679,699781762,10057,0 +34644,066.Stradi,454,323,698365960,10073,0 +34645,rotes+idz+spac+misiu,453,674,698807570,6651,0 +34646,0605,490,686,698659980,10019,0 +34647,Wioska+NATSONI+I,679,498,699598425,10233,0 +34648,Wioska+barbarzy%C5%84ska,433,326,699393759,9194,0 +34649,Szlachcic%3Btaran,618,363,1990750,10301,0 +34650,Ob+Konfederacja,432,333,848915730,10075,2 +34651,Wioska+6,315,487,849075836,7921,0 +34652,Wioska+barbarzy%C5%84ska,344,405,849096547,2467,0 +34653,psycha+sitting,407,662,699736927,10146,0 +34654,Napewno+to+nie+jest+off,585,338,848912265,6774,0 +34655,015,357,608,699083129,4837,0 +34656,%5B006%5D+Pierdziszewo,675,437,849095068,10237,8 +34657,Po%C5%82udnie.019,554,675,873575,9975,0 +34658,-+Dragon1,543,323,699825236,6238,0 +34659,I080,676,441,699722599,9558,0 +34660,Muchomor+%2A013%2A,518,679,606407,10094,0 +34661,0155,411,342,699431255,2762,0 +34662,Lord+Lord+Franek+.%23142,513,320,698420691,10146,0 +34663,GRIGOR-2007,623,363,6625437,9782,0 +34664,Sony+911,590,654,1415009,10849,0 +34665,Minas+Ithil,624,363,699857387,10019,0 +34666,092+Nowy+Rok,656,402,699491076,9594,0 +34667,Kielb,325,547,699265922,10160,3 +34668,K36+-+%5B002%5D+Before+Land,626,371,699088769,4785,0 +34669,057,645,522,699351301,10140,0 +34670,C0051,323,523,8841266,10252,0 +34671,020.,649,610,6520732,8017,0 +34672,%23044%23,635,629,692803,9761,0 +34673,F01,685,525,848995478,7011,0 +34674,Wioska+barbarzy%C5%84ska,686,492,699598425,10728,0 +34675,Deveste+ufam+Tobie,431,635,699783765,10009,0 +34676,035+Wioska+barbarzy%C5%84ska,673,449,849098769,7625,0 +34677,003+Wanda+Metropolitano,676,453,849098769,10485,0 +34678,%2A046,598,653,699567608,9713,0 +34679,Napewno+to+nie+jest+off,587,337,848912265,8993,0 +34680,Wioska+barbarzy%C5%84ska,560,325,570100,3258,0 +34681,Komornicy+004,349,607,699336777,8264,0 +34682,159...lord+rdw,440,330,6920960,10290,0 +34683,%230009+%C5%81obuz+kocha+najbardziej,499,556,9272054,10019,0 +34684,222,636,378,849092309,6001,0 +34685,Ob+Konfederacja+%2B,434,330,848915730,7144,0 +34686,%23017.+Polska+Gola,451,676,848896948,8395,0 +34687,C0151,319,526,8841266,9035,0 +34688,Jednak+wol%C4%99+gofry,417,661,699736927,8407,0 +34689,027Wioska+barbarzy%C5%84ska,679,448,849098769,8448,0 +34690,xDD,673,562,849045915,8774,0 +34691,Jezioro,325,553,699265922,9761,0 +34692,O61+Cesvaine,674,559,699272880,11534,0 +34693,ADEN,603,346,698588535,9643,0 +34694,024+toni,676,457,849098769,8716,1 +34695,Wioska+12,319,486,849075836,5954,0 +34696,I057,675,450,699722599,9802,0 +34697,Wioska+barbarzy%C5%84ska,361,387,0,2752,0 +34699,Szlachcic,396,355,3484132,10495,0 +34700,Gniezno,553,323,849108784,4938,0 +34701,Wioska+barbarzy%C5%84ska,570,333,0,4508,0 +34702,Jednak+wol%C4%99+gofry,416,662,699736927,7621,0 +34703,Taran,680,488,699598425,10728,0 +34704,Zeta+Reticuli+O,417,341,699323302,10569,0 +34705,011,348,603,7183372,10362,0 +34706,Y+%7C+Forest+Cyaaaanku,317,488,699213622,10092,0 +34707,12.+Grzesiu,684,481,699804790,9362,0 +34708,003,682,538,699829916,3006,0 +34709,049+zzz012,664,415,9238175,10293,0 +34710,A31,462,677,698652014,9940,0 +34711,Lord+Arsey+II,341,421,698349125,3233,0 +34712,%5B028%5D+Wioska+barbarzy%C5%84ska,671,436,849095068,9288,0 +34713,wounded+knee,638,385,7340529,7370,0 +34714,a+mo%C5%BCe+off+%3F+%3A%29,637,625,698768565,9342,0 +34715,Wioska+barbarzy%C5%84ska,581,333,699710633,3209,0 +34716,%3D%7C50%7C%3D,650,390,9101574,2641,0 +34717,LAST+%21%21%21,646,601,849014413,10084,0 +34718,krytl17,508,316,1990750,7375,0 +34719,%2A%2A07%2A%2A,666,435,849098782,11752,0 +34720,006,642,379,699738350,7790,0 +34721,cz+10,368,380,3909522,11489,0 +34722,Szulernia,368,375,7249451,3811,0 +34725,019+Daevon,477,682,699834004,7340,0 +34726,024+Wioska,681,467,699671454,2792,0 +34727,%3F%3F%3F,483,319,698489071,10083,0 +34728,Szulernia,381,363,7249451,3061,0 +34729,071,542,680,2293376,5420,0 +34730,Peryferie,328,564,849096458,5586,0 +34731,C0093,319,525,8841266,10252,0 +34732,Kentin+ufam+Tobie,325,459,699783765,10000,0 +34733,%28025%29Aimia,329,574,849098695,6238,0 +34734,0149,408,339,699431255,8250,0 +34735,Wioska+041,649,602,848971079,9761,0 +34736,Wioska+Bochun10,319,495,7449254,10311,6 +34738,AGA3,685,502,699598425,9784,0 +34739,Muchomor+%2A018%2A,518,680,606407,10297,0 +34740,Wioska+barbarzy%C5%84ska,332,423,2418002,6688,0 +34741,Szlachcic%2FTaran,634,380,699759128,9765,0 +34742,%2AINTERTWINED%2A,502,686,698704189,9711,0 +34743,%5B011%5D+B%C4%85kolice,668,431,849095068,10187,0 +34744,Out+of+Touch,325,438,698962117,9757,0 +34745,062+komornicy,324,543,699510259,9745,0 +34746,%23Sewa%23003,671,441,113796,10143,0 +34747,A.13+sp%C3%B3%C5%82dzielnia+gryzoni,564,326,699072129,8239,0 +34748,Gattacka,679,437,699298370,9678,0 +34749,012+MasRolSplawie,678,445,849098769,10147,0 +34750,Czosnk%C3%B3w,358,613,849014147,7575,0 +34751,%2A%2A05%2A%2A,671,439,849098782,11877,0 +34753,%2A038%2A,348,395,699273451,10211,0 +34754,0150,407,343,699431255,8088,0 +34755,Wioska+10,316,486,849075836,6918,0 +34756,%5B005%5D+Tato%2C+tato%2C+kupa%21,675,433,849095068,10237,0 +34757,New+World,432,673,698152377,10292,0 +34758,Taran,336,580,6180190,9976,0 +34759,Napewno+to+nie+jest+off,587,344,848912265,6897,0 +34760,Wioska+dzikich+%C5%BCuli,577,664,699567608,9202,0 +34761,Klaudek18,631,370,849092309,5205,0 +34762,%2A065%2A,356,385,699273451,10211,0 +34763,Zeta+Reticuli+O,416,341,699323302,10477,0 +34764,IluMinatii,593,339,8963720,6253,0 +34765,psycha+sitting,409,658,699736927,6140,0 +34766,_PUSTA,658,591,698768565,10229,0 +34767,C0256,315,507,8841266,7921,0 +34768,Chances+Are,644,607,2269943,7884,0 +34769,_PUSTA%2B,672,548,699628084,9889,0 +34770,1v9+machine,388,644,699697558,10019,0 +34771,C0265,317,504,8841266,6861,0 +34772,SOKzGUMIjag%C3%B3d,635,379,849059491,8338,0 +34773,231,413,337,7271812,3704,0 +34774,Wioska+barbarzy%C5%84ska,648,603,1900364,9978,0 +34775,No.18,479,679,698826986,7282,0 +34776,C+007,688,514,8078914,8038,0 +34777,Polesie,685,480,849100246,4157,0 +34778,Wioska+barbarzy%C5%84ska,623,637,1415009,7793,0 +34779,0602,487,681,698659980,10019,0 +34780,%7E%7E091%7E%7E,634,619,7829201,9591,0 +34781,AAA,533,317,1006847,9383,0 +34782,1.Primorsk,415,331,849098648,9476,0 +34783,0580,552,672,698659980,9747,0 +34784,Wioska+barbarzy%C5%84ska,450,335,849017820,5278,0 +34785,K36+-+%5B003%5D+Before+Land,628,369,699088769,3972,0 +34786,Wioska+barbarzy%C5%84ska,405,343,699380621,2025,0 +34787,-17-,629,370,699837826,5472,0 +34788,084+One,332,570,699382126,8324,0 +34789,179...Segadorr+M,439,328,6920960,7066,0 +34790,Ob+Konfederacja,437,333,848915730,5996,0 +34791,Out+of+Touch,328,440,698962117,8294,0 +34792,Ave+Why%21,450,673,698585370,9476,0 +34793,A010,602,648,9023703,10237,0 +34794,%3D%7C40%7C%3D,643,393,9101574,4047,0 +34795,%2A5612%2A+Uk%C5%82ad+przestrzenny,669,581,7973893,10287,0 +34796,108,596,653,849097799,8182,0 +34797,psycha+sitting,401,658,699736927,5738,0 +34798,A005,604,646,9023703,10237,0 +34799,fff,492,319,698239813,9803,0 +34800,cz+K10+5,363,385,3909522,7229,0 +34801,AAA,548,324,1006847,6716,0 +34802,C0145,323,534,8841266,10252,0 +34803,C0029,320,516,8841266,10252,0 +34804,0120,392,647,7085510,8034,7 +34805,A063,604,653,9023703,10223,0 +34806,098.+Sar+Soa,668,577,8337151,9562,0 +34807,%2A%2A47%2A%2A,669,431,849098782,5111,0 +34808,AG19,584,667,699876345,5970,0 +34809,D20,676,551,848995478,3226,0 +34810,.%3A005%3A.,353,614,7417116,11562,0 +34812,armata,333,430,849098727,3292,0 +34813,Wioska+barbarzy%C5%84ska,331,421,2418002,6448,0 +34814,Wioska+barbarzy%C5%84ska,682,487,699598425,10728,0 +34815,Wioska+barbarzy%C5%84ska,501,683,699781762,10239,0 +34816,a+mo%C5%BCe+off+%3F+%3A%29,632,625,698768565,9354,7 +34817,102,593,658,849097799,9807,0 +34818,015.,625,371,699098531,7968,0 +34819,%3D%7C34%7C%3D,645,389,9101574,5698,0 +34820,Vanaheim+VI,591,337,699478692,2469,0 +34821,AG12,590,665,699876345,9747,0 +34822,KR%C3%93L+PAPI+WIELKI,639,619,698191218,10311,0 +34823,Wioska+barbarzy%C5%84ska,324,451,6258092,4517,0 +34824,New+Land+25,339,406,849064752,2546,0 +34825,Lord+Lord+Franek+.%23150,509,316,698420691,7449,0 +34826,A009,608,648,9023703,10237,0 +34827,%23175%23,643,620,692803,10104,0 +34828,%23047%23,634,624,692803,9761,0 +34829,005,314,503,7097727,7338,0 +34830,215,448,326,698365960,8905,0 +34831,0277,559,673,698659980,8744,0 +34832,023+toni,678,461,849098769,8920,7 +34833,%5B037%5D+Wioska+barbarzy%C5%84ska,676,444,849095068,9288,0 +34834,.%3A016%3A.,352,613,7417116,8733,0 +34835,C22,680,540,848995478,4238,0 +34836,156...hubertw25,438,330,6920960,10130,0 +34837,%2A%2A04%2A%2A,674,436,849098782,12000,0 +34838,Upa01,328,562,849098695,5150,0 +34839,Auu,581,667,699567608,9712,0 +34840,Wioska+barbarzy%C5%84ska,427,333,699308637,10068,0 +34842,N.+C.+Con+air,664,584,849098693,5601,0 +34843,%230202+Segadorr+dar,464,317,1238300,10178,0 +34844,Wioska+barbarzy%C5%84ska,558,329,699072129,10223,0 +34845,psycha+sitting,422,667,699736927,8765,0 +34847,Wioska+barbarzy%C5%84ska+%2C,587,658,848995242,10418,0 +34848,030+-+Santander,683,521,698342159,9403,0 +34849,Kazimierz+Dolny,322,555,699364813,9073,0 +34850,%5B008%5D,472,319,849099160,10201,0 +34851,Grvvyq+105k%24,681,531,699676005,10495,0 +34852,Wioska+barbarzy%C5%84ska,554,328,699072129,10694,0 +34853,O52+Grindavik,677,535,699272880,8578,0 +34854,%7E%7E079%7E%7E,614,648,7829201,8817,0 +34855,%2A029%2A,349,394,699273451,9880,0 +34856,Wioska+barbarzy%C5%84ska,423,665,699736927,7525,0 +34857,Wioska+barbarzy%C5%84ska,332,419,2418002,6891,0 +34858,Kocpo%C5%82uch+2,334,580,848949597,6754,0 +34859,Wioska+barbarzy%C5%84ska,401,657,699516268,9028,0 +34861,084+Nowy+Rok,655,402,699491076,7238,0 +34862,Out+of+Touch,328,425,698962117,9744,0 +34863,%2A006%2A,358,388,699273451,10211,0 +34864,Jan+WILCZY+SZANIEC+II+K,678,436,879782,9494,0 +34865,Wioska+barbarzy%C5%84ska,325,454,6258092,4470,0 +34866,Zeta+Reticuli+O,419,334,699323302,10728,0 +34867,Wioska+barbarzy%C5%84ska,653,607,1900364,4210,0 +34868,AAA,547,322,1006847,11231,6 +34869,0603,484,683,698659980,10083,0 +34870,004+Crypto+Arena,672,450,849098769,11074,0 +34871,Wioska+barbarz,499,320,6118079,7724,0 +34872,Wioska+barbarzy%C5%84ska,354,608,7183372,4347,0 +34873,%2A036%2A,347,397,699273451,10211,0 +34874,005a+Wy+mnie+chcecie+wyko%C5%84czy%C4%87%21,378,631,6354098,11558,0 +34875,064+%7C+PALESTINA,658,414,9228039,3733,0 +34876,%23056%23,633,629,692803,9761,0 +34877,Wonderwall,326,552,698962117,9503,0 +34878,A+068,369,627,699342219,9645,3 +34879,R+008+%7EZyra%7E,483,683,699195358,10019,0 +34880,Grodk%C3%B3w,676,558,848932879,10636,0 +34881,Taran+002,607,355,2600387,10971,0 +34882,%23Charmy,431,665,699849210,10001,0 +34883,0261,551,679,698659980,10019,0 +34884,psycha+sitting,412,664,699736927,10045,0 +34885,005,318,475,7127455,6419,0 +34886,A012,602,652,9023703,10237,0 +34887,%2A5612%2Aaaa+Omaticaya,666,582,7973893,10287,0 +34888,IdA,428,554,8779575,3319,0 +34889,AAA,535,317,1006847,9222,0 +34890,Wioska+barbarzy%C5%84ska,577,331,9291984,8868,0 +34891,Wioska+barbarzy%C5%84ska,449,333,699191464,8278,0 +34892,%2A%2A03%2A%2A,673,432,849098782,11862,0 +34893,Wioska+RyBssoN,656,403,699738350,9761,0 +34894,Out+of+Touch,321,436,698962117,9505,0 +34895,Out+of+Touch,324,435,698962117,3483,0 +34896,WJE%C5%BBD%C5%BBAM+I+ROZJE%C5%BBD%C5%BBAM,613,357,698420691,10160,0 +34897,073+donkretos5,684,516,2135129,6833,0 +34899,Po%C5%82udnie.013,552,680,873575,9963,0 +34900,A030,599,659,9023703,9492,2 +34901,9.Prison,413,334,849098648,4185,0 +34902,A0313,318,471,8841266,808,0 +34904,Bizy+3,496,661,698585370,3188,0 +34905,Y+%7C+Forest+Cyaaaanku,320,488,699213622,9155,0 +34906,monetki+C,637,623,698768565,9652,0 +34907,Wioska+barbarzy%C5%84ska,334,423,2418002,7917,0 +34908,I079,678,442,699722599,9742,0 +34909,%230177+yasoke19,487,318,1238300,10178,0 +34910,Wioska+r+7,560,671,848915531,6329,0 +34911,C0022,314,514,8841266,10252,0 +34912,K36+-+%5B007%5D+Before+Land,632,368,699088769,10654,0 +34913,D.022,392,645,849088243,8445,0 +34914,09+Szpica+P%C3%B3%C5%82nocna,564,329,849108780,9922,0 +34915,Sandvig,336,571,849098387,9491,0 +34916,%2A115%2A,360,382,699273451,10116,0 +34917,Out+of+Touch,328,426,698962117,9744,0 +34918,%2A%2A02%2A%2A,672,433,849098782,11317,0 +34919,Wioska+barbarzy%C5%84ska,428,332,699308637,9819,0 +34921,Out+of+Touch,329,441,698962117,6161,0 +34922,X+%7C+Forest+Cyaaaanku,323,477,699213622,10143,0 +34923,BIRMA,402,344,8123790,4691,0 +34924,Napewno+to+nie+jest+off,586,338,848912265,6242,0 +34925,%2A5612%2Ac+Jak+to+mo%C5%BCliwe,666,578,7973893,10287,1 +34926,Out+of+Touch,323,443,698962117,6342,0 +34927,Szlachcic,390,355,3484132,10957,0 +34928,Dream+on,311,494,698962117,9544,0 +34929,020.+Taka+te%C5%BC+nie,686,475,7494497,9888,0 +34930,--04--,343,601,8877156,9741,0 +34931,0418,561,677,698659980,10019,0 +34932,002,323,558,849012521,4621,0 +34933,%23082%23,631,628,692803,9563,0 +34934,%3D%7C13%7C%3D,642,385,9101574,6161,0 +34935,C0168,321,532,8841266,10252,3 +34936,z+Wioska+barbarzy%C5%84ska+11,356,382,3909522,8037,0 +34937,014,604,345,1990750,8764,0 +34938,%C5%9Acis%C5%82o+go+i+poszed%C5%82,344,407,849098299,6217,0 +34939,A032,600,655,9023703,10221,0 +34940,Wioska+barbarzy%C5%84ska,321,479,699823490,5252,0 +34941,Wioska+barbarzy%C5%84ska,341,594,7183372,10139,0 +34942,%3D%7C03%7C%3D,647,391,9101574,10495,9 +34943,Sullivanum+%5B1%5D,337,591,7183372,10362,0 +34944,Pomidorowy+dzem,680,517,699598425,9277,0 +34945,%230140+Kamil0ss1,481,316,1238300,8081,0 +34946,%23062%23,623,631,692803,9761,0 +34947,001,340,598,7183372,10362,0 +34948,AAA,532,316,1006847,9614,0 +34949,C0181,318,540,8841266,9208,0 +34950,Kraszew,341,595,7183372,10231,0 +34951,005+Zacznij+od+Nowa+%21%21%21,579,583,699524362,10211,0 +34952,%23059%23,631,626,692803,9761,0 +34953,0398,558,678,698659980,10083,0 +34954,a+mo%C5%BCe+off+%3F+%3A%29,639,624,698768565,9349,0 +34955,Out+of+Touch,329,440,698962117,9763,0 +34956,Wioska+barbarzy%C5%84ska,335,412,849096547,2364,0 +34957,C007,597,666,9023703,9744,0 +34958,%24LeBron,684,523,699795378,5602,0 +34959,OFF,677,532,1563417,9985,0 +34960,New+World,435,674,698152377,10292,0 +34961,Vvv,589,662,699567608,9720,0 +34962,psycha+sitting,422,666,699736927,9387,0 +34963,%2AINTERTWINED%2A,501,685,698704189,9711,0 +34965,Dalsza,463,323,849096310,5753,0 +34966,A036,598,656,9023703,10247,0 +34967,Didek,659,584,849070946,12154,2 +34968,No.25,470,685,698826986,1161,0 +34969,%2A112%2A,357,382,699273451,9617,0 +34970,Ave+Why%21,455,682,698585370,9345,2 +34971,C0077,319,522,8841266,10252,0 +34972,Wioska+barbarzy%C5%84ska,339,596,7183372,10212,0 +34973,Wioska+Raguel888,372,427,699753640,8151,0 +34974,%5B015%5D+Bobkowo,673,436,849095068,9312,0 +34976,160+Nocny+Jastrz%C4%85b+005,655,399,699491076,7717,0 +34977,0047+K55+and987+OZDR,503,555,3613413,9989,0 +34978,023+Fen+Aspra,479,682,699834004,8942,0 +34979,027,534,679,2293376,9993,0 +34980,Wawa+%3BD,324,446,8184383,5004,0 +34981,Szlachcic,386,353,698160606,8875,0 +34982,Wioska+barbarzy%C5%84ska,681,479,699598425,10590,0 +34983,%2A%2A26%2A%2A,674,434,849098782,10615,0 +34984,203,424,333,7271812,9073,0 +34985,C0073,320,511,8841266,10252,0 +34986,Dum+Spiro+Spero,492,555,848896948,9981,0 +34987,Parole,339,408,699595556,3216,0 +34989,028Wioska+barbarzy%C5%84ska,674,455,849098769,7188,0 +34990,%23038,476,614,699605333,10393,0 +34991,Hiszpan5,672,550,7038651,10047,0 +34992,wysypisko+%C5%9Bmieci,324,564,849012521,5241,0 +34994,Muchomor+%2A005%2A,512,687,606407,10300,0 +34995,Zbytkowo-Hubix,663,421,8675636,10019,0 +34996,OSADA,575,666,699567608,9718,7 +34997,-20-,632,375,699837826,3144,0 +34998,Nowa+42,661,579,698702991,9806,0 +34999,0443,554,676,698659980,8054,0 +35000,New+Land+09,358,384,849064752,3467,0 +35001,2.Fuenlabrada,564,668,698215322,6116,0 +35002,A0275,321,482,8841266,10452,0 +35003,1kornik83,666,586,849098693,11018,0 +35004,zakr%C4%99cona,574,606,8627359,9203,0 +35005,Y+%7C+Forest+Cyaaaanku,321,491,699213622,8980,0 +35006,Wioska+Gum23,402,349,849067216,3982,0 +35007,099...tomecz,480,320,6920960,9995,0 +35008,%23021.+Sieeee+Rrrrozkr%C4%99cam,455,677,848896948,5505,0 +35009,0161,405,341,699431255,3554,0 +35010,Wioska+barbarzy%C5%84ska,421,667,699736927,9185,0 +35011,0014+Cytadela,332,428,699304554,9718,0 +35012,Didek,671,565,849070946,10252,0 +35013,0019+K55+and987+OZDR.,505,555,3613413,9861,0 +35014,0494,573,666,698659980,8624,0 +35015,066,537,684,2293376,9580,0 +35016,%2A5616%2A+Odwaga,675,556,7973893,10287,0 +35018,C0064,322,523,8841266,10252,0 +35019,%28001%29Urithiru,330,567,849098695,8314,0 +35020,Wioska+NOWA+OBRONNA,590,343,849063793,4089,0 +35021,ABE,659,411,1086351,2807,0 +35022,%23005.+Dreadford,452,681,848896948,9624,0 +35023,Wioska+barbarzy%C5%84ska,647,609,1900364,9426,0 +35024,020+Tak+blisko,365,627,8268010,5748,0 +35025,Wioska+barbarzy%C5%84ska,384,644,849095992,4064,0 +35026,%23036%23,629,635,692803,9761,0 +35027,%2A171%2A,340,411,699273451,10211,0 +35028,S%C5%82u%C5%BCewiec2,374,364,849099434,8087,0 +35029,cz+Polska,365,378,3909522,4509,0 +35030,%23061%23,636,626,692803,9600,0 +35031,000+Plutosea,324,553,9280477,11911,0 +35032,Manieczki,354,611,849014147,4848,0 +35033,Wioska,330,423,2418002,8331,0 +35034,Out+of+Touch,326,439,698962117,6100,0 +35035,%5B034%5D,664,582,698305474,8687,0 +35036,033+Surowy,681,452,849098769,5389,0 +35037,Wioska+barbarzy%C5%84ska,668,418,8675636,9054,0 +35038,Pa%C5%84stfa+Pu%C5%82nocy,582,335,699433558,9835,0 +35039,%2A%2A40%2A%2A,674,439,849098782,10066,0 +35040,Tripoli,424,664,849089459,9648,1 +35041,Taran,683,499,699598425,10728,0 +35042,OFF,677,530,1563417,9704,0 +35043,Ave+Why%21,447,672,698585370,9632,0 +35045,AAA,538,318,1006847,6992,0 +35046,%23048%23,631,633,692803,9761,0 +35047,C0108,316,528,8841266,9944,0 +35048,J%23004,574,331,2065730,9797,0 +35049,Wioska+14,316,492,849075836,4567,0 +35050,Wioska+barbarzy%C5%84ska,679,485,699598425,10728,0 +35051,C0032,321,515,8841266,10252,0 +35052,J%23013,574,329,2065730,5695,0 +35053,009,320,476,7127455,2893,2 +35054,K65,561,669,7589468,8820,0 +35055,%23%23%232,490,321,849064614,5562,0 +35056,psycha+sitting,407,663,699736927,10178,0 +35057,003,317,476,7127455,6752,0 +35058,KIELBA+131,453,568,699342219,10218,0 +35059,%24Lakers,685,506,699795378,8546,0 +35060,C0020,317,518,8841266,10252,0 +35061,0159,405,339,699431255,3935,0 +35062,K36+-+%5B001%5D+Before+Land,626,370,699088769,5134,0 +35063,C117,370,628,699383279,6474,0 +35064,Wioska+barbarzy%C5%84ska,354,610,9199885,4865,0 +35065,067,450,319,2502956,9957,0 +35066,0301,572,666,698659980,9761,0 +35067,Wioska+barbarzy%C5%84ska,521,320,698350371,6792,0 +35068,056+%7C+PALESTINA,662,423,9228039,5720,0 +35069,061,683,530,2135129,6812,0 +35070,Lord+Lord+Franek+.%23141,514,319,698420691,10300,2 +35071,A-044-Heffitto,402,348,8419570,10460,0 +35072,0163,402,340,699431255,4405,0 +35073,001+Arnhem,607,361,849091899,11742,0 +35074,%2A043%2A,351,398,699273451,10211,0 +35075,%C5%BBUBRAWKA+056,613,644,33900,9838,0 +35076,.achim.,483,316,6936607,9460,0 +35077,Elfheim+X,598,344,699478692,5469,0 +35078,Wioska+dzikich+narkoman%C3%B3w,576,664,699567608,6578,0 +35079,%2AINTERTWINED%2A,502,687,698704189,9711,0 +35080,26k%24+Grvvyq,666,567,699676005,10495,0 +35081,Pomidorowy+dzem,683,514,699598425,10728,2 +35082,BRZEG+JORDANU+%7C+001,687,518,9228039,9346,0 +35083,I098,682,463,699722599,8104,0 +35085,%2A265%2A,334,413,699273451,2940,0 +35086,C001+Liskowa,596,662,9023703,7183,0 +35087,Wioska+Natka1968_03,523,321,699644852,3273,0 +35088,psycha+sitting,421,671,699736927,10311,0 +35089,Wioska+barbarzy%C5%84ska,651,604,1900364,9699,0 +35090,UltraInstynkt%2B,591,342,699710633,9737,0 +35091,003+Kalabala,593,344,699576407,7445,0 +35092,Ave+Why%21,450,672,698585370,5958,0 +35093,Komornicy+010,351,608,699336777,9462,0 +35094,AG10,587,667,699876345,8641,0 +35095,%23022%23,621,634,692803,9761,0 +35096,I094,674,448,699722599,8295,0 +35098,C0159,317,527,8841266,9136,0 +35099,B+043,674,545,8078914,7191,0 +35100,Winterhome.041,495,313,848918380,10178,0 +35101,Pobozowisko,395,605,699513260,10955,0 +35102,N.C.+Bez+twarzy,665,588,849098693,7167,0 +35103,Wioska+barbarzy%C5%84ska,651,388,7973893,7392,0 +35104,Ave+Why%21,462,654,698585370,9848,0 +35105,R+023,485,683,699195358,9111,0 +35106,Wioska+barbarzy%C5%84ska,685,493,699598425,9710,0 +35107,0310,559,679,698659980,9162,0 +35108,Wioska+barbarzy%C5%84ska,669,419,8675636,9664,0 +35109,Wioska+barbarzy%C5%84ska,652,606,1900364,5007,0 +35110,Nowa+Nadzieja+8,493,598,699383121,6466,0 +35111,011+Kalal,588,341,699576407,4813,0 +35112,Wasza+nowa+ulubiona+s%C4%85siadka,628,372,9291984,8224,0 +35113,%28024%29Liafor,331,576,849098695,8566,0 +35114,%23087%23,633,628,692803,9195,0 +35115,Wioska+Sir+Zordon+005,663,577,478956,5364,0 +35116,043,594,340,849010255,7112,0 +35117,psycha+sitting,421,669,699736927,9948,0 +35118,A+083,369,635,699342219,6814,0 +35119,Nowa+48,665,572,698702991,7773,0 +35120,C0016,314,518,8841266,10252,0 +35121,%2A180%2A,335,418,699273451,10211,0 +35122,Szymon9409,397,655,699269923,7807,0 +35123,00401+Ppp,436,415,3909522,10069,0 +35124,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,635,1434753,9824,0 +35125,.%3A014%3A.,353,611,7417116,9724,0 +35126,Wioska+barbarzy%C5%84ska,686,491,699429153,9966,0 +35127,-016-,338,560,8004076,9192,0 +35128,%5B009%5D,471,319,849099160,10084,0 +35129,Pa%C5%84stfa+Pu%C5%82nocy,589,334,699433558,8993,0 +35130,%23031%23,628,637,692803,9761,0 +35131,Wioska+barbarzy%C5%84ska,362,628,272173,4325,0 +35132,Rzeczka,319,544,699265922,6296,0 +35133,070,544,682,2293376,7697,4 +35135,Klemensker,328,560,849098387,5756,0 +35136,New+Land+06,356,383,849064752,3956,0 +35137,1v9+machine,387,642,699697558,10019,0 +35138,I033+Co+si%C4%99+sta%C5%82o%3F,682,462,699722599,10636,0 +35139,KR%C3%93L+PAPI+WIELKI,645,618,698191218,10299,0 +35140,A013,609,651,9023703,10237,0 +35141,Danzig,333,573,849098387,7105,0 +35142,C+016,690,526,8078914,10481,0 +35143,Tro%C4%87,321,543,699265922,9481,0 +35144,%3D%7C16%7C%3D,646,383,9101574,6248,0 +35146,Weso%C5%82ych+%C5%9Awi%C4%85t,568,334,848915730,5295,0 +35149,Wioska+kamilobr,640,618,848942587,3993,0 +35150,175...Segadorr,443,330,6920960,10090,0 +35151,058.,634,371,849094609,10224,0 +35152,Nie+b%C3%B3j+si%C4%99+odzyska%C4%87+siebie%21,472,317,849099965,4780,0 +35153,%2A253%2A,341,405,699273451,3031,0 +35154,%2A093%2A,359,381,699273451,10211,0 +35155,Granat,331,434,849098727,4770,0 +35156,Wioska+barbarzy%C5%84ska,495,317,6118079,5555,0 +35157,Wioska+barbarzy%C5%84ska,647,611,1900364,8905,9 +35158,Ave+Why%21,450,674,698585370,3001,0 +35159,--21--,347,593,8877156,7273,0 +35160,004,316,479,7127455,7401,0 +35162,Wioska,573,334,7560474,8034,0 +35163,%3D%7C14%7C%3D,643,384,9101574,6449,0 +35164,Osada+koczownik%C3%B3w,406,656,699736927,4879,7 +35165,NOT%3F,459,551,9236866,2101,0 +35166,011+Mordor,454,682,698585370,9133,0 +35167,ZUBRAWKA+053+Victoria+%3F%3F%3F,617,640,33900,10008,0 +35168,J%23020,575,334,2065730,9797,0 +35169,Zgol,357,615,699864013,9850,9 +35170,065-+Mroczna+Osada,595,340,849035905,11099,0 +35171,Klaudek13,630,365,849092309,5897,0 +35172,007.+Grodzisk+Mazowiecki,326,447,849098966,3474,0 +35173,New+World,436,676,698152377,10294,0 +35174,Napewno+to+nie+jest+off,590,337,848912265,9835,0 +35175,Wioska+barbarzy%C5%84ska,384,648,849095992,2140,0 +35176,D01+maribast,450,680,849037407,9067,0 +35177,Monetkownia,631,623,699759128,9861,0 +35178,Wioska+Sir+Zordon+006,663,580,478956,4386,0 +35179,081+KaruTown,661,419,9238175,10275,0 +35180,Sony+911,619,641,1415009,7256,0 +35181,109,594,657,849097799,7804,0 +35182,Wioska+barbarzy%C5%84ska,403,652,699736927,6214,0 +35183,Bogat,357,619,699864013,9014,0 +35184,EO+EO,313,522,699697558,10495,0 +35185,Winterhome.051,496,313,848918380,10178,0 +35186,9.7+Oby+tak+dalej,551,439,8444356,9684,0 +35187,Moya,666,585,849098693,9173,0 +35188,AAA,542,318,1006847,9775,0 +35189,Wioska+11,313,482,849075836,8267,0 +35190,0396,567,668,698659980,10083,0 +35191,016.,640,378,699098531,7236,0 +35192,Za+mostem,353,494,699265922,9744,0 +35193,%230112+tomek791103,475,322,1238300,10178,8 +35195,New+World,444,676,698152377,10295,0 +35196,%2AINTERTWINED%2A,508,685,698704189,9711,4 +35197,Vanaheim+IV,592,340,699478692,2821,0 +35198,X+%7C+Forest+Cyaaaanku,316,468,699213622,10000,0 +35199,Odprysk+Ksi%C4%99%C5%BCyca02,668,468,699574408,9866,0 +35200,Wioska+barbarzy%C5%84ska,508,681,699781762,10495,0 +35201,Village,491,688,849094067,6479,0 +35202,Parole,342,408,699595556,3358,0 +35203,XDX,610,350,699098531,9637,0 +35204,C0085,317,511,8841266,10252,0 +35205,Didek,668,573,849070946,4020,0 +35206,%2A3604%2Ab+Yuma,653,397,7973893,9968,0 +35207,Gnojno-Hubix,665,426,8675636,10019,0 +35208,A058,606,652,9023703,9977,0 +35209,%2A004%2A+WARto+pomaga%C4%87%21,601,343,849095068,10237,0 +35210,%2A155%2A,345,396,699273451,6683,0 +35211,psycha+sitting,413,665,699736927,9310,0 +35212,wysypisko+%C5%9Bmieci,323,557,849012521,3415,0 +35213,0170,377,640,7085510,8617,0 +35214,Humnisie,675,467,699574408,10231,0 +35215,Wioska+XI,581,339,698200480,3793,0 +35216,Out+of+Touch,323,434,698962117,10000,0 +35217,1v9+machine,390,646,699697558,10019,0 +35218,New+World,441,677,698152377,10295,0 +35219,C0103,315,522,8841266,10252,0 +35220,I082,676,446,699722599,7822,0 +35221,Napewno+to+nie+jest+off,588,337,848912265,9153,0 +35222,KR%C3%93L+PAPI+WIELKI,637,617,698191218,10548,0 +35223,Darmowe+przeprowadzki,466,655,698807570,9771,0 +35224,Wioska+barbarzy%C5%84ska,620,637,1415009,7982,0 +35225,%5B012%5D+Zasrajdo%C5%82ek,679,441,849095068,9312,5 +35226,Out+of+Touch,325,440,698962117,8436,0 +35227,Szlachcic,381,360,698160606,10474,0 +35228,Wroc,357,617,699864013,9014,0 +35229,088+Tomek,688,512,2135129,10083,0 +35230,Wiocha,649,615,849066044,8949,0 +35231,KONFA+TO+MARKA%2C+NARKA,316,461,698152377,10290,0 +35232,Winterhome.039,497,312,848918380,10178,0 +35233,%5B031%5D,664,587,698305474,7888,0 +35234,Kentin+ufam+Tobie,324,458,699783765,10000,0 +35235,AG17,590,660,699876345,9096,0 +35236,Taran,682,500,699598425,10728,0 +35237,Szale,457,682,698585370,8537,0 +35238,tutaj,466,685,8966820,8028,0 +35239,New+World,430,674,698152377,10297,0 +35240,TWIERDZA,591,345,849063793,4166,0 +35241,psycha+sitting,414,665,699736927,10311,0 +35243,Wioska+122,680,526,848971079,7917,0 +35244,Canopus,406,657,849089459,4189,0 +35245,Jelec,325,554,699265922,9732,0 +35246,FTS,640,385,7340529,10887,0 +35247,Wioska+r+5,557,670,848915531,4157,0 +35248,Darma+dla+zawodnika,528,683,699494488,6828,0 +35249,Ma%C5%82e+Liniewo,656,590,849039310,9958,0 +35250,Wioska+barbarzy%C5%84ska,331,417,2418002,3449,0 +35251,070.Stradi,452,321,698365960,10348,0 +35252,Kocpo%C5%82uch+1,333,578,848949597,9074,0 +35253,Taran,680,489,699598425,10728,0 +35254,196...Segador,458,320,6920960,8384,0 +35255,%7C058%7C+Barba,493,687,699393742,8796,0 +35256,A.12+sp%C3%B3%C5%82dzielnia+gryzoni,563,331,699072129,9277,0 +35257,27.+m5+v10,558,321,849099696,7757,0 +35258,Szlachcic,394,349,3484132,10487,0 +35259,Wyspa+025,632,377,699756210,10654,2 +35261,AG06,588,665,699876345,9747,0 +35262,047+Burdorff,466,684,699834004,8326,4 +35263,1011,623,358,699150527,6961,0 +35264,%7C050%7C+Dubrownik,495,680,699393742,9527,0 +35265,%28028%29Alm,328,557,849098695,3502,0 +35267,Sony+911,619,645,1415009,10115,0 +35268,Szlachcic,401,346,698160606,10728,0 +35269,A035,599,656,9023703,10026,0 +35270,Didi,666,577,849070946,10362,0 +35271,Wioska+groove,503,318,6118079,8207,1 +35272,%5B001%5D+Wioska+zakl%C4%99tych,672,435,849095068,10495,0 +35273,Szlachcic,387,360,698160606,10476,0 +35274,%230289+nie+wiem,467,318,1238300,9802,2 +35275,-016-,324,449,8184383,8053,0 +35276,C0015,313,518,8841266,10252,0 +35277,Piek%C5%82o+to+inni,592,345,848956765,9761,4 +35278,X+%7C+Forest+Cyaaaanku,316,467,699213622,10000,0 +35279,%5B024%5D+Wioska+barbarzy%C5%84ska,668,428,849095068,9312,0 +35280,C118,368,634,699383279,9131,2 +35281,New+World,430,671,698152377,10292,0 +35282,%230294+Don+Noobas,466,317,1238300,7772,0 +35283,%5B378%5D+Chor%C4%85giewka+na+wietrze,598,431,848985692,9696,0 +35284,A052,615,649,9023703,9759,0 +35285,%2A%2A46%2A%2A,665,440,849098782,7065,0 +35286,004,359,615,699083129,9696,0 +35287,Wioska+r+13,561,672,848915531,4296,0 +35289,%3F%3F%3F,486,318,698489071,6063,0 +35290,Wioska+barbarzy%C5%84ska,574,672,6818593,9835,0 +35291,Wioska+barbarzy%C5%84ska,465,322,849017820,5905,0 +35292,2.Lleida,566,668,698215322,6613,0 +35293,Wioska+Bochun10,317,495,7449254,5518,0 +35294,B+063,678,533,8078914,9861,0 +35295,%3F%3F%3F,493,312,698489071,10160,0 +35296,%230161+Kamil0ss1,467,316,1238300,10178,0 +35297,%7E%7E066%7E%7E,626,640,7829201,7421,0 +35298,%2AINTERTWINED%2A,503,688,698704189,9711,0 +35299,Nie+ma+r%C4%85czek%2C+nie+ma+wiosek,418,668,699736927,10311,0 +35300,Wioska+Annomymus,680,487,699598425,10728,0 +35301,Didek,670,566,849070946,10362,0 +35302,%3D%7C09%7C%3D,642,386,9101574,9314,0 +35303,Didek,671,570,849070946,10415,0 +35304,222,422,337,7271812,7006,0 +35305,Piek%C5%82o+to+inni,608,347,848956765,10160,4 +35307,AAA,549,320,1006847,7804,0 +35310,O66+Jayang,679,560,699272880,10201,0 +35311,%2A119%2A,363,371,699273451,10211,0 +35312,Quebec,682,494,699737356,8751,2 +35313,amator-ada,522,574,848915531,10539,0 +35315,Szale,465,686,698585370,8342,0 +35316,Racecourse,606,347,1018357,9771,0 +35317,Ave+Why%21,446,672,698585370,8277,8 +35320,%23178%23,645,616,692803,9825,0 +35321,C0041,319,517,8841266,10252,0 +35322,%2A033,599,653,699567608,9093,0 +35323,001+Koniec+Burzy,314,490,699823490,9077,0 +35324,Wrzoski,681,551,848932879,10065,0 +35325,psycha+sitting,407,660,699736927,10232,0 +35326,Jednak+wol%C4%99+gofry,419,665,699736927,9899,0 +35327,024+%2A+Lady+Porto+%2A,647,392,699406750,10207,0 +35328,FILIPOWO+tata,342,588,7183372,5579,0 +35330,I063,684,470,699722599,10474,0 +35331,A+034,370,626,699342219,6086,0 +35332,032,608,644,849097799,7012,0 +35333,140.Stradi,458,318,698365960,1013,0 +35334,Westfold.013,335,423,848918380,10178,0 +35335,A014+Gold,610,651,9023703,10230,0 +35336,J%23008,577,335,2065730,9797,0 +35337,Taran+035,640,376,699098531,10971,0 +35338,J%23024,580,336,2065730,10047,0 +35339,036+Co+za+turbo+przyg%C5%82up...,375,633,6354098,8158,0 +35340,Klaudek21,633,371,849092309,4352,0 +35341,%C5%BBUBR+.%3A%3A.Adaczu%2F02,618,646,33900,6069,0 +35342,%C5%BBUBR+PSYCHIATRYK+006,613,646,33900,6957,1 +35343,New+World,445,677,698152377,10294,0 +35344,063,686,514,2135129,9976,0 +35345,%7C060%7C+Ciapciarapcia,503,680,699393742,9344,0 +35346,New+World,428,673,698152377,10292,0 +35347,-021-,332,585,8710047,10083,0 +35348,Out+of+Touch,327,430,698962117,9172,0 +35349,023,354,607,699083129,8437,0 +35350,Taran,337,576,6180190,9815,0 +35351,080+Migda%C5%82,544,466,7092442,10362,0 +35352,018+serniczek+od+babci,509,671,8954402,10141,0 +35353,D.001,400,652,849088243,10217,8 +35354,001+Cicha+6,680,452,849098769,11550,0 +35356,%2A224%2A,372,370,699273451,6630,0 +35357,The+Game+Has+Only+Just+Begun,354,524,9280477,10311,0 +35358,067.Stradi,450,323,698365960,10081,0 +35359,1003,620,362,699150527,9821,0 +35360,WhoWillBeNext,601,344,1990750,5234,0 +35361,Szlachcic,394,344,3484132,10075,0 +35362,A-047-Heffitto,405,347,8419570,9127,0 +35363,Devano2,336,591,7183372,10345,0 +35364,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,654,698807570,9807,0 +35365,0017,557,674,698659980,10160,2 +35366,%23060%23,632,629,692803,9761,0 +35367,-+262+-+SS,537,677,849018239,8533,0 +35368,BEMA,404,344,8123790,890,0 +35369,stry,560,678,6121024,5653,0 +35370,Niemodlin,674,551,848932879,10023,0 +35371,WUUDLI,403,343,8123790,2274,0 +35372,New+World,468,683,698152377,9855,0 +35373,Szlachcic,395,343,3484132,10484,0 +35374,Nowa+38,666,571,698702991,9819,0 +35375,Wioska+barbarzy%C5%84ska+D%C3%B3%C5%82,627,362,699857387,9797,0 +35377,Szlachcic%2FTaran,640,387,699759128,10237,0 +35378,Winterhome.036,491,313,848918380,10178,1 +35379,Jaaa,603,438,698635863,9403,0 +35380,Out+of+Touch,323,440,698962117,5020,0 +35381,205,426,329,7271812,7295,0 +35382,A+089,367,630,699342219,3813,0 +35383,Wioska+barbarzy%C5%84ska,476,314,6936607,3024,0 +35384,Lord+Lord+Franek+.%23144,515,318,698420691,10342,0 +35385,Aleksandria,405,658,849089459,9814,8 +35386,Szlachcic,382,352,698160606,10559,0 +35387,A8.,320,551,849095482,5607,0 +35388,Barbababcia,342,410,849098299,2568,0 +35389,Kraszew+3,339,593,7183372,10232,5 +35390,ADEN,611,349,698588535,7404,0 +35391,Osada+koczownik%C3%B3w,583,669,699567608,10189,5 +35392,014,472,679,8827094,9238,0 +35393,020,456,318,2502956,10019,0 +35394,000+Plutosea,323,554,9280477,10434,0 +35395,Szlachcic,379,360,698160606,9602,0 +35396,%23001.+Ko%C5%84+Troja%C5%84ski,443,679,848896948,9959,5 +35397,okon,326,544,699265922,9816,0 +35398,000+Plutosea,321,558,9280477,10117,0 +35399,%5B029%5D,664,586,698305474,9809,0 +35400,O38+Midyat,678,543,699272880,10295,0 +35401,1v9+machine,385,645,699697558,9178,0 +35402,058.Stradi,453,318,698365960,10495,0 +35403,Chr%C3%B3%C5%9Bcina+Opolska,679,558,848932879,10477,0 +35404,%2A4692%2Aa+%C5%BBycie,661,403,7973893,10287,0 +35405,033.xxx,497,682,699781762,4128,0 +35406,Auu+09,569,672,529552,2602,0 +35407,Kentin+ufam+Tobie,323,462,699783765,10000,0 +35408,10.+Maribor,331,458,848910122,489,0 +35409,New+World,438,676,698152377,10292,0 +35410,fff,489,317,698239813,8441,0 +35411,2.Terrassa,562,677,698215322,5621,0 +35412,%2A121%2A,365,373,699273451,10211,0 +35413,%2A4691%2Aa+Jak+jest,662,403,7973893,9835,0 +35414,%230225+deleted,491,314,1238300,10178,0 +35415,New+World,446,676,698152377,10294,0 +35416,PYRLANDIA+008,568,596,33900,10083,0 +35417,Out+of+Touch,327,428,698962117,9744,0 +35418,009,485,656,848953066,10019,0 +35419,Wioska+barbarzy%C5%84ska,521,686,745946,4073,0 +35420,Szlachcic,318,536,698388578,9063,0 +35421,D.037,394,647,849088243,7884,2 +35422,Wioska+Sir+Zordon+008,665,577,478956,3788,0 +35423,C13,682,541,848995478,2811,0 +35424,A017,613,651,9023703,10221,0 +35425,039+Osilon,658,600,8337151,10252,0 +35426,Po%C5%82udnie.001,555,679,873575,10294,0 +35427,002+Wioska+barbarzy%C5%84ska,326,569,849012521,2958,0 +35428,AG14,590,661,699876345,7033,0 +35429,W%C5%82adcy+P%C3%B3%C5%82nocy+03,685,504,699379895,5550,0 +35430,Wioska+barbarzy%C5%84ska,594,572,1715091,9628,0 +35432,D.009,394,656,849088243,8434,0 +35433,D.002,399,651,849088243,9119,0 +35434,001+Firelink,519,316,1990750,10495,0 +35435,076.Stradi,446,327,698365960,10451,0 +35437,Szlachcic+008,559,535,758104,8275,0 +35438,017+Barba,683,525,2135129,9803,0 +35439,013+Yharnam,516,316,1990750,10068,0 +35440,%2A156%2A,341,400,699273451,10211,0 +35441,%2A165%2A,337,409,699273451,6726,0 +35443,Szlachcic%3Btaran,615,359,1990750,9821,0 +35444,Osada+koczownik%C3%B3w,464,323,699191464,6194,3 +35445,0450,553,680,698659980,7709,0 +35446,FENDI,318,464,699794765,2792,0 +35447,ADEN,599,345,698588535,9078,0 +35448,teraz+to+juz...,584,668,699567608,8928,0 +35449,Wioska+barbarzy%C5%84ska,401,339,699406776,2835,0 +35450,%2A145%2A,344,396,699273451,6316,0 +35451,Winterhome.001,502,312,848918380,10178,4 +35452,%C5%9Arodek..,349,443,1746216,6055,0 +35453,Ave+Why%21,452,675,698585370,4320,0 +35454,A+079,372,636,699269923,9497,0 +35455,C0050,315,523,8841266,10252,0 +35456,AG13,588,663,699876345,9747,2 +35457,Komornicy+017,351,613,699336777,9825,0 +35458,%23076%23,631,635,692803,9761,0 +35459,%2A262%2A,343,406,699273451,2907,0 +35460,069,619,355,849010255,5165,0 +35461,Westfold.006,336,425,848918380,10178,0 +35462,Ave+Why%21,480,681,699121671,9809,0 +35463,078.Stradi,444,328,698365960,9815,0 +35464,Paczk%C3%B3w,677,556,848932879,10634,0 +35465,wioska+murzyna,314,480,8048374,8941,0 +35466,Magkw,363,384,849084920,2404,0 +35467,Y+%7C+Forest+Cyaaaanku,318,493,699213622,8491,7 +35468,%2A083%2A,358,381,699273451,10211,0 +35469,007+Braveheart-,660,598,8337151,10083,0 +35470,Ave+Why%21,454,681,698585370,6261,0 +35471,Wioska+Michal1888000,650,611,8224678,10100,0 +35472,%7C054%7C+Trogir,497,689,699393742,8932,0 +35473,Rotterdam,608,354,698290577,10362,8 +35474,005,474,656,698650301,8157,0 +35475,Wioska+barbarzy%C5%84ska,650,605,1900364,4115,0 +35476,Wioska+barbarzy%C5%84ska,598,655,699567608,9190,0 +35477,.Osada+koczownik%C3%B3w,507,681,699781762,10495,2 +35478,Strzelba+potokowa,321,552,699265922,4088,0 +35479,%7B56%7D+Pot%C4%99gowo,382,646,849096945,9418,0 +35480,Turbo,409,345,699854830,10135,0 +35481,a+mo%C5%BCe+off+%3F+%3A%29,638,623,698768565,9566,0 +35482,140+invidia,521,680,849093426,9752,0 +35483,Wioska+barbarzy%C5%84ska,513,316,8400180,8562,0 +35484,004.+Konstantynopol,341,399,849098299,6666,0 +35485,%23004.+Good+Night%21,445,676,848896948,9399,0 +35486,%230120+tomek791103,476,321,1238300,7100,0 +35487,C0150,319,528,8841266,10252,0 +35488,034,535,686,2293376,9993,0 +35489,Monetkownia,632,623,699759128,9668,0 +35490,OFF,685,531,1563417,9976,0 +35491,C14,684,536,848995478,11130,0 +35492,I067,684,467,699722599,9877,0 +35493,Szymon9406,390,651,699269923,10259,0 +35494,New+Land+26,344,401,849064752,3000,0 +35495,New+World,445,681,698152377,10295,0 +35496,Wioska+barbarzy%C5%84ska,519,320,698350371,6944,0 +35497,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,636,1434753,9340,0 +35498,Mordor3,317,541,848978903,9804,0 +35499,015+Hohoho,605,344,1018357,5062,0 +35500,-012-,334,590,7183372,10203,0 +35501,New+World,447,678,698152377,10178,0 +35502,1v9+machine,386,643,699697558,10019,0 +35503,Zalew,323,555,699265922,4020,0 +35504,%23095%23,649,609,692803,9761,5 +35505,New+Land+07,359,385,849064752,3736,0 +35506,072.Stradi,450,321,698365960,10064,0 +35507,%2A267%2A,336,412,699273451,2423,0 +35508,Wioska+Natka1968_04,526,321,699644852,1820,0 +35509,A+087,371,636,6948793,5952,0 +35510,New+World,435,676,698152377,10292,0 +35511,030.,330,583,3475079,2440,0 +35512,B01,471,679,698652014,6258,0 +35513,Taran+025,637,377,699098531,9151,0 +35514,Wioska+barbarzy%C5%84ska,369,367,849027025,6003,0 +35515,000+Plutosea,317,547,9280477,9976,0 +35516,Szlachcic,377,359,698160606,10315,0 +35517,013art,603,345,1990750,10408,0 +35518,212,431,330,7271812,9741,0 +35519,Szlachcic,385,354,698160606,10474,0 +35520,-0011-,543,325,2972329,8457,0 +35521,Out+of+Touch,327,435,698962117,4584,0 +35522,123,469,686,9003698,10373,0 +35523,Muchomor+%2A004%2A,513,687,606407,10100,0 +35524,Wioska+016,661,405,1715091,7715,0 +35525,ADEN,606,353,698588535,7242,0 +35526,Taran,336,575,6180190,9883,0 +35527,019.+Kochanka,562,324,699072129,9550,3 +35528,A048,614,646,9023703,8423,0 +35529,C0155,318,527,8841266,9502,0 +35530,Osada+koczownik%C3%B3w,512,688,699781762,10085,8 +35531,-DrakenSag2,545,325,699825236,1673,0 +35532,101,319,507,7098955,9348,0 +35533,Islanders+05,684,518,7973893,9147,0 +35534,Komornicy+008,352,609,699336777,9825,0 +35535,%23039%23,636,630,692803,9761,0 +35537,%232+Europa,660,587,699778867,12154,0 +35538,062.+Ramr,665,591,8337151,10160,0 +35539,Wie%C5%9B+Kupolandia,546,323,849098136,8188,0 +35540,Out+of+Touch,325,432,698962117,2754,0 +35541,Wiocha,604,353,1990750,10068,0 +35542,Dream+on,311,499,698962117,9497,0 +35543,A006,606,646,9023703,10237,0 +35544,093+Tomek,688,509,2135129,4932,0 +35545,Kingdom+3,681,504,699598425,10728,0 +35546,JGA,360,621,699864013,8665,0 +35547,A+085,372,635,699342219,4588,0 +35548,2.Vigo,561,676,698215322,6517,0 +35549,D%C4%85br%C3%B3wka+Pod%C5%82%C4%99%C5%BCna,570,670,698723158,6587,0 +35550,010,317,500,7097727,5095,0 +35551,Wioska+053,652,604,848971079,9761,0 +35552,C0024,316,515,8841266,10252,0 +35553,02+Bak%C5%82a%C5%BCan,641,614,8224678,9898,0 +35554,Wioska+barbarzy%C5%84ska,368,368,849101962,2359,0 +35555,0160,406,336,699431255,3437,0 +35556,068,542,679,2293376,8431,0 +35557,Szulernia,377,367,7249451,3287,0 +35558,001,605,345,1990750,10831,0 +35559,New+Land+19,343,403,849064752,3391,0 +35560,0311,559,672,698659980,8255,0 +35561,Hard4,363,626,699805839,2262,0 +35562,Didek,666,573,849070946,10292,9 +35563,cc+pol009,391,367,3909522,6405,0 +35564,%2A004%2A,351,390,699273451,10211,0 +35565,%2A037%2A,346,393,699273451,10211,0 +35566,C0316,320,542,8841266,3782,0 +35567,I062,683,466,699722599,10495,0 +35568,Suppi,329,421,699856962,9550,0 +35570,Smacznej+kawusi,590,342,699710633,9753,5 +35571,New+World,442,674,698152377,9728,0 +35572,Wioska+barbarzy%C5%84ska,625,639,1415009,8223,0 +35573,Wioska+barbarzy%C5%84ska,574,327,699710633,3141,0 +35574,Wioska+barbarzy%C5%84ska,323,451,6258092,4725,0 +35575,Wioska+9,315,485,849075836,6457,0 +35576,Wioska+barbarzy%C5%84ska,412,341,699380607,2328,0 +35577,%23009.+Troja,442,677,848896948,9860,0 +35578,006,315,506,7097727,7874,0 +35579,Osada,506,455,699098531,9632,0 +35580,Jednak+wol%C4%99+gofry,418,661,699736927,7816,0 +35581,058.+Jezioro+Woadark,664,593,8337151,10301,0 +35582,Chekku+-+meito,322,538,9280477,9976,0 +35583,091+Nowy+Rok,655,407,699491076,8194,0 +35584,025+%2A+Lady+Porto+%2A,646,392,699406750,10838,0 +35585,KR%C3%93L+PAPI+WIELKI,641,620,698191218,10009,0 +35586,A047,609,648,9023703,8578,0 +35587,Szlachcic,396,343,3484132,10003,0 +35588,Wioska+barbarzy%C5%84ska,338,592,7183372,10141,0 +35589,New+World,434,677,698152377,10292,0 +35590,_PUSTA%2B,685,541,699628084,9797,0 +35591,0581,567,667,698659980,9808,0 +35592,%230212+Segadorr+dar,451,318,1238300,6067,6 +35593,AAA,532,319,1006847,9409,0 +35594,8.Yasnaya+Polyana,419,331,849098648,5657,0 +35595,0093,648,389,698416970,7538,0 +35596,C.02,682,515,699737356,9288,0 +35597,Wsch%C3%B3d+X3,685,530,698562644,10311,0 +35598,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,379,645,699697558,4665,0 +35599,002.,565,327,699072129,4821,0 +35600,0335,570,673,698659980,7273,0 +35601,Z%7C002%7C+Turyn,472,686,699393742,9976,0 +35602,-001-,373,638,849096354,5053,0 +35603,021.+G%C3%B3rki%3F,642,623,849100994,7108,0 +35604,C0172,317,513,8841266,10252,5 +35605,Wioska+barbarzy%C5%84ska,680,470,699574408,5880,0 +35606,049,541,679,2293376,7099,0 +35607,Krzy%C5%BC%C3%B3wki-hubix,667,415,8675636,9797,0 +35608,-sioux+falls,649,388,8096537,7249,0 +35609,Szlachcic,387,356,698160606,9757,0 +35611,--02--,341,601,8877156,10351,0 +35612,Wioska+barbarzy%C5%84ska,512,681,8501514,9563,0 +35613,C0268,312,507,8841266,7257,0 +35614,-004-+Chwa%C5%82a+Imperium,621,357,849099276,9036,0 +35615,New+World,434,674,698152377,10294,0 +35616,psycha+sitting,398,659,699736927,6839,0 +35617,Monetkownia,624,631,699759128,9431,0 +35618,Szlachcic,391,354,3484132,10476,0 +35619,New+World,432,672,698152377,10295,0 +35620,Muchomor+%2A006%2A,511,686,606407,10295,0 +35621,reco,496,685,699393742,3095,0 +35622,Winterhome.073,509,313,848918380,9418,0 +35623,086+%C5%9Awi%C4%99ta+Bo%C5%BCego+Narodzenia,595,346,699491076,9891,0 +35624,%2A008%2A,315,536,8630972,10290,0 +35625,AAA,548,321,1006847,6116,0 +35626,Wioska+barbarzy%C5%84ska,623,366,699098531,6648,0 +35627,C1.,317,544,849095482,7447,0 +35628,213,430,330,7271812,9392,0 +35629,-+187+-+SS,535,681,849018239,7456,0 +35630,123,472,683,9003698,10373,0 +35631,006+Texas,490,684,699238479,9755,0 +35632,043-+Mroczna+Osada,649,389,849035905,12154,0 +35634,F054,494,521,699189792,9675,0 +35635,Cytadela+Rick%C3%B3w,645,621,849098822,6430,0 +35636,Na+Kra%C5%84cu+%C5%9Awiata+006,577,328,9291984,10362,0 +35637,New+World,444,678,698152377,10300,0 +35638,Wioska+barbarzy%C5%84ska,627,364,6625437,3833,0 +35639,A+099,370,637,7085510,5581,0 +35640,Wow22,373,368,699730714,2275,0 +35641,013,349,603,7183372,10342,0 +35642,%2A013%2A,352,386,699273451,10211,0 +35643,Wioska+barbarzy%C5%84ska,572,670,6818593,7510,0 +35644,%2A%2A01%2A%2A,672,434,849098782,12154,0 +35645,B.A.R.B.A.R.K.A,314,478,8048374,8258,0 +35646,Ob+Konfederacja,429,327,848915730,5198,0 +35647,040+Mucharadza,666,416,9238175,9127,0 +35648,AAA,525,314,1006847,8832,0 +35649,%23057%23,638,630,692803,9761,0 +35650,emoriar,681,448,699574408,6625,6 +35651,Sony+911,622,639,1415009,10212,0 +35652,Wioska+Vll,324,568,699671197,10513,0 +35653,Didus+P,667,575,849070946,5728,0 +35654,Pomidorowy+dzem,683,507,699598425,10108,0 +35655,Szulernia,370,370,7249451,9981,0 +35656,%C5%BBUBR+.%3A%3A.Adaczu%2F03,618,647,33900,6799,0 +35657,058,453,324,2502956,10019,0 +35658,008.+Wola,688,476,7494497,10223,0 +35659,033+-+Alcala+de+Henares,688,523,698342159,5279,0 +35660,048+Halemba,663,412,9238175,10301,0 +35661,126,547,398,849064752,10311,0 +35662,Wioska+barbarzy%C5%84ska,475,316,6936607,4165,0 +35663,%5B031%5D+Wioska+barbarzy%C5%84ska,672,425,849095068,9312,0 +35664,%2A187%2A,331,415,699273451,7937,0 +35665,%2A084%2A,360,375,699273451,10211,0 +35666,021+Cardiff,615,353,849057572,7536,0 +35667,-+07+-+D%C4%85br%C3%B3wka,461,322,1238300,4161,7 +35668,A+046,366,634,699342219,5794,0 +35669,%5B032%5D,662,583,698305474,8539,0 +35670,-+155+-+SS,540,683,849018239,9867,0 +35671,A061,605,654,9023703,10237,0 +35672,C0105,317,522,8841266,9936,0 +35673,Widzew,683,477,849100246,5590,0 +35674,Taran+028,638,371,699098531,5534,0 +35675,Wioska+barbarzy%C5%84ska,323,452,6258092,4206,0 +35676,i+co+z+tego,651,386,849041192,4501,0 +35677,OFF,645,619,849014413,9725,0 +35678,105.Stradi,458,321,698365960,9539,0 +35679,Winterhome.045,492,312,848918380,10178,0 +35680,014,511,673,2293376,9993,0 +35681,A+021,363,627,699342219,5048,0 +35683,%3D%7C33%7C%3D,644,386,9101574,10495,5 +35684,Wioska+wilku1000,328,556,1568700,2804,0 +35685,%2A021%2A,352,385,699273451,10211,0 +35686,%23003+Ma%C5%82pi+Gaj,440,679,848896948,9976,0 +35687,Wioska+barbarzy%C5%84ska,404,658,699736927,3871,0 +35688,023+Wioska,680,466,699671454,3237,0 +35689,Psycha+Siada,445,673,698807570,7786,0 +35690,Wioska+barbarzy%C5%84ska,655,607,1900364,3569,0 +35691,Szlachcic,386,354,698160606,9906,0 +35692,0168,376,638,7085510,10216,0 +35693,x000,632,369,6625437,9782,0 +35694,Wioska+5,574,333,7560474,5402,0 +35695,057,334,589,7183372,10157,0 +35696,XC1,311,495,849040194,10365,0 +35697,Komornicy+020,353,607,699336777,9642,0 +35698,AGA7,687,500,699598425,9508,0 +35699,XDX,623,368,699098531,10838,0 +35700,Ziemniak,322,443,699821629,6389,0 +35701,Pomidorowy+dzem,682,510,699598425,8662,0 +35702,Rijen,609,352,9103424,7630,0 +35703,019+Wioska+barbarzy%C5%84ska,682,455,849098769,7827,0 +35704,New+World,431,670,698152377,10290,0 +35705,.achim.,485,313,6936607,9833,0 +35706,Wioska+barbarzy%C5%84ska,526,313,698350371,7263,0 +35708,%2A5611%2A+YME3,669,582,7973893,10287,0 +35709,0148,409,340,699431255,9934,0 +35710,Muchomor+%2A026%2A,522,686,606407,9349,0 +35711,%23043%23,629,633,692803,9761,0 +35712,Wioska+barbarzy%C5%84ska,331,419,2418002,3391,0 +35714,248,424,328,7271812,5025,0 +35715,EO+EO,311,512,699697558,10495,0 +35716,Szlachcic,393,345,3484132,10476,0 +35717,070+donkretos2,687,516,2135129,9653,0 +35718,%2A256%2A,335,410,699273451,3061,0 +35719,0591,539,660,698659980,7776,0 +35720,008.Stradi,443,320,698365960,10495,0 +35721,129+Bajerka+Bajerka+I+Blok%3F,660,399,699491076,8158,0 +35722,psycha+sitting,423,673,699736927,10178,0 +35723,OFF,647,619,849014413,10362,0 +35724,C0257,318,509,8841266,7388,0 +35726,%2A221,374,370,699273451,6504,0 +35727,Taran,550,381,699170684,9761,0 +35728,Out+of+Touch,330,433,698962117,2971,0 +35729,Wioska+barbarzy%C5%84ska,653,608,1900364,1227,0 +35730,008.+B%C5%82onie,325,448,849098966,5737,0 +35731,Wioska+barbarzy%C5%84ska,597,657,699567608,9112,0 +35732,%2A172%2A,335,409,699273451,8157,0 +35733,Szlachcic,385,359,698160606,7494,0 +35734,Wioska+barbarzy%C5%84ska,597,658,699567608,9267,0 +35735,%230302+sliwatojo,465,318,1238300,7406,0 +35736,Szulernia,371,369,7249451,10099,0 +35737,%23035%23,628,635,692803,9761,0 +35738,AAA,537,317,1006847,9883,0 +35739,Wioska+kamilpo4,641,618,848942587,11388,0 +35740,I095,675,446,699722599,7600,0 +35741,07.+Soldier,553,326,699072129,9557,0 +35742,8+barba,588,661,848995242,10157,0 +35743,HITA,403,344,8123790,4350,0 +35744,Szulernia,380,364,7249451,6202,0 +35745,Szlachcic,389,469,6258092,10019,0 +35746,KONFA+TO+MARKA%2C+NARKA,318,457,698152377,10290,0 +35747,%23002.+Welcome+In+My+Night%21,444,677,848896948,9899,0 +35748,AAA,541,319,1006847,8444,0 +35749,C+015,680,515,8078914,9778,0 +35750,051.,460,677,849034882,10559,0 +35751,Didi,669,568,849070946,10818,0 +35752,Loca+1,634,632,699778867,11568,0 +35753,1005,622,359,699150527,9821,0 +35755,99k%24+Grvvyq,684,537,699676005,10495,0 +35756,Gattacka,677,433,699298370,9192,0 +35757,krytl03,513,319,1990750,9503,0 +35758,Kingdom+7,682,502,699598425,10579,0 +35759,%3D%7C15%7C%3D,647,384,9101574,7798,0 +35760,007.,569,324,699072129,8135,0 +35761,Out+of+Touch,329,430,698962117,2614,0 +35762,Wioska+r+16,558,673,848915531,3913,0 +35763,Przyczajony,617,353,7340529,9948,0 +35764,002.+%C5%BBoliborz-Maciusiowa+zagroda,688,475,7494497,10104,0 +35765,555,636,369,849092309,7689,0 +35766,%3D%7C04%7C%3D,652,393,9101574,10495,1 +35767,Wioska+barbarzy%C5%84ska,569,676,7756002,9983,0 +35768,%C5%BBelazny+deff,362,623,699805839,5890,0 +35769,062,451,321,2502956,9644,0 +35770,Wioska+barbarzy%C5%84ska,516,687,606407,8668,0 +35771,Architekci+Plac%C3%B3w+Boju,331,559,8004076,9880,0 +35772,066+Wioska+018,663,409,9238175,9447,0 +35773,002+Smocza+Ska%C5%82a,316,488,699823490,8527,0 +35774,%2A086%2A,360,372,699273451,10211,0 +35775,018+%2A+Lady+Porto+%2A,648,393,699406750,12154,0 +35776,%5B030%5D+Wioska+barbarzy%C5%84ska,671,427,849095068,9312,0 +35777,036+Melian,658,601,8337151,10083,0 +35778,z+181-A003,357,379,3909522,8848,0 +35779,005+Desant,483,689,699745265,9608,0 +35780,003+Kirtan,661,598,8337151,10197,0 +35781,Wioska+barbarzy%C5%84ska,605,342,699098531,3200,0 +35782,%2A147%2A,344,399,699273451,7889,0 +35783,New+World,447,679,698152377,10311,0 +35784,KONFA+TO+MARKA%2C+NARKA,318,450,698152377,10291,0 +35785,Psycha+Siada,442,670,698807570,9318,0 +35786,Pa%C5%84stfa+Pu%C5%82nocy,583,335,699433558,9492,0 +35787,%28023%29Yulay,324,569,849098695,5566,0 +35788,010%7C%7C+Capricornus,480,652,849035525,10019,0 +35789,A+026,364,630,699342219,6346,0 +35790,014+Mieyet+wb,678,443,849098769,9899,0 +35791,Dolina+%C5%9Awi%C4%85ty%C5%84,651,399,7973893,8127,0 +35792,Taran,682,489,699598425,10728,0 +35794,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,381,642,1434753,10044,0 +35795,022+%2A+Lady+Porto+%2A,647,393,699406750,12154,0 +35796,Komornicy+016,351,612,699336777,3454,0 +35797,%28020%29Tukar,325,561,849098695,4355,0 +35798,%230195+Segadorr+dar,461,323,1238300,10178,6 +35799,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,383,638,1434753,9853,0 +35800,A018,609,653,9023703,10237,0 +35803,kamilkaze135+%2308,658,395,699705601,8974,0 +35804,Wioska+barbarzy%C5%84ska,339,599,7183372,10159,0 +35805,Szlachcic,318,532,698388578,8316,0 +35806,214,448,327,698365960,11824,0 +35807,KONFA+TO+MARKA%2C+NARKA,317,458,698152377,10291,0 +35808,Lord+Lord+Franek+.%23193,617,356,698420691,10495,9 +35809,Lubraniec-Hubix,666,411,8675636,10019,0 +35810,Nowa+43,667,578,698702991,9751,0 +35811,UltraInstynkt,604,341,699710633,9977,0 +35812,Szlachcic,390,348,3484132,10476,0 +35814,Ave+Why%21,493,686,699121671,9358,0 +35815,006,656,518,699351301,10559,0 +35816,Wioska+barbarzy%C5%84ska,403,341,699406776,1827,0 +35817,C0060,312,526,8841266,10252,0 +35818,Nie%2C+prosz%C4%99+nie...,414,664,699684693,8779,0 +35819,%23074%23,634,631,692803,9761,0 +35820,B025,517,313,699208929,9359,0 +35821,Wstr%C4%99tna,559,325,570100,3586,0 +35822,0048,569,325,699485250,4779,0 +35823,--05--,346,601,8877156,6435,0 +35824,02.wiocha,332,589,7183372,6073,0 +35825,%C5%BBUBRAWKA+055,616,641,33900,9458,0 +35826,Winterhome.047,497,313,848918380,10178,0 +35827,%7C049%7C+Makarska,494,681,699393742,9226,0 +35828,START+05,579,669,699567608,9703,0 +35829,Wioska+barbarzy%C5%84ska,683,491,699598425,10728,0 +35830,Wioska+barbarzy%C5%84ska,573,328,9291984,5022,0 +35831,063,450,317,2502956,10019,0 +35832,-002-,350,399,1693936,5466,0 +35833,0169,374,641,7085510,10216,0 +35834,Wioska+barbarzy%C5%84ska,476,317,6936607,3179,0 +35835,000+Plutosea,316,543,9280477,10068,0 +35836,%23071%23,636,628,692803,9761,0 +35837,97k%24+Grvvyq,681,537,699676005,10495,0 +35838,%2A110%2A,363,379,699273451,10211,0 +35839,022,538,686,2293376,9821,0 +35840,Wioska+2,311,489,849075836,8914,0 +35841,Komornicy+026,348,614,699336777,2910,0 +35843,Weso%C5%82ych+%C5%9Awi%C4%85t,641,377,7340529,10426,0 +35844,001,591,353,7340529,12154,0 +35845,Tu+jest+przysz%C5%82o%C5%9B%C4%87,659,400,699491076,8136,0 +35847,-+163+-+SS,545,682,849018239,9616,0 +35848,Weso%C5%82ych+%C5%9Awi%C4%85t,581,358,848915730,9938,0 +35849,A065,601,653,9023703,10237,0 +35850,Wioska+barbarzy%C5%84ska,404,654,699736927,5910,0 +35851,001,315,503,7097727,9368,0 +35852,Szlachcic,387,349,3484132,10487,0 +35853,OFF,685,522,1563417,7761,0 +35854,Nowa+37,673,561,698702991,9816,0 +35855,Wioska+margo0229,606,515,698845189,10495,0 +35856,Szlachcic%3Btaran,636,368,849092309,7410,0 +35857,017+NAWRA,653,614,849048867,9882,0 +35858,Szlachcic,390,347,3484132,10478,0 +35859,Grvvyq+104k%24,679,535,699676005,10190,0 +35860,I048,682,458,699722599,9919,0 +35861,%2A177%2A,333,413,699273451,8564,0 +35862,%28036%29Kadrix,327,568,849098695,9511,0 +35863,Wioska+barbarzy%C5%84ska,578,332,699710633,4039,0 +35864,Bongos,582,671,698723158,7672,0 +35865,Komornicy+009,353,609,699336777,9240,0 +35866,Wioska+ta+nowa,583,338,849063793,4263,0 +35867,Vanaheim+III,594,342,699478692,3313,0 +35868,045+gubin,664,412,9238175,10347,0 +35869,A049,615,647,9023703,8668,0 +35870,AAA,547,317,1006847,7618,0 +35871,130+Brzustowa-Hofek,659,401,699491076,9835,0 +35872,D.013,391,655,849088243,8485,0 +35873,A+097,370,632,699342219,3984,0 +35874,%2A047,595,655,699567608,9706,0 +35875,Ameryczka,619,354,7340529,10252,0 +35877,070KK,586,337,849063849,9247,0 +35878,132,392,650,699269923,5765,0 +35879,Winterhome.006,498,314,848918380,10178,0 +35880,Barka,584,670,699567608,8876,0 +35881,%28005%29Narak,324,567,849098695,9948,0 +35883,Wioska+barbarzy%C5%84ska,335,582,849046232,9104,0 +35884,-+Dragon2,542,323,699825236,4178,0 +35885,.achim.,486,315,6936607,8334,0 +35886,%2A092%2A,358,376,699273451,10211,1 +35887,20.+Madryt,685,486,699804790,9362,0 +35888,123,466,686,9003698,10373,0 +35889,%23040%23,628,636,692803,9761,0 +35890,%2A109%2A,359,376,699273451,10211,0 +35891,0167,370,638,7085510,4375,0 +35892,%2A040%2A,667,416,698670524,2217,0 +35893,Wioska+barbarzy%C5%84ska,576,328,9291984,5468,0 +35894,Optyk,678,548,848932879,7644,0 +35895,024+Hengfors,478,686,699834004,3492,0 +35896,Napewno+to+nie+jest+off,587,336,848912265,6379,0 +35897,Marudernia,371,360,849027025,9524,0 +35898,KONFA+TO+MARKA%2C+NARKA,317,460,698152377,10290,0 +35900,031,535,680,2293376,8530,0 +35901,%2A091%2A,361,372,699273451,10211,0 +35902,%C5%9Amieszki,537,615,3454753,9024,0 +35903,Out+of+Touch,328,429,698962117,10076,0 +35904,Wioska+barbarzy%C5%84ska,515,685,8501514,6180,0 +35905,Out+of+Touch,326,431,698962117,8255,0 +35906,Wioska+barbarzy%C5%84ska,688,492,699429153,9825,0 +35907,065,674,555,849095227,6026,0 +35908,W%C5%9Bciek%C5%82a+Pyra,325,442,699821629,6845,0 +35909,Wioska+barbarzy%C5%84ska,579,329,9291984,4474,0 +35910,Pomidorowy+dzem,684,512,699598425,10728,0 +35911,A+098,371,634,699342219,5505,0 +35912,Komornicy+006,351,609,699336777,9825,0 +35913,Wioska+barbarzy%C5%84ska,345,599,7183372,10075,0 +35914,%2A%2AINTERTWINED%2A,499,684,698704189,8087,0 +35915,Podgrodzie,578,672,698723158,3874,0 +35916,Wioska+01,349,387,3372959,3725,0 +35917,%2A5612%2Acc+Najd%C5%82u%C5%BCszy+zasi%C4%99g,671,581,7973893,10048,0 +35918,%2A073%2A,347,394,699273451,10211,0 +35919,Jehu_Kingdom_71,666,421,8785314,9098,0 +35920,Pomidorowy+dzem,683,512,699598425,10728,0 +35921,Wioska+barbarzy%C5%84ska,668,576,478956,3130,0 +35922,035,334,587,7183372,10362,0 +35923,0312,547,677,698659980,9534,0 +35924,Osada+koczownik%C3%B3w,512,684,699781762,9255,5 +35925,%230123+tomek791103,478,320,1238300,8033,0 +35926,AG04,592,665,699876345,9747,0 +35927,Wioska+Bochun10,315,483,7449254,10311,0 +35928,Wioska+barbarzy%C5%84ska,517,687,745946,7566,0 +35929,Upa,328,563,849012521,4745,0 +35930,ehhh+no,396,556,9167250,6134,0 +35931,106,592,662,849097799,8707,0 +35932,005,672,564,699493750,4156,0 +35933,Wioska+barbarzy%C5%84ska,681,486,699598425,10728,0 +35934,%23069%23,637,629,692803,9761,0 +35935,Ob+Konfederacja,432,329,848915730,9924,0 +35936,-+185+-+SS,550,682,849018239,6933,0 +35937,013,608,352,1990750,7978,0 +35938,Szlachcic,396,350,3484132,10481,0 +35939,Pd+01,361,629,272173,6883,0 +35940,Winterhome.018,501,312,848918380,10178,0 +35941,010+Lothric,521,312,1990750,10495,0 +35942,Aa+to+co+%3F,344,605,7183372,10066,0 +35943,%2A146%2A,341,396,699273451,10211,0 +35944,%2A%2A10%2A%2A,669,430,849098782,10998,0 +35945,063,682,547,849095227,6626,0 +35946,Piskorz,322,552,699265922,4279,0 +35947,Dream+on,311,497,698962117,9072,0 +35948,%2A148%2A,345,399,699273451,6765,0 +35949,Dream+on,310,497,698962117,9489,7 +35950,R%C3%B3d+smoka,690,511,8096537,9053,0 +35951,Out+of+Touch,324,437,698962117,9766,5 +35952,Wioska+barbarzy%C5%84ska,521,688,745946,6596,0 +35953,%3D%7C05%7C%3D,645,386,9101574,10495,0 +35954,C02,687,537,848995478,4766,0 +35955,KR%C3%93L+PAPI+WIELKI,638,619,698191218,10303,0 +35956,Wioska+072,662,598,848971079,9761,0 +35957,wysypisko+%C5%9Bmieci,321,551,699364813,8521,0 +35958,052.Stradi,453,317,698365960,10495,0 +35959,Y+%7C+Forest+Cyaaaanku,318,487,699213622,10000,7 +35960,Out+of+Touch,323,436,698962117,3127,0 +35961,%24BostonCeltics,690,509,699795378,7891,0 +35962,.achim.,536,392,6936607,10375,0 +35963,%5B013%5D+B%C4%85kopierdy,671,437,849095068,9312,0 +35964,Opole%21,680,553,848932879,11321,0 +35965,KR%C3%93L+PAPI+WIELKI,648,611,698191218,9934,0 +35966,kto+ananasowy+pod+wod%C4%85+ma+dom,677,542,699628084,8353,0 +35967,%2A035%2A,346,397,699273451,10211,0 +35968,C0039,310,513,8841266,10252,0 +35969,X+%7C+Forest+Cyaaaanku,318,469,1536625,9976,0 +35970,Szlachcic,506,473,699098531,8709,0 +35971,BSK1,650,613,849066044,9098,0 +35972,0166,376,640,7085510,10216,9 +35973,002+Ceris,661,591,8337151,10083,0 +35974,Wioska+068,652,611,848971079,9761,0 +35975,Muchomor+%2A001%2A,516,688,606407,9015,0 +35976,040,538,684,2293376,9993,0 +35977,Out+of+Touch,322,442,698962117,4881,0 +35978,Darma+dla+zawodnika,523,682,699494488,8524,0 +35979,--06--,346,604,8877156,7357,0 +35980,Winterhome.046,492,311,848918380,10178,0 +35981,%28029%29Desh,322,560,849098695,3345,7 +35982,Wioska+Lisseks,663,597,8337151,10083,0 +35983,Wioska+barbarzy%C5%84ska,519,312,1990750,10068,0 +35984,Wioska+barbarzy%C5%84ska,604,343,0,7110,0 +35985,-+203+-+SS,536,682,849018239,7053,0 +35986,Rosetta,408,657,849089459,2869,0 +35987,Suppi,602,350,7462660,9912,0 +35988,Didek,674,567,849070946,5901,0 +35989,%230159+Kamil0ss1,482,317,1238300,10178,0 +35990,Szymon9410,391,656,699269923,8082,0 +35991,%2A027%2A,348,392,699273451,10211,1 +35992,%5B123%5D+North23,575,473,848985692,10049,0 +35993,Winterhome.014,510,313,848918380,10178,0 +35994,08.+Oslo,687,483,699804790,9362,0 +35995,X+%7C+Forest+Cyaaaanku,319,470,1536625,9976,0 +35996,%21%2136+50+xxx,607,354,698361257,10008,0 +35997,Jednak+wol%C4%99+gofry,419,664,699736927,8395,0 +35998,%230127+korniczeks,470,319,1238300,10178,0 +35999,Wioska+barbarzy%C5%84ska,322,456,6258092,5174,0 +36000,228,421,335,7271812,3484,0 +36001,AAA,543,319,1006847,9684,0 +36002,095+Tomek,683,517,2135129,4714,0 +36003,Wioska+barbarzy%C5%84ska,507,317,6118079,5009,0 +36004,.achim.,535,392,6936607,10946,0 +36005,%23020%23,626,634,692803,9761,0 +36006,A+024,366,629,699342219,4086,0 +36007,006+Aberon,660,595,8337151,10083,0 +36008,Rubiez14,313,481,699265922,7429,0 +36009,071+Chybik+tu+by%C5%82,586,589,699373599,10373,0 +36010,215,430,325,7271812,7073,0 +36011,Kocpo%C5%82uch+4,329,578,848949597,3882,0 +36012,OFF,655,600,849014413,10343,0 +36013,Lecymy+DUR,432,360,6169408,10242,0 +36014,003,601,348,1018357,10019,4 +36016,%28013%29Jah+Keved,327,569,849098695,8900,0 +36017,-+188+-+SS,549,681,849018239,7761,0 +36019,002,342,598,7183372,10236,0 +36020,013,531,680,2293376,9431,0 +36021,_PUSTA+%21,678,547,699628084,10495,0 +36022,Z%7C011%7C+Wioska+VIIII,455,679,699393742,7915,0 +36023,RTS+13,578,620,848995242,10146,0 +36024,Po%C5%82udnie.008,554,682,873575,10300,0 +36025,Szlachcic,395,346,3484132,10484,0 +36026,AAA,542,315,1006847,9455,0 +36027,Zeta+Reticuli+O,420,335,699323302,9865,0 +36028,069+Wioska+020,661,414,9238175,8349,0 +36029,-+194+-+SS,530,687,849018239,6776,0 +36030,Darma+dla+zawodnika,524,680,699494488,6745,0 +36031,25.+F-H-X,682,478,699804790,8555,0 +36032,%2A005%2A,353,391,699273451,10211,0 +36033,Wioska+barbarzy%C5%84ska,313,479,699823490,7259,0 +36034,Wioska+barbarzy%C5%84ska,603,344,0,5044,0 +36035,%7C028%7C+Nowa+Zelandia,508,686,2585846,9861,0 +36036,060.,651,393,849094609,10019,4 +36037,C0059,315,510,8841266,10252,0 +36038,KONFA+TO+MARKA%2C+NARKA,318,451,698152377,10290,0 +36039,C+003,682,519,8078914,10426,0 +36040,174...Segadorr_M,443,323,6920960,10602,0 +36041,Sony+911,623,639,1415009,10221,0 +36042,Szlachcic,388,351,3484132,10478,0 +36044,Wioska+Zorro+011,664,583,849080702,9872,0 +36045,P015+Svargrond,660,508,8096537,9761,0 +36046,%7B37%7D+Wie%C5%9B+Gli%C5%84sk,368,636,849096945,2713,0 +36047,%23055%23,638,629,692803,9761,9 +36048,-005-+Chwa%C5%82a+Imperium,618,358,849099276,6976,0 +36049,%5B034%5D+Wioska+barbarzy%C5%84ska,673,419,849095068,9288,0 +36050,C03,687,535,848995478,6391,0 +36051,W%C5%82adcy+P%C3%B3%C5%82nocy+04,690,497,699379895,6889,0 +36052,2.Ronda,567,673,698215322,4480,0 +36053,003,324,560,849097898,9589,0 +36054,AAA,526,320,1006847,10503,0 +36055,C04,685,537,848995478,3128,0 +36056,Wioska+barbarzy%C5%84ska1a,394,657,699269923,9554,0 +36058,TWIERDZA+%233,583,337,849063793,3410,0 +36059,Wioska+barbarzy%C5%84ska,410,658,699736927,2134,0 +36060,09.+Berlin,684,483,699804790,9362,0 +36062,Taran+036,641,380,699098531,7645,0 +36063,%7E+MIED%C5%B9Y%C5%83+%7E,320,445,698540331,10103,0 +36064,%7C059%7C+Barba,496,682,699393742,7058,0 +36065,Taran+014,644,379,699098531,10971,0 +36067,002+Choroszcz,529,316,849099054,10083,0 +36068,0273,559,677,698659980,10019,0 +36069,Jednak+wol%C4%99+gofry,417,664,699736927,9899,0 +36070,%23068%23,633,631,692803,9761,0 +36071,Szlachcic,385,348,3484132,10487,0 +36072,AG09,588,667,699876345,9322,0 +36073,z+181-A004,353,380,3909522,8470,0 +36074,Piechy,354,618,699864013,6244,0 +36075,%23013%23,629,640,692803,9761,0 +36076,Pa%C5%84stfa+Pu%C5%82nocy,585,331,699433558,9882,0 +36077,.achim.,487,315,6936607,8971,0 +36078,006.+Malce,339,402,698807570,10068,0 +36079,001+Du+Weldenvarden,662,595,8337151,9969,8 +36080,123,472,682,9003698,10373,0 +36082,%23%21+Szlachcic,383,352,698160606,10478,0 +36083,Brze%C5%BAno,666,408,7973893,7829,0 +36084,005+Maka+Paka,594,341,699576407,1679,0 +36085,%C5%BBUBR+.%3A%3A.Adaczu%2F04,620,646,33900,6632,0 +36086,Wioska+barbarzy%C5%84ska,326,426,699856962,8398,0 +36087,%2A%2A27%2A%2A,675,434,849098782,10480,0 +36088,Szlachcic,391,349,3484132,10495,0 +36089,Out+of+Touch,323,433,698962117,2860,0 +36090,X+%7C+Forest+Cyaaaanku,319,466,699213622,10000,0 +36091,%2A114%2A,361,382,699273451,10211,0 +36092,-+Dragon,546,324,699825236,6943,0 +36093,Wioska+barbarzy%C5%84ska,688,466,699574408,9054,0 +36094,%2A031%2A,348,393,699273451,10211,0 +36095,TWIERDZA+.%3A073%3A.,676,560,7154207,8983,0 +36096,C0182,320,532,8841266,9327,0 +36097,AAA,529,320,1006847,9835,0 +36098,005.+Trop,562,322,699072129,10311,0 +36099,Wioska+barbarzy%C5%84ska,338,584,3990066,4143,0 +36100,013+FF,318,501,7097727,1775,0 +36101,Taran,342,604,6180190,10158,0 +36102,Wioska+barbarzy%C5%84ska,685,494,699598425,10728,0 +36103,035,529,687,2293376,9514,0 +36104,012.,639,376,699098531,9794,0 +36105,049.Stradi,447,322,698365960,10495,0 +36106,002,310,505,698356304,6569,0 +36107,I092,682,446,699722599,8648,0 +36108,KONFA+TO+MARKA%2C+NARKA,314,460,698152377,10290,0 +36109,Szlachcic,398,345,698160606,8092,0 +36110,1004,617,359,699150527,9821,0 +36111,O28+Elva,677,547,699272880,10812,0 +36112,%2A122%2A,361,379,699273451,9182,0 +36115,008,485,690,848953066,5056,0 +36116,Szlachcic,383,355,698160606,10365,0 +36117,New+World,428,675,698152377,10294,0 +36118,BULWAR,399,349,3484132,6563,0 +36119,New+Land+22,340,413,849064752,2618,0 +36120,C0270,318,508,8841266,5777,0 +36121,Ave+Why%21,481,686,699121671,3610,0 +36122,0401,561,681,698659980,10019,0 +36123,Lord+Lord+Franek+.%23175,519,319,698420691,10160,0 +36124,Tesa+13,605,516,698845189,7255,0 +36125,%3F%3F%3F,475,312,698489071,9055,0 +36126,_PUSTA,660,603,698768565,10213,0 +36127,009+Kingsthorpe,604,344,699580120,7977,0 +36128,%5B042%5D+Wioska+barbarzy%C5%84ska,674,435,849095068,9274,0 +36129,Grvvyq+113k%24,682,534,699676005,7292,0 +36130,X+%7C+Forest+Cyaaaanku,314,469,699213622,10000,4 +36131,Sekou,681,516,699737356,9952,0 +36132,cos+cos,436,679,8966820,9835,0 +36133,008+Utah,489,684,699238479,4058,0 +36134,Den+Bosch,620,359,9103424,10030,2 +36135,psycha+sitting,425,673,699736927,8704,0 +36136,Male%C5%84stwo,386,650,699269923,9865,0 +36137,14.+Aeris+Gainsborough,524,614,8199417,10495,0 +36138,Chekku+-+meito,321,538,9280477,9976,0 +36139,Wioska+barbarzy%C5%84ska,686,493,699598425,10728,0 +36140,029Wioska+barbarzy%C5%84ska,682,452,849098769,7462,0 +36141,053+Wioska+002,663,413,9238175,10358,0 +36142,Wioska+barbarzy%C5%84ska,348,605,7183372,6167,0 +36143,Wyj%C5%9Bcie+Awaryjne,682,552,848932879,10316,0 +36144,Ronin+P,637,627,698768565,9995,0 +36145,AGA2,684,504,699598425,7894,0 +36146,AAA,549,323,1006847,11156,0 +36147,Winterhome.021,498,313,848918380,10178,0 +36148,0192,474,545,698971484,7442,0 +36149,31.+Nawzajem,557,320,849099696,6429,0 +36150,Lord+Arsey+KING,576,591,848956513,10285,0 +36151,J%23012,576,331,2065730,5037,0 +36152,Wioska+Bochun10,319,485,7449254,10311,0 +36153,AAA,542,321,1006847,9778,0 +36154,04+Batat,642,614,8224678,6223,0 +36155,Wegorz,318,547,699265922,3873,0 +36156,%2AINTERTWINED%2A,504,687,698704189,9711,0 +36157,Winterhome.017,500,314,848918380,10178,8 +36158,Winterhome.019,503,312,848918380,10178,0 +36159,%23042%23,629,634,692803,9761,0 +36160,40k%24+Grvvyq,673,564,699676005,10495,5 +36161,AAA,525,318,1006847,7584,0 +36162,0040,569,322,699485250,10211,0 +36163,10+Nowa+Cytadela,561,326,849108780,10019,0 +36164,%23008%23,621,645,692803,9761,0 +36165,START+01,579,671,699567608,9700,0 +36166,005,325,558,849012521,4917,0 +36167,Wioska+barbarzy%C5%84ska,653,603,1900364,5072,0 +36168,AAA,531,318,1006847,9899,3 +36170,I064,687,468,699722599,9958,0 +36171,Ob+Konfederacja,433,327,848915730,10079,0 +36172,%2AINTERTWINED%2A,500,686,698704189,8388,0 +36173,KR%C3%93L+PAPI+WIELKI,571,576,698191218,10000,0 +36174,_PUSTA%2B,675,549,699628084,10495,0 +36175,%2A170%2A,334,409,699273451,9083,0 +36176,Minas+Tirith,629,362,699857387,10019,0 +36177,Parole,337,410,699595556,3674,0 +36178,08+Twierdza+P%C3%B3%C5%82nocna,565,328,849108780,4191,0 +36179,KONFA+TO+MARKA%2C+NARKA,319,460,698152377,10292,0 +36180,Wioska+barbarzy%C5%84ska,563,326,849106785,2080,0 +36181,kathare,550,645,873575,9804,0 +36182,Wioska+barbarzy%C5%84ska,476,315,849048216,2906,0 +36183,%C5%BBelazny+deff,361,625,699805839,10040,0 +36184,002+Desant,482,689,699745265,8725,0 +36185,6.Novorepnoye,422,325,849098648,6379,0 +36186,Architekci+Plac%C3%B3w+Boju,340,553,8004076,9880,0 +36187,Darma+dla+zawodnika,527,685,699494488,4767,0 +36188,Didek,676,565,849070946,7495,0 +36189,Wsch%C3%B3d+Droga+005,673,570,698562644,10311,0 +36190,Szlachcic,395,344,3484132,9504,0 +36191,%23070%23,634,628,692803,9761,0 +36192,Szlachcic,377,354,698160606,10487,0 +36193,Muchomor+%2A008%2A,515,684,606407,10292,0 +36194,Zeta+Reticuli+O,421,336,699323302,10728,0 +36195,No.24,477,683,698826986,6154,0 +36196,C+017,689,522,8078914,7009,0 +36197,-+159+-+SS,544,685,849018239,10000,0 +36198,AAA,540,319,1006847,7071,0 +36199,A020,607,657,9023703,10237,0 +36200,Lord+Nc3dyh+1,320,442,699509284,5738,0 +36201,%21%23Szlachcic,380,352,698160606,10838,0 +36202,AAA,549,317,1006847,8545,0 +36203,C+008,686,516,8078914,7055,0 +36204,Komornicy+012,351,611,699336777,4600,0 +36205,Out+of+Touch,326,434,698962117,10000,0 +36206,Wioska+Bochun10,315,489,7449254,7609,0 +36207,%2A5615%2A+Winchester,673,558,7973893,10287,8 +36208,%230082+barbarzy%C5%84ska,465,342,1238300,10178,0 +36209,New+Land+20,345,401,849064752,3395,0 +36210,B024,517,312,699208929,5483,0 +36211,.achim.,487,317,6936607,7388,0 +36212,O65+Yongan,676,556,699272880,10548,0 +36213,.achim.,485,315,6936607,9844,0 +36214,Ob+Konfederacja,431,324,848915730,9816,1 +36215,Dream+on,309,500,698962117,9488,0 +36216,Zadupie,634,365,848924219,1923,0 +36218,Cmentarz+Wroc%C5%82awska,682,548,848932879,6479,0 +36219,%7C070%7C+BlackBird+5,492,690,699393742,8315,0 +36220,Ave+Why%21,450,682,698585370,10503,1 +36221,%3D%7C52%7C%3D,641,381,9101574,2781,0 +36222,TWIERDZA+.%3A023%3A.,679,563,7154207,10299,0 +36223,Wioska+barbarzy%C5%84ska,436,445,9291984,3150,0 +36224,159+Nocny+Jastrz%C4%85b+004,656,398,699491076,7936,0 +36225,Zamek+Kurowej,654,607,1900364,2878,0 +36227,%230236+deleted,474,343,1238300,10178,0 +36228,017+Byrgenwerth,522,311,1990750,10068,0 +36229,Szlachcic,395,350,3484132,10478,0 +36231,%28035%29Kharbranth,332,575,849098695,5272,0 +36232,Kentin+ufam+Tobie,321,462,699783765,10141,0 +36233,C06,685,536,848995478,4460,0 +36234,18.+Moskwa,683,481,699804790,9362,0 +36235,Wioska+dzikich+zwierz%C4%85t,580,664,699567608,10204,0 +36236,Wioska+2,331,425,2418002,9628,0 +36237,Szlachcic,385,353,698160606,10495,0 +36238,%2A024%2A,356,387,699273451,10211,0 +36239,BAC%C3%93WKA+%7C043%7C,667,411,7394371,5875,0 +36240,AGA4,687,497,699598425,10273,0 +36241,Koza,322,550,699265922,4714,0 +36242,Szlachcic,381,352,698160606,9960,0 +36243,Napewno+to+nie+jest+off,590,335,848912265,4822,0 +36244,PYRLANDIA+029+sobex510,564,588,33900,9707,0 +36245,%5B029%5D+Wioska+barbarzy%C5%84ska,673,438,849095068,9312,0 +36246,233,422,329,7271812,3967,0 +36247,New+World,432,678,698152377,10292,0 +36248,%2A026%2A,348,391,699273451,10211,0 +36249,Wioska+barbarzy%C5%84ska,319,549,8004076,6693,0 +36250,z+internacionale+33,355,378,3909522,10160,0 +36251,R%C3%B3zanka,322,553,699265922,2271,0 +36252,Napewno+to+nie+jest+off,586,336,848912265,5290,0 +36253,LordFrotto2,563,327,849106785,6450,0 +36254,Twierdza+013,316,550,849099601,2582,0 +36255,Dream+on,310,492,698962117,9744,6 +36256,25.+Wioska+Raukodel,650,383,9320272,2906,0 +36258,%2A5612%2Aa+Wycieczka,668,581,7973893,10287,0 +36259,Sieja,321,548,699265922,2617,0 +36260,Wioska+barbarzy%C5%84ska,681,470,699574408,9896,0 +36262,064,535,682,2293376,8095,0 +36263,New+World,429,672,698152377,10294,0 +36264,%2A005%2A.+Rivia,314,536,699402816,9835,0 +36265,Wioska+Vintorez,372,359,849068108,8646,0 +36266,z+internacionale+08,358,380,3909522,9746,0 +36267,C+001,689,511,8078914,10144,6 +36268,W%C5%82adcy+P%C3%B3%C5%82nocy+05,688,506,699379895,6153,0 +36269,Upa02,327,564,849012521,5350,0 +36270,Wioska+Barbarzy%C5%84ska,544,481,698867483,10019,0 +36271,063.+Rona,665,596,8337151,10083,0 +36272,Wioska+ukradziona,597,340,849063793,3359,0 +36273,010+Desant,481,687,698620694,9383,0 +36274,I063,685,464,699722599,10495,0 +36275,Szlachcic,387,350,3484132,10476,0 +36276,Wsch%C3%B3d+X4,688,530,698562644,10311,0 +36278,Szlachcic,394,352,3484132,10478,0 +36279,200...Segador,457,314,6920960,10654,0 +36280,%2AINTERTWINED%2A,507,686,698704189,9711,0 +36281,Wioska+Bochun10,317,498,7449254,7908,0 +36282,Wioska+086,656,609,848971079,7401,0 +36283,Out+of+Touch,320,437,698962117,5757,0 +36285,Zeta+Reticuli+O,418,334,699323302,10997,0 +36286,%2A%2A31%2A%2A,668,425,849098782,9769,0 +36287,041.+nie+zgadniesz+jaka+wioska,688,473,7494497,10462,0 +36288,069,543,685,2293376,6796,0 +36289,Wioska+Zorro+014,666,595,849080702,8802,0 +36290,Winterhome.035,495,312,848918380,10178,0 +36291,BIRMINGAM,397,349,3484132,7325,0 +36292,-+189+-+SS,533,683,849018239,8712,0 +36293,B023,518,311,699208929,7805,0 +36294,Amon+Sul,460,679,849004274,10230,0 +36295,%2A182%2A,340,407,699273451,10211,0 +36296,014,609,353,8649412,7450,0 +36297,AAA,525,311,1006847,5362,0 +36298,a+mo%C5%BCe+off+%3F+%3A%29,638,620,698768565,9358,0 +36299,001.+Milan%C3%B3wek,316,450,849098966,7116,0 +36300,KR%C3%93L+PAPI+WIELKI,646,619,698191218,10020,0 +36301,_PUSTA+%21,686,541,699628084,9797,0 +36302,Osada+koczownik%C3%B3w,622,643,1415009,10306,3 +36303,R+025,485,686,699195358,9309,0 +36304,fff,490,317,698239813,10864,0 +36305,Wodogrzmoty+Ma%C5%82e,654,608,1900364,9771,0 +36306,090+Nowy+Rok,655,403,699491076,9878,0 +36307,%230203+Segadorr+dar,461,315,1238300,8760,0 +36308,%2A089%2A,359,382,699273451,10211,8 +36309,Chekku+-+meito,337,534,9280477,9976,0 +36310,Gattacka,680,435,699298370,9570,0 +36311,X+%7C+Forest+Cyaaaanku,319,468,1536625,9976,0 +36312,061+Wioska+013,663,411,9238175,9697,0 +36313,Szlachcic,392,351,3484132,10495,0 +36314,Wioska+barbarzy%C5%84ska,587,332,0,9202,0 +36315,181...SEGADOR,442,320,6920960,8011,0 +36316,I058,682,456,699722599,9987,0 +36317,Szlachcic,386,349,3484132,10478,0 +36318,%2A101,581,663,699567608,9779,0 +36320,A+037,366,631,699342219,3340,0 +36321,%28021%29Emul,326,561,849098695,4275,0 +36322,007,310,508,698356304,3268,0 +36323,zzzGranica+Bledu+13,642,616,699778867,6664,0 +36324,z+181-A001+skasowano,350,378,3909522,9842,0 +36325,Wioska+barbarzy%C5%84ska,523,312,1990750,9224,0 +36326,Auu+08,576,667,848995242,4984,0 +36327,025+Haligtree,517,311,699208929,10119,0 +36328,0167,378,641,1434753,6669,0 +36329,Wioska+barbarzy%C5%84ska,326,424,699856962,7921,0 +36330,Szlachcic,320,541,698388578,7460,0 +36331,%5B002%5D+Kleksowo,675,426,849095068,10495,0 +36332,W.O.S,312,482,8048374,6215,0 +36333,%230282+olcixx,467,312,1238300,7610,0 +36334,Walwaijk,616,350,9103424,7263,0 +36335,Out+of+Touch,330,432,698962117,4109,0 +36336,psycha+sitting,420,672,699736927,10178,0 +36337,Winterhome.049,494,309,848918380,10178,0 +36338,psycha+sitting,405,663,699736927,10311,0 +36339,AG01,591,665,699876345,9747,0 +36340,Jednak+wol%C4%99+gofry,415,662,699736927,9899,0 +36341,AAA,541,320,1006847,7067,0 +36342,Dream+on,312,503,698962117,9485,9 +36343,Klaudek19,631,362,849092309,3697,0 +36344,Eindhoven,618,352,9103424,10398,3 +36345,%C5%BBUBR+PSYCHIATRYK+010,616,644,33900,5579,0 +36346,111,591,668,849097799,7504,0 +36347,03.+Helsinki,685,484,699804790,9362,5 +36348,009,313,507,7097727,6555,0 +36349,%7E071.,529,689,7139820,7202,0 +36351,%5B027%5D+Wioska+barbarzy%C5%84ska,672,436,849095068,9288,0 +36352,A006,496,691,8954402,10144,0 +36353,B02,688,552,848995478,11321,0 +36354,Wioska+barbarzy%C5%84ska,647,612,1900364,3075,0 +36355,Osada+koczownik%C3%B3w+xxx,658,606,1900364,9742,4 +36356,186...Segador,456,322,6920960,10787,0 +36357,Szlachcic,387,345,3484132,10478,0 +36358,Ilonka,597,338,849061374,9660,0 +36359,Wonderwall,325,551,698962117,9488,0 +36360,Wioska+Bochun10,336,477,7449254,10311,0 +36361,013+Kalifornia,495,683,699238479,8204,0 +36362,007Wioska+barbarzy%C5%84ska,400,337,699406776,10301,0 +36363,Wyspa_11,508,689,2585846,9638,0 +36364,O0016,499,687,699781762,10066,0 +36365,Troch%C4%99+tego+b%C4%99dzie,651,387,849041192,3317,0 +36366,Wioska+barbarzy%C5%84ska+G%C3%B3ra,627,361,699857387,9428,0 +36367,Ob+Konfederacja,430,331,848915730,9871,1 +36368,007,525,316,1990750,10068,0 +36369,psycha+sitting,402,660,699736927,5388,0 +36370,171...Segadorr,441,325,6920960,10971,0 +36371,%C5%BBUBRAWKA+055,612,644,33900,10451,0 +36372,C0166,317,510,8841266,10252,8 +36374,New+Land+21,337,402,849064752,3316,0 +36375,K34+-+%5B151%5D+Before+Land,473,316,699088769,9226,3 +36376,Winterhome.013,498,312,848918380,10178,0 +36377,Wioska+jo%C5%82,627,369,849061374,8391,0 +36378,Lord+Nc3dyh,319,442,699509284,9292,0 +36379,Wioska+barbarzy%C5%84ska,567,679,7756002,9811,0 +36380,2.Sabadell,582,672,698215322,5047,0 +36381,%5B052%5D+Malzahar+2,676,433,849095068,6432,0 +36382,Nowa+46,665,579,698702991,8030,0 +36383,B-01,384,350,698160606,7417,0 +36384,%23Forza+02,436,668,699849210,9672,0 +36385,0269,548,678,698659980,9433,0 +36386,Ujek,655,398,1086351,7829,0 +36387,Taran,340,605,6180190,10051,0 +36388,Pr%C3%B3szk%C3%B3w1,371,364,849099434,12021,9 +36389,Out+of+Touch,324,438,698962117,6011,0 +36390,Ave+Why%21,489,686,699121671,4638,0 +36391,%230139+Rose,631,589,9272054,5199,0 +36392,Dream+on,310,501,698962117,9485,0 +36393,A016,612,652,9023703,10237,0 +36394,Wioska+5,332,427,2418002,5748,0 +36395,015,317,496,7097727,4046,0 +36396,Wyspa+013,620,379,699756210,10838,0 +36397,Wioska+barbarzy%C5%84ska,372,361,849027025,6710,0 +36398,29.+Legacy,558,319,849099696,7131,0 +36399,psycha+sitting,425,670,699736927,9876,0 +36400,Pd+09,362,630,272173,9039,2 +36401,016.,606,555,8900955,5286,0 +36402,052,494,379,698739350,7495,0 +36403,%230201+Segadorr+dar,458,314,1238300,10178,0 +36404,176...Segador-M,442,327,6920960,9012,0 +36405,KR%C3%93L+PAPI+WIELKI,649,611,698191218,10052,0 +36406,221,421,330,7271812,3896,0 +36407,D09,682,555,848995478,11191,0 +36408,.achim.,487,314,6936607,10411,0 +36409,1.01,428,676,699827112,9771,0 +36410,032,676,571,6160655,10237,0 +36411,Wioska+barbarzy%C5%84ska,576,330,9291984,4505,0 +36412,%23179%23,643,618,692803,9707,0 +36413,AAA,545,314,1006847,8362,0 +36414,Wioska+080,659,606,848971079,9045,0 +36415,Dream+on,311,502,698962117,9519,0 +36416,Darma+dla+zawodnika,519,667,699494488,9442,0 +36417,Wioska+Biboj94,682,472,699574408,9263,0 +36418,Wioska+b,558,677,6121024,5551,0 +36419,Koloryzowane,326,573,698338524,5436,0 +36420,C0109,314,532,8841266,10252,0 +36421,No.20,473,682,698826986,1694,0 +36422,069.+Illium,661,587,8337151,9763,0 +36423,0151,405,336,699431255,9327,0 +36425,Taran,344,609,6180190,10057,0 +36427,%7B53%7D+Cewice,383,646,849096945,2387,0 +36428,11+Nowa+Forteca,561,325,849108780,9642,0 +36429,Grvvyq+106k%24,681,530,699676005,7709,0 +36430,I068,685,469,699722599,10154,0 +36431,ZZZ,463,692,8980651,8975,0 +36432,%2A016%2A,351,386,699273451,10211,0 +36434,%7C055%7C+Szybenik,499,691,2585846,9482,0 +36435,Ob+Konfederacja,432,322,848915730,6957,0 +36436,005,339,598,7183372,10141,5 +36437,OFF,650,618,849014413,10104,0 +36438,201,424,331,7271812,9388,0 +36440,_PUSTA,654,600,698768565,10085,0 +36441,0.24,463,685,699827112,7099,0 +36442,Jan+AquaForce+Ost+K,683,452,879782,9704,0 +36443,Barbara+001,420,623,699730998,6602,0 +36444,041+Mucharadza,664,416,9238175,10285,0 +36445,Zeta+Reticuli+O,416,331,699323302,9819,0 +36446,%21%2136+95+Grigoresti,650,395,698361257,6622,0 +36447,-001-,351,394,1693936,7552,0 +36449,-+145+-+SS,541,686,849018239,9570,0 +36450,%23080%23,635,625,692803,9761,0 +36451,Out+of+Touch,324,433,698962117,8741,0 +36452,.04.+Lorien+e,354,624,272173,7871,0 +36453,Darma+dla+zawodnika,527,683,699494488,4299,0 +36454,Bagdad,465,390,8847546,10654,0 +36455,Wioska+X,670,417,8675636,10252,0 +36456,Wioska+barbarzy%C5%84ska,338,596,7183372,10064,0 +36457,013.+bum-ta-rara-rara,689,474,7494497,9949,0 +36458,102+-+Nowy+Pocz%C4%85tek...,377,646,7540891,9031,0 +36459,KONFA+TO+MARKA%2C+NARKA,315,454,698152377,10290,3 +36460,I003+Co+Ty+tutaj+robisz,683,460,699722599,10495,0 +36461,5.Severny,413,336,849098648,6910,0 +36462,118.+Dalonory,669,590,8337151,10083,0 +36463,%2A4691%2A+Grand,659,402,7973893,10075,0 +36464,Wsch%C3%B3d+X5,690,534,698562644,10323,0 +36465,Wano,489,388,699433558,10311,0 +36466,Cast+Away+003,452,493,698290577,5917,0 +36467,Ronin+P,642,626,8815749,10252,8 +36468,MojeDnoToWaszSzczyt,507,309,9299539,9958,0 +36469,C0144,319,535,8841266,10252,0 +36470,%7C067%7C+BlackBird+2,493,690,699393742,10974,0 +36471,Ulu-mulu,422,616,699697558,10628,0 +36472,009.+%C5%BB%C3%B3%C5%82win,324,448,849098966,6186,0 +36473,EO+EO,310,517,699697558,10019,0 +36474,Didiek,671,566,849070946,10362,0 +36475,Szlachcic%3Btaran,657,399,699738350,9809,0 +36476,Pa%C5%84stfa+Pu%C5%82nocy,584,330,699433558,9939,0 +36477,094.,505,484,8788366,9999,0 +36478,Wioska+MATTI,419,624,699730998,5769,0 +36479,Pyra2,326,441,699821629,6456,0 +36481,023,429,627,2289134,3324,0 +36482,-+02+-+Stare,468,314,848902744,8009,0 +36483,%3F%3F%3F,476,313,698489071,9128,0 +36484,X+%7C+Forest+Cyaaaanku,319,472,1536625,9976,0 +36485,C0066,312,529,8841266,10252,0 +36486,Didi,672,563,849070946,4235,0 +36487,040,327,579,7183372,10595,0 +36488,ADEN,524,377,698588535,10051,0 +36489,Wioska+barbarzy%C5%84ska,621,640,1415009,7664,0 +36490,011+Duncan,556,325,849108623,2827,0 +36491,%3D%7C19%7C%3D,616,351,9101574,10495,0 +36492,X+%7C+Forest+Cyaaaanku,314,465,699213622,10000,5 +36493,D.014,396,652,849088243,6956,0 +36494,%2A102%2A,362,369,699273451,10211,0 +36495,Dream+on,311,503,698962117,9555,0 +36496,%2A188%2A,375,373,699273451,10168,0 +36497,Weso%C5%82ych+%C5%9Awi%C4%85t,637,379,7340529,10887,0 +36498,Wioska+barbarzy%C5%84ska,521,687,745946,3842,0 +36499,1008,626,358,699150527,7084,0 +36500,Wioska+052,644,603,848971079,9761,0 +36501,226,417,334,7271812,5043,0 +36502,kamilkaze135+%2312,655,388,699705601,8056,0 +36503,Taran,336,599,6180190,9960,0 +36504,Taran,683,490,699598425,10728,1 +36505,Wioska+barbarzy%C5%84ska,385,646,0,539,0 +36506,Szlachcic,386,348,3484132,10484,0 +36507,Hiszpan4,673,559,7038651,10484,0 +36508,%2A107%2A,364,369,699273451,10211,0 +36510,psycha+sitting,419,668,699736927,10311,0 +36511,C0137,313,514,8841266,10252,0 +36512,Wioska+barbarzy%C5%84ska,687,493,699598425,10728,0 +36513,I089,687,457,699722599,9115,0 +36514,0049,573,325,699485250,5375,0 +36515,199,586,393,849064752,3418,0 +36516,Piek%C5%82o+to+inni,597,343,848956765,8118,0 +36517,Wioska+barbarzy%C5%84ska,333,594,7183372,8100,0 +36518,Mordor4,315,541,848978903,5791,0 +36520,psycha+sitting,412,669,699736927,9111,0 +36521,BRZEG+JORDANU+%7C+002,692,521,9228039,9346,0 +36522,R+022,485,685,699195358,9390,0 +36523,ZZZ,464,685,849014922,10787,9 +36524,Wioska+barbarzy%C5%84ska,372,365,849027025,6394,0 +36525,%23108+C,529,682,9037756,6609,0 +36526,Kingdom+9,689,500,699598425,10406,0 +36527,002,325,557,849099463,9347,0 +36528,Wioska+barbarzy%C5%84ska,659,602,1900364,2454,0 +36529,.achim.,482,312,6936607,8828,0 +36530,.12.+Occitane+b,368,632,699342219,9009,0 +36531,235,426,326,7271812,5231,0 +36532,005.+Kanie,320,448,849098966,6439,0 +36533,064,432,619,699783765,3752,0 +36535,Moja+Wioska,666,588,849098693,8000,0 +36536,Wioska+barbarzy%C5%84ska,431,624,6910361,4876,0 +36537,%2A022%2A,348,386,699273451,10211,0 +36538,022,425,630,699783765,5748,0 +36539,Wioska+barbarzy%C5%84ska,339,395,698807570,8714,0 +36540,%7E%7E064%7E%7E,632,638,7829201,7295,0 +36541,Muchomor+%2A028%2A,521,683,606407,9225,0 +36542,C005+Kuchnia+Mannekenpixa,586,664,9023703,4403,0 +36543,050,543,680,2293376,7948,0 +36544,Brzeg,680,554,848932879,10362,0 +36545,KR%C3%93L+PAPI+WIELKI,651,612,698191218,10495,0 +36546,EMERYTOWANY+KUZYN,420,634,848913998,4951,0 +36548,Wioska+barbarzy%C5%84ska,652,608,1900364,3037,0 +36549,Wioska+krzysiu1969,314,488,2491724,1750,0 +36550,Taran+031,637,372,699098531,6633,0 +36552,036%23+Cristina,487,690,3933666,4288,0 +36554,%23002%23,634,626,692803,9761,8 +36555,1007,620,361,699150527,9885,0 +36556,Sony+911,621,639,1415009,8028,0 +36558,Akwen,319,550,699265922,2495,0 +36559,z+A01+Toru%C5%84,348,379,3909522,9363,0 +36560,WJE%C5%BBD%C5%BBAM+I+ROZJE%C5%BBD%C5%BBAM,614,356,698420691,7838,0 +36562,0162,406,343,699431255,5555,0 +36563,KR%C3%93L+PAPI+WIELKI,644,618,698191218,9634,0 +36564,--07--,346,607,8877156,8817,0 +36565,Wioska+Bochun10,317,484,7449254,10311,9 +36566,%7C052%7C+Zadar,494,687,699393742,9738,0 +36568,Wioska+AsconX,335,585,3990066,5920,0 +36569,New+World,428,670,698152377,10295,0 +36570,XXX,544,678,7098955,8066,0 +36571,psycha+sitting,405,665,699736927,8868,0 +36572,Osada+koczownik%C3%B3w,622,644,1415009,10233,2 +36573,%5B051%5D+Wioska+barbarzy%C5%84ska,675,424,849095068,7651,0 +36574,New+World,446,684,698152377,10452,0 +36575,Zeta+Reticuli+O,418,330,699323302,10728,0 +36578,A045,609,647,9023703,8460,0 +36580,Defolij+2,553,325,849098136,2803,0 +36581,Wioska+Maxwell+3,643,378,526350,2448,0 +36582,C0269,317,507,8841266,5541,0 +36583,065,533,681,2293376,7267,0 +36584,-+180+-+SS,551,683,849018239,8029,0 +36585,AG08,593,663,699876345,9549,0 +36586,Taran,345,604,6180190,10297,0 +36587,%23073%23,633,634,692803,9761,0 +36588,194...Segador,456,317,6920960,10787,0 +36589,Wioska+barbarzy%C5%84ska,326,421,699856962,7805,0 +36590,%2A149%2A,347,395,699273451,8280,0 +36591,05.wiocha,332,593,7183372,6029,0 +36592,Wioska+barbarzy%C5%84ska,410,661,699736927,3926,0 +36593,psycha+sitting,420,674,699736927,10311,0 +36594,%2A%2A09%2A%2A,674,428,849098782,11913,0 +36595,0056,422,405,848913037,9993,0 +36596,F03,686,525,848995478,3888,0 +36597,Didus+P,672,575,849070946,8612,0 +36598,Wioska+barbarzy%C5%84ska,517,688,745946,4430,0 +36599,C0110,316,529,8841266,10252,0 +36600,psycha+sitting,399,659,699736927,10311,6 +36601,kamilkaze135+%2301.3,658,392,699705601,8985,0 +36602,Szlachcic,690,515,8096537,7713,0 +36603,Didi,676,587,849070946,10005,0 +36604,.17.+Izmir+b,363,630,699342219,8990,0 +36605,psycha+sitting,406,660,699736927,4975,0 +36606,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,379,642,1434753,10068,6 +36607,Wioska+barbarzy%C5%84ska,682,485,699598425,10728,0 +36609,%23050%23,637,633,692803,9761,0 +36610,Kazumasa+Sakai,691,514,8096537,9167,0 +36611,X+%7C+Forest+Cyaaaanku,311,465,699213622,10098,0 +36612,Wyspa+028,632,373,699756210,8223,0 +36613,1.1,639,394,698241117,10148,0 +36614,Out+of+Touch,322,433,698962117,2900,0 +36615,psycha+sitting,406,665,699736927,9903,0 +36616,Wioska+120,683,528,848971079,9835,0 +36617,%7E+KiZiA+MiZiA+%7E,315,447,698540331,2923,0 +36618,Jehu_Kingdom_65,666,409,8785314,4072,0 +36619,-006-+Chwa%C5%82a+Imperium,616,349,8675636,8901,0 +36620,BRZEG+JORDANU+%7C+004,692,527,9228039,9544,0 +36621,I059,677,454,699722599,9972,0 +36622,Spogl%C4%85dam+w+przysz%C5%82o%C5%9B%C4%87,660,396,8582487,10544,0 +36623,Dream+on,308,500,698962117,9499,0 +36624,Selonari.,460,557,698704189,9711,0 +36625,OFF,694,527,1563417,10311,0 +36626,%5B010%5D,477,313,849099160,10101,0 +36627,Wioska+barbarzy%C5%84ska,580,335,699710633,4151,0 +36628,2.Tazones,567,675,698215322,10068,0 +36629,X+%7C+Forest+Cyaaaanku,319,471,1536625,9976,0 +36630,046,449,685,849099876,10495,0 +36631,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,642,1434753,9473,0 +36632,Ob+Konfederacja,428,322,848915730,10178,4 +36634,Wioska+barbarzy%C5%84ska,530,314,1990750,10252,0 +36635,tutaj,458,683,698585370,9081,0 +36636,New+World,471,687,698152377,7135,0 +36637,_PUSTA,659,591,698768565,10064,0 +36638,psycha+sitting,421,672,699736927,10311,0 +36639,Szlachcic,384,348,3484132,9354,0 +36640,Kiedy%C5%9B+Wielki+Wojownik,597,344,8632462,4905,0 +36641,18.+Los+Santos,557,326,699072129,9816,0 +36642,North+Barba+054,413,331,699796330,6491,0 +36643,%7E038.,497,616,7139820,10495,0 +36644,SOKzGUMIjag%C3%B3d,642,378,849059491,10452,0 +36645,034+invidia,527,687,849093426,10237,0 +36646,A050,617,651,9023703,7806,0 +36647,Aakirkeby,328,575,849098387,7010,6 +36648,Wioska+donkretos,690,516,8096537,9308,0 +36649,Wioska+barbarzy%C5%84ska,366,370,849027025,5226,0 +36650,Wrzoski+13+Ulica,681,555,848932879,7007,0 +36651,-+190+-+SS,534,683,849018239,9443,0 +36652,the+Amityville+001,660,602,758104,7001,0 +36653,0014,682,461,699574408,10202,0 +36654,3.Pochinki,413,333,849098648,8745,0 +36655,A059,607,652,9023703,10220,0 +36656,Wioska+barbarzy%C5%84ska,518,688,745946,6929,0 +36657,xxx,313,540,698388578,9994,0 +36658,Wioska+barbarzy%C5%84ska,496,684,699781762,10029,0 +36659,X+%7C+Forest+Cyaaaanku,313,466,699213622,10000,0 +36660,062,685,529,2135129,7737,0 +36662,Wioska+barbarzy%C5%84ska,558,323,570100,2204,0 +36663,Wyspa_02,508,688,2585846,9638,0 +36664,%23020.+Resident+Slepper,455,678,848896948,6832,0 +36665,071+barbarzy%C5%84ska,665,414,9238175,5665,0 +36666,Muchomor+%2A027%2A,522,685,606407,9287,0 +36667,Wioska+barbarzy%C5%84ska,522,315,698350371,7823,0 +36669,Wioska+barbarzy%C5%84ska,557,324,570100,2823,0 +36670,-Sioux+city,649,387,8096537,6435,0 +36671,05.+Alan,682,483,699804790,9362,0 +36673,%2A153%2A,342,399,699273451,8669,0 +36674,PUSTA,673,572,3739202,4809,0 +36675,Szlachcic,376,358,698160606,10346,0 +36676,%23014+-+Wioska,495,526,848967710,9342,0 +36677,%23063%23,639,630,692803,9761,0 +36678,......,518,687,745946,7523,0 +36679,Obora+Augiasza,583,671,699567608,8252,6 +36680,Wioska+barbarzy%C5%84ska,602,342,699098531,3534,0 +36681,030Wioska+barbarzy%C5%84ska,679,445,849098769,6538,0 +36682,0419,567,676,698659980,10019,0 +36683,Piek%C5%82o+to+inni,609,345,848956765,10160,0 +36684,004,309,507,698356304,5109,0 +36685,054.Stradi,447,323,698365960,10495,0 +36686,Wioska+barbarzy%C5%84ska,685,544,6929240,4111,0 +36687,065...+Wioska+RandomHero,438,328,6920960,10484,0 +36688,--08--,343,606,8877156,10221,0 +36689,0044,572,322,699485250,4911,0 +36690,Wenecja,687,486,2392791,6273,0 +36692,%23008.+Crew,450,683,848896948,8710,0 +36693,%2136+74+Zvoristea,644,377,698361257,10224,0 +36694,C0017,312,518,8841266,10252,0 +36695,164...Kalichore,455,354,6920960,10130,0 +36696,0400,562,680,698659980,9008,0 +36697,%230129+korniczeks,479,317,1238300,10178,0 +36698,Winterhome.071,490,308,848918380,10178,0 +36699,A5.,314,547,849095482,4088,0 +36700,D04,676,559,848995478,11417,0 +36702,K35+-+%5B023%5D+Before+Land,580,328,699088769,9783,0 +36703,001+szkolna+17,528,316,849099054,10083,0 +36704,%5B016%5D+Cienka+br%C4%85zowa+linia,674,437,849095068,9312,0 +36705,I084,684,450,699722599,8489,0 +36706,Wioska+4,331,427,699821755,6205,0 +36707,013+Stategiczna+wioska,490,634,699336777,9825,0 +36708,K35+-+%5B004%5D+Before+Land,577,326,699088769,9847,0 +36709,Nirvos,682,473,699574408,9515,0 +36710,%2A3604%2A+Bell,663,399,7973893,10287,0 +36711,W%C5%82adcy+P%C3%B3%C5%82nocy+06,690,496,699379895,7231,0 +36712,SSJ+016,487,638,6180190,8836,0 +36713,219,424,324,7271812,3022,0 +36714,Out+of+Touch,325,431,698962117,8752,0 +36715,malo+defa,478,637,6948793,9354,0 +36716,Krapkowice,681,546,848932879,8869,0 +36717,%23098%23,636,633,692803,8769,0 +36718,Wioska+barbarzy%C5%84ska,669,420,8675636,8860,0 +36720,AG20,593,668,699876345,3736,0 +36721,008%7C%7C+Scorpio,484,643,849035525,10019,0 +36722,love,475,311,849099965,3962,0 +36723,Hard3,364,624,699805839,2948,0 +36724,039+invidia,523,688,849093426,9614,0 +36725,%7E%7E061%7E%7E,624,640,7829201,8613,0 +36726,2.Barcelona,573,674,698215322,9978,0 +36727,Ave+Why%21,454,684,698585370,8578,0 +36729,%7E068.,528,688,7139820,7504,0 +36730,Dream+on,310,493,698962117,9505,0 +36731,-+149+-+SS,540,688,849018239,8465,0 +36732,%C5%BBelazny+deff,359,626,699805839,8008,0 +36733,Szulernia,369,370,7249451,8685,0 +36735,z+001031,363,367,3909522,8837,0 +36736,006+Desant,481,689,698620694,9889,0 +36737,A019,608,655,9023703,10237,0 +36738,0000aaaa,480,636,6948793,9976,0 +36739,Ave+Why%21,481,682,699121671,9809,0 +36740,KONFA+TO+MARKA%2C+NARKA,319,461,698152377,10291,7 +36741,North+Barba+053,411,332,699796330,6267,0 +36742,042+Mucharadza,664,417,9238175,10281,0 +36743,Taran+034,639,369,2600387,5896,0 +36744,AG02,591,664,699876345,9747,0 +36745,A2.,315,545,849095482,4821,0 +36746,C20,685,540,848995478,3901,0 +36747,Suppi,329,420,699856962,9551,0 +36748,Borubar+1,682,471,699413581,3453,0 +36749,KR%C3%93L+PAPI+WIELKI,639,629,698191218,10294,0 +36750,Jednak+wol%C4%99+gofry,483,643,699725436,9754,0 +36751,z+001025,357,374,3909522,9313,0 +36752,koczo,591,332,7340529,10654,9 +36754,000+Plutosea,319,558,9280477,7787,0 +36755,044.,486,625,699494488,10216,0 +36756,Marysia,622,353,698420691,7775,0 +36757,%2AINTERTWINED%2A,509,685,698704189,7785,0 +36758,028.+Wioska+barbarzy%C5%84ska,689,469,7494497,9680,0 +36759,Jednak+wol%C4%99+gofry,482,638,699725436,10311,0 +36760,MojeSzczytToTw%C3%B3jDno,517,317,828637,10495,0 +36761,Winterhome.048,496,312,848918380,10178,8 +36762,%2A5611%2Aa+Brzeg+Ameryki,669,580,7973893,10287,0 +36763,007+RIP+magnats,484,686,699745265,10221,1 +36764,A051,616,652,9023703,7041,0 +36765,Berun,417,327,849072873,6597,0 +36766,%2A033%2A,346,395,699273451,10211,0 +36767,A009,475,640,699383279,9806,0 +36768,A021,607,659,9023703,10237,0 +36769,%2A097%2A,360,370,699273451,10211,0 +36770,Praga1,369,359,849099434,9689,0 +36771,Hiszpan3,677,559,7038651,11530,2 +36772,064,679,543,849095227,6352,0 +36773,Groch%C3%B3w1,365,363,849099434,5940,0 +36774,psycha+sitting,406,666,699736927,10135,0 +36775,Out+of+Touch,322,432,698962117,5592,4 +36776,CSA,527,311,1006847,2238,0 +36777,B.14+duchy+serca+puszczy,552,320,849026145,3132,0 +36779,031.+Devil+on+my+shoulder,455,681,698585370,6103,0 +36780,Wioska+barbarzy%C5%84ska,321,564,849099258,4013,0 +36781,074-+Mroczna+Osada,599,336,849035905,6544,0 +36782,START+03+22+19,579,672,698723158,5004,0 +36783,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,438,680,8980651,9353,9 +36784,Suppi,324,421,699856962,9747,0 +36785,Szlachcic,388,345,3484132,10476,0 +36786,Wyspa,384,653,698769107,2657,0 +36787,003.+Wojenna+%C5%9Acie%C5%BCka,561,320,699072129,10237,0 +36788,020%23+Ariana,486,690,3933666,10114,0 +36789,%7C064%7C+Hejhej,491,689,699393742,8144,0 +36790,LD0040+Lucid+Dream,638,627,8096537,9828,0 +36791,Sliz,321,550,699265922,5488,0 +36792,C+018,690,527,8078914,10495,0 +36793,Wioska+5,642,630,1647052,4357,0 +36795,Topornik+2,647,378,7340529,11130,0 +36796,%C5%BBUBR+.%3A%3A.Adaczu%2F05,624,647,33900,3327,0 +36797,011,312,506,7097727,5132,0 +36798,Koszary,577,668,698723158,6383,0 +36800,Osada+koczownik%C3%B3w,602,338,699548295,5402,1 +36801,13+Ciudad+Real,382,650,698837993,1711,0 +36802,Sullivanum+%5B5%5D,341,591,1606425,7677,0 +36803,Wioska+barbarzy%C5%84ska,403,339,699406776,2406,0 +36804,Wioska+barbarzy%C5%84ska,579,675,698215322,7193,0 +36805,0059,644,613,698416970,9483,0 +36806,cos+cos,433,676,8966820,10362,0 +36807,002+Ugernum,559,682,849099558,2940,0 +36808,200,425,331,7271812,10495,0 +36809,J%23003,573,331,2065730,9797,2 +36811,Winterhome.059,488,308,848918380,10178,0 +36812,Wioska+barbarzy%C5%84ska,369,366,849027025,6268,0 +36813,Muchomor+%2A009%2A,517,683,606407,10294,0 +36814,J%23009,571,329,2065730,9797,0 +36815,BAC%C3%93WKA+%7C012%7C,661,406,7394371,12154,6 +36816,Suppi,329,418,699856962,9549,0 +36817,0002+Cytadela,317,442,393668,9750,0 +36818,028,524,316,1990750,10068,0 +36819,Zaczynamy,618,364,6625437,9614,0 +36820,Paris,358,621,699864013,7174,0 +36822,211,422,332,7271812,3876,0 +36823,psycha+sitting,425,669,699736927,9515,0 +36824,Wie%C5%9B+nieopodal,551,324,849098136,7843,0 +36826,Wioska+barbarzy%C5%84ska,563,320,699658023,4388,0 +36827,psycha+sitting,414,666,699736927,10311,0 +36828,Wioska+barbarzy%C5%84ska,579,332,0,3222,0 +36829,Ob+Konfederacja,433,328,848915730,6876,0 +36830,psycha+sitting,410,670,699736927,10067,0 +36831,Babolewo+3.0,592,339,849098791,5561,0 +36832,%24LAClippers,683,516,699795378,6402,0 +36833,Wioska+barbarzy%C5%84ska,484,364,699658023,8067,0 +36834,006+RubinGraffitiKrk,310,507,926823,10495,0 +36836,AGA1,684,503,699598425,10728,0 +36837,B1.,313,548,849095482,4013,0 +36838,.28.+Kannas+e,353,624,272173,6359,0 +36839,Wioska+barbarzy%C5%84ska,526,314,698350371,7285,0 +36840,A026,602,661,9023703,10237,0 +36841,C0111,310,530,8841266,10362,0 +36842,Wsiora+MCX,537,312,849044705,10636,0 +36843,TWIERDZA+.%3A019%3A.,679,571,7154207,10225,0 +36844,%7C068%7C+BlackBird+3,495,691,699393742,9962,0 +36845,SOKzGUMIjag%C3%B3d,648,380,849059491,10157,0 +36846,072-+Mroczna+Osada,598,336,849035905,7411,0 +36847,Pastwiska,574,671,698723158,5616,0 +36849,040.+Wioska+barbarzy%C5%84ska,686,473,7494497,10370,0 +36850,112+And+another+one,332,576,699382126,10217,0 +36851,006,532,310,849099054,4437,0 +36852,%7E%7E067%7E%7E,629,642,7829201,6239,0 +36853,KONFA+TO+MARKA%2C+NARKA,313,458,698152377,10292,0 +36854,A046,610,647,9023703,7793,0 +36855,005,309,508,698356304,4819,0 +36856,Jaaa,668,494,698635863,9749,0 +36857,Out+of+Touch,321,439,698962117,6781,0 +36858,Wioska+Zorro+009,667,595,849080702,11130,0 +36859,004+Ilia+Feon,664,599,8337151,10083,0 +36860,059,333,587,7183372,10008,0 +36862,%3D%7C35%7C%3D,643,380,9101574,9354,0 +36863,.01.Osgiliath+e,352,622,272173,8968,0 +36864,0278,549,678,698659980,7929,0 +36866,New+World,443,675,698152377,10291,0 +36867,Wioska+Bochun10,331,483,7449254,5916,0 +36868,Wioska+barbarzy%C5%84ska+2,325,581,3475079,4761,0 +36869,044+Blaviken,465,681,699834004,9688,0 +36870,%5B004%5D,470,312,849099160,11417,0 +36871,%28002%29Azimir,329,570,849098695,10375,2 +36872,Metropolia+20RivaL00,584,669,699567608,9754,0 +36873,Kamieniec+Podolski,570,326,849108784,3637,0 +36874,z+Wioska+barbarzy%C5%84ska+12,356,380,3909522,7743,0 +36875,SOKzGUMIjag%C3%B3d,599,340,849059491,7804,0 +36876,Muchomor+%2A003%2A,519,689,606407,10294,0 +36877,Orze%C5%82+12,690,493,699413581,8326,0 +36878,C08,687,536,848995478,5758,0 +36879,UltraInstynkt%2B,605,341,699710633,9608,0 +36880,1010,620,357,699150527,7506,0 +36881,New+World,440,675,698152377,10295,0 +36882,%3D%7C01%7C%3D,643,385,9101574,10495,0 +36883,Szlachcic,397,347,698160606,10543,0 +36884,034,686,466,7588382,5827,0 +36885,_PUSTA,658,595,698768565,10452,0 +36886,030,544,680,2293376,9120,0 +36887,112.+Wyspy+Barierowe,644,621,8337151,7705,0 +36888,%2A006%2A,317,532,8630972,10559,0 +36889,%28012%29Alethkar,320,562,849098695,10184,0 +36890,Wyspa_10,505,689,2585846,9638,0 +36891,Taran,341,604,6180190,10159,3 +36892,Tu+jest+przysz%C5%82o%C5%9B%C4%87,655,394,699491076,6984,0 +36893,I069,687,460,699722599,9402,0 +36894,KONFA+TO+MARKA%2C+NARKA,317,459,698152377,10290,0 +36895,KR%C3%93L+PAPI+WIELKI,651,619,698191218,10103,0 +36896,Wioska+barbarzy%C5%84ska,636,365,7555180,4297,0 +36897,061.+Ninora,664,594,8337151,10362,0 +36898,005+chata+Gumowego+Adasia,531,310,849099054,4275,0 +36899,Wioska+barbarzy%C5%84ska,601,337,1990750,4959,0 +36900,%2A200%2A,363,375,699273451,6278,0 +36901,011+Wioska,626,456,699671454,6889,0 +36902,Dream+on,309,502,698962117,9499,0 +36904,.achim.,490,313,6936607,10859,0 +36905,C0174,318,538,8841266,10252,0 +36906,Po%C5%82udnie.014,551,680,873575,10300,0 +36907,C008,598,665,9023703,10002,0 +36908,%2A023%2A,351,385,699273451,10211,0 +36909,By%C5%82e%C5%9B+w+porz%C4%85dku+002,373,644,699269923,10145,0 +36910,Lord+Lord+Franek+.%23094,519,310,698420691,9976,0 +36911,%2A020%2A,347,387,699273451,10211,0 +36912,Parole,337,408,699595556,5392,0 +36914,KONFA+TO+MARKA%2C+NARKA,318,452,698152377,10292,0 +36915,Osada+koczownik%C3%B3w+x,651,606,1900364,9744,7 +36916,Ob+Konfederacja,434,325,848915730,8448,0 +36917,Highlander,680,551,848932879,6256,0 +36918,BBB,574,426,1006847,9228,0 +36919,fff,480,311,698239813,9674,0 +36921,Taran+037,641,376,699098531,10971,0 +36922,0005+Krasnodar,474,688,699656989,10047,0 +36923,D06,677,553,848995478,11130,2 +36924,%2A186%2A,343,405,699273451,10211,0 +36925,K%C4%99ty,540,314,7139853,8547,0 +36926,z+001032,355,374,3909522,7707,0 +36927,Wioska+barbarzy%C5%84ska,445,683,848896948,2244,0 +36929,C05,686,535,848995478,11321,0 +36930,krytl21,511,316,1990750,6606,0 +36931,D001,610,656,9023703,9902,0 +36932,Wioska+V,675,581,849099955,2824,0 +36933,EO+EO,312,516,699697558,10495,0 +36934,cz+110+6,371,385,3909522,6975,0 +36935,C0045,312,523,8841266,10252,0 +36936,-010-,326,570,849012521,10016,3 +36937,Szlachcic,382,355,698160606,10300,0 +36938,Out+of+Touch,322,438,698962117,4803,0 +36939,013,687,456,699150527,9835,0 +36940,Wioska+barbarzy%C5%84ska,579,333,0,3624,0 +36941,001.+Wehrmacht,339,399,698807570,10887,0 +36942,Wioska+barbarzy%C5%84ska,329,417,699856962,7181,0 +36943,Winterhome.027,502,309,848918380,10178,0 +36944,008,309,480,2418364,5853,0 +36945,FP003,490,691,699605333,10393,0 +36947,Szlachcic,395,345,3484132,10155,0 +36948,Wioska+barbarzy%C5%84ska,334,415,2418002,3637,0 +36949,X+%7C+Forest+Cyaaaanku,319,465,699213622,10000,0 +36950,Wonderwall,324,556,698962117,5113,0 +36951,Wioska,608,340,699548295,5523,0 +36952,C003,595,661,9023703,7879,0 +36953,.06.+Lindon+b,364,629,699342219,10378,0 +36954,Muchomor+%2A002%2A,517,689,606407,10098,0 +36955,Wioska+barbarzy%C5%84ska,371,362,849027025,6653,0 +36956,D.034,393,651,849088243,10217,0 +36957,C0021,309,510,8841266,10252,0 +36958,Wioska+barbarzy%C5%84ska,682,464,699574408,10084,0 +36959,Wioska+barbarzy%C5%84ska,396,395,8419570,10168,0 +36960,C0153,317,534,8841266,10354,0 +36961,Dworek+Drzewiarza,650,610,8224678,10692,0 +36962,Wioska+barbarzy%C5%84ska,669,409,699738350,6745,0 +36964,X+%7C+Forest+Cyaaaanku,314,464,699213622,10000,0 +36965,Brat447,312,536,699262350,10495,0 +36966,087.+Lond,647,620,8337151,5757,0 +36967,Winterhome.003,510,311,848918380,10178,0 +36968,%2A%2AINTERTWINED%2A,510,687,698704189,9711,0 +36969,%7C047%7C+Eldorado,506,690,2585846,9912,0 +36970,New+World,431,680,698152377,5936,0 +36971,Wioska+barbarzy%C5%84ska,347,605,7183372,7927,0 +36972,psycha+sitting,410,666,699736927,9701,0 +36973,UltraInstynkt,607,346,699710633,10178,0 +36974,009.+Night+Raid%2A,430,673,699684062,10160,8 +36976,Hofek+28,592,332,699433558,3139,0 +36977,C0112,314,530,8841266,10252,0 +36978,Wioska+barbarzy%C5%84ska,562,678,7756002,9965,0 +36979,Wioska+003,666,410,849098769,10444,0 +36980,Winterhome.050,493,310,848918380,10178,0 +36981,KR%C3%93L+PAPI+WIELKI,647,613,698191218,10490,2 +36982,KR%C3%93L+PAPI+WIELKI,648,623,698191218,10121,0 +36983,Darma+dla+zawodnika,524,684,699494488,7586,0 +36984,Wioska+3,310,489,849075836,9407,0 +36985,EO+EO,311,521,699697558,10083,0 +36986,a+mo%C5%BCe+off+%3F+%3A%29,639,626,698768565,9355,0 +36987,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,523,655,699828442,9988,0 +36988,%3F%3F%3F,480,310,698489071,9734,0 +36989,0124,377,642,7085510,10216,5 +36990,TFU+WD,681,556,848915032,7357,0 +36992,008.+New+place+-+new+friends,601,339,699098531,8295,0 +36994,%23007.+King+of+the+Hill,451,680,848896948,9458,0 +36995,%5B047%5D+Wioska+barbarzy%C5%84ska,674,421,849095068,8127,0 +36996,OFF,687,521,1563417,8535,0 +36997,D.010,393,657,849088243,9304,0 +36998,Muchomor+%2A025%2A,522,689,606407,8757,0 +36999,049.,331,587,7183372,1924,0 +37000,%5B033%5D+Wioska+barbarzy%C5%84ska,673,420,849095068,9288,0 +37001,%2A105%2A,359,378,699273451,10211,4 +37002,KR%C3%93L+PAPI+WIELKI,568,578,698191218,9949,0 +37003,%5B010%5D+GunWO,676,438,849095068,10187,0 +37004,Wioska+5,314,487,849075836,8511,0 +37005,Kocpo%C5%82uch+5,327,573,848949597,2742,0 +37006,Wioska+barbarzy%C5%84ska,575,332,7560474,4155,0 +37007,kamilkaze135+%2303,656,389,699705601,8664,0 +37008,KONFA+TO+MARKA%2C+NARKA,312,458,698152377,10290,0 +37009,Wioska+barbarzy%C5%84ska,578,675,698215322,6167,0 +37010,001,347,604,7183372,10341,0 +37011,%23058%23,631,639,692803,9761,0 +37012,-+198+-+SS,539,682,849018239,8228,0 +37013,BAC%C3%93WKA+%7C041%7C,668,411,7394371,4244,0 +37014,I105,680,442,699722599,7089,0 +37016,0031+MzM,627,597,698416970,9258,0 +37017,%2136+74+Plopeni,643,370,698361257,7385,0 +37018,z+181-A002qqqqqqqqqqqqqqq,353,377,3909522,10108,9 +37019,Taran,342,608,6180190,10294,0 +37020,Zeta+Reticuli+O,415,328,699323302,10997,0 +37021,Wioska+barbarzy%C5%84ska,501,339,698739350,4721,0 +37022,004+Dom+Mexicano,527,315,849099054,10083,0 +37023,Wioska+barbarzy%C5%84ska,405,333,699406776,3939,0 +37024,0091,615,345,848913037,9993,0 +37025,041.Stradi,447,320,698365960,10495,0 +37026,Suppi,328,414,699856962,9549,1 +37027,AAA,546,312,1006847,9003,0 +37028,0041,570,322,699485250,6405,2 +37029,Postawie,631,598,8337151,6699,0 +37030,psycha+sitting,419,669,699736927,10311,0 +37031,Szlachcic,397,341,3484132,10083,0 +37032,Ob+Konfederacja,430,324,848915730,8461,0 +37033,Pd+03,362,631,272173,7934,0 +37034,Szale,458,680,698585370,9555,0 +37035,073+Nagoja,678,452,7092442,7774,6 +37036,psycha+sitting,406,664,699736927,10311,0 +37037,180...Segador+M,439,326,6920960,8215,0 +37038,Winterhome.064,511,312,848918380,10070,0 +37039,Dolina+Czarownic,651,391,7973893,7084,0 +37041,%2A5612%2Abb+Instytucja,667,581,7973893,10287,0 +37042,%C5%9Aniadowo,687,480,849100082,9443,0 +37043,086.+Rahgar,646,625,8337151,12154,0 +37044,EMERYTOWANY+KUZYN,430,642,848913998,9976,0 +37045,008+Desant,482,690,698620694,9248,0 +37046,%239+Dzikowo,630,591,8000875,4901,0 +37047,EO+EO,313,516,699697558,10252,0 +37048,A+093,371,640,6948793,9187,0 +37049,Eberland,652,607,1900364,9282,0 +37050,Komornicy+022,349,611,699336777,9825,0 +37051,psycha+sitting,408,664,699736927,10009,0 +37052,Wioska+barbarzy%C5%84ska,431,328,699191455,8486,0 +37053,Wioska+Vl,321,572,699671197,11456,0 +37054,Horyzont+zdarze%C5%84,515,541,7581876,10019,0 +37055,Wioska+barbarzy%C5%84ska,660,606,1900364,2978,0 +37056,B069,470,473,699299123,10495,0 +37057,_PUSTA%2B,682,544,699628084,10495,0 +37058,TWIERDZA+.%3A069%3A.,679,567,7154207,8984,0 +37059,003+Casterly+Rock,315,492,699823490,7733,0 +37060,Wioska+barbarzy%C5%84ska,654,388,7973893,8914,0 +37061,%5B055%5D+Wioska+barbarzy%C5%84ska,672,428,849095068,4471,0 +37062,Grvvyq+103k%24,683,533,699676005,10495,0 +37063,004.+Owczarnia,318,447,849098966,6479,0 +37064,2.Mostoles,579,676,698215322,11411,0 +37065,%5B023%5D+Wioska+Kreynoss,461,689,9094538,2381,0 +37066,Winterhome.011,509,310,848918380,10178,0 +37067,B%23018,677,430,2065730,9797,0 +37068,New+Land+10,343,389,849064752,3864,0 +37069,003.,566,326,849101311,4075,0 +37070,XDX,604,355,699098531,10971,0 +37071,Wioska+barbarzy%C5%84ska,316,463,699823490,3651,0 +37072,Makowiec,674,574,7973893,7544,0 +37073,%7E%7E078%7E%7E,610,648,7829201,7981,0 +37074,02.+SOSna,686,483,699804790,10237,0 +37077,049.+Wioska+barbarzy%C5%84ska,689,467,7494497,9794,0 +37078,075.Stradi,449,322,698365960,9517,0 +37079,SOKzGUMIjag%C3%B3d,601,342,849059491,7489,0 +37080,nowa+3,463,314,849104546,5517,0 +37082,Wioska+barbarzy%C5%84ska,337,594,7183372,10068,0 +37083,Lord+Arsey+KING,572,592,848956513,10285,0 +37084,I060,679,454,699722599,9625,0 +37085,A+058,359,636,698908184,8966,0 +37086,%2A5612%2Aaa+Bez+ko%C5%84ca,669,578,7973893,10287,0 +37087,Wioska+barbarzy%C5%84ska,595,339,1990750,8981,0 +37088,Wioska+barbarzy%C5%84ska,536,313,849044705,6471,0 +37089,Wioska+barbarzy%C5%84ska,335,583,849046232,9299,0 +37090,003,672,574,699493750,5427,0 +37091,.26.+Tithilon+d,362,624,272173,5915,0 +37092,Wioska+barbarzy%C5%84ska,657,607,1900364,5179,0 +37093,KONFA+TO+MARKA%2C+NARKA,315,459,698152377,10292,0 +37094,Monetki,474,426,699098531,10291,0 +37095,0003,425,323,2321390,4105,0 +37096,psycha+sitting,415,668,699736927,4831,0 +37097,Goirle,621,354,9103424,5561,0 +37098,015.+Do+%C5%9Bwi%C4%85t+si%C4%99+wyrobisz+%3F,355,438,698630507,4789,0 +37099,C0018,311,518,8841266,10252,0 +37101,Pot%C4%99%C5%BCny+Gaj,582,673,698723158,4447,0 +37102,Gryfios+022,684,556,698666810,11880,0 +37104,-+152+-+SS,542,684,849018239,9575,0 +37105,New+Land+11,342,400,849064752,3693,0 +37106,096+Tomek,684,508,2135129,3837,0 +37107,0.18+Wioska+honoru,463,683,699827112,9316,0 +37108,Ob+Konfederacja,429,323,848915730,9717,0 +37109,Pallad,681,438,8459255,10495,0 +37110,016,613,350,698290577,7049,0 +37111,Wioska+Mergio,400,338,698749311,1489,0 +37112,Out+of+Touch,324,430,698962117,9486,0 +37113,Winterhome.009,501,311,848918380,10178,2 +37114,069+%7C+PALESTINA,672,427,9228039,9091,0 +37115,TWIERDZA+.%3A088%3A.,680,567,7154207,7706,0 +37116,Ob+Konfederacja,432,325,848915730,8828,0 +37117,Somsiory,662,400,699491076,7725,0 +37118,Orze%C5%82+3,691,485,699413581,9976,0 +37119,AAA,542,314,1006847,9956,0 +37120,--09--,340,606,8877156,10223,0 +37121,-07-,563,683,7860453,5469,0 +37122,043.+Canes+Venatici,614,655,699703642,7966,0 +37123,Co+ja+robi%C4%99+tutaj,668,405,699785935,6838,0 +37124,Wioska+barbarzy%C5%84ska,313,476,6258092,8533,0 +37125,C0113,313,529,8841266,10252,0 +37126,014,686,449,699150527,9835,0 +37127,A027,602,660,9023703,10237,0 +37128,EO+EO,313,515,699697558,10083,0 +37129,Sony+911,622,642,1415009,10211,0 +37130,WB19,332,406,356642,5961,0 +37131,%23072%23,637,628,692803,9761,0 +37132,%3D%7C12%7C%3D,648,391,9101574,9566,0 +37133,Wioska+Boliston,672,415,699738350,8976,0 +37134,Wyspa,383,653,698769107,2636,0 +37135,Devano1,335,592,7183372,10728,0 +37136,Wioska+barbarzy%C5%84ska,372,362,849027025,6921,0 +37137,X+%7C+Forest+Cyaaaanku,316,465,699213622,10000,0 +37138,A+094,371,637,6948793,10141,0 +37139,.%3A011%3A.,359,628,272173,8627,6 +37140,A023,605,661,9023703,10908,0 +37141,Wioska+barbarzy%C5%84ska,669,416,8675636,9037,0 +37142,002.+Wehrmacht,340,400,698807570,10436,0 +37143,%3D%7C11%7C%3D,647,387,9101574,8245,0 +37145,266...EMERSON,462,311,6920960,6214,0 +37147,130,391,651,699269923,10207,0 +37148,-+164+-+SS,537,688,849018239,10000,0 +37149,%2A011%2A,353,387,699273451,10211,0 +37150,KONFA+TO+MARKA%2C+NARKA,314,458,698152377,10290,0 +37151,Dream+on,309,497,698962117,9479,1 +37152,Out+of+Touch,323,425,698962117,9742,0 +37153,C0104,320,522,8841266,10252,0 +37154,-07-,333,498,765188,8506,0 +37155,%2AINTERTWINED%2A,506,687,698704189,9711,0 +37156,Out+of+Touch,322,427,698962117,8494,0 +37157,073+komornicy,323,559,699510259,5392,0 +37159,230,413,330,7271812,2197,0 +37160,O0019,498,685,699781762,10057,0 +37161,UltraInstynkt%2B,586,328,699710633,10311,0 +37162,Szale,459,687,698585370,8066,0 +37163,W%C5%82adcy+P%C3%B3%C5%82nocy+08,689,524,699379895,6509,0 +37164,Wioska+barbarzy%C5%84ska,687,539,6510480,7472,0 +37166,--03--,342,602,8877156,10217,0 +37167,-+150+-+SS,541,687,849018239,9763,0 +37168,Wioska+barbarzy%C5%84ska,692,477,699429153,9825,0 +37169,KONFA+TO+MARKA%2C+NARKA,318,454,698152377,10295,0 +37170,-+182+-+SS,534,687,849018239,8016,0 +37171,%28010%29Kurth,326,563,849098695,7219,0 +37172,Vanaheim+V,595,336,699478692,1825,0 +37173,%24Sochan,686,505,699795378,9382,0 +37174,Szlachcic,398,341,3484132,9445,0 +37176,B%23016,683,449,2065730,9797,0 +37177,Ob+Konfederacja,432,323,848915730,9976,0 +37178,0.16+Jolo,464,687,699827112,9740,0 +37179,0004+Cytadela,318,441,393668,9902,0 +37180,Wioska+Bochun10,316,483,7449254,7530,0 +37181,%2AINTERTWINED%2A,503,686,698704189,9711,0 +37182,I063,685,463,699722599,10098,0 +37183,Kreskowo_2,594,661,699567608,9904,0 +37184,Wioska+Halny,453,682,698757487,2340,0 +37185,KONFA+TO+MARKA%2C+NARKA,320,455,698152377,10292,0 +37186,Wioska+barbarzy%C5%84ska,410,662,699736927,3550,0 +37188,Wioska+Jarl+P%C4%99kniny,661,400,8582487,6201,0 +37189,Village+A,667,403,1086351,2638,0 +37190,0089,611,344,848913037,6405,0 +37191,0430,564,678,698659980,10019,0 +37192,%28026%29Yezier,328,577,849098695,10146,0 +37193,.%3A088%3A.+%C5%81OBUZIK,553,359,848934935,5925,0 +37194,A033,600,656,9023703,8996,0 +37197,Wioska+barbarzy%C5%84ska,521,309,698350371,7297,0 +37198,Wioska+Abo+co,376,397,848886056,5860,0 +37200,064.Stradi,450,320,698365960,10070,0 +37202,C0114,314,528,8841266,10252,0 +37203,Wioska+Rychu0890,574,582,33900,10559,0 +37204,0.12+Night%21,467,689,699827112,9744,0 +37205,Wioska+barbarzy%C5%84ska,356,545,9253494,1920,0 +37206,%230308+deleted,478,312,1238300,2411,0 +37208,J%23005,572,330,2065730,9797,0 +37209,007.+%C5%82,326,582,698704189,3803,0 +37210,Didi,669,584,849070946,10476,4 +37211,Zatonie,353,617,699864013,5549,0 +37212,Wioska+barbarzy%C5%84ska,687,525,699379895,5548,0 +37213,Wioska+2,578,327,7563943,4108,0 +37214,Gattacka,679,435,699298370,9785,0 +37215,Out+of+Touch,320,431,698962117,3292,0 +37216,Wyspa_04,507,690,2585846,9638,0 +37217,%2A175%2A,336,410,699273451,10211,0 +37218,B11+jaki+zn%C3%B3w+honor%3F,460,685,698652014,9699,0 +37219,%2A069%2A,350,383,699273451,10211,0 +37220,2.Ibiza,573,675,698215322,6850,0 +37221,Wioska+076,667,597,848971079,9761,0 +37222,AAA,526,315,1006847,6160,0 +37223,%7E053.,516,618,7139820,10495,0 +37224,%230216+Segadorr+dar,457,312,1238300,10178,0 +37226,C0028,310,522,8841266,10252,0 +37228,krecik+03+e,347,618,272173,2224,0 +37229,%230210+Segadorr+dar,455,312,1238300,10178,0 +37230,Jedlanka+Nowa,577,671,698723158,5876,0 +37231,007.,639,375,699098531,10439,0 +37232,Komornicy+018,348,620,699336777,3098,0 +37233,%2A113%2A,358,370,699273451,10211,0 +37234,06+Puerto+Lapice,381,652,699269923,6888,0 +37235,%23180%23,648,617,692803,7260,0 +37236,%C5%BBUBR+.%3A%3A.Adaczu%2F06,618,652,33900,3695,0 +37237,%5B001%5D,472,312,849099160,11581,0 +37238,Szymon9408,397,656,699269923,8114,0 +37239,McGregor,606,343,699548295,6470,0 +37240,069+donkretos1,690,514,2135129,9304,0 +37241,C115,368,630,699383279,8214,0 +37242,036+invidia,526,691,849093426,10237,0 +37243,Didek,670,572,849070946,6992,0 +37244,Lord+Nc3dyh+3,323,441,699509284,2437,0 +37245,Wyspa+026,637,373,699756210,6050,0 +37246,SOKzGUMIjag%C3%B3d,597,342,849059491,9932,0 +37247,Wioska+barbarzy%C5%84ska,528,309,849044705,6826,0 +37248,-+237+-+RR,588,617,849018239,10000,0 +37249,Wioska+1,575,327,7563943,2605,0 +37250,-+201+-+SS,538,681,849018239,8483,0 +37251,A+086,373,636,699269923,8577,0 +37252,%230206+Segadorr+dar,460,315,1238300,5684,0 +37253,Wioska+barbarzy%C5%84ska,325,426,699856962,7673,0 +37254,002+Pi%C5%82sudskiego+138,682,449,849098769,10495,0 +37255,031+RAW,589,451,698829590,9483,0 +37256,04.+Wioska+Raukodel,649,376,7340529,11130,0 +37257,Szlachcic,693,512,8096537,9355,0 +37258,%230208+Segadorr+dar,458,312,1238300,8066,0 +37259,Wioska+8,645,625,1647052,7339,0 +37260,Wioska+Bochun10,312,490,7449254,10311,0 +37262,Wioska+Zdobyta,591,334,849063793,3287,0 +37264,Neapol,686,489,2392791,12154,0 +37266,AAA,546,316,1006847,3488,0 +37267,J%23010,572,329,2065730,9797,0 +37268,Klaudek14,631,364,849092309,5741,0 +37269,0353,444,605,698659980,10160,0 +37270,Wioska+Bochun10,313,490,7449254,10311,0 +37271,0606,488,688,698659980,10019,0 +37273,%2AINTERTWINED%2A,502,685,698704189,9711,0 +37274,Twierdza+2,512,307,699208929,10003,0 +37275,Wioska+barbarzy%C5%84ska,621,641,1415009,8446,0 +37276,Wioska+barbarzy%C5%84ska,371,365,849027025,5089,0 +37277,Winterhome.024,501,308,848918380,10178,0 +37278,060.,323,579,698704189,3796,0 +37279,Pd+04,360,632,698908184,4683,0 +37281,056+BanaN,688,529,2135129,9191,0 +37282,Wioska,644,604,699797508,8119,0 +37283,2.Huelva,560,675,698215322,5791,0 +37284,Wioska+071,662,600,848971079,9902,0 +37285,Wioska+barbarzy%C5%84ska,341,389,698807570,10052,0 +37286,Zbrodniczy+Re%C5%BCim,654,606,1900364,11073,0 +37287,038,530,683,2293376,7286,0 +37288,079,465,313,2502956,10019,0 +37289,04+Smoczy+Dw%C3%B3r,461,310,699393759,11824,0 +37292,Klaudek16,633,366,849092309,5138,0 +37293,%5B009%5D+Kupa+zabawy%21,674,423,849095068,10237,2 +37294,wysypisko+%C5%9Bmieci,322,558,699364813,3556,0 +37295,C09,691,531,848995478,4145,0 +37296,D013,613,656,9023703,7544,0 +37297,060.+Nied%C5%BAwiedzi+Z%C4%85b,666,591,8337151,10160,0 +37298,%C5%BBUBR+.%3A%3A.Adaczu%2F07,617,648,33900,6440,0 +37300,nie+tym+razem+M%C5%82ody...,330,584,7183372,6183,0 +37301,043.+Wioska+barbarzy%C5%84ska,686,472,7494497,10221,0 +37302,%7B52%7D+%C5%81ugi,383,643,849096945,1643,0 +37303,03+Campo,382,652,699269923,9418,0 +37304,%5B064%5D+Wioska+barbarzy%C5%84ska,673,417,849095068,8836,0 +37305,C0115,313,530,8841266,10362,0 +37306,%5B0063%5D,443,315,8630972,10495,0 +37307,Wioska+barbarzy%C5%84ska,682,559,7038651,4904,0 +37308,XDX,618,349,699098531,8309,0 +37309,Wioska+barbarzy%C5%84ska,475,692,8966820,6529,0 +37310,Out+of+Touch,326,429,698962117,9744,0 +37311,K34+-+%5B094%5D+Before+Land,448,355,699088769,10259,0 +37312,Out+of+Touch,318,434,698962117,9527,0 +37313,B.05+duchy+serca+puszczy,555,318,849026145,4532,0 +37314,D.033,379,649,849088243,4423,0 +37315,Wioska+Flydy,683,448,849098769,8147,0 +37316,WSP,682,554,848932879,6662,0 +37317,%2A5611%2Af+Mordor,673,583,7973893,10287,0 +37318,a+mo%C5%BCe+off+%3F+%3A%29,669,405,698768565,5740,0 +37319,B06,683,540,848995478,3648,0 +37320,075-+Mroczna+Osada,597,336,849035905,8620,0 +37321,%5B035%5D,663,588,698305474,6750,0 +37322,Osada+koczownik%C3%B3w,517,685,699781762,10114,4 +37323,C10,686,537,848995478,3579,0 +37324,%2A101%2A,365,372,699273451,10211,0 +37325,Wioska+barbarzy%C5%84ska,585,329,0,9143,0 +37326,R+033,497,693,699195358,8700,0 +37327,%2A099%2A,365,366,699273451,10211,0 +37328,ADEN,609,350,698588535,10758,0 +37329,Wyspa_06,501,694,2585846,9638,0 +37330,Zanzibar,340,595,7183372,10144,0 +37331,%2A%2A29%2A%2A,678,428,849098782,8974,0 +37332,OFF,644,619,849014413,9604,2 +37333,M181_010,334,433,393668,9902,0 +37334,Ob+Konfederacja,426,322,848915730,9562,0 +37335,049+Chociebu%C5%BC,464,682,699834004,8801,0 +37336,Twierdza+014,315,550,7563185,2387,0 +37337,009,590,447,699722599,10474,0 +37338,Szulernia,370,367,7249451,9646,0 +37339,START+04,579,668,699567608,6416,0 +37340,Mordor5,314,540,698388578,8956,0 +37341,%24SanAntonioSpurs,686,511,699795378,10083,0 +37342,034%23+Sacannah,483,691,3933666,4863,0 +37343,Out+of+Touch,325,434,698962117,9669,0 +37344,Wioska+barbarzy%C5%84ska,690,525,699379895,4386,0 +37345,Kolno,688,472,849100082,7868,0 +37346,z+181-A005,355,377,3909522,8581,0 +37347,Komornicy+002,350,610,699336777,9761,0 +37348,123,471,689,9003698,10373,0 +37349,%3D001%3D+Winterfell,609,552,3781794,10410,0 +37350,Dream+on,310,500,698962117,9484,0 +37351,A+023,365,628,699342219,5580,0 +37352,z+Chocapic,364,367,3909522,8190,0 +37353,emoriar,687,453,699574408,7927,6 +37355,Ob+Konfederacja,425,324,848915730,9723,0 +37356,Memfis,411,662,849089459,8216,0 +37357,Cubryna,310,481,849013126,5199,0 +37358,%2A003%2A,314,538,8630972,10559,0 +37359,C014,595,668,9023703,8719,0 +37360,X+%7C+Forest+Cyaaaanku,315,468,699213622,10000,0 +37361,Vanaheim+I,594,338,699478692,7190,0 +37362,074KK,586,334,849063849,6084,0 +37364,C0309,319,543,8841266,4891,0 +37365,--10--,338,606,8877156,10220,0 +37366,000+Plutosea,315,543,9280477,9976,0 +37367,K35+-+%5B005%5D+Before+Land,575,322,699088769,9783,0 +37368,AAA,548,317,1006847,9893,0 +37369,Napewno+to+nie+jest+off,587,335,848912265,9976,0 +37370,Wioska+barbarzy%C5%84ska,686,545,6929240,4266,0 +37371,Wioska+02,350,385,3372959,3796,0 +37372,Topornik+5,649,378,7340529,10795,0 +37373,%5B0065%5D,440,316,8630972,10495,0 +37374,A+027,365,631,699342219,5201,0 +37375,Pomidorowy+dzem,687,510,699598425,10102,0 +37376,035+-+Nowy+Pocz%C4%85tek...,375,645,699269923,9676,0 +37377,10.+Evil+Demon,498,650,849100262,9751,0 +37378,%2A%2A49%2A%2A,671,421,849098782,7586,0 +37379,%2A161%2A,340,401,699273451,10211,0 +37380,-+184+-+SS,533,686,849018239,8497,0 +37381,AAA,545,317,1006847,6531,0 +37382,013.,639,374,699098531,9430,0 +37383,C001,674,585,8138506,5855,0 +37384,%23010%23,627,635,692803,9761,0 +37385,Wioska+058,651,607,848971079,9761,0 +37386,Wioska+new,591,331,849063793,2802,0 +37387,%2A159%2A,336,409,699273451,10211,0 +37388,A029,600,659,9023703,9381,0 +37389,10.+Plac+Wilsona,486,692,849092769,7114,0 +37390,ADEN,610,349,698588535,6554,0 +37391,%5B040%5D+Wioska+barbarzy%C5%84ska,677,443,849095068,9288,0 +37392,06.wiocha,330,592,7183372,5839,0 +37393,%3D%7C49%7C%3D,651,389,9101574,4638,0 +37394,Middle+K35,598,338,699146580,8635,0 +37395,Dream+on,310,503,698962117,9485,0 +37396,034,335,589,7183372,10495,8 +37397,Wioska+barbarzy%C5%84ska,575,328,9291984,5122,0 +37398,-026-BBB,616,347,8675636,10019,0 +37399,C0046,312,524,8841266,10252,0 +37400,Wioska+078,665,595,848971079,9189,0 +37401,099+invidia,525,692,849093426,7459,0 +37402,C0005,307,519,8841266,10252,0 +37403,HORUS+...,572,675,7756002,10088,7 +37404,Wioska+barbarzy%C5%84ska,561,324,698350371,1703,0 +37405,a+mo%C5%BCe+off+%3F+%3A%29,639,622,698768565,9360,0 +37406,Wioska+barbarzy%C5%84ska,388,655,699269923,9469,0 +37407,I066,686,464,699722599,9959,0 +37408,D.011,393,659,849088243,6197,0 +37409,AGA5,687,498,699598425,9502,0 +37410,A+067,363,637,272173,9791,3 +37411,X+%7C+Forest+Cyaaaanku,314,462,699213622,9718,0 +37412,Wioska+barbarzy%C5%84ska,595,658,699567608,9704,0 +37413,SsSs,395,498,1536625,10141,0 +37414,178...Segadorr,442,321,6920960,10713,0 +37415,Wioska+barbarzy%C5%84ska,312,542,698388578,5479,0 +37416,Wioska+Bonaro,647,376,8760124,4359,0 +37417,Wioska+barbarzy%C5%84ska,339,597,7183372,9971,0 +37418,%5B0075%5D,442,315,8630972,10495,0 +37419,Didus+P,671,575,849070946,7739,0 +37421,New+World,433,677,698152377,10294,0 +37422,-06-,639,365,698361257,10495,5 +37423,Pd+07,361,633,272173,4021,0 +37424,Wioska+5,524,506,699385139,8875,0 +37425,Szale,469,690,698585370,9555,0 +37426,yyy%3F+Lucky+Men,604,339,8963720,6643,0 +37427,Pa%C5%84stfa+Pu%C5%82nocy,584,331,699433558,9821,0 +37428,psycha+sitting,422,674,699736927,4166,0 +37429,%28034%29Bavland,323,565,849098695,9836,0 +37430,Wioska+barbarzy%C5%84ska,324,565,699671197,2863,0 +37431,SOKzGUMIjag%C3%B3d,598,352,849059491,10393,0 +37432,Wioska+barbarzy%C5%84ska,692,501,699429153,9781,0 +37433,000+Plutosea,320,558,9280477,10117,0 +37434,Didus+P,672,576,849070946,6835,0 +37435,Ob+Konfederacja,437,326,848915730,8835,0 +37436,%2A005%2A,315,534,8630972,10559,0 +37437,EO+EO,307,521,699697558,10019,0 +37438,Wioska+barbarzy%C5%84ska,389,657,699269923,7590,0 +37439,007.+Wioska+%C5%81YsY52,326,584,698704189,9711,0 +37440,Wyspa_07,502,694,2585846,9638,0 +37441,Gattacka,681,433,699298370,9717,0 +37442,%2A154%2A,344,400,699273451,7291,0 +37443,Wioska+Lebera,333,597,7183372,10341,0 +37444,Out+of+Touch,322,426,698962117,9741,0 +37445,%230284+Don+Noobas,474,309,1238300,10148,0 +37446,AAA,323,448,8184383,2899,0 +37447,A08,475,668,698652014,9562,0 +37448,Szlachcic,318,533,698388578,8264,0 +37449,ADEN,519,384,698588535,9737,0 +37450,%C5%BBUBR+PSYCHIATRYK+018,621,648,33900,8402,0 +37451,X+%7C+Forest+Cyaaaanku,311,468,699213622,10000,0 +37453,Gattacka,679,432,699298370,9711,0 +37454,ula887,619,357,698420691,7889,0 +37455,%5B003%5D,474,313,849099160,11417,0 +37456,2.Murcja,576,677,698215322,4990,0 +37457,psycha+sitting,401,664,699736927,9170,0 +37458,Taran,340,609,6180190,9965,0 +37459,Wioska+barbarzy%C5%84ska,545,321,699244334,3400,0 +37460,2.Merida,581,678,698215322,11099,0 +37461,2.Toledo,575,673,698215322,4587,0 +37462,X+003,593,330,6384450,8186,0 +37463,New+World,432,674,698152377,10292,0 +37464,035+Barba+12,317,540,926823,2879,0 +37465,2.Bilbao,574,679,698215322,10060,0 +37466,040+Petrovya,663,600,8337151,10845,0 +37467,C0019,314,516,8841266,10252,0 +37468,Wioska+barbarzy%C5%84ska,684,553,698666810,11293,0 +37469,C0140,310,535,8841266,10252,3 +37470,HOOC,399,343,8123790,1277,0 +37471,047.+Reavstone,661,599,8337151,10160,0 +37472,Piek%C5%82o+to+inni,526,426,848956765,9753,0 +37473,%5B035%5D+Wioska+barbarzy%C5%84ska,674,422,849095068,9288,0 +37474,%5B0025%5D+XXX,446,315,8630972,10495,0 +37475,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,656,698807570,10252,0 +37476,Wioska+2,626,357,849056744,5725,0 +37478,xxx,687,550,699316421,7185,0 +37479,08.+Wioska+Raukodel,650,376,7340529,11130,0 +37481,-+137+-+SS,537,689,849018239,10000,0 +37482,Wioska+dekunka2,554,684,699167148,1892,0 +37483,202,423,331,7271812,9073,0 +37484,Wioska+barbarzy%C5%84ska,644,380,7973893,7705,0 +37485,004,468,685,9003698,10373,0 +37486,AAA,534,318,1006847,9033,0 +37487,045-+Mroczna+Osada,653,392,849035905,12154,0 +37488,New+World,438,679,698152377,10295,0 +37489,TARAN,550,683,7860453,9835,0 +37490,0013,364,363,699644448,2660,0 +37491,020+jako%C5%9B+to+b%C4%99dzie,515,691,849093426,10237,0 +37492,TWIERDZA+.%3A032%3A.,680,571,7154207,10370,0 +37493,050,359,518,698641566,8616,0 +37494,A022,607,661,9023703,10217,0 +37495,Wioska+barbarzy%C5%84ska,564,323,699658023,3761,0 +37496,Wioska+barbarzy%C5%84ska,527,310,849044705,7731,0 +37497,z+internacionale+018+ttttttttttt,352,382,3909522,9674,0 +37498,052.+Wioska+barbarzy%C5%84ska,691,467,7494497,9432,0 +37500,027.,331,584,7183372,2123,0 +37502,Winterhome.038,495,310,848918380,10178,0 +37503,....,649,603,1900364,9761,0 +37504,C006,596,665,9023703,8684,0 +37505,B.16+duchy+serca+puszczy,561,317,849026145,3290,0 +37506,-+166+-+SS,546,685,849018239,9832,0 +37507,Wioska+barbarzy%C5%84ska,574,328,9291984,5451,0 +37508,-Akuku-,343,607,7183372,9381,0 +37509,KONFA+TO+MARKA%2C+NARKA,316,449,698152377,10290,9 +37511,Komornicy+003,348,606,699336777,8764,0 +37512,Szlachcic,379,353,698160606,10475,0 +37513,Out+of+Touch,323,428,698962117,9745,5 +37514,Jednak+wol%C4%99+gofry,495,640,699725436,9835,0 +37515,A1.,315,546,849095482,12154,0 +37516,%2A106%2A,359,370,699273451,10168,0 +37517,OFF,662,606,849014413,9588,0 +37518,--11--,345,606,8877156,6785,0 +37519,Out+of+Touch,323,432,698962117,8372,0 +37520,Wioska+barbarzy%C5%84ska001,335,584,849046232,9667,0 +37521,089,450,685,849099876,10495,0 +37522,Skunik,411,336,699854830,3001,0 +37523,Wioska+barbarzy%C5%84ska,519,307,698350371,7909,0 +37525,Winterhome.005,508,312,848918380,10178,0 +37526,-022-,332,584,7183372,10054,6 +37527,034+-+Nowy+Pocz%C4%85tek...,374,646,699269923,9492,0 +37528,%C5%BBelazny+deff,359,624,699805839,8017,0 +37530,z+00101Fajnie,357,371,3909522,10237,0 +37532,Rzeka,320,552,699265922,5670,0 +37533,2.Valencia,571,674,698215322,9934,0 +37534,%23181%23,647,618,692803,9761,0 +37535,New+Land+12,342,390,849064752,3842,0 +37536,081.+Ziemia+Niczyja,648,620,8337151,8160,0 +37537,A+101,369,638,7085510,6503,0 +37538,004+Anor+Londo,518,315,1990750,10068,0 +37539,Ciepiel%C3%B3w,576,670,698723158,10595,0 +37540,Kielce,560,317,7139853,2849,0 +37541,W07,335,415,849096547,9539,0 +37542,Out+of+Touch,323,421,698962117,6282,0 +37543,Wioska+098,643,605,848971079,9761,0 +37544,-+154+-+SS,535,684,849018239,9957,0 +37545,Szlachcic,388,350,3484132,10495,0 +37546,New+Land+14,342,388,849064752,3698,0 +37547,Dark+hell,661,401,1086351,10282,0 +37548,New+World,440,684,698152377,10294,0 +37549,-+165+-+SS,546,683,849018239,9207,0 +37550,012,319,551,849098628,12154,0 +37551,%24ClevelandCavaliers,692,509,699795378,6424,0 +37552,psycha+sitting,407,664,699736927,10311,0 +37553,C.007,691,492,9188016,10002,0 +37554,%5B003%5D+Pruty,673,421,849095068,10495,0 +37555,Inowroc%C5%82aw,666,403,7973893,6486,0 +37556,047+Stumilowy+Las,665,412,9238175,9267,0 +37557,Topornik+6,652,382,7340529,10087,0 +37558,KONFA+TO+MARKA%2C+NARKA,316,452,698152377,10290,0 +37559,psycha+sitting,418,673,699736927,10178,0 +37560,Rubiez6,306,486,699265922,9814,0 +37561,Czysta+%3B-%29,383,349,698160606,8495,0 +37562,Taran,679,481,699598425,10728,0 +37563,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,646,699269923,4915,0 +37565,Wioska+barbarzy%C5%84ska,337,596,7183372,10184,0 +37566,Pd+08,360,634,698908184,9873,9 +37567,New+World,433,673,698152377,10291,0 +37568,014.+za+oknami+noc,686,474,7494497,9858,0 +37569,068.+Beirland,662,592,8337151,8841,0 +37570,Wioska+barbarzy%C5%84ska,367,364,849027025,6491,0 +37571,A028,601,660,9023703,10237,0 +37572,xxxxxxxxxxx,549,680,873575,10297,0 +37573,Out+of+Touch,323,424,698962117,9505,0 +37574,z+181-A006,356,377,3909522,8636,0 +37575,%5B0138%5D,453,313,8630972,9588,0 +37576,Sullivanum+%5B4%5D,337,588,1606425,10585,0 +37577,035,556,402,699761749,10495,0 +37578,C07,688,536,848995478,5727,0 +37579,%2A%2A45%2A%2A,674,424,849098782,7839,0 +37580,JAN+NEW3+Ost,689,454,879782,8433,0 +37581,037,333,586,7183372,8474,0 +37582,KR%C3%93L+PAPI+WIELKI,652,620,698191218,10079,0 +37583,C0038,313,512,8841266,10252,0 +37584,C0063,314,509,8841266,10252,0 +37585,%3D%7C47%7C%3D,654,389,9101574,10495,0 +37586,TWIERDZA+.%3A080%3A.,675,569,7154207,7991,0 +37587,C0055,310,527,8841266,10252,0 +37588,C0116,315,528,8841266,10416,0 +37589,017.,640,370,699098531,6059,0 +37592,X+%7C+Forest+Cyaaaanku,315,472,699213622,10000,0 +37593,Wyspa_14,501,691,2585846,9638,0 +37594,Ave+Why%21,453,685,698585370,8137,0 +37595,0043,568,321,699485250,5071,0 +37597,036,654,619,699099811,5290,0 +37598,Feed+me+more+017,492,382,699756210,10084,0 +37599,123,465,690,9003698,10373,0 +37600,0092,570,675,698659980,10252,1 +37601,SOKzGUMIjag%C3%B3d,648,377,849059491,11130,0 +37602,Wsch%C3%B3d+X2,685,526,698562644,10311,8 +37603,Wioska+barbarzy%C5%84ska,626,362,6625437,5310,0 +37604,z+011+EV6,360,378,3909522,7866,0 +37605,%230290+Marass,463,317,1238300,4551,0 +37606,Szlachcic,397,343,3484132,9884,0 +37607,05.+Suzi+Rivers,557,318,699072129,10311,0 +37608,Out+of+Touch,319,439,698962117,3529,0 +37609,Sielawa,329,548,699265922,9747,0 +37611,Wioska+barbarzy%C5%84ska,619,351,699098531,3388,0 +37613,067-+Mroczna+Osada,597,337,849035905,7861,0 +37614,Zeta+Reticuli+W,363,399,699323302,9151,0 +37615,%5B0066%5D,437,318,8630972,10495,0 +37616,TARAN,548,689,7860453,9439,0 +37617,EO+EO,312,517,699697558,10495,0 +37618,psycha+sitting,416,674,699736927,10311,0 +37619,Topornik+7,653,382,7340529,10164,0 +37620,%5B007%5D,473,314,849099160,10467,0 +37621,C.008,691,494,9188016,10000,0 +37622,Po%C5%82udnie.005,552,682,873575,10102,0 +37623,KONFA+TO+MARKA%2C+NARKA,317,461,698152377,10290,6 +37624,psycha+sitting,406,670,699736927,9695,0 +37625,Wioska+barbarzy%C5%84ska,346,616,9199885,5364,0 +37627,%2A185%2A,329,412,699273451,10211,0 +37628,Wioska+barbarzy%C5%84ska,564,319,699658023,4007,0 +37629,z.+Lecimy+tu+22,354,374,3909522,4733,0 +37630,2.Sevilla,570,680,698215322,8511,0 +37631,Szlachcic,393,348,3484132,10475,0 +37632,Lord+Lord+Franek+.%23192,618,357,698420691,7664,0 +37633,C+019,690,523,8078914,10920,7 +37634,Wioska+4,643,625,1647052,2833,0 +37635,Z+005,332,597,849084740,5636,0 +37636,Obok+s%C4%85siada+2,384,651,699269923,9630,0 +37637,Out+of+Touch,325,436,698962117,2695,0 +37638,%2A014%2A,353,386,699273451,10211,0 +37639,-003-+Chwa%C5%82a+Imperium,617,345,8675636,9448,0 +37640,C+009,689,514,8078914,6241,0 +37641,%28008%29Shinovar,330,575,849098695,10311,0 +37642,056.Stradi,453,315,698365960,10495,0 +37643,036,485,364,849010255,5918,0 +37644,Napewno+to+nie+jest+off,590,334,848912265,4624,0 +37645,New+Land+16,338,394,849064752,3796,0 +37646,C110,368,633,699383279,8981,0 +37647,C0187,310,534,8841266,8697,0 +37648,D003,611,657,9023703,10220,0 +37649,%23032%23,627,636,692803,9761,0 +37650,C18,684,542,848995478,3471,0 +37651,Szlachcic,389,342,3484132,10011,0 +37652,%7E%7E058%7E%7E,631,640,7829201,9109,0 +37654,Z002,516,310,699208929,7065,0 +37655,033,529,686,2293376,7271,0 +37656,Kingdom+8,689,502,699598425,10587,0 +37657,Muchomor,515,688,606407,10294,0 +37658,072+donkretos4,689,517,2135129,6432,0 +37659,AAA,551,315,1006847,9996,0 +37660,Rubiez2,310,485,699265922,9752,6 +37661,New+World,426,677,698152377,10291,0 +37662,%5B005%5D,470,310,849099160,11216,0 +37663,003,324,558,849012521,3594,0 +37664,AAA,539,318,1006847,7524,0 +37666,-+162+-+SS,555,683,849018239,10000,0 +37667,KR%C3%93L+PAPI+WIELKI,648,613,698191218,10294,0 +37668,psycha+sitting,419,674,699736927,10311,6 +37669,Taran,339,603,6180190,9956,0 +37670,009,342,387,848945529,3180,0 +37671,018+Osada+koczownik%C3%B3w,682,453,849098769,8565,7 +37672,Village,318,567,849099258,8715,0 +37673,Out+of+Touch,321,425,698962117,9745,0 +37674,036.+Lady+elo320,688,471,7494497,10311,0 +37675,Winterhome.053,498,308,848918380,10178,0 +37676,Niesko%C5%84czono%C5%9B%C4%87,665,407,699785935,12154,0 +37677,080,464,313,2502956,10019,6 +37678,Wyspa_24,514,692,2585846,9638,0 +37679,Komornicy+013,350,618,699336777,3685,0 +37680,%2A173%2A,332,414,699273451,10211,0 +37681,057g,316,555,698641566,9809,8 +37682,Wilamowice,541,313,7139853,3173,0 +37683,Winterhome.033,502,313,848918380,10178,0 +37684,0.22+Druga+gwiazdka,464,683,699827112,9792,0 +37685,z+00101+Czarna+magia,357,369,3909522,10311,0 +37686,_PUSTA,663,606,698768565,9356,0 +37687,Co+przyniesie+czas,666,407,699785935,8121,0 +37688,psycha+sitting,422,672,699736927,9187,0 +37689,Moldor+10,632,358,849049045,8940,0 +37690,Out+of+Touch,324,439,698962117,6931,0 +37691,Po%C5%82udnie.020,558,682,873575,10183,6 +37692,0047,570,324,699485250,4645,0 +37693,-+04+-+Miasto,469,311,848902744,6897,0 +37694,%7E%7E080%7E%7E,633,641,7829201,4621,0 +37695,BRZEG+JORDANU+%7C+005,686,518,9228039,6228,0 +37696,%2A184%2A,335,408,699273451,10211,0 +37697,Wyspa_09,504,694,2585846,9638,0 +37698,C0013,307,520,8841266,10252,0 +37699,Wyspa_15,501,692,2585846,9638,0 +37701,%3F%3F%3F,487,308,698489071,9711,0 +37702,Dream+on,306,487,698962117,9741,5 +37703,Out+of+Touch,321,431,698962117,9485,0 +37704,A060,606,653,9023703,10220,0 +37705,Po%C5%82udnie.007,556,681,873575,10300,0 +37707,Wioska+barbarzy%C5%84ska,395,656,699736927,5543,0 +37709,007,531,312,849099054,4373,0 +37710,TWIERDZA+.%3A025%3A.,679,565,7154207,10182,0 +37712,Po%C5%82udnie.004,556,680,873575,10025,0 +37713,054+Wioska+007,664,409,9238175,10323,8 +37715,Wioska+4,506,306,849099342,5018,0 +37717,%2A5618%2A+Pig,675,573,7973893,10287,0 +37718,%2A%2A48%2A%2A,677,421,849098782,6428,0 +37719,081,467,308,2502956,10362,0 +37720,Retkinia,687,481,849100246,5650,0 +37721,Szlachcic,394,343,3484132,10478,0 +37722,-001-+Chwa%C5%82a+Imperium,617,346,8675636,10019,0 +37723,Szlachcic,384,349,3484132,10495,0 +37724,114,623,417,7085502,9957,0 +37725,%230277+olcixx,460,310,1238300,9265,0 +37726,Baruchowo,664,403,7973893,6658,0 +37727,%5B002%5D,471,313,849099160,11581,0 +37728,Wioska+barbarzy%C5%84ska,343,615,9199885,6909,0 +37729,-025-+BBB,618,348,8675636,10160,0 +37730,Suppi,328,421,699856962,9553,0 +37731,wysypisko+%C5%9Bmieci,322,549,699364813,9866,0 +37732,AAA,549,321,1006847,11898,0 +37733,%2A009%2A,324,545,8630972,10495,0 +37735,%2A039%2A,665,396,698670524,9744,0 +37736,-+160+-+SS,556,684,849018239,10000,0 +37737,007,315,479,7127455,9881,2 +37738,%5B0079%5D,434,319,8630972,10495,0 +37739,B.06+duchy+serca+puszczy,555,316,849026145,2973,0 +37740,%5B037%5D,663,589,698305474,5907,0 +37741,0158,406,339,699431255,3124,0 +37742,%2A%2AINTERTWINED%2A,498,686,698704189,9711,0 +37743,1+Bargly,311,479,8048374,5340,0 +37744,kamilkaze135+%2310,656,386,699705601,8232,0 +37745,KR%C3%93L+PAPI+WIELKI,654,620,698191218,9621,0 +37746,I035+Ndst+siadaj%21,683,463,699722599,10495,0 +37747,Winterhome.040,496,311,848918380,10178,0 +37748,Wioska+barbarzy%C5%84ska,358,623,272173,4081,0 +37749,A+039,364,633,699342219,7388,0 +37751,C0199,310,533,8841266,10118,0 +37752,Wioska+barbarzy%C5%84ska,392,340,3484132,9983,0 +37753,AG07,593,667,699876345,9141,0 +37754,Wioska+barbarzy%C5%84ska,561,315,699072129,4346,0 +37755,046.+Wioska+barbarzy%C5%84ska,689,468,7494497,9887,0 +37756,Komornicy+001,352,621,699336777,9825,3 +37757,z+15+.,366,365,3909522,7584,0 +37758,kks,620,642,699567608,9936,0 +37759,Komornicy+024,349,612,699336777,9825,0 +37760,A04+Krak%C3%B3w,347,383,7462660,4898,0 +37761,NOT%3F,409,538,9236866,6966,0 +37762,002,310,477,848895676,4326,0 +37763,103.Stradi,457,318,698365960,10073,0 +37764,B.11+duchy+serca+puszczy,551,320,849026145,4615,0 +37765,000+Plutosea,321,557,9280477,7053,0 +37766,Komornicy+025,348,610,699336777,2069,0 +37767,bucksbarzy%C5%84skamiiiru,332,404,848955783,6745,0 +37768,X+%7C+Forest+Cyaaaanku,315,471,699213622,6226,0 +37769,New+World,428,677,698152377,10303,0 +37770,036,645,542,698999105,10311,0 +37771,%3F%3F%3F,466,309,698489071,6369,0 +37772,005+tylko+fejk,529,694,849093426,10237,0 +37773,New+World,437,683,698152377,10291,0 +37774,--12--,341,606,8877156,10221,0 +37775,-23-,636,363,698361257,3287,0 +37776,%2A067%2A,349,385,699273451,10211,0 +37777,Szlachcic,383,344,698160606,10111,0 +37779,21.+Porto,686,484,699804790,9362,0 +37780,Z+004,329,593,849084740,7709,0 +37782,Winterhome.008,509,312,848918380,10178,0 +37784,Psycho+to+Marka%2C+Narka+%21,320,573,849040142,9414,0 +37785,032.xxx,494,688,8612358,4113,0 +37786,-+151+-+SS,547,688,849018239,9218,0 +37787,029+Maecht,476,692,699834004,4980,0 +37788,012.+Pruszk%C3%B3w,316,448,849098966,5604,0 +37789,Taran,341,611,6180190,9965,0 +37790,.02.+Moria+e,353,618,272173,8401,5 +37792,Zeta+Reticuli+O,414,331,699323302,9811,0 +37793,New+Land+13,351,383,849064752,3535,0 +37794,.2.Madryt,571,680,698215322,9975,1 +37795,088.+ALFI,473,574,8539216,1242,0 +37796,-028-+BBB,617,348,849099276,4603,0 +37797,%2A032%2A,344,392,699273451,10211,0 +37798,Dream+on,307,486,698962117,9699,0 +37799,psycha+sitting,408,667,699736927,8597,0 +37800,Wioska+05,508,307,849099342,6260,0 +37802,KONFA+TO+MARKA%2C+NARKA,313,461,698152377,10290,0 +37803,Wioska+harry213,633,369,6625437,9923,0 +37804,Mordor6,312,539,848978903,6390,0 +37805,Wioska+3,643,626,1647052,6526,0 +37806,%7C069%7C+BlackBird+4,493,689,699393742,7072,0 +37807,002+Wioska+Best+Wiedzmin,607,513,6409472,4024,0 +37808,Darma+dla+zawodnika,526,685,699494488,7826,0 +37809,psycha+sitting,405,668,699736927,10178,0 +37810,%23002,664,402,849099391,2246,0 +37811,Wyspa_19,512,690,2585846,9638,0 +37812,Wioska+barbarzy%C5%84ska,563,323,699658023,4095,0 +37813,.03.Minas+Tirith+e,351,624,272173,8783,6 +37814,Bagdad,499,363,8847546,9835,0 +37815,Wioska+barbarzy%C5%84ska,367,363,849027025,6494,0 +37816,%4018%40,405,330,699483429,2843,0 +37817,007.+Wioska+barbarzy%C5%84ska,624,350,2873154,10237,0 +37818,Wyspa_44,509,695,2585846,5452,0 +37819,0012,687,467,699574408,8402,6 +37820,EO+EO,311,509,699697558,10160,0 +37821,New+World,430,682,698152377,9362,0 +37822,Wioska+zimny+11,601,338,699548295,10316,0 +37823,Wioska+barbarzy%C5%84ska,687,494,699598425,10728,0 +37824,Wow2,372,355,698160606,11699,0 +37825,073,689,545,699316421,9263,0 +37826,%C5%BBUBR+PSYCHIATRYK+008,618,651,33900,6472,0 +37827,Wioska+Ennoble,599,583,6929240,9141,0 +37828,Wiejska8,600,664,6528152,8058,0 +37829,Hard5,360,625,699805839,1690,0 +37830,%2A074%2A,354,386,699273451,10211,0 +37831,New+World,435,680,698152377,10294,0 +37832,X+006,595,335,6384450,7572,0 +37833,Lord+Nc3dyh+4,323,439,699509284,2658,0 +37834,207,423,329,7271812,3187,0 +37835,123,479,687,9003698,10373,0 +37836,%C5%BBUBR+PSYCHIATRYK+007,620,651,33900,7458,0 +37837,Jestem+Poza+Kontrol%C4%85,345,528,8004076,9401,0 +37838,Wyspa_12,503,692,2585846,9638,0 +37839,bucksbarzy%C5%84skamiiiru,337,403,848955783,2383,0 +37840,Mandarynian,342,533,849096458,9799,0 +37841,104,595,670,849097799,8666,0 +37842,Szlachcic,387,352,3484132,10479,0 +37843,O63+Aldeigjuborg,685,524,699272880,5536,0 +37845,%5B060%5D+Wioska+barbarzy%C5%84ska,680,426,849095068,5910,0 +37846,Moldor+3,632,360,849049045,11078,0 +37847,%5B032%5D+Wioska+barbarzy%C5%84ska,677,423,849095068,9288,0 +37848,Osada+koczownik%C3%B3w,660,610,1900364,9360,6 +37849,The+Game+Has+Only+Just+Begun,352,522,9280477,9976,0 +37850,018.,639,370,699098531,5373,0 +37851,005+La+Jonquera,648,375,9029928,10728,0 +37852,Chekku+-+meito,341,527,9280477,9976,0 +37853,W%C5%82adcy+P%C3%B3%C5%82nocy+10,688,503,699379895,6366,0 +37854,Wioska+barbarzy%C5%84ska,611,340,1990750,4419,0 +37855,Wioska+barbarzy%C5%84ska,617,350,699098531,5761,0 +37856,%28033%29Babatharnam,323,567,849098695,8134,6 +37857,z+181-A007,354,381,3909522,6765,0 +37858,A+064,370,645,699269923,8786,0 +37859,%2A103%2A,362,372,699273451,10211,0 +37860,Wioska+barbarzy%C5%84ska,388,659,699269923,9478,0 +37861,KR%C3%93L+PAPI+WIELKI,649,619,698191218,9984,0 +37862,105,595,667,849097799,8572,0 +37863,z+00103+To+nie%C5%BAle+byczku,356,369,3909522,10083,0 +37864,Wioska+barbarzy%C5%84ska,673,579,7973893,6151,0 +37865,C0001,308,514,8841266,10252,0 +37867,Semen,619,356,698420691,6792,0 +37868,Wioska+barbarzy%C5%84ska,694,490,699429153,9419,0 +37869,021Plecy,473,693,698620694,9716,0 +37870,%5B048%5D+Wioska+barbarzy%C5%84ska,674,419,849095068,8713,0 +37873,KONFA+TO+MARKA%2C+NARKA,313,449,698152377,10290,0 +37874,%2A205%2A,326,414,699273451,6612,0 +37875,Taran,339,604,6180190,9955,0 +37876,C0040,309,520,8841266,10252,0 +37877,014+za+5,510,694,849093426,10400,0 +37878,Wioska+barbarzy%C5%84ska,325,571,848949597,3181,0 +37880,017.+TARZAAANA%21%21%21,694,483,7494497,9902,0 +37881,043+invidia,524,689,849093426,9617,0 +37882,WB4,662,394,1086351,6932,0 +37883,I061+Z+archiwum+X,685,456,699722599,9380,0 +37884,Wioska+barbarzy%C5%84ska,357,624,272173,4388,0 +37885,KR%C3%93L+PAPI+WIELKI,639,635,698191218,10017,0 +37887,Wioska+087,656,605,848971079,7281,0 +37889,023+getto,676,421,9238175,10080,0 +37890,Out+of+Touch,318,433,698962117,7040,0 +37891,04.+Vertis,693,480,699804790,9362,0 +37892,.achim.,483,312,6936607,9416,0 +37893,Wioska+26,677,580,849101162,3723,0 +37894,Twierdza+012,316,548,7563185,2857,0 +37895,026,466,316,2502956,10019,0 +37896,088.+Riks,647,625,8337151,8039,0 +37898,2.Grenada,569,679,698215322,4859,0 +37899,Mordor,316,544,848978903,9778,0 +37900,Out+of+Touch,317,432,698962117,9744,0 +37901,Szulernia,369,368,7249451,3868,0 +37902,Wioska+barbarzy%C5%84ska,655,610,1900364,9365,0 +37903,017,676,570,6160655,7510,0 +37904,D.019,388,656,849088243,5285,0 +37905,Winterhome.025,503,308,848918380,10178,0 +37906,Muchomor+%2A024%2A,524,693,606407,7733,0 +37907,Dream+on,306,499,698962117,9671,0 +37908,Wioska+Bochun10,315,467,7449254,10311,0 +37909,10.+Karol,688,488,699804790,10247,0 +37910,Szlachcic,668,589,698867446,8332,0 +37911,Ob+Konfederacja,425,325,848915730,9617,0 +37912,C.009,693,494,9188016,10002,0 +37913,Ko%C5%82obrzeg,545,312,7139853,3456,0 +37914,038+Wioska+barbarzy%C5%84ska,679,443,849098769,5437,0 +37915,AG05,594,665,699876345,9747,0 +37916,Winterhome.016,512,309,8400180,10053,9 +37917,z+Sir+zombi,358,379,3909522,8148,0 +37918,036.xxx,473,691,698620694,4057,0 +37919,040,651,623,699099811,10311,0 +37920,Szlachcic%2FTaran,641,392,699759128,10237,0 +37921,Mefedron+06,394,341,3484132,6131,0 +37922,%2A010%2A,343,392,699273451,10211,0 +37923,076-+Mroczna+Osada,599,337,849035905,8774,0 +37924,Winterhome.012,503,313,848918380,10178,0 +37925,064.+Wioska+barbarzy%C5%84ska,692,470,7494497,8940,0 +37926,z+0010+to+ju%C5%BC+wszystko,356,370,3909522,10083,5 +37929,0024+Wioska+barbarzy%C5%84ska,450,688,849037407,10216,0 +37930,%5B0072%5D,437,320,8630972,10495,0 +37931,Wioska+barbarzy%C5%84ska,373,351,698160606,5362,0 +37932,057.,323,576,3475079,2229,0 +37933,%7E+SYSUNIA+%7E,316,447,698540331,1823,0 +37934,Wioska+barbarzy%C5%84ska,576,679,7756002,9811,0 +37935,z+A02+Lublin,349,381,3909522,10196,0 +37936,Czarna+002,381,653,699269923,8309,0 +37937,Wow,371,355,698160606,12154,0 +37939,034+-+Leganes,693,525,698342159,6941,0 +37940,044g,315,557,698641566,9809,0 +37941,Pa%C5%84stfa+Pu%C5%82nocy,583,333,699433558,9683,0 +37942,%2A%2AINTERTWINED%2A,501,687,698704189,9377,0 +37943,psycha+sitting,424,678,699736927,10311,0 +37944,6.DEWALT,521,306,7758085,4837,0 +37945,Taran+018,639,372,699098531,10971,0 +37946,128+33.+KaruTown,644,401,699491076,9912,0 +37947,Winterhome.067,491,305,848918380,10045,0 +37948,BSK2,652,615,849066044,8989,0 +37949,_PUSTA+%21,684,541,699628084,10495,0 +37950,Wioska+barbarzy%C5%84ska,341,600,7183372,10078,0 +37951,Cieplice,358,622,699864013,6568,0 +37952,%230207+Segadorr+dar,458,311,1238300,10178,0 +37954,-+140+-+SS,545,689,849018239,10235,0 +37955,z+internacionale+007,351,378,3909522,12021,0 +37956,No.22,473,685,698826986,2560,0 +37957,Klaudek22,634,368,849092309,2549,0 +37958,%3F%3F%3F,482,309,698489071,9111,0 +37959,042.+Cancer,613,655,699703642,9761,6 +37960,Winterhome.055,499,307,848918380,10178,0 +37961,003+Bar+Zodiak,528,314,849099054,7670,0 +37963,MELISKA,338,465,699794765,6884,0 +37964,TWIERDZA+.%3A027%3A.,685,559,7154207,10222,0 +37965,Wioska+barbarzy%C5%84ska,557,321,699072129,5887,0 +37966,C+010,688,513,8078914,9526,5 +37970,%230269+olcixx,459,310,1238300,6856,0 +37971,-+247+-+SS,535,690,849018239,10000,5 +37972,XDX,601,333,699098531,6953,0 +37973,Gattacka,680,439,699298370,9307,0 +37974,_PUSTA,660,600,698768565,9605,0 +37975,Wyspa_08,503,694,2585846,9638,0 +37976,Szale,464,689,698585370,8458,0 +37977,006.Osada+koczownik%C3%B3w,399,334,699406776,9623,2 +37978,Wioska+barbarzy%C5%84ska,680,563,7038651,3589,0 +37979,Wioska+barbarzy%C5%84ska,548,681,873575,9839,0 +37980,psycha+sitting,408,665,699736927,6174,0 +37981,%7E070.,527,689,7139820,5847,0 +37982,006.+Otr%C4%99busy,317,449,849098966,6082,0 +37983,057.,636,370,849094609,8605,0 +37984,Wioska+Zorro+004,671,590,849080702,12154,0 +37985,Didus+P,672,573,849070946,5728,0 +37986,nr4,584,676,364126,7568,0 +37987,006+Apeldoorn,643,372,9029928,6933,0 +37988,B.04+duchy+serca+puszczy,553,318,849026145,3786,0 +37989,TARAN,538,685,7860453,8167,0 +37990,KONFA+TO+MARKA%2C+NARKA,314,461,698152377,10291,0 +37991,011.+Chrzan%C3%B3w+Ma%C5%82y,319,452,849098966,5184,0 +37992,A053,615,650,9023703,10221,0 +37993,Winterhome.060,495,306,848918380,10178,0 +37994,Didu%C5%9B_Powr%C3%B3ci%C5%82,678,576,849070946,10475,0 +37995,0281,469,550,699856962,9249,0 +37996,Wioska+Wiki+8,520,691,849100354,8483,0 +37997,%23015%23,628,631,692803,9761,0 +37998,Winterhome.044,497,310,848918380,10178,0 +37999,Szlachcic,381,346,3484132,10000,0 +38000,Wioska+barbarzy%C5%84ska,330,596,7183372,10342,0 +38001,szkoda+gada%C4%87,598,347,849041192,11480,0 +38002,D.006,394,654,849088243,8878,0 +38003,New+World,439,680,698152377,10290,0 +38004,008,314,500,7097727,5956,0 +38005,101,592,670,849097799,10154,0 +38006,psycha+sitting,423,674,699736927,9870,0 +38008,Gryfios+023,685,556,698666810,11710,0 +38009,z+001024+X,359,372,3909522,8624,0 +38010,O70+Oaxaca,681,562,699272880,10185,0 +38011,I071,684,468,699722599,9605,0 +38012,%5B0062%5D,436,318,8630972,10495,0 +38014,Wioska+barbarzy%C5%84ska+b,357,627,272173,3463,0 +38015,Gattacka,620,375,699298370,7567,0 +38016,Ob+Konfederacja,439,321,848915730,9720,7 +38017,Michalxj6,501,309,849099342,9835,0 +38018,Wioska+3,329,426,699821755,8181,0 +38019,-wisc+dells,653,389,8096537,6468,0 +38020,KONFA+TO+MARKA%2C+NARKA,314,448,698152377,10291,0 +38021,C0263,311,507,8841266,9030,0 +38022,%230271+Don+Noobas,475,308,1238300,8799,0 +38023,Wioska+barbarzy%C5%84ska,398,333,699406776,4245,0 +38024,B.08+duchy+serca+puszczy,556,315,849026145,2487,0 +38025,P%7C001%7C,454,689,699393742,5545,0 +38026,.23.+Oxenfurt+b,355,627,272173,6533,0 +38027,%230234+Kamileq69+dar,472,307,1238300,10178,0 +38028,.09.+Sigint+e,352,623,272173,9013,0 +38029,Dream+on,308,493,698962117,9505,0 +38030,%C5%BBUBR+.%3A%3A.Adaczu%2F08,618,648,33900,3918,0 +38031,Ronin+P,635,640,698768565,9995,0 +38032,Taran,343,608,6180190,7558,0 +38033,%5B0098%5D,435,318,8630972,10495,0 +38034,058,333,588,7183372,10300,6 +38035,%23018%23,637,630,692803,9761,0 +38036,Winterhome.054,497,308,848918380,10178,0 +38037,Out+of+Touch,323,419,698962117,7878,0 +38038,016.Stradi,440,320,698365960,10495,0 +38039,_PUSTA+%21,691,537,699316421,9282,0 +38040,Wioska+barbarzy%C5%84ska,524,308,849044705,3014,0 +38041,%3F%3F%3F,476,312,698489071,9188,0 +38042,-+161+-+SS,544,683,849018239,8046,7 +38043,%3F%3F%3F,491,309,698489071,10503,0 +38044,Wioska+barbarzy%C5%84ska,327,422,699856962,7264,0 +38046,New+World,427,679,698152377,10292,0 +38047,2.Salamanka,574,675,698215322,5791,0 +38048,%5B011%5D+Uszanowanko+nr2,581,329,699710633,7856,0 +38049,Psycho+to+Marka%2C+Narka+%21,320,576,849040142,3813,0 +38050,%5B0051%5D,434,318,8630972,10495,0 +38051,%2A072%2A,344,397,699273451,10211,0 +38052,%2AINTERTWINED%2A,512,686,698704189,9711,0 +38053,C0036,309,513,8841266,10252,0 +38054,073.+Dolina+Palancar,615,476,8337151,10083,0 +38055,%2A053%2A,345,395,699273451,10211,0 +38056,Wioska+barbarzy%C5%84ska,532,311,849044705,8943,0 +38057,W%C5%82adcy+P%C3%B3%C5%82nocy,687,504,699379895,10252,8 +38058,Taran,327,591,6180190,9177,0 +38060,Pd+02,359,631,272173,3756,0 +38061,181,323,582,699697136,5871,0 +38062,Wioska+barbarzy%C5%84ska,331,595,7183372,10088,0 +38063,%23078%23,635,631,692803,9761,0 +38064,I053+Fotobudka,684,463,699722599,10203,0 +38065,%C5%BBUBR+.%3A%3A.Adaczu%2F09,623,649,33900,3849,0 +38066,022+irirjeueu,523,692,849093426,10237,0 +38067,Wioska,549,687,7860453,5438,0 +38068,AAA,538,317,1006847,9131,0 +38069,%4014%40,406,332,699483429,4543,0 +38070,2.Elx,563,679,698215322,5278,0 +38071,C0152,316,534,8841266,10387,6 +38072,.%3A006%3A.,359,630,272173,9132,0 +38073,067.+Rekini+Z%C4%85b,666,590,8337151,9561,0 +38074,koczo+2,591,335,7340529,9570,0 +38075,Winterhome.070,492,307,848918380,8838,0 +38076,082,461,309,2502956,11678,1 +38077,Didi,673,580,849070946,10476,0 +38078,A+041,365,635,272173,5139,0 +38079,.%3A094%3A.+JuanPabloII,541,445,848934935,10362,0 +38080,004,310,478,2418364,6564,0 +38081,Wioska+barbarzy%C5%84ska,520,310,1990750,8170,0 +38082,C0030,313,511,8841266,10252,0 +38083,KINGSAIS,399,342,3484132,5220,0 +38084,0528,543,663,698659980,10495,0 +38085,Wioska+barbarzy%C5%84ska,535,311,849044705,8042,0 +38089,-002-+Chwa%C5%82a+Imperium,620,348,8675636,10019,0 +38090,102,657,616,3589487,11678,0 +38091,0422,564,683,698659980,10019,0 +38092,%7C051%7C+Split,497,691,2585846,9213,0 +38093,AG03,592,664,699876345,9747,0 +38094,W%C5%82adcy+P%C3%B3%C5%82nocy+11,693,504,699379895,5328,0 +38095,WB20,328,412,356642,5029,0 +38096,ADEN,607,345,698588535,4549,0 +38097,Wioska+1,312,489,849075836,9410,0 +38098,009,309,479,2418364,3882,0 +38099,Dream+on,308,489,698962117,9484,0 +38100,I085,688,461,699722599,8463,0 +38101,%5B065%5DWioska+barbarzy%C5%84ska,671,416,849095068,9095,0 +38102,%7E%7E056%7E%7E,631,644,7829201,9353,0 +38103,%28037%29Arak,322,567,849098695,9857,0 +38104,A062,604,656,9023703,10226,0 +38105,1.C.,453,689,699777372,9791,0 +38106,EO+EO,314,524,699697558,10019,0 +38107,021+syegdvdj,534,685,849093426,10237,0 +38108,Kamionka+1-maja,681,547,848932879,9839,0 +38109,20.+Wioska+Raukodel,652,379,7340529,8851,7 +38110,Wioska+w%C5%82adca+Tw%C3%B3j,623,394,699758688,5865,0 +38111,029,627,649,699373599,3713,0 +38112,Ave+Why%21,452,685,698585370,11188,5 +38113,Wioska+082,667,602,848971079,8660,0 +38114,021+Panewa,644,368,9029928,2322,0 +38115,s%C5%82odziute%C5%84ka+08,601,537,8013349,8063,0 +38116,K35+-+%5B018%5D+Before+Land,574,321,699088769,9924,0 +38117,004,642,634,849099544,5249,0 +38118,%7E%7E062%7E%7E,627,642,7829201,9517,0 +38119,U-4,553,379,3600737,9549,0 +38120,Wioska+barbarzy%C5%84ska,536,311,849044705,7489,0 +38121,Wyspa_31,508,687,2585846,9638,0 +38122,KR%C3%93L+PAPI+WIELKI,642,633,698191218,9589,0 +38123,New+Land+15,341,402,849064752,3756,0 +38124,Wioska+barbarzy%C5%84ska,670,409,699738350,6855,0 +38125,Szlachcic,377,350,698160606,9495,0 +38126,204,424,329,7271812,4098,0 +38127,%C5%BBUBR+PSYCHIATRYK+015,618,644,33900,9883,7 +38128,0012,422,324,2321390,8785,0 +38129,%23%23%23051%23%23%23,594,671,698285444,10636,0 +38130,073,539,686,2293376,9638,0 +38131,BRICKLEBERRY,559,314,699072129,5596,0 +38132,%230164+Kamil0ss1,471,308,1238300,10178,0 +38133,boh81%2F0200,308,473,848889556,9617,1 +38134,236,414,326,7271812,3780,0 +38135,Pz39,689,513,8096537,6303,0 +38136,Dream+on,305,509,698962117,9835,0 +38137,wiocha,317,564,849099258,6575,0 +38138,Out+of+Touch,320,423,698962117,9541,0 +38139,_PUSTA%2B,688,544,699628084,9797,0 +38140,-001-+r,380,649,849096354,9215,0 +38141,Taran,338,600,6180190,9957,0 +38143,psycha+sitting,414,674,699736927,10311,0 +38145,Czarna,383,656,699269923,7400,0 +38146,001,307,477,2418364,9570,0 +38147,059.,635,369,849094609,9771,0 +38148,KONFA+TO+MARKA%2C+NARKA,312,460,698152377,10290,0 +38149,Wioska+Zorro+013,669,594,849080702,8098,0 +38150,X+%7C+Forest+Cyaaaanku,316,470,699213622,10000,0 +38151,0313,567,681,698659980,7962,0 +38152,Szlachcic,376,350,698160606,9897,0 +38153,Ob+Konfederacja,427,326,848915730,10025,3 +38154,Wioska+barbarzy%C5%84ska,398,660,699736927,3825,0 +38155,048.+Silthrim,663,602,8337151,10083,0 +38156,%2A081%2A,313,535,699273451,10211,0 +38158,%28018%29Triax,326,568,849098695,6983,0 +38159,Wioska+barbarzy%C5%84ska,479,314,6936607,3875,0 +38160,%23075%23,635,632,692803,9761,0 +38161,I054,684,458,699722599,9850,0 +38162,Dream+on,311,493,698962117,9486,0 +38163,-+136+-+SS,536,687,849018239,10000,0 +38164,_PUSTA%2B,684,544,699628084,10393,0 +38165,Mroczny+Zamek+021,354,629,698908184,4415,0 +38166,%24UtahJazz,690,508,699795378,9033,0 +38167,-001-,375,647,699269923,6256,0 +38168,Orze%C5%82+4,692,488,699413581,7251,0 +38169,Dream+on,310,495,698962117,9611,0 +38170,Wioska+barbarzy%C5%84ska,398,338,699406776,3515,0 +38171,%23037%23,629,637,692803,9761,0 +38172,019.,525,546,699695167,8708,0 +38173,AAA,523,310,1006847,7105,0 +38174,R+030,494,695,699195358,9835,0 +38175,Wioska+barbarzy%C5%84ska,521,311,1990750,10068,0 +38177,005.DUPGRZMOTY,399,335,699406776,9568,0 +38178,%230200+Segadorr+dar,460,316,1238300,10178,0 +38179,X+004,595,334,6384450,8221,0 +38180,Wioska+Szezeger,329,591,849025558,2762,0 +38181,O72,681,563,699272880,10199,0 +38182,I086,691,457,699722599,7997,0 +38183,Wioska+barbarzy%C5%84ska,569,675,7756002,9885,0 +38184,064.+Toark,666,593,8337151,10252,0 +38185,kamilkaze135+%2311,656,387,699705601,8835,0 +38186,%7C053%7C+Zagrzeb,498,692,2585846,9090,0 +38188,Wioska+barbarzy%C5%84ska,311,450,0,2348,0 +38189,Komornicy+028,348,609,699336777,3127,0 +38190,K35+-+%5B026%5D+Before+Land,581,324,699088769,8344,0 +38191,Wioska+barbarzy%C5%84ska,386,649,699269923,9471,0 +38192,045.+Wioska+barbarzy%C5%84ska,685,472,7494497,10099,0 +38193,%2A%2A50%2A%2A,675,415,849098782,8017,0 +38194,Sernik+z+Andzynkami,694,497,699126484,7365,0 +38195,Punta+Cana+2,455,646,699736927,7817,0 +38196,TWIERDZA+.%3A087%3A.,680,569,7154207,6102,0 +38197,Wioska+barbarzy%C5%84ska+b,357,628,272173,4068,0 +38198,Wyspa_18,513,690,2585846,9638,0 +38199,X+%7C+Forest+Cyaaaanku,315,461,699213622,10000,0 +38200,14+Poblete,390,654,698837993,2465,0 +38202,%2A%2A52%2A%2A,670,423,849098782,5778,0 +38203,0029,486,693,699280514,4661,0 +38204,040.Stradi,446,321,698365960,10495,0 +38205,Sernik+z+Andzynkami,695,488,699126484,9744,0 +38206,AAA,546,313,1006847,9064,6 +38207,2.Kadyks,574,674,698215322,5793,0 +38208,%3F%3F%3F,479,310,698489071,8887,0 +38209,Out+of+Touch,321,424,698962117,9740,0 +38210,Wyspa_28,503,695,2585846,9638,0 +38211,003.+Mokot%C3%B3w,690,486,7494497,10256,0 +38212,z+001035,361,365,3909522,8154,0 +38213,KONFA+TO+MARKA%2C+NARKA,316,460,698152377,10290,0 +38214,Odbudowa+Roterdam+%3A%29,628,355,9103424,4200,0 +38215,ManieK,344,614,9199885,9172,0 +38216,KONFA+TO+MARKA%2C+NARKA,314,457,698152377,10292,2 +38218,%7C056%7C+Barba,479,688,699393742,9738,0 +38219,Ett,409,385,699402816,9835,0 +38220,Out+of+Touch,319,434,698962117,6832,0 +38222,.achim.,484,314,6936607,10654,0 +38224,-+183+-+SS,560,685,849018239,8855,0 +38225,065.,328,582,3475079,2774,0 +38226,%7E+SZWEDEROWO+%7E,317,446,698540331,2796,0 +38227,TWIERDZA+.%3A026%3A.,676,567,7154207,10359,0 +38228,048.+Wioska+barbarzy%C5%84ska,689,466,7494497,9750,0 +38229,Kombinat,588,673,699567608,9936,0 +38230,%28030%29Marabethia,323,569,849098695,8789,0 +38231,Szlachcic,390,345,3484132,10478,0 +38232,Dream+on,308,488,698962117,9741,0 +38233,Wioska+barbarzy%C5%84ska,532,315,849044705,3497,7 +38234,BAC%C3%93WKA+%7C034%7C,668,412,7394371,5966,0 +38235,Szlachcic,391,347,3484132,10476,0 +38236,Zakopane,544,314,7139853,3373,0 +38237,Wioska+barbarzy%C5%84ska,337,393,698807570,10047,0 +38238,Winterhome.004,508,311,848918380,10178,9 +38239,Out+of+Touch,322,420,698962117,9186,0 +38240,Wiejska2,606,664,6528152,8465,0 +38241,006.Stradi,439,318,698365960,10495,0 +38242,018,343,605,7183372,10595,0 +38243,Wioska+barbarzy%C5%84ska,401,333,699406776,3474,0 +38244,013+co+ja+robi%C4%99+czasem,531,686,849093426,10247,0 +38245,Po%C5%82udnie.002,554,680,873575,10105,0 +38246,Winterhome.058,495,307,848918380,10178,0 +38247,bucksbarzy%C5%84skamiiiru,335,394,848955783,8795,0 +38248,043g,313,559,698641566,9809,0 +38249,006+NAWRA,658,611,849048867,10109,0 +38250,X+%7C+Forest+Cyaaaanku,319,467,1536625,9976,0 +38251,.05.+Kaer+Morhen+e,346,619,272173,9738,0 +38252,004.,565,324,699072129,5173,0 +38253,Szlachcic,691,516,8096537,6586,0 +38254,Out+of+Touch,327,424,698962117,9486,0 +38255,-+147+-+SS,543,689,849018239,8828,0 +38256,KR%C3%93L+PAPI+WIELKI,637,639,698191218,9857,0 +38257,%5B063%5D+Osada+koczownik%C3%B3w,672,418,849095068,10095,9 +38258,Out+of+Touch,322,418,698962117,2651,0 +38259,006+%2A+Lady+Porto+%2A,696,508,699406750,10490,0 +38260,I100,686,459,699722599,8294,0 +38261,Szlachcic,382,343,3484132,10008,0 +38262,019+Christmasss,607,343,699098531,5007,0 +38263,-+144+-+SS,537,686,849018239,9195,0 +38264,%7C045%7C+Mordownia,499,690,2585846,9622,0 +38265,New+World,426,680,698152377,10294,0 +38266,K35+-+%5B019%5D+Before+Land,578,326,699088769,9730,0 +38267,Ma%C5%82pi+Gaj,683,551,848932879,7616,0 +38268,Wonderwall,331,545,698962117,9541,0 +38269,I099,686,462,699722599,8606,0 +38270,%2A007%2A,313,533,8630972,10273,0 +38271,TWIERDZA+.%3A071%3A.,677,570,7154207,8375,0 +38272,Kingdom+6,689,499,699598425,10728,0 +38273,%C5%BBUBR+.%3A%3A.Adaczu%2F10,621,647,33900,4559,0 +38274,000+Plutosea,314,537,9280477,9976,0 +38275,%23001,664,397,849099391,6460,0 +38276,Taran,337,604,6180190,9956,0 +38277,nr3,585,675,364126,9533,0 +38278,012+Mhmm,601,341,699098531,4455,0 +38279,029%23+Janette,491,695,3933666,5657,7 +38280,Stawiski,687,476,849100082,5155,0 +38281,-+191+-+SS,560,686,849018239,7001,0 +38282,104,656,616,3589487,5515,0 +38283,054.+Wioska+barbarzy%C5%84ska,689,464,7494497,9696,0 +38284,Morty+Town,644,622,849098822,6665,0 +38285,KR%C3%93L+PAPI+WIELKI,695,514,698191218,7754,0 +38286,Wioska+barbarzy%C5%84ska,567,320,699658023,3561,0 +38287,KR%C3%93L+PAPI+WIELKI,636,635,698191218,10040,0 +38288,071.+Uden,649,617,8337151,10160,0 +38289,KONFA+TO+MARKA%2C+NARKA,310,460,698152377,10292,0 +38290,AG11,589,665,699876345,9747,0 +38291,Forteca%2A009%2A,531,694,1078121,4434,0 +38292,%7E%7E074%7E%7E,629,639,7829201,5871,0 +38293,Wioska+Zorro+016,679,590,849080702,10495,0 +38294,Wioska+barbarzy%C5%84ska,524,313,698350371,6613,0 +38295,005.+Praga+Po%C5%82udnie,695,482,7494497,9902,0 +38296,Wioska+barbarzy%C5%84ska,685,549,7038651,4812,0 +38297,XDX,603,333,699098531,8197,0 +38298,-13-,639,364,698361257,6776,0 +38299,011.Stradi,448,313,698365960,10495,0 +38300,W%C5%82adcy+P%C3%B3%C5%82nocy+12,686,526,699379895,5606,0 +38302,Vanaheim+II,594,337,699478692,3076,0 +38303,kamilkaze135+%2301,659,390,699705601,10081,0 +38304,blablabla,625,355,9103424,2937,0 +38305,bucksbarzy%C5%84skamiiiru,332,403,848955783,10575,0 +38306,%7E%7E065%7E%7E,632,642,7829201,7629,0 +38307,2.C.,457,688,699777372,9777,0 +38308,Wioska+barbarzy%C5%84ska,695,475,699429153,9825,0 +38309,KR%C3%93L+PAPI+WIELKI,648,619,698191218,10106,0 +38310,%24Doncic,688,519,699795378,5378,0 +38311,2.Vitoria,572,677,698215322,5296,0 +38312,206,426,328,7271812,4238,0 +38313,197...segador,455,317,6920960,8792,0 +38314,018+NAWRA,661,610,849048867,3644,0 +38315,%230158+Kamil0ss1,470,315,1238300,10178,0 +38316,KR%C3%93L+PAPI+WIELKI,639,631,698191218,10295,0 +38317,Wyspa_16,504,689,2585846,9526,0 +38318,Wioska+8,313,485,849075836,8320,0 +38319,C0034,312,511,8841266,10252,0 +38320,0026+Wioska+barbarzy%C5%84ska,451,688,849037407,9693,0 +38321,C0161,317,515,8841266,10252,0 +38323,Mefedron+04,394,342,3484132,8496,0 +38324,Kocpo%C5%82uch+3,331,580,848949597,3829,0 +38326,032%23+Roe,481,692,3933666,7692,0 +38327,%5BF%5D+004,385,342,3484132,6756,0 +38328,-+143+-+SS,543,686,849018239,10008,0 +38329,UltraInstynkt,582,329,699710633,10311,0 +38330,I072,685,465,699722599,10348,0 +38331,Szlachcic,692,514,8096537,8410,0 +38332,AAA,545,309,1006847,6146,0 +38333,Wioska+101,648,598,848971079,9761,0 +38334,New+World,426,675,698152377,10292,0 +38335,.27.+Cinoda+e,353,619,272173,6517,0 +38336,006342+Miedziany1,440,433,3909522,10520,0 +38337,XDX,589,328,699098531,4458,0 +38338,Wioska+ricki19634,604,515,698845189,6632,0 +38339,Wioska+barbarzy%C5%84ska,695,491,699429153,9412,0 +38340,W%C5%82adcy+P%C3%B3%C5%82nocy+07,690,501,699379895,6152,0 +38342,%23077%23,629,636,692803,9761,0 +38343,New+World,439,679,698152377,10311,0 +38344,0004+Krwawa+Prze%C5%82%C4%99cz+II,477,693,699656989,9984,0 +38345,KR%C3%93L+PAPI+WIELKI,662,609,698191218,9363,0 +38346,%23006.+Bank+Robber,451,681,848896948,9611,0 +38347,03.wiocha,331,589,7183372,5161,0 +38348,013+Argentina+Out,620,349,8675636,10019,0 +38349,-+171+-+SS,557,687,849018239,8438,0 +38350,-+174+-+SS,550,687,849018239,7527,0 +38351,Dolina+Czarnych+Mag%C3%B3w,650,389,7973893,8794,0 +38352,KR%C3%93L+PAPI+WIELKI,695,521,698191218,8006,0 +38353,Wioska+075,662,601,848971079,9077,0 +38354,-+181+-+SS,534,688,849018239,8981,0 +38355,Komornicy+029,347,610,699336777,5400,0 +38356,%24Zion,687,512,699795378,4429,0 +38357,psycha+sitting,420,671,699736927,10311,0 +38358,%2A108%2A,362,367,699273451,10211,0 +38359,Winterhome.007,508,313,848918380,10178,0 +38360,X+%7C+Forest+Cyaaaanku,314,466,699213622,10000,9 +38361,013+mordownia,684,444,849098769,9561,0 +38362,065.Stradi,450,312,698365960,10282,0 +38363,002,620,346,9060885,4995,0 +38364,0.23,466,687,699725436,9607,0 +38365,Wioska+4,499,305,849050849,4411,0 +38366,7.Mylta,420,323,849098648,5704,0 +38367,Wioska+barbarzy%C5%84ska,353,627,272173,3059,0 +38369,015%23+Natalie,486,696,699605333,10163,0 +38370,023,687,454,7085502,9814,0 +38371,Didek,678,577,849070946,8396,0 +38372,Wioska+barbarzy%C5%84ska,397,657,699736927,4430,0 +38373,Wioska+barbarzy%C5%84ska,683,568,7038651,3456,0 +38374,KRASZEW+2,337,597,7183372,10231,0 +38375,Wioska,344,383,7462660,9752,0 +38376,007+Stadio+Alberto+Picco,684,455,849098769,9989,0 +38377,Szlachcic,374,356,698160606,10495,0 +38378,Winterhome.057,496,307,848918380,10178,2 +38379,Dream+on,306,498,698962117,9505,0 +38380,C002,597,661,9023703,6783,0 +38381,psycha+sitting,404,670,699736927,10311,0 +38382,046+Breza,461,685,699834004,9545,0 +38383,%230285+Gwen1,477,308,1238300,4179,0 +38384,Wioska+barbarzy%C5%84ska,375,350,698160606,8466,0 +38385,RTS+9,581,624,848995242,10495,0 +38386,Wioska+barbarzy%C5%84ska,564,320,699658023,3702,0 +38387,SOKzGUMIjag%C3%B3d,648,376,849059491,11130,0 +38388,%2136+74+Hurjuieni,646,370,698361257,9860,0 +38389,.achim.,481,311,6936607,8663,0 +38390,K35+-+%5B034%5D+Before+Land,577,325,699088769,9925,0 +38391,New+World,430,680,698152377,10297,0 +38392,KR%C3%93L+PAPI+WIELKI,641,632,698191218,9866,0 +38393,Out+of+Touch,322,419,698962117,8669,0 +38394,Dream+on,304,495,698962117,9007,0 +38395,001,589,675,699567608,7424,0 +38396,Sernik+z+Andzynkami,696,495,699126484,9744,0 +38398,-DrakenSag1,545,326,699825236,7545,0 +38399,%2A3604%2Aa+Dolina+Bia%C5%82ych+Mag%C3%B3w,661,397,7973893,10287,0 +38400,Beznazwa,618,354,7340529,10495,0 +38401,Taran,335,600,6180190,9962,0 +38402,X+005,598,335,6384450,8541,0 +38403,AGA6,687,499,699598425,7807,0 +38404,a+mo%C5%BCe+off+%3F+%3A%29,670,402,698768565,5070,0 +38405,050,649,627,699099811,2699,0 +38406,2.Kordoba,574,678,698215322,5030,0 +38407,Dream+on,307,496,698962117,8957,0 +38408,New+World,429,677,698152377,10292,0 +38409,.achim.,485,309,6936607,9665,0 +38410,Stolikland,319,572,699671197,12154,0 +38411,07+Las+Labores,383,651,699269923,4936,0 +38412,%C5%BBoliborz,367,356,849099434,12154,0 +38413,MojeDnoToWaszSzczyt,506,307,9299539,9984,0 +38414,042,650,626,699099811,9403,0 +38415,A024,608,661,9023703,10221,0 +38416,psycha+sitting,399,663,699736927,10178,0 +38417,BAC%C3%93WKA+%7C042%7C,668,414,7394371,10495,0 +38418,Wioska+barbarzy%C5%84ska+3,325,580,3475079,6809,0 +38419,031,455,310,2502956,10019,0 +38420,Dream+on,307,494,698962117,9494,0 +38421,WB5,666,395,1086351,8392,0 +38422,0026.+Y+-,692,536,7125212,4079,0 +38423,Wioska+barbarzy%C5%84ska,368,360,849027025,6799,0 +38424,Gattacka,613,381,699298370,10470,0 +38425,Plantacja+Granatnik%C3%B3w,581,672,698723158,7576,0 +38426,Out+of+Touch,318,432,698962117,7405,0 +38427,002,647,629,698234770,9929,0 +38429,057.Stradi,449,314,698365960,10495,0 +38430,048+Carreras,462,684,699834004,9358,0 +38432,Piek%C5%82o+to+inni,594,330,848956765,6548,0 +38433,Odbudowa+Hagi%3A%29,627,352,9103424,3882,0 +38434,Wioska+barbarzy%C5%84ska,325,424,699856962,8840,0 +38435,Rze%C5%BCucha+%C5%81%C4%85kowa,582,679,698723158,6074,0 +38437,003,335,605,7183372,10343,0 +38438,.%3A002%3A.,668,592,849039310,4090,0 +38439,074,690,547,699316421,10362,0 +38440,Wioska+marcinnn19922,648,610,8224678,11314,0 +38441,%2A%2A37%2A%2A,675,432,849098782,10030,0 +38442,037+tutaj+pierwsza+mi%C5%82o%C5%9B%C4%87+jest..,680,448,699272633,6821,0 +38443,psycha+sitting,417,669,699736927,10178,0 +38444,KONFA+TO+MARKA%2C+NARKA,312,452,698152377,5987,0 +38445,KONFA+TO+MARKA%2C+NARKA,312,453,698152377,10291,0 +38446,B%23011,692,459,2065730,9797,0 +38447,Wioska+barbarzy%C5%84ska,390,657,699269923,9470,0 +38448,-+195+-+SS,530,686,849018239,8429,0 +38449,Rubiez4,308,483,699265922,8749,0 +38450,cos+cos,437,682,8966820,9968,3 +38451,0014,423,321,2321390,7240,0 +38452,A+078,364,641,699269923,3930,0 +38453,I101,687,463,699722599,7764,0 +38454,%5B0040%5D,437,321,8630972,10495,0 +38456,004.,642,376,699098531,10654,0 +38457,psycha+sitting,410,665,699736927,10311,0 +38458,042.,330,587,7183372,1837,0 +38459,020+New+Yorkshire,621,355,698420691,8378,0 +38460,Wyspa_17,502,691,2585846,9638,0 +38461,XDX,604,334,699098531,8054,0 +38462,Devano4,335,590,7183372,10343,0 +38463,A+044,363,632,699342219,5341,0 +38464,New+World,427,681,698152377,10295,0 +38465,%24MiamiHeat,691,507,699795378,8790,0 +38466,Monetki,485,415,699098531,10291,0 +38467,Piekarnia,678,440,849093742,7940,0 +38469,walaszczyki,306,479,8048374,7877,0 +38470,Wioska+barbarzy%C5%84ska,635,366,7555180,9803,0 +38471,X+%7C+Forest+Cyaaaanku,310,469,699213622,10000,0 +38472,Wioska+Tomcio+Rycerz,665,601,3467919,10019,0 +38474,psycha+sitting,407,669,699736927,10268,0 +38478,_PUSTA%2B,687,544,699628084,9797,0 +38479,z+A03+Rzesz%C3%B3w,349,382,3909522,9574,0 +38480,006,318,557,8153179,4665,0 +38481,%2A087%2A,362,371,699273451,10211,0 +38482,psycha+sitting,408,671,699736927,10178,0 +38483,Sullivanum+%5B2%5D,337,593,1606425,11875,0 +38484,%5B0035%5D,443,313,8630972,10495,0 +38485,Wioska+barbarzy%C5%84ska,328,406,2418002,5073,0 +38487,019+NAWRA,663,609,849048867,5483,0 +38488,%2A098%2A,357,368,699273451,10211,0 +38489,psycha+sitting,421,680,699736927,10311,0 +38490,Hoog,315,440,393668,9185,0 +38492,bucksbarzy%C5%84skamiiiru,331,406,848955783,10654,0 +38493,%7E%7E059%7E%7E,626,644,7829201,9608,0 +38494,A055,614,651,9023703,10220,0 +38495,Rubiez7,305,485,699265922,8230,0 +38496,Winterhome.072,492,310,848918380,8626,0 +38497,%230205+Segadorr+dar,460,314,1238300,7645,0 +38498,XDX,604,338,699098531,5105,0 +38499,045.Stradi,446,319,698365960,10495,0 +38500,_PUSTA%2B,687,543,699628084,7769,0 +38501,102+invidia,526,694,849093426,8485,0 +38502,WYSPA,508,691,2585846,8758,4 +38503,103+%2A%2A%2A8%2A%2A%2A+Agrest,536,386,699491076,10001,0 +38504,003,309,506,698356304,5400,0 +38505,Osada+koczownik%C3%B3w,617,349,8675636,10019,5 +38506,076,690,537,699316421,9549,0 +38507,0090,612,346,848913037,4968,0 +38508,046.,327,588,3475079,2856,0 +38509,%7E006%7E+MmM,352,598,8877156,9149,0 +38510,Wioska+barbarzy%C5%84ska,400,332,699406776,4594,0 +38511,%5B062%5D+Wioska+barbarzy%C5%84ska,669,415,849095068,2785,0 +38512,%7E%7E060%7E%7E,625,644,7829201,7382,0 +38513,D.012,392,663,849088243,7565,0 +38514,Nie+rozp%C4%99dzacie+si%C4%99%3F+XD,476,306,698489071,10971,0 +38515,Kopalnia,305,480,8048374,8540,0 +38516,%C5%BBUBR+.%3A%3A.Adaczu%2F017,624,652,33900,2177,0 +38517,Wioska+069,657,611,848971079,9761,0 +38519,boh81%2F500,305,473,848889556,9617,2 +38520,1.02,428,678,699827112,8533,0 +38521,Out+of+Touch,319,446,698962117,9321,0 +38522,%5B214%5D,571,564,8000875,4958,0 +38523,%230286+Don+Noobas,475,310,1238300,4978,0 +38524,%4011%40,404,328,699483429,5604,0 +38525,009g,314,563,698641566,9702,6 +38526,%23021%23,616,654,692803,9761,0 +38527,143+invidia,539,693,849093426,5577,0 +38530,Taran,338,604,6180190,9957,0 +38531,%5B050%5D+Wioska+barbarzy%C5%84ska,680,422,849095068,8767,0 +38532,W%C5%82adcy+P%C3%B3%C5%82nocy+09,694,522,699379895,6176,0 +38533,%5B0038%5D,439,320,8630972,10495,0 +38534,%5B159%5D,566,556,8000875,9071,0 +38535,039%23+Ola,487,689,3933666,3361,0 +38536,K35+-+%5B006%5D+Before+Land,576,320,699088769,9847,0 +38537,New+World,443,681,698152377,10294,0 +38538,026+Lan+Exeter,472,688,699834004,4897,0 +38539,AAA,524,310,1006847,8960,0 +38540,003.+Podkowa+Le%C5%9Bna,320,447,849098966,6357,0 +38541,New+World,434,676,698152377,10290,0 +38542,Wioska+ziomeka4,645,376,7629036,2408,0 +38543,Jan+NIE+PR%C3%93BUJ+%21%21,685,439,879782,6073,0 +38544,Wioska+barbarzy%C5%84ska,671,582,7973893,2320,0 +38545,Wioska+barbarzy%C5%84ska,522,310,1990750,8908,0 +38546,No+Surprises,678,564,848926293,9581,0 +38547,Wioska+barbarzy%C5%84ska,350,444,393668,10365,0 +38548,Gattacka,682,433,699298370,9711,0 +38549,Wioska+barbarzy%C5%84ska,334,596,7183372,7586,0 +38550,021,696,514,699150527,9962,0 +38551,Wioska+079,660,607,848971079,9088,0 +38552,Wioska+barbarzy%C5%84ska,321,568,699671197,6096,0 +38553,WB21,334,405,356642,3622,0 +38554,X+%7C+Forest+Cyaaaanku,314,471,699213622,10000,0 +38555,Wioska+barbarzy%C5%84ska,346,617,9199885,9178,0 +38556,kto+ananasowy+pod+wod%C4%85+ma+dom,580,568,699628084,9797,0 +38557,38.+KaruTown,691,454,849060446,9735,0 +38558,Por%C4%85bka,543,310,7139853,5756,0 +38559,Jestem+Poza+Kontrol%C4%85,353,559,8004076,9816,0 +38560,Wioska+barbarzy%C5%84ska,691,476,699429153,9825,0 +38561,SOKzGUMIjag%C3%B3d,600,339,849059491,5533,0 +38562,%2A003%2A+CSA-Yecha%C4%87%21,607,340,849095068,9872,0 +38563,0023+Wioska+barbarzy%C5%84ska,449,688,849037407,9701,0 +38564,000+Plutosea,317,569,9280477,10311,0 +38565,JokeR,606,342,8963720,4953,0 +38566,Moldor+8,633,360,849049045,9086,0 +38567,z+001028qqqqqqqqqqqqqqqqqqqqqqqq,360,368,3909522,7573,0 +38568,Didek,673,582,849070946,7044,0 +38569,Wyspa_36,509,688,2585846,2274,0 +38570,%2A028%2A,347,390,699273451,10211,2 +38571,Wioska+barbarzy%C5%84ska,328,409,2418002,2880,0 +38572,Wyspa_35,509,694,2585846,9638,0 +38573,0.11+Szale%3F,468,692,699725436,8120,0 +38575,054.,324,578,3475079,2791,0 +38576,Wioska+03,567,316,849067192,8085,4 +38577,xxx,689,537,699316421,10495,0 +38578,bucksbarzy%C5%84skamiiiru,335,395,848955783,7076,0 +38579,Mordor+2,314,543,698388578,8063,0 +38580,New+World,443,686,698152377,10294,0 +38581,Wioska+barbarzy%C5%84ska,330,409,2418002,3424,0 +38582,%230280+Don+Noobas,475,309,1238300,6227,0 +38583,010,343,387,848945529,3042,0 +38584,Orze%C5%82+1,692,489,699413581,10636,0 +38585,Wioska+074,663,603,848971079,9761,0 +38586,TWIERDZA+.%3A093%3A.,680,573,7154207,8785,0 +38587,Wyspa_03,507,689,2585846,9638,0 +38588,001.+%C5%9Ar%C3%B3dmie%C5%9Bcie,691,481,7494497,11130,0 +38589,%5B0086%5D,442,317,8630972,10559,0 +38590,z181_08,311,443,393668,9883,0 +38592,ZWM,685,547,848932879,9112,0 +38593,Wioska+Lady+evee.,588,330,849086074,4440,0 +38594,%7E+CZY%C5%BBK%C3%93WKO+%7E,321,445,698540331,9033,0 +38595,%4010%40,406,329,699483429,5261,0 +38596,I073,690,467,699722599,10083,0 +38597,Gryfios+0010,686,556,698666810,10636,9 +38598,Sernik+z+Andzynkami,695,498,699126484,9744,0 +38599,%5B061%5D+Wioska+barbarzy%C5%84ska,681,424,849095068,6157,0 +38600,050.Stradi,446,320,698365960,10495,0 +38601,skiba,611,661,848909464,10267,0 +38602,Sernik+z+Andzynkami,696,499,699126484,9847,2 +38603,%24MemphisGrizzlies,692,508,699795378,7243,0 +38604,096.+Donar,650,623,8337151,6975,0 +38605,Dream+on,305,482,698962117,9498,7 +38606,Jan+ko%C5%82o+NEW+2+Ost,689,456,879782,7661,0 +38607,092.+W%C4%85skie+g%C3%B3ry,651,622,8337151,9871,0 +38608,KR%C3%93L+PAPI+WIELKI,649,626,698191218,10000,0 +38609,C0106,311,530,8841266,10252,0 +38610,%23%23+Nieznana+%23%23,635,604,699778867,8815,0 +38611,B.03+duchy+serca+puszczy,553,315,849026145,4847,0 +38612,134+invidia,531,688,849093426,6028,0 +38613,Wioska+barbarzy%C5%84ska,665,403,1715091,3397,0 +38614,053.,325,588,3475079,1590,0 +38615,Wo%C5%82f,513,309,8400180,5075,0 +38616,Wioska+barbarzy%C5%84ska,533,309,849044705,3151,0 +38617,Wioska+Wiki+3,519,695,849100354,11153,0 +38618,Mechnice,692,542,848932879,8154,0 +38619,015.Stradi,447,313,698365960,10495,0 +38620,Gryfios+026,690,554,698666810,11877,0 +38621,okplls,664,395,1086351,5163,0 +38622,Wioska+2,644,630,1647052,8363,0 +38623,071+donkretos3,688,516,2135129,7464,0 +38624,Wioska+barbarzy%C5%84ska,559,316,699072129,6998,0 +38625,2.Majorka,574,680,698215322,6289,0 +38626,Taran+039,645,379,699098531,3614,0 +38627,psycha+sitting,410,667,699736927,9894,0 +38628,Shh,315,439,393668,10416,0 +38629,--13--,339,605,8877156,10218,0 +38630,%2A070%2A,341,398,699273451,10211,2 +38631,Sernik+z+Andzynkami,696,498,699126484,9744,0 +38632,Szlachcic,388,343,3484132,10478,0 +38633,EO+EO,307,509,699697558,10019,0 +38635,Out+of+Touch,324,427,698962117,8746,0 +38636,Deveste+ufam+Tobie,395,639,699783765,10005,0 +38637,KR%C3%93L+PAPI+WIELKI,658,609,698191218,9524,0 +38638,Wielki+2,500,305,849050849,7878,0 +38639,%C5%BBera%C5%84,368,359,849099434,8142,0 +38640,-001-,372,639,849096354,5789,0 +38641,Wioska+barbarzy%C5%84ska,665,605,3467919,9557,0 +38642,Jan+xX3+ost+K,687,441,879782,9577,0 +38644,%5B039%5D+Wioska+barbarzy%C5%84ska,673,416,849095068,9288,0 +38645,%5B0057%5D,447,317,8630972,10495,0 +38647,0030,489,693,699280514,3949,0 +38648,002.+Rynsztok,561,321,699072129,10281,3 +38650,Gattacka,680,431,699298370,9556,0 +38651,KR%C3%93L+PAPI+WIELKI,637,631,698191218,9933,0 +38652,Rubiez5,308,469,699265922,8691,0 +38653,A+025,365,630,699342219,5226,0 +38654,XDX,613,343,699098531,6077,0 +38655,.16.+Tillmar+e,351,623,272173,8561,0 +38656,Wioska+barbarzy%C5%84ska,655,390,7973893,8096,0 +38657,KR%C3%93L+PAPI+WIELKI,650,624,698191218,10345,0 +38658,Wioska+barbarzy%C5%84ska,374,350,698160606,5354,0 +38659,Wioska+barbarzy%C5%84ska,599,662,699567608,9622,0 +38660,007.+OchotA,690,482,7494497,9508,0 +38661,Moldor+001,632,354,849049045,11215,0 +38662,%7E%7E057%7E%7E,631,642,7829201,9703,0 +38663,%5B0032%5D,432,316,8630972,10495,0 +38664,%23083%23,632,648,692803,9761,0 +38665,070-+Mroczna+Osada,596,337,849035905,8094,0 +38667,Ob+Konfederacja,427,321,848915730,9545,0 +38668,nowa+4,468,311,849104546,4328,0 +38669,123,470,690,9003698,10373,0 +38670,-+178+-+SS,533,689,849018239,10033,0 +38671,Zaleszczyki+001,619,648,33900,10226,3 +38672,-001-,374,639,849096354,5657,0 +38673,Forteca%2A002%2A,534,693,1078121,9378,0 +38674,Ciepielowice,688,533,848932879,10429,0 +38675,%23%23%23052%23%23%23,586,677,698285444,10495,0 +38676,%5B049%5D+Wioska+barbarzy%C5%84ska,677,422,849095068,7815,0 +38677,Florencja,686,488,2392791,12154,0 +38678,-+138+-+SS,537,692,849018239,9215,0 +38679,007.+Andziejek,562,320,699072129,10223,0 +38680,Wioska+barbarzy%C5%84ska,307,508,699510045,2545,0 +38681,Chocznia,541,307,7139853,6390,0 +38682,Darma+dla+zawodnika,318,584,6180190,2764,0 +38683,C0146,313,536,8841266,10252,0 +38685,Wioska+barbarzy%C5%84ska,520,687,745946,6482,0 +38686,Mako+Reactor+1+-+B2F,546,620,8199417,5179,0 +38687,Mefedron+12,395,339,3484132,3471,0 +38688,Wioska+barbarzy%C5%84ska,689,547,17714,7920,0 +38689,Wioska+barbarzy%C5%84ska,570,679,7756002,10171,0 +38690,Mefedron+10,391,337,3484132,3879,0 +38691,Darma+dla+zawodnika,555,689,7860453,10476,6 +38692,%2136+63+Parhauti,633,363,698361257,8309,0 +38693,wioska,620,350,8675636,10146,0 +38695,%2A118%2A,363,364,699273451,9211,0 +38696,092+Litwa,576,464,7092442,10495,0 +38697,KR%C3%93L+PAPI+WIELKI,641,630,698191218,10060,0 +38698,Wioska+barbarzy%C5%84ska,629,646,698346318,6663,0 +38699,Le+Coq,560,315,699072129,5799,0 +38700,%230232+Kamileq69+dar,475,306,1238300,10178,0 +38702,B%23010,691,458,2065730,9797,0 +38703,--14--,345,607,8877156,7370,0 +38704,I106,688,446,699722599,6943,0 +38705,%2A3603%2Aa+Tu+jest+przysz%C5%82o%C5%9B%C4%87,658,398,7973893,10180,0 +38706,-005-,321,574,698704189,9711,0 +38707,psycha+sitting,409,674,699736927,10178,0 +38708,006+3+dni%3F,524,692,849093426,10237,0 +38709,3.Pineapple+Express,522,304,699208929,4380,0 +38710,A+102,368,639,699269923,7619,0 +38711,Bulbulator,587,674,699567608,9634,0 +38712,%2A088%2A,361,371,699273451,10211,0 +38713,Rubiez3,309,469,699265922,9847,0 +38714,HULA,399,339,8123790,1583,0 +38715,Obok+s%C4%85siada+3,383,648,699269923,9549,0 +38716,045g,314,557,698641566,9702,0 +38718,Wow21,369,355,698160606,3026,0 +38719,Rubiez10,309,470,699265922,8060,0 +38720,%230088,562,681,1536231,4106,0 +38721,psycha+sitting,401,666,699736927,10178,0 +38722,FP008,488,696,699605333,10393,0 +38723,15.+Rio,688,483,699804790,9362,0 +38724,Winterhome.074,491,308,848918380,6935,0 +38725,Gattacka,678,426,699298370,9393,0 +38726,%23096%23,626,641,692803,8544,0 +38727,Komornicy+005,348,619,699336777,4935,0 +38728,%23%23%23053%23%23%23,581,679,698285444,10495,0 +38729,nowa+2,465,308,849104546,7163,0 +38730,C0061,310,529,8841266,10252,6 +38731,%23%23%23054%23%23%23,591,674,698285444,10495,0 +38732,%C5%BBUBR+PSYCHIATRYK+023,625,651,33900,6451,0 +38733,.29.+Olanda+m,359,629,7417116,3513,0 +38734,FAKE+OR+OFF,411,325,698231772,9817,0 +38735,010+Hades,693,462,849098769,9027,0 +38736,002,588,674,699567608,3771,0 +38737,%2A018%2A,347,389,699273451,10211,0 +38738,141+Fabianki-Hofek,661,393,699491076,9601,0 +38740,New+World,441,681,698152377,10294,0 +38741,Nicolas+Cage,670,586,849098693,7517,0 +38742,%5B0067%5D,444,313,8630972,10495,0 +38743,K35+-+%5B007%5D+Before+Land,575,319,699088769,9783,0 +38744,Wioska+barbarzy%C5%84ska,391,664,699269923,8216,0 +38745,Didek,666,589,849070946,10481,0 +38746,New+World,447,684,698152377,10213,0 +38747,Gattacka,680,427,699298370,9551,0 +38748,Wioska+barbarzy%C5%84ska,332,415,2418002,4187,0 +38749,Wioska+barbarzy%C5%84ska,420,320,698231772,6572,0 +38750,008,636,636,849099544,9885,0 +38751,psycha+sitting,408,669,699736927,10178,0 +38752,066.+Vroengard,667,589,8337151,10252,0 +38753,Wioska+barbarzy%C5%84ska,311,448,393668,5086,0 +38754,Chata+Hermana,685,555,848932879,10636,9 +38755,Winterhome.043,495,309,848918380,10178,0 +38756,%2A040%2A,345,393,699273451,10211,0 +38757,%4002%40,408,324,699483429,10160,0 +38758,Midgard,616,352,699478692,3925,0 +38759,Wioska+barbarzy%C5%84ska,334,593,7183372,6398,0 +38760,Domi,698,476,849002796,8980,0 +38761,Obok+s%C4%85siada+4,382,648,699269923,9408,0 +38762,%230050+geryk,470,330,1238300,10178,0 +38763,2.Gij%C3%B3n,573,677,698215322,4708,0 +38764,C0054,313,520,8841266,10252,0 +38765,C03+Pozna%C5%84,346,380,3909522,6400,0 +38766,011+tak+o,510,691,849093426,10237,0 +38767,AAA,543,308,1006847,6246,0 +38768,%230243+Kamileq69+dar,476,311,1238300,6995,0 +38769,021,397,335,8153941,7394,0 +38770,Plelinia+wracaj,512,312,8400180,9609,0 +38771,W%C5%82adcy+P%C3%B3%C5%82nocy+13,691,509,699379895,5951,0 +38773,Didus+P,674,575,849070946,5652,0 +38774,Wioska+barbarzy%C5%84ska,401,336,195249,7124,0 +38775,C+002,688,518,8078914,7097,0 +38776,0258,552,678,698659980,10019,0 +38777,D012,613,658,9023703,8038,0 +38778,K%C4%99dzierzyn+Ko%C5%BAle,685,552,848932879,10636,0 +38779,%23182%23,650,619,692803,9994,0 +38780,MojeDnoToWaszSzczyt,502,307,9299539,10029,0 +38781,Psycho+to+Marka%2C+Narka+%21,317,573,849040142,9475,0 +38782,009+Desant,482,687,699745265,9097,0 +38783,-Yy-,346,605,7183372,10070,0 +38784,Wioska+Zorro+025,672,595,849080702,5597,0 +38785,Gryfios+028,688,558,698666810,11720,0 +38786,W%C5%82adcy+P%C3%B3%C5%82nocy+14,691,529,699379895,5119,0 +38788,065.+Tudosten,667,590,8337151,10362,0 +38789,0152,405,338,699431255,8770,0 +38790,016+NAWRA,659,610,849048867,8405,0 +38791,%C5%81ucznik+na+koniu,682,439,849093742,6441,0 +38792,018Sylwek,471,694,698620694,9761,0 +38793,%23091%23,638,628,692803,9761,0 +38794,Wyspa_13,502,692,2585846,9638,0 +38795,Pitus,501,304,849050849,9422,0 +38796,001,474,690,9003698,10373,0 +38797,031+Metinna,475,690,699834004,4757,0 +38798,Dream+on,307,488,698962117,9744,0 +38799,B012,596,405,699761749,5316,0 +38800,Wioska+barbarzy%C5%84ska,341,393,698807570,8856,0 +38802,Taran,338,599,6180190,10295,0 +38803,085,641,373,2502956,9984,0 +38805,z+001030,359,367,3909522,6442,0 +38806,Indowy+gr%C3%B3d,324,415,699377401,9820,0 +38807,C0188,308,538,8841266,7571,0 +38808,025,448,312,2502956,9940,5 +38809,Pd+06,360,633,698908184,5526,0 +38810,Wioska+barbarzy%C5%84ska,542,690,7860453,6228,0 +38811,Moldor+2,630,355,849049045,11138,0 +38812,%3D%7C20%7C%3D,615,350,9101574,9443,0 +38813,Osada+koczownik%C3%B3w,389,662,699269923,9470,7 +38814,063.,327,587,3475079,2996,0 +38815,psycha+sitting,406,673,699736927,10178,9 +38816,061,614,483,849095227,9827,0 +38817,1009,622,356,699150527,5588,0 +38818,013+Isengard,470,693,698620694,4741,0 +38819,X+%7C+Forest+Cyaaaanku,311,471,699213622,10000,0 +38820,%23085%23,634,642,692803,9761,0 +38821,Swoja4,603,665,6528152,8530,0 +38822,%5B001%5D+Uszanowanko,609,337,699710633,9147,0 +38823,Kentin+ufam+Tobie,329,452,699783765,10000,0 +38824,z181_04,314,442,393668,9881,0 +38825,CSA,526,310,1006847,5888,0 +38826,-+141+-+SS,544,688,849018239,9444,0 +38827,088,682,577,699373599,4094,0 +38828,%7C066%7C+BlackBird,492,688,699393742,10123,0 +38829,Koszyka,685,551,848932879,6884,0 +38830,2.Teneryfa,573,673,698215322,5002,0 +38831,038+invidia,520,693,849093426,10232,0 +38832,bucksbarzy%C5%84skamiiiru,334,396,848955783,5919,0 +38833,004,465,576,848886870,10495,0 +38834,New+World,442,682,698152377,8735,0 +38835,003.,639,371,699098531,10630,0 +38836,037+-+Burgos,690,545,698342159,4510,0 +38837,Chojny,693,470,849100246,2463,0 +38838,C+020,692,512,8078914,6562,0 +38839,New+World,429,683,698152377,10311,0 +38840,Devano3,335,591,7183372,10343,0 +38841,TWIERDZA+.%3A067%3A.,677,568,7154207,9078,0 +38842,051,644,634,699099811,4437,0 +38843,041,652,623,699099811,7308,5 +38844,Chekku+-+meito,332,533,9280477,7347,0 +38845,%C5%BBUBR+.%3A%3A.Adaczu%2F11,627,650,33900,4046,0 +38846,K35+-+%5B008%5D+Before+Land,575,320,699088769,9847,0 +38847,609%7C375,660,387,699580120,9570,5 +38848,KR%C3%93L+PAPI+WIELKI,644,631,698191218,9506,0 +38849,C0037,309,515,8841266,10252,0 +38851,B%23013,690,449,2065730,9797,0 +38852,%236%23,500,483,699098531,7141,0 +38853,051-+Mroczna+Osada,659,398,849035905,8705,0 +38854,O103,347,620,272173,9946,0 +38855,006,311,505,698356304,3284,0 +38856,Hofek+27.,667,400,699491076,3672,0 +38857,Z%C5%82oty+%C5%9Awit,593,329,699883079,4338,0 +38858,%5B012%5D,455,688,699777372,8011,0 +38859,Jan+XX2+Ost+K,690,445,879782,9771,0 +38860,Wioska+barbarzy%C5%84ska,325,419,699856962,7946,0 +38861,%C5%BBUBR+PSYCHIATRYK+021,625,653,33900,6680,0 +38862,z+181-A008,354,382,3909522,6690,0 +38863,001,658,383,698635863,9704,0 +38864,Architekci+Plac%C3%B3w+Boju,337,539,8004076,8917,0 +38865,018,457,656,698650301,4976,0 +38866,Przypa%C5%82ownia,578,679,698723158,3471,0 +38867,Wioska+barbarzy%C5%84ska,347,619,9199885,3388,0 +38868,038,656,620,699099811,10636,0 +38869,.achim.,487,311,6936607,7615,0 +38870,Jestem+Poza+Kontrol%C4%85,345,543,8004076,9880,0 +38871,Out+of+Touch,318,424,698962117,8726,0 +38872,By%C5%82e%C5%9B+w+porz%C4%85dku+008,374,652,699269923,8135,0 +38873,cebul23,369,352,849027025,9825,0 +38874,520,683,559,7038651,5858,0 +38875,Wyspa_23,511,692,2585846,9638,0 +38876,Szale,461,690,699777372,7047,0 +38877,Wow7,369,353,849027025,11989,0 +38878,Winterhome.015,510,310,848918380,10178,0 +38880,Wioska+081,659,604,848971079,8917,0 +38881,Wie%C5%9B+01,338,612,6180190,9976,0 +38882,14.+Metavers,554,311,699072129,9418,0 +38883,051.Stradi,429,318,698365960,10495,0 +38884,C0003,310,515,8841266,10252,0 +38885,O68+Blackburn,681,561,699272880,10300,0 +38886,009+internacionale,348,374,7462660,9761,0 +38887,Wioska+01,569,316,849067192,4818,0 +38888,O042,346,622,272173,9976,0 +38889,Wioska+1,644,627,1647052,9358,0 +38890,Po%C5%82udnie.012,555,681,873575,9963,0 +38891,Taran,340,604,6180190,9956,0 +38892,nowa,607,341,1990750,5353,0 +38893,Rubiez1,307,483,699265922,9816,6 +38894,009.Stradi,435,314,698365960,10495,0 +38895,103,657,617,3589487,11083,0 +38896,123+Wioska-015-,542,392,699491076,10001,0 +38897,007+%2A+Lady+Porto+%2A,694,508,699406750,9525,0 +38899,A+045,362,636,698908184,8243,0 +38900,FAKE+OR+OFF,423,319,698231772,9833,0 +38901,-09-,553,684,7860453,6832,0 +38902,Sony+911,619,646,1415009,8644,0 +38903,a+mo%C5%BCe+off+%3F+%3A%29,672,410,698768565,4675,0 +38904,_PUSTA%2B,687,541,699628084,10362,0 +38905,059.+Jiet,666,592,8337151,10083,0 +38907,Jan+VALLHALLA,684,433,879782,8022,0 +38908,Ogr%C3%B3d+Warzywny,459,565,7249451,4692,0 +38909,Mrkime,639,368,849099541,4308,0 +38910,Zeta+Reticuli+O,419,324,699323302,10997,0 +38911,B%23026,679,421,2065730,5576,0 +38912,Przyczajony+Tygrys,615,349,7340529,9803,0 +38913,X+%7C+Forest+Cyaaaanku,312,468,699213622,10000,0 +38914,Moldor+9,634,355,849049045,9301,0 +38915,C12,692,531,848995478,3880,0 +38916,Wioska+V,325,585,699671197,10666,0 +38917,038,691,453,699272633,6004,0 +38918,062-+Mroczna+Osada,596,336,849035905,10267,0 +38919,%C5%9Awinka,318,552,699265922,2684,0 +38920,001,640,634,849099544,9664,0 +38921,Wioska+barbarzy%C5%84ska,578,673,698215322,3257,0 +38922,sad+frog,587,672,699567608,10479,0 +38923,D014,614,658,9023703,7119,0 +38924,077,693,519,849095227,9973,1 +38925,Nowy+Pocz%C4%85tek%21+001,338,597,698926585,9905,0 +38926,003+%2A+Lady+Porto+%2A,694,506,699406750,12154,0 +38927,Wioska,321,565,849099258,6924,0 +38928,020+NAWRA,656,611,849048867,5601,0 +38929,015+NAWRA,655,613,849048867,7553,0 +38930,Skarbisz%C3%B3w,682,550,848932879,10728,0 +38931,Wioska+barbarzy%C5%84ska,521,310,1990750,10068,0 +38932,123,470,689,9003698,10373,0 +38933,KHORINIS+02,377,649,849099924,2579,0 +38934,Wioska+barbarzy%C5%84ska,689,492,699429153,9825,0 +38935,Pobozowisko,414,584,699513260,5596,0 +38936,Ob+Konfederacja,429,320,848915730,9690,0 +38937,Szulernia,383,369,7249451,7275,0 +38938,New+World,448,685,698152377,10294,0 +38939,FP035,474,696,699605333,6232,0 +38940,%2A120%2A,350,386,699273451,9466,0 +38941,Winterhome.022,500,312,848918380,10178,0 +38942,%23005+Zenitobiusz,366,440,849096215,4076,0 +38943,FAKE+OR+OFF,412,324,698231772,9830,0 +38944,%23028%23,621,653,692803,9902,0 +38945,nr2,584,675,364126,9098,0 +38946,Orze%C5%82+10,696,486,699413581,5038,0 +38947,Orze%C5%82+9,697,485,849099640,6739,0 +38948,KONFA+TO+MARKA%2C+NARKA,315,453,698152377,10291,0 +38949,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,453,692,8980651,8034,0 +38950,Gold+Experience,589,671,699567608,10564,9 +38951,Wonderwall,310,553,698962117,9579,0 +38952,%2A193%2A,366,362,699273451,10211,0 +38953,Swoja6,606,666,6528152,8631,0 +38954,Wioska+peres5130,536,307,849044705,6405,0 +38955,New+World,448,683,698152377,10292,0 +38956,1.03,432,676,699827112,9168,0 +38957,Szale,463,687,698585370,9404,0 +38958,%2A198%2A,364,357,699273451,10211,0 +38959,D.007,392,656,849088243,8578,0 +38960,Wsch%C3%B3d+X6,693,537,698562644,10311,0 +38961,%230272+Gwen1,474,307,1238300,5184,0 +38962,C002,676,582,8138506,7056,0 +38963,04.wiocha,332,591,7183372,6571,0 +38964,z+181-A009,355,379,3909522,7521,0 +38965,0042,569,321,699485250,4389,0 +38966,035.xxx,483,690,699393742,4166,0 +38967,001,629,647,698346318,8384,0 +38968,S005,598,671,8627359,9231,0 +38969,046.+Warkoczynka,664,600,8337151,10083,4 +38970,%2A181%2A,324,412,699273451,10211,0 +38971,%C5%BBUBR+PSYCHIATRYK+009,621,652,33900,6427,0 +38972,0421,561,685,698659980,10019,0 +38973,Mordor,646,624,849098822,4840,0 +38974,004+NAWRA,663,611,849048867,10121,2 +38975,0420,555,684,698659980,10019,0 +38976,C0065,307,528,8841266,10252,0 +38977,000+Plutosea,318,561,9280477,10452,0 +38978,009.SIEMANO,680,443,849098769,10122,0 +38979,%2A%2A28%2A%2A,677,431,849098782,9431,0 +38980,0.09+Noli+timere,467,692,699725436,8710,0 +38982,A+072,360,640,272173,4405,0 +38984,%5B0068%5D,438,315,8630972,10495,0 +38985,062,515,696,2293376,4533,0 +38986,141+invidia,541,693,849093426,6226,0 +38987,Iskra,598,334,849061374,9761,6 +38989,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,380,645,699269923,9083,0 +38990,Bucksbarzy%C5%84sKamiiiru,429,509,848955783,6148,0 +38991,Ozimek,675,552,848932879,10838,0 +38992,123,472,687,9003698,10373,0 +38993,Nargothrond,634,362,849086491,9835,0 +38994,C108,366,641,699383279,4745,0 +38995,Wioska+barbarzy%C5%84ska,308,547,5997814,5798,0 +38996,Wioska+barbarzy%C5%84ska,387,662,699269923,6929,0 +38997,%C5%BBUBR+.%3A%3A.Adaczu%2F12,625,646,33900,2893,0 +38998,z+001026,353,372,3909522,9126,0 +38999,Rubiez15,307,484,699265922,3972,0 +39000,psycha+sitting,421,679,699736927,10311,0 +39001,Szlachcic,388,348,3484132,10487,0 +39002,Wioska+barbarzy%C5%84ska,397,334,699406776,3508,0 +39003,New+World,436,683,698152377,10291,0 +39004,010,602,332,8842936,9925,0 +39005,B009,516,308,699208929,7490,0 +39006,%23025%23,620,654,692803,9761,0 +39007,TWIERDZA+.%3A028%3A.,685,566,7154207,10356,0 +39008,Sok%C3%B3%C5%82ka,650,616,849066044,9494,0 +39009,094+Tomek,689,509,2135129,4884,0 +39010,%5B013%5D,455,686,699777372,5210,0 +39011,New+World,426,679,698152377,10311,0 +39012,015,512,675,2293376,9993,0 +39013,%2AINTERTWINED%2A,498,689,698704189,6998,0 +39014,647%7C410+Wioska+barbarzy%C5%84ska,647,410,6822957,4762,0 +39015,Wioska+barbarzy%C5%84ska,559,319,699072129,4155,0 +39016,041,324,581,849098688,6093,0 +39018,_PUSTA+%21,686,540,699628084,9689,0 +39019,Wioska+barbarzy%C5%84ska,338,388,698807570,10047,0 +39020,000+Plutosea,320,559,9280477,9976,0 +39022,Klaudek15,632,364,849092309,5197,0 +39023,-+01+-+JFK,467,313,848902744,9045,0 +39024,I083,681,442,699722599,9236,0 +39025,Wioska+barbarzy%C5%84ska,398,339,699406776,6120,0 +39026,Szlachcic,377,356,698160606,10579,0 +39027,lala,586,676,699567608,9768,0 +39028,Dream+on,311,492,698962117,9497,0 +39029,Wioska+barbarzy%C5%84ska,627,348,9291984,3987,0 +39031,Z%7C004%7C+Florencja,474,693,699393742,9034,0 +39032,Wyspa_47,502,697,2585846,6945,0 +39033,Szlachcic,378,353,698160606,9356,0 +39034,%3A%3A%3A+W+%3A%3A%3A,302,500,848917570,2515,0 +39035,Forteca%2A003%2A,533,694,1078121,9211,0 +39036,.18.+Colomier+m,360,630,272173,7189,0 +39037,Out+of+Touch,323,429,698962117,8739,0 +39038,Out+of+Touch,313,435,698962117,6385,0 +39039,Wioska+barbarzy%C5%84ska,691,474,699429153,9825,0 +39040,%3D%7C02%7C%3D,650,384,9101574,10495,0 +39041,XDX,610,337,699098531,7355,0 +39042,Wioska+barbarzy%C5%84ska,681,560,7038651,3555,0 +39043,Dream+on,306,502,698962117,8420,0 +39044,psycha+sitting,400,661,699736927,10311,0 +39045,K35+-+%5B041%5D+Before+Land,572,321,699088769,4459,0 +39046,01+La+Mancha,382,651,699269923,9324,0 +39047,029+invidia,529,691,849093426,9994,0 +39048,Wioska+1,545,458,698881022,3212,0 +39049,Osada+koczownik%C3%B3wxx,336,399,698807570,10049,4 +39050,%2A%2AINTERTWINED%2A,504,693,698704189,9711,0 +39051,Out+of+Touch,322,421,698962117,9742,0 +39052,%C4%86m%C3%B3w,586,670,699567608,8868,0 +39053,%23092%23,626,642,692803,9761,0 +39054,A007,639,373,699520575,7994,0 +39055,Jan+AirForce+Ost+K,687,449,879782,9789,9 +39056,Taran,335,608,6180190,9956,0 +39057,META,580,672,699567608,8149,0 +39058,O048,346,624,272173,9876,0 +39059,Wioska+barbarzy%C5%84ska,541,315,849044705,3646,0 +39060,000+Plutosea,318,560,9280477,10068,0 +39061,%23Yamakashi%23,317,557,849099601,3408,0 +39062,Mefedron+11,395,338,3484132,4348,0 +39063,Sernik+z+Andzynkami,697,495,699126484,9744,0 +39064,KONFA+TO+MARKA%2C+NARKA,312,450,698152377,10290,0 +39065,bucksbarzy%C5%84skamiiiru,333,393,848955783,4850,0 +39066,BRICKLEBERRY,556,310,699072129,4062,0 +39067,006,646,631,849099544,7374,0 +39068,Out+of+Touch,321,427,698962117,8754,0 +39070,048.,327,590,6180190,4441,0 +39071,D14,683,556,848995478,11321,3 +39072,Gryfios+025,685,558,698666810,11876,0 +39073,CSA,525,310,1006847,3818,0 +39074,Moldor,629,356,849049045,7898,0 +39075,TWIERDZA+.%3A054%3A.,684,573,7154207,7937,0 +39076,Wioska+Zorro+027,658,616,849080702,11984,0 +39077,012,635,638,849099544,5618,0 +39078,Wioska+barbarzy%C5%84ska,336,394,698807570,9501,0 +39079,Bandi+si%C4%99+rozbija+%3B%2F,307,538,926823,9753,0 +39080,Wioska+barbarzy%C5%84ska,342,385,699541376,2397,0 +39081,%23%23+Nieznana+%23%23,638,642,699778867,6868,0 +39082,Wioska+barbarzy%C5%84ska,503,596,606407,10291,0 +39083,C013,595,669,9023703,8200,0 +39084,070.,321,582,3475079,2281,0 +39085,C0290,311,508,8841266,6042,0 +39086,New+World,432,682,698152377,6257,0 +39087,-+186+-+SS,532,686,849018239,7599,0 +39088,%C5%BBUBR+.%3A%3A.Adaczu%2F13,621,649,33900,2706,0 +39089,%5B0081%5D,444,312,8630972,10495,0 +39090,Ave+Why%21,500,693,699121671,4266,0 +39091,14.+Wioska+Raukodel,646,374,698361257,9825,0 +39092,Po%C5%82udnie.017,550,685,873575,10251,0 +39093,027,630,648,699373599,5675,0 +39094,Po%C5%82udnie.003,554,678,873575,9985,0 +39095,008+%2A+Lady+Porto+%2A,695,507,699406750,8125,0 +39096,0023.+Y+-,690,533,7125212,4468,0 +39097,Wioska+Wiki+6,520,696,849100354,7289,0 +39098,%2136+63+Patrauti,632,363,698361257,9860,5 +39099,Psycho+to+Marka%2C+Narka+%21,319,573,849040142,10016,0 +39100,038.xxx,479,693,8612358,3221,0 +39101,039,655,621,699099811,9976,0 +39102,Wioska+barbarzy%C5%84ska,396,339,3484132,2562,0 +39103,Wioska+020,675,592,7999103,5817,0 +39104,KR%C3%93L+PAPI+WIELKI,662,613,698191218,10000,6 +39106,Topornik,648,379,7340529,11130,0 +39107,Szlachcic,690,512,8096537,5703,0 +39108,0036+Wioska+barbarzy%C5%84ska,449,691,849037407,9353,0 +39109,Osada,321,566,849099258,7273,7 +39110,Szlachcic,389,345,3484132,10474,0 +39111,2.Oviedo,575,681,698215322,4467,0 +39112,Wioska+barbarzy%C5%84ska,403,334,699406776,8264,0 +39114,Wow5,370,356,699730714,9436,0 +39115,Xanz,313,475,6258092,10316,0 +39116,B%C4%85kowa,573,679,698723158,10316,0 +39117,Out+of+Touch,320,433,698962117,6059,0 +39118,C0117,308,533,8841266,10119,0 +39119,Wyspa_46,500,696,2585846,9638,0 +39120,Wioska+barbarzy%C5%84ska,404,333,699406776,4154,0 +39121,%2A001%2A,313,537,8630972,10495,0 +39122,Warkoczynka+3,667,599,699778867,8952,0 +39124,KR%C3%93L+PAPI+WIELKI,649,629,698191218,10495,0 +39125,Psycho+to+Marka%2C+Narka+%21,319,576,849040142,9761,0 +39126,Seba1234567,672,589,849099689,2451,0 +39127,042g,312,562,698641566,9809,0 +39128,Wioska+barbarzy%C5%84ska,531,305,8606809,3565,0 +39129,Szale,469,691,699725436,9898,0 +39130,4.Podziemny+Klimat,521,304,699208929,4212,0 +39131,Klaudek26,635,356,849092309,2049,0 +39132,O087,345,621,272173,9819,0 +39133,%230229+Segadorr+dar,456,307,1238300,7485,0 +39134,kamilkaze135+%2301.1,658,391,699705601,9805,0 +39135,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,478,693,8980651,9783,0 +39136,%23183%23,651,620,692803,9997,0 +39137,I093,685,445,699722599,7027,0 +39138,C003,674,584,8138506,6260,0 +39139,040,691,455,699272633,5497,0 +39140,Psycho+to+Marka%2C+Narka+%21,317,574,849040142,5193,0 +39141,C0147,313,539,8841266,10252,1 +39142,035,656,617,699099811,12154,0 +39143,229,421,323,7271812,3258,0 +39144,B.13+duchy+serca+puszczy,559,313,849026145,2006,0 +39145,021+NAWRA,658,615,849048867,5594,0 +39146,%23hakutatu%23,317,556,849099601,4096,0 +39147,Dream+on,311,504,698962117,9505,0 +39148,Dream+on,306,509,698962117,9740,0 +39149,D.016,395,664,849088243,5593,0 +39150,C4.,312,549,849095482,2291,0 +39151,psycha+sitting,410,674,699736927,10311,0 +39152,116,590,670,849097799,4643,0 +39153,057+BanaN,691,524,2135129,9661,0 +39154,26.+Wioska+Raukodel,652,381,9320272,3144,0 +39155,012+Missouri,474,645,699238479,9815,0 +39156,AAA,549,315,1006847,9541,0 +39157,Jan+i+co+dalej+Ost+K,683,445,879782,9547,0 +39158,Obok+s%C4%85siada+1,384,650,699269923,9611,0 +39159,Swoja5,605,667,6528152,8530,0 +39160,Wioska+barbarzy%C5%84ska,386,659,699269923,9473,0 +39162,Devano6,333,590,7183372,10247,0 +39163,Komornicy+027,348,613,699336777,9825,0 +39164,A+047,363,636,698908184,6420,0 +39165,%2F003%2FFTP%2F,315,539,698388578,10237,0 +39166,-+132+-+SS,545,693,849018239,10000,0 +39167,Merida.waleczna2,592,334,849083294,1886,0 +39168,TWIERDZA+.%3A029%3A.,692,561,7154207,10222,0 +39169,Domek+JOJO-+2+%2B%2B+Tadek,362,640,699269923,9913,0 +39170,N.C.+Zapowied%C5%BA,668,588,849098693,4715,0 +39171,Out+of+Touch,322,425,698962117,9744,0 +39172,Gattacka,609,412,699298370,9535,0 +39173,2.Las+Palmas,570,683,698215322,5003,0 +39174,A0200,383,475,8841266,10252,0 +39175,AAA,546,315,1006847,5852,0 +39176,-003-+Domek+%C5%BBelazny,658,620,849096631,9115,3 +39178,Mordor7,315,548,848978903,5564,0 +39179,z+001027,353,370,3909522,6574,0 +39180,0303,564,681,698659980,8406,0 +39181,z181_01,312,440,393668,9882,9 +39182,Dream+on,308,492,698962117,9761,0 +39183,psycha+sitting,414,678,699736927,10178,0 +39184,115+SansPL,326,576,699382126,10319,5 +39185,014+Wincanton,619,348,8675636,10252,0 +39186,Wioska+barbarzy%C5%84ska,695,526,699379895,4832,0 +39188,Wyspa_20,514,690,2585846,9638,0 +39189,ZZZ,459,692,8980651,7810,0 +39190,056.,323,584,3475079,2798,0 +39191,marmag81%2F02,307,471,1096254,8156,0 +39192,Wioska+02,568,316,849067192,2552,0 +39194,%23Samarama%23,314,555,849099601,2644,0 +39195,K35+-+%5B040%5D+Before+Land,576,318,699088769,6762,0 +39196,Szlachcic,385,341,3484132,10296,0 +39197,Dream+on,305,487,698962117,9505,0 +39198,New+Land+08,340,397,849064752,3798,0 +39199,137+Dolina+Gliny,665,395,699491076,10083,2 +39200,047.,327,589,3475079,1891,0 +39201,007+NAWRA,663,608,849048867,10031,0 +39202,Szlachcic,397,342,3484132,10476,0 +39203,-25-,641,366,698361257,2656,0 +39205,031+-+Nowy+Pocz%C4%85tek...,376,648,699269923,9497,0 +39206,_PUSTA,662,607,698768565,6572,0 +39207,Wioska+barbarzy%C5%84ska,396,667,699736927,3261,0 +39208,Szlachcic,378,345,698160606,7279,0 +39209,009,634,635,849099544,6355,0 +39210,.achim.,485,306,6936607,7445,0 +39211,Sernik+z+Andzynkami,697,500,699126484,9797,0 +39212,Wyspa_22,509,693,2585846,9638,0 +39213,O71,683,561,699272880,10337,0 +39214,B17,688,551,848995478,10798,0 +39215,D005,611,659,9023703,7159,0 +39217,a+mo%C5%BCe+off+%3F+%3A%29,670,407,698768565,4941,0 +39218,011+NIE+RUSZAJ,688,448,849098769,9659,0 +39219,022+wlodas62+%3A%29,562,642,699828685,10117,0 +39220,%2136+64+Zamostea,646,368,698361257,8774,0 +39221,%23093%23,650,630,692803,9761,5 +39222,D010,612,660,9023703,7339,0 +39223,010+NAWRA,663,613,849048867,8538,0 +39224,Wioska+milupa3+and+IdziPR,416,416,117208,6898,0 +39225,%3F%3F%3F,484,307,698489071,9338,0 +39226,Wioska+barbarzy%C5%84ska,691,540,848946700,6976,0 +39227,Wioska+barbarzy%C5%84ska,518,310,698350371,7000,0 +39228,Osada+koczownik%C3%B3w,364,356,849101962,4162,7 +39229,TWIERDZA+.%3A021%3A.,683,569,7154207,10223,0 +39230,szlachcic%3Btaran+2,590,324,7340529,10654,0 +39231,Winterhome.056,499,308,848918380,10178,7 +39232,FAKE+OR+OFF,413,323,698231772,9819,0 +39233,Taran,336,608,6180190,9956,0 +39234,Wioska+barbarzy%C5%84ska,520,308,698350371,8327,0 +39235,ZZZ,460,694,8980651,8087,0 +39236,Dream+on,309,493,698962117,9491,0 +39237,%7C048%7C+Bobrek,497,690,2585846,9642,0 +39238,014,633,636,849099544,5599,0 +39239,Ob+Konfederacja,427,322,848915730,9291,0 +39240,Wioska+barbarzy%C5%84ska,311,447,393668,9222,0 +39241,Szlachcic,383,345,3484132,9711,0 +39242,BRZEG+JORDANU+%7C+009,694,523,9228039,4309,0 +39243,004,648,631,698234770,8991,0 +39244,-+146+-+SS,545,686,849018239,9892,0 +39245,Gryfios+027,685,557,698666810,11880,0 +39246,024,606,339,699098531,3689,0 +39247,CALL+1053,653,626,699784536,10311,0 +39248,Didek,676,581,849070946,10495,0 +39249,Wioska+barbarzy%C5%84ska,332,601,7183372,7646,0 +39250,Wioska+barbarzy%C5%84ska,640,368,699837826,1522,0 +39251,%2AINTERTWINED%2A,505,696,698704189,7263,0 +39252,%2136+64+Bilca,648,367,698361257,9653,0 +39253,%5B0167%5D,456,308,8630972,8606,0 +39254,XDX,610,336,699098531,6047,0 +39255,bucks+x+kamiiiru,418,431,848955783,10178,0 +39256,001,646,630,698234770,9929,0 +39257,KONFA+TO+MARKA%2C+NARKA,312,457,698152377,10291,0 +39258,AAA,527,307,1006847,5818,0 +39259,Wioska+barbarzy%C5%84ska,387,652,699269923,8450,0 +39260,KR%C3%93L+PAPI+WIELKI,635,645,698191218,10501,0 +39261,Wioska,626,356,849056744,5836,0 +39263,Gattacka,685,432,699298370,9229,0 +39264,122,683,424,849088515,5196,0 +39265,MM001,698,494,848899726,7524,0 +39266,OFF,656,602,849014413,10345,0 +39267,%7E%7E063%7E%7E,628,645,7829201,8360,0 +39268,%23029%23,624,651,692803,9761,0 +39269,Psycho+to+Marka%2C+Narka+%21,320,570,849040142,4695,0 +39270,C0053,306,524,8841266,10252,0 +39271,Jan+WAFFEN,686,438,879782,7177,0 +39272,psycha+sitting,411,677,699736927,10311,0 +39273,B4.,312,546,849095482,3627,0 +39274,A+042,364,635,6948793,6552,0 +39275,274...gulden,460,306,6920960,10309,0 +39276,%2A199%2A,367,373,699273451,5949,0 +39277,TWIERDZA+.%3A083%3A.,679,570,7154207,6513,0 +39278,Ave+Why%21,493,697,699121671,6198,0 +39279,D018,616,655,9023703,6743,0 +39280,042.+barbarzy%C5%84ska%2C+ha%2C+ha+-_-,696,466,7494497,10285,0 +39281,Dream+on,309,505,698962117,9750,0 +39282,Szlachcic,390,340,3484132,10952,0 +39283,K35+-+%5B009%5D+Before+Land,580,324,699088769,9783,0 +39284,Wioska+barbarzy%C5%84ska,400,333,699406776,4556,0 +39285,Wioska+barbarzy%C5%84ska,687,559,7038651,2145,0 +39286,C.006,696,492,9188016,10000,0 +39287,Wioska+barbarzy%C5%84ska,588,323,699402816,9835,0 +39288,023+Borg,629,648,699373599,8021,0 +39289,Ronin+P,601,628,698768565,9995,0 +39290,nowa+1,464,309,849104546,6830,0 +39291,Orze%C5%82+5,691,491,699413581,8479,0 +39292,Winterhome.032,511,310,848918380,10178,0 +39293,kamilkaze135+%2302,657,393,699705601,9071,0 +39294,Taran,611,343,1990750,6954,0 +39295,%5B0056%5D,447,314,8630972,10495,0 +39296,z+00102,358,372,3909522,10222,0 +39298,Ob+Konfederacja,427,323,848915730,9021,0 +39300,007,319,569,849099463,9020,0 +39301,%7E+B%C5%81ONIE+%7E,316,446,393668,3548,0 +39302,Zwardo%C5%84,539,313,7139853,2745,0 +39303,Wow4,372,356,698160606,11115,7 +39304,A+059,360,637,698908184,8814,0 +39305,Wioska+barbarzy%C5%84ska,534,313,849044705,3002,0 +39306,002+NAWRA,661,614,849048867,10845,0 +39307,Rubiez13,306,462,699265922,6890,0 +39308,0021+Wioska+barbarzy%C5%84ska,449,689,849037407,10085,0 +39309,Wioska+barbarzy%C5%84ska,684,547,7038651,5590,0 +39310,%23010.+Roast+Steak+Burger,438,685,848896948,9999,3 +39311,z+001033,355,367,3909522,10393,0 +39312,.achim.,521,412,6936607,10276,0 +39313,XDX,611,338,699098531,8652,0 +39314,C+011,689,512,8078914,7298,0 +39315,Wioska+barbarzy%C5%84ska,642,364,698361257,4923,0 +39316,123,466,688,9003698,10373,0 +39317,-+139+-+SS,538,688,849018239,10000,0 +39319,Wioska+Gusman,655,606,8224678,5024,0 +39320,psycha+sitting,416,676,699736927,10178,0 +39321,044+-+Nowy+Pocz%C4%85tek...,374,653,699269923,7966,0 +39322,N.C.+Historia+zemsty,672,587,849098693,5933,0 +39323,004+normalny+ch%C5%82opak,525,691,849093426,10273,0 +39324,0004,423,322,2321390,4897,0 +39325,%3F%3F%3F,481,310,698489071,8461,0 +39326,Suppi,324,422,699856962,9550,0 +39327,Wioska+barbarzy%C5%84ska,590,320,828637,9889,0 +39328,%23099%23,631,638,692803,8661,0 +39329,Po%C5%82udnie.011,553,687,873575,10020,0 +39330,006.+Gw%C3%B3%C5%BAd%C5%BA+do+trumny,557,319,699072129,10221,0 +39331,Winterhome.023,503,311,848918380,10178,0 +39332,087+Wioska+barbarzy%C5%84ska,606,425,699491076,10001,0 +39333,N.C.+Nieweso%C5%82e+miasteczko,671,584,849098693,5345,0 +39334,kamilkaze135+%2307,659,396,699705601,10311,0 +39335,031+-+San+Sebastian,693,526,698342159,8399,0 +39336,118,684,431,849088515,7665,0 +39337,XDX,589,327,699098531,4138,0 +39338,-+135+-+SS,541,691,849018239,10000,0 +39339,C0183,305,537,8841266,8018,0 +39340,O%C5%82owiany+gr%C3%B3d,319,418,699377401,4860,0 +39342,2.Kartagena,575,682,698215322,4368,0 +39343,-+142+-+SS,538,689,849018239,9892,0 +39344,0314,559,681,698659980,8541,0 +39346,%5B046%5D+Wioska+barbarzy%C5%84ska,675,420,849095068,9602,0 +39347,FP023,479,695,699605333,10393,0 +39348,0005,422,322,2321390,5493,0 +39349,KR%C3%93L+PAPI+WIELKI,640,632,698191218,9584,0 +39350,Gryfios+024,686,554,698666810,11712,0 +39352,Zeta+Reticuli+O,418,323,699323302,11321,0 +39353,Wioska+barbarzy%C5%84ska,341,612,9199885,3050,0 +39354,%5B038%5D+Wioska+barbarzy%C5%84ska,672,417,849095068,9288,0 +39355,Dream+on,310,504,698962117,9496,0 +39356,New+World,430,681,698152377,8745,0 +39357,Wioska+007,694,529,2999957,4051,0 +39358,D.026,389,655,849088243,3161,0 +39359,%5B0148%5D,451,310,8630972,9187,0 +39360,AAA,550,308,1006847,9168,0 +39361,%7E083.,469,693,7139820,5542,0 +39362,B%23017,678,431,2065730,9797,0 +39363,kamilkaze135+%2309,656,388,699705601,9022,0 +39364,%230231+Kamileq69+dar,472,306,1238300,9997,0 +39365,023.,643,375,698361257,9473,0 +39366,Wioska+2,500,310,849099342,9193,0 +39367,Rubiez12,307,464,699265922,6540,0 +39368,C0118,311,531,8841266,10416,0 +39369,%C5%BBUBRAWKA+B001+marko91,622,617,33900,10087,0 +39370,Wioska+barbarzy%C5%84ska,563,318,699072129,5904,0 +39371,poludnie+9,587,671,699567608,8877,0 +39372,Dream+on,302,491,698962117,9276,0 +39373,Argon,678,418,699738350,9668,0 +39374,MojeDnoToWaszSzczyt,498,305,9299539,9967,0 +39375,0116,394,665,7085510,9194,5 +39376,008,671,402,699738350,9472,0 +39377,xzc,496,696,8827094,8630,0 +39378,001,682,419,699738350,9969,0 +39379,Szlachcic,384,345,698160606,8279,0 +39380,KR%C3%93L+PAPI+WIELKI,645,635,698191218,10345,0 +39381,016.+ja+wiem,695,483,7494497,9417,0 +39382,KR%C3%93L+PAPI+WIELKI,693,533,698191218,8020,0 +39383,C0047,312,522,8841266,10252,0 +39384,03.+Wioska+Raukodel,653,379,7340529,11130,0 +39385,Szale,458,691,699777372,7749,0 +39386,FAKE+OR+OFF,411,324,698231772,9816,0 +39387,kamilkaze135+%2310.1,655,385,699705601,7289,0 +39388,Szlachcic,387,347,3484132,10478,0 +39389,ManieK,340,615,9199885,9172,4 +39390,003+NAWRA,664,610,849048867,10442,0 +39391,Wo%C5%82owa+Turnia,311,482,849013126,7351,0 +39392,kamilex,681,420,849095435,3587,0 +39393,%3F%3F%3F,479,306,698489071,10083,0 +39394,Wioska+barbarzy%C5%84ska,326,423,699856962,7901,0 +39395,Wioska+barbarzy%C5%84ska,626,649,1415009,9863,0 +39396,Wie%C5%9B+barbarzy%C5%84c%C3%B3w,582,680,698215322,8371,0 +39397,A054,612,654,9023703,6597,0 +39398,Szale,459,686,698585370,7637,0 +39399,Wyspa_01,515,694,2585846,7589,4 +39400,Out+of+Touch,326,446,698962117,9968,0 +39401,X+%7C+Forest+Cyaaaanku,311,464,699213622,10000,0 +39402,Dream+on,309,487,698962117,9744,0 +39403,Za%C5%82om,700,482,849099640,11122,0 +39404,-+177+-+SS,549,691,849018239,7116,0 +39405,%2A019%2A,346,389,699273451,10211,0 +39406,-002,362,639,699269923,10144,0 +39407,K-F+002,551,692,7860453,4122,0 +39408,-06-,554,693,7860453,8557,0 +39409,BRICKLEBERRY,548,307,699072129,5920,0 +39410,C5.,311,550,849095482,1974,0 +39411,005.,566,320,699072129,5126,0 +39412,Wioska+barbarzy%C5%84ska,309,547,5997814,5251,0 +39413,Wioska+barbarzy%C5%84ska,342,614,9199885,8980,0 +39414,Bulowice,542,312,7139853,8542,0 +39415,Wioska+barbarzy%C5%84ska,694,458,849098769,4485,0 +39416,SOKzGUMIjag%C3%B3d,648,378,849059491,9711,0 +39417,Wioska+barbarzy%C5%84ska,581,320,828637,10475,0 +39418,C+012,693,510,8078914,5370,0 +39419,Jan+NEW1+Ost+K,688,454,879782,9688,0 +39420,Wioska+barbarzy%C5%84ska,331,600,7183372,6520,0 +39421,KR%C3%93L+PAPI+WIELKI,659,619,698191218,10000,0 +39422,227,414,330,7271812,6848,0 +39423,Szlachcic,696,476,699429153,9924,8 +39424,046+invidia,521,692,849093426,9472,0 +39425,003,629,352,9060885,3086,0 +39426,SOKzGUMIjag%C3%B3d,647,380,849059491,10585,0 +39427,By%C5%82e%C5%9B+w+porz%C4%85dku+007,373,651,699269923,9955,0 +39428,Out+of+Touch,316,425,698962117,9203,0 +39429,%3D01%3D,582,681,9266092,2120,0 +39430,041.,322,584,3475079,1666,0 +39431,Wioska+dragonk6,392,661,699269923,9515,0 +39432,Dream+on,305,508,698962117,3386,0 +39433,Domi+7,697,471,849002796,7789,0 +39434,010.+Natolin,315,449,849098966,5588,0 +39435,D004,611,658,9023703,10229,0 +39436,AAA,625,345,7555180,10495,0 +39437,02.+George+Flinston,550,310,699072129,10311,0 +39438,%230295+mastaw,471,307,1238300,5533,0 +39439,g%C3%B3rska+forteca,682,426,699738350,9570,8 +39440,I091,683,443,699722599,9077,0 +39441,Obok+s%C4%85siada+5,382,649,699269923,9575,0 +39442,Dream+on,305,489,698962117,9742,0 +39443,Wioska+barbarzy%C5%84ska,343,614,9199885,9167,0 +39444,Wioska+barbarzy%C5%84ska,526,309,7758085,8043,5 +39445,KR%C3%93L+PAPI+WIELKI,640,629,698191218,9603,0 +39446,xxxx,428,685,849037407,10435,0 +39447,Wioska+barbarzy%C5%84ska,583,327,698200480,2348,0 +39448,C02+Gniezno,347,379,3909522,6287,0 +39449,Wioska+barbarzy%C5%84ska,305,510,699510045,2442,0 +39450,Osada+koczownik%C3%B3w,515,697,699781762,10495,1 +39452,Wioska+barbarzy%C5%84ska,638,357,848973715,2500,0 +39453,Wioska+barbarzy%C5%84ska,329,598,7183372,6517,0 +39454,Wioska+barbarzy%C5%84ska,390,663,699269923,9003,0 +39455,%5B28%5D+barbarzy%C5%84ska,679,418,699785935,5047,0 +39456,072,542,686,2293376,9063,0 +39457,Wyspa_25,512,693,2585846,9638,0 +39458,EO+EO,305,512,699697558,10252,0 +39459,START+01,584,673,848887199,6702,0 +39460,03.Jerry,335,398,698807570,8963,0 +39461,Dream+on,303,492,698962117,9559,0 +39462,%2136+64+Tautesti,647,367,698361257,8761,0 +39463,B002,518,302,699208929,10136,0 +39464,Pd+10,363,631,272173,7160,0 +39465,Wioska+barbarzy%C5%84ska,565,316,699072129,8497,0 +39466,2.Jaen,568,680,698215322,10051,0 +39467,Ave+Why%21,488,695,699121671,9138,0 +39468,Taran,333,608,6180190,10189,0 +39469,046g,315,558,698641566,9809,0 +39470,%3F%3F%3F,481,306,698489071,10224,0 +39471,0000,696,516,112401,2840,0 +39472,002.Stradi,439,314,698365960,10495,2 +39474,Daleko,649,373,7340529,9885,0 +39475,C0074,305,518,8841266,10252,0 +39476,skiba,613,661,848909464,10242,0 +39477,z181_20,311,437,393668,8662,0 +39478,Dream+on,301,495,698962117,9486,0 +39479,%5B0071%5D,446,316,8630972,10495,0 +39480,Padre,671,591,849099955,3527,0 +39481,KONFA+TO+MARKA%2C+NARKA,306,455,698152377,10290,6 +39482,TARAN,542,689,7860453,9623,0 +39483,0.14+Szale,466,691,699827112,9744,0 +39484,bucksbarzy%C5%84skamiiiru,339,385,848955783,2442,0 +39485,podgrzybek,665,600,1715091,9744,0 +39486,Winterhome.077,487,309,848918380,8067,0 +39487,%C5%BBUBR+.%3A%3A.Adaczu%2F14,619,649,33900,3305,0 +39489,045+-+Nowy+Pocz%C4%85tek...,375,654,699269923,7882,0 +39490,060.Stradi,453,316,698365960,10400,0 +39491,Wioska+barbarzy%C5%84ska,342,389,698807570,9208,0 +39492,Szale,458,686,698585370,9684,0 +39493,KONFA+TO+MARKA%2C+NARKA,311,453,698152377,10291,0 +39494,011,617,337,8842936,10418,0 +39496,FAKE+OR+OFF,411,322,698231772,9838,0 +39497,K35+-+%5B010%5D+Before+Land,582,321,699088769,9627,0 +39498,062.Stradi,454,317,698365960,10263,0 +39499,Taran,334,604,6180190,9959,0 +39500,Winterhome.010,515,305,848918380,10178,8 +39501,049,485,401,698739350,6343,0 +39502,002,631,647,698346318,7874,0 +39503,Wsch%C3%B3d+X9,692,537,698562644,9170,0 +39504,Po%C5%82udnie.016,554,683,873575,9961,0 +39505,Wioska+barbarzy%C5%84ska,524,311,698350371,4584,0 +39506,Twierdza+3,513,301,699208929,10365,0 +39507,C2.,312,547,849095482,5679,6 +39509,--15--,330,600,8877156,9811,0 +39510,ProCzacha,516,305,699208929,9200,0 +39511,037,655,619,699099811,10559,0 +39512,Wioska+barbarzy%C5%84ska,698,488,699429153,9038,0 +39513,TARAN,548,691,7860453,9623,2 +39514,MARTU%C5%9A,649,633,699639122,4440,0 +39515,Wioska+barbarzy%C5%84ska,390,660,699269923,9538,0 +39516,Dream+on,307,493,698962117,9488,0 +39517,O107,348,623,272173,9824,0 +39518,%230204+Segadorr+dar,459,312,1238300,6583,0 +39519,BRZEG+JORDANU+%7C+010,696,524,9228039,4094,0 +39520,New+World,448,684,698152377,10291,0 +39521,C011,597,669,9023703,8704,0 +39522,269...gulden,460,308,6920960,9600,0 +39523,009,316,570,849099463,9345,0 +39525,%3D%7C24%7C%3D,663,386,9101574,8630,0 +39527,ZA17,321,412,356642,9835,0 +39528,TWIERDZA+.%3A066%3A.,684,571,7154207,8493,0 +39529,AG21,592,669,699876345,9619,0 +39530,Out+of+Touch,318,428,698962117,6158,0 +39531,Wioska+deEdion,364,586,6243588,9777,0 +39532,C0002,306,517,8841266,10252,0 +39534,005+Racecourse,608,343,1018357,7173,0 +39535,Wioska+barbarzy%C5%84ska,318,573,699671197,5508,0 +39536,0042,565,683,698659980,10083,2 +39537,053.+Lhotse,688,549,1601917,6349,0 +39538,Olsztyn,546,310,7139853,4317,0 +39539,Taran,341,609,6180190,10311,0 +39540,Narnia,587,324,8963720,5029,0 +39541,Suppi,328,417,699856962,9740,9 +39542,Kleinfeld,379,656,849100352,2382,0 +39543,A+081,350,629,272173,3848,0 +39545,Zeta+Reticuli+O,417,323,699323302,11188,7 +39546,%5B0177%5D,459,315,8630972,8682,0 +39547,I096,687,443,699722599,7305,0 +39549,Wow20,365,357,698160606,3295,0 +39550,%23101%23,633,632,692803,8692,0 +39551,KR%C3%93L+PAPI+WIELKI,638,643,698191218,9700,2 +39552,Ravka%C5%84czycy,673,405,8675636,10019,0 +39553,024+LittleVenecia,644,372,9029928,2049,0 +39554,Szlachcic,381,343,698160606,9419,0 +39555,%5B011%5D,472,309,849099160,7201,0 +39556,0.13+Night%3F,466,690,699827112,9742,0 +39558,.15.+Guerret+e,353,625,272173,7838,0 +39559,%23BJK,697,491,699126484,9861,0 +39560,067,632,355,849010255,11611,0 +39561,Wioska+barbarzy%C5%84ska,695,480,699429153,9825,0 +39562,C0086,305,529,8841266,10304,0 +39563,z+001029,360,369,3909522,9405,0 +39564,DaSpeDa,701,486,849099640,8115,0 +39565,%5B0045%5D,433,316,8630972,10495,0 +39566,PRO8L3M,466,492,7491093,6106,0 +39567,%2AINTERTWINED%2A,507,697,698704189,6744,0 +39568,Swoja8,606,668,6528152,8577,0 +39569,B%23003,693,449,2065730,9797,0 +39570,%3F%3F%3F,480,307,698489071,10503,0 +39571,009+%2A+Lady+Porto+%2A,697,506,699406750,8041,0 +39572,%3F%3F%3F,467,306,698489071,11494,0 +39573,031+invidia,528,691,849093426,10104,0 +39574,Wioska+4,310,487,849075836,8438,0 +39575,%5B045%5D+Wioska+barbarzy%C5%84ska,676,420,849095068,9655,0 +39576,C0264,324,514,8841266,9564,0 +39577,Bocianikson020,682,561,7528491,4472,0 +39578,%5B0078%5D,442,316,8630972,10495,0 +39579,Wioska+barbarzy%C5%84ska,338,392,698807570,10048,0 +39580,EO+EO,308,516,699697558,10019,0 +39581,TWIERDZA+.%3A091%3A.,680,577,7154207,9430,0 +39582,Dream+on,299,496,698962117,9488,0 +39583,06.+Santiago,690,478,699804790,9362,0 +39584,103,590,668,849097799,9228,0 +39585,Wioska+Plls,666,399,1086351,2953,0 +39586,001,310,506,698356304,8464,0 +39587,AAA,542,313,1006847,9065,0 +39588,XDX,608,334,699098531,7059,0 +39590,079+invidia,526,695,849093426,7732,0 +39592,Out+of+Touch,321,422,698962117,9745,0 +39594,C0069,308,522,8841266,10252,0 +39595,%C5%BBUBR+.%3A%3A.Adaczu%2F15,624,649,33900,2293,0 +39596,.08.+Silver+Gate+b,356,625,272173,9815,0 +39598,A+069,362,643,699269923,5902,0 +39599,Dream+on,301,498,698962117,9750,0 +39600,XDX,613,338,699098531,6328,0 +39601,Walhalla,564,315,699072129,9756,0 +39602,C0006,309,517,8841266,10252,0 +39603,AAA,536,305,1006847,9126,7 +39604,z+181-A010,353,379,3909522,7943,0 +39605,TWIERDZA+.%3A072%3A.,681,576,7154207,7139,0 +39606,New+World,431,682,698152377,10297,0 +39607,WB22,327,414,356642,3730,0 +39608,-+167+-+SS,549,692,849018239,9377,0 +39609,Szlachcic,388,341,3484132,10083,0 +39610,C0070,306,523,8841266,10252,0 +39612,C0119,301,510,8841266,10252,0 +39614,Wioska+barbarzy%C5%84ska,691,477,699429153,9825,0 +39615,bitwa+pod+grunwaldem,515,302,699208929,3747,0 +39616,s181,555,686,7691817,2706,0 +39617,Suppi,324,420,699856962,9551,4 +39618,Szlachcic,383,343,698160606,10495,0 +39619,000+Plutosea,316,565,9280477,7313,0 +39620,Didek,680,583,849070946,10495,0 +39621,08.+Kolorowy+Jacu%C5%9B,485,691,849092769,6883,0 +39623,ostoja,514,303,699208929,4114,0 +39624,C0067,306,526,8841266,10252,0 +39626,001,622,347,9060885,7061,0 +39627,Aleksandria,305,474,8048374,8499,0 +39628,Wioska+Seba1234567,674,593,849099689,7629,0 +39629,psycha+sitting,408,676,699736927,10178,0 +39630,Wioska+barbarzy%C5%84ska,628,643,698346318,5674,0 +39631,D007,610,660,9023703,3707,0 +39632,011+Feinster,663,604,8337151,10083,0 +39633,Klaudek.17,634,364,849092309,4843,0 +39634,Wioska+Zorro+018,676,592,849080702,9720,0 +39636,006,304,473,2418364,6518,0 +39637,Piek%C5%82o+to+inni,590,329,848956765,3003,0 +39638,Taran,334,603,6180190,9955,0 +39639,Szlachcic,379,342,3484132,10487,0 +39640,Wioska+barbarzy%C5%84ska,667,405,1715091,5175,0 +39641,Ardea,344,441,393668,12130,0 +39642,EO+EO,303,513,699697558,10160,7 +39643,Wioska+barbarzy%C5%84ska,539,314,849044705,10028,0 +39644,Wioska+barbarzy%C5%84ska,581,318,828637,10476,0 +39645,55.+KaruTown,694,455,849060446,8086,0 +39646,Wioska+barbarzy%C5%84ska+2,599,328,849006385,6357,0 +39648,Wioska+barbarzy%C5%84ska,378,346,3698627,6356,0 +39649,Sernik+z+Andzynkami,696,501,699126484,9744,0 +39650,szlon+2,302,483,8048374,10111,0 +39651,Dream+on,303,486,698962117,8598,0 +39652,B.00+duchy+serca+puszczy,554,312,849026145,9976,0 +39653,0006,424,319,2321390,9268,0 +39654,Wioska+barbarzy%C5%84ska,695,479,699429153,8813,0 +39655,Wioska+barbarzy%C5%84ska,579,678,698215322,3739,0 +39656,Wioska+barbarzy%C5%84ska,464,696,699725436,6631,0 +39657,33.Termopile,352,503,698807570,10201,0 +39658,Jedna+Jedyna+%3AD,635,354,9291984,10495,2 +39659,%7E080.,468,694,7139820,3112,0 +39660,KR%C3%93L+PAPI+WIELKI,655,622,698191218,10000,0 +39661,%23100%23,630,638,692803,8243,0 +39662,Taran,342,609,6180190,10311,0 +39663,023,398,332,8153941,3590,0 +39664,-+130+-+SS,541,692,849018239,10000,3 +39665,Wioska+barbarzy%C5%84ska,629,644,698346318,4939,0 +39666,New+Land+05,337,397,849064752,3896,0 +39667,%4009%40,409,326,699483429,4924,0 +39668,056.+Ursyn%C3%B3w,695,476,7494497,10252,0 +39670,-+Bracadabra+-,661,618,849009623,7481,0 +39671,Szulernia,379,364,7249451,4418,0 +39672,MojeDnoToWaszSzczyt,496,303,9299539,9987,0 +39673,New+World,435,683,698152377,7323,0 +39674,By%C5%82e%C5%9B+w+porz%C4%85dku+004,370,650,699269923,10310,0 +39675,psycha+sitting,424,680,699736927,10178,0 +39676,Bekon,624,353,698420691,7219,0 +39677,Dream+on,308,507,698962117,6785,0 +39678,komandos48,500,697,7976264,3710,0 +39679,Wioska+PavloGS,648,632,699639122,4135,0 +39680,D011,613,659,9023703,9630,0 +39681,Wioska+barbarzy%C5%84ska,395,332,699406776,1859,0 +39682,a+mo%C5%BCe+off+%3F+%3A%29,674,404,698768565,8324,0 +39683,Jan+002%2F%23%23%23+Ost,690,454,879782,8331,0 +39684,-+170+-+SS,554,689,849018239,9192,0 +39685,boh81%2F111,305,468,848889556,9601,0 +39686,Wioska+barbarzy%C5%84ska,395,337,699406776,4938,0 +39687,--16--,337,606,8877156,10220,0 +39688,R+032+%7EKr%C3%B3lestwo+Polskie%7E,496,694,699195358,8765,0 +39689,Out+of+Touch,324,426,698962117,8966,0 +39690,New+World,433,685,698152377,10297,0 +39691,Ob+Konfederacja,424,316,848915730,9774,0 +39692,Not+2+Day,477,307,698489071,9835,6 +39693,Szlachcic,380,343,698160606,10495,0 +39694,bucksbarzy%C5%84skamiiiru,330,404,848955783,8697,0 +39695,003.+Wehrmacht,335,399,698807570,10411,0 +39696,%3F%3F%3F,490,303,698489071,9971,0 +39697,%230163+Kamil0ss1,469,312,1238300,9860,0 +39698,bucksbarzy%C5%84skamiiiru,335,393,848955783,2239,0 +39699,z+internacionale+01,354,377,3909522,9972,0 +39700,KR%C3%93L+PAPI+WIELKI,649,623,698191218,9985,0 +39701,01.+Tokio,690,479,699804790,11063,0 +39703,Gattacka,679,431,699298370,9364,0 +39704,0046,570,323,699485250,4080,0 +39705,002,659,381,698635863,9301,0 +39707,%7E069.,528,689,7139820,6737,0 +39708,Wioska+Zorro+008,668,594,849080702,12154,0 +39709,A7.,310,544,849095482,4338,0 +39710,TWIERDZA+.%3A044%3A.,683,567,7154207,10359,0 +39711,A000,472,697,699725436,11321,6 +39712,Wyspa_39,501,699,2585846,9638,0 +39713,C015,590,674,9023703,3046,0 +39714,D.035,393,661,849088243,4082,0 +39715,psycha+sitting,456,644,699736927,10311,0 +39716,psycha+sitting,399,669,699736927,6477,0 +39717,Wyspa_21,507,693,2585846,9638,0 +39718,036+-+Nowy+Pocz%C4%85tek...,376,646,699269923,9604,0 +39719,Wioska+barbarzy%C5%84ska,351,368,7462660,6433,0 +39720,North+zeuswielki65,412,327,699796330,2869,0 +39721,Wioska+barbarzy%C5%84ska,327,408,2418002,3717,0 +39722,002,685,430,699738350,9828,0 +39723,K35+-+%5B011%5D+Before+Land,582,322,699088769,9783,0 +39724,%7E%7E049%7E%7E,606,614,7829201,9569,0 +39725,010,690,452,699150527,9835,0 +39726,004.NCT,682,422,9180206,9821,0 +39727,Forteca%2A006%2A,532,696,1078121,7566,0 +39728,K35+-+%5B039%5D+Before+Land,583,325,699088769,5864,0 +39729,0025.+Y+-,695,535,7125212,4478,0 +39730,Wioska+barbarzy%C5%84ska,592,326,699098531,6194,0 +39731,2.Matar%C3%B3,564,684,698215322,6641,0 +39732,Taran,339,615,6180190,10300,0 +39733,Sernik+z+Andzynkami,696,494,699126484,9825,0 +39734,psycha+sitting,405,675,699736927,10178,0 +39735,ZZZ,455,691,8980651,4066,0 +39736,psycha+sitting,406,675,699736927,10311,0 +39737,%2A015%2A,346,388,699273451,10211,0 +39738,KONFA+TO+MARKA%2C+NARKA,314,455,698152377,10311,8 +39739,Dream+on,303,510,698962117,9747,0 +39740,Swoja9,605,668,6528152,8621,0 +39741,Niklowy+gr%C3%B3d,320,421,699377401,7738,0 +39742,I102,684,451,699722599,7998,0 +39743,%4001%40,407,326,699483429,10026,0 +39744,Wioska+barbarzy%C5%84ska,311,554,848901396,3649,0 +39745,Winterhome.061,492,301,848918380,10099,0 +39746,--17--,328,600,8877156,9353,0 +39747,a+mo%C5%BCe+off+%3F+%3A%29,673,403,698768565,8042,0 +39748,D019,622,661,9023703,1000,0 +39749,2.Leon,571,677,698215322,3780,0 +39750,Osada+002,400,619,848912772,10178,0 +39751,003,659,382,698635863,9794,0 +39752,%C5%BBUBR+.%3A%3A.Adaczu%2F16,624,650,33900,3442,0 +39753,%2A022%2A,686,441,698670524,9108,0 +39754,D008,611,663,9023703,10221,0 +39755,Wioska+barbarzy%C5%84ska,334,600,7183372,7547,0 +39756,C0091,302,522,8841266,10252,0 +39757,Wioska+barbarzy%C5%84ska,651,369,7340529,5139,0 +39758,Wioska+barbarzy%C5%84skam+dol,394,669,6948793,9899,0 +39759,0006+Sir+JuriGagarin,442,691,849037407,10495,4 +39760,004,697,516,699150527,10297,0 +39761,%5B0061%5D,447,316,8630972,10495,0 +39762,%230166+Kamil0ss1,471,309,1238300,10178,0 +39763,Kobior,418,328,849072873,8694,0 +39764,-+03+-+Nowe,467,311,848902744,8195,0 +39765,daleko,664,386,699491076,8808,0 +39766,1+CZ%C4%98STOCHOWA,303,478,8048374,9704,0 +39767,033,456,309,2502956,10019,0 +39768,%28027%29Steen,322,568,849098695,3721,0 +39769,Wioska+barbarzy%C5%84ska,476,691,8966820,5565,0 +39770,New+World,425,680,698152377,10292,0 +39771,WioSTa+barbarzy%C5%84ska,691,517,8096537,7136,0 +39772,%3F%3F%3F,484,302,698489071,10160,0 +39773,New+World,432,683,698152377,6303,0 +39774,nr1,584,677,364126,11077,0 +39775,AAA,560,310,1006847,3404,0 +39776,MojeDnoToWaszSzczyt,505,304,9299539,9714,0 +39777,%230266+Gwen1,474,306,1238300,6409,0 +39778,Kokosanka,678,570,7973893,5616,0 +39779,C0007,309,521,8841266,10252,0 +39780,Rubiez11,310,467,699265922,7125,0 +39781,Darma+dla+zawodnika,515,699,8980651,9805,0 +39782,B%23004,690,453,2065730,9797,0 +39783,40.+KaruTown,692,454,849060446,9735,0 +39784,Sernik+z+Andzynkami,696,500,699126484,9797,0 +39785,Ramdzis12,683,420,699738350,7639,4 +39786,010,309,475,2418364,3226,0 +39787,%23016.+Christmas+Tree,445,684,848896948,9448,9 +39788,A+043,365,636,272173,4873,0 +39789,Didek,677,582,849070946,5585,0 +39790,006,696,493,699150527,10311,0 +39791,019%23+Serena,481,695,699605333,10107,0 +39792,Bogine,676,418,699738350,9556,0 +39793,Z+002+Dzier%C5%BConi%C3%B3w,328,596,849084740,9823,0 +39795,Merida.waleczna,593,341,849083294,5967,0 +39796,000+Plutosea,318,569,9280477,10068,0 +39797,%3F%3F%3F,486,301,698489071,10160,0 +39798,01.wiocha,332,590,7183372,10203,0 +39799,022,698,514,699150527,9655,0 +39801,6.C,453,688,699777372,9244,0 +39802,Wioska+l,321,579,699671197,12154,0 +39803,C0120,307,536,8841266,10357,0 +39804,001,585,678,699567608,10063,0 +39805,Wioska+barbarzy%C5%84ska,634,351,9291984,4292,0 +39806,B7.,311,545,849095482,2712,0 +39807,C.014,700,490,9188016,4346,0 +39808,027+Barba+9,306,539,926823,3614,0 +39809,C0139,312,531,8841266,10252,0 +39810,1+Ignac%C3%B3w,302,479,8048374,8535,0 +39811,bucksbarzy%C5%84skamiiiru,333,405,848955783,8169,0 +39812,Wioska+barbarzy%C5%84ska,396,668,699736927,4182,0 +39813,0171,372,641,7085510,10216,0 +39814,Gattacka,689,434,699298370,9741,0 +39815,Ziomek+Vampirki%3A%29,681,579,849070946,10495,0 +39816,FAKE+OR+OFF,409,328,698231772,10068,4 +39817,D002,610,657,9023703,10226,0 +39818,%4007%40,407,328,699483429,7068,0 +39819,C0078,303,525,8841266,10252,0 +39820,KR%C3%93L+PAPI+WIELKI,695,517,698191218,6421,0 +39821,Wioska+barbarzy%C5%84ska,581,328,699710633,2497,0 +39822,Komornicy+015,349,621,699336777,4023,0 +39823,Wioska+barbarzy%C5%84ska,457,694,699777372,5343,0 +39824,056,514,699,2293376,9049,0 +39825,kamilkaze135+%2306,661,390,699705601,9805,0 +39826,C0141,313,534,8841266,10252,0 +39827,123+invidia,514,698,849093426,7420,0 +39828,A+035,363,641,699269923,8623,0 +39829,Wioska+barbarzy%C5%84ska,338,387,698807570,10048,0 +39830,Poiuytrewas,566,316,699733098,12154,0 +39831,AAA,546,306,1006847,9721,0 +39832,C.010,700,488,9188016,10003,0 +39834,Wioska+barbarzy%C5%84ska,327,598,7183372,6709,0 +39835,z.+Lecimy+tu,355,373,3909522,10165,0 +39836,022+Fervex,644,369,9029928,1700,0 +39837,Oslandia,379,345,849099864,5676,0 +39838,Mroczny+Zamek+018,352,630,272173,10173,0 +39839,Moldor+6,633,356,849049045,11307,0 +39840,z+internacionale+008,351,379,3909522,12154,0 +39841,AAA,538,307,1006847,9112,0 +39842,Szale,462,691,698585370,9770,0 +39843,Wioska+barbarzy%C5%84ska,698,479,699429153,9825,0 +39844,001,383,661,699269923,6670,0 +39845,%23090%23,631,643,692803,9501,0 +39846,Wioska+barbarzy%C5%84ska,309,555,5997814,3861,0 +39847,B.07+duchy+serca+puszczy,554,317,849026145,3385,0 +39848,007,313,553,8153179,5654,0 +39849,BRZEG+JORDANU+%7C+003,694,525,9228039,6591,6 +39850,Twierdza+5,509,301,699208929,7289,0 +39851,005,698,509,7418168,9761,0 +39852,Zimowe+Majtki,310,465,849074508,2892,0 +39853,%5B001%5D%5BChec+IT%5D,606,331,699710633,9896,0 +39854,Wioska+barbarzy%C5%84ska,400,336,699406776,745,0 +39855,021,679,582,6160655,6813,0 +39857,%5B0041%5D+XXX,437,317,8630972,10495,0 +39858,Psycho+to+Marka%2C+Narka+%21,318,575,698704189,9711,0 +39859,z+181-A011,353,375,3909522,6109,0 +39860,-+Dracabra+-,657,618,849009623,6512,0 +39861,Wioska+barbarzy%C5%84ska,655,611,1900364,2826,0 +39863,Tu+jest+przysz%C5%82o%C5%9B%C4%87,661,398,699491076,7704,0 +39865,psycha+sitting,397,669,699736927,8129,0 +39867,KR%C3%93L+PAPI+WIELKI,639,642,698191218,9957,0 +39868,038.+Wioska+barbarzy%C5%84ska,696,467,7494497,10237,0 +39869,036Teatr,476,693,698620694,6304,0 +39870,%2A%2A%2A%2A%2A+%2A%2A%2A,564,682,9091557,3144,0 +39871,komandos48,499,698,7976264,5154,0 +39872,8_Franekkimono510_8,364,359,849099422,4074,0 +39873,032,453,306,2502956,9911,0 +39874,KONFA+TO+MARKA%2C+NARKA,305,455,698152377,10290,0 +39875,Dream+on,306,475,698962117,9744,0 +39876,Wioska+barbarzy%C5%84ska,671,600,3467919,6470,0 +39877,Wyspa_34,506,693,2585846,9638,0 +39878,AAA,551,314,1006847,8941,0 +39879,%2A030%2A,684,442,698670524,5071,0 +39880,B026,514,305,699208929,7338,0 +39881,001,700,508,7418168,10019,0 +39882,Ananasowy+Gr%C3%B3d,627,349,699580120,4613,0 +39883,Out+of+Touch,315,435,698962117,1657,0 +39884,z+181-A012,353,378,3909522,7775,0 +39885,Wioska+orkakk,335,606,7183372,10097,0 +39886,Barbara,613,336,849056744,6414,0 +39887,016,309,542,849098688,9738,0 +39888,Zeta+Reticuli+O,415,324,699323302,10997,0 +39889,Zeta+Reticuli+O,413,329,699323302,10728,0 +39890,Wioska+barbarzy%C5%84ska,587,325,828637,9366,0 +39891,Wioska+barbarzy%C5%84ska,672,407,849095068,9111,0 +39892,014+%2A+Lady+Porto+%2A,692,505,699406750,6408,0 +39893,Czaniec,541,308,7139853,4524,0 +39894,Osada+koczownik%C3%B3w,329,586,7183372,5577,6 +39896,bucksbarzy%C5%84skamiiiru,331,401,848955783,5774,0 +39897,015+nie+wiem+czy+bylo+warto,513,691,849093426,10237,0 +39898,A000,470,696,699725436,9473,0 +39899,054.+F64D,486,632,699494488,9206,0 +39900,Wioska+barbarzy%C5%84ska,459,690,699777372,4747,0 +39901,%5B056%5D+%3F%3F%3F%3F,683,426,849095068,7157,0 +39902,Wioska,548,686,7860453,4960,0 +39903,P%7C002%7C,454,688,699393742,7634,0 +39904,z181_02,313,440,393668,9882,0 +39905,0282,567,685,698659980,9189,0 +39906,034,478,629,699336777,9825,0 +39907,Mroczny+Zamek+024,353,633,698908184,6170,0 +39908,%5B0113%5D,438,309,8630972,10444,0 +39909,014+NAWRA,660,608,849048867,8339,0 +39910,%3F%3F%3F,464,307,698489071,5765,0 +39911,%3A%3A%3A+WEST+%3A%3A%3A,305,491,848917570,4156,0 +39912,004+%2A+Lady+Porto+%2A,691,504,699406750,12154,0 +39913,psycha+sitting,415,673,699736927,10311,0 +39915,Dream+on,305,503,698962117,4655,0 +39916,kamilkaze135+%2302.1,657,392,699705601,6782,0 +39917,003,700,505,7418168,10008,0 +39918,047,477,626,699336777,9902,0 +39919,Taran,325,591,6180190,10291,0 +39920,%23%23%23055%23%23%23,590,673,698285444,10495,0 +39921,C109,366,639,699383279,4438,0 +39923,011,634,636,849099544,6650,0 +39924,%23027%23,616,657,692803,9761,0 +39925,XDX,609,339,699098531,8119,0 +39926,Wioska+barbarzy%C5%84ska,390,666,699269923,9355,0 +39927,B.01+duchy+serca+puszczy,554,316,849026145,7772,0 +39929,SOKzGUMIjag%C3%B3d,647,379,849059491,9568,0 +39930,010+%2A+Lady+Porto+%2A,695,504,699406750,7947,0 +39931,New+World,436,674,698152377,10291,0 +39932,KR%C3%93L+PAPI+WIELKI,637,645,698191218,10071,0 +39933,033,312,566,849098688,3824,0 +39934,Wioska+Sir+Lewan,663,615,2362058,9069,0 +39935,005+%2A+Lady+Porto+%2A,695,506,699406750,12135,3 +39936,Gattacka,688,432,699298370,9248,0 +39938,044+InnyNizWszyscy,536,387,699491076,10001,0 +39939,Szlachcic,397,356,3484132,10481,0 +39940,Szlachcic+%21%21%21,506,476,699098531,9621,0 +39941,Wioska+barbarzy%C5%84ska,631,351,9291984,4106,0 +39942,TWIERDZA+.%3A020%3A.,684,572,7154207,10355,0 +39943,%2136+63+Nicani,636,364,698361257,10336,6 +39944,033+barbarzy%C5%84ska,638,422,9238175,7821,0 +39945,Zagroda,603,671,6528152,8419,0 +39946,Wioska+barbarzy%C5%84ska,651,383,849041192,3195,0 +39947,okk,654,398,699738350,9800,0 +39948,Taran,335,612,6180190,9956,0 +39949,Orze%C5%82+7,696,485,699413581,6482,0 +39950,%5B004%5D+Shitstorm%21,686,428,849095068,10495,0 +39951,%2136+74+Costisa,648,371,698361257,9860,0 +39952,Wioska+barbarzy%C5%84ska,691,495,699429153,8961,0 +39953,Szlachcic,377,352,698160606,6468,0 +39954,FENDI,311,462,699794765,5594,0 +39955,Zeta+Reticuli+O,418,327,699323302,10997,0 +39956,Andrych%C3%B3w,541,311,7139853,7026,0 +39957,FP012,479,696,699605333,10342,0 +39958,B003,518,303,699208929,10019,0 +39959,B.09+duchy+serca+puszczy,552,314,849026145,2276,0 +39960,Wioska+barbarzy%C5%84ska,387,656,699269923,9485,0 +39961,009.+Bia%C5%82o%C5%82%C4%99ka,693,472,7494497,10237,0 +39963,%3D%7C21%7C%3D,666,390,9101574,10495,0 +39964,%21%2136+85+Dumbravei,658,389,698361257,8962,0 +39965,Wioska+073,663,601,848971079,9761,0 +39966,0.15+Szale,468,693,699725436,9462,0 +39967,Wioska+barbarzy%C5%84ska,530,306,7758085,8454,0 +39968,%23%23%23056%23%23%23,595,672,698285444,10495,0 +39969,C0193,302,528,8841266,6703,0 +39970,KR%C3%93L+PAPI+WIELKI,654,621,698191218,10617,0 +39971,005.Stradi,441,314,698365960,10495,0 +39972,089+invidia,516,698,849093426,8353,0 +39973,Wioska+barbarzy%C5%84ska,309,559,5997814,3600,0 +39974,psycha+sitting,401,668,699736927,10311,0 +39975,050.+Wioska+barbarzy%C5%84ska,691,468,7494497,9958,0 +39976,Wioska+Wiki+7,527,696,849100354,7285,0 +39977,Boh81%2F01s,306,469,848889556,9198,0 +39978,Wioska+barbarzy%C5%84ska,684,563,7038651,4014,0 +39979,008,687,446,699150527,9885,0 +39980,Forteca%2A005%2A,534,695,1078121,9192,0 +39981,043.+Night+Raid,489,700,699684062,7083,0 +39982,%23088%23,619,659,692803,9761,0 +39983,023%23+Xenia,488,700,3933666,5402,0 +39984,011+%2A+Lady+Porto+%2A,691,505,699406750,5818,0 +39985,042.+Night+Raid,489,701,699684062,5058,0 +39986,R+029+%7ERivendell%7E,495,694,699195358,10019,0 +39987,033%23+Zoe,483,692,3933666,4345,0 +39988,WB10,323,412,356642,6428,0 +39989,xzc,498,698,8827094,8484,0 +39990,Wioska+barbarzy%C5%84ska,316,579,699671197,8965,0 +39991,Wioska+Adam19955,444,683,849048562,8663,0 +39992,023,699,516,699150527,9014,0 +39993,Wow3,372,357,698160606,12154,0 +39994,052.+Kaczendzonga,691,548,1601917,7724,0 +39995,Kotlarka,574,685,698723158,8285,0 +39996,Wioska+barbarzy%C5%84ska,409,331,699406776,1978,0 +39997,Wioska+KATOZAUR,495,696,8827094,10452,0 +39998,Wioska+barbarzy%C5%84ska,689,549,17714,8312,0 +39999,0013,423,323,2321390,7919,0 +40000,Dream+on,304,503,698962117,4258,0 +40001,Darma+dla+zawodnika,513,697,848928624,6243,0 +40002,054.+Likawitos,690,552,1601917,7205,0 +40003,BRZEG+JORDANU+%7C+007,692,520,9228039,4439,0 +40004,030+-+Nowy+Pocz%C4%85tek...,375,648,699269923,9947,0 +40005,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,472,694,8980651,9835,0 +40006,004,657,386,698635863,9288,0 +40007,R+031,494,696,699195358,9010,0 +40008,A+075,362,638,272173,4690,0 +40009,village+2,646,364,7340529,8819,0 +40010,%3A%3A%3A+W+%3A%3A%3A+II,304,501,848917570,2871,0 +40011,%23Hiroszima,315,560,849099601,2479,0 +40012,New+World,441,684,698152377,10295,0 +40013,Wioska+7,643,638,1647052,1915,0 +40014,008+NAWRA,659,612,849048867,8921,0 +40015,051.+Wioska+barbarzy%C5%84ska,694,472,7494497,9868,0 +40016,Stegny,369,361,849099434,7206,0 +40017,MojeDnoToWaszSzczyt,500,297,9299539,9972,0 +40018,KR%C3%93L+PAPI+WIELKI,655,623,698191218,10000,0 +40019,MojeDnoToWaszSzczyt,498,303,9299539,9957,0 +40020,Dream+on,300,498,698962117,4602,0 +40021,Wioska+barbarzy%C5%84ska,673,600,3467919,3845,0 +40022,Wioska+barbarzy%C5%84ska,329,410,2418002,3289,0 +40023,061.,660,395,849094609,10019,4 +40024,011,688,453,699150527,9821,0 +40025,005,662,383,698635863,10127,0 +40026,%23026%23,620,653,692803,9761,0 +40027,ZA26,321,414,356642,9835,0 +40028,%230112+Zapiecek,478,540,698704189,8615,0 +40029,136+invidia,539,692,849093426,8877,0 +40030,Wioska+barbarzy%C5%84ska,390,659,699269923,9469,0 +40031,Taran,330,589,6180190,6873,0 +40032,30.+Lets+go,559,318,849099696,6493,0 +40033,O036,344,626,272173,9955,0 +40034,A+101,361,637,698908184,4399,0 +40035,013.Stradi,429,317,698365960,10273,0 +40036,2.Pampeluna,574,682,698215322,5037,0 +40037,%230281+Marass,473,303,1238300,10410,0 +40038,Swoja,603,667,6528152,8004,0 +40039,Pd+05,359,633,698908184,4451,0 +40040,Darma+dla+zawodnika,324,588,6180190,3382,0 +40041,%5B0097%5D,433,319,8630972,10495,0 +40042,0011+mackobl14,440,689,849037407,9907,0 +40043,ZZZ,514,700,8980651,9745,0 +40044,Wyspa_30,507,695,2585846,9638,0 +40045,Wie%C5%9B+05,339,612,9199885,4196,0 +40046,bucksbarzy%C5%84skamiiiru,331,400,848955783,10142,0 +40047,Dream+on,304,498,698962117,9505,0 +40048,wioska,622,343,848967422,10611,0 +40049,Moldor+12,635,353,849049045,10795,0 +40050,%5B0134%5D,451,306,8630972,9675,0 +40051,Wioska+holajza,563,688,698723158,6093,0 +40052,002.,321,589,3475079,10580,4 +40053,001,389,665,8839403,9867,0 +40054,bucksbarzy%C5%84skamiiiru,335,397,848955783,5809,0 +40056,New+World,427,682,698152377,10294,0 +40057,009,695,464,699150527,9889,0 +40058,ZZZ,455,694,8980651,4792,0 +40059,K35+-+%5B028%5D+Before+Land,573,322,699088769,7318,0 +40060,Winterhome.062,490,301,848918380,10070,0 +40061,C05+Che%C5%82mno,348,377,3909522,3626,0 +40062,Klaudek20,635,363,849092309,3280,0 +40063,bucksbarzy%C5%84skamiiiru,335,396,848955783,6761,0 +40064,KR%C3%93L+PAPI+WIELKI,656,624,698191218,10000,0 +40065,019.+Taka+wioska+nie+istnieje,694,469,7494497,10259,0 +40066,O098,347,623,272173,9687,0 +40067,%23011.+Ulryk+von+Junningen,431,687,848896948,10030,0 +40068,006,661,381,698635863,9753,0 +40069,001,699,509,699150527,10311,0 +40070,MojeDnoToWaszSzczyt,500,307,9299539,9958,0 +40071,Wyspa_43,510,696,2585846,9638,0 +40072,Gattacka,678,424,699298370,9361,0 +40073,%C5%BBUBR+PSYCHIATRYK+014,625,656,33900,6051,0 +40074,Rubiez9,309,483,699265922,8468,0 +40075,Wioska+barbarzy%C5%84ska,652,373,7340529,9193,0 +40077,%2A194%2A,367,359,699273451,10211,0 +40078,C005,672,586,8138506,9140,0 +40079,001+%2A+Lady+Porto+%2A,696,507,699406750,12154,0 +40080,psycha+sitting,400,674,699736927,10178,0 +40081,bucksbarzy%C5%84skamiiiru,332,392,848955783,1743,0 +40082,2.Saragossa,573,682,698215322,6099,0 +40083,FAKE+OR+OFF,413,321,698231772,9837,0 +40084,042+invidia,529,692,849093426,10237,0 +40085,Szlachcic,377,353,698160606,5541,0 +40086,Wioska+barbarzy%C5%84ska,669,399,8675636,9631,0 +40087,002,639,634,849099544,9145,0 +40088,Wioska+barbarzy%C5%84ska,532,306,849044705,2399,0 +40089,Wonderwall,325,552,698962117,9484,0 +40090,KR%C3%93L+PAPI+WIELKI,658,619,698191218,10000,0 +40091,Osada,506,456,699098531,9637,0 +40092,Jan+Stuttgart+K,690,458,879782,9670,0 +40093,Sok%C3%B3%C5%82,703,481,849099640,2892,0 +40094,FENDI,307,459,699794765,4500,0 +40095,039.+Wioska+barbarzy%C5%84ska,694,467,7494497,10223,0 +40096,%23qatar,313,554,849099601,4651,0 +40097,Osada+koczownik%C3%B3w,533,308,849044705,8521,2 +40098,Twierdza+4,518,307,699208929,9645,0 +40099,032+-+Nowy+Pocz%C4%85tek...,373,646,699269923,9950,0 +40100,Wioska+barbarzy%C5%84ska,529,306,7758085,9486,0 +40101,Bridge,666,400,1086351,4073,0 +40102,bucksbarzy%C5%84skamiiiru,326,401,848955783,5634,0 +40103,Wioska+barbarzy%C5%84ska,541,312,849044705,2568,0 +40104,%3F%3F%3F,483,302,698489071,10160,0 +40105,K35+-+%5B012%5D+Before+Land,576,321,699088769,9783,0 +40106,Wioska+barbarzy%C5%84ska,343,612,9199885,5840,0 +40107,xzc,502,703,8827094,9806,0 +40108,Na+Kra%C5%84cu+%C5%9Awiata+008,629,347,9291984,10495,0 +40109,Napewno+to+nie+jest+off,592,325,848912265,2436,0 +40110,O139,348,624,272173,6604,0 +40111,z181_17,308,445,393668,9696,0 +40112,Wioska+Lord+Sir+szok,389,660,8868716,3412,0 +40113,%230211+Segadorr+dar,457,309,1238300,7220,0 +40114,Z+003,328,595,849084740,7008,0 +40115,023+Drwal,648,372,9029928,1612,0 +40116,%2136+75+Fratauti+Vechi,652,372,698361257,9925,0 +40117,%2A%2AINTERTWINED%2A,503,693,698704189,9711,0 +40118,044,631,353,849010255,10019,0 +40119,KR%C3%93L+PAPI+WIELKI,640,639,698191218,10257,0 +40120,D016,617,659,9023703,8035,0 +40121,Killer+Queen,582,674,698723158,3862,0 +40122,-002-+sz,356,640,698908184,9998,0 +40123,023.+Night+Raid,474,698,699684062,10011,0 +40124,Rubiez+8,308,484,699265922,6894,0 +40125,K35+-+%5B024%5D+Before+Land,582,323,699088769,11130,0 +40126,Wioska+barbarzy%C5%84ska,336,391,698807570,10049,0 +40127,Darma+dla+zawodnika,515,700,8980651,6379,0 +40128,A+056,362,641,699269923,9392,0 +40129,7.62+mm,490,426,699777234,10019,0 +40130,Szale,468,690,699725436,9344,0 +40131,Twierdza,604,666,6528152,9419,0 +40132,TWIERDZA+.%3A017%3A.,688,564,7154207,10406,0 +40133,Wioska+barbarzy%C5%84ska,563,317,699072129,5176,0 +40134,001+sadeg,518,698,849093426,10237,0 +40135,100+Konan,687,437,7092442,8210,0 +40137,%23%23%23001%23%23%23,593,685,698285444,10495,0 +40138,061.+W%C5%82ochy,694,476,7494497,9642,0 +40139,Bydlak777,648,439,7973893,2896,0 +40140,XDX,607,334,699098531,8864,0 +40141,AAA,551,306,1006847,8994,1 +40142,Wioska+6,642,631,1647052,3515,0 +40143,-001-,376,647,699269923,9864,0 +40144,Out+of+Touch,316,429,698962117,6569,0 +40145,Wioska+barbarzy%C5%84ska,658,387,699580120,6654,0 +40146,boh81%2F52,300,472,848889556,6850,0 +40148,Abdoulxx,474,654,849089459,10795,0 +40149,016,396,329,8153941,3397,0 +40150,-+241+-+SS,562,682,849018239,8469,0 +40151,Szlachcic,374,353,698160606,5170,0 +40152,Wioska+barbarzy%C5%84ska,329,415,699856962,8013,0 +40153,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,477,695,8980651,3769,0 +40154,kamilkaze135+%2305,662,389,699705601,9022,0 +40155,Out+of+Touch,320,419,698962117,2505,0 +40156,%3D%7C22%7C%3D,668,392,9101574,4089,0 +40157,psycha+sitting,416,678,699736927,10178,0 +40158,Didusia+ziom,678,585,3652727,2383,0 +40159,048+invidia,527,697,849093426,9419,0 +40161,012+%2A+Lady+Porto+%2A,697,505,699406750,8345,0 +40162,07.+Piek%C5%82o,690,477,699804790,9362,0 +40163,Darma+dla+zawodnika,318,578,6180190,9818,8 +40164,C0011,302,520,8841266,10252,0 +40165,048.+K2,692,540,1601917,7515,0 +40166,047,447,686,849099876,10495,0 +40167,Sernik+z+Andzynkami,697,502,699126484,9744,0 +40168,0399,572,679,698659980,10019,0 +40169,A025,603,662,9023703,10130,0 +40170,psycha+sitting,421,683,699736927,10311,0 +40171,Szlachcic,377,343,698160606,8103,0 +40172,005+NAWRA,665,611,849048867,10362,0 +40173,C106,365,643,699383279,3998,0 +40174,Wioska+barbarzy%C5%84ska,652,384,849041192,2158,0 +40175,110,593,671,849097799,7798,0 +40176,022+Sigurd,629,650,699373599,10728,8 +40177,Winterhome.052,497,307,848918380,10178,0 +40178,Out+of+Touch,322,428,698962117,9630,0 +40179,Winterhome.034,495,311,848918380,10178,0 +40180,Darma+dla+zawodnika,315,578,699671197,5164,0 +40181,Ob+Konfederacja,434,316,848915730,10072,2 +40182,B021,526,305,699208929,10204,0 +40183,wioska,623,345,849102068,9971,0 +40184,0012,361,362,699644448,2770,0 +40185,Winterhome.020,492,309,848918380,10178,0 +40186,022+MONETKI,666,485,7588382,9803,0 +40187,Wioska+barbarzy%C5%84ska,383,663,699269923,9306,0 +40188,C0121,306,533,8841266,10252,0 +40189,004.+Wawer%7BNANI%3F%21%7D,700,485,7494497,10237,0 +40190,Winterhome.066,492,303,848918380,10178,0 +40191,%5B0047%5D,435,315,8630972,10495,0 +40192,Wioska+barbarzy%C5%84ska,308,553,5997814,5616,0 +40193,Szlachcic,383,341,698160606,8116,0 +40194,%5B0048%5D,443,312,8630972,10495,0 +40195,Wyspa_36,508,696,2585846,6358,0 +40196,C105,367,645,699383279,9556,0 +40197,123,473,690,9003698,10373,0 +40198,WP2,327,415,849096547,2641,0 +40199,Gracze,689,531,848932879,10634,0 +40200,Wieliczka,582,678,698723158,2014,0 +40201,CALL+1052,651,627,699784536,10311,0 +40202,Wioska+barbarzy%C5%84ska,645,373,7973893,5686,0 +40203,%C5%BBUBR+PSYCHIATRYK+022,621,654,33900,5831,0 +40204,10_Franekkimono510_10,367,352,849099422,3296,0 +40205,Gattacka,688,437,699298370,9353,0 +40206,C004,673,585,8138506,5403,0 +40207,Hofek+25.,668,398,699491076,5071,0 +40208,BRICKLEBERRY,550,309,699072129,7473,0 +40209,B10,466,698,698652014,5469,0 +40210,FAKE+OR+OFF,419,316,698231772,9822,0 +40211,B06,688,550,848995478,6219,0 +40212,Out+of+Touch,320,424,698962117,8965,0 +40213,055+BanaN,692,525,2135129,10161,0 +40214,B04,505,695,698652014,9835,0 +40215,MojeDnoToWaszSzczyt,506,305,9299539,9957,0 +40216,z181_05,314,439,393668,9882,0 +40217,X+002,596,331,6384450,7143,7 +40218,I074,692,457,699722599,9161,0 +40219,Zeta+Reticuli+O,417,326,699323302,11417,0 +40220,kamilkaze135+%2304,661,396,699705601,9805,0 +40221,Wioska+barbarzy%C5%84ska,627,351,7555180,3876,0 +40222,Mefedron+05,393,338,3484132,7734,0 +40223,Wioska+barbarzy%C5%84ska,647,365,6625437,4181,0 +40224,A3.,314,545,849095482,4787,0 +40225,Wioska+6,507,304,849099342,4606,0 +40226,075g,312,557,698641566,8126,0 +40227,XXXXXXXXXXXXXX,368,651,699269923,10068,9 +40228,-022-+S,618,344,849099276,3044,0 +40229,A4.+Puk...+Puk...+Komornik,308,543,849095482,9711,3 +40230,FAKE+OR+OFF,407,322,698231772,9814,0 +40231,B027,514,302,699208929,9095,0 +40232,KR%C3%93L+PAPI+WIELKI,699,526,698191218,8574,0 +40233,SOKzGUMIjag%C3%B3d,603,338,849059491,6100,9 +40234,z181_29,310,436,393668,7972,0 +40235,KR%C3%93L+PAPI+WIELKI,652,621,698191218,9960,0 +40236,Wioska+barbarzy%C5%84ska,533,304,8606809,2395,0 +40237,EO+EO,301,515,699697558,10019,0 +40238,%23089%23,630,644,692803,9761,0 +40239,Katwaijk,624,343,9103424,4410,0 +40240,Taran,338,610,6180190,9962,0 +40241,Gattacka,688,435,699298370,9711,0 +40242,029,305,545,9280477,7251,0 +40243,D006,610,659,9023703,5815,0 +40244,B007,516,307,699208929,10161,0 +40245,bucksbarzy%C5%84skamiiiru,328,404,848955783,10654,0 +40246,-28-,642,359,699837826,2859,0 +40247,New+World,425,679,698152377,10292,0 +40248,TWIERDZA+.%3A010%3A.,688,570,7154207,10140,0 +40249,Wioska+Totomoose+2,315,414,849100744,6555,0 +40250,032+-+Fuenlabrada,693,527,698342159,9074,0 +40251,A+076,364,640,699269923,4527,0 +40252,193,455,696,849099876,3679,0 +40253,Wioska+barbarzy%C5%84ska,308,546,5997814,5764,0 +40254,psycha+sitting,398,672,699736927,6152,0 +40255,Wioska+barbarzy%C5%84ska,336,389,698807570,8873,0 +40256,Rubiez,307,482,699265922,9816,2 +40257,bucksbarzy%C5%84skamiiiru,329,398,848955783,9957,0 +40258,670%7C372,658,388,699580120,4632,0 +40259,009+NAWRA,666,608,849048867,10311,0 +40260,%C5%BBUBR+PSYCHIATRYK+016,622,650,33900,7817,0 +40261,Wioska+Vallias,475,366,699883079,6166,0 +40262,KR%C3%93L+PAPI+WIELKI,651,630,698191218,10000,0 +40263,FAKE+OR+OFF,419,320,698231772,9814,0 +40264,Out+of+Touch,322,429,698962117,9867,0 +40265,Moldor+002,631,355,849049045,11138,1 +40266,Szlachcic,384,340,3484132,10559,0 +40267,055+invidia,520,698,849093426,7893,0 +40268,%23Tokyo%23,317,555,849099601,3268,0 +40269,0sada+Cegielnia,567,310,699883079,9046,2 +40270,psycha+sitting,402,674,699736927,10178,0 +40271,Wioska+barbarzy%C5%84ska,621,341,8740199,11130,0 +40272,006.+Praga+P%C3%B3%C5%82noc,699,478,7494497,9894,1 +40273,007.+%C5%81,325,583,698704189,3744,0 +40274,Darma+dla+zawodnika,318,583,6180190,3159,0 +40275,%23030%23,617,652,692803,9761,0 +40276,2.Marbella,579,677,698215322,9464,0 +40278,Forteca%2A007%2A,533,697,1078121,5846,0 +40279,Swoja3,603,668,6528152,8379,0 +40280,%3F%3F%3F,486,302,698489071,10083,0 +40281,%7E+OZESEK+%7E,315,446,698540331,2246,0 +40282,036,307,555,5997814,7442,0 +40283,035.+Aquila,613,641,699703642,9502,0 +40284,psycha+sitting,412,673,699736927,10178,0 +40285,%3F%3F%3F,485,308,698489071,8997,0 +40286,Winterhome.065,491,312,848918380,8838,0 +40287,%3F%3F%3F,479,304,698489071,5013,0 +40288,Wioska+barbarzy%C5%84ska,687,560,698666810,11370,0 +40289,Wioska+barbarzy%C5%84ska,583,321,828637,10495,0 +40290,Osada+koczownik%C3%B3w,529,304,8606809,7139,1 +40291,Ma%C5%82y+M%C4%99dromierz,410,578,698769107,8910,0 +40292,Wioska+barbarzy%C5%84ska,695,487,699429153,9825,0 +40293,Szlachcic,389,341,3484132,9951,0 +40294,I075+Wakacje+w+Lesbos,688,460,699722599,10117,0 +40296,bucksbarzy%C5%84skamiiiru,335,386,848955783,5572,0 +40297,S001,599,675,8627359,9203,0 +40298,001,478,696,699639005,2287,0 +40299,Didek,683,583,849070946,1372,0 +40300,057,630,353,849010255,10160,8 +40301,01Gato,603,337,699548295,8507,0 +40302,Wioska+Zorro+002,674,598,849080702,12154,0 +40303,%23waj,483,699,699605333,9676,0 +40304,Wioska+04,571,315,849067192,3166,0 +40306,Winterhome.068,487,307,848918380,9336,0 +40307,Osada+koczownik%C3%B3w,651,625,6417987,10474,8 +40308,OFF,661,604,849014413,10418,0 +40309,076g,315,559,698641566,6822,0 +40310,C+021,691,522,8078914,6477,0 +40312,Wioska+barbarzy%C5%84ska,534,304,849044705,4819,0 +40313,-+199+-+SS,559,692,849018239,8995,0 +40314,Out+of+Touch,314,424,698962117,8593,0 +40315,EE01,620,658,8627359,9231,0 +40316,C0075,307,523,8841266,10252,0 +40317,Wioska+2,342,383,699541376,3385,0 +40318,Twierdza+Modlin,302,480,849095376,10330,0 +40319,Szale,468,691,698585370,9555,0 +40320,psycha+sitting,405,667,699736927,7608,0 +40321,Wioska+6,503,304,849050849,4348,0 +40322,KR%C3%93L+PAPI+WIELKI,637,644,698191218,10206,7 +40323,WB07,324,406,356642,6453,0 +40324,%3D%7C23%7C%3D,668,390,9101574,10495,0 +40325,Opuszczona+Wioska,692,543,848932879,2662,0 +40326,Wielgie,573,687,698723158,8994,0 +40327,R+028+%7EAnarchia%7E,496,695,699195358,10019,0 +40328,Taran,343,610,6180190,6947,0 +40329,Radek,677,419,699738350,9714,0 +40330,A+088,364,644,6948793,2701,0 +40331,035+invidia,529,697,849093426,10237,0 +40332,Gattacka,679,430,699298370,9251,0 +40333,-+148+-+SS,541,688,849018239,9892,0 +40334,005%23+Guba,485,701,3933666,10114,0 +40335,Sernik+z+Andzynkami,699,501,699126484,9797,0 +40336,-+173+-+SS+xDDDDDD,549,694,849018239,10000,0 +40337,KR%C3%93L+PAPI+WIELKI,696,529,698191218,8009,0 +40339,Wioska+lV,317,579,699671197,9489,0 +40342,KR%C3%93L+PAPI+WIELKI,620,661,698191218,9425,0 +40344,Hofek+24.,665,398,699491076,6372,0 +40345,_PUSTA%2B,688,543,699628084,8815,0 +40346,D08,666,556,848995478,10776,0 +40347,37.+KaruTown,692,455,849060446,9735,0 +40348,Wiejska7,601,663,6528152,8742,0 +40349,taran+4,592,321,7340529,9186,0 +40350,Darma+dla+zawodnika,319,583,6180190,8528,0 +40351,bucksbarzy%C5%84skamiiiru,329,394,848955783,9855,0 +40352,KR%C3%93L+PAPI+WIELKI,653,621,698191218,10162,7 +40353,012,608,336,8842936,10541,0 +40354,Wiejska6,602,672,6528152,8609,0 +40355,New+World,430,685,698152377,10292,0 +40356,MojeDnoToWaszSzczyt,510,302,9299539,6727,0 +40357,z181_09,310,443,393668,9882,0 +40358,0115,700,499,699429153,9966,0 +40359,%5B0216%5D,301,508,8630972,7094,0 +40360,Wioska+2,341,381,7462660,7792,0 +40361,004,613,334,8842936,10432,0 +40363,015.+czego+chcesz+dziewczyno,692,472,7494497,9888,0 +40364,075,581,620,698999105,8858,0 +40365,wiocha,617,664,848909464,10319,0 +40366,Wioska+barbarzy%C5%84ska,371,653,699269923,9082,0 +40367,Osada+koczownik%C3%B3w,307,547,5997814,5742,7 +40368,New+World,428,683,698152377,10290,0 +40369,%23008,313,568,849097898,4235,0 +40370,Klaudek27,637,353,9291984,3384,0 +40371,yyy,689,539,699316421,9532,0 +40372,Zasiedmiog%C3%B3rogr%C3%B3d,536,424,699433558,7092,0 +40373,%23%23%23057%23%23%23,587,680,698285444,10495,0 +40374,Dream+on,303,493,698962117,9497,0 +40375,Old+Trafford,665,616,849096631,9125,0 +40376,C0095,300,519,8841266,10252,0 +40377,By%C5%82e%C5%9B+w+porz%C4%85dku,366,651,699269923,10078,0 +40378,Sernik+z+Andzynkami,698,495,699126484,9744,0 +40379,D_2,529,305,3377827,8417,0 +40380,C009,598,668,9023703,8810,0 +40381,Wioska+ShOcK,419,321,591733,10021,0 +40382,Mefedron+08,392,338,3484132,5958,0 +40383,Sernik+z+Andzynkami,698,499,699126484,9754,0 +40384,%23066%23,619,656,692803,9761,0 +40385,Wioska+barbarzy%C5%84ska,548,310,699072129,5096,0 +40386,001+NAWRA,659,609,849048867,10395,0 +40387,024,627,644,699373599,10030,0 +40388,-+Cradabra+-,661,615,849009623,5185,0 +40389,X+%7C+Forest+Cyaaaanku,307,466,699213622,10000,0 +40390,.achim.,480,304,6936607,10099,0 +40391,112,594,669,849097799,6354,0 +40392,Darma+dla+zawodnika,319,584,6180190,4913,0 +40393,Wioska+barbarzy%C5%84ska,564,312,699072129,8011,0 +40394,KR%C3%93L+PAPI+WIELKI,648,635,698191218,10294,0 +40395,003,383,660,699269923,9545,0 +40396,Taran,341,607,6180190,10303,0 +40397,Bolusiowo,307,480,8048374,6616,0 +40400,055.+Wioska+barbarzy%C5%84ska,690,469,7494497,9112,0 +40401,B%23014,695,453,2065730,9797,0 +40402,a+mo%C5%BCe+off+%3F+%3A%29,670,403,698768565,5633,0 +40403,%2A021+GAWRA%2A,312,428,2415972,9006,0 +40404,TWIERDZA+.%3A031%3A.,684,564,699272880,10198,0 +40406,Wioska+barbarzy%C5%84ska,393,668,6948793,9899,0 +40407,Wioska+barbarzy%C5%84ska,616,341,699433558,4849,0 +40408,%2302,555,307,699072129,9582,0 +40409,Gattacka,617,385,699298370,9372,0 +40410,Dream+on,301,490,698962117,9506,2 +40411,Wioska+Wodzu002,552,693,7860453,6680,0 +40412,.achim.,483,296,6936607,10838,0 +40413,Dreamland,669,403,1086351,3409,0 +40414,Darma+dla+zawodnika,315,577,6180190,9821,8 +40415,142+invidia,541,694,849093426,5826,0 +40416,005,306,478,2418364,6108,0 +40417,New+World,435,687,698152377,5905,0 +40418,TWIERDZA+.%3A065%3A.,682,572,7154207,9949,0 +40419,K35+-+%5B001%5D+Before+Land,579,319,699088769,10259,9 +40420,%5B0100%5D+xxx,450,308,8630972,10838,0 +40421,B011,519,304,699208929,6644,0 +40422,Wioska+2,676,411,699738350,8736,0 +40423,%3F%3F%3F,489,304,698489071,6131,0 +40424,---0000,388,660,699269923,6671,9 +40425,XDX,600,330,699098531,8336,0 +40426,Wioska+barbarzy%C5%84ska,385,658,699269923,8879,0 +40428,New+World,443,688,698152377,9882,0 +40429,New+World,433,682,698152377,6420,0 +40430,Wioska+Totomoose+6,314,426,849100744,326,0 +40431,Wioska+barbarzy%C5%84ska,607,330,699098531,3538,9 +40432,Zimowa+Twierdza,538,695,7860453,4189,0 +40433,Sernik+z+Andzynkami,695,497,699126484,9797,0 +40434,C002,538,697,698599365,10072,0 +40435,Wioska+barbarzy%C5%84ska,578,314,828637,10271,0 +40436,058,364,517,6853693,6443,0 +40437,5.CAMEL,521,305,699208929,4793,0 +40438,Life,625,352,698420691,6112,0 +40439,New+World,447,685,698152377,8559,0 +40440,%2136+75+Vicsani,653,370,698361257,10083,0 +40441,psycha+sitting,402,661,699736927,10311,0 +40442,%5B0099%5D,436,319,8630972,10495,0 +40443,Dream+on,307,489,698962117,9485,0 +40444,psycha+sitting,414,673,699736927,10311,0 +40445,-+Ecabra+-,655,617,849009623,4469,0 +40446,FENDI,305,462,699794765,2844,0 +40448,D%C4%85browa+0025,316,562,849096972,2974,0 +40449,-+179+-+SS,550,694,849018239,7112,0 +40450,KR%C3%93L+PAPI+WIELKI,635,644,698191218,10014,0 +40451,105,660,615,3589487,7015,0 +40452,0016,422,323,2321390,4406,0 +40453,%5B015%5D,454,687,699777372,5600,0 +40454,%5B016%5D,455,692,699777372,5125,0 +40455,Dream+on,307,499,698962117,9755,0 +40456,kamilex,682,424,849095435,4281,0 +40457,a+mo%C5%BCe+off+%3F+%3A%29,671,413,698768565,4785,0 +40458,Wioska+barbarzy%C5%84ska,565,310,828637,8131,0 +40459,Tarchomin,365,358,849099434,4568,0 +40460,Parole,348,404,699595556,7041,0 +40461,psycha+sitting,416,680,699736927,10311,0 +40462,Taran,337,610,6180190,9956,0 +40463,%3F%3F%3F,479,303,698489071,10503,8 +40464,Wioska+barbarzy%C5%84ska,640,363,699837826,2187,0 +40465,bucksbarzy%C5%84skamiiiru,333,390,848955783,3239,0 +40466,017,309,540,849098688,8860,0 +40467,044.+Wioska+barbarzy%C5%84ska,694,468,7494497,10287,0 +40468,New+World,437,689,698152377,10290,0 +40469,%4016%40,402,325,699483429,3616,0 +40470,Wioska+SeroElo,538,311,849044705,11094,0 +40471,004,701,498,942959,4262,0 +40472,Mroczny+Zamek+022,356,631,698908184,5022,0 +40473,Kruczy+R%C3%B3g,588,672,699567608,10337,0 +40474,Wioska+barbarzy%C5%84ska,532,305,8606809,8295,0 +40475,psycha+sitting,399,664,699736927,6689,0 +40476,KONFA+TO+MARKA%2C+NARKA,310,453,698152377,10290,0 +40477,Szlachcic,384,343,3484132,10213,0 +40478,003.Stradi,438,314,698365960,10495,0 +40479,Wioska+barbarzy%C5%84ska,524,536,7581876,9797,0 +40480,Wioska+barbarzy%C5%84ska,395,665,699736927,4394,0 +40481,120.Stradi,442,314,698365960,10495,8 +40482,Wioska+Bbartek97,617,339,849097312,5600,0 +40483,0013,648,627,6417987,7372,0 +40484,psycha+sitting,421,678,699736927,6874,0 +40485,D.020,394,664,849088243,3783,0 +40486,KONFA+TO+MARKA%2C+NARKA,308,456,698152377,10295,0 +40487,a+mo%C5%BCe+off+%3F+%3A%29,671,410,698768565,5110,0 +40488,003,308,471,848895676,2276,0 +40489,Wioska+barbarzy%C5%84ska,617,341,699433558,4748,0 +40490,B008,516,306,699208929,9250,0 +40491,%23%23%23058%23%23%23,581,684,698285444,10495,0 +40492,Wioska+barbarzy%C5%84ska,386,654,699269923,7967,0 +40493,Didek,676,589,849070946,7430,7 +40494,Wioska+anibella,651,610,8224678,10679,0 +40495,%23%23%23059%23%23%23,594,676,698285444,10495,0 +40496,Jedziemy,363,648,6948793,10178,0 +40497,%23%23%23060%23%23%23,600,675,698285444,10495,0 +40498,Dream+on,307,506,698962117,6722,0 +40499,FP006,482,697,699605333,10393,0 +40500,Wioska+barbarzy%C5%84ska,323,581,7183372,8059,0 +40501,Wioska+barbarzy%C5%84ska,676,412,699738350,6929,0 +40502,z+Goscia099859,355,361,3909522,8488,0 +40503,TWIERDZA+.%3A012%3A.,685,571,7154207,10406,0 +40504,Wioska+barbarzy%C5%84ska,342,375,7462660,6140,0 +40505,K35+-+%5B013%5D+Before+Land,580,321,699088769,9783,0 +40506,Didek,681,588,849070946,4749,0 +40507,Wioska+barbarzy%C5%84ska,345,385,699541376,2824,0 +40508,Wioska+03,349,384,3372959,3777,0 +40509,Wioska+mnich-124,336,393,698807570,9750,0 +40510,Wioska+barbarzy%C5%84ska,349,426,393668,6165,0 +40511,MojeDnoToWaszSzczyt,496,300,9299539,9960,0 +40512,Lilka+%3D%2A,554,690,7860453,3212,0 +40513,Gogolin,686,551,848932879,9365,0 +40514,Szlachcic,379,349,698160606,10838,0 +40515,%23084%23,634,643,692803,9682,0 +40516,000+Plutosea,312,567,9280477,8137,0 +40517,Wioska+barbarzy%C5%84ska,462,695,699725436,3365,0 +40518,Wonderwall,310,554,698962117,10470,0 +40519,0052+Dzikusy,447,692,849037407,6458,0 +40520,25.+Bremervoord,694,539,8976313,7090,0 +40521,Ko%C5%82obrzeg,506,299,7758085,5583,0 +40522,031.+nie+czytaj+tego,693,468,7494497,9902,0 +40523,-+196+-+SS,539,698,849018239,7207,0 +40524,%230274+EmersonJr,459,308,1238300,7833,0 +40525,Wioska+Zorro+026,675,591,849080702,4213,0 +40526,Dream+on,302,490,698962117,9494,0 +40527,Prowincja,314,569,849096458,7282,0 +40528,2.A+Coruna,576,676,698215322,3951,0 +40529,psycha+sitting,419,677,699736927,10178,0 +40530,022,395,333,8153941,3652,0 +40531,%5B053%5D+%3F%3F%3F%3F,684,426,849095068,9288,0 +40532,045,302,537,9280477,4927,0 +40533,ZZZ,460,693,699827112,9473,0 +40534,Bobolo,686,431,699738350,8722,0 +40535,TWIERDZA+.%3A050%3A.,692,553,7154207,10356,0 +40536,Hello+there,323,593,6180190,9835,0 +40537,Didek,677,574,849070946,8566,0 +40538,Wioska+barbarzy%C5%84ska,686,549,17714,6132,0 +40539,KR%C3%93L+PAPI+WIELKI,651,621,698191218,10105,0 +40540,C0008,303,518,8841266,10252,0 +40541,Wioska+barbarzy%C5%84ska,550,313,698350371,2946,0 +40543,kamilex,681,421,849095435,4655,0 +40544,TARAN,553,693,7860453,5540,0 +40545,Darma+dla+zawodnika,514,697,848928624,6967,0 +40546,%23whaj2,484,698,699605333,9941,0 +40547,090+invidia,518,700,849093426,6381,0 +40548,050,452,305,2502956,9317,0 +40549,121+Wioska+barbarzy%C5%84ska,545,356,699491076,10001,0 +40550,Sernik+z+Andzynkami,696,489,699126484,9808,0 +40551,%230167+yasoke19,493,317,1238300,10178,0 +40552,035%23+Renei,480,692,3933666,4800,0 +40553,O063,342,621,272173,9824,0 +40554,psycha+sitting,405,671,699736927,10178,0 +40555,%3F%3F%3F,480,308,698489071,9922,0 +40556,Wyspa_45,510,697,2585846,9638,0 +40557,A+073,363,639,699269923,8117,0 +40558,Wow11,366,357,699730714,7886,0 +40560,Wyspa_05,515,693,2585846,9638,0 +40561,Dream+on,302,504,698962117,9486,7 +40562,A+066,363,645,6948793,9385,0 +40563,C0184,305,538,8841266,7716,0 +40564,Wioska+barbarzy%C5%84ska,532,301,698350371,7270,1 +40565,Wioska+061,646,593,848971079,9761,0 +40566,Jednak+wol%C4%99+gofry,474,695,699725436,8804,0 +40567,.achim.,487,313,6936607,8449,0 +40568,%3F%3F%3F%3F,492,297,698489071,8768,0 +40569,061.,324,595,7183372,8393,0 +40570,Wioska+barbarzy%C5%84ska,625,349,699580120,9761,0 +40572,%5B0217%5D,300,507,8630972,7680,0 +40573,%23%23%23061%23%23%23,594,674,698285444,10495,0 +40574,KR%C3%93L+PAPI+WIELKI,631,653,698191218,9645,0 +40575,Wioska+barbarzy%C5%84ska,693,487,699429153,8895,0 +40576,Z%C5%82oty+%C5%9Awit,593,328,699883079,4354,0 +40577,Didek,684,582,849070946,931,0 +40578,-+134+-+SS,543,693,849018239,10000,0 +40579,B03+S%C5%82upsk,345,375,7462660,4732,0 +40580,C0014,306,519,8841266,10252,0 +40581,006,699,506,7418168,10019,0 +40582,KR%C3%93L+PAPI+WIELKI,649,628,698191218,10000,0 +40583,-+Fracadabra+-,662,615,849009623,4849,0 +40584,Wioska+barbarzy%C5%84ska,331,597,7183372,8096,0 +40585,New+World,441,688,698152377,10294,0 +40586,Twierdza+%28bula90%29,356,563,0,6873,32 +40588,Gattacka,687,431,699298370,8843,0 +40590,B%23008,695,460,2065730,9797,0 +40591,Child+In+Time,639,587,848926293,4960,0 +40592,D009,612,661,9023703,5797,0 +40593,Hofek+19,667,398,699491076,7671,0 +40595,skiba,613,663,848909464,10319,0 +40596,074g,310,557,698641566,7495,4 +40597,Wioska+barbarzy%C5%84ska,334,387,698807570,10057,0 +40598,%3F%3F%3F,494,299,698489071,10636,0 +40601,KR%C3%93L+PAPI+WIELKI,694,521,698191218,7872,0 +40602,-+192+-+SS,560,690,849018239,7576,0 +40603,Wioska+barbarzy%C5%84ska,653,615,849066044,5787,0 +40604,FP025,476,699,699605333,10393,0 +40605,004,305,550,5997814,5416,0 +40606,029,698,533,699150527,7764,0 +40607,011,308,474,2418364,2823,0 +40608,psycha+sitting,410,676,699736927,10311,0 +40609,psycha+sitting,416,675,699736927,6394,0 +40610,Wioska+barbarzy%C5%84ska,672,404,8675636,9013,0 +40611,East7,657,375,1086351,3700,0 +40612,023+LUCKY+SHOT,619,349,8675636,10019,0 +40613,Angie,639,588,848926293,4121,0 +40614,XDX,604,330,699098531,6869,0 +40615,Wioska+3,503,307,849099342,6931,0 +40616,-26-,642,358,699837826,2189,0 +40617,097,699,528,2135129,4090,0 +40619,a+mo%C5%BCe+off+%3F+%3A%29,672,411,698768565,4485,0 +40620,EO+EO,299,510,699697558,10083,0 +40621,%7E082.,465,697,7139820,3311,0 +40622,psycha+sitting,412,676,699736927,9359,0 +40623,0.10+Szale%21,467,690,699827112,9662,0 +40624,-+168+-+SS,548,692,849018239,8938,0 +40625,027.+Kopalnia,690,461,7494497,9926,8 +40626,032.+nie+ma+tu+nic+ciekawego,692,466,7494497,9894,0 +40627,Taran,335,603,6180190,9959,0 +40628,psycha+sitting,456,647,699736927,10178,0 +40629,Wioska+barbarzy%C5%84ska,683,564,7038651,4219,0 +40631,061,631,348,849010255,6148,0 +40632,%230148+Kamil0ss1,476,319,1238300,10178,0 +40633,Dream+on,302,489,698962117,9515,0 +40636,Piwna+25,679,416,699812007,4400,0 +40638,Dream+on,304,494,698962117,9497,0 +40639,.24.+Ilion+e,351,626,272173,6339,0 +40640,Wioska+barbarzy%C5%84ska,691,440,1715091,8768,0 +40641,037+-+Mroczna+Osada,689,453,849035905,12154,0 +40642,z+001034,360,365,3909522,7331,0 +40643,FAKE+OR+OFF,418,317,698231772,9812,0 +40644,Didek,680,575,849070946,4706,0 +40645,psycha+sitting,421,682,699736927,5434,0 +40646,B.10+duchy+serca+puszczy,557,315,849026145,2464,0 +40647,MojeDnoToWaszSzczyt,496,299,9299539,9957,0 +40648,Wioska+Lord+Deemer,324,600,7183372,10343,0 +40649,Wioska+bukai,578,324,7563943,9723,0 +40650,MojeDnoToWaszSzczyt,504,307,9299539,9726,0 +40651,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+12,624,515,699379895,8625,0 +40652,%23whaj4,482,699,699605333,8713,0 +40653,B13,698,538,848995478,10702,8 +40655,R+034,497,696,699195358,9717,0 +40656,%5BB%5D_%5B024%5D+Dejv.oldplyr,419,339,699380607,10259,0 +40657,bucksbarzy%C5%84skamiiiru,338,381,848955783,3677,0 +40658,...,484,542,848915531,8758,0 +40659,Wioska+barbarzy%C5%84ska,390,668,699269923,8355,0 +40660,KONFA+TO+MARKA%2C+NARKA,309,456,698152377,6220,0 +40661,%3F%3F%3F,479,300,698489071,9966,0 +40662,Elo+Elo+17,314,579,699016994,6620,0 +40664,LD041+Out+Of+Body+Experiance,635,643,8096537,9761,0 +40665,Wioska+barbarzy%C5%84ska,663,383,699580120,9301,0 +40666,Sernik+z+Andzynkami,697,498,699126484,9766,0 +40667,TWIERDZA+.%3A089%3A.,681,570,7154207,7503,0 +40668,%230278+Marass,473,306,1238300,9662,0 +40669,0008+Sir+JuriGagarin,441,689,849037407,10495,0 +40670,Szale,464,690,698585370,9502,0 +40671,psycha+sitting,415,680,699736927,10311,0 +40672,EO+EO,302,507,699697558,10019,0 +40673,0012+mackobl14,442,690,849037407,9371,0 +40674,013+Alabama,645,370,9029928,5876,0 +40675,Wioska+Alx18,669,393,8675636,10019,0 +40676,C.003,701,492,9188016,10000,0 +40677,22.GFRIEND,685,418,9180206,6868,0 +40678,Wioska+barbarzy%C5%84ska,668,603,3467919,6242,0 +40680,B02+Gda%C5%84sk,349,374,7462660,4834,0 +40681,051g,311,556,698641566,9809,0 +40682,D018,358,632,272173,7789,0 +40683,Wioska+barbarzy%C5%84ska,352,633,272173,5285,0 +40684,.achim.,471,302,6936607,4198,0 +40686,Wioska+barbarzy%C5%84ska,528,304,8606809,4294,0 +40687,New+Land+04,337,395,849064752,3847,0 +40688,Klaudek24,640,356,849092309,3265,0 +40689,013,700,507,7418168,10019,0 +40690,018.Stradi,434,310,698365960,10495,0 +40691,ZA28,320,409,356642,9835,0 +40692,D015,615,659,9023703,10218,0 +40693,C.004,697,492,9188016,10000,0 +40694,Forteca%2A008%2A,531,696,1078121,6557,0 +40695,Rogatki+5,314,560,699265922,3889,0 +40697,RTS+75,573,625,848995242,10183,0 +40698,Jan+NEW2+Ost+K,688,455,879782,9883,0 +40699,wojo,396,330,698231772,10083,3 +40700,Wioska+Rychont,378,340,1668965,1091,0 +40701,Wioska+barbarzy%C5%84ska,314,573,699671197,4224,0 +40702,Wioska+barbarzy%C5%84ska,355,632,272173,4663,0 +40703,016+VWF+Wioska+barbarzy%C5%84ska,311,428,3108144,6316,0 +40704,2.Rozhok,412,334,849098648,10083,0 +40705,Wioska+barbarzy%C5%84ska,403,363,8419570,8205,0 +40706,007,698,506,7418168,10019,0 +40707,P%C3%B3%C5%82nocny+Bagdad,615,336,8847546,9835,0 +40708,Wioska+barbarzy%C5%84ska,308,555,5997814,5980,0 +40709,Wioska+barbarzy%C5%84ska,341,621,9199885,8003,0 +40710,203...segador,450,305,6920960,10654,6 +40711,X+007,596,324,6384450,2654,0 +40712,FAKE+OR+OFF,421,318,698231772,9833,0 +40713,ZA09,322,407,356642,9835,0 +40714,005,641,635,849099544,4472,0 +40715,B%23027,680,421,2065730,4615,0 +40716,%5B0049%5D,432,315,8630972,10495,0 +40717,Gattacka,687,439,699298370,9551,1 +40719,%23%23%23062%23%23%23,594,675,698285444,10495,0 +40721,Wow9,366,354,698160606,8821,0 +40722,%23%23%23063%23%23%23,580,683,698285444,10495,0 +40724,Na+Kra%C5%84cu+%C5%9Awiata+011,630,352,9291984,6385,0 +40725,Wioska+barbarzy%C5%84ska,654,371,7340529,9257,0 +40726,psycha+sitting,410,679,699736927,10311,0 +40728,Jan+Ost,690,443,879782,8939,0 +40729,040,449,311,2502956,10019,0 +40730,Szlachcic,380,341,698160606,7139,0 +40731,Wioska+barbarzy%C5%84ska,630,349,9291984,3566,0 +40732,TWIERDZA+.%3A082%3A.,687,564,7154207,8208,0 +40733,B006,515,304,699208929,9985,0 +40734,D.015,394,668,849088243,6890,0 +40736,No.26,457,692,698826986,1742,0 +40737,Twierdza+1,511,301,699208929,10971,0 +40738,%7E081.,469,694,7139820,3946,0 +40739,012.+Snotinghamscire,377,340,699660539,6682,0 +40742,080+invidia,518,699,849093426,8862,0 +40743,Didek,687,577,849070946,10336,0 +40744,z181_16,312,444,393668,9698,0 +40745,008,701,509,7418168,10019,0 +40746,034+E+Tenerife,700,530,8323711,10143,1 +40747,Orze%C5%82+11,692,484,699413581,4595,0 +40748,025,630,651,699373599,6804,0 +40749,003,677,416,699738350,9653,3 +40750,-05-,555,690,7860453,6526,0 +40752,003,306,474,2418364,6588,0 +40753,B3.,310,548,849095482,4077,0 +40754,Taran,323,591,6180190,7532,0 +40755,Gattacka,688,429,699298370,9257,0 +40756,005,588,324,7340529,10654,0 +40757,Winterhome.076,513,306,848918380,8854,0 +40758,%2A197%2A,361,358,699273451,10211,0 +40759,B2.,310,543,849095482,3761,0 +40760,Na+Kra%C5%84cu+%C5%9Awiata+010,627,344,9291984,6881,0 +40762,Wioska+ll,319,580,699671197,12154,0 +40763,EO+EO,306,521,699697558,10495,9 +40764,Wrzoski+Bida,687,554,848932879,8873,0 +40765,Twierdza+6zzz,510,300,699208929,6069,0 +40766,psycha+sitting,421,676,699736927,10178,0 +40767,Wioska+6,340,376,7462660,5181,0 +40768,Osada+koczownik%C3%B3w,356,629,272173,2970,7 +40769,A6.,313,544,849095482,4629,0 +40770,Wioska+barbarzy%C5%84ska1,392,660,699269923,9276,0 +40771,Szale,462,696,699725436,8615,0 +40772,027+invidia,530,695,849093426,10237,0 +40773,Po+ma%C5%82pce%3F,700,498,699126484,9815,0 +40774,-4-,325,596,7183372,10401,2 +40775,4.C,456,693,699777372,8692,0 +40776,Wioska+barbarzy%C5%84ska,682,565,7038651,3614,0 +40777,BRICKLEBERRY,554,305,699072129,10311,0 +40778,Wioska+barbarzy%C5%84ska,354,628,272173,4806,0 +40779,O099,347,627,272173,9490,0 +40780,000+Plutosea,317,567,9280477,7008,0 +40781,S007,600,673,8627359,9231,0 +40782,F4T4L,702,510,699150527,9962,0 +40783,019,475,698,848896948,9482,0 +40784,C04+Grudzi%C4%85dz,348,376,7462660,5554,0 +40785,Kasia+xd,703,497,942959,10495,0 +40786,C0261,303,546,8841266,10362,0 +40787,Lord+Lord+Franek+.%23140,511,320,698420691,10523,0 +40788,Out+of+Touch,321,428,698962117,9172,0 +40789,a+mo%C5%BCe+off+%3F+%3A%29,678,406,698768565,5477,0 +40790,039.+Night+Raid,486,701,699684062,9908,0 +40791,C0122,300,510,8841266,10495,0 +40792,TWIERDZA+.%3A081%3A.,685,561,7154207,9550,0 +40793,Taran,328,604,6180190,8768,0 +40794,024,701,511,699150527,8705,0 +40795,267...gulden,460,304,6920960,10283,0 +40797,New+World,445,687,698152377,10294,0 +40798,Z02,317,415,356642,9835,1 +40799,Wioska+barbarzy%C5%84ska,342,376,7462660,2507,0 +40800,Wioska+barbarzy%C5%84ska,681,568,7038651,3604,0 +40801,KHORINIS,372,656,849099924,5506,0 +40802,Out+of+Touch,315,420,698962117,9486,0 +40803,002,472,685,9003698,10373,0 +40804,Dream+on,300,483,698962117,9697,0 +40805,C.005,702,492,9188016,10000,0 +40806,psycha+sitting,410,673,699736927,10178,0 +40807,K35+-+%5B025%5D+Before+Land,587,321,699088769,9570,0 +40808,C.001,699,490,9188016,10000,8 +40809,TWIERDZA+.%3A053%3A.,681,566,7154207,9427,0 +40810,C0096,305,531,8841266,10252,0 +40811,-+222+-+SS,555,695,849018239,4346,0 +40812,RTS+11,576,636,848995242,10495,0 +40813,033,700,521,699150527,7269,0 +40814,wie%C5%9B5,657,378,7340529,7322,0 +40815,Wioska+barbarzy%C5%84ska,690,548,17714,6250,0 +40817,Visca+Barca,666,599,3467919,9761,0 +40818,%5B0050%5D,442,309,8630972,10495,0 +40819,AAA,529,308,1006847,10922,0 +40820,Wioska+barbarzy%C5%84ska,674,408,8675636,9019,0 +40821,015.+Northwic,381,340,7775311,7053,0 +40822,17.+Awangarda+Post%C4%99pu,688,493,699804790,9362,0 +40823,0002,424,322,2321390,4897,0 +40824,C0092,301,522,8841266,10252,0 +40825,Dream+on,303,496,698962117,9515,0 +40826,0007+Vibrus,474,697,699656989,10158,0 +40827,000+Plutosea,314,565,9280477,5598,0 +40828,Wioska+25,679,579,849101162,5960,0 +40830,No.23,469,679,698826986,5282,0 +40831,D%C4%85browa+0026,317,562,849096972,2247,0 +40832,Wioska+barbarzy%C5%84ska2o,394,666,699736927,7730,0 +40833,skiba,613,662,848909464,10319,0 +40834,C0082,300,524,8841266,10252,0 +40835,Wioska+barbarzy%C5%84ska,666,606,3467919,7914,0 +40836,Dream+on,305,501,698962117,9075,0 +40837,Wioska+barbarzy%C5%84ska,687,548,17714,6570,0 +40838,14.+Karol+II,689,488,699804790,9362,0 +40839,Wioska+barbarzy%C5%84ska,384,659,699269923,8102,0 +40840,Sernik+z+Andzynkami,696,496,699126484,9744,0 +40841,Wioska+barbarzy%C5%84ska,674,407,8675636,9062,0 +40842,SOKzGUMIjag%C3%B3d,645,372,849059491,8293,0 +40843,Dream+on,306,491,698962117,9539,0 +40844,psycha+sitting,419,676,699736927,10178,0 +40845,New+World,427,688,698152377,10292,0 +40846,0024.+Y+-,694,532,7125212,4757,0 +40847,C0123,303,528,8841266,10252,0 +40848,%230233+Kamileq69+dar,471,303,1238300,10178,0 +40849,Rogatki4,312,560,699265922,4030,0 +40850,Topornik+3,649,375,7340529,11130,0 +40851,031,305,543,9280477,6790,0 +40852,146,550,397,849064752,10311,0 +40853,psycha+sitting,410,672,699736927,9972,0 +40854,Paruwland,584,674,849099505,3075,0 +40855,%2AINTERTWINED%2A,504,696,698704189,6085,0 +40856,0045,571,320,699485250,4712,0 +40857,046,301,535,9280477,5962,0 +40858,a+mo%C5%BCe+off+%3F+%3A%29,679,405,698768565,5248,0 +40859,015+serniczek+forever,504,665,8954402,10139,0 +40860,019,395,331,8153941,9178,0 +40861,035,697,513,699150527,7488,0 +40862,030.+Alzenau,695,465,7494497,10284,0 +40863,Wioska+barbarzy%C5%84ska,625,351,7555180,3368,0 +40864,%5B038%5D,651,584,698305474,5307,0 +40867,Wioska+barbarzy%C5%84ska,504,698,7976264,6225,0 +40868,BSK3,653,620,849066044,7865,0 +40869,Wioska+mikolajjacek,329,595,7183372,10362,0 +40870,WB18,329,404,356642,7012,0 +40871,%23%23%23064%23%23%23,592,675,698285444,10495,0 +40872,TARAN,547,693,7860453,8455,0 +40873,Swoja2,602,666,6528152,8494,0 +40875,psycha+sitting,399,672,699736927,6938,0 +40876,021,402,677,849099876,10495,0 +40877,Wioska+barbarzy%C5%84ska,695,459,849098769,6680,0 +40879,C0097,306,531,8841266,10252,0 +40880,Wioska+040,646,600,848971079,9761,0 +40881,Sosnowiec,549,308,7139853,2432,0 +40882,New+World,424,685,698152377,10292,0 +40883,Dream+on,302,509,698962117,9488,0 +40884,KR%C3%93L+PAPI+WIELKI,647,634,698191218,10252,0 +40885,%4006%40,407,323,699483429,7545,0 +40886,044-+Mroczna+Osada,657,388,849035905,12154,0 +40887,024+NAWRA,665,614,849048867,5379,0 +40888,Wioska+barbarzy%C5%84ska,669,391,8675636,8863,0 +40889,-001-,374,647,699269923,9406,0 +40890,Wioska+barbarzy%C5%84ska,326,408,2418002,4109,0 +40891,marmag81%2F03a,303,468,1096254,6311,0 +40892,Antoni%C3%B3w,571,684,698723158,7116,0 +40893,%5B0054%5D,445,312,8630972,10495,0 +40894,Wioska+barbarzy%C5%84ska,395,672,698650509,2918,0 +40895,Wioska+Zorro+022,677,592,849080702,4249,0 +40896,psycha+sitting,406,671,699736927,10178,0 +40897,D_1,530,304,3377827,6827,0 +40898,C002,608,384,699485250,9735,0 +40899,%5B169%5D,644,585,8000875,8112,0 +40900,KR%C3%93L+PAPI+WIELKI,646,640,698191218,9636,0 +40901,065.+hehehe3,699,463,7494497,10247,0 +40902,Wioska+barbarzy%C5%84ska,338,618,9199885,5374,0 +40903,%5B0091%5D,436,308,8630972,10495,0 +40904,Psycho+to+Marka%2C+Narka+%21,319,571,849040142,4562,0 +40905,018+Azkaban,635,352,9291984,10559,0 +40906,a+mo%C5%BCe+off+%3F+%3A%29,678,410,698768565,7599,0 +40907,--01--,342,601,8877156,10474,0 +40908,Nalesnik+ES,493,701,699684062,9519,2 +40909,A06+Praga,342,384,7462660,6964,0 +40910,psycha+sitting,418,678,699736927,6832,0 +40911,003,703,507,699150527,10311,0 +40912,16.+hossa+incoming,555,311,699072129,9403,0 +40913,Wioska+barbarzy%C5%84ska,617,336,0,1902,0 +40914,zzz,688,545,699316421,6043,0 +40915,UltraInstynkt,612,337,699710633,9745,0 +40916,KONFA+TO+MARKA%2C+NARKA,305,452,698152377,10290,0 +40917,Szlachcic,311,542,698388578,5382,0 +40918,BuNKeR+EAST,617,335,8963720,9835,0 +40919,Wioska+barbarzy%C5%84ska,383,665,699269923,8675,0 +40920,Dream+on,301,497,698962117,9745,0 +40921,a+mo%C5%BCe+off+%3F+%3A%29,673,413,698768565,5076,0 +40922,C0026,308,524,8841266,10252,8 +40923,B020,523,305,699208929,10356,0 +40924,Wioska+barbarzy%C5%84ska,586,319,828637,10290,0 +40925,275...gulden,458,306,6920960,10138,0 +40926,KR%C3%93L+PAPI+WIELKI,631,652,698191218,9738,0 +40927,psycha+sitting,404,673,699736927,10311,0 +40928,Dream+on,301,496,698962117,9489,0 +40929,025,701,513,699150527,8846,0 +40930,Jan+My+City+2,691,434,879782,6744,0 +40932,Wioska+barbarzy%C5%84ska,348,369,7462660,6908,0 +40933,Wioska+Bochun10,335,517,7449254,10167,0 +40934,Z%C5%82oty+%C5%9Awit,570,313,699883079,8386,0 +40936,-002-+sz,359,634,272173,3115,0 +40937,001.Stradi,439,312,698365960,10495,0 +40938,Z%C5%82oty+%C5%9Awit,586,325,699883079,3731,0 +40939,040+Vranje,628,593,699272880,7726,0 +40940,0025+Wioska+barbarzy%C5%84ska,450,689,849037407,9895,0 +40941,Tyskie,299,476,849095376,9973,0 +40942,K35+-+%5B014%5D+Before+Land,578,317,699088769,9783,0 +40943,Wioska+Marcio7,400,328,195249,10002,0 +40944,Wie%C5%9B+02,338,614,9199885,4180,0 +40946,B016,518,301,699208929,7117,0 +40947,Biskupice,343,381,7462660,11581,0 +40948,AAA,540,307,1006847,7955,0 +40949,-+131+-+SS,542,692,849018239,9764,0 +40950,%230275+Gwen1,470,306,1238300,3721,0 +40951,Wyspa_46,510,702,2585846,6930,0 +40952,Wioska+barbarzy%C5%84ska+1,598,330,849006385,5129,0 +40953,Didi,680,587,849070946,10495,0 +40954,062.,317,588,3475079,2206,0 +40955,%C5%9Alimak+5,605,334,849061374,7175,0 +40956,Hello+there,322,591,6180190,3558,0 +40957,0076,533,691,698659980,10252,9 +40958,Wioska+barbarzy%C5%84ska+I,577,316,848958556,4572,0 +40959,XDX,610,335,699098531,9096,0 +40960,X+001,596,330,6384450,10362,8 +40961,Wioska+018,672,594,7999103,8029,0 +40962,Wioska+barbarzy%C5%84ska,556,686,849099280,4028,0 +40963,066,633,352,849010255,2337,0 +40964,Taran,326,594,6180190,10064,0 +40965,bucksbarzy%C5%84skamiiiru,324,401,848955783,9448,0 +40966,Wyspa_29,503,696,2585846,9638,0 +40967,Dzik,699,482,849099640,4488,0 +40968,Szlachcic,389,337,3484132,10011,0 +40969,O137,347,631,272173,9835,0 +40970,-+193+-+SS,561,687,849018239,9393,0 +40971,Didi,677,598,849070946,10728,0 +40972,z181_13,308,438,393668,9891,0 +40973,0040+Wioska+barbarzy%C5%84ska,450,692,849037407,9582,0 +40974,037+Elverum,623,586,699272880,10186,0 +40975,008,396,328,8153941,9071,0 +40976,009,700,509,7418168,10019,0 +40977,Wioska+barbarzy%C5%84ska,645,633,698234770,5851,0 +40978,Wioska+barbarzy%C5%84ska,582,315,828637,10481,0 +40979,a+mo%C5%BCe+off+%3F+%3A%29,673,404,698768565,7249,0 +40980,0051,568,686,698659980,10160,1 +40981,Wioska+1,342,374,7462660,10040,0 +40982,037+invidia,529,695,849093426,9727,0 +40983,Jan+STALINGRAD+88+K,684,437,879782,9673,0 +40984,Czarna+001,383,657,699269923,9296,0 +40985,Pallad,689,443,8459255,5529,0 +40986,Wie%C5%9B+09,336,613,9199885,3118,0 +40987,046.,627,653,699373599,4791,0 +40989,Na+Kra%C5%84cu+%C5%9Awiata+009,628,345,9291984,7049,0 +40990,Out+of+Touch,322,424,698962117,9742,5 +40991,209...segador,457,305,6920960,8980,0 +40992,C.011,695,492,9188016,10005,0 +40993,-+204+-+SS,560,692,849018239,8796,0 +40994,I097,689,446,699722599,7688,0 +40995,Taran,327,603,6180190,9934,0 +40996,%23%23%23017%23%23%23,585,680,698285444,10495,0 +40997,Moldor+13,635,355,849049045,7813,0 +40998,16.+Zerrikania,696,550,8976313,9616,0 +40999,Wioska+barbarzy%C5%84ska,693,440,1715091,8644,0 +41000,%23%23%23065%23%23%23,593,673,698285444,10495,0 +41001,TWIERDZA+.%3A024%3A.,686,558,7154207,10355,0 +41002,Wioska+barbarzy%C5%84ska,464,695,699725436,4235,0 +41003,wie%C5%9B6,655,378,7340529,8804,0 +41004,%3D0006%3D,402,323,698231772,10077,0 +41005,Dream+on,306,497,698962117,9202,0 +41006,19.IVE,682,421,9180206,8826,6 +41007,Wioska+barbarzy%C5%84ska,668,395,8675636,9938,0 +41008,z181_14,307,437,393668,9886,0 +41009,Out+of+Touch,321,423,698962117,9740,8 +41010,Wioska+barbarzy%C5%84ska,400,330,195249,2571,0 +41011,-+240+-+SS,546,689,849018239,6637,0 +41012,Sernik+z+Andzynkami,705,501,699126484,9797,0 +41013,Wioska+barbarzy%C5%84ska,348,370,7462660,9798,0 +41014,Cogito+Ergo+Sum,474,312,849017820,9353,0 +41015,o02,616,665,699189792,9742,0 +41016,Bimbrovnik,690,431,8675636,10019,0 +41017,Winterhome.075,513,305,848918380,8473,0 +41018,Zeta+Reticuli+O,416,322,699323302,11188,5 +41020,Konin,663,387,699491076,7600,0 +41021,%23%23%23066%23%23%23,597,673,698285444,10495,0 +41022,BRZEG+JORDANU+%7C+008,693,521,9228039,4755,0 +41023,Sta%C5%82ka+1,350,625,699864013,3931,0 +41024,022.,324,602,7183372,9475,0 +41025,K66,628,646,7038651,9032,0 +41026,AAA,545,305,1006847,5233,0 +41028,040.,318,585,3475079,2319,0 +41029,%3F%3F%3F%3F,466,305,698489071,12154,0 +41030,%2A209%2A,336,388,699273451,6047,0 +41031,psycha+sitting,422,677,699736927,10311,0 +41032,010,637,640,849099544,9922,0 +41033,Wioska+barbarzy%C5%84ska,338,615,9199885,6082,0 +41034,Jan+WILCZY+SZANIEC,683,435,879782,7550,0 +41035,105+invidia,513,701,849093426,7101,0 +41036,Wioska+barbarzy%C5%84ska,673,395,698768565,7906,0 +41037,030,697,532,699150527,8325,0 +41038,Sernik+z+Andzynkami,698,493,699126484,9730,0 +41039,XDX,613,340,699098531,7129,0 +41040,Wioska+barbarzy%C5%84ska,313,565,698290577,3090,0 +41041,Wioska+barbarzy%C5%84ska,349,367,7462660,8367,0 +41042,Wioska+3,344,381,7462660,7377,0 +41043,Wioska+barbarzy%C5%84ska,370,652,699269923,8675,0 +41044,D017,618,658,9023703,7880,0 +41045,Szlachcic,385,340,3484132,9629,0 +41046,MojeDnoToWaszSzczyt,503,301,9299539,9959,0 +41047,A08,692,562,848995478,10405,0 +41048,KR%C3%93L+PAPI+WIELKI,638,645,698191218,10014,0 +41049,Wioska+barbarzy%C5%84ska,667,613,849048867,2685,0 +41050,013.+Jorvik,377,339,699660539,6304,0 +41051,Osada+koczownik%C3%B3w,387,661,699269923,9470,2 +41052,009,640,358,9148043,9792,0 +41053,W%C5%82adcy+P%C3%B3%C5%82nocy+15,694,505,699379895,5712,0 +41054,MojeDnoToWaszSzczyt,499,298,9299539,9959,0 +41055,Dream+on,302,510,698962117,9488,0 +41056,EO+EO,306,506,699697558,10083,0 +41057,New+World,436,687,698152377,9729,0 +41058,D014,596,404,699761749,7809,0 +41059,z+181-A013,350,377,3909522,6799,0 +41060,Nikolau,419,328,849072873,9561,0 +41061,Okocim,299,479,849095376,8353,0 +41063,057,666,386,698635863,4600,0 +41065,Wioska+barbarzy%C5%84ska+II,575,315,848958556,4414,0 +41066,C.03+a+panicz+to+dok%C4%85d%3F,548,303,849026145,7158,0 +41067,bananowa+plantacja,686,425,699738350,7331,0 +41069,Dream+on,302,485,698962117,9510,3 +41071,AAA,545,311,1006847,7061,0 +41072,%2136+76+Luncusoara,660,374,698361257,5016,0 +41073,Cz+hwiah,404,326,699854830,2861,0 +41074,041+invidia,521,698,849093426,9733,0 +41075,004+barbarzy%C5%84ska,405,323,698258283,5358,0 +41076,%23%23%23067%23%23%23,583,680,698285444,10495,0 +41077,WB+09,636,604,2269943,4664,0 +41079,%23%23%23068%23%23%23,596,671,698285444,10495,0 +41080,Wioska+barbarzy%C5%84ska,697,482,699429153,8304,0 +41081,Wioska+barbarzy%C5%84ska,695,522,699573053,10150,0 +41082,0060,568,688,698659980,10160,3 +41083,Hutki,304,481,8048374,8063,0 +41084,Z%7C009%7C+Udine,460,699,699393742,7953,0 +41085,%23K66+0005,613,667,699728159,9761,0 +41086,Odbudowa+Tilburga+%3A%29,632,347,9291984,4430,0 +41087,Wioska+barbarzy%C5%84ska,700,468,699574408,7155,0 +41088,Wadowice,546,311,7139853,4891,0 +41091,FP002,480,698,699605333,10393,0 +41092,2.Alicante,570,681,698215322,9951,0 +41093,CALL+1070,658,625,699784536,10495,0 +41094,Ob+Konfederacja,429,332,848915730,9938,0 +41095,B018,519,300,699208929,7034,0 +41096,028.,328,588,3475079,8773,0 +41097,007,660,379,698635863,9902,0 +41098,Sibeliusa,479,299,698848373,3368,0 +41099,0002,356,357,699644448,8393,0 +41101,%5B0218%5D,300,499,8630972,7346,0 +41102,Wioska+Zorro+023,675,594,849080702,9512,0 +41103,psycha+sitting,422,680,699736927,10311,0 +41104,%2AINTERTWINED%2A,507,696,698704189,5213,0 +41105,B04+Ko%C5%9Bcierzyna,347,375,7462660,4709,0 +41106,Wioska+Wiki+5,525,698,849100354,8421,0 +41107,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,492,703,8980651,9382,0 +41108,Wioska+Wodzu004,551,696,699201278,8739,0 +41109,004+Nie+bij%2C+dzidzia+ucieka,680,415,699576407,3847,0 +41110,008,307,559,5997814,9938,0 +41111,B5.,311,547,849095482,2837,0 +41112,FAKE+OR+OFF,408,321,698231772,9813,0 +41113,KR%C3%93L+PAPI+WIELKI,646,642,698191218,10011,0 +41114,Halford+John+Mackinder,355,641,849096649,9229,0 +41115,Out+of+Touch,314,421,698962117,9081,0 +41117,007,629,353,849086491,7862,0 +41119,C0079,304,517,8841266,10252,0 +41121,Wioska+barbarzy%C5%84ska,581,319,828637,10476,0 +41123,Wioska+barbarzy%C5%84ska,394,672,6948793,9820,0 +41127,%3F%3F%3F,485,301,698489071,10503,0 +41128,A07+Wiede%C5%84,341,384,7462660,4847,0 +41129,259...Gulden,458,302,6920960,10306,7 +41131,KONFA+TO+MARKA%2C+NARKA,310,458,698152377,10290,0 +41133,Wioska+barbarzy%C5%84ska,356,362,7462660,9614,0 +41135,Mroczny+Zamek+025,353,632,698908184,5390,0 +41137,Wioska+barbarzy%C5%84ska,699,523,7047342,10064,0 +41139,18.+Nazair,697,549,8976313,7564,0 +41141,KONFA+TO+MARKA%2C+NARKA,311,457,698152377,10292,0 +41143,psycha+sitting,407,680,699736927,6908,0 +41144,Mako+Reactor+1+-+B3F,552,627,8199417,4334,0 +41145,Wioska+barbarzy%C5%84ska,533,302,7758085,6679,0 +41147,%23%23%23069%23%23%23,579,683,698285444,10495,0 +41148,Wioska+089,667,605,848971079,8110,0 +41149,Wioska+27,678,579,849101162,3439,0 +41150,008g,309,553,5997814,9378,4 +41151,147,577,426,849064752,10311,0 +41152,002,304,474,2418364,9368,0 +41153,Wioska+barbarzy%C5%84ska,515,298,699208929,4287,0 +41154,XDX,612,331,699098531,9629,0 +41155,022.,323,595,3475079,9249,0 +41156,%3A%3A%3A+W+%3A%3A%3A+I,303,500,848917570,2565,0 +41158,psycha+sitting,396,675,699736927,5534,0 +41159,Boh81%2F222,305,471,848889556,9638,6 +41160,C0197,302,527,8841266,6412,0 +41161,Twierdza+9zz,513,300,699208929,6634,0 +41163,K35+-+%5B015%5D+Before+Land,577,320,699088769,9924,0 +41165,Moldor+7,631,354,849049045,9034,0 +41166,A+040,361,643,6948793,5862,0 +41167,004,391,670,6948793,9899,0 +41168,EO+EO,298,509,699697558,10019,0 +41169,Dream+on,297,485,698962117,8007,0 +41170,East+5,657,383,1086351,4506,0 +41172,047+-+Nowy+Pocz%C4%85tek...,358,646,6948793,6962,0 +41173,Mefedron+07,387,340,3484132,8259,0 +41174,C103,365,645,699383279,5394,0 +41175,%2136+76+Poiana+Miculi,660,378,698361257,9755,0 +41176,33.+The+Riddle,558,315,849099696,5418,0 +41177,psycha+sitting,412,681,699736927,10311,0 +41178,Wioska+barbarzy%C5%84ska,689,553,698666810,11288,0 +41179,Sernik+z+Andzynkami,698,497,699126484,9718,0 +41180,O104,348,626,272173,9233,0 +41181,005.+G%C3%B3rki+Niezbyt+Ma%C5%82e,648,636,849100994,6331,4 +41182,Wioska+-GPR-,337,619,9199885,5501,0 +41183,FP028,475,695,699605333,9996,0 +41184,039,689,451,699272633,6283,0 +41185,FAKE+OR+OFF,422,316,698231772,10089,0 +41186,009,451,307,2502956,10019,9 +41187,001,667,565,699493750,8414,0 +41188,Wioska+barbarzy%C5%84ska,697,538,848946700,5240,0 +41190,z+001039,353,367,3909522,7357,0 +41191,%4017%40,406,330,699483429,2634,0 +41192,psycha+sitting,397,675,699736927,6648,0 +41193,bucksbarzy%C5%84skamiiiru,331,392,848955783,10598,2 +41195,New+World,426,689,698152377,10311,0 +41196,%5B054%5D+%3F%3F%3F%3F,684,430,849095068,9407,0 +41197,Szlachcic,389,340,3484132,10072,0 +41198,007+wysokie+szcz%C4%99%C5%9Bcie,525,701,849093426,10237,0 +41199,032+Surowy1,692,443,849098769,5577,0 +41200,Gattacka,687,436,699298370,9355,0 +41201,Napewno+to+nie+jest+off,593,322,848912265,2500,0 +41202,B%23022,691,448,2065730,9797,0 +41203,0022+Wioska+barbarzy%C5%84ska,450,687,849037407,10201,0 +41204,Wioska+barbarzy%C5%84ska,625,342,7555180,3103,0 +41205,xxx,692,544,699316421,10495,0 +41206,Wioska+barbarzy%C5%84ska,348,368,7462660,9999,0 +41207,%3F%3F%3F,479,301,698489071,10503,0 +41208,B04,695,550,848995478,11130,5 +41209,Wioska+barbarzy%C5%84ska,477,649,848999671,7885,0 +41210,Komornicy+014,349,622,699336777,7615,0 +41211,Mniejsze+z%C5%82o+0017,438,312,699794765,9487,8 +41212,C0076,305,514,8841266,10252,0 +41213,Wroc%C5%82aw+001,589,681,699176234,10160,8 +41214,%23%23%23070%23%23%23,579,682,698285444,10495,0 +41215,Wioska+barbarzy%C5%84ska,670,397,8675636,9079,0 +41216,Orze%C5%82+2,693,486,699413581,10452,1 +41217,Wioska+barbarzy%C5%84ska,692,440,1715091,5529,0 +41218,boh81%2F01g,304,467,848889556,9617,0 +41219,B%23002,694,448,2065730,9797,0 +41220,-02-,566,687,7860453,10470,0 +41221,XIRON,670,611,849048867,1457,0 +41222,Wioska+062,654,605,848971079,9761,0 +41223,Wioska+barbarzy%C5%84ska,313,569,849098688,2696,0 +41224,KONFA+TO+MARKA%2C+NARKA,309,451,698152377,5050,0 +41225,102,309,568,699736959,4162,0 +41226,ManieK,344,615,9199885,9173,7 +41227,0001,425,320,2321390,10838,0 +41228,bucksbarzy%C5%84skamiiiru,330,406,848955783,7557,0 +41230,AAA,547,321,1006847,7765,0 +41231,010,700,510,7418168,10019,0 +41232,Gryfios+021,687,555,698666810,11717,0 +41233,Atlantyda,371,343,849068108,5666,0 +41234,%2136+64+Bancesti,646,369,698361257,10224,2 +41235,B.12+duchy+serca+puszczy,558,312,849026145,2488,0 +41236,Kluczbork,683,554,848932879,10728,0 +41237,psycha+sitting,400,673,699736927,10178,0 +41238,K-F+001,551,688,7860453,4953,0 +41239,%5B173%5D,564,556,8000875,8748,0 +41240,005,680,417,699738350,6181,0 +41241,%2A022+GAWRA%2A,310,428,2415972,8610,0 +41242,%23whaj3,480,699,699605333,10185,0 +41243,Wioska+barbarzy%C5%84ska,647,364,9029928,1988,0 +41245,Wioska+barbarzy%C5%84ska,312,448,393668,6873,0 +41246,Myszk%C3%B3w,305,481,8048374,7387,0 +41247,TWIERDZA+.%3A037%3A.,692,563,7154207,10226,0 +41248,003%23+Kate,484,695,699605333,10094,0 +41249,Wyspa_27,507,694,2585846,9638,0 +41250,%4012%40,404,325,699483429,4924,0 +41251,12.+Just+beginning,552,311,699072129,10008,0 +41252,Dream+on,303,495,698962117,9484,0 +41253,%3F%3F%3F,464,305,698489071,11570,0 +41254,Wiejska1,603,670,6528152,8440,0 +41255,Gdynia,480,299,698848373,5354,0 +41256,SIEDLISKA,494,297,849100406,9040,0 +41257,003,479,690,9003698,10373,0 +41258,%3F%3F%3F,468,308,698489071,5676,0 +41259,063.,697,459,849094609,2599,0 +41260,FAKE+OR+OFF,409,318,698231772,9841,0 +41261,-+Abracadabra+-,661,617,849009623,7433,0 +41262,By%C5%82e%C5%9B+w+porz%C4%85dku+006,373,649,699269923,9598,0 +41263,047.,623,654,699373599,3334,0 +41264,Wied%C5%BAma+-+Z+014,309,434,9239515,3232,0 +41265,Dream+on,306,496,698962117,9497,6 +41266,Tr%C4%99kusek,558,694,7860453,5369,0 +41267,Dream+on,297,504,698962117,9505,0 +41268,K%C5%82obuck,302,473,8048374,6452,0 +41270,Wioska+barbarzy%C5%84ska,349,632,272173,9824,0 +41272,008,656,381,698635863,8338,0 +41273,Wioska+barbarzy%C5%84ska,642,361,6625437,4486,0 +41274,a+mo%C5%BCe+off+%3F+%3A%29,680,406,698768565,6488,0 +41275,Wioska+barbarzy%C5%84ska,341,614,9199885,9172,0 +41276,B19,687,552,848995478,10728,0 +41277,Taran,336,610,6180190,9965,0 +41278,Hello+there,324,593,6180190,8964,0 +41280,bucksbarzy%C5%84skamiiiru,330,400,848955783,10409,2 +41281,Orze%C5%82+8,694,487,699413581,5095,0 +41282,130+invidia,503,703,849093426,9400,0 +41283,Zadupie,671,597,849048867,4897,0 +41284,B004,517,303,699208929,9955,0 +41285,Czerwona+R%C3%B3%C5%BCa,350,373,849100006,3577,0 +41286,z+001041,359,364,3909522,9114,2 +41287,%2AINTERTWINED%2A,512,703,698704189,7195,0 +41288,K35+-+%5B031%5D+Before+Land,573,320,699088769,6542,0 +41290,K35+-+%5B020%5D+Before+Land,583,322,699088769,9200,0 +41292,AAA,541,304,1006847,10311,0 +41293,Wioska+barbarzy%C5%84ska,615,333,0,599,0 +41294,Wioska+barbarzy%C5%84ska,701,477,699429153,8813,0 +41295,Wioska+barbarzy%C5%84ska,671,598,3467919,3579,0 +41296,Wioska+barbarzy%C5%84ska,536,699,8980651,9744,0 +41297,A05+Wroc%C5%82aw,345,382,7462660,5156,0 +41299,C0009,304,521,8841266,10252,0 +41300,Wioska+barbarzy%C5%84ska,642,363,699837826,2061,0 +41301,z181_15,306,439,393668,9883,5 +41302,Wioska+barbarzy%C5%84ska,550,312,698350371,4578,0 +41303,TWIERDZA+.%3A045%3A.,687,570,7154207,10228,0 +41304,Kiedy%C5%9B+Wielki+Wojownik,592,349,8632462,8003,0 +41305,Z%C5%82oty+%C5%9Awit,568,312,699883079,6280,0 +41306,0006.+A+-+Carvahall,616,525,7125212,10285,0 +41307,FAKE+OR+OFF,420,315,698231772,9820,0 +41309,Jan+Stuttgart+Ost,694,460,879782,7341,0 +41310,UltraInstynkt-,585,326,699710633,7565,0 +41311,008.+G%C3%B3rki+P%C5%82askie,650,634,849100994,6317,0 +41312,Wioska+barbarzy%C5%84ska,353,363,7462660,9471,0 +41313,STRA%C5%BBAK+1,605,328,849006385,4521,0 +41314,013+G%C3%B3rki+Mag%C3%B3rki,645,643,849100994,6120,3 +41315,029.Stradi,427,312,698365960,10495,0 +41316,KR%C3%93L+PAPI+WIELKI,649,632,698191218,10000,0 +41317,0014,649,625,6417987,4822,0 +41318,5.C,453,690,699777372,9216,0 +41320,Out+of+Touch,316,431,698962117,6259,0 +41322,Zagroda7,604,673,6528152,6266,0 +41323,MSWO-1,465,303,849017820,12154,0 +41324,20.+Metinna,698,536,8976313,8051,0 +41325,New+World,434,684,698152377,9035,0 +41326,Wyspa_37,501,698,2585846,9638,0 +41328,Didek,680,584,849070946,5635,0 +41329,053+onek666,614,667,699346280,10160,0 +41330,AAA,534,300,1006847,8738,0 +41331,037.Stradi,434,312,698365960,10495,0 +41332,086+invidia,517,702,849093426,9823,0 +41333,%230270+Gwen1,474,304,1238300,6754,0 +41334,Taran,334,613,6180190,9965,0 +41335,%230213+Segadorr+dar,448,309,1238300,10178,0 +41336,2.Malaga,572,681,698215322,6245,0 +41338,Wow12,362,350,698160606,7246,0 +41339,psycha+sitting,423,654,699736927,10268,0 +41340,O062,346,629,272173,9882,0 +41341,FP032,474,692,699605333,10265,0 +41342,Wioska+barbarzy%C5%84ska,695,455,849098769,5726,0 +41343,026.Stradi,429,313,698365960,10495,0 +41344,%23018.+Marco+Polo,451,677,848896948,8410,0 +41345,-+202+-+SS,535,696,849018239,7036,0 +41346,008+internacionale,347,372,7462660,10068,0 +41347,FAKE+OR+OFF,410,318,698231772,9812,0 +41348,Wioska+barbarzy%C5%84ska,525,544,7581876,6612,0 +41349,Wioska+barbarzy%C5%84ska,338,616,9199885,3506,0 +41350,Kiedy%C5%9B+Wielki+Wojownik,592,350,8632462,10838,0 +41351,%23%23%23071%23%23%23,596,676,698285444,10495,0 +41353,Mir%C3%B3w,571,690,698723158,7371,0 +41354,0255,544,662,698659980,10083,0 +41356,C0194,302,531,8841266,10497,0 +41357,Wioska+barbarzy%C5%84ska,382,660,699269923,7684,0 +41358,08.+Kaedwen,695,540,8976313,9849,0 +41359,New+World,433,692,698152377,9880,0 +41360,036.Stradi,427,310,698365960,10495,0 +41361,068,628,354,849010255,3352,0 +41363,Ave+Why%21,314,583,6180190,1781,0 +41364,Wioska+barbarzy%C5%84ska,696,504,699429153,8276,0 +41365,11.STAYC,687,422,9180206,8541,0 +41368,Wioska+barbarzy%C5%84ska,530,299,7758085,10002,0 +41369,Wyspa_26,508,694,2585846,9638,0 +41371,Wioska+barbarzy%C5%84ska,668,606,3467919,5271,0 +41372,Wioska+barbarzy%C5%84ska,309,548,5997814,3931,0 +41373,101+invidia,519,696,849093426,7363,0 +41374,072,692,545,699316421,9637,0 +41375,002,380,665,699269923,9533,0 +41376,017+Kettering+Road,609,330,699098531,7845,0 +41377,Tr%C4%99kus,557,693,7581876,4801,0 +41378,KR%C3%93L+PAPI+WIELKI,650,637,698191218,10478,0 +41379,A+020,364,622,699342219,8291,0 +41380,%23%23%23018%23%23%23,591,680,698285444,10495,0 +41381,Wioska+barbarzy%C5%84ska,696,503,699379895,2847,0 +41382,Oslo,516,297,7758085,2030,0 +41383,028.Stradi,435,308,698365960,10495,0 +41384,KONFA+TO+MARKA%2C+NARKA,301,457,698152377,10290,0 +41385,0008,422,314,2321390,6871,0 +41386,Wilk,698,481,849099640,7225,0 +41387,Wioska+barbarzy%C5%84ska,377,338,699660539,9849,0 +41388,Wioska+barbarzy%C5%84ska,587,315,828637,10495,0 +41389,OSADA02,603,331,849006385,4899,0 +41390,0114,374,660,7085510,8149,3 +41391,Wachowiaka,479,298,698848373,3039,0 +41392,Osada+koczownik%C3%B3w,326,604,7183372,10186,6 +41393,%23%23%23009%23%23%23,592,679,698285444,10495,0 +41394,Wioska+barbarzy%C5%84ska,579,679,698215322,3112,0 +41395,Wie%C5%9B+03,333,610,6180190,9068,0 +41396,ZA13,319,411,356642,9835,0 +41397,Wioska+barbarzy%C5%84ska,526,299,7758085,10337,0 +41398,025,303,543,9280477,7743,0 +41399,New+World,446,687,698152377,10294,0 +41400,Wioska+Zorro+012,678,595,849080702,5794,0 +41401,004.Stradi,440,313,698365960,10495,0 +41402,Wanda+Metropolitano,667,615,849096631,5653,0 +41403,%4003%40,406,324,699483429,9619,0 +41404,KONFA+TO+MARKA%2C+NARKA,305,456,698152377,10291,0 +41405,Dream+on,304,492,698962117,9488,0 +41406,FP010,478,699,699605333,10393,0 +41407,Wioska+barbarzy%C5%84ska,402,330,195249,8227,0 +41408,Wioska+barbarzy%C5%84ska,690,438,1715091,8439,0 +41409,08.+Nie+pyskuj,553,310,699072129,9105,0 +41410,D_3,531,304,849099797,1523,0 +41411,Wioska+barbarzy%C5%84ska,693,434,1715091,9560,0 +41412,Kryptonowy+gr%C3%B3d,314,419,699377401,3379,0 +41414,K35+-+%5B021%5D+Before+Land,584,322,699088769,9147,0 +41415,Szlachcic,372,350,698160606,5061,0 +41416,%5B0301%5D,431,309,8630972,9123,0 +41417,028+Barba+10,309,541,926823,2634,0 +41419,034,700,524,699150527,8335,0 +41420,z+Wioska+9,362,359,3909522,5303,0 +41421,Jan+PowerForce+K,687,445,879782,9630,0 +41422,Taran,325,604,6180190,10654,0 +41423,%230214+Segadorr+dar,451,303,1238300,10178,0 +41424,Wioska+barbarzy%C5%84ska,329,599,7183372,6121,0 +41425,-+172+-+SS,537,696,849018239,9179,0 +41426,Szlachcic,381,345,3484132,10495,0 +41427,016+Komorniki,674,399,698768565,6989,0 +41428,ZZZ,500,694,8980651,9705,0 +41429,KONFA+TO+MARKA%2C+NARKA,308,454,698152377,10290,0 +41430,D%C4%85br%C3%B3wka+Nag%C3%B3rna,564,690,698723158,9482,0 +41431,ZZZ,512,701,8980651,6912,0 +41432,-03-,567,687,7860453,8461,0 +41433,%5B0052%5D,436,314,8630972,10495,0 +41435,C0124,300,512,8841266,10495,0 +41436,psycha+sitting,424,684,699736927,9778,0 +41437,277...gulden,461,300,6920960,10679,0 +41438,Wioska+barbarzy%C5%84ska,469,303,849093576,2078,0 +41439,0007,424,318,2321390,7963,0 +41441,Balbina,524,703,699733501,4783,0 +41442,Wsch%C3%B3d+X7,694,537,698562644,10033,0 +41443,033+Maine,610,480,7092442,10268,0 +41444,Wioska+barbarzy%C5%84ska,525,303,7758085,9408,0 +41445,Wioska+BLACK+SOLDI+LP,305,507,699510045,8855,0 +41446,023.,322,595,3475079,3208,0 +41447,Wioska+barbarzy%C5%84ska,349,373,7462660,6460,0 +41449,Wioska,670,596,849048867,1966,0 +41450,%2AINTERTWINED%2A,520,702,698704189,5344,0 +41451,Wioska+barbarzy%C5%84ska,693,437,1715091,8016,0 +41452,114.+Dran,632,603,8337151,6820,0 +41453,FAKE+OR+OFF,422,318,698231772,9919,0 +41454,AAA,539,303,1006847,10068,0 +41455,Wioska+barbarzy%C5%84ska,690,450,849098769,5057,0 +41456,AAA,542,303,1006847,9669,0 +41457,Wied%C5%BAma+-+Z+016,309,446,9239515,2377,0 +41458,bucksbarzy%C5%84skamiiiru,336,378,848955783,2347,0 +41459,KR%C3%93L+PAPI+WIELKI,661,624,698191218,10000,0 +41461,029.+LooK,697,473,7494497,9966,0 +41462,z181_27,305,443,393668,9825,0 +41463,Timbuktu,402,672,699736927,10311,8 +41465,MojeDnoToWaszSzczyt,504,302,9299539,9960,0 +41466,73.,321,575,698704189,3752,0 +41467,psycha+sitting,408,674,699736927,10178,0 +41468,038.,324,583,3475079,1600,0 +41469,szlachcic%3Btaran+3,593,320,7340529,10362,0 +41470,z+C01+Bydgoszcz,347,378,3909522,9345,0 +41471,Wioska+barbarzy%C5%84ska,340,388,698807570,10051,0 +41472,K34+-+%5B158%5D+Before+Land,466,303,699088769,7269,0 +41473,B019,521,298,699208929,7183,0 +41474,Z%C5%82oty+%C5%9Awit,568,311,699883079,7747,0 +41475,C16,694,531,848995478,2802,0 +41476,015,316,574,849099463,4661,0 +41477,%2136+75+Fratauti+Noi,651,374,698361257,9522,0 +41478,007+RVWF+Wioska+barbarzy%C5%84ska,315,431,3108144,4172,0 +41479,012+NAWRA,667,609,849048867,7002,0 +41480,Mastowis,673,393,699738350,9885,0 +41481,AAA,540,304,1006847,9650,0 +41483,BRICKLEBERRY,553,303,699072129,9040,0 +41484,a+mo%C5%BCe+off+%3F+%3A%29,675,397,698768565,5012,0 +41485,032+invidia,519,701,849093426,10237,0 +41486,C0087,299,522,8841266,10252,0 +41487,Topornik+4,654,380,7340529,10654,0 +41488,035.+hehehe,697,465,7494497,10364,0 +41492,Wioska+barbarzy%C5%84ska,348,372,7462660,10492,0 +41493,Taran,328,606,6180190,9962,0 +41494,A%2A%2A%2A,694,549,848995478,2450,0 +41495,Wioska+barbarzy%C5%84ska,368,652,699269923,9740,0 +41496,psycha+sitting,404,671,699736927,10311,0 +41497,069-+Mroczna+Osada,618,333,849035905,8908,0 +41498,C0010,304,516,8841266,10252,0 +41499,P%C3%B3%C5%82nocny+Bagdad,614,335,8847546,10311,0 +41500,KONFA+TO+MARKA%2C+NARKA,300,460,698152377,7678,0 +41501,b%C5%82otna,429,561,699833171,3880,0 +41502,Wioska+kwiatek7777,334,602,7183372,10362,0 +41503,040+invidia,521,695,849093426,10039,0 +41504,Taran,336,607,6180190,10433,0 +41505,A+063,358,638,272173,4221,0 +41506,Nysa,679,546,848932879,11321,0 +41507,009,658,378,698635863,9516,0 +41508,psycha+sitting,420,684,699736927,10311,0 +41509,psycha+sitting,401,672,699736927,10178,0 +41510,Forteca%2A001%2A,534,692,1078121,9521,0 +41511,Out+of+Touch,321,421,698962117,9742,0 +41512,Lord+Lord+Franek+.%23176,516,317,698420691,12154,0 +41513,TARAN,537,695,7860453,8494,0 +41514,psycha+sitting,415,678,699736927,10178,0 +41515,023+Osada+koczownik%C3%B3w,610,668,699346280,10160,3 +41516,036,696,515,699150527,7488,0 +41517,Marmag81,305,476,1096254,9638,0 +41518,%5B0109%5D,445,304,8630972,10495,0 +41519,Domi+9,702,478,849002796,5533,0 +41520,C107,363,643,699383279,3449,0 +41521,KONFA+TO+MARKA%2C+NARKA,300,463,698152377,8996,0 +41522,Wsch%C3%B3d+X8,699,531,698562644,10544,0 +41523,Wioska+barbarzy%C5%84ska,701,530,8323711,5377,0 +41524,Strzelce+Opolskie,677,555,848932879,10393,0 +41525,004+The+Gold+Tower,350,363,7462660,9678,0 +41526,C0195,300,528,8841266,9095,0 +41527,C0203,302,535,8841266,10251,0 +41528,FAKE+OR+OFF,413,318,698231772,9812,8 +41529,ZZZ,461,691,699827112,9701,0 +41530,Wioska+barbarzy%C5%84ska,626,342,699580120,6581,0 +41531,%2136+64+Sfantu+Ilie,646,367,698361257,8320,0 +41532,Wioska+barbarzy%C5%84ska,531,298,7758085,9925,0 +41533,007,676,408,699738350,10280,0 +41534,Wioska+barbarzy%C5%84ska,348,364,7462660,10044,0 +41536,Wioska+Wodzu003,551,695,699201278,7067,0 +41537,Piek%C5%82o+to+inni,591,328,848956765,4330,0 +41538,A000,461,698,699725436,3680,0 +41539,z+001040,352,368,3909522,7827,0 +41540,Wioska+barbarzy%C5%84ska,308,548,5997814,3916,0 +41541,Osada+koczownik%C3%B3w,618,339,849097312,2844,7 +41542,Wow6,369,356,698160606,10078,0 +41543,001+VLV,560,305,849100656,4687,0 +41544,Wioska+barbarzy%C5%84ska,577,313,828637,10478,0 +41545,Wioska+barbarzy%C5%84ska,624,659,848909464,9692,0 +41547,EO+EO,296,512,699697558,10224,0 +41548,%5B044%5D+Wioska+barbarzy%C5%84ska,685,429,849095068,9433,0 +41549,005,524,298,699208929,10469,0 +41550,093,688,579,699373599,3255,0 +41551,002+%2A+Lady+Porto+%2A,695,502,699406750,12154,0 +41552,%5B0129%5D,452,306,8630972,9590,0 +41553,Bu%C5%BCka+Mleczaku+%3A%29,351,634,698908184,7652,0 +41554,Zeta+Reticuli+O,417,322,699323302,11188,0 +41555,Waganiec,667,387,699491076,5201,0 +41557,C012,596,669,9023703,8233,0 +41558,wielki+myk,589,676,699567608,9976,3 +41559,Szlachcic,399,355,3484132,10284,0 +41560,Wioska+barbarzy%C5%84ska,304,455,699706955,2014,0 +41561,Wioska+barbarzy%C5%84ska,384,332,699660539,9955,0 +41562,Woytkowizna,558,691,7860453,7258,0 +41563,Wioska+barbarzy%C5%84ska,699,529,8323711,3645,0 +41564,A000,470,698,699725436,9924,5 +41565,AAA,532,303,1006847,9029,0 +41566,023,451,308,2502956,10019,0 +41567,Bessa+019,636,651,848987051,10220,0 +41568,FAKE+OR+OFF,411,319,698231772,9813,8 +41570,P%C5%82ynie+defik+p%C5%82ynie+po+polskiej,358,635,698908184,4620,0 +41571,Szlachcic,388,338,3484132,10143,0 +41572,Wow16,366,356,698160606,5228,0 +41573,Z001,526,300,7758085,10337,5 +41574,%230209+Segadorr+dar,451,313,1238300,10178,0 +41575,Wioska+barbarzy%C5%84ska,693,441,1715091,6467,0 +41576,Wioska+Wodzu001,553,694,7860453,9835,0 +41577,B01,692,559,848995478,10362,0 +41578,Forteca%2A010%2A,531,697,1078121,4530,0 +41579,TUUU,607,329,699098531,10311,0 +41580,014+VWF+Wioska+barbarzy%C5%84ska,310,427,3108144,5233,0 +41581,035+Night+Raid,493,702,699684062,8550,6 +41582,112+invidia,516,699,849093426,9050,0 +41583,Melon7,313,434,699659708,3580,0 +41584,I107,694,444,699722599,6204,0 +41585,-27-,638,358,699837826,2620,0 +41586,Dream+on,296,488,698962117,8347,0 +41587,A04,695,554,848995478,10702,0 +41588,EO+EO,299,515,699697558,10252,9 +41589,Wioska+barbarzy%C5%84ska,581,315,828637,10474,0 +41590,039Mrozy,477,699,699605333,6340,0 +41591,C0125,301,512,8841266,10362,0 +41592,055.+Likawitos,691,541,1601917,6624,0 +41593,%C5%BBUBR+PSYCHIATRYK+012,620,655,33900,6356,0 +41594,Wioska+barbarzy%C5%84ska,673,407,849095068,9082,0 +41595,003,389,664,8839403,6523,0 +41596,12+Kambr,398,326,195249,9204,0 +41597,ZA03,321,405,356642,9835,0 +41598,Szlachcic,375,349,698160606,10495,0 +41599,KR%C3%93L+PAPI+WIELKI,633,644,698191218,9149,0 +41600,Z+01,418,313,6884492,12154,0 +41601,Wioska+barbarzy%C5%84ska,650,370,7340529,5413,0 +41602,Mroczny+Zamek+026,353,631,698908184,5015,0 +41603,Wioska+barbarzy%C5%84ska,310,448,699285160,2537,0 +41604,0008,354,357,699644448,3771,0 +41605,007,702,518,699150527,10361,0 +41606,010,666,385,698635863,6969,0 +41607,Wioska+barbarzy%C5%84ska,697,455,1715091,8822,0 +41608,psycha+sitting,397,672,699736927,6887,0 +41609,036,459,299,2502956,9544,0 +41610,Bessa+020,636,652,848987051,10223,0 +41611,Wyzima,557,311,699072129,9822,0 +41612,B014,520,301,699208929,8069,0 +41613,Wioska+Zorro+019,674,591,849080702,9267,0 +41614,Z%7C008%7C+Genua,458,696,699393742,6790,0 +41615,%C5%81om%C5%BCa,688,478,849100082,10627,0 +41616,Wioska+004,675,596,7999103,10061,7 +41617,Wygwizdowa+002,636,653,698562644,10311,0 +41618,%5B0124%5D,447,305,8630972,9879,0 +41619,012,423,685,849099876,10495,9 +41620,2.SYNDYKATOR,523,304,699208929,4469,0 +41621,08+Villarrubia,378,657,699269923,6546,0 +41624,002,390,665,8839403,6838,0 +41625,XDX,606,330,699098531,4515,0 +41626,Manama,512,302,699208929,9911,0 +41627,Szlachcic,382,341,3484132,10005,0 +41628,201...segador,453,310,6920960,10787,0 +41629,Wioska+barbarzy%C5%84ska,387,330,699660539,9793,0 +41630,Dingo,672,393,699738350,9966,0 +41632,Szlachcic,677,588,698867446,9657,0 +41633,Wioska+barbarzy%C5%84ska,389,669,6948793,7897,0 +41634,New+World,430,683,698152377,7558,0 +41635,Ave+Why%21,468,695,699121671,1117,0 +41636,z+000+Wioska+12,352,361,3909522,8538,0 +41637,B013,521,301,699208929,6556,0 +41638,Wioska+barbarzy%C5%84ska,576,313,828637,10237,0 +41639,B%23012,701,461,2065730,9797,0 +41640,psycha+sitting,424,682,699736927,10178,0 +41641,036+-+Mroczna+Osada,690,456,849035905,11933,0 +41642,007+Wioska+barbarzy%C5%84ska,613,671,699346280,10160,0 +41643,Dream+on,304,491,698962117,9485,0 +41644,%5B0064%5D,438,316,8630972,10495,0 +41645,BRICKLEBERRY,547,304,699072129,10311,0 +41646,.33,327,393,848955783,10971,0 +41647,MojeDnoToWaszSzczyt,504,305,9299539,9964,0 +41648,Oww+Konfederacja,607,392,848915730,5748,0 +41649,%3F%3F%3F%3F,487,298,698489071,9008,0 +41650,KR%C3%93L+PAPI+WIELKI,664,621,698191218,10000,2 +41651,B11,695,544,848995478,9132,0 +41652,ZZZ,533,701,8980651,10237,0 +41653,ZACHOD+008,352,364,7462660,8364,0 +41654,-+175+-+SS,548,690,849018239,7441,0 +41655,CALL+1069,654,626,699784536,10495,0 +41656,%2136+65+Tibeni,652,368,698361257,5472,0 +41657,%2136+75+Iaslovat,657,372,698361257,8723,0 +41658,B%23005,698,454,2065730,9797,0 +41659,psycha+sitting,409,681,699736927,10178,0 +41660,009.,645,358,9048764,9869,0 +41661,D.025,391,667,849088243,3816,0 +41662,Jan+My+City+1,691,433,879782,10198,0 +41663,Wioska+barbarzy%C5%84ska,700,487,699429153,8995,0 +41664,KR%C3%93L+PAPI+WIELKI,640,641,698191218,10492,0 +41665,psycha+sitting,407,676,699736927,10311,6 +41666,Wioska+barbarzy%C5%84ska,537,699,8980651,9747,0 +41667,002,699,508,7418168,10019,0 +41668,Nowa+51,683,574,698702991,9825,0 +41669,Wioska+8,361,357,3342690,2892,0 +41670,007,595,320,8842936,8318,0 +41671,Wioska+barbarzy%C5%84ska,685,562,7038651,3897,0 +41672,-010-+Chwa%C5%82a+Imperium+XXX,629,348,849099276,10178,1 +41674,psycha+sitting,399,673,699736927,10311,0 +41675,Z%C5%82oty+%C5%9Awit,573,313,699883079,8116,0 +41676,-08-,562,694,7860453,6280,0 +41677,088+invidia,517,699,849093426,8272,0 +41678,Tu+jest+przysz%C5%82o%C5%9B%C4%87,662,392,699491076,6755,0 +41679,FENDI,306,436,699794765,2798,0 +41680,...06+am,670,613,848921861,10495,0 +41681,Swoja7,607,669,6528152,8867,0 +41682,psycha+sitting,414,680,699736927,10311,0 +41683,Ny+ny,704,497,942959,10559,0 +41684,047,300,532,9280477,4930,0 +41685,O088,344,620,272173,9867,0 +41686,TWIERDZA+.%3A086%3A.,694,562,7154207,8992,0 +41687,012.+Targ%C3%B3wek,699,472,7494497,10728,0 +41688,a+mo%C5%BCe+off+%3F+%3A%29,674,403,698768565,9306,0 +41689,009b,312,424,8259895,5442,0 +41690,XDX,613,330,699098531,9158,0 +41691,202...segador,456,306,6920960,10787,0 +41692,z181_07,311,440,393668,9885,0 +41693,New+World,470,701,698152377,10311,0 +41694,-+133+-+SS,544,691,849018239,10000,0 +41695,CALL+1050,653,628,699784536,10365,0 +41696,C0088,303,524,8841266,10252,0 +41697,bucksbarzy%C5%84skamiiiru,339,379,848955783,2434,0 +41698,0147,678,408,698416970,2637,0 +41700,Wioska+barbarzy%C5%84ska,308,557,5997814,3949,0 +41701,052,534,674,2293376,9993,0 +41702,033+invidia,515,703,849093426,10237,0 +41703,Marcule,572,686,698723158,6027,0 +41704,016+Kuzyn+kami,342,606,7183372,10341,0 +41705,legit_scam.,552,690,7860453,6849,0 +41706,Wioska+barbarzy%C5%84ska,553,697,7581876,7791,0 +41707,%2136+74+Sucevita,648,370,698361257,10224,0 +41708,S004,599,671,8627359,9231,0 +41710,Mefedron+09,393,337,3484132,5507,0 +41711,marmag81%2F03www,297,472,1096254,9701,0 +41712,030,419,685,849099876,10495,0 +41713,Warkoczynka+1,680,596,699778867,11188,0 +41714,Wioska+Kugiel102,506,682,8501514,10019,0 +41715,Normalnie+tak,702,514,699785935,9860,0 +41716,Wioska+barbarzy%C5%84ska,575,314,828637,10495,0 +41717,%2A023+GAWRA%2A,309,428,2415972,8893,0 +41718,%21--,647,366,698361257,2729,0 +41719,084,698,490,2135129,4259,0 +41720,%2136+64+Cojocareni,647,368,698361257,9678,0 +41721,C0207,300,537,8841266,10252,0 +41722,Domi+2,699,476,849002796,8628,0 +41724,011,656,380,698635863,9278,0 +41725,B.02+duchy+serca+puszczy,555,308,849026145,4094,0 +41726,%C5%BBUBR+PSYCHIATRYK+013,622,656,33900,6843,0 +41727,-04-,557,690,7860453,7575,0 +41729,Wioska+barbarzy%C5%84ska,694,560,6929240,4720,0 +41730,Didek,681,587,849070946,10426,0 +41731,XDX,603,329,699098531,7264,0 +41732,029,456,301,2502956,9652,0 +41733,Wioska+barbarzy%C5%84ska,698,453,849098769,5007,0 +41734,001,408,319,698258283,10495,0 +41735,014.+Sherwood,377,341,699660539,6254,0 +41736,TWIERDZA+.%3A008%3A.,686,574,7154207,10275,1 +41737,AAA,548,308,1006847,6753,0 +41738,aAa+Szlaban+6,634,647,699778867,6709,0 +41739,Pierwsza+Nemora,563,316,699072129,8328,0 +41740,015,614,336,8842936,9997,0 +41741,%23%23%23072%23%23%23,595,678,698285444,10495,0 +41742,Alojz%C3%B3w,571,685,698723158,7227,0 +41743,Wioska+barbarzy%C5%84ska,594,324,699098531,3936,0 +41744,%5B041%5D+Wioska+barbarzy%C5%84ska,687,427,849095068,9288,0 +41745,C.04+a+panicz+to+dok%C4%85d%3F,546,301,849026145,4197,0 +41746,062.+Wioska+barbarzy%C5%84ska,701,465,7494497,8925,0 +41747,FENDI,301,465,699794765,10591,0 +41748,K35+-+%5B029%5D+Before+Land,575,310,699088769,10016,0 +41749,%3F%3F%3F,489,301,698489071,7711,0 +41750,144+invidia,539,694,849093426,6659,0 +41751,Gattacka,688,433,699298370,9718,4 +41752,010.+Canterbury,387,336,699660539,10007,0 +41753,005,702,494,942959,10495,0 +41754,EO+EO,301,521,699697558,10019,0 +41755,013,644,644,849099544,9401,0 +41756,Szlachcic,678,593,698867446,9333,0 +41757,z181_03,313,441,393668,9888,0 +41758,BRICKLEBERRY,554,307,699072129,5500,0 +41759,Szlachcic,389,338,3484132,10393,0 +41760,Zychowicz,358,642,849096649,7117,0 +41761,Wioska+barbarzy%C5%84ska,688,562,7038651,4551,0 +41762,KR%C3%93L+PAPI+WIELKI,646,635,698191218,6275,0 +41763,komandos48,500,698,7976264,5150,0 +41764,KONFA+TO+MARKA%2C+NARKA,301,456,698152377,10292,0 +41765,%2304,557,306,699072129,9107,0 +41766,Winneburg,553,307,699072129,10220,0 +41767,K35+-+%5B036%5D+Before+Land,576,312,699088769,12154,0 +41769,New+World,424,687,698152377,10292,0 +41770,0003+Wioska+barbarzy%C5%84ska,443,695,849037407,10481,0 +41771,ZZ15,322,410,356642,9835,0 +41772,C0098,302,516,8841266,10252,0 +41773,Wioska+barbarzy%C5%84ska,655,372,7340529,8913,0 +41774,%C5%BBUBR+PSYCHIATRYK+020,625,652,33900,10100,0 +41775,017+samob%C3%B3j,542,700,849093426,10237,1 +41776,Wioska+barbarzy%C5%84ska,379,335,3698627,9876,0 +41777,%2136+65+Bivolaria,653,368,698361257,6585,0 +41779,bucksbarzy%C5%84skamiiiru,338,380,848955783,2173,0 +41780,Bu%C5%82garska,667,614,849096631,3271,0 +41781,Wioska+barbarzy%C5%84ska,683,411,699598425,6815,0 +41783,psycha+sitting,407,677,699736927,10311,0 +41785,C0100,301,517,8841266,10252,0 +41786,0049+Wioska+barbarzy%C5%84ska,449,695,849037407,9537,0 +41787,Wioska+barbarzy%C5%84ska,657,380,849041192,4062,0 +41788,Wioska+barbarzy%C5%84ska,676,600,3467919,2551,0 +41789,Twierdza+02,671,393,8379871,3783,0 +41790,Osada+koczownik%C3%B3wx,338,391,698807570,9716,6 +41792,%7E079.,467,695,7139820,5097,0 +41793,C0126,298,514,8841266,10252,0 +41794,Wied%C5%BAma+-+Z+012,308,432,9239515,4686,0 +41795,Wioska+barbarzy%C5%84ska,315,569,699671197,4988,0 +41796,KONFA+TO+MARKA%2C+NARKA,300,462,698152377,6801,0 +41797,Seba1234567,673,594,849099689,1516,0 +41798,002,302,539,849098628,10838,0 +41799,049.+Kilimand%C5%BCaro,694,547,1601917,7747,0 +41800,043,650,628,699099811,10495,0 +41801,Not+2+morrow,472,299,698489071,10301,0 +41802,Gattacka,686,432,699298370,9191,0 +41803,Wioska+barbarzy%C5%84ska,364,649,699269923,9898,0 +41804,AAA,542,308,1006847,10311,0 +41805,a+mo%C5%BCe+off+%3F+%3A%29,670,399,698768565,5362,0 +41806,Wioska+barbarzy%C5%84ska,394,328,3484132,10971,0 +41807,KR%C3%93L+PAPI+WIELKI,658,622,698191218,9614,0 +41808,psycha+sitting,402,671,699736927,10178,0 +41809,%5B0120%5D,447,304,8630972,10060,0 +41810,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,498,706,8980651,5560,0 +41811,012,660,380,698635863,9809,0 +41812,ZZ01,323,408,356642,9792,0 +41813,%2ALonta,574,636,699443920,9761,0 +41814,A01,695,555,848995478,11550,0 +41815,C002,472,701,8954402,9592,0 +41816,020,393,331,8153941,7115,0 +41817,spanko,681,426,699738350,7766,0 +41818,Wioska+barbarzy%C5%84ska,697,486,699429153,7624,0 +41819,...02+am,671,613,848921861,10495,0 +41820,Wioska+Paprykk777,428,665,849100134,1899,0 +41821,Wioska+barbarzy%C5%84ska,626,349,699580120,6448,0 +41822,071,696,548,699316421,10495,0 +41823,Wioska+005,701,527,2999957,5381,0 +41824,HAPERT,627,655,848909464,10047,0 +41825,Wioska+barbarzy%C5%84ska,590,317,828637,10344,0 +41826,Wie%C5%9B+10,340,612,9199885,4141,0 +41828,boh81%2F33,300,471,848889556,8467,0 +41829,Wioska+barbarzy%C5%84ska,568,313,828637,4627,0 +41830,Szlachcic,677,589,698867446,9638,0 +41832,Out+of+Touch,317,423,698962117,9570,9 +41833,Nowa+36,628,569,698702991,9134,0 +41834,Szlachcic,384,341,698160606,10475,0 +41835,Dream+on,300,493,698962117,9491,0 +41836,XDX,616,336,699098531,8488,0 +41837,Wioska11,630,480,848935020,10495,0 +41838,%23%23%23073%23%23%23,592,677,698285444,10495,0 +41840,026%23+Malvine,491,697,3933666,6194,0 +41841,%2AINTERTWINED%2A,503,702,698704189,5730,0 +41842,bucksbarzy%C5%84skamiiiru,327,402,848955783,7339,0 +41843,003181,628,656,699872616,7589,0 +41844,Dream+on,299,494,698962117,9505,8 +41845,Wioska+Fatality51,324,594,699792747,5653,0 +41846,KR%C3%93L+PAPI+WIELKI,624,662,698191218,7077,0 +41847,Didek,682,583,849070946,10342,0 +41848,Wioska+barbarzy%C5%84ska,689,430,8675636,9096,0 +41849,Szlachcic,386,339,3484132,9626,0 +41851,032,308,571,849098688,10160,0 +41852,Wioska+barbarzy%C5%84ska,662,376,7758085,2973,0 +41853,Wioska+barbarzy%C5%84ska,388,335,699660539,6750,0 +41854,Jan+016+Ost+K,694,445,879782,9782,0 +41855,Wioska+05,569,313,849067192,3245,0 +41856,008.+plebi,323,586,3475079,2549,0 +41857,-002-+sz,356,637,272173,5572,0 +41858,038,310,568,849098688,9835,0 +41859,Gda%C5%84sk,511,297,699208929,9081,0 +41860,003+troch%C4%99+czasu+min%C4%99%C5%82o,525,695,849093426,10237,0 +41861,013+%2A+Lady+Porto+%2A,698,503,699406750,7220,0 +41862,Wioska+barbarzy%C5%84ska,644,355,849092309,3377,0 +41863,Brody,565,693,698723158,5768,0 +41864,Wioska+077,651,592,848971079,9105,0 +41865,129+invidia,504,702,849093426,10401,0 +41866,Wioska+barbarzy%C5%84ska,392,336,699406776,2588,0 +41867,066-+Mroczna+Osada,609,338,849035905,10496,0 +41868,045.+Night+Raid,485,703,699684062,9811,0 +41869,asi,649,593,699611673,4967,0 +41870,B6.,310,545,849095482,2470,0 +41871,076,631,591,698999105,6995,0 +41872,%23K66+0006,610,672,699728159,4792,0 +41873,011,672,605,849095963,3145,0 +41874,-002-+sz,357,634,272173,4877,0 +41875,Taran,325,602,6180190,10200,0 +41876,Wioska+barbarzy%C5%84ska,614,331,0,4146,0 +41878,--18--,328,601,8877156,9627,0 +41879,marmag81%2F03g,302,467,1096254,6726,0 +41880,boh81,306,468,848889556,9617,0 +41881,bucksbarzy%C5%84skamiiiru,328,393,848955783,9551,0 +41882,0016+Wioska+barbarzy%C5%84ska,439,695,849037407,9589,0 +41883,Dream+on,304,507,698962117,8816,0 +41884,207...segador,446,308,6920960,10787,6 +41886,B8.,310,546,849095482,2902,0 +41887,%3F%3F%3F,485,305,698489071,10160,5 +41888,EE+001,694,580,849100149,9540,0 +41889,Wioska+barbarzy%C5%84ska,524,303,7758085,9792,0 +41890,z+rondalek,358,359,3909522,10210,0 +41891,Wioska+barbarzy%C5%84ska,680,413,699598425,7139,0 +41892,Tuchomie,469,298,849101116,4088,0 +41893,XDX,597,321,699098531,5588,0 +41894,Saska+K%C4%99pa1,367,357,849099434,4364,0 +41895,Dream+on,297,495,698962117,9587,3 +41896,Wioska+barbarzy%C5%84ska,585,319,828637,10475,0 +41897,.achim.,489,298,6936607,6141,3 +41898,002+VLV,559,304,849100656,10188,0 +41899,XDX,594,327,699098531,4636,0 +41900,Dream+on,299,482,698962117,8449,0 +41901,KR%C3%93L+PAPI+WIELKI,646,632,698191218,10331,0 +41902,TWIERDZA+.%3A079%3A.,686,573,7154207,9634,0 +41903,Wioska+barbarzy%C5%84ska,339,373,7462660,6172,0 +41904,Wioska+barbarzy%C5%84ska,670,606,3467919,3532,0 +41905,028,456,304,2502956,10019,0 +41906,013+NAWRA,664,615,849048867,5900,0 +41907,234,416,313,7271812,1317,0 +41908,Cisowa,479,297,698848373,2330,0 +41909,C062,376,654,699383279,8685,0 +41910,bucksbarzy%C5%84skamiiiru,338,384,848955783,2260,0 +41911,O138,355,643,272173,7403,0 +41912,%2136+65+Badeuti,654,368,698361257,7175,0 +41913,108.Stradi,439,309,698365960,8828,0 +41914,Taran,336,609,6180190,9959,0 +41915,O100,335,618,272173,9344,0 +41916,Jan+Ost+nord,696,461,879782,9900,0 +41917,C020,375,662,699383279,10040,0 +41918,Wioska+barbarzy%C5%84ska,563,314,699072129,6908,0 +41919,%23%23%23074%23%23%23,581,681,698285444,10495,0 +41920,Wioska+barbarzy%C5%84ska,392,673,6948793,8900,0 +41921,FENDI,306,435,699794765,6545,0 +41922,%23109%23,637,596,692803,9761,0 +41923,B005+Zos,516,304,699208929,10033,0 +41924,KONFA+TO+MARKA%2C+NARKA,303,459,698152377,5645,0 +41925,023+NAWRA,668,612,849048867,8390,0 +41926,Out+of+Touch,316,432,698962117,5906,0 +41927,Wioska+barbarzy%C5%84ska,306,556,5997814,4164,0 +41928,East+4,656,376,1086351,3985,0 +41930,.achim.,471,299,6936607,4923,0 +41931,TWIERDZA+.%3A048%3A.,695,564,7154207,10112,0 +41932,C11,693,531,848995478,3648,0 +41933,0190,475,544,698659980,10019,0 +41934,0046+Utopia1,439,696,849037407,9572,0 +41935,Didek,680,578,849070946,10475,0 +41936,Wioska+barbarzy%C5%84ska,343,377,7462660,3399,0 +41937,FAKE+OR+OFF,405,325,698231772,10073,4 +41938,ZA18,320,414,356642,9835,0 +41939,Wow15,362,351,698160606,4337,0 +41940,Ania,310,430,2415972,9917,0 +41941,Wioska+016,672,606,7999103,3924,0 +41942,051,631,349,849010255,3045,0 +41943,-10-,567,693,698723158,5748,0 +41944,Wioska+barbarzy%C5%84ska,346,369,7462660,7324,0 +41945,%23%23%23019%23%23%23,588,685,698285444,10495,0 +41946,Wioska+barbarzy%C5%84ska,690,544,17714,7288,0 +41947,077,636,586,698999105,5993,0 +41948,097+Saitama,690,448,7092442,6843,0 +41949,Forteca%2A004%2A,532,694,1078121,9167,0 +41950,Wioska+barbarzy%C5%84ska,587,319,828637,10971,0 +41951,CALL+1074,653,630,699784536,10508,0 +41952,TWIERDZA+.%3A041%3A.,691,563,848932879,10275,0 +41953,050,638,350,849010255,2327,0 +41954,131+invidia,526,696,849093426,6617,0 +41955,C003,470,703,8954402,9522,0 +41956,TUUU,603,332,699098531,7991,5 +41957,003+-+Nowy+Pocz%C4%85tek...,369,652,699269923,10874,0 +41958,Wioska+barbarzy%C5%84ska,661,373,7973893,3674,0 +41959,Wioska+barbarzy%C5%84ska,535,298,698350371,8890,0 +41960,Wioska,477,650,848999671,9556,0 +41961,Nowa+53,681,575,698702991,6636,0 +41962,KR%C3%93L+PAPI+WIELKI,645,642,698191218,9776,5 +41963,Wioska,548,687,7860453,9115,0 +41964,z181_12,308,443,393668,9886,0 +41965,Wioska+barbarzy%C5%84ska,344,382,7462660,1913,0 +41966,09.SNSD,686,420,9180206,8757,0 +41967,Chotcza,567,692,698723158,4975,0 +41968,011+NAWRA,660,613,849048867,7154,0 +41969,%230228+Segadorr+dar,443,304,1238300,10178,0 +41970,035.Stradi,431,308,698365960,10495,0 +41971,Miasto,338,611,6180190,9835,0 +41972,%C5%BBUBR+PSYCHIATRYK+011,624,655,33900,6976,0 +41973,B006+ZieNciu,699,457,113796,10160,0 +41974,C0191,302,534,8841266,8433,0 +41975,Wioska+klez+019,324,510,698295651,5308,0 +41976,C.015,702,487,9188016,7347,0 +41977,Didek,681,584,849070946,10160,0 +41978,027,455,303,2502956,10019,0 +41979,Hofek+29.,672,401,849095068,3499,0 +41981,Didi,681,586,849070946,10346,0 +41982,D.023,394,670,849088243,4218,0 +41983,Wioska+04,567,314,849067192,4769,0 +41984,ZA20,314,414,356642,9835,0 +41985,Nie+mam+pomys%C5%82u+na+nazw%C4%99+wioski,326,591,849100162,2852,0 +41986,KR%C3%93L+PAPI+WIELKI,642,647,698191218,10057,0 +41987,%230215+Segadorr+dar,456,305,1238300,10194,0 +41988,Wioska+barbarzy%C5%84ska,592,318,828637,10495,0 +41989,042,303,539,9280477,5624,0 +41990,Wioska+barbarzy%C5%84ska,696,482,699429153,8950,0 +41991,010+D,420,685,849099876,10495,0 +41992,a+mo%C5%BCe+off+%3F+%3A%29,678,409,698768565,6272,0 +41993,Didek,688,583,849070946,5394,0 +41994,Xenonowy+gr%C3%B3d,314,418,699377401,4008,0 +41995,Wioska+barbarzy%C5%84ska,672,399,698768565,2222,0 +41996,033.Stradi,426,314,698365960,10495,0 +41997,045.,325,590,3475079,3078,0 +41999,Ave+Why%21,313,580,6180190,4758,0 +42000,Wioska+barbarzy%C5%84ska,589,320,828637,10559,0 +42001,037,303,544,9280477,6088,0 +42002,0001+Osada+koczownik%C3%B3w,442,697,849037407,10475,8 +42003,C0127,298,513,8841266,10452,0 +42004,BRZEG+JORDANU+%7C+006,695,525,9228039,8057,0 +42005,Wioska+barbarzy%C5%84ska,528,302,7758085,9861,0 +42006,New+World,428,682,698152377,10294,0 +42007,Jednak+wol%C4%99+gofry,494,645,699725436,5965,0 +42008,Out+of+Touch,315,430,698962117,6973,0 +42009,010,300,545,9280477,12154,3 +42010,%230036+barbarzy%C5%84ska,464,345,1238300,10178,0 +42011,Wioska+barbarzy%C5%84ska,345,365,7462660,10068,0 +42012,C0094,300,523,8841266,10252,0 +42013,Moldor+11,635,359,849049045,9068,0 +42014,Winterhome.063,495,299,848918380,10178,0 +42016,%2AW003,663,379,7758085,9861,0 +42017,Wioska+barbarzy%C5%84ska,614,663,6818593,6447,0 +42018,bucksbarzy%C5%84skamiiiru,335,390,848955783,5976,0 +42019,019+B,402,678,849099876,10495,0 +42020,Wioska+barbarzy%C5%84ska,311,426,8259895,3394,0 +42021,009,311,425,8259895,6052,0 +42022,FAKE+OR+OFF,409,317,698231772,9834,0 +42023,%5B0214%5D,298,498,8630972,7414,0 +42024,Dream+on,298,503,698962117,9753,0 +42025,O07+Evora,660,514,699272880,10068,0 +42026,%5B0159%5D,450,302,8630972,8809,0 +42027,Melon4,310,433,699659708,4073,0 +42028,Ranczo2,303,455,699706955,12154,0 +42029,Borowy+gr%C3%B3d,320,416,699377401,6081,0 +42031,Domek+JOJO-+3,362,642,699269923,9835,0 +42032,037,457,300,2502956,10019,0 +42033,008,639,353,9291984,4861,0 +42034,Wioska+barbarzy%C5%84ska,701,541,848946700,5706,0 +42035,010.+Bielany,692,473,7494497,10080,0 +42036,%2136+65+Voitinel,655,366,698361257,8102,0 +42037,Kaplica,298,478,8048374,5453,0 +42038,Szlachcic,381,344,3484132,10072,0 +42039,017.+Lincoln,381,341,7775311,5651,0 +42040,Ziemianka+Ruskich,359,642,6948793,9856,0 +42041,O035,345,628,272173,9962,0 +42042,Daleko,651,372,7340529,10654,0 +42043,Wioska+barbarzy%C5%84ska,702,467,699574408,6971,0 +42044,%5B0093%5D,441,307,8630972,10495,0 +42045,Wioska+barbarzy%C5%84ska,695,437,1715091,7034,0 +42046,AAA,550,303,1006847,6259,0 +42047,O096,333,618,272173,9566,0 +42049,Darma+dla+zawodnika,323,588,6180190,4262,0 +42050,Dream+on,302,494,698962117,9497,0 +42051,z181_22,309,437,393668,9886,0 +42052,Zajkdn,546,698,849098688,9290,0 +42053,042.+Lekcje,453,699,848928624,3805,0 +42054,%3F%3F%3F,484,301,698489071,10160,0 +42055,Wonderwall,311,555,698962117,9494,0 +42056,004,701,506,7418168,10008,0 +42057,KR%C3%93L+PAPI+WIELKI,664,618,698191218,10000,0 +42058,037+Wioska+barbarzy%C5%84ska,693,443,849098769,6548,0 +42059,%23%23%23075%23%23%23,600,677,698285444,10495,0 +42060,Taran,333,605,6180190,9959,0 +42061,Jezioro+Turawskie,693,546,848932879,9890,0 +42062,EO+EO,301,518,699697558,10160,0 +42063,bucksbarzy%C5%84skamiiiru,337,386,848955783,2409,0 +42064,psycha+sitting,413,678,699736927,10178,0 +42065,Wiejska4,606,670,6528152,8621,0 +42066,%5B0211%5D,298,504,8630972,7758,0 +42067,Wioska+barbarzy%C5%84ska,302,552,5997814,1924,0 +42068,Wioska+barbarzy%C5%84ska,344,367,7462660,10068,0 +42069,0336,563,695,698659980,9817,0 +42070,Wyspa_40,506,700,2585846,9638,0 +42071,%2AINTERTWINED%2A,505,702,698704189,5756,0 +42072,bucksbarzy%C5%84skamiiiru,335,379,848955783,2347,6 +42073,Wioska+barbarzy%C5%84ska,643,361,6625437,2987,0 +42074,%3F%3F%3F,483,303,698489071,10503,0 +42075,009.+Xin+trea,325,593,3475079,10580,0 +42076,Bartosiak+prof.,355,642,272173,5783,0 +42078,Wioska+barbarzy%C5%84ska,379,337,699660539,10145,0 +42079,Wioska+barbarzy%C5%84ska,371,657,699269923,9677,0 +42080,055,631,345,849010255,3552,0 +42081,FAKE+OR+OFF,418,316,698231772,9830,0 +42082,bucksbarzy%C5%84skamiiiru,328,389,848955783,4743,0 +42083,So%C5%82tys+Wsi+WojTool,365,352,849027025,9741,0 +42084,0015,423,316,2321390,5127,0 +42085,000+Plutosea,310,573,9280477,9976,0 +42086,C0212,299,527,8841266,10252,0 +42087,Podgrodzie,479,345,849048216,3544,0 +42088,FAKE+OR+OFF,416,316,698231772,9827,9 +42089,C0204,299,529,8841266,9573,0 +42090,KR%C3%93L+PAPI+WIELKI,657,631,698191218,10000,0 +42091,0064,687,419,698416970,5375,0 +42092,Wioska+barbarzy%C5%84ska,692,434,1715091,9630,0 +42093,Wioska+eli-sa,331,616,6180190,9613,0 +42094,0015+Wioska+barbarzy%C5%84ska,448,689,849037407,10348,0 +42095,So%C5%82ty+Wsi+WojTool,369,349,849027025,9460,0 +42096,Wioska+barbarzy%C5%84ska,538,701,8980651,9747,0 +42097,003,702,498,942959,10495,5 +42099,KOS,675,608,848890012,1804,0 +42100,Ranczo5,304,448,699706955,2747,0 +42101,Z03,317,416,356642,9835,0 +42102,MojeDnoToWaszSzczyt,498,295,9299539,9970,0 +42103,A+017,352,629,272173,7992,0 +42104,XDX,612,332,699098531,8655,0 +42105,Wioska+Miczenso,556,334,849096123,4733,0 +42106,038.+Night+Raid,486,702,699684062,9416,0 +42107,.Y.,645,366,7340529,9355,0 +42108,bucksbarzy%C5%84skamiiiru,328,398,848955783,6087,0 +42109,z%C5%82oto+Ink%C3%B3w,370,358,849068108,8753,0 +42110,Bocianikson021,689,563,7528491,3402,0 +42111,08-oss,671,614,848921861,9437,0 +42112,XDX,604,326,699098531,9637,0 +42113,%23%23%23076%23%23%23,583,683,698285444,10495,0 +42114,013,670,387,698635863,9279,0 +42115,KR%C3%93L+PAPI+WIELKI,648,633,698191218,10257,0 +42116,Osada+koczownik%C3%B3w,698,478,699429153,9861,9 +42117,Borubar+3,705,483,699413581,3719,0 +42118,0014,358,353,699644448,3345,0 +42119,016+pechowiec,540,701,849093426,10311,0 +42120,FAKE+OR+OFF,414,313,698231772,9813,0 +42121,Wioska+barbarzy%C5%84ska,310,552,5997814,3676,0 +42122,Kamionka+Silesia,695,529,848932879,10971,0 +42123,wioska,633,347,9291984,8517,0 +42124,HAPERT,624,660,848909464,10654,0 +42125,%2AINTERTWINED%2A,508,699,698704189,6597,0 +42126,HAPERT,627,659,848909464,10521,0 +42127,%4005%40,406,327,699483429,8227,0 +42128,Z+001+Wroc%C5%82aw,328,594,849084740,10280,8 +42129,Morska,486,295,698848373,3707,0 +42130,082+invidia,516,696,849093426,6137,0 +42131,KR%C3%93L+PAPI+WIELKI,658,623,698191218,10000,0 +42132,CALL+1068,656,627,699784536,10495,3 +42134,Wioska+barbarzy%C5%84ska,397,332,699406776,2353,0 +42135,Chata+Pustelnika,375,351,848903690,4335,0 +42137,Z003,528,301,7758085,10094,0 +42138,Wioska+barbarzy%C5%84ska,704,486,699429153,8535,0 +42139,A+031,351,629,272173,3768,0 +42140,Dream+on,299,506,698962117,4910,0 +42141,Bocianikson023,693,560,7528491,4260,0 +42142,Dream+on,299,491,698962117,6718,0 +42143,Wioska+barbarzy%C5%84ska,387,334,699660539,6436,0 +42144,BRICKLEBERRY,562,313,699072129,7660,0 +42145,Wioska+22,679,591,849101162,5970,0 +42146,Wioska+barbarzy%C5%84ska,662,384,698635863,9172,0 +42147,Polesie,586,679,849100612,4265,0 +42148,021.+Weso%C5%82a,700,476,7494497,9902,0 +42149,Wioska+podbita,590,326,849063793,2926,0 +42150,bucksbarzy%C5%84skamiiiru,336,384,848955783,10344,0 +42151,C0189,303,533,8841266,7415,0 +42152,Z002,527,299,7758085,10094,0 +42153,21.+Another+love,554,310,849099696,8830,0 +42154,Wioska+barbarzy%C5%84ska,523,298,7758085,9925,0 +42155,067+ZieloneOczko1,705,514,2135129,9500,0 +42156,003.,322,589,3475079,10237,0 +42157,038.Stradi,435,310,698365960,10495,0 +42158,Wiejska5,605,671,6528152,8615,0 +42159,%5B0219%5D,295,512,8630972,6646,0 +42160,C0080,301,519,8841266,10252,0 +42161,AAA,535,303,1006847,5452,0 +42162,Gattacka,690,428,699298370,9230,0 +42163,A06,697,555,848995478,7979,0 +42164,Elo+elo+4,311,580,699016994,9679,0 +42165,000+Plutosea,312,570,9280477,9976,0 +42166,0321,566,690,698659980,9442,0 +42167,Taran,330,602,6180190,6389,0 +42169,C102,366,646,699383279,9799,0 +42170,Huracane,564,306,849100680,6421,0 +42171,C0090,306,530,8841266,10252,0 +42172,ruiny,632,650,7038651,2529,0 +42173,C0004,304,522,8841266,10252,0 +42174,Gattacka,599,428,699298370,9606,0 +42175,%23%23%23012%23%23%23,594,683,698285444,10495,0 +42176,003.,579,658,1270916,7622,0 +42177,z181_21,310,437,393668,8876,0 +42179,Wioska+barbarzy%C5%84ska,696,454,849098769,5088,0 +42180,KR%C3%93L+PAPI+WIELKI,626,662,698191218,6392,0 +42181,014,658,379,698635863,9556,0 +42182,050,565,403,7271812,9403,0 +42183,027.Stradi,430,308,698365960,10495,0 +42184,Wadowice,509,297,699208929,3497,0 +42185,MojeDnoToWaszSzczyt,492,295,9299539,9967,0 +42186,100,651,370,7340529,10887,5 +42187,Wioska+barbarzy%C5%84ska,671,390,1715091,9088,0 +42188,B08,692,551,848995478,10702,0 +42189,Wioska+barbarzy%C5%84ska,348,365,7462660,9898,0 +42190,Borsuk,703,484,849099640,4400,0 +42191,C0136,307,533,8841266,10252,0 +42192,Zaplecze+Barba+030,375,347,699796330,4892,0 +42193,15.+Blockchain,553,311,699072129,8688,0 +42194,%230131+Thorus5,476,326,1238300,10178,0 +42195,XXXX,564,305,849054951,9853,0 +42196,-023-+XXX,628,349,9291984,3780,0 +42197,Nierada,296,475,8048374,5641,0 +42199,village,641,361,7340529,10654,0 +42200,Machnacz,667,385,699491076,3297,0 +42201,Szlachcic,384,339,3484132,9709,0 +42202,FFF,643,353,8675636,7571,0 +42203,Wioska+barbarzy%C5%84ska,693,432,1715091,8659,0 +42204,wioska,633,348,9291984,11130,0 +42205,EO+EO,298,500,699697558,7637,0 +42206,0147,410,343,699431255,5905,0 +42207,Hofek+26.,666,397,699491076,5840,0 +42208,Wioska+barbarzy%C5%84ska,681,413,699598425,7769,0 +42209,Didek,689,577,849070946,10160,0 +42210,7.C,453,693,699777372,8616,0 +42211,krecik+02+e,343,618,272173,4262,0 +42212,Zbij%C3%B3w+Du%C5%BCy,569,691,698723158,6254,0 +42213,Dzik+8,305,434,8366045,7016,0 +42214,Wioska+barbarzy%C5%84ska,305,556,5997814,4497,0 +42215,Wioska+barbarzy%C5%84ska,585,316,828637,10495,0 +42216,-002-+sz,357,636,272173,2732,0 +42217,032.Stradi,427,309,698365960,10495,0 +42218,psycha+sitting,403,673,699736927,9644,0 +42219,Dream+on,295,496,698962117,9742,0 +42220,Familia+Kuzyni,379,665,7349282,3145,0 +42221,Szlachcic,384,338,3484132,10149,0 +42222,Osada+8,679,407,8675636,10083,0 +42223,%23K66+0014,608,675,699728159,5423,0 +42224,063.+hehehe2,701,467,7494497,9859,0 +42225,psycha+sitting,400,675,699736927,10178,0 +42226,Wioska+barbarzy%C5%84ska,331,617,6180190,6814,0 +42227,Wioska+barbarzy%C5%84ska,695,562,6929240,4914,0 +42228,XDX,598,327,699098531,6984,6 +42229,B%23009,690,457,2065730,9797,0 +42230,040+-+Nowy+Pocz%C4%85tek...,364,645,6948793,10946,3 +42232,Ewa,523,703,699733501,6999,0 +42233,KR%C3%93L+PAPI+WIELKI,660,628,698191218,8690,9 +42235,%3F%3F%3F%3F,486,299,698489071,8038,3 +42237,%C5%81o+baben%21,706,501,8418489,9797,0 +42238,KR%C3%93L+PAPI+WIELKI,655,632,698191218,10000,0 +42239,A+070,364,646,6948793,9236,0 +42240,030.Stradi,433,306,698365960,10495,0 +42241,Didek,684,583,849070946,1748,0 +42243,D.031,381,658,849088243,3055,0 +42244,Darma+dla+zawodnika,322,593,6180190,3315,0 +42245,%2136+65+Frumosu,653,369,698361257,9860,0 +42246,tomek016,690,566,8811880,4904,0 +42247,Wioska+barbarzy%C5%84ska,528,298,7758085,9861,0 +42248,Wie%C5%9B+06,339,613,9199885,3357,0 +42249,Wuuuu,298,488,848981726,1838,0 +42250,Wioska+barbarzy%C5%84ska,589,319,828637,10838,0 +42252,%2136+65+Milisauti,656,368,698361257,8367,0 +42253,Hello+there,322,592,6180190,3148,0 +42254,XDX,613,331,699098531,9976,0 +42255,%230220+Segadorr+dar,457,303,1238300,10178,0 +42256,B015,519,301,699208929,8368,0 +42257,098+Kobe,688,440,7092442,6733,0 +42258,Wioska+barbarzy%C5%84ska,378,336,3698627,9931,0 +42260,Tak2,532,300,699208929,4386,0 +42261,Dream+on,297,500,698962117,9752,0 +42263,17.+Mahakam,699,536,8976313,8199,0 +42264,Z01,316,411,356642,9835,4 +42265,056.+Lodowy+Szczyt,698,554,1601917,8697,0 +42266,Komornik+F001,313,563,698290577,4441,0 +42267,Wow10,364,351,698160606,7660,0 +42268,TWIERDZA+.%3A030%3A.,685,576,7154207,10226,0 +42269,040,305,541,9280477,6132,0 +42270,New+Land+01,330,388,849064752,10311,0 +42271,057.+Latrun,690,551,1601917,6059,0 +42272,014,639,350,9148043,5868,0 +42274,024,417,685,849099876,10495,0 +42275,Wioska+barbarzy%C5%84ska,683,582,7154207,1605,0 +42277,O092,340,627,272173,9962,0 +42278,BRICKLEBERRY,559,312,699072129,8807,0 +42279,10.+Wioska+Raukodel,653,377,7340529,10795,0 +42280,-+208+-+SS,549,698,849018239,7790,0 +42281,Wioska+Zorro+015,677,595,849080702,10495,6 +42282,Camp+Nou,665,618,849096631,12021,0 +42283,009,388,670,6948793,6851,0 +42284,S008,602,676,8627359,8298,0 +42285,DALEKO,531,703,699827112,8670,0 +42286,psycha+sitting,412,682,699736927,10178,0 +42287,0019,399,322,2321390,4270,0 +42288,%5B0215%5D,296,504,8630972,7212,0 +42289,marmag81%2F03d,301,471,1096254,7541,0 +42290,A+062,362,646,699269923,8594,0 +42291,031,305,563,849098688,7686,0 +42292,Koziarowo,503,297,849100228,11911,0 +42293,xzc,496,701,8827094,9140,0 +42294,A10,695,556,848995478,5013,0 +42295,HAPERT,625,662,848909464,10319,0 +42297,Wioska+barbarzy%C5%84ska,674,603,8224678,8447,0 +42298,Barnab,604,323,699098531,8732,0 +42299,0003,357,357,699644448,7470,0 +42300,D.027,385,668,849088243,4095,0 +42301,KR%C3%93L+PAPI+WIELKI,636,648,698191218,9593,0 +42302,ono11,357,362,7462660,10009,0 +42303,KR%C3%93L+PAPI+WIELKI,664,619,698191218,10000,0 +42304,003.+G%C3%B3rki+%C5%9Arednie,656,630,849100994,10164,0 +42305,Namys%C5%82%C3%B3w,697,553,848932879,10636,0 +42306,-+253+-+SS,552,697,849018239,6680,0 +42307,Ob+Konfederacja,433,314,848915730,10096,2 +42308,ZA11,319,415,356642,9835,0 +42309,.achim.,475,298,6936607,8306,0 +42310,Osada+koczownik%C3%B3w,386,663,699269923,6878,7 +42311,%2AINTERTWINED%2A,476,544,698704189,4602,0 +42312,Wioska+barbarzy%C5%84ska,402,329,195249,3086,0 +42313,0028.+Y+-,695,534,7125212,3794,0 +42314,Taran,333,609,6180190,10432,0 +42315,075,417,686,849099876,10495,0 +42316,059.+Wioska+barbarzy%C5%84ska,696,464,7494497,8972,0 +42317,O033,342,630,272173,9976,0 +42318,.achim.,472,300,6936607,3971,0 +42319,Wioska+barbarzy%C5%84ska,385,332,699660539,9036,0 +42320,Wioska+019,678,594,7999103,2037,0 +42321,X+008,595,324,6384450,3160,0 +42322,BRICKLEBERRY,554,302,699072129,7772,0 +42323,Wioska+barbarzy%C5%84ska,327,597,7183372,8586,0 +42324,035+-+Castellon+de+la+Plana,694,528,698342159,6569,0 +42325,A000,471,703,699725436,9521,0 +42326,Jestem+Poza+Kontrol%C4%85,348,540,8004076,7837,0 +42327,057.+Wioska+barbarzy%C5%84ska,700,467,7494497,8969,0 +42328,%2136+86+Bainet,660,381,698361257,8333,0 +42329,Wioska+barbarzy%C5%84ska,631,342,9291984,4228,0 +42330,psycha+sitting,406,678,699736927,10311,0 +42331,Wioska+barbarzy%C5%84ska,342,367,7462660,10068,0 +42332,KIELBA+122,462,579,699342219,7788,0 +42333,037,695,445,699150527,7559,0 +42334,013.+Wioska+barbarzy%C5%84ska,348,636,698908184,9504,0 +42335,005,308,561,849097898,6088,0 +42336,%23001,307,558,849097898,9612,0 +42337,Wioska+barbarzy%C5%84ska,354,354,849027025,8971,0 +42338,16.BTS,684,422,9180206,8141,0 +42339,10%2C5,296,476,849095376,4734,0 +42340,005,648,362,9148043,9998,6 +42341,A12,692,556,848995478,6418,0 +42342,Wioska+barbarzy%C5%84ska,703,469,699574408,8435,0 +42343,036+-+Almeria,696,520,698342159,4507,0 +42344,Wioska+barbarzy%C5%84ska,386,330,699660539,9957,0 +42345,Szlon,303,479,8048374,9593,0 +42346,Arczi997+02,297,515,849055181,4470,0 +42347,bucksbarzy%C5%84skamiiiru,323,399,848955783,7083,0 +42348,Rogatki,311,559,699265922,10164,0 +42349,kto+ananasowy+pod+wod%C4%85+ma+dom,677,544,699628084,7551,0 +42350,KR%C3%93L+PAPI+WIELKI,661,628,698191218,10000,0 +42351,038,304,543,9280477,6468,0 +42352,a+mo%C5%BCe+off+%3F+%3A%29,675,402,698768565,6967,0 +42353,005.+Night+Raid,490,704,699684062,9309,0 +42354,FP004,493,704,699605333,10393,0 +42355,B010,517,304,699208929,6556,0 +42356,-01-,562,693,7860453,11188,0 +42357,%3D0001%3D,403,319,698231772,10119,0 +42358,026+invidia,541,700,849093426,10237,0 +42359,C001,468,699,8954402,9721,0 +42360,psycha+sitting,422,685,699736927,10311,0 +42361,%C5%BBubr,297,477,849095376,8634,0 +42362,z181_18,307,443,393668,8648,0 +42363,034,454,306,2502956,9663,0 +42364,BRICKLEBERRY,559,305,699072129,3564,0 +42365,O091,338,627,272173,9819,0 +42366,psycha+sitting,411,681,699736927,10178,0 +42367,Dream+on,300,487,698962117,8870,0 +42368,AAA,539,308,1006847,10178,0 +42369,FAKE+OR+OFF,405,318,698231772,10000,0 +42370,%2AINTERTWINED%2A,519,704,698704189,6593,0 +42371,A+017,608,388,6384450,10362,0 +42373,031,418,688,849099876,10495,0 +42374,AAA,562,312,1006847,7626,0 +42375,Krak%C3%B3w,507,299,699208929,9095,0 +42376,La+Cabana,519,297,3298902,4890,0 +42377,00979,463,432,3909522,10072,0 +42378,Taran,330,612,6180190,10098,0 +42379,zabola%C5%82o+%3F,639,484,698613394,5476,0 +42380,21.2NE1,684,421,9180206,7907,0 +42381,Wioska18,633,478,848935020,5664,0 +42382,FP001,480,701,699605333,10728,0 +42383,Ba%C5%82uty,689,478,849100246,12154,0 +42384,%23%23%23020%23%23%23,597,680,698285444,10495,0 +42385,001.BIGBANG,684,417,9180206,9959,0 +42386,Wioska+barbarzy%C5%84ska,667,391,8675636,9090,0 +42387,Wygwizdowa+001,641,645,698562644,10311,0 +42388,Wioska+barbarzy%C5%84ska,336,620,9199885,2052,0 +42390,bucksbarzy%C5%84skamiiiru,338,385,848955783,2146,0 +42391,SrebrnaHata,676,400,699738350,9384,0 +42392,%2136+65+Balaceana,657,369,698361257,8694,0 +42393,K66+2,630,652,7038651,3870,0 +42394,%3F%3F%3F%3F,470,296,698489071,10503,0 +42395,TWIERDZA+.%3A015%3A.,693,565,7154207,10343,0 +42396,110+invidia,509,702,849093426,9994,0 +42397,003,631,648,698346318,8559,0 +42398,016.+Klasztor+Brimclif,381,339,7775311,6795,0 +42399,-HRN-,551,690,7860453,3382,0 +42400,KR%C3%93L+PAPI+WIELKI,638,646,698191218,10415,0 +42401,Wiejska9,607,670,6528152,8566,0 +42402,Wioska+barbarzy%C5%84ska,685,578,7154207,3283,0 +42403,003,300,536,848886200,6308,0 +42404,Wioska+barbarzy%C5%84ska,688,560,698666810,11368,0 +42405,AAA,535,299,1006847,8244,0 +42406,003,687,562,7085502,9723,9 +42407,Didek,680,581,849070946,4100,0 +42408,Wioska+barbarzy%C5%84ska,625,347,699580120,5349,0 +42409,%2A052%2A,340,386,699273451,10211,0 +42410,C0201,300,533,8841266,8903,0 +42411,Wioska+barbarzy%C5%84ska,686,572,7038651,3333,0 +42412,0030+Kasko14,449,693,849037407,10218,0 +42414,0091,676,394,698416970,7303,0 +42415,.%3A109%3A.+Niangmen,501,392,848934935,9053,0 +42416,XDX,594,317,699098531,10160,0 +42417,I108,696,447,699722599,6604,0 +42418,%23102%23,623,656,692803,8554,0 +42419,047.+Wioska+barbarzy%C5%84ska,696,465,7494497,9809,0 +42420,B%23007,699,448,2065730,9797,0 +42421,BRICKLEBERRY,553,309,699072129,5777,0 +42422,Wioska+Turystyczna+001,705,486,7588382,9735,0 +42423,%5B0220%5D,299,501,8630972,7500,0 +42424,011.+G%C3%B3rki+Piaszczyste,648,643,849100994,9494,0 +42425,Bessa+021,637,654,848987051,10223,0 +42426,Wielki+1,498,301,849050849,8636,0 +42427,MojeDnoToWaszSzczyt,493,296,9299539,9964,0 +42428,Osada+12,691,423,699488108,8831,0 +42429,Wioska+krumlow+3,595,317,699098531,3573,0 +42430,Domi+6,698,471,849002796,8201,0 +42431,O142,348,631,272173,7233,0 +42432,Jan+Os+koc-16+Ost+K,693,444,879782,9195,3 +42434,Wioska+barbarzy%C5%84ska,677,601,3467919,7793,0 +42435,088,414,686,849099876,9571,0 +42436,Wioska+barbarzy%C5%84ska,385,335,699660539,8819,0 +42437,AAA,525,300,1006847,9686,0 +42438,Wioska+XII,579,344,698200480,7788,0 +42439,D%C4%85br%C3%B3wka+Za%C5%82%C4%99%C5%BCna,563,691,698723158,5392,0 +42440,1+R%C4%99krzowice,304,477,8048374,6968,0 +42441,Wioska+barbarzy%C5%84ska,647,356,7340529,4461,0 +42442,%5B0026%5D+XXX,442,310,8630972,10495,8 +42443,%3F%3F%3F,489,303,698489071,7411,0 +42444,003,593,318,699098531,2612,0 +42446,Out+of+Touch,315,421,698962117,5293,0 +42447,0005+xXx+Grypsuj%C4%85cy+xXx,441,695,849037407,10476,5 +42448,003,648,359,9148043,8974,0 +42449,EO+EO,294,519,699697558,10019,0 +42450,EO+EO,304,514,699697558,10495,9 +42451,Wioska+barbarzy%C5%84ska,620,339,1990750,8874,0 +42452,008,601,329,8842936,7918,0 +42453,255...Emerson,464,300,6920960,7545,0 +42454,Didi,687,579,849070946,10957,0 +42455,0000017%25,426,595,849089881,9922,0 +42456,01.+Devil+Z,482,650,849100262,9668,0 +42457,Z%C5%82oty+%C5%9Awit,577,309,699883079,5853,0 +42458,Osada+koczownik%C3%B3w,702,474,699574408,10216,9 +42459,002.+Good+Night,489,703,699684062,9711,0 +42460,%5B0221%5D,300,504,8630972,7297,0 +42461,By%C5%82e%C5%9B+w+porz%C4%85dku+003,369,650,699269923,9991,0 +42462,Pallad,687,440,8459255,7763,0 +42463,0039+Osada+koczownik%C3%B3w,447,698,849037407,10478,7 +42465,A+071,360,639,699269923,7870,0 +42466,CALL+1051,652,627,699784536,10365,0 +42467,TWIERDZA+.%3A013%3A.,694,566,7154207,10343,0 +42468,MojeDnoToWaszSzczyt,498,298,9299539,9621,0 +42469,New+World,430,688,698152377,10292,0 +42470,%23%23%23077%23%23%23,598,680,698285444,10495,0 +42471,Wioska+barbarzy%C5%84ska,630,341,7555180,5273,0 +42473,FAKE+OR+OFF,413,320,698231772,9824,0 +42474,tomek016+IV,693,571,8811880,1943,0 +42475,Wioska+barbarzy%C5%84ska,670,394,8675636,9048,0 +42476,z+000+Wioska+13,352,357,3909522,6345,0 +42477,KR%C3%93L+PAPI+WIELKI,657,629,698191218,10000,0 +42478,marmag81%2F03ww,298,471,1096254,5430,0 +42479,Out+of+Touch,317,429,698962117,6417,0 +42480,FP033,468,703,699605333,9264,0 +42481,05.+Betonoza,483,705,849092769,10019,0 +42482,Zaplecze+Barba+017,372,340,699796330,7941,0 +42483,Dream+on,301,499,698962117,4808,0 +42484,020,303,561,849098688,9835,0 +42485,psycha+sitting,417,683,699736927,10178,0 +42487,264...EMERSON,464,298,6920960,8154,0 +42488,Dream+on,304,504,698962117,9742,0 +42489,TWIERDZA+.%3A018%3A.,688,565,7154207,10354,0 +42491,New+World,431,688,698152377,10297,0 +42492,Wioska+zzzz,514,299,699208929,3361,0 +42493,Darma+dla+zawodnika,316,580,699671197,7221,0 +42494,psycha+sitting,404,677,699736927,6785,0 +42495,Ry%C5%9B,701,483,849099640,6245,0 +42496,A000,463,700,699725436,9274,0 +42497,z181_10,309,442,393668,9885,0 +42499,KR%C3%93L+PAPI+WIELKI,659,630,698191218,7869,0 +42500,Dream+on,298,483,698962117,8887,0 +42501,Mordor,414,317,698231772,11898,0 +42502,0005,357,358,699644448,6005,0 +42503,C3.,307,544,849095482,6832,0 +42504,New+World,430,694,698152377,10300,0 +42506,KONFA+TO+MARKA%2C+NARKA,305,453,698152377,10290,0 +42507,B001,519,302,699208929,10354,4 +42508,Wyspa_47,509,704,2585846,8152,0 +42509,Winterhome.029,493,295,848918380,10178,0 +42511,Wioska+barbarzy%C5%84ska,301,446,699706955,2800,0 +42513,C0338,297,538,8841266,4465,0 +42515,Z04,316,410,356642,9835,0 +42517,New+World,436,689,698152377,10303,0 +42519,%23%23%23078%23%23%23,584,679,698285444,10495,0 +42521,Wioska+barbarzy%C5%84ska,341,383,699541376,3555,0 +42522,ZA12,319,414,356642,9835,7 +42523,066,700,538,849095227,4890,0 +42524,HAPERT,624,661,848909464,10319,0 +42525,052g,311,557,698641566,9809,0 +42526,015,669,382,698635863,10495,0 +42527,17.+Stwho,552,313,699072129,8585,0 +42528,bucksbarzy%C5%84skamiiiru,331,391,848955783,4791,0 +42529,EO+EO,298,518,699697558,10083,0 +42530,aaaa,390,673,6948793,9899,0 +42531,08.ITZY,687,423,9180206,8975,0 +42533,Doha,516,299,699208929,8249,0 +42534,%C5%81oszyngton,608,330,699098531,9842,0 +42535,008,470,700,699725436,9555,0 +42536,0098,677,393,698416970,5818,0 +42538,bucksbarzy%C5%84skamiiiru,330,397,848955783,10065,0 +42540,Racib%C3%B3rz,694,543,848932879,2139,0 +42541,Wioska+pentoschijska,696,437,848976034,9580,0 +42543,041.+Night+Raid,489,704,699684062,10019,0 +42544,%5B0044%5D+xxx,445,303,8630972,10495,0 +42545,O143,347,628,272173,9821,0 +42547,001,308,475,848895676,5706,0 +42548,07.+Temeria,697,537,8976313,9663,0 +42550,KR%C3%93L+PAPI+WIELKI,645,639,698191218,9556,0 +42551,018.+Night+Raid%2A,433,693,699684062,9828,0 +42552,MojeDnoToWaszSzczyt,499,295,9299539,9949,0 +42553,Grubasy+7+papa,304,441,634848,3237,0 +42554,031+Kopa,691,450,849098769,7044,0 +42555,Z09,317,407,356642,9835,0 +42556,026,629,649,699373599,6065,0 +42557,11.+Memes,686,485,699804790,10237,0 +42558,B09,692,552,848995478,2752,0 +42559,bucksbarzy%C5%84skamiiiru,322,400,848955783,7313,0 +42560,ZA23,320,415,356642,9835,0 +42561,016,669,386,698635863,9458,0 +42562,053,559,407,7271812,10495,0 +42563,Posterunek,685,424,699738350,9158,0 +42564,%2AW002,662,378,7758085,9847,0 +42565,0114,679,397,698416970,9717,0 +42566,O144,346,631,272173,9814,0 +42567,MSWO-4,469,302,698489071,4249,0 +42568,O049,344,629,272173,9876,0 +42570,017,649,357,698635863,7106,0 +42571,zachod+003,357,363,7462660,10201,0 +42572,0004,356,355,699644448,5752,0 +42573,Psajdak.,352,494,699265922,9924,0 +42574,Zaplecze+Barba+9,372,341,699796330,9745,0 +42576,Wioska+barbarzy%C5%84ska,526,298,7758085,9925,0 +42577,EO+EO,299,516,699697558,10362,7 +42578,Orze%C5%82+Wyl%C4%85dowa%C5%82,464,672,698807570,7817,0 +42579,XXXX,563,307,849054951,10178,0 +42580,Winterhome.026,491,297,848918380,10178,9 +42581,%C5%BBUBEREK+020+pit71,607,676,33900,10302,0 +42582,Z+Wioska+2,358,358,3909522,8553,0 +42583,Wioska+barbarzy%C5%84ska,304,446,699706955,2385,0 +42584,%5B0130%5D,440,305,8630972,9668,0 +42585,Zakrzewo,665,384,699491076,5466,0 +42586,Dream+on,296,483,698962117,9479,0 +42587,KR%C3%93L+PAPI+WIELKI,646,641,698191218,9528,0 +42588,ZZZ,502,696,8980651,9974,0 +42589,XDX,615,331,699098531,9104,0 +42590,MojeDnoToWaszSzczyt,506,296,9299539,9723,0 +42591,O037,344,628,272173,9960,0 +42592,xzc,498,708,699429335,10495,0 +42593,Wioska+barbarzy%C5%84ska,386,333,699660539,6532,0 +42594,Wawelno,686,542,848932879,10636,0 +42595,041+Wioska+barbarzy%C5%84ska,608,669,699346280,9115,0 +42598,%C5%BBUBR+PSYCHIATRYK+019,626,653,33900,4753,3 +42599,%2A212%2A,332,386,699273451,10211,0 +42600,S010,686,586,8428196,7094,0 +42601,%23%23%23007%23%23%23,582,683,698285444,10495,5 +42602,New+World,439,690,698152377,10294,0 +42603,C0081,302,524,8841266,10252,0 +42604,Wioska+barbarzy%C5%84ska,588,317,828637,10475,0 +42605,2.Logrono,574,683,698215322,3637,0 +42607,14.EXO,687,416,9180206,8179,0 +42608,%23%23%23021%23%23%23,589,682,698285444,10495,0 +42609,M181+...bil...,628,350,6517003,1064,0 +42610,036+Night+Raid,486,703,699684062,8688,0 +42611,D001,363,638,272173,10365,0 +42612,A%23037,705,480,2065730,9797,0 +42613,%5B057%5D+Wioska+barbarzy%C5%84ska,685,421,849095068,4523,0 +42614,Zzzz+-+Kasztelania+002,641,351,699733098,4357,0 +42615,z+001043,354,366,3909522,4501,0 +42616,O093,336,621,272173,9623,0 +42617,003,641,641,849099544,7302,0 +42618,C037,375,661,699383279,9741,0 +42619,TWIERDZA+.%3A061%3A.,690,574,7154207,7652,0 +42620,Babilon,386,334,699660539,9763,0 +42621,KR%C3%93L+PAPI+WIELKI,649,638,698191218,10077,0 +42622,Wioska+barbarzy%C5%84ska,370,342,3698627,7865,0 +42623,Wioska+barbarzy%C5%84ska,698,541,848946700,6308,0 +42624,KR%C3%93L+PAPI+WIELKI,654,631,698191218,10000,0 +42625,.achim.,468,296,6936607,10117,0 +42626,KR%C3%93L+PAPI+WIELKI,697,520,698191218,8297,0 +42627,Wioska+barbarzy%C5%84ska,373,349,698160606,4158,0 +42628,005.+Wioska+barbarzy%C5%84ska,346,635,698908184,9806,0 +42629,Owsiana,482,297,698848373,2304,0 +42630,O001,342,633,272173,9957,8 +42631,Ave+Why%21,308,574,6180190,3600,0 +42632,z181_06,312,441,393668,9883,0 +42633,Wied%C5%BAma+-+Z+002,307,431,9239515,5456,0 +42634,04.MINUTE,684,416,9180206,7504,0 +42635,Wioska+barbarzy%C5%84ska,567,306,828637,10068,0 +42636,%23%23%23079%23%23%23,582,684,698285444,10495,0 +42637,Fear+Of+The+Dark,692,555,848926293,4624,0 +42638,A+080,364,642,6948793,2577,0 +42639,Atlantyda+I,370,344,849068108,3682,0 +42640,Kuwejt,515,299,699208929,9911,0 +42641,018,660,382,698635863,8985,0 +42642,12.EVERGLOW,689,419,9180206,8577,0 +42643,Domi+5,701,473,849002796,8978,0 +42644,B01+Sopot,348,373,7462660,9247,0 +42645,119,695,454,849088515,6320,0 +42646,BRICKLEBERRY,560,312,699072129,6946,0 +42647,030+Malleore,454,691,699834004,4614,0 +42648,%23006,311,563,849097898,4413,0 +42649,Wioska+barbarzy%C5%84ska,703,515,254937,9786,0 +42650,Wioska+barbarzy%C5%84ska,518,320,698350371,7704,0 +42651,Wioska+barbarzy%C5%84ska,584,312,828637,10475,0 +42652,008e,308,425,8259895,9674,0 +42653,TARAN,547,692,7860453,9458,0 +42655,Wioska+barbarzy%C5%84ska,687,561,698666810,11293,0 +42656,O057,343,627,272173,9821,0 +42657,30.Girls+Day,690,426,9180206,4051,0 +42658,Wioska+Hrabia+mol,319,594,699697136,9692,0 +42659,Wioska+barbarzy%C5%84ska,697,561,8742874,3661,0 +42660,KR%C3%93L+PAPI+WIELKI,650,640,698191218,10000,1 +42661,Go%C5%84+Si%C4%99+Dildu%C5%9B97+%3B%5D+huehuehue+%40,494,294,848918262,9706,0 +42662,ZA25,316,417,356642,9835,0 +42663,Wioska+barbarzy%C5%84ska,607,331,699548295,1704,0 +42664,boh81%2F500,299,470,848889556,7244,0 +42665,Wioska+barbarzy%C5%84ska,580,310,828637,10160,0 +42666,0146,678,401,698416970,7054,0 +42668,Wioska+barbarzy%C5%84ska,626,345,7555180,6322,0 +42669,EO+EO,292,515,699697558,10083,0 +42670,052,452,301,2502956,8445,0 +42671,Osada+koczownik%C3%B3w,343,367,7462660,10068,2 +42672,Wy%C5%82om,700,483,849099640,7678,0 +42673,C068,358,650,699383279,10070,0 +42674,Wioska+barbarzy%C5%84ska,313,576,3475079,2865,0 +42675,Wied%C5%BAma+-+Z+004,307,434,9239515,5276,0 +42676,022,401,677,849099876,10495,0 +42677,Stamford+Bridge,665,617,849096631,10538,0 +42678,023.+Wilan%C3%B3w,705,472,7494497,10237,0 +42679,EO+EO,298,515,699697558,10019,0 +42680,Out+of+Touch,314,432,698962117,6771,0 +42681,Chabry,695,530,848932879,10971,0 +42682,KR%C3%93L+PAPI+WIELKI,649,637,698191218,10073,0 +42684,Wioska+barbarzy%C5%84ska,339,617,9199885,5053,0 +42685,MojeDnoToWaszSzczyt,500,299,9299539,9962,0 +42686,Gaworzyna,564,689,698723158,6448,0 +42687,AAA,543,307,1006847,7386,0 +42689,Wioska+barbarzy%C5%84ska,399,326,195249,3757,0 +42690,Hongkong,513,296,699208929,1644,0 +42691,%5B0082%5D+Potrzeba,436,309,8630972,10495,0 +42692,0000.q,471,300,849099342,3949,0 +42693,MojeDnoToWaszSzczyt,506,295,9299539,10022,0 +42694,C001,587,388,699761749,10495,0 +42695,KR%C3%93L+PAPI+WIELKI,642,646,698191218,10002,0 +42696,003,647,631,698234770,9929,0 +42697,bucksbarzy%C5%84skamiiiru,335,391,848955783,10786,0 +42698,bucksbarzy%C5%84skamiiiru,327,389,848955783,4498,0 +42699,By%C5%82e%C5%9B+w+porz%C4%85dku+001,365,651,699269923,9715,7 +42701,Wioska+barbarzy%C5%84ska,348,363,7462660,9759,0 +42702,Wioska+barbarzy%C5%84ska,394,675,6948793,7529,0 +42703,KR%C3%93L+PAPI+WIELKI,639,644,698191218,9586,0 +42704,AAA,544,304,1006847,8663,0 +42705,048+-+Nowy+Pocz%C4%85tek...,359,646,6948793,7194,0 +42706,002.+Tak,347,368,7462660,10122,0 +42707,Wioska+barbarzy%C5%84ska,349,363,7462660,10068,0 +42708,%3F%3F%3F,489,300,698489071,5554,0 +42709,EO+EO,297,519,699697558,10083,0 +42710,FAKE+OR+OFF,407,321,698231772,9825,0 +42711,009%23+Melissa,485,699,699605333,9973,0 +42712,048,454,696,849099876,10495,0 +42713,Ranczo1,304,447,8259895,11737,0 +42714,0018,400,323,2321390,4619,0 +42715,%2136+65+Radauti,655,365,698361257,10495,0 +42716,xxx,693,547,699316421,9532,0 +42717,%23Charlotte,431,666,699849210,9892,0 +42718,021%23+Sophia,488,698,3933666,8092,0 +42719,Wioska+Zorro+005,679,600,849080702,12154,2 +42720,Wioska+Wielki+Wezyr,321,397,3185732,2431,0 +42721,MojeDnoToWaszSzczyt,496,301,9299539,9969,0 +42722,XDX,606,329,699098531,9620,0 +42724,%5B0222%5D,293,506,8630972,7287,0 +42725,019,668,384,698635863,9334,0 +42726,02.+Whitebird,481,653,849100262,10002,0 +42727,Wioska+barbarzy%C5%84ska,694,441,1715091,6437,0 +42729,003.+0.Ver%24,704,514,699785935,9828,3 +42730,%5B0096%5D,442,308,8630972,10495,0 +42731,KR%C3%93L+PAPI+WIELKI,644,643,698191218,10109,0 +42733,KR%C3%93L+PAPI+WIELKI,633,655,698191218,9541,0 +42734,085+invidia,520,701,849093426,8679,0 +42736,606%7C377,625,336,699580120,9570,0 +42737,O140,346,632,272173,6799,0 +42738,Szlachcic,685,589,698867446,7710,0 +42739,Wioska+barbarzy%C5%84ska,561,330,699072129,10226,0 +42740,Wioska+barbarzy%C5%84ska,388,329,699660539,6905,0 +42741,045,627,657,699373599,4762,0 +42742,1..,645,353,9291984,3005,0 +42743,%23%23%23081%23%23%23,585,688,698285444,10495,0 +42744,Wioska+barbarzy%C5%84ska,702,517,254937,10024,0 +42745,Dream+on,295,491,698962117,9742,6 +42746,Mocarna+wioska,684,592,849101652,7764,0 +42747,Wioska+barbarzy%C5%84ska,541,695,7860453,5439,0 +42748,Elo+Elo+2,310,583,699016994,9672,0 +42749,Melon2,310,431,699659708,5724,0 +42750,139+invidia,535,695,849093426,8226,0 +42751,aaaa,412,315,698231772,9812,1 +42752,bucksbarzy%C5%84skamiiiru,327,390,848955783,5060,0 +42753,A14,698,555,848995478,4375,0 +42754,HAPERT,623,662,848909464,10319,0 +42755,Z%C5%82oty+%C5%9Awit,572,312,699883079,7008,0 +42756,Wioska+barbarzy%C5%84ska,343,376,7462660,4497,0 +42757,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,496,704,8980651,3988,0 +42758,O058,344,630,272173,9819,0 +42759,New+World,438,689,698152377,10295,0 +42760,.achim.,489,299,6936607,5659,0 +42761,FENDI,299,466,699794765,2194,0 +42762,MojeDnoToWaszSzczyt,561,364,699697558,10495,0 +42763,x001,353,643,6948793,6873,0 +42764,NiePyskuj,624,656,848909464,9275,0 +42765,Wioska+barbarzy%C5%84ska,362,651,6948793,9424,0 +42766,Modrzejowice,575,696,698723158,9153,0 +42767,TWIERDZA+.%3A003%3A.,694,572,7154207,10050,5 +42768,Wioska+barbarzy%C5%84ska,666,378,699580120,4166,0 +42769,The+Game+Has+Only+Just+Begun,356,536,9280477,9976,0 +42770,Wioska+Wiki+4,523,698,849100354,9476,0 +42771,%23K66+0002,610,674,699728159,9761,0 +42772,075,693,548,699316421,9549,0 +42773,0100,676,395,698416970,5100,0 +42774,Winterhome.028,502,294,848918380,10178,0 +42775,WS+03,697,441,699524891,9626,5 +42776,C0196,303,529,8841266,6863,0 +42777,New+World,423,692,698152377,10294,0 +42778,aaaa,386,675,6948793,9899,0 +42779,Wioska+barbarzy%C5%84ska,696,457,849098769,4569,0 +42780,z181_24,304,437,393668,9885,0 +42781,Wioska+barbarzy%C5%84ska,558,322,699072129,3697,0 +42782,FAKE+OR+OFF,418,320,698231772,9813,0 +42783,006.+Cicha,320,587,3475079,7860,0 +42784,Wioska+Zorro+024,675,595,849080702,5140,0 +42785,Wow8,367,348,699730714,7870,0 +42786,0009,359,356,699644448,2980,0 +42788,Wioska+Totomoose+5,313,427,849100744,748,0 +42789,EO+EO,294,499,699697558,8839,0 +42790,%5B0144%5D,440,302,8630972,9191,0 +42791,Wioska+Totomoose+4,314,427,849100744,2577,0 +42792,Retkinia,585,684,849100612,3125,0 +42793,Wioska+barbarzy%C5%84ska,697,438,848976034,3953,0 +42794,C053,379,657,699383279,9425,0 +42795,Wioska+barbarzy%C5%84ska,694,437,1715091,6052,0 +42796,%2A%2A25%2A%2A,643,357,849098782,5054,0 +42797,Didek,688,585,849070946,7189,0 +42798,083+invidia,518,703,849093426,5508,0 +42799,Wioska+barbarzy%C5%84ska,384,333,699660539,9961,0 +42801,%2A123%2A,355,357,699273451,10211,0 +42802,-024-+S,619,343,849099276,2020,0 +42803,030,311,567,849098688,10224,0 +42804,MojeDnoToWaszSzczyt,507,297,9299539,8313,0 +42805,a+mo%C5%BCe+off+%3F+%3A%29,674,412,698768565,6625,0 +42806,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,496,703,8980651,4877,0 +42807,Wioska+barbarzy%C5%84ska,389,668,6948793,6740,0 +42809,%5B0223%5D,294,506,8630972,6920,0 +42810,Spontan,339,442,393668,7383,0 +42811,Cezowy+gr%C3%B3d,319,421,699377401,3397,0 +42812,%23%23%23006%23%23%23,583,689,698285444,10495,2 +42813,018+G%C3%B3rki+Rozbi%C3%B3rki,647,645,849100994,9537,0 +42814,Wioska+barbarzy%C5%84ska,388,331,699660539,8260,0 +42815,28.+ZBARA%C5%BB,696,470,699804790,5525,0 +42816,Darma+dla+zawodnika,323,589,6180190,10311,0 +42818,New+World,428,686,698152377,10294,0 +42819,010.+G%C3%B3rki+Kamienne,647,643,849100994,9660,0 +42820,Dream+on,302,496,698962117,9488,0 +42821,Dream+on,296,479,698962117,6155,6 +42822,WB09,325,405,356642,5142,0 +42823,Wioska+barbarzy%C5%84ska,398,330,195249,7610,0 +42824,0017+Wioska+barbarzy%C5%84ska,443,699,849037407,10476,0 +42825,psycha+sitting,422,684,699736927,10311,0 +42826,bucksbarzy%C5%84skamiiiru,333,386,848955783,11550,0 +42828,%2A%2A%2A%2A%2A+%2A%2A%2A,420,311,699694284,8477,0 +42829,%3F%3F%3F,485,300,698489071,10728,0 +42830,055+-+Nowy+Pocz%C4%85tek...,353,642,698908184,7149,0 +42831,%5B0224%5D,299,509,8630972,8101,0 +42832,0073,682,418,698416970,4743,0 +42833,C.016,699,485,9188016,5383,0 +42834,Osada+koczownik%C3%B3w,694,432,1715091,9576,7 +42835,Wioska+barbarzy%C5%84ska,554,301,698350371,3539,0 +42836,a+mo%C5%BCe+off+%3F+%3A%29,674,406,698768565,6275,0 +42837,%C5%BBelazowy+gr%C3%B3d,317,414,699377401,10444,0 +42838,Helowy+gr%C3%B3d,317,419,699377401,4505,0 +42839,bucksbarzy%C5%84skamiiiru,323,397,848955783,9918,0 +42840,17.SEVENTEEN,685,415,9180206,8891,0 +42842,Wygwizdowa+004,640,648,698562644,10311,0 +42843,barbarzy%C5%84ska,314,566,849099258,3011,0 +42844,0001,375,340,699660539,10183,0 +42845,KONFA+TO+MARKA%2C+NARKA,300,461,698152377,7808,0 +42846,C051,367,657,699383279,9842,0 +42847,%C5%9Alimak+11,606,333,699098531,9339,0 +42848,O050,346,626,272173,9894,0 +42849,New+Land+02,332,383,849064752,5897,0 +42850,Wioska+barbarzy%C5%84ska,634,344,9291984,1780,0 +42851,Wioska+Wiki,521,696,849100354,12154,0 +42852,KR%C3%93L+PAPI+WIELKI,650,629,698191218,10000,0 +42853,K35+-+%5B030%5D+Before+Land,575,311,699088769,9783,0 +42855,AAA,544,306,1006847,5209,0 +42856,%23105+C,530,673,9037756,7220,0 +42857,011,523,297,699208929,8319,0 +42858,KR%C3%93L+PAPI+WIELKI,655,634,698191218,10000,0 +42859,265...Gulden,459,304,6920960,4713,0 +42860,psycha+sitting,399,679,699736927,6645,0 +42861,E.02,677,505,699737356,9442,0 +42862,KONOPISKA,303,477,8048374,9901,0 +42863,1.Ernesto+Hoosta,524,304,7758085,5614,0 +42864,Wioska+barbarzy%C5%84ska,561,698,6870350,8530,0 +42865,Wioska+barbarzy%C5%84ska,309,447,393668,6475,0 +42866,0087,675,394,698416970,8384,0 +42868,bucksbarzy%C5%84skamiiiru,323,394,848955783,10971,2 +42869,AAA,544,303,1006847,10544,0 +42870,Wioska+barbarzy%C5%84ska,372,343,3698627,7999,0 +42871,AAA,541,302,1006847,9751,0 +42872,081.,455,702,849034882,9348,0 +42873,001,698,559,301602,9740,0 +42874,Wioska+barbarzy%C5%84ska,630,340,7555180,4049,0 +42875,58+ggggggg,295,474,849018442,3482,0 +42876,Wow18,364,352,849027025,3181,0 +42878,O147,352,644,272173,9835,0 +42879,BRICKLEBERRY,559,311,699072129,5453,0 +42880,%2AINTERTWINED%2A,517,705,698704189,5836,0 +42881,Anfield,668,617,849096631,9377,0 +42882,Zagroda8,609,669,6528152,6016,0 +42883,Kuna,704,483,849099640,6877,0 +42884,Wioska+barbarzy%C5%84ska,566,309,828637,10068,0 +42885,Wioska+barbarzy%C5%84ska,363,651,699269923,9893,0 +42886,%3F%3F%3F,478,300,698489071,9924,0 +42887,031,703,519,699150527,7306,0 +42888,005,647,633,698234770,7123,0 +42889,KR%C3%93L+PAPI+WIELKI,651,636,698191218,9556,0 +42890,TWIERDZA+.%3A043%3A.,692,570,7154207,10226,0 +42891,Wygwizdowa+003,638,648,698562644,10311,0 +42892,Rafaleks,636,352,9291984,10495,0 +42893,po+do%C5%BCynkach,706,519,699150527,5680,0 +42894,XDX,599,324,699098531,7491,0 +42895,%23%23%23002%23%23%23,592,687,698285444,10495,0 +42896,Zagroda3,604,674,6528152,8600,0 +42897,-+254+-+SS,552,698,849018239,6190,0 +42898,%3F%3F%3F%3F,466,298,698489071,4605,0 +42899,O124,334,622,272173,9899,0 +42900,Wioska+5,502,300,849050849,6850,0 +42901,Wioska+Ania12345,647,632,698234770,9929,0 +42902,0031+Kasko14,450,695,849037407,9800,0 +42904,048KP,486,293,849063849,6370,0 +42905,virginRiver,571,623,699828685,9500,0 +42906,New+World,436,690,698152377,10294,0 +42907,Wioska+krumlow+15,597,322,699098531,2281,0 +42908,Wioska+barbarzy%C5%84ska,698,542,848946700,5403,0 +42909,O011,342,634,272173,9956,0 +42910,Darma+dla+zawodnika,317,583,6180190,3229,0 +42911,psycha+sitting,409,677,699736927,10311,0 +42912,KR%C3%93L+PAPI+WIELKI,656,633,698191218,10000,0 +42913,KR%C3%93L+PAPI+WIELKI,661,627,698191218,10000,0 +42914,Wioska+barbarzy%C5%84ska,638,355,848973715,2715,0 +42916,044,650,631,699099811,8599,0 +42917,Kagusiowo+11,301,442,849101268,3859,0 +42918,New+World,432,691,698152377,9942,0 +42919,East+3,663,372,1086351,5368,0 +42920,B.03,670,502,699737356,9781,0 +42921,Wioska+barbarzy%C5%84ska,701,521,7047342,9996,0 +42923,2.Caceres,583,681,698215322,10605,0 +42924,Wioska+barbarzy%C5%84ska,669,604,3467919,8159,0 +42925,CALL+1049,655,628,699784536,10495,0 +42926,Szlachcic,387,338,3484132,10213,0 +42927,205...segador,458,303,6920960,10654,0 +42928,.achim.,471,296,6936607,6665,0 +42929,%23104%23,621,658,692803,8717,0 +42930,Wioska+barbarzy%C5%84ska,382,661,699269923,9484,0 +42931,Rogatki2,309,561,699265922,6333,0 +42932,065,409,683,849099876,11824,0 +42933,0018+Wioska+barbarzy%C5%84ska,439,698,849037407,10479,0 +42934,Wioska+barbarzy%C5%84ska,344,371,7462660,9030,0 +42935,Dream+on,293,493,698962117,9750,9 +42936,TWIERDZA+.%3A078%3A.,690,582,7154207,8737,0 +42937,TWIERDZA+.%3A038%3A.,691,574,7154207,10231,0 +42938,Wioska+barbarzy%C5%84ska,582,312,828637,10474,0 +42939,008+s%C5%82aby+jestem,530,701,849093426,10237,0 +42940,C0200,298,526,8841266,9395,0 +42941,KONFA+TO+MARKA%2C+NARKA,302,460,698152377,9393,0 +42942,Z%C5%82oty+%C5%9Awit,571,308,699883079,7973,0 +42943,Wioska+lll,316,581,699671197,9641,0 +42944,Ziemianka+Ruskich+3,360,643,6948793,9077,0 +42945,020.+Wioska+barbarzy%C5%84ska,351,639,698908184,8563,0 +42946,a+mo%C5%BCe+off+%3F+%3A%29,674,405,698768565,6518,0 +42947,FAKE+OR+OFF,410,321,698231772,9822,0 +42948,ZA10,320,412,356642,9835,3 +42949,FP019,475,704,699605333,10393,0 +42950,-+258+-+SS,560,697,849018239,8244,0 +42951,Wioska+R.R.,547,301,699072129,6354,0 +42952,BRICKLEBERRY,548,304,699072129,9103,0 +42953,Wioska+barbarzy%C5%84ska,611,664,6818593,4320,0 +42954,%5B%2A%5D+z%C5%82yy+banan+%5B%2A%5D,629,346,9291984,9182,0 +42955,Dream+on,294,487,698962117,6437,2 +42956,B%23025,695,435,2065730,9161,0 +42957,096,524,505,699351301,8467,0 +42958,Wioska+barbarzy%C5%84ska,425,312,849100399,6117,0 +42959,%4004%40,406,326,699483429,7604,0 +42960,006,706,487,942959,3315,0 +42961,Wioska+barbarzy%C5%84ska,469,296,699393759,4690,0 +42962,val2,586,322,7340529,9835,0 +42963,Na+Kra%C5%84cu+%C5%9Awiata+014,636,348,9291984,4153,0 +42964,008.+Night+Raid,491,706,699684062,9564,0 +42965,B005+Wioska+FUZA,703,460,113796,10224,0 +42966,TWIERDZA+.%3A014%3A.,686,566,7154207,10539,0 +42968,005,698,560,301602,5532,0 +42969,Wioska+006,701,522,2999957,4678,0 +42970,psycha+sitting,415,681,699736927,10311,0 +42973,%3F%3F%3F%3F,489,295,698489071,6296,0 +42974,007,297,480,2418364,9686,0 +42975,Szlachcic,384,337,3484132,10075,0 +42976,Osada+koczownik%C3%B3w,305,447,393668,6645,1 +42978,A16,693,558,848995478,6419,0 +42979,KIELBA+088,447,573,699342219,10253,0 +42980,018,421,687,849099876,10495,0 +42982,Wioska+barbarzy%C5%84ska,301,460,699706955,2979,0 +42983,Wioska+Zorro+006,674,597,849080702,10971,0 +42984,Wioska+barbarzy%C5%84ska,685,412,699598425,6556,0 +42985,033,304,560,9280477,6140,0 +42986,Miedziany+gr%C3%B3d,320,417,699377401,10298,0 +42987,C114,364,648,699383279,10193,0 +42988,Wioska+barbarzy%C5%84ska,646,365,6625437,3923,0 +42990,TWIERDZA+.%3A011%3A.,688,572,7154207,10159,0 +42991,B%23001,694,452,2065730,9797,0 +42992,Wioska+barbarzy%C5%84ska,693,561,6929240,6070,0 +42993,Wioska+barbarzy%C5%84ska,669,394,8675636,10083,0 +42994,Nowy+rozdzia%C5%82%3F,697,433,699785935,10252,0 +42995,026.+U%C5%9Bmiech+%3A%29,701,471,7494497,10237,0 +42996,EO+EO,295,517,699697558,10019,4 +42997,Out+of+Touch,316,422,698962117,9485,0 +42998,%5B0156%5D,450,304,8630972,9117,0 +42999,XDX,611,330,699098531,9701,3 +43000,Wioska+barbarzy%C5%84ska,306,446,699706955,1288,0 +43001,bucksbarzy%C5%84skamiiiru,324,392,848955783,9639,0 +43002,Gazun,644,645,848903260,3428,6 +43004,020,666,382,698635863,9809,0 +43006,%2136+85+Putna,658,381,698361257,7233,0 +43007,.achim.,476,295,6936607,10311,2 +43008,015+G%C3%B3rki+Marmurki,652,632,849100994,11130,0 +43009,Winterhome.030,501,292,848918380,10178,0 +43010,B12,699,533,848995478,4207,7 +43011,S005,682,587,8428196,7941,0 +43012,Wioska+barbarzy%C5%84ska,704,524,7047342,9268,0 +43015,-+Gracadabra+-,669,617,849009623,2600,0 +43016,Wioska+24,681,585,849101162,2761,0 +43017,KONFA+TO+MARKA%2C+NARKA,298,457,698152377,10292,0 +43018,%3F%3F%3F%3F,481,298,698489071,10754,0 +43019,Elo+Elo+6,313,579,699016994,7936,0 +43021,Wioska+karte%C5%84ska,695,439,848976034,3433,0 +43022,037+Night+Raid,485,707,699684062,7724,0 +43023,0037+Kasko14,448,698,849037407,10342,0 +43024,Osada+koczownik%C3%B3w,699,502,3364735,6591,1 +43025,%23%23%23082%23%23%23,581,688,698285444,10495,0 +43026,0106,706,503,699429153,9782,0 +43027,Tarkos,651,603,1900364,8910,0 +43028,XXXX,560,302,849054951,10068,0 +43029,New+World,433,696,698152377,10295,0 +43030,KR%C3%93L+PAPI+WIELKI,656,623,698191218,10487,0 +43031,026,304,545,9280477,7357,0 +43032,FAKE+OR+OFF,413,313,698231772,9816,6 +43033,Wioska+barbarzy%C5%84ska,303,438,393668,6128,0 +43034,Olesno,693,545,848932879,2330,0 +43035,224,423,308,698365960,11874,0 +43036,A000,467,698,699725436,9379,0 +43037,%23%23%23083%23%23%23,593,675,698285444,10495,0 +43038,068+ZieloneOczko4,705,511,2135129,6622,0 +43039,Hello+there,319,591,6180190,4447,0 +43040,Ksi%C4%99%C5%BCyc,551,334,699797805,3883,0 +43041,Elo+Elo+5,312,582,699016994,9186,0 +43042,Wioska+Turystyczna+010,701,512,7588382,1805,0 +43043,012.Stradi,426,311,698365960,10495,0 +43044,012.+G%C3%B3rki+%C5%BBwirowe,648,642,849100994,7354,9 +43045,058.+%C5%81omnica,699,548,1601917,7668,0 +43046,Wioska+barbarzy%C5%84ska,342,366,7462660,9999,0 +43047,002,696,561,301602,8703,0 +43048,C0128,302,526,8841266,10452,0 +43049,034.+Night+Raid,488,703,699684062,9156,0 +43050,Jan+ost+daleko,698,468,879782,8095,0 +43051,XDX,611,336,699098531,6544,0 +43053,039,447,308,2502956,10019,0 +43054,BRICKLEBERRY,548,306,699072129,5945,0 +43055,Psycho+to+Marka%2C+Narka+%21,317,578,849040142,7465,0 +43056,New+World,436,693,698152377,9746,0 +43058,Grubasy+8,308,448,634848,4176,0 +43059,002.TREASURE,687,420,9180206,9956,8 +43060,PRZEMY%C5%9AL,493,300,849100406,9858,0 +43061,014.Stradi,433,311,698365960,10495,0 +43062,007.+G%C3%B3rki+Pag%C3%B3rki,659,632,849100994,10362,0 +43064,Wioska+barbarzy%C5%84ska,382,338,3698627,10085,0 +43065,O051,333,623,272173,9818,0 +43066,-+197+-+SS,561,690,849018239,7030,0 +43067,KR%C3%93L+PAPI+WIELKI,632,655,698191218,9536,0 +43068,015,637,646,849099544,6091,0 +43069,C0099,300,516,8841266,10252,0 +43070,%2A002%2A,328,546,8630972,10495,0 +43071,AAA,549,306,1006847,8363,0 +43072,0021,514,525,699432672,10495,0 +43073,ZA04,321,406,356642,9835,0 +43074,0108,705,504,699429153,8796,0 +43075,Wioska+barbarzy%C5%84ska,567,309,828637,9766,0 +43076,Z16,313,410,356642,9835,0 +43077,%23%23%23022%23%23%23,591,683,698285444,10495,0 +43078,Wioska+barbarzy%C5%84ska,362,346,849027025,9587,0 +43079,Domek+kapcia+KURY,359,641,6948793,8790,0 +43080,004,456,300,2502956,10019,8 +43081,z+Wioska+4,359,358,3909522,3457,0 +43082,XDX,606,324,699098531,10052,0 +43083,z181_23,305,436,393668,8515,0 +43084,I+lost+you,702,512,699785935,9667,0 +43085,z+0000+Osada,348,360,3909522,10083,9 +43086,007.,350,636,698908184,9713,0 +43087,0007+Sir+JuriGagarin,442,692,849037407,10003,0 +43089,%23%23%23084%23%23%23,580,685,698285444,10495,0 +43091,064,408,683,849099876,10495,0 +43092,029.,323,594,3475079,3488,0 +43093,AAA,559,309,1006847,8987,0 +43094,z181_11,309,441,393668,9881,0 +43095,046.Stradi,429,315,698365960,10495,0 +43096,Wioska+barbarzy%C5%84ska,675,395,698768565,6378,0 +43098,002,395,325,8153941,8405,0 +43099,Wioska+barbarzy%C5%84ska,628,338,849102068,2021,0 +43100,133.Stradi,431,307,698365960,2739,0 +43101,0013+mackobl14,442,694,849037407,10476,0 +43102,011,302,546,9280477,7573,0 +43103,005,592,317,699098531,4167,0 +43104,marmag81%2F03,302,468,1096254,5756,2 +43105,Wuhan,629,342,699580120,9570,0 +43106,KR%C3%93L+PAPI+WIELKI,657,635,698191218,10000,0 +43107,025+NAWRA,664,611,849048867,2922,0 +43108,Wioska+barbarzy%C5%84ska,355,647,6948793,9976,5 +43109,Didi,688,577,849070946,9299,0 +43110,ZZZ,513,700,8980651,6503,0 +43111,Pi%C4%85tnica,689,477,849100082,11678,0 +43112,Wioska+barbarzy%C5%84ska,532,700,8980651,9753,0 +43113,.achim.,468,295,6936607,7631,0 +43114,C.012,699,487,9188016,10000,0 +43115,Nowa+56,685,580,698702991,7831,0 +43116,AAA,542,305,1006847,8684,0 +43117,.achim.,467,295,6936607,6960,0 +43118,-035-,364,650,699097885,9899,0 +43119,ZA08,323,403,356642,9835,0 +43120,%23%23%23023%23%23%23,597,683,698285444,10495,0 +43121,S003,682,590,8428196,8086,0 +43122,bucksbarzy%C5%84skamiiiru,330,391,848955783,11130,0 +43123,Rogatki1,310,561,699265922,5314,0 +43124,B%C5%82aziny+Dolne,571,686,698723158,10301,0 +43125,O126,332,620,272173,6185,0 +43126,018,307,556,849098688,10160,0 +43127,HAPERT,626,664,848909464,10319,0 +43128,058-+Maroczna+Osada,649,360,849035905,3720,0 +43129,021,667,384,698635863,9741,0 +43130,Wioska+barbarzy%C5%84ska,703,546,8742874,3789,0 +43131,MELISKA,359,457,699794765,8991,0 +43132,%23%23%23008%23%23%23,590,678,698285444,10495,0 +43133,-+267+-+SS,549,702,849018239,7498,0 +43134,Kagusiowo+12,303,443,849101268,3444,0 +43135,%23%23%23011%23%23%23,593,683,698285444,10495,0 +43136,004,388,326,699660539,7614,0 +43137,FAKE+OR+OFF,415,319,698231772,9824,0 +43138,Marmag81%2F12,305,464,1096254,9299,0 +43139,%C5%BBywiec,297,476,849095376,6947,0 +43140,2.Algeciras,576,683,698215322,4457,0 +43141,AAA,562,310,1006847,6571,0 +43142,%5B0151%5D,453,299,8630972,9192,0 +43143,bucksbarzy%C5%84skamiiiru,331,397,848955783,10971,0 +43144,ZA24,318,417,356642,9835,0 +43145,.achim.,474,299,6936607,3672,0 +43146,Wioska+barbarzy%C5%84ska,694,459,849098769,5348,0 +43147,Osada+koczownik%C3%B3w,384,334,699660539,10019,1 +43148,Zaplecze+Barba+028,363,347,699796330,6183,0 +43149,Wioska+barbarzy%C5%84ska,385,673,6948793,7692,0 +43150,Wioska+barbarzy%C5%84ska,579,311,828637,10344,0 +43151,Bessa+022,630,657,848987051,8684,0 +43152,0.06+Raz,464,700,699725436,8338,0 +43153,Wioska+7,362,356,3342690,2902,0 +43154,C0340,298,538,8841266,3350,0 +43155,Wioska+klez+020,310,563,698295651,5638,0 +43156,KR%C3%93L+PAPI+WIELKI,657,621,698191218,10215,0 +43158,Wied%C5%BAma+-+Z+006,306,428,9239515,5124,0 +43159,Klaudiczek,644,356,849092309,2826,0 +43160,054+invidia,520,699,849093426,10301,0 +43161,ADEN,612,356,698588535,9522,0 +43162,Wioska+barbarzy%C5%84ska+0,314,580,699016994,5594,0 +43163,26+barbarzy%C5%84ska...,301,466,849018442,10495,0 +43164,marmag81%2F03w,300,469,1096254,6203,0 +43166,Wioska+barbarzy%C5%84ska,685,409,699598425,7500,0 +43167,%C5%9Api%C4%85cy+Szaman,318,587,849100439,1543,0 +43168,Psycho+to+Marka%2C+Narka+%21,316,573,849040142,4091,0 +43169,022,455,304,2502956,10019,7 +43170,abc,492,296,1493696,3883,0 +43171,XDX,606,322,699098531,10290,0 +43172,wioska,631,346,849086693,4774,0 +43173,0110,704,493,699429153,8763,0 +43174,Wielki+3,499,301,849050849,8214,0 +43175,%23%23%23024%23%23%23,592,680,698285444,10495,0 +43176,XDX,607,327,699098531,9616,0 +43177,%5B0106%5D,445,309,8630972,10495,0 +43178,C0198,299,526,8841266,7566,0 +43179,Wioska+barbarzy%C5%84ska,371,340,3698627,8215,0 +43180,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,493,705,8980651,9883,0 +43181,Wioska+barbarzy%C5%84ska,647,357,6625437,3211,0 +43182,Taran,327,612,6180190,9962,0 +43183,FAKE+OR+OFF,414,315,698231772,9953,0 +43185,Wioska+barbarzy%C5%84ska,706,488,699429153,7792,0 +43187,FAKE+OR+OFF,408,315,698231772,9812,0 +43188,BRICKLEBERRY,554,303,699072129,10311,0 +43189,ZA02,320,405,356642,9835,0 +43190,HURKO,480,295,849100406,9614,0 +43191,0105,704,502,699429153,9825,0 +43192,XDX,595,316,699098531,9316,0 +43193,%23%23%23010%23%23%23,592,683,698285444,10495,0 +43194,022,665,382,698635863,9883,0 +43195,013,315,585,6180190,9455,0 +43196,Wioska+astaporska,696,439,848976034,3021,0 +43197,Wioska+barbarzy%C5%84ska,622,665,6818593,5274,0 +43198,605%7C379,666,375,699580120,9570,0 +43199,Taran,332,606,6180190,9955,0 +43200,bucksbarzy%C5%84skamiiiru,337,378,848955783,3206,0 +43201,014%23+Evelyn,486,700,3933666,9667,0 +43202,Wioska+barbarzy%C5%84ska,528,299,7758085,9861,0 +43203,0034+Kasko14,449,694,849037407,10452,0 +43204,000+Plutosea,315,561,9280477,6249,0 +43205,Wioska+barbarzy%C5%84ska,453,697,698178312,1657,0 +43206,KONFA+TO+MARKA%2C+NARKA,304,457,698152377,10290,1 +43207,New+World,430,690,698152377,10297,0 +43208,04.+Rivia,704,539,8976313,9553,0 +43209,XDX,610,325,699098531,8641,0 +43210,Wioska+barbarzy%C5%84ska,369,658,699269923,8967,0 +43211,W%C4%99gorzewo,509,296,699208929,10213,9 +43213,C0245,303,523,8841266,10252,0 +43214,zajazd+%231,354,352,849027025,9183,0 +43215,0114,706,496,699429153,10301,0 +43216,Co+ona+wam+biedna+zrobi%C5%82a+xd,392,329,3484132,3140,0 +43217,Wioska+barbarzy%C5%84ska,620,667,6818593,7257,0 +43218,%3F%3F%3F%3F,487,295,698489071,7322,0 +43219,-+297+-+SS,557,697,849018239,7062,0 +43220,0.03+albo+wcale%21,460,704,699725436,9461,0 +43221,FP017,482,706,699605333,10148,0 +43222,ZZZ,463,705,8980651,7705,0 +43223,011.+Night+Raid,493,703,699684062,9305,0 +43224,Wioska+barbarzy%C5%84ska,380,333,699660539,5058,0 +43225,KR%C3%93L+PAPI+WIELKI,652,642,698191218,10008,0 +43226,Loca+2,643,645,699778867,8130,0 +43227,%2A210%2A,331,389,699273451,10211,0 +43228,New+World,452,695,698152377,9359,4 +43229,Pontypridd,672,607,1205898,5171,0 +43230,Wioska+barbarzy%C5%84ska,382,333,699660539,9807,0 +43231,%3F%3F%3F,480,300,698489071,10160,0 +43232,Osada+koczownik%C3%B3w,621,668,848909464,8457,7 +43234,Wioska+barbarzy%C5%84ska,706,470,699574408,8145,0 +43235,%2136+65+Cacica,655,368,698361257,10093,0 +43236,FAKE+OR+OFF,407,315,698231772,9824,0 +43237,Zagroda5,601,672,6528152,6877,0 +43238,FAKE+OR+OFF,413,314,698231772,9830,0 +43239,009a,311,424,8259895,3778,0 +43240,Sernik+z+Andzynkami,704,501,699126484,9806,0 +43241,Wioska+barbarzy%C5%84ska,653,371,7340529,8809,0 +43242,ZA16,313,416,356642,9835,7 +43243,011+plejor,615,672,699346280,10019,0 +43244,0100,704,496,699429153,10301,0 +43245,Wioska+barbarzy%C5%84ska,499,700,7976264,9941,0 +43246,Kabaty,360,353,849099434,4664,0 +43248,Rogatki3,311,562,699265922,5220,0 +43249,065,634,350,849010255,2157,0 +43251,%4013%40,403,327,699483429,5642,0 +43253,Wioska+barbarzy%C5%84ska,700,478,699429153,9045,0 +43255,O061,335,626,272173,9871,0 +43256,117+invidia,504,705,849093426,10164,0 +43257,0041+Qukaqu.,445,698,849037407,10478,0 +43258,Puerto+Riko,518,296,3298902,3881,0 +43259,BRZEG+JORDANU+%7C+011,698,519,9228039,3557,0 +43260,Wioska+barbarzy%C5%84ska,385,328,3698627,9846,0 +43262,A%23010,707,490,2065730,9797,0 +43263,Dream+on,298,484,698962117,8289,0 +43264,Wioska+barbarzy%C5%84ska,591,311,828637,10157,0 +43265,bucksbarzy%C5%84skamiiiru,321,398,848955783,10971,0 +43266,Jan+felek1987+Ost+K,696,458,879782,9673,0 +43267,Kasztelan,301,480,849095376,9820,0 +43268,Tego+typu%21,707,503,8418489,9746,0 +43269,KR%C3%93L+PAPI+WIELKI,666,623,698191218,10000,2 +43272,0102,700,503,699429153,9889,0 +43273,007,705,523,7085502,9799,0 +43274,0048+Utopia2,439,692,849037407,10478,0 +43275,Wioska+barbarzy%C5%84ska,620,664,6818593,4188,0 +43276,Wioska+barbarzy%C5%84ska,707,525,2135129,2986,0 +43277,009+BORA7,609,671,699346280,10019,0 +43278,Wied%C5%BAma+-+Z+005,304,434,9239515,5580,0 +43279,Taran,329,605,6180190,9976,0 +43280,KONFA+TO+MARKA%2C+NARKA,297,454,698152377,10290,0 +43281,24.+Kerack,698,549,8976313,8845,0 +43282,Wioska+017,673,608,7999103,7748,0 +43283,042,449,301,2502956,10019,0 +43284,z+000+Wioska+11+tttttttt,351,360,3909522,7713,0 +43285,psycha+sitting,413,680,699736927,10178,0 +43287,Wioska+barbarzy%C5%84ska,352,643,698908184,5251,0 +43289,Wioska+barbarzy%C5%84ska,675,601,8224678,4610,0 +43290,Taran,324,612,6180190,9976,0 +43292,psycha+sitting,413,681,699736927,10178,0 +43293,064,634,345,849010255,10019,0 +43294,Wioska+brabarzy%C5%84c%C3%B3w,674,601,8224678,6608,0 +43296,034,304,561,849098688,4926,0 +43297,XDX,608,325,699098531,10290,0 +43298,%2136+75+Brasca,658,370,698361257,7817,0 +43301,bucksbarzy%C5%84skamiiiru,334,389,848955783,5401,0 +43306,%2AINTERTWINED%2A,515,705,698704189,3242,0 +43307,Wioska+barbarzy%C5%84ska,386,671,6948793,6971,0 +43308,Lipnica,457,297,849101116,7189,0 +43310,Wioska+Zorro+001,676,595,849080702,12154,0 +43311,Dream+on,299,495,698962117,9742,0 +43312,z+Wioska+3,358,361,3909522,8429,3 +43314,Zagroda2,605,674,6528152,8325,0 +43315,Wioska+barbarzy%C5%84ska,392,672,6948793,7518,0 +43316,MojeDnoToWaszSzczyt,501,293,9299539,9964,0 +43318,FAKE+OR+OFF,414,312,698231772,9812,0 +43319,O059,339,628,272173,9819,0 +43320,Taran,332,609,6180190,10433,0 +43321,068.+Wioska+barbarzy%C5%84ska,697,462,7494497,8413,0 +43322,Dream+on,300,503,698962117,4158,0 +43323,0056,451,701,849037407,10795,0 +43324,262...Gulden,457,298,6920960,5434,0 +43325,%5B0209%5D,299,498,8630972,7601,0 +43326,Wioska+barbarzy%C5%84ska,584,313,828637,10475,0 +43328,S003,600,672,8627359,9400,0 +43329,020.Stradi,428,308,698365960,10495,0 +43331,Bessa+011,640,653,848987051,10221,0 +43332,New+World,431,693,698152377,10294,0 +43334,Wioska+barbarzy%C5%84ska,656,372,0,2041,0 +43335,D023,561,305,699299123,5040,0 +43336,003+The+Silver+Tower,353,364,7462660,10201,0 +43337,047+invidia,541,703,849093426,10237,0 +43339,C0259,304,548,8841266,10252,0 +43340,Nowa+54,684,577,698702991,7463,0 +43341,Didek,679,586,849070946,6710,0 +43342,Taran,331,607,6180190,10020,0 +43343,psycha+sitting,398,675,699736927,6553,0 +43344,WS+01,698,439,699524891,9720,4 +43346,XDX,607,325,699098531,10292,0 +43348,Spec3,545,298,699569800,4074,0 +43349,037.xxx,490,687,8612358,3304,0 +43350,Wioska+barbarzy%C5%84ska,676,393,698768565,4329,0 +43351,002,698,511,699150527,10164,1 +43352,21+barbarzy%C5%84ska...,299,465,849018442,9440,0 +43353,0019+Wioska+barbarzy%C5%84ska,440,698,849037407,9413,0 +43354,Dream+on,299,490,698962117,9505,0 +43355,%230293+Don+Noobas,467,294,1238300,2151,0 +43356,A000,467,706,699725436,9818,0 +43357,Grab%C3%B3wek,480,297,698848373,2660,0 +43358,Dream+on,297,496,698962117,9744,0 +43359,043+Chora%C5%BCy+Torpeda,598,678,699346280,9495,0 +43360,Arczi997+06,296,519,849055181,2019,0 +43362,Dream+on,300,488,698962117,7227,0 +43363,0011,416,319,2321390,8753,0 +43364,002+Hamburg,409,322,698231772,10495,0 +43365,Wioska+DZ4L,441,443,9291984,4298,0 +43367,C0345,298,540,8841266,2611,0 +43369,TWIERDZA+.%3A035%3A.,691,575,7154207,10225,0 +43372,AAA,539,301,1006847,9712,0 +43373,007,703,494,942959,9663,0 +43374,.achim.,477,293,6936607,6257,0 +43375,003,413,689,849099876,10495,2 +43376,041.+Zach%C3%B3d,463,697,848928624,2631,0 +43377,eee,368,659,699269923,9891,0 +43378,Didi,687,581,849070946,9697,0 +43379,I103,698,451,699722599,7741,0 +43380,0010,352,355,699644448,2527,0 +43381,-+279+-+SS,553,699,8501514,4466,0 +43382,FFF,661,374,8675636,9075,0 +43383,%23K66+0004,611,673,699728159,6338,0 +43384,Wiejska3,608,667,6528152,8796,0 +43385,Jedlanka+Stara,568,697,698723158,5840,0 +43386,O127,330,618,272173,6704,0 +43387,Dream+on,298,506,698962117,9747,0 +43388,002%23+Gwen,485,700,3933666,10093,0 +43389,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,494,705,8980651,9372,0 +43390,Psycho+to+Marka%2C+Narka+%21,313,574,849040142,6564,0 +43391,New+World,469,689,698152377,10132,0 +43392,C0222,298,544,8841266,10252,0 +43393,150,401,683,849099876,8852,0 +43394,062,638,352,849010255,2524,0 +43395,ZZZ,534,699,8980651,9761,0 +43396,bucksbarzy%C5%84skamiiiru,333,380,848955783,2637,0 +43397,034,419,688,849099876,10495,0 +43398,02.TWICE,686,409,9180206,7079,5 +43399,%23K66+0009,613,675,699728159,6351,0 +43400,Dream+on,297,490,698962117,9588,0 +43402,-+205+-+SS,545,698,849018239,7070,0 +43403,016+Wioska+barbarzy%C5%84ska,603,680,699346280,10160,0 +43404,023,658,380,698635863,8793,0 +43405,016.+Far+far+away,500,708,848928624,10273,0 +43406,FP034,473,706,699605333,9320,0 +43407,merhet,576,686,698215322,5663,0 +43408,bucksbarzy%C5%84skamiiiru,328,383,848955783,3078,0 +43409,CALL+1071,658,627,699784536,10495,0 +43410,24.+Wioska+Raukodel,648,360,9320272,6153,0 +43411,KR%C3%93L+PAPI+WIELKI,713,516,698191218,6660,0 +43412,Wioska+barbarzy%C5%84ska,581,314,828637,10478,0 +43413,%3F%3F%3F%3F,466,296,698489071,5151,0 +43414,003,299,550,849098688,7527,0 +43415,BRICKLEBERRY,557,304,699072129,4283,0 +43416,Wioska+barbarzy%C5%84ska,580,314,828637,10476,4 +43418,Wioska+barbarzy%C5%84ska,696,540,848946700,4137,0 +43419,C072,378,659,699383279,5873,0 +43420,%C5%9Ar%C3%B3dmie%C5%9Bcie,587,679,849100612,2449,0 +43421,036.+Howerla,702,552,1601917,7524,0 +43422,wiocha,618,664,848909464,10242,0 +43423,KHORINIS+03,371,660,849099924,1625,0 +43424,Didek,681,583,849070946,1944,0 +43425,XDX,599,317,699098531,7171,0 +43426,Wioska+barbarzy%C5%84ska,645,354,1715091,2560,0 +43428,%5B0094%5D,443,307,8630972,10495,0 +43429,Wyzima,333,375,7462660,5834,0 +43430,bucksbarzy%C5%84skamiiiru,328,392,848955783,10971,5 +43431,Wioska+4,337,375,7462660,7538,0 +43432,XDX,605,327,699098531,9618,0 +43433,%5B0105%5D,445,305,8630972,10495,0 +43435,Wioska+083,677,605,848971079,8436,0 +43436,%2A02+GAWRA%2A,311,429,2415972,8797,6 +43437,ZA06,319,407,356642,9835,0 +43438,FP018,475,703,699605333,10393,0 +43439,Wioska+barbarzy%C5%84ska,371,656,699269923,9667,0 +43441,C0219,294,531,8841266,7850,0 +43443,036,306,544,9280477,6359,0 +43444,004.+Marzyciel+Shrek,465,494,698290577,8264,0 +43445,B%23019,700,453,2065730,9797,0 +43447,%2136+76+Marginea,661,371,698361257,9474,0 +43448,Ob+Konfederacja,423,314,848915730,3540,0 +43449,Wioska+Wiki+2,524,700,849100354,12154,0 +43450,Taran,332,610,6180190,9956,0 +43451,006.+Wioska+barbarzy%C5%84ska,346,636,698908184,9804,0 +43452,%7E078.,497,699,7139820,5549,0 +43453,038.+Auriga,506,596,699703642,9471,0 +43455,ZZZ,458,703,8980651,4140,0 +43456,EO+EO,300,521,699697558,10083,8 +43457,028+Lyria,467,676,699834004,6763,0 +43458,New+World,437,699,698152377,10294,0 +43459,Taran,331,613,6180190,9956,0 +43460,Wioska+Pawlo101,637,355,848973715,5626,0 +43461,Wioska+barbarzy%C5%84ska,696,539,848946700,6298,0 +43462,bucksbarzy%C5%84skamiiiru,316,398,848955783,9111,0 +43463,%23%23%23025%23%23%23,589,680,698285444,10495,0 +43465,Wioska+barbarzy%C5%84ska,380,331,3698627,10069,0 +43466,Taran,321,603,6180190,9130,0 +43468,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,494,708,8980651,5025,0 +43469,Haiti,509,295,699208929,10067,0 +43470,Wioska+barbarzy%C5%84ska,379,669,699269923,9000,0 +43471,0316,566,688,698659980,9690,0 +43472,0097,674,396,698416970,8068,0 +43473,Dream+on,299,507,698962117,9740,0 +43474,%23%23%23026%23%23%23,599,682,698285444,10495,0 +43475,Dream+on,293,483,698962117,9489,0 +43476,Wow17,362,355,699730714,2995,0 +43477,Taran,329,614,6180190,9968,0 +43478,Wioska+barbarzy%C5%84ska,517,296,7758085,9734,0 +43479,EO+EO,293,501,699697558,11078,3 +43481,Wioska+krumlow+4,597,318,699098531,2845,0 +43482,%5B0139%5D,459,298,8630972,9331,0 +43483,Wioska+barbarzy%C5%84ska,662,625,698191218,1886,0 +43484,Wioska+barbarzy%C5%84ska,358,348,849027025,5936,0 +43485,A05,700,558,848995478,11550,4 +43486,Gattacka,690,432,699298370,8849,0 +43487,Wioska+barbarzy%C5%84ska,376,333,3698627,9855,0 +43489,%3D0009%3D,405,317,698231772,9822,0 +43490,050.+Korab,698,551,1601917,6968,0 +43491,Wioska+barbarzy%C5%84ska,577,315,0,1447,0 +43492,A000,469,700,699725436,9283,0 +43493,a+mo%C5%BCe+off+%3F+%3A%29,676,407,698768565,5093,0 +43494,Wioska+barbarzy%C5%84ska,692,569,7038651,3692,0 +43495,013%23+Gamora,512,704,3933666,7404,0 +43496,15+Ca%C5%84ada,378,658,698837993,1359,0 +43497,Wioska+barbarzy%C5%84ska,352,353,849027025,7848,0 +43498,monetki+E,674,402,698768565,10205,4 +43499,Wioska+Turystyczna+002,705,479,7588382,9828,0 +43500,026,704,505,699150527,8925,0 +43501,Wioska+barbarzy%C5%84ska,588,311,828637,10479,0 +43502,Tzarski707,642,649,699783063,7817,0 +43503,a+mo%C5%BCe+off+%3F+%3A%29,678,402,698768565,6622,0 +43504,010.Stradi,436,302,698365960,10495,0 +43505,005.+Cintra,665,375,849086491,10052,1 +43506,A+060,363,649,6948793,10495,0 +43507,Na+Kra%C5%84cu+%C5%9Awiata+013,636,351,9291984,6505,0 +43508,-+274+-+SS,554,700,849018239,7240,0 +43509,%2AINTERTWINED%2A,503,699,698704189,8473,0 +43510,Didek,678,600,849070946,1264,0 +43511,Little+Pony,690,437,1715091,8278,0 +43512,a+mo%C5%BCe+off+%3F+%3A%29,672,397,698768565,5700,0 +43513,007,303,551,5997814,8540,0 +43514,026,404,681,849099876,10495,0 +43515,B%23021,699,449,2065730,9797,0 +43516,044.+Night+Raid,488,701,699684062,7889,0 +43517,.achim.,489,296,6936607,4762,0 +43518,027.+Brauer92,670,381,2873154,10237,8 +43520,%3F%3F%3F%3F,478,299,698489071,9297,0 +43521,0431,546,676,698659980,10083,0 +43522,Zbij%C3%B3w+Ma%C5%82y,570,687,698723158,6597,0 +43523,268...gulden,458,300,6920960,8458,0 +43524,wiocha,618,662,848909464,10319,0 +43525,270...gulden,463,304,6920960,7371,0 +43526,238,398,320,7271812,2194,0 +43527,C0180,302,533,8841266,10252,0 +43528,Wioska+barbarzy%C5%84ska,517,294,7758085,8979,0 +43529,Kotarwice,570,691,698723158,5181,0 +43530,Komandos,630,659,7976264,7560,0 +43531,S008,683,586,8428196,6782,0 +43532,XXXX,561,303,849054951,10068,0 +43533,23+barbarzy%C5%84ska..,300,444,849018442,9420,0 +43534,aaaa,391,672,6948793,9899,2 +43535,06-oss,677,608,848921861,9435,0 +43536,Obrze%C5%BCe,575,692,7589468,8822,0 +43538,O038,342,627,272173,9885,0 +43539,%5B0163%5D,448,307,8630972,8677,0 +43540,009,640,353,849086491,3628,0 +43541,z181_19,306,442,393668,9950,0 +43542,Bessa+023,635,652,848987051,10008,0 +43543,Lipno,665,387,699491076,5841,0 +43544,Gattacka,690,429,699298370,8975,0 +43545,EO+EO,297,510,699697558,7989,0 +43546,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,492,712,8980651,9741,0 +43547,008,299,554,9280477,9976,0 +43548,%230224+Segadorr+dar,442,303,1238300,10178,6 +43549,komandos,632,665,7976264,9235,0 +43550,O009,341,633,272173,9955,0 +43551,Wioska+barbarzy%C5%84ska,628,337,699580120,5187,0 +43552,ZZZ,428,693,8980651,9012,0 +43553,FENDI,304,461,699794765,4632,0 +43554,0020+Wioska+barbarzy%C5%84ska,441,699,849037407,9540,0 +43555,03.+Na+garbarach+korek,485,706,849092769,9548,0 +43556,Wioska+barbarzy%C5%84ska,704,531,848946700,2835,0 +43557,Wioska+barbarzy%C5%84ska,535,295,698350371,4721,0 +43558,Kamizela,355,638,272173,5307,0 +43559,036,405,681,849099876,10495,0 +43560,024,668,383,698635863,7808,0 +43561,Wioska+barbarzy%C5%84ska,367,654,699269923,9668,0 +43562,052.,704,462,849094609,6314,0 +43563,Wioska+barbarzy%C5%84ska,620,338,0,1829,0 +43564,psycha+sitting,405,680,699736927,10311,7 +43565,024.Stradi,436,301,698365960,10495,0 +43566,Na+Kra%C5%84cu+%C5%9Awiata+012,634,352,9291984,4568,0 +43567,%5B0119%5D,442,304,8630972,10107,0 +43568,Taran,326,615,6180190,9960,0 +43569,%5B0180%5D,290,496,8630972,8614,0 +43570,%2A222%2A,334,384,699273451,10211,0 +43571,022,305,566,849098688,5847,0 +43572,Wyspa_38,512,699,2585846,9638,0 +43573,0117,709,502,699429153,9825,0 +43574,EO+EO,295,520,699697558,10495,0 +43575,KR%C3%93L+PAPI+WIELKI,653,632,698191218,10000,9 +43576,B10,703,548,848995478,11130,0 +43577,Wioska+barbarzy%C5%84ska,700,544,848946700,6690,0 +43578,Bior%C4%85+pa%C5%82y+co+nie+spa%C5%82y...,622,406,849050191,5703,0 +43579,%5B194%5D,677,389,8000875,8958,0 +43580,a+mo%C5%BCe+off+%3F+%3A%29,675,400,698768565,5784,0 +43581,MojeSzczytToTw%C3%B3jDno,595,318,828637,8308,0 +43582,Wioska+Zorro+007,680,599,849080702,10971,3 +43583,Wioska+barbarzy%C5%84ska,682,410,699598425,6693,0 +43584,Osada+koczownik%C3%B3w,553,695,7581876,10019,5 +43585,Kentin+ufam+Tobie,401,492,699783765,10000,0 +43587,010,697,563,301602,8955,0 +43588,%2136+65+Humor,659,367,698361257,9846,0 +43589,AAA,541,298,1006847,9976,7 +43590,0042+Qukaqu.,449,696,849037407,10474,0 +43591,Bia%C5%82ka,571,694,698723158,11130,0 +43592,0009+Wioska+barbarzy%C5%84ska,443,693,849037407,10069,0 +43593,%23%23%23004%23%23%23,588,690,698285444,10495,4 +43594,Wioska+barbarzy%C5%84ska,702,453,699150527,8299,0 +43595,004,305,565,849097898,6425,0 +43597,049+invidia,548,702,849093426,10237,0 +43598,C004,472,698,8954402,9665,0 +43599,Mniejsze+z%C5%82o+0082,470,293,699794765,4656,0 +43601,Wioska+Turystyczna+003,708,478,7588382,9265,0 +43602,Psycho+to+Marka%2C+Narka+%21,305,573,849040142,3226,0 +43603,Osada+koczownik%C3%B3w,318,598,7183372,10474,8 +43604,181+izo,299,449,634848,11550,0 +43605,XDX,600,318,699098531,11164,3 +43606,Wioska+barbarzy%C5%84ska,567,307,828637,10365,0 +43607,Wioska+barbarzy%C5%84ska,532,296,699818726,5225,0 +43608,Wioska+barbarzy%C5%84ska,696,433,1715091,9761,0 +43609,PIROTECHNIK+003,360,347,849101083,8173,0 +43610,087+invidia,517,701,849093426,8453,0 +43611,Wioska+barbarzy%C5%84ska,694,436,1715091,8250,0 +43612,z181_25,306,444,393668,8884,0 +43613,TWIERDZA+.%3A005%3A.,692,580,7154207,10119,2 +43614,KR%C3%93L+PAPI+WIELKI,628,657,698191218,8012,0 +43616,New+WorldA,294,525,849084005,6681,0 +43617,012,389,327,8153941,3750,0 +43618,BRICKLEBERRY,555,305,699072129,4957,0 +43619,KR%C3%93L+PAPI+WIELKI,646,637,698191218,10066,0 +43620,Wioska+barbarzy%C5%84ska+2,309,582,699016994,9893,0 +43621,043,709,512,7085502,8949,0 +43622,TWIERDZA+.%3A056%3A.,689,576,7154207,9514,0 +43623,0028+Wioska+barbarzy%C5%84ska,444,697,849037407,10067,0 +43624,006,299,555,9280477,10311,1 +43626,C0210,297,533,8841266,10252,0 +43627,%23%23%23027%23%23%23,589,684,698285444,10495,0 +43629,C003,541,705,698599365,7660,0 +43630,%23%23%23085%23%23%23,579,690,698285444,10495,0 +43631,O080,337,626,272173,9887,0 +43632,009+Kaiserslautern,647,355,7340529,10654,9 +43633,%3F%3F%3F,484,300,698489071,10425,0 +43634,06.+Skellige,700,537,8976313,9828,0 +43635,014,300,554,9280477,9806,0 +43636,Wioska+barbarzy%C5%84ska,338,371,7462660,5195,0 +43637,TUUU,602,322,699098531,9629,0 +43638,%3F%3F%3F%3F,473,295,698489071,10769,0 +43639,C0190,303,532,8841266,8181,0 +43640,029,311,575,849098688,10160,0 +43641,Wioska+barbarzy%C5%84ska,377,333,3698627,9965,0 +43642,0070,369,337,848913037,6319,0 +43643,013+Wolfsschanze,610,353,849091899,6048,0 +43644,C0129,298,517,8841266,10249,0 +43645,Wioska+barbarzy%C5%84ska,617,668,6818593,8420,0 +43646,klops3,626,666,848909464,10319,0 +43647,-+157+-+SS,538,696,849018239,9472,0 +43648,Dream+on,294,491,698962117,9494,0 +43649,MojeDnoToWaszSzczyt,502,301,9299539,9732,0 +43650,Wioska+barbarzy%C5%84ska,703,470,699574408,8014,0 +43651,AAA,536,299,1006847,10154,2 +43652,002.+G%C3%B3rki+Ma%C5%82e,655,637,849100994,10438,0 +43653,AAA,551,305,1006847,6243,0 +43654,J%23014,573,333,2065730,9797,0 +43655,Z22,316,413,356642,9835,0 +43656,Dream+on,293,480,698962117,4736,0 +43657,208...segador,458,297,6920960,10877,0 +43658,Wioska+brabarzy%C5%84c%C3%B3w,673,601,8224678,5049,0 +43659,Wioska,359,346,849027025,10059,0 +43660,0038+Wioska+barbarzy%C5%84ska,445,697,849037407,9736,0 +43661,XDX,616,332,699098531,7051,0 +43662,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,498,709,8980651,9994,0 +43663,Wioska+barbarzy%C5%84ska,375,339,699660539,8332,0 +43664,019,707,511,699150527,8085,0 +43665,%3F%3F%3F%3F,472,295,698489071,7101,0 +43666,059.+Mount+Everest,701,556,1601917,8634,0 +43667,018S,478,698,848896948,9360,0 +43668,%23%23%23013%23%23%23,595,684,698285444,10495,0 +43670,121+invidia,505,707,849093426,9977,0 +43671,Szlachcic,496,477,699098531,9682,0 +43672,%5B156%5DSzcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,580,474,848985692,9951,0 +43673,Wioska+barbarzy%C5%84ska,702,542,848946700,6851,0 +43675,AAA,537,296,1006847,8132,0 +43676,025.,703,464,849094609,9752,0 +43677,%23%23%23086%23%23%23,582,686,698285444,10495,0 +43678,Cynowy+gr%C3%B3d,319,416,699377401,8445,0 +43679,New+World,427,692,698152377,10294,0 +43680,004,593,315,1767876,7950,0 +43681,Wioska+X08,294,468,698701911,2375,0 +43682,026,640,349,9148043,4050,0 +43683,bucksbarzy%C5%84skamiiiru,321,395,848955783,12154,0 +43684,%23%23%23087%23%23%23,593,677,698285444,10495,0 +43685,Wioska+116,691,582,848971079,1273,0 +43686,Wioska+barbarzy%C5%84ska,708,490,699429153,8591,0 +43687,Taran,323,602,6180190,8795,0 +43688,Wioska+barbarzy%C5%84ska,337,615,9199885,3466,0 +43689,O135,342,628,272173,9821,0 +43690,TWIERDZA+.%3A046%3A.,694,574,7154207,10225,0 +43691,Wioska+X12,295,468,698701911,6986,0 +43693,Aniela,528,705,699733501,9867,0 +43694,%23%23%23028%23%23%23,590,681,698285444,10495,0 +43695,TWIERDZA+.%3A042%3A.,693,563,7154207,10225,0 +43696,028,708,488,849091105,8474,5 +43697,bucksbarzy%C5%84skamiiiru,326,391,848955783,3655,0 +43698,psycha+sitting,408,680,699736927,10178,0 +43699,Bessa+015,637,657,848987051,10183,0 +43700,Wioska+barbarzy%C5%84ska,699,541,848946700,6563,0 +43701,Gibonowo,293,489,849100877,11347,2 +43702,%5B0115%5D,441,306,8630972,10273,0 +43703,051.+Kamerun,695,551,1601917,7344,0 +43704,116+invidia,505,709,849093426,10063,0 +43705,Wioska+barbarzy%C5%84ska,688,412,8675636,9126,0 +43706,Wioska+Zorro+021,676,593,849080702,4089,0 +43707,Wioska+Espel132,305,457,698630140,7265,0 +43708,XDX,594,322,699098531,5617,0 +43709,Szlachcic,380,339,698160606,8165,0 +43710,C064,376,657,699383279,5820,0 +43711,%23K66+0008,612,674,699728159,5332,0 +43712,Forteca%2A011%2A,532,698,1078121,3757,0 +43713,ZzZzZ+OdlotowoNAimprezie+Sylwka,694,571,699778867,12154,0 +43714,004.+Wioska+barbarzy%C5%84ska,345,636,698908184,9804,0 +43715,%23046%23,637,637,692803,9761,0 +43716,%23%23%23088%23%23%23,598,677,698285444,10495,0 +43717,037,421,686,849099876,10495,0 +43718,Wioska+barbarzy%C5%84ska,302,555,5997814,9741,0 +43719,062.+Manaslu,706,540,1601917,5214,0 +43721,004,300,466,848895676,2620,0 +43722,003.SHINee,688,418,9180206,7686,4 +43723,Z17,312,409,356642,9835,0 +43724,Gdynia,514,300,699208929,1887,0 +43725,061.+Monte+Cassino,704,534,1601917,5503,0 +43726,013,641,347,9291984,6415,0 +43727,Dream+on,302,498,698962117,9505,0 +43728,Wygwizdowa+005,636,655,698562644,10311,0 +43729,024.+Wioska+barbarzy%C5%84ska,347,639,698908184,7124,0 +43730,016,512,707,2293376,4168,0 +43731,Osada+koczownik%C3%B3w,382,329,699660539,10021,2 +43732,%230219+Segadorr+dar,451,304,1238300,10178,0 +43733,013Wigilijka,470,706,698620694,9716,0 +43734,034,308,570,849098688,9835,0 +43735,Wioska+barbarzy%C5%84ska,626,343,849062920,1701,0 +43736,Taran,330,607,6180190,9956,0 +43737,001,526,296,699208929,10469,0 +43738,New+World,418,692,698152377,10294,0 +43739,bucksbarzy%C5%84skamiiiru,333,381,848955783,2489,0 +43740,24.+AVE+WHY%21,483,706,849092769,10278,0 +43742,025+Wioska+barbarzy%C5%84ska,603,677,699346280,9566,0 +43743,Wioska+zbrzeziu44,452,697,849098827,1655,0 +43744,Wioska+barbarzy%C5%84ska,701,481,699429153,7988,0 +43745,Wioska+barbarzy%C5%84ska,707,534,848946700,9155,0 +43746,Dukaj,354,635,272173,7979,0 +43747,Ciawar+Jaguar+X300,566,312,699072129,9258,0 +43749,AAA,534,301,1006847,7464,0 +43750,059-Mroczna+Osada,651,360,849035905,3053,0 +43751,%5B043%5D+Wioska+barbarzy%C5%84ska,686,426,849095068,9352,0 +43752,%5B0196%5D,295,500,8630972,9869,0 +43753,A+038,361,645,6948793,5618,0 +43755,010,313,591,6180190,7272,0 +43756,192,454,697,849099876,2336,0 +43757,Neonowy+gr%C3%B3d,316,419,699377401,3142,0 +43758,XXXX,562,306,849054951,10268,0 +43759,047.+Janikulum,699,547,1601917,8855,0 +43760,-+200+-+SS,533,698,849018239,7627,0 +43761,%23%23%23029%23%23%23,588,687,698285444,10495,0 +43762,Wioska+rosiu56,332,613,6180190,9821,0 +43763,bucksbarzy%C5%84skamiiiru,327,399,848955783,5712,0 +43764,Didi,684,590,849070946,10728,0 +43765,bucksbarzy%C5%84skamiiiru,337,381,848955783,2168,0 +43766,032.+ALFI,479,574,8539216,2006,0 +43767,Veracruz,626,335,849061374,9541,0 +43768,B03,699,551,848995478,9927,6 +43769,Ger6,708,520,2246711,4599,0 +43770,60+go%C5%9B%C4%872,296,474,849018442,8646,0 +43771,bucksbarzy%C5%84skamiiiru,320,399,848955783,10438,0 +43772,007,395,329,8153941,5834,0 +43773,Melon5,307,428,699659708,3275,0 +43774,071.+Wioska+barbarzy%C5%84ska,700,466,7494497,7749,0 +43775,klops3,625,667,848909464,10319,0 +43776,Osada+koczownik%C3%B3w,401,325,195249,3383,7 +43777,Wioska+barbarzy%C5%84ska,500,701,7976264,6207,0 +43778,060,666,384,698635863,4828,0 +43779,Wioska+barbarzy%C5%84ska,360,345,849027025,7540,0 +43780,045+sebaseba1991,619,668,699346280,10160,0 +43781,Wioska+barbarzy%C5%84ska,382,331,699660539,9857,0 +43782,Domi+3,698,475,849002796,8682,0 +43783,Z19,312,411,356642,9835,0 +43784,099+Isehara,696,445,7092442,6201,0 +43785,wioska,630,336,849102068,8957,0 +43786,ZA21,324,404,356642,9742,0 +43787,C0344,297,540,8841266,2205,0 +43788,A+048,357,639,272173,4775,0 +43789,Wioska+barbarzy%C5%84ska,503,705,7976264,4887,0 +43790,-+249+-+SS,551,699,849018239,6342,0 +43791,005,626,657,699872616,907,0 +43792,Wioska+barbarzy%C5%84ska,380,670,699269923,8136,0 +43793,Dream+on,297,505,698962117,9744,0 +43794,KR%C3%93L+PAPI+WIELKI,650,646,698191218,9654,0 +43795,%5B0116%5D,449,303,8630972,10508,7 +43797,Z11,314,407,356642,9835,0 +43798,Osada+koczownik%C3%B3w,552,694,7581876,9835,3 +43799,Otak,437,559,699443920,3345,0 +43800,0011,351,356,699644448,3304,0 +43801,0069,563,697,698659980,10252,1 +43802,049,634,348,849010255,3965,0 +43804,051+invidia,512,702,849093426,9618,0 +43805,Wioska+adrianh3,709,508,8418489,4184,0 +43806,025,671,379,698635863,9489,0 +43807,ZZZ,452,699,8980651,10130,0 +43808,C041,376,661,699383279,8056,0 +43809,C0143,316,535,8841266,10252,0 +43810,B012,521,302,699208929,7747,0 +43811,Wioska+barbarzy%C5%84ska,306,547,5997814,4460,0 +43812,013+tylko+farma,532,706,6116940,5391,0 +43813,Wioska+barbarzy%C5%84ska,627,335,0,2800,0 +43814,%2AW004,668,377,7758085,9861,0 +43815,AAA,545,304,1006847,7291,0 +43816,KR%C3%93L+PAPI+WIELKI,631,651,698191218,9615,0 +43817,Bessa+013,641,653,848987051,10221,7 +43818,wioska,633,339,849102068,4452,0 +43820,022,474,699,848896948,8624,0 +43821,MojeDnoToWaszSzczyt,490,293,9299539,9714,0 +43822,asd,621,331,8675636,9752,0 +43823,C0130,296,522,8841266,10145,0 +43824,XDX,603,324,699098531,9962,0 +43825,%3D0010%3D,400,318,698231772,9834,0 +43826,%2136+65+Stramtura,658,369,698361257,7805,0 +43827,%3F%3F%3F%3F,470,300,698489071,3753,0 +43828,San+Siro,662,623,849096631,11489,0 +43829,074.Stradi,439,306,698365960,10074,0 +43831,060.+Wioska+barbarzy%C5%84ska,700,470,7494497,8190,0 +43833,%2136+65+Iaz,657,362,698361257,6572,0 +43834,Wioska+barbarzy%C5%84ska,374,664,699269923,8947,0 +43835,005,354,353,849101205,6403,0 +43836,%3D0005%3D,402,321,698231772,9870,0 +43838,ZA22,312,414,356642,9835,0 +43839,008,701,496,942959,8124,0 +43840,Wioska+barbarzy%C5%84ska,703,506,699150527,9308,0 +43841,B%23020,704,452,2065730,9797,0 +43842,0113,705,502,699429153,9825,0 +43843,KR%C3%93L+PAPI+WIELKI,643,644,698191218,9703,0 +43844,B009+Tajna+Bro%C5%84+3xxx,706,467,113796,8915,0 +43845,EO+EO,294,520,699697558,10019,0 +43846,138+invidia,542,698,849093426,6268,0 +43847,Wioska+barbarzy%C5%84ska,373,337,3698627,10075,0 +43848,FP027,474,704,699605333,10093,0 +43849,026,669,385,698635863,9769,0 +43850,Wioska+barbarzy%C5%84ska,650,354,0,2915,0 +43851,081+invidia,521,700,849093426,7235,0 +43852,A+MOBIL+STOP,614,326,849061374,9797,3 +43853,KR%C3%93L+PAPI+WIELKI,647,637,698191218,6516,0 +43854,Wioska+barbarzy%C5%84ska,694,443,1715091,6927,0 +43855,Na+Kra%C5%84cu+%C5%9Awiata+015,640,345,9291984,4168,0 +43856,ZA19,320,408,356642,9835,0 +43857,Wioska+barbarzy%C5%84ska,305,553,5997814,7548,0 +43858,WB01,318,410,356642,5337,0 +43859,C104,365,647,699383279,9709,0 +43860,Wioska+chudyn,531,293,699818726,9860,0 +43861,Wioska+krumlow+8,598,320,699098531,2308,0 +43862,0.08+Brek%3F,467,701,699725436,9481,0 +43863,Wioska+barbarzy%C5%84ska,651,366,698361257,3887,0 +43865,060.+Mount+Blanc,695,549,1601917,7994,0 +43866,EO+EO,297,501,699697558,9542,0 +43867,017.Stradi,430,312,698365960,10495,0 +43869,psycha+sitting,398,679,699736927,6570,0 +43870,%23%23%23030%23%23%23,598,682,698285444,10495,0 +43871,017.,702,463,849094609,9835,3 +43872,036,642,354,9148043,9030,0 +43873,TWIERDZA+.%3A085%3A.,685,577,7154207,8992,0 +43874,018.+F+P%C5%81N,612,327,849061374,9754,0 +43875,tomek016+V,692,566,8811880,1009,0 +43876,Wioska+barbarzy%C5%84ska,393,679,0,711,0 +43877,Kolonia+003,388,666,699269923,7003,8 +43878,AAA,561,310,1006847,5794,0 +43879,S013,683,597,8428196,7389,0 +43880,XXXX,566,302,849054951,10132,8 +43881,Komandos+p%C3%B3%C5%BAniej,634,661,7976264,10322,0 +43882,%5B0104%5D,441,304,8630972,10495,0 +43883,027,675,385,698635863,9458,0 +43884,wioska,636,344,9291984,5997,0 +43885,EO+EO,292,523,699697558,10252,0 +43886,%23%23%23031%23%23%23,592,688,698285444,10495,0 +43887,005.+Soundscape,708,511,254937,9790,2 +43888,Wioska+barbarzy%C5%84ska,621,336,0,1583,0 +43889,%23%23%23032%23%23%23,589,685,698285444,10495,0 +43890,%2A206%2A,335,384,699273451,10211,0 +43891,103,310,566,849098688,4203,0 +43892,SZYBKA+ZMY%C5%81KA,629,656,699872616,8521,0 +43893,O043,342,622,272173,9870,0 +43894,014+G%C3%B3rki-O-G%C3%B3rki,661,631,849100994,8165,0 +43895,%3F%3F%3F%3F,474,293,698489071,6571,0 +43897,bucksbarzy%C5%84skamiiiru,329,390,848955783,6328,0 +43898,014+Wioska+barbarzy%C5%84ska,604,681,699346280,10160,0 +43899,Wyspa,380,662,698769107,2572,0 +43900,018,708,510,699150527,8217,0 +43901,Ba%C5%82uty,586,681,849100612,7013,0 +43902,%5B178%5D,678,604,8000875,6275,0 +43903,Wioska+barbarzy%C5%84ska,591,313,1767876,2404,0 +43904,BRICKLEBERRY,556,307,699072129,3286,0 +43905,ZOSTAJE,542,703,9016560,8669,0 +43906,Jan+Ost+skrajny+III,705,442,879782,5625,0 +43907,bucksbarzy%C5%84skamiiiru,326,389,848955783,5738,0 +43908,0319,562,698,698659980,8579,0 +43909,Wioska+barbarzy%C5%84ska,332,375,849027025,2634,0 +43910,%23%23%23089%23%23%23,597,678,698285444,10495,0 +43911,Rossberg,372,660,849100352,4619,0 +43912,Suppi,317,418,699856962,9549,5 +43913,So%C5%82tys+Wsi+Maciekp011,353,354,849027025,9761,0 +43914,TARAN,547,691,7860453,9579,0 +43915,Wioska+barbarzy%C5%84ska,697,562,8742874,3741,0 +43916,Zaplecze+Barba+024,366,343,699796330,6099,0 +43917,010,649,362,849086491,3900,0 +43918,024,302,565,849098688,10160,0 +43919,024,303,562,9280477,7751,0 +43920,bucksbarzy%C5%84skamiiiru,329,386,848955783,10130,1 +43921,1+LESTAT+SKI,346,355,6315553,5486,0 +43922,S006,681,596,8428196,7128,0 +43923,Wied%C5%BAma+-+Z+003,304,439,9239515,6210,0 +43924,Wioska+Zorro+010,678,590,849080702,6443,0 +43925,Wioska+barbarzy%C5%84ska,374,665,699269923,8717,0 +43926,Wioska+barbarzy%C5%84ska,538,704,8980651,5184,0 +43927,KR%C3%93L+PAPI+WIELKI,662,624,698191218,10000,0 +43928,ZzZzZ+Sylwek3,695,573,699778867,6939,0 +43929,Psycho+to+Marka%2C+Narka+%21,302,570,849040142,4629,0 +43930,C.028,705,482,9188016,4885,0 +43931,KR%C3%93L+PAPI+WIELKI,656,629,698191218,10000,0 +43932,Wioska+barbarzy%C5%84ska,592,311,828637,9276,0 +43933,Hope,672,380,1086351,4403,0 +43934,TWIERDZA+.%3A068%3A.,687,580,7154207,8133,0 +43935,001,586,314,1767876,10220,0 +43936,022+NAWRA,668,611,849048867,4486,0 +43937,TWIERDZA+.%3A077%3A.,685,579,7154207,9962,0 +43938,WB14,309,416,356642,4189,0 +43939,Komson,364,340,849027025,9761,0 +43940,KR%C3%93L+PAPI+WIELKI,653,631,698191218,10000,0 +43941,MojeDnoToWaszSzczyt,508,292,9299539,9967,0 +43942,EO+EO,298,520,699697558,8923,0 +43943,Taran,329,610,6180190,9955,0 +43944,%3F%3F%3F,483,301,698489071,10503,0 +43945,028,670,382,698635863,9622,0 +43946,077,395,681,849099876,9629,0 +43947,%23012.+Dance+With+My+Hands,435,690,848896948,9819,6 +43948,Kaborno,560,695,7581876,5636,0 +43949,008a,306,424,8259895,4459,0 +43951,Wioska+barbarzy%C5%84ska,382,672,699269923,9577,0 +43952,C0208,297,530,8841266,10188,0 +43953,Wioska+barbarzy%C5%84ska,356,348,849027025,5959,0 +43954,z+fryzjer81,348,361,3909522,8270,0 +43956,bucksbarzy%C5%84skamiiiru,327,385,848955783,2357,0 +43957,Mniejsze+z%C5%82o+0053,439,308,699794765,7664,0 +43959,KR%C3%93L+PAPI+WIELKI,663,621,698191218,10000,0 +43960,091+invidia,522,707,849093426,9256,0 +43961,Jan+May+City+K,692,433,879782,10533,0 +43962,XDX,611,332,699098531,9047,0 +43963,101,308,568,699736959,4238,0 +43964,263...Kaban,463,295,6920960,4331,0 +43965,DALEKO,529,703,699827112,9824,0 +43966,marmag81%2F0333,301,468,1096254,6422,0 +43967,Wioska,550,706,7860453,6359,0 +43968,002,294,537,848886200,5343,0 +43969,11.+Sodden,704,545,8976313,9477,0 +43970,KONFA+TO+MARKA%2C+NARKA,297,449,698152377,10291,0 +43972,0582,575,693,698659980,9129,0 +43974,O013,340,636,272173,9956,0 +43976,AAA,551,300,1006847,8282,0 +43977,001,438,301,699562874,8908,2 +43978,D014,557,300,699299123,4844,0 +43979,011,702,505,7418168,10019,0 +43980,A18,695,546,848995478,2687,0 +43981,Wioska+barbarzy%C5%84ska,575,312,828637,10495,0 +43983,Portland,510,299,699208929,4389,0 +43984,%230218+Segadorr+dar,454,303,1238300,10178,0 +43985,aaaa,389,673,6948793,9899,0 +43986,Wioska+barbarzy%C5%84ska+005,561,699,6870350,8464,0 +43987,052,637,348,849010255,4121,0 +43988,Wioska+barbarzy%C5%84ska+%28noomouse%29,381,665,698769107,2903,0 +43989,Domi+4,700,475,849002796,8986,0 +43991,140,396,683,849099876,10495,0 +43992,bucksbarzy%C5%84skamiiiru,326,397,848955783,5623,0 +43993,Wioska+barbarzy%C5%84ska,371,655,699269923,9666,0 +43994,0044+Qukaku.,457,698,849037407,10292,5 +43995,FP022,481,709,699605333,10201,0 +43996,Wioska+barbarzy%C5%84ska,692,435,1715091,6158,0 +43997,0035+Kasko14,448,697,849037407,10066,0 +43998,027,700,456,849031818,4530,0 +43999,Wioska+barbarzy%C5%84ska,578,315,828637,10474,0 +44000,Taran,325,612,6180190,9959,0 +44001,-+270+-+SS,556,700,849018239,6810,0 +44002,Szlachcic,616,473,698867446,9902,0 +44003,W22,685,417,699524362,2486,0 +44004,Wioska+barbarzy%C5%84ska,681,411,699598425,6935,0 +44005,Wioska+barbarzy%C5%84ska,338,375,7462660,5403,0 +44006,018.+Rembert%C3%B3w,702,475,7494497,10559,0 +44007,a+mo%C5%BCe+off+%3F+%3A%29,677,398,698768565,5895,0 +44008,002,645,652,849101148,8237,0 +44009,KR%C3%93L+PAPI+WIELKI,657,638,698191218,10000,0 +44010,008,422,686,849099876,10495,0 +44011,P%C3%B3%C5%82nocny+Bagdad,617,328,8847546,10311,0 +44012,Wioska+dudus1992,681,400,849095068,1810,0 +44013,Wioska+barbarzy%C5%84ska,375,664,699269923,8214,0 +44014,104+invidia,511,709,849093426,9809,0 +44015,XDX,594,314,699098531,5667,0 +44016,0006,354,356,699644448,4864,0 +44017,203,429,303,8630972,9816,0 +44019,Wioska+barbarzy%C5%84ska,699,525,7047342,10749,0 +44020,027,306,564,849098688,10160,5 +44022,Wioska+barbarzy%C5%84ska,326,599,7183372,8028,0 +44023,Wioska+barbarzy%C5%84ska,582,310,828637,11321,0 +44024,KR%C3%93L+PAPI+WIELKI,654,629,698191218,10000,0 +44025,MojeDnoToWaszSzczyt,491,296,9299539,9703,0 +44026,psycha+sitting,411,680,699736927,10311,0 +44027,ZZZZZ,659,629,698191218,10000,8 +44028,wioska,636,346,9291984,12154,0 +44029,O128,328,619,272173,8912,0 +44030,New+World,430,698,698152377,10295,0 +44031,Wioska+barbarzy%C5%84ska,375,665,699269923,9304,0 +44032,0084,683,397,698416970,9139,0 +44033,047.Stradi,427,306,698365960,10495,0 +44034,Z+0003+Wioska,348,358,3909522,10208,0 +44035,EO+EO,289,522,699697558,10636,0 +44036,011,696,559,301602,3276,0 +44037,030+Wioska+barbarzy%C5%84ska,602,679,699346280,9566,0 +44038,Z12,315,406,356642,9835,0 +44039,Siedziba+Komornika,359,611,849014147,8889,0 +44040,B017,518,300,699208929,6643,0 +44041,Didek,686,583,849070946,2031,0 +44042,Bessa+024,637,653,848987051,10220,0 +44043,004,421,306,699694284,8615,0 +44044,K35+-+%5B037%5D+Before+Land,583,308,699088769,4551,0 +44045,C042,376,662,699383279,9651,0 +44046,aaaa,390,672,6948793,9899,6 +44047,XDX,614,334,699098531,9109,0 +44048,Kurwidolek,423,310,849100399,8301,0 +44049,021+Wioska+barbarzy%C5%84ska,602,678,699346280,9224,0 +44050,KR%C3%93L+PAPI+WIELKI,667,623,698191218,10000,0 +44051,O066,341,622,272173,9868,0 +44052,043.Stradi,437,301,698365960,10495,0 +44053,048%7C%7C+Cygnus,457,706,849035525,4230,0 +44054,010,534,289,699208929,10474,0 +44055,z+Wioska+Anko,354,361,3909522,10160,0 +44056,Wioska+barbarzy%C5%84ska,393,675,6948793,7719,0 +44057,073,396,681,849099876,10444,0 +44058,021.Stradi,429,308,698365960,10495,0 +44059,028,403,681,849099876,10495,0 +44060,Wioska+barbarzy%C5%84ska,705,512,254937,9488,0 +44061,a-9,678,610,848921861,10636,0 +44062,%23%23%23033%23%23%23,598,681,698285444,10495,0 +44063,24+barbarzy%C5%84ska..,299,445,849018442,9697,0 +44064,psycha+sitting,398,678,699736927,6573,0 +44065,Wioska+barbarzy%C5%84ska,646,357,849086491,3474,0 +44066,Taran,328,605,6180190,9956,0 +44067,TWIERDZA+.%3A016%3A.,688,582,7154207,10406,0 +44068,z+Elys1,347,360,3909522,6952,0 +44069,Wioska+barbarzy%C5%84ska,383,670,699269923,7895,0 +44070,Ursyn%C3%B3w,363,353,849099434,10035,0 +44071,%2AINTERTWINED%2A,515,708,698704189,7069,0 +44072,010.,323,599,7183372,10838,0 +44073,O145,352,647,272173,6040,0 +44074,%2136+65+Patrauti,654,365,698361257,8586,0 +44075,Wioska+barbarzy%C5%84ska,629,334,7555180,8446,0 +44076,012.+Night+Raid,493,709,699684062,9087,0 +44077,119,417,693,849099876,10252,0 +44078,007,358,350,849101205,6593,0 +44079,XDX,599,316,699098531,9143,0 +44080,023,404,685,849099876,10495,0 +44081,%2AINTERTWINED%2A%2A,510,701,698704189,9711,0 +44082,039,299,541,9280477,6130,0 +44083,S012,687,591,8428196,6389,0 +44084,064.+Nanga+Parbat,703,534,1601917,6648,0 +44086,0317,578,694,698659980,7641,0 +44087,063,634,343,849010255,9895,5 +44088,Wioska+barbarzy%C5%84ska,385,666,699269923,8199,0 +44089,Wioska+barbarzy%C5%84ska,701,555,17714,7827,0 +44092,.achim.,488,297,6936607,5598,0 +44093,FAKE+OR+OFF,406,314,698231772,9624,0 +44094,0007,358,356,699644448,4093,0 +44095,004,522,295,849088101,9972,5 +44096,025.+WiesioShowPl,689,465,7494497,10323,0 +44097,Wioska+barbarzy%C5%84ska,500,482,699098531,6040,0 +44098,C058,362,657,699383279,9949,0 +44099,KR%C3%93L+PAPI+WIELKI,652,633,698191218,9688,0 +44100,C0131,297,523,8841266,10495,0 +44101,FP007,482,702,699605333,10342,0 +44102,Burito,552,703,699443920,7266,0 +44103,008,297,547,849098688,10160,0 +44104,.achim.,487,293,6936607,9961,0 +44105,TWIERDZA+.%3A060%3A.,692,574,7154207,9432,0 +44106,Wioska+barbarzy%C5%84ska,306,554,5997814,5605,0 +44107,Wioska+barbarzy%C5%84ska,697,434,1715091,8162,0 +44108,Wioska+barbarzy%C5%84ska,374,337,3698627,10030,0 +44109,KR%C3%93L+PAPI+WIELKI,661,629,698191218,10000,0 +44110,085,409,688,849099876,10025,0 +44111,%5B058%5D+Wioska+barbarzy%C5%84ska,688,423,849095068,1739,0 +44112,027,418,685,849099876,10495,0 +44113,Wioska+barbarzy%C5%84ska,693,438,1715091,6240,0 +44114,-+260+-+SS,552,700,849018239,5396,0 +44115,Wioska+barbarzy%C5%84ska,531,300,7758085,9861,0 +44116,019.+Frutti+di+mare,331,378,849102092,3830,0 +44117,006.+Night+Raid,491,710,699684062,10003,0 +44118,%5B195%5D,678,390,8000875,7519,0 +44119,Osada+koczownik%C3%B3w,660,624,1900364,9195,4 +44120,P%C3%B3%C5%82nocny+Bagdad,611,321,8847546,9835,0 +44121,2..,645,352,849056744,2252,0 +44122,002+Wioska+barbarzy%C5%84ska,603,681,699346280,10019,0 +44123,Taran,330,608,6180190,9955,0 +44124,klops3,628,664,848909464,10319,0 +44125,z+0020+Wioska,344,368,3909522,10095,0 +44126,Z%C5%82oty+%C5%9Awit,573,308,699883079,7032,0 +44127,13+Ordowik,397,324,698231772,10040,1 +44128,New+World,429,690,698152377,10294,0 +44129,bucksbarzy%C5%84skamiiiru,332,390,848955783,2564,0 +44130,MojeDnoToWaszSzczyt,510,293,9299539,9958,0 +44131,New+World,429,693,698152377,10303,0 +44132,C0132,296,513,8841266,10495,0 +44133,034.+W%C5%82oc%C5%82awek,705,473,7494497,10273,0 +44134,133+invidia,503,704,849093426,8838,0 +44135,Wioska+dawszz2,294,529,849094688,5084,0 +44136,059,665,385,698635863,7268,0 +44138,0068+Wioska+barbarzy%C5%84ska,448,701,849037407,7109,0 +44139,D010,559,301,699299123,7007,0 +44140,O039,338,626,272173,9957,0 +44141,Wioska+X02,296,465,698701911,3891,0 +44142,Wioska+barbarzy%C5%84ska,511,296,8400975,2019,0 +44143,020,403,679,849099876,10495,0 +44144,z181_26,305,444,393668,8878,2 +44145,TUROWNIA,622,664,848909464,10319,0 +44146,029,650,357,698635863,8112,0 +44147,Rivendell,414,311,698231772,11874,0 +44148,EO+EO,296,499,699697558,8142,0 +44149,03.+Mediolan,705,534,848946700,10495,0 +44150,Genowefa,528,703,6116940,5264,0 +44151,Osada+koczownik%C3%B3w,358,345,849027025,9351,4 +44152,FAKE+OR+OFF,412,318,698231772,9828,0 +44153,069.+Wioska+barbarzy%C5%84ska,700,463,7494497,8443,0 +44154,A%23029,710,513,2065730,9797,0 +44155,Wioska+barbarzy%C5%84ska,334,375,849027025,3810,0 +44156,AAA,551,303,1006847,8699,0 +44157,Dream+on,295,492,698962117,9489,0 +44158,O085,337,624,272173,9814,0 +44159,O007,341,635,272173,9955,0 +44160,psycha+sitting,417,682,699736927,10178,0 +44161,Wioska+barbarzy%C5%84ska,508,703,698704189,6195,0 +44162,TUROWNIA,621,665,848909464,10319,0 +44163,...07+am,669,615,848921861,9632,0 +44164,Wioska+barbarzy%C5%84ska,394,674,6948793,6485,0 +44165,037.+Wioska+barbarzy%C5%84ska,704,476,7494497,9761,0 +44166,C0206,296,526,8841266,9395,0 +44167,006+ZO,528,294,699208929,10209,0 +44168,Dream+on,296,489,698962117,9486,0 +44169,205,429,306,8630972,8236,0 +44170,Wioska+barbarzy%C5%84ska,666,387,699491076,3047,0 +44171,Melon6,310,432,699659708,3610,0 +44172,O017,339,634,272173,9955,0 +44173,020.,623,669,699695167,5922,0 +44174,Wioska+09,690,591,849101162,5362,0 +44175,psycha+sitting,426,655,699736927,9623,0 +44176,Wioska+barbarzy%C5%84ska,380,667,699730998,1865,0 +44177,%3F%3F%3F%3F,487,291,698489071,6675,0 +44178,Osada+koczownik%C3%B3w,387,329,699660539,9968,6 +44179,033.+bbbarteqqq,699,466,7494497,10495,0 +44180,Wioska+barbarzy%C5%84ska,636,337,849005829,2894,0 +44181,Taran,329,615,6180190,9959,0 +44182,023,301,563,849098688,9835,0 +44183,CALL+1073,656,631,699784536,10311,0 +44184,KR%C3%93L+PAPI+WIELKI,654,630,698191218,10000,0 +44185,Wioska+barbarzy%C5%84ska,344,365,7462660,10000,0 +44186,Bessa+025,634,659,848987051,10226,0 +44187,%3D0011%3D,401,318,698231772,10146,0 +44188,Psycho+to+Marka%2C+Narka+%21,306,574,849040142,3233,0 +44189,G%C3%B3rnik+3+zydzew+0+%3B%29,603,573,8742874,9746,0 +44190,New+World,431,694,698152377,10303,0 +44191,Wioska+barbarzy%C5%84ska,697,440,1715091,9750,0 +44192,KR%C3%93L+PAPI+WIELKI,665,628,698191218,10000,0 +44193,Wioska+barbarzy%C5%84ska,629,661,848909464,8827,0 +44194,Parking,616,667,6528152,6688,0 +44195,222,423,304,698365960,5422,0 +44196,Wied%C5%BAma+-+Z+015,306,434,9239515,3049,0 +44197,O090,340,628,272173,9814,0 +44198,004,301,531,848886200,4271,0 +44199,185...L,394,319,6920960,5248,0 +44200,Dzik+9,303,439,8366045,9019,1 +44201,%23%23%23090%23%23%23,599,679,698285444,10495,0 +44202,Elo+Elo+10,306,575,699016994,5244,0 +44203,So%C5%82tys+Twojej+Wsi,359,345,849027025,9644,0 +44205,Wioska+barbarzy%C5%84ska,646,355,849086491,2090,0 +44206,O019,340,630,272173,9956,0 +44207,bucksbarzy%C5%84skamiiiru,329,395,848955783,10971,0 +44208,Wioska+barbarzy%C5%84ska,684,408,699598425,7057,0 +44209,11.+Grubo+by%C5%82o+ale+si%C4%99+sko%C5%84czy%C5%82o,557,299,849054951,10011,0 +44210,0101,705,500,699429153,10301,0 +44211,001+VLV,558,307,849026145,4414,0 +44212,O089,339,627,272173,9814,0 +44213,TWIERDZA+.%3A049%3A.,695,576,7154207,7851,0 +44214,bucksbarzy%C5%84skamiiiru,330,393,848955783,9732,0 +44215,257...Emerson,464,302,6920960,11312,0 +44216,STREFA+GAZY+%7C+004,706,474,9228039,9544,0 +44217,010,641,346,9291984,8166,0 +44218,Osada+koczownik%C3%B3w,660,621,1900364,8202,9 +44219,008+VWF+Wioska+barbarzy%C5%84ska,306,429,3108144,8998,0 +44220,035,454,302,2502956,10019,0 +44221,bucksbarzy%C5%84skamiiiru,321,399,848955783,10971,3 +44222,Dream+on,297,482,698962117,8289,0 +44223,10-oss,672,612,848921861,7005,0 +44224,Wioska+barbarzy%C5%84ska,643,350,1715091,2916,0 +44225,KR%C3%93L+PAPI+WIELKI,662,630,698191218,10000,0 +44227,MojeDnoToWaszSzczyt,503,292,9299539,9964,0 +44228,R+035+%7ETristram%7E,496,709,699195358,9602,0 +44230,Wioska+tyroschijska,699,438,848976034,9587,0 +44231,001,300,551,849098688,10795,0 +44232,KR%C3%93L+PAPI+WIELKI,669,624,698191218,10000,0 +44233,002,383,672,699269923,7350,0 +44234,O022,336,630,272173,9907,0 +44235,K34+x035,446,365,698364331,7049,0 +44236,001,304,549,849098628,12154,0 +44237,%3D0002%3D,401,316,698231772,9863,6 +44238,idziemy+dalej,533,711,6116940,9507,0 +44239,Wioska+barbarzy%C5%84ska,682,395,698768565,6836,0 +44240,Obrze%C5%BCe,577,694,7589468,8817,0 +44241,KR%C3%93L+PAPI+WIELKI,656,628,698191218,10000,0 +44242,Elo+Elo+16,305,575,699016994,4980,0 +44243,P%C3%B3%C5%82nocny+Bagdad,618,329,8847546,9835,0 +44244,Wioska+barbarzy%C5%84ska,355,349,849027025,6589,0 +44245,009+VWF+Wioska+razav,311,427,3108144,7828,0 +44247,030,674,389,698635863,9554,0 +44248,Darma+dla+zawodnika,321,597,6180190,3957,0 +44249,C0215,296,533,8841266,10261,0 +44250,New+World,431,695,698152377,10295,0 +44251,Wyspa,380,661,698769107,2706,0 +44252,KR%C3%93L+PAPI+WIELKI,664,626,698191218,10000,0 +44253,Wioska001,384,328,699660539,5254,0 +44254,Wioska+barbarzy%C5%84ska,459,697,8966820,8585,0 +44255,Wioska+barbarzy%C5%84ska,389,675,6948793,7701,0 +44256,B08,468,702,698652014,9670,0 +44257,0364,570,690,698659980,9622,0 +44258,EO+EO,290,500,699697558,9203,0 +44259,HAPERT,626,663,848909464,10319,0 +44260,019+Wioska+barbarzy%C5%84ska,601,678,699346280,10160,0 +44261,057+invidia,548,703,849093426,6168,0 +44262,Darma+dla+zawodnika,321,595,6180190,7020,0 +44263,Osada+koczownik%C3%B3w,344,364,7462660,10160,4 +44264,Wygwizdowa+009,638,651,698562644,6129,0 +44265,C.06+a+panicz+to+dok%C4%85d%3F,552,298,849026145,6967,0 +44266,FAKE+OR+OFF,404,315,698231772,9713,0 +44267,0029+Kasko14,446,693,849037407,9771,0 +44268,%2136+66+Horodnic+de+Sus,660,365,698361257,9347,0 +44269,Florencja,547,703,698723158,7042,0 +44270,Wioska+klez+022,309,565,698295651,3308,0 +44271,Grazula,681,396,699738350,9649,0 +44272,%23%23%23034%23%23%23,595,688,698285444,10495,0 +44273,009,700,491,942959,6030,0 +44274,psycha+sitting,397,673,699736927,6852,0 +44275,D012,354,640,272173,9818,0 +44276,Wioska+barbarzy%C5%84ska,386,670,6948793,3003,0 +44277,AAA,544,300,1006847,3660,0 +44278,Wioska+barbarzy%C5%84ska,412,310,698231772,4473,0 +44280,Wioska+barbarzy%C5%84ska,329,617,6180190,8361,0 +44281,Kagusiowo+8,300,440,849101268,4131,0 +44282,016,530,296,7758085,6713,0 +44283,New+World,428,692,698152377,10295,0 +44284,C.02+a+panicz+to+dok%C4%85d%3F,555,298,849026145,6554,0 +44285,AAA,551,296,1006847,8881,0 +44287,C0101,300,518,8841266,10252,0 +44288,XXXX,563,298,849054951,10068,0 +44289,New+World,436,692,698152377,10295,0 +44290,%3F%3F%3F,486,309,698489071,6105,0 +44291,Wioska+barbarzy%C5%84ska,705,531,848946700,4305,0 +44292,Daleko,565,305,849098136,9243,0 +44293,%3F%3F%3F%3F,488,293,698489071,6654,0 +44294,-+235+-+SS,536,685,849018239,8829,0 +44295,033+Wioska+barbarzy%C5%84ska,602,682,699346280,10160,0 +44296,C.017,708,482,9188016,4775,0 +44297,025%23+Samantha,449,698,3933666,5636,0 +44298,KR%C3%93L+PAPI+WIELKI,656,637,698191218,7434,0 +44299,0032+Kasko14,450,696,849037407,10000,0 +44300,Wioska+Koticzak,346,356,699841959,3627,0 +44301,164,416,693,849099876,9279,0 +44302,Taran,330,611,6180190,9955,0 +44303,tomek016+II,690,567,8811880,977,0 +44304,Wioska+barbarzy%C5%84ska,535,301,698350371,3061,0 +44305,%2136+66+Gura+Humorului,663,369,698361257,9860,0 +44306,Architekci+Plac%C3%B3w+Boju,344,549,8004076,9880,0 +44307,006,297,551,849098688,10068,0 +44308,bucksbarzy%C5%84skamiiiru,327,397,848955783,6954,0 +44309,Szlachcic%3ATaran,615,325,698241117,8036,0 +44310,Wioska+barbarzy%C5%84ska,562,699,6870350,9491,0 +44311,001,410,684,849099876,10495,0 +44314,wioska,631,340,849102068,4108,0 +44315,Wygwizdowa+010,627,656,698562644,6190,0 +44316,071.,314,582,3475079,2901,0 +44317,Wioska+barbarzy%C5%84ska,692,586,7154207,2672,0 +44319,C011,371,667,699383279,9845,0 +44320,Wioska+barbarzy%C5%84ska,704,523,1895081,3562,0 +44321,O018,337,630,272173,9956,0 +44322,TWIERDZA+.%3A055%3A.,686,575,7154207,8633,0 +44323,Wioska+Frejas933,303,553,5997814,8974,0 +44325,080,394,682,849099876,9643,0 +44326,Psycho+to+Marka%2C+Narka+%21,315,579,849040142,8558,8 +44327,bucksbarzy%C5%84skamiiiru,331,388,848955783,6442,0 +44328,Argonowy+gr%C3%B3d,315,419,699377401,5048,0 +44329,%5B0225%5D+xxx,290,506,8630972,6531,0 +44330,Wyspa_52,497,701,2585846,5595,0 +44331,030,643,348,9148043,2932,0 +44333,Wioska+barbarzy%C5%84ska,336,377,7462660,3228,0 +44334,005%3AWioska+Florson1916,377,334,8772425,10139,0 +44336,Wioska+bravoska,700,439,848976034,2820,0 +44337,Wioska+barbarzy%C5%84ska,580,309,828637,10474,0 +44338,Bessa+026,635,653,848987051,10284,0 +44339,%5B0173%5D,289,493,8630972,9181,0 +44340,Z.08,696,576,699737356,4071,0 +44341,.achim.,483,293,6936607,7576,7 +44342,bucksbarzy%C5%84skamiiiru,334,380,848955783,10971,0 +44343,Wioska+barbarzy%C5%84ska,709,490,699429153,6393,0 +44344,Wioska+23,680,592,849101162,1955,0 +44345,016,708,508,699150527,9486,0 +44346,Wioska+barbarzy%C5%84ska,585,318,828637,10291,0 +44347,.achim.,478,290,6936607,7278,0 +44348,022.Stradi,426,306,698365960,10495,0 +44349,bucksbarzy%C5%84skamiiiru,334,381,848955783,2803,0 +44350,Wyspa_50,499,701,2585846,9638,0 +44351,Winterhome.002,500,295,848918380,10178,6 +44352,060,615,586,698786826,9120,0 +44353,%2136+66+Voronet,661,366,698361257,9600,0 +44354,D.029,382,663,849088243,3318,0 +44355,201,369,662,699269923,9036,0 +44356,%3F%3F%3F%3F,489,291,698489071,9692,0 +44357,017Moment,457,703,698620694,3785,0 +44358,AAA,544,296,1006847,6618,0 +44359,AAA,322,604,6180190,10055,0 +44360,002,408,689,849099876,10495,0 +44361,Wioska+barbarzy%C5%84ska,331,620,272173,5830,0 +44362,AlaKlaudia3,382,326,848966521,3787,0 +44363,psycha+sitting,400,676,699736927,9380,0 +44364,Wioska+brabarzy%C5%84c%C3%B3w,673,602,8224678,7419,0 +44365,0337,561,696,698659980,9388,0 +44366,%2A023,667,371,7758085,9861,0 +44367,0148,389,679,7085510,4519,0 +44368,066.+hehehe4,703,457,7494497,10247,0 +44369,O054,336,626,272173,9871,0 +44370,Taran,327,604,6180190,10167,0 +44371,027%23+Jadzia,450,701,3933666,1916,0 +44372,004,699,558,301602,7930,0 +44373,TWIERDZA+.%3A074%3A.,685,587,7154207,8957,0 +44374,KR%C3%93L+PAPI+WIELKI,662,633,698191218,10000,0 +44375,Wioska+barbarzy%C5%84ska,345,366,7462660,10085,0 +44376,-+278+-+SS,552,702,849018239,7251,0 +44377,ZZ02,310,410,356642,9633,0 +44378,KONFA+TO+MARKA%2C+NARKA,298,456,698152377,10292,3 +44379,O125,333,621,272173,9835,0 +44380,Wioska+barbarzy%C5%84ska,293,516,849101647,3649,0 +44381,007,529,293,699208929,10242,0 +44382,008,711,526,7085502,9726,0 +44383,0021,396,318,2321390,4176,0 +44384,Wioska+barbarzy%C5%84ska,474,298,699191455,2955,0 +44385,a+mo%C5%BCe+off+%3F+%3A%29,678,399,698768565,4927,0 +44386,Wioska+barbarzy%C5%84ska,651,358,0,2423,0 +44388,Taran,314,598,6180190,5858,0 +44389,KR%C3%93L+PAPI+WIELKI,664,622,698191218,10000,0 +44390,EO+EO,302,523,699697558,10083,0 +44391,...01+am,673,613,848921861,10495,0 +44392,Dream+on,297,493,698962117,9497,0 +44393,Zaplecze+Barba+018,373,341,699796330,7709,0 +44394,%5B0210%5D,298,497,8630972,7538,0 +44395,Sahara,371,345,849068108,5366,0 +44396,O012,341,634,272173,9956,0 +44397,070.+Wioska+barbarzy%C5%84ska,699,462,7494497,8376,0 +44399,A+053,361,647,6948793,10311,0 +44401,Wioska+barbarzy%C5%84ska,295,524,7530708,3630,0 +44402,psycha+sitting,408,679,699736927,4208,0 +44403,Ranczo3,303,450,699706955,7071,0 +44404,011,342,386,848945529,1462,0 +44405,S004,683,590,8428196,7619,0 +44406,Na+SsSskraju,300,557,1536625,10503,0 +44407,Peuro+Bello,519,296,3298902,9670,0 +44408,004,644,653,849101148,8666,0 +44410,042.Stradi,438,300,698365960,10495,0 +44411,MojeDnoToWaszSzczyt,494,295,9299539,9724,0 +44412,EO+EO,294,521,699697558,10019,0 +44413,14.+Aedirn,705,550,8976313,10061,0 +44414,Beauclair,340,369,7462660,10068,0 +44415,Wioska+barbarzy%C5%84ska,620,663,6818593,4400,0 +44416,bucksbarzy%C5%84skamiiiru,328,395,848955783,6453,0 +44417,AAA,546,297,1006847,7320,0 +44418,-+176+-+SS,558,687,849018239,8328,0 +44419,EO+EO,291,525,699697558,7629,0 +44420,024%23+Agnes,483,700,3933666,4175,0 +44421,060,637,340,849010255,3699,0 +44422,C030,375,660,699383279,10065,0 +44423,MojeDnoToWaszSzczyt,493,289,9299539,9960,0 +44424,Dream+on,299,484,698962117,9615,0 +44425,-+251+-+SS,551,694,849018239,3837,0 +44426,Wioska+barbarzy%C5%84ska,702,513,699785935,8085,0 +44428,KR%C3%93L+PAPI+WIELKI,663,633,698191218,10000,0 +44430,0365,567,698,698659980,7977,0 +44431,New+WorldA,290,522,849084005,6865,0 +44432,0010+Wioska+barbarzy%C5%84ska,443,694,849037407,10069,0 +44433,bucksbarzy%C5%84skamiiiru,326,392,848955783,6649,0 +44434,%3F%3F%3F%3F,489,292,698489071,6728,0 +44435,Aladin,684,403,699785935,10252,0 +44436,Wioska+barbarzy%C5%84ska,705,525,699150527,6940,0 +44437,EO+EO,295,498,699697558,9834,0 +44438,komandos,630,658,7976264,10311,0 +44439,Na+Kra%C5%84cu+%C5%9Awiata+016,639,344,9291984,4281,0 +44440,124+invidia,501,709,849093426,9012,0 +44441,078+invidia,508,709,849093426,8605,0 +44442,008.+Verdure,326,382,849102092,8563,0 +44443,Wioska+barbarzy%C5%84ska,710,495,699429153,9994,0 +44444,C101,357,652,699383279,7586,2 +44445,0116,710,498,699429153,9889,0 +44446,Szlachcic,368,348,698388578,5102,0 +44447,15.B2ST,686,416,9180206,8891,0 +44449,034,304,563,9280477,6112,0 +44450,0001,356,356,699644448,9068,0 +44451,Sernik+z+Andzynkami,711,505,699126484,9349,0 +44452,Osada+koczownik%C3%B3w,623,668,848909464,10319,3 +44453,SI%C5%81OWNIA,383,675,849097837,2680,0 +44454,Wioska+barbarzy%C5%84ska,304,552,5997814,9062,0 +44455,XDX,606,323,699098531,10290,0 +44456,Wioska+barbarzy%C5%84ska,571,698,7756002,8601,0 +44457,ZA15,313,414,356642,9835,0 +44458,Wioska+barbarzy%C5%84ska,537,705,8980651,9183,0 +44459,004+VLV,557,303,849100656,10745,0 +44460,Taran,320,601,6180190,9167,0 +44461,Wioska+barbarzy%C5%84ska,698,441,699524891,7259,0 +44462,XXXX,562,303,849054951,10068,0 +44463,008d,307,426,8259895,4265,0 +44464,P%C3%B3%C5%82nocny+Bagdad,619,327,8847546,9835,0 +44465,Taran,327,614,6180190,9960,0 +44466,rek16%2F02.1215,681,609,3986807,4861,0 +44467,Wioska+dawszz,293,530,849094688,10386,0 +44468,%5B0155%5D,440,301,8630972,8852,0 +44469,107+invidia,509,703,849093426,10495,0 +44470,089,707,515,7085502,7467,0 +44471,0086,679,392,698416970,4279,0 +44472,011.+Maeldun,389,332,699660539,9888,0 +44473,272...gulden,455,299,6920960,5874,0 +44474,Shisha+Pangma,380,485,699265922,9752,0 +44475,256...Kaban1998,460,296,6920960,8286,0 +44476,151,401,686,849099876,4584,0 +44477,C05,704,453,849093742,6450,0 +44478,FARKA,583,314,828637,10346,9 +44479,034+Wioska+barbarzy%C5%84ska,614,674,699346280,9566,0 +44480,New+World,427,687,698152377,10291,0 +44481,Wioska+barbarzy%C5%84ska,454,698,698178312,2868,0 +44482,TWIERDZA+.%3A070%3A.,694,573,7154207,8768,0 +44483,014,411,684,849099876,10495,0 +44484,C066,358,652,699383279,10202,0 +44486,Wioska+barbarzy%C5%84ska,391,676,6948793,7545,0 +44487,Babilons,680,397,699738350,9828,0 +44489,09.+Kozio%C5%82ki,473,709,849092769,6058,0 +44491,Zaplecze+Barba+4,370,339,699796330,9745,0 +44492,B013,623,332,8740199,3002,0 +44493,Kurnik,484,708,699603116,9860,0 +44494,021.,627,667,699695167,4789,0 +44495,XDX,602,317,699098531,9623,0 +44496,Wioska+barbarzy%C5%84ska,687,407,699598425,5980,0 +44497,a-6,679,610,848921861,8730,0 +44498,Dzik+6,300,438,8366045,8000,0 +44499,004.+Night+Raid,491,707,699684062,9541,0 +44500,New+World,426,692,698152377,10295,0 +44501,North+006,502,290,849064752,10311,0 +44502,Gehenna,689,406,699785935,10019,0 +44503,0002+Wioska+barbarzy%C5%84ska,442,696,849037407,10476,0 +44504,K35+-+%5B027%5D+Before+Land,574,320,699088769,10259,0 +44505,0071,366,340,848913037,5022,0 +44507,Taran,683,402,699598425,10728,0 +44508,XDX,607,323,699098531,9878,0 +44509,%23%23%23035%23%23%23,588,686,698285444,10495,0 +44510,017+ZO,530,295,699208929,5964,0 +44511,Taran,319,603,6180190,9835,0 +44512,FP013,482,701,699605333,9218,0 +44513,New+World,435,692,698152377,10297,0 +44514,193...segador,439,300,6920960,10654,0 +44515,Ranczo4,301,451,699706955,4267,0 +44516,7.62+mm,485,426,699777234,10019,0 +44518,%23K66+0012,606,675,699728159,5186,0 +44519,%3D030%3D+Owca+Tu+by%C5%82a,703,565,3781794,10580,0 +44520,Mniejsze+z%C5%82o+0089,321,389,699794765,6075,0 +44522,%2AINTERTWINED%2A,509,707,698704189,6499,0 +44523,A%23015,711,509,2065730,9797,0 +44524,%2AINTERTWINED%2A,507,707,698704189,5883,0 +44525,C0089,297,513,8841266,10252,7 +44526,O040,332,627,272173,10109,0 +44527,Wioska+barbarzy%C5%84ska,318,600,6180190,3990,0 +44528,WS+05,698,436,699524891,9835,0 +44529,Wioska+volante%C5%84ska,699,439,848976034,3933,0 +44530,Wioska+InnosensQ,365,659,849020212,26,0 +44531,067,406,685,849099876,10495,0 +44532,002,300,544,9280477,10040,0 +44533,001,299,544,9280477,10160,0 +44534,Wioska+barbarzy%C5%84ska,676,391,698768565,5274,0 +44535,z+0001+Wioska,349,360,3909522,10279,0 +44536,C0205,299,530,8841266,7890,0 +44537,Wioska+barbarzy%C5%84ska,554,697,7581876,6648,0 +44538,FENDI,306,433,699794765,2108,0 +44539,0055+Wioska+paul,447,699,849037407,5462,0 +44540,019+zamro%C5%BCony,513,709,849093426,10237,0 +44541,Tebowizna,463,296,849101116,3873,0 +44542,KONFA+TO+MARKA%2C+NARKA,303,458,698152377,10291,9 +44543,Wioska+barbarzy%C5%84ska,704,444,699524891,7209,0 +44544,3.+Wysypisko+%C5%BBycia,386,326,699660539,10479,0 +44545,%3D0008%3D,402,322,698231772,9828,0 +44546,C061,362,656,699383279,10047,0 +44547,A02,696,557,848995478,4526,0 +44548,WS+04,700,437,699524891,9571,0 +44549,C0224,298,545,8841266,5039,0 +44550,Wioska+barbarzy%C5%84ska,373,334,3698627,9825,0 +44551,%2AW005,665,379,7758085,9899,5 +44552,%2AW001,665,377,7758085,9861,0 +44553,016,397,682,849099876,10495,0 +44554,K34+-+%5B152%5D+Before+Land,464,301,699088769,7647,0 +44555,Wroc%C5%82aw+003,579,689,699176234,9643,6 +44556,Wioska+Najemnik+full+light,706,527,1895081,8239,0 +44557,024+koniec+%C5%9Bwiata,617,673,849093426,10237,0 +44558,O123,330,622,272173,7605,6 +44559,Wioska+barbarzy%C5%84ska,590,311,828637,10401,0 +44560,0090,679,394,698416970,7433,0 +44561,B%C5%82aziny+G%C3%B3rne,573,698,698723158,10393,0 +44562,Wioska+barbarzy%C5%84ska,336,370,849027025,4341,0 +44563,Taran,326,609,6180190,9956,0 +44564,%5B044%5D,600,537,848985692,10394,0 +44565,Wioska+barbarzy%C5%84skan,701,462,849098769,3964,0 +44566,032,706,518,699150527,6214,0 +44567,KR%C3%93L+PAPI+WIELKI,709,523,698191218,8029,0 +44568,AAA,540,303,1006847,10311,1 +44570,143,398,683,849099876,9691,0 +44571,015+Wioska+barbarzy%C5%84ska,605,682,699346280,10160,0 +44572,Arczi997+04,296,515,849055181,2221,0 +44573,New+World,425,690,698152377,10294,0 +44574,FP005,495,703,699605333,9568,0 +44575,030+invidia,513,702,849093426,10237,0 +44576,Sernik+z+Andzynkami,701,488,699126484,9938,0 +44577,015,396,327,8153941,6672,0 +44578,chata+Toma,380,503,699265922,9761,0 +44579,O044,340,624,272173,9873,0 +44580,0043+Qukaqu,446,698,849037407,10476,0 +44581,061-Mroczna+Osada,653,360,849035905,2414,0 +44582,0086,364,339,848913037,5787,0 +44583,TWIERDZA+.%3A063%3A.,696,570,7154207,10032,0 +44584,Wioska+andrux,380,404,6186491,7715,0 +44585,Zapce%C5%84,462,294,699191455,6061,0 +44587,Wioska+barbarzy%C5%84ska,573,690,7756002,8568,0 +44588,019+G%C3%B3rrki+Ze-Zbi%C3%B3rki,648,647,849100994,6960,0 +44589,033,403,680,849099876,10495,0 +44590,048.Stradi,439,305,698365960,10495,0 +44591,Wioska+barbarzy%C5%84ska,567,304,828637,10068,0 +44592,O136,351,645,272173,6330,0 +44593,%2AINTERTWINED%2A,506,703,698704189,6232,0 +44594,003,645,653,849101148,8273,0 +44595,Wioska+X07,296,461,698701911,2460,0 +44596,Wioska+barbarzy%C5%84ska,697,540,848946700,5387,0 +44597,A07,702,554,848995478,11130,0 +44598,C054,373,659,699383279,6971,0 +44599,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,494,706,8980651,9883,0 +44600,S007,679,597,8428196,8225,0 +44601,248...Gulden,457,299,6920960,7746,0 +44602,Wioska+barbarzy%C5%84ska,708,486,699429153,6977,0 +44604,Koziarowo+2,502,297,849100228,9692,0 +44605,bucksbarzy%C5%84skamiiiru,324,400,848955783,10971,0 +44607,KR%C3%93L+PAPI+WIELKI,650,641,698191218,10159,6 +44608,Wioska+barbarzy%C5%84ska,686,410,699598425,6660,0 +44609,%23%23%23091%23%23%23,583,692,698285444,10495,0 +44610,%3D084%3D+Oraibi,700,570,3781794,7626,0 +44611,Zagroda4,603,675,6528152,8783,0 +44612,A%23008,709,494,2065730,9797,0 +44613,AAA,552,300,1006847,8698,0 +44616,Gattacka,691,432,699298370,9443,7 +44617,079.,458,700,849034882,9918,0 +44618,New+World,427,697,698152377,10306,0 +44619,013,348,643,698908184,7547,0 +44621,000+Plutosea,312,575,9280477,9976,0 +44622,Sernik+z+Andzynkami,710,504,699126484,8410,0 +44623,12.Kovir,707,539,8976313,9905,0 +44624,Wow14,361,349,849027025,4639,0 +44625,03.+Nilfgaard,701,539,8976313,9828,0 +44626,050.,439,702,699827112,10814,0 +44627,K35+-+%5B035%5D+Before+Land,583,306,699088769,6515,0 +44628,DALEKO,533,703,699827112,10471,0 +44629,026,299,567,849098688,10224,0 +44630,084+invidia,516,704,849093426,5059,0 +44631,Wioska+Strojgniew,670,622,1049851,7139,0 +44632,Kagusiowo+4,298,442,849101268,4888,0 +44633,022+G%C3%B3ry,653,645,849100994,4091,0 +44634,Wioska+021,674,609,7999103,7573,0 +44635,031.,701,464,849094609,9406,0 +44636,XDX,605,320,699098531,10290,5 +44637,Wioska+Totomoose,314,415,849100744,4694,0 +44638,New+World,435,701,698152377,10292,0 +44639,Wioska+barbarzy%C5%84ska,691,570,7038651,3723,0 +44640,S029,684,601,8428196,3605,0 +44641,Wioska+barbarzy%C5%84ska,621,662,6818593,7274,0 +44643,XXXX,562,302,849054951,10017,0 +44644,North+009,505,290,849064752,10311,0 +44645,XDX,610,320,699098531,8374,0 +44646,Wioska+barbarzy%C5%84ska,573,689,7756002,9707,0 +44647,%23%23%23005%23%23%23,587,687,698285444,10495,0 +44648,ROZWOD+GAME+OER,704,526,1895081,3730,0 +44649,Weso%C5%82ych+%C5%9Awi%C4%85t,585,434,699368887,7903,0 +44650,EO+EO,295,513,699697558,7342,0 +44651,A09,694,561,848995478,10971,4 +44652,K24+-+%5B003%5D+Before+Land,467,299,699088769,7549,0 +44653,Wioska+barbarzy%C5%84ska,569,304,828637,10068,0 +44654,KR%C3%93L+PAPI+WIELKI,661,626,698191218,10000,0 +44655,AAA,536,297,1006847,8094,0 +44656,Gondor,365,346,849027025,9817,0 +44657,Wioska+barbarzy%C5%84ska,574,306,828637,10838,0 +44658,Pocz%C4%85tek,304,580,7842579,8806,0 +44659,aaaaWioska+barbarzy%C5%84ska,705,524,7047342,10484,0 +44660,XDX,628,336,699098531,9093,0 +44661,152,397,685,849099876,10495,0 +44662,Wioska+X09,296,468,698701911,1970,0 +44663,Wioska+barbarzy%C5%84ska,371,658,699269923,9670,0 +44664,032+Neunreuth,463,698,699834004,3967,0 +44665,14+barbarzy%C5%84ska..,296,447,849018442,9811,0 +44666,022.,624,668,699695167,5068,0 +44667,Adamo+6,585,693,849096768,6600,0 +44668,Dzik+12,300,431,8366045,6192,0 +44669,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,496,706,8980651,9753,0 +44670,221,424,306,698365960,5502,0 +44672,046.+Jannu,699,554,1601917,7712,0 +44674,KR%C3%93L+PAPI+WIELKI,665,626,698191218,10000,0 +44675,%230226+Segadorr+dar,447,302,1238300,10178,0 +44676,0107,706,504,699429153,9325,0 +44677,New+Land+27,322,391,849064752,2162,0 +44678,Wioska+barbarzy%C5%84ska,335,376,7462660,3096,0 +44679,Taran,329,622,6180190,10178,5 +44680,Wioska+barbarzy%C5%84ska,710,477,8925695,2345,0 +44681,D007,354,645,272173,9004,0 +44682,bucksbarzy%C5%84skamiiiru,334,378,848955783,1980,0 +44683,%3D076%3D+B%2A030%2A,701,564,3781794,7414,9 +44684,Wioska+barbarzy%C5%84ska,618,334,0,1575,0 +44685,K35+-+%5B002%5D+Before+Land,584,311,699088769,10016,6 +44686,007.Stradi,435,302,698365960,10495,0 +44687,C.018,703,480,9188016,7393,0 +44688,066+ZieloneOczko2,705,513,2135129,10117,0 +44689,EE+014,699,571,849100149,2201,0 +44690,a+mo%C5%BCe+off+%3F+%3A%29,682,396,698768565,5875,0 +44691,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,561,703,699828442,9825,0 +44692,a10,677,612,848921861,4803,0 +44693,010+zadupie,534,708,6116940,6422,0 +44694,%23K75+0027,516,709,699728159,5493,0 +44695,Z+0004,346,359,3909522,10212,0 +44696,S015,684,594,8428196,5566,0 +44697,Wioska+barbarzy%C5%84ska,306,557,5997814,3576,0 +44698,matey,693,562,848977203,6747,0 +44699,017,708,507,699150527,6380,0 +44700,K35+-+%5B032%5D+Before+Land,590,318,699088769,9783,0 +44701,Wioska+barbarzy%C5%84ska,703,522,7047342,9677,0 +44702,XDX,606,328,699098531,9033,0 +44703,Wioska+barbarzy%C5%84ska,667,617,849048867,1357,0 +44704,Wioska+barbarzy%C5%84ska,587,313,828637,10157,0 +44705,Jednak+wol%C4%99+gofry,418,657,699736927,5550,0 +44706,%230054+geryk,464,292,1238300,10178,0 +44707,Wioska+barbarzy%C5%84ska,362,347,699796330,2224,0 +44708,055,710,514,7085502,6277,0 +44709,New+World,446,694,698152377,9530,0 +44710,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,498,705,8980651,10114,0 +44711,pppppiwko,293,473,848889556,6919,0 +44712,Taran+008,626,525,698562644,8442,0 +44713,29.BLACKPINK,692,419,9180206,4402,0 +44715,FENDI,300,464,699794765,5464,0 +44716,C0178,301,529,8841266,10252,0 +44717,013.+Night+Raid,492,708,699684062,8984,0 +44718,Osada+koczownik%C3%B3w,690,414,699598425,7011,7 +44719,kraina+mlekiem+i+miodem+p%C5%82yn%C4%85ca,367,659,849100760,949,0 +44720,Zielony+3,295,451,699876746,3201,0 +44721,Nestville,625,341,849062920,4151,0 +44722,eee,367,658,699269923,9450,0 +44723,Dream+on,298,485,698962117,8738,0 +44724,Wow19,363,352,699730714,2363,0 +44725,KONFA+TO+MARKA%2C+NARKA,294,451,698152377,10290,0 +44726,AAA,540,300,1006847,10311,1 +44727,Na+Kra%C5%84cu+%C5%9Awiata+020,642,343,9291984,4183,0 +44728,116.+Bagba,634,596,8337151,6788,0 +44729,%3F%3F%3F%3F,469,299,698489071,7033,0 +44730,A%23028,708,489,2065730,9797,0 +44731,Wioska+barbarzy%C5%84ska,296,518,7530708,3162,0 +44732,Wioska+barbarzy%C5%84ska,382,330,699660539,9842,0 +44733,0065,370,335,848913037,6300,0 +44734,Sernik+z+Andzynkami,710,506,699126484,9380,0 +44735,21.+Verden,700,535,8976313,8293,0 +44736,Wioska+barbarzy%C5%84ska,574,698,7756002,8372,0 +44737,Marco,382,668,699269923,7349,0 +44738,KONFA+TO+MARKA%2C+NARKA,298,447,698152377,10294,0 +44740,Kurnik,476,707,699603116,8131,0 +44741,Osada+1,693,425,8675636,9697,1 +44742,053+invidia,511,710,849093426,10259,0 +44743,%3F%3F%3F%3F,468,292,698489071,11678,0 +44744,%23%23%23036%23%23%23,590,689,698285444,10495,0 +44745,%2A211%2A,332,382,699273451,10211,0 +44746,Taran,326,612,6180190,9959,0 +44748,KR%C3%93L+PAPI+WIELKI,648,638,698191218,10082,0 +44749,KONFA+TO+MARKA%2C+NARKA,299,457,698152377,10290,0 +44750,037.+Himalchuli,699,553,1601917,8705,0 +44751,063-+Mroczna+Osada,617,332,849035905,10703,6 +44752,ElMajkelos+I,413,307,849085160,9347,0 +44753,Wioska+barbarzy%C5%84ska,291,474,2893211,396,0 +44754,XXXX,561,302,849054951,10068,0 +44755,XDX,598,316,699098531,9834,0 +44756,56+ggggg,295,473,849018442,8531,0 +44757,Pakos%C5%82aw,566,698,698723158,10019,0 +44758,004,300,548,849098688,7799,0 +44759,0004+Wioska+barbarzy%C5%84ska,440,696,849037407,10478,0 +44761,028+invidia,521,704,849093426,10104,0 +44762,PYRLANDIA+039,564,574,33900,8674,0 +44763,EO+EO,292,498,699697558,8431,0 +44764,Wioska+czarna+per%C5%82a,289,506,8369657,1175,0 +44765,Kurnik,469,706,699603116,6365,0 +44766,Wioska+barbarzy%C5%84ska,633,345,9291984,2987,0 +44767,Wioska+barbarzy%C5%84ska,369,342,3698627,7750,0 +44768,Wygwizdowa+007,643,651,698562644,9593,0 +44769,%3D0012%3D,399,318,698231772,9841,0 +44770,W23,686,415,699524362,1773,0 +44772,%2136+65+Dragomirna,657,364,698361257,6776,0 +44773,%5B0128%5D,456,296,8630972,9668,0 +44774,Wioska+barbarzy%C5%84ska,516,295,7758085,9861,0 +44775,sebastianxxx19,624,667,848909464,10242,0 +44776,Wioska+bruno+60,711,512,3647086,7100,0 +44777,Arczi997+03,296,516,849055181,3407,0 +44778,Wioska+barbarzy%C5%84ska,586,316,828637,9691,0 +44779,bucksbarzy%C5%84skamiiiru,321,400,848955783,9924,0 +44780,XDX,596,315,699098531,6300,0 +44781,1.06,436,699,699827112,9740,1 +44782,Aaaaaa,611,355,698420691,10141,0 +44783,Taran,320,609,6180190,9835,0 +44784,031%23+Arianna,465,709,3933666,7456,0 +44785,067.+Wioska+barbarzy%C5%84ska,703,472,7494497,7993,0 +44786,19.+Ottawa,686,480,699804790,9362,0 +44787,031.Stradi,434,302,698365960,10495,0 +44789,Wioska+barbarzy%C5%84ska,619,336,8842936,4842,0 +44790,a+mo%C5%BCe+off+%3F+%3A%29,676,399,698768565,6513,0 +44791,bucksbarzy%C5%84skamiiiru,323,401,848955783,5462,0 +44792,Wioska+barbarzy%C5%84ska,375,668,699269923,7923,0 +44793,%5B196%5D,675,388,8000875,4211,0 +44794,0053+Wioska+barbarzy%C5%84ska,448,703,849037407,5229,0 +44795,A000,461,705,699725436,10595,8 +44796,Elo+elo+13,305,581,699016994,5137,0 +44797,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,497,706,8980651,4523,0 +44799,044+invidia,516,708,849093426,10237,0 +44800,10.+Cintra,706,544,8976313,9570,0 +44801,Zaplecze+barba+2,375,330,699796330,9744,0 +44802,Zadupie,646,359,7340529,7851,0 +44803,247...Kaban1998,459,296,6920960,4975,0 +44804,C0209,296,529,8841266,7604,0 +44805,Wioska+barbarzy%C5%84ska,653,359,0,1912,0 +44806,012,702,509,7418168,10019,0 +44808,A11,696,555,848995478,5386,0 +44809,027+zadupie,529,701,6116940,10083,0 +44810,%5B0299%5D,430,304,8630972,9361,0 +44811,Zaplecze+Barba+010,372,334,699796330,9311,0 +44812,%3D0003%3D,403,320,698231772,9850,0 +44813,182,416,694,849099876,4544,0 +44814,087+Twierdza,709,468,2135129,4622,0 +44815,XDX,613,333,699098531,8852,0 +44816,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,560,703,699828442,9809,0 +44817,--001--,569,302,542253,10769,0 +44818,D.036,380,671,849088243,2626,0 +44819,przejecia,614,673,6818593,9835,1 +44820,015+ZO,526,293,699208929,6423,0 +44821,FP026,473,702,699605333,10393,0 +44822,Wioska+barbarzy%C5%84ska,390,329,699660539,6005,0 +44823,181..,651,647,699039013,4962,0 +44824,.achim.,474,297,6936607,6978,0 +44825,C0260,302,547,8841266,10252,0 +44826,Wioska+Majsmen,348,566,7333216,9711,0 +44827,O055,333,624,272173,9887,0 +44828,200,429,304,8630972,10057,1 +44829,12+Maszynowa,705,445,849101845,9661,0 +44830,B008+Gilead,705,466,113796,10152,0 +44831,S002,603,676,8627359,9151,0 +44832,%3D0013%3D,401,320,698231772,9839,0 +44833,Ciagle+pada,684,400,699785935,5272,0 +44834,Wioska+barbarzy%C5%84ska,337,369,849027025,5014,0 +44835,S009,686,587,8428196,7084,0 +44836,Didek,687,582,849070946,3616,0 +44837,Wioska+barbarzy%C5%84ska,621,671,848909464,10242,0 +44838,TUTAJ+NA+PEWNO+PRZETRWAM,378,666,848913998,7157,0 +44839,Piek%C5%82o+to+inni,640,337,848956765,4639,0 +44840,Grubasy+2,300,449,634848,8557,0 +44841,004.+G%C3%B3rki+Niezbyt+Wielkie,655,641,849100994,10728,2 +44842,Wioska+barbarzy%C5%84ska,634,336,7555180,2497,0 +44843,I109,698,449,699722599,6477,0 +44844,King,634,339,849100782,4655,0 +44845,008,530,292,699208929,10099,0 +44846,028,640,348,9148043,4082,0 +44847,050+invidia,545,700,849093426,10237,0 +44848,North+010,507,291,849064752,10311,0 +44849,Wioska+barbarzy%C5%84ska,454,705,698178312,1809,0 +44850,Wioska+barbarzy%C5%84ska,583,311,828637,10475,0 +44851,Wioska+1,635,481,848935020,10362,0 +44852,016,657,643,2323859,8128,0 +44853,Wioska+barbarzy%C5%84ska,708,467,699574408,6483,0 +44854,0059,452,702,849037407,9563,0 +44855,%3F%3F%3F%3F,475,291,698489071,9746,0 +44857,Wichura,648,652,2371436,6927,0 +44858,Wioska+barbarzy%C5%84ska,643,349,1715091,2671,0 +44859,Wioska+barbarzy%C5%84ska,694,433,1715091,9383,0 +44860,%2A024+GAWRA%2A,309,427,2415972,5800,0 +44861,%230089,559,698,1536231,3964,0 +44862,029.+Wioska+barbarzy%C5%84ska,347,641,698908184,6567,7 +44863,%5B197%5D,677,603,8000875,4343,0 +44864,Wioska+barbarzy%C5%84ska,620,670,6818593,6461,0 +44865,Wioska+barbarzy%C5%84ska,382,324,699660539,6797,0 +44866,004+Ostr%C3%B3w+Tumski,293,527,9235561,6319,0 +44867,EO+EO,315,524,699697558,10019,0 +44868,New+World,434,693,698152377,10161,0 +44869,FAKE+OR+OFF,409,316,698231772,9814,0 +44870,%4015%40,405,320,699483429,4121,0 +44871,Gondor,410,313,698231772,11898,0 +44872,Wioska+barbarzy%C5%84ska,357,346,849027025,9570,0 +44874,Ave+Why%21,313,586,6180190,3720,0 +44875,0109,703,500,699429153,9007,0 +44876,C0133,298,523,8841266,10495,0 +44877,Wioska+barbarzy%C5%84ska,304,449,699706955,1203,0 +44878,-+276+-+SS,555,701,849018239,7884,0 +44879,Didi,688,593,849070946,6848,0 +44880,KR%C3%93L+PAPI+WIELKI,661,630,698191218,10000,0 +44881,C0220,298,536,8841266,7284,0 +44882,Wioska+barbarzy%C5%84ska,330,376,849027025,1584,0 +44883,051,452,302,2502956,9237,0 +44884,...05+am,673,617,848921861,10495,0 +44885,XDX,599,322,699098531,4331,0 +44886,261..emerson,467,300,6920960,7386,0 +44887,Wioska+barbarzy%C5%84ska,650,351,1715091,3059,0 +44888,%C5%82%C3%B3d%C5%BA,290,512,699862278,2443,0 +44889,bucksbarzy%C5%84skamiiiru,317,401,848955783,6189,0 +44890,Kagusiowo+3,303,441,849101268,7556,0 +44891,Z+02,417,310,6884492,12154,0 +44892,Wioska+barbarzy%C5%84ska,626,338,699580120,7569,0 +44893,Centrum,290,470,848977600,9044,0 +44894,005,454,295,2502956,10019,4 +44895,FP009,479,703,699605333,10393,0 +44896,Wioska+barbarzy%C5%84ska,291,472,2893211,323,0 +44897,KONFA+TO+MARKA%2C+NARKA,299,456,698152377,10290,0 +44898,Wioska+barbarzy%C5%84ska,501,702,7976264,6450,0 +44899,Pogromca,385,331,699660539,6212,0 +44900,081,416,685,849099876,10495,0 +44901,Wioska+Melon944,309,430,699659708,7912,0 +44903,Taran,321,612,6180190,7443,0 +44904,Daleki+Gr%C3%B3d,632,335,7555180,9998,9 +44905,XDX,601,320,699098531,9049,0 +44906,%23%23%23037%23%23%23,593,681,698285444,10495,0 +44907,B032,624,329,8740199,5546,0 +44908,Wioska+barbarzy%C5%84ska,688,580,7154207,1534,0 +44909,Wioska+barbarzy%C5%84ska,308,418,0,231,0 +44910,Melon8,311,420,699659708,864,0 +44911,Wioska+barbarzy%C5%84ska,297,525,7530708,3112,0 +44912,027+Wioska+barbarzy%C5%84ska,614,672,699346280,9718,0 +44913,Prze%C5%82om,702,481,849099640,9106,0 +44914,New+World,426,691,698152377,10294,0 +44915,031,671,382,698635863,7936,0 +44916,New+World,419,695,698152377,10297,0 +44917,014.+Night+Raid,491,709,699684062,8227,0 +44918,KONFA+TO+MARKA%2C+NARKA,298,446,698152377,9918,0 +44919,Sernik+z+Andzynkami,711,502,699126484,8034,0 +44920,B05,703,551,848995478,10408,0 +44921,002,300,550,849098688,10224,0 +44922,Wioska+barbarzy%C5%84ska,586,313,828637,10159,2 +44923,FAKE+OR+OFF,406,317,698231772,10119,0 +44924,New+WorldA,294,527,849084005,6676,0 +44925,Sukcesu+droga,685,403,699785935,10362,0 +44926,009,696,560,301602,2914,0 +44927,Osada+koczownik%C3%B3w,381,331,699660539,9856,4 +44928,%23%23%23038%23%23%23,594,689,698285444,10495,0 +44929,024.+Wioska+barabarzy%C5%84ska,703,476,7494497,10367,0 +44930,FP024,482,709,699605333,9710,0 +44931,Z+03,420,310,6884492,12154,0 +44932,038.+Haramosh,707,541,1601917,8846,0 +44933,Zalesice,567,697,698723158,6871,0 +44934,200,369,663,699269923,9771,8 +44935,Didek,688,584,849070946,3837,0 +44936,Taran,323,608,6180190,7550,0 +44937,Taran,311,596,6180190,5990,0 +44938,MojeDnoToWaszSzczyt,502,292,9299539,9950,0 +44939,101+-+Nowy+Pocz%C4%85tek...,348,642,7540891,5811,0 +44941,Wioska+barbarzy%C5%84ska,705,533,848946700,2514,0 +44943,Wioska+barbarzy%C5%84ska,365,656,699269923,9883,0 +44944,MojeDnoToWaszSzczyt,496,292,9299539,9862,0 +44945,Wioska+barbarzy%C5%84ska,632,344,9291984,4791,0 +44946,Wioska+barbarzy%C5%84ska,368,346,3698627,6837,0 +44947,XDX,605,326,699098531,9618,0 +44948,K07,356,650,6948793,8710,0 +44949,0366,567,694,698659980,7937,0 +44950,G004,515,289,699208929,9634,0 +44951,001+Ostr%C3%B3w+Lednicki,289,530,9235561,7935,0 +44952,Wioska+barbarzy%C5%84ska,701,441,699524891,8368,0 +44953,Wioska+zosiek00,375,670,699269923,7033,0 +44954,Szlachcic,360,342,698388578,6957,0 +44955,AAAAAAAAAAAAAAAAAAAAAAA,321,609,6180190,9835,0 +44956,Starcza,298,475,8048374,5586,0 +44957,B001+Osada+Wsch%C3%B3d,709,463,113796,10141,9 +44958,AlaKlaudia2,384,325,699660539,5174,0 +44959,Wioska+barbarzy%C5%84ska,699,549,17714,6372,0 +44960,FAKE+OR+OFF,407,312,698231772,9629,0 +44961,Wioska+barbarzy%C5%84ska,579,308,828637,10476,6 +44962,Wioska+barbarzy%C5%84ska,336,375,849027025,3855,0 +44963,bucksbarzy%C5%84skamiiiru,324,384,848955783,2310,0 +44964,Winterfell.005,461,296,848918380,10178,5 +44965,No+chyba+nie,364,651,699269923,10006,0 +44966,ZA01,320,403,356642,9835,0 +44967,Wioska+barbarzy%C5%84ska,305,557,5997814,2788,0 +44968,C.05+a+panicz+to+dok%C4%85d%3F,548,295,849026145,2372,0 +44969,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,426,694,8980651,9761,0 +44970,Wioska+barbarzy%C5%84ska,569,700,7756002,9905,0 +44971,030,631,550,849095227,9835,0 +44972,032,667,381,698635863,9559,0 +44973,009,404,682,849099876,10495,0 +44975,S006,604,675,8627359,9315,0 +44976,K33,322,390,699794765,2192,0 +44977,Jarza071,677,391,699738350,9700,0 +44978,O006,341,636,272173,9955,0 +44979,0050+Utopia3,447,696,849037407,10309,2 +44980,08.+Pompeje,704,532,848946700,10252,0 +44981,777,343,641,698908184,8972,0 +44983,wioska,632,346,9291984,7551,0 +44984,053.,629,658,699373599,3542,0 +44985,%23K66+0003,610,673,699728159,7472,0 +44986,031,642,347,9291984,1782,0 +44987,%3F%3F%3F%3F,475,290,698489071,9791,0 +44988,0112,705,494,699429153,8708,0 +44989,XDX,607,318,699098531,10297,0 +44990,034.Stradi,425,311,698365960,10495,0 +44991,%23%23%23092%23%23%23,578,688,698285444,10495,0 +44992,Z%C5%82oty+%C5%9Awit,579,304,699883079,6991,0 +44993,EO+EO,290,498,699697558,9976,0 +44994,002,387,669,6948793,9766,0 +44995,041,300,540,9280477,6409,0 +44996,Wioska+barbarzy%C5%84ska,510,298,8400975,1271,0 +44997,Patryk611,676,397,7973893,6022,0 +44998,S002,683,599,8428196,9063,0 +44999,bucksbarzy%C5%84skamiiiru,321,396,848955783,9443,0 +45000,Psycho+to+Marka%2C+Narka+%21,306,572,849040142,1910,0 +45001,yks,535,705,8980651,10237,0 +45002,eee,370,659,699269923,9666,0 +45003,MojeDnoToWaszSzczyt,503,293,9299539,9958,0 +45004,Wioska+barbarzy%C5%84ska,711,497,699429153,7048,0 +45005,O056,334,628,272173,9819,0 +45006,Adamo+5,585,694,849096768,4821,0 +45007,KR%C3%93L+PAPI+WIELKI,643,648,698191218,9608,0 +45008,019.+Night+Raid%2A,432,692,699684062,9807,0 +45009,Bessa+027,644,656,848987051,9641,0 +45010,016,711,495,849091105,9663,3 +45011,EO+EO,293,500,699697558,9025,0 +45012,Kurnik,471,705,699603116,4534,0 +45013,Wioska+barbarzy%C5%84ska,317,596,7183372,5786,0 +45014,ZA07,322,403,356642,9835,0 +45015,2.+Pusia+420,473,294,699368887,9319,0 +45016,Wioska+barbarzy%C5%84ska,573,303,828637,4464,0 +45017,ZZ10,308,410,356642,9618,0 +45018,O004,341,632,272173,10291,9 +45019,102,405,690,849099876,9449,0 +45021,025.+Fitz+Roy,709,531,1601917,10362,0 +45022,Wioska+barbarzy%C5%84ska,589,318,828637,10262,0 +45024,051+sebaseba1991,617,676,699346280,10053,0 +45026,XDX,612,325,699098531,9957,0 +45027,E005,657,557,8428196,6019,0 +45028,%5B0298%5D,432,302,8630972,9122,0 +45029,EO+EO,297,497,699697558,8035,0 +45030,009c,311,423,8259895,4137,0 +45031,Wioska+barbarzy%C5%84ska,316,596,7183372,6315,0 +45032,023.,628,666,699695167,4789,0 +45033,psycha+sitting,412,684,699736927,10311,0 +45034,003+VLV,560,306,849100656,8672,0 +45035,Osiny,572,691,698723158,8591,0 +45036,Ger3,709,524,2246711,5036,0 +45037,Bessa+028,635,658,848987051,10232,0 +45039,009.+Painful,703,513,699785935,9629,0 +45040,Wioska+Totomoose+3,313,413,849100744,2936,0 +45041,.achim.,482,295,6936607,5349,0 +45042,ZZZ,542,706,8980651,10237,8 +45043,006,390,321,699660539,6525,0 +45044,New+World,425,693,698152377,10297,0 +45045,028+zadupie1,530,711,6116940,10019,0 +45046,Z07,317,409,356642,9835,0 +45047,007.+Night+Raid,491,703,699684062,9754,0 +45048,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,497,702,8980651,9741,0 +45049,Ranczo,302,449,699706955,12154,0 +45050,Wioska+barbarzy%C5%84ska,639,651,698191218,3866,0 +45051,psycha+sitting,399,677,699736927,6735,0 +45052,001,646,648,849101148,6085,0 +45053,Wioska+barbarzy%C5%84ska,688,414,699598425,7609,0 +45055,%230152+barbarzy%C5%84ska,484,289,1238300,7273,0 +45056,%7E%7ELataj%C4%85cyHolender%7E%7E,590,495,9174887,10140,0 +45057,Wioska+barbarzy%C5%84ska,385,325,699660539,6708,0 +45058,13.+Poviss,706,538,8976313,9684,0 +45059,004,392,327,8153941,8180,0 +45060,North+012,506,289,849064752,10311,9 +45062,Na+Kra%C5%84cu+%C5%9Awiata+019,641,341,9291984,4221,0 +45063,008,699,557,301602,4918,0 +45064,Grubasy+4,297,450,634848,5576,0 +45065,AAA,321,607,6180190,10101,0 +45066,S025,686,601,8428196,5626,0 +45067,Didi,684,587,849070946,4718,1 +45068,A000,466,707,699725436,9275,0 +45069,011,351,350,849101205,3416,0 +45070,Osada+koczownik%C3%B3w,382,325,699660539,10139,8 +45071,Dream+on,295,487,698962117,6813,0 +45072,Taran,319,608,6180190,9783,0 +45073,New+World,425,689,698152377,10559,0 +45074,z+zajazd+%2F2,353,359,3909522,6920,0 +45075,W24,693,412,699524362,1864,0 +45076,022.+Night+Raid%2A,429,700,699684062,10838,0 +45077,S018,688,595,8428196,5276,0 +45078,%23%23%23093%23%23%23,582,690,698285444,10495,0 +45079,FAKE+OR+OFF,407,320,698231772,9828,2 +45080,%230291+Don+Noobas,465,294,1238300,2597,0 +45081,KONFA+TO+MARKA%2C+NARKA,294,461,698152377,7774,0 +45082,239,398,318,7271812,2895,0 +45083,053.,705,465,849094609,5856,0 +45084,Didek,684,588,849070946,7383,0 +45085,C059,363,656,699383279,10431,0 +45086,MojeDnoToWaszSzczyt,495,292,9299539,9966,0 +45087,Taran,322,611,6180190,9835,0 +45088,Wioska+barbarzy%C5%84ska,588,314,828637,9962,0 +45089,.achim.,482,288,6936607,8056,0 +45090,BRICKLEBERRY,518,289,7758085,9963,0 +45091,0017,400,322,2321390,4932,0 +45093,%5B0212%5D,297,503,8630972,7745,0 +45094,GULASZ,707,530,1895081,902,0 +45095,033,667,382,698635863,9284,0 +45097,CastAway+%21032,686,603,9314079,5239,0 +45098,Wioska+barbarzy%C5%84ska,365,653,699269923,9491,0 +45099,Wioska+barbarzy%C5%84ska,587,317,1767876,5318,0 +45100,Dream+on,292,486,698962117,4646,0 +45101,003,296,558,9280477,9976,0 +45103,Borubar+5,711,486,699413581,4703,0 +45104,D015,353,647,272173,6506,0 +45105,Domi+8,700,471,849002796,7536,0 +45106,Wioska+barbarzy%C5%84ska,383,671,699269923,8212,0 +45108,%5B0147%5D,442,300,8630972,9125,0 +45109,KR%C3%93L+PAPI+WIELKI,651,643,698191218,10077,0 +45110,TWIERDZA+.%3A009%3A.,698,567,7154207,10182,5 +45111,012+ledwo+co,508,702,849093426,10237,0 +45112,201,427,302,698365960,10362,0 +45113,WB13,308,416,356642,3913,0 +45114,Wioska+barbarzy%C5%84ska,594,310,828637,9905,0 +45115,010,709,484,942959,3301,0 +45116,Taran,320,605,6180190,9792,0 +45117,126+invidia,502,709,849093426,10495,0 +45118,%23%23%23094%23%23%23,581,690,698285444,10495,0 +45119,C011,544,706,698599365,3307,0 +45120,Taran,317,602,6180190,10311,0 +45121,Mydlana+ba%C5%84ka,687,402,699785935,9146,0 +45122,B005+Szaleniczki,706,462,113796,10160,0 +45123,%5B0136%5D,456,295,8630972,9604,0 +45124,Wioska+barbarzy%C5%84ska,692,424,699488108,5331,0 +45126,Wioska+21,687,600,849101162,6058,0 +45128,Wyspa_48,507,704,2585846,3895,0 +45129,005,389,670,6948793,9899,0 +45130,Wioska+barbarzy%C5%84ska,358,346,849027025,9550,0 +45131,AAA,550,304,1006847,8593,0 +45132,043,463,300,2502956,10019,0 +45133,B028,623,326,8740199,5346,0 +45134,Wioska+barbarzy%C5%84ska,698,457,849098769,5880,0 +45135,Lusia,527,704,6116940,8028,0 +45137,Wioska013,686,398,698768565,4386,0 +45138,wioska,630,335,849102068,9880,0 +45139,31.Creyden,707,546,8976313,7614,0 +45140,Wioska+001,689,411,698416970,9995,0 +45141,Wioska+barbarzy%C5%84ska,704,490,942959,5246,0 +45143,0035,329,378,2321390,2604,0 +45144,%23K66+0007,609,673,699728159,4635,0 +45145,KR%C3%93L+PAPI+WIELKI,667,628,698191218,10000,5 +45146,Sodoma,417,313,699694284,8568,0 +45148,New+World,438,699,698152377,10294,0 +45149,Nad+ranem,684,401,699785935,4291,0 +45150,34.+Kufe+1,705,457,699804790,8190,0 +45151,Wioska+barbarzy%C5%84ska,688,408,699598425,6821,0 +45152,001+szukam,533,707,6116940,5575,0 +45153,0063,707,451,698416970,5278,0 +45154,052+Karolo1,618,672,699346280,9401,2 +45155,W25,694,412,699524362,4693,0 +45156,Grubasy+3,299,450,634848,6732,0 +45157,Spec2,544,298,699569800,5695,0 +45158,EO+EO,293,505,699697558,10019,0 +45159,Zbo%C5%BCowa,483,294,698848373,2725,0 +45160,C057,364,657,699383279,10713,0 +45161,0067,706,448,698416970,5730,0 +45162,Wioska+barbarzy%C5%84ska,530,293,699818726,6989,0 +45163,Mniejsze+z%C5%82o+0094,320,388,699794765,5365,0 +45164,001,386,668,699269923,9498,0 +45165,039.+Izera,706,543,1601917,7752,0 +45167,Wioska+barbarzy%C5%84ska,496,707,7976264,5302,0 +45168,C005,468,701,8954402,9726,0 +45169,Obrze%C5%BCe,577,692,7589468,8883,0 +45170,--004--,568,300,542253,10244,0 +45171,Wioska+barbarzy%C5%84ska,319,604,8699429,5516,0 +45173,025,711,511,7085502,9726,0 +45174,Wioska+barbarzy%C5%84ska,330,615,6180190,7364,0 +45175,Obrze%C5%BCe,575,697,7589468,8820,0 +45176,Orze%C5%82+6,688,490,699413581,7735,0 +45177,W27,684,399,699524362,2270,0 +45178,Didi,686,582,849070946,9658,0 +45179,0014+mackobl14,437,695,849037407,10478,0 +45180,003+Barba,406,318,698231772,8252,0 +45181,%5B0117%5D,444,301,8630972,10112,0 +45182,bucksbarzy%C5%84skamiiiru,325,386,848955783,7349,0 +45183,Wioska+barbarzy%C5%84ska,424,302,698231772,7718,0 +45184,New+WorldA,297,527,849084005,6199,0 +45185,bucksbarzy%C5%84skamiiiru,321,390,848955783,5673,0 +45186,Wioska+barbarzy%C5%84ska,639,402,699429153,7686,0 +45187,%5B198%5D,676,388,8000875,3749,0 +45189,Wioska+barbarzy%C5%84ska,388,319,699660539,3672,0 +45191,Virginia+Beach,626,333,8740199,10218,0 +45192,014.+Wioska+barbarzy%C5%84ska,344,638,698908184,8289,0 +45193,Wioska+13kris,565,702,6870350,9854,0 +45194,.achim.,481,294,6936607,4414,0 +45195,BAC%C3%93WKA+%7C025%7C,634,407,7394371,6043,0 +45196,025,301,566,849098688,10083,4 +45197,027,705,507,699150527,8017,0 +45198,Bessa+003,639,659,848987051,10087,0 +45199,Wioska+barbarzy%C5%84ska,530,298,7758085,9925,0 +45200,Wioska+barbarzy%C5%84ska,361,650,6948793,9835,0 +45201,006,355,350,849101205,6885,0 +45202,Wioska+barbarzy%C5%84ska,341,374,7462660,3846,0 +45203,Taran,325,618,6180190,9603,0 +45204,AAA,549,294,1006847,6177,0 +45205,komandos,633,662,7976264,8661,0 +45206,Szlachcic,362,342,698388578,8174,0 +45207,035,616,395,699298370,3035,0 +45208,Aberdeen+1,302,426,699852080,952,0 +45209,0054+Wioska+Nie%C5%9Bmiertelny97,447,704,849037407,5243,0 +45210,S020,685,584,8428196,4713,0 +45211,wioska,633,338,849102068,4347,0 +45212,Ostro%C5%BCanka,571,697,698723158,6894,0 +45213,EO+EO,294,495,699697558,8427,0 +45214,Wioska+barbarzy%C5%84ska,358,343,849027025,1603,0 +45215,0128,393,684,7085510,8587,0 +45216,XDX,603,320,699098531,10158,0 +45217,Wioska+barbarzy%C5%84ska,631,660,848987051,10150,0 +45218,Dream+on,293,494,698962117,9488,0 +45219,Wioska+barbarzy%C5%84ska,500,703,7976264,7237,0 +45220,East1,681,383,1086351,7874,0 +45221,099.+Mruva,619,478,8337151,12154,0 +45222,Dantyszka,477,297,698848373,2918,0 +45223,Wioska+barbarzy%C5%84ska1,291,508,698879638,2575,0 +45224,KR%C3%93L+PAPI+WIELKI,657,640,698191218,10000,0 +45225,091+Tomek,680,513,2135129,6727,0 +45226,DDDQ,289,475,848889556,9203,0 +45227,tomek016+VI,693,569,8811880,1888,0 +45228,0159,386,678,7085510,5147,0 +45229,FP020,472,705,699605333,10265,0 +45230,%2AINTERTWINED%2A,506,705,698704189,5740,0 +45231,P%C3%B3%C5%82nocny+Bagdad,618,330,8847546,9835,0 +45232,%C5%BBUBEREK+018,607,679,33900,6222,0 +45233,DZIADZIOR,309,407,699127156,5484,0 +45234,%23003+Los+Angeles,319,611,849101276,6081,0 +45235,%5B0131%5D,443,297,8630972,9598,0 +45237,FAKE+OR+OFF,408,308,698231772,9817,0 +45238,I008,672,446,699722599,10252,0 +45239,C0211,298,534,8841266,10252,0 +45241,Wioska+barbarzy%C5%84ska,384,326,699660539,7015,0 +45242,Dust+in+the+wind.,289,480,849001277,6457,0 +45243,Wioska+Zawodnika+2,580,694,698655859,6485,0 +45244,Chwa%C5%82owice,568,696,698723158,10301,0 +45245,%7E085.,468,700,7139820,2970,0 +45246,New+Land+18,331,374,849064752,3633,0 +45247,Wiadrowo+G%C3%B3rne,287,489,849100877,11819,0 +45248,Z06,315,409,356642,9835,0 +45249,bucksbarzy%C5%84skamiiiru,315,401,848955783,5668,0 +45250,%5B199%5D,679,391,8000875,6756,0 +45251,bucksbarzy%C5%84skamiiiru,329,391,848955783,9959,1 +45252,Fio%C5%82kowe+Pole,694,428,699785935,7976,0 +45255,0037,462,708,699280514,8374,0 +45256,.achim.,483,290,6936607,7931,3 +45257,0.07+Pse%C5%82fe%C5%82,467,705,699725436,9491,0 +45258,015,409,689,849099876,10495,0 +45259,246...Kaban1998,457,293,6920960,9798,0 +45260,Wioska+barbarzy%C5%84ska,637,660,848987051,9996,0 +45261,%2AW006,666,377,7758085,5631,0 +45262,Angella+x,652,352,699875213,2293,0 +45263,Z%C5%82oty+%C5%9Awit,576,303,699883079,9288,4 +45264,064.,320,592,3475079,2397,0 +45265,wioska,635,341,9291984,7938,0 +45266,004181,631,658,699872616,5062,0 +45267,Edda,587,676,699567608,9248,0 +45268,046.,443,706,849034882,10838,0 +45269,Wioska+barbarzy%C5%84ska,548,302,699072129,3604,0 +45270,%5B0107%5D,441,301,8630972,10495,0 +45271,Wygwizdowa+006,634,656,698562644,10311,0 +45272,009,298,553,9280477,9976,0 +45273,S024,685,600,8428196,2510,0 +45274,FAKE+OR+OFF,405,311,698231772,9819,0 +45275,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,425,697,8980651,9543,5 +45277,KONFA+TO+MARKA%2C+NARKA,300,433,698152377,8210,0 +45278,%5BD%5D_%5B003%5D+Dejv.oldplyr,287,504,699380607,10365,8 +45279,C0202,298,529,8841266,7811,0 +45280,Sernik+z+Andzynkami,710,503,699126484,7650,0 +45281,FAKE+OR+OFF,408,310,698231772,9885,0 +45282,024.,631,668,699695167,4986,0 +45283,Ob+Konfederacja,428,325,848915730,6620,0 +45284,136.Stradi,430,309,698365960,3304,0 +45285,0034,324,381,2321390,2322,0 +45286,Aaaaxxx,292,464,848981726,5252,0 +45287,Dream+on,294,479,698962117,9367,4 +45288,Vanaheim,670,612,849096631,1756,0 +45289,KR%C3%93L+PAPI+WIELKI,650,648,698191218,7735,0 +45290,Z10,315,407,356642,9835,0 +45291,EE+003,695,580,849100149,9502,0 +45292,bucksbarzy%C5%84skamiiiru,327,392,848955783,6934,0 +45293,Wioska+barbarzy%C5%84ska,343,366,7462660,10068,0 +45294,C07,705,448,849093742,6088,0 +45295,22+Perm,396,317,698231772,10072,7 +45296,014,316,595,6180190,6206,0 +45297,komandos,636,660,7976264,8909,2 +45298,ostro%C5%82%C4%99ka,686,476,849100082,7063,0 +45299,Wioska+haga,291,512,698368493,3628,0 +45301,Wioska+barbarzy%C5%84ska,697,443,1715091,6037,0 +45302,EO+EO,290,526,699697558,6858,0 +45303,016+G%C3%B3rki+Minimalistyczne,653,638,849100994,4003,0 +45305,013+VWF+Wioska+barbarzy%C5%84ska,309,422,3108144,3509,4 +45306,C089,362,662,699383279,8016,0 +45307,New+World,435,693,698152377,10297,0 +45308,Wioska+barbarzy%C5%84ska,364,343,849027025,7304,0 +45309,%230265+olcixx,463,292,1238300,4851,0 +45310,C111,354,654,699383279,6298,0 +45311,.achim.,478,297,6936607,3848,0 +45312,%3F%3F%3F%3F,494,292,698489071,10160,5 +45313,006,297,469,848895676,3867,0 +45314,258...Karki98,453,294,6920960,4879,0 +45315,045,452,299,2502956,9652,0 +45316,Wioska+Zorro+017,678,611,849080702,6488,0 +45317,%230268+olcixx,465,297,1238300,6638,0 +45318,yks,536,704,8980651,10237,0 +45319,KONFA+TO+MARKA%2C+NARKA,301,437,698152377,6989,0 +45320,001+Zaczynamy,344,635,698908184,9713,0 +45321,%23%23%23095%23%23%23,592,692,698285444,10495,0 +45322,New+World,421,695,698152377,10295,0 +45323,Wioska+barbarzy%C5%84ska,368,654,699269923,9891,0 +45324,Wioska+barbarzy%C5%84ska,632,342,849102068,2312,0 +45325,026,679,599,6160655,8503,0 +45326,IQ155,551,452,699368887,6277,0 +45327,Ubijam,690,404,699785935,5053,0 +45329,040.+Night+Raid,485,711,699684062,6079,0 +45330,Wioska+barbarzy%C5%84ska,683,412,699598425,7010,0 +45331,Wioska+barbarzy%C5%84ska,707,469,699574408,6996,0 +45332,Wioska+barbarzy%C5%84ska+4,453,703,698178312,4529,0 +45333,001+yuri09,605,681,699346280,10160,0 +45334,bucksbarzy%C5%84skamiiiru,328,391,848955783,10117,0 +45337,C.020,707,480,9188016,5087,0 +45338,007,295,551,849098688,10393,0 +45340,KR%C3%93L+PAPI+WIELKI,649,651,698191218,7581,0 +45341,%2136+65+Horodnic+de+Jos,653,362,698361257,9993,0 +45342,KR%C3%93L+PAPI+WIELKI,657,639,698191218,10000,0 +45343,034,673,381,698635863,9478,0 +45344,068,406,683,849099876,10495,0 +45345,Osada+koczownik%C3%B3w,383,332,699660539,9931,2 +45346,%2136+66+Varfu+Deaulului,664,365,698361257,9841,0 +45348,Abu+zabi,514,297,699208929,8889,0 +45349,%23%23%23003%23%23%23,592,691,698285444,10495,2 +45350,D%C5%BCejd%C5%BCej+1,665,632,849098326,12154,0 +45351,Ave+Why%21,310,593,6180190,4104,0 +45352,Hodges+Gen.,353,641,272173,4982,0 +45353,005,712,499,699150527,10297,0 +45354,I110,697,448,699722599,6640,0 +45355,zajazd+%2F3,352,352,849027025,9351,0 +45356,Wioska+barbarzy%C5%84ska,508,713,698704189,1963,0 +45357,Wioska+barbarzy%C5%84ska,650,352,0,2927,0 +45358,20.2PM,686,419,9180206,7935,0 +45359,C0346,297,537,8841266,1763,0 +45360,006,308,422,8259895,4776,0 +45361,Wioska+barbarzy%C5%84ska,655,359,698361257,2947,0 +45362,Wioska+barbarzy%C5%84ska,361,653,849014922,9835,0 +45363,0039,477,711,699280514,2874,0 +45364,018+telimena,615,676,699346280,10160,0 +45365,C060,356,656,699383279,10236,2 +45366,039,652,351,9148043,5639,0 +45367,091,410,693,849099876,7880,0 +45368,Dzik+10,302,439,8366045,6477,0 +45369,Wioska+barbarzy%C5%84ska,625,333,8740199,9700,7 +45370,C0134,298,524,8841266,9466,0 +45371,Borcuchy,565,696,698723158,5415,0 +45372,9_Franekkimono510_9,361,342,849099422,4383,0 +45373,009+Kruszwica,292,529,9235561,5282,0 +45374,psycha+sitting,396,676,699736927,4331,0 +45375,25+Wiocha+5..+...,303,437,849018442,9059,0 +45376,%23%23%23096%23%23%23,586,687,698285444,10495,0 +45377,C055,365,657,699383279,10030,0 +45378,Zielony2,295,447,699876746,3507,0 +45380,Wioska+barbarzy%C5%84ska,358,344,849027025,9352,0 +45382,Wioska+barbarzy%C5%84ska,705,539,848946700,7662,0 +45383,New+World,421,691,698152377,10291,0 +45384,120,417,695,849099876,9968,0 +45385,Wydzia%C5%82+zamiejscowy+2,301,424,699821629,5173,0 +45386,bucksbarzy%C5%84skamiiiru,320,392,848955783,10171,0 +45387,XDX,609,318,699098531,10092,0 +45388,KONFA+TO+MARKA%2C+NARKA,293,452,698152377,10291,0 +45389,A000,466,702,699725436,9685,0 +45390,Obok+my%C5%9Bli,691,403,699785935,10019,0 +45391,Wiadro11,673,624,8677963,6844,0 +45392,Wioska+Duszkowsky+005,359,657,849101579,5736,0 +45393,KR%C3%93L+PAPI+WIELKI,666,621,698191218,9534,0 +45394,Wioska+barbarzy%C5%84ska,394,315,698231772,8872,0 +45396,Z24,311,412,356642,9835,0 +45397,Tzarski-02,646,654,699783063,2628,0 +45398,Flowers,696,565,848926293,2793,0 +45399,2+RAMMSTEIN,346,354,6315553,2393,2 +45400,%23%23%23039%23%23%23,596,684,698285444,10495,0 +45401,03.SUJU,689,417,9180206,8647,1 +45402,EO+EO,291,520,699697558,9040,0 +45403,%23%23%23040%23%23%23,598,686,698285444,10495,0 +45404,Wioska+barbarzy%C5%84ska,582,313,828637,10476,0 +45405,014,716,514,7085502,9871,0 +45406,%230303+LAROX,458,294,1238300,10025,0 +45407,Wioska+barbarzy%C5%84ska,337,370,849027025,4832,5 +45408,Wioska+X04,298,466,698701911,2761,0 +45409,044,293,538,9280477,5592,0 +45410,032,300,561,9280477,5746,0 +45411,Parking4,619,676,6528152,5668,0 +45412,%2136+65+Voievodeasa,656,365,698361257,9771,0 +45413,Wioska+barbarzy%C5%84ska,633,661,848987051,10237,0 +45414,XXX,290,476,848977600,8857,3 +45415,--048--,564,302,542253,1670,0 +45416,Rakow,298,474,8048374,5741,0 +45417,A03,701,557,848995478,7741,0 +45418,35+Paleocen,396,315,698231772,4914,0 +45419,670%7C374,670,374,699580120,5089,0 +45420,bucksbarzy%C5%84skamiiiru,316,393,848955783,9655,0 +45421,%23047,506,635,699605333,10265,0 +45422,Wioska+barbarzy%C5%84ska,521,289,7758085,9685,0 +45423,1.04,436,700,699827112,9777,0 +45424,144,400,682,849099876,10495,0 +45425,Avanti%21,292,483,698625834,6520,0 +45426,C.029,708,481,9188016,4338,0 +45427,%5B0226%5D,296,509,8630972,6156,0 +45428,MojeDnoToWaszSzczyt,507,294,9299539,9954,0 +45429,S019,689,591,8428196,3970,0 +45430,068+-+Nowy+Pocz%C4%85tek...,345,645,698908184,7934,0 +45431,New+World,427,694,698152377,10290,0 +45432,Wioska+Mogok,580,686,698723158,1499,0 +45433,23.+Cidaris,702,535,8976313,8164,0 +45434,Nic+ju%C5%BC+nie+musz%C4%99,701,434,699785935,8704,0 +45435,157...E,398,313,6920960,6700,0 +45436,Wioska+barbarzy%C5%84ska,395,317,698231772,8381,0 +45437,komandos,633,664,7976264,8600,0 +45438,0101,676,390,698416970,5484,0 +45439,Wioska+barbarzy%C5%84ska,564,702,7756002,4544,0 +45440,047,455,296,2502956,9779,0 +45441,022.+Ursus,704,475,7494497,10237,1 +45442,-009-+Chwa%C5%82a+Imperium,622,333,8675636,10019,0 +45443,053.Stradi,448,296,698365960,10495,0 +45444,006,394,323,8153941,6194,0 +45445,06+Pali+si%C4%99+moja+Panno,706,446,849101845,9965,0 +45446,048.+ALFI,479,572,8539216,1471,0 +45447,KONFA+TO+MARKA%2C+NARKA,298,435,698152377,7611,0 +45448,Wioska+X03,297,466,698701911,3974,0 +45450,Wioska+barbarzy%C5%84ska,302,446,699706955,1594,0 +45451,044,712,513,7085502,8937,0 +45453,D016,560,298,699299123,4416,0 +45454,%5B0121%5D,445,294,8630972,9890,0 +45455,025+invidia,520,707,849093426,10237,0 +45456,Psycho+to+Marka%2C+Narka+%21,305,571,849040142,3110,0 +45457,B%C5%BAdzi%C4%85gwa,556,706,699443920,9761,4 +45458,0.04+Kazio+i+syndrom+LEGII,465,704,699725436,9462,0 +45459,046.+Night+Raid,485,709,699684062,3649,0 +45460,_1_,493,334,9113064,4358,0 +45461,P%C3%B3%C5%82nocny+Bagdad,618,323,8847546,9835,0 +45462,TWIERDZA+.%3A001%3A.,692,578,7154207,10120,0 +45463,0051+181.01,449,704,849037407,10457,0 +45464,Dream+on,296,487,698962117,4587,0 +45465,Siebie+zapytasz,692,402,699785935,10252,0 +45466,%5B0158%5D,446,302,8630972,8953,0 +45467,New+World,428,698,698152377,9359,0 +45469,psycha+sitting,411,683,699736927,9782,0 +45470,C03,706,451,849093742,6026,0 +45471,003b,304,412,8259895,4475,0 +45472,13.TXT,690,419,9180206,8629,0 +45473,WB04,309,411,356642,5958,0 +45474,Gattacka,691,431,699298370,8020,0 +45475,ZA05,316,406,356642,9835,0 +45476,075.,454,708,699827112,7533,0 +45477,004c,305,419,8259895,8646,0 +45478,Wioska+barbarzy%C5%84ska,713,485,699429153,4988,0 +45479,Wioska+barbarzy%C5%84ska,389,330,699660539,6544,0 +45480,-+206+-+SS,545,699,849018239,7612,0 +45482,%23K66+0001,610,675,699728159,9761,0 +45483,012.+137dominik,343,638,698908184,9495,0 +45484,006,699,559,301602,4825,0 +45485,C023,372,670,699383279,9785,0 +45486,0064,368,336,848913037,8241,0 +45487,Wioska+barbarzy%C5%84ska,372,330,3698627,9830,0 +45488,G006,507,288,699208929,10400,0 +45490,Lech,298,477,849095376,3241,0 +45491,Wioska+barbarzy%C5%84ska,338,522,699262350,2693,0 +45492,0022,321,386,2321390,8566,0 +45493,Taran,326,621,6180190,9843,0 +45494,Wioska+barbarzy%C5%84ska,633,333,7555180,9635,0 +45495,014+Narda,684,602,8337151,10083,0 +45496,024,710,511,7085502,8745,0 +45497,XDDD,346,642,698908184,6942,0 +45498,Wioska+barbarzy%C5%84ska,388,674,6948793,6340,0 +45499,-+209+-+SS,558,696,849018239,7469,0 +45500,012+.1.+Infanterie-Division,604,361,849091899,3026,0 +45501,0083,676,392,698416970,5540,0 +45502,Kurnik,478,711,699603116,8476,0 +45503,Zaplecze+Barba+015,369,339,699796330,9185,0 +45504,KONFA+TO+MARKA%2C+NARKA,294,460,698152377,2398,0 +45505,Wioska+barbarzy%C5%84ska,393,673,6948793,6341,0 +45506,058.+%2B%5BAmarant%5D%2B,703,467,7494497,10237,0 +45507,Wioska+barbarzy%C5%84ska,589,316,828637,10475,0 +45508,Wioska+barbarzy%C5%84ska,316,591,6180190,4295,0 +45509,001,530,289,699818726,8653,0 +45510,035,672,377,698635863,10495,0 +45511,Sernik+z+Andzynkami,712,504,699126484,9607,0 +45512,Wioska+barbarzy%C5%84ska,368,344,3698627,7777,0 +45513,0320,574,689,698659980,7852,0 +45514,Kagusiowo+6,304,444,849101268,5127,0 +45515,KR%C3%93L+PAPI+WIELKI,711,524,698191218,8016,0 +45516,Wioska+dawszz3,294,526,849094688,5967,0 +45517,015+-+Nowy+Pocz%C4%85tek...,354,647,6948793,6741,0 +45518,Elo+Elo+18,313,582,699016994,3164,0 +45519,010+Heerenveen,645,356,7340529,10654,1 +45520,Z%C5%82oty+%C5%9Awit,572,310,699883079,9659,0 +45521,Sernik+z+Andzynkami,711,506,699126484,8183,0 +45522,004,296,555,9280477,9976,0 +45523,Wioska+barbarzy%C5%84ska,539,292,698350371,8058,0 +45524,115+invidia,502,710,849093426,10401,1 +45525,Dream+on,299,492,698962117,4680,0 +45526,122+invidia,504,706,849093426,9689,0 +45527,%23%23%23041%23%23%23,584,687,698285444,10495,0 +45528,KONFA+TO+MARKA%2C+NARKA,298,449,698152377,10291,0 +45529,XXXX,562,300,849054951,10361,8 +45531,Avanti%21,288,484,698625834,6313,0 +45532,Wioska+barbarzy%C5%84ska,422,304,698231772,9282,0 +45533,C006,539,700,698599365,6606,0 +45534,EO+EO,292,502,699697558,8937,0 +45535,C.030,711,481,9188016,4471,0 +45536,036,669,380,698635863,9611,0 +45537,198...segador,438,297,6920960,10787,0 +45538,-+272+-+SS,550,701,849018239,5680,0 +45539,aaaa,388,672,6948793,9693,0 +45540,New+World,436,703,698152377,9824,0 +45542,P%C3%B3%C5%82nocny+Bagdad,618,331,8847546,9835,0 +45543,O094,334,619,272173,9772,0 +45544,3.C.,452,694,699777372,9056,0 +45545,04-oss,674,617,848921861,10187,0 +45546,MojeDnoToWaszSzczyt,502,293,9299539,9961,0 +45547,-+277+-+SS,553,702,849018239,10000,0 +45548,BRICKLEBERRY,511,288,7758085,10375,0 +45549,FAKE+OR+OFF,415,315,698231772,9812,0 +45550,New+World,423,694,698152377,10297,7 +45551,boh81%2F50w,298,470,848889556,8138,0 +45552,D.030,385,669,849088243,3719,0 +45553,C009,542,704,698599365,6492,0 +45554,%2AINTERTWINED%2A,512,711,698704189,6605,0 +45555,C021,365,666,699383279,9804,0 +45556,%230222+Segadorr+dar,451,302,1238300,10178,0 +45557,Z%C5%82oty+%C5%9Awit,577,308,699883079,8050,0 +45559,%23%23%23097%23%23%23,584,693,698285444,10495,0 +45560,076+Volantis,702,432,2135129,8059,0 +45561,Wioska012,686,396,698768565,5576,0 +45562,Cisza,300,539,698769107,3062,0 +45563,C0231,294,547,8841266,7020,0 +45564,37.+Kufe+4,706,456,699804790,2909,0 +45565,P%C3%B3%C5%82nocny+Bagdad,619,329,8847546,10068,0 +45566,%230307+sliwatojo,465,295,1238300,2202,0 +45567,o03,609,682,699189792,9747,0 +45568,Wioska+barbarzy%C5%84ska,395,678,699736927,2318,0 +45569,C081,360,658,699383279,9154,0 +45570,Jaaa,622,590,698635863,10266,0 +45572,EO+EO,295,501,699697558,8427,0 +45575,bucksbarzy%C5%84skamiiiru,322,395,848955783,9924,0 +45576,%23%238,349,355,2800032,5881,0 +45577,C029,367,666,699383279,6391,0 +45578,asd,621,330,8675636,10019,0 +45579,Avanti%21,292,487,698625834,3256,0 +45580,Wioska+barbarzy%C5%84ska,712,498,699429153,7981,0 +45581,KR%C3%93L+PAPI+WIELKI,668,621,698191218,9946,0 +45582,Na+Kra%C5%84cu+%C5%9Awiata+017,639,343,9291984,4156,0 +45583,002,589,309,1767876,6588,0 +45584,%5B200%5D,680,385,8000875,3369,0 +45585,%2136+56+Stulpicani,658,357,698361257,7969,0 +45586,XDX,597,311,699098531,9333,0 +45587,Kurnik,507,712,699603116,11321,0 +45588,bucksbarzy%C5%84skamiiiru,324,386,848955783,4391,0 +45589,B014,623,330,8740199,8608,0 +45590,Wioska+barbarzy%C5%84ska,692,408,699598425,9176,0 +45591,A%23035,710,487,2065730,9797,0 +45592,Wioska+barbarzy%C5%84ska,331,375,849027025,2016,0 +45593,C0223,290,535,8841266,5717,0 +45594,005,393,323,8153941,7883,0 +45595,FP031,471,708,699605333,9396,0 +45596,Dream+on,294,490,698962117,9534,0 +45597,Bessa+010,640,655,848987051,10218,0 +45598,S02A,604,676,8627359,4890,0 +45599,Wioska+barbarzy%C5%84ska,708,480,8925695,2647,0 +45600,Tego+typu%21,708,503,8418489,8186,0 +45601,AAA,543,301,1006847,7999,0 +45602,31+Jura,396,316,698231772,9699,0 +45603,056-+Mroczna+Osada,651,362,849035905,3679,0 +45604,%2A022,668,370,7758085,7062,0 +45605,KR%C3%93L+PAPI+WIELKI,667,618,698191218,9555,0 +45606,0067,366,336,848913037,6688,0 +45607,%2136+65+Bucsoaia,659,363,698361257,9695,0 +45608,Winterfell.018,446,293,848918380,10178,0 +45609,KONFA+TO+MARKA%2C+NARKA,298,450,698152377,10294,0 +45610,011,407,691,849099876,10495,0 +45611,032+Wioska+barbarzy%C5%84ska,604,686,699346280,10160,0 +45613,%3D0016%3D,405,319,698231772,9304,0 +45614,Lord+Arsey+KING,658,641,848956513,8700,0 +45615,klops33,625,668,848909464,10242,0 +45616,XDX,609,322,699098531,10290,0 +45617,025.,628,667,699695167,4280,0 +45619,Wioska+barbarzy%C5%84ska,423,303,698231772,9621,0 +45620,AAA,550,294,1006847,9846,3 +45622,273...gulden,462,295,6920960,4917,0 +45623,komandos,639,662,7976264,10238,0 +45624,MojeDnoToWaszSzczyt,496,291,9299539,9962,0 +45625,MojeDnoToWaszSzczyt,510,296,9299539,9845,0 +45626,S001,683,592,8428196,9825,0 +45627,Ryan+-+Problem,650,643,1106220,1472,0 +45628,35.+Kufe+2,704,458,699804790,5975,0 +45629,D%C5%BCejd%C5%BCej+2,665,629,849098326,9710,0 +45630,069,406,689,849099876,10495,0 +45631,022Szyja,469,707,698620694,9835,0 +45632,Kurnik,476,712,699603116,9593,0 +45633,FP011,475,707,699605333,10201,0 +45634,0062+%7E22%7E,439,438,3909522,8230,0 +45635,41+Ho%C5%82opole,704,536,8976313,3862,0 +45636,So%C5%82tys+Wsi+WojTool,361,346,849027025,9751,0 +45637,0033+Kasko14,449,697,849037407,10229,0 +45638,Zzzz+-+Kasztelania+004,642,352,9291984,4458,0 +45639,KONFA+TO+MARKA%2C+NARKA,298,448,698152377,10291,9 +45640,Bessa+012,641,655,848987051,10223,0 +45641,45.+Rowan,709,527,8976313,3312,0 +45642,MojeDnoToWaszSzczyt,498,290,9299539,9852,0 +45643,EO+EO,289,521,699697558,10362,0 +45644,204,366,662,699269923,6791,0 +45645,Osada+2,694,426,8675636,10019,0 +45646,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,495,707,8980651,9378,2 +45647,Wioska+barbarzy%C5%84ska,568,698,7756002,7515,0 +45648,C.031,709,477,9188016,4686,0 +45649,Ciemnogr%C3%B3d+%233,337,363,849096958,8850,0 +45650,C0216,297,528,8841266,8194,0 +45651,008,385,323,699660539,9501,0 +45652,0058+181.11,447,701,849037407,5130,0 +45654,004a,303,418,8259895,5230,0 +45655,012+Gilead,662,640,8337151,10495,8 +45656,Ave+Why%21,309,589,6180190,8441,0 +45657,komandos+.....00,632,664,7976264,9925,0 +45658,KR%C3%93L+PAPI+WIELKI,646,649,698191218,7069,0 +45660,045+invidia,521,707,849093426,9906,0 +45661,KR%C3%93L+PAPI+WIELKI,651,640,698191218,6417,0 +45662,New+WorldA,288,525,849084005,5919,0 +45663,005,300,549,849098688,5988,0 +45664,New+World,418,697,698152377,9532,0 +45665,%23%23%23042%23%23%23,585,687,698285444,10495,0 +45666,Wioska+barbarzy%C5%84ska,622,672,848909464,10242,0 +45667,C.013,698,492,9188016,10000,0 +45668,%3D024%3D+Szlachta,705,572,3781794,10580,0 +45669,Angella+xxx,654,352,1715091,2725,0 +45670,Yogi,514,545,2808172,5848,0 +45671,Wioska+003,644,353,9291984,2005,0 +45673,KONFA+TO+MARKA%2C+NARKA,295,457,698152377,10294,0 +45674,010,293,541,849098688,9835,3 +45676,S014,686,592,8428196,6722,0 +45677,A%23018,713,473,2065730,9797,0 +45678,Cisza,294,550,698769107,6241,0 +45679,023,305,560,9280477,9132,0 +45680,P%C3%B3%C5%82nocny+Bagdad,612,322,8847546,10068,0 +45681,Pocz%C4%85tek,302,576,7842579,4517,0 +45682,New+Land+03,329,384,849064752,5131,0 +45683,008+szymaan,604,680,699346280,10160,0 +45684,30.+Tolkiny,713,486,699804790,5358,0 +45686,Szlachcic,363,342,698388578,7131,0 +45687,058...barbarka,434,303,6920960,10495,3 +45689,P%C3%B3%C5%82nocny+Bagdad,618,324,8847546,9976,0 +45690,C063,359,651,699383279,10216,9 +45691,Wioska+barbarzy%C5%84ska,711,494,699429153,6040,0 +45692,010+Edek6969,609,679,699346280,10160,0 +45693,Obrze%C5%BCe,583,693,7589468,8817,9 +45694,HAPERT,627,663,848909464,9632,0 +45695,Szlachcic,364,334,698388578,7008,0 +45697,MojeDnoToWaszSzczyt,493,287,9299539,9958,0 +45698,New+World,430,692,698152377,10292,0 +45699,Z08,316,408,356642,9835,0 +45700,Winterfell.007,446,298,848918380,10178,2 +45701,09-oss,671,612,848921861,8366,0 +45703,...,338,365,699657450,5622,0 +45704,So%C5%82tys+wsi+XTOskar,358,342,849027025,9361,0 +45706,002%3AWioska+MFJZZ,375,329,8772425,10160,0 +45707,%23%23%23043%23%23%23,588,688,698285444,10495,0 +45708,Pocz%C4%85tek,312,587,7842579,9955,0 +45709,Wioska+barbarzy%C5%84ska+004,562,704,6870350,8724,0 +45711,066,408,685,849099876,10495,0 +45712,New+World,427,696,698152377,10292,0 +45713,XXXX,566,304,849054951,10068,0 +45715,C0217,297,535,8841266,9895,0 +45716,AAA,551,293,1006847,8475,0 +45717,Taran,325,614,6180190,9959,0 +45718,5+QUEEN,345,358,6315553,2361,0 +45719,Criminal,700,426,699785935,6708,0 +45720,XDX,600,314,699098531,9957,0 +45721,055.Stradi,435,303,698365960,10495,0 +45722,BRICKLEBERRY,552,301,699072129,10311,0 +45723,109,413,695,849099876,9954,0 +45724,%5BD%5D_%5B004%5D+Dejv.oldplyr,289,500,699380607,7902,0 +45725,Wioska+084,675,606,848971079,8844,0 +45726,AAA,540,298,1006847,9347,0 +45727,029+Wioska+barbarzy%C5%84ska,601,686,699346280,9401,0 +45728,0092,678,391,698416970,8615,0 +45729,ZA14,318,411,356642,9612,0 +45730,204...segador,444,295,6920960,10654,5 +45732,Wioska+barbarzy%C5%84ska,649,355,0,1542,0 +45733,009.+Kusy,348,637,698908184,9825,0 +45734,C052,378,663,699383279,7816,0 +45735,%3D073%3D+Na+wschodzie+Zima,708,564,3781794,10580,0 +45736,%23%23%23044%23%23%23,597,688,698285444,10495,0 +45737,Wioska+barbarzy%C5%84ska,704,474,699574408,8491,0 +45738,Wioska+barbarzy%C5%84ska,624,664,6818593,6439,0 +45740,Wioska+barbarzy%C5%84ska,695,559,6929240,5321,0 +45741,0020,515,527,699432672,10495,0 +45742,040.+Iczy%C5%84ska+Sopka,702,556,1601917,7775,0 +45743,Wioska+barbarzy%C5%84ska,317,594,7183372,5385,0 +45744,Wioska+barbarzy%C5%84ska,538,294,698350371,6325,0 +45745,Taran,326,623,6180190,9976,3 +45746,%5B0182%5D,288,495,8630972,7915,0 +45747,wioska,631,337,849102068,12154,0 +45748,komandos,632,661,7976264,8556,0 +45749,017,529,708,698996782,9033,0 +45750,bucksbarzy%C5%84skamiiiru,335,380,848955783,4739,0 +45752,Wioska+barbarzy%C5%84ska,671,388,8675636,9779,0 +45753,0029,323,386,2321390,2602,0 +45754,Wioska+barbarzy%C5%84ska,559,703,699828442,9163,0 +45755,007,648,651,849101148,8099,0 +45756,%5B0114%5D,440,312,8630972,10140,0 +45757,KONFA+TO+MARKA%2C+NARKA,295,445,698152377,10290,0 +45758,0017,500,495,698599365,9778,0 +45760,%3F%3F%3F%3F,469,293,698489071,7356,0 +45762,%2AINTERTWINED%2A,511,704,698704189,9520,0 +45763,Wiadro06,670,629,8677963,8273,0 +45764,%23K75+0001,520,715,699728159,9761,0 +45765,005,295,558,9280477,9791,0 +45766,Wow13,359,350,849027025,4421,0 +45767,0047+village,438,694,849037407,10447,0 +45768,017,648,348,9148043,5650,7 +45769,009+-+Nowy+Pocz%C4%85tek...,358,649,6948793,10375,0 +45770,014+Angers,612,361,6822957,10534,0 +45771,Wioska+barbarzy%C5%84ska,580,311,828637,10345,0 +45772,Gomora,418,312,699694284,8932,0 +45774,Wioska+barbarzy%C5%84ska,631,336,7555180,6515,0 +45775,Wioska+barbarzy%C5%84ska,376,669,699269923,7853,0 +45776,Wioska+barbarzy%C5%84ska,333,373,849027025,2740,0 +45777,001.+G%C3%B3rki+Wielkie,653,637,849100994,10845,0 +45778,037,674,386,698635863,7837,0 +45779,049+sebaseba1991,619,675,699346280,10160,0 +45780,New+WorldA,294,523,849084005,8763,0 +45781,010.+Wioska+barbarzy%C5%84ska,342,638,698908184,9806,0 +45782,Wioska+barbarzy%C5%84ska+3,307,585,699016994,9733,0 +45783,Wioska+barbarzy%C5%84ska,710,489,699429153,7355,0 +45784,Verka,626,336,849061374,7161,0 +45785,005,593,308,1767876,2660,0 +45786,Wioska+barbarzy%C5%84ska,686,606,3589487,2658,0 +45787,C.002,704,494,9188016,10000,6 +45788,Wioska+barbarzy%C5%84ska,537,294,698350371,8853,0 +45789,017.+Pomodoro+e+basilico,330,379,849102092,4715,0 +45790,%5B0300%5D,431,306,8630972,5999,0 +45791,Piek%C5%82o+to+inni,638,341,848956765,5123,0 +45792,MojeDnoToWaszSzczyt,503,289,9299539,9962,0 +45793,New+World,421,694,698152377,10294,0 +45794,047+Austria,577,465,7092442,10495,0 +45795,KR%C3%93L+PAPI+WIELKI,662,635,698191218,10000,0 +45796,007.+Stories,712,508,254937,9788,3 +45798,C0342,295,539,8841266,2563,0 +45799,014,391,325,8153941,2895,0 +45800,Wioska+barbarzy%C5%84ska,553,698,7589468,8097,0 +45801,MojeDnoToWaszSzczyt,505,294,9299539,9964,0 +45802,C0244,293,528,8841266,4780,0 +45803,asd,622,331,8675636,8576,0 +45804,%3D115%3D+Albany,700,568,3781794,7272,0 +45805,Wioska+barbarzy%C5%84ska,573,701,7756002,5729,0 +45806,-+273+-+SS,553,700,849018239,6957,0 +45807,O041,334,627,272173,10068,0 +45808,Wioska+barbarzy%C5%84ska,636,657,848987051,9981,0 +45809,Wioska+barbarzy%C5%84ska,618,677,6818593,4475,0 +45810,%23%23%23098%23%23%23,580,692,698285444,10495,0 +45811,D008,353,645,272173,9821,0 +45812,O122,332,622,272173,9824,0 +45813,Osada+4,699,423,8675636,9560,0 +45814,Didi,682,568,849070946,10141,0 +45815,Wioska+barbarzy%C5%84ska,689,589,7038651,1362,0 +45816,Wioska+barbarzy%C5%84ska,518,292,7758085,8368,0 +45817,Wioska+barbarzy%C5%84ska,709,488,699429153,7155,0 +45818,Wioska+barbarzy%C5%84ska,336,376,7462660,2825,0 +45820,059,714,514,7085502,8030,0 +45821,Wioska+barbarzy%C5%84ska,384,323,699660539,3697,0 +45822,Wioska+barbarzy%C5%84ska,376,672,699269923,8172,0 +45823,Wioska+barbarzy%C5%84ska,362,654,849014922,9835,0 +45824,%23%23%23045%23%23%23,599,687,698285444,10495,0 +45825,015.+Wioska+barbarzy%C5%84ska,345,637,698908184,8284,0 +45826,KATTEGARD,494,288,763529,5387,0 +45827,237,405,316,7271812,2799,0 +45828,%5B0266%5D,290,514,8630972,5903,0 +45829,Wioska+barbarzy%C5%84ska,708,524,7047342,8879,0 +45830,Elo+Elo+14,313,583,699016994,5992,0 +45831,023.Stradi,434,305,698365960,10495,0 +45832,A%23009,712,500,2065730,9797,0 +45833,Bytom,487,288,699278528,9013,0 +45834,%5B0227%5D,289,505,8630972,4883,0 +45836,041,305,577,926823,1754,0 +45837,NBT+2,593,693,849047044,6863,0 +45838,C084,358,653,699383279,9907,0 +45839,C.021,709,480,9188016,4678,0 +45840,Wioska+barbarzy%C5%84ska,576,308,828637,10011,0 +45841,Wied%C5%BAma+-+Z+011,303,434,9239515,3233,0 +45842,014.+Changtse,707,552,1601917,10495,0 +45844,Wydzia%C5%82+zamiejscowy,300,424,699821629,7658,0 +45846,Z25,311,406,356642,9835,0 +45847,Taran,684,402,699598425,10728,0 +45848,.achim.,482,290,6936607,6281,0 +45849,04.+Konstantynopol,710,537,848946700,10481,0 +45850,007,304,422,8259895,4544,0 +45851,Wioska+barbarzy%C5%84ska,593,311,698350371,3188,0 +45852,%C5%BBUBEREK+019+Dawaj+grube+majster%21,608,677,33900,10585,0 +45853,018,656,643,2323859,8794,0 +45854,Orze%C5%82+Wyl%C4%85dowa%C5%82,455,657,698807570,7065,0 +45855,kto+ananasowy+pod+wod%C4%85+ma+dom,708,450,699628084,9938,0 +45856,54+nie+barbarzy%C5%84ska,296,458,849018442,5186,0 +45857,005,591,312,1767876,4229,0 +45860,EO+EO,294,502,699697558,8428,0 +45861,Winterfell.009,454,299,848918380,10178,3 +45863,0020,394,318,2321390,5106,0 +45864,001+IIIIIIIIIIIII,394,326,8153941,9885,0 +45865,Koziarowo+4,505,295,849100228,9133,0 +45867,Angella+xx,653,353,699875213,2389,0 +45868,271...emerson,461,297,6920960,7014,0 +45869,Taran,327,625,6180190,8888,0 +45871,Monte+Christo,703,435,699785935,7545,0 +45872,Z15,315,405,356642,9835,0 +45873,Wioska+WITWIC,696,423,699488108,9965,0 +45874,Pocz%C4%85tek,308,581,7842579,10040,0 +45875,Wied%C5%BAma+-+Z+010,299,434,9239515,2255,0 +45876,043.,450,708,849034882,10426,0 +45877,%5B0183%5D,287,498,8630972,8682,0 +45878,Dzik+14,300,428,8366045,3670,0 +45880,079,412,687,849099876,9004,0 +45882,Wioska,385,320,2268889,6105,0 +45884,006,594,318,699098531,3964,0 +45885,027Porz%C4%85dki,463,710,698620694,6300,0 +45886,25.+Kurde+fele,483,708,849092769,10184,0 +45887,O014,337,634,272173,9956,0 +45888,%23%23%23014%23%23%23,600,682,698285444,10495,9 +45890,Jednak+wol%C4%99+gofry,464,704,699725436,9624,0 +45891,KR%C3%93L+PAPI+WIELKI,644,646,698191218,9685,0 +45892,krytl19,511,317,1990750,7523,0 +45893,KONFA+TO+MARKA%2C+NARKA,295,437,698152377,7827,0 +45894,007a,304,423,8259895,5273,0 +45895,Z21,317,403,356642,9835,0 +45896,Wioska+barbarzy%C5%84ska,689,422,699488108,4953,0 +45897,%23043,549,292,849064614,4518,0 +45898,051,712,511,7085502,6608,0 +45899,C08,705,447,849093742,6125,0 +45901,Wioska+barbarzy%C5%84ska,671,622,1049851,4015,0 +45902,014,389,319,699660539,3500,0 +45903,Wioska+barbarzy%C5%84ska,560,700,7860453,4633,0 +45904,Na+SsSskraju,299,557,1536625,9170,6 +45905,Wioska+barbarzy%C5%84ska,374,666,699269923,7671,0 +45906,sebastianxxx19,623,667,848909464,10319,0 +45907,0031,322,385,2321390,2535,0 +45908,026.,622,670,699695167,4282,0 +45909,Wioska+barbarzy%C5%84ska11,291,522,698879638,2221,0 +45910,bucksbarzy%C5%84skamiiiru,319,398,848955783,8965,0 +45911,B008,626,328,8740199,9974,0 +45912,Wioska+barbarzy%C5%84ska,650,353,1715091,2876,0 +45913,10.BTOB,692,416,9180206,8704,0 +45914,021,302,561,849098688,9835,0 +45915,Wioska+barbarzy%C5%84ska,517,318,698350371,5737,0 +45916,C.022,710,486,9188016,5397,0 +45917,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,487,710,8980651,6999,0 +45918,Blob,551,706,699443920,9371,0 +45919,Wioska+barbarzy%C5%84ska,381,328,3698627,9958,0 +45920,59+Go%C5%9B%C4%871,295,475,849018442,8467,2 +45921,Wioska+Staszek+M,568,694,698723158,5467,0 +45922,-+207+-+SS,544,699,849018239,7759,0 +45923,048.+Jastrz%C4%99bia+Turnia,700,549,1601917,7721,0 +45924,%2AW000,663,376,7758085,9377,0 +45925,Melon3,308,429,699659708,4037,0 +45926,Wioska+barbarzy%C5%84ska,642,651,848987051,10237,0 +45927,Tzarski+-+o3,646,652,699783063,5339,0 +45928,%3D077%3D+BORSUCZEK,699,566,3781794,9388,0 +45929,.achim.,479,289,6936607,9549,0 +45930,013+telimena,615,680,699346280,10160,0 +45931,Wioska+barbarzy%C5%84ska,397,315,698231772,8372,0 +45932,Nie+Teraz,710,456,699785935,8328,0 +45933,Wioska+barbarzy%C5%84ska,579,307,828637,9908,0 +45935,Wulfenit,704,553,17714,10222,0 +45936,018,293,463,2418364,4061,0 +45937,012,699,468,699150527,10040,0 +45938,064-+Mroczna+Osada,654,360,849035905,2492,0 +45941,C11,702,448,849093742,4946,0 +45942,Czekaj%2C+chwila%21,688,399,699785935,6767,0 +45943,C0214,292,533,8841266,8985,0 +45944,%3D088%3D+Wioska+barbarzy%C5%84ska,703,561,3781794,9357,0 +45945,.achim.,481,287,6936607,8726,3 +45946,B%23023,703,455,2065730,9797,0 +45947,Wioska+barbarzy%C5%84ska,652,354,1715091,3082,0 +45948,%5B201%5D,678,602,8000875,4293,0 +45949,Wioska+barbarzy%C5%84ska,696,562,6929240,6080,0 +45950,Wioska+barbarzy%C5%84ska,303,582,698663855,3552,0 +45951,071-+Mroczna+Osada,621,333,849035905,2493,0 +45952,B%23006,700,450,2065730,9797,0 +45953,Wioska+barbarzy%C5%84ska,598,689,7756002,2158,0 +45954,MojeDnoToWaszSzczyt,495,294,9299539,9980,0 +45955,Wioska+G,541,295,1867161,3152,0 +45956,Wioska+barbarzy%C5%84ska,504,709,698704189,5600,0 +45958,New+World,420,694,698152377,10295,0 +45959,Pocz%C4%85tek,307,583,7842579,9763,0 +45960,0057+181.04,449,701,849037407,4800,0 +45962,C116,360,653,699383279,9620,0 +45963,202,368,663,699269923,9564,0 +45964,153,399,687,849099876,10495,0 +45965,206...segador,454,301,6920960,10744,0 +45966,Jednak+wol%C4%99+gofry,425,648,699736927,6328,0 +45967,007b,303,421,8259895,5743,0 +45968,pozew,703,527,1895081,2274,0 +45969,005+VLV,560,304,849100656,9367,0 +45970,C077,359,661,699383279,4383,0 +45971,A%23023,711,504,2065730,9797,0 +45972,4+KORN,345,357,6315553,2931,0 +45973,Wioska+barbarzy%C5%84ska,631,341,849102068,2656,0 +45974,030.+G%C5%82owa+Cukru,708,539,1601917,8194,0 +45975,Horyzont+zdarze%C5%84,517,551,7581876,10019,0 +45976,Wioska+przembarca20,286,505,9148439,8120,0 +45977,Joanna,526,708,699733501,9804,0 +45978,Wioska+barbarzy%C5%84ska,379,331,3698627,9250,0 +45979,So%C5%82tys+Wsi+Maciekp011,353,348,849027025,9553,0 +45980,bucksbarzy%C5%84skamiiiru,317,400,848955783,6931,0 +45981,C0221,291,533,8841266,6007,0 +45982,0069+Wioska+barbarzy%C5%84ska,446,704,849037407,8601,0 +45983,%2A225%2A,333,382,699273451,10211,4 +45984,Wioska+barbarzy%C5%84ska,695,433,1715091,9365,0 +45986,C065,359,653,699383279,10194,0 +45987,232,422,330,7271812,4521,0 +45988,017.+Wioska+barbarzy%C5%84ska,349,636,698908184,7749,0 +45989,Vedette,553,293,699072129,10362,0 +45990,Wioska+barbarzy%C5%84ska,711,491,699429153,5436,0 +45991,%5B0126%5D,447,299,8630972,9582,0 +45992,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,487,709,8980651,10220,0 +45993,Wioska+barbarzy%C5%84ska,633,657,848987051,10067,0 +45994,05.+Kaer+Moren,709,541,8976313,9808,0 +45995,Z20,316,404,356642,9835,0 +45996,010,324,378,7386358,2982,0 +45997,Wioska+barbarzy%C5%84ska,303,556,5997814,4679,0 +45998,Wioska+barbarzy%C5%84ska,588,309,828637,10474,0 +45999,TWIERDZA+.%3A004%3A.,694,577,7154207,10275,0 +46000,0027+Wioska+barbarzy%C5%84ska,442,700,849037407,10476,0 +46001,O081,333,628,272173,9887,0 +46003,002,528,288,699818726,8584,0 +46004,AAA,534,298,1006847,8921,0 +46005,K33,320,384,699794765,3012,0 +46006,003,521,296,699208929,10469,4 +46008,Avanti%21,286,485,698625834,8929,0 +46009,Mniejsze+z%C5%82o+0024,318,391,699794765,7920,8 +46010,B15,695,545,848995478,10640,0 +46011,0111,395,675,7085510,8565,6 +46012,D010,350,649,272173,8832,0 +46013,120+invidia,499,711,849093426,8553,0 +46014,G001,515,291,699208929,9912,0 +46015,Akademia+Sztuk+Pi%C4%99knych,701,431,699785935,6439,0 +46016,New+World,435,697,698152377,10297,0 +46017,Bagno+23,486,713,848883684,7346,0 +46018,New+World,422,691,698152377,10294,0 +46020,FAKE+OR+OFF,408,311,698231772,9706,0 +46021,026,704,468,849091105,8636,5 +46022,XXX,292,474,699794765,9282,0 +46023,bucksbarzy%C5%84skamiiiru,318,395,848955783,10001,0 +46024,Kagusiowo+2,298,439,849101268,6129,0 +46025,A-001,324,379,699406247,9299,0 +46026,%5B0140%5D,447,295,8630972,9420,0 +46028,Taran,312,597,6180190,6258,0 +46029,Wioska+barbarzy%C5%84ska,511,711,698704189,1963,0 +46030,EEE+Barba+2,464,289,699796330,9140,0 +46031,Psycho+to+Marka%2C+Narka+%21,303,570,698167138,6300,0 +46032,Wioska+barbarzy%C5%84ska,534,295,698350371,8715,0 +46033,WB17,311,418,356642,6295,0 +46034,%7C%7CUzbekistan,289,532,699697558,8051,0 +46035,109+invidia,504,711,849093426,10495,8 +46036,Deeee,289,474,848981726,10083,0 +46037,Wioska+barbarzy%C5%84ska,341,367,7462660,9722,0 +46038,EO+EO,288,521,699697558,9177,0 +46039,Zeta+Reticuli+OO,471,287,699323302,10728,0 +46040,bucksbarzy%C5%84skamiiiru,328,382,848955783,2717,0 +46041,0154,387,679,7085510,4530,0 +46042,Zermatyzm,297,439,848970357,1350,0 +46043,C0347,298,537,8841266,2263,0 +46044,0062,365,339,848913037,9993,0 +46045,Wioska+barbarzy%C5%84ska,382,671,699269923,8033,0 +46046,KR%C3%93L+PAPI+WIELKI,661,637,698191218,10000,0 +46047,020,298,561,9280477,7709,0 +46048,Wioska+C,540,291,1867161,5120,1 +46049,Bessa+004,641,659,848987051,10010,0 +46050,MojeDnoToWaszSzczyt,498,287,9299539,9973,0 +46051,%23041%23,626,635,692803,9761,0 +46052,G003,515,296,699208929,8244,0 +46053,Wioska+barbarzy%C5%84ska,389,674,6948793,7681,0 +46054,019,509,282,849010255,9854,0 +46055,002,438,298,699562874,8836,1 +46057,026+Wioska+barbarzy%C5%84ska,604,677,699346280,9401,0 +46058,003,313,593,6180190,9815,6 +46059,O070,328,626,272173,9868,0 +46060,013,466,709,848896948,9582,0 +46061,028,701,459,849031818,4320,0 +46062,Szlachcic,361,339,698388578,5706,0 +46063,085+Ard+Carraigh,545,292,699854484,9899,0 +46065,Jednak+wol%C4%99+gofry,465,702,699725436,8988,0 +46067,Wioska+barbarzy%C5%84ska,303,584,698663855,4099,0 +46068,FAKE+OR+OFF,423,302,698231772,9960,0 +46069,Co+masz+w+%C5%9Brodku%3F,689,403,699785935,7315,0 +46070,Wioska+barbarzy%C5%84ska,569,696,698723158,4464,0 +46071,Wiadrowo+Dolne,288,490,849100877,4965,0 +46072,053.+Wioska+barbarzy%C5%84ska,706,472,7494497,8568,0 +46073,W26,690,416,699524362,3078,0 +46074,%2136+65+Todiresti,659,369,698361257,9749,0 +46075,Z%C5%82oty+%C5%9Awit,570,297,699883079,7476,0 +46076,012,312,589,6180190,7882,0 +46077,Wioska+barbarzy%C5%84ska,422,302,698231772,8681,0 +46078,Wioska+barbarzy%C5%84ska,704,515,254937,8504,0 +46079,%3D071%3D+Wioska+barbarzy%C5%84ska,701,562,3781794,9386,0 +46080,Wioska+barbarzy%C5%84ska,652,358,1715091,2822,0 +46081,Wioska+barbarzy%C5%84ska,533,289,849088639,5901,0 +46082,Osada+5,699,425,8675636,9494,0 +46083,Osada+10,695,432,699524891,9761,0 +46084,Wioska+barbarzy%C5%84ska,706,557,17714,9887,0 +46085,017+G%C3%B3rki+G%C3%B3reczki,653,640,849100994,3532,0 +46086,Bessa+014,642,653,848987051,10115,0 +46087,031.+Girowa,710,534,1601917,10409,0 +46088,0072+Wioska+barbarzy%C5%84ska,447,690,849037407,4032,0 +46089,WB15,309,414,356642,4704,0 +46090,Wioska+barbarzy%C5%84ska,337,368,7462660,4607,0 +46091,KONFA+TO+MARKA%2C+NARKA,301,445,698152377,7884,0 +46092,TWIERDZA+.%3A002%3A.,692,577,7154207,10311,0 +46093,0111,708,500,699429153,9584,0 +46094,007,297,557,9280477,9976,4 +46095,a-7,677,610,848921861,6859,0 +46096,06.+Val+Dorcia,708,540,848946700,10495,0 +46097,%23%237,347,352,2800032,6919,0 +46098,FP030,470,707,699605333,8987,0 +46099,New+World,434,698,698152377,10306,0 +46100,Taran,324,621,6180190,9486,0 +46101,Wioska+barbarzy%C5%84ska+003,562,705,6870350,9789,0 +46102,098.Stradi,441,293,698365960,9553,0 +46103,Wioska+barbarzy%C5%84ska,532,297,699818726,4628,0 +46104,Wioska+barbarzy%C5%84ska,707,531,848946700,2154,0 +46105,%2136+66+Partesti+de+Sus,660,366,698361257,9950,0 +46106,%3F%3F%3F%3F,476,288,698489071,9506,0 +46107,Dream+on,290,474,698962117,6556,0 +46108,Kurnik,474,709,699603116,7002,0 +46109,O065,335,625,272173,9867,0 +46110,i+na+co+to,378,677,849097837,8465,0 +46111,Wioska+barbarzy%C5%84ska,714,500,8418489,3649,0 +46112,03-oss,677,619,848921861,10187,0 +46113,KR%C3%93L+PAPI+WIELKI,658,631,698191218,10000,9 +46114,041,410,689,849099876,10495,0 +46115,O129,331,621,272173,6401,0 +46116,a-4,676,613,848921861,10495,0 +46117,Wioska+barbarzy%C5%84ska,318,594,7183372,5710,0 +46118,Bessa+002,642,656,848987051,9993,1 +46119,016.+Wioska+barbarzy%C5%84ska,343,639,698908184,8477,0 +46120,017.,665,376,699580120,7864,0 +46121,17+Adamuswielki2..,292,451,849018442,9386,0 +46122,Wioska+barbarzy%C5%84ska,576,306,828637,9880,0 +46123,003,395,324,8153941,8177,0 +46124,%2AINTERTWINED%2A,508,706,698704189,6061,0 +46125,New+WorldA,295,548,849084005,6394,0 +46126,004,467,373,699883079,8394,0 +46127,XXXX,561,298,849054951,9746,0 +46128,Zielony+4,299,452,699876746,4001,0 +46129,Wioska+barbarzy%C5%84ska,686,411,699598425,6726,0 +46130,KR%C3%93L+PAPI+WIELKI,643,646,698191218,10008,0 +46131,S011,688,591,8428196,7636,0 +46132,035+Wioska+barbarzy%C5%84ska,606,685,699346280,9800,0 +46133,New+WorldA,288,523,849084005,6058,0 +46134,018,396,321,8153941,3736,0 +46135,Wioska+Bipi,625,338,699126490,2835,0 +46136,Wyspa,383,674,698769107,2207,0 +46137,01-oss,677,617,848921861,10187,0 +46138,-+256+-+SS,557,698,849018239,6366,0 +46139,Wioska+barbarzy%C5%84ska,650,356,0,1631,0 +46140,Wioska+barbarzy%C5%84ska,334,526,9280477,361,0 +46141,Wioska+barbarzy%C5%84ska,629,664,848909464,9431,0 +46142,141,395,682,849099876,10495,0 +46143,New+World,418,694,698152377,10300,0 +46144,Wioska+barbarzy%C5%84ska,312,554,848901396,2737,0 +46145,Bongo+Wielkie,292,490,849100877,954,0 +46146,FAKE+OR+OFF,402,311,698231772,9813,0 +46147,098,403,695,849099876,7775,0 +46148,%5B0135%5D,446,300,8630972,9588,0 +46149,53+nie+barbarzy%C5%84ska,292,454,849018442,5099,0 +46150,P%C3%B3%C5%82nocny+Bagdad,617,321,8847546,9899,0 +46151,--002--,567,300,542253,7267,0 +46152,I104,684,456,699722599,8206,0 +46153,KR%C3%93L+PAPI+WIELKI,712,523,698191218,7888,0 +46154,KONFA+TO+MARKA%2C+NARKA,300,446,698152377,6700,2 +46155,Tylko+dla+Vampirki%21,687,403,699785935,10160,0 +46156,Wioska+barbarzy%C5%84ska,536,289,849088639,5912,0 +46157,Elo+Elo,309,583,699016994,10241,0 +46158,Wiadro09,673,627,8677963,7436,0 +46159,%2136+66+Granicesti,664,361,698361257,6477,0 +46160,Wioska+barbarzy%C5%84ska,706,524,2135129,3516,0 +46161,Aaa,570,704,849055425,6834,0 +46162,Zaplecze+Barba+6,368,332,699796330,9747,0 +46163,Wioska+barbarzy%C5%84ska,708,469,699574408,7341,0 +46164,XDX,607,321,699098531,10093,0 +46165,Lord+Arsey+KING,659,644,848956513,8576,0 +46166,A%23036,710,491,2065730,9797,0 +46167,CastAway+%21033,687,605,9314079,5412,0 +46168,%2136+65+Calafindesti,658,361,698361257,5796,0 +46170,0085,682,393,698416970,5347,0 +46172,ZZ08,310,411,356642,8478,0 +46173,Taran,324,608,6180190,8553,0 +46174,Wioska+barbarzy%C5%84ska+1,311,582,699016994,9790,0 +46175,046+sebaseba1991,621,675,699346280,10160,0 +46176,Wancki,515,288,7758085,9861,0 +46177,XDX,597,315,699098531,6073,0 +46178,%2136+65+Mitocu+Dragomirnei,654,366,698361257,6129,0 +46179,020+G%C3%B3rki+Krajobrazowe,646,645,849100994,6745,0 +46180,C09,703,451,849093742,5995,0 +46182,bucksbarzy%C5%84skamiiiru,319,392,848955783,9720,0 +46183,ChceszPokojuSzykujSi%C4%99DoWojny,485,710,699333701,9745,0 +46184,tylko+pp,509,286,8240677,7457,0 +46185,Wioska+barbarzy%C5%84ska+3,452,703,698178312,4635,0 +46186,%3D0021%3D,402,316,698231772,9511,0 +46187,New+World,419,698,698152377,9557,0 +46188,C10,703,448,849093742,5125,0 +46189,Obrze%C5%BCe,578,695,7589468,8820,0 +46190,0.17b,459,709,699827112,9662,0 +46191,xxx,318,610,849100811,2546,0 +46192,Bur%C5%82ak,551,701,699443920,9761,5 +46193,Wioska+barbarzy%C5%84ska,535,706,9016560,3097,0 +46194,Wioska+barbarzy%C5%84ska,703,542,848946700,5900,0 +46195,%23%23%23099%23%23%23,579,692,698285444,10495,0 +46196,-+229+-+SS,549,699,849018239,5103,0 +46197,New+World,421,697,698152377,6460,0 +46198,A%23021,712,507,2065730,9797,0 +46199,%2A03+GAWRA%2A,304,427,2415972,9402,5 +46200,BORSUK,458,293,1238300,9460,0 +46201,XDX,600,321,699098531,6438,0 +46202,Dream+on,291,484,698962117,3451,0 +46203,Wioska+barbarzy%C5%84ska,308,419,0,290,0 +46204,PIROTECHNIK+001,353,346,849101083,9637,0 +46205,004,645,351,9291984,9701,0 +46206,WANADYNIT,703,550,17714,10363,0 +46207,003+super+hero,603,687,699346280,10160,0 +46208,009,296,548,849098688,8234,0 +46209,017.+Night+Raid,494,707,699684062,6481,0 +46210,wioska,635,338,849102068,3330,0 +46211,Kagusiowo+10,303,444,849101268,4641,0 +46212,KR%C3%93L+PAPI+WIELKI,711,508,698191218,6032,0 +46213,Kurnik,471,711,699603116,9530,0 +46215,019.Stradi,432,306,698365960,10495,0 +46216,czeska+gura,567,703,849055425,9124,0 +46217,0118,705,505,699429153,9825,0 +46219,28.BlockB,690,424,9180206,4828,0 +46221,Zaplecze+drewniane+2,371,339,699796330,9887,1 +46222,082+Hjubal,713,505,2135129,4417,0 +46223,044,662,359,9148043,6652,0 +46225,027,294,561,9280477,7129,0 +46226,Zagroda6,609,674,6528152,6560,6 +46228,New+WorldA,289,535,849084005,6802,0 +46229,Sandomierz,297,560,849101092,7943,0 +46231,4...,647,353,9291984,2160,0 +46232,014,526,292,699208929,6581,0 +46233,North+015,501,287,849064752,9791,0 +46234,Polandia,519,294,3298902,4970,0 +46236,Wioska+X06,297,460,698701911,3986,0 +46237,XDX,611,324,699098531,9623,0 +46238,Wioska+barbarzy%C5%84ska,371,330,3698627,9968,0 +46239,New+WorldA,287,523,849084005,5802,0 +46240,002,347,650,849101293,2733,0 +46241,1.05,438,703,699827112,9741,8 +46242,Wioska+barbarzy%C5%84ska,341,370,7462660,6235,0 +46243,%3D072%3D+Wioska+barbarzy%C5%84ska,700,563,3781794,9174,0 +46244,204,426,302,698365960,6784,0 +46245,Wioska+barbarzy%C5%84ska,377,672,699269923,9555,0 +46246,Wioska+barbarzy%C5%84ska,631,657,848987051,10223,0 +46247,FAKE+OR+OFF,408,309,698231772,9707,0 +46248,ElMajkelos+III,416,304,849085160,9633,0 +46249,bucksbarzy%C5%84skamiiiru,326,384,848955783,3578,0 +46250,017+Therinsford,690,597,8337151,10083,0 +46251,Z%C5%82oty+%C5%9Awit,591,315,699883079,3725,0 +46252,KR%C3%93L+PAPI+WIELKI,630,662,698191218,7997,0 +46253,Wioska+barbarzy%C5%84ska,620,672,6818593,6349,0 +46254,Pocz%C4%85tek,311,592,6180190,10040,0 +46255,0079,683,391,698416970,10019,0 +46256,Wioska+barbarzy%C5%84ska,699,443,699524891,7270,0 +46258,C0341,295,538,8841266,2640,0 +46259,a-8,679,611,848921861,5304,0 +46260,Pocz%C4%85tek,312,591,6180190,8636,0 +46261,MojeDnoToWaszSzczyt,497,293,9299539,9559,7 +46262,O111,332,623,272173,7724,0 +46263,Ger1,712,524,2246711,7973,0 +46265,012.+Arrabiata,320,383,849102092,7538,0 +46266,C.032,713,474,9188016,4475,0 +46267,Osada+9,703,426,8675636,10019,0 +46268,13+Pid%C5%BCama,712,467,849101845,9413,0 +46269,Melina,626,658,849101104,3774,0 +46270,C086,366,661,699383279,7424,0 +46271,004b,305,416,8259895,4878,0 +46272,Komandos,633,663,7976264,10495,0 +46273,096+invidia,544,710,849093426,5201,0 +46274,Wioska+barbarzy%C5%84ska,693,406,8675636,9043,0 +46275,ChceszPokojuSzykujSi%C4%99DoWojny,494,715,699333701,4982,0 +46276,predator,342,643,698908184,9214,2 +46277,EE+013,693,583,849100149,5758,0 +46278,C0240,294,546,8841266,10252,6 +46279,EO+EO,291,496,699697558,10019,0 +46280,041.+Inowiec,708,531,1601917,9413,0 +46281,%7C%7CIrak,291,531,699697558,10495,0 +46282,Wioska+barbarzy%C5%84ska,336,369,849027025,3245,0 +46283,Wioska+barbarzy%C5%84ska,707,517,699150527,7874,0 +46284,East2,677,378,1086351,6957,1 +46285,O086,334,626,272173,9938,0 +46286,New+WorldA,288,535,849084005,6243,0 +46287,rafisonik2,511,713,849101108,12154,0 +46288,Z%C5%82oty+%C5%9Awit,577,305,699883079,7918,0 +46289,bucksbarzy%C5%84skamiiiru,323,388,848955783,4951,0 +46290,Tiger+districk,659,358,699875213,3214,0 +46291,005,312,588,6180190,9899,0 +46292,Dream+on,294,484,698962117,8890,0 +46293,013,390,319,699660539,6968,0 +46294,Zzzz+-+Kasztelania+005,641,350,699733098,4208,0 +46295,D017,354,649,272173,5978,0 +46296,Wioska+0022,348,652,9186126,8626,0 +46298,Gattacka,614,386,699298370,7536,0 +46299,Wioska+barbarzy%C5%84ska,715,492,699429153,7267,0 +46300,%23%23%23100%23%23%23,585,697,698285444,10495,0 +46301,Wioska+barbarzy%C5%84ska,714,493,699429153,7310,0 +46303,038,673,383,698635863,9156,0 +46304,Wioska+08,691,589,849101162,5627,0 +46306,klops33,628,671,848909464,10242,0 +46308,%3F%3F%3F%3F,473,291,698489071,10009,0 +46309,komandos,636,665,7976264,10495,0 +46310,klops3,626,667,848909464,10242,0 +46311,Wioska+mygos,454,700,698178312,12154,0 +46312,Taran,325,625,6180190,9348,0 +46313,HAPERT,624,663,848909464,11891,0 +46314,...04+am,673,619,848921861,10495,0 +46315,KONFA+TO+MARKA%2C+NARKA,296,445,698152377,6195,0 +46316,.achim.,484,292,6936607,5285,0 +46317,010,389,321,8153941,3762,0 +46318,C.01+a+panicz+to+dok%C4%85d%3F,550,298,849026145,8995,0 +46319,B002+ZieNciu+Glina,706,463,113796,10160,2 +46320,Kurnik,517,708,699603116,8689,0 +46321,Elo+elo+3,310,585,699016994,9298,0 +46322,029,664,637,2323859,4533,0 +46323,Wioska+barbarzy%C5%84ska,336,367,849027025,4654,0 +46324,Kolorowo,686,397,699785935,6540,0 +46325,Wioska+barbarzy%C5%84ska,572,304,828637,5040,0 +46326,149,400,683,849099876,7858,0 +46327,%2AINTERTWINED%2A,514,712,698704189,3904,0 +46328,02.+Oxenfurt,705,541,8976313,9372,0 +46329,Szlachcic,363,338,698388578,6584,0 +46330,Brze%C5%BAno+Szlacheckie,459,294,849101116,9155,0 +46331,PIROTECHNIK+004,352,345,849101083,5661,0 +46332,070.,707,463,849094609,3435,0 +46333,004,303,417,8259895,4930,0 +46334,%230153+barbarzy%C5%84ska,488,292,1238300,6848,0 +46335,BOSS+S,353,344,849101604,7950,0 +46336,FAKE+OR+OFF,404,311,698231772,9825,0 +46337,Didiek,689,585,849070946,3314,0 +46338,NBT,595,690,849047044,9736,0 +46339,14.+Go%C5%82e+BABY,477,709,849092769,7126,0 +46340,002+mo%C5%BCe+si%C4%99+uda,512,709,849093426,10237,3 +46342,Wioska+barbarzy%C5%84ska,578,691,7756002,5728,0 +46343,0070+Wioska+barbarzy%C5%84ska,447,705,849037407,8751,0 +46344,Pontarfynach,352,653,849092685,4411,0 +46345,.achim.,482,286,6936607,6508,0 +46346,Wioska+barbarzy%C5%84ska,327,374,849064752,2462,3 +46347,Wioska+barbarzy%C5%84ska,393,319,698231772,5078,0 +46348,Szlachcic,361,340,698388578,8101,0 +46349,Wioska+A,542,293,1867161,6649,0 +46350,C0243,292,548,8841266,6652,0 +46351,FP016,477,704,699605333,10342,0 +46352,B%23024,705,460,2065730,9797,0 +46353,AAA,552,294,1006847,9083,0 +46354,Wioska+barbarzy%C5%84ska,641,339,9291984,4052,0 +46355,%2136+66+Plutonita,663,366,698361257,9860,0 +46356,%23K75+0010,522,713,699728159,5344,0 +46357,Wioska+barbarzy%C5%84ska,685,410,699598425,6533,0 +46358,Wioska+barbarzy%C5%84ska,373,668,699269923,7906,0 +46359,0142,391,680,7085510,4946,0 +46360,Pochodnie,704,439,849101378,4079,0 +46361,XDX,602,315,699098531,11164,0 +46362,S028,682,600,8428196,3167,0 +46363,0134,391,682,7085510,4529,0 +46364,Wioska+barbarzy%C5%84ska,710,544,17714,6978,0 +46365,Taran,329,613,6180190,9957,0 +46366,%5B014%5D,445,707,9094538,4121,0 +46367,Bessa+009,641,658,848987051,9979,0 +46368,32+Kreda,395,316,698231772,9829,0 +46369,-16-,572,702,849032414,8042,0 +46370,025.Stradi,433,303,698365960,10495,0 +46371,059...barbarka,439,296,6920960,10311,6 +46372,%2AINTERTWINED%2A,512,705,698704189,6678,0 +46374,306,441,297,7271812,4676,0 +46375,Wioska+barbarzy%C5%84ska,711,492,699429153,7427,0 +46376,%230187+grabarz22,469,288,1238300,4260,0 +46377,002.+Diavola,321,381,849102092,9746,0 +46378,Wioska+barbarzy%C5%84ska,513,288,7758085,9737,0 +46379,New+World,423,696,698152377,8003,0 +46380,046,662,358,698361257,5394,0 +46381,XDX,594,311,699098531,4601,0 +46382,059,404,692,849099876,10495,0 +46383,040.,451,709,849034882,10838,0 +46384,Pocz%C4%85tek,302,578,7842579,9875,0 +46385,z181_28,304,436,393668,8388,0 +46386,%23K75+0016,518,710,699728159,4916,0 +46387,Sta%C5%82o+si%C4%99,689,400,699785935,8252,0 +46388,AAA,319,606,6180190,8762,0 +46389,%2136+66+Solonetu+Nou,665,368,698361257,10317,8 +46390,%5BD%5D_%5B007%5D+Dejv.oldplyr,286,506,699380607,5899,0 +46391,38.+Pan+Maszynista,711,460,699804790,6336,0 +46392,%2AINTERTWINED%2A,510,710,698704189,6691,0 +46393,%2136+75+Botosanita+Mare,659,370,698361257,6370,0 +46394,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,549,709,7589468,7466,0 +46395,Wioska+barbarzy%C5%84ska,389,328,699660539,6420,0 +46396,Maszlug+kolonia+VIII,364,431,848977649,8177,0 +46397,C.033,708,476,9188016,4486,0 +46399,Wioska+X11,296,469,698701911,4499,0 +46400,0.05+CWKS,460,702,699827112,9713,0 +46401,KR%C3%93L+PAPI+WIELKI,662,637,698191218,10000,0 +46402,asdert,531,292,699818726,8870,0 +46403,-05-,577,700,849032414,9472,0 +46404,B14,704,542,848995478,11550,2 +46405,014,350,641,698908184,4335,0 +46406,KONFA+TO+MARKA%2C+NARKA,298,458,698152377,10291,0 +46407,009,391,318,8153941,6339,0 +46408,%23%23%23101%23%23%23,581,694,698285444,10495,0 +46410,Familia+Kuzyni,379,666,7349282,3344,0 +46411,AAA,314,606,6180190,10162,3 +46412,Taran,316,611,6180190,8547,0 +46413,006,684,606,3589487,3706,0 +46414,O132,324,620,272173,9899,0 +46415,Taran,323,620,6180190,8792,0 +46416,C.023,714,481,9188016,4677,0 +46417,Z00,672,384,849055553,5951,0 +46418,Wioska+KaszczuJ+3,700,575,849104356,9576,0 +46419,55+nie+barbarzy%C5%84ska,297,456,849018442,6642,0 +46420,Ave+Why%21,308,590,6180190,10358,0 +46421,Taran,319,610,6180190,9835,0 +46422,089.Stradi,436,298,698365960,9724,0 +46423,Wioska+barbarzy%C5%84ska,309,595,8699429,3249,0 +46424,%5B0176%5D,449,291,8630972,9410,0 +46425,0105,386,681,7085510,10216,0 +46426,KR%C3%93L+PAPI+WIELKI,670,620,698191218,9703,0 +46427,Z13,313,406,356642,9835,1 +46428,179,384,679,849099876,7600,0 +46429,XXXX,563,300,849054951,10068,0 +46430,D006,355,645,272173,8792,0 +46431,018,298,559,9280477,7717,0 +46432,a-1,677,618,848921861,10495,0 +46434,%23K75+0015,515,712,699728159,5322,0 +46435,013,395,323,8153941,3554,0 +46436,R+036,495,710,699195358,6796,0 +46437,O021,336,632,272173,9959,0 +46438,Wioska+barbarzy%C5%84ska,708,448,699628084,7333,0 +46439,Wioska-011-,634,335,7675610,2363,0 +46440,%230137+deleted,471,288,1238300,10178,0 +46441,TWIERDZA+.%3A062%3A.,692,581,7154207,6815,0 +46442,ZK+Wronki,548,705,7581876,6178,0 +46443,0032,324,387,848955783,2417,0 +46444,Mmmvvvv,289,476,848981726,8936,0 +46445,FP014,481,708,699605333,10393,0 +46446,Pocz%C4%85tek,311,591,6180190,6937,0 +46447,Dream+on,294,486,698962117,3518,0 +46448,Lipinki+%C5%81u%C5%BCyckie,539,350,849101144,8647,0 +46449,Wioska+barbarzy%C5%84ska,423,300,698231772,8850,0 +46450,Wioska+barbarzy%C5%84ska,374,334,3698627,9602,0 +46451,%5B0244%5D,287,514,8630972,6082,0 +46452,O060,332,624,272173,9876,0 +46453,Wioska+brutal29,709,535,1601917,3746,0 +46454,-+263+-+SS,549,705,849018239,5242,0 +46455,KR%C3%93L+PAPI+WIELKI,658,632,698191218,10000,0 +46456,C0250,289,533,8841266,5236,0 +46457,0143,390,682,7085510,5135,0 +46458,sh01,511,285,7064954,6618,0 +46459,028,302,558,9280477,7391,0 +46460,Wioska+k01,699,437,848976034,10184,0 +46461,%2136+66+Cajvana,664,364,698361257,9275,0 +46462,%3D087%3D+St.+Augustine,701,571,3781794,10580,0 +46463,606%7C373,668,371,699580120,9375,9 +46464,Cisza,293,547,698769107,5854,0 +46465,Taran,316,608,6180190,7862,0 +46466,%40rkowi+Zawodnicy+Dominuj%C4%85+Rybki,382,633,1434753,9010,0 +46467,Komandos,639,663,7976264,9569,0 +46468,039,672,382,698635863,8606,0 +46470,ElMajkelos+XII,417,307,849085160,3555,0 +46471,Kagusiowo+5,301,439,849101268,3514,0 +46473,Wioska+Zorro+030,685,607,849080702,4317,0 +46474,Wioska+barbarzy%C5%84ska,705,474,699574408,7547,0 +46475,EO+EO,289,503,699697558,8446,0 +46477,015,297,428,6131106,3983,0 +46478,Wioska+barbarzy%C5%84ska,538,703,8980651,9761,0 +46479,027.,633,668,699695167,4013,0 +46481,New+World,434,705,698152377,8871,0 +46482,003c,305,412,8259895,4852,7 +46483,%5B059%5D+Wioska+barbarzy%C5%84ska,691,424,849095068,4136,0 +46485,--033--,573,301,542253,6209,0 +46487,C019,371,668,699383279,9824,0 +46488,%2AINTERTWINED%2A,505,704,698704189,6938,0 +46489,New+World,435,699,698152377,10297,0 +46490,01.+Rome,712,538,848946700,10495,0 +46491,C007,537,702,698599365,5135,0 +46492,055.,316,597,7183372,7645,0 +46493,015.+Diran,710,550,1601917,10495,0 +46494,XDX,611,316,699098531,10290,0 +46496,0138,681,391,698416970,2627,0 +46497,BRICKLEBERRY,553,300,699072129,9681,5 +46499,FAKE+OR+OFF,407,314,698231772,9821,0 +46501,001+nie+chc%C4%99,534,711,6116940,6129,0 +46502,B027,624,326,8740199,8498,0 +46503,komands,638,663,7976264,9789,0 +46504,035,295,544,9280477,5767,0 +46505,Blessed,552,704,699443920,7470,0 +46506,092,414,688,849099876,9300,0 +46507,002+jakie%C5%9B+preferencje%3F,533,708,6116940,7161,0 +46508,%3D089%3D+Wioska+barbarzy%C5%84ska,701,563,3781794,7112,0 +46509,Wioska+barbarzy%C5%84ska,372,333,3698627,9852,0 +46510,Osada+koczownik%C3%B3w,299,424,699856962,7712,2 +46511,Wioska+01,692,591,849101162,9351,0 +46512,Borubar+6,710,485,699413581,4079,0 +46513,Wioska+barbarzy%C5%84ska,295,439,8366045,4173,0 +46514,Dream+on,292,485,698962117,5964,0 +46515,Bandalina,552,705,699443920,9761,0 +46516,Wioska+barbarzy%C5%84ska,711,496,699429153,9966,0 +46517,0071+Wioska+barbarzy%C5%84ska,444,705,849037407,4381,0 +46518,MojeDnoToWaszSzczyt,508,285,9299539,9952,0 +46519,%230217+Segadorr+dar,441,302,1238300,10178,4 +46520,011+Cedynia,287,533,9235561,3150,0 +46521,Bez+emocji+II,352,655,849092685,7938,0 +46522,C001,538,702,698599365,9595,0 +46523,Wioska+15,689,588,849101162,3742,0 +46524,Wioska+barbarzy%C5%84ska,645,654,848987051,10070,0 +46525,XDX,608,323,699098531,10048,0 +46527,Bosco,558,706,699443920,9761,0 +46528,Gotowa+odpowiedz,690,400,699785935,6850,0 +46529,WAVELLIT,708,551,17714,10216,0 +46530,Elo+elo+8,307,576,699016994,5202,0 +46531,20+Karbon,393,320,698231772,10083,5 +46532,New+World,420,693,698152377,5386,0 +46534,Wioska+barbarzy%C5%84ska,355,352,849027025,6461,0 +46535,Na+Kra%C5%84cu+%C5%9Awiata+018,640,343,9291984,4307,0 +46536,004,464,706,699725436,9555,0 +46537,%5B822%5D+Odludzie,706,439,848985692,6793,0 +46538,Wioska+barbarzy%C5%84ska,619,672,6818593,6967,0 +46539,a11,683,613,848921861,5598,0 +46540,Dream+on,293,478,698962117,3399,0 +46541,New+World,428,695,698152377,10291,0 +46542,Gites%21,389,322,8553904,2140,0 +46543,TWIERDZA+.%3A090%3A.,698,568,7154207,8581,0 +46544,B025,624,325,8740199,9616,0 +46545,Zzzz+-+Kasztelania+001,642,348,9291984,4605,0 +46546,Wioska+smurf%C3%B3w,525,287,699818726,9310,0 +46547,Ave+Why%21,502,715,699121671,5490,0 +46548,Wioska+barbarzy%C5%84ska,547,707,7581876,5697,0 +46549,XDX,609,323,699098531,10292,0 +46550,042.+Ihrowiec,701,552,1601917,7713,0 +46551,Jan+Ost+N+II,702,460,879782,5824,0 +46552,Taran,325,624,6180190,10068,0 +46553,Lord+Arsey+KING,650,653,848956513,8362,0 +46554,Osada+koczownik%C3%B3w,688,410,699598425,6631,7 +46555,Wioska+barbarzy%C5%84ska,373,666,699269923,8003,0 +46556,013.,627,668,699695167,9976,0 +46557,Z14,314,406,356642,9835,0 +46558,029+tu+b%C4%99dzie+raj,534,713,6116940,7172,0 +46559,Avanti%21,287,479,698625834,6231,0 +46560,Bunkier+u+Mariana,325,390,849101177,8264,0 +46562,Wioska+barbarzy%C5%84ska,701,544,848946700,6633,0 +46563,031.+Wioska+Lord+%C5%81ukasz1997,349,642,698908184,10795,0 +46564,%2A012%2A,681,615,1205898,8306,0 +46566,054.,704,464,849094609,5942,0 +46568,Ave+Why%21,310,590,6180190,1826,0 +46569,KONFA+TO+MARKA%2C+NARKA,293,444,698152377,7470,0 +46570,B%23015,698,445,2065730,9797,0 +46571,rafisonik5,511,715,849101108,8986,0 +46572,Wioska+barbarzy%C5%84ska,703,541,848946700,2409,0 +46573,Avanti%21,290,485,698625834,6791,0 +46574,Wioska+Wojtka,587,309,8609713,3455,0 +46575,0144,390,681,7085510,7721,0 +46576,%2136+76+Deleni,667,370,698361257,10203,0 +46577,086,396,680,849099876,10495,0 +46578,Grubasy+5,295,450,634848,3961,0 +46579,Apollo,699,428,699785935,7905,0 +46580,KR%C3%93L+PAPI+WIELKI,629,662,698191218,8619,0 +46581,Wioska+17,691,587,849101162,3984,0 +46582,017,393,322,8153941,3777,0 +46583,Z%C5%82oty+%C5%9Awit,577,299,699883079,6559,0 +46584,STREFA+GAZY+%7C+003,714,478,9228039,8983,0 +46585,Cisza,293,546,698769107,5553,0 +46586,054,462,297,2502956,9117,0 +46587,002,525,296,699208929,10469,5 +46588,%2136+66+Botosana,663,368,698361257,9843,0 +46589,Bessa+001,640,656,848987051,10216,9 +46590,B015,624,333,8740199,2878,0 +46591,%2136+66+Ciprian+Porumbescu,662,366,698361257,9875,0 +46592,C01,705,450,849093742,9109,0 +46593,O008,339,638,272173,9955,0 +46594,Wioska+barbarzy%C5%84ska,423,305,698231772,9352,0 +46595,090,383,679,849099876,9895,0 +46596,North+055,511,283,849064752,9244,0 +46597,020+Wioska+barbarzy%C5%84ska,600,689,699346280,9965,0 +46598,Wyspa_41,520,706,2585846,9638,9 +46600,%23%23%23102%23%23%23,582,692,698285444,10495,0 +46601,New+World,437,702,698152377,10311,0 +46602,251...Karki98,453,293,6920960,11420,0 +46603,Ave+Why%21,312,590,6180190,4432,0 +46604,093,411,688,849099876,10559,0 +46605,030,661,639,2323859,9573,0 +46606,052,712,512,7085502,7774,0 +46607,004%3AOsada+koczownik%C3%B3w,378,327,8772425,8499,4 +46608,XDX,612,316,699098531,10113,0 +46609,Wioska+barbarzy%C5%84ska,360,344,849027025,3275,0 +46611,KEFALOS,675,609,848890012,1739,0 +46612,komandos,639,665,7976264,10043,0 +46613,I%C5%82%C5%BCa,570,696,698723158,10063,0 +46614,07-oss,671,618,848921861,8384,0 +46615,022,524,712,698996782,9432,0 +46616,%5B0118%5D,442,297,8630972,10086,0 +46617,%23%23%23103%23%23%23,599,690,698285444,10495,0 +46618,Oww+Konfederacja,614,385,848915730,4687,0 +46619,Wioska+barbarzy%C5%84ska,520,288,7758085,9756,0 +46620,Zloty+%C5%9Awit,579,300,699883079,7236,0 +46621,Wioska+barbarzy%C5%84ska,358,349,849027025,6058,0 +46622,Wioska+barbarzy%C5%84ska,705,520,2135129,2469,0 +46623,%2A000%2A,713,512,698191218,9954,0 +46624,%23K75+0022,515,714,699728159,5206,0 +46625,0030,323,385,2321390,2800,0 +46626,Wioska+barbarzy%C5%84ska,651,648,699039013,2420,0 +46627,005,288,537,848886200,4894,0 +46628,010,313,397,8724192,2498,0 +46629,New+WorldA,292,546,849084005,5065,0 +46630,Taran,321,605,6180190,6647,0 +46631,Wioska+barbarzy%C5%84ska,380,322,699660539,10021,0 +46632,%5B0245%5D,285,514,8630972,7059,0 +46633,...,340,359,699657450,9727,0 +46635,Wioska+barbarzy%C5%84ska,699,436,1715091,7749,0 +46636,A%23031,714,492,2065730,9797,0 +46637,Wioska+barbarzy%C5%84ska,533,293,698350371,8126,0 +46638,Wioska+MMario,496,289,763529,7268,0 +46639,008b,305,424,8259895,4579,0 +46640,009,351,347,849101205,5850,0 +46641,Wioska+barbarzy%C5%84ska,640,339,9291984,4421,0 +46642,Wioska+barbarzy%C5%84ska,712,494,699429153,7248,0 +46643,%3F%3F%3F%3F,472,291,698489071,7087,0 +46644,C.024,711,488,9188016,7969,0 +46645,Star,339,369,7462660,9106,0 +46646,Dream+on,294,494,698962117,9497,0 +46647,Witten,568,704,6870350,7660,0 +46648,Wioska+barbarzy%C5%84ska,646,651,848987051,9053,0 +46649,Obrze%C5%BCe,580,693,7589468,8817,0 +46651,007,699,560,301602,4638,0 +46652,...03+am,673,618,848921861,10495,0 +46653,BOSS+S1,354,344,849101604,5471,0 +46654,027,663,638,2323859,4510,0 +46655,Wioska+barbarzy%C5%84ska,547,705,7581876,5721,0 +46656,EO+EO,287,494,699697558,10083,0 +46658,Wioska+Turystyczna+005,712,473,7588382,7925,0 +46659,%21--,658,358,698361257,2768,0 +46660,040,672,381,698635863,9140,0 +46661,XDX,597,310,699098531,9112,0 +46662,C079,354,653,699383279,9965,0 +46663,Ave+Why%21,307,593,6180190,4937,0 +46664,O097,331,623,272173,8792,0 +46665,--025--,573,300,542253,4866,0 +46666,010+G%C3%B3ry+Beorskie,670,619,8337151,10252,8 +46667,151...A,396,311,6920960,6940,0 +46668,Wioska+barbarzy%C5%84ska,317,595,7183372,6426,0 +46670,Z05,316,409,356642,9835,0 +46671,Wioska+dixon15pl,539,705,7860453,6362,0 +46672,Kurnik,469,711,699603116,9408,0 +46673,Wyspa+010,296,564,225023,7759,0 +46674,Z+0002,347,359,3909522,10221,0 +46676,028+Wioska+barbarzy%C5%84ska,600,686,699346280,9224,0 +46677,Wioska+barbarzy%C5%84ska,587,311,828637,10380,0 +46678,%230142+barbarzy%C5%84ska,483,287,1238300,6941,0 +46679,FAKE+OR+OFF,410,304,698231772,9813,0 +46680,002,469,367,699883079,9653,0 +46681,%2136+76+Romanesti,662,371,698361257,8192,0 +46682,%230276+Don+Noobas,466,295,1238300,6138,0 +46683,Taran,327,624,6180190,10300,0 +46684,Wioska+barbarzy%C5%84ska,298,423,699856962,7680,0 +46686,XDX,609,315,699098531,9680,0 +46687,Wioska+Zorro+020,676,612,849080702,8379,0 +46688,016,293,555,9280477,9486,0 +46689,Elo+elo+11,305,579,699016994,5819,0 +46690,New+World,420,697,698152377,10297,0 +46691,wioska,637,334,9291984,9644,0 +46692,001,349,347,849101205,8346,0 +46693,%23%23%23104%23%23%23,591,696,698285444,10495,0 +46694,031+Wioska+barbarzy%C5%84ska,602,686,699346280,10160,0 +46695,022,651,346,9148043,5491,0 +46696,Wioska+barbarzy%C5%84ska,495,709,7976264,5373,0 +46697,024Flanki,467,707,698620694,9682,0 +46698,776,345,641,698908184,8975,0 +46699,Wioska+barbarzy%C5%84ska,395,318,698231772,5187,0 +46700,Wioska+barbarzy%C5%84ska,377,326,3698627,9313,0 +46701,148,399,685,849099876,7791,0 +46702,Taran,686,405,699524362,10263,0 +46703,Wioska+barbarzy%C5%84ska,712,492,699429153,5943,0 +46704,C.034,714,474,9188016,4949,0 +46705,068+invidia,545,704,849093426,5509,0 +46706,Wioska+001,563,698,6870350,6688,0 +46707,Taran,324,619,6180190,8411,0 +46708,068.,312,600,6180190,5077,0 +46709,EE+010,698,572,849100149,5970,0 +46710,043%7C%7C+Indus,461,711,849035525,9113,0 +46711,028.,626,671,699695167,4048,0 +46712,Wioska+barbarzy%C5%84ska,697,417,8675636,8732,0 +46713,Wioska+barbarzy%C5%84ska,694,405,8675636,8216,0 +46714,029.,624,675,699695167,4047,0 +46715,New+WorldA,290,546,849084005,9205,0 +46716,%5B0228%5D,284,505,8630972,7529,0 +46717,New+World,423,699,698152377,10248,0 +46718,Wioska+barbarzy%C5%84ska+2x2,571,701,849055425,5968,0 +46719,Harmonia,703,436,699785935,8010,0 +46720,%5B0142%5D,449,295,8630972,9132,0 +46721,MojeDnoToWaszSzczyt,505,289,9299539,9751,0 +46722,Osada+3,699,420,699126484,9546,0 +46723,XDX,595,310,699098531,6617,0 +46724,Seredzice,572,696,698723158,10030,0 +46725,ElMajkelos+VI,413,308,849085160,10545,0 +46726,030.,625,671,699695167,3432,0 +46727,Taran,313,603,6180190,5701,0 +46728,0073,367,337,848913037,4965,0 +46729,Wioska+barbarzy%C5%84ska,583,309,698350371,454,0 +46730,043.+Istor-o-Nal,704,548,1601917,8713,0 +46732,FAKE+OR+OFF,412,311,698231772,9820,0 +46733,Wiadro12,674,624,8677963,9747,0 +46734,048,473,289,849010255,6186,0 +46735,Familia+Kuzyni,375,666,7349282,3212,0 +46736,039,683,395,849091105,9522,0 +46738,--010--,572,299,542253,7495,0 +46739,%3F%3F%3F%3F,477,292,698489071,10393,0 +46740,ZZ07,310,405,356642,9835,0 +46741,Mniejsze+z%C5%82o+0087,470,295,699794765,6928,0 +46742,D001,562,293,699299123,7336,0 +46743,Bessa+005,640,659,848987051,9985,0 +46744,C0228,293,544,8841266,7805,0 +46746,003,527,289,699818726,8587,0 +46748,DALEKO,532,704,699827112,10471,0 +46749,TWIERDZA+.%3A006%3A.,697,574,7154207,10405,4 +46750,Wioska+barbarzy%C5%84ska,342,365,7462660,9683,0 +46751,KONFA+TO+MARKA%2C+NARKA,297,457,698152377,10291,0 +46752,003,387,318,699660539,9494,0 +46753,Wiadro10,674,625,8677963,6993,0 +46754,%5B0157%5D,446,297,8630972,8841,0 +46755,A%23040,712,470,2065730,9797,0 +46756,Wioska+barbarzy%C5%84ska,344,361,7462660,8912,0 +46757,ZA27,310,416,356642,9651,0 +46758,Wioska+barbarzy%C5%84ska,369,331,3698627,9855,0 +46759,Taran,314,605,6180190,8715,0 +46760,Singularity,468,294,849099965,47,0 +46761,New+World,434,703,698152377,10294,0 +46762,%2136+66+Partesti+de+Jos,660,367,698361257,9653,0 +46763,DALEKO,530,704,699827112,7801,0 +46764,Kurnik,469,712,699603116,8060,0 +46765,0.17a,456,709,699827112,9472,0 +46766,070+invidia,541,711,849093426,5711,0 +46767,%23%23%23105%23%23%23,582,691,698285444,10495,0 +46768,219,418,309,698365960,11507,0 +46769,New+World,436,706,698152377,10291,0 +46770,FAKE+OR+OFF,403,312,698231772,9726,0 +46771,Niezabyszewo,465,283,849101116,9768,0 +46772,Wioska+barbarzy%C5%84ska,705,475,699574408,7225,0 +46773,Bagno+2,484,714,848883684,9433,0 +46774,213,427,303,698365960,5761,0 +46775,031.,627,673,699695167,3749,0 +46776,29.+P%C5%82utniki,711,485,699804790,11417,0 +46777,%23%23%23106%23%23%23,598,692,698285444,10495,0 +46778,Wioska+barbarzy%C5%84ska,696,435,1715091,9411,0 +46779,Wied%C5%BAma+-+Z+013,310,420,9239515,386,0 +46780,Wioska+barbarzy%C5%84ska,552,709,699828442,9382,0 +46781,015,707,508,699150527,6258,0 +46782,140...centr,449,347,6920960,7754,0 +46783,EE+009,701,578,849100149,6377,0 +46784,078,716,508,7085502,7000,0 +46785,New+World,433,703,698152377,9814,0 +46786,defik,683,454,849098769,2512,0 +46787,06.+Je%C5%BCyce,510,665,849092769,9690,0 +46788,FAKE+OR+OFF,409,310,698231772,9816,0 +46789,Wioska+barbarzy%C5%84ska,535,296,698350371,3573,0 +46790,B007+Twierdza+3,711,463,113796,8018,0 +46791,169,379,674,849099876,8906,0 +46792,%2A001%2A,680,618,1205898,8954,0 +46793,K35+-+%5B016%5D+Before+Land,587,305,699088769,10126,0 +46794,190...segador,428,296,6920960,10920,0 +46795,023.,469,713,849034882,10076,0 +46796,0074,683,392,698416970,10019,0 +46797,W28,694,416,699524362,2714,0 +46798,Wioska+barbarzy%C5%84ska,714,488,699429153,7950,0 +46799,009,679,395,699738350,9828,0 +46800,Chocim,311,603,698167138,5522,0 +46801,Z%C5%82oty+%C5%9Awit,579,303,699883079,6859,0 +46802,Elo+Elo+9,306,576,699016994,6466,0 +46804,Wioska+barbarzy%C5%84ska,334,370,849027025,5565,0 +46805,New+WorldA,297,546,849084005,5432,0 +46806,050,400,690,849099876,10495,0 +46808,Wioska04,301,427,8259895,5527,0 +46809,157,392,681,849099876,8303,0 +46810,Komandos,643,661,7976264,10495,0 +46811,Adamo2,582,697,849096768,9690,0 +46812,Wyspa+021,298,566,225023,3952,0 +46813,Taran,308,598,6180190,7289,0 +46814,Wioska+barbarzy%C5%84ska,285,511,849101647,4127,0 +46815,Avanti%21,291,488,698625834,4225,0 +46816,206,366,660,699269923,8418,0 +46817,0133,392,686,7085510,7815,0 +46818,%5B0146%5D,441,295,8630972,9334,0 +46820,172,382,680,849099876,8172,0 +46821,Lord+Arsey+KING,657,642,848956513,9179,0 +46822,komandos48,642,663,7976264,5381,0 +46823,056,709,515,7085502,7972,0 +46824,014.+Wioska+barbarzy%C5%84ska,675,373,2873154,8940,0 +46826,Wioska+barbarzy%C5%84ska,568,702,849055425,8993,0 +46827,006b,307,420,8259895,5579,0 +46828,A%23045,706,522,2065730,9797,0 +46829,Pocz%C4%85tek,308,580,7842579,9836,0 +46830,Wioska+barbarzy%C5%84ska,301,418,699856962,7899,0 +46831,Kurnik,466,713,699603116,10495,0 +46832,%2A%2ADzikos%2A%2A,296,430,8366045,9818,0 +46833,Wioska,711,530,699034094,3644,0 +46834,006a,309,421,8259895,4970,0 +46835,Wioska+barbarzy%C5%84ska,705,529,2135129,2474,0 +46836,Kolonia+01,305,591,6180190,9814,0 +46837,Szlachcic,364,337,698388578,6265,0 +46838,010,661,642,2323859,7102,0 +46840,044.Stradi,434,301,698365960,10495,0 +46841,%23%23%23046%23%23%23,594,692,698285444,10495,0 +46842,013,295,554,9280477,8047,0 +46843,Taran,321,619,6180190,8411,0 +46844,Wioska+barbarzy%C5%84ska,282,481,698879638,2440,0 +46845,O083,329,630,272173,9816,0 +46846,Lord+Arsey+KING,658,647,848956513,8913,0 +46847,042.,450,709,849034882,10503,0 +46848,Avanti%21,285,477,698625834,7269,0 +46850,02.+Ostia,712,537,848946700,10215,0 +46851,Z.05,700,578,699737356,5098,0 +46852,D016,354,650,272173,6173,0 +46853,Wioska+111,496,288,763529,3778,0 +46854,B07,704,551,848995478,11321,1 +46856,%23%23%23047%23%23%23,590,690,698285444,10495,0 +46857,D003,560,293,699299123,5870,0 +46858,KONFA+TO+MARKA%2C+NARKA,296,444,698152377,10291,0 +46859,%5BD%5D_%5B005%5D+Dejv.oldplyr,285,507,699380607,5527,0 +46860,Tak+ZO,526,295,699208929,12021,0 +46861,FAKE+OR+OFF,413,311,698231772,9814,0 +46862,077+invidia,533,713,849093426,5269,0 +46863,Wioska+barbarzy%C5%84ska,356,345,849027025,6349,0 +46864,Po+jednej+tabletce,688,400,699785935,6814,0 +46865,KR%C3%93L+PAPI+WIELKI,660,630,698191218,10000,0 +46866,A%23043,706,521,2065730,9797,0 +46867,FAKE+OR+OFF,408,307,698231772,9825,0 +46868,O69+Texcoco,696,571,699272880,10475,8 +46869,bucksbarzy%C5%84skamiiiru,313,396,848955783,8087,0 +46870,B029,626,325,8740199,10311,4 +46871,TWIERDZA+.%3A051%3A.,694,575,7154207,7587,0 +46872,147,401,684,849099876,7418,0 +46873,MojeDnoToWaszSzczyt,498,293,9299539,9955,0 +46874,Village,501,594,849094067,12154,0 +46875,New+World,430,703,698152377,10230,0 +46877,Ave+Why%21,449,619,8729672,9925,0 +46878,EE+002,701,573,849100149,9290,0 +46879,%5B0184%5D,288,499,8630972,8627,0 +46880,Z%C5%82oty+%C5%9Awit,590,303,699883079,10127,0 +46881,A%23002,714,519,2065730,9797,1 +46883,D011,352,648,272173,9640,0 +46884,Zaplecze+Barba+014,370,336,699796330,8610,0 +46885,Wioska+Adamol,583,698,849096768,10795,0 +46886,Wioska+barbarzy%C5%84ska,635,339,849100782,2086,0 +46887,043,657,352,9148043,6315,2 +46888,Wioska+barbarzy%C5%84ska,639,652,848987051,8862,0 +46889,007c,305,421,8259895,4645,0 +46890,028,706,525,699150527,4753,0 +46892,FP015,479,705,699605333,10342,0 +46893,O146,351,646,272173,4961,0 +46895,Familia+Kuzyni,377,669,7349282,2759,0 +46896,Henia,526,707,699733501,9084,0 +46897,008,306,425,8259895,6251,0 +46898,Wioska+barbarzy%C5%84ska+001,563,704,6870350,9966,0 +46899,123,704,447,849088515,4498,0 +46900,Bessa+006,639,660,848987051,9989,0 +46901,5..,646,353,849056744,1042,0 +46902,NBT+C,595,689,849047044,9232,0 +46903,%2A04+GAWRA%2A,302,427,2415972,9121,0 +46904,%23K75+0008,519,713,699728159,5195,0 +46905,110,410,696,849099876,8940,0 +46906,SKORPION%3A%29,455,297,7518529,3407,0 +46907,%2136+65+Mihoveni,659,364,698361257,7624,0 +46908,O130,331,622,272173,6680,0 +46909,--003--,571,301,542253,8310,0 +46910,Wiadro14,673,625,8677963,5340,0 +46911,Suppi,302,416,699856962,9549,8 +46913,bucksbarzy%C5%84skamiiiru,318,400,848955783,9634,0 +46914,WIOSKA+AZGARD,706,532,848946700,7515,0 +46915,Wioska+barbarzy%C5%84ska,357,350,849027025,5300,0 +46916,008.+Amnesia,707,514,254937,9787,1 +46918,Bastion+Stra%C5%BCnik%C3%B3w,705,435,849101378,8318,0 +46919,249...Kaban1998,460,294,6920960,9738,0 +46920,AAA,320,606,6180190,9815,0 +46922,U.007,293,557,849088243,5638,0 +46923,041,675,381,698635863,9520,0 +46924,Flap,607,313,699098531,9019,0 +46925,MojeDnoToWaszSzczyt,498,285,9299539,9947,0 +46926,008c,307,424,8259895,4950,0 +46927,203,367,664,699269923,7687,0 +46928,bastion,690,408,699598425,9995,0 +46929,-06-,576,700,849032414,9472,0 +46930,035.+Hradczany,708,559,1601917,10495,0 +46931,KR%C3%93L+PAPI+WIELKI,650,644,698191218,9530,0 +46932,C.040,715,478,9188016,4337,0 +46933,Wiadro03,671,632,8677963,9067,0 +46934,57+ggggg,294,475,849018442,9036,0 +46935,.achim.,481,293,6936607,3599,0 +46936,a-2,674,619,848921861,10495,1 +46937,T-Killa,694,427,699785935,8138,0 +46938,Taran,328,615,6180190,10049,0 +46939,%5B0133%5D,442,299,8630972,9590,0 +46940,008,392,676,6948793,10242,0 +46941,FAKE+OR+OFF,400,310,698231772,9813,0 +46942,005+WUEM+ENCEHA,612,673,699346280,10160,0 +46943,0068,368,338,848913037,6156,0 +46944,006.+G%C3%B3rki+G%C3%B3rzyste,652,646,849100994,9747,0 +46945,042,675,375,698635863,7431,0 +46946,Kagusiowo+1,299,441,849101268,10684,0 +46947,Wioska+Zorro+003,681,604,849080702,12154,0 +46948,Dream+on,294,478,698962117,4739,0 +46949,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,497,707,8980651,9747,0 +46950,Wioska+barbarzy%C5%84ska,342,363,7462660,9742,0 +46951,02-oss,671,620,848921861,10187,0 +46952,%2AINTERTWINED%2A,508,708,698704189,6996,0 +46953,Winterfell.013,451,299,848918380,10178,0 +46954,Gross+Stein,345,650,849092685,2907,0 +46955,Z%C5%82oty+%C5%9Awit,578,298,699883079,10119,5 +46956,Wioska+barbarzy%C5%84ska,666,376,699580120,4079,0 +46957,Icemark,706,436,849101378,8156,0 +46958,Kagusiowo+9,301,440,849101268,3862,0 +46959,P%C3%B3%C5%82nocny+Bagdad,615,322,8847546,10068,0 +46960,%5BB%5D_%5B034%5D+Dejv.oldplyr,428,351,699380607,9123,0 +46961,Dzik+13,297,431,8366045,4820,0 +46962,O024,337,636,272173,9976,0 +46963,023,651,348,9148043,3141,0 +46964,D014,349,655,272173,9712,0 +46965,Zaplecze+Barba+013,369,328,699796330,8899,0 +46966,C010,597,668,9023703,8827,0 +46967,G002+zzz,514,293,699208929,10066,0 +46969,%5B0246%5D,285,512,8630972,5833,0 +46971,O082,335,635,272173,9868,0 +46972,%23%23%23107%23%23%23,588,691,698285444,10495,0 +46973,0583,577,693,698659980,8165,0 +46974,Shire,413,312,698231772,11898,0 +46975,Taran,320,602,6180190,9888,0 +46976,19+Adamuswielki2..,294,448,849018442,9811,0 +46977,018,648,350,9148043,4217,0 +46978,D005,345,646,272173,7782,0 +46979,%3D090%3D+Wioska+barbarzy%C5%84ska,704,562,3781794,9324,0 +46980,Nowa+55,695,585,698702991,7528,0 +46981,a001,683,608,3986807,1324,0 +46982,kto+ananasowy+pod+wod%C4%85+ma+dom,710,452,699628084,9553,0 +46983,Wioska+barbarzy%C5%84ska,510,709,698704189,7021,0 +46984,Wioska+barbarzy%C5%84ska,381,323,698160606,3772,0 +46985,Kamienne+Drzwi,706,435,849101378,8900,0 +46986,036.+Domek+na+wodzie,500,716,848928624,2611,0 +46987,Taran,323,616,6180190,10049,0 +46989,%21--,656,363,698361257,4648,0 +46990,%21--,657,357,698361257,2215,0 +46991,228...M,398,314,6920960,5072,0 +46992,--011--,572,298,542253,7600,0 +46993,Wioska+dawszz4,293,532,849094688,3933,0 +46994,EO+EO,286,524,699697558,10083,0 +46995,Wioska+barbarzy%C5%84ska,305,594,6180190,4250,0 +46996,004+Twierdza,626,674,849104328,8819,0 +46997,Winterfell.020,456,298,848918380,10178,0 +46998,005,653,349,849020094,5771,0 +46999,%23037,554,291,849064614,2911,0 +47000,%2136+65+Dragosa,658,360,698361257,9841,0 +47001,032.,626,673,699695167,3432,0 +47002,p0pppp,291,476,848977600,9613,0 +47003,North+K25,535,288,699146580,2749,0 +47005,%230273+olcixx,465,296,1238300,6319,0 +47006,Wioska+barbarzy%C5%84ska,692,410,699598425,9539,0 +47007,Jednak+wol%C4%99+gofry,459,704,699725436,9376,0 +47008,KR%C3%93L+PAPI+WIELKI,663,631,698191218,10000,0 +47009,Wioska+barbarzy%C5%84ska,287,535,0,771,0 +47010,C0251,292,552,8841266,5689,0 +47011,13+barbarzy%C5%84ska..,297,445,849018442,9198,0 +47012,O084,338,636,272173,9882,0 +47013,015.Night+Raid,491,711,699684062,6904,0 +47014,komandos,640,662,7976264,9219,0 +47015,O020,335,633,272173,9962,0 +47016,Wioska+barbarzy%C5%84ska,650,349,1715091,2912,0 +47017,Wioska+barbarzy%C5%84ska,390,313,699660539,3944,0 +47018,Wioska+barbarzy%C5%84ska,700,420,8675636,8851,0 +47019,C083,356,653,699383279,9679,0 +47020,%5B0197%5D,288,500,8630972,7759,0 +47021,0088,613,348,848913037,9993,0 +47022,066+invidia,546,707,849093426,6343,0 +47023,Taran,324,616,6180190,9964,0 +47024,a+mo%C5%BCe+off+%3F+%3A%29,682,397,698768565,5794,0 +47025,Wioska+barbarzy%C5%84ska,635,659,848987051,10078,0 +47026,Id%C4%99+po+swoje,687,400,699785935,6931,0 +47027,Z%C5%82omowisko,607,681,569790,7515,0 +47028,StatekMatka,478,713,848995291,5028,0 +47029,EO+EO,287,519,699697558,7625,0 +47030,Bzyk,293,470,848977600,5193,0 +47031,Bounty,554,703,699443920,9761,0 +47032,037%7C%7C+Serpens,461,712,849035525,6597,0 +47033,004,525,288,699818726,8306,0 +47034,007d,302,422,8259895,4611,0 +47035,Wioska+barbarzy%C5%84ska,392,320,698231772,6362,0 +47037,043,679,378,698635863,7017,0 +47038,XDX,607,322,699098531,9389,0 +47039,-15-,573,702,849032414,8168,0 +47040,0445,557,708,698659980,10019,0 +47041,Wioska+krumlow+7,595,315,699098531,2963,0 +47042,%23138%23,643,654,692803,9291,0 +47043,%5B0247%5D,285,510,8630972,6615,0 +47044,210...segador,451,293,6920960,10877,0 +47045,BRICKLEBERRY,514,288,7758085,9899,0 +47046,0154,694,407,698416970,10083,0 +47047,FP029,474,713,699605333,8912,0 +47048,Wioska+barbarzy%C5%84ska,658,359,698361257,3834,0 +47049,001+Texas,348,650,849101293,6071,0 +47050,S017,689,594,8428196,5705,0 +47051,UltraInstynkt,614,316,699710633,9994,3 +47053,ZzZzZ+Sylwek,697,571,699778867,7910,0 +47054,Wied%C5%BAma+-+Z+007,303,431,9239515,1900,0 +47055,059+invidia,543,709,849093426,6219,0 +47056,ZA29,313,411,356642,9835,0 +47058,Aleppppp,291,477,848977600,4731,0 +47060,C0339,296,538,8841266,3895,0 +47061,011,621,332,9148043,7202,0 +47062,New+World,422,701,698152377,10295,0 +47063,W.181%2F20,615,531,2999957,10242,0 +47064,Zaplecze+barba+3,364,335,699796330,9809,0 +47065,0104,709,503,699429153,8909,0 +47066,bucksbarzy%C5%84skamiiiru,325,382,848955783,6803,0 +47067,S023,685,598,8428196,3661,0 +47068,ChceszPokojuSzykujSi%C4%99DoWojny,486,710,699333701,9825,0 +47069,008,356,351,849101205,5507,0 +47070,113+invidia,504,712,849093426,10401,2 +47071,EO+EO,290,504,699697558,10019,0 +47072,Cieszyn,488,284,699278528,9857,0 +47074,Wancki,512,293,7758085,9861,9 +47075,B002,622,321,8740199,8645,0 +47076,0076+Z003,445,706,849037407,5680,0 +47078,017+Wioska+barbarzy%C5%84ska,603,688,699346280,9891,0 +47079,Z%C5%82oty+%C5%9Awit,574,298,699883079,10184,0 +47080,Wioska+12,693,587,849101162,5433,0 +47081,0sada+koczownik%C3%B3w,691,404,699488108,9597,0 +47082,001,385,316,699660539,9689,0 +47083,132+invidia,498,717,849093426,9480,0 +47084,Grubasy+6,296,450,634848,3705,0 +47085,005,387,319,699660539,7164,0 +47086,D002,349,647,272173,9818,0 +47087,Wioska+barbarzy%C5%84ska,619,671,6818593,5692,0 +47088,New+World,438,705,698152377,7739,0 +47089,Szlachcic,394,355,3484132,10479,0 +47090,New+WorldA,293,522,849084005,6247,0 +47092,%5B0137%5D,449,297,8630972,9416,0 +47093,Bez+emocji,352,656,849092685,8272,0 +47094,XXXX,566,301,849054951,10025,0 +47095,0054,579,691,698659980,10252,9 +47096,%3F%3F%3F%3F,472,296,698489071,10503,0 +47097,%3D0014%3D,404,317,698231772,8631,0 +47098,XDX,602,313,699098531,11164,0 +47099,Wioska+barbarzy%C5%84ska,714,494,699429153,8037,0 +47100,Wioska+Arystek,526,712,7590135,9476,0 +47101,Wioska+barbarzy%C5%84ska,644,350,1715091,3671,0 +47103,Wioska+barbarzy%C5%84ska,375,676,699269923,8249,0 +47104,%5B0229%5D,287,506,8630972,6871,0 +47105,P%C3%B3%C5%82nocny+Bagdad,618,325,8847546,9899,0 +47106,Taran,314,597,6180190,6262,0 +47107,Winterfell.002,447,298,848918380,10178,8 +47108,W29,693,417,699524362,1762,0 +47109,022%23+Cassandrav2,443,703,3933666,6945,0 +47110,Wioska+barbarzy%C5%84ska,660,354,848924219,1413,0 +47111,042+Wioska+barbarzy%C5%84ska,612,682,699346280,5955,0 +47112,001.,565,326,699072129,10385,0 +47113,%23%23%23048%23%23%23,599,683,698285444,10495,0 +47114,Krowodrza,690,398,699598425,10636,5 +47116,209,425,300,698365960,7879,0 +47117,137,403,683,849099876,6935,0 +47118,FAKE+OR+OFF,407,309,698231772,9707,0 +47119,029,655,351,9148043,3669,0 +47120,bucksbarzy%C5%84skamiiiru,326,385,848955783,2299,0 +47121,012,290,539,849098688,8795,0 +47122,043,412,688,849099876,10495,0 +47123,Wioska+Kaczerki,375,674,699269923,8093,0 +47124,Ciemnogr%C3%B3d+%238,332,363,849096958,6962,0 +47125,STREFA+GAZY+%7C+001,712,479,9228039,9544,8 +47127,Lord+Arsey+KING,656,649,848956513,10087,0 +47128,Wioska+Kosiu461,710,516,254937,9807,0 +47129,%21--,656,364,698361257,5295,0 +47131,Pocz%C4%85tek,303,578,7842579,6278,0 +47132,Wioska+barbarzy%C5%84ska,385,326,699660539,8900,0 +47133,Pocz%C4%85tek,301,579,7842579,5252,0 +47134,039.Stradi,433,304,698365960,10495,0 +47135,Wioska+barbarzy%C5%84ska,306,413,0,351,0 +47136,%C5%9Awi%C4%99toja%C5%84ska,483,298,698848373,2850,0 +47137,Wioska+barbarzy%C5%84ska,353,352,849027025,5670,0 +47138,Daleko+od+domu,658,354,848924219,6594,1 +47139,Wioska,693,594,7999103,10061,0 +47140,STREFA+GAZY+%7C+002,707,471,9228039,9544,9 +47142,%2136+66+Dragoiesti,665,364,698361257,9650,0 +47143,Wioska+barbarzy%C5%84ska,466,293,699191464,4218,0 +47144,075,717,508,7085502,7884,0 +47145,0147,386,684,7085510,7540,0 +47147,%230139+barbarzy%C5%84ska,484,287,1238300,8048,0 +47148,ZZZ,535,702,8980651,9761,0 +47149,bucksbarzy%C5%84skamiiiru,315,395,848955783,8443,0 +47150,052+invidia,521,710,849093426,10414,0 +47151,Wioska+barbarzy%C5%84ska,710,493,699429153,7179,0 +47153,Wioska+barbarzy%C5%84ska,541,291,698350371,4064,0 +47154,%3D080%3D+drago+7,707,559,3781794,10501,0 +47155,XXXX,565,296,849054951,10178,0 +47156,Wioska+barbarzy%C5%84ska,391,688,849014922,5576,0 +47157,KONFA+TO+MARKA%2C+NARKA,294,457,698152377,10291,0 +47158,09.+Toussaint,709,548,8976313,9526,0 +47159,Wioska+barbarzy%C5%84ska,559,706,699828442,9174,0 +47160,Wioska,712,528,699034094,8390,0 +47161,New+World,435,698,698152377,10290,0 +47162,015Roztopy,471,709,698620694,9716,0 +47164,%23%231,349,354,2800032,9059,0 +47165,013.,470,714,849034882,10838,0 +47166,022+Wioska+barbarzy%C5%84ska,600,688,699346280,9566,0 +47167,Z%C5%82oty+%C5%9Awit,585,301,699883079,10119,0 +47168,D003,350,644,272173,9220,4 +47169,%5B0230%5D,292,505,8630972,5750,0 +47170,Didi,689,586,849070946,1638,0 +47171,037,660,640,2323859,2709,0 +47172,050.,637,668,699373599,3722,0 +47173,Zzzz+-+Kasztelania+003,642,349,9291984,3944,0 +47174,%2AINTERTWINED%2A,509,709,698704189,7236,0 +47176,Piek%C5%82o+to+inni,643,338,848956765,7472,0 +47178,007,310,397,8724192,3730,0 +47179,W31,696,409,699524362,1895,0 +47180,Wioska+001,688,597,7999103,10061,0 +47181,C085,361,655,699383279,7605,0 +47182,KONFA+TO+MARKA%2C+NARKA,294,450,698152377,10290,0 +47183,006.B.A.P,692,421,9180206,6615,0 +47184,PIROTECHNIK+006,351,345,849101083,3096,0 +47185,Szlachcic,381,321,698160606,10204,0 +47186,152...B,397,311,6920960,6721,0 +47187,%3D112%3D+Wioska+wyncel,703,558,3781794,7208,0 +47188,%23%23%23108%23%23%23,586,691,698285444,10495,0 +47189,Kr%C3%B3lowy+Most,704,428,849102464,10638,0 +47190,-02-,579,701,849032414,9472,0 +47191,--035--,569,295,542253,4138,0 +47192,031,510,283,849010255,6535,0 +47193,024.+Fud%C5%BCi,713,530,1601917,10495,0 +47194,Wioska+barbarzy%C5%84ska,444,703,849037407,5379,0 +47195,Wioska+15,524,504,699385139,7852,0 +47196,MojeDnoToWaszSzczyt,498,284,9299539,9958,0 +47198,011,391,324,8153941,3022,0 +47199,W30,697,412,699524362,1591,0 +47200,240,391,312,7271812,1014,0 +47201,Castel+Ravello,558,291,849054951,9968,0 +47202,%5B0141%5D,441,299,8630972,9408,0 +47203,Zaplecze+drewniane+1,374,330,699796330,10217,1 +47204,%23K75+0018,519,709,699728159,5149,0 +47205,05-oss,677,614,848921861,10187,0 +47207,Prawie+zmieni%C5%82em+podej%C5%9Bcie,688,402,699785935,8751,0 +47209,Wyspa_43,505,712,2585846,9653,0 +47210,KR%C3%93L+PAPI+WIELKI,662,636,698191218,10000,0 +47211,Taran,326,622,6180190,9101,0 +47212,O074,330,623,272173,9871,0 +47213,Ultimate+Farming+Simulator+1,416,303,699872032,12154,0 +47214,CSA,527,309,1006847,3589,0 +47215,Wioska+barbarzy%C5%84ska,381,327,699660539,5153,0 +47216,004,713,498,849091105,10301,4 +47217,%23K66+0013,614,678,699728159,6560,0 +47218,Suppi,304,418,699856962,9549,4 +47219,36.+Kufe+3,703,454,699804790,2711,0 +47220,KONFA+TO+MARKA%2C+NARKA,303,433,698152377,9514,0 +47221,A22,550,458,699368887,10201,0 +47222,XXXX,568,298,849054951,10068,0 +47223,0072,366,338,848913037,7860,0 +47224,%2136+66+Capu+Codrului,660,363,698361257,9384,0 +47226,Ave+Why%21,311,585,6180190,5748,0 +47227,wioska,639,342,849102068,5862,0 +47228,%23K75+0014,519,711,699728159,4717,0 +47229,Winterfell.006,450,291,848918380,10178,2 +47230,A%23024,711,498,2065730,9797,0 +47231,%2A05+GAWRA%2A,301,428,2415972,8334,0 +47232,C14,704,446,849093742,6295,0 +47233,033.,628,670,699695167,5547,0 +47234,005,644,652,849101148,8529,0 +47235,O077,334,637,272173,9899,0 +47236,Taran,313,609,6180190,6985,0 +47237,%3F%3F%3F%3F,473,290,698489071,10019,0 +47238,KONFA+TO+MARKA%2C+NARKA,292,442,698152377,10290,0 +47239,016.+Night+Raid%2A,432,698,699684062,9864,6 +47240,Zaplecze+Barba+019,368,329,699796330,8574,0 +47241,Wioska+barbarzy%C5%84ska,416,649,699736927,3170,0 +47242,XXXX,566,303,849054951,10178,0 +47243,%2AINTERTWINED%2A,511,708,698704189,4220,0 +47244,012,387,316,699660539,6447,0 +47246,ZzZzZ+Sylwek2,696,568,699778867,7285,0 +47248,Wioska+barbarzy%C5%84ska,645,661,848987051,8707,0 +47250,Wioska+barbarzy%C5%84ska,347,642,698908184,6945,0 +47251,S027,687,603,8428196,9740,0 +47252,CastAway+%21030,688,601,9314079,6337,0 +47253,Wied%C5%BAma+-+Z+009,305,431,9239515,1362,0 +47254,KR%C3%93L+PAPI+WIELKI,661,638,698191218,10000,0 +47255,KR%C3%93L+PAPI+WIELKI,668,633,698191218,10000,9 +47256,Taran,317,613,6180190,9526,0 +47257,Wioska+barbarzy%C5%84ska,434,293,699308637,7479,0 +47258,012+ZO,537,291,699208929,10311,0 +47259,%2AINTERTWINED%2A,514,707,698704189,5628,0 +47260,Z%C5%82oty+%C5%9Awit,576,307,699883079,8377,0 +47261,%23%23%23049%23%23%23,599,686,698285444,10495,0 +47262,010,391,319,699660539,4936,0 +47263,XDX,595,308,699098531,6822,0 +47264,Dzik+7,303,435,8366045,7525,0 +47265,009,664,640,2323859,7981,0 +47266,Wioska+barbarzy%C5%84ska,590,313,828637,10478,0 +47267,New+World,437,706,698152377,10295,0 +47268,065+ZieloneOczko3,707,518,2135129,8721,0 +47269,0.17+Jadom,458,706,699725436,9467,0 +47270,.achim.,482,287,6936607,7386,0 +47271,KR%C3%93L+PAPI+WIELKI,650,650,698191218,7402,0 +47273,Wioska+barbarzy%C5%84ska,535,294,698350371,8978,0 +47274,North+042,513,283,849064752,9252,0 +47275,Wioska+barbarzy%C5%84ska,696,432,1715091,9741,0 +47276,002,323,376,7386358,6294,5 +47277,Z%C5%82oty+%C5%9Awit,582,304,699883079,7124,0 +47278,Kagusiowo+7,299,440,849101268,4983,0 +47279,035,651,354,9148043,9835,1 +47280,C087,364,664,699383279,8240,0 +47281,019,299,560,9280477,7937,0 +47282,058,668,378,698635863,4734,0 +47283,%2A009%2A,683,616,1205898,8285,0 +47284,Wioska+04,695,589,849101162,6249,0 +47285,Psycha+Siada,340,647,8099868,10019,0 +47286,Osada+13,699,430,699524891,10083,0 +47287,Z%C5%82oty+%C5%9Awit,579,305,699883079,7266,0 +47288,Avanti%21,285,485,698625834,9992,0 +47289,Na+Kra%C5%84cu+%C5%9Awiata+001,645,343,9291984,10476,0 +47290,EO+EO,293,514,699697558,7042,0 +47291,Wioska+005,696,591,7999103,10171,0 +47292,Wioska+barbarzy%C5%84ska,300,420,699856962,8737,0 +47293,Grud,293,542,849098688,3175,0 +47294,BOSS2,354,341,849101604,8472,0 +47295,Wioska-012-,629,330,7675610,1464,0 +47296,042,513,289,849010255,7822,0 +47297,0045+Apt3czka,448,704,849037407,10474,6 +47298,Lord+Arsey+KING,648,655,848956513,6491,0 +47299,ElMajkelos+VII,412,306,849085160,9456,0 +47300,Piszkawa,297,562,849101092,5696,0 +47301,005+Wioska+barbarzy%C5%84ska,405,315,698258283,4233,0 +47302,Avanti%21,286,484,698625834,9820,4 +47304,044,676,378,698635863,7111,0 +47305,Wioska+barbarzy%C5%84ska,692,406,8675636,9017,0 +47306,005,441,702,849101309,1684,0 +47307,0532,557,706,698659980,10495,0 +47308,%23%23%23109%23%23%23,597,694,698285444,10495,0 +47309,106...,473,285,6920960,10178,0 +47310,WS+02,701,440,699524891,9721,4 +47311,A11,464,659,698652014,9889,0 +47312,CastAway+%23007,700,584,9314079,7713,0 +47313,BETI+012,462,569,8539216,1828,0 +47314,Wioska+barbarzy%C5%84ska,501,708,7976264,5046,0 +47315,New+WorldA,289,508,849084005,4493,0 +47316,Taran,310,599,6180190,9835,0 +47317,Avanti%21,286,474,698625834,7123,0 +47318,Taran,319,616,6180190,9329,0 +47320,Z%C5%82oty+%C5%9Awit,588,303,699883079,9747,0 +47321,ElMajkelos+XI,420,302,849085160,3432,0 +47322,Wioska+19,693,598,849101162,2146,0 +47323,Suppi,297,425,699856962,9549,8 +47324,046,715,516,7085502,7876,0 +47325,030+zadupie,532,710,6116940,10083,5 +47326,MojeDnoToWaszSzczyt,506,286,9299539,9735,0 +47327,0125,393,686,7085510,9871,0 +47329,097.Stradi,439,293,698365960,9514,0 +47331,Kurnik,474,714,699603116,9077,0 +47332,095,403,692,849099876,9177,0 +47333,075+invidia,557,707,849093426,5714,0 +47334,wioska,637,332,9291984,10044,0 +47335,MENSPHYSIQUE,378,672,849097837,2310,0 +47336,01.+Novigrad,704,541,8976313,9737,0 +47337,Dubno,690,409,699488108,9924,0 +47338,%23%23%23110%23%23%23,583,690,698285444,10495,0 +47339,108+invidia,511,716,849093426,10401,0 +47340,Wioska+barbarzy%C5%84ska,520,291,7758085,9655,0 +47341,Wioska+barbarzy%C5%84ska,302,458,699706955,4210,0 +47342,R+040+%7EWybacz+Ribeska%7E,500,717,699195358,7801,0 +47343,Taran,314,612,6180190,9835,0 +47344,0069,713,461,698416970,5044,0 +47345,Wioska+barbarzy%C5%84ska,319,384,699794765,1410,0 +47346,Wioska+006,696,593,7999103,9269,0 +47347,Taran,315,608,6180190,9835,0 +47348,KR%C3%93L+PAPI+WIELKI,669,632,698191218,10049,0 +47349,07+Banga+Banga,705,452,849101845,9484,0 +47350,Z+0005,349,358,3909522,10033,0 +47351,012,296,553,9280477,7578,0 +47352,Syjon+01,343,646,698908184,8029,0 +47354,0584,576,695,698659980,8939,0 +47355,Dzik+2,294,432,8366045,10887,0 +47356,Wioska+barbarzy%C5%84ska,647,659,848987051,8808,0 +47357,00000B,376,331,3698627,9975,4 +47358,EE+008,699,582,849100149,8822,0 +47359,D004,347,646,272173,9540,0 +47360,007,666,640,2323859,9814,0 +47362,SOS,702,425,699785935,7797,0 +47363,New+World,447,687,698152377,9512,0 +47364,wioska,639,335,849102068,8330,0 +47366,P%C3%B3%C5%82nocny+Bagdad,613,320,8847546,10311,0 +47367,Avanti%21,286,483,698625834,6416,0 +47368,EO+EO,292,512,699697558,8981,0 +47369,2_Franekkimono510_2,374,325,849099422,8333,0 +47370,Osada+7,696,421,8675636,9570,0 +47371,045,673,374,698635863,9847,0 +47372,0073+Wioska+barbarzy%C5%84ska,445,701,849037407,8848,0 +47373,klops33,629,668,848909464,10242,0 +47374,Winterfell.003,441,291,848918380,10178,9 +47375,004,532,716,698996782,8483,0 +47376,Wioska+barbarzy%C5%84ska,370,333,3698627,9312,0 +47377,New+World,439,707,698152377,8805,0 +47379,0034,489,714,699684062,4039,0 +47380,Cisza,288,551,698769107,6166,0 +47381,023+zadupie,531,713,6116940,10019,0 +47382,ElMajkelos+X,416,305,849085160,3778,0 +47383,ZZ03,313,402,356642,9409,0 +47385,007+Moulton+Park,620,319,699098531,8849,0 +47386,0096,680,394,698416970,3337,0 +47387,New+World,421,693,698152377,10294,0 +47388,Klejnot+nr1,589,696,699837483,4099,0 +47389,.achim.,482,284,6936607,7454,0 +47390,sh05,513,291,7758085,5714,0 +47391,003a,302,412,8259895,5230,0 +47392,189,417,697,849099876,9477,0 +47393,EO+EO,284,524,699697558,7597,0 +47394,...,337,360,699657450,3946,0 +47395,002,697,408,849085371,4270,0 +47396,RPM+CUSTOM+2,553,289,849102094,4885,0 +47397,009.+G%C3%B3rki+Wyboiste,655,648,849100994,7248,0 +47398,Wioska+barbarzy%C5%84ska,573,304,828637,5660,0 +47399,W32,695,418,699524362,2049,0 +47400,Z%C5%82oty+%C5%9Awit,582,301,699883079,9521,0 +47401,Ave+Why%21,309,593,6180190,9644,0 +47402,C015,366,668,699383279,9892,0 +47403,XDX,599,308,699098531,7569,0 +47404,%23K75+0023,514,716,699728159,5252,0 +47406,Lord+Arsey+KING,650,652,848956513,10285,0 +47407,Ger4,715,526,2246711,4539,0 +47408,O002,337,637,272173,9955,8 +47410,XDX,595,313,699098531,7482,0 +47411,005a,305,408,8259895,4755,0 +47412,New+WorldA,291,545,849084005,3615,0 +47413,0066,692,420,698416970,5360,0 +47414,C.035,708,475,9188016,4678,0 +47415,Kurnik,481,710,699603116,9486,0 +47416,002+co%C5%9B+ciekawego%3F,530,709,6116940,4185,0 +47417,Wioska+14,694,588,849101162,3628,0 +47418,058,639,345,849010255,2228,0 +47419,Wioska008,345,350,699711926,9726,0 +47421,BOSS3,353,342,849101604,8367,0 +47422,Z%C5%82oty+%C5%9Awit,577,304,699883079,8103,0 +47423,wpadam+do+Ciebie+do+swiat,623,342,698457392,1413,0 +47424,Lewa,497,710,7589468,8418,0 +47425,Na+ch%C5%82odno,682,402,699785935,10252,0 +47426,%2A227%2A+pozdro+po%C4%87wicz,325,376,699273451,10211,0 +47427,0069,369,335,848913037,6321,0 +47428,Czarny+Zamek,708,436,849101378,10971,0 +47429,ElMajkelos+II,419,302,849085160,9262,2 +47430,022.,470,713,849034882,10838,0 +47431,Wioska+barbarzy%C5%84ska,350,653,6354098,8551,2 +47432,C.036,715,482,9188016,4732,0 +47433,081+Wioska+barbarzy%C5%84ska,536,288,699854484,8743,0 +47434,New+World,425,694,698152377,10291,0 +47435,bucksbarzy%C5%84skamiiiru,332,379,848955783,2353,0 +47436,Wioska+barbarzy%C5%84ska,293,524,7530708,2421,0 +47437,002,322,378,7919620,4815,0 +47438,%5B0248%5D,287,513,8630972,6765,0 +47439,Wioska+barbarzy%C5%84ska,630,329,0,2438,0 +47440,KONFA+TO+MARKA%2C+NARKA,293,445,698152377,6403,0 +47441,001,442,703,849101309,9571,0 +47442,chwile+zabawy,421,701,849100814,5475,0 +47443,Wioska+barbarzy%C5%84ska,496,708,7976264,6925,0 +47444,Wioska+barbarzy%C5%84ska,629,335,7555180,2957,0 +47445,Wioska+X05,296,460,698701911,3074,0 +47446,bucksbarzy%C5%84skamiiiru,330,380,848955783,2155,0 +47447,XXXX,563,297,849054951,10068,0 +47448,Wioska+ewaa,506,719,849101382,6335,0 +47449,Taran,315,611,6180190,8803,0 +47451,%5B0125%5D,444,292,8630972,9887,0 +47452,wioska+barbarzy%C5%84ska,621,672,848909464,8385,0 +47454,Wioska,713,529,699034094,4206,0 +47456,Wioska+07,695,592,849101162,6169,0 +47457,O023,331,637,272173,9957,0 +47458,Wioska+06,692,593,849101162,7172,5 +47459,Wied%C5%BAma+-+Z+001,304,430,9239515,9383,0 +47460,Wioska+barbarzy%C5%84ska,335,370,849027025,7738,0 +47461,Wioska+barbarzy%C5%84ska,691,411,699598425,6714,0 +47463,%5B0249%5D,286,511,8630972,6803,0 +47464,18+Dewon,395,315,698231772,10083,8 +47465,139,399,693,849099876,9132,0 +47466,TWIERDZA+.%3A075%3A.,697,583,7154207,7879,0 +47467,%2A019,672,368,7758085,7581,0 +47468,%5B0132%5D,444,299,8630972,9585,0 +47469,Szlachcic,359,338,698388578,5440,0 +47470,Wioska+D,541,293,1867161,3325,0 +47471,Wioska+barbarzy%C5%84ska,703,443,699524891,6132,0 +47472,Wioska+E,543,293,1867161,2869,0 +47473,Wioska+barbarzy%C5%84ska,698,563,8742874,3144,0 +47474,220,418,308,698365960,7299,0 +47475,Wioska+Motliiu,691,397,699738350,6029,0 +47476,Soltys+Wsi+Maciekp011,349,344,849027025,9356,0 +47477,Lord+Arsey+KING,658,649,848956513,8758,0 +47478,012+JJ,330,368,9120206,3722,0 +47479,16+Cezarleon.,290,446,849018442,9976,0 +47480,Nowa+Nadzieja+6,501,596,699383121,8120,0 +47482,034.,622,675,699695167,4050,0 +47483,062+-+misslolaxo,424,587,225023,8136,0 +47484,%5B0190%5D,284,494,8630972,8919,0 +47485,19+Achttung%2C+Herman,710,469,849101845,4260,0 +47486,Wioska+barbarzy%C5%84ska,632,334,7555180,7666,0 +47487,C025,359,660,699383279,9419,0 +47488,0108,400,691,7085510,10216,1 +47489,0759ccc,681,611,3986807,1440,0 +47490,...,338,355,699657450,7039,0 +47491,060,714,518,7085502,8380,0 +47492,Barabara,288,470,848977600,6445,0 +47493,Bessa+008,640,658,848987051,9986,0 +47494,Wioska+barbarzy%C5%84ska,660,353,848924219,3180,0 +47495,%5B0174%5D,287,496,8630972,9018,0 +47497,%5B823%5D+Odludzie,705,438,848985692,6479,0 +47498,Onono+nono,287,457,698652171,7339,0 +47499,Wioska+Sir+Olmek,642,655,848987051,9752,0 +47500,004+dark.lady,609,686,699346280,10019,0 +47501,Klatka,621,677,6528152,6554,0 +47502,036,721,500,849091105,8823,0 +47503,002,442,702,849101309,5877,0 +47504,Wioska+barbarzy%C5%84ska,716,477,699429153,7322,0 +47505,0158,393,690,7085510,5779,0 +47506,Wioska+barbarzy%C5%84ska,647,656,848987051,8617,0 +47508,K35+-+%5B022%5D+Before+Land,584,305,699088769,9783,0 +47509,FAKE+OR+OFF,401,312,698231772,9825,0 +47510,%23%23%23%23,699,416,849101881,4883,0 +47512,022,298,562,9280477,7635,0 +47513,207,425,298,698365960,6621,0 +47515,rafisonik6,510,714,849101108,4646,0 +47516,0151,393,687,7085510,4024,0 +47517,Wioska+barbarzy%C5%84ska,334,369,849027025,8753,0 +47518,-020-+P,620,329,8675636,5314,0 +47519,B003,621,321,8740199,6235,0 +47520,Wioska+03,694,590,849101162,7110,0 +47521,-027-+WWW,649,351,849099276,1444,0 +47522,Osada+koczownik%C3%B3w,618,682,849096972,7879,4 +47523,xzc,501,703,8827094,8592,0 +47524,%C5%BBUBEREK+002,612,685,33900,10479,3 +47525,Kurnik,452,711,699603116,10252,0 +47526,Wioska+barbarzy%C5%84ska,694,584,7154207,1383,0 +47527,%2AINTERTWINED%2A,512,710,698704189,5647,0 +47528,New+World,429,704,698152377,10290,0 +47529,011,647,351,849020094,2997,0 +47530,026.+Minas+Morgul,567,396,699799629,10495,0 +47531,Bennet,554,711,699443920,9519,0 +47532,Coraz+bli%C5%BCej+%C5%9Bwi%C4%99ta,685,401,699785935,8930,0 +47533,New+World,437,704,698152377,10294,0 +47534,Starosiedlice,576,702,698723158,8386,0 +47535,%23%23%23111%23%23%23,598,690,698285444,10495,0 +47536,Wioska+barbarzy%C5%84ska,281,488,699846892,5666,0 +47537,Wioska+barbarzy%C5%84ska,698,573,699737356,2590,7 +47538,177,383,680,849099876,7088,0 +47539,Jasieniec,572,697,698723158,5522,0 +47540,Wioska+teduniook,600,308,9106690,4304,0 +47541,025+zadupie,533,710,6116940,10019,0 +47542,Wioska+barbarzy%C5%84ska,705,433,1715091,3124,0 +47543,%2A003%2A,680,623,1205898,9075,0 +47544,C0242,291,534,8841266,10387,0 +47545,EO+EO,288,502,699697558,10019,0 +47546,XDX,605,318,699098531,10290,0 +47547,0106,393,678,7085510,10216,2 +47548,Hubix,697,409,8675636,10019,0 +47549,MojeDnoToWaszSzczyt,498,283,9299539,9966,0 +47550,C0213,294,532,8841266,8860,0 +47551,Avanti%21,288,480,698625834,6158,0 +47552,042,410,691,849099876,10495,0 +47553,Wancki,517,289,7758085,9861,0 +47554,Rigel,285,519,849101647,5583,0 +47555,Wioska+barbarzy%C5%84ska,549,712,699828442,6943,0 +47556,048.,637,667,699373599,4846,0 +47557,Arczi997+05,291,517,849055181,1165,0 +47558,005,304,408,8259895,6251,0 +47559,C0247,292,532,8841266,5383,0 +47560,%23%23%23112%23%23%23,591,693,698285444,10495,0 +47561,003+Gniezno,290,529,9235561,6894,0 +47562,Ultimate+Farming+Simulator+5,415,305,699872032,7332,0 +47563,013.+Chogolisa,710,552,1601917,10495,0 +47564,D005,561,294,699299123,6197,0 +47565,Taran,310,597,6180190,7047,0 +47566,--013--,572,295,542253,8521,0 +47567,W33,692,399,699524362,1887,0 +47569,W34,698,410,699524362,3222,0 +47570,023,655,647,2323859,5693,0 +47571,Szlachcic,363,339,698388578,5761,0 +47572,0161,391,678,7085510,3187,0 +47573,Kurnik,472,710,699603116,7929,0 +47574,Klatka7,626,678,6528152,3636,0 +47575,C06,705,451,849093742,8264,0 +47576,KONFA+TO+MARKA%2C+NARKA,294,452,698152377,7438,0 +47577,P%C3%B3%C5%82nocny+Bagdad,619,326,8847546,9899,0 +47578,FP021,482,707,699605333,8465,0 +47579,0041,478,712,699280514,3304,0 +47580,Bagno+20,484,713,848883684,8429,0 +47581,Wioska+barbarzy%C5%84ska,716,487,699429153,7514,0 +47583,MojeDnoToWaszSzczyt,497,282,9299539,9949,0 +47584,Wioska+barbarzy%C5%84ska,697,573,699737356,2254,0 +47585,AAA,541,289,1006847,8876,0 +47586,0103,708,505,699429153,9627,0 +47587,R+039,495,717,699195358,6177,0 +47588,0132,392,683,7085510,6531,0 +47589,Wioska+barbarzy%C5%84ska,655,353,1715091,5027,0 +47590,Ciemnogr%C3%B3d+%239,333,365,849096958,6660,0 +47591,New+WorldA,286,536,849084005,4941,0 +47592,Wioska+barbarzy%C5%84ska,546,703,7581876,5260,0 +47593,%5B0181%5D,289,494,8630972,8945,0 +47594,Wioska+barbarzy%C5%84ska,522,708,7590135,4819,0 +47595,O025,333,636,272173,9959,0 +47596,New+World,426,697,698152377,10292,7 +47597,Wioska+barbarzy%C5%84ska,382,673,699269923,8177,0 +47598,O075,329,625,272173,9818,0 +47599,138,402,691,849099876,10252,0 +47601,032,656,349,9148043,9819,0 +47604,XDX,610,315,699098531,10048,0 +47605,Ars,718,494,699379895,9894,0 +47606,Dzik+3,295,434,8366045,9476,0 +47607,250...Kaban1998,461,294,6920960,9873,0 +47608,nasa,706,528,1895081,2567,0 +47609,019.+Wioska+barbarzy%C5%84ska,343,637,698908184,8570,0 +47610,FAKE+OR+OFF,400,305,698231772,9830,0 +47611,0.17d,465,711,699725436,9464,0 +47613,%23%23%23113%23%23%23,600,693,698285444,10495,0 +47614,FAKE+OR+OFF,402,314,698231772,9813,0 +47615,Pocz%C4%85tek,297,575,7842579,3894,0 +47616,077+Wioska+barbarzy%C5%84ska,537,286,699854484,10178,0 +47617,Saran2,407,308,848937248,4356,0 +47618,008,647,647,849101148,6036,0 +47619,Zaplecze+barba+1,377,332,699796330,10216,0 +47620,Szlachcic,580,505,699759128,10093,0 +47621,Pocz%C4%85tek,313,592,6180190,5183,0 +47622,EEE+Barba+1,464,291,699796330,9762,0 +47623,Lord+Arsey+KING,650,656,848956513,10285,0 +47624,Z18,312,408,356642,9835,0 +47625,001+mo%C5%BCe+by%C4%87,529,716,6116940,5528,0 +47626,020,655,644,2323859,3114,0 +47627,North+020,499,292,849064752,8597,0 +47628,%2C%2C%2C%2C,702,419,849101881,4172,0 +47629,180,383,678,849099876,8172,0 +47630,Wioska+13,692,594,849101162,3632,0 +47631,ZZZ,455,707,8980651,3954,0 +47633,165,412,692,849099876,8881,0 +47634,Wioska+barbarzy%C5%84ska,326,629,698908184,9806,0 +47635,048+sebaseba1991,616,684,699346280,10160,0 +47636,080+Hjubal,709,506,2135129,5181,0 +47637,D003,348,646,272173,9151,0 +47638,Adamo+4,586,694,849096768,3545,0 +47639,Legenda,378,676,849097837,8243,0 +47640,AlaKlaudia4,381,322,848966521,2760,0 +47641,...,341,362,699657450,4446,0 +47642,Wioska+barbarzy%C5%84ska,553,297,698350371,3664,0 +47644,002+JJ,331,368,9120206,4773,0 +47645,Taran,321,613,6180190,8547,0 +47646,Wioska+barbarzy%C5%84ska,379,324,3698627,10203,0 +47647,Osada+koczownik%C3%B3w,421,303,698231772,9820,5 +47648,Szlachcic%2FTaran,615,367,699759128,10237,0 +47649,Wioska003,346,348,699711926,9741,0 +47650,KR%C3%93L+PAPI+WIELKI,710,508,698191218,6694,0 +47651,Inny+ni%C5%BC+oni,703,433,699785935,6303,0 +47653,Bagno+3,482,713,848883684,9427,0 +47654,0585,578,696,698659980,10019,8 +47655,Pitulice,381,590,849095992,7220,0 +47656,%23K75+0009,520,712,699728159,5232,0 +47657,New+World,430,700,698152377,10294,0 +47658,Familia+Kuzyni,376,667,7349282,2541,0 +47659,Wioska+barbarzy%C5%84ska,569,704,849055425,8551,0 +47660,t009,663,355,698361257,8173,0 +47661,Avanti%21,287,485,698625834,6450,0 +47662,C016,371,670,699383279,9472,0 +47663,1-OB,688,611,1205898,3251,0 +47664,024,663,640,2323859,3049,0 +47666,Wioska+barbarzy%C5%84ska,703,421,848902592,5549,0 +47667,07+CHATA,631,328,6517826,3936,0 +47668,C005,540,707,698599365,7094,0 +47669,Klejnoty,589,689,699837483,2755,0 +47670,049+Wioska+barbarzy%C5%84ska,544,288,699854484,9835,0 +47671,KONFA+TO+MARKA%2C+NARKA,298,443,698152377,7303,0 +47672,053-+Mroczna+Osada,660,355,849035905,4654,0 +47673,3.+Blaviken,604,692,849102573,5446,0 +47674,Wioska+barbarzy%C5%84ska,520,293,7758085,8548,0 +47675,%23K66+0010,609,677,699728159,6505,0 +47676,%3D116%3D+Hopewell,706,570,3781794,6394,0 +47677,%23%23%23016%23%23%23,593,689,698285444,10495,0 +47678,Montecalvo,551,298,698789253,3011,0 +47679,Na+Kra%C5%84cu+%C5%9Awiata+021,646,344,9291984,4211,0 +47680,20+barbarzy%C5%84ska...,286,465,849018442,9126,0 +47681,020,526,716,698996782,11896,3 +47682,XXXX,566,296,849054951,10025,0 +47683,%C5%BBUBEREK+018+.%3A%3A.+Gazun,608,682,33900,8355,6 +47684,018.+Ortolana,314,388,849102092,6690,0 +47685,wioska,638,332,9291984,12154,0 +47686,Wioska+wioska,709,551,17714,9900,0 +47687,Cisza,294,544,698769107,6600,0 +47688,%23%23%23114%23%23%23,601,691,698285444,10495,0 +47689,MojeDnoToWaszSzczyt,496,285,9299539,9950,0 +47690,North+016,504,285,849064752,10311,0 +47691,Wioska+barbarzy%C5%84ska,664,372,699580120,2669,0 +47692,Wioska+piwkoo,291,470,848977600,9682,0 +47693,Kurnik,468,709,699603116,8670,0 +47694,asd,685,404,699598425,10728,3 +47695,Kocio%C5%82+Gromoszcz%C4%99ka,328,628,698908184,9723,0 +47696,Wioska+barbarzy%C5%84ska,427,295,698231772,6659,0 +47697,North+008,504,284,849064752,10311,0 +47698,S016,686,597,8428196,4681,0 +47699,MojeDnoToWaszSzczyt,501,294,9299539,9999,0 +47700,Wioska001,685,385,698768565,7421,0 +47702,FAKE+OR+OFF,410,306,698231772,9817,0 +47703,Zaplecze+miedziane,375,321,699796330,9643,3 +47704,MojeDnoToWaszSzczyt,502,291,9299539,9981,0 +47705,Lord+Arsey+KING,654,646,848956513,8138,0 +47706,ElMajkelos+V,413,305,849085160,10160,0 +47707,010,711,551,7085502,9723,2 +47708,Wioska+Duszkowsky+012,355,656,272173,5297,0 +47709,ZZ06,308,408,356642,9778,0 +47710,09+Dzi%C4%99ki+Motorowiec10+%3B%29..,296,448,849018442,9899,0 +47711,Wioska+barbarzy%C5%84ska,697,567,7528491,2870,0 +47712,004+C,401,694,849099876,10495,8 +47713,W35,696,411,699524362,1707,0 +47714,%5B0195%5D,286,500,8630972,7594,0 +47715,Wioska+barbarzy%C5%84ska,573,302,828637,9819,6 +47716,Komandos,635,663,7976264,10290,0 +47717,Wioska+barbarzy%C5%84ska,702,559,17714,6245,0 +47718,Avanti%21,293,484,698625834,6064,0 +47719,Zaplecze+Barba+016,365,329,699796330,9273,0 +47720,088+Wioska+barbarzy%C5%84ska,546,291,699854484,7965,0 +47721,Wioska+barbarzy%C5%84ska,377,670,699269923,8341,0 +47722,.achim.,474,288,6936607,6774,2 +47723,Wyspa+009,295,566,225023,5418,0 +47724,Pozamykani+w+o%C5%9Brodkach,711,457,699785935,7062,0 +47725,B030,626,324,8740199,6009,0 +47727,MJ23,683,381,8669398,6359,0 +47728,%230300+LAROX,460,290,1238300,5627,0 +47729,Lord+Arsey+KING,648,656,848956513,4218,0 +47730,0164,386,680,7085510,3591,0 +47731,0076,689,397,698416970,10083,0 +47732,Flap,608,315,699098531,10290,0 +47733,Wioska+barbarzy%C5%84ska,572,699,7589468,6531,0 +47734,%2A014%2A,679,624,1205898,7580,0 +47735,komandso,636,664,7976264,10040,0 +47736,C097,362,667,699383279,9777,0 +47738,019,653,350,9148043,4328,0 +47739,007,539,714,8925624,1644,0 +47740,Wioska+barbarzy%C5%84ska,572,303,828637,4589,0 +47742,Wioska+Sportowiec73,321,623,8696132,3606,0 +47743,%3D118%3D+Wioska+barbarzy%C5%84ska,701,568,3781794,6206,0 +47744,%2A005%2A,679,618,1205898,8885,0 +47745,001.+Good+Night,491,704,699684062,10019,0 +47746,Wioska+barbarzy%C5%84ska,317,383,699794765,2258,0 +47747,%2A016,674,370,7758085,7180,0 +47748,005,403,688,849099876,10495,8 +47749,0085,611,346,848913037,9993,0 +47750,069.,312,602,698167138,2200,0 +47751,035,624,671,699695167,3351,0 +47752,Saran1,411,301,848937248,4553,0 +47753,%23%232,348,353,2800032,9080,0 +47754,Lord+Arsey+KING,660,645,848956513,10285,6 +47755,Osterwijk,626,334,9103424,7896,0 +47756,wioska,635,332,699738350,12154,0 +47757,Wioska+barbarzy%C5%84ska,679,383,849095068,4902,0 +47758,SkalpeR+2,290,493,849108007,3437,0 +47759,B026,625,326,8740199,6905,0 +47760,C.025,710,482,9188016,4472,0 +47761,Wyspa+020,297,572,225023,1999,0 +47762,C002,369,670,699383279,9841,6 +47763,Wioska+barbarzy%C5%84ska,588,308,828637,10474,0 +47764,S031,689,598,8428196,9106,6 +47765,010+ma%C5%82a+pomy%C5%82ka,521,713,849093426,10259,0 +47766,Wioska+barbarzy%C5%84ska,298,424,699856962,8501,0 +47767,C012,545,705,698599365,3123,0 +47768,001.,626,670,699695167,8223,0 +47769,O005,338,638,272173,9955,5 +47771,067+-+Nowy+Pocz%C4%85tek...,347,644,698908184,7965,0 +47772,Wioska+KaszczuJ+2,699,574,849104356,9835,0 +47773,071,713,513,7085502,7764,0 +47774,%5B179%5D,677,387,8000875,9902,0 +47775,Wioska+barbarzy%C5%84ska,582,307,828637,10476,0 +47776,004,326,376,7919620,2599,0 +47777,New+World,439,708,698152377,9256,0 +47778,029Novigrad,469,708,698620694,9916,0 +47779,Wioska+barbarzy%C5%84ska,313,608,6180190,6220,0 +47780,0060+Wioska+barbarzy%C5%84ska,449,703,849037407,5986,0 +47782,Cisza,290,550,698769107,4816,0 +47783,Wioska+barbarzy%C5%84ska,687,608,3589487,2085,0 +47784,084+Anchor,544,290,699854484,9835,0 +47786,004,445,703,849101309,3818,0 +47787,Ciemnogr%C3%B3d+%236,333,364,849096958,7703,0 +47788,FAKE+OR+OFF,408,305,698231772,9712,0 +47789,Wioska+majku+4,414,700,363280,3093,0 +47790,Na+Kra%C5%84cu+%C5%9Awiata+003,645,340,9291984,10475,0 +47792,D004,562,294,699299123,6017,0 +47793,Winterfell.008,445,296,848918380,10178,3 +47794,Wioska014,346,347,699711926,9761,0 +47796,EO+EO,284,520,699697558,10160,0 +47797,023.+El+Toro,713,544,1601917,10495,0 +47798,EO+EO,290,517,699697558,10019,4 +47799,C012,370,670,699383279,9790,0 +47800,Asgard,304,404,8724192,9105,0 +47801,C0225,291,549,8841266,6854,0 +47802,Wioska+barbarzy%C5%84ska,522,293,7758085,9507,0 +47803,North+002,515,284,849064752,10311,0 +47804,Wioska+barbarzy%C5%84ska,694,423,699488108,5509,0 +47805,North+007,510,291,849064752,10311,0 +47806,xxx,404,693,849014922,10495,0 +47807,Maltic,293,453,698652171,1399,0 +47808,MojeDnoToWaszSzczyt,500,290,9299539,9960,0 +47809,Wioska008,691,395,698768565,9288,0 +47810,O016,338,635,272173,9955,0 +47811,021,524,711,698996782,11157,0 +47812,Wioska+barbarzy%C5%84ska,678,481,699598425,10728,0 +47813,0040,581,693,698659980,10252,9 +47814,MojeDnoToWaszSzczyt,501,283,9299539,9945,0 +47815,Zeta+Reticuli+OO,471,286,699323302,10728,0 +47816,035.,458,714,849034882,10838,0 +47817,0107,394,685,7085510,10216,2 +47818,%2136+65+Arbore,658,363,698361257,9860,0 +47819,Z%C5%82oty+%C5%9Awit,581,299,699883079,6456,0 +47820,%2136+66+Plesa,666,367,698361257,9841,0 +47821,barbarzy%C5%84skaaaa,713,554,17714,10222,0 +47822,a002,681,608,3986807,1459,0 +47823,%2A008%2A,680,615,1205898,8227,0 +47824,K33,317,384,699794765,2693,0 +47825,xxx,322,610,6180190,8999,0 +47826,Wioska+barbarzy%C5%84ska,287,547,849085605,3090,0 +47827,Flap,604,313,699098531,10692,0 +47828,Ciemnogr%C3%B3d,333,363,849096958,9939,0 +47829,Dobrawa,572,700,698723158,5540,0 +47830,Kurnik,456,707,699603116,3965,0 +47831,071.Stradi,429,295,698365960,10081,0 +47832,019.+Elbrus,711,554,1601917,9182,0 +47833,Lord+Arsey+KING,657,645,848956513,9179,0 +47834,O003,338,633,272173,9955,8 +47835,EO+EO,293,515,699697558,9251,0 +47836,015,325,381,7386358,2752,0 +47837,Ob+Konfederacja,438,336,848915730,9682,0 +47838,BRICKLEBERRY,515,287,7758085,10242,0 +47839,Wioska+X10,296,459,698701911,1560,0 +47840,C13,706,449,849093742,3780,0 +47841,003,444,704,849101309,4087,0 +47842,Wioska+barbarzy%C5%84ska,336,435,393668,6055,0 +47843,188,416,692,849099876,9371,0 +47844,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,560,704,699828442,9825,0 +47846,Elo+elo+15,304,577,699016994,4855,0 +47847,090+Wioska+barbarzy%C5%84ska,542,288,699854484,7054,0 +47849,Taran,311,608,6180190,7708,0 +47850,Brugge,555,291,849054951,9245,0 +47851,%2136+65+Manastioara,657,361,698361257,6460,0 +47853,Wyspa_51,495,718,2585846,9638,9 +47854,Wioska+barbarzy%C5%84ska,416,298,698231772,6968,0 +47855,czorny,698,576,849101814,1379,0 +47856,18+Adamuswielki2..,298,444,849018442,9114,0 +47857,%2A006,668,368,7758085,8864,0 +47858,Amsterdam+Holandia,290,513,698368493,1816,0 +47859,AAA,549,293,1006847,10377,0 +47860,C004,539,706,698599365,5563,0 +47861,komandos,633,665,7976264,10178,0 +47862,Wioska+krumlow+14,593,316,699098531,2372,0 +47863,Wioska+barbarzy%C5%84ska,637,658,848987051,9865,0 +47864,006,401,690,849099876,10495,4 +47865,0032,485,712,699684062,4222,0 +47866,036.,630,665,699695167,3283,0 +47867,001,301,414,8259895,5949,0 +47868,026.+Forela,712,532,1601917,10244,0 +47869,Wiocha+V,337,359,849106316,2400,0 +47871,Wioska+barbarzy%C5%84ska,553,711,699828442,9228,0 +47872,%23%23%23050%23%23%23,593,687,698285444,10495,0 +47873,Taran,320,604,6180190,8163,0 +47874,001,323,369,7386358,12154,0 +47875,Wioska+barbarzy%C5%84ska,707,524,7047342,10331,0 +47876,%3F%3F%3F%3F,476,291,698489071,10503,0 +47877,046,674,382,698635863,9375,0 +47878,Bagno+1,481,716,848883684,9731,9 +47880,Wypijmy+zdrowie,690,406,699785935,6064,0 +47882,%23%23%23115%23%23%23,585,691,698285444,10495,0 +47883,%230279+Don+Noobas,465,293,1238300,3893,0 +47884,Lord+Arsey+KING,655,654,848956513,9377,0 +47885,0074+Wioska+barbarzy%C5%84ska,445,704,849037407,6813,0 +47886,Wioska+0021,351,651,9186126,6794,0 +47887,Wioska+barbarzy%C5%84ska,380,681,6821136,2810,0 +47888,Winona,531,707,6116940,5577,0 +47889,Wioska+barbarzy%C5%84ska,592,307,698350371,2855,0 +47890,0529,532,664,698659980,9753,0 +47891,B009,629,326,8740199,7129,0 +47892,KONFA+TO+MARKA%2C+NARKA,289,450,698152377,8248,0 +47893,Wioska+barbarzy%C5%84ska,282,486,699846892,2414,0 +47894,Wiadro05,674,626,8677963,9444,0 +47895,%21%21%21Wioska+barbarzy%C5%84ska,642,346,9291984,5048,0 +47896,NBT+J,596,689,849047044,9233,0 +47897,Wioska+barbarzy%C5%84ska,571,302,828637,10365,0 +47898,206,427,298,698365960,10557,7 +47899,013,290,541,849098688,6424,0 +47900,Wioska+barbarzy%C5%84ska,710,492,699429153,8235,7 +47901,Wioska+barbarzy%C5%84ska,655,357,1715091,3419,0 +47902,167...K,395,308,6920960,5226,0 +47904,%23K75+0003,521,715,699728159,7033,0 +47905,Wioska+0011,346,653,9186126,10311,0 +47906,The+Game+Has+Only+Just+Begun,353,521,9280477,9976,0 +47907,Zaplecze+Barba+011,368,331,699796330,8835,0 +47908,Wioska+barbarzy%C5%84ska,709,547,17714,9890,0 +47909,10+Dzi%C4%99ki+Lord+Lord+Dexter+%3B%29..,294,449,849018442,9835,0 +47910,%23K75+0025,517,709,699728159,5881,0 +47911,a-3,678,616,848921861,10495,0 +47912,Wioska+barbarzy%C5%84ska,647,653,848987051,9099,0 +47913,034%7C%7C+Ara,459,710,849035525,6516,0 +47914,Szlachcic,359,335,698388578,7033,0 +47915,Wioska10,705,576,699266530,7130,0 +47916,AAA,550,296,1006847,6704,0 +47917,C088,362,663,699383279,8397,0 +47918,%23%23%23116%23%23%23,583,696,698285444,10495,0 +47919,037.,626,668,699695167,3879,0 +47920,Wioska+barbarzy%C5%84ska,380,329,699660539,9525,0 +47921,XXXX,564,301,849054951,10178,0 +47922,Lord+Arsey+KING,661,647,848956513,9575,0 +47923,Jan+Ost+skrajny+II,709,440,879782,5834,0 +47924,09+Sytuacja,704,445,849101845,9754,0 +47925,Wioska+002,694,595,7999103,10061,0 +47926,047,509,283,849010255,7114,0 +47927,KONFA+TO+MARKA%2C+NARKA,291,462,698152377,8031,0 +47928,3.Coventry,548,714,698215322,5534,0 +47929,012+Dziekanowice,285,534,9235561,3029,0 +47930,KR%C3%93L+PAPI+WIELKI,670,625,698191218,10000,0 +47931,0145,391,686,7085510,4571,0 +47932,012,303,404,8724192,1190,0 +47933,112,408,699,849099876,10495,0 +47934,New+WorldA,284,519,849084005,5110,0 +47935,054,406,695,849099876,10495,0 +47936,xzc,488,692,5997814,10084,0 +47937,Pocz%C4%85tek,307,586,6180190,6202,0 +47938,Wioska+barbarzy%C5%84ska,474,283,699196829,9138,1 +47939,001b,302,414,8259895,5230,0 +47940,Cisza,289,551,698769107,5608,0 +47941,Wioska+barbarzy%C5%84ska,386,316,699660539,2609,0 +47942,Magiczne+koszary,462,715,848935389,9809,0 +47943,%5B0122%5D,439,299,8630972,10021,0 +47944,Wioska+barbarzy%C5%84ska,304,587,698663855,4797,0 +47945,C006,372,674,699383279,9880,4 +47946,XDX,606,335,699098531,7427,0 +47947,XDX,608,311,699098531,10692,0 +47948,Wioska+barbarzy%C5%84ska,508,716,698704189,1582,0 +47949,WS+06,703,437,699524891,7013,0 +47950,KONFA+TO+MARKA%2C+NARKA,293,461,698152377,8608,0 +47951,Wioska+barbarzy%C5%84ska,302,418,699856962,7721,0 +47952,Wioska+witold2129,700,574,699471829,4734,0 +47953,037+Vattweir,472,712,699834004,10838,0 +47954,Ciemnogr%C3%B3d+%237,334,363,849096958,7797,0 +47955,KONFA+TO+MARKA%2C+NARKA,299,438,698152377,7207,0 +47956,39.Jamurlak,710,538,8976313,5182,0 +47957,047,673,382,698635863,8829,0 +47958,%C5%BBUBEREK+001,608,687,33900,10778,3 +47959,WooWoo+zim%C4%85+chodzi+w+sanda%C5%82ach,616,366,699857387,9130,0 +47960,005,699,408,849085371,4209,0 +47961,...,583,697,7985956,8462,0 +47962,Wioska+barbarzy%C5%84ska,705,561,17714,3652,0 +47963,Wioska+barbarzy%C5%84ska,709,486,942959,4088,0 +47964,BRICKLEBERRY,518,288,7758085,10040,0 +47965,Brama+Kr%C3%B3lowej,707,439,849101378,8928,0 +47966,P%C3%B3%C5%82nocny+Bagdad,618,319,8847546,9835,0 +47967,komandos,646,662,7976264,10053,5 +47969,014,289,557,849098688,10636,0 +47970,%23K75+0028,513,712,699728159,4483,0 +47971,Wioska+Jopo32,527,708,699733501,8315,0 +47972,Osada+6,698,426,8675636,9560,0 +47973,Avanti%21,283,473,698625834,9617,4 +47974,Szlachcic,362,336,698388578,9806,0 +47975,KR%C3%93L+PAPI+WIELKI,715,521,698191218,6392,0 +47976,%5B006%5D,460,633,698585370,8851,0 +47977,%23%23%23117%23%23%23,594,694,698285444,10495,0 +47978,Wioska+barbarzy%C5%84ska,476,285,849054951,9314,0 +47979,...,341,360,699657450,9229,0 +47980,023,528,712,698996782,11731,0 +47981,Wioska+barbarzy%C5%84ska,684,385,1715091,8273,0 +47982,008+KW,702,417,699488108,9957,0 +47983,Taran,323,619,6180190,5189,4 +47984,Wioska+barbarzy%C5%84ska,703,429,699524891,9091,0 +47985,New+WorldA,285,525,849084005,4171,0 +47986,%3F%3F%3F%3F,470,294,698489071,5273,0 +47987,063.Stradi,433,300,698365960,10180,0 +47988,20+Dwie+dychy,711,446,849101845,4777,0 +47989,Wioska+B,540,295,1867161,4753,0 +47990,Sernik+z+Andzynkami,709,505,699126484,8006,0 +47991,004+Abinghton,619,320,699098531,10143,1 +47992,ChceszPokojuSzykujSi%C4%99DoWojny,487,715,699333701,9828,0 +47993,...,339,361,699657450,6264,0 +47994,Wioska+maks,374,667,699269923,9110,0 +47995,%2A007%2A,683,617,1205898,8336,0 +47996,038.,631,673,699695167,3253,0 +47997,142,402,687,849099876,6901,0 +47998,033,659,637,2323859,9783,0 +47999,%5B202%5D,678,387,8000875,6775,0 +48000,KONFA+TO+MARKA%2C+NARKA,289,443,698152377,10053,0 +48001,Maribor,556,294,849054951,10068,0 +48002,Wioska+barbarzy%C5%84ska,305,597,698167138,2224,0 +48004,C0238,290,548,8841266,8554,0 +48005,WB08,307,403,356642,4745,0 +48006,Las+Palmas,379,681,7085510,6202,0 +48008,FAKE+OR+OFF,403,308,698231772,9822,0 +48009,Wioska+barbarzy%C5%84ska,450,385,699191449,5061,0 +48010,Cisza,289,554,698769107,7058,0 +48011,005+xd+elo,309,606,6180190,9835,0 +48012,KONFA+TO+MARKA%2C+NARKA,288,455,698152377,7296,0 +48013,0011+W%C4%99gorzewo,462,284,849096882,5265,9 +48014,002+Twierdza,630,668,849104328,10019,0 +48015,Z%C5%82oty+%C5%9Awit,579,301,699883079,7401,0 +48016,KONFA+TO+MARKA%2C+NARKA,291,456,698152377,10294,0 +48017,Orion,284,516,849101647,5792,0 +48018,Wioska+barbarzy%C5%84ska,327,375,849027025,2127,0 +48019,Wyspa+018,298,569,225023,5877,0 +48020,Wioska+barbarzy%C5%84ska,508,718,698704189,6487,0 +48021,.achim.,482,289,6936607,9315,0 +48022,039.,627,670,699695167,4460,0 +48023,Wioska+barbarzy%C5%84ska,638,660,848987051,8977,0 +48024,Bessa+007,639,658,848987051,9996,0 +48025,Kurnik,442,710,699603116,1322,0 +48026,C.041,711,475,9188016,4346,0 +48027,%23%23%23015%23%23%23,607,690,698285444,10495,9 +48028,Szlachcic,360,334,698388578,4417,0 +48029,G005,511,290,699208929,9743,0 +48030,S009,596,687,8627359,7468,0 +48031,002+potrzeby%3F,534,710,6116940,6871,0 +48032,NOT%3F,434,545,9236866,1832,0 +48033,Taran,323,617,6180190,8548,0 +48034,044.+Jaworowy,711,542,1601917,8408,0 +48035,015,718,497,849091105,9792,2 +48036,047,663,358,9148043,6059,0 +48037,KONFA+TO+MARKA%2C+NARKA,291,452,698152377,10290,0 +48038,Parque+de+Santa+Catalina,376,678,7085510,2643,0 +48039,030%23+Karla,448,706,3933666,2468,0 +48041,Z%C5%82oty+%C5%9Awit,583,302,699883079,10055,0 +48042,Wioska+barbarzy%C5%84ska,365,671,0,1636,0 +48043,ZZ05,310,408,356642,9710,0 +48044,TWIERDZA+.%3A076%3A.,703,574,7154207,6021,0 +48045,1.+basket,310,594,6180190,4200,0 +48047,New+WorldA,290,523,849084005,6360,0 +48048,Nabatene,458,711,849089459,8365,0 +48049,XDX,607,314,699098531,9681,0 +48050,Pocz%C4%85tek,299,577,7842579,3816,0 +48051,186,415,690,849099876,9697,0 +48052,Wioska+barbarzy%C5%84ska,305,599,698167138,1580,0 +48055,Wioska+barbarzy%C5%84ska,372,325,3698627,9623,0 +48057,173,380,677,849099876,7434,0 +48058,D%C5%BCejd%C5%BCej+6,669,637,849098326,1388,0 +48059,wioska,637,338,849102068,3835,0 +48061,Wioska+barbarzy%C5%84ska,385,675,6948793,6656,0 +48062,099.Stradi,439,292,698365960,9083,0 +48063,037,510,289,849010255,6440,0 +48064,036,665,637,2323859,3601,0 +48065,020,648,351,9148043,5435,0 +48067,002,349,348,849101205,8890,0 +48068,Wioska+barbarzy%C5%84ska,557,711,699828442,9446,0 +48069,bucksbarzy%C5%84skamiiiru,328,380,848955783,2290,0 +48070,cc+091d,410,373,3909522,7054,0 +48071,036.,454,711,849034882,10503,0 +48072,Wioska+barbarzy%C5%84ska,332,373,849027025,3697,0 +48073,4_Franekkimono510_4,369,325,849099422,6479,0 +48074,004,683,609,3589487,5127,0 +48075,10.+Vindobona,711,539,848946700,10479,0 +48076,%3F%3F%3F%3F,472,292,698489071,7595,0 +48078,Wioska+barbarzy%C5%84ska,323,629,698908184,9808,0 +48079,--024--,572,296,542253,6128,0 +48080,%230024+barbarzy%C5%84ska,489,287,1238300,10178,8 +48081,015.+Pollo+alla+cacciatore,329,367,849102092,9782,0 +48082,Podbitek+4,689,606,849101652,3453,0 +48083,Wioska+barbarzy%C5%84ska,557,290,828637,10048,0 +48084,005,611,311,699117992,6694,0 +48086,775,345,642,698908184,7143,0 +48087,044KP,486,289,849063849,8816,0 +48088,Ostatnia+Noc,696,425,699785935,7001,0 +48089,%3D085%3D+Plymouth,700,567,3781794,6914,0 +48090,Wioska006,344,349,699711926,9239,0 +48091,Wioska+barbarzy%C5%84ska,375,672,699269923,8325,0 +48092,XDX,595,309,699098531,6099,0 +48093,Avanti%21,282,491,698625834,6886,0 +48094,Bolonia,302,425,699852080,1466,0 +48095,%230296+LAROX,461,291,1238300,7545,0 +48096,0141,390,679,7085510,5077,0 +48097,W36,694,413,699524362,3235,0 +48098,D%C5%BCejd%C5%BCej+3,668,634,849098326,8833,0 +48099,Lord+Arsey+KING,658,651,848956513,8362,0 +48100,%5B0250%5D,283,508,8630972,5939,0 +48101,Jan+III+Sobieski,713,502,8418489,3558,0 +48102,039.+Pig,509,716,848928624,4206,0 +48103,Wielka+Lechia,294,439,848970357,4103,0 +48104,Wioska+barbarzy%C5%84ska+2x3,570,702,849055425,8992,0 +48105,Avanti%21,285,492,698625834,6417,0 +48106,New+World+1,289,523,849084005,10178,0 +48107,Wioska011,689,399,698768565,7085,2 +48108,New+WorldA,284,523,849084005,4597,0 +48109,34.+Szalom,558,289,849054951,7627,0 +48111,New+World,428,706,698152377,10294,0 +48112,Na+SsSskraju,298,556,1536625,6896,7 +48113,O079,335,637,272173,9870,0 +48114,3.+Syrax,301,583,849089499,4485,0 +48115,C047,369,671,699383279,8660,0 +48116,Wioska+barbarzy%C5%84ska,534,292,698350371,7467,0 +48117,O131,319,622,272173,8069,0 +48118,013,615,314,699117992,2071,0 +48119,Ultimate+Farming+Simulator+2,417,304,699872032,9534,0 +48120,FAKE+OR+OFF,406,306,698231772,9816,0 +48121,028,296,567,849098688,10160,0 +48122,Wioska+008,693,596,7999103,6968,0 +48123,O064,332,633,272173,9868,0 +48124,Wioska+barbarzy%C5%84ska,703,428,699524891,8723,0 +48125,121,701,445,849088515,6216,0 +48126,New+WorldA,291,544,849084005,6749,0 +48127,.achim.,563,290,6936607,6759,0 +48129,P%C3%B3%C5%82nocny+Bagdad,616,320,8847546,9976,0 +48130,Senne,286,457,848981726,6457,9 +48131,Avanti%21,283,490,698625834,7056,0 +48132,Avanti%21,287,475,698625834,7016,0 +48133,Mamy+sporo+za+sob%C4%85,701,421,699785935,6319,0 +48134,Wioska+barbarzy%C5%84ska,358,341,849027025,9928,0 +48136,Wioska+barbarzy%C5%84ska,419,298,849102150,2857,0 +48137,Osada+koczownik%C3%B3w,383,325,699660539,9934,8 +48138,016+-+Budowanko%21,485,714,7540891,7403,0 +48139,Saran4,412,302,848937248,3760,0 +48140,New+Land+28,330,375,849064752,3094,0 +48141,Holandia100,289,512,698368493,3098,0 +48142,%5B0161%5D,450,295,8630972,8687,0 +48143,.achim.,477,282,6936607,3561,0 +48145,Kolonia+03,304,593,6180190,8447,0 +48147,006+Wioska+barbarzy%C5%84ska,603,686,699346280,10019,0 +48148,Wioska2.,705,577,699266530,9525,0 +48149,%5BB%5D001,417,702,9195661,9828,8 +48152,Klatka5,623,680,6528152,3074,0 +48153,023Nowy+Rok,474,707,698620694,8058,0 +48154,MojeDnoToWaszSzczyt,493,284,9299539,9957,0 +48155,005,531,715,698996782,6857,0 +48156,...,340,355,699657450,5649,0 +48157,ZZ16,307,411,356642,8363,0 +48158,Wioska+G%C5%82az,386,425,848917401,1083,0 +48159,Wioska+barbarzy%C5%84ska,705,548,17714,6165,0 +48160,068.Stradi,431,302,698365960,10171,0 +48161,Avanti%21,285,487,698625834,6295,0 +48162,Wioska+barbarzy%C5%84ska,647,344,9291984,4139,0 +48163,bbb,682,610,3986807,1404,0 +48164,.achim.,481,286,6936607,8515,0 +48165,EE+004,693,581,849100149,9643,0 +48166,HOLENDER+5,322,627,698908184,5122,0 +48167,Wioska+barbarzy%C5%84ska,335,369,849027025,4543,0 +48168,Borys%C3%B3wka+ma%C5%82a,305,601,698167138,4208,0 +48169,T%C5%82okowo+kolonia,285,501,849100877,8365,1 +48170,R+037,496,712,699195358,6991,0 +48171,York,567,707,849055425,7359,0 +48172,Z%C5%82oty+%C5%9Awit,586,300,699883079,9998,0 +48173,Barba,289,471,848977600,8788,0 +48174,Adamo3,585,696,849096768,8645,0 +48176,NBT+D,594,691,849047044,9238,0 +48177,023,714,473,849091105,10160,3 +48178,C014,543,706,698599365,9767,0 +48179,Beteo,553,705,699443920,9761,4 +48180,Wioska+barbarzy%C5%84ska,616,387,0,406,0 +48181,%2A006%2A,685,617,1205898,8154,0 +48182,New+WorldA,286,508,849084005,3056,1 +48183,075+Wioska+barbarzy%C5%84ska,539,284,699854484,9869,0 +48184,O010,339,633,272173,9956,0 +48186,Taran,326,619,6180190,9934,0 +48187,B_3,296,419,699728266,4281,2 +48188,Wiba,285,457,698652171,2394,0 +48189,Wioska+barbarzy%C5%84ska,328,373,849064752,2209,0 +48190,028.+Night+Raid%2A,426,707,699684062,10471,0 +48191,Szlachcic,358,339,698388578,6116,0 +48192,%23%235,348,351,2800032,9080,0 +48193,...,341,356,699657450,5400,0 +48194,Zzz+03+wejd%C5%BA+a+nie+wyjdziesz,293,572,849084740,4505,0 +48195,Wioska+barbarzy%C5%84ska,421,304,849085160,4161,0 +48196,Lord+Arsey+IV,325,384,698349125,3005,0 +48197,-+279+-+SS,554,702,849018239,7526,0 +48198,Taran,687,405,699598425,10728,0 +48199,096.Stradi,438,296,698365960,8871,0 +48200,Wioska+barbarzy%C5%84ska,529,287,699818726,7523,0 +48201,A-002,323,377,699406247,6320,9 +48202,Bestan,558,708,699443920,9761,0 +48203,FAKE+OR+OFF,410,308,698231772,9824,0 +48204,032+Lavaridge+Town,717,480,699441366,5199,0 +48205,%2A003,668,365,7758085,9847,0 +48206,-07-,577,701,849032414,9472,0 +48207,ChceszPokojuSzykujSi%C4%99DoWojny,488,715,699333701,9761,0 +48208,New+World,438,702,698152377,10295,0 +48209,118+invidia,503,711,849093426,9634,0 +48210,040.,631,675,699695167,3250,0 +48211,Wioska+barbarzy%C5%84ska,417,299,698231772,6663,0 +48212,009+ukrad%C5%82em+darm%C4%99,521,708,849093426,10237,0 +48213,Wioska+Felicjan,528,289,699818726,10160,0 +48214,Wioska+barbarzy%C5%84ska,712,446,699628084,4318,0 +48215,Wioska+barbarzy%C5%84ska,559,710,699828442,5670,0 +48216,Wioska+barbarzy%C5%84ska,717,488,699429153,6135,0 +48217,Wioska,685,384,1715091,10160,0 +48218,O029,334,636,272173,9907,0 +48219,C080,357,654,699383279,9674,0 +48220,O052,331,630,272173,9871,0 +48221,%3DTestudo%3D,344,641,849101581,4233,0 +48222,New+World,424,695,698152377,10290,0 +48223,Wioska+0023,348,651,9186126,7967,0 +48224,WIOSKA+DO+ODDANIA+Z+BONUSAMI,462,714,849101578,1017,0 +48225,Wied%C5%BAma+-+Z+008,301,432,9239515,2656,0 +48226,EO+EO,281,499,699697558,10019,0 +48227,Wioska+barbarzy%C5%84ska,305,588,698663855,5001,0 +48229,Poziom+emocji%3A+0,353,654,849092685,8045,0 +48230,Wioska+%2Aworm%2A,292,561,2811353,3546,0 +48231,055+Wioska+barbarzy%C5%84ska,549,288,699854484,9976,0 +48232,%23.46+Wioska+barbarzy%C5%84ska,706,458,849054582,1722,0 +48233,088,711,520,7085502,7074,0 +48234,FAKE+OR+OFF,410,309,698231772,9822,0 +48235,C078,355,659,699383279,5174,0 +48236,Pocz%C4%85tek,302,579,7842579,9811,0 +48237,Tyle+co+nic,693,603,849101652,2321,0 +48238,rafisonik4,511,714,849101108,10285,0 +48239,North+004,517,282,849064752,10311,0 +48240,%2A015%2A%2A,680,619,1205898,6930,0 +48241,Wiadro07,673,629,8677963,8167,0 +48242,Wioska+barbarzy%C5%84ska,307,418,0,320,0 +48243,005,538,713,8925624,2596,0 +48244,Z%C5%82oty+%C5%9Awit,580,301,699883079,9643,0 +48245,Wioska+barbarzy%C5%84ska+006,379,321,849068662,10052,0 +48246,0075+Wioska+barbarzy%C5%84ska,448,705,849037407,6913,0 +48247,New+World,433,700,698152377,10294,6 +48248,007+%C5%BBnin,286,528,9235561,4369,0 +48249,001+-+Budowanko%21,488,714,7540891,11130,0 +48251,Wioska+ba,281,501,849101674,4370,0 +48252,Taran,324,622,6180190,7765,0 +48253,073,626,323,2502956,5511,0 +48255,087,717,503,7085502,5952,0 +48257,XDX,603,306,699098531,6612,0 +48258,Wioska+5,655,347,849101945,1702,0 +48259,Wioska+barbarzy%C5%84ska,715,505,8418489,5896,0 +48260,Wioska+barbarzy%C5%84ska,708,547,17714,3931,0 +48261,041.,630,667,699695167,4066,0 +48262,stalingrad+1,541,712,7860453,3777,0 +48264,Wioska+19F06,438,709,698152377,7437,0 +48265,Kurnik,444,711,699603116,2662,0 +48266,C070,358,664,699383279,4644,0 +48267,Taran,315,602,6180190,6228,0 +48268,Wyspa+026,292,565,225023,4953,0 +48269,C.026,709,481,9188016,4680,0 +48271,002,696,402,7409475,8605,0 +48272,0080,681,394,698416970,10019,7 +48274,037,716,468,849091105,8922,0 +48275,0001+Wioska+Hubixon,494,722,699656989,9772,0 +48276,MojeDnoToWaszSzczyt,496,286,9299539,9971,0 +48277,AAA,555,295,1006847,7487,0 +48278,-04-,579,702,849032414,9472,0 +48281,002+Giecz,290,530,9235561,6921,0 +48282,%230186+grabarz22,465,287,1238300,7279,0 +48283,C04,707,444,849093742,7227,0 +48284,Kurnik,548,711,699603116,9282,0 +48285,006,388,677,6948793,9714,0 +48286,Architekci+Plac%C3%B3w+Boju,338,554,8004076,9880,0 +48287,C071,358,661,699383279,5807,0 +48288,15+Tam+gdzie+Zawsze,706,445,849101845,8462,0 +48289,0434,560,708,698659980,10019,0 +48290,C010,537,711,698599365,5899,0 +48291,%23%23%23118%23%23%23,587,696,698285444,10495,0 +48292,253...Karki98,452,294,6920960,5771,0 +48293,015,663,646,2323859,4645,0 +48294,Wioska+barbarzy%C5%84ska,371,328,3698627,9522,0 +48295,Wioska+barbarzy%C5%84ska,426,295,698231772,7323,0 +48296,004+-+Budowanko%21,490,719,7540891,9087,0 +48297,13.+PST,477,714,849092769,4135,0 +48298,XDX,608,316,699098531,10290,0 +48299,MojeDnoToWaszSzczyt,502,283,9299539,9706,0 +48300,069,712,509,7085502,8275,0 +48302,Taran,323,623,6180190,9869,0 +48303,073+Wioska+barbarzy%C5%84ska,543,288,699854484,9835,0 +48304,C0246,288,544,8841266,5097,0 +48305,BossLand,353,341,849101604,10120,0 +48306,Piek%C5%82o+to+inni,643,337,848956765,5943,0 +48307,...,342,358,699657450,4067,0 +48308,Wioska+bar,285,529,699805379,1928,0 +48309,007,384,319,699660539,7072,0 +48310,005,420,307,699694284,8434,0 +48311,Szlachcic,360,336,698388578,6901,0 +48312,024,646,348,9148043,4122,0 +48313,%5BD%5D_%5B002%5D+Dejv.oldplyr,285,498,699380607,9138,0 +48314,0126,386,687,7085510,7661,0 +48315,%5B0231%5D,290,505,8630972,7772,0 +48316,006%3AWioska+Huel,374,333,8772425,10301,0 +48318,%23K66+0011,609,678,699728159,4914,0 +48319,Wioska+barbarzy%C5%84ska,385,676,6948793,8167,0 +48320,008+Biskupin,286,534,9235561,7374,0 +48321,%23K75+0011,521,712,699728159,5198,0 +48322,087,394,683,849099876,10221,0 +48323,043,293,543,9280477,5209,0 +48324,%5B203%5D,678,388,8000875,6024,0 +48325,114,683,606,3589487,4052,0 +48327,039.,451,710,849034882,9827,0 +48329,New+World,435,703,698152377,10291,0 +48330,Komandos,638,665,7976264,10495,4 +48331,Woof,701,429,699785935,7652,0 +48332,016,386,319,699660539,4487,0 +48333,Wioska+barbarzy%C5%84ska,687,610,3589487,2777,0 +48334,XDX,600,306,699098531,6426,0 +48335,002,663,642,2323859,9783,0 +48336,D012,560,292,699299123,5698,0 +48337,Wyspa+017,299,571,225023,6876,0 +48338,-+289+-+SS,559,704,849018239,6621,0 +48339,006.+xHavajek,681,379,2873154,10237,0 +48340,029+Slateport+City,713,482,699441366,4909,0 +48342,Obrze%C5%BCe,582,694,7589468,8817,0 +48343,SkalpeR+4,281,502,849101674,2921,0 +48344,Lord+Arsey+KING,653,652,848956513,10285,0 +48345,05.+Rawenna,709,538,848946700,10382,0 +48346,FAKE+OR+OFF,403,309,698231772,9813,0 +48347,Cisza,289,558,698769107,7550,0 +48348,Kurnik,446,713,699603116,2204,0 +48349,A+036,362,644,699269923,8459,0 +48350,MJ45,683,382,8669398,6215,0 +48351,AlaKlaudia1,383,324,848966521,5878,0 +48352,Daleko+od+domu.,659,354,848924219,1680,0 +48354,O067,331,629,272173,9868,0 +48355,162...H,392,312,6920960,5822,0 +48356,010.+Night+Raid%2A,433,698,699684062,10362,0 +48357,049.,637,671,699373599,4455,0 +48359,018,525,717,698996782,6332,0 +48360,028.+Brauer92,674,381,2873154,7894,0 +48361,Pocz%C4%85tek,297,574,7842579,9924,9 +48362,%C5%81o+baben%21,712,501,8418489,9797,0 +48363,Wioska+003,689,595,7999103,10304,0 +48365,003,701,560,301602,8716,0 +48366,Ger5,716,524,2246711,4077,0 +48367,181,383,317,2268889,4961,0 +48368,Wioska009,694,390,698768565,4357,0 +48369,060,401,696,849099876,10495,0 +48370,artnow,618,678,6818593,2081,0 +48371,008,311,398,8724192,3216,0 +48372,010,695,394,699738350,10171,0 +48373,Wioska+do+czasu,352,651,2725721,4428,0 +48375,FAKE+OR+OFF,403,307,698231772,9822,0 +48376,Wioska+barbarzy%C5%84ska,709,540,17714,4071,0 +48377,New+World,421,705,698152377,10297,0 +48378,Wancki,517,287,7758085,9861,6 +48379,%23K75+0017,520,710,699728159,4882,0 +48380,Szlachcic,362,343,698388578,6367,0 +48381,Wiadro15,666,637,8677963,10147,0 +48382,KONFA+TO+MARKA%2C+NARKA,296,434,698152377,7668,0 +48383,028%7C%7C+Sextans,488,643,849035525,10019,0 +48384,166,413,693,849099876,9280,0 +48385,U.004,291,558,849088243,7429,0 +48386,New+World,432,699,698152377,7669,0 +48387,%230042,545,629,1536231,10495,0 +48388,058,401,693,849099876,10495,0 +48389,0033,326,381,2321390,2618,0 +48390,085,719,514,7085502,6007,0 +48391,%3F%3F%3F%3F,490,281,698489071,10503,6 +48392,Wioska+Vlo4,586,307,8609713,8931,0 +48393,KONFA+TO+MARKA%2C+NARKA,290,452,698152377,6897,0 +48394,...,336,359,699657450,1704,0 +48395,004,308,400,8724192,5530,0 +48396,004,353,349,849101205,8085,0 +48397,0042,473,715,699280514,3745,0 +48398,Z%C5%82oty+%C5%9Awit,596,300,699883079,8082,0 +48399,Kurnik,477,712,699603116,7644,0 +48400,C.042,715,466,9188016,4517,0 +48402,Wioska+barbarzy%C5%84ska,694,598,6921135,7015,0 +48403,Z%C5%82oty+%C5%9Awit,580,298,699883079,10119,0 +48404,Babidi+%233,373,324,849101962,7583,0 +48405,0089,685,399,698416970,9435,6 +48406,Wioska+barbarzy%C5%84ska,534,290,698350371,8408,0 +48407,Lord+Arsey+KING,654,655,848956513,9922,0 +48409,115,687,616,3589487,4350,0 +48410,Kurnik,467,711,699603116,9201,0 +48411,Bagno+4,485,719,848883684,9452,0 +48412,IV.+Krzyczki-%C5%BBabiczki,364,333,849101893,4784,0 +48413,012,657,644,2323859,6561,0 +48415,bucksbarzy%C5%84skamiiiru,316,394,848955783,7044,0 +48417,rafisonik3,510,713,849101108,12154,0 +48418,Blask,701,433,699785935,7970,0 +48419,%2A028%2A,688,614,1205898,3364,0 +48420,Hoofdorp,282,519,699830255,1887,0 +48422,Wioska+barbarzy%C5%84ska,636,339,8740199,3612,0 +48423,065+invidia,546,708,849093426,6278,0 +48424,%2136+66+Runcu,663,362,698361257,9483,0 +48425,Moldor+5,633,362,849049045,11078,0 +48426,XDX,599,314,699098531,6833,0 +48427,Taran,314,615,6180190,9789,0 +48428,Wioska+barbarzy%C5%84ska,431,294,698231772,8815,0 +48429,XDX,598,313,699098531,9759,0 +48430,042,625,675,699695167,3605,0 +48431,%23K75+0019,519,718,699728159,4555,0 +48432,New+World,436,709,698152377,10291,0 +48433,Wioska+barbarzy%C5%84ska,573,646,6818593,6350,0 +48434,0024,317,382,2321390,3169,0 +48435,Wioska+Z%C5%82ylos,380,317,849068662,11495,0 +48436,...,338,358,699657450,8590,0 +48437,R+038,497,709,699195358,7823,0 +48438,Z23,313,403,356642,9835,0 +48439,Muspelheim,667,627,849096631,2176,0 +48440,EE+005,697,581,849100149,9570,0 +48441,kamilkaze135+%2313,688,387,699705601,4705,0 +48442,%28NieTymRazem%29,701,419,849101881,6801,0 +48443,North+K25,535,286,699146580,2193,0 +48444,005.+Prosciutto+e+rucola,327,379,849102092,4526,0 +48445,Blumak,551,711,699443920,9761,1 +48446,Procyon,291,518,849101647,9213,0 +48447,New+WorldA,281,515,849084005,2677,0 +48448,Wioska+barbarzy%C5%84ska,719,500,6510480,5803,0 +48449,%23%23%23119%23%23%23,592,695,698285444,10495,0 +48450,Wioska009,344,346,699711926,9732,0 +48451,Wioska+barbarzy%C5%84ska,573,705,7756002,7190,0 +48452,EO+EO,283,519,699697558,10019,5 +48453,Avanti%21,286,476,698625834,6276,0 +48454,Wioska+barbarzy%C5%84ska,705,551,8742874,5549,0 +48455,BRICKLEBERRY,518,286,7758085,9333,4 +48456,Wioska+Mursilis,508,290,9260447,2540,0 +48458,Stefan+Batory,714,501,8418489,7797,0 +48459,Wioska+barbarzy%C5%84ska,373,326,3698627,8643,0 +48460,EO+EO,287,500,699697558,10083,0 +48461,C074,355,663,699383279,5080,0 +48462,HOLENDER+3,318,624,698908184,5557,0 +48463,068.+Aeminium,713,455,849091866,8270,0 +48464,Ultimate+Farming+Simulator+3,414,304,699872032,9232,0 +48465,Szlachcic,363,332,698388578,6112,0 +48466,072,715,513,7085502,6414,0 +48467,Bagno+13,482,719,848883684,9468,0 +48468,Wioska+barbarzy%C5%84ska+002,564,704,6870350,9595,0 +48469,%5B0232%5D,287,507,8630972,6455,0 +48470,New+WorldA,285,536,849084005,2015,0 +48471,zbytowa,296,562,849101092,5608,0 +48472,Nic,695,602,849101652,10019,0 +48473,T%C5%82okowo+Wielkie,283,489,849100877,7665,0 +48474,Borubar+4,715,473,699413581,4439,0 +48475,Crystal+Gardens,383,685,849105463,2140,0 +48476,043.,629,667,699695167,3315,0 +48477,Wioska+barbarzy%C5%84ska,449,290,699393759,7554,0 +48478,Z%C5%82oty+%C5%9Awit,593,306,699883079,7399,0 +48479,%3D039%3D+Wioska+barbarzy%C5%84ska,705,563,3781794,10017,0 +48480,016.+Demawend,711,549,1601917,10495,0 +48481,049,664,356,698361257,7937,0 +48482,W37,699,407,699524362,1504,0 +48483,146,397,692,849099876,8937,0 +48484,Wioska+007,697,595,7999103,7479,0 +48485,18%2B,329,371,9240154,2498,0 +48486,Wioska+Kanut,289,466,356642,3574,0 +48487,%7CA%7C+Ghostfort.,481,648,698807570,10495,0 +48488,Avanti%21,284,479,698625834,7447,0 +48489,MojeDnoToWaszSzczyt,508,283,9299539,9827,0 +48490,EO+EO,290,521,699697558,10019,0 +48491,P%C3%B3%C5%82nocny+Bagdad,619,317,8847546,9835,0 +48492,017,298,558,9280477,8271,0 +48493,XXXX,566,298,849054951,10068,0 +48494,Wioska+barbarzy%C5%84ska,585,306,828637,10476,0 +48495,054.,633,674,699373599,3855,0 +48496,006,647,652,849101148,8276,0 +48498,Wioska+barbarzy%C5%84ska,711,465,113796,1995,0 +48499,Marchewkowe+pole,354,657,2725721,7264,0 +48500,C.037,718,478,9188016,4689,0 +48501,015,297,555,9280477,7793,0 +48502,New+World,420,702,698152377,10252,0 +48503,035,670,637,2323859,3159,0 +48504,Taran,316,612,6180190,7843,0 +48505,Wyspa+013,297,563,225023,5923,0 +48506,Wioska+barbarzy%C5%84ska+008,560,707,6870350,6436,0 +48508,Wioska+4,386,321,2268889,2289,0 +48509,Wioska,706,428,849102464,5829,0 +48510,%2A013%2A,684,617,1205898,8015,0 +48511,135+invidia,540,708,849093426,10802,0 +48512,Wioska+barbarzy%C5%84ska,379,327,3698627,9519,0 +48514,Jaaa,627,591,698635863,10263,0 +48515,027+Night+Raid%2A,424,706,699684062,8960,0 +48517,154,395,687,849099876,7957,0 +48519,%23%23%23120%23%23%23,589,699,698285444,10495,0 +48520,Rawa+Mazowiecka,630,646,698346318,12154,0 +48521,Wioska+barbarzy%C5%84ska,716,493,699429153,7211,0 +48522,XDX,610,311,699098531,7892,0 +48523,013,528,291,699818726,6901,0 +48524,%23Kresy,627,677,2665207,2651,0 +48525,033,654,350,9148043,6393,0 +48526,025,667,640,2323859,1967,0 +48527,260...Karki98,455,290,6920960,4605,0 +48528,Wioska+01,717,515,8408007,1987,0 +48529,O028,333,635,272173,9957,0 +48530,0000029Z,288,560,849089881,10144,0 +48531,Wioska+barbarzy%C5%84ska,312,611,6180190,6078,0 +48532,Zzz+02+ale+oco+chodzi,294,571,849084740,5591,0 +48533,Wioska+0014,346,652,9186126,10040,0 +48534,psycha+sitting,405,677,699736927,10311,0 +48535,Avanti%21,288,474,698625834,5570,0 +48536,K33,312,392,699794765,9139,0 +48537,MJ2,684,382,8669398,6052,0 +48539,Bocian,431,292,947923,3409,0 +48540,111+invidia,514,715,849093426,10001,0 +48541,Wioska+barbarzy%C5%84ska,699,433,1715091,9750,0 +48542,New+World,427,704,698152377,10290,0 +48543,Wiadro08,671,629,8677963,7341,0 +48544,113,408,698,849099876,10106,0 +48545,Wioska+barbarzy%C5%84ska,625,331,0,2376,0 +48546,New+WorldA,286,526,849084005,2329,0 +48547,%5B0123%5D,442,295,8630972,9890,0 +48549,BRICKLEBERRY,516,287,7758085,10132,0 +48550,001e,300,413,8259895,5230,0 +48551,Piek%C5%82o+to+inni,643,336,848956765,8827,0 +48552,Wioska+10,691,592,849101162,4972,0 +48553,104,506,486,8788366,9586,0 +48554,Kolonia+04,304,589,6180190,5991,0 +48555,167,380,674,849099876,7443,0 +48556,Szara+Warta,707,441,849101378,7430,0 +48557,Wioska,404,304,849094789,6782,0 +48558,W38,694,414,699524362,1931,0 +48559,%23K75+0013,517,711,699728159,7130,0 +48560,sh03,512,285,7064954,5892,0 +48561,%5B821%5D+Odludzie,710,443,848985692,6792,0 +48562,New+WorldA,291,523,849084005,6099,0 +48563,052+Wioska+barbarzy%C5%84ska,548,288,699854484,9835,0 +48564,bucksbarzy%C5%84skamiiiru,317,387,848955783,5257,0 +48565,Szlachcic,394,356,3484132,10476,0 +48566,%5B0251%5D,284,510,8630972,6612,0 +48568,003+JJ,329,365,9120206,8218,0 +48569,Vvv,285,531,699805379,2485,1 +48570,003,583,319,1767876,9741,0 +48571,New+WorldA,289,542,849084005,5516,0 +48572,Bestia,553,704,699443920,9761,0 +48573,038,510,287,849010255,6444,0 +48574,016%23+Anetha,478,717,3933666,7071,0 +48575,X003+Gwiezdna+flota,709,430,699722599,8097,0 +48576,Wioska+barbarzy%C5%84ska,329,376,849027025,2405,0 +48577,A%23030,716,503,2065730,9797,0 +48578,basonia,282,501,849101674,8346,0 +48579,KONFA+TO+MARKA%2C+NARKA,289,449,698152377,10290,0 +48580,020.+Ebal,713,556,1601917,10495,0 +48582,093.,632,485,849094609,4189,0 +48583,Wioska+Pawel1992,693,416,699738350,9732,0 +48584,B005,622,320,8740199,5930,0 +48585,Wyspa+012,294,566,225023,3841,0 +48586,KR%C3%93L+PAPI+WIELKI,670,627,698191218,7501,0 +48587,CastAway+%23002,703,585,9314079,9815,6 +48588,MERHET,583,704,698215322,9476,0 +48589,079,718,512,7085502,6125,0 +48590,Wioska+barbarzy%C5%84ska,497,281,763529,6733,0 +48591,New+WorldA,284,526,849084005,6383,0 +48592,ZZ04,309,408,356642,9631,0 +48593,C0244,287,546,8841266,5008,0 +48594,Raqmu,457,712,849089459,9553,0 +48595,052,405,693,849099876,10495,0 +48596,101.Stradi,441,288,698365960,9267,0 +48597,048,677,377,698635863,8008,0 +48598,Wioska+barbarzy%C5%84ska+III,628,321,848958556,2978,0 +48599,Wioska+barbarzy%C5%84ska,574,303,828637,4588,0 +48601,33.+Wioska+barbarzy%C5%84ska05,714,469,699804790,3368,0 +48602,%3D081%3D+Hampton,703,571,3781794,10590,0 +48603,Wioska+barbarzy%C5%84ska,426,293,849017820,8388,0 +48604,Taran,325,627,6180190,9666,0 +48605,PIROTECHNIK+009,350,352,849101083,3328,0 +48606,Wyspa+003,293,566,225023,10495,0 +48607,qqqqq4,283,482,1095489,2205,0 +48608,020+Cianwood+City,716,488,699441366,11109,0 +48609,002,308,401,8724192,6813,0 +48610,FAKE+OR+OFF,426,290,698231772,10072,0 +48611,Avanti%21,284,487,698625834,6729,0 +48612,B024,625,330,8740199,10071,0 +48613,Mniejsze+z%C5%82o+0090,311,392,699794765,5079,0 +48614,Psycho+to+Marka%2C+Narka+%21,302,569,849040142,9091,9 +48616,O030,336,637,272173,9959,0 +48617,KR%C3%93L+PAPI+WIELKI,710,531,698191218,6480,0 +48618,Wioska+barbarzy%C5%84ska,616,685,6818593,5444,0 +48619,023+szcz%C4%99%C5%9Bciarz,543,704,849093426,10237,0 +48620,Ultimate+Farming+Simulator+4,414,301,699872032,8530,0 +48621,K35+-+%5B017%5D+Before+Land,587,304,699088769,9649,0 +48622,O071,328,630,272173,9871,0 +48623,192...segador,431,293,6920960,10787,0 +48624,3.Birmingham,549,715,698215322,9039,0 +48625,C014,370,669,699383279,9663,0 +48626,Z.06,700,579,699737356,3907,0 +48627,%3F%3F%3F%3F,472,282,698489071,8612,0 +48628,Wioska+Turystyczna+009,701,507,7588382,3008,0 +48629,New+WorldA,292,539,849084005,7479,0 +48630,Sosonowiec,532,709,6116940,6419,0 +48631,Wioska+barbarzy%C5%84ska,630,333,849005829,2434,0 +48633,006,298,428,6131106,6174,5 +48634,069.,715,472,849094609,3528,0 +48635,Wioska+barbarzy%C5%84ska,713,548,17714,10129,0 +48637,Wioska+Turystyczna+008,709,476,7588382,4810,0 +48638,Pax,351,340,849101694,11076,0 +48639,Lord+Arsey+KING,660,650,848956513,7850,0 +48640,36.+Nice,559,289,849054951,7344,0 +48641,CastAway+%21008,702,582,9314079,9435,0 +48643,%2A010%2A,680,622,1205898,7782,0 +48644,FAKE+OR+OFF,404,310,698231772,9816,0 +48645,010,352,349,849101205,4127,0 +48648,007+A,410,690,849099876,10495,9 +48650,FAKE+OR+OFF,408,304,698231772,9709,0 +48651,4.+Vermithor,302,584,849089499,2645,0 +48652,-26-,567,710,849032414,4389,0 +48654,Po%C5%82udnie.015,551,686,873575,10012,0 +48655,Z%C5%82oty+%C5%9Awit,592,302,699883079,8187,0 +48656,--022--,575,297,542253,6589,0 +48657,KONFA+TO+MARKA%2C+NARKA,291,458,698152377,9623,0 +48658,Wioska+barbarzy%C5%84ska,707,555,17714,6154,0 +48659,045.+Jacksona,703,556,1601917,8702,0 +48660,O069,329,632,272173,9870,0 +48661,Wioska+0009,344,654,9186126,10375,0 +48662,wancki+i+gustlikk,502,282,7758085,9726,0 +48663,Sernik+z+Andzynkami,710,502,699126484,7833,0 +48665,BANG,310,407,699127156,1959,0 +48666,Gombao+33,701,438,699785935,8034,0 +48667,NBT+P,595,692,849047044,8588,0 +48668,Bydgoszcz,499,285,699278528,9765,0 +48669,Borubar+2,710,465,113796,2120,0 +48670,C090,361,662,699383279,6983,0 +48672,Psycha+Siada,337,647,8099868,9099,0 +48673,0129,389,685,7085510,5187,0 +48674,%3F%3F%3F%3F,493,281,698489071,10160,5 +48675,Psycha+Siada,338,646,8099868,9835,0 +48677,Wioska+Turystyczna+004,715,464,7588382,7357,0 +48678,%2A016%2A,675,621,1205898,5920,0 +48679,O015,338,634,272173,9955,0 +48680,.achim.,487,287,6936607,8107,0 +48681,024+Littleroot+Town,719,483,699441366,7678,0 +48682,Wioska+barbarzy%C5%84ska,589,701,699837483,4669,0 +48684,Wioska+011,696,595,7999103,3345,0 +48685,D002,561,297,699299123,8088,0 +48686,Wioska+0002,342,650,9186126,10237,0 +48687,Taran,318,617,6180190,9212,0 +48688,Wioska+barbarzy%C5%84ska,418,296,698231772,9023,0 +48689,Kiedy%C5%9B+Wielki+Wojownik,333,356,8632462,8380,0 +48690,Wioska+barbarzy%C5%84skaaaa,716,535,17714,9393,0 +48691,Wioska-014-,631,331,7675610,1415,0 +48692,bucksbarzy%C5%84skamiiiru,315,399,848955783,7161,0 +48693,EE+007,698,582,849100149,9189,0 +48694,Winterfell.014,468,285,848918380,8270,0 +48695,psycha+sitting,415,676,699736927,10311,0 +48696,Wioska+barbarzy%C5%84ska,355,346,849027025,7679,0 +48697,Taran,320,620,6180190,8003,0 +48698,Wioska+barbarzy%C5%84ska,506,715,698704189,2261,0 +48700,%5BD%5D_%5B006%5D+Dejv.oldplyr,285,506,699380607,5813,0 +48701,EO+EO,288,519,699697558,10252,0 +48702,Wioska+barbarzy%C5%84ska+011,382,314,849068662,5146,0 +48703,114+invidia,507,716,849093426,10290,2 +48704,Wioska+barbarzy%C5%84ska,712,540,848946700,4199,0 +48705,wancki+i+gustlikk,506,280,7758085,9737,0 +48706,Wioska+barbarzy%C5%84ska,368,330,3698627,9168,0 +48707,Wiadro13,677,629,8677963,6225,0 +48710,Wioska+barbarzy%C5%84ska,393,692,0,1804,0 +48711,111,683,612,3589487,7196,0 +48712,061.Stradi,427,296,698365960,10167,0 +48713,O053,331,634,272173,9867,0 +48714,Wioska+MrZibo,310,596,7695659,1129,0 +48715,K24+-+%5B004%5D+Before+Land,435,291,699088769,6111,0 +48716,A%23039,713,491,2065730,9797,0 +48717,C005,369,667,699383279,9808,5 +48718,MojeDnoToWaszSzczyt,501,284,9299539,9960,0 +48720,1.+Wioska+barbarzy%C5%84ska,684,622,1049851,3127,0 +48722,Vvvvvv,282,533,699805379,1707,0 +48723,Kurnik,549,708,699603116,8883,0 +48725,001a,301,415,8259895,4773,0 +48726,Wioska+barbarzy%C5%84ska,614,684,6818593,4516,0 +48727,yks,542,708,9016560,10449,0 +48728,Z%C5%82oty+%C5%9Awit,582,300,699883079,10049,0 +48729,C007,350,660,699383279,9804,0 +48730,223,421,305,698365960,4801,0 +48731,Z%C5%82oty+%C5%9Awit,596,302,699883079,7087,0 +48732,Wioska+barbarzy%C5%84ska,646,653,848987051,8626,0 +48733,Wioska+barbarzy%C5%84ska,328,625,698908184,8546,0 +48734,006,532,715,698996782,8640,0 +48735,Ciemnogr%C3%B3d+%235,335,363,849096958,7821,0 +48736,Wioska+barbarzy%C5%84ska,550,708,699828442,5176,0 +48737,New+World,439,705,698152377,9243,0 +48738,Wioska+barbarzy%C5%84ska,639,661,848987051,10095,0 +48739,Wioska+barbarzy%C5%84ska,557,712,6299408,7756,0 +48740,C.043,711,471,9188016,4346,0 +48741,002g,302,407,8259895,5367,0 +48742,081+Hjubal,711,507,2135129,3505,0 +48743,Bac%C3%B3wka,308,602,698167138,1962,0 +48745,002c,299,410,8259895,5141,0 +48746,KR%C3%93L+PAPI+WIELKI,716,525,698191218,6322,0 +48747,069+invidia,538,715,849093426,6179,0 +48748,Wioska+barbarzy%C5%84ska,514,719,699728159,9702,0 +48749,Wancki,517,286,7758085,9861,0 +48753,The+Unforgiven,701,411,699785935,3607,0 +48755,O045,327,636,272173,9871,0 +48757,New+WorldA,281,511,849084005,3170,0 +48759,Z%C5%82oty+%C5%9Awit,577,301,699883079,6761,0 +48762,010+Kalisz,288,532,9235561,3797,0 +48764,Wioska+barbarzy%C5%84ska,445,292,699308637,5663,0 +48766,Bagno+5,480,717,848883684,9433,0 +48768,%3DLM%3D,700,419,849101881,3879,0 +48770,Sp%C3%B3%C5%BAnienie,306,396,849076515,8576,0 +48772,Z%C5%82oty+%C5%9Awit,571,297,699883079,9050,0 +48773,009.,624,676,699695167,3813,3 +48775,ChceszPokojuSzykujSi%C4%99DoWojny,486,712,699333701,5089,0 +48776,Wioska+barbarzy%C5%84ska,303,593,6180190,3988,0 +48777,Wyspa+033,292,563,225023,1554,0 +48778,Wioska+barbarzy%C5%84ska,716,536,848946700,4484,0 +48779,01+go%C5%9B%C4%87018443.,287,446,849018442,9835,0 +48780,A%23016,710,490,2065730,9797,0 +48781,Wioska010,343,347,699711926,8752,0 +48782,304,450,289,7271812,6498,0 +48783,Bialystok,487,281,699278528,9857,1 +48784,%2A029%2A,681,624,1205898,2286,0 +48785,%23153%23,649,660,692803,2851,0 +48787,Pocz%C4%85tek,305,582,7842579,5071,0 +48789,Wioska+barbarzy%C5%84ska,658,352,1715091,4147,0 +48790,A%23001,718,520,2065730,9797,0 +48791,Kurnik,464,714,699603116,9778,0 +48792,%23K75+0024,513,714,699728159,4358,0 +48793,08+Winko,706,454,849101845,9361,0 +48794,wancki+i+gustlikk,507,283,7758085,9797,0 +48795,Wioska+barbarzy%C5%84ska,434,295,699191455,4251,0 +48796,Wioska+barbarzy%C5%84ska,282,485,699846892,3608,0 +48797,...,340,362,699657450,3702,0 +48798,A%23003,712,514,2065730,9797,8 +48799,002,652,342,848889850,3654,0 +48800,Wioska+barbarzy%C5%84ska,280,481,699846892,3850,0 +48801,111,413,696,849099876,9180,0 +48802,Manowce,690,405,699785935,5933,0 +48803,Szlachcic,381,315,698160606,9570,5 +48805,%2A011%2A,680,624,1205898,8491,0 +48807,Pocz%C4%85tek,299,579,7842579,9545,0 +48808,komandos48,648,661,7976264,10252,0 +48809,024+Wioska+barbarzy%C5%84ska,600,687,699346280,7630,0 +48810,166...J,397,313,6920960,5536,0 +48811,a-5,677,615,848921861,10495,0 +48812,002+-+Budowanko%21,488,716,7540891,10015,0 +48813,Wioska6,707,575,699266530,8438,0 +48814,154...D,399,309,6920960,7760,0 +48815,009.+Boscaiola,313,391,849102092,5158,0 +48816,Kolorowe+Jarmarki,700,425,699785935,6003,0 +48817,WIOSKA+02,341,347,698757439,7767,0 +48818,wy...nic,600,697,699828685,9976,0 +48819,%3D021%3D+Wioska+barbarzy%C5%84ska,709,565,3781794,8486,0 +48820,Nocny+Fort,705,434,849101378,9103,0 +48821,003,303,412,8259895,5230,0 +48822,New+World,433,708,698152377,9910,0 +48823,044,634,668,699695167,3034,0 +48824,Wie%C5%BCa+Cieni,709,437,849101378,9037,0 +48825,O031,332,637,272173,9959,0 +48826,Piek%C5%82o+to+inni,632,324,848956765,5435,0 +48827,Wioska+barbarzy%C5%84ska,713,540,848946700,7015,0 +48828,Wioska+franka,294,576,849101771,4961,0 +48829,Wioska+barbarzy%C5%84ska,421,300,698231772,9335,0 +48830,%230079,573,706,1536231,4147,0 +48831,Lord+Arsey+KING,652,654,848956513,10285,0 +48832,Wioska+barbarzy%C5%84ska,280,501,849101674,5438,0 +48833,%3D130%3D+Mascov,702,566,3781794,10946,0 +48834,%2A024,676,372,7758085,4051,0 +48835,Bigosowy2,678,370,849095800,4190,0 +48836,%23%23%23121%23%23%23,596,693,698285444,10495,0 +48838,Cisza,290,551,698769107,5914,0 +48840,wioska,635,329,849102068,10353,0 +48841,037.,453,710,849034882,9052,0 +48842,Ciemnogr%C3%B3d+%2310,335,361,849096958,4932,0 +48843,020.+Gorgonzola+e+noci,323,379,849102092,1976,0 +48844,Z%C5%82oty+%C5%9Awit,594,301,699883079,10119,5 +48845,New+WorldA,288,550,849084005,4647,0 +48846,Piek%C5%82o+to+inni,633,327,848956765,5371,0 +48847,Wioska+barbarzy%C5%84ska,594,309,699098531,5393,0 +48848,XXXX,567,295,849054951,9236,0 +48849,145,403,689,849099876,9489,0 +48850,--006--,568,295,542253,9377,0 +48851,072,398,691,849099876,10495,0 +48852,Piek%C5%82o+to+inni,642,334,848956765,6261,0 +48853,Psycha+Siada,339,645,8099868,9222,0 +48854,Wioska+barbarzy%C5%84ska,281,482,699846892,4021,0 +48856,PP030+Suna,718,491,8096537,9356,0 +48858,New+WorldA,290,534,849084005,9307,0 +48859,Wioska+barbarzy%C5%84ska,280,483,699846892,2796,0 +48860,Wioska+barbarzy%C5%84ska,421,296,849102150,2725,0 +48861,A-003,323,370,699406247,7470,0 +48863,kathare,537,716,873575,9966,0 +48864,komandos,641,668,7976264,9308,0 +48865,Rivia,557,294,849054951,10051,2 +48866,KR%C3%93L+PAPI+WIELKI,662,634,698191218,10000,0 +48867,044+sebaseba1991,624,679,699346280,9582,4 +48869,Jeszcze+stoj%C4%99+xd,647,345,9291984,4052,0 +48870,077+Astapor,706,424,2135129,9720,0 +48872,Avanti%21,287,476,698625834,7524,0 +48873,Wioska+barbarzy%C5%84ska,713,539,848946700,10154,0 +48874,Wioska+barbarzy%C5%84ska,429,294,698231772,7146,0 +48875,009,386,317,699660539,4205,6 +48876,CastAway+%23006,702,586,9314079,7637,0 +48878,New+WorldA,288,522,849084005,5832,0 +48879,Kurnik,443,710,699603116,5942,0 +48880,%3D0020%3D,389,310,698231772,8322,0 +48881,-20-,573,704,849032414,6134,0 +48882,Wioska+barbarzy%C5%84ska,418,299,698231772,6628,0 +48883,...,341,353,699657450,3221,0 +48884,Z%C5%82oty+%C5%9Awit,583,304,699883079,9940,0 +48885,Wioska+barbarzy%C5%84ska,706,421,848902592,7381,0 +48886,ewaa+vol.2,504,721,849101382,3537,0 +48888,%23%236,349,351,2800032,9080,0 +48889,New+World,438,707,698152377,6607,0 +48890,KR%C3%93L+PAPI+WIELKI,717,532,698191218,7598,0 +48891,...,337,354,699657450,9969,0 +48892,AAA,538,293,1006847,7558,0 +48893,022.+Salmone+affumicato,317,377,849102092,5771,0 +48894,5_Franekkimono510_5,368,325,849099422,6669,0 +48895,C082,361,659,699383279,8621,0 +48896,%23%23%23122%23%23%23,601,690,698285444,10495,0 +48897,045.,626,672,699695167,3148,0 +48898,079.Stradi,430,301,698365960,9290,0 +48899,Osada+koczownik%C3%B3w,710,520,2246711,3671,7 +48900,Doberek,689,401,699785935,10083,0 +48901,%23%23%23123%23%23%23,606,694,698285444,10495,0 +48902,U.006,292,556,849088243,3764,0 +48903,Wioska+barbarzy%C5%84ska,532,388,698350371,9786,0 +48905,Z%C5%82oty+%C5%9Awit,575,298,699883079,9382,0 +48906,FAKE+OR+OFF,407,301,698231772,9871,4 +48907,MJ1,684,379,8669398,6210,0 +48908,Z%C5%82oty+%C5%9Awit,588,301,699883079,10052,0 +48909,Pocz%C4%85tek,302,573,7842579,4227,0 +48910,Bia%C5%82a+Podlaska,590,698,699837483,6528,0 +48912,Psycho+to+Marka%2C+Narka+%21,300,570,849040142,4597,0 +48913,C.038,715,479,9188016,4686,0 +48914,Cisza,289,541,698769107,5054,0 +48915,FAKE+OR+OFF,405,305,698231772,9705,0 +48916,Taran,314,608,6180190,7385,0 +48917,Kapral16A,463,714,849096891,5698,0 +48918,161...G,393,311,6920960,5572,0 +48919,019,718,499,849091105,10019,0 +48920,EO+EO,287,511,699697558,9176,1 +48921,D%C5%BCejd%C5%BCej+5,669,636,849098326,3307,0 +48922,Wioska,285,533,699805379,1475,0 +48923,KONFA+TO+MARKA%2C+NARKA,288,454,698152377,8306,0 +48924,Osada+koczownik%C3%B3w,672,622,1049851,4557,7 +48925,bucksbarzy%C5%84skamiiiru,318,392,848955783,8652,0 +48926,KR%C3%93L+PAPI+WIELKI,668,629,698191218,7379,0 +48927,049,673,377,698635863,10495,0 +48928,0104,385,683,7085510,9871,0 +48929,%2A002%2A,676,621,1205898,8957,0 +48930,Satyra,306,398,849076515,8165,0 +48931,145+invidia,541,715,849093426,6811,0 +48932,Bagno+17,483,711,848883684,9083,0 +48935,Wioska+barbarzy%C5%84ska,350,340,849101694,4584,0 +48936,Avanti%21,286,471,698625834,10106,0 +48937,XDX,604,315,699098531,9879,0 +48938,Avanti%21,285,476,698625834,10311,4 +48939,%5B0185%5D,287,495,8630972,7544,0 +48940,Bagno+19,485,713,848883684,8912,0 +48941,Wioska+0008,343,654,9186126,10375,0 +48942,105,412,695,849099876,9522,0 +48943,Wioska+barbarzy%C5%84ska,295,440,8366045,9966,0 +48944,Wioska+barbarzy%C5%84ska,478,284,7758085,6267,0 +48945,Podbitek+3,685,615,849101652,7633,0 +48946,Lord+Arsey+KING,661,645,848956513,10285,0 +48947,Tretogor,558,294,849054951,10054,0 +48948,%5B176%5D,698,595,8000875,7480,0 +48949,%23%234,350,350,2800032,9109,0 +48950,Wiadro16,667,637,8677963,8439,0 +48951,WARYSCYT,706,552,17714,10222,0 +48952,013,657,355,849020094,2297,0 +48953,024+zadupie,532,712,6116940,10019,0 +48954,FAKE+OR+OFF,404,308,698231772,9825,0 +48955,Wioska+barbarzy%C5%84ska,547,710,7581876,6115,6 +48956,P%C3%B3%C5%82nocny+Bagdad,616,316,8847546,9835,0 +48957,083.Stradi,429,300,698365960,9738,0 +48959,MERHET+04%2F02,587,703,698215322,7608,0 +48960,%5BD%5D_%5B001%5D+Dejv.oldplyr,287,493,699380607,10444,1 +48961,KONFA+TO+MARKA%2C+NARKA,286,451,698152377,10311,0 +48962,Ave+Why%21,503,713,699121671,1248,0 +48963,Wioska+czorny,698,579,849101814,7641,0 +48964,Wioska+barbarzy%C5%84ska+--,566,705,849055425,8151,0 +48965,0043,490,714,699684062,4699,0 +48966,009,324,372,7386358,2884,0 +48967,a+mo%C5%BCe+off+%3F+%3A%29,687,394,698768565,5871,0 +48968,%3F%3F%3F%3F,480,283,698489071,10083,0 +48969,Mniejsze+z%C5%82o+0098,312,390,699794765,4806,0 +48970,063,716,515,699413040,9817,0 +48971,barbarzy%C5%84ska,513,718,849101102,9432,0 +48972,136,391,692,849099876,7842,0 +48973,Kagusiowo+13,297,440,849101268,3822,0 +48974,004+Chc%C4%99+Remont,428,707,699745265,9736,5 +48975,001,466,714,699725436,9619,0 +48976,084.Stradi,431,299,698365960,10062,0 +48977,-+252+-+SS,570,707,849018239,10000,5 +48978,Wyspa+006,290,568,225023,10495,0 +48980,Wioska+Ares25,490,690,5997814,9866,0 +48981,019,525,716,698996782,10311,0 +48982,Taran,331,631,6180190,10311,0 +48983,003,665,645,2323859,8118,0 +48984,Wioska+barbarzy%C5%84ska,498,711,7976264,5054,0 +48985,Wygwizdowa+012,643,669,698562644,3581,0 +48986,C095,365,665,699383279,9808,0 +48987,Wioska+barbarzy%C5%84ska,521,286,7758085,9547,0 +48988,Lord+Arsey+KING,652,653,848956513,8913,0 +48989,049,405,692,849099876,10495,0 +48990,Avanti%21,281,472,698625834,4722,0 +48991,Wioska+barbarzy%C5%84ska,313,611,6180190,6325,0 +48992,005,310,401,8724192,3648,0 +48993,Smardz%C3%B3w,297,566,849101092,4961,0 +48994,Wioska+-+005+-,536,282,848982634,1842,0 +48995,3+ACDC,347,354,6315553,1234,0 +48996,C050,358,660,699383279,8094,0 +48997,005,526,287,699818726,8238,0 +48998,088.Stradi,434,298,698365960,9721,0 +48999,XDX,601,304,699098531,9964,0 +49000,Gladsheim,307,405,8724192,9835,4 +49001,C010,371,676,699383279,9825,0 +49002,New+World,437,703,698152377,10295,0 +49003,Ave+Why%21,506,717,699121671,2596,0 +49004,009,294,542,849098688,9835,0 +49005,Wioska+barbarzy%C5%84ska,376,328,3698627,9870,0 +49006,0600,489,681,698659980,10252,0 +49007,Wioska+barbarzy%C5%84ska,300,587,698167138,2076,0 +49008,C0218,293,539,8841266,10252,0 +49009,O046,328,635,272173,9868,0 +49010,C098,358,669,699383279,8051,0 +49011,011,292,541,849098688,9835,0 +49012,KR%C3%93L+PAPI+WIELKI,650,651,698191218,7494,0 +49013,XDX,604,309,699098531,8310,0 +49014,Wioska+2,301,423,699821629,5080,0 +49015,Ave+Why%21,305,585,6180190,8838,3 +49016,komandos48,635,673,7976264,6380,0 +49017,090.Stradi,438,290,698365960,9550,0 +49018,Komamdos,641,664,7976264,9729,0 +49019,106,409,694,849099876,8942,0 +49020,New+World,429,705,698152377,10292,0 +49021,XDX,609,308,699098531,6483,0 +49022,100.Stradi,441,292,698365960,9267,0 +49023,Wioska15,343,350,699711926,5545,0 +49024,027,648,346,9148043,1149,0 +49025,013.+Amatriciana,302,401,849102092,9788,0 +49026,059,639,338,849010255,2584,0 +49027,XDX,608,318,699098531,9681,0 +49028,Wioska+barbarzy%C5%84ska,656,352,1715091,3056,0 +49029,A%23014,713,492,2065730,9797,0 +49030,O026,331,638,272173,9955,0 +49031,Wioska-013-,630,331,7675610,1323,0 +49032,ZZZ+.%3A%3A.+cinek3456%2F02,585,702,33900,10191,0 +49033,Saran9,410,298,848937248,3549,0 +49034,006,664,638,2323859,9783,0 +49035,Wioska+barbarzy%C5%84ska,366,671,0,1787,0 +49036,C0226,288,545,8841266,5141,0 +49037,001,653,344,9148043,9998,0 +49038,Psycha+Siada,334,640,8099868,9968,0 +49039,024,688,617,699099811,3938,0 +49040,Las+Canteras,377,679,7085510,5838,0 +49041,KR%C3%93L+PAPI+WIELKI,713,477,698191218,6364,0 +49042,Wioska+barbarzy%C5%84ska,639,670,7976264,5180,0 +49043,030.+Ceterum+censeo,467,710,848896948,9260,0 +49044,New+World,431,708,698152377,10295,0 +49045,PIROTECHNIK+002,354,346,849101083,6750,0 +49046,%230147+deleted,480,279,1238300,10178,0 +49047,Wioska005,346,349,699711926,9732,0 +49048,Osada+koczownik%C3%B3w,464,283,698350371,7355,6 +49049,081,719,507,7085502,4797,0 +49050,%5B0127%5D,281,497,8630972,9679,0 +49051,o04,610,680,699189792,7065,0 +49052,W39,694,417,699524362,3254,0 +49053,A-1,670,359,849095509,7568,0 +49054,%3D026%3D+Wioska+barbarzy%C5%84ska,709,567,3781794,10566,0 +49055,Bagno+6,482,715,848883684,9520,0 +49056,39.+Pan+Maszynista+2,707,457,699804790,3018,0 +49057,01+Fiko,713,456,849101845,9475,0 +49058,Wioska+barbarzy%C5%84ska,684,388,1715091,9111,0 +49061,062.+Diocletianopolis,712,455,849091866,8546,0 +49062,063+invidia,542,711,849093426,6184,0 +49063,%2A017%2A,679,627,1205898,6085,0 +49065,Magiczne+koszary,463,717,848935389,9809,0 +49066,Szlachcic,373,319,698160606,5260,0 +49067,Wioska+barbarzy%C5%84ska+IV,627,321,848958556,2512,0 +49068,Wioska+barbarzy%C5%84ska,720,493,6510480,5985,0 +49069,Elo%3A%29,703,419,849101881,4964,0 +49070,C032,365,670,699383279,8036,0 +49071,7_Franekkimono510_7,370,325,849099422,4312,0 +49072,004,666,642,2323859,9797,0 +49074,%3D0015%3D,396,306,698231772,9884,0 +49075,Na+Kra%C5%84cu+%C5%9Awiata+002,645,342,9291984,10474,0 +49076,Z%C5%82oty+%C5%9Awit,582,297,699883079,10119,0 +49077,A%23004,717,517,2065730,9797,5 +49078,bucksbarzy%C5%84skamiiiru,314,393,848955783,7971,0 +49079,005,295,582,698663855,9877,0 +49080,Wioska+Gigako,557,287,849054951,7983,7 +49081,Wioska+barbarzy%C5%84ska,534,288,849088639,5557,0 +49082,North+011,512,284,849064752,10311,0 +49083,774,343,643,698908184,8438,0 +49084,C026,369,668,699383279,9796,0 +49085,Barcin,486,281,699278528,9567,0 +49086,%23%23%23124%23%23%23,599,689,698285444,10495,0 +49087,FAKE+OR+OFF,401,313,698231772,9833,0 +49088,Avanti%21,280,477,698625834,8804,0 +49089,31.+Saduny,714,482,699804790,3318,0 +49090,Wyspa_48,503,714,606407,10375,0 +49091,Wioska+barbarzy%C5%84ska,692,601,6921135,2920,0 +49093,174,379,677,849099876,6981,0 +49095,Mniejsze+z%C5%82o+0091,315,382,699794765,6384,0 +49096,.achim.,477,294,6936607,10232,0 +49097,Avanti%21,283,485,698625834,9272,0 +49098,EE+006,698,581,849100149,9113,0 +49099,P%7C003%7C,460,714,699393742,9738,0 +49100,Po%C5%82udniowy+Wsch%C3%B3d+002,691,605,8428196,2606,0 +49101,C008,543,707,698599365,6542,0 +49103,Wioska+barbarzy%C5%84ska,714,450,699628084,6195,0 +49104,Bez+emocji+III,354,655,849092685,4932,0 +49105,0153,388,679,7085510,4406,0 +49107,Z%C5%82oty+%C5%9Awit,572,297,699883079,7098,0 +49108,Wioska+030,665,356,7226782,9523,5 +49109,Etitek+3,721,502,848999448,2989,0 +49110,024+Osada+koczownik%C3%B3w,544,286,699854484,9899,7 +49111,010,404,299,9283775,1862,0 +49112,Wioska+barbarzy%C5%84ska,300,425,699856962,7727,0 +49113,North+001,505,284,849064752,10311,0 +49114,039,406,699,849099876,10495,0 +49115,C02,707,442,849093742,8383,0 +49116,Wioska+barbarzy%C5%84ska,477,285,7758085,8358,8 +49117,0030+Wioska+barbarzy%C5%84ska,409,615,9060641,6430,0 +49118,001,653,340,848889850,5511,0 +49119,Elo+elo+7,303,580,699016994,9186,3 +49120,KONFA+TO+MARKA%2C+NARKA,288,463,698152377,1909,0 +49121,Ban+Gleann,554,292,849054951,9970,0 +49122,B010,627,324,8740199,12024,0 +49123,Wioska+barbarzy%C5%84ska,394,313,698231772,5126,0 +49124,Poletko,649,654,2371436,8577,0 +49125,S04,719,473,113796,3611,0 +49126,K33,320,385,699794765,2599,0 +49127,153...C,398,312,6920960,7162,0 +49128,AAA,553,294,1006847,6928,0 +49129,Kiedy%C5%9B+Wielki+Wojownik,334,355,8632462,9899,0 +49130,C009,356,660,699383279,9785,0 +49131,%230298+mastaw,462,291,1238300,1855,0 +49132,013,294,430,6131106,4950,0 +49133,BLANCA,698,417,849101881,7236,0 +49134,Eldorado,687,604,849101652,3414,5 +49135,Bagno+22,477,720,848883684,8906,0 +49136,C.044,711,470,9188016,4491,0 +49137,09.+Sirmium,709,544,848946700,10495,0 +49138,Klatka6,625,679,6528152,3990,0 +49139,...,338,363,699657450,2901,0 +49140,Wioska+majku,415,704,9195661,7739,0 +49141,%3D066%3D+Wioska+barbarzy%C5%84ska,702,563,3781794,9954,0 +49142,Wioska+Wojdiking,424,707,849100814,6817,0 +49143,Parking7,623,681,6528152,4119,0 +49144,Wioska+barbarzy%C5%84ska,384,525,849030226,7159,0 +49145,kkk,422,705,849100814,1831,0 +49146,O034,337,639,272173,9955,0 +49147,Kurnik,477,710,849092769,9880,0 +49148,Parking5,621,678,6528152,5978,0 +49149,Zzz+04+pije+se+kawe,294,568,849084740,7212,0 +49150,Wioska+barbarzy%C5%84ska,643,655,848987051,10021,0 +49151,Blasco,556,707,699443920,9761,0 +49152,190,412,698,849099876,9968,0 +49153,Wioska+barbarzy%C5%84ska,331,373,849027025,3544,0 +49154,004,691,396,699738350,9611,0 +49155,Wioska+barbarzy%C5%84ska,301,593,0,2578,0 +49156,.achim.,478,285,6936607,10495,0 +49158,New+World,418,695,698152377,10297,0 +49159,0102,386,686,7085510,10216,0 +49160,G007,506,285,699208929,10041,0 +49161,10+Kaseta,713,448,849101845,9670,0 +49162,sh02,511,286,7064954,5169,0 +49163,011,715,510,7085502,9720,0 +49164,Wioska+barbarzy%C5%84ska,530,287,699818726,7784,0 +49165,Wioska+barbarzy%C5%84ska,306,417,0,352,0 +49166,Room+service,701,425,699785935,8037,0 +49167,Lisse,282,520,699830255,9722,0 +49168,006,307,606,699356968,6001,0 +49169,KONFA+TO+MARKA%2C+NARKA,284,451,698152377,9801,0 +49170,070,713,511,7085502,5544,0 +49171,Cisza,290,556,698769107,6400,0 +49172,013.+Reakcja,561,322,699072129,10301,0 +49173,Z%C5%82oty+%C5%9Awit,586,301,699883079,9996,0 +49174,C12,705,446,849093742,2820,0 +49175,0118,386,682,7085510,4998,0 +49176,Wioska+barbarzy%C5%84ska,284,504,849101674,2168,0 +49177,EE+012,707,573,849100149,9549,0 +49178,0406,561,704,698659980,10160,0 +49179,%3F%3F%3F%3F,474,290,698489071,9509,0 +49180,Kiedy%C5%9B+Wielki+Wojownik,331,360,8632462,9531,6 +49181,%28%28PYSIA%29%29,701,417,8675636,10019,0 +49182,Wioska+barbarzy%C5%84ska,709,446,699628084,7928,0 +49183,Moja+wioska,636,675,849101884,12154,0 +49184,bucksbarzy%C5%84skamiiiru,315,396,848955783,8709,0 +49185,CastAway+%23003,704,586,9314079,9976,0 +49186,%5B204%5D,684,393,8000875,4807,0 +49187,C.027,716,480,9188016,4678,0 +49188,048+Wioska+barbarzy%C5%84ska,549,285,699854484,9976,0 +49189,MojeDnoToWaszSzczyt,497,287,9299539,9716,0 +49190,001%3AWioska+FilozofMiejski,374,329,8772425,10139,0 +49191,Lord+Arsey+KING,656,657,848956513,7409,0 +49192,107.Stradi,440,293,698365960,10081,0 +49193,016,289,464,2418364,2789,0 +49194,Wioska+barbarzy%C5%84ska,545,711,7581876,6760,0 +49195,116,395,695,849099876,9500,0 +49196,015,650,346,9148043,5828,0 +49197,C027,360,659,699383279,9902,0 +49198,NewWorldA,290,533,849084005,5190,0 +49199,050,678,376,698635863,10971,0 +49200,Komandos,648,664,7976264,4380,0 +49201,FAKE+OR+OFF,409,321,698231772,9823,0 +49202,wioska,636,332,9291984,11304,0 +49203,Kiedy%C5%9B+Wielki+Wojownik,334,358,8632462,9976,4 +49204,M.O.S.T.,318,613,7929731,4469,0 +49205,%5B0175%5D,286,493,8630972,8994,0 +49206,003,698,405,849085371,4538,0 +49207,Ave+Why%21,500,714,699121671,2534,0 +49209,02+barbarzy%C5%84ska.,288,446,849018442,8743,0 +49210,Wioska+barbarzy%C5%84ska,322,369,0,6635,0 +49211,8516,375,607,8607734,11550,0 +49212,021.+Salsiccia+e+funghi,318,381,849102092,5239,0 +49213,Wioska+barbarzy%C5%84ska,693,604,6921135,5081,0 +49214,P%C5%81D,717,462,699347951,4276,0 +49215,P%C3%B3%C5%82nocny+Bagdad,616,317,8847546,9835,0 +49216,076.,458,716,849034882,9493,0 +49217,Babidi+%236,366,326,849101962,5875,0 +49218,komandos,641,667,7976264,9989,0 +49219,New+World,426,701,698152377,10292,0 +49220,%230299+kawskole,437,288,1238300,6295,0 +49221,013,528,716,698996782,5100,0 +49222,%5B0252%5D,279,511,8630972,5865,0 +49223,MojeDnoToWaszSzczyt,492,284,9299539,9712,0 +49224,035,718,471,849091105,9581,0 +49225,035%7C%7C+Canes+Venatici,458,710,849035525,8260,0 +49226,XDX,607,307,699098531,10361,0 +49227,Wioska+barbarzy%C5%84ska,300,427,699856962,7235,0 +49228,I.+Oszczywilk,364,329,849101893,7538,0 +49229,Wioska+barbarzy%C5%84ska,523,289,7758085,9641,0 +49230,Wioska+2,655,344,849101945,8612,0 +49231,komandos+czysta,642,662,7976264,10059,0 +49232,MojeDnoToWaszSzczyt,490,279,9299539,9710,0 +49233,Avanti%21,280,482,698625834,10152,0 +49234,Op+Konfederacja,472,284,848915730,7395,0 +49236,New+WorldA,289,538,849084005,5666,0 +49238,Wioska+barbarzy%C5%84ska,382,315,698160606,3030,0 +49239,W40,695,399,699524362,2070,0 +49240,%23%23%23125%23%23%23,591,698,698285444,10495,0 +49241,029,683,621,699099811,5356,0 +49242,TWIERDZA+.%3A084%3A.,699,577,7154207,8893,7 +49243,Avanti%21,283,488,698625834,7354,0 +49244,069.Stradi,430,291,698365960,9858,0 +49245,C112,358,659,699383279,7771,0 +49246,Wioska+barbarzy%C5%84ska,298,437,8366045,2617,0 +49247,024.+Night+Raid,486,705,699684062,8054,0 +49248,Wioska,302,424,699821629,6263,0 +49249,MojeDnoToWaszSzczyt,489,280,9299539,6525,0 +49250,Osada,384,316,2268889,4044,0 +49251,Wiadro18,674,633,8677963,4336,0 +49252,019+Z,715,480,699718269,4599,0 +49253,Wioska+barbarzy%C5%84ska,425,295,698231772,7189,0 +49254,Wioska+barbarzy%C5%84ska,439,294,849017820,5546,0 +49255,%23K75+0005,521,714,699728159,5664,0 +49256,C076,356,661,699383279,4258,0 +49257,5.+Gors+Velen,604,694,849102573,3844,0 +49258,Wioska+KaszczuJ+4,701,576,849104356,9735,0 +49259,Babilon+01,345,649,698908184,9864,0 +49260,302,447,290,7271812,6234,0 +49261,D009,349,651,272173,8775,0 +49262,Wioska+barbarzy%C5%84ska,311,604,6180190,3455,0 +49263,U.001,288,563,849088243,8837,0 +49264,Taran,314,617,6180190,9098,0 +49265,Wiadrowo+Kolonia,288,489,849100877,4749,0 +49266,Taran,310,607,6180190,7328,0 +49267,Wioska+barbarzy%C5%84ska,376,675,699269923,8462,0 +49268,012,322,375,7386358,2130,0 +49269,005,664,644,2323859,8854,0 +49270,Wioska002,347,345,699711926,9726,0 +49271,%3D032%3D+Wioska+barbarzy%C5%84ska,705,565,3781794,8519,0 +49272,VII.+Stare+Juchy,366,329,849101893,3225,0 +49273,Pocz%C4%85tek,300,573,7842579,5053,0 +49274,-14.+Warsztat+Mag%C3%B3w,329,370,698345556,2767,5 +49275,021.,471,713,849034882,10838,0 +49276,Komandos,640,664,7976264,9723,0 +49277,04+Tr%C4%85bek+B%C4%85bek,715,450,849101845,9512,0 +49278,003,612,310,699117992,7908,0 +49279,Taran,317,612,6180190,10291,2 +49280,Wioska+Destination1,493,283,763529,6053,0 +49281,005,294,424,6131106,4330,0 +49282,Wioska+barbarzy%C5%84ska+007,560,706,6870350,7765,0 +49284,%2AINTERTWINED%2A,515,711,698704189,5743,0 +49285,KR%C3%93L+PAPI+WIELKI,717,534,698191218,6404,0 +49286,EO+EO,288,518,699697558,10083,0 +49287,O%C5%82awa,678,633,848932879,7044,9 +49288,%23K75+0002,520,716,699728159,6734,0 +49289,B001,613,321,8740199,10216,0 +49290,Oxenfurt,311,387,849101377,5434,0 +49291,Nowe+IMPERIUM+2,617,688,698353083,4765,0 +49292,Wy...+c,600,695,699828685,10495,0 +49293,Wioska+barbarzy%C5%84ska,572,301,828637,10490,0 +49294,Wioska+barbarzy%C5%84ska,281,480,699846892,3594,0 +49295,051,670,368,698635863,9373,0 +49296,Wioska+barbarzy%C5%84ska,717,493,699429153,7174,0 +49297,009+Octoginta,670,643,849102108,6599,0 +49298,Z%C5%82oty+%C5%9Awit,585,304,699883079,9777,0 +49299,New+WorldA,289,526,849084005,6106,0 +49300,New+WorldA,287,518,849084005,4778,0 +49301,Wioska+F,543,292,1867161,3197,0 +49302,Bagno+43,475,717,848883684,4093,0 +49303,Parking8,620,682,6528152,4338,0 +49304,053,711,513,7085502,6102,0 +49305,Wioska,713,528,699034094,5092,0 +49306,%3D101%3D+Wioska+barbarzy%C5%84ska,704,563,3781794,5905,0 +49307,Wioska+barbarzy%C5%84ska,524,282,698350371,7301,0 +49308,056,405,696,849099876,10495,0 +49309,Podbitek+5,689,603,849101652,8056,0 +49310,Wioska+barbarzy%C5%84ska,297,436,8366045,2844,0 +49311,Menng,281,470,848981726,8731,0 +49312,Raskip,350,338,849021566,11066,0 +49313,U.005,292,557,849088243,7089,0 +49314,Zaplecze+Patataj,355,335,699796330,9741,6 +49316,176,384,683,849099876,7622,0 +49317,007,651,345,9148043,9741,9 +49318,atakuje+plemie3,680,372,849105232,2380,0 +49319,082.Stradi,431,295,698365960,10266,0 +49320,006,297,587,698663855,8449,0 +49321,005+Pozna%C5%84,287,527,9235561,4302,0 +49322,Wioska+barbarzy%C5%84ska,699,572,699737356,3787,0 +49323,Wyspa+022,294,573,225023,6069,0 +49324,Wioska+barbarzy%C5%84ska,690,407,699598425,9130,0 +49325,Zaplecze+gliniane,367,334,699796330,9885,2 +49327,CastAway+%21009,706,583,9314079,9267,0 +49328,068,719,539,7085502,10019,0 +49329,016.+Bolognese,322,379,849102092,3868,0 +49330,032+Wioska+barbarzy%C5%84ska,546,286,699854484,9835,0 +49331,Taran,321,618,6180190,9511,0 +49332,%2A018,675,369,7758085,7478,0 +49333,KONFA+TO+MARKA%2C+NARKA,296,436,698152377,6430,0 +49334,komandsos,633,666,7976264,9981,0 +49335,Kurnik,484,716,699603116,10047,0 +49336,Wioska+barbarzy%C5%84ska,330,370,0,1667,0 +49337,Wioska+barbarzy%C5%84ska,714,540,848946700,6268,0 +49338,Wioska+barbarzy%C5%84ska,326,370,0,6393,0 +49339,Bagno+7,482,712,848883684,9428,0 +49340,MJ8,682,381,8669398,5853,0 +49341,New+WorldA,281,521,849084005,5109,0 +49342,Cisza,292,543,698769107,4925,0 +49343,C013,371,669,699383279,9805,0 +49344,-11-,567,704,849055425,6902,0 +49345,032.+Gaszerbrum,709,558,1601917,8920,0 +49346,ZZ09,309,405,356642,8476,0 +49347,018,306,407,8724192,414,0 +49348,P%C3%B3%C5%82nocny+Bagdad,613,317,8847546,9835,0 +49349,Wioska+barbarzy%C5%84ska,716,546,17714,6247,0 +49350,Winterfell.015,467,283,848918380,7050,0 +49351,Kurnik,444,712,699603116,8170,0 +49352,KONFA+TO+MARKA%2C+NARKA,289,460,698152377,4902,0 +49354,033.+Garizim,709,536,1601917,10160,0 +49355,0.02+Szale%21,463,708,699725436,9462,0 +49356,Lord+Arsey+KING,654,654,848956513,9179,0 +49357,Wioska+barbarzy%C5%84ska,722,497,6510480,5313,0 +49358,03+barbarzy%C5%84ska.,286,448,849018442,9114,0 +49359,008+Perfectio,672,639,849102108,4570,0 +49360,Wioska+barbarzy%C5%84ska,708,423,848902592,4301,0 +49361,BIMBER,450,286,6857973,4154,0 +49362,o01,605,689,699189792,10216,2 +49363,017.+Dhaulagiri,710,549,1601917,10495,0 +49364,026,668,638,2323859,2670,0 +49365,Wioska+0016,343,650,9186126,8810,0 +49366,Panopticon+Ave,381,685,849105463,645,0 +49367,Wiocha,408,300,849094789,6000,0 +49368,Pocz%C4%85tek,296,578,7842579,5051,0 +49369,094.Stradi,437,290,698365960,9014,0 +49370,ElMajkelos+IV,413,304,849085160,10224,0 +49371,Psycha+Siada,336,642,8099868,9835,0 +49372,XDX,609,310,699098531,7427,0 +49373,Wioska+barbarzy%C5%84ska,692,604,6921135,1499,0 +49374,6.+Tretogor,604,695,849102573,4247,0 +49375,Flap,600,303,699098531,8007,0 +49376,Wioska+barbarzy%C5%84ska,713,551,17714,5923,0 +49377,Wioska+barbarzy%C5%84ska+018,386,309,849068662,3215,0 +49378,0002+Kr%C3%B3l+Fabio,496,721,699656989,9849,0 +49379,KONFA+TO+MARKA%2C+NARKA,294,441,698152377,10290,0 +49380,Taran,319,609,6180190,8671,0 +49381,Zasiedmiogorogrodzie+001,695,397,698278542,3517,0 +49382,C008,357,660,699383279,9790,0 +49383,Po%C5%82udniowy+Wsch%C3%B3d+003,694,604,8428196,2766,0 +49385,Mniejsze+z%C5%82o+0083,313,381,699794765,10012,0 +49386,t019,664,354,2262902,7389,0 +49387,New+World,435,705,698152377,10290,0 +49388,--031--,567,294,542253,6166,0 +49389,04.SHIBA,711,561,698905177,4413,0 +49390,Wioska+barbarzy%C5%84ska,649,339,9291984,3629,0 +49391,.achim.,567,288,6936607,6348,0 +49392,KONFA+TO+MARKA%2C+NARKA,289,434,698152377,7902,0 +49393,New+World,424,700,698152377,10291,0 +49395,basonia2,284,506,849101674,6212,2 +49396,S05,720,473,113796,2025,0 +49397,017,716,498,849091105,10495,0 +49398,%3D027%3D+Wioska+barbarzy%C5%84ska,704,566,3781794,9807,0 +49399,0010+Wioska+barbarzy%C5%84ska,495,721,699656989,5788,0 +49400,EO+EO,284,518,699697558,10019,6 +49401,007+Draconia,308,607,699356968,5595,0 +49403,-13-,574,702,849032414,8600,0 +49404,KWB,463,719,9003698,8389,5 +49405,C017,364,670,699383279,9808,0 +49406,Bagno+8,481,714,848883684,9427,0 +49407,C018,367,669,699383279,8481,0 +49408,popki,445,286,6857973,5271,0 +49409,B_6,295,422,699728266,3143,0 +49410,Wioska+barbarzy%C5%84ska,716,491,699429153,5542,0 +49411,057,399,690,849099876,10495,0 +49412,Oawek+1,654,346,849101945,9305,0 +49413,Wioska+barbarzy%C5%84ska,321,630,698908184,7154,0 +49414,Zaplecze+miedziane+3,356,336,699796330,9886,3 +49415,Wioska+barbarzy%C5%84ska,294,580,698663855,1762,0 +49416,Wioska+barbarzy%C5%84ska,282,462,699213622,5773,0 +49417,146+invidia,547,708,849093426,7211,0 +49418,Wyspa+015,296,569,225023,3525,0 +49420,komandos,642,668,7976264,10176,0 +49421,Wioska+barbarzy%C5%84ska,558,712,699828442,7279,0 +49423,Avanti%21,284,473,698625834,7199,0 +49424,New+World,424,698,698152377,10290,8 +49425,Wioska+05,694,592,849101162,6359,0 +49427,007,611,310,699117992,5694,0 +49428,CSA+-+Konfederacja,668,363,7758085,9861,0 +49429,%23%23%23126%23%23%23,590,693,698285444,10495,0 +49430,wioska,642,335,9291984,10635,0 +49431,Lord+Arsey+KING,662,647,848956513,8362,0 +49432,008+Twierdza,627,682,849104328,10019,0 +49433,%23%23%23127%23%23%23,586,696,698285444,10495,0 +49434,047+sebaseba1991,620,675,699346280,10160,0 +49435,Wioska+barbarzy%C5%84ska,713,452,699628084,8726,0 +49436,0101,387,685,7085510,10216,2 +49437,--032--,567,298,542253,3773,0 +49438,komandos,643,670,7976264,9838,0 +49439,MERHET,581,706,698215322,9953,0 +49441,S026,686,604,8428196,7341,0 +49442,Wioska+0000,342,654,9186126,10040,0 +49443,018.+Wioska+barbarzy%C5%84ska,681,377,2873154,8379,0 +49444,07.+Zucchabar,712,546,848946700,10495,0 +49445,Wyspa+005,291,568,225023,10495,0 +49446,%23Kresy,628,676,2665207,6171,0 +49447,Wioska004,345,348,699711926,9732,0 +49448,themonk,636,335,849005829,5598,0 +49449,C003,369,673,699383279,9805,5 +49450,101,397,695,849099876,10290,0 +49451,Wyspa+016,298,570,225023,3860,0 +49452,Mniejsze+z%C5%82o+0092,312,382,699794765,4663,0 +49453,Pocz%C4%85tek,294,578,7842579,4424,0 +49454,Szlachcic,364,332,698388578,6362,0 +49455,021,295,562,9280477,7571,0 +49456,187,381,687,849099876,7164,0 +49457,%23%23%23128%23%23%23,610,691,698285444,10495,0 +49458,Wiadro17,672,630,8677963,3736,0 +49459,Wioska,715,525,699034094,4073,0 +49460,KR%C3%93L+PAPI+WIELKI,711,517,698191218,5276,0 +49461,...,338,362,699657450,5449,0 +49462,Wioska+barbarzy%C5%84ska,345,360,7462660,8688,0 +49463,Wioska+barbarzy%C5%84ska+2x1,571,702,849055425,7738,0 +49464,%5B0253%5D,281,514,8630972,7317,0 +49465,New+WorldA,288,524,849084005,7000,0 +49466,S02,718,473,113796,10143,5 +49467,Mandarynka,359,330,698906190,2199,0 +49468,Wioska+barbarzy%C5%84ska,448,294,699191464,5067,0 +49469,Z%C5%82oty+%C5%9Awit,584,308,699883079,7042,0 +49470,Zaplecze+Barba+020,367,323,699796330,7106,0 +49472,3.Derby,578,704,698215322,4996,0 +49473,XDX,598,304,699098531,7378,0 +49474,Wioska+barbarzy%C5%84ska,302,587,698663855,4753,0 +49475,%2A026%2A,689,612,1205898,3118,0 +49476,093.Stradi,439,289,698365960,10070,0 +49477,EO+EO,280,503,699697558,10160,0 +49478,008,321,375,7386358,2600,0 +49480,096,400,695,849099876,10495,0 +49481,057KP,481,284,849063849,4592,4 +49482,Z.04,700,577,699737356,4841,0 +49483,083,405,698,849099876,9627,0 +49484,MJ12,682,380,8669398,5795,0 +49485,%2A004,669,363,7758085,9399,0 +49487,001,725,528,7085502,9719,0 +49488,Wioska+barbarzy%C5%84ska+001,379,317,849068662,11625,0 +49489,Babidi+%231,374,321,849101962,9985,0 +49490,Ave+Why%21,507,714,699121671,3718,0 +49491,004d,300,418,8259895,4408,0 +49492,Tomekrol+4,697,590,849096334,5631,0 +49493,-14-,575,701,849032414,8576,0 +49495,New+World,428,703,698152377,10290,0 +49497,3_Franekkimono510_3,371,320,849099422,7277,0 +49498,O027,340,639,272173,9957,0 +49499,028,666,638,2323859,4251,0 +49500,007,440,705,849101309,1284,0 +49501,Wioska+barbarzy%C5%84ska,515,722,849101102,4814,0 +49502,0037,323,375,2321390,1561,0 +49503,076,716,507,7085502,7158,0 +49505,3.Doncaster,548,717,698215322,5698,0 +49506,014+Twierdza,631,677,849104328,7773,0 +49507,Czarna+Dziura,360,330,698906190,6417,0 +49508,B029,635,490,9314079,9815,0 +49509,040,409,691,849099876,10495,0 +49510,%2A017,673,369,7758085,7617,0 +49511,Bagno+15,486,719,848883684,9041,0 +49512,Wioska+barbarzy%C5%84ska,645,664,848987051,8825,0 +49513,Wioska8,707,577,699266530,7141,0 +49514,017+Osada+koczownik%C3%B3w,544,282,699854484,10178,2 +49516,027.+Faber,712,533,1601917,9183,0 +49517,044,410,692,849099876,10495,0 +49518,002d,301,408,8259895,4776,0 +49519,Wioska+barbarzy%C5%84ska,457,324,849096310,4475,0 +49520,czorny,698,578,848995478,1226,0 +49521,Z%C5%82oty+%C5%9Awit,598,302,699883079,9734,7 +49522,kontra+2,680,371,849105232,2728,0 +49523,Wioska+barbarzy%C5%84ska,716,548,17714,9563,0 +49524,SawTower,283,465,698652171,7292,0 +49525,Z%C5%82oty+%C5%9Awit,585,302,699883079,9764,0 +49526,Kurnik,473,712,699603116,3454,0 +49527,Wioska+Czamba%C5%81amba,326,366,699875650,559,0 +49528,001,307,407,8724192,7118,0 +49529,026+zadupie+2,534,712,6116940,10083,0 +49530,Klatka2,619,681,6528152,3429,0 +49531,011,308,395,8724192,2427,0 +49532,Taran,320,617,6180190,10047,6 +49533,658%7C388,670,372,699580120,9570,0 +49534,Wioska+barbarzy%C5%84ska,336,646,0,710,0 +49535,Wioska011,346,340,699711926,9215,0 +49536,0137,367,674,7085510,4843,0 +49537,C0234,285,544,8841266,10357,0 +49538,Wioska+barbarzy%C5%84ska,299,425,699856962,7317,0 +49539,D%C5%BCejd%C5%BCej+4,669,634,849098326,6676,0 +49541,2023,375,677,849097837,4530,0 +49542,005,592,312,1767876,2966,0 +49543,Wyspa_42,500,721,2585846,7604,4 +49544,%5B805%5D+Odludzie,712,433,848985692,7210,0 +49546,Psycha+Siada,339,650,8099868,8553,0 +49548,031+Furnost,601,502,8337151,10083,0 +49549,0006,576,707,698723158,9358,0 +49550,Wioska+barbarzy%C5%84ska,524,287,699818726,4051,0 +49551,KONFA+TO+MARKA%2C+NARKA,293,438,698152377,8357,0 +49552,Wioska+barbarzy%C5%84ska,355,447,6258092,9010,0 +49553,C0236,282,541,8841266,7367,0 +49554,Wioska+barbarzy%C5%84ska,429,293,698231772,1640,0 +49555,XDX,603,315,699098531,9880,0 +49556,009,536,291,699208929,10242,1 +49557,0149,389,684,7085510,5345,0 +49558,112,688,613,3589487,7707,0 +49559,KONFA+TO+MARKA%2C+NARKA,286,439,698152377,10300,0 +49560,Avanti%21,285,474,698625834,7301,0 +49561,018,283,463,6131106,8160,0 +49563,O068,331,628,272173,9873,0 +49564,New+WorldA,289,539,849084005,5169,0 +49565,Wioska+barbarzy%C5%84ska,425,294,698231772,5848,0 +49566,Szlachcic,382,317,698160606,10474,8 +49567,barabara,284,532,699805379,1033,0 +49568,Wioska+barbarzy%C5%84ska,706,561,17714,7320,0 +49569,171,379,676,849099876,7846,0 +49570,W002,306,391,849082154,8912,0 +49571,--023--,572,293,542253,6002,3 +49573,029.+Gerlach,715,544,1601917,8699,0 +49574,Mniejsze+z%C5%82o+0039,312,388,699794765,8504,2 +49575,KONFA+TO+MARKA%2C+NARKA,292,423,698152377,4766,0 +49576,Playa+del+Confital,376,679,7085510,6342,0 +49577,%230254+Taki+Pan+dar,469,289,1238300,5420,0 +49578,1+Nowy+vequs,341,350,7462660,6653,0 +49579,Wioska+%C5%BB%C3%B3%C5%82wi+Ninja,712,432,849102480,8621,0 +49580,C043,351,663,699383279,9364,0 +49581,Wioska+barbarzy%C5%84ska,649,336,849048734,4080,0 +49582,Wioska+031,670,360,7226782,10495,1 +49583,004+JJ,327,367,9120206,3869,0 +49584,Wioska+barbarzy%C5%84ska,462,282,849104286,6420,0 +49585,Psycha+Siada,345,648,8099868,7849,0 +49586,MojeDnoToWaszSzczyt,488,287,9299539,5045,0 +49587,0031+drama,324,635,698908184,9805,0 +49588,Wioska+%28045%29,714,463,698232227,2062,0 +49589,.4.%21,301,406,762975,2411,0 +49590,-+219+-,547,561,849018239,6554,0 +49591,Ghostmane2,716,445,848896434,2759,0 +49592,Wioska+barbarzy%C5%84ska,721,509,6510480,5701,0 +49593,046,632,672,699695167,3485,0 +49594,0.17c,459,708,699827112,9744,0 +49596,Caldera+de+Bandama,378,680,7085510,5788,0 +49597,MojeDnoToWaszSzczyt,494,283,9299539,9961,0 +49598,003,291,425,6131106,6163,0 +49599,%5B0187%5D,285,496,8630972,8808,0 +49600,Taran,311,605,6180190,5630,0 +49601,New+WorldA,284,537,849084005,5134,0 +49602,aaa,682,609,3986807,1344,0 +49603,Pocz%C4%85tek,301,575,7842579,3833,0 +49604,BIMBER+2,446,287,6857973,5522,0 +49606,...,377,683,849097837,8335,0 +49607,R+041,500,719,699195358,6678,0 +49608,Osada+Wandali+x,658,351,699875213,4145,6 +49609,BRICKLEBERRY,521,284,7758085,8566,0 +49610,Wioska-010-,635,331,7675610,2725,0 +49611,0435,559,705,698659980,10019,0 +49612,Wioska+003,316,378,699424741,8436,0 +49613,Winterfell.010,454,283,848918380,10178,3 +49614,.%3A+SPARTA+%3A.,720,509,699734445,5174,0 +49615,Rikitiki,290,468,848977600,4243,0 +49616,Wioska+barbarzy%C5%84ska,492,722,699656989,3227,0 +49617,Winterfell.019,458,290,848918380,10178,0 +49618,031,686,621,699099811,6520,0 +49619,.achim.,485,281,6936607,5405,0 +49620,%C5%BC+internacionale+0002Fresio,316,375,3909522,10062,0 +49621,D007,562,288,699299123,5263,0 +49622,Zaplecze+Barba+012,366,332,699796330,9185,0 +49623,EO+EO,281,495,699697558,10019,0 +49624,001d,302,415,8259895,7915,0 +49625,.Krakers.+008,319,620,9163140,1531,9 +49626,Avanti%21,285,475,698625834,6584,0 +49627,aaaa,421,294,698231772,9817,8 +49629,New+WorldA,281,522,849084005,3829,0 +49630,Mniejsze+z%C5%82o+0095,317,390,699794765,5283,0 +49631,P%C3%B3%C5%82nocny+Bagdad,621,315,8847546,7000,0 +49632,Bagno+28,475,721,848883684,6976,0 +49633,033,717,470,849091105,10160,0 +49635,Parking6,625,681,6528152,4379,0 +49636,%23%23%23129%23%23%23,609,689,698285444,10495,0 +49637,.achim.,566,292,6936607,7273,0 +49638,%230055,575,709,1536231,10495,0 +49639,027.,472,720,849034882,10838,0 +49640,Lord+Arsey+KING,655,652,848956513,8362,0 +49641,MJ13,681,380,8669398,4702,0 +49642,Z%C5%82oty+%C5%9Awit,591,300,699883079,7559,0 +49643,Jan+Ost+skrajny,705,440,879782,6630,0 +49644,Wioska+barbarzy%C5%84ska,378,326,3698627,9355,0 +49645,MojeDnoToWaszSzczyt,508,286,9299539,9622,0 +49646,027,456,717,8268010,6175,0 +49647,Denver,283,468,698652171,4520,0 +49649,Wioska+barbarzy%C5%84ska,423,301,698231772,9866,0 +49650,021,665,647,2323859,2799,0 +49651,%2A018%2A,682,627,1205898,4832,0 +49652,Osada+koczownik%C3%B3w,638,333,7555180,9986,4 +49653,o05,612,684,699189792,9744,0 +49654,Zaplecze+barba+5,365,333,699796330,9811,0 +49655,009+JJ,325,364,9120206,3443,0 +49656,--027--,568,291,6936607,4779,0 +49657,ZZ11,308,404,356642,9368,0 +49658,Wioska+barbarzy%C5%84ska,396,304,698231772,4906,0 +49659,MojeSzczytToTw%C3%B3jDno,514,368,828637,10971,0 +49660,R+042,499,720,699195358,5951,0 +49661,Z%C5%82oty+%C5%9Awit,575,299,699883079,8103,0 +49663,%23%23%23130%23%23%23,607,691,698285444,10495,0 +49664,FAKE+OR+OFF,407,306,698231772,9813,9 +49665,Wioska+barbarzy%C5%84ska,443,708,849037407,3574,0 +49666,C069,358,663,699383279,6890,0 +49667,o008,605,694,699189792,6571,0 +49668,049.+Lindor,442,707,848928624,3312,0 +49669,%23%23%23131%23%23%23,610,693,698285444,10495,0 +49670,137+invidia,496,715,849093426,10252,6 +49671,300,446,288,7271812,10495,0 +49672,04+barbarzy%C5%84ska.,287,443,849018442,8050,0 +49673,EO+EO,279,521,699697558,10160,3 +49674,Wioska+majku+5,414,701,363280,1632,0 +49675,Szlachcic,382,311,698160606,7886,0 +49676,P002,514,278,699208929,9981,0 +49677,%23%233,348,352,2800032,9080,0 +49678,Wioska+-+008+-,535,284,848982634,2044,0 +49679,--005--,571,300,542253,7704,0 +49680,Legnica,678,628,848932879,4666,0 +49681,New+WorldA,292,545,849084005,4788,0 +49682,122,407,698,849099876,8666,0 +49683,Ger2,715,522,2246711,5873,0 +49685,%5B0165%5D,439,295,8630972,8518,0 +49686,002f,301,411,8259895,4240,0 +49688,%2A004%2A,277,501,8630972,11321,0 +49689,C028,364,667,699383279,8133,0 +49690,015,531,719,698996782,4539,0 +49691,045,408,693,849099876,10495,0 +49692,B003Mordor,712,463,113796,10393,0 +49693,168,382,676,849099876,8706,0 +49694,0070,580,707,698659980,10252,3 +49695,Vvvv,284,531,699805379,3773,0 +49696,005+JJ,331,364,9120206,4529,0 +49697,Wioska+barbarzy%C5%84ska,551,713,699828442,7268,0 +49698,%5B0194%5D,279,496,8630972,9320,0 +49699,%3D0019%3D,389,311,698231772,8529,7 +49700,Wioska+barbarzy%C5%84ska,310,602,698167138,1665,0 +49701,Wioska+jurger,716,523,2246711,9755,0 +49702,090,722,507,7085502,4288,0 +49703,Szlachcic,357,334,698388578,6559,0 +49704,C038,355,667,699383279,8033,0 +49705,062,714,510,7085502,8380,0 +49707,ZZ14,309,403,356642,9666,0 +49709,012.,632,669,699695167,5210,0 +49710,B_5,294,423,699728266,2963,0 +49711,OFF,653,654,849014413,10343,4 +49712,XDX,599,312,699098531,10290,0 +49713,XDX,599,307,699098531,7996,0 +49714,023.+Aglio+e+olio,319,378,849102092,4697,0 +49716,002,656,344,849020094,7785,0 +49717,099,407,695,849099876,8554,0 +49718,Wioska+barbarzy%C5%84ska,693,599,6921135,1460,0 +49719,%3D091%3D+Wioska+barbarzy%C5%84ska,700,591,3781794,6011,0 +49720,MojeDnoToWaszSzczyt,485,287,9299539,6302,0 +49721,C001,353,661,699383279,9879,9 +49723,Wioska+barbarzy%C5%84ska,702,406,698462285,1558,0 +49724,Wioska+barbarzy%C5%84ska,279,495,699846892,3196,0 +49725,025,527,720,698996782,4790,0 +49726,Wioska+barbarzy%C5%84ska,351,339,849101694,4979,0 +49727,Pocz%C4%85tek,297,582,7842579,9811,0 +49728,bucksbarzy%C5%84skamiiiru,315,394,848955783,6772,0 +49729,KONFA+TO+MARKA%2C+NARKA,286,446,698152377,10248,0 +49730,Mroczny+Zamek+OZDR+01,624,682,699372829,10559,0 +49731,EO+EO,284,515,699697558,9985,0 +49732,021+Safari+Zone+Gate,721,483,699441366,10544,0 +49733,...,337,361,699657450,3175,0 +49734,Dorka+na+malediwy,294,415,699856962,10611,9 +49735,0.17e,460,711,699827112,9549,0 +49736,%5B0198%5D,283,497,8630972,7596,0 +49737,%24007%24+Paradise,304,584,699550876,7557,0 +49738,KONFA+TO+MARKA%2C+NARKA,290,448,698152377,6720,0 +49739,058,711,564,7085502,7665,0 +49740,055,407,696,849099876,10495,0 +49741,-17-,577,703,849032414,7965,0 +49742,A%23006,717,533,2065730,9797,9 +49743,Testarossa,704,412,699785935,4963,0 +49744,BRICKLEBERRY,557,295,699072129,8241,0 +49745,058KP,485,279,849063849,4409,0 +49746,B004,621,322,8740199,5745,0 +49747,009,309,396,8724192,2836,0 +49748,Cisza,299,574,698769107,2704,0 +49749,Avanti%21,286,469,698625834,10119,0 +49750,Wioska+barbarzy%C5%84ska,527,287,699818726,5950,0 +49751,040,509,285,849010255,6230,0 +49752,Chojnice,485,284,699278528,9437,0 +49754,Taran,318,621,6180190,9699,0 +49755,Bia%C5%82a+Podlaska+2,439,714,849100787,2046,0 +49756,--009--,571,295,542253,8696,0 +49757,Wioska+barbarzy%C5%84ska,696,408,8675636,9025,0 +49758,B016,625,323,8740199,3251,0 +49759,Barba,325,634,698908184,8396,0 +49761,39.+Wioska+39,289,562,849091769,8404,0 +49762,Taka.,484,721,848999671,6001,0 +49763,6+M+MANSON,346,353,6315553,2363,0 +49764,052,676,381,698635863,9134,0 +49765,Wioska+barbarzy%C5%84ska,307,591,6180190,2285,0 +49766,XDX,604,304,699098531,3906,0 +49767,%5BB%5D003,418,703,9195661,8126,0 +49768,D008,563,289,699299123,4891,0 +49769,Psycha+Siada,334,641,8099868,10019,0 +49770,063,717,514,7085502,7252,0 +49771,P%C3%B3%C5%82nocny+Bagdad,620,315,8847546,7701,0 +49772,ZZ12,307,410,356642,9373,0 +49774,091+Wioska+barbarzy%C5%84ska,542,289,699854484,6811,0 +49776,C075,354,663,699383279,5688,0 +49777,Po%C5%82udniowy+Wsch%C3%B3d+013,695,601,699778867,1407,0 +49778,Wiocha+IV,337,352,849106316,2591,0 +49779,Bagno+9,479,716,848883684,9400,0 +49780,Wyspa+011,296,563,225023,7925,0 +49781,OFF,658,655,849014413,11078,0 +49782,wioska,638,329,849102068,12154,0 +49783,051,406,692,849099876,10495,0 +49785,%5B0143%5D,458,284,8630972,9125,0 +49786,--037--,574,295,542253,3957,0 +49787,Wioska+barbarzy%C5%84ska+006,564,709,6870350,7510,0 +49788,Avanti%21,283,494,698625834,4720,0 +49789,Yoyio,285,460,698652171,6059,0 +49790,1_Franekkimono510_1,374,323,849099422,12154,0 +49791,Wioska+0005,346,656,9186126,10311,0 +49792,Taran,319,617,6180190,9785,0 +49793,KONFA+TO+MARKA%2C+NARKA,290,437,698152377,10295,0 +49794,Wioska+021,661,349,7226782,11352,0 +49795,O072,329,631,272173,9827,0 +49796,Wioska+barbarzy%C5%84ska,461,284,699393759,2313,0 +49797,Psycha+Siada,335,642,8099868,9968,0 +49798,00321,434,416,3909522,5814,0 +49799,Wioska+barbarzy%C5%84ska,693,405,8675636,9025,0 +49800,Wioska+barbarzy%C5%84ska,711,570,2453888,10019,0 +49801,New+World,427,705,698152377,10292,0 +49802,C022,356,668,699383279,9957,0 +49803,Wioska+barbarzy%C5%84ska,305,405,0,311,0 +49804,038,670,638,2323859,1841,0 +49805,001,593,702,849097370,6174,0 +49806,Wioska+barbarzy%C5%84ska,281,518,7530708,2622,0 +49807,Amsterdam,282,522,699830255,4256,0 +49808,002,288,430,6131106,7058,0 +49809,067.+Nansena,720,523,1601917,3436,0 +49810,New+World,428,711,698152377,10291,0 +49811,Wioska+barbarzy%C5%84ska,291,577,498483,2502,0 +49812,001,288,549,849085605,6336,0 +49813,Z.01,701,579,699737356,10194,0 +49814,KONFA+TO+MARKA%2C+NARKA,297,424,698152377,3624,0 +49815,001.+Pepperoni,320,381,849102092,8473,0 +49816,Wioska19,707,574,699266530,3163,0 +49817,005+-+Budowanko%21,487,721,7540891,7525,0 +49818,Vvvvv,281,531,699805379,1763,0 +49819,%3D113%3D+Wioska+barbarzy%C5%84ska-01-,703,569,3781794,6173,0 +49820,Wioska+barbarzy%C5%84ska,687,529,699379895,3760,0 +49821,W41,693,402,699524362,1722,0 +49822,086.Stradi,429,297,698365960,8831,0 +49824,Szlachcic,373,318,698160606,7500,0 +49825,KONFA+TO+MARKA%2C+NARKA,287,449,698152377,8674,0 +49826,Wioska+barbarzy%C5%84ska,709,424,848902592,4290,0 +49827,osada+1,663,350,7357503,7685,0 +49828,Wioska+barbarzy%C5%84ska,353,337,698817235,3134,0 +49829,Wioska+barbarzy%C5%84ska,650,661,6167751,1423,0 +49830,004+Thargourm,671,637,849102108,6139,0 +49831,Pocz%C4%85tek,299,584,7842579,9955,9 +49832,Wioska+JAN1234,299,572,699075351,4233,0 +49833,%3D092%3D+Wioska+barbarzy%C5%84ska,699,595,3781794,5880,0 +49834,XDX,600,307,699098531,6677,0 +49835,Mroczny+Zamek+OZDR+03,621,683,699699601,5080,0 +49836,Taran,321,617,6180190,9349,0 +49837,Kurnik,468,719,699603116,9253,0 +49838,007+-+Budowanko%21,492,718,7540891,8559,0 +49839,Wioska,283,455,8792844,5322,0 +49840,%23%23%23132%23%23%23,598,693,698285444,10495,0 +49841,Wioska+barbarzy%C5%84ska,519,288,7758085,9719,0 +49842,C031,359,665,699383279,8056,0 +49843,Wioska+barbarzy%C5%84ska,390,309,698231772,4509,0 +49844,Po%C5%82udniowy+Wsch%C3%B3d+006,690,601,699778867,1577,0 +49845,Szlachcic,382,312,698160606,8156,6 +49846,Wioska+przemek2707,285,538,8853146,7799,0 +49847,%3D119%3D+Wioska+barbarzy%C5%84ska,704,558,3781794,2279,0 +49848,--038--,574,293,542253,3901,0 +49849,-+275+-+SS,571,708,849018239,3174,0 +49850,004.+Osada+koczownik%C3%B3w,686,387,2873154,10237,3 +49851,XDX,607,305,699098531,9281,0 +49853,001+Mortalis,671,638,849102108,10311,0 +49854,Wioska12,707,581,699266530,7269,0 +49855,R+044,495,722,699195358,4567,0 +49856,012+telimena,616,681,699346280,10160,0 +49857,%230306+kawskole,445,285,1238300,4641,5 +49859,C035,352,665,699383279,9692,0 +49860,C.045,714,466,9188016,4354,0 +49862,Wioska4.,707,579,699266530,9315,0 +49863,Taran,323,618,6180190,9899,0 +49864,3.Ipswich,579,705,698215322,4873,0 +49865,Kiedy%C5%9B+Wielki+Wojownik,333,354,8632462,5275,0 +49866,Wioska+barbarzy%C5%84ska,368,322,3698627,4826,0 +49867,037+Wioska+barbarzy%C5%84ska,606,686,699346280,8948,0 +49868,%5B0150%5D,440,294,8630972,9339,0 +49869,Bilo,558,707,699443920,4480,0 +49870,KONFA+TO+MARKA%2C+NARKA,289,448,698152377,10291,0 +49871,074+Stopnie,705,431,2135129,9553,0 +49872,EO+EO,282,513,699697558,10160,9 +49873,038.+Brunet+wieczorow%C4%85+por%C4%85,502,718,848928624,4538,0 +49874,003,532,281,698736778,1442,0 +49875,Wioska+barbarzy%C5%84ska,524,288,7758085,5781,0 +49876,005,721,497,849091105,10019,8 +49877,Zielona+Warta,707,435,849101378,8072,0 +49878,%5B0213%5D,277,504,8630972,7489,0 +49879,New+World,429,710,698152377,10291,0 +49880,060+invidia,542,715,849093426,6701,0 +49882,Nowa+01,302,598,699321518,8370,0 +49884,K33,316,390,699794765,2206,0 +49885,C073,355,662,699383279,6093,0 +49887,Jefferson,383,684,849105463,608,0 +49888,CastAway+%23010,706,584,9314079,9430,1 +49889,KONFA+TO+MARKA%2C+NARKA,285,447,698152377,10291,0 +49890,%7E%7E077%7E%7E,679,632,7829201,6355,0 +49891,0113,366,675,7085510,10216,8 +49892,MojeDnoToWaszSzczyt,500,281,9299539,9946,0 +49893,Po%C5%82udniowy+Wsch%C3%B3d+010,690,612,699778867,1951,0 +49894,New+World,280,518,849084005,6404,0 +49895,Wioska+barbarzy%C5%84ska,562,714,6299408,4082,0 +49896,Wioska+Turystyczna+007,716,470,7588382,5676,0 +49897,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,717,699828442,9811,0 +49898,084,715,520,7085502,6317,0 +49899,C0249,287,548,8841266,8236,0 +49900,%5B808%5D+Odludzie,708,430,848985692,8496,0 +49901,%3D086%3D+Santa+Fe,701,572,3781794,10473,0 +49902,Wioska+-+007+-,534,283,848982634,1748,0 +49903,Nowa+57,701,588,698702991,6940,0 +49904,Winterfell.001,454,289,848918380,10178,9 +49905,Wioska+barbarzy%C5%84ska,713,430,699628084,6394,0 +49906,Wioska+barbarzy%C5%84ska,305,586,698663855,4902,0 +49907,komandos48,639,667,7976264,10495,0 +49908,Wioska+klez+021,315,564,698295651,2831,0 +49910,0068,693,394,698416970,5088,0 +49911,Wyspa+008,289,567,225023,10495,0 +49912,MojeDnoToWaszSzczyt,508,277,9299539,9952,0 +49914,0131,388,682,7085510,4898,0 +49915,tomek016+III,690,568,8811880,2314,0 +49916,Wioska+barbarzy%C5%84ska+003,378,318,849068662,10641,0 +49917,Asgard,659,344,849101947,4979,0 +49918,003+po%C4%87wiczone+byq,324,373,7386358,6666,0 +49919,B_9,298,420,699728266,1374,0 +49920,%230267+EmersonJr,468,290,1238300,5892,0 +49922,s181+krzysiek1293,404,418,7462660,10132,0 +49923,Z%C5%82oty+%C5%9Awit,574,299,699883079,8280,0 +49924,xxx,536,714,873575,8785,0 +49925,013+zbieranie,532,713,6116940,5146,0 +49926,Wioska+barbarzy%C5%84ska,646,333,849048734,3020,0 +49927,Wygwizdowa+008,637,663,698562644,7495,0 +49928,Wioska+barbarzy%C5%84ska,710,547,17714,7090,0 +49929,199...Segador,441,294,6920960,10787,0 +49930,001,321,376,7919620,9271,0 +49931,Wioska+barbarzy%C5%84ska,721,503,6510480,5684,0 +49932,Wioska03,297,420,8259895,4580,0 +49933,FAKE+OR+OFF,401,305,698231772,9843,0 +49934,Wioska+02,694,591,849101162,6926,0 +49936,C.046,711,469,9188016,4851,0 +49937,005,464,712,699725436,9555,0 +49938,New+WorldA,282,534,849084005,4363,0 +49939,Wioska+barbarzy%C5%84ska,695,607,6921135,1823,0 +49940,A%23005,716,504,2065730,9797,4 +49941,New+World,415,701,698152377,10292,0 +49943,006,287,538,848886200,3399,0 +49944,002.+Osada+koczownik%C3%B3w,681,375,2873154,10237,8 +49945,05.CHZ,712,565,698905177,5896,0 +49946,EO+EO,294,515,699697558,10147,0 +49947,Taka.,487,723,848999671,3254,0 +49948,Wioska+Lord+Mariusso,522,528,7581876,8119,0 +49949,K33,318,388,699794765,3493,0 +49950,Taran,319,621,6180190,8005,0 +49951,025,654,348,9148043,5111,0 +49952,080,719,510,7085502,5011,0 +49953,002e,302,409,8259895,4335,0 +49954,Bartek,362,330,6416213,6812,0 +49955,-005-,723,502,7418168,5649,0 +49957,%3D093%3D+Wioska+barbarzy%C5%84ska,701,589,3781794,5862,0 +49958,Amaranth.,283,479,849001277,2406,3 +49960,%5B0267%5D,286,516,8630972,6191,0 +49961,Sicario,715,446,848896434,1750,0 +49962,Wioska+barbarzy%C5%84ska,520,284,7758085,8816,0 +49963,C01+Qukaku.,450,715,849037407,10817,4 +49964,Wioska+barbarzy%C5%84ska,643,405,7973893,6571,0 +49965,%23%23%23146%23%23%23,597,693,698285444,10495,0 +49966,011,307,594,849099463,5315,0 +49967,WEZUWIAN,707,551,17714,10222,0 +49968,001+Desant,482,688,699745265,9736,0 +49969,C048,354,669,699383279,7170,0 +49970,0000030Z,286,560,849089881,6898,0 +49971,Lord+Arsey+KING,661,649,848956513,9377,0 +49972,rynko,683,610,3986807,1380,0 +49973,xxx,537,714,873575,10136,0 +49974,B20,646,445,849093742,7388,0 +49975,Wioska+barbarzy%C5%84ska,713,495,699429153,7155,0 +49977,%3D079%3D+BORSUKA+NORA,707,570,3781794,3841,0 +49978,Wioska+Boonkol,528,720,6116940,6779,0 +49979,333,417,294,849089654,3030,0 +49980,Wioska+grzegorzzdw,312,608,849098132,2343,0 +49981,Wioska+11,695,591,849101162,5006,0 +49983,178,384,682,849099876,7605,0 +49984,XDX,605,354,699098531,9335,0 +49985,New+World,411,703,698152377,10292,0 +49986,Na+Kra%C5%84cu+%C5%9Awiata+007,647,339,9291984,6536,0 +49987,014,545,394,1424656,10083,0 +49988,MojeDnoToWaszSzczyt,509,281,9299539,9958,0 +49990,Wioska+16,694,587,849101162,2656,0 +49991,106+invidia,522,720,849093426,10311,5 +49992,Saran7,399,303,848937248,3292,0 +49993,New+WorldA,279,509,849084005,4131,0 +49994,Walhalla,310,403,8724192,9453,0 +49995,B_2,295,420,699728266,4204,0 +49996,Taran,318,616,6180190,8556,0 +49997,045,661,357,9148043,5136,0 +49998,Wioska+hajza,406,305,378757,4338,0 +49999,C.047,720,478,9188016,4340,0 +50000,B017,626,322,8740199,2201,0 +50001,041.,451,708,849034882,10838,0 +50002,001+Twierdza,630,676,849104328,10019,0 +50003,Wioska+Chudy19,351,344,849101694,7217,0 +50004,063+Wioska+barbarzy%C5%84ska,343,659,6354098,6283,0 +50006,6_Franekkimono510_6,370,319,849099422,4340,0 +50007,XDX,615,309,699098531,5616,0 +50008,000,306,476,2418364,9570,0 +50009,Dream+on,303,506,698962117,9697,0 +50010,Kurnik,476,714,699603116,10160,0 +50011,057+Wioska+barbarzy%C5%84ska,550,287,699854484,9976,0 +50012,Polska,379,682,849097837,6638,0 +50013,bucksbarzy%C5%84skamiiiru,314,394,848955783,1893,0 +50014,B001+OSADA+2,710,463,113796,4061,0 +50015,019Szalowanie+Czapki,503,716,698620694,8362,0 +50016,%2A009,674,367,7758085,9861,0 +50017,Winterfell.004,465,289,848918380,10178,9 +50019,072.,710,462,849094609,4479,0 +50020,04Osada+koczownik%C3%B3w,363,675,699704542,9817,3 +50021,002,647,346,9148043,9697,0 +50022,038,398,698,849099876,10495,0 +50023,22+kolonia016..,290,456,849018442,10311,0 +50024,Wiadro01,675,632,8677963,8199,0 +50026,Wioska,636,336,849005829,2504,0 +50027,wioska,636,333,9291984,12154,0 +50028,Wioska+barbarzy%C5%84ska,377,686,849030086,4788,0 +50029,C093,360,672,699383279,10004,0 +50030,%23%23%23133%23%23%23,610,689,698285444,10495,0 +50031,K33,315,383,699794765,2165,0 +50032,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,716,699828442,9744,0 +50034,Wioska+barbarzy%C5%84ska,277,490,699846892,3200,0 +50035,Wioska+barbarzy%C5%84ska,526,288,699818726,5904,0 +50036,Z%C5%82oty+%C5%9Awit,606,306,699883079,10086,6 +50038,Wioska+barbarzy%C5%84ska,720,492,942959,3438,0 +50039,0595,475,546,698971484,9103,0 +50040,CastAway+%21034,689,605,9314079,5806,0 +50041,001,402,590,9264752,10495,0 +50042,KONFA+TO+MARKA%2C+NARKA,291,449,698152377,10290,0 +50044,Wioska+barbarzy%C5%84ska,398,308,698231772,4112,0 +50045,P%C3%B3%C5%82nocny+Bagdad,614,317,8847546,9665,0 +50046,%3A...+2+...%3A+-,512,717,849051976,8075,0 +50047,W001,307,390,849082154,6925,0 +50048,Wioska+barbarzy%C5%84ska,509,713,698704189,2452,0 +50050,Wioska+majku+3,414,702,9195661,4685,0 +50051,Wioska+barbarzy%C5%84ska,555,287,698350371,1439,0 +50052,022,285,459,6131106,2669,0 +50053,.achim.,481,288,6936607,8472,0 +50054,Wioska+barbarzy%C5%84ska,414,298,698231772,6942,0 +50055,Wioska+barbarzy%C5%84ska,645,659,848987051,8684,0 +50056,Deor%2C+przeginasz,627,476,699545762,2856,0 +50057,New+World,438,708,698152377,5130,0 +50058,002,386,318,699660539,8505,0 +50059,%230154+barbarzy%C5%84ska,478,279,1238300,5568,0 +50060,048.,449,710,849034882,10378,9 +50061,Taka.,484,722,848999671,6955,0 +50062,North+013,513,287,849064752,10311,0 +50063,%5B820%5D+Odludzie,714,442,848985692,6104,0 +50064,%230070,572,711,1536231,7803,0 +50065,Wioska+0001,343,655,9186126,10237,0 +50066,Wioska+barbarzy%C5%84ska,391,306,698231772,9833,0 +50067,Kurnik,448,709,699603116,8129,2 +50068,Baloo,552,706,699443920,5160,0 +50069,Wioska+barbarzy%C5%84ska,435,293,698231772,9180,0 +50070,Klejnot+nr3,592,693,699837483,2145,0 +50071,Wioska+barbarzy%C5%84ska,559,715,6299408,7000,0 +50073,%23K75+0012,517,713,699728159,4501,0 +50074,Bastion,704,588,849088199,3845,0 +50075,006+gruba,283,552,197581,2214,0 +50076,B_4,297,412,699728266,2624,0 +50078,017,666,639,2323859,3871,0 +50080,Wioska+barbarzy%C5%84ska,324,630,698908184,9144,0 +50081,New+WorldA,282,527,849084005,4176,0 +50082,Wioska007,688,392,698768565,8262,0 +50083,W42,693,409,699524362,1901,0 +50084,Wioska007,343,348,699711926,9735,0 +50085,II.+Niemyje-Z%C4%85bki,364,328,849101893,5320,0 +50086,0036,324,380,2321390,2462,0 +50087,Minas+Tirith,704,427,8675636,10160,0 +50088,Z%C5%82oty+%C5%9Awit,585,298,699883079,10127,0 +50089,008,299,595,698663855,5127,0 +50090,Avanti%21,282,470,698625834,6788,0 +50091,Wiadro02,672,631,8677963,9008,0 +50092,%23035,553,291,849064614,4073,0 +50093,Wioska+barbarzy%C5%84ska,722,502,6510480,4731,0 +50094,001+koparka,527,719,6116940,5364,0 +50095,Wioska+borat1986,498,286,763529,8109,0 +50096,229...P%C3%93%C5%82noc,436,288,6920960,7622,0 +50097,%5BJ%5Da%C5%BA,285,547,849106971,2905,0 +50098,Dream+on,306,500,698962117,9508,0 +50099,Wyspa_53,496,719,2585846,2854,0 +50100,Wioska+barbarzy%C5%84ska,553,714,699828442,9750,0 +50101,WAKKRA,708,556,17714,10222,0 +50102,Wioska+Karyagina,715,432,849102480,8789,0 +50103,Ch%C4%99ciny,305,600,698167138,2365,0 +50104,Out+of+Touch,325,443,698962117,7091,0 +50105,012,341,349,849101205,3813,0 +50106,...,336,361,699657450,4107,0 +50107,Lord+Arsey+KING,655,660,848956513,4453,0 +50108,Komandos,653,657,7976264,4523,0 +50109,Not+2+day,483,278,698489071,5622,0 +50111,ZZ13,311,401,356642,9613,0 +50112,Piek%C5%82o+to+inni,643,329,848956765,6510,0 +50113,%3D028%3D+Wioska+barbarzy%C5%84ska,708,566,3781794,9603,0 +50114,Wioska+barbarzy%C5%84ska,506,718,698704189,5835,0 +50115,HWILA,626,317,849006385,5227,0 +50116,Lord+Arsey+KING,658,645,848956513,10285,0 +50118,EO+EO,286,523,699697558,8148,0 +50119,Wioska+barbarzy%C5%84ska,278,489,699846892,3971,0 +50120,076+Wioska+barbarzy%C5%84ska,539,287,699854484,9835,0 +50121,0140,368,675,7085510,4443,0 +50122,%3F%3F%3F%3F,477,281,698489071,9172,0 +50123,067+invidia,542,718,849093426,5621,0 +50124,Wioska+032,665,355,7226782,8871,0 +50125,JJay+House,328,361,9120206,8243,0 +50126,%5B0254%5D,288,513,8630972,5804,0 +50127,052+Wioska+barbarzy%C5%84ska,347,662,6354098,7080,0 +50128,005b,305,409,8259895,4943,7 +50129,%4008%40,405,326,699483429,6926,0 +50130,Psycha+Siada,339,649,8099868,9835,0 +50131,%3D0018%3D,389,307,698231772,9864,0 +50132,New+WorldA,288,540,849084005,6110,0 +50133,Wioska+barbarzy%C5%84ska,303,594,6180190,4695,0 +50134,%23K75+0006,521,716,699728159,6066,0 +50135,Z+04,384,312,6884492,3289,0 +50136,C0232,283,539,8841266,7673,0 +50137,wancki+i+gustlikk,504,279,7758085,9720,0 +50138,Wioska11,709,576,699266530,6753,0 +50139,Zaplecze+Deadshot,358,336,699796330,2912,0 +50140,028.+Falakro,713,543,1601917,8917,0 +50141,0109,369,680,7085510,10216,2 +50142,Bagno+25,477,721,848883684,7889,0 +50143,-03-,579,700,849032414,9472,0 +50145,.004.+Zanzibar,720,460,849095599,7732,0 +50146,3.Nottingham,549,713,698215322,4006,0 +50147,K33,310,389,699794765,3953,0 +50148,047+Wioska+barbarzy%C5%84ska,547,287,699854484,9835,0 +50149,062+invidia,540,713,849093426,5196,0 +50150,004,699,410,849085371,4062,0 +50151,Wioska+dzbanek54321,693,397,698187023,4472,0 +50152,037,655,352,9148043,7696,0 +50153,%23%23%23134%23%23%23,606,689,698285444,10495,0 +50154,Saran6,401,303,848937248,3398,0 +50155,Wioska+barbarzy%C5%84ska,278,490,699846892,2090,0 +50156,Taka.,485,721,848999671,5990,0 +50157,030.,467,719,849034882,10351,0 +50158,C0229,282,539,8841266,10160,3 +50159,X002,707,426,699722599,10485,0 +50160,C040,354,665,699383279,8552,0 +50161,040,667,647,2323859,1045,0 +50162,Z+05,384,313,6884492,6278,0 +50163,Wioska+barbarzy%C5%84ska,461,283,699863708,4264,0 +50164,krisa,304,397,849089601,5800,0 +50165,Wioska+barbarzy%C5%84ska,327,559,8004076,5305,0 +50166,Wioska+barbarzy%C5%84ska,548,712,699828442,7265,0 +50167,003.+Osada+koczownik%C3%B3w,675,374,2873154,10237,1 +50168,Wioska+krzysztof+wspania%C5%82y,675,371,6111938,4068,0 +50169,C033,369,676,699383279,9524,0 +50170,%230149+barbarzy%C5%84ska,474,282,1238300,7927,0 +50171,Wioska_10oo,647,663,6795280,3945,0 +50172,FAKE+OR+OFF,399,305,698231772,9819,0 +50173,MojeDnoToWaszSzczyt,490,283,9299539,5147,0 +50174,004+N,303,606,699356968,6057,0 +50175,006,441,707,849101309,1515,0 +50176,Wioska+barbarzy%C5%84ska,397,698,849014922,5105,0 +50177,MojeDnoToWaszSzczyt,489,283,9299539,6375,0 +50178,002,527,279,698736778,2666,0 +50179,...,338,357,699657450,1962,0 +50180,181+Katastrofa%2C+panie+rexanty+XD,715,545,698693697,3992,0 +50181,011,308,606,699356968,5011,0 +50182,Na+Kra%C5%84cu+%C5%9Awiata+023,646,338,9291984,4516,0 +50184,Psycha+Siada,337,646,8099868,10019,0 +50185,1v9+machine,389,639,699697558,10019,0 +50186,Piek%C5%82o+to+inni,633,328,848956765,5624,0 +50187,1.+Rivia,602,693,849102573,9590,0 +50188,Wioska+barbarzy%C5%84ska,575,704,7756002,8279,0 +50189,%3D082%3D+Jamestown,704,571,3781794,10580,0 +50190,0.01+Good+Night%21,460,707,699725436,9166,0 +50191,%5B0145%5D,456,283,8630972,9334,0 +50192,.achim.,480,284,6936607,7326,0 +50193,Wioska+barbarzy%C5%84ska,277,489,699846892,3972,0 +50194,073,717,509,7085502,6446,0 +50195,Wioska+barbarzy%C5%84ska,711,574,2453888,9094,0 +50196,FP037,471,714,699605333,5752,0 +50197,160...F,397,307,6920960,7285,0 +50198,002,288,467,698652171,9230,0 +50199,Wioska+barbarzy%C5%84ska,290,572,498483,3513,0 +50200,Lord+Arsey+KING,652,655,848956513,4891,0 +50201,Avanti%21,282,494,698625834,8438,0 +50202,115.+Dorona,640,599,8337151,8375,0 +50203,New+World,432,711,698152377,10295,0 +50204,o07,610,683,699189792,9745,0 +50205,pulapka+plemie,681,373,849105232,2345,0 +50206,Barba,322,633,698908184,9825,0 +50207,006,309,399,8724192,3805,0 +50209,018,711,565,7085502,9994,0 +50210,Wioska+barbarzy%C5%84ska,699,600,6921135,3703,0 +50211,%5B0268%5D,286,517,8630972,5519,0 +50212,Wioska+barbarzy%C5%84ska,526,713,7590135,6271,0 +50213,076,442,628,849084985,9668,0 +50214,New+WorldA,280,505,849084005,3784,0 +50216,Bigosowy1,679,370,849095800,10763,0 +50217,XDX,596,307,699098531,6850,0 +50218,Wioska+barbarzy%C5%84ska,399,310,698231772,5331,0 +50219,%3F%3F%3F%3F,478,293,698489071,9889,0 +50220,Z%C5%82oty+%C5%9Awit,581,298,699883079,8936,0 +50221,Psycha+Siada,335,650,8099868,7185,0 +50222,Z%C5%82oty+%C5%9Awit,582,302,699883079,8663,0 +50224,048,663,357,698361257,8274,9 +50225,Wioska+barbarzy%C5%84ska,322,366,0,5672,0 +50226,Prawie+jak+o%C5%9Bka,702,424,699785935,6192,0 +50227,%230297+LAROX,462,290,1238300,5520,0 +50228,Wioska+barbarzy%C5%84ska,713,496,699429153,5893,0 +50229,076,403,698,849099876,10495,0 +50231,W43,695,411,699524362,1951,0 +50233,Wioska+barbarzy%C5%84ska,315,627,698908184,5802,0 +50234,Wioska+juventino1988,360,668,699665031,150,0 +50235,.002.+Malediwy,717,456,849095599,6300,0 +50236,084,403,700,849099876,9948,0 +50237,005,295,579,698663855,10068,0 +50238,komandos48,653,656,7976264,8747,0 +50239,Szlachcic,364,330,698388578,6243,0 +50240,UltraInstynkt,615,315,699710633,10063,0 +50241,009+bymp,284,548,197581,1771,0 +50242,Komandos,649,666,7976264,10017,0 +50243,Wioska3,706,578,699266530,8754,0 +50245,Ubrudzona0,624,683,8607734,6065,0 +50246,Pocz%C4%85tek,299,585,7842579,9489,9 +50247,Doba,697,397,849088882,3343,0 +50248,...,339,359,699657450,8866,0 +50249,Wioska+KRIS+74+PL,526,720,6116940,3728,0 +50250,C092,362,668,699383279,9285,0 +50251,056+invidia,548,709,849093426,7215,0 +50252,PP020+Liberty+Bay,719,491,8096537,9741,0 +50253,001,663,643,2323859,9783,0 +50254,044.,457,715,849034882,10838,0 +50255,050%7C%7C+Aquila,459,717,849035525,5454,0 +50256,Saran3,409,301,848937248,3619,0 +50257,0138,367,673,7085510,3042,0 +50258,C013,537,717,698599365,7103,0 +50259,Lord+Arsey+KING,654,659,848956513,5195,0 +50260,Wioska+barbarzy%C5%84ska,326,633,698908184,5492,0 +50261,005,654,345,848889850,4579,0 +50262,Adamo+1,581,699,849096768,9382,0 +50263,041%7C%7C+Bootes,463,712,849035525,3300,0 +50264,A021,480,644,699383279,9603,0 +50265,074,718,513,7085502,7934,0 +50266,Wioska+barbarzy%C5%84ska,321,628,698908184,7522,0 +50267,Market,379,684,849105463,963,0 +50268,Wioska+mateuszek15517,710,557,7914131,5067,0 +50269,077.+Alalea,691,597,8337151,8354,0 +50270,KONFA+TO+MARKA%2C+NARKA,289,458,698152377,5325,0 +50271,KONFA+TO+MARKA%2C+NARKA,290,436,698152377,10297,0 +50272,%5B812%5D+Odludzie,713,432,848985692,6792,0 +50273,Mm02,631,326,698442418,5469,0 +50274,050+sebaseba1991,618,687,699346280,10160,0 +50275,MERHET,586,705,698215322,9953,0 +50276,--020--,574,296,542253,7626,0 +50277,004,653,338,848889850,5673,0 +50278,053,677,375,698635863,7174,0 +50279,Osada+koczownik%C3%B3w,425,291,698231772,7204,7 +50280,-+126+-,546,605,849018239,7261,0 +50281,02.ETH,712,566,698905177,12154,0 +50282,156,389,692,849099876,4912,0 +50283,Wioska+barbarzy%C5%84ska,526,285,699818726,6319,0 +50284,Kurnik,452,712,699603116,6198,0 +50286,003%3AOsada+koczownik%C3%B3w,372,328,8772425,10615,4 +50287,Old+Town,701,424,699785935,5801,0 +50288,Wioska+barbarzy%C5%84ska,325,630,698908184,9808,0 +50290,K42+ADAMUS+003,287,432,6212605,9563,0 +50291,KONFA+TO+MARKA%2C+NARKA,294,437,698152377,7447,3 +50292,Wioska+barbarzy%C5%84ska,301,588,698663855,4345,0 +50293,009,298,590,698663855,4098,0 +50294,Lord+Arsey+KING,656,652,848956513,9179,0 +50295,%23%23%23135%23%23%23,611,690,698285444,10495,0 +50296,027,529,720,698996782,4634,0 +50297,017,290,464,2418364,3132,0 +50299,094,401,692,849099876,10495,0 +50302,kww02,719,543,8976313,5415,0 +50303,Lord+Arsey+KING,653,653,848956513,8913,7 +50304,Avanti%21,286,472,698625834,6748,0 +50307,%5B0255%5D,281,513,8630972,5927,0 +50308,B-002,308,385,1267913,4255,0 +50309,KONFA+TO+MARKA%2C+NARKA,294,445,698152377,10290,0 +50310,Twierdza+%28WZ%29,376,534,0,6873,32 +50311,MojeDnoToWaszSzczyt,486,287,9299539,6590,0 +50312,184,410,699,849099876,8881,0 +50313,KONFA+TO+MARKA%2C+NARKA,290,435,698152377,10290,0 +50314,Taran,310,616,6180190,7949,0 +50315,North+026,496,278,849064752,8319,0 +50316,035+Lilycove+City,722,493,699441366,5398,0 +50318,Z%C5%82oty+%C5%9Awit,579,295,699883079,8737,0 +50319,025+Oldale+Town,713,483,699441366,11109,0 +50320,C0278,284,543,8841266,4731,0 +50321,010+Twierdza,628,681,849104328,10019,0 +50322,%C5%9Aciernisko,301,401,849076515,1142,0 +50323,Hillegom,281,520,699830255,5944,0 +50324,011,317,371,7386358,4896,2 +50325,Wioska+Tomtrik,326,635,698908184,10358,0 +50327,Wiosk,448,716,6955809,4982,0 +50328,Wioska+barbarzy%C5%84ska,694,613,3589487,2441,0 +50329,181,722,524,8541236,9488,0 +50330,03+Punks+Not+Dead,716,452,849101845,9447,1 +50331,065.,718,461,849094609,4050,0 +50332,Taka.,483,722,848999671,9389,0 +50333,Cisza,288,553,698769107,7388,0 +50334,Wioska+3,655,346,849101945,6506,0 +50335,Mniejsze+z%C5%82o+0088,312,381,699794765,5545,0 +50336,wancki+i+gustlikk,504,280,7758085,9737,0 +50337,Wioska+barbarzy%C5%84ska,655,342,849101945,187,0 +50338,Zaplecze+Barba+031,350,336,699796330,5122,0 +50339,HOLENDER+4,320,623,698908184,5434,0 +50340,OFF,651,656,849014413,10440,0 +50341,305,469,282,7271812,9527,0 +50342,Wioska+barbarzy%C5%84ska,720,476,113796,1771,0 +50343,009,293,426,6131106,5815,0 +50344,086,719,516,7085502,6271,0 +50345,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,550,707,7589468,8817,0 +50346,Wioska+mateusz16180,370,674,6554011,101,0 +50347,ElMajkelos+VIII,421,301,849085160,4872,0 +50348,Wioska+barbarzy%C5%84ska,591,307,698350371,2619,0 +50349,3.Leeds,545,717,698215322,7229,0 +50350,003,654,343,848889850,3282,0 +50352,%23K75+0020,522,718,699728159,4874,0 +50353,B006,620,323,8740199,6257,0 +50354,CastAway+%23004,704,585,9314079,10054,0 +50355,034.+Istota+wody,501,717,848928624,2621,0 +50356,Wioska+barbarzy%C5%84ska,688,390,1715091,4518,0 +50357,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,550,715,699828442,9744,0 +50358,0044,464,710,699280514,2820,0 +50359,Z001,500,723,8153179,8035,0 +50360,Osada+koczownik%C3%B3w,702,409,8459255,10178,3 +50361,0447,579,622,698659980,9740,0 +50362,KONFA+TO+MARKA%2C+NARKA,287,462,698152377,8573,0 +50363,047,633,670,699695167,3433,0 +50364,%5B814%5D+Odludzie,707,443,848985692,7662,0 +50365,038+Wioska+barbarzy%C5%84ska,608,684,699346280,8731,0 +50366,Wioska13,706,582,699266530,7368,0 +50367,009+-+Budowanko%21,493,723,7540891,7865,0 +50368,Wioska+barbarzy%C5%84ska,715,465,113796,1342,0 +50369,085.Stradi,430,298,698365960,10256,0 +50370,015,287,556,849098688,9095,6 +50371,Lord+Arsey+KING,659,651,848956513,6759,0 +50372,.achim.,486,282,6936607,7154,5 +50374,Wioska+barbarzy%C5%84ska,422,709,849100814,1773,0 +50375,KR%C3%93L+PAPI+WIELKI,689,530,698191218,6389,0 +50376,FAKE+OR+OFF,405,307,698231772,9822,0 +50377,Szlachcic,357,341,698388578,5847,0 +50378,Wyspa+034,290,563,225023,2240,0 +50379,KR%C3%93L+PAPI+WIELKI,649,664,698191218,8262,0 +50380,Wioska+barbarzy%C5%84ska,717,461,113796,1646,0 +50381,Wioska+jajoasia,632,326,8720321,643,0 +50382,005+G%C4%85sawa,286,527,9235561,5011,0 +50383,Wioska+barbarzy%C5%84ska,279,482,699846892,2569,0 +50384,1x2+Wioska+barbarzy%C5%84ska,569,712,849055425,7265,0 +50385,%230075,571,710,1536231,4346,0 +50386,%3D078%3D+BORSUK+MEGA,706,566,3781794,8100,0 +50387,ZZZ,459,714,8980651,6279,0 +50388,Wioseczka0,622,683,8607734,6323,0 +50389,Incursio,697,402,699488108,9979,0 +50390,Z%C5%82oty+%C5%9Awit,581,293,699883079,7337,0 +50392,19.+Brokilon,720,538,8976313,9642,0 +50393,Wioska+barbarzy%C5%84ska,518,283,8240677,7232,0 +50394,EO+EO,294,514,699697558,10083,0 +50395,D009,559,291,699299123,4557,0 +50397,Kurnik,463,713,699603116,10064,0 +50398,K35+-+%5B003%5D+Before+Land,590,301,699088769,9783,1 +50399,Wioska+majku+2,416,704,9195661,3491,0 +50400,0072,701,413,698416970,5561,0 +50401,EO+EO,285,515,699697558,10495,0 +50402,%5B802%5D+Odludzie,713,434,848985692,9246,0 +50403,MojeDnoToWaszSzczyt,500,284,9299539,9955,0 +50404,Pocz%C4%85tek,298,584,7842579,2564,0 +50405,037+Wioska+barbarzy%C5%84ska,544,280,699854484,9835,0 +50406,FAKE+OR+OFF,434,288,698231772,10390,0 +50407,C.039,716,479,9188016,4678,0 +50408,014,305,611,699356968,3601,0 +50409,095.Stradi,440,289,698365960,9869,0 +50410,C0279,283,543,8841266,4443,0 +50411,ZZZ+.%3A%3A.+cinek3456%2F01,585,701,33900,10143,0 +50412,Wyspa+014,292,559,225023,2746,0 +50413,Szlachcic,364,336,698388578,6728,0 +50414,C0162,323,538,8841266,9615,0 +50415,Uklejka,331,546,699265922,7608,0 +50416,061,403,697,849099876,10495,0 +50417,Taran,311,607,6180190,7321,0 +50418,003+czekam+na+odp,535,714,6116940,4937,0 +50419,0008+Wioska+kosiarziii,495,715,699656989,9976,0 +50420,KR%C3%93L+PAPI+WIELKI,719,527,698191218,6999,0 +50421,100.+Bana,625,477,8337151,9085,0 +50422,Wioska+0006,342,652,9186126,10311,0 +50423,025,688,618,699099811,3674,0 +50424,Wioska+barbarzy%C5%84ska,724,504,6510480,5743,0 +50425,001,534,719,698996782,10311,0 +50426,Tomekrol+3,698,588,849096334,6027,0 +50427,.achim.,484,278,6936607,5289,0 +50428,Wioska+barbarzy%C5%84ska,717,494,699429153,9247,0 +50429,003,590,703,849097370,4861,0 +50430,036+Osada+koczownik%C3%B3w,606,688,699346280,10053,7 +50431,Podbitek,690,605,849101652,8011,0 +50432,Ave+Why%21,506,713,699121671,2839,0 +50433,002,466,712,699725436,9555,5 +50434,Wioska+barbarzy%C5%84ska,711,453,699628084,7399,0 +50435,%5B0256%5D,284,509,8630972,6054,0 +50436,-12-,580,700,849032414,9090,0 +50437,Wioska+barbarzy%C5%84ska,321,629,698908184,7627,0 +50438,035,401,700,849099876,10495,0 +50439,New+World,422,700,698152377,10291,0 +50440,%5B806%5D+Odludzie,712,437,848985692,8579,0 +50441,komandos,619,678,7976264,10032,2 +50442,013,306,610,699356968,10051,0 +50443,MojeDnoToWaszSzczyt,492,285,9299539,9957,0 +50444,_PUSTA,655,603,698768565,7224,0 +50445,Z%C5%82oty+%C5%9Awit,594,297,699883079,9918,0 +50446,Wioska+barbarzy%C5%84ska,576,586,6818593,9702,0 +50447,O032,333,637,272173,9907,0 +50448,Gran+Canaria,372,683,947564,3986,0 +50449,Kurnik,448,713,699603116,1972,0 +50450,wioska,637,345,9291984,7049,0 +50451,K42+ADAMUS+002,287,431,6212605,9172,0 +50452,WOLA0002,680,369,6956104,6070,0 +50453,Wioska+barbarzy%C5%84ska,650,338,9291984,4207,0 +50454,010,659,352,849020094,4091,0 +50456,003.+Capricciosa,322,381,849102092,3675,0 +50457,001,696,404,7409475,12154,0 +50458,bnnnn,278,471,848981726,2135,0 +50459,Brak+nazwy,357,335,698906190,12154,0 +50460,Wioska+barbarzy%C5%84ska,669,370,699580120,2645,0 +50461,Kurnik,450,713,699603116,8277,0 +50462,HWILA+%2F1%2F,629,319,849006385,6539,0 +50463,FP036,473,716,699605333,5956,0 +50464,Wioska+barbarzy%C5%84ska,690,604,3589487,2246,0 +50465,Trollsonix,335,345,849103148,8597,0 +50466,Zaplecze+Barba+025,351,333,699796330,6468,0 +50467,BRICKLEBERRY,526,282,7758085,10375,5 +50468,008+-+Budowanko%21,492,720,7540891,6950,0 +50469,%3D114%3D+Acoma+Pueblo,705,573,3781794,4240,0 +50470,Wioska+barbarzy%C5%84ska,709,448,699628084,6987,0 +50471,Wioska+barbarzy%C5%84ska,617,679,6818593,4383,0 +50472,Wioska+Szaniec,515,721,698934729,2307,0 +50473,Kurnik,468,712,699603116,10252,0 +50474,Wioska+Bochun10,337,494,7449254,11130,0 +50475,Z%C5%82oty+%C5%9Awit,597,299,699883079,9629,0 +50477,C067,359,663,699383279,5106,0 +50478,%2A004%2A,686,617,1205898,8994,0 +50479,komandos,667,650,7976264,5530,0 +50480,W44,698,411,699524362,1304,0 +50481,North+K25,530,279,699146580,2702,0 +50483,001.+Hubix,682,383,2873154,8731,0 +50484,W45,688,391,699524362,2171,0 +50485,o008,611,685,699189792,9744,0 +50486,017,306,608,699356968,10484,2 +50488,Wioska+barbarzy%C5%84ska,714,498,699429153,7397,0 +50489,187...Segador,431,297,6920960,10787,0 +50490,021,563,642,699828685,9976,0 +50491,Wioska+barbarzy%C5%84ska,421,292,698231772,6263,0 +50492,303,471,281,7271812,7443,5 +50493,HWILA+%5B3%5D,629,318,849006385,4538,0 +50494,Wioska+barbarzy%C5%84ska,319,628,698908184,5411,0 +50495,308,448,284,7271812,6546,0 +50496,011,663,641,2323859,2745,0 +50497,Wioska+Daria+201,535,289,3027589,5935,0 +50498,Avanti%21,284,484,698625834,6752,0 +50499,New+WorldA,280,508,849084005,4064,0 +50500,EO+EO,283,501,699697558,10019,0 +50501,xxx,538,716,873575,8856,0 +50502,Wioska+barbarzy%C5%84ska,642,670,848909464,5172,0 +50503,Didek,685,583,849070946,10475,0 +50504,Wioska+4,652,350,849101945,4064,0 +50505,1v9+machine,384,645,699697558,10019,0 +50506,014,525,718,698996782,6801,0 +50507,Wioska+Adamek95,375,683,849097837,8944,0 +50508,Wioska+barbarzy%C5%84ska,709,453,699628084,8658,0 +50509,Osada+11,700,423,8675636,10845,0 +50510,023+A,685,616,699099811,3479,0 +50511,KONFA+TO+MARKA%2C+NARKA,291,443,698152377,10290,0 +50512,003+Eudona,672,635,849102108,8586,6 +50513,074,633,329,2502956,4101,0 +50514,005,526,281,698736778,1932,0 +50515,Wioska+pinokio,433,714,849097373,3534,0 +50516,Taran,313,616,6180190,9348,0 +50517,016+Osada+koczownik%C3%B3w,545,285,699854484,10068,8 +50520,14+W%C5%81AM,718,468,849101845,9660,0 +50521,MojeDnoToWaszSzczyt,510,276,9299539,9824,0 +50522,Wioska+barbarzy%C5%84ska,375,325,3698627,9142,0 +50524,Avanti%21,279,470,698625834,3646,0 +50525,No+Way,350,462,6258092,6866,0 +50526,0007,576,709,698723158,6240,0 +50527,B17,646,446,849093742,7819,0 +50528,%23%23%23136%23%23%23,595,695,698285444,10495,0 +50529,002,406,304,9283775,5230,0 +50530,--028--,571,288,6936607,6595,0 +50531,Wioska+barbarzy%C5%84ska,688,608,3589487,1188,0 +50532,MojeDnoToWaszSzczyt,497,280,9299539,9966,0 +50533,064+invidia,542,712,849093426,6236,0 +50534,028,533,671,2293376,9498,0 +50535,Zachodnia+Stra%C5%BCnica,704,437,849101378,7000,0 +50536,P%C3%B3%C5%82nocny+Bagdad,620,316,8847546,9107,0 +50537,082,717,505,7085502,7156,0 +50538,0082,692,384,698416970,2933,0 +50539,Piek%C5%82o+to+inni,638,328,848956765,5725,0 +50540,Lord+Arsey+KING,655,649,848956513,9179,0 +50541,qqqqq3,284,522,849084005,3434,0 +50542,014,722,498,849091105,10160,1 +50543,0009+Marysin,496,722,699656989,9924,0 +50544,%5B0257%5D,280,513,8630972,6169,0 +50545,X010,710,422,699722599,6875,0 +50546,C039,355,669,699383279,8024,0 +50547,XDX,612,314,699098531,7232,0 +50548,Trzebiatkowa,461,289,849101116,2785,0 +50549,LENI%2A%2A%2A,700,415,849101881,6609,0 +50550,Flange+9000,354,658,849092685,6276,0 +50552,023.+elli38,685,375,2873154,7455,0 +50553,Sernik+z+Andzynkami,714,507,699126484,10107,4 +50554,Bagno+44,476,723,848883684,6156,0 +50555,Wioska+barbarzy%C5%84ska,705,422,848902592,4597,0 +50556,Wioska+barbarzy%C5%84ska+017,386,308,849068662,6493,0 +50557,.achim.,535,396,6936607,9476,0 +50558,New+WorldA,288,534,849084005,2176,0 +50559,%5B0164%5D,458,285,8630972,8693,0 +50560,Wioska+barbarzy%C5%84ska,387,315,699660539,3615,0 +50561,Wioska+barbarzy%C5%84ska,545,710,7581876,2823,0 +50562,Zzz+01+jem+%C5%9Bniadanie,295,570,849084740,4832,0 +50563,Wioska+barbarzy%C5%84ska,304,595,6180190,3241,0 +50564,Wioska+MrPaullus,529,288,699818726,8968,0 +50565,XDX,599,309,699098531,5854,0 +50566,Wancki,526,280,7758085,9899,4 +50567,wy...m,598,700,699828685,4879,0 +50568,Taran,317,624,6180190,7080,0 +50569,2.+Ellander,603,693,849102573,6741,0 +50570,komandos48,640,666,7976264,9802,0 +50571,Wioska+barbarzy%C5%84ska,724,500,6510480,4250,0 +50572,Wioska+Pracz+9,311,620,8916982,2494,0 +50573,Flap,601,303,699098531,7566,0 +50574,...,337,362,699657450,2522,0 +50575,%5B0152%5D,280,497,8630972,8856,0 +50576,054,717,513,699413040,10426,1 +50577,Taran,309,615,6180190,9006,0 +50578,Wioska+barbarzy%C5%84ska,697,416,8675636,9017,0 +50579,sh04,513,286,7064954,5615,0 +50580,001,611,308,699117992,9489,0 +50581,C094,359,666,699383279,7406,0 +50582,Wioska-009-,634,332,7675610,4051,0 +50583,Bagno+30,479,721,848883684,7470,0 +50584,Psycha+Siada,335,644,8099868,8180,0 +50585,089.+ALFI,470,575,8539216,500,0 +50586,StatePchelka,283,458,698652171,6917,0 +50587,Albus+Lepus,524,722,849102336,8693,0 +50588,Piek%C5%82o+to+inni,642,337,848956765,7340,0 +50589,06+wioska,633,323,6517826,2647,0 +50590,001,290,431,6131106,7791,0 +50591,113,593,670,849097799,5814,0 +50592,KR%C3%93L+PAPI+WIELKI,718,524,698191218,6404,0 +50594,%C5%BBUBEREK+007,614,693,33900,6546,0 +50595,181,581,619,8627359,9368,0 +50597,048,629,673,699695167,3247,0 +50598,QQQQ,283,522,849047233,4790,0 +50599,009,606,304,699117992,6445,0 +50600,001f,299,412,8259895,7717,0 +50601,%5B010%5D,456,713,849089459,7107,0 +50602,012,651,339,849020094,566,2 +50603,--043--,577,291,542253,9783,0 +50604,005,299,587,698663855,8598,0 +50605,Jehu_Kingdom_61,628,480,8785314,2891,0 +50606,Wioska+barbarzy%C5%84ska,705,421,848902592,4255,0 +50607,03.XRP,713,561,698905177,12154,0 +50608,Klaudek25,633,361,849092309,998,0 +50609,070,399,692,849099876,10026,0 +50610,KONFA+TO+MARKA%2C+NARKA,291,434,698152377,7232,0 +50612,Wioska+barbarzy%C5%84ska,416,295,698231772,5733,0 +50614,Yoto0,621,686,8607734,4314,0 +50615,OFF,655,661,849014413,10343,4 +50619,B007,627,327,8740199,9804,0 +50621,012+pogromca+barbak%C3%B3w,532,714,6116940,5742,0 +50623,Wioska+barbarzy%C5%84ska,398,306,698231772,5208,0 +50624,175,381,679,849099876,7612,0 +50625,%3D094%3D+Wioska+barbarzy%C5%84ska,701,598,3781794,3507,0 +50626,008,616,309,699117992,5209,0 +50627,Z%C5%82oty+%C5%9Awit,594,303,699883079,10405,0 +50628,Wioska+barbarzy%C5%84ska,431,290,698231772,8366,0 +50629,Wioska+barbarzy%C5%84ska,338,656,6910361,721,0 +50630,Wioska001,346,344,699711926,9724,0 +50631,Bremervoord,555,292,849054951,9975,0 +50632,Sekunda,705,426,699785935,5742,0 +50633,Avanti%21,287,480,698625834,6793,0 +50634,121,392,697,849099876,8560,0 +50635,o08,613,683,699189792,9742,0 +50636,rafisonik11,516,721,849101108,5519,0 +50637,Z%C5%82oty+%C5%9Awit,605,307,699883079,10634,0 +50638,Psycha+Siada,339,646,8099868,7922,0 +50639,Lord+Arsey+KING,658,650,848956513,7403,0 +50640,Bagno+10,484,718,848883684,9401,0 +50641,Wioska+barbarzy%C5%84ska,324,631,698908184,9742,0 +50642,163...I,391,315,6920960,5782,0 +50643,Wyspa+019,298,571,225023,4661,0 +50644,061+invidia,541,714,849093426,6115,0 +50645,New+World,420,710,698152377,9407,0 +50646,AAA,541,288,1006847,9356,0 +50648,Wioska+barbarzy%C5%84ska,391,310,698231772,4072,0 +50649,Wioska+barbarzy%C5%84ska+013,386,310,849068662,5015,0 +50650,009+Twierdza,631,682,849104328,10019,0 +50651,Betelgeza,284,511,849101647,6334,0 +50652,%5B801%5D+Odludzie,709,432,848985692,8776,0 +50653,016.+Wioska+barbarzy%C5%84ska,683,376,2873154,8742,0 +50654,P%C3%B3%C5%82nocny+Bagdad,617,316,8847546,9835,0 +50655,%5B0258%5D,280,512,8630972,5927,0 +50656,elisea,644,336,849048734,2351,0 +50657,034.+Hermon,711,559,1601917,7465,0 +50658,bucksbarzy%C5%84skamiiiru,325,368,848955783,4369,0 +50659,Wioska+Aga22011993,331,639,698908184,6814,0 +50660,003+-+Budowanko%21,491,718,7540891,10207,0 +50661,North+014,504,282,849064752,10203,0 +50662,New+World,436,713,698152377,7596,0 +50664,Wyspa+004,292,562,225023,10495,0 +50666,Wioska+barbarzy%C5%84ska,411,298,698231772,7383,0 +50667,BETI+014,456,566,8539216,2041,0 +50668,--021--,575,294,542253,6916,0 +50669,K42+ADAMUS+001,287,430,6212605,9326,0 +50670,%23K75+0032,520,721,699728159,5868,0 +50671,Wioska+barbarzy%C5%84ska,564,707,6870350,3030,0 +50672,XDX,613,312,699098531,6832,0 +50673,Komandos,646,664,7976264,5617,0 +50674,Mniejsze+z%C5%82o+0084,316,389,699794765,5160,0 +50676,Bagno+16,485,717,848883684,8702,0 +50677,181.01,365,674,848931321,10986,0 +50678,%3D095%3D+Wioska+barbarzy%C5%84ska,699,596,3781794,5862,0 +50679,3.Newcastle+upon+Tyne,549,714,698215322,5698,0 +50680,Wioska+barbarzy%C5%84ska,576,705,7756002,6587,0 +50681,Na+Kra%C5%84cu+%C5%9Awiata+005,643,340,9291984,10362,0 +50682,117,394,693,849099876,8256,0 +50684,Barba,323,635,698908184,8490,0 +50685,%5B177%5D,699,594,8000875,5153,0 +50686,KONFA+TO+MARKA%2C+NARKA,285,452,698152377,9364,0 +50687,Wioska+Misiaczka69,551,709,849085293,3621,0 +50688,Wioska+barbarzy%C5%84ska,708,420,848902592,4719,0 +50689,Wancki,515,286,7758085,9861,0 +50690,Cisza,288,555,698769107,2666,0 +50691,D026,565,286,699299123,7649,0 +50692,%3DHB%3D,699,418,849101881,4441,0 +50694,Bagno+21,483,718,848883684,8107,0 +50695,%23%23%23137%23%23%23,607,689,698285444,10495,0 +50696,029,576,386,1424656,10160,0 +50697,Wioska+x,658,353,699875213,2284,0 +50698,Podworko,659,355,848924219,2899,5 +50699,Wioska,712,527,699034094,1334,0 +50700,036%7C%7C+Coma+Berenices,457,714,849035525,3565,0 +50701,Zaplecze+Barba+021,370,324,699796330,7111,0 +50702,0010,576,708,698723158,6415,0 +50703,Wioska+7,652,348,849101945,4391,0 +50705,014,294,427,6131106,4513,0 +50706,181,673,357,609384,9544,0 +50707,AAA,312,613,6180190,9204,0 +50708,Parking3,631,681,6528152,8967,0 +50709,%230252+Taki+Pan+dar,468,288,1238300,5610,0 +50710,Wioska+barbarzy%C5%84ska,367,320,3484132,5611,0 +50711,Wioska+barbarzy%C5%84ska,291,574,498483,3524,0 +50712,Didek,676,566,849070946,9991,0 +50713,Wioska+barbarzy%C5%84ska,524,284,699818726,2251,0 +50714,004,324,377,7386358,6280,0 +50715,Zeta+Reticuli+O,416,326,699323302,9547,0 +50716,FAKE+OR+OFF,409,307,698231772,9817,0 +50717,001,282,463,698652171,10559,0 +50718,097,543,503,699351301,9918,0 +50719,082+Wioska+barbarzy%C5%84ska,537,287,699854484,8896,0 +50720,11+HerrMrozio..,294,443,849018442,10287,0 +50721,Wioska3+barbarzy%C5%84ska,703,408,8459255,5342,0 +50722,Wioska+barbarzy%C5%84ska,565,288,849054951,7168,5 +50723,013,664,642,2323859,4005,0 +50725,Wioska+barbarzy%C5%84ska+II,277,528,849047233,5927,0 +50726,Wioska+barbarzy%C5%84ska,423,299,698231772,8516,0 +50727,P%C3%B3%C5%82nocny+Bagdad,618,316,8847546,9835,0 +50728,MaraczxD,354,333,698906190,12154,0 +50729,049,633,672,699695167,3666,0 +50730,K33,313,387,699794765,1599,0 +50731,Szlachcic,362,334,698388578,5233,0 +50732,Osada+koczownik%C3%B3w,722,529,848946700,10110,1 +50734,Kurnik,442,713,699603116,5677,0 +50735,A-3,672,357,849095509,3694,0 +50736,087.Stradi,435,296,698365960,9740,0 +50737,Wioska+-+001+-,535,279,848982634,3688,0 +50738,Wioska+barbarzy%C5%84ska,721,460,849095599,4236,0 +50739,1x3+Wioska+barbarzy%C5%84ska,570,713,849055425,6885,0 +50740,0136,366,676,7085510,5608,0 +50741,KUKA,285,436,6127190,4851,0 +50742,092+Wioska+barbarzy%C5%84ska,542,290,699854484,6790,0 +50743,%5B0259%5D,284,512,8630972,5711,0 +50744,Harsz,697,398,699488108,10624,0 +50745,Wioska+barbarzy%C5%84ska,276,490,699846892,3912,0 +50746,038+Wioska+barbarzy%C5%84ska,542,285,699854484,9899,0 +50747,%3D029%3D+Wioska+barbarzy%C5%84ska,707,565,3781794,9626,0 +50748,040+Wioska+barbarzy%C5%84ska,604,690,699346280,8319,0 +50749,064,715,511,7085502,7256,0 +50750,FAKE+OR+OFF,409,303,698231772,9812,4 +50751,III.+Sucha+Psina,366,325,849101893,4795,0 +50752,Zakazany+las,485,723,848999671,1452,0 +50753,Wioska+barbarzy%C5%84ska,431,286,698231772,9817,0 +50754,KONFA+TO+MARKA%2C+NARKA,291,435,698152377,5487,0 +50755,A%23042,721,494,2065730,7520,0 +50756,Barba,322,637,698908184,9825,0 +50757,113,691,615,3589487,5617,0 +50758,%230304+kawskole,443,283,1238300,4117,5 +50759,New+WorldA,284,538,849084005,2678,0 +50760,Chcia%C5%82abym,351,334,698906190,2399,0 +50761,003,695,403,7409475,4666,0 +50762,Avanti%21,285,486,698625834,5577,0 +50763,Wioska+barbarzy%C5%84ska,427,292,698231772,6589,0 +50764,Z%C5%82oty+%C5%9Awit,587,295,699883079,9812,0 +50765,MojeDnoToWaszSzczyt,487,284,9299539,5864,0 +50766,%3A+%28,280,487,699846892,7128,0 +50767,Wioska+barbarzy%C5%84ska,365,326,3698627,7707,0 +50768,Wioska+barbarzy%C5%84ska,496,717,699429335,7905,0 +50769,018,716,500,849091105,10595,0 +50770,...%3A%3A181+07%3A%3A...,277,515,699641777,4116,0 +50771,Wioska+barbarzy%C5%84ska,315,626,698908184,6395,0 +50772,0130,387,688,7085510,4867,0 +50773,KR%C3%93L+PAPI+WIELKI,721,528,698191218,8163,0 +50774,Wioska+barbarzy%C5%84ska,397,302,698231772,5332,0 +50775,Wioska1.,706,577,699266530,9302,0 +50776,Wioska+5,542,284,7427966,3102,0 +50777,SPEC+HOME,543,298,699569800,9189,0 +50778,%23297+C,519,724,9037756,5275,0 +50779,%23K75+0004,520,714,699728159,7031,0 +50780,Taran,315,619,6180190,9956,5 +50781,Pocz%C4%85tek,299,580,7842579,5856,0 +50782,Wioska+VestoreI,365,677,9292037,1581,0 +50783,XDX,609,313,699098531,8687,0 +50784,%230242+colt9,436,286,1238300,5570,0 +50785,%C5%9Aw181%2A001+robi%C4%99+hetmana+.,660,344,959179,7348,0 +50786,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,540,719,8201460,10237,0 +50787,MojeDnoToWaszSzczyt,493,276,9299539,9984,0 +50788,Motorola+01,365,321,698806018,9687,0 +50789,%232+Wioska+barbarzy%C5%84ska,633,320,849099517,8686,0 +50790,Mamtamtam,285,458,698652171,7609,0 +50791,%2A027%2A,689,614,1205898,3264,0 +50792,Wioska+-+003+-,539,280,848982634,1991,0 +50793,%3D083%3D+Jersey+City,704,570,3781794,7416,0 +50794,003,405,304,9283775,4370,0 +50795,05+barbarzy%C5%84ska.,285,443,849018442,8807,0 +50796,A002,334,649,849105102,8261,0 +50797,Psycha+Siada,330,644,8099868,9835,0 +50798,KONFA+TO+MARKA%2C+NARKA,286,437,698152377,9182,0 +50799,Wioska+barbarzy%C5%84ska,711,426,699722599,4454,0 +50800,Wioska+barbarzy%C5%84ska,400,360,8419570,10178,0 +50801,ZPP+Vill,724,487,8096537,5513,0 +50802,KONFA+TO+MARKA%2C+NARKA,290,438,698152377,10311,0 +50803,Osada+koczownik%C3%B3w,694,403,699488108,9963,7 +50805,Wioska+010,693,595,7999103,3763,0 +50806,3.Cambridge,546,717,698215322,8067,9 +50807,32.+Gemmera,721,540,8976313,4622,0 +50808,Taka.,483,724,848999671,7356,0 +50809,021,716,486,849091105,10147,1 +50810,%2A019%2A,686,618,1205898,3981,0 +50811,Wioska18,704,575,699266530,3148,0 +50812,004,610,307,699117992,7167,0 +50813,t016,666,351,2262902,7732,0 +50814,018.+Distaghil+Sar,711,550,1601917,10495,0 +50815,011,524,716,698996782,3841,0 +50816,KR%C3%93L+PAPI+WIELKI,722,523,698191218,6449,0 +50817,Wioska+barbarzy%C5%84ska,400,467,699523631,6241,0 +50818,Wioska+barbarzy%C5%84ska,390,311,699660539,4320,0 +50819,%5B0233%5D,286,495,8630972,4187,0 +50820,EKOLERNA,673,358,3957237,10583,0 +50821,...,336,353,699657450,9893,0 +50822,Z%C5%82oty+%C5%9Awit,574,297,699883079,7024,0 +50823,KONFA+TO+MARKA%2C+NARKA,285,441,698152377,10161,0 +50824,MJ43,684,378,8669398,6215,0 +50825,Lord+Arsey+KING,654,656,848956513,10285,5 +50826,Rohan,702,420,849101881,8191,0 +50827,ElMajkelos+IX,412,303,849085160,3536,0 +50828,Wioska+barbarzy%C5%84ska,361,668,0,197,0 +50829,Wioska+barbarzy%C5%84ska,277,483,699846892,2644,0 +50831,061+Wioska+barbarzy%C5%84ska,344,660,6354098,6334,0 +50832,003+AAAAA,281,549,197581,6266,0 +50833,KONFA+TO+MARKA%2C+NARKA,285,440,698152377,10291,0 +50834,New+WorldA,280,507,849084005,6139,0 +50835,078,398,692,849099876,10025,0 +50836,107,410,695,849099876,8940,0 +50837,Lord+Arsey+KING,654,658,848956513,9594,0 +50838,051+Wioska+barbarzy%C5%84ska,346,662,6354098,7125,0 +50839,Wioska+barbarzy%C5%84ska+002,379,318,849068662,10590,0 +50840,New+World,439,712,698152377,8784,0 +50841,.achim.,570,286,6936607,7217,0 +50843,XDX,608,308,699098531,10692,0 +50844,%5B0234%5D,284,502,8630972,6126,0 +50845,Samob%C3%B3j,308,396,849076515,2550,0 +50847,New+World,418,705,698152377,10294,0 +50848,%230288+kaban1988,460,288,1238300,10178,0 +50849,%3A...+3+...%3A+-,511,720,849051976,5889,0 +50850,Granit+19,360,328,698906190,11824,0 +50851,Klatka4,622,679,6528152,4639,3 +50852,North+K25,525,281,699146580,3675,0 +50853,Wioska+%5B2%5D,723,510,699858313,3312,0 +50854,012+Krayana,673,642,849102108,4175,0 +50855,Kiedy%C5%9B+Wielki+Wojownik,332,358,8632462,7416,0 +50856,110.Stradi,438,295,698365960,8895,0 +50857,PIROTECHNIK+007,348,341,849101083,3801,0 +50858,056KP,489,277,849063849,10557,0 +50859,W46,686,390,699524362,2637,0 +50860,KR%C3%93L+PAPI+WIELKI,659,631,698191218,10476,0 +50861,0038,330,366,2321390,1669,0 +50863,1.+Vhagar,298,583,849089499,8101,0 +50864,Wioska+barbarzy%C5%84ska,712,569,2453888,9885,0 +50865,003,468,717,8966820,9603,5 +50866,003,657,346,849020094,8685,0 +50867,Wioska+barbarzy%C5%84ska,435,292,698231772,8578,0 +50868,%230144+deleted,474,285,1238300,9789,0 +50869,Wioska+barbarzy%C5%84ska,301,420,699856962,7818,0 +50870,XDX,613,308,699098531,6479,0 +50871,2+Nowy+vequs,341,351,7462660,5903,0 +50872,nysa,480,724,848999671,1953,0 +50873,008,301,592,698663855,4794,0 +50874,KONFA+TO+MARKA%2C+NARKA,288,448,698152377,7355,0 +50875,MojeDnoToWaszSzczyt,495,284,9299539,9949,0 +50876,FAKE+OR+OFF,412,299,698231772,9812,9 +50877,RPM+CUSTOM,550,286,849102094,7663,0 +50878,%230150+barbarzy%C5%84ska,481,278,1238300,5829,0 +50879,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,718,8201460,5703,0 +50880,CastAway+%21005,705,585,9314079,10311,0 +50881,0150,368,681,7085510,4356,0 +50883,160,387,689,849099876,10495,0 +50884,Wioska+barbarzy%C5%84ska,699,605,6921135,2785,0 +50885,Wioska+barbarzy%C5%84ska,328,637,698908184,5418,0 +50886,D%C5%BCejd%C5%BCej+7,675,638,849098326,1418,0 +50887,Wioska+barbarzy%C5%84ska,650,336,9291984,8915,0 +50888,108,409,695,849099876,9447,0 +50889,%5B0153%5D,453,287,8630972,8962,0 +50890,Psycha+Siada,331,646,8099868,9141,0 +50891,Wioska+barbarzy%C5%84ska,719,509,6510480,5758,0 +50892,komandos,636,667,7976264,10242,0 +50893,054,679,381,698635863,7876,0 +50894,Wioska+barbarzy%C5%84ska,525,285,699818726,5134,0 +50895,Z%C5%82oty+%C5%9Awit,595,300,699883079,6988,0 +50896,XDX,605,302,699098531,4757,0 +50897,Wioska+barbarzy%C5%84ska,705,418,848902592,10636,0 +50898,azi6,461,722,849094759,2413,0 +50899,New+World,414,707,698152377,10311,0 +50900,Winterfell.016,468,282,848918380,8215,0 +50901,02+%C5%9Aruba,720,455,849101845,9710,0 +50902,Winterfell.017,466,287,848918380,8272,0 +50903,Piek%C5%82o+to+inni,639,328,848956765,4237,0 +50904,Wioska+Zorro+029,686,615,849080702,6560,7 +50905,Wioska+barbarzy%C5%84ska,305,402,3298564,1914,0 +50906,Wioska+024,666,360,7226782,4530,0 +50907,Taka..,482,723,848999671,9573,0 +50908,EO+EO,295,514,699697558,10083,0 +50909,Przezorny+zawsze+ubezpieczony,390,310,698231772,9044,0 +50910,026.,473,721,849034882,10508,0 +50911,Wioska002,687,386,698768565,10223,0 +50912,155,396,689,849099876,4849,0 +50913,KONFA+TO+MARKA%2C+NARKA,289,441,698152377,10294,0 +50914,%5B0154%5D,458,286,8630972,8852,0 +50915,K33,319,385,699794765,2363,0 +50916,0011,577,707,698723158,6182,0 +50917,BETI+013,455,566,8539216,1134,0 +50918,%23%23%23138%23%23%23,612,689,698285444,10495,0 +50919,Wioska+barbarzy%C5%84ska,311,618,6180190,5200,0 +50920,Wioska+0010,342,653,9186126,10311,0 +50921,0127,387,684,7085510,5365,0 +50922,%3F%3F%3F%3F,491,291,698489071,8814,0 +50923,083+Wioska+barbarzy%C5%84ska,539,288,699854484,9156,0 +50925,...%3A%3A181+02%3A%3A...,276,512,699641777,5432,0 +50926,Wioska+barbarzy%C5%84ska,394,694,849014922,3147,0 +50927,Kurnik,467,715,699603116,9492,0 +50928,Wioska+Aloxx,320,628,698908184,6403,0 +50929,Wioska+barbarzy%C5%84ska,711,544,17714,6464,0 +50930,50-1+MASZOPERIA,575,427,699368887,7898,0 +50931,Wioska+barbarzy%C5%84ska,303,583,698663855,3240,0 +50932,--034--,575,292,542253,4123,0 +50934,007+Twierdza,631,680,849104328,10019,0 +50935,%23K75+0033,516,720,699728159,3734,0 +50936,BOSS+Z1,350,341,849101604,3341,0 +50938,018+Olivine+City,720,486,699441366,10866,0 +50939,Z%C5%82oty+%C5%9Awit,595,304,699883079,5922,0 +50940,Du%C5%BCe+Oczy,709,454,699785935,8412,0 +50942,Niezbyt+WIELKI+KAZIO%21,460,722,699429335,10495,0 +50943,Wioska+barbarzy%C5%84ska,278,522,849047233,4822,0 +50944,Wioska+barbarzy%C5%84ska,390,307,698231772,4763,0 +50945,C004,365,667,699383279,9805,9 +50946,058,719,517,699413040,3320,0 +50947,WY...m,600,700,699828685,10495,0 +50948,t017,668,352,2262902,4315,0 +50949,050,625,676,699695167,3047,0 +50950,Wioska012,345,341,699711926,8948,0 +50951,North+003,516,284,849064752,10311,0 +50952,BRICKLEBERRY,556,292,699072129,9159,0 +50953,Wyspa+029,294,569,225023,4795,0 +50954,%23%23%23139%23%23%23,598,699,698285444,10495,0 +50955,New+World,435,712,698152377,10292,0 +50956,0149,695,396,698416970,3129,0 +50957,053,406,693,849099876,10495,0 +50958,Szcz%C4%99%C5%9Bliwego+Nowego+Roku+%3B%29,561,457,699368887,5627,0 +50959,Wioska+barbarzy%C5%84ska,618,683,6818593,5508,0 +50961,Wioska+barbarzy%C5%84ska,645,663,848987051,8742,0 +50962,Wioska+barbarzy%C5%84ska,394,304,698231772,8095,0 +50963,031.,468,721,849034882,10838,0 +50964,Nowe+Dobra+-+budowa,684,629,699759128,9860,2 +50965,U.003,287,562,849088243,8631,0 +50966,Avanti%21,276,476,698625834,6459,0 +50967,091.Stradi,434,296,698365960,9869,0 +50968,-+264+-+SS,570,708,849018239,4700,0 +50969,116.Stradi,419,290,698365960,10452,0 +50971,Wioska+barbarzy%C5%84ska,325,367,0,2906,0 +50973,021.+Night+Raid,492,707,699684062,9872,0 +50974,Z%C5%82oty+%C5%9Awit,590,299,699883079,9851,0 +50975,Wioska+barbarzy%C5%84ska,278,495,699846892,2413,0 +50976,Wioska+barbarzy%C5%84ska,719,459,849095599,3822,0 +50977,EO+EO,283,491,699697558,8787,9 +50978,Wioska+barbarzy%C5%84ska,420,290,698231772,5552,0 +50979,Saran5,410,300,848937248,3839,0 +50980,%2A195%2A,367,381,699273451,10211,0 +50981,KR%C3%93L+PAPI+WIELKI,723,519,698191218,6494,0 +50982,X012,711,427,699722599,7049,0 +50983,Wioska+barbarzy%C5%84ska,423,706,849100814,878,0 +50984,053%7C%7C+Sagitta,461,714,849035525,9792,0 +50985,WB11,306,403,356642,4268,0 +50986,Wioska+tor1,574,708,698723158,9922,0 +50987,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,719,8201460,10237,0 +50988,002,306,565,849097898,9638,0 +50989,%5B0205%5D,278,502,8630972,6590,0 +50990,.achim.,568,288,6936607,7686,0 +50991,Borys%C3%B3wka,306,602,698167138,6683,0 +50992,komandos,640,668,7976264,9600,0 +50993,KONFA+TO+MARKA%2C+NARKA,285,439,698152377,10292,0 +50995,Wroc%C5%82aw,680,629,848932879,10364,2 +50997,162,383,688,849099876,4568,0 +50998,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,552,718,699828442,9809,0 +51000,kathare,537,719,873575,9963,0 +51001,034,717,469,849091105,10160,0 +51003,C044,361,672,699383279,7818,0 +51004,EO+EO,278,503,699697558,10224,8 +51006,005+Payana,671,639,849102108,5940,0 +51007,FP038,476,716,699605333,4973,0 +51008,KONFA+TO+MARKA%2C+NARKA,290,454,698152377,10292,0 +51009,XXXX,564,294,849054951,10057,0 +51010,%C5%9Aroda+%C5%9Al%C4%85ska,673,636,848932879,3940,0 +51011,Wyspa+001,293,563,225023,10495,0 +51012,Wioska+barbarzy%C5%84ska,537,629,7589468,8819,0 +51013,Wioska+barbarzy%C5%84ska,324,628,698908184,9806,0 +51014,%23177%23,644,616,692803,3575,0 +51015,Wioska+barbarzy%C5%84ska,711,573,2453888,9072,0 +51016,NP+02,303,391,849076810,5001,0 +51017,Wioska+barbarzy%C5%84ska,427,294,699393759,5414,0 +51018,Twierdza+2,690,606,3467919,939,2 +51019,New+WorldA,286,529,849084005,5140,0 +51020,Orze%C5%82+01+wyl%C4%85dowa%C5%82,336,416,849098299,7226,0 +51021,114,408,701,849099876,9571,0 +51022,Psycha+Siada,332,645,8099868,8881,0 +51023,.achim.,567,290,6936607,6632,0 +51024,Avanti%21,279,475,698625834,5432,0 +51025,Wioska+barbarzy%C5%84ska,612,686,6818593,5114,0 +51026,Kurnik,422,703,699603116,7348,0 +51027,%5B0199%5D,276,499,8630972,6875,0 +51028,Tomekrol+5,701,597,849096334,6071,0 +51029,Wioska+spartacus699111,314,626,698908184,10221,0 +51030,Wioska+barbarzy%C5%84ska,646,658,848987051,8710,1 +51031,Wioska+barbarzy%C5%84ska,720,507,6510480,5680,0 +51032,004,295,586,698663855,10068,0 +51033,0448,570,714,698659980,9398,0 +51034,%23%23%23140%23%23%23,600,691,698285444,10495,0 +51035,New+World,412,705,698152377,10122,0 +51036,C0350,278,534,8841266,4319,0 +51037,%2A010,675,361,7758085,8291,0 +51038,Wioska+barbarzy%C5%84ska,497,724,849066849,2059,0 +51039,Kartoflisko,348,661,2725721,3098,0 +51040,Wioska+barbarzy%C5%84ska,527,285,699818726,4119,0 +51041,30.+Caingorn,721,537,8976313,5216,0 +51042,bucksbarzy%C5%84skamiiiru,322,373,848955783,4770,0 +51043,0152,366,673,7085510,4449,0 +51044,Pobozowisko,398,605,699513260,10971,0 +51045,HWILA+%2F2%2F,630,319,849006385,3168,0 +51047,Drobne,358,330,6416213,5401,0 +51048,MojeDnoToWaszSzczyt,487,285,9299539,5230,0 +51049,New+World,426,710,698152377,10291,0 +51050,Z%C5%82oty+%C5%9Awit,593,296,699883079,9702,0 +51051,%5B804%5D+Odludzie,710,432,848985692,8737,0 +51052,Wioska+barbarzy%C5%84ska,320,366,0,1708,0 +51053,Pocz%C4%85tek,294,579,7842579,3587,0 +51055,Wioska+barbarzy%C5%84ska,718,487,699429153,3793,0 +51056,Wioska+barbarzy%C5%84ska,282,484,699846892,2755,0 +51057,Wiadro00,671,631,8677963,9576,0 +51058,New+World,410,703,698152377,10297,0 +51059,0018+Wioska+barbarzy%C5%84ska,494,725,699656989,5347,0 +51060,.achim.,576,288,6936607,4792,0 +51061,Wioska+MISTRZU77,495,283,763529,4994,0 +51062,kathare,535,720,873575,9961,0 +51063,O108,313,625,272173,8747,0 +51064,019+Osada+koczownik%C3%B3w,536,278,699854484,10068,3 +51065,%23K75+0026,513,715,699728159,4450,0 +51066,rafisonik9,511,718,849101108,4143,0 +51067,ZZZ+.%3A%3A.+cinek3456%2F06,581,702,33900,10195,0 +51070,Wioska+barbarzy%C5%84ska,719,550,698666810,11363,0 +51071,Wioska+028,666,354,7226782,5734,0 +51072,HAPERT,625,663,848909464,10344,0 +51073,New+World,435,710,698152377,10294,0 +51074,%23K75+0030,521,720,699728159,3941,0 +51075,New+World,428,713,698152377,10290,0 +51076,-+257+-+SS,571,707,849018239,5311,0 +51077,Wioska+P-406-04,554,335,6654098,1360,0 +51078,056+Wioska+barbarzy%C5%84ska,549,289,699854484,9756,0 +51079,o014,605,696,699189792,7536,0 +51080,wancki+i+gustlikk,505,277,7758085,9721,0 +51082,Wioska+barbarzy%C5%84ska,472,277,699196829,9787,0 +51083,0586,586,707,698659980,10019,1 +51084,005,593,704,849097370,3491,0 +51085,%C5%BC+internacionale+0001,316,374,3909522,10228,1 +51087,P%7C004%7C,460,715,699393742,8965,0 +51088,Wioska+barbarzy%C5%84ska,313,388,699794765,1430,0 +51089,034,655,348,9148043,6462,0 +51090,%2A020%2A,685,618,1205898,5378,0 +51091,Wioska+barbarzy%C5%84ska,715,543,17714,6407,0 +51092,0083,455,279,848913037,5578,0 +51093,KR%C3%93L+PAPI+WIELKI,672,636,698191218,6407,0 +51094,055,676,376,698635863,9994,0 +51095,B011,630,323,8740199,10813,4 +51096,Wioska+Mammbeppe,715,443,849102480,8818,0 +51097,Wioska+LadyMauritius,501,278,699278528,9734,0 +51098,039+Wioska+barbarzy%C5%84ska,542,283,699854484,9835,0 +51099,Bagno+12,483,717,848883684,9423,0 +51100,027+Wioska+barbarzy%C5%84ska,544,283,699854484,10068,0 +51101,Wioska+barbarzy%C5%84ska,417,297,698231772,5553,0 +51102,%2136+65+Prisaca+Dornei,665,361,698361257,10019,0 +51103,%5B0200%5D,275,498,8630972,7536,0 +51104,005c,305,410,8259895,4274,6 +51105,W47,691,394,699524362,2149,0 +51106,New+World,438,716,698152377,7591,0 +51107,003,344,347,849101205,8460,8 +51108,KUKA+VIII,291,433,6127190,1549,0 +51109,Koczowisko,306,607,698167138,4998,0 +51110,Wioska+barbarzy%C5%84ska,388,482,6258092,7030,0 +51111,%2A015,676,362,7758085,9268,0 +51112,%230240+colt9,437,284,1238300,6485,0 +51113,07+barbarzy%C5%84ska0,283,444,849018442,9835,0 +51115,Wioska+025,668,361,7226782,4472,0 +51116,Zaplecze+miedziane+2,360,333,699796330,9744,3 +51117,Wioska+barbarzy%C5%84ska,718,459,849095599,3097,0 +51118,P%C3%B3%C5%82nocny+Bagdad,620,314,8847546,7105,0 +51119,C091,361,666,699383279,8871,0 +51120,KR%C3%93L+PAPI+WIELKI,691,617,698191218,6302,0 +51121,12+desdemona24.,284,449,849018442,9835,0 +51122,W48,693,393,699524362,1800,0 +51123,%23Kresy,629,678,2665207,7429,0 +51124,039+Wioska+barbarzy%C5%84ska,604,691,699346280,10160,0 +51125,Psycha+Siada,326,640,8099868,9925,0 +51126,Wioska+barbarzy%C5%84ska,364,325,3698627,5293,0 +51127,Z%C5%82oty+%C5%9Awit,597,301,699883079,10055,3 +51128,Bia%C5%82a+Podlaska+3,440,716,849100787,1019,0 +51129,MojeDnoToWaszSzczyt,507,277,9299539,9946,0 +51130,K33,315,381,699794765,2759,0 +51131,Wioska+barbarzy%C5%84ska,716,490,699429153,6346,0 +51132,Wioska+mk2014,412,701,698431574,2216,0 +51133,KONFA+TO+MARKA%2C+NARKA,285,442,698152377,10295,0 +51134,Wioska+barbarzy%C5%84ska,327,633,698908184,5890,0 +51135,254...,464,285,6920960,4872,0 +51136,New+WorldA,281,505,849084005,2886,7 +51137,Zzz+00+CebulaVillage,295,571,849084740,3115,0 +51138,Wioska+barbarzy%C5%84ska,711,558,17714,5167,0 +51139,008+JJ,327,365,9120206,9379,0 +51140,Wioska+barbarzy%C5%84ska,651,336,9291984,3575,0 +51141,FAKE+OR+OFF,417,298,698231772,9814,4 +51142,Wioska+barbarzy%C5%84ska,420,294,698231772,3102,0 +51143,MJ3,685,380,8669398,5776,0 +51144,Nowy+Pocz%C4%85tek,303,390,849076810,9555,0 +51145,-001-,357,544,9253494,9740,0 +51146,Bagno+26,475,719,848883684,7452,0 +51147,Trunks+Super+Saiyan+002,518,724,699054373,5354,0 +51148,020,707,509,699150527,8822,0 +51150,Wioska+009,697,591,7999103,3346,0 +51151,New+World,431,714,698152377,10291,9 +51152,KONFA+TO+MARKA%2C+NARKA,292,436,698152377,10292,0 +51153,%230301+Piotr-B,435,288,1238300,8348,0 +51154,003+PPP,529,715,6116940,5055,0 +51155,Zasiedmiogorogrodzie+002,696,398,698278542,3403,0 +51156,063,403,694,849099876,10495,0 +51157,ZZZ+.%3A%3A.+cinek3456%2F05,581,701,33900,10195,0 +51158,Wioska+barbarzy%C5%84ska,711,579,699266530,5304,0 +51159,05+GHOL,722,458,849101845,9539,0 +51160,o09,614,686,699189792,7807,0 +51161,%5B817%5D+Odludzie,713,443,848985692,7599,0 +51162,Twierdza+%28SV%29,351,549,0,6873,32 +51163,Demacia,347,335,698817235,11502,0 +51164,022+Mahogany+Town,721,485,699441366,11109,2 +51165,Wioska+barbarzy%C5%84ska,507,720,849066849,5185,0 +51166,Aksjo+1,560,285,849099696,2168,0 +51167,Bernabeum,642,336,9291984,5835,0 +51168,011+Twierdza,629,681,849104328,9215,0 +51169,006,676,360,9148043,5306,0 +51170,030+Mauville+City,714,483,699441366,5581,0 +51171,kathare,535,719,873575,10182,8 +51172,Wioska010,696,390,698768565,9596,0 +51173,UTAPAU+1,541,722,699383121,4057,0 +51174,Wioska+barbarzy%C5%84ska,715,486,699429153,4348,0 +51175,Avanti%21,284,477,698625834,6631,0 +51176,017,280,464,6131106,9835,5 +51177,C-003,323,361,699406247,3894,0 +51178,MojeDnoToWaszSzczyt,509,275,9299539,9822,0 +51179,049.+Hubix,686,383,2873154,8945,0 +51180,A-004,323,368,699406247,6028,0 +51181,005.+Seiyouwasabi,697,391,2873154,10237,4 +51182,010+JJ,332,364,9120206,3834,0 +51183,Wioska+barbarzy%C5%84ska,688,385,1715091,3137,0 +51184,Kapitol_04,505,722,606407,5320,0 +51185,Kamienio%C5%82om,348,662,2725721,3284,0 +51186,.achim.,564,284,6936607,2657,0 +51187,NP+04,304,392,849076810,6944,0 +51189,Psycha+Siada,339,651,8099868,8980,0 +51190,0367,566,696,698659980,8411,0 +51191,Wioska+barbarzy%C5%84ska,363,328,6416213,3447,0 +51192,%3D096%3D+Wioska+barbarzy%C5%84ska,706,568,3781794,6168,0 +51193,Finne,279,463,848981726,8220,1 +51194,Blanco+Conejo,522,722,849102336,7134,0 +51195,Na+Kra%C5%84cu+%C5%9Awiata+004,645,341,9291984,10475,0 +51196,002,422,711,849100814,5097,1 +51197,Wioska+barbarzy%C5%84ska,318,370,0,1227,0 +51198,074+invidia,537,718,849093426,5243,0 +51199,071,399,691,849099876,10495,0 +51200,Wioska+barbarzy%C5%84ska,328,368,9240154,1969,0 +51201,Barlinek,487,280,699278528,7278,0 +51202,New+World,413,700,698152377,9978,0 +51204,mufinka,381,689,849030086,9804,0 +51205,0139,367,676,7085510,3866,0 +51206,007,635,636,849099544,6922,0 +51207,%2A005,671,364,7758085,9663,0 +51208,North+049,512,281,849064752,6418,0 +51209,%23K75+0007,518,714,699728159,5353,0 +51210,Choment%C3%B3w,580,709,698723158,10160,0 +51211,033,685,622,699099811,4000,0 +51212,Kapitol_02,506,725,606407,6040,0 +51213,014.,634,669,699695167,10158,0 +51214,018,303,609,699356968,5532,0 +51215,WOLA0102,680,366,6956104,6752,0 +51216,New+WorldA,278,505,849084005,4369,0 +51217,0066,458,280,848913037,9993,0 +51218,Wioska+barbarzy%C5%84ska,318,629,698908184,5269,0 +51219,072+Wioska+barbarzy%C5%84ska,540,286,699854484,9899,0 +51220,North+040,516,282,849064752,7111,0 +51221,Wioska+1,512,723,849100615,3664,0 +51222,komandos,669,649,7976264,5059,0 +51223,Wiiiiiii,287,469,848981726,2087,0 +51225,Op+Konfederacja,472,285,848915730,7457,0 +51226,No+to+jedziemy+%3AD,495,714,699333701,7495,0 +51227,075+Kr%C3%B3lewska+Przysta%C5%84,705,429,2135129,9565,0 +51228,Wioska7,708,576,699266530,8164,0 +51229,%2A002,669,364,7758085,10337,3 +51230,P004,511,275,699208929,5711,0 +51231,17+Wioska+wolna+od+pisu,721,458,849101845,7391,0 +51232,B_10,296,411,699728266,2614,0 +51233,Wioska+KaszczuJ+1,700,573,849104356,10160,0 +51234,New+World,432,709,698152377,10291,0 +51235,103,399,695,849099876,10025,0 +51236,Motorola+02,364,321,698806018,9044,0 +51237,Xxxx,722,501,6510480,9786,8 +51238,K24+-+%5B002%5D+Before+Land,462,287,699088769,6625,0 +51239,Kurnik,451,716,699603116,9609,0 +51241,Wioska+013,700,588,7999103,2470,0 +51242,Wioska+barbarzy%C5%84ska+001,703,404,7588382,1966,0 +51243,B012,631,324,8740199,11328,0 +51244,012+Twierdza,629,682,849104328,8341,0 +51245,04Wioska+barbarzy%C5%84ska,363,673,699704542,3505,0 +51246,Z%C5%82oty+%C5%9Awit,595,302,699883079,6929,0 +51247,Wioska,476,284,7758085,6551,0 +51248,W49,694,402,699524362,2070,0 +51250,%23%23%23141%23%23%23,602,696,698285444,10495,0 +51251,AAA,555,289,1006847,8459,2 +51253,%23034,557,283,849064614,2771,0 +51254,Pcim+Dolny,463,280,849100083,5049,0 +51255,%23%23%23142%23%23%23,598,695,698285444,10495,0 +51256,Wioska+barbarzy%C5%84ska,702,577,7154207,1521,0 +51257,KR%C3%93L+PAPI+WIELKI,725,522,698191218,5859,0 +51258,AAA,528,318,1006847,4336,0 +51259,Wioska+barbarzy%C5%84ska,350,339,849101694,2791,0 +51260,Wioska+barbarzy%C5%84ska,459,284,699863708,4142,0 +51261,Wioska+kjs12,301,606,698687597,628,0 +51262,Wioska+jo1,296,405,699763225,3783,0 +51263,002+Quatra,670,640,849102108,8087,1 +51264,Bagno+18,483,716,848883684,7712,0 +51265,123,404,699,849099876,9577,0 +51266,MojeDnoToWaszSzczyt,499,277,9299539,9946,0 +51267,0104,681,378,698416970,4552,0 +51268,0153,699,399,698416970,10019,0 +51269,Psycha+Siada,327,642,8099868,10019,0 +51270,Zaplecze+Barba+7,372,319,699796330,9742,0 +51271,wancki+i+gustlikk,503,282,7758085,9724,0 +51272,008,308,605,699356968,4899,0 +51273,Piek%C5%82o+to+inni,647,333,848956765,6060,0 +51274,C099,357,672,699383279,9704,0 +51275,%3D0017%3D,391,308,698231772,9851,0 +51276,222,413,293,849089654,2998,0 +51277,023,289,420,6131106,3237,0 +51278,%23%23%23143%23%23%23,592,697,698285444,10495,0 +51279,New+WorldA,281,528,849084005,3510,0 +51280,015,309,392,8724192,1301,0 +51281,04Wioska+barbarzy%C5%84ska,364,675,699704542,9524,0 +51282,BOSS+SW,350,346,849101604,7597,0 +51283,Nowa+03,302,600,699321518,3144,0 +51284,Wioska+adekkolt1,651,333,9257513,26,0 +51286,wancki+i+gustlikk,503,279,7758085,9737,0 +51288,North+074,518,278,849064752,4159,0 +51289,0012+Wioska+sos1234,471,716,699656989,9860,0 +51290,065,716,511,7085502,7517,0 +51291,010.+Tonno+e+cipolla,307,385,849102092,8878,0 +51292,012,290,425,6131106,5805,1 +51293,%2A014,678,365,7758085,7710,0 +51295,--026--,570,292,542253,7790,0 +51296,MojeDnoToWaszSzczyt,498,280,9299539,9955,0 +51297,054+Wioska+barbarzy%C5%84ska,347,664,6354098,5750,0 +51298,Wioska+barbarzy%C5%84ska,418,293,698231772,5736,0 +51300,056,680,379,698635863,10290,0 +51301,003,284,461,698652171,8470,0 +51302,Podbitek+2,685,610,849101652,7352,0 +51303,009,658,348,849020094,4383,0 +51304,MERHET,583,708,698215322,7453,0 +51305,018+Twierdza,636,680,849104328,2904,0 +51306,014,667,641,2323859,5090,0 +51307,044,663,645,2323859,1244,0 +51308,Magiczne+koszary,462,718,848935389,6418,0 +51309,Wiocha+2,556,717,849045675,11995,0 +51310,Trawiasta0,623,684,8607734,9655,4 +51311,Z%C5%82oty+%C5%9Awit,597,300,699883079,6366,0 +51312,2.+Caraxes,299,583,849089499,2620,0 +51313,002,300,409,8259895,4792,0 +51314,06.LUNA,710,561,698905177,3913,0 +51315,Lord+Arsey+KING,656,650,848956513,9377,0 +51316,118,391,695,849099876,8138,0 +51317,--044--,572,289,542253,1943,0 +51318,008,297,594,698663855,5774,0 +51319,Po%C5%82udniowy+Wsch%C3%B3d+014,690,609,699778867,1012,0 +51320,Haga,280,520,699830255,4459,0 +51321,Piek%C5%82o+to+inni,638,326,848956765,6799,0 +51323,028,683,620,699099811,3353,0 +51324,%5B0149%5D,444,291,8630972,9117,0 +51325,Wioska+barbarzy%C5%84ska,717,543,1601917,3326,0 +51326,%230072,572,713,1536231,7583,0 +51327,Kolonia+02,304,592,6180190,7919,0 +51328,KR%C3%93L+PAPI+WIELKI,692,619,698191218,6442,0 +51329,Winterfell.021,455,283,848918380,3693,0 +51330,Motorola+06,364,324,698806018,4763,0 +51331,Cisza,291,550,698769107,3577,0 +51332,3.Oksford,545,715,698215322,6656,0 +51333,46.+Ellander,718,541,8976313,4371,0 +51334,SP+2201,353,657,849092685,5291,0 +51335,FAKE+OR+OFF,400,304,698231772,9836,0 +51337,Wioska+barbarzy%C5%84ska,594,705,8991696,4966,0 +51338,Ave+Night,457,711,849089459,7134,0 +51339,Psycha+Siada,332,640,8099868,10019,0 +51341,Piek%C5%82o+to+inni,654,335,848956765,3242,0 +51342,.achim.,566,291,6936607,5927,0 +51343,C045,372,676,699383279,7791,0 +51344,7.+Maribor,602,699,849102573,5547,0 +51345,o011,615,686,699189792,9959,1 +51346,Psycha+Siada,338,651,8099868,8669,0 +51347,04Wioska+barbarzy%C5%84ska,362,675,699704542,9128,0 +51348,008+%7C+North,374,685,699511295,6194,0 +51349,008,659,348,849020094,3783,0 +51350,%23%23%23144%23%23%23,607,694,698285444,10495,0 +51351,Avanti%21,278,494,698625834,8487,0 +51352,Wioska005,688,389,698768565,10113,0 +51354,Wioska+barbarzy%C5%84ska,714,543,17714,6041,0 +51355,osada,418,709,849100814,1550,2 +51356,DZIMMMIi,335,641,849101135,9816,0 +51357,No.27,475,722,698826986,788,0 +51358,029.,466,722,849034882,10838,0 +51360,0140,690,390,698416970,2668,0 +51361,006,298,587,698663855,6242,0 +51362,Wioska+barbarzy%C5%84ska,474,715,699280514,3440,0 +51363,0070,697,393,698416970,4983,0 +51364,Wioska+barbarzy%C5%84ska,720,497,699429153,2090,0 +51365,azi1,460,719,849094759,7839,0 +51366,Nowy+pocz%C4%85tek,463,308,849104546,11622,0 +51367,Wioska+barbarzy%C5%84ska,712,570,2453888,10019,0 +51368,-08-,582,709,849032414,9472,0 +51369,Z%C5%82oty+%C5%9Awit,579,297,699883079,5926,0 +51370,059.,628,673,699695167,3010,0 +51371,Wioska4+barbarzy%C5%84ska,697,413,8459255,5298,0 +51372,Wioska+barbarzy%C5%84ska,714,443,699628084,6570,0 +51373,MANUO,619,691,698353083,9623,0 +51374,%3D%7C17%7C%3D,651,382,9101574,10495,0 +51375,Wioska+barbarzy%C5%84ska,718,549,698666810,11283,0 +51376,ZZZ+.%3A%3A.+cinek3456%2F04,582,701,33900,10200,0 +51377,weiBer+Hase,527,723,849102336,4351,0 +51378,Wioska+barbarzy%C5%84ska,722,471,699574408,5035,0 +51379,O078,333,639,272173,9887,0 +51380,Psycha+Siada,446,665,698807570,5429,0 +51381,003,321,379,7919620,2793,9 +51382,XDe,326,555,849096458,6158,0 +51383,Wioska+tomnado,674,360,2976468,9830,0 +51384,Wioska+006,670,352,7226782,4396,0 +51385,%C5%BBUBEREK+005+rt27,617,690,33900,10242,0 +51386,071.,715,463,849094609,3217,0 +51387,t015,667,352,2262902,7917,0 +51388,Avanti%21,281,471,698625834,6885,7 +51389,New+WorldA,280,506,849084005,5141,0 +51390,MojeDnoToWaszSzczyt,509,277,9299539,9947,0 +51392,Wioska+barbarzy%C5%84ska,396,300,698231772,5753,0 +51393,016,655,356,9148043,5897,0 +51394,%2136+65+Corocaiesti,652,361,698361257,4592,0 +51395,WOLA0101,679,368,6956104,7603,0 +51398,%2A021%2A,683,627,1205898,3701,0 +51399,0061.,450,710,849037407,7189,0 +51400,119+invidia,507,723,849093426,10236,4 +51403,Wioska+barbarzy%C5%84ska,279,466,699812351,2192,0 +51404,Lord+Arsey+KING,653,660,848956513,10285,6 +51405,Wioska+barbarzy%C5%84ska,411,293,698231772,7152,0 +51406,Wioska+023,667,359,7226782,3907,0 +51407,New+World,418,708,698152377,9909,0 +51408,.achim.,471,280,6936607,8812,0 +51409,rafisonik7,510,717,849101108,4815,0 +51410,001,659,343,849020094,10985,0 +51411,Wioska+barbarzy%C5%84ska,293,431,8366045,3662,0 +51412,185,384,687,849099876,7614,0 +51413,P%C3%B3%C5%82nocny+Bagdad,616,319,8847546,9835,0 +51414,Recreational+Facility,515,608,8199417,6529,0 +51415,Taran,322,625,6180190,7172,0 +51416,Gryfios+098,720,551,698666810,11460,0 +51417,Wioska+barbarzy%C5%84ska,301,586,698663855,3697,0 +51418,%230305+wancki+i+gustlikk+dar,482,279,1238300,6719,0 +51419,%3D097%3D+Wioska+barbarzy%C5%84ska,700,596,3781794,7305,9 +51420,Avanti%21,278,480,698625834,5689,0 +51421,15+Cezarleon.,290,445,849018442,9811,0 +51422,MojeDnoToWaszSzczyt,488,276,9299539,9812,0 +51423,Bagno,354,332,698906190,4707,0 +51424,WBar,285,456,698652171,6359,0 +51426,Ow+Konfederacja,604,396,848915730,4912,0 +51427,032,677,641,2323859,2808,0 +51428,Wioska+EmilPraski,618,367,699857387,9119,0 +51429,C0230,279,546,8841266,8912,6 +51432,-18-,577,702,849032414,6369,0 +51433,8.+Sunfyre,297,591,849089499,246,0 +51435,C024,356,664,699383279,9095,0 +51436,Komandos,643,665,7976264,10054,5 +51437,Ko%C5%9Bci%C3%B3%C5%82+na+g%C3%B3rce,681,545,848932879,9166,0 +51438,KONFA+TO+MARKA%2C+NARKA,288,438,698152377,10306,0 +51439,Wioska+barbarzy%C5%84ska,392,302,698231772,8573,0 +51440,KONFA+TO+MARKA%2C+NARKA,289,446,698152377,10291,0 +51441,Psycha+Siada,336,643,8099868,10019,0 +51444,Wioska+18,692,599,849101162,2602,0 +51445,Bagno+29,481,718,848883684,8366,0 +51446,%3D034%3D+Wioska+barbarzy%C5%84ska,708,568,3781794,10575,0 +51447,Zzz+07+koniec+blisko,290,570,849084740,7849,0 +51448,K24+-+%5B001%5D+Before+Land,470,283,699088769,5096,0 +51449,Wioska+barbarzy%C5%84ska,323,632,698908184,4002,0 +51450,Avanti%21,279,473,698625834,7128,0 +51451,013,725,494,849091105,9966,1 +51452,ZZZ+.%3A%3A.+cinek3456%2F03,584,703,33900,10194,0 +51453,4.+Wyzima,606,693,849102573,6043,0 +51454,Avanti%21,281,478,698625834,5721,0 +51455,Magiczne+koszary,462,720,848935389,9809,0 +51457,Lord+Arsey+KING,654,662,848956513,9591,0 +51458,XXXX,561,292,849054951,10311,6 +51459,Winter+is+coming,463,604,699364813,4682,0 +51460,Motorola+04,366,320,698806018,7970,0 +51461,0062,450,704,849037407,9150,0 +51462,Wioska+barbarzy%C5%84ska,726,485,698191218,3693,0 +51463,Wioska+1,546,279,7427966,3797,0 +51464,Ludzka+przypad%C5%82o%C5%9B%C4%87,694,401,699785935,2537,0 +51465,030,301,554,9280477,4356,0 +51466,005,695,390,849057764,3483,0 +51468,089+Wioska+barbarzy%C5%84ska,544,289,699854484,7682,0 +51469,38.+Hakland,714,534,8976313,9332,0 +51470,KONFA+TO+MARKA%2C+NARKA,284,453,698152377,9601,0 +51471,007+Victoria,671,641,849102108,10186,0 +51472,Wioska+barbarzy%C5%84ska,317,370,0,1545,0 +51473,3.Leicester,566,716,698215322,9949,1 +51474,wioska+wilka+01,717,562,6786449,10809,0 +51475,New+World,413,707,698152377,10291,7 +51476,%3D0027%3D,395,311,698231772,8523,0 +51477,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,553,719,699828442,9808,0 +51478,020,482,651,699238479,9014,0 +51479,Z%C5%82oty+%C5%9Awit,579,294,699883079,8243,0 +51480,Kurnik,466,723,699603116,10481,0 +51481,X006,713,426,699722599,7397,0 +51482,Orgetoryks,329,356,848998530,9577,0 +51483,Avanti%21,284,480,698625834,6310,0 +51484,%23Kresy,629,677,2665207,6000,0 +51485,O073,330,632,272173,9871,0 +51486,North+005,516,281,849064752,10311,0 +51487,%3D023%3D+Osada+koczownik%C3%B3w,709,573,3781794,8560,1 +51488,Tomekrol,702,597,849096334,7632,0 +51489,002a,300,410,8259895,4475,0 +51490,B004+Osada+%C5%BBelazo,713,460,113796,9346,3 +51491,Wioska+wilka+03,717,559,6786449,9756,0 +51492,Wioska+barbarzy%C5%84ska,559,717,6299408,6934,0 +51493,Zzz+09+kom,287,568,849084740,3754,2 +51494,0112,374,677,7085510,10216,0 +51495,Wioska+barbarzy%C5%84ska,294,428,8366045,3654,0 +51496,024,715,471,849091105,10160,0 +51497,Wioska+barbarzy%C5%84ska,425,297,698231772,5569,0 +51498,%230156+lukas041,479,276,1238300,4512,0 +51499,W50,694,392,699524362,2124,0 +51500,%23%23%23145%23%23%23,590,696,698285444,10495,0 +51501,000,612,306,699117992,10495,0 +51502,007+crisyss,526,284,698736778,3303,0 +51503,022.+Gloria+Victis,284,562,848886973,11321,0 +51504,%3D098%3D+Wioska+barbarzy%C5%84ska,708,569,3781794,3768,0 +51505,Wioska+barbarzy%C5%84ska,703,420,8675636,8852,0 +51506,Wioska+barbarzy%C5%84ska,714,550,698666810,7774,0 +51507,S021,691,599,8428196,4989,0 +51508,%230123+Gaj,480,536,9272054,6319,0 +51509,A-005,319,373,699406247,5189,0 +51510,Wioska+barbarzy%C5%84ska,280,485,699846892,2250,0 +51511,11_Franekkimono510_11,368,319,849099422,1205,0 +51512,Wioska+barbarzy%C5%84ska,473,282,699196829,6799,0 +51513,Wioska+%3DWilku%3D,717,561,699878150,11984,0 +51514,062,402,696,849099876,10495,0 +51515,Zeta+Reticuli+W,361,407,699323302,4119,0 +51516,Mordownia+5,703,593,849101029,8200,0 +51517,Trunks+Super+Saiyan+001,520,725,699054373,8464,0 +51518,%3A...+1+...%3A,514,717,849051976,8281,0 +51519,%23%23%23146%23%23%23,608,688,698285444,10495,0 +51520,Gattacka,612,420,699298370,9549,0 +51521,%5B816%5D+Odludzie,710,444,848985692,7028,0 +51522,000,395,303,698231772,7174,0 +51523,New+World,426,709,698152377,10292,0 +51524,161,383,687,849099876,6088,0 +51525,WOLA0001,679,367,6956104,9488,0 +51526,Wioska+barbarzy%C5%84ska,375,356,698160606,4648,0 +51527,Piek%C5%82o+to+inni,637,325,848956765,4683,0 +51528,Koala0o1,364,320,698806018,9592,0 +51529,Wioska+barbarzy%C5%84ska,553,710,699828442,5751,0 +51530,xxx,400,699,849014922,9371,0 +51531,006+%7C+North,374,687,699511295,10019,0 +51532,KONFA+TO+MARKA%2C+NARKA,285,449,698152377,10252,0 +51533,010,609,311,699117992,4924,0 +51534,Osada+14,711,420,699488108,8465,0 +51535,Avanti%21,282,478,698625834,6319,0 +51537,Nowe+Dobra+-+budowa,687,628,699759128,7927,1 +51538,Wioska+barbarzy%C5%84ska,723,496,698191218,4593,0 +51539,Kurnik,420,711,699603116,7511,0 +51540,077,694,546,699316421,10559,0 +51541,%230237+colt9,436,285,1238300,9442,0 +51542,rycho100,695,408,699488108,9190,0 +51543,MojeDnoToWaszSzczyt,497,277,9299539,9954,0 +51544,309,448,280,7271812,2514,0 +51545,%233+Wioska+barbarzy%C5%84ska,635,322,849099517,5039,0 +51546,MojeDnoToWaszSzczyt,491,277,9299539,9959,0 +51547,.Sajonaura,472,501,699781762,10495,0 +51548,Klatka3,620,681,6528152,4122,0 +51549,0451,556,612,698659980,10083,0 +51550,022,666,647,2323859,2857,0 +51551,101.+Armekt,673,646,8337151,12001,0 +51552,Szlachcic,354,336,698388578,4468,0 +51553,001,494,646,848953066,10495,0 +51554,061,690,621,699099811,1101,0 +51555,D021,560,291,699299123,3588,0 +51556,Piek%C5%82o+to+inni,652,338,848956765,5384,0 +51557,Wioska+Luk10iD,680,360,2976468,2752,0 +51558,065+Wioska+barbarzy%C5%84ska,347,658,6354098,4482,0 +51559,Ciemnogr%C3%B3d+%232,331,363,849096958,8743,2 +51560,P%C3%B3%C5%82nocny+Bagdad,622,316,8847546,6651,0 +51561,X001+Wehiku%C5%82+czasu,709,428,699722599,9128,0 +51562,Bida,304,601,698167138,1912,0 +51563,Zapl%C4%85tany.,283,478,849001277,5185,0 +51564,Wioska+barbarzy%C5%84ska,546,721,699828442,9744,0 +51565,Wioska+barbarzy%C5%84ska,710,583,698845189,7399,9 +51566,...,335,354,699657450,7428,0 +51567,Ghostmane5,719,445,848896434,2490,0 +51568,Mordownia,705,594,849101029,11713,0 +51569,C.054,724,482,9188016,3792,0 +51570,Wioska+barbarzy%C5%84ska,429,292,698231772,7097,0 +51571,00000Z%C5%82oty+%C5%9Bwit,586,297,699883079,10119,0 +51572,S030,691,602,8428196,1788,0 +51573,Wioska+barbarzy%C5%84ska,324,637,698908184,9725,0 +51574,Pocz%C4%85tek,298,578,7842579,3309,0 +51575,Avanti%21,283,476,698625834,2639,0 +51577,Wioska+barbarzy%C5%84ska,716,545,17714,7005,0 +51578,Wioska+barbarzy%C5%84ska,658,350,1715091,1167,0 +51579,B002,521,280,699485250,9413,0 +51580,013,400,693,849099876,10495,3 +51581,086+rexanty2,715,546,2135129,5039,0 +51582,Wioska+barbarzy%C5%84ska,301,596,0,8297,0 +51583,Wioska+barbarzy%C5%84ska,722,467,699574408,4786,0 +51584,035+Wioska+barbarzy%C5%84ska,543,282,699854484,9899,0 +51585,Wioska+barbarzy%C5%84ska,717,498,699429153,5907,0 +51586,Flap,601,298,699098531,3175,0 +51587,C046,364,669,699383279,5394,0 +51589,020,290,422,6131106,3517,0 +51590,Wioska+majku+6,412,704,9195661,3758,0 +51591,New+World,432,715,698152377,10294,0 +51592,Ciemnogr%C3%B3d+%234,334,361,849096958,7723,0 +51593,016,303,403,8724192,658,0 +51594,%7CD%7C+Baywell,456,722,698147372,4534,0 +51595,Jupi,279,468,848981726,1423,0 +51596,Piek%C5%82o+to+inni,657,345,848956765,2494,0 +51597,C.055,722,478,9188016,4598,0 +51598,Zielonka,465,306,699308637,9837,0 +51599,Arehukas,379,690,849030086,10247,0 +51600,New+World,423,705,698152377,7911,0 +51601,Wioska006,689,383,698768565,5731,0 +51602,Wioska+denver72,296,583,699671197,5999,0 +51603,sami+swoi+2,411,704,9195661,5017,0 +51604,Wioska+barbarzy%C5%84ska,490,722,699744012,2354,0 +51605,Wioska+Miko6,286,531,699805379,1547,0 +51606,119.Stradi,443,285,698365960,10495,0 +51607,Motorola+07,364,319,698806018,3926,0 +51608,%23001,553,280,849064614,9398,0 +51609,Osada+koczownik%C3%B3w,624,321,7555180,9630,8 +51611,036+KTW,720,447,848883237,3022,0 +51612,115,396,696,849099876,9279,0 +51613,Wioska+katoryjcias,726,524,8541236,9408,0 +51614,MojeDnoToWaszSzczyt,501,276,9299539,9963,0 +51615,EKG+M11+sebastia,484,606,33900,10354,0 +51616,Kiedy%C5%9B+Wielki+Wojownik,327,359,8632462,1264,0 +51617,074+Wioska+barbarzy%C5%84ska,540,285,699854484,10178,0 +51618,%230250+colt9,439,283,1238300,6308,0 +51619,Wioska+barbarzy%C5%84ska,625,684,699699601,2980,0 +51620,Wioska+barbarzy%C5%84ska,368,318,8772425,4109,0 +51621,0011+Wioska+Kaczorek69,501,722,699656989,9816,0 +51622,KONFA+TO+MARKA%2C+NARKA,289,442,698152377,10294,0 +51623,xxx2,701,601,6921135,5334,0 +51624,%230241+colt9,437,286,1238300,6256,0 +51625,BOA5,307,618,699829494,2931,0 +51626,024.,469,714,849034882,10838,0 +51627,Wioska+barbarzy%C5%84ska,430,289,698231772,7193,0 +51629,044+Wioska+barbarzy%C5%84ska,540,282,699854484,9835,0 +51630,KONFA+TO+MARKA%2C+NARKA,285,454,698152377,10294,0 +51631,-29-,565,708,849032414,3454,0 +51632,Wiocha+II,335,350,849106316,3028,0 +51633,Wioska+barbarzy%C5%84ska+V,627,320,848958556,1877,0 +51634,Wioska+3dychy,380,682,6821136,4727,0 +51635,%23K75+0029,523,719,699728159,4987,0 +51637,005+E,306,606,699356968,4927,0 +51638,U.008,289,561,849088243,6164,0 +51639,085+rexanty1,714,545,2135129,4920,0 +51640,Wioska+barbarzy%C5%84ska,293,580,698663855,2204,0 +51641,Wioska+AlfaCentauri,306,402,849036055,30,0 +51642,Wioska15,709,579,699266530,5015,0 +51643,2.+Obj.268D,496,535,849087855,5494,0 +51644,P3Kasik,281,456,699627771,2170,0 +51645,0035,491,719,699684062,5251,0 +51646,Wioska+barbarzy%C5%84ska,712,571,2453888,10019,0 +51647,133,386,691,849099876,7904,0 +51649,--045--,576,298,542253,3152,0 +51650,030.+Gloria+Victis,288,572,848886973,7228,0 +51651,Piek%C5%82o+to+inni,645,333,848956765,6188,0 +51652,Wioska+-+006+-,534,281,848982634,1402,0 +51653,Tabasko,708,411,699785935,6918,0 +51654,010.+Vaclav+the+Prague,463,720,848896948,10345,5 +51655,MANUO+2,617,693,698353083,4446,0 +51656,KR%C3%93L+PAPI+WIELKI,723,480,698191218,6319,0 +51658,KR%C3%93L+PAPI+WIELKI,673,637,698191218,6359,0 +51659,073+invidia,548,715,849093426,5855,0 +51660,Kurnik,448,720,699603116,9553,0 +51661,Tyko+tyle,693,404,699785935,1226,0 +51662,Flap,607,301,699098531,4209,0 +51663,053+Wioska+barbarzy%C5%84ska,550,283,699854484,9835,0 +51665,Wioska+barbarzy%C5%84ska+010,564,706,6870350,4849,0 +51666,003,304,608,699356968,4745,0 +51667,%230239+colt9,438,285,1238300,6377,0 +51668,FP040,469,724,699605333,5139,0 +51669,003,297,408,8724192,6537,0 +51670,C0353,277,535,8841266,2136,0 +51671,UTAPAU,540,723,699383121,4157,0 +51673,Wioska+barbarzy%C5%84ska,418,291,698231772,5020,0 +51675,KONFA+TO+MARKA%2C+NARKA,291,441,698152377,7327,0 +51676,22.+Brugge,722,539,8976313,7337,7 +51677,Wincy94,649,333,849048734,8108,0 +51678,Wioska+BenyZSZ,277,506,699614027,989,0 +51679,New+WorldA,282,542,849084005,4123,0 +51680,Wioska+barbarzy%C5%84ska,311,612,6180190,5196,0 +51681,SPOCENI+KUZYNI,423,648,848913998,2510,0 +51682,Zzz+06+tu+nic+nie+ma,292,570,849084740,6169,0 +51683,North+K25,524,280,699146580,5620,0 +51684,P%C3%B3%C5%82nocny+Bagdad,624,313,8847546,7095,0 +51685,0026,292,416,2321390,2689,0 +51686,Wioska+barbarzy%C5%84ska,347,338,849101604,1937,0 +51687,006+Autara,671,645,849102108,9051,0 +51688,%2A001,676,361,7758085,10337,0 +51689,%23176%23,644,615,692803,9634,0 +51690,010+-+Budowanko%21,490,725,7540891,6975,0 +51691,6.F,531,277,699146580,2749,0 +51692,Wioska+barbarzy%C5%84ska,320,632,698908184,5352,0 +51694,Wioska+0012,343,652,9186126,10375,0 +51695,EMERYTOWANY+KUZYN,433,644,848913998,3120,0 +51696,shizior+006,424,639,849089459,3242,0 +51697,058+Wioska+barbarzy%C5%84ska,553,284,699854484,9835,0 +51698,C056,371,678,699383279,7135,0 +51699,%230077,570,710,1536231,5768,0 +51700,Wioska+barbarzy%C5%84ska,395,304,698231772,4607,0 +51701,Motorola+08,363,324,698806018,4432,0 +51702,Wioska+barbarzy%C5%84ska,726,490,698191218,4221,0 +51703,017,303,402,8724192,540,0 +51704,055+Wioska+barbarzy%C5%84ska,347,665,6354098,4296,0 +51706,Klatka8,627,678,6528152,5639,0 +51707,MojeDnoToWaszSzczyt,486,284,9299539,6196,0 +51708,%230151+barbarzy%C5%84ska,480,278,1238300,5246,0 +51709,15.+Lyria,698,550,8976313,9814,0 +51710,EO+EO,277,492,699697558,9154,4 +51711,Wiadro04,676,628,8677963,9048,0 +51713,001,367,679,698182935,7120,0 +51714,Avanti%21,282,489,698625834,6031,0 +51715,A-008,318,369,699406247,3801,0 +51716,Wioska+Dominator2014,380,310,698160606,554,0 +51717,Parking9,620,683,6528152,4148,0 +51718,FORTONI,673,356,3957237,10583,0 +51719,wyjazd,704,406,698462285,3526,0 +51720,Kurnik,447,716,699603116,6053,0 +51721,Wioska+barbarzy%C5%84ska,712,456,699628084,8137,0 +51723,Zzz+05+niesp%C5%82acam+d%C5%82ug%C3%B3w,293,569,849084740,5187,0 +51724,North+061,512,277,849064752,6146,0 +51725,Wioska+-+004+-,536,281,848982634,2611,0 +51726,M%C5%81ODE+OR%C5%81Y+003+zakr%C4%99cona,576,605,33900,9385,0 +51727,012,526,715,698996782,4019,0 +51729,Wioska+barbarzy%C5%84ska,632,317,8740199,8711,0 +51730,Nowy+%C5%9Bwiat+A,281,516,849084005,522,0 +51731,Nagato+-+B+001,315,371,849094586,3838,0 +51733,Psycha+Siada,329,641,8099868,9835,0 +51734,Wioska+barbarzy%C5%84ska,318,366,0,2049,0 +51735,Wioska+barbarzy%C5%84ska,713,445,699628084,7490,0 +51736,021+Osada+koczownik%C3%B3w,548,285,699854484,9899,6 +51737,Taran,313,610,6180190,6500,0 +51738,Mordownia+4,706,594,849101029,9426,0 +51739,mjrbordo,562,711,6870350,5613,0 +51740,Babidi+%234,375,319,849101962,4698,0 +51741,Wioska+barbarzy%C5%84ska,283,456,8792844,3539,0 +51742,-+1+-,691,391,8622901,1708,0 +51744,Wioska+Ma%C5%82a,277,481,960100,2125,0 +51745,0103,386,683,7085510,10216,3 +51746,%5B0297%5D,277,493,8630972,3819,0 +51747,0076,460,281,848913037,6235,0 +51748,Wioska+karlitos+MMz,279,491,849062546,4432,0 +51749,%230053,574,709,698723158,8926,0 +51750,Wioska+barbarzy%C5%84ska,722,512,6510480,4129,0 +51751,Avanti%21,279,478,698625834,6463,0 +51752,Barba,322,635,698908184,10083,0 +51754,S022,693,597,8428196,4351,0 +51755,A%23019,723,505,2065730,9797,0 +51756,fajnie+tu+jest,526,717,6116940,4584,0 +51757,Wioska+myrcin,537,277,849105071,8320,0 +51758,New+World,420,707,698152377,10056,0 +51759,Wioska+Kendal,327,611,849105072,7973,0 +51760,Wioska+barbarzy%C5%84ska,307,604,698167138,1944,0 +51761,Kurnik,444,714,699603116,6983,4 +51762,0016,681,629,6417987,2332,0 +51763,078,703,423,2135129,3725,0 +51764,Wole%C5%84cy,370,323,849027025,9537,0 +51765,Wioska+barbarzy%C5%84ska,477,284,7758085,6261,0 +51766,0109,693,385,698416970,2087,0 +51767,Orgetoryks,330,356,848998530,4786,0 +51768,-25-,569,706,849032414,4057,0 +51769,Lord+Arsey+KING,655,657,848956513,4645,0 +51770,005+Twierdza,622,689,849104328,10019,0 +51771,062+Wioska+barbarzy%C5%84ska,541,278,699854484,9835,0 +51772,%230168+darmuwa,470,281,1238300,6253,0 +51773,35.+Hannu,722,543,8976313,6224,0 +51774,POCZ%C4%84TEK,692,390,8622901,8905,0 +51775,006,291,583,698663855,5344,0 +51776,040+-+Budowanko%21,470,723,7540891,5653,0 +51777,Psycha+Siada,329,640,8099868,10019,0 +51779,022.+Eagle+Cap,712,554,1601917,10342,0 +51780,Wioska+barbarzy%C5%84ska+III,277,529,849047233,2665,0 +51781,Uaaaa,310,555,848901396,6481,0 +51782,X-Doom0,623,682,8607734,6823,0 +51783,Lord+Arsey+KING,651,659,848956513,4654,0 +51784,Wioska+Lepsi5,654,349,7440474,3045,0 +51785,Wioska+barbarzy%C5%84ska,723,465,699574408,5213,0 +51786,Wioska14.,708,579,699266530,5546,0 +51787,Flen,295,403,7259690,3334,0 +51788,Po%C5%82udniowy+Wsch%C3%B3d+004,696,612,699778867,2601,0 +51789,Wioska+0025,341,650,9186126,1195,0 +51790,Wioska+barbarzy%C5%84ska,314,386,699794765,1583,0 +51791,WIOSKA+01,340,345,698757439,7692,5 +51792,C034,372,675,699383279,8235,0 +51793,031+Legio+XI+Securis,714,572,699878150,7532,0 +51794,nowa+1,626,686,699372829,2142,0 +51795,barbarzy%C5%84ska,281,455,8792844,1600,0 +51796,024.+Fettuccine+Alfredo.,316,379,849102092,6566,0 +51797,087+jagger23,544,278,699854484,10661,0 +51798,KIELBA+117,464,583,699342219,5962,0 +51799,010,293,425,6131106,10019,0 +51800,Psycha+Siada,331,650,8099868,7401,0 +51801,HWILA+%5B5%5D,632,318,849006385,2550,0 +51802,Wioska+damiano3106,630,317,849006385,3506,0 +51803,Wioska+biosiekiery,513,724,698934729,3793,0 +51804,W51,693,396,699524362,1978,0 +51805,%5B0260%5D,280,511,8630972,5702,0 +51806,%2A020,676,370,7758085,4974,0 +51807,025.,472,722,849034882,9940,0 +51809,Wioska+barbarzy%C5%84ska,556,288,698350371,1507,0 +51810,Nowa+Baza+10,616,693,698353083,7148,0 +51811,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,534,628,8201460,10237,0 +51812,Wioska+barbarzy%C5%84ska,279,483,699846892,3112,0 +51813,%23005+New+York,316,627,849101276,3944,0 +51814,Psycha+Siada,335,643,8099868,8339,0 +51815,%234+Wioska+barbarzy%C5%84ska,632,319,849099517,7145,0 +51816,New+WorldA,277,519,849084005,2376,0 +51817,019.+t%C5%82uszczyk,694,383,2873154,10237,8 +51818,Wioska+barbarzy%C5%84ska,283,527,699425709,2967,0 +51819,Wioska+barbarzy%C5%84ska,718,452,849095599,3893,0 +51820,Wioska+barbarzy%C5%84ska,374,688,849096945,508,0 +51821,072+invidia,541,717,849093426,5832,0 +51822,C119,356,671,699383279,8781,0 +51824,009,301,607,699356968,4428,0 +51825,35.+Na+rowerek,370,571,8665783,1612,0 +51826,Lord+Arsey+KING,660,656,848956513,3414,0 +51827,North+039,513,284,849064752,8239,0 +51828,Z%C5%82oty+%C5%9Awit,590,298,699883079,10114,0 +51829,Lord+Arsey+KING,659,656,848956513,10444,0 +51830,SOKzGUMIjag%C3%B3d,638,366,849059491,9859,0 +51831,P%7C005%7C,457,713,699393742,4698,0 +51832,Wioska+Pracz+5,311,625,8916982,5765,0 +51833,Chojnik,303,600,698167138,2354,0 +51834,Wioska+barbarzy%C5%84ska,684,454,699272633,1591,0 +51835,ZZZ+.%3A%3A.+cinek3456%2F07,585,705,33900,9971,0 +51836,002,365,682,698182935,3123,0 +51837,MERHET,586,704,698215322,9951,0 +51839,.achim.,567,289,6936607,6480,0 +51841,Psycha+Siada,342,648,8099868,7951,0 +51842,NP+07,306,393,849076810,2237,0 +51843,Wioska19,334,347,699711926,5188,0 +51844,KONFA+TO+MARKA%2C+NARKA,287,458,698152377,2376,0 +51845,08+barbarzy%C5%84ska0,283,446,849018442,9811,0 +51847,004.+Funghi,318,373,849102092,8620,8 +51848,027+Legio+X+Augusta,710,570,699878150,7361,0 +51849,Lord+Arsey+KING,660,654,848956513,8990,0 +51850,Wioska+barbarzy%C5%84ska,390,695,849014922,3197,0 +51851,Aksjo+2,559,290,849099696,2019,0 +51852,0165,385,679,7085510,2706,0 +51853,KONFA+TO+MARKA%2C+NARKA,284,440,698152377,7242,0 +51855,Wioska16,333,346,699711926,8414,0 +51857,%230087,578,712,1536231,5770,0 +51858,Szlachcic,355,334,698388578,5733,0 +51859,006+Twierdza,621,689,849104328,10019,0 +51860,Wioska+Gigako,557,288,849054951,8596,0 +51861,%23116%23,643,673,692803,6079,0 +51862,007,533,724,698996782,8424,0 +51863,Wioska+barbarzy%C5%84ska,462,281,699191455,3207,0 +51864,40.+Wioska+40,288,566,849091769,7630,0 +51865,Avanti%21,284,489,698625834,7010,0 +51866,%7E%7E082%7E%7E,682,635,7829201,2772,0 +51867,%5B0261%5D,281,512,8630972,5985,0 +51868,073.+Pola,714,456,849091866,4725,0 +51869,CastAway+%23011,699,588,9314079,9818,0 +51870,Kurnik,462,719,699603116,9054,0 +51871,Wioska+barbarzy%C5%84ska,376,345,3698627,3857,0 +51872,006+JJ,324,363,9120206,7394,0 +51873,MojeDnoToWaszSzczyt,500,274,9299539,9953,0 +51874,Dzie%C5%84+dobry+wiecz%C3%B3r,471,283,699756210,9041,0 +51875,Wioska+barbarzy%C5%84ska,708,574,2453888,8127,0 +51876,013+JJ,329,363,9120206,1799,0 +51877,.1.,297,402,762975,4866,0 +51878,%5BB%5D002,417,703,9195661,9115,0 +51879,Ave+Why%21,466,650,699121671,905,0 +51880,Wioska+barbarzy%C5%84ska,712,452,699628084,8283,0 +51881,Wioska+barbarzy%C5%84ska+012,378,314,849068662,7847,0 +51882,P%C3%B3%C5%82nocny+Bagdad,620,309,8847546,4958,0 +51883,C018,546,711,698599365,6293,0 +51884,...%3A%3A181+04%3A%3A...,276,514,699641777,4613,0 +51885,Wioska+barbarzy%C5%84ska,302,604,698167138,1698,0 +51886,307,392,313,7271812,1749,0 +51887,New+WorldA,281,519,849084005,4457,0 +51888,Wioska+barbarzy%C5%84ska,409,295,698231772,7400,0 +51889,Wioska+Bochun10,322,494,7449254,6878,0 +51890,058+invidia,543,715,849093426,7195,0 +51891,Wioska+barbarzy%C5%84ska,306,566,849098688,1184,0 +51892,Wioska+barbarzy%C5%84ska,593,699,7756002,4083,0 +51893,Kastet,347,661,2725721,3451,0 +51894,Nowa+02,298,600,699321518,6868,0 +51895,Mniejsze+z%C5%82o+0096,310,381,699794765,4721,0 +51897,.achim.,487,282,6936607,5933,0 +51898,Wioska+barbarzy%C5%84ska,424,289,698231772,6291,0 +51900,301,446,290,7271812,6225,0 +51901,004,293,590,698663855,10068,0 +51902,004+Wioska+C,284,563,6240801,4524,0 +51904,Wioska+z+Pracza+9,314,622,8916982,1987,0 +51905,friendship,703,411,699785935,5840,0 +51906,Wroc%C5%82aw,407,295,3411571,4887,0 +51907,074,397,691,849099876,10113,0 +51908,EO+EO,284,503,699697558,10083,0 +51909,Wioska+barbarzy%C5%84ska,717,452,699628084,6804,0 +51910,Batalion,437,291,947923,4562,0 +51911,Wioska+barbarzy%C5%84ska,458,277,699191449,5157,0 +51912,KONFA+TO+MARKA%2C+NARKA,283,439,698152377,7491,0 +51913,BIMBER+1,450,285,6857973,5065,0 +51914,Wioska+SirCzoper,278,488,698162357,1974,0 +51915,Z%C5%82oty+%C5%9Awit,586,294,699883079,10087,0 +51916,Wioska+barbarzy%C5%84ska,409,296,698231772,7405,0 +51917,040+Twinleaf+Town,724,496,699441366,2580,0 +51918,EO+EO,275,501,699697558,10019,0 +51919,KONFA+TO+MARKA%2C+NARKA,292,429,698152377,4706,0 +51920,New+WorldA,281,532,849084005,3321,0 +51921,Manuo3,619,689,698353083,4197,0 +51922,D025,565,283,699299123,8649,0 +51923,-10.+Wygwizd%C3%B3w,379,310,698345556,5645,0 +51924,009+%7C+North,372,687,699511295,7478,0 +51925,Piek%C5%82o+to+inni,653,339,848956765,3299,0 +51926,Wioska+barbarzy%C5%84ska,387,314,849084066,2671,0 +51927,Wioska+bogdan0811,602,303,699323781,4593,0 +51928,077,718,510,7085502,4898,0 +51929,Wioska+barbarzy%C5%84ska,428,286,698231772,8135,0 +51930,002,592,703,849097370,4847,0 +51931,WB16,305,401,356642,4567,0 +51932,Wioska+%5B4%5D,724,512,699858313,833,0 +51933,Horyzont+zdarze%C5%84,542,603,7581876,10019,0 +51934,Z%C5%82oty+%C5%9Awit,594,296,699883079,9872,0 +51935,GuaGua,372,681,7085510,6332,0 +51936,XDX,616,308,699098531,6491,0 +51937,Bierut%C3%B3w,294,572,849101092,7072,0 +51938,Wioska+barbarzy%C5%84ska,377,684,849030086,4043,0 +51939,0028,310,377,2321390,1555,0 +51940,026.+Gloria+Victis,280,558,848886973,7039,0 +51941,27.+Morfeusz+4x,691,482,699804790,7270,0 +51942,KONFA+TO+MARKA%2C+NARKA,287,456,698152377,10295,9 +51943,%2A034%2A,359,388,699273451,10211,0 +51944,Wioska+barbarzy%C5%84ska,724,534,17714,4147,0 +51945,Piek%C5%82o+to+inni,653,332,848956765,4382,7 +51946,068.+Newtona,719,531,1601917,4615,0 +51947,Lipien,326,545,699265922,4578,0 +51948,Psycha+Siada,337,643,8099868,9968,0 +51949,Z.02,708,584,699737356,4157,0 +51950,066+Wioska+barbarzy%C5%84ska,541,277,699854484,9835,0 +51951,Wioska+barbarzy%C5%84ska,708,422,848902592,3266,0 +51952,050+Wioska+barbarzy%C5%84ska,549,286,699854484,9835,0 +51953,...%3A%3A181+01%3A%3A...bomb.najazd,275,513,699641777,9170,0 +51954,KUKA+VI,287,427,6127190,1401,0 +51955,Wioska+0004,344,653,9186126,10311,0 +51956,011+JJ,329,366,9120206,2757,0 +51957,New+World,409,705,698152377,10291,0 +51958,Gryfios+097,719,553,698666810,11285,0 +51959,Buzka9395,296,420,699728266,8286,0 +51960,%23%23%23147%23%23%23,591,700,698285444,10495,0 +51961,Wioska+barbarzy%C5%84ska,302,594,6180190,3047,0 +51962,Wioska+barbarzy%C5%84ska,726,494,6510480,4797,0 +51963,%23039,554,290,849064614,2086,0 +51964,Wioska+barbarzy%C5%84ska,309,381,1267913,2011,0 +51965,Wioska+barbarzy%C5%84ska,308,380,1267913,2303,0 +51966,Wioska+barbarzy%C5%84ska,713,447,699628084,4871,0 +51967,004,403,298,9283775,4196,0 +51968,Wioska+barbarzy%C5%84ska,382,522,849030226,9810,0 +51969,Nowe+Dobra+-+budowa,685,628,699759128,7535,0 +51970,008+Wioska+G,287,565,6240801,2927,0 +51971,Wiosk,283,532,699805379,1188,0 +51972,MJ16,687,378,8669398,3758,0 +51973,000,286,443,6131106,6053,0 +51974,Taka.,484,720,848999671,6187,0 +51975,%2A023%2A%2A,686,616,1205898,6665,0 +51976,Wioska+barbarzy%C5%84ska,326,628,698908184,7252,0 +51977,Gryfios+095,718,554,698666810,11460,0 +51978,Kiedy%C5%9B+Wielki+Wojownik,329,351,8632462,9117,9 +51979,071+invidia,536,716,849093426,5865,0 +51980,XDX,602,300,699098531,3239,0 +51981,006.+Quattro+formaggi,312,394,849102092,4081,0 +51982,Blanc+Lapin,526,722,849102336,6015,0 +51983,Wioska+barbarzy%C5%84ska,403,702,849014922,3480,0 +51984,KR%C3%93L+PAPI+WIELKI,723,535,698191218,6513,0 +51985,Komandos,653,664,7976264,8005,0 +51986,230+Casablanca,437,472,1497168,9761,0 +51987,Wioska+lo+2,297,407,699763225,2979,0 +51988,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,552,719,699828442,9808,0 +51989,11+Patatajnia,721,454,849101845,9489,0 +51990,Wioska003,687,385,698768565,5362,0 +51991,Wioska+6,653,347,849101945,1845,0 +51992,078+Wioska+barbarzy%C5%84ska,538,281,699854484,8136,0 +51993,Eldorado,709,587,849098724,1770,0 +51994,04Osada+koczownik%C3%B3w,364,678,699704542,9742,2 +51995,Piek%C5%82o+to+inni,644,337,848956765,5942,0 +51996,W52,689,393,699524362,2034,0 +51997,New+World,421,712,698152377,9409,0 +51998,Wygwizdowa+011,644,671,698562644,4988,0 +51999,Wioska+barbarzy%C5%84ska,725,489,699573053,7886,0 +52000,Wioska+Black+Priest,423,298,3411571,9685,0 +52001,kryniu+niebko+centrum,677,367,849105232,5426,0 +52002,81.,294,406,699763225,7638,0 +52003,019,667,642,2323859,2848,0 +52004,XDX,606,303,699098531,4064,0 +52005,Wioska+barbarzy%C5%84ska,714,554,17714,7103,0 +52006,A%23007,720,534,2065730,9797,4 +52007,gory+szare,296,410,698677650,2822,0 +52008,005,321,368,7386358,4718,0 +52009,Saran8,398,303,848937248,2248,0 +52010,.003.+Madagaskar,719,458,849095599,5907,0 +52011,%3D099%3D+Wioska+barbarzy%C5%84ska,702,594,3781794,4010,0 +52012,Kharkov,400,301,699588526,9335,0 +52013,Wioska+barbarzy%C5%84ska+009,563,714,6870350,5000,0 +52014,Wioska+DontCry,599,540,7220989,3807,0 +52015,Wioska18,333,348,699711926,5185,0 +52016,Wioska+barbarzy%C5%84ska,692,385,0,2602,0 +52017,127,382,691,849099876,8557,0 +52018,FAKE+OR+OFF,392,306,698231772,9917,0 +52019,Piek%C5%82o+to+inni,650,337,848956765,6251,0 +52020,-24-,578,708,849032414,5551,0 +52021,Trunks+Super+Saiyan+005,517,724,699054373,5496,0 +52022,New+World,425,705,698152377,4836,0 +52023,Nowa+baza+3,614,694,698353083,7350,0 +52024,Bagno+32,474,725,848883684,5688,0 +52025,.achim.,578,290,6936607,5351,0 +52026,wioska+XX,675,356,9314079,9420,1 +52027,Wioska+barbarzy%C5%84ska,327,631,698908184,8885,0 +52028,Trunks+Super+Saiyan+004,515,725,699054373,5806,0 +52029,012,307,607,699356968,6618,0 +52030,Wioska+barbarzy%C5%84ska,698,392,1715091,5026,0 +52032,0145,693,399,698416970,2788,0 +52033,Kurnik,470,718,699603116,8116,0 +52034,Glinnn,285,470,848981726,2523,0 +52035,Wioska+barbarzy%C5%84ska,717,486,699429153,3645,0 +52036,Wioska+z+Pracza+4,312,627,8916982,2748,0 +52037,Wioska+barbarzy%C5%84ska,658,349,1715091,1482,0 +52038,Z%C5%82oty+%C5%9Awit,589,300,699883079,9568,0 +52039,SIO%C5%81O,654,667,2371436,3604,0 +52040,Wioska+Zidanee0390,583,292,8609713,9176,0 +52041,BOSS+D1,352,339,849101604,4318,0 +52042,Bianco+Coniglio,525,722,849102336,9572,0 +52043,Nowa+Wie%C5%9B,369,314,849027025,5825,0 +52044,014,320,375,7386358,6799,2 +52045,101.+Wioska+martwy+dzik,722,477,7494497,3055,0 +52046,%5B0202%5D,277,502,8630972,7220,0 +52047,.achim.,486,278,6936607,8163,0 +52048,04Wioska+barbarzy%C5%84ska,363,680,699704542,9742,0 +52049,Wioska+015,695,594,7999103,612,0 +52050,Wioska+Pracz+3,311,623,8916982,7563,0 +52052,KR%C3%93L+PAPI+WIELKI,724,536,698191218,6351,0 +52053,Wioska+barbarzy%C5%84ska,323,373,0,87,0 +52054,O101,318,630,272173,7952,0 +52055,Wioska+barbarzy%C5%84ska,281,481,699846892,2362,0 +52056,Mason+Street,382,685,849105463,4771,0 +52057,Bryzgiel,300,598,1276665,5287,0 +52058,%5B0288%5D,483,275,8630972,9327,0 +52059,New+World,412,703,698152377,10137,0 +52060,043,704,402,849091105,5870,0 +52062,Wioska+20,698,593,849101162,2429,0 +52063,zawodnik,593,695,698215322,10023,2 +52064,004,293,592,698663855,8064,0 +52065,Wioska+barbarzy%C5%84ska,706,419,848902592,5386,0 +52066,kathare,537,721,873575,9961,2 +52067,Wioska,346,346,699711926,10090,0 +52068,%5BO%5Dko%C5%84,281,547,849106971,3298,0 +52070,Avanti%21,280,478,698625834,6274,0 +52071,V.+K%C5%82opoty-Stanis%C5%82awy,360,325,849101893,5244,0 +52072,Wioska+barbarzy%C5%84ska,327,634,698908184,9806,0 +52073,Wioska+barbarzy%C5%84ska,326,357,8632462,2586,0 +52074,MikolajOSK6,441,285,6857973,2557,0 +52075,Wioska+barbarzy%C5%84ska,455,714,849037407,1420,0 +52076,051,634,670,699695167,3742,0 +52077,Wyspa+002,292,564,225023,10495,0 +52078,012,611,306,699117992,2021,0 +52079,Makowa+02,388,690,849014922,3969,0 +52080,C049,356,667,699383279,7832,0 +52081,098.+Anio%C5%82ki,716,473,7494497,2978,0 +52082,Wioska+barbarzy%C5%84ska,292,577,849101771,1144,0 +52083,North+K25,524,281,699146580,3684,0 +52084,Gryfios+096,716,551,698666810,11574,2 +52085,komandos48,643,663,7976264,9113,0 +52086,020.+elli38,684,373,2873154,7182,0 +52087,O076,331,636,272173,9866,0 +52088,Wioska+skuzmi,516,727,849101102,9907,0 +52089,KR%C3%93L+PAPI+WIELKI,720,475,698191218,6000,0 +52090,Wioska+barbarzy%C5%84ska,320,635,698908184,5208,0 +52091,Wioska+002,677,359,2976468,8113,0 +52092,Wioska+wtkc,688,381,8669398,1951,0 +52093,Wioska+barbarzy%C5%84ska+15,336,343,698757439,7458,0 +52094,0028,509,500,698599365,10019,0 +52095,Nowa+04,301,598,699321518,4150,0 +52096,w+myself,601,700,699828685,1658,0 +52097,06+barbarzy%C5%84ska.,286,449,849018442,8762,0 +52098,Wioska+barbarzy%C5%84ska,712,447,699628084,4094,0 +52099,%2306%21,636,677,849101884,3446,0 +52100,Wioska+Putabarca28,697,610,6921135,3346,0 +52101,Nie+popusc,409,706,9195661,7869,0 +52102,Wioska+barbarzy%C5%84ska,433,289,698231772,9228,0 +52103,032,724,473,849091105,10160,0 +52104,016,304,612,699356968,4477,0 +52105,Z%C5%82oty+%C5%9Awit,598,299,699883079,6327,0 +52106,Z%C5%82oty+%C5%9Awit,588,298,699883079,10056,0 +52107,038.,464,721,849034882,10838,0 +52108,031,667,638,2323859,3125,0 +52109,Z%C5%82oty+%C5%9Awit,587,290,699883079,6664,0 +52110,%23K75+0031,524,719,699728159,4290,0 +52112,P%C3%B3%C5%82nocny+Bagdad,622,308,8847546,7520,0 +52113,Psycha+Siada,333,647,8099868,9968,0 +52114,Poema+del+Mar+Aquarium,374,680,7085510,4661,0 +52116,Flap,607,308,699098531,6197,0 +52118,NP+01,301,389,849076810,8047,0 +52119,New+WorldA,280,535,849084005,4228,0 +52120,W53,699,409,699524362,1833,0 +52121,%C5%9Arodowisko+miejskie,714,461,699785935,7855,7 +52122,Wioska+barbarzy%C5%84ska,392,301,698231772,4062,0 +52123,%5B818%5D+Odludzie,709,442,848985692,7215,0 +52124,Wioska+barbarzy%C5%84ska,400,296,698231772,4033,0 +52125,Wioska+barbarzy%C5%84ska,434,291,698231772,8292,0 +52126,%23K75+0034,518,722,699728159,5623,0 +52127,Wioska+barbarzy%C5%84ska,715,552,698666810,8509,0 +52128,Kurnik,468,718,699603116,9687,0 +52129,Nienack,694,397,698278542,11566,0 +52130,KR%C3%93L+PAPI+WIELKI,695,615,698191218,6368,0 +52131,Wioska+barbarzy%C5%84ska,424,297,698231772,5455,0 +52132,040+Wioska+barbarzy%C5%84ska,545,287,699854484,9835,0 +52134,X007,713,424,699722599,6718,0 +52135,Wioska+barbarzy%C5%84ska,566,707,849055425,4588,0 +52136,Wioska+marianos1994,663,353,848936229,689,0 +52137,0173,366,672,7085510,8139,0 +52138,Wioska+barbarzy%C5%84ska,710,446,699628084,7671,0 +52139,%7CD%7C+Sunfort,455,721,698147372,3809,0 +52140,029+KTW,721,453,848883237,4807,0 +52141,XDX,614,310,699098531,4915,0 +52142,Wioska+Kl0Ns,490,726,848999671,2190,0 +52143,Taka.,484,725,848999671,5735,0 +52144,Warszawa,290,415,699856962,9644,0 +52145,HWILA+%5B4%5D,630,318,849006385,2313,0 +52146,Wioska+Lord+Lord+Giza,651,342,698946155,2639,0 +52147,04Wioska+barbarzy%C5%84ska,364,682,699704542,9170,0 +52148,Madera,712,552,1601917,7404,0 +52149,Blueberry,381,683,849105463,426,0 +52150,067+Wioska+barbarzy%C5%84ska,342,657,6354098,3052,0 +52151,Szlachcic,374,317,698160606,5461,0 +52152,C0227,282,540,8841266,10160,4 +52153,%230162+darmuwa,470,282,1238300,6561,0 +52154,Wioska+barbarzy%C5%84ska,552,712,699828442,5179,0 +52155,wancki+i+gustlikk,504,278,7758085,9205,0 +52157,C.048,715,475,9188016,3556,0 +52158,0172,371,682,7085510,10216,0 +52159,KONFA+TO+MARKA%2C+NARKA,289,435,698152377,7371,0 +52161,Wioska+barbarzy%C5%84ska,336,346,849103148,4352,0 +52162,Albatros,432,293,947923,6062,0 +52163,Zaplecze+Barba+022,368,323,699796330,6494,0 +52164,wioska+psa+nie+dotyka%C4%87,684,565,849102143,6488,0 +52165,%2A008,674,365,7758085,9861,0 +52166,007,289,425,6131106,5667,0 +52167,045+Wioska+barbarzy%C5%84ska,541,282,699854484,9835,0 +52168,04Wioska+barbarzy%C5%84ska,355,674,699704542,8690,0 +52169,Wioska+barbarzy%C5%84ska,391,302,698231772,8376,0 +52171,--036--,568,294,542253,3918,0 +52172,007.+Napoletana,306,389,849102092,8827,0 +52173,B001,520,281,699485250,10078,0 +52174,0163,391,687,7085510,2656,0 +52175,Wioska+barbarzy%C5%84ska,396,698,849014922,5863,0 +52177,024,529,724,698996782,5060,0 +52178,026+Petalburg+City,719,485,699441366,11109,0 +52179,%5B0235%5D,282,504,8630972,6065,0 +52181,0095,680,378,698416970,4944,0 +52182,Po%C5%82udniowy+Wsch%C3%B3d+011,695,608,699778867,1641,0 +52183,--040--,572,291,542253,3649,0 +52184,022.+Wioska+barbarzy%C5%84ska,681,381,2873154,5829,0 +52185,%5B0206%5D,276,502,8630972,6927,0 +52186,New+WorldA,275,533,849084005,1877,0 +52187,Wioska10,624,477,848935020,4020,0 +52188,KONFA+TO+MARKA%2C+NARKA,295,416,698152377,2528,0 +52189,%2136+65+Botosanita+Mica,659,365,698361257,6224,0 +52190,Wioska+barbarzy%C5%84ska,404,702,849014922,4877,0 +52191,Osada+koczownik%C3%B3w,307,380,1267913,2871,2 +52192,Szlachcic,371,316,698160606,5360,0 +52193,Zzz+08+zaraz+si%C4%99+zacznie,290,569,849084740,6701,0 +52194,Pocz%C4%85tek,292,580,7842579,9402,1 +52196,0115,346,665,698908184,8165,9 +52197,t026,667,346,2262902,800,0 +52198,%230080,569,709,1536231,4097,0 +52199,Wioska+barbarzy%C5%84ska,374,311,3484132,5401,0 +52200,059KP,487,273,849063849,2906,0 +52201,008,402,302,9283775,2233,0 +52202,Zaplecze+Barba+8,369,327,699796330,9741,0 +52203,kww03,720,543,8976313,4321,0 +52204,144.Stradi,484,276,698365960,2234,0 +52205,Wioska+barbarzy%C5%84ska,610,302,699117992,758,0 +52206,Wioska+barbarzy%C5%84ska,395,699,849014922,5528,0 +52208,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,722,8201460,10237,0 +52209,031+Wioska+barbarzy%C5%84ska,543,286,699854484,9835,0 +52210,Wioska+barbarzy%C5%84ska,370,326,849023212,7649,0 +52211,Wioska+Zawodnika,536,633,698655859,6986,0 +52212,D01,441,717,698652014,2936,0 +52213,Monetki,482,421,699098531,8193,0 +52214,%7E%7E083%7E%7E,677,638,7829201,3850,0 +52216,Wioska02,298,416,8259895,3929,0 +52217,014,338,349,849101205,1806,0 +52218,%5B0262%5D,279,510,8630972,5702,0 +52219,X013,709,425,699722599,5944,0 +52220,t012,670,350,2262902,8196,0 +52221,07.APT,713,562,698905177,3474,0 +52222,Wioska+super+hero,309,622,699438389,4082,0 +52223,032,399,703,849099876,10495,0 +52224,P%C3%B3%C5%82nocny+Bagdad,616,306,8847546,4850,0 +52225,.achim.,569,287,6936607,5327,0 +52226,%5B0201%5D,283,495,8630972,7164,0 +52227,ORKOWI+ZAWODNICY+DOMINUJA+RYBKI,493,718,8980651,7555,4 +52228,079+hasacz,705,518,2135129,5550,0 +52229,Eden,706,410,699785935,5184,0 +52230,Wioska+barbarzy%C5%84ska,324,636,698908184,8296,0 +52231,%5B810%5D+Odludzie,713,431,848985692,7659,0 +52232,232...P%C3%93%C5%81NOC,436,287,6920960,4793,0 +52233,Wioska+gooomis,435,559,699364813,561,0 +52234,Wioska+barbarzy%C5%84ska,426,289,698231772,5560,0 +52235,091,724,506,7085502,4446,0 +52236,Nowa+Baza+11,616,694,698353083,7842,0 +52237,Witam%3A%29,701,418,849101881,10019,0 +52238,092.Stradi,438,289,698365960,9076,0 +52239,Wioska+barbarzy%C5%84ska,463,282,699863708,2198,0 +52240,azi3,458,718,849094759,2288,0 +52241,AG15,590,663,699876345,9747,0 +52242,P%C3%B3%C5%82nocny+Bagdad,620,310,8847546,7408,0 +52243,Mm01,630,326,698442418,8984,0 +52244,KONFA+TO+MARKA%2C+NARKA,280,449,698152377,7371,0 +52245,wje%C5%BCd%C5%BCam+na+dzielnie,677,628,6417987,1702,0 +52246,0075,458,279,848913037,4801,0 +52247,Kiedy%C5%9B+Wielki+Wojownik,331,356,8632462,6671,0 +52248,18.,702,402,699562182,2755,0 +52249,Wioska+barbarzy%C5%84ska,723,494,942959,4217,0 +52250,Kurnik,445,717,699603116,7548,0 +52251,Wioska+4,296,403,699763225,1788,0 +52252,041+Wioska+barbarzy%C5%84ska,546,283,699854484,9835,0 +52253,Wioska+Turystyczna+006,724,461,7588382,7092,0 +52254,%5B0162%5D,455,286,8630972,8690,0 +52255,sony911,672,645,1415009,9544,0 +52256,15.,702,401,699562182,4146,0 +52257,04Wioska+barbarzy%C5%84ska,364,677,699704542,8807,0 +52258,MojeDnoToWaszSzczyt,473,275,9299539,9624,0 +52259,Fourth,448,287,849048216,1029,0 +52260,azi4,453,716,849094759,2956,0 +52261,Pocz%C4%85tek,297,581,7842579,9598,0 +52263,04Wioska+barbarzy%C5%84ska,361,680,699704542,9747,0 +52264,067+Wioska+barbarzy%C5%84ska,537,276,699854484,9835,0 +52265,Wioska+2,298,404,699763225,1765,0 +52266,%C5%BBUBEREK+008+MENAGO.EXE,618,688,33900,7354,0 +52267,Wioska+barbarzy%C5%84ska,643,664,848987051,7881,0 +52268,021.+Eskwilin,712,553,1601917,10495,0 +52269,075.+Acrae,721,461,849091866,5018,0 +52270,Wioska+007,672,352,7226782,2937,0 +52271,Wioska+barbarzy%C5%84ska,555,712,699828442,6047,0 +52272,Piek%C5%82o+to+inni,651,340,848956765,3497,0 +52273,007+eQNares,478,572,2585846,10478,0 +52274,D006,562,286,699299123,4510,0 +52275,Werid,467,717,849004274,9585,0 +52276,aaaa,700,394,699598425,10728,0 +52277,Wioska+z+Pracza+8,311,626,8916982,243,0 +52278,Wioska+barbarzy%C5%84ska,709,557,17714,5613,0 +52280,Wyspa+030,295,573,225023,2518,0 +52281,CastAway+%23001,702,585,9314079,9815,6 +52282,083,720,511,7085502,4443,0 +52283,078+Wioska+barbarzy%C5%84ska,350,666,6354098,5394,0 +52285,%5B800%5D+Odludzie,711,434,848985692,10047,9 +52286,056+Wioska+barbarzy%C5%84ska,343,664,6354098,6946,0 +52288,Wioska+barbarzy%C5%84ska,503,719,698704189,2297,0 +52289,Wioska+Kepczyk,318,642,698908184,6821,0 +52290,Wioska+barbarzy%C5%84ska,311,386,699794765,1973,0 +52291,Wioska+kapittan,316,625,699456288,679,0 +52292,Wioska+barbarzy%C5%84ska,644,664,848987051,7667,0 +52293,U_U,351,433,699088529,3947,0 +52294,Wioska+bulkas9999333,319,633,849098993,532,0 +52295,%23%23%23148%23%23%23,602,694,698285444,10495,0 +52296,Kiedy%C5%9B+Wielki+Wojownik,327,356,8632462,2064,0 +52297,--047--,578,292,542253,1541,0 +52298,014+-+Budowanko%21,494,723,7540891,7018,0 +52299,Wioska+olko666,724,522,8541236,9570,0 +52300,Wioska+krzucha2037,722,530,8541236,9606,0 +52301,Wioska+barbarzy%C5%84ska,710,574,2453888,7727,0 +52302,Osada+koczownik%C3%B3w,704,407,8675636,9803,1 +52303,013,327,371,7386358,3586,0 +52304,%2A011,677,362,7758085,8425,0 +52305,Wioska01,297,417,8259895,5879,0 +52306,100,395,697,849099876,9450,0 +52307,Wioska+barbarzy%C5%84ska,724,478,113796,1936,0 +52308,017.+Wioska+barbarzy%C5%84ska,682,375,2873154,7367,0 +52309,Wioska+barbarzy%C5%84ska,546,720,699828442,8496,0 +52310,BOA.,311,624,699829494,6338,0 +52311,093,725,504,7085502,4223,0 +52312,082,406,697,849099876,9948,0 +52313,roksi,302,400,849089601,5432,0 +52314,%235+Wioska+barbarzy%C5%84ska,637,322,849099517,6516,0 +52315,002+Kazik,282,551,197581,8424,0 +52316,KONFA+TO+MARKA%2C+NARKA,278,449,698152377,7935,0 +52317,KONFA+TO+MARKA%2C+NARKA,279,446,698152377,9894,0 +52318,Walec,354,670,2725721,1507,0 +52319,243,387,311,7271812,3008,6 +52320,Bestleevatican+Twitch+TV,714,502,8418489,9797,0 +52321,Wioska+barbarzy%C5%84ska,379,689,849030086,6898,0 +52322,XDX,611,313,699098531,7082,0 +52323,New+World,438,711,698152377,7333,0 +52324,Tartak,712,440,849088515,5128,1 +52325,Wioska+barbarzy%C5%84ska+-,563,709,849055425,4112,0 +52326,KR%C3%93L+PAPI+WIELKI,718,521,698191218,5755,0 +52327,New+World,423,707,698152377,8988,0 +52328,backstage+2,705,402,849099696,4694,0 +52329,Ave+Why%21,547,700,699121671,827,0 +52330,Wioska+0017,339,655,9186126,7849,0 +52331,%5B0289%5D,483,276,8630972,7098,0 +52332,New+WorldA,280,541,849084005,3969,0 +52333,KONFA+TO+MARKA%2C+NARKA,296,429,698152377,3400,0 +52335,Wioska+barbarzy%C5%84ska,722,505,6510480,4696,0 +52336,wioska+barba,406,573,9167250,9904,0 +52337,xxx4,694,611,6921135,9335,0 +52338,32.+Wioska+barbarzy%C5%84ska,715,469,699804790,3224,0 +52340,C096,359,672,699383279,6562,0 +52341,039,664,649,2323859,5362,0 +52342,004,530,281,698736778,2111,0 +52343,KONFA+TO+MARKA%2C+NARKA,295,409,698152377,2507,0 +52344,Wioska+barbarzy%C5%84ska,368,326,3698627,5263,0 +52345,001,406,303,9283775,7756,0 +52346,%230155+barbarzy%C5%84ska,479,277,1238300,5038,0 +52347,New+WorldA,283,528,849084005,5073,0 +52348,BOA4,305,618,699829494,3467,0 +52349,BIMBER+3,452,283,6857973,2601,0 +52350,Maestro,713,457,699785935,8411,6 +52351,Nowa+Era,717,566,2723244,4460,0 +52352,006,289,585,698663855,5753,0 +52353,AVERSA+city,495,366,3762475,4647,0 +52354,%23003,552,280,849064614,9379,0 +52355,wie%C5%9Bmen,637,320,849094006,7681,0 +52356,Bagno+27,475,720,848883684,6396,0 +52357,Wioska+klogan,695,405,699884788,6261,0 +52358,07.GOT7,710,434,9180206,8771,5 +52359,076+invidia,543,721,849093426,6160,0 +52360,03+brutal29,638,322,6517826,2698,0 +52361,Wioska+barbarzy%C5%84ska,404,701,849014922,4252,0 +52362,Wioska+barbarzy%C5%84ska,505,717,698704189,3920,0 +52363,0108,692,392,698416970,2123,0 +52364,MORO2,482,276,848952566,1781,0 +52365,Nowa+58,712,581,698702991,5933,0 +52366,XDX,616,311,699098531,6106,0 +52367,017,397,699,849099876,10495,5 +52368,Wioska+dawszz5,284,534,849094688,1708,0 +52369,Z%C5%82oty+%C5%9Awit,591,301,699883079,7281,3 +52370,Wioska+016,669,354,7226782,10580,0 +52371,.achim.,570,288,6936607,6446,0 +52372,wioska,636,331,9291984,10144,0 +52373,%3D022%3D+Wioska+barbarzy%C5%84ska,708,565,3781794,10580,0 +52374,Wioska+barbarzy%C5%84ska,371,675,0,1818,0 +52375,X008,714,424,699722599,6514,0 +52377,KONFA+TO+MARKA%2C+NARKA,281,444,698152377,8299,0 +52378,008,665,643,2323859,8010,0 +52379,B-001,307,381,1267913,7197,0 +52380,SkalpeR3,283,499,849101674,2251,0 +52381,P%C3%B3%C5%82nocny+Bagdad,623,310,8847546,6868,0 +52382,029Sta%C5%82ka,532,717,6116940,5126,0 +52383,Wioska+barbarzy%C5%84ska,392,688,849014922,7863,0 +52384,134+%23007,625,686,2467370,5013,0 +52385,010,524,717,698996782,3869,0 +52386,001,384,401,6647535,1007,0 +52387,%23%23%23149%23%23%23,607,697,698285444,10495,0 +52388,%3F%3F%3F%3F,494,281,698489071,7454,0 +52389,Wioska+barbarzy%C5%84ska,518,280,8240677,7232,0 +52390,Wioska+Gazel699,494,724,699656989,5099,0 +52391,007,294,585,698663855,3010,0 +52392,WMA,721,475,113796,2484,0 +52393,%3D100%3D+Wioska+barbarzy%C5%84ska,701,596,3781794,3600,0 +52394,Wioska+barbarzy%C5%84ska,390,303,698231772,8269,0 +52395,076+Wioska+barbarzy%C5%84ska,347,667,6354098,6358,0 +52397,%230052,573,710,1536231,9953,0 +52398,PPF-01,521,274,1424656,9811,0 +52399,KONFA+TO+MARKA%2C+NARKA,288,453,698152377,7396,0 +52400,104,399,696,849099876,10365,0 +52401,Wioska+4,552,281,7427966,2284,0 +52402,Wioska+barbarzy%C5%84ska,704,417,699488108,4490,0 +52403,Wioska+026,667,358,7226782,4469,0 +52404,XDX,602,305,699098531,6383,0 +52405,Piek%C5%82o+to+inni,643,335,848956765,4254,0 +52406,666,277,470,849081869,12154,0 +52407,Wioska+013,668,357,7226782,2662,0 +52408,016,279,462,6131106,10160,0 +52409,Wioska+barbarzy%C5%84ska,354,672,2725721,1088,0 +52410,Piorunek1996+Wie%C5%9B+..1..,528,275,6118079,7216,0 +52411,%23%23%23150%23%23%23,596,699,698285444,10495,0 +52412,019+Frontier+Access,720,485,699441366,9906,3 +52414,D02,441,714,698652014,3422,0 +52415,New+WorldA,276,541,849084005,1954,0 +52416,komandos,672,650,7976264,4273,0 +52417,Tu+sie+pracuje,592,702,849097370,9209,0 +52418,35.+Openbar,558,288,849099696,9640,0 +52419,New+World,417,712,698152377,10041,0 +52420,Cisza,289,556,698769107,6738,0 +52422,White+Rabbit,524,724,849102336,4638,0 +52424,Wioska+barbarzy%C5%84ska,715,447,699628084,6840,0 +52427,MojeDnoToWaszSzczyt,499,281,9299539,9479,0 +52428,Wioska+barbarzy%C5%84ska,416,293,698231772,5289,0 +52430,C0354,274,519,8841266,1782,0 +52431,New+World,430,714,698152377,10294,5 +52433,Wioska9,710,575,699266530,9854,0 +52434,004,292,592,698663855,10360,0 +52435,081+Wioska+barbarzy%C5%84ska,348,668,6354098,4677,0 +52436,%230310+Majson+dar,474,284,1238300,8378,0 +52437,059+Wioska+barbarzy%C5%84ska,552,285,699854484,9835,0 +52438,0042+K55+and987+OZDR.,508,541,3613413,9841,0 +52439,28.+Attre,717,540,8976313,5859,0 +52440,Mordownia+2,703,594,849101029,9788,0 +52441,0160,388,688,7085510,3152,0 +52442,039.xxx,476,695,8612358,2677,0 +52443,Lord+Arsey+KING,654,660,848956513,5203,0 +52444,062,700,602,849095227,8321,0 +52445,komandos,664,655,7976264,4765,0 +52446,A%23046,724,538,2065730,9394,0 +52447,061.,639,681,699373599,2017,0 +52448,KWB2,470,717,9003698,3204,0 +52449,066+-+Budowanko%21,508,727,7540891,4871,0 +52450,Atlantyk,690,379,7973893,6117,0 +52451,Wioska+barbarzy%C5%84ska+%2B,563,708,849055425,3165,0 +52452,Wioska+022,673,354,7226782,6242,4 +52455,Cisza,289,553,698769107,7226,0 +52456,Wioska+barbarzy%C5%84ska,357,664,699199084,436,0 +52457,003,275,535,698353083,6558,0 +52458,Wioska+barbarzy%C5%84ska,625,689,6818593,2116,0 +52459,t013,669,350,2262902,6382,0 +52460,Kaer+Morhen,318,385,849101377,5368,0 +52461,cyklop,370,314,849068108,3015,0 +52462,New+World,410,708,698152377,10290,0 +52463,Architekci+Plac%C3%B3w+Boju,340,550,8004076,6790,0 +52464,Nowe+Dobra+-+budowa,684,627,699759128,3906,0 +52465,North+073,503,274,849064752,6350,0 +52466,035+KTW,722,454,848883237,3152,0 +52467,Bagno+11,482,717,848883684,9424,0 +52468,Gibonowo+Kolonia,280,488,849100877,1022,5 +52469,0000043Z,285,560,849089881,1337,0 +52470,Wioska+barbarzy%C5%84ska,274,506,0,6775,0 +52471,%230283+kaban1988,462,286,1238300,10178,0 +52472,Wioska,650,662,6167751,5696,0 +52473,Taka.,487,724,848999671,5815,0 +52474,Piek%C5%82o+to+inni,645,325,848956765,3780,0 +52475,Wioska+barbarzy%C5%84ska+008,377,312,849068662,6164,0 +52476,0155,369,679,7085510,4744,0 +52477,Avanti%21,275,482,698625834,6649,0 +52478,Avanti%21,273,485,698625834,6473,0 +52479,Babidi+%235,373,321,849101962,4689,0 +52480,KONFA+TO+MARKA%2C+NARKA,286,444,698152377,10291,0 +52481,M001,474,275,699208929,8948,0 +52482,Bagno,589,708,849040194,4209,7 +52483,Dzik+5,293,432,8366045,9637,0 +52484,Kiedy%C5%9B+Wielki+Wojownik,332,355,8632462,4712,0 +52485,XDX,612,312,699098531,6301,0 +52486,001+Lady+mysza89100,529,281,698736778,4438,0 +52487,01Wioska+barbarzy%C5%84ska,361,678,699443920,9761,0 +52488,Avanti%21,277,471,698625834,2832,0 +52489,%230245+colt9,440,282,1238300,5207,0 +52490,1.A,534,280,849100611,4952,0 +52491,003+Wioska+B,285,564,6240801,4529,0 +52492,New+World,408,704,698152377,9387,0 +52493,0027,310,376,2321390,2006,0 +52494,stachowo,595,293,849101409,3227,0 +52495,KR%C3%93L+PAPI+WIELKI,652,666,698191218,8272,0 +52496,007+%7C+North,387,698,699511295,7221,0 +52497,Wioska+barbarzy%C5%84ska,519,283,8240677,7281,0 +52498,-10-,582,710,849032414,9112,0 +52499,zk+potulice+krynius148,678,372,849105232,2553,0 +52500,Wioska+barbarzy%C5%84ska,371,322,3698627,5780,0 +52501,027,690,619,699099811,3420,0 +52502,002+Wioska+A,286,564,6240801,6523,0 +52505,nie+grasz+obok+mnie%3F,527,718,6116940,3911,0 +52506,Nowe+Dobra+-+budowa,681,627,699759128,6861,0 +52507,%23165%23,654,664,692803,4912,0 +52508,C0275,287,545,8841266,4563,0 +52509,241...NORTH,444,279,6920960,2339,0 +52510,069+Wioska+barbarzy%C5%84ska,540,277,699854484,8868,0 +52512,Azyl+8,631,686,849096354,2296,0 +52513,BOSS+NW,345,334,849101604,7852,0 +52514,B008,518,276,699485250,10211,0 +52515,Piek%C5%82o+to+inni,652,336,848956765,5467,0 +52516,MojeDnoToWaszSzczyt,509,274,9299539,9704,0 +52517,BOA1,308,620,699829494,6552,0 +52518,066.,717,463,849094609,2641,0 +52519,M%C5%9ACIWY+KRIS+05,344,335,698757439,10495,0 +52520,AAA,535,332,1006847,7337,0 +52521,015+Schwere+Panzer-Abteilung+503,606,357,849091899,2437,0 +52522,WOLA0000,678,363,6956104,10495,0 +52523,New+World,429,716,698152377,10292,0 +52524,New+World,406,707,698152377,10294,0 +52525,C036,354,673,699383279,9883,5 +52526,Wioska+barbarzy%C5%84ska,367,322,3698627,4102,0 +52527,%23Kresy,629,680,2665207,6295,0 +52528,Wioska+wilka+04,715,559,699878150,7479,0 +52529,Wioska+Sindbad00,415,316,698231772,5295,0 +52530,Wioska+barbarzy%C5%84ska,403,701,849014922,7973,0 +52531,034,668,646,2323859,1946,0 +52532,015+Twierdza,633,680,849104328,6158,0 +52533,KONFA+TO+MARKA%2C+NARKA,289,447,698152377,7051,0 +52534,komandos.+Ddddddd,669,651,7976264,5182,0 +52535,Piek%C5%82o+to+inni,650,331,848956765,3725,0 +52536,S03,718,474,113796,5360,0 +52537,Wioska19,623,476,848935020,1360,0 +52538,Magiczne+koszary,450,722,848935389,9809,0 +52539,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,554,721,699828442,9805,0 +52540,KONFA+TO+MARKA%2C+NARKA,281,448,698152377,7556,0 +52541,MJ14,686,375,8669398,4032,0 +52542,075+Wioska+barbarzy%C5%84ska,346,667,6354098,4124,0 +52543,MERHET,590,706,698215322,1262,0 +52544,Wioska+barbarzy%C5%84ska,366,316,3484132,6568,0 +52546,NP+06,304,393,849076810,6639,0 +52547,Wioska+0013,338,654,9186126,10375,0 +52548,R+045+%7EKurast%7E,492,728,699195358,7682,0 +52549,Wioska+barbarzy%C5%84ska,314,377,699660539,2701,0 +52550,027.,622,546,8900955,9189,0 +52551,P%C3%B3%C5%82nocny+Bagdad,614,305,8847546,7338,0 +52553,%5B0204%5D,276,498,8630972,7675,0 +52554,-1-,631,319,849105420,9464,0 +52555,015,304,615,699356968,9647,6 +52556,KONFA+TO+MARKA%2C+NARKA,292,428,698152377,4607,0 +52557,004,275,537,698353083,10280,5 +52558,.2.,297,403,762975,1812,0 +52559,Avanti%21,275,483,698625834,7465,0 +52560,%230142+Befsztyk,487,548,9272054,3143,0 +52561,%C5%BBUBEREK+101+-+jak+tak+to+tak,608,701,33900,9388,0 +52562,112+Wioska+General+Kaczor,545,277,699854484,7985,0 +52563,UTAPAU+3,543,719,699383121,557,0 +52564,04Wioska+barbarzy%C5%84ska,356,675,699704542,8090,0 +52565,Wincy94+1,648,328,849048734,8266,0 +52566,001,566,286,6925574,1857,0 +52567,Wioska+Pitter82,545,283,7427966,5075,0 +52568,001c,301,413,8259895,4590,0 +52569,z+058,547,715,699342219,10220,5 +52570,Wiocha+III,337,348,849106316,2391,0 +52571,Kurnik,442,715,699603116,6175,0 +52573,EE+011,706,573,849100149,4793,0 +52574,Alicante,648,673,747422,3357,2 +52576,Wioska+2,550,278,7427966,3167,0 +52577,057,713,563,7085502,7336,0 +52579,%230054,576,711,1536231,10495,3 +52580,--029--,572,287,542253,8815,0 +52581,C.049,716,475,9188016,4340,0 +52582,021,652,333,9148043,9740,8 +52583,xxx3,702,605,6921135,7086,0 +52584,XDX,611,309,699098531,5002,0 +52586,083,713,419,2135129,4015,0 +52587,18k%24+Grvvyq,700,601,699676005,10495,0 +52588,KONFA+TO+MARKA%2C+NARKA,282,441,698152377,7785,0 +52589,New+WorldA,282,521,849084005,4257,0 +52590,Wioska+barbarzy%C5%84ska,421,297,849102150,2807,0 +52592,47.+%C5%81ukomorze,722,541,8976313,3527,0 +52593,Psycha+Siada,330,646,8099868,10019,0 +52594,D020,560,287,699299123,4099,0 +52595,C015,540,721,698599365,3758,0 +52596,003+Twierdza,634,680,849104328,10019,0 +52597,%230238+colt9,435,285,1238300,5602,0 +52598,059+Wioska+barbarzy%C5%84ska,342,662,6354098,4084,0 +52599,Wioska+barbarzy%C5%84ska+020,595,404,6343784,8678,0 +52600,North+092,505,283,849064752,4018,0 +52601,WZ02,700,607,7142659,9695,0 +52602,Nowy+0003,299,601,849096972,1456,0 +52603,PPF-19,532,276,1424656,4253,0 +52604,Wioska+barbarzy%C5%84ska,463,281,849017820,3751,0 +52605,Wioska+kosmo1972,424,714,7499430,6057,0 +52606,Nowa+Baza+6,615,695,698353083,6575,0 +52607,P%C3%B3%C5%82nocny+Bagdad,622,307,8847546,9385,0 +52608,053+Wioska+barbarzy%C5%84ska,345,664,6354098,4059,0 +52609,Lipa,671,359,849095509,9814,0 +52610,Szlachcic,362,332,698388578,4337,0 +52611,Osada+koczownik%C3%B3w,717,547,848946700,9407,3 +52612,007,287,575,849097898,9751,0 +52613,Wiocha,336,350,849106316,6858,0 +52614,Efekty+specjalne,361,328,6416213,4708,0 +52615,04Wioska+barbarzy%C5%84ska,358,675,699704542,9351,0 +52616,013,341,348,849101205,3173,0 +52617,A%23012,723,491,2065730,9797,4 +52618,MojeDnoToWaszSzczyt,510,280,9299539,9612,0 +52619,Avanti%21,283,480,698625834,5901,0 +52621,Pocz%C4%85tek,289,581,7842579,9739,0 +52622,Wioska+barbarzy%C5%84ska+010,377,320,849068662,4224,0 +52623,Wyspa+032,291,562,225023,4411,0 +52624,t011,671,349,2262902,7975,0 +52625,Arczi997,297,516,849055181,8688,0 +52626,12.+Remont+na+%C5%9Aw.+Marcin,462,723,849092769,5331,0 +52627,024+Z,718,480,699718269,986,0 +52628,...%3A%3A181+10%3A%3A...,273,514,699641777,3268,0 +52629,E01,306,385,6301789,4805,0 +52630,Wioska+barbarzy%C5%84ska,614,688,698353083,1025,0 +52631,Wioska+saba13,368,674,3101080,638,0 +52633,o06,612,699,699189792,9744,0 +52635,Tequila,705,411,699785935,7316,0 +52636,0006+Wioska+oracz1,496,725,699656989,9818,0 +52637,Wioska+barbarzy%C5%84ska,593,705,8991696,3956,0 +52638,Wioska+%5B3%5D,723,511,699858313,2291,0 +52639,wancki+i+gustlikk,506,281,7758085,8964,0 +52640,%231+MatWa,635,321,849099517,10197,0 +52641,--030--,575,296,542253,3728,0 +52642,Wioska+barbarzy%C5%84ska+016,375,313,849068662,9246,0 +52643,R0se69,543,665,849106383,10055,0 +52644,wancki+i+gustlikk,505,282,7758085,9032,0 +52645,%24004%24+OXY,308,621,699550876,8195,0 +52646,New+World,434,712,698152377,10290,0 +52647,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,555,721,699828442,9804,0 +52648,Wioska+barbarzy%C5%84ska,703,403,699598425,3593,0 +52649,0110,374,684,7085510,7608,6 +52651,Wioska+barbarzy%C5%84ska,725,525,698191218,2250,0 +52652,Wioska+proof333,391,477,698783754,7960,0 +52653,006+-+Budowanko%21,489,722,7540891,7742,0 +52654,Szlachcic,364,316,3484132,10476,9 +52655,Wioska+barbarzy%C5%84ska,392,698,2308351,957,0 +52656,New+WorldA,279,537,849084005,1966,0 +52657,Wioska+barbarzy%C5%84ska,709,421,848902592,3288,0 +52658,Klatka9,628,678,6528152,2372,0 +52659,North+041,515,282,849064752,7114,0 +52660,Khorinis,325,642,698908184,9847,0 +52661,Flap,617,309,699098531,6012,0 +52662,Avanti%21,281,479,698625834,4942,0 +52664,Nowe+IMPERIUM+4,617,695,698353083,6139,0 +52665,CastAway+%21016,710,589,9314079,6468,0 +52666,TOLCIA+2,639,320,699868739,5955,0 +52667,045.,463,721,849034882,9990,0 +52668,%5B0186%5D,277,494,8630972,7456,0 +52669,CastAway+%23017,712,585,9314079,5842,0 +52670,Azyl+5,632,685,849096354,2181,0 +52671,KONFA+TO+MARKA%2C+NARKA,283,438,698152377,8572,0 +52672,Wioska+barbarzy%C5%84ska,410,291,3411571,2542,0 +52673,029,723,475,849091105,10160,0 +52674,065.+Noszak,720,529,1601917,5438,0 +52675,New+World,430,717,698152377,10291,0 +52676,Wioska,700,599,6921135,6074,0 +52677,000,653,342,848889850,9200,0 +52678,Wioska,516,725,849101102,5759,0 +52679,158,392,690,849099876,10495,0 +52680,C0351,276,519,8841266,2181,0 +52682,Nagato+-+B+002,316,364,849094586,4018,0 +52683,Wioska+barbarzy%C5%84ska,327,629,698908184,6843,0 +52684,Wioska+barbarzy%C5%84ska,422,286,698231772,5160,0 +52685,0077,460,280,848913037,4312,0 +52686,Wioska+barbarzy%C5%84ska,464,278,699308637,2507,0 +52688,Op+Konfederacja,467,279,848915730,3391,0 +52689,Dzik+4,295,425,8366045,7988,0 +52690,NP+08,306,394,849076810,3124,0 +52692,Wioska+barbarzy%C5%84ska+015,386,312,849068662,2871,0 +52693,W00,324,641,698908184,7754,0 +52694,WOLA0003,682,363,6956104,5348,0 +52695,New+World,429,708,698152377,10291,0 +52696,%5B0263%5D,279,512,8630972,5517,0 +52697,%2A021,674,369,7758085,5934,0 +52698,005,293,586,698663855,8893,0 +52699,%23034%23,638,674,692803,9761,4 +52700,%5B0290%5D,483,274,8630972,4823,0 +52701,Wioska+barbarzy%C5%84ska,380,689,849030086,5926,0 +52702,C0286,281,548,8841266,4087,0 +52703,Piek%C5%82o+to+inni,647,332,848956765,4538,0 +52704,Wioska+barbarzy%C5%84ska,555,711,699828442,5595,0 +52705,-09-,583,709,849032414,9472,0 +52706,P1Kasik,277,452,699627771,7343,0 +52707,Wioska+barbarzy%C5%84ska,388,303,698231772,4680,0 +52708,Wioska+Sir+dziadekk19,612,695,698353083,787,0 +52709,001,279,458,699844314,3325,0 +52710,Wioska+barbarzy%C5%84ska,380,688,849030086,3776,0 +52711,%5B0178%5D,455,281,8630972,8538,0 +52712,Wioska+barbarzy%C5%84ska,719,542,1601917,3126,0 +52713,Wioska+1,295,407,699763225,5849,0 +52714,016,532,726,698996782,4502,0 +52716,Kurnik,443,714,699603116,4158,0 +52717,Piek%C5%82o+to+inni,648,329,848956765,5368,0 +52718,Gryfios+094,720,545,698666810,11365,2 +52719,Po%C5%82udniowy+Wsch%C3%B3d+008,695,610,699778867,1773,0 +52720,KO%C5%81O,656,664,2371436,2809,0 +52721,%23298+C,508,725,9037756,4190,0 +52722,0000028Z,289,560,849089881,9422,0 +52723,New+World,426,706,698152377,10291,0 +52724,010+%7C+North,383,694,699511295,4187,0 +52725,BRAWO+%5B01%5D,629,321,849006385,1840,0 +52726,Wioska+Kostek33,713,449,849095599,3348,0 +52727,U.002,288,564,849088243,8209,0 +52728,Wioska+barbarzy%C5%84ska,725,481,699429153,4906,0 +52729,Wioska+barbarzy%C5%84ska,420,292,698231772,5643,0 +52730,%2136+55+Negostina,657,359,698361257,4956,0 +52731,Wioska+barbarzy%C5%84ska,373,313,698160606,6930,0 +52733,Szlachcic,361,330,698388578,4804,0 +52734,000+Plutosea,317,561,9280477,8579,0 +52735,-01-,580,705,849032414,9472,0 +52736,Wioska+RROO,389,305,849084066,7735,0 +52737,006,469,274,699562874,4351,0 +52738,A%23011,724,492,2065730,9797,4 +52739,MojeDnoToWaszSzczyt,506,276,9299539,9812,0 +52741,Kiedy%C5%9B+Wielki+Wojownik,333,353,8632462,4679,0 +52742,0003+Osada+koczownik%C3%B3w,505,724,699656989,9814,8 +52743,-19-,579,706,849032414,5693,0 +52744,024.+Wioska+barbarzy%C5%84ska,683,369,2873154,5499,0 +52745,Wschodnia+Stra%C5%BCnica,711,437,849101378,9119,0 +52746,Wioska+barbarzy%C5%84ska,370,686,849096945,1314,0 +52747,TYLOS,559,714,6299408,8928,0 +52748,Wioska+barbarzy%C5%84ska,630,322,849102068,2582,0 +52749,jlkllklll,665,343,7646152,6845,0 +52750,Psycha+Siada,335,649,8099868,9835,0 +52751,Z%C5%82oty+%C5%9Awit,585,292,699883079,4670,0 +52752,Avanti%21,273,486,698625834,6458,0 +52753,%23%23%23151%23%23%23,580,681,698285444,10495,0 +52754,Wawel,324,355,849098731,3263,0 +52755,Wioska+b,281,530,699805379,1254,0 +52756,New+World,421,714,698152377,10291,0 +52757,wy...m,597,699,699828685,4453,0 +52758,Wioska+barbarzy%C5%84ska,715,550,698666810,11284,0 +52759,0009,573,707,698723158,5730,0 +52761,%3DSAwars%3D02%3D,565,281,849106420,6574,0 +52763,066.+Nebo,713,546,1601917,5436,0 +52764,Piek%C5%82o+to+inni,657,342,848956765,2430,0 +52765,%230086,576,713,1536231,6168,0 +52766,Wioska+barbarzy%C5%84ska,703,407,8459255,4328,0 +52767,032+Legio+IX+Tempestas,713,579,699878150,1770,0 +52768,Wioska+barbarzy%C5%84ska,274,532,8841266,1211,0 +52770,Piek%C5%82o+to+inni,644,331,848956765,4352,0 +52771,Wioska+barbarzy%C5%84ska,310,609,6180190,5415,0 +52772,UTAPAU+2,542,722,699383121,405,0 +52773,Wioska+barbarzy%C5%84ska,379,307,698160606,1024,0 +52774,%C5%BByleta,681,360,699875213,2412,0 +52775,%2A012,676,364,7758085,8368,0 +52776,PIROTECHNIK+008,349,341,849101083,2424,0 +52777,9.P,461,725,699777372,4870,0 +52778,0156,366,680,7085510,3735,0 +52779,BOSS+N,353,336,849101604,6080,0 +52780,Wioska+barbarzy%C5%84ska,535,283,8240677,6403,0 +52782,Wioska+barbarzy%C5%84ska,400,300,698231772,3462,0 +52783,052.,640,670,699373599,4277,0 +52784,Lord+Arsey+KING,508,527,848956513,8362,0 +52785,Osada+koczownik%C3%B3w,278,519,7530708,2589,7 +52786,0125,696,387,698416970,528,0 +52787,KONFA+TO+MARKA%2C+NARKA,292,435,698152377,10297,0 +52788,Wioska+janusz6161,465,282,699863708,6967,0 +52789,%C5%BBUBEREK+004,613,686,33900,8784,7 +52790,159,389,691,849099876,8278,0 +52791,Wioska+barbarzy%C5%84ska,380,687,849030086,4415,0 +52793,Z%C5%82oty+%C5%9Awit,593,295,699883079,9921,0 +52794,37.,350,581,3990066,1363,0 +52795,KR%C3%93L+PAPI+WIELKI,670,644,698191218,4922,0 +52796,Wioska+barbarzy%C5%84ska,724,474,113796,1023,0 +52797,%230082,574,715,1536231,4076,0 +52798,11.+Porsche,463,724,849100262,5775,0 +52799,Osada+koczownik%C3%B3w,344,344,698817235,4660,7 +52800,Wioska+barbarzy%C5%84ska,394,516,698290577,1138,0 +52801,030+VFF+Wioska+barbarzy%C5%84ska,320,365,3108144,1957,0 +52802,Wioska+barbarzy%C5%84ska,326,637,698908184,9804,0 +52803,%230157+barbarzy%C5%84ska,480,275,1238300,5901,0 +52804,%3DSAwars%3D01%3D,565,282,849106420,8512,0 +52805,019+-+Budowanko%21,484,727,7540891,6795,0 +52806,Avanti%21,276,482,698625834,6622,0 +52807,066+Wioska+barbarzy%C5%84ska,340,661,6354098,3321,0 +52808,183,410,700,849099876,9968,2 +52809,001,699,406,849085371,9002,0 +52810,K42+ADAMUS+018,284,425,6212605,4658,0 +52811,%C5%BBUBRAWKA+013,606,625,33900,5581,0 +52812,%5B0291%5D,279,505,8630972,9357,0 +52813,%5B0160%5D,452,285,8630972,8816,0 +52814,wioska+prezesa,304,400,849089601,2295,0 +52815,Piek%C5%82o+to+inni,645,324,848956765,3823,0 +52817,Domek+Miniuka+02,480,726,848999671,4785,0 +52818,New+WorldA,283,525,849084005,2094,0 +52819,Wioska+barbarzy%C5%84ska,670,639,698191218,4545,0 +52820,0020+Wioska+piratwoj,492,725,699656989,9309,0 +52821,New+World,415,708,698152377,5463,0 +52822,Wioska+barbarzy%C5%84ska,395,693,849014922,2901,0 +52823,%5B813%5D+Odludzie,712,430,848985692,6654,0 +52824,Raskipek,349,339,849021566,1636,0 +52825,Hacperek,361,329,698906190,5128,0 +52826,010,304,610,699356968,4727,0 +52827,%230053,579,714,1536231,6534,0 +52828,Kapitol_03,505,723,606407,8082,0 +52829,sh05,512,278,7064954,4264,0 +52830,%23155%23,656,666,692803,6548,0 +52831,komandos,662,651,7976264,4247,0 +52832,3.Bristol,593,700,698215322,9949,9 +52833,027,726,467,849091105,9922,0 +52834,FP0001%2C5,469,723,699605333,10838,0 +52835,WZ04,701,605,7142659,5553,0 +52836,CastAway+%23013,705,588,9314079,4251,0 +52838,Wioska+SirPatryk22,563,713,6870350,8856,0 +52839,W01,319,638,698908184,5208,0 +52840,kww01,722,545,8976313,5318,0 +52842,Gryfios+099,720,552,698666810,11876,0 +52843,036.+HiiimsNest,684,369,2873154,4290,0 +52844,North+090,601,296,849064752,3855,0 +52845,Wioska+barbarzy%C5%84ska,274,503,0,1721,0 +52846,Nie+wiesz+w+co+si%C4%99+pchasz+%3AD,273,508,849105417,2002,0 +52847,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,553,720,699828442,9806,0 +52848,019,300,478,2418364,1667,0 +52849,Psycha+Siada,334,650,8099868,9244,0 +52850,Piek%C5%82o+to+inni,639,327,848956765,4375,0 +52851,B005,521,278,699485250,8246,0 +52852,Mordownia+6,705,595,849101029,6340,0 +52854,Wioska+barbarzy%C5%84ska,301,599,698167138,1695,0 +52855,023+Bluethorn+City,722,484,699441366,8350,0 +52856,Wioska+barbarzy%C5%84ska,725,490,698191218,3791,0 +52857,Psycha+Siada,332,651,8099868,9835,0 +52858,FP039,479,725,699605333,5143,0 +52859,Wioska+-+002+-,533,279,848982634,2453,0 +52860,067.,717,465,849094609,3387,0 +52862,komandos,668,652,7976264,4022,0 +52863,%C5%81%C3%B3d%C5%BA,535,657,529552,12154,0 +52864,X011,711,425,699722599,6249,0 +52865,Dalej+nic,691,610,849101652,9528,0 +52866,Grzejdas+1,698,387,849057764,9955,0 +52867,Zaplecze+Barba+023,358,329,699796330,5859,0 +52868,K33,311,389,699794765,2454,7 +52869,Wioska+barbarzy%C5%84ska,715,537,848946700,2158,0 +52870,Avanti%21,275,492,698625834,5547,0 +52871,083,367,546,6853693,10495,0 +52872,Wioska+barbarzy%C5%84ska,371,311,3484132,5960,0 +52873,Po%C5%82udniowy+Wsch%C3%B3d+009,694,607,699778867,1533,0 +52874,.achim.,650,329,6936607,4046,0 +52875,nasza+plemie.rezerw.,678,371,849105232,1079,0 +52876,%7B54%7D+Siemirowice,373,688,849096945,873,0 +52877,Wioska+barbarzy%C5%84ska,380,307,195249,2572,0 +52878,022+Z,728,499,699718269,2578,0 +52879,Szlachcic,372,317,698160606,9509,0 +52880,Psycha+Siada,334,653,8099868,9835,0 +52882,New+World,412,707,698152377,10291,0 +52883,Bekas,431,285,947923,5454,0 +52884,Smrodowo,715,433,849102480,8169,8 +52885,019+%7C+North,372,686,699511295,1918,0 +52886,.achim.,567,285,6936607,3979,0 +52887,Plaza+de+Santa+Ana,375,679,7085510,3030,0 +52888,No.28,474,718,698826986,780,0 +52889,P%C3%B3%C5%82nocny+Bagdad,623,312,8847546,7017,0 +52890,Z%C5%82oty+%C5%9Awit,586,302,699883079,8485,0 +52891,Magiczne+koszary,447,722,848935389,9809,0 +52893,B007,523,278,699485250,9211,0 +52894,Piek%C5%82o+to+inni,655,335,848956765,3210,0 +52895,Wioska+barbarzy%C5%84ska,415,290,698231772,6991,0 +52896,%3D102%3D+Wioska+barbarzy%C5%84ska,705,597,3781794,1575,0 +52897,kamilkaze135+%2314,687,387,699705601,4286,0 +52898,Cisza,282,554,698769107,2959,0 +52899,013+Twierdza,632,680,849104328,8550,0 +52900,A%23013,721,515,2065730,9797,8 +52902,006+Wioska+E,281,565,6240801,3339,0 +52903,XDX,610,305,699098531,4313,0 +52905,Wioska+barbarzy%C5%84ska,692,380,7973893,6760,0 +52907,A-2,672,359,849095509,5483,0 +52908,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,552,721,699828442,9805,0 +52909,Wioska+niki63,488,722,2730335,6828,0 +52910,Psycha+Siada,334,654,8099868,9046,0 +52911,nowe,626,688,699372829,1616,0 +52912,028+KTW,719,439,848883237,4358,0 +52913,29.+Zangwebar,717,541,8976313,5563,0 +52914,MojeDnoToWaszSzczyt,489,273,9299539,4952,0 +52915,KONFA+TO+MARKA%2C+NARKA,293,416,698152377,2313,0 +52916,KONFA+TO+MARKA%2C+NARKA,278,450,698152377,4619,0 +52917,Kurnik,443,713,699603116,5011,0 +52918,065,519,386,698739350,5051,0 +52919,Wioska+LordFrotto,562,332,849106785,7253,0 +52920,014,304,403,8724192,848,0 +52921,XDX,615,311,699098531,3520,0 +52922,104+Wioska,540,278,699854484,9899,0 +52923,Psycha+Siada,332,650,8099868,9835,0 +52924,%3D103%3D+Wioska+barbarzy%C5%84ska,702,598,3781794,2688,0 +52925,001+%C5%BBelazna+Twierdza,550,723,8015775,9707,0 +52926,Wioska+barbarzy%C5%84ska+014,385,310,849068662,2922,0 +52927,Wioska+barbarzy%C5%84ska,705,419,848902592,7712,0 +52928,21.+Wioska+21,279,561,849091769,4267,0 +52929,%3D104%3D+Wioska+barbarzy%C5%84ska,708,575,3781794,3359,0 +52930,Wioska+HENRYK321,415,299,849089654,1116,0 +52931,Wioska+barbarzy%C5%84ska,396,701,849014922,6702,0 +52932,Zata%C5%84czymy+Poloneza+%3B%5D,493,272,848918262,7957,0 +52933,KONFA+TO+MARKA%2C+NARKA,282,436,698152377,7353,0 +52934,34.+Ebbing,718,539,8976313,6503,0 +52935,013,307,399,8724192,747,0 +52936,New+World,278,509,849084005,6333,0 +52937,Kurnik,448,718,699603116,9463,0 +52938,Wioska+Zorro+028,689,611,849080702,7417,8 +52939,wy...,602,704,699828685,7406,0 +52940,Wioska+grek159,296,592,1646837,2492,0 +52941,Wioska+barbarzy%C5%84ska,325,360,0,948,0 +52942,Kurnik,453,719,699603116,8680,0 +52943,Beyaz+Tavsan,525,725,849102336,3899,0 +52944,P2Kasik,277,450,699627771,1873,5 +52945,North+023,511,273,849064752,7963,0 +52946,-02-,579,289,849112029,2593,0 +52947,0000031Z,279,555,849089881,5799,0 +52948,Po%C5%82udniowy+Wsch%C3%B3d+012,690,610,699778867,1958,0 +52949,Wioska+Maliniak77,635,336,7428666,4696,0 +52950,Wioska+barbarzy%C5%84ska,409,298,698231772,8382,0 +52951,Wiocha+8,557,722,849045675,3782,0 +52953,Wioska+0020,341,651,9186126,7836,0 +52954,Avanti%21,278,476,698625834,5919,0 +52955,Wioska+barbarzy%C5%84ska+13,337,342,698757439,7130,0 +52956,%3D105%3D+Wioska+barbarzy%C5%84ska,707,591,3781794,3164,0 +52957,Nowe+Dobra+-+budowa,690,624,699759128,5898,0 +52958,Kapitol_06,503,724,606407,5834,0 +52959,KONFA+TO+MARKA%2C+NARKA,286,445,698152377,10300,0 +52960,jeziora+dlugie,297,411,698677650,1923,0 +52961,Wioska+barbarzy%C5%84ska,550,721,699828442,9744,0 +52962,026,467,725,8268010,5843,0 +52963,BRAWO+%5B02%5D,630,320,849006385,1782,0 +52964,%7CD%7C+IS,458,725,698147372,2583,0 +52965,%23038,557,286,849064614,2366,0 +52966,Wioska+barbarzy%C5%84ska,661,338,699072129,4363,0 +52967,Wioska+barbarzy%C5%84ska+004,379,316,849068662,9414,0 +52968,Psycha+Siada,325,645,8099868,9138,0 +52969,R+043,501,720,699195358,4108,0 +52970,002b,299,409,8259895,3860,0 +52971,Wioska5,705,580,699266530,9242,0 +52972,017+Twierdza,633,679,849104328,5423,0 +52973,.7.,699,400,699562182,5848,1 +52974,Podzamcze,299,603,1276665,2432,0 +52975,%5B0203%5D,278,500,8630972,6947,0 +52976,024+VFF+IJN+Nagato,315,367,3108144,5837,8 +52977,Z01,704,602,3986807,1298,0 +52978,K33,311,380,699794765,2561,0 +52979,Gubernia+03+Barbarzy%C5%84ska,368,313,849107532,1829,0 +52980,Wioska+barbarzy%C5%84ska,429,288,698231772,4585,0 +52981,%3D117%3D+Ramboq123,711,575,3781794,4935,0 +52982,Zygfryd,379,691,849030086,7254,0 +52983,%23018+NOWE+IMPERIUM+STRONG,617,696,698353083,10292,4 +52984,Wioska+Vi-vali,523,272,6118079,3890,0 +52985,Wioska+029,668,359,7226782,3801,0 +52986,KONFA+TO+MARKA%2C+NARKA,287,423,698152377,2688,0 +52987,Wioska+barbarzy%C5%84ska,649,663,848987051,7402,0 +52988,PPF-23,533,273,1424656,3051,0 +52989,WIOSKA+03,348,329,698757439,9891,0 +52990,034,684,624,699099811,3595,0 +52991,Wioska+Kiubi5,710,586,3692413,4477,0 +52992,%5BB%5D004,416,702,9195661,2357,0 +52993,037+KTW,720,448,848883237,2824,0 +52994,024,287,417,6131106,2504,0 +52995,Wioska+barbarzy%C5%84ska,448,277,699191449,1867,0 +52996,%230246+colt9,432,283,1238300,5342,0 +52997,Wioska+a3,431,282,6343784,2855,0 +52998,K42+ADAMUS+009,286,431,6212605,8309,0 +52999,C-004,325,361,699406247,3608,0 +53000,Bagno+14,480,718,848883684,8374,0 +53001,Ghostmane,720,445,848896434,5912,0 +53002,Wioska+barbarzy%C5%84ska,293,576,849101771,2249,0 +53003,009,524,715,698996782,10237,0 +53004,Wioska+barbarzy%C5%84ska,659,336,849111196,5805,0 +53005,XDX,615,310,699098531,6356,0 +53006,8.P,458,723,699777372,5099,0 +53007,%3F%3F%3F%3F,480,280,698489071,5705,0 +53008,Z%C5%82oty+%C5%9Awit,585,297,699883079,6814,0 +53009,Wioska+barbarzy%C5%84ska,314,628,698908184,5463,0 +53010,%5B0188%5D,291,498,8630972,6711,0 +53012,Bilbao,645,671,747422,2540,0 +53013,olchowa,589,702,6870350,6312,0 +53014,wioska+XVI,680,377,698635863,6398,0 +53015,058+Osada+koczownik%C3%B3w,342,663,6354098,4541,7 +53017,Wioska+barbarzy%C5%84ska,725,470,699574408,4021,0 +53018,02+Mario+76,636,325,6517826,3065,0 +53019,%C5%9Aw181%2A002,661,343,959179,4351,0 +53020,008,524,714,698996782,10409,0 +53021,Flap,612,301,699098531,7183,0 +53022,MojeDnoToWaszSzczyt,494,276,9299539,9949,0 +53023,Wioska+barbarzy%C5%84ska,369,317,8772425,2620,0 +53024,Wioska+barbarzy%C5%84ska+14,337,339,698757439,6509,0 +53025,Wioska+barbarzy%C5%84ska,359,327,6416213,1192,0 +53026,Wioska+049,701,606,848971079,9761,0 +53027,000+Dioda,607,504,849095240,9260,0 +53028,Wioska+barbarzy%C5%84ska,725,509,6510480,4708,0 +53029,Wioska+005,671,352,7226782,5147,0 +53030,131,386,698,849099876,9366,0 +53031,Wioska+barbarzy%C5%84ska,727,493,698191218,4026,0 +53032,128,381,691,849099876,9367,0 +53033,Inia+City,298,413,849104818,4244,0 +53034,002,280,456,699844314,2301,0 +53035,M002,475,275,699208929,7676,0 +53036,0146,367,675,7085510,5306,0 +53037,Wioska+barbarzy%C5%84ska,326,636,698908184,9762,0 +53038,MASZERUJ+ALBO+GI%C5%83+02,343,338,698757439,10495,0 +53039,Piek%C5%82o+to+inni,640,331,848956765,4194,0 +53041,KONFA+TO+MARKA%2C+NARKA,288,414,698152377,2556,0 +53042,Wioska+barbarzy%C5%84ska,691,385,698702991,3283,0 +53043,.achim.,567,287,6936607,3703,0 +53044,Psycha+Siada,330,641,8099868,9835,7 +53045,0402,573,714,698659980,9811,0 +53046,Piek%C5%82o+to+inni,649,335,848956765,5355,0 +53047,Wioska+Fermer,292,571,849105408,2238,0 +53048,047,667,651,2323859,1725,0 +53049,Wywia%C5%82o+daleko,710,416,699785935,4525,0 +53050,WOLA0004,681,361,6956104,4920,0 +53051,kathare,534,718,873575,9960,0 +53052,Wioska+008,673,350,7226782,3620,0 +53053,wy...,601,704,699828685,8882,0 +53054,Osada+koczownik%C3%B3w,368,321,3698627,5561,7 +53055,003,279,456,699844314,2261,0 +53056,%230066,573,715,1536231,5279,0 +53057,%5BS%5Dzczupak,276,548,849106971,6402,0 +53058,Lord+Arsey+KING,655,658,848956513,4699,0 +53059,031+Wioska,690,387,699671454,2015,0 +53060,052,695,619,699099811,2529,0 +53061,027+Rustboro+City,727,488,699441366,11109,0 +53062,Kapitol_07,502,722,606407,6049,0 +53063,011+Garkonia,672,640,849102108,1544,0 +53064,CastAway+%21019,710,591,9314079,6163,0 +53065,A-4,672,361,849095509,2494,0 +53066,006,327,644,8752714,2721,0 +53067,%23Kresy,628,686,2665207,2255,0 +53068,KONFA+TO+MARKA%2C+NARKA,283,441,698152377,8571,0 +53069,053,693,618,699099811,1849,0 +53070,026%C5%9Anieg,470,720,698620694,5319,0 +53071,o010,609,699,699189792,7269,0 +53072,242...NORTH,444,282,6920960,3219,0 +53073,%230071,572,714,1536231,4351,0 +53075,Wioska+barbarzy%C5%84ska,320,631,698908184,5357,0 +53076,Wioska+barbarzy%C5%84ska,322,363,0,1142,0 +53077,Wioska+barbarzy%C5%84ska,538,726,6116940,5441,0 +53078,Wioska,284,575,849097123,8026,0 +53079,Wioska24,332,350,699711926,4701,0 +53080,0452,565,710,698659980,9398,0 +53081,029,400,706,849099876,10495,0 +53082,006,664,340,849020094,5225,0 +53083,Orgetoryks,329,354,848998530,3659,0 +53084,003,536,722,698996782,5480,0 +53085,Wiocha,690,376,699803189,2356,0 +53086,bagienko_02,567,281,849093353,5102,0 +53087,_002_,419,291,9283142,6535,0 +53088,BOA3,310,620,699829494,4855,7 +53089,mija,303,396,849089601,1307,0 +53090,Amogus,724,537,17714,1351,0 +53092,C0287,279,539,8841266,4476,0 +53093,Wioska+barbarzy%C5%84ska,298,605,699604515,562,0 +53094,Nowe+Dobra+-+budowa,689,627,699759128,5334,0 +53095,Wioska+barbarzy%C5%84ska,336,659,6910361,1070,0 +53096,KR%C3%93L+PAPI+WIELKI,725,517,698191218,6374,0 +53097,.achim.,488,278,6936607,9324,9 +53098,Piek%C5%82o+to+inni,651,327,848956765,5099,0 +53099,Wioska+barbarzy%C5%84ska,724,532,17714,4466,0 +53100,Winterhome.031,513,312,8400180,10154,0 +53101,Kuzyn+B%C5%82a%C5%BCej,580,715,849098628,6049,0 +53102,komandos,663,652,7976264,4202,0 +53103,030+KTW,724,452,848883237,3570,0 +53104,3.Londyn,579,704,698215322,9974,8 +53105,wwwb,598,707,699828685,3393,0 +53106,Taran,313,619,6180190,8414,0 +53107,Nowe+IMPERIUM+1,617,686,698353083,3713,0 +53108,0150,703,601,699429153,8818,0 +53109,002,533,719,698996782,10237,0 +53110,azi5,461,717,849094759,2129,0 +53111,egon,440,567,8438707,7277,0 +53112,%2A204%2A,291,407,699273451,10042,0 +53113,Wioska+barbarzy%C5%84ska,717,458,849095599,2872,0 +53114,Piek%C5%82o+to+inni,648,331,848956765,5347,0 +53115,Zaplecze+Barba+027,356,332,699796330,5329,0 +53116,071+Wioska+barbarzy%C5%84ska,540,276,699854484,9605,0 +53117,210,397,296,698365960,8526,0 +53118,C0310,279,536,8841266,3644,0 +53119,%5B829%5D+Odludzie,720,435,848985692,6237,0 +53120,Wioska+barbarzy%C5%84ska,552,722,699828442,9697,0 +53121,Chile,724,542,848946700,6448,0 +53122,063+Wioska+barbarzy%C5%84ska,548,279,699854484,9835,0 +53123,WZ01,700,606,7142659,10362,0 +53124,Zaplecze+drewniane+3,369,323,699796330,9744,1 +53125,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,551,718,699828442,9805,0 +53126,North+062,539,275,849064752,5430,0 +53127,M%C5%9ACIWY+KRIS+02,343,335,698757439,10495,3 +53128,Wioska+Wojka,584,288,8609713,5880,0 +53129,B018,625,319,8740199,1950,0 +53130,%23004,550,277,849064614,9248,0 +53131,055.,639,674,699373599,3127,0 +53132,Wioska+Gregor20-90,514,721,698934729,6606,0 +53133,B031,632,314,8740199,10227,8 +53134,Wioska+barbarzy%C5%84ska,306,382,1267913,4946,0 +53135,%23K75+0021,521,718,699728159,4003,0 +53136,C0233,282,537,8841266,7761,0 +53137,181,388,689,849099876,10160,0 +53138,z+Wioska+barbarzy%C5%84ska+15,358,362,3909522,6002,0 +53139,4.D,532,277,699146580,1623,0 +53140,Wioska+barbarzy%C5%84ska,435,628,6910361,4010,0 +53141,Mordownia+7,705,596,849101029,6853,0 +53142,Wioska+Grucha125,285,574,498483,8467,0 +53143,Wioska+b,516,726,849101102,7441,0 +53144,Wioska+barbarzy%C5%84ska,698,395,699598425,4369,0 +53145,Lord+Arsey+KING,659,650,848956513,7526,0 +53146,0015,468,726,699656989,7967,0 +53147,Wioska+barbarzy%C5%84ska,312,374,699660539,1763,0 +53148,Avanti%21,275,472,698625834,2783,0 +53149,%24002%24+MSI,303,623,699550876,9828,0 +53150,011,606,305,699117992,2935,0 +53151,A%23033,719,528,2065730,9797,2 +53152,004+maniu%C5%9B,284,552,197581,6970,0 +53153,026+Wioska+barbarzy%C5%84ska,544,284,699854484,10068,0 +53155,080+Wioska+barbarzy%C5%84ska,347,668,6354098,4415,0 +53156,New+World,431,715,698152377,4083,0 +53157,WZ03,700,605,7142659,7842,0 +53158,Wioska+barbarzy%C5%84ska,414,295,698231772,6576,0 +53159,Wioska+%5B1%5D,724,511,699858313,6542,0 +53160,%3F%3F%3F%3F,472,274,698489071,4696,0 +53161,a+Kraken121,563,718,849038985,2059,0 +53162,Avanti%21,276,471,698625834,4417,0 +53163,011,284,424,6131106,7614,0 +53164,C0282,281,543,8841266,4499,0 +53165,C0239,272,524,8841266,10495,1 +53166,Wioska+barbarzy%C5%84ska+05,341,336,698757439,10481,0 +53167,Psycha+Siada,332,641,8099868,8564,0 +53168,Wioska+LOLA1982,502,279,2569868,1238,0 +53169,Psycha+Siada,333,653,8099868,9277,0 +53170,Wioska+barbarzy%C5%84ska,277,457,699213622,3696,0 +53171,%2A024%2At,683,624,1205898,7815,0 +53172,Avanti%21,274,480,698625834,6239,0 +53173,Wioska+barbarzy%C5%84ska,661,337,699072129,4807,0 +53174,Nowe+Dobra+-+budowa,686,627,699759128,6166,0 +53175,SALEM,293,401,7259690,1292,0 +53176,Wioska+005,315,378,699424741,4705,0 +53177,%5B819%5D+Odludzie,710,441,848985692,6732,0 +53178,Wioska+barbarzy%C5%84ska,276,464,699213622,4700,0 +53179,--039--,573,288,542253,5736,0 +53180,Wioska+barbarzy%C5%84ska,413,292,698231772,7943,0 +53181,26.+Maecht,724,547,8976313,9875,0 +53182,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,538,719,8201460,4543,0 +53184,-006-,723,499,7418168,8839,0 +53185,C0295,274,530,8841266,4249,0 +53186,Wiadro19,675,631,8677963,2581,0 +53187,NP+05,305,392,849076810,4324,0 +53188,Kobylany,588,701,699837483,2728,0 +53189,KONFA+TO+MARKA%2C+NARKA,285,433,698152377,6178,0 +53190,North+050,512,272,849064752,9293,0 +53191,P%C3%B3%C5%82nocny+Bagdad,628,318,8847546,2766,0 +53192,rafisonik10,513,720,849101108,4314,0 +53193,C0300,278,537,8841266,4362,0 +53194,Wioska+barbarzy%C5%84ska,727,465,699574408,8000,0 +53195,0017,681,631,6417987,1907,0 +53196,Motorola+03,363,318,698806018,8577,0 +53197,Wioska+barbarzy%C5%84ska,571,284,6936607,2126,0 +53198,Wioska+barbarzy%C5%84ska,367,324,3698627,4262,0 +53200,Wolgast,338,655,849092685,2341,0 +53201,New+World,433,718,698152377,10294,6 +53202,031+Verdanturf+Town,721,480,699441366,7565,0 +53203,Wioska+barbarzy%C5%84ska,714,574,2453888,4942,0 +53204,nowy+pocz%C4%85tek+%3A%29,392,700,2308351,3925,0 +53205,Wioska+barbarzy%C5%84ska+007,376,314,849068662,6205,0 +53207,High+commissioner,303,400,849089601,6188,0 +53208,%3D106%3D+Wioska+barbarzy%C5%84ska,707,572,3781794,2420,0 +53209,7.62+mm,423,396,699777234,3661,0 +53210,C.050,718,470,9188016,4296,0 +53212,Wioska+3,550,279,7427966,2481,0 +53213,Wioska+barbarzy%C5%84ska,724,463,699574408,2671,0 +53214,Wioska004,690,386,698768565,8167,0 +53215,Wioska+barbarzy%C5%84ska+005,378,315,849068662,7834,0 +53216,xxx,697,600,6921135,9323,0 +53217,Wioska+barbarzy%C5%84ska,331,653,849097175,353,0 +53218,Wioska+barbarzy%C5%84ska,725,465,699574408,3364,0 +53219,046+Wioska+barbarzy%C5%84ska,547,281,699854484,9835,0 +53220,077+Wioska+barbarzy%C5%84ska,349,667,6354098,5334,0 +53221,--019--,575,293,542253,8059,0 +53222,%2307%21,637,677,849101884,2855,0 +53223,FAKE+OR+OFF,400,299,698231772,9812,3 +53224,Wioska+STALLON327,475,272,1553481,2112,0 +53225,Rze%C5%BAnia+2,708,590,849101029,7503,0 +53226,Wioska+Pracz+4,307,622,8916982,6398,0 +53227,azi7,460,723,849094759,2084,0 +53228,%5B0166%5D,456,286,8630972,8680,0 +53229,Wioska+barbarzy%C5%84ska,427,289,698231772,3760,0 +53230,M%C5%9ACIWY+KRIS+01,341,337,698757439,10971,0 +53231,Wioska+barbarzy%C5%84ska,370,318,8772425,2640,0 +53233,Krak%C3%B3w,408,293,3411571,3016,0 +53234,Wioska+barbarzy%C5%84ska,725,535,17714,3268,0 +53235,Wioska+barbarzy%C5%84ska,705,400,699598425,3621,0 +53236,Wioska+barbarzy%C5%84ska,723,534,17714,2860,0 +53237,Wioska+barbarzy%C5%84ska,283,573,849097123,1157,0 +53240,134,386,690,849099876,8011,0 +53241,Wioska+barbarzy%C5%84ska,298,614,698167138,1577,0 +53242,Brzeg+Dolny,677,640,848932879,3195,0 +53243,rafisonik8,514,720,849101108,3483,0 +53244,PPF-21,533,275,1424656,4049,0 +53245,Osada+koczownik%C3%B3w,425,714,849100814,2950,2 +53246,komandos,668,649,7976264,4283,0 +53247,New+WorldA,280,531,849084005,4234,0 +53248,K42+ADAMUS+012,281,430,6212605,6726,0 +53249,054,695,618,699099811,2481,0 +53250,E02,305,387,6301789,2952,0 +53251,New+World,431,713,698152377,10290,0 +53252,Psycha+Siada,327,647,8099868,4836,0 +53253,BIMBER+7,444,286,6857973,2122,0 +53254,komandos,662,655,7976264,5168,0 +53255,Wioska+002,671,347,7226782,5456,0 +53257,K42+ADAMUS+008,282,433,6212605,8581,0 +53258,001,609,300,1775957,2637,0 +53259,Wioska+barbarzy%C5%84ska,533,283,8240677,6703,0 +53260,K67+28,703,607,698867483,3043,0 +53261,Babidi+%232,375,318,849101962,7069,0 +53262,Kapitol_10,505,726,606407,6046,0 +53263,Wioska+Vocare,603,341,849083293,3698,0 +53264,Wioska+barbarzy%C5%84ska,706,422,848902592,2747,0 +53265,Szlachcic,373,316,698160606,6367,0 +53266,_003_,420,288,9283142,4553,0 +53267,New+World,437,714,698152377,8922,0 +53268,C0296+%28Bandii.%29,285,550,698769107,2033,0 +53269,Wioska+barbarzy%C5%84ska,698,393,699598425,4751,0 +53270,050.,595,454,849094609,2593,0 +53271,komandos,669,654,7976264,3921,0 +53272,New+World,428,708,698152377,10292,0 +53273,102.Stradi,422,285,698365960,9857,0 +53274,KASHYYYK+2,568,719,699383121,1943,0 +53275,Wioska+Myszka21,337,662,849064087,401,0 +53276,zzz,595,701,8773967,3641,0 +53277,%230256+barbarzy%C5%84ska,444,278,1238300,1913,0 +53278,Wioska+barbarzy%C5%84ska,383,304,698231772,3409,0 +53279,Wioska+011,673,352,7226782,3689,0 +53280,kathare,529,727,873575,9557,5 +53281,komandos,667,656,7976264,6772,0 +53282,Kiedy%C5%9B+Wielki+Wojownik,331,355,8632462,5098,0 +53284,%23201+C,512,733,9037756,4600,0 +53285,Branco+coelho,523,723,849102336,6088,0 +53288,%230076,572,718,1536231,4215,0 +53290,Atlantyda,706,413,699785935,4202,0 +53291,095,725,507,7085502,2752,0 +53293,Bombai,291,580,2717161,3375,0 +53294,Lord+Arsey+KING,656,660,848956513,6289,0 +53295,Barcelona,646,674,747422,3261,0 +53296,Wioska+barbarzy%C5%84ska,412,288,698231772,7209,0 +53297,096,726,506,7085502,2752,0 +53298,Taran,321,626,6180190,8105,0 +53299,Wioska+barbarzy%C5%84ska,403,293,698231772,6904,0 +53300,EO+EO,273,502,699697558,8244,1 +53301,Wioska+janush4,648,674,747422,5045,0 +53302,wioska,643,323,849102068,10620,2 +53303,Wioska+wodzu+22s,613,692,8292737,6928,0 +53305,0162,385,689,7085510,3261,0 +53306,osada+3,662,349,7357503,3734,0 +53307,Wioska+barbarzy%C5%84ska,368,315,3484132,5654,0 +53308,zenon,376,687,849030086,9686,0 +53309,KONFA+TO+MARKA%2C+NARKA,277,449,698152377,4413,0 +53310,BETON+090.......,664,651,7976264,7404,0 +53311,059.,638,679,699373599,2524,0 +53312,005+Wioska+D,285,569,6240801,4080,0 +53313,Wioska17,332,345,699711926,5583,0 +53314,Ghostmane1,721,444,848896434,2806,0 +53315,Wioska+barbarzy%C5%84ska,325,631,698908184,7260,0 +53316,Wioska+forestrr,598,301,8852026,7719,0 +53317,Kapitol_14,502,726,606407,4596,0 +53318,Kurnik,452,716,699603116,8238,0 +53319,097,386,697,849099876,10495,2 +53321,C100,355,665,699383279,5264,0 +53322,7.62+mm,466,426,699777234,3966,0 +53323,Z%C5%82oty+%C5%9Awit,593,298,699883079,8803,0 +53324,027+KTW,722,441,848883237,6320,0 +53325,Ghostmane8,720,442,848896434,1741,0 +53326,K42+ADAMUS+014,284,428,6212605,5574,0 +53327,Wyspa+007,290,567,225023,10495,0 +53328,41.+Wioska+41,282,563,849091769,8545,0 +53329,New+World,422,707,698152377,10290,0 +53330,mmutla+o+mosweu,521,721,849102336,1758,0 +53331,Taka.,483,726,848999671,4602,0 +53332,Wioska+barbarzy%C5%84ska,373,312,698160606,10006,0 +53333,Little+thing,694,617,849101652,6558,5 +53334,%2A022%2A,687,626,1205898,6284,0 +53335,Wioska+barbarzy%C5%84ska,717,427,699524891,3613,0 +53336,cypel,527,275,6118079,5007,0 +53337,farma+to+darma,528,722,6116940,1842,0 +53338,New+World,428,709,698152377,10290,0 +53339,-32-,585,706,849032414,5909,0 +53340,Wioska+barbarzy%C5%84ska,589,709,7756002,4657,0 +53341,027.+Gloria+Victis,280,557,848886973,6503,0 +53342,Wioska+Kuzniakers,722,519,699734445,3102,0 +53343,New+World,433,720,698152377,10294,0 +53344,Wioska+barbarzy%C5%84ska,718,571,2453888,5642,0 +53345,%5B809%5D+Odludzie,713,437,848985692,6320,0 +53346,Wioska+barbarzy%C5%84ska,276,461,699213622,3868,0 +53348,Wioska+Teletubisi%C3%B3w,716,428,849102480,4041,0 +53349,%23033%23,652,665,692803,9761,4 +53350,032,454,719,8268010,1634,0 +53352,stachod%C5%BCons+2,594,291,849101409,3531,0 +53353,5-Wioska+-AC-OB,693,613,1205898,1680,0 +53354,Wioska+barbarzy%C5%84ska,320,363,0,669,0 +53355,16+ta,720,474,849101845,9811,0 +53356,Wioska+barbarzy%C5%84ska,726,496,698191218,4171,0 +53357,NoeyPL+4,333,558,849000135,5488,0 +53358,O153,299,612,272173,2284,0 +53359,Osada+koczownik%C3%B3w,271,490,699697558,7004,4 +53360,KONFA+TO+MARKA%2C+NARKA,276,447,698152377,6784,0 +53361,Wioska+barbarzy%C5%84ska,718,465,699574408,3504,0 +53362,C.051,718,469,9188016,3191,0 +53363,KONFA+TO+MARKA%2C+NARKA,292,427,698152377,4358,0 +53364,Wioska+barbarzy%C5%84ska,408,294,849102150,1481,0 +53365,Wioska+barbarzy%C5%84ska,648,665,848987051,7233,0 +53366,komandos,663,656,7976264,6357,0 +53367,tomek016+VII,691,566,8811880,488,0 +53368,015+-+Budowanko%21,493,724,7540891,7007,0 +53369,Wioska+barbarzy%C5%84ska,284,578,848988401,2858,0 +53370,kamilkaze135+%2317,685,369,699705601,3074,0 +53371,Wioska+barbarzy%C5%84ska,713,423,848902592,2595,3 +53372,Wioska+barbarzy%C5%84ska,414,296,698231772,5630,0 +53373,002,300,394,849109795,3794,0 +53374,0119,377,694,7085510,8683,9 +53375,Szulernia,392,375,7249451,2016,0 +53376,Wioska+barbarzy%C5%84ska,563,721,699828442,4566,0 +53377,Wioska+SHIZA,318,376,698766369,1957,0 +53378,Wioska+barbarzy%C5%84ska,721,549,698666810,11116,0 +53379,276...DEL,462,308,6920960,11824,0 +53380,069.+Napier,718,529,1601917,4528,0 +53381,028.+Gloria+Victis,282,556,848886973,6172,0 +53382,Wioska,328,636,698908184,5947,0 +53383,Wioska+barbarzy%C5%84ska,540,726,699878511,6728,0 +53384,Wioska+barbarzy%C5%84sko,579,712,7756002,7034,0 +53385,Wioska+barbarzy%C5%84ska,720,466,699574408,3022,0 +53386,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,718,8201460,10237,0 +53387,P%C3%B3%C5%82nocny+Bagdad,625,310,8847546,7126,0 +53388,Rosa,577,712,6882236,8715,0 +53389,%230174+darmuwa,475,278,1238300,5896,0 +53390,Wioska+barbarzy%C5%84ska,725,527,698191218,3814,0 +53391,B006,522,278,699485250,7685,0 +53392,New+World,425,712,698152377,10093,0 +53393,0016,471,726,699656989,8612,0 +53394,001,295,534,848886200,7267,0 +53395,Kapitol_19,502,730,606407,5215,0 +53396,Wioska+barbarzy%C5%84ska,410,293,849089654,507,0 +53397,.achim.,486,274,6936607,7868,2 +53399,M%C5%9ACIWY+KRIS+04,339,337,698757439,10495,0 +53400,Wioska+0015,340,654,9186126,9105,0 +53401,Ghostmane4,727,452,848896434,3043,0 +53402,Zaplecze+Barba+026,355,336,699796330,5908,0 +53403,Wioska+barbarzy%C5%84ska,319,363,0,5140,0 +53404,North+076,519,275,849064752,4400,0 +53405,074+Wioska+barbarzy%C5%84ska,344,667,6354098,3593,0 +53406,%23115%23,652,670,692803,5652,0 +53407,Z%C5%82oty+%C5%9Awit,596,294,699883079,8925,1 +53408,Bia%C5%82a+Podlaska+1,438,713,849100787,7170,0 +53410,062,692,621,699099811,655,0 +53411,Wioska+barbarzy%C5%84ska,415,666,699736927,1466,0 +53412,Wioska+wilka+02,716,562,6786449,9582,0 +53413,Lord+Arsey+KING,663,648,848956513,7116,0 +53414,kww04,718,544,8976313,4188,0 +53415,005,302,393,849109795,1458,0 +53416,%5B811%5D+Odludzie,714,436,848985692,7224,0 +53417,KONFA+TO+MARKA%2C+NARKA,287,422,698152377,3636,0 +53418,Wioska+barbarzy%C5%84ska,691,607,699778867,826,0 +53419,Avanti%21,279,474,698625834,6332,0 +53421,New+WorldA,277,540,849084005,1598,0 +53422,Wioska+barbarzy%C5%84ska,714,568,2453888,9708,0 +53423,-+169+-+SS,548,688,849018239,9429,0 +53424,osada+2,663,347,7357503,5168,0 +53426,040.xxx,522,725,8612358,2049,0 +53427,Wioska+dla+gie%C5%82dy,437,718,1406042,8516,0 +53428,Wioska+barbarzy%C5%84ska,727,512,6510480,3987,0 +53429,Wioska+Sessue,512,676,8501514,4326,0 +53430,kamilkaze135+%2315,691,374,699705601,3880,0 +53431,Wioska+barbarzy%C5%84ska,706,420,848902592,5685,0 +53432,.achim.,575,286,6936607,5636,0 +53433,MASZERUJ+ALBO+GI%C5%83+01,339,339,698757439,10495,2 +53434,WZ06,699,608,7142659,4512,0 +53435,Wioska+barbarzy%C5%84ska,699,395,699429153,5634,0 +53436,Twierdza+%28Why%3F%29,474,648,0,6873,32 +53437,Twierdza+%28-LM-%29,533,450,0,2608,25 +53438,014.+Carbonara,315,379,849102092,5689,0 +53439,Wioska+barbarzy%C5%84ska+11,347,334,698757439,7507,0 +53440,C-005,322,356,699406247,4132,0 +53441,Wioska+barbarzy%C5%84ska,644,679,848987051,6223,0 +53442,Betoniarnia,276,455,848907771,1898,0 +53443,Darma+MOOSELOOSE,577,622,699560327,9255,0 +53444,Wioska+barbarzy%C5%84ska,404,291,698231772,7705,0 +53445,011+%7C+North,380,693,699511295,5121,0 +53446,04Wioska+barbarzy%C5%84ska,362,672,699704542,4447,0 +53447,KONFA+TO+MARKA%2C+NARKA,285,450,698152377,10290,0 +53448,Wioska+barbarzy%C5%84ska,690,628,849092827,1032,0 +53449,Alamo,718,566,2723244,2773,0 +53450,023+Z,729,500,699718269,4345,0 +53452,025,398,706,849099876,10495,0 +53453,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,721,8201460,4010,0 +53454,Wioska+barbarzy%C5%84ska,324,632,698908184,9150,0 +53455,%C5%BBUBEREK+003,611,691,33900,9988,5 +53456,Kurnik,451,720,699603116,9068,0 +53457,%5B836%5D+Odludzie,720,438,848985692,5204,0 +53458,The+Game+Has+Only+Just+Begun,356,525,9280477,4839,0 +53459,ZPP+Atleti,727,478,8096537,3037,0 +53460,New+World,411,700,698152377,6740,0 +53461,Ghostmane7,719,450,848896434,2733,0 +53462,3.+Redania,603,698,849101526,1682,0 +53463,058+-+Budowanko%21,506,722,7540891,4499,0 +53464,%2A007,673,365,7758085,6887,0 +53465,Wioska+barbarzy%C5%84ska,324,639,698908184,7641,0 +53466,Wioska+barbarzy%C5%84ska,382,688,849030086,3733,0 +53467,0013+Dziewczyna+z+Poci%C4%85gu,458,726,699656989,9584,0 +53468,1+na+100,709,411,699785935,5711,0 +53470,Wioska+barbarzy%C5%84ska,390,299,3842862,816,0 +53471,K67+04,700,614,698867483,4948,0 +53472,Wustewaltersdorf,353,665,849092685,982,0 +53473,Wioska+barbarzy%C5%84ska,322,632,698908184,5606,0 +53474,005.U-KISS,694,421,9180206,7387,0 +53475,020.+Night+Raid,489,729,699684062,5541,0 +53476,K42+ADAMUS+017,282,430,6212605,5953,0 +53477,KONFA+TO+MARKA%2C+NARKA,289,423,698152377,2617,0 +53478,Trunks+Super+Saiyan+003,519,725,699054373,5107,0 +53479,Wioska+3,623,359,849056744,4042,0 +53480,%23011,555,278,849064614,8894,0 +53481,Piek%C5%82o+to+inni,657,338,848956765,2917,0 +53482,Wioska+barbarzy%C5%84ska,367,316,3484132,6062,0 +53483,%7E%7E085%7E%7E,678,636,7829201,2918,0 +53484,-11-,582,708,849032414,8925,0 +53485,028+Legio+IV+Flavia+Felix,713,559,699878150,1647,0 +53486,Wioska+barbarzy%C5%84ska,714,429,699272633,2042,0 +53487,Psycha+Siada,333,645,8099868,9277,0 +53488,E01,723,549,848995478,9059,0 +53489,Kapitol_11,513,722,606407,6034,0 +53491,Wioska+barbarzy%C5%84ska,395,698,849014922,4699,0 +53492,%5B0172%5D,450,282,8630972,7387,0 +53493,Zaplecze+Barba+035,349,335,699796330,4062,0 +53494,009,298,595,698663855,4490,0 +53495,%230056,580,713,1536231,4855,0 +53496,5.E,536,276,699146580,1252,0 +53497,%23006+Zenitizm+to+styl+%C5%BCycia,279,444,849096215,1104,0 +53498,Wioska+diabel19,724,523,8541236,9394,0 +53499,Kurczaczek,628,691,698338524,1617,0 +53500,New+World,429,714,698152377,10290,0 +53501,Wiocha+VI,335,353,849106316,963,0 +53502,B_7,295,421,699728266,1537,0 +53503,Winterfell.011,455,280,848918380,10178,9 +53504,lorus,527,727,699878511,5864,0 +53505,128+invidia,504,727,849093426,9539,3 +53506,Wioska+MamTegoDo%C5%9B%C4%87,351,676,698592907,5928,0 +53507,163,399,697,849099876,9278,0 +53508,Nekropolis,707,584,849088199,8821,0 +53509,Semantyka,307,393,849076515,2434,0 +53510,Bagno+31,474,723,848883684,6002,0 +53511,Stachod%C5%BCons,594,292,849101409,6758,0 +53512,Mordownia+8,707,595,849101029,5886,0 +53513,New+World,435,715,698152377,10291,0 +53514,063.+Maszerbrum,718,528,1601917,4872,0 +53515,CastAway+%21031,715,580,9314079,4100,0 +53516,Wioska+Xerez,295,466,698701911,3677,0 +53517,Wioska+barbarzy%C5%84ska,713,415,0,1230,0 +53518,Artur+Boruc+V2,707,405,699146876,2497,0 +53519,013,507,726,848953066,5445,0 +53520,Wioska+barbarzy%C5%84ska,402,702,849014922,4496,0 +53521,Cisza,286,565,698769107,1403,0 +53522,--051--,580,288,542253,3008,0 +53523,C-001,321,356,699406247,5943,0 +53524,Rze%C5%BAnia,708,591,849101029,4640,0 +53525,Osada+koczownik%C3%B3w,691,628,849092827,1109,6 +53526,092,722,513,7085502,4086,0 +53527,%23107%23,656,668,692803,5717,0 +53528,Wioska+Wojtaka,585,288,8609713,2689,0 +53529,Avanti%21,272,469,698625834,4253,0 +53530,O047,315,629,272173,9866,9 +53531,Liverpool,293,418,848993769,359,0 +53532,xxx1,696,601,6921135,5316,0 +53533,%5B824%5D+Odludzie,718,431,848985692,6366,0 +53534,XDX,617,308,699098531,4124,0 +53535,Flap,600,295,699098531,5507,0 +53536,MERHET,590,704,698215322,2561,0 +53537,KRONOSIK8,679,562,849107703,6307,0 +53538,Wioska+barbarzy%C5%84ska,403,707,849014922,6223,0 +53540,Laguna,278,544,848930898,2955,0 +53542,K42+ADAMUS+015,289,429,6212605,5636,0 +53544,007,401,292,699694284,8261,0 +53545,1.+Kear+Morhen,606,697,849101526,6512,0 +53546,%3F%3F%3F%3F,477,271,698489071,5287,0 +53547,Wioska+dziadek1974,593,707,8991696,6812,0 +53548,Wioska+barbarzy%C5%84ska,697,614,3589487,2197,0 +53549,New+World,439,716,698152377,6877,0 +53550,Nowa+60,711,580,698702991,4538,0 +53551,%7CD%7C+IS,459,724,698147372,2673,0 +53552,San+Escobar,291,590,2717161,6838,0 +53553,B-1,672,360,849095509,3978,0 +53554,111,414,294,849089654,3875,0 +53555,129,391,699,849099876,7469,0 +53556,%7CD%7C+Riverfrost,455,720,698147372,4697,0 +53557,K42+ADAMUS+024,283,425,6212605,2217,0 +53558,Wioska+barbarzy%C5%84ska,352,668,0,773,0 +53559,Wioska+barbarzy%C5%84ska,729,513,698191218,4514,0 +53560,0121,348,672,7085510,6567,3 +53561,111,420,298,849102150,3430,0 +53562,Piek%C5%82o+to+inni,649,330,848956765,3818,0 +53563,Wygwizdowa+014,653,665,698562644,3648,0 +53564,059,723,514,699413040,3465,0 +53565,%3D%7C07%7C%3D,690,383,9101574,9925,9 +53566,A004,334,658,849105102,2842,0 +53567,Osada+koczownik%C3%B3w,419,296,698231772,5290,6 +53568,102+Zushi,635,473,7092442,3798,0 +53569,Cisza,285,561,698769107,3149,0 +53570,W003,307,389,849082154,2009,0 +53571,101+Sanuki,641,475,7092442,4105,0 +53572,New+World,411,710,698152377,4733,0 +53573,--046--,577,292,542253,3145,0 +53574,Wioska29,334,341,699711926,2619,0 +53575,Dzik+11,288,426,8366045,9441,0 +53576,A17,465,644,698652014,3629,0 +53577,Wioska+barbarzy%C5%84ska,355,324,8772425,3000,0 +53579,%3D%7C06%7C%3D,690,385,9101574,10004,6 +53580,ups,508,729,849101102,8989,0 +53581,P%C3%B3%C5%82nocny+Bagdad,626,311,8847546,7543,0 +53582,Wioska+barbarzy%C5%84ska,355,327,8772425,2648,0 +53583,%7E%7E068%7E%7E,683,634,7829201,6481,0 +53584,%230057,571,715,1536231,4321,0 +53585,04Wioska+barbarzy%C5%84ska,358,674,699704542,8593,0 +53586,Wioska+barbarzy%C5%84ska,493,725,699744012,1721,0 +53587,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,543,720,8201460,8398,0 +53588,021.+Wioska+barbarzy%C5%84ska,683,375,2873154,4925,0 +53589,Wioska+barbarzy%C5%84ska,459,275,699191464,2713,0 +53590,Wioska+barbarzy%C5%84ska,455,719,849037407,1327,0 +53591,K44+x035,441,406,698364331,6529,0 +53592,Cisza,283,579,698769107,1128,0 +53593,New+WorldA,280,530,849084005,4733,0 +53594,Osada+koczownik%C3%B3w,714,573,2453888,9596,6 +53595,Wioska+PeKamon,438,409,698364331,7399,0 +53597,FAKE+OR+OFF,398,300,698231772,9814,9 +53599,Wioska+barbarzy%C5%84ska,718,547,698666810,9760,0 +53600,A-007,318,371,699406247,3226,0 +53601,Wioska+barbarzy%C5%84ska,329,652,8175236,1015,0 +53602,KONFA+TO+MARKA%2C+NARKA,288,415,698152377,2169,0 +53603,Palirura,353,331,698906190,2416,0 +53604,osada+5,661,350,7357503,1839,0 +53605,Wioska+Mekambe,713,428,849102480,8026,0 +53606,135,388,692,849099876,6791,0 +53607,Wioska+Pracz+8,312,624,8916982,3081,0 +53608,North+047,541,274,849064752,5398,0 +53609,Wioska+barbarzy%C5%84ska,393,700,849014922,1760,0 +53610,Wioska+barbarzy%C5%84ska,397,703,849014922,5563,0 +53611,komandos,666,659,7976264,4424,0 +53612,0117,376,692,7085510,8004,6 +53613,A.018,606,556,9188016,7551,0 +53614,C0248,272,526,8841266,4886,0 +53615,103.+Wioska+barbarzy%C5%84ska,724,464,7494497,2601,0 +53616,Wioska+012,667,356,7226782,3325,0 +53617,Wiocha+1,556,719,849045675,12154,0 +53618,lorus,531,721,699878511,6021,0 +53620,New+World,432,718,698152377,10290,0 +53621,MojeSzczytToTw%C3%B3jDno,511,381,828637,9114,0 +53622,Wioska+barbarzy%C5%84ska,719,548,698666810,10177,0 +53623,Wioska+zicher,538,275,6032352,850,0 +53625,Saran10,409,291,848937248,895,0 +53626,009,296,598,698663855,3708,0 +53627,Kapitol_16,508,724,606407,5213,0 +53628,%5B0170%5D,453,281,8630972,7596,0 +53629,o015,609,702,699189792,4822,0 +53631,Wioska+barbarzy%C5%84ska,660,335,699072129,4979,0 +53632,Gubernia,364,314,849107532,6654,0 +53633,Sexxy+P,694,622,8815749,3551,0 +53634,WOLA0100,677,363,6956104,9779,0 +53635,04Wioska+barbarzy%C5%84ska,366,687,699704542,6508,0 +53636,Parking2,615,667,6528152,6090,0 +53637,%23Kresy,628,687,2665207,1558,0 +53639,Avanti%21,277,495,698625834,4075,0 +53640,K33,310,385,699794765,1326,0 +53641,Z%C5%82oty+%C5%9Awit,582,295,699883079,10035,0 +53642,111+Wioska+beziuleq,548,277,699854484,686,0 +53643,Bia%C5%82y+Kr%C3%B3lik,524,723,849102336,4243,0 +53645,komandos,668,655,7976264,4410,7 +53646,Rumia,409,708,8425594,8160,0 +53647,PODSTAWA,692,389,8622901,1838,0 +53648,004,594,704,849097370,3943,0 +53649,KONFA+TO+MARKA%2C+NARKA,286,441,698152377,10294,0 +53650,E005,636,319,699299123,2154,0 +53651,Ebe+ebe,711,413,699785935,4277,0 +53652,Osada+koczownik%C3%B3w,670,653,1415009,9728,6 +53653,A%23051,728,470,2065730,6647,0 +53654,056.,636,673,699373599,2220,0 +53655,%5B0169%5D,447,281,8630972,7896,0 +53656,A-5,672,355,849095509,1487,0 +53657,-KDK-,497,495,698349125,7744,0 +53658,Wioska+barbarzy%C5%84ska,727,525,698191218,5385,0 +53659,K67+08,702,610,698867483,3781,0 +53660,Bagno+24,487,719,848883684,6980,0 +53661,0135,342,666,7085510,9045,8 +53662,Wioska+barbarzy%C5%84ska,529,729,699878511,4050,0 +53663,Wioska+barbarzy%C5%84ska,302,595,6180190,2936,0 +53665,K42+ADAMUS+006,286,430,6212605,9172,0 +53666,Wioska+barbarzy%C5%84ska,413,291,698231772,6453,0 +53667,Kapitol_09,499,725,606407,6032,0 +53668,Wioska,273,483,699795698,5282,0 +53669,E004,632,316,699299123,2080,0 +53670,New+WorldA,273,539,849084005,1750,0 +53671,KONFA+TO+MARKA%2C+NARKA,283,440,698152377,7396,0 +53672,008,280,432,6131106,5994,6 +53673,Wioska,718,457,849095599,3209,0 +53674,Wioska+barbarzy%C5%84ska,731,495,942959,1672,0 +53675,Avanti%21,272,490,698625834,5471,0 +53676,Avanti%21,276,492,698625834,6022,0 +53677,034+Osada+koczownik%C3%B3w,533,276,699854484,9835,1 +53678,%3F%3F%3F%3F,473,281,698489071,2727,0 +53679,Wioska+010,671,346,7226782,4089,0 +53681,%3D%7C46%7C%3D,686,372,9101574,1473,0 +53682,057+-+Budowanko%21,527,717,7540891,2838,0 +53683,MojeDnoToWaszSzczyt,510,275,9299539,9702,0 +53684,0107,698,391,698416970,2479,0 +53685,Wioska+barbarzy%C5%84ska,724,486,698191218,3716,0 +53686,Piek%C5%82o+to+inni,651,335,848956765,3054,0 +53687,-+2+-,692,391,8622901,1266,0 +53688,Wioska+barbarzy%C5%84ska,718,453,699628084,5662,0 +53689,041,669,645,2323859,1023,0 +53690,M%C5%9ACIWY+KRIS+03,343,333,698757439,10495,0 +53691,Avanti%21,275,478,698625834,6148,0 +53692,Wioska+Pracz+1,308,625,8916982,7855,0 +53693,057.,635,674,699373599,2467,0 +53694,KUKA+II,281,437,6127190,3115,0 +53695,komandos,674,651,7976264,3684,0 +53696,Wioska+PysioSsie,273,494,8947705,286,0 +53697,Taran,315,624,6180190,8025,0 +53698,%5B830%5D+Odludzie,711,430,848985692,5915,0 +53699,Etitek+4,725,498,848999448,2390,0 +53700,Wioska+kajko1962+-,664,348,7357503,10908,0 +53701,KONFA+TO+MARKA%2C+NARKA,292,426,698152377,7095,1 +53702,028+Dewford+Town,725,486,699441366,9389,0 +53703,006,294,586,698663855,5212,0 +53704,%2302%21,640,681,849101884,9759,0 +53705,wioska+XIX,671,361,849101889,3274,0 +53706,K42+ADAMUS+025,281,427,6212605,242,0 +53707,029.,609,481,8900955,10987,0 +53708,D022,560,288,699299123,3676,0 +53709,MojeDnoToWaszSzczyt,499,270,9299539,9946,0 +53710,Wioska+arkowa,653,671,563544,1497,0 +53711,132,383,691,849099876,8331,0 +53712,023+-+Budowanko%21,710,566,7540891,4419,0 +53713,10.DASH,712,561,698905177,1407,0 +53714,Wioska+Wieslaw+2,504,275,699794421,3834,0 +53715,Wioska+barbarzy%C5%84ska,645,667,848987051,7393,0 +53717,Wioska+bezludna,598,694,699828685,2081,0 +53718,Kapitol_18,500,729,606407,5212,0 +53719,North+031,516,270,849064752,6737,0 +53720,024.,698,601,6520732,2508,0 +53721,068,721,519,699413040,1946,0 +53722,Wioska+barbarzy%C5%84ska,388,309,698231772,3102,0 +53723,Wioska+barbarzy%C5%84ska,464,282,699863708,3361,0 +53724,023,302,613,699356968,2255,0 +53725,komandos,674,650,7976264,3456,0 +53726,%23Kresy,629,679,2665207,8472,0 +53727,004,293,597,698663855,10068,0 +53728,04Wioska+barbarzy%C5%84ska,359,680,699704542,7533,0 +53729,Wioska+barbarzy%C5%84ska,469,277,699196829,1962,0 +53730,Piek%C5%82o+to+inni,647,329,848956765,5441,0 +53731,Wioska+MalinowaZaba,497,723,699656989,5284,0 +53732,P%C3%B3%C5%82nocny+Bagdad,619,305,8847546,2946,0 +53733,Wioska+Mr.SoLo,721,539,8541236,9592,0 +53734,A%23017,719,565,2065730,9797,8 +53735,060,724,516,699413040,3599,0 +53736,Wioska+barbarzy%C5%84ska,359,317,3484132,5290,0 +53737,SkalpeR1337,288,492,849108007,6155,0 +53738,BOSS+W,335,339,849101604,1337,0 +53739,Wioska+0018,342,655,9186126,7127,0 +53740,KIELBA+108,465,601,699342219,7896,0 +53741,Wioska+barbarzy%C5%84ska,299,406,6186491,4919,0 +53742,Wioska+ASYSTORIA,601,702,699828685,2816,0 +53743,Wioska+barbarzy%C5%84ska,275,465,699213622,5649,0 +53744,KUKA+I,285,435,6127190,5325,0 +53745,Wioska+barbarzy%C5%84ska,697,383,849057764,1674,0 +53746,MERHET,582,707,698215322,5431,0 +53747,Wioska+barbarzy%C5%84ska,711,428,699722599,4497,0 +53748,Wioska+barbarzy%C5%84ska,730,501,698191218,3851,0 +53749,Wioska+barbarzy%C5%84ska,375,691,849030086,1941,0 +53750,%230247+colt9,439,281,1238300,5187,0 +53751,Sony+911,673,649,1415009,3788,0 +53752,Wioska+barbarzy%C5%84ska,378,688,849096945,565,0 +53753,%23124%23,655,667,692803,3875,0 +53754,Winterfell.012,449,284,848918380,10008,2 +53755,Wioska+arobest,700,399,849096041,1110,0 +53756,XDX,611,302,699098531,4642,0 +53757,Wioska+0003,342,656,9186126,10311,4 +53758,%230260+mrufki,441,281,1238300,1913,0 +53759,KONFA+TO+MARKA%2C+NARKA,292,414,698152377,2628,0 +53760,Rze%C5%BAnia+3,710,590,849101029,5623,0 +53761,Village,571,718,849094067,2419,0 +53762,Wioska+Olczi,484,280,849108053,1207,0 +53763,New+WorldA,283,536,849084005,4495,0 +53764,Wioska+barbarzy%C5%84ska,563,716,6299408,5014,0 +53765,006,405,296,9283775,3618,0 +53766,Piek%C5%82o+to+inni,641,331,848956765,4182,0 +53767,Wioska+barbarzy%C5%84ska,538,273,849044705,1685,0 +53768,Wioska+001,674,358,2976468,3875,0 +53769,191,402,703,849099876,9204,0 +53770,%23030,543,275,849064614,2363,0 +53771,005,282,459,699844314,1761,0 +53772,New+WorldA,281,536,849084005,4106,0 +53773,%5B0179%5D,454,282,8630972,7486,0 +53774,181+Okrutny+Pogromca+Szlachty,534,725,698667255,733,0 +53775,Avanti%21,274,494,698625834,4748,0 +53776,R+046,493,728,699195358,5456,0 +53777,.achim.,579,284,6936607,2335,0 +53778,Wioska+barbarzy%C5%84ska,347,327,8772425,1618,0 +53779,Wioska+barbarzy%C5%84ska,540,727,699878511,7031,0 +53780,P%C5%81D2,722,456,699347951,1438,0 +53782,033+Fallarbor+Town,722,480,699441366,4372,0 +53783,170,416,686,849099876,5513,0 +53784,0000047Z,278,557,849089881,1329,0 +53785,0102,672,351,698416970,7659,3 +53786,ZPP+Haran,729,458,8096537,6117,0 +53787,Wioska+barbarzy%C5%84ska,386,305,698231772,4090,0 +53788,.001.+Wyspa,723,449,849095599,6128,0 +53789,Wioska+barbarzy%C5%84ska,700,404,699598425,3441,0 +53790,Wioska+Inergio,358,678,849098766,2851,0 +53791,010+Bradina,671,640,849102108,2565,0 +53792,C0352,279,534,8841266,8498,0 +53793,C0312,275,527,8841266,2607,0 +53794,XDX,610,303,699098531,6298,0 +53796,Wioska013,344,343,699711926,7497,0 +53797,TOLCIA+1,641,318,699868739,9296,0 +53798,Wioska+barbarzy%C5%84ska,367,314,3484132,6563,0 +53799,Nowa+66,691,629,698702991,3060,0 +53800,Wioska+barbarzy%C5%84ska,720,533,17714,3385,0 +53801,Wioska+Zephyr+II,351,329,1347385,4323,0 +53802,025Kacor,470,722,698620694,9716,0 +53803,wy...,602,702,699828685,6715,0 +53804,Wioska+barbarzy%C5%84ska,623,687,6818593,2450,0 +53805,Motorola+05,365,319,698806018,4685,0 +53806,A01,427,282,849038597,9026,0 +53807,Z%C5%82oty+%C5%9Awit,597,295,699883079,5917,0 +53808,Wioska+pinek321,288,586,2717161,10509,0 +53809,Puck,300,597,1276665,3769,0 +53810,Nowe+IMPERIUM+12,622,692,698353083,5218,0 +53811,Lord+Arsey+KING,653,661,848956513,5454,0 +53812,Wioska+joannaniel,543,725,3560281,7024,0 +53813,Wioska+barbarzy%C5%84ska,557,713,699828442,5004,0 +53814,bagienko_04,564,280,849093353,4811,0 +53815,025,283,461,6131106,1765,0 +53816,.achim.,564,283,6936607,3344,0 +53817,Wioska+barbarzy%C5%84ska,548,723,699828442,9574,0 +53818,Wioska+fan+zmijki,519,728,769293,7940,0 +53819,P001,513,277,699208929,7578,0 +53820,C.056,726,480,9188016,3790,0 +53821,080+Wioska+barbarzy%C5%84ska,540,279,699854484,8918,0 +53823,029+Legio+IX+Ulpia+Victrix,709,569,699878150,1229,0 +53824,New+World,431,716,698152377,10294,0 +53825,Wioska+streak2k12,629,689,699356102,2159,0 +53826,New+World,439,719,698152377,5255,0 +53827,Wioska+barbarzy%C5%84ska,689,367,609384,2937,0 +53828,%230257+Yomikuri,435,281,1238300,7626,0 +53829,Wioska+barbarzy%C5%84ska,405,291,698231772,6357,0 +53830,.achim.,571,290,6936607,4140,0 +53831,023.,697,602,6520732,2885,0 +53832,Lord+Arsey+KING,662,649,848956513,8087,0 +53833,.achim.,485,280,6936607,5657,0 +53834,Z%C5%82oty+%C5%9Awit,582,296,699883079,10119,0 +53835,Wioska+barbarzy%C5%84ska,539,724,699878511,6616,0 +53836,KWB3,462,728,9003698,6223,0 +53837,Wioska+Karl+132,283,538,1861962,5054,0 +53838,Nowe+IMPERIUM+5,617,697,698353083,6128,0 +53839,Wioska+barbarzy%C5%84ska,328,653,8175236,1577,0 +53840,iepure+alb,526,723,849102336,2824,0 +53841,Wioska+chudyn,595,702,8773967,11187,0 +53842,Wioska+barbarzy%C5%84ska,727,489,698191218,3796,0 +53844,02181,632,659,699872616,7769,0 +53845,Wioska+barbarzy%C5%84ska+16,337,343,698757439,6348,0 +53846,Wioska+barbarzy%C5%84ska,682,638,698191218,3335,0 +53847,MojeDnoToWaszSzczyt,499,274,9299539,9945,0 +53848,Wioska+barbarzy%C5%84ska,383,306,698160606,2708,0 +53849,%7E%7E081%7E%7E,683,635,7829201,4637,0 +53850,Tomekrol+2,703,597,849096334,6769,3 +53851,A0258,385,475,8841266,10252,0 +53852,060.,641,678,699373599,2184,0 +53853,K33,310,390,699794765,3392,0 +53854,Nowe+Dobra+-+budowa,681,626,699759128,6867,0 +53855,009,400,303,9283775,3277,0 +53857,%5B815%5D+Odludzie,713,441,848985692,7075,0 +53858,Taran,315,621,6180190,7837,0 +53859,Wioska+barbarzy%C5%84ska+009,376,313,849068662,3971,0 +53860,Wioska+barbarzy%C5%84ska,683,372,699794720,1586,0 +53861,.achim.,562,289,6936607,4261,0 +53862,Wioska+barbarzy%C5%84ska,722,560,698666810,6789,0 +53863,--042--,574,289,542253,4853,0 +53864,%230067,573,711,1536231,4443,0 +53865,wioska+XX,674,352,9314079,1702,0 +53866,075.+Wioska+barbarzy%C5%84ska,722,460,7494497,5506,0 +53867,Wioska+barbarzy%C5%84ska,326,364,0,1108,0 +53868,0151,707,601,699429153,8717,0 +53869,North+027,511,270,849064752,8083,0 +53870,080.+Wioska+barbarzy%C5%84ska,729,471,7494497,4954,0 +53871,PPF-11,518,270,1424656,2582,0 +53872,Wioska+barbarzy%C5%84ska,282,468,699812351,1516,0 +53873,04Wioska+barbarzy%C5%84ska,364,680,699704542,8385,0 +53874,Wioska+barbarzy%C5%84ska,717,453,699628084,4341,0 +53875,%5B833%5D+Odludzie,723,440,848985692,5645,0 +53876,KONFA+TO+MARKA%2C+NARKA,278,452,698152377,5187,0 +53877,Wioska+monitor123aa,517,302,699208929,5308,0 +53878,Azyl+9,630,687,849096354,1830,0 +53879,Oww+Konfederacja,607,391,848915730,10160,0 +53880,mordor,299,394,698677650,3808,0 +53881,027,636,585,6160655,7742,0 +53882,Wioska+barbarzy%C5%84ska,430,285,698231772,5339,0 +53883,Piek%C5%82o+to+inni,653,333,848956765,3507,0 +53884,XDX,608,298,699098531,3743,0 +53885,Wioska+REXMUNDI,725,459,6249486,3881,0 +53886,komandos,675,651,699277039,314,0 +53887,Wioska+barbarzy%C5%84ska,292,576,849101771,1326,0 +53888,Wioska+barbarzy%C5%84ska,718,551,698666810,10999,0 +53889,Gors+Velen,565,289,849054951,10051,8 +53891,Z%C5%82oty+%C5%9Awit,589,292,699883079,6537,0 +53892,%23K75+0035,525,719,699728159,4972,0 +53893,Wioska+Lost+im+Wald,613,699,848914120,1175,0 +53894,Wiocha+3,558,721,849045675,11382,0 +53895,%23004,332,647,698908184,7952,0 +53897,Wioska+barbarzy%C5%84ska,533,729,699878511,6619,0 +53899,041.xxx,513,727,8612358,1189,0 +53900,Wioska+barbarzy%C5%84ska,625,690,699567608,8275,0 +53902,%24006%24+Papuga,303,619,699550876,7281,0 +53903,mysza,315,374,849089601,4105,0 +53904,0598,477,545,698659980,8331,0 +53905,%23007,547,275,849064614,7343,0 +53906,Wioska+barbarzy%C5%84ska,376,688,849096945,470,0 +53907,P%C3%B3%C5%82nocny+Bagdad,626,309,8847546,9835,0 +53908,Wioska+barbarzy%C5%84ska,321,633,698908184,6309,0 +53909,jooo,538,277,849105071,2676,0 +53910,Wioska+barbarzy%C5%84ska,305,378,699660539,2445,0 +53911,Wioska+niedzwiedz8807,295,604,3319611,2955,0 +53912,230...NORTH,448,278,6920960,2173,0 +53913,Wioska+barbarzy%C5%84ska,307,614,0,1107,0 +53914,Wioska+bob+25,366,683,281866,2969,0 +53915,Wioska+Beny604,458,717,698738810,432,0 +53916,Wioska+lis+1,335,651,849056475,1298,0 +53917,051.,638,672,699373599,2926,0 +53918,0122,376,684,7085510,5818,2 +53919,Walgind,301,403,8724192,8114,0 +53920,Agonia,727,524,8541236,9549,0 +53921,Wolgast+Wald,341,656,849092685,1580,0 +53922,%C5%9Aw181%2A004,663,345,959179,3045,0 +53923,Wioska+Kayohix,615,694,698647624,6251,0 +53924,026,306,616,699356968,1464,0 +53925,--049--,581,288,542253,1405,0 +53926,Kirholm,302,615,698167138,3314,0 +53927,North+032,510,270,849064752,6804,0 +53928,%3D120%3D+Wioska+barbarzy%C5%84ska,715,565,3781794,1956,0 +53929,maniek+01,271,477,849095814,6277,0 +53930,Psycha+Siada,321,643,8099868,6964,0 +53931,Twierdza+%28NBW%29,374,379,0,2608,25 +53933,New+World,431,718,698152377,10294,0 +53934,D013,341,653,272173,6797,0 +53935,MojeDnoToWaszSzczyt,491,274,9299539,9945,0 +53936,warszawa,716,422,849042461,2077,0 +53937,B_8,294,421,699728266,1789,0 +53938,01+Sztab+Generalny,730,485,849104855,8170,0 +53939,%23%23%23152%23%23%23,610,695,698285444,10495,0 +53940,Kaufbeuren,646,668,7976264,6937,0 +53941,025.+Gloria+Victis,286,558,848886973,7015,0 +53942,Wioska+bartek145972,479,720,848999671,2105,0 +53943,komandos,672,649,7976264,3803,0 +53944,Z01,285,418,6258092,2235,0 +53945,043.+Rezerwacja,499,728,848928624,3152,0 +53946,Kiedy%C5%9B+Wielki+Wojownik,329,358,8632462,2964,0 +53947,wioska,642,318,849102068,12024,1 +53948,%230287+mirabelik,443,277,1238300,5799,0 +53949,%7B55%7D+Pogorzelice,373,689,849096945,942,0 +53950,O141,345,634,272173,5245,0 +53951,C0289,280,547,8841266,4051,0 +53952,002.Mo%C5%BCe+si%C4%99+uda,457,275,602408,4117,0 +53953,Wioska+barbarzy%C5%84ska,424,292,698231772,5106,0 +53954,New+World,417,711,698152377,9787,0 +53955,Wioska+barbarzy%C5%84ska,726,532,17714,3175,0 +53956,%23002,305,375,849110743,2769,0 +53957,%5B826%5D+Odludzie,716,430,848985692,6491,0 +53958,C0291,283,549,8841266,3980,0 +53959,Mordownia+3,706,595,849101029,9870,0 +53960,Wioska+barbarzy%C5%84ska,313,375,699660539,1958,0 +53961,Wioska+barbarzy%C5%84ska,670,357,609384,2729,0 +53962,056.,455,726,849034882,9492,0 +53963,001+Paluszkowo,593,343,699576407,10283,0 +53964,Wioska+barbarzy%C5%84ska,596,709,699828685,3558,0 +53965,Wioska+barbarzy%C5%84ska,567,717,6299408,3409,0 +53966,002,612,303,699117992,9730,0 +53967,X009,710,424,699722599,6305,0 +53968,C0255,270,524,8841266,4288,0 +53969,120.+Dartan,677,642,8337151,10083,0 +53970,Wa%C5%82,353,670,2725721,1347,0 +53971,KONFA+TO+MARKA%2C+NARKA,289,414,698152377,3319,0 +53972,Wioska+barbarzy%C5%84ska+07,345,335,698757439,7231,0 +53973,Psycha+Siada,329,648,8099868,5149,0 +53974,060+-+Budowanko%21,547,722,7540891,2273,0 +53975,.achim.,568,290,6936607,5820,0 +53976,Wioska+biesta,296,415,6276208,463,0 +53977,%23006,547,276,849064614,9059,0 +53978,New+World,420,709,698152377,9957,0 +53979,0078,456,278,848913037,4863,0 +53980,0014+Village,486,723,699656989,8469,0 +53981,Wioska+barbarzy%C5%84skaB,295,607,698178312,2235,0 +53982,.achim.,576,290,6936607,1880,0 +53983,lorus,527,724,699878511,6019,0 +53985,C.052,719,468,9188016,3549,0 +53986,Wioska+barbarzy%C5%84ska,725,485,699573053,2440,0 +53988,New+World,415,710,698152377,10292,0 +53989,Wioska+mondo96,688,629,6472706,6602,0 +53990,Wioska+barbarzy%C5%84ska,621,684,6818593,3356,0 +53991,064.,717,460,849094609,2379,0 +53992,Z%C5%82oty+%C5%9Awit,589,294,699883079,10035,0 +53993,Cisza,289,576,698769107,770,0 +53994,Kiedy%C5%9B+Wielki+Wojownik,331,358,8632462,3421,0 +53995,%230062,577,713,1536231,9836,3 +53996,001+Wioska+York,281,567,6240801,9214,0 +53997,Wioska+barbarzy%C5%84ska,349,338,849101604,2735,0 +53998,So%C5%9Bnica,290,582,848892804,3238,0 +53999,Wioska+NoeyPl,332,554,849000135,8632,0 +54000,KONFA+TO+MARKA%2C+NARKA,292,424,698152377,4183,0 +54001,O134,315,630,272173,4713,0 +54002,Wioska+barbarzy%C5%84ska,724,525,698191218,4146,0 +54003,Wioska+barbarzy%C5%84ska,325,635,698908184,7261,0 +54004,003,526,729,699730998,773,0 +54005,Wioska+barbarzy%C5%84ska,723,531,17714,2897,0 +54006,Wioska+barbarzy%C5%84ska,319,636,698908184,5270,0 +54007,Wioska+barbarzy%C5%84ska,384,310,698160606,2759,0 +54008,Wioska+bercik53,676,363,9136062,1453,0 +54009,Ghostmane6,718,446,848896434,1824,0 +54010,North+021,511,278,849064752,7827,0 +54011,226+%7C,530,544,8000875,7699,0 +54013,%7E%7E073%7E%7E,682,634,7829201,5321,0 +54014,060+Wioska+barbarzy%C5%84ska,551,283,699854484,9835,0 +54015,B%C5%82%C4%99kitna+g%C5%82%C4%99bia,281,541,848930898,2158,0 +54016,Allianz+Arena,678,634,849096631,3722,0 +54017,.achim.,580,293,6936607,4145,0 +54018,Z%C5%82omowisko,710,584,849098724,5518,0 +54019,082+Wioska+barbarzy%C5%84ska,346,669,6354098,4932,0 +54020,Zzz+15+lubie+laseczki,278,564,849084740,2122,0 +54021,%5B0236%5D,273,505,8630972,4524,0 +54022,New+World,437,721,698152377,8177,0 +54023,Zaplecze+Barba+032,352,334,699796330,4925,0 +54024,Wioska+barbarzy%C5%84ska,290,576,498483,2181,0 +54025,Wioska+181,585,563,848981244,4169,0 +54026,034+Fortree+City,727,492,699441366,2937,0 +54027,D019,560,286,699299123,2885,0 +54028,Infantino,604,296,848983660,7062,0 +54029,Kicha,301,615,698167138,1951,0 +54030,072+obrze%C5%BCa,277,559,699510259,5334,0 +54031,KONFA+TO+MARKA%2C+NARKA,274,456,698152377,2145,0 +54032,007+JJ,327,362,9120206,4463,0 +54034,Piek%C5%82o+to+inni,647,321,848956765,3440,0 +54035,Wioska+barbarzy%C5%84ska,719,573,2453888,8425,0 +54036,Wioska+barbarzy%C5%84ska,399,299,698231772,3626,0 +54037,Wioska+barbarzy%C5%84ska,567,613,699567608,2898,0 +54038,Wioska+maybe-later,385,306,8097158,1513,0 +54039,P%C3%B3%C5%82nocny+Bagdad,627,319,8847546,3420,0 +54040,11.+Kaer+Morhen,607,699,849102573,914,0 +54041,Z%C5%82oty+%C5%9Awit,586,291,699883079,4465,0 +54042,B019,630,311,8740199,4594,0 +54043,A%23020,723,504,2065730,9797,9 +54044,ZPP+United,727,487,8096537,2045,0 +54045,Poznan+001,413,288,1924718,1221,0 +54046,Z+06,384,311,6884492,2109,0 +54047,New+WorldA,276,517,849084005,1305,1 +54048,08.AVAX,715,561,698905177,6828,0 +54049,018+daleko,552,715,849093426,10237,5 +54050,%5B835%5D+Odludzie,720,441,848985692,5530,0 +54051,Nowe+Dobra+-+budowa,689,626,699759128,5777,0 +54052,B009,529,275,699485250,4001,0 +54053,Artur+Boruc,708,405,699146876,6747,0 +54054,wioska,634,334,849102068,3968,0 +54055,Lord+Arsey+KING,665,648,848956513,8274,0 +54056,Piek%C5%82o+to+inni,649,326,848956765,3476,0 +54057,KONFA+TO+MARKA%2C+NARKA,284,445,698152377,10292,0 +54058,Wioska+Wieslaw+4,498,272,699794421,2259,0 +54059,Wioska+barbarzy%C5%84ska,325,638,698908184,9808,0 +54060,w+oczekiwaniu+na+nazw%C4%99+docelow%C4%85,518,728,849102336,524,0 +54061,.achim.,483,279,6936607,6211,0 +54062,Feed+me+more+018,501,369,699756210,9742,0 +54063,004,301,396,849109795,1922,0 +54064,Wioska+181,296,517,1164249,9761,0 +54065,Wioska+barbarzy%C5%84ska,724,559,698666810,6323,0 +54066,Nowa+Baza+5,614,698,698353083,6360,0 +54068,Wioska+barbarzy%C5%84ska,395,302,698231772,4751,0 +54070,Peru,724,543,848946700,6702,0 +54071,New+WorldA,275,544,849084005,1883,0 +54072,nr9,643,678,364126,1982,0 +54073,Wioska+barbarzy%C5%84ska,679,353,2976468,3985,0 +54074,Wioska+jar-11,273,491,698384662,1446,0 +54075,Wioska+kwiatek7777,529,279,7337110,1162,0 +54076,Flap,614,300,699098531,6388,0 +54077,%3D107%3D+Wioska+barbarzy%C5%84ska,701,593,3781794,3331,0 +54078,01+maki5b,637,326,6517826,9752,0 +54079,016.+Tak+o,295,396,698630507,3623,0 +54080,Anty+C+-+ovid+%21,655,670,6046743,2365,0 +54081,Malaga,645,676,747422,3440,0 +54082,048,669,653,2323859,1660,0 +54083,063.,639,685,699373599,1774,0 +54084,United,292,420,848993769,3070,0 +54086,Avanti%21,274,484,698625834,6283,0 +54087,FAKE+OR+OFF,392,303,698231772,9812,9 +54088,A001,334,659,849105102,10089,0 +54089,%5B0191%5D,275,496,8630972,7243,0 +54090,K67+02,700,616,698867483,8822,0 +54091,B003,521,279,699485250,8606,0 +54092,050,671,651,2323859,1201,0 +54093,Flap,615,301,699098531,6595,0 +54094,%2303%21,639,680,849101884,5412,0 +54095,130,393,701,849099876,9278,6 +54096,36.Geso,723,542,8976313,5572,0 +54097,North+028,514,269,849064752,7800,0 +54098,026,688,619,699099811,3237,0 +54099,BETON+104,662,664,699277039,975,0 +54100,aaaaaa,678,362,2976468,7817,0 +54101,%230244+colt9,438,284,1238300,6029,0 +54102,042+-+Budowanko%21,501,726,7540891,6926,0 +54103,North+024,510,272,849064752,7538,0 +54104,63%2F1,328,650,8175236,3001,0 +54105,Kurnik,449,716,699603116,7800,0 +54106,770,538,274,849087149,655,0 +54107,Wioska+barbarzy%C5%84ska,592,707,8991696,3201,0 +54108,030+-+Budowanko%21,481,725,7540891,5063,0 +54109,%5B0192%5D,273,496,8630972,7341,0 +54111,Wioska+barbarzy%C5%84ska,337,345,849103148,1784,0 +54112,024,458,651,699736927,2982,0 +54113,001+wolno%C5%9B%C4%87,336,654,6910361,1222,0 +54114,jarekamyk,351,677,699875132,3602,0 +54116,Wa%C5%82brzych,677,631,848932879,4546,0 +54117,Wioska+Pieguss,469,647,698855681,162,0 +54118,Wioska+barbarzy%C5%84ska,721,473,698191218,2161,0 +54119,Wioska+barbarzy%C5%84ska,589,712,7756002,4997,0 +54120,125,385,695,849099876,8556,0 +54121,Wioska16,633,486,848935020,1970,0 +54122,%23119%23,641,673,692803,5419,0 +54123,03+Dywizja,728,491,849104855,7457,0 +54124,%5B0168%5D,472,271,8630972,7982,0 +54125,0015,683,631,6417987,1705,0 +54126,029.+Gloria+Victis,279,560,848886973,5774,0 +54127,Wioska+barbarzy%C5%84ska,278,460,699213622,4198,0 +54128,04Wioska+barbarzy%C5%84ska,363,682,699704542,8157,0 +54129,Wioska+barbarzy%C5%84ska,463,273,699308637,1803,0 +54130,001+Kattegat,552,352,699072129,10362,0 +54131,063,696,623,699099811,4559,0 +54132,KUKA+IV,282,428,6127190,1995,0 +54133,Wioska+barbarzy%C5%84ska,687,367,609384,1555,0 +54134,MWITO,590,708,33900,1460,0 +54135,Wioska+barbarzy%C5%84ska,363,674,699704542,1596,0 +54136,%23%23%23153%23%23%23,603,695,698285444,10495,0 +54137,049,671,642,2323859,875,0 +54138,O120,309,629,272173,6727,0 +54139,MERHET,581,705,698215322,4701,0 +54140,Wioska+barbarzy%C5%84ska,692,377,698702991,3480,0 +54141,C0297,277,530,8841266,3864,0 +54142,misiek1393,383,301,849027025,7951,0 +54143,Wioska+barbarzy%C5%84ska,364,315,3484132,6566,0 +54144,Wioska+Steven,686,370,699375903,2209,0 +54145,079+Wioska+barbarzy%C5%84ska,350,665,6354098,2723,0 +54146,P%C3%B3%C5%82nocny+Bagdad,625,307,8847546,6160,0 +54147,Wioska+barbarzy%C5%84ska,715,560,1601917,2241,0 +54148,Wioska+barbarzy%C5%84ska,298,613,698167138,674,0 +54149,Gubernia+01,364,313,849107532,2086,0 +54150,Wioska+barbarzy%C5%84ska,583,716,698723158,2311,0 +54151,0065,448,725,849037407,10484,0 +54152,%5B0207%5D,274,501,8630972,6524,0 +54153,Zaplecze+Barba+036,348,333,699796330,3509,0 +54154,126,384,695,849099876,8881,0 +54155,Op+Konfederacja,468,279,848915730,7344,0 +54156,Wioska+gazolek123,367,685,7242969,79,0 +54157,Wioska+xbarbarzy%C5%84ska,603,299,9106690,205,0 +54158,Wioska+Dnabuk,651,663,6167751,118,0 +54159,002,313,636,8752714,3639,0 +54160,24.VIXX,692,388,9180206,3727,0 +54161,Wioska+barbarzy%C5%84ska,677,353,2976468,4209,0 +54162,K42+ADAMUS+004,283,432,6212605,9172,2 +54163,%2A%2A%2A%2A+Niko+%2A%2A%2A%2A,486,345,1510264,4104,0 +54164,Wioska+111,686,639,848971079,2811,0 +54165,%3D108%3D+Wioska+barbarzy%C5%84ska,702,591,3781794,2783,0 +54166,Wakat,354,671,2725721,969,0 +54167,Wioska+Knykie%C4%87+Dyl,280,455,7927374,196,0 +54168,%3D109%3D+Wioska+barbarzy%C5%84ska,704,596,3781794,2690,0 +54169,Wioska+barbarzy%C5%84ska,386,303,698231772,3103,0 +54170,Wioska+barbarzy%C5%84ska,722,491,698191218,3528,0 +54171,%3D%7C08%7C%3D,692,375,9101574,9077,5 +54172,Warszawa,337,346,849103148,7107,0 +54173,MojeDnoToWaszSzczyt,494,269,9299539,9945,0 +54174,030+Legio+IX+Equites,723,559,699878150,1428,0 +54175,Wioska+barbarzy%C5%84ska,723,521,698191218,3802,0 +54177,Kapitol_05,505,721,606407,5286,0 +54178,%23047,559,285,849064614,1745,0 +54179,037.+5spajk5,689,378,2873154,1983,0 +54180,046+-+Strata,414,582,225023,6304,0 +54181,Wioska+jarko123,273,501,699448843,1083,0 +54182,Avanti%21,275,491,698625834,6475,0 +54183,X.07,725,450,699737356,2724,0 +54184,220...NORTH,426,286,6920960,2250,0 +54185,Cisza,284,553,698769107,2528,0 +54186,Wioska+Pokemon%C3%B3w,720,436,849102480,7274,0 +54187,Wioska+barbarzy%C5%84ska,682,641,698191218,3790,0 +54188,MojeDnoToWaszSzczyt,494,270,9299539,5208,0 +54189,Wioska+barbarzy%C5%84ska,697,400,699562182,1875,0 +54191,New+WorldA,277,539,849084005,3288,0 +54192,Wioska+barbarzy%C5%84ska,296,601,0,3033,0 +54193,201+.40.+Infanterie-Division,691,376,849091899,3166,0 +54194,North+K25,523,277,699146580,5416,0 +54195,001+%7C+North,381,696,699511295,10019,0 +54196,MojeDnoToWaszSzczyt,496,272,9299539,9945,0 +54197,Wioska+gall,272,473,699598396,5643,0 +54198,0123,370,691,7085510,7675,9 +54199,Nowe+Dobra+-+budowa,688,631,699759128,5044,0 +54200,%23129%23,658,666,692803,4048,0 +54201,007,273,453,698652171,4155,4 +54202,W004,301,384,849082154,569,0 +54203,Wioska+barbarzy%C5%84ska,554,715,699828442,9742,0 +54204,020,302,606,699356968,1975,0 +54205,Darlowo,469,272,699278528,5668,0 +54206,Wioska+bzyku195,336,651,849089512,426,0 +54207,Wioska+barbarzy%C5%84ska,548,718,699828442,9704,0 +54208,013.+Wioska+barbarzy%C5%84ska,700,388,2873154,7182,0 +54209,C0303,282,536,8841266,3825,0 +54210,North+078,598,292,849064752,4487,0 +54211,Www,505,394,849044961,2768,0 +54212,Wioska+barbarzy%C5%84ska,554,694,849099280,803,0 +54213,E001,635,313,699299123,4652,0 +54214,A-006,321,366,699406247,4349,0 +54215,022,698,620,7085502,7601,4 +54216,020+%7C+North,376,693,699511295,1794,0 +54217,wy...,597,700,699828685,4222,0 +54218,Lee%C5%9Bnica,297,597,1276665,8450,0 +54219,New+WorldA,282,543,849084005,5551,0 +54220,%3D110%3D+Wioska+barbarzy%C5%84ska,704,592,3781794,2189,0 +54222,komandos48,648,676,7976264,7085,0 +54223,Wioska+emilek,633,318,849040462,4639,0 +54224,Kandydat,691,372,7973893,1590,0 +54225,Osada+koczownik%C3%B3w,321,358,0,830,7 +54227,P%C3%B3%C5%82nocny+Bagdad,625,312,8847546,6780,0 +54228,Nowy+0006,299,594,849096972,4076,0 +54229,04Wioska+barbarzy%C5%84ska,362,685,699704542,6837,0 +54230,44.Ymlac,723,532,8976313,3197,0 +54231,P%C3%B3%C5%82nocny+Bagdad,616,303,8847546,7240,0 +54232,Wioska+barbarzy%C5%84ska,537,279,849105071,2595,0 +54233,0045,476,730,699280514,1245,0 +54234,Wioska+barbarzy%C5%84ska,595,290,849101409,1242,0 +54235,Op+Konfederacja,465,280,848915730,1370,0 +54236,%C5%9Aw181%2A003,661,345,959179,3125,0 +54237,001+bam,280,552,197581,9511,0 +54238,Grzejdas+4,695,387,849057764,3275,0 +54240,Wioska26,332,344,699711926,4194,0 +54241,Dhabfba,634,686,849102985,1673,0 +54242,kww06,717,544,8541236,2796,0 +54243,Z%C5%82oty+%C5%9Awit,585,295,699883079,7678,0 +54244,Far+far+away,284,580,849096458,2717,0 +54245,181+Wioska+Chmielu,716,509,848975192,2420,0 +54246,Wioska+barbarzy%C5%84ska,407,288,698231772,2675,0 +54247,Wioska+barbarzy%C5%84ska,416,287,3411571,9788,0 +54248,K33,309,390,699794765,1537,0 +54250,Wioska+barbarzy%C5%84ska,316,634,698908184,2404,0 +54251,komandos,660,662,7976264,3383,0 +54252,042+Wioska+barbarzy%C5%84ska,545,281,699854484,9835,0 +54253,Wioska+wieslaw1,502,276,699794421,5455,0 +54254,New+World,416,716,698152377,9858,0 +54255,New+World,433,717,698152377,10290,4 +54256,Wioska+barbarzy%C5%84ska+019,382,313,849068662,2990,0 +54257,...%3A%3A181+09%3A%3A...,276,510,699641777,3304,0 +54258,Wioska+barbarzy%C5%84ska,724,554,698666810,10615,0 +54259,A%23022,724,540,2065730,9797,9 +54261,Taka.,483,723,848999671,5989,0 +54262,3.Sheffield,567,719,698215322,8623,1 +54264,125+invidia,493,730,849093426,9635,5 +54266,070+Wioska+barbarzy%C5%84ska,542,282,699854484,8737,0 +54267,Kapitol_01,509,722,606407,4538,0 +54268,01+Kapitol,547,359,849108780,11487,0 +54269,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,720,8201460,9482,0 +54270,Stolica+Berciaka,540,341,849108784,7300,0 +54271,04Wioska+barbarzy%C5%84ska,361,681,699704542,8520,0 +54272,Piek%C5%82o+to+inni,638,325,848956765,3093,0 +54273,Wioska+barbarzy%C5%84ska,643,379,7973893,5662,0 +54274,064.,635,687,699373599,1667,0 +54275,New+WorldA,275,541,849084005,3430,0 +54276,komandos,661,663,7976264,2545,0 +54277,Wioska+Lord+Pynio,662,336,849018778,7266,0 +54278,Sony+911,716,583,1415009,5657,0 +54279,016.+Way+of+Blond,463,723,848896948,9108,5 +54280,K42+ADAMUS+005,281,433,6212605,9172,0 +54281,Wioska+barbarzy%C5%84ska,707,403,699598425,3740,0 +54282,Wioska+Bosman7,564,714,6948,209,0 +54283,Wioska+barbarzy%C5%84ska,311,367,699660539,2061,0 +54284,Wioska+barbarzy%C5%84ska,303,601,698167138,1770,0 +54285,C0307,278,536,8841266,3569,0 +54286,Wioska+barbarzy%C5%84ska,369,688,849030086,1912,0 +54287,ZZZ+.%3A%3A.+cinek3456%2F13,587,712,33900,1275,0 +54288,bandzior,498,729,606407,6485,0 +54289,%3D121%3D+Wioska+barbarzy%C5%84ska,714,564,3781794,2288,0 +54290,Po%C5%82udniowy+Wsch%C3%B3d+015,694,610,699778867,825,0 +54291,MP4%2F1B,405,299,8429484,2003,0 +54292,0000038Z,278,562,849089881,3373,0 +54293,R+049,492,729,699195358,3308,0 +54294,.achim.,568,289,6936607,5766,0 +54295,K33,318,386,699794765,3813,0 +54296,Wioska+barbarzy%C5%84ska,427,291,698231772,4028,0 +54297,Wioska+Lodar93,604,707,699828685,888,0 +54298,%C5%9Aw181%2A006,663,341,959179,1841,0 +54299,Grunwald+001,660,334,698290577,3450,0 +54300,Lord+Arsey+KING,664,648,848956513,7850,0 +54301,054+Wioska+barbarzy%C5%84ska,549,280,699854484,9835,0 +54302,-11.+Las+Grzybas,379,308,698345556,2338,0 +54303,Wioska+barbarzy%C5%84ska,401,702,849014922,3973,0 +54304,K42+ADAMUS+019,281,429,6212605,3935,0 +54305,Kapitol_08,499,723,606407,5954,0 +54306,27.+Ofir,722,533,8976313,7266,0 +54307,Wioska+barbarzy%C5%84ska,399,705,849014922,5856,0 +54308,...%3A%3A181+11%3A%3A...,273,511,699641777,3018,0 +54309,Wioska+barbarzy%C5%84ska,624,685,699699601,1177,0 +54310,Wioska+barbarzy%C5%84ska,350,672,0,738,0 +54311,0067,454,726,849037407,10291,0 +54312,127+invidia,493,731,849093426,9111,5 +54313,091,699,612,699373599,468,0 +54314,Wioska+barbarzy%C5%84ska,316,376,699660539,2705,0 +54315,Wioska+barbarzy%C5%84ska,704,393,699598425,2220,0 +54316,Wioska+barbarzy%C5%84ska+12,346,331,698757439,6583,0 +54317,BOA2,305,621,699829494,5256,0 +54318,Wioska+barbarzy%C5%84ska,713,573,2453888,9146,0 +54319,C0313,278,525,8841266,2594,0 +54320,007,408,298,9283775,2936,0 +54321,Warszawa,407,294,3411571,8103,0 +54322,Wioska+ziutek+1,517,274,7787254,7559,0 +54323,Wioska+barbarzy%C5%84ska,497,722,699429335,6023,0 +54324,D+%7C+Forest+Cyaaaanku,277,465,699213622,8714,9 +54325,Wioska+badadi+97,722,506,1043028,3283,0 +54326,072.+Wioska+barbarzy%C5%84ska,728,462,7494497,5877,0 +54327,051,668,656,2323859,3384,0 +54328,Wioska+barbarzy%C5%84ska,729,485,698191218,2534,0 +54329,062.,643,679,699373599,2339,0 +54330,Wioska+barbarzy%C5%84ska,716,417,698191218,1084,0 +54331,Mordownia+9,707,593,849101029,4464,0 +54332,XDX,613,301,699098531,5158,0 +54333,Zaplecze+ludzik%C3%B3w,354,322,699796330,9804,4 +54335,%230264+colt9,432,280,1238300,1474,0 +54336,O133,313,633,272173,4849,0 +54337,Wioska+barbarzy%C5%84ska,527,721,6116940,2447,0 +54338,Wioska+barbarzy%C5%84ska,679,629,6417987,1770,0 +54339,-001-,729,491,7418168,9823,0 +54340,Kiedy%C5%9B+Wielki+Wojownik,329,360,8632462,2085,0 +54341,082.+Wioska+barbarzy%C5%84ska,730,472,7494497,4083,0 +54342,Orgetoryks,327,358,848998530,1976,0 +54343,008.+Osada+koczownik%C3%B3w,706,395,2873154,10237,2 +54344,C016,545,718,698599365,1505,0 +54345,Wioska+barbarzy%C5%84ska,645,681,848987051,6843,0 +54347,No.3,326,346,849106612,1891,0 +54349,Piek%C5%82o+to+inni,650,328,848956765,4053,0 +54350,Wioska+Ozilo,686,367,699794720,5229,0 +54351,%7E%7E084%7E%7E,680,637,7829201,4646,0 +54352,KONFA+TO+MARKA%2C+NARKA,278,441,698152377,6778,0 +54353,North+033,518,272,849064752,6913,0 +54355,Kapitol_25,505,729,606407,3892,0 +54356,0174,370,683,7085510,2486,0 +54357,ZZZ+.%3A%3A.+cinek3456%2F09,586,709,33900,1769,0 +54358,KONFA+TO+MARKA%2C+NARKA,283,453,698152377,4274,0 +54360,Wioska+9,681,645,1647052,866,0 +54361,%23005,550,276,849064614,8862,0 +54362,Wioska+barbarzy%C5%84ska,353,668,0,501,0 +54363,Kiedy%C5%9B+Wielki+Wojownik,328,349,8632462,1361,0 +54364,Motorola+09,365,318,698806018,3843,0 +54365,003+%7C+North,383,697,699511295,8920,7 +54366,Wiadro24,680,642,8677963,3409,0 +54367,KONFA+TO+MARKA%2C+NARKA,276,446,698152377,8174,0 +54368,Wioska+barbarzy%C5%84ska,274,551,1095489,725,0 +54369,Wioska+017,669,356,7226782,4901,0 +54370,okk,697,623,848928486,409,0 +54371,Zzz+10+Vetiuss,281,570,849084740,5490,0 +54372,KONFA+TO+MARKA%2C+NARKA,292,418,698152377,3169,0 +54373,Kapitol_22,510,731,606407,4243,0 +54374,PPF-02,520,274,1424656,6059,0 +54375,O105,314,625,272173,7841,0 +54376,KONFA+TO+MARKA%2C+NARKA,281,441,698152377,5896,0 +54377,013+-+Budowanko%21,489,728,7540891,6660,0 +54379,C0288,280,546,8841266,4441,0 +54380,Wioska+barbarzy%C5%84ska,716,419,699722599,4877,0 +54381,%5B0237%5D,271,499,8630972,4856,0 +54383,Piek%C5%82o+to+inni,652,325,848956765,1745,0 +54384,Wioska+barbarzy%C5%84ska,629,688,6818593,1505,0 +54385,70.+Wioska+70,277,563,849091769,6978,6 +54386,O095,313,637,272173,7948,0 +54388,064+Wioska+barbarzy%C5%84ska,345,659,6354098,3517,0 +54389,.achim.,570,289,6936607,4414,0 +54390,011+-+Budowanko%21,489,726,7540891,6950,0 +54391,New+WorldA,271,536,849084005,1947,0 +54392,Wioska+barbarzy%C5%84ska,376,306,699191449,1440,0 +54393,04Wioska+barbarzy%C5%84ska,364,684,699704542,7567,0 +54394,Wioska+barbarzy%C5%84ska,732,509,6510480,5943,0 +54395,New+World,429,712,698152377,10290,0 +54396,Zadupie,680,358,699875213,2905,6 +54398,Wioska+barbarzy%C5%84ska,729,529,848946700,3039,0 +54399,Nowe+Dobra+-+budowa,684,625,699759128,5400,0 +54400,0047,478,728,699280514,1463,0 +54401,Wioska+Lord+Jack+Carver,324,646,8752714,5129,0 +54402,033.+Brauer92,702,394,2873154,10237,0 +54403,%5B807%5D+Odludzie,712,434,848985692,7653,0 +54405,%24001%24+Isengard,305,624,699550876,10019,0 +54406,061.,447,725,849034882,9628,0 +54408,022+KTW,724,446,848883237,10971,2 +54409,Wioska+barbarzy%C5%84ska,388,300,3842862,571,0 +54410,%23032,557,280,849064614,2315,0 +54411,Wioska+barbarzy%C5%84ska,602,302,699323781,223,0 +54412,%230188+barbarzy%C5%84ska,661,336,1238300,5519,0 +54413,Wioska+Soldier2020,622,693,699883836,9107,0 +54414,XDX,608,305,699098531,3914,0 +54415,O154,316,629,272173,908,0 +54416,Wioska+barbarzy%C5%84ska,319,630,698908184,5283,0 +54417,Wioska28,334,345,699711926,2170,0 +54418,KONFA+TO+MARKA%2C+NARKA,283,435,698152377,8574,0 +54419,Wioska+barbarzy%C5%84ska,278,527,699425709,1353,0 +54420,North+093,596,292,849064752,4442,0 +54422,076.+Acci,723,460,849091866,4335,0 +54423,005,295,593,698663855,10068,0 +54424,044Bagno,468,723,698620694,7233,0 +54425,Z01,374,695,698652014,1751,0 +54426,-27-,584,710,849032414,3383,0 +54427,021,290,424,6131106,2463,0 +54428,030Boli+g%C5%82owa,501,715,698620694,2812,0 +54429,0106,691,379,698416970,2628,0 +54430,Wioska+barbarzy%C5%84ska,353,329,8772425,1763,0 +54431,Szarowki,601,709,848912937,5080,0 +54432,Psycha+Siada,324,648,8099868,5054,0 +54434,Wioska+barbarzy%C5%84ska,553,716,699828442,9167,0 +54435,%3D111%3D+Wioska+barbarzy%C5%84ska,709,578,3781794,4447,0 +54436,71.+Wioska+71,277,564,849091769,2889,0 +54437,PPF-40,537,275,1424656,822,0 +54439,04Wioska+barbarzy%C5%84ska,357,674,699704542,7304,0 +54440,Spoko%2C+nie+szkodzi,711,407,699785935,2591,0 +54441,MERHEt,588,705,698215322,3610,0 +54442,012+%7C+North,375,686,699511295,5154,0 +54443,%23002,553,279,849064614,9325,0 +54444,Wioska+barbarzy%C5%84ska,561,715,699712422,791,0 +54445,071+Wioska+barbarzy%C5%84ska,340,665,6354098,2419,0 +54446,Wioska+003,670,347,7226782,6141,0 +54447,KONFA+TO+MARKA%2C+NARKA,287,413,698152377,2783,0 +54448,016+Twierdza,633,677,849104328,7280,0 +54449,Wioska+004,673,353,7226782,3504,0 +54450,t010,671,348,2262902,7373,8 +54451,002+wolno%C5%9B%C4%87,335,659,6910361,844,0 +54452,04Wioska+barbarzy%C5%84ska,364,679,699704542,6966,0 +54453,%23%23%23154%23%23%23,610,694,698285444,10495,0 +54454,CastAway+%23018,710,585,9314079,3585,0 +54455,Wiadro20,686,636,8677963,1321,0 +54456,C.057,723,481,9188016,1494,0 +54457,MojeDnoToWaszSzczyt,507,272,9299539,9945,0 +54459,Wioska+barbarzy%C5%84ska,450,276,699308637,1868,0 +54460,003,306,374,849109795,5980,4 +54461,33.+Vicovaro,724,527,8976313,6005,0 +54462,Wioska+barbarzy%C5%84ska,722,475,113796,1002,0 +54463,039+Ever+Grande+City,730,483,699441366,4899,0 +54464,Wioska+barbarzy%C5%84ska,658,334,699072129,7139,0 +54465,Wioska17,704,579,699266530,4492,0 +54466,Osada+koczownik%C3%B3w,459,281,699393759,3867,3 +54467,C.053,720,477,9188016,4491,0 +54468,011.+Calzone,316,371,849102092,8450,0 +54469,110+Takahashi,636,471,7092442,3362,0 +54470,szymek2,280,426,1323424,3951,0 +54471,Wioska+barbarzy%C5%84ska,458,275,699191464,3160,0 +54472,2+lozi20,726,456,849095599,2193,0 +54473,Wioska+barbarzy%C5%84ska,712,427,699722599,3888,0 +54474,%23010,548,273,849064614,6651,0 +54475,Zaplecze+Barba+037,356,331,699796330,4851,0 +54477,Wioska+barbarzy%C5%84ska,550,718,699828442,9741,0 +54478,Avanti%21,273,476,698625834,3739,0 +54479,moria,295,391,698677650,4234,0 +54480,New+WorldA,279,518,849084005,1238,0 +54481,%230261+c%C5%82opciec,478,278,1238300,1128,0 +54482,045Cacu%C5%9B-Lion,471,728,698620694,4672,0 +54483,%23022,544,274,849064614,2597,0 +54484,181,518,279,849107799,992,0 +54485,North+K25,535,272,699146580,5787,0 +54486,Wioska+barbarzy%C5%84ska,726,544,848946700,2292,0 +54487,Wioska+barbarzy%C5%84ska,371,691,849096945,872,0 +54488,124,386,695,849099876,8432,6 +54490,P%C3%B3%C5%82nocny+Bagdad,630,316,8847546,3638,0 +54491,Wioska+barbarzy%C5%84ska,297,607,699604515,292,0 +54492,086+Wioska+barbarzy%C5%84ska,475,280,699854484,10028,0 +54493,Wioska+2,270,511,849114265,3704,3 +54494,Wioska+Go%C5%82abek,595,298,849070736,5870,0 +54495,129.Stradi,398,296,698365960,2821,0 +54496,-28-,577,709,849032414,8400,0 +54497,Wioska27,331,343,699711926,4772,0 +54498,Wioska+barbarzy%C5%84ska,386,694,849014922,2106,0 +54499,.achim.,571,286,6936607,5150,0 +54500,XDX,614,306,699098531,4926,0 +54501,Nowe+Dobra+-+budowa,689,629,699759128,5901,0 +54502,Wioska,706,587,3692413,576,0 +54503,Wioska+barbarzy%C5%84ska,709,419,699722599,4357,0 +54504,029.+Brauer92,700,395,2873154,7467,0 +54505,038+Pacifidlog+Town,728,483,699441366,3779,0 +54506,Ghostmane3,717,449,848896434,2476,0 +54507,New+World,413,711,698152377,10094,0 +54508,014,606,301,699117992,1152,0 +54509,%23015,555,276,849064614,5149,0 +54510,055,666,649,2323859,926,0 +54511,058.,640,673,699373599,1981,0 +54512,...%3A%3A181+06%3A%3A...,274,516,699641777,3674,3 +54513,Wioska+barbarzy%C5%84ska,692,612,6160655,865,0 +54514,MojeDnoToWaszSzczyt,504,272,9299539,9947,0 +54515,Wioska+barbarzy%C5%84ska,724,493,6510480,1363,0 +54516,064,695,623,699099811,288,0 +54517,MojeDnoToWaszSzczyt,497,270,9299539,9946,0 +54518,006,609,303,699117992,9146,8 +54519,094,724,508,7085502,3387,0 +54520,KONFA+TO+MARKA%2C+NARKA,281,428,698152377,4448,0 +54521,Xardas,625,317,848974611,5712,0 +54522,002+%7C+North,382,695,699511295,10019,0 +54523,P%C3%B3%C5%82nocny+Bagdad,628,317,8847546,2699,0 +54524,Wioska+barbarzy%C5%84ska,396,697,849014922,4106,0 +54525,Wioska+barbarzy%C5%84ska,394,706,849014922,6054,0 +54526,060KP,484,273,849063849,2675,0 +54527,Wioska+barbarzy%C5%84ska,724,555,698666810,8666,0 +54528,So%C5%9Bnica+3,286,578,848892804,623,0 +54529,Wioska+Lisu79,279,464,699812351,4114,0 +54530,Z%C5%82oty+%C5%9Awit,598,297,699883079,5919,0 +54531,Wioska21,331,346,699711926,4406,0 +54532,063KP,480,271,849063849,2296,0 +54533,Wioska+001,670,348,7226782,9693,0 +54534,wy...m,599,700,699828685,3860,0 +54535,0018,681,632,6417987,1585,0 +54536,Wioska+Pracz+7,308,622,8916982,6714,0 +54537,Wioska+barbarzy%C5%84ska,564,716,7756002,5735,0 +54538,Psycha+Siada,323,647,8099868,6927,0 +54539,019,294,606,699356968,6527,0 +54541,BB2,269,516,849110365,1717,0 +54542,04Wioska+barbarzy%C5%84ska,358,671,699704542,6429,0 +54543,North+034,515,269,849064752,6172,0 +54544,K%C5%82odzko,674,637,848932879,2253,0 +54545,WOLA0005,675,360,6956104,3624,0 +54546,MojeDnoToWaszSzczyt,505,275,9299539,9945,0 +54548,016,339,343,849101205,1370,0 +54550,Wioska+barbarzy%C5%84ska,730,522,698191218,3222,0 +54551,Wioska+mily546,646,675,747422,818,0 +54552,Kartagina,691,620,7550472,9711,0 +54553,%23205+C,509,732,9037756,4718,0 +54554,033.+Gloria+Victis,281,572,848886973,4532,0 +54555,Wioska+Waldemark,703,611,6921135,4553,0 +54557,Nowa+61,723,564,698702991,3634,0 +54558,008,273,450,698652171,3220,1 +54559,Wioska+Boginysa,312,625,2324569,3265,0 +54560,t014,668,351,2262902,7340,0 +54561,Wioska+barbarzy%C5%84ska,319,370,0,614,0 +54562,Wioska+barbarzy%C5%84ska,681,637,698191218,3280,0 +54563,Sony+911,672,655,1415009,6286,0 +54564,O149,314,630,272173,2454,0 +54565,Kurnik,447,719,699603116,7628,0 +54567,W00,323,636,698908184,5693,0 +54568,007+Wioska+F,285,570,6240801,2974,0 +54569,Avanti%21,275,468,698625834,2416,0 +54570,Wioska+barbarzy%C5%84ska,638,680,848987051,5045,0 +54571,Wioska+wilka+05,719,563,6786449,8067,0 +54572,Wioska32,336,349,699711926,1547,0 +54573,Wioska+a,426,283,6343784,6849,0 +54574,North+109,509,271,849064752,1401,0 +54576,Kapitol_15,498,731,606407,4586,0 +54577,R+050,497,732,699195358,2391,0 +54578,Wioska+barbarzy%C5%84ska,729,541,8323711,905,0 +54579,KONFA+TO+MARKA%2C+NARKA,286,440,698152377,10295,0 +54580,Wioska+barbarzy%C5%84ska,553,726,699828442,4550,0 +54581,4-Wioska+-OB,692,611,1205898,1461,0 +54582,038+KTW,723,453,848883237,1989,7 +54583,Wioska+barbarzy%C5%84ska,725,464,699574408,2609,0 +54584,0017+Domek+Miniuka+01,479,727,699656989,8543,0 +54585,B004,520,278,699485250,7685,0 +54586,A%23048,706,406,2065730,6882,0 +54587,Piek%C5%82o+to+inni,643,324,848956765,4070,0 +54588,TRENER,373,682,849097837,773,0 +54589,Obrze%C5%BCe,603,707,7589468,3361,0 +54590,.achim.,578,289,6936607,2496,0 +54591,113.Stradi,424,282,698365960,7401,0 +54592,065,692,623,699099811,3080,0 +54593,%24003%24+XMAS,305,626,699550876,9428,0 +54594,021,302,612,699356968,1671,0 +54595,--041--,575,291,542253,2914,0 +54596,053,655,666,2323859,2001,0 +54598,Wioska+Pracz+2,309,625,8916982,7241,0 +54599,Z%C5%82oty+%C5%9Awit,593,297,699883079,1353,0 +54600,A+co+Gazet+nie+czytasz+%3F,271,510,849105417,1096,0 +54601,Wioska+barbarzy%C5%84ska,691,627,849092827,471,0 +54602,%23041,557,284,849064614,1411,0 +54603,Flap,615,298,699098531,6228,0 +54604,Tomek+II,384,490,699265922,8346,0 +54605,Wioska22,330,347,699711926,4824,0 +54606,Wioska+barbarzy%C5%84ska,385,702,849014922,5856,0 +54607,Piek%C5%82o+to+inni,642,328,848956765,3433,0 +54608,Lord+Arsey+KING,665,649,848956513,4967,0 +54609,CZARNA+PER%C5%81A,279,544,848930898,8047,0 +54610,Wioska+barbarzy%C5%84ska,397,704,849014922,6433,0 +54611,Wioska+027,672,354,7226782,893,0 +54612,New+World,432,712,698152377,7562,0 +54613,ATYPOWY,292,602,699774694,3625,0 +54614,B014,530,270,699485250,5081,0 +54615,Wioska+barbarzy%C5%84ska,302,602,698167138,597,0 +54616,Wioska+barbarzy%C5%84ska,531,727,849066849,1220,0 +54617,Wioska+MGryglak95,291,599,849108971,2998,0 +54618,Wioska+barbarzy%C5%84ska,394,705,849014922,6347,0 +54619,KONFA+TO+MARKA%2C+NARKA,294,416,698152377,2383,0 +54620,North+035,511,268,849064752,7010,0 +54621,XDX,617,305,699098531,3556,0 +54622,Wioska+barbarzy%C5%84ska,407,290,698231772,3091,0 +54624,Kurnik,451,719,699603116,8865,0 +54625,04+Tabaluga1922,636,322,6517826,1921,0 +54626,Wioska+0026,341,659,9186126,882,0 +54627,Wioska+M2,549,718,849085293,230,0 +54628,U-09,653,323,3600737,2363,0 +54629,North+094,600,294,849064752,4564,0 +54630,%7CD%7C+Wolffall,456,720,698147372,3809,0 +54631,%230058,578,711,1536231,4108,0 +54632,XDX,606,302,699098531,3688,0 +54633,050+Osada+koczownik%C3%B3w,345,662,6354098,6334,9 +54634,Wioska+014,673,346,7226782,1874,0 +54635,Wioska+barbarzy%C5%84ska,729,490,698191218,3018,0 +54636,004,292,590,698663855,10068,0 +54637,005,404,297,9283775,2836,0 +54638,Pcim+G%C3%B3rny,466,277,849100083,3460,0 +54639,New+World,433,719,698152377,10290,0 +54640,Wioska+barbarzy%C5%84ska+002,718,434,7588382,3715,0 +54641,komandos,667,652,7976264,4144,0 +54642,nowa+3,626,687,699372829,812,0 +54643,Wioska+barbarzy%C5%84ska,364,318,3484132,4957,0 +54644,K42+ADAMUS+013,280,429,6212605,5785,0 +54645,PPF-29,568,279,1424656,1517,0 +54646,Avanti%21,273,468,698625834,2417,0 +54647,MORO1,463,276,848952566,4319,0 +54648,Wioska+maciusw,395,696,699747504,154,0 +54649,Wioska+barbarzy%C5%84ska,301,612,0,965,0 +54650,Wioska+henior123,380,309,698160606,624,0 +54651,MojeDnoToWaszSzczyt,488,273,9299539,9945,0 +54652,zzosa,704,603,3986807,1300,5 +54653,New+World,437,720,698152377,2210,0 +54654,XDX,611,297,699098531,3674,0 +54655,008,682,359,9148043,6984,4 +54656,North+036,509,270,849064752,6842,0 +54657,Wioska+barbarzy%C5%84ska,412,293,698231772,5221,0 +54658,P%C3%B3%C5%82nocny+Bagdad,618,303,8847546,6700,0 +54659,Wioska+runiczna,409,300,698231772,4355,10 +54660,Wioska+runiczna,421,302,698231772,4355,10 +54661,Wioska+runiczna,446,313,8630972,10495,10 +54662,XDD,474,316,698489071,10661,10 +54663,magiczna+flet,496,308,848918380,10178,10 +54664,Runy+na+runy,414,329,699796330,9740,10 +54665,XDDD,431,323,698489071,2422,10 +54666,Wioska+barbarzy%C5%84ska,440,329,0,6598,10 +54667,%230066+runiczna,474,336,1238300,10178,10 +54668,XDD,481,321,698489071,9675,10 +54669,10002+runiczna,418,354,699431255,9512,10 +54670,Runy+zn%C3%B3w+Runy,433,343,699796330,9740,10 +54671,K34+-+%5B080%5D+Before+Land,442,355,699088769,9365,10 +54672,Gr%C3%B3d+5,463,343,699204478,8811,10 +54673,Wioska+runiczna,491,340,698739350,9825,10 +54674,A-048-Heffitto,402,367,8419570,10168,10 +54675,Wioska+runiczna,425,378,699796330,10460,10 +54676,10001+runiczna,441,371,699431255,8984,10 +54677,VN+Feitan+Portor,464,369,699883079,9672,10 +54678,.039.,492,377,698489071,9865,10 +54679,Wioska+runiczna,411,386,699402816,9835,10 +54680,Kentin+ufam+Tobie,431,389,699783765,10000,10 +54681,K34+x008+Wioska+Runiczna,444,390,698364331,9331,10 +54682,.041.,471,390,698489071,10001,10 +54683,Napewno+to+nie+jest+off,494,397,848912265,7787,10 +54684,magiczna+flet,508,303,848918380,10178,10 +54685,AAA,539,317,1006847,7079,10 +54686,BRICKLEBERRY,554,304,699072129,5903,10 +54687,Wioska+runiczna,568,303,849054951,10047,10 +54688,Wioska+krumlow+13,592,308,699098531,1856,10 +54689,Lord+Lord+Franek+.%23177,518,330,698420691,9672,10 +54690,Lord+Lord+Franek+.%23083,523,336,698420691,9955,10 +54691,Wioska+runiczna,542,337,2972329,4668,10 +54692,K35+-+%5B033%5D+Before+Land,576,322,699088769,4579,10 +54693,K35+-+%5B038%5D+Before+Land,585,320,699088769,3696,10 +54694,Lord+Lord+Franek+.%23109,510,344,698420691,9955,10 +54695,Lord+Lord+Franek+.%23084,534,344,698420691,9955,10 +54696,Wioska+runiczna,550,349,699072129,8680,10 +54697,Wioska+XVI,577,347,698200480,3736,10 +54698,020+Schwere+Panzer-Abteilung+505,597,357,849091899,2540,10 +54699,.040.,509,371,698489071,10030,10 +54700,000,529,360,1990750,10068,10 +54701,.%3A050%3A.+%C5%81OBUZIK,549,370,848934935,7289,10 +54702,Wioska+runiczna,561,362,699072129,10216,10 +54703,Weso%C5%82ych+%C5%9Awi%C4%85t+%2B,591,363,848915730,5839,10 +54704,.038.,503,381,698489071,9989,10 +54705,000,527,390,1990750,10068,10 +54706,Taran,547,386,699170684,9426,10 +54707,077R,573,397,849063849,6559,10 +54708,C+019,597,393,6384450,9311,10 +54709,Sruniczna,314,416,356642,9821,10 +54710,Sruniczna,321,404,356642,9835,10 +54711,%2A166%2A,348,408,699273451,8314,10 +54712,R%C4%99cznik+do+zmiany,373,406,699697558,9854,10 +54713,012,379,405,848945529,9995,10 +54714,Wioska+runiczna,309,429,849099859,3686,10 +54715,magiczna+flet,336,427,848918380,10178,10 +54716,magiczna+flet,346,422,848918380,10178,10 +54717,M181_019,359,434,393668,8988,10 +54718,magiczna+flet,390,427,848918380,10178,10 +54719,KONFA+TO+MARKA%2C+NARKA,310,454,698152377,10290,10 +54720,Wioska+runiczna,329,445,849096547,4092,10 +54721,Wioska+runiczna,340,452,393668,1501,10 +54722,Kentin+ufam+Tobie,370,452,699783765,10000,10 +54723,s181eo25,396,451,393668,8043,10 +54724,KONFA+TO+MARKA%2C+NARKA,303,460,698152377,10290,10 +54725,Wioska+Bochuniczna10,331,475,7449254,8549,10 +54726,Kentin+ufam+Tobie,340,470,699783765,10000,10 +54727,A0257,378,473,8841266,10252,10 +54728,Wioska+runiczna,384,460,698807570,10047,10 +54729,Dream+on,304,486,698962117,9697,10 +54730,A0284,330,484,8841266,10252,10 +54731,Kentin+ufam+Tobie,342,480,699783765,10000,10 +54732,Mniejsze+z%C5%82o+0054,378,484,699794765,7763,10 +54733,Wioska+runiczna,393,497,698290577,6871,10 +54734,zupe%C5%82nie+normalna+wioska,413,414,699323302,10997,10 +54735,0000,433,419,3909522,9348,10 +54736,10003+runiczna,444,417,699431255,9512,10 +54737,Monetki,477,410,699098531,9814,10 +54738,Uwaga+b%C4%99d%C4%99+broni%C4%87%21+-+Roman+kaza%C5%82,487,409,699433558,10311,10 +54739,Wioska+runiczna,403,429,7462660,10093,10 +54740,Wioska+runiczna,428,428,9291984,7726,10 +54741,Wioska+runiczna,456,426,9291984,9188,10 +54742,Monetki,471,421,699098531,9814,10 +54743,7.62+mm,486,439,699777234,10019,10 +54744,KONFA+TO+MARKA%2C+NARKA,408,459,698152377,10290,10 +54745,Suppi,437,450,699856962,9549,10 +54746,Wioska+runiczna,446,458,699660539,8696,10 +54747,Os+Konfederacja,469,449,848915730,9682,10 +54748,BR01,487,448,699299123,9680,10 +54749,Kentin+ufam+Tobie,404,478,699783765,10000,10 +54750,KONFA+TO+MARKA%2C+NARKA,422,459,698152377,10290,10 +54751,%2B44+74+Lyon+Fourviere,446,473,698361257,9705,10 +54752,BR02,476,470,699299123,10423,10 +54753,124+Culiacan,481,459,1497168,9761,10 +54754,PRO8L3M,411,492,7491093,7651,10 +54755,SsSs,423,487,1536625,10139,10 +54756,035,442,491,699510259,9741,10 +54757,123+Mazatlan,477,480,1497168,9761,10 +54758,Pf+Konfederacja,486,483,848915730,9786,10 +54759,.%3A000%3A.+Chillout,500,405,848934935,9440,10 +54760,Wioska+runiczna,535,402,7758085,9498,10 +54761,Hhh,540,409,7271812,10495,10 +54762,133,559,413,849064752,10311,10 +54763,South+K45,582,400,699146580,8188,10 +54764,Wioska+runiczna,501,421,699658023,8378,10 +54765,Piek%C5%82o+to+inni,525,431,848956765,10160,10 +54766,.%3A095%3A.+Chillout,542,437,848934935,4824,10 +54767,ADEN,570,425,698588535,9305,10 +54768,%5B354%5D+Chor%C4%85giewka+na+wietrze,585,436,848985692,9919,10 +54769,.%3A052%3A.+Chillout,519,443,848934935,3158,10 +54770,229+Jakarta,536,446,1497168,8130,10 +54771,Wioska+runiczna,544,448,0,2196,10 +54772,.....yhj,576,446,699368887,4974,10 +54773,056.+Runa,580,457,849094609,5200,10 +54774,Szlachcic,506,466,699098531,6185,10 +54775,SINGAPUR,537,472,8155296,6798,10 +54776,016,547,470,699194766,8487,10 +54777,%21+Wioska+runiczna,562,461,477415,9490,10 +54778,087.+Runa,587,459,849094609,2670,10 +54779,126.,512,486,8788366,6993,10 +54780,%5B087%5D,539,491,848985692,9675,10 +54781,0061,544,487,698416970,8199,10 +54782,%7E%7ELataj%C4%85cyHolender%7E%7E,563,494,9174887,9555,10 +54783,%7E%7ELataj%C4%85cyHolender%7E%7E,581,489,9174887,9141,10 +54784,Wioska+runiczna,614,400,0,2281,10 +54785,Wioska+runiczna,628,411,699429153,9825,10 +54786,073-+Mroczna+Osada,641,406,849035905,3084,10 +54787,Wioska+barbarzy%C5%84ska,663,407,0,3845,10 +54788,Wioska+barbarzy%C5%84ska,698,400,8000875,9995,10 +54789,%23047.495%7C486,614,437,556154,9735,10 +54790,%2A0016+co+to+jest,633,421,8459255,10315,10 +54791,I076+Potrzymaj+mi+piwo,658,439,699722599,10113,10 +54792,Jehu_Kingdom_99,664,426,8785314,6228,10 +54793,Wioska+runiczna,684,425,699738350,7452,10 +54794,055.+Runa,603,445,849094609,5121,10 +54795,0051,631,453,698416970,9258,10 +54796,Wioska+runiczna,643,446,849088515,10019,10 +54797,I077,660,446,699722599,10050,10 +54798,I078,686,453,699722599,9405,10 +54799,041.+Wioska+runiczna,608,469,8337151,9868,10 +54800,040.+Avennio,625,463,849091866,10231,10 +54801,Wioska+runiczna,656,462,849088515,7808,10 +54802,072+Shimoda,668,474,7092442,10164,10 +54803,%2A028%2A,679,464,698670524,8630,10 +54804,Wioska+runiczna,600,482,699573053,10380,10 +54805,031+runiczna,632,494,9238175,10280,10 +54806,Jehu_Kingdom_98,658,492,8785314,4230,10 +54807,062.+Runa,670,485,849094609,5161,10 +54808,0119,692,491,699429153,9825,10 +54809,C0012,306,518,8841266,10252,10 +54810,015.Wioska+runiczna,334,506,1830149,4448,10 +54811,The+Game+Has+Only+Just+Begun,348,512,9280477,9976,10 +54812,Wioska+runiczna,369,503,699265922,3483,10 +54813,Wioska,392,502,849084005,10178,10 +54814,C0179,301,526,8841266,10252,10 +54815,Chekku+-+meito,339,521,9280477,9976,10 +54816,Chekku+-+meito,342,529,9280477,9976,10 +54817,Wioska+runiczna,362,521,698641566,9017,10 +54818,Wioska,384,538,849084005,10178,10 +54819,Wioska+barbarzy%C5%84ska,304,558,0,3780,10 +54820,Wioska+barbarzy%C5%84ska,322,547,0,1926,10 +54821,Jestem+Poza+Kontrol%C4%85,356,548,8004076,8221,10 +54822,042,362,541,8908002,9032,10 +54823,Wioska,384,543,849084005,10178,10 +54824,Psycho+to+Marka%2C+Narka+%21,319,575,698704189,6248,10 +54825,%28017%29Shattered+Plains,326,567,849098695,8149,10 +54826,x004,357,565,9264752,8569,10 +54827,076+Wioska+runiczna,373,575,699382126,9540,10 +54828,Wioska+runiczna,398,563,9167250,9362,10 +54829,Wioska+runiczna,317,593,0,2537,10 +54830,Wioska+runiczna,339,583,0,2537,10 +54831,Myk+i+do+kieszonki,351,583,9319058,9116,10 +54832,21.+Gara%C5%BC+u+bory%C5%82y,372,597,8665783,8957,10 +54833,Pobozowisko,386,583,699513260,10242,10 +54834,093,402,514,699851427,10129,10 +54835,Zdecydowanie+nie+Wioska+runiczna,422,512,9236866,10042,10 +54836,Wioska+runiczna,450,501,698290577,5013,10 +54837,232+Kair,467,503,1497168,2917,10 +54838,Wioska+runiczna,482,510,0,2537,10 +54839,Wioska+runiczna,411,533,699425709,9544,10 +54840,Suppi,439,523,699856962,9549,10 +54841,Winter+is+coming,445,537,698971484,9533,10 +54842,Wioska+runiczna,467,538,0,2537,10 +54843,Wioska+runiczna,494,520,848967710,9049,10 +54844,144+Wioska+runiczna,401,550,699382126,8655,10 +54845,Zdecydowanie+nie+Wioska+runiczna,429,543,9236866,5228,10 +54846,NOT%3F,444,553,698971484,4661,10 +54847,0343,469,559,698659980,8441,10 +54848,%230083+Runa,490,559,9272054,9488,10 +54849,Wioska+runiczna,403,574,849084740,6152,10 +54850,IIIIIII,427,577,225023,10495,10 +54851,Nuniczna,457,569,699443920,9203,10 +54852,Wioska+runiczna,478,570,8539216,1521,10 +54853,Wioska+runiczna,487,572,8539216,2152,10 +54854,Pobozowisko,405,594,699513260,6798,10 +54855,JJJJJ,429,586,225023,10495,10 +54856,0551,442,588,698659980,5726,10 +54857,Madzia,469,582,2585846,8567,10 +54858,Wioska+runiczna,489,586,699364813,8784,10 +54859,Lord+Arsey+KING,517,506,848956513,10285,10 +54860,Wioska+14,526,511,699385139,8713,10 +54861,%5B129%5D,541,500,8000875,9489,10 +54862,Nitro,569,503,699379895,10450,10 +54863,%5B032%5D+Te+occidere,582,511,848985692,10633,10 +54864,0071+runiczna,517,531,699432672,10495,10 +54865,JaamMwG+026,526,528,848987051,9881,10 +54866,Lord+Arsey+KING,546,532,848956513,10285,10 +54867,%5B127%5D,567,534,8000875,9881,10 +54868,%5B033%5D+Nogalinat+tevi,580,530,848985692,10390,10 +54869,Yogi,511,554,2808172,8550,10 +54870,Wioska+runiczna,530,543,7581876,8724,10 +54871,%5B123%5D,558,556,8000875,9740,10 +54872,%5B130%5D,563,550,8000875,9183,10 +54873,Let+It+Be,591,558,848926293,9445,10 +54874,Wioska+runiczna,501,560,3613413,9840,10 +54875,Wioska+runiczna,521,565,699189792,9740,10 +54876,%5B150%5D,555,576,8000875,9106,10 +54877,Runiczny+Ronin%3F,561,563,699785935,10311,10 +54878,0028+MzM,597,559,698416970,9258,10 +54879,%230100,500,594,1536231,10495,10 +54880,-+153+-,535,581,849018239,10000,10 +54881,Wioska+runiczna,554,586,699784536,10311,10 +54882,Lord+Arsey+KING,572,591,848956513,10285,10 +54883,0037+MzM,597,593,698416970,9060,10 +54884,Si%C5%82a%2C+Masa%2C+Rze%C5%BAba+09,611,513,699379895,10362,10 +54885,056+%C5%81%C3%B3d%C5%BA,638,514,7092442,10297,10 +54886,Wioska+runiczna,651,517,6510480,9461,10 +54887,Wioska+runiczna,670,509,6510480,9185,10 +54888,W%C5%82adcy+P%C3%B3%C5%82nocy+02,685,503,699379895,10474,10 +54889,Wioska+runiczna,614,527,6510480,9786,10 +54890,Wioska+runiczna,622,533,6510480,9786,10 +54891,Wioska+runiczna,641,534,6510480,9156,10 +54892,Wioska+runiczna,677,537,848995478,4656,10 +54893,LAST+%21%21%21,686,527,1563417,7414,10 +54894,0027+MzM,604,557,698416970,9258,10 +54895,Wioska+runiczna,629,552,8742874,8048,10 +54896,TWIERDZA+.%3A064%3A.,655,559,7154207,10019,10 +54897,TWIERDZA+.%3A058%3A.,663,555,7154207,9326,10 +54898,Wioska+runiczna,697,543,848995478,4488,10 +54899,Wioska+runiczna,616,565,698702991,9740,10 +54900,Wioska+runiczna,630,564,8742874,7665,10 +54901,TWIERDZA+.%3A059%3A.,659,561,7154207,9430,10 +54902,044.+Wioska+runiczna,667,577,8337151,10083,10 +54903,TWIERDZA+.%3A057%3A.,695,569,7154207,9709,10 +54904,0042+MzM,604,592,698416970,9151,10 +54905,PUSTO,624,584,698768565,6158,10 +54906,042.+Wioska+runiczna,642,595,8337151,10083,10 +54907,043.+Wioska+runiczna,670,583,8337151,10083,10 +54908,045.+Wioska+runiczna,693,579,8337151,10083,10 +54909,Pobozowisko,409,608,699513260,9278,10 +54910,Wioska+runiczna,431,617,6910361,3657,10 +54911,035,442,619,849084985,10311,10 +54912,081,468,617,699336777,7507,10 +54913,Wioska+runiczna,491,617,699494488,9740,10 +54914,Wioska+sobie+014,402,639,7349282,10301,10 +54915,0022+Wioska+runiczna,424,635,9060641,3017,10 +54916,Wioska+runiczna,457,624,699342219,7490,10 +54917,082,469,624,699336777,5947,10 +54918,Wioska+runiczna,486,628,699494488,9689,10 +54919,Wioska+runiczna,409,656,0,2494,10 +54920,Wioska+runiczna,429,658,0,2537,10 +54921,Wioska+runiczna,440,656,0,2537,10 +54922,042%7C%7C+Delphinus,475,652,849035525,9904,10 +54923,Ave+Why%21,495,642,698585370,9772,10 +54924,Wioska+runiczna,411,659,0,2537,10 +54925,Wioska+runiczna,426,668,699736927,8111,10 +54926,Wioska+runiczna,440,660,0,2537,10 +54927,018+Wioska+runiczna,474,665,699834004,5441,10 +54928,%7C040%7C+Wioska+runiczna+K64,494,672,699393742,10160,10 +54929,Wioska+runiczna,410,681,699736927,9605,10 +54930,New+World,438,682,698152377,10315,10 +54931,A19,447,694,698652014,4130,10 +54932,B09,460,686,698652014,5328,10 +54933,A007+RUN,491,680,8954402,10965,10 +54934,0344,519,601,698659980,9976,10 +54935,Mako+Reactor+1+-+B1F,525,612,8199417,9922,10 +54936,Wioska+runiczna,559,601,699342219,10238,10 +54937,Wioska+runiczna,573,619,0,2281,10 +54938,Wioska+runiczna,583,606,699342219,9853,10 +54939,SSJ+056,505,630,699364813,9761,10 +54940,Lower+Level+-+Corporate+Archives,521,621,8199417,10224,10 +54941,0345,541,624,698659980,9976,10 +54942,Yogi,576,639,2808172,8366,10 +54943,0099,589,630,698416970,8097,10 +54944,0530,519,658,698659980,10362,10 +54945,0346,535,644,698659980,10019,10 +54946,yogi,556,641,2808172,8036,10 +54947,Yogi,562,640,2808172,8899,10 +54948,Sony+911,590,643,1415009,10201,10 +54949,029.+Wioska+runiczna,518,668,848928624,6092,10 +54950,0531,521,666,698659980,10362,10 +54951,Wioska+runiczna,556,669,848915531,10238,10 +54952,005.+Wioska+runiczna,574,664,1270916,4958,10 +54953,Wioska+runiczna,585,670,9023703,4286,10 +54954,031.+Wioska+runiczna,507,685,849004274,9155,10 +54955,-+156+-+SS,538,693,849018239,10000,10 +54956,-+158+-+SS,545,695,849018239,10000,10 +54957,nr5,576,680,364126,7896,10 +54958,nr6,588,692,364126,2841,10 +54959,C0253,273,522,8841266,4409,0 +54960,Bunu1,310,366,849050087,1177,0 +54961,New+WorldA,281,540,849084005,2748,0 +54962,KONFA+TO+MARKA%2C+NARKA,292,415,698152377,3543,0 +54963,042.xxx,486,611,8612358,1158,0 +54964,Psycha+Siada,331,651,8099868,4836,0 +54965,New+WorldA,272,502,849084005,1364,0 +54967,Wioska+barbarzy%C5%84ska,400,710,849014922,2628,0 +54968,Wioska+barbarzy%C5%84ska,691,381,7973893,5342,0 +54969,%7CD%7C+IS,458,724,698147372,1857,0 +54970,C0292,277,551,8841266,3911,0 +54971,017+-+Budowanko%21,492,726,7540891,6948,0 +54972,Nowa+62,698,602,698702991,3603,0 +54973,Wioska+barbarzy%C5%84ska,407,296,3411571,135,0 +54974,Wiocha+4,555,724,849045675,8829,0 +54975,181%2A6,696,426,849101881,3843,0 +54976,New+WorldA,276,540,849084005,2509,0 +54977,Wioska+pinkolinka,375,312,849035447,5873,0 +54978,KASHYYYK+1,568,722,699383121,2192,0 +54979,ostr,391,297,3842862,4563,0 +54980,004,291,422,6131106,9740,8 +54981,Zwolin,285,586,699754856,5794,0 +54982,%C5%BBaneta,682,356,699875213,4244,0 +54983,D015,563,279,699299123,3275,0 +54984,062+Wioska+barbarzy%C5%84ska,346,660,6354098,2987,0 +54985,Wioska+LastWish,382,699,698785538,645,0 +54986,komandos,664,656,7976264,5523,0 +54987,236...NORTH,437,287,6920960,4374,0 +54988,%23008,554,282,849064614,6584,0 +54989,030,685,621,699099811,2272,0 +54990,Wioska+gall1,271,473,699598396,3253,0 +54991,Obrze%C5%BCe,603,708,7589468,8815,2 +54992,Aa5,589,714,849097614,1471,0 +54993,Wioska+barbarzy%C5%84ska,536,271,7758085,2989,0 +54994,05+bukai,634,322,6517826,2481,9 +54995,Wioska+skubana123,709,398,699598425,726,0 +54996,Wioska+dextermorgan,698,388,849057764,615,0 +54997,%3F%3F%3F%3F,473,271,698489071,4647,0 +54998,104.+Wioska+pawelec123,731,479,7494497,1427,0 +54999,0063.,454,724,849037407,9638,0 +55000,New+World,427,714,698152377,6926,0 +55001,Wioska+barbarzy%C5%84ska,666,338,699072129,4549,0 +55002,Henryk%C3%B3w,585,708,6674092,2104,0 +55003,ZZZ+.%3A%3A.+cinek3456%2F11,586,711,33900,2058,0 +55004,Wioska+z+Pracza+5,307,625,8916982,1343,0 +55005,Wioska+barbarzy%C5%84ska,729,542,848946700,2066,0 +55006,Wilczy+Szaniec,460,721,698738810,4717,0 +55007,04Wioska+barbarzy%C5%84ska,359,675,699704542,7893,0 +55008,Nowe+Dobra+-+budowa,685,626,699759128,5602,0 +55009,Kapitol_12,495,725,606407,5960,0 +55010,Wioska+Jori,326,435,289542,6250,0 +55011,B013,530,271,699485250,3784,0 +55012,Wioska+barbarzy%C5%84ska,683,359,6956104,1269,0 +55013,%23132%23,661,666,692803,3191,0 +55014,FP044,464,726,699605333,4376,0 +55015,X.01,727,447,699737356,8606,0 +55016,Nowy+0004,284,587,849096972,1180,1 +55017,Wioska+barbarzy%C5%84ska,723,547,698666810,6372,0 +55018,MojeDnoToWaszSzczyt,505,269,9299539,9945,0 +55019,Wioska+barbarzy%C5%84ska,343,669,0,799,0 +55020,K67+Polis,701,613,698867483,5851,0 +55021,Wioska+barbarzy%C5%84ska,724,495,698191218,3440,0 +55022,Wioska+bart1234,724,526,1536231,329,0 +55023,Z%C5%82oty+%C5%9Awit,591,293,699883079,5376,0 +55024,K67+29,706,607,698867483,3062,0 +55025,Wioska+barbarzy%C5%84ska,715,418,699722599,3704,0 +55027,XDX,601,289,699098531,3872,0 +55028,C-002,324,359,699406247,5062,0 +55029,Wioska+barbarzy%C5%84ska,372,316,698160606,5003,0 +55030,Wioska+barbarzy%C5%84ska,718,580,2453888,3582,0 +55032,Wioska+barbarzy%C5%84ska,683,637,698191218,3209,0 +55033,Minas+Tirith,300,613,849100796,8983,0 +55034,008+olk,276,552,197581,2740,0 +55035,wyb...,604,702,699828685,3719,0 +55037,Szulernia,379,362,7249451,211,0 +55038,Wioska+barbarzy%C5%84ska,684,368,6956104,1864,0 +55039,%5B839%5D+Odludzie,719,444,848985692,5106,0 +55040,Wioska+barbarzy%C5%84ska,651,678,848987051,6516,0 +55041,0658,588,714,698659980,4612,0 +55042,Nowa+59,713,592,698702991,4256,0 +55043,Zorza,708,414,699785935,4179,0 +55044,Poznan+002,412,285,1924718,985,7 +55045,KONFA+TO+MARKA%2C+NARKA,282,424,698152377,4284,0 +55046,034.Gloria+Victis,280,571,848886973,4448,0 +55047,Puerto+Vayarte,320,359,3298902,1059,0 +55048,%C5%9Awierad%C3%B3w,296,604,1276665,1082,0 +55049,B001,680,644,9023703,3806,0 +55050,Wioska+barbarzy%C5%84ska,596,290,849101409,780,0 +55051,Wioska+barbarzy%C5%84ska,578,718,7581876,1880,0 +55052,Wioska+barbarzy%C5%84ska,319,367,0,407,0 +55053,Wioska+barbarzy%C5%84skaE,292,605,698178312,857,0 +55054,%230078,572,719,1536231,3862,0 +55055,Odour+de+camembert,614,297,849109116,5348,0 +55056,I001A,692,382,9314079,1944,0 +55057,Wioska+barbarzy%C5%84ska,375,688,849096945,563,0 +55059,B020,629,307,8740199,4254,0 +55060,0019+Wioska+barbarzy%C5%84ska,489,733,699656989,962,0 +55061,New+WorldA,270,530,849084005,2133,0 +55062,Osada+koczownik%C3%B3w,404,289,698231772,3836,7 +55063,Wioska+barbarzy%C5%84ska,717,550,698666810,9727,0 +55065,Wiocha+5,559,725,849045675,9321,0 +55066,Wioska+barbarzy%C5%84ska,439,587,849028088,7421,0 +55067,t025,666,350,2262902,2090,0 +55068,Jehu_Kingdom_68,714,428,8785314,971,0 +55069,%C5%9Aw181%2A005,663,342,959179,1931,0 +55070,O106,309,635,272173,1138,0 +55071,Wioska+barbarzy%C5%84ska,391,299,698231772,2740,0 +55072,Wioska+barbarzy%C5%84ska+%28malwin%29,278,553,698769107,1878,0 +55073,osada+4,663,348,7357503,2264,0 +55074,40.+EZETH,680,497,699804790,3689,0 +55075,Wioska+barbarzy%C5%84ska,731,521,698191218,3262,0 +55076,02Wioska+barbarzy%C5%84ska,360,678,699443920,7464,0 +55077,XDX,603,293,699098531,3776,0 +55078,%23202+C,515,733,9037756,4158,0 +55080,-22-,590,705,849032414,4032,0 +55081,Wioska+a6,432,277,6343784,1840,0 +55082,101+Wioska+barbarzy%C5%84ska,576,284,699854484,4558,0 +55083,41.+Justys3828,673,489,699804790,2342,0 +55084,PPF-22,536,275,1424656,2986,0 +55086,Avanti%21,275,467,698625834,2759,0 +55088,Wioska+oracz1,480,276,260666,8435,0 +55089,043+Wioska+barbarzy%C5%84ska,544,281,699854484,9835,0 +55090,Wioska+barbarzy%C5%84ska,327,648,8175236,394,0 +55091,Wioska+barbarzy%C5%84ska,720,555,698666810,9760,0 +55092,073.+Wioska+barbarzy%C5%84ska,730,463,7494497,5269,0 +55094,002,292,579,848892804,967,0 +55095,Nowa+Baza+13,616,697,698353083,6096,0 +55097,Wioska+barbarzy%C5%84ska,542,727,699878511,9085,0 +55098,wy...,598,703,699828685,4171,0 +55099,o.o+2,442,277,6857973,1366,0 +55100,Wioska+barbarzy%C5%84ska,723,528,698191218,3764,0 +55101,%24015%24+Dirty+dancer,305,627,699550876,506,0 +55102,Hejka,453,656,848883684,2835,0 +55103,Wioska+barbarzy%C5%84ska,473,278,699196829,2191,0 +55104,NBT+1,596,694,849047044,5812,0 +55105,NOT%3F,314,362,9236866,1478,0 +55106,-35-,565,716,849032414,3019,0 +55107,komandos,668,660,7976264,3058,0 +55108,C0355,277,533,8841266,1537,0 +55109,.achim.,566,287,6936607,4998,0 +55110,mirron,299,396,849089601,5158,0 +55111,Z+07,383,310,6884492,2141,0 +55112,Wioska+barbarzy%C5%84ska,707,404,699598425,3617,0 +55114,Wioska+barbarzy%C5%84ska,695,388,849057764,1493,0 +55115,New+World,423,717,698152377,4499,0 +55116,092,696,619,699373599,860,0 +55117,Z%C5%82oty+%C5%9Awit,597,297,699883079,5082,0 +55118,Z%C5%82oty+%C5%9Awit,593,288,699883079,2387,0 +55119,K67+11,701,610,698867483,4657,0 +55120,%23167%23,659,668,692803,893,0 +55121,Wioska+barbarzy%C5%84ska,718,548,698666810,6738,0 +55122,060+Wioska+barbarzy%C5%84ska,343,662,6354098,3919,0 +55124,Wioska23,330,349,699711926,4781,0 +55125,181,504,726,849065606,1109,0 +55126,Wiocha+2,689,376,699803189,1351,0 +55127,075+-+Budowanko%21,496,729,7540891,1090,0 +55128,Wioska+barbarzy%C5%84ska,692,378,698702991,4029,0 +55129,181+001,720,560,7272223,9566,0 +55130,Wioska+barbarzy%C5%84ska,722,553,698666810,11283,0 +55131,marus1000,296,455,878961,8752,0 +55132,Wilcza+Wolno%C5%9B%C4%87,318,358,848888787,197,0 +55133,budowa+07,610,705,7139820,4339,0 +55134,New+World,434,716,698152377,10290,0 +55135,baska,296,400,849089601,1226,0 +55136,%2A025%2A,685,627,1205898,2772,0 +55137,63.+Wioska+63,279,563,849091769,3504,0 +55138,Wioska+barbarzy%C5%84ska,277,479,699846892,4447,0 +55139,Bunu+2,311,364,849050087,798,0 +55140,O150,317,627,272173,2281,0 +55141,B021,630,310,8740199,3404,0 +55142,015,339,342,849101205,1430,0 +55143,%23%23+114,583,718,849087855,2505,0 +55144,%23206+C,514,733,9037756,1819,0 +55145,%40%403,269,506,849113546,1293,0 +55146,CastAway+%23021,711,592,9314079,3589,0 +55147,Wioska+barbarzy%C5%84ska,444,720,698620694,4548,0 +55148,rivendell,290,401,698677650,906,0 +55149,Wioska+barbarzy%C5%84ska,368,689,849030086,4556,0 +55150,C0293,275,521,8841266,4185,0 +55151,-33-,587,708,849032414,1001,0 +55152,Wioska+Mad+World,327,657,699635774,26,0 +55153,04Wioska+barbarzy%C5%84ska,357,681,699704542,5919,0 +55154,Wioska+barbarzy%C5%84ska,307,387,699794765,1087,0 +55155,Wioska+barbarzy%C5%84ska,602,294,699098531,1711,0 +55156,070+Wioska+barbarzy%C5%84ska,340,664,6354098,5353,0 +55157,Wioska+barbarzy%C5%84ska,323,645,698908184,3079,0 +55158,Zaplecze+Barba+039,349,330,699796330,3238,0 +55159,Pcim,464,280,849100083,9524,0 +55160,072+Wioska+barbarzy%C5%84ska,338,668,6354098,3482,0 +55161,Wyspa+023,282,566,225023,1253,0 +55162,CastAway+%23014,709,586,9314079,5707,0 +55163,Wioska+Deff,348,330,698913618,2549,0 +55164,Lecymy+DUR,338,332,6169408,1226,0 +55165,FP049,444,725,699605333,5427,0 +55166,X005,712,426,699722599,6420,0 +55167,-31-,575,718,849032414,1733,0 +55168,Wioska+barbarzy%C5%84ska,312,372,699660539,2499,0 +55169,Wioska+barbarzy%C5%84ska,714,406,699598425,3609,0 +55170,Piek%C5%82o+to+inni,651,326,848956765,5497,0 +55171,0136,689,377,698416970,929,0 +55172,Wioska+b+001,421,284,6343784,1610,0 +55173,Wioska+barbarzy%C5%84ska,280,465,699812351,1257,0 +55174,wy...,596,703,699828685,3833,0 +55176,Wsch%C3%B3d+001,699,620,698562644,4958,2 +55177,Granica,270,462,848977600,2229,0 +55178,074.+Wioska+barbarzy%C5%84ska,730,461,7494497,5283,0 +55179,Ditas,667,661,849048856,584,0 +55180,Wioska+005,682,633,6472706,3447,0 +55181,ZZZ+.%3A%3A.+cinek3456%2F08,585,707,33900,5123,0 +55182,074+-+Budowanko%21,477,727,7540891,476,0 +55183,079+Wioska+barbarzy%C5%84ska,540,280,699854484,7535,0 +55184,Kapitol_20,506,729,606407,5216,0 +55185,090,690,632,699373599,1217,0 +55186,C0298,274,552,8841266,3806,0 +55187,025,304,617,699356968,1539,7 +55188,KWB,445,719,9003698,10616,0 +55189,Wioska+barbarzy%C5%84ska,324,357,849100289,1521,0 +55190,Avanti%21,274,487,698625834,6281,6 +55191,TOLCIA+3,643,317,699868739,1286,0 +55192,Wioska+kondzio95rrr,723,451,849095599,1344,0 +55193,Wioska014,693,387,698768565,7173,0 +55194,Ave+Why%21,523,731,699121671,2751,0 +55195,Dumnoryks,290,400,848998530,1457,0 +55196,Z%C5%82oty+%C5%9Awit,592,292,699883079,5352,0 +55197,Cisza,287,571,698769107,1738,0 +55198,Wioska+Johnny+B,723,434,9282669,4958,0 +55199,Osada+myself+i+tylko+jej+%3A%29,597,712,699828685,5786,0 +55200,Kiedy%C5%9B+Wielki+Wojownik,323,350,8632462,6474,0 +55201,odek+181,292,445,699285160,5650,0 +55202,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,723,8201460,3138,0 +55203,aaaaaa,665,345,7646152,1795,0 +55204,Wioska+barbarzy%C5%84ska,724,479,113796,1951,0 +55205,Wioska+barbarzy%C5%84ska,300,384,699595556,604,0 +55206,Psycha+Siada,330,650,8099868,4681,0 +55207,Brat447,369,520,699262350,1716,0 +55208,KONFA+TO+MARKA%2C+NARKA,290,412,698152377,2332,0 +55209,Hor1,484,731,699864013,5371,0 +55210,Wioska+barbarzy%C5%84ska,669,339,699072129,4075,0 +55211,Wioska+009,670,342,7226782,3012,0 +55212,Pobozowisko,406,596,699513260,74,0 +55213,Telimena+2.,307,632,699037086,2024,0 +55214,KONFA+TO+MARKA%2C+NARKA,286,418,698152377,3087,0 +55215,Wioska+miromistrz,487,725,848999671,8449,0 +55216,Avanti%21,271,481,698625834,6025,0 +55217,Wioska+barbarzy%C5%84ska,720,426,699628084,1824,0 +55218,Wioska+barbarzy%C5%84ska,547,725,699828442,4552,0 +55219,Sony+911,660,670,1415009,863,0 +55220,PPF-26,534,278,1424656,2241,0 +55221,Wioska+barbarzy%C5%84ska,717,553,698666810,6554,0 +55222,Wioska+krzy%C5%BCak1,367,689,699826996,1128,0 +55223,Nagato+-+B+003,315,369,849094586,2088,0 +55225,%2A013,678,364,7758085,4874,4 +55226,Wioska+barbarzy%C5%84ska,296,607,699604515,351,0 +55227,E002,665,335,699299123,4148,0 +55228,0659,587,715,698659980,6011,0 +55229,Wioska+barbarzy%C5%84ska,723,476,113796,1613,0 +55230,%5B0189%5D,275,495,8630972,6710,0 +55231,--054--,578,288,542253,979,0 +55232,%5B0171%5D,446,283,8630972,7380,0 +55233,Wioska+barbarzy%C5%84ska,628,312,699679662,1534,0 +55234,.achim.,581,282,6936607,2666,0 +55235,A040,606,645,9023703,3090,0 +55236,kamilkaze135+%2316,686,371,699705601,2744,0 +55237,Wioska+Vasqu,415,714,8616713,206,0 +55238,Wioska+barbarzy%C5%84ska,702,382,7340529,3040,0 +55239,P%C3%B3%C5%82nocny+Bagdad,617,298,8847546,7241,1 +55240,04Wioska+barbarzy%C5%84ska,356,680,699704542,5427,0 +55241,%230074,578,710,1536231,4813,0 +55243,9.+Nowy+%C5%9Awiat,606,699,699828685,1503,0 +55244,097,732,506,7085502,3791,0 +55245,Wioska+acer123,297,602,848969160,1259,0 +55246,MojeDnoToWaszSzczyt,490,273,9299539,4428,0 +55247,C0235,281,542,8841266,6559,6 +55248,Wioska+barbarzy%C5%84ska,320,634,0,75,0 +55249,Wioska+barbarzy%C5%84ska,277,463,699213622,4546,0 +55250,224...NORTH,453,280,6920960,2455,0 +55251,064+-+Budowanko%21,499,731,7540891,5185,0 +55252,Wioska+z+Pracza+1,312,620,8916982,2721,0 +55253,New+WorldA,274,544,849084005,2717,0 +55254,Wioska+barbarzy%C5%84ska,718,427,848976034,1707,0 +55255,zzz03,711,598,3986807,806,0 +55256,New+World,431,717,698152377,10290,0 +55257,Wioska+dabek,269,486,699795698,8797,0 +55258,Wioska+barbarzy%C5%84ska,306,376,0,472,0 +55259,045,678,648,2323859,1797,0 +55260,Wioska+barbarzy%C5%84ska,410,286,698231772,2510,0 +55261,--056--,588,287,542253,837,0 +55262,018+-+Budowanko%21,488,728,7540891,6950,0 +55263,Sqn,706,396,699598425,2990,0 +55264,szymek5,283,417,1323424,1477,0 +55265,Wioska+barbarzy%C5%84ska,712,412,8459255,3583,0 +55266,%230248+colt9,433,281,1238300,5206,0 +55267,201,570,409,849064752,2602,0 +55268,backstage+1,706,401,849099696,3449,0 +55269,New+World,427,719,698152377,10290,0 +55270,Bagno+39,460,729,848883684,3249,0 +55271,Wioska+DZiki250,275,455,848907771,6429,0 +55272,Za+lasami,283,413,699821629,2394,0 +55273,MojeDnoToWaszSzczyt,488,271,9299539,4939,0 +55275,New+World,421,717,698152377,8288,0 +55276,Wioska+barbarzy%C5%84ska,389,700,849014922,1494,0 +55277,Kiedy%C5%9B+Wielki+Wojownik,322,351,8632462,5922,4 +55278,K67+05,702,618,698867483,4711,0 +55279,Avanti%21,270,468,698625834,2639,0 +55280,Gr%C3%B3d+Br%C3%B3dno,536,279,1568908,291,0 +55281,New+WorldA,272,542,849084005,2803,0 +55282,Wioska+barbarzy%C5%84ska,310,368,0,421,0 +55283,Wioska+barbarzy%C5%84ska,684,362,7758085,2787,0 +55284,02%23+Wioska+barbarzy%C5%84ska,680,643,8444698,1653,0 +55285,wy...,600,704,699828685,4490,0 +55286,Wioska+barbarzy%C5%84ska,729,453,699347951,1025,0 +55287,Wioska+barbarzy%C5%84ska,271,476,849095814,3337,0 +55288,Wioska+barbarzy%C5%84ska,323,364,0,408,0 +55289,%230073,572,720,1536231,4003,0 +55290,seafighter1,683,367,7899232,7843,0 +55291,Piorunek1996+Wie%C5%9B+..2..,531,274,6118079,1649,0 +55292,%23012,546,271,849064614,5810,0 +55293,North+037,512,273,849064752,6914,0 +55294,Avanti%21,276,475,698625834,6029,0 +55295,%5B825%5D+Odludzie,716,436,848985692,6427,0 +55296,0113,695,383,698416970,1194,0 +55297,Wioska+barbarzy%C5%84ska,724,459,699347951,837,0 +55298,031+KTW,723,445,848883237,2905,0 +55299,Wyzima,378,305,849103688,4277,0 +55300,New+World,418,717,698152377,10290,0 +55301,Rze%C5%BAnia+4,706,591,849101029,1643,0 +55302,Nowa+Baza+8,615,701,698353083,5761,0 +55303,Wioska+barbarzy%C5%84ska,541,730,699878511,8725,0 +55304,Wioska+Lewkowskyyyy,682,636,698315881,2905,0 +55305,Wioska+ba,515,727,849101102,5302,0 +55306,036+Mossdeep+City,723,490,699441366,1163,0 +55307,No.29,569,721,698826986,894,0 +55308,Wioska+MAXIMUS-1,348,674,8644299,26,0 +55309,Wioska+barbarzy%C5%84ska,495,726,699429335,4152,0 +55310,Wioska+barbarzy%C5%84ska,470,276,699196829,6667,0 +55311,Dwutakt,708,417,699785935,2987,0 +55312,.achim.,570,287,6936607,4565,0 +55313,%C5%BBUBEREK+006,623,692,33900,9976,3 +55314,311,451,277,7271812,741,0 +55315,Wioska+a2,422,280,6343784,2847,0 +55316,New+World,410,710,698152377,9814,0 +55317,0074,459,280,848913037,3807,0 +55318,Avanti%21,273,479,698625834,5775,0 +55319,Wioska+barbarzy%C5%84ska,360,315,3484132,5524,0 +55320,KASHYYYK,569,720,699383121,4012,0 +55321,Z.03,710,581,699737356,4435,0 +55322,Dajanka+24,291,604,849012843,942,0 +55323,26.+Wioska+26,287,570,849091769,3954,0 +55324,Wioska+barbarzy%C5%84ska,377,689,849096945,229,0 +55325,%23026,543,277,849064614,2436,0 +55326,001,441,724,699069151,966,0 +55327,Wioska+barbarzy%C5%84ska,568,723,699828442,1761,0 +55328,Wioska+marek123,691,369,849090846,8161,0 +55329,Nowa+64,720,563,698702991,4108,0 +55330,Wioska+Gigako,562,284,849054951,10445,4 +55331,Wioska+barbarzy%C5%84ska,703,398,699598425,3364,0 +55332,KWB4,485,728,9003698,5145,0 +55333,O114,317,635,272173,7417,0 +55334,Echelon,716,444,848896434,1106,0 +55335,P003,512,276,699208929,4580,0 +55336,009,297,596,698663855,3577,0 +55337,Wioska+barbarzy%C5%84ska,416,288,698231772,8067,0 +55338,%23036,560,276,849064614,2772,0 +55339,BIMBER+5,441,277,6857973,1417,0 +55340,Wioska+barbarzy%C5%84ska,727,505,698191218,3493,0 +55341,New+World,413,713,698152377,5258,0 +55342,szymek1,280,422,1323424,7731,0 +55343,P%C3%B3%C5%82nocny+Bagdad,618,299,8847546,7245,0 +55344,bagienko_01,570,281,849093353,7098,0 +55345,o013,607,708,699189792,6651,0 +55346,CapriSun,689,369,849055553,1200,0 +55347,Wioska+barbarzy%C5%84ska,315,373,699660539,2027,0 +55348,024,301,609,699356968,1120,0 +55349,NP+09,303,393,849076810,1508,0 +55350,Zaplecze+Barba+040,347,328,699796330,3378,0 +55351,CastAway+%21036,711,595,9314079,3488,0 +55352,.achim.,573,287,6936607,3330,0 +55353,Wioska+barbarzy%C5%84ska,282,584,698663855,491,0 +55354,Mordor,697,588,849109935,1299,0 +55355,KONFA+TO+MARKA%2C+NARKA,286,434,698152377,8251,0 +55356,Osada+koczownik%C3%B3w,593,290,698350371,1426,7 +55357,Kurnik,445,716,699603116,1182,0 +55358,XDX,598,290,699098531,3787,0 +55359,000,281,457,699844314,5255,0 +55360,Piek%C5%82o+to+inni,645,327,848956765,4413,0 +55361,Wioska+Lubie%C5%BCny+Mietek,582,281,6326324,26,0 +55362,...%3A%3A181+05%3A%3A...,275,514,699641777,3541,0 +55363,Wioska+barbarzy%C5%84ska,370,690,0,612,0 +55364,0000049Z,282,570,849089881,716,0 +55365,%23%239,346,337,2800032,1820,0 +55366,Wiede%C5%84,294,589,2717161,8132,0 +55367,Wioska+ewciamariusz2,300,391,9014108,1131,0 +55368,ToHellAndBack.,444,724,699069151,6626,0 +55369,Wioska16.,713,575,699266530,3315,0 +55370,Wioska+barbarzy%C5%84ska,350,464,6258092,4207,0 +55371,Osada+koczownik%C3%B3w,267,491,699795698,4063,2 +55372,Kapitol_13,510,723,606407,4652,0 +55373,%3F%3F%3F%3F,461,275,698489071,4277,0 +55374,021+-+Budowanko%21,496,723,7540891,5653,0 +55375,005,293,588,698663855,9691,0 +55376,Wioska,418,288,3411571,5599,0 +55377,01%23+Wioska+Menager86,681,643,8444698,4821,0 +55378,North+063,540,274,849064752,5164,0 +55379,Aa1,592,713,849097614,5495,0 +55380,%23%23%23155%23%23%23,602,710,698285444,10495,0 +55381,Wioska+barbarzy%C5%84ska,713,422,699722599,4035,0 +55382,Wioska+barbarzy%C5%84ska,380,305,699308637,1074,0 +55383,Tuturutu,281,577,849096458,3230,0 +55384,%5B828%5D+Odludzie,717,441,848985692,6078,0 +55385,XXX,400,678,698650509,4963,0 +55386,PPF-27,535,275,1424656,2247,0 +55387,Nowe+Dobra+-+budowa,686,625,699759128,5743,0 +55389,Po%C5%82udniowy+Wsch%C3%B3d+005,698,612,699778867,1116,0 +55390,Wioska+barbarzy%C5%84ska,295,605,0,879,0 +55391,Tumba,296,401,7259690,1909,0 +55393,002,303,607,699356968,5236,0 +55395,A%23025,729,510,2065730,9797,5 +55396,P%C3%B3%C5%82nocny+Bagdad,621,310,8847546,7012,0 +55397,Wioska+barbarzy%C5%84ska,386,298,698231772,3376,0 +55398,Wioska+rafalzak+01,269,514,6083448,1141,0 +55399,Wioska20,332,347,699711926,4285,0 +55400,Wioska+barbarzy%C5%84ska,357,327,8772425,1932,0 +55401,Wioska+barbarzy%C5%84ska,633,692,699576978,847,0 +55402,-002-,728,492,7418168,4429,0 +55403,04Wioska+barbarzy%C5%84ska,365,686,699704542,3305,0 +55404,KONFA+TO+MARKA%2C+NARKA,290,416,698152377,3319,0 +55405,014,398,292,699694284,4790,0 +55406,Wioska+barbarzy%C5%84ska,276,489,699846892,1854,0 +55407,Zaplecze+Barba+041,347,329,699796330,2731,0 +55408,181.03,328,344,7221139,881,0 +55409,Wioska+barbarzy%C5%84ska,519,732,769293,3417,0 +55410,North+K25,524,276,699146580,2607,0 +55411,Wioska+maniek38,434,722,9213654,26,0 +55412,0064,453,727,849037407,10290,0 +55413,Wioska+TheKingDestroyer,696,628,699812869,3257,0 +55414,Wioska+barbarzy%C5%84ska,624,688,6818593,2892,0 +55415,Wioska+barbarzy%C5%84ska+06,342,338,698757439,7020,0 +55416,Wioska+barbarzy%C5%84ska,730,490,698191218,3216,0 +55417,Nowa+Baza+4,614,696,698353083,5072,0 +55418,014+%7C+North,378,694,699511295,3093,0 +55419,Wioska+barbarzy%C5%84ska,314,367,0,366,0 +55420,Wioska+barbarzy%C5%84ska,276,462,699213622,4543,0 +55422,Wioska+barbarzy%C5%84ska,367,692,699704542,3026,0 +55423,%3F%3F%3F%3F,462,277,698489071,4099,7 +55425,Wioska+barbarzy%C5%84ska,372,312,3484132,4783,0 +55426,.achim.,575,284,6936607,3015,0 +55427,011.+Wioska+barbarzy%C5%84ska,700,390,2873154,7669,0 +55428,%23499+F,441,721,9037756,5524,0 +55429,%3F%3F%3F%3F,477,273,698489071,4957,0 +55430,Avanti%21,270,466,698625834,4478,0 +55431,029,730,531,7085502,9720,9 +55432,AZGARD+2.,295,609,6651072,462,0 +55433,081.+Wioska+barbarzy%C5%84ska,732,469,7494497,4775,0 +55434,Wioska+barbarzy%C5%84ska,387,705,849014922,1481,0 +55435,C0254,269,526,8841266,4441,0 +55436,Wioska+R%C3%B3%C5%BCalXDD,343,673,699639001,1110,0 +55437,O117,314,637,272173,7194,0 +55438,Wioska+barbarzy%C5%84ska,711,400,699598425,3105,0 +55439,%5B017%5D,462,726,9094538,2713,0 +55440,098,731,514,7085502,2271,0 +55441,0081,457,278,848913037,4584,0 +55442,Wioska+obywateldb,287,590,699396429,6246,0 +55443,Rewa,296,603,1276665,2111,0 +55444,Ale+Urwa%C5%82,270,512,849105417,6938,0 +55445,004,277,458,699844314,1438,0 +55446,Wioska+barbarzy%C5%84ska,608,708,7589468,1885,0 +55447,ZZZ+.%3A%3A.+cinek3456%2F14,590,714,33900,1644,0 +55448,KONFA+TO+MARKA%2C+NARKA,288,418,698152377,2235,0 +55449,04Wioska+barbarzy%C5%84ska,361,677,699704542,8158,0 +55450,Wioska+IAmChaozu,572,279,849080011,6170,0 +55452,42.+JeGrzegorz,672,474,699804790,1430,0 +55453,sh06,514,274,7064954,2573,0 +55454,Wioska+barbarzy%C5%84ska,318,364,0,1363,0 +55455,%5B0276%5D,266,495,8630972,4027,0 +55456,Wioska+marko91,497,268,849070812,1367,0 +55457,237...NORTH,432,279,6920960,4936,0 +55458,%5B217%5D,721,422,8000875,1379,0 +55459,Wioska+barbarzy%C5%84ska,724,490,698191218,3271,0 +55460,Wioska+Gollum18,409,286,8947021,3318,0 +55461,Z%C5%82oty+%C5%9Awit,586,288,699883079,5167,0 +55462,Wioska+barbarzy%C5%84ska,319,365,0,522,0 +55463,C0294,277,523,8841266,3974,0 +55464,KONFA+TO+MARKA%2C+NARKA,277,438,698152377,7407,0 +55465,BETON+115,663,665,699277039,81,0 +55466,006,531,278,698736778,1164,0 +55467,Utumno,328,356,849100288,2696,0 +55468,.achim.,568,287,6936607,4908,0 +55469,P%C3%B3%C5%82nocny+Bagdad,633,309,8847546,2818,0 +55470,Taka.,484,728,848999671,2119,0 +55471,Wioska+rufus997,270,525,849047233,4652,0 +55472,1x1+Wioska+barbarzy%C5%84ska,570,712,849055425,5734,0 +55473,107+Wioska+barbarzy%C5%84ska,584,283,699854484,1020,0 +55474,061+Wioska+barbarzy%C5%84ska,551,282,699854484,9835,0 +55475,MojeDnoToWaszSzczyt,494,267,9299539,4675,0 +55476,100.+Wioska+barbarzy%C5%84ska,695,373,7494497,3023,0 +55477,Osada+koczownik%C3%B3w,725,561,698666810,10999,7 +55478,erebor,292,395,698677650,6098,0 +55479,MojeDnoToWaszSzczyt,498,266,9299539,9471,0 +55480,Odludek,701,609,849101652,3273,0 +55481,Wioska+barbarzy%C5%84ska,356,317,3698627,2449,0 +55482,TOLCIA+4,640,313,699868739,1180,0 +55483,Wioska+kosiarziii,657,672,8856821,7519,0 +55484,Wioska+barbarzy%C5%84ska,639,683,848987051,4737,0 +55485,Hindenburg,270,494,699662232,4336,0 +55486,KONFA+TO+MARKA%2C+NARKA,270,456,698152377,2402,0 +55487,Wioska+barbarzy%C5%84ska,595,705,8991696,2706,0 +55488,PATOLOGIA,288,598,699774694,6322,0 +55489,Wioska+124,706,588,848971079,234,0 +55490,Sony+911,697,613,1415009,6511,0 +55491,XDX,613,303,699098531,4102,0 +55492,2.+Novigrad,609,697,849101526,2336,0 +55493,Wioska+barbarzy%C5%84ska,525,268,699799629,2740,0 +55494,P%C3%B3%C5%82nocny+Bagdad,621,303,8847546,9249,9 +55495,Wioska+barbarzy%C5%84ska,721,571,698666810,3899,0 +55496,Wyspa,394,667,698769107,788,0 +55497,Wioska+barbarzy%C5%84ska,371,689,849096945,428,0 +55498,...%3A%3A181+08%3A%3A...,277,514,699641777,3279,0 +55499,Avanti%21,271,485,698625834,6152,0 +55500,4.+Skellige+Nowe+IMPERIUM,614,699,698353083,4385,0 +55501,XDX,604,297,699098531,3476,0 +55502,Wioska+0007,349,665,9186126,10311,4 +55503,C0314,276,525,8841266,2542,0 +55504,Wz08,698,605,7142659,2982,0 +55505,0000034Z,275,563,849089881,5793,0 +55506,Wioska+barbarzy%C5%84ska,303,381,1267913,998,0 +55507,055-+Mroczna+Osada,704,386,849035905,5791,0 +55508,%5B827%5D+Odludzie,719,440,848985692,6330,0 +55509,Wioska+barbarzy%C5%84ska,317,358,0,237,0 +55510,Wioska+a1,421,280,6343784,4584,0 +55511,KONFA+TO+MARKA%2C+NARKA,275,444,698152377,4255,7 +55512,Wioska+barbarzy%C5%84ska,300,397,762975,473,0 +55513,Zaplecze+Barba+029,360,321,699796330,4950,0 +55514,Wioska+barbarzy%C5%84ska,503,277,7758085,3370,0 +55515,Wioska+barbarzy%C5%84ska,310,625,698908184,5719,0 +55516,Wioska+barbarzy%C5%84ska,722,556,698666810,9846,0 +55517,004.+niespodzianka,457,274,602408,1375,0 +55518,Wioska+barbarzy%C5%84ska,537,731,699878511,8179,0 +55519,K67+03,702,613,698867483,7755,0 +55520,Aa7,594,711,849097614,3669,0 +55521,112.Stradi,427,279,698365960,6813,0 +55522,KONFA+TO+MARKA%2C+NARKA,293,412,698152377,1843,0 +55524,Wioska+barbarzy%C5%84ska,690,368,849090846,2237,0 +55525,MojeDnoToWaszSzczyt,486,269,9299539,4573,0 +55527,Wioska+barbarzy%C5%84ska,658,340,699072129,4257,0 +55528,New+World,418,714,698152377,4713,0 +55529,Wioska+DAJWIDOS17,320,351,848913252,1401,0 +55530,006,313,376,7919620,7185,0 +55531,MojeDnoToWaszSzczyt,475,267,9299539,4853,0 +55532,...%3A%3A181+12%3A%3A...,272,511,699641777,2211,0 +55534,Wioska+barbarzy%C5%84ska,685,637,698191218,3103,0 +55535,Wioska+barbarzy%C5%84ska,602,299,699098531,2407,0 +55536,Wioska+barbarzy%C5%84ska,727,544,848946700,1897,0 +55537,003,292,591,698663855,10544,0 +55538,KONFA+TO+MARKA%2C+NARKA,289,426,698152377,2430,0 +55539,Wioska+barbarzy%C5%84ska,270,492,699846892,3775,0 +55540,%3F%3F%3F%3F,461,274,698489071,1622,0 +55541,Wygwizdowa+013,638,676,698562644,3158,0 +55544,S177+K64,415,686,849055309,772,0 +55545,%230064,577,718,1536231,3860,0 +55546,Wioska+Karakan13,727,502,849096936,26,0 +55547,Psycha+Siada,320,646,8099868,7098,0 +55549,23+Blacha,721,433,849101845,2621,0 +55550,Bagno+34,475,726,848883684,5244,0 +55552,...%3A%3A181+03%3A%3A...,276,513,699641777,3121,0 +55553,Wioska+barbarzy%C5%84ska,271,513,0,283,0 +55554,Wioska+barbarzy%C5%84ska,381,699,7494178,317,0 +55555,027,305,616,699356968,875,0 +55556,25.TEEN+TOP,694,384,9180206,3083,0 +55557,KONFA+TO+MARKA%2C+NARKA,292,417,698152377,3313,0 +55558,007,291,593,698663855,6042,0 +55559,%230059,575,713,1536231,3872,0 +55561,New+World,418,710,698152377,9707,0 +55562,Wioska+dafffciu,362,679,848984022,9634,0 +55563,Wioska+barbarzy%C5%84ska,317,366,0,747,0 +55564,001+Oazis,304,607,699356968,10104,0 +55565,-003-,730,492,7418168,4577,0 +55566,%7CD%7C+IS,453,721,698147372,1494,0 +55567,Gorzow,466,270,699278528,4053,0 +55568,078g,318,553,698641566,6556,0 +55569,KONFA+TO+MARKA%2C+NARKA,279,425,698152377,4378,0 +55570,Wygwizdowa+016,625,688,698562644,787,0 +55571,C0308,274,520,8841266,3417,0 +55572,Wioska+bercion,383,704,699490365,1764,0 +55573,Kiedy%C5%9B+Wielki+Wojownik,322,353,8632462,1189,0 +55574,K42+ADAMUS+016,287,428,6212605,5264,0 +55575,KONFA+TO+MARKA%2C+NARKA,289,424,698152377,3191,0 +55576,Piek%C5%82o+to+inni,651,332,848956765,4999,0 +55577,Osada+koczownik%C3%B3w,546,728,699878511,4465,7 +55578,Wioska+barbarzy%C5%84ska,352,321,3698627,3271,0 +55579,Wioska+barbarzy%C5%84ska,689,634,698191218,2252,0 +55580,Piek%C5%82o+to+inni,660,331,848956765,3251,0 +55581,Kapitol_31,497,734,606407,3844,0 +55582,ADAMM,536,455,699409420,721,0 +55583,New+World,429,723,698152377,8387,0 +55584,Sony+911,676,655,1415009,1691,0 +55585,Wioska+7,534,268,7427966,1044,0 +55586,Wioska+barbarzy%C5%84ska,373,308,3484132,4775,0 +55587,001,312,636,8752714,3875,0 +55588,MojeDnoToWaszSzczyt,463,269,9299539,3368,0 +55589,002.,698,379,7557683,1512,0 +55590,Wioska+buuu,734,509,849048241,5178,0 +55591,003+wolno%C5%9B%C4%87,332,655,6910361,873,0 +55592,111.Stradi,426,279,698365960,7487,0 +55593,Wioska+barbarzy%C5%84ska,317,632,698908184,5023,0 +55594,P%C3%B3%C5%82nocny+Bagdad,618,302,8847546,7234,7 +55595,New+World,432,714,698152377,3744,0 +55596,26.WINNER,696,383,9180206,3343,0 +55597,%3DSAwars%3D04%3D,566,282,849106420,3899,0 +55598,North+038,510,268,849064752,6935,0 +55599,......,300,387,699595556,7559,0 +55600,Wioska+barbarzy%C5%84ska,355,328,8772425,2156,0 +55601,Wioska+Maverick1,734,516,699618326,3993,0 +55602,012+-+Budowanko%21,489,724,7540891,7060,0 +55603,Bocianikson022,714,582,7528491,1731,7 +55604,037+Sootopolis+City,729,484,699441366,8787,0 +55605,Wioska+091,697,617,848971079,5678,0 +55606,Kapitol_26_O,504,725,606407,5232,0 +55607,Wioska+barbarzy%C5%84ska,714,583,7528491,1591,0 +55608,Wioska+nsplus,667,658,849048856,6227,0 +55609,Sqn,707,395,699598425,2878,0 +55610,Wiadro21,688,636,8677963,1272,0 +55611,Wi%C5%9Bniowe+wzg%C3%B3rza,444,723,7526090,3672,0 +55612,Wioska+barbarzy%C5%84ska,268,470,0,966,0 +55614,004+%7C+North,379,701,699511295,9353,0 +55615,Wioska+SAGITTARIUS70,293,398,7259690,6237,0 +55616,MojeDnoToWaszSzczyt,473,268,9299539,5485,0 +55618,Wioska+barbarzy%C5%84ska,297,389,0,703,0 +55619,BB1,270,514,849110365,6221,0 +55620,Wioska+barbarzy%C5%84ska,352,324,8772425,1869,0 +55621,Wioska+barbarzy%C5%84ska,313,372,699660539,2020,0 +55622,12.+GT,464,724,849100262,3509,0 +55623,Wioska+katarzyna2012,543,276,7427966,3912,0 +55624,235...NORTH,433,279,6920960,5174,0 +55625,%3F%3F%3F%3F,491,266,698489071,5320,0 +55626,0066%2C,445,724,849037407,10405,0 +55627,Wioska+Mantvel,270,482,699795698,6582,0 +55628,Wioska+barbarzy%C5%84ska,603,709,7589468,2734,0 +55629,NOT%3F,314,361,9236866,1244,0 +55630,%24013%24+Interesting...,299,621,699550876,1349,0 +55631,Wioska+brzydko.1,613,615,699511370,7408,0 +55632,bandzior,499,730,606407,4707,0 +55633,sony911,600,651,1415009,4228,0 +55634,shire,294,396,698677650,7728,0 +55636,Wioska+barbarzy%C5%84ska,595,706,849097370,1094,0 +55637,wwwb,601,708,699828685,2881,0 +55638,%7CD%7C+IS,459,723,698147372,1842,0 +55639,Wioska+barbarzy%C5%84skaC,295,606,698178312,661,0 +55640,017.+Tak+o,295,395,698630507,1223,0 +55642,Osada+koczownik%C3%B3w,722,549,698666810,7822,7 +55643,Wioska+leslawos,267,513,1227918,9529,0 +55644,Wioska+barbarzy%C5%84ska,313,626,698908184,5349,0 +55645,Wioska+barbarzy%C5%84ska,303,380,0,765,0 +55646,Psycha+Siada,320,643,8099868,7229,0 +55647,016+%7C+North,371,686,699511295,2963,0 +55648,Wioska+barbarzy%C5%84ska,610,701,8627359,4669,0 +55649,025,725,491,849091105,8779,3 +55650,%2305%21,643,680,849101884,3215,0 +55651,ZZZ+.%3A%3A.+cinek3456%2F10,586,710,33900,2240,0 +55652,Wioska+barbarzy%C5%84ska,729,520,698191218,2263,0 +55653,Wioska+barbarzy%C5%84ska,731,537,17714,2412,0 +55654,xxx,270,542,699510045,4244,0 +55655,Wioska+barbarzy%C5%84ska,283,588,698663855,457,0 +55656,Wioska+barbarzy%C5%84ska,316,575,0,2005,0 +55657,Taka.,484,732,848999671,2044,0 +55658,%23K75+0037,524,727,699728159,4695,0 +55659,Wioska+barbarzy%C5%84ska,322,348,0,640,0 +55660,Wioska+barbarzy%C5%84ska,340,328,698388578,1019,0 +55661,%23122%23,651,669,692803,4518,0 +55662,Wioska+barbarzy%C5%84ska,730,536,17714,1313,0 +55663,Wioska+barbarzy%C5%84ska,395,707,849014922,1839,0 +55664,Wioska+barbarzy%C5%84ska,353,669,0,800,0 +55665,%24010%24+KEN,307,620,699550876,1630,0 +55666,Wioska+barbarzy%C5%84ska,724,564,698666810,1890,0 +55667,Republic+Of+Rukahs,724,440,699789609,2274,0 +55668,Wioska+barbarzy%C5%84ska,683,638,698191218,2453,0 +55669,Wioska+NiedzwiedzWampyr,643,674,849099887,1367,0 +55670,075+obrze%C5%BCa,277,560,699510259,2619,0 +55671,Flap,608,296,699098531,4401,0 +55672,Piek%C5%82o+to+inni,648,318,848956765,2881,0 +55673,New+World,436,717,698152377,5514,4 +55674,Wioska+barbarzy%C5%84ska,709,409,699146876,1839,0 +55675,068+Wioska+barbarzy%C5%84ska,339,659,6354098,4664,0 +55676,A%23054,707,409,2065730,3958,0 +55677,Wioska+barbarzy%C5%84ska,459,271,699191449,1850,0 +55678,Osada+koczownik%C3%B3w,299,381,356642,9619,8 +55679,Wioska+ddd121,416,291,849089654,2367,0 +55680,Wioska+barbarzy%C5%84ska,731,474,113796,787,0 +55681,.achim.,569,282,6936607,4280,0 +55682,O155,304,629,272173,1477,0 +55683,019,270,455,6131106,5215,6 +55684,Wioska+barbarzy%C5%84ska,713,574,2453888,4993,0 +55685,Nowe+IMPERIUM+7,618,702,698353083,2954,0 +55686,Wioska+borek102,562,398,6606543,5502,0 +55687,Wioska+miki11,275,439,50930,151,0 +55688,Osada+koczownik%C3%B3w,417,713,849014922,7858,4 +55689,Wioska+Wieslaw+3,499,269,699794421,2643,0 +55690,Wioska+barbarzy%C5%84ska,720,553,698666810,6280,0 +55691,PPF-60,572,276,849080011,5108,0 +55692,031.+Gloria+Victis,285,572,848886973,4812,0 +55693,%230068,575,717,1536231,3233,0 +55694,wy...,602,705,699828685,4060,0 +55695,Wioska+gall6,269,475,699598396,2752,0 +55696,Wioska+barbarzy%C5%84ska,723,472,699574408,2203,0 +55697,Wioska+dam111,552,726,3345943,50,0 +55698,MojeDnoToWaszSzczyt,487,271,9299539,6273,0 +55700,Gdansk,449,271,699278528,3272,0 +55701,Wioska+Farmer155,275,523,849095594,909,0 +55702,Wioska+093,699,618,848971079,5415,0 +55703,Wioska+black,416,290,3411571,5001,0 +55704,Wioska+barbarzy%C5%84ska,530,733,699878511,5212,0 +55705,Piek%C5%82o+to+inni,650,327,848956765,4375,0 +55707,Wioska+barbarzy%C5%84ska,504,276,0,117,0 +55708,KONFA+TO+MARKA%2C+NARKA,288,425,698152377,2225,0 +55709,%5B832%5D+Odludzie,722,430,848985692,6146,0 +55710,Wioska+barbarzy%C5%84ska,686,643,698786826,3083,0 +55712,Wioska+barbarzy%C5%84ska,734,510,6510480,1408,0 +55713,MojeDnoToWaszSzczyt,487,272,9299539,6075,7 +55714,Piek%C5%82o+to+inni,643,320,848956765,3472,0 +55715,Wioska+barbarzy%C5%84ska,728,523,698191218,2235,0 +55716,Gubernia+04+Barbarzy%C5%84ska,373,310,849107532,3893,0 +55717,Avanti%21,271,470,698625834,2783,0 +55718,Kiedy%C5%9B+Wielki+Wojownik,324,350,8632462,3683,0 +55719,094.+Wioska+barbarzy%C5%84ska,728,468,7494497,3715,0 +55720,Wioska+Smerf%C3%B3w,716,437,849102480,4922,0 +55721,Wioska+z+Pracza+2,311,622,8916982,1681,0 +55722,Wioska+barbarzy%C5%84ska,282,577,848988401,1354,0 +55723,New+World,408,705,698152377,10247,0 +55724,Wioska+barbarzy%C5%84ska,642,679,848987051,5453,0 +55726,Wioska+%28046%29,725,461,698232227,801,0 +55727,Wioska+E,401,287,3411571,4733,0 +55728,Wioska+Abis,515,734,698934729,1245,0 +55729,Wioska+barbarzy%C5%84ska,684,406,699598425,3347,0 +55730,KONFA+TO+MARKA%2C+NARKA,279,426,698152377,3959,0 +55731,Wioska+barbarzy%C5%84ska,383,297,699191464,1423,0 +55732,117,563,473,7092442,4590,0 +55733,Taka.,488,725,848999671,3242,0 +55734,Lipa,323,653,8175236,5209,5 +55736,006,401,290,699694284,7724,0 +55737,KONFA+TO+MARKA%2C+NARKA,287,409,698152377,2017,0 +55738,Piek%C5%82o+to+inni,653,327,848956765,4041,0 +55739,Wioska+lechman,716,586,8997874,4710,0 +55740,Wioska+barbarzy%C5%84ska,727,466,699574408,2254,0 +55741,B011,527,272,699485250,4014,0 +55742,Wioska+utache,407,710,848965531,209,0 +55743,Wioska+barbarzy%C5%84ska,714,579,7038651,941,0 +55744,Lecymy+DUR,336,332,6169408,1161,0 +55745,Wioska+barbarzy%C5%84ska,326,653,8175236,368,0 +55746,Wioska+DrJointtt,599,294,8609713,3353,0 +55747,Wioska+barbarzy%C5%84ska,665,339,699072129,3884,0 +55748,Wioska+Mr+Dymer,326,593,7865511,4193,0 +55749,Nowy+0001,285,595,849096972,5212,6 +55750,Wioska+Ywozdreiwt+Nyzuk,311,373,849110571,2552,0 +55751,Maszlug+kolonia+XXIII,317,361,848977649,1183,0 +55752,PIROTECHNIK+005,336,336,849101083,6948,0 +55753,PPF-04,518,274,1424656,4933,0 +55754,K42+ADAMUS+011,280,431,6212605,7558,0 +55755,%23117%23,651,667,692803,4491,0 +55756,069,476,502,699510259,3320,0 +55757,%230175+darmuwa,476,277,1238300,5403,0 +55758,Wioska+barbarzy%C5%84ska,356,672,0,558,0 +55759,Wioska+barbarzy%C5%84ska,270,477,849095814,2492,0 +55760,%C5%9Arednia+osada,419,280,3411571,4041,0 +55761,t027,667,345,2262902,780,0 +55762,Wyspa+024,280,567,225023,1182,0 +55763,039+-+Budowanko%21,469,726,7540891,5587,0 +55764,Bombaj+City.,688,376,699803189,4397,0 +55765,005,294,587,698663855,10068,0 +55766,Wiocha+6,547,720,849045675,7108,0 +55767,Wioska+barbarzy%C5%84ska,682,358,6956104,907,0 +55768,Wioska+Totalnie+Mocarny+Go%C5%9Bciu,647,319,8924845,136,0 +55769,Wioska+barbarzy%C5%84ska,300,388,0,451,9 +55770,Dina,583,717,6882236,3064,0 +55771,Wioska+barbarzy%C5%84ska,356,326,8772425,2054,0 +55772,Piek%C5%82o+to+inni,640,319,848956765,3710,0 +55773,OV1+Neath,713,594,699272880,4255,9 +55774,Wioska+barbarzy%C5%84ska,401,298,698231772,3490,0 +55775,Na+SsSskraju,276,569,1536625,4236,0 +55776,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,541,721,8201460,5275,0 +55777,007,655,339,849020094,6789,0 +55778,W81,442,718,7661091,7345,0 +55779,Flap,616,304,699098531,4503,0 +55780,0636zzz005,709,599,3986807,612,0 +55781,New+World,414,710,698152377,8286,0 +55782,w+myself,598,706,699828685,3415,0 +55783,Nowe+IMPERIUM+3,617,692,698353083,6098,0 +55784,Opal,667,659,849048856,7777,0 +55785,R+048,491,729,699195358,3578,0 +55786,%230069,574,717,1536231,3057,0 +55787,Wioska+barbarzy%C5%84ska,633,686,849096354,1071,0 +55788,Wioska+Jatutuptup,703,614,1044760,400,0 +55789,Wioska+barbarzy%C5%84ska,728,511,698191218,2276,0 +55790,085.+Wioska+barbarzy%C5%84ska,729,469,7494497,3635,0 +55791,Wioska+barbarzy%C5%84ska,400,707,849014922,6055,0 +55792,KONFA+TO+MARKA%2C+NARKA,286,410,698152377,1748,0 +55794,Kapitol_30,504,732,606407,3824,0 +55795,005+Rom,278,543,197581,4294,0 +55796,North+K25,533,271,699146580,1736,0 +55797,0660,588,717,698659980,9740,9 +55798,181,525,723,699614821,127,0 +55799,Wioska+barbarzy%C5%84ska,322,359,849098731,854,0 +55801,Piek%C5%82o+to+inni,642,326,848956765,3676,0 +55802,New+World,413,717,698152377,10290,8 +55803,231+Kalkuta,476,495,1497168,4343,0 +55804,004,331,662,8752714,2127,2 +55805,Wioska+ACFT,276,442,848906441,26,0 +55806,%23154%23,652,671,692803,1386,0 +55807,%230083,577,715,1536231,2767,0 +55808,Wioska+barbarzy%C5%84ska,289,577,498483,972,0 +55810,083.+Wioska+barbarzy%C5%84ska,731,470,7494497,4233,0 +55811,Wioska+POMPIARZ+12,274,522,849107881,5000,0 +55812,Wioska+barbarzy%C5%84ska,678,353,609384,1535,0 +55813,Wioska+barbarzy%C5%84ska,387,296,698231772,2886,0 +55814,Wioska+barbarzy%C5%84ska,381,298,699191464,1516,0 +55815,KONFA+TO+MARKA%2C+NARKA,286,413,698152377,2318,0 +55816,komandos,675,654,7976264,3530,0 +55817,KUKA+IX,285,422,6127190,624,0 +55818,New+WorldA,268,511,849084005,958,0 +55819,A%23026,732,472,2065730,9797,4 +55820,Kapitol_21,505,725,606407,4227,0 +55821,%23123%23,653,677,692803,4460,0 +55823,Wioska+barbarzy%C5%84ska,734,522,254937,1926,0 +55825,Wioska+01,668,663,126954,198,0 +55826,Gwenville+013,451,270,848986638,2925,0 +55827,007,290,587,698663855,4486,0 +55828,FP046,454,725,699605333,4564,0 +55829,%230227+barbarzy%C5%84ska,664,331,1238300,3383,0 +55830,Napewno+to+nie+jest+off,592,324,848912265,2219,0 +55831,szymek3+OCB,281,422,1323424,2463,0 +55832,Wioska+b+002,428,284,6343784,1606,0 +55833,Wioska+barbarzy%C5%84ska,721,548,698666810,9689,0 +55834,%23001,444,728,849042480,5301,0 +55835,Wioska+barbarzy%C5%84skaD,293,608,698178312,666,0 +55836,Psycha+Siada,317,640,2289134,7523,0 +55837,Avanti%21,272,485,698625834,4578,0 +55838,Wioska+barbarzy%C5%84ska,274,464,699213622,4196,0 +55839,Wioska+MIREK2222222,706,425,6927748,3072,0 +55840,Wioska+barbarzy%C5%84ska,399,700,849014922,6278,0 +55841,Wioska+barbarzy%C5%84skaA,293,609,698178312,4330,0 +55842,.achim.,572,284,6936607,3890,0 +55843,Wioska+barbarzy%C5%84ska,305,630,272173,1239,0 +55844,Wioska+barbarzy%C5%84ska,414,281,698231772,2502,0 +55845,North+064,541,273,849064752,5128,0 +55846,042,674,647,2323859,1312,0 +55847,Wioska+barbarzy%C5%84ska,365,317,3484132,5050,0 +55848,NOT%3F,314,360,9236866,2495,0 +55849,039+KTW,724,454,848883237,1726,7 +55850,Sony+911,661,670,1415009,3054,0 +55851,Z.07,709,580,699737356,2816,0 +55853,Wioska+barbarzy%C5%84ska,366,306,3484132,5299,0 +55854,Nie+atakuje+robi%C4%99+flagi,651,330,3365981,1701,0 +55855,X.03,728,443,699737356,3494,0 +55857,Wioska+barbarzy%C5%84ska,349,675,699704542,2302,0 +55858,Wioska+barbarzy%C5%84ska,676,350,609384,576,0 +55859,backstage+3,705,399,849099696,3396,0 +55860,Wiocha+zabita+dechami,549,338,849110711,4633,0 +55861,Wioska+barbarzy%C5%84ska,362,321,3698627,3283,0 +55862,MojeDnoToWaszSzczyt,475,266,9299539,5741,0 +55863,%3DSAwars%3D03%3D,563,277,849106420,5327,0 +55864,Myk,424,569,849022649,2956,0 +55865,002,288,594,698663855,10544,0 +55866,181,268,460,698941586,1576,0 +55867,Wioska+barbarzy%C5%84ska,705,401,699598425,2928,0 +55868,Wioska+ZYXW,563,715,698331388,3759,0 +55869,PPF-24,533,272,1424656,1853,0 +55870,Wioska+kacper10ciupek,549,274,8015955,7061,0 +55871,Wioska+barbarzy%C5%84ska,284,586,698663855,498,0 +55872,Wioska+Zielony+Zielony+Zielony,297,447,699876746,5436,0 +55873,Wioska+barbarzy%C5%84ska,685,358,7758085,2806,0 +55874,bagienko_03,562,278,849093353,3987,0 +55875,krainy+zachodu,285,406,698677650,3385,0 +55876,Wioska+barbarzy%C5%84ska,369,318,8772425,2161,0 +55877,Wioska+barbarzy%C5%84ska,538,729,699878511,7542,0 +55878,CastAway+%23015,707,588,9314079,3618,0 +55879,Wioska+Donek94,303,383,699841905,3464,0 +55880,--053--,583,284,542253,855,0 +55882,Wioska+barbarzy%C5%84ska,394,708,849014922,1625,0 +55883,Wioska+barbarzy%C5%84ska,731,531,17714,1575,0 +55884,Wioska+barbarzy%C5%84ska,354,324,8772425,1729,0 +55885,New+World,421,719,698152377,10083,0 +55886,Jack+69,326,344,699622781,2777,0 +55887,Wioska+barbarzy%C5%84ska,728,503,698191218,2352,0 +55888,04Wioska+barbarzy%C5%84ska,354,679,699704542,3325,0 +55889,065,726,511,699413040,3186,0 +55890,C0299,275,551,8841266,4089,0 +55891,Mroz%C3%B3w,300,593,1276665,1122,0 +55892,P%C3%B3%C5%82nocny+Bagdad,630,315,8847546,3206,0 +55893,P%7C006%7C,449,728,699393742,6283,0 +55894,No.2,327,343,849106612,2353,0 +55895,Wioska+Frolunda,630,693,8379825,536,0 +55896,Nowe+IMPERIUM+8,620,698,698353083,4719,0 +55897,Ow+Konfederacja,608,399,848915730,7384,0 +55898,Flap,610,296,699098531,4165,0 +55899,%3D%7C45%7C%3D,692,372,9101574,496,0 +55900,Wsch%C3%B3d+003,695,622,698562644,2142,0 +55901,.achim.,579,283,6936607,3247,8 +55902,Twierdza+%28Ald%29,331,609,0,6873,32 +55903,Wioska+barbarzy%C5%84ska,722,577,2453888,4285,0 +55904,Wioska+barbarzy%C5%84ska,324,633,698908184,6206,0 +55905,Grzejdas+2,698,385,849057764,6460,0 +55906,Wioska+barbarzy%C5%84ska,726,554,17714,341,0 +55907,Wioska+barbarzy%C5%84ska,732,484,698191218,1934,0 +55908,Wioska+barbarzy%C5%84ska,647,684,848987051,5252,0 +55910,zwiedle+wrzosowiska,291,393,698677650,6082,0 +55911,%7CD%7C+IS,457,725,698147372,2632,0 +55912,003,698,375,699832463,2042,0 +55913,Wioska,723,471,699765601,1537,0 +55914,Wioska+wojtek1435,541,271,6032352,4572,0 +55915,Flap,610,300,699098531,5228,0 +55916,Wioska+barbarzy%C5%84ska,697,612,699778867,466,0 +55917,Wioska+barbarzy%C5%84ska,560,726,699828442,1441,0 +55918,Wioska+ElitoPogero,446,673,8827094,3844,0 +55919,003,291,596,698663855,7432,0 +55920,049,473,269,2502956,8538,6 +55921,055,671,650,699099811,4220,0 +55922,New+World,435,717,698152377,6464,0 +55924,Wioska+barbarzy%C5%84ska,540,728,699878511,8609,0 +55925,Australia+D,296,425,699852080,4683,0 +55926,D017,562,279,699299123,2653,0 +55927,060-Mroczna+Osada,701,379,849035905,908,0 +55928,P%C3%B3%C5%82nocny+Bagdad,623,304,8847546,7245,0 +55929,Wioska+polotny33,732,464,8776452,360,0 +55930,61.+Wioska+61,281,566,849091769,7662,0 +55931,North+022,509,273,849064752,7793,0 +55932,Gubernia+02+Robsona,365,314,849107532,4133,0 +55933,Przyl%C4%85dek,270,459,848977600,2121,0 +55934,023.+Gloria+Victis,282,564,848886973,7558,0 +55935,C0252,268,526,8841266,5029,0 +55936,Wioska+barbarzy%C5%84ska,548,719,699828442,3258,0 +55937,Wioska+barbarzy%C5%84ska,353,682,699704542,2485,0 +55938,Piek%C5%82o+to+inni,654,322,848956765,3278,0 +55939,C007,466,732,8954402,2553,0 +55940,Wioska+barbarzy%C5%84ska,334,336,699304554,1176,0 +55941,C0305,276,529,8841266,3722,0 +55942,KUKA+V,279,436,6127190,1097,0 +55943,ble,623,697,848909464,1538,0 +55944,%23204+C,509,733,9037756,4022,0 +55945,Wioska+niko30,285,577,848988401,9581,0 +55946,szymek4,281,418,1323424,1452,0 +55947,116+Wioska+barbarzy%C5%84ska,569,284,699854484,171,0 +55948,007,290,586,698663855,4624,0 +55949,North+017,508,270,849064752,8067,4 +55950,067,724,520,699413040,2347,0 +55951,akuku,555,726,6425087,1182,0 +55952,%23K75+0036,523,726,699728159,5266,0 +55953,Wioska+barbarzy%C5%84ska,318,356,0,356,0 +55954,Wioska+barbarzy%C5%84ska,334,655,6910361,825,0 +55955,Wioska+barbarzy%C5%84ska,337,661,6354098,390,0 +55956,63%2F2,328,654,8175236,2559,0 +55958,Wioska+barbarzy%C5%84ska,724,549,698666810,6137,0 +55959,012,395,292,699694284,5104,6 +55960,Artur+Boruc+v3,711,405,699146876,2667,0 +55961,04Wioska+barbarzy%C5%84ska,362,688,699704542,5461,0 +55962,Wioska+Volf102,413,282,698202162,138,0 +55963,Osada+koczownik%C3%B3w,730,523,254937,4282,3 +55964,KERTO+01,709,602,7474527,3925,0 +55965,MojeDnoToWaszSzczyt,479,271,9299539,5787,0 +55966,North+113,512,274,849064752,1857,0 +55967,Bagno+37,471,729,848883684,4308,0 +55968,Wioska+barbarzy%C5%84ska,733,492,1601917,3552,0 +55969,Wioska+barbarzy%C5%84ska,393,706,849014922,5659,0 +55970,102+Wioska+barbarzy%C5%84ska,536,272,699854484,3978,0 +55971,%3F%3F%3F%3F,477,274,698489071,4474,0 +55972,wybuduj%C4%99+sobie+pa%C5%82ac...,602,703,699828685,10178,9 +55973,114.Stradi,425,281,698365960,6379,0 +55974,%24005%24+JBL,304,627,699550876,8619,0 +55975,Wioska+muflon1922,297,388,1827485,376,0 +55976,.achim.,578,285,6936607,3100,0 +55977,092+koniec+%C5%9Bwiata,634,693,849093426,3547,0 +55978,Wioska+barbarzy%C5%84ska,726,474,113796,877,0 +55979,A%23027,735,500,2065730,9797,4 +55980,KONFA+TO+MARKA%2C+NARKA,271,444,698152377,4347,0 +55981,londyn,299,395,849089601,1181,0 +55982,Wioska+barbarzy%C5%84ska,268,502,6186491,424,0 +55983,Wioska+barbarzy%C5%84ska,716,572,2453888,4555,0 +55984,005,327,645,8752714,2331,3 +55985,Wioska+barbarzy%C5%84ska,582,720,7589468,201,0 +55986,Wioska+barbarzy%C5%84ska,272,488,698625834,803,0 +55987,B%C4%99dzie+zadyma%3F,623,474,699545762,771,0 +55988,%230230+barbarzy%C5%84ska,662,335,1238300,3038,0 +55989,Wioska+leolen+n,731,498,849104855,8321,0 +55990,kamilkaze135+%2319,685,364,699705601,1527,0 +55991,Wioska+Arda26+and+Azdro,499,715,699429335,10160,0 +55992,Piek%C5%82o+to+inni,646,323,848956765,3350,0 +55993,%23001,304,374,849110743,6725,0 +55994,Blaviken,323,356,849098731,1045,0 +55995,New+World,431,724,698152377,7147,0 +55996,071,730,519,699413040,1794,0 +55997,Wioska+barbarzy%C5%84ska,723,455,698191218,1262,0 +55998,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,539,722,8201460,3575,0 +55999,Osada+koczownik%C3%B3w,560,721,699828442,9496,4 +56000,Ave+Why%21,498,728,699121671,717,0 +56001,XDX,601,292,699098531,4199,0 +56002,Wioska+barbarzy%C5%84ska,521,726,849066849,537,0 +56003,%230060,579,711,1536231,3602,0 +56004,0001,654,326,8890346,7368,0 +56005,Wioska+barbarzy%C5%84ska,719,425,699628084,1333,0 +56006,Nie+gram+tu,294,426,849061417,437,0 +56007,CastAway+%23022,713,589,9314079,3590,0 +56008,Freedom,648,324,699518384,726,0 +56009,North+K25,562,273,699146580,1923,0 +56010,K67+...........................,702,614,698867483,7543,3 +56011,WIOSKA+OD+BIG+PAPA+MZM.,614,480,699117865,9633,0 +56012,samotna+gora,293,392,698677650,7611,0 +56013,052+-+Budowanko%21,503,731,7540891,3669,0 +56014,Granica1,272,467,848977600,2456,7 +56015,Wioska+barbarzy%C5%84ska,728,540,17714,1632,0 +56016,No.1,329,339,849106612,2521,0 +56017,Wioska+barbarzy%C5%84ska,335,658,0,332,0 +56018,%23120%23,649,669,692803,4239,0 +56019,ciemnogr%C3%B3d,322,358,849098731,484,0 +56020,%230249+colt9,438,281,1238300,4624,0 +56021,Wioska+mevest,549,275,9067168,42,0 +56022,102.+Wioska+barbarzy%C5%84ska,723,462,7494497,6304,0 +56023,Wioska+barbarzy%C5%84ska,280,585,849097937,2962,0 +56025,Wioska+barbarzy%C5%84ska,735,498,698191218,3256,0 +56027,Wioska+barbarzy%C5%84ska,347,678,699704542,2425,0 +56028,Wioska+barbarzy%C5%84ska,460,268,699191449,1264,0 +56029,Wioska+012,710,595,7999103,8189,0 +56030,1+oo.oo,441,273,848933470,731,0 +56031,Wioska+barbarzy%C5%84ska,727,554,698666810,6121,0 +56032,North+K25,561,280,699146580,1501,0 +56033,Wioska+barbarzy%C5%84ska,285,587,698663855,563,0 +56035,XDX,613,298,699098531,3707,0 +56036,nowa+4,631,694,699372829,975,0 +56037,Bessa+016,649,679,848987051,8697,9 +56038,013+Satoma,676,647,849102108,4646,0 +56039,118.Stradi,423,278,698365960,4933,0 +56040,058,637,687,699695167,2294,9 +56041,NieMacieSzans,501,731,849110688,3153,0 +56042,Wioska+barbarzy%C5%84ska,396,703,849014922,5658,0 +56043,Wioska+barbarzy%C5%84ska,714,431,699574408,1599,0 +56044,Wioska+004,694,633,6472706,6017,0 +56045,010.+Osada+koczownik%C3%B3w,690,374,2873154,6523,2 +56046,%C5%81akaMakaF%C4%85,563,270,849096341,2881,0 +56047,NP+03,304,390,849076810,1587,0 +56048,093+Wioska+barbarzy%C5%84ska,540,271,699854484,4840,0 +56049,Nowe+Dobra+-+budowa,689,625,699759128,5037,0 +56050,paawlo13,417,410,698848067,7528,0 +56051,No+to+jedziemy+%3AD,474,733,699333701,2079,0 +56053,zelazne+wzgorza,291,399,698677650,2510,0 +56054,Wioska+oliwer1996,489,723,699075613,6134,0 +56055,Nowa+63,723,567,698702991,4366,0 +56056,Wioska+Morgan578,277,527,849047233,6435,0 +56057,%3D%7C43%7C%3D,692,374,9101574,802,0 +56058,Wioska+klejmon,648,332,849095771,723,0 +56059,%23Kresy,632,692,2665207,7325,8 +56060,Sony+911,672,654,1415009,5348,0 +56061,%C5%BBubr,681,356,699875213,1869,0 +56062,RAMZES,532,272,8082376,2887,0 +56063,%23207+C,517,729,9037756,1555,0 +56064,XDX,616,299,699098531,3264,0 +56065,Gwenville+014,453,270,848986638,1090,0 +56066,Wioska+barbarzy%C5%84ska,658,333,699072129,2748,0 +56067,Zaplecze+Barba+038,348,331,699796330,2731,0 +56068,CastAway+%21037,713,582,9314079,2645,0 +56069,Wioska+barbarzy%C5%84ska,726,452,699347951,829,0 +56070,New+World,432,719,698152377,10291,0 +56071,Wioska+barbarzy%C5%84ska,558,720,699828442,3671,0 +56073,CastAway+%21023,710,593,9314079,5669,0 +56074,-12.+Skandynawska+huta,317,365,698345556,2045,3 +56075,Wioska+barbarzy%C5%84ska,398,708,849014922,2628,0 +56076,032,691,621,699099811,1476,0 +56077,Marysin,599,710,823987,2843,0 +56078,Wioska+barbarzy%C5%84ska,385,704,849014922,1623,0 +56080,Lecymy+DUR,342,327,6169408,995,0 +56081,Wioska+Krzych0007,280,428,699682780,3242,0 +56082,Wioska+Mietusek22,399,710,6001174,7351,0 +56083,Alamo2,716,569,2723244,2133,0 +56084,077.+Wioska+barbarzy%C5%84ska,732,465,7494497,5145,0 +56085,KUKA+III,285,434,6127190,3567,0 +56086,Wioska+barbarzy%C5%84ska,726,550,698666810,8567,0 +56087,New+World,408,710,698152377,1885,0 +56088,New+World,437,715,698152377,6934,0 +56089,040+KTW,723,444,848883237,1840,0 +56090,Wioska+Boski222,563,720,6299408,8206,0 +56091,Wioska+barbarzy%C5%84ska,460,276,699308637,2157,0 +56092,Diduuu,560,397,849108339,2265,0 +56093,wwwb,599,707,699828685,3367,0 +56094,Wioska+saladyn89.,669,337,7346797,5793,0 +56095,003,333,656,8752714,2746,2 +56096,--050--,583,290,542253,1916,0 +56097,Wioska+barbarzy%C5%84ska,727,550,698666810,8546,0 +56098,O115,313,638,272173,6626,0 +56099,B022,627,309,8740199,2553,0 +56100,Osada+koczownik%C3%B3w+03,340,336,698757439,10138,6 +56101,Twierdza+%28MA%C5%81YSZ%29,331,610,0,6873,32 +56103,Twierdza+%28Zaj%C4%99nc%29,331,611,0,6873,32 +56104,Maryna,268,458,699650981,4052,0 +56105,Wioska+barbarzy%C5%84ska,312,368,699660539,1472,0 +56106,Wioska+Cypis666,274,460,699730399,5440,0 +56107,Wioska+barbarzy%C5%84ska,631,690,6818593,1585,0 +56109,002,289,594,698663855,10544,0 +56110,Psycha+Siada,322,641,2289134,6762,0 +56111,0000042Z,275,566,849089881,1028,0 +56112,MojeDnoToWaszSzczyt,492,267,9299539,6236,0 +56113,Wioska+barbarzy%C5%84ska,365,690,0,283,0 +56114,Wioska+barbarzy%C5%84ska,675,351,2976468,2624,0 +56115,wwwb,605,710,699828685,2846,0 +56116,BIMBER+6,438,280,6857973,1012,0 +56117,Wioska+barbarzy%C5%84ska,731,545,254937,3517,0 +56118,KONFA+TO+MARKA%2C+NARKA,284,419,698152377,2362,0 +56119,Wioska+Mihalina,735,514,698849979,518,0 +56120,Wioska+019,674,345,7226782,983,0 +56121,K67+07,702,607,698867483,4350,3 +56122,Wioska+igrane5000,557,272,7427966,3286,0 +56123,New+World,439,725,698152377,2737,0 +56124,43.,333,660,8665783,542,0 +56125,Wioska25,333,347,699711926,3889,0 +56126,115.Stradi,425,278,698365960,5462,0 +56127,Wioska+barbarzy%C5%84ska,660,339,699072129,3707,0 +56128,028,713,590,6160655,2998,0 +56129,035.+marcopolo1324,688,362,2873154,2874,0 +56130,New+World,430,723,698152377,7310,0 +56131,037.+Small+Town,496,735,848928624,2499,0 +56132,KONFA+TO+MARKA%2C+NARKA,289,399,698152377,1749,0 +56133,Wioska+barbarzy%C5%84ska,597,293,698350371,719,0 +56134,pRoFiCe+II,362,678,698712383,4844,0 +56135,Wioska+asiulkaaa23,417,288,3411571,6212,0 +56136,%3F%3F%3F%3F,469,273,698489071,3929,0 +56137,Wioska+barbarzy%C5%84ska,298,619,2289134,687,0 +56138,New+World,409,710,698152377,3584,0 +56139,%3D122%3D+Wioska+barbarzy%C5%84ska,720,565,3781794,1781,0 +56140,0000039Z,276,558,849089881,2160,0 +56141,042+KTW,727,444,848883237,1471,0 +56142,K42+ADAMUS+007,279,432,6212605,9172,8 +56143,Sony+911,683,648,1415009,1745,0 +56144,004,666,333,849020094,4904,3 +56145,Wioska+cobra2ooo,708,587,699734795,628,0 +56146,Zeta+pi%C4%99%C4%87,573,277,849080011,1231,0 +56147,RPM+CUSTOM+3,556,282,849102094,3023,0 +56148,Wioska+barbarzy%C5%84ska,390,704,849014922,1484,0 +56149,Poznan+003,411,287,1924718,494,0 +56150,All+heil+CSA,592,284,699448276,509,0 +56151,Wioska+barbarzy%C5%84ska,275,464,699213622,3698,0 +56152,Wioska+hiszpan78,277,534,699721590,409,0 +56153,Kuzyn+B%C5%82a%C5%BCej,583,714,849098628,5503,1 +56154,Wioska+oleska2002,593,283,6296228,2999,0 +56155,BETON+111,663,662,699277039,232,0 +56156,Sony+911,699,394,1415009,2380,0 +56157,Wioska+barbarzy%C5%84ska,357,318,3698627,2959,0 +56159,062,725,511,699413040,3570,0 +56160,North+103,484,265,849064752,2591,0 +56161,Flap,603,298,699098531,3009,0 +56162,M001,278,440,1669587,998,0 +56163,Piek%C5%82o+to+inni,651,320,848956765,3473,0 +56164,Wioska+szaikan96,620,697,3860614,26,0 +56165,Wioska+barbarzy%C5%84ska,535,269,7758085,2339,0 +56166,%23044,560,283,849064614,1121,0 +56167,007,318,377,7919620,5071,0 +56168,Alamo1,718,565,2723244,2773,8 +56169,bagienko_06,559,283,849093353,3045,0 +56170,Piek%C5%82o+to+inni,647,325,848956765,3315,0 +56171,131.Stradi,394,294,698365960,3346,0 +56172,%5B840%5D+Odludzie,723,441,848985692,5098,0 +56174,%5B0269%5D,266,493,8630972,3941,0 +56175,PPF-03,521,272,1424656,5276,0 +56177,Cadiz,649,673,747422,3325,0 +56178,Wioska+Lord+%C5%81ukasz05,726,472,8816336,2371,0 +56179,Nowa+Baza+2,613,697,698353083,5134,0 +56180,247,451,280,7271812,481,0 +56181,Wioska+bartekwach,266,517,849107507,4382,0 +56182,Wioska+barbarzy%C5%84ska,318,368,0,433,0 +56183,B015,529,269,699485250,3809,0 +56184,223...NORTH,437,283,6920960,1826,0 +56185,Flap,609,291,699098531,4511,0 +56186,Wioska+XXARDASS,546,272,8015955,4590,0 +56187,MojeDnoToWaszSzczyt,498,269,9299539,4250,0 +56188,Wioska+AreYouHorny%3F,720,440,849067079,3620,0 +56189,008,398,290,699694284,8100,0 +56190,C0237,277,552,8841266,9219,9 +56191,C.058,725,479,9188016,1302,0 +56192,Wioska+barbarzy%C5%84ska,298,608,699604515,317,0 +56193,Wioska+agjao,500,734,849070220,946,0 +56194,04Wioska+barbarzy%C5%84ska,354,676,699704542,4629,0 +56195,009,293,589,698663855,4210,0 +56196,0048,478,732,699280514,980,0 +56197,%2A001%2A,275,433,699791054,3350,0 +56198,%3A%29+%3A%29,268,464,3972413,3385,0 +56199,Ave+Why%21,472,728,699121671,1286,0 +56200,C017,535,724,698599365,1902,0 +56201,Wioska+barbarzy%C5%84ska,731,482,698191218,2058,0 +56202,%3F%3F%3F%3F,490,265,698489071,5397,0 +56203,Wioska+barbarzy%C5%84ska,387,700,849014922,1640,0 +56204,%21Wioska+barbarzy%C5%84ska+2,584,720,8779575,3331,0 +56205,Wioska+Stefal-S22,556,271,2764337,841,0 +56206,osgiliath,291,392,698677650,6696,0 +56207,Mohicans,727,538,6002527,5442,0 +56208,Wioska+barczi1979,400,701,698692141,3566,0 +56209,Wioska35,325,345,699711926,1599,0 +56210,R+047,491,728,699195358,3634,0 +56211,mroczna+puszcza,294,391,698677650,1140,0 +56212,Piek%C5%82o+to+inni,652,332,848956765,3717,0 +56213,Wioska+MannyKing97,440,277,849111244,4518,0 +56214,FP041,469,727,699605333,5197,0 +56216,%7CD%7C+Cavemere,455,722,698147372,6146,9 +56217,K42+ADAMUS+022,279,430,6212605,2926,0 +56218,P%C3%B3%C5%82nocny+Bagdad,628,313,8847546,6661,7 +56219,Las+Vegas,659,335,849111196,8602,0 +56220,A003,336,656,849105102,3435,0 +56221,Wioska+barbarzy%C5%84ska,678,640,698191218,2216,0 +56222,Wioska+Grisza10,653,321,896355,6208,0 +56223,Wioska+barbarzy%C5%84ska,336,339,849101604,508,0 +56224,%5BS%5Dandacza,274,549,849106971,4171,0 +56225,KONFA+TO+MARKA%2C+NARKA,288,422,698152377,2551,0 +56226,Wioska+barbarzy%C5%84ska,356,315,3698627,2701,0 +56227,New+WorldA,274,507,849084005,518,0 +56228,Master,274,545,849052289,8663,0 +56229,Wioska+Kurji,496,266,698324343,7599,0 +56230,%24008%24+Lordzik,300,622,699550876,7513,0 +56231,gory+mgliste,288,395,698677650,5137,0 +56232,Wioska+nortos17,336,337,699428898,126,0 +56233,Wioska+Wu7ek,701,616,849108157,3220,0 +56234,Sony+911,678,653,1415009,4982,0 +56235,Wioska+barbarzy%C5%84ska,349,323,8772425,1331,0 +56236,Wioska+barbarzy%C5%84ska,534,729,699878511,6604,0 +56237,CastAway+%21024,711,591,9314079,5466,0 +56238,C.059,726,482,9188016,2952,0 +56240,North+029,508,269,849064752,7117,0 +56241,Wioska+piro78,578,714,699840189,3589,0 +56242,Spajki,681,351,7973893,1232,0 +56243,117+Wioska+barbarzy%C5%84ska,552,271,699854484,596,0 +56244,C.060,729,478,9188016,3308,0 +56245,Arczi997+08,266,512,849055181,382,0 +56246,Bagno+33,475,724,848883684,4886,0 +56247,Wioska+barbarzy%C5%84ska,370,689,849030086,692,0 +56248,Wioska+barbarzy%C5%84ska,705,389,699598425,2419,0 +56249,P%C3%B3%C5%82nocny+Bagdad,629,304,8847546,6519,0 +56250,44+barbarzy%C5%84ska,273,435,849018442,3212,0 +56251,Wioska+barbarzy%C5%84ska,721,456,699347951,986,0 +56252,Wioska+barbarzy%C5%84ska,418,285,3411571,1619,0 +56253,Z%C5%82oty+%C5%9Awit,598,298,699883079,622,0 +56254,New+World,434,727,698152377,7232,0 +56255,Wioska+barbarzy%C5%84ska,532,724,699878511,3523,0 +56256,103+Wioska+barbarzy%C5%84ska,585,280,699854484,3212,0 +56257,Winterthur+II,694,367,849109637,1736,0 +56258,Wioska36,325,346,699711926,1629,0 +56259,Wioska+bartek696,367,688,6968280,26,0 +56260,Z02,371,694,698652014,2303,0 +56261,Wioska+barbarzy%C5%84ska,362,681,0,144,0 +56262,Wioska,734,483,849084474,1456,0 +56263,Wioska+barbarzy%C5%84ska,724,455,699347951,1056,0 +56264,37.Etolia,727,527,8976313,2926,0 +56265,Wioska+Henryk+IV,674,658,699421735,6526,0 +56266,1023zznowuk,707,598,3986807,974,0 +56267,XDX,615,306,699098531,3264,0 +56268,005+%7C+North,383,695,699511295,7807,0 +56269,%5B0208%5D,273,493,8630972,6264,0 +56270,Alamo3,723,563,2723244,2243,7 +56271,Kheled-Zaram,407,285,3411571,6032,0 +56272,069+Wioska+barbarzy%C5%84ska,338,661,6354098,3785,0 +56273,041+-+Budowanko%21,535,725,7540891,5587,9 +56274,Wioska+barbarzy%C5%84ska,286,589,0,4745,0 +56275,Wioska+bastekx,720,418,699855277,26,0 +56276,Avanti%21,268,468,698625834,1843,0 +56277,No.30,574,723,698826986,630,0 +56278,Wioska+Natalii,618,304,849076678,285,0 +56279,Wioska+barbarzy%C5%84ska,462,278,699191455,1256,0 +56280,001Godziwa+Wioska,455,274,602408,7971,0 +56282,PPF-28,537,269,1424656,1631,0 +56283,001,274,446,699282717,4381,0 +56284,Wioska+barbarzy%C5%84ska,371,304,699191464,1091,0 +56285,Wioska+barbarzy%C5%84ska,366,688,0,296,0 +56286,001,301,394,849109795,5082,0 +56287,O151,309,631,272173,2594,0 +56288,Wioska+barbarzy%C5%84ska,537,482,0,186,0 +56289,Wioska+gall2,272,474,699598396,1784,0 +56291,Wioska+barbarzy%C5%84ska,353,322,8772425,1688,0 +56292,Wioska+barbarzy%C5%84ska,599,296,0,333,0 +56293,Wioska+tomaszek74,685,642,698151302,2166,0 +56294,New+World,418,718,698152377,3693,0 +56295,Wioska+barbarzy%C5%84ska,722,576,2453888,4707,0 +56296,Wioska+2,664,661,849111050,1376,0 +56298,Wioska+tedy1,660,667,3631404,393,0 +56299,%230085,579,720,1536231,2907,0 +56300,Wioska+barbarzy%C5%84ska,609,302,0,76,0 +56301,Wioska+barbarzy%C5%84ska,617,694,698353083,683,0 +56302,Wioska+ArturLublin,609,298,698906643,1094,0 +56303,Enter+Sandman,685,564,848926293,523,0 +56304,O121,306,628,272173,5983,0 +56305,Wioska+008,731,505,2999957,3373,0 +56306,Piek%C5%82o+to+inni,657,337,848956765,2374,0 +56307,C0315,273,554,8841266,2526,0 +56308,New+World,411,707,698152377,4361,0 +56309,Vetiuss2,281,571,849096399,1608,0 +56310,wwwb,600,709,699828685,2764,0 +56311,Wioska+barbarzy%C5%84ska,643,687,848987051,5042,0 +56312,Wioska+MORUSGRIN,536,733,7590275,7504,0 +56313,72.+Wioska+72,278,563,849091769,2560,0 +56314,047,718,563,7085502,6046,8 +56315,ble,622,699,848909464,3995,0 +56316,004,294,594,698663855,10068,0 +56317,B016,531,269,699485250,3977,0 +56318,Wioska+barbarzy%C5%84ska,543,732,699878511,5094,0 +56319,%23158%23,654,674,692803,1141,0 +56320,Belweder,281,416,699854312,785,0 +56321,Psycha+Siada,315,640,6910361,8511,8 +56322,%23131%23,661,664,692803,3064,0 +56323,Wioska+barbarzy%C5%84ska,729,512,698191218,2214,0 +56324,K67+26,706,609,698867483,2048,0 +56325,Winterthur,693,364,849109637,3905,0 +56326,%5B831%5D+Odludzie,723,433,848985692,6237,0 +56327,Wioska+Aragorn+Stra%C5%BCnik+P%C3%B3%C5%82nocy,342,673,2051721,1364,0 +56328,%5B838%5D+Odludzie,721,440,848985692,5533,0 +56329,003,449,273,699562874,7316,8 +56330,Wioska+barbarzy%C5%84ska,723,429,699628084,1268,0 +56331,Wioska+wertywer,543,726,699469600,1031,0 +56332,X.02,727,448,699737356,2835,0 +56333,DEMON-SRT,462,273,849098667,678,0 +56334,024.+Gloria+Victis,285,567,848886973,6359,0 +56335,Wioska+Hary666,728,488,849104855,7359,0 +56336,Nowe+IMPERIUM+9,620,699,698353083,3121,0 +56337,62.+Wioska+62,276,568,849091769,4842,0 +56338,o018,613,706,699189792,4348,0 +56339,Odwierty,688,372,7973893,707,0 +56340,P%C3%B3%C5%82nocny+Bagdad,626,308,8847546,6671,0 +56341,MojeDnoToWaszSzczyt,495,270,9299539,4458,0 +56342,%7CD%7C+IS,455,723,698147372,2241,0 +56343,Wioska+barbarzy%C5%84ska,628,690,6818593,1796,0 +56344,SmokeCity,725,516,849111487,4988,0 +56345,Wioska+barbarzy%C5%84ska,608,709,699828685,2539,0 +56346,Wioska+barbarzy%C5%84ska,685,361,7758085,2684,0 +56347,Wioska+barbarzy%C5%84ska,706,402,699598425,2989,0 +56348,Wioska+Szrek5,449,722,849020667,3864,0 +56349,wojo,694,370,849054951,2349,0 +56350,Wioska+barbarzy%C5%84ska,404,465,6258092,3532,0 +56351,038.+5spajk5,675,349,2873154,1365,0 +56352,KONFA+TO+MARKA%2C+NARKA,274,449,698152377,4503,0 +56353,C-006,321,357,699406247,3003,0 +56354,012.+Osada+koczownik%C3%B3w,685,367,2873154,5810,9 +56355,Wioska+barbarzy%C5%84ska,278,461,699213622,3378,0 +56356,Wioska+barbarzy%C5%84ska,536,730,699878511,6607,0 +56357,Wioska+Gebels25,291,410,848942618,158,0 +56358,zielona2,364,693,2105150,3764,0 +56359,%3D%7C51%7C%3D,687,374,9101574,327,0 +56360,Wioska+barbarzy%C5%84ska,735,488,698191218,2201,0 +56361,Wioska+wilka+06,719,562,6786449,3247,0 +56362,%5B0270%5D,265,495,8630972,4173,0 +56363,002,366,685,281866,254,0 +56364,Avanti%21,267,485,698625834,5509,0 +56365,Wioska2+barbarzy%C5%84ska,709,414,8459255,3345,0 +56366,%3F%3F%3F%3F,456,269,698489071,3808,0 +56367,Wioska+barbarzy%C5%84ska,542,386,0,2942,0 +56368,Kapitol_24,506,730,606407,4339,0 +56369,Wioska+barbarzy%C5%84ska,388,296,699191449,726,0 +56370,Motorola+l10,363,319,698806018,3178,0 +56371,ZZZ+.%3A%3A.+cinek3456%2F12,585,712,33900,1359,0 +56372,Wioska+MauritiusMagnus,393,301,7508390,138,0 +56373,K67+06,702,622,698867483,4013,0 +56374,Wioska+3,295,401,699763225,395,0 +56375,Psycha+Siada,319,647,8099868,7092,0 +56376,Wioska+014,683,633,7999103,5170,0 +56377,Wioska+barbarzy%C5%84ska,590,294,699799629,615,0 +56378,Wioska+001,692,630,6472706,3969,0 +56379,Wioska+barbarzy%C5%84ska,307,373,0,687,0 +56380,Wioska+barbarzy%C5%84ska,634,684,849104328,1014,0 +56381,.achim.,571,282,6936607,2233,0 +56382,A%23034,724,529,2065730,9173,6 +56383,Wioska+DRAGONMIR,271,506,698171150,1400,0 +56385,sh08,514,273,7064954,2237,0 +56386,Wioska+barbarzy%C5%84ska,687,643,698786826,2419,0 +56387,Wioska+Jackob666,726,478,849104855,7386,0 +56388,North+030,517,273,849064752,7011,0 +56389,Bessa+017,642,680,848987051,5249,7 +56390,069,727,516,699413040,1737,0 +56391,isengard,295,390,698677650,3796,0 +56392,Wioska+barbarzy%C5%84ska,538,278,7758085,2171,0 +56393,New+WorldA,272,539,849084005,1140,0 +56394,Wioska+barbarzy%C5%84ska,642,684,848987051,5040,0 +56395,%2304%21,640,685,849101884,8872,0 +56396,Wioska+barbarzy%C5%84ska,365,313,3484132,5209,0 +56397,Wioska+Zero+1.,437,273,7150939,2322,0 +56398,Wioska+barbarzy%C5%84ska,681,482,699598425,3867,0 +56399,New+World,413,716,698152377,6396,0 +56400,Wioska+barbarzy%C5%84ska,724,456,699347951,720,0 +56401,Wioska+barbarzy%C5%84ska,536,269,7758085,2805,0 +56402,P%C3%B3%C5%82nocny+Bagdad,624,307,8847546,3893,0 +56403,C0304,275,550,8841266,3515,0 +56404,www,602,706,699828685,4264,0 +56405,Wioska+barbarzy%C5%84ska,729,547,698666810,8896,0 +56407,New+World,434,717,698152377,8108,0 +56409,Wioska+Aritian1,547,269,7492426,7563,0 +56410,D011,565,279,699299123,3030,4 +56411,Wioska+agawy,727,497,7259218,1278,0 +56412,X.04,731,448,699737356,3283,0 +56413,Osada+koczownik%C3%B3w,639,314,1018357,1149,4 +56414,Wioska+barbarzy%C5%84ska,415,283,698231772,2014,0 +56416,A%23032,708,407,2065730,9797,4 +56417,Wioska1,549,720,849085293,743,0 +56418,Avanti%21,271,468,698625834,2122,0 +56419,New+World,414,709,698152377,3820,0 +56420,E003,634,312,699299123,2248,0 +56421,P4Kasik,275,452,699627771,1442,0 +56422,Wioska+0027,341,675,9186126,816,0 +56423,Wioska+barbarzy%C5%84ska,732,513,698191218,2228,0 +56424,Avanti%21,268,485,698625834,5525,0 +56425,New+WorldA,271,537,849084005,1123,0 +56426,Wioska+010,687,639,1647052,807,0 +56428,Kapitol_17,500,727,606407,4335,0 +56429,New+World,424,715,698152377,6757,0 +56430,Wioska+barbarzy%C5%84ska,344,663,6354098,789,0 +56431,Wioska+dalesz1212,387,303,8217130,1026,0 +56432,KONFA+TO+MARKA%2C+NARKA,273,443,698152377,4402,0 +56433,Zak%C4%85tek,271,461,848977600,3144,3 +56434,atol+6,277,544,848930898,1007,0 +56435,36.,328,663,8665783,1186,0 +56436,Wioska+barbarzy%C5%84ska,371,306,698160606,2750,0 +56437,Wioska+barbarzy%C5%84ska,646,375,7973893,2429,0 +56438,Avanti%21,265,482,698625834,5466,0 +56439,064+Osada+koczownik%C3%B3w,539,277,699854484,9835,2 +56441,Dajanka+26,290,604,849012843,708,0 +56443,Wioska+barbarzy%C5%84ska,347,679,699704542,3000,0 +56445,Wioska+barbarzy%C5%84ska,320,347,0,915,0 +56446,Nowe+Dobra+-+budowa,686,632,699759128,4168,0 +56447,Wioska+barbarzy%C5%84ska,421,278,698231772,2473,0 +56448,srodziemie,285,401,698677650,2334,0 +56449,Wioska+barbarzy%C5%84ska,427,277,849017820,721,0 +56450,001+Osada+koczownik%C3%B3w+tu+%C5%9Blij,292,594,698663855,10544,9 +56451,Wioska+Lady+elo320,264,480,699632387,3500,0 +56452,Wioska+barbarzy%C5%84ska,389,704,849014922,5563,0 +56453,Ma%C5%82y,726,501,699724603,262,0 +56455,UlanyKaplanisko,544,271,849111632,524,0 +56456,Wioska+barbarzy%C5%84ska,413,281,698231772,1980,0 +56457,Wioska+barbarzy%C5%84ska,374,696,849030086,575,0 +56458,084+obrze%C5%BCa,272,559,699510259,1021,0 +56459,Poznan+000,414,289,1924718,3924,0 +56460,072a+Wioska+barbarzy%C5%84ska,339,669,6354098,4132,0 +56462,Wioska+bolek13241,724,567,849064084,2648,0 +56463,Wioska+barbarzy%C5%84ska,720,429,699524891,2733,0 +56464,O112,298,617,272173,7749,6 +56465,Wioska+barbarzy%C5%84ska,315,370,0,452,0 +56466,budowa+04,601,710,7139820,2238,0 +56467,New+World,414,717,698152377,6692,0 +56468,Wioska+barbarzy%C5%84ska,398,713,849014922,1374,0 +56469,Emilian%C3%B3w,272,460,849116221,927,0 +56471,New+World,412,717,698152377,6634,0 +56473,Wioska+barbarzy%C5%84skaG,293,611,698178312,457,0 +56474,Wioska+barbarzy%C5%84ska,716,426,699524891,2427,0 +56475,Wioska+barbarzy%C5%84ska,705,406,699598425,2665,0 +56476,Urz%C4%99dowa+2,323,343,699802012,835,0 +56477,Wioska+Puma79,323,654,848882397,2147,0 +56478,Wioska+barbarzy%C5%84ska,704,380,1767876,2193,0 +56479,Kapitol_27,500,732,606407,2771,0 +56480,P%C3%B3%C5%82nocny+Bagdad,622,309,8847546,3435,0 +56481,Nowe+Dobra+-+budowa,686,631,699759128,5208,0 +56483,North+K25,532,270,699146580,2175,7 +56485,Z%C5%82oty+%C5%9Awit,595,288,698350371,930,0 +56486,03+Wioska+barbarzy%C5%84ska,726,434,8785003,2065,0 +56487,043,677,643,2323859,982,0 +56488,Wioska+barbarzy%C5%84ska,725,436,699524891,3090,0 +56489,KONFA+TO+MARKA%2C+NARKA,271,443,698152377,7112,0 +56490,Wioska+barbarzy%C5%84ska,711,403,0,859,0 +56491,nr7,637,692,364126,1385,0 +56492,Wioska+barbarzy%C5%84ska,389,293,698231772,6350,0 +56493,PPF-16,522,267,1424656,3134,0 +56494,Wioska+Pawe%C5%82+I+Wspanialy,319,634,470266,1674,0 +56495,B012,528,271,699485250,3780,0 +56496,Wioska+sos1234,646,682,7150683,1258,0 +56497,Wioska+barbarzy%C5%84ska,367,690,0,514,0 +56498,Wioska+ajno%C5%82,308,633,6647642,3170,0 +56499,Wioska+barbarzy%C5%84ska,651,319,698895940,6640,0 +56500,.achim.,578,287,6936607,2262,0 +56501,%230063,573,713,1536231,3011,0 +56502,011,403,295,9283775,934,0 +56503,Wioska+015,680,348,7226782,2895,8 +56504,Wioska+seba3333,520,273,849110382,1844,0 +56505,073+Wioska+barbarzy%C5%84ska,341,668,6354098,2632,0 +56506,GRABARNIA,692,366,3957237,4075,0 +56507,New+World,427,724,698152377,8571,0 +56508,Osada+koczownik%C3%B3w,723,579,2453888,7605,8 +56509,Wioska+SzopPracz93,402,714,849099131,450,0 +56510,Maryna+3,269,458,699650981,1025,0 +56511,Wioska+Developer1994,686,605,3467919,4337,0 +56512,Wioska+barbarzy%C5%84ska,639,684,848987051,4751,0 +56513,C0317,271,557,8841266,2528,0 +56514,061,725,513,699413040,2329,0 +56515,Wioska+barbarzy%C5%84ska,276,466,699213622,3674,0 +56516,Wioska+Dragonics1991,336,342,849111732,1549,0 +56517,C0296,273,524,8841266,3684,0 +56518,backstage+5,707,401,849099696,3076,0 +56520,37.,333,668,8665783,2299,0 +56521,Azgeda,629,315,849048455,1829,0 +56522,Wioska+Jabolek,727,437,698654164,3155,0 +56523,Wioska+barbarzy%C5%84ska,702,397,699598425,3716,0 +56524,BB3,270,510,849110365,1661,0 +56525,Wioska+barbarzy%C5%84ska,313,644,2289134,588,0 +56526,.3.%21,287,411,762975,2217,0 +56527,kww09,728,544,699831860,1892,0 +56528,Wioska+Mr.ElCzapo,511,733,849096990,3565,0 +56529,Wioska+barbarzy%C5%84ska,687,644,698786826,2786,0 +56530,Wioska+alexwpr,323,342,699802012,3908,0 +56531,king-pin,300,396,849089601,7830,0 +56532,059.,445,730,849034882,9850,0 +56533,Wioska+barbarzy%C5%84ska,343,677,0,554,0 +56534,Wioska+barbarzy%C5%84ska,598,709,0,325,0 +56535,PPF-25,534,276,1424656,1946,0 +56536,Nowa+baza+1,597,707,698353083,6481,9 +56537,Wioska+2,514,724,849100615,1843,0 +56538,North+K25,527,274,699146580,2746,0 +56539,Wioska+barbarzy%C5%84ska,729,517,698191218,3025,0 +56540,Wioska+barbarzy%C5%84ska,312,373,699660539,1987,0 +56541,Wioska+barbarzy%C5%84ska,390,709,849014922,3593,0 +56542,Wioska+kilolo,267,470,699844880,321,0 +56543,056,691,619,699099811,1157,0 +56544,Wioska+misiek650,339,668,849022063,189,0 +56545,%5B0238%5D,270,493,8630972,4285,0 +56546,Saran11,408,291,848937248,360,0 +56547,022,302,614,699356968,1639,7 +56548,Wioska+barbarzy%C5%84ska,591,292,699799629,777,0 +56549,Wioska+barbarzy%C5%84ska,601,294,699098531,2286,0 +56550,Wioska+Iceeman,621,703,584989,381,0 +56551,.achim.,569,285,6936607,4191,0 +56552,017,396,292,699694284,1850,0 +56553,070,729,518,699413040,1942,0 +56554,181.02,329,346,7221139,887,0 +56555,Wioska+barbarzy%C5%84ska,734,515,698191218,2246,0 +56556,004+Rohan+II,525,266,849100383,7089,0 +56557,%23020,546,269,849064614,2842,0 +56558,Wioska+barbarzy%C5%84ska,304,377,0,660,0 +56559,znam+ostropesta+2,460,733,699777372,2749,0 +56560,Hardex,519,271,849110382,5596,0 +56561,%23021,548,269,849064614,2653,0 +56562,Wioska+barbarzy%C5%84ska,705,391,699598425,1523,0 +56563,0126,694,377,698416970,1231,0 +56564,Wioska+barbarzy%C5%84ska,568,274,849010386,1618,0 +56565,Wioska+barbarzy%C5%84ska,331,655,8175236,410,0 +56566,031.+Brauer92,694,382,2873154,5941,5 +56567,Wioska+Pracz+6,309,626,8916982,6348,0 +56568,New+World,420,714,698152377,7231,0 +56569,Wioska+barbarzy%C5%84ska,352,326,8772425,1580,0 +56570,Wyspa+025,280,576,225023,2040,0 +56572,Wioska+barbarzy%C5%84ska,730,452,699347951,932,0 +56573,001,699,393,8019812,6303,0 +56574,CastAway+%21020,711,589,9314079,5603,0 +56575,Wioska+z+Pracza+3,303,629,8916982,2249,0 +56576,Taran,545,378,699170684,2602,0 +56577,108.+Akala,695,626,8337151,2808,0 +56578,Wioska+barbarzy%C5%84ska,333,666,6354098,424,0 +56579,%C5%9Aw181%2A008,674,342,959179,887,0 +56580,Wioska+Glapy+1.,440,271,7150939,3007,0 +56581,Ave+Why%21,508,736,699121671,1069,0 +56582,062KP,482,273,849063849,2128,0 +56583,Wioska+barbarzy%C5%84ska,691,633,699664910,1618,0 +56584,Wioska+barbarzy%C5%84ska,395,297,698231772,2940,0 +56586,Osada+koczownik%C3%B3w,658,330,849111196,4217,6 +56587,Wioska+barbarzy%C5%84ska,719,580,0,716,0 +56588,O116,314,639,272173,6447,0 +56589,P+181,715,583,8997874,1729,0 +56590,Wioska+barbarzy%C5%84ska,302,377,0,563,0 +56591,%23027,547,274,849064614,1677,0 +56592,Wioska+barbarzy%C5%84ska,735,522,698191218,2237,0 +56593,North+072,502,270,849064752,3352,0 +56594,Wioska+barbarzy%C5%84ska+17,344,334,698757439,3243,0 +56595,Wioska+barbarzy%C5%84ska,316,366,0,214,0 +56596,P%C3%B3%C5%82nocny+Bagdad,631,315,8847546,3208,0 +56597,Wioska+pebloss,317,639,849111911,4139,0 +56598,K67+24,708,611,698867483,2408,0 +56599,079.+Wioska+barbarzy%C5%84ska,732,459,7494497,4160,0 +56600,%3F%3F%3F%3F,491,263,698489071,5881,9 +56601,Wioska+barbarzy%C5%84ska,398,295,698231772,2618,0 +56602,Wioska+barbarzy%C5%84ska,368,695,0,381,0 +56603,D024,563,280,699299123,3977,0 +56605,Z%C5%82oty+%C5%9Awit,592,291,699883079,1370,0 +56606,Wioska+ZiomekWafla,459,273,849090573,4262,0 +56607,Wioska+barbarzy%C5%84ska,271,494,699662232,669,0 +56608,Wioska+kowala,726,548,849106923,4543,0 +56609,Osada+koczownik%C3%B3w,386,706,849014922,8032,8 +56610,New+WorldA,269,547,849084005,1564,0 +56611,Wioska+barbarzy%C5%84ska,542,728,699878511,8356,0 +56612,Ave+Why%21,521,729,699121671,554,0 +56613,E03,305,384,6301789,560,0 +56614,020+-+Budowanko%21,478,727,7540891,5633,0 +56615,Wioska+5,294,402,699763225,293,0 +56616,Nowa+67,712,595,698702991,2475,0 +56617,%23033,559,273,849064614,1790,0 +56618,Wioska+018,670,346,7226782,1383,4 +56619,Jask%C3%B3%C5%82cze+Gniazdo,721,415,9095581,5391,0 +56620,3lobit,482,366,1581890,847,0 +56621,Parking1,633,685,6528152,1065,0 +56622,-01-,582,278,849112029,4337,0 +56623,Wioska+Paxon,580,277,849112033,4271,0 +56624,Wioska+barbarzy%C5%84ska,350,677,699704542,1968,0 +56625,K42+ADAMUS+020,275,429,6212605,3833,0 +56626,wwwb,598,708,699828685,2303,0 +56627,Wioska+barbarzy%C5%84ska,526,734,699878511,4128,0 +56628,041+Sandgem+Town,728,496,699441366,782,0 +56629,Gnoj%C3%B3wa,711,411,848902592,4242,1 +56630,Gdynia,447,269,699278528,2117,0 +56631,009.+Osada+koczownik%C3%B3w,697,382,2873154,5919,1 +56632,bagienko_05,574,279,849093353,2793,0 +56633,%230223+barbarzy%C5%84ska,661,334,1238300,3059,0 +56634,New+World,413,715,698152377,3320,0 +56635,Wioska+barbarzy%C5%84ska,391,290,6186491,1872,0 +56636,0000035Z,280,556,849089881,2254,0 +56637,P%C3%B3%C5%82nocny+Bagdad,629,302,8847546,6769,0 +56638,Nowy+0002,294,603,849096972,1202,3 +56639,0000033Z,277,556,849089881,2978,0 +56640,Avanti%21,271,489,698625834,5207,0 +56641,Wioska+Lord+kongo,733,481,8877886,7132,0 +56642,%24012%24+Volcano,302,619,699550876,1332,0 +56643,Wioska+herqers,338,333,849112094,3545,0 +56644,Wioska+barbarzy%C5%84ska,669,664,0,80,0 +56645,New+World,425,713,698152377,7376,0 +56646,Sony+911,671,662,1415009,3373,0 +56647,Na+SsSskraju,278,572,1536625,699,0 +56648,Karl%C3%B3wek,724,557,849111792,7417,0 +56649,Wioska+barbarzy%C5%84ska,389,707,2105150,3373,0 +56651,Wioska+barbarzy%C5%84ska,646,684,848987051,5901,0 +56652,sony911,675,645,1415009,1969,0 +56653,061KP,491,275,849063849,2034,0 +56654,Wioska+barbarzy%C5%84ska,326,658,0,347,0 +56655,Wioska+barbarzy%C5%84ska,374,305,699191464,758,0 +56656,004,448,272,699562874,4820,4 +56657,AGITER,339,665,849108762,400,0 +56658,Wioska+barbarzy%C5%84ska,363,314,3484132,3775,0 +56659,%23031,556,273,849064614,1780,0 +56660,Wioska+barbarzy%C5%84ska,322,653,0,345,0 +56661,Nowe+IMPERIUM+6,617,701,698353083,5631,0 +56662,Wioska+barbarzy%C5%84ska,390,706,849014922,1706,0 +56663,K67+22,709,606,698867483,3422,0 +56664,MojeDnoToWaszSzczyt,481,267,9299539,5563,0 +56665,SZczytno,526,731,698934729,1004,0 +56666,Wioska+barbarzy%C5%84ska,640,683,848987051,5045,0 +56667,Wioska+Puchencjusz+I+Wspania%C5%82y,735,472,849107188,2084,0 +56669,04Wioska+barbarzy%C5%84ska,358,676,699704542,4737,0 +56670,Wioska+barbarzy%C5%84ska,264,510,0,273,0 +56671,035+-+Budowanko%21,476,732,7540891,5633,0 +56672,%23134%23,664,667,692803,2189,0 +56673,MojeDnoToWaszSzczyt,490,271,9299539,4449,0 +56674,Wioska+barbarzy%C5%84ska,387,702,849099876,2746,0 +56675,Wioska+barbarzy%C5%84ska,269,455,699213622,1368,0 +56676,MojeDnoToWaszSzczyt,482,269,9299539,5383,0 +56677,WZ14,696,613,7142659,1239,0 +56678,Wioska+barbarzy%C5%84ska,731,487,698191218,2035,0 +56679,Wioska+barbarzy%C5%84ska,705,390,699598425,2143,0 +56680,Taka.,484,730,848999671,2132,0 +56681,Wioska+barbarzy%C5%84ska,722,450,849095599,1259,0 +56682,Wioska+Zawodnik+4,565,725,698655859,2426,0 +56683,New+World,422,713,698152377,7903,0 +56684,kww08,723,541,8976313,1194,0 +56685,WZ12,695,613,7142659,1927,0 +56686,Wioska+barbarzy%C5%84ska,670,664,699277039,80,0 +56687,Wioska+barbarzy%C5%84ska,629,695,6818593,1180,0 +56688,066,726,510,699413040,2386,0 +56689,J%2A%2A%2A%2A+P%2A%2A,489,732,849096435,1456,0 +56690,Wioska+barbarzy%C5%84ska,721,578,2453888,4651,0 +56691,0112,704,381,698416970,988,0 +56692,Wioska+020,672,349,7226782,985,0 +56693,Alamo6,716,577,2723244,1165,0 +56694,108+Wioska+barbarzy%C5%84ska,584,280,699854484,900,0 +56695,Wioska+barbarzy%C5%84ska,585,279,849112033,1122,0 +56696,Wioska+barbarzy%C5%84ska,715,406,699598425,3360,0 +56697,MojeDnoToWaszSzczyt,495,265,9299539,6067,0 +56699,Wioska+barbarzy%C5%84ska,344,322,698160606,3561,0 +56700,Wioska+Lord+Jack+Carver,273,535,9231765,4086,0 +56701,Wioska+barbarzy%C5%84ska,734,484,698191218,1917,0 +56702,Wioska+barbarzy%C5%84ska,384,701,849014922,1480,0 +56703,Tytanik,370,307,849068108,1360,0 +56704,Sony+911,670,661,1415009,3524,0 +56705,094+Wioska+barbarzy%C5%84ska,539,270,699854484,4830,0 +56706,08+Wioska,637,319,6517826,927,0 +56707,003.,700,382,7557683,874,0 +56708,-21-,580,717,849032414,4515,0 +56710,wioska+002,687,630,6472706,3199,0 +56711,C0301,272,528,8841266,3667,0 +56712,Wioska+barbarzy%C5%84ska,335,660,6910361,957,0 +56713,Wioska+barbarzy%C5%84ska,424,287,849102150,458,0 +56714,KONFA+TO+MARKA%2C+NARKA,290,409,698152377,2000,0 +56715,zzz02,703,605,3986807,1018,0 +56716,WB03,297,380,356642,4270,0 +56717,Wioska+barbarzy%C5%84ska,653,679,848987051,6096,0 +56718,MojeDnoToWaszSzczyt,492,264,9299539,5283,0 +56719,037+-+Budowanko%21,480,731,7540891,5633,0 +56720,Rozlewnia+browaru+%C5%BBuberka,445,269,849110622,2195,0 +56721,130.Stradi,395,294,698365960,2974,0 +56722,001,724,584,3409028,2895,0 +56723,KONFA+TO+MARKA%2C+NARKA,272,456,698152377,3058,0 +56724,Wioska+barbarzy%C5%84ska,632,684,8627359,4416,0 +56725,No+to+jedziemy+%3AD,472,735,699333701,1678,0 +56726,Sony+911,665,655,1415009,1687,0 +56727,181%7E%7E%7E%7E+wiewioreczkavivat,446,706,7365299,3767,0 +56728,Wioska+barbarzy%C5%84ska,628,694,6818593,1709,0 +56729,ble,622,700,848909464,4569,0 +56730,Wioska+barbarzy%C5%84ska,604,299,699098531,1977,0 +56731,%24011%24+Arm+Town,302,622,699550876,1453,0 +56732,MojeDnoToWaszSzczyt,476,270,9299539,5681,0 +56733,KONFA+TO+MARKA%2C+NARKA,274,451,698152377,4749,0 +56734,%23017,557,275,849064614,3018,0 +56735,Wioska+Isabella,373,546,698519133,2251,0 +56736,001,366,684,281866,516,0 +56737,Wioska+Szyszka77,333,522,8004076,4924,0 +56738,%5B205%5D,721,419,8000875,1818,0 +56739,Wioska+barbarzy%C5%84ska,721,555,1601917,1166,0 +56740,%3DSAwars%3D06%3D,574,276,849106420,2373,0 +56742,Bajka,399,713,849111819,3177,0 +56743,Wioska+barbarzy%C5%84ska,596,714,699828685,1479,0 +56744,Wioska+Your+Nightmare,565,275,8766033,46,0 +56745,%3F%3F%3F%3F,463,271,698489071,3998,0 +56746,21+Pszczo%C5%82y+i+Wr%C3%B3ble,725,447,849101845,2603,0 +56747,001.,699,377,7557683,5252,0 +56748,Wioska+barbarzy%C5%84ska,590,281,849010386,776,0 +56749,PPF-34,576,279,1424656,1142,0 +56750,Wioska+z+Pracza+6,308,629,8916982,977,0 +56751,MojeDnoToWaszSzczyt,485,264,9299539,5929,0 +56752,Xxx,430,586,225023,988,0 +56753,KUKA+VII,280,433,6127190,874,0 +56754,Wioska+barbarzy%C5%84ska,440,584,849028088,2544,0 +56755,Wioska+barbarzy%C5%84ska,735,526,698191218,2036,0 +56757,Wioska+barbarzy%C5%84ska,271,463,699213622,2706,0 +56758,077+obrze%C5%BCa,276,560,699510259,1682,0 +56759,MojeDnoToWaszSzczyt,487,268,9299539,3532,0 +56760,Wioska+Luftwafel,626,305,848922958,4641,0 +56761,%23023,546,268,849064614,2436,0 +56762,North+K25,554,271,699146580,2795,9 +56763,%5B018%5D,461,728,9094538,2921,0 +56764,Piek%C5%82o+to+inni,650,326,848956765,3254,0 +56765,106.+Wioska+barbarzy%C5%84ska,689,455,7494497,608,0 +56766,Piek%C5%82o+to+inni,650,323,848956765,4023,0 +56767,181,679,651,8922870,810,0 +56768,Wiadro23,681,641,8677963,515,0 +56769,PiotrekPazzi,326,436,289542,530,0 +56770,Wioska+barbarzy%C5%84ska,727,484,6510480,792,0 +56771,premka+nie+tu,567,718,6299408,3212,0 +56772,095+Wioska+barbarzy%C5%84ska,541,267,699854484,4528,0 +56773,New+World,420,721,698152377,7310,2 +56774,Wioska+Aneta517,373,544,2591538,426,0 +56775,Nowe+IMPERIUM+13,623,698,698353083,5837,0 +56776,052.+Witek,444,706,848928624,845,0 +56777,Wioska+barbarzy%C5%84ska,369,309,849068108,1175,0 +56778,%5B206%5D,721,418,8000875,1782,0 +56780,Flap,598,284,699098531,4340,0 +56781,Rosnocha%C5%82,560,724,849112312,2357,0 +56782,MojeDnoToWaszSzczyt,463,267,9299539,4258,0 +56783,Wioska+barbarzy%C5%84ska,403,291,698231772,1607,0 +56784,Wioska+barbarzy%C5%84ska,729,483,698191218,1924,0 +56785,Wioska+barbarzy%C5%84ska,390,710,849014922,3480,0 +56786,Wioska+barbarzy%C5%84ska,667,337,699072129,3112,0 +56787,Wioska+martin1181,354,321,7287342,4885,0 +56788,Wioska+barbarzy%C5%84ska,381,308,698160606,3078,0 +56789,Brat447,364,515,699262350,2772,0 +56790,074+obrze%C5%BCa,276,559,699510259,1911,0 +56791,Wioska+peres5130,309,366,849019785,788,0 +56792,Wioska+barbarzy%C5%84ska,462,274,849017820,1322,0 +56793,002-81,283,595,699396429,1682,0 +56794,007,294,592,698663855,4787,0 +56795,Wioska+barbarzy%C5%84ska,300,619,0,51,0 +56796,Krasnolandia,525,315,3377827,7622,0 +56797,Wioska+superpuszka,730,556,6677893,276,0 +56798,P%C3%B3%C5%82nocny+Bagdad,619,297,8847546,6651,0 +56799,Wioska+barbarzy%C5%84ska,665,338,699072129,3713,0 +56800,Wioska+barbarzy%C5%84ska,283,590,698663855,398,0 +56801,Sony+911,681,647,1415009,1627,0 +56802,Wioska+HORTON,514,731,6035425,96,0 +56803,K42+ADAMUS+010,285,430,6212605,7770,0 +56804,New+World,424,724,698152377,4354,0 +56805,KONFA+TO+MARKA%2C+NARKA,273,442,698152377,4051,0 +56806,%23014,547,272,849064614,4404,0 +56807,096+Wioska+barbarzy%C5%84ska,540,270,699854484,4827,0 +56808,001,704,410,2837080,2086,0 +56809,057+Wioska+barbarzy%C5%84ska,346,666,6354098,4032,0 +56810,Mordex,706,400,7023110,1358,0 +56811,Wioska+barbarzy%C5%84ska,398,704,849014922,5270,0 +56813,%230065,572,721,1536231,2751,0 +56814,-002-,730,491,7418168,4409,0 +56815,068+Osada+koczownik%C3%B3w,543,271,699854484,8974,9 +56816,Wioska+Bociek80,669,349,545152,596,0 +56817,%23299+C,515,731,9037756,10971,3 +56818,Wioska,604,295,8698728,3438,0 +56819,Wioska+barbarzy%C5%84ska,631,697,699372829,536,0 +56820,%3DSILDEN%3D,481,731,849112368,2394,0 +56821,Osada+koczownik%C3%B3w,379,702,849014922,5377,6 +56822,0000037Z,276,555,849089881,2202,0 +56823,Wioska+barbarzy%C5%84ska,733,524,698191218,2238,0 +56824,Wioska+barbarzy%C5%84ska,361,316,3484132,3987,0 +56825,Wioska+dadan2,653,329,849086357,2958,0 +56826,067,591,560,699373599,5416,0 +56827,Wioska+barbarzy%C5%84ska+08,344,333,698757439,7060,0 +56828,Wioska+monkeyy,450,724,848923754,55,0 +56829,Wioska+barbarzy%C5%84ska,391,701,849014922,1713,0 +56830,Wioska+b+010,408,283,6343784,368,0 +56831,Wioska+barbarzy%C5%84ska,626,689,6818593,1923,0 +56832,Wioska+barbarzy%C5%84ska,714,415,0,1656,0 +56833,O109,317,637,272173,7559,0 +56834,Wioska+barbarzy%C5%84ska,399,708,849014922,1706,0 +56835,R+056,491,734,699195358,1687,0 +56837,P%C3%B3%C5%82nocny+Bagdad,633,312,8847546,2950,0 +56838,Wioska+barbarzy%C5%84ska,302,617,698167138,518,0 +56839,Wioska+barbarzy%C5%84ska,535,733,699878511,5705,0 +56840,A04,423,275,849038597,1202,0 +56841,HANDEN,294,399,7259690,743,0 +56842,Wioska+barbarzy%C5%84ska,358,322,8772425,1117,0 +56843,WB02,297,383,356642,5169,0 +56844,Wioska+LORDHerkules13,540,731,699522257,4379,0 +56845,Wioska+barbarzy%C5%84ska,689,642,698786826,201,0 +56846,KONFA+TO+MARKA%2C+NARKA,286,407,698152377,2063,0 +56847,Wioska+Lisq12,301,381,849111408,3712,0 +56848,01+Wioska+ignacy,727,434,8785003,5431,0 +56849,K66+%C5%BBelazo,698,626,698867483,2641,3 +56850,Wioska+%C5%9AMIERCI,719,590,849096102,1954,0 +56851,C.061,729,479,9188016,2960,0 +56852,%23498+F,442,723,9037756,750,0 +56853,Wioska+3,267,511,699425709,363,0 +56854,Wioska+barbarzy%C5%84ska,541,723,3560281,1013,0 +56856,Wioska+barbarzy%C5%84ska,303,369,0,666,0 +56857,001,276,465,698511920,2716,0 +56858,%23016,557,276,849064614,2689,0 +56859,0664,585,721,698659980,5283,9 +56860,%24009%24+Paka%C5%BCu,303,622,699550876,3335,0 +56861,009,393,290,699694284,5686,0 +56862,KWB5,479,735,9003698,2905,0 +56863,Wioska+barbarzy%C5%84ska,318,357,0,427,0 +56864,Sony+911,677,650,1415009,555,0 +56865,Wioska+barbarzy%C5%84ska,641,679,848987051,5034,0 +56866,Wioska+z+Pracza+7,308,628,8916982,559,0 +56867,Wioska+barbarzy%C5%84ska,640,679,848987051,4832,0 +56868,B020,535,266,699485250,3064,0 +56869,%5B0193%5D,274,497,8630972,6253,0 +56870,Avanti%21,269,485,698625834,2427,0 +56871,Wioska+gall5,267,472,699598396,1006,0 +56872,Osada+koczownik%C3%B3w,537,733,698704189,7364,1 +56873,Piek%C5%82o+to+inni,661,332,848956765,2485,0 +56874,west,296,378,849089601,6677,0 +56875,81+skorbyk.,549,278,8015955,2337,0 +56876,B023,629,306,8740199,2137,0 +56877,Wioska+Miltonia,671,340,849088414,146,0 +56878,Bagno+35,474,728,848883684,4628,0 +56879,Wioska+barbarzy%C5%84ska,529,730,0,637,0 +56880,Wioska+brodatykebab,633,689,849112443,26,0 +56881,%5B0264%5D,270,491,8630972,4369,0 +56882,%230081,580,714,1536231,2466,0 +56883,Wioska+barbarzy%C5%84ska,728,485,6510480,836,0 +56884,117.Stradi,421,287,698365960,5398,0 +56885,050,693,373,6160655,525,0 +56887,Wioska+barbarzy%C5%84ska,690,375,698702991,2515,0 +56888,Pf+Konfederacja,493,497,848915730,3921,0 +56889,%230061,578,713,1536231,2927,0 +56890,--055--,588,284,542253,431,0 +56891,PPF-05,507,264,1424656,4216,6 +56892,Wioska+barbarzy%C5%84ska,724,460,699347951,755,0 +56893,New+World,412,709,698152377,8593,0 +56894,Wioska+Lorda+Posejdona,270,519,699878443,387,0 +56895,Wioska+barbarzy%C5%84ska+10,343,330,698757439,6599,0 +56897,Wioska+barbarzy%C5%84ska,731,483,698191218,1824,0 +56898,%23128%23,656,676,692803,3052,0 +56899,KONFA+TO+MARKA%2C+NARKA,269,446,698152377,4802,0 +56900,Wioska+Vebo,727,508,848969313,4522,0 +56901,No+to+jedziemy+%3AD,468,732,699333701,1450,0 +56902,P%C3%B3%C5%82nocny+Bagdad,619,300,8847546,8049,0 +56903,044+-+Budowanko%21,504,728,7540891,5144,0 +56904,Wioska+barbarzy%C5%84ska,314,643,8877156,2699,0 +56905,%5B0239%5D+xxx,271,498,8630972,4698,0 +56906,%23024,554,277,849064614,2216,0 +56907,K67+12,700,622,698867483,3670,0 +56908,CAP001,352,320,698661697,266,0 +56909,0000032Z,278,555,849089881,4729,0 +56910,Wioska+1,668,338,7346797,3113,0 +56911,Zak%C5%82ad+1,264,474,848977600,633,0 +56912,Wioska+barbarzy%C5%84ska,412,544,699846892,3373,0 +56913,Wioska+barbarzy%C5%84ska,324,657,8175236,570,0 +56914,Wioska+ligedman92,713,420,698676788,1792,0 +56915,Wioska+barbarzy%C5%84ska,676,656,1415009,2516,0 +56916,Flap,601,286,699098531,3399,0 +56917,Wioska+w00han,658,326,849111332,4060,0 +56918,C006,460,732,8954402,1755,0 +56919,Wioska+barbarzy%C5%84ska,724,425,699628084,1004,0 +56920,Wioska+barbarzy%C5%84ska,324,358,0,413,0 +56921,FP051,446,731,699605333,3147,0 +56922,Wioska+barbarzy%C5%84ska,320,638,698908184,5252,0 +56923,04Wioska+barbarzy%C5%84ska,363,686,699704542,3244,0 +56924,Cisza,278,581,698769107,387,0 +56925,048.+Wioska+barbarzy%C5%84ska,678,354,2873154,1667,0 +56926,Wioska+barbarzy%C5%84ska,736,483,698191218,1808,0 +56927,Allara,713,598,8994199,1884,0 +56928,D018,563,278,699299123,2409,0 +56929,wioska+XX,678,347,9314079,1743,0 +56930,mc01,706,388,848939131,3383,0 +56931,Sony+911,677,653,1415009,3882,0 +56932,124.Stradi,451,273,698365960,2134,0 +56933,NOT%3F,312,356,9236866,3810,0 +56934,ASony+911,687,645,1415009,6964,0 +56935,%5B0271%5D,265,489,8630972,4280,0 +56936,Wioska+barbarzy%C5%84ska,397,708,849014922,1622,0 +56937,Wioska+barbarzy%C5%84ska,265,502,699846892,696,0 +56938,Wioska+barbarzy%C5%84ska,680,645,698191218,1213,0 +56939,%23018,556,274,849064614,2225,0 +56940,Wioska+alanbebz,576,283,698938264,894,0 +56941,New+World,422,716,698152377,3978,0 +56942,P%C3%B3%C5%82nocny+Bagdad,620,301,8847546,7007,0 +56943,015.+Osada+koczownik%C3%B3w,696,379,2873154,6113,5 +56944,sp%C3%B3%C5%82ka+z+o.o.,286,424,1700145,2056,0 +56945,New+World,432,720,698152377,4270,0 +56946,Y+Hy+y+Hy+JESTEM+HORY,287,600,699774694,3298,0 +56947,Wioska+003,687,635,6472706,2573,0 +56948,Z%C5%82oty+%C5%9Awit,587,289,699883079,4218,0 +56949,KERTO+02,709,605,7474527,743,0 +56950,034+KTW,729,443,848883237,3942,0 +56951,032.+Gloria+Victis,282,572,848886973,4592,0 +56952,Komaros1992,628,309,699679662,6007,0 +56953,Wsch%C3%B3d+002,699,619,698562644,2650,0 +56954,Wioska+barbarzy%C5%84ska,415,296,849089654,590,0 +56955,Wioska+barbarzy%C5%84ska,733,540,17714,914,0 +56956,Wioska+DAJWIDOS16,319,351,848913252,2604,0 +56957,Wioska+barbarzy%C5%84ska,400,295,698231772,3039,0 +56958,E03,722,548,848995478,3642,4 +56959,Wioska+NewBetterSatan,309,466,1021709,1671,0 +56960,Wioska+BANAN+22,731,523,2357773,6050,0 +56961,Wioska+barbarzy%C5%84ska,536,724,699878511,3524,0 +56962,Wioska+anatol2619,264,476,849106828,463,0 +56963,SirNiuchniuch,447,270,849109010,4210,0 +56964,Wioska+barbarzy%C5%84ska,374,310,3484132,4766,0 +56965,CastAway+%21040,711,596,9314079,2579,0 +56966,%5B842%5D+Odludzie,727,431,848985692,3809,0 +56967,AZGARD,295,608,6651072,3751,0 +56968,017+%7C+North,381,693,699511295,2875,0 +56969,Wioska+barbarzy%C5%84ska,353,683,0,208,0 +56970,Wioska+barbarzy%C5%84ska,452,273,699191455,904,0 +56971,Melogo,699,374,849112369,4362,0 +56972,11.+%C5%9Awiat%C5%82a+na+Ratajach,459,729,849092769,5704,8 +56973,Wioska+barbarzy%C5%84ska,716,420,699722599,2970,0 +56974,PPF-32,570,274,1424656,1136,0 +56975,-34-,575,719,849032414,1681,0 +56976,Wioska+barbarzy%C5%84ska,363,687,0,269,0 +56977,XDX,605,290,699098531,4198,0 +56978,PIROTECHNIK+013,337,338,849101083,190,0 +56980,MojeDnoToWaszSzczyt,481,263,9299539,4112,0 +56981,614%7C415+Wioska+barbarzy%C5%84ska,614,415,6822957,2503,0 +56982,Avanti%21,267,480,698625834,2312,0 +56983,Chwaliszew,692,634,6472706,3496,0 +56984,Wioska+barbarzy%C5%84ska,364,309,3484132,4609,0 +56985,Twierdza+%28MzM.%29,594,518,0,4017,30 +56986,Wio,445,666,698152498,2502,0 +56987,Wioska+Spekulant951,334,663,849038195,170,0 +56988,K67+18,711,607,698867483,2649,0 +56989,Wioska+barbarzy%C5%84ska,300,627,2289134,379,0 +56990,FP042,462,732,699605333,4032,0 +56991,Adijen+2,348,670,699688180,3260,0 +56992,P%C3%B3%C5%82nocny+Bagdad,616,297,8847546,7095,0 +56993,Avanti%21,270,481,698625834,5005,3 +56995,Nowe+IMPERIUM+10,620,702,698353083,5660,0 +56996,...Just+like+that,461,478,699723284,3228,0 +56997,Wioska+barbarzy%C5%84ska,314,363,848945529,455,0 +56998,087+obrze%C5%BCa,271,559,699510259,974,0 +56999,New+World,422,725,698152377,8423,0 +57000,Grudziadz,458,269,699278528,499,0 +57001,Wioska+barbarzy%C5%84ska,725,563,698666810,1799,0 +57002,Kapitol_28,509,729,606407,2110,0 +57003,Kiedy%C5%9B+Wielki+Wojownik,327,352,8632462,1233,0 +57004,t029,670,343,2262902,379,0 +57005,215...NORTH,416,283,6920960,2238,0 +57006,New+WorldA,265,523,849084005,898,0 +57007,Wioska+Karolinka6868,576,717,849094355,26,0 +57008,Sqn,713,395,699598425,1818,0 +57009,7.+Vermax,279,580,849089499,1076,0 +57010,Wioska+Adijen,348,676,699688180,7437,0 +57011,Zaplecze+Barba+047,342,328,699796330,1786,0 +57012,Wioska+barbarzy%C5%84ska,401,714,849014922,2539,0 +57013,0128,703,380,698416970,759,0 +57014,Wioska+barbarzy%C5%84ska,355,326,8772425,1632,0 +57015,FP056,444,730,699605333,6782,0 +57016,Wioska+barbarzy%C5%84ska,285,398,0,406,0 +57017,%230258+barbarzy%C5%84ska,445,277,1238300,1015,0 +57018,011+R2+D2,275,543,197581,4589,0 +57019,017,338,342,849101205,438,0 +57020,Wioska+dla+mklo12,521,373,8678008,9233,0 +57021,FP043,465,732,699605333,4292,0 +57022,045+-+Budowanko%21,538,728,7540891,5653,0 +57023,078.+Wioska+barbarzy%C5%84ska,734,460,7494497,4571,0 +57024,024+-+Budowanko%21,486,730,7540891,5063,0 +57025,220+%7C,724,423,8000875,1037,0 +57026,TikTok,487,265,849051731,3414,0 +57027,Wioska+knoxville5,444,280,849110747,26,0 +57028,znam+ostropesta,461,733,699777372,3467,0 +57029,001-181,468,273,2297431,744,0 +57030,052,665,670,2323859,1037,0 +57031,%3D%7C43%7C%3D,689,374,6160655,2213,0 +57032,Wioska+barbarzy%C5%84ska,726,489,699573053,1188,0 +57033,%230251+barbarzy%C5%84ska,443,278,1238300,841,0 +57034,Z%C5%82oty+%C5%9Awit,594,293,699883079,5223,0 +57035,Wioska+barbarzy%C5%84ska,461,276,699191449,1448,0 +57036,--052--,585,285,542253,1140,0 +57037,Wioska+barbarzy%C5%84ska,318,649,8175236,465,0 +57038,%3F%3F%3F%3F,496,273,698489071,4710,0 +57039,Wioska+barbarzy%C5%84ska,278,585,699396429,1161,0 +57040,Hajn%C3%B3wka,726,545,698548451,3290,0 +57041,Wioska+113,686,648,848971079,2180,0 +57042,Lord+Lord+Franek+.%23189,692,360,698420691,2616,0 +57043,P%C3%B3%C5%82nocny+Bagdad,625,303,8847546,7094,3 +57044,Wioska+patrix01,727,570,849092978,3698,0 +57045,001,447,706,849080197,2631,0 +57046,Spajk,680,349,7973893,1199,0 +57048,087.+Wioska+barbarzy%C5%84ska,733,474,7494497,3247,0 +57049,Alamo7,717,576,2723244,936,0 +57050,Wioska+BabciaZosia,267,537,849110781,59,0 +57051,Wioska+barbarzy%C5%84ska,646,316,849006385,341,0 +57052,Wioska+barbarzy%C5%84ska,733,502,6510480,1233,0 +57053,C0302,274,550,8841266,3598,0 +57054,New+World,432,724,698152377,7405,0 +57055,181,399,293,699829975,26,0 +57056,HAREDON,692,364,3957237,2653,0 +57057,40+barbarzy%C5%84ska+3A,269,451,849018442,1879,0 +57058,Wioska+barbarzy%C5%84ska,270,476,849095814,1753,0 +57059,Z%C5%82oty+%C5%9Awit,591,291,699883079,1435,2 +57060,K67+13,702,608,698867483,3534,0 +57061,MojeDnoToWaszSzczyt,466,266,9299539,5427,0 +57062,Belmondo77,642,483,699058253,1584,0 +57063,Wioska+barbarzy%C5%84ska,520,727,769293,4890,0 +57064,Wioska+Stresik,656,669,699820572,129,0 +57065,Wioska+barbarzy%C5%84ska,333,332,699304554,1316,0 +57066,Wioska+Bo%C5%BCa,279,417,699854312,4596,0 +57067,O106,303,632,2289134,8674,0 +57068,Wioska+barbarzy%C5%84ska,634,307,7139853,1134,0 +57069,Wioska+barbarzy%C5%84ska,731,484,698191218,1983,0 +57070,Crezys,643,478,699057459,1525,0 +57071,yuyuyuyu,666,342,7646152,2121,0 +57072,0001,525,726,848987695,3321,0 +57073,Kurnik,450,721,699603116,7183,0 +57074,Wioska+barbarzy%C5%84ska,587,717,848995242,463,0 +57075,%5B0281%5D,265,488,8630972,3949,0 +57076,Tomekrol+6,705,598,849096334,4060,0 +57077,P%C3%B3%C5%82nocny+Bagdad,628,301,8847546,4080,0 +57078,Wioska+Aga22011993,265,465,849098592,327,0 +57079,0000036Z,278,556,849089881,2353,0 +57080,Wioska+barbarzy%C5%84ska,607,298,699098531,1682,0 +57081,Wioska+barbarzy%C5%84ska,394,707,849014922,1503,0 +57082,Sony+911,682,648,1415009,1701,0 +57083,Domek+Miniuka+03,479,726,699373225,3141,0 +57084,Wioska+ladio,365,311,698472522,225,0 +57085,Wioska+barbarzy%C5%84ska,549,727,8015775,575,0 +57086,No.0,328,338,849106612,4001,0 +57087,New+WorldA,269,511,849084005,627,0 +57088,Monia18,651,477,698776998,1808,0 +57089,245,369,303,7271812,271,0 +57090,wioska+XX,683,352,9314079,1443,0 +57092,Wioska+barbarzy%C5%84ska,711,601,8323711,1640,0 +57093,Wioska+XVIII,586,345,698200480,1575,0 +57094,Wioska+barbarzy%C5%84ska,270,506,699425709,759,0 +57095,Wioska+Gosia99,732,463,849075298,4491,0 +57096,Wioska+barbarzy%C5%84ska,669,334,699072129,3161,0 +57097,Tycia+%2A,492,733,698748891,1817,0 +57098,North+110,597,292,849064752,772,0 +57099,Wioska+barbarzy%C5%84ska,331,333,699304554,2835,0 +57100,Wioska+barbarzy%C5%84ska,704,388,699598425,2222,0 +57101,North+079,533,267,849064752,4331,0 +57102,o012,611,698,699189792,5936,0 +57104,K67+09,701,619,698867483,3385,0 +57105,093.+Wioska+barbarzy%C5%84ska,730,471,7494497,3279,0 +57106,Piek%C5%82o+to+inni,654,324,848956765,3351,0 +57107,%3D%7C39%7C%3D,692,376,9101574,2650,5 +57108,Wioska+Nevada,267,544,699693687,3491,0 +57109,New+WorldA,268,541,849084005,1172,0 +57110,Wioska+sznur,478,273,699832431,351,0 +57111,%5B0240%5D,272,497,8630972,4486,0 +57112,Janapola01,333,338,698806018,872,0 +57114,Wioska+barbarzy%C5%84ska,395,708,849014922,2579,0 +57115,MojeDnoToWaszSzczyt,501,270,9299539,5631,0 +57116,Osada+koczownik%C3%B3w,711,599,8323711,1865,5 +57117,WZ13,701,607,7142659,1688,0 +57118,Wioska+barbarzy%C5%84ska,640,311,3600737,1035,0 +57119,Avanti%21,268,466,698625834,1407,0 +57120,Piek%C5%82o+to+inni,654,333,848956765,3471,0 +57121,%5B0241%5D,272,504,8630972,4302,0 +57122,Wioska+barbarzy%C5%84ska,331,656,6910361,890,0 +57123,Wioska+barbarzy%C5%84ska,311,366,699660539,1336,0 +57124,%3F%3F%3F%3F,493,266,698489071,4838,0 +57125,Wioska+barbarzy%C5%84ska,561,720,699828442,3683,0 +57126,%3D123%3D+Wioska+barbarzy%C5%84ska,726,568,3781794,1500,0 +57127,-003-+Wioska+barbarzy%C5%84ska,684,351,849095068,1651,0 +57128,Sony+911,680,653,1415009,2062,0 +57129,Wioska+bambinos66,716,416,8325700,7196,0 +57130,Piek%C5%82o+to+inni,657,323,848956765,1947,0 +57131,Wioska+barbarzy%C5%84ska,335,331,699304554,384,0 +57132,Wioska+barbarzy%C5%84ska,403,294,698231772,2890,0 +57133,K67+15,705,619,698867483,2802,0 +57134,Wioska+barbarzy%C5%84ska,655,320,698895940,3383,0 +57135,Wioska+barbarzy%C5%84ska,724,560,698666810,5531,0 +57136,komandos,673,655,7976264,3583,0 +57137,Harem,627,311,848882577,5942,0 +57138,Wioska+barbarzy%C5%84ska,674,346,7973893,3577,0 +57139,CastAway+%21035,716,582,9314079,2350,0 +57140,04Wioska+barbarzy%C5%84ska,354,683,699704542,3270,0 +57141,Wioska+Harmozabal,676,343,1675628,53,0 +57142,wuju1,381,702,849101224,975,0 +57143,babababab,668,343,7646152,1097,0 +57144,18+Spedd+Box,729,447,849101845,5246,0 +57145,Wioska+barbarzy%C5%84ska,267,464,699213622,983,0 +57146,Wioska+MARCINEK+GRO%C5%BBNY,726,477,849069010,270,0 +57147,%C5%B9rebi%C4%99,572,281,849080011,767,0 +57148,%3DSAwars%3D07%3D,566,275,849106420,1523,0 +57149,Wioska+barbarzy%C5%84ska,367,694,3933666,801,0 +57150,Wioska+barbarzy%C5%84ska,602,295,699098531,2428,0 +57151,Betka,669,656,849048856,944,0 +57152,Wioska+warkoczynka,610,607,698580310,844,0 +57153,043+KTW,728,442,848883237,850,0 +57154,Wioska+barbarzy%C5%84ska,378,303,698160606,2094,0 +57155,MojeDnoToWaszSzczyt,503,269,9299539,6012,0 +57156,D013,564,281,699299123,3493,9 +57157,Wioska+touchmeboy,716,575,849043776,430,0 +57158,Wioska+barbarzy%C5%84ska,401,706,849014922,2759,0 +57159,Wioska+Quattro+only,301,628,849112435,6253,0 +57160,Wioska+barbarzy%C5%84ska,640,688,848987051,4301,0 +57161,New+World,418,723,698152377,4388,0 +57162,Wioska+greenapple,727,536,698604229,26,0 +57163,backstage+4,706,399,849099696,2785,0 +57164,Na+SsSskraju,276,570,1536625,5784,8 +57165,Wioska+PACYFICA,520,736,1450352,629,0 +57166,MojeDnoToWaszSzczyt,478,263,9299539,5579,0 +57167,New+World,427,720,698152377,3722,0 +57168,001,299,614,849100796,5153,0 +57169,Wioska+barbarzy%C5%84ska,537,732,699878511,3407,0 +57170,Osada+koczownik%C3%B3w,737,518,849082848,4777,7 +57171,nowa+6,631,689,699372829,477,0 +57172,moczary,280,434,699880701,889,0 +57173,Wioska+daro1974,400,292,3773216,222,0 +57174,Spy,682,352,7973893,1000,0 +57175,%C5%81atwy+cel,380,303,699419851,6264,0 +57176,015+%7C+North,371,687,699511295,3239,0 +57177,038+-+Budowanko%21,485,733,7540891,5190,0 +57178,Nowa+Baza+7,615,697,698353083,3695,0 +57179,New+World,425,719,698152377,6593,7 +57180,Wioska+barbarzy%C5%84ska,716,408,699598425,3454,0 +57181,Ks+Konfederacja,692,362,848915730,5401,0 +57182,Wioska+SiwyStaruszek,516,269,848937780,1308,0 +57183,013+%7C+North,378,695,699511295,3037,0 +57184,Wioska+Pimpu%C5%9B,459,734,849057655,52,0 +57185,Wioska+barbarzy%C5%84ska,274,466,699213622,3090,0 +57186,KONFA+TO+MARKA%2C+NARKA,287,420,698152377,2141,0 +57187,Wioska+barbarzy%C5%84ska,544,728,699878511,1654,0 +57188,Wioska+barbarzy%C5%84ska,305,366,0,466,0 +57189,Wioska+barbarzy%C5%84ska,544,275,0,321,0 +57190,Wioska+Stefek7,376,703,849108934,801,0 +57191,Wioska+barbarzy%C5%84ska,589,289,849064614,419,0 +57192,Osada+koczownik%C3%B3w,321,349,8632462,590,3 +57193,Wioska+barbarzy%C5%84ska,386,705,0,365,0 +57194,Osada+1,278,415,848936053,2537,0 +57195,099,732,507,7085502,1988,0 +57196,WZ05,713,600,7142659,3480,0 +57197,C008,463,735,8954402,1736,0 +57198,Piek%C5%82o+to+inni,654,330,848956765,3391,0 +57200,KONFA+TO+MARKA%2C+NARKA,271,445,698152377,3806,0 +57201,Wioska+barbarzy%C5%84ska,649,327,849048734,202,0 +57202,Wioska+barbarzy%C5%84ska,731,440,698191218,277,0 +57203,gondor,290,396,698677650,2335,0 +57204,o016,613,700,699189792,3678,0 +57205,Wioska+barbarzy%C5%84ska,343,676,0,416,0 +57206,005+Barad+Dur,505,270,849100383,7160,0 +57207,105+Wioska+barbarzy%C5%84ska,567,276,699854484,1156,0 +57208,P%7C007%7C,439,730,699393742,5261,0 +57209,%3DSAwars%3D05%3D,564,277,849106420,3231,0 +57210,Wioska+barbarzy%C5%84ska,347,669,6354098,339,0 +57212,Arczi997+07,270,507,849055181,289,0 +57213,%23019,558,274,849064614,2145,0 +57214,Wioska+elgordo,716,505,1079223,1708,0 +57215,Wioska+barbarzy%C5%84ska,346,677,0,451,0 +57216,Wioska+barbarzy%C5%84ska,298,615,0,217,0 +57217,Wioska+barbarzy%C5%84ska,530,725,699878511,3406,0 +57218,Wioska+domin964,730,535,849112725,2064,0 +57219,BETON+112,667,662,699277039,175,0 +57221,.%3A080%3A.+Takmahal,522,446,848934935,3499,0 +57222,Wioska+mrozzo,663,340,849048112,26,0 +57223,Wioska+barbarzy%C5%84ska,295,613,0,619,0 +57224,O158,310,630,272173,902,0 +57225,Bagno+38,461,730,848883684,4145,0 +57226,Osada+koczownik%C3%B3w,406,286,698231772,4000,5 +57228,New+WorldA,271,517,849084005,1334,0 +57229,.5.,289,391,762975,1863,0 +57230,Wiadro25,679,640,8677963,608,0 +57231,marekkkzzz665,402,717,9195661,5601,0 +57232,Wioska+barbarzy%C5%84ska,648,682,848987051,6224,0 +57234,Wioska+barbarzy%C5%84ska,726,559,698666810,5522,0 +57235,KONFA+TO+MARKA%2C+NARKA,289,409,698152377,1860,0 +57236,P%C3%B3%C5%82nocny+Bagdad,621,297,8847546,6589,0 +57237,MojeDnoToWaszSzczyt,483,265,9299539,4118,0 +57238,North+K25,560,275,699146580,1622,0 +57239,P%C3%B3%C5%82nocny+Bagdad,625,308,8847546,5324,0 +57240,Wioska+092,697,616,848971079,4999,0 +57241,...,685,636,849108991,1068,0 +57242,Nowa+Baza+9,615,702,698353083,4847,0 +57243,C.062,731,478,9188016,934,0 +57244,New+World,423,725,698152377,4216,0 +57245,Wioska+barbarzy%C5%84ska,306,380,1267913,437,0 +57246,Wioska+barbarzy%C5%84ska,291,591,0,133,0 +57247,New+World,272,543,849084005,8098,0 +57248,Aa2,593,714,849097614,5439,0 +57249,Wioska+barbarzy%C5%84ska,727,441,699347951,746,0 +57250,0920zzz006,708,601,3986807,560,0 +57252,Wioska+barbarzy%C5%84ska,319,358,0,602,0 +57253,.achim.,573,285,6936607,946,0 +57254,Wioska+barbarzy%C5%84ska,712,417,699722599,2967,0 +57255,Waldus,521,269,849110382,3734,0 +57256,PPF-09,519,270,1424656,1400,0 +57257,KONFA+TO+MARKA%2C+NARKA,277,444,698152377,5693,0 +57258,Wioska+Mega+Niepokorny,399,287,699741694,3937,0 +57259,%23009,553,274,849064614,6221,3 +57260,mog%C5%82em+wbi%C4%87+kolejnego+klina,622,697,698353083,423,0 +57261,Wioska+barbarzy%C5%84ska,727,558,698666810,5736,0 +57262,Wioska+0019,340,662,9186126,6382,0 +57263,Wiocha+Zochy+2,361,689,8838462,282,0 +57264,o%2Co+3,445,270,848933470,296,7 +57265,Wioska+Zawodnika+3,569,723,698655859,3539,0 +57266,KONFA+TO+MARKA%2C+NARKA,281,424,698152377,7603,0 +57267,Sony+911,678,647,1415009,2035,0 +57268,PPF-12,522,269,1424656,1875,0 +57269,068.,452,731,849034882,9559,0 +57270,Wioska+barbarzy%C5%84ska,281,589,0,158,0 +57271,Wioska+barbarzy%C5%84ska,526,735,699878511,5493,0 +57272,Wioska+Crift,358,690,848887366,1622,0 +57273,Wioska+barbarzy%C5%84ska,727,494,942959,957,0 +57274,Wioska+barbarzy%C5%84ska,686,359,7758085,2085,0 +57275,046,675,647,2323859,569,0 +57276,Wioska+barbarzy%C5%84ska,632,693,849096354,985,0 +57277,Osada+koczownik%C3%B3w,347,670,2725721,1033,1 +57278,Sony+911,671,649,1415009,2136,0 +57279,KONFA+TO+MARKA%2C+NARKA,276,443,698152377,4180,0 +57280,Wioska+Sylwiaa1234,571,283,849048552,68,0 +57281,Wioska+barbarzy%C5%84ska+09,343,331,698757439,6836,9 +57282,Wioska+amon201,320,353,7262049,945,0 +57283,068KP,473,266,849063849,678,0 +57284,Wioska+barbarzy%C5%84ska,324,340,849098400,514,0 +57286,Wioska+barbarzy%C5%84ska,294,613,0,576,0 +57287,Wioska+barbarzy%C5%84ska,292,398,0,266,0 +57288,Wioska+112,687,641,848971079,2809,0 +57289,Wioska+barbarzy%C5%84ska,723,558,1601917,1897,0 +57290,Wioska+barbarzy%C5%84ska,712,408,699598425,2991,0 +57292,Wioska+barbarzy%C5%84ska,385,299,698231772,3626,0 +57293,Ciapolos,446,270,849111231,3203,0 +57294,Wioska+Pazuros,449,265,849111316,3090,0 +57295,KONFA+TO+MARKA%2C+NARKA,275,443,698152377,3792,0 +57296,Wioska+barbarzy%C5%84ska,664,339,699072129,2881,0 +57297,%3F%3F%3F%3F,461,272,698489071,3902,0 +57298,Osada+koczownik%C3%B3w,376,298,849017820,980,3 +57299,.6.,287,410,762975,2424,0 +57300,K42+ADAMUS+021,279,431,6212605,3465,0 +57301,Wioska+barbarzy%C5%84ska,730,498,6510480,879,0 +57302,%23149%23,649,671,692803,1023,0 +57303,102,738,492,7085502,1832,0 +57304,Wioska+Breisse,546,404,849093771,748,0 +57305,Wioska+barbarzy%C5%84ska,551,728,699878511,2722,0 +57306,%3D124%3D+Wioska+barbarzy%C5%84ska,717,573,3781794,1500,0 +57307,Wioska+KrzysztofBerg95,274,468,699712243,463,0 +57308,P%C3%B3%C5%82nocny+Bagdad,634,310,8847546,2970,0 +57309,Lecymy+DUR,341,329,6169408,411,0 +57310,033.+Syria,524,265,699799629,4842,0 +57311,%3D125%3D+Wioska+barbarzy%C5%84ska,727,571,3781794,1327,0 +57312,Wioska+barbarzy%C5%84ska,355,686,699704542,2968,0 +57313,Wioska+barbarzy%C5%84ska,730,459,849095599,535,0 +57314,Wioska+barbarzy%C5%84ska,648,685,848987051,5899,0 +57315,nr8,638,692,364126,883,0 +57316,KONFA+TO+MARKA%2C+NARKA,276,422,698152377,2358,0 +57317,ma%C5%82y+raj,272,447,699401083,2074,0 +57318,Wioska+barbarzy%C5%84ska,298,606,699604515,135,0 +57319,0130,714,416,698416970,439,0 +57320,Wioska+barbarzy%C5%84ska,321,645,8175236,668,0 +57321,Wioska+barbarzy%C5%84ska,402,713,849014922,4106,0 +57322,Wioska+barbarzy%C5%84ska,566,725,699828442,989,0 +57323,New+WorldA,267,517,849084005,669,0 +57324,Wioska+Hektor888.,723,590,8434727,886,0 +57325,B010,529,274,699485250,3805,0 +57326,Wioska+barbarzy%C5%84ska,682,364,6956104,2622,0 +57327,Wioska+barbarzy%C5%84ska,321,652,8175236,938,0 +57328,Zaplecze+Barba+043,352,317,699796330,1747,0 +57329,Zaplecze+Barba+044,346,329,699796330,1725,0 +57330,Maszlug+kolonia+XXII,318,361,848977649,871,0 +57331,Wioska+1edc,698,623,7007969,26,0 +57332,%23135%23,664,666,692803,2280,0 +57333,Kombinat,281,586,699396429,1418,0 +57334,KONFA+TO+MARKA%2C+NARKA,274,436,698152377,3592,0 +57335,Wioska+Kaczoland,289,608,6323735,222,0 +57336,Wioska+barbarzy%C5%84ska,444,727,9037756,375,0 +57337,Wioska+barbarzy%C5%84ska,269,459,699213622,910,0 +57338,%5B207%5D,720,420,8000875,1890,0 +57340,B018,531,268,699485250,3604,0 +57341,Wioska+barbarzy%C5%84ska,720,557,698666810,2111,0 +57342,Wioska+barbarzy%C5%84ska,730,502,942959,1030,0 +57343,Wioska+barbarzy%C5%84ska,719,435,698191218,1119,0 +57344,O118,311,636,272173,6577,0 +57345,North+057,528,266,849064752,5186,0 +57346,Wioska+barbarzy%C5%84ska,713,578,7038651,660,0 +57347,KONFA+TO+MARKA%2C+NARKA,271,454,698152377,2212,0 +57348,Wioska+barbarzy%C5%84ska,392,701,849014922,1458,0 +57349,008,263,507,698356304,799,0 +57350,Zzz+12+troch%C4%99+daleko,282,581,849084740,645,0 +57351,New+World,410,718,698152377,6538,0 +57353,001%3A%3A,352,685,699730998,1723,0 +57354,Wioska+barbarzy%C5%84ska,732,449,698702991,558,0 +57355,Wioska+barbarzy%C5%84ska,269,482,698625834,563,0 +57357,New+WorldA,273,538,849084005,1398,0 +57358,North+065,515,270,849064752,5364,0 +57359,North+K25,566,274,699146580,1791,0 +57360,.achim.,580,282,6936607,1527,0 +57361,Pozna%C5%84,559,271,699872401,3559,0 +57362,PPF-06,508,265,1424656,3501,0 +57364,001+Mordor,521,263,849100383,8846,0 +57365,Wioska+barbarzy%C5%84ska,713,407,699598425,3001,0 +57366,Wioska+gajawa,589,287,7781236,634,0 +57367,009,273,465,698652171,2626,2 +57369,Wioska+wjadr0,604,712,699711334,26,0 +57370,PPF-08,518,271,1424656,3220,0 +57372,009,284,595,698663855,4209,0 +57373,Saran12,407,284,848937248,312,0 +57374,Wioska+barbarzy%C5%84ska,305,376,0,394,0 +57375,PPF-35,573,276,1424656,950,0 +57376,Wioska+barbarzy%C5%84ska,733,496,6510480,948,0 +57377,Flap,607,290,699098531,4031,0 +57378,Wioska+barbarzy%C5%84ska,731,522,698191218,2029,0 +57379,New+WorldA,273,545,849084005,1695,0 +57380,Wioska+barbarzy%C5%84ska,286,590,699396429,775,0 +57381,44.,331,660,8665783,717,0 +57383,Wioska+barbarzy%C5%84ska,318,353,698364331,2031,0 +57384,Baligr%C3%B3d,626,303,848922958,1995,0 +57385,KONFA+TO+MARKA%2C+NARKA,288,416,698152377,2375,0 +57386,Wioska+barbarzy%C5%84ska,354,681,0,190,0 +57387,bandzior+na+ko%C5%84cu,506,738,849065697,3533,0 +57388,Wioska+barbarzy%C5%84ska,318,350,0,256,0 +57389,Wioska+barbarzy%C5%84ska,681,359,2976468,1551,0 +57390,P%C3%B3%C5%82nocny+Bagdad,635,311,8847546,2304,0 +57391,Wioska1+barbarzy%C5%84ska,710,412,8459255,3628,0 +57392,Wioska+barbarzy%C5%84ska,722,582,2453888,4694,0 +57393,%23126%23,654,669,692803,2684,0 +57394,Wioska+mlodyfacetkosmita,333,593,849081284,41,0 +57395,Wioska+barbarzy%C5%84ska,589,286,849064614,1925,0 +57396,Wioska+Alchemika,342,325,849068108,705,0 +57397,New+WorldA,267,532,849084005,1108,0 +57398,NOT%2A,312,354,9236866,8169,9 +57399,-23-,578,726,849032414,3317,0 +57400,Avanti%21,270,490,698625834,2499,1 +57401,O156,308,632,272173,1461,0 +57402,002+Moria,519,264,849100383,3989,0 +57403,New+World,427,722,698152377,7584,0 +57404,Wiadro22,682,651,8677963,1878,0 +57405,Wioska+Wied%C5%BAma,304,628,849106698,194,0 +57406,North+K25,562,280,699146580,1854,0 +57407,001,316,395,1809943,867,0 +57408,Wioska+barbarzy%C5%84ska,528,265,699799629,2096,0 +57409,Wioska,303,371,9185931,6060,0 +57410,%3F%3F%3F%3F,489,268,698489071,3126,0 +57411,Wioska+gall4,268,475,699598396,1178,0 +57412,005,465,271,699562874,4362,3 +57413,Piek%C5%82o+to+inni,655,333,848956765,2826,0 +57414,Alamo4,714,578,2723244,1856,0 +57415,P%C3%B3%C5%82nocny+Bagdad,604,289,8847546,1258,0 +57416,076.+Wioska+barbarzy%C5%84ska,729,464,7494497,4737,0 +57417,%40%402,266,499,849113546,1316,0 +57418,Wioska+Deylor,291,605,849032741,453,0 +57419,WB41,302,368,356642,1037,0 +57420,Wioska+Baat,397,298,699709160,872,0 +57421,Wioska+barbarzy%C5%84ska,724,550,1601917,2661,0 +57422,Wioska+barbarzy%C5%84ska,309,365,0,485,0 +57423,KONFA+TO+MARKA%2C+NARKA,275,446,698152377,3783,0 +57424,Osada+koczownik%C3%B3w,317,645,8877156,5637,2 +57425,Wioska+barbarzy%C5%84ska,349,321,8772425,691,0 +57426,Wioska+barbarzy%C5%84ska,574,601,848995242,355,0 +57427,Wioska+barbarzy%C5%84ska,384,294,699191464,820,0 +57428,Wioska+barbarzy%C5%84ska,270,474,849095814,589,0 +57429,Wioska+barbarzy%C5%84ska,352,682,699704542,3036,0 +57430,KONFA+TO+MARKA%2C+NARKA,282,422,698152377,3850,0 +57431,Wioska+b+003,423,277,6343784,2032,0 +57432,New+World,414,716,698152377,4933,0 +57433,New+World,422,714,698152377,4110,0 +57434,068.,706,466,849094609,1155,0 +57435,Madagascar,322,659,7707390,6861,0 +57436,K67+20,705,611,698867483,2449,0 +57437,Wioska+barbarzy%C5%84ska,722,551,1601917,208,0 +57438,...%3A%3A181+13%3A%3A...,272,510,699641777,1830,0 +57439,P%C3%B3%C5%82nocny+Bagdad,624,301,8847546,7234,2 +57440,%2A01%2A,685,632,1284796,681,0 +57441,P%C3%B3%C5%82+1,438,279,849096310,1280,0 +57442,Wioska+barbarzy%C5%84ska,363,681,699704542,1242,0 +57443,R+054,488,736,699195358,1815,0 +57444,P%C3%B3%C5%82nocny+Bagdad,616,300,8847546,2242,0 +57445,Wioska+barbarzy%C5%84ska,310,364,0,498,0 +57446,Wioska+barbarzy%C5%84ska,318,359,0,460,0 +57447,Oaza,348,669,2725721,402,0 +57448,New+World,404,706,698152377,4752,0 +57449,Wioska+barbarzy%C5%84ska,546,730,699878511,2551,0 +57450,KONFA+TO+MARKA%2C+NARKA,285,408,698152377,1999,0 +57451,Wioska+Tabaluga1922,501,263,848950255,871,0 +57452,%C5%BBywio%C5%82,680,356,699875213,281,0 +57453,Wioska+barbarzy%C5%84ska,693,379,698702991,1584,0 +57454,Wioska+barbarzy%C5%84ska,720,576,2453888,3232,0 +57455,04Osada+koczownik%C3%B3w,362,690,699704542,8300,1 +57457,MojeDnoToWaszSzczyt,467,271,9299539,2381,0 +57458,097+Wioska+barbarzy%C5%84ska,541,270,699854484,4845,0 +57460,O119,306,635,272173,6103,0 +57461,Z%C4%99by+Smoka,412,281,849037354,5804,0 +57462,XDX,614,298,699098531,3743,4 +57464,011,394,288,699694284,4620,0 +57466,Wioska+barbarzy%C5%84ska,736,508,6510480,1244,0 +57468,KONFA+TO+MARKA%2C+NARKA,277,424,698152377,4837,0 +57469,New+World,416,723,698152377,2640,0 +57470,Kiedy%C5%9B+Wielki+Wojownik,328,351,8632462,1121,0 +57471,031,704,399,849091105,7400,2 +57472,Wioska,603,703,849113078,1402,0 +57473,%21Wioska+barbarzy%C5%84ska+22,583,721,8779575,3352,0 +57474,Wioska+pepus1971,607,289,699238678,3441,0 +57475,Wioska+barbarzy%C5%84ska,647,686,848987051,5870,0 +57476,magazyn+PP+xxx,664,338,849111196,1616,0 +57477,Wioska+mysza,274,478,849110852,433,0 +57478,Wioska+barbarzy%C5%84ska,317,650,0,407,0 +57479,Wioska+Trzepak7,405,712,849103237,249,0 +57480,Wioska+barbarzy%C5%84ska,460,275,699191464,1281,0 +57481,Wioska+barbarzy%C5%84ska,300,377,0,252,0 +57482,Wioska+barbarzy%C5%84ska,626,693,6818593,1792,0 +57483,Wioska+Mlody165,471,270,849113055,2293,0 +57485,Wioska+barbarzy%C5%84ska,403,706,849014922,2687,0 +57486,Wioska+barbarzy%C5%84ska,547,724,699828442,3671,0 +57487,Wioska+Astecki,291,394,849112733,52,0 +57488,PPF-13,510,262,1424656,3030,0 +57490,Wioska+barbarzy%C5%84ska,592,286,849064614,184,0 +57491,009,286,592,698663855,4787,0 +57493,Wioska+barbarzy%C5%84ska,732,518,698191218,2201,0 +57494,Wioska+barbarzy%C5%84ska,706,393,699598425,2218,0 +57495,Wioska+barbarzy%C5%84ska,641,319,849102068,1439,0 +57496,010,397,288,699694284,5427,2 +57497,Wioska+xmox,722,571,6822085,657,0 +57498,Sony+912,705,392,1415009,3143,0 +57499,Wioska+barbarzy%C5%84ska,362,317,3484132,4533,0 +57500,O160,313,645,272173,810,6 +57502,Wioska+mrugowal,691,373,849104474,71,0 +57503,2250zzz04,708,602,3986807,526,0 +57505,%23002+Las+Vegas,331,666,849101276,1188,0 +57506,Wioska+barbarzy%C5%84ska,377,308,698160606,2786,0 +57507,Wioska+rafi041072,416,722,1511101,559,0 +57508,Wioska+barbarzy%C5%84ska,443,270,699191449,1148,0 +57509,%3F%3F%3F%3F,484,272,698489071,3693,0 +57511,Pan+P%C4%85czek,271,508,849105417,2168,0 +57512,PPF-07,510,265,1424656,3196,0 +57513,Wioska+Koc+M%C5%9Bciwy,279,573,849083725,129,0 +57514,221...NORTH,431,281,6920960,2092,0 +57515,Wioska+barbarzy%C5%84ska,425,277,699308637,646,0 +57516,Wioska+barbarzy%C5%84ska,356,319,3698627,3172,0 +57517,Wioska+Piotr-Wielki2,727,432,849110021,2286,0 +57518,New+World,408,716,698152377,5026,0 +57519,Wioska+barbarzy%C5%84ska,728,436,699524891,2597,0 +57521,KONFA+TO+MARKA%2C+NARKA,285,397,698152377,1430,0 +57522,Gwenville+016,455,271,848986638,510,0 +57523,MojeDnoToWaszSzczyt,466,264,9299539,4558,0 +57524,MojeDnoToWaszSzczyt,483,263,9299539,3340,0 +57525,Flap,597,283,699098531,4572,0 +57526,Wioska+barbarzy%C5%84ska,308,368,0,332,0 +57527,Wioska+088,715,600,848971079,5764,0 +57528,Nibylandia,555,344,849110711,765,0 +57530,C0311,272,551,8841266,2469,0 +57531,001,732,482,849078498,6070,0 +57532,Wioska+barbarzy%C5%84ska,735,505,6510480,895,0 +57533,026,529,719,698996782,2953,0 +57534,Kami+2,736,476,849002796,1982,0 +57535,Wioska+Raissa,273,510,699336679,499,0 +57536,Snippet+FR,482,734,849004274,5968,0 +57537,Sony+911,678,646,1415009,1510,0 +57538,.achim.,575,283,6936607,1302,0 +57539,North+080,516,271,849064752,3055,0 +57540,Wioska+telimena,306,633,699037086,5523,0 +57541,%2B.75000...-2,546,727,8320319,4256,0 +57542,B017,529,268,699485250,3779,0 +57543,Wioska+barbarzy%C5%84ska,661,676,0,123,0 +57544,Wioska+barbarzy%C5%84ska,680,354,609384,852,0 +57545,North+066,511,272,849064752,5695,4 +57547,A%23038,734,480,2065730,8661,1 +57549,Wioska+barbarzy%C5%84ska,369,310,698160606,3535,0 +57550,kamilkaze135+%2318,689,372,699705601,1592,0 +57551,sw+181,360,683,100452,2927,0 +57552,Wioska+M1,696,606,6046368,2405,0 +57553,117.+Archipelag+Po%C5%82udniowy,694,625,8337151,2076,0 +57555,Wioska+barbarzy%C5%84ska,732,499,6510480,1015,0 +57556,Sony+911,673,663,1415009,2731,0 +57557,086.+Wioska+barbarzy%C5%84ska,735,466,7494497,2939,0 +57558,Wioska+misiu12193,433,282,9129046,339,0 +57559,Qqqqqq,272,470,848981726,1282,0 +57560,Wioska+barbarzy%C5%84ska,645,680,848987051,5030,0 +57561,MojeDnoToWaszSzczyt,460,265,9299539,3405,0 +57562,ZK+Wronki,272,437,698279195,1595,0 +57563,NOT%3F,311,360,9236866,3067,0 +57564,PPF-43,586,281,1424656,642,0 +57565,kurwistaw8808,369,305,848963521,1633,0 +57566,018,713,591,6160655,2600,4 +57567,Wioska+DZ4L4,621,298,849100496,128,0 +57568,Hi+Bady,303,375,848943145,3442,0 +57569,Na+SsSskraju,275,572,1536625,653,0 +57570,North+019,517,270,849064752,6899,1 +57571,Wioska+barbarzy%C5%84ska,725,560,698666810,1593,0 +57572,O110,295,612,272173,7961,4 +57573,%23125%23,651,672,692803,2877,0 +57574,Wow23,351,328,699730714,369,0 +57575,Groch%C3%B3w,284,408,699854312,449,0 +57576,Wioska+chopek1,384,291,8855679,2902,0 +57577,Nowe+Dobra+-+budowa,693,629,699759128,2984,0 +57578,Du%C5%BCa+osada,419,282,3411571,7706,2 +57579,Wioska+graf72,286,583,849109885,1778,0 +57580,%3D126%3D+Wioska+barbarzy%C5%84ska,729,568,3781794,1078,0 +57581,Wioska+barbarzy%C5%84ska,735,479,6510480,194,0 +57582,nowa+5,630,689,699372829,441,0 +57583,Wioska+Somalija,560,274,699794286,80,0 +57584,Wioska+barbarzy%C5%84ska,362,682,699704542,2677,0 +57585,Wioska+barbarzy%C5%84ska,360,687,0,179,0 +57586,028+-+Budowanko%21,473,736,7540891,5063,0 +57587,North+095,496,263,849064752,4252,0 +57588,Wioska+barbarzy%C5%84ska,366,308,3484132,5058,0 +57589,NieLubieRudzielc%C3%B3w,296,394,849076515,312,0 +57590,38.,330,668,8665783,1213,0 +57591,Wioska+MistycznaParowa,636,674,9096738,188,0 +57592,KONFA+TO+MARKA%2C+NARKA,272,446,698152377,3765,0 +57593,Wioska+barbarzy%C5%84ska,712,415,699722599,3543,0 +57594,North+067,511,262,849064752,5248,0 +57595,KONFA+TO+MARKA%2C+NARKA,274,427,698152377,2251,0 +57596,Wyspa+027,280,577,225023,1201,0 +57599,elo,430,276,849085160,494,0 +57600,%23042,556,272,849064614,1020,0 +57601,O102,293,620,272173,7647,0 +57602,Wioska+barbarzy%C5%84ska,734,535,17714,725,0 +57603,Wioska+gracforfun,704,624,699751562,1158,0 +57604,Wioska+barbarzy%C5%84ska,610,706,699828685,2301,0 +57605,%5B0292%5D,271,504,8630972,301,0 +57606,KONFA+TO+MARKA%2C+NARKA,287,418,698152377,2258,0 +57607,Wioska+barbarzy%C5%84ska,267,460,699213622,704,0 +57608,Wioska+barbarzy%C5%84ska,316,640,2289134,388,0 +57609,Saragossa,649,674,747422,1138,0 +57610,Domek+Miniuka+04,478,726,699373225,2375,0 +57611,Wioska+Machoneyy,296,386,848949517,987,0 +57612,R+051,491,731,699195358,2842,0 +57613,New+World,409,714,698152377,4783,0 +57614,Wioska+barbarzy%C5%84ska,739,494,6510480,1177,0 +57615,Wioska+ociek123,269,470,699860418,3037,0 +57616,Wioska+lukempire,651,681,9247737,26,0 +57617,Na+SsSskraju,275,571,1536625,754,0 +57618,Wioska+Marcelinka,298,611,849060357,2198,0 +57619,Wioska+barbarzy%C5%84ska,592,708,7756002,3635,0 +57621,Wioska+barbarzy%C5%84ska,384,707,849014922,1236,0 +57622,Nowe+IMPERIUM+11+Warksztat,621,699,698353083,5299,7 +57623,New+WorldA,266,516,849084005,1112,0 +57624,%5B0282%5D,266,498,8630972,3728,0 +57625,Wioska+Sir+SilverBaron,316,350,699678801,2632,0 +57626,41.,333,663,8665783,830,0 +57628,Wioska+barbarzy%C5%84ska,306,366,0,449,0 +57629,CastAway+%21039,708,596,9314079,1828,0 +57630,Wioska+rkot,468,728,699449946,3295,0 +57631,Flap,601,290,699098531,3878,0 +57632,Wioska+KKS+Rakieta,501,738,849066808,630,0 +57634,P%C3%B3%C5%82nocny+Bagdad,613,290,8847546,2211,0 +57635,Sony+911,685,652,1415009,1295,0 +57637,P%C3%B3%C5%82nocny+Bagdad,628,311,8847546,6652,0 +57638,080+-+Budowanko%21,498,737,7540891,542,0 +57639,009,287,594,698663855,4787,0 +57640,%5B0265%5D,262,499,8630972,3758,5 +57641,Wioska+barbarzy%C5%84ska,676,352,609384,835,0 +57642,R+052,492,732,699195358,2584,0 +57643,Wioska+Krukuu,371,312,699699422,1038,0 +57644,046+-+Budowanko%21,566,728,7540891,4540,0 +57645,zk+kryniu,684,364,849105232,1275,1 +57646,%3F%3F%3F%3F,455,268,698489071,3016,0 +57647,Wioska+barbarzy%C5%84ska,721,426,699628084,859,0 +57648,Wioska+barbarzy%C5%84ska,708,398,699598425,2863,0 +57649,Wioska+barbarzy%C5%84ska,737,532,1601917,1565,0 +57650,Wioska+Lord+%C5%81oszo,269,557,698207545,696,0 +57651,Maryna+4,267,459,699650981,570,0 +57652,Wioska+szabla32,472,498,8128478,560,0 +57653,A%23041,730,517,2065730,6643,1 +57654,PPF-48,552,267,1424656,359,0 +57655,Avanti%21,271,482,698625834,2239,0 +57656,Wioska+barbarzy%C5%84ska,727,539,17714,117,0 +57657,Wioska30,330,345,699711926,1813,0 +57658,karmelon,353,318,849099804,2453,0 +57659,adam,337,330,6618608,5300,0 +57660,Wioska+Kozio%C5%82,293,615,849109966,344,0 +57661,NOT%3F,308,362,9236866,801,0 +57662,taka+malutka,531,710,6116940,2603,0 +57664,Wioska,622,298,7140413,901,0 +57665,hobbiton,289,395,698677650,656,0 +57666,Wioska+barbarzy%C5%84ska,307,376,0,307,0 +57667,032.+Ateny,523,264,699799629,4427,3 +57669,%5B0284%5D,266,500,8630972,3394,0 +57670,CastAway+%23026,716,596,9314079,2465,0 +57671,KASHYYYK+3,573,721,699383121,1121,0 +57672,040,715,411,849091105,1769,0 +57673,Wioska+barbarzy%C5%84ska,667,333,699072129,2530,0 +57674,%5B837%5D+Odludzie,720,437,848985692,4918,0 +57675,Wioska+barbarzy%C5%84ska,685,356,2976468,520,0 +57676,095.+Wioska+barbarzy%C5%84ska,727,469,7494497,3217,0 +57677,Wioska+barbarzy%C5%84ska,607,710,0,340,0 +57678,o022,631,700,699189792,2540,0 +57679,Grzejdas+3,705,378,849057764,3990,8 +57680,Wioska+barbarzy%C5%84ska,575,716,7756002,3196,0 +57681,%23163%23,657,677,692803,1234,0 +57682,057,683,636,699099811,572,0 +57683,Wygwizdowa+015,662,662,698562644,505,0 +57684,R+055,491,732,699195358,1032,0 +57685,Wioska+barbarzy%C5%84ska,723,557,698666810,7259,0 +57686,Wioska+Chora%C5%BCy,607,288,849098374,4629,0 +57687,Resist+And+Bite%21,447,724,699069151,2203,0 +57688,Wioska+barbarzy%C5%84ska,724,575,2453888,3693,0 +57689,Wioska+gall3,267,476,699598396,2607,1 +57690,Wioska+barbarzy%C5%84ska,610,289,849064614,316,0 +57691,Wioska+barbarzy%C5%84ska,288,389,0,84,0 +57692,Wioska+barbarzy%C5%84ska,334,337,699304554,475,0 +57693,Wioska+barbarzy%C5%84ska,618,295,849037469,3743,0 +57694,Ma%C5%82a+osada,417,277,3411571,7740,8 +57695,FP045,460,731,699605333,3885,0 +57696,Wioska31,330,340,699711926,1784,0 +57697,Wioska+barbarzy%C5%84ska,293,614,0,183,0 +57698,098+Wioska+barbarzy%C5%84ska,541,275,699854484,5145,0 +57699,Wioska+181,733,490,2363165,447,0 +57700,Sqn,715,397,699598425,2220,0 +57701,WB05,298,384,356642,4508,7 +57702,001,661,665,849111050,2601,0 +57703,PSYHOSOCIAL,292,600,699774694,1461,1 +57704,Wioska+EpSi1,589,716,6516085,925,0 +57705,Wioska+barbarzy%C5%84ska,736,501,6510480,1056,0 +57706,Wioska+Maja40,670,349,8483719,1856,0 +57707,Wioska+barbarzy%C5%84ska,521,737,849066849,367,0 +57708,Wioska+barbarzy%C5%84ska,401,705,849014922,1706,0 +57709,KONFA+TO+MARKA%2C+NARKA,275,428,698152377,2236,0 +57710,C0332,262,518,8841266,1621,0 +57711,Wioska+barbarzy%C5%84ska,265,503,849013126,437,0 +57712,KWB6,448,728,9003698,4357,0 +57713,Wioska+barbarzy%C5%84ska,507,739,849066849,898,0 +57714,132.Stradi,396,293,698365960,3869,5 +57715,Praven,344,331,699716785,2273,0 +57716,P%C3%B3%C5%82nocny+Bagdad,621,304,8847546,7093,0 +57718,Wioska+barbarzy%C5%84ska,329,334,699304554,2351,0 +57719,Kami+4,734,472,849002796,1478,0 +57721,Wioska+barbarzy%C5%84ska,715,576,2453888,1405,0 +57722,King+Arkadius+1,542,731,699812653,1082,0 +57723,008,290,595,698663855,4787,4 +57724,Wioska+Pi%C5%BAdzichlapica,533,737,849038572,191,0 +57725,022+-+Budowanko%21,478,730,7540891,6109,0 +57727,084.+Wioska+barbarzy%C5%84ska,731,465,7494497,3206,0 +57728,65+barbarzy%C5%84ska,276,457,849018442,114,0 +57729,030.+elli38,698,366,2873154,4093,0 +57730,Osada+koczownik%C3%B3w,669,345,7973893,5581,2 +57731,Wioska+Sir+sernik,425,720,849113300,313,0 +57732,Wioska+real124,624,306,848956537,26,0 +57733,North+018,516,265,849064752,7895,8 +57734,New+World,426,720,698152377,3354,0 +57736,Avanti%21,269,488,698625834,2516,0 +57737,Wioska+KOSMACZ1,732,447,848926070,439,0 +57738,New+World,417,722,698152377,5467,0 +57739,Wioska+%C5%81ukasz80,632,308,1227022,1055,0 +57741,Sony+911,669,662,1415009,2791,0 +57742,No+na+pewno,402,288,699854830,596,7 +57743,Stryszawa+City+v9,264,538,699729211,483,0 +57744,KONFA+TO+MARKA%2C+NARKA,291,398,698152377,1178,0 +57745,WWWWWW,264,532,1095489,919,0 +57746,%23151%23,656,675,692803,905,0 +57747,FP054,447,730,699605333,3219,0 +57748,Wioska+barbarzy%C5%84ska,373,697,0,284,0 +57749,MojeDnoToWaszSzczyt,474,262,9299539,5328,0 +57750,Wioska+barbarzy%C5%84ska,366,313,3484132,3709,0 +57751,0110,701,378,698416970,1238,0 +57752,New+World,435,723,698152377,3628,0 +57753,C0320,267,524,8841266,2466,0 +57754,BOA6,306,623,699829494,2344,0 +57755,Wioska+barbarzy%C5%84ska,553,724,699828442,3897,0 +57756,Zaplecze+Osada+1,361,315,699796330,6980,8 +57757,Wioska+jurek15,507,735,699144886,1324,0 +57758,Cisza,278,582,698769107,654,0 +57759,Wioska+Skols998,733,529,849005658,2841,0 +57760,O67+Daeyami,687,566,699272880,668,0 +57761,Wioska+barbarzy%C5%84ska,585,720,849087855,379,0 +57762,Wioska+uks13,644,318,8411874,771,0 +57763,rzeka+anduina,292,391,698677650,579,0 +57764,Tylko+FALUBAZ,470,268,9277642,5414,0 +57765,MojeDnoToWaszSzczyt,501,262,9299539,5383,0 +57766,New+World,412,722,698152377,3199,0 +57767,PPF-30,566,279,1424656,1479,0 +57768,001,711,394,699832463,2928,0 +57769,Sony+911,707,618,1415009,1148,0 +57770,Wioska+barbarzy%C5%84ska,732,493,942959,942,0 +57771,Wioska+Warkilia,708,402,3668212,2203,0 +57772,Wioska+barbarzy%C5%84ska,667,332,699072129,2620,0 +57774,%23137%23,666,665,692803,2151,0 +57775,Wioska+rhodos77,689,640,7230689,3731,0 +57776,C0318,271,521,8841266,2529,0 +57777,049+-+Budowanko%21,520,737,7540891,4081,0 +57778,Wioska+barbarzy%C5%84ska,267,550,0,305,0 +57779,Wioska+barbarzy%C5%84ska,557,727,699828442,1417,0 +57780,jebacwas,263,490,849110380,225,0 +57781,%5B834%5D+Odludzie,722,434,848985692,5348,0 +57782,Wioska+barbarzy%C5%84ska,301,374,0,657,0 +57784,041+-+Alcorcon,716,598,698342159,806,0 +57785,Wioska+barbarzy%C5%84ska,380,293,699191449,833,0 +57786,New+World,413,723,698152377,4269,2 +57788,Wioska+barbarzy%C5%84ska,313,643,8877156,2131,0 +57790,Wioska+barbarzy%C5%84ska,498,736,606407,2147,0 +57791,Wioska+barbarzy%C5%84ska,635,694,699372829,134,0 +57792,New+World,429,727,698152377,5026,0 +57793,IGNESJA,695,366,3957237,1750,0 +57795,lesna+brama,286,395,698677650,1537,0 +57796,Wioska+mamcos98,298,620,9057880,26,0 +57797,-10-,516,737,765188,4014,0 +57798,Wioska+barbarzy%C5%84ska,729,531,17714,144,0 +57799,Wioska+barbarzy%C5%84ska,726,536,17714,1618,0 +57800,%2310,342,335,2800032,529,0 +57801,WB48,294,384,356642,276,0 +57802,Wioska+barbarzy%C5%84ska,554,730,699828442,1743,0 +57804,WB34,296,385,356642,1472,0 +57805,45+barbarzy%C5%84ska,271,438,849018442,1157,0 +57806,078,675,339,2502956,1614,0 +57808,Wioska+barbarzy%C5%84ska,287,393,0,443,0 +57809,%40%401,267,500,849113546,4092,0 +57810,shadow+%231,260,493,1034117,3969,0 +57811,P%C3%B3%C5%82nocny+Bagdad,617,296,8847546,6651,0 +57812,Naboo,735,503,160513,4395,0 +57813,%C5%BB%C5%BBanetta,681,355,699875213,556,0 +57814,CastAway+%21012,715,596,9314079,6144,9 +57815,050,733,447,849091105,279,0 +57816,Piek%C5%82o+to+inni,652,324,848956765,2344,0 +57817,lorien,294,390,698677650,508,0 +57820,Avanti%21,267,479,698625834,2055,0 +57821,Wioska+barbarzy%C5%84ska,364,306,698160606,2112,0 +57822,Wioska+115,688,642,848971079,2086,0 +57823,%3D127%3D+Wioska+barbarzy%C5%84ska,725,568,3781794,1433,0 +57824,%5B0283%5D,263,500,8630972,3528,0 +57825,Wioska+%C5%BBulionerka,501,495,849066125,254,0 +57826,Bagno+36,473,729,848883684,4314,0 +57827,Wioska+Sir+Moon+Knight,711,402,849094972,143,0 +57828,Wioska+barbarzy%C5%84ska,579,723,849098628,1515,0 +57829,adam3,338,328,6618608,269,0 +57830,.achim.,577,285,6936607,1579,0 +57831,%23203+C,517,737,9037756,784,0 +57832,Wioska+barbarzy%C5%84ska,394,714,849014922,4106,0 +57833,Gwenville+018,450,270,848986638,507,0 +57834,009,264,504,698356304,666,0 +57836,Wioska+barbarzy%C5%84ska,359,690,699704542,2520,0 +57837,Wioska+barbarzy%C5%84ska,730,525,698191218,1863,0 +57838,Wioska+barbarzy%C5%84ska,293,616,3896657,494,0 +57839,018+%7C+North,380,697,699511295,3000,0 +57840,Wioska+barbarzy%C5%84ska,671,333,699072129,2253,0 +57841,.achim.,573,281,6936607,2495,0 +57842,Wioska+Kielce,735,454,849065829,209,0 +57843,Wioska%3F%3F%3F,285,603,699774694,507,0 +57844,New+World,409,717,698152377,3877,0 +57845,0132,698,381,698416970,791,0 +57846,Wioska+barbarzy%C5%84ska,266,460,699213622,620,0 +57847,Wioska+barbarzy%C5%84ska,674,339,699072129,2112,0 +57848,Delaware,730,534,6002527,1349,0 +57849,Wioska+barbarzy%C5%84ska,348,316,3698627,2852,0 +57850,42.,329,665,8665783,1353,0 +57851,North+K25,565,273,699146580,1702,0 +57852,Wioska+macp1,657,668,3750922,2267,0 +57853,Wioska+barbarzy%C5%84ska,318,643,698908184,1657,0 +57854,ChceszPokojuSzykujSi%C4%99DoWojny,472,733,699333701,1031,0 +57855,O113,305,629,272173,7032,1 +57856,P%C3%B3%C5%82nocny+Bagdad,645,313,8847546,806,0 +57857,007+baba,273,544,197581,4201,0 +57858,Wioska+barbarzy%C5%84ska,528,731,699878511,5094,0 +57859,P%C3%B3%C5%82nocny+Bagdad,632,302,8847546,1256,0 +57860,36+barbarzy%C5%84ska+2A,269,447,849018442,2357,0 +57861,Wioska+barbarzy%C5%84ska,642,319,849102068,1261,0 +57862,Wioska+grzesiek576,517,530,7844370,299,0 +57863,Avanti%21,267,468,698625834,953,0 +57864,Wioska+TCH1,265,480,7749444,4128,0 +57865,Avanti%21,271,469,698625834,2395,0 +57866,Opalenica,630,304,849113595,1371,0 +57867,Bunkier,344,674,699805839,2077,0 +57868,Leszno,621,311,849113597,1782,0 +57869,Wioska+barbarzy%C5%84ska,609,704,699828685,2357,0 +57870,PIROTECHNIK+012,339,336,849101083,333,0 +57871,Osada+koczownik%C3%B3w,263,517,698388578,745,7 +57873,Wioska+barbarzy%C5%84ska,425,276,699308637,679,0 +57874,JW94,736,515,849113603,859,0 +57875,MojeDnoToWaszSzczyt,491,267,9299539,5706,0 +57876,Maroko,323,661,7707390,507,0 +57877,%23121%23,655,671,692803,3583,0 +57878,Wioska+barbarzy%C5%84ska,312,352,0,87,0 +57879,Wioska+barbarzy%C5%84ska,385,302,698231772,2633,0 +57880,Sony+911,682,646,1415009,1879,0 +57881,Wioska+barbarzy%C5%84ska,728,532,17714,1082,0 +57882,Zaplecze+Barba+048,341,325,699796330,956,0 +57883,KASHYYYK+4,574,722,699383121,916,0 +57884,225...NORTH,437,279,6920960,1773,0 +57885,K67+17,716,602,698867483,3120,0 +57886,Wioska+pyari,297,393,1371998,2059,0 +57887,CastAway+%23028,709,598,9314079,2589,0 +57889,Kami,738,474,849002796,2302,0 +57890,Wioska+barbarzy%C5%84ska,620,293,849037469,1883,0 +57891,North+058,529,267,849064752,4778,0 +57892,Wioska+barbarzy%C5%84ska,662,338,699072129,3563,0 +57893,Wioska+barbarzy%C5%84ska,556,728,699828442,1737,0 +57894,032+-+Budowanko%21,500,740,7540891,4809,0 +57895,P%C3%B3%C5%82nocny+Bagdad,629,303,8847546,6742,0 +57896,Wioska+barbarzy%C5%84ska,727,552,698666810,2516,0 +57897,PPF-33,570,276,1424656,1285,0 +57899,%21Wioska+barbarzy%C5%84ska+3,582,723,8779575,3075,0 +57900,North+K25,561,272,699146580,1844,0 +57901,Wioska+barbarzy%C5%84ska,326,659,0,333,0 +57902,Wioska+brt007,263,487,699131849,172,0 +57903,Wioska+H+Cezar,275,540,7135037,3868,0 +57904,MojeDnoToWaszSzczyt,458,265,9299539,2474,0 +57905,Wioska+lord+zbyszek1960,528,732,8741336,3431,0 +57906,033,722,584,6160655,1388,0 +57907,Wioska+FreestylerWLKW,608,710,6135387,1320,0 +57908,P%C3%B3%C5%82nocny+Bagdad,639,311,8847546,831,0 +57909,xxx1,537,268,7427966,1225,0 +57910,Wioska+665783847,402,711,699339594,5400,0 +57911,093.+Sufetula,728,455,849091866,4135,0 +57912,KWB7,486,734,9003698,4246,0 +57913,P%C3%B3%C5%82nocny+Bagdad,622,305,8847546,7093,0 +57914,Jannapol,333,342,698806018,1430,0 +57915,Wioska+barbarzy%C5%84ska,618,705,699189792,1466,0 +57916,004,574,726,699730998,275,0 +57918,103+koniec+%C5%9Bwiata,615,705,849093426,2119,0 +57919,038%23+Yaka,488,739,3933666,1179,0 +57920,No+to+jedziemy+%3AD,470,736,699333701,2671,4 +57921,Wioska+b+004,420,274,6343784,994,0 +57922,Osada+koczownik%C3%B3w,716,594,2453888,3698,5 +57923,Wioska+barbarzy%C5%84ska,397,711,849014922,1659,0 +57924,New+WorldA,272,532,849084005,795,0 +57925,033+-+Budowanko%21,494,737,7540891,4578,0 +57926,C0324,268,553,8841266,2178,0 +57927,Wioska+barbarzy%C5%84ska,380,300,699308637,1080,0 +57928,%3F%3F%3F%3F,480,272,698489071,2816,0 +57929,Wioska+barbarzy%C5%84ska,730,555,1601917,2371,0 +57930,Wioska+barbarzy%C5%84ska,731,518,698191218,1863,0 +57931,Wioska+barbarzy%C5%84ska,307,377,0,265,0 +57932,%23208+C,507,738,9037756,2266,0 +57933,Wioska+barbarzy%C5%84ska,731,512,698191218,1863,0 +57934,%21Wioska+barbarzy%C5%84ska+1,594,720,8779575,4578,0 +57937,Wioska+Domino00155,736,459,849030062,704,0 +57939,C0321,270,555,8841266,2488,0 +57940,Wioska+barbarzy%C5%84ska,373,694,0,238,0 +57941,091.+Wioska+barbarzy%C5%84ska,730,462,7494497,2897,0 +57942,Wioska+Avgan,329,342,8877462,116,0 +57943,%23127%23,656,682,692803,3237,0 +57944,003+Rohan,523,263,849100383,2695,0 +57945,K67+27,700,619,698867483,2062,0 +57946,Wioska+barbarzy%C5%84ska,317,642,698908184,1826,0 +57947,%3F%3F%3F%3F,460,269,698489071,2816,0 +57948,Wioska+Koza,315,366,849092868,26,0 +57949,%3D%7C44%7C%3D,696,372,9101574,463,0 +57950,Wioska+barbarzy%C5%84ska,303,631,699037086,547,0 +57951,Wioska+barbarzy%C5%84ska,330,657,0,253,0 +57952,PPF-15,523,268,1424656,2414,0 +57953,Dam-Daj,488,270,8062053,1765,0 +57954,Wioska+barbarzy%C5%84ska,318,352,0,347,0 +57955,035Bethlechem,452,727,698620694,3237,0 +57956,Lord+Nc3dyh+6,324,339,699509284,725,0 +57957,Wioska+barbarzy%C5%84ska,346,670,0,313,0 +57958,MojeDnoToWaszSzczyt,503,262,9299539,5585,0 +57959,Avanti%21,268,479,698625834,1640,0 +57960,U-10,643,311,3600737,1941,0 +57961,Wioska+barbarzy%C5%84ska,577,724,849098628,828,0 +57962,%23130%23,663,666,692803,3157,0 +57963,RETURN,725,564,849024152,1156,0 +57964,Wioska,279,586,849086777,327,0 +57965,Wiocha,666,658,849048856,5604,0 +57966,WB12,299,379,356642,3190,0 +57967,%3D%7C41%7C%3D,693,369,9101574,997,0 +57968,Ooo,581,725,849089323,1926,0 +57969,CastAway+%21029,715,599,9314079,3750,0 +57970,Swojak,697,637,8185721,1976,0 +57971,Wioska+barbarzy%C5%84ska,726,424,699628084,6816,6 +57972,TWIERDZA+DAMIK+1,578,277,849093353,4326,0 +57973,Ave+Why%21,510,735,699121671,966,0 +57974,Wioska+robert72,668,664,126954,4870,0 +57975,New+World,436,724,698152377,4961,0 +57976,Wioska+barbarzy%C5%84ska,313,368,699660539,614,0 +57977,New+WorldA,267,540,849084005,764,0 +57978,Wioska+barbarzy%C5%84ska,734,492,6510480,208,0 +57979,Wioska+SirSin+X,481,265,699390457,134,0 +57980,Wioska+barbarzy%C5%84ska,340,332,849101205,45,0 +57981,Wioska+barbarzy%C5%84ska,321,355,0,336,0 +57982,075,665,333,2502956,2562,0 +57983,Wioska+barbarzy%C5%84ska,356,318,3698627,2505,0 +57984,shadow+%233,262,498,1034117,720,0 +57985,Wioska+barbarzy%C5%84ska,716,409,699598425,2663,0 +57986,gosiaczek,725,551,848977412,3510,0 +57987,Wioska+barbarzy%C5%84ska,301,387,0,449,0 +57988,Wioska+Kubaa333,556,276,849068436,676,0 +57989,CastAway+%21038,728,565,9314079,1936,0 +57990,053+-+Budowanko%21,510,739,7540891,3362,0 +57991,KERTO+03,710,604,7474527,510,0 +57993,Wioska+barbarzy%C5%84ska,308,638,2289134,272,0 +57994,Wioska+barbarzy%C5%84ska,266,465,699213622,1015,0 +57995,Wioska+barbarzy%C5%84ska,628,695,6818593,657,0 +57996,Wioska+barbarzy%C5%84ska,396,704,849014922,1705,0 +57997,Wygwizdowa+017,650,680,698562644,344,0 +57998,New+World,425,726,698152377,3784,0 +57999,Lecymy+DUR,346,321,6169408,463,0 +58000,Wioska+barbarzy%C5%84ska,312,371,699660539,1095,0 +58001,7.62+mm,442,393,699777234,1669,0 +58002,214...NORTH,416,282,6920960,2197,0 +58003,Wioska+barbarzy%C5%84ska,326,650,8175236,348,0 +58004,7.62+mm,437,396,699777234,2687,0 +58005,Telimena+3.,306,631,699037086,988,0 +58006,Wioska+barbarzy%C5%84ska,477,739,699656989,1621,0 +58007,Wioska+barbarzy%C5%84ska,545,725,699878511,3272,0 +58008,Wioska+Driata,281,588,699866271,812,0 +58010,MojeDnoToWaszSzczyt,503,270,9299539,5706,0 +58011,078+obrze%C5%BCa,273,559,699510259,1270,0 +58012,Wioska+barbarzy%C5%84ska,658,322,849111332,987,0 +58013,Wioska+barbarzy%C5%84ska,317,345,0,394,0 +58014,London,418,284,699325506,2843,0 +58015,082+obrze%C5%BCa,273,563,699510259,1223,0 +58016,Wioska+barbarzy%C5%84ska,557,730,699828442,1140,0 +58017,027+-+Budowanko%21,483,733,7540891,4809,0 +58018,Wioska+barbarzy%C5%84ska,605,712,699828685,2922,0 +58019,Wioska+barbarzy%C5%84ska,702,393,699598425,1479,0 +58020,Wioska+barbarzy%C5%84ska,564,723,699828442,1184,0 +58021,KWB9.2,457,734,9003698,1450,0 +58022,Dream+on,296,485,698962117,4431,0 +58023,30+barbarzy%C5%84ska,272,434,849018442,2890,0 +58025,010,262,505,698356304,182,0 +58026,Wioska+barbarzy%C5%84ska,507,734,849066849,655,0 +58027,Farma,697,366,699867743,1014,0 +58028,RODZYNEK,270,553,6892517,1137,0 +58029,%23013,547,271,849064614,5205,1 +58030,Wioska+a4,425,282,6343784,1509,0 +58031,K67+10,702,619,698867483,3417,0 +58032,Wioska+barbarzy%C5%84ska,306,615,0,317,0 +58033,New+World,422,723,698152377,4040,0 +58034,PIROTECHNIK+010,337,336,849101083,431,0 +58035,Wioska+barbarzy%C5%84ska,407,281,699393759,919,0 +58036,030,733,493,849091105,7869,4 +58038,Wioska+barbarzy%C5%84ska,529,731,699878511,5094,0 +58039,Bzyk,561,725,699443920,3376,0 +58040,Wioska+barbarzy%C5%84ska,534,733,699878511,5209,0 +58041,K67+30,716,601,698867483,1202,0 +58042,Zzz+11+troch%C4%99+za+daleko,280,579,849084740,741,0 +58043,Wioska+barbarzy%C5%84ska,550,724,8015775,436,0 +58044,001+Drewno,266,527,698353083,5134,1 +58047,New+WorldA,269,541,849084005,1604,7 +58049,Wioska+barbarzy%C5%84ska,727,528,698191218,2194,0 +58051,Wioska+Cheltenham,336,340,849106820,690,0 +58052,Wioska+barbarzy%C5%84ska,282,587,698663855,148,0 +58053,083+obrze%C5%BCa,274,557,699510259,1194,0 +58054,009,283,596,698663855,4094,0 +58056,Wioska+barbarzy%C5%84ska,371,699,849014922,396,0 +58057,006,275,459,699844314,376,0 +58058,Wioska+barbarzy%C5%84ska,364,304,698160606,2680,0 +58059,Wioska+MegaMocny,581,724,8806145,2272,0 +58060,NOT%3F,308,358,9236866,2770,0 +58061,Osada+koczownik%C3%B3w,284,603,849047233,3502,2 +58062,Wioska+Arash1,287,587,3462813,195,0 +58063,budowa+06,613,710,7139820,1098,0 +58064,Wioska+ddd121,523,733,2575842,493,0 +58065,%5B0272%5D,262,500,8630972,3381,0 +58066,234+Asuan,469,498,1497168,6004,0 +58067,051+-+Budowanko%21,513,739,7540891,3706,0 +58068,A02,428,282,849038597,1587,0 +58069,Flap,615,292,699098531,4352,0 +58070,Wioska+sebastianxxx19,346,345,849101018,2979,0 +58071,K67+21,704,620,698867483,2395,0 +58072,Wioska+barbarzy%C5%84ska,295,617,2289134,234,0 +58073,Ave+Why%21,518,739,699121671,749,0 +58074,Kami+5,736,471,849002796,920,0 +58075,Wioska+klez+030,263,531,698295651,1644,1 +58076,Wioska+Yeta,288,402,7259690,1856,0 +58077,Ave+Why%21,525,728,699121671,670,0 +58078,Wioska+barbarzy%C5%84ska,372,306,699191449,710,0 +58079,NOT%3F,311,355,9236866,2431,0 +58080,Wioska+fafex,383,700,108256,471,0 +58081,Lecymy+DUR,345,317,6169408,781,0 +58082,elo,431,272,849085160,650,0 +58083,Nowy+0005,284,604,849096972,571,0 +58084,Wioska+barbarzy%C5%84ska,650,677,848987051,6095,0 +58085,02+Wioska+barbarzy%C5%84ska,725,434,8785003,2230,0 +58086,Wioska+barbarzy%C5%84ska,348,678,0,263,0 +58087,Wioska+barbarzy%C5%84ska,292,617,2289134,444,0 +58088,Wioska+barbarzy%C5%84ska,615,300,699098531,1960,0 +58089,North+051,518,264,849064752,4373,0 +58090,033+KTW,731,443,848883237,1973,0 +58091,K42+ADAMUS+023,279,433,6212605,2597,0 +58092,New+WorldA,274,537,849084005,1200,0 +58093,Wioska+gmaciejwagner,726,551,849114022,891,0 +58094,047+-+Budowanko%21,571,729,7540891,3944,0 +58095,%230221+barbarzy%C5%84ska,663,335,1238300,3001,0 +58096,042.+Wioska+barbarzy%C5%84ska,684,348,2873154,821,0 +58097,Wioska+barbarzy%C5%84ska,669,341,0,1043,0 +58098,Flap,600,283,699098531,3572,0 +58099,-30-,576,719,849032414,3037,1 +58100,C0330,267,549,8841266,2697,0 +58101,Wioska+barbarzy%C5%84ska,322,347,0,484,0 +58102,Wioska+barbarzy%C5%84ska,535,736,699878511,2102,0 +58103,Paris,276,587,2717161,2088,0 +58104,Wioska+barbarzy%C5%84ska,734,505,698191218,1749,0 +58105,O159,314,640,272173,750,0 +58107,%5B0277%5D,264,495,8630972,3923,0 +58108,002,297,614,849100796,4101,0 +58109,North+068,514,262,849064752,5010,0 +58111,Bagno+40,466,736,848883684,2633,0 +58112,Wioska+Artok,289,403,849097477,1519,0 +58113,Wioska+barbarzy%C5%84ska,728,537,698191218,909,0 +58114,Wioska+Moddark,645,678,6670484,26,0 +58115,XDX,611,295,699098531,3498,0 +58116,Wyspa+031,297,565,225023,1272,0 +58117,Wioska+barbarzy%C5%84ska,372,307,698160606,2643,6 +58118,Wioska+barbarzy%C5%84ska,739,513,698191218,625,0 +58119,North+025,511,267,849064752,6887,7 +58120,Wioska+barbarzy%C5%84ska,669,332,699072129,2167,0 +58121,103,737,488,7085502,1989,0 +58122,Wioska+barbarzy%C5%84ska,540,736,0,284,0 +58123,-004-+Wioska+barbarzy%C5%84ska,685,348,849095068,307,0 +58124,Wioska+korek62,338,664,7422002,1451,0 +58125,Wioska+Addamus,306,441,371910,1903,0 +58126,%5B0273%5D,263,491,8630972,3933,0 +58127,Wioska+barbarzy%C5%84ska,674,343,7973893,2676,0 +58128,Polna,415,294,2801913,612,0 +58129,13.+Ford,460,736,849100262,3096,0 +58130,Junak,471,267,849114085,1980,0 +58131,WZ09,702,624,7142659,2069,0 +58132,Piorunek1996+Wie%C5%9B+..3..+PPF-28,524,266,849066618,1418,0 +58133,Wioska+barbarzy%C5%84ska,565,724,699828442,1138,0 +58134,elo,432,271,849085160,975,6 +58136,Wioska+barbarzy%C5%84ska,540,733,699878511,2724,0 +58137,-004-,731,490,7418168,3971,0 +58138,Wioska+Sir+Christopher+Last,629,483,699781390,836,0 +58139,Wioska+barbarzy%C5%84ska,298,621,2289134,408,0 +58140,X.05,729,449,699737356,1638,0 +58141,P%C3%B3%C5%82nocny+Bagdad,623,306,8847546,4019,0 +58142,%5B216%5D,723,423,8000875,884,0 +58143,Kami+3,736,475,849002796,1644,0 +58144,ROBI%C4%98+HETMANA,726,566,849018780,1289,0 +58145,ble,621,700,848909464,4312,0 +58146,Wioska+Geamel,421,725,9282974,26,0 +58147,Na+SsSskraju,276,573,1536625,307,0 +58148,Bunkier,344,676,699805839,363,0 +58149,Zaplecze+Barba+033,356,321,699796330,4177,0 +58150,089.+Wioska+barbarzy%C5%84ska,735,459,7494497,2910,0 +58151,127.Stradi,439,275,698365960,1382,0 +58152,P%C3%B3%C5%82nocny+Bagdad,639,313,8847546,1225,0 +58153,%23001+Chicago,332,664,849101276,2283,0 +58154,Wioska+barbarzy%C5%84ska,728,476,698191218,1089,0 +58155,P%C3%B3%C5%82nocny+Bagdad,630,302,8847546,6463,0 +58156,%5DZachowek%5B,536,737,192947,2431,0 +58157,Wioska+barbarzy%C5%84ska,539,731,699878511,3316,0 +58158,Wioska+skwr85,723,551,849104121,2130,0 +58159,Wioska+barbarzy%C5%84ska,269,505,699425709,252,0 +58160,Na+SsSskraju,276,571,1536625,871,0 +58161,39.,331,668,8665783,749,0 +58162,New+World,435,728,698152377,3110,9 +58163,Wioska+barbarzy%C5%84ska,261,489,0,152,0 +58164,Wioska+gall7,266,471,699598396,754,0 +58165,Maryna+2,268,457,699650981,1863,0 +58166,Sony+911,673,653,1415009,4266,0 +58167,Wioska+barbarzy%C5%84ska,730,443,699347951,540,0 +58168,North+081,487,262,849064752,4289,0 +58170,Wioska+barbarzy%C5%84ska,543,266,849010386,960,0 +58171,Gandalf,680,641,849112504,3131,0 +58172,Wioska+krycha9867,690,361,6995252,278,0 +58173,Wioska+lord+leoni,272,459,8897100,884,0 +58175,Wioska+barbarzy%C5%84ska,732,557,1601917,1936,0 +58176,Zak%C5%82ad,262,474,848977600,2186,2 +58177,Wioska+lukaszking2,271,512,128353,129,0 +58178,Wioska+Lord+%C5%81ukasz1997,512,739,9097545,2138,0 +58179,rohan,293,396,698677650,1505,0 +58180,PPF-44,500,263,1424656,434,0 +58181,Wioska+barbarzy%C5%84ska,381,703,849014922,1379,0 +58182,Elo+Elo+20,280,584,699016994,930,0 +58183,Wioska+barbarzy%C5%84ska,597,718,7589468,1634,0 +58184,Wiocha+7,559,723,849045675,2578,0 +58185,XDX,606,286,699098531,3641,0 +58186,Wioska+Robert+Nowakowski+Jan,429,277,849101396,26,0 +58187,Wioska+barbarzy%C5%84ska,301,380,0,444,0 +58188,Wioska+1,266,510,849114265,8569,0 +58189,MojeDnoToWaszSzczyt,464,268,9299539,2940,0 +58190,Wioska+exim,714,607,699858532,602,0 +58191,Wioska+barbarzy%C5%84ska,729,528,8323711,559,0 +58192,%23401+F,445,723,9037756,1568,0 +58193,Wioska+barbara,419,285,3411571,4205,0 +58194,Wioska+marq135,293,605,699598671,1160,0 +58195,Nowe+Dobra+-+budowa,690,629,699759128,3590,0 +58196,080+obrze%C5%BCa,273,562,699510259,1073,0 +58197,C0322,268,554,8841266,2339,0 +58198,Sony+911,677,658,1415009,2448,0 +58199,Wioska+barbarzy%C5%84ska,272,468,0,1106,0 +58200,Janapola02,333,337,698806018,419,0 +58201,Wioska+barbarzy%C5%84ska,733,548,17714,431,0 +58202,Wioska+barbarzy%C5%84ska,564,730,0,270,0 +58203,089+obrze%C5%BCa,270,563,699510259,703,0 +58204,sony911,691,639,1415009,1323,0 +58205,Avanti%21,265,479,698625834,1299,0 +58206,%23004,308,369,849110743,3776,0 +58207,Wioska+barbarzy%C5%84ska,723,412,6510480,275,0 +58208,Wioska+barbarzy%C5%84ska,592,712,848909464,2402,0 +58209,Wioska+barbarzy%C5%84ska,404,717,849014922,3873,0 +58210,DCS,725,446,699687328,2584,0 +58211,032.+Brauer92,704,376,2873154,4156,5 +58212,Wioska+barbarzy%C5%84ska,739,522,698191218,1748,0 +58213,P%C3%B3%C5%82nocny+Bagdad,625,305,8847546,3939,0 +58214,035.+Gloria+Victis,282,571,848886973,4218,0 +58215,Wioska+przemomam,697,632,9147518,1945,0 +58216,SKUTE+BO+BO,288,603,699774694,1165,0 +58217,Wioska+barbarzy%C5%84ska,579,280,699146580,785,0 +58218,Wioska+barbarzy%C5%84ska,540,735,699878511,4457,0 +58219,%5B001%5D+Wiesz+nie,662,323,699477624,4867,0 +58220,Sony+911,687,646,1415009,4022,0 +58221,Wioska+barbarzy%C5%84ska,345,325,8772425,534,0 +58222,ChceszPokojuSzykujSi%C4%99DoWojny,470,734,699333701,1770,7 +58223,ble,623,700,848909464,3119,0 +58224,095+koniec+%C5%9Bwiata,622,705,849093426,3101,0 +58225,238...North,445,276,6920960,1218,0 +58226,FP047,469,733,699605333,4244,0 +58227,088.+Wioska+barbarzy%C5%84ska,731,471,7494497,2855,0 +58228,C0319,272,522,8841266,2445,0 +58229,Taka.,484,729,848999671,1116,0 +58230,%5B001%5D+Sqaza,269,456,6692351,1381,0 +58231,Wioska+II,313,651,849095948,614,0 +58232,XDX,599,282,699098531,3673,6 +58233,Wioska+barbarzy%C5%84ska,401,719,849014922,1705,0 +58234,%40%40%40%40,264,523,698879638,1130,0 +58235,P%C3%B3%C5%82nocny+Bagdad,609,292,8847546,1857,0 +58236,Wioska+barbarzy%C5%84ska,532,729,699878511,3528,0 +58237,Wioska+barbarzy%C5%84ska,321,656,0,238,0 +58238,Wioska+barbarzy%C5%84ska,662,328,699072129,2754,0 +58239,Wioska+barbarzy%C5%84ska,674,336,699072129,1650,0 +58240,Wioska+barbarzy%C5%84ska,727,543,848946700,1112,0 +58241,Twierdza+%28PRS%29,704,434,0,2693,26 +58242,Wioska+barbarzy%C5%84ska,293,399,0,101,0 +58243,Wioska+barbarzy%C5%84ska,331,663,0,131,0 +58244,0000044Z,267,558,849089881,781,0 +58245,Experience,656,573,848926293,651,0 +58246,PPF-17,517,266,1424656,2190,0 +58247,181+Wioska,494,266,3499467,347,0 +58248,Zaplecze+Barba+049,341,328,699796330,1211,0 +58249,Osada+koczownik%C3%B3w,327,654,8175236,717,2 +58250,Wioska+barbarzy%C5%84ska,718,411,0,2457,0 +58251,Wioska+barbarzy%C5%84ska,315,360,0,272,0 +58252,Ghostmane9,726,455,848896434,571,0 +58253,KONFA+TO+MARKA%2C+NARKA,269,445,698152377,3464,0 +58254,Wioska+Arlosik,514,261,849112960,1453,0 +58256,Miko%C5%82%C3%B3w,681,346,848932879,341,0 +58257,Wz07,706,602,7142659,2566,0 +58258,Wioska+barbarzy%C5%84ska,548,730,699878511,2723,0 +58259,%23142%23,649,676,692803,1357,0 +58260,MojeDnoToWaszSzczyt,506,267,9299539,5522,0 +58261,Osada+koczownik%C3%B3w,655,325,849092309,873,4 +58262,Wioska+AP1997,720,422,9095581,2289,0 +58264,%23025,552,268,849064614,2256,0 +58265,Wioska+barbarzy%C5%84ska,586,346,698200480,939,0 +58266,Osada+koczownik%C3%B3w,302,375,0,272,2 +58267,Wioska+barbarzy%C5%84ska,643,308,3600737,1008,0 +58268,0119,702,377,698416970,718,0 +58269,A%23047,738,469,2065730,5447,6 +58270,Wioska+Ragnarok+76,592,287,849114408,1027,0 +58271,Wioska+barbarzy%C5%84ska,538,737,699878511,2658,0 +58272,Wioska+barbarzy%C5%84ska,328,657,0,259,0 +58273,Wioska+slawekx28,619,708,6766467,255,0 +58274,North+052,514,260,849064752,4423,0 +58276,Wioska+001,731,552,7751626,524,0 +58277,PPF-31,566,277,1424656,1188,0 +58278,Twierdza+%28KOMY%29,386,600,0,6873,32 +58279,Kolonia,384,303,699588526,546,0 +58280,235+Bombaj,483,510,1497168,1987,0 +58281,093+koniec+%C5%9Bwiata,614,701,849093426,2504,0 +58282,Wioska+barbarzy%C5%84ska,367,695,0,391,0 +58283,Wioska+barbarzy%C5%84ska,370,300,849017820,668,0 +58284,X.06,728,438,699737356,1755,0 +58285,Wioska+barbarzy%C5%84ska,424,274,699191455,684,0 +58286,WZ15,688,633,7142659,856,0 +58287,Defini,444,268,699308637,652,0 +58288,Wioska+barbarzy%C5%84ska,375,703,849014922,354,0 +58289,adam1,336,330,6618608,983,0 +58290,o017,625,702,699189792,3671,0 +58291,056,687,355,849091105,328,0 +58292,MojeDnoToWaszSzczyt,478,261,9299539,4347,5 +58295,Zaplecze+Barba+050,346,328,699796330,1559,0 +58297,North+K25,555,272,699146580,2042,0 +58298,C0335,265,528,8841266,1176,0 +58299,009,286,591,698663855,3979,0 +58300,Wioska+Ale+AHMED,319,640,7687862,338,0 +58301,PPF-14,517,271,1424656,2607,0 +58302,WB50,302,367,356642,315,0 +58303,%23028,554,266,849064614,2065,0 +58304,40.,332,666,8665783,830,0 +58305,o019,629,699,699189792,3345,0 +58306,Wioska+barbarzy%C5%84ska,496,733,848999671,979,0 +58307,Taka.,479,736,848999671,1601,0 +58309,%3F%3F%3F%3F,491,264,698489071,5036,0 +58310,Wioska+barbarzy%C5%84ska,459,272,849090573,286,0 +58311,%23141%23,669,669,692803,1369,0 +58312,Wioska+barbarzy%C5%84ska,348,679,0,342,0 +58313,Wioska+barbarzy%C5%84ska,376,702,849014922,382,0 +58314,Wioska+barbarzy%C5%84ska,380,704,849014922,1169,0 +58315,rycho+13,739,495,2819768,1878,0 +58316,Wioska+barbarzy%C5%84ska,738,511,6510480,1031,0 +58317,Wioska+barbarzy%C5%84ska,603,290,699098531,1533,0 +58318,PPF-18,525,270,1424656,1998,0 +58319,Wioska+barbarzy%C5%84ska,314,649,2289134,295,0 +58320,P%C3%B3%C5%82nocny+Bagdad,610,287,8847546,2049,0 +58321,Wioska+barbarzy%C5%84ska,424,272,699191449,572,0 +58322,Wioska+barbarzy%C5%84ska,366,312,0,27,0 +58323,Wioska+barbarzy%C5%84ska,733,468,699524891,1968,0 +58324,C0356,268,516,8841266,393,0 +58325,A10,715,586,3692413,857,0 +58326,Wioska+barbarzy%C5%84ska,689,358,848915730,881,0 +58327,North+K25,566,278,699146580,1493,0 +58328,BIMBER+4,441,278,6857973,941,0 +58330,K67+14,702,623,698867483,3558,0 +58332,%23209+C,516,730,9037756,1289,0 +58333,Kapitol_29,510,729,606407,1195,7 +58334,Wioska+barbarzy%C5%84ska,314,636,2289134,255,0 +58335,Wioska+barbarzy%C5%84ska,638,684,848987051,4242,0 +58336,Wioska+barbarzy%C5%84ska,653,676,848987051,3344,0 +58337,Wioska+barbarzy%C5%84ska,320,356,0,357,0 +58338,Wioska+barbarzy%C5%84ska,725,422,699628084,571,0 +58339,Wioska+barbarzy%C5%84ska,736,538,17714,787,0 +58340,Wioska+barbarzy%C5%84ska,383,703,0,533,0 +58341,Flap,598,286,699098531,3895,0 +58342,Wioska+CrazyJack,599,281,699835178,191,0 +58344,U-11,647,310,3600737,2157,0 +58346,Bar,668,662,849048856,3873,0 +58347,New+WorldA,276,545,849084005,727,0 +58348,0-16,696,360,3600737,1704,0 +58349,pinek+222,289,592,849103947,207,0 +58350,Alamo5,719,569,2723244,1513,0 +58351,28+barbarzy%C5%84ska,271,437,849018442,2758,0 +58352,Wioska+Zoso2000o,277,413,3639628,2198,0 +58353,Wioska+009,732,503,2999957,2600,0 +58354,04+Wioska+barbarzy%C5%84ska,725,435,8785003,945,0 +58355,37barbarzy%C5%84ska+2B,273,431,849018442,2347,0 +58357,Wioska+barbarzy%C5%84ska,348,326,8772425,607,0 +58358,128.Stradi,395,295,698365960,2679,0 +58359,Wioska+Wieslaw+5,512,270,699794421,1282,0 +58360,Wioska+barbarzy%C5%84ska,531,728,699878511,2612,0 +58361,Wioska+semunus,319,353,699776412,26,0 +58362,002,276,585,699730998,478,0 +58363,Wioska+barbarzy%C5%84ska,406,713,849014922,640,0 +58364,Taka.,482,735,848999671,1543,0 +58365,Wioska+Ksi%C4%99%C5%BCnaAnna,378,302,699491827,743,0 +58366,138.Stradi,401,293,698365960,1091,0 +58367,godziwa,268,476,1095271,2022,0 +58368,Wioska+barbarzy%C5%84ska,382,700,849014922,568,0 +58369,Wioska+barbarzy%C5%84ska,452,272,699308637,528,0 +58370,New+World,420,724,698152377,3684,0 +58371,Osada+koczownik%C3%B3w,622,696,698353083,990,8 +58372,043.+Mercel,681,344,2873154,577,0 +58374,Sony+911,672,659,1415009,3537,0 +58375,Wioska+KRIS+74+PL,298,377,9029627,26,0 +58376,Wioska+barbarzy%C5%84ska,702,380,698702991,1405,0 +58378,Wioska+barbarzy%C5%84ska,523,736,699878511,3352,0 +58379,FENIX,389,296,9016464,3572,0 +58380,adam2,337,327,6618608,747,0 +58381,Wioska+robosm3352,267,516,1684948,108,0 +58382,Elo+Elo+19,279,584,699016994,1173,0 +58383,akuku,549,730,6425087,5196,0 +58384,New+WorldA,267,530,849084005,1044,0 +58386,098+koniec+%C5%9Bwiata,626,702,849093426,2176,0 +58387,%2B01,397,291,699741694,1739,0 +58388,Wioska+barbarzy%C5%84ska,675,341,699072129,1589,0 +58389,Osada+koczownik%C3%B3w,530,263,699799629,2168,9 +58390,Wioska+Banan123,565,270,849112887,1214,0 +58391,%5BJ%5Desiotr,275,546,849106971,511,0 +58392,Wioska+barbarzy%C5%84ska,471,733,848999671,392,0 +58393,WB49,303,365,356642,514,0 +58394,Wioska+barbarzy%C5%84ska,429,271,699191464,782,0 +58395,Wioska+barbarzy%C5%84ska,377,306,698160606,2482,0 +58396,Wioska+jaworbog,712,392,2256843,758,0 +58397,Wioska+b+005,404,292,6343784,962,0 +58398,KONFA+TO+MARKA%2C+NARKA,275,430,698152377,2136,0 +58399,%5B0242%5D,268,495,8630972,3924,0 +58400,Piek%C5%82o+to+inni,655,323,848956765,1798,0 +58401,Bunkier,343,675,699805839,356,0 +58402,Wioska+barbarzy%C5%84ska,306,640,2289134,240,0 +58403,6.+Meleys,273,578,849089499,693,0 +58404,Wioska+barbarzy%C5%84ska,314,635,2289134,249,0 +58405,0-17,644,308,3600737,1524,0 +58406,Wioska+barbarzy%C5%84ska,712,411,8459255,3489,0 +58407,Wioska+barbarzy%C5%84ska,405,290,698231772,1735,0 +58408,Wioska+barbarzy%C5%84ska,281,598,699396429,458,0 +58409,North+096,487,261,849064752,4373,0 +58410,Wioska+barbarzy%C5%84ska,298,610,0,425,0 +58411,%23045,552,272,849064614,541,0 +58412,Wioska+barbarzy%C5%84ska,264,543,699065686,133,0 +58413,A03,425,283,849038597,2214,0 +58414,Wioska+barbarzy%C5%84ska,706,397,699598425,2867,0 +58415,099.+Wioska+barbarzy%C5%84ska,728,465,7494497,2049,0 +58416,099+Wioska+barbarzy%C5%84ska,541,269,699854484,4367,0 +58417,Wioska+robertos1,597,287,699148121,1675,0 +58418,%23400+F,446,723,9037756,2162,0 +58419,041,709,405,849091105,1221,0 +58420,Wioska+barbarzy%C5%84ska,638,690,848987051,4668,0 +58421,%230255+barbarzy%C5%84ska,442,276,1238300,823,0 +58422,CastAway+%21027,716,592,9314079,4081,0 +58423,Wioska+barbarzy%C5%84ska,357,307,3484132,2395,0 +58424,%230084,582,718,1536231,2400,0 +58425,Wioska+Sir+zombi,684,637,848964811,821,0 +58426,41+barbarzy%C5%84ska+3B,272,442,849018442,2108,0 +58427,%23133%23,673,667,692803,2207,0 +58428,New+World,425,723,698152377,3385,0 +58429,181.01,329,347,7221139,5283,0 +58430,Wioska+barbarzy%C5%84ska,728,453,699347951,766,0 +58431,054,739,526,849091105,157,0 +58432,Wioska+barbarzy%C5%84ska,326,656,0,358,0 +58433,Wioska+sasa,531,615,2613743,4708,0 +58434,%23143%23,668,671,692803,1358,0 +58435,%C5%9Aw181%2A007,666,341,959179,780,0 +58436,Wioska+barbarzy%C5%84ska,267,509,1227918,260,0 +58437,Wioska+barbarzy%C5%84ska,656,320,698895940,1201,0 +58438,Wioska+barbarzy%C5%84ska,408,714,0,1452,0 +58439,Wioska+barbarzy%C5%84ska,527,266,699799629,1690,0 +58440,Wioska+barbarzy%C5%84ska,579,273,699146580,592,0 +58442,Wioska+barbarzy%C5%84ska,621,293,849037469,2954,0 +58443,065KP,472,266,849063849,915,0 +58444,X.08,727,451,699737356,1161,0 +58446,%23046,550,270,849064614,958,0 +58447,003.+Czysta,454,274,602408,2658,0 +58448,Wioska+BiiLii,265,468,849110726,162,0 +58449,Wioska+malwina1,326,651,9053254,1069,0 +58450,025,709,595,6160655,1279,0 +58452,0116,708,384,698416970,1337,0 +58453,NOT%3F,310,353,9236866,3693,7 +58454,Wioska+Ar%C4%85Staro,389,288,848935732,2145,0 +58455,Wioska+barbarzy%C5%84ska,379,293,698160606,2293,0 +58456,North+K25,537,272,699146580,1466,0 +58457,Wioska+barbarzy%C5%84ska,365,303,698160606,2667,0 +58458,Wioska+barbarzy%C5%84ska,647,689,848987051,3481,0 +58459,Wioska+barbarzy%C5%84ska,299,610,0,378,0 +58460,013,401,286,699694284,4388,2 +58461,085+obrze%C5%BCa,274,564,699510259,1037,0 +58462,Wioska+barbarzy%C5%84ska,731,551,1601917,2171,0 +58463,04Osada+koczownik%C3%B3w,356,683,699704542,5857,2 +58465,Wioska+barbarzy%C5%84ska,673,342,7973893,1329,0 +58466,Wioska+barbarzy%C5%84ska,325,336,0,95,0 +58467,Wioska+barbarzy%C5%84ska,339,333,0,247,0 +58468,Zaplecze+Barba+034,363,316,699796330,2856,0 +58469,Wioska+barbarzy%C5%84ska,365,688,0,178,0 +58470,KONFA+TO+MARKA%2C+NARKA,275,423,698152377,2129,0 +58471,Wioska+barbarzy%C5%84ska,644,681,848987051,4936,0 +58472,Zb%C4%85szynek,676,658,7520280,4207,0 +58473,%5B215%5D,722,423,8000875,861,0 +58474,Katowice,677,343,848932879,774,0 +58475,Wioska+Monczi29i,677,662,849114477,198,0 +58476,Wioska+barbarzy%C5%84ska,733,517,698191218,2000,0 +58477,Wioska+barbarzy%C5%84ska,317,348,0,172,0 +58478,Za+dolinami,283,412,699821629,1703,0 +58480,KONFA+TO+MARKA%2C+NARKA,286,397,698152377,1529,0 +58481,046,717,403,849091105,601,0 +58482,twoja+stara,719,416,9095581,828,0 +58483,Wioska+barbarzy%C5%84sko,604,713,7756002,1691,0 +58484,Wioska+barbarzy%C5%84ska,355,315,3698627,2107,0 +58485,46+barbarzy%C5%84ska,271,452,849018442,1004,0 +58486,Wioska+barbarzy%C5%84ska,352,687,0,318,0 +58487,P%C3%B3%C5%82+2,438,277,849096310,535,0 +58488,C0306,275,549,8841266,3365,0 +58490,WZ10,713,609,7142659,1899,0 +58491,Wioska+barbarzy%C5%84ska,264,535,1095489,358,0 +58492,%23144%23,650,674,692803,1124,0 +58493,North+059,513,266,849064752,5438,0 +58494,o024,626,700,699189792,2188,0 +58495,Flap,599,289,699098531,3425,0 +58496,Wioska+perfekcja,653,684,1286008,4000,0 +58497,067KP,464,274,849063849,791,0 +58498,Wioska+barbarzy%C5%84ska,633,307,0,118,0 +58499,Wioska+barbarzy%C5%84ska,612,704,699828685,1574,0 +58500,Wiriatus+BD84,366,686,9021037,2004,0 +58501,Osada+koczownik%C3%B3w,577,720,7581876,1880,4 +58502,Wioska+barbarzy%C5%84ska,544,727,699878511,2168,0 +58503,Wioska+barbarzy%C5%84ska,602,293,699098531,1357,0 +58504,Wioska+barbarzy%C5%84ska,732,444,849095435,508,0 +58505,North+K25,554,267,699146580,1491,0 +58506,Wioska+barbarzy%C5%84ska,314,652,6892517,320,0 +58507,Osada+koczownik%C3%B3w,690,362,609384,1138,3 +58508,%23139%23,671,665,692803,1358,0 +58510,Wioska+barbarzy%C5%84ska,295,623,2289134,610,0 +58511,Wioska+barbarzy%C5%84ska,651,680,848987051,3481,0 +58512,%7CD%7C+IS,455,725,698147372,1771,0 +58513,Wioska+czarekpol,725,417,849103644,99,0 +58514,Morelowy+Sad,444,729,7526090,1054,0 +58515,090.+Wioska+barbarzy%C5%84ska,736,462,7494497,2708,0 +58516,Wioska+Sir+dziadekk19,724,432,849032027,786,0 +58517,%23029,555,268,849064614,2099,0 +58518,Wioska+Nadav,553,728,849083534,2088,0 +58519,Wioska+klez+031,284,606,698295651,482,0 +58520,38+barbarzy%C5%84ska+2A,269,444,849018442,1630,0 +58521,Wioska+barbarzy%C5%84ska,680,341,699072129,1381,0 +58522,61+barbarzy%C5%84ska,271,440,849018442,685,0 +58523,Wioska+barbarzy%C5%84ska,733,557,1601917,816,0 +58524,Wioska+oisaj-org,358,683,7067846,26,0 +58525,034,729,564,6160655,642,0 +58526,bandzior,506,737,606407,4428,0 +58527,Wioska+barbarzy%C5%84ska,740,487,698191218,1021,0 +58528,Wioska+siedlik12345,419,722,849098477,1418,0 +58529,043.xxx,521,736,8612358,1096,0 +58531,Wioska+barbarzy%C5%84ska,321,649,0,337,0 +58532,Wioska+barbarzy%C5%84ska,337,668,0,251,0 +58533,Wioska+barbarzy%C5%84ska,385,701,849014922,1472,0 +58534,Wioska+barbarzy%C5%84ska,735,551,1601917,1193,0 +58535,Wioska+barbarzy%C5%84ska,602,292,699098531,1165,0 +58536,0000046Z,270,568,849089881,539,0 +58537,Wioska+barbarzy%C5%84ska,484,737,848999671,680,0 +58538,bla+bla,260,511,849091084,625,0 +58539,Wioska+game777,689,632,849071883,94,0 +58540,KONFA+TO+MARKA%2C+NARKA,274,418,698152377,2245,0 +58541,Wioska+bbbarteqqq,389,289,699589540,324,0 +58542,%5B0243%5D,268,498,8630972,4180,0 +58543,Wioska+Sessue,739,493,699099385,43,0 +58544,Wioska+barbarzy%C5%84ska,733,555,1601917,951,0 +58545,050+-+Budowanko%21,510,736,7540891,3330,0 +58546,Wioska+barbarzy%C5%84ska,280,598,0,183,0 +58547,Gruszczyn,499,263,849115431,717,0 +58548,Wioska+Kross+x+Smerf,545,270,9280679,26,0 +58549,034.+Charfa,693,368,2873154,2740,0 +58550,Wioska+barbarzy%C5%84ska,729,534,17714,570,0 +58551,Wioska+barbarzy%C5%84ska,662,671,0,638,0 +58552,Wioska+barbarzy%C5%84ska,548,732,699878511,3376,0 +58553,Wioska+barbarzy%C5%84ska,685,638,1415009,163,0 +58554,Wioska+barbarzy%C5%84ska,302,635,2289134,490,0 +58555,ONR+1,657,318,9090040,5364,0 +58556,XDX,616,298,699098531,3490,0 +58557,%23147%23,662,669,692803,1125,0 +58558,Wioska+barbarzy%C5%84ska,563,268,699146580,994,0 +58559,0002,556,396,7271812,3037,0 +58560,%C5%81OPALENICA,628,306,848922958,210,0 +58561,Wioska+barbarzy%C5%84ska,274,584,849097937,1340,0 +58563,Kapitol_23,508,730,606407,1044,5 +58564,North+K25,568,273,699146580,1491,0 +58565,Wioska+barbarzy%C5%84ska,359,691,0,239,0 +58566,CSA+forever,593,282,699448276,2490,0 +58567,29+barbarzy%C5%84ska,270,437,849018442,2465,0 +58568,Osada+koczownik%C3%B3w,400,719,849014922,4695,8 +58569,flagi,365,687,603968,2114,0 +58570,051.+5spajk5,679,351,2873154,329,0 +58572,021+Z,735,495,699718269,1800,6 +58574,0117,704,379,698416970,1013,0 +58576,Wioska+barbarzy%C5%84ska,274,574,1536625,426,0 +58577,Avanti%21,265,481,698625834,1347,0 +58578,0x01,576,656,439825,1641,0 +58579,Wioska+robsona,294,616,3896657,3159,0 +58580,New+World,431,728,698152377,3494,0 +58581,Gwenville+015,453,265,848986638,679,0 +58582,Wioska+AndrewwXYZ,561,730,698897472,1310,0 +58583,Wioska+barbarzy%C5%84ska,729,428,699628084,716,0 +58584,Wioska+barbarzy%C5%84ska,302,627,2289134,522,0 +58585,021+%7C+North,375,693,699511295,1373,0 +58586,Wioska+114,685,645,848971079,1976,0 +58587,Wioska+barbarzy%C5%84ska,378,297,849017820,665,0 +58588,Wioska+barbarzy%C5%84ska,313,360,0,153,0 +58589,C.063,730,479,9188016,1055,0 +58590,Wioska+pit71,267,534,6395848,3598,0 +58591,Wioska+barbarzy%C5%84ska,339,667,0,375,0 +58592,rt27+o,497,733,698623373,1262,0 +58593,124,730,451,849088515,3796,0 +58594,028,460,728,8268010,1304,0 +58595,5.+Seasmoke,276,581,849089499,963,0 +58597,..1,690,363,698420691,5553,0 +58598,Wioska+barbarzy%C5%84ska,269,502,0,26,0 +58599,FP055,450,727,699605333,2863,0 +58600,North+097,491,268,849064752,3757,0 +58601,Wioska+blatio,731,569,699518454,3307,0 +58602,%3F%3F%3F%3F,462,272,698489071,3788,0 +58603,Zaplecze+Barba+045,353,313,699796330,1410,0 +58604,Wioska+barbarzy%C5%84ska,531,738,699878511,3314,0 +58605,Wioska+barbarzy%C5%84ska,702,391,699598425,2138,0 +58606,Wioska+barbarzy%C5%84ska,352,676,0,372,0 +58607,TOLCIA+6,644,319,699868739,107,0 +58608,XDX,606,292,699098531,3304,0 +58609,North+K25,577,279,699146580,1406,0 +58610,Wioska+Unknown,514,739,9124682,150,0 +58611,109+Wioska+barbarzy%C5%84ska,587,280,699854484,926,0 +58613,KONFA+TO+MARKA%2C+NARKA,277,423,698152377,4457,5 +58614,Wioska+KiepLach,741,505,699705910,26,0 +58615,109.+Rollayna,694,628,8337151,2445,0 +58616,%23150%23,644,690,692803,1070,0 +58617,Wioska+barbarzy%C5%84ska,561,724,699828442,1138,0 +58618,North+102,477,262,849064752,2598,0 +58619,Zarezerwowana.,723,416,8478874,5917,0 +58621,%23136%23,665,668,692803,2031,0 +58622,Monkey,305,361,699803939,960,0 +58623,Wioska+barbarzy%C5%84ska,739,506,6510480,877,0 +58625,%3D128%3D+Wioska+barbarzy%C5%84ska,727,569,3781794,1018,0 +58626,K67+39,700,618,698867483,344,0 +58627,Wioska+barbarzy%C5%84ska,667,338,699072129,3412,0 +58628,FP053,438,732,699605333,2646,0 +58629,Wioska+barbarzy%C5%84ska,731,565,7528491,775,0 +58630,Jelenia+G%C3%B3ra,674,655,848932879,2844,3 +58631,Wioska+20,731,568,2999957,1318,0 +58632,Wioska+b+006,403,288,6343784,610,0 +58633,Osada+koczownik%C3%B3w,728,557,698666810,5522,1 +58634,Wioska+Seylito,342,332,699283869,2030,0 +58635,33+barbarzy%C5%84ska+A,268,449,849018442,2591,0 +58636,025.+Osada+koczownik%C3%B3w,690,354,2873154,4172,4 +58637,Wioska+Firau,381,295,849105613,577,0 +58638,Wioska+barbarzy%C5%84ska,315,639,2289134,268,0 +58639,Wioska+mirmyn,276,436,698190039,1385,0 +58640,Wioska+barbarzy%C5%84ska,377,707,849014922,2511,0 +58641,Wioska+GeraltV47,710,613,699850967,384,0 +58642,Wioska+barbarzy%C5%84ska,267,502,8630972,259,0 +58644,C0325,265,518,8841266,2174,0 +58645,Bessa+018,651,683,848987051,6095,9 +58647,North+082,514,270,849064752,3394,0 +58648,Wioska+barbarzy%C5%84ska,727,578,2453888,2776,0 +58651,Zadaleko,281,412,699821629,1429,0 +58652,Wioska+WiktorTraktor,736,469,849095430,4279,0 +58653,Wioska+barbarzy%C5%84ska,729,543,8323711,514,0 +58654,K67+31,717,604,698867483,1387,0 +58655,sony911,688,644,1415009,1318,0 +58656,Wioska+falat030,633,700,698542183,59,0 +58657,%23210+C,507,737,9037756,1221,0 +58658,Wioska+Lord+lukis2012,306,639,698931404,1734,0 +58659,K67+19,716,605,698867483,2036,0 +58660,elo,434,275,849085160,263,0 +58661,Wioska+barbarzy%C5%84ska,626,704,699372829,214,0 +58662,Wioska+Paveulon,734,463,849075298,1279,0 +58663,Piek%C5%82o+to+inni,656,322,848956765,1095,0 +58664,Wioska+KOMANDOR+PIERWSZY,384,711,796977,508,0 +58665,83Krzysiek83,564,278,849072703,899,0 +58666,%230262+colt9,433,277,1238300,774,0 +58667,212...NORTH,420,276,6920960,2455,0 +58668,Wioska+Terada,525,739,849052488,358,0 +58669,MojeDnoToWaszSzczyt,479,267,9299539,4111,0 +58670,A%23044,728,469,2065730,6618,5 +58671,123.Stradi,448,273,698365960,1849,0 +58672,North+060,512,260,849064752,4562,0 +58673,Wioska+Szujski+Mastess+Team,721,406,3487933,429,0 +58674,KONFA+TO+MARKA%2C+NARKA,274,435,698152377,3632,0 +58675,Wioska+barbarzy%C5%84ska,567,720,0,41,0 +58676,C0323,267,523,8841266,2337,0 +58678,Wioska+barbarzy%C5%84ska,740,507,6510480,1031,0 +58681,Za+g%C3%B3rami,282,412,699821629,3092,0 +58682,Sony+911,686,652,1415009,573,0 +58683,Wioska+barbarzy%C5%84ska,692,357,3600737,1029,0 +58685,Wioska+barbarzy%C5%84ska,376,385,0,295,0 +58686,Wioska+barbarzy%C5%84ska,392,296,699393759,811,0 +58688,%3F%3F%3F%3F,488,264,698489071,4410,0 +58689,Wioska+E+W+A,535,267,3743817,66,0 +58690,K67+47,711,606,698867483,207,0 +58691,Wioska+barbarzy%C5%84ska,648,683,848987051,5030,0 +58692,LordFallus,691,637,849112876,188,0 +58693,Wioska+barbarzy%C5%84ska,715,582,7528491,1086,0 +58694,Sony+911,684,643,1415009,1530,0 +58695,budowa+02,601,714,7139820,1515,0 +58696,Wioska+barbarzy%C5%84ska,681,358,7973893,1726,0 +58697,Sony+911,670,667,1415009,772,0 +58698,45.,335,665,8665783,508,0 +58699,Wioska+barbarzy%C5%84ska,731,555,1601917,441,0 +58700,029,714,590,6160655,1441,0 +58702,Wioska+barbarzy%C5%84ska,370,697,0,182,0 +58703,Wioska+Stadar,727,564,698203538,26,0 +58704,053,689,351,849091105,440,0 +58705,%3F%3F%3F%3F,285,599,699774694,624,0 +58706,Wioska+Rafi43,682,355,849099141,580,0 +58707,100+koniec+%C5%9Bwiata,625,703,849093426,1005,0 +58708,adi+judo+honor,333,658,699163285,26,0 +58709,239...North,435,274,6920960,1386,0 +58710,Wioska+barbarzy%C5%84ska,408,280,699308637,748,0 +58711,Wioska+barbarzy%C5%84ska,554,734,699828442,925,0 +58712,Wyspa+028,279,577,225023,801,0 +58713,057-+Mroczna+Osada,702,378,849035905,1644,0 +58714,KONFA+TO+MARKA%2C+NARKA,271,458,698152377,2232,0 +58715,Wioska+Pirdek999,732,540,849103156,2709,0 +58716,Wioska+barbarzy%C5%84ska,676,651,1415009,2844,0 +58717,%23048,559,272,849064614,787,0 +58718,Wioska+barbarzy%C5%84ska,285,606,0,292,0 +58719,D%C5%BCejd%C5%BCej+8,690,639,849098326,357,0 +58720,Wioska+barbarzy%C5%84ska,709,382,699574408,1409,0 +58721,Wioska+barbarzy%C5%84ska,534,732,699878511,242,0 +58722,PPF-37,580,276,1424656,902,0 +58723,LONGOBARDIA,644,680,699711996,390,0 +58724,%3F%3F%3F%3F,460,271,698489071,3693,0 +58725,Osada+koczownik%C3%B3w,312,635,8877156,4385,9 +58726,Wioska+barbarzy%C5%84ska,342,672,0,104,0 +58727,222...NORTH,408,285,6920960,1729,0 +58728,033,463,733,8268010,975,0 +58729,059,688,637,699099811,387,0 +58730,310,375,294,7271812,1677,0 +58731,Wioska+CorAngar96,318,348,849115256,44,0 +58732,North+069,533,268,849064752,4330,0 +58733,Wioska+Struma1,298,623,849115994,212,0 +58734,New+World,425,727,698152377,3684,0 +58735,Wioska+Afterparty,285,581,699598764,1144,0 +58736,Wioska+barbarzy%C5%84ska,639,686,848987051,4491,0 +58737,Wioska+M+A+S+S+A+C+R+E,730,545,848914661,26,0 +58738,K67+18,701,631,698867483,2185,0 +58739,Wioska+011,734,519,2999957,1983,0 +58740,Na+SsSskraju,273,571,1536625,297,0 +58741,Wioska+daria519,376,700,699831193,1611,0 +58742,Wioska+barbarzy%C5%84ska,725,437,699524891,3330,0 +58743,Wioska+dixon15pl,645,307,849086132,149,0 +58744,Gniezno,448,269,699278528,1446,0 +58745,Wioska+Tohsaka+Rin,648,323,9114562,394,0 +58746,-13.+Koniec+%C5%9Bwiata,316,359,698345556,1155,6 +58747,Wioska+SkyForce2,364,686,849099138,2522,0 +58748,%23003,304,379,849110743,1820,0 +58749,budowa+01,600,719,7139820,2238,1 +58750,KONFA+TO+MARKA%2C+NARKA,274,416,698152377,2142,0 +58752,P%C3%B3%C5%82nocny+Bagdad,624,304,8847546,2221,0 +58753,0000041Z,279,567,849089881,2072,0 +58754,041+KTW,725,443,848883237,995,0 +58755,Wioska+barbarzy%C5%84ska,650,316,698895940,854,0 +58756,092.+Wioska+barbarzy%C5%84ska,737,461,7494497,2775,0 +58757,Wioska+Mateuszek0330,267,465,849079977,192,0 +58758,New+World,418,720,698152377,3842,0 +58759,zakr%C4%99cona,578,725,6658016,2006,0 +58760,032+KTW,725,444,848883237,1689,0 +58761,Wioska+barbarzy%C5%84ska,731,556,1601917,698,0 +58762,Wioska+barbarzy%C5%84ska,728,552,698666810,2192,0 +58763,Bor%C3%B3w,272,463,849116221,4368,0 +58764,No.4,328,337,849106612,506,0 +58765,001,690,645,1609607,642,0 +58766,Wioska+katarzyna2012,609,289,698931998,1898,0 +58767,FP050,446,732,699605333,2609,2 +58768,Poznan+004,408,282,1924718,443,0 +58769,Osada+koczownik%C3%B3w,534,731,699878511,3066,1 +58770,New+WorldA,274,543,849084005,666,0 +58771,elo,432,274,849085160,621,0 +58773,Wioska+barbarzy%C5%84ska,551,731,699878511,892,0 +58774,Wioska+barbarzy%C5%84ska,573,730,849098628,680,0 +58775,WB36,289,385,356642,1190,0 +58776,Osada+koczownik%C3%B3w,464,733,849037407,781,5 +58778,0111,710,386,698416970,918,0 +58779,Wioska+barbarzy%C5%84ska,411,531,699425709,1435,0 +58780,Wioska+barbarzy%C5%84ska,733,475,699347951,539,0 +58781,029,473,740,8268010,1311,0 +58782,New+World,406,711,698152377,3619,0 +58783,Wioska+barbarzy%C5%84ska,430,728,698152377,1247,0 +58784,051.+Cukiereczek,451,736,848928624,384,0 +58785,Wioska+barbarzy%C5%84ska,399,707,849014922,1340,0 +58786,MojeDnoToWaszSzczyt,478,266,9299539,4194,0 +58788,New+World,422,721,698152377,2271,0 +58789,Wioska+barbarzy%C5%84ska,586,721,849098628,1072,0 +58790,MojeDnoToWaszSzczyt,473,261,9299539,4110,5 +58791,Wioska+barbarzy%C5%84ska,553,733,699878511,261,0 +58792,Wioska+b+007,416,280,6343784,967,0 +58793,Wioska+wabos,684,357,698485268,128,0 +58794,Wioska+1,652,686,849114445,1859,0 +58795,015,397,285,699694284,3365,0 +58796,bystra+rzeka,292,396,698677650,433,0 +58797,Wioska+barbarzy%C5%84ska,648,684,848987051,3344,0 +58798,Etitek+7,730,495,848999448,1438,0 +58799,241,374,297,7271812,1620,0 +58800,P%C3%B3%C5%82nocny+Bagdad,614,291,8847546,2325,0 +58801,WB38,294,385,356642,970,0 +58802,Wioska+barbarzy%C5%84ska,664,323,699072129,1928,0 +58803,XDX,599,291,699098531,3331,6 +58804,Lecymy+DUR,350,318,6169408,2209,0 +58805,budowa+03,600,713,7139820,1515,0 +58806,Wioska+Loca,741,506,848927262,54,0 +58808,32+barbarzy%C5%84ska,266,447,849018442,2382,0 +58809,026.+Osada+koczownik%C3%B3w,699,385,2873154,4212,4 +58810,Wioska+znek8,670,663,7866994,1015,0 +58811,Wioska+pierszak,367,693,6379173,574,0 +58812,Wioska+Szymkowiak,370,304,849100089,26,0 +58813,Wioska+barbarzy%C5%84ska,658,320,699072129,1989,0 +58814,Wioska+natofp,733,489,849116251,101,0 +58815,WB28,297,371,356642,1656,0 +58817,Wioska+Bicoss,712,400,699609445,887,0 +58818,hope,439,269,849099965,3015,0 +58819,030,464,735,8268010,1153,0 +58820,Wioska+barbarzy%C5%84ska,662,329,699072129,2255,0 +58821,Wioska+barbarzy%C5%84ska,415,286,3411571,2103,0 +58822,New+WorldA,264,550,849084005,725,0 +58823,Wioska+barbarzy%C5%84ska,726,446,6510480,232,0 +58824,Wioska+barbarzy%C5%84ska,342,317,3698627,1854,0 +58825,Wioska+barbarzy%C5%84ska,564,725,0,38,0 +58826,0121,707,376,698416970,648,0 +58827,Wioska+prezes+naczelny,393,711,698696420,3644,0 +58828,Wioska+AjuZGora,680,648,699696740,210,0 +58829,047.+Wioska+barbarzy%C5%84ska,688,355,2873154,157,0 +58830,Wioska+barbarzy%C5%84ska,372,700,849014922,537,0 +58831,Wioska+rafaltz,282,578,849116416,250,0 +58832,C0333,261,515,8841266,1243,0 +58834,Wioska+barbarzy%C5%84ska,350,312,3698627,1868,0 +58835,Wioska+barbarzy%C5%84ska,607,296,699098531,1167,0 +58836,0118,706,376,698416970,576,0 +58837,KONFA+TO+MARKA%2C+NARKA,284,403,698152377,1740,7 +58838,Wioska+LO%C5%81KICK,543,733,849004461,1908,0 +58839,Wioska+barbarzy%C5%84ska,341,320,0,283,0 +58840,Wioska+barbarzy%C5%84ska,586,719,849098628,260,0 +58841,MojeDnoToWaszSzczyt,492,261,9299539,3696,0 +58842,Wioska+VillaSHL,615,293,849116310,2427,0 +58843,Wioska+b+1,260,508,1164249,1416,0 +58844,135.Stradi,445,272,698365960,755,0 +58845,Gwenville+012,454,264,848986638,1415,0 +58846,New+World,434,721,698152377,724,0 +58847,139.Stradi,398,293,698365960,1187,0 +58848,Pan+Kebab,268,512,849105417,486,5 +58849,Wioska+izka1611,698,631,2232973,260,0 +58850,%2A002%2A,275,432,699791054,237,0 +58851,Wioska+barbarzy%C5%84ska,301,370,699870267,351,0 +58852,North+091,487,267,849064752,2901,0 +58853,Wioska+barbarzy%C5%84ska,592,719,7589468,601,0 +58854,Wioska+barbarzy%C5%84ska,309,369,0,130,0 +58855,Wioska+barbarzy%C5%84ska,736,537,698191218,1748,0 +58856,K66+Drewno,699,627,698867483,2235,1 +58858,Wioska+barbarzy%C5%84ska,297,630,2289134,379,0 +58859,Crazy+Pig,725,567,848932879,714,0 +58860,Wioska+barbarzy%C5%84ska,704,391,699598425,2220,0 +58861,%23169%23,642,689,692803,411,0 +58862,028Kawik,466,731,698620694,4221,0 +58863,0134,702,376,698416970,607,0 +58864,samotna+skala,288,393,698677650,341,0 +58866,044+KTW,733,452,848883237,623,0 +58867,Wioska+barbarzy%C5%84ska,525,263,3027589,550,0 +58868,jeszcze+dalej,731,431,849095435,1811,0 +58869,040+-+Albacete,727,416,698342159,956,0 +58870,Wioska+Jozin321,589,720,849116287,234,0 +58871,Wioska+barbarzy%C5%84ska,367,700,849014922,433,0 +58872,Wioska+barbarzy%C5%84ska,629,700,6818593,588,0 +58873,Zasiedmiogorogrodzie+004,691,366,698278542,1359,0 +58874,Osada+koczownik%C3%B3w,593,277,849100406,3777,5 +58875,sh07,513,269,7064954,743,0 +58876,Wioska+barbarzy%C5%84ska,263,523,849084005,296,0 +58877,Wioska+marcinmista,372,701,849112879,2791,0 +58878,K67+16,703,617,698867483,2780,0 +58879,Brzydgoszcz,625,306,848922958,961,0 +58880,North+098,482,270,849064752,2857,0 +58881,%5B002%5D+Czemu+nie,662,326,699477624,2008,0 +58882,Wioska+barbarzy%C5%84ska,341,679,0,298,0 +58883,ble,632,702,848909464,930,0 +58884,-002-+Wioska+barbarzy%C5%84ska,684,346,849095068,1303,0 +58885,WB44,300,366,356642,670,2 +58886,o020,614,705,699189792,3319,0 +58887,Piek%C5%82o+to+inni,649,323,848956765,2715,0 +58888,Wioska+Butcher%2A,268,558,1153934,32,0 +58889,Wsch%C3%B3d+005,720,599,698562644,567,0 +58890,Wioska+barbarzy%C5%84ska,411,281,698231772,1492,0 +58892,Wioska+barbarzy%C5%84ska,390,287,699393759,1055,0 +58893,Warszawka,699,632,699843389,499,0 +58894,Wioska+barbarzy%C5%84ska,740,525,698191218,1089,0 +58895,Imperium,695,361,849116419,2251,0 +58896,Wioska+barbarzy%C5%84ska,667,335,699072129,2881,0 +58897,Szlachcic,638,542,930720,6266,0 +58898,Wioska+barbarzy%C5%84ska,732,497,6510480,787,0 +58899,018,394,292,699694284,1688,0 +58900,Elo+Elo+12,281,583,699016994,1282,2 +58901,Wioska+barbarzy%C5%84ska,472,732,0,97,0 +58902,P%C3%B3%C5%82nocny+Bagdad,637,315,8847546,1101,0 +58903,Wioska+Swiechu,574,278,698845107,102,0 +58905,Wioska+barbarzy%C5%84ska,517,739,849066849,416,0 +58906,Wioska+dynamit666,527,265,8552893,2551,0 +58907,A%23049,732,535,2065730,5246,1 +58909,Wioska+barbarzy%C5%84ska,521,260,849064752,262,0 +58910,Wioska+barbarzy%C5%84ska,348,687,0,348,0 +58911,jagger23,519,741,2646397,3072,0 +58912,P%C3%B3%C5%82nocny+Bagdad,597,289,8847546,640,0 +58913,Wioska+barbarzy%C5%84ska,350,683,0,61,0 +58914,Wioska+barbarzy%C5%84ska,720,580,2453888,1380,0 +58915,Zaplecze+Barba+051,344,327,699796330,897,0 +58916,R+053,490,733,699195358,1636,0 +58917,NIe+Bij+Chce+tylko+grac,676,657,9312528,4030,0 +58918,New+WorldA,267,529,849084005,857,0 +58919,Wioska+Makoo,546,525,848913030,26,0 +58920,Wioska+barbarzy%C5%84ska,296,390,849076515,332,0 +58921,Sony+911,682,649,1415009,675,0 +58922,122.Stradi,449,274,698365960,2239,0 +58923,Wioska+barbarzy%C5%84ska,703,379,698702991,1285,0 +58924,Wioska+barbarzy%C5%84ska,630,691,6818593,706,0 +58925,Wioska+Gimi7777,349,686,849091972,957,0 +58926,t028,669,343,2262902,251,0 +58927,Dzia%C5%82ka,322,337,849098557,400,0 +58928,KONFA+TO+MARKA%2C+NARKA,274,447,698152377,4026,3 +58929,Wioska+blady14,642,308,849106210,1881,0 +58930,Wioska+barbarzy%C5%84ska,285,597,698663855,64,0 +58931,Wioska+barbarzy%C5%84ska,677,340,699072129,1089,0 +58932,Wioska+7homasbaN1,322,662,699600855,277,0 +58933,052,733,478,849091105,221,0 +58934,Wioska+barbarzy%C5%84ska,312,651,2289134,283,0 +58935,040.+5spajk5,681,349,2873154,623,0 +58936,221+%7C,725,416,8000875,603,0 +58937,Wioska+vodka442,503,740,8708728,301,0 +58938,Cisza,267,563,698769107,640,0 +58939,Wioska+Don+Kalion,544,516,699552859,26,0 +58940,Wioska+Gilutyna,736,460,849108933,33,0 +58941,KONFA+TO+MARKA%2C+NARKA,270,440,698152377,4149,2 +58943,Wioska+barbarzy%C5%84ska,543,727,699878511,3117,0 +58944,PPF-10,510,263,1424656,2914,3 +58945,Wioska+Ulanyksiadz,696,633,699673236,354,0 +58946,Wioska+barbarzy%C5%84ska,714,391,699598425,2013,0 +58947,Wioska+barbarzy%C5%84ska,727,460,699524891,617,0 +58948,Wioska+barbarzy%C5%84ska,285,399,0,166,0 +58949,044,701,371,849091105,860,0 +58950,Wioska+barbarzy%C5%84ska,392,714,0,69,0 +58951,%5B0278%5D,263,496,8630972,3673,0 +58952,Wioska+I,336,616,849095948,3275,0 +58953,C0349,267,527,8841266,218,0 +58954,Wioska+barbarzy%C5%84ska,714,409,699524891,250,0 +58955,Sony+911,686,645,1415009,4047,0 +58956,Wioska+barbarzy%C5%84ska,458,272,849090573,142,0 +58957,04%23+Wioska+barbarzy%C5%84ska,681,644,8444698,558,0 +58958,097.+Wioska+barbarzy%C5%84ska,737,454,7494497,2470,0 +58959,Wioska+barbarzy%C5%84ska,649,683,848987051,4856,0 +58960,Wioska+szewa432,740,482,849090890,164,0 +58961,Wioska+barbarzy%C5%84ska,360,684,0,261,0 +58962,105.+Wioska+barbarzy%C5%84ska,727,455,7494497,351,0 +58963,Wioska+barbarzy%C5%84ska,452,274,699191455,546,0 +58964,Wioska+barbarzy%C5%84ska,313,647,2289134,203,0 +58965,Wioska+barbarzy%C5%84ska,719,594,2453888,3130,0 +58966,NOT%3F,303,362,9236866,553,0 +58967,Wioska+barbarzy%C5%84ska,652,684,8627359,2131,0 +58968,Osada+koczownik%C3%B3w,371,698,849014922,2362,4 +58969,WB32,295,379,356642,995,0 +58970,005,458,271,602408,419,0 +58971,New+World,420,719,698152377,2827,0 +58972,Wioska+barbarzy%C5%84ska,689,635,1415009,116,0 +58973,Szlachcic,544,514,698867446,688,0 +58974,%5B003%5D+Dobra+nie,661,323,699477624,1372,0 +58976,%5B843%5D+Odludzie,725,430,848985692,2427,0 +58977,Wioska+Kerakein,683,640,849116357,277,0 +58978,Wioska+barbarzy%C5%84ska,385,293,699191455,664,0 +58979,056+-+Budowanko%21,483,731,7540891,2519,0 +58980,Wioska+barbarzy%C5%84ska,722,573,698191218,941,0 +58981,Wioska+Harpun98vos,626,295,848942734,512,0 +58982,Wioska+Marcinho10,545,514,699844727,2177,0 +58983,31+barbarzy%C5%84ska,268,447,849018442,2619,0 +58984,Wioska+pele+z+zar,677,656,724621,198,0 +58986,Wioska+barbarzy%C5%84ska,269,504,0,132,0 +58987,Wioska+barbarzy%C5%84ska,701,383,7340529,1582,0 +58988,Wioska+jareczek951,655,682,849114683,1053,0 +58989,Wioska+barbarzy%C5%84ska,727,440,699347951,719,0 +58990,Wioska+miki021,598,713,699785141,793,0 +58991,Wioska+barbarzy%C5%84ska,621,294,849037469,1241,0 +58992,P%C3%B3%C5%82nocny+Bagdad,626,306,8847546,2107,0 +58993,KONFA+TO+MARKA%2C+NARKA,277,414,698152377,2099,0 +58994,Diabelski+Ogr%C3%B3d,413,277,849037354,525,0 +58995,Wioska+barbarzy%C5%84ska,359,311,3484132,3709,0 +58996,Wioska+barbarzy%C5%84ska,329,656,0,125,0 +58997,Wioska+barbarzy%C5%84ska,545,732,699878511,2557,0 +58998,Wioska+Hejhej,666,325,699751062,318,0 +58999,PIROTECHNIK+011,338,337,849101083,478,0 +59000,Wioska+bunu4,305,368,849050087,1122,0 +59001,KREV+006,723,593,848988744,248,0 +59002,Maryna+5,268,459,699650981,233,0 +59003,34+barbarzy%C5%84ska+B,266,449,849018442,3201,0 +59004,Wioska+barbarzy%C5%84ska,659,330,699072129,373,0 +59005,Wioska+barbarzy%C5%84ska,355,308,3484132,3704,0 +59006,North+104,481,264,849064752,2810,0 +59007,Wioska+barbarzy%C5%84ska,289,605,699321518,216,0 +59008,Wioska+Raff+Tierro,350,676,848932115,260,0 +59009,Wioska+barbarzy%C5%84ska,606,712,699828685,2747,0 +59010,Wioska+miro75,641,316,699825089,32,0 +59011,Odyseja,284,395,849076810,444,2 +59012,Wioska+barbarzy%C5%84ska,374,306,3484132,745,0 +59013,WB25,294,374,356642,1612,0 +59014,C0329,263,518,8841266,1876,0 +59015,Wioska+barbarzy%C5%84ska,670,339,7346797,815,0 +59016,004,712,399,699832463,1134,0 +59017,Wioska+SzymonMF6465,521,731,849114579,7901,0 +59018,Wioska+czorny-81,415,724,1260088,513,0 +59019,%5B841%5D+Odludzie,725,432,848985692,3492,0 +59020,Wioska+Power76,383,381,849096454,51,0 +59021,Wioska+Kacperr12,668,672,849112264,47,0 +59022,036+-+Budowanko%21,482,733,7540891,5144,0 +59023,Wioska+YenSu,689,644,698363063,1822,0 +59024,Wioska+barbarzy%C5%84ska,681,342,698895940,1034,0 +59025,WB06,297,379,356642,4562,0 +59026,252...NORTH,433,273,6920960,968,0 +59027,%2311,342,333,2800032,484,0 +59028,JAK,302,636,7083877,2671,0 +59029,FP058,447,731,699605333,2082,0 +59030,Zabardzo,284,412,699821629,1051,0 +59031,Sony+911,683,656,1415009,2182,0 +59032,Wioska+barbarzy%C5%84ska,346,680,6354098,130,0 +59033,025+-+Budowanko%21,505,733,7540891,4809,0 +59034,Wioska+barbarzy%C5%84ska,732,537,17714,227,0 +59036,Wioska+barbarzy%C5%84ska,716,406,699598425,2664,0 +59037,Wioska+OneGiet,429,280,849108600,173,0 +59038,Szlachcic,707,610,698867446,3103,0 +59039,Wioska+1kip7,674,338,7346797,967,0 +59040,Cisza,282,575,698769107,233,0 +59041,Wioska+barbarzy%C5%84ska,591,277,849100406,1897,0 +59042,Wioska+barbarzy%C5%84ska,710,599,698191218,626,0 +59043,%23049,558,271,849064614,966,0 +59044,Sony+911,718,599,1415009,233,0 +59045,CastAway+%21025,711,593,9314079,3963,0 +59046,1.Hanolulu,389,291,849117143,2083,0 +59048,Wioska+barbarzy%C5%84ska,674,337,699072129,1246,0 +59049,PIROTECHNIK+014,336,338,849101083,298,0 +59051,Wioska+Olek96,290,387,849113480,1907,0 +59052,Wioska+barbarzy%C5%84ska,363,307,3484132,3639,0 +59053,Wioska+barbarzy%C5%84ska,316,345,0,163,0 +59054,121.Stradi,449,272,698365960,2302,0 +59055,Rheinmetall,732,556,849086925,308,0 +59056,Wioska+barbarzy%C5%84ska,659,321,698895940,1043,0 +59058,Wioska+botlike,335,335,7970506,26,0 +59059,KONFA+TO+MARKA%2C+NARKA,269,438,698152377,4993,0 +59060,Tupot+ma%C5%82ych+n%C3%B3%C5%BCek,261,484,7012651,117,0 +59061,Wioska+barbarzy%C5%84ska,589,285,698350371,251,0 +59062,Wioska+Sindbad00,414,325,546458,592,0 +59063,Wioska+barbarzy%C5%84ska,602,709,699828685,841,0 +59064,Wioska+barbarzy%C5%84ska,352,318,3698627,2518,0 +59065,NOT%3F,309,359,9236866,274,0 +59066,Wioska+barbarzy%C5%84ska,693,643,698786826,210,0 +59067,Wioska+barbarzy%C5%84ska,604,714,699828685,820,0 +59068,Wioska+barbarzy%C5%84ska,589,455,0,85,0 +59069,Wioska+barbarzy%C5%84ska,343,671,0,88,0 +59070,KONFA+TO+MARKA%2C+NARKA,277,422,698152377,5011,0 +59071,New+WorldA,261,539,849084005,684,0 +59072,Wioska+barbarzy%C5%84ska,724,436,699524891,3442,0 +59073,%5B0275%5D,258,502,8630972,2902,7 +59074,Wioska+010,741,511,2999957,1808,0 +59075,%23166%23,652,679,692803,369,0 +59076,072KP,467,270,849063849,427,0 +59077,B021,535,265,699485250,2879,0 +59078,Wioska+b+008,417,279,6343784,525,0 +59079,C0336,266,529,8841266,1037,0 +59080,KONFA+TO+MARKA%2C+NARKA,273,441,698152377,3424,0 +59081,Wioska+barbarzy%C5%84ska,345,680,6354098,116,0 +59082,%23161%23,661,680,692803,696,0 +59083,Wioska+barbarzy%C5%84ska,727,453,699347951,709,0 +59085,Wioska+dezert8,336,329,2411854,1442,0 +59086,MojeDnoToWaszSzczyt,483,260,9299539,2165,0 +59087,Wioska+torys666,566,729,7210775,3674,0 +59088,096.+Wioska+barbarzy%C5%84ska,733,464,7494497,2643,0 +59089,Wioska+morfeusz37,505,260,849097357,364,0 +59090,Wioska+barbarzy%C5%84ska,316,360,0,301,0 +59091,Wioska+barbarzy%C5%84ska,589,282,849064614,356,0 +59092,Wioska+barbarzy%C5%84ska,367,311,3484132,3669,0 +59093,Wioska+Matz32,586,625,848883542,523,0 +59094,Wioska+barbarzy%C5%84ska,582,279,699146580,527,0 +59095,Wioska+Deyna10,591,285,3518623,194,0 +59096,Wioska+barbarzy%C5%84ska,349,326,8772425,1167,0 +59097,Wioska+barbarzy%C5%84ska,301,632,2289134,459,0 +59098,Wioska+barbarzy%C5%84ska,316,653,2289134,275,0 +59099,budowa+05,558,732,7139820,869,5 +59100,040Kret+Orkuf,506,732,698620694,1924,0 +59101,Wioska+barbarzy%C5%84ska,391,710,849014922,939,0 +59102,%3F%3F%3F%3F,494,263,698489071,4210,0 +59103,107.+Puszcza+Bukowa,695,627,8337151,4249,1 +59104,Wioska+barbarzy%C5%84ska,335,673,0,114,0 +59105,0131,731,451,698416970,358,0 +59106,PPF-20,504,260,1424656,1438,0 +59107,KWB8,528,740,9003698,803,0 +59108,026+-+Budowanko%21,474,736,7540891,4809,0 +59109,ALAMO,607,716,699025262,989,0 +59110,Wioska+Mateusz400,542,264,849117427,597,0 +59111,Wioska+barbarzy%C5%84ska,262,503,8630972,265,0 +59112,Wioska+Monsio,452,269,699813587,194,0 +59113,ONR+2,656,317,9090040,1533,0 +59114,Wioska+HENRYK321,615,288,5989306,377,0 +59115,Bimber123,272,461,849117454,776,0 +59116,Wioska+barbarzy%C5%84ska,630,699,6818593,822,0 +59117,PPF-55,554,265,1424656,208,0 +59118,O152,307,646,272173,1316,0 +59119,Wioska+aitseb,296,372,699870267,3463,0 +59120,Wioska+nsplus,262,489,6557824,191,0 +59121,Wioska+Piwna,316,344,849107104,2149,0 +59122,Wioska+barbarzy%C5%84ska,722,427,699628084,619,0 +59123,Wioska+noidea,278,573,699011415,458,0 +59124,Wioska+barbarzy%C5%84ska,717,402,699598425,2663,0 +59125,shadow+%232,259,495,1034117,1479,0 +59126,KONFA+TO+MARKA%2C+NARKA,271,459,698152377,2086,0 +59127,043+-+Budowanko%21,518,730,7540891,5063,1 +59128,Wioska+barbarzy%C5%84ska,312,633,2289134,92,0 +59129,Wioska+barbarzy%C5%84ska,677,652,1415009,492,0 +59130,110+Wioska+barbarzy%C5%84ska,586,282,699854484,848,0 +59131,Wioska+barbarzy%C5%84ska,698,376,698702991,147,0 +59132,Wioska+barbarzy%C5%84ska,319,654,0,337,0 +59133,Wioska+barbarzy%C5%84ska,315,647,2289134,182,0 +59134,Wioska+barbarzy%C5%84ska,374,698,0,238,0 +59135,Wioska+barbarzy%C5%84ska,374,697,849014922,447,0 +59136,27+barbarzy%C5%84ska,267,435,849018442,2288,0 +59137,A%23050,729,454,2065730,5054,1 +59138,P%C3%B3%C5%82nocny+Bagdad,621,295,8847546,1324,0 +59139,KONFA+TO+MARKA%2C+NARKA,286,404,698152377,1459,0 +59140,Wioska+Biegacz1,377,304,848978052,171,0 +59141,0000045Z,266,558,849089881,529,0 +59142,Wioska+Marecki2222,733,518,699843936,50,0 +59144,Sony+911,678,664,1415009,1228,0 +59145,Wioska+barbarzy%C5%84ska,359,688,0,156,0 +59146,%5B208%5D,721,420,8000875,1516,0 +59147,068+-+Budowanko%21,509,736,7540891,1093,0 +59148,Wioska+mruva,653,629,2245160,347,0 +59149,KONFA+TO+MARKA%2C+NARKA,273,451,698152377,3789,0 +59150,PP+POLSKIE+POLA+81,372,296,849107571,1396,0 +59151,C0334,265,542,8841266,1578,0 +59152,C0337,265,526,8841266,957,0 +59153,Nowa,638,301,3600737,1236,0 +59155,Wioska+Szczerbatka,329,338,848939203,1468,0 +59156,NOT%3F,308,360,9236866,2829,0 +59157,Wioska+barbarzy%C5%84ska,369,704,849014922,558,0 +59158,0120,703,383,698416970,814,0 +59159,227+%7C,722,426,8000875,151,0 +59160,001,654,336,8006209,730,0 +59161,Wioska+barbarzy%C5%84ska,394,715,849014922,1481,0 +59162,Wioska+zuzel,382,294,335509,1606,0 +59163,Wioska+a5,423,281,6343784,1387,0 +59164,ziutek,453,274,849117622,1308,0 +59165,%5B0274%5D,267,493,8630972,3612,0 +59166,038,701,374,849091105,4017,4 +59168,Wioska+barbarzy%C5%84ska,616,301,699098531,1960,0 +59169,Wioska+barbarzy%C5%84ska,735,465,698702991,173,0 +59170,%230253+barbarzy%C5%84ska,442,275,1238300,936,0 +59171,Ks+Konfederacja,691,362,848915730,3014,2 +59172,242,377,293,7271812,504,0 +59173,P%C3%B3%C5%82nocny+Bagdad,598,287,8847546,1350,0 +59174,K67+34,714,601,698867483,845,0 +59175,100,736,533,7085502,1339,0 +59176,Wioska+Arco87,261,535,848974774,249,0 +59177,K67+23,715,605,698867483,1808,0 +59178,Wioska+sada2,363,698,849114502,3943,0 +59179,002,275,445,699282717,974,0 +59180,Wioska+0024,337,679,9186126,2655,0 +59181,FP048,448,733,699605333,2306,0 +59182,My+City,296,605,944147,2828,0 +59183,C0327,268,527,8841266,1853,0 +59184,Wioska+Kaminski95,521,259,849106303,1170,0 +59185,Wioska+Alderos,684,651,849117035,26,0 +59186,Wioska+barbarzy%C5%84ska,727,546,698666810,1591,0 +59187,Wioska+barbarzy%C5%84ska,650,318,698895940,934,0 +59188,094+koniec+%C5%9Bwiata,616,702,849093426,3158,0 +59190,%3F%3F%3F%3F,491,262,698489071,4202,0 +59191,Wioska+PrawdziwyIlveron,493,734,699698873,68,0 +59192,Piek%C5%82o+to+inni,657,326,848956765,2660,0 +59193,koniec,625,700,699883836,203,0 +59194,Osada+koczownik%C3%B3w,313,648,2289134,345,6 +59195,Wioska+barbarzy%C5%84ska,387,295,0,67,0 +59196,Piek%C5%82o+to+inni,649,324,848956765,2221,0 +59197,Karolo1,566,655,848960061,416,0 +59198,Wioska+b+009,426,280,6343784,1086,0 +59199,Wioska40,324,341,699711926,281,0 +59200,%23040,554,273,849064614,1027,0 +59202,Wioska+barbarzy%C5%84ska,527,738,699878511,3192,0 +59203,%21Wioska+barbarzy%C5%84ska,599,717,8779575,355,0 +59204,Nast%C4%99pna,633,299,3600737,1200,0 +59205,Wioska+Gacek565,474,263,8978080,2870,0 +59206,003-81,287,592,699396429,2768,0 +59207,Wioska+DrXE7,438,270,849106601,253,0 +59208,Wioska+barbarzy%C5%84ska,454,268,9299539,971,0 +59209,Chlewnik,731,547,699685533,1111,0 +59210,002+Zagroda,272,538,698353083,1448,4 +59211,PPF-50,572,275,1424656,529,0 +59212,Wioska+barbarzy%C5%84ska,626,696,6818593,539,0 +59213,Wioska+ksi%C4%85%C5%BC%C4%99+plemienia,306,373,699816699,881,0 +59214,%5B0279%5D,269,494,8630972,2853,0 +59215,Osada+koczownik%C3%B3w,596,283,699098531,2436,7 +59216,Wioska+barbarzy%C5%84ska,647,687,0,215,0 +59217,Ultimate+Farming+Simulator+6,433,268,699872032,198,0 +59218,Wioska+barbarzy%C5%84ska,359,303,3484132,2466,0 +59219,Wioska+barbarzy%C5%84ska,738,520,698191218,1865,0 +59220,Wioska+miniorek,532,260,849072919,26,0 +59221,C0328,270,547,8841266,1976,0 +59222,Osada+koczownik%C3%B3w,687,637,3467919,372,7 +59223,Wioska+barbarzy%C5%84ska,267,528,8841266,138,0 +59224,S%C4%85siad+buduj%C4%99+Ci+wiosk%C4%99+%3A%29,385,703,3647080,1846,0 +59225,Piek%C5%82o+to+inni,660,332,848956765,2701,0 +59226,0129,704,378,698416970,442,0 +59227,%3D129%3D+Wioska+barbarzy%C5%84ska,729,567,3781794,1044,0 +59229,Wioska+barbarzy%C5%84ska,282,601,699396429,357,0 +59230,Wioska+barbarzy%C5%84ska,473,263,0,701,0 +59231,North+K25,563,269,699146580,1433,0 +59232,Wioska+Tombar76,490,739,2162471,626,0 +59233,Wioska+barbarzy%C5%84ska,267,565,698290577,999,0 +59234,Wioska+Ferox-1,718,576,849113673,223,0 +59235,Wioska+barbarzy%C5%84ska,317,655,0,227,0 +59236,Bracket,401,285,699741694,344,0 +59237,Wioska+barbarzy%C5%84ska,277,587,0,277,0 +59238,Zasiedmiogorogrodzie+003,698,363,698278542,543,0 +59239,Wioska+barbarzy%C5%84ska,320,647,0,236,0 +59240,%3F%3F%3F%3F,467,268,698489071,3223,2 +59241,Wioska+chips03,297,615,849096346,26,0 +59242,WB45,303,363,356642,540,0 +59243,Wioska+barbarzy%C5%84ska,715,392,0,237,0 +59244,029+-+Budowanko%21,491,740,7540891,4789,0 +59246,007,441,267,699562874,1987,4 +59247,liliput81,484,741,698321130,1665,0 +59248,Wioska+barbarzy%C5%84ska,558,272,849064614,515,0 +59249,Krasnal,653,315,8583185,1184,0 +59250,WB37,298,387,356642,867,0 +59251,New+World,438,722,698152377,1948,0 +59252,Wioska+Banan001,263,528,699765971,26,0 +59253,Wioska+Szy.mek,691,634,849116679,869,0 +59255,CO+TAM+%3F%3F%3F%3F,289,604,699774694,158,0 +59256,Wioska+barbarzy%C5%84ska,680,355,6956104,394,0 +59257,Wioska+Bozydar666,735,482,848959422,217,0 +59258,KONFA+TO+MARKA%2C+NARKA,279,421,698152377,2224,8 +59259,Wioska+barbarzy%C5%84ska,374,294,3484132,579,0 +59260,%21Wioska+barbarzy%C5%84ska+4,583,725,8779575,3181,0 +59261,endriu1990%2F181,440,274,698795589,689,0 +59262,Wioska+barbarzy%C5%84ska,596,716,7589468,442,0 +59263,Wioska+Galactus,287,388,698488800,237,0 +59264,Wioska+barbarzy%C5%84ska,533,736,699878511,1814,0 +59265,Wioska+sarab,458,266,6474323,1305,0 +59266,Wioska+barbarzy%C5%84ska,479,266,0,105,0 +59267,Wioska+barbarzy%C5%84ska,358,695,0,290,0 +59268,Wioska+krzok14,733,526,698984562,71,0 +59269,Na+SsSskraju,270,572,1536625,1089,4 +59270,Wioska+King2000,617,301,849101871,296,0 +59271,Wioska+barbarzy%C5%84ska,571,273,849064614,430,0 +59272,North+053,529,264,849064752,4240,0 +59273,North+111,474,260,849064752,1711,0 +59274,FEEDBACK,287,598,699774694,2137,0 +59275,106+Wioska+barbarzy%C5%84ska,568,276,699854484,977,0 +59276,North+056,550,264,849064752,4375,0 +59277,21.+Tama,352,689,849092769,248,0 +59278,North+054,536,262,849064752,4290,0 +59279,K67+37,714,609,698867483,539,0 +59280,Wioska+b+012,406,279,6343784,255,0 +59281,P%C3%B3%C5%82nocny+Bagdad,616,294,8847546,2350,0 +59282,Wioska+Simon93,274,569,849115254,1620,0 +59283,Wioska+barbarzy%C5%84ska,665,328,699072129,2071,0 +59285,035,725,588,6160655,849,0 +59286,001Vixa,346,320,8819990,361,0 +59287,MojeDnoToWaszSzczyt,468,263,9299539,1409,0 +59288,North+048,559,269,849064752,3735,6 +59289,Wioska+barbarzy%C5%84ska,636,699,699189792,1810,0 +59290,Wioska+barbarzy%C5%84ska,321,657,0,186,0 +59291,Wioska+barbarzy%C5%84ska,300,620,2289134,187,0 +59292,North+070,507,263,849064752,4554,0 +59293,Osada+koczownik%C3%B3w,295,618,2289134,340,3 +59294,Wioska+Uparty1,385,295,699471024,634,0 +59295,Wioska+barbarzy%C5%84ska,552,727,699878511,1625,0 +59296,Wioska+barbarzy%C5%84ska,649,687,0,219,0 +59298,New+World,425,725,698152377,3103,0 +59299,Wioska+barbarzy%C5%84ska,731,541,1601917,277,0 +59300,WB33,293,382,356642,1245,0 +59301,Wioska+barbarzy%C5%84ska,269,546,0,79,0 +59302,znam+ostropesta+3,434,732,699777372,2410,0 +59303,Wioska+Nogger14,285,415,3923887,765,0 +59304,Piek%C5%82o+to+inni,656,323,848956765,1811,0 +59305,Wioska+barbarzy%C5%84ska,653,322,896355,323,0 +59306,P%C3%B3%C5%82nocny+Bagdad,611,293,8847546,2025,0 +59307,Flap,604,281,699098531,1823,8 +59309,Avanti%21,267,481,698625834,1535,0 +59310,wu2ek,703,616,849108157,851,0 +59311,P%C3%B3%C5%82nocny+Bagdad,632,303,8847546,2248,0 +59312,Wioska+Szymon9405,276,453,849099145,4187,0 +59313,101,735,529,7085502,1260,0 +59314,Wioska+Cegla+x+DrTaxi,517,736,7951206,41,0 +59315,Wioska+gall8,265,470,699598396,323,0 +59316,Wioska+Gruby0905,433,274,1384222,515,0 +59317,WB24,298,367,356642,1483,0 +59318,Wioska+barbarzy%C5%84ska,737,450,699574408,598,0 +59319,Wioska33,328,341,699711926,1439,0 +59320,Wioska+barbarzy%C5%84ska,737,502,1601917,239,0 +59321,P%C3%B3%C5%82nocny+Bagdad,630,307,8847546,1628,0 +59322,A%23052,737,464,2065730,4700,3 +59324,Wioska+barbarzy%C5%84ska,670,332,699072129,800,0 +59327,222+%7C,718,416,8000875,374,0 +59328,North+099,548,263,849064752,4358,0 +59330,Wioska+barbarzy%C5%84ska,738,514,1601917,1456,0 +59332,041.+Wioska+barbarzy%C5%84ska,685,349,2873154,644,0 +59333,088+obrze%C5%BCa,272,561,699510259,535,0 +59334,Wioska+181,284,401,382222,1473,0 +59335,KWB9,467,734,9003698,5163,0 +59336,New+World,434,725,698152377,1857,0 +59337,031+-+Budowanko%21,495,742,7540891,4540,0 +59338,Wioska+lukas1980,501,260,2213632,1317,0 +59339,42+barbarzy%C5%84ska+3A,268,451,849018442,2168,0 +59340,Wioska+181,345,346,82782,1731,0 +59341,Wioska+barbarzy%C5%84ska,335,324,698388578,156,0 +59342,Wioska+barbarzy%C5%84ska,350,680,0,225,0 +59343,Wioska+barbarzy%C5%84ska,263,472,0,75,0 +59344,K67+25,704,611,698867483,1998,0 +59345,Wioska+barbarzy%C5%84ska,329,330,699304554,421,0 +59346,Wioska+Koza2021,279,579,849106741,68,0 +59348,P%C3%B3%C5%82nocny+Bagdad,632,310,8847546,2789,0 +59349,B019,534,266,699485250,3187,6 +59350,071+-+Budowanko%21,514,735,7540891,810,0 +59351,Kancelaria+1,715,598,849104468,1157,0 +59352,Bunkier,344,675,699805839,458,0 +59353,Wioska+apokalipsa25,733,485,9135525,26,0 +59354,Wioska+barbarzy%C5%84ska,600,292,0,232,0 +59355,Wioska+Adrianzaq12wsx,721,424,1945202,26,0 +59356,K66,698,627,698867483,1427,0 +59357,Wioska+6,290,402,699763225,132,0 +59358,%3F%3F%3F%3F,486,259,698489071,2815,0 +59359,002+Carlin,692,645,699516250,2595,0 +59360,Wioska+Kr%C3%B3l+Mieszko1,265,527,849110674,706,0 +59361,%5B209%5D,722,417,8000875,1390,0 +59362,Wioska+Pty%C5%9BTurbo,386,295,849095825,138,0 +59363,Wioska+barbarzy%C5%84ska,553,734,699878511,1748,0 +59364,KONFA+TO+MARKA%2C+NARKA,273,423,698152377,1366,0 +59365,0123,711,384,698416970,554,0 +59366,Wioska+221719123,695,631,849050410,26,0 +59367,Wioska+vasper123,616,296,848980727,729,0 +59368,Wioska+barbarzy%C5%84ska,418,277,3411571,3087,0 +59369,Wioska+barbarzy%C5%84ska,266,473,0,77,0 +59370,Zaplecze+Barba+042,358,312,699796330,2216,0 +59371,124.+Bezmiar+Wschodni+Bliski,663,679,8337151,303,0 +59372,North+083,554,269,849064752,4238,0 +59373,Wioska+barbarzy%C5%84ska,672,338,0,339,0 +59375,Wioska+barbarzy%C5%84ska,379,703,849014922,994,0 +59376,sobiska,439,268,849118259,1581,0 +59377,Wioska+barbarzy%C5%84ska,739,523,698191218,1863,0 +59378,Flex+1,375,701,849114033,1126,0 +59380,PPF-47,518,268,1424656,421,0 +59381,Wioska+barbarzy%C5%84ska,457,265,9299539,956,0 +59382,Wioska+samolot11,527,261,849105201,139,0 +59383,Osada+koczownik%C3%B3w,678,337,699072129,1615,3 +59384,Wioska+OgnistaOwca,616,295,699868448,54,0 +59385,P%C3%B3%C5%82nocny+Bagdad,648,316,8847546,904,6 +59386,Wioska+barbarzy%C5%84ska,739,503,1601917,289,0 +59387,Wioska+barbarzy%C5%84ska,737,547,698191218,1573,0 +59388,ponger19955,692,371,849031759,505,0 +59389,Wioska+barbarzy%C5%84ska,386,713,849014922,1479,0 +59390,Wioska+barbarzy%C5%84ska,684,356,0,239,0 +59391,Wioska+ABE+1,269,524,7964548,181,0 +59392,Wioska+barbarzy%C5%84ska,316,642,698908184,1667,0 +59393,Wioska+dziwas2,296,606,8760563,2084,0 +59394,045+KTW,733,448,848883237,500,0 +59395,Wioska+barbarzy%C5%84ska,281,466,699812351,319,0 +59396,Wioska+bleta+spz,728,571,699811133,275,0 +59397,Wioska+barbarzy%C5%84ska,729,427,699628084,383,0 +59398,Wioska+koka17,372,297,848901822,952,0 +59399,Wioska+barbarzy%C5%84ska,649,688,848987051,4490,0 +59400,Wioska+barbarzy%C5%84ska,739,531,0,402,0 +59401,Wioska+xarans,410,723,849044724,1146,0 +59402,WZ11,697,621,7142659,1896,0 +59403,Wioska+barbarzy%C5%84ska,679,657,1415009,372,0 +59404,Wioska+barbarzy%C5%84ska,595,280,3600737,445,0 +59405,Wioska+Pheniks2009,452,729,6541079,122,0 +59406,Wioska+barbarzy%C5%84ska,740,464,848946700,847,0 +59407,Wioska+slawomirec,627,697,2345447,302,0 +59408,Wioska+Piorun000,290,380,699865716,333,0 +59409,%5B0280%5D,266,496,8630972,3678,0 +59410,pl181+n1g3r,268,478,6354962,2442,0 +59411,Wioska+barbarzy%C5%84ska,558,735,699878511,1748,0 +59412,Odrodzenie,280,543,848952556,783,0 +59413,KONFA+TO+MARKA%2C+NARKA,276,409,698152377,1857,0 +59414,Bagno+41,457,731,848883684,1879,9 +59415,Wioska+Alibaba420,737,448,848942565,425,0 +59416,Wioska+barbarzy%C5%84ska,613,704,699828685,1254,0 +59417,Wioska+barbarzy%C5%84ska,476,735,698620694,950,0 +59418,Osada+koczownik%C3%B3w,739,539,1601917,2272,2 +59419,Wioska+snajpiradlo,396,284,2980670,150,0 +59420,Wioska+barbarzy%C5%84ska,656,684,0,44,0 +59421,Wioska+barbarzy%C5%84ska,341,330,0,307,0 +59422,Magnes,271,462,849116221,202,0 +59423,62+barbarzy%C5%84ska,276,432,849018442,574,0 +59424,PPF-51,544,268,1424656,262,0 +59425,Wioska+barbarzy%C5%84ska,382,701,849014922,891,0 +59426,Wioska+to+tylko+hastrat,346,687,42635,26,0 +59427,Wioska+barbarzy%C5%84ska,290,605,699321518,173,0 +59428,North+071,497,258,849064752,4542,0 +59429,Wioska+Love4evere3,297,611,849117240,349,0 +59430,Wioska+barbarzy%C5%84ska,375,698,0,175,0 +59432,Wioska+barbarzy%C5%84ska,735,524,698191218,1863,0 +59433,Wioska+wlodek1404,580,272,849118462,793,0 +59434,Wioska+barbarzy%C5%84ska,269,478,849095814,533,0 +59435,Wioska+drrakox,282,415,699851001,26,0 +59436,Lecymy+DUR,348,319,6169408,549,0 +59437,181,517,260,699147813,376,0 +59438,042,720,403,849091105,916,0 +59439,Wioska+BOMBA+NA+BANIIE,636,302,849029559,26,0 +59440,Wioska+Jaayzik,688,639,699762118,26,0 +59441,Wioska+barbarzy%C5%84ska,599,715,7589468,319,0 +59442,Wioska+AdaSobieraj,264,525,849118441,654,0 +59443,Wioska+barbarzy%C5%84ska,384,712,849014922,1479,0 +59444,Wioska+barbarzy%C5%84ska,737,460,699524891,845,0 +59445,Osada+koczownik%C3%B3w,421,272,3411571,3604,2 +59446,qwerty,579,275,849117830,2257,0 +59447,Wioska+barbarzy%C5%84ska,296,613,0,75,0 +59448,Wioska+barbarzy%C5%84ska,578,723,0,227,0 +59449,46.,333,667,8665783,246,0 +59451,Wioska+barbarzy%C5%84ska,579,726,849098628,832,0 +59452,Wioska+barbarzy%C5%84skaF,289,607,698178312,586,0 +59453,Wioska+barbarzy%C5%84ska,689,360,848915730,2086,0 +59454,Osada+koczownik%C3%B3w,632,690,699372829,235,2 +59456,wichrowy+czub,288,392,698677650,141,0 +59457,034+-+Budowanko%21,470,731,7540891,4508,0 +59458,Wioska+barbarzy%C5%84ska,637,700,698191218,207,0 +59459,Wioska+barbarzy%C5%84ska,350,690,0,198,0 +59460,Wioska+palkoneti,689,362,2602575,328,0 +59461,WB30,292,377,356642,1348,0 +59462,WB42,291,385,356642,340,0 +59463,Wioska+frolunda63,557,729,699391409,261,0 +59464,Wioska+2+die+4,259,488,2512219,232,0 +59465,Wioska+barbarzy%C5%84ska,732,560,698191218,172,0 +59466,Wioska+barbarzy%C5%84ska,267,546,0,316,0 +59467,Wioska+barbarzy%C5%84ska,343,678,0,253,0 +59468,Wioska+pluton1,446,264,662253,209,0 +59469,Wioska+barbarzy%C5%84ska,577,729,849098628,1010,0 +59470,VASTO+2,345,681,849100016,1815,0 +59471,-001-+Wioska+barbarzy%C5%84ska,687,347,849095068,2852,0 +59472,Wioska+dziki71,403,286,3667722,1479,0 +59473,C0326,269,519,8841266,1851,0 +59474,Wioska+leolen,331,326,6617912,2639,0 +59475,%23140%23,664,663,692803,1360,0 +59476,K67+38,710,615,698867483,404,0 +59477,Babylon,340,325,3377503,393,0 +59478,Wioska+barbarzy%C5%84ska,371,700,0,389,0 +59479,Wioska+barbarzy%C5%84ska,718,579,7528491,606,0 +59480,Wioska+marlis1992,351,685,849098159,26,0 +59481,026+Z,737,468,699718269,125,0 +59482,A%23053,724,412,2065730,4073,8 +59483,Wioska+Kafaro,405,564,698911639,460,0 +59484,Wioska+barbarzy%C5%84ska,526,738,699878511,1814,0 +59485,Wioska+barbarzy%C5%84ska,740,494,699524891,302,0 +59486,Wioska+barbarzy%C5%84ska,338,670,0,240,0 +59487,mo%C5%BCna+farmi%C4%87+-+zapraszam,724,556,699600167,143,0 +59488,Wioska+barbarzy%C5%84ska,741,485,698191218,941,0 +59489,Wioska+barbarzy%C5%84ska,618,300,849037469,239,0 +59490,Wioska+barbarzy%C5%84ska,651,684,848987051,3481,0 +59491,Wioska+barbarzy%C5%84ska,337,675,0,91,0 +59492,%3D%7C42%7C%3D,693,367,9101574,525,0 +59493,Osada+koczownik%C3%B3w,274,575,699321518,1184,5 +59494,Wioska+pilkowski,660,678,849096856,101,0 +59495,Wioska+barbarzy%C5%84ska,657,682,848987051,3344,0 +59496,Wioska+barbarzy%C5%84ska,302,628,2289134,241,0 +59497,gracjan1995,720,427,698631190,1938,0 +59498,240...north,435,272,6920960,1366,0 +59499,Wioska+rycerzrzyk2000,705,379,6021542,26,0 +59500,Zaplecze+Barba+046,355,318,699796330,2027,0 +59501,Wioska+barbarzy%C5%84ska,729,430,0,59,0 +59502,North+K25,560,269,699146580,1521,0 +59503,Wioska+barbarzy%C5%84ska,609,286,0,65,0 +59504,Wioska+barbarzy%C5%84ska,365,307,698160606,2087,0 +59505,PPF-49,553,268,1424656,351,0 +59506,Wioska+Bober5180,424,719,849106576,126,0 +59507,Wioska+barbarzy%C5%84ska,269,480,698625834,90,0 +59508,Wioska+barbarzy%C5%84ska,317,651,2289134,242,0 +59509,Zaplecze+Barba+052,344,323,699796330,579,0 +59510,Wioska+barbarzy%C5%84ska,267,461,0,83,0 +59511,045.+Wioska+barbarzy%C5%84ska,687,352,2873154,718,0 +59512,Wioska+barbarzy%C5%84ska,523,741,699878511,1563,0 +59513,049,691,352,849091105,746,2 +59514,Wioska+Shadow39,704,382,849073939,1208,0 +59515,Wioska+JuanPabloII,414,285,849091060,26,0 +59516,P%C3%B3%C5%82nocny+Bagdad,621,302,8847546,2332,0 +59517,2Pac,467,266,849117242,1192,0 +59518,003+Venore,695,642,699516250,1662,0 +59520,New+World,433,731,698152377,3377,0 +59521,Wioska+barbarzy%C5%84ska,646,313,0,148,0 +59522,Nowa+65,722,595,698702991,2563,0 +59523,Wioska+Vokhar,334,334,849118478,26,0 +59524,New+World,427,723,698152377,3555,0 +59525,Wioska+bylo21,307,366,1132842,199,0 +59526,086+obrze%C5%BCa,274,565,699510259,911,0 +59527,Osada+koczownik%C3%B3w,331,334,699304554,900,3 +59529,Wioska+b+011,407,277,6343784,390,0 +59530,%21Wioska+barbarzy%C5%84ska+33,583,723,8779575,2933,0 +59531,Sony+911,706,625,1415009,254,0 +59532,Wioska+barbarzy%C5%84ska,625,708,101074,1090,0 +59533,Wioska+Carlos75,510,738,337137,26,0 +59534,North+100,507,259,849064752,2878,0 +59535,%23171%23,662,675,692803,660,0 +59536,Wioska+barbarzy%C5%84ska,659,322,699072129,1669,0 +59537,Mega+kox,658,328,849111332,525,0 +59538,Wioska+barbarzy%C5%84ska,663,321,699072129,101,0 +59539,036.+Gloria+Victis,269,576,848886973,1626,0 +59540,Wioska+hair12345.,702,390,849118786,761,0 +59541,WB39,289,386,356642,609,0 +59543,Wioska+barbarzy%C5%84ska,714,413,698702991,192,0 +59544,Wioska+barbarzy%C5%84ska,640,308,3600737,911,0 +59545,069+-+Budowanko%21,513,735,7540891,859,0 +59546,002,716,390,699832463,2129,0 +59547,Wioska+MARCINEK+GRO%C5%BBNY,445,264,6174010,369,0 +59548,Wioska+barbarzy%C5%84ska,342,320,699191464,707,0 +59549,181,730,438,698957176,325,0 +59550,Melissa+monet,573,274,698936852,1894,0 +59551,KONFA+TO+MARKA%2C+NARKA,272,422,698152377,2213,0 +59552,Wioska+plazmi,392,716,2177410,691,0 +59553,Wioska+barbarzy%C5%84ska,337,333,0,199,0 +59554,ONR+3,662,319,9090040,206,0 +59555,Wioska+barbarzy%C5%84ska,638,302,3600737,945,0 +59556,Wioska+barbarzy%C5%84ska,334,666,0,26,0 +59557,Wioska+NurseJK,285,611,849113819,1520,0 +59558,Twierdza+%28Cadia%29,401,288,0,2511,23 +59559,035,470,738,8268010,97,0 +59560,Wioska+barbarzy%C5%84ska,346,679,0,222,0 +59562,Wioska+barbarzy%C5%84ska,469,732,0,27,0 +59563,Wioska+dominik121,274,424,698639278,194,0 +59564,North+084,488,261,849064752,4179,0 +59565,Wioska+marek46aa,398,720,698346954,490,0 +59566,Wioska+barbarzy%C5%84ska,720,577,699493750,191,0 +59567,Wioska+barbarzy%C5%84ska,741,488,6510480,208,0 +59568,Wioska+barbarzy%C5%84ska,258,501,0,81,0 +59569,Sony+911,687,642,1415009,1463,0 +59570,Wioska+barbarzy%C5%84ska,732,552,0,95,0 +59571,Wioska+cycu269,573,728,7913305,2008,0 +59572,Wioska+Mistrzunio229,309,362,699545975,195,0 +59573,Wioska+barbarzy%C5%84ska,445,728,699280514,82,0 +59574,Wioska+artur1488,711,611,7024597,804,0 +59575,03%23+Wioska+barbarzy%C5%84ska,682,642,8444698,501,0 +59576,%23172%23,648,690,692803,236,0 +59577,WB43,300,363,356642,484,0 +59578,Wioska+Xpace67,267,543,849112774,26,0 +59579,Wioska+barbarzy%C5%84ska,701,381,7340529,2001,0 +59580,Wioska+Pati999,622,302,849115365,196,0 +59581,036,736,553,6160655,632,0 +59582,Wioska+Minister123,287,403,849118999,1916,0 +59584,North+K25,572,270,699146580,1434,0 +59585,Wioska+barbarzy%C5%84ska,497,263,0,35,0 +59586,Wioska+tomekjasko,736,522,849101646,144,0 +59587,Wioska+barbarzy%C5%84ska,531,265,0,112,0 +59588,%5B0293%5D,262,501,8630972,315,0 +59589,Wioska+barbarzy%C5%84ska,551,735,699878511,33,0 +59590,WB27,299,375,356642,1419,0 +59591,%23002,446,725,849042480,876,0 +59592,Xxx,509,740,7098955,2244,0 +59593,Wioska+barbarzy%C5%84ska,311,646,2289134,104,0 +59594,244,366,299,7271812,436,0 +59595,Wioska+ascend,486,267,698830638,2812,0 +59596,Wioska+barbarzy%C5%84ska,334,327,699304554,185,0 +59597,Wioska+CebulowyRycerz,467,731,699492817,94,0 +59598,%5B210%5D,722,419,8000875,949,0 +59599,KONFA+TO+MARKA%2C+NARKA,280,405,698152377,868,0 +59600,Wioska+barbarzy%C5%84ska,611,294,699098531,1640,0 +59602,002+Wioska+barbarzy%C5%84ska,259,515,915113,225,0 +59603,Dworek,297,632,8502135,1226,0 +59604,Wioska+barbarzy%C5%84ska,279,599,0,142,0 +59605,PPF-58,544,277,1424656,294,0 +59606,%23148%23,658,671,692803,1122,0 +59607,057,740,498,849091105,81,0 +59608,KREV+007,721,591,848988744,217,0 +59609,Wioska+miodzik9669,697,375,2422415,380,0 +59610,Wioska+barbarzy%C5%84ska,368,299,698160606,1858,0 +59611,Wioska+spiki2009.,357,304,6468217,569,0 +59612,New+WorldA,270,536,849084005,1113,0 +59613,sony911,674,662,1415009,220,0 +59614,Wioska+barbarzy%C5%84ska,668,324,699072129,1559,0 +59615,Wioska+barbarzy%C5%84ska,733,439,698702991,414,0 +59616,Aa3,592,720,849097614,1862,0 +59617,Wioska+barbarzy%C5%84ska,375,702,0,49,0 +59618,066KP,482,266,849063849,700,0 +59619,Wioska+barbarzy%C5%84ska,732,561,2999957,174,0 +59620,Tupot+ma%C5%82ych+n%C3%B3%C5%BCek+2,259,478,7012651,203,0 +59621,Wioska+barbarzy%C5%84ska,272,420,0,41,0 +59622,Wioska+barbarzy%C5%84ska,297,626,2289134,284,0 +59623,Wioska+Lejlu,619,293,699491924,277,0 +59624,045,695,371,849091105,818,0 +59625,Wioska+barbarzy%C5%84ska,611,286,0,140,0 +59626,Wioska+013,735,496,2999957,602,0 +59627,Wioska+barbarzy%C5%84ska,639,695,699189792,1902,0 +59628,181,589,725,849119121,664,0 +59629,048+-+Budowanko%21,513,741,7540891,3481,0 +59630,Valhalla,718,591,949279,890,0 +59631,North+085,512,265,849064752,3852,0 +59632,181.Nie+%C5%9Bwiruj%C4%99,358,313,6284929,1177,0 +59633,Wioska+barbarzy%C5%84ska,328,670,0,172,0 +59634,Wioska+43,579,729,3022364,367,0 +59635,43+barbarzy%C5%84ska+3B,271,430,849018442,2167,0 +59637,Peter,280,589,698766178,408,0 +59638,Wioska+Kamilooo97,596,723,848882446,694,0 +59639,KONFA+TO+MARKA%2C+NARKA,273,414,698152377,1912,0 +59640,Wioska+Koziok,725,562,849094319,26,0 +59641,Wioska+barbarzy%C5%84ska,431,273,699191464,714,0 +59643,100+Wioska+barbarzy%C5%84ska,547,263,699854484,3291,0 +59644,Wioska+kafejtor,714,614,849119173,227,0 +59645,025+Z,733,470,699718269,273,0 +59646,SHIR,680,660,8134135,468,0 +59648,219...NORTH,415,284,6920960,1483,0 +59649,Wioska+Decku%C5%9B+oddaj+rower,710,396,699624570,77,0 +59650,Wioska+barbarzy%C5%84ska,384,703,849014922,1066,0 +59651,SHAKARA,332,674,699056677,478,0 +59652,Tupot+ma%C5%82ych+n%C3%B3%C5%BCek+1,258,477,7012651,307,0 +59653,Osada+koczownik%C3%B3w,630,700,6818593,668,2 +59654,Wioska+lubiszT0,739,508,3295619,162,0 +59655,Wioska+barbarzy%C5%84ska,362,311,3484132,889,0 +59656,KONFA+TO+MARKA%2C+NARKA,281,421,698152377,2206,0 +59657,Wioska+PEPUS,606,287,699238678,148,0 +59658,Wioska+barbarzy%C5%84ska,332,333,699304554,267,0 +59659,Wioska+barbarzy%C5%84ska,730,532,17714,104,0 +59660,016,396,285,699694284,1980,0 +59661,0105,706,379,698416970,923,5 +59662,Arczi997+09,266,511,849055181,117,0 +59663,Malgagovo,701,372,849112369,249,0 +59664,Wioska+barbarzy%C5%84ska,266,469,0,68,0 +59665,K66,699,637,698867483,703,0 +59666,Wioska+dami991,348,686,699777556,2105,0 +59667,Twierdza+%28CSA-X%29,435,404,0,5136,31 +59668,Twierdza+%28CSA-Z%29,435,405,0,6873,32 +59669,Wioska+li%C5%9Bcia,501,732,849076953,1037,0 +59670,Wioska+sadomaso,332,514,849117695,350,0 +59671,Wioska+Bacik1906,487,263,849116980,26,0 +59672,Wioska+barbarzy%C5%84ska,710,399,699598425,2058,0 +59673,Wioska+kizak1,640,694,848953472,1458,0 +59674,Wioska,335,337,8758298,1627,0 +59675,Wioska+barbarzy%C5%84ska,264,530,0,85,0 +59676,Wioska+barbarzy%C5%84ska,728,559,17714,300,0 +59677,North+089,512,269,849064752,3967,8 +59678,Wioska+BedsideBrick477,454,272,849107391,104,0 +59679,Wioska+barbarzy%C5%84ska,740,518,1601917,1318,0 +59680,Wioska+barbarzy%C5%84ska,661,672,0,66,0 +59681,%24014%24+Ramzes,300,623,699550876,535,0 +59682,Wioska+barbarzy%C5%84ska,339,322,699796330,440,0 +59683,P%C3%B3%C5%82nocny+Bagdad,639,312,8847546,2250,0 +59684,K67+41,704,614,698867483,267,0 +59685,Wioska+barbarzy%C5%84ska,390,713,849014922,1250,0 +59687,PPF-36,575,276,1424656,879,0 +59688,Wioska+barbarzy%C5%84ska,568,728,6425087,125,0 +59689,Wioska+barbarzy%C5%84ska,372,299,698160606,2553,0 +59690,Wioska+bestleevatican,318,349,849073156,1533,0 +59691,PPF-53,520,268,1424656,183,0 +59692,Wioska+zbawiciel4,497,735,699751887,64,0 +59693,Wioska+barbarzy%C5%84ska,327,667,0,210,0 +59694,001,691,635,98294,524,0 +59695,Wioska+barbarzy%C5%84ska,407,282,699393759,679,0 +59696,Meh,612,715,848883791,609,0 +59698,Wioska+barbarzy%C5%84ska,708,390,699598425,2058,0 +59700,Wioska+barbarzy%C5%84ska,589,717,848995242,434,0 +59701,Wioska+Mikkerland,737,504,762859,269,0 +59702,104,736,466,7085502,706,0 +59704,Wioska+barbarzy%C5%84ska,740,514,1601917,185,0 +59705,Twierdza+%28MzM%29,595,564,0,3041,28 +59706,miglanc06,350,314,849119328,699,0 +59707,Spi%C5%BC,279,598,849049288,2818,0 +59708,Wioska+barbarzy%C5%84ska,656,314,698895940,455,0 +59710,budowa+08,600,712,7139820,584,0 +59711,Wioska+barbarzy%C5%84ska,263,453,0,237,0 +59712,Wioska+barbarzy%C5%84ska,607,714,848912937,106,0 +59713,Wioska+kuba987,679,348,699622958,97,0 +59714,Wioska+barbarzy%C5%84ska,734,495,6510480,184,0 +59716,Wioska+barbarzy%C5%84ska,392,706,849014922,1111,0 +59717,046.+tomnado,679,349,2873154,362,0 +59718,Osada+koczownik%C3%B3w,644,692,848987051,3291,5 +59719,Wioska+WhiteMuffin,658,316,699812824,32,0 +59720,Wioska+barbarzy%C5%84ska,360,689,0,188,0 +59722,%23146%23,676,659,692803,1132,0 +59723,Wioska+barbarzy%C5%84ska,597,723,699189792,879,0 +59724,Wioska38,327,345,699711926,1055,0 +59725,Wioska+Pan+%C5%9Awirusek,271,538,699831524,26,0 +59726,105,713,599,7085502,967,0 +59727,Bolszewo,338,335,699852606,72,0 +59728,Wioska+Krzysztofeks16,355,691,6298409,182,0 +59729,Wioska+barbarzy%C5%84ska,288,396,0,174,0 +59730,Wioska+naja1920ruch,261,491,849088923,26,0 +59731,Wioska+szymoniasty2740,286,597,849008396,352,0 +59732,WB23,297,367,356642,1472,0 +59733,Wioska+maciejasz3k,719,587,699699563,1066,0 +59734,Wioska+cyaaaa2,324,494,7560085,134,0 +59735,Osada+koczownik%C3%B3w,292,603,699321518,603,9 +59736,141.Stradi,413,274,698365960,415,0 +59737,Wioska+barbarzy%C5%84ska,328,658,0,151,0 +59738,Wioska+barbarzy%C5%84ska,461,267,0,46,0 +59739,WB35,289,383,356642,1148,0 +59740,Wioska+barbarzy%C5%84ska,267,483,698625834,148,0 +59741,Wioska+Omikronmen,609,506,849095448,1733,0 +59742,35+koczownik%C3%B3w+A,273,433,849018442,1988,3 +59743,Wioska+Chronek09,282,597,849110916,658,0 +59744,Wioska+barbarzy%C5%84ska,351,323,8772425,607,0 +59745,Wioska+Mc+Fly,728,444,849118930,128,0 +59746,WB26,299,368,356642,1444,0 +59747,Wioska+Rewson,735,553,849084911,26,0 +59748,Jehu_Kingdom_67,716,398,8785314,1021,0 +59749,Osada+koczownik%C3%B3w,344,681,6354098,919,5 +59750,Wioska+Zelmer,418,271,849117551,524,0 +59751,P%C3%B3%C5%82nocny+Bagdad,615,291,8847546,2237,7 +59752,GOAT,289,380,699535590,208,0 +59753,Wioska+barbarzy%C5%84ska,334,324,698388578,754,0 +59754,Wioska+Future+Traveler,262,523,8399822,26,0 +59755,PPF-41,582,276,1424656,702,0 +59756,O148,311,641,272173,1361,4 +59757,Wioska+barbarzy%C5%84ska,290,602,0,40,0 +59758,Wioska+barbarzy%C5%84ska,737,449,698191218,941,0 +59760,K66,697,628,698867483,708,0 +59762,Wioska+barbarzy%C5%84ska,397,710,849014922,1249,0 +59763,WB40,292,387,356642,427,1 +59764,Wioska+Minikod,471,735,849082839,26,0 +59765,Wioska+barbarzy%C5%84ska,403,723,849014922,1249,0 +59766,Wioska+piter787878,742,494,848982635,153,0 +59767,Wioska+barbarzy%C5%84ska,729,570,1601917,602,0 +59768,181+002,730,562,7272223,245,0 +59770,Wioska+sabaciorz,402,716,849101403,26,0 +59771,Wioska+t0m45,264,548,849111121,192,0 +59772,Wioska+barbarzy%C5%84ska,590,715,849098628,725,0 +59773,Wioska+barbarzy%C5%84ska,375,704,849014922,159,0 +59774,%5B844%5D+Odludzie,726,431,848985692,2923,0 +59775,Orzechowa+United,586,275,849112050,1223,0 +59776,Wioska+barbarzy%C5%84ska,368,309,698160606,1367,0 +59777,Wioska+MalinowaZaba,738,543,699677277,855,0 +59778,Wioska+barbarzy%C5%84ska,734,539,17714,471,0 +59779,Wioska+barbarzy%C5%84ska,269,481,698625834,47,0 +59780,P%C3%B3%C5%82nocny+Bagdad,623,292,8847546,1866,0 +59782,Wioska+Strusiek,735,536,699749184,422,0 +59783,Osada+koczownik%C3%B3w,257,503,699425709,388,1 +59784,K67+46,703,631,698867483,153,0 +59785,051,688,353,849091105,482,0 +59786,Wioska+Adison+II+%C5%9Amia%C5%82y,365,308,849113226,487,0 +59787,Wioska+barbarzy%C5%84ska,707,381,699574408,889,0 +59788,Wioska+Adikson16,730,566,849114112,143,0 +59789,P%C3%B3%C5%82nocny+Bagdad,599,287,8847546,1164,0 +59790,%C5%81%C3%B3d%C5%BA,708,382,698248308,1328,0 +59791,North+086,488,257,849064752,3546,0 +59792,Wioska+jaromirek,530,261,7516892,814,0 +59793,Wioska+barbarzy%C5%84ska,547,731,699878511,860,0 +59794,Wioska+goodvibegoodman,631,695,848909292,1284,0 +59795,Wioska+Akantos,556,729,698262808,50,0 +59797,KADRONGE,693,363,3957237,1342,0 +59798,Wioska+nawi4,393,713,7802435,1133,0 +59799,%23152%23,645,688,692803,915,0 +59800,Wioska+slawekkrasulak,735,485,699876653,26,0 +59801,%23156%23,621,711,692803,1974,0 +59802,Wioska+barbarzy%C5%84ska,658,680,0,48,0 +59803,%23145%23,675,663,692803,1089,0 +59806,Wioska+barbarzy%C5%84ska,259,521,698388578,368,0 +59807,Osada+koczownik%C3%B3w,561,266,699146580,901,1 +59808,Wioska+Poranna+Gwiazda,605,711,699753863,212,0 +59809,Wioska+barbarzy%C5%84ska,728,562,1601917,753,0 +59811,Wioska+barbarzy%C5%84ska,534,736,699878511,697,0 +59812,Wioska+barbarzy%C5%84ska,275,583,0,149,0 +59813,%C5%BBelaza+Pot%C4%99ga,614,299,849052195,226,0 +59814,Spray,680,352,7973893,816,0 +59815,Wioska+szalony+iwan,734,551,8772923,561,0 +59816,Wioska+orko3,718,601,7069895,174,0 +59817,031Luchowski,508,737,698620694,1777,0 +59818,75001...,549,732,8320319,158,0 +59819,39+barbarzy%C5%84ska+2B,264,444,849018442,2028,0 +59821,Wioska+barbarzy%C5%84ska,330,662,0,160,0 +59822,Osada+koczownik%C3%B3w,580,723,6299408,882,6 +59823,Wioska+barbarzy%C5%84ska,373,699,0,69,0 +59824,Zaplecze+Gubernia,354,316,699796330,1926,0 +59825,AKIKU,666,326,2315542,886,0 +59826,%5B0294%5D,267,496,8630972,1657,0 +59827,PPF-59,562,275,1424656,62,0 +59828,Wioska+barbarzy%C5%84ska,598,278,3600737,407,0 +59829,Wioska+epstein.,742,491,848905784,123,0 +59830,Kami+6,741,469,849002796,638,0 +59831,Wioska+barbarzy%C5%84ska,735,447,0,98,0 +59832,Wioska+barbarzy%C5%84ska,361,313,698160606,1893,0 +59833,Wypizdowo,676,662,849119631,189,0 +59834,Wioska+sendzia555,264,450,6294942,139,0 +59835,No.31,473,735,698826986,363,3 +59836,Wioska+drewniak,719,408,849119848,195,0 +59837,Wioska+barbarzy%C5%84ska,594,275,849100406,893,0 +59838,078KP,489,264,849063849,117,0 +59839,Wioska+barbarzy%C5%84ska,670,327,699072129,1559,0 +59840,Wioska+solek4321,260,461,699808655,1119,0 +59841,Wioska+barbarzy%C5%84ska,645,316,0,105,0 +59842,Wioska+bartki37,267,539,849016844,102,0 +59843,Sony+911,683,654,1415009,887,0 +59845,Wioska+barbarzy%C5%84ska,728,575,2453888,788,0 +59846,Wioska+barbarzy%C5%84ska,270,551,0,190,0 +59847,039.+Gloria+Victis,276,578,848886973,1115,0 +59849,Wioska+barbarzy%C5%84ska,259,487,0,57,0 +59851,Wioska+WitoldWolski,629,697,849119432,153,0 +59852,Wioska+barbarzy%C5%84ska,733,500,942959,472,0 +59853,Wioska+barbarzy%C5%84ska,564,275,699854484,73,0 +59854,P%C3%B3%C5%82nocny+Bagdad,618,294,8847546,2215,0 +59855,Wioska+Chwedi,388,288,848958005,1060,0 +59856,Wioska+barbarzy%C5%84ska,673,338,699072129,1297,0 +59857,Osada+koczownik%C3%B3w,730,560,848995478,939,6 +59858,079+-+Budowanko%21,510,742,7540891,216,0 +59859,Wioska+..Tomek..,585,590,849004759,2310,0 +59860,Wioska+barbarzy%C5%84ska,261,463,699213622,412,0 +59861,Wioska+festher,459,739,849117362,1311,0 +59862,Wioska+bielacz,275,582,849096265,877,0 +59863,Sony+911,692,642,1415009,1107,0 +59864,Wioska+barbarzy%C5%84ska,464,262,0,26,0 +59865,032Drewno,481,732,698620694,2635,0 +59866,Wioska+marekwalczyk,624,292,699155679,214,0 +59867,054+-+Budowanko%21,508,733,7540891,2667,1 +59868,BORKOS,721,398,3487721,1731,0 +59870,Wioska+barbarzy%C5%84ska,301,631,2289134,39,0 +59871,Wioska+barbarzy%C5%84ska,635,692,848987051,674,0 +59872,hyniu+2112,265,549,849094061,288,0 +59873,073KP,466,269,849063849,372,0 +59874,Wioska+barbarzy%C5%84ska,372,695,0,72,0 +59875,Radiowa,723,565,848932879,1093,0 +59876,Wioska+BastianCHW,728,417,849061406,26,0 +59877,Wioska+Varendial+x+Visyq,338,681,848977748,26,0 +59878,0124,721,421,698416970,519,6 +59879,akuku,551,729,6425087,659,0 +59880,Wioska+barbarzy%C5%84ska,320,651,0,131,0 +59881,Wioska+Damian0704,293,394,849075744,2200,0 +59882,Wioska+Maniek.W,639,692,699831603,26,0 +59883,Wioska+barbarzy%C5%84ska,727,421,699628084,324,0 +59884,181,732,457,565043,640,0 +59885,KASHYYYK+5,573,732,699383121,246,0 +59886,Wioska+SzCzAkUs,338,669,2684175,503,0 +59887,Wioska+barbarzy%C5%84ska,735,439,699524891,1025,0 +59888,0000040Z,277,568,849089881,3837,1 +59889,Wioska+Exodus303,614,503,849119994,998,0 +59890,0122,701,384,698416970,552,0 +59891,Wioska+barbarzy%C5%84ska,737,525,8742874,61,0 +59892,X.10,726,440,699737356,493,0 +59893,81+Calimera+%2B747.000%2B-102,717,413,2571536,206,0 +59894,Albiorix,383,298,3377503,311,0 +59895,Wioska+barbarzy%C5%84ska,621,708,699189792,322,0 +59896,Witten,596,724,849057450,1851,0 +59897,039+-+Salamanca,720,600,698342159,1041,0 +59898,Wioska+kijek,710,377,849115304,38,0 +59899,Wioska+barbarzy%C5%84ska,703,382,1415009,70,0 +59900,Wioska+Beast+Palladin,733,433,3362925,1082,0 +59901,Zzz+13+troch%C4%99+bardzo+daleko,283,582,849084740,476,0 +59902,Wioska+Dominoo1,734,560,699748916,429,0 +59903,Wioska+mustanq123,441,733,6851059,86,0 +59904,K67+32,714,602,698867483,731,0 +59905,081+-+Budowanko%21,495,733,7540891,79,0 +59906,Wioska+marcinpaluch0211,729,429,849120093,69,0 +59907,Wioska+barbarzy%C5%84ska,335,676,0,152,0 +59908,%230309+barbarzy%C5%84ska,439,273,1238300,102,0 +59909,Wioska+barbarzy%C5%84ska,396,712,849014922,35,0 +59910,Wioska+barbarzy%C5%84ska,348,685,0,60,0 +59911,North+075,502,266,849064752,3483,0 +59912,Wioska+wiNo,412,727,849095756,26,0 +59913,Orkowi+Zawodnicy+Dominuj%C4%85+Rybki,573,729,7589468,156,0 +59914,Wioska+barbarzy%C5%84ska,717,594,0,26,0 +59915,Osada+koczownik%C3%B3w,622,711,7589468,144,2 +59916,082+-+Budowanko%21,531,740,7540891,67,0 +59917,O161,321,660,272173,993,9 +59919,Wioska+barbarzy%C5%84ska,348,675,0,197,0 +59920,Wioska+barbarzy%C5%84ska,733,562,0,82,0 +59921,228+%7C,727,415,8000875,245,0 +59922,Wioska+onek666,588,281,849032413,379,0 +59923,047,725,410,849091105,595,0 +59924,Wioska+barbarzy%C5%84ska,454,270,0,36,0 +59925,North+087,498,265,849064752,3091,0 +59926,SERWAR,287,383,849119528,1604,0 +59927,Wioska+barbarzy%C5%84ska,386,289,0,45,0 +59928,Wioska+japacz,273,570,7809316,26,0 +59929,Wioska+barbarzy%C5%84ska,630,294,3600737,598,0 +59930,055+-+Budowanko%21,477,732,7540891,2667,2 +59931,Wioska+pol992,667,334,8468862,121,0 +59932,Wioska+barbarzy%C5%84ska,580,718,849098628,599,0 +59933,Wioska+Lego.,526,740,699778684,227,0 +59934,Wioska+Pietrasfryzjer,693,632,699866225,639,0 +59935,Wioska+barbarzy%C5%84ska,328,665,0,43,0 +59936,Wioska+barbarzy%C5%84ska,667,326,699072129,1356,0 +59938,o023,601,720,699189792,2742,0 +59939,Wioska+barbarzy%C5%84ska,283,404,0,36,0 +59940,0127,699,381,698416970,514,0 +59941,NO.+00,268,474,849118262,424,0 +59942,Wioska+barbarzy%C5%84ska,381,700,849014922,640,0 +59943,Wioska+damiano3106,396,288,848940223,129,0 +59944,Wioska+barbarzy%C5%84ska,358,686,0,140,0 +59945,Wioska+barbarzy%C5%84ska,599,279,0,191,0 +59946,Wioska+barbarzy%C5%84ska,457,263,699191455,318,0 +59947,Wioska+barbarzy%C5%84ska,656,327,0,51,0 +59948,Wioska+barbarzy%C5%84ska,718,392,699598425,1561,0 +59949,Pomiot+ob%C5%82%C4%99du,617,290,849118709,326,0 +59950,Wioska+barbarzy%C5%84ska,626,294,3600737,587,0 +59951,312,445,273,7271812,53,0 +59952,P%C3%B3%C5%82nocny+Bagdad,623,296,8847546,2030,0 +59953,81+kybb.,577,278,122492,878,0 +59954,Wioska+barbarzy%C5%84ska,357,311,3484132,2002,0 +59955,Wioska+barbarzy%C5%84ska,717,415,8325700,823,1 +59957,Wioska+barbarzy%C5%84ska,735,443,698191218,909,0 +59958,Wioska+barbarzy%C5%84ska,303,367,356642,45,0 +59959,Gwenville+017,453,271,848986638,521,0 +59960,Wioska+Mufferr,617,297,698455203,120,0 +59961,033Nawisy+lodowe,472,734,698620694,2333,0 +59962,001+Thais,695,646,699516250,5178,0 +59963,North+101,476,264,849064752,2545,0 +59965,Wioska+barbarzy%C5%84ska,605,708,0,81,0 +59966,Wioska+adamzagi,393,717,849103914,380,0 +59967,Wioska+barbarzy%C5%84ska,487,741,7540891,41,0 +59968,Wioska+barbarzy%C5%84ska,417,280,0,317,0 +59969,Wioska+barbarzy%C5%84ska,302,359,698388578,114,0 +59970,Apollo8,737,467,6590149,403,0 +59971,Wioska+damianslipiec,296,371,699865603,26,0 +59972,Wioska+DomiNio,290,377,849109705,357,0 +59973,Wioska+barbarzy%C5%84ska,575,731,7589468,144,0 +59974,001,280,587,8617889,1858,0 +59975,Wioska+justyna010114,724,413,849118261,489,0 +59976,Wioska+barbarzy%C5%84ska,377,697,849014922,823,0 +59977,P%C3%B3%C5%82nocny+Bagdad,613,289,8847546,2094,8 +59978,Wioska+mjk105,732,528,849103876,26,0 +59979,Wioska+barbarzy%C5%84ska,395,716,849014922,894,0 +59980,81+Dorian888,499,268,6423275,514,0 +59981,031,470,737,8268010,1008,0 +59982,nic+tu+po+mnie,482,268,849119862,483,0 +59983,WB31,291,381,356642,1235,8 +59984,Trundugl,290,619,849117196,958,0 +59985,Wioska+barbarzy%C5%84ska,716,405,699598425,1385,0 +59986,079+obrze%C5%BCa,265,560,699510259,1487,8 +59987,Wioska+barbarzy%C5%84ska,271,549,0,39,0 +59988,Wioska+barbarzy%C5%84ska,464,739,0,29,0 +59989,Wioska+barbarzy%C5%84ska,359,692,0,181,0 +59990,Wioska+barbarzy%C5%84ska,350,317,0,82,0 +59993,North+088,501,268,849064752,3080,0 +59995,Wioska+pisior18,610,290,699551148,62,0 +59996,Wioska+jaro513,555,733,849118128,228,0 +59997,Wioska+barbarzy%C5%84ska,312,346,0,118,0 +59998,Wioska+pogromca+xcc,660,674,8926516,176,0 +59999,034Dendystka,474,740,698620694,2444,0 +60000,Ks+Konfederacja,695,360,848915730,1779,5 +60001,Wioska+jozin4don,292,613,849106548,566,0 +60002,Wioska+barbarzy%C5%84ska,353,689,0,159,0 +60004,New+World,425,724,698152377,2064,0 +60005,Wioska+skwarol888,398,281,699741694,630,0 +60006,P%C3%B3%C5%82nocny+Bagdad,605,289,8847546,1110,0 +60007,Wioska+Jacymir15,538,735,849117536,68,0 +60008,Wioska+barbarzy%C5%84ska,724,566,0,32,0 +60009,Melina,276,416,699854312,391,0 +60010,Wioska+Sir+fojerman,690,366,698885960,97,0 +60011,Moja1,724,422,849114119,1107,0 +60012,Wioska+barbarzy%C5%84ska,315,652,2289134,152,0 +60013,Wioska+lukasz111,576,730,849066035,237,0 +60014,Wioska+barbarzy%C5%84ska,446,728,0,28,0 +60015,Wioska+barbarzy%C5%84ska,522,736,699878511,534,0 +60016,Wioska+gnom1,627,699,849119476,301,0 +60017,Wioska+barbarzy%C5%84ska,598,716,849098628,414,0 +60018,zenek12,685,656,849118820,289,0 +60019,47+barbarzy%C5%84ska,268,429,849018442,833,0 +60020,Pallet+Town,268,542,849119423,537,0 +60021,Wioska+barbarzy%C5%84ska,403,720,0,55,0 +60022,142.Stradi,391,287,698365960,447,0 +60023,Wioska+bartek145972,662,325,8942143,339,0 +60024,Wioska+barbarzy%C5%84ska,284,611,0,103,0 +60025,Osada+koczownik%C3%B3w,406,287,6343784,889,5 +60026,Wioska+rutej123,284,591,699720374,116,0 +60027,Zzz+14+dalej+ni%C5%BC+daleko,280,586,849084740,245,0 +60028,Wioska+Chmielu94,649,686,849105187,115,0 +60029,47.,334,667,8665783,106,0 +60031,Wioska+barbarzy%C5%84ska,728,586,699493750,277,0 +60032,Wioska+Kampffliege,585,282,849120421,119,0 +60033,Wioska+badidek,702,374,9002278,26,0 +60034,Wioska+borowka73,732,567,2811568,408,0 +60035,Wioska+barbarzy%C5%84ska,371,704,849014922,451,0 +60036,Wioska+Tomaszer12,670,662,849119407,525,0 +60037,Wioska+Wanderwoman,697,410,849120438,519,0 +60038,Wioska+181,410,717,849120129,928,0 +60039,Wioska+barbarzy%C5%84ska,266,545,0,70,0 +60040,P%C3%B3%C5%82nocny+Bagdad,608,288,8847546,820,0 +60042,019,394,283,699694284,1310,0 +60044,Wioska+barbarzy%C5%84ska,546,737,699878511,479,0 +60045,Wioska+barbarzy%C5%84ska,714,385,0,86,0 +60046,Wioska+smerfy+22,384,293,849116819,52,0 +60047,Wioska+barbarzy%C5%84ska,304,636,2289134,212,0 +60049,CastAway+%21041,718,592,9314079,423,0 +60050,Wioska+barbarzy%C5%84ska,738,465,0,38,0 +60051,Wioska+barbarzy%C5%84ska,721,425,849095599,362,0 +60052,Osada+koczownik%C3%B3w,725,587,699493750,433,3 +60053,Wioska+bonktrzmiel+I,627,304,849120488,269,0 +60054,PPF-38,529,259,1424656,684,0 +60055,Wioska+barbarzy%C5%84ska,719,406,0,81,0 +60056,010+x,273,557,197581,1137,5 +60057,Miasteczko,636,299,849046206,1117,0 +60058,Wioska+barbarzy%C5%84ska,344,315,699191464,529,0 +60059,Wioska+Przemko+duch,317,341,849119975,627,0 +60060,Wioska+barbarzy%C5%84ska,708,392,699598425,135,0 +60061,40+Dol+Blathanna,740,469,8976313,472,0 +60062,North+077,486,264,849064752,3078,6 +60063,TuRawka,597,716,849120285,165,0 +60064,%23159%23,662,674,692803,696,0 +60065,Wioska+v3n1s,644,307,849109875,180,0 +60066,X.09,726,447,699737356,488,0 +60068,PPF-42,536,260,1424656,623,0 +60069,Wioska+Mandrysi,605,715,849116044,295,0 +60070,Osada+koczownik%C3%B3w,608,715,699828685,843,6 +60071,Wioska+coreslaw,668,666,699564303,200,0 +60072,Wioska+barbarzy%C5%84ska,594,714,699828685,437,0 +60073,Wioska+Sir+Pazdan,266,462,9270302,1333,0 +60074,076,666,332,2502956,296,5 +60075,Wioska+polska222,647,683,849102833,251,0 +60076,Wioska+barbarzy%C5%84ska,376,710,0,45,0 +60077,Wioska+barbarzy%C5%84ska,300,636,2289134,231,0 +60078,Wioska+fikumiku111,741,526,849055527,179,0 +60079,%23157%23,609,718,692803,696,0 +60081,FP057,446,730,699605333,1382,0 +60082,Wioska+barbarzy%C5%84ska,394,281,0,40,0 +60083,K67+33,718,603,698867483,754,0 +60084,Wioska+miro2558,669,670,1170102,204,0 +60085,Wioska+barbarzy%C5%84ska,725,427,698191218,684,0 +60086,Wioska+barbarzy%C5%84ska,265,564,0,35,0 +60087,PPF-39,521,267,1424656,683,0 +60088,NOT%3F,310,348,9236866,1372,4 +60089,Wioska+dorkness,700,620,849055096,136,0 +60090,%5B0295%5D,266,494,8630972,445,0 +60091,Wioska+barbarzy%C5%84ska,580,280,0,40,0 +60092,kww10,728,547,699831860,486,0 +60093,Wioska+barbarzy%C5%84ska,742,497,0,132,0 +60094,Wioska+Zdrowa+Pi%C4%99ta+Achillesa,280,406,699699650,26,0 +60095,Zaplecze+Osada+2,357,312,699796330,2125,2 +60096,Wioska,723,568,2516620,312,0 +60097,48+barbarzy%C5%84ska,271,448,849018442,834,0 +60098,048,733,442,849091105,511,1 +60099,Wioska+apysia,739,456,1322622,200,0 +60100,oliwka.+1,290,600,849078119,384,0 +60101,Wioska+jjaare,392,290,7013660,827,0 +60102,Wioska+Miko6,732,525,6704738,312,0 +60103,Osada+koczownik%C3%B3w,579,271,849064614,868,8 +60104,Wioska+Sir+kamil+1999,374,572,9182487,119,0 +60105,koniec,626,698,699883836,136,0 +60106,5%2C56mm+Grot,486,256,3430969,1023,0 +60107,Wioska+barbarzy%C5%84ska,378,701,849014922,308,0 +60108,Wioska+Mario+76,453,733,699672060,628,0 +60109,Wioska+barbarzy%C5%84ska,737,534,8742874,308,0 +60110,Wioska+adahin,387,413,7995033,487,0 +60111,Wioska+Kapral161,418,730,849098217,292,0 +60112,Wioska+barbarzy%C5%84ska,727,549,17714,264,0 +60113,Wioska+rere1995,271,456,1020792,885,0 +60114,Wioska+barbarzy%C5%84ska,730,578,2453888,545,0 +60115,Wioska+adamcx91,406,723,849111418,1457,0 +60116,North+105,492,258,849064752,2816,0 +60117,Wioska+JungleBoyz,616,408,7915966,5873,0 +60118,Wioska+barbarzy%C5%84ska,736,559,848995478,1808,0 +60120,Wioska+barbarzy%C5%84ska,618,711,849104491,355,0 +60121,Wioska+Latino,286,593,848893447,26,0 +60122,Wioska+barbarzy%C5%84ska,360,694,0,136,0 +60123,Wioska+barbarzy%C5%84ska,307,635,0,26,0 +60124,Wioska+Krzysiek12,419,271,849117533,73,0 +60125,KONFA+TO+MARKA%2C+NARKA,276,410,698152377,2070,0 +60126,Wioska+LOCODEMACONHA,294,370,699832737,26,0 +60127,%23162%23,659,676,692803,575,0 +60128,Wioska+Micha%C5%82+z%C5%82o%C5%9Bliwy,295,615,849107426,310,0 +60129,039.+5spajk5,678,349,2873154,563,0 +60131,Wsch%C3%B3d+004,708,616,698562644,467,0 +60133,Wioska+barbarzy%C5%84ska,725,420,699524891,952,0 +60134,181,656,328,8890346,528,0 +60135,Wioska+barbarzy%C5%84ska,308,640,2289134,153,0 +60136,Wioska+barbarzy%C5%84ska,419,273,0,61,0 +60137,Wioska+barbarzy%C5%84ska,620,712,698353083,513,0 +60139,o021,628,702,699189792,2422,0 +60140,Wioska+barbarzy%C5%84ska,712,402,0,26,0 +60141,Wioska+barbarzy%C5%84ska,371,702,849014922,451,0 +60142,Wioska+ptomptom,523,261,699780721,634,0 +60143,C0331,268,547,8841266,1631,0 +60144,Wioska+Ankalagon+Czarny,348,313,1517450,280,0 +60145,Wioska+barbarzy%C5%84ska,712,387,0,26,0 +60146,Wioska+barbarzy%C5%84ska,378,711,849014922,641,0 +60147,Wioska+Kolekcjon,365,299,849120526,140,0 +60148,Wioska+barbarzy%C5%84ska,376,705,849014922,451,0 +60149,Wioska+matipo321,274,580,849114450,113,0 +60150,Lord+Lord+Franek+.%23190,698,359,698420691,999,0 +60151,Wioska+Rommel,260,516,698983867,371,0 +60152,Wioska+Krejv95,286,600,699554427,26,0 +60153,Wioska+barbarzy%C5%84ska,295,630,2289134,245,0 +60154,Stopy,279,407,849108891,303,0 +60155,125.Stradi,449,268,698365960,1828,0 +60156,Wioska+Lodar93,346,688,9138661,26,0 +60157,Wioska+barbarzy%C5%84ska,450,268,699644852,153,0 +60159,041Szaraki,476,736,698620694,1972,0 +60160,Wioska+KamykosXD,272,426,9128606,70,0 +60161,059+-+Budowanko%21,518,735,7540891,1731,0 +60162,New+World,416,728,698152377,1968,3 +60163,111,354,306,698384726,295,0 +60164,Wioska+barbarzy%C5%84ska,566,732,699878511,479,0 +60165,Wioska+rozyczka,493,742,849120698,784,0 +60166,Wioska+Herkuless,413,725,699642954,887,0 +60167,Wioska+barbarzy%C5%84ska,406,719,849014922,451,0 +60168,Wioska+Martynka2010,348,683,849120865,66,0 +60169,042Ko%C5%84c%C3%B3wka,466,741,698620694,1679,0 +60170,Wioska+kamien335,738,522,8886999,54,0 +60171,P%C3%B3%C5%82nocny+Bagdad,610,285,8847546,893,0 +60172,Wioska+Zachariasz+Grundbaum,435,732,849096979,26,0 +60173,Wioska+paviks,313,649,849119486,26,0 +60174,Aa4,589,715,849097614,1673,0 +60175,Wioska+Knoxpl,705,617,849108157,425,0 +60177,juVe,676,653,698167153,1179,0 +60178,119.+Lida+Aye,675,668,8337151,1186,0 +60179,Wioska+piotrus507,353,692,3973432,26,0 +60180,YYY,476,742,2293376,2135,0 +60181,Wioska+patrykoss93,264,544,3428961,26,0 +60182,znam+ostropesta+4,436,732,699777372,755,0 +60183,wilcza+wioska,643,310,848976720,412,0 +60184,Wioska+barbarzy%C5%84ska,298,629,2289134,199,0 +60185,Wioska+igrane5000,730,437,699655364,26,0 +60186,090+obrze%C5%BCa,266,561,699510259,378,0 +60188,Wioska+barbarzy%C5%84ska,732,456,699524891,1313,0 +60189,Wioska+skowron,565,498,8831977,182,0 +60190,KONFA+TO+MARKA%2C+NARKA,277,407,698152377,1875,0 +60191,Wioska+smagi007,259,508,6193337,887,0 +60192,Wioska+tinki,329,670,849120855,26,0 +60193,037.+Gloria+Victis,268,575,848886973,1348,0 +60194,Wioska+kokso420,732,445,3734803,26,0 +60195,Wioska+Nowicjusz1,560,729,849113063,64,0 +60196,Wioska+Wolin,263,470,849100891,583,0 +60197,%5B0296%5D,263,499,8630972,124,0 +60198,Wioska+tribal766,671,666,849116089,26,0 +60199,%23160%23,667,678,692803,624,0 +60200,Wioska+wuener,360,311,8889781,462,0 +60201,Wioska+barbarzy%C5%84ska,721,586,698191218,485,0 +60202,Wioska+thor13,322,349,849103113,398,0 +60203,Wioska+barbarzy%C5%84ska,267,453,699213622,341,0 +60204,Wioska+Mr.SoLo,511,737,699366937,578,0 +60205,Wioska+Pongo,302,633,849116225,46,0 +60206,Wioska+barbarzy%C5%84ska,283,604,0,134,0 +60207,Wioska+jekord,609,284,849031779,26,0 +60208,Wioska+PiotrBiznes,670,335,849105032,114,0 +60209,Wioska+lech3838,610,708,6078176,120,0 +60210,Wioska+Impro,484,262,699875086,26,0 +60211,Wioska+sebo1303,547,735,848949271,135,0 +60212,P%C3%B3%C5%82nocny+Bagdad,594,287,8847546,824,0 +60213,Wioska+Dzymek10,543,274,2514219,146,0 +60214,063+-+Budowanko%21,535,734,7540891,1375,0 +60215,Wioska+Elendila,459,265,699345087,26,0 +60216,062+-+Budowanko%21,468,738,7540891,1352,0 +60217,Wioska+NajlepszyZiomekWeWsi,509,735,699360521,135,0 +60218,49+barbarzy%C5%84ska,267,443,849018442,792,0 +60219,Wioska+Huayna+Capac,339,678,848964085,26,0 +60220,058,694,638,699099811,331,0 +60221,Wioska+Smerf%C3%B3w,462,261,8239348,128,0 +60222,Wioska+Kamileq69,277,597,849099785,26,0 +60223,Wioska+barbarzy%C5%84ska,557,735,699878511,413,0 +60224,Wioska+DzikiDzik,275,568,699405877,132,0 +60225,Wioska+WillyBilly,715,603,849117644,26,0 +60226,Wioska+barbarzy%C5%84ska,728,457,849095435,228,0 +60227,Autopsja,735,501,7313287,1115,0 +60228,Wioska+barbarzy%C5%84ska,737,476,699524891,1244,0 +60229,Wioska+akamee,354,687,699767482,26,0 +60230,Wioska+barbarzy%C5%84ska,450,264,699644852,139,0 +60231,Wioska+Rejku30,310,647,699648975,71,0 +60232,KONFA+TO+MARKA%2C+NARKA,274,411,698152377,1900,0 +60233,Wioska+GrubySponsor,327,331,849119078,141,0 +60234,K67+36,711,621,698867483,480,0 +60235,Wioska+jankes630,594,284,3264281,73,0 +60236,O157,294,631,272173,600,0 +60238,Wioska+barbarzy%C5%84ska,536,738,7590135,244,0 +60239,Wioska+rainyday,565,729,7180447,383,0 +60240,Wioska+barbarzy%C5%84ska,738,452,849095599,171,0 +60241,Wioska+LodowyPty%C5%9B,464,263,699870923,26,0 +60242,PPF-45,546,261,1424656,552,0 +60243,Osada+koczownik%C3%B3w,328,327,699304554,279,1 +60244,Wioska+Kilmonn,602,289,849101656,72,0 +60245,KONFA+TO+MARKA%2C+NARKA,276,426,698152377,1928,0 +60246,Osada+koczownik%C3%B3w,581,270,699146580,288,3 +60248,North+107,487,257,849064752,2216,0 +60249,KOIEC+NIC+NIE+ROBI%C4%86,288,600,849110289,603,0 +60250,Wioska+barbarzy%C5%84ska,666,330,699072129,1132,0 +60251,Wioska+kamillo220,326,668,698403524,26,0 +60252,Wioska+barbarzy%C5%84ska,373,301,849017820,432,0 +60253,Wioska+I,400,288,699798847,133,0 +60254,C0343,259,532,8841266,652,3 +60255,neo328,638,308,7114815,158,0 +60257,Wioska+miki0412,676,663,9219778,166,0 +60258,Wioska+barbarzy%C5%84ska,733,520,1601917,359,0 +60259,C0348,262,520,8841266,453,0 +60260,Wioska+Jack+Daniels,429,731,849090289,126,0 +60261,Wioska+barbarzy%C5%84ska,386,716,849014922,451,0 +60263,Wioska+stopercool,286,617,8366849,139,0 +60264,K67+35,704,615,698867483,653,0 +60265,Wioska+Hwastu,569,732,849004338,26,0 +60266,Wioska+barbarzy%C5%84ska,670,340,699072129,762,0 +60267,Polska,366,704,849099425,678,0 +60268,Wioska+VaniaMay,262,495,849109701,382,0 +60269,TWIERDZA+DAMIK,579,274,6143689,474,0 +60270,Wioska+Ludwik+3,538,269,1757722,175,0 +60271,Wioska+barbarzy%C5%84ska,266,565,6892517,267,0 +60272,Wioska+leon1214,696,625,849109152,111,0 +60273,KONFA+TO+MARKA%2C+NARKA,280,403,698152377,1378,0 +60274,Wioska+Michal1614,338,321,849120966,26,0 +60275,mc02,708,387,848939131,336,0 +60276,Wioska+De+Integro,593,280,7431759,32,0 +60277,061+-+Budowanko%21,479,737,7540891,1358,0 +60278,Wioska+Danielo3,265,461,849092875,26,0 +60279,Wioska+barbarzy%C5%84ska,301,638,2289134,147,0 +60280,Wioska+Rychu0890,328,659,849024208,517,0 +60281,Wioska+Mizerkaa,571,731,849001388,26,0 +60282,50+barbarzy%C5%84ska,276,437,849018442,791,0 +60283,Wioska+adrianh3,737,480,2083273,26,0 +60284,Wioska+Lord+patban177,697,630,849109232,448,0 +60285,034,442,732,8268010,260,0 +60286,-001-+Osada,337,319,699406101,815,0 +60287,Wioska+AP1997,419,730,848973968,249,0 +60288,51+barbarzy%C5%84ska,265,443,849018442,1032,0 +60289,Wioska+EpsHunT,496,741,849109601,26,0 +60290,067+-+Budowanko%21,533,732,7540891,926,0 +60291,Wioska+Timb3r,580,270,698298333,26,0 +60292,Wioska+Anko+Itosu,278,429,699855469,26,0 +60293,Wioska+barbarzy%C5%84ska,585,724,849098628,329,0 +60294,Wioska+kozielniak,488,266,849118827,141,0 +60295,%23170%23,639,693,692803,198,0 +60296,Wioska+Terror+x+Miniqo,542,260,9154293,26,0 +60297,Wioska+Kwiatuu,457,266,699264947,26,0 +60298,Wioska+barbarzy%C5%84ska,737,540,17714,165,0 +60299,Wioska+wtkc,259,512,148405,26,0 +60300,Wioska+marekttt,703,636,848893520,26,0 +60301,Wioska+barbarzy%C5%84ska,329,666,0,128,0 +60302,Starogr%C3%B3d,296,629,849063605,291,0 +60303,071KP,471,260,849063849,290,0 +60304,Wioska+Kulfix,279,605,849114040,521,0 +60305,Wioska+barbarzy%C5%84ska,290,603,0,82,0 +60307,Wioska+Nicosta,309,636,8984336,26,0 +60308,Wioska+barbarzy%C5%84ska,279,582,699016994,245,0 +60309,043+Ave+WHY,487,733,698620694,1497,5 +60311,Wioska+ARENTHAI,564,266,849121036,70,0 +60312,069KP,469,266,849063849,290,0 +60313,Wioska+Saladyn+Pustyny,289,613,8043286,26,0 +60315,North+106,522,266,849064752,2097,0 +60316,Twierdza,319,341,699795301,1557,0 +60317,Wsch%C3%B3d+006,705,624,698562644,289,0 +60318,Wioska+Ppfarmer,287,404,849121337,26,0 +60319,Wioska+barbarzy%C5%84ska,686,345,699072129,977,0 +60321,K66,697,627,698867483,451,0 +60322,Wioska+sajmon117,642,685,2727535,26,0 +60323,Wioska+barbarzy%C5%84ska,350,686,0,122,0 +60324,Wioska+Patryk95,688,358,849114664,26,0 +60325,North+112,492,260,849064752,1668,0 +60326,Bexaaa,455,569,698698087,1129,0 +60328,Wioska+Jar0o,703,367,1610267,115,0 +60330,038.+Gloria+Victis,278,575,848886973,1129,0 +60331,Wioska+Lord+Dan+1,403,287,849121331,567,0 +60332,Wioska+barbarzy%C5%84ska,329,672,0,126,0 +60333,Wioska+aghjs5,419,278,849113556,269,0 +60334,North+108,511,261,849064752,2190,0 +60335,Wioska+PiotrekPazzi,336,328,848917127,158,0 +60336,Wioska37,325,342,699711926,1081,0 +60338,Lecymy+DUR,340,329,6169408,216,0 +60339,Osada+koczownik%C3%B3w,368,702,849014922,407,6 +60340,Wioska+OcHnIK,314,647,40666,26,0 +60341,bla+bla+2,256,504,849091084,134,0 +60342,Wioska+Ksi%C4%99ga+przyrodniczo,730,421,7495050,102,0 +60343,%3DSAwars%3D08%3D,596,276,849106420,378,0 +60344,Wioska+Hilwoz,256,497,671516,26,0 +60345,Wioska+barbarzy%C5%84ska,505,734,698620694,1157,0 +60346,Osada+koczownik%C3%B3w,461,264,699191449,281,2 +60347,Wioska+afibatin,664,320,6326215,58,0 +60348,Wioska+barbarzy%C5%84ska,339,681,0,59,0 +60350,Osada+koczownik%C3%B3w,603,289,699146580,148,7 +60351,Wioska+KATOZAUR,520,738,699156456,77,0 +60352,TOLCIA+5,640,314,699868739,296,0 +60353,Wioska+ekopark,270,561,848993903,52,0 +60354,Wioska+barbarzy%C5%84ska,331,328,699304554,185,0 +60355,Wioska+Habibi+Malik,301,369,849090243,85,0 +60356,New+World,428,723,698152377,1715,0 +60357,Wioska+golem6,654,316,1085802,26,0 +60359,224+%7C,722,404,8000875,94,0 +60360,Wioska+xLyn,678,338,849121483,599,0 +60361,Wioska+cwaniaczek25,273,421,848930996,26,0 +60362,Gliwice,679,346,848932879,361,0 +60363,Wioska+mani4884,264,529,848923646,26,0 +60364,52+barbarzy%C5%84ska,267,429,849018442,865,0 +60365,Barbakan,509,339,7803631,1027,0 +60366,Wioska+barbarzy%C5%84ska,260,536,0,107,0 +60367,Wioska+huzar28,425,273,849121389,26,0 +60368,Napewno+to+nie+jest+off,637,298,848912265,354,1 +60369,Wioska+moskittt,738,476,8204028,307,0 +60370,Wioska+barbarzy%C5%84ska,285,392,0,107,0 +60371,FARMA+nie+przejmowac,641,310,699492120,168,0 +60372,Wioska+Feruell,738,530,699825977,133,0 +60373,Kiszyni%C3%B3w,406,278,699588526,460,0 +60374,Wioska+tomek-gt,721,603,699867390,435,0 +60375,KONFA+TO+MARKA%2C+NARKA,270,417,698152377,1390,0 +60376,Wioska+Maniek28a,649,309,2942206,721,0 +60377,Wioska+barbarzy%C5%84ska,718,583,2453888,240,0 +60378,Wioska+faraon1981,642,477,849006011,453,0 +60379,Na+SsSskraju,270,571,1536625,256,0 +60380,Wioska+ProCzacha,299,378,849099660,26,0 +60381,New+World,414,719,698152377,1373,0 +60382,Wioska+mikos,590,277,849109072,291,0 +60383,Wygwizd%C3%B3w,279,593,849096458,706,0 +60384,Wioska+RYSIO+E46,264,509,699812828,26,0 +60385,Wioska+barbarzy%C5%84ska,735,486,699574408,521,0 +60387,Wioska+barbarzy%C5%84ska,486,742,698620694,1179,0 +60388,Wioska+justyna1234,366,665,849103595,50,0 +60389,246,366,298,7271812,278,0 +60390,Wioska+ten+kt%C3%B3ry+kroczy,268,467,1794060,121,0 +60391,Wsch%C3%B3d+007,714,597,698562644,234,0 +60392,Wioska+barca35fcb,739,489,849118043,26,0 +60393,Wioska+barbarzy%C5%84ska,712,598,8323711,122,0 +60394,Wioska+Dziobson266,683,651,699617524,203,0 +60395,Wioska+barbarzy%C5%84ska,422,277,849038597,801,0 +60396,Wioska+marart2,320,341,699380730,53,0 +60397,G%C3%B3ra+3,440,269,849096310,345,0 +60398,Wioska+Sir+Wiking,269,543,8790027,109,0 +60399,Wioska+rewox,701,361,849119017,26,0 +60400,Wioska+barbarzy%C5%84ska,603,284,849064614,117,0 +60401,PPF-46,543,270,1424656,339,4 +60402,Wioska+Sir+NoToKredki,643,693,699560963,56,0 +60403,Wioska+owen10,737,483,366938,26,0 +60404,Wioska+aegalionkak,291,607,848912151,26,0 +60405,Wioska+barbarzy%C5%84ska,363,311,3484132,1453,0 +60406,Wioska+gis1969b,507,258,7096208,26,0 +60407,Wioska+tomas289,659,682,849099255,26,0 +60408,%23164%23,641,700,692803,388,0 +60410,Wioska+barbarzy%C5%84ska,734,548,1601917,359,0 +60411,Wioska+Angelina2013,266,535,849097729,132,0 +60412,Wioska+ivanov66,739,532,2559569,412,0 +60414,Wioska+barbarzy%C5%84ska,553,736,699878511,319,0 +60415,Wioska+grzeg,277,580,699826312,387,0 +60416,Wioska34,329,340,699711926,1297,0 +60417,Wioska+TheZeNiT,697,360,849009945,26,0 +60419,Wioska+barbarzy%C5%84ska,636,306,0,101,0 +60420,Wioska+Khorstes,722,586,8709940,26,0 +60421,Wioska+barbarzy%C5%84ska,742,468,699524891,424,0 +60422,Osada+koczownik%C3%B3w,391,708,849014922,287,3 +60423,Wioska+drzyzga123,517,257,849121725,26,0 +60424,Wioska+barbarzy%C5%84ska,310,653,2289134,103,0 +60425,Wioska+-umino-,626,293,8662264,26,0 +60426,Wioska+-+V+-,726,581,9153430,241,0 +60427,KONFA+TO+MARKA%2C+NARKA,284,398,698152377,1072,0 +60429,Wioska+jaktoon,475,743,848997058,78,0 +60430,060,681,656,699099811,71,0 +60431,Wioska+METALCORE,311,637,849110644,121,0 +60432,Wioska+ManchesterKing,651,309,849002486,79,0 +60433,Wioska+Tomus+01011973,729,550,849051363,337,0 +60434,Mat05usz,733,438,849088515,1700,0 +60435,Wioska+robotykjakinny,561,275,849121746,26,0 +60436,_001_+Wioska+barbarzy%C5%84ska,708,388,849095068,853,0 +60437,Wioska+muchaPG,706,369,698866770,495,0 +60438,Wioska+012,743,510,2999957,1050,0 +60440,Wioska+Deadshot,551,270,921888,26,0 +60441,Wioska+barbarzy%C5%84ska,648,315,0,71,0 +60442,Wioska+%2AKaziu%2A,462,260,848966404,47,0 +60443,Wioska+Zaba12,601,280,699760696,26,0 +60444,Wioska+barbarzy%C5%84ska,643,685,698191218,169,0 +60445,Wioska+Chubi,638,299,8290773,26,0 +60446,Wygwizd%C3%B3wek,277,598,849096458,219,0 +60447,KONFA+TO+MARKA%2C+NARKA,274,423,698152377,1366,8 +60448,Wioska+floraI,740,468,566379,252,0 +60449,Aa6,603,721,849097614,1374,0 +60450,Wioska+tyskie323,501,733,849093724,129,0 +60451,Wioska+barbarzy%C5%84ska,609,719,849098628,143,0 +60452,Wioska+Abazur,596,275,849028040,80,0 +60453,Vivek,290,617,849114603,222,0 +60454,Wioska+barbarzy%C5%84ska,327,664,0,48,0 +60455,Wioska+xFacHoWieCx,597,713,9073704,26,0 +60456,KONFA+TO+MARKA%2C+NARKA,287,396,698152377,723,0 +60457,Wioska,256,495,1034117,357,0 +60458,Wioska+barbarzy%C5%84ska,357,684,0,76,0 +60459,Wioska+MarcinMazury+1,294,605,849081641,290,0 +60460,Sony+911,689,652,1415009,581,0 +60461,Polandia,644,310,849121570,240,0 +60462,Wioska+barbarzy%C5%84ska,579,725,849098628,201,0 +60463,Wioska+mati997,423,269,849121835,438,0 +60464,Wioska+solidna,310,643,9098296,182,0 +60466,Wioska+barbarzy%C5%84ska,731,578,2453888,400,0 +60467,Osada+koczownik%C3%B3w,740,485,699524891,417,8 +60468,Wioska+Yomikuri,264,531,849108148,203,0 +60469,065+-+Budowanko%21,502,745,7540891,1008,0 +60470,Wioska+Danka+Ch,292,388,7605446,506,0 +60471,Wioska+barbarzy%C5%84ska,381,704,849014922,274,0 +60472,Wioska+Wysypisko+%C5%BBycia,403,321,698147969,115,0 +60473,Wioska+barbarzy%C5%84ska,542,737,849078942,258,0 +60475,Wioska+barbarzy%C5%84ska,320,335,698388578,40,0 +60476,032+Wioska,736,455,699671454,529,7 +60477,Wioska+trend,710,375,849118806,338,0 +60478,Wioska+barbarzy%C5%84ska,342,675,0,95,0 +60479,Wioska+yaruciak1,704,617,699346267,26,0 +60480,077+-+Budowanko%21,519,742,7540891,314,0 +60481,Wioska+Malfoja,261,458,849121811,158,0 +60482,Wioska+barbarzy%C5%84ska,386,703,849014922,264,0 +60483,Wioska+RudnikDagger,285,615,699577663,26,0 +60484,Wioska+barbarzy%C5%84ska,263,511,1164249,72,0 +60485,Wioska+niunia+wredna,298,395,8423835,525,0 +60486,Wioska+barbarzy%C5%84ska,733,480,8877886,288,0 +60487,%23001+-+Zamek+Wartburg,353,319,8595633,284,0 +60488,Wioska+barbarzy%C5%84ska,281,594,0,78,0 +60489,Wioska+AzER,387,290,8704709,26,0 +60490,63+barbarzy%C5%84ska,267,450,849018442,488,0 +60491,Wioska+QdamianQ,392,281,848965205,93,0 +60492,126.Stradi,429,275,698365960,1112,0 +60493,Wioska+Sonomi,407,717,7322865,26,0 +60494,055,711,383,849091105,111,0 +60495,Wioska+5dych,411,721,848930498,140,0 +60496,Wioska+barbarzy%C5%84ska,578,270,849064614,345,0 +60497,Wioska+rambo3423,415,726,849110479,115,0 +60498,Wioska+olimpijska,638,309,849040462,229,0 +60499,Wioska+Limited23,277,592,848963694,241,0 +60500,Wioska+barbarzy%C5%84ska,266,515,0,71,0 +60501,Wioska+shakeit1,608,285,6178803,26,0 +60502,North+114,495,262,849064752,1064,0 +60503,Wioska+kristoferix,402,392,849073486,26,0 +60504,Wioska+barbarzy%C5%84ska,440,264,699191449,241,0 +60505,Wioska+Marian1960,345,312,699714935,177,0 +60506,Wioska+barbarzy%C5%84ska,586,727,8627359,980,0 +60507,81skorbyk.,269,564,129795,560,0 +60508,KONFA+TO+MARKA%2C+NARKA,279,409,698152377,1374,0 +60509,Wioska+Dj-saken,708,393,848995262,445,0 +60510,Wioska+barbarzy%C5%84ska,268,473,849095814,233,0 +60511,HotChrum,317,652,849012219,219,0 +60512,Osada+koczownik%C3%B3w,655,315,698895940,658,7 +60513,Wioska+Mishkkk,437,269,849119827,337,0 +60514,Wioska+barbarzy%C5%84ska,714,617,1415009,80,0 +60515,Krzysiek933,385,294,699603033,102,0 +60516,Wioska+barbarzy%C5%84ska,262,534,1861962,212,0 +60517,Wioska+mrufki+komandoski,363,701,1525273,197,0 +60518,Wioska+anita,733,556,849121975,264,0 +60519,Wsch%C3%B3d+008,704,627,698562644,201,0 +60520,Wioska+Laduu,297,375,848887011,95,0 +60521,Wioska+jack2,260,492,849104310,195,0 +60522,068-+Mroczna+Oada,701,382,849035905,664,0 +60523,Wioska+Dziwny+As,596,721,848897333,119,0 +60524,Sony+911,681,662,1415009,96,0 +60525,Merilly-Tivis+Prze%3AKupa,292,379,849098324,491,0 +60526,Wioska+barbarzy%C5%84ska,743,513,0,89,0 +60527,Wioska+Kira+Motyl,289,614,699282793,26,0 +60528,Wioska+barbarzy%C5%84ska,314,642,2289134,117,0 +60529,181,456,260,699853526,651,0 +60530,Wioska+barbarzy%C5%84ska,462,731,698620694,1003,0 +60531,Osada+koczownik%C3%B3w,625,298,0,104,7 +60532,Wioska+saulgoodman,374,301,849120075,136,0 +60533,Wioska+barbarzy%C5%84ska,648,317,0,56,0 +60534,Wioska+mefisom13,304,645,699749530,412,0 +60535,020,394,280,699694284,777,0 +60536,Wioska+Alpinista,620,287,849096543,26,0 +60537,Wioska+barbarzy%C5%84ska,319,657,0,65,0 +60538,Wioska+Time+Traveler,434,268,699811844,26,0 +60539,Wioska+barbarzy%C5%84ska,738,457,849095599,97,0 +60540,Wioska+Seledynowy+skuter+wodny,298,370,849109351,183,0 +60541,1+Doniel,690,352,698766454,222,0 +60542,Wioska+barbarzy%C5%84ska,675,338,698290577,158,0 +60543,Wioska+grzesiek9522,737,506,849122047,66,0 +60544,Wioska+peter3131,727,443,128346,333,0 +60545,Wioska+barbarzy%C5%84ska,726,418,699628084,208,0 +60546,.001.+A,664,679,699877413,329,0 +60547,PPF-52,513,263,1424656,349,0 +60548,WB29,292,373,356642,1015,1 +60549,Wioska+Soro,478,744,848963696,26,0 +60550,070+-+Budowanko%21,504,738,7540891,587,9 +60551,jop,337,328,849121762,377,0 +60552,73.+Wioska+73,288,611,849091769,1189,4 +60553,Wioska+Grzaegorz1122,337,325,849118954,287,0 +60554,Wioska+barbarzy%C5%84ska,388,710,849014922,272,0 +60555,Wioska+Maarri91,477,264,699762681,26,0 +60556,%23168%23,657,676,692803,223,0 +60557,Wioska+Rangiku+Matsumoto,659,681,9300026,26,0 +60558,Wioska+barbarzy%C5%84ska,712,401,699598425,485,0 +60560,Wioska+barbarzy%C5%84ska,707,624,1415009,252,0 +60561,Wioska+MoistVonLipwing,606,718,6270765,26,0 +60562,Wioska+kolejne+multikonto,694,358,8975453,26,0 +60563,R+057,491,735,699195358,205,0 +60564,Wioska+Nooowka07,563,736,699548922,26,0 +60565,Wioska+poweju56,281,419,2140084,189,0 +60566,Wioska+barbarzy%C5%84ska,371,293,3484132,944,0 +60568,Wioska+barbarzy%C5%84ska,736,444,699524891,784,0 +60569,Wioska+TraktorWiktor,463,737,849101284,334,0 +60570,K67+40,718,602,698867483,286,0 +60571,Wioska+Kupidynek,289,609,7906167,26,0 +60572,Wioska+Sebko70,270,574,699546317,245,0 +60574,Wioska+barbarzy%C5%84ska,318,336,0,77,0 +60575,Gda%C5%84sk%2A,599,280,1889913,230,0 +60576,Wioska+Rebel1995,311,358,2692494,26,0 +60577,073+-+Budowanko%21,519,735,7540891,455,0 +60578,BobiLIVE,287,380,699807296,318,0 +60579,Wioska+joaopaulo98,700,635,849118769,26,0 +60580,%21Wioska+barbarzy%C5%84ska+11,597,721,8779575,746,0 +60581,Wioska+pawe%C5%82dante,280,601,849112178,52,0 +60582,Wioska+Ed3kMonster,722,585,849023540,233,0 +60583,A%23055,732,475,2065730,465,0 +60584,SunSun,404,715,849117087,579,0 +60585,K67+42,711,603,698867483,243,0 +60586,Wioska+iminlove,595,724,8621570,173,0 +60587,Wioska+Myanmar,501,265,699508363,26,0 +60588,Wioska+zniszczywacz,264,522,699858423,187,0 +60589,134.Stradi,413,271,698365960,966,8 +60590,Wioska+Chuja,723,585,849114028,437,0 +60591,Wioska+peniozdw,672,665,9294339,26,0 +60592,Wioska+Vintrax,342,683,849097793,26,0 +60593,Wioska+karplop123,687,653,849119842,66,0 +60594,072+-+Budowanko%21,495,737,7540891,487,0 +60595,Wioska+Dawid4321,324,667,849098197,26,0 +60596,Wioska+barbarzy%C5%84ska,725,425,8000875,61,0 +60597,Wioska+SIR+UNITED,276,593,9031705,44,0 +60598,Wioska+Maxi+Montana,309,355,849121846,286,0 +60599,Wioska+barbarzy%C5%84ska,335,321,698388578,46,0 +60600,Wioska+Hakal93,709,383,849116911,26,0 +60601,Wioska+barbarzy%C5%84ska,685,647,1415009,303,0 +60602,Wioska+Mistrz+99,278,588,849089207,179,0 +60603,Wioska+barbarzy%C5%84ska,395,712,849014922,228,0 +60604,Wioska+Czadamm,308,356,849104100,80,0 +60605,Wioska+barbarzy%C5%84ska,271,575,1536625,131,0 +60606,Leszek1964,291,391,849122297,579,0 +60607,Wioska+hornet9,452,268,6249524,26,0 +60608,Wioska+barbarzy%C5%84ska,461,266,0,62,0 +60609,Wioska+QiczikJP,267,426,8662634,284,0 +60610,Wioska+barbarzy%C5%84ska,713,391,699598425,529,0 +60611,Wioska+nocna1993,440,733,698798180,26,0 +60612,Wioska+Jestem+Pogromca+z+TOPu,372,696,698388041,277,0 +60613,Wioska+barbarzy%C5%84ska,668,334,699072129,385,0 +60614,Wioska+Marcin+Marci,579,721,849113580,26,0 +60615,Wioska+barbarzy%C5%84ska,685,659,0,68,0 +60616,Wioska+JaaMwG+1,725,594,2593568,423,0 +60617,KONFA+TO+MARKA%2C+NARKA,280,421,698152377,200,0 +60618,Wioska+Cinse,258,537,849111109,117,0 +60619,Wioska+Kadar,678,344,849104297,323,0 +60620,Wioska+barbarzy%C5%84ska,467,265,0,94,0 +60621,Wioska+Hasha,345,324,849097006,453,0 +60622,Wioska+wozny1020,342,680,848981523,284,0 +60623,Wioska+barbarzy%C5%84ska,264,547,0,53,0 +60624,Wioska+polska652,276,565,849122318,112,0 +60625,Wioska+barbarzy%C5%84ska,342,324,699796330,325,0 +60626,Wioska+tomek22863,590,718,6066254,93,0 +60627,Wioska+barbarzy%C5%84ska,637,303,3600737,66,0 +60628,Osada+koczownik%C3%B3w,674,331,699072129,413,6 +60629,Wioska+CccC2,307,358,848999518,140,0 +60630,042+-+Logrono,720,597,698342159,246,0 +60631,Wioska+Karki98,264,463,849101186,340,0 +60632,Wioska+barbarzy%C5%84ska,290,623,2289134,173,0 +60633,Wioska+LokiPLN,322,654,699431590,224,0 +60634,Wioska+Jacaxxx,678,332,699451338,142,0 +60635,Wioska+barbarzy%C5%84ska,743,521,8742874,107,0 +60636,Wioska+Fezzoo,734,488,6557487,26,0 +60637,Wioska+barbarzy%C5%84ska,258,479,698625834,51,0 +60638,Wioska+Black+Bird,727,593,699778028,942,0 +60639,Wioska+barbarzy%C5%84ska,299,623,2289134,176,0 +60640,Wioska+Lord+Magik77,667,667,698162153,75,0 +60641,Wioska+barbarzy%C5%84ska,438,271,849096310,228,0 +60642,Wioska+halooogan,381,297,698676429,26,0 +60643,Wioska+barbarzy%C5%84ska,372,704,849014922,171,0 +60644,Wioska+lordlewy10,720,414,698380048,26,0 +60645,Wioska+barbarzy%C5%84ska,282,390,0,65,0 +60646,Wioska+Norane,736,540,8956715,242,0 +60647,Wioska+barbarzy%C5%84ska,439,267,0,86,0 +60648,Aqua,581,730,3395817,480,0 +60649,Wioska+Jamson,609,717,205821,128,0 +60650,Wioska+barbarzy%C5%84ska,257,489,698625834,52,0 +60651,Wioska+Davcio1994,416,727,848916779,26,0 +60652,080KP,475,260,849063849,108,6 +60653,Wioska+Bliskoznaczny,686,355,699698745,26,0 +60654,lozi20,269,545,8362886,174,0 +60656,Wioska+Lilit,360,700,849109045,463,0 +60657,Osio%C5%82+troja%C5%84ski,384,288,698162312,449,0 +60658,Wioska+Helios874,636,485,7733128,242,0 +60659,MALBORK,646,304,848944534,226,0 +60660,113+Wioska+barbarzy%C5%84ska,546,267,699854484,199,0 +60661,Wioska+gggg1989,553,729,699397280,26,0 +60662,Wioska+barbarzy%C5%84ska,264,545,0,49,0 +60663,Wioska+Patryczekk,320,340,848955756,310,0 +60664,Wioska+AllAdin,735,570,698826217,372,0 +60665,Wioska+barbarzy%C5%84ska,385,710,849014922,152,0 +60666,Wioska+%2AZasad%C5%BAca%2A,284,600,699062337,105,0 +60667,Wioska+b+013,430,269,6343784,160,0 +60668,Queen+A,605,720,848944455,379,0 +60669,Wioska+barbarzy%C5%84ska,558,734,699878511,140,0 +60670,Wioska+SteamUser1675976894,511,265,849122450,88,0 +60671,Wioska+barbarzy%C5%84ska,340,316,698388578,46,0 +60672,Wioska+zewlakow6,292,612,698379979,26,0 +60673,Wioska+014,739,490,2999957,599,0 +60674,Wioska+Przechy%C5%82y+i+przechy%C5%82y...,482,259,698167413,26,0 +60675,Wioska+Destruktorix+I,671,341,7539223,124,0 +60676,Wioska+barbarzy%C5%84ska,737,510,1601917,160,0 +60677,Wioska+Jaruga007,724,568,1350456,198,0 +60678,225+%7C,719,419,8000875,93,0 +60679,Wioska+snake7,548,731,698556600,130,0 +60680,KWB9.3,506,736,9003698,223,0 +60681,Wioska+Stupid,522,737,699480768,45,0 +60682,K67+43,700,623,698867483,249,0 +60683,Wioska+alexxdize,727,433,849107860,136,0 +60684,Wioska+barbarzy%C5%84ska,348,312,3484132,893,0 +60685,Wioska+adrianww13,606,280,8907258,317,0 +60686,Wioska,266,501,2365630,173,0 +60687,KONFA+TO+MARKA%2C+NARKA,275,438,698152377,456,0 +60688,Wioska+bino666,492,739,6310214,428,0 +60689,114+Wioska+barbarzy%C5%84ska,565,266,699854484,233,0 +60690,Wioska+kamilek6969,407,715,849122487,310,0 +60691,64+barbarzy%C5%84ska,269,454,849018442,469,0 +60692,Wioska+Genotypek,609,281,698281635,132,0 +60693,Wioska39,324,345,699711926,976,0 +60694,Wioska+Bernhard+Roth%2A,311,344,9186877,221,0 +60695,Wioska+barbarzy%C5%84ska,738,557,848946700,167,0 +60696,Wioska+NikoMat,739,469,699820969,53,0 +60697,033+Wioska,737,512,699671454,192,0 +60698,Wioska+Hasyp,375,710,1304915,532,0 +60699,0092,283,389,848913037,132,0 +60700,Wioska+King+Grzes,294,621,8746112,47,0 +60701,Wioska+barbarzy%C5%84ska,283,399,0,57,0 +60702,Wioska+S1mple...,717,599,849033395,26,0 +60703,Wioska+zielonyjohn,261,507,848978169,26,0 +60704,Wioska+barbarzy%C5%84ska,408,715,698152377,436,0 +60705,Osada+koczownik%C3%B3w,597,719,849098628,107,8 +60706,181,509,257,3760848,168,0 +60707,Wioska+barbarzy%C5%84ska,614,294,0,76,0 +60708,Wioska+PetC,586,665,6300771,308,0 +60709,Wioska+barbarzy%C5%84ska,361,311,3484132,841,0 +60710,Wioska+Fontowcy+Dual+i+Ma%C5%82piake,494,733,698526500,26,0 +60711,Wioska+barbarzy%C5%84ska,677,336,698290577,43,0 +60712,Wioska+Jakub+J%C3%B3%C5%BAwiak,546,262,699294577,26,0 +60713,091+obrze%C5%BCa,265,561,699510259,206,0 +60714,Wioska+kcys2,664,325,8907069,47,0 +60715,Wioska+barbarzy%C5%84ska,737,489,699524891,227,0 +60716,Wioska+Czaki995,263,476,849120088,194,0 +60717,Wioska+KOYE,735,546,849120311,26,0 +60718,Wioska+EvilTwin,630,465,699866510,55,0 +60719,Wioska+cinek1998,575,726,849084699,26,0 +60720,K67+45,713,602,698867483,175,0 +60721,Wioska+prosiaczek,580,719,849121623,301,0 +60722,Gwenville+019,454,271,848986638,136,0 +60723,Wioska+Szalejot3,622,704,849121329,320,0 +60724,Wioska+Itadakimasu,736,472,849049864,26,0 +60725,Sony+911,667,666,1415009,246,0 +60726,Wioska+kojak14,622,708,9201946,26,0 +60727,Wioska+barbarzy%C5%84ska,627,709,848887199,131,0 +60728,Wioska+Simon118,693,358,2210946,26,0 +60729,Wioska+barbarzy%C5%84ska,567,724,7756002,1709,0 +60730,Wioska+Feii,645,303,849097274,26,0 +60731,Wioska+Frodo1,267,456,849108034,26,0 +60732,Wioska+barbarzy%C5%84ska,709,628,698867483,103,0 +60733,Wioska+Damian2023,525,743,849115920,121,0 +60734,021,389,285,699694284,275,0 +60735,Wioska+AndrzejJ96,268,567,848995446,301,0 +60736,Wioska+riki30.1976,511,744,2426019,205,0 +60737,022,397,289,699694284,324,0 +60738,Wioska+Budrys2000,471,734,849118435,26,0 +60739,Wioska+barbarzy%C5%84ska,739,467,0,54,0 +60740,Wioska+Choroszcz,592,725,849121269,34,0 +60741,Wioska+barbarzy%C5%84ska,276,417,698152377,193,0 +60742,044.+Osada+koczownik%C3%B3w,679,343,2873154,223,3 +60743,Wioska+LeadyBoo,473,739,849121536,26,0 +60744,Wioska+Kr%C3%B3l+Mieszko+I,352,688,698648691,122,0 +60745,Wioska+barbarzy%C5%84ska,735,567,7038651,37,0 +60747,Wioska+patryczekpyrka96,493,739,849100836,26,0 +60748,Wioska+danek,338,326,849121686,26,0 +60749,K67+44,704,635,698867483,193,0 +60751,_002_+Wioska+barbarzy%C5%84ska,708,373,849095068,118,0 +60752,Wioska+etrusk,742,495,848963634,26,0 +60753,Wioska+barbarzy%C5%84ska,364,698,0,49,0 +60754,Wioska+sweetdream,577,728,849122658,26,0 +60755,076+-+Budowanko%21,482,742,7540891,303,0 +60756,Wioska+PROboszczz,726,438,699845927,74,0 +60757,Wioska+barbarzy%C5%84ska,435,266,849085160,28,0 +60758,J3bacTo,306,352,849001762,267,0 +60759,Wioska+barbarzy%C5%84ska,312,358,0,88,0 +60760,Wioska+mmarcinho,669,323,699557165,26,0 +60761,118+Wioska+barbarzy%C5%84ska,553,271,699854484,135,0 +60762,Wioska+marianoitaliuano,667,677,9043233,26,0 +60763,22+No+Future,734,447,849101845,866,0 +60764,Wioska+Szpadyzor,726,423,849121691,133,0 +60765,Wioska+barbarzy%C5%84ska,731,428,699628084,154,0 +60766,Wioska+colt9,672,339,6242167,26,0 +60767,Wioska+barbarzy%C5%84ska,361,698,0,58,0 +60768,Wioska+mariuszf,644,697,9004337,98,0 +60769,Wioska+barbarzy%C5%84ska,296,636,2289134,55,0 +60770,Wioska+ewazeth,432,723,849109507,26,0 +60771,Wioska+wolf1982,327,673,849039766,26,0 +60772,Wioska+Paveulon,701,623,849110304,97,0 +60773,%23004+Las+Palmas,335,667,849101276,108,8 +60774,Wioska+artnow,697,355,8061953,119,0 +60775,PPF-56,524,262,1424656,163,0 +60776,Xxx+2,511,738,7098955,198,2 +60777,Wioska+czaka222,571,728,849120467,198,0 +60778,Wioska+Lady+Basia408,272,560,699330765,125,0 +60779,Wioska+barbarzy%C5%84ska,378,712,849014922,106,0 +60780,Wioska+Saladyn92t,370,436,849122738,438,0 +60781,078+-+Budowanko%21,503,736,7540891,208,0 +60782,Wioska+yam1,486,739,8218433,172,0 +60783,Wioska+bs160,382,285,2812197,280,0 +60784,Wioska+barbarzy%C5%84ska,338,676,0,57,0 +60785,Wioska+hmc.,258,467,699355948,38,0 +60786,Wioska+barbarzy%C5%84ska,405,716,0,44,0 +60787,Wioska+S3b3k1999,584,282,849121697,26,0 +60788,Wiocha,284,584,849122768,382,0 +60789,Wioska+127,672,670,848971079,59,0 +60790,Wioska+Adrianxl95.,742,521,699707057,26,0 +60791,Wioska+barbarzy%C5%84ska,712,394,699598425,330,0 +60792,Wioska+Arto135,729,556,3840616,74,0 +60793,Wioska+MANTOQ,459,733,8309492,208,0 +60794,Wioska+LukaseQxxD,294,377,2130659,374,0 +60795,Wioska+barbarzy%C5%84ska,737,551,848995478,387,0 +60796,Wikingogr%C3%B3d,727,430,848939434,233,0 +60797,Wioska+--KEMPA--,271,565,6070734,26,0 +60798,Wioska+barbarzy%C5%84ska,522,257,849064752,375,0 +60799,Grzelakb,723,425,849119223,394,0 +60800,North+115,514,265,849064752,528,0 +60801,Wioska+BELOZ,259,459,849122819,95,0 +60802,Wioska+SzefPatry%C5%9B,512,741,849122821,64,0 +60803,Wioska+barbarzy%C5%84ska,639,308,0,44,0 +60804,Wioska+Sharkox,716,608,8728202,26,0 +60805,Wioska+jmz41922,278,417,849122822,162,0 +60806,036,443,732,8268010,61,7 +60807,Wioska+Agamemnon,731,561,699737563,26,0 +60808,Wioska+barbarzy%C5%84ska,737,507,0,45,0 +60809,Wioska+frrrantic,520,260,698747719,243,0 +60810,Wioska+Mogok,613,711,7820575,183,0 +60811,Wioska+barbarzy%C5%84ska,377,298,3484132,330,0 +60812,Wioska+Lord+Zabijaka1999,509,256,8773151,47,0 +60813,Wioska+Chudy19,738,449,699856830,366,0 +60814,Wioska+barbarzy%C5%84ska,267,473,0,46,0 +60815,Wioska+miodek1143143,671,673,849031197,26,0 +60816,092+obrze%C5%BCa,268,560,699510259,104,0 +60817,Wioska+mayald,326,331,699873141,127,0 +60818,Wioska+barbarzy%C5%84ska,651,313,698895940,281,0 +60819,Osada+koczownik%C3%B3w,557,736,699878511,39,7 +60820,Wioska+rafixiem,266,453,699752776,246,0 +60821,Wioska+barbarzy%C5%84ska,297,624,2289134,40,0 +60822,Wioska+KAUN,661,674,849006194,180,0 +60823,143.Stradi,440,267,698365960,96,0 +60824,Wioska+Santa+aka+Dziadzia,288,619,698754087,26,0 +60825,Wioska+barbarzy%C5%84ska,703,364,0,42,0 +60826,Osada+koczownik%C3%B3w,675,336,0,45,7 +60827,Wioska+Kokeszko94,736,510,849118761,26,0 +60828,PPF-57,527,259,1424656,97,0 +60829,Wioska+Treon,740,451,849115010,53,0 +60830,Wioska+barbarzy%C5%84ska,626,301,849037469,72,0 +60831,Osada+koczownik%C3%B3w,611,712,698191218,33,7 +60832,Wioska+Patrz+Ale+Nie+Zjadaj,580,730,698850319,26,0 +60833,WB47,298,374,356642,68,0 +60834,Osada+koczownik%C3%B3w,388,715,849014922,115,2 +60835,Wioska+Brauer92,626,365,849098265,26,0 +60836,Wioska+barbarzy%C5%84ska,521,257,849064752,134,0 +60837,Wioska+adhd,601,717,849025839,68,0 +60838,Wioska+kamera,271,451,849046397,52,0 +60839,Wioska+barbarzy%C5%84ska,420,270,6343784,80,0 +60840,PPF-54,529,260,1424656,151,8 +60841,Wioska+%C5%82ysy97,493,256,849023337,26,0 +60842,%23173%23,666,675,692803,43,0 +60843,Wioska+extor98,739,470,849095446,26,0 +60844,Wioska+heroarek,325,667,849117513,26,0 +60845,Wioska+barbarzy%C5%84ska,621,701,698353083,535,0 +60846,Wioska+Czaq1,492,735,849118231,111,0 +60847,Wioska+barbarzy%C5%84ska,737,441,2999957,61,0 +60848,Wioska+Arletta82,731,579,3112100,104,0 +60849,Wioska+barbarzy%C5%84ska,741,504,1601917,55,0 +60850,Wioska+Wigerek,531,264,7910501,324,0 +60851,107.+Wioska+barbarzy%C5%84ska,733,465,7494497,133,0 +60852,181,376,294,848977118,469,0 +60853,Wioska+barbarzy%C5%84ska,702,639,1415009,75,0 +60854,Wioska+Albertini,729,563,848922517,26,0 +60855,Wioska+barbarzy%C5%84ska,284,384,0,52,0 +60856,Melina,315,348,848909122,238,0 +60857,Wioska+barbarzy%C5%84ska,733,458,698191218,36,0 +60858,Wioska+Botty,316,347,8055581,311,0 +60859,Wioska+barbarzy%C5%84ska,283,406,634848,216,0 +60860,Wioska+DonArturo,665,320,849108673,26,0 +60861,Wioska+barbarzy%C5%84ska,697,361,0,41,0 +60862,Wioska+przemekagatki,594,715,699802009,26,0 +60863,001,654,686,698410946,48,0 +60864,Wioska+barbarzy%C5%84ska,663,668,8627359,190,0 +60865,Wioska+Lech798,288,384,698743511,288,0 +60866,Wioska+barbarzy%C5%84ska,561,726,0,51,0 +60867,Wioska+brutal29,258,482,698655576,56,0 +60868,Wioska+barbarzy%C5%84ska,717,589,848946700,111,0 +60869,Wioska+Andragon21,324,660,8197987,61,0 +60870,Wioska+barbarzy%C5%84ska,738,519,0,52,0 +60871,Wioska+Dawidoxil96,337,673,849119163,248,0 +60872,A%23056,734,479,2065730,221,0 +60873,Wioska+Savek,310,648,699868399,26,0 +60874,Wioska+barbarzy%C5%84ska,262,535,0,41,0 +60875,Wioska+Szymonos420,488,324,849121196,238,0 +60876,Wioska+Bellu,299,377,849061418,26,0 +60877,C0357,259,518,8841266,136,0 +60878,Wioska+stefek+alibaba,487,736,849010955,105,0 +60879,058,714,383,849091105,50,0 +60880,Wioska+KESHIK,274,439,9006528,48,0 +60881,Wioska+MiczMicz,491,672,699630393,104,0 +60882,Wioska+barbarzy%C5%84ska,258,470,0,29,0 +60883,Wioska+boyka8721,730,577,848888394,45,0 +60884,093+obrze%C5%BCa,263,562,699510259,61,0 +60885,Wioska+KeymilLoveOrHate,435,736,849022907,26,0 +60886,Wioska+Sir+Hood,568,729,7663945,26,0 +60887,W+kontakcie,735,559,848932879,71,0 +60888,Wioska+Krasnoludek.M%C4%99drek,268,562,849009059,26,0 +60889,Wioska+barbarzy%C5%84ska,714,398,699598425,199,0 +60890,Wioska+KARY1988,255,517,3824463,26,0 +60891,75003,552,728,8320319,116,0 +60892,Wioska+xMario25x,316,663,848910971,26,0 +60893,Jehu_Kingdom_70,722,409,8785314,107,0 +60894,Wioska+VencedorPL,744,473,699842078,26,0 +60895,Wioska+barbarzy%C5%84ska,305,369,0,48,0 +60896,Wioska+merty,380,708,699847354,286,0 +60897,Wioska+barbarzy%C5%84ska,297,637,2289134,46,0 +60898,Wioska+Mroczne+Elfy+1,620,706,849113868,102,0 +60899,Wioska+zapomnia%C5%82em+has%C5%82a,446,735,848911863,288,0 +60900,Wioska+ndse,474,737,848980119,26,0 +60901,Wioska+bsju,732,549,848980120,26,0 +60902,WB46,291,378,356642,80,0 +60903,Wioska+gsno,504,257,848980456,26,0 +60904,Wioska+barbarzy%C5%84ska,401,280,849085160,32,0 +60905,Wioska+khiu,302,371,848980458,26,0 +60906,Wioska+cvde,709,372,848980459,26,0 +60907,Wioska+fswq,588,272,848980460,26,0 +60908,Wioska+nipki,673,335,848980461,26,0 +60909,Wioska+veru,316,647,848980492,26,0 +60910,Wioska+tews,731,425,848980493,26,0 +60911,Wioska+laszc,323,341,848980494,26,0 +60912,Wioska+nmih,349,312,848980495,26,0 +60913,Wioska+barbarzy%C5%84ska,278,592,0,42,0 +60914,Wioska+afad,412,719,848980496,26,0 +60915,Wioska+barbarzy%C5%84ska,418,731,0,50,0 +60916,Wioska+freaky97,436,274,699011096,26,0 +60917,Wioska+barbarzy%C5%84ska,473,264,0,36,0 +60918,Wioska+vosd,740,447,848980497,26,0 +60919,Wioska+barbarzy%C5%84ska,651,687,0,54,0 +60920,Wioska+amlk,269,582,848980498,26,0 +60921,Wioska+filip9399,659,327,698592565,101,0 +60922,Wioska+warmonger,393,718,849065566,43,0 +60923,Wioska+barbarzy%C5%84ska,695,357,0,48,0 +60924,Wioska+Lady+K8,392,280,699668392,26,0 +60925,Wioska+barbarzy%C5%84ska,346,691,0,55,0 +60926,Twierdza+%28ANS%29,293,420,0,2511,23 +60927,Wioska+lucko5,700,626,699756403,26,0 +60928,Lukaczka,265,491,849123125,216,0 +60929,Wioska+barbarzy%C5%84ska,391,282,0,46,0 +60930,Osada+koczownik%C3%B3w,464,264,699278528,134,6 +60931,Wioska+farmerzestoczka,262,483,849123128,75,0 +60933,Wioska+barbarzy%C5%84ska,672,336,0,43,0 +60934,Wioska+Ljuboja1916,531,260,849123135,43,0 +60935,%21Wioska+barbarzy%C5%84ska,584,718,8779575,398,0 +60936,0000048Z,271,572,849089881,170,8 +60937,Wioska+Kox12344,374,302,849115509,198,0 +60938,Wioska+pawka283,539,741,849121320,44,0 +60939,Wioska+barbarzy%C5%84ska,655,310,0,36,0 +60940,Wioska+kondzio95rrr,732,555,699054327,160,0 +60941,Wioska+Co+biedaa,606,716,849003332,26,0 +60942,Wioska+jesslexuwuowo,725,412,849123162,83,0 +60943,Wioska+barbarzy%C5%84ska,259,543,0,41,0 +60944,Wioska+Marass,469,741,849100349,179,0 +60945,Wioska+126,705,631,848971079,80,0 +60946,Flagi,273,415,699633365,668,0 +60947,Wioska+barbarzy%C5%84ska,261,461,0,54,0 +60948,Wioska+Bombelnik,700,375,849016425,143,0 +60949,%21Wioska+barbarzy%C5%84ska,581,722,8779575,234,0 +60950,Wioska+Kanut,426,398,698791053,208,0 +60951,Wioska+Vi-vali,274,570,1867410,236,0 +60952,050.+Wioska+barbarzy%C5%84ska,688,351,2873154,34,0 +60953,Osada+koczownik%C3%B3w,740,522,1601917,36,2 +60954,Wioska+Szp4Q,281,417,848951699,129,0 +60955,%21Wioska+barbarzy%C5%84ska,585,727,8779575,123,0 +60956,Wioska+100dni,505,742,699878952,26,0 +60957,Wioska+barbarzy%C5%84ska,696,364,0,41,0 +60958,Wioska+gumis111,454,260,849122931,26,0 +60959,%21Wioska+barbarzy%C5%84ska,585,729,8779575,109,0 +60960,Wioska+prince+rudeboy,617,711,9234594,155,0 +60961,Wioska+Lis44,567,736,699773770,64,0 +60962,Wioska+barbarzy%C5%84ska,404,725,849014922,28,0 +60963,Wioska+SwwQ,687,341,8312412,26,0 +60964,Wioska+barbarzy%C5%84ska,737,521,0,52,0 +60965,Wioska+jordonjbe,614,709,849108915,180,0 +60966,Wioska+barbarzy%C5%84ska,468,264,0,48,0 +60967,Wioska+B.E.R.S.E.R.,447,268,698645802,26,0 +60968,Wioska+Forwalls,470,266,849064715,132,0 +60969,Wioska+barbarzy%C5%84ska,260,459,0,36,0 +60970,Wioska+playbackp,267,425,698226224,26,0 +60971,Wioska+barbarzy%C5%84ska,350,319,699796330,118,0 +60972,Wioska+Saintros,686,357,699788972,26,0 +60973,Wioska+barbarzy%C5%84ska,447,267,0,42,0 +60974,Wioska+zdzi%C5%9B123,365,304,849123002,26,0 +60975,Wioska+JeGrzegorz,726,570,2620389,62,0 +60976,Wioska+barbarzy%C5%84ska,725,589,0,36,0 +60977,Wioska+Dom+Kichot,704,383,849028071,26,0 +60978,Wioska+barbarzy%C5%84ska,704,369,0,47,0 +60979,Wioska+NeXi,719,412,698850251,26,0 +60980,Wioska+barbarzy%C5%84ska,578,274,0,45,0 +60981,Wioska+Kluha+Jo,277,579,849029077,141,0 +60982,Wioska+gsxr600k2,720,590,699084064,191,0 +60983,Wioska+techniq,501,740,698658087,67,0 +60984,Wioska+barbarzy%C5%84ska,369,703,0,38,0 +60985,Wioska+vaksso,379,291,8551316,113,0 +60986,23+Odszkodowanie,731,462,849101845,216,0 +60987,AAA+1,306,651,1809381,368,0 +60988,Wioska+barbarzy%C5%84ska,260,537,0,39,0 +60989,ja+tylko+na+moment+xD,706,387,699825797,201,0 +60990,Wioska+barbarzy%C5%84ska,601,287,0,40,0 +60991,Wioska+lukaku,526,256,849040332,65,0 +60992,Wioska+barbarzy%C5%84ska,693,644,848971079,37,0 +60993,Chwaliszew,350,315,849112510,168,0 +60994,Wioska+barbarzy%C5%84ska,732,438,0,41,0 +60995,Wioska+Mateo1315,379,710,849052549,26,0 +60996,Wioska+barbarzy%C5%84ska,334,671,0,44,0 +60997,Wioska+dragon622,416,294,7831811,270,0 +60998,Wioska+barbarzy%C5%84ska,301,644,2289134,39,0 +60999,Wioska+Knoxpl,735,428,849113485,48,0 +61000,Wioska+D%C5%BCejd%C5%BCejj,710,627,849046647,26,0 +61001,Camelot,331,672,5999909,191,0 +61002,Wioska+barbarzy%C5%84ska,315,352,0,36,0 +61003,Wioska+donpabloone,399,712,699618066,26,0 +61004,Wioska+barbarzy%C5%84ska,716,613,698867483,76,0 +61005,Wioska+TheMooon,288,621,849054606,205,0 +61006,Wioska+wojtas0112,615,284,8106333,263,0 +61007,Wioska+barbarzy%C5%84ska,725,403,0,33,0 +61008,Wioska+marekkkzzz665,631,696,699798611,252,0 +61009,Wioska+Luu123,338,684,849072855,93,0 +61010,Wioska+barbarzy%C5%84ska,480,743,0,35,0 +61011,Wioska+Stefan+Batory+V,268,579,849112561,26,0 +61012,Wioska+barbarzy%C5%84ska,620,292,0,46,0 +61013,Wioska+Gumaty,320,336,849108350,144,0 +61014,Wioska+DiscoZenon,259,482,849112666,144,0 +61015,Wioska+barbarzy%C5%84ska,411,282,0,33,0 +61016,Wioska+Sewo2137,311,645,849123267,165,0 +61017,Wioska+Harasi,270,443,8890611,47,0 +61018,Wioska+Mozzie,734,497,849088429,26,0 +61019,Wioska+barbarzy%C5%84ska,499,259,0,38,0 +61020,Wioska+Layton,691,365,849120889,47,0 +61021,119+Wioska+barbarzy%C5%84ska,566,271,699854484,41,0 +61022,Wioska+0028,335,682,9186126,40,5 +61023,Wioska+maciej55413,497,255,9012894,68,0 +61024,Wioska+barbarzy%C5%84ska,669,671,1415009,44,0 +61025,Metropolia,430,736,849041557,98,0 +61026,Wioska+barbarzy%C5%84ska,736,449,0,33,0 +61027,Wioska+xFeFe,481,262,699700007,26,0 +61028,Wioska+barbarzy%C5%84ska,736,509,0,33,0 +61029,Wioska+Tomasz+Stanek,702,362,849083705,26,0 +61030,Wioska+barbarzy%C5%84ska,334,329,0,31,0 +61031,Wioska+HinduKush,564,733,849121504,107,0 +61032,Wioska+barbarzy%C5%84ska,724,569,2453888,48,0 +61033,Wioska+TeroXer+s,577,730,6577211,26,0 +61034,Wioska+barbarzy%C5%84ska,618,298,0,32,0 +61035,Wioska+champion271,670,329,699864609,81,0 +61036,Wioska+Pokraczny850,440,272,699790202,26,0 +61037,Wioska+jedyny1taki,323,657,1626626,32,0 +61038,Wioska+barbarzy%C5%84ska,609,714,699189792,34,0 +61039,Wioska+Kolodzij,723,417,849118616,118,0 +61040,Wioska+barbarzy%C5%84ska,491,259,0,39,0 +61041,Wioska+FAST+ROTHMANS,637,690,849111052,26,0 +61042,Wioska+barbarzy%C5%84ska,293,628,2289134,26,0 +61043,Wioska+spokojnaba%C5%9Bka123,739,536,849120763,64,0 +61044,Wioska+barbarzy%C5%84ska,400,722,0,34,0 +61045,Wioska+GrubsonSzczecin,674,670,7286392,26,0 +61046,Wioska+milosz21,614,283,849088914,75,0 +61047,Wioska+barbarzy%C5%84ska,314,656,0,29,0 +61048,Wioska+Lord+Sir+bogdan,547,264,9071253,148,0 +61049,Wioska+Anakin97,734,430,849100416,26,0 +61050,Wioska+barbarzy%C5%84ska,465,741,0,39,0 +61052,Wioska+barbarzy%C5%84ska,699,355,0,33,0 +61053,Wioska+dragonk6,513,742,698486277,196,0 +61054,Wioska+barbarzy%C5%84ska,744,492,0,26,0 +61055,Wioska+xandread,256,525,699702049,74,0 +61056,Wioska+barbarzy%C5%84ska,274,419,0,34,0 +61057,Wioska+Rwa1,404,284,848957736,26,0 +61058,Wioska+barbarzy%C5%84ska,490,255,0,35,0 +61059,Wioska+millxd12,718,409,849123286,26,0 +61060,Wioska+barbarzy%C5%84ska,645,310,0,34,0 +61061,c-1,725,407,699845179,204,0 +61062,Wioska+barbarzy%C5%84ska,576,721,0,32,0 +61063,Wioska+K%40Ts,637,302,2266562,198,0 +61064,Wioska+barbarzy%C5%84ska,309,349,0,44,0 +61065,Wioska+Martin1991,486,745,699027000,119,0 +61066,Wioska+barbarzy%C5%84ska,614,715,0,26,0 +61067,Wioska+Legiatto,659,675,849122864,26,0 +61068,Wioska+barbarzy%C5%84ska,471,738,0,28,0 +61069,Wioska+Darma+dla+zawodnika,731,550,849096606,48,0 +61070,Wioska+TakiKris,424,270,848905770,211,0 +61071,Wioska+barbarzy%C5%84ska,543,263,699854484,28,0 +61072,Wioska+peterw21,726,593,699797065,26,0 +61073,Wioska+barbarzy%C5%84ska,496,264,0,26,0 +61074,Wioska+Baku97,647,312,699826338,26,0 +61075,Wioska+barbarzy%C5%84ska,515,262,1424656,32,0 +61076,Osada+koczownik%C3%B3w,255,502,0,34,9 +61077,Wioska+kuba939,656,325,848989774,26,0 +61078,Wioska+barbarzy%C5%84ska,496,744,0,26,0 +61079,Wioska+PanCake,269,578,699758721,59,0 +61080,Wioska+barbarzy%C5%84ska,358,304,0,32,0 +61081,Wioska+michoopl,331,676,9161369,26,0 +61082,Wioska+barbarzy%C5%84ska,734,572,0,26,0 +61083,Wioska+mrkonrad18,642,696,849121195,157,0 +61084,Wioska+barbarzy%C5%84ska,482,263,0,28,0 +61085,Wioska+adam1234,533,264,849123469,26,0 +61086,Wioska+barbarzy%C5%84ska,676,336,0,40,0 +61087,Osada+koczownik%C3%B3w,274,588,0,26,1 +61088,Wioska+martial.94,258,498,849123471,26,0 +61089,Wioska+nawalonych7krasnali,535,739,7062739,26,0 +61090,Wioska+Arokis,469,739,849122791,136,0 +61091,Wioska+barbarzy%C5%84ska,706,380,0,26,0 +61092,Wioska+tobiasz22,664,668,849089739,26,0 +61093,Twierdza+%28OKO%29,582,682,0,1202,22 +61094,Wioska+wilq332,704,364,9154820,77,0 +61095,Wioska+barbarzy%C5%84ska,263,538,0,32,0 +61096,Wioska+radek1234c,636,697,698282328,89,0 +61097,Wioska+barbarzy%C5%84ska,409,284,0,32,0 +61098,Osada+koczownik%C3%B3w,282,399,0,31,7 +61099,Wioska+XXARDASS,266,464,1015528,126,0 +61100,Osada+koczownik%C3%B3w,723,605,0,26,8 +61101,Wioska+lord+Micha%C5%82+1,620,708,699860651,68,0 +61102,Wioska+barbarzy%C5%84ska,638,702,0,26,0 +61103,Wioska+Atanami,291,623,699169828,106,0 +61104,Wioska+barbarzy%C5%84ska,705,376,0,26,0 +61105,Wioska+chwalka,727,591,848957381,53,0 +61106,Wioska+barbarzy%C5%84ska,733,542,0,26,0 +61107,Wioska+XKONDZIOX529,729,588,849123536,50,0 +61108,Wioska+Harald+Pi%C4%99kny,264,443,699842008,26,0 +61109,Wioska+barbarzy%C5%84ska,289,378,0,26,0 diff --git a/internal/service/testdata/syncdata/stage2/www.plemiona.pl/backend/get_servers.php b/internal/service/testdata/syncdata/stage2/www.plemiona.pl/backend/get_servers.php new file mode 100644 index 0000000..ef8c2e2 --- /dev/null +++ b/internal/service/testdata/syncdata/stage2/www.plemiona.pl/backend/get_servers.php @@ -0,0 +1 @@ +a:1:{s:5:"pl181";s:25:"https://pl181.plemiona.pl";} \ No newline at end of file diff --git a/internal/service/testdata/syncennoblements/fixture.yml b/internal/service/testdata/syncennoblements/fixture.yml new file mode 100644 index 0000000..e39dd9c --- /dev/null +++ b/internal/service/testdata/syncennoblements/fixture.yml @@ -0,0 +1,15 @@ +- model: Server + rows: + - _id: us63 + key: us63 + url: https://us63.tribalwars.us + open: true + special: false + num_players: 1438 + num_tribes: 125 + num_villages: 10048 + num_player_villages: 5386 + num_barbarian_villages: 4662 + num_bonus_villages: 3155 + created_at: 2023-01-04T22:00:08.748927Z + version_code: us diff --git a/internal/service/testdata/syncennoblements/stage1/expected/ennoblements.json b/internal/service/testdata/syncennoblements/stage1/expected/ennoblements.json new file mode 100644 index 0000000..d3c5721 --- /dev/null +++ b/internal/service/testdata/syncennoblements/stage1/expected/ennoblements.json @@ -0,0 +1 @@ +[{"ID":1,"VillageID":1759,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-01-14T14:00:49Z","ServerKey":"us63"},{"ID":2,"VillageID":594,"NewOwnerID":848943607,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-01-14T20:10:12Z","ServerKey":"us63"},{"ID":3,"VillageID":2217,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-14T20:47:53Z","ServerKey":"us63"},{"ID":4,"VillageID":59,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-15T01:42:12Z","ServerKey":"us63"},{"ID":5,"VillageID":1825,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-15T03:20:39Z","ServerKey":"us63"},{"ID":6,"VillageID":1756,"NewOwnerID":848943607,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-15T07:54:00Z","ServerKey":"us63"},{"ID":7,"VillageID":1401,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-15T14:30:42Z","ServerKey":"us63"},{"ID":8,"VillageID":2454,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-15T16:20:48Z","ServerKey":"us63"},{"ID":9,"VillageID":3468,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-15T17:15:08Z","ServerKey":"us63"},{"ID":10,"VillageID":2061,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":46,"CreatedAt":"2023-01-15T19:23:56Z","ServerKey":"us63"},{"ID":11,"VillageID":2969,"NewOwnerID":848951176,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-01-15T23:18:29Z","ServerKey":"us63"},{"ID":12,"VillageID":1673,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-16T01:21:13Z","ServerKey":"us63"},{"ID":13,"VillageID":232,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-16T03:08:05Z","ServerKey":"us63"},{"ID":14,"VillageID":2301,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-16T03:20:50Z","ServerKey":"us63"},{"ID":15,"VillageID":1868,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":56,"CreatedAt":"2023-01-16T03:35:35Z","ServerKey":"us63"},{"ID":16,"VillageID":1340,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-16T05:01:55Z","ServerKey":"us63"},{"ID":17,"VillageID":2547,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T06:19:22Z","ServerKey":"us63"},{"ID":18,"VillageID":1912,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-16T08:44:26Z","ServerKey":"us63"},{"ID":19,"VillageID":2785,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T10:42:35Z","ServerKey":"us63"},{"ID":20,"VillageID":1694,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-16T12:21:18Z","ServerKey":"us63"},{"ID":21,"VillageID":2469,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":750685,"OldTribeID":76,"Points":1458,"CreatedAt":"2023-01-16T13:09:17Z","ServerKey":"us63"},{"ID":22,"VillageID":768,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-01-16T13:38:05Z","ServerKey":"us63"},{"ID":23,"VillageID":1582,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-16T14:54:03Z","ServerKey":"us63"},{"ID":24,"VillageID":2023,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848945637,"OldTribeID":0,"Points":523,"CreatedAt":"2023-01-16T14:55:08Z","ServerKey":"us63"},{"ID":25,"VillageID":2736,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-16T15:30:44Z","ServerKey":"us63"},{"ID":26,"VillageID":1791,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-01-16T16:52:59Z","ServerKey":"us63"},{"ID":27,"VillageID":3597,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T18:38:58Z","ServerKey":"us63"},{"ID":28,"VillageID":2407,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-16T19:38:37Z","ServerKey":"us63"},{"ID":29,"VillageID":641,"NewOwnerID":848910736,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-16T19:49:15Z","ServerKey":"us63"},{"ID":30,"VillageID":727,"NewOwnerID":848947790,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-16T21:02:46Z","ServerKey":"us63"},{"ID":31,"VillageID":527,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T22:41:21Z","ServerKey":"us63"},{"ID":32,"VillageID":499,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-16T22:42:56Z","ServerKey":"us63"},{"ID":33,"VillageID":571,"NewOwnerID":848943607,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-16T23:54:31Z","ServerKey":"us63"},{"ID":34,"VillageID":3702,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-01-17T00:03:27Z","ServerKey":"us63"},{"ID":35,"VillageID":530,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-17T00:46:04Z","ServerKey":"us63"},{"ID":36,"VillageID":2761,"NewOwnerID":693802,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-17T01:18:20Z","ServerKey":"us63"},{"ID":37,"VillageID":396,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848952345,"OldTribeID":7,"Points":414,"CreatedAt":"2023-01-17T02:00:59Z","ServerKey":"us63"},{"ID":38,"VillageID":737,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":357794,"OldTribeID":29,"Points":1059,"CreatedAt":"2023-01-17T02:32:06Z","ServerKey":"us63"},{"ID":39,"VillageID":857,"NewOwnerID":743702,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-01-17T02:35:12Z","ServerKey":"us63"},{"ID":40,"VillageID":1563,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-01-17T02:49:20Z","ServerKey":"us63"},{"ID":41,"VillageID":1520,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-17T04:21:40Z","ServerKey":"us63"},{"ID":42,"VillageID":715,"NewOwnerID":848951176,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":924,"CreatedAt":"2023-01-17T04:37:39Z","ServerKey":"us63"},{"ID":43,"VillageID":3249,"NewOwnerID":693802,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-17T05:05:44Z","ServerKey":"us63"},{"ID":44,"VillageID":3260,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-17T05:23:25Z","ServerKey":"us63"},{"ID":45,"VillageID":319,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-17T05:23:57Z","ServerKey":"us63"},{"ID":46,"VillageID":1322,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848945063,"OldTribeID":0,"Points":561,"CreatedAt":"2023-01-17T05:46:36Z","ServerKey":"us63"},{"ID":47,"VillageID":228,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-17T06:15:05Z","ServerKey":"us63"},{"ID":48,"VillageID":3124,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-01-17T06:50:22Z","ServerKey":"us63"},{"ID":49,"VillageID":1074,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-01-17T07:10:55Z","ServerKey":"us63"},{"ID":50,"VillageID":1573,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1633,"CreatedAt":"2023-01-17T09:00:56Z","ServerKey":"us63"},{"ID":51,"VillageID":2065,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-17T09:31:09Z","ServerKey":"us63"},{"ID":52,"VillageID":487,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-17T14:07:40Z","ServerKey":"us63"},{"ID":53,"VillageID":2555,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-17T14:20:52Z","ServerKey":"us63"},{"ID":54,"VillageID":2418,"NewOwnerID":723093,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-17T16:35:51Z","ServerKey":"us63"},{"ID":55,"VillageID":778,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-01-17T16:40:15Z","ServerKey":"us63"},{"ID":56,"VillageID":1165,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848942808,"OldTribeID":0,"Points":547,"CreatedAt":"2023-01-17T16:40:53Z","ServerKey":"us63"},{"ID":57,"VillageID":2198,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-17T19:43:25Z","ServerKey":"us63"},{"ID":58,"VillageID":860,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-01-17T20:37:11Z","ServerKey":"us63"},{"ID":59,"VillageID":1269,"NewOwnerID":848954312,"NewTribeID":27,"OldOwnerID":848943202,"OldTribeID":0,"Points":505,"CreatedAt":"2023-01-17T21:52:47Z","ServerKey":"us63"},{"ID":60,"VillageID":1009,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-17T22:08:07Z","ServerKey":"us63"},{"ID":61,"VillageID":1150,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-17T22:43:55Z","ServerKey":"us63"},{"ID":62,"VillageID":1228,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-17T23:56:07Z","ServerKey":"us63"},{"ID":63,"VillageID":1072,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848929831,"OldTribeID":0,"Points":1329,"CreatedAt":"2023-01-18T00:38:10Z","ServerKey":"us63"},{"ID":64,"VillageID":15,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-18T00:48:31Z","ServerKey":"us63"},{"ID":65,"VillageID":2656,"NewOwnerID":693802,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-18T01:18:45Z","ServerKey":"us63"},{"ID":66,"VillageID":1487,"NewOwnerID":848910736,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-18T01:35:29Z","ServerKey":"us63"},{"ID":67,"VillageID":1364,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-18T01:43:54Z","ServerKey":"us63"},{"ID":68,"VillageID":1726,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848953944,"OldTribeID":0,"Points":716,"CreatedAt":"2023-01-18T03:26:31Z","ServerKey":"us63"},{"ID":69,"VillageID":2366,"NewOwnerID":723093,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-01-18T08:11:09Z","ServerKey":"us63"},{"ID":70,"VillageID":591,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848951879,"OldTribeID":99,"Points":1341,"CreatedAt":"2023-01-18T08:13:00Z","ServerKey":"us63"},{"ID":71,"VillageID":1826,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848954331,"OldTribeID":17,"Points":1032,"CreatedAt":"2023-01-18T10:07:42Z","ServerKey":"us63"},{"ID":72,"VillageID":368,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-18T10:35:42Z","ServerKey":"us63"},{"ID":73,"VillageID":3141,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848943226,"OldTribeID":0,"Points":861,"CreatedAt":"2023-01-18T10:50:19Z","ServerKey":"us63"},{"ID":74,"VillageID":860,"NewOwnerID":848951854,"NewTribeID":6,"OldOwnerID":160994,"OldTribeID":24,"Points":256,"CreatedAt":"2023-01-18T11:12:24Z","ServerKey":"us63"},{"ID":75,"VillageID":124,"NewOwnerID":848951061,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-18T11:40:02Z","ServerKey":"us63"},{"ID":76,"VillageID":2003,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-18T12:25:02Z","ServerKey":"us63"},{"ID":77,"VillageID":496,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-18T13:07:46Z","ServerKey":"us63"},{"ID":78,"VillageID":1257,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":848943112,"OldTribeID":0,"Points":533,"CreatedAt":"2023-01-18T14:02:11Z","ServerKey":"us63"},{"ID":79,"VillageID":747,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":391948,"OldTribeID":14,"Points":813,"CreatedAt":"2023-01-18T14:09:13Z","ServerKey":"us63"},{"ID":80,"VillageID":1732,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-18T14:28:43Z","ServerKey":"us63"},{"ID":81,"VillageID":4051,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-01-18T14:56:37Z","ServerKey":"us63"},{"ID":82,"VillageID":2066,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848945602,"OldTribeID":0,"Points":558,"CreatedAt":"2023-01-18T15:24:08Z","ServerKey":"us63"},{"ID":83,"VillageID":1136,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-18T16:24:32Z","ServerKey":"us63"},{"ID":84,"VillageID":1133,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-18T16:53:07Z","ServerKey":"us63"},{"ID":85,"VillageID":1380,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-18T17:23:58Z","ServerKey":"us63"},{"ID":86,"VillageID":2749,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954603,"OldTribeID":17,"Points":1273,"CreatedAt":"2023-01-18T18:13:01Z","ServerKey":"us63"},{"ID":87,"VillageID":1856,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-18T18:42:29Z","ServerKey":"us63"},{"ID":88,"VillageID":3021,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-01-18T20:34:07Z","ServerKey":"us63"},{"ID":89,"VillageID":4089,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-01-18T20:48:40Z","ServerKey":"us63"},{"ID":90,"VillageID":2513,"NewOwnerID":723093,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-01-18T21:18:33Z","ServerKey":"us63"},{"ID":91,"VillageID":936,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":780648,"OldTribeID":0,"Points":1143,"CreatedAt":"2023-01-18T21:38:48Z","ServerKey":"us63"},{"ID":92,"VillageID":634,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848951477,"OldTribeID":56,"Points":1237,"CreatedAt":"2023-01-18T21:42:10Z","ServerKey":"us63"},{"ID":93,"VillageID":382,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-18T23:05:47Z","ServerKey":"us63"},{"ID":94,"VillageID":1535,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-18T23:08:33Z","ServerKey":"us63"},{"ID":95,"VillageID":1554,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848952576,"OldTribeID":56,"Points":412,"CreatedAt":"2023-01-18T23:34:35Z","ServerKey":"us63"},{"ID":96,"VillageID":4005,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":35,"CreatedAt":"2023-01-18T23:45:34Z","ServerKey":"us63"},{"ID":97,"VillageID":29,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-19T00:14:02Z","ServerKey":"us63"},{"ID":98,"VillageID":980,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-19T00:50:32Z","ServerKey":"us63"},{"ID":99,"VillageID":3284,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-19T00:51:15Z","ServerKey":"us63"},{"ID":100,"VillageID":3420,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-19T00:56:08Z","ServerKey":"us63"},{"ID":101,"VillageID":3081,"NewOwnerID":554600,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-19T02:44:20Z","ServerKey":"us63"},{"ID":102,"VillageID":328,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-19T02:56:01Z","ServerKey":"us63"},{"ID":103,"VillageID":1214,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-19T03:11:08Z","ServerKey":"us63"},{"ID":104,"VillageID":372,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-19T04:06:53Z","ServerKey":"us63"},{"ID":105,"VillageID":1319,"NewOwnerID":848907165,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":597,"CreatedAt":"2023-01-19T04:25:54Z","ServerKey":"us63"},{"ID":106,"VillageID":997,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-19T05:21:02Z","ServerKey":"us63"},{"ID":107,"VillageID":2041,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-19T06:33:00Z","ServerKey":"us63"},{"ID":108,"VillageID":1204,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":571,"CreatedAt":"2023-01-19T06:37:29Z","ServerKey":"us63"},{"ID":109,"VillageID":223,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":753340,"OldTribeID":87,"Points":705,"CreatedAt":"2023-01-19T06:59:16Z","ServerKey":"us63"},{"ID":110,"VillageID":1957,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":848945594,"OldTribeID":0,"Points":597,"CreatedAt":"2023-01-19T07:45:42Z","ServerKey":"us63"},{"ID":111,"VillageID":1195,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":557,"CreatedAt":"2023-01-19T07:45:55Z","ServerKey":"us63"},{"ID":112,"VillageID":1837,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-01-19T08:38:14Z","ServerKey":"us63"},{"ID":113,"VillageID":1852,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-19T08:52:15Z","ServerKey":"us63"},{"ID":114,"VillageID":2046,"NewOwnerID":264792,"NewTribeID":64,"OldOwnerID":848947367,"OldTribeID":0,"Points":563,"CreatedAt":"2023-01-19T09:39:23Z","ServerKey":"us63"},{"ID":115,"VillageID":817,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":668275,"OldTribeID":0,"Points":244,"CreatedAt":"2023-01-19T11:41:56Z","ServerKey":"us63"},{"ID":116,"VillageID":3187,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848931394,"OldTribeID":11,"Points":1408,"CreatedAt":"2023-01-19T12:42:34Z","ServerKey":"us63"},{"ID":117,"VillageID":894,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-19T14:09:57Z","ServerKey":"us63"},{"ID":118,"VillageID":1443,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-19T15:27:23Z","ServerKey":"us63"},{"ID":119,"VillageID":2653,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-19T15:28:11Z","ServerKey":"us63"},{"ID":120,"VillageID":2577,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-19T16:11:11Z","ServerKey":"us63"},{"ID":121,"VillageID":1753,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-19T16:16:28Z","ServerKey":"us63"},{"ID":122,"VillageID":3303,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":848954656,"OldTribeID":72,"Points":382,"CreatedAt":"2023-01-19T16:46:00Z","ServerKey":"us63"},{"ID":123,"VillageID":655,"NewOwnerID":848953209,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-19T17:13:12Z","ServerKey":"us63"},{"ID":124,"VillageID":1173,"NewOwnerID":848952288,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-19T17:24:20Z","ServerKey":"us63"},{"ID":125,"VillageID":831,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-19T17:38:58Z","ServerKey":"us63"},{"ID":126,"VillageID":595,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848952221,"OldTribeID":0,"Points":1093,"CreatedAt":"2023-01-19T18:32:01Z","ServerKey":"us63"},{"ID":127,"VillageID":141,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-19T18:55:21Z","ServerKey":"us63"},{"ID":128,"VillageID":2502,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-19T18:59:25Z","ServerKey":"us63"},{"ID":129,"VillageID":667,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952121,"OldTribeID":32,"Points":1272,"CreatedAt":"2023-01-19T19:00:31Z","ServerKey":"us63"},{"ID":130,"VillageID":883,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-19T20:25:35Z","ServerKey":"us63"},{"ID":131,"VillageID":2552,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-19T20:29:29Z","ServerKey":"us63"},{"ID":132,"VillageID":2823,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-01-19T20:35:20Z","ServerKey":"us63"},{"ID":133,"VillageID":2772,"NewOwnerID":848953207,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-01-19T20:35:35Z","ServerKey":"us63"},{"ID":134,"VillageID":329,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":160994,"OldTribeID":24,"Points":3516,"CreatedAt":"2023-01-19T20:54:48Z","ServerKey":"us63"},{"ID":135,"VillageID":781,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-19T21:13:46Z","ServerKey":"us63"},{"ID":136,"VillageID":1859,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-19T21:44:34Z","ServerKey":"us63"},{"ID":137,"VillageID":2878,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-19T21:50:35Z","ServerKey":"us63"},{"ID":138,"VillageID":1840,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-19T22:14:36Z","ServerKey":"us63"},{"ID":139,"VillageID":2263,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-01-19T23:03:02Z","ServerKey":"us63"},{"ID":140,"VillageID":3118,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-19T23:33:59Z","ServerKey":"us63"},{"ID":141,"VillageID":2745,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-19T23:34:15Z","ServerKey":"us63"},{"ID":142,"VillageID":579,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848943381,"OldTribeID":87,"Points":1193,"CreatedAt":"2023-01-20T00:09:14Z","ServerKey":"us63"},{"ID":143,"VillageID":1006,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-20T00:28:12Z","ServerKey":"us63"},{"ID":144,"VillageID":3040,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-20T02:02:55Z","ServerKey":"us63"},{"ID":145,"VillageID":590,"NewOwnerID":848951434,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-20T02:12:43Z","ServerKey":"us63"},{"ID":146,"VillageID":2000,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-20T02:33:22Z","ServerKey":"us63"},{"ID":147,"VillageID":87,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848954052,"OldTribeID":4,"Points":1112,"CreatedAt":"2023-01-20T02:39:44Z","ServerKey":"us63"},{"ID":148,"VillageID":2403,"NewOwnerID":411608,"NewTribeID":64,"OldOwnerID":848954065,"OldTribeID":0,"Points":578,"CreatedAt":"2023-01-20T03:04:46Z","ServerKey":"us63"},{"ID":149,"VillageID":1454,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848950197,"OldTribeID":4,"Points":1248,"CreatedAt":"2023-01-20T03:39:55Z","ServerKey":"us63"},{"ID":150,"VillageID":322,"NewOwnerID":848945433,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-20T04:02:08Z","ServerKey":"us63"},{"ID":151,"VillageID":2193,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848954078,"OldTribeID":25,"Points":1580,"CreatedAt":"2023-01-20T04:10:04Z","ServerKey":"us63"},{"ID":152,"VillageID":1950,"NewOwnerID":848934532,"NewTribeID":105,"OldOwnerID":738010,"OldTribeID":49,"Points":629,"CreatedAt":"2023-01-20T04:27:57Z","ServerKey":"us63"},{"ID":153,"VillageID":178,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-20T04:50:16Z","ServerKey":"us63"},{"ID":154,"VillageID":2025,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-20T05:02:49Z","ServerKey":"us63"},{"ID":155,"VillageID":125,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":573,"CreatedAt":"2023-01-20T05:21:46Z","ServerKey":"us63"},{"ID":156,"VillageID":993,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-20T05:48:48Z","ServerKey":"us63"},{"ID":157,"VillageID":1846,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-20T06:16:34Z","ServerKey":"us63"},{"ID":158,"VillageID":1426,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-20T07:13:49Z","ServerKey":"us63"},{"ID":159,"VillageID":513,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-20T08:01:34Z","ServerKey":"us63"},{"ID":160,"VillageID":3089,"NewOwnerID":848954537,"NewTribeID":58,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-20T10:45:45Z","ServerKey":"us63"},{"ID":161,"VillageID":78,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1271,"CreatedAt":"2023-01-20T11:21:08Z","ServerKey":"us63"},{"ID":162,"VillageID":1147,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848942307,"OldTribeID":76,"Points":3255,"CreatedAt":"2023-01-20T11:33:50Z","ServerKey":"us63"},{"ID":163,"VillageID":1596,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-20T11:57:25Z","ServerKey":"us63"},{"ID":164,"VillageID":3278,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":719750,"OldTribeID":71,"Points":743,"CreatedAt":"2023-01-20T12:52:39Z","ServerKey":"us63"},{"ID":165,"VillageID":331,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-20T13:09:18Z","ServerKey":"us63"},{"ID":166,"VillageID":2458,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-20T13:48:33Z","ServerKey":"us63"},{"ID":167,"VillageID":1174,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848942811,"OldTribeID":0,"Points":544,"CreatedAt":"2023-01-20T14:16:10Z","ServerKey":"us63"},{"ID":168,"VillageID":1831,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-20T14:44:17Z","ServerKey":"us63"},{"ID":169,"VillageID":1695,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":848953826,"OldTribeID":0,"Points":1369,"CreatedAt":"2023-01-20T15:28:44Z","ServerKey":"us63"},{"ID":170,"VillageID":2908,"NewOwnerID":848951960,"NewTribeID":25,"OldOwnerID":848949716,"OldTribeID":0,"Points":775,"CreatedAt":"2023-01-20T15:33:16Z","ServerKey":"us63"},{"ID":171,"VillageID":641,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848910736,"OldTribeID":24,"Points":378,"CreatedAt":"2023-01-20T17:17:34Z","ServerKey":"us63"},{"ID":172,"VillageID":1003,"NewOwnerID":848945433,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-20T17:39:55Z","ServerKey":"us63"},{"ID":173,"VillageID":2609,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-20T17:54:23Z","ServerKey":"us63"},{"ID":174,"VillageID":524,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":775955,"OldTribeID":87,"Points":2529,"CreatedAt":"2023-01-20T18:42:00Z","ServerKey":"us63"},{"ID":175,"VillageID":70,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1699,"CreatedAt":"2023-01-20T20:04:40Z","ServerKey":"us63"},{"ID":176,"VillageID":3045,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":776810,"OldTribeID":76,"Points":1666,"CreatedAt":"2023-01-20T20:26:59Z","ServerKey":"us63"},{"ID":177,"VillageID":1739,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-20T20:35:43Z","ServerKey":"us63"},{"ID":178,"VillageID":569,"NewOwnerID":848934532,"NewTribeID":105,"OldOwnerID":848940914,"OldTribeID":49,"Points":863,"CreatedAt":"2023-01-20T20:43:25Z","ServerKey":"us63"},{"ID":179,"VillageID":791,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-20T21:10:35Z","ServerKey":"us63"},{"ID":180,"VillageID":2169,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":848948871,"OldTribeID":5,"Points":623,"CreatedAt":"2023-01-20T21:59:15Z","ServerKey":"us63"},{"ID":181,"VillageID":2210,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848944274,"OldTribeID":61,"Points":1623,"CreatedAt":"2023-01-20T22:44:32Z","ServerKey":"us63"},{"ID":182,"VillageID":1101,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-01-20T22:57:22Z","ServerKey":"us63"},{"ID":183,"VillageID":1022,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848910736,"OldTribeID":24,"Points":549,"CreatedAt":"2023-01-20T23:51:50Z","ServerKey":"us63"},{"ID":184,"VillageID":3296,"NewOwnerID":264792,"NewTribeID":64,"OldOwnerID":848954655,"OldTribeID":0,"Points":832,"CreatedAt":"2023-01-21T00:40:57Z","ServerKey":"us63"},{"ID":185,"VillageID":1674,"NewOwnerID":848953964,"NewTribeID":2,"OldOwnerID":848953656,"OldTribeID":0,"Points":751,"CreatedAt":"2023-01-21T00:49:38Z","ServerKey":"us63"},{"ID":186,"VillageID":1223,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848943091,"OldTribeID":0,"Points":790,"CreatedAt":"2023-01-21T00:54:26Z","ServerKey":"us63"},{"ID":187,"VillageID":386,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":494,"CreatedAt":"2023-01-21T01:16:03Z","ServerKey":"us63"},{"ID":188,"VillageID":2487,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-21T01:30:09Z","ServerKey":"us63"},{"ID":189,"VillageID":1222,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-21T02:35:58Z","ServerKey":"us63"},{"ID":190,"VillageID":211,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-21T02:49:06Z","ServerKey":"us63"},{"ID":191,"VillageID":2235,"NewOwnerID":848929097,"NewTribeID":0,"OldOwnerID":848949135,"OldTribeID":0,"Points":405,"CreatedAt":"2023-01-21T03:07:25Z","ServerKey":"us63"},{"ID":192,"VillageID":851,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":735480,"OldTribeID":0,"Points":1038,"CreatedAt":"2023-01-21T03:37:02Z","ServerKey":"us63"},{"ID":193,"VillageID":1183,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-21T04:02:38Z","ServerKey":"us63"},{"ID":194,"VillageID":1354,"NewOwnerID":767507,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-21T05:02:00Z","ServerKey":"us63"},{"ID":195,"VillageID":3472,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":848931393,"OldTribeID":104,"Points":2954,"CreatedAt":"2023-01-21T05:34:46Z","ServerKey":"us63"},{"ID":196,"VillageID":2691,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-21T06:08:55Z","ServerKey":"us63"},{"ID":197,"VillageID":2012,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-21T07:01:14Z","ServerKey":"us63"},{"ID":198,"VillageID":3681,"NewOwnerID":794964,"NewTribeID":0,"OldOwnerID":742669,"OldTribeID":91,"Points":1261,"CreatedAt":"2023-01-21T07:08:51Z","ServerKey":"us63"},{"ID":199,"VillageID":39,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-01-21T08:26:02Z","ServerKey":"us63"},{"ID":200,"VillageID":2891,"NewOwnerID":785504,"NewTribeID":50,"OldOwnerID":848943095,"OldTribeID":0,"Points":983,"CreatedAt":"2023-01-21T08:52:31Z","ServerKey":"us63"},{"ID":201,"VillageID":2211,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-21T09:05:21Z","ServerKey":"us63"},{"ID":202,"VillageID":2409,"NewOwnerID":676986,"NewTribeID":64,"OldOwnerID":848954494,"OldTribeID":0,"Points":550,"CreatedAt":"2023-01-21T09:26:18Z","ServerKey":"us63"},{"ID":203,"VillageID":604,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-21T09:30:28Z","ServerKey":"us63"},{"ID":204,"VillageID":1539,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-21T10:12:04Z","ServerKey":"us63"},{"ID":205,"VillageID":977,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-21T10:20:59Z","ServerKey":"us63"},{"ID":206,"VillageID":3229,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954537,"OldTribeID":6,"Points":4211,"CreatedAt":"2023-01-21T11:23:19Z","ServerKey":"us63"},{"ID":207,"VillageID":1560,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-21T12:30:55Z","ServerKey":"us63"},{"ID":208,"VillageID":283,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848951306,"OldTribeID":30,"Points":3444,"CreatedAt":"2023-01-21T13:32:29Z","ServerKey":"us63"},{"ID":209,"VillageID":2325,"NewOwnerID":848943740,"NewTribeID":58,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-21T14:24:47Z","ServerKey":"us63"},{"ID":210,"VillageID":1390,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-01-21T14:41:36Z","ServerKey":"us63"},{"ID":211,"VillageID":1880,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":848954516,"OldTribeID":22,"Points":1232,"CreatedAt":"2023-01-21T15:19:27Z","ServerKey":"us63"},{"ID":212,"VillageID":1487,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-21T15:24:11Z","ServerKey":"us63"},{"ID":213,"VillageID":444,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-21T15:50:49Z","ServerKey":"us63"},{"ID":214,"VillageID":2220,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-01-21T16:14:25Z","ServerKey":"us63"},{"ID":215,"VillageID":1600,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":848953047,"OldTribeID":111,"Points":846,"CreatedAt":"2023-01-21T16:52:34Z","ServerKey":"us63"},{"ID":216,"VillageID":773,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":554600,"OldTribeID":30,"Points":3682,"CreatedAt":"2023-01-21T16:53:35Z","ServerKey":"us63"},{"ID":217,"VillageID":546,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-21T16:58:44Z","ServerKey":"us63"},{"ID":218,"VillageID":90,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":2271,"CreatedAt":"2023-01-21T17:22:55Z","ServerKey":"us63"},{"ID":219,"VillageID":1450,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-21T17:24:44Z","ServerKey":"us63"},{"ID":220,"VillageID":77,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-21T17:55:22Z","ServerKey":"us63"},{"ID":221,"VillageID":1383,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-21T18:45:19Z","ServerKey":"us63"},{"ID":222,"VillageID":1388,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":687,"CreatedAt":"2023-01-21T19:35:07Z","ServerKey":"us63"},{"ID":223,"VillageID":3628,"NewOwnerID":272255,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-21T20:08:34Z","ServerKey":"us63"},{"ID":224,"VillageID":3446,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":848954681,"OldTribeID":72,"Points":812,"CreatedAt":"2023-01-21T20:09:15Z","ServerKey":"us63"},{"ID":225,"VillageID":645,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-21T20:14:48Z","ServerKey":"us63"},{"ID":226,"VillageID":1819,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":848954322,"OldTribeID":27,"Points":1770,"CreatedAt":"2023-01-21T20:21:08Z","ServerKey":"us63"},{"ID":227,"VillageID":3075,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-21T21:20:58Z","ServerKey":"us63"},{"ID":228,"VillageID":1246,"NewOwnerID":525543,"NewTribeID":58,"OldOwnerID":848943109,"OldTribeID":99,"Points":487,"CreatedAt":"2023-01-21T22:44:38Z","ServerKey":"us63"},{"ID":229,"VillageID":239,"NewOwnerID":772572,"NewTribeID":58,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-21T22:47:44Z","ServerKey":"us63"},{"ID":230,"VillageID":3151,"NewOwnerID":411608,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-21T23:07:46Z","ServerKey":"us63"},{"ID":231,"VillageID":2464,"NewOwnerID":676986,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-22T00:04:01Z","ServerKey":"us63"},{"ID":232,"VillageID":108,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-22T00:05:40Z","ServerKey":"us63"},{"ID":233,"VillageID":4061,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-01-22T00:42:26Z","ServerKey":"us63"},{"ID":234,"VillageID":3568,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848937628,"OldTribeID":0,"Points":1058,"CreatedAt":"2023-01-22T00:43:06Z","ServerKey":"us63"},{"ID":235,"VillageID":1318,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-22T01:16:35Z","ServerKey":"us63"},{"ID":236,"VillageID":1247,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-22T01:17:54Z","ServerKey":"us63"},{"ID":237,"VillageID":169,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848951854,"OldTribeID":0,"Points":4617,"CreatedAt":"2023-01-22T01:19:46Z","ServerKey":"us63"},{"ID":238,"VillageID":2485,"NewOwnerID":264792,"NewTribeID":64,"OldOwnerID":848949196,"OldTribeID":0,"Points":567,"CreatedAt":"2023-01-22T01:32:58Z","ServerKey":"us63"},{"ID":239,"VillageID":2713,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-01-22T02:12:55Z","ServerKey":"us63"},{"ID":240,"VillageID":2478,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-22T02:43:16Z","ServerKey":"us63"},{"ID":241,"VillageID":860,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848951854,"OldTribeID":0,"Points":697,"CreatedAt":"2023-01-22T03:33:50Z","ServerKey":"us63"},{"ID":242,"VillageID":1960,"NewOwnerID":741238,"NewTribeID":64,"OldOwnerID":848945593,"OldTribeID":0,"Points":541,"CreatedAt":"2023-01-22T03:59:17Z","ServerKey":"us63"},{"ID":243,"VillageID":1626,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-01-22T05:42:56Z","ServerKey":"us63"},{"ID":244,"VillageID":2603,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":723093,"OldTribeID":14,"Points":3674,"CreatedAt":"2023-01-22T05:44:34Z","ServerKey":"us63"},{"ID":245,"VillageID":1890,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-22T06:37:20Z","ServerKey":"us63"},{"ID":246,"VillageID":1374,"NewOwnerID":848951392,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-22T07:09:55Z","ServerKey":"us63"},{"ID":247,"VillageID":148,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-22T07:35:10Z","ServerKey":"us63"},{"ID":248,"VillageID":598,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":848953097,"OldTribeID":42,"Points":854,"CreatedAt":"2023-01-22T07:55:07Z","ServerKey":"us63"},{"ID":249,"VillageID":2329,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848941733,"OldTribeID":0,"Points":443,"CreatedAt":"2023-01-22T09:25:00Z","ServerKey":"us63"},{"ID":250,"VillageID":3902,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848952530,"OldTribeID":0,"Points":1818,"CreatedAt":"2023-01-22T09:40:09Z","ServerKey":"us63"},{"ID":251,"VillageID":473,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-22T09:43:38Z","ServerKey":"us63"},{"ID":252,"VillageID":313,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-22T10:13:22Z","ServerKey":"us63"},{"ID":253,"VillageID":1849,"NewOwnerID":848907165,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-22T10:17:52Z","ServerKey":"us63"},{"ID":254,"VillageID":3815,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":1639,"CreatedAt":"2023-01-22T10:41:22Z","ServerKey":"us63"},{"ID":255,"VillageID":1630,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953299,"OldTribeID":32,"Points":2428,"CreatedAt":"2023-01-22T10:41:47Z","ServerKey":"us63"},{"ID":256,"VillageID":788,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-22T10:55:49Z","ServerKey":"us63"},{"ID":257,"VillageID":1158,"NewOwnerID":848954368,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":640,"CreatedAt":"2023-01-22T12:34:42Z","ServerKey":"us63"},{"ID":258,"VillageID":2709,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-22T12:42:34Z","ServerKey":"us63"},{"ID":259,"VillageID":1347,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-01-22T12:42:41Z","ServerKey":"us63"},{"ID":260,"VillageID":2830,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":755127,"OldTribeID":0,"Points":350,"CreatedAt":"2023-01-22T13:06:36Z","ServerKey":"us63"},{"ID":261,"VillageID":443,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-22T13:37:32Z","ServerKey":"us63"},{"ID":262,"VillageID":4507,"NewOwnerID":848954762,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-22T14:21:43Z","ServerKey":"us63"},{"ID":263,"VillageID":1142,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-22T14:34:01Z","ServerKey":"us63"},{"ID":264,"VillageID":3453,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":848954682,"OldTribeID":104,"Points":1862,"CreatedAt":"2023-01-22T14:35:11Z","ServerKey":"us63"},{"ID":265,"VillageID":1015,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-22T15:03:13Z","ServerKey":"us63"},{"ID":266,"VillageID":1802,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-22T15:04:38Z","ServerKey":"us63"},{"ID":267,"VillageID":2463,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-22T15:19:01Z","ServerKey":"us63"},{"ID":268,"VillageID":246,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848953972,"OldTribeID":13,"Points":1948,"CreatedAt":"2023-01-22T15:34:00Z","ServerKey":"us63"},{"ID":269,"VillageID":2723,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-22T15:49:34Z","ServerKey":"us63"},{"ID":270,"VillageID":538,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-22T16:15:24Z","ServerKey":"us63"},{"ID":271,"VillageID":1828,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-22T16:27:15Z","ServerKey":"us63"},{"ID":272,"VillageID":2592,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-22T16:33:32Z","ServerKey":"us63"},{"ID":273,"VillageID":2072,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-22T16:54:34Z","ServerKey":"us63"},{"ID":274,"VillageID":2756,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-22T17:36:58Z","ServerKey":"us63"},{"ID":275,"VillageID":271,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848947928,"OldTribeID":14,"Points":1776,"CreatedAt":"2023-01-22T17:52:56Z","ServerKey":"us63"},{"ID":276,"VillageID":1078,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848931150,"OldTribeID":46,"Points":1778,"CreatedAt":"2023-01-22T18:24:03Z","ServerKey":"us63"},{"ID":277,"VillageID":1078,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":1754,"CreatedAt":"2023-01-22T18:24:04Z","ServerKey":"us63"},{"ID":278,"VillageID":316,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-22T19:22:40Z","ServerKey":"us63"},{"ID":279,"VillageID":3373,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954669,"OldTribeID":0,"Points":3108,"CreatedAt":"2023-01-22T19:35:13Z","ServerKey":"us63"},{"ID":280,"VillageID":408,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":453833,"OldTribeID":0,"Points":1060,"CreatedAt":"2023-01-22T19:40:02Z","ServerKey":"us63"},{"ID":281,"VillageID":2850,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-22T20:07:35Z","ServerKey":"us63"},{"ID":282,"VillageID":1593,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-01-22T20:23:21Z","ServerKey":"us63"},{"ID":283,"VillageID":1795,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-22T21:02:04Z","ServerKey":"us63"},{"ID":284,"VillageID":3252,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-22T21:29:05Z","ServerKey":"us63"},{"ID":285,"VillageID":3252,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":787586,"OldTribeID":74,"Points":107,"CreatedAt":"2023-01-22T21:34:08Z","ServerKey":"us63"},{"ID":286,"VillageID":3767,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-01-22T21:40:17Z","ServerKey":"us63"},{"ID":287,"VillageID":392,"NewOwnerID":848951434,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-22T22:10:02Z","ServerKey":"us63"},{"ID":288,"VillageID":683,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-22T22:24:13Z","ServerKey":"us63"},{"ID":289,"VillageID":1201,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":675,"CreatedAt":"2023-01-22T22:41:22Z","ServerKey":"us63"},{"ID":290,"VillageID":2163,"NewOwnerID":848954221,"NewTribeID":105,"OldOwnerID":848949246,"OldTribeID":0,"Points":1071,"CreatedAt":"2023-01-22T22:43:50Z","ServerKey":"us63"},{"ID":291,"VillageID":2256,"NewOwnerID":848951321,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-22T23:07:30Z","ServerKey":"us63"},{"ID":292,"VillageID":3378,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-23T00:20:57Z","ServerKey":"us63"},{"ID":293,"VillageID":3112,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848953551,"OldTribeID":0,"Points":1056,"CreatedAt":"2023-01-23T00:23:17Z","ServerKey":"us63"},{"ID":294,"VillageID":3184,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":848950808,"OldTribeID":46,"Points":664,"CreatedAt":"2023-01-23T00:46:28Z","ServerKey":"us63"},{"ID":295,"VillageID":46,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-01-23T01:57:30Z","ServerKey":"us63"},{"ID":296,"VillageID":1862,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-23T02:09:15Z","ServerKey":"us63"},{"ID":297,"VillageID":730,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-23T02:44:08Z","ServerKey":"us63"},{"ID":298,"VillageID":2059,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":848945603,"OldTribeID":0,"Points":546,"CreatedAt":"2023-01-23T03:02:52Z","ServerKey":"us63"},{"ID":299,"VillageID":1282,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":848943207,"OldTribeID":0,"Points":510,"CreatedAt":"2023-01-23T03:10:03Z","ServerKey":"us63"},{"ID":300,"VillageID":1805,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-23T03:25:43Z","ServerKey":"us63"},{"ID":301,"VillageID":2842,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-23T03:39:57Z","ServerKey":"us63"},{"ID":302,"VillageID":3081,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-01-23T04:01:37Z","ServerKey":"us63"},{"ID":303,"VillageID":1629,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-23T04:22:29Z","ServerKey":"us63"},{"ID":304,"VillageID":2992,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":263554,"OldTribeID":83,"Points":1405,"CreatedAt":"2023-01-23T04:30:08Z","ServerKey":"us63"},{"ID":305,"VillageID":233,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848952095,"OldTribeID":12,"Points":2788,"CreatedAt":"2023-01-23T04:46:28Z","ServerKey":"us63"},{"ID":306,"VillageID":1291,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-23T05:22:44Z","ServerKey":"us63"},{"ID":307,"VillageID":1250,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848943110,"OldTribeID":0,"Points":531,"CreatedAt":"2023-01-23T05:27:03Z","ServerKey":"us63"},{"ID":308,"VillageID":2705,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T05:52:58Z","ServerKey":"us63"},{"ID":309,"VillageID":1481,"NewOwnerID":509766,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-23T07:03:03Z","ServerKey":"us63"},{"ID":310,"VillageID":2581,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-23T07:12:56Z","ServerKey":"us63"},{"ID":311,"VillageID":4423,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":848940278,"OldTribeID":142,"Points":860,"CreatedAt":"2023-01-23T07:17:31Z","ServerKey":"us63"},{"ID":312,"VillageID":1893,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-23T07:29:46Z","ServerKey":"us63"},{"ID":313,"VillageID":3257,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":848954653,"OldTribeID":72,"Points":722,"CreatedAt":"2023-01-23T07:56:22Z","ServerKey":"us63"},{"ID":314,"VillageID":1530,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848952288,"OldTribeID":20,"Points":4103,"CreatedAt":"2023-01-23T08:00:01Z","ServerKey":"us63"},{"ID":315,"VillageID":1173,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":848952288,"OldTribeID":20,"Points":867,"CreatedAt":"2023-01-23T08:00:30Z","ServerKey":"us63"},{"ID":316,"VillageID":847,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-23T08:36:43Z","ServerKey":"us63"},{"ID":317,"VillageID":792,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":597297,"OldTribeID":38,"Points":943,"CreatedAt":"2023-01-23T09:33:44Z","ServerKey":"us63"},{"ID":318,"VillageID":837,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-23T09:34:06Z","ServerKey":"us63"},{"ID":319,"VillageID":3171,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":848943251,"OldTribeID":0,"Points":930,"CreatedAt":"2023-01-23T09:47:23Z","ServerKey":"us63"},{"ID":320,"VillageID":792,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848951549,"OldTribeID":20,"Points":919,"CreatedAt":"2023-01-23T09:58:09Z","ServerKey":"us63"},{"ID":321,"VillageID":1418,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848949038,"OldTribeID":0,"Points":426,"CreatedAt":"2023-01-23T10:19:34Z","ServerKey":"us63"},{"ID":322,"VillageID":2468,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T10:55:32Z","ServerKey":"us63"},{"ID":323,"VillageID":2848,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954615,"OldTribeID":76,"Points":1751,"CreatedAt":"2023-01-23T10:58:39Z","ServerKey":"us63"},{"ID":324,"VillageID":2850,"NewOwnerID":848951023,"NewTribeID":36,"OldOwnerID":848954008,"OldTribeID":2,"Points":228,"CreatedAt":"2023-01-23T11:22:50Z","ServerKey":"us63"},{"ID":325,"VillageID":2396,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":848888469,"OldTribeID":27,"Points":992,"CreatedAt":"2023-01-23T11:39:25Z","ServerKey":"us63"},{"ID":326,"VillageID":1597,"NewOwnerID":848954437,"NewTribeID":12,"OldOwnerID":848953039,"OldTribeID":22,"Points":517,"CreatedAt":"2023-01-23T13:03:42Z","ServerKey":"us63"},{"ID":327,"VillageID":750,"NewOwnerID":848953964,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-01-23T13:55:04Z","ServerKey":"us63"},{"ID":328,"VillageID":2367,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-23T14:41:06Z","ServerKey":"us63"},{"ID":329,"VillageID":229,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848952269,"OldTribeID":12,"Points":3769,"CreatedAt":"2023-01-23T15:03:54Z","ServerKey":"us63"},{"ID":330,"VillageID":1021,"NewOwnerID":37720,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-23T15:34:24Z","ServerKey":"us63"},{"ID":331,"VillageID":1237,"NewOwnerID":776842,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-23T16:02:25Z","ServerKey":"us63"},{"ID":332,"VillageID":1083,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-23T16:24:10Z","ServerKey":"us63"},{"ID":333,"VillageID":2884,"NewOwnerID":767834,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-23T16:27:11Z","ServerKey":"us63"},{"ID":334,"VillageID":1207,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":666,"CreatedAt":"2023-01-23T16:56:16Z","ServerKey":"us63"},{"ID":335,"VillageID":1207,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":848951612,"OldTribeID":35,"Points":642,"CreatedAt":"2023-01-23T16:56:17Z","ServerKey":"us63"},{"ID":336,"VillageID":2384,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T17:06:46Z","ServerKey":"us63"},{"ID":337,"VillageID":3828,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848953943,"OldTribeID":0,"Points":1114,"CreatedAt":"2023-01-23T17:08:27Z","ServerKey":"us63"},{"ID":338,"VillageID":2276,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":848942961,"OldTribeID":0,"Points":501,"CreatedAt":"2023-01-23T17:39:08Z","ServerKey":"us63"},{"ID":339,"VillageID":288,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-23T17:51:39Z","ServerKey":"us63"},{"ID":340,"VillageID":623,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-23T18:33:55Z","ServerKey":"us63"},{"ID":341,"VillageID":796,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":603825,"OldTribeID":58,"Points":1947,"CreatedAt":"2023-01-23T18:58:53Z","ServerKey":"us63"},{"ID":342,"VillageID":2462,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848936911,"OldTribeID":142,"Points":2198,"CreatedAt":"2023-01-23T18:59:29Z","ServerKey":"us63"},{"ID":343,"VillageID":1833,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-23T18:59:38Z","ServerKey":"us63"},{"ID":344,"VillageID":3074,"NewOwnerID":848929097,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-23T19:07:07Z","ServerKey":"us63"},{"ID":345,"VillageID":753,"NewOwnerID":275322,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-23T19:08:55Z","ServerKey":"us63"},{"ID":346,"VillageID":2456,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-23T19:30:29Z","ServerKey":"us63"},{"ID":347,"VillageID":2007,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":848945687,"OldTribeID":0,"Points":567,"CreatedAt":"2023-01-23T19:52:02Z","ServerKey":"us63"},{"ID":348,"VillageID":2209,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-23T20:11:23Z","ServerKey":"us63"},{"ID":349,"VillageID":623,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848947790,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-23T20:30:19Z","ServerKey":"us63"},{"ID":350,"VillageID":202,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-23T20:35:21Z","ServerKey":"us63"},{"ID":351,"VillageID":2773,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":743815,"OldTribeID":77,"Points":2021,"CreatedAt":"2023-01-23T20:46:44Z","ServerKey":"us63"},{"ID":352,"VillageID":850,"NewOwnerID":848953670,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-23T21:18:54Z","ServerKey":"us63"},{"ID":353,"VillageID":884,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":766350,"OldTribeID":41,"Points":769,"CreatedAt":"2023-01-23T21:45:04Z","ServerKey":"us63"},{"ID":354,"VillageID":1186,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-23T21:45:29Z","ServerKey":"us63"},{"ID":355,"VillageID":507,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":763299,"OldTribeID":50,"Points":903,"CreatedAt":"2023-01-23T21:58:05Z","ServerKey":"us63"},{"ID":356,"VillageID":3218,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-23T21:58:11Z","ServerKey":"us63"},{"ID":357,"VillageID":2941,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-01-23T21:58:15Z","ServerKey":"us63"},{"ID":358,"VillageID":20,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-23T22:06:51Z","ServerKey":"us63"},{"ID":359,"VillageID":18,"NewOwnerID":772572,"NewTribeID":148,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-23T22:09:07Z","ServerKey":"us63"},{"ID":360,"VillageID":2778,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-23T22:13:06Z","ServerKey":"us63"},{"ID":361,"VillageID":2441,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-23T22:32:43Z","ServerKey":"us63"},{"ID":362,"VillageID":330,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-23T23:27:56Z","ServerKey":"us63"},{"ID":363,"VillageID":1907,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T23:35:08Z","ServerKey":"us63"},{"ID":364,"VillageID":2607,"NewOwnerID":848954360,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":984,"CreatedAt":"2023-01-23T23:39:58Z","ServerKey":"us63"},{"ID":365,"VillageID":4231,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-23T23:50:17Z","ServerKey":"us63"},{"ID":366,"VillageID":3615,"NewOwnerID":783836,"NewTribeID":0,"OldOwnerID":848952309,"OldTribeID":0,"Points":1810,"CreatedAt":"2023-01-24T00:00:37Z","ServerKey":"us63"},{"ID":367,"VillageID":2782,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-01-24T00:22:01Z","ServerKey":"us63"},{"ID":368,"VillageID":286,"NewOwnerID":848951392,"NewTribeID":12,"OldOwnerID":551467,"OldTribeID":0,"Points":383,"CreatedAt":"2023-01-24T00:33:31Z","ServerKey":"us63"},{"ID":369,"VillageID":658,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-01-24T00:41:14Z","ServerKey":"us63"},{"ID":370,"VillageID":3238,"NewOwnerID":848929352,"NewTribeID":146,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-01-24T00:44:06Z","ServerKey":"us63"},{"ID":371,"VillageID":2481,"NewOwnerID":848950985,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-24T00:44:45Z","ServerKey":"us63"},{"ID":372,"VillageID":2322,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-24T00:53:14Z","ServerKey":"us63"},{"ID":373,"VillageID":2322,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":741494,"OldTribeID":2,"Points":109,"CreatedAt":"2023-01-24T00:53:14Z","ServerKey":"us63"},{"ID":374,"VillageID":3564,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-24T01:15:27Z","ServerKey":"us63"},{"ID":375,"VillageID":762,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-24T01:20:17Z","ServerKey":"us63"},{"ID":376,"VillageID":2130,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848945685,"OldTribeID":0,"Points":572,"CreatedAt":"2023-01-24T01:25:07Z","ServerKey":"us63"},{"ID":377,"VillageID":708,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":288947,"OldTribeID":0,"Points":380,"CreatedAt":"2023-01-24T01:49:53Z","ServerKey":"us63"},{"ID":378,"VillageID":2259,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-24T01:51:06Z","ServerKey":"us63"},{"ID":379,"VillageID":1740,"NewOwnerID":848953915,"NewTribeID":35,"OldOwnerID":848953971,"OldTribeID":0,"Points":492,"CreatedAt":"2023-01-24T02:10:06Z","ServerKey":"us63"},{"ID":380,"VillageID":2140,"NewOwnerID":744969,"NewTribeID":122,"OldOwnerID":848945636,"OldTribeID":0,"Points":583,"CreatedAt":"2023-01-24T02:41:48Z","ServerKey":"us63"},{"ID":381,"VillageID":3795,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":795,"CreatedAt":"2023-01-24T02:47:40Z","ServerKey":"us63"},{"ID":382,"VillageID":1384,"NewOwnerID":577132,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-24T02:48:34Z","ServerKey":"us63"},{"ID":383,"VillageID":3367,"NewOwnerID":848954127,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":1304,"CreatedAt":"2023-01-24T03:05:39Z","ServerKey":"us63"},{"ID":384,"VillageID":918,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":772572,"OldTribeID":0,"Points":5435,"CreatedAt":"2023-01-24T03:38:00Z","ServerKey":"us63"},{"ID":385,"VillageID":1725,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-24T03:38:01Z","ServerKey":"us63"},{"ID":386,"VillageID":186,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848953670,"OldTribeID":12,"Points":3378,"CreatedAt":"2023-01-24T03:43:48Z","ServerKey":"us63"},{"ID":387,"VillageID":918,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848936926,"OldTribeID":6,"Points":5452,"CreatedAt":"2023-01-24T04:03:24Z","ServerKey":"us63"},{"ID":388,"VillageID":918,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954266,"OldTribeID":35,"Points":5428,"CreatedAt":"2023-01-24T04:03:37Z","ServerKey":"us63"},{"ID":389,"VillageID":1410,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-24T04:57:47Z","ServerKey":"us63"},{"ID":390,"VillageID":18,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":772572,"OldTribeID":0,"Points":220,"CreatedAt":"2023-01-24T05:56:01Z","ServerKey":"us63"},{"ID":391,"VillageID":3221,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-24T06:32:28Z","ServerKey":"us63"},{"ID":392,"VillageID":858,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":742547,"OldTribeID":144,"Points":3094,"CreatedAt":"2023-01-24T06:45:28Z","ServerKey":"us63"},{"ID":393,"VillageID":1102,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":1421,"CreatedAt":"2023-01-24T07:00:54Z","ServerKey":"us63"},{"ID":394,"VillageID":3834,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-24T07:46:56Z","ServerKey":"us63"},{"ID":395,"VillageID":32,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-24T08:02:30Z","ServerKey":"us63"},{"ID":396,"VillageID":4633,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-24T08:42:18Z","ServerKey":"us63"},{"ID":397,"VillageID":1764,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":545,"CreatedAt":"2023-01-24T08:58:34Z","ServerKey":"us63"},{"ID":398,"VillageID":19,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-01-24T09:04:27Z","ServerKey":"us63"},{"ID":399,"VillageID":3214,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-24T09:15:54Z","ServerKey":"us63"},{"ID":400,"VillageID":3356,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-24T09:16:13Z","ServerKey":"us63"},{"ID":401,"VillageID":1468,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848951187,"OldTribeID":77,"Points":2917,"CreatedAt":"2023-01-24T10:03:25Z","ServerKey":"us63"},{"ID":402,"VillageID":2151,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-24T11:42:09Z","ServerKey":"us63"},{"ID":403,"VillageID":219,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":275322,"OldTribeID":12,"Points":2923,"CreatedAt":"2023-01-24T11:49:23Z","ServerKey":"us63"},{"ID":404,"VillageID":854,"NewOwnerID":848907165,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-01-24T12:07:44Z","ServerKey":"us63"},{"ID":405,"VillageID":2751,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-24T13:00:54Z","ServerKey":"us63"},{"ID":406,"VillageID":1692,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":848953814,"OldTribeID":0,"Points":3053,"CreatedAt":"2023-01-24T13:40:25Z","ServerKey":"us63"},{"ID":407,"VillageID":3445,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-01-24T13:50:26Z","ServerKey":"us63"},{"ID":408,"VillageID":624,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848943750,"OldTribeID":36,"Points":2676,"CreatedAt":"2023-01-24T14:54:06Z","ServerKey":"us63"},{"ID":409,"VillageID":172,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1707,"CreatedAt":"2023-01-24T15:20:24Z","ServerKey":"us63"},{"ID":410,"VillageID":2549,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-24T15:21:50Z","ServerKey":"us63"},{"ID":411,"VillageID":1438,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-24T15:40:19Z","ServerKey":"us63"},{"ID":412,"VillageID":172,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848936921,"OldTribeID":6,"Points":1731,"CreatedAt":"2023-01-24T15:44:08Z","ServerKey":"us63"},{"ID":413,"VillageID":172,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":1731,"CreatedAt":"2023-01-24T15:44:08Z","ServerKey":"us63"},{"ID":414,"VillageID":2494,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-24T16:24:30Z","ServerKey":"us63"},{"ID":415,"VillageID":477,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-24T16:34:17Z","ServerKey":"us63"},{"ID":416,"VillageID":255,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-24T17:59:14Z","ServerKey":"us63"},{"ID":417,"VillageID":1160,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-24T18:28:04Z","ServerKey":"us63"},{"ID":418,"VillageID":1971,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-24T18:39:00Z","ServerKey":"us63"},{"ID":419,"VillageID":3180,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-24T18:39:58Z","ServerKey":"us63"},{"ID":420,"VillageID":1488,"NewOwnerID":485721,"NewTribeID":50,"OldOwnerID":848951664,"OldTribeID":116,"Points":308,"CreatedAt":"2023-01-24T18:44:42Z","ServerKey":"us63"},{"ID":421,"VillageID":1058,"NewOwnerID":743702,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-01-24T18:49:21Z","ServerKey":"us63"},{"ID":422,"VillageID":3948,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":848954742,"OldTribeID":113,"Points":1391,"CreatedAt":"2023-01-24T18:56:57Z","ServerKey":"us63"},{"ID":423,"VillageID":1442,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":848949344,"OldTribeID":0,"Points":2792,"CreatedAt":"2023-01-24T19:16:40Z","ServerKey":"us63"},{"ID":424,"VillageID":582,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":848946508,"OldTribeID":111,"Points":1835,"CreatedAt":"2023-01-24T19:41:13Z","ServerKey":"us63"},{"ID":425,"VillageID":696,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":149791,"OldTribeID":0,"Points":2187,"CreatedAt":"2023-01-24T19:48:55Z","ServerKey":"us63"},{"ID":426,"VillageID":5785,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-24T19:53:58Z","ServerKey":"us63"},{"ID":427,"VillageID":5715,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-24T20:12:24Z","ServerKey":"us63"},{"ID":428,"VillageID":3417,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-01-24T20:16:16Z","ServerKey":"us63"},{"ID":429,"VillageID":1357,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-24T20:17:54Z","ServerKey":"us63"},{"ID":430,"VillageID":2422,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-24T20:17:58Z","ServerKey":"us63"},{"ID":431,"VillageID":1071,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-24T20:22:54Z","ServerKey":"us63"},{"ID":432,"VillageID":467,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-24T20:29:02Z","ServerKey":"us63"},{"ID":433,"VillageID":198,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-24T20:47:57Z","ServerKey":"us63"},{"ID":434,"VillageID":1232,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":537,"CreatedAt":"2023-01-24T20:54:52Z","ServerKey":"us63"},{"ID":435,"VillageID":1599,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-24T20:57:02Z","ServerKey":"us63"},{"ID":436,"VillageID":1599,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954240,"OldTribeID":6,"Points":120,"CreatedAt":"2023-01-24T20:57:02Z","ServerKey":"us63"},{"ID":438,"VillageID":2788,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-01-24T21:06:53Z","ServerKey":"us63"},{"ID":439,"VillageID":3725,"NewOwnerID":783836,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-24T21:15:12Z","ServerKey":"us63"},{"ID":440,"VillageID":822,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-24T21:18:02Z","ServerKey":"us63"},{"ID":441,"VillageID":2415,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-24T21:32:12Z","ServerKey":"us63"},{"ID":442,"VillageID":225,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-24T21:58:29Z","ServerKey":"us63"},{"ID":443,"VillageID":4180,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-24T22:20:43Z","ServerKey":"us63"},{"ID":444,"VillageID":2062,"NewOwnerID":848954138,"NewTribeID":64,"OldOwnerID":848945639,"OldTribeID":0,"Points":558,"CreatedAt":"2023-01-24T23:08:26Z","ServerKey":"us63"},{"ID":445,"VillageID":926,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-24T23:31:27Z","ServerKey":"us63"},{"ID":446,"VillageID":1944,"NewOwnerID":848909148,"NewTribeID":48,"OldOwnerID":848948642,"OldTribeID":0,"Points":310,"CreatedAt":"2023-01-24T23:33:12Z","ServerKey":"us63"},{"ID":447,"VillageID":312,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-24T23:48:59Z","ServerKey":"us63"},{"ID":448,"VillageID":2430,"NewOwnerID":848951321,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-24T23:49:23Z","ServerKey":"us63"},{"ID":449,"VillageID":553,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-25T00:26:17Z","ServerKey":"us63"},{"ID":450,"VillageID":295,"NewOwnerID":848953046,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-01-25T00:33:33Z","ServerKey":"us63"},{"ID":451,"VillageID":2432,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848953333,"OldTribeID":36,"Points":2486,"CreatedAt":"2023-01-25T01:13:00Z","ServerKey":"us63"},{"ID":452,"VillageID":3242,"NewOwnerID":741238,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-25T01:13:35Z","ServerKey":"us63"},{"ID":453,"VillageID":3814,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-25T01:49:03Z","ServerKey":"us63"},{"ID":454,"VillageID":3440,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":848938929,"OldTribeID":104,"Points":2871,"CreatedAt":"2023-01-25T01:52:45Z","ServerKey":"us63"},{"ID":455,"VillageID":1034,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":848913714,"OldTribeID":0,"Points":1512,"CreatedAt":"2023-01-25T01:56:10Z","ServerKey":"us63"},{"ID":456,"VillageID":2752,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":742615,"OldTribeID":0,"Points":1426,"CreatedAt":"2023-01-25T03:04:35Z","ServerKey":"us63"},{"ID":457,"VillageID":4640,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-25T03:50:37Z","ServerKey":"us63"},{"ID":458,"VillageID":1915,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-25T04:56:22Z","ServerKey":"us63"},{"ID":459,"VillageID":751,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1188,"CreatedAt":"2023-01-25T05:35:54Z","ServerKey":"us63"},{"ID":460,"VillageID":1904,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":743278,"OldTribeID":0,"Points":966,"CreatedAt":"2023-01-25T06:48:16Z","ServerKey":"us63"},{"ID":461,"VillageID":1513,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-25T06:59:54Z","ServerKey":"us63"},{"ID":462,"VillageID":1434,"NewOwnerID":485721,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-25T07:15:11Z","ServerKey":"us63"},{"ID":463,"VillageID":1153,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-25T07:50:30Z","ServerKey":"us63"},{"ID":464,"VillageID":2368,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-25T08:07:25Z","ServerKey":"us63"},{"ID":465,"VillageID":282,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-25T08:18:44Z","ServerKey":"us63"},{"ID":466,"VillageID":2295,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-25T09:17:29Z","ServerKey":"us63"},{"ID":467,"VillageID":659,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":530862,"OldTribeID":32,"Points":2179,"CreatedAt":"2023-01-25T10:27:56Z","ServerKey":"us63"},{"ID":468,"VillageID":1897,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":374413,"OldTribeID":41,"Points":1383,"CreatedAt":"2023-01-25T10:48:07Z","ServerKey":"us63"},{"ID":469,"VillageID":277,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-25T10:51:52Z","ServerKey":"us63"},{"ID":470,"VillageID":1621,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":848953265,"OldTribeID":115,"Points":537,"CreatedAt":"2023-01-25T11:01:26Z","ServerKey":"us63"},{"ID":471,"VillageID":385,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-01-25T11:23:04Z","ServerKey":"us63"},{"ID":472,"VillageID":2854,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848950985,"OldTribeID":0,"Points":3650,"CreatedAt":"2023-01-25T11:48:08Z","ServerKey":"us63"},{"ID":473,"VillageID":2854,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":3650,"CreatedAt":"2023-01-25T11:48:08Z","ServerKey":"us63"},{"ID":474,"VillageID":1279,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":540,"CreatedAt":"2023-01-25T12:27:03Z","ServerKey":"us63"},{"ID":475,"VillageID":3624,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-25T12:33:04Z","ServerKey":"us63"},{"ID":476,"VillageID":2426,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":848954568,"OldTribeID":0,"Points":1598,"CreatedAt":"2023-01-25T13:18:00Z","ServerKey":"us63"},{"ID":477,"VillageID":1806,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":848954290,"OldTribeID":61,"Points":2320,"CreatedAt":"2023-01-25T13:20:15Z","ServerKey":"us63"},{"ID":478,"VillageID":3915,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848954738,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-25T14:01:04Z","ServerKey":"us63"},{"ID":479,"VillageID":1598,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-25T14:18:41Z","ServerKey":"us63"},{"ID":480,"VillageID":62,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-25T14:25:38Z","ServerKey":"us63"},{"ID":481,"VillageID":1039,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-25T14:29:59Z","ServerKey":"us63"},{"ID":482,"VillageID":5907,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":30,"CreatedAt":"2023-01-25T14:47:34Z","ServerKey":"us63"},{"ID":483,"VillageID":1245,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-25T15:09:01Z","ServerKey":"us63"},{"ID":484,"VillageID":1884,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-01-25T15:56:39Z","ServerKey":"us63"},{"ID":485,"VillageID":4937,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":848939177,"OldTribeID":0,"Points":1111,"CreatedAt":"2023-01-25T16:08:45Z","ServerKey":"us63"},{"ID":486,"VillageID":361,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-25T16:26:13Z","ServerKey":"us63"},{"ID":487,"VillageID":924,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2149,"CreatedAt":"2023-01-25T16:28:55Z","ServerKey":"us63"},{"ID":488,"VillageID":2845,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":848954614,"OldTribeID":53,"Points":598,"CreatedAt":"2023-01-25T16:31:42Z","ServerKey":"us63"},{"ID":489,"VillageID":1902,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-25T17:30:43Z","ServerKey":"us63"},{"ID":490,"VillageID":698,"NewOwnerID":767507,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-25T17:44:40Z","ServerKey":"us63"},{"ID":491,"VillageID":3105,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":848943612,"OldTribeID":0,"Points":720,"CreatedAt":"2023-01-25T18:05:38Z","ServerKey":"us63"},{"ID":492,"VillageID":720,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-25T18:10:29Z","ServerKey":"us63"},{"ID":493,"VillageID":1978,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-25T18:22:40Z","ServerKey":"us63"},{"ID":494,"VillageID":848,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":735360,"OldTribeID":22,"Points":2171,"CreatedAt":"2023-01-25T18:24:11Z","ServerKey":"us63"},{"ID":495,"VillageID":4328,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":848954805,"OldTribeID":0,"Points":342,"CreatedAt":"2023-01-25T19:12:59Z","ServerKey":"us63"},{"ID":496,"VillageID":1225,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-01-25T19:25:06Z","ServerKey":"us63"},{"ID":497,"VillageID":1398,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-25T19:47:23Z","ServerKey":"us63"},{"ID":498,"VillageID":435,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-25T19:51:41Z","ServerKey":"us63"},{"ID":499,"VillageID":2956,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":848950286,"OldTribeID":36,"Points":2302,"CreatedAt":"2023-01-25T20:07:20Z","ServerKey":"us63"},{"ID":500,"VillageID":1467,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-25T20:27:36Z","ServerKey":"us63"},{"ID":501,"VillageID":2045,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-25T20:37:09Z","ServerKey":"us63"},{"ID":502,"VillageID":3098,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-25T21:36:56Z","ServerKey":"us63"},{"ID":503,"VillageID":3272,"NewOwnerID":754270,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-25T21:52:21Z","ServerKey":"us63"},{"ID":504,"VillageID":237,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":848950888,"OldTribeID":77,"Points":2009,"CreatedAt":"2023-01-25T22:07:10Z","ServerKey":"us63"},{"ID":505,"VillageID":1235,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":585,"CreatedAt":"2023-01-25T22:08:38Z","ServerKey":"us63"},{"ID":506,"VillageID":2905,"NewOwnerID":795932,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-25T22:21:36Z","ServerKey":"us63"},{"ID":507,"VillageID":554,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":5637,"CreatedAt":"2023-01-25T22:44:10Z","ServerKey":"us63"},{"ID":508,"VillageID":240,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848953209,"OldTribeID":0,"Points":2370,"CreatedAt":"2023-01-25T22:46:23Z","ServerKey":"us63"},{"ID":509,"VillageID":4140,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":788487,"OldTribeID":0,"Points":1366,"CreatedAt":"2023-01-25T23:17:00Z","ServerKey":"us63"},{"ID":510,"VillageID":275,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848953891,"OldTribeID":17,"Points":2690,"CreatedAt":"2023-01-25T23:27:17Z","ServerKey":"us63"},{"ID":511,"VillageID":932,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-25T23:47:17Z","ServerKey":"us63"},{"ID":512,"VillageID":1068,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-01-25T23:59:36Z","ServerKey":"us63"},{"ID":513,"VillageID":2741,"NewOwnerID":795932,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-26T00:23:07Z","ServerKey":"us63"},{"ID":514,"VillageID":4265,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848954794,"OldTribeID":0,"Points":1875,"CreatedAt":"2023-01-26T00:23:28Z","ServerKey":"us63"},{"ID":515,"VillageID":36,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-26T00:26:15Z","ServerKey":"us63"},{"ID":516,"VillageID":2269,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-26T00:30:04Z","ServerKey":"us63"},{"ID":517,"VillageID":1991,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-26T00:39:53Z","ServerKey":"us63"},{"ID":518,"VillageID":1378,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":549,"CreatedAt":"2023-01-26T00:48:56Z","ServerKey":"us63"},{"ID":519,"VillageID":2558,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-26T00:55:37Z","ServerKey":"us63"},{"ID":520,"VillageID":1391,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":714,"CreatedAt":"2023-01-26T01:02:32Z","ServerKey":"us63"},{"ID":521,"VillageID":1705,"NewOwnerID":848935714,"NewTribeID":4,"OldOwnerID":848953912,"OldTribeID":0,"Points":2362,"CreatedAt":"2023-01-26T01:49:15Z","ServerKey":"us63"},{"ID":522,"VillageID":2865,"NewOwnerID":848925398,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-26T01:58:50Z","ServerKey":"us63"},{"ID":523,"VillageID":3220,"NewOwnerID":848929352,"NewTribeID":146,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-26T02:05:40Z","ServerKey":"us63"},{"ID":524,"VillageID":1226,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":554,"CreatedAt":"2023-01-26T02:23:09Z","ServerKey":"us63"},{"ID":525,"VillageID":1316,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848945039,"OldTribeID":14,"Points":2536,"CreatedAt":"2023-01-26T02:52:30Z","ServerKey":"us63"},{"ID":526,"VillageID":2345,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":848941749,"OldTribeID":0,"Points":556,"CreatedAt":"2023-01-26T02:55:20Z","ServerKey":"us63"},{"ID":527,"VillageID":3267,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":781094,"OldTribeID":30,"Points":5081,"CreatedAt":"2023-01-26T02:58:21Z","ServerKey":"us63"},{"ID":528,"VillageID":3016,"NewOwnerID":848954604,"NewTribeID":105,"OldOwnerID":848939988,"OldTribeID":62,"Points":477,"CreatedAt":"2023-01-26T03:09:07Z","ServerKey":"us63"},{"ID":529,"VillageID":1949,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-26T03:12:11Z","ServerKey":"us63"},{"ID":530,"VillageID":1341,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848946221,"OldTribeID":66,"Points":2126,"CreatedAt":"2023-01-26T03:26:52Z","ServerKey":"us63"},{"ID":531,"VillageID":2740,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":619293,"OldTribeID":36,"Points":2021,"CreatedAt":"2023-01-26T03:30:01Z","ServerKey":"us63"},{"ID":532,"VillageID":684,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-26T03:40:56Z","ServerKey":"us63"},{"ID":533,"VillageID":2918,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-01-26T04:17:15Z","ServerKey":"us63"},{"ID":534,"VillageID":3710,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":712365,"OldTribeID":0,"Points":297,"CreatedAt":"2023-01-26T04:21:34Z","ServerKey":"us63"},{"ID":535,"VillageID":652,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-26T05:02:20Z","ServerKey":"us63"},{"ID":536,"VillageID":949,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-26T05:15:19Z","ServerKey":"us63"},{"ID":537,"VillageID":648,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-26T05:33:20Z","ServerKey":"us63"},{"ID":538,"VillageID":1151,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":848942499,"OldTribeID":0,"Points":316,"CreatedAt":"2023-01-26T06:00:33Z","ServerKey":"us63"},{"ID":539,"VillageID":3359,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-01-26T06:09:10Z","ServerKey":"us63"},{"ID":540,"VillageID":5250,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-26T06:37:00Z","ServerKey":"us63"},{"ID":541,"VillageID":4274,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-26T06:58:36Z","ServerKey":"us63"},{"ID":542,"VillageID":799,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":605760,"OldTribeID":0,"Points":3744,"CreatedAt":"2023-01-26T07:07:13Z","ServerKey":"us63"},{"ID":543,"VillageID":278,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-26T07:23:59Z","ServerKey":"us63"},{"ID":544,"VillageID":189,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-26T07:48:09Z","ServerKey":"us63"},{"ID":545,"VillageID":226,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848951842,"OldTribeID":12,"Points":3400,"CreatedAt":"2023-01-26T08:07:19Z","ServerKey":"us63"},{"ID":546,"VillageID":1013,"NewOwnerID":848912363,"NewTribeID":151,"OldOwnerID":0,"OldTribeID":0,"Points":1949,"CreatedAt":"2023-01-26T08:14:02Z","ServerKey":"us63"},{"ID":547,"VillageID":3037,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-26T08:20:02Z","ServerKey":"us63"},{"ID":548,"VillageID":346,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-01-26T08:42:33Z","ServerKey":"us63"},{"ID":549,"VillageID":1669,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-26T08:45:31Z","ServerKey":"us63"},{"ID":550,"VillageID":1886,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-26T08:47:58Z","ServerKey":"us63"},{"ID":551,"VillageID":4083,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-26T08:50:00Z","ServerKey":"us63"},{"ID":552,"VillageID":3935,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T09:24:26Z","ServerKey":"us63"},{"ID":553,"VillageID":2792,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954609,"OldTribeID":50,"Points":2608,"CreatedAt":"2023-01-26T09:47:44Z","ServerKey":"us63"},{"ID":554,"VillageID":3312,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-26T11:01:51Z","ServerKey":"us63"},{"ID":555,"VillageID":930,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":776842,"OldTribeID":105,"Points":4175,"CreatedAt":"2023-01-26T11:03:59Z","ServerKey":"us63"},{"ID":556,"VillageID":1329,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":588,"CreatedAt":"2023-01-26T11:04:19Z","ServerKey":"us63"},{"ID":557,"VillageID":536,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-01-26T11:12:32Z","ServerKey":"us63"},{"ID":558,"VillageID":3387,"NewOwnerID":848952403,"NewTribeID":66,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-26T12:05:20Z","ServerKey":"us63"},{"ID":559,"VillageID":557,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848913779,"OldTribeID":17,"Points":1976,"CreatedAt":"2023-01-26T12:35:10Z","ServerKey":"us63"},{"ID":560,"VillageID":1612,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-26T12:43:29Z","ServerKey":"us63"},{"ID":561,"VillageID":1146,"NewOwnerID":848912363,"NewTribeID":151,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-01-26T13:43:05Z","ServerKey":"us63"},{"ID":562,"VillageID":3433,"NewOwnerID":848953962,"NewTribeID":27,"OldOwnerID":589825,"OldTribeID":0,"Points":10316,"CreatedAt":"2023-01-26T13:56:16Z","ServerKey":"us63"},{"ID":563,"VillageID":666,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T13:57:56Z","ServerKey":"us63"},{"ID":564,"VillageID":3542,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-26T14:00:54Z","ServerKey":"us63"},{"ID":565,"VillageID":2383,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-26T14:30:59Z","ServerKey":"us63"},{"ID":566,"VillageID":3926,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-26T14:36:59Z","ServerKey":"us63"},{"ID":567,"VillageID":1925,"NewOwnerID":729548,"NewTribeID":65,"OldOwnerID":780353,"OldTribeID":66,"Points":622,"CreatedAt":"2023-01-26T14:40:33Z","ServerKey":"us63"},{"ID":568,"VillageID":1767,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-01-26T15:05:21Z","ServerKey":"us63"},{"ID":569,"VillageID":736,"NewOwnerID":848953915,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-01-26T15:46:53Z","ServerKey":"us63"},{"ID":570,"VillageID":879,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-26T16:01:05Z","ServerKey":"us63"},{"ID":571,"VillageID":2574,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-26T16:14:03Z","ServerKey":"us63"},{"ID":572,"VillageID":1494,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848951817,"OldTribeID":32,"Points":2606,"CreatedAt":"2023-01-26T16:18:17Z","ServerKey":"us63"},{"ID":573,"VillageID":1285,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":614,"CreatedAt":"2023-01-26T16:26:57Z","ServerKey":"us63"},{"ID":574,"VillageID":1504,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-26T17:18:35Z","ServerKey":"us63"},{"ID":575,"VillageID":1988,"NewOwnerID":848954368,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-26T17:25:41Z","ServerKey":"us63"},{"ID":576,"VillageID":1013,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848912363,"OldTribeID":151,"Points":2024,"CreatedAt":"2023-01-26T17:30:03Z","ServerKey":"us63"},{"ID":577,"VillageID":875,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-26T17:38:17Z","ServerKey":"us63"},{"ID":578,"VillageID":2237,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-26T17:41:09Z","ServerKey":"us63"},{"ID":579,"VillageID":2285,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T17:54:12Z","ServerKey":"us63"},{"ID":580,"VillageID":587,"NewOwnerID":848952324,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-26T18:30:48Z","ServerKey":"us63"},{"ID":581,"VillageID":503,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-26T18:41:24Z","ServerKey":"us63"},{"ID":582,"VillageID":253,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":304576,"OldTribeID":14,"Points":2568,"CreatedAt":"2023-01-26T18:54:23Z","ServerKey":"us63"},{"ID":583,"VillageID":2010,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848942994,"OldTribeID":0,"Points":644,"CreatedAt":"2023-01-26T19:13:49Z","ServerKey":"us63"},{"ID":584,"VillageID":3433,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848953962,"OldTribeID":27,"Points":10292,"CreatedAt":"2023-01-26T19:22:41Z","ServerKey":"us63"},{"ID":585,"VillageID":2159,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":848943096,"OldTribeID":0,"Points":618,"CreatedAt":"2023-01-26T19:28:30Z","ServerKey":"us63"},{"ID":586,"VillageID":828,"NewOwnerID":767507,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-26T19:51:40Z","ServerKey":"us63"},{"ID":587,"VillageID":103,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-26T19:52:26Z","ServerKey":"us63"},{"ID":588,"VillageID":3811,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-26T19:58:53Z","ServerKey":"us63"},{"ID":589,"VillageID":3127,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-26T20:48:11Z","ServerKey":"us63"},{"ID":590,"VillageID":2859,"NewOwnerID":848925398,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-01-26T21:11:58Z","ServerKey":"us63"},{"ID":591,"VillageID":1178,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":590,"CreatedAt":"2023-01-26T21:29:51Z","ServerKey":"us63"},{"ID":592,"VillageID":3657,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848919274,"OldTribeID":0,"Points":947,"CreatedAt":"2023-01-26T21:46:00Z","ServerKey":"us63"},{"ID":593,"VillageID":2473,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-01-26T21:49:19Z","ServerKey":"us63"},{"ID":594,"VillageID":681,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-26T22:02:49Z","ServerKey":"us63"},{"ID":595,"VillageID":3363,"NewOwnerID":848953207,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T22:23:51Z","ServerKey":"us63"},{"ID":596,"VillageID":3198,"NewOwnerID":848953270,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-01-26T22:26:46Z","ServerKey":"us63"},{"ID":597,"VillageID":604,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":1305,"CreatedAt":"2023-01-26T22:55:38Z","ServerKey":"us63"},{"ID":598,"VillageID":4536,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-26T22:56:08Z","ServerKey":"us63"},{"ID":599,"VillageID":1918,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-26T23:07:36Z","ServerKey":"us63"},{"ID":600,"VillageID":3400,"NewOwnerID":848954594,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-26T23:11:43Z","ServerKey":"us63"},{"ID":601,"VillageID":183,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":3302,"CreatedAt":"2023-01-26T23:17:48Z","ServerKey":"us63"},{"ID":602,"VillageID":3030,"NewOwnerID":848952960,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-26T23:20:46Z","ServerKey":"us63"},{"ID":603,"VillageID":3263,"NewOwnerID":848951962,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-26T23:40:00Z","ServerKey":"us63"},{"ID":604,"VillageID":2489,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848954571,"OldTribeID":36,"Points":656,"CreatedAt":"2023-01-26T23:50:32Z","ServerKey":"us63"},{"ID":605,"VillageID":3375,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-27T00:25:54Z","ServerKey":"us63"},{"ID":606,"VillageID":1793,"NewOwnerID":848953964,"NewTribeID":2,"OldOwnerID":848954223,"OldTribeID":32,"Points":2813,"CreatedAt":"2023-01-27T00:33:18Z","ServerKey":"us63"},{"ID":607,"VillageID":543,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-27T00:50:12Z","ServerKey":"us63"},{"ID":608,"VillageID":2566,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848949508,"OldTribeID":36,"Points":2188,"CreatedAt":"2023-01-27T00:51:19Z","ServerKey":"us63"},{"ID":609,"VillageID":1655,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-01-27T01:06:56Z","ServerKey":"us63"},{"ID":610,"VillageID":173,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-27T01:08:32Z","ServerKey":"us63"},{"ID":611,"VillageID":3148,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":1210,"CreatedAt":"2023-01-27T01:18:48Z","ServerKey":"us63"},{"ID":612,"VillageID":1299,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-27T01:40:00Z","ServerKey":"us63"},{"ID":613,"VillageID":243,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":848937060,"OldTribeID":13,"Points":3051,"CreatedAt":"2023-01-27T01:42:56Z","ServerKey":"us63"},{"ID":614,"VillageID":2636,"NewOwnerID":789838,"NewTribeID":66,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-27T01:44:47Z","ServerKey":"us63"},{"ID":615,"VillageID":5024,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-27T01:51:05Z","ServerKey":"us63"},{"ID":616,"VillageID":4687,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-27T02:20:26Z","ServerKey":"us63"},{"ID":617,"VillageID":2528,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-27T03:00:03Z","ServerKey":"us63"},{"ID":618,"VillageID":2373,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":848949114,"OldTribeID":0,"Points":589,"CreatedAt":"2023-01-27T03:14:05Z","ServerKey":"us63"},{"ID":619,"VillageID":2302,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":848940746,"OldTribeID":0,"Points":488,"CreatedAt":"2023-01-27T03:16:47Z","ServerKey":"us63"},{"ID":620,"VillageID":3089,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954537,"OldTribeID":36,"Points":1545,"CreatedAt":"2023-01-27T03:49:25Z","ServerKey":"us63"},{"ID":621,"VillageID":4301,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-27T04:12:44Z","ServerKey":"us63"},{"ID":622,"VillageID":2369,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848917443,"OldTribeID":122,"Points":5598,"CreatedAt":"2023-01-27T04:17:59Z","ServerKey":"us63"},{"ID":623,"VillageID":306,"NewOwnerID":525543,"NewTribeID":15,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-27T04:56:20Z","ServerKey":"us63"},{"ID":624,"VillageID":1288,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-01-27T05:27:43Z","ServerKey":"us63"},{"ID":625,"VillageID":252,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-27T05:37:08Z","ServerKey":"us63"},{"ID":626,"VillageID":260,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":764159,"OldTribeID":105,"Points":2745,"CreatedAt":"2023-01-27T05:39:42Z","ServerKey":"us63"},{"ID":627,"VillageID":2213,"NewOwnerID":744969,"NewTribeID":122,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-27T05:47:10Z","ServerKey":"us63"},{"ID":628,"VillageID":2898,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":423944,"OldTribeID":0,"Points":1075,"CreatedAt":"2023-01-27T05:47:19Z","ServerKey":"us63"},{"ID":629,"VillageID":2365,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":848949191,"OldTribeID":0,"Points":614,"CreatedAt":"2023-01-27T05:56:27Z","ServerKey":"us63"},{"ID":630,"VillageID":4455,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":848954824,"OldTribeID":113,"Points":1165,"CreatedAt":"2023-01-27T05:57:58Z","ServerKey":"us63"},{"ID":631,"VillageID":1477,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-27T06:06:02Z","ServerKey":"us63"},{"ID":632,"VillageID":2719,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-01-27T06:52:41Z","ServerKey":"us63"},{"ID":633,"VillageID":4284,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-01-27T07:09:07Z","ServerKey":"us63"},{"ID":634,"VillageID":2035,"NewOwnerID":620806,"NewTribeID":97,"OldOwnerID":848949101,"OldTribeID":0,"Points":406,"CreatedAt":"2023-01-27T07:12:10Z","ServerKey":"us63"},{"ID":635,"VillageID":2129,"NewOwnerID":756854,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-01-27T07:17:41Z","ServerKey":"us63"},{"ID":636,"VillageID":1921,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-27T07:33:34Z","ServerKey":"us63"},{"ID":637,"VillageID":3145,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":848943232,"OldTribeID":0,"Points":1051,"CreatedAt":"2023-01-27T07:36:49Z","ServerKey":"us63"},{"ID":638,"VillageID":3591,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-27T07:37:58Z","ServerKey":"us63"},{"ID":639,"VillageID":3936,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":469425,"OldTribeID":15,"Points":1829,"CreatedAt":"2023-01-27T07:43:11Z","ServerKey":"us63"},{"ID":640,"VillageID":2058,"NewOwnerID":848954221,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-27T07:49:15Z","ServerKey":"us63"},{"ID":641,"VillageID":871,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":754636,"OldTribeID":22,"Points":3539,"CreatedAt":"2023-01-27T08:10:11Z","ServerKey":"us63"},{"ID":642,"VillageID":2205,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-27T08:11:01Z","ServerKey":"us63"},{"ID":643,"VillageID":735,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-27T08:34:33Z","ServerKey":"us63"},{"ID":644,"VillageID":3072,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-27T08:44:01Z","ServerKey":"us63"},{"ID":645,"VillageID":3584,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-27T09:29:19Z","ServerKey":"us63"},{"ID":646,"VillageID":1704,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-27T09:38:45Z","ServerKey":"us63"},{"ID":647,"VillageID":1377,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-27T09:39:32Z","ServerKey":"us63"},{"ID":648,"VillageID":1377,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":114,"CreatedAt":"2023-01-27T09:40:22Z","ServerKey":"us63"},{"ID":649,"VillageID":2821,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":848939549,"OldTribeID":42,"Points":3640,"CreatedAt":"2023-01-27T10:04:22Z","ServerKey":"us63"},{"ID":650,"VillageID":2821,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":568,"OldTribeID":32,"Points":3640,"CreatedAt":"2023-01-27T10:04:22Z","ServerKey":"us63"},{"ID":651,"VillageID":2359,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-27T10:04:24Z","ServerKey":"us63"},{"ID":652,"VillageID":1405,"NewOwnerID":377337,"NewTribeID":3,"OldOwnerID":848949034,"OldTribeID":0,"Points":549,"CreatedAt":"2023-01-27T11:44:14Z","ServerKey":"us63"},{"ID":653,"VillageID":3398,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848951960,"OldTribeID":97,"Points":3474,"CreatedAt":"2023-01-27T11:55:53Z","ServerKey":"us63"},{"ID":654,"VillageID":2696,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-27T12:26:02Z","ServerKey":"us63"},{"ID":655,"VillageID":3725,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":783836,"OldTribeID":0,"Points":453,"CreatedAt":"2023-01-27T12:35:16Z","ServerKey":"us63"},{"ID":656,"VillageID":3735,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-27T12:58:10Z","ServerKey":"us63"},{"ID":657,"VillageID":1943,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-27T13:00:00Z","ServerKey":"us63"},{"ID":658,"VillageID":1292,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":646,"CreatedAt":"2023-01-27T13:20:16Z","ServerKey":"us63"},{"ID":659,"VillageID":4561,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":706486,"OldTribeID":99,"Points":1080,"CreatedAt":"2023-01-27T13:27:13Z","ServerKey":"us63"},{"ID":660,"VillageID":4247,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-27T13:33:24Z","ServerKey":"us63"},{"ID":661,"VillageID":1130,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":3706,"CreatedAt":"2023-01-27T13:36:50Z","ServerKey":"us63"},{"ID":662,"VillageID":2534,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-27T13:42:57Z","ServerKey":"us63"},{"ID":663,"VillageID":2588,"NewOwnerID":848954594,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-27T13:47:39Z","ServerKey":"us63"},{"ID":664,"VillageID":1105,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848935714,"OldTribeID":4,"Points":3586,"CreatedAt":"2023-01-27T14:10:00Z","ServerKey":"us63"},{"ID":665,"VillageID":2780,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-01-27T14:20:13Z","ServerKey":"us63"},{"ID":666,"VillageID":2780,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":785504,"OldTribeID":86,"Points":199,"CreatedAt":"2023-01-27T14:20:25Z","ServerKey":"us63"},{"ID":667,"VillageID":3099,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":848952889,"OldTribeID":0,"Points":1301,"CreatedAt":"2023-01-27T14:21:12Z","ServerKey":"us63"},{"ID":668,"VillageID":4836,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848954331,"OldTribeID":17,"Points":1167,"CreatedAt":"2023-01-27T14:30:04Z","ServerKey":"us63"},{"ID":669,"VillageID":1460,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":848950783,"OldTribeID":0,"Points":549,"CreatedAt":"2023-01-27T14:49:27Z","ServerKey":"us63"},{"ID":670,"VillageID":721,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-27T15:19:12Z","ServerKey":"us63"},{"ID":671,"VillageID":4019,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-27T15:49:13Z","ServerKey":"us63"},{"ID":672,"VillageID":825,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-27T16:01:42Z","ServerKey":"us63"},{"ID":673,"VillageID":1098,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-27T16:08:01Z","ServerKey":"us63"},{"ID":674,"VillageID":1701,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-27T16:29:34Z","ServerKey":"us63"},{"ID":675,"VillageID":2887,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-27T16:38:15Z","ServerKey":"us63"},{"ID":676,"VillageID":2320,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":848949115,"OldTribeID":0,"Points":570,"CreatedAt":"2023-01-27T16:54:19Z","ServerKey":"us63"},{"ID":677,"VillageID":3355,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-27T17:01:37Z","ServerKey":"us63"},{"ID":678,"VillageID":1192,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":676,"CreatedAt":"2023-01-27T17:19:31Z","ServerKey":"us63"},{"ID":679,"VillageID":3455,"NewOwnerID":848952960,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-27T17:25:02Z","ServerKey":"us63"},{"ID":680,"VillageID":2906,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-27T17:29:38Z","ServerKey":"us63"},{"ID":681,"VillageID":2448,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-27T17:31:17Z","ServerKey":"us63"},{"ID":682,"VillageID":2434,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-27T17:35:48Z","ServerKey":"us63"},{"ID":683,"VillageID":377,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-27T17:37:28Z","ServerKey":"us63"},{"ID":684,"VillageID":377,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848954208,"OldTribeID":2,"Points":133,"CreatedAt":"2023-01-27T17:37:37Z","ServerKey":"us63"},{"ID":685,"VillageID":73,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-27T17:53:02Z","ServerKey":"us63"},{"ID":686,"VillageID":900,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-27T18:03:32Z","ServerKey":"us63"},{"ID":687,"VillageID":2924,"NewOwnerID":848954594,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-27T18:12:06Z","ServerKey":"us63"},{"ID":688,"VillageID":1919,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-01-27T18:35:25Z","ServerKey":"us63"},{"ID":689,"VillageID":2165,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-27T18:42:32Z","ServerKey":"us63"},{"ID":690,"VillageID":940,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":780940,"OldTribeID":99,"Points":3126,"CreatedAt":"2023-01-27T18:51:35Z","ServerKey":"us63"},{"ID":691,"VillageID":787,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-27T19:08:49Z","ServerKey":"us63"},{"ID":692,"VillageID":2511,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":776340,"OldTribeID":0,"Points":581,"CreatedAt":"2023-01-27T19:13:03Z","ServerKey":"us63"},{"ID":693,"VillageID":3725,"NewOwnerID":783836,"NewTribeID":0,"OldOwnerID":415671,"OldTribeID":85,"Points":434,"CreatedAt":"2023-01-27T19:17:12Z","ServerKey":"us63"},{"ID":694,"VillageID":2928,"NewOwnerID":848954604,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-27T19:19:50Z","ServerKey":"us63"},{"ID":695,"VillageID":6065,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-27T19:28:52Z","ServerKey":"us63"},{"ID":696,"VillageID":3107,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-27T19:38:13Z","ServerKey":"us63"},{"ID":697,"VillageID":2350,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-01-27T20:18:42Z","ServerKey":"us63"},{"ID":698,"VillageID":192,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-01-27T20:19:57Z","ServerKey":"us63"},{"ID":699,"VillageID":1277,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-27T20:56:07Z","ServerKey":"us63"},{"ID":700,"VillageID":1018,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-27T21:28:57Z","ServerKey":"us63"},{"ID":701,"VillageID":1607,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-27T21:32:46Z","ServerKey":"us63"},{"ID":702,"VillageID":314,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":754653,"OldTribeID":22,"Points":2779,"CreatedAt":"2023-01-27T21:50:13Z","ServerKey":"us63"},{"ID":703,"VillageID":990,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-27T22:06:29Z","ServerKey":"us63"},{"ID":704,"VillageID":1705,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":2721,"CreatedAt":"2023-01-27T22:18:00Z","ServerKey":"us63"},{"ID":705,"VillageID":2844,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-27T23:01:07Z","ServerKey":"us63"},{"ID":706,"VillageID":3202,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-27T23:01:55Z","ServerKey":"us63"},{"ID":707,"VillageID":2460,"NewOwnerID":848951321,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-27T23:43:23Z","ServerKey":"us63"},{"ID":708,"VillageID":60,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848951962,"OldTribeID":97,"Points":2591,"CreatedAt":"2023-01-27T23:57:15Z","ServerKey":"us63"},{"ID":709,"VillageID":4753,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848951879,"OldTribeID":99,"Points":1225,"CreatedAt":"2023-01-28T00:28:37Z","ServerKey":"us63"},{"ID":710,"VillageID":3225,"NewOwnerID":848954138,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-28T00:52:17Z","ServerKey":"us63"},{"ID":711,"VillageID":2987,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-28T01:08:24Z","ServerKey":"us63"},{"ID":712,"VillageID":1113,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-28T01:15:33Z","ServerKey":"us63"},{"ID":713,"VillageID":2694,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-01-28T01:27:27Z","ServerKey":"us63"},{"ID":714,"VillageID":4913,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-28T01:59:30Z","ServerKey":"us63"},{"ID":715,"VillageID":701,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-28T02:41:02Z","ServerKey":"us63"},{"ID":716,"VillageID":1352,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-01-28T02:41:52Z","ServerKey":"us63"},{"ID":717,"VillageID":239,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":588,"CreatedAt":"2023-01-28T02:48:05Z","ServerKey":"us63"},{"ID":718,"VillageID":1264,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-28T02:49:13Z","ServerKey":"us63"},{"ID":719,"VillageID":1408,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":626,"CreatedAt":"2023-01-28T03:10:44Z","ServerKey":"us63"},{"ID":720,"VillageID":1408,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":230556,"OldTribeID":48,"Points":626,"CreatedAt":"2023-01-28T03:10:44Z","ServerKey":"us63"},{"ID":721,"VillageID":1385,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":843,"CreatedAt":"2023-01-28T03:32:06Z","ServerKey":"us63"},{"ID":722,"VillageID":688,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-28T03:40:03Z","ServerKey":"us63"},{"ID":723,"VillageID":627,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":1659,"CreatedAt":"2023-01-28T03:45:00Z","ServerKey":"us63"},{"ID":724,"VillageID":500,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":758134,"OldTribeID":22,"Points":2313,"CreatedAt":"2023-01-28T03:55:22Z","ServerKey":"us63"},{"ID":725,"VillageID":1479,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-28T03:56:00Z","ServerKey":"us63"},{"ID":726,"VillageID":3450,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":675021,"OldTribeID":0,"Points":1184,"CreatedAt":"2023-01-28T04:16:51Z","ServerKey":"us63"},{"ID":727,"VillageID":2972,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-01-28T04:21:25Z","ServerKey":"us63"},{"ID":728,"VillageID":533,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-28T04:26:01Z","ServerKey":"us63"},{"ID":729,"VillageID":1730,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-28T04:29:12Z","ServerKey":"us63"},{"ID":730,"VillageID":1241,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-28T04:45:33Z","ServerKey":"us63"},{"ID":731,"VillageID":533,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":848936921,"OldTribeID":6,"Points":175,"CreatedAt":"2023-01-28T04:48:06Z","ServerKey":"us63"},{"ID":732,"VillageID":5501,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-01-28T05:03:12Z","ServerKey":"us63"},{"ID":733,"VillageID":1883,"NewOwnerID":755121,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-01-28T05:09:05Z","ServerKey":"us63"},{"ID":734,"VillageID":1260,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-01-28T05:14:26Z","ServerKey":"us63"},{"ID":735,"VillageID":3232,"NewOwnerID":58945,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":61,"Points":4004,"CreatedAt":"2023-01-28T06:11:27Z","ServerKey":"us63"},{"ID":736,"VillageID":974,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-01-28T06:12:11Z","ServerKey":"us63"},{"ID":737,"VillageID":688,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954266,"OldTribeID":35,"Points":199,"CreatedAt":"2023-01-28T06:42:11Z","ServerKey":"us63"},{"ID":738,"VillageID":2360,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-28T06:47:19Z","ServerKey":"us63"},{"ID":739,"VillageID":2149,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":848947369,"OldTribeID":0,"Points":565,"CreatedAt":"2023-01-28T06:59:45Z","ServerKey":"us63"},{"ID":740,"VillageID":726,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-28T07:09:40Z","ServerKey":"us63"},{"ID":741,"VillageID":349,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-28T07:12:25Z","ServerKey":"us63"},{"ID":742,"VillageID":1424,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":848949056,"OldTribeID":42,"Points":1734,"CreatedAt":"2023-01-28T07:14:08Z","ServerKey":"us63"},{"ID":743,"VillageID":1108,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":848935817,"OldTribeID":0,"Points":3415,"CreatedAt":"2023-01-28T07:15:18Z","ServerKey":"us63"},{"ID":744,"VillageID":1108,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":85,"Points":3415,"CreatedAt":"2023-01-28T07:15:18Z","ServerKey":"us63"},{"ID":745,"VillageID":1408,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":640,"CreatedAt":"2023-01-28T07:34:18Z","ServerKey":"us63"},{"ID":746,"VillageID":423,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848954201,"OldTribeID":35,"Points":4198,"CreatedAt":"2023-01-28T07:40:27Z","ServerKey":"us63"},{"ID":747,"VillageID":6554,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-01-28T07:43:41Z","ServerKey":"us63"},{"ID":748,"VillageID":520,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":775654,"OldTribeID":105,"Points":2374,"CreatedAt":"2023-01-28T07:49:08Z","ServerKey":"us63"},{"ID":749,"VillageID":2118,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-01-28T07:53:20Z","ServerKey":"us63"},{"ID":750,"VillageID":1099,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848934831,"OldTribeID":35,"Points":4413,"CreatedAt":"2023-01-28T07:58:21Z","ServerKey":"us63"},{"ID":751,"VillageID":1662,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-28T08:24:14Z","ServerKey":"us63"},{"ID":752,"VillageID":3269,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-28T08:51:09Z","ServerKey":"us63"},{"ID":753,"VillageID":6418,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-28T08:55:37Z","ServerKey":"us63"},{"ID":754,"VillageID":1776,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-28T10:12:43Z","ServerKey":"us63"},{"ID":755,"VillageID":4691,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":769092,"OldTribeID":0,"Points":1807,"CreatedAt":"2023-01-28T10:17:44Z","ServerKey":"us63"},{"ID":756,"VillageID":1652,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-01-28T10:55:11Z","ServerKey":"us63"},{"ID":757,"VillageID":533,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":61,"Points":175,"CreatedAt":"2023-01-28T11:15:20Z","ServerKey":"us63"},{"ID":758,"VillageID":1215,"NewOwnerID":667167,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":808,"CreatedAt":"2023-01-28T11:25:15Z","ServerKey":"us63"},{"ID":759,"VillageID":1108,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":153367,"OldTribeID":85,"Points":3415,"CreatedAt":"2023-01-28T11:52:20Z","ServerKey":"us63"},{"ID":760,"VillageID":3112,"NewOwnerID":848934532,"NewTribeID":138,"OldOwnerID":848951632,"OldTribeID":105,"Points":1710,"CreatedAt":"2023-01-28T12:08:50Z","ServerKey":"us63"},{"ID":761,"VillageID":3565,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848934812,"OldTribeID":42,"Points":1094,"CreatedAt":"2023-01-28T12:36:02Z","ServerKey":"us63"},{"ID":762,"VillageID":2115,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":792503,"OldTribeID":0,"Points":3222,"CreatedAt":"2023-01-28T12:39:32Z","ServerKey":"us63"},{"ID":763,"VillageID":1663,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953539,"OldTribeID":32,"Points":3035,"CreatedAt":"2023-01-28T12:49:09Z","ServerKey":"us63"},{"ID":764,"VillageID":5508,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-01-28T13:07:12Z","ServerKey":"us63"},{"ID":765,"VillageID":679,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954475,"OldTribeID":73,"Points":1877,"CreatedAt":"2023-01-28T13:14:15Z","ServerKey":"us63"},{"ID":766,"VillageID":2431,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-28T13:29:54Z","ServerKey":"us63"},{"ID":767,"VillageID":4070,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-01-28T13:49:52Z","ServerKey":"us63"},{"ID":768,"VillageID":3,"NewOwnerID":848954218,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-28T14:02:08Z","ServerKey":"us63"},{"ID":769,"VillageID":106,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-28T14:41:52Z","ServerKey":"us63"},{"ID":770,"VillageID":3030,"NewOwnerID":58945,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":61,"Points":385,"CreatedAt":"2023-01-28T14:43:46Z","ServerKey":"us63"},{"ID":771,"VillageID":3455,"NewOwnerID":58945,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":61,"Points":199,"CreatedAt":"2023-01-28T14:44:05Z","ServerKey":"us63"},{"ID":772,"VillageID":3147,"NewOwnerID":848954662,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-28T15:04:31Z","ServerKey":"us63"},{"ID":773,"VillageID":2311,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-28T15:04:45Z","ServerKey":"us63"},{"ID":774,"VillageID":6460,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-01-28T15:29:29Z","ServerKey":"us63"},{"ID":775,"VillageID":1035,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-01-28T15:46:41Z","ServerKey":"us63"},{"ID":776,"VillageID":5601,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-28T15:50:17Z","ServerKey":"us63"},{"ID":777,"VillageID":842,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-28T15:51:41Z","ServerKey":"us63"},{"ID":778,"VillageID":4549,"NewOwnerID":7536,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-28T15:56:39Z","ServerKey":"us63"},{"ID":779,"VillageID":4478,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-28T16:16:15Z","ServerKey":"us63"},{"ID":780,"VillageID":3336,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-28T16:21:32Z","ServerKey":"us63"},{"ID":781,"VillageID":3609,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848950849,"OldTribeID":0,"Points":2830,"CreatedAt":"2023-01-28T16:34:32Z","ServerKey":"us63"},{"ID":782,"VillageID":2606,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-28T16:35:53Z","ServerKey":"us63"},{"ID":783,"VillageID":943,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-28T17:13:43Z","ServerKey":"us63"},{"ID":784,"VillageID":242,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-28T17:49:18Z","ServerKey":"us63"},{"ID":785,"VillageID":1930,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-28T18:16:22Z","ServerKey":"us63"},{"ID":786,"VillageID":2710,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-28T18:41:21Z","ServerKey":"us63"},{"ID":787,"VillageID":403,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-28T18:43:11Z","ServerKey":"us63"},{"ID":788,"VillageID":3759,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":755829,"OldTribeID":152,"Points":2378,"CreatedAt":"2023-01-28T18:58:31Z","ServerKey":"us63"},{"ID":789,"VillageID":3353,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-28T19:10:24Z","ServerKey":"us63"},{"ID":790,"VillageID":2260,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":1110,"CreatedAt":"2023-01-28T19:18:03Z","ServerKey":"us63"},{"ID":791,"VillageID":92,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-28T19:56:59Z","ServerKey":"us63"},{"ID":792,"VillageID":1881,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-28T19:57:34Z","ServerKey":"us63"},{"ID":793,"VillageID":5097,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-28T20:00:07Z","ServerKey":"us63"},{"ID":794,"VillageID":5595,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-01-28T20:04:01Z","ServerKey":"us63"},{"ID":795,"VillageID":5684,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-28T20:27:36Z","ServerKey":"us63"},{"ID":796,"VillageID":1549,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-28T20:37:08Z","ServerKey":"us63"},{"ID":797,"VillageID":1680,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-28T20:46:25Z","ServerKey":"us63"},{"ID":798,"VillageID":4154,"NewOwnerID":302611,"NewTribeID":97,"OldOwnerID":848954775,"OldTribeID":0,"Points":2830,"CreatedAt":"2023-01-28T20:47:11Z","ServerKey":"us63"},{"ID":799,"VillageID":484,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-28T21:06:24Z","ServerKey":"us63"},{"ID":800,"VillageID":1211,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":730,"CreatedAt":"2023-01-28T21:18:15Z","ServerKey":"us63"},{"ID":801,"VillageID":6233,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-01-28T21:35:52Z","ServerKey":"us63"},{"ID":802,"VillageID":1368,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-28T21:42:34Z","ServerKey":"us63"},{"ID":803,"VillageID":1540,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848952403,"OldTribeID":66,"Points":4097,"CreatedAt":"2023-01-28T21:46:58Z","ServerKey":"us63"},{"ID":804,"VillageID":1940,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-28T22:13:43Z","ServerKey":"us63"},{"ID":805,"VillageID":1188,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":880,"CreatedAt":"2023-01-28T22:32:47Z","ServerKey":"us63"},{"ID":806,"VillageID":1681,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-28T22:38:41Z","ServerKey":"us63"},{"ID":807,"VillageID":2657,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-01-28T22:47:10Z","ServerKey":"us63"},{"ID":808,"VillageID":5440,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":775730,"OldTribeID":131,"Points":873,"CreatedAt":"2023-01-28T22:57:46Z","ServerKey":"us63"},{"ID":809,"VillageID":2605,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-28T23:03:28Z","ServerKey":"us63"},{"ID":810,"VillageID":2897,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-28T23:10:00Z","ServerKey":"us63"},{"ID":811,"VillageID":2126,"NewOwnerID":848943740,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-01-28T23:24:15Z","ServerKey":"us63"},{"ID":812,"VillageID":4731,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-28T23:29:36Z","ServerKey":"us63"},{"ID":813,"VillageID":130,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-01-28T23:32:38Z","ServerKey":"us63"},{"ID":814,"VillageID":4025,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-28T23:35:09Z","ServerKey":"us63"},{"ID":815,"VillageID":390,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":629,"CreatedAt":"2023-01-29T00:22:12Z","ServerKey":"us63"},{"ID":816,"VillageID":5084,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-29T00:32:14Z","ServerKey":"us63"},{"ID":817,"VillageID":2908,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1724,"CreatedAt":"2023-01-29T00:35:13Z","ServerKey":"us63"},{"ID":818,"VillageID":2759,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":748935,"OldTribeID":83,"Points":614,"CreatedAt":"2023-01-29T00:43:04Z","ServerKey":"us63"},{"ID":819,"VillageID":3429,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-29T00:52:07Z","ServerKey":"us63"},{"ID":820,"VillageID":300,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-29T00:55:02Z","ServerKey":"us63"},{"ID":821,"VillageID":4522,"NewOwnerID":848954131,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-29T00:57:24Z","ServerKey":"us63"},{"ID":822,"VillageID":3033,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-29T01:03:53Z","ServerKey":"us63"},{"ID":823,"VillageID":4851,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848954603,"OldTribeID":17,"Points":1620,"CreatedAt":"2023-01-29T01:07:08Z","ServerKey":"us63"},{"ID":824,"VillageID":650,"NewOwnerID":848931764,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-29T01:22:07Z","ServerKey":"us63"},{"ID":825,"VillageID":2513,"NewOwnerID":795932,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-01-29T01:55:53Z","ServerKey":"us63"},{"ID":826,"VillageID":139,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":848917074,"OldTribeID":0,"Points":3848,"CreatedAt":"2023-01-29T02:10:38Z","ServerKey":"us63"},{"ID":827,"VillageID":1021,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":37720,"OldTribeID":24,"Points":491,"CreatedAt":"2023-01-29T02:14:33Z","ServerKey":"us63"},{"ID":828,"VillageID":4154,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":302611,"OldTribeID":97,"Points":2927,"CreatedAt":"2023-01-29T02:19:06Z","ServerKey":"us63"},{"ID":829,"VillageID":4154,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848947293,"OldTribeID":85,"Points":2927,"CreatedAt":"2023-01-29T02:19:06Z","ServerKey":"us63"},{"ID":830,"VillageID":5695,"NewOwnerID":848954539,"NewTribeID":131,"OldOwnerID":334769,"OldTribeID":0,"Points":404,"CreatedAt":"2023-01-29T02:25:57Z","ServerKey":"us63"},{"ID":831,"VillageID":5232,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848954029,"OldTribeID":0,"Points":562,"CreatedAt":"2023-01-29T02:34:23Z","ServerKey":"us63"},{"ID":832,"VillageID":808,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-29T02:35:24Z","ServerKey":"us63"},{"ID":833,"VillageID":1063,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-29T02:51:34Z","ServerKey":"us63"},{"ID":834,"VillageID":2740,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848951023,"OldTribeID":86,"Points":2046,"CreatedAt":"2023-01-29T02:51:44Z","ServerKey":"us63"},{"ID":835,"VillageID":433,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-29T03:21:06Z","ServerKey":"us63"},{"ID":836,"VillageID":1994,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-01-29T03:30:15Z","ServerKey":"us63"},{"ID":837,"VillageID":2480,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-29T03:37:55Z","ServerKey":"us63"},{"ID":838,"VillageID":1296,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":980,"CreatedAt":"2023-01-29T03:55:50Z","ServerKey":"us63"},{"ID":839,"VillageID":131,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-29T03:58:27Z","ServerKey":"us63"},{"ID":840,"VillageID":146,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-29T04:03:23Z","ServerKey":"us63"},{"ID":841,"VillageID":1350,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-29T04:07:17Z","ServerKey":"us63"},{"ID":842,"VillageID":1891,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":848954548,"OldTribeID":0,"Points":2139,"CreatedAt":"2023-01-29T04:14:39Z","ServerKey":"us63"},{"ID":843,"VillageID":3929,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-29T04:19:38Z","ServerKey":"us63"},{"ID":844,"VillageID":587,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848952324,"OldTribeID":4,"Points":376,"CreatedAt":"2023-01-29T04:46:38Z","ServerKey":"us63"},{"ID":845,"VillageID":214,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-29T04:55:32Z","ServerKey":"us63"},{"ID":846,"VillageID":2565,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-29T04:56:39Z","ServerKey":"us63"},{"ID":847,"VillageID":2037,"NewOwnerID":848954368,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-01-29T04:59:13Z","ServerKey":"us63"},{"ID":848,"VillageID":1834,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-29T05:03:15Z","ServerKey":"us63"},{"ID":849,"VillageID":3159,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848954643,"OldTribeID":65,"Points":3147,"CreatedAt":"2023-01-29T05:11:03Z","ServerKey":"us63"},{"ID":850,"VillageID":287,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-29T05:11:24Z","ServerKey":"us63"},{"ID":851,"VillageID":3615,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":783836,"OldTribeID":0,"Points":2621,"CreatedAt":"2023-01-29T05:23:39Z","ServerKey":"us63"},{"ID":852,"VillageID":3615,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":2621,"CreatedAt":"2023-01-29T05:23:39Z","ServerKey":"us63"},{"ID":853,"VillageID":1803,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954288,"OldTribeID":24,"Points":2041,"CreatedAt":"2023-01-29T05:36:34Z","ServerKey":"us63"},{"ID":854,"VillageID":1645,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-01-29T05:37:34Z","ServerKey":"us63"},{"ID":855,"VillageID":794,"NewOwnerID":751946,"NewTribeID":158,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-29T05:39:18Z","ServerKey":"us63"},{"ID":856,"VillageID":4151,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":848954774,"OldTribeID":0,"Points":3675,"CreatedAt":"2023-01-29T06:40:00Z","ServerKey":"us63"},{"ID":857,"VillageID":3056,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-29T07:13:40Z","ServerKey":"us63"},{"ID":858,"VillageID":3056,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848890745,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-29T07:13:40Z","ServerKey":"us63"},{"ID":859,"VillageID":1747,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-29T08:25:24Z","ServerKey":"us63"},{"ID":860,"VillageID":6507,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-29T08:54:49Z","ServerKey":"us63"},{"ID":861,"VillageID":2910,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-29T08:58:03Z","ServerKey":"us63"},{"ID":862,"VillageID":1928,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":756854,"OldTribeID":25,"Points":3224,"CreatedAt":"2023-01-29T09:50:13Z","ServerKey":"us63"},{"ID":863,"VillageID":4973,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-01-29T09:59:17Z","ServerKey":"us63"},{"ID":864,"VillageID":872,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-01-29T10:30:32Z","ServerKey":"us63"},{"ID":865,"VillageID":54,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-01-29T10:31:06Z","ServerKey":"us63"},{"ID":866,"VillageID":2926,"NewOwnerID":848954553,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-29T10:32:58Z","ServerKey":"us63"},{"ID":867,"VillageID":3012,"NewOwnerID":848953207,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-29T11:10:26Z","ServerKey":"us63"},{"ID":868,"VillageID":2253,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-29T11:20:11Z","ServerKey":"us63"},{"ID":869,"VillageID":326,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":37720,"OldTribeID":24,"Points":3348,"CreatedAt":"2023-01-29T11:21:24Z","ServerKey":"us63"},{"ID":870,"VillageID":2541,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-29T11:35:23Z","ServerKey":"us63"},{"ID":871,"VillageID":2386,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-01-29T11:53:06Z","ServerKey":"us63"},{"ID":872,"VillageID":3125,"NewOwnerID":795044,"NewTribeID":64,"OldOwnerID":848943201,"OldTribeID":0,"Points":1044,"CreatedAt":"2023-01-29T11:55:32Z","ServerKey":"us63"},{"ID":873,"VillageID":3132,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":58945,"OldTribeID":0,"Points":7044,"CreatedAt":"2023-01-29T12:08:33Z","ServerKey":"us63"},{"ID":874,"VillageID":5822,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":848953215,"OldTribeID":148,"Points":582,"CreatedAt":"2023-01-29T12:16:28Z","ServerKey":"us63"},{"ID":875,"VillageID":1677,"NewOwnerID":769106,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":414,"CreatedAt":"2023-01-29T12:50:24Z","ServerKey":"us63"},{"ID":876,"VillageID":320,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848946235,"OldTribeID":22,"Points":3719,"CreatedAt":"2023-01-29T12:55:16Z","ServerKey":"us63"},{"ID":877,"VillageID":1444,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-01-29T13:02:23Z","ServerKey":"us63"},{"ID":878,"VillageID":2344,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-29T13:03:38Z","ServerKey":"us63"},{"ID":879,"VillageID":1716,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848953936,"OldTribeID":4,"Points":3244,"CreatedAt":"2023-01-29T13:32:13Z","ServerKey":"us63"},{"ID":880,"VillageID":4109,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-29T13:55:42Z","ServerKey":"us63"},{"ID":881,"VillageID":4348,"NewOwnerID":647002,"NewTribeID":0,"OldOwnerID":848954810,"OldTribeID":153,"Points":1687,"CreatedAt":"2023-01-29T14:23:03Z","ServerKey":"us63"},{"ID":882,"VillageID":2219,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-01-29T14:28:36Z","ServerKey":"us63"},{"ID":883,"VillageID":5405,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-29T14:35:11Z","ServerKey":"us63"},{"ID":884,"VillageID":2338,"NewOwnerID":848937132,"NewTribeID":5,"OldOwnerID":848945587,"OldTribeID":0,"Points":445,"CreatedAt":"2023-01-29T14:38:18Z","ServerKey":"us63"},{"ID":885,"VillageID":3030,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":58945,"OldTribeID":0,"Points":525,"CreatedAt":"2023-01-29T14:55:26Z","ServerKey":"us63"},{"ID":886,"VillageID":3030,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":61,"Points":525,"CreatedAt":"2023-01-29T14:55:26Z","ServerKey":"us63"},{"ID":887,"VillageID":4365,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848954814,"OldTribeID":97,"Points":2780,"CreatedAt":"2023-01-29T14:59:32Z","ServerKey":"us63"},{"ID":888,"VillageID":2410,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-29T15:04:55Z","ServerKey":"us63"},{"ID":889,"VillageID":4457,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-29T15:29:55Z","ServerKey":"us63"},{"ID":890,"VillageID":3639,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848954399,"OldTribeID":4,"Points":2748,"CreatedAt":"2023-01-29T15:33:00Z","ServerKey":"us63"},{"ID":891,"VillageID":2278,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-01-29T15:50:44Z","ServerKey":"us63"},{"ID":892,"VillageID":2530,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-29T16:09:50Z","ServerKey":"us63"},{"ID":893,"VillageID":413,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-29T16:22:05Z","ServerKey":"us63"},{"ID":894,"VillageID":2444,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-29T16:31:00Z","ServerKey":"us63"},{"ID":895,"VillageID":868,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":754270,"OldTribeID":105,"Points":2808,"CreatedAt":"2023-01-29T16:58:33Z","ServerKey":"us63"},{"ID":896,"VillageID":504,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":848893845,"OldTribeID":0,"Points":1705,"CreatedAt":"2023-01-29T17:30:11Z","ServerKey":"us63"},{"ID":897,"VillageID":3824,"NewOwnerID":848941569,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-29T17:49:36Z","ServerKey":"us63"},{"ID":898,"VillageID":4519,"NewOwnerID":848953962,"NewTribeID":27,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-29T18:04:05Z","ServerKey":"us63"},{"ID":899,"VillageID":1423,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-29T18:09:25Z","ServerKey":"us63"},{"ID":900,"VillageID":3594,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-29T18:11:11Z","ServerKey":"us63"},{"ID":901,"VillageID":1414,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":848949037,"OldTribeID":0,"Points":521,"CreatedAt":"2023-01-29T18:17:56Z","ServerKey":"us63"},{"ID":902,"VillageID":1992,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":440548,"OldTribeID":25,"Points":2162,"CreatedAt":"2023-01-29T18:30:32Z","ServerKey":"us63"},{"ID":903,"VillageID":3236,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":848954650,"OldTribeID":66,"Points":4005,"CreatedAt":"2023-01-29T18:41:43Z","ServerKey":"us63"},{"ID":904,"VillageID":1896,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-01-29T18:45:29Z","ServerKey":"us63"},{"ID":905,"VillageID":2323,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":848932022,"OldTribeID":0,"Points":575,"CreatedAt":"2023-01-29T18:54:43Z","ServerKey":"us63"},{"ID":906,"VillageID":3051,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":620806,"OldTribeID":97,"Points":2492,"CreatedAt":"2023-01-29T19:05:13Z","ServerKey":"us63"},{"ID":907,"VillageID":5437,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":775729,"OldTribeID":131,"Points":3383,"CreatedAt":"2023-01-29T19:14:19Z","ServerKey":"us63"},{"ID":908,"VillageID":89,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-29T19:37:48Z","ServerKey":"us63"},{"ID":909,"VillageID":152,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-01-29T19:45:56Z","ServerKey":"us63"},{"ID":910,"VillageID":1184,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":632,"CreatedAt":"2023-01-29T19:54:32Z","ServerKey":"us63"},{"ID":911,"VillageID":3280,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-29T19:57:41Z","ServerKey":"us63"},{"ID":912,"VillageID":5753,"NewOwnerID":848954539,"NewTribeID":131,"OldOwnerID":345976,"OldTribeID":0,"Points":589,"CreatedAt":"2023-01-29T20:02:26Z","ServerKey":"us63"},{"ID":913,"VillageID":3923,"NewOwnerID":848945448,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-01-29T20:27:51Z","ServerKey":"us63"},{"ID":914,"VillageID":4900,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-29T20:31:26Z","ServerKey":"us63"},{"ID":915,"VillageID":3232,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":58945,"OldTribeID":0,"Points":3998,"CreatedAt":"2023-01-29T20:33:33Z","ServerKey":"us63"},{"ID":916,"VillageID":1745,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-29T20:51:14Z","ServerKey":"us63"},{"ID":917,"VillageID":6855,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-01-29T21:02:43Z","ServerKey":"us63"},{"ID":918,"VillageID":2495,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-29T21:07:42Z","ServerKey":"us63"},{"ID":919,"VillageID":2304,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-29T21:12:50Z","ServerKey":"us63"},{"ID":920,"VillageID":1490,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-29T21:21:17Z","ServerKey":"us63"},{"ID":921,"VillageID":4312,"NewOwnerID":647002,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-29T21:37:04Z","ServerKey":"us63"},{"ID":922,"VillageID":1728,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-29T21:49:31Z","ServerKey":"us63"},{"ID":923,"VillageID":4574,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":647002,"OldTribeID":0,"Points":4094,"CreatedAt":"2023-01-29T21:51:22Z","ServerKey":"us63"},{"ID":924,"VillageID":3821,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-29T22:05:57Z","ServerKey":"us63"},{"ID":925,"VillageID":5610,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-29T22:14:25Z","ServerKey":"us63"},{"ID":926,"VillageID":4367,"NewOwnerID":7536,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-29T22:30:25Z","ServerKey":"us63"},{"ID":927,"VillageID":1016,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-29T22:38:51Z","ServerKey":"us63"},{"ID":928,"VillageID":4908,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848953499,"OldTribeID":97,"Points":1740,"CreatedAt":"2023-01-29T22:40:55Z","ServerKey":"us63"},{"ID":929,"VillageID":1047,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848920804,"OldTribeID":0,"Points":2397,"CreatedAt":"2023-01-29T22:46:00Z","ServerKey":"us63"},{"ID":930,"VillageID":567,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-29T23:07:21Z","ServerKey":"us63"},{"ID":931,"VillageID":1149,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-01-29T23:46:40Z","ServerKey":"us63"},{"ID":932,"VillageID":1526,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-29T23:50:00Z","ServerKey":"us63"},{"ID":933,"VillageID":772,"NewOwnerID":848954021,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-29T23:52:35Z","ServerKey":"us63"},{"ID":934,"VillageID":3844,"NewOwnerID":707957,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-30T00:10:16Z","ServerKey":"us63"},{"ID":935,"VillageID":1770,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-30T00:22:41Z","ServerKey":"us63"},{"ID":936,"VillageID":3232,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848954555,"OldTribeID":91,"Points":3998,"CreatedAt":"2023-01-30T00:24:29Z","ServerKey":"us63"},{"ID":937,"VillageID":3232,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":794964,"OldTribeID":61,"Points":3895,"CreatedAt":"2023-01-30T00:24:30Z","ServerKey":"us63"},{"ID":938,"VillageID":4364,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-30T00:26:58Z","ServerKey":"us63"},{"ID":939,"VillageID":2659,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-30T00:29:35Z","ServerKey":"us63"},{"ID":940,"VillageID":1625,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-30T00:42:37Z","ServerKey":"us63"},{"ID":941,"VillageID":953,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":783755,"OldTribeID":26,"Points":607,"CreatedAt":"2023-01-30T01:14:07Z","ServerKey":"us63"},{"ID":942,"VillageID":1579,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-01-30T01:19:05Z","ServerKey":"us63"},{"ID":943,"VillageID":1579,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":735108,"OldTribeID":20,"Points":160,"CreatedAt":"2023-01-30T01:19:05Z","ServerKey":"us63"},{"ID":944,"VillageID":1198,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":715,"CreatedAt":"2023-01-30T01:22:47Z","ServerKey":"us63"},{"ID":945,"VillageID":3104,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-01-30T01:34:11Z","ServerKey":"us63"},{"ID":946,"VillageID":1665,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-30T01:58:31Z","ServerKey":"us63"},{"ID":947,"VillageID":529,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-01-30T02:17:54Z","ServerKey":"us63"},{"ID":948,"VillageID":4463,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-30T02:27:07Z","ServerKey":"us63"},{"ID":949,"VillageID":3965,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848949884,"OldTribeID":0,"Points":1118,"CreatedAt":"2023-01-30T02:59:14Z","ServerKey":"us63"},{"ID":950,"VillageID":4444,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-30T03:03:17Z","ServerKey":"us63"},{"ID":951,"VillageID":1778,"NewOwnerID":848907165,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-30T03:10:38Z","ServerKey":"us63"},{"ID":952,"VillageID":365,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1031,"CreatedAt":"2023-01-30T03:18:09Z","ServerKey":"us63"},{"ID":953,"VillageID":1087,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":848933918,"OldTribeID":0,"Points":2244,"CreatedAt":"2023-01-30T03:25:15Z","ServerKey":"us63"},{"ID":954,"VillageID":358,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-30T03:49:45Z","ServerKey":"us63"},{"ID":955,"VillageID":6485,"NewOwnerID":848954539,"NewTribeID":131,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-01-30T04:23:24Z","ServerKey":"us63"},{"ID":956,"VillageID":5241,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-30T05:02:44Z","ServerKey":"us63"},{"ID":957,"VillageID":3471,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-30T05:09:40Z","ServerKey":"us63"},{"ID":958,"VillageID":4629,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-30T05:15:24Z","ServerKey":"us63"},{"ID":959,"VillageID":2288,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-30T05:32:25Z","ServerKey":"us63"},{"ID":960,"VillageID":1553,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-30T06:03:53Z","ServerKey":"us63"},{"ID":961,"VillageID":91,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-30T06:12:23Z","ServerKey":"us63"},{"ID":962,"VillageID":2995,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-30T06:14:45Z","ServerKey":"us63"},{"ID":963,"VillageID":1620,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-30T06:33:01Z","ServerKey":"us63"},{"ID":964,"VillageID":1763,"NewOwnerID":848881936,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-01-30T06:40:36Z","ServerKey":"us63"},{"ID":965,"VillageID":3122,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848943140,"OldTribeID":0,"Points":909,"CreatedAt":"2023-01-30T06:59:26Z","ServerKey":"us63"},{"ID":966,"VillageID":2394,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-01-30T07:38:58Z","ServerKey":"us63"},{"ID":967,"VillageID":2314,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-01-30T07:39:43Z","ServerKey":"us63"},{"ID":968,"VillageID":1433,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-01-30T07:45:45Z","ServerKey":"us63"},{"ID":969,"VillageID":422,"NewOwnerID":848953915,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-30T08:17:19Z","ServerKey":"us63"},{"ID":970,"VillageID":5532,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-30T08:21:39Z","ServerKey":"us63"},{"ID":971,"VillageID":3474,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-30T08:34:54Z","ServerKey":"us63"},{"ID":972,"VillageID":1968,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-30T08:51:59Z","ServerKey":"us63"},{"ID":973,"VillageID":1521,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":6317,"CreatedAt":"2023-01-30T09:14:50Z","ServerKey":"us63"},{"ID":974,"VillageID":3344,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":848954662,"OldTribeID":53,"Points":3844,"CreatedAt":"2023-01-30T09:38:16Z","ServerKey":"us63"},{"ID":975,"VillageID":4012,"NewOwnerID":848954734,"NewTribeID":153,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-30T10:18:34Z","ServerKey":"us63"},{"ID":976,"VillageID":3426,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-30T10:30:00Z","ServerKey":"us63"},{"ID":977,"VillageID":2881,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-01-30T10:51:13Z","ServerKey":"us63"},{"ID":978,"VillageID":2503,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848943908,"OldTribeID":91,"Points":3038,"CreatedAt":"2023-01-30T11:00:26Z","ServerKey":"us63"},{"ID":979,"VillageID":1244,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-30T11:02:21Z","ServerKey":"us63"},{"ID":980,"VillageID":3200,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":783322,"OldTribeID":5,"Points":3107,"CreatedAt":"2023-01-30T11:09:13Z","ServerKey":"us63"},{"ID":981,"VillageID":2989,"NewOwnerID":848909148,"NewTribeID":48,"OldOwnerID":514187,"OldTribeID":66,"Points":4165,"CreatedAt":"2023-01-30T11:26:49Z","ServerKey":"us63"},{"ID":982,"VillageID":3746,"NewOwnerID":848934532,"NewTribeID":138,"OldOwnerID":230548,"OldTribeID":0,"Points":3810,"CreatedAt":"2023-01-30T11:39:19Z","ServerKey":"us63"},{"ID":983,"VillageID":6491,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":56,"CreatedAt":"2023-01-30T11:51:54Z","ServerKey":"us63"},{"ID":984,"VillageID":3114,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-30T12:05:57Z","ServerKey":"us63"},{"ID":985,"VillageID":5694,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-01-30T12:09:39Z","ServerKey":"us63"},{"ID":986,"VillageID":1441,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-01-30T12:11:09Z","ServerKey":"us63"},{"ID":987,"VillageID":1441,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":183,"CreatedAt":"2023-01-30T12:11:09Z","ServerKey":"us63"},{"ID":989,"VillageID":803,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":613252,"OldTribeID":151,"Points":3178,"CreatedAt":"2023-01-30T12:12:01Z","ServerKey":"us63"},{"ID":990,"VillageID":2958,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-30T12:19:42Z","ServerKey":"us63"},{"ID":991,"VillageID":1121,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-01-30T13:29:00Z","ServerKey":"us63"},{"ID":992,"VillageID":1308,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-01-30T13:38:01Z","ServerKey":"us63"},{"ID":993,"VillageID":1219,"NewOwnerID":848937811,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":569,"CreatedAt":"2023-01-30T14:02:05Z","ServerKey":"us63"},{"ID":994,"VillageID":1698,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-30T14:03:43Z","ServerKey":"us63"},{"ID":995,"VillageID":1774,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848954138,"OldTribeID":0,"Points":2775,"CreatedAt":"2023-01-30T14:24:04Z","ServerKey":"us63"},{"ID":996,"VillageID":3067,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":409,"CreatedAt":"2023-01-30T14:34:01Z","ServerKey":"us63"},{"ID":997,"VillageID":6158,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-01-30T15:01:28Z","ServerKey":"us63"},{"ID":998,"VillageID":1556,"NewOwnerID":848952033,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-30T15:09:28Z","ServerKey":"us63"},{"ID":999,"VillageID":4015,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-30T15:18:22Z","ServerKey":"us63"},{"ID":1000,"VillageID":4015,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":170,"CreatedAt":"2023-01-30T15:18:23Z","ServerKey":"us63"},{"ID":1001,"VillageID":5105,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-30T15:50:34Z","ServerKey":"us63"},{"ID":1002,"VillageID":3783,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-30T15:53:58Z","ServerKey":"us63"},{"ID":1003,"VillageID":352,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-30T15:56:47Z","ServerKey":"us63"},{"ID":1004,"VillageID":4402,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-30T15:56:51Z","ServerKey":"us63"},{"ID":1005,"VillageID":739,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-30T15:58:41Z","ServerKey":"us63"},{"ID":1006,"VillageID":2833,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-30T16:01:45Z","ServerKey":"us63"},{"ID":1007,"VillageID":911,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-30T16:02:56Z","ServerKey":"us63"},{"ID":1008,"VillageID":4015,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":171766,"OldTribeID":33,"Points":170,"CreatedAt":"2023-01-30T16:09:45Z","ServerKey":"us63"},{"ID":1009,"VillageID":2902,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-30T16:22:06Z","ServerKey":"us63"},{"ID":1010,"VillageID":3,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954218,"OldTribeID":35,"Points":445,"CreatedAt":"2023-01-30T16:26:35Z","ServerKey":"us63"},{"ID":1011,"VillageID":2451,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-01-30T16:32:26Z","ServerKey":"us63"},{"ID":1012,"VillageID":2003,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":1418,"CreatedAt":"2023-01-30T16:37:45Z","ServerKey":"us63"},{"ID":1013,"VillageID":200,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-30T16:57:01Z","ServerKey":"us63"},{"ID":1014,"VillageID":752,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-30T16:57:58Z","ServerKey":"us63"},{"ID":1015,"VillageID":765,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-30T17:05:09Z","ServerKey":"us63"},{"ID":1016,"VillageID":2781,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-01-30T17:05:45Z","ServerKey":"us63"},{"ID":1017,"VillageID":3138,"NewOwnerID":848925398,"NewTribeID":42,"OldOwnerID":848943187,"OldTribeID":0,"Points":1015,"CreatedAt":"2023-01-30T17:09:00Z","ServerKey":"us63"},{"ID":1018,"VillageID":3138,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":848925398,"OldTribeID":42,"Points":991,"CreatedAt":"2023-01-30T17:10:13Z","ServerKey":"us63"},{"ID":1019,"VillageID":614,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-30T17:19:56Z","ServerKey":"us63"},{"ID":1020,"VillageID":1523,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-01-30T17:26:14Z","ServerKey":"us63"},{"ID":1021,"VillageID":2174,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-30T17:31:08Z","ServerKey":"us63"},{"ID":1022,"VillageID":1161,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":803,"CreatedAt":"2023-01-30T17:32:04Z","ServerKey":"us63"},{"ID":1023,"VillageID":1265,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":848943200,"OldTribeID":0,"Points":500,"CreatedAt":"2023-01-30T17:40:12Z","ServerKey":"us63"},{"ID":1024,"VillageID":51,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-30T17:51:41Z","ServerKey":"us63"},{"ID":1025,"VillageID":56,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848951975,"OldTribeID":0,"Points":1158,"CreatedAt":"2023-01-30T18:00:18Z","ServerKey":"us63"},{"ID":1026,"VillageID":938,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-30T18:11:06Z","ServerKey":"us63"},{"ID":1027,"VillageID":923,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-01-30T18:13:03Z","ServerKey":"us63"},{"ID":1028,"VillageID":923,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":212,"CreatedAt":"2023-01-30T18:13:03Z","ServerKey":"us63"},{"ID":1029,"VillageID":323,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":783836,"OldTribeID":0,"Points":4794,"CreatedAt":"2023-01-30T18:16:31Z","ServerKey":"us63"},{"ID":1030,"VillageID":101,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":298720,"OldTribeID":5,"Points":1885,"CreatedAt":"2023-01-30T18:19:19Z","ServerKey":"us63"},{"ID":1031,"VillageID":1572,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-30T18:21:19Z","ServerKey":"us63"},{"ID":1032,"VillageID":3134,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-30T18:21:26Z","ServerKey":"us63"},{"ID":1033,"VillageID":3889,"NewOwnerID":767834,"NewTribeID":105,"OldOwnerID":848952994,"OldTribeID":66,"Points":2023,"CreatedAt":"2023-01-30T18:23:28Z","ServerKey":"us63"},{"ID":1034,"VillageID":687,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-01-30T18:35:46Z","ServerKey":"us63"},{"ID":1035,"VillageID":977,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":2033,"CreatedAt":"2023-01-30T18:47:36Z","ServerKey":"us63"},{"ID":1036,"VillageID":3186,"NewOwnerID":848909148,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-01-30T18:52:36Z","ServerKey":"us63"},{"ID":1037,"VillageID":1648,"NewOwnerID":848907165,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-30T19:01:28Z","ServerKey":"us63"},{"ID":1038,"VillageID":1430,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-30T19:04:37Z","ServerKey":"us63"},{"ID":1039,"VillageID":2985,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-01-30T19:10:17Z","ServerKey":"us63"},{"ID":1040,"VillageID":2512,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-30T19:12:35Z","ServerKey":"us63"},{"ID":1041,"VillageID":3256,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-30T19:23:07Z","ServerKey":"us63"},{"ID":1042,"VillageID":2264,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1432,"CreatedAt":"2023-01-30T19:46:08Z","ServerKey":"us63"},{"ID":1043,"VillageID":462,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-30T19:46:17Z","ServerKey":"us63"},{"ID":1044,"VillageID":2901,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":848952579,"OldTribeID":53,"Points":1032,"CreatedAt":"2023-01-30T20:01:24Z","ServerKey":"us63"},{"ID":1045,"VillageID":5127,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-30T20:05:35Z","ServerKey":"us63"},{"ID":1046,"VillageID":5480,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-30T20:18:28Z","ServerKey":"us63"},{"ID":1047,"VillageID":2155,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-30T20:30:30Z","ServerKey":"us63"},{"ID":1048,"VillageID":2885,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":848954117,"OldTribeID":0,"Points":5115,"CreatedAt":"2023-01-30T20:41:09Z","ServerKey":"us63"},{"ID":1049,"VillageID":3024,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-30T20:44:38Z","ServerKey":"us63"},{"ID":1050,"VillageID":443,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":1462,"CreatedAt":"2023-01-30T20:46:42Z","ServerKey":"us63"},{"ID":1051,"VillageID":3306,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-01-30T20:57:01Z","ServerKey":"us63"},{"ID":1052,"VillageID":646,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":848951574,"OldTribeID":54,"Points":2207,"CreatedAt":"2023-01-30T20:59:09Z","ServerKey":"us63"},{"ID":1053,"VillageID":4745,"NewOwnerID":848952918,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-30T20:59:42Z","ServerKey":"us63"},{"ID":1054,"VillageID":2211,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":654379,"OldTribeID":64,"Points":1246,"CreatedAt":"2023-01-30T21:13:50Z","ServerKey":"us63"},{"ID":1055,"VillageID":1903,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-30T21:16:17Z","ServerKey":"us63"},{"ID":1056,"VillageID":3725,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":542,"CreatedAt":"2023-01-30T21:44:32Z","ServerKey":"us63"},{"ID":1057,"VillageID":1394,"NewOwnerID":848954096,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-01-30T21:45:41Z","ServerKey":"us63"},{"ID":1058,"VillageID":3725,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848951308,"OldTribeID":85,"Points":518,"CreatedAt":"2023-01-30T21:48:41Z","ServerKey":"us63"},{"ID":1059,"VillageID":6049,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-30T21:49:58Z","ServerKey":"us63"},{"ID":1060,"VillageID":640,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-30T21:50:47Z","ServerKey":"us63"},{"ID":1061,"VillageID":1735,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-01-30T22:15:03Z","ServerKey":"us63"},{"ID":1062,"VillageID":1307,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-30T22:22:23Z","ServerKey":"us63"},{"ID":1063,"VillageID":425,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-01-30T22:24:25Z","ServerKey":"us63"},{"ID":1064,"VillageID":4153,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-30T22:26:48Z","ServerKey":"us63"},{"ID":1065,"VillageID":1200,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-30T22:32:20Z","ServerKey":"us63"},{"ID":1066,"VillageID":417,"NewOwnerID":848881936,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-30T22:41:35Z","ServerKey":"us63"},{"ID":1067,"VillageID":575,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-30T22:49:41Z","ServerKey":"us63"},{"ID":1068,"VillageID":138,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-30T23:09:39Z","ServerKey":"us63"},{"ID":1069,"VillageID":3746,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848934532,"OldTribeID":138,"Points":4022,"CreatedAt":"2023-01-30T23:16:25Z","ServerKey":"us63"},{"ID":1070,"VillageID":3746,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848951632,"OldTribeID":105,"Points":4022,"CreatedAt":"2023-01-30T23:16:25Z","ServerKey":"us63"},{"ID":1071,"VillageID":1272,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":665,"CreatedAt":"2023-01-30T23:18:16Z","ServerKey":"us63"},{"ID":1072,"VillageID":407,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-01-30T23:48:44Z","ServerKey":"us63"},{"ID":1073,"VillageID":996,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-31T00:09:41Z","ServerKey":"us63"},{"ID":1074,"VillageID":3950,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T00:16:43Z","ServerKey":"us63"},{"ID":1075,"VillageID":3455,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":58945,"OldTribeID":0,"Points":316,"CreatedAt":"2023-01-31T00:17:37Z","ServerKey":"us63"},{"ID":1076,"VillageID":1069,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-01-31T00:52:25Z","ServerKey":"us63"},{"ID":1077,"VillageID":1231,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T01:03:25Z","ServerKey":"us63"},{"ID":1078,"VillageID":4291,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T01:13:35Z","ServerKey":"us63"},{"ID":1079,"VillageID":3712,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-31T01:19:48Z","ServerKey":"us63"},{"ID":1080,"VillageID":2105,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-31T01:29:12Z","ServerKey":"us63"},{"ID":1081,"VillageID":4725,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-31T01:42:05Z","ServerKey":"us63"},{"ID":1082,"VillageID":4129,"NewOwnerID":775063,"NewTribeID":106,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-31T01:45:33Z","ServerKey":"us63"},{"ID":1083,"VillageID":633,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-31T02:10:30Z","ServerKey":"us63"},{"ID":1084,"VillageID":3570,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T02:10:59Z","ServerKey":"us63"},{"ID":1085,"VillageID":1315,"NewOwnerID":751946,"NewTribeID":158,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-31T02:11:09Z","ServerKey":"us63"},{"ID":1086,"VillageID":3167,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T02:15:23Z","ServerKey":"us63"},{"ID":1087,"VillageID":10,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":523530,"OldTribeID":1,"Points":2675,"CreatedAt":"2023-01-31T02:27:02Z","ServerKey":"us63"},{"ID":1088,"VillageID":3978,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-31T02:30:42Z","ServerKey":"us63"},{"ID":1089,"VillageID":2822,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-31T02:39:53Z","ServerKey":"us63"},{"ID":1090,"VillageID":5641,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":848930230,"OldTribeID":152,"Points":2411,"CreatedAt":"2023-01-31T03:30:04Z","ServerKey":"us63"},{"ID":1091,"VillageID":1117,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848937396,"OldTribeID":5,"Points":2065,"CreatedAt":"2023-01-31T03:32:43Z","ServerKey":"us63"},{"ID":1092,"VillageID":1025,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":526,"CreatedAt":"2023-01-31T03:39:56Z","ServerKey":"us63"},{"ID":1093,"VillageID":196,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-01-31T03:44:28Z","ServerKey":"us63"},{"ID":1094,"VillageID":104,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":461453,"OldTribeID":5,"Points":3355,"CreatedAt":"2023-01-31T03:50:20Z","ServerKey":"us63"},{"ID":1095,"VillageID":254,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-01-31T03:56:54Z","ServerKey":"us63"},{"ID":1096,"VillageID":1170,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-31T04:12:41Z","ServerKey":"us63"},{"ID":1097,"VillageID":305,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T04:15:55Z","ServerKey":"us63"},{"ID":1098,"VillageID":1489,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-31T04:24:09Z","ServerKey":"us63"},{"ID":1099,"VillageID":1534,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T04:40:53Z","ServerKey":"us63"},{"ID":1100,"VillageID":712,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-31T04:51:08Z","ServerKey":"us63"},{"ID":1101,"VillageID":4974,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848953565,"OldTribeID":0,"Points":1221,"CreatedAt":"2023-01-31T04:55:45Z","ServerKey":"us63"},{"ID":1102,"VillageID":4251,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-31T05:08:30Z","ServerKey":"us63"},{"ID":1103,"VillageID":4251,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":616498,"OldTribeID":48,"Points":122,"CreatedAt":"2023-01-31T05:08:30Z","ServerKey":"us63"},{"ID":1104,"VillageID":144,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-01-31T05:10:34Z","ServerKey":"us63"},{"ID":1105,"VillageID":1004,"NewOwnerID":795044,"NewTribeID":64,"OldOwnerID":848897316,"OldTribeID":0,"Points":1327,"CreatedAt":"2023-01-31T05:16:21Z","ServerKey":"us63"},{"ID":1106,"VillageID":1610,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-31T05:21:01Z","ServerKey":"us63"},{"ID":1107,"VillageID":1610,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":125,"CreatedAt":"2023-01-31T05:21:02Z","ServerKey":"us63"},{"ID":1108,"VillageID":755,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T05:22:54Z","ServerKey":"us63"},{"ID":1109,"VillageID":670,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-01-31T05:34:48Z","ServerKey":"us63"},{"ID":1110,"VillageID":3761,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T05:38:00Z","ServerKey":"us63"},{"ID":1111,"VillageID":814,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":654379,"OldTribeID":64,"Points":4795,"CreatedAt":"2023-01-31T05:50:28Z","ServerKey":"us63"},{"ID":1112,"VillageID":1006,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":701192,"OldTribeID":25,"Points":1155,"CreatedAt":"2023-01-31T05:53:13Z","ServerKey":"us63"},{"ID":1113,"VillageID":588,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848951434,"OldTribeID":25,"Points":5589,"CreatedAt":"2023-01-31T05:53:14Z","ServerKey":"us63"},{"ID":1114,"VillageID":482,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":701192,"OldTribeID":25,"Points":4279,"CreatedAt":"2023-01-31T05:53:14Z","ServerKey":"us63"},{"ID":1115,"VillageID":1588,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T06:04:09Z","ServerKey":"us63"},{"ID":1116,"VillageID":262,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-01-31T06:05:59Z","ServerKey":"us63"},{"ID":1117,"VillageID":1799,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-31T06:11:10Z","ServerKey":"us63"},{"ID":1118,"VillageID":1953,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T06:11:40Z","ServerKey":"us63"},{"ID":1119,"VillageID":5061,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-31T06:25:20Z","ServerKey":"us63"},{"ID":1120,"VillageID":1710,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-01-31T06:53:50Z","ServerKey":"us63"},{"ID":1121,"VillageID":3581,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":727631,"OldTribeID":42,"Points":5029,"CreatedAt":"2023-01-31T07:28:48Z","ServerKey":"us63"},{"ID":1122,"VillageID":3581,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":780339,"OldTribeID":74,"Points":5029,"CreatedAt":"2023-01-31T07:28:48Z","ServerKey":"us63"},{"ID":1123,"VillageID":2331,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-31T07:35:27Z","ServerKey":"us63"},{"ID":1124,"VillageID":464,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-01-31T07:49:53Z","ServerKey":"us63"},{"ID":1125,"VillageID":4495,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":302611,"OldTribeID":97,"Points":3421,"CreatedAt":"2023-01-31T07:50:42Z","ServerKey":"us63"},{"ID":1126,"VillageID":1278,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-01-31T08:03:56Z","ServerKey":"us63"},{"ID":1127,"VillageID":3958,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":848954744,"OldTribeID":114,"Points":3533,"CreatedAt":"2023-01-31T08:11:03Z","ServerKey":"us63"},{"ID":1128,"VillageID":2776,"NewOwnerID":848934532,"NewTribeID":138,"OldOwnerID":848940915,"OldTribeID":150,"Points":3811,"CreatedAt":"2023-01-31T08:20:18Z","ServerKey":"us63"},{"ID":1129,"VillageID":2418,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":683,"CreatedAt":"2023-01-31T08:31:17Z","ServerKey":"us63"},{"ID":1130,"VillageID":33,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848951977,"OldTribeID":41,"Points":2406,"CreatedAt":"2023-01-31T08:39:49Z","ServerKey":"us63"},{"ID":1131,"VillageID":1924,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-31T08:48:20Z","ServerKey":"us63"},{"ID":1132,"VillageID":4930,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-31T08:58:46Z","ServerKey":"us63"},{"ID":1133,"VillageID":910,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-31T09:23:32Z","ServerKey":"us63"},{"ID":1134,"VillageID":2367,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":654379,"OldTribeID":64,"Points":715,"CreatedAt":"2023-01-31T09:48:42Z","ServerKey":"us63"},{"ID":1135,"VillageID":1091,"NewOwnerID":848953956,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T09:56:09Z","ServerKey":"us63"},{"ID":1136,"VillageID":2934,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-01-31T10:03:43Z","ServerKey":"us63"},{"ID":1137,"VillageID":2935,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-31T10:36:08Z","ServerKey":"us63"},{"ID":1138,"VillageID":2769,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-31T10:36:44Z","ServerKey":"us63"},{"ID":1139,"VillageID":1251,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-01-31T10:42:01Z","ServerKey":"us63"},{"ID":1140,"VillageID":6220,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":619293,"OldTribeID":0,"Points":688,"CreatedAt":"2023-01-31T10:49:20Z","ServerKey":"us63"},{"ID":1141,"VillageID":2244,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-31T11:06:45Z","ServerKey":"us63"},{"ID":1142,"VillageID":2062,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":848954138,"OldTribeID":0,"Points":1151,"CreatedAt":"2023-01-31T11:14:06Z","ServerKey":"us63"},{"ID":1143,"VillageID":1633,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-31T11:15:22Z","ServerKey":"us63"},{"ID":1144,"VillageID":431,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-01-31T11:20:51Z","ServerKey":"us63"},{"ID":1145,"VillageID":1002,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-31T11:21:08Z","ServerKey":"us63"},{"ID":1146,"VillageID":2357,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-31T11:25:00Z","ServerKey":"us63"},{"ID":1147,"VillageID":4159,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-31T11:26:40Z","ServerKey":"us63"},{"ID":1148,"VillageID":6880,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":40,"CreatedAt":"2023-01-31T11:40:08Z","ServerKey":"us63"},{"ID":1149,"VillageID":795,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-01-31T11:52:27Z","ServerKey":"us63"},{"ID":1150,"VillageID":1030,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-31T11:56:45Z","ServerKey":"us63"},{"ID":1151,"VillageID":754,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":485721,"OldTribeID":50,"Points":4460,"CreatedAt":"2023-01-31T11:57:12Z","ServerKey":"us63"},{"ID":1152,"VillageID":1281,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-31T12:09:15Z","ServerKey":"us63"},{"ID":1153,"VillageID":1325,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":867,"CreatedAt":"2023-01-31T12:10:52Z","ServerKey":"us63"},{"ID":1154,"VillageID":5380,"NewOwnerID":653971,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-31T12:30:31Z","ServerKey":"us63"},{"ID":1155,"VillageID":1676,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-31T12:38:44Z","ServerKey":"us63"},{"ID":1156,"VillageID":922,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-31T13:22:35Z","ServerKey":"us63"},{"ID":1157,"VillageID":83,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-01-31T13:39:17Z","ServerKey":"us63"},{"ID":1158,"VillageID":165,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-31T13:47:29Z","ServerKey":"us63"},{"ID":1159,"VillageID":3870,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-01-31T14:01:13Z","ServerKey":"us63"},{"ID":1160,"VillageID":4693,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-31T14:05:45Z","ServerKey":"us63"},{"ID":1161,"VillageID":1575,"NewOwnerID":848951306,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-31T14:17:20Z","ServerKey":"us63"},{"ID":1162,"VillageID":2283,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848940741,"OldTribeID":0,"Points":431,"CreatedAt":"2023-01-31T14:25:53Z","ServerKey":"us63"},{"ID":1163,"VillageID":4768,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-31T14:58:39Z","ServerKey":"us63"},{"ID":1164,"VillageID":1683,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-01-31T15:01:01Z","ServerKey":"us63"},{"ID":1165,"VillageID":3018,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T15:24:07Z","ServerKey":"us63"},{"ID":1166,"VillageID":1691,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-01-31T15:24:39Z","ServerKey":"us63"},{"ID":1167,"VillageID":88,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-01-31T15:28:45Z","ServerKey":"us63"},{"ID":1168,"VillageID":1014,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-31T15:29:21Z","ServerKey":"us63"},{"ID":1169,"VillageID":227,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-01-31T15:51:18Z","ServerKey":"us63"},{"ID":1170,"VillageID":1715,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-01-31T15:53:31Z","ServerKey":"us63"},{"ID":1171,"VillageID":12,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-31T16:20:32Z","ServerKey":"us63"},{"ID":1172,"VillageID":2707,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-31T16:32:55Z","ServerKey":"us63"},{"ID":1173,"VillageID":3261,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":9370,"CreatedAt":"2023-01-31T16:35:57Z","ServerKey":"us63"},{"ID":1174,"VillageID":4428,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-31T16:40:25Z","ServerKey":"us63"},{"ID":1175,"VillageID":3047,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-31T16:53:41Z","ServerKey":"us63"},{"ID":1176,"VillageID":1591,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":848952957,"OldTribeID":41,"Points":3619,"CreatedAt":"2023-01-31T16:53:49Z","ServerKey":"us63"},{"ID":1177,"VillageID":3052,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-01-31T16:58:04Z","ServerKey":"us63"},{"ID":1178,"VillageID":638,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1217,"CreatedAt":"2023-01-31T16:59:20Z","ServerKey":"us63"},{"ID":1179,"VillageID":3161,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T17:18:40Z","ServerKey":"us63"},{"ID":1180,"VillageID":485,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":701261,"OldTribeID":25,"Points":3364,"CreatedAt":"2023-01-31T17:21:32Z","ServerKey":"us63"},{"ID":1181,"VillageID":83,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":769838,"OldTribeID":6,"Points":212,"CreatedAt":"2023-01-31T17:25:33Z","ServerKey":"us63"},{"ID":1182,"VillageID":83,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":212,"CreatedAt":"2023-01-31T17:25:33Z","ServerKey":"us63"},{"ID":1184,"VillageID":1253,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T17:38:20Z","ServerKey":"us63"},{"ID":1185,"VillageID":3044,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-31T18:11:20Z","ServerKey":"us63"},{"ID":1186,"VillageID":4726,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":848954869,"OldTribeID":0,"Points":1202,"CreatedAt":"2023-01-31T18:11:54Z","ServerKey":"us63"},{"ID":1187,"VillageID":6029,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-01-31T18:23:40Z","ServerKey":"us63"},{"ID":1188,"VillageID":999,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-01-31T18:28:18Z","ServerKey":"us63"},{"ID":1189,"VillageID":2776,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":3811,"CreatedAt":"2023-01-31T18:28:29Z","ServerKey":"us63"},{"ID":1190,"VillageID":2750,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-01-31T18:42:42Z","ServerKey":"us63"},{"ID":1191,"VillageID":1683,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":552694,"OldTribeID":48,"Points":181,"CreatedAt":"2023-01-31T18:51:44Z","ServerKey":"us63"},{"ID":1192,"VillageID":2461,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-31T19:06:41Z","ServerKey":"us63"},{"ID":1193,"VillageID":469,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-31T19:22:16Z","ServerKey":"us63"},{"ID":1194,"VillageID":4187,"NewOwnerID":848953962,"NewTribeID":27,"OldOwnerID":848954781,"OldTribeID":106,"Points":2617,"CreatedAt":"2023-01-31T19:25:17Z","ServerKey":"us63"},{"ID":1195,"VillageID":1358,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848948022,"OldTribeID":15,"Points":2042,"CreatedAt":"2023-01-31T19:30:07Z","ServerKey":"us63"},{"ID":1196,"VillageID":2516,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-31T19:53:04Z","ServerKey":"us63"},{"ID":1197,"VillageID":3231,"NewOwnerID":848953207,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-31T20:01:13Z","ServerKey":"us63"},{"ID":1198,"VillageID":2764,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-31T20:04:01Z","ServerKey":"us63"},{"ID":1199,"VillageID":311,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":754627,"OldTribeID":22,"Points":2271,"CreatedAt":"2023-01-31T20:06:44Z","ServerKey":"us63"},{"ID":1200,"VillageID":7051,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-31T20:07:18Z","ServerKey":"us63"},{"ID":1201,"VillageID":1171,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":803,"CreatedAt":"2023-01-31T20:12:35Z","ServerKey":"us63"},{"ID":1202,"VillageID":952,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-01-31T20:23:14Z","ServerKey":"us63"},{"ID":1203,"VillageID":1772,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-31T20:26:17Z","ServerKey":"us63"},{"ID":1204,"VillageID":2890,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-01-31T20:29:16Z","ServerKey":"us63"},{"ID":1205,"VillageID":4857,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-31T20:36:29Z","ServerKey":"us63"},{"ID":1206,"VillageID":4225,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-31T20:36:49Z","ServerKey":"us63"},{"ID":1207,"VillageID":4010,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":763018,"OldTribeID":172,"Points":2973,"CreatedAt":"2023-01-31T21:06:07Z","ServerKey":"us63"},{"ID":1208,"VillageID":1434,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":485721,"OldTribeID":50,"Points":697,"CreatedAt":"2023-01-31T21:10:54Z","ServerKey":"us63"},{"ID":1209,"VillageID":3635,"NewOwnerID":848954719,"NewTribeID":0,"OldOwnerID":848951665,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-31T21:30:42Z","ServerKey":"us63"},{"ID":1210,"VillageID":3955,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":848945448,"OldTribeID":22,"Points":3434,"CreatedAt":"2023-01-31T21:38:08Z","ServerKey":"us63"},{"ID":1211,"VillageID":1496,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-31T21:50:56Z","ServerKey":"us63"},{"ID":1212,"VillageID":3343,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-31T21:58:01Z","ServerKey":"us63"},{"ID":1213,"VillageID":2718,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-31T21:59:38Z","ServerKey":"us63"},{"ID":1214,"VillageID":1507,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-31T22:19:28Z","ServerKey":"us63"},{"ID":1215,"VillageID":309,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-31T22:31:30Z","ServerKey":"us63"},{"ID":1216,"VillageID":5860,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-31T22:33:45Z","ServerKey":"us63"},{"ID":1217,"VillageID":1574,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-01-31T22:39:10Z","ServerKey":"us63"},{"ID":1218,"VillageID":1328,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-01-31T22:50:25Z","ServerKey":"us63"},{"ID":1219,"VillageID":2803,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-01-31T22:57:59Z","ServerKey":"us63"},{"ID":1220,"VillageID":4045,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-31T23:00:56Z","ServerKey":"us63"},{"ID":1221,"VillageID":3108,"NewOwnerID":741238,"NewTribeID":0,"OldOwnerID":755590,"OldTribeID":83,"Points":2806,"CreatedAt":"2023-01-31T23:05:19Z","ServerKey":"us63"},{"ID":1222,"VillageID":3193,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-31T23:06:45Z","ServerKey":"us63"},{"ID":1223,"VillageID":2872,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":848953938,"OldTribeID":0,"Points":2615,"CreatedAt":"2023-01-31T23:06:57Z","ServerKey":"us63"},{"ID":1224,"VillageID":3165,"NewOwnerID":848953270,"NewTribeID":0,"OldOwnerID":848943225,"OldTribeID":0,"Points":750,"CreatedAt":"2023-01-31T23:24:32Z","ServerKey":"us63"},{"ID":1225,"VillageID":2770,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T23:48:28Z","ServerKey":"us63"},{"ID":1226,"VillageID":813,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-31T23:57:29Z","ServerKey":"us63"},{"ID":1227,"VillageID":1305,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-01-31T23:57:36Z","ServerKey":"us63"},{"ID":1228,"VillageID":488,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848951321,"OldTribeID":25,"Points":4449,"CreatedAt":"2023-02-01T00:03:05Z","ServerKey":"us63"},{"ID":1229,"VillageID":488,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848949948,"OldTribeID":30,"Points":4203,"CreatedAt":"2023-02-01T00:03:06Z","ServerKey":"us63"},{"ID":1230,"VillageID":272,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-01T00:08:10Z","ServerKey":"us63"},{"ID":1231,"VillageID":4567,"NewOwnerID":748168,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-01T00:12:02Z","ServerKey":"us63"},{"ID":1232,"VillageID":31,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-01T00:27:10Z","ServerKey":"us63"},{"ID":1233,"VillageID":7010,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":47,"CreatedAt":"2023-02-01T00:37:23Z","ServerKey":"us63"},{"ID":1234,"VillageID":1478,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848951595,"OldTribeID":0,"Points":1974,"CreatedAt":"2023-02-01T00:50:03Z","ServerKey":"us63"},{"ID":1235,"VillageID":4540,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848952918,"OldTribeID":172,"Points":2876,"CreatedAt":"2023-02-01T01:01:30Z","ServerKey":"us63"},{"ID":1236,"VillageID":1053,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-01T01:27:49Z","ServerKey":"us63"},{"ID":1237,"VillageID":316,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":3085,"CreatedAt":"2023-02-01T01:34:09Z","ServerKey":"us63"},{"ID":1238,"VillageID":847,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":2590,"CreatedAt":"2023-02-01T01:36:00Z","ServerKey":"us63"},{"ID":1239,"VillageID":847,"NewOwnerID":751946,"NewTribeID":158,"OldOwnerID":848954428,"OldTribeID":20,"Points":2556,"CreatedAt":"2023-02-01T01:36:02Z","ServerKey":"us63"},{"ID":1240,"VillageID":864,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":7290,"CreatedAt":"2023-02-01T01:36:09Z","ServerKey":"us63"},{"ID":1241,"VillageID":1291,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":2392,"CreatedAt":"2023-02-01T01:36:24Z","ServerKey":"us63"},{"ID":1242,"VillageID":1139,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-01T01:40:31Z","ServerKey":"us63"},{"ID":1243,"VillageID":1065,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848925814,"OldTribeID":88,"Points":1481,"CreatedAt":"2023-02-01T02:03:00Z","ServerKey":"us63"},{"ID":1244,"VillageID":1407,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-01T02:16:59Z","ServerKey":"us63"},{"ID":1245,"VillageID":742,"NewOwnerID":848952033,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-01T02:19:20Z","ServerKey":"us63"},{"ID":1246,"VillageID":312,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":1633,"CreatedAt":"2023-02-01T02:20:15Z","ServerKey":"us63"},{"ID":1247,"VillageID":4000,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":565794,"OldTribeID":97,"Points":3408,"CreatedAt":"2023-02-01T02:21:57Z","ServerKey":"us63"},{"ID":1248,"VillageID":4368,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848943280,"OldTribeID":0,"Points":1137,"CreatedAt":"2023-02-01T02:34:12Z","ServerKey":"us63"},{"ID":1249,"VillageID":1275,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-01T02:45:55Z","ServerKey":"us63"},{"ID":1250,"VillageID":4392,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-02-01T02:46:18Z","ServerKey":"us63"},{"ID":1251,"VillageID":5864,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-01T02:57:30Z","ServerKey":"us63"},{"ID":1252,"VillageID":454,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-01T03:00:33Z","ServerKey":"us63"},{"ID":1253,"VillageID":4074,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-01T03:01:23Z","ServerKey":"us63"},{"ID":1254,"VillageID":3341,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":548,"CreatedAt":"2023-02-01T03:13:43Z","ServerKey":"us63"},{"ID":1255,"VillageID":3235,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-01T03:18:36Z","ServerKey":"us63"},{"ID":1256,"VillageID":296,"NewOwnerID":321370,"NewTribeID":69,"OldOwnerID":681314,"OldTribeID":177,"Points":7297,"CreatedAt":"2023-02-01T03:25:36Z","ServerKey":"us63"},{"ID":1257,"VillageID":468,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":448111,"OldTribeID":166,"Points":2683,"CreatedAt":"2023-02-01T03:27:33Z","ServerKey":"us63"},{"ID":1258,"VillageID":4737,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-01T03:29:51Z","ServerKey":"us63"},{"ID":1259,"VillageID":1975,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-01T03:38:25Z","ServerKey":"us63"},{"ID":1260,"VillageID":2040,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-01T03:41:50Z","ServerKey":"us63"},{"ID":1261,"VillageID":1370,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-01T03:58:58Z","ServerKey":"us63"},{"ID":1262,"VillageID":2102,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-01T04:01:01Z","ServerKey":"us63"},{"ID":1263,"VillageID":2316,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":848940748,"OldTribeID":0,"Points":480,"CreatedAt":"2023-02-01T04:21:59Z","ServerKey":"us63"},{"ID":1264,"VillageID":2563,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":577132,"OldTribeID":12,"Points":3191,"CreatedAt":"2023-02-01T04:26:00Z","ServerKey":"us63"},{"ID":1265,"VillageID":678,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-01T04:29:17Z","ServerKey":"us63"},{"ID":1266,"VillageID":3964,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-01T04:33:57Z","ServerKey":"us63"},{"ID":1267,"VillageID":5592,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-01T04:39:54Z","ServerKey":"us63"},{"ID":1268,"VillageID":1950,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":3070,"CreatedAt":"2023-02-01T04:41:36Z","ServerKey":"us63"},{"ID":1269,"VillageID":1786,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-01T04:52:33Z","ServerKey":"us63"},{"ID":1270,"VillageID":2744,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-01T04:53:23Z","ServerKey":"us63"},{"ID":1271,"VillageID":1965,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-01T04:54:15Z","ServerKey":"us63"},{"ID":1272,"VillageID":847,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":2576,"CreatedAt":"2023-02-01T04:56:41Z","ServerKey":"us63"},{"ID":1273,"VillageID":847,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848951549,"OldTribeID":20,"Points":2576,"CreatedAt":"2023-02-01T04:56:42Z","ServerKey":"us63"},{"ID":1274,"VillageID":711,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-01T04:59:04Z","ServerKey":"us63"},{"ID":1275,"VillageID":3831,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-01T05:04:16Z","ServerKey":"us63"},{"ID":1276,"VillageID":1046,"NewOwnerID":848894442,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-01T05:12:44Z","ServerKey":"us63"},{"ID":1277,"VillageID":597,"NewOwnerID":755121,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-02-01T05:29:54Z","ServerKey":"us63"},{"ID":1278,"VillageID":1517,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-01T05:33:13Z","ServerKey":"us63"},{"ID":1279,"VillageID":1848,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-01T05:33:36Z","ServerKey":"us63"},{"ID":1280,"VillageID":5836,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-01T05:53:18Z","ServerKey":"us63"},{"ID":1281,"VillageID":1815,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-01T06:00:04Z","ServerKey":"us63"},{"ID":1282,"VillageID":3561,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-01T06:29:34Z","ServerKey":"us63"},{"ID":1283,"VillageID":5488,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":848951105,"OldTribeID":136,"Points":1401,"CreatedAt":"2023-02-01T06:40:17Z","ServerKey":"us63"},{"ID":1284,"VillageID":863,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-01T06:45:11Z","ServerKey":"us63"},{"ID":1285,"VillageID":3164,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-01T06:53:55Z","ServerKey":"us63"},{"ID":1286,"VillageID":2214,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":990,"CreatedAt":"2023-02-01T07:04:45Z","ServerKey":"us63"},{"ID":1287,"VillageID":86,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-01T07:11:50Z","ServerKey":"us63"},{"ID":1288,"VillageID":2826,"NewOwnerID":291491,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-01T07:45:09Z","ServerKey":"us63"},{"ID":1289,"VillageID":3019,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":848943430,"OldTribeID":0,"Points":461,"CreatedAt":"2023-02-01T07:57:48Z","ServerKey":"us63"},{"ID":1290,"VillageID":676,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8792,"CreatedAt":"2023-02-01T08:00:01Z","ServerKey":"us63"},{"ID":1291,"VillageID":679,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":3324,"CreatedAt":"2023-02-01T08:00:03Z","ServerKey":"us63"},{"ID":1292,"VillageID":2077,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-01T08:10:00Z","ServerKey":"us63"},{"ID":1293,"VillageID":222,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-01T08:18:19Z","ServerKey":"us63"},{"ID":1294,"VillageID":2749,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8148,"CreatedAt":"2023-02-01T08:22:35Z","ServerKey":"us63"},{"ID":1295,"VillageID":955,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-01T08:24:07Z","ServerKey":"us63"},{"ID":1296,"VillageID":3323,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":541,"CreatedAt":"2023-02-01T08:34:50Z","ServerKey":"us63"},{"ID":1297,"VillageID":1237,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":585,"CreatedAt":"2023-02-01T08:44:42Z","ServerKey":"us63"},{"ID":1298,"VillageID":1946,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-01T08:51:00Z","ServerKey":"us63"},{"ID":1299,"VillageID":325,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-01T08:55:00Z","ServerKey":"us63"},{"ID":1300,"VillageID":5827,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-01T09:18:57Z","ServerKey":"us63"},{"ID":1301,"VillageID":918,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8356,"CreatedAt":"2023-02-01T09:31:51Z","ServerKey":"us63"},{"ID":1302,"VillageID":5528,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-01T09:38:52Z","ServerKey":"us63"},{"ID":1303,"VillageID":2204,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-01T09:54:08Z","ServerKey":"us63"},{"ID":1304,"VillageID":1275,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":780354,"OldTribeID":11,"Points":218,"CreatedAt":"2023-02-01T10:02:40Z","ServerKey":"us63"},{"ID":1305,"VillageID":1275,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":218,"CreatedAt":"2023-02-01T10:02:40Z","ServerKey":"us63"},{"ID":1307,"VillageID":3326,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-01T10:15:21Z","ServerKey":"us63"},{"ID":1308,"VillageID":1793,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":3634,"CreatedAt":"2023-02-01T10:20:30Z","ServerKey":"us63"},{"ID":1309,"VillageID":1154,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1009,"CreatedAt":"2023-02-01T10:57:18Z","ServerKey":"us63"},{"ID":1310,"VillageID":64,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-01T10:59:09Z","ServerKey":"us63"},{"ID":1311,"VillageID":3962,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":775063,"OldTribeID":106,"Points":3191,"CreatedAt":"2023-02-01T11:00:01Z","ServerKey":"us63"},{"ID":1312,"VillageID":3962,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":785871,"OldTribeID":0,"Points":3191,"CreatedAt":"2023-02-01T11:00:01Z","ServerKey":"us63"},{"ID":1313,"VillageID":877,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-01T11:03:05Z","ServerKey":"us63"},{"ID":1314,"VillageID":1275,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":151032,"OldTribeID":20,"Points":194,"CreatedAt":"2023-02-01T11:14:01Z","ServerKey":"us63"},{"ID":1315,"VillageID":7244,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-01T11:14:02Z","ServerKey":"us63"},{"ID":1316,"VillageID":340,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-01T11:16:36Z","ServerKey":"us63"},{"ID":1317,"VillageID":781,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":5356,"CreatedAt":"2023-02-01T11:34:36Z","ServerKey":"us63"},{"ID":1318,"VillageID":802,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-01T12:06:21Z","ServerKey":"us63"},{"ID":1319,"VillageID":3140,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-01T12:07:52Z","ServerKey":"us63"},{"ID":1320,"VillageID":1787,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848954221,"OldTribeID":105,"Points":4893,"CreatedAt":"2023-02-01T12:16:22Z","ServerKey":"us63"},{"ID":1321,"VillageID":2567,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-01T12:50:00Z","ServerKey":"us63"},{"ID":1322,"VillageID":1635,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-01T12:54:37Z","ServerKey":"us63"},{"ID":1323,"VillageID":1566,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-01T13:31:37Z","ServerKey":"us63"},{"ID":1324,"VillageID":4771,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-01T13:36:09Z","ServerKey":"us63"},{"ID":1325,"VillageID":399,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-01T13:40:40Z","ServerKey":"us63"},{"ID":1326,"VillageID":1156,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-01T14:14:39Z","ServerKey":"us63"},{"ID":1327,"VillageID":4702,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-01T14:27:37Z","ServerKey":"us63"},{"ID":1328,"VillageID":569,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":2726,"CreatedAt":"2023-02-01T14:29:14Z","ServerKey":"us63"},{"ID":1329,"VillageID":2452,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":0,"Points":5223,"CreatedAt":"2023-02-01T14:53:15Z","ServerKey":"us63"},{"ID":1330,"VillageID":5763,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-01T14:53:30Z","ServerKey":"us63"},{"ID":1331,"VillageID":3452,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-01T14:55:51Z","ServerKey":"us63"},{"ID":1332,"VillageID":4254,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-01T15:04:14Z","ServerKey":"us63"},{"ID":1333,"VillageID":710,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-01T15:09:54Z","ServerKey":"us63"},{"ID":1334,"VillageID":2378,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-01T15:10:30Z","ServerKey":"us63"},{"ID":1335,"VillageID":6148,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-01T15:27:15Z","ServerKey":"us63"},{"ID":1336,"VillageID":2811,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":773019,"OldTribeID":50,"Points":1832,"CreatedAt":"2023-02-01T15:27:21Z","ServerKey":"us63"},{"ID":1337,"VillageID":1722,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-01T15:31:35Z","ServerKey":"us63"},{"ID":1338,"VillageID":512,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-01T15:34:50Z","ServerKey":"us63"},{"ID":1339,"VillageID":512,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":209,"CreatedAt":"2023-02-01T15:54:24Z","ServerKey":"us63"},{"ID":1343,"VillageID":1497,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-01T15:54:31Z","ServerKey":"us63"},{"ID":1344,"VillageID":1497,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":171,"CreatedAt":"2023-02-01T15:54:32Z","ServerKey":"us63"},{"ID":1345,"VillageID":1066,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-01T15:58:08Z","ServerKey":"us63"},{"ID":1346,"VillageID":2841,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848954610,"OldTribeID":53,"Points":3211,"CreatedAt":"2023-02-01T16:11:12Z","ServerKey":"us63"},{"ID":1347,"VillageID":1674,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":3108,"CreatedAt":"2023-02-01T16:23:47Z","ServerKey":"us63"},{"ID":1348,"VillageID":935,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-01T16:28:12Z","ServerKey":"us63"},{"ID":1349,"VillageID":1206,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-01T16:36:05Z","ServerKey":"us63"},{"ID":1350,"VillageID":1624,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848953270,"OldTribeID":0,"Points":5706,"CreatedAt":"2023-02-01T16:36:32Z","ServerKey":"us63"},{"ID":1351,"VillageID":1624,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848940894,"OldTribeID":11,"Points":5706,"CreatedAt":"2023-02-01T16:36:32Z","ServerKey":"us63"},{"ID":1352,"VillageID":2237,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":0,"Points":619,"CreatedAt":"2023-02-01T16:52:21Z","ServerKey":"us63"},{"ID":1353,"VillageID":2358,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1471,"CreatedAt":"2023-02-01T16:55:15Z","ServerKey":"us63"},{"ID":1354,"VillageID":3302,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-01T17:00:45Z","ServerKey":"us63"},{"ID":1355,"VillageID":3520,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-01T17:07:15Z","ServerKey":"us63"},{"ID":1356,"VillageID":772,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848954021,"OldTribeID":35,"Points":333,"CreatedAt":"2023-02-01T17:09:15Z","ServerKey":"us63"},{"ID":1357,"VillageID":235,"NewOwnerID":755121,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-01T17:10:23Z","ServerKey":"us63"},{"ID":1358,"VillageID":5580,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-01T17:14:25Z","ServerKey":"us63"},{"ID":1359,"VillageID":5379,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-01T17:19:19Z","ServerKey":"us63"},{"ID":1360,"VillageID":1043,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-02-01T17:37:18Z","ServerKey":"us63"},{"ID":1361,"VillageID":612,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-01T17:39:32Z","ServerKey":"us63"},{"ID":1362,"VillageID":607,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-01T17:45:14Z","ServerKey":"us63"},{"ID":1363,"VillageID":490,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-01T17:50:22Z","ServerKey":"us63"},{"ID":1364,"VillageID":490,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":165,"CreatedAt":"2023-02-01T17:50:22Z","ServerKey":"us63"},{"ID":1365,"VillageID":962,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-01T18:00:13Z","ServerKey":"us63"},{"ID":1366,"VillageID":1177,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-01T18:11:07Z","ServerKey":"us63"},{"ID":1367,"VillageID":975,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":795932,"OldTribeID":22,"Points":6796,"CreatedAt":"2023-02-01T18:14:15Z","ServerKey":"us63"},{"ID":1368,"VillageID":756,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-01T18:16:28Z","ServerKey":"us63"},{"ID":1369,"VillageID":611,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-01T18:35:58Z","ServerKey":"us63"},{"ID":1370,"VillageID":266,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-01T18:39:27Z","ServerKey":"us63"},{"ID":1371,"VillageID":289,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-01T18:52:48Z","ServerKey":"us63"},{"ID":1372,"VillageID":93,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-01T19:01:32Z","ServerKey":"us63"},{"ID":1373,"VillageID":3904,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-01T19:13:09Z","ServerKey":"us63"},{"ID":1374,"VillageID":114,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-01T19:16:54Z","ServerKey":"us63"},{"ID":1375,"VillageID":395,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-01T19:17:28Z","ServerKey":"us63"},{"ID":1376,"VillageID":1684,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-01T19:19:53Z","ServerKey":"us63"},{"ID":1377,"VillageID":24,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-01T19:58:13Z","ServerKey":"us63"},{"ID":1378,"VillageID":344,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":6967,"CreatedAt":"2023-02-01T20:16:36Z","ServerKey":"us63"},{"ID":1379,"VillageID":2188,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-01T20:20:46Z","ServerKey":"us63"},{"ID":1380,"VillageID":4302,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848954799,"OldTribeID":110,"Points":3450,"CreatedAt":"2023-02-01T20:26:02Z","ServerKey":"us63"},{"ID":1381,"VillageID":1546,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-01T20:40:52Z","ServerKey":"us63"},{"ID":1382,"VillageID":302,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-01T20:41:10Z","ServerKey":"us63"},{"ID":1383,"VillageID":3984,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-01T20:49:46Z","ServerKey":"us63"},{"ID":1384,"VillageID":1181,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":893,"CreatedAt":"2023-02-01T20:51:13Z","ServerKey":"us63"},{"ID":1385,"VillageID":5469,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-01T20:53:31Z","ServerKey":"us63"},{"ID":1386,"VillageID":2393,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-01T20:55:56Z","ServerKey":"us63"},{"ID":1387,"VillageID":562,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-01T21:02:02Z","ServerKey":"us63"},{"ID":1388,"VillageID":4438,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-01T21:16:19Z","ServerKey":"us63"},{"ID":1389,"VillageID":1855,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-01T21:24:20Z","ServerKey":"us63"},{"ID":1390,"VillageID":2814,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-01T21:55:54Z","ServerKey":"us63"},{"ID":1391,"VillageID":4501,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-02-01T21:56:24Z","ServerKey":"us63"},{"ID":1392,"VillageID":4348,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":647002,"OldTribeID":0,"Points":1176,"CreatedAt":"2023-02-01T22:01:32Z","ServerKey":"us63"},{"ID":1393,"VillageID":4348,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":264792,"OldTribeID":138,"Points":1176,"CreatedAt":"2023-02-01T22:01:32Z","ServerKey":"us63"},{"ID":1394,"VillageID":2058,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848954221,"OldTribeID":105,"Points":596,"CreatedAt":"2023-02-01T22:22:10Z","ServerKey":"us63"},{"ID":1395,"VillageID":989,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-01T22:22:40Z","ServerKey":"us63"},{"ID":1396,"VillageID":1088,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-01T22:28:23Z","ServerKey":"us63"},{"ID":1397,"VillageID":4150,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-01T22:41:52Z","ServerKey":"us63"},{"ID":1398,"VillageID":819,"NewOwnerID":848954598,"NewTribeID":27,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-01T22:42:09Z","ServerKey":"us63"},{"ID":1399,"VillageID":3112,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":848934532,"OldTribeID":0,"Points":2249,"CreatedAt":"2023-02-01T22:52:01Z","ServerKey":"us63"},{"ID":1400,"VillageID":1581,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-01T22:53:09Z","ServerKey":"us63"},{"ID":1401,"VillageID":2185,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-01T23:03:03Z","ServerKey":"us63"},{"ID":1402,"VillageID":1127,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-01T23:06:16Z","ServerKey":"us63"},{"ID":1403,"VillageID":1012,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-01T23:06:18Z","ServerKey":"us63"},{"ID":1404,"VillageID":1456,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-01T23:11:30Z","ServerKey":"us63"},{"ID":1405,"VillageID":4376,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-01T23:12:29Z","ServerKey":"us63"},{"ID":1406,"VillageID":3755,"NewOwnerID":848954768,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-01T23:16:07Z","ServerKey":"us63"},{"ID":1407,"VillageID":5373,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-02T00:01:19Z","ServerKey":"us63"},{"ID":1408,"VillageID":1603,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-02T00:25:19Z","ServerKey":"us63"},{"ID":1409,"VillageID":719,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1221,"CreatedAt":"2023-02-02T00:30:34Z","ServerKey":"us63"},{"ID":1410,"VillageID":1382,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-02T00:32:19Z","ServerKey":"us63"},{"ID":1411,"VillageID":375,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-02T01:05:18Z","ServerKey":"us63"},{"ID":1412,"VillageID":6133,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-02T01:12:22Z","ServerKey":"us63"},{"ID":1413,"VillageID":1404,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-02T01:18:16Z","ServerKey":"us63"},{"ID":1414,"VillageID":363,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T01:19:39Z","ServerKey":"us63"},{"ID":1415,"VillageID":4415,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-02T01:23:23Z","ServerKey":"us63"},{"ID":1416,"VillageID":343,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-02T01:32:00Z","ServerKey":"us63"},{"ID":1417,"VillageID":1642,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-02T01:32:33Z","ServerKey":"us63"},{"ID":1418,"VillageID":3600,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-02T01:35:04Z","ServerKey":"us63"},{"ID":1419,"VillageID":1107,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-02T01:36:56Z","ServerKey":"us63"},{"ID":1420,"VillageID":7078,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-02T02:16:07Z","ServerKey":"us63"},{"ID":1421,"VillageID":1476,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-02T02:16:50Z","ServerKey":"us63"},{"ID":1422,"VillageID":3765,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":715,"CreatedAt":"2023-02-02T02:25:22Z","ServerKey":"us63"},{"ID":1423,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":897,"CreatedAt":"2023-02-02T02:28:35Z","ServerKey":"us63"},{"ID":1424,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":873,"CreatedAt":"2023-02-02T02:29:39Z","ServerKey":"us63"},{"ID":1425,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":873,"CreatedAt":"2023-02-02T02:30:38Z","ServerKey":"us63"},{"ID":1426,"VillageID":568,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-02T02:48:15Z","ServerKey":"us63"},{"ID":1427,"VillageID":1384,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":670,"CreatedAt":"2023-02-02T02:50:00Z","ServerKey":"us63"},{"ID":1428,"VillageID":1384,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":670,"CreatedAt":"2023-02-02T02:50:00Z","ServerKey":"us63"},{"ID":1429,"VillageID":5676,"NewOwnerID":848924974,"NewTribeID":4,"OldOwnerID":848955018,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-02T02:51:11Z","ServerKey":"us63"},{"ID":1430,"VillageID":4794,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-02T02:53:32Z","ServerKey":"us63"},{"ID":1431,"VillageID":609,"NewOwnerID":848953956,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-02T02:57:11Z","ServerKey":"us63"},{"ID":1432,"VillageID":6861,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-02T03:00:50Z","ServerKey":"us63"},{"ID":1433,"VillageID":1056,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-02-02T03:11:18Z","ServerKey":"us63"},{"ID":1434,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":887,"CreatedAt":"2023-02-02T03:13:07Z","ServerKey":"us63"},{"ID":1435,"VillageID":4218,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-02T03:14:04Z","ServerKey":"us63"},{"ID":1436,"VillageID":2600,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":358211,"OldTribeID":0,"Points":2312,"CreatedAt":"2023-02-02T04:17:45Z","ServerKey":"us63"},{"ID":1437,"VillageID":1036,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-02T04:20:40Z","ServerKey":"us63"},{"ID":1438,"VillageID":3699,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-02T04:24:19Z","ServerKey":"us63"},{"ID":1439,"VillageID":961,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-02-02T04:30:19Z","ServerKey":"us63"},{"ID":1440,"VillageID":2697,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-02T04:32:57Z","ServerKey":"us63"},{"ID":1441,"VillageID":3184,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":185,"Points":1841,"CreatedAt":"2023-02-02T04:47:23Z","ServerKey":"us63"},{"ID":1442,"VillageID":2733,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-02T04:49:26Z","ServerKey":"us63"},{"ID":1443,"VillageID":3095,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-02-02T04:49:31Z","ServerKey":"us63"},{"ID":1444,"VillageID":2186,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":769106,"OldTribeID":0,"Points":4171,"CreatedAt":"2023-02-02T05:20:26Z","ServerKey":"us63"},{"ID":1445,"VillageID":5279,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":848943091,"OldTribeID":0,"Points":762,"CreatedAt":"2023-02-02T05:48:19Z","ServerKey":"us63"},{"ID":1446,"VillageID":2049,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848945641,"OldTribeID":0,"Points":690,"CreatedAt":"2023-02-02T05:49:21Z","ServerKey":"us63"},{"ID":1447,"VillageID":4431,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-02T05:53:09Z","ServerKey":"us63"},{"ID":1448,"VillageID":7155,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-02T06:00:10Z","ServerKey":"us63"},{"ID":1449,"VillageID":3938,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-02T06:03:13Z","ServerKey":"us63"},{"ID":1450,"VillageID":3137,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-02T06:04:41Z","ServerKey":"us63"},{"ID":1451,"VillageID":1459,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-02T06:28:26Z","ServerKey":"us63"},{"ID":1452,"VillageID":1459,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848936929,"OldTribeID":6,"Points":187,"CreatedAt":"2023-02-02T06:28:26Z","ServerKey":"us63"},{"ID":1453,"VillageID":1136,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":3152,"CreatedAt":"2023-02-02T06:30:23Z","ServerKey":"us63"},{"ID":1454,"VillageID":4711,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-02-02T06:36:37Z","ServerKey":"us63"},{"ID":1455,"VillageID":1748,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848954021,"OldTribeID":35,"Points":4301,"CreatedAt":"2023-02-02T06:49:07Z","ServerKey":"us63"},{"ID":1456,"VillageID":3981,"NewOwnerID":848954698,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-02T06:49:59Z","ServerKey":"us63"},{"ID":1457,"VillageID":239,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":1214,"CreatedAt":"2023-02-02T07:09:18Z","ServerKey":"us63"},{"ID":1458,"VillageID":4411,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-02T07:22:54Z","ServerKey":"us63"},{"ID":1459,"VillageID":6055,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-02T07:26:58Z","ServerKey":"us63"},{"ID":1460,"VillageID":959,"NewOwnerID":848952101,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-02T07:29:12Z","ServerKey":"us63"},{"ID":1461,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":525543,"OldTribeID":15,"Points":2391,"CreatedAt":"2023-02-02T07:33:34Z","ServerKey":"us63"},{"ID":1462,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":2391,"CreatedAt":"2023-02-02T07:33:34Z","ServerKey":"us63"},{"ID":1463,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":2111,"CreatedAt":"2023-02-02T07:33:35Z","ServerKey":"us63"},{"ID":1464,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":2111,"CreatedAt":"2023-02-02T07:34:01Z","ServerKey":"us63"},{"ID":1465,"VillageID":1246,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848916830,"OldTribeID":20,"Points":2111,"CreatedAt":"2023-02-02T07:34:01Z","ServerKey":"us63"},{"ID":1466,"VillageID":766,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":525543,"OldTribeID":15,"Points":4551,"CreatedAt":"2023-02-02T07:45:50Z","ServerKey":"us63"},{"ID":1467,"VillageID":1586,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-02T08:11:00Z","ServerKey":"us63"},{"ID":1468,"VillageID":6510,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-02T08:21:50Z","ServerKey":"us63"},{"ID":1469,"VillageID":2654,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":8630,"CreatedAt":"2023-02-02T08:22:15Z","ServerKey":"us63"},{"ID":1470,"VillageID":2817,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-02T08:30:11Z","ServerKey":"us63"},{"ID":1471,"VillageID":2034,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-02T08:31:29Z","ServerKey":"us63"},{"ID":1472,"VillageID":1207,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":2361,"CreatedAt":"2023-02-02T08:42:57Z","ServerKey":"us63"},{"ID":1473,"VillageID":1164,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-02T08:50:48Z","ServerKey":"us63"},{"ID":1474,"VillageID":4931,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":848907435,"OldTribeID":0,"Points":1715,"CreatedAt":"2023-02-02T08:58:39Z","ServerKey":"us63"},{"ID":1475,"VillageID":1743,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-02T09:13:34Z","ServerKey":"us63"},{"ID":1476,"VillageID":2163,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848954221,"OldTribeID":105,"Points":3041,"CreatedAt":"2023-02-02T09:15:00Z","ServerKey":"us63"},{"ID":1477,"VillageID":4752,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-02T09:18:03Z","ServerKey":"us63"},{"ID":1478,"VillageID":74,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848894948,"OldTribeID":42,"Points":2483,"CreatedAt":"2023-02-02T09:25:01Z","ServerKey":"us63"},{"ID":1479,"VillageID":1627,"NewOwnerID":848954361,"NewTribeID":183,"OldOwnerID":848953280,"OldTribeID":25,"Points":2921,"CreatedAt":"2023-02-02T09:32:51Z","ServerKey":"us63"},{"ID":1480,"VillageID":4936,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-02T09:52:58Z","ServerKey":"us63"},{"ID":1481,"VillageID":516,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-02T11:31:59Z","ServerKey":"us63"},{"ID":1482,"VillageID":516,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":848929146,"OldTribeID":183,"Points":161,"CreatedAt":"2023-02-02T11:31:59Z","ServerKey":"us63"},{"ID":1483,"VillageID":2885,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":5184,"CreatedAt":"2023-02-02T11:41:24Z","ServerKey":"us63"},{"ID":1484,"VillageID":656,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848952488,"OldTribeID":32,"Points":2619,"CreatedAt":"2023-02-02T11:47:54Z","ServerKey":"us63"},{"ID":1485,"VillageID":467,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848952488,"OldTribeID":32,"Points":791,"CreatedAt":"2023-02-02T12:05:26Z","ServerKey":"us63"},{"ID":1486,"VillageID":4090,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":848954766,"OldTribeID":0,"Points":2346,"CreatedAt":"2023-02-02T12:19:15Z","ServerKey":"us63"},{"ID":1487,"VillageID":3152,"NewOwnerID":707957,"NewTribeID":0,"OldOwnerID":848953793,"OldTribeID":65,"Points":4555,"CreatedAt":"2023-02-02T12:19:24Z","ServerKey":"us63"},{"ID":1488,"VillageID":1084,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":817,"CreatedAt":"2023-02-02T12:37:09Z","ServerKey":"us63"},{"ID":1489,"VillageID":3888,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-02T12:43:34Z","ServerKey":"us63"},{"ID":1490,"VillageID":2900,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-02T13:06:27Z","ServerKey":"us63"},{"ID":1491,"VillageID":5662,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-02-02T13:08:42Z","ServerKey":"us63"},{"ID":1492,"VillageID":3009,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-02T13:12:18Z","ServerKey":"us63"},{"ID":1493,"VillageID":4038,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T13:21:39Z","ServerKey":"us63"},{"ID":1494,"VillageID":2584,"NewOwnerID":270197,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-02T13:25:35Z","ServerKey":"us63"},{"ID":1495,"VillageID":2348,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":848949121,"OldTribeID":0,"Points":622,"CreatedAt":"2023-02-02T13:37:16Z","ServerKey":"us63"},{"ID":1496,"VillageID":1858,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-02T14:08:11Z","ServerKey":"us63"},{"ID":1497,"VillageID":1283,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-02T14:23:47Z","ServerKey":"us63"},{"ID":1498,"VillageID":205,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-02T14:26:20Z","ServerKey":"us63"},{"ID":1499,"VillageID":694,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-02T14:41:40Z","ServerKey":"us63"},{"ID":1500,"VillageID":1636,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-02T14:46:13Z","ServerKey":"us63"},{"ID":1501,"VillageID":2096,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-02T14:52:00Z","ServerKey":"us63"},{"ID":1502,"VillageID":3101,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-02T14:55:03Z","ServerKey":"us63"},{"ID":1503,"VillageID":2398,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-02T14:55:31Z","ServerKey":"us63"},{"ID":1504,"VillageID":4041,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-02T15:04:46Z","ServerKey":"us63"},{"ID":1505,"VillageID":6716,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-02T15:13:22Z","ServerKey":"us63"},{"ID":1506,"VillageID":6311,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-02T15:18:33Z","ServerKey":"us63"},{"ID":1507,"VillageID":5871,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":802,"CreatedAt":"2023-02-02T15:24:03Z","ServerKey":"us63"},{"ID":1508,"VillageID":248,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-02T15:26:22Z","ServerKey":"us63"},{"ID":1509,"VillageID":1049,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-02T15:34:01Z","ServerKey":"us63"},{"ID":1510,"VillageID":3999,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-02T15:37:45Z","ServerKey":"us63"},{"ID":1511,"VillageID":637,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-02T16:20:58Z","ServerKey":"us63"},{"ID":1512,"VillageID":4396,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-02T16:21:40Z","ServerKey":"us63"},{"ID":1513,"VillageID":2230,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-02T16:38:55Z","ServerKey":"us63"},{"ID":1514,"VillageID":3892,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848954131,"OldTribeID":0,"Points":3818,"CreatedAt":"2023-02-02T16:41:58Z","ServerKey":"us63"},{"ID":1515,"VillageID":4422,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T16:52:31Z","ServerKey":"us63"},{"ID":1516,"VillageID":2547,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":1726,"CreatedAt":"2023-02-02T16:54:50Z","ServerKey":"us63"},{"ID":1517,"VillageID":1876,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-02T17:08:49Z","ServerKey":"us63"},{"ID":1518,"VillageID":5996,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":848916248,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-02T17:22:30Z","ServerKey":"us63"},{"ID":1519,"VillageID":4226,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":605271,"OldTribeID":0,"Points":975,"CreatedAt":"2023-02-02T17:24:10Z","ServerKey":"us63"},{"ID":1520,"VillageID":5266,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-02T17:30:27Z","ServerKey":"us63"},{"ID":1521,"VillageID":833,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-02T17:45:02Z","ServerKey":"us63"},{"ID":1522,"VillageID":197,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-02T17:50:33Z","ServerKey":"us63"},{"ID":1523,"VillageID":6348,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-02T17:51:05Z","ServerKey":"us63"},{"ID":1524,"VillageID":236,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-02T17:53:13Z","ServerKey":"us63"},{"ID":1525,"VillageID":4808,"NewOwnerID":848954749,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-02T17:58:32Z","ServerKey":"us63"},{"ID":1526,"VillageID":5465,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-02T18:14:55Z","ServerKey":"us63"},{"ID":1527,"VillageID":6079,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-02T18:24:40Z","ServerKey":"us63"},{"ID":1528,"VillageID":2319,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-02T18:41:21Z","ServerKey":"us63"},{"ID":1529,"VillageID":1736,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-02T18:46:38Z","ServerKey":"us63"},{"ID":1530,"VillageID":3872,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-02T19:23:31Z","ServerKey":"us63"},{"ID":1531,"VillageID":5569,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-02T19:32:31Z","ServerKey":"us63"},{"ID":1532,"VillageID":1433,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":578,"CreatedAt":"2023-02-02T19:36:23Z","ServerKey":"us63"},{"ID":1533,"VillageID":1693,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-02T19:37:02Z","ServerKey":"us63"},{"ID":1534,"VillageID":401,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-02T19:37:57Z","ServerKey":"us63"},{"ID":1535,"VillageID":867,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-02T19:44:43Z","ServerKey":"us63"},{"ID":1536,"VillageID":3558,"NewOwnerID":707957,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-02T19:51:42Z","ServerKey":"us63"},{"ID":1537,"VillageID":6434,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-02T19:53:57Z","ServerKey":"us63"},{"ID":1538,"VillageID":6463,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-02T20:04:27Z","ServerKey":"us63"},{"ID":1539,"VillageID":1933,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-02T20:06:51Z","ServerKey":"us63"},{"ID":1540,"VillageID":5721,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-02T20:23:51Z","ServerKey":"us63"},{"ID":1541,"VillageID":4396,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":848954266,"OldTribeID":35,"Points":291,"CreatedAt":"2023-02-02T20:27:46Z","ServerKey":"us63"},{"ID":1542,"VillageID":185,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-02T20:28:46Z","ServerKey":"us63"},{"ID":1543,"VillageID":4868,"NewOwnerID":848924572,"NewTribeID":104,"OldOwnerID":848954889,"OldTribeID":152,"Points":1559,"CreatedAt":"2023-02-02T20:44:20Z","ServerKey":"us63"},{"ID":1544,"VillageID":2853,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-02-02T21:11:15Z","ServerKey":"us63"},{"ID":1545,"VillageID":1436,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-02T21:17:29Z","ServerKey":"us63"},{"ID":1546,"VillageID":438,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-02T21:20:09Z","ServerKey":"us63"},{"ID":1547,"VillageID":479,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-02T21:20:29Z","ServerKey":"us63"},{"ID":1548,"VillageID":2324,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-02T21:21:47Z","ServerKey":"us63"},{"ID":1549,"VillageID":3165,"NewOwnerID":679915,"NewTribeID":11,"OldOwnerID":848953270,"OldTribeID":0,"Points":928,"CreatedAt":"2023-02-02T21:35:55Z","ServerKey":"us63"},{"ID":1550,"VillageID":2646,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-02T21:43:48Z","ServerKey":"us63"},{"ID":1551,"VillageID":2827,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":868,"CreatedAt":"2023-02-02T21:48:44Z","ServerKey":"us63"},{"ID":1552,"VillageID":6360,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-02T22:01:07Z","ServerKey":"us63"},{"ID":1553,"VillageID":1656,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":848953495,"OldTribeID":0,"Points":3472,"CreatedAt":"2023-02-02T22:09:26Z","ServerKey":"us63"},{"ID":1554,"VillageID":4819,"NewOwnerID":848949067,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-02-02T22:19:00Z","ServerKey":"us63"},{"ID":1555,"VillageID":5675,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-02T22:21:45Z","ServerKey":"us63"},{"ID":1556,"VillageID":3270,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":0,"Points":6292,"CreatedAt":"2023-02-02T22:50:25Z","ServerKey":"us63"},{"ID":1557,"VillageID":839,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-02T22:54:50Z","ServerKey":"us63"},{"ID":1558,"VillageID":527,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8867,"CreatedAt":"2023-02-02T23:09:26Z","ServerKey":"us63"},{"ID":1559,"VillageID":1462,"NewOwnerID":848907165,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T23:09:48Z","ServerKey":"us63"},{"ID":1560,"VillageID":6373,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-02T23:31:05Z","ServerKey":"us63"},{"ID":1561,"VillageID":3007,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":848951416,"OldTribeID":0,"Points":2161,"CreatedAt":"2023-02-02T23:38:24Z","ServerKey":"us63"},{"ID":1562,"VillageID":1242,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":829,"CreatedAt":"2023-02-02T23:45:30Z","ServerKey":"us63"},{"ID":1563,"VillageID":1312,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848944627,"OldTribeID":105,"Points":3365,"CreatedAt":"2023-02-02T23:46:59Z","ServerKey":"us63"},{"ID":1564,"VillageID":4544,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":357794,"OldTribeID":29,"Points":3968,"CreatedAt":"2023-02-02T23:50:38Z","ServerKey":"us63"},{"ID":1565,"VillageID":5087,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-03T00:05:18Z","ServerKey":"us63"},{"ID":1566,"VillageID":3729,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-03T00:11:15Z","ServerKey":"us63"},{"ID":1567,"VillageID":1592,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-03T00:28:17Z","ServerKey":"us63"},{"ID":1568,"VillageID":5824,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-03T00:45:31Z","ServerKey":"us63"},{"ID":1569,"VillageID":4644,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-03T00:49:33Z","ServerKey":"us63"},{"ID":1570,"VillageID":168,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-03T00:51:28Z","ServerKey":"us63"},{"ID":1571,"VillageID":299,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":3042,"CreatedAt":"2023-02-03T00:51:58Z","ServerKey":"us63"},{"ID":1572,"VillageID":299,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":411608,"OldTribeID":138,"Points":3042,"CreatedAt":"2023-02-03T00:51:58Z","ServerKey":"us63"},{"ID":1573,"VillageID":2797,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-03T01:01:25Z","ServerKey":"us63"},{"ID":1574,"VillageID":6642,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-03T01:05:13Z","ServerKey":"us63"},{"ID":1575,"VillageID":6659,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-02-03T01:22:00Z","ServerKey":"us63"},{"ID":1576,"VillageID":973,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-03T01:24:23Z","ServerKey":"us63"},{"ID":1577,"VillageID":1936,"NewOwnerID":848937132,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-03T01:40:50Z","ServerKey":"us63"},{"ID":1578,"VillageID":4847,"NewOwnerID":744059,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-03T01:41:22Z","ServerKey":"us63"},{"ID":1579,"VillageID":3277,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-03T01:43:05Z","ServerKey":"us63"},{"ID":1580,"VillageID":3197,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848953907,"OldTribeID":0,"Points":1953,"CreatedAt":"2023-02-03T01:48:25Z","ServerKey":"us63"},{"ID":1581,"VillageID":7068,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-03T01:56:01Z","ServerKey":"us63"},{"ID":1582,"VillageID":6642,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848947757,"OldTribeID":74,"Points":59,"CreatedAt":"2023-02-03T02:09:35Z","ServerKey":"us63"},{"ID":1583,"VillageID":182,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-03T02:15:19Z","ServerKey":"us63"},{"ID":1584,"VillageID":3174,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-03T02:32:48Z","ServerKey":"us63"},{"ID":1585,"VillageID":5771,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-03T02:34:24Z","ServerKey":"us63"},{"ID":1586,"VillageID":1508,"NewOwnerID":848949948,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":8599,"CreatedAt":"2023-02-03T02:40:44Z","ServerKey":"us63"},{"ID":1587,"VillageID":969,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-03T03:01:41Z","ServerKey":"us63"},{"ID":1588,"VillageID":3078,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-03T03:11:02Z","ServerKey":"us63"},{"ID":1589,"VillageID":613,"NewOwnerID":848952005,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-03T03:19:22Z","ServerKey":"us63"},{"ID":1590,"VillageID":398,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-03T03:19:41Z","ServerKey":"us63"},{"ID":1591,"VillageID":6261,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-03T03:22:23Z","ServerKey":"us63"},{"ID":1592,"VillageID":299,"NewOwnerID":795044,"NewTribeID":69,"OldOwnerID":411608,"OldTribeID":138,"Points":3018,"CreatedAt":"2023-02-03T03:44:53Z","ServerKey":"us63"},{"ID":1593,"VillageID":6742,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-03T03:48:27Z","ServerKey":"us63"},{"ID":1594,"VillageID":334,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-03T04:02:10Z","ServerKey":"us63"},{"ID":1595,"VillageID":5351,"NewOwnerID":848945828,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-03T04:04:50Z","ServerKey":"us63"},{"ID":1596,"VillageID":1432,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-03T04:26:56Z","ServerKey":"us63"},{"ID":1597,"VillageID":549,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-03T04:33:52Z","ServerKey":"us63"},{"ID":1598,"VillageID":929,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-03T04:34:10Z","ServerKey":"us63"},{"ID":1599,"VillageID":891,"NewOwnerID":848950001,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-03T04:40:23Z","ServerKey":"us63"},{"ID":1600,"VillageID":600,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-03T04:41:45Z","ServerKey":"us63"},{"ID":1601,"VillageID":3910,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-03T04:51:13Z","ServerKey":"us63"},{"ID":1602,"VillageID":1125,"NewOwnerID":848952033,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-03T04:52:55Z","ServerKey":"us63"},{"ID":1603,"VillageID":167,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-03T04:54:26Z","ServerKey":"us63"},{"ID":1604,"VillageID":6440,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-03T04:59:33Z","ServerKey":"us63"},{"ID":1605,"VillageID":3263,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-03T05:34:15Z","ServerKey":"us63"},{"ID":1606,"VillageID":6042,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-03T05:44:28Z","ServerKey":"us63"},{"ID":1607,"VillageID":1216,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-03T05:50:36Z","ServerKey":"us63"},{"ID":1608,"VillageID":4683,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-03T06:00:30Z","ServerKey":"us63"},{"ID":1609,"VillageID":4683,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":848954762,"OldTribeID":119,"Points":132,"CreatedAt":"2023-02-03T06:00:30Z","ServerKey":"us63"},{"ID":1610,"VillageID":1158,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848954368,"OldTribeID":0,"Points":3930,"CreatedAt":"2023-02-03T06:04:25Z","ServerKey":"us63"},{"ID":1611,"VillageID":5490,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-03T06:06:30Z","ServerKey":"us63"},{"ID":1612,"VillageID":1135,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-03T06:15:51Z","ServerKey":"us63"},{"ID":1613,"VillageID":2564,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-03T06:17:41Z","ServerKey":"us63"},{"ID":1614,"VillageID":6240,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-03T06:24:59Z","ServerKey":"us63"},{"ID":1615,"VillageID":7058,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-02-03T06:34:47Z","ServerKey":"us63"},{"ID":1616,"VillageID":615,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":557,"CreatedAt":"2023-02-03T06:36:56Z","ServerKey":"us63"},{"ID":1617,"VillageID":6246,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-03T06:42:32Z","ServerKey":"us63"},{"ID":1618,"VillageID":5016,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":160994,"OldTribeID":24,"Points":6597,"CreatedAt":"2023-02-03T06:44:15Z","ServerKey":"us63"},{"ID":1619,"VillageID":3152,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":0,"Points":4567,"CreatedAt":"2023-02-03T06:45:54Z","ServerKey":"us63"},{"ID":1620,"VillageID":5016,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848941179,"OldTribeID":35,"Points":6501,"CreatedAt":"2023-02-03T07:06:26Z","ServerKey":"us63"},{"ID":1621,"VillageID":6194,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-03T07:08:35Z","ServerKey":"us63"},{"ID":1622,"VillageID":6389,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-03T07:08:42Z","ServerKey":"us63"},{"ID":1623,"VillageID":1106,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-03T07:48:40Z","ServerKey":"us63"},{"ID":1624,"VillageID":606,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-03T07:55:43Z","ServerKey":"us63"},{"ID":1625,"VillageID":5317,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-03T08:13:31Z","ServerKey":"us63"},{"ID":1626,"VillageID":606,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":848953046,"OldTribeID":35,"Points":194,"CreatedAt":"2023-02-03T08:38:04Z","ServerKey":"us63"},{"ID":1627,"VillageID":506,"NewOwnerID":848951914,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-03T08:44:04Z","ServerKey":"us63"},{"ID":1628,"VillageID":4337,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-03T08:55:25Z","ServerKey":"us63"},{"ID":1629,"VillageID":1482,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848951612,"OldTribeID":35,"Points":5911,"CreatedAt":"2023-02-03T09:20:32Z","ServerKey":"us63"},{"ID":1630,"VillageID":581,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-03T09:32:05Z","ServerKey":"us63"},{"ID":1631,"VillageID":1055,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-03T09:47:48Z","ServerKey":"us63"},{"ID":1632,"VillageID":26,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-03T09:50:46Z","ServerKey":"us63"},{"ID":1633,"VillageID":4472,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-03T09:56:09Z","ServerKey":"us63"},{"ID":1634,"VillageID":1512,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":848952099,"OldTribeID":41,"Points":2990,"CreatedAt":"2023-02-03T10:06:57Z","ServerKey":"us63"},{"ID":1635,"VillageID":723,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-03T10:10:58Z","ServerKey":"us63"},{"ID":1636,"VillageID":1234,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-03T10:23:34Z","ServerKey":"us63"},{"ID":1637,"VillageID":6032,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-03T10:31:12Z","ServerKey":"us63"},{"ID":1638,"VillageID":2988,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-03T11:08:57Z","ServerKey":"us63"},{"ID":1639,"VillageID":1376,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-03T11:45:21Z","ServerKey":"us63"},{"ID":1640,"VillageID":4268,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848947609,"OldTribeID":47,"Points":3171,"CreatedAt":"2023-02-03T12:04:21Z","ServerKey":"us63"},{"ID":1641,"VillageID":1708,"NewOwnerID":848954598,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-03T12:04:47Z","ServerKey":"us63"},{"ID":1642,"VillageID":1668,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-03T12:12:36Z","ServerKey":"us63"},{"ID":1643,"VillageID":3700,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":744059,"OldTribeID":53,"Points":3148,"CreatedAt":"2023-02-03T12:18:53Z","ServerKey":"us63"},{"ID":1644,"VillageID":379,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-03T12:19:30Z","ServerKey":"us63"},{"ID":1645,"VillageID":5374,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-03T12:38:30Z","ServerKey":"us63"},{"ID":1646,"VillageID":38,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-03T12:51:42Z","ServerKey":"us63"},{"ID":1647,"VillageID":4058,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-03T13:52:33Z","ServerKey":"us63"},{"ID":1648,"VillageID":2919,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-03T14:05:52Z","ServerKey":"us63"},{"ID":1649,"VillageID":2332,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":848932020,"OldTribeID":0,"Points":535,"CreatedAt":"2023-02-03T14:12:47Z","ServerKey":"us63"},{"ID":1650,"VillageID":2217,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":2732,"CreatedAt":"2023-02-03T14:32:46Z","ServerKey":"us63"},{"ID":1651,"VillageID":3906,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-03T14:36:44Z","ServerKey":"us63"},{"ID":1652,"VillageID":4199,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-03T14:37:10Z","ServerKey":"us63"},{"ID":1653,"VillageID":2454,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":2086,"CreatedAt":"2023-02-03T15:40:31Z","ServerKey":"us63"},{"ID":1654,"VillageID":6019,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-02-03T15:41:50Z","ServerKey":"us63"},{"ID":1655,"VillageID":1194,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-03T15:49:15Z","ServerKey":"us63"},{"ID":1656,"VillageID":1294,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-03T15:54:38Z","ServerKey":"us63"},{"ID":1657,"VillageID":3268,"NewOwnerID":771856,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-03T15:56:23Z","ServerKey":"us63"},{"ID":1658,"VillageID":1849,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":6807,"CreatedAt":"2023-02-03T16:00:00Z","ServerKey":"us63"},{"ID":1659,"VillageID":854,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":5094,"CreatedAt":"2023-02-03T16:00:00Z","ServerKey":"us63"},{"ID":1660,"VillageID":1319,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":9056,"CreatedAt":"2023-02-03T16:00:01Z","ServerKey":"us63"},{"ID":1661,"VillageID":550,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":9358,"CreatedAt":"2023-02-03T16:00:01Z","ServerKey":"us63"},{"ID":1662,"VillageID":1778,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":1776,"CreatedAt":"2023-02-03T16:00:13Z","ServerKey":"us63"},{"ID":1663,"VillageID":447,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-03T16:04:52Z","ServerKey":"us63"},{"ID":1664,"VillageID":1808,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-03T16:08:42Z","ServerKey":"us63"},{"ID":1665,"VillageID":2614,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848949681,"OldTribeID":76,"Points":4052,"CreatedAt":"2023-02-03T16:11:28Z","ServerKey":"us63"},{"ID":1666,"VillageID":1827,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-03T16:15:11Z","ServerKey":"us63"},{"ID":1667,"VillageID":4245,"NewOwnerID":223156,"NewTribeID":104,"OldOwnerID":848954385,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-03T16:15:36Z","ServerKey":"us63"},{"ID":1668,"VillageID":5393,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":608574,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-03T16:32:24Z","ServerKey":"us63"},{"ID":1669,"VillageID":5393,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":848946770,"OldTribeID":152,"Points":150,"CreatedAt":"2023-02-03T16:35:11Z","ServerKey":"us63"},{"ID":1670,"VillageID":1862,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":160994,"OldTribeID":24,"Points":1981,"CreatedAt":"2023-02-03T16:36:35Z","ServerKey":"us63"},{"ID":1671,"VillageID":1187,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-03T16:38:48Z","ServerKey":"us63"},{"ID":1672,"VillageID":3968,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":763098,"OldTribeID":114,"Points":5057,"CreatedAt":"2023-02-03T17:11:59Z","ServerKey":"us63"},{"ID":1673,"VillageID":1155,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-03T17:25:17Z","ServerKey":"us63"},{"ID":1674,"VillageID":750,"NewOwnerID":848954321,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":2098,"CreatedAt":"2023-02-03T17:45:19Z","ServerKey":"us63"},{"ID":1675,"VillageID":3968,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":848954140,"OldTribeID":85,"Points":5033,"CreatedAt":"2023-02-03T17:46:43Z","ServerKey":"us63"},{"ID":1676,"VillageID":4067,"NewOwnerID":272678,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-03T17:48:44Z","ServerKey":"us63"},{"ID":1677,"VillageID":1009,"NewOwnerID":848954361,"NewTribeID":183,"OldOwnerID":701192,"OldTribeID":25,"Points":1665,"CreatedAt":"2023-02-03T18:07:04Z","ServerKey":"us63"},{"ID":1678,"VillageID":5614,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-03T18:17:14Z","ServerKey":"us63"},{"ID":1679,"VillageID":4560,"NewOwnerID":325451,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-03T18:34:33Z","ServerKey":"us63"},{"ID":1680,"VillageID":1375,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":699,"CreatedAt":"2023-02-03T18:56:42Z","ServerKey":"us63"},{"ID":1681,"VillageID":1466,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-03T19:00:03Z","ServerKey":"us63"},{"ID":1682,"VillageID":1779,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-03T19:11:31Z","ServerKey":"us63"},{"ID":1683,"VillageID":4485,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":848954832,"OldTribeID":134,"Points":3257,"CreatedAt":"2023-02-03T19:31:35Z","ServerKey":"us63"},{"ID":1684,"VillageID":164,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-03T19:33:11Z","ServerKey":"us63"},{"ID":1685,"VillageID":1702,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":698,"CreatedAt":"2023-02-03T19:33:42Z","ServerKey":"us63"},{"ID":1686,"VillageID":5142,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1858,"CreatedAt":"2023-02-03T19:36:28Z","ServerKey":"us63"},{"ID":1687,"VillageID":821,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-03T19:44:38Z","ServerKey":"us63"},{"ID":1688,"VillageID":5045,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-03T19:46:00Z","ServerKey":"us63"},{"ID":1689,"VillageID":2765,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-03T19:49:57Z","ServerKey":"us63"},{"ID":1690,"VillageID":3585,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":270197,"OldTribeID":41,"Points":2967,"CreatedAt":"2023-02-03T19:59:59Z","ServerKey":"us63"},{"ID":1691,"VillageID":3198,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":1258,"CreatedAt":"2023-02-03T20:15:49Z","ServerKey":"us63"},{"ID":1692,"VillageID":1475,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-03T20:17:45Z","ServerKey":"us63"},{"ID":1693,"VillageID":700,"NewOwnerID":377337,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-03T20:30:31Z","ServerKey":"us63"},{"ID":1694,"VillageID":17,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-03T20:37:27Z","ServerKey":"us63"},{"ID":1695,"VillageID":4237,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-03T21:01:31Z","ServerKey":"us63"},{"ID":1696,"VillageID":7291,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-03T21:50:42Z","ServerKey":"us63"},{"ID":1697,"VillageID":541,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":848879567,"OldTribeID":0,"Points":5313,"CreatedAt":"2023-02-03T21:56:40Z","ServerKey":"us63"},{"ID":1698,"VillageID":5950,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-03T21:59:33Z","ServerKey":"us63"},{"ID":1699,"VillageID":2741,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":795932,"OldTribeID":22,"Points":1259,"CreatedAt":"2023-02-03T22:02:49Z","ServerKey":"us63"},{"ID":1700,"VillageID":4976,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-03T22:25:47Z","ServerKey":"us63"},{"ID":1701,"VillageID":308,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-03T23:01:36Z","ServerKey":"us63"},{"ID":1702,"VillageID":3650,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-03T23:19:36Z","ServerKey":"us63"},{"ID":1703,"VillageID":3914,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-03T23:36:58Z","ServerKey":"us63"},{"ID":1704,"VillageID":2299,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":848940747,"OldTribeID":0,"Points":462,"CreatedAt":"2023-02-04T00:07:05Z","ServerKey":"us63"},{"ID":1705,"VillageID":890,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-04T00:07:06Z","ServerKey":"us63"},{"ID":1706,"VillageID":274,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-04T00:13:56Z","ServerKey":"us63"},{"ID":1707,"VillageID":299,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":795044,"OldTribeID":69,"Points":3018,"CreatedAt":"2023-02-04T00:34:49Z","ServerKey":"us63"},{"ID":1708,"VillageID":1018,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":848944627,"OldTribeID":105,"Points":326,"CreatedAt":"2023-02-04T00:43:43Z","ServerKey":"us63"},{"ID":1709,"VillageID":2180,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-04T00:53:14Z","ServerKey":"us63"},{"ID":1710,"VillageID":672,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-04T00:59:23Z","ServerKey":"us63"},{"ID":1711,"VillageID":4833,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":223156,"OldTribeID":104,"Points":3199,"CreatedAt":"2023-02-04T01:03:27Z","ServerKey":"us63"},{"ID":1712,"VillageID":2305,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848953064,"OldTribeID":25,"Points":3000,"CreatedAt":"2023-02-04T01:26:20Z","ServerKey":"us63"},{"ID":1713,"VillageID":1243,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-04T01:34:04Z","ServerKey":"us63"},{"ID":1714,"VillageID":2168,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-04T01:41:22Z","ServerKey":"us63"},{"ID":1715,"VillageID":5065,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848953267,"OldTribeID":0,"Points":1924,"CreatedAt":"2023-02-04T01:47:00Z","ServerKey":"us63"},{"ID":1716,"VillageID":736,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848953915,"OldTribeID":35,"Points":1523,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1717,"VillageID":1467,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848954199,"OldTribeID":35,"Points":2782,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1718,"VillageID":426,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954190,"OldTribeID":35,"Points":6174,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1719,"VillageID":77,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":5431,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1720,"VillageID":429,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":8289,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1721,"VillageID":1709,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953915,"OldTribeID":35,"Points":4047,"CreatedAt":"2023-02-04T02:00:01Z","ServerKey":"us63"},{"ID":1722,"VillageID":504,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848954362,"OldTribeID":35,"Points":3358,"CreatedAt":"2023-02-04T02:03:01Z","ServerKey":"us63"},{"ID":1723,"VillageID":1075,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848930169,"OldTribeID":163,"Points":4354,"CreatedAt":"2023-02-04T02:06:00Z","ServerKey":"us63"},{"ID":1724,"VillageID":1075,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":729178,"OldTribeID":48,"Points":4354,"CreatedAt":"2023-02-04T02:06:00Z","ServerKey":"us63"},{"ID":1725,"VillageID":7368,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-04T02:06:55Z","ServerKey":"us63"},{"ID":1726,"VillageID":1812,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-04T02:13:28Z","ServerKey":"us63"},{"ID":1727,"VillageID":932,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":2484,"CreatedAt":"2023-02-04T02:22:40Z","ServerKey":"us63"},{"ID":1728,"VillageID":4308,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848937378,"OldTribeID":0,"Points":980,"CreatedAt":"2023-02-04T02:31:33Z","ServerKey":"us63"},{"ID":1729,"VillageID":6497,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848952889,"OldTribeID":0,"Points":1032,"CreatedAt":"2023-02-04T02:45:36Z","ServerKey":"us63"},{"ID":1730,"VillageID":158,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-04T02:58:13Z","ServerKey":"us63"},{"ID":1731,"VillageID":1289,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":735,"CreatedAt":"2023-02-04T03:32:29Z","ServerKey":"us63"},{"ID":1732,"VillageID":1988,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848954368,"OldTribeID":0,"Points":1739,"CreatedAt":"2023-02-04T03:34:12Z","ServerKey":"us63"},{"ID":1733,"VillageID":3066,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-04T03:57:45Z","ServerKey":"us63"},{"ID":1734,"VillageID":7520,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-04T03:58:38Z","ServerKey":"us63"},{"ID":1735,"VillageID":4916,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-04T04:07:19Z","ServerKey":"us63"},{"ID":1736,"VillageID":1616,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-04T04:12:40Z","ServerKey":"us63"},{"ID":1737,"VillageID":5618,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-04T04:22:21Z","ServerKey":"us63"},{"ID":1738,"VillageID":14,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-04T04:40:07Z","ServerKey":"us63"},{"ID":1739,"VillageID":808,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":160994,"OldTribeID":24,"Points":844,"CreatedAt":"2023-02-04T04:53:42Z","ServerKey":"us63"},{"ID":1740,"VillageID":808,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":848941179,"OldTribeID":35,"Points":844,"CreatedAt":"2023-02-04T04:53:42Z","ServerKey":"us63"},{"ID":1741,"VillageID":245,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-04T04:55:52Z","ServerKey":"us63"},{"ID":1742,"VillageID":1969,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848937132,"OldTribeID":5,"Points":4508,"CreatedAt":"2023-02-04T05:00:12Z","ServerKey":"us63"},{"ID":1743,"VillageID":1969,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":503636,"OldTribeID":138,"Points":4307,"CreatedAt":"2023-02-04T05:00:13Z","ServerKey":"us63"},{"ID":1744,"VillageID":645,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954190,"OldTribeID":35,"Points":2254,"CreatedAt":"2023-02-04T05:30:17Z","ServerKey":"us63"},{"ID":1745,"VillageID":805,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-04T05:54:33Z","ServerKey":"us63"},{"ID":1746,"VillageID":1463,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-04T05:56:25Z","ServerKey":"us63"},{"ID":1747,"VillageID":939,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-04T06:00:22Z","ServerKey":"us63"},{"ID":1748,"VillageID":905,"NewOwnerID":377337,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-04T06:17:37Z","ServerKey":"us63"},{"ID":1749,"VillageID":3015,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-04T06:18:17Z","ServerKey":"us63"},{"ID":1750,"VillageID":7497,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-04T06:27:23Z","ServerKey":"us63"},{"ID":1751,"VillageID":650,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848931764,"OldTribeID":35,"Points":654,"CreatedAt":"2023-02-04T06:37:05Z","ServerKey":"us63"},{"ID":1752,"VillageID":135,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-04T06:41:17Z","ServerKey":"us63"},{"ID":1753,"VillageID":3245,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-04T06:43:45Z","ServerKey":"us63"},{"ID":1754,"VillageID":1692,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848954362,"OldTribeID":35,"Points":3763,"CreatedAt":"2023-02-04T06:44:13Z","ServerKey":"us63"},{"ID":1755,"VillageID":1152,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-04T07:18:40Z","ServerKey":"us63"},{"ID":1756,"VillageID":6917,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848954029,"OldTribeID":0,"Points":901,"CreatedAt":"2023-02-04T07:20:16Z","ServerKey":"us63"},{"ID":1757,"VillageID":522,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-04T07:42:29Z","ServerKey":"us63"},{"ID":1758,"VillageID":1874,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-04T07:42:57Z","ServerKey":"us63"},{"ID":1759,"VillageID":556,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-04T08:15:40Z","ServerKey":"us63"},{"ID":1760,"VillageID":1597,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848954437,"OldTribeID":12,"Points":745,"CreatedAt":"2023-02-04T08:17:41Z","ServerKey":"us63"},{"ID":1761,"VillageID":1346,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-04T08:33:46Z","ServerKey":"us63"},{"ID":1762,"VillageID":688,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954266,"OldTribeID":35,"Points":1879,"CreatedAt":"2023-02-04T08:58:12Z","ServerKey":"us63"},{"ID":1763,"VillageID":2029,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":423,"CreatedAt":"2023-02-04T09:15:45Z","ServerKey":"us63"},{"ID":1764,"VillageID":5473,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-04T09:54:40Z","ServerKey":"us63"},{"ID":1765,"VillageID":971,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-04T09:58:48Z","ServerKey":"us63"},{"ID":1766,"VillageID":2692,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":789838,"OldTribeID":66,"Points":5510,"CreatedAt":"2023-02-04T10:00:37Z","ServerKey":"us63"},{"ID":1767,"VillageID":4405,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-04T10:26:12Z","ServerKey":"us63"},{"ID":1768,"VillageID":5748,"NewOwnerID":848955132,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-02-04T10:30:27Z","ServerKey":"us63"},{"ID":1769,"VillageID":1863,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848954437,"OldTribeID":12,"Points":2754,"CreatedAt":"2023-02-04T11:04:25Z","ServerKey":"us63"},{"ID":1770,"VillageID":5764,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-04T11:07:46Z","ServerKey":"us63"},{"ID":1771,"VillageID":608,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":439,"CreatedAt":"2023-02-04T11:30:31Z","ServerKey":"us63"},{"ID":1772,"VillageID":3794,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-04T12:37:10Z","ServerKey":"us63"},{"ID":1773,"VillageID":491,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":717336,"OldTribeID":0,"Points":847,"CreatedAt":"2023-02-04T12:42:13Z","ServerKey":"us63"},{"ID":1774,"VillageID":4651,"NewOwnerID":848954723,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-04T12:47:52Z","ServerKey":"us63"},{"ID":1775,"VillageID":1794,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-04T12:55:41Z","ServerKey":"us63"},{"ID":1776,"VillageID":1129,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-04T13:33:17Z","ServerKey":"us63"},{"ID":1777,"VillageID":4370,"NewOwnerID":848905385,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-04T13:35:37Z","ServerKey":"us63"},{"ID":1778,"VillageID":688,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":151032,"OldTribeID":20,"Points":1894,"CreatedAt":"2023-02-04T13:51:26Z","ServerKey":"us63"},{"ID":1779,"VillageID":688,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":1894,"CreatedAt":"2023-02-04T13:51:26Z","ServerKey":"us63"},{"ID":1780,"VillageID":5229,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":35,"Points":7207,"CreatedAt":"2023-02-04T14:00:01Z","ServerKey":"us63"},{"ID":1781,"VillageID":6256,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":783504,"OldTribeID":188,"Points":2422,"CreatedAt":"2023-02-04T14:03:21Z","ServerKey":"us63"},{"ID":1782,"VillageID":6256,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":848929097,"OldTribeID":76,"Points":2422,"CreatedAt":"2023-02-04T14:03:21Z","ServerKey":"us63"},{"ID":1783,"VillageID":1337,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-04T14:16:35Z","ServerKey":"us63"},{"ID":1784,"VillageID":6937,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-04T14:17:33Z","ServerKey":"us63"},{"ID":1785,"VillageID":4454,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-04T14:52:53Z","ServerKey":"us63"},{"ID":1786,"VillageID":3901,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-04T15:07:45Z","ServerKey":"us63"},{"ID":1787,"VillageID":3032,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-04T15:16:39Z","ServerKey":"us63"},{"ID":1788,"VillageID":6317,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-04T15:16:53Z","ServerKey":"us63"},{"ID":1789,"VillageID":1687,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-04T15:35:47Z","ServerKey":"us63"},{"ID":1790,"VillageID":5414,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-04T15:48:59Z","ServerKey":"us63"},{"ID":1791,"VillageID":6015,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-04T15:58:13Z","ServerKey":"us63"},{"ID":1792,"VillageID":1962,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-04T16:26:42Z","ServerKey":"us63"},{"ID":1793,"VillageID":1740,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953915,"OldTribeID":0,"Points":3086,"CreatedAt":"2023-02-04T16:31:31Z","ServerKey":"us63"},{"ID":1794,"VillageID":1740,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848954504,"OldTribeID":2,"Points":3062,"CreatedAt":"2023-02-04T16:31:32Z","ServerKey":"us63"},{"ID":1795,"VillageID":225,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954266,"OldTribeID":35,"Points":4106,"CreatedAt":"2023-02-04T16:33:00Z","ServerKey":"us63"},{"ID":1796,"VillageID":7128,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-04T16:52:15Z","ServerKey":"us63"},{"ID":1797,"VillageID":436,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954170,"OldTribeID":35,"Points":4975,"CreatedAt":"2023-02-04T16:55:56Z","ServerKey":"us63"},{"ID":1798,"VillageID":436,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":616498,"OldTribeID":48,"Points":4975,"CreatedAt":"2023-02-04T16:55:56Z","ServerKey":"us63"},{"ID":1799,"VillageID":733,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-04T16:58:33Z","ServerKey":"us63"},{"ID":1800,"VillageID":3776,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-04T16:59:53Z","ServerKey":"us63"},{"ID":1801,"VillageID":6209,"NewOwnerID":226713,"NewTribeID":91,"OldOwnerID":848955101,"OldTribeID":134,"Points":1159,"CreatedAt":"2023-02-04T17:00:11Z","ServerKey":"us63"},{"ID":1802,"VillageID":3675,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":848954709,"OldTribeID":0,"Points":870,"CreatedAt":"2023-02-04T17:01:32Z","ServerKey":"us63"},{"ID":1803,"VillageID":1959,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-04T17:30:50Z","ServerKey":"us63"},{"ID":1804,"VillageID":4275,"NewOwnerID":848941569,"NewTribeID":91,"OldOwnerID":786347,"OldTribeID":0,"Points":538,"CreatedAt":"2023-02-04T17:31:23Z","ServerKey":"us63"},{"ID":1805,"VillageID":671,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-04T17:36:25Z","ServerKey":"us63"},{"ID":1806,"VillageID":767,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-04T17:40:54Z","ServerKey":"us63"},{"ID":1807,"VillageID":5113,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-04T17:45:15Z","ServerKey":"us63"},{"ID":1808,"VillageID":5968,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848955057,"OldTribeID":176,"Points":1467,"CreatedAt":"2023-02-04T17:56:10Z","ServerKey":"us63"},{"ID":1809,"VillageID":2571,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-04T18:17:51Z","ServerKey":"us63"},{"ID":1810,"VillageID":2497,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-04T18:20:18Z","ServerKey":"us63"},{"ID":1811,"VillageID":279,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-04T18:30:31Z","ServerKey":"us63"},{"ID":1812,"VillageID":1841,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848954362,"OldTribeID":35,"Points":5187,"CreatedAt":"2023-02-04T18:32:32Z","ServerKey":"us63"},{"ID":1813,"VillageID":181,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-04T18:33:56Z","ServerKey":"us63"},{"ID":1814,"VillageID":181,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":211,"CreatedAt":"2023-02-04T18:33:56Z","ServerKey":"us63"},{"ID":1815,"VillageID":1844,"NewOwnerID":321370,"NewTribeID":69,"OldOwnerID":848954368,"OldTribeID":0,"Points":6977,"CreatedAt":"2023-02-04T18:45:52Z","ServerKey":"us63"},{"ID":1816,"VillageID":1484,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-04T19:04:30Z","ServerKey":"us63"},{"ID":1817,"VillageID":1484,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":848910455,"OldTribeID":4,"Points":222,"CreatedAt":"2023-02-04T19:04:50Z","ServerKey":"us63"},{"ID":1818,"VillageID":5804,"NewOwnerID":848954078,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-04T19:13:28Z","ServerKey":"us63"},{"ID":1819,"VillageID":5221,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-04T19:19:24Z","ServerKey":"us63"},{"ID":1820,"VillageID":3692,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-04T19:25:10Z","ServerKey":"us63"},{"ID":1821,"VillageID":2556,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":848928204,"OldTribeID":88,"Points":967,"CreatedAt":"2023-02-04T19:59:19Z","ServerKey":"us63"},{"ID":1822,"VillageID":2171,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-04T20:02:30Z","ServerKey":"us63"},{"ID":1823,"VillageID":2171,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":237,"CreatedAt":"2023-02-04T20:02:30Z","ServerKey":"us63"},{"ID":1824,"VillageID":3716,"NewOwnerID":848943308,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-04T20:07:59Z","ServerKey":"us63"},{"ID":1825,"VillageID":1639,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-04T20:14:05Z","ServerKey":"us63"},{"ID":1826,"VillageID":4357,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-04T20:42:27Z","ServerKey":"us63"},{"ID":1827,"VillageID":3882,"NewOwnerID":272678,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-04T21:27:05Z","ServerKey":"us63"},{"ID":1828,"VillageID":1740,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848954504,"OldTribeID":2,"Points":3112,"CreatedAt":"2023-02-04T21:43:18Z","ServerKey":"us63"},{"ID":1829,"VillageID":1872,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-04T21:53:17Z","ServerKey":"us63"},{"ID":1830,"VillageID":1772,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848910736,"OldTribeID":35,"Points":632,"CreatedAt":"2023-02-04T21:55:56Z","ServerKey":"us63"},{"ID":1831,"VillageID":199,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":4428,"CreatedAt":"2023-02-04T22:48:53Z","ServerKey":"us63"},{"ID":1832,"VillageID":1252,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-04T23:00:40Z","ServerKey":"us63"},{"ID":1833,"VillageID":1427,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-04T23:16:22Z","ServerKey":"us63"},{"ID":1834,"VillageID":1548,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-04T23:34:01Z","ServerKey":"us63"},{"ID":1835,"VillageID":2738,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-04T23:49:59Z","ServerKey":"us63"},{"ID":1836,"VillageID":4516,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-04T23:52:43Z","ServerKey":"us63"},{"ID":1837,"VillageID":5004,"NewOwnerID":748168,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-04T23:54:18Z","ServerKey":"us63"},{"ID":1838,"VillageID":3923,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-05T00:06:01Z","ServerKey":"us63"},{"ID":1839,"VillageID":1844,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":321370,"OldTribeID":69,"Points":6903,"CreatedAt":"2023-02-05T00:11:15Z","ServerKey":"us63"},{"ID":1840,"VillageID":486,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":264,"CreatedAt":"2023-02-05T00:51:28Z","ServerKey":"us63"},{"ID":1841,"VillageID":364,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-05T00:52:51Z","ServerKey":"us63"},{"ID":1842,"VillageID":1321,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-05T01:03:55Z","ServerKey":"us63"},{"ID":1843,"VillageID":1271,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-05T01:06:25Z","ServerKey":"us63"},{"ID":1844,"VillageID":1735,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":1131,"CreatedAt":"2023-02-05T01:08:00Z","ServerKey":"us63"},{"ID":1845,"VillageID":3156,"NewOwnerID":848942307,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-05T01:09:56Z","ServerKey":"us63"},{"ID":1846,"VillageID":6,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-05T01:14:51Z","ServerKey":"us63"},{"ID":1847,"VillageID":481,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-05T01:26:10Z","ServerKey":"us63"},{"ID":1848,"VillageID":1734,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-05T01:34:20Z","ServerKey":"us63"},{"ID":1849,"VillageID":3878,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-05T01:35:15Z","ServerKey":"us63"},{"ID":1850,"VillageID":824,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-05T01:41:36Z","ServerKey":"us63"},{"ID":1851,"VillageID":4844,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-05T01:48:12Z","ServerKey":"us63"},{"ID":1852,"VillageID":5822,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":35,"Points":1458,"CreatedAt":"2023-02-05T02:00:00Z","ServerKey":"us63"},{"ID":1853,"VillageID":5411,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-05T02:05:10Z","ServerKey":"us63"},{"ID":1854,"VillageID":1064,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-05T02:07:52Z","ServerKey":"us63"},{"ID":1855,"VillageID":2636,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":789838,"OldTribeID":66,"Points":1732,"CreatedAt":"2023-02-05T02:12:02Z","ServerKey":"us63"},{"ID":1856,"VillageID":2132,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-05T02:16:01Z","ServerKey":"us63"},{"ID":1857,"VillageID":1761,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-05T02:35:07Z","ServerKey":"us63"},{"ID":1858,"VillageID":7030,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-05T02:52:39Z","ServerKey":"us63"},{"ID":1859,"VillageID":304,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-05T02:53:43Z","ServerKey":"us63"},{"ID":1860,"VillageID":3995,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-05T02:56:30Z","ServerKey":"us63"},{"ID":1861,"VillageID":4612,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-05T03:07:19Z","ServerKey":"us63"},{"ID":1862,"VillageID":7125,"NewOwnerID":775730,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-02-05T03:14:23Z","ServerKey":"us63"},{"ID":1863,"VillageID":5980,"NewOwnerID":848954655,"NewTribeID":163,"OldOwnerID":848955059,"OldTribeID":0,"Points":479,"CreatedAt":"2023-02-05T03:22:56Z","ServerKey":"us63"},{"ID":1864,"VillageID":173,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":35,"Points":1457,"CreatedAt":"2023-02-05T03:23:00Z","ServerKey":"us63"},{"ID":1865,"VillageID":3031,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":848935728,"OldTribeID":53,"Points":4172,"CreatedAt":"2023-02-05T04:03:01Z","ServerKey":"us63"},{"ID":1866,"VillageID":4311,"NewOwnerID":848954361,"NewTribeID":183,"OldOwnerID":848954465,"OldTribeID":0,"Points":3457,"CreatedAt":"2023-02-05T04:04:21Z","ServerKey":"us63"},{"ID":1867,"VillageID":1443,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":701261,"OldTribeID":25,"Points":1740,"CreatedAt":"2023-02-05T04:20:03Z","ServerKey":"us63"},{"ID":1868,"VillageID":6247,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848950167,"OldTribeID":176,"Points":2037,"CreatedAt":"2023-02-05T04:23:47Z","ServerKey":"us63"},{"ID":1869,"VillageID":4876,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-05T04:33:01Z","ServerKey":"us63"},{"ID":1870,"VillageID":1260,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954190,"OldTribeID":35,"Points":1541,"CreatedAt":"2023-02-05T04:33:56Z","ServerKey":"us63"},{"ID":1871,"VillageID":2602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-05T04:45:38Z","ServerKey":"us63"},{"ID":1872,"VillageID":432,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848954199,"OldTribeID":35,"Points":8118,"CreatedAt":"2023-02-05T04:45:40Z","ServerKey":"us63"},{"ID":1873,"VillageID":3891,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-05T04:46:17Z","ServerKey":"us63"},{"ID":1874,"VillageID":1215,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":667167,"OldTribeID":24,"Points":1340,"CreatedAt":"2023-02-05T04:46:25Z","ServerKey":"us63"},{"ID":1875,"VillageID":1502,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848952005,"OldTribeID":4,"Points":3378,"CreatedAt":"2023-02-05T04:52:39Z","ServerKey":"us63"},{"ID":1876,"VillageID":5828,"NewOwnerID":334822,"NewTribeID":163,"OldOwnerID":848943251,"OldTribeID":0,"Points":539,"CreatedAt":"2023-02-05T05:17:29Z","ServerKey":"us63"},{"ID":1877,"VillageID":1081,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-05T05:27:13Z","ServerKey":"us63"},{"ID":1878,"VillageID":2454,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2062,"CreatedAt":"2023-02-05T05:40:01Z","ServerKey":"us63"},{"ID":1879,"VillageID":1256,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-02-05T06:12:28Z","ServerKey":"us63"},{"ID":1880,"VillageID":7204,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-05T06:22:20Z","ServerKey":"us63"},{"ID":1881,"VillageID":1773,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-05T06:26:43Z","ServerKey":"us63"},{"ID":1882,"VillageID":1085,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-05T06:39:21Z","ServerKey":"us63"},{"ID":1883,"VillageID":2818,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848951415,"OldTribeID":46,"Points":2483,"CreatedAt":"2023-02-05T06:43:56Z","ServerKey":"us63"},{"ID":1884,"VillageID":42,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-05T07:13:45Z","ServerKey":"us63"},{"ID":1885,"VillageID":4135,"NewOwnerID":848954776,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-05T07:24:00Z","ServerKey":"us63"},{"ID":1886,"VillageID":1470,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-05T07:25:34Z","ServerKey":"us63"},{"ID":1887,"VillageID":1168,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":918,"CreatedAt":"2023-02-05T07:32:06Z","ServerKey":"us63"},{"ID":1888,"VillageID":1168,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":918,"CreatedAt":"2023-02-05T07:32:06Z","ServerKey":"us63"},{"ID":1889,"VillageID":502,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-05T07:40:18Z","ServerKey":"us63"},{"ID":1890,"VillageID":2108,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-05T07:46:59Z","ServerKey":"us63"},{"ID":1891,"VillageID":1293,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-05T07:47:58Z","ServerKey":"us63"},{"ID":1892,"VillageID":4384,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":848888672,"OldTribeID":134,"Points":1233,"CreatedAt":"2023-02-05T07:50:53Z","ServerKey":"us63"},{"ID":1893,"VillageID":7033,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-05T07:54:08Z","ServerKey":"us63"},{"ID":1894,"VillageID":1678,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-05T08:01:51Z","ServerKey":"us63"},{"ID":1895,"VillageID":1820,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-05T08:02:23Z","ServerKey":"us63"},{"ID":1896,"VillageID":1230,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-05T08:17:59Z","ServerKey":"us63"},{"ID":1897,"VillageID":1484,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":848910455,"OldTribeID":4,"Points":265,"CreatedAt":"2023-02-05T08:34:54Z","ServerKey":"us63"},{"ID":1898,"VillageID":774,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-05T08:47:51Z","ServerKey":"us63"},{"ID":1899,"VillageID":4244,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-05T09:17:06Z","ServerKey":"us63"},{"ID":1900,"VillageID":980,"NewOwnerID":848949948,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":3360,"CreatedAt":"2023-02-05T09:37:12Z","ServerKey":"us63"},{"ID":1901,"VillageID":332,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":667167,"OldTribeID":24,"Points":5178,"CreatedAt":"2023-02-05T09:38:27Z","ServerKey":"us63"},{"ID":1902,"VillageID":4835,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-02-05T09:56:19Z","ServerKey":"us63"},{"ID":1903,"VillageID":1048,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-05T10:00:24Z","ServerKey":"us63"},{"ID":1904,"VillageID":2476,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848931764,"OldTribeID":35,"Points":3450,"CreatedAt":"2023-02-05T10:30:01Z","ServerKey":"us63"},{"ID":1905,"VillageID":2476,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848940894,"OldTribeID":11,"Points":3450,"CreatedAt":"2023-02-05T10:30:01Z","ServerKey":"us63"},{"ID":1906,"VillageID":7231,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-05T10:46:13Z","ServerKey":"us63"},{"ID":1907,"VillageID":1086,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-05T11:24:06Z","ServerKey":"us63"},{"ID":1908,"VillageID":6479,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-05T11:29:36Z","ServerKey":"us63"},{"ID":1909,"VillageID":6810,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-05T11:34:03Z","ServerKey":"us63"},{"ID":1910,"VillageID":192,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":2051,"CreatedAt":"2023-02-05T11:45:00Z","ServerKey":"us63"},{"ID":1911,"VillageID":2589,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848912046,"OldTribeID":41,"Points":1873,"CreatedAt":"2023-02-05T11:48:42Z","ServerKey":"us63"},{"ID":1912,"VillageID":5439,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-05T12:03:08Z","ServerKey":"us63"},{"ID":1913,"VillageID":2912,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848945000,"OldTribeID":66,"Points":7162,"CreatedAt":"2023-02-05T12:21:11Z","ServerKey":"us63"},{"ID":1914,"VillageID":5995,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-05T12:27:37Z","ServerKey":"us63"},{"ID":1915,"VillageID":4228,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-05T12:29:32Z","ServerKey":"us63"},{"ID":1916,"VillageID":629,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-05T12:31:55Z","ServerKey":"us63"},{"ID":1917,"VillageID":2820,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-05T13:22:29Z","ServerKey":"us63"},{"ID":1918,"VillageID":3031,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848954700,"OldTribeID":32,"Points":4237,"CreatedAt":"2023-02-05T13:44:04Z","ServerKey":"us63"},{"ID":1919,"VillageID":136,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848881936,"OldTribeID":5,"Points":3242,"CreatedAt":"2023-02-05T13:46:29Z","ServerKey":"us63"},{"ID":1920,"VillageID":136,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":503636,"OldTribeID":138,"Points":3242,"CreatedAt":"2023-02-05T13:46:29Z","ServerKey":"us63"},{"ID":1921,"VillageID":565,"NewOwnerID":697760,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-05T13:51:09Z","ServerKey":"us63"},{"ID":1922,"VillageID":84,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-05T13:59:23Z","ServerKey":"us63"},{"ID":1923,"VillageID":1994,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848954190,"OldTribeID":35,"Points":1214,"CreatedAt":"2023-02-05T14:22:42Z","ServerKey":"us63"},{"ID":1924,"VillageID":4013,"NewOwnerID":848881027,"NewTribeID":0,"OldOwnerID":533169,"OldTribeID":53,"Points":1285,"CreatedAt":"2023-02-05T14:41:44Z","ServerKey":"us63"},{"ID":1925,"VillageID":5203,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848954945,"OldTribeID":127,"Points":1075,"CreatedAt":"2023-02-05T14:52:12Z","ServerKey":"us63"},{"ID":1926,"VillageID":2589,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":848954611,"OldTribeID":32,"Points":1902,"CreatedAt":"2023-02-05T15:29:40Z","ServerKey":"us63"},{"ID":1927,"VillageID":2589,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":741494,"OldTribeID":2,"Points":1902,"CreatedAt":"2023-02-05T15:29:40Z","ServerKey":"us63"},{"ID":1929,"VillageID":2589,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":741494,"OldTribeID":2,"Points":1849,"CreatedAt":"2023-02-05T15:29:42Z","ServerKey":"us63"},{"ID":1930,"VillageID":6058,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-05T15:36:44Z","ServerKey":"us63"},{"ID":1931,"VillageID":66,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-02-05T15:42:07Z","ServerKey":"us63"},{"ID":1932,"VillageID":7097,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":751295,"OldTribeID":189,"Points":3199,"CreatedAt":"2023-02-05T15:55:30Z","ServerKey":"us63"},{"ID":1933,"VillageID":2327,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-05T15:58:09Z","ServerKey":"us63"},{"ID":1934,"VillageID":5494,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-05T16:03:01Z","ServerKey":"us63"},{"ID":1935,"VillageID":5992,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":848945639,"OldTribeID":0,"Points":662,"CreatedAt":"2023-02-05T16:10:17Z","ServerKey":"us63"},{"ID":1936,"VillageID":966,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":788057,"OldTribeID":0,"Points":2789,"CreatedAt":"2023-02-05T16:33:10Z","ServerKey":"us63"},{"ID":1937,"VillageID":7930,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":38,"CreatedAt":"2023-02-05T16:42:20Z","ServerKey":"us63"},{"ID":1938,"VillageID":1068,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":198,"Points":2118,"CreatedAt":"2023-02-05T16:48:10Z","ServerKey":"us63"},{"ID":1939,"VillageID":370,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-05T16:52:38Z","ServerKey":"us63"},{"ID":1940,"VillageID":1847,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":727,"CreatedAt":"2023-02-05T16:57:29Z","ServerKey":"us63"},{"ID":1941,"VillageID":3119,"NewOwnerID":848951653,"NewTribeID":65,"OldOwnerID":848943139,"OldTribeID":0,"Points":1010,"CreatedAt":"2023-02-05T17:34:00Z","ServerKey":"us63"},{"ID":1942,"VillageID":5565,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-05T17:37:14Z","ServerKey":"us63"},{"ID":1943,"VillageID":644,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-05T17:48:18Z","ServerKey":"us63"},{"ID":1944,"VillageID":1883,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":2300,"CreatedAt":"2023-02-05T18:04:27Z","ServerKey":"us63"},{"ID":1945,"VillageID":4850,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-05T18:05:40Z","ServerKey":"us63"},{"ID":1946,"VillageID":5146,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848924974,"OldTribeID":4,"Points":3812,"CreatedAt":"2023-02-05T18:13:20Z","ServerKey":"us63"},{"ID":1947,"VillageID":5146,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":750685,"OldTribeID":76,"Points":3532,"CreatedAt":"2023-02-05T18:13:21Z","ServerKey":"us63"},{"ID":1948,"VillageID":2335,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":550,"CreatedAt":"2023-02-05T18:26:29Z","ServerKey":"us63"},{"ID":1949,"VillageID":682,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":848953285,"OldTribeID":0,"Points":1889,"CreatedAt":"2023-02-05T18:41:34Z","ServerKey":"us63"},{"ID":1950,"VillageID":5342,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":682,"CreatedAt":"2023-02-05T19:04:04Z","ServerKey":"us63"},{"ID":1951,"VillageID":415,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-05T19:36:15Z","ServerKey":"us63"},{"ID":1952,"VillageID":6258,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-05T19:37:22Z","ServerKey":"us63"},{"ID":1953,"VillageID":1233,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-05T19:39:19Z","ServerKey":"us63"},{"ID":1954,"VillageID":7760,"NewOwnerID":455512,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-02-05T19:40:33Z","ServerKey":"us63"},{"ID":1955,"VillageID":1284,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-05T19:47:09Z","ServerKey":"us63"},{"ID":1956,"VillageID":221,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-05T19:59:40Z","ServerKey":"us63"},{"ID":1957,"VillageID":816,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-05T20:02:18Z","ServerKey":"us63"},{"ID":1958,"VillageID":3523,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-05T20:05:14Z","ServerKey":"us63"},{"ID":1959,"VillageID":332,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936926,"OldTribeID":0,"Points":5188,"CreatedAt":"2023-02-05T20:05:59Z","ServerKey":"us63"},{"ID":1960,"VillageID":5234,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-05T20:15:06Z","ServerKey":"us63"},{"ID":1961,"VillageID":1411,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":567,"CreatedAt":"2023-02-05T20:35:32Z","ServerKey":"us63"},{"ID":1962,"VillageID":704,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-05T21:13:57Z","ServerKey":"us63"},{"ID":1963,"VillageID":4713,"NewOwnerID":848949067,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-05T21:47:35Z","ServerKey":"us63"},{"ID":1964,"VillageID":1850,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-05T21:48:00Z","ServerKey":"us63"},{"ID":1965,"VillageID":7075,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-05T21:53:17Z","ServerKey":"us63"},{"ID":1966,"VillageID":2162,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-05T21:59:46Z","ServerKey":"us63"},{"ID":1967,"VillageID":3920,"NewOwnerID":848954812,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-05T22:05:37Z","ServerKey":"us63"},{"ID":1968,"VillageID":1458,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-05T22:38:00Z","ServerKey":"us63"},{"ID":1969,"VillageID":4419,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-05T22:47:19Z","ServerKey":"us63"},{"ID":1970,"VillageID":1770,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1074,"CreatedAt":"2023-02-05T22:52:51Z","ServerKey":"us63"},{"ID":1971,"VillageID":3008,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-05T22:57:11Z","ServerKey":"us63"},{"ID":1972,"VillageID":1263,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-05T22:58:49Z","ServerKey":"us63"},{"ID":1973,"VillageID":2364,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-05T23:14:56Z","ServerKey":"us63"},{"ID":1974,"VillageID":2312,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":508,"CreatedAt":"2023-02-05T23:18:48Z","ServerKey":"us63"},{"ID":1975,"VillageID":1637,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-05T23:43:06Z","ServerKey":"us63"},{"ID":1976,"VillageID":1525,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-05T23:43:30Z","ServerKey":"us63"},{"ID":1977,"VillageID":5556,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-05T23:48:08Z","ServerKey":"us63"},{"ID":1978,"VillageID":8083,"NewOwnerID":848954608,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-06T00:03:59Z","ServerKey":"us63"},{"ID":1979,"VillageID":7351,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-06T00:12:46Z","ServerKey":"us63"},{"ID":1980,"VillageID":1379,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-06T00:16:10Z","ServerKey":"us63"},{"ID":1981,"VillageID":6249,"NewOwnerID":226713,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-06T00:16:57Z","ServerKey":"us63"},{"ID":1982,"VillageID":2537,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-06T00:46:52Z","ServerKey":"us63"},{"ID":1983,"VillageID":1057,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":297,"CreatedAt":"2023-02-06T00:57:51Z","ServerKey":"us63"},{"ID":1984,"VillageID":771,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-06T01:00:15Z","ServerKey":"us63"},{"ID":1985,"VillageID":3496,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-06T01:03:11Z","ServerKey":"us63"},{"ID":1986,"VillageID":3222,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":848954648,"OldTribeID":130,"Points":1520,"CreatedAt":"2023-02-06T01:20:02Z","ServerKey":"us63"},{"ID":1987,"VillageID":4680,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-06T01:22:45Z","ServerKey":"us63"},{"ID":1988,"VillageID":2179,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-06T01:33:33Z","ServerKey":"us63"},{"ID":1989,"VillageID":4029,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-06T01:44:32Z","ServerKey":"us63"},{"ID":1990,"VillageID":422,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":733,"CreatedAt":"2023-02-06T01:51:37Z","ServerKey":"us63"},{"ID":1991,"VillageID":7994,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-06T02:16:44Z","ServerKey":"us63"},{"ID":1992,"VillageID":1311,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-06T02:28:12Z","ServerKey":"us63"},{"ID":1993,"VillageID":4340,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-06T03:15:36Z","ServerKey":"us63"},{"ID":1994,"VillageID":749,"NewOwnerID":848949948,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-06T03:25:02Z","ServerKey":"us63"},{"ID":1995,"VillageID":622,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-06T03:27:15Z","ServerKey":"us63"},{"ID":1996,"VillageID":1429,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-06T03:31:03Z","ServerKey":"us63"},{"ID":1997,"VillageID":285,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-06T03:34:07Z","ServerKey":"us63"},{"ID":1998,"VillageID":1480,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-06T03:50:31Z","ServerKey":"us63"},{"ID":1999,"VillageID":1403,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-06T04:31:51Z","ServerKey":"us63"},{"ID":2000,"VillageID":3461,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-06T04:35:50Z","ServerKey":"us63"},{"ID":2001,"VillageID":4403,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":6167,"CreatedAt":"2023-02-06T04:51:24Z","ServerKey":"us63"},{"ID":2002,"VillageID":901,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":767831,"OldTribeID":0,"Points":2002,"CreatedAt":"2023-02-06T04:56:25Z","ServerKey":"us63"},{"ID":2003,"VillageID":1020,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-06T05:07:42Z","ServerKey":"us63"},{"ID":2004,"VillageID":2343,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-06T05:18:46Z","ServerKey":"us63"},{"ID":2005,"VillageID":5712,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-06T05:19:00Z","ServerKey":"us63"},{"ID":2006,"VillageID":2914,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-06T05:27:46Z","ServerKey":"us63"},{"ID":2007,"VillageID":448,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954218,"OldTribeID":35,"Points":7376,"CreatedAt":"2023-02-06T05:32:39Z","ServerKey":"us63"},{"ID":2008,"VillageID":953,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":1227,"CreatedAt":"2023-02-06T05:37:05Z","ServerKey":"us63"},{"ID":2009,"VillageID":4499,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":848924572,"OldTribeID":152,"Points":3301,"CreatedAt":"2023-02-06T05:56:58Z","ServerKey":"us63"},{"ID":2010,"VillageID":1336,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":368,"CreatedAt":"2023-02-06T06:04:01Z","ServerKey":"us63"},{"ID":2011,"VillageID":4044,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-06T06:12:27Z","ServerKey":"us63"},{"ID":2012,"VillageID":1578,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-06T06:55:46Z","ServerKey":"us63"},{"ID":2013,"VillageID":4690,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-06T07:03:52Z","ServerKey":"us63"},{"ID":2014,"VillageID":2411,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-06T07:14:45Z","ServerKey":"us63"},{"ID":2015,"VillageID":337,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-06T07:23:05Z","ServerKey":"us63"},{"ID":2016,"VillageID":4403,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":572558,"OldTribeID":48,"Points":6143,"CreatedAt":"2023-02-06T07:38:58Z","ServerKey":"us63"},{"ID":2017,"VillageID":1940,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848954170,"OldTribeID":35,"Points":1338,"CreatedAt":"2023-02-06T07:46:00Z","ServerKey":"us63"},{"ID":2018,"VillageID":3135,"NewOwnerID":848941569,"NewTribeID":91,"OldOwnerID":848943213,"OldTribeID":0,"Points":1006,"CreatedAt":"2023-02-06T07:57:54Z","ServerKey":"us63"},{"ID":2019,"VillageID":3211,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-06T08:24:32Z","ServerKey":"us63"},{"ID":2020,"VillageID":459,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-06T08:30:01Z","ServerKey":"us63"},{"ID":2021,"VillageID":2436,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-06T08:32:53Z","ServerKey":"us63"},{"ID":2022,"VillageID":2477,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-06T08:53:01Z","ServerKey":"us63"},{"ID":2023,"VillageID":2980,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-06T09:03:57Z","ServerKey":"us63"},{"ID":2024,"VillageID":540,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-06T09:04:06Z","ServerKey":"us63"},{"ID":2025,"VillageID":151,"NewOwnerID":848951914,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-06T09:18:37Z","ServerKey":"us63"},{"ID":2026,"VillageID":4307,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-06T09:29:02Z","ServerKey":"us63"},{"ID":2027,"VillageID":2607,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":848954360,"OldTribeID":25,"Points":982,"CreatedAt":"2023-02-06T09:36:56Z","ServerKey":"us63"},{"ID":2028,"VillageID":5172,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-06T09:45:09Z","ServerKey":"us63"},{"ID":2029,"VillageID":4141,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-06T09:58:36Z","ServerKey":"us63"},{"ID":2030,"VillageID":654,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-06T10:01:08Z","ServerKey":"us63"},{"ID":2031,"VillageID":3951,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":742729,"OldTribeID":0,"Points":1754,"CreatedAt":"2023-02-06T10:05:35Z","ServerKey":"us63"},{"ID":2032,"VillageID":3951,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":848954637,"OldTribeID":11,"Points":1730,"CreatedAt":"2023-02-06T10:05:39Z","ServerKey":"us63"},{"ID":2033,"VillageID":2755,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848950265,"OldTribeID":46,"Points":2387,"CreatedAt":"2023-02-06T10:15:03Z","ServerKey":"us63"},{"ID":2034,"VillageID":2547,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2242,"CreatedAt":"2023-02-06T10:22:07Z","ServerKey":"us63"},{"ID":2035,"VillageID":132,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":795044,"OldTribeID":69,"Points":5785,"CreatedAt":"2023-02-06T10:24:26Z","ServerKey":"us63"},{"ID":2036,"VillageID":3283,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-06T10:27:35Z","ServerKey":"us63"},{"ID":2037,"VillageID":11,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-06T10:37:35Z","ServerKey":"us63"},{"ID":2038,"VillageID":6635,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-06T10:41:33Z","ServerKey":"us63"},{"ID":2039,"VillageID":4798,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-06T10:44:09Z","ServerKey":"us63"},{"ID":2040,"VillageID":6259,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":589825,"OldTribeID":182,"Points":6540,"CreatedAt":"2023-02-06T10:51:57Z","ServerKey":"us63"},{"ID":2041,"VillageID":6259,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":775729,"OldTribeID":105,"Points":6540,"CreatedAt":"2023-02-06T10:51:57Z","ServerKey":"us63"},{"ID":2042,"VillageID":1528,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-06T10:57:22Z","ServerKey":"us63"},{"ID":2043,"VillageID":2584,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":575,"CreatedAt":"2023-02-06T11:01:21Z","ServerKey":"us63"},{"ID":2044,"VillageID":4206,"NewOwnerID":848954776,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-02-06T11:02:36Z","ServerKey":"us63"},{"ID":2045,"VillageID":1700,"NewOwnerID":848937811,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-06T11:05:09Z","ServerKey":"us63"},{"ID":2046,"VillageID":1835,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":848954360,"OldTribeID":25,"Points":2869,"CreatedAt":"2023-02-06T11:28:37Z","ServerKey":"us63"},{"ID":2047,"VillageID":4868,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":848924572,"OldTribeID":152,"Points":1737,"CreatedAt":"2023-02-06T11:31:29Z","ServerKey":"us63"},{"ID":2048,"VillageID":557,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":4544,"CreatedAt":"2023-02-06T11:54:29Z","ServerKey":"us63"},{"ID":2049,"VillageID":6377,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":392186,"OldTribeID":188,"Points":1776,"CreatedAt":"2023-02-06T12:20:43Z","ServerKey":"us63"},{"ID":2050,"VillageID":249,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":383,"CreatedAt":"2023-02-06T12:37:16Z","ServerKey":"us63"},{"ID":2051,"VillageID":4086,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-06T13:04:45Z","ServerKey":"us63"},{"ID":2052,"VillageID":1157,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-06T13:39:11Z","ServerKey":"us63"},{"ID":2053,"VillageID":344,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":7374,"CreatedAt":"2023-02-06T13:42:49Z","ServerKey":"us63"},{"ID":2054,"VillageID":7660,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-02-06T13:44:18Z","ServerKey":"us63"},{"ID":2055,"VillageID":1564,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848952757,"OldTribeID":42,"Points":2720,"CreatedAt":"2023-02-06T13:58:58Z","ServerKey":"us63"},{"ID":2056,"VillageID":1134,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848941179,"OldTribeID":35,"Points":8153,"CreatedAt":"2023-02-06T14:22:48Z","ServerKey":"us63"},{"ID":2057,"VillageID":1795,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848941179,"OldTribeID":35,"Points":3950,"CreatedAt":"2023-02-06T14:22:48Z","ServerKey":"us63"},{"ID":2058,"VillageID":4173,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":848954779,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-06T14:35:51Z","ServerKey":"us63"},{"ID":2059,"VillageID":116,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-06T14:45:40Z","ServerKey":"us63"},{"ID":2060,"VillageID":1,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848950001,"OldTribeID":22,"Points":8491,"CreatedAt":"2023-02-06T15:11:00Z","ServerKey":"us63"},{"ID":2061,"VillageID":4317,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-06T15:28:24Z","ServerKey":"us63"},{"ID":2062,"VillageID":2140,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":744969,"OldTribeID":25,"Points":2731,"CreatedAt":"2023-02-06T15:35:07Z","ServerKey":"us63"},{"ID":2063,"VillageID":3488,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-06T15:36:31Z","ServerKey":"us63"},{"ID":2064,"VillageID":2217,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2708,"CreatedAt":"2023-02-06T15:53:44Z","ServerKey":"us63"},{"ID":2065,"VillageID":1683,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1040,"CreatedAt":"2023-02-06T16:18:08Z","ServerKey":"us63"},{"ID":2066,"VillageID":5870,"NewOwnerID":848955133,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-06T16:19:15Z","ServerKey":"us63"},{"ID":2067,"VillageID":190,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-06T16:37:43Z","ServerKey":"us63"},{"ID":2068,"VillageID":7774,"NewOwnerID":455512,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-06T16:57:50Z","ServerKey":"us63"},{"ID":2069,"VillageID":4722,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-06T17:15:34Z","ServerKey":"us63"},{"ID":2070,"VillageID":2957,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-06T17:25:10Z","ServerKey":"us63"},{"ID":2071,"VillageID":317,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848943308,"OldTribeID":22,"Points":6717,"CreatedAt":"2023-02-06T17:30:28Z","ServerKey":"us63"},{"ID":2072,"VillageID":660,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-06T17:32:29Z","ServerKey":"us63"},{"ID":2073,"VillageID":1402,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":613,"CreatedAt":"2023-02-06T17:51:32Z","ServerKey":"us63"},{"ID":2074,"VillageID":1534,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-06T18:20:41Z","ServerKey":"us63"},{"ID":2075,"VillageID":1060,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-06T18:27:23Z","ServerKey":"us63"},{"ID":2076,"VillageID":4960,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-06T18:39:00Z","ServerKey":"us63"},{"ID":2077,"VillageID":463,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-06T18:50:13Z","ServerKey":"us63"},{"ID":2078,"VillageID":2654,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":9065,"CreatedAt":"2023-02-06T18:55:40Z","ServerKey":"us63"},{"ID":2079,"VillageID":2654,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":9065,"CreatedAt":"2023-02-06T18:56:30Z","ServerKey":"us63"},{"ID":2080,"VillageID":1683,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848909148,"OldTribeID":20,"Points":1016,"CreatedAt":"2023-02-06T19:06:04Z","ServerKey":"us63"},{"ID":2081,"VillageID":2700,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-06T19:07:35Z","ServerKey":"us63"},{"ID":2082,"VillageID":4897,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-06T19:11:33Z","ServerKey":"us63"},{"ID":2083,"VillageID":798,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-06T19:19:14Z","ServerKey":"us63"},{"ID":2084,"VillageID":2175,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-06T19:35:44Z","ServerKey":"us63"},{"ID":2085,"VillageID":410,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-06T19:42:47Z","ServerKey":"us63"},{"ID":2086,"VillageID":2347,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-06T19:58:14Z","ServerKey":"us63"},{"ID":2087,"VillageID":1431,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-06T20:10:08Z","ServerKey":"us63"},{"ID":2088,"VillageID":1683,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848883123,"OldTribeID":12,"Points":1036,"CreatedAt":"2023-02-06T20:14:10Z","ServerKey":"us63"},{"ID":2089,"VillageID":1683,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":1036,"CreatedAt":"2023-02-06T20:14:10Z","ServerKey":"us63"},{"ID":2091,"VillageID":2695,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":291491,"OldTribeID":65,"Points":3213,"CreatedAt":"2023-02-06T20:32:08Z","ServerKey":"us63"},{"ID":2092,"VillageID":4310,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-06T20:41:20Z","ServerKey":"us63"},{"ID":2093,"VillageID":69,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-06T20:51:39Z","ServerKey":"us63"},{"ID":2094,"VillageID":1769,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-06T21:13:12Z","ServerKey":"us63"},{"ID":2095,"VillageID":6114,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-06T21:13:54Z","ServerKey":"us63"},{"ID":2096,"VillageID":4602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-06T21:15:24Z","ServerKey":"us63"},{"ID":2097,"VillageID":4602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":173,"CreatedAt":"2023-02-06T21:15:24Z","ServerKey":"us63"},{"ID":2099,"VillageID":318,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-06T21:51:53Z","ServerKey":"us63"},{"ID":2100,"VillageID":1674,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":3770,"CreatedAt":"2023-02-06T22:04:50Z","ServerKey":"us63"},{"ID":2101,"VillageID":4386,"NewOwnerID":848913418,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-06T22:13:04Z","ServerKey":"us63"},{"ID":2102,"VillageID":174,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-06T22:19:12Z","ServerKey":"us63"},{"ID":2103,"VillageID":4582,"NewOwnerID":848954768,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-06T22:28:18Z","ServerKey":"us63"},{"ID":2104,"VillageID":4379,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-06T22:41:58Z","ServerKey":"us63"},{"ID":2105,"VillageID":1909,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-06T22:55:58Z","ServerKey":"us63"},{"ID":2106,"VillageID":4988,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-06T23:20:57Z","ServerKey":"us63"},{"ID":2107,"VillageID":590,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":848951434,"OldTribeID":25,"Points":3058,"CreatedAt":"2023-02-06T23:24:53Z","ServerKey":"us63"},{"ID":2108,"VillageID":590,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":744645,"OldTribeID":85,"Points":3058,"CreatedAt":"2023-02-06T23:24:53Z","ServerKey":"us63"},{"ID":2109,"VillageID":2548,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-06T23:29:04Z","ServerKey":"us63"},{"ID":2110,"VillageID":1717,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-06T23:35:51Z","ServerKey":"us63"},{"ID":2111,"VillageID":7733,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-07T00:05:13Z","ServerKey":"us63"},{"ID":2112,"VillageID":52,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-07T00:19:22Z","ServerKey":"us63"},{"ID":2113,"VillageID":7739,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-07T00:25:50Z","ServerKey":"us63"},{"ID":2114,"VillageID":6450,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-07T00:36:27Z","ServerKey":"us63"},{"ID":2115,"VillageID":2213,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":744969,"OldTribeID":25,"Points":1140,"CreatedAt":"2023-02-07T00:43:45Z","ServerKey":"us63"},{"ID":2116,"VillageID":1712,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-07T00:49:35Z","ServerKey":"us63"},{"ID":2117,"VillageID":1236,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-07T01:03:51Z","ServerKey":"us63"},{"ID":2118,"VillageID":1532,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-07T01:15:56Z","ServerKey":"us63"},{"ID":2119,"VillageID":1317,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-07T01:18:14Z","ServerKey":"us63"},{"ID":2120,"VillageID":3614,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-07T01:36:58Z","ServerKey":"us63"},{"ID":2121,"VillageID":545,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T01:45:22Z","ServerKey":"us63"},{"ID":2122,"VillageID":7015,"NewOwnerID":334822,"NewTribeID":163,"OldOwnerID":231006,"OldTribeID":0,"Points":884,"CreatedAt":"2023-02-07T01:46:03Z","ServerKey":"us63"},{"ID":2123,"VillageID":2031,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-07T01:49:49Z","ServerKey":"us63"},{"ID":2124,"VillageID":6616,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-07T01:52:52Z","ServerKey":"us63"},{"ID":2125,"VillageID":2800,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-07T02:11:09Z","ServerKey":"us63"},{"ID":2126,"VillageID":189,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952032,"OldTribeID":25,"Points":1518,"CreatedAt":"2023-02-07T02:14:32Z","ServerKey":"us63"},{"ID":2127,"VillageID":734,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-07T02:14:41Z","ServerKey":"us63"},{"ID":2128,"VillageID":4602,"NewOwnerID":848952678,"NewTribeID":61,"OldOwnerID":848953068,"OldTribeID":85,"Points":287,"CreatedAt":"2023-02-07T02:17:59Z","ServerKey":"us63"},{"ID":2129,"VillageID":298,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-07T02:26:08Z","ServerKey":"us63"},{"ID":2130,"VillageID":7776,"NewOwnerID":848954668,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-07T02:38:31Z","ServerKey":"us63"},{"ID":2131,"VillageID":5033,"NewOwnerID":848940295,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-07T02:39:27Z","ServerKey":"us63"},{"ID":2132,"VillageID":1569,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-07T02:45:03Z","ServerKey":"us63"},{"ID":2133,"VillageID":1076,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-07T03:08:43Z","ServerKey":"us63"},{"ID":2134,"VillageID":1344,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-07T03:12:06Z","ServerKey":"us63"},{"ID":2135,"VillageID":150,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-07T03:32:15Z","ServerKey":"us63"},{"ID":2136,"VillageID":4847,"NewOwnerID":848881027,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-07T04:02:33Z","ServerKey":"us63"},{"ID":2137,"VillageID":675,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-07T04:02:54Z","ServerKey":"us63"},{"ID":2138,"VillageID":5074,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-07T04:23:25Z","ServerKey":"us63"},{"ID":2139,"VillageID":1622,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-07T04:37:21Z","ServerKey":"us63"},{"ID":2140,"VillageID":8064,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-07T04:37:48Z","ServerKey":"us63"},{"ID":2141,"VillageID":3391,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-07T04:45:00Z","ServerKey":"us63"},{"ID":2142,"VillageID":3391,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848954640,"OldTribeID":2,"Points":308,"CreatedAt":"2023-02-07T04:45:00Z","ServerKey":"us63"},{"ID":2143,"VillageID":3391,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848954640,"OldTribeID":2,"Points":308,"CreatedAt":"2023-02-07T04:45:02Z","ServerKey":"us63"},{"ID":2144,"VillageID":4946,"NewOwnerID":848938594,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-07T05:00:07Z","ServerKey":"us63"},{"ID":2145,"VillageID":2575,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":744969,"OldTribeID":25,"Points":7534,"CreatedAt":"2023-02-07T05:10:03Z","ServerKey":"us63"},{"ID":2146,"VillageID":1087,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":848910736,"OldTribeID":198,"Points":3082,"CreatedAt":"2023-02-07T05:25:40Z","ServerKey":"us63"},{"ID":2147,"VillageID":2525,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848954466,"OldTribeID":83,"Points":4754,"CreatedAt":"2023-02-07T05:39:31Z","ServerKey":"us63"},{"ID":2148,"VillageID":4510,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-07T05:56:51Z","ServerKey":"us63"},{"ID":2149,"VillageID":5602,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":848947928,"OldTribeID":14,"Points":1152,"CreatedAt":"2023-02-07T06:17:19Z","ServerKey":"us63"},{"ID":2150,"VillageID":5755,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-07T06:21:41Z","ServerKey":"us63"},{"ID":2151,"VillageID":1255,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-07T06:34:41Z","ServerKey":"us63"},{"ID":2152,"VillageID":4314,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-07T06:51:55Z","ServerKey":"us63"},{"ID":2153,"VillageID":775,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-07T06:54:33Z","ServerKey":"us63"},{"ID":2154,"VillageID":673,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-07T07:22:38Z","ServerKey":"us63"},{"ID":2155,"VillageID":231,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-07T07:26:06Z","ServerKey":"us63"},{"ID":2156,"VillageID":8018,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":35,"CreatedAt":"2023-02-07T07:36:04Z","ServerKey":"us63"},{"ID":2157,"VillageID":1094,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-07T07:46:30Z","ServerKey":"us63"},{"ID":2158,"VillageID":6916,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-07T08:04:37Z","ServerKey":"us63"},{"ID":2159,"VillageID":1677,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":687,"CreatedAt":"2023-02-07T08:08:30Z","ServerKey":"us63"},{"ID":2160,"VillageID":440,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-07T08:10:29Z","ServerKey":"us63"},{"ID":2161,"VillageID":6151,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-07T08:14:02Z","ServerKey":"us63"},{"ID":2162,"VillageID":381,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-07T08:25:43Z","ServerKey":"us63"},{"ID":2163,"VillageID":3860,"NewOwnerID":848913418,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-07T08:33:54Z","ServerKey":"us63"},{"ID":2164,"VillageID":244,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T08:35:47Z","ServerKey":"us63"},{"ID":2165,"VillageID":7087,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-07T08:43:19Z","ServerKey":"us63"},{"ID":2166,"VillageID":1621,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848954170,"OldTribeID":35,"Points":1643,"CreatedAt":"2023-02-07T08:44:20Z","ServerKey":"us63"},{"ID":2167,"VillageID":397,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-07T09:21:48Z","ServerKey":"us63"},{"ID":2168,"VillageID":1999,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-07T09:46:21Z","ServerKey":"us63"},{"ID":2169,"VillageID":2729,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-07T10:23:22Z","ServerKey":"us63"},{"ID":2170,"VillageID":500,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848941179,"OldTribeID":35,"Points":4824,"CreatedAt":"2023-02-07T10:33:55Z","ServerKey":"us63"},{"ID":2171,"VillageID":4102,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-07T10:50:59Z","ServerKey":"us63"},{"ID":2172,"VillageID":5954,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-07T11:10:54Z","ServerKey":"us63"},{"ID":2173,"VillageID":893,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-07T11:17:16Z","ServerKey":"us63"},{"ID":2174,"VillageID":99,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-07T11:18:48Z","ServerKey":"us63"},{"ID":2175,"VillageID":1138,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-07T11:29:29Z","ServerKey":"us63"},{"ID":2176,"VillageID":8181,"NewOwnerID":848945828,"NewTribeID":105,"OldOwnerID":848953097,"OldTribeID":137,"Points":464,"CreatedAt":"2023-02-07T11:31:29Z","ServerKey":"us63"},{"ID":2177,"VillageID":873,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-07T11:42:05Z","ServerKey":"us63"},{"ID":2178,"VillageID":873,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":792025,"OldTribeID":48,"Points":272,"CreatedAt":"2023-02-07T11:42:05Z","ServerKey":"us63"},{"ID":2179,"VillageID":4330,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-07T11:44:44Z","ServerKey":"us63"},{"ID":2180,"VillageID":3002,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-07T11:52:09Z","ServerKey":"us63"},{"ID":2181,"VillageID":1657,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-07T12:14:05Z","ServerKey":"us63"},{"ID":2182,"VillageID":354,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-07T12:26:36Z","ServerKey":"us63"},{"ID":2183,"VillageID":1004,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":795044,"OldTribeID":69,"Points":2113,"CreatedAt":"2023-02-07T12:34:18Z","ServerKey":"us63"},{"ID":2184,"VillageID":1939,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-07T12:46:15Z","ServerKey":"us63"},{"ID":2185,"VillageID":3932,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-07T13:07:45Z","ServerKey":"us63"},{"ID":2186,"VillageID":4791,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-07T13:13:31Z","ServerKey":"us63"},{"ID":2187,"VillageID":3604,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T13:14:50Z","ServerKey":"us63"},{"ID":2188,"VillageID":4154,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":6995,"CreatedAt":"2023-02-07T13:30:01Z","ServerKey":"us63"},{"ID":2189,"VillageID":2261,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":299,"CreatedAt":"2023-02-07T13:33:02Z","ServerKey":"us63"},{"ID":2190,"VillageID":2388,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-07T13:36:32Z","ServerKey":"us63"},{"ID":2191,"VillageID":1141,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-07T13:43:31Z","ServerKey":"us63"},{"ID":2192,"VillageID":4051,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":4219,"CreatedAt":"2023-02-07T13:52:23Z","ServerKey":"us63"},{"ID":2193,"VillageID":3892,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":4418,"CreatedAt":"2023-02-07T13:53:29Z","ServerKey":"us63"},{"ID":2194,"VillageID":2732,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-07T13:54:45Z","ServerKey":"us63"},{"ID":2195,"VillageID":4139,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-07T13:56:27Z","ServerKey":"us63"},{"ID":2196,"VillageID":475,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-07T14:00:50Z","ServerKey":"us63"},{"ID":2197,"VillageID":6243,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-07T14:08:40Z","ServerKey":"us63"},{"ID":2198,"VillageID":2618,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-07T14:12:14Z","ServerKey":"us63"},{"ID":2199,"VillageID":3976,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":9432,"CreatedAt":"2023-02-07T14:23:36Z","ServerKey":"us63"},{"ID":2200,"VillageID":96,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-07T14:34:45Z","ServerKey":"us63"},{"ID":2201,"VillageID":4710,"NewOwnerID":848954812,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-07T14:36:01Z","ServerKey":"us63"},{"ID":2202,"VillageID":1793,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":4523,"CreatedAt":"2023-02-07T14:46:13Z","ServerKey":"us63"},{"ID":2203,"VillageID":3689,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-07T15:44:08Z","ServerKey":"us63"},{"ID":2204,"VillageID":2611,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-07T15:57:07Z","ServerKey":"us63"},{"ID":2205,"VillageID":5071,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-07T16:06:56Z","ServerKey":"us63"},{"ID":2206,"VillageID":100,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-07T16:20:48Z","ServerKey":"us63"},{"ID":2207,"VillageID":3876,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":4126,"CreatedAt":"2023-02-07T16:21:16Z","ServerKey":"us63"},{"ID":2208,"VillageID":339,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-07T16:27:14Z","ServerKey":"us63"},{"ID":2209,"VillageID":539,"NewOwnerID":848937811,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-07T16:41:37Z","ServerKey":"us63"},{"ID":2210,"VillageID":1619,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-07T16:58:02Z","ServerKey":"us63"},{"ID":2211,"VillageID":1060,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":114434,"OldTribeID":61,"Points":300,"CreatedAt":"2023-02-07T17:04:50Z","ServerKey":"us63"},{"ID":2212,"VillageID":5761,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-07T17:18:55Z","ServerKey":"us63"},{"ID":2213,"VillageID":95,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-07T17:20:15Z","ServerKey":"us63"},{"ID":2214,"VillageID":5821,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-07T17:21:47Z","ServerKey":"us63"},{"ID":2215,"VillageID":2948,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-07T17:22:17Z","ServerKey":"us63"},{"ID":2216,"VillageID":555,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-07T17:38:23Z","ServerKey":"us63"},{"ID":2217,"VillageID":4613,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":407332,"OldTribeID":64,"Points":3312,"CreatedAt":"2023-02-07T17:52:35Z","ServerKey":"us63"},{"ID":2218,"VillageID":948,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-07T17:55:50Z","ServerKey":"us63"},{"ID":2219,"VillageID":3313,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":989,"CreatedAt":"2023-02-07T18:00:42Z","ServerKey":"us63"},{"ID":2220,"VillageID":8338,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-07T18:01:23Z","ServerKey":"us63"},{"ID":2221,"VillageID":631,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-07T18:18:27Z","ServerKey":"us63"},{"ID":2222,"VillageID":6817,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-07T18:24:52Z","ServerKey":"us63"},{"ID":2223,"VillageID":2492,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":456,"CreatedAt":"2023-02-07T18:33:10Z","ServerKey":"us63"},{"ID":2224,"VillageID":110,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-07T18:50:35Z","ServerKey":"us63"},{"ID":2225,"VillageID":4142,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-07T18:52:38Z","ServerKey":"us63"},{"ID":2226,"VillageID":1342,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-07T19:00:50Z","ServerKey":"us63"},{"ID":2227,"VillageID":1845,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-07T19:06:28Z","ServerKey":"us63"},{"ID":2228,"VillageID":1606,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-07T19:35:49Z","ServerKey":"us63"},{"ID":2229,"VillageID":4005,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":2638,"CreatedAt":"2023-02-07T19:44:50Z","ServerKey":"us63"},{"ID":2230,"VillageID":1867,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-07T19:49:08Z","ServerKey":"us63"},{"ID":2231,"VillageID":81,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":484,"CreatedAt":"2023-02-07T20:00:04Z","ServerKey":"us63"},{"ID":2232,"VillageID":4441,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-07T20:03:43Z","ServerKey":"us63"},{"ID":2233,"VillageID":697,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-07T20:17:40Z","ServerKey":"us63"},{"ID":2234,"VillageID":7981,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-07T20:25:32Z","ServerKey":"us63"},{"ID":2235,"VillageID":3546,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":848954695,"OldTribeID":0,"Points":802,"CreatedAt":"2023-02-07T20:47:22Z","ServerKey":"us63"},{"ID":2236,"VillageID":3286,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-07T20:48:10Z","ServerKey":"us63"},{"ID":2237,"VillageID":2724,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":485,"CreatedAt":"2023-02-07T20:53:03Z","ServerKey":"us63"},{"ID":2238,"VillageID":3125,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":795044,"OldTribeID":69,"Points":2117,"CreatedAt":"2023-02-07T21:03:13Z","ServerKey":"us63"},{"ID":2239,"VillageID":4089,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":2790,"CreatedAt":"2023-02-07T21:08:22Z","ServerKey":"us63"},{"ID":2240,"VillageID":2,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-07T21:09:08Z","ServerKey":"us63"},{"ID":2241,"VillageID":1043,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848941179,"OldTribeID":35,"Points":950,"CreatedAt":"2023-02-07T21:19:02Z","ServerKey":"us63"},{"ID":2242,"VillageID":324,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-07T21:19:59Z","ServerKey":"us63"},{"ID":2243,"VillageID":7890,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-02-07T21:29:25Z","ServerKey":"us63"},{"ID":2244,"VillageID":5651,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848954669,"OldTribeID":173,"Points":5648,"CreatedAt":"2023-02-07T21:37:33Z","ServerKey":"us63"},{"ID":2245,"VillageID":2515,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":348,"CreatedAt":"2023-02-07T21:45:52Z","ServerKey":"us63"},{"ID":2246,"VillageID":3992,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-07T21:46:27Z","ServerKey":"us63"},{"ID":2247,"VillageID":4759,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-07T21:48:43Z","ServerKey":"us63"},{"ID":2248,"VillageID":5894,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-07T21:52:40Z","ServerKey":"us63"},{"ID":2249,"VillageID":7726,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-07T22:21:07Z","ServerKey":"us63"},{"ID":2250,"VillageID":1381,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":599,"CreatedAt":"2023-02-07T22:28:55Z","ServerKey":"us63"},{"ID":2251,"VillageID":6405,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-07T22:38:51Z","ServerKey":"us63"},{"ID":2252,"VillageID":4605,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T22:48:41Z","ServerKey":"us63"},{"ID":2253,"VillageID":1190,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-07T23:09:40Z","ServerKey":"us63"},{"ID":2254,"VillageID":2982,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-07T23:10:57Z","ServerKey":"us63"},{"ID":2255,"VillageID":4186,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-07T23:23:05Z","ServerKey":"us63"},{"ID":2256,"VillageID":2161,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-07T23:27:38Z","ServerKey":"us63"},{"ID":2257,"VillageID":786,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-07T23:34:43Z","ServerKey":"us63"},{"ID":2258,"VillageID":510,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-07T23:54:03Z","ServerKey":"us63"},{"ID":2259,"VillageID":3059,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-08T00:03:01Z","ServerKey":"us63"},{"ID":2260,"VillageID":21,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-08T00:07:17Z","ServerKey":"us63"},{"ID":2261,"VillageID":2522,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-08T00:19:14Z","ServerKey":"us63"},{"ID":2262,"VillageID":3266,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-08T00:22:51Z","ServerKey":"us63"},{"ID":2263,"VillageID":7870,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":46,"CreatedAt":"2023-02-08T00:23:32Z","ServerKey":"us63"},{"ID":2264,"VillageID":1567,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":848952807,"OldTribeID":5,"Points":2863,"CreatedAt":"2023-02-08T00:36:31Z","ServerKey":"us63"},{"ID":2265,"VillageID":7691,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-08T00:37:52Z","ServerKey":"us63"},{"ID":2266,"VillageID":601,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-08T00:44:27Z","ServerKey":"us63"},{"ID":2267,"VillageID":4365,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":4211,"CreatedAt":"2023-02-08T00:53:21Z","ServerKey":"us63"},{"ID":2268,"VillageID":5369,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848954078,"OldTribeID":152,"Points":3982,"CreatedAt":"2023-02-08T01:05:32Z","ServerKey":"us63"},{"ID":2269,"VillageID":3125,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":463920,"OldTribeID":20,"Points":2141,"CreatedAt":"2023-02-08T01:29:53Z","ServerKey":"us63"},{"ID":2270,"VillageID":5739,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-08T01:32:26Z","ServerKey":"us63"},{"ID":2271,"VillageID":342,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-08T01:33:41Z","ServerKey":"us63"},{"ID":2272,"VillageID":218,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-08T01:38:30Z","ServerKey":"us63"},{"ID":2273,"VillageID":2903,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-08T01:40:59Z","ServerKey":"us63"},{"ID":2274,"VillageID":1372,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":674,"CreatedAt":"2023-02-08T02:25:20Z","ServerKey":"us63"},{"ID":2275,"VillageID":7650,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-02-08T02:50:51Z","ServerKey":"us63"},{"ID":2276,"VillageID":2501,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-08T02:55:29Z","ServerKey":"us63"},{"ID":2277,"VillageID":1510,"NewOwnerID":540645,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-08T03:14:21Z","ServerKey":"us63"},{"ID":2278,"VillageID":4495,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":4791,"CreatedAt":"2023-02-08T03:30:06Z","ServerKey":"us63"},{"ID":2279,"VillageID":2282,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-08T03:39:01Z","ServerKey":"us63"},{"ID":2280,"VillageID":2282,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":503636,"OldTribeID":138,"Points":349,"CreatedAt":"2023-02-08T03:39:03Z","ServerKey":"us63"},{"ID":2281,"VillageID":535,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-08T03:39:27Z","ServerKey":"us63"},{"ID":2282,"VillageID":6671,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":792503,"OldTribeID":210,"Points":1424,"CreatedAt":"2023-02-08T03:40:16Z","ServerKey":"us63"},{"ID":2283,"VillageID":191,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-08T03:58:55Z","ServerKey":"us63"},{"ID":2284,"VillageID":3020,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-08T04:12:33Z","ServerKey":"us63"},{"ID":2285,"VillageID":5484,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":848954987,"OldTribeID":22,"Points":4959,"CreatedAt":"2023-02-08T04:17:31Z","ServerKey":"us63"},{"ID":2286,"VillageID":2416,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":848949187,"OldTribeID":0,"Points":546,"CreatedAt":"2023-02-08T04:31:43Z","ServerKey":"us63"},{"ID":2287,"VillageID":3268,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":771856,"OldTribeID":42,"Points":938,"CreatedAt":"2023-02-08T04:34:01Z","ServerKey":"us63"},{"ID":2288,"VillageID":352,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":848952032,"OldTribeID":25,"Points":1667,"CreatedAt":"2023-02-08T04:38:58Z","ServerKey":"us63"},{"ID":2289,"VillageID":6858,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-08T04:50:59Z","ServerKey":"us63"},{"ID":2290,"VillageID":6858,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":135,"CreatedAt":"2023-02-08T04:50:59Z","ServerKey":"us63"},{"ID":2291,"VillageID":1359,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-08T05:10:00Z","ServerKey":"us63"},{"ID":2292,"VillageID":270,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-08T05:17:24Z","ServerKey":"us63"},{"ID":2293,"VillageID":3993,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":848954749,"OldTribeID":53,"Points":5463,"CreatedAt":"2023-02-08T05:30:14Z","ServerKey":"us63"},{"ID":2294,"VillageID":7679,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-08T05:30:46Z","ServerKey":"us63"},{"ID":2295,"VillageID":592,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-08T05:41:27Z","ServerKey":"us63"},{"ID":2296,"VillageID":7510,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-08T05:51:40Z","ServerKey":"us63"},{"ID":2297,"VillageID":220,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-08T05:58:03Z","ServerKey":"us63"},{"ID":2298,"VillageID":2572,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":729548,"OldTribeID":182,"Points":3895,"CreatedAt":"2023-02-08T06:00:19Z","ServerKey":"us63"},{"ID":2299,"VillageID":4982,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-08T06:12:36Z","ServerKey":"us63"},{"ID":2300,"VillageID":6469,"NewOwnerID":848954201,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-08T06:46:47Z","ServerKey":"us63"},{"ID":2301,"VillageID":4461,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848954826,"OldTribeID":0,"Points":393,"CreatedAt":"2023-02-08T06:58:44Z","ServerKey":"us63"},{"ID":2302,"VillageID":4870,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-08T07:07:07Z","ServerKey":"us63"},{"ID":2303,"VillageID":3907,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-08T07:17:54Z","ServerKey":"us63"},{"ID":2304,"VillageID":5106,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-08T07:45:24Z","ServerKey":"us63"},{"ID":2305,"VillageID":3575,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":848954698,"OldTribeID":105,"Points":5552,"CreatedAt":"2023-02-08T07:50:01Z","ServerKey":"us63"},{"ID":2306,"VillageID":5365,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-08T07:55:02Z","ServerKey":"us63"},{"ID":2307,"VillageID":6970,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-08T08:05:24Z","ServerKey":"us63"},{"ID":2308,"VillageID":2395,"NewOwnerID":848951964,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-08T08:06:11Z","ServerKey":"us63"},{"ID":2309,"VillageID":3158,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-08T08:08:25Z","ServerKey":"us63"},{"ID":2310,"VillageID":5058,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-08T08:09:50Z","ServerKey":"us63"},{"ID":2311,"VillageID":589,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-08T08:40:59Z","ServerKey":"us63"},{"ID":2312,"VillageID":155,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-08T08:50:46Z","ServerKey":"us63"},{"ID":2313,"VillageID":4908,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":3877,"CreatedAt":"2023-02-08T08:55:01Z","ServerKey":"us63"},{"ID":2314,"VillageID":3574,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-08T09:05:32Z","ServerKey":"us63"},{"ID":2315,"VillageID":5542,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":2109,"CreatedAt":"2023-02-08T10:15:45Z","ServerKey":"us63"},{"ID":2316,"VillageID":1131,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-08T10:27:54Z","ServerKey":"us63"},{"ID":2317,"VillageID":609,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848953956,"OldTribeID":35,"Points":886,"CreatedAt":"2023-02-08T10:36:45Z","ServerKey":"us63"},{"ID":2318,"VillageID":1496,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":613,"CreatedAt":"2023-02-08T11:12:24Z","ServerKey":"us63"},{"ID":2319,"VillageID":4599,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-08T11:37:14Z","ServerKey":"us63"},{"ID":2320,"VillageID":649,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952101,"OldTribeID":34,"Points":5103,"CreatedAt":"2023-02-08T11:45:19Z","ServerKey":"us63"},{"ID":2321,"VillageID":649,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":5103,"CreatedAt":"2023-02-08T11:45:19Z","ServerKey":"us63"},{"ID":2322,"VillageID":1498,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848951964,"OldTribeID":3,"Points":3442,"CreatedAt":"2023-02-08T11:57:32Z","ServerKey":"us63"},{"ID":2323,"VillageID":67,"NewOwnerID":848945118,"NewTribeID":183,"OldOwnerID":848952764,"OldTribeID":3,"Points":4866,"CreatedAt":"2023-02-08T12:33:15Z","ServerKey":"us63"},{"ID":2324,"VillageID":3981,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":848954698,"OldTribeID":105,"Points":1584,"CreatedAt":"2023-02-08T12:52:55Z","ServerKey":"us63"},{"ID":2325,"VillageID":4676,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-08T13:08:28Z","ServerKey":"us63"},{"ID":2326,"VillageID":834,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-08T13:08:43Z","ServerKey":"us63"},{"ID":2327,"VillageID":6941,"NewOwnerID":848955145,"NewTribeID":162,"OldOwnerID":848955217,"OldTribeID":206,"Points":2341,"CreatedAt":"2023-02-08T13:25:36Z","ServerKey":"us63"},{"ID":2328,"VillageID":893,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":387,"CreatedAt":"2023-02-08T13:34:06Z","ServerKey":"us63"},{"ID":2329,"VillageID":4526,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-08T13:39:07Z","ServerKey":"us63"},{"ID":2330,"VillageID":4793,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-08T14:02:53Z","ServerKey":"us63"},{"ID":2331,"VillageID":3536,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-08T14:22:18Z","ServerKey":"us63"},{"ID":2332,"VillageID":8004,"NewOwnerID":848954744,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-08T14:34:35Z","ServerKey":"us63"},{"ID":2333,"VillageID":495,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-08T14:37:26Z","ServerKey":"us63"},{"ID":2334,"VillageID":1320,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-08T14:49:02Z","ServerKey":"us63"},{"ID":2335,"VillageID":4512,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-08T15:10:18Z","ServerKey":"us63"},{"ID":2336,"VillageID":1238,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":1046,"CreatedAt":"2023-02-08T15:15:10Z","ServerKey":"us63"},{"ID":2337,"VillageID":250,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-08T15:16:43Z","ServerKey":"us63"},{"ID":2338,"VillageID":1302,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-08T16:02:39Z","ServerKey":"us63"},{"ID":2339,"VillageID":6783,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-08T16:37:06Z","ServerKey":"us63"},{"ID":2340,"VillageID":1386,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-08T16:43:31Z","ServerKey":"us63"},{"ID":2341,"VillageID":5064,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-08T16:51:35Z","ServerKey":"us63"},{"ID":2342,"VillageID":7173,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-08T16:58:55Z","ServerKey":"us63"},{"ID":2343,"VillageID":4246,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-08T17:08:41Z","ServerKey":"us63"},{"ID":2344,"VillageID":3412,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-08T17:10:40Z","ServerKey":"us63"},{"ID":2345,"VillageID":3069,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-08T17:12:49Z","ServerKey":"us63"},{"ID":2346,"VillageID":3647,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-08T17:16:36Z","ServerKey":"us63"},{"ID":2347,"VillageID":1830,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-08T17:16:42Z","ServerKey":"us63"},{"ID":2348,"VillageID":2142,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-08T17:24:31Z","ServerKey":"us63"},{"ID":2349,"VillageID":3875,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-08T17:27:49Z","ServerKey":"us63"},{"ID":2350,"VillageID":7487,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-08T17:28:51Z","ServerKey":"us63"},{"ID":2351,"VillageID":7485,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848955313,"OldTribeID":0,"Points":584,"CreatedAt":"2023-02-08T17:30:26Z","ServerKey":"us63"},{"ID":2352,"VillageID":5272,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-08T17:36:55Z","ServerKey":"us63"},{"ID":2353,"VillageID":5272,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":604194,"OldTribeID":174,"Points":141,"CreatedAt":"2023-02-08T17:39:45Z","ServerKey":"us63"},{"ID":2354,"VillageID":4469,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-08T17:47:35Z","ServerKey":"us63"},{"ID":2355,"VillageID":8572,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-08T17:49:36Z","ServerKey":"us63"},{"ID":2356,"VillageID":3632,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848951653,"OldTribeID":65,"Points":4264,"CreatedAt":"2023-02-08T17:58:58Z","ServerKey":"us63"},{"ID":2357,"VillageID":2731,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848954598,"OldTribeID":0,"Points":5570,"CreatedAt":"2023-02-08T18:24:19Z","ServerKey":"us63"},{"ID":2358,"VillageID":201,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-08T18:26:57Z","ServerKey":"us63"},{"ID":2359,"VillageID":2250,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-08T18:31:59Z","ServerKey":"us63"},{"ID":2360,"VillageID":6632,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-08T18:41:24Z","ServerKey":"us63"},{"ID":2361,"VillageID":363,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":498,"CreatedAt":"2023-02-08T18:54:00Z","ServerKey":"us63"},{"ID":2362,"VillageID":5091,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":848954298,"OldTribeID":130,"Points":663,"CreatedAt":"2023-02-08T18:54:32Z","ServerKey":"us63"},{"ID":2363,"VillageID":3111,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-08T19:09:51Z","ServerKey":"us63"},{"ID":2364,"VillageID":8319,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":47,"CreatedAt":"2023-02-08T19:23:39Z","ServerKey":"us63"},{"ID":2365,"VillageID":1660,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-08T19:26:36Z","ServerKey":"us63"},{"ID":2366,"VillageID":1995,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":733,"CreatedAt":"2023-02-08T19:32:30Z","ServerKey":"us63"},{"ID":2367,"VillageID":5377,"NewOwnerID":848954894,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-08T19:52:22Z","ServerKey":"us63"},{"ID":2368,"VillageID":1148,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-08T19:54:35Z","ServerKey":"us63"},{"ID":2369,"VillageID":1203,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-08T20:13:50Z","ServerKey":"us63"},{"ID":2370,"VillageID":945,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-08T20:14:15Z","ServerKey":"us63"},{"ID":2371,"VillageID":4595,"NewOwnerID":848954768,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-08T20:24:59Z","ServerKey":"us63"},{"ID":2372,"VillageID":3347,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-08T20:25:34Z","ServerKey":"us63"},{"ID":2373,"VillageID":7682,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-08T20:51:03Z","ServerKey":"us63"},{"ID":2374,"VillageID":7294,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-08T20:57:38Z","ServerKey":"us63"},{"ID":2375,"VillageID":4715,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-08T21:12:46Z","ServerKey":"us63"},{"ID":2376,"VillageID":213,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-08T21:21:00Z","ServerKey":"us63"},{"ID":2377,"VillageID":82,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-08T21:31:55Z","ServerKey":"us63"},{"ID":2378,"VillageID":434,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-08T22:08:33Z","ServerKey":"us63"},{"ID":2379,"VillageID":5272,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848890745,"OldTribeID":174,"Points":144,"CreatedAt":"2023-02-08T22:08:53Z","ServerKey":"us63"},{"ID":2380,"VillageID":981,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":9621,"CreatedAt":"2023-02-08T22:27:16Z","ServerKey":"us63"},{"ID":2381,"VillageID":4829,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-08T22:35:30Z","ServerKey":"us63"},{"ID":2382,"VillageID":3865,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-08T22:40:56Z","ServerKey":"us63"},{"ID":2383,"VillageID":4447,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-08T22:59:27Z","ServerKey":"us63"},{"ID":2384,"VillageID":1316,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":5299,"CreatedAt":"2023-02-08T23:00:01Z","ServerKey":"us63"},{"ID":2385,"VillageID":1560,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":4289,"CreatedAt":"2023-02-08T23:00:04Z","ServerKey":"us63"},{"ID":2386,"VillageID":1091,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848953956,"OldTribeID":35,"Points":941,"CreatedAt":"2023-02-08T23:21:40Z","ServerKey":"us63"},{"ID":2387,"VillageID":2121,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-08T23:24:26Z","ServerKey":"us63"},{"ID":2388,"VillageID":2241,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-08T23:26:46Z","ServerKey":"us63"},{"ID":2389,"VillageID":653,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952033,"OldTribeID":34,"Points":5329,"CreatedAt":"2023-02-08T23:45:39Z","ServerKey":"us63"},{"ID":2390,"VillageID":653,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":5329,"CreatedAt":"2023-02-08T23:45:39Z","ServerKey":"us63"},{"ID":2391,"VillageID":2152,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848950262,"OldTribeID":0,"Points":1567,"CreatedAt":"2023-02-08T23:49:49Z","ServerKey":"us63"},{"ID":2392,"VillageID":1749,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":242,"CreatedAt":"2023-02-08T23:52:29Z","ServerKey":"us63"},{"ID":2393,"VillageID":2589,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":848954611,"OldTribeID":32,"Points":2289,"CreatedAt":"2023-02-08T23:54:06Z","ServerKey":"us63"},{"ID":2394,"VillageID":7988,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-09T00:06:30Z","ServerKey":"us63"},{"ID":2395,"VillageID":690,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-09T00:11:56Z","ServerKey":"us63"},{"ID":2396,"VillageID":5389,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-09T00:14:21Z","ServerKey":"us63"},{"ID":2397,"VillageID":1032,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-09T00:33:07Z","ServerKey":"us63"},{"ID":2398,"VillageID":460,"NewOwnerID":848883478,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-09T00:43:10Z","ServerKey":"us63"},{"ID":2399,"VillageID":532,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-09T00:55:15Z","ServerKey":"us63"},{"ID":2400,"VillageID":1604,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-09T01:17:52Z","ServerKey":"us63"},{"ID":2401,"VillageID":439,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848953956,"OldTribeID":35,"Points":5966,"CreatedAt":"2023-02-09T01:29:50Z","ServerKey":"us63"},{"ID":2402,"VillageID":5241,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":848954987,"OldTribeID":22,"Points":1478,"CreatedAt":"2023-02-09T01:36:01Z","ServerKey":"us63"},{"ID":2403,"VillageID":2319,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":848852584,"OldTribeID":25,"Points":1051,"CreatedAt":"2023-02-09T01:36:45Z","ServerKey":"us63"},{"ID":2404,"VillageID":1604,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":132,"CreatedAt":"2023-02-09T01:40:42Z","ServerKey":"us63"},{"ID":2405,"VillageID":7464,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-09T01:48:38Z","ServerKey":"us63"},{"ID":2406,"VillageID":5399,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-09T01:51:07Z","ServerKey":"us63"},{"ID":2407,"VillageID":2944,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-09T01:56:43Z","ServerKey":"us63"},{"ID":2408,"VillageID":2702,"NewOwnerID":848952270,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1986,"CreatedAt":"2023-02-09T02:04:06Z","ServerKey":"us63"},{"ID":2409,"VillageID":6045,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-09T02:14:28Z","ServerKey":"us63"},{"ID":2410,"VillageID":5678,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-09T02:46:55Z","ServerKey":"us63"},{"ID":2411,"VillageID":3223,"NewOwnerID":768161,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":285,"CreatedAt":"2023-02-09T02:52:47Z","ServerKey":"us63"},{"ID":2412,"VillageID":180,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-09T02:57:09Z","ServerKey":"us63"},{"ID":2413,"VillageID":5813,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":659,"CreatedAt":"2023-02-09T03:03:54Z","ServerKey":"us63"},{"ID":2414,"VillageID":1268,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-09T03:20:40Z","ServerKey":"us63"},{"ID":2415,"VillageID":729,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-09T03:33:48Z","ServerKey":"us63"},{"ID":2416,"VillageID":3085,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-09T03:43:42Z","ServerKey":"us63"},{"ID":2417,"VillageID":6119,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":334822,"OldTribeID":0,"Points":3318,"CreatedAt":"2023-02-09T03:56:33Z","ServerKey":"us63"},{"ID":2418,"VillageID":3282,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-09T04:15:09Z","ServerKey":"us63"},{"ID":2419,"VillageID":6022,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-09T05:13:49Z","ServerKey":"us63"},{"ID":2420,"VillageID":6759,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-09T05:26:56Z","ServerKey":"us63"},{"ID":2421,"VillageID":5303,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-09T05:35:05Z","ServerKey":"us63"},{"ID":2422,"VillageID":3085,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848890745,"OldTribeID":174,"Points":190,"CreatedAt":"2023-02-09T06:09:19Z","ServerKey":"us63"},{"ID":2423,"VillageID":1533,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848952324,"OldTribeID":4,"Points":5656,"CreatedAt":"2023-02-09T06:13:00Z","ServerKey":"us63"},{"ID":2424,"VillageID":3340,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-09T06:25:30Z","ServerKey":"us63"},{"ID":2425,"VillageID":3841,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-09T06:50:14Z","ServerKey":"us63"},{"ID":2426,"VillageID":6644,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-09T07:04:58Z","ServerKey":"us63"},{"ID":2427,"VillageID":2099,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-09T07:24:21Z","ServerKey":"us63"},{"ID":2428,"VillageID":5452,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-09T07:29:33Z","ServerKey":"us63"},{"ID":2429,"VillageID":5926,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-09T07:39:53Z","ServerKey":"us63"},{"ID":2430,"VillageID":5771,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":848951612,"OldTribeID":35,"Points":1541,"CreatedAt":"2023-02-09T07:46:50Z","ServerKey":"us63"},{"ID":2431,"VillageID":3622,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-09T07:50:55Z","ServerKey":"us63"},{"ID":2432,"VillageID":8031,"NewOwnerID":848955238,"NewTribeID":170,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-09T07:56:01Z","ServerKey":"us63"},{"ID":2433,"VillageID":2944,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848890745,"OldTribeID":174,"Points":181,"CreatedAt":"2023-02-09T08:16:20Z","ServerKey":"us63"},{"ID":2434,"VillageID":893,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":731,"CreatedAt":"2023-02-09T08:17:16Z","ServerKey":"us63"},{"ID":2435,"VillageID":6602,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-09T08:22:11Z","ServerKey":"us63"},{"ID":2436,"VillageID":808,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1443,"CreatedAt":"2023-02-09T08:23:27Z","ServerKey":"us63"},{"ID":2437,"VillageID":5720,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":848954210,"OldTribeID":0,"Points":1482,"CreatedAt":"2023-02-09T08:30:10Z","ServerKey":"us63"},{"ID":2438,"VillageID":742,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952033,"OldTribeID":34,"Points":1094,"CreatedAt":"2023-02-09T08:39:33Z","ServerKey":"us63"},{"ID":2439,"VillageID":2944,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":181,"CreatedAt":"2023-02-09T08:54:05Z","ServerKey":"us63"},{"ID":2440,"VillageID":646,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":3575,"CreatedAt":"2023-02-09T08:59:00Z","ServerKey":"us63"},{"ID":2441,"VillageID":2587,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-09T09:04:22Z","ServerKey":"us63"},{"ID":2442,"VillageID":6592,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-09T09:06:21Z","ServerKey":"us63"},{"ID":2443,"VillageID":1125,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952033,"OldTribeID":34,"Points":699,"CreatedAt":"2023-02-09T09:20:12Z","ServerKey":"us63"},{"ID":2444,"VillageID":893,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":693887,"OldTribeID":48,"Points":772,"CreatedAt":"2023-02-09T09:27:51Z","ServerKey":"us63"},{"ID":2445,"VillageID":893,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":707,"CreatedAt":"2023-02-09T09:27:52Z","ServerKey":"us63"},{"ID":2446,"VillageID":1418,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":3826,"CreatedAt":"2023-02-09T09:31:17Z","ServerKey":"us63"},{"ID":2447,"VillageID":3839,"NewOwnerID":348613,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-09T09:33:53Z","ServerKey":"us63"},{"ID":2448,"VillageID":4012,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":474,"CreatedAt":"2023-02-09T09:36:29Z","ServerKey":"us63"},{"ID":2449,"VillageID":6550,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-09T09:43:07Z","ServerKey":"us63"},{"ID":2450,"VillageID":7960,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-09T09:52:56Z","ServerKey":"us63"},{"ID":2451,"VillageID":1957,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":6052,"CreatedAt":"2023-02-09T10:00:00Z","ServerKey":"us63"},{"ID":2452,"VillageID":2704,"NewOwnerID":351605,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-09T10:57:43Z","ServerKey":"us63"},{"ID":2453,"VillageID":98,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-09T11:13:09Z","ServerKey":"us63"},{"ID":2454,"VillageID":3208,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-09T11:19:23Z","ServerKey":"us63"},{"ID":2455,"VillageID":451,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-09T11:31:18Z","ServerKey":"us63"},{"ID":2456,"VillageID":4841,"NewOwnerID":351605,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-09T11:59:34Z","ServerKey":"us63"},{"ID":2457,"VillageID":5487,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-09T12:10:18Z","ServerKey":"us63"},{"ID":2458,"VillageID":57,"NewOwnerID":848953779,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-09T12:16:56Z","ServerKey":"us63"},{"ID":2459,"VillageID":1802,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":1761,"CreatedAt":"2023-02-09T12:24:57Z","ServerKey":"us63"},{"ID":2460,"VillageID":6710,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-02-09T12:30:40Z","ServerKey":"us63"},{"ID":2461,"VillageID":6199,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":423,"CreatedAt":"2023-02-09T12:54:24Z","ServerKey":"us63"},{"ID":2462,"VillageID":293,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":540645,"OldTribeID":163,"Points":6252,"CreatedAt":"2023-02-09T12:55:25Z","ServerKey":"us63"},{"ID":2463,"VillageID":3498,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-09T13:18:21Z","ServerKey":"us63"},{"ID":2464,"VillageID":1250,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":2676,"CreatedAt":"2023-02-09T13:20:43Z","ServerKey":"us63"},{"ID":2465,"VillageID":6818,"NewOwnerID":848955008,"NewTribeID":152,"OldOwnerID":848955201,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-09T13:28:41Z","ServerKey":"us63"},{"ID":2466,"VillageID":5808,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-09T13:38:00Z","ServerKey":"us63"},{"ID":2467,"VillageID":1873,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-09T13:43:52Z","ServerKey":"us63"},{"ID":2468,"VillageID":5520,"NewOwnerID":848955019,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-09T13:47:53Z","ServerKey":"us63"},{"ID":2469,"VillageID":4019,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":2733,"CreatedAt":"2023-02-09T13:49:15Z","ServerKey":"us63"},{"ID":2470,"VillageID":6698,"NewOwnerID":848951960,"NewTribeID":97,"OldOwnerID":848955179,"OldTribeID":0,"Points":1439,"CreatedAt":"2023-02-09T14:07:23Z","ServerKey":"us63"},{"ID":2471,"VillageID":2009,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-09T14:09:33Z","ServerKey":"us63"},{"ID":2472,"VillageID":6964,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-09T14:14:15Z","ServerKey":"us63"},{"ID":2473,"VillageID":6187,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-09T14:23:00Z","ServerKey":"us63"},{"ID":2474,"VillageID":4015,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":1798,"CreatedAt":"2023-02-09T14:24:51Z","ServerKey":"us63"},{"ID":2475,"VillageID":6948,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-09T14:26:58Z","ServerKey":"us63"},{"ID":2476,"VillageID":7109,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-09T14:37:30Z","ServerKey":"us63"},{"ID":2477,"VillageID":6892,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-09T15:12:22Z","ServerKey":"us63"},{"ID":2478,"VillageID":2044,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-09T15:27:19Z","ServerKey":"us63"},{"ID":2479,"VillageID":6175,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-09T15:27:21Z","ServerKey":"us63"},{"ID":2480,"VillageID":1580,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":848952875,"OldTribeID":0,"Points":7103,"CreatedAt":"2023-02-09T15:32:45Z","ServerKey":"us63"},{"ID":2481,"VillageID":1261,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":573,"CreatedAt":"2023-02-09T15:42:15Z","ServerKey":"us63"},{"ID":2482,"VillageID":7609,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":848907435,"OldTribeID":0,"Points":1228,"CreatedAt":"2023-02-09T15:45:00Z","ServerKey":"us63"},{"ID":2483,"VillageID":6628,"NewOwnerID":848955238,"NewTribeID":170,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-09T15:49:52Z","ServerKey":"us63"},{"ID":2484,"VillageID":3863,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":5160,"CreatedAt":"2023-02-09T15:57:02Z","ServerKey":"us63"},{"ID":2485,"VillageID":1054,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848925398,"OldTribeID":42,"Points":4470,"CreatedAt":"2023-02-09T16:40:56Z","ServerKey":"us63"},{"ID":2486,"VillageID":1112,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-09T17:02:38Z","ServerKey":"us63"},{"ID":2487,"VillageID":3567,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-09T17:04:21Z","ServerKey":"us63"},{"ID":2488,"VillageID":5196,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-09T17:10:03Z","ServerKey":"us63"},{"ID":2489,"VillageID":761,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-09T17:15:46Z","ServerKey":"us63"},{"ID":2490,"VillageID":761,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848941909,"OldTribeID":6,"Points":321,"CreatedAt":"2023-02-09T17:15:46Z","ServerKey":"us63"},{"ID":2491,"VillageID":6268,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-09T17:15:53Z","ServerKey":"us63"},{"ID":2492,"VillageID":2231,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":840,"CreatedAt":"2023-02-09T17:23:48Z","ServerKey":"us63"},{"ID":2493,"VillageID":5961,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-09T17:29:49Z","ServerKey":"us63"},{"ID":2494,"VillageID":257,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-09T17:40:31Z","ServerKey":"us63"},{"ID":2495,"VillageID":1527,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-09T17:48:24Z","ServerKey":"us63"},{"ID":2496,"VillageID":288,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":3024,"CreatedAt":"2023-02-09T17:49:50Z","ServerKey":"us63"},{"ID":2497,"VillageID":288,"NewOwnerID":114434,"NewTribeID":0,"OldOwnerID":398664,"OldTribeID":33,"Points":2877,"CreatedAt":"2023-02-09T17:54:42Z","ServerKey":"us63"},{"ID":2498,"VillageID":605,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":10466,"CreatedAt":"2023-02-09T17:55:50Z","ServerKey":"us63"},{"ID":2499,"VillageID":6067,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-09T17:58:50Z","ServerKey":"us63"},{"ID":2500,"VillageID":6530,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-09T18:17:47Z","ServerKey":"us63"},{"ID":2501,"VillageID":1725,"NewOwnerID":848945118,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":3311,"CreatedAt":"2023-02-09T18:22:27Z","ServerKey":"us63"},{"ID":2502,"VillageID":3804,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-09T18:24:01Z","ServerKey":"us63"},{"ID":2503,"VillageID":4271,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-09T18:29:55Z","ServerKey":"us63"},{"ID":2504,"VillageID":5504,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-09T18:32:25Z","ServerKey":"us63"},{"ID":2505,"VillageID":1008,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-09T18:38:08Z","ServerKey":"us63"},{"ID":2506,"VillageID":5007,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-09T18:38:23Z","ServerKey":"us63"},{"ID":2507,"VillageID":1442,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":6388,"CreatedAt":"2023-02-09T18:49:36Z","ServerKey":"us63"},{"ID":2508,"VillageID":6284,"NewOwnerID":775744,"NewTribeID":187,"OldOwnerID":712365,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-09T18:53:30Z","ServerKey":"us63"},{"ID":2509,"VillageID":248,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":841,"CreatedAt":"2023-02-09T18:56:56Z","ServerKey":"us63"},{"ID":2510,"VillageID":849,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-09T19:11:23Z","ServerKey":"us63"},{"ID":2511,"VillageID":668,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-09T19:16:11Z","ServerKey":"us63"},{"ID":2512,"VillageID":3400,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":4378,"CreatedAt":"2023-02-09T19:21:53Z","ServerKey":"us63"},{"ID":2513,"VillageID":930,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":5029,"CreatedAt":"2023-02-09T19:26:17Z","ServerKey":"us63"},{"ID":2514,"VillageID":3407,"NewOwnerID":848881027,"NewTribeID":0,"OldOwnerID":751231,"OldTribeID":0,"Points":1907,"CreatedAt":"2023-02-09T19:43:10Z","ServerKey":"us63"},{"ID":2515,"VillageID":484,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":1806,"CreatedAt":"2023-02-09T19:47:20Z","ServerKey":"us63"},{"ID":2516,"VillageID":3030,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":3856,"CreatedAt":"2023-02-09T20:15:15Z","ServerKey":"us63"},{"ID":2517,"VillageID":7782,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-09T20:41:36Z","ServerKey":"us63"},{"ID":2518,"VillageID":878,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-09T20:42:44Z","ServerKey":"us63"},{"ID":2519,"VillageID":5,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-09T20:51:58Z","ServerKey":"us63"},{"ID":2520,"VillageID":481,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":645,"CreatedAt":"2023-02-09T20:52:54Z","ServerKey":"us63"},{"ID":2521,"VillageID":5080,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-09T21:05:13Z","ServerKey":"us63"},{"ID":2522,"VillageID":3190,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-09T21:15:57Z","ServerKey":"us63"},{"ID":2523,"VillageID":657,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":314,"CreatedAt":"2023-02-09T21:21:56Z","ServerKey":"us63"},{"ID":2524,"VillageID":5430,"NewOwnerID":789326,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-09T21:27:52Z","ServerKey":"us63"},{"ID":2525,"VillageID":3409,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-09T21:29:29Z","ServerKey":"us63"},{"ID":2526,"VillageID":6209,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":226713,"OldTribeID":91,"Points":2473,"CreatedAt":"2023-02-09T21:41:50Z","ServerKey":"us63"},{"ID":2527,"VillageID":3076,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-09T21:49:19Z","ServerKey":"us63"},{"ID":2528,"VillageID":6903,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-09T21:52:26Z","ServerKey":"us63"},{"ID":2529,"VillageID":2256,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848951321,"OldTribeID":25,"Points":1152,"CreatedAt":"2023-02-09T21:57:24Z","ServerKey":"us63"},{"ID":2530,"VillageID":5566,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-09T22:07:46Z","ServerKey":"us63"},{"ID":2531,"VillageID":6130,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-09T22:10:41Z","ServerKey":"us63"},{"ID":2532,"VillageID":3577,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-09T22:15:53Z","ServerKey":"us63"},{"ID":2533,"VillageID":3773,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-09T22:26:05Z","ServerKey":"us63"},{"ID":2534,"VillageID":4919,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-09T22:36:40Z","ServerKey":"us63"},{"ID":2535,"VillageID":1631,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-09T22:57:49Z","ServerKey":"us63"},{"ID":2536,"VillageID":2460,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848951321,"OldTribeID":25,"Points":533,"CreatedAt":"2023-02-09T23:01:11Z","ServerKey":"us63"},{"ID":2537,"VillageID":6973,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-09T23:05:15Z","ServerKey":"us63"},{"ID":2538,"VillageID":1587,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":848952953,"OldTribeID":42,"Points":1314,"CreatedAt":"2023-02-09T23:17:29Z","ServerKey":"us63"},{"ID":2539,"VillageID":693,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":5578,"CreatedAt":"2023-02-09T23:28:10Z","ServerKey":"us63"},{"ID":2540,"VillageID":4083,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3592,"CreatedAt":"2023-02-09T23:30:11Z","ServerKey":"us63"},{"ID":2541,"VillageID":5300,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":848943095,"OldTribeID":0,"Points":593,"CreatedAt":"2023-02-09T23:31:00Z","ServerKey":"us63"},{"ID":2542,"VillageID":481,"NewOwnerID":384998,"NewTribeID":86,"OldOwnerID":463920,"OldTribeID":20,"Points":645,"CreatedAt":"2023-02-10T00:14:00Z","ServerKey":"us63"},{"ID":2543,"VillageID":242,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":2249,"CreatedAt":"2023-02-10T00:25:57Z","ServerKey":"us63"},{"ID":2544,"VillageID":3548,"NewOwnerID":679915,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-10T00:27:39Z","ServerKey":"us63"},{"ID":2545,"VillageID":5795,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-10T00:40:30Z","ServerKey":"us63"},{"ID":2546,"VillageID":3906,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":1081,"CreatedAt":"2023-02-10T01:05:15Z","ServerKey":"us63"},{"ID":2547,"VillageID":3544,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-10T01:06:38Z","ServerKey":"us63"},{"ID":2548,"VillageID":2878,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":6352,"CreatedAt":"2023-02-10T01:26:33Z","ServerKey":"us63"},{"ID":2549,"VillageID":2714,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-10T01:28:04Z","ServerKey":"us63"},{"ID":2550,"VillageID":204,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-10T01:33:19Z","ServerKey":"us63"},{"ID":2551,"VillageID":543,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":2438,"CreatedAt":"2023-02-10T01:44:30Z","ServerKey":"us63"},{"ID":2552,"VillageID":1348,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-10T01:56:45Z","ServerKey":"us63"},{"ID":2553,"VillageID":1278,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1898,"CreatedAt":"2023-02-10T01:58:04Z","ServerKey":"us63"},{"ID":2554,"VillageID":1278,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":1898,"CreatedAt":"2023-02-10T01:58:04Z","ServerKey":"us63"},{"ID":2555,"VillageID":2791,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-10T02:19:52Z","ServerKey":"us63"},{"ID":2556,"VillageID":2791,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":568,"OldTribeID":32,"Points":270,"CreatedAt":"2023-02-10T02:19:53Z","ServerKey":"us63"},{"ID":2557,"VillageID":5189,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-10T02:24:22Z","ServerKey":"us63"},{"ID":2558,"VillageID":2852,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-10T03:00:08Z","ServerKey":"us63"},{"ID":2559,"VillageID":5666,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-10T03:05:09Z","ServerKey":"us63"},{"ID":2560,"VillageID":2698,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":11109,"CreatedAt":"2023-02-10T03:32:15Z","ServerKey":"us63"},{"ID":2561,"VillageID":812,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-10T03:36:56Z","ServerKey":"us63"},{"ID":2562,"VillageID":4056,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848913418,"OldTribeID":65,"Points":6251,"CreatedAt":"2023-02-10T03:58:10Z","ServerKey":"us63"},{"ID":2563,"VillageID":5048,"NewOwnerID":848954120,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-10T04:01:18Z","ServerKey":"us63"},{"ID":2564,"VillageID":4491,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-10T04:04:37Z","ServerKey":"us63"},{"ID":2565,"VillageID":7427,"NewOwnerID":848951960,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-10T04:15:06Z","ServerKey":"us63"},{"ID":2566,"VillageID":109,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-10T04:21:08Z","ServerKey":"us63"},{"ID":2567,"VillageID":2691,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":848952875,"OldTribeID":0,"Points":3865,"CreatedAt":"2023-02-10T04:26:11Z","ServerKey":"us63"},{"ID":2568,"VillageID":217,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-10T04:27:04Z","ServerKey":"us63"},{"ID":2569,"VillageID":718,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-10T04:29:14Z","ServerKey":"us63"},{"ID":2570,"VillageID":825,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":2362,"CreatedAt":"2023-02-10T04:49:04Z","ServerKey":"us63"},{"ID":2571,"VillageID":4552,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-10T04:54:33Z","ServerKey":"us63"},{"ID":2572,"VillageID":4641,"NewOwnerID":848935026,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":484,"CreatedAt":"2023-02-10T05:21:07Z","ServerKey":"us63"},{"ID":2573,"VillageID":3492,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-10T05:28:27Z","ServerKey":"us63"},{"ID":2574,"VillageID":9,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-10T05:35:19Z","ServerKey":"us63"},{"ID":2575,"VillageID":1891,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":4355,"CreatedAt":"2023-02-10T05:46:03Z","ServerKey":"us63"},{"ID":2576,"VillageID":4077,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-10T05:48:09Z","ServerKey":"us63"},{"ID":2577,"VillageID":2951,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-10T05:58:10Z","ServerKey":"us63"},{"ID":2578,"VillageID":794,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":751946,"OldTribeID":0,"Points":2108,"CreatedAt":"2023-02-10T06:00:11Z","ServerKey":"us63"},{"ID":2579,"VillageID":1010,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848902872,"OldTribeID":183,"Points":7404,"CreatedAt":"2023-02-10T06:38:49Z","ServerKey":"us63"},{"ID":2580,"VillageID":5015,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-10T06:43:30Z","ServerKey":"us63"},{"ID":2581,"VillageID":2491,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-10T06:59:31Z","ServerKey":"us63"},{"ID":2582,"VillageID":27,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-10T07:14:17Z","ServerKey":"us63"},{"ID":2583,"VillageID":1104,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-10T07:23:08Z","ServerKey":"us63"},{"ID":2584,"VillageID":3221,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":716656,"OldTribeID":85,"Points":3941,"CreatedAt":"2023-02-10T07:27:23Z","ServerKey":"us63"},{"ID":2585,"VillageID":6420,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848937060,"OldTribeID":203,"Points":2268,"CreatedAt":"2023-02-10T07:36:09Z","ServerKey":"us63"},{"ID":2586,"VillageID":7799,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-10T07:46:03Z","ServerKey":"us63"},{"ID":2587,"VillageID":4092,"NewOwnerID":848954776,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-10T07:50:02Z","ServerKey":"us63"},{"ID":2588,"VillageID":1350,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":1902,"CreatedAt":"2023-02-10T08:01:28Z","ServerKey":"us63"},{"ID":2589,"VillageID":7071,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-10T08:14:30Z","ServerKey":"us63"},{"ID":2590,"VillageID":5809,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1582,"CreatedAt":"2023-02-10T08:33:33Z","ServerKey":"us63"},{"ID":2591,"VillageID":4661,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-10T08:46:01Z","ServerKey":"us63"},{"ID":2592,"VillageID":4475,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-10T08:49:10Z","ServerKey":"us63"},{"ID":2593,"VillageID":4475,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":201,"CreatedAt":"2023-02-10T08:49:10Z","ServerKey":"us63"},{"ID":2594,"VillageID":474,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":573851,"OldTribeID":48,"Points":7599,"CreatedAt":"2023-02-10T09:00:00Z","ServerKey":"us63"},{"ID":2595,"VillageID":652,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":4115,"CreatedAt":"2023-02-10T09:00:00Z","ServerKey":"us63"},{"ID":2596,"VillageID":652,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":509533,"OldTribeID":6,"Points":4115,"CreatedAt":"2023-02-10T09:00:00Z","ServerKey":"us63"},{"ID":2597,"VillageID":2885,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":587894,"OldTribeID":48,"Points":9275,"CreatedAt":"2023-02-10T09:00:30Z","ServerKey":"us63"},{"ID":2598,"VillageID":2885,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":780339,"OldTribeID":74,"Points":9275,"CreatedAt":"2023-02-10T09:00:30Z","ServerKey":"us63"},{"ID":2599,"VillageID":1001,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848894442,"OldTribeID":34,"Points":7132,"CreatedAt":"2023-02-10T09:10:37Z","ServerKey":"us63"},{"ID":2600,"VillageID":583,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-10T09:19:49Z","ServerKey":"us63"},{"ID":2601,"VillageID":7994,"NewOwnerID":848954668,"NewTribeID":172,"OldOwnerID":767834,"OldTribeID":182,"Points":1340,"CreatedAt":"2023-02-10T09:38:47Z","ServerKey":"us63"},{"ID":2602,"VillageID":2325,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848943740,"OldTribeID":0,"Points":3700,"CreatedAt":"2023-02-10T09:42:54Z","ServerKey":"us63"},{"ID":2603,"VillageID":3203,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-10T09:44:05Z","ServerKey":"us63"},{"ID":2604,"VillageID":1001,"NewOwnerID":697760,"NewTribeID":34,"OldOwnerID":848880663,"OldTribeID":138,"Points":7108,"CreatedAt":"2023-02-10T09:47:12Z","ServerKey":"us63"},{"ID":2605,"VillageID":5202,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-10T10:02:56Z","ServerKey":"us63"},{"ID":2606,"VillageID":5459,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-10T10:04:15Z","ServerKey":"us63"},{"ID":2607,"VillageID":1806,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":6401,"CreatedAt":"2023-02-10T10:16:13Z","ServerKey":"us63"},{"ID":2608,"VillageID":2702,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":2003,"CreatedAt":"2023-02-10T10:20:19Z","ServerKey":"us63"},{"ID":2609,"VillageID":7628,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-02-10T10:27:28Z","ServerKey":"us63"},{"ID":2610,"VillageID":6409,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":226713,"OldTribeID":91,"Points":4013,"CreatedAt":"2023-02-10T10:28:54Z","ServerKey":"us63"},{"ID":2611,"VillageID":551,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-10T10:35:12Z","ServerKey":"us63"},{"ID":2612,"VillageID":2588,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":3689,"CreatedAt":"2023-02-10T10:42:16Z","ServerKey":"us63"},{"ID":2613,"VillageID":832,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":8991,"CreatedAt":"2023-02-10T10:43:13Z","ServerKey":"us63"},{"ID":2614,"VillageID":2929,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848852584,"OldTribeID":25,"Points":6149,"CreatedAt":"2023-02-10T10:45:58Z","ServerKey":"us63"},{"ID":2615,"VillageID":5037,"NewOwnerID":351605,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-10T10:48:50Z","ServerKey":"us63"},{"ID":2616,"VillageID":288,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":2901,"CreatedAt":"2023-02-10T10:50:44Z","ServerKey":"us63"},{"ID":2617,"VillageID":3584,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3103,"CreatedAt":"2023-02-10T10:52:00Z","ServerKey":"us63"},{"ID":2618,"VillageID":3542,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3409,"CreatedAt":"2023-02-10T10:52:00Z","ServerKey":"us63"},{"ID":2619,"VillageID":5299,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-10T10:53:06Z","ServerKey":"us63"},{"ID":2620,"VillageID":13,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-10T10:55:42Z","ServerKey":"us63"},{"ID":2621,"VillageID":800,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-10T11:02:25Z","ServerKey":"us63"},{"ID":2622,"VillageID":5749,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":848950729,"OldTribeID":0,"Points":2173,"CreatedAt":"2023-02-10T11:35:40Z","ServerKey":"us63"},{"ID":2623,"VillageID":708,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":2771,"CreatedAt":"2023-02-10T12:25:26Z","ServerKey":"us63"},{"ID":2624,"VillageID":515,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-10T12:36:33Z","ServerKey":"us63"},{"ID":2625,"VillageID":2983,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-10T12:50:15Z","ServerKey":"us63"},{"ID":2626,"VillageID":7065,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-10T12:54:00Z","ServerKey":"us63"},{"ID":2627,"VillageID":6027,"NewOwnerID":848953539,"NewTribeID":32,"OldOwnerID":848947837,"OldTribeID":134,"Points":2591,"CreatedAt":"2023-02-10T13:09:49Z","ServerKey":"us63"},{"ID":2628,"VillageID":695,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-10T13:35:41Z","ServerKey":"us63"},{"ID":2629,"VillageID":1491,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-10T14:04:24Z","ServerKey":"us63"},{"ID":2630,"VillageID":1491,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":252,"CreatedAt":"2023-02-10T14:04:25Z","ServerKey":"us63"},{"ID":2631,"VillageID":6649,"NewOwnerID":848955238,"NewTribeID":170,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-10T14:17:39Z","ServerKey":"us63"},{"ID":2632,"VillageID":1558,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-10T14:17:56Z","ServerKey":"us63"},{"ID":2633,"VillageID":216,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-10T14:18:07Z","ServerKey":"us63"},{"ID":2634,"VillageID":4191,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-10T14:22:08Z","ServerKey":"us63"},{"ID":2635,"VillageID":6570,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":754653,"OldTribeID":22,"Points":1259,"CreatedAt":"2023-02-10T14:28:35Z","ServerKey":"us63"},{"ID":2636,"VillageID":2991,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-10T15:01:49Z","ServerKey":"us63"},{"ID":2637,"VillageID":1524,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":3761,"CreatedAt":"2023-02-10T15:18:27Z","ServerKey":"us63"},{"ID":2638,"VillageID":2924,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":4121,"CreatedAt":"2023-02-10T15:20:26Z","ServerKey":"us63"},{"ID":2639,"VillageID":1869,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-10T15:35:31Z","ServerKey":"us63"},{"ID":2640,"VillageID":5269,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-10T15:36:27Z","ServerKey":"us63"},{"ID":2641,"VillageID":596,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-10T16:02:02Z","ServerKey":"us63"},{"ID":2642,"VillageID":6904,"NewOwnerID":848955141,"NewTribeID":152,"OldOwnerID":744663,"OldTribeID":0,"Points":1342,"CreatedAt":"2023-02-10T16:03:26Z","ServerKey":"us63"},{"ID":2643,"VillageID":483,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-10T16:03:35Z","ServerKey":"us63"},{"ID":2644,"VillageID":483,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":309,"CreatedAt":"2023-02-10T16:03:35Z","ServerKey":"us63"},{"ID":2645,"VillageID":1618,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-10T16:07:30Z","ServerKey":"us63"},{"ID":2646,"VillageID":1371,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-10T16:24:43Z","ServerKey":"us63"},{"ID":2647,"VillageID":1187,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1395,"CreatedAt":"2023-02-10T16:49:11Z","ServerKey":"us63"},{"ID":2648,"VillageID":5920,"NewOwnerID":218304,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-10T16:51:02Z","ServerKey":"us63"},{"ID":2649,"VillageID":617,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-10T17:21:03Z","ServerKey":"us63"},{"ID":2650,"VillageID":3021,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":6182,"CreatedAt":"2023-02-10T17:28:18Z","ServerKey":"us63"},{"ID":2651,"VillageID":858,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":8317,"CreatedAt":"2023-02-10T17:28:18Z","ServerKey":"us63"},{"ID":2652,"VillageID":5077,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-02-10T17:29:37Z","ServerKey":"us63"},{"ID":2653,"VillageID":1784,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-10T17:46:00Z","ServerKey":"us63"},{"ID":2654,"VillageID":4240,"NewOwnerID":389297,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-10T17:53:19Z","ServerKey":"us63"},{"ID":2655,"VillageID":1685,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-10T17:58:47Z","ServerKey":"us63"},{"ID":2656,"VillageID":5029,"NewOwnerID":848952732,"NewTribeID":91,"OldOwnerID":848917052,"OldTribeID":134,"Points":2517,"CreatedAt":"2023-02-10T17:59:57Z","ServerKey":"us63"},{"ID":2657,"VillageID":6094,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-10T18:08:31Z","ServerKey":"us63"},{"ID":2658,"VillageID":117,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-10T18:13:17Z","ServerKey":"us63"},{"ID":2659,"VillageID":1329,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":2817,"CreatedAt":"2023-02-10T18:14:47Z","ServerKey":"us63"},{"ID":2660,"VillageID":2279,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":671,"CreatedAt":"2023-02-10T18:16:04Z","ServerKey":"us63"},{"ID":2661,"VillageID":4744,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-10T18:27:37Z","ServerKey":"us63"},{"ID":2662,"VillageID":1295,"NewOwnerID":848897874,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-10T18:45:58Z","ServerKey":"us63"},{"ID":2663,"VillageID":626,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-10T18:54:53Z","ServerKey":"us63"},{"ID":2664,"VillageID":4185,"NewOwnerID":848954723,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-10T19:02:02Z","ServerKey":"us63"},{"ID":2665,"VillageID":2744,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1533,"CreatedAt":"2023-02-10T19:09:38Z","ServerKey":"us63"},{"ID":2666,"VillageID":5025,"NewOwnerID":848938594,"NewTribeID":4,"OldOwnerID":558331,"OldTribeID":0,"Points":677,"CreatedAt":"2023-02-10T19:40:01Z","ServerKey":"us63"},{"ID":2667,"VillageID":4954,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-10T19:55:49Z","ServerKey":"us63"},{"ID":2668,"VillageID":6547,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":776340,"OldTribeID":0,"Points":1619,"CreatedAt":"2023-02-10T19:58:50Z","ServerKey":"us63"},{"ID":2669,"VillageID":3008,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":901,"CreatedAt":"2023-02-10T20:07:12Z","ServerKey":"us63"},{"ID":2670,"VillageID":6328,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-10T20:19:58Z","ServerKey":"us63"},{"ID":2671,"VillageID":1122,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-10T20:31:00Z","ServerKey":"us63"},{"ID":2672,"VillageID":1959,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1154,"CreatedAt":"2023-02-10T20:32:49Z","ServerKey":"us63"},{"ID":2673,"VillageID":292,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-10T20:36:01Z","ServerKey":"us63"},{"ID":2674,"VillageID":2544,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":297,"CreatedAt":"2023-02-10T20:37:31Z","ServerKey":"us63"},{"ID":2675,"VillageID":4937,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":848952875,"OldTribeID":0,"Points":3784,"CreatedAt":"2023-02-10T20:37:40Z","ServerKey":"us63"},{"ID":2676,"VillageID":1956,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-10T20:51:01Z","ServerKey":"us63"},{"ID":2677,"VillageID":3489,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":8044,"CreatedAt":"2023-02-10T20:52:30Z","ServerKey":"us63"},{"ID":2678,"VillageID":3355,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3622,"CreatedAt":"2023-02-10T20:52:30Z","ServerKey":"us63"},{"ID":2679,"VillageID":764,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-10T20:56:54Z","ServerKey":"us63"},{"ID":2680,"VillageID":6872,"NewOwnerID":848954774,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-02-10T20:59:06Z","ServerKey":"us63"},{"ID":2681,"VillageID":6689,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":848935817,"OldTribeID":0,"Points":1680,"CreatedAt":"2023-02-10T21:13:44Z","ServerKey":"us63"},{"ID":2682,"VillageID":2039,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-10T21:39:06Z","ServerKey":"us63"},{"ID":2683,"VillageID":7138,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":783836,"OldTribeID":0,"Points":1702,"CreatedAt":"2023-02-10T21:40:47Z","ServerKey":"us63"},{"ID":2684,"VillageID":578,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-10T21:42:15Z","ServerKey":"us63"},{"ID":2685,"VillageID":5781,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-10T21:45:21Z","ServerKey":"us63"},{"ID":2686,"VillageID":4910,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-10T21:52:34Z","ServerKey":"us63"},{"ID":2687,"VillageID":1783,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-10T22:03:05Z","ServerKey":"us63"},{"ID":2688,"VillageID":1367,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-10T22:03:49Z","ServerKey":"us63"},{"ID":2689,"VillageID":6249,"NewOwnerID":848952862,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1244,"CreatedAt":"2023-02-10T22:07:45Z","ServerKey":"us63"},{"ID":2690,"VillageID":3207,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-10T22:22:34Z","ServerKey":"us63"},{"ID":2691,"VillageID":6409,"NewOwnerID":848951672,"NewTribeID":93,"OldOwnerID":848952862,"OldTribeID":0,"Points":4096,"CreatedAt":"2023-02-10T22:23:17Z","ServerKey":"us63"},{"ID":2692,"VillageID":1506,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-10T22:25:53Z","ServerKey":"us63"},{"ID":2693,"VillageID":3380,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-10T22:34:53Z","ServerKey":"us63"},{"ID":2694,"VillageID":5338,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-10T22:47:40Z","ServerKey":"us63"},{"ID":2695,"VillageID":5818,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-10T22:55:16Z","ServerKey":"us63"},{"ID":2696,"VillageID":1409,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-10T23:13:23Z","ServerKey":"us63"},{"ID":2697,"VillageID":1870,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-10T23:20:25Z","ServerKey":"us63"},{"ID":2698,"VillageID":1110,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-10T23:30:42Z","ServerKey":"us63"},{"ID":2699,"VillageID":5627,"NewOwnerID":789326,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-10T23:42:59Z","ServerKey":"us63"},{"ID":2700,"VillageID":3328,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-10T23:46:41Z","ServerKey":"us63"},{"ID":2701,"VillageID":3631,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-10T23:50:30Z","ServerKey":"us63"},{"ID":2702,"VillageID":2011,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-11T00:01:01Z","ServerKey":"us63"},{"ID":2703,"VillageID":7817,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":769,"CreatedAt":"2023-02-11T00:17:15Z","ServerKey":"us63"},{"ID":2704,"VillageID":4588,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-11T00:24:38Z","ServerKey":"us63"},{"ID":2705,"VillageID":3048,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-11T00:35:52Z","ServerKey":"us63"},{"ID":2706,"VillageID":3477,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-11T00:37:54Z","ServerKey":"us63"},{"ID":2707,"VillageID":3665,"NewOwnerID":679915,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-11T00:39:16Z","ServerKey":"us63"},{"ID":2708,"VillageID":5154,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-11T00:45:02Z","ServerKey":"us63"},{"ID":2709,"VillageID":7218,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-11T00:51:24Z","ServerKey":"us63"},{"ID":2710,"VillageID":3439,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-11T01:00:40Z","ServerKey":"us63"},{"ID":2711,"VillageID":3439,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":848951023,"OldTribeID":48,"Points":225,"CreatedAt":"2023-02-11T01:00:48Z","ServerKey":"us63"},{"ID":2712,"VillageID":8138,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-11T01:01:46Z","ServerKey":"us63"},{"ID":2713,"VillageID":1286,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":314,"CreatedAt":"2023-02-11T01:14:05Z","ServerKey":"us63"},{"ID":2714,"VillageID":4116,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-11T01:18:29Z","ServerKey":"us63"},{"ID":2715,"VillageID":7816,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-11T01:35:28Z","ServerKey":"us63"},{"ID":2716,"VillageID":2126,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848943740,"OldTribeID":0,"Points":1083,"CreatedAt":"2023-02-11T01:51:21Z","ServerKey":"us63"},{"ID":2717,"VillageID":3366,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-11T01:51:28Z","ServerKey":"us63"},{"ID":2718,"VillageID":284,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-11T01:56:03Z","ServerKey":"us63"},{"ID":2719,"VillageID":1159,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-11T02:00:56Z","ServerKey":"us63"},{"ID":2720,"VillageID":5423,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-11T02:04:25Z","ServerKey":"us63"},{"ID":2721,"VillageID":838,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-11T02:13:53Z","ServerKey":"us63"},{"ID":2722,"VillageID":5946,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-11T02:13:59Z","ServerKey":"us63"},{"ID":2723,"VillageID":5276,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":848953281,"OldTribeID":0,"Points":1340,"CreatedAt":"2023-02-11T02:17:27Z","ServerKey":"us63"},{"ID":2724,"VillageID":3071,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-11T02:24:56Z","ServerKey":"us63"},{"ID":2725,"VillageID":7834,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":848955373,"OldTribeID":0,"Points":826,"CreatedAt":"2023-02-11T02:36:48Z","ServerKey":"us63"},{"ID":2726,"VillageID":1259,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-11T02:38:43Z","ServerKey":"us63"},{"ID":2727,"VillageID":1259,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":224,"CreatedAt":"2023-02-11T02:38:43Z","ServerKey":"us63"},{"ID":2728,"VillageID":1878,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-11T02:41:48Z","ServerKey":"us63"},{"ID":2729,"VillageID":3305,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-11T02:47:56Z","ServerKey":"us63"},{"ID":2730,"VillageID":3063,"NewOwnerID":620806,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-11T02:50:18Z","ServerKey":"us63"},{"ID":2731,"VillageID":4264,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-11T02:58:06Z","ServerKey":"us63"},{"ID":2732,"VillageID":2947,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-11T03:00:44Z","ServerKey":"us63"},{"ID":2733,"VillageID":4801,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-11T03:28:04Z","ServerKey":"us63"},{"ID":2734,"VillageID":6127,"NewOwnerID":848955145,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-11T03:36:02Z","ServerKey":"us63"},{"ID":2735,"VillageID":8895,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-11T03:38:10Z","ServerKey":"us63"},{"ID":2736,"VillageID":1545,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-11T03:39:30Z","ServerKey":"us63"},{"ID":2737,"VillageID":7908,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":56,"CreatedAt":"2023-02-11T03:40:56Z","ServerKey":"us63"},{"ID":2738,"VillageID":3323,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":2220,"CreatedAt":"2023-02-11T03:46:58Z","ServerKey":"us63"},{"ID":2739,"VillageID":5758,"NewOwnerID":848954475,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-11T03:52:40Z","ServerKey":"us63"},{"ID":2740,"VillageID":2520,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-11T03:58:54Z","ServerKey":"us63"},{"ID":2741,"VillageID":5211,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-11T03:59:16Z","ServerKey":"us63"},{"ID":2742,"VillageID":371,"NewOwnerID":848925799,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-11T04:19:37Z","ServerKey":"us63"},{"ID":2743,"VillageID":4389,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-11T04:27:19Z","ServerKey":"us63"},{"ID":2744,"VillageID":4389,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":188,"CreatedAt":"2023-02-11T04:27:19Z","ServerKey":"us63"},{"ID":2745,"VillageID":620,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":478,"CreatedAt":"2023-02-11T04:52:18Z","ServerKey":"us63"},{"ID":2746,"VillageID":5281,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-11T04:56:41Z","ServerKey":"us63"},{"ID":2747,"VillageID":6543,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-11T05:08:37Z","ServerKey":"us63"},{"ID":2748,"VillageID":7169,"NewOwnerID":775730,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-11T05:14:48Z","ServerKey":"us63"},{"ID":2749,"VillageID":3732,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-11T05:23:31Z","ServerKey":"us63"},{"ID":2750,"VillageID":1972,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":651,"CreatedAt":"2023-02-11T05:26:40Z","ServerKey":"us63"},{"ID":2751,"VillageID":2406,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":1238,"CreatedAt":"2023-02-11T05:54:16Z","ServerKey":"us63"},{"ID":2752,"VillageID":4647,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-11T05:56:31Z","ServerKey":"us63"},{"ID":2753,"VillageID":2197,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-11T06:03:14Z","ServerKey":"us63"},{"ID":2754,"VillageID":5100,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-11T06:09:29Z","ServerKey":"us63"},{"ID":2755,"VillageID":6707,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":712074,"OldTribeID":0,"Points":1468,"CreatedAt":"2023-02-11T06:22:24Z","ServerKey":"us63"},{"ID":2756,"VillageID":2157,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-11T06:31:32Z","ServerKey":"us63"},{"ID":2757,"VillageID":1477,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":4122,"CreatedAt":"2023-02-11T06:53:03Z","ServerKey":"us63"},{"ID":2758,"VillageID":1309,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-11T06:55:58Z","ServerKey":"us63"},{"ID":2759,"VillageID":1309,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":176,"CreatedAt":"2023-02-11T06:55:58Z","ServerKey":"us63"},{"ID":2760,"VillageID":6145,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-11T07:00:45Z","ServerKey":"us63"},{"ID":2761,"VillageID":5096,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-11T07:10:14Z","ServerKey":"us63"},{"ID":2762,"VillageID":852,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-11T07:14:43Z","ServerKey":"us63"},{"ID":2763,"VillageID":1163,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-11T07:16:20Z","ServerKey":"us63"},{"ID":2764,"VillageID":145,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-11T07:18:54Z","ServerKey":"us63"},{"ID":2765,"VillageID":281,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-11T07:19:31Z","ServerKey":"us63"},{"ID":2766,"VillageID":965,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-11T07:50:14Z","ServerKey":"us63"},{"ID":2767,"VillageID":1444,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":2016,"CreatedAt":"2023-02-11T07:59:55Z","ServerKey":"us63"},{"ID":2768,"VillageID":8526,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-11T08:00:14Z","ServerKey":"us63"},{"ID":2769,"VillageID":1538,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-11T08:38:19Z","ServerKey":"us63"},{"ID":2770,"VillageID":7288,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":848925848,"OldTribeID":134,"Points":1727,"CreatedAt":"2023-02-11T08:49:15Z","ServerKey":"us63"},{"ID":2771,"VillageID":4354,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848954812,"OldTribeID":65,"Points":3977,"CreatedAt":"2023-02-11T09:01:14Z","ServerKey":"us63"},{"ID":2772,"VillageID":160,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-11T09:02:50Z","ServerKey":"us63"},{"ID":2773,"VillageID":6321,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-11T09:04:38Z","ServerKey":"us63"},{"ID":2774,"VillageID":2003,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":587894,"OldTribeID":48,"Points":4891,"CreatedAt":"2023-02-11T09:11:56Z","ServerKey":"us63"},{"ID":2775,"VillageID":7183,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-11T09:18:35Z","ServerKey":"us63"},{"ID":2776,"VillageID":2139,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-11T09:29:08Z","ServerKey":"us63"},{"ID":2777,"VillageID":8912,"NewOwnerID":741238,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-11T10:17:51Z","ServerKey":"us63"},{"ID":2778,"VillageID":3322,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":474,"CreatedAt":"2023-02-11T10:25:50Z","ServerKey":"us63"},{"ID":2779,"VillageID":2003,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":587894,"OldTribeID":48,"Points":4772,"CreatedAt":"2023-02-11T11:00:00Z","ServerKey":"us63"},{"ID":2780,"VillageID":2003,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":780339,"OldTribeID":74,"Points":4435,"CreatedAt":"2023-02-11T11:00:14Z","ServerKey":"us63"},{"ID":2781,"VillageID":3545,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-11T11:05:44Z","ServerKey":"us63"},{"ID":2782,"VillageID":1718,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-11T11:33:16Z","ServerKey":"us63"},{"ID":2783,"VillageID":968,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-11T11:39:56Z","ServerKey":"us63"},{"ID":2784,"VillageID":455,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":9148,"CreatedAt":"2023-02-11T11:46:21Z","ServerKey":"us63"},{"ID":2785,"VillageID":1095,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-11T12:09:56Z","ServerKey":"us63"},{"ID":2786,"VillageID":1935,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-11T12:09:56Z","ServerKey":"us63"},{"ID":2787,"VillageID":4832,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-11T12:23:11Z","ServerKey":"us63"},{"ID":2788,"VillageID":5640,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-11T12:43:06Z","ServerKey":"us63"},{"ID":2789,"VillageID":584,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-11T12:45:12Z","ServerKey":"us63"},{"ID":2790,"VillageID":573,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-11T12:53:40Z","ServerKey":"us63"},{"ID":2791,"VillageID":1501,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-11T12:54:46Z","ServerKey":"us63"},{"ID":2792,"VillageID":3741,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-11T13:09:54Z","ServerKey":"us63"},{"ID":2793,"VillageID":7390,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-11T13:20:32Z","ServerKey":"us63"},{"ID":2794,"VillageID":8879,"NewOwnerID":848948099,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-11T13:31:10Z","ServerKey":"us63"},{"ID":2795,"VillageID":3775,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-11T13:53:51Z","ServerKey":"us63"},{"ID":2796,"VillageID":127,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-11T13:54:57Z","ServerKey":"us63"},{"ID":2797,"VillageID":1768,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":881,"CreatedAt":"2023-02-11T14:04:34Z","ServerKey":"us63"},{"ID":2798,"VillageID":5722,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-11T14:09:56Z","ServerKey":"us63"},{"ID":2799,"VillageID":428,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-11T14:24:21Z","ServerKey":"us63"},{"ID":2800,"VillageID":6991,"NewOwnerID":848955238,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-02-11T14:25:55Z","ServerKey":"us63"},{"ID":2801,"VillageID":5688,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-11T14:33:59Z","ServerKey":"us63"},{"ID":2802,"VillageID":3372,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-11T14:55:31Z","ServerKey":"us63"},{"ID":2803,"VillageID":345,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-11T15:00:03Z","ServerKey":"us63"},{"ID":2804,"VillageID":5656,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-11T15:01:12Z","ServerKey":"us63"},{"ID":2805,"VillageID":7059,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848955238,"OldTribeID":216,"Points":3319,"CreatedAt":"2023-02-11T15:10:46Z","ServerKey":"us63"},{"ID":2806,"VillageID":5801,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-11T15:19:18Z","ServerKey":"us63"},{"ID":2807,"VillageID":442,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":365,"CreatedAt":"2023-02-11T15:33:00Z","ServerKey":"us63"},{"ID":2808,"VillageID":2979,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-11T15:33:04Z","ServerKey":"us63"},{"ID":2809,"VillageID":669,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-11T15:40:01Z","ServerKey":"us63"},{"ID":2810,"VillageID":414,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-11T15:40:47Z","ServerKey":"us63"},{"ID":2811,"VillageID":505,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-11T16:02:53Z","ServerKey":"us63"},{"ID":2812,"VillageID":4125,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":242,"CreatedAt":"2023-02-11T16:09:39Z","ServerKey":"us63"},{"ID":2813,"VillageID":7490,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-11T16:15:17Z","ServerKey":"us63"},{"ID":2814,"VillageID":3131,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-11T16:17:19Z","ServerKey":"us63"},{"ID":2815,"VillageID":7730,"NewOwnerID":1582,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-11T16:23:12Z","ServerKey":"us63"},{"ID":2816,"VillageID":3478,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-11T16:24:04Z","ServerKey":"us63"},{"ID":2817,"VillageID":7525,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":848955323,"OldTribeID":0,"Points":695,"CreatedAt":"2023-02-11T16:31:08Z","ServerKey":"us63"},{"ID":2818,"VillageID":1699,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-11T16:36:45Z","ServerKey":"us63"},{"ID":2819,"VillageID":1790,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-11T16:47:54Z","ServerKey":"us63"},{"ID":2820,"VillageID":1324,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-11T17:01:20Z","ServerKey":"us63"},{"ID":2821,"VillageID":1339,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-11T17:01:46Z","ServerKey":"us63"},{"ID":2822,"VillageID":1413,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-11T17:01:51Z","ServerKey":"us63"},{"ID":2823,"VillageID":5278,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-11T17:56:11Z","ServerKey":"us63"},{"ID":2824,"VillageID":1572,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":3317,"CreatedAt":"2023-02-11T17:57:45Z","ServerKey":"us63"},{"ID":2825,"VillageID":7365,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-11T18:12:26Z","ServerKey":"us63"},{"ID":2826,"VillageID":7748,"NewOwnerID":1582,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-11T18:12:30Z","ServerKey":"us63"},{"ID":2827,"VillageID":4136,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848899662,"OldTribeID":127,"Points":3866,"CreatedAt":"2023-02-11T18:12:56Z","ServerKey":"us63"},{"ID":2828,"VillageID":1472,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-11T18:22:52Z","ServerKey":"us63"},{"ID":2829,"VillageID":7831,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":848955372,"OldTribeID":191,"Points":949,"CreatedAt":"2023-02-11T19:07:25Z","ServerKey":"us63"},{"ID":2830,"VillageID":4480,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-11T19:13:05Z","ServerKey":"us63"},{"ID":2831,"VillageID":4288,"NewOwnerID":272678,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-11T19:15:37Z","ServerKey":"us63"},{"ID":2832,"VillageID":8131,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-11T19:43:58Z","ServerKey":"us63"},{"ID":2833,"VillageID":4823,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-11T19:44:17Z","ServerKey":"us63"},{"ID":2834,"VillageID":7805,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-11T20:06:04Z","ServerKey":"us63"},{"ID":2835,"VillageID":2308,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":3147,"CreatedAt":"2023-02-11T20:11:32Z","ServerKey":"us63"},{"ID":2836,"VillageID":2829,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-11T20:45:21Z","ServerKey":"us63"},{"ID":2837,"VillageID":2559,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848943740,"OldTribeID":0,"Points":6135,"CreatedAt":"2023-02-11T21:05:56Z","ServerKey":"us63"},{"ID":2838,"VillageID":5786,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-11T21:09:11Z","ServerKey":"us63"},{"ID":2839,"VillageID":5786,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":45,"CreatedAt":"2023-02-11T21:09:11Z","ServerKey":"us63"},{"ID":2840,"VillageID":1971,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":2110,"CreatedAt":"2023-02-11T21:24:06Z","ServerKey":"us63"},{"ID":2841,"VillageID":7443,"NewOwnerID":848954744,"NewTribeID":172,"OldOwnerID":848933502,"OldTribeID":0,"Points":869,"CreatedAt":"2023-02-11T21:33:22Z","ServerKey":"us63"},{"ID":2842,"VillageID":1971,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":587894,"OldTribeID":48,"Points":2027,"CreatedAt":"2023-02-11T21:36:31Z","ServerKey":"us63"},{"ID":2843,"VillageID":3659,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-11T21:36:38Z","ServerKey":"us63"},{"ID":2844,"VillageID":3716,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":848943308,"OldTribeID":22,"Points":779,"CreatedAt":"2023-02-11T22:03:10Z","ServerKey":"us63"},{"ID":2845,"VillageID":6482,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-11T22:03:49Z","ServerKey":"us63"},{"ID":2846,"VillageID":2966,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":285,"CreatedAt":"2023-02-11T22:10:10Z","ServerKey":"us63"},{"ID":2847,"VillageID":1672,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-11T22:28:05Z","ServerKey":"us63"},{"ID":2848,"VillageID":3304,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-11T22:35:05Z","ServerKey":"us63"},{"ID":2849,"VillageID":268,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-11T22:37:41Z","ServerKey":"us63"},{"ID":2850,"VillageID":45,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-11T22:50:04Z","ServerKey":"us63"},{"ID":2851,"VillageID":2865,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848925398,"OldTribeID":0,"Points":1773,"CreatedAt":"2023-02-11T22:54:00Z","ServerKey":"us63"},{"ID":2852,"VillageID":2810,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-11T22:55:05Z","ServerKey":"us63"},{"ID":2853,"VillageID":5292,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-11T23:00:39Z","ServerKey":"us63"},{"ID":2854,"VillageID":5292,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":117,"CreatedAt":"2023-02-11T23:00:39Z","ServerKey":"us63"},{"ID":2855,"VillageID":1697,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-11T23:16:58Z","ServerKey":"us63"},{"ID":2856,"VillageID":1649,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-11T23:17:02Z","ServerKey":"us63"},{"ID":2857,"VillageID":6835,"NewOwnerID":848908351,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-11T23:21:33Z","ServerKey":"us63"},{"ID":2858,"VillageID":1670,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-11T23:29:27Z","ServerKey":"us63"},{"ID":2859,"VillageID":6156,"NewOwnerID":848955067,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1413,"CreatedAt":"2023-02-11T23:33:37Z","ServerKey":"us63"},{"ID":2860,"VillageID":885,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-12T00:00:00Z","ServerKey":"us63"},{"ID":2861,"VillageID":2064,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-12T00:00:49Z","ServerKey":"us63"},{"ID":2862,"VillageID":3638,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-12T00:16:10Z","ServerKey":"us63"},{"ID":2863,"VillageID":1061,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848925799,"OldTribeID":0,"Points":4222,"CreatedAt":"2023-02-12T00:41:02Z","ServerKey":"us63"},{"ID":2864,"VillageID":1933,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":2048,"CreatedAt":"2023-02-12T00:43:53Z","ServerKey":"us63"},{"ID":2865,"VillageID":1052,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-12T00:50:24Z","ServerKey":"us63"},{"ID":2866,"VillageID":7805,"NewOwnerID":775730,"NewTribeID":105,"OldOwnerID":848955081,"OldTribeID":172,"Points":176,"CreatedAt":"2023-02-12T00:55:51Z","ServerKey":"us63"},{"ID":2867,"VillageID":1941,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":626,"CreatedAt":"2023-02-12T01:09:14Z","ServerKey":"us63"},{"ID":2868,"VillageID":2337,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-12T01:09:25Z","ServerKey":"us63"},{"ID":2869,"VillageID":2371,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-12T01:15:20Z","ServerKey":"us63"},{"ID":2870,"VillageID":2423,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":321370,"OldTribeID":69,"Points":12154,"CreatedAt":"2023-02-12T01:16:06Z","ServerKey":"us63"},{"ID":2871,"VillageID":7537,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-12T01:30:25Z","ServerKey":"us63"},{"ID":2872,"VillageID":2103,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":652,"CreatedAt":"2023-02-12T01:44:14Z","ServerKey":"us63"},{"ID":2873,"VillageID":1182,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-12T01:48:25Z","ServerKey":"us63"},{"ID":2874,"VillageID":1182,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":306,"CreatedAt":"2023-02-12T01:48:25Z","ServerKey":"us63"},{"ID":2875,"VillageID":1182,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":282,"CreatedAt":"2023-02-12T01:48:27Z","ServerKey":"us63"},{"ID":2876,"VillageID":5862,"NewOwnerID":848955008,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-12T01:53:09Z","ServerKey":"us63"},{"ID":2877,"VillageID":3457,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-12T02:01:56Z","ServerKey":"us63"},{"ID":2878,"VillageID":367,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-12T02:04:25Z","ServerKey":"us63"},{"ID":2879,"VillageID":1781,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-12T02:27:36Z","ServerKey":"us63"},{"ID":2880,"VillageID":1270,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-12T02:40:00Z","ServerKey":"us63"},{"ID":2881,"VillageID":6423,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-12T02:41:55Z","ServerKey":"us63"},{"ID":2882,"VillageID":480,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-12T02:48:45Z","ServerKey":"us63"},{"ID":2883,"VillageID":1017,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-12T03:00:01Z","ServerKey":"us63"},{"ID":2884,"VillageID":5141,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-12T03:05:29Z","ServerKey":"us63"},{"ID":2885,"VillageID":3246,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":511,"CreatedAt":"2023-02-12T03:06:00Z","ServerKey":"us63"},{"ID":2886,"VillageID":3520,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1578,"CreatedAt":"2023-02-12T03:15:16Z","ServerKey":"us63"},{"ID":2887,"VillageID":296,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":321370,"OldTribeID":69,"Points":11241,"CreatedAt":"2023-02-12T03:18:13Z","ServerKey":"us63"},{"ID":2888,"VillageID":5345,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-12T03:18:33Z","ServerKey":"us63"},{"ID":2889,"VillageID":7403,"NewOwnerID":455512,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-02-12T03:28:47Z","ServerKey":"us63"},{"ID":2890,"VillageID":8142,"NewOwnerID":848955157,"NewTribeID":162,"OldOwnerID":848955425,"OldTribeID":206,"Points":884,"CreatedAt":"2023-02-12T03:45:04Z","ServerKey":"us63"},{"ID":2891,"VillageID":1851,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-12T03:49:51Z","ServerKey":"us63"},{"ID":2892,"VillageID":3194,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":182,"Points":9329,"CreatedAt":"2023-02-12T04:00:00Z","ServerKey":"us63"},{"ID":2893,"VillageID":855,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":741238,"OldTribeID":182,"Points":4925,"CreatedAt":"2023-02-12T04:00:00Z","ServerKey":"us63"},{"ID":2894,"VillageID":1919,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":3942,"CreatedAt":"2023-02-12T04:05:45Z","ServerKey":"us63"},{"ID":2895,"VillageID":1541,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-12T04:14:22Z","ServerKey":"us63"},{"ID":2896,"VillageID":7675,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-12T04:18:41Z","ServerKey":"us63"},{"ID":2897,"VillageID":4626,"NewOwnerID":848905385,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-12T04:20:33Z","ServerKey":"us63"},{"ID":2898,"VillageID":6255,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-12T04:21:14Z","ServerKey":"us63"},{"ID":2899,"VillageID":123,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-12T04:26:37Z","ServerKey":"us63"},{"ID":2900,"VillageID":6171,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-12T04:31:23Z","ServerKey":"us63"},{"ID":2901,"VillageID":1907,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":3131,"CreatedAt":"2023-02-12T04:41:27Z","ServerKey":"us63"},{"ID":2902,"VillageID":1907,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":587894,"OldTribeID":48,"Points":3131,"CreatedAt":"2023-02-12T04:41:27Z","ServerKey":"us63"},{"ID":2903,"VillageID":310,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-12T04:45:09Z","ServerKey":"us63"},{"ID":2904,"VillageID":1819,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":9733,"CreatedAt":"2023-02-12T04:50:48Z","ServerKey":"us63"},{"ID":2905,"VillageID":2429,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848953610,"OldTribeID":34,"Points":3448,"CreatedAt":"2023-02-12T04:52:14Z","ServerKey":"us63"},{"ID":2906,"VillageID":6836,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848954548,"OldTribeID":0,"Points":379,"CreatedAt":"2023-02-12T04:58:52Z","ServerKey":"us63"},{"ID":2907,"VillageID":841,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":10466,"CreatedAt":"2023-02-12T05:05:35Z","ServerKey":"us63"},{"ID":2908,"VillageID":3884,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-12T05:17:55Z","ServerKey":"us63"},{"ID":2909,"VillageID":2086,"NewOwnerID":848911465,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-12T05:22:33Z","ServerKey":"us63"},{"ID":2910,"VillageID":8697,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-12T05:25:21Z","ServerKey":"us63"},{"ID":2911,"VillageID":7552,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-12T05:38:53Z","ServerKey":"us63"},{"ID":2912,"VillageID":5867,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-12T06:01:38Z","ServerKey":"us63"},{"ID":2913,"VillageID":3242,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":741238,"OldTribeID":0,"Points":2848,"CreatedAt":"2023-02-12T06:20:20Z","ServerKey":"us63"},{"ID":2914,"VillageID":3876,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":5950,"CreatedAt":"2023-02-12T06:23:25Z","ServerKey":"us63"},{"ID":2915,"VillageID":3876,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":264792,"OldTribeID":138,"Points":5950,"CreatedAt":"2023-02-12T06:23:25Z","ServerKey":"us63"},{"ID":2916,"VillageID":61,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-12T06:28:00Z","ServerKey":"us63"},{"ID":2917,"VillageID":1763,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848881936,"OldTribeID":5,"Points":1648,"CreatedAt":"2023-02-12T06:30:13Z","ServerKey":"us63"},{"ID":2918,"VillageID":8750,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":47,"CreatedAt":"2023-02-12T06:36:28Z","ServerKey":"us63"},{"ID":2919,"VillageID":8230,"NewOwnerID":1582,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-12T06:36:31Z","ServerKey":"us63"},{"ID":2920,"VillageID":7461,"NewOwnerID":848938227,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-12T06:41:40Z","ServerKey":"us63"},{"ID":2921,"VillageID":80,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-12T06:44:10Z","ServerKey":"us63"},{"ID":2922,"VillageID":1175,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":248,"CreatedAt":"2023-02-12T06:47:23Z","ServerKey":"us63"},{"ID":2923,"VillageID":417,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848881936,"OldTribeID":5,"Points":1367,"CreatedAt":"2023-02-12T07:03:44Z","ServerKey":"us63"},{"ID":2924,"VillageID":5524,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-12T07:27:25Z","ServerKey":"us63"},{"ID":2925,"VillageID":1742,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-12T07:39:23Z","ServerKey":"us63"},{"ID":2926,"VillageID":1333,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-12T08:01:54Z","ServerKey":"us63"},{"ID":2927,"VillageID":366,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-12T08:10:44Z","ServerKey":"us63"},{"ID":2928,"VillageID":963,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-12T08:13:01Z","ServerKey":"us63"},{"ID":2929,"VillageID":1741,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-12T08:27:22Z","ServerKey":"us63"},{"ID":2930,"VillageID":1486,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-12T08:38:00Z","ServerKey":"us63"},{"ID":2931,"VillageID":1823,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-12T08:45:33Z","ServerKey":"us63"},{"ID":2932,"VillageID":1823,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":594491,"OldTribeID":86,"Points":234,"CreatedAt":"2023-02-12T08:45:33Z","ServerKey":"us63"},{"ID":2933,"VillageID":8436,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":848955474,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-12T08:54:29Z","ServerKey":"us63"},{"ID":2934,"VillageID":1971,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":2015,"CreatedAt":"2023-02-12T09:06:42Z","ServerKey":"us63"},{"ID":2935,"VillageID":647,"NewOwnerID":848952024,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-12T09:16:36Z","ServerKey":"us63"},{"ID":2936,"VillageID":6434,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":772572,"OldTribeID":0,"Points":2136,"CreatedAt":"2023-02-12T09:19:32Z","ServerKey":"us63"},{"ID":2937,"VillageID":1301,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-12T09:37:59Z","ServerKey":"us63"},{"ID":2938,"VillageID":1807,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-12T09:41:37Z","ServerKey":"us63"},{"ID":2939,"VillageID":1746,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-12T09:54:25Z","ServerKey":"us63"},{"ID":2940,"VillageID":7105,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-12T09:55:56Z","ServerKey":"us63"},{"ID":2941,"VillageID":501,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-12T10:01:09Z","ServerKey":"us63"},{"ID":2942,"VillageID":2708,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-12T10:15:48Z","ServerKey":"us63"},{"ID":2943,"VillageID":4460,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-12T10:16:14Z","ServerKey":"us63"},{"ID":2944,"VillageID":714,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-12T10:17:35Z","ServerKey":"us63"},{"ID":2945,"VillageID":770,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-12T10:23:39Z","ServerKey":"us63"},{"ID":2946,"VillageID":3188,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-12T10:28:33Z","ServerKey":"us63"},{"ID":2947,"VillageID":647,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848952024,"OldTribeID":163,"Points":197,"CreatedAt":"2023-02-12T11:15:13Z","ServerKey":"us63"},{"ID":2948,"VillageID":970,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-12T11:32:00Z","ServerKey":"us63"},{"ID":2949,"VillageID":133,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":416,"CreatedAt":"2023-02-12T11:49:28Z","ServerKey":"us63"},{"ID":2950,"VillageID":2351,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":654,"CreatedAt":"2023-02-12T11:52:29Z","ServerKey":"us63"},{"ID":2951,"VillageID":4370,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":848905385,"OldTribeID":0,"Points":570,"CreatedAt":"2023-02-12T11:55:59Z","ServerKey":"us63"},{"ID":2952,"VillageID":8908,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-12T12:07:04Z","ServerKey":"us63"},{"ID":2953,"VillageID":1899,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-12T12:07:59Z","ServerKey":"us63"},{"ID":2954,"VillageID":2006,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-12T12:11:05Z","ServerKey":"us63"},{"ID":2955,"VillageID":578,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":779484,"OldTribeID":48,"Points":601,"CreatedAt":"2023-02-12T12:11:13Z","ServerKey":"us63"},{"ID":2956,"VillageID":2806,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-12T12:36:03Z","ServerKey":"us63"},{"ID":2957,"VillageID":3460,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-12T12:41:52Z","ServerKey":"us63"},{"ID":2958,"VillageID":992,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-12T13:06:36Z","ServerKey":"us63"},{"ID":2959,"VillageID":4048,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-12T13:10:55Z","ServerKey":"us63"},{"ID":2960,"VillageID":2499,"NewOwnerID":848940914,"NewTribeID":150,"OldOwnerID":848954532,"OldTribeID":49,"Points":825,"CreatedAt":"2023-02-12T13:39:55Z","ServerKey":"us63"},{"ID":2961,"VillageID":1798,"NewOwnerID":848937811,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-12T13:48:00Z","ServerKey":"us63"},{"ID":2962,"VillageID":3428,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-12T13:48:52Z","ServerKey":"us63"},{"ID":2963,"VillageID":1836,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-12T13:50:00Z","ServerKey":"us63"},{"ID":2964,"VillageID":1202,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-12T13:52:46Z","ServerKey":"us63"},{"ID":2965,"VillageID":647,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":197,"CreatedAt":"2023-02-12T14:04:58Z","ServerKey":"us63"},{"ID":2966,"VillageID":2270,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":788,"CreatedAt":"2023-02-12T14:25:09Z","ServerKey":"us63"},{"ID":2967,"VillageID":3024,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":2088,"CreatedAt":"2023-02-12T14:32:25Z","ServerKey":"us63"},{"ID":2968,"VillageID":2148,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-12T14:37:40Z","ServerKey":"us63"},{"ID":2969,"VillageID":3082,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-12T14:39:02Z","ServerKey":"us63"},{"ID":2970,"VillageID":4113,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-12T14:54:17Z","ServerKey":"us63"},{"ID":2971,"VillageID":7634,"NewOwnerID":302611,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-12T15:08:33Z","ServerKey":"us63"},{"ID":2972,"VillageID":2395,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-12T15:22:10Z","ServerKey":"us63"},{"ID":2973,"VillageID":3711,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-12T15:34:19Z","ServerKey":"us63"},{"ID":2974,"VillageID":5812,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-12T15:45:14Z","ServerKey":"us63"},{"ID":2975,"VillageID":3046,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-12T15:49:22Z","ServerKey":"us63"},{"ID":2976,"VillageID":374,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-12T15:52:10Z","ServerKey":"us63"},{"ID":2977,"VillageID":2794,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-12T15:58:28Z","ServerKey":"us63"},{"ID":2978,"VillageID":2598,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-12T16:04:02Z","ServerKey":"us63"},{"ID":2979,"VillageID":3315,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-12T16:09:35Z","ServerKey":"us63"},{"ID":2980,"VillageID":1145,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-12T16:11:24Z","ServerKey":"us63"},{"ID":2981,"VillageID":2205,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":848952875,"OldTribeID":0,"Points":2163,"CreatedAt":"2023-02-12T16:14:43Z","ServerKey":"us63"},{"ID":2982,"VillageID":3055,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-12T16:17:27Z","ServerKey":"us63"},{"ID":2983,"VillageID":523,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-12T16:25:09Z","ServerKey":"us63"},{"ID":2984,"VillageID":523,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":304,"CreatedAt":"2023-02-12T16:25:09Z","ServerKey":"us63"},{"ID":2986,"VillageID":7093,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-12T16:31:15Z","ServerKey":"us63"},{"ID":2987,"VillageID":6314,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-12T16:31:33Z","ServerKey":"us63"},{"ID":2988,"VillageID":5001,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-12T16:52:05Z","ServerKey":"us63"},{"ID":2989,"VillageID":6539,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-02-12T16:52:33Z","ServerKey":"us63"},{"ID":2990,"VillageID":7947,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-12T16:57:36Z","ServerKey":"us63"},{"ID":2991,"VillageID":8208,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-12T17:01:00Z","ServerKey":"us63"},{"ID":2992,"VillageID":7503,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-02-12T17:02:53Z","ServerKey":"us63"},{"ID":2993,"VillageID":7503,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":848949493,"OldTribeID":48,"Points":90,"CreatedAt":"2023-02-12T17:02:53Z","ServerKey":"us63"},{"ID":2996,"VillageID":2722,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-12T17:04:48Z","ServerKey":"us63"},{"ID":2997,"VillageID":4609,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-12T17:09:46Z","ServerKey":"us63"},{"ID":2998,"VillageID":2390,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-12T17:12:27Z","ServerKey":"us63"},{"ID":2999,"VillageID":2812,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-12T17:19:12Z","ServerKey":"us63"},{"ID":3000,"VillageID":1510,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":677,"CreatedAt":"2023-02-12T17:28:21Z","ServerKey":"us63"},{"ID":3001,"VillageID":8377,"NewOwnerID":848954719,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-02-12T17:41:22Z","ServerKey":"us63"},{"ID":3002,"VillageID":8495,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-12T18:04:40Z","ServerKey":"us63"},{"ID":3003,"VillageID":3779,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-12T18:09:54Z","ServerKey":"us63"},{"ID":3004,"VillageID":301,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-12T18:17:29Z","ServerKey":"us63"},{"ID":3005,"VillageID":3889,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":6928,"CreatedAt":"2023-02-12T18:28:00Z","ServerKey":"us63"},{"ID":3006,"VillageID":1879,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-12T18:29:19Z","ServerKey":"us63"},{"ID":3007,"VillageID":1932,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-12T18:41:13Z","ServerKey":"us63"},{"ID":3008,"VillageID":3288,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-12T18:49:26Z","ServerKey":"us63"},{"ID":3009,"VillageID":1905,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":431,"CreatedAt":"2023-02-12T18:57:43Z","ServerKey":"us63"},{"ID":3010,"VillageID":2655,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-12T19:00:08Z","ServerKey":"us63"},{"ID":3011,"VillageID":177,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-12T19:03:35Z","ServerKey":"us63"},{"ID":3012,"VillageID":2228,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-12T19:04:11Z","ServerKey":"us63"},{"ID":3013,"VillageID":3092,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-12T19:14:16Z","ServerKey":"us63"},{"ID":3014,"VillageID":3092,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":264792,"OldTribeID":138,"Points":331,"CreatedAt":"2023-02-12T19:14:16Z","ServerKey":"us63"},{"ID":3015,"VillageID":2370,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-12T19:22:15Z","ServerKey":"us63"},{"ID":3016,"VillageID":3199,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-12T19:27:50Z","ServerKey":"us63"},{"ID":3017,"VillageID":7158,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-12T19:34:11Z","ServerKey":"us63"},{"ID":3018,"VillageID":2655,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":616498,"OldTribeID":48,"Points":389,"CreatedAt":"2023-02-12T19:40:06Z","ServerKey":"us63"},{"ID":3019,"VillageID":2655,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848954640,"OldTribeID":2,"Points":389,"CreatedAt":"2023-02-12T19:40:06Z","ServerKey":"us63"},{"ID":3022,"VillageID":2167,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-12T19:40:14Z","ServerKey":"us63"},{"ID":3023,"VillageID":809,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-12T19:46:47Z","ServerKey":"us63"},{"ID":3024,"VillageID":6951,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-12T19:57:29Z","ServerKey":"us63"},{"ID":3025,"VillageID":6940,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-02-12T20:02:42Z","ServerKey":"us63"},{"ID":3026,"VillageID":3483,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":339,"CreatedAt":"2023-02-12T20:08:36Z","ServerKey":"us63"},{"ID":3027,"VillageID":4564,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-12T20:11:14Z","ServerKey":"us63"},{"ID":3028,"VillageID":6761,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-12T20:25:47Z","ServerKey":"us63"},{"ID":3029,"VillageID":7578,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-12T20:27:41Z","ServerKey":"us63"},{"ID":3030,"VillageID":1519,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-12T20:29:41Z","ServerKey":"us63"},{"ID":3031,"VillageID":147,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":376,"CreatedAt":"2023-02-12T20:36:10Z","ServerKey":"us63"},{"ID":3032,"VillageID":2397,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-12T21:19:56Z","ServerKey":"us63"},{"ID":3033,"VillageID":5752,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-12T21:27:13Z","ServerKey":"us63"},{"ID":3034,"VillageID":2965,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-12T21:28:13Z","ServerKey":"us63"},{"ID":3035,"VillageID":3535,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-12T21:28:15Z","ServerKey":"us63"},{"ID":3036,"VillageID":7048,"NewOwnerID":514187,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-12T21:28:48Z","ServerKey":"us63"},{"ID":3037,"VillageID":8728,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-12T21:41:13Z","ServerKey":"us63"},{"ID":3038,"VillageID":7017,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-12T21:44:35Z","ServerKey":"us63"},{"ID":3039,"VillageID":7017,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848946291,"OldTribeID":76,"Points":130,"CreatedAt":"2023-02-12T21:44:35Z","ServerKey":"us63"},{"ID":3040,"VillageID":1647,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-12T21:47:06Z","ServerKey":"us63"},{"ID":3041,"VillageID":1361,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":618,"CreatedAt":"2023-02-12T21:48:00Z","ServerKey":"us63"},{"ID":3042,"VillageID":7847,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":848952862,"OldTribeID":0,"Points":5144,"CreatedAt":"2023-02-12T21:51:17Z","ServerKey":"us63"},{"ID":3043,"VillageID":7847,"NewOwnerID":848952862,"NewTribeID":0,"OldOwnerID":848952678,"OldTribeID":219,"Points":5144,"CreatedAt":"2023-02-12T21:51:17Z","ServerKey":"us63"},{"ID":3044,"VillageID":7215,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-12T21:52:32Z","ServerKey":"us63"},{"ID":3045,"VillageID":946,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-12T22:00:52Z","ServerKey":"us63"},{"ID":3046,"VillageID":3028,"NewOwnerID":509766,"NewTribeID":6,"OldOwnerID":848954261,"OldTribeID":38,"Points":2107,"CreatedAt":"2023-02-12T22:09:35Z","ServerKey":"us63"},{"ID":3047,"VillageID":7543,"NewOwnerID":848954608,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-12T22:29:58Z","ServerKey":"us63"},{"ID":3048,"VillageID":2855,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-12T22:45:50Z","ServerKey":"us63"},{"ID":3049,"VillageID":2504,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-12T22:47:38Z","ServerKey":"us63"},{"ID":3050,"VillageID":570,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-12T23:00:24Z","ServerKey":"us63"},{"ID":3051,"VillageID":2921,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-12T23:02:06Z","ServerKey":"us63"},{"ID":3052,"VillageID":1719,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":699,"CreatedAt":"2023-02-12T23:22:54Z","ServerKey":"us63"},{"ID":3053,"VillageID":2655,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954640,"OldTribeID":2,"Points":370,"CreatedAt":"2023-02-12T23:23:49Z","ServerKey":"us63"},{"ID":3054,"VillageID":2313,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":310,"CreatedAt":"2023-02-12T23:27:55Z","ServerKey":"us63"},{"ID":3055,"VillageID":4312,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":2045,"CreatedAt":"2023-02-12T23:29:22Z","ServerKey":"us63"},{"ID":3056,"VillageID":2471,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-12T23:29:44Z","ServerKey":"us63"},{"ID":3057,"VillageID":5371,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-12T23:30:38Z","ServerKey":"us63"},{"ID":3058,"VillageID":2840,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":399,"CreatedAt":"2023-02-12T23:55:46Z","ServerKey":"us63"},{"ID":3059,"VillageID":7530,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-13T00:00:26Z","ServerKey":"us63"},{"ID":3060,"VillageID":41,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-13T00:20:00Z","ServerKey":"us63"},{"ID":3061,"VillageID":2389,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848953340,"OldTribeID":34,"Points":7219,"CreatedAt":"2023-02-13T00:21:35Z","ServerKey":"us63"},{"ID":3062,"VillageID":1180,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-13T00:26:12Z","ServerKey":"us63"},{"ID":3063,"VillageID":3435,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-13T00:28:52Z","ServerKey":"us63"},{"ID":3064,"VillageID":3758,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-13T00:29:56Z","ServerKey":"us63"},{"ID":3065,"VillageID":8139,"NewOwnerID":848954475,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":1212,"CreatedAt":"2023-02-13T00:34:36Z","ServerKey":"us63"},{"ID":3066,"VillageID":424,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-13T00:34:47Z","ServerKey":"us63"},{"ID":3067,"VillageID":746,"NewOwnerID":768042,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-13T00:39:03Z","ServerKey":"us63"},{"ID":3068,"VillageID":8015,"NewOwnerID":769180,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-13T00:44:30Z","ServerKey":"us63"},{"ID":3069,"VillageID":3738,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-13T00:48:21Z","ServerKey":"us63"},{"ID":3070,"VillageID":4568,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":790742,"OldTribeID":129,"Points":4037,"CreatedAt":"2023-02-13T00:53:35Z","ServerKey":"us63"},{"ID":3071,"VillageID":4400,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":539612,"OldTribeID":65,"Points":5436,"CreatedAt":"2023-02-13T00:56:48Z","ServerKey":"us63"},{"ID":3072,"VillageID":5117,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-13T00:59:03Z","ServerKey":"us63"},{"ID":3073,"VillageID":2254,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":637,"CreatedAt":"2023-02-13T01:00:37Z","ServerKey":"us63"},{"ID":3074,"VillageID":1577,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-13T01:06:00Z","ServerKey":"us63"},{"ID":3075,"VillageID":140,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-13T01:23:01Z","ServerKey":"us63"},{"ID":3076,"VillageID":1667,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-13T01:23:15Z","ServerKey":"us63"},{"ID":3077,"VillageID":830,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-13T01:32:34Z","ServerKey":"us63"},{"ID":3078,"VillageID":5593,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848953972,"OldTribeID":203,"Points":2111,"CreatedAt":"2023-02-13T01:36:51Z","ServerKey":"us63"},{"ID":3079,"VillageID":1565,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":367,"CreatedAt":"2023-02-13T01:41:21Z","ServerKey":"us63"},{"ID":3080,"VillageID":2202,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":696,"CreatedAt":"2023-02-13T01:43:59Z","ServerKey":"us63"},{"ID":3081,"VillageID":1280,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-13T01:44:24Z","ServerKey":"us63"},{"ID":3082,"VillageID":1824,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-13T02:10:13Z","ServerKey":"us63"},{"ID":3083,"VillageID":4147,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":848905385,"OldTribeID":0,"Points":4605,"CreatedAt":"2023-02-13T02:17:12Z","ServerKey":"us63"},{"ID":3084,"VillageID":4951,"NewOwnerID":848954978,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-13T02:19:42Z","ServerKey":"us63"},{"ID":3085,"VillageID":2472,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-13T02:28:28Z","ServerKey":"us63"},{"ID":3086,"VillageID":238,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-13T02:39:10Z","ServerKey":"us63"},{"ID":3087,"VillageID":1229,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":630,"CreatedAt":"2023-02-13T02:43:13Z","ServerKey":"us63"},{"ID":3088,"VillageID":2582,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":358,"CreatedAt":"2023-02-13T02:47:58Z","ServerKey":"us63"},{"ID":3089,"VillageID":7106,"NewOwnerID":848953499,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-13T02:55:40Z","ServerKey":"us63"},{"ID":3090,"VillageID":2453,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-13T02:56:07Z","ServerKey":"us63"},{"ID":3091,"VillageID":1565,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":744645,"OldTribeID":85,"Points":348,"CreatedAt":"2023-02-13T02:56:18Z","ServerKey":"us63"},{"ID":3092,"VillageID":68,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-13T03:03:24Z","ServerKey":"us63"},{"ID":3093,"VillageID":7,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":700102,"OldTribeID":15,"Points":6853,"CreatedAt":"2023-02-13T03:04:31Z","ServerKey":"us63"},{"ID":3094,"VillageID":6743,"NewOwnerID":848955211,"NewTribeID":65,"OldOwnerID":848955187,"OldTribeID":0,"Points":1936,"CreatedAt":"2023-02-13T03:12:18Z","ServerKey":"us63"},{"ID":3095,"VillageID":4964,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-13T03:44:22Z","ServerKey":"us63"},{"ID":3096,"VillageID":7041,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-13T03:49:56Z","ServerKey":"us63"},{"ID":3097,"VillageID":7268,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-13T03:51:19Z","ServerKey":"us63"},{"ID":3098,"VillageID":6820,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-13T03:57:47Z","ServerKey":"us63"},{"ID":3099,"VillageID":2326,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":697,"CreatedAt":"2023-02-13T04:01:22Z","ServerKey":"us63"},{"ID":3100,"VillageID":917,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-13T04:09:21Z","ServerKey":"us63"},{"ID":3101,"VillageID":7148,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-13T04:09:37Z","ServerKey":"us63"},{"ID":3102,"VillageID":3459,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-13T04:11:34Z","ServerKey":"us63"},{"ID":3103,"VillageID":4909,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-13T04:14:47Z","ServerKey":"us63"},{"ID":3104,"VillageID":4909,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":226,"CreatedAt":"2023-02-13T04:14:47Z","ServerKey":"us63"},{"ID":3105,"VillageID":8432,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-02-13T04:15:05Z","ServerKey":"us63"},{"ID":3106,"VillageID":6367,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-13T04:27:10Z","ServerKey":"us63"},{"ID":3107,"VillageID":7518,"NewOwnerID":848955150,"NewTribeID":162,"OldOwnerID":848955321,"OldTribeID":0,"Points":1693,"CreatedAt":"2023-02-13T04:29:28Z","ServerKey":"us63"},{"ID":3108,"VillageID":6415,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-13T04:30:11Z","ServerKey":"us63"},{"ID":3109,"VillageID":1397,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-13T05:13:41Z","ServerKey":"us63"},{"ID":3110,"VillageID":3011,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-13T05:35:17Z","ServerKey":"us63"},{"ID":3111,"VillageID":1960,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":741238,"OldTribeID":0,"Points":2829,"CreatedAt":"2023-02-13T06:02:14Z","ServerKey":"us63"},{"ID":3112,"VillageID":1871,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-13T06:05:10Z","ServerKey":"us63"},{"ID":3113,"VillageID":8423,"NewOwnerID":848955148,"NewTribeID":162,"OldOwnerID":848955471,"OldTribeID":206,"Points":775,"CreatedAt":"2023-02-13T06:09:37Z","ServerKey":"us63"},{"ID":3114,"VillageID":4992,"NewOwnerID":848953656,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":504,"CreatedAt":"2023-02-13T06:09:40Z","ServerKey":"us63"},{"ID":3115,"VillageID":1958,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":423,"CreatedAt":"2023-02-13T06:34:23Z","ServerKey":"us63"},{"ID":3116,"VillageID":1552,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-13T06:34:27Z","ServerKey":"us63"},{"ID":3117,"VillageID":3227,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-13T07:04:24Z","ServerKey":"us63"},{"ID":3118,"VillageID":6652,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-13T07:04:55Z","ServerKey":"us63"},{"ID":3119,"VillageID":418,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-13T07:08:00Z","ServerKey":"us63"},{"ID":3120,"VillageID":8743,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-13T07:12:38Z","ServerKey":"us63"},{"ID":3121,"VillageID":1240,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-13T07:49:28Z","ServerKey":"us63"},{"ID":3122,"VillageID":7198,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":267733,"OldTribeID":167,"Points":3283,"CreatedAt":"2023-02-13T07:55:00Z","ServerKey":"us63"},{"ID":3123,"VillageID":7572,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-13T08:04:20Z","ServerKey":"us63"},{"ID":3124,"VillageID":1661,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-13T08:11:43Z","ServerKey":"us63"},{"ID":3125,"VillageID":6508,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":848935714,"OldTribeID":4,"Points":3213,"CreatedAt":"2023-02-13T08:12:15Z","ServerKey":"us63"},{"ID":3126,"VillageID":3155,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-13T08:18:03Z","ServerKey":"us63"},{"ID":3127,"VillageID":7658,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":769180,"OldTribeID":182,"Points":3503,"CreatedAt":"2023-02-13T08:20:32Z","ServerKey":"us63"},{"ID":3128,"VillageID":3458,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-13T08:22:59Z","ServerKey":"us63"},{"ID":3129,"VillageID":8478,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-13T08:23:21Z","ServerKey":"us63"},{"ID":3130,"VillageID":1889,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-13T08:45:26Z","ServerKey":"us63"},{"ID":3131,"VillageID":1889,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":398664,"OldTribeID":33,"Points":244,"CreatedAt":"2023-02-13T08:45:26Z","ServerKey":"us63"},{"ID":3134,"VillageID":5028,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-13T08:47:21Z","ServerKey":"us63"},{"ID":3135,"VillageID":3680,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-13T08:50:44Z","ServerKey":"us63"},{"ID":3136,"VillageID":713,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-13T08:51:31Z","ServerKey":"us63"},{"ID":3137,"VillageID":2884,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":8723,"CreatedAt":"2023-02-13T08:56:01Z","ServerKey":"us63"},{"ID":3138,"VillageID":2506,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-13T09:03:19Z","ServerKey":"us63"},{"ID":3139,"VillageID":3061,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":422,"CreatedAt":"2023-02-13T09:06:47Z","ServerKey":"us63"},{"ID":3140,"VillageID":1067,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-13T09:08:04Z","ServerKey":"us63"},{"ID":3141,"VillageID":520,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":6519,"CreatedAt":"2023-02-13T09:14:28Z","ServerKey":"us63"},{"ID":3142,"VillageID":5383,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-13T09:18:44Z","ServerKey":"us63"},{"ID":3143,"VillageID":6091,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-13T09:29:50Z","ServerKey":"us63"},{"ID":3144,"VillageID":7839,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-13T09:36:57Z","ServerKey":"us63"},{"ID":3145,"VillageID":3458,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":271,"CreatedAt":"2023-02-13T09:46:17Z","ServerKey":"us63"},{"ID":3146,"VillageID":3679,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-13T09:48:16Z","ServerKey":"us63"},{"ID":3147,"VillageID":3697,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-13T09:52:46Z","ServerKey":"us63"},{"ID":3148,"VillageID":874,"NewOwnerID":509766,"NewTribeID":6,"OldOwnerID":761278,"OldTribeID":0,"Points":514,"CreatedAt":"2023-02-13T09:57:32Z","ServerKey":"us63"},{"ID":3149,"VillageID":3394,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-13T10:13:53Z","ServerKey":"us63"},{"ID":3150,"VillageID":6825,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":848954603,"OldTribeID":0,"Points":1910,"CreatedAt":"2023-02-13T10:14:51Z","ServerKey":"us63"},{"ID":3151,"VillageID":8651,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-13T10:23:55Z","ServerKey":"us63"},{"ID":3152,"VillageID":3608,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-13T10:27:38Z","ServerKey":"us63"},{"ID":3153,"VillageID":3837,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-13T10:30:53Z","ServerKey":"us63"},{"ID":3154,"VillageID":8190,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-13T10:33:46Z","ServerKey":"us63"},{"ID":3155,"VillageID":1682,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-13T10:51:29Z","ServerKey":"us63"},{"ID":3156,"VillageID":2389,"NewOwnerID":697760,"NewTribeID":0,"OldOwnerID":848880663,"OldTribeID":138,"Points":7229,"CreatedAt":"2023-02-13T10:52:08Z","ServerKey":"us63"},{"ID":3157,"VillageID":1725,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":3363,"CreatedAt":"2023-02-13T11:10:24Z","ServerKey":"us63"},{"ID":3158,"VillageID":4192,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-13T11:15:50Z","ServerKey":"us63"},{"ID":3159,"VillageID":8294,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-13T11:40:47Z","ServerKey":"us63"},{"ID":3160,"VillageID":9102,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-13T11:49:28Z","ServerKey":"us63"},{"ID":3161,"VillageID":4765,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-13T11:54:28Z","ServerKey":"us63"},{"ID":3162,"VillageID":1298,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-13T11:57:29Z","ServerKey":"us63"},{"ID":3163,"VillageID":5828,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":334822,"OldTribeID":0,"Points":2126,"CreatedAt":"2023-02-13T11:58:19Z","ServerKey":"us63"},{"ID":3164,"VillageID":8905,"NewOwnerID":848937255,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-13T11:58:50Z","ServerKey":"us63"},{"ID":3165,"VillageID":8162,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-13T12:03:45Z","ServerKey":"us63"},{"ID":3166,"VillageID":1617,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-13T12:08:44Z","ServerKey":"us63"},{"ID":3167,"VillageID":2711,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-13T12:16:22Z","ServerKey":"us63"},{"ID":3168,"VillageID":3112,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":6331,"CreatedAt":"2023-02-13T12:30:05Z","ServerKey":"us63"},{"ID":3169,"VillageID":378,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-13T12:35:03Z","ServerKey":"us63"},{"ID":3170,"VillageID":378,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848951549,"OldTribeID":20,"Points":317,"CreatedAt":"2023-02-13T12:35:35Z","ServerKey":"us63"},{"ID":3171,"VillageID":161,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-13T12:55:33Z","ServerKey":"us63"},{"ID":3172,"VillageID":7205,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848879972,"OldTribeID":167,"Points":2657,"CreatedAt":"2023-02-13T13:09:00Z","ServerKey":"us63"},{"ID":3173,"VillageID":2799,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":387,"CreatedAt":"2023-02-13T13:17:25Z","ServerKey":"us63"},{"ID":3174,"VillageID":3662,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":460,"CreatedAt":"2023-02-13T13:17:52Z","ServerKey":"us63"},{"ID":3175,"VillageID":748,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-13T13:39:06Z","ServerKey":"us63"},{"ID":3176,"VillageID":5767,"NewOwnerID":848955133,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-13T13:45:05Z","ServerKey":"us63"},{"ID":3177,"VillageID":836,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-13T14:01:40Z","ServerKey":"us63"},{"ID":3178,"VillageID":3619,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-13T14:02:50Z","ServerKey":"us63"},{"ID":3179,"VillageID":1543,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-13T14:08:45Z","ServerKey":"us63"},{"ID":3180,"VillageID":1690,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-13T14:12:00Z","ServerKey":"us63"},{"ID":3181,"VillageID":2280,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-13T14:15:23Z","ServerKey":"us63"},{"ID":3182,"VillageID":2753,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-13T15:02:20Z","ServerKey":"us63"},{"ID":3183,"VillageID":67,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":5012,"CreatedAt":"2023-02-13T15:20:02Z","ServerKey":"us63"},{"ID":3184,"VillageID":373,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848954366,"OldTribeID":0,"Points":8222,"CreatedAt":"2023-02-13T15:23:17Z","ServerKey":"us63"},{"ID":3185,"VillageID":5358,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-13T15:27:00Z","ServerKey":"us63"},{"ID":3186,"VillageID":3954,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-13T15:29:17Z","ServerKey":"us63"},{"ID":3187,"VillageID":2138,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-13T15:43:32Z","ServerKey":"us63"},{"ID":3188,"VillageID":4022,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-13T15:49:26Z","ServerKey":"us63"},{"ID":3189,"VillageID":3674,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-13T15:52:01Z","ServerKey":"us63"},{"ID":3190,"VillageID":2540,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-13T16:08:06Z","ServerKey":"us63"},{"ID":3191,"VillageID":7190,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-13T16:19:51Z","ServerKey":"us63"},{"ID":3192,"VillageID":1757,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848954096,"OldTribeID":35,"Points":7935,"CreatedAt":"2023-02-13T16:20:35Z","ServerKey":"us63"},{"ID":3193,"VillageID":7237,"NewOwnerID":848951672,"NewTribeID":93,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-13T16:29:05Z","ServerKey":"us63"},{"ID":3194,"VillageID":7303,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848951460,"OldTribeID":104,"Points":523,"CreatedAt":"2023-02-13T16:32:38Z","ServerKey":"us63"},{"ID":3195,"VillageID":3102,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":642506,"OldTribeID":0,"Points":7771,"CreatedAt":"2023-02-13T16:32:54Z","ServerKey":"us63"},{"ID":3196,"VillageID":7308,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-13T16:52:40Z","ServerKey":"us63"},{"ID":3197,"VillageID":129,"NewOwnerID":848937811,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-13T16:53:20Z","ServerKey":"us63"},{"ID":3198,"VillageID":599,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-13T17:04:42Z","ServerKey":"us63"},{"ID":3199,"VillageID":2450,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-13T17:07:20Z","ServerKey":"us63"},{"ID":3200,"VillageID":8218,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":1040,"CreatedAt":"2023-02-13T17:15:31Z","ServerKey":"us63"},{"ID":3201,"VillageID":8218,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":848954637,"OldTribeID":11,"Points":1016,"CreatedAt":"2023-02-13T17:15:33Z","ServerKey":"us63"},{"ID":3202,"VillageID":9142,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-13T17:16:01Z","ServerKey":"us63"},{"ID":3203,"VillageID":3716,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":539612,"OldTribeID":65,"Points":1139,"CreatedAt":"2023-02-13T17:19:05Z","ServerKey":"us63"},{"ID":3204,"VillageID":4986,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":848940295,"OldTribeID":187,"Points":3457,"CreatedAt":"2023-02-13T17:21:22Z","ServerKey":"us63"},{"ID":3205,"VillageID":4119,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-13T17:29:30Z","ServerKey":"us63"},{"ID":3206,"VillageID":1822,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":568,"CreatedAt":"2023-02-13T17:46:47Z","ServerKey":"us63"},{"ID":3207,"VillageID":1090,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":419,"CreatedAt":"2023-02-13T17:48:24Z","ServerKey":"us63"},{"ID":3208,"VillageID":2876,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-13T17:50:09Z","ServerKey":"us63"},{"ID":3209,"VillageID":1752,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-13T17:54:16Z","ServerKey":"us63"},{"ID":3210,"VillageID":3668,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-13T18:11:58Z","ServerKey":"us63"},{"ID":3211,"VillageID":5364,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-13T18:31:53Z","ServerKey":"us63"},{"ID":3212,"VillageID":1210,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-13T18:40:22Z","ServerKey":"us63"},{"ID":3213,"VillageID":2015,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-13T19:01:48Z","ServerKey":"us63"},{"ID":3214,"VillageID":3307,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-13T19:06:29Z","ServerKey":"us63"},{"ID":3215,"VillageID":1788,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":392,"CreatedAt":"2023-02-13T19:07:29Z","ServerKey":"us63"},{"ID":3216,"VillageID":2859,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":848925398,"OldTribeID":0,"Points":1292,"CreatedAt":"2023-02-13T19:10:37Z","ServerKey":"us63"},{"ID":3217,"VillageID":2341,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":629,"CreatedAt":"2023-02-13T19:16:05Z","ServerKey":"us63"},{"ID":3218,"VillageID":2341,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":629,"CreatedAt":"2023-02-13T19:16:05Z","ServerKey":"us63"},{"ID":3219,"VillageID":494,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":10728,"CreatedAt":"2023-02-13T19:26:39Z","ServerKey":"us63"},{"ID":3220,"VillageID":2747,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-13T19:28:19Z","ServerKey":"us63"},{"ID":3221,"VillageID":8972,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-13T19:34:12Z","ServerKey":"us63"},{"ID":3222,"VillageID":8972,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":327519,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-13T19:34:12Z","ServerKey":"us63"},{"ID":3223,"VillageID":8658,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-13T19:34:16Z","ServerKey":"us63"},{"ID":3224,"VillageID":2341,"NewOwnerID":848940915,"NewTribeID":150,"OldOwnerID":344518,"OldTribeID":20,"Points":605,"CreatedAt":"2023-02-13T19:39:48Z","ServerKey":"us63"},{"ID":3225,"VillageID":8972,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":327519,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-13T19:40:50Z","ServerKey":"us63"},{"ID":3226,"VillageID":8972,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":49,"CreatedAt":"2023-02-13T19:40:50Z","ServerKey":"us63"},{"ID":3227,"VillageID":8972,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":49,"CreatedAt":"2023-02-13T19:40:51Z","ServerKey":"us63"},{"ID":3228,"VillageID":7813,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-13T19:57:24Z","ServerKey":"us63"},{"ID":3229,"VillageID":1795,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":5654,"CreatedAt":"2023-02-13T19:59:45Z","ServerKey":"us63"},{"ID":3230,"VillageID":2754,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-13T20:01:49Z","ServerKey":"us63"},{"ID":3231,"VillageID":4513,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-13T20:06:07Z","ServerKey":"us63"},{"ID":3232,"VillageID":6317,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":772572,"OldTribeID":0,"Points":2133,"CreatedAt":"2023-02-13T20:35:41Z","ServerKey":"us63"},{"ID":3233,"VillageID":2739,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-13T20:36:14Z","ServerKey":"us63"},{"ID":3234,"VillageID":8841,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":46,"CreatedAt":"2023-02-13T20:38:42Z","ServerKey":"us63"},{"ID":3235,"VillageID":1626,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":7933,"CreatedAt":"2023-02-13T20:39:05Z","ServerKey":"us63"},{"ID":3236,"VillageID":6928,"NewOwnerID":848953499,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-13T20:39:41Z","ServerKey":"us63"},{"ID":3237,"VillageID":5985,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-13T20:39:54Z","ServerKey":"us63"},{"ID":3238,"VillageID":5477,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-13T20:40:49Z","ServerKey":"us63"},{"ID":3239,"VillageID":6536,"NewOwnerID":848955150,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-13T20:42:33Z","ServerKey":"us63"},{"ID":3240,"VillageID":3125,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":4184,"CreatedAt":"2023-02-13T20:46:14Z","ServerKey":"us63"},{"ID":3241,"VillageID":6350,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-13T20:48:25Z","ServerKey":"us63"},{"ID":3242,"VillageID":6967,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-13T20:49:27Z","ServerKey":"us63"},{"ID":3243,"VillageID":7664,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-02-13T20:52:56Z","ServerKey":"us63"},{"ID":3244,"VillageID":6033,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":584,"CreatedAt":"2023-02-13T21:28:54Z","ServerKey":"us63"},{"ID":3245,"VillageID":4425,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-13T21:29:31Z","ServerKey":"us63"},{"ID":3246,"VillageID":2315,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-13T21:44:57Z","ServerKey":"us63"},{"ID":3247,"VillageID":2268,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-13T22:04:31Z","ServerKey":"us63"},{"ID":3248,"VillageID":4677,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-13T22:05:16Z","ServerKey":"us63"},{"ID":3249,"VillageID":4677,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":201,"CreatedAt":"2023-02-13T22:05:16Z","ServerKey":"us63"},{"ID":3250,"VillageID":6907,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848953936,"OldTribeID":4,"Points":1482,"CreatedAt":"2023-02-13T22:13:08Z","ServerKey":"us63"},{"ID":3251,"VillageID":6907,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848954611,"OldTribeID":32,"Points":1482,"CreatedAt":"2023-02-13T22:13:08Z","ServerKey":"us63"},{"ID":3252,"VillageID":2591,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-13T22:15:29Z","ServerKey":"us63"},{"ID":3253,"VillageID":8366,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-13T22:21:49Z","ServerKey":"us63"},{"ID":3254,"VillageID":3740,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-13T22:54:11Z","ServerKey":"us63"},{"ID":3255,"VillageID":4613,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":5017,"CreatedAt":"2023-02-13T23:02:35Z","ServerKey":"us63"},{"ID":3256,"VillageID":243,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":9308,"CreatedAt":"2023-02-13T23:13:31Z","ServerKey":"us63"},{"ID":3257,"VillageID":3923,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":539612,"OldTribeID":65,"Points":1797,"CreatedAt":"2023-02-13T23:27:58Z","ServerKey":"us63"},{"ID":3258,"VillageID":3275,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-13T23:34:36Z","ServerKey":"us63"},{"ID":3259,"VillageID":3393,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-13T23:38:40Z","ServerKey":"us63"},{"ID":3260,"VillageID":1043,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":2430,"CreatedAt":"2023-02-13T23:44:01Z","ServerKey":"us63"},{"ID":3261,"VillageID":5018,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-14T00:08:12Z","ServerKey":"us63"},{"ID":3262,"VillageID":3168,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":848943250,"OldTribeID":0,"Points":1122,"CreatedAt":"2023-02-14T00:12:19Z","ServerKey":"us63"},{"ID":3263,"VillageID":5908,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":772572,"OldTribeID":0,"Points":8186,"CreatedAt":"2023-02-14T00:15:04Z","ServerKey":"us63"},{"ID":3264,"VillageID":3311,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-14T00:16:56Z","ServerKey":"us63"},{"ID":3265,"VillageID":6488,"NewOwnerID":848954201,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-14T00:22:16Z","ServerKey":"us63"},{"ID":3266,"VillageID":5130,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-14T00:22:58Z","ServerKey":"us63"},{"ID":3267,"VillageID":7585,"NewOwnerID":848955148,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-14T00:23:26Z","ServerKey":"us63"},{"ID":3268,"VillageID":7030,"NewOwnerID":848955237,"NewTribeID":216,"OldOwnerID":848947293,"OldTribeID":0,"Points":466,"CreatedAt":"2023-02-14T00:25:38Z","ServerKey":"us63"},{"ID":3269,"VillageID":5386,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-14T00:29:11Z","ServerKey":"us63"},{"ID":3270,"VillageID":7905,"NewOwnerID":848954437,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-02-14T00:41:27Z","ServerKey":"us63"},{"ID":3271,"VillageID":134,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-14T00:43:00Z","ServerKey":"us63"},{"ID":3272,"VillageID":6473,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-14T01:18:06Z","ServerKey":"us63"},{"ID":3273,"VillageID":355,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-14T01:27:15Z","ServerKey":"us63"},{"ID":3274,"VillageID":208,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-14T01:28:32Z","ServerKey":"us63"},{"ID":3275,"VillageID":8606,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-14T01:40:16Z","ServerKey":"us63"},{"ID":3276,"VillageID":3196,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-14T02:02:02Z","ServerKey":"us63"},{"ID":3277,"VillageID":1400,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-14T02:09:40Z","ServerKey":"us63"},{"ID":3278,"VillageID":3196,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":241,"CreatedAt":"2023-02-14T02:09:56Z","ServerKey":"us63"},{"ID":3279,"VillageID":2843,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-14T02:17:25Z","ServerKey":"us63"},{"ID":3280,"VillageID":4939,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-14T02:26:38Z","ServerKey":"us63"},{"ID":3281,"VillageID":986,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-14T02:40:41Z","ServerKey":"us63"},{"ID":3282,"VillageID":4345,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":389297,"OldTribeID":0,"Points":5845,"CreatedAt":"2023-02-14T02:47:03Z","ServerKey":"us63"},{"ID":3283,"VillageID":7810,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":1060,"CreatedAt":"2023-02-14T02:53:56Z","ServerKey":"us63"},{"ID":3284,"VillageID":2895,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":564,"CreatedAt":"2023-02-14T03:14:10Z","ServerKey":"us63"},{"ID":3285,"VillageID":3955,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":539612,"OldTribeID":65,"Points":5362,"CreatedAt":"2023-02-14T03:20:46Z","ServerKey":"us63"},{"ID":3286,"VillageID":1439,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-14T03:20:59Z","ServerKey":"us63"},{"ID":3287,"VillageID":2594,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-14T03:37:09Z","ServerKey":"us63"},{"ID":3288,"VillageID":71,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-14T03:47:55Z","ServerKey":"us63"},{"ID":3289,"VillageID":7084,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-14T03:48:13Z","ServerKey":"us63"},{"ID":3290,"VillageID":1764,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":7372,"CreatedAt":"2023-02-14T03:48:40Z","ServerKey":"us63"},{"ID":3291,"VillageID":8756,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-14T04:01:30Z","ServerKey":"us63"},{"ID":3292,"VillageID":1789,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-14T04:04:23Z","ServerKey":"us63"},{"ID":3293,"VillageID":8827,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-14T04:11:36Z","ServerKey":"us63"},{"ID":3294,"VillageID":2122,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-14T04:14:58Z","ServerKey":"us63"},{"ID":3295,"VillageID":441,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-14T04:17:46Z","ServerKey":"us63"},{"ID":3296,"VillageID":8669,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":848955517,"OldTribeID":0,"Points":864,"CreatedAt":"2023-02-14T04:28:49Z","ServerKey":"us63"},{"ID":3297,"VillageID":7116,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-14T04:42:54Z","ServerKey":"us63"},{"ID":3298,"VillageID":2266,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-14T04:46:49Z","ServerKey":"us63"},{"ID":3299,"VillageID":664,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-14T04:49:28Z","ServerKey":"us63"},{"ID":3300,"VillageID":419,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-14T04:53:46Z","ServerKey":"us63"},{"ID":3301,"VillageID":8001,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-14T04:56:18Z","ServerKey":"us63"},{"ID":3302,"VillageID":7011,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":848939796,"OldTribeID":0,"Points":2216,"CreatedAt":"2023-02-14T04:57:26Z","ServerKey":"us63"},{"ID":3303,"VillageID":327,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-14T05:02:17Z","ServerKey":"us63"},{"ID":3304,"VillageID":542,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-14T05:08:51Z","ServerKey":"us63"},{"ID":3305,"VillageID":1028,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":11363,"CreatedAt":"2023-02-14T05:27:18Z","ServerKey":"us63"},{"ID":3306,"VillageID":1118,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-14T05:32:33Z","ServerKey":"us63"},{"ID":3307,"VillageID":1748,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":6197,"CreatedAt":"2023-02-14T05:39:14Z","ServerKey":"us63"},{"ID":3308,"VillageID":392,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848951434,"OldTribeID":0,"Points":4064,"CreatedAt":"2023-02-14T05:44:13Z","ServerKey":"us63"},{"ID":3309,"VillageID":887,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":482,"CreatedAt":"2023-02-14T05:49:55Z","ServerKey":"us63"},{"ID":3310,"VillageID":8,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":468,"CreatedAt":"2023-02-14T06:05:56Z","ServerKey":"us63"},{"ID":3311,"VillageID":9435,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-14T06:11:58Z","ServerKey":"us63"},{"ID":3312,"VillageID":3318,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-14T06:32:32Z","ServerKey":"us63"},{"ID":3313,"VillageID":5923,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-14T06:37:44Z","ServerKey":"us63"},{"ID":3314,"VillageID":7907,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-14T06:45:07Z","ServerKey":"us63"},{"ID":3315,"VillageID":4328,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848949093,"OldTribeID":65,"Points":3751,"CreatedAt":"2023-02-14T06:46:29Z","ServerKey":"us63"},{"ID":3316,"VillageID":6181,"NewOwnerID":742669,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-14T06:49:14Z","ServerKey":"us63"},{"ID":3317,"VillageID":9420,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":27,"CreatedAt":"2023-02-14T06:58:09Z","ServerKey":"us63"},{"ID":3318,"VillageID":1089,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-14T06:59:14Z","ServerKey":"us63"},{"ID":3319,"VillageID":2831,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-14T07:07:03Z","ServerKey":"us63"},{"ID":3320,"VillageID":676,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":10495,"CreatedAt":"2023-02-14T07:24:25Z","ServerKey":"us63"},{"ID":3321,"VillageID":8041,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-14T07:28:25Z","ServerKey":"us63"},{"ID":3322,"VillageID":7329,"NewOwnerID":302611,"NewTribeID":0,"OldOwnerID":848938537,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-14T07:38:46Z","ServerKey":"us63"},{"ID":3323,"VillageID":2730,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-14T07:42:06Z","ServerKey":"us63"},{"ID":3324,"VillageID":1021,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":4129,"CreatedAt":"2023-02-14T07:42:47Z","ServerKey":"us63"},{"ID":3325,"VillageID":8802,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-02-14T07:45:45Z","ServerKey":"us63"},{"ID":3326,"VillageID":1032,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":767,"CreatedAt":"2023-02-14T08:02:09Z","ServerKey":"us63"},{"ID":3327,"VillageID":1514,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-14T08:18:24Z","ServerKey":"us63"},{"ID":3328,"VillageID":8237,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-14T08:26:33Z","ServerKey":"us63"},{"ID":3329,"VillageID":878,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":440,"CreatedAt":"2023-02-14T08:30:45Z","ServerKey":"us63"},{"ID":3330,"VillageID":3818,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-14T08:33:42Z","ServerKey":"us63"},{"ID":3331,"VillageID":1188,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":5376,"CreatedAt":"2023-02-14T08:37:57Z","ServerKey":"us63"},{"ID":3332,"VillageID":1387,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-14T08:48:55Z","ServerKey":"us63"},{"ID":3333,"VillageID":2281,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-14T08:59:41Z","ServerKey":"us63"},{"ID":3334,"VillageID":6977,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-14T09:06:17Z","ServerKey":"us63"},{"ID":3335,"VillageID":6086,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":775744,"OldTribeID":187,"Points":3945,"CreatedAt":"2023-02-14T09:11:05Z","ServerKey":"us63"},{"ID":3336,"VillageID":6086,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":848955024,"OldTribeID":0,"Points":3945,"CreatedAt":"2023-02-14T09:11:05Z","ServerKey":"us63"},{"ID":3337,"VillageID":1895,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":310,"CreatedAt":"2023-02-14T09:14:40Z","ServerKey":"us63"},{"ID":3338,"VillageID":3543,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848949093,"OldTribeID":65,"Points":5607,"CreatedAt":"2023-02-14T09:30:00Z","ServerKey":"us63"},{"ID":3339,"VillageID":3166,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-14T09:31:26Z","ServerKey":"us63"},{"ID":3340,"VillageID":1373,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-14T09:34:32Z","ServerKey":"us63"},{"ID":3341,"VillageID":1373,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":594491,"OldTribeID":86,"Points":271,"CreatedAt":"2023-02-14T09:34:33Z","ServerKey":"us63"},{"ID":3342,"VillageID":2690,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-14T09:43:56Z","ServerKey":"us63"},{"ID":3343,"VillageID":5450,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":679,"CreatedAt":"2023-02-14T09:49:58Z","ServerKey":"us63"},{"ID":3344,"VillageID":3302,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848949093,"OldTribeID":65,"Points":1142,"CreatedAt":"2023-02-14T09:50:14Z","ServerKey":"us63"},{"ID":3345,"VillageID":2971,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-14T09:54:03Z","ServerKey":"us63"},{"ID":3346,"VillageID":2849,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-14T10:06:27Z","ServerKey":"us63"},{"ID":3347,"VillageID":4383,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-14T10:06:57Z","ServerKey":"us63"},{"ID":3348,"VillageID":4893,"NewOwnerID":848953656,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-14T10:09:20Z","ServerKey":"us63"},{"ID":3349,"VillageID":7820,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-14T10:20:06Z","ServerKey":"us63"},{"ID":3350,"VillageID":2837,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":848954553,"OldTribeID":53,"Points":6812,"CreatedAt":"2023-02-14T10:25:09Z","ServerKey":"us63"},{"ID":3351,"VillageID":5103,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-14T10:35:28Z","ServerKey":"us63"},{"ID":3352,"VillageID":1097,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-14T10:45:27Z","ServerKey":"us63"},{"ID":3353,"VillageID":3241,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-14T10:48:45Z","ServerKey":"us63"},{"ID":3354,"VillageID":1829,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-14T10:49:18Z","ServerKey":"us63"},{"ID":3355,"VillageID":6195,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-14T10:50:52Z","ServerKey":"us63"},{"ID":3356,"VillageID":2964,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-14T11:06:09Z","ServerKey":"us63"},{"ID":3357,"VillageID":7507,"NewOwnerID":848942248,"NewTribeID":0,"OldOwnerID":848955318,"OldTribeID":0,"Points":1495,"CreatedAt":"2023-02-14T11:08:00Z","ServerKey":"us63"},{"ID":3358,"VillageID":1079,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-14T11:32:03Z","ServerKey":"us63"},{"ID":3359,"VillageID":2583,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-14T11:39:35Z","ServerKey":"us63"},{"ID":3360,"VillageID":2402,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-14T11:50:50Z","ServerKey":"us63"},{"ID":3361,"VillageID":1436,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":1986,"CreatedAt":"2023-02-14T11:51:16Z","ServerKey":"us63"},{"ID":3362,"VillageID":2072,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":8144,"CreatedAt":"2023-02-14T11:53:29Z","ServerKey":"us63"},{"ID":3363,"VillageID":2802,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-14T12:03:17Z","ServerKey":"us63"},{"ID":3364,"VillageID":1707,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-14T12:17:01Z","ServerKey":"us63"},{"ID":3365,"VillageID":2524,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-14T12:27:20Z","ServerKey":"us63"},{"ID":3366,"VillageID":9494,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-14T12:33:09Z","ServerKey":"us63"},{"ID":3367,"VillageID":3941,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-14T12:40:41Z","ServerKey":"us63"},{"ID":3368,"VillageID":1893,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848954366,"OldTribeID":0,"Points":3086,"CreatedAt":"2023-02-14T13:07:27Z","ServerKey":"us63"},{"ID":3369,"VillageID":1167,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-14T13:17:51Z","ServerKey":"us63"},{"ID":3370,"VillageID":1310,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-14T13:20:50Z","ServerKey":"us63"},{"ID":3371,"VillageID":2038,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":648,"CreatedAt":"2023-02-14T13:27:41Z","ServerKey":"us63"},{"ID":3372,"VillageID":4189,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-14T13:33:34Z","ServerKey":"us63"},{"ID":3373,"VillageID":8802,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":848953962,"OldTribeID":2,"Points":106,"CreatedAt":"2023-02-14T13:34:31Z","ServerKey":"us63"},{"ID":3374,"VillageID":8285,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":421691,"OldTribeID":222,"Points":2053,"CreatedAt":"2023-02-14T13:42:15Z","ServerKey":"us63"},{"ID":3375,"VillageID":3006,"NewOwnerID":620806,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-14T13:44:27Z","ServerKey":"us63"},{"ID":3376,"VillageID":326,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":8390,"CreatedAt":"2023-02-14T13:46:54Z","ServerKey":"us63"},{"ID":3377,"VillageID":8533,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-14T13:47:23Z","ServerKey":"us63"},{"ID":3378,"VillageID":2298,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-14T13:57:55Z","ServerKey":"us63"},{"ID":3379,"VillageID":1772,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":3093,"CreatedAt":"2023-02-14T14:38:38Z","ServerKey":"us63"},{"ID":3380,"VillageID":8976,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-14T14:39:46Z","ServerKey":"us63"},{"ID":3381,"VillageID":2894,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-14T14:43:08Z","ServerKey":"us63"},{"ID":3382,"VillageID":8520,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-14T14:48:06Z","ServerKey":"us63"},{"ID":3383,"VillageID":2962,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-14T14:50:26Z","ServerKey":"us63"},{"ID":3384,"VillageID":636,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-14T15:08:13Z","ServerKey":"us63"},{"ID":3385,"VillageID":4421,"NewOwnerID":848953539,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":500,"CreatedAt":"2023-02-14T15:14:12Z","ServerKey":"us63"},{"ID":3386,"VillageID":5408,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-14T15:16:47Z","ServerKey":"us63"},{"ID":3387,"VillageID":3602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-14T15:23:58Z","ServerKey":"us63"},{"ID":3388,"VillageID":6789,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-14T15:38:12Z","ServerKey":"us63"},{"ID":3389,"VillageID":5400,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848954976,"OldTribeID":42,"Points":4295,"CreatedAt":"2023-02-14T15:50:00Z","ServerKey":"us63"},{"ID":3390,"VillageID":5400,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848946291,"OldTribeID":76,"Points":4295,"CreatedAt":"2023-02-14T15:50:00Z","ServerKey":"us63"},{"ID":3391,"VillageID":1792,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-14T15:58:37Z","ServerKey":"us63"},{"ID":3392,"VillageID":3212,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-14T15:58:51Z","ServerKey":"us63"},{"ID":3393,"VillageID":9108,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-14T16:06:51Z","ServerKey":"us63"},{"ID":3394,"VillageID":259,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":381,"CreatedAt":"2023-02-14T16:10:17Z","ServerKey":"us63"},{"ID":3395,"VillageID":8141,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-14T16:18:52Z","ServerKey":"us63"},{"ID":3396,"VillageID":8141,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":848930230,"OldTribeID":209,"Points":89,"CreatedAt":"2023-02-14T16:18:52Z","ServerKey":"us63"},{"ID":3397,"VillageID":2585,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":500,"CreatedAt":"2023-02-14T16:18:56Z","ServerKey":"us63"},{"ID":3398,"VillageID":1424,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":6587,"CreatedAt":"2023-02-14T16:43:00Z","ServerKey":"us63"},{"ID":3399,"VillageID":3027,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-14T16:43:33Z","ServerKey":"us63"},{"ID":3400,"VillageID":2796,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-14T16:45:23Z","ServerKey":"us63"},{"ID":3401,"VillageID":9108,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":781432,"OldTribeID":198,"Points":115,"CreatedAt":"2023-02-14T17:00:05Z","ServerKey":"us63"},{"ID":3402,"VillageID":169,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":9244,"CreatedAt":"2023-02-14T17:01:20Z","ServerKey":"us63"},{"ID":3403,"VillageID":5427,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-14T17:21:35Z","ServerKey":"us63"},{"ID":3404,"VillageID":5094,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-14T17:40:39Z","ServerKey":"us63"},{"ID":3405,"VillageID":8110,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-14T17:41:59Z","ServerKey":"us63"},{"ID":3406,"VillageID":1167,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848953401,"OldTribeID":138,"Points":236,"CreatedAt":"2023-02-14T18:11:51Z","ServerKey":"us63"},{"ID":3407,"VillageID":655,"NewOwnerID":848953670,"NewTribeID":0,"OldOwnerID":848953209,"OldTribeID":0,"Points":967,"CreatedAt":"2023-02-14T18:21:32Z","ServerKey":"us63"},{"ID":3408,"VillageID":8028,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-14T18:28:00Z","ServerKey":"us63"},{"ID":3409,"VillageID":3076,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":1554,"CreatedAt":"2023-02-14T18:28:15Z","ServerKey":"us63"},{"ID":3410,"VillageID":3901,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":1644,"CreatedAt":"2023-02-14T18:28:43Z","ServerKey":"us63"},{"ID":3411,"VillageID":5611,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-14T18:36:51Z","ServerKey":"us63"},{"ID":3412,"VillageID":5611,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":262676,"OldTribeID":215,"Points":266,"CreatedAt":"2023-02-14T18:36:51Z","ServerKey":"us63"},{"ID":3413,"VillageID":1395,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":734,"CreatedAt":"2023-02-14T18:37:40Z","ServerKey":"us63"},{"ID":3414,"VillageID":282,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":5420,"CreatedAt":"2023-02-14T19:01:01Z","ServerKey":"us63"},{"ID":3415,"VillageID":4873,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-14T19:15:44Z","ServerKey":"us63"},{"ID":3416,"VillageID":1817,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":450,"CreatedAt":"2023-02-14T19:21:08Z","ServerKey":"us63"},{"ID":3417,"VillageID":2401,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-14T19:24:17Z","ServerKey":"us63"},{"ID":3418,"VillageID":6764,"NewOwnerID":848949884,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-14T19:24:30Z","ServerKey":"us63"},{"ID":3419,"VillageID":3975,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-14T19:34:56Z","ServerKey":"us63"},{"ID":3420,"VillageID":1082,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-14T19:35:30Z","ServerKey":"us63"},{"ID":3421,"VillageID":4809,"NewOwnerID":848953200,"NewTribeID":53,"OldOwnerID":848945602,"OldTribeID":0,"Points":686,"CreatedAt":"2023-02-14T19:38:07Z","ServerKey":"us63"},{"ID":3422,"VillageID":1109,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-14T19:40:07Z","ServerKey":"us63"},{"ID":3423,"VillageID":1625,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":2105,"CreatedAt":"2023-02-14T19:41:21Z","ServerKey":"us63"},{"ID":3424,"VillageID":8169,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-14T19:46:54Z","ServerKey":"us63"},{"ID":3425,"VillageID":1335,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":9223,"CreatedAt":"2023-02-14T19:46:57Z","ServerKey":"us63"},{"ID":3426,"VillageID":5166,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-14T19:47:21Z","ServerKey":"us63"},{"ID":3427,"VillageID":8701,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-14T19:47:36Z","ServerKey":"us63"},{"ID":3428,"VillageID":7579,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":848955018,"OldTribeID":0,"Points":1793,"CreatedAt":"2023-02-14T19:48:32Z","ServerKey":"us63"},{"ID":3429,"VillageID":2028,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-14T19:55:37Z","ServerKey":"us63"},{"ID":3430,"VillageID":7715,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-14T19:59:21Z","ServerKey":"us63"},{"ID":3431,"VillageID":2265,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-14T20:20:43Z","ServerKey":"us63"},{"ID":3432,"VillageID":7991,"NewOwnerID":302745,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-14T20:20:51Z","ServerKey":"us63"},{"ID":3433,"VillageID":3901,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":848914361,"OldTribeID":20,"Points":1523,"CreatedAt":"2023-02-14T20:21:30Z","ServerKey":"us63"},{"ID":3434,"VillageID":5921,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":866,"CreatedAt":"2023-02-14T20:29:27Z","ServerKey":"us63"},{"ID":3435,"VillageID":2496,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":383,"CreatedAt":"2023-02-14T20:32:23Z","ServerKey":"us63"},{"ID":3436,"VillageID":3898,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-14T20:40:14Z","ServerKey":"us63"},{"ID":3437,"VillageID":1320,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":1979,"CreatedAt":"2023-02-14T20:40:57Z","ServerKey":"us63"},{"ID":3438,"VillageID":3476,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-14T20:41:21Z","ServerKey":"us63"},{"ID":3439,"VillageID":4758,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-14T20:48:43Z","ServerKey":"us63"},{"ID":3440,"VillageID":4979,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-14T20:58:07Z","ServerKey":"us63"},{"ID":3441,"VillageID":109,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":853,"CreatedAt":"2023-02-14T21:02:27Z","ServerKey":"us63"},{"ID":3442,"VillageID":5396,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-14T21:10:47Z","ServerKey":"us63"},{"ID":3443,"VillageID":7193,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-14T21:12:52Z","ServerKey":"us63"},{"ID":3444,"VillageID":402,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-14T21:17:16Z","ServerKey":"us63"},{"ID":3445,"VillageID":3786,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-14T21:21:13Z","ServerKey":"us63"},{"ID":3446,"VillageID":4244,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":1768,"CreatedAt":"2023-02-14T21:24:34Z","ServerKey":"us63"},{"ID":3447,"VillageID":6080,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":746,"CreatedAt":"2023-02-14T21:26:59Z","ServerKey":"us63"},{"ID":3448,"VillageID":8173,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":848955431,"OldTribeID":0,"Points":578,"CreatedAt":"2023-02-14T21:27:16Z","ServerKey":"us63"},{"ID":3449,"VillageID":2931,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-14T21:27:31Z","ServerKey":"us63"},{"ID":3450,"VillageID":7141,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-14T21:34:30Z","ServerKey":"us63"},{"ID":3451,"VillageID":2470,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-14T21:42:03Z","ServerKey":"us63"},{"ID":3452,"VillageID":437,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":334,"CreatedAt":"2023-02-14T21:46:09Z","ServerKey":"us63"},{"ID":3453,"VillageID":1127,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1399,"CreatedAt":"2023-02-14T21:52:52Z","ServerKey":"us63"},{"ID":3454,"VillageID":8617,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-14T21:54:21Z","ServerKey":"us63"},{"ID":3455,"VillageID":1659,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-14T21:56:16Z","ServerKey":"us63"},{"ID":3456,"VillageID":8155,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-14T21:58:43Z","ServerKey":"us63"},{"ID":3457,"VillageID":7378,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-14T22:01:42Z","ServerKey":"us63"},{"ID":3458,"VillageID":616,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-14T22:05:44Z","ServerKey":"us63"},{"ID":3459,"VillageID":7406,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-14T22:21:40Z","ServerKey":"us63"},{"ID":3460,"VillageID":4532,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-14T22:46:37Z","ServerKey":"us63"},{"ID":3461,"VillageID":1811,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-14T22:48:41Z","ServerKey":"us63"},{"ID":3462,"VillageID":1417,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":390,"CreatedAt":"2023-02-14T23:00:37Z","ServerKey":"us63"},{"ID":3463,"VillageID":2178,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-14T23:02:40Z","ServerKey":"us63"},{"ID":3464,"VillageID":6807,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-14T23:09:00Z","ServerKey":"us63"},{"ID":3465,"VillageID":3781,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-14T23:13:04Z","ServerKey":"us63"},{"ID":3466,"VillageID":2576,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-14T23:15:23Z","ServerKey":"us63"},{"ID":3467,"VillageID":1976,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-14T23:18:46Z","ServerKey":"us63"},{"ID":3468,"VillageID":6502,"NewOwnerID":776842,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-14T23:18:59Z","ServerKey":"us63"},{"ID":3469,"VillageID":435,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":4089,"CreatedAt":"2023-02-14T23:23:30Z","ServerKey":"us63"},{"ID":3470,"VillageID":435,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":4089,"CreatedAt":"2023-02-14T23:23:30Z","ServerKey":"us63"},{"ID":3471,"VillageID":2107,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-14T23:24:11Z","ServerKey":"us63"},{"ID":3472,"VillageID":4756,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-14T23:26:56Z","ServerKey":"us63"},{"ID":3473,"VillageID":9272,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-14T23:31:51Z","ServerKey":"us63"},{"ID":3474,"VillageID":2067,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-14T23:35:05Z","ServerKey":"us63"},{"ID":3475,"VillageID":853,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-14T23:45:57Z","ServerKey":"us63"},{"ID":3476,"VillageID":7622,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-14T23:50:02Z","ServerKey":"us63"},{"ID":3477,"VillageID":7700,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-15T00:21:06Z","ServerKey":"us63"},{"ID":3478,"VillageID":8173,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":751295,"OldTribeID":209,"Points":554,"CreatedAt":"2023-02-15T00:22:51Z","ServerKey":"us63"},{"ID":3479,"VillageID":8374,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-15T00:29:34Z","ServerKey":"us63"},{"ID":3480,"VillageID":7142,"NewOwnerID":848945448,"NewTribeID":0,"OldOwnerID":848955254,"OldTribeID":0,"Points":1473,"CreatedAt":"2023-02-15T00:30:15Z","ServerKey":"us63"},{"ID":3481,"VillageID":7358,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-15T00:31:15Z","ServerKey":"us63"},{"ID":3482,"VillageID":457,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T00:31:31Z","ServerKey":"us63"},{"ID":3483,"VillageID":6140,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":708,"CreatedAt":"2023-02-15T00:32:13Z","ServerKey":"us63"},{"ID":3484,"VillageID":210,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-15T00:36:10Z","ServerKey":"us63"},{"ID":3485,"VillageID":7340,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-15T00:39:32Z","ServerKey":"us63"},{"ID":3486,"VillageID":121,"NewOwnerID":848883478,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-15T00:48:40Z","ServerKey":"us63"},{"ID":3487,"VillageID":5643,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-15T00:50:21Z","ServerKey":"us63"},{"ID":3488,"VillageID":6438,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-15T00:52:42Z","ServerKey":"us63"},{"ID":3489,"VillageID":1496,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":2379,"CreatedAt":"2023-02-15T01:09:43Z","ServerKey":"us63"},{"ID":3490,"VillageID":152,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":3619,"CreatedAt":"2023-02-15T01:14:12Z","ServerKey":"us63"},{"ID":3491,"VillageID":3696,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-15T01:43:35Z","ServerKey":"us63"},{"ID":3492,"VillageID":4436,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":694,"CreatedAt":"2023-02-15T01:58:52Z","ServerKey":"us63"},{"ID":3493,"VillageID":650,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":3758,"CreatedAt":"2023-02-15T02:01:36Z","ServerKey":"us63"},{"ID":3494,"VillageID":7049,"NewOwnerID":791583,"NewTribeID":76,"OldOwnerID":731385,"OldTribeID":167,"Points":3227,"CreatedAt":"2023-02-15T02:03:00Z","ServerKey":"us63"},{"ID":3495,"VillageID":2807,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":768161,"OldTribeID":0,"Points":5584,"CreatedAt":"2023-02-15T02:09:15Z","ServerKey":"us63"},{"ID":3496,"VillageID":1088,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1377,"CreatedAt":"2023-02-15T02:24:53Z","ServerKey":"us63"},{"ID":3497,"VillageID":3861,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-02-15T02:26:06Z","ServerKey":"us63"},{"ID":3498,"VillageID":3861,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":848954140,"OldTribeID":85,"Points":279,"CreatedAt":"2023-02-15T02:26:06Z","ServerKey":"us63"},{"ID":3499,"VillageID":2615,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-15T02:32:26Z","ServerKey":"us63"},{"ID":3500,"VillageID":6385,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-15T02:46:40Z","ServerKey":"us63"},{"ID":3501,"VillageID":2775,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":540,"CreatedAt":"2023-02-15T02:51:44Z","ServerKey":"us63"},{"ID":3502,"VillageID":3617,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-15T03:03:50Z","ServerKey":"us63"},{"ID":3503,"VillageID":3671,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-15T03:04:24Z","ServerKey":"us63"},{"ID":3504,"VillageID":7860,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-15T03:24:53Z","ServerKey":"us63"},{"ID":3505,"VillageID":1592,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1421,"CreatedAt":"2023-02-15T03:26:13Z","ServerKey":"us63"},{"ID":3506,"VillageID":3961,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-15T03:33:51Z","ServerKey":"us63"},{"ID":3507,"VillageID":2051,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-15T03:34:07Z","ServerKey":"us63"},{"ID":3508,"VillageID":6214,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-15T03:38:05Z","ServerKey":"us63"},{"ID":3509,"VillageID":8468,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-15T04:02:42Z","ServerKey":"us63"},{"ID":3510,"VillageID":8056,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-15T04:17:07Z","ServerKey":"us63"},{"ID":3511,"VillageID":8639,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-15T04:19:33Z","ServerKey":"us63"},{"ID":3512,"VillageID":7919,"NewOwnerID":302611,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-02-15T04:25:40Z","ServerKey":"us63"},{"ID":3513,"VillageID":9591,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":29,"CreatedAt":"2023-02-15T04:25:46Z","ServerKey":"us63"},{"ID":3514,"VillageID":3800,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-15T04:26:46Z","ServerKey":"us63"},{"ID":3515,"VillageID":3541,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-15T04:35:39Z","ServerKey":"us63"},{"ID":3516,"VillageID":197,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1576,"CreatedAt":"2023-02-15T04:36:48Z","ServerKey":"us63"},{"ID":3517,"VillageID":1323,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-15T04:38:22Z","ServerKey":"us63"},{"ID":3518,"VillageID":840,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-15T04:40:52Z","ServerKey":"us63"},{"ID":3519,"VillageID":8173,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":737871,"OldTribeID":11,"Points":518,"CreatedAt":"2023-02-15T04:52:14Z","ServerKey":"us63"},{"ID":3520,"VillageID":1832,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":9168,"CreatedAt":"2023-02-15T04:55:00Z","ServerKey":"us63"},{"ID":3521,"VillageID":1186,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":6634,"CreatedAt":"2023-02-15T04:55:10Z","ServerKey":"us63"},{"ID":3522,"VillageID":5897,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-15T04:58:41Z","ServerKey":"us63"},{"ID":3523,"VillageID":158,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":2726,"CreatedAt":"2023-02-15T04:59:59Z","ServerKey":"us63"},{"ID":3524,"VillageID":158,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848941909,"OldTribeID":6,"Points":2726,"CreatedAt":"2023-02-15T04:59:59Z","ServerKey":"us63"},{"ID":3525,"VillageID":1587,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":2399,"CreatedAt":"2023-02-15T05:00:00Z","ServerKey":"us63"},{"ID":3526,"VillageID":1544,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848952522,"OldTribeID":105,"Points":9224,"CreatedAt":"2023-02-15T05:00:00Z","ServerKey":"us63"},{"ID":3527,"VillageID":1544,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":766625,"OldTribeID":6,"Points":9224,"CreatedAt":"2023-02-15T05:00:00Z","ServerKey":"us63"},{"ID":3528,"VillageID":3106,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-15T05:00:46Z","ServerKey":"us63"},{"ID":3529,"VillageID":4301,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":4624,"CreatedAt":"2023-02-15T05:01:06Z","ServerKey":"us63"},{"ID":3530,"VillageID":3901,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":1593,"CreatedAt":"2023-02-15T05:02:28Z","ServerKey":"us63"},{"ID":3531,"VillageID":3484,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-15T05:08:23Z","ServerKey":"us63"},{"ID":3532,"VillageID":6215,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848954794,"OldTribeID":0,"Points":1550,"CreatedAt":"2023-02-15T05:13:38Z","ServerKey":"us63"},{"ID":3533,"VillageID":5208,"NewOwnerID":717445,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-15T05:14:02Z","ServerKey":"us63"},{"ID":3534,"VillageID":6673,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-15T05:17:58Z","ServerKey":"us63"},{"ID":3535,"VillageID":450,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":387,"CreatedAt":"2023-02-15T05:20:27Z","ServerKey":"us63"},{"ID":3536,"VillageID":7177,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-15T05:20:49Z","ServerKey":"us63"},{"ID":3537,"VillageID":4035,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":373,"CreatedAt":"2023-02-15T05:39:15Z","ServerKey":"us63"},{"ID":3538,"VillageID":7028,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848953499,"OldTribeID":0,"Points":3873,"CreatedAt":"2023-02-15T05:46:50Z","ServerKey":"us63"},{"ID":3539,"VillageID":1276,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":581,"CreatedAt":"2023-02-15T05:58:36Z","ServerKey":"us63"},{"ID":3540,"VillageID":4626,"NewOwnerID":848938594,"NewTribeID":91,"OldOwnerID":848905385,"OldTribeID":0,"Points":385,"CreatedAt":"2023-02-15T06:16:36Z","ServerKey":"us63"},{"ID":3541,"VillageID":632,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-15T06:35:02Z","ServerKey":"us63"},{"ID":3542,"VillageID":1641,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-15T06:42:09Z","ServerKey":"us63"},{"ID":3543,"VillageID":6533,"NewOwnerID":776842,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-15T06:49:29Z","ServerKey":"us63"},{"ID":3544,"VillageID":7894,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-15T06:59:45Z","ServerKey":"us63"},{"ID":3545,"VillageID":9242,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-15T07:04:28Z","ServerKey":"us63"},{"ID":3546,"VillageID":1934,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":781,"CreatedAt":"2023-02-15T07:09:47Z","ServerKey":"us63"},{"ID":3547,"VillageID":493,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-15T07:15:08Z","ServerKey":"us63"},{"ID":3548,"VillageID":137,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-15T07:16:31Z","ServerKey":"us63"},{"ID":3549,"VillageID":1128,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-15T07:16:34Z","ServerKey":"us63"},{"ID":3550,"VillageID":5544,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-15T07:19:55Z","ServerKey":"us63"},{"ID":3551,"VillageID":7549,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-15T07:21:33Z","ServerKey":"us63"},{"ID":3552,"VillageID":4122,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-15T07:31:44Z","ServerKey":"us63"},{"ID":3553,"VillageID":396,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":9791,"CreatedAt":"2023-02-15T07:49:10Z","ServerKey":"us63"},{"ID":3554,"VillageID":2534,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-15T08:42:14Z","ServerKey":"us63"},{"ID":3555,"VillageID":3929,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":747735,"OldTribeID":65,"Points":3577,"CreatedAt":"2023-02-15T09:00:34Z","ServerKey":"us63"},{"ID":3556,"VillageID":1414,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":768825,"OldTribeID":105,"Points":2571,"CreatedAt":"2023-02-15T09:01:54Z","ServerKey":"us63"},{"ID":3557,"VillageID":356,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":7799,"CreatedAt":"2023-02-15T09:03:02Z","ServerKey":"us63"},{"ID":3558,"VillageID":2182,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":814,"CreatedAt":"2023-02-15T09:09:25Z","ServerKey":"us63"},{"ID":3559,"VillageID":3848,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-15T09:15:29Z","ServerKey":"us63"},{"ID":3560,"VillageID":7513,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-15T09:17:37Z","ServerKey":"us63"},{"ID":3561,"VillageID":2258,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-15T09:42:08Z","ServerKey":"us63"},{"ID":3562,"VillageID":8422,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-15T09:48:44Z","ServerKey":"us63"},{"ID":3563,"VillageID":1023,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-15T09:57:39Z","ServerKey":"us63"},{"ID":3564,"VillageID":3043,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-15T10:16:45Z","ServerKey":"us63"},{"ID":3565,"VillageID":3918,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":7252,"CreatedAt":"2023-02-15T10:25:27Z","ServerKey":"us63"},{"ID":3566,"VillageID":3918,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":7252,"CreatedAt":"2023-02-15T10:25:27Z","ServerKey":"us63"},{"ID":3567,"VillageID":6560,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-15T10:28:15Z","ServerKey":"us63"},{"ID":3568,"VillageID":7261,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-15T10:31:15Z","ServerKey":"us63"},{"ID":3569,"VillageID":7261,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":604194,"OldTribeID":174,"Points":161,"CreatedAt":"2023-02-15T10:31:15Z","ServerKey":"us63"},{"ID":3570,"VillageID":741,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-15T10:31:45Z","ServerKey":"us63"},{"ID":3571,"VillageID":880,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-15T10:35:25Z","ServerKey":"us63"},{"ID":3572,"VillageID":7157,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-15T10:45:09Z","ServerKey":"us63"},{"ID":3573,"VillageID":7474,"NewOwnerID":715075,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-15T10:45:49Z","ServerKey":"us63"},{"ID":3574,"VillageID":2599,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-15T10:49:56Z","ServerKey":"us63"},{"ID":3575,"VillageID":2196,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":2883,"CreatedAt":"2023-02-15T10:50:16Z","ServerKey":"us63"},{"ID":3576,"VillageID":2975,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-15T10:55:42Z","ServerKey":"us63"},{"ID":3577,"VillageID":7719,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-15T11:01:48Z","ServerKey":"us63"},{"ID":3578,"VillageID":1191,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-15T11:15:20Z","ServerKey":"us63"},{"ID":3579,"VillageID":8037,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-02-15T11:19:41Z","ServerKey":"us63"},{"ID":3580,"VillageID":3201,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-15T11:23:19Z","ServerKey":"us63"},{"ID":3581,"VillageID":3719,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-15T11:27:30Z","ServerKey":"us63"},{"ID":3582,"VillageID":3552,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-15T11:43:42Z","ServerKey":"us63"},{"ID":3583,"VillageID":195,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-15T11:49:56Z","ServerKey":"us63"},{"ID":3584,"VillageID":3361,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T11:51:49Z","ServerKey":"us63"},{"ID":3585,"VillageID":7719,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":781432,"OldTribeID":198,"Points":176,"CreatedAt":"2023-02-15T11:53:04Z","ServerKey":"us63"},{"ID":3586,"VillageID":7435,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":327519,"OldTribeID":0,"Points":7439,"CreatedAt":"2023-02-15T12:00:00Z","ServerKey":"us63"},{"ID":3587,"VillageID":7435,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":339555,"OldTribeID":74,"Points":7439,"CreatedAt":"2023-02-15T12:00:00Z","ServerKey":"us63"},{"ID":3588,"VillageID":3560,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-15T12:11:19Z","ServerKey":"us63"},{"ID":3589,"VillageID":602,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-15T12:39:22Z","ServerKey":"us63"},{"ID":3590,"VillageID":602,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":587894,"OldTribeID":48,"Points":348,"CreatedAt":"2023-02-15T12:39:34Z","ServerKey":"us63"},{"ID":3591,"VillageID":1209,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-15T12:54:35Z","ServerKey":"us63"},{"ID":3592,"VillageID":4523,"NewOwnerID":848947885,"NewTribeID":187,"OldOwnerID":848952345,"OldTribeID":7,"Points":3391,"CreatedAt":"2023-02-15T13:10:27Z","ServerKey":"us63"},{"ID":3593,"VillageID":509,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-15T13:18:16Z","ServerKey":"us63"},{"ID":3594,"VillageID":1000,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-15T13:23:45Z","ServerKey":"us63"},{"ID":3595,"VillageID":979,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-15T13:26:20Z","ServerKey":"us63"},{"ID":3596,"VillageID":958,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-15T13:38:34Z","ServerKey":"us63"},{"ID":3597,"VillageID":8244,"NewOwnerID":848955438,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-15T13:39:32Z","ServerKey":"us63"},{"ID":3598,"VillageID":8872,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-15T13:41:16Z","ServerKey":"us63"},{"ID":3599,"VillageID":5789,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-15T13:41:48Z","ServerKey":"us63"},{"ID":3600,"VillageID":8603,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-15T13:45:57Z","ServerKey":"us63"},{"ID":3601,"VillageID":5759,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":263554,"OldTribeID":83,"Points":2596,"CreatedAt":"2023-02-15T13:50:00Z","ServerKey":"us63"},{"ID":3602,"VillageID":985,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-15T13:50:26Z","ServerKey":"us63"},{"ID":3603,"VillageID":3805,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-15T14:02:24Z","ServerKey":"us63"},{"ID":3604,"VillageID":1084,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848952522,"OldTribeID":105,"Points":4016,"CreatedAt":"2023-02-15T14:06:46Z","ServerKey":"us63"},{"ID":3605,"VillageID":1749,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":861,"CreatedAt":"2023-02-15T14:12:37Z","ServerKey":"us63"},{"ID":3606,"VillageID":5050,"NewOwnerID":848954941,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-15T14:17:27Z","ServerKey":"us63"},{"ID":3607,"VillageID":3843,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-15T14:36:41Z","ServerKey":"us63"},{"ID":3608,"VillageID":2751,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1060,"CreatedAt":"2023-02-15T14:48:49Z","ServerKey":"us63"},{"ID":3609,"VillageID":470,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-15T15:00:18Z","ServerKey":"us63"},{"ID":3610,"VillageID":3379,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-15T15:01:18Z","ServerKey":"us63"},{"ID":3611,"VillageID":3379,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":848909148,"OldTribeID":20,"Points":169,"CreatedAt":"2023-02-15T15:02:48Z","ServerKey":"us63"},{"ID":3614,"VillageID":1132,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-15T15:14:39Z","ServerKey":"us63"},{"ID":3615,"VillageID":2926,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":848954553,"OldTribeID":53,"Points":1651,"CreatedAt":"2023-02-15T15:25:56Z","ServerKey":"us63"},{"ID":3616,"VillageID":2926,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":848948640,"OldTribeID":227,"Points":1651,"CreatedAt":"2023-02-15T15:25:56Z","ServerKey":"us63"},{"ID":3617,"VillageID":3406,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-15T15:26:44Z","ServerKey":"us63"},{"ID":3618,"VillageID":5736,"NewOwnerID":848955156,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-15T15:32:06Z","ServerKey":"us63"},{"ID":3619,"VillageID":5669,"NewOwnerID":848954668,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-15T15:36:46Z","ServerKey":"us63"},{"ID":3620,"VillageID":5851,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-15T15:46:14Z","ServerKey":"us63"},{"ID":3621,"VillageID":3349,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-15T15:49:52Z","ServerKey":"us63"},{"ID":3622,"VillageID":674,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-15T15:54:43Z","ServerKey":"us63"},{"ID":3623,"VillageID":7751,"NewOwnerID":848955237,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-15T16:03:35Z","ServerKey":"us63"},{"ID":3624,"VillageID":4238,"NewOwnerID":758872,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":557,"CreatedAt":"2023-02-15T16:20:18Z","ServerKey":"us63"},{"ID":3625,"VillageID":8578,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-15T16:21:05Z","ServerKey":"us63"},{"ID":3626,"VillageID":9010,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-02-15T16:28:02Z","ServerKey":"us63"},{"ID":3627,"VillageID":2094,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-15T16:30:34Z","ServerKey":"us63"},{"ID":3628,"VillageID":680,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":399,"CreatedAt":"2023-02-15T16:36:59Z","ServerKey":"us63"},{"ID":3629,"VillageID":7853,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-15T16:53:08Z","ServerKey":"us63"},{"ID":3630,"VillageID":8739,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-15T16:56:01Z","ServerKey":"us63"},{"ID":3631,"VillageID":6198,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-15T17:06:44Z","ServerKey":"us63"},{"ID":3632,"VillageID":4096,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-15T17:08:44Z","ServerKey":"us63"},{"ID":3633,"VillageID":6139,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-15T17:30:09Z","ServerKey":"us63"},{"ID":3634,"VillageID":360,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":310,"CreatedAt":"2023-02-15T17:34:50Z","ServerKey":"us63"},{"ID":3635,"VillageID":7943,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-15T17:52:12Z","ServerKey":"us63"},{"ID":3636,"VillageID":931,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-15T17:52:20Z","ServerKey":"us63"},{"ID":3637,"VillageID":204,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":2109,"CreatedAt":"2023-02-15T18:04:11Z","ServerKey":"us63"},{"ID":3638,"VillageID":1762,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":416,"CreatedAt":"2023-02-15T18:04:11Z","ServerKey":"us63"},{"ID":3639,"VillageID":1446,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-15T18:06:31Z","ServerKey":"us63"},{"ID":3640,"VillageID":3117,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-15T18:08:04Z","ServerKey":"us63"},{"ID":3641,"VillageID":931,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":301,"CreatedAt":"2023-02-15T18:08:50Z","ServerKey":"us63"},{"ID":3642,"VillageID":2427,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-15T18:24:20Z","ServerKey":"us63"},{"ID":3643,"VillageID":1286,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":879,"CreatedAt":"2023-02-15T18:31:07Z","ServerKey":"us63"},{"ID":3644,"VillageID":4826,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-15T18:33:55Z","ServerKey":"us63"},{"ID":3645,"VillageID":777,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-15T18:36:04Z","ServerKey":"us63"},{"ID":3646,"VillageID":1177,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":5146,"CreatedAt":"2023-02-15T18:37:12Z","ServerKey":"us63"},{"ID":3647,"VillageID":2428,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-15T18:43:24Z","ServerKey":"us63"},{"ID":3648,"VillageID":3334,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T18:55:01Z","ServerKey":"us63"},{"ID":3649,"VillageID":4240,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":1085,"CreatedAt":"2023-02-15T18:57:23Z","ServerKey":"us63"},{"ID":3650,"VillageID":2836,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-15T19:06:13Z","ServerKey":"us63"},{"ID":3651,"VillageID":1146,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":7598,"CreatedAt":"2023-02-15T19:16:35Z","ServerKey":"us63"},{"ID":3652,"VillageID":184,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-15T19:22:34Z","ServerKey":"us63"},{"ID":3653,"VillageID":1485,"NewOwnerID":848936718,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":648,"CreatedAt":"2023-02-15T19:26:40Z","ServerKey":"us63"},{"ID":3654,"VillageID":1360,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-15T19:34:13Z","ServerKey":"us63"},{"ID":3655,"VillageID":533,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":7268,"CreatedAt":"2023-02-15T19:34:18Z","ServerKey":"us63"},{"ID":3656,"VillageID":763,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":509766,"OldTribeID":0,"Points":6636,"CreatedAt":"2023-02-15T19:35:30Z","ServerKey":"us63"},{"ID":3657,"VillageID":5681,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-15T19:47:43Z","ServerKey":"us63"},{"ID":3658,"VillageID":942,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-15T19:49:09Z","ServerKey":"us63"},{"ID":3659,"VillageID":7964,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-15T19:54:15Z","ServerKey":"us63"},{"ID":3660,"VillageID":1428,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949204,"OldTribeID":105,"Points":11898,"CreatedAt":"2023-02-15T19:59:42Z","ServerKey":"us63"},{"ID":3661,"VillageID":6557,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-15T20:00:29Z","ServerKey":"us63"},{"ID":3662,"VillageID":4167,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-15T20:09:06Z","ServerKey":"us63"},{"ID":3663,"VillageID":9711,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":27,"CreatedAt":"2023-02-15T20:12:26Z","ServerKey":"us63"},{"ID":3664,"VillageID":3206,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-15T20:26:26Z","ServerKey":"us63"},{"ID":3665,"VillageID":7299,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":302611,"OldTribeID":0,"Points":4264,"CreatedAt":"2023-02-15T20:32:17Z","ServerKey":"us63"},{"ID":3666,"VillageID":7377,"NewOwnerID":848955348,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-15T20:33:10Z","ServerKey":"us63"},{"ID":3667,"VillageID":2286,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":655,"CreatedAt":"2023-02-15T20:33:13Z","ServerKey":"us63"},{"ID":3668,"VillageID":8415,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-15T20:36:46Z","ServerKey":"us63"},{"ID":3669,"VillageID":4719,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-15T20:36:52Z","ServerKey":"us63"},{"ID":3670,"VillageID":3250,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-15T20:38:32Z","ServerKey":"us63"},{"ID":3671,"VillageID":533,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":7244,"CreatedAt":"2023-02-15T20:42:23Z","ServerKey":"us63"},{"ID":3672,"VillageID":2078,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":448,"CreatedAt":"2023-02-15T21:16:13Z","ServerKey":"us63"},{"ID":3673,"VillageID":1522,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-15T21:16:30Z","ServerKey":"us63"},{"ID":3674,"VillageID":5626,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-15T21:19:52Z","ServerKey":"us63"},{"ID":3675,"VillageID":8885,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-15T21:20:15Z","ServerKey":"us63"},{"ID":3676,"VillageID":7281,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-15T21:22:30Z","ServerKey":"us63"},{"ID":3677,"VillageID":3329,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-15T21:25:23Z","ServerKey":"us63"},{"ID":3678,"VillageID":102,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-15T21:31:47Z","ServerKey":"us63"},{"ID":3679,"VillageID":3276,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-15T21:33:38Z","ServerKey":"us63"},{"ID":3680,"VillageID":3310,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-15T21:39:20Z","ServerKey":"us63"},{"ID":3681,"VillageID":202,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949204,"OldTribeID":105,"Points":6928,"CreatedAt":"2023-02-15T22:13:22Z","ServerKey":"us63"},{"ID":3682,"VillageID":1217,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-15T22:15:24Z","ServerKey":"us63"},{"ID":3683,"VillageID":2203,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-15T22:17:48Z","ServerKey":"us63"},{"ID":3684,"VillageID":3929,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":767507,"OldTribeID":138,"Points":3830,"CreatedAt":"2023-02-15T22:27:35Z","ServerKey":"us63"},{"ID":3685,"VillageID":5576,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-15T22:29:39Z","ServerKey":"us63"},{"ID":3686,"VillageID":3444,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":425,"CreatedAt":"2023-02-15T22:34:23Z","ServerKey":"us63"},{"ID":3687,"VillageID":1045,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-15T22:36:29Z","ServerKey":"us63"},{"ID":3688,"VillageID":4942,"NewOwnerID":848951609,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-15T22:36:39Z","ServerKey":"us63"},{"ID":3689,"VillageID":294,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-15T22:38:08Z","ServerKey":"us63"},{"ID":3690,"VillageID":3385,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-15T22:46:14Z","ServerKey":"us63"},{"ID":3691,"VillageID":804,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-15T22:47:19Z","ServerKey":"us63"},{"ID":3692,"VillageID":778,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":9865,"CreatedAt":"2023-02-15T22:55:36Z","ServerKey":"us63"},{"ID":3693,"VillageID":5543,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-15T22:58:01Z","ServerKey":"us63"},{"ID":3694,"VillageID":6846,"NewOwnerID":848908351,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-15T23:00:38Z","ServerKey":"us63"},{"ID":3695,"VillageID":8709,"NewOwnerID":848953907,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-15T23:02:59Z","ServerKey":"us63"},{"ID":3696,"VillageID":7727,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":735360,"OldTribeID":152,"Points":2620,"CreatedAt":"2023-02-15T23:12:05Z","ServerKey":"us63"},{"ID":3697,"VillageID":263,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848948099,"OldTribeID":185,"Points":4556,"CreatedAt":"2023-02-15T23:15:38Z","ServerKey":"us63"},{"ID":3698,"VillageID":4620,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T23:18:11Z","ServerKey":"us63"},{"ID":3699,"VillageID":6251,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-15T23:30:20Z","ServerKey":"us63"},{"ID":3700,"VillageID":86,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848912363,"OldTribeID":0,"Points":5681,"CreatedAt":"2023-02-15T23:39:23Z","ServerKey":"us63"},{"ID":3701,"VillageID":6408,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-15T23:45:47Z","ServerKey":"us63"},{"ID":3702,"VillageID":7197,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-15T23:48:10Z","ServerKey":"us63"},{"ID":3703,"VillageID":6376,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-15T23:58:00Z","ServerKey":"us63"},{"ID":3704,"VillageID":1559,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-15T23:59:29Z","ServerKey":"us63"},{"ID":3705,"VillageID":9062,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-16T00:03:55Z","ServerKey":"us63"},{"ID":3706,"VillageID":519,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-16T00:12:36Z","ServerKey":"us63"},{"ID":3707,"VillageID":882,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-16T00:44:59Z","ServerKey":"us63"},{"ID":3708,"VillageID":4745,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":420,"CreatedAt":"2023-02-16T00:50:27Z","ServerKey":"us63"},{"ID":3709,"VillageID":8862,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-16T01:02:20Z","ServerKey":"us63"},{"ID":3710,"VillageID":4171,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-16T01:04:24Z","ServerKey":"us63"},{"ID":3711,"VillageID":5445,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-16T01:05:59Z","ServerKey":"us63"},{"ID":3712,"VillageID":6023,"NewOwnerID":848954052,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":399,"CreatedAt":"2023-02-16T01:23:05Z","ServerKey":"us63"},{"ID":3713,"VillageID":3883,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":2098,"CreatedAt":"2023-02-16T01:24:13Z","ServerKey":"us63"},{"ID":3714,"VillageID":1428,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":11945,"CreatedAt":"2023-02-16T01:31:25Z","ServerKey":"us63"},{"ID":3715,"VillageID":3528,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-16T01:40:01Z","ServerKey":"us63"},{"ID":3716,"VillageID":4968,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":780097,"OldTribeID":127,"Points":1335,"CreatedAt":"2023-02-16T01:40:21Z","ServerKey":"us63"},{"ID":3717,"VillageID":406,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-16T01:46:49Z","ServerKey":"us63"},{"ID":3718,"VillageID":2985,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-16T01:47:14Z","ServerKey":"us63"},{"ID":3719,"VillageID":313,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":6964,"CreatedAt":"2023-02-16T01:58:42Z","ServerKey":"us63"},{"ID":3720,"VillageID":8447,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-16T02:14:09Z","ServerKey":"us63"},{"ID":3721,"VillageID":1872,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":760,"CreatedAt":"2023-02-16T02:15:11Z","ServerKey":"us63"},{"ID":3722,"VillageID":4505,"NewOwnerID":758872,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-16T03:38:51Z","ServerKey":"us63"},{"ID":3723,"VillageID":6283,"NewOwnerID":848932635,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-16T03:40:45Z","ServerKey":"us63"},{"ID":3724,"VillageID":6915,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-16T03:42:24Z","ServerKey":"us63"},{"ID":3725,"VillageID":7789,"NewOwnerID":848954814,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-16T03:44:29Z","ServerKey":"us63"},{"ID":3726,"VillageID":7355,"NewOwnerID":848942248,"NewTribeID":0,"OldOwnerID":848955296,"OldTribeID":104,"Points":530,"CreatedAt":"2023-02-16T03:46:18Z","ServerKey":"us63"},{"ID":3727,"VillageID":6874,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-16T03:48:10Z","ServerKey":"us63"},{"ID":3728,"VillageID":3570,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":747735,"OldTribeID":65,"Points":3323,"CreatedAt":"2023-02-16T03:48:34Z","ServerKey":"us63"},{"ID":3729,"VillageID":5842,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-16T03:55:51Z","ServerKey":"us63"},{"ID":3730,"VillageID":1696,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-16T04:02:07Z","ServerKey":"us63"},{"ID":3731,"VillageID":5982,"NewOwnerID":848955156,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-16T04:03:32Z","ServerKey":"us63"},{"ID":3732,"VillageID":1059,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-16T04:12:09Z","ServerKey":"us63"},{"ID":3733,"VillageID":7634,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":302611,"OldTribeID":0,"Points":977,"CreatedAt":"2023-02-16T04:16:43Z","ServerKey":"us63"},{"ID":3734,"VillageID":5884,"NewOwnerID":848954926,"NewTribeID":66,"OldOwnerID":848945636,"OldTribeID":0,"Points":743,"CreatedAt":"2023-02-16T04:17:42Z","ServerKey":"us63"},{"ID":3735,"VillageID":3105,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848954555,"OldTribeID":219,"Points":3850,"CreatedAt":"2023-02-16T04:20:35Z","ServerKey":"us63"},{"ID":3736,"VillageID":2748,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":432,"CreatedAt":"2023-02-16T04:24:35Z","ServerKey":"us63"},{"ID":3737,"VillageID":5068,"NewOwnerID":848952732,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-16T04:32:12Z","ServerKey":"us63"},{"ID":3738,"VillageID":3098,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":5045,"CreatedAt":"2023-02-16T04:35:14Z","ServerKey":"us63"},{"ID":3739,"VillageID":3787,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":747735,"OldTribeID":65,"Points":8855,"CreatedAt":"2023-02-16T04:41:01Z","ServerKey":"us63"},{"ID":3740,"VillageID":5052,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-16T04:54:21Z","ServerKey":"us63"},{"ID":3741,"VillageID":267,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":768825,"OldTribeID":105,"Points":5932,"CreatedAt":"2023-02-16T04:58:00Z","ServerKey":"us63"},{"ID":3742,"VillageID":267,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":5932,"CreatedAt":"2023-02-16T04:58:00Z","ServerKey":"us63"},{"ID":3743,"VillageID":3266,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":1504,"CreatedAt":"2023-02-16T05:00:07Z","ServerKey":"us63"},{"ID":3744,"VillageID":9278,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-16T05:00:07Z","ServerKey":"us63"},{"ID":3745,"VillageID":3290,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":385,"CreatedAt":"2023-02-16T05:00:45Z","ServerKey":"us63"},{"ID":3746,"VillageID":1656,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":6147,"CreatedAt":"2023-02-16T05:01:17Z","ServerKey":"us63"},{"ID":3747,"VillageID":3979,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":758230,"OldTribeID":105,"Points":4689,"CreatedAt":"2023-02-16T05:01:29Z","ServerKey":"us63"},{"ID":3748,"VillageID":4576,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-16T05:12:43Z","ServerKey":"us63"},{"ID":3749,"VillageID":5672,"NewOwnerID":848955157,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-16T05:12:56Z","ServerKey":"us63"},{"ID":3750,"VillageID":3647,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":835,"CreatedAt":"2023-02-16T05:22:58Z","ServerKey":"us63"},{"ID":3751,"VillageID":3271,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-16T05:23:39Z","ServerKey":"us63"},{"ID":3752,"VillageID":1481,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":509766,"OldTribeID":0,"Points":1621,"CreatedAt":"2023-02-16T05:24:04Z","ServerKey":"us63"},{"ID":3753,"VillageID":8582,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-16T05:27:25Z","ServerKey":"us63"},{"ID":3754,"VillageID":5323,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-16T05:44:00Z","ServerKey":"us63"},{"ID":3755,"VillageID":4592,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-16T05:51:18Z","ServerKey":"us63"},{"ID":3756,"VillageID":5088,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":848950197,"OldTribeID":4,"Points":5905,"CreatedAt":"2023-02-16T05:56:00Z","ServerKey":"us63"},{"ID":3757,"VillageID":1428,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949948,"OldTribeID":85,"Points":11957,"CreatedAt":"2023-02-16T05:57:00Z","ServerKey":"us63"},{"ID":3758,"VillageID":1460,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848954354,"OldTribeID":105,"Points":5636,"CreatedAt":"2023-02-16T05:58:48Z","ServerKey":"us63"},{"ID":3759,"VillageID":4003,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":593,"CreatedAt":"2023-02-16T05:59:51Z","ServerKey":"us63"},{"ID":3760,"VillageID":3929,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":747735,"OldTribeID":65,"Points":3875,"CreatedAt":"2023-02-16T06:04:35Z","ServerKey":"us63"},{"ID":3761,"VillageID":3947,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-16T06:06:42Z","ServerKey":"us63"},{"ID":3762,"VillageID":3010,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":563,"CreatedAt":"2023-02-16T06:20:29Z","ServerKey":"us63"},{"ID":3763,"VillageID":6317,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":2553,"CreatedAt":"2023-02-16T06:22:05Z","ServerKey":"us63"},{"ID":3764,"VillageID":3562,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1162,"CreatedAt":"2023-02-16T06:31:05Z","ServerKey":"us63"},{"ID":3765,"VillageID":7144,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-16T06:33:17Z","ServerKey":"us63"},{"ID":3766,"VillageID":6434,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":3262,"CreatedAt":"2023-02-16T07:18:09Z","ServerKey":"us63"},{"ID":3767,"VillageID":738,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-16T07:21:29Z","ServerKey":"us63"},{"ID":3768,"VillageID":2868,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-16T07:35:37Z","ServerKey":"us63"},{"ID":3769,"VillageID":6679,"NewOwnerID":848954201,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-16T07:40:56Z","ServerKey":"us63"},{"ID":3770,"VillageID":1680,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848949204,"OldTribeID":105,"Points":5251,"CreatedAt":"2023-02-16T07:52:14Z","ServerKey":"us63"},{"ID":3771,"VillageID":1680,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848951306,"OldTribeID":183,"Points":5227,"CreatedAt":"2023-02-16T07:52:58Z","ServerKey":"us63"},{"ID":3772,"VillageID":1680,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848951306,"OldTribeID":183,"Points":5227,"CreatedAt":"2023-02-16T07:53:10Z","ServerKey":"us63"},{"ID":3773,"VillageID":1332,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":848945072,"OldTribeID":15,"Points":2338,"CreatedAt":"2023-02-16T08:14:54Z","ServerKey":"us63"},{"ID":3774,"VillageID":6832,"NewOwnerID":302745,"NewTribeID":187,"OldOwnerID":848896640,"OldTribeID":0,"Points":704,"CreatedAt":"2023-02-16T08:15:32Z","ServerKey":"us63"},{"ID":3775,"VillageID":241,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-16T08:24:10Z","ServerKey":"us63"},{"ID":3776,"VillageID":5310,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-16T08:26:46Z","ServerKey":"us63"},{"ID":3777,"VillageID":1750,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-16T08:27:22Z","ServerKey":"us63"},{"ID":3778,"VillageID":9288,"NewOwnerID":848955495,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-16T08:52:18Z","ServerKey":"us63"},{"ID":3779,"VillageID":3413,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-16T09:26:50Z","ServerKey":"us63"},{"ID":3780,"VillageID":446,"NewOwnerID":848937811,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-16T09:36:55Z","ServerKey":"us63"},{"ID":3781,"VillageID":7668,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-16T09:42:10Z","ServerKey":"us63"},{"ID":3782,"VillageID":2909,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-16T09:43:46Z","ServerKey":"us63"},{"ID":3783,"VillageID":6382,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-16T09:49:44Z","ServerKey":"us63"},{"ID":3784,"VillageID":7096,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-16T10:04:15Z","ServerKey":"us63"},{"ID":3785,"VillageID":7096,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":848946770,"OldTribeID":152,"Points":205,"CreatedAt":"2023-02-16T10:04:23Z","ServerKey":"us63"},{"ID":3786,"VillageID":7454,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-16T10:09:36Z","ServerKey":"us63"},{"ID":3787,"VillageID":8104,"NewOwnerID":334822,"NewTribeID":0,"OldOwnerID":848955415,"OldTribeID":0,"Points":630,"CreatedAt":"2023-02-16T10:22:26Z","ServerKey":"us63"},{"ID":3788,"VillageID":7590,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-16T10:23:46Z","ServerKey":"us63"},{"ID":3789,"VillageID":1495,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":489,"CreatedAt":"2023-02-16T10:27:19Z","ServerKey":"us63"},{"ID":3790,"VillageID":793,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":588,"CreatedAt":"2023-02-16T10:28:17Z","ServerKey":"us63"},{"ID":3791,"VillageID":1571,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-16T10:31:32Z","ServerKey":"us63"},{"ID":3792,"VillageID":4808,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":848954749,"OldTribeID":53,"Points":2316,"CreatedAt":"2023-02-16T10:40:25Z","ServerKey":"us63"},{"ID":3793,"VillageID":3519,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-16T10:45:31Z","ServerKey":"us63"},{"ID":3794,"VillageID":5792,"NewOwnerID":848954475,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-16T11:11:35Z","ServerKey":"us63"},{"ID":3795,"VillageID":585,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-16T11:12:58Z","ServerKey":"us63"},{"ID":3796,"VillageID":585,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":175,"CreatedAt":"2023-02-16T11:12:58Z","ServerKey":"us63"},{"ID":3797,"VillageID":7122,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-16T11:22:41Z","ServerKey":"us63"},{"ID":3798,"VillageID":1326,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-16T11:28:14Z","ServerKey":"us63"},{"ID":3799,"VillageID":3587,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-16T11:28:21Z","ServerKey":"us63"},{"ID":3800,"VillageID":7757,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-16T11:29:50Z","ServerKey":"us63"},{"ID":3801,"VillageID":276,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-16T11:34:42Z","ServerKey":"us63"},{"ID":3802,"VillageID":6520,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-16T11:37:14Z","ServerKey":"us63"},{"ID":3803,"VillageID":280,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-16T11:37:17Z","ServerKey":"us63"},{"ID":3804,"VillageID":7500,"NewOwnerID":848951960,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-16T11:40:56Z","ServerKey":"us63"},{"ID":3805,"VillageID":3025,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-16T11:41:50Z","ServerKey":"us63"},{"ID":3806,"VillageID":3620,"NewOwnerID":848952556,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-16T11:48:04Z","ServerKey":"us63"},{"ID":3807,"VillageID":3859,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-16T12:02:34Z","ServerKey":"us63"},{"ID":3808,"VillageID":4636,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-16T12:21:01Z","ServerKey":"us63"},{"ID":3809,"VillageID":2573,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":449,"CreatedAt":"2023-02-16T12:26:41Z","ServerKey":"us63"},{"ID":3810,"VillageID":2059,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":8434,"CreatedAt":"2023-02-16T12:31:42Z","ServerKey":"us63"},{"ID":3811,"VillageID":4336,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-16T12:31:53Z","ServerKey":"us63"},{"ID":3812,"VillageID":1393,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-16T12:35:10Z","ServerKey":"us63"},{"ID":3813,"VillageID":8271,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-16T12:42:49Z","ServerKey":"us63"},{"ID":3814,"VillageID":6520,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":775955,"OldTribeID":227,"Points":134,"CreatedAt":"2023-02-16T12:43:15Z","ServerKey":"us63"},{"ID":3815,"VillageID":9358,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-16T12:47:56Z","ServerKey":"us63"},{"ID":3816,"VillageID":6740,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":848951960,"OldTribeID":210,"Points":4231,"CreatedAt":"2023-02-16T12:47:59Z","ServerKey":"us63"},{"ID":3817,"VillageID":7442,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-16T12:50:26Z","ServerKey":"us63"},{"ID":3818,"VillageID":1447,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-16T13:03:10Z","ServerKey":"us63"},{"ID":3819,"VillageID":7458,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-16T13:13:33Z","ServerKey":"us63"},{"ID":3820,"VillageID":421,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":509,"CreatedAt":"2023-02-16T13:30:18Z","ServerKey":"us63"},{"ID":3821,"VillageID":8585,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-16T13:31:16Z","ServerKey":"us63"},{"ID":3822,"VillageID":7830,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-16T14:06:13Z","ServerKey":"us63"},{"ID":3823,"VillageID":4481,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-16T14:08:27Z","ServerKey":"us63"},{"ID":3824,"VillageID":8025,"NewOwnerID":848955438,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-16T14:10:59Z","ServerKey":"us63"},{"ID":3825,"VillageID":7641,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":848912100,"OldTribeID":222,"Points":1439,"CreatedAt":"2023-02-16T14:21:45Z","ServerKey":"us63"},{"ID":3826,"VillageID":1951,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-16T14:33:59Z","ServerKey":"us63"},{"ID":3827,"VillageID":1951,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":370,"CreatedAt":"2023-02-16T14:34:14Z","ServerKey":"us63"},{"ID":3828,"VillageID":4660,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-16T14:35:44Z","ServerKey":"us63"},{"ID":3829,"VillageID":8753,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-16T14:47:00Z","ServerKey":"us63"},{"ID":3830,"VillageID":8753,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":604194,"OldTribeID":174,"Points":103,"CreatedAt":"2023-02-16T14:47:08Z","ServerKey":"us63"},{"ID":3831,"VillageID":5912,"NewOwnerID":717445,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-16T14:48:13Z","ServerKey":"us63"},{"ID":3832,"VillageID":7704,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-16T14:48:20Z","ServerKey":"us63"},{"ID":3833,"VillageID":874,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":509766,"OldTribeID":0,"Points":523,"CreatedAt":"2023-02-16T14:52:14Z","ServerKey":"us63"},{"ID":3834,"VillageID":6831,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-16T14:58:21Z","ServerKey":"us63"},{"ID":3835,"VillageID":4304,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-16T15:00:24Z","ServerKey":"us63"},{"ID":3836,"VillageID":1368,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":3765,"CreatedAt":"2023-02-16T15:00:38Z","ServerKey":"us63"},{"ID":3837,"VillageID":684,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":5377,"CreatedAt":"2023-02-16T15:00:39Z","ServerKey":"us63"},{"ID":3838,"VillageID":8505,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-02-16T15:02:30Z","ServerKey":"us63"},{"ID":3839,"VillageID":1680,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":848951306,"OldTribeID":183,"Points":5403,"CreatedAt":"2023-02-16T15:06:59Z","ServerKey":"us63"},{"ID":3840,"VillageID":1680,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":848954361,"OldTribeID":85,"Points":5403,"CreatedAt":"2023-02-16T15:06:59Z","ServerKey":"us63"},{"ID":3842,"VillageID":1632,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-16T15:17:48Z","ServerKey":"us63"},{"ID":3843,"VillageID":7020,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-16T15:27:20Z","ServerKey":"us63"},{"ID":3844,"VillageID":8066,"NewOwnerID":769781,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-02-16T15:29:21Z","ServerKey":"us63"},{"ID":3845,"VillageID":7438,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-16T15:30:21Z","ServerKey":"us63"},{"ID":3846,"VillageID":1680,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848954361,"OldTribeID":85,"Points":5379,"CreatedAt":"2023-02-16T15:40:37Z","ServerKey":"us63"},{"ID":3847,"VillageID":5552,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-16T15:53:16Z","ServerKey":"us63"},{"ID":3848,"VillageID":9139,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-02-16T15:58:36Z","ServerKey":"us63"},{"ID":3849,"VillageID":9448,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-16T15:59:05Z","ServerKey":"us63"},{"ID":3850,"VillageID":5553,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-16T16:07:06Z","ServerKey":"us63"},{"ID":3851,"VillageID":1916,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":8361,"CreatedAt":"2023-02-16T16:09:20Z","ServerKey":"us63"},{"ID":3852,"VillageID":1916,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":848881759,"OldTribeID":183,"Points":8361,"CreatedAt":"2023-02-16T16:09:20Z","ServerKey":"us63"},{"ID":3853,"VillageID":6495,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-16T16:19:51Z","ServerKey":"us63"},{"ID":3854,"VillageID":1882,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-16T16:21:38Z","ServerKey":"us63"},{"ID":3855,"VillageID":6780,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-16T16:23:53Z","ServerKey":"us63"},{"ID":3856,"VillageID":9660,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-16T16:25:30Z","ServerKey":"us63"},{"ID":3857,"VillageID":1392,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":406,"CreatedAt":"2023-02-16T16:29:15Z","ServerKey":"us63"},{"ID":3858,"VillageID":449,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-16T16:32:22Z","ServerKey":"us63"},{"ID":3859,"VillageID":526,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-16T16:35:53Z","ServerKey":"us63"},{"ID":3860,"VillageID":5901,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":848951187,"OldTribeID":152,"Points":1188,"CreatedAt":"2023-02-16T16:53:04Z","ServerKey":"us63"},{"ID":3861,"VillageID":93,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":1818,"CreatedAt":"2023-02-16T17:07:37Z","ServerKey":"us63"},{"ID":3862,"VillageID":5853,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-16T17:12:03Z","ServerKey":"us63"},{"ID":3863,"VillageID":1611,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":6682,"CreatedAt":"2023-02-16T17:13:57Z","ServerKey":"us63"},{"ID":3864,"VillageID":7244,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":3377,"CreatedAt":"2023-02-16T17:14:19Z","ServerKey":"us63"},{"ID":3865,"VillageID":1896,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":4049,"CreatedAt":"2023-02-16T17:14:44Z","ServerKey":"us63"},{"ID":3866,"VillageID":2449,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-16T17:19:20Z","ServerKey":"us63"},{"ID":3867,"VillageID":9396,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-16T17:30:09Z","ServerKey":"us63"},{"ID":3868,"VillageID":1916,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":848881759,"OldTribeID":183,"Points":8356,"CreatedAt":"2023-02-16T17:31:16Z","ServerKey":"us63"},{"ID":3869,"VillageID":149,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":9742,"CreatedAt":"2023-02-16T17:43:21Z","ServerKey":"us63"},{"ID":3870,"VillageID":7598,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-16T17:46:28Z","ServerKey":"us63"},{"ID":3871,"VillageID":2140,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":4382,"CreatedAt":"2023-02-16T17:47:11Z","ServerKey":"us63"},{"ID":3872,"VillageID":3057,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-16T17:47:21Z","ServerKey":"us63"},{"ID":3873,"VillageID":3339,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-16T17:48:08Z","ServerKey":"us63"},{"ID":3874,"VillageID":3891,"NewOwnerID":848953704,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":875,"CreatedAt":"2023-02-16T17:49:11Z","ServerKey":"us63"},{"ID":3875,"VillageID":857,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":1959,"CreatedAt":"2023-02-16T18:00:15Z","ServerKey":"us63"},{"ID":3876,"VillageID":2267,"NewOwnerID":848940915,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":468,"CreatedAt":"2023-02-16T18:08:12Z","ServerKey":"us63"},{"ID":3877,"VillageID":3706,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-16T18:30:00Z","ServerKey":"us63"},{"ID":3878,"VillageID":8410,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":607873,"OldTribeID":222,"Points":1165,"CreatedAt":"2023-02-16T18:38:37Z","ServerKey":"us63"},{"ID":3879,"VillageID":1238,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848952522,"OldTribeID":105,"Points":2357,"CreatedAt":"2023-02-16T18:50:51Z","ServerKey":"us63"},{"ID":3880,"VillageID":198,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949204,"OldTribeID":105,"Points":6071,"CreatedAt":"2023-02-16T18:52:13Z","ServerKey":"us63"},{"ID":3881,"VillageID":4567,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":748168,"OldTribeID":42,"Points":3869,"CreatedAt":"2023-02-16T19:01:06Z","ServerKey":"us63"},{"ID":3882,"VillageID":1428,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":11940,"CreatedAt":"2023-02-16T19:07:04Z","ServerKey":"us63"},{"ID":3883,"VillageID":1461,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":552,"CreatedAt":"2023-02-16T19:08:22Z","ServerKey":"us63"},{"ID":3884,"VillageID":1389,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-16T19:12:59Z","ServerKey":"us63"},{"ID":3885,"VillageID":1428,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949948,"OldTribeID":85,"Points":11916,"CreatedAt":"2023-02-16T19:15:18Z","ServerKey":"us63"},{"ID":3886,"VillageID":3522,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-16T19:24:02Z","ServerKey":"us63"},{"ID":3887,"VillageID":6522,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-16T19:28:42Z","ServerKey":"us63"},{"ID":3888,"VillageID":171,"NewOwnerID":766397,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-16T19:52:30Z","ServerKey":"us63"},{"ID":3889,"VillageID":6590,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-16T19:54:05Z","ServerKey":"us63"},{"ID":3890,"VillageID":2861,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":381,"CreatedAt":"2023-02-16T19:54:09Z","ServerKey":"us63"},{"ID":3891,"VillageID":5975,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-16T19:58:17Z","ServerKey":"us63"},{"ID":3892,"VillageID":8744,"NewOwnerID":848937255,"NewTribeID":209,"OldOwnerID":848955313,"OldTribeID":0,"Points":992,"CreatedAt":"2023-02-16T20:01:49Z","ServerKey":"us63"},{"ID":3893,"VillageID":1115,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-16T20:12:01Z","ServerKey":"us63"},{"ID":3894,"VillageID":4002,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-16T20:12:14Z","ServerKey":"us63"},{"ID":3895,"VillageID":7316,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-16T20:16:57Z","ServerKey":"us63"},{"ID":3896,"VillageID":6498,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-16T20:20:35Z","ServerKey":"us63"},{"ID":3897,"VillageID":518,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-16T20:27:37Z","ServerKey":"us63"},{"ID":3898,"VillageID":4767,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-16T21:15:26Z","ServerKey":"us63"},{"ID":3899,"VillageID":1353,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":526,"CreatedAt":"2023-02-16T21:18:17Z","ServerKey":"us63"},{"ID":3900,"VillageID":1854,"NewOwnerID":848952024,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-16T21:25:49Z","ServerKey":"us63"},{"ID":3901,"VillageID":5605,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-16T21:29:00Z","ServerKey":"us63"},{"ID":3902,"VillageID":7393,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-16T21:30:30Z","ServerKey":"us63"},{"ID":3903,"VillageID":6093,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-16T21:33:55Z","ServerKey":"us63"},{"ID":3904,"VillageID":1539,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":9697,"CreatedAt":"2023-02-16T21:34:26Z","ServerKey":"us63"},{"ID":3905,"VillageID":716,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-16T21:35:59Z","ServerKey":"us63"},{"ID":3906,"VillageID":1281,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":2655,"CreatedAt":"2023-02-16T21:46:38Z","ServerKey":"us63"},{"ID":3907,"VillageID":2790,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":435,"CreatedAt":"2023-02-16T21:58:01Z","ServerKey":"us63"},{"ID":3908,"VillageID":5547,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-16T22:00:28Z","ServerKey":"us63"},{"ID":3909,"VillageID":6612,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-16T22:02:49Z","ServerKey":"us63"},{"ID":3910,"VillageID":2131,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-16T22:11:38Z","ServerKey":"us63"},{"ID":3911,"VillageID":1216,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":1981,"CreatedAt":"2023-02-16T22:14:14Z","ServerKey":"us63"},{"ID":3912,"VillageID":5145,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-16T22:15:49Z","ServerKey":"us63"},{"ID":3913,"VillageID":6466,"NewOwnerID":848955067,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-02-16T22:20:08Z","ServerKey":"us63"},{"ID":3914,"VillageID":371,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-16T22:36:47Z","ServerKey":"us63"},{"ID":3915,"VillageID":371,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":446,"CreatedAt":"2023-02-16T22:36:47Z","ServerKey":"us63"},{"ID":3916,"VillageID":2835,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-16T22:38:37Z","ServerKey":"us63"},{"ID":3917,"VillageID":1754,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":8156,"CreatedAt":"2023-02-16T22:48:25Z","ServerKey":"us63"},{"ID":3918,"VillageID":3583,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-02-16T22:54:41Z","ServerKey":"us63"},{"ID":3919,"VillageID":6638,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-16T23:00:30Z","ServerKey":"us63"},{"ID":3920,"VillageID":3749,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-16T23:02:57Z","ServerKey":"us63"},{"ID":3921,"VillageID":919,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-16T23:11:42Z","ServerKey":"us63"},{"ID":3922,"VillageID":4484,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-16T23:14:22Z","ServerKey":"us63"},{"ID":3923,"VillageID":3764,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":339,"CreatedAt":"2023-02-16T23:35:42Z","ServerKey":"us63"},{"ID":3924,"VillageID":9085,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-02-16T23:37:41Z","ServerKey":"us63"},{"ID":3925,"VillageID":1193,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-17T00:00:25Z","ServerKey":"us63"},{"ID":3926,"VillageID":9151,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-17T00:01:01Z","ServerKey":"us63"},{"ID":3927,"VillageID":7258,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-17T00:01:28Z","ServerKey":"us63"},{"ID":3928,"VillageID":498,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":409,"CreatedAt":"2023-02-17T00:02:45Z","ServerKey":"us63"},{"ID":3929,"VillageID":230,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":420,"CreatedAt":"2023-02-17T00:05:38Z","ServerKey":"us63"},{"ID":3930,"VillageID":348,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-17T00:06:06Z","ServerKey":"us63"},{"ID":3931,"VillageID":456,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-17T00:09:15Z","ServerKey":"us63"},{"ID":3932,"VillageID":2340,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":507,"CreatedAt":"2023-02-17T00:13:43Z","ServerKey":"us63"},{"ID":3933,"VillageID":3563,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-17T00:32:43Z","ServerKey":"us63"},{"ID":3934,"VillageID":4742,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":8946,"CreatedAt":"2023-02-17T00:34:25Z","ServerKey":"us63"},{"ID":3935,"VillageID":1169,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-17T00:37:46Z","ServerKey":"us63"},{"ID":3936,"VillageID":2536,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-17T00:40:47Z","ServerKey":"us63"},{"ID":3937,"VillageID":1132,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":412,"CreatedAt":"2023-02-17T00:47:23Z","ServerKey":"us63"},{"ID":3938,"VillageID":4529,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-17T00:52:40Z","ServerKey":"us63"},{"ID":3939,"VillageID":9340,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-17T00:52:46Z","ServerKey":"us63"},{"ID":3940,"VillageID":2420,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-17T00:59:09Z","ServerKey":"us63"},{"ID":3941,"VillageID":8591,"NewOwnerID":848953915,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-17T01:08:19Z","ServerKey":"us63"},{"ID":3942,"VillageID":2200,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-17T01:11:23Z","ServerKey":"us63"},{"ID":3943,"VillageID":9584,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-17T01:25:41Z","ServerKey":"us63"},{"ID":3944,"VillageID":2886,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-17T01:34:45Z","ServerKey":"us63"},{"ID":3945,"VillageID":1595,"NewOwnerID":848953670,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-17T01:35:19Z","ServerKey":"us63"},{"ID":3946,"VillageID":2437,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-17T01:48:53Z","ServerKey":"us63"},{"ID":3947,"VillageID":5112,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-17T01:56:26Z","ServerKey":"us63"},{"ID":3948,"VillageID":613,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-17T02:05:22Z","ServerKey":"us63"},{"ID":3949,"VillageID":6136,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-17T02:06:32Z","ServerKey":"us63"},{"ID":3950,"VillageID":1651,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":432,"CreatedAt":"2023-02-17T02:15:51Z","ServerKey":"us63"},{"ID":3951,"VillageID":783,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-17T02:23:35Z","ServerKey":"us63"},{"ID":3952,"VillageID":9901,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-17T02:41:52Z","ServerKey":"us63"},{"ID":3953,"VillageID":1866,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-17T02:44:49Z","ServerKey":"us63"},{"ID":3954,"VillageID":6682,"NewOwnerID":848954814,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-17T03:02:16Z","ServerKey":"us63"},{"ID":3955,"VillageID":1029,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-17T03:06:15Z","ServerKey":"us63"},{"ID":3956,"VillageID":1024,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-17T03:16:10Z","ServerKey":"us63"},{"ID":3957,"VillageID":6424,"NewOwnerID":848941569,"NewTribeID":219,"OldOwnerID":848955133,"OldTribeID":0,"Points":5311,"CreatedAt":"2023-02-17T03:17:31Z","ServerKey":"us63"},{"ID":3958,"VillageID":6264,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-17T03:22:06Z","ServerKey":"us63"},{"ID":3959,"VillageID":6264,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":173,"CreatedAt":"2023-02-17T03:22:18Z","ServerKey":"us63"},{"ID":3960,"VillageID":7527,"NewOwnerID":848954437,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-17T03:25:07Z","ServerKey":"us63"},{"ID":3961,"VillageID":941,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-17T03:25:18Z","ServerKey":"us63"},{"ID":3962,"VillageID":1810,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-17T03:26:10Z","ServerKey":"us63"},{"ID":3963,"VillageID":1124,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-17T03:26:46Z","ServerKey":"us63"},{"ID":3964,"VillageID":198,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":6162,"CreatedAt":"2023-02-17T03:27:47Z","ServerKey":"us63"},{"ID":3965,"VillageID":198,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":6162,"CreatedAt":"2023-02-17T03:27:47Z","ServerKey":"us63"},{"ID":3966,"VillageID":198,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":6076,"CreatedAt":"2023-02-17T03:27:49Z","ServerKey":"us63"},{"ID":3967,"VillageID":4861,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":748168,"OldTribeID":42,"Points":7858,"CreatedAt":"2023-02-17T03:32:54Z","ServerKey":"us63"},{"ID":3968,"VillageID":2942,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-17T03:36:01Z","ServerKey":"us63"},{"ID":3969,"VillageID":7375,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-17T03:44:35Z","ServerKey":"us63"},{"ID":3970,"VillageID":492,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-17T03:46:44Z","ServerKey":"us63"},{"ID":3971,"VillageID":2376,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":779,"CreatedAt":"2023-02-17T03:56:13Z","ServerKey":"us63"},{"ID":3972,"VillageID":7258,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":693750,"OldTribeID":33,"Points":115,"CreatedAt":"2023-02-17T03:56:21Z","ServerKey":"us63"},{"ID":3973,"VillageID":7258,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":1582,"OldTribeID":61,"Points":107,"CreatedAt":"2023-02-17T03:56:23Z","ServerKey":"us63"},{"ID":3974,"VillageID":53,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-17T04:00:41Z","ServerKey":"us63"},{"ID":3975,"VillageID":5894,"NewOwnerID":848953992,"NewTribeID":0,"OldOwnerID":772572,"OldTribeID":0,"Points":1164,"CreatedAt":"2023-02-17T04:02:33Z","ServerKey":"us63"},{"ID":3976,"VillageID":998,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-17T04:08:05Z","ServerKey":"us63"},{"ID":3977,"VillageID":4281,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-17T04:12:22Z","ServerKey":"us63"},{"ID":3978,"VillageID":2819,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-17T04:40:27Z","ServerKey":"us63"},{"ID":3979,"VillageID":5236,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-17T04:42:18Z","ServerKey":"us63"},{"ID":3980,"VillageID":8103,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-17T04:44:01Z","ServerKey":"us63"},{"ID":3981,"VillageID":5433,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-17T04:46:29Z","ServerKey":"us63"},{"ID":3982,"VillageID":5703,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-17T04:46:48Z","ServerKey":"us63"},{"ID":3983,"VillageID":9609,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":40,"CreatedAt":"2023-02-17T04:48:13Z","ServerKey":"us63"},{"ID":3984,"VillageID":351,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-17T04:59:05Z","ServerKey":"us63"},{"ID":3985,"VillageID":3755,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848954768,"OldTribeID":219,"Points":4439,"CreatedAt":"2023-02-17T04:59:59Z","ServerKey":"us63"},{"ID":3986,"VillageID":4104,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848954768,"OldTribeID":219,"Points":9492,"CreatedAt":"2023-02-17T04:59:59Z","ServerKey":"us63"},{"ID":3987,"VillageID":1493,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-17T05:07:39Z","ServerKey":"us63"},{"ID":3988,"VillageID":2510,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":348,"CreatedAt":"2023-02-17T05:18:34Z","ServerKey":"us63"},{"ID":3989,"VillageID":2354,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-17T05:23:58Z","ServerKey":"us63"},{"ID":3990,"VillageID":1615,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-17T05:29:37Z","ServerKey":"us63"},{"ID":3991,"VillageID":6200,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-17T05:33:57Z","ServerKey":"us63"},{"ID":3992,"VillageID":7769,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-17T05:51:53Z","ServerKey":"us63"},{"ID":3993,"VillageID":9111,"NewOwnerID":231006,"NewTribeID":212,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-17T05:55:35Z","ServerKey":"us63"},{"ID":3994,"VillageID":2510,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":693802,"OldTribeID":138,"Points":348,"CreatedAt":"2023-02-17T06:08:31Z","ServerKey":"us63"},{"ID":3995,"VillageID":2510,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":780947,"OldTribeID":3,"Points":348,"CreatedAt":"2023-02-17T06:08:31Z","ServerKey":"us63"},{"ID":3996,"VillageID":8559,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-17T06:09:17Z","ServerKey":"us63"},{"ID":3997,"VillageID":1042,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-17T06:14:40Z","ServerKey":"us63"},{"ID":3998,"VillageID":1839,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-17T06:19:50Z","ServerKey":"us63"},{"ID":3999,"VillageID":916,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-17T06:21:19Z","ServerKey":"us63"},{"ID":4000,"VillageID":202,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":766625,"OldTribeID":6,"Points":7264,"CreatedAt":"2023-02-17T06:24:40Z","ServerKey":"us63"},{"ID":4001,"VillageID":3295,"NewOwnerID":848950123,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":461,"CreatedAt":"2023-02-17T06:26:29Z","ServerKey":"us63"},{"ID":4002,"VillageID":3919,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-17T06:33:09Z","ServerKey":"us63"},{"ID":4003,"VillageID":2381,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-17T06:35:07Z","ServerKey":"us63"},{"ID":4004,"VillageID":1220,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-17T06:44:45Z","ServerKey":"us63"},{"ID":4005,"VillageID":5647,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":848955012,"OldTribeID":0,"Points":3375,"CreatedAt":"2023-02-17T06:45:42Z","ServerKey":"us63"},{"ID":4006,"VillageID":9121,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-17T06:52:23Z","ServerKey":"us63"},{"ID":4007,"VillageID":6402,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-17T07:02:36Z","ServerKey":"us63"},{"ID":4008,"VillageID":7251,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-17T07:06:12Z","ServerKey":"us63"},{"ID":4009,"VillageID":9747,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-17T07:07:49Z","ServerKey":"us63"},{"ID":4010,"VillageID":35,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-17T07:14:41Z","ServerKey":"us63"},{"ID":4011,"VillageID":6026,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-17T07:22:46Z","ServerKey":"us63"},{"ID":4012,"VillageID":249,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":848949204,"OldTribeID":105,"Points":1717,"CreatedAt":"2023-02-17T07:37:51Z","ServerKey":"us63"},{"ID":4013,"VillageID":6813,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-17T07:43:49Z","ServerKey":"us63"},{"ID":4014,"VillageID":2400,"NewOwnerID":848940914,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-17T07:43:54Z","ServerKey":"us63"},{"ID":4015,"VillageID":2862,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-17T07:44:22Z","ServerKey":"us63"},{"ID":4016,"VillageID":4657,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-17T07:55:20Z","ServerKey":"us63"},{"ID":4017,"VillageID":1420,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-17T08:04:12Z","ServerKey":"us63"},{"ID":4018,"VillageID":3555,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-17T08:10:47Z","ServerKey":"us63"},{"ID":4019,"VillageID":8409,"NewOwnerID":848953915,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-02-17T08:14:47Z","ServerKey":"us63"},{"ID":4020,"VillageID":5430,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":789326,"OldTribeID":42,"Points":1232,"CreatedAt":"2023-02-17T08:18:06Z","ServerKey":"us63"},{"ID":4021,"VillageID":1555,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-17T08:22:41Z","ServerKey":"us63"},{"ID":4022,"VillageID":1555,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":375,"CreatedAt":"2023-02-17T08:22:41Z","ServerKey":"us63"},{"ID":4023,"VillageID":1584,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-17T08:37:39Z","ServerKey":"us63"},{"ID":4024,"VillageID":2590,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-17T08:43:33Z","ServerKey":"us63"},{"ID":4025,"VillageID":2498,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-17T09:00:17Z","ServerKey":"us63"},{"ID":4026,"VillageID":273,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":481,"CreatedAt":"2023-02-17T09:02:00Z","ServerKey":"us63"},{"ID":4027,"VillageID":5877,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-17T09:02:04Z","ServerKey":"us63"},{"ID":4028,"VillageID":3917,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-17T09:15:49Z","ServerKey":"us63"},{"ID":4029,"VillageID":1100,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-17T09:32:40Z","ServerKey":"us63"},{"ID":4030,"VillageID":5330,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-17T09:35:31Z","ServerKey":"us63"},{"ID":4031,"VillageID":2154,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":355,"CreatedAt":"2023-02-17T09:38:05Z","ServerKey":"us63"},{"ID":4032,"VillageID":2510,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":780947,"OldTribeID":3,"Points":336,"CreatedAt":"2023-02-17T09:45:08Z","ServerKey":"us63"},{"ID":4033,"VillageID":2262,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-17T09:59:47Z","ServerKey":"us63"},{"ID":4034,"VillageID":1861,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":362,"CreatedAt":"2023-02-17T10:06:04Z","ServerKey":"us63"},{"ID":4035,"VillageID":1861,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":362,"CreatedAt":"2023-02-17T10:06:12Z","ServerKey":"us63"},{"ID":4036,"VillageID":6073,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-17T10:06:19Z","ServerKey":"us63"},{"ID":4037,"VillageID":732,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-17T10:11:18Z","ServerKey":"us63"},{"ID":4038,"VillageID":552,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-17T10:45:07Z","ServerKey":"us63"},{"ID":4039,"VillageID":4215,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":365,"CreatedAt":"2023-02-17T11:00:09Z","ServerKey":"us63"},{"ID":4040,"VillageID":44,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-17T11:32:28Z","ServerKey":"us63"},{"ID":4041,"VillageID":8642,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-17T11:52:58Z","ServerKey":"us63"},{"ID":4042,"VillageID":3397,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-17T11:58:53Z","ServerKey":"us63"},{"ID":4043,"VillageID":1208,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-17T12:13:19Z","ServerKey":"us63"},{"ID":4044,"VillageID":6072,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-17T12:21:14Z","ServerKey":"us63"},{"ID":4045,"VillageID":7320,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-17T12:25:44Z","ServerKey":"us63"},{"ID":4046,"VillageID":8176,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-17T12:33:27Z","ServerKey":"us63"},{"ID":4047,"VillageID":9125,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-17T12:53:53Z","ServerKey":"us63"},{"ID":4048,"VillageID":6486,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-17T12:56:22Z","ServerKey":"us63"},{"ID":4049,"VillageID":264,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-17T13:17:28Z","ServerKey":"us63"},{"ID":4050,"VillageID":3752,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-17T13:46:12Z","ServerKey":"us63"},{"ID":4051,"VillageID":8291,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-17T13:47:06Z","ServerKey":"us63"},{"ID":4052,"VillageID":2262,"NewOwnerID":848936718,"NewTribeID":3,"OldOwnerID":848890745,"OldTribeID":174,"Points":292,"CreatedAt":"2023-02-17T13:47:44Z","ServerKey":"us63"},{"ID":4053,"VillageID":2262,"NewOwnerID":848936718,"NewTribeID":3,"OldOwnerID":848936718,"OldTribeID":3,"Points":292,"CreatedAt":"2023-02-17T13:47:44Z","ServerKey":"us63"},{"ID":4054,"VillageID":4579,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-17T13:48:27Z","ServerKey":"us63"},{"ID":4055,"VillageID":6156,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848955067,"OldTribeID":42,"Points":2179,"CreatedAt":"2023-02-17T14:00:01Z","ServerKey":"us63"},{"ID":4056,"VillageID":6030,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848955067,"OldTribeID":42,"Points":3296,"CreatedAt":"2023-02-17T14:00:01Z","ServerKey":"us63"},{"ID":4057,"VillageID":1070,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":583,"CreatedAt":"2023-02-17T14:14:01Z","ServerKey":"us63"},{"ID":4058,"VillageID":2129,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-17T14:31:43Z","ServerKey":"us63"},{"ID":4059,"VillageID":532,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":5428,"CreatedAt":"2023-02-17T14:34:43Z","ServerKey":"us63"},{"ID":4060,"VillageID":2531,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-17T14:38:15Z","ServerKey":"us63"},{"ID":4061,"VillageID":2858,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-17T14:50:05Z","ServerKey":"us63"},{"ID":4062,"VillageID":8233,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-17T14:50:31Z","ServerKey":"us63"},{"ID":4063,"VillageID":4064,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-17T14:51:00Z","ServerKey":"us63"},{"ID":4064,"VillageID":8345,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-17T14:53:29Z","ServerKey":"us63"},{"ID":4065,"VillageID":7400,"NewOwnerID":790095,"NewTribeID":197,"OldOwnerID":619204,"OldTribeID":225,"Points":3919,"CreatedAt":"2023-02-17T15:13:45Z","ServerKey":"us63"},{"ID":4066,"VillageID":3932,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-17T15:32:17Z","ServerKey":"us63"},{"ID":4067,"VillageID":1516,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-17T15:44:26Z","ServerKey":"us63"},{"ID":4068,"VillageID":4539,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-17T15:46:55Z","ServerKey":"us63"},{"ID":4069,"VillageID":6007,"NewOwnerID":848947885,"NewTribeID":187,"OldOwnerID":848955063,"OldTribeID":208,"Points":1542,"CreatedAt":"2023-02-17T15:53:42Z","ServerKey":"us63"},{"ID":4070,"VillageID":249,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848881759,"OldTribeID":183,"Points":1734,"CreatedAt":"2023-02-17T15:59:09Z","ServerKey":"us63"},{"ID":4071,"VillageID":358,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":6703,"CreatedAt":"2023-02-17T15:59:45Z","ServerKey":"us63"},{"ID":4072,"VillageID":7248,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-17T16:15:31Z","ServerKey":"us63"},{"ID":4073,"VillageID":6201,"NewOwnerID":848954894,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-17T16:25:43Z","ServerKey":"us63"},{"ID":4074,"VillageID":1675,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-17T16:44:30Z","ServerKey":"us63"},{"ID":4075,"VillageID":258,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":355,"CreatedAt":"2023-02-17T16:47:40Z","ServerKey":"us63"},{"ID":4076,"VillageID":1176,"NewOwnerID":766397,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-17T17:03:43Z","ServerKey":"us63"},{"ID":4077,"VillageID":4866,"NewOwnerID":714184,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-17T17:06:08Z","ServerKey":"us63"},{"ID":4078,"VillageID":7540,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-17T17:10:09Z","ServerKey":"us63"},{"ID":4079,"VillageID":8291,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":848930230,"OldTribeID":209,"Points":121,"CreatedAt":"2023-02-17T17:47:07Z","ServerKey":"us63"},{"ID":4080,"VillageID":8542,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-17T17:49:35Z","ServerKey":"us63"},{"ID":4081,"VillageID":389,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-17T18:03:32Z","ServerKey":"us63"},{"ID":4082,"VillageID":1399,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1189,"CreatedAt":"2023-02-17T18:07:02Z","ServerKey":"us63"},{"ID":4083,"VillageID":5866,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-17T18:07:34Z","ServerKey":"us63"},{"ID":4084,"VillageID":6720,"NewOwnerID":848950849,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-17T18:13:25Z","ServerKey":"us63"},{"ID":4085,"VillageID":7546,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-17T18:13:27Z","ServerKey":"us63"},{"ID":4086,"VillageID":8588,"NewOwnerID":284001,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-17T18:22:57Z","ServerKey":"us63"},{"ID":4087,"VillageID":4212,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-17T18:26:35Z","ServerKey":"us63"},{"ID":4088,"VillageID":5284,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-17T18:29:12Z","ServerKey":"us63"},{"ID":4089,"VillageID":6972,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-17T18:29:22Z","ServerKey":"us63"},{"ID":4090,"VillageID":3272,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-17T18:30:37Z","ServerKey":"us63"},{"ID":4091,"VillageID":3531,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":339,"CreatedAt":"2023-02-17T18:33:12Z","ServerKey":"us63"},{"ID":4092,"VillageID":6994,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-17T18:51:25Z","ServerKey":"us63"},{"ID":4093,"VillageID":8406,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-17T19:08:50Z","ServerKey":"us63"},{"ID":4094,"VillageID":8690,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-17T19:09:18Z","ServerKey":"us63"},{"ID":4095,"VillageID":7413,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-17T19:12:59Z","ServerKey":"us63"},{"ID":4096,"VillageID":2721,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":480,"CreatedAt":"2023-02-17T19:14:58Z","ServerKey":"us63"},{"ID":4097,"VillageID":1300,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-17T19:17:21Z","ServerKey":"us63"},{"ID":4098,"VillageID":3368,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-17T19:26:54Z","ServerKey":"us63"},{"ID":4099,"VillageID":8569,"NewOwnerID":848955438,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-17T19:31:12Z","ServerKey":"us63"},{"ID":4100,"VillageID":6809,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-17T19:31:20Z","ServerKey":"us63"},{"ID":4101,"VillageID":1513,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848911019,"OldTribeID":12,"Points":2120,"CreatedAt":"2023-02-17T19:42:41Z","ServerKey":"us63"},{"ID":4102,"VillageID":6762,"NewOwnerID":848955222,"NewTribeID":185,"OldOwnerID":848955191,"OldTribeID":0,"Points":2421,"CreatedAt":"2023-02-17T19:58:54Z","ServerKey":"us63"},{"ID":4103,"VillageID":5709,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-17T20:05:48Z","ServerKey":"us63"},{"ID":4104,"VillageID":3230,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":496,"CreatedAt":"2023-02-17T20:11:28Z","ServerKey":"us63"},{"ID":4105,"VillageID":3392,"NewOwnerID":848954719,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":602,"CreatedAt":"2023-02-17T20:13:02Z","ServerKey":"us63"},{"ID":4106,"VillageID":8398,"NewOwnerID":790095,"NewTribeID":197,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-17T20:19:12Z","ServerKey":"us63"},{"ID":4107,"VillageID":565,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":697760,"OldTribeID":0,"Points":2139,"CreatedAt":"2023-02-17T20:25:53Z","ServerKey":"us63"},{"ID":4108,"VillageID":3885,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-17T20:54:49Z","ServerKey":"us63"},{"ID":4109,"VillageID":7272,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-17T20:55:35Z","ServerKey":"us63"},{"ID":4110,"VillageID":3146,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":426,"CreatedAt":"2023-02-17T21:15:58Z","ServerKey":"us63"},{"ID":4111,"VillageID":8481,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-17T21:31:51Z","ServerKey":"us63"},{"ID":4112,"VillageID":3797,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-17T21:35:31Z","ServerKey":"us63"},{"ID":4113,"VillageID":3403,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-17T21:52:13Z","ServerKey":"us63"},{"ID":4114,"VillageID":1366,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-17T22:14:06Z","ServerKey":"us63"},{"ID":4115,"VillageID":8525,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-17T22:18:58Z","ServerKey":"us63"},{"ID":4116,"VillageID":538,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":768825,"OldTribeID":105,"Points":3961,"CreatedAt":"2023-02-17T22:30:47Z","ServerKey":"us63"},{"ID":4117,"VillageID":9805,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-17T22:35:45Z","ServerKey":"us63"},{"ID":4118,"VillageID":8312,"NewOwnerID":848954832,"NewTribeID":134,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-17T22:45:47Z","ServerKey":"us63"},{"ID":4119,"VillageID":8645,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-17T23:04:38Z","ServerKey":"us63"},{"ID":4120,"VillageID":188,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-17T23:06:33Z","ServerKey":"us63"},{"ID":4121,"VillageID":3279,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-17T23:15:17Z","ServerKey":"us63"},{"ID":4122,"VillageID":6823,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-17T23:17:03Z","ServerKey":"us63"},{"ID":4123,"VillageID":2098,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-17T23:24:23Z","ServerKey":"us63"},{"ID":4124,"VillageID":7472,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":565794,"OldTribeID":97,"Points":2702,"CreatedAt":"2023-02-17T23:25:03Z","ServerKey":"us63"},{"ID":4125,"VillageID":5676,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1078,"CreatedAt":"2023-02-17T23:33:00Z","ServerKey":"us63"},{"ID":4126,"VillageID":7045,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-17T23:40:34Z","ServerKey":"us63"},{"ID":4127,"VillageID":1469,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-17T23:45:38Z","ServerKey":"us63"},{"ID":4128,"VillageID":6906,"NewOwnerID":514187,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-17T23:55:32Z","ServerKey":"us63"},{"ID":4129,"VillageID":5627,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":789326,"OldTribeID":42,"Points":951,"CreatedAt":"2023-02-17T23:59:00Z","ServerKey":"us63"},{"ID":4130,"VillageID":7113,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-18T00:05:08Z","ServerKey":"us63"},{"ID":4131,"VillageID":1212,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":427,"CreatedAt":"2023-02-18T00:10:29Z","ServerKey":"us63"},{"ID":4132,"VillageID":8377,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848954719,"OldTribeID":32,"Points":316,"CreatedAt":"2023-02-18T00:16:46Z","ServerKey":"us63"},{"ID":4133,"VillageID":8377,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":787586,"OldTribeID":74,"Points":292,"CreatedAt":"2023-02-18T00:16:49Z","ServerKey":"us63"},{"ID":4134,"VillageID":1080,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":389,"CreatedAt":"2023-02-18T00:17:59Z","ServerKey":"us63"},{"ID":4135,"VillageID":2255,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":406,"CreatedAt":"2023-02-18T00:20:07Z","ServerKey":"us63"},{"ID":4136,"VillageID":3922,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-18T00:32:54Z","ServerKey":"us63"},{"ID":4137,"VillageID":6006,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-18T00:40:56Z","ServerKey":"us63"},{"ID":4138,"VillageID":6930,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-18T00:53:34Z","ServerKey":"us63"},{"ID":4139,"VillageID":265,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":368,"CreatedAt":"2023-02-18T00:56:17Z","ServerKey":"us63"},{"ID":4140,"VillageID":2112,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":1108,"CreatedAt":"2023-02-18T00:59:05Z","ServerKey":"us63"},{"ID":4141,"VillageID":5420,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-18T01:19:47Z","ServerKey":"us63"},{"ID":4142,"VillageID":5599,"NewOwnerID":848953200,"NewTribeID":53,"OldOwnerID":848955003,"OldTribeID":0,"Points":492,"CreatedAt":"2023-02-18T01:23:07Z","ServerKey":"us63"},{"ID":4143,"VillageID":3827,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-18T01:30:53Z","ServerKey":"us63"},{"ID":4144,"VillageID":7361,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-18T01:38:19Z","ServerKey":"us63"},{"ID":4145,"VillageID":3988,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-18T01:38:51Z","ServerKey":"us63"},{"ID":4146,"VillageID":7694,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-18T01:49:47Z","ServerKey":"us63"},{"ID":4147,"VillageID":5986,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":779,"CreatedAt":"2023-02-18T01:52:19Z","ServerKey":"us63"},{"ID":4148,"VillageID":3058,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-18T01:59:24Z","ServerKey":"us63"},{"ID":4149,"VillageID":2425,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-18T02:01:58Z","ServerKey":"us63"},{"ID":4150,"VillageID":4008,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-18T02:16:02Z","ServerKey":"us63"},{"ID":4151,"VillageID":7232,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":0,"Points":3932,"CreatedAt":"2023-02-18T02:43:15Z","ServerKey":"us63"},{"ID":4152,"VillageID":2568,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-18T02:54:24Z","ServerKey":"us63"},{"ID":4153,"VillageID":2353,"NewOwnerID":848940915,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-18T02:55:43Z","ServerKey":"us63"},{"ID":4154,"VillageID":3330,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":848950123,"OldTribeID":0,"Points":2807,"CreatedAt":"2023-02-18T02:57:53Z","ServerKey":"us63"},{"ID":4155,"VillageID":6384,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-18T02:59:09Z","ServerKey":"us63"},{"ID":4156,"VillageID":7421,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":848955305,"OldTribeID":184,"Points":1854,"CreatedAt":"2023-02-18T03:06:10Z","ServerKey":"us63"},{"ID":4157,"VillageID":7421,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":848954607,"OldTribeID":32,"Points":1854,"CreatedAt":"2023-02-18T03:06:10Z","ServerKey":"us63"},{"ID":4158,"VillageID":1058,"NewOwnerID":848929146,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":439,"CreatedAt":"2023-02-18T03:23:19Z","ServerKey":"us63"},{"ID":4159,"VillageID":1731,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-18T03:40:12Z","ServerKey":"us63"},{"ID":4160,"VillageID":2128,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-18T03:54:48Z","ServerKey":"us63"},{"ID":4161,"VillageID":4350,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-18T03:57:29Z","ServerKey":"us63"},{"ID":4162,"VillageID":1396,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-18T03:59:09Z","ServerKey":"us63"},{"ID":4163,"VillageID":6648,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-18T04:14:10Z","ServerKey":"us63"},{"ID":4164,"VillageID":8523,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-18T04:14:27Z","ServerKey":"us63"},{"ID":4165,"VillageID":9445,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-18T04:18:07Z","ServerKey":"us63"},{"ID":4166,"VillageID":5880,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-18T04:21:06Z","ServerKey":"us63"},{"ID":4167,"VillageID":5880,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":848954609,"OldTribeID":50,"Points":203,"CreatedAt":"2023-02-18T04:21:07Z","ServerKey":"us63"},{"ID":4168,"VillageID":9978,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":27,"CreatedAt":"2023-02-18T04:22:44Z","ServerKey":"us63"},{"ID":4169,"VillageID":4985,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-18T04:24:30Z","ServerKey":"us63"},{"ID":4170,"VillageID":7917,"NewOwnerID":848954832,"NewTribeID":134,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-18T04:33:23Z","ServerKey":"us63"},{"ID":4171,"VillageID":1062,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-18T04:38:56Z","ServerKey":"us63"},{"ID":4172,"VillageID":1119,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-18T05:01:14Z","ServerKey":"us63"},{"ID":4173,"VillageID":3462,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":385,"CreatedAt":"2023-02-18T05:07:56Z","ServerKey":"us63"},{"ID":4174,"VillageID":28,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-18T05:08:22Z","ServerKey":"us63"},{"ID":4175,"VillageID":6362,"NewOwnerID":776842,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-18T05:13:27Z","ServerKey":"us63"},{"ID":4176,"VillageID":1981,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":405,"CreatedAt":"2023-02-18T05:15:40Z","ServerKey":"us63"},{"ID":4177,"VillageID":4734,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-18T05:17:56Z","ServerKey":"us63"},{"ID":4178,"VillageID":8362,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-18T05:21:46Z","ServerKey":"us63"},{"ID":4179,"VillageID":1970,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":466,"CreatedAt":"2023-02-18T05:22:45Z","ServerKey":"us63"},{"ID":4180,"VillageID":8135,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-18T05:31:22Z","ServerKey":"us63"},{"ID":4181,"VillageID":2346,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":368,"CreatedAt":"2023-02-18T05:50:57Z","ServerKey":"us63"},{"ID":4182,"VillageID":6735,"NewOwnerID":848954539,"NewTribeID":239,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-18T05:58:11Z","ServerKey":"us63"},{"ID":4183,"VillageID":5148,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-18T05:59:33Z","ServerKey":"us63"},{"ID":4184,"VillageID":691,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-18T06:15:41Z","ServerKey":"us63"},{"ID":4185,"VillageID":7786,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-18T06:41:59Z","ServerKey":"us63"},{"ID":4186,"VillageID":9202,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-18T06:42:00Z","ServerKey":"us63"},{"ID":4187,"VillageID":5598,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":348,"CreatedAt":"2023-02-18T06:45:05Z","ServerKey":"us63"},{"ID":4188,"VillageID":8288,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-18T06:52:35Z","ServerKey":"us63"},{"ID":4189,"VillageID":5359,"NewOwnerID":848929146,"NewTribeID":6,"OldOwnerID":554600,"OldTribeID":0,"Points":6342,"CreatedAt":"2023-02-18T07:01:55Z","ServerKey":"us63"},{"ID":4190,"VillageID":976,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-18T07:31:12Z","ServerKey":"us63"},{"ID":4191,"VillageID":8183,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-18T07:34:00Z","ServerKey":"us63"},{"ID":4192,"VillageID":1396,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848936921,"OldTribeID":6,"Points":277,"CreatedAt":"2023-02-18T07:37:06Z","ServerKey":"us63"},{"ID":4193,"VillageID":1396,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":761474,"OldTribeID":33,"Points":277,"CreatedAt":"2023-02-18T07:37:06Z","ServerKey":"us63"},{"ID":4194,"VillageID":5957,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-18T07:39:35Z","ServerKey":"us63"},{"ID":4195,"VillageID":3381,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-18T07:47:08Z","ServerKey":"us63"},{"ID":4196,"VillageID":119,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":432,"CreatedAt":"2023-02-18T07:58:24Z","ServerKey":"us63"},{"ID":4197,"VillageID":3653,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-18T08:20:14Z","ServerKey":"us63"},{"ID":4198,"VillageID":6694,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-18T08:33:47Z","ServerKey":"us63"},{"ID":4199,"VillageID":2513,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":795932,"OldTribeID":22,"Points":802,"CreatedAt":"2023-02-18T08:47:44Z","ServerKey":"us63"},{"ID":4200,"VillageID":1529,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-18T08:52:30Z","ServerKey":"us63"},{"ID":4201,"VillageID":9015,"NewOwnerID":848937255,"NewTribeID":198,"OldOwnerID":249275,"OldTribeID":104,"Points":794,"CreatedAt":"2023-02-18T08:53:51Z","ServerKey":"us63"},{"ID":4202,"VillageID":5143,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-18T09:06:50Z","ServerKey":"us63"},{"ID":4203,"VillageID":2389,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":697760,"OldTribeID":0,"Points":8475,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4204,"VillageID":1001,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":697760,"OldTribeID":0,"Points":9047,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4205,"VillageID":829,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":697760,"OldTribeID":0,"Points":6350,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4206,"VillageID":829,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":6350,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4207,"VillageID":5650,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-18T09:22:04Z","ServerKey":"us63"},{"ID":4208,"VillageID":7400,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":790095,"OldTribeID":197,"Points":3871,"CreatedAt":"2023-02-18T09:51:49Z","ServerKey":"us63"},{"ID":4209,"VillageID":7400,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":649035,"OldTribeID":74,"Points":3871,"CreatedAt":"2023-02-18T09:51:49Z","ServerKey":"us63"},{"ID":4210,"VillageID":6748,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-18T10:05:49Z","ServerKey":"us63"},{"ID":4211,"VillageID":6748,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":848951632,"OldTribeID":138,"Points":123,"CreatedAt":"2023-02-18T10:05:49Z","ServerKey":"us63"},{"ID":4212,"VillageID":126,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-18T10:11:36Z","ServerKey":"us63"},{"ID":4213,"VillageID":2943,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-18T10:18:56Z","ServerKey":"us63"},{"ID":4214,"VillageID":3816,"NewOwnerID":848954719,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-18T10:32:09Z","ServerKey":"us63"},{"ID":4215,"VillageID":9634,"NewOwnerID":848951609,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":36,"CreatedAt":"2023-02-18T10:33:16Z","ServerKey":"us63"},{"ID":4216,"VillageID":1755,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-18T10:39:07Z","ServerKey":"us63"},{"ID":4217,"VillageID":692,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-18T10:46:26Z","ServerKey":"us63"},{"ID":4218,"VillageID":7297,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-18T10:48:15Z","ServerKey":"us63"},{"ID":4219,"VillageID":1989,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":449,"CreatedAt":"2023-02-18T10:50:00Z","ServerKey":"us63"},{"ID":4220,"VillageID":1313,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-18T10:54:27Z","ServerKey":"us63"},{"ID":4221,"VillageID":2060,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-18T10:55:22Z","ServerKey":"us63"},{"ID":4222,"VillageID":336,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-18T11:04:16Z","ServerKey":"us63"},{"ID":4223,"VillageID":297,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-18T11:13:23Z","ServerKey":"us63"},{"ID":4224,"VillageID":1947,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":384998,"OldTribeID":86,"Points":8155,"CreatedAt":"2023-02-18T11:21:18Z","ServerKey":"us63"},{"ID":4225,"VillageID":619,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-18T11:26:10Z","ServerKey":"us63"},{"ID":4226,"VillageID":1297,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-18T11:26:14Z","ServerKey":"us63"},{"ID":4227,"VillageID":315,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":484,"CreatedAt":"2023-02-18T11:29:24Z","ServerKey":"us63"},{"ID":4228,"VillageID":1115,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":517,"CreatedAt":"2023-02-18T11:32:27Z","ServerKey":"us63"},{"ID":4229,"VillageID":643,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-18T11:34:47Z","ServerKey":"us63"},{"ID":4230,"VillageID":5870,"NewOwnerID":848941569,"NewTribeID":219,"OldOwnerID":848955133,"OldTribeID":0,"Points":2407,"CreatedAt":"2023-02-18T11:42:34Z","ServerKey":"us63"},{"ID":4231,"VillageID":559,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-18T11:50:14Z","ServerKey":"us63"},{"ID":4232,"VillageID":8212,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":848935728,"OldTribeID":0,"Points":1577,"CreatedAt":"2023-02-18T11:50:43Z","ServerKey":"us63"},{"ID":4233,"VillageID":2977,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":448,"CreatedAt":"2023-02-18T11:53:21Z","ServerKey":"us63"},{"ID":4234,"VillageID":1542,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":404,"CreatedAt":"2023-02-18T11:55:17Z","ServerKey":"us63"},{"ID":4235,"VillageID":6351,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-18T11:56:56Z","ServerKey":"us63"},{"ID":4236,"VillageID":5275,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-18T12:13:37Z","ServerKey":"us63"},{"ID":4237,"VillageID":3013,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":563,"CreatedAt":"2023-02-18T12:21:06Z","ServerKey":"us63"},{"ID":4238,"VillageID":3013,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848945162,"OldTribeID":33,"Points":563,"CreatedAt":"2023-02-18T12:21:06Z","ServerKey":"us63"},{"ID":4239,"VillageID":1077,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-18T12:38:11Z","ServerKey":"us63"},{"ID":4240,"VillageID":1724,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-18T12:49:42Z","ServerKey":"us63"},{"ID":4241,"VillageID":1412,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-18T12:50:00Z","ServerKey":"us63"},{"ID":4242,"VillageID":780,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":475,"CreatedAt":"2023-02-18T12:56:21Z","ServerKey":"us63"},{"ID":4243,"VillageID":5107,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848954926,"OldTribeID":66,"Points":4312,"CreatedAt":"2023-02-18T12:57:35Z","ServerKey":"us63"},{"ID":4244,"VillageID":1313,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848936921,"OldTribeID":6,"Points":418,"CreatedAt":"2023-02-18T13:12:58Z","ServerKey":"us63"},{"ID":4245,"VillageID":1313,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":761474,"OldTribeID":33,"Points":418,"CreatedAt":"2023-02-18T13:12:58Z","ServerKey":"us63"},{"ID":4246,"VillageID":8298,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":788057,"OldTribeID":104,"Points":1679,"CreatedAt":"2023-02-18T13:16:46Z","ServerKey":"us63"},{"ID":4247,"VillageID":7877,"NewOwnerID":715075,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-18T13:30:46Z","ServerKey":"us63"},{"ID":4248,"VillageID":7345,"NewOwnerID":775729,"NewTribeID":239,"OldOwnerID":848955100,"OldTribeID":182,"Points":3236,"CreatedAt":"2023-02-18T13:31:27Z","ServerKey":"us63"},{"ID":4249,"VillageID":5253,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-18T13:37:48Z","ServerKey":"us63"},{"ID":4250,"VillageID":6479,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":2333,"CreatedAt":"2023-02-18T13:44:28Z","ServerKey":"us63"},{"ID":4251,"VillageID":1801,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-18T13:47:41Z","ServerKey":"us63"},{"ID":4252,"VillageID":1720,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-18T13:50:03Z","ServerKey":"us63"},{"ID":4253,"VillageID":4234,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-18T14:03:03Z","ServerKey":"us63"},{"ID":4254,"VillageID":2798,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-18T14:08:54Z","ServerKey":"us63"},{"ID":4255,"VillageID":4866,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":714184,"OldTribeID":0,"Points":438,"CreatedAt":"2023-02-18T14:09:47Z","ServerKey":"us63"},{"ID":4256,"VillageID":1005,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":357,"CreatedAt":"2023-02-18T14:10:25Z","ServerKey":"us63"},{"ID":4257,"VillageID":1254,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":651,"CreatedAt":"2023-02-18T14:16:51Z","ServerKey":"us63"},{"ID":4258,"VillageID":5834,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848955039,"OldTribeID":134,"Points":1811,"CreatedAt":"2023-02-18T14:17:51Z","ServerKey":"us63"},{"ID":4259,"VillageID":1041,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":390,"CreatedAt":"2023-02-18T14:17:55Z","ServerKey":"us63"},{"ID":4260,"VillageID":5834,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848945233,"OldTribeID":91,"Points":1787,"CreatedAt":"2023-02-18T14:18:03Z","ServerKey":"us63"},{"ID":4261,"VillageID":5538,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-18T14:37:47Z","ServerKey":"us63"},{"ID":4262,"VillageID":10139,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-18T14:43:19Z","ServerKey":"us63"},{"ID":4263,"VillageID":5991,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-18T14:53:30Z","ServerKey":"us63"},{"ID":4264,"VillageID":2580,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-18T14:55:28Z","ServerKey":"us63"},{"ID":4265,"VillageID":10087,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-18T15:01:53Z","ServerKey":"us63"},{"ID":4266,"VillageID":3432,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":489,"CreatedAt":"2023-02-18T15:12:28Z","ServerKey":"us63"},{"ID":4267,"VillageID":1221,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-18T15:26:17Z","ServerKey":"us63"},{"ID":4268,"VillageID":8036,"NewOwnerID":749328,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-18T15:27:01Z","ServerKey":"us63"},{"ID":4269,"VillageID":2693,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-18T15:30:47Z","ServerKey":"us63"},{"ID":4270,"VillageID":8367,"NewOwnerID":848955348,"NewTribeID":209,"OldOwnerID":751295,"OldTribeID":198,"Points":6281,"CreatedAt":"2023-02-18T15:30:56Z","ServerKey":"us63"},{"ID":4271,"VillageID":9236,"NewOwnerID":231006,"NewTribeID":212,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-18T15:33:32Z","ServerKey":"us63"},{"ID":4272,"VillageID":1818,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-18T15:34:08Z","ServerKey":"us63"},{"ID":4273,"VillageID":1797,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-18T15:34:37Z","ServerKey":"us63"},{"ID":4274,"VillageID":2111,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-18T15:40:20Z","ServerKey":"us63"},{"ID":4275,"VillageID":1797,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":342,"CreatedAt":"2023-02-18T15:54:22Z","ServerKey":"us63"},{"ID":4276,"VillageID":7037,"NewOwnerID":848884869,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-18T16:15:20Z","ServerKey":"us63"},{"ID":4277,"VillageID":1500,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":356,"CreatedAt":"2023-02-18T16:19:58Z","ServerKey":"us63"},{"ID":4278,"VillageID":2455,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-18T16:20:52Z","ServerKey":"us63"},{"ID":4279,"VillageID":7930,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":2646,"CreatedAt":"2023-02-18T16:23:36Z","ServerKey":"us63"},{"ID":4280,"VillageID":7278,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-18T16:32:59Z","ServerKey":"us63"},{"ID":4281,"VillageID":2763,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-18T16:42:53Z","ServerKey":"us63"},{"ID":4282,"VillageID":899,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-18T16:51:47Z","ServerKey":"us63"},{"ID":4283,"VillageID":5331,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-18T16:54:20Z","ServerKey":"us63"},{"ID":4284,"VillageID":5937,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-18T16:58:04Z","ServerKey":"us63"},{"ID":4285,"VillageID":3265,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-18T17:13:58Z","ServerKey":"us63"},{"ID":4286,"VillageID":7616,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-18T17:15:10Z","ServerKey":"us63"},{"ID":4287,"VillageID":2961,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-18T17:17:05Z","ServerKey":"us63"},{"ID":4288,"VillageID":5653,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":242,"CreatedAt":"2023-02-18T17:24:33Z","ServerKey":"us63"},{"ID":4289,"VillageID":3170,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":362,"CreatedAt":"2023-02-18T17:26:42Z","ServerKey":"us63"},{"ID":4290,"VillageID":883,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":9041,"CreatedAt":"2023-02-18T17:41:25Z","ServerKey":"us63"},{"ID":4291,"VillageID":7165,"NewOwnerID":848955311,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-18T17:44:09Z","ServerKey":"us63"},{"ID":4292,"VillageID":6101,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-18T17:51:06Z","ServerKey":"us63"},{"ID":4293,"VillageID":564,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-18T17:51:51Z","ServerKey":"us63"},{"ID":4294,"VillageID":759,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-18T18:08:20Z","ServerKey":"us63"},{"ID":4295,"VillageID":2793,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-18T18:15:57Z","ServerKey":"us63"},{"ID":4296,"VillageID":9741,"NewOwnerID":787899,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-18T18:21:18Z","ServerKey":"us63"},{"ID":4297,"VillageID":6964,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":1958,"CreatedAt":"2023-02-18T18:38:26Z","ServerKey":"us63"},{"ID":4298,"VillageID":1179,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-18T18:39:07Z","ServerKey":"us63"},{"ID":4299,"VillageID":9815,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":37,"CreatedAt":"2023-02-18T18:41:50Z","ServerKey":"us63"},{"ID":4300,"VillageID":1273,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-18T18:42:12Z","ServerKey":"us63"},{"ID":4301,"VillageID":3456,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-18T18:42:50Z","ServerKey":"us63"},{"ID":4302,"VillageID":4176,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-18T18:45:12Z","ServerKey":"us63"},{"ID":4303,"VillageID":1671,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":390,"CreatedAt":"2023-02-18T18:51:31Z","ServerKey":"us63"},{"ID":4304,"VillageID":8549,"NewOwnerID":848941179,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-18T18:55:49Z","ServerKey":"us63"},{"ID":4305,"VillageID":4821,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-18T19:05:04Z","ServerKey":"us63"},{"ID":4306,"VillageID":7304,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-18T19:12:53Z","ServerKey":"us63"},{"ID":4307,"VillageID":3094,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-18T19:13:07Z","ServerKey":"us63"},{"ID":4308,"VillageID":8812,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-18T19:17:31Z","ServerKey":"us63"},{"ID":4309,"VillageID":7123,"NewOwnerID":848954608,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-18T19:18:01Z","ServerKey":"us63"},{"ID":4310,"VillageID":3494,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-18T19:30:23Z","ServerKey":"us63"},{"ID":4311,"VillageID":3475,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":220600,"OldTribeID":0,"Points":1602,"CreatedAt":"2023-02-18T19:30:54Z","ServerKey":"us63"},{"ID":4312,"VillageID":1331,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-18T19:42:20Z","ServerKey":"us63"},{"ID":4313,"VillageID":10107,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-18T19:42:58Z","ServerKey":"us63"},{"ID":4314,"VillageID":8899,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-18T19:44:07Z","ServerKey":"us63"},{"ID":4315,"VillageID":8429,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-18T19:50:14Z","ServerKey":"us63"},{"ID":4316,"VillageID":2998,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-18T19:53:51Z","ServerKey":"us63"},{"ID":4317,"VillageID":48,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-18T20:12:26Z","ServerKey":"us63"},{"ID":4318,"VillageID":5449,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-18T20:17:38Z","ServerKey":"us63"},{"ID":4319,"VillageID":1197,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":476,"CreatedAt":"2023-02-18T20:19:42Z","ServerKey":"us63"},{"ID":4320,"VillageID":964,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":475,"CreatedAt":"2023-02-18T20:22:22Z","ServerKey":"us63"},{"ID":4321,"VillageID":2294,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-18T20:24:07Z","ServerKey":"us63"},{"ID":4322,"VillageID":2699,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":523,"CreatedAt":"2023-02-18T20:26:25Z","ServerKey":"us63"},{"ID":4323,"VillageID":1213,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-18T20:30:13Z","ServerKey":"us63"},{"ID":4324,"VillageID":1775,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-18T20:40:34Z","ServerKey":"us63"},{"ID":4325,"VillageID":7676,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":35,"CreatedAt":"2023-02-18T20:50:45Z","ServerKey":"us63"},{"ID":4326,"VillageID":1239,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-18T20:58:36Z","ServerKey":"us63"},{"ID":4327,"VillageID":2380,"NewOwnerID":848954223,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-18T21:02:59Z","ServerKey":"us63"},{"ID":4328,"VillageID":2380,"NewOwnerID":848954223,"NewTribeID":88,"OldOwnerID":848954223,"OldTribeID":88,"Points":402,"CreatedAt":"2023-02-18T21:02:59Z","ServerKey":"us63"},{"ID":4329,"VillageID":1980,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-18T21:03:52Z","ServerKey":"us63"},{"ID":4330,"VillageID":1224,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-18T21:08:51Z","ServerKey":"us63"},{"ID":4331,"VillageID":3487,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":505,"CreatedAt":"2023-02-18T21:20:19Z","ServerKey":"us63"},{"ID":4332,"VillageID":1601,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":382,"CreatedAt":"2023-02-18T21:23:07Z","ServerKey":"us63"},{"ID":4333,"VillageID":1921,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":848954366,"OldTribeID":0,"Points":927,"CreatedAt":"2023-02-18T21:25:58Z","ServerKey":"us63"},{"ID":4334,"VillageID":3177,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":416,"CreatedAt":"2023-02-18T21:27:23Z","ServerKey":"us63"},{"ID":4335,"VillageID":1349,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":427,"CreatedAt":"2023-02-18T21:33:02Z","ServerKey":"us63"},{"ID":4336,"VillageID":3500,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-18T21:37:42Z","ServerKey":"us63"},{"ID":4337,"VillageID":321,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-18T21:43:17Z","ServerKey":"us63"},{"ID":4338,"VillageID":1455,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-18T21:51:15Z","ServerKey":"us63"},{"ID":4339,"VillageID":5123,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-18T22:02:15Z","ServerKey":"us63"},{"ID":4340,"VillageID":2229,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-18T22:08:57Z","ServerKey":"us63"},{"ID":4341,"VillageID":2703,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-18T22:13:45Z","ServerKey":"us63"},{"ID":4342,"VillageID":2716,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-18T22:19:47Z","ServerKey":"us63"},{"ID":4343,"VillageID":1723,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-18T22:25:14Z","ServerKey":"us63"},{"ID":4344,"VillageID":1723,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":257,"CreatedAt":"2023-02-18T22:25:14Z","ServerKey":"us63"},{"ID":4346,"VillageID":859,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-18T22:25:59Z","ServerKey":"us63"},{"ID":4347,"VillageID":1144,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":513,"CreatedAt":"2023-02-18T22:29:07Z","ServerKey":"us63"},{"ID":4348,"VillageID":3649,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-18T22:36:47Z","ServerKey":"us63"},{"ID":4349,"VillageID":5541,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-18T22:42:31Z","ServerKey":"us63"},{"ID":4350,"VillageID":1537,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-18T22:47:33Z","ServerKey":"us63"},{"ID":4351,"VillageID":1415,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-18T22:51:25Z","ServerKey":"us63"},{"ID":4352,"VillageID":1311,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3055,"CreatedAt":"2023-02-18T22:52:39Z","ServerKey":"us63"},{"ID":4353,"VillageID":1274,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-18T22:55:32Z","ServerKey":"us63"},{"ID":4354,"VillageID":3084,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-18T22:56:44Z","ServerKey":"us63"},{"ID":4355,"VillageID":5133,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-18T22:58:18Z","ServerKey":"us63"},{"ID":4356,"VillageID":7014,"NewOwnerID":848955442,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-18T23:01:53Z","ServerKey":"us63"},{"ID":4357,"VillageID":6088,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-18T23:09:52Z","ServerKey":"us63"},{"ID":4358,"VillageID":1589,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-18T23:10:25Z","ServerKey":"us63"},{"ID":4359,"VillageID":7619,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-18T23:22:40Z","ServerKey":"us63"},{"ID":4360,"VillageID":785,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":538,"CreatedAt":"2023-02-18T23:33:17Z","ServerKey":"us63"},{"ID":4361,"VillageID":8545,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-18T23:43:03Z","ServerKey":"us63"},{"ID":4362,"VillageID":2417,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":404,"CreatedAt":"2023-02-18T23:48:43Z","ServerKey":"us63"},{"ID":4363,"VillageID":1843,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-19T00:01:41Z","ServerKey":"us63"},{"ID":4364,"VillageID":1843,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":262,"CreatedAt":"2023-02-19T00:01:41Z","ServerKey":"us63"},{"ID":4365,"VillageID":8966,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-19T00:06:04Z","ServerKey":"us63"},{"ID":4366,"VillageID":5021,"NewOwnerID":848953992,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-19T00:06:25Z","ServerKey":"us63"},{"ID":4367,"VillageID":9656,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-19T00:14:47Z","ServerKey":"us63"},{"ID":4368,"VillageID":2240,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":418,"CreatedAt":"2023-02-19T00:17:47Z","ServerKey":"us63"},{"ID":4369,"VillageID":9891,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":37,"CreatedAt":"2023-02-19T00:20:29Z","ServerKey":"us63"},{"ID":4370,"VillageID":1908,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-19T00:22:31Z","ServerKey":"us63"},{"ID":4371,"VillageID":3087,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-19T00:30:03Z","ServerKey":"us63"},{"ID":4372,"VillageID":1998,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":467,"CreatedAt":"2023-02-19T00:32:36Z","ServerKey":"us63"},{"ID":4373,"VillageID":7792,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-19T00:32:56Z","ServerKey":"us63"},{"ID":4374,"VillageID":3844,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":66,"Points":2167,"CreatedAt":"2023-02-19T00:38:02Z","ServerKey":"us63"},{"ID":4375,"VillageID":5685,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-19T00:43:13Z","ServerKey":"us63"},{"ID":4376,"VillageID":1525,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":2776,"CreatedAt":"2023-02-19T00:44:45Z","ServerKey":"us63"},{"ID":4377,"VillageID":1525,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":2776,"CreatedAt":"2023-02-19T00:44:45Z","ServerKey":"us63"},{"ID":4378,"VillageID":5971,"NewOwnerID":218304,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-19T00:49:09Z","ServerKey":"us63"},{"ID":4379,"VillageID":5646,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-19T00:51:09Z","ServerKey":"us63"},{"ID":4380,"VillageID":638,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":848936921,"OldTribeID":6,"Points":7287,"CreatedAt":"2023-02-19T01:00:00Z","ServerKey":"us63"},{"ID":4381,"VillageID":1546,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":7227,"CreatedAt":"2023-02-19T01:00:00Z","ServerKey":"us63"},{"ID":4382,"VillageID":314,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":9511,"CreatedAt":"2023-02-19T01:00:00Z","ServerKey":"us63"},{"ID":4383,"VillageID":26,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":4642,"CreatedAt":"2023-02-19T01:00:07Z","ServerKey":"us63"},{"ID":4384,"VillageID":26,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":4642,"CreatedAt":"2023-02-19T01:00:07Z","ServerKey":"us63"},{"ID":4385,"VillageID":1683,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848936921,"OldTribeID":6,"Points":3617,"CreatedAt":"2023-02-19T01:00:07Z","ServerKey":"us63"},{"ID":4386,"VillageID":709,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-19T01:00:41Z","ServerKey":"us63"},{"ID":4387,"VillageID":763,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848954240,"OldTribeID":6,"Points":6622,"CreatedAt":"2023-02-19T01:00:46Z","ServerKey":"us63"},{"ID":4388,"VillageID":908,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":771856,"OldTribeID":42,"Points":10755,"CreatedAt":"2023-02-19T01:03:04Z","ServerKey":"us63"},{"ID":4389,"VillageID":662,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":357,"CreatedAt":"2023-02-19T01:03:11Z","ServerKey":"us63"},{"ID":4390,"VillageID":1473,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-19T01:09:00Z","ServerKey":"us63"},{"ID":4391,"VillageID":7736,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-19T01:14:00Z","ServerKey":"us63"},{"ID":4392,"VillageID":1274,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":374,"CreatedAt":"2023-02-19T01:15:50Z","ServerKey":"us63"},{"ID":4393,"VillageID":1289,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3697,"CreatedAt":"2023-02-19T01:20:29Z","ServerKey":"us63"},{"ID":4394,"VillageID":633,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":6614,"CreatedAt":"2023-02-19T01:29:15Z","ServerKey":"us63"},{"ID":4395,"VillageID":5770,"NewOwnerID":714184,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-19T01:31:11Z","ServerKey":"us63"},{"ID":4396,"VillageID":5555,"NewOwnerID":848953197,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-19T01:38:01Z","ServerKey":"us63"},{"ID":4397,"VillageID":4907,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-19T01:39:02Z","ServerKey":"us63"},{"ID":4398,"VillageID":3480,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-19T01:54:15Z","ServerKey":"us63"},{"ID":4399,"VillageID":1964,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-19T01:56:10Z","ServerKey":"us63"},{"ID":4400,"VillageID":5137,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-19T02:01:55Z","ServerKey":"us63"},{"ID":4401,"VillageID":2809,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":452,"CreatedAt":"2023-02-19T02:04:29Z","ServerKey":"us63"},{"ID":4402,"VillageID":5915,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1483,"CreatedAt":"2023-02-19T02:04:53Z","ServerKey":"us63"},{"ID":4403,"VillageID":6744,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-19T02:09:22Z","ServerKey":"us63"},{"ID":4404,"VillageID":7387,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-19T02:26:23Z","ServerKey":"us63"},{"ID":4405,"VillageID":603,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-19T02:26:32Z","ServerKey":"us63"},{"ID":4406,"VillageID":4549,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":7536,"OldTribeID":119,"Points":1577,"CreatedAt":"2023-02-19T02:26:55Z","ServerKey":"us63"},{"ID":4407,"VillageID":2735,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":458,"CreatedAt":"2023-02-19T02:31:29Z","ServerKey":"us63"},{"ID":4408,"VillageID":5894,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":1598,"CreatedAt":"2023-02-19T02:32:23Z","ServerKey":"us63"},{"ID":4409,"VillageID":2517,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-19T02:34:07Z","ServerKey":"us63"},{"ID":4410,"VillageID":6100,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-19T02:37:08Z","ServerKey":"us63"},{"ID":4411,"VillageID":2116,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-19T02:48:28Z","ServerKey":"us63"},{"ID":4412,"VillageID":874,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848954240,"OldTribeID":6,"Points":506,"CreatedAt":"2023-02-19T02:48:30Z","ServerKey":"us63"},{"ID":4413,"VillageID":2551,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":435,"CreatedAt":"2023-02-19T02:48:37Z","ServerKey":"us63"},{"ID":4414,"VillageID":3299,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":437,"CreatedAt":"2023-02-19T02:50:26Z","ServerKey":"us63"},{"ID":4415,"VillageID":2828,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-19T02:53:29Z","ServerKey":"us63"},{"ID":4416,"VillageID":6470,"NewOwnerID":848954814,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":397,"CreatedAt":"2023-02-19T02:53:57Z","ServerKey":"us63"},{"ID":4417,"VillageID":7727,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":751295,"OldTribeID":0,"Points":2883,"CreatedAt":"2023-02-19T02:54:54Z","ServerKey":"us63"},{"ID":4418,"VillageID":1585,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":494,"CreatedAt":"2023-02-19T02:58:29Z","ServerKey":"us63"},{"ID":4419,"VillageID":4667,"NewOwnerID":848955001,"NewTribeID":169,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-19T03:03:12Z","ServerKey":"us63"},{"ID":4420,"VillageID":5728,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-19T03:27:06Z","ServerKey":"us63"},{"ID":4421,"VillageID":1048,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3075,"CreatedAt":"2023-02-19T03:28:58Z","ServerKey":"us63"},{"ID":4422,"VillageID":1648,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1231,"CreatedAt":"2023-02-19T03:31:08Z","ServerKey":"us63"},{"ID":4423,"VillageID":224,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-19T03:43:19Z","ServerKey":"us63"},{"ID":4424,"VillageID":4699,"NewOwnerID":848954854,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-19T03:49:22Z","ServerKey":"us63"},{"ID":4425,"VillageID":634,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":7570,"CreatedAt":"2023-02-19T04:00:45Z","ServerKey":"us63"},{"ID":4426,"VillageID":846,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-19T04:16:27Z","ServerKey":"us63"},{"ID":4427,"VillageID":2085,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-19T04:19:51Z","ServerKey":"us63"},{"ID":4428,"VillageID":1481,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848954240,"OldTribeID":6,"Points":1720,"CreatedAt":"2023-02-19T04:21:14Z","ServerKey":"us63"},{"ID":4429,"VillageID":1481,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":1720,"CreatedAt":"2023-02-19T04:21:14Z","ServerKey":"us63"},{"ID":4430,"VillageID":1599,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848954240,"OldTribeID":6,"Points":2974,"CreatedAt":"2023-02-19T04:38:03Z","ServerKey":"us63"},{"ID":4431,"VillageID":862,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-19T04:39:35Z","ServerKey":"us63"},{"ID":4432,"VillageID":9148,"NewOwnerID":848941179,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-19T04:48:51Z","ServerKey":"us63"},{"ID":4433,"VillageID":8013,"NewOwnerID":848953907,"NewTribeID":187,"OldOwnerID":848947609,"OldTribeID":47,"Points":233,"CreatedAt":"2023-02-19T04:49:47Z","ServerKey":"us63"},{"ID":4434,"VillageID":430,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-19T04:52:10Z","ServerKey":"us63"},{"ID":4435,"VillageID":38,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":8189,"CreatedAt":"2023-02-19T04:54:22Z","ServerKey":"us63"},{"ID":4436,"VillageID":4602,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":3707,"CreatedAt":"2023-02-19T04:59:59Z","ServerKey":"us63"},{"ID":4437,"VillageID":990,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":3390,"CreatedAt":"2023-02-19T05:00:33Z","ServerKey":"us63"},{"ID":4438,"VillageID":9465,"NewOwnerID":848953915,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-02-19T05:04:45Z","ServerKey":"us63"},{"ID":4439,"VillageID":7711,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-19T05:13:19Z","ServerKey":"us63"},{"ID":4440,"VillageID":7926,"NewOwnerID":282832,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-19T05:18:06Z","ServerKey":"us63"},{"ID":4441,"VillageID":2892,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-19T05:23:54Z","ServerKey":"us63"},{"ID":4442,"VillageID":1923,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-19T05:24:42Z","ServerKey":"us63"},{"ID":4443,"VillageID":1462,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-19T05:34:35Z","ServerKey":"us63"},{"ID":4444,"VillageID":1842,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":401,"CreatedAt":"2023-02-19T05:42:45Z","ServerKey":"us63"},{"ID":4445,"VillageID":1911,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-19T05:45:08Z","ServerKey":"us63"},{"ID":4446,"VillageID":4950,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-19T05:49:10Z","ServerKey":"us63"},{"ID":4447,"VillageID":784,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":498,"CreatedAt":"2023-02-19T06:03:29Z","ServerKey":"us63"},{"ID":4448,"VillageID":8565,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-19T06:29:35Z","ServerKey":"us63"},{"ID":4449,"VillageID":7054,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-19T06:29:39Z","ServerKey":"us63"},{"ID":4450,"VillageID":251,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":418,"CreatedAt":"2023-02-19T06:43:59Z","ServerKey":"us63"},{"ID":4451,"VillageID":4165,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-19T06:52:57Z","ServerKey":"us63"},{"ID":4452,"VillageID":6018,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-19T07:02:23Z","ServerKey":"us63"},{"ID":4453,"VillageID":1116,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-19T07:07:21Z","ServerKey":"us63"},{"ID":4454,"VillageID":1116,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":342,"CreatedAt":"2023-02-19T07:07:21Z","ServerKey":"us63"},{"ID":4455,"VillageID":4350,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":438,"CreatedAt":"2023-02-19T07:12:55Z","ServerKey":"us63"},{"ID":4456,"VillageID":4350,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":438,"CreatedAt":"2023-02-19T07:12:55Z","ServerKey":"us63"},{"ID":4457,"VillageID":5745,"NewOwnerID":848954810,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-19T07:21:11Z","ServerKey":"us63"},{"ID":4458,"VillageID":1196,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-19T07:24:41Z","ServerKey":"us63"},{"ID":4459,"VillageID":5237,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-19T07:27:10Z","ServerKey":"us63"},{"ID":4460,"VillageID":2216,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-19T07:42:02Z","ServerKey":"us63"},{"ID":4461,"VillageID":3371,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-19T08:18:16Z","ServerKey":"us63"},{"ID":4462,"VillageID":6230,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":605760,"OldTribeID":0,"Points":2142,"CreatedAt":"2023-02-19T08:20:58Z","ServerKey":"us63"},{"ID":4463,"VillageID":920,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-19T08:29:59Z","ServerKey":"us63"},{"ID":4464,"VillageID":4602,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":848953039,"OldTribeID":85,"Points":3736,"CreatedAt":"2023-02-19T08:37:07Z","ServerKey":"us63"},{"ID":4465,"VillageID":818,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-19T08:43:43Z","ServerKey":"us63"},{"ID":4466,"VillageID":707,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-19T08:48:32Z","ServerKey":"us63"},{"ID":4467,"VillageID":3028,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":2107,"CreatedAt":"2023-02-19T09:09:24Z","ServerKey":"us63"},{"ID":4468,"VillageID":10157,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-19T09:11:06Z","ServerKey":"us63"},{"ID":4469,"VillageID":850,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848953670,"OldTribeID":0,"Points":4659,"CreatedAt":"2023-02-19T09:18:26Z","ServerKey":"us63"},{"ID":4470,"VillageID":6499,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-19T09:33:00Z","ServerKey":"us63"},{"ID":4471,"VillageID":1215,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":3171,"CreatedAt":"2023-02-19T09:40:00Z","ServerKey":"us63"},{"ID":4472,"VillageID":990,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":572558,"OldTribeID":48,"Points":3424,"CreatedAt":"2023-02-19T09:49:03Z","ServerKey":"us63"},{"ID":4473,"VillageID":990,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848936926,"OldTribeID":6,"Points":3424,"CreatedAt":"2023-02-19T09:49:03Z","ServerKey":"us63"},{"ID":4474,"VillageID":1258,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":373,"CreatedAt":"2023-02-19T09:55:20Z","ServerKey":"us63"},{"ID":4475,"VillageID":3627,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-19T09:57:30Z","ServerKey":"us63"},{"ID":4476,"VillageID":207,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-19T10:04:24Z","ServerKey":"us63"},{"ID":4477,"VillageID":7669,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848955348,"OldTribeID":209,"Points":3581,"CreatedAt":"2023-02-19T10:05:01Z","ServerKey":"us63"},{"ID":4478,"VillageID":8367,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848955348,"OldTribeID":209,"Points":6303,"CreatedAt":"2023-02-19T10:05:03Z","ServerKey":"us63"},{"ID":4479,"VillageID":8367,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848940894,"OldTribeID":11,"Points":6303,"CreatedAt":"2023-02-19T10:05:03Z","ServerKey":"us63"},{"ID":4480,"VillageID":1623,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-19T10:06:04Z","ServerKey":"us63"},{"ID":4481,"VillageID":1686,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":638,"CreatedAt":"2023-02-19T10:06:53Z","ServerKey":"us63"},{"ID":4482,"VillageID":889,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":479,"CreatedAt":"2023-02-19T10:09:42Z","ServerKey":"us63"},{"ID":4483,"VillageID":7977,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-19T10:11:01Z","ServerKey":"us63"},{"ID":4484,"VillageID":945,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":1850,"CreatedAt":"2023-02-19T10:15:10Z","ServerKey":"us63"},{"ID":4485,"VillageID":5126,"NewOwnerID":653971,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-19T10:20:36Z","ServerKey":"us63"},{"ID":4486,"VillageID":1914,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-19T10:36:53Z","ServerKey":"us63"},{"ID":4487,"VillageID":1730,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":4951,"CreatedAt":"2023-02-19T10:46:51Z","ServerKey":"us63"},{"ID":4488,"VillageID":1730,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":4951,"CreatedAt":"2023-02-19T10:46:51Z","ServerKey":"us63"},{"ID":4489,"VillageID":3722,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-19T11:04:48Z","ServerKey":"us63"},{"ID":4490,"VillageID":4403,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":775955,"OldTribeID":227,"Points":10125,"CreatedAt":"2023-02-19T11:20:21Z","ServerKey":"us63"},{"ID":4491,"VillageID":8076,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-02-19T11:27:51Z","ServerKey":"us63"},{"ID":4492,"VillageID":990,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":3366,"CreatedAt":"2023-02-19T11:34:12Z","ServerKey":"us63"},{"ID":4493,"VillageID":8386,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-19T11:40:19Z","ServerKey":"us63"},{"ID":4494,"VillageID":369,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":8783,"CreatedAt":"2023-02-19T11:41:25Z","ServerKey":"us63"},{"ID":4495,"VillageID":2774,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-19T11:46:47Z","ServerKey":"us63"},{"ID":4496,"VillageID":333,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":297,"CreatedAt":"2023-02-19T11:46:57Z","ServerKey":"us63"},{"ID":4497,"VillageID":515,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":2105,"CreatedAt":"2023-02-19T11:49:04Z","ServerKey":"us63"},{"ID":4498,"VillageID":5185,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-19T11:49:05Z","ServerKey":"us63"},{"ID":4499,"VillageID":2439,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":450,"CreatedAt":"2023-02-19T11:53:11Z","ServerKey":"us63"},{"ID":4500,"VillageID":2984,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":451,"CreatedAt":"2023-02-19T11:54:19Z","ServerKey":"us63"},{"ID":4501,"VillageID":4340,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":3835,"CreatedAt":"2023-02-19T12:03:48Z","ServerKey":"us63"},{"ID":4502,"VillageID":4519,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":848953962,"OldTribeID":2,"Points":4935,"CreatedAt":"2023-02-19T12:07:57Z","ServerKey":"us63"},{"ID":4503,"VillageID":5462,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-19T12:20:52Z","ServerKey":"us63"},{"ID":4504,"VillageID":3028,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":2117,"CreatedAt":"2023-02-19T12:39:06Z","ServerKey":"us63"},{"ID":4505,"VillageID":1452,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-19T12:50:04Z","ServerKey":"us63"},{"ID":4506,"VillageID":7971,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-19T13:01:04Z","ServerKey":"us63"},{"ID":4507,"VillageID":8123,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-19T13:01:46Z","ServerKey":"us63"},{"ID":4508,"VillageID":1613,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-19T13:10:40Z","ServerKey":"us63"},{"ID":4509,"VillageID":750,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":2291,"CreatedAt":"2023-02-19T13:14:51Z","ServerKey":"us63"},{"ID":4510,"VillageID":6016,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":3830,"CreatedAt":"2023-02-19T13:19:10Z","ServerKey":"us63"},{"ID":4511,"VillageID":6611,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-19T13:38:31Z","ServerKey":"us63"},{"ID":4512,"VillageID":7595,"NewOwnerID":848955238,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-19T13:41:43Z","ServerKey":"us63"},{"ID":4513,"VillageID":5911,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-19T13:53:06Z","ServerKey":"us63"},{"ID":4514,"VillageID":4781,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-19T14:00:17Z","ServerKey":"us63"},{"ID":4515,"VillageID":3182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-19T14:09:35Z","ServerKey":"us63"},{"ID":4516,"VillageID":3103,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":405,"CreatedAt":"2023-02-19T14:09:57Z","ServerKey":"us63"},{"ID":4517,"VillageID":8633,"NewOwnerID":749328,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-19T14:15:46Z","ServerKey":"us63"},{"ID":4518,"VillageID":4261,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-19T14:28:54Z","ServerKey":"us63"},{"ID":4519,"VillageID":82,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":554600,"OldTribeID":240,"Points":1035,"CreatedAt":"2023-02-19T14:32:51Z","ServerKey":"us63"},{"ID":4520,"VillageID":3003,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-19T14:41:45Z","ServerKey":"us63"},{"ID":4521,"VillageID":1509,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":355,"CreatedAt":"2023-02-19T14:42:25Z","ServerKey":"us63"},{"ID":4522,"VillageID":8817,"NewOwnerID":769781,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-19T14:44:07Z","ServerKey":"us63"},{"ID":4523,"VillageID":4261,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":796360,"OldTribeID":138,"Points":255,"CreatedAt":"2023-02-19T15:03:16Z","ServerKey":"us63"},{"ID":4524,"VillageID":548,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":449,"CreatedAt":"2023-02-19T15:16:16Z","ServerKey":"us63"},{"ID":4525,"VillageID":4267,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-19T15:18:11Z","ServerKey":"us63"},{"ID":4526,"VillageID":290,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-19T15:24:13Z","ServerKey":"us63"},{"ID":4527,"VillageID":9981,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-19T15:30:51Z","ServerKey":"us63"},{"ID":4528,"VillageID":8737,"NewOwnerID":848954437,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-02-19T15:35:15Z","ServerKey":"us63"},{"ID":4529,"VillageID":4042,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-19T15:48:58Z","ServerKey":"us63"},{"ID":4530,"VillageID":7653,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-19T15:49:20Z","ServerKey":"us63"},{"ID":4531,"VillageID":2334,"NewOwnerID":785871,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-19T15:49:38Z","ServerKey":"us63"},{"ID":4532,"VillageID":2413,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":428,"CreatedAt":"2023-02-19T15:54:18Z","ServerKey":"us63"},{"ID":4533,"VillageID":2005,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":404,"CreatedAt":"2023-02-19T16:04:05Z","ServerKey":"us63"},{"ID":4534,"VillageID":5409,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":1034,"CreatedAt":"2023-02-19T16:08:10Z","ServerKey":"us63"},{"ID":4535,"VillageID":5409,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":1034,"CreatedAt":"2023-02-19T16:08:10Z","ServerKey":"us63"},{"ID":4537,"VillageID":4360,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-19T16:10:18Z","ServerKey":"us63"},{"ID":4538,"VillageID":8448,"NewOwnerID":848954218,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-19T16:15:00Z","ServerKey":"us63"},{"ID":4539,"VillageID":275,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":9643,"CreatedAt":"2023-02-19T16:32:10Z","ServerKey":"us63"},{"ID":4540,"VillageID":275,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":9643,"CreatedAt":"2023-02-19T16:32:10Z","ServerKey":"us63"},{"ID":4541,"VillageID":2556,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":5140,"CreatedAt":"2023-02-19T16:37:53Z","ServerKey":"us63"},{"ID":4542,"VillageID":1103,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":358,"CreatedAt":"2023-02-19T16:39:37Z","ServerKey":"us63"},{"ID":4543,"VillageID":744,"NewOwnerID":848937811,"NewTribeID":240,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-19T16:44:52Z","ServerKey":"us63"},{"ID":4544,"VillageID":750,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":779484,"OldTribeID":48,"Points":2346,"CreatedAt":"2023-02-19T16:53:13Z","ServerKey":"us63"},{"ID":4545,"VillageID":9673,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-19T16:58:20Z","ServerKey":"us63"},{"ID":4546,"VillageID":1599,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848945433,"OldTribeID":138,"Points":2672,"CreatedAt":"2023-02-19T17:06:33Z","ServerKey":"us63"},{"ID":4547,"VillageID":6647,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-19T17:09:06Z","ServerKey":"us63"},{"ID":4548,"VillageID":6841,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-19T17:31:10Z","ServerKey":"us63"},{"ID":4549,"VillageID":5554,"NewOwnerID":848954978,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-19T17:40:41Z","ServerKey":"us63"},{"ID":4550,"VillageID":7648,"NewOwnerID":848955388,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-19T17:44:47Z","ServerKey":"us63"},{"ID":4551,"VillageID":1375,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3858,"CreatedAt":"2023-02-19T17:54:24Z","ServerKey":"us63"},{"ID":4552,"VillageID":5354,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-19T17:57:40Z","ServerKey":"us63"},{"ID":4553,"VillageID":2236,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-19T18:04:26Z","ServerKey":"us63"},{"ID":4554,"VillageID":6934,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-19T18:04:40Z","ServerKey":"us63"},{"ID":4555,"VillageID":5967,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-19T18:13:34Z","ServerKey":"us63"},{"ID":4556,"VillageID":4360,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":171766,"OldTribeID":33,"Points":269,"CreatedAt":"2023-02-19T18:21:20Z","ServerKey":"us63"},{"ID":4557,"VillageID":4360,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":580805,"OldTribeID":76,"Points":269,"CreatedAt":"2023-02-19T18:21:20Z","ServerKey":"us63"},{"ID":4560,"VillageID":1833,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":6581,"CreatedAt":"2023-02-19T18:28:46Z","ServerKey":"us63"},{"ID":4561,"VillageID":1140,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-19T18:31:52Z","ServerKey":"us63"},{"ID":4562,"VillageID":2033,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-19T18:32:03Z","ServerKey":"us63"},{"ID":4563,"VillageID":1362,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-19T18:32:19Z","ServerKey":"us63"},{"ID":4564,"VillageID":1140,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":766625,"OldTribeID":6,"Points":319,"CreatedAt":"2023-02-19T18:39:47Z","ServerKey":"us63"},{"ID":4565,"VillageID":3770,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-19T18:47:01Z","ServerKey":"us63"},{"ID":4566,"VillageID":4283,"NewOwnerID":763018,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":441,"CreatedAt":"2023-02-19T18:47:13Z","ServerKey":"us63"},{"ID":4567,"VillageID":7420,"NewOwnerID":848954607,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-19T18:47:35Z","ServerKey":"us63"},{"ID":4568,"VillageID":909,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":373,"CreatedAt":"2023-02-19T18:48:22Z","ServerKey":"us63"},{"ID":4569,"VillageID":1511,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-19T18:51:27Z","ServerKey":"us63"},{"ID":4570,"VillageID":1653,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-19T18:51:36Z","ServerKey":"us63"},{"ID":4571,"VillageID":143,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":473,"CreatedAt":"2023-02-19T18:52:31Z","ServerKey":"us63"},{"ID":4572,"VillageID":1640,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":848953377,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-19T18:54:35Z","ServerKey":"us63"},{"ID":4573,"VillageID":7236,"NewOwnerID":848955388,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-19T18:55:28Z","ServerKey":"us63"},{"ID":4574,"VillageID":8412,"NewOwnerID":848941179,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-19T19:01:36Z","ServerKey":"us63"},{"ID":4575,"VillageID":1765,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-19T19:07:04Z","ServerKey":"us63"},{"ID":4576,"VillageID":3533,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-19T19:11:14Z","ServerKey":"us63"},{"ID":4577,"VillageID":6237,"NewOwnerID":218304,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-19T19:12:56Z","ServerKey":"us63"},{"ID":4578,"VillageID":1051,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":489,"CreatedAt":"2023-02-19T19:54:32Z","ServerKey":"us63"},{"ID":4579,"VillageID":1738,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-19T19:56:30Z","ServerKey":"us63"},{"ID":4580,"VillageID":453,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":453,"CreatedAt":"2023-02-19T19:57:34Z","ServerKey":"us63"},{"ID":4581,"VillageID":2728,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-19T20:01:52Z","ServerKey":"us63"},{"ID":4582,"VillageID":3862,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-19T20:06:18Z","ServerKey":"us63"},{"ID":4583,"VillageID":1926,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":397,"CreatedAt":"2023-02-19T20:10:10Z","ServerKey":"us63"},{"ID":4584,"VillageID":3144,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-19T20:16:57Z","ServerKey":"us63"},{"ID":4585,"VillageID":8353,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":1655,"CreatedAt":"2023-02-19T20:24:57Z","ServerKey":"us63"},{"ID":4586,"VillageID":2838,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-19T20:34:02Z","ServerKey":"us63"},{"ID":4587,"VillageID":3676,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-19T20:37:31Z","ServerKey":"us63"},{"ID":4588,"VillageID":9003,"NewOwnerID":848941179,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-19T20:40:12Z","ServerKey":"us63"},{"ID":4589,"VillageID":6142,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-19T20:42:30Z","ServerKey":"us63"},{"ID":4590,"VillageID":5031,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-19T20:55:53Z","ServerKey":"us63"},{"ID":4591,"VillageID":187,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-19T20:56:18Z","ServerKey":"us63"},{"ID":4592,"VillageID":3049,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-19T21:00:29Z","ServerKey":"us63"},{"ID":4593,"VillageID":2560,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-19T21:02:02Z","ServerKey":"us63"},{"ID":4594,"VillageID":9045,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-19T21:11:29Z","ServerKey":"us63"},{"ID":4595,"VillageID":4779,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":848951609,"OldTribeID":42,"Points":4377,"CreatedAt":"2023-02-19T21:15:00Z","ServerKey":"us63"},{"ID":4596,"VillageID":1875,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":376,"CreatedAt":"2023-02-19T21:17:29Z","ServerKey":"us63"},{"ID":4597,"VillageID":8613,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-19T21:20:44Z","ServerKey":"us63"},{"ID":4598,"VillageID":9780,"NewOwnerID":757723,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-19T21:22:05Z","ServerKey":"us63"},{"ID":4599,"VillageID":1290,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":425,"CreatedAt":"2023-02-19T21:22:41Z","ServerKey":"us63"},{"ID":4600,"VillageID":4669,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-19T21:36:02Z","ServerKey":"us63"},{"ID":4601,"VillageID":4572,"NewOwnerID":848938594,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-19T21:48:19Z","ServerKey":"us63"},{"ID":4602,"VillageID":9096,"NewOwnerID":848955412,"NewTribeID":198,"OldOwnerID":848945039,"OldTribeID":104,"Points":1205,"CreatedAt":"2023-02-19T21:49:03Z","ServerKey":"us63"},{"ID":4603,"VillageID":3683,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-19T22:08:13Z","ServerKey":"us63"},{"ID":4604,"VillageID":1465,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":456,"CreatedAt":"2023-02-19T22:09:47Z","ServerKey":"us63"},{"ID":4605,"VillageID":10219,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-19T22:19:08Z","ServerKey":"us63"},{"ID":4606,"VillageID":1658,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-19T22:26:10Z","ServerKey":"us63"},{"ID":4607,"VillageID":2856,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":457,"CreatedAt":"2023-02-19T22:27:31Z","ServerKey":"us63"},{"ID":4608,"VillageID":5453,"NewOwnerID":848954322,"NewTribeID":2,"OldOwnerID":848953197,"OldTribeID":53,"Points":3385,"CreatedAt":"2023-02-19T22:29:51Z","ServerKey":"us63"},{"ID":4609,"VillageID":2616,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":437,"CreatedAt":"2023-02-19T22:34:07Z","ServerKey":"us63"},{"ID":4610,"VillageID":2742,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-19T22:36:28Z","ServerKey":"us63"},{"ID":4611,"VillageID":1437,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":376,"CreatedAt":"2023-02-19T22:37:23Z","ServerKey":"us63"},{"ID":4612,"VillageID":1900,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":419,"CreatedAt":"2023-02-19T22:39:41Z","ServerKey":"us63"},{"ID":4613,"VillageID":3634,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-19T22:52:47Z","ServerKey":"us63"},{"ID":4614,"VillageID":1629,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":6174,"CreatedAt":"2023-02-19T22:55:44Z","ServerKey":"us63"},{"ID":4615,"VillageID":1629,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":779484,"OldTribeID":48,"Points":6174,"CreatedAt":"2023-02-19T22:55:44Z","ServerKey":"us63"},{"ID":4616,"VillageID":1266,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-19T22:57:00Z","ServerKey":"us63"},{"ID":4617,"VillageID":10301,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-19T22:58:12Z","ServerKey":"us63"},{"ID":4618,"VillageID":9723,"NewOwnerID":848942053,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-19T23:01:49Z","ServerKey":"us63"},{"ID":4619,"VillageID":2363,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":581,"CreatedAt":"2023-02-19T23:02:50Z","ServerKey":"us63"},{"ID":4620,"VillageID":951,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-19T23:02:56Z","ServerKey":"us63"},{"ID":4621,"VillageID":2490,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-19T23:06:06Z","ServerKey":"us63"},{"ID":4622,"VillageID":9426,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-02-19T23:09:04Z","ServerKey":"us63"},{"ID":4623,"VillageID":2069,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":477,"CreatedAt":"2023-02-19T23:12:39Z","ServerKey":"us63"},{"ID":4624,"VillageID":2385,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":831,"CreatedAt":"2023-02-19T23:28:34Z","ServerKey":"us63"},{"ID":4625,"VillageID":324,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":3353,"CreatedAt":"2023-02-19T23:29:37Z","ServerKey":"us63"},{"ID":4626,"VillageID":4504,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-19T23:38:48Z","ServerKey":"us63"},{"ID":4627,"VillageID":1123,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":636,"CreatedAt":"2023-02-19T23:42:10Z","ServerKey":"us63"},{"ID":4628,"VillageID":2616,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":796360,"OldTribeID":138,"Points":437,"CreatedAt":"2023-02-19T23:50:23Z","ServerKey":"us63"},{"ID":4629,"VillageID":2616,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848943092,"OldTribeID":20,"Points":437,"CreatedAt":"2023-02-19T23:50:23Z","ServerKey":"us63"},{"ID":4630,"VillageID":3846,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-19T23:53:47Z","ServerKey":"us63"},{"ID":4631,"VillageID":1744,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-19T23:54:41Z","ServerKey":"us63"},{"ID":4632,"VillageID":5453,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":848954322,"OldTribeID":2,"Points":3409,"CreatedAt":"2023-02-19T23:56:37Z","ServerKey":"us63"},{"ID":4633,"VillageID":4091,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-19T23:57:12Z","ServerKey":"us63"},{"ID":4634,"VillageID":2446,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-20T00:25:30Z","ServerKey":"us63"},{"ID":4635,"VillageID":2408,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-20T00:29:48Z","ServerKey":"us63"},{"ID":4636,"VillageID":8173,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":751295,"OldTribeID":0,"Points":669,"CreatedAt":"2023-02-20T00:48:49Z","ServerKey":"us63"},{"ID":4637,"VillageID":937,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-20T00:49:45Z","ServerKey":"us63"},{"ID":4638,"VillageID":937,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":213,"OldTribeID":6,"Points":333,"CreatedAt":"2023-02-20T00:49:45Z","ServerKey":"us63"},{"ID":4639,"VillageID":2160,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-20T00:51:46Z","ServerKey":"us63"},{"ID":4640,"VillageID":1421,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":817,"CreatedAt":"2023-02-20T00:53:02Z","ServerKey":"us63"},{"ID":4641,"VillageID":4253,"NewOwnerID":848954854,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-20T00:55:27Z","ServerKey":"us63"},{"ID":4642,"VillageID":7013,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-20T00:59:17Z","ServerKey":"us63"},{"ID":4643,"VillageID":6286,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-20T01:01:10Z","ServerKey":"us63"},{"ID":4644,"VillageID":7603,"NewOwnerID":848955311,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-20T01:11:02Z","ServerKey":"us63"},{"ID":4645,"VillageID":2785,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2254,"CreatedAt":"2023-02-20T01:21:22Z","ServerKey":"us63"},{"ID":4646,"VillageID":1449,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-20T01:24:02Z","ServerKey":"us63"},{"ID":4647,"VillageID":6523,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-20T01:39:10Z","ServerKey":"us63"},{"ID":4648,"VillageID":6111,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-20T01:40:26Z","ServerKey":"us63"},{"ID":4649,"VillageID":7446,"NewOwnerID":848945448,"NewTribeID":0,"OldOwnerID":848951588,"OldTribeID":187,"Points":2135,"CreatedAt":"2023-02-20T01:58:59Z","ServerKey":"us63"},{"ID":4650,"VillageID":405,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-20T02:01:23Z","ServerKey":"us63"},{"ID":4651,"VillageID":2338,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":952,"CreatedAt":"2023-02-20T02:13:57Z","ServerKey":"us63"},{"ID":4652,"VillageID":7954,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-20T02:14:15Z","ServerKey":"us63"},{"ID":4653,"VillageID":10065,"NewOwnerID":325451,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-20T02:16:31Z","ServerKey":"us63"},{"ID":4654,"VillageID":1821,"NewOwnerID":459451,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-20T02:17:21Z","ServerKey":"us63"},{"ID":4655,"VillageID":1821,"NewOwnerID":459451,"NewTribeID":0,"OldOwnerID":459451,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-20T02:17:21Z","ServerKey":"us63"},{"ID":4656,"VillageID":7939,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-20T02:21:00Z","ServerKey":"us63"},{"ID":4657,"VillageID":2509,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":452,"CreatedAt":"2023-02-20T02:24:21Z","ServerKey":"us63"},{"ID":4658,"VillageID":4091,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":848945162,"OldTribeID":33,"Points":338,"CreatedAt":"2023-02-20T02:26:25Z","ServerKey":"us63"},{"ID":4659,"VillageID":8861,"NewOwnerID":848941179,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-20T02:27:02Z","ServerKey":"us63"},{"ID":4660,"VillageID":2500,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-20T02:35:28Z","ServerKey":"us63"},{"ID":4661,"VillageID":8965,"NewOwnerID":848955400,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-20T02:45:22Z","ServerKey":"us63"},{"ID":4662,"VillageID":8341,"NewOwnerID":848955008,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-20T02:46:26Z","ServerKey":"us63"},{"ID":4663,"VillageID":1435,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-20T02:51:41Z","ServerKey":"us63"},{"ID":4664,"VillageID":2199,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-20T02:55:21Z","ServerKey":"us63"},{"ID":4665,"VillageID":572,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":10141,"CreatedAt":"2023-02-20T02:58:23Z","ServerKey":"us63"},{"ID":4666,"VillageID":2433,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":450,"CreatedAt":"2023-02-20T03:01:08Z","ServerKey":"us63"},{"ID":4667,"VillageID":1936,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-20T03:01:31Z","ServerKey":"us63"},{"ID":4668,"VillageID":8889,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-20T03:02:55Z","ServerKey":"us63"},{"ID":4669,"VillageID":1464,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-20T03:03:00Z","ServerKey":"us63"},{"ID":4670,"VillageID":7246,"NewOwnerID":848950849,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-20T03:05:56Z","ServerKey":"us63"},{"ID":4671,"VillageID":8023,"NewOwnerID":749328,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-20T03:07:13Z","ServerKey":"us63"},{"ID":4672,"VillageID":8783,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-20T03:24:23Z","ServerKey":"us63"},{"ID":4673,"VillageID":8149,"NewOwnerID":848955129,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-20T03:28:34Z","ServerKey":"us63"},{"ID":4674,"VillageID":2297,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-20T03:34:25Z","ServerKey":"us63"},{"ID":4675,"VillageID":4494,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-20T03:41:03Z","ServerKey":"us63"},{"ID":4676,"VillageID":2883,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":415,"CreatedAt":"2023-02-20T03:41:43Z","ServerKey":"us63"},{"ID":4677,"VillageID":2864,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":592,"CreatedAt":"2023-02-20T03:42:56Z","ServerKey":"us63"},{"ID":4678,"VillageID":5636,"NewOwnerID":714184,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-20T03:46:12Z","ServerKey":"us63"},{"ID":4679,"VillageID":610,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":401,"CreatedAt":"2023-02-20T03:49:48Z","ServerKey":"us63"},{"ID":4680,"VillageID":7836,"NewOwnerID":270197,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-20T03:51:16Z","ServerKey":"us63"},{"ID":4681,"VillageID":2208,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-20T03:52:46Z","ServerKey":"us63"},{"ID":4682,"VillageID":3533,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":848945162,"OldTribeID":33,"Points":231,"CreatedAt":"2023-02-20T04:01:51Z","ServerKey":"us63"},{"ID":4683,"VillageID":22,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-20T04:11:54Z","ServerKey":"us63"},{"ID":4684,"VillageID":2616,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848943092,"OldTribeID":20,"Points":437,"CreatedAt":"2023-02-20T04:13:08Z","ServerKey":"us63"},{"ID":4685,"VillageID":1218,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-20T04:16:05Z","ServerKey":"us63"},{"ID":4686,"VillageID":1554,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":4723,"CreatedAt":"2023-02-20T04:20:00Z","ServerKey":"us63"},{"ID":4687,"VillageID":1554,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":4723,"CreatedAt":"2023-02-20T04:20:00Z","ServerKey":"us63"},{"ID":4690,"VillageID":2613,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-20T04:28:42Z","ServerKey":"us63"},{"ID":4691,"VillageID":3228,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-20T04:30:52Z","ServerKey":"us63"},{"ID":4692,"VillageID":6266,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-20T04:34:11Z","ServerKey":"us63"},{"ID":4693,"VillageID":10356,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-20T04:42:54Z","ServerKey":"us63"},{"ID":4694,"VillageID":2990,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-20T04:43:13Z","ServerKey":"us63"},{"ID":4695,"VillageID":1248,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-20T04:44:49Z","ServerKey":"us63"},{"ID":4696,"VillageID":1248,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":398664,"OldTribeID":33,"Points":294,"CreatedAt":"2023-02-20T04:50:52Z","ServerKey":"us63"},{"ID":4697,"VillageID":2036,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":397,"CreatedAt":"2023-02-20T04:56:30Z","ServerKey":"us63"},{"ID":4698,"VillageID":2014,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":596,"CreatedAt":"2023-02-20T05:01:00Z","ServerKey":"us63"},{"ID":4699,"VillageID":1166,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-20T05:05:43Z","ServerKey":"us63"},{"ID":4700,"VillageID":6146,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-20T05:09:19Z","ServerKey":"us63"},{"ID":4701,"VillageID":2057,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-20T05:14:22Z","ServerKey":"us63"},{"ID":4702,"VillageID":7034,"NewOwnerID":848932635,"NewTribeID":198,"OldOwnerID":848955233,"OldTribeID":0,"Points":1213,"CreatedAt":"2023-02-20T05:17:29Z","ServerKey":"us63"},{"ID":4703,"VillageID":476,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":469,"CreatedAt":"2023-02-20T05:24:06Z","ServerKey":"us63"},{"ID":4704,"VillageID":6453,"NewOwnerID":568,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-20T05:48:16Z","ServerKey":"us63"},{"ID":4705,"VillageID":635,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-20T05:50:18Z","ServerKey":"us63"},{"ID":4706,"VillageID":6398,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-20T06:08:06Z","ServerKey":"us63"},{"ID":4707,"VillageID":5079,"NewOwnerID":717445,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-20T06:09:03Z","ServerKey":"us63"},{"ID":4708,"VillageID":1294,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":7972,"CreatedAt":"2023-02-20T06:14:46Z","ServerKey":"us63"},{"ID":4709,"VillageID":7605,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-20T06:18:18Z","ServerKey":"us63"},{"ID":4710,"VillageID":2257,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":466,"CreatedAt":"2023-02-20T06:45:48Z","ServerKey":"us63"},{"ID":4711,"VillageID":7023,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-20T06:51:03Z","ServerKey":"us63"},{"ID":4712,"VillageID":5581,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":848954999,"OldTribeID":169,"Points":919,"CreatedAt":"2023-02-20T07:03:38Z","ServerKey":"us63"},{"ID":4713,"VillageID":5006,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-02-20T07:13:16Z","ServerKey":"us63"},{"ID":4714,"VillageID":6739,"NewOwnerID":848955211,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-20T07:21:51Z","ServerKey":"us63"},{"ID":4715,"VillageID":2190,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":762,"CreatedAt":"2023-02-20T07:27:26Z","ServerKey":"us63"},{"ID":4716,"VillageID":4342,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-20T07:32:40Z","ServerKey":"us63"},{"ID":4717,"VillageID":58,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-20T07:32:43Z","ServerKey":"us63"},{"ID":4718,"VillageID":58,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":370,"CreatedAt":"2023-02-20T07:32:43Z","ServerKey":"us63"},{"ID":4719,"VillageID":10317,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":28,"CreatedAt":"2023-02-20T07:46:52Z","ServerKey":"us63"},{"ID":4720,"VillageID":1304,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-20T08:01:27Z","ServerKey":"us63"},{"ID":4721,"VillageID":5263,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-20T08:03:10Z","ServerKey":"us63"},{"ID":4722,"VillageID":6287,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848951646,"OldTribeID":0,"Points":2025,"CreatedAt":"2023-02-20T08:11:21Z","ServerKey":"us63"},{"ID":4723,"VillageID":2189,"NewOwnerID":848940914,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-20T08:15:38Z","ServerKey":"us63"},{"ID":4724,"VillageID":641,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848953950,"OldTribeID":6,"Points":8647,"CreatedAt":"2023-02-20T08:20:27Z","ServerKey":"us63"},{"ID":4725,"VillageID":641,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848927565,"OldTribeID":138,"Points":8647,"CreatedAt":"2023-02-20T08:20:27Z","ServerKey":"us63"},{"ID":4726,"VillageID":641,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848927565,"OldTribeID":138,"Points":8606,"CreatedAt":"2023-02-20T08:21:00Z","ServerKey":"us63"},{"ID":4727,"VillageID":6805,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":334769,"OldTribeID":0,"Points":2364,"CreatedAt":"2023-02-20T08:21:08Z","ServerKey":"us63"},{"ID":4728,"VillageID":2597,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":706,"CreatedAt":"2023-02-20T08:21:41Z","ServerKey":"us63"},{"ID":4729,"VillageID":797,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":463,"CreatedAt":"2023-02-20T08:36:37Z","ServerKey":"us63"},{"ID":4730,"VillageID":1044,"NewOwnerID":848954597,"NewTribeID":227,"OldOwnerID":848919642,"OldTribeID":42,"Points":1538,"CreatedAt":"2023-02-20T08:36:53Z","ServerKey":"us63"},{"ID":4731,"VillageID":7506,"NewOwnerID":848949884,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-20T08:37:45Z","ServerKey":"us63"},{"ID":4732,"VillageID":641,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":8606,"CreatedAt":"2023-02-20T08:57:40Z","ServerKey":"us63"},{"ID":4733,"VillageID":8575,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-20T09:24:18Z","ServerKey":"us63"},{"ID":4734,"VillageID":5050,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":848954941,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-20T09:36:01Z","ServerKey":"us63"},{"ID":4735,"VillageID":5362,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-20T09:46:33Z","ServerKey":"us63"},{"ID":4736,"VillageID":194,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-20T09:47:39Z","ServerKey":"us63"},{"ID":4737,"VillageID":2013,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":467,"CreatedAt":"2023-02-20T09:54:00Z","ServerKey":"us63"},{"ID":4738,"VillageID":5629,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-20T10:16:15Z","ServerKey":"us63"},{"ID":4739,"VillageID":1639,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":779484,"OldTribeID":48,"Points":4384,"CreatedAt":"2023-02-20T10:29:56Z","ServerKey":"us63"},{"ID":4740,"VillageID":5011,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-20T10:41:55Z","ServerKey":"us63"},{"ID":4741,"VillageID":2071,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-20T10:43:08Z","ServerKey":"us63"},{"ID":4742,"VillageID":3586,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-20T10:58:49Z","ServerKey":"us63"},{"ID":4743,"VillageID":1892,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-20T11:14:14Z","ServerKey":"us63"},{"ID":4744,"VillageID":3335,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":624,"CreatedAt":"2023-02-20T11:14:45Z","ServerKey":"us63"},{"ID":4745,"VillageID":6190,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-20T11:18:16Z","ServerKey":"us63"},{"ID":4746,"VillageID":6190,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":178,"CreatedAt":"2023-02-20T11:18:16Z","ServerKey":"us63"},{"ID":4747,"VillageID":4705,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-20T11:40:59Z","ServerKey":"us63"},{"ID":4748,"VillageID":5933,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-20T11:56:13Z","ServerKey":"us63"},{"ID":4749,"VillageID":2063,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":496,"CreatedAt":"2023-02-20T12:17:13Z","ServerKey":"us63"},{"ID":4750,"VillageID":34,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":387,"CreatedAt":"2023-02-20T12:30:38Z","ServerKey":"us63"},{"ID":4751,"VillageID":2253,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":848954366,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-20T12:57:35Z","ServerKey":"us63"},{"ID":4752,"VillageID":1093,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-20T12:58:18Z","ServerKey":"us63"},{"ID":4753,"VillageID":5182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-20T13:21:00Z","ServerKey":"us63"},{"ID":4754,"VillageID":515,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":779484,"OldTribeID":48,"Points":2014,"CreatedAt":"2023-02-20T13:23:22Z","ServerKey":"us63"},{"ID":4755,"VillageID":515,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":509533,"OldTribeID":6,"Points":2014,"CreatedAt":"2023-02-20T13:23:22Z","ServerKey":"us63"},{"ID":4756,"VillageID":6411,"NewOwnerID":791583,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-20T13:29:52Z","ServerKey":"us63"},{"ID":4757,"VillageID":5182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":227,"CreatedAt":"2023-02-20T13:32:42Z","ServerKey":"us63"},{"ID":4759,"VillageID":5182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":227,"CreatedAt":"2023-02-20T13:32:43Z","ServerKey":"us63"},{"ID":4760,"VillageID":9325,"NewOwnerID":848953915,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-20T13:34:26Z","ServerKey":"us63"},{"ID":4761,"VillageID":928,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-20T13:54:43Z","ServerKey":"us63"},{"ID":4762,"VillageID":2272,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-20T13:59:57Z","ServerKey":"us63"},{"ID":4763,"VillageID":6863,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-20T14:04:32Z","ServerKey":"us63"},{"ID":4764,"VillageID":6656,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-20T14:06:26Z","ServerKey":"us63"},{"ID":4765,"VillageID":3757,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-20T14:09:29Z","ServerKey":"us63"},{"ID":4766,"VillageID":967,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-20T14:10:58Z","ServerKey":"us63"},{"ID":4767,"VillageID":9490,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-20T14:15:01Z","ServerKey":"us63"},{"ID":4768,"VillageID":6776,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-20T14:42:36Z","ServerKey":"us63"},{"ID":4769,"VillageID":1112,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":955,"CreatedAt":"2023-02-20T14:44:28Z","ServerKey":"us63"},{"ID":4770,"VillageID":1689,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":405,"CreatedAt":"2023-02-20T14:44:34Z","ServerKey":"us63"},{"ID":4771,"VillageID":8297,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-20T14:46:26Z","ServerKey":"us63"},{"ID":4772,"VillageID":1576,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-20T14:50:05Z","ServerKey":"us63"},{"ID":4773,"VillageID":6944,"NewOwnerID":848955211,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-20T15:35:30Z","ServerKey":"us63"},{"ID":4774,"VillageID":9490,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":848952678,"OldTribeID":219,"Points":103,"CreatedAt":"2023-02-20T15:41:33Z","ServerKey":"us63"},{"ID":4775,"VillageID":5883,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-20T15:52:54Z","ServerKey":"us63"},{"ID":4776,"VillageID":8963,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-20T15:52:57Z","ServerKey":"us63"},{"ID":4777,"VillageID":3281,"NewOwnerID":848952556,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1136,"CreatedAt":"2023-02-20T16:01:29Z","ServerKey":"us63"},{"ID":4778,"VillageID":1664,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-20T16:11:22Z","ServerKey":"us63"},{"ID":4779,"VillageID":2189,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848940914,"OldTribeID":150,"Points":511,"CreatedAt":"2023-02-20T16:14:56Z","ServerKey":"us63"},{"ID":4780,"VillageID":2189,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848945433,"OldTribeID":138,"Points":511,"CreatedAt":"2023-02-20T16:14:56Z","ServerKey":"us63"},{"ID":4782,"VillageID":5179,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":848954941,"OldTribeID":35,"Points":3714,"CreatedAt":"2023-02-20T16:17:12Z","ServerKey":"us63"},{"ID":4783,"VillageID":8626,"NewOwnerID":848937255,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-20T16:24:53Z","ServerKey":"us63"},{"ID":4784,"VillageID":728,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":525,"CreatedAt":"2023-02-20T16:27:01Z","ServerKey":"us63"},{"ID":4785,"VillageID":8392,"NewOwnerID":848955519,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-20T16:28:56Z","ServerKey":"us63"},{"ID":4786,"VillageID":1394,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":3039,"CreatedAt":"2023-02-20T16:35:16Z","ServerKey":"us63"},{"ID":4787,"VillageID":1365,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-20T16:36:07Z","ServerKey":"us63"},{"ID":4788,"VillageID":1267,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-20T16:43:28Z","ServerKey":"us63"},{"ID":4789,"VillageID":72,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-20T16:49:01Z","ServerKey":"us63"},{"ID":4790,"VillageID":4673,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-20T16:50:02Z","ServerKey":"us63"},{"ID":4791,"VillageID":4359,"NewOwnerID":285101,"NewTribeID":66,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-20T16:55:35Z","ServerKey":"us63"},{"ID":4792,"VillageID":4602,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":3844,"CreatedAt":"2023-02-20T16:59:58Z","ServerKey":"us63"},{"ID":4793,"VillageID":4602,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848953039,"OldTribeID":85,"Points":3844,"CreatedAt":"2023-02-20T16:59:58Z","ServerKey":"us63"},{"ID":4794,"VillageID":927,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-20T17:06:11Z","ServerKey":"us63"},{"ID":4795,"VillageID":2421,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-20T17:08:02Z","ServerKey":"us63"},{"ID":4796,"VillageID":7424,"NewOwnerID":848955238,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-20T17:08:53Z","ServerKey":"us63"},{"ID":4797,"VillageID":5964,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-20T17:08:56Z","ServerKey":"us63"},{"ID":4798,"VillageID":2184,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-20T17:09:58Z","ServerKey":"us63"},{"ID":4799,"VillageID":8177,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848904254,"OldTribeID":209,"Points":2382,"CreatedAt":"2023-02-20T17:11:26Z","ServerKey":"us63"},{"ID":4800,"VillageID":3039,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-20T17:12:40Z","ServerKey":"us63"},{"ID":4801,"VillageID":6205,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-20T17:25:08Z","ServerKey":"us63"},{"ID":4802,"VillageID":1394,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":3015,"CreatedAt":"2023-02-20T17:30:25Z","ServerKey":"us63"},{"ID":4803,"VillageID":2158,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":425,"CreatedAt":"2023-02-20T17:40:32Z","ServerKey":"us63"},{"ID":4804,"VillageID":9885,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-20T17:59:32Z","ServerKey":"us63"},{"ID":4805,"VillageID":9885,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":781432,"OldTribeID":198,"Points":41,"CreatedAt":"2023-02-20T18:00:47Z","ServerKey":"us63"},{"ID":4806,"VillageID":6223,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-20T18:15:12Z","ServerKey":"us63"},{"ID":4807,"VillageID":4967,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-20T18:18:48Z","ServerKey":"us63"},{"ID":4808,"VillageID":9999,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-20T18:34:37Z","ServerKey":"us63"},{"ID":4809,"VillageID":2300,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":521,"CreatedAt":"2023-02-20T18:52:58Z","ServerKey":"us63"},{"ID":4810,"VillageID":1820,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":7416,"CreatedAt":"2023-02-20T18:56:17Z","ServerKey":"us63"},{"ID":4811,"VillageID":2372,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-20T18:59:49Z","ServerKey":"us63"},{"ID":4812,"VillageID":3281,"NewOwnerID":848953299,"NewTribeID":32,"OldOwnerID":848952556,"OldTribeID":76,"Points":1126,"CreatedAt":"2023-02-20T19:13:21Z","ServerKey":"us63"},{"ID":4813,"VillageID":4236,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-20T19:14:07Z","ServerKey":"us63"},{"ID":4814,"VillageID":827,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-20T19:15:45Z","ServerKey":"us63"},{"ID":4815,"VillageID":261,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":436,"CreatedAt":"2023-02-20T19:28:24Z","ServerKey":"us63"},{"ID":4816,"VillageID":597,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":3417,"CreatedAt":"2023-02-20T19:47:39Z","ServerKey":"us63"},{"ID":4817,"VillageID":2207,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-20T19:47:41Z","ServerKey":"us63"},{"ID":4818,"VillageID":8682,"NewOwnerID":769781,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-20T19:54:05Z","ServerKey":"us63"},{"ID":4819,"VillageID":3744,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-20T20:00:39Z","ServerKey":"us63"},{"ID":4820,"VillageID":3068,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":541,"CreatedAt":"2023-02-20T20:03:15Z","ServerKey":"us63"},{"ID":4821,"VillageID":5583,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-20T20:05:33Z","ServerKey":"us63"},{"ID":4822,"VillageID":1538,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":667,"CreatedAt":"2023-02-20T20:08:13Z","ServerKey":"us63"},{"ID":4823,"VillageID":1306,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-20T20:13:11Z","ServerKey":"us63"},{"ID":4824,"VillageID":235,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":1498,"CreatedAt":"2023-02-20T20:15:55Z","ServerKey":"us63"},{"ID":4825,"VillageID":2570,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":379,"CreatedAt":"2023-02-20T20:16:06Z","ServerKey":"us63"},{"ID":4826,"VillageID":4222,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-20T20:18:04Z","ServerKey":"us63"},{"ID":4827,"VillageID":677,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":455,"CreatedAt":"2023-02-20T20:25:02Z","ServerKey":"us63"},{"ID":4828,"VillageID":2561,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-20T20:25:30Z","ServerKey":"us63"},{"ID":4829,"VillageID":7445,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-20T20:41:29Z","ServerKey":"us63"},{"ID":4830,"VillageID":1499,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-20T20:44:48Z","ServerKey":"us63"},{"ID":4831,"VillageID":3449,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":554,"CreatedAt":"2023-02-20T20:54:45Z","ServerKey":"us63"},{"ID":4832,"VillageID":9694,"NewOwnerID":848955032,"NewTribeID":207,"OldOwnerID":848953477,"OldTribeID":229,"Points":1133,"CreatedAt":"2023-02-20T21:09:19Z","ServerKey":"us63"},{"ID":4833,"VillageID":2375,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":396,"CreatedAt":"2023-02-20T21:11:48Z","ServerKey":"us63"},{"ID":4834,"VillageID":2095,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-20T21:30:55Z","ServerKey":"us63"},{"ID":4835,"VillageID":6036,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":218304,"OldTribeID":0,"Points":7125,"CreatedAt":"2023-02-20T21:38:54Z","ServerKey":"us63"},{"ID":4836,"VillageID":5314,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-20T21:41:09Z","ServerKey":"us63"},{"ID":4837,"VillageID":357,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-20T21:45:43Z","ServerKey":"us63"},{"ID":4838,"VillageID":661,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-20T21:50:45Z","ServerKey":"us63"},{"ID":4839,"VillageID":1453,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-20T21:55:20Z","ServerKey":"us63"},{"ID":4840,"VillageID":8918,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-20T21:57:02Z","ServerKey":"us63"},{"ID":4841,"VillageID":7795,"NewOwnerID":787899,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-02-20T21:57:16Z","ServerKey":"us63"},{"ID":4842,"VillageID":1605,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-20T22:04:04Z","ServerKey":"us63"},{"ID":4843,"VillageID":8355,"NewOwnerID":848954607,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-20T22:05:58Z","ServerKey":"us63"},{"ID":4844,"VillageID":8764,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848930230,"OldTribeID":209,"Points":5939,"CreatedAt":"2023-02-20T22:08:06Z","ServerKey":"us63"},{"ID":4845,"VillageID":2172,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":487,"CreatedAt":"2023-02-20T22:08:28Z","ServerKey":"us63"},{"ID":4846,"VillageID":3423,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-20T22:12:46Z","ServerKey":"us63"},{"ID":4847,"VillageID":3121,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-20T22:16:04Z","ServerKey":"us63"},{"ID":4848,"VillageID":2949,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-20T22:21:32Z","ServerKey":"us63"},{"ID":4849,"VillageID":1814,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":443,"CreatedAt":"2023-02-20T22:39:02Z","ServerKey":"us63"},{"ID":4850,"VillageID":3558,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":66,"Points":4732,"CreatedAt":"2023-02-20T22:42:51Z","ServerKey":"us63"},{"ID":4851,"VillageID":3558,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":790183,"OldTribeID":138,"Points":4732,"CreatedAt":"2023-02-20T22:42:51Z","ServerKey":"us63"},{"ID":4852,"VillageID":4367,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":7536,"OldTribeID":119,"Points":768,"CreatedAt":"2023-02-20T22:45:13Z","ServerKey":"us63"},{"ID":4853,"VillageID":4241,"NewOwnerID":848954776,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-20T22:46:03Z","ServerKey":"us63"},{"ID":4854,"VillageID":1737,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-20T22:49:10Z","ServerKey":"us63"},{"ID":4855,"VillageID":6621,"NewOwnerID":848954201,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-20T22:49:25Z","ServerKey":"us63"},{"ID":4856,"VillageID":7312,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-20T23:02:59Z","ServerKey":"us63"},{"ID":4857,"VillageID":1369,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":554,"CreatedAt":"2023-02-20T23:13:22Z","ServerKey":"us63"},{"ID":4858,"VillageID":1536,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":365,"CreatedAt":"2023-02-20T23:15:34Z","ServerKey":"us63"},{"ID":4859,"VillageID":8686,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-20T23:20:31Z","ServerKey":"us63"},{"ID":4860,"VillageID":4525,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-20T23:24:20Z","ServerKey":"us63"},{"ID":4861,"VillageID":4903,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-20T23:27:22Z","ServerKey":"us63"},{"ID":4862,"VillageID":2608,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-20T23:49:50Z","ServerKey":"us63"},{"ID":4863,"VillageID":625,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":447,"CreatedAt":"2023-02-20T23:51:09Z","ServerKey":"us63"},{"ID":4864,"VillageID":394,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":459,"CreatedAt":"2023-02-20T23:56:14Z","ServerKey":"us63"},{"ID":4865,"VillageID":113,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-20T23:56:58Z","ServerKey":"us63"},{"ID":4866,"VillageID":5301,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-21T00:02:23Z","ServerKey":"us63"},{"ID":4867,"VillageID":8325,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-21T00:06:44Z","ServerKey":"us63"},{"ID":4868,"VillageID":3957,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-21T00:09:11Z","ServerKey":"us63"},{"ID":4869,"VillageID":1973,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-21T00:09:45Z","ServerKey":"us63"},{"ID":4870,"VillageID":3826,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-21T00:15:22Z","ServerKey":"us63"},{"ID":4871,"VillageID":2243,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-21T00:15:43Z","ServerKey":"us63"},{"ID":4872,"VillageID":8718,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-21T00:16:21Z","ServerKey":"us63"},{"ID":4873,"VillageID":3808,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-21T00:16:39Z","ServerKey":"us63"},{"ID":4874,"VillageID":960,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":299,"CreatedAt":"2023-02-21T00:18:21Z","ServerKey":"us63"},{"ID":4875,"VillageID":866,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-21T00:18:36Z","ServerKey":"us63"},{"ID":4876,"VillageID":1888,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":672,"CreatedAt":"2023-02-21T00:25:27Z","ServerKey":"us63"},{"ID":4877,"VillageID":2079,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-21T00:34:04Z","ServerKey":"us63"},{"ID":4878,"VillageID":537,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-21T00:41:19Z","ServerKey":"us63"},{"ID":4879,"VillageID":6293,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-21T00:56:43Z","ServerKey":"us63"},{"ID":4880,"VillageID":3686,"NewOwnerID":848952556,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":389,"CreatedAt":"2023-02-21T00:59:32Z","ServerKey":"us63"},{"ID":4881,"VillageID":2475,"NewOwnerID":785871,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":392,"CreatedAt":"2023-02-21T01:01:38Z","ServerKey":"us63"},{"ID":4882,"VillageID":5162,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-21T01:02:25Z","ServerKey":"us63"},{"ID":4883,"VillageID":902,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-21T01:17:34Z","ServerKey":"us63"},{"ID":4884,"VillageID":6626,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848955166,"OldTribeID":0,"Points":1059,"CreatedAt":"2023-02-21T01:17:54Z","ServerKey":"us63"},{"ID":4885,"VillageID":5175,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-21T01:20:53Z","ServerKey":"us63"},{"ID":4886,"VillageID":2712,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":426,"CreatedAt":"2023-02-21T01:24:46Z","ServerKey":"us63"},{"ID":4887,"VillageID":4009,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-21T01:30:43Z","ServerKey":"us63"},{"ID":4888,"VillageID":1356,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-21T01:32:09Z","ServerKey":"us63"},{"ID":4889,"VillageID":4079,"NewOwnerID":375649,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-21T01:35:02Z","ServerKey":"us63"},{"ID":4890,"VillageID":2043,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-21T01:35:59Z","ServerKey":"us63"},{"ID":4891,"VillageID":2271,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":451,"CreatedAt":"2023-02-21T01:54:17Z","ServerKey":"us63"},{"ID":4892,"VillageID":66,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1772,"CreatedAt":"2023-02-21T01:56:51Z","ServerKey":"us63"},{"ID":4893,"VillageID":1474,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-21T02:12:14Z","ServerKey":"us63"},{"ID":4894,"VillageID":2874,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-21T02:21:28Z","ServerKey":"us63"},{"ID":4895,"VillageID":3438,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-21T02:24:19Z","ServerKey":"us63"},{"ID":4896,"VillageID":5940,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-21T02:33:00Z","ServerKey":"us63"},{"ID":4897,"VillageID":5940,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":174,"CreatedAt":"2023-02-21T02:33:00Z","ServerKey":"us63"},{"ID":4898,"VillageID":381,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":587894,"OldTribeID":48,"Points":4641,"CreatedAt":"2023-02-21T02:50:24Z","ServerKey":"us63"},{"ID":4899,"VillageID":25,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-21T02:50:52Z","ServerKey":"us63"},{"ID":4900,"VillageID":7015,"NewOwnerID":848932635,"NewTribeID":198,"OldOwnerID":334822,"OldTribeID":0,"Points":3458,"CreatedAt":"2023-02-21T02:51:34Z","ServerKey":"us63"},{"ID":4901,"VillageID":2938,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-21T02:52:55Z","ServerKey":"us63"},{"ID":4902,"VillageID":4066,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-21T03:10:21Z","ServerKey":"us63"},{"ID":4903,"VillageID":2447,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":456,"CreatedAt":"2023-02-21T03:18:58Z","ServerKey":"us63"},{"ID":4904,"VillageID":2777,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-21T03:24:15Z","ServerKey":"us63"},{"ID":4905,"VillageID":3035,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":382,"CreatedAt":"2023-02-21T03:24:50Z","ServerKey":"us63"},{"ID":4906,"VillageID":2002,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-21T03:34:25Z","ServerKey":"us63"},{"ID":4907,"VillageID":5940,"NewOwnerID":742669,"NewTribeID":91,"OldOwnerID":171766,"OldTribeID":33,"Points":174,"CreatedAt":"2023-02-21T03:34:44Z","ServerKey":"us63"},{"ID":4908,"VillageID":2832,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":435,"CreatedAt":"2023-02-21T03:45:08Z","ServerKey":"us63"},{"ID":4909,"VillageID":6009,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-21T03:46:01Z","ServerKey":"us63"},{"ID":4910,"VillageID":3120,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-21T03:48:32Z","ServerKey":"us63"},{"ID":4911,"VillageID":6392,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-21T04:00:57Z","ServerKey":"us63"},{"ID":4912,"VillageID":6025,"NewOwnerID":848954655,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-21T04:12:40Z","ServerKey":"us63"},{"ID":4913,"VillageID":7066,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":919,"CreatedAt":"2023-02-21T04:16:11Z","ServerKey":"us63"},{"ID":4914,"VillageID":869,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-21T04:26:19Z","ServerKey":"us63"},{"ID":4915,"VillageID":2201,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-21T04:37:07Z","ServerKey":"us63"},{"ID":4916,"VillageID":5402,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-21T04:38:37Z","ServerKey":"us63"},{"ID":4917,"VillageID":9629,"NewOwnerID":284001,"NewTribeID":216,"OldOwnerID":848955431,"OldTribeID":0,"Points":658,"CreatedAt":"2023-02-21T04:39:29Z","ServerKey":"us63"},{"ID":4918,"VillageID":4344,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":389,"CreatedAt":"2023-02-21T04:42:22Z","ServerKey":"us63"},{"ID":4919,"VillageID":4352,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-21T04:49:58Z","ServerKey":"us63"},{"ID":4920,"VillageID":3727,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":356,"CreatedAt":"2023-02-21T04:56:38Z","ServerKey":"us63"},{"ID":4921,"VillageID":4093,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848941569,"OldTribeID":219,"Points":9625,"CreatedAt":"2023-02-21T05:00:00Z","ServerKey":"us63"},{"ID":4922,"VillageID":3824,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848941569,"OldTribeID":219,"Points":5823,"CreatedAt":"2023-02-21T05:00:00Z","ServerKey":"us63"},{"ID":4923,"VillageID":6603,"NewOwnerID":848884869,"NewTribeID":209,"OldOwnerID":848943156,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-21T05:00:19Z","ServerKey":"us63"},{"ID":4924,"VillageID":3799,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-21T05:03:41Z","ServerKey":"us63"},{"ID":4925,"VillageID":4452,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":7536,"OldTribeID":119,"Points":4151,"CreatedAt":"2023-02-21T05:16:14Z","ServerKey":"us63"},{"ID":4926,"VillageID":8044,"NewOwnerID":739630,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-21T05:21:00Z","ServerKey":"us63"},{"ID":4927,"VillageID":1352,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":686,"CreatedAt":"2023-02-21T05:30:08Z","ServerKey":"us63"},{"ID":4928,"VillageID":9171,"NewOwnerID":848934867,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-21T05:32:19Z","ServerKey":"us63"},{"ID":4929,"VillageID":1483,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-21T05:33:45Z","ServerKey":"us63"},{"ID":4930,"VillageID":7287,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-21T05:36:14Z","ServerKey":"us63"},{"ID":4931,"VillageID":2946,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":437,"CreatedAt":"2023-02-21T05:40:00Z","ServerKey":"us63"},{"ID":4932,"VillageID":6397,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-21T05:47:04Z","ServerKey":"us63"},{"ID":4933,"VillageID":9158,"NewOwnerID":848955563,"NewTribeID":185,"OldOwnerID":848955598,"OldTribeID":0,"Points":778,"CreatedAt":"2023-02-21T05:53:56Z","ServerKey":"us63"}] \ No newline at end of file diff --git a/internal/service/testdata/syncennoblements/stage1/us63.tribalwars.us/map/conquer_extended.txt b/internal/service/testdata/syncennoblements/stage1/us63.tribalwars.us/map/conquer_extended.txt new file mode 100644 index 0000000..61ac8bd --- /dev/null +++ b/internal/service/testdata/syncennoblements/stage1/us63.tribalwars.us/map/conquer_extended.txt @@ -0,0 +1,4933 @@ +1759,1673704849,848929146,0,0,30,51 +594,1673727012,848943607,0,0,86,51 +2217,1673729273,848931274,0,0,20,45 +59,1673746932,848936921,0,0,6,83 +1825,1673752839,848929146,0,0,30,91 +1756,1673769240,848943607,0,0,86,49 +1401,1673793042,848936926,0,0,6,45 +2454,1673799648,848931274,0,0,20,53 +3468,1673802908,776073,0,0,74,45 +2061,1673810636,398664,0,0,33,46 +2969,1673824709,848951176,0,0,20,48 +1673,1673832073,848951549,0,0,12,55 +232,1673838485,780354,0,0,11,70 +2301,1673839250,213,0,0,61,95 +1868,1673840135,276237,0,0,48,56 +1340,1673845315,848929146,0,0,30,55 +2547,1673849962,848931274,0,0,20,53 +1912,1673858666,398664,0,0,33,62 +2785,1673865755,848931274,0,0,20,53 +1694,1673871678,344518,0,0,20,49 +2469,1673874557,213,750685,76,61,1458 +768,1673876285,587894,0,0,48,57 +1582,1673880843,848953926,0,0,2,83 +2023,1673880908,848916830,848945637,0,20,523 +2736,1673883044,213,0,0,61,49 +1791,1673887979,848929146,0,0,30,74 +3597,1673894338,616498,0,0,48,53 +2407,1673897917,398664,0,0,33,73 +641,1673898555,848910736,0,0,24,63 +727,1673902966,848947790,0,0,48,75 +527,1673908881,848954266,0,0,35,53 +499,1673908976,848953926,0,0,2,102 +571,1673913271,848943607,0,0,86,80 +3702,1673913807,616498,0,0,48,48 +530,1673916364,276237,0,0,48,80 +2761,1673918300,693802,0,0,20,58 +396,1673920859,50103,848952345,7,6,414 +737,1673922726,848936921,357794,29,6,1059 +857,1673922912,743702,0,0,30,89 +1563,1673923760,848936921,0,0,6,54 +1520,1673929300,769838,0,0,6,87 +715,1673930259,848951176,0,0,20,924 +3249,1673931944,693802,0,0,20,82 +3260,1673933005,848953068,0,0,85,45 +319,1673933037,587894,0,0,48,103 +1322,1673934396,848916830,848945063,0,20,561 +228,1673936105,848936921,0,0,6,53 +3124,1673938222,848953068,0,0,85,67 +1074,1673939455,13512,0,0,20,68 +1573,1673946056,769838,0,0,6,1633 +2065,1673947869,780375,0,0,11,87 +487,1673964460,780354,0,0,11,72 +2555,1673965252,848949493,0,0,36,53 +2418,1673973351,723093,0,0,14,63 +778,1673973615,50103,0,0,6,74 +1165,1673973653,344518,848942808,0,20,547 +2198,1673984605,780375,0,0,11,81 +860,1673987831,160994,0,0,24,92 +1269,1673992367,848954312,848943202,0,27,505 +1009,1673993287,701192,0,0,25,62 +1150,1673995435,463920,0,0,12,63 +1228,1673999767,848948254,0,0,6,66 +1072,1674002290,848936929,848929831,0,6,1329 +15,1674002911,848953950,0,0,6,91 +2656,1674004725,693802,0,0,20,69 +1487,1674005729,848910736,0,0,24,73 +1364,1674006234,766625,0,0,6,70 +1726,1674012391,344518,848953944,0,20,716 +2366,1674029469,723093,0,0,14,60 +591,1674029580,693887,848951879,99,48,1341 +1826,1674036462,693887,848954331,17,48,1032 +368,1674038142,848949948,0,0,30,72 +3141,1674039019,616498,848943226,0,48,861 +860,1674040344,848951854,160994,24,6,256 +124,1674042002,848951061,0,0,0,80 +2003,1674044702,848952236,0,0,74,84 +496,1674047266,693887,0,0,48,71 +1257,1674050531,782322,848943112,0,20,533 +747,1674050953,848949948,391948,14,30,813 +1732,1674052123,848954208,0,0,2,94 +4051,1674053797,848947293,0,0,85,42 +2066,1674055448,616498,848945602,0,48,558 +1136,1674059072,848952032,0,0,25,73 +1133,1674060787,735108,0,0,20,58 +1380,1674062638,761474,0,0,33,77 +2749,1674065581,848954266,848954603,17,35,1273 +1856,1674067349,848943607,0,0,6,71 +3021,1674074047,699876,0,0,61,86 +4089,1674074920,848947293,0,0,85,44 +2513,1674076713,723093,0,0,14,61 +936,1674077928,344518,780648,0,20,1143 +634,1674078130,848936926,848951477,56,6,1237 +382,1674083147,13512,0,0,20,66 +1535,1674083313,693887,0,0,48,118 +1554,1674084875,848936926,848952576,56,6,412 +4005,1674085534,848947293,0,0,85,35 +29,1674087242,735108,0,0,20,49 +980,1674089432,848952032,0,0,25,58 +3284,1674089475,616498,0,0,48,58 +3420,1674089768,746070,0,0,74,53 +3081,1674096260,554600,0,0,30,84 +328,1674096961,769838,0,0,6,79 +1214,1674097868,848933579,0,0,6,90 +372,1674101213,463920,0,0,12,64 +1319,1674102354,848907165,0,0,12,597 +997,1674105662,782322,0,0,20,79 +2041,1674109980,552694,0,0,48,88 +1204,1674110249,848936921,0,0,6,571 +223,1674111556,848951549,753340,87,12,705 +1957,1674114342,699876,848945594,0,61,597 +1195,1674114355,848936921,0,0,6,557 +1837,1674117494,848941909,0,0,6,92 +1852,1674118335,761474,0,0,33,84 +2046,1674121163,264792,848947367,0,64,563 +817,1674128516,463920,668275,0,12,244 +3187,1674132154,848890745,848931394,11,0,1408 +894,1674137397,848943607,0,0,6,65 +1443,1674142043,701261,0,0,25,125 +2653,1674142091,787586,0,0,74,149 +2577,1674144671,552694,0,0,48,66 +1753,1674144988,848948254,0,0,6,73 +3303,1674146760,848953401,848954656,72,64,382 +655,1674148392,848953209,0,0,12,78 +1173,1674149060,848952288,0,0,48,55 +831,1674149938,780354,0,0,11,65 +595,1674153121,848949948,848952221,0,30,1093 +141,1674154521,230556,0,0,48,93 +2502,1674154765,848947757,0,0,74,90 +667,1674154831,587894,848952121,32,48,1272 +883,1674159935,848941831,0,0,48,114 +2552,1674160169,787586,0,0,74,69 +2823,1674160520,787586,0,0,74,59 +2772,1674160535,848953207,0,0,91,89 +329,1674161688,848936921,160994,24,6,3516 +781,1674162826,848954266,0,0,35,93 +1859,1674164674,13512,0,0,20,78 +2878,1674165035,699876,0,0,61,62 +1840,1674166476,735108,0,0,20,101 +2263,1674169382,761474,0,0,33,59 +3118,1674171239,785871,0,0,41,79 +2745,1674171255,848952932,0,0,85,62 +579,1674173354,344518,848943381,87,20,1193 +1006,1674174492,701192,0,0,25,131 +3040,1674180175,787586,0,0,74,79 +590,1674180763,848951434,0,0,25,99 +2000,1674182002,848954410,0,0,2,87 +87,1674182384,848948254,848954052,4,6,1112 +2403,1674183886,411608,848954065,0,64,578 +1454,1674185995,848936921,848950197,4,6,1248 +322,1674187328,848945433,0,0,105,97 +2193,1674187804,848890745,848954078,25,0,1580 +1950,1674188877,848934532,738010,49,105,629 +178,1674190216,848881759,0,0,30,53 +2025,1674190969,552694,0,0,48,84 +125,1674192106,13512,0,0,20,573 +993,1674193728,848954240,0,0,6,85 +1846,1674195394,848951549,0,0,12,97 +1426,1674198829,848881759,0,0,30,75 +513,1674201694,848954361,0,0,30,131 +3089,1674211545,848954537,0,0,58,78 +78,1674213668,848947790,0,0,6,1271 +1147,1674214430,171766,848942307,76,33,3255 +1596,1674215845,463920,0,0,12,99 +3278,1674219159,587894,719750,71,48,743 +331,1674220158,587894,0,0,48,142 +2458,1674222513,213,0,0,61,66 +1174,1674224170,151032,848942811,0,20,544 +1831,1674225857,13512,0,0,20,81 +1695,1674228524,780354,848953826,0,11,1369 +2908,1674228796,848951960,848949716,0,25,775 +641,1674235054,848953950,848910736,24,6,378 +1003,1674236395,848945433,0,0,105,85 +2609,1674237263,572558,0,0,48,111 +524,1674240120,848916830,775955,87,20,2529 +70,1674245080,848941909,0,0,6,1699 +3045,1674246419,171766,776810,76,33,1666 +1739,1674246943,735108,0,0,20,88 +569,1674247405,848934532,848940914,49,105,863 +791,1674249035,848940894,0,0,11,155 +2169,1674251955,503636,848948871,5,64,623 +2210,1674254672,171766,848944274,61,33,1623 +1101,1674255442,848881759,0,0,30,74 +1022,1674258710,848953950,848910736,24,6,549 +3296,1674261657,264792,848954655,0,64,832 +1674,1674262178,848953964,848953656,0,2,751 +1223,1674262466,572558,848943091,0,48,790 +386,1674263763,230556,0,0,48,494 +2487,1674264609,848890745,0,0,0,82 +1222,1674268558,779484,0,0,48,138 +211,1674269346,151032,0,0,20,80 +2235,1674270445,848929097,848949135,0,0,405 +851,1674272222,848951061,735480,0,20,1038 +1183,1674273758,848947790,0,0,6,107 +1354,1674277320,767507,0,0,0,138 +3472,1674279286,780325,848931393,104,11,2954 +2691,1674281335,848952875,0,0,85,72 +2012,1674284474,744645,0,0,30,77 +3681,1674284931,794964,742669,91,0,1261 +39,1674289562,848953950,0,0,6,104 +2891,1674291151,785504,848943095,0,50,983 +2211,1674291921,654379,0,0,64,82 +2409,1674293178,676986,848954494,0,64,550 +604,1674293428,848911019,0,0,12,94 +1539,1674295924,718150,0,0,86,90 +977,1674296459,848911019,0,0,12,118 +3229,1674300199,572558,848954537,6,48,4211 +1560,1674304255,848883123,0,0,12,131 +283,1674307949,848953068,848951306,30,85,3444 +2325,1674311087,848943740,0,0,58,103 +1390,1674312096,587894,0,0,48,76 +1880,1674314367,848951549,848954516,22,12,1232 +1487,1674314651,848953950,0,0,6,181 +444,1674316249,744645,0,0,30,118 +2220,1674317665,213,0,0,61,86 +1600,1674319954,848954361,848953047,111,30,846 +773,1674320015,415671,554600,30,85,3682 +546,1674320324,848951061,0,0,20,65 +90,1674321775,848936921,0,0,6,2271 +1450,1674321884,693887,0,0,48,130 +77,1674323722,848954196,0,0,35,110 +1383,1674326719,701261,0,0,25,103 +1388,1674329707,276237,0,0,48,687 +3628,1674331714,272255,0,0,86,113 +3446,1674331755,503636,848954681,72,64,812 +645,1674332088,848954190,0,0,35,130 +1819,1674332468,732810,848954322,27,48,1770 +3075,1674336058,171766,0,0,33,94 +1246,1674341078,525543,848943109,99,58,487 +239,1674341264,772572,0,0,58,108 +3151,1674342466,411608,0,0,64,88 +2464,1674345841,676986,0,0,64,103 +108,1674345940,848881759,0,0,30,119 +4061,1674348146,848954140,0,0,85,52 +3568,1674348186,750685,848937628,0,76,1058 +1318,1674350195,779484,0,0,48,134 +1247,1674350274,744645,0,0,30,77 +169,1674350386,50103,848951854,0,6,4617 +2485,1674351178,264792,848949196,0,64,567 +2713,1674353575,729178,0,0,48,124 +2478,1674355396,848949493,0,0,36,133 +860,1674358430,848936921,848951854,0,6,697 +1960,1674359957,741238,848945593,0,64,541 +1626,1674366176,718150,0,0,86,76 +2603,1674366274,848943092,723093,14,20,3674 +1890,1674369440,744645,0,0,30,127 +1374,1674371395,848951392,0,0,12,113 +148,1674372910,374049,0,0,30,69 +598,1674374107,848954361,848953097,42,30,854 +2329,1674379500,848954504,848941733,0,2,443 +3902,1674380409,848951632,848952530,0,105,1818 +473,1674380618,276237,0,0,48,72 +313,1674382402,50103,0,0,6,93 +1849,1674382672,848907165,0,0,12,116 +3815,1674384082,794964,0,0,61,1639 +1630,1674384107,848953926,848953299,32,2,2428 +788,1674384949,848949948,0,0,30,82 +1158,1674390882,848954368,0,0,64,640 +2709,1674391354,780485,0,0,11,117 +1347,1674391361,848954312,0,0,2,86 +2830,1674392796,785504,755127,0,86,350 +443,1674394652,848911019,0,0,12,116 +4507,1674397303,848954762,0,0,14,75 +1142,1674398041,848914361,0,0,20,102 +3453,1674398111,780325,848954682,104,11,1862 +1015,1674399793,649035,0,0,74,69 +1802,1674399878,848883123,0,0,12,98 +2463,1674400741,848949493,0,0,36,98 +246,1674401640,766625,848953972,13,6,1948 +2723,1674402574,213,0,0,61,93 +538,1674404124,768825,0,0,105,72 +1828,1674404835,151032,0,0,20,116 +2592,1674405212,572558,0,0,48,153 +2072,1674406474,718150,0,0,86,114 +2756,1674409018,848949493,0,0,36,93 +271,1674409976,848943092,848947928,14,20,1776 +1078,1674411843,848953068,848931150,46,85,1778 +1078,1674411844,848953068,848953068,85,85,1754 +316,1674415360,751946,0,0,22,85 +3373,1674416113,616498,848954669,0,48,3108 +408,1674416402,766625,453833,0,6,1060 +2850,1674418055,848954008,0,0,2,121 +1593,1674419001,848954208,0,0,2,137 +1795,1674421324,848941179,0,0,35,126 +3252,1674422945,787586,0,0,74,107 +3252,1674423248,848953965,787586,74,2,107 +3767,1674423617,746070,0,0,74,57 +392,1674425402,848951434,0,0,25,98 +683,1674426253,276237,0,0,48,95 +1201,1674427282,782322,0,0,20,675 +2163,1674427430,848954221,848949246,0,105,1071 +2256,1674428850,848951321,0,0,25,84 +3378,1674433257,716656,0,0,85,90 +3112,1674433397,848951632,848953551,0,105,1056 +3184,1674434788,153367,848950808,46,85,664 +46,1674439050,766625,0,0,6,100 +1862,1674439755,160994,0,0,24,102 +730,1674441848,848914361,0,0,20,122 +2059,1674442972,627483,848945603,0,86,546 +1282,1674443403,768825,848943207,0,105,510 +1805,1674444343,848933579,0,0,6,131 +2842,1674445197,848947757,0,0,74,79 +3081,1674446497,410165,0,0,85,375 +1629,1674447749,848941831,0,0,48,83 +2992,1674448208,848953068,263554,83,85,1405 +233,1674449188,344518,848952095,12,20,2788 +1291,1674451364,751946,0,0,22,116 +1250,1674451623,848883123,848943110,0,12,531 +2705,1674453178,213,0,0,61,123 +1481,1674457383,509766,0,0,6,79 +2581,1674457976,503636,0,0,64,114 +4423,1674458251,792025,848940278,142,48,860 +1893,1674458986,848954366,0,0,2,120 +3257,1674460582,503636,848954653,72,64,722 +1530,1674460801,848943607,848952288,20,6,4103 +1173,1674460830,848947790,848952288,20,6,867 +847,1674463003,751946,0,0,22,101 +792,1674466424,848951549,597297,38,20,943 +837,1674466446,230556,0,0,48,94 +3171,1674467243,339555,848943251,0,74,930 +792,1674467889,848951549,848951549,20,20,919 +1418,1674469174,848883123,848949038,0,12,426 +2468,1674471332,848952236,0,0,74,123 +2848,1674471519,848945162,848954615,76,33,1751 +2850,1674472970,848951023,848954008,2,36,228 +2396,1674473965,741494,848888469,27,2,992 +1597,1674479022,848954437,848953039,22,12,517 +750,1674482104,848953964,0,0,2,105 +2367,1674484866,654379,0,0,64,73 +229,1674486234,13512,848952269,12,20,3769 +1021,1674488064,37720,0,0,24,138 +1237,1674489745,776842,0,0,105,71 +1083,1674491050,769838,0,0,6,114 +2884,1674491231,767834,0,0,105,117 +1207,1674492976,848951612,0,0,35,666 +1207,1674492977,848951612,848951612,35,35,642 +2384,1674493606,848953401,0,0,64,123 +3828,1674493707,794964,848953943,0,61,1114 +2276,1674495548,568,848942961,0,32,501 +288,1674496299,114434,0,0,61,112 +623,1674498835,848947790,0,0,6,119 +796,1674500333,509533,603825,58,6,1947 +2462,1674500369,848954006,848936911,142,2,2198 +1833,1674500378,848941831,0,0,48,118 +3074,1674500827,848929097,0,0,0,102 +753,1674500935,275322,0,0,12,133 +2456,1674502229,848949493,0,0,36,128 +2007,1674503522,848954700,848945687,0,32,567 +2209,1674504683,701261,0,0,25,87 +623,1674505819,509533,848947790,0,6,119 +202,1674506121,848949204,0,0,105,120 +2773,1674506804,848954140,743815,77,85,2021 +850,1674508734,848953670,0,0,12,121 +884,1674510304,848954312,766350,41,2,769 +1186,1674510329,848954354,0,0,105,131 +507,1674511085,780375,763299,50,11,903 +3218,1674511091,848945162,0,0,33,108 +2941,1674511095,848947757,0,0,74,166 +20,1674511611,848954240,0,0,6,99 +18,1674511747,772572,0,0,148,172 +2778,1674511986,785871,0,0,41,112 +2441,1674513163,213,0,0,61,75 +330,1674516476,459451,0,0,25,120 +1907,1674516908,848952236,0,0,74,123 +2607,1674517198,848954360,0,0,25,984 +4231,1674517817,848894236,0,0,76,64 +3615,1674518437,783836,848952309,0,0,1810 +2782,1674519721,848954015,0,0,2,106 +286,1674520411,848951392,551467,0,12,383 +658,1674520874,848947790,0,0,6,161 +3238,1674521046,848929352,0,0,146,137 +2481,1674521085,848950985,0,0,0,113 +2322,1674521594,741494,0,0,2,109 +2322,1674521594,741494,741494,2,2,109 +3564,1674522927,794964,0,0,61,121 +762,1674523217,780375,0,0,11,122 +2130,1674523507,848954611,848945685,0,32,572 +708,1674524993,848952270,288947,0,61,380 +2259,1674525066,848954410,0,0,2,112 +1740,1674526206,848953915,848953971,0,35,492 +2140,1674528108,744969,848945636,0,122,583 +3795,1674528460,848894236,0,0,76,795 +1384,1674528514,577132,0,0,12,102 +3367,1674529539,848954127,0,0,85,1304 +918,1674531480,848936926,772572,0,6,5435 +1725,1674531481,848952032,0,0,25,110 +186,1674531828,848951549,848953670,12,20,3378 +918,1674533004,848954266,848936926,6,35,5452 +918,1674533017,848954266,848954266,35,35,5428 +1410,1674536267,782322,0,0,20,131 +18,1674539761,848936929,772572,0,6,220 +3221,1674541948,716656,0,0,85,94 +858,1674542728,699876,742547,144,61,3094 +1102,1674543654,848945433,0,0,138,1421 +3834,1674546416,848954700,0,0,32,97 +32,1674547350,398664,0,0,33,121 +4633,1674549738,848952556,0,0,74,49 +1764,1674550714,718150,0,0,86,545 +19,1674551067,848936926,0,0,6,26 +3214,1674551754,848951176,0,0,138,80 +3356,1674551773,848951176,0,0,138,108 +1468,1674554605,415671,848951187,77,85,2917 +2151,1674560529,654379,0,0,64,123 +219,1674560963,13512,275322,12,20,2923 +854,1674562064,848907165,0,0,12,67 +2751,1674565254,848954008,0,0,2,99 +1692,1674567625,848954362,848953814,0,35,3053 +3445,1674568226,746070,0,0,74,115 +624,1674572046,616498,848943750,36,48,2676 +172,1674573624,848936921,0,0,6,1707 +2549,1674573710,213,0,0,61,123 +1438,1674574819,693887,0,0,48,109 +172,1674575048,848916830,848936921,6,20,1731 +172,1674575048,848916830,848916830,20,20,1731 +2494,1674577470,398664,0,0,33,152 +477,1674578057,848954366,0,0,2,120 +255,1674583154,848943607,0,0,6,135 +1160,1674584884,848936926,0,0,6,136 +1971,1674585540,848952236,0,0,74,132 +3180,1674585598,848951176,0,0,138,84 +1488,1674585882,485721,848951664,116,50,308 +1058,1674586161,743702,0,0,30,400 +3948,1674586617,580805,848954742,113,76,1391 +1442,1674587800,170853,848949344,0,30,2792 +582,1674589273,848954361,848946508,111,30,1835 +696,1674589735,848929146,149791,0,30,2187 +5785,1674590038,848951308,0,0,85,33 +5715,1674591144,848951308,0,0,85,33 +3417,1674591376,848954006,0,0,2,106 +1357,1674591474,848954428,0,0,20,101 +2422,1674591478,780375,0,0,11,142 +1071,1674591774,848914361,0,0,20,118 +467,1674592142,848952488,0,0,32,132 +198,1674593277,848949204,0,0,105,142 +1232,1674593692,848943607,0,0,6,537 +1599,1674593822,848954240,0,0,6,120 +1599,1674593822,848954240,848954240,6,6,120 +1599,1674593822,848954240,848954240,6,6,120 +2788,1674594413,848947757,0,0,74,106 +3725,1674594912,783836,0,0,0,65 +822,1674595082,848941909,0,0,6,120 +2415,1674595932,780375,0,0,11,114 +225,1674597509,848954266,0,0,35,117 +4180,1674598843,848953068,0,0,85,88 +2062,1674601706,848954138,848945639,0,64,558 +926,1674603087,848914361,0,0,20,80 +1944,1674603192,848909148,848948642,0,48,310 +312,1674604139,751946,0,0,22,133 +2430,1674604163,848951321,0,0,25,112 +553,1674606377,761474,0,0,33,134 +295,1674606813,848953046,0,0,0,124 +2432,1674609180,272255,848953333,36,48,2486 +3242,1674609215,741238,0,0,64,81 +3814,1674611343,410165,0,0,85,81 +3440,1674611565,786164,848938929,104,11,2871 +1034,1674611770,848929146,848913714,0,30,1512 +2752,1674615875,848952932,742615,0,85,1426 +4640,1674618637,848954762,0,0,119,70 +1915,1674622582,848941404,0,0,30,132 +751,1674624954,509533,0,0,6,1188 +1904,1674629296,848916830,743278,0,20,966 +1513,1674629994,848911019,0,0,12,126 +1434,1674630911,485721,0,0,50,122 +1153,1674633030,848951061,0,0,20,118 +2368,1674634045,848953401,0,0,64,77 +282,1674634724,50103,0,0,6,77 +2295,1674638249,398664,0,0,33,103 +659,1674642476,848953926,530862,32,2,2179 +1897,1674643687,848954312,374413,41,2,1383 +277,1674643912,848936926,0,0,6,156 +1621,1674644486,848954170,848953265,115,35,537 +385,1674645784,848936926,0,0,6,164 +2854,1674647288,693802,848950985,0,138,3650 +2854,1674647288,693802,693802,138,138,3650 +1279,1674649623,848948254,0,0,6,540 +3624,1674649984,627483,0,0,86,91 +2426,1674652680,741494,848954568,0,2,1598 +1806,1674652815,170853,848954290,61,30,2320 +3915,1674655264,848881027,848954738,0,53,170 +1598,1674656321,780947,0,0,3,127 +62,1674656738,780375,0,0,11,121 +1039,1674656999,374049,0,0,30,145 +5907,1674658054,848951308,0,0,85,30 +1245,1674659341,463920,0,0,20,99 +1884,1674662199,848929146,0,0,30,26 +4937,1674662925,848952875,848939177,0,85,1111 +361,1674663973,848914361,0,0,20,113 +924,1674664135,848951549,0,0,20,2149 +2845,1674664302,848948640,848954614,53,74,598 +1902,1674667843,848954609,0,0,50,108 +698,1674668680,767507,0,0,0,155 +3105,1674669938,848954555,848943612,0,91,720 +720,1674670229,848954312,0,0,2,136 +1978,1674670960,848954410,0,0,2,119 +848,1674671051,848927565,735360,22,138,2171 +4328,1674673979,848949093,848954805,0,65,342 +1225,1674674706,761474,0,0,33,160 +1398,1674676043,374049,0,0,30,187 +435,1674676301,50103,0,0,6,153 +2956,1674677240,848951023,848950286,36,86,2302 +1467,1674678456,848954199,0,0,35,141 +2045,1674679029,848953401,0,0,64,129 +3098,1674682616,627483,0,0,86,77 +3272,1674683541,754270,0,0,105,128 +237,1674684430,848953946,848950888,77,32,2009 +1235,1674684518,848936921,0,0,6,585 +2905,1674685296,795932,0,0,22,163 +554,1674686650,13512,848911019,12,20,5637 +240,1674686783,344518,848953209,0,20,2370 +4140,1674688620,580805,788487,0,76,1366 +275,1674689237,848936929,848953891,17,6,2690 +932,1674690437,848954196,0,0,35,129 +1068,1674691176,848910736,0,0,35,205 +2741,1674692587,795932,0,0,22,84 +4265,1674692608,848951632,848954794,0,105,1875 +36,1674692775,848953950,0,0,6,127 +2269,1674693004,213,0,0,61,136 +1991,1674693593,741494,0,0,2,72 +1378,1674694136,848951549,0,0,20,549 +2558,1674694537,785504,0,0,86,111 +1391,1674694952,151032,0,0,20,714 +1705,1674697755,848935714,848953912,0,4,2362 +2865,1674698330,848925398,0,0,42,159 +3220,1674698740,848929352,0,0,146,117 +1226,1674699789,848943607,0,0,6,554 +1316,1674701550,848883123,848945039,14,12,2536 +2345,1674701720,848953946,848941749,0,32,556 +3267,1674701901,848890745,781094,30,0,5081 +3016,1674702547,848954604,848939988,62,105,477 +1949,1674702731,848941404,0,0,30,117 +1341,1674703612,848927565,848946221,66,138,2126 +2740,1674703801,848951023,619293,36,86,2021 +684,1674704456,848954090,0,0,105,134 +2918,1674706635,848947757,0,0,74,96 +3710,1674706894,848881027,712365,0,53,297 +652,1674709340,230556,0,0,48,138 +949,1674710119,848953950,0,0,6,123 +648,1674711200,848953950,0,0,6,126 +1151,1674712833,848947314,848942499,0,20,316 +3359,1674713350,790183,0,0,138,115 +5250,1674715020,848951308,0,0,85,84 +4274,1674716316,262676,0,0,0,87 +799,1674716833,693802,605760,0,138,3744 +278,1674717839,848954240,0,0,6,95 +189,1674719289,848952032,0,0,25,125 +226,1674720439,13512,848951842,12,20,3400 +1013,1674720842,848912363,0,0,151,1949 +3037,1674721202,848852584,0,0,25,149 +346,1674722553,848953950,0,0,6,161 +1669,1674722731,848933579,0,0,6,156 +1886,1674722878,780375,0,0,11,150 +4083,1674723000,348613,0,0,61,98 +3935,1674725066,262676,0,0,0,120 +2792,1674726464,616498,848954609,50,48,2608 +3312,1674730911,750685,0,0,76,140 +930,1674731039,170853,776842,105,30,4175 +1329,1674731059,848952270,0,0,61,588 +536,1674731552,398664,0,0,33,160 +3387,1674734720,848952403,0,0,66,126 +557,1674736510,848936929,848913779,17,6,1976 +1612,1674737009,701192,0,0,25,99 +1146,1674740585,848912363,0,0,151,137 +3433,1674741376,848953962,589825,0,27,10316 +666,1674741476,848927565,0,0,138,120 +3542,1674741654,348613,0,0,61,112 +2383,1674743459,213,0,0,61,149 +3926,1674743819,415671,0,0,85,84 +1925,1674744033,729548,780353,66,65,622 +1767,1674745521,374049,0,0,30,215 +736,1674748013,848953915,0,0,35,89 +879,1674748865,151032,0,0,20,143 +2574,1674749643,792025,0,0,48,155 +1494,1674749897,848953926,848951817,32,2,2606 +1285,1674750417,848881759,0,0,30,614 +1504,1674753515,848914361,0,0,20,135 +1988,1674753941,848954368,0,0,64,157 +1013,1674754203,848936921,848912363,151,6,2024 +875,1674754697,848929146,0,0,30,110 +2237,1674754869,153367,0,0,85,148 +2285,1674755652,571769,0,0,74,120 +587,1674757848,848952324,0,0,4,143 +503,1674758484,780947,0,0,3,127 +253,1674759263,848951061,304576,14,20,2568 +2010,1674760429,785504,848942994,0,86,644 +3433,1674760961,848954006,848953962,27,2,10292 +2159,1674761310,848954555,848943096,0,91,618 +828,1674762700,767507,0,0,0,130 +103,1674762746,761474,0,0,33,151 +3811,1674763133,272255,0,0,48,95 +3127,1674766091,785871,0,0,41,145 +2859,1674767518,848925398,0,0,42,96 +1178,1674768591,848951176,0,0,138,590 +3657,1674769560,750685,848919274,0,76,947 +2473,1674769759,848948640,0,0,74,331 +681,1674770569,463920,0,0,20,129 +3363,1674771831,848953207,0,0,61,120 +3198,1674772006,848953270,0,0,0,124 +604,1674773738,13512,848911019,12,20,1305 +4536,1674773768,848952450,0,0,74,69 +1918,1674774456,848941404,0,0,30,152 +3400,1674774703,848954594,0,0,85,152 +183,1674775068,344518,0,0,20,3302 +3030,1674775246,848952960,0,0,61,149 +3263,1674776400,848951962,0,0,97,111 +2489,1674777032,729178,848954571,36,48,656 +3375,1674779154,398664,0,0,33,155 +1793,1674779598,848953964,848954223,32,2,2813 +543,1674780612,170853,0,0,30,171 +2566,1674780679,785504,848949508,36,86,2188 +1655,1674781616,509533,0,0,6,96 +173,1674781712,848910736,0,0,35,148 +3148,1674782328,693802,0,0,138,1210 +1299,1674783600,848916830,0,0,20,117 +243,1674783776,848945118,848937060,13,30,3051 +2636,1674783887,789838,0,0,66,131 +5024,1674784265,580805,0,0,76,71 +4687,1674786026,848951308,0,0,85,78 +2528,1674788403,848952932,0,0,85,136 +2373,1674789245,848954607,848949114,0,32,589 +2302,1674789407,848953309,848940746,0,32,488 +3089,1674791365,572558,848954537,36,48,1545 +4301,1674792764,270449,0,0,65,102 +2369,1674793079,848890745,848917443,122,0,5598 +306,1674795380,525543,0,0,15,138 +1288,1674797263,848947314,0,0,20,175 +252,1674797828,848916830,0,0,20,123 +260,1674797982,848951061,764159,105,20,2745 +2213,1674798430,744969,0,0,122,121 +2898,1674798439,848949493,423944,0,86,1075 +2365,1674798987,848953937,848949191,0,74,614 +4455,1674799078,782308,848954824,113,76,1165 +1477,1674799562,732810,0,0,48,85 +2719,1674802361,785504,0,0,86,115 +4284,1674803347,790183,0,0,138,92 +2035,1674803530,620806,848949101,0,97,406 +2129,1674803861,756854,0,0,25,194 +1921,1674804814,848954366,0,0,2,99 +3145,1674805009,782308,848943232,0,76,1051 +3591,1674805078,410165,0,0,85,129 +3936,1674805391,693887,469425,15,48,1829 +2058,1674805755,848954221,0,0,105,162 +871,1674807011,848951549,754636,22,20,3539 +2205,1674807061,848952875,0,0,85,149 +735,1674808473,848954240,0,0,6,107 +3072,1674809041,792025,0,0,48,148 +3584,1674811759,348613,0,0,61,112 +1704,1674812325,769838,0,0,6,145 +1377,1674812372,780375,0,0,11,114 +1377,1674812422,780375,780375,11,11,114 +2821,1674813862,568,848939549,42,32,3640 +2821,1674813862,568,568,32,32,3640 +2359,1674813864,398664,0,0,33,142 +1405,1674819854,377337,848949034,0,3,549 +3398,1674820553,848890745,848951960,97,0,3474 +2696,1674822362,785871,0,0,41,156 +3725,1674822916,415671,783836,0,85,453 +3735,1674824290,848952556,0,0,74,116 +1943,1674824400,616498,0,0,48,107 +1292,1674825616,848943607,0,0,6,646 +4561,1674826033,848951632,706486,99,105,1080 +4247,1674826404,375649,0,0,32,102 +1130,1674826610,848929146,0,0,30,3706 +2534,1674826977,848954008,0,0,2,141 +2588,1674827259,848954594,0,0,85,145 +1105,1674828600,766625,848935714,4,6,3586 +2780,1674829213,785504,0,0,86,199 +2780,1674829225,785504,785504,86,86,199 +3099,1674829272,848949493,848952889,0,86,1301 +4836,1674829804,848954208,848954331,17,2,1167 +1460,1674830967,848954354,848950783,0,105,549 +721,1674832752,13512,0,0,20,156 +4019,1674834553,848954732,0,0,61,114 +825,1674835302,170853,0,0,30,129 +1098,1674835681,741494,0,0,2,172 +1701,1674836974,649035,0,0,74,150 +2887,1674837495,780485,0,0,11,147 +2320,1674838459,351605,848949115,0,91,570 +3355,1674838897,348613,0,0,61,130 +1192,1674839971,848936921,0,0,6,676 +3455,1674840302,848952960,0,0,61,117 +2906,1674840578,787586,0,0,74,120 +2448,1674840677,848954015,0,0,2,123 +2434,1674840948,782908,0,0,32,142 +377,1674841048,848954208,0,0,2,133 +377,1674841057,848954208,848954208,2,2,133 +73,1674841982,848947790,0,0,6,141 +900,1674842612,848916830,0,0,20,167 +2924,1674843126,848954594,0,0,85,159 +1919,1674844525,732810,0,0,48,279 +2165,1674844952,848916830,0,0,20,136 +940,1674845495,693887,780940,99,48,3126 +787,1674846529,459451,0,0,25,131 +2511,1674846783,848954611,776340,0,32,581 +3725,1674847032,783836,415671,85,0,434 +2928,1674847190,848954604,0,0,105,129 +6065,1674847732,604194,0,0,0,70 +3107,1674848293,693802,0,0,138,168 +2350,1674850722,792025,0,0,48,154 +192,1674850797,848954196,0,0,35,183 +1277,1674852967,848954240,0,0,6,147 +1018,1674854937,848944627,0,0,105,171 +1607,1674855166,735108,0,0,20,95 +314,1674856213,848953950,754653,22,6,2779 +990,1674857189,848936926,0,0,6,103 +1705,1674857880,848948254,0,0,6,2721 +2844,1674860467,848949493,0,0,86,143 +3202,1674860515,746070,0,0,74,102 +2460,1674863003,848951321,0,0,25,113 +60,1674863835,848890745,848951962,97,0,2591 +4753,1674865717,848951632,848951879,99,105,1225 +3225,1674867137,848954138,0,0,64,179 +2987,1674868104,848948640,0,0,74,103 +1113,1674868533,848951061,0,0,20,177 +2694,1674869247,540123,0,0,86,76 +4913,1674871170,790183,0,0,138,84 +701,1674873662,735108,0,0,20,146 +1352,1674873712,848944627,0,0,105,185 +239,1674874085,848951612,0,0,35,588 +1264,1674874153,848943607,0,0,6,148 +1408,1674875444,230556,0,0,48,626 +1408,1674875444,230556,230556,48,48,626 +1385,1674876726,13512,0,0,20,843 +688,1674877203,848954266,0,0,35,147 +627,1674877500,552694,0,0,48,1659 +500,1674878122,848941179,758134,22,35,2313 +1479,1674878160,735108,0,0,20,147 +3450,1674879411,272255,675021,0,48,1184 +2972,1674879685,213,0,0,61,180 +533,1674879961,848936921,0,0,6,141 +1730,1674880152,848936926,0,0,6,116 +1241,1674881133,761474,0,0,33,131 +533,1674881286,848912363,848936921,6,61,175 +5501,1674882192,604194,0,0,0,44 +1883,1674882545,755121,0,0,5,197 +1260,1674882866,848954190,0,0,35,184 +3232,1674886287,58945,848952960,61,91,4004 +974,1674886331,693887,0,0,48,182 +688,1674888131,848954266,848954266,35,35,199 +2360,1674888439,792025,0,0,48,117 +2149,1674889185,848954597,848947369,0,32,565 +726,1674889780,735108,0,0,20,134 +349,1674889945,344518,0,0,20,118 +1424,1674890048,848945118,848949056,42,30,1734 +1108,1674890118,153367,848935817,0,85,3415 +1108,1674890118,153367,153367,85,85,3415 +1408,1674891258,848936921,230556,48,6,640 +423,1674891627,848953950,848954201,35,6,4198 +6554,1674891821,604194,0,0,0,32 +520,1674892148,848945118,775654,105,30,2374 +2118,1674892400,848941404,0,0,30,173 +1099,1674892701,848953950,848934831,35,6,4413 +1662,1674894254,848951061,0,0,20,133 +3269,1674895869,848949493,0,0,86,145 +6418,1674896137,604194,0,0,0,33 +1776,1674900763,573851,0,0,48,162 +4691,1674901064,744645,769092,0,30,1807 +1652,1674903311,780354,0,0,11,189 +533,1674904520,848912363,848912363,61,61,175 +1215,1674905115,667167,0,0,24,808 +1108,1674906740,848949948,153367,85,30,3415 +3112,1674907730,848934532,848951632,105,138,1710 +3565,1674909362,693256,848934812,42,76,1094 +2115,1674909572,794964,792503,0,61,3222 +1663,1674910149,848953926,848953539,32,2,3035 +5508,1674911232,604194,0,0,0,54 +679,1674911655,848954266,848954475,73,35,1877 +2431,1674912594,213,0,0,61,158 +4070,1674913792,262676,0,0,0,100 +3,1674914528,848954218,0,0,35,125 +106,1674916912,741494,0,0,2,133 +3030,1674917026,58945,848952960,61,91,385 +3455,1674917045,58945,848952960,61,91,199 +3147,1674918271,848954662,0,0,53,162 +2311,1674918285,761474,0,0,33,138 +6460,1674919769,604194,0,0,0,26 +1035,1674920801,735108,0,0,20,217 +5601,1674921017,848952288,0,0,86,65 +842,1674921101,735108,0,0,20,123 +4549,1674921399,7536,0,0,119,102 +4478,1674922575,272255,0,0,48,136 +3336,1674922892,848954504,0,0,2,80 +3609,1674923672,848890745,848950849,0,0,2830 +2606,1674923753,213,0,0,61,141 +943,1674926023,848948254,0,0,6,134 +242,1674928158,170853,0,0,30,150 +1930,1674929782,398664,0,0,33,149 +2710,1674931281,213,0,0,61,64 +403,1674931391,848943607,0,0,6,125 +3759,1674932311,848949493,755829,152,86,2378 +3353,1674933024,616498,0,0,48,158 +2260,1674933483,848954361,0,0,30,1110 +92,1674935819,848954208,0,0,2,162 +1881,1674935854,735108,0,0,20,150 +5097,1674936007,775955,0,0,74,71 +5595,1674936241,848952450,0,0,74,52 +5684,1674937656,604194,0,0,0,63 +1549,1674938228,735108,0,0,20,170 +1680,1674938785,848949204,0,0,105,94 +4154,1674938831,302611,848954775,0,97,2830 +484,1674939984,114434,0,0,61,136 +1211,1674940695,276237,0,0,48,730 +6233,1674941752,604194,0,0,0,34 +1368,1674942154,848954090,0,0,105,120 +1540,1674942418,796360,848952403,66,138,4097 +1940,1674944023,848954170,0,0,35,141 +1188,1674945167,848945118,0,0,30,880 +1681,1674945521,848948254,0,0,6,72 +2657,1674946030,848949493,0,0,86,258 +5440,1674946666,848951632,775730,131,105,873 +2605,1674947008,398664,0,0,33,159 +2897,1674947400,552694,0,0,48,177 +2126,1674948255,848943740,0,0,138,192 +4731,1674948576,848954820,0,0,76,77 +130,1674948758,735108,0,0,20,192 +4025,1674948909,848949093,0,0,65,153 +390,1674951732,848936921,0,0,6,629 +5084,1674952334,790183,0,0,138,64 +2908,1674952513,848890745,0,0,0,1724 +2759,1674952984,848952932,748935,83,85,614 +3429,1674953527,848890745,0,0,0,119 +300,1674953702,735108,0,0,20,142 +4522,1674953844,848954131,0,0,97,102 +3033,1674954233,571769,0,0,74,177 +4851,1674954428,848936929,848954603,17,6,1620 +650,1674955327,848931764,0,0,35,178 +2513,1674957353,795932,0,0,22,256 +139,1674958238,848953401,848917074,0,64,3848 +1021,1674958473,50103,37720,24,6,491 +4154,1674958746,848947293,302611,97,85,2927 +4154,1674958746,848947293,848947293,85,85,2927 +5695,1674959157,848954539,334769,0,131,404 +5232,1674959663,848946291,848954029,0,0,562 +808,1674959724,160994,0,0,24,121 +1063,1674960694,848948254,0,0,6,181 +2740,1674960704,848954504,848951023,86,2,2046 +433,1674962466,735108,0,0,20,122 +1994,1674963015,848954190,0,0,35,182 +2480,1674963475,848949493,0,0,86,159 +1296,1674964550,848951549,0,0,20,980 +131,1674964707,848936921,0,0,6,162 +146,1674965003,848880663,0,0,34,140 +1350,1674965237,848952270,0,0,61,118 +1891,1674965679,699876,848954548,0,61,2139 +3929,1674965978,747735,0,0,65,91 +587,1674967598,848936921,848952324,4,6,376 +214,1674968132,276237,0,0,48,93 +2565,1674968199,848949493,0,0,86,126 +2037,1674968353,848954368,0,0,64,139 +1834,1674968595,848936921,0,0,6,171 +3159,1674969063,796360,848954643,65,138,3147 +287,1674969084,735108,0,0,20,130 +3615,1674969819,848953068,783836,0,85,2621 +3615,1674969819,848953068,848953068,85,85,2621 +1803,1674970594,848954240,848954288,24,6,2041 +1645,1674970654,649035,0,0,74,185 +794,1674970758,751946,0,0,158,141 +4151,1674974400,775955,848954774,0,74,3675 +3056,1674976420,848890745,0,0,0,120 +3056,1674976420,848890745,848890745,0,0,120 +1747,1674980724,848943607,0,0,6,113 +6507,1674982489,848940612,0,0,30,33 +2910,1674982683,848852584,0,0,25,145 +1928,1674985813,744645,756854,25,30,3224 +4973,1674986357,848954762,0,0,119,67 +872,1674988232,735108,0,0,20,173 +54,1674988266,735108,0,0,20,204 +2926,1674988378,848954553,0,0,53,120 +3012,1674990626,848953207,0,0,61,162 +2253,1674991211,848954366,0,0,2,111 +326,1674991284,50103,37720,24,6,3348 +2541,1674992123,848954640,0,0,2,116 +2386,1674993186,213,0,0,61,173 +3125,1674993332,795044,848943201,0,64,1044 +3132,1674994113,794964,58945,0,61,7044 +5822,1674994588,848910736,848953215,148,35,582 +1677,1674996624,769106,0,0,64,414 +320,1674996916,848953950,848946235,22,6,3719 +1444,1674997343,230556,0,0,48,240 +2344,1674997418,848953937,0,0,74,158 +1716,1674999133,848936926,848953936,4,6,3244 +4109,1675000542,848952556,0,0,74,151 +4348,1675002183,647002,848954810,153,0,1687 +2219,1675002516,848953401,0,0,138,169 +5405,1675002911,848940612,0,0,30,63 +2338,1675003098,848937132,848945587,0,5,445 +3030,1675004126,699876,58945,0,61,525 +3030,1675004126,699876,699876,61,61,525 +4365,1675004372,848947293,848954814,97,85,2780 +2410,1675004695,213,0,0,61,163 +4457,1675006195,351605,0,0,91,101 +3639,1675006380,171766,848954399,4,33,2748 +2278,1675007444,213,0,0,61,188 +2530,1675008590,848949493,0,0,86,179 +413,1675009325,735108,0,0,20,135 +2444,1675009860,848949493,0,0,86,138 +868,1675011513,848951176,754270,105,138,2808 +504,1675013411,848954362,848893845,0,35,1705 +3824,1675014576,848941569,0,0,91,152 +4519,1675015445,848953962,0,0,27,128 +1423,1675015765,848954428,0,0,20,181 +3594,1675015871,171766,0,0,33,90 +1414,1675016276,768825,848949037,0,105,521 +1992,1675017032,848952114,440548,25,3,2162 +3236,1675017703,848951023,848954650,66,86,4005 +1896,1675017929,848953214,0,0,3,236 +2323,1675018483,848953946,848932022,0,32,575 +3051,1675019113,848890745,620806,97,0,2492 +5437,1675019659,848951632,775729,131,105,3383 +89,1675021068,848954361,0,0,30,158 +152,1675021556,50103,0,0,6,209 +1184,1675022072,848936921,0,0,6,632 +3280,1675022261,796360,0,0,138,146 +5753,1675022546,848954539,345976,0,131,589 +3923,1675024071,848945448,0,0,0,105 +4900,1675024286,775955,0,0,74,63 +3232,1675024413,848954555,58945,0,91,3998 +1745,1675025474,735108,0,0,20,172 +6855,1675026163,848940612,0,0,30,32 +2495,1675026462,848949493,0,0,86,64 +2304,1675026770,782908,0,0,32,187 +1490,1675027277,848951061,0,0,20,156 +4312,1675028224,647002,0,0,0,108 +1728,1675028971,848941909,0,0,6,158 +4574,1675029082,676986,647002,0,138,4094 +3821,1675029957,848890745,0,0,0,140 +5610,1675030465,848952288,0,0,86,79 +4367,1675031425,7536,0,0,119,118 +1016,1675031931,151032,0,0,20,55 +4908,1675032055,848947293,848953499,97,85,1740 +1047,1675032360,848943607,848920804,0,6,2397 +567,1675033641,848933579,0,0,6,190 +1149,1675036000,693887,0,0,48,154 +1526,1675036200,463920,0,0,20,117 +772,1675036355,848954021,0,0,35,136 +3844,1675037416,707957,0,0,0,98 +1770,1675038161,848954190,0,0,35,156 +3232,1675038269,794964,848954555,91,61,3998 +3232,1675038270,794964,794964,61,61,3895 +4364,1675038418,171766,0,0,33,109 +2659,1675038575,848890745,0,0,0,133 +1625,1675039357,50103,0,0,6,120 +953,1675041247,848951612,783755,26,35,607 +1579,1675041545,735108,0,0,20,160 +1579,1675041545,735108,735108,20,20,160 +1198,1675041767,848936921,0,0,6,715 +3104,1675042451,848929352,0,0,76,213 +1665,1675043911,848880663,0,0,34,152 +529,1675045074,848947314,0,0,20,198 +4463,1675045627,171766,0,0,33,135 +3965,1675047554,693256,848949884,0,76,1118 +4444,1675047797,171766,0,0,33,111 +1778,1675048238,848907165,0,0,30,131 +365,1675048689,848954504,0,0,2,1031 +1087,1675049115,848910736,848933918,0,35,2244 +358,1675050585,848953950,0,0,6,142 +6485,1675052604,848954539,0,0,131,34 +5241,1675054964,848954987,0,0,22,109 +3471,1675055380,848890745,0,0,0,133 +4629,1675055724,276237,0,0,48,129 +2288,1675056745,213,0,0,61,167 +1553,1675058633,848954366,0,0,2,187 +91,1675059143,848936926,0,0,6,122 +2995,1675059285,796360,0,0,138,168 +1620,1675060381,735108,0,0,20,110 +1763,1675060836,848881936,0,0,5,139 +3122,1675061966,848881027,848943140,0,53,909 +2394,1675064338,654379,0,0,64,164 +2314,1675064383,654379,0,0,64,144 +1433,1675064745,848951612,0,0,35,225 +422,1675066639,848953915,0,0,35,149 +5532,1675066899,848953068,0,0,85,73 +3474,1675067694,848951023,0,0,86,162 +1968,1675068719,398664,0,0,33,132 +1521,1675070090,587894,848952236,74,48,6317 +3344,1675071496,785871,848954662,53,0,3844 +4012,1675073914,848954734,0,0,153,127 +3426,1675074600,552694,0,0,48,145 +2881,1675075873,171766,0,0,33,180 +2503,1675076426,171766,848943908,91,33,3038 +1244,1675076541,848880663,0,0,34,177 +3200,1675076953,411608,783322,5,138,3107 +2989,1675078009,848909148,514187,66,48,4165 +3746,1675078759,848934532,230548,0,138,3810 +6491,1675079514,848940612,0,0,30,56 +3114,1675080357,171766,0,0,33,132 +5694,1675080579,775955,0,0,74,59 +1441,1675080669,848953950,0,0,6,183 +1441,1675080669,848953950,848953950,6,6,183 +1441,1675080669,848953950,848953950,6,6,183 +803,1675080721,766625,613252,151,6,3178 +2958,1675081182,171766,0,0,33,157 +1121,1675085340,848953950,0,0,6,144 +1308,1675085881,509533,0,0,6,245 +1219,1675087325,848937811,0,0,61,569 +1698,1675087423,848953950,0,0,6,172 +1774,1675088644,693802,848954138,0,138,2775 +3067,1675089241,785871,0,0,0,409 +6158,1675090888,848940612,0,0,30,54 +1556,1675091368,848952033,0,0,34,159 +4015,1675091902,171766,0,0,33,170 +4015,1675091903,171766,171766,33,33,170 +5105,1675093834,848954987,0,0,22,117 +3783,1675094038,794964,0,0,61,167 +352,1675094207,848952032,0,0,25,178 +4402,1675094211,272255,0,0,48,127 +739,1675094321,13512,0,0,20,157 +2833,1675094505,848951023,0,0,86,165 +911,1675094576,848951176,0,0,138,168 +4015,1675094985,848954732,171766,33,61,170 +2902,1675095726,848948640,0,0,74,150 +3,1675095995,848954240,848954218,35,6,445 +2451,1675096346,848890745,0,0,0,213 +2003,1675096665,587894,848952236,74,48,1418 +200,1675097821,509533,0,0,6,155 +752,1675097878,848949948,0,0,30,172 +765,1675098309,848954362,0,0,35,155 +2781,1675098345,411608,0,0,138,197 +3138,1675098540,848925398,848943187,0,42,1015 +3138,1675098613,848953937,848925398,42,74,991 +614,1675099196,509533,0,0,6,170 +1523,1675099574,701192,0,0,25,253 +2174,1675099868,213,0,0,61,170 +1161,1675099924,782322,0,0,20,803 +1265,1675100412,848952114,848943200,0,3,500 +51,1675101101,848953950,0,0,6,163 +56,1675101618,769838,848951975,0,6,1158 +938,1675102266,701261,0,0,25,157 +923,1675102383,463920,0,0,20,212 +923,1675102383,463920,463920,20,20,212 +323,1675102591,415671,783836,0,85,4794 +101,1675102759,769838,298720,5,6,1885 +1572,1675102879,732810,0,0,48,146 +3134,1675102886,848954006,0,0,2,165 +3889,1675103008,767834,848952994,66,105,2023 +687,1675103746,848943607,0,0,6,214 +977,1675104456,13512,848911019,12,20,2033 +3186,1675104756,848909148,0,0,48,192 +1648,1675105288,848907165,0,0,30,172 +1430,1675105477,509533,0,0,6,142 +2985,1675105817,848954008,0,0,2,161 +2512,1675105955,785504,0,0,86,127 +3256,1675106587,848890745,0,0,0,178 +2264,1675107968,848954208,0,0,2,1432 +462,1675107977,509533,0,0,6,179 +2901,1675108884,848953965,848952579,53,2,1032 +5127,1675109135,848952450,0,0,74,78 +5480,1675109908,848940612,0,0,30,97 +2155,1675110630,848954361,0,0,30,178 +2885,1675111269,568,848954117,0,32,5115 +3024,1675111478,699876,0,0,61,155 +443,1675111602,13512,848911019,12,20,1462 +3306,1675112221,848881027,0,0,53,347 +646,1675112349,699876,848951574,54,61,2207 +4745,1675112382,848952918,0,0,172,121 +2211,1675113230,693802,654379,64,138,1246 +1903,1675113377,213,0,0,61,177 +3725,1675115072,848951308,0,0,85,542 +1394,1675115141,848954096,0,0,163,200 +3725,1675115321,848951308,848951308,85,85,518 +6049,1675115398,848955024,0,0,0,98 +640,1675115447,848954199,0,0,35,163 +1735,1675116903,848954266,0,0,35,105 +1307,1675117343,848943607,0,0,6,148 +425,1675117465,848951176,0,0,138,176 +4153,1675117608,171766,0,0,33,120 +1200,1675117940,848880663,0,0,34,149 +417,1675118495,848881936,0,0,5,165 +575,1675118981,13512,0,0,20,156 +138,1675120179,13512,0,0,20,156 +3746,1675120585,848951632,848934532,138,105,4022 +3746,1675120585,848951632,848951632,105,105,4022 +1272,1675120696,766625,0,0,6,665 +407,1675122524,848936921,0,0,6,144 +996,1675123781,509533,0,0,6,131 +3950,1675124203,171766,0,0,33,168 +3455,1675124257,848954555,58945,0,91,316 +1069,1675126345,13512,0,0,20,278 +1231,1675127005,848949948,0,0,30,149 +4291,1675127615,848945233,0,0,91,113 +3712,1675127988,171766,0,0,33,128 +2105,1675128552,693802,0,0,138,121 +4725,1675129325,848951632,0,0,105,148 +4129,1675129533,775063,0,0,106,141 +633,1675131030,848953950,0,0,6,167 +3570,1675131059,747735,0,0,65,174 +1315,1675131069,751946,0,0,158,152 +3167,1675131323,540123,0,0,86,174 +10,1675132022,848936929,523530,1,6,2675 +3978,1675132242,264792,0,0,138,148 +2822,1675132793,213,0,0,61,146 +5641,1675135804,848949493,848930230,152,86,2411 +1117,1675135963,769838,848937396,5,6,2065 +1025,1675136396,848954607,0,0,32,526 +196,1675136668,509533,0,0,6,68 +104,1675137020,411608,461453,5,138,3355 +254,1675137414,509533,0,0,6,201 +1170,1675138361,463920,0,0,20,151 +305,1675138555,13512,0,0,20,168 +1489,1675139049,848953950,0,0,6,181 +1534,1675140053,848954266,0,0,35,113 +712,1675140668,509533,0,0,6,190 +4974,1675140945,785504,848953565,0,86,1221 +4251,1675141710,616498,0,0,48,122 +4251,1675141710,616498,616498,48,48,122 +144,1675141834,848953950,0,0,6,211 +1004,1675142181,795044,848897316,0,64,1327 +1610,1675142461,13512,0,0,20,125 +1610,1675142462,13512,13512,20,20,125 +755,1675142574,13512,0,0,20,174 +670,1675143288,848941909,0,0,6,317 +3761,1675143480,616498,0,0,48,113 +814,1675144228,693802,654379,64,138,4795 +1006,1675144393,744645,701192,25,30,1155 +588,1675144394,848949948,848951434,25,30,5589 +482,1675144394,848949948,701192,25,30,4279 +1588,1675145049,13512,0,0,20,168 +262,1675145159,782322,0,0,20,206 +1799,1675145470,848943092,0,0,20,159 +1953,1675145500,848943092,0,0,20,174 +5061,1675146320,616498,0,0,48,77 +1710,1675148030,735108,0,0,20,183 +3581,1675150128,780339,727631,42,74,5029 +3581,1675150128,780339,780339,74,74,5029 +2331,1675150527,794964,0,0,61,158 +464,1675151393,780354,0,0,11,154 +4495,1675151442,848947293,302611,97,85,3421 +1278,1675152236,699876,0,0,61,198 +3958,1675152663,848954140,848954744,114,85,3533 +2776,1675153218,848934532,848940915,150,138,3811 +2418,1675153877,848943092,0,0,20,683 +33,1675154389,848936929,848951977,41,6,2406 +1924,1675154900,572558,0,0,48,178 +4930,1675155526,276237,0,0,48,83 +910,1675157012,509533,0,0,6,155 +2367,1675158522,676986,654379,64,138,715 +1091,1675158969,848953956,0,0,163,149 +2934,1675159423,213,0,0,61,176 +2935,1675161368,171766,0,0,33,153 +2769,1675161404,171766,0,0,33,187 +1251,1675161721,848951549,0,0,20,247 +6220,1675162160,848954640,619293,0,2,688 +2244,1675163205,848943092,0,0,20,142 +2062,1675163646,676986,848954138,0,138,1151 +1633,1675163722,780354,0,0,11,165 +431,1675164051,780947,0,0,3,217 +1002,1675164068,848953950,0,0,6,178 +2357,1675164300,848943092,0,0,20,170 +4159,1675164400,786164,0,0,11,109 +6880,1675165208,848890745,0,0,0,40 +795,1675165947,848943607,0,0,6,193 +1030,1675166205,848953950,0,0,6,171 +754,1675166232,780354,485721,50,11,4460 +1281,1675166955,848954090,0,0,105,151 +1325,1675167052,693802,0,0,138,867 +5380,1675168231,653971,0,0,0,118 +1676,1675168724,848953950,0,0,6,163 +922,1675171355,848953950,0,0,6,140 +83,1675172357,769838,0,0,6,226 +165,1675172849,848953950,0,0,6,131 +3870,1675173673,848952556,0,0,74,139 +4693,1675173945,580805,0,0,76,108 +1575,1675174640,848951306,0,0,30,178 +2283,1675175153,848954640,848940741,0,2,431 +4768,1675177119,616498,0,0,48,127 +1683,1675177261,552694,0,0,48,185 +3018,1675178647,848909148,0,0,20,168 +1691,1675178679,693887,0,0,48,186 +88,1675178925,587894,0,0,48,198 +1014,1675178961,509533,0,0,6,190 +227,1675180278,848941909,0,0,6,176 +1715,1675180411,780354,0,0,11,231 +12,1675182032,13512,0,0,20,127 +2707,1675182775,213,0,0,61,143 +3261,1675182957,848951176,848934532,0,138,9370 +4428,1675183225,415671,0,0,85,101 +3047,1675184021,572558,0,0,48,112 +1591,1675184029,848954312,848952957,41,2,3619 +3052,1675184284,213,0,0,61,169 +638,1675184360,848936921,0,0,6,1217 +3161,1675185520,572558,0,0,48,149 +485,1675185692,744645,701261,25,30,3364 +83,1675185933,13512,769838,6,20,212 +83,1675185933,13512,13512,20,20,212 +83,1675185933,13512,13512,20,20,212 +1253,1675186700,463920,0,0,20,149 +3044,1675188680,848890745,0,0,0,170 +4726,1675188714,848894236,848954869,0,76,1202 +6029,1675189420,848940612,0,0,174,60 +999,1675189698,848943607,0,0,6,207 +2776,1675189709,848951176,848934532,0,138,3811 +2750,1675190562,848954640,0,0,2,221 +1683,1675191104,848954196,552694,48,35,181 +2461,1675192001,848943092,0,0,20,190 +469,1675192936,160994,0,0,24,163 +4187,1675193117,848953962,848954781,106,27,2617 +1358,1675193407,509533,848948022,15,6,2042 +2516,1675194784,848953401,0,0,138,143 +3231,1675195273,848953207,0,0,61,187 +2764,1675195441,848949493,0,0,86,163 +311,1675195604,848914361,754627,22,20,2271 +7051,1675195638,848954539,0,0,105,53 +1171,1675195955,587894,0,0,48,803 +952,1675196594,741494,0,0,2,194 +1772,1675196777,848910736,0,0,35,141 +2890,1675196956,848952932,0,0,85,164 +4857,1675197389,171766,0,0,33,112 +4225,1675197409,794964,0,0,61,177 +4010,1675199167,264792,763018,172,138,2973 +1434,1675199454,848940894,485721,50,11,697 +3635,1675200642,848954719,848951665,0,0,181 +3955,1675201088,539612,848945448,22,65,3434 +1496,1675201856,848910736,0,0,35,172 +3343,1675202281,693802,0,0,138,108 +2718,1675202378,848949493,0,0,86,179 +1507,1675203568,13512,0,0,20,134 +309,1675204290,848941909,0,0,6,135 +5860,1675204425,848940612,0,0,174,70 +1574,1675204750,848943607,0,0,6,208 +1328,1675205425,848951061,0,0,20,233 +2803,1675205879,848953965,0,0,2,246 +4045,1675206056,616498,0,0,48,172 +3108,1675206319,741238,755590,83,0,2806 +3193,1675206405,572558,0,0,48,159 +2872,1675206417,848953309,848953938,0,32,2615 +3165,1675207472,848953270,848943225,0,0,750 +2770,1675208908,572558,0,0,48,113 +813,1675209449,13512,0,0,20,150 +1305,1675209456,848953950,0,0,6,191 +488,1675209785,848949948,848951321,25,30,4449 +488,1675209786,848949948,848949948,30,30,4203 +272,1675210090,13512,0,0,20,198 +4567,1675210322,748168,0,0,42,122 +31,1675211230,459451,0,0,25,176 +7010,1675211843,848940612,0,0,174,47 +1478,1675212603,572558,848951595,0,48,1974 +4540,1675213290,693802,848952918,172,138,2876 +1053,1675214869,782322,0,0,20,175 +316,1675215249,848916830,751946,158,20,3085 +847,1675215360,848954428,751946,158,20,2590 +847,1675215362,751946,848954428,20,158,2556 +864,1675215369,848916830,751946,158,20,7290 +1291,1675215384,848916830,751946,158,20,2392 +1139,1675215631,766625,0,0,6,205 +1065,1675216980,779484,848925814,88,48,1481 +1407,1675217819,693887,0,0,48,110 +742,1675217960,848952033,0,0,34,204 +312,1675218015,463920,751946,158,20,1633 +4000,1675218117,848890745,565794,97,0,3408 +4368,1675218852,785504,848943280,0,86,1137 +1275,1675219555,780354,0,0,11,183 +4392,1675219578,676986,0,0,138,84 +5864,1675220250,775955,0,0,74,82 +454,1675220433,780354,0,0,11,183 +4074,1675220483,375649,0,0,32,126 +3341,1675221223,848953068,0,0,85,548 +3235,1675221516,693802,0,0,138,154 +296,1675221936,321370,681314,177,69,7297 +468,1675222053,848927565,448111,166,138,2683 +4737,1675222191,616498,0,0,48,122 +1975,1675222705,213,0,0,61,144 +2040,1675222910,848952114,0,0,3,191 +1370,1675223938,848948254,0,0,6,193 +2102,1675224061,848941404,0,0,30,147 +2316,1675225319,571769,848940748,0,74,480 +2563,1675225560,848914361,577132,12,20,3191 +678,1675225757,735108,0,0,20,124 +3964,1675226037,339555,0,0,74,140 +5592,1675226394,580805,0,0,76,75 +1950,1675226496,848951176,848934532,0,138,3070 +1786,1675227153,848949948,0,0,30,215 +2744,1675227203,699876,0,0,61,166 +1965,1675227255,848954312,0,0,2,225 +847,1675227401,848951549,751946,158,20,2576 +847,1675227402,848951549,848951549,20,20,2576 +711,1675227544,848948254,0,0,6,117 +3831,1675227856,540123,0,0,86,161 +1046,1675228364,848894442,0,0,34,228 +597,1675229394,755121,0,0,5,146 +1517,1675229593,13512,0,0,20,135 +1848,1675229616,13512,0,0,20,144 +5836,1675230798,848952450,0,0,74,103 +1815,1675231204,848914361,0,0,20,252 +3561,1675232974,848894236,0,0,76,151 +5488,1675233617,848952288,848951105,136,86,1401 +863,1675233911,780354,0,0,11,174 +3164,1675234435,693802,0,0,138,139 +2214,1675235085,848954410,0,0,2,990 +86,1675235510,848912363,0,0,61,131 +2826,1675237509,291491,0,0,65,243 +3019,1675238268,351605,848943430,0,91,461 +676,1675238401,50103,848954266,35,6,8792 +679,1675238403,848936926,848954266,35,6,3324 +2077,1675239000,552694,0,0,48,165 +222,1675239499,13512,0,0,20,193 +2749,1675239755,848936929,848954266,35,6,8148 +955,1675239847,13512,0,0,20,199 +3323,1675240490,699876,0,0,61,541 +1237,1675241082,848929146,0,0,30,585 +1946,1675241460,552694,0,0,48,169 +325,1675241700,848941909,0,0,6,204 +5827,1675243137,776073,0,0,74,91 +918,1675243911,848936926,848954266,35,6,8356 +5528,1675244332,848952288,0,0,86,138 +2204,1675245248,213,0,0,61,188 +1275,1675245760,151032,780354,11,20,218 +1275,1675245760,151032,151032,20,20,218 +1275,1675245760,151032,151032,20,20,218 +3326,1675246521,848954006,0,0,2,188 +1793,1675246830,848953926,848953964,0,2,3634 +1154,1675249038,344518,0,0,20,1009 +64,1675249149,848914361,0,0,20,218 +3962,1675249201,785871,775063,106,0,3191 +3962,1675249201,785871,785871,0,0,3191 +877,1675249385,848889826,0,0,42,219 +1275,1675250041,780354,151032,20,11,194 +7244,1675250042,848953992,0,0,2,33 +340,1675250196,693887,0,0,48,163 +781,1675251276,848954240,848954266,35,6,5356 +802,1675253181,398664,0,0,33,152 +3140,1675253272,848949493,0,0,48,114 +1787,1675253782,767507,848954221,105,138,4893 +2567,1675255800,213,0,0,61,169 +1635,1675256077,848951549,0,0,20,180 +1566,1675258297,848929146,0,0,30,191 +4771,1675258569,410165,0,0,85,101 +399,1675258840,509533,0,0,6,135 +1156,1675260879,509533,0,0,6,211 +4702,1675261657,171766,0,0,33,162 +569,1675261754,848951176,848934532,0,138,2726 +2452,1675263195,848953068,153367,0,85,5223 +5763,1675263210,848940612,0,0,174,53 +3452,1675263351,794964,0,0,61,156 +4254,1675263854,848890745,0,0,0,139 +710,1675264194,693887,0,0,48,148 +2378,1675264230,848953068,0,0,85,136 +6148,1675265235,848955081,0,0,172,75 +2811,1675265241,848954362,773019,50,35,1832 +1722,1675265495,848940894,0,0,11,162 +512,1675265690,13512,0,0,20,209 +512,1675266864,13512,13512,20,20,209 +512,1675266864,13512,13512,20,20,209 +512,1675266864,13512,13512,20,20,209 +512,1675266864,13512,13512,20,20,209 +1497,1675266871,13512,0,0,20,171 +1497,1675266872,13512,13512,20,20,171 +1066,1675267088,848914361,0,0,20,180 +2841,1675267872,787586,848954610,53,74,3211 +1674,1675268627,848953926,848953964,0,2,3108 +935,1675268892,779484,0,0,48,217 +1206,1675269365,848914361,0,0,20,204 +1624,1675269392,848940894,848953270,0,11,5706 +1624,1675269392,848940894,848940894,11,11,5706 +2237,1675270341,415671,153367,0,85,619 +2358,1675270515,741494,0,0,2,1471 +3302,1675270845,848949093,0,0,65,130 +3520,1675271235,699876,0,0,61,167 +772,1675271355,848936921,848954021,35,6,333 +235,1675271423,755121,0,0,5,198 +5580,1675271665,415671,0,0,85,77 +5379,1675271959,848951308,0,0,85,117 +1043,1675273038,848941179,0,0,35,128 +612,1675273172,151032,0,0,20,173 +607,1675273514,848953950,0,0,6,212 +490,1675273822,463920,0,0,20,165 +490,1675273822,463920,463920,20,20,165 +962,1675274413,848941909,0,0,6,185 +1177,1675275067,848912363,0,0,61,233 +975,1675275255,848943092,795932,22,20,6796 +756,1675275388,848929146,0,0,30,138 +611,1675276558,344518,0,0,20,179 +266,1675276767,782322,0,0,20,195 +289,1675277568,848936921,0,0,6,86 +93,1675278092,848953214,0,0,3,134 +3904,1675278789,171766,0,0,33,195 +114,1675279014,693887,0,0,48,192 +395,1675279048,848916830,0,0,20,213 +1684,1675279193,509533,0,0,6,105 +24,1675281493,13512,0,0,20,210 +344,1675282596,848953926,848953964,0,2,6967 +2188,1675282846,213,0,0,61,281 +4302,1675283162,848881027,848954799,110,53,3450 +1546,1675284052,848936929,0,0,6,140 +302,1675284070,848951306,0,0,183,202 +3984,1675284586,848894236,0,0,76,160 +1181,1675284673,848929146,0,0,183,893 +5469,1675284811,616498,0,0,48,81 +2393,1675284956,729178,0,0,48,166 +562,1675285322,780354,0,0,11,130 +4438,1675286179,848954820,0,0,76,151 +1855,1675286660,13512,0,0,20,215 +2814,1675288554,693802,0,0,138,219 +4501,1675288584,693802,0,0,138,145 +4348,1675288892,264792,647002,0,138,1176 +4348,1675288892,264792,264792,138,138,1176 +2058,1675290130,767507,848954221,105,138,596 +989,1675290160,509533,0,0,6,174 +1088,1675290503,50103,0,0,6,241 +4150,1675291312,848890745,0,0,0,192 +819,1675291329,848954598,0,0,27,189 +3112,1675291921,767834,848934532,0,182,2249 +1581,1675291989,848914361,0,0,20,200 +2185,1675292583,848954410,0,0,2,221 +1127,1675292776,50103,0,0,6,185 +1012,1675292778,766625,0,0,6,221 +1456,1675293090,693887,0,0,48,252 +4376,1675293149,604194,0,0,174,121 +3755,1675293367,848954768,0,0,91,255 +5373,1675296079,848951308,0,0,85,114 +1603,1675297519,463920,0,0,20,182 +719,1675297834,848943607,0,0,6,1221 +1382,1675297939,780947,0,0,3,222 +375,1675299918,13512,0,0,20,207 +6133,1675300342,604194,0,0,174,102 +1404,1675300696,693802,0,0,138,181 +363,1675300779,848954170,0,0,35,153 +4415,1675301003,693802,0,0,138,144 +343,1675301520,848953950,0,0,6,215 +1642,1675301553,509533,0,0,6,230 +3600,1675301704,794964,0,0,61,141 +1107,1675301816,779484,0,0,48,184 +7078,1675304167,604194,0,0,174,45 +1476,1675304210,848941404,0,0,183,179 +3765,1675304722,848952556,0,0,74,715 +1488,1675304915,151032,0,0,20,897 +1488,1675304979,151032,151032,20,20,873 +1488,1675305038,151032,151032,20,20,873 +568,1675306095,344518,0,0,20,155 +1384,1675306200,848914361,0,0,20,670 +1384,1675306200,848914361,848914361,20,20,670 +5676,1675306271,848924974,848955018,0,4,429 +4794,1675306412,848954762,0,0,119,133 +609,1675306631,848953956,0,0,163,210 +6861,1675306850,848954539,0,0,105,53 +1056,1675307478,13512,0,0,20,172 +1488,1675307587,151032,151032,20,20,887 +4218,1675307644,604194,0,0,174,151 +2600,1675311465,415671,358211,0,85,2312 +1036,1675311640,779484,0,0,48,222 +3699,1675311859,776073,0,0,74,160 +961,1675312219,848948254,0,0,6,146 +2697,1675312377,848949493,0,0,48,157 +3184,1675313243,415671,153367,185,85,1841 +2733,1675313366,848954597,0,0,32,165 +3095,1675313371,351605,0,0,91,125 +2186,1675315226,848953401,769106,0,138,4171 +5279,1675316899,848952678,848943091,0,91,762 +2049,1675316961,848954611,848945641,0,32,690 +4431,1675317189,604194,0,0,174,101 +7155,1675317610,604194,0,0,174,42 +3938,1675317793,539612,0,0,65,148 +3137,1675317881,848953068,0,0,85,147 +1459,1675319306,848936929,0,0,6,187 +1459,1675319306,848936929,848936929,6,6,187 +1136,1675319423,744645,848952032,25,183,3152 +4711,1675319797,848953039,0,0,85,113 +1748,1675320547,50103,848954021,35,6,4301 +3981,1675320599,848954698,0,0,172,156 +239,1675321758,848936921,848951612,35,6,1214 +4411,1675322574,785504,0,0,86,111 +6055,1675322818,787586,0,0,74,85 +959,1675322952,848952101,0,0,34,143 +1246,1675323214,848916830,525543,15,20,2391 +1246,1675323214,848916830,848916830,20,20,2391 +1246,1675323215,848916830,848916830,20,20,2111 +1246,1675323241,848916830,848916830,20,20,2111 +1246,1675323241,848953950,848916830,20,6,2111 +766,1675323950,848954428,525543,15,20,4551 +1586,1675325460,13512,0,0,20,184 +6510,1675326110,580805,0,0,76,48 +2654,1675326135,848943092,848931274,0,20,8630 +2817,1675326611,676986,0,0,138,136 +2034,1675326689,848940894,0,0,11,191 +1207,1675327377,848936926,848951612,35,6,2361 +1164,1675327848,344518,0,0,20,175 +4931,1675328319,848952488,848907435,0,32,1715 +1743,1675329214,693887,0,0,48,225 +2163,1675329300,848927565,848954221,105,138,3041 +4752,1675329483,716656,0,0,85,195 +74,1675329901,848941909,848894948,42,6,2483 +1627,1675330371,848954361,848953280,25,183,2921 +4936,1675331578,604194,0,0,174,134 +516,1675337519,848929146,0,0,183,161 +516,1675337519,848929146,848929146,183,183,161 +2885,1675338084,587894,0,0,48,5184 +656,1675338474,509533,848952488,32,6,2619 +467,1675339526,509533,848952488,32,6,791 +4090,1675340355,785871,848954766,0,0,2346 +3152,1675340364,707957,848953793,65,0,4555 +1084,1675341429,848952522,0,0,105,817 +3888,1675341814,616498,0,0,48,167 +2900,1675343187,780485,0,0,11,158 +5662,1675343322,604194,0,0,174,109 +3009,1675343538,848954604,0,0,0,138 +4038,1675344099,794964,0,0,61,153 +2584,1675344335,270197,0,0,41,252 +2348,1675345036,848954597,848949121,0,32,622 +1858,1675346891,13512,0,0,20,166 +1283,1675347827,848916830,0,0,20,266 +205,1675347980,848943607,0,0,6,207 +694,1675348900,13512,0,0,20,222 +1636,1675349173,767507,0,0,138,132 +2096,1675349520,616498,0,0,48,174 +3101,1675349703,693802,0,0,138,198 +2398,1675349731,741494,0,0,2,213 +4041,1675350286,410165,0,0,85,148 +6716,1675350802,568,0,0,32,63 +6311,1675351113,604194,0,0,174,59 +5871,1675351443,848950496,0,0,172,802 +248,1675351582,114434,0,0,61,210 +1049,1675352041,848948254,0,0,6,178 +3999,1675352265,848951023,0,0,86,131 +637,1675354858,463920,0,0,20,203 +4396,1675354900,848954266,0,0,35,164 +2230,1675355935,398664,0,0,33,162 +3892,1675356118,848947293,848954131,0,85,3818 +4422,1675356751,848894236,0,0,76,153 +2547,1675356890,848943092,848931274,0,20,1726 +1876,1675357729,230556,0,0,48,246 +5996,1675358550,848955081,848916248,0,172,328 +4226,1675358650,272255,605271,0,48,975 +5266,1675359027,604194,0,0,174,101 +833,1675359902,769838,0,0,6,144 +197,1675360233,50103,0,0,6,200 +6348,1675360265,604194,0,0,174,55 +236,1675360393,463920,0,0,20,152 +4808,1675360712,848954749,0,0,53,170 +5465,1675361695,776810,0,0,76,96 +6079,1675362280,604194,0,0,174,61 +2319,1675363281,848852584,0,0,25,235 +1736,1675363598,848953926,0,0,2,163 +3872,1675365811,848951023,0,0,86,155 +5569,1675366351,676986,0,0,138,72 +1433,1675366583,848936921,848951612,35,6,578 +1693,1675366622,13512,0,0,20,201 +401,1675366677,230556,0,0,48,228 +867,1675367083,761474,0,0,33,180 +3558,1675367502,707957,0,0,0,139 +6434,1675367637,772572,0,0,0,75 +6463,1675368267,604194,0,0,174,49 +1933,1675368411,732810,0,0,48,176 +5721,1675369431,848951308,0,0,85,89 +4396,1675369666,848951023,848954266,35,86,291 +185,1675369726,509533,0,0,6,185 +4868,1675370660,848924572,848954889,152,104,1559 +2853,1675372275,776073,0,0,74,208 +1436,1675372649,230556,0,0,48,154 +438,1675372809,463920,0,0,20,137 +479,1675372829,848943607,0,0,6,250 +2324,1675372907,848954410,0,0,2,245 +3165,1675373755,679915,848953270,0,11,928 +2646,1675374228,616498,0,0,48,176 +2827,1675374524,693887,0,0,48,868 +6360,1675375267,604194,0,0,174,83 +1656,1675375766,848954354,848953495,0,105,3472 +4819,1675376340,848949067,0,0,0,87 +5675,1675376505,604194,0,0,174,88 +3270,1675378225,796360,707957,0,138,6292 +839,1675378490,693887,0,0,48,192 +527,1675379366,848936929,848954266,35,6,8867 +1462,1675379388,848907165,0,0,30,153 +6373,1675380665,848951308,0,0,85,67 +3007,1675381104,410165,848951416,0,85,2161 +1242,1675381530,848929146,0,0,183,829 +1312,1675381619,848945433,848944627,105,138,3365 +4544,1675381838,780354,357794,29,11,3968 +5087,1675382718,848952450,0,0,74,160 +3729,1675383075,442099,0,0,97,134 +1592,1675384097,50103,0,0,6,265 +5824,1675385131,604194,0,0,174,62 +4644,1675385373,264792,0,0,138,140 +168,1675385488,848953046,0,0,35,169 +299,1675385518,411608,0,0,138,3042 +299,1675385518,411608,411608,138,138,3042 +2797,1675386085,649035,0,0,74,154 +6642,1675386313,848947757,0,0,74,59 +6659,1675387320,604194,0,0,174,76 +973,1675387463,509533,0,0,6,190 +1936,1675388450,848937132,0,0,5,190 +4847,1675388482,744059,0,0,53,177 +3277,1675388585,616498,0,0,48,218 +3197,1675388905,848881027,848953907,0,53,1953 +7068,1675389361,415671,0,0,85,55 +6642,1675390175,693887,848947757,74,48,59 +182,1675390519,848914361,0,0,20,238 +3174,1675391568,848954700,0,0,32,209 +5771,1675391664,848951612,0,0,35,94 +1508,1675392044,848949948,848952032,25,183,8599 +969,1675393301,848948254,0,0,6,284 +3078,1675393862,848952875,0,0,85,214 +613,1675394362,848952005,0,0,4,189 +398,1675394381,848927565,0,0,138,151 +6261,1675394543,604194,0,0,174,49 +299,1675395893,795044,411608,138,69,3018 +6742,1675396107,604194,0,0,174,41 +334,1675396930,848951061,0,0,20,188 +5351,1675397090,848945828,0,0,0,99 +1432,1675398416,848929146,0,0,183,206 +549,1675398832,463920,0,0,20,143 +929,1675398850,848914361,0,0,20,226 +891,1675399223,848950001,0,0,22,124 +600,1675399305,693887,0,0,48,138 +3910,1675399873,848890745,0,0,0,182 +1125,1675399975,848952033,0,0,34,225 +167,1675400066,848941404,0,0,183,199 +6440,1675400373,775729,0,0,105,68 +3263,1675402455,848890745,0,0,0,184 +6042,1675403068,604194,0,0,174,72 +1216,1675403436,848954090,0,0,105,191 +4683,1675404030,848954762,0,0,119,132 +4683,1675404030,848954762,848954762,119,119,132 +1158,1675404265,848951176,848954368,0,138,3930 +5490,1675404390,776810,0,0,76,110 +1135,1675404951,848953950,0,0,6,164 +2564,1675405061,848942432,0,0,74,217 +6240,1675405499,604194,0,0,174,49 +7058,1675406087,848955081,0,0,172,54 +615,1675406216,848929146,0,0,183,557 +6246,1675406552,848931759,0,0,187,59 +5016,1675406655,848941179,160994,24,35,6597 +3152,1675406754,796360,707957,0,138,4567 +5016,1675407986,151032,848941179,35,20,6501 +6194,1675408115,604194,0,0,174,97 +6389,1675408122,604194,0,0,174,70 +1106,1675410520,848951061,0,0,20,152 +606,1675410943,848953046,0,0,35,194 +5317,1675412011,716656,0,0,85,134 +606,1675413484,848953046,848953046,35,35,194 +506,1675413844,848951914,0,0,3,217 +4337,1675414525,272255,0,0,48,121 +1482,1675416032,848954208,848951612,35,2,5911 +581,1675416725,848947790,0,0,6,265 +1055,1675417668,848951061,0,0,20,202 +26,1675417846,848936929,0,0,6,199 +4472,1675418169,276237,0,0,48,130 +1512,1675418817,848954312,848952099,41,2,2990 +723,1675419058,848941909,0,0,6,159 +1234,1675419814,848953926,0,0,2,168 +6032,1675420272,693802,0,0,138,92 +2988,1675422537,848953068,0,0,85,228 +1376,1675424721,509533,0,0,6,257 +4268,1675425861,415671,848947609,47,85,3171 +1708,1675425887,848954598,0,0,2,219 +1668,1675426356,848914361,0,0,20,199 +3700,1675426733,785871,744059,53,0,3148 +379,1675426770,761474,0,0,33,209 +5374,1675427910,787334,0,0,86,77 +38,1675428702,848953950,0,0,6,225 +4058,1675432353,262676,0,0,0,132 +2919,1675433152,780485,0,0,11,102 +2332,1675433567,848952270,848932020,0,61,535 +2217,1675434766,848943092,848931274,0,20,2732 +3906,1675435004,848954732,0,0,61,237 +4199,1675435030,262676,0,0,0,133 +2454,1675438831,848943092,848931274,0,20,2086 +6019,1675438910,787586,0,0,74,74 +1194,1675439355,693887,0,0,48,191 +1294,1675439678,848953950,0,0,6,220 +3268,1675439783,771856,0,0,42,175 +1849,1675440000,848916830,848907165,30,20,6807 +854,1675440000,13512,848907165,30,20,5094 +1319,1675440001,344518,848907165,30,20,9056 +550,1675440001,344518,848907165,30,20,9358 +1778,1675440013,463920,848907165,30,20,1776 +447,1675440292,693887,0,0,48,209 +1808,1675440522,761474,0,0,33,191 +2614,1675440688,848945162,848949681,76,33,4052 +1827,1675440911,848929146,0,0,183,126 +4245,1675440936,223156,848954385,0,104,181 +5393,1675441944,848946770,608574,0,152,174 +5393,1675442111,848946770,848946770,152,152,150 +1862,1675442195,151032,160994,24,20,1981 +1187,1675442328,699876,0,0,61,174 +3968,1675444319,848954140,763098,114,85,5057 +1155,1675445117,848951061,0,0,20,173 +750,1675446319,848954321,848953964,0,2,2098 +3968,1675446403,848954140,848954140,85,85,5033 +4067,1675446524,272678,0,0,119,170 +1009,1675447624,848954361,701192,25,183,1665 +5614,1675448234,848949493,0,0,48,117 +4560,1675449273,325451,0,0,91,155 +1375,1675450602,848941831,0,0,48,699 +1466,1675450803,848936929,0,0,6,235 +1779,1675451491,848943607,0,0,6,173 +4485,1675452695,848952678,848954832,134,91,3257 +164,1675452791,693887,0,0,48,186 +1702,1675452822,848945162,0,0,33,698 +5142,1675452988,693256,0,0,76,1858 +821,1675453478,848914361,0,0,20,189 +5045,1675453560,848949493,0,0,48,171 +2765,1675453797,398664,0,0,33,300 +3585,1675454399,848954312,270197,41,2,2967 +3198,1675455349,848940894,0,0,11,1258 +1475,1675455465,848936921,0,0,6,283 +700,1675456231,377337,0,0,3,246 +17,1675456647,848951549,0,0,20,186 +4237,1675458091,693802,0,0,138,163 +7291,1675461042,848940894,0,0,11,39 +541,1675461400,780947,848879567,0,3,5313 +5950,1675461573,775729,0,0,105,83 +2741,1675461769,796360,795932,22,138,1259 +4976,1675463147,264792,0,0,138,101 +308,1675465296,509533,0,0,6,220 +3650,1675466376,848953068,0,0,85,154 +3914,1675467418,540123,0,0,86,118 +2299,1675469225,571769,848940747,0,74,462 +890,1675469226,848948254,0,0,6,245 +274,1675469636,230556,0,0,48,174 +299,1675470889,411608,795044,69,138,3018 +1018,1675471423,848947314,848944627,105,20,326 +2180,1675471994,213,0,0,61,232 +672,1675472363,848947790,0,0,6,231 +4833,1675472607,848951023,223156,104,86,3199 +2305,1675473980,415671,848953064,25,85,3000 +1243,1675474444,848953046,0,0,35,217 +2168,1675474882,792025,0,0,48,201 +5065,1675475220,272255,848953267,0,48,1924 +736,1675476000,785504,848953915,35,86,1523 +1709,1675476001,848954504,848953915,35,2,4047 +1467,1675476000,276237,848954199,35,48,2782 +426,1675476000,151032,848954190,35,20,6174 +77,1675476000,552694,848954196,35,48,5431 +429,1675476000,552694,848954196,35,48,8289 +504,1675476181,848927565,848954362,35,138,3358 +1075,1675476360,729178,848930169,163,48,4354 +1075,1675476360,729178,729178,48,48,4354 +7368,1675476415,580805,0,0,76,44 +1812,1675476808,848936921,0,0,6,195 +932,1675477360,572558,848954196,35,48,2484 +4308,1675477893,848953039,848937378,0,85,980 +6497,1675478736,848946291,848952889,0,0,1032 +158,1675479493,848954354,0,0,105,170 +1289,1675481549,848941831,0,0,48,735 +1988,1675481652,848951176,848954368,0,138,1739 +3066,1675483065,848945162,0,0,33,165 +7520,1675483118,410165,0,0,85,41 +4916,1675483639,848947757,0,0,74,166 +1616,1675483960,848943607,0,0,6,222 +5618,1675484541,693802,0,0,138,101 +14,1675485607,848916830,0,0,20,187 +808,1675486422,848941179,160994,24,35,844 +808,1675486422,848941179,848941179,35,35,844 +245,1675486552,848948254,0,0,6,295 +1969,1675486812,503636,848937132,5,138,4508 +1969,1675486813,503636,503636,138,138,4307 +645,1675488617,151032,848954190,35,20,2254 +805,1675490073,848910455,0,0,4,241 +1463,1675490185,779484,0,0,48,222 +939,1675490422,848947790,0,0,6,262 +905,1675491457,377337,0,0,3,153 +3015,1675491497,848954604,0,0,0,164 +7497,1675492043,848954607,0,0,32,39 +650,1675492625,718150,848931764,35,86,654 +135,1675492877,766625,0,0,6,229 +3245,1675493025,848909148,0,0,20,177 +1692,1675493053,848953950,848954362,35,6,3763 +1152,1675495120,848953046,0,0,35,176 +6917,1675495216,848946291,848954029,0,0,901 +522,1675496549,509533,0,0,6,266 +1874,1675496577,848954362,0,0,35,201 +556,1675498540,848948254,0,0,6,203 +1597,1675498661,848951549,848954437,12,20,745 +1346,1675499626,848916830,0,0,20,223 +688,1675501092,151032,848954266,35,20,1879 +2029,1675502145,848953068,0,0,85,423 +5473,1675504480,716656,0,0,85,108 +971,1675504728,761474,0,0,33,235 +2692,1675504837,848954006,789838,66,2,5510 +4405,1675506372,787586,0,0,74,195 +5748,1675506627,848955132,0,0,91,145 +1863,1675508665,848916830,848954437,12,20,2754 +5764,1675508866,848953068,0,0,85,97 +608,1675510231,848929146,0,0,183,439 +3794,1675514230,415671,0,0,85,217 +491,1675514533,848945433,717336,0,138,847 +4651,1675514872,848954723,0,0,182,156 +1794,1675515341,848914361,0,0,20,276 +1129,1675517597,848947790,0,0,6,301 +4370,1675517737,848905385,0,0,0,116 +688,1675518686,848936921,151032,20,6,1894 +688,1675518686,848936921,848936921,6,6,1894 +5229,1675519201,552694,848910736,35,48,7207 +6256,1675519401,848929097,783504,188,76,2422 +6256,1675519401,848929097,848929097,76,76,2422 +1337,1675520195,792025,0,0,48,223 +6937,1675520253,848931759,0,0,187,55 +4454,1675522373,848953965,0,0,2,131 +3901,1675523265,270449,0,0,65,175 +3032,1675523799,699876,0,0,61,274 +6317,1675523813,772572,0,0,0,95 +1687,1675524947,766625,0,0,6,265 +5414,1675525739,780339,0,0,74,149 +6015,1675526293,848931759,0,0,187,88 +1962,1675528002,767507,0,0,138,262 +1740,1675528291,848954504,848953915,0,2,3086 +1740,1675528292,848954504,848954504,2,2,3062 +225,1675528380,151032,848954266,35,20,4106 +7128,1675529535,580805,0,0,76,71 +436,1675529756,616498,848954170,35,48,4975 +436,1675529756,616498,616498,48,48,4975 +733,1675529913,344518,0,0,20,237 +3776,1675529993,785871,0,0,0,201 +6209,1675530011,226713,848955101,134,91,1159 +3675,1675530092,848954637,848954709,0,11,870 +1959,1675531850,699876,0,0,61,147 +4275,1675531883,848941569,786347,0,91,538 +671,1675532185,848927565,0,0,138,254 +767,1675532454,735108,0,0,20,222 +5113,1675532715,786164,0,0,11,131 +5968,1675533370,848946291,848955057,176,0,1467 +2571,1675534671,693802,0,0,138,304 +2497,1675534818,848942432,0,0,74,223 +279,1675535431,769838,0,0,6,123 +1841,1675535552,848953950,848954362,35,6,5187 +181,1675535636,848914361,0,0,20,211 +181,1675535636,848914361,848914361,20,20,211 +1844,1675536352,321370,848954368,0,69,6977 +1484,1675537470,848910455,0,0,4,246 +1484,1675537490,848910455,848910455,4,4,222 +5804,1675538008,848954078,0,0,152,104 +5221,1675538364,848954987,0,0,22,101 +3692,1675538710,693802,0,0,138,194 +2556,1675540759,848941831,848928204,88,48,967 +2171,1675540950,213,0,0,61,237 +2171,1675540950,213,213,61,61,237 +3716,1675541279,848943308,0,0,22,161 +1639,1675541645,779484,0,0,48,231 +4357,1675543347,848951632,0,0,138,141 +3882,1675546025,272678,0,0,119,237 +1740,1675546998,785504,848954504,2,86,3112 +1872,1675547597,114434,0,0,61,213 +1772,1675547756,718150,848910736,35,86,632 +199,1675550933,503636,755121,5,138,4428 +1252,1675551640,848941909,0,0,6,380 +1427,1675552582,761474,0,0,33,227 +1548,1675553641,769838,0,0,6,231 +2738,1675554599,848852584,0,0,25,194 +4516,1675554763,848951023,0,0,86,190 +5004,1675554858,748168,0,0,42,134 +3923,1675555561,539612,0,0,65,325 +1844,1675555875,848951176,321370,69,138,6903 +486,1675558288,13512,0,0,20,264 +364,1675558371,848948254,0,0,6,194 +1321,1675559035,848948254,0,0,6,210 +1271,1675559185,769838,0,0,6,283 +1735,1675559280,848954240,848954266,35,6,1131 +3156,1675559396,848942307,0,0,76,176 +6,1675559691,230556,0,0,48,220 +481,1675560370,848883123,0,0,12,243 +1734,1675560860,848883123,0,0,12,204 +3878,1675560915,780325,0,0,11,152 +824,1675561296,769838,0,0,6,202 +4844,1675561692,848952236,0,0,74,135 +5822,1675562400,552694,848910736,35,48,1458 +5411,1675562710,264792,0,0,138,121 +1064,1675562872,848947790,0,0,6,193 +2636,1675563122,848954015,789838,66,2,1732 +2132,1675563361,848954410,0,0,2,177 +1761,1675564507,769838,0,0,6,263 +7030,1675565559,848947293,0,0,85,67 +304,1675565623,769838,0,0,6,155 +3995,1675565790,848954762,0,0,119,185 +4612,1675566439,848951632,0,0,138,119 +7125,1675566863,775730,0,0,105,76 +5980,1675567376,848954655,848955059,0,163,479 +173,1675567380,552694,848910736,35,48,1457 +3031,1675569781,848954700,848935728,53,32,4172 +4311,1675569861,848954361,848954465,0,183,3457 +1443,1675570803,744645,701261,25,183,1740 +6247,1675571027,848946291,848950167,176,0,2037 +4876,1675571581,848954820,0,0,76,135 +1260,1675571636,572558,848954190,35,48,1541 +2602,1675572338,848953068,0,0,85,260 +432,1675572340,276237,848954199,35,48,8118 +3891,1675572377,848954732,0,0,61,212 +1215,1675572385,848936926,667167,24,6,1340 +1502,1675572759,766625,848952005,4,6,3378 +5828,1675574249,334822,848943251,0,163,539 +1081,1675574833,769838,0,0,6,104 +2454,1675575601,344518,0,0,20,2062 +1256,1675577548,848881759,0,0,183,208 +7204,1675578140,848955129,0,0,163,64 +1773,1675578403,398664,0,0,33,260 +1085,1675579161,769838,0,0,6,211 +2818,1675579436,415671,848951415,46,85,2483 +42,1675581225,699876,0,0,61,224 +4135,1675581840,848954776,0,0,119,162 +1470,1675581934,848948254,0,0,6,229 +1168,1675582326,213,0,0,61,918 +1168,1675582326,213,213,61,61,918 +502,1675582818,735108,0,0,20,226 +2108,1675583219,792025,0,0,48,251 +1293,1675583278,848943607,0,0,6,315 +4384,1675583453,848952678,848888672,134,91,1233 +7033,1675583648,848929097,0,0,76,62 +1678,1675584111,848943607,0,0,6,191 +1820,1675584143,848953950,0,0,6,235 +1230,1675585079,848936929,0,0,6,263 +1484,1675586094,573851,848910455,4,48,265 +774,1675586871,848947790,0,0,6,235 +4244,1675588626,270449,0,0,65,214 +980,1675589832,848949948,848952032,25,183,3360 +332,1675589907,848936926,667167,24,6,5178 +4835,1675590979,780354,0,0,11,145 +1048,1675591224,848941831,0,0,48,220 +2476,1675593001,848940894,848931764,35,11,3450 +2476,1675593001,848940894,848940894,11,11,3450 +7231,1675593973,848955081,0,0,172,60 +1086,1675596246,463920,0,0,20,126 +6479,1675596576,772572,0,0,0,73 +6810,1675596843,848929097,0,0,76,61 +192,1675597500,552694,848954196,35,48,2051 +2589,1675597722,848954611,848912046,41,32,1873 +5439,1675598588,848950496,0,0,172,114 +2912,1675599671,848954006,848945000,66,2,7162 +5995,1675600057,264792,0,0,138,126 +4228,1675600172,780325,0,0,11,120 +629,1675600315,792025,0,0,48,276 +2820,1675603349,848953068,0,0,85,270 +3031,1675604644,787586,848954700,32,74,4237 +136,1675604789,503636,848881936,5,138,3242 +136,1675604789,503636,503636,138,138,3242 +565,1675605069,697760,0,0,34,176 +84,1675605563,848947790,0,0,6,204 +1994,1675606962,848954504,848954190,35,2,1214 +4013,1675608104,848881027,533169,53,0,1285 +5203,1675608732,848953039,848954945,127,85,1075 +2589,1675610980,741494,848954611,32,2,1902 +2589,1675610980,741494,741494,2,2,1902 +2589,1675610980,741494,741494,2,2,1902 +2589,1675610982,848954611,741494,2,32,1849 +6058,1675611404,746070,0,0,74,123 +66,1675611727,848949204,0,0,105,208 +7097,1675612530,848946291,751295,189,76,3199 +2327,1675612689,848954410,0,0,2,295 +5494,1675612981,276237,0,0,48,142 +5992,1675613417,848954998,848945639,0,152,662 +966,1675614790,848927565,788057,0,138,2789 +7930,1675615340,848953992,0,0,2,38 +1068,1675615690,616498,848910736,198,48,2118 +370,1675615958,848927565,0,0,138,219 +1847,1675616249,766625,0,0,6,727 +3119,1675618440,848951653,848943139,0,65,1010 +5565,1675618634,780354,0,0,11,91 +644,1675619298,769838,0,0,6,244 +1883,1675620267,503636,755121,5,138,2300 +4850,1675620340,848954762,0,0,119,152 +5146,1675620800,750685,848924974,4,76,3812 +5146,1675620801,750685,750685,76,76,3532 +2335,1675621589,213,0,0,61,550 +682,1675622494,848933579,848953285,0,6,1889 +5342,1675623844,848951632,0,0,138,682 +415,1675625775,735108,0,0,20,199 +6258,1675625842,848940612,0,0,174,82 +1233,1675625959,766625,0,0,6,298 +7760,1675626033,455512,0,0,172,51 +1284,1675626429,735108,0,0,20,202 +221,1675627180,848943607,0,0,6,265 +816,1675627338,848941404,0,0,183,179 +3523,1675627514,746070,0,0,74,220 +332,1675627559,848936921,848936926,0,6,5188 +5234,1675628106,848940612,0,0,174,110 +1411,1675629332,276237,0,0,48,567 +704,1675631637,398664,0,0,33,196 +4713,1675633655,848949067,0,0,0,175 +1850,1675633680,552694,0,0,48,42 +7075,1675633997,848940612,0,0,174,108 +2162,1675634386,848953068,0,0,85,255 +3920,1675634737,848954812,0,0,65,207 +1458,1675636680,552694,0,0,48,235 +4419,1675637239,848953068,0,0,85,155 +1770,1675637571,848954504,0,0,2,1074 +3008,1675637831,699876,0,0,61,175 +1263,1675637929,848947790,0,0,6,246 +2364,1675638896,792025,0,0,48,185 +2312,1675639128,213,0,0,61,508 +1637,1675640586,848933579,0,0,6,148 +1525,1675640610,848936929,0,0,6,240 +5556,1675640888,780354,0,0,11,114 +8083,1675641839,848954608,0,0,88,33 +7351,1675642366,848955129,0,0,163,48 +1379,1675642570,848943607,0,0,6,228 +6249,1675642617,226713,0,0,91,85 +2537,1675644412,503636,0,0,138,209 +1057,1675645071,848910455,0,0,4,297 +771,1675645215,848948254,0,0,6,241 +3496,1675645391,410165,0,0,85,218 +3222,1675646402,264792,848954648,130,138,1520 +4680,1675646565,848940612,0,0,174,189 +2179,1675647213,716656,0,0,85,483 +4029,1675647872,848953965,0,0,2,188 +422,1675648297,848954428,0,0,20,733 +7994,1675649804,767834,0,0,182,34 +1311,1675650492,848941831,0,0,48,372 +4340,1675653336,848952678,0,0,91,162 +749,1675653902,848949948,0,0,183,201 +622,1675654035,13512,0,0,20,304 +1429,1675654263,848943607,0,0,6,200 +285,1675654447,766625,0,0,6,206 +1480,1675655431,735108,0,0,20,153 +1403,1675657911,848947790,0,0,6,254 +3461,1675658150,848954555,0,0,91,260 +4403,1675659084,572558,0,0,48,6167 +901,1675659385,848881759,767831,0,183,2002 +1020,1675660062,769838,0,0,6,203 +2343,1675660726,571769,0,0,74,225 +5712,1675660740,848940612,0,0,174,110 +2914,1675661266,716656,0,0,85,216 +448,1675661559,151032,848954218,35,20,7376 +953,1675661825,848954240,848951612,35,6,1227 +4499,1675663018,780375,848924572,152,11,3301 +1336,1675663441,848951549,0,0,20,368 +4044,1675663947,848952556,0,0,74,207 +1578,1675666546,848927565,0,0,138,271 +4690,1675667032,848951023,0,0,86,127 +2411,1675667685,848954504,0,0,2,274 +337,1675668185,848947790,0,0,6,273 +4403,1675669138,775955,572558,48,74,6143 +1940,1675669560,272255,848954170,35,48,1338 +3135,1675670274,848941569,848943213,0,91,1006 +3211,1675671872,794964,0,0,61,202 +459,1675672201,761474,0,0,33,277 +2436,1675672373,848954504,0,0,2,165 +2477,1675673581,848942432,0,0,74,174 +2980,1675674237,785871,0,0,0,106 +540,1675674246,792025,0,0,48,209 +151,1675675117,848951914,0,0,3,217 +4307,1675675742,780354,0,0,11,147 +2607,1675676216,744645,848954360,25,183,982 +5172,1675676709,848940612,0,0,174,162 +4141,1675677516,270449,0,0,65,144 +654,1675677668,848943607,0,0,6,191 +3951,1675677935,848954637,742729,0,11,1754 +3951,1675677939,848954637,848954637,11,11,1730 +2755,1675678503,848952932,848950265,46,85,2387 +2547,1675678927,848943092,0,0,20,2242 +132,1675679066,576637,795044,69,86,5785 +3283,1675679255,699876,0,0,61,170 +11,1675679855,769838,0,0,6,190 +6635,1675680093,848952288,0,0,86,94 +4798,1675680249,786164,0,0,11,181 +6259,1675680717,775729,589825,182,105,6540 +6259,1675680717,775729,775729,105,105,6540 +1528,1675681042,848947314,0,0,20,222 +2584,1675681281,741494,0,0,2,575 +4206,1675681356,848954776,0,0,119,172 +1700,1675681509,848937811,0,0,61,220 +1835,1675682917,744645,848954360,25,183,2869 +4868,1675683089,780325,848924572,152,11,1737 +557,1675684469,693887,848936929,6,48,4544 +6377,1675686043,848929097,392186,188,76,1776 +249,1675687036,848949204,0,0,105,383 +4086,1675688685,848952678,0,0,91,191 +1157,1675690751,213,0,0,61,230 +344,1675690969,848953926,0,0,2,7374 +7660,1675691058,848955081,0,0,172,51 +1564,1675691938,848941909,848952757,42,6,2720 +1134,1675693368,729178,848941179,35,48,8153 +1795,1675693368,718150,848941179,35,86,3950 +4173,1675694151,375649,848954779,0,32,410 +116,1675694740,848943607,0,0,6,206 +1,1675696260,769838,848950001,22,6,8491 +4317,1675697304,780354,0,0,11,151 +2140,1675697707,848953214,744969,25,3,2731 +3488,1675697791,410165,0,0,85,150 +2217,1675698824,848943092,0,0,20,2708 +1683,1675700288,848909148,0,0,20,1040 +5870,1675700355,848955133,0,0,91,147 +190,1675701463,848916830,0,0,20,207 +7774,1675702670,455512,0,0,172,41 +4722,1675703734,848940612,0,0,174,207 +2957,1675704310,848951023,0,0,86,175 +317,1675704628,848914361,848943308,22,20,6717 +660,1675704749,848954312,0,0,2,244 +1402,1675705892,848936921,0,0,6,613 +1534,1675707641,848936926,0,0,6,470 +1060,1675708043,114434,0,0,61,269 +4960,1675708740,848940612,0,0,174,135 +463,1675709413,848947790,0,0,6,236 +2654,1675709740,344518,0,0,20,9065 +2654,1675709790,344518,344518,20,20,9065 +1683,1675710364,848883123,848909148,20,12,1016 +2700,1675710455,785871,0,0,0,202 +4897,1675710693,848940612,0,0,174,182 +798,1675711154,741494,0,0,2,247 +2175,1675712144,792025,0,0,48,257 +410,1675712567,848949948,0,0,85,233 +2347,1675713494,848953309,0,0,32,225 +1431,1675714208,735108,0,0,20,165 +1683,1675714450,848936921,848883123,12,6,1036 +1683,1675714450,848936921,848936921,6,6,1036 +1683,1675714450,848936921,848936921,6,6,1036 +2695,1675715528,767507,291491,65,138,3213 +4310,1675716080,794964,0,0,61,174 +69,1675716699,848936926,0,0,6,185 +1769,1675717992,463920,0,0,20,278 +6114,1675718034,848952288,0,0,86,114 +4602,1675718124,848953068,0,0,85,173 +4602,1675718124,848953068,848953068,85,85,173 +4602,1675718124,848953068,848953068,85,85,173 +318,1675720313,693887,0,0,48,243 +1674,1675721090,848953926,0,0,2,3770 +4386,1675721584,848913418,0,0,65,155 +174,1675721952,398664,0,0,33,252 +4582,1675722498,848954768,0,0,91,171 +4379,1675723318,848952488,0,0,32,187 +1909,1675724158,848954312,0,0,2,150 +4988,1675725657,782308,0,0,76,148 +590,1675725893,744645,848951434,25,85,3058 +590,1675725893,744645,744645,85,85,3058 +2548,1675726144,848954410,0,0,2,229 +1717,1675726551,848943607,0,0,6,188 +7733,1675728313,604194,0,0,174,49 +52,1675729162,848954354,0,0,105,263 +7739,1675729550,848940612,0,0,174,48 +6450,1675730187,848946291,0,0,76,61 +2213,1675730625,848952114,744969,25,3,1140 +1712,1675730975,769838,0,0,6,239 +1236,1675731831,848927565,0,0,138,276 +1532,1675732556,573851,0,0,48,233 +1317,1675732694,848936921,0,0,6,158 +3614,1675733818,716656,0,0,85,282 +545,1675734322,848947790,0,0,6,178 +7015,1675734363,334822,231006,0,163,884 +2031,1675734589,741494,0,0,2,209 +6616,1675734772,604194,0,0,174,126 +2800,1675735869,792025,0,0,48,188 +189,1675736072,848880663,848952032,25,138,1518 +734,1675736081,848916830,0,0,20,170 +4602,1675736279,848952678,848953068,85,61,287 +298,1675736768,572558,0,0,48,312 +7776,1675737511,848954668,0,0,172,58 +5033,1675737567,848940295,0,0,187,227 +1569,1675737903,848936926,0,0,6,236 +1076,1675739323,848916830,0,0,20,206 +1344,1675739526,848936926,0,0,6,291 +150,1675740735,344518,0,0,20,185 +4847,1675742553,848881027,0,0,0,377 +675,1675742574,848910455,0,0,4,226 +5074,1675743805,848946291,0,0,76,140 +1622,1675744641,344518,0,0,20,217 +8064,1675744668,604194,0,0,174,43 +3391,1675745100,848954640,0,0,2,308 +3391,1675745100,848954640,848954640,2,2,308 +3391,1675745102,848954640,848954640,2,2,308 +4946,1675746007,848938594,0,0,4,135 +2575,1675746603,848890745,744969,25,0,7534 +1087,1675747540,848953046,848910736,198,35,3082 +2525,1675748371,415671,848954466,83,85,4754 +4510,1675749411,604194,0,0,174,166 +5602,1675750639,848954996,848947928,14,172,1152 +5755,1675750901,848952450,0,0,74,118 +1255,1675751681,276237,0,0,48,207 +4314,1675752715,848940612,0,0,174,164 +775,1675752873,554600,0,0,183,275 +673,1675754558,769838,0,0,6,345 +231,1675754766,848947790,0,0,6,257 +8018,1675755364,604194,0,0,174,35 +1094,1675755990,848936921,0,0,6,318 +6916,1675757077,848929097,0,0,76,69 +1677,1675757310,848953401,0,0,138,687 +440,1675757429,848916830,0,0,20,219 +6151,1675757642,604194,0,0,174,139 +381,1675758343,587894,0,0,48,214 +3860,1675758834,848913418,0,0,65,284 +244,1675758947,848916830,0,0,20,178 +7087,1675759399,604194,0,0,174,80 +1621,1675759460,272255,848954170,35,48,1643 +397,1675761708,735108,0,0,20,157 +1999,1675763181,616498,0,0,48,262 +2729,1675765402,785871,0,0,0,235 +500,1675766035,729178,848941179,35,48,4824 +4102,1675767059,848940612,0,0,174,158 +5954,1675768254,848954762,0,0,119,132 +893,1675768636,848936929,0,0,6,250 +99,1675768728,848916830,0,0,20,266 +1138,1675769369,848943607,0,0,6,230 +8181,1675769489,848945828,848953097,137,105,464 +873,1675770125,792025,0,0,48,272 +873,1675770125,792025,792025,48,48,272 +4330,1675770284,848940612,0,0,174,166 +3002,1675770729,848952488,0,0,32,273 +1657,1675772045,848889826,0,0,42,198 +354,1675772796,848947790,0,0,6,179 +1004,1675773258,411608,795044,69,138,2113 +1939,1675773975,848941404,0,0,183,275 +3932,1675775265,848954732,0,0,61,202 +4791,1675775611,786164,0,0,11,176 +3604,1675775690,785871,0,0,0,178 +4154,1675776601,848890745,848947293,85,0,6995 +2261,1675776782,782908,0,0,32,299 +2388,1675776992,848953309,0,0,32,241 +1141,1675777411,848910455,0,0,4,179 +4051,1675777943,848890745,848947293,85,0,4219 +3892,1675778009,848890745,848947293,85,0,4418 +2732,1675778085,848951023,0,0,86,265 +4139,1675778187,848953068,0,0,85,136 +475,1675778450,276237,0,0,48,271 +6243,1675778920,848950496,0,0,172,130 +2618,1675779134,848909148,0,0,20,224 +3976,1675779816,848890745,848947293,85,0,9432 +96,1675780485,848941909,0,0,6,205 +4710,1675780561,848954812,0,0,65,250 +1793,1675781173,848953926,0,0,2,4523 +3689,1675784648,410165,0,0,85,203 +2611,1675785427,848951023,0,0,86,222 +5071,1675786016,775955,0,0,74,175 +100,1675786848,554600,0,0,183,278 +3876,1675786876,767834,0,0,182,4126 +339,1675787234,276237,0,0,48,231 +539,1675788097,848937811,0,0,61,284 +1619,1675789082,848916830,0,0,20,267 +1060,1675789490,766625,114434,61,6,300 +5761,1675790335,750685,0,0,76,117 +95,1675790415,344518,0,0,20,223 +5821,1675790507,604194,0,0,174,148 +2948,1675790537,848909148,0,0,20,138 +555,1675791503,616498,0,0,48,272 +4613,1675792355,767834,407332,64,182,3312 +948,1675792550,848943607,0,0,6,245 +3313,1675792842,693256,0,0,76,989 +8338,1675792883,568,0,0,32,43 +631,1675793907,509533,0,0,6,291 +6817,1675794292,649035,0,0,74,108 +2492,1675794790,848953946,0,0,32,456 +110,1675795835,848941909,0,0,6,371 +4142,1675795958,780339,0,0,74,165 +1342,1675796450,848936921,0,0,6,259 +1845,1675796788,735108,0,0,20,221 +1606,1675798549,848936926,0,0,6,238 +4005,1675799090,848890745,848947293,0,0,2638 +1867,1675799348,848943607,0,0,6,213 +81,1675800004,769838,0,0,6,484 +4441,1675800223,848940612,0,0,174,141 +697,1675801060,554600,0,0,183,230 +7981,1675801532,604194,0,0,174,44 +3546,1675802842,848954127,848954695,0,183,802 +3286,1675802890,410165,0,0,85,284 +2724,1675803183,792025,0,0,48,485 +3125,1675803793,463920,795044,69,20,2117 +4089,1675804102,848890745,848947293,0,0,2790 +2,1675804148,848954428,0,0,20,287 +1043,1675804742,718150,848941179,35,86,950 +324,1675804799,848936929,0,0,6,168 +7890,1675805365,604194,0,0,174,52 +5651,1675805853,848953039,848954669,173,85,5648 +2515,1675806352,848953946,0,0,32,348 +3992,1675806387,442099,0,0,97,268 +4759,1675806523,848940612,0,0,174,134 +5894,1675806760,772572,0,0,0,127 +7726,1675808467,604194,0,0,174,81 +1381,1675808935,848936921,0,0,6,599 +6405,1675809531,604194,0,0,174,88 +4605,1675810121,780339,0,0,74,178 +1190,1675811380,848916830,0,0,20,215 +2982,1675811457,568,0,0,32,210 +4186,1675812185,794964,0,0,61,185 +2161,1675812458,782908,0,0,32,291 +786,1675812883,848953926,0,0,2,238 +510,1675814043,276237,0,0,48,102 +3059,1675814581,272255,0,0,48,201 +21,1675814837,848936921,0,0,6,226 +2522,1675815554,792025,0,0,48,320 +3266,1675815771,848883123,0,0,12,250 +7870,1675815812,604194,0,0,174,46 +1567,1675816591,782322,848952807,5,20,2863 +7691,1675816672,604194,0,0,174,71 +601,1675817067,554600,0,0,183,286 +4365,1675817601,848890745,848947293,0,0,4211 +5369,1675818332,848940894,848954078,152,11,3982 +3125,1675819793,767834,463920,20,182,2141 +5739,1675819946,848953551,0,0,32,122 +342,1675820021,848947790,0,0,6,199 +218,1675820310,587894,0,0,48,265 +2903,1675820459,503636,0,0,138,235 +1372,1675823120,554600,0,0,183,674 +7650,1675824651,604194,0,0,174,52 +2501,1675824929,571769,0,0,74,235 +1510,1675826061,540645,0,0,163,202 +4495,1675827006,848890745,848947293,0,0,4791 +2282,1675827541,503636,0,0,138,349 +2282,1675827543,503636,503636,138,138,349 +535,1675827567,848936929,0,0,6,250 +6671,1675827616,848954015,792503,210,2,1424 +191,1675828735,13512,0,0,20,221 +3020,1675829553,410165,0,0,85,218 +5484,1675829851,775955,848954987,22,74,4959 +2416,1675830703,848951817,848949187,0,32,546 +3268,1675830841,848952450,771856,42,74,938 +352,1675831138,744645,848952032,25,85,1667 +6858,1675831859,693802,0,0,138,135 +6858,1675831859,693802,693802,138,138,135 +1359,1675833000,572558,0,0,48,440 +270,1675833444,848954361,0,0,85,254 +3993,1675834214,676986,848954749,53,138,5463 +7679,1675834246,848955081,0,0,172,58 +592,1675834887,848914361,0,0,20,211 +7510,1675835500,604194,0,0,174,60 +220,1675835883,509533,0,0,6,241 +2572,1675836019,796360,729548,182,138,3895 +4982,1675836756,848890745,0,0,0,160 +6469,1675838807,848954201,0,0,163,105 +4461,1675839524,848945233,848954826,0,91,393 +4870,1675840027,848947757,0,0,74,182 +3907,1675840674,848890745,0,0,0,175 +5106,1675842324,848940612,0,0,174,118 +3575,1675842601,264792,848954698,105,138,5552 +5365,1675842902,848952488,0,0,32,136 +6970,1675843524,604194,0,0,174,68 +2395,1675843571,848951964,0,0,3,278 +3158,1675843705,848954700,0,0,32,281 +5058,1675843790,848953039,0,0,85,164 +589,1675845659,779484,0,0,48,244 +155,1675846246,792025,0,0,48,288 +4908,1675846501,848890745,848947293,0,0,3877 +3574,1675847132,785871,0,0,0,230 +5542,1675851345,604194,0,0,174,2109 +1131,1675852074,848941909,0,0,6,177 +609,1675852605,151032,848953956,35,20,886 +1496,1675854744,718150,0,0,86,613 +4599,1675856234,539612,0,0,65,126 +649,1675856719,848880663,848952101,34,138,5103 +649,1675856719,848880663,848880663,138,138,5103 +1498,1675857452,415671,848951964,3,85,3442 +67,1675859595,848945118,848952764,3,183,4866 +3981,1675860775,848953401,848954698,105,138,1584 +4676,1675861708,676986,0,0,138,164 +834,1675861723,848953950,0,0,6,179 +6941,1675862736,848955145,848955217,206,162,2341 +893,1675863246,693887,848936929,6,48,387 +4526,1675863547,348613,0,0,61,26 +4793,1675864973,676986,0,0,138,201 +3536,1675866138,848951632,0,0,138,207 +8004,1675866875,848954744,0,0,172,60 +495,1675867046,572558,0,0,48,330 +1320,1675867742,718150,0,0,86,207 +4512,1675869018,348613,0,0,61,162 +1238,1675869310,848952522,0,0,105,1046 +250,1675869403,848953926,0,0,2,280 +1302,1675872159,573851,0,0,48,303 +6783,1675874226,848940612,0,0,174,71 +1386,1675874611,848954090,0,0,105,303 +5064,1675875095,848952236,0,0,74,186 +7173,1675875535,604194,0,0,174,72 +4246,1675876121,348613,0,0,61,201 +3412,1675876240,746070,0,0,74,216 +3069,1675876369,848951176,0,0,138,175 +3647,1675876596,627483,0,0,86,216 +1830,1675876602,848941909,0,0,6,267 +2142,1675877071,744645,0,0,85,335 +3875,1675877269,276237,0,0,48,202 +7487,1675877331,604194,0,0,174,59 +7485,1675877426,737871,848955313,0,11,584 +5272,1675877815,604194,0,0,174,141 +5272,1675877985,848890745,604194,174,0,141 +4469,1675878455,848940612,0,0,174,160 +8572,1675878576,848940612,0,0,174,34 +3632,1675879138,796360,848951653,65,138,4264 +2731,1675880659,848954208,848954598,0,2,5570 +201,1675880817,769838,0,0,6,293 +2250,1675881119,767507,0,0,138,189 +6632,1675881684,848929097,0,0,76,129 +363,1675882440,272255,0,0,48,498 +5091,1675882472,848954820,848954298,130,76,663 +3111,1675883391,735108,0,0,20,263 +8319,1675884219,848955081,0,0,172,47 +1660,1675884396,572558,0,0,48,325 +1995,1675884750,848953068,0,0,85,733 +5377,1675885942,848954894,0,0,152,119 +1148,1675886075,848954361,0,0,85,158 +1203,1675887230,848941909,0,0,6,292 +945,1675887255,848941831,0,0,48,163 +4595,1675887899,848954768,0,0,91,184 +3347,1675887934,848953068,0,0,85,259 +7682,1675889463,604194,0,0,174,63 +7294,1675889858,848927565,0,0,138,64 +4715,1675890766,848953962,0,0,2,152 +213,1675891260,848947790,0,0,6,232 +82,1675891915,554600,0,0,183,229 +434,1675894113,848947790,0,0,6,219 +5272,1675894133,848890745,848890745,174,174,144 +981,1675895236,344518,848883123,12,20,9621 +4829,1675895730,848940612,0,0,174,194 +3865,1675896056,848953068,0,0,85,258 +4447,1675897167,375649,0,0,32,162 +1316,1675897201,848951549,848883123,12,20,5299 +1560,1675897204,848916830,848883123,12,20,4289 +1091,1675898500,151032,848953956,35,20,941 +2121,1675898666,744645,0,0,85,234 +2241,1675898806,848954361,0,0,85,197 +653,1675899939,848880663,848952033,34,138,5329 +653,1675899939,848880663,848880663,138,138,5329 +2152,1675900189,848952932,848950262,0,85,1567 +1749,1675900349,50103,0,0,6,242 +2589,1675900446,848954312,848954611,32,2,2289 +7988,1675901190,848954607,0,0,32,43 +690,1675901516,848941909,0,0,6,349 +5389,1675901661,604194,0,0,174,177 +1032,1675902787,50103,0,0,6,283 +460,1675903390,848883478,0,0,25,298 +532,1675904115,848953950,0,0,6,276 +1604,1675905472,848949948,0,0,85,156 +439,1675906190,151032,848953956,35,20,5966 +5241,1675906561,775955,848954987,22,74,1478 +2319,1675906605,744645,848852584,25,85,1051 +1604,1675906842,848949948,848949948,85,85,132 +7464,1675907318,848954266,0,0,35,123 +5399,1675907467,848890745,0,0,174,129 +2944,1675907803,848890745,0,0,174,201 +2702,1675908246,848952270,0,0,0,1986 +6045,1675908868,604194,0,0,174,99 +5678,1675910815,604194,0,0,174,213 +3223,1675911167,768161,0,0,0,285 +180,1675911429,769838,0,0,6,239 +5813,1675911834,848952288,0,0,86,659 +1268,1675912840,573851,0,0,48,245 +729,1675913628,848941909,0,0,6,326 +3085,1675914222,848890745,0,0,174,214 +6119,1675914993,785504,334822,0,86,3318 +3282,1675916109,339555,0,0,74,235 +6022,1675919629,616498,0,0,48,114 +6759,1675920416,604194,0,0,174,89 +5303,1675920905,848954762,0,0,185,132 +3085,1675922959,693802,848890745,174,138,190 +1533,1675923180,794964,848952324,4,61,5656 +3340,1675923930,848954006,0,0,2,268 +3841,1675925414,785871,0,0,0,163 +6644,1675926298,848929352,0,0,76,73 +2099,1675927461,848941404,0,0,183,249 +5452,1675927773,848955081,0,0,172,163 +5926,1675928393,776810,0,0,76,140 +5771,1675928810,627483,848951612,35,86,1541 +3622,1675929055,339555,0,0,74,228 +8031,1675929361,848955238,0,0,170,65 +2944,1675930580,693802,848890745,174,138,181 +893,1675930636,693887,693887,48,48,731 +6602,1675930931,604194,0,0,174,88 +808,1675931007,151032,0,0,20,1443 +5720,1675931410,775729,848954210,0,105,1482 +742,1675931973,848880663,848952033,34,138,1094 +2944,1675932845,693802,693802,138,138,181 +646,1675933140,213,699876,0,61,3575 +2587,1675933462,848942432,0,0,74,268 +6592,1675933581,604194,0,0,174,111 +1125,1675934412,848880663,848952033,34,138,699 +893,1675934871,848936929,693887,48,6,772 +893,1675934872,693887,848936929,6,48,707 +1418,1675935077,463920,848883123,12,20,3826 +3839,1675935233,348613,0,0,0,165 +4012,1675935389,782322,0,0,20,474 +6550,1675935787,604194,0,0,174,112 +7960,1675936376,276237,0,0,48,65 +1957,1675936800,213,699876,0,61,6052 +2704,1675940263,351605,0,0,61,330 +98,1675941189,848953950,0,0,6,300 +3208,1675941563,767834,0,0,182,228 +451,1675942278,848953214,0,0,3,263 +4841,1675943974,351605,0,0,61,156 +5487,1675944618,848949344,0,0,42,176 +57,1675945016,848953779,0,0,5,160 +1802,1675945497,344518,848883123,12,20,1761 +6710,1675945840,604194,0,0,174,87 +6199,1675947264,848955043,0,0,172,423 +293,1675947325,848954428,540645,163,20,6252 +3498,1675948701,580805,0,0,76,251 +1250,1675948843,848951549,848883123,12,20,2676 +6818,1675949321,848955008,848955201,0,152,244 +5808,1675949880,787586,0,0,74,135 +1873,1675950232,848947790,0,0,6,162 +5520,1675950473,848955019,0,0,185,170 +4019,1675950555,848945162,848954732,0,33,2733 +6698,1675951643,848951960,848955179,0,97,1439 +2009,1675951773,741494,0,0,2,193 +6964,1675952055,848953992,0,0,2,95 +6187,1675952580,616498,0,0,48,120 +4015,1675952691,848945162,848954732,0,33,1798 +6948,1675952818,848940612,0,0,174,71 +7109,1675953450,848940612,0,0,174,62 +6892,1675955542,604194,0,0,174,99 +2044,1675956439,744645,0,0,85,273 +6175,1675956441,848940612,0,0,174,173 +1580,1675956765,848954127,848952875,0,183,7103 +1261,1675957335,848954208,0,0,2,573 +7609,1675957500,848955204,848907435,0,91,1228 +6628,1675957792,848955238,0,0,170,92 +3863,1675958222,398664,848954732,0,33,5160 +1054,1675960856,750685,848925398,42,76,4470 +1112,1675962158,848949204,0,0,105,291 +3567,1675962261,785871,0,0,0,232 +5196,1675962603,775955,0,0,74,232 +761,1675962946,848941909,0,0,6,321 +761,1675962946,848941909,848941909,6,6,321 +6268,1675962953,604194,0,0,174,95 +2231,1675963428,848954410,0,0,2,840 +5961,1675963789,604194,0,0,174,144 +257,1675964431,344518,0,0,20,236 +1527,1675964904,374049,0,0,183,165 +288,1675964990,398664,114434,0,33,3024 +288,1675965282,114434,398664,33,0,2877 +605,1675965350,848929146,170853,183,85,10466 +6067,1675965530,604194,0,0,174,150 +6530,1675966667,848954637,0,0,11,158 +1725,1675966947,848945118,848952032,25,183,3311 +3804,1675967041,616498,0,0,48,180 +4271,1675967395,780339,0,0,74,167 +5504,1675967545,848955081,0,0,172,171 +1008,1675967888,572558,0,0,48,201 +5007,1675967903,848943381,0,0,97,214 +1442,1675968576,848929146,170853,183,85,6388 +6284,1675968810,775744,712365,0,187,222 +248,1675969016,398664,114434,0,33,841 +849,1675969883,848936926,0,0,6,184 +668,1675970171,848954312,0,0,2,175 +3400,1675970513,848953068,848954594,0,85,4378 +930,1675970777,848929146,170853,183,85,5029 +3407,1675971790,848881027,751231,0,0,1907 +484,1675972040,398664,114434,0,33,1806 +3030,1675973715,794964,699876,0,61,3856 +7782,1675975296,848940894,0,0,11,64 +878,1675975364,230556,0,0,48,158 +5,1675975918,848936929,0,0,6,273 +481,1675975974,463920,848883123,12,20,645 +5080,1675976713,616498,0,0,48,180 +3190,1675977357,782308,0,0,76,255 +657,1675977716,848954312,0,0,2,314 +5430,1675978072,789326,0,0,4,184 +3409,1675978169,848954637,0,0,11,214 +6209,1675978910,848952862,226713,91,93,2473 +3076,1675979359,767834,0,0,182,402 +6903,1675979546,848890745,0,0,174,89 +2256,1675979844,848952932,848951321,25,85,1152 +5566,1675980466,616498,0,0,48,391 +6130,1675980641,264108,0,0,172,117 +3577,1675980953,339555,0,0,74,216 +3773,1675981565,616498,0,0,48,171 +4919,1675982200,780375,0,0,11,144 +1631,1675983469,769838,0,0,6,193 +2460,1675983671,848952932,848951321,25,85,533 +6973,1675983915,848954539,0,0,105,68 +1587,1675984649,848954354,848952953,42,105,1314 +693,1675985290,398664,114434,0,33,5578 +4083,1675985411,171766,348613,0,33,3592 +5300,1675985460,787334,848943095,0,86,593 +481,1675988040,384998,463920,20,86,645 +242,1675988757,848929146,170853,183,85,2249 +3548,1675988859,679915,0,0,11,200 +5795,1675989630,848954762,0,0,185,137 +3906,1675991115,848945162,848954732,0,33,1081 +3544,1675991198,339555,0,0,74,258 +2878,1675992393,213,699876,0,61,6352 +2714,1675992484,785504,0,0,20,231 +204,1675992799,848912363,0,0,61,324 +543,1675993470,848929146,170853,183,85,2438 +1348,1675994205,848953950,0,0,6,169 +1278,1675994284,213,699876,0,61,1898 +1278,1675994284,213,213,61,61,1898 +2791,1675995592,568,0,0,32,270 +2791,1675995593,568,568,32,32,270 +5189,1675995862,276237,0,0,48,166 +2852,1675998008,848954597,0,0,32,294 +5666,1675998309,848950496,0,0,172,159 +2698,1675999935,415671,848954594,0,85,11109 +812,1676000216,848947314,0,0,20,325 +4056,1676001490,796360,848913418,65,138,6251 +5048,1676001678,848954120,0,0,91,182 +4491,1676001877,848890745,0,0,174,212 +7427,1676002506,848951960,0,0,97,67 +109,1676002868,50103,0,0,6,304 +2691,1676003171,848954127,848952875,0,183,3865 +217,1676003224,848954312,0,0,2,231 +718,1676003354,848951176,0,0,138,282 +825,1676004544,848929146,170853,183,85,2362 +4552,1676004873,627483,0,0,86,182 +4641,1676006467,848935026,0,0,0,484 +3492,1676006907,616498,0,0,48,206 +9,1676007319,848936929,0,0,6,206 +1891,1676007963,213,699876,0,61,4355 +4077,1676008089,747735,0,0,65,116 +2951,1676008690,848953401,0,0,138,311 +794,1676008811,848945433,751946,0,138,2108 +1010,1676011129,848953068,848902872,183,85,7404 +5015,1676011410,276237,0,0,48,190 +2491,1676012371,848953937,0,0,74,228 +27,1676013257,848954312,0,0,2,166 +1104,1676013788,848936926,0,0,6,222 +3221,1676014043,848890745,716656,85,174,3941 +6420,1676014569,848951308,848937060,203,85,2268 +7799,1676015163,410165,0,0,85,55 +4092,1676015402,848954776,0,0,185,191 +1350,1676016088,761474,848952270,0,33,1902 +7071,1676016870,848929097,0,0,76,155 +5809,1676018013,848953962,0,0,2,1582 +4661,1676018761,848954140,0,0,85,194 +4475,1676018950,780375,0,0,11,201 +4475,1676018950,780375,780375,11,11,201 +474,1676019600,848947790,573851,48,6,7599 +652,1676019600,509533,230556,48,6,4115 +652,1676019600,509533,509533,6,6,4115 +2885,1676019630,780339,587894,48,74,9275 +2885,1676019630,780339,780339,74,74,9275 +1001,1676020237,848880663,848894442,34,138,7132 +583,1676020789,848954208,0,0,2,283 +7994,1676021927,848954668,767834,182,172,1340 +2325,1676022174,848927565,848943740,0,138,3700 +3203,1676022245,272255,0,0,48,183 +1001,1676022432,697760,848880663,138,34,7108 +5202,1676023376,780375,0,0,11,99 +5459,1676023455,780375,0,0,11,168 +1806,1676024173,848929146,170853,183,85,6401 +2702,1676024419,848945162,848952270,0,33,2003 +7628,1676024848,848934831,0,0,163,84 +6409,1676024934,848952862,226713,91,93,4013 +551,1676025312,344518,0,0,20,277 +2588,1676025736,848954361,848954594,0,85,3689 +832,1676025793,213,699876,0,61,8991 +2929,1676025958,848949948,848852584,25,85,6149 +5037,1676026130,351605,0,0,0,169 +288,1676026244,761474,114434,0,33,2901 +3584,1676026320,171766,348613,0,33,3103 +3542,1676026320,171766,348613,0,33,3409 +5299,1676026386,848890745,0,0,174,177 +13,1676026542,848936929,0,0,6,168 +800,1676026945,848936926,0,0,6,282 +5749,1676028940,848955149,848950729,0,162,2173 +708,1676031926,761474,848952270,0,33,2771 +515,1676032593,848941831,0,0,48,254 +2983,1676033415,848951023,0,0,86,111 +7065,1676033640,848955204,0,0,91,138 +6027,1676034589,848953539,848947837,134,32,2591 +695,1676036141,594491,0,0,86,307 +1491,1676037864,13512,0,0,20,276 +1491,1676037865,13512,13512,20,20,252 +6649,1676038659,848955238,0,0,170,126 +1558,1676038676,13512,0,0,20,240 +216,1676038687,13512,0,0,20,270 +4191,1676038928,270449,0,0,65,184 +6570,1676039315,775729,754653,22,105,1259 +2991,1676041309,848945162,0,0,33,301 +1524,1676042307,761474,848952270,0,33,3761 +2924,1676042426,415671,848954594,0,85,4121 +1869,1676043331,848954090,0,0,105,167 +5269,1676043387,848890745,0,0,174,174 +596,1676044922,848953926,0,0,2,307 +6904,1676045006,848955141,744663,0,152,1342 +483,1676045015,848953950,0,0,6,309 +483,1676045015,848953950,848953950,6,6,309 +1618,1676045250,463920,0,0,20,270 +1371,1676046283,782322,0,0,20,429 +1187,1676047751,213,699876,0,61,1395 +5920,1676047862,218304,0,0,0,154 +617,1676049663,848952522,0,0,105,283 +3021,1676050098,794964,699876,0,61,6182 +858,1676050098,794964,699876,0,61,8317 +5077,1676050177,780375,0,0,11,128 +1784,1676051160,13512,0,0,20,230 +4240,1676051599,389297,0,0,0,216 +1685,1676051927,848949948,0,0,85,272 +5029,1676051997,848952732,848917052,134,91,2517 +6094,1676052511,848940612,0,0,174,163 +117,1676052797,848880663,0,0,138,280 +1329,1676052887,761474,848952270,0,33,2817 +2279,1676052964,848951549,0,0,20,671 +4744,1676053657,276237,0,0,48,307 +1295,1676054758,848897874,0,0,3,243 +626,1676055293,13512,0,0,20,263 +4185,1676055722,848954723,0,0,105,171 +2744,1676056178,213,699876,0,61,1533 +5025,1676058001,848938594,558331,0,4,677 +4954,1676058949,780354,0,0,11,210 +6547,1676059130,848954996,776340,0,172,1619 +3008,1676059632,213,699876,0,61,901 +6328,1676060398,848954637,0,0,11,154 +1122,1676061060,13512,0,0,20,276 +1959,1676061169,213,699876,0,61,1154 +292,1676061361,13512,0,0,20,249 +2544,1676061451,848954607,0,0,32,297 +4937,1676061460,848941404,848952875,0,85,3784 +1956,1676062261,767507,0,0,138,377 +3489,1676062350,171766,348613,0,33,8044 +3355,1676062350,171766,348613,0,33,3622 +764,1676062614,848954208,0,0,2,260 +6872,1676062746,848954774,0,0,187,93 +6689,1676063624,264108,848935817,0,172,1680 +2039,1676065146,785504,0,0,20,300 +7138,1676065247,848955043,783836,0,172,1702 +578,1676065335,779484,0,0,48,408 +5781,1676065521,780375,0,0,11,142 +4910,1676065954,848949493,0,0,48,140 +1783,1676066585,344518,0,0,20,293 +1367,1676066629,573851,0,0,86,255 +6249,1676066865,848952862,0,0,0,1244 +3207,1676067754,848953068,0,0,85,249 +6409,1676067797,848951672,848952862,0,93,4096 +1506,1676067953,848954312,0,0,2,293 +3380,1676068493,848945162,0,0,33,257 +5338,1676069260,848954820,0,0,76,222 +5818,1676069716,627483,0,0,86,124 +1409,1676070803,13512,0,0,20,271 +1870,1676071225,744645,0,0,85,342 +1110,1676071842,848951061,0,0,20,245 +5627,1676072579,789326,0,0,4,58 +3328,1676072801,848949493,0,0,48,331 +3631,1676073030,785871,0,0,0,252 +2011,1676073661,616498,0,0,48,219 +7817,1676074635,848955490,0,0,209,769 +4588,1676075078,848949067,0,0,91,202 +3048,1676075752,571769,0,0,74,320 +3477,1676075874,410165,0,0,85,155 +3665,1676075956,679915,0,0,11,213 +5154,1676076302,848949493,0,0,48,149 +7218,1676076684,649035,0,0,74,94 +3439,1676077240,848951023,0,0,48,225 +3439,1676077248,848951023,848951023,48,48,225 +8138,1676077306,787586,0,0,74,82 +1286,1676078045,848912363,0,0,61,314 +4116,1676078309,272255,0,0,48,155 +7816,1676079328,848890745,0,0,174,60 +2126,1676080281,848927565,848943740,0,138,1083 +3366,1676080288,616498,0,0,48,217 +284,1676080563,13512,0,0,20,322 +1159,1676080856,848880663,0,0,138,291 +5423,1676081065,780375,0,0,11,126 +838,1676081633,573851,0,0,86,308 +5946,1676081639,780375,0,0,11,135 +5276,1676081847,787334,848953281,0,86,1340 +3071,1676082296,848949493,0,0,48,370 +7834,1676083008,848955081,848955373,0,172,826 +1259,1676083123,13512,0,0,20,224 +1259,1676083123,13512,13512,20,20,224 +1878,1676083308,848880663,0,0,138,229 +3305,1676083676,848949493,0,0,48,190 +3063,1676083818,620806,0,0,0,269 +4264,1676084286,848951023,0,0,48,253 +2947,1676084444,848890745,0,0,174,229 +4801,1676086084,848954700,0,0,32,224 +6127,1676086562,848955145,0,0,162,129 +8895,1676086690,848955490,0,0,209,32 +1545,1676086770,848880663,0,0,138,221 +7908,1676086856,649035,0,0,74,56 +3323,1676087218,794964,699876,0,61,2220 +5758,1676087560,848954475,0,0,162,157 +2520,1676087934,616498,0,0,48,231 +5211,1676087956,775955,0,0,74,120 +371,1676089177,848925799,0,0,0,336 +4389,1676089639,848953068,0,0,85,188 +4389,1676089639,848953068,848953068,85,85,188 +620,1676091138,848880663,0,0,138,478 +5281,1676091401,848935026,0,0,185,169 +6543,1676092117,410165,0,0,85,162 +7169,1676092488,775730,0,0,105,92 +3732,1676093011,750685,0,0,76,226 +1972,1676093200,848953068,0,0,85,651 +2406,1676094856,848890745,0,0,174,1238 +4647,1676094991,848954140,0,0,85,167 +2197,1676095394,848954361,0,0,85,323 +5100,1676095769,775955,0,0,74,207 +6707,1676096544,848955149,712074,0,162,1468 +2157,1676097092,744645,0,0,85,292 +1477,1676098383,587894,732810,0,48,4122 +1309,1676098558,848953950,0,0,6,176 +1309,1676098558,848953950,848953950,6,6,176 +6145,1676098845,848952862,0,0,93,156 +5096,1676099414,848954762,0,0,185,140 +852,1676099683,13512,0,0,20,307 +1163,1676099780,848943607,0,0,6,317 +145,1676099934,13512,0,0,20,195 +281,1676099971,463920,0,0,20,272 +965,1676101814,13512,0,0,20,249 +1444,1676102395,509533,230556,48,6,2016 +8526,1676102414,848940612,0,0,174,45 +1538,1676104699,848949204,0,0,105,252 +7288,1676105355,848952488,848925848,134,32,1727 +4354,1676106074,796360,848954812,65,138,3977 +160,1676106170,848947790,0,0,6,261 +6321,1676106278,848952862,0,0,93,194 +2003,1676106716,587894,587894,48,48,4891 +7183,1676107115,746070,0,0,74,97 +2139,1676107748,848954410,0,0,2,313 +8912,1676110671,741238,0,0,182,41 +3322,1676111150,151032,0,0,20,474 +2003,1676113200,780339,587894,48,74,4772 +2003,1676113214,587894,780339,74,48,4435 +3545,1676113544,796360,0,0,138,237 +1718,1676115196,761474,0,0,33,239 +968,1676115596,13512,0,0,20,361 +455,1676115981,509533,230556,48,6,9148 +1095,1676117396,459451,0,0,25,289 +1935,1676117396,785504,0,0,20,316 +4832,1676118191,262676,0,0,215,247 +5640,1676119386,780375,0,0,11,131 +584,1676119512,848943607,0,0,6,282 +573,1676120020,848943607,0,0,6,214 +1501,1676120086,848951176,0,0,138,236 +3741,1676120994,848953965,0,0,2,260 +7390,1676121632,848955204,0,0,91,69 +8879,1676122270,848948099,0,0,185,34 +3775,1676123631,848949493,0,0,48,196 +127,1676123697,848880663,0,0,138,273 +1768,1676124274,848880663,0,0,138,881 +5722,1676124596,780375,0,0,11,152 +428,1676125461,848880663,0,0,138,317 +6991,1676125555,848955238,0,0,216,113 +5688,1676126039,780375,0,0,11,134 +3372,1676127331,785871,0,0,0,305 +345,1676127603,848940894,0,0,11,341 +5656,1676127672,264108,0,0,172,124 +7059,1676128246,848951308,848955238,216,85,3319 +5801,1676128758,848949344,0,0,42,167 +442,1676129580,552694,0,0,48,365 +2979,1676129584,716656,0,0,85,270 +669,1676130001,782322,0,0,20,380 +414,1676130047,848953950,0,0,6,296 +505,1676131373,848954361,0,0,85,216 +4125,1676131779,848890745,0,0,174,242 +7490,1676132117,782308,0,0,76,80 +3131,1676132239,576637,0,0,86,187 +7730,1676132592,1582,0,0,167,75 +3478,1676132644,410165,0,0,85,219 +7525,1676133068,153367,848955323,0,185,695 +1699,1676133405,848947757,0,0,74,235 +1790,1676134074,463920,0,0,20,246 +1324,1676134880,766625,0,0,6,349 +1339,1676134906,509533,0,0,6,240 +1413,1676134911,848943607,0,0,6,296 +5278,1676138171,780375,0,0,11,159 +1572,1676138265,587894,732810,0,48,3317 +7365,1676139146,848955204,0,0,91,68 +7748,1676139150,1582,0,0,167,72 +4136,1676139176,848953039,848899662,127,85,3866 +1472,1676139772,848953950,0,0,6,219 +7831,1676142445,848954266,848955372,191,198,949 +4480,1676142785,848951023,0,0,48,227 +4288,1676142937,272678,0,0,185,178 +8131,1676144638,782308,0,0,76,60 +4823,1676144657,848953068,0,0,85,256 +7805,1676145964,848955081,0,0,172,112 +2308,1676146292,848954504,0,0,2,3147 +2829,1676148321,767834,0,0,182,260 +2559,1676149556,848927565,848943740,0,138,6135 +5786,1676149751,848880663,0,0,138,45 +5786,1676149751,848880663,848880663,138,138,45 +1971,1676150646,587894,848952236,74,48,2110 +7443,1676151202,848954744,848933502,0,172,869 +1971,1676151391,848952236,587894,48,74,2027 +3659,1676151398,442099,0,0,97,247 +3716,1676152990,539612,848943308,22,65,779 +6482,1676153029,769092,0,0,185,174 +2966,1676153410,568,0,0,32,285 +1672,1676154485,13512,0,0,20,275 +3304,1676154905,213,0,0,61,192 +268,1676155061,848952522,0,0,105,301 +45,1676155804,848943607,0,0,6,306 +2865,1676156040,750685,848925398,0,76,1773 +2810,1676156105,767507,0,0,138,249 +5292,1676156439,780375,0,0,11,117 +5292,1676156439,780375,780375,11,11,117 +1697,1676157418,848936926,0,0,6,276 +1649,1676157422,848953950,0,0,6,225 +6835,1676157693,848908351,0,0,91,94 +1670,1676158167,848933579,0,0,6,184 +6156,1676158417,848955067,0,0,0,1413 +885,1676160000,552694,0,0,48,384 +2064,1676160049,848940894,0,0,11,341 +3638,1676160970,796360,0,0,138,266 +1061,1676162462,848948254,848925799,0,6,4222 +1933,1676162633,587894,732810,0,48,2048 +1052,1676163024,509533,0,0,6,298 +7805,1676163351,775730,848955081,172,105,176 +1941,1676164154,792025,0,0,48,626 +2337,1676164165,782908,0,0,32,434 +2371,1676164520,848954607,0,0,32,240 +2423,1676164566,13512,321370,69,20,12154 +7537,1676165425,848910736,0,0,198,96 +2103,1676166254,796360,0,0,138,652 +1182,1676166505,463920,0,0,20,306 +1182,1676166505,463920,463920,20,20,306 +1182,1676166507,463920,463920,20,20,282 +5862,1676166789,848955008,0,0,152,181 +3457,1676167316,410165,0,0,85,195 +367,1676167465,744645,0,0,85,338 +1781,1676168856,848889826,0,0,42,327 +1270,1676169600,552694,0,0,48,330 +6423,1676169715,780375,0,0,11,199 +480,1676170125,509533,0,0,6,256 +1017,1676170801,552694,0,0,48,363 +5141,1676171129,775955,0,0,74,210 +3246,1676171160,848949093,0,0,65,511 +3520,1676171716,794964,699876,0,61,1578 +296,1676171893,13512,321370,69,20,11241 +5345,1676171913,848943381,0,0,97,184 +7403,1676172527,455512,0,0,172,90 +8142,1676173504,848955157,848955425,206,162,884 +1851,1676173791,848953950,0,0,6,235 +3194,1676174400,848951176,767834,182,138,9329 +855,1676174400,848951632,741238,182,138,4925 +1919,1676174745,587894,732810,0,48,3942 +1541,1676175262,509533,0,0,6,269 +7675,1676175521,848954266,0,0,198,70 +4626,1676175633,848905385,0,0,0,291 +6255,1676175674,780375,0,0,11,155 +123,1676175997,463920,0,0,20,309 +6171,1676176283,780375,0,0,11,118 +1907,1676176887,587894,848952236,74,48,3131 +1907,1676176887,587894,587894,48,48,3131 +310,1676177109,848953950,0,0,6,278 +1819,1676177448,587894,732810,0,48,9733 +2429,1676177534,848880663,848953610,34,138,3448 +6836,1676177932,737871,848954548,0,11,379 +841,1676178335,587894,732810,0,48,10466 +3884,1676179075,580805,0,0,76,317 +2086,1676179353,848911465,0,0,86,198 +8697,1676179521,848954637,0,0,11,34 +7552,1676180333,848946291,0,0,76,108 +5867,1676181698,848954996,0,0,172,156 +3242,1676182820,411608,741238,0,138,2848 +3876,1676183005,264792,767834,0,138,5950 +3876,1676183005,264792,264792,138,138,5950 +61,1676183280,552694,0,0,48,271 +1763,1676183413,503636,848881936,5,138,1648 +8750,1676183788,848955490,0,0,209,47 +8230,1676183791,1582,0,0,167,59 +7461,1676184100,848938227,0,0,187,102 +80,1676184250,344518,0,0,20,233 +1175,1676184443,779484,0,0,48,248 +417,1676185424,503636,848881936,5,138,1367 +5524,1676186845,775955,0,0,74,165 +1742,1676187563,848951176,0,0,138,345 +1333,1676188914,509533,0,0,6,321 +366,1676189444,766625,0,0,6,370 +963,1676189581,552694,0,0,48,317 +1741,1676190442,509533,0,0,6,322 +1486,1676191080,552694,0,0,48,230 +1823,1676191533,594491,0,0,86,234 +1823,1676191533,594491,594491,86,86,234 +8436,1676192069,848946770,848955474,0,152,319 +1971,1676192802,587894,848952236,74,48,2015 +647,1676193396,848952024,0,0,163,197 +6434,1676193572,848953992,772572,0,2,2136 +1301,1676194679,766625,0,0,6,324 +1807,1676194897,13512,0,0,20,306 +1746,1676195665,13512,0,0,20,351 +7105,1676195756,848929352,0,0,76,123 +501,1676196069,848936926,0,0,6,311 +2708,1676196948,848953068,0,0,85,302 +4460,1676196974,262676,0,0,215,231 +714,1676197055,848929146,0,0,85,254 +770,1676197419,509533,0,0,6,332 +3188,1676197713,848953068,0,0,85,154 +647,1676200513,848953950,848952024,163,6,197 +970,1676201520,767507,0,0,138,295 +133,1676202568,463920,0,0,20,416 +2351,1676202749,848951549,0,0,20,654 +4370,1676202959,848894236,848905385,0,76,570 +8908,1676203624,848940612,0,0,174,41 +1899,1676203679,848949948,0,0,85,312 +2006,1676203865,741494,0,0,2,275 +578,1676203873,509533,779484,48,6,601 +2806,1676205363,576637,0,0,86,304 +3460,1676205712,848945162,0,0,33,398 +992,1676207196,848954090,0,0,105,230 +4048,1676207455,848953068,0,0,85,262 +2499,1676209195,848940914,848954532,49,150,825 +1798,1676209680,848937811,0,0,0,442 +3428,1676209732,398664,0,0,33,286 +1836,1676209800,552694,0,0,48,238 +1202,1676209966,374049,0,0,183,225 +647,1676210698,848953950,848953950,6,6,197 +2270,1676211909,398664,0,0,33,788 +3024,1676212345,794964,699876,0,61,2088 +2148,1676212660,398664,0,0,33,372 +3082,1676212742,848940894,0,0,11,429 +4113,1676213657,848951023,0,0,48,168 +7634,1676214513,302611,0,0,0,81 +2395,1676215330,848952932,0,0,85,301 +3711,1676216059,410165,0,0,85,231 +5812,1676216714,780375,0,0,11,162 +3046,1676216962,746070,0,0,74,315 +374,1676217130,151032,0,0,20,326 +2794,1676217508,568,0,0,32,330 +2598,1676217842,398664,0,0,33,204 +3315,1676218175,848953068,0,0,85,239 +1145,1676218284,509533,0,0,6,283 +2205,1676218483,848941404,848952875,0,85,2163 +3055,1676218647,848953068,0,0,85,193 +523,1676219109,344518,0,0,20,304 +523,1676219109,344518,344518,20,20,304 +523,1676219109,344518,344518,20,20,304 +7093,1676219475,780375,0,0,11,127 +6314,1676219493,693887,0,0,48,190 +5001,1676220725,262676,0,0,215,139 +6539,1676220753,848949344,0,0,42,125 +7947,1676221056,848946291,0,0,76,73 +8208,1676221260,848955490,0,0,209,50 +7503,1676221373,848949493,0,0,48,90 +7503,1676221373,848949493,848949493,48,48,90 +7503,1676221373,848949493,848949493,48,48,90 +7503,1676221373,848949493,848949493,48,48,90 +2722,1676221488,848953068,0,0,85,304 +4609,1676221786,848954762,0,0,185,261 +2390,1676221947,744645,0,0,85,292 +2812,1676222352,351605,0,0,219,329 +1510,1676222901,848953950,0,0,6,677 +8377,1676223682,848954719,0,0,91,66 +8495,1676225080,848953551,0,0,32,65 +3779,1676225394,785871,0,0,0,229 +301,1676225849,766625,0,0,6,301 +3889,1676226480,848951176,767834,0,138,6928 +1879,1676226559,344518,0,0,20,313 +1932,1676227273,848940894,0,0,11,331 +3288,1676227766,785504,0,0,20,319 +1905,1676228263,616498,0,0,48,431 +2655,1676228408,616498,0,0,48,361 +177,1676228615,848951061,0,0,20,312 +2228,1676228651,398664,0,0,33,446 +3092,1676229256,264792,0,0,138,331 +3092,1676229256,264792,264792,138,138,331 +2370,1676229735,398664,0,0,33,245 +3199,1676230070,848952556,0,0,74,260 +7158,1676230451,848955490,0,0,209,141 +2655,1676230806,848954640,616498,48,2,389 +2655,1676230806,848954640,848954640,2,2,389 +2655,1676230806,848954640,848954640,2,2,389 +2655,1676230806,848954640,848954640,2,2,389 +2167,1676230814,782908,0,0,32,316 +809,1676231207,744645,0,0,85,273 +6951,1676231849,780375,0,0,11,147 +6940,1676232162,848955129,0,0,163,128 +3483,1676232516,848949493,0,0,48,339 +4564,1676232674,848954700,0,0,32,239 +6761,1676233547,780375,0,0,11,89 +7578,1676233661,848949493,0,0,48,64 +1519,1676233781,767507,0,0,138,259 +147,1676234170,848949948,0,0,85,376 +2397,1676236796,398664,0,0,33,324 +5752,1676237233,848951308,0,0,85,164 +2965,1676237293,616498,0,0,48,400 +3535,1676237295,616498,0,0,48,311 +7048,1676237328,514187,0,0,97,94 +8728,1676238073,848940612,0,0,174,63 +7017,1676238275,848946291,0,0,76,130 +7017,1676238275,848946291,848946291,76,76,130 +1647,1676238426,13512,0,0,20,263 +1361,1676238480,616498,0,0,48,618 +7847,1676238677,848952678,848952862,0,219,5144 +7847,1676238677,848952862,848952678,219,0,5144 +7215,1676238752,848910736,0,0,198,99 +946,1676239252,13512,0,0,20,198 +3028,1676239775,509766,848954261,38,6,2107 +7543,1676240998,848954608,0,0,88,94 +2855,1676241950,848953068,0,0,85,193 +2504,1676242058,744645,0,0,85,222 +570,1676242824,848936926,0,0,6,313 +2921,1676242926,848952932,0,0,85,251 +1719,1676244174,398664,0,0,33,699 +2655,1676244229,616498,848954640,2,48,370 +2313,1676244475,848954504,0,0,2,310 +4312,1676244562,676986,0,0,138,2045 +2471,1676244584,744645,0,0,85,273 +5371,1676244638,780375,0,0,11,180 +2840,1676246146,848953068,0,0,85,399 +7530,1676246426,604194,0,0,174,106 +41,1676247600,552694,0,0,48,213 +2389,1676247695,848880663,848953340,34,138,7219 +1180,1676247972,782322,0,0,20,333 +3435,1676248132,848890745,0,0,174,319 +3758,1676248196,616498,0,0,48,300 +8139,1676248476,848954475,0,0,162,1212 +424,1676248487,213,0,0,61,253 +746,1676248743,768042,0,0,0,332 +8015,1676249070,769180,0,0,182,61 +3738,1676249301,848953965,0,0,2,309 +4568,1676249615,787586,790742,129,74,4037 +4400,1676249808,796360,539612,65,138,5436 +5117,1676249943,848949493,0,0,48,183 +2254,1676250037,272255,0,0,48,637 +1577,1676250360,552694,0,0,48,218 +140,1676251381,509533,0,0,6,321 +1667,1676251395,848927565,0,0,138,410 +830,1676251954,151032,0,0,20,326 +5593,1676252211,848953039,848953972,203,85,2111 +1565,1676252481,744645,0,0,85,367 +2202,1676252639,848954640,0,0,2,696 +1280,1676252664,463920,0,0,20,254 +1824,1676254213,744645,0,0,85,371 +4147,1676254632,848894236,848905385,0,76,4605 +4951,1676254782,848954978,0,0,152,446 +2472,1676255308,848953068,0,0,85,311 +238,1676255950,509533,0,0,6,258 +1229,1676256193,463920,0,0,20,630 +2582,1676256478,848953068,0,0,85,358 +7106,1676256940,848953499,0,0,97,165 +2453,1676256967,848954504,0,0,2,251 +1565,1676256978,744645,744645,85,85,348 +68,1676257404,744645,0,0,85,369 +7,1676257471,848948254,700102,15,6,6853 +6743,1676257938,848955211,848955187,0,65,1936 +4964,1676259862,848935026,0,0,185,246 +7041,1676260196,848955129,0,0,163,111 +7268,1676260279,848954266,0,0,198,139 +6820,1676260667,848954998,0,0,152,142 +2326,1676260882,848954361,0,0,85,697 +917,1676261361,848953950,0,0,6,271 +7148,1676261377,848954015,0,0,2,98 +3459,1676261494,848953068,0,0,85,319 +4909,1676261687,693802,0,0,138,226 +4909,1676261687,693802,693802,138,138,226 +8432,1676261705,604194,0,0,174,57 +6367,1676262430,848954266,0,0,198,135 +7518,1676262568,848955150,848955321,0,162,1693 +6415,1676262611,775729,0,0,105,140 +1397,1676265221,766625,0,0,6,309 +3011,1676266517,272255,0,0,48,305 +1960,1676268134,848953401,741238,0,138,2829 +1871,1676268310,848936929,0,0,6,322 +8423,1676268577,848955148,848955471,206,162,775 +4992,1676268580,848953656,0,0,152,504 +1958,1676270063,230556,0,0,48,423 +1552,1676270067,151032,0,0,20,274 +3227,1676271864,398664,0,0,33,340 +6652,1676271895,604194,0,0,174,129 +418,1676272080,552694,0,0,48,184 +8743,1676272358,848940612,0,0,174,50 +1240,1676274568,594491,0,0,86,344 +7198,1676274900,580805,267733,167,76,3283 +7572,1676275460,649035,0,0,74,104 +1661,1676275903,848936929,0,0,6,233 +6508,1676275935,848952488,848935714,4,32,3213 +3155,1676276283,616498,0,0,48,174 +7658,1676276432,848954539,769180,182,105,3503 +3458,1676276579,848953068,0,0,85,271 +8478,1676276601,1582,0,0,61,42 +1889,1676277926,398664,0,0,33,244 +1889,1676277926,398664,398664,33,33,244 +1889,1676277926,398664,398664,33,33,244 +1889,1676277926,398664,398664,33,33,244 +5028,1676278041,693802,0,0,138,243 +3680,1676278244,848914361,0,0,20,303 +713,1676278291,13512,0,0,20,311 +2884,1676278561,848951176,767834,0,138,8723 +2506,1676278999,848953401,0,0,138,343 +3061,1676279207,272255,0,0,48,422 +1067,1676279284,398664,0,0,33,327 +520,1676279668,848949948,848945118,183,85,6519 +5383,1676279924,746070,0,0,74,168 +6091,1676280590,775955,0,0,227,138 +7839,1676281017,604194,0,0,174,94 +3458,1676281577,848953068,848953068,85,85,271 +3679,1676281696,410165,0,0,85,304 +3697,1676281966,398664,0,0,33,123 +874,1676282252,509766,761278,0,6,514 +3394,1676283233,848914361,0,0,20,267 +6825,1676283291,848955105,848954603,0,185,1910 +8651,1676283835,276237,0,0,48,55 +3608,1676284058,264792,0,0,138,320 +3837,1676284253,848914361,0,0,20,269 +8190,1676284426,604194,0,0,174,92 +1682,1676285489,13512,0,0,20,391 +2389,1676285528,697760,848880663,138,0,7229 +1725,1676286624,848949948,848945118,183,85,3363 +4192,1676286950,848953068,0,0,85,257 +8294,1676288447,604194,0,0,174,62 +9102,1676288968,604194,0,0,174,41 +4765,1676289268,848894236,0,0,76,193 +1298,1676289449,848936926,0,0,6,304 +5828,1676289499,785504,334822,0,20,2126 +8905,1676289530,848937255,0,0,209,50 +8162,1676289825,782308,0,0,76,75 +1617,1676290124,848916830,0,0,20,150 +2711,1676290582,848952932,0,0,85,272 +3112,1676291405,848951632,767834,0,138,6331 +378,1676291703,848951549,0,0,20,341 +378,1676291735,848951549,848951549,20,20,317 +161,1676292933,151032,0,0,20,159 +7205,1676293740,848946291,848879972,167,76,2657 +2799,1676294245,616498,0,0,48,387 +3662,1676294272,780375,0,0,11,460 +748,1676295546,509533,0,0,6,253 +5767,1676295905,848955133,0,0,0,166 +836,1676296900,151032,0,0,20,269 +3619,1676296970,272255,0,0,48,350 +1543,1676297325,374049,0,0,183,263 +1690,1676297520,552694,0,0,48,276 +2280,1676297723,848955253,0,0,2,249 +2753,1676300540,848949493,0,0,48,253 +67,1676301602,848949948,848945118,183,85,5012 +373,1676301797,848953926,848954366,0,2,8222 +5358,1676302020,604194,0,0,174,249 +3954,1676302157,848954006,0,0,2,195 +2138,1676303012,848951817,0,0,32,394 +4022,1676303366,676986,0,0,138,239 +3674,1676303521,616498,0,0,48,222 +2540,1676304486,768825,0,0,105,483 +7190,1676305191,848910736,0,0,198,136 +1757,1676305235,848914361,848954096,35,20,7935 +7237,1676305745,848951672,0,0,93,105 +7303,1676305958,737871,848951460,104,11,523 +3102,1676305974,344518,642506,0,20,7771 +7308,1676307160,780375,0,0,11,68 +129,1676307200,848937811,0,0,0,304 +599,1676307882,766625,0,0,6,371 +2450,1676308040,848954504,0,0,2,323 +8218,1676308531,848954637,0,0,11,1040 +8218,1676308533,848954637,848954637,11,11,1016 +9142,1676308561,604194,0,0,174,39 +3716,1676308745,848914361,539612,65,20,1139 +4986,1676308882,848955024,848940295,187,0,3457 +4119,1676309370,848914361,0,0,20,227 +1822,1676310407,779484,0,0,48,568 +1090,1676310504,616498,0,0,48,419 +2876,1676310609,848949493,0,0,48,269 +1752,1676310856,848953950,0,0,6,255 +3668,1676311918,616498,0,0,48,214 +5364,1676313113,848949067,0,0,91,186 +1210,1676313622,344518,0,0,20,305 +2015,1676314908,398664,0,0,33,280 +3307,1676315189,272255,0,0,48,312 +1788,1676315249,848941909,0,0,6,392 +2859,1676315437,848953937,848925398,0,74,1292 +2341,1676315765,344518,0,0,20,629 +2341,1676315765,344518,344518,20,20,629 +494,1676316399,729178,718150,0,48,10728 +2747,1676316499,848954640,0,0,2,318 +8972,1676316852,327519,0,0,0,49 +8972,1676316852,327519,327519,0,0,49 +8658,1676316856,848949493,0,0,48,112 +2341,1676317188,848940915,344518,20,150,605 +8972,1676317250,276237,327519,0,48,49 +8972,1676317250,276237,276237,48,48,49 +8972,1676317251,276237,276237,48,48,49 +7813,1676318244,848955490,0,0,209,59 +1795,1676318385,729178,718150,0,48,5654 +2754,1676318509,848927565,0,0,138,275 +4513,1676318767,848952236,0,0,74,270 +6317,1676320541,848953992,772572,0,2,2133 +2739,1676320574,848953401,0,0,138,359 +8841,1676320722,604194,0,0,174,46 +1626,1676320745,729178,718150,0,48,7933 +6928,1676320781,848953499,0,0,97,152 +5985,1676320794,848954762,0,0,185,187 +5477,1676320849,848954820,0,0,76,178 +6536,1676320953,848955150,0,0,162,129 +3125,1676321174,848951632,767834,0,138,4184 +6350,1676321305,848931759,0,0,187,120 +6967,1676321367,649035,0,0,74,135 +7664,1676321576,750685,0,0,76,87 +6033,1676323734,779484,0,0,48,584 +4425,1676323771,848914361,0,0,20,266 +2315,1676324697,794964,0,0,61,296 +2268,1676325871,848941404,0,0,85,281 +4677,1676325916,780375,0,0,11,201 +4677,1676325916,780375,780375,11,11,201 +6907,1676326388,848954611,848953936,4,32,1482 +6907,1676326388,848954611,848954611,32,32,1482 +2591,1676326529,848955253,0,0,2,353 +8366,1676326909,848955490,0,0,209,91 +3740,1676328851,272255,0,0,48,319 +4613,1676329355,411608,767834,0,138,5017 +243,1676330011,848949948,848945118,183,85,9308 +3923,1676330878,848914361,539612,65,20,1797 +3275,1676331276,272255,0,0,48,266 +3393,1676331520,848953068,0,0,85,235 +1043,1676331841,729178,718150,0,48,2430 +5018,1676333292,848894236,0,0,76,162 +3168,1676333539,848954604,848943250,0,0,1122 +5908,1676333704,848954006,772572,0,2,8186 +3311,1676333816,848953965,0,0,2,181 +6488,1676334136,848954201,0,0,163,156 +5130,1676334178,782308,0,0,76,184 +7585,1676334206,848955148,0,0,162,133 +7030,1676334338,848955237,848947293,0,216,466 +5386,1676334551,848894236,0,0,76,302 +7905,1676335287,848954437,0,0,198,66 +134,1676335380,572558,0,0,48,305 +6473,1676337486,848931759,0,0,187,112 +355,1676338035,848953401,0,0,138,321 +208,1676338112,848953950,0,0,6,256 +8606,1676338816,848940612,0,0,174,50 +3196,1676340122,848953068,0,0,85,241 +1400,1676340580,779484,0,0,48,400 +3196,1676340596,848953068,848953068,85,85,241 +2843,1676341045,568,0,0,32,341 +4939,1676341598,848954140,0,0,85,186 +986,1676342441,573851,0,0,86,388 +4345,1676342823,848881027,389297,0,227,5845 +7810,1676343236,848910736,0,0,198,1060 +2895,1676344450,848890745,0,0,174,564 +3955,1676344846,796360,539612,65,138,5362 +1439,1676344859,848914361,0,0,20,230 +2594,1676345829,848954607,0,0,32,259 +71,1676346475,848953950,0,0,6,284 +7084,1676346493,780375,0,0,11,130 +1764,1676346520,729178,718150,0,48,7372 +8756,1676347290,848940612,0,0,174,92 +1789,1676347463,503636,0,0,138,336 +8827,1676347896,604194,0,0,174,49 +2122,1676348098,848954428,0,0,20,321 +441,1676348266,509533,0,0,6,303 +8669,1676348929,751295,848955517,0,209,864 +7116,1676349774,327519,0,0,0,117 +2266,1676350009,848954428,0,0,20,440 +664,1676350168,572558,0,0,48,308 +419,1676350426,848916830,0,0,20,275 +8001,1676350578,848955149,0,0,162,102 +7011,1676350646,769092,848939796,0,185,2216 +327,1676350937,848953950,0,0,6,239 +542,1676351331,13512,0,0,20,288 +1028,1676352438,213,848912363,0,61,11363 +1118,1676352753,848954354,0,0,105,253 +1748,1676353154,848936921,50103,0,6,6197 +392,1676353453,848951306,848951434,0,183,4064 +887,1676353795,587894,0,0,48,482 +8,1676354756,782322,0,0,20,468 +9435,1676355118,604194,0,0,174,26 +3318,1676356352,848951023,0,0,48,229 +5923,1676356664,262676,0,0,215,115 +7907,1676357107,781432,0,0,198,86 +4328,1676357189,767507,848949093,65,138,3751 +6181,1676357354,742669,0,0,91,240 +9420,1676357889,604194,0,0,174,27 +1089,1676357954,398664,0,0,33,378 +2831,1676358423,848954127,0,0,183,268 +676,1676359465,848936921,50103,0,6,10495 +8041,1676359705,775955,0,0,227,83 +7329,1676360326,302611,848938537,0,0,317 +2730,1676360526,568,0,0,32,316 +1021,1676360567,848936921,50103,0,6,4129 +8802,1676360745,848953962,0,0,2,57 +1032,1676361729,848936921,50103,0,6,767 +1514,1676362704,848936929,0,0,6,331 +8237,1676363193,604194,0,0,174,102 +878,1676363445,509533,230556,48,6,440 +3818,1676363622,848914361,0,0,20,216 +1188,1676363877,848949948,848945118,183,85,5376 +1387,1676364535,848916830,0,0,20,336 +2281,1676365181,848954410,0,0,2,412 +6977,1676365577,604194,0,0,174,103 +6086,1676365865,848955024,775744,187,0,3945 +6086,1676365865,848955024,848955024,0,0,3945 +1895,1676366080,398664,0,0,33,310 +3543,1676367000,767507,848949093,65,138,5607 +3166,1676367086,780485,0,0,11,267 +1373,1676367272,594491,0,0,86,271 +1373,1676367273,594491,594491,86,86,271 +2690,1676367836,780485,0,0,11,183 +5450,1676368198,780375,0,0,11,679 +3302,1676368214,848914361,848949093,65,20,1142 +2971,1676368443,780485,0,0,11,315 +2849,1676369187,848955253,0,0,2,363 +4383,1676369217,616498,0,0,48,318 +4893,1676369360,848953656,0,0,152,218 +7820,1676370006,604194,0,0,174,102 +2837,1676370309,848947757,848954553,53,227,6812 +5103,1676370928,848954762,0,0,185,222 +1097,1676371527,848953950,0,0,6,295 +3241,1676371725,780485,0,0,11,337 +1829,1676371758,463920,0,0,20,204 +6195,1676371852,693887,0,0,48,303 +2964,1676372769,780485,0,0,11,223 +7507,1676372880,848942248,848955318,0,0,1495 +1079,1676374323,13512,0,0,20,411 +2583,1676374775,780485,0,0,11,336 +2402,1676375450,13512,0,0,20,295 +1436,1676375476,509533,230556,48,6,1986 +2072,1676375609,729178,718150,0,48,8144 +2802,1676376197,616498,0,0,48,323 +1707,1676377021,374049,0,0,183,369 +2524,1676377640,848916830,0,0,20,268 +9494,1676377989,604194,0,0,174,26 +3941,1676378441,780375,0,0,11,255 +1893,1676380047,848953926,848954366,0,2,3086 +1167,1676380671,848953401,0,0,138,257 +1310,1676380850,587894,0,0,48,412 +2038,1676381261,848954006,0,0,2,648 +4189,1676381614,848914361,0,0,20,238 +8802,1676381671,327519,848953962,2,0,106 +8285,1676382135,693750,421691,222,33,2053 +3006,1676382267,620806,0,0,0,277 +326,1676382414,848936921,50103,0,6,8390 +8533,1676382443,604194,0,0,174,99 +2298,1676383075,741494,0,0,2,228 +1772,1676385518,729178,718150,0,48,3093 +8976,1676385586,604194,0,0,174,48 +2894,1676385788,576637,0,0,86,384 +8520,1676386086,604194,0,0,174,58 +2962,1676386226,693802,0,0,138,262 +636,1676387293,398664,0,0,33,246 +4421,1676387652,848953539,0,0,32,500 +5408,1676387807,264792,0,0,138,220 +3602,1676388238,848953068,0,0,85,255 +6789,1676389092,785504,0,0,20,116 +5400,1676389800,848946291,848954976,42,76,4295 +5400,1676389800,848946291,848946291,76,76,4295 +1792,1676390317,587894,0,0,48,337 +3212,1676390331,272255,0,0,48,193 +9108,1676390811,781432,0,0,198,43 +259,1676391017,848916830,0,0,20,381 +8141,1676391532,848930230,0,0,209,89 +8141,1676391532,848930230,848930230,209,209,89 +2585,1676391536,780485,0,0,11,500 +1424,1676392980,848949948,848945118,183,85,6587 +3027,1676393013,848954604,0,0,0,309 +2796,1676393123,398664,0,0,33,340 +9108,1676394005,781432,781432,198,198,115 +169,1676394080,848936921,50103,0,6,9244 +5427,1676395295,848940612,0,0,174,223 +5094,1676396439,848940612,0,0,174,263 +8110,1676396519,604194,0,0,174,63 +1167,1676398311,848916830,848953401,138,20,236 +655,1676398892,848953670,848953209,0,0,967 +8028,1676399280,327519,0,0,0,91 +3076,1676399295,848951632,767834,0,138,1554 +3901,1676399323,848914361,270449,65,20,1644 +5611,1676399811,262676,0,0,215,266 +5611,1676399811,262676,262676,215,215,266 +1395,1676399860,848880663,0,0,138,734 +282,1676401261,848936921,50103,0,6,5420 +4873,1676402144,848952236,0,0,74,176 +1817,1676402468,848951061,0,0,20,450 +2401,1676402657,848953401,0,0,138,296 +6764,1676402670,848949884,0,0,163,159 +3975,1676403296,848954006,0,0,2,290 +1082,1676403330,848914361,0,0,20,263 +4809,1676403487,848953200,848945602,0,53,686 +1109,1676403607,848936929,0,0,6,354 +1625,1676403681,848936921,50103,0,6,2105 +8169,1676404014,693750,0,0,33,61 +1335,1676404017,848949948,848945118,183,85,9223 +5166,1676404041,693256,0,0,76,257 +8701,1676404056,848953551,0,0,32,58 +7579,1676404112,848954996,848955018,0,172,1793 +2028,1676404537,848927565,0,0,138,312 +7715,1676404761,848934831,0,0,163,81 +2265,1676406043,780375,0,0,11,342 +7991,1676406051,302745,0,0,187,62 +3901,1676406090,270449,848914361,20,65,1523 +5921,1676406567,632648,0,0,172,866 +2496,1676406743,780485,0,0,11,383 +3898,1676407214,848954140,0,0,85,223 +1320,1676407257,729178,718150,0,48,1979 +3476,1676407281,848942432,0,0,74,364 +4758,1676407723,848935026,0,0,185,253 +4979,1676408287,848947757,0,0,227,236 +109,1676408547,848936921,50103,0,6,853 +5396,1676409047,848940612,0,0,174,206 +7193,1676409172,604194,0,0,174,142 +402,1676409436,848916830,0,0,20,350 +3786,1676409673,848954140,0,0,85,251 +4244,1676409874,848914361,270449,65,20,1768 +6080,1676410019,848890745,0,0,174,746 +8173,1676410036,751295,848955431,0,209,578 +2931,1676410051,693802,0,0,138,329 +7141,1676410470,580805,0,0,76,155 +2470,1676410923,780485,0,0,11,311 +437,1676411169,374049,0,0,183,334 +1127,1676411572,848936921,50103,0,6,1399 +8617,1676411661,848949493,0,0,48,86 +1659,1676411776,848916830,0,0,20,253 +8155,1676411923,276237,0,0,48,107 +7378,1676412102,848955149,0,0,162,96 +616,1676412344,848929146,0,0,61,232 +7406,1676413300,604194,0,0,174,130 +4532,1676414797,780375,0,0,11,254 +1811,1676414921,848953926,0,0,2,337 +1417,1676415637,848916830,0,0,20,390 +2178,1676415760,794964,0,0,61,290 +6807,1676416140,693887,0,0,48,142 +3781,1676416384,848951023,0,0,48,402 +2576,1676416523,780485,0,0,11,262 +1976,1676416726,351605,0,0,219,411 +6502,1676416739,776842,0,0,88,182 +435,1676417010,848936921,50103,0,6,4089 +435,1676417010,848936921,848936921,6,6,4089 +2107,1676417051,230556,0,0,48,375 +4756,1676417216,848940612,0,0,174,188 +9272,1676417511,848949252,0,0,187,44 +2067,1676417705,848954410,0,0,2,324 +853,1676418357,848929146,0,0,61,326 +7622,1676418602,693750,0,0,33,79 +7700,1676420466,327519,0,0,0,99 +8173,1676420571,737871,751295,209,11,554 +8374,1676420974,604194,0,0,174,60 +7142,1676421015,848945448,848955254,0,0,1473 +7358,1676421075,848940612,0,0,174,102 +457,1676421091,587894,0,0,48,331 +6140,1676421133,741494,0,0,2,708 +210,1676421370,848949948,0,0,85,303 +7340,1676421572,848929097,0,0,76,81 +121,1676422120,848883478,0,0,25,243 +5643,1676422221,746070,0,0,74,219 +6438,1676422362,848955129,0,0,163,189 +1496,1676423383,729178,718150,0,48,2379 +152,1676423652,848936921,50103,0,6,3619 +3696,1676425415,848890745,0,0,174,322 +4436,1676426332,785504,0,0,20,694 +650,1676426496,729178,718150,0,48,3758 +7049,1676426580,791583,731385,167,76,3227 +2807,1676426955,796360,768161,0,138,5584 +1088,1676427893,848936921,50103,0,6,1377 +3861,1676427966,848954140,0,0,85,279 +3861,1676427966,848954140,848954140,85,85,279 +2615,1676428346,848909148,0,0,20,402 +6385,1676429200,632648,0,0,172,149 +2775,1676429504,693802,0,0,138,540 +3617,1676430230,848954140,0,0,85,271 +3671,1676430264,776073,0,0,74,204 +7860,1676431493,848951176,0,0,138,105 +1592,1676431573,848936921,50103,0,6,1421 +3961,1676432031,848951023,0,0,48,252 +2051,1676432047,344518,0,0,20,347 +6214,1676432285,848954140,0,0,85,211 +8468,1676433762,604194,0,0,174,50 +8056,1676434627,604194,0,0,174,107 +8639,1676434773,782308,0,0,76,60 +7919,1676435140,302611,0,0,0,78 +9591,1676435146,604194,0,0,174,29 +3800,1676435206,848954140,0,0,85,309 +3541,1676435739,848954140,0,0,85,303 +197,1676435808,848936921,50103,0,6,1576 +1323,1676435902,848929146,0,0,61,272 +840,1676436052,587894,0,0,48,330 +8173,1676436734,751295,737871,11,209,518 +1832,1676436900,848943607,848954354,105,6,9168 +1186,1676436910,848943607,848954354,105,6,6634 +5897,1676437121,604194,0,0,174,205 +158,1676437199,848941909,848954354,105,6,2726 +158,1676437199,848941909,848941909,6,6,2726 +1587,1676437200,848948254,848954354,105,6,2399 +1544,1676437200,766625,848952522,105,6,9224 +1544,1676437200,766625,766625,6,6,9224 +3106,1676437246,568,0,0,32,250 +4301,1676437266,848914361,270449,65,20,4624 +3901,1676437348,848914361,270449,65,20,1593 +3484,1676437703,848951023,0,0,48,243 +6215,1676438018,693256,848954794,0,76,1550 +5208,1676438042,717445,0,0,0,219 +6673,1676438278,848890745,0,0,174,129 +450,1676438427,572558,0,0,48,387 +7177,1676438449,848955081,0,0,172,154 +4035,1676439555,410165,0,0,85,373 +7028,1676440010,787586,848953499,0,74,3873 +1276,1676440716,848916830,0,0,20,581 +4626,1676441796,848938594,848905385,0,91,385 +632,1676442902,848952114,0,0,3,359 +1641,1676443329,848916830,0,0,20,288 +6533,1676443769,776842,0,0,88,99 +7894,1676444385,604194,0,0,174,112 +9242,1676444668,848954637,0,0,11,32 +1934,1676444987,848909148,0,0,20,781 +493,1676445308,744645,0,0,85,341 +137,1676445391,344518,0,0,20,371 +1128,1676445394,848949948,0,0,85,315 +5544,1676445595,848940612,0,0,174,200 +7549,1676445693,780485,0,0,11,132 +4122,1676446304,848954140,0,0,85,215 +396,1676447350,848936921,50103,0,6,9791 +2534,1676450534,848953992,0,0,2,412 +3929,1676451634,767507,747735,65,138,3577 +1414,1676451714,848943607,768825,105,6,2571 +356,1676451782,848954504,0,0,2,7799 +2182,1676452165,693802,0,0,138,814 +3848,1676452529,780375,0,0,11,329 +7513,1676452657,604194,0,0,174,112 +2258,1676454128,780375,0,0,11,335 +8422,1676454524,604194,0,0,174,108 +1023,1676455059,848916830,0,0,20,315 +3043,1676456205,780485,0,0,11,305 +3918,1676456727,848914361,270449,65,20,7252 +3918,1676456727,848914361,848914361,20,20,7252 +6560,1676456895,848954998,0,0,152,173 +7261,1676457075,604194,0,0,174,161 +7261,1676457075,604194,604194,174,174,161 +741,1676457105,848953926,0,0,2,346 +880,1676457325,848916830,0,0,20,312 +7157,1676457909,848929352,0,0,76,114 +7474,1676457949,715075,0,0,0,130 +2599,1676458196,411608,0,0,138,308 +2196,1676458216,741494,0,0,2,2883 +2975,1676458542,344518,0,0,20,344 +7719,1676458908,781432,0,0,198,99 +1191,1676459720,594491,0,0,86,259 +8037,1676459981,604194,0,0,174,90 +3201,1676460199,848909148,0,0,20,343 +3719,1676460450,676986,0,0,138,251 +3552,1676461422,848954637,0,0,11,270 +195,1676461796,587894,0,0,48,261 +3361,1676461909,848909148,0,0,20,331 +7719,1676461984,781432,781432,198,198,176 +7435,1676462400,339555,327519,0,74,7439 +7435,1676462400,339555,339555,74,74,7439 +3560,1676463079,398664,0,0,33,260 +602,1676464762,587894,0,0,48,372 +602,1676464774,587894,587894,48,48,348 +1209,1676465675,587894,0,0,48,371 +4523,1676466627,848947885,848952345,7,187,3391 +509,1676467096,848952932,0,0,85,363 +1000,1676467425,344518,0,0,20,323 +979,1676467580,848916830,0,0,20,320 +958,1676468314,573851,0,0,86,291 +8244,1676468372,848955438,0,0,163,70 +8872,1676468476,604194,0,0,174,79 +5789,1676468508,604194,0,0,174,178 +8603,1676468757,604194,0,0,174,122 +5759,1676469000,264108,263554,83,172,2596 +985,1676469026,573851,0,0,86,288 +3805,1676469744,848894236,0,0,76,158 +1084,1676470006,766625,848952522,105,6,4016 +1749,1676470357,848936921,50103,0,6,861 +5050,1676470647,848954941,0,0,163,212 +3843,1676471801,848894236,0,0,76,289 +2751,1676472529,848954504,0,0,2,1060 +470,1676473218,503636,0,0,138,265 +3379,1676473278,848909148,0,0,20,179 +3379,1676473368,848909148,848909148,20,20,169 +3379,1676473368,848909148,848909148,20,20,169 +3379,1676473368,848909148,848909148,20,20,169 +1132,1676474079,848954090,0,0,105,291 +2926,1676474756,848948640,848954553,53,227,1651 +2926,1676474756,848948640,848948640,227,227,1651 +3406,1676474804,848954604,0,0,0,280 +5736,1676475126,848955156,0,0,152,195 +5669,1676475406,848954668,0,0,172,143 +5851,1676475974,632648,0,0,172,241 +3349,1676476192,411608,0,0,138,282 +674,1676476483,374049,0,0,183,340 +7751,1676477015,848955237,0,0,216,86 +4238,1676478018,758872,0,0,187,557 +8578,1676478065,276237,0,0,48,65 +9010,1676478482,848949493,0,0,48,57 +2094,1676478634,848941404,0,0,85,303 +680,1676479019,13512,0,0,20,399 +7853,1676479988,848949252,0,0,187,140 +8739,1676480161,604194,0,0,174,58 +6198,1676480804,604194,0,0,174,200 +4096,1676480924,848881027,0,0,227,283 +6139,1676482209,848953551,0,0,32,156 +360,1676482490,848954208,0,0,2,310 +7943,1676483532,604194,0,0,174,106 +931,1676483540,344518,0,0,20,301 +204,1676484251,213,848912363,0,61,2109 +1762,1676484251,848949948,0,0,85,416 +1446,1676484391,374049,0,0,183,268 +3117,1676484484,780485,0,0,11,380 +931,1676484530,344518,344518,20,20,301 +2427,1676485460,848942432,0,0,74,361 +1286,1676485867,213,848912363,0,61,879 +4826,1676486035,848954131,0,0,0,290 +777,1676486164,848929146,0,0,61,221 +1177,1676486232,213,848912363,0,61,5146 +2428,1676486604,848954361,0,0,85,292 +3334,1676487301,780485,0,0,11,331 +4240,1676487443,848947757,0,0,227,1085 +2836,1676487973,571769,0,0,74,326 +1146,1676488595,213,848912363,0,61,7598 +184,1676488954,13512,0,0,20,304 +1485,1676489200,848936718,0,0,3,648 +1360,1676489653,213,0,0,61,337 +533,1676489658,213,848912363,0,61,7268 +763,1676489730,848954240,509766,0,6,6636 +5681,1676490463,848954762,0,0,185,176 +942,1676490549,572558,0,0,48,341 +7964,1676490855,604194,0,0,174,171 +1428,1676491182,766625,848949204,105,6,11898 +6557,1676491229,848954199,0,0,35,174 +4167,1676491746,780375,0,0,11,344 +9711,1676491946,604194,0,0,174,27 +3206,1676492786,411608,0,0,138,270 +7299,1676493137,848955204,302611,0,91,4264 +7377,1676493190,848955348,0,0,209,165 +2286,1676493193,741494,0,0,2,655 +8415,1676493406,276237,0,0,48,60 +4719,1676493412,375649,0,0,32,197 +3250,1676493512,848914361,0,0,20,139 +533,1676493743,213,213,61,61,7244 +2078,1676495773,741494,0,0,2,448 +1522,1676495790,848910455,0,0,91,394 +5626,1676495992,848955081,0,0,172,178 +8885,1676496015,780485,0,0,11,75 +7281,1676496150,848949493,0,0,48,137 +3329,1676496323,848914361,0,0,20,328 +102,1676496707,848916830,0,0,20,340 +3276,1676496818,693802,0,0,138,410 +3310,1676497160,848909148,0,0,20,240 +202,1676499202,766625,848949204,105,6,6928 +1217,1676499324,587894,0,0,48,351 +2203,1676499468,780375,0,0,11,411 +3929,1676500055,747735,767507,138,65,3830 +5576,1676500179,746070,0,0,74,95 +3444,1676500463,848909148,0,0,20,425 +1045,1676500589,398664,0,0,33,354 +4942,1676500599,848951609,0,0,42,228 +294,1676500688,848929146,0,0,61,308 +3385,1676501174,794964,0,0,61,391 +804,1676501239,213,0,0,61,302 +778,1676501736,848936921,50103,0,6,9865 +5543,1676501881,848949067,0,0,91,165 +6846,1676502038,848908351,0,0,91,151 +8709,1676502179,848953907,0,0,187,58 +7727,1676502725,751295,735360,152,209,2620 +263,1676502938,767507,848948099,185,138,4556 +4620,1676503091,848952678,0,0,219,331 +6251,1676503820,632648,0,0,172,173 +86,1676504363,509533,848912363,0,6,5681 +6408,1676504747,848955081,0,0,172,161 +7197,1676504890,775955,0,0,227,80 +6376,1676505480,604194,0,0,174,180 +1559,1676505569,785504,0,0,20,361 +9062,1676505835,848946291,0,0,76,50 +519,1676506356,794964,0,0,61,343 +882,1676508299,848954208,0,0,2,364 +4745,1676508627,693802,0,0,138,420 +8862,1676509340,604194,0,0,174,95 +4171,1676509464,410165,0,0,85,317 +5445,1676509559,848950496,0,0,172,181 +6023,1676510585,848954052,0,0,4,399 +3883,1676510653,848890745,0,0,174,2098 +1428,1676511085,848949948,766625,6,85,11945 +3528,1676511601,442099,0,0,97,398 +4968,1676511621,848954127,780097,127,183,1335 +406,1676512009,848943607,0,0,6,446 +2985,1676512034,848955253,0,0,2,233 +313,1676512722,848936921,50103,0,6,6964 +8447,1676513649,604194,0,0,174,61 +1872,1676513711,794964,0,0,61,760 +4505,1676518731,758872,0,0,187,142 +6283,1676518845,848932635,0,0,198,173 +6915,1676518944,153367,0,0,185,147 +7789,1676519069,848954814,0,0,210,121 +7355,1676519178,848942248,848955296,104,0,530 +6874,1676519290,693887,0,0,48,119 +3570,1676519314,848914361,747735,65,20,3323 +5842,1676519751,848940612,0,0,174,180 +1696,1676520127,848953950,0,0,6,283 +5982,1676520212,848955156,0,0,152,133 +1059,1676520729,848927565,0,0,138,304 +7634,1676521003,848955204,302611,0,91,977 +5884,1676521062,848954926,848945636,0,66,743 +3105,1676521235,794964,848954555,219,61,3850 +2748,1676521475,693802,0,0,138,432 +5068,1676521932,848952732,0,0,219,144 +3098,1676522114,785504,627483,86,20,5045 +3787,1676522461,848914361,747735,65,20,8855 +5052,1676523261,848954131,0,0,0,192 +267,1676523480,848948254,768825,105,6,5932 +267,1676523480,848948254,848948254,6,6,5932 +3266,1676523607,848909148,848883123,12,20,1504 +9278,1676523607,848949493,0,0,48,45 +3290,1676523645,848954127,0,0,183,385 +1656,1676523677,848941909,848954354,105,6,6147 +3979,1676523689,848953401,758230,105,138,4689 +4576,1676524363,580805,0,0,76,266 +5672,1676524376,848955157,0,0,162,241 +3647,1676524978,785504,627483,86,20,835 +3271,1676525019,411608,0,0,138,291 +1481,1676525044,848954240,509766,0,6,1621 +8582,1676525245,604194,0,0,174,69 +5323,1676526240,848954131,0,0,0,139 +4592,1676526678,264792,0,0,138,312 +5088,1676526960,848952450,848950197,4,74,5905 +1428,1676527020,766625,848949948,85,6,11957 +1460,1676527128,848949948,848954354,105,85,5636 +4003,1676527191,848954700,0,0,32,593 +3929,1676527475,767507,747735,65,138,3875 +3947,1676527602,848952678,0,0,219,298 +3010,1676528429,848909148,0,0,20,563 +6317,1676528525,848953962,848953992,0,2,2553 +3562,1676529065,848954820,0,0,76,1162 +7144,1676529197,848890745,0,0,174,123 +6434,1676531889,848953962,848953992,0,2,3262 +738,1676532089,848953950,0,0,6,316 +2868,1676532937,587894,0,0,48,483 +6679,1676533256,848954201,0,0,163,188 +1680,1676533934,848951306,848949204,105,183,5251 +1680,1676533978,848951306,848951306,183,183,5227 +1680,1676533990,848951306,848951306,183,183,5227 +1332,1676535294,848933579,848945072,15,6,2338 +6832,1676535332,302745,848896640,0,187,704 +241,1676535850,848936926,0,0,6,330 +5310,1676536006,848954140,0,0,85,201 +1750,1676536042,794964,0,0,61,237 +9288,1676537538,848955495,0,0,209,33 +3413,1676539610,848914361,0,0,20,290 +446,1676540215,848937811,0,0,0,286 +7668,1676540530,848951023,0,0,48,103 +2909,1676540626,848954640,0,0,2,301 +6382,1676540984,693887,0,0,48,247 +7096,1676541855,848946770,0,0,152,205 +7096,1676541863,848946770,848946770,152,152,205 +7454,1676542176,848944627,0,0,105,123 +8104,1676542946,334822,848955415,0,0,630 +7590,1676543026,848944627,0,0,105,152 +1495,1676543239,848943607,0,0,6,489 +793,1676543297,344518,0,0,20,588 +1571,1676543492,587894,0,0,48,338 +4808,1676544025,264108,848954749,53,172,2316 +3519,1676544331,848909148,0,0,20,302 +5792,1676545895,848954475,0,0,162,173 +585,1676545978,213,0,0,61,175 +585,1676545978,213,213,61,61,175 +7122,1676546561,604194,0,0,174,131 +1326,1676546894,213,0,0,61,360 +3587,1676546901,848953068,0,0,85,273 +7757,1676546990,848955204,0,0,91,98 +276,1676547282,848953950,0,0,6,398 +6520,1676547434,775955,0,0,227,134 +280,1676547437,374049,0,0,183,370 +7500,1676547656,848951960,0,0,210,107 +3025,1676547710,780485,0,0,11,135 +3620,1676548084,848952556,0,0,76,333 +3859,1676548954,848953965,0,0,2,327 +4636,1676550061,848914361,0,0,20,338 +2573,1676550401,848909148,0,0,20,449 +2059,1676550702,785504,627483,86,20,8434 +4336,1676550713,848943381,0,0,97,312 +1393,1676550910,848936929,0,0,6,354 +8271,1676551369,848946291,0,0,76,95 +6520,1676551395,775955,775955,227,227,134 +9358,1676551676,1582,0,0,61,39 +6740,1676551679,848954015,848951960,210,2,4231 +7442,1676551826,604194,0,0,174,164 +1447,1676552590,848943607,0,0,6,311 +7458,1676553213,848890745,0,0,174,155 +421,1676554218,344518,0,0,20,509 +8585,1676554276,848949252,0,0,187,77 +7830,1676556373,848951176,0,0,138,110 +4481,1676556507,848914361,0,0,20,283 +8025,1676556659,848955438,0,0,163,132 +7641,1676557305,693750,848912100,222,33,1439 +1951,1676558039,213,0,0,61,370 +1951,1676558054,213,213,61,61,370 +4660,1676558144,780375,0,0,11,306 +8753,1676558820,604194,0,0,174,103 +8753,1676558828,604194,604194,174,174,103 +5912,1676558893,717445,0,0,0,85 +7704,1676558900,604194,0,0,174,105 +874,1676559134,848954240,509766,0,6,523 +6831,1676559501,848951176,0,0,138,186 +4304,1676559624,848953068,0,0,85,164 +1368,1676559638,769838,848954090,105,6,3765 +684,1676559639,848941909,848954090,105,6,5377 +8505,1676559750,848910736,0,0,198,100 +1680,1676560019,848954361,848951306,183,85,5403 +1680,1676560019,848954361,848954361,85,85,5403 +1680,1676560019,848954361,848954361,85,85,5403 +1632,1676560668,848943607,0,0,6,372 +7020,1676561240,693887,0,0,48,115 +8066,1676561361,769781,0,0,198,84 +7438,1676561421,848949493,0,0,48,129 +1680,1676562037,766625,848954361,85,6,5379 +5552,1676562796,848952288,0,0,86,237 +9139,1676563116,782308,0,0,76,52 +9448,1676563145,276237,0,0,48,34 +5553,1676563626,604194,0,0,174,234 +1916,1676563760,848881759,0,0,183,8361 +1916,1676563760,848881759,848881759,183,183,8361 +6495,1676564391,848955121,0,0,163,158 +1882,1676564498,848927565,0,0,138,266 +6780,1676564633,604194,0,0,174,138 +9660,1676564730,1582,0,0,61,39 +1392,1676564955,587894,0,0,48,406 +449,1676565142,13512,0,0,20,407 +526,1676565353,693887,0,0,48,337 +5901,1676566384,787334,848951187,152,86,1188 +93,1676567257,848890745,848953214,3,174,1818 +5853,1676567523,848955081,0,0,172,200 +1611,1676567637,848890745,848953214,3,174,6682 +7244,1676567659,848954504,848953992,0,2,3377 +1896,1676567684,848890745,848953214,3,174,4049 +2449,1676567960,848954640,0,0,2,204 +9396,1676568609,604194,0,0,174,53 +1916,1676568676,848929146,848881759,183,61,8356 +149,1676569401,848936921,0,0,6,9742 +7598,1676569588,769092,0,0,185,91 +2140,1676569631,848890745,848953214,3,174,4382 +3057,1676569641,848909148,0,0,20,333 +3339,1676569688,411608,0,0,138,308 +3891,1676569751,848953704,0,0,91,875 +857,1676570415,374049,0,0,183,1959 +2267,1676570892,848940915,0,0,150,468 +3706,1676572200,552694,0,0,48,286 +8410,1676572717,693750,607873,222,33,1165 +1238,1676573451,848952932,848952522,105,85,2357 +198,1676573533,766625,848949204,105,6,6071 +4567,1676574066,750685,748168,42,76,3869 +1428,1676574424,848949948,766625,6,85,11940 +1461,1676574502,794964,0,0,61,552 +1389,1676574779,848943607,0,0,6,234 +1428,1676574918,766625,848949948,85,6,11916 +3522,1676575442,693802,0,0,138,323 +6522,1676575722,848890745,0,0,174,191 +171,1676577150,766397,0,0,0,424 +6590,1676577245,746070,0,0,74,185 +2861,1676577249,848953401,0,0,138,381 +5975,1676577497,848955121,0,0,163,153 +8744,1676577709,848937255,848955313,0,209,992 +1115,1676578321,848936929,0,0,6,322 +4002,1676578334,848890745,0,0,174,240 +7316,1676578617,848954199,0,0,35,111 +6498,1676578835,848890745,0,0,174,117 +518,1676579257,848948254,0,0,6,347 +4767,1676582126,780375,0,0,11,293 +1353,1676582297,848936926,0,0,6,526 +1854,1676582749,848952024,0,0,163,286 +5605,1676582940,604194,0,0,174,217 +7393,1676583030,848950496,0,0,172,131 +6093,1676583235,632648,0,0,172,199 +1539,1676583266,729178,718150,0,48,9697 +716,1676583359,848953950,0,0,6,261 +1281,1676583998,769838,848954090,105,6,2655 +2790,1676584681,848909148,0,0,20,435 +5547,1676584828,848952678,0,0,219,132 +6612,1676584969,693887,0,0,48,162 +2131,1676585498,848954410,0,0,2,243 +1216,1676585654,769838,848954090,105,6,1981 +5145,1676585749,848952236,0,0,74,230 +6466,1676586008,848955067,0,0,42,100 +371,1676587007,848948254,0,0,6,446 +371,1676587007,848948254,848948254,6,6,446 +2835,1676587117,848952932,0,0,85,329 +1754,1676587705,769838,848954090,105,6,8156 +3583,1676588081,272255,0,0,48,279 +6638,1676588430,848951632,0,0,138,177 +3749,1676588577,848954700,0,0,32,380 +919,1676589102,848948254,0,0,6,349 +4484,1676589262,848914361,0,0,20,277 +3764,1676590542,264792,0,0,138,339 +9085,1676590661,1582,0,0,61,76 +1193,1676592025,693887,0,0,48,292 +9151,1676592061,848955105,0,0,185,73 +7258,1676592088,693750,0,0,33,115 +498,1676592165,848943607,0,0,6,409 +230,1676592338,848953926,0,0,2,420 +348,1676592366,398664,0,0,33,289 +456,1676592555,463920,0,0,20,315 +2340,1676592823,848890745,0,0,174,507 +3563,1676593963,848951023,0,0,48,369 +4742,1676594065,785504,627483,86,20,8946 +1169,1676594266,344518,0,0,20,398 +2536,1676594447,848890745,0,0,174,349 +1132,1676594843,769838,848954090,105,6,412 +4529,1676595160,848954006,0,0,2,263 +9340,1676595166,848954637,0,0,11,44 +2420,1676595549,848890745,0,0,174,330 +8591,1676596099,848953915,0,0,198,102 +2200,1676596283,848890745,0,0,174,408 +9584,1676597141,604194,0,0,174,45 +2886,1676597685,848949493,0,0,48,327 +1595,1676597719,848953670,0,0,0,271 +2437,1676598533,848890745,0,0,174,330 +5112,1676598986,848949493,0,0,48,237 +613,1676599522,848936921,0,0,6,400 +6136,1676599592,848954762,0,0,185,189 +1651,1676600151,848936921,0,0,6,432 +783,1676600615,213,0,0,61,335 +9901,1676601712,604194,0,0,174,26 +1866,1676601889,848936921,0,0,6,204 +6682,1676602936,848954814,0,0,210,204 +1029,1676603175,587894,0,0,48,321 +1024,1676603770,848953950,0,0,6,347 +6424,1676603851,848941569,848955133,0,219,5311 +6264,1676604126,693887,0,0,48,173 +6264,1676604138,693887,693887,48,48,173 +7527,1676604307,848954437,0,0,198,141 +941,1676604318,769838,0,0,6,322 +1810,1676604370,848880663,0,0,138,316 +1124,1676604406,848880663,0,0,138,270 +198,1676604467,848949948,766625,6,85,6162 +198,1676604467,848949948,848949948,85,85,6162 +198,1676604469,848949948,848949948,85,85,6076 +4861,1676604774,750685,748168,42,76,7858 +2942,1676604961,848942432,0,0,74,157 +7375,1676605475,848949493,0,0,48,121 +492,1676605604,848941909,0,0,6,307 +2376,1676606173,848951549,0,0,20,779 +7258,1676606181,1582,693750,33,61,115 +7258,1676606183,1582,1582,61,61,107 +53,1676606441,848953950,0,0,6,240 +5894,1676606553,848953992,772572,0,0,1164 +998,1676606885,848953950,0,0,6,295 +4281,1676607142,410165,0,0,85,210 +2819,1676608827,848953401,0,0,138,303 +5236,1676608938,848949493,0,0,48,160 +8103,1676609041,780485,0,0,11,67 +5433,1676609189,848940612,0,0,174,197 +5703,1676609208,568,0,0,32,194 +9609,1676609293,604194,0,0,174,40 +351,1676609945,848936921,0,0,6,308 +3755,1676609999,848953039,848954768,219,85,4439 +4104,1676609999,848951308,848954768,219,85,9492 +1493,1676610459,848936921,0,0,6,302 +2510,1676611114,693802,0,0,138,348 +2354,1676611438,848890745,0,0,174,265 +1615,1676611777,573851,0,0,86,384 +6200,1676612037,848955121,0,0,163,177 +7769,1676613113,693750,0,0,33,79 +9111,1676613335,231006,0,0,212,67 +2510,1676614111,780947,693802,138,3,348 +2510,1676614111,780947,780947,3,3,348 +8559,1676614157,848949493,0,0,48,79 +1042,1676614480,848880663,0,0,138,183 +1839,1676614790,848880663,0,0,138,303 +916,1676614879,848936921,0,0,6,378 +202,1676615080,766625,766625,6,6,7264 +3295,1676615189,848950123,0,0,0,461 +3919,1676615589,604194,0,0,174,412 +2381,1676615707,848890745,0,0,174,424 +1220,1676616285,213,0,0,61,331 +5647,1676616342,848955043,848955012,0,172,3375 +9121,1676616743,848949493,0,0,48,91 +6402,1676617356,848953551,0,0,32,156 +7251,1676617572,848951176,0,0,138,166 +9747,1676617669,604194,0,0,174,44 +35,1676618081,848936921,0,0,6,454 +6026,1676618566,848954539,0,0,105,225 +249,1676619471,848881759,848949204,105,183,1717 +6813,1676619829,848955204,0,0,91,106 +2400,1676619834,848940914,0,0,150,338 +2862,1676619862,587894,0,0,48,364 +4657,1676620520,848953068,0,0,85,287 +1420,1676621052,848936926,0,0,6,364 +3555,1676621447,848954006,0,0,2,274 +8409,1676621687,848953915,0,0,198,93 +5430,1676621886,848952450,789326,42,74,1232 +1555,1676622161,848948254,0,0,6,375 +1555,1676622161,848948254,848948254,6,6,375 +1584,1676623059,848953950,0,0,6,287 +2590,1676623413,848890745,0,0,174,274 +2498,1676624417,848890745,0,0,174,244 +273,1676624520,848927565,0,0,138,481 +5877,1676624524,787334,0,0,86,194 +3917,1676625349,676986,0,0,138,313 +1100,1676626360,848936921,0,0,6,284 +5330,1676626531,848949493,0,0,48,156 +2154,1676626685,230556,0,0,48,355 +2510,1676627108,693802,780947,3,138,336 +2262,1676627987,848890745,0,0,174,292 +1861,1676628364,848936921,0,0,6,362 +1861,1676628372,848936921,848936921,6,6,362 +6073,1676628379,848890745,0,0,174,96 +732,1676628678,848948254,0,0,6,294 +552,1676630707,848943607,0,0,6,305 +4215,1676631609,604194,0,0,174,365 +44,1676633548,848936921,0,0,6,346 +8642,1676634778,848949493,0,0,48,63 +3397,1676635133,848953962,0,0,2,374 +1208,1676635999,848953926,0,0,2,352 +6072,1676636474,848940612,0,0,174,197 +7320,1676636744,693887,0,0,48,130 +8176,1676637207,604194,0,0,174,83 +9125,1676638433,1582,0,0,61,58 +6486,1676638582,693887,0,0,48,303 +264,1676639848,848953926,0,0,2,308 +3752,1676641572,848954006,0,0,2,292 +8291,1676641626,848930230,0,0,209,112 +2262,1676641664,848936718,848890745,174,3,292 +2262,1676641664,848936718,848936718,3,3,292 +4579,1676641707,848951632,0,0,138,341 +6156,1676642401,848946291,848955067,42,76,2179 +6030,1676642401,848946291,848955067,42,76,3296 +1070,1676643241,848941909,0,0,6,583 +2129,1676644303,744645,0,0,85,294 +532,1676644483,848954428,848953950,6,20,5428 +2531,1676644695,848954006,0,0,2,366 +2858,1676645405,411608,0,0,138,239 +8233,1676645431,1582,0,0,61,124 +4064,1676645460,552694,0,0,48,277 +8345,1676645609,604194,0,0,174,82 +7400,1676646825,790095,619204,225,197,3919 +3932,1676647937,794964,0,0,61,440 +1516,1676648666,848880663,0,0,138,343 +4539,1676648815,848914361,0,0,20,222 +6007,1676649222,848947885,848955063,208,187,1542 +249,1676649549,848941909,848881759,183,6,1734 +358,1676649585,735108,848953950,6,20,6703 +7248,1676650531,568,0,0,32,143 +6201,1676651143,848954894,0,0,152,184 +1675,1676652270,848880663,0,0,138,349 +258,1676652460,213,0,0,61,355 +1176,1676653423,766397,0,0,0,388 +4866,1676653568,714184,0,0,0,283 +7540,1676653809,693750,0,0,33,111 +8291,1676656027,848930230,848930230,209,209,121 +8542,1676656175,153367,0,0,185,95 +389,1676657012,848880663,0,0,138,290 +1399,1676657222,848936921,0,0,6,1189 +5866,1676657254,848949493,0,0,48,205 +6720,1676657605,848950849,0,0,0,150 +7546,1676657607,848949493,0,0,48,85 +8588,1676658177,284001,0,0,216,126 +4212,1676658395,848954637,0,0,11,271 +5284,1676658552,775955,0,0,227,261 +6972,1676658562,848890745,0,0,174,192 +3272,1676658637,790183,0,0,138,225 +3531,1676658792,693802,0,0,138,339 +6994,1676659885,1582,0,0,61,178 +8406,1676660930,604194,0,0,174,103 +8690,1676660958,693750,0,0,33,68 +7413,1676661179,848949493,0,0,48,176 +2721,1676661298,848890745,0,0,174,480 +1300,1676661441,848880663,0,0,138,237 +3368,1676662014,848954006,0,0,2,354 +8569,1676662272,848955438,0,0,163,64 +6809,1676662280,746070,0,0,74,244 +1513,1676662961,848945433,848911019,12,138,2120 +6762,1676663934,848955222,848955191,0,185,2421 +5709,1676664348,848955129,0,0,163,200 +3230,1676664688,576637,0,0,86,496 +3392,1676664782,848954719,0,0,32,602 +8398,1676665152,790095,0,0,197,112 +565,1676665553,848943607,697760,0,6,2139 +3885,1676667289,790183,0,0,138,215 +7272,1676667335,604194,0,0,174,176 +3146,1676668558,794964,0,0,61,426 +8481,1676669511,848910736,0,0,198,110 +3797,1676669731,848951632,0,0,138,324 +3403,1676670733,794964,0,0,61,261 +1366,1676672046,848880663,0,0,138,262 +8525,1676672338,604194,0,0,174,72 +538,1676673047,848948254,768825,105,6,3961 +9805,1676673345,848949493,0,0,48,34 +8312,1676673947,848954832,0,0,134,107 +8645,1676675078,276237,0,0,48,107 +188,1676675193,848889826,0,0,42,323 +3279,1676675717,848954700,0,0,32,261 +6823,1676675823,848954199,0,0,35,206 +2098,1676676263,780375,0,0,11,384 +7472,1676676303,339555,565794,97,74,2702 +5676,1676676780,848946291,0,0,76,1078 +7045,1676677234,848954998,0,0,152,165 +1469,1676677538,848936921,0,0,6,283 +6906,1676678132,514187,0,0,97,151 +5627,1676678340,750685,789326,42,76,951 +7113,1676678708,693750,0,0,33,106 +1212,1676679029,587894,0,0,48,427 +8377,1676679406,787586,848954719,32,74,316 +8377,1676679409,848952488,787586,74,32,292 +1080,1676679479,848936921,0,0,6,389 +2255,1676679607,741494,0,0,2,406 +3922,1676680374,375649,0,0,32,350 +6006,1676680856,264108,0,0,172,170 +6930,1676681614,848934831,0,0,163,143 +265,1676681777,848880663,0,0,138,368 +2112,1676681945,792025,0,0,48,1108 +5420,1676683187,848954539,0,0,105,276 +5599,1676683387,848953200,848955003,0,53,492 +3827,1676683853,790183,0,0,138,270 +7361,1676684299,693750,0,0,33,99 +3988,1676684331,848953068,0,0,85,361 +7694,1676684987,604194,0,0,174,91 +5986,1676685139,848951632,0,0,138,779 +3058,1676685564,351605,0,0,219,302 +2425,1676685718,415671,0,0,85,375 +4008,1676686562,410165,0,0,85,266 +7232,1676688195,848955204,848952960,0,91,3932 +2568,1676688864,576637,0,0,86,470 +2353,1676688943,848940915,0,0,150,344 +3330,1676689073,848881027,848950123,0,227,2807 +6384,1676689149,848955121,0,0,163,139 +7421,1676689570,848954607,848955305,184,32,1854 +7421,1676689570,848954607,848954607,32,32,1854 +1058,1676690599,848929146,0,0,6,439 +1731,1676691612,848949948,0,0,85,325 +2128,1676692488,848890745,0,0,174,346 +4350,1676692649,848952678,0,0,219,295 +1396,1676692749,848936921,0,0,6,301 +6648,1676693650,848890745,0,0,174,205 +8523,1676693667,848954190,0,0,35,79 +9445,1676693887,848955043,0,0,172,59 +5880,1676694066,848954609,0,0,50,203 +5880,1676694067,848954609,848954609,50,50,203 +9978,1676694164,848949493,0,0,48,27 +4985,1676694270,848951176,0,0,138,203 +7917,1676694803,848954832,0,0,134,133 +1062,1676695136,761474,0,0,33,328 +1119,1676696474,587894,0,0,48,408 +3462,1676696876,848951176,0,0,138,385 +28,1676696902,573851,0,0,86,353 +6362,1676697207,776842,0,0,88,213 +1981,1676697340,693802,0,0,138,405 +4734,1676697476,775955,0,0,227,260 +8362,1676697706,1582,0,0,61,80 +1970,1676697765,587894,0,0,48,466 +8135,1676698282,848949493,0,0,48,85 +2346,1676699457,848954361,0,0,85,368 +6735,1676699891,848954539,0,0,239,169 +5148,1676699973,264792,0,0,138,206 +691,1676700941,848943607,0,0,6,347 +7786,1676702519,604194,0,0,174,142 +9202,1676702520,780485,0,0,11,53 +5598,1676702705,790183,0,0,138,348 +8288,1676703155,848955149,0,0,162,98 +5359,1676703715,848929146,554600,0,6,6342 +976,1676705472,848943607,0,0,6,331 +8183,1676705640,848940894,0,0,11,153 +1396,1676705826,761474,848936921,6,33,277 +1396,1676705826,761474,761474,33,33,277 +5957,1676705975,171766,0,0,33,219 +3381,1676706428,576637,0,0,86,395 +119,1676707104,587894,0,0,48,432 +3653,1676708414,676986,0,0,138,343 +6694,1676709227,848940894,0,0,11,148 +2513,1676710064,790183,795932,22,138,802 +1529,1676710350,213,0,0,6,360 +9015,1676710431,848937255,249275,104,198,794 +5143,1676711210,848949067,0,0,91,224 +2389,1676711700,848880663,697760,0,138,8475 +1001,1676711700,848880663,697760,0,138,9047 +829,1676711700,848880663,697760,0,138,6350 +829,1676711700,848880663,848880663,138,138,6350 +5650,1676712124,848953068,0,0,85,203 +7400,1676713909,649035,790095,197,74,3871 +7400,1676713909,649035,649035,74,74,3871 +6748,1676714749,848951632,0,0,138,123 +6748,1676714749,848951632,848951632,138,138,123 +126,1676715096,848936921,0,0,6,361 +2943,1676715536,794964,0,0,61,359 +3816,1676716329,848954719,0,0,32,311 +9634,1676716396,848951609,0,0,42,36 +1755,1676716747,587894,0,0,48,444 +692,1676717186,587894,0,0,48,323 +7297,1676717295,264108,0,0,172,240 +1989,1676717400,848945162,0,0,33,449 +1313,1676717667,848936921,0,0,6,394 +2060,1676717722,848890745,0,0,174,328 +336,1676718256,848943607,0,0,6,304 +297,1676718803,587894,0,0,48,257 +1947,1676719278,463920,384998,86,20,8155 +619,1676719570,848954361,0,0,85,454 +1297,1676719574,761474,0,0,33,359 +315,1676719764,848936921,0,0,6,484 +1115,1676719947,693887,848936929,6,48,517 +643,1676720087,587894,0,0,48,349 +5870,1676720554,848941569,848955133,0,219,2407 +559,1676721014,848953950,0,0,6,162 +8212,1676721043,375649,848935728,0,32,1577 +2977,1676721201,794964,0,0,61,448 +1542,1676721317,761474,0,0,33,404 +6351,1676721416,787334,0,0,86,159 +5275,1676722417,790183,0,0,138,301 +3013,1676722866,848945162,0,0,33,563 +3013,1676722866,848945162,848945162,33,33,563 +1077,1676723891,848880663,0,0,138,351 +1724,1676724582,848933579,0,0,6,440 +1412,1676724600,761474,0,0,33,324 +780,1676724981,848949948,0,0,85,475 +5107,1676725055,848954006,848954926,66,2,4312 +1313,1676725978,761474,848936921,6,33,418 +1313,1676725978,761474,761474,33,33,418 +8298,1676726206,781432,788057,104,198,1679 +7877,1676727046,715075,0,0,0,89 +7345,1676727087,775729,848955100,182,239,3236 +5253,1676727468,848949344,0,0,42,261 +6479,1676727868,848954015,0,0,2,2333 +1801,1676728061,744645,0,0,85,327 +1720,1676728203,398664,0,0,33,321 +4234,1676728983,848954820,0,0,76,274 +2798,1676729334,848945162,0,0,33,194 +4866,1676729387,848935026,714184,0,185,438 +1005,1676729425,848936921,0,0,6,357 +1254,1676729811,848880663,0,0,138,651 +5834,1676729871,848945233,848955039,134,91,1811 +1041,1676729875,587894,0,0,48,390 +5834,1676729883,848945233,848945233,91,91,1787 +5538,1676731067,171766,0,0,33,319 +10139,1676731399,848940894,0,0,11,32 +5991,1676732010,171766,0,0,33,187 +2580,1676732128,411608,0,0,138,291 +10087,1676732513,848940894,0,0,11,32 +3432,1676733148,415671,0,0,85,489 +1221,1676733977,587894,0,0,48,326 +8036,1676734021,749328,0,0,187,161 +2693,1676734247,848945162,0,0,33,246 +8367,1676734256,848955348,751295,198,209,6281 +9236,1676734412,231006,0,0,212,80 +1818,1676734448,213,0,0,6,454 +1797,1676734477,848949948,0,0,85,342 +2111,1676734820,415671,0,0,85,311 +1797,1676735662,848949948,848949948,85,85,342 +7037,1676736920,848884869,0,0,209,127 +1500,1676737198,398664,0,0,33,356 +2455,1676737252,792025,0,0,48,424 +7930,1676737416,848954504,848953992,0,2,2646 +7278,1676737979,693750,0,0,33,154 +2763,1676738573,576637,0,0,86,386 +899,1676739107,848949948,0,0,85,322 +5331,1676739260,790183,0,0,138,211 +5937,1676739484,848954637,0,0,11,191 +3265,1676740438,171766,0,0,33,361 +7616,1676740510,693750,0,0,33,97 +2961,1676740625,410165,0,0,85,333 +5653,1676741073,262676,0,0,74,242 +3170,1676741202,848951176,0,0,138,362 +883,1676742085,779484,848941831,0,48,9041 +7165,1676742249,848955311,0,0,209,209 +6101,1676742666,848954196,0,0,35,212 +564,1676742711,848949948,0,0,85,322 +759,1676743700,398664,0,0,33,327 +2793,1676744157,794964,0,0,61,305 +9741,1676744478,787899,0,0,11,48 +6964,1676745506,848954640,848953992,0,2,1958 +1179,1676745547,848941909,0,0,6,302 +9815,1676745710,848940894,0,0,11,37 +1273,1676745732,398664,0,0,33,276 +3456,1676745770,848945162,0,0,33,117 +4176,1676745912,796360,0,0,138,338 +1671,1676746291,761474,0,0,33,390 +8549,1676746549,848941179,0,0,198,138 +4821,1676747104,848935026,0,0,185,321 +7304,1676747573,848890745,0,0,174,182 +3094,1676747587,693802,0,0,138,313 +8812,1676747851,848949493,0,0,48,104 +7123,1676747881,848954608,0,0,88,53 +3494,1676748623,848945162,0,0,33,350 +3475,1676748654,693256,220600,0,76,1602 +1331,1676749340,848953950,0,0,6,391 +10107,1676749378,848949493,0,0,48,32 +8899,1676749447,782908,0,0,32,41 +8429,1676749814,1582,0,0,61,101 +2998,1676750031,171766,0,0,33,335 +48,1676751146,848936921,0,0,6,295 +5449,1676751458,848949344,0,0,42,222 +1197,1676751582,848949948,0,0,85,476 +964,1676751742,761474,0,0,33,475 +2294,1676751847,741494,0,0,2,407 +2699,1676751985,848953401,0,0,138,523 +1213,1676752213,761474,0,0,33,386 +1775,1676752834,761474,0,0,33,250 +7676,1676753445,604194,0,0,174,35 +1239,1676753916,848880663,0,0,138,372 +2380,1676754179,848954223,0,0,88,402 +2380,1676754179,848954223,848954223,88,88,402 +1980,1676754232,761474,0,0,33,370 +1224,1676754531,769838,0,0,6,332 +3487,1676755219,171766,0,0,33,505 +1601,1676755387,398664,0,0,33,382 +1921,1676755558,848951817,848954366,0,32,927 +3177,1676755643,848914361,0,0,20,416 +1349,1676755982,766625,0,0,6,427 +3500,1676756262,848951632,0,0,138,309 +321,1676756597,761474,0,0,33,375 +1455,1676757075,463920,0,0,20,272 +5123,1676757735,848951632,0,0,138,263 +2229,1676758137,171766,0,0,33,454 +2703,1676758425,171766,0,0,33,366 +2716,1676758787,848945162,0,0,33,237 +1723,1676759114,848880663,0,0,138,257 +1723,1676759114,848880663,848880663,138,138,257 +1723,1676759114,848880663,848880663,138,138,257 +859,1676759159,848936921,0,0,6,332 +1144,1676759347,744645,0,0,85,513 +3649,1676759807,171766,0,0,33,353 +5541,1676760151,171766,0,0,33,267 +1537,1676760453,848949948,0,0,85,337 +1415,1676760685,761474,0,0,33,266 +1311,1676760759,779484,848941831,0,48,3055 +1274,1676760932,766625,0,0,6,374 +3084,1676761004,794964,0,0,61,336 +5133,1676761098,750685,0,0,76,251 +7014,1676761313,848955442,0,0,35,179 +6088,1676761792,171766,0,0,33,207 +1589,1676761825,848949948,0,0,85,306 +7619,1676762560,750685,0,0,76,196 +785,1676763197,744645,0,0,85,538 +8545,1676763783,276237,0,0,48,86 +2417,1676764123,848952932,0,0,85,404 +1843,1676764901,848880663,0,0,138,262 +1843,1676764901,848880663,848880663,138,138,262 +8966,1676765164,848954196,0,0,35,71 +5021,1676765185,848953992,0,0,0,232 +9656,1676765687,649035,0,0,74,55 +2240,1676765867,503636,0,0,138,418 +9891,1676766029,848954190,0,0,35,37 +1908,1676766151,761474,0,0,33,343 +3087,1676766603,171766,0,0,33,258 +1998,1676766756,848954604,0,0,0,467 +7792,1676766776,848954611,0,0,32,108 +3844,1676767082,790183,707957,66,138,2167 +5685,1676767393,787334,0,0,86,152 +1525,1676767485,693887,848936929,6,48,2776 +1525,1676767485,693887,693887,48,48,2776 +5971,1676767749,218304,0,0,0,191 +5646,1676767869,604194,0,0,174,289 +638,1676768400,792025,848936921,6,48,7287 +1546,1676768400,693887,848936929,6,48,7227 +314,1676768400,848951549,848953950,6,20,9511 +26,1676768407,693887,848936929,6,48,4642 +26,1676768407,693887,693887,48,48,4642 +1683,1676768407,616498,848936921,6,48,3617 +709,1676768441,503636,0,0,138,340 +763,1676768446,767507,848954240,6,138,6622 +908,1676768584,782308,771856,42,76,10755 +662,1676768591,848880663,0,0,138,357 +1473,1676768940,761474,0,0,33,246 +7736,1676769240,848949252,0,0,187,156 +1274,1676769350,848949948,766625,6,85,374 +1289,1676769629,779484,848941831,0,48,3697 +633,1676770155,848914361,848953950,6,20,6614 +5770,1676770271,714184,0,0,185,321 +5555,1676770681,848953197,0,0,53,311 +4907,1676770742,264792,0,0,138,260 +3480,1676771655,442099,0,0,97,380 +1964,1676771770,848910455,0,0,91,350 +5137,1676772115,374049,0,0,183,292 +2809,1676772269,848945162,0,0,33,452 +5915,1676772293,741494,0,0,2,1483 +6744,1676772562,746070,0,0,74,227 +7387,1676773583,693750,0,0,33,141 +603,1676773592,398664,0,0,33,258 +4549,1676773615,790183,7536,119,138,1577 +2735,1676773889,848945162,0,0,33,458 +5894,1676773943,848954015,848953992,0,2,1598 +2517,1676774047,848927565,0,0,138,440 +6100,1676774228,848954196,0,0,35,214 +2116,1676774908,761474,0,0,33,352 +874,1676774910,848914361,848954240,6,20,506 +2551,1676774917,848953401,0,0,138,435 +3299,1676775026,848881027,0,0,227,437 +2828,1676775209,171766,0,0,33,483 +6470,1676775237,848954814,0,0,210,397 +7727,1676775294,848955490,751295,0,209,2883 +1585,1676775509,761474,0,0,33,494 +4667,1676775792,848955001,0,0,169,275 +5728,1676777226,848949344,0,0,42,183 +1048,1676777338,779484,848941831,0,48,3075 +1648,1676777468,344518,0,0,20,1231 +224,1676778199,398664,0,0,33,306 +4699,1676778562,848954854,0,0,0,268 +634,1676779245,572558,848936926,6,48,7570 +846,1676780187,744645,0,0,85,386 +2085,1676780391,761474,0,0,33,268 +1481,1676780474,848914361,848954240,6,20,1720 +1481,1676780474,848914361,848914361,20,20,1720 +1599,1676781483,848945433,848954240,6,138,2974 +862,1676781575,463920,0,0,20,352 +9148,1676782131,848941179,0,0,198,60 +8013,1676782187,848953907,848947609,47,187,233 +430,1676782330,848936921,0,0,6,400 +38,1676782462,735108,848953950,6,20,8189 +4602,1676782799,848953039,848952678,219,85,3707 +990,1676782833,572558,848936926,6,48,3390 +9465,1676783085,848953915,0,0,198,51 +7711,1676783599,848910736,0,0,198,123 +7926,1676783886,282832,0,0,167,119 +2892,1676784234,848952932,0,0,85,349 +1923,1676784282,848910455,0,0,91,307 +1462,1676784875,13512,0,0,20,346 +1842,1676785365,744645,0,0,85,401 +1911,1676785508,761474,0,0,33,360 +4950,1676785750,604194,0,0,174,252 +784,1676786609,848880663,0,0,138,498 +8565,1676788175,780485,0,0,11,98 +7054,1676788179,171766,0,0,33,207 +251,1676789039,848951061,0,0,20,418 +4165,1676789577,848951632,0,0,138,408 +6018,1676790143,693802,0,0,138,223 +1116,1676790441,848880663,0,0,138,342 +1116,1676790441,848880663,848880663,138,138,342 +4350,1676790775,848953068,848952678,219,85,438 +4350,1676790775,848953068,848953068,85,85,438 +5745,1676791271,848954810,0,0,172,206 +1196,1676791481,398664,0,0,33,444 +5237,1676791630,272255,0,0,48,286 +2216,1676792522,848890745,0,0,174,386 +3371,1676794696,693802,0,0,138,337 +6230,1676794858,693256,605760,0,76,2142 +920,1676795399,744645,0,0,85,388 +4602,1676795827,848952678,848953039,85,219,3736 +818,1676796223,503636,0,0,138,377 +707,1676796512,848880663,0,0,138,301 +3028,1676797764,848953950,0,0,6,2107 +10157,1676797866,848949493,0,0,48,33 +850,1676798306,848951549,848953670,0,20,4659 +6499,1676799180,262676,0,0,74,194 +1215,1676799600,276237,848936926,6,48,3171 +990,1676800143,848936926,572558,48,6,3424 +990,1676800143,848936926,848936926,6,6,3424 +1258,1676800520,848936921,0,0,6,373 +3627,1676800650,171766,0,0,33,424 +207,1676801064,848949948,0,0,85,290 +7669,1676801101,848940894,848955348,209,11,3581 +8367,1676801103,848940894,848955348,209,11,6303 +8367,1676801103,848940894,848940894,11,11,6303 +1623,1676801164,587894,0,0,48,350 +1686,1676801213,848949948,0,0,85,638 +889,1676801382,761474,0,0,33,479 +7977,1676801461,848910736,0,0,198,127 +945,1676801710,779484,848941831,0,48,1850 +5126,1676802036,653971,0,0,0,256 +1914,1676803013,761474,0,0,33,249 +1730,1676803611,276237,848936926,6,48,4951 +1730,1676803611,276237,276237,48,48,4951 +3722,1676804688,171766,0,0,33,345 +4403,1676805621,848954006,775955,227,2,10125 +8076,1676806071,568,0,0,32,109 +990,1676806452,572558,848936926,6,48,3366 +8386,1676806819,693750,0,0,33,89 +369,1676806885,848953926,0,0,2,8783 +2774,1676807207,848945162,0,0,33,363 +333,1676807217,151032,0,0,20,297 +515,1676807344,779484,848941831,0,48,2105 +5185,1676807345,848953068,0,0,85,407 +2439,1676807591,398664,0,0,33,450 +2984,1676807659,171766,0,0,33,451 +4340,1676808228,848951308,848952678,219,85,3835 +4519,1676808477,848953962,848953962,2,2,4935 +5462,1676809252,848954762,0,0,185,156 +3028,1676810346,848914361,848953950,6,20,2117 +1452,1676811004,761474,0,0,33,429 +7971,1676811664,153367,0,0,185,205 +8123,1676811706,750685,0,0,76,116 +1613,1676812240,848880663,0,0,138,298 +750,1676812491,779484,0,0,48,2291 +6016,1676812750,171766,0,0,33,3830 +6611,1676813911,568,0,0,32,162 +7595,1676814103,848955238,0,0,216,171 +5911,1676814786,848953068,0,0,85,263 +4781,1676815217,848954131,0,0,0,288 +3182,1676815775,171766,0,0,33,395 +3103,1676815797,171766,0,0,33,405 +8633,1676816146,749328,0,0,187,68 +4261,1676816934,796360,0,0,138,255 +82,1676817171,848881759,554600,240,183,1035 +3003,1676817705,848945162,0,0,33,200 +1509,1676817745,769838,0,0,6,355 +8817,1676817847,769781,0,0,198,144 +4261,1676818996,796360,796360,138,138,255 +548,1676819776,848951061,0,0,20,449 +4267,1676819891,848914361,0,0,20,199 +290,1676820253,848949948,0,0,85,337 +9981,1676820651,848953962,0,0,2,33 +8737,1676820915,848954437,0,0,198,78 +4042,1676821738,509533,0,0,6,311 +7653,1676821760,848910736,0,0,198,150 +2334,1676821778,785871,0,0,48,252 +2413,1676822058,767507,0,0,138,428 +2005,1676822645,761474,0,0,33,404 +5409,1676822890,848953068,0,0,85,1034 +5409,1676822890,848953068,848953068,85,85,1034 +5409,1676822890,848953068,848953068,85,85,1034 +4360,1676823018,171766,0,0,33,255 +8448,1676823300,848954218,0,0,35,89 +275,1676824330,693887,848936929,6,48,9643 +275,1676824330,693887,693887,48,48,9643 +2556,1676824673,779484,848941831,0,48,5140 +1103,1676824777,766625,0,0,6,358 +744,1676825092,848937811,0,0,240,384 +750,1676825593,848953926,779484,48,2,2346 +9673,1676825900,693750,0,0,33,49 +1599,1676826393,848936921,848945433,138,6,2672 +6647,1676826546,848890745,0,0,174,49 +6841,1676827870,649035,0,0,74,178 +5554,1676828441,848954978,0,0,152,193 +7648,1676828687,848955388,0,0,198,150 +1375,1676829264,779484,848941831,0,48,3858 +5354,1676829460,848954762,0,0,185,200 +2236,1676829866,848941404,0,0,85,281 +6934,1676829880,171766,0,0,33,177 +5967,1676830414,848953068,0,0,85,210 +4360,1676830880,580805,171766,33,76,269 +4360,1676830880,580805,580805,76,76,269 +4360,1676830880,580805,580805,76,76,269 +4360,1676830880,580805,580805,76,76,269 +1833,1676831326,779484,848941831,0,48,6581 +1140,1676831512,766625,0,0,6,343 +2033,1676831523,503636,0,0,138,307 +1362,1676831539,761474,0,0,33,257 +1140,1676831987,766625,766625,6,6,319 +3770,1676832421,264792,0,0,138,335 +4283,1676832433,763018,0,0,172,441 +7420,1676832455,848954607,0,0,227,160 +909,1676832502,761474,0,0,33,373 +1511,1676832687,766625,0,0,6,303 +1653,1676832696,848951061,0,0,20,249 +143,1676832751,766625,0,0,6,473 +1640,1676832875,848954609,848953377,0,50,305 +7236,1676832928,848955388,0,0,198,139 +8412,1676833296,848941179,0,0,198,129 +1765,1676833624,848949948,0,0,85,329 +3533,1676833874,848945162,0,0,33,188 +6237,1676833976,218304,0,0,0,212 +1051,1676836472,848936921,0,0,6,489 +1738,1676836590,503636,0,0,138,351 +453,1676836654,848949948,0,0,85,453 +2728,1676836912,410165,0,0,85,352 +3862,1676837178,796360,0,0,138,325 +1926,1676837410,848941404,0,0,85,397 +3144,1676837817,587894,0,0,48,407 +8353,1676838297,848955149,0,0,162,1655 +2838,1676838842,171766,0,0,33,395 +3676,1676839051,848894236,0,0,76,434 +9003,1676839212,848941179,0,0,209,82 +6142,1676839350,848954820,0,0,76,196 +5031,1676840153,848948640,0,0,227,232 +187,1676840178,744645,0,0,85,424 +3049,1676840429,848953401,0,0,138,301 +2560,1676840522,171766,0,0,33,341 +9045,1676841089,787586,0,0,74,94 +4779,1676841300,848952450,848951609,42,74,4377 +1875,1676841449,779484,0,0,48,376 +8613,1676841644,848954170,0,0,35,97 +9780,1676841725,757723,0,0,216,39 +1290,1676841761,848949948,0,0,85,425 +4669,1676842562,272255,0,0,48,251 +4572,1676843299,848938594,0,0,91,303 +9096,1676843343,848955412,848945039,104,198,1205 +3683,1676844493,796360,0,0,138,354 +1465,1676844587,213,0,0,6,456 +10219,1676845148,848949493,0,0,48,32 +1658,1676845570,344518,0,0,20,326 +2856,1676845651,587894,0,0,48,457 +5453,1676845791,848954322,848953197,53,2,3385 +2616,1676846047,796360,0,0,138,437 +2742,1676846188,780947,0,0,3,361 +1437,1676846243,766625,0,0,6,376 +1900,1676846381,848880663,0,0,138,419 +3634,1676847167,848914361,0,0,20,305 +1629,1676847344,779484,848941831,0,48,6174 +1629,1676847344,779484,779484,48,48,6174 +1266,1676847420,463920,0,0,20,359 +10301,1676847492,848940894,0,0,11,32 +9723,1676847709,848942053,0,0,216,49 +2363,1676847770,848941404,0,0,85,581 +951,1676847776,503636,0,0,138,330 +2490,1676847966,13512,0,0,20,440 +9426,1676848144,781432,0,0,198,78 +2069,1676848359,213,0,0,6,477 +2385,1676849314,848880663,0,0,138,831 +324,1676849377,693887,848936929,6,48,3353 +4504,1676849928,171766,0,0,33,267 +1123,1676850130,744645,0,0,85,636 +2616,1676850623,848943092,796360,138,20,437 +2616,1676850623,848943092,848943092,20,20,437 +3846,1676850827,848894236,0,0,76,270 +1744,1676850881,766625,0,0,6,309 +5453,1676850997,775955,848954322,2,227,3409 +4091,1676851032,848945162,0,0,33,338 +2446,1676852730,767507,0,0,138,402 +2408,1676852988,13512,0,0,20,338 +8173,1676854129,737871,751295,0,11,669 +937,1676854185,213,0,0,6,333 +937,1676854185,213,213,6,6,333 +2160,1676854306,13512,0,0,20,408 +1421,1676854382,792025,0,0,48,817 +4253,1676854527,848954854,0,0,0,286 +7013,1676854757,848934831,0,0,163,168 +6286,1676854870,151032,0,0,20,178 +7603,1676855462,848955311,0,0,198,193 +2785,1676856082,344518,0,0,20,2254 +1449,1676856242,848949948,0,0,85,410 +6523,1676857150,171766,0,0,33,179 +6111,1676857226,262676,0,0,74,171 +7446,1676858339,848945448,848951588,187,0,2135 +405,1676858483,792025,0,0,48,302 +2338,1676859237,782322,0,0,20,952 +7954,1676859255,1582,0,0,61,131 +10065,1676859391,325451,0,0,91,43 +1821,1676859441,459451,0,0,0,346 +1821,1676859441,459451,459451,0,0,346 +7939,1676859660,848954266,0,0,35,197 +2509,1676859861,676986,0,0,138,452 +4091,1676859985,580805,848945162,33,76,338 +8861,1676860022,848941179,0,0,209,82 +2500,1676860528,13512,0,0,20,315 +8965,1676861122,848955400,0,0,162,119 +8341,1676861186,848955008,0,0,152,101 +1435,1676861501,848947314,0,0,20,313 +2199,1676861721,410165,0,0,85,434 +572,1676861903,779484,848941831,0,48,10141 +2433,1676862068,13512,0,0,20,450 +1936,1676862091,503636,0,0,138,282 +8889,1676862175,1582,0,0,61,103 +1464,1676862180,848954361,0,0,85,323 +7246,1676862356,848950849,0,0,0,148 +8023,1676862433,749328,0,0,187,138 +8783,1676863463,693750,0,0,33,70 +8149,1676863714,848955129,0,0,209,92 +2297,1676864065,398664,0,0,33,377 +4494,1676864463,351605,0,0,219,317 +2883,1676864503,693802,0,0,138,415 +2864,1676864576,848953401,0,0,138,592 +5636,1676864772,714184,0,0,185,157 +610,1676864988,398664,0,0,33,401 +7836,1676865076,270197,0,0,185,152 +2208,1676865166,848941404,0,0,85,302 +3533,1676865711,580805,848945162,33,76,231 +22,1676866314,782322,0,0,20,313 +2616,1676866388,796360,848943092,20,138,437 +1218,1676866565,587894,0,0,48,296 +1554,1676866800,276237,848936926,6,48,4723 +1554,1676866800,276237,276237,48,48,4723 +1554,1676866800,276237,276237,48,48,4723 +1554,1676866800,276237,276237,48,48,4723 +2613,1676867322,848951176,0,0,138,369 +3228,1676867452,848951176,0,0,138,372 +6266,1676867651,848954266,0,0,35,308 +10356,1676868174,848940894,0,0,11,32 +2990,1676868193,848952932,0,0,85,408 +1248,1676868289,398664,0,0,33,294 +1248,1676868652,398664,398664,33,33,294 +2036,1676868990,398664,0,0,33,397 +2014,1676869260,848943092,0,0,20,596 +1166,1676869543,848948254,0,0,6,315 +6146,1676869759,13512,0,0,20,121 +2057,1676870062,848943092,0,0,20,332 +7034,1676870249,848932635,848955233,0,198,1213 +476,1676870646,848951061,0,0,20,469 +6453,1676872096,568,0,0,227,233 +635,1676872218,503636,0,0,138,388 +6398,1676873286,775955,0,0,227,224 +5079,1676873343,717445,0,0,0,270 +1294,1676873686,735108,848953950,6,20,7972 +7605,1676873898,848955204,0,0,91,185 +2257,1676875548,848910455,0,0,91,466 +7023,1676875863,848955105,0,0,185,136 +5581,1676876618,848935026,848954999,169,185,919 +5006,1676877196,676986,0,0,138,279 +6739,1676877711,848955211,0,0,65,204 +2190,1676878046,735108,0,0,20,762 +4342,1676878360,848894236,0,0,76,301 +58,1676878363,848948254,0,0,6,370 +58,1676878363,848948254,848948254,6,6,370 +10317,1676879212,848954190,0,0,35,28 +1304,1676880087,848936921,0,0,6,394 +5263,1676880190,848950496,0,0,172,236 +6287,1676880681,693256,848951646,0,76,2025 +2189,1676880938,848940914,0,0,150,442 +641,1676881227,848927565,848953950,6,138,8647 +641,1676881227,848927565,848927565,138,138,8647 +641,1676881260,848953950,848927565,138,6,8606 +6805,1676881268,264108,334769,0,172,2364 +2597,1676881301,782322,0,0,20,706 +797,1676882197,769838,0,0,6,463 +1044,1676882213,848954597,848919642,42,227,1538 +7506,1676882265,848949884,0,0,163,178 +641,1676883460,848953950,848953950,6,6,8606 +8575,1676885058,1582,0,0,61,101 +5050,1676885761,848952288,848954941,0,86,444 +5362,1676886393,171766,0,0,33,195 +194,1676886459,848949948,0,0,85,302 +2013,1676886840,411608,0,0,138,467 +5629,1676888175,509533,0,0,6,230 +1639,1676888996,509533,779484,48,6,4384 +5011,1676889715,848948640,0,0,227,236 +2071,1676889788,848943092,0,0,20,306 +3586,1676890729,796360,0,0,138,434 +1892,1676891654,848943092,0,0,20,354 +3335,1676891685,171766,0,0,33,624 +6190,1676891896,171766,0,0,33,178 +6190,1676891896,171766,171766,33,33,178 +4705,1676893259,848914361,0,0,20,311 +5933,1676894173,848950496,0,0,172,287 +2063,1676895433,848943092,0,0,20,496 +34,1676896238,766625,0,0,6,387 +2253,1676897855,848951817,848954366,0,32,340 +1093,1676897898,587894,0,0,48,349 +5182,1676899260,171766,0,0,33,227 +515,1676899402,509533,779484,48,6,2014 +515,1676899402,509533,509533,6,6,2014 +6411,1676899792,791583,0,0,76,180 +5182,1676899962,171766,171766,33,33,227 +5182,1676899962,171766,171766,33,33,227 +5182,1676899963,171766,171766,33,33,227 +9325,1676900066,848953915,0,0,209,77 +928,1676901283,848880663,0,0,138,291 +2272,1676901597,13512,0,0,20,269 +6863,1676901872,746070,0,0,74,228 +6656,1676901986,848929352,0,0,76,156 +3757,1676902169,796360,0,0,138,398 +967,1676902258,276237,0,0,48,349 +9490,1676902501,848952678,0,0,219,103 +6776,1676904156,848955081,0,0,172,144 +1112,1676904268,766625,0,0,6,955 +1689,1676904274,848936921,0,0,6,405 +8297,1676904386,276237,0,0,48,133 +1576,1676904605,848880663,0,0,138,239 +6944,1676907330,848955211,0,0,65,202 +9490,1676907693,848952678,848952678,219,219,103 +5883,1676908374,262676,0,0,74,173 +8963,1676908377,693750,0,0,33,69 +3281,1676908889,848952556,0,0,76,1136 +1664,1676909482,769838,0,0,6,351 +2189,1676909696,848945433,848940914,150,138,511 +2189,1676909696,848945433,848945433,138,138,511 +2189,1676909696,848945433,848945433,138,138,511 +5179,1676909832,848952288,848954941,35,86,3714 +8626,1676910293,848937255,0,0,198,85 +728,1676910421,735108,0,0,20,525 +8392,1676910536,848955519,0,0,2,103 +1394,1676910916,151032,0,0,20,3039 +1365,1676910967,171766,0,0,33,442 +1267,1676911408,848951061,0,0,20,440 +72,1676911741,848948254,0,0,6,364 +4673,1676911802,171766,0,0,33,281 +4359,1676912135,285101,0,0,66,337 +4602,1676912398,848953039,848952678,219,85,3844 +4602,1676912398,848953039,848953039,85,85,3844 +927,1676912771,848941404,0,0,85,153 +2421,1676912882,13512,0,0,20,349 +7424,1676912933,848955238,0,0,216,149 +5964,1676912936,848952288,0,0,86,240 +2184,1676912998,13512,0,0,20,366 +8177,1676913086,737871,848904254,209,11,2382 +3039,1676913160,848951176,0,0,138,352 +6205,1676913908,775955,0,0,227,144 +1394,1676914225,151032,151032,20,20,3015 +2158,1676914832,13512,0,0,20,425 +9885,1676915972,781432,0,0,198,41 +9885,1676916047,781432,781432,198,198,41 +6223,1676916912,693256,0,0,76,185 +4967,1676917128,848914361,0,0,20,196 +9999,1676918077,848949493,0,0,48,42 +2300,1676919178,848941404,0,0,85,521 +1820,1676919377,735108,848953950,6,20,7416 +2372,1676919589,848880663,0,0,138,470 +3281,1676920401,848953299,848952556,76,32,1126 +4236,1676920447,796360,0,0,138,378 +827,1676920545,766625,0,0,6,375 +261,1676921304,769838,0,0,6,436 +597,1676922459,503636,755121,5,138,3417 +2207,1676922461,848943092,0,0,20,434 +8682,1676922845,769781,0,0,198,118 +3744,1676923239,796360,0,0,138,374 +3068,1676923395,735108,0,0,20,541 +5583,1676923533,848953068,0,0,85,291 +1538,1676923693,766625,0,0,6,667 +1306,1676923991,848943607,0,0,6,210 +235,1676924155,503636,755121,5,138,1498 +2570,1676924166,767507,0,0,138,379 +4222,1676924284,848951632,0,0,138,411 +677,1676924702,848947314,0,0,20,455 +2561,1676924730,398664,0,0,33,305 +7445,1676925689,750685,0,0,76,151 +1499,1676925888,587894,0,0,48,330 +3449,1676926485,848894236,0,0,76,554 +9694,1676927359,848955032,848953477,229,207,1133 +2375,1676927508,848880663,0,0,138,396 +2095,1676928655,744645,0,0,85,378 +6036,1676929134,769092,218304,0,185,7125 +5314,1676929269,848954140,0,0,85,341 +357,1676929543,848948254,0,0,6,394 +661,1676929845,848951061,0,0,20,407 +1453,1676930120,782322,0,0,20,394 +8918,1676930222,693750,0,0,33,53 +7795,1676930236,787899,0,0,11,113 +1605,1676930644,848951061,0,0,20,366 +8355,1676930758,848954607,0,0,227,147 +8764,1676930886,848940894,848930230,209,11,5939 +2172,1676930908,848943092,0,0,20,487 +3423,1676931166,264792,0,0,138,360 +3121,1676931364,848942432,0,0,74,364 +2949,1676931692,848951176,0,0,138,303 +1814,1676932742,344518,0,0,20,443 +3558,1676932971,790183,707957,66,138,4732 +3558,1676932971,790183,790183,138,138,4732 +4367,1676933113,790183,7536,119,138,768 +4241,1676933163,848954776,0,0,185,328 +1737,1676933350,693887,0,0,48,442 +6621,1676933365,848954201,0,0,35,233 +7312,1676934179,693887,0,0,48,177 +1369,1676934802,848948640,0,0,227,554 +1536,1676934934,848936921,0,0,6,365 +8686,1676935231,1582,0,0,61,124 +4525,1676935460,848914361,0,0,20,361 +4903,1676935642,848954987,0,0,22,318 +2608,1676936990,398664,0,0,33,395 +625,1676937069,848943607,0,0,6,447 +394,1676937374,848952932,0,0,85,459 +113,1676937418,741494,0,0,2,374 +5301,1676937743,848935026,0,0,185,222 +8325,1676938004,848955490,0,0,209,169 +3957,1676938151,415671,0,0,85,241 +1973,1676938185,213,0,0,6,444 +3826,1676938522,848953965,0,0,2,370 +2243,1676938543,13512,0,0,20,394 +8718,1676938581,781432,0,0,198,105 +3808,1676938599,580805,0,0,76,312 +960,1676938701,848943607,0,0,6,299 +866,1676938716,792025,0,0,48,345 +1888,1676939127,792025,0,0,48,672 +2079,1676939644,741494,0,0,2,337 +537,1676940079,848943607,0,0,6,222 +6293,1676941003,848953068,0,0,85,351 +3686,1676941172,848952556,0,0,76,389 +2475,1676941298,785871,0,0,48,392 +5162,1676941345,848952288,0,0,86,375 +902,1676942254,729178,0,0,48,395 +6626,1676942274,848945233,848955166,0,91,1059 +5175,1676942453,848953068,0,0,85,271 +2712,1676942686,735108,0,0,20,426 +4009,1676943043,790183,0,0,138,281 +1356,1676943129,729178,0,0,48,312 +4079,1676943302,375649,0,0,227,331 +2043,1676943359,848941404,0,0,85,269 +2271,1676944457,848943092,0,0,20,451 +66,1676944611,848941909,0,0,6,1772 +1474,1676945534,848936921,0,0,6,380 +2874,1676946088,761474,0,0,33,400 +3438,1676946259,151032,0,0,20,324 +5940,1676946780,171766,0,0,33,174 +5940,1676946780,171766,171766,33,33,174 +381,1676947824,848936921,587894,48,6,4641 +25,1676947852,151032,0,0,20,412 +7015,1676947894,848932635,334822,0,198,3458 +2938,1676947975,761474,0,0,33,337 +4066,1676949021,790183,0,0,138,330 +2447,1676949538,848954361,0,0,85,456 +2777,1676949855,796360,0,0,138,370 +3035,1676949890,848954604,0,0,0,382 +2002,1676950465,848943092,0,0,20,328 +5940,1676950484,742669,171766,33,91,174 +2832,1676951108,587894,0,0,48,435 +6009,1676951161,848954609,0,0,50,267 +3120,1676951312,398664,0,0,33,353 +6392,1676952057,848955105,0,0,185,212 +6025,1676952760,848954655,0,0,35,236 +7066,1676952971,410165,0,0,85,919 +869,1676953579,398664,0,0,33,395 +2201,1676954227,13512,0,0,20,470 +5402,1676954317,848943381,0,0,97,309 +9629,1676954369,284001,848955431,0,216,658 +4344,1676954542,848954820,0,0,76,389 +4352,1676954998,262676,0,0,74,483 +3727,1676955398,848894236,0,0,76,356 +4093,1676955600,848949948,848941569,219,85,9625 +3824,1676955600,848949948,848941569,219,85,5823 +6603,1676955619,848884869,848943156,0,209,238 +3799,1676955821,262676,0,0,74,337 +4452,1676956574,790183,7536,119,138,4151 +8044,1676956860,739630,0,0,167,110 +1352,1676957408,848947314,0,0,20,686 +9171,1676957539,848934867,0,0,167,115 +1483,1676957625,276237,0,0,48,306 +7287,1676957774,776810,0,0,76,137 +2946,1676958000,848947757,0,0,227,437 +6397,1676958424,746070,0,0,74,202 +9158,1676958836,848955563,848955598,0,185,778 diff --git a/internal/service/testdata/syncennoblements/stage2/expected/ennoblements.json b/internal/service/testdata/syncennoblements/stage2/expected/ennoblements.json new file mode 100644 index 0000000..8f0e7e6 --- /dev/null +++ b/internal/service/testdata/syncennoblements/stage2/expected/ennoblements.json @@ -0,0 +1 @@ +[{"ID":1,"VillageID":1759,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-01-14T14:00:49Z","ServerKey":"us63"},{"ID":2,"VillageID":594,"NewOwnerID":848943607,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-01-14T20:10:12Z","ServerKey":"us63"},{"ID":3,"VillageID":2217,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-14T20:47:53Z","ServerKey":"us63"},{"ID":4,"VillageID":59,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-15T01:42:12Z","ServerKey":"us63"},{"ID":5,"VillageID":1825,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-15T03:20:39Z","ServerKey":"us63"},{"ID":6,"VillageID":1756,"NewOwnerID":848943607,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-15T07:54:00Z","ServerKey":"us63"},{"ID":7,"VillageID":1401,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-15T14:30:42Z","ServerKey":"us63"},{"ID":8,"VillageID":2454,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-15T16:20:48Z","ServerKey":"us63"},{"ID":9,"VillageID":3468,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-15T17:15:08Z","ServerKey":"us63"},{"ID":10,"VillageID":2061,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":46,"CreatedAt":"2023-01-15T19:23:56Z","ServerKey":"us63"},{"ID":11,"VillageID":2969,"NewOwnerID":848951176,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-01-15T23:18:29Z","ServerKey":"us63"},{"ID":12,"VillageID":1673,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-16T01:21:13Z","ServerKey":"us63"},{"ID":13,"VillageID":232,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-16T03:08:05Z","ServerKey":"us63"},{"ID":14,"VillageID":2301,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-16T03:20:50Z","ServerKey":"us63"},{"ID":15,"VillageID":1868,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":56,"CreatedAt":"2023-01-16T03:35:35Z","ServerKey":"us63"},{"ID":16,"VillageID":1340,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-16T05:01:55Z","ServerKey":"us63"},{"ID":17,"VillageID":2547,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T06:19:22Z","ServerKey":"us63"},{"ID":18,"VillageID":1912,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-16T08:44:26Z","ServerKey":"us63"},{"ID":19,"VillageID":2785,"NewOwnerID":848931274,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T10:42:35Z","ServerKey":"us63"},{"ID":20,"VillageID":1694,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-16T12:21:18Z","ServerKey":"us63"},{"ID":21,"VillageID":2469,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":750685,"OldTribeID":76,"Points":1458,"CreatedAt":"2023-01-16T13:09:17Z","ServerKey":"us63"},{"ID":22,"VillageID":768,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-01-16T13:38:05Z","ServerKey":"us63"},{"ID":23,"VillageID":1582,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-16T14:54:03Z","ServerKey":"us63"},{"ID":24,"VillageID":2023,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848945637,"OldTribeID":0,"Points":523,"CreatedAt":"2023-01-16T14:55:08Z","ServerKey":"us63"},{"ID":25,"VillageID":2736,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-16T15:30:44Z","ServerKey":"us63"},{"ID":26,"VillageID":1791,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-01-16T16:52:59Z","ServerKey":"us63"},{"ID":27,"VillageID":3597,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T18:38:58Z","ServerKey":"us63"},{"ID":28,"VillageID":2407,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-16T19:38:37Z","ServerKey":"us63"},{"ID":29,"VillageID":641,"NewOwnerID":848910736,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-16T19:49:15Z","ServerKey":"us63"},{"ID":30,"VillageID":727,"NewOwnerID":848947790,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-16T21:02:46Z","ServerKey":"us63"},{"ID":31,"VillageID":527,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-16T22:41:21Z","ServerKey":"us63"},{"ID":32,"VillageID":499,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-16T22:42:56Z","ServerKey":"us63"},{"ID":33,"VillageID":571,"NewOwnerID":848943607,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-16T23:54:31Z","ServerKey":"us63"},{"ID":34,"VillageID":3702,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-01-17T00:03:27Z","ServerKey":"us63"},{"ID":35,"VillageID":530,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-17T00:46:04Z","ServerKey":"us63"},{"ID":36,"VillageID":2761,"NewOwnerID":693802,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-17T01:18:20Z","ServerKey":"us63"},{"ID":37,"VillageID":396,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848952345,"OldTribeID":7,"Points":414,"CreatedAt":"2023-01-17T02:00:59Z","ServerKey":"us63"},{"ID":38,"VillageID":737,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":357794,"OldTribeID":29,"Points":1059,"CreatedAt":"2023-01-17T02:32:06Z","ServerKey":"us63"},{"ID":39,"VillageID":857,"NewOwnerID":743702,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-01-17T02:35:12Z","ServerKey":"us63"},{"ID":40,"VillageID":1563,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-01-17T02:49:20Z","ServerKey":"us63"},{"ID":41,"VillageID":1520,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-17T04:21:40Z","ServerKey":"us63"},{"ID":42,"VillageID":715,"NewOwnerID":848951176,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":924,"CreatedAt":"2023-01-17T04:37:39Z","ServerKey":"us63"},{"ID":43,"VillageID":3249,"NewOwnerID":693802,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-17T05:05:44Z","ServerKey":"us63"},{"ID":44,"VillageID":3260,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-01-17T05:23:25Z","ServerKey":"us63"},{"ID":45,"VillageID":319,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-17T05:23:57Z","ServerKey":"us63"},{"ID":46,"VillageID":1322,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848945063,"OldTribeID":0,"Points":561,"CreatedAt":"2023-01-17T05:46:36Z","ServerKey":"us63"},{"ID":47,"VillageID":228,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-17T06:15:05Z","ServerKey":"us63"},{"ID":48,"VillageID":3124,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-01-17T06:50:22Z","ServerKey":"us63"},{"ID":49,"VillageID":1074,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-01-17T07:10:55Z","ServerKey":"us63"},{"ID":50,"VillageID":1573,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1633,"CreatedAt":"2023-01-17T09:00:56Z","ServerKey":"us63"},{"ID":51,"VillageID":2065,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-17T09:31:09Z","ServerKey":"us63"},{"ID":52,"VillageID":487,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-17T14:07:40Z","ServerKey":"us63"},{"ID":53,"VillageID":2555,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-17T14:20:52Z","ServerKey":"us63"},{"ID":54,"VillageID":2418,"NewOwnerID":723093,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-17T16:35:51Z","ServerKey":"us63"},{"ID":55,"VillageID":778,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-01-17T16:40:15Z","ServerKey":"us63"},{"ID":56,"VillageID":1165,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848942808,"OldTribeID":0,"Points":547,"CreatedAt":"2023-01-17T16:40:53Z","ServerKey":"us63"},{"ID":57,"VillageID":2198,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-17T19:43:25Z","ServerKey":"us63"},{"ID":58,"VillageID":860,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-01-17T20:37:11Z","ServerKey":"us63"},{"ID":59,"VillageID":1269,"NewOwnerID":848954312,"NewTribeID":27,"OldOwnerID":848943202,"OldTribeID":0,"Points":505,"CreatedAt":"2023-01-17T21:52:47Z","ServerKey":"us63"},{"ID":60,"VillageID":1009,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-17T22:08:07Z","ServerKey":"us63"},{"ID":61,"VillageID":1150,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-17T22:43:55Z","ServerKey":"us63"},{"ID":62,"VillageID":1228,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-17T23:56:07Z","ServerKey":"us63"},{"ID":63,"VillageID":1072,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848929831,"OldTribeID":0,"Points":1329,"CreatedAt":"2023-01-18T00:38:10Z","ServerKey":"us63"},{"ID":64,"VillageID":15,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-18T00:48:31Z","ServerKey":"us63"},{"ID":65,"VillageID":2656,"NewOwnerID":693802,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-18T01:18:45Z","ServerKey":"us63"},{"ID":66,"VillageID":1487,"NewOwnerID":848910736,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-18T01:35:29Z","ServerKey":"us63"},{"ID":67,"VillageID":1364,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-18T01:43:54Z","ServerKey":"us63"},{"ID":68,"VillageID":1726,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848953944,"OldTribeID":0,"Points":716,"CreatedAt":"2023-01-18T03:26:31Z","ServerKey":"us63"},{"ID":69,"VillageID":2366,"NewOwnerID":723093,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-01-18T08:11:09Z","ServerKey":"us63"},{"ID":70,"VillageID":591,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848951879,"OldTribeID":99,"Points":1341,"CreatedAt":"2023-01-18T08:13:00Z","ServerKey":"us63"},{"ID":71,"VillageID":1826,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848954331,"OldTribeID":17,"Points":1032,"CreatedAt":"2023-01-18T10:07:42Z","ServerKey":"us63"},{"ID":72,"VillageID":368,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-18T10:35:42Z","ServerKey":"us63"},{"ID":73,"VillageID":3141,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848943226,"OldTribeID":0,"Points":861,"CreatedAt":"2023-01-18T10:50:19Z","ServerKey":"us63"},{"ID":74,"VillageID":860,"NewOwnerID":848951854,"NewTribeID":6,"OldOwnerID":160994,"OldTribeID":24,"Points":256,"CreatedAt":"2023-01-18T11:12:24Z","ServerKey":"us63"},{"ID":75,"VillageID":124,"NewOwnerID":848951061,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-18T11:40:02Z","ServerKey":"us63"},{"ID":76,"VillageID":2003,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-18T12:25:02Z","ServerKey":"us63"},{"ID":77,"VillageID":496,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-18T13:07:46Z","ServerKey":"us63"},{"ID":78,"VillageID":1257,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":848943112,"OldTribeID":0,"Points":533,"CreatedAt":"2023-01-18T14:02:11Z","ServerKey":"us63"},{"ID":79,"VillageID":747,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":391948,"OldTribeID":14,"Points":813,"CreatedAt":"2023-01-18T14:09:13Z","ServerKey":"us63"},{"ID":80,"VillageID":1732,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-18T14:28:43Z","ServerKey":"us63"},{"ID":81,"VillageID":4051,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-01-18T14:56:37Z","ServerKey":"us63"},{"ID":82,"VillageID":2066,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848945602,"OldTribeID":0,"Points":558,"CreatedAt":"2023-01-18T15:24:08Z","ServerKey":"us63"},{"ID":83,"VillageID":1136,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-18T16:24:32Z","ServerKey":"us63"},{"ID":84,"VillageID":1133,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-18T16:53:07Z","ServerKey":"us63"},{"ID":85,"VillageID":1380,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-18T17:23:58Z","ServerKey":"us63"},{"ID":86,"VillageID":2749,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954603,"OldTribeID":17,"Points":1273,"CreatedAt":"2023-01-18T18:13:01Z","ServerKey":"us63"},{"ID":87,"VillageID":1856,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-18T18:42:29Z","ServerKey":"us63"},{"ID":88,"VillageID":3021,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-01-18T20:34:07Z","ServerKey":"us63"},{"ID":89,"VillageID":4089,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-01-18T20:48:40Z","ServerKey":"us63"},{"ID":90,"VillageID":2513,"NewOwnerID":723093,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-01-18T21:18:33Z","ServerKey":"us63"},{"ID":91,"VillageID":936,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":780648,"OldTribeID":0,"Points":1143,"CreatedAt":"2023-01-18T21:38:48Z","ServerKey":"us63"},{"ID":92,"VillageID":634,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848951477,"OldTribeID":56,"Points":1237,"CreatedAt":"2023-01-18T21:42:10Z","ServerKey":"us63"},{"ID":93,"VillageID":382,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-18T23:05:47Z","ServerKey":"us63"},{"ID":94,"VillageID":1535,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-18T23:08:33Z","ServerKey":"us63"},{"ID":95,"VillageID":1554,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848952576,"OldTribeID":56,"Points":412,"CreatedAt":"2023-01-18T23:34:35Z","ServerKey":"us63"},{"ID":96,"VillageID":4005,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":35,"CreatedAt":"2023-01-18T23:45:34Z","ServerKey":"us63"},{"ID":97,"VillageID":29,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-19T00:14:02Z","ServerKey":"us63"},{"ID":98,"VillageID":980,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-19T00:50:32Z","ServerKey":"us63"},{"ID":99,"VillageID":3284,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-01-19T00:51:15Z","ServerKey":"us63"},{"ID":100,"VillageID":3420,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-19T00:56:08Z","ServerKey":"us63"},{"ID":101,"VillageID":3081,"NewOwnerID":554600,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-19T02:44:20Z","ServerKey":"us63"},{"ID":102,"VillageID":328,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-19T02:56:01Z","ServerKey":"us63"},{"ID":103,"VillageID":1214,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-19T03:11:08Z","ServerKey":"us63"},{"ID":104,"VillageID":372,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-19T04:06:53Z","ServerKey":"us63"},{"ID":105,"VillageID":1319,"NewOwnerID":848907165,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":597,"CreatedAt":"2023-01-19T04:25:54Z","ServerKey":"us63"},{"ID":106,"VillageID":997,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-19T05:21:02Z","ServerKey":"us63"},{"ID":107,"VillageID":2041,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-19T06:33:00Z","ServerKey":"us63"},{"ID":108,"VillageID":1204,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":571,"CreatedAt":"2023-01-19T06:37:29Z","ServerKey":"us63"},{"ID":109,"VillageID":223,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":753340,"OldTribeID":87,"Points":705,"CreatedAt":"2023-01-19T06:59:16Z","ServerKey":"us63"},{"ID":110,"VillageID":1957,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":848945594,"OldTribeID":0,"Points":597,"CreatedAt":"2023-01-19T07:45:42Z","ServerKey":"us63"},{"ID":111,"VillageID":1195,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":557,"CreatedAt":"2023-01-19T07:45:55Z","ServerKey":"us63"},{"ID":112,"VillageID":1837,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-01-19T08:38:14Z","ServerKey":"us63"},{"ID":113,"VillageID":1852,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-19T08:52:15Z","ServerKey":"us63"},{"ID":114,"VillageID":2046,"NewOwnerID":264792,"NewTribeID":64,"OldOwnerID":848947367,"OldTribeID":0,"Points":563,"CreatedAt":"2023-01-19T09:39:23Z","ServerKey":"us63"},{"ID":115,"VillageID":817,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":668275,"OldTribeID":0,"Points":244,"CreatedAt":"2023-01-19T11:41:56Z","ServerKey":"us63"},{"ID":116,"VillageID":3187,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848931394,"OldTribeID":11,"Points":1408,"CreatedAt":"2023-01-19T12:42:34Z","ServerKey":"us63"},{"ID":117,"VillageID":894,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-19T14:09:57Z","ServerKey":"us63"},{"ID":118,"VillageID":1443,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-19T15:27:23Z","ServerKey":"us63"},{"ID":119,"VillageID":2653,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-19T15:28:11Z","ServerKey":"us63"},{"ID":120,"VillageID":2577,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-19T16:11:11Z","ServerKey":"us63"},{"ID":121,"VillageID":1753,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-19T16:16:28Z","ServerKey":"us63"},{"ID":122,"VillageID":3303,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":848954656,"OldTribeID":72,"Points":382,"CreatedAt":"2023-01-19T16:46:00Z","ServerKey":"us63"},{"ID":123,"VillageID":655,"NewOwnerID":848953209,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-19T17:13:12Z","ServerKey":"us63"},{"ID":124,"VillageID":1173,"NewOwnerID":848952288,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-19T17:24:20Z","ServerKey":"us63"},{"ID":125,"VillageID":831,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-19T17:38:58Z","ServerKey":"us63"},{"ID":126,"VillageID":595,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848952221,"OldTribeID":0,"Points":1093,"CreatedAt":"2023-01-19T18:32:01Z","ServerKey":"us63"},{"ID":127,"VillageID":141,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-19T18:55:21Z","ServerKey":"us63"},{"ID":128,"VillageID":2502,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-19T18:59:25Z","ServerKey":"us63"},{"ID":129,"VillageID":667,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952121,"OldTribeID":32,"Points":1272,"CreatedAt":"2023-01-19T19:00:31Z","ServerKey":"us63"},{"ID":130,"VillageID":883,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-19T20:25:35Z","ServerKey":"us63"},{"ID":131,"VillageID":2552,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-19T20:29:29Z","ServerKey":"us63"},{"ID":132,"VillageID":2823,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-01-19T20:35:20Z","ServerKey":"us63"},{"ID":133,"VillageID":2772,"NewOwnerID":848953207,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-01-19T20:35:35Z","ServerKey":"us63"},{"ID":134,"VillageID":329,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":160994,"OldTribeID":24,"Points":3516,"CreatedAt":"2023-01-19T20:54:48Z","ServerKey":"us63"},{"ID":135,"VillageID":781,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-19T21:13:46Z","ServerKey":"us63"},{"ID":136,"VillageID":1859,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-19T21:44:34Z","ServerKey":"us63"},{"ID":137,"VillageID":2878,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-19T21:50:35Z","ServerKey":"us63"},{"ID":138,"VillageID":1840,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-19T22:14:36Z","ServerKey":"us63"},{"ID":139,"VillageID":2263,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-01-19T23:03:02Z","ServerKey":"us63"},{"ID":140,"VillageID":3118,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-19T23:33:59Z","ServerKey":"us63"},{"ID":141,"VillageID":2745,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-01-19T23:34:15Z","ServerKey":"us63"},{"ID":142,"VillageID":579,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848943381,"OldTribeID":87,"Points":1193,"CreatedAt":"2023-01-20T00:09:14Z","ServerKey":"us63"},{"ID":143,"VillageID":1006,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-20T00:28:12Z","ServerKey":"us63"},{"ID":144,"VillageID":3040,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-20T02:02:55Z","ServerKey":"us63"},{"ID":145,"VillageID":590,"NewOwnerID":848951434,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-20T02:12:43Z","ServerKey":"us63"},{"ID":146,"VillageID":2000,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-20T02:33:22Z","ServerKey":"us63"},{"ID":147,"VillageID":87,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848954052,"OldTribeID":4,"Points":1112,"CreatedAt":"2023-01-20T02:39:44Z","ServerKey":"us63"},{"ID":148,"VillageID":2403,"NewOwnerID":411608,"NewTribeID":64,"OldOwnerID":848954065,"OldTribeID":0,"Points":578,"CreatedAt":"2023-01-20T03:04:46Z","ServerKey":"us63"},{"ID":149,"VillageID":1454,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848950197,"OldTribeID":4,"Points":1248,"CreatedAt":"2023-01-20T03:39:55Z","ServerKey":"us63"},{"ID":150,"VillageID":322,"NewOwnerID":848945433,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-20T04:02:08Z","ServerKey":"us63"},{"ID":151,"VillageID":2193,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848954078,"OldTribeID":25,"Points":1580,"CreatedAt":"2023-01-20T04:10:04Z","ServerKey":"us63"},{"ID":152,"VillageID":1950,"NewOwnerID":848934532,"NewTribeID":105,"OldOwnerID":738010,"OldTribeID":49,"Points":629,"CreatedAt":"2023-01-20T04:27:57Z","ServerKey":"us63"},{"ID":153,"VillageID":178,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-20T04:50:16Z","ServerKey":"us63"},{"ID":154,"VillageID":2025,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-20T05:02:49Z","ServerKey":"us63"},{"ID":155,"VillageID":125,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":573,"CreatedAt":"2023-01-20T05:21:46Z","ServerKey":"us63"},{"ID":156,"VillageID":993,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-20T05:48:48Z","ServerKey":"us63"},{"ID":157,"VillageID":1846,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-20T06:16:34Z","ServerKey":"us63"},{"ID":158,"VillageID":1426,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-20T07:13:49Z","ServerKey":"us63"},{"ID":159,"VillageID":513,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-20T08:01:34Z","ServerKey":"us63"},{"ID":160,"VillageID":3089,"NewOwnerID":848954537,"NewTribeID":58,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-20T10:45:45Z","ServerKey":"us63"},{"ID":161,"VillageID":78,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1271,"CreatedAt":"2023-01-20T11:21:08Z","ServerKey":"us63"},{"ID":162,"VillageID":1147,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848942307,"OldTribeID":76,"Points":3255,"CreatedAt":"2023-01-20T11:33:50Z","ServerKey":"us63"},{"ID":163,"VillageID":1596,"NewOwnerID":463920,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-20T11:57:25Z","ServerKey":"us63"},{"ID":164,"VillageID":3278,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":719750,"OldTribeID":71,"Points":743,"CreatedAt":"2023-01-20T12:52:39Z","ServerKey":"us63"},{"ID":165,"VillageID":331,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-20T13:09:18Z","ServerKey":"us63"},{"ID":166,"VillageID":2458,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-01-20T13:48:33Z","ServerKey":"us63"},{"ID":167,"VillageID":1174,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848942811,"OldTribeID":0,"Points":544,"CreatedAt":"2023-01-20T14:16:10Z","ServerKey":"us63"},{"ID":168,"VillageID":1831,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-20T14:44:17Z","ServerKey":"us63"},{"ID":169,"VillageID":1695,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":848953826,"OldTribeID":0,"Points":1369,"CreatedAt":"2023-01-20T15:28:44Z","ServerKey":"us63"},{"ID":170,"VillageID":2908,"NewOwnerID":848951960,"NewTribeID":25,"OldOwnerID":848949716,"OldTribeID":0,"Points":775,"CreatedAt":"2023-01-20T15:33:16Z","ServerKey":"us63"},{"ID":171,"VillageID":641,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848910736,"OldTribeID":24,"Points":378,"CreatedAt":"2023-01-20T17:17:34Z","ServerKey":"us63"},{"ID":172,"VillageID":1003,"NewOwnerID":848945433,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-20T17:39:55Z","ServerKey":"us63"},{"ID":173,"VillageID":2609,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-20T17:54:23Z","ServerKey":"us63"},{"ID":174,"VillageID":524,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":775955,"OldTribeID":87,"Points":2529,"CreatedAt":"2023-01-20T18:42:00Z","ServerKey":"us63"},{"ID":175,"VillageID":70,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1699,"CreatedAt":"2023-01-20T20:04:40Z","ServerKey":"us63"},{"ID":176,"VillageID":3045,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":776810,"OldTribeID":76,"Points":1666,"CreatedAt":"2023-01-20T20:26:59Z","ServerKey":"us63"},{"ID":177,"VillageID":1739,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-20T20:35:43Z","ServerKey":"us63"},{"ID":178,"VillageID":569,"NewOwnerID":848934532,"NewTribeID":105,"OldOwnerID":848940914,"OldTribeID":49,"Points":863,"CreatedAt":"2023-01-20T20:43:25Z","ServerKey":"us63"},{"ID":179,"VillageID":791,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-20T21:10:35Z","ServerKey":"us63"},{"ID":180,"VillageID":2169,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":848948871,"OldTribeID":5,"Points":623,"CreatedAt":"2023-01-20T21:59:15Z","ServerKey":"us63"},{"ID":181,"VillageID":2210,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848944274,"OldTribeID":61,"Points":1623,"CreatedAt":"2023-01-20T22:44:32Z","ServerKey":"us63"},{"ID":182,"VillageID":1101,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-01-20T22:57:22Z","ServerKey":"us63"},{"ID":183,"VillageID":1022,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848910736,"OldTribeID":24,"Points":549,"CreatedAt":"2023-01-20T23:51:50Z","ServerKey":"us63"},{"ID":184,"VillageID":3296,"NewOwnerID":264792,"NewTribeID":64,"OldOwnerID":848954655,"OldTribeID":0,"Points":832,"CreatedAt":"2023-01-21T00:40:57Z","ServerKey":"us63"},{"ID":185,"VillageID":1674,"NewOwnerID":848953964,"NewTribeID":2,"OldOwnerID":848953656,"OldTribeID":0,"Points":751,"CreatedAt":"2023-01-21T00:49:38Z","ServerKey":"us63"},{"ID":186,"VillageID":1223,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848943091,"OldTribeID":0,"Points":790,"CreatedAt":"2023-01-21T00:54:26Z","ServerKey":"us63"},{"ID":187,"VillageID":386,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":494,"CreatedAt":"2023-01-21T01:16:03Z","ServerKey":"us63"},{"ID":188,"VillageID":2487,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-21T01:30:09Z","ServerKey":"us63"},{"ID":189,"VillageID":1222,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-21T02:35:58Z","ServerKey":"us63"},{"ID":190,"VillageID":211,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-21T02:49:06Z","ServerKey":"us63"},{"ID":191,"VillageID":2235,"NewOwnerID":848929097,"NewTribeID":0,"OldOwnerID":848949135,"OldTribeID":0,"Points":405,"CreatedAt":"2023-01-21T03:07:25Z","ServerKey":"us63"},{"ID":192,"VillageID":851,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":735480,"OldTribeID":0,"Points":1038,"CreatedAt":"2023-01-21T03:37:02Z","ServerKey":"us63"},{"ID":193,"VillageID":1183,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-21T04:02:38Z","ServerKey":"us63"},{"ID":194,"VillageID":1354,"NewOwnerID":767507,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-21T05:02:00Z","ServerKey":"us63"},{"ID":195,"VillageID":3472,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":848931393,"OldTribeID":104,"Points":2954,"CreatedAt":"2023-01-21T05:34:46Z","ServerKey":"us63"},{"ID":196,"VillageID":2691,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-21T06:08:55Z","ServerKey":"us63"},{"ID":197,"VillageID":2012,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-21T07:01:14Z","ServerKey":"us63"},{"ID":198,"VillageID":3681,"NewOwnerID":794964,"NewTribeID":0,"OldOwnerID":742669,"OldTribeID":91,"Points":1261,"CreatedAt":"2023-01-21T07:08:51Z","ServerKey":"us63"},{"ID":199,"VillageID":39,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-01-21T08:26:02Z","ServerKey":"us63"},{"ID":200,"VillageID":2891,"NewOwnerID":785504,"NewTribeID":50,"OldOwnerID":848943095,"OldTribeID":0,"Points":983,"CreatedAt":"2023-01-21T08:52:31Z","ServerKey":"us63"},{"ID":201,"VillageID":2211,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-21T09:05:21Z","ServerKey":"us63"},{"ID":202,"VillageID":2409,"NewOwnerID":676986,"NewTribeID":64,"OldOwnerID":848954494,"OldTribeID":0,"Points":550,"CreatedAt":"2023-01-21T09:26:18Z","ServerKey":"us63"},{"ID":203,"VillageID":604,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-21T09:30:28Z","ServerKey":"us63"},{"ID":204,"VillageID":1539,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-21T10:12:04Z","ServerKey":"us63"},{"ID":205,"VillageID":977,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-21T10:20:59Z","ServerKey":"us63"},{"ID":206,"VillageID":3229,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954537,"OldTribeID":6,"Points":4211,"CreatedAt":"2023-01-21T11:23:19Z","ServerKey":"us63"},{"ID":207,"VillageID":1560,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-21T12:30:55Z","ServerKey":"us63"},{"ID":208,"VillageID":283,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848951306,"OldTribeID":30,"Points":3444,"CreatedAt":"2023-01-21T13:32:29Z","ServerKey":"us63"},{"ID":209,"VillageID":2325,"NewOwnerID":848943740,"NewTribeID":58,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-21T14:24:47Z","ServerKey":"us63"},{"ID":210,"VillageID":1390,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-01-21T14:41:36Z","ServerKey":"us63"},{"ID":211,"VillageID":1880,"NewOwnerID":848951549,"NewTribeID":12,"OldOwnerID":848954516,"OldTribeID":22,"Points":1232,"CreatedAt":"2023-01-21T15:19:27Z","ServerKey":"us63"},{"ID":212,"VillageID":1487,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-21T15:24:11Z","ServerKey":"us63"},{"ID":213,"VillageID":444,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-21T15:50:49Z","ServerKey":"us63"},{"ID":214,"VillageID":2220,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-01-21T16:14:25Z","ServerKey":"us63"},{"ID":215,"VillageID":1600,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":848953047,"OldTribeID":111,"Points":846,"CreatedAt":"2023-01-21T16:52:34Z","ServerKey":"us63"},{"ID":216,"VillageID":773,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":554600,"OldTribeID":30,"Points":3682,"CreatedAt":"2023-01-21T16:53:35Z","ServerKey":"us63"},{"ID":217,"VillageID":546,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-21T16:58:44Z","ServerKey":"us63"},{"ID":218,"VillageID":90,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":2271,"CreatedAt":"2023-01-21T17:22:55Z","ServerKey":"us63"},{"ID":219,"VillageID":1450,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-21T17:24:44Z","ServerKey":"us63"},{"ID":220,"VillageID":77,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-21T17:55:22Z","ServerKey":"us63"},{"ID":221,"VillageID":1383,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-21T18:45:19Z","ServerKey":"us63"},{"ID":222,"VillageID":1388,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":687,"CreatedAt":"2023-01-21T19:35:07Z","ServerKey":"us63"},{"ID":223,"VillageID":3628,"NewOwnerID":272255,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-21T20:08:34Z","ServerKey":"us63"},{"ID":224,"VillageID":3446,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":848954681,"OldTribeID":72,"Points":812,"CreatedAt":"2023-01-21T20:09:15Z","ServerKey":"us63"},{"ID":225,"VillageID":645,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-21T20:14:48Z","ServerKey":"us63"},{"ID":226,"VillageID":1819,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":848954322,"OldTribeID":27,"Points":1770,"CreatedAt":"2023-01-21T20:21:08Z","ServerKey":"us63"},{"ID":227,"VillageID":3075,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-21T21:20:58Z","ServerKey":"us63"},{"ID":228,"VillageID":1246,"NewOwnerID":525543,"NewTribeID":58,"OldOwnerID":848943109,"OldTribeID":99,"Points":487,"CreatedAt":"2023-01-21T22:44:38Z","ServerKey":"us63"},{"ID":229,"VillageID":239,"NewOwnerID":772572,"NewTribeID":58,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-21T22:47:44Z","ServerKey":"us63"},{"ID":230,"VillageID":3151,"NewOwnerID":411608,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-21T23:07:46Z","ServerKey":"us63"},{"ID":231,"VillageID":2464,"NewOwnerID":676986,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-22T00:04:01Z","ServerKey":"us63"},{"ID":232,"VillageID":108,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-22T00:05:40Z","ServerKey":"us63"},{"ID":233,"VillageID":4061,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-01-22T00:42:26Z","ServerKey":"us63"},{"ID":234,"VillageID":3568,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848937628,"OldTribeID":0,"Points":1058,"CreatedAt":"2023-01-22T00:43:06Z","ServerKey":"us63"},{"ID":235,"VillageID":1318,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-22T01:16:35Z","ServerKey":"us63"},{"ID":236,"VillageID":1247,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-22T01:17:54Z","ServerKey":"us63"},{"ID":237,"VillageID":169,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848951854,"OldTribeID":0,"Points":4617,"CreatedAt":"2023-01-22T01:19:46Z","ServerKey":"us63"},{"ID":238,"VillageID":2485,"NewOwnerID":264792,"NewTribeID":64,"OldOwnerID":848949196,"OldTribeID":0,"Points":567,"CreatedAt":"2023-01-22T01:32:58Z","ServerKey":"us63"},{"ID":239,"VillageID":2713,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-01-22T02:12:55Z","ServerKey":"us63"},{"ID":240,"VillageID":2478,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-22T02:43:16Z","ServerKey":"us63"},{"ID":241,"VillageID":860,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848951854,"OldTribeID":0,"Points":697,"CreatedAt":"2023-01-22T03:33:50Z","ServerKey":"us63"},{"ID":242,"VillageID":1960,"NewOwnerID":741238,"NewTribeID":64,"OldOwnerID":848945593,"OldTribeID":0,"Points":541,"CreatedAt":"2023-01-22T03:59:17Z","ServerKey":"us63"},{"ID":243,"VillageID":1626,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-01-22T05:42:56Z","ServerKey":"us63"},{"ID":244,"VillageID":2603,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":723093,"OldTribeID":14,"Points":3674,"CreatedAt":"2023-01-22T05:44:34Z","ServerKey":"us63"},{"ID":245,"VillageID":1890,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-22T06:37:20Z","ServerKey":"us63"},{"ID":246,"VillageID":1374,"NewOwnerID":848951392,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-22T07:09:55Z","ServerKey":"us63"},{"ID":247,"VillageID":148,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-22T07:35:10Z","ServerKey":"us63"},{"ID":248,"VillageID":598,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":848953097,"OldTribeID":42,"Points":854,"CreatedAt":"2023-01-22T07:55:07Z","ServerKey":"us63"},{"ID":249,"VillageID":2329,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848941733,"OldTribeID":0,"Points":443,"CreatedAt":"2023-01-22T09:25:00Z","ServerKey":"us63"},{"ID":250,"VillageID":3902,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848952530,"OldTribeID":0,"Points":1818,"CreatedAt":"2023-01-22T09:40:09Z","ServerKey":"us63"},{"ID":251,"VillageID":473,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-22T09:43:38Z","ServerKey":"us63"},{"ID":252,"VillageID":313,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-22T10:13:22Z","ServerKey":"us63"},{"ID":253,"VillageID":1849,"NewOwnerID":848907165,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-22T10:17:52Z","ServerKey":"us63"},{"ID":254,"VillageID":3815,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":1639,"CreatedAt":"2023-01-22T10:41:22Z","ServerKey":"us63"},{"ID":255,"VillageID":1630,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953299,"OldTribeID":32,"Points":2428,"CreatedAt":"2023-01-22T10:41:47Z","ServerKey":"us63"},{"ID":256,"VillageID":788,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-01-22T10:55:49Z","ServerKey":"us63"},{"ID":257,"VillageID":1158,"NewOwnerID":848954368,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":640,"CreatedAt":"2023-01-22T12:34:42Z","ServerKey":"us63"},{"ID":258,"VillageID":2709,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-22T12:42:34Z","ServerKey":"us63"},{"ID":259,"VillageID":1347,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-01-22T12:42:41Z","ServerKey":"us63"},{"ID":260,"VillageID":2830,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":755127,"OldTribeID":0,"Points":350,"CreatedAt":"2023-01-22T13:06:36Z","ServerKey":"us63"},{"ID":261,"VillageID":443,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-22T13:37:32Z","ServerKey":"us63"},{"ID":262,"VillageID":4507,"NewOwnerID":848954762,"NewTribeID":14,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-22T14:21:43Z","ServerKey":"us63"},{"ID":263,"VillageID":1142,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-22T14:34:01Z","ServerKey":"us63"},{"ID":264,"VillageID":3453,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":848954682,"OldTribeID":104,"Points":1862,"CreatedAt":"2023-01-22T14:35:11Z","ServerKey":"us63"},{"ID":265,"VillageID":1015,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-22T15:03:13Z","ServerKey":"us63"},{"ID":266,"VillageID":1802,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-22T15:04:38Z","ServerKey":"us63"},{"ID":267,"VillageID":2463,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-22T15:19:01Z","ServerKey":"us63"},{"ID":268,"VillageID":246,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848953972,"OldTribeID":13,"Points":1948,"CreatedAt":"2023-01-22T15:34:00Z","ServerKey":"us63"},{"ID":269,"VillageID":2723,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-22T15:49:34Z","ServerKey":"us63"},{"ID":270,"VillageID":538,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-22T16:15:24Z","ServerKey":"us63"},{"ID":271,"VillageID":1828,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-22T16:27:15Z","ServerKey":"us63"},{"ID":272,"VillageID":2592,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-22T16:33:32Z","ServerKey":"us63"},{"ID":273,"VillageID":2072,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-22T16:54:34Z","ServerKey":"us63"},{"ID":274,"VillageID":2756,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-22T17:36:58Z","ServerKey":"us63"},{"ID":275,"VillageID":271,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848947928,"OldTribeID":14,"Points":1776,"CreatedAt":"2023-01-22T17:52:56Z","ServerKey":"us63"},{"ID":276,"VillageID":1078,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848931150,"OldTribeID":46,"Points":1778,"CreatedAt":"2023-01-22T18:24:03Z","ServerKey":"us63"},{"ID":277,"VillageID":1078,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":1754,"CreatedAt":"2023-01-22T18:24:04Z","ServerKey":"us63"},{"ID":278,"VillageID":316,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-22T19:22:40Z","ServerKey":"us63"},{"ID":279,"VillageID":3373,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954669,"OldTribeID":0,"Points":3108,"CreatedAt":"2023-01-22T19:35:13Z","ServerKey":"us63"},{"ID":280,"VillageID":408,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":453833,"OldTribeID":0,"Points":1060,"CreatedAt":"2023-01-22T19:40:02Z","ServerKey":"us63"},{"ID":281,"VillageID":2850,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-22T20:07:35Z","ServerKey":"us63"},{"ID":282,"VillageID":1593,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-01-22T20:23:21Z","ServerKey":"us63"},{"ID":283,"VillageID":1795,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-22T21:02:04Z","ServerKey":"us63"},{"ID":284,"VillageID":3252,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-22T21:29:05Z","ServerKey":"us63"},{"ID":285,"VillageID":3252,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":787586,"OldTribeID":74,"Points":107,"CreatedAt":"2023-01-22T21:34:08Z","ServerKey":"us63"},{"ID":286,"VillageID":3767,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-01-22T21:40:17Z","ServerKey":"us63"},{"ID":287,"VillageID":392,"NewOwnerID":848951434,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-22T22:10:02Z","ServerKey":"us63"},{"ID":288,"VillageID":683,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-22T22:24:13Z","ServerKey":"us63"},{"ID":289,"VillageID":1201,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":675,"CreatedAt":"2023-01-22T22:41:22Z","ServerKey":"us63"},{"ID":290,"VillageID":2163,"NewOwnerID":848954221,"NewTribeID":105,"OldOwnerID":848949246,"OldTribeID":0,"Points":1071,"CreatedAt":"2023-01-22T22:43:50Z","ServerKey":"us63"},{"ID":291,"VillageID":2256,"NewOwnerID":848951321,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-22T23:07:30Z","ServerKey":"us63"},{"ID":292,"VillageID":3378,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-23T00:20:57Z","ServerKey":"us63"},{"ID":293,"VillageID":3112,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848953551,"OldTribeID":0,"Points":1056,"CreatedAt":"2023-01-23T00:23:17Z","ServerKey":"us63"},{"ID":294,"VillageID":3184,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":848950808,"OldTribeID":46,"Points":664,"CreatedAt":"2023-01-23T00:46:28Z","ServerKey":"us63"},{"ID":295,"VillageID":46,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-01-23T01:57:30Z","ServerKey":"us63"},{"ID":296,"VillageID":1862,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-23T02:09:15Z","ServerKey":"us63"},{"ID":297,"VillageID":730,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-23T02:44:08Z","ServerKey":"us63"},{"ID":298,"VillageID":2059,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":848945603,"OldTribeID":0,"Points":546,"CreatedAt":"2023-01-23T03:02:52Z","ServerKey":"us63"},{"ID":299,"VillageID":1282,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":848943207,"OldTribeID":0,"Points":510,"CreatedAt":"2023-01-23T03:10:03Z","ServerKey":"us63"},{"ID":300,"VillageID":1805,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-23T03:25:43Z","ServerKey":"us63"},{"ID":301,"VillageID":2842,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-23T03:39:57Z","ServerKey":"us63"},{"ID":302,"VillageID":3081,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-01-23T04:01:37Z","ServerKey":"us63"},{"ID":303,"VillageID":1629,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-23T04:22:29Z","ServerKey":"us63"},{"ID":304,"VillageID":2992,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":263554,"OldTribeID":83,"Points":1405,"CreatedAt":"2023-01-23T04:30:08Z","ServerKey":"us63"},{"ID":305,"VillageID":233,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848952095,"OldTribeID":12,"Points":2788,"CreatedAt":"2023-01-23T04:46:28Z","ServerKey":"us63"},{"ID":306,"VillageID":1291,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-23T05:22:44Z","ServerKey":"us63"},{"ID":307,"VillageID":1250,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848943110,"OldTribeID":0,"Points":531,"CreatedAt":"2023-01-23T05:27:03Z","ServerKey":"us63"},{"ID":308,"VillageID":2705,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T05:52:58Z","ServerKey":"us63"},{"ID":309,"VillageID":1481,"NewOwnerID":509766,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-23T07:03:03Z","ServerKey":"us63"},{"ID":310,"VillageID":2581,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-23T07:12:56Z","ServerKey":"us63"},{"ID":311,"VillageID":4423,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":848940278,"OldTribeID":142,"Points":860,"CreatedAt":"2023-01-23T07:17:31Z","ServerKey":"us63"},{"ID":312,"VillageID":1893,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-23T07:29:46Z","ServerKey":"us63"},{"ID":313,"VillageID":3257,"NewOwnerID":503636,"NewTribeID":64,"OldOwnerID":848954653,"OldTribeID":72,"Points":722,"CreatedAt":"2023-01-23T07:56:22Z","ServerKey":"us63"},{"ID":314,"VillageID":1530,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848952288,"OldTribeID":20,"Points":4103,"CreatedAt":"2023-01-23T08:00:01Z","ServerKey":"us63"},{"ID":315,"VillageID":1173,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":848952288,"OldTribeID":20,"Points":867,"CreatedAt":"2023-01-23T08:00:30Z","ServerKey":"us63"},{"ID":316,"VillageID":847,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-23T08:36:43Z","ServerKey":"us63"},{"ID":317,"VillageID":792,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":597297,"OldTribeID":38,"Points":943,"CreatedAt":"2023-01-23T09:33:44Z","ServerKey":"us63"},{"ID":318,"VillageID":837,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-23T09:34:06Z","ServerKey":"us63"},{"ID":319,"VillageID":3171,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":848943251,"OldTribeID":0,"Points":930,"CreatedAt":"2023-01-23T09:47:23Z","ServerKey":"us63"},{"ID":320,"VillageID":792,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848951549,"OldTribeID":20,"Points":919,"CreatedAt":"2023-01-23T09:58:09Z","ServerKey":"us63"},{"ID":321,"VillageID":1418,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848949038,"OldTribeID":0,"Points":426,"CreatedAt":"2023-01-23T10:19:34Z","ServerKey":"us63"},{"ID":322,"VillageID":2468,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T10:55:32Z","ServerKey":"us63"},{"ID":323,"VillageID":2848,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954615,"OldTribeID":76,"Points":1751,"CreatedAt":"2023-01-23T10:58:39Z","ServerKey":"us63"},{"ID":324,"VillageID":2850,"NewOwnerID":848951023,"NewTribeID":36,"OldOwnerID":848954008,"OldTribeID":2,"Points":228,"CreatedAt":"2023-01-23T11:22:50Z","ServerKey":"us63"},{"ID":325,"VillageID":2396,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":848888469,"OldTribeID":27,"Points":992,"CreatedAt":"2023-01-23T11:39:25Z","ServerKey":"us63"},{"ID":326,"VillageID":1597,"NewOwnerID":848954437,"NewTribeID":12,"OldOwnerID":848953039,"OldTribeID":22,"Points":517,"CreatedAt":"2023-01-23T13:03:42Z","ServerKey":"us63"},{"ID":327,"VillageID":750,"NewOwnerID":848953964,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-01-23T13:55:04Z","ServerKey":"us63"},{"ID":328,"VillageID":2367,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-23T14:41:06Z","ServerKey":"us63"},{"ID":329,"VillageID":229,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848952269,"OldTribeID":12,"Points":3769,"CreatedAt":"2023-01-23T15:03:54Z","ServerKey":"us63"},{"ID":330,"VillageID":1021,"NewOwnerID":37720,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-23T15:34:24Z","ServerKey":"us63"},{"ID":331,"VillageID":1237,"NewOwnerID":776842,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-23T16:02:25Z","ServerKey":"us63"},{"ID":332,"VillageID":1083,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-23T16:24:10Z","ServerKey":"us63"},{"ID":333,"VillageID":2884,"NewOwnerID":767834,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-23T16:27:11Z","ServerKey":"us63"},{"ID":334,"VillageID":1207,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":666,"CreatedAt":"2023-01-23T16:56:16Z","ServerKey":"us63"},{"ID":335,"VillageID":1207,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":848951612,"OldTribeID":35,"Points":642,"CreatedAt":"2023-01-23T16:56:17Z","ServerKey":"us63"},{"ID":336,"VillageID":2384,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T17:06:46Z","ServerKey":"us63"},{"ID":337,"VillageID":3828,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848953943,"OldTribeID":0,"Points":1114,"CreatedAt":"2023-01-23T17:08:27Z","ServerKey":"us63"},{"ID":338,"VillageID":2276,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":848942961,"OldTribeID":0,"Points":501,"CreatedAt":"2023-01-23T17:39:08Z","ServerKey":"us63"},{"ID":339,"VillageID":288,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-23T17:51:39Z","ServerKey":"us63"},{"ID":340,"VillageID":623,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-23T18:33:55Z","ServerKey":"us63"},{"ID":341,"VillageID":796,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":603825,"OldTribeID":58,"Points":1947,"CreatedAt":"2023-01-23T18:58:53Z","ServerKey":"us63"},{"ID":342,"VillageID":2462,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848936911,"OldTribeID":142,"Points":2198,"CreatedAt":"2023-01-23T18:59:29Z","ServerKey":"us63"},{"ID":343,"VillageID":1833,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-23T18:59:38Z","ServerKey":"us63"},{"ID":344,"VillageID":3074,"NewOwnerID":848929097,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-23T19:07:07Z","ServerKey":"us63"},{"ID":345,"VillageID":753,"NewOwnerID":275322,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-23T19:08:55Z","ServerKey":"us63"},{"ID":346,"VillageID":2456,"NewOwnerID":848949493,"NewTribeID":36,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-23T19:30:29Z","ServerKey":"us63"},{"ID":347,"VillageID":2007,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":848945687,"OldTribeID":0,"Points":567,"CreatedAt":"2023-01-23T19:52:02Z","ServerKey":"us63"},{"ID":348,"VillageID":2209,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-23T20:11:23Z","ServerKey":"us63"},{"ID":349,"VillageID":623,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848947790,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-23T20:30:19Z","ServerKey":"us63"},{"ID":350,"VillageID":202,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-23T20:35:21Z","ServerKey":"us63"},{"ID":351,"VillageID":2773,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":743815,"OldTribeID":77,"Points":2021,"CreatedAt":"2023-01-23T20:46:44Z","ServerKey":"us63"},{"ID":352,"VillageID":850,"NewOwnerID":848953670,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-23T21:18:54Z","ServerKey":"us63"},{"ID":353,"VillageID":884,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":766350,"OldTribeID":41,"Points":769,"CreatedAt":"2023-01-23T21:45:04Z","ServerKey":"us63"},{"ID":354,"VillageID":1186,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-23T21:45:29Z","ServerKey":"us63"},{"ID":355,"VillageID":507,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":763299,"OldTribeID":50,"Points":903,"CreatedAt":"2023-01-23T21:58:05Z","ServerKey":"us63"},{"ID":356,"VillageID":3218,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-23T21:58:11Z","ServerKey":"us63"},{"ID":357,"VillageID":2941,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-01-23T21:58:15Z","ServerKey":"us63"},{"ID":358,"VillageID":20,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-23T22:06:51Z","ServerKey":"us63"},{"ID":359,"VillageID":18,"NewOwnerID":772572,"NewTribeID":148,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-23T22:09:07Z","ServerKey":"us63"},{"ID":360,"VillageID":2778,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-23T22:13:06Z","ServerKey":"us63"},{"ID":361,"VillageID":2441,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-01-23T22:32:43Z","ServerKey":"us63"},{"ID":362,"VillageID":330,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-23T23:27:56Z","ServerKey":"us63"},{"ID":363,"VillageID":1907,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-23T23:35:08Z","ServerKey":"us63"},{"ID":364,"VillageID":2607,"NewOwnerID":848954360,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":984,"CreatedAt":"2023-01-23T23:39:58Z","ServerKey":"us63"},{"ID":365,"VillageID":4231,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-23T23:50:17Z","ServerKey":"us63"},{"ID":366,"VillageID":3615,"NewOwnerID":783836,"NewTribeID":0,"OldOwnerID":848952309,"OldTribeID":0,"Points":1810,"CreatedAt":"2023-01-24T00:00:37Z","ServerKey":"us63"},{"ID":367,"VillageID":2782,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-01-24T00:22:01Z","ServerKey":"us63"},{"ID":368,"VillageID":286,"NewOwnerID":848951392,"NewTribeID":12,"OldOwnerID":551467,"OldTribeID":0,"Points":383,"CreatedAt":"2023-01-24T00:33:31Z","ServerKey":"us63"},{"ID":369,"VillageID":658,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-01-24T00:41:14Z","ServerKey":"us63"},{"ID":370,"VillageID":3238,"NewOwnerID":848929352,"NewTribeID":146,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-01-24T00:44:06Z","ServerKey":"us63"},{"ID":371,"VillageID":2481,"NewOwnerID":848950985,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-24T00:44:45Z","ServerKey":"us63"},{"ID":372,"VillageID":2322,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-24T00:53:14Z","ServerKey":"us63"},{"ID":373,"VillageID":2322,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":741494,"OldTribeID":2,"Points":109,"CreatedAt":"2023-01-24T00:53:14Z","ServerKey":"us63"},{"ID":374,"VillageID":3564,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-24T01:15:27Z","ServerKey":"us63"},{"ID":375,"VillageID":762,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-24T01:20:17Z","ServerKey":"us63"},{"ID":376,"VillageID":2130,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848945685,"OldTribeID":0,"Points":572,"CreatedAt":"2023-01-24T01:25:07Z","ServerKey":"us63"},{"ID":377,"VillageID":708,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":288947,"OldTribeID":0,"Points":380,"CreatedAt":"2023-01-24T01:49:53Z","ServerKey":"us63"},{"ID":378,"VillageID":2259,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-24T01:51:06Z","ServerKey":"us63"},{"ID":379,"VillageID":1740,"NewOwnerID":848953915,"NewTribeID":35,"OldOwnerID":848953971,"OldTribeID":0,"Points":492,"CreatedAt":"2023-01-24T02:10:06Z","ServerKey":"us63"},{"ID":380,"VillageID":2140,"NewOwnerID":744969,"NewTribeID":122,"OldOwnerID":848945636,"OldTribeID":0,"Points":583,"CreatedAt":"2023-01-24T02:41:48Z","ServerKey":"us63"},{"ID":381,"VillageID":3795,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":795,"CreatedAt":"2023-01-24T02:47:40Z","ServerKey":"us63"},{"ID":382,"VillageID":1384,"NewOwnerID":577132,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-24T02:48:34Z","ServerKey":"us63"},{"ID":383,"VillageID":3367,"NewOwnerID":848954127,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":1304,"CreatedAt":"2023-01-24T03:05:39Z","ServerKey":"us63"},{"ID":384,"VillageID":918,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":772572,"OldTribeID":0,"Points":5435,"CreatedAt":"2023-01-24T03:38:00Z","ServerKey":"us63"},{"ID":385,"VillageID":1725,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-24T03:38:01Z","ServerKey":"us63"},{"ID":386,"VillageID":186,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848953670,"OldTribeID":12,"Points":3378,"CreatedAt":"2023-01-24T03:43:48Z","ServerKey":"us63"},{"ID":387,"VillageID":918,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848936926,"OldTribeID":6,"Points":5452,"CreatedAt":"2023-01-24T04:03:24Z","ServerKey":"us63"},{"ID":388,"VillageID":918,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954266,"OldTribeID":35,"Points":5428,"CreatedAt":"2023-01-24T04:03:37Z","ServerKey":"us63"},{"ID":389,"VillageID":1410,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-24T04:57:47Z","ServerKey":"us63"},{"ID":390,"VillageID":18,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":772572,"OldTribeID":0,"Points":220,"CreatedAt":"2023-01-24T05:56:01Z","ServerKey":"us63"},{"ID":391,"VillageID":3221,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-24T06:32:28Z","ServerKey":"us63"},{"ID":392,"VillageID":858,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":742547,"OldTribeID":144,"Points":3094,"CreatedAt":"2023-01-24T06:45:28Z","ServerKey":"us63"},{"ID":393,"VillageID":1102,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":1421,"CreatedAt":"2023-01-24T07:00:54Z","ServerKey":"us63"},{"ID":394,"VillageID":3834,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-24T07:46:56Z","ServerKey":"us63"},{"ID":395,"VillageID":32,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-24T08:02:30Z","ServerKey":"us63"},{"ID":396,"VillageID":4633,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-01-24T08:42:18Z","ServerKey":"us63"},{"ID":397,"VillageID":1764,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":545,"CreatedAt":"2023-01-24T08:58:34Z","ServerKey":"us63"},{"ID":398,"VillageID":19,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-01-24T09:04:27Z","ServerKey":"us63"},{"ID":399,"VillageID":3214,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-24T09:15:54Z","ServerKey":"us63"},{"ID":400,"VillageID":3356,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-24T09:16:13Z","ServerKey":"us63"},{"ID":401,"VillageID":1468,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848951187,"OldTribeID":77,"Points":2917,"CreatedAt":"2023-01-24T10:03:25Z","ServerKey":"us63"},{"ID":402,"VillageID":2151,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-24T11:42:09Z","ServerKey":"us63"},{"ID":403,"VillageID":219,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":275322,"OldTribeID":12,"Points":2923,"CreatedAt":"2023-01-24T11:49:23Z","ServerKey":"us63"},{"ID":404,"VillageID":854,"NewOwnerID":848907165,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-01-24T12:07:44Z","ServerKey":"us63"},{"ID":405,"VillageID":2751,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-24T13:00:54Z","ServerKey":"us63"},{"ID":406,"VillageID":1692,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":848953814,"OldTribeID":0,"Points":3053,"CreatedAt":"2023-01-24T13:40:25Z","ServerKey":"us63"},{"ID":407,"VillageID":3445,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-01-24T13:50:26Z","ServerKey":"us63"},{"ID":408,"VillageID":624,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848943750,"OldTribeID":36,"Points":2676,"CreatedAt":"2023-01-24T14:54:06Z","ServerKey":"us63"},{"ID":409,"VillageID":172,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1707,"CreatedAt":"2023-01-24T15:20:24Z","ServerKey":"us63"},{"ID":410,"VillageID":2549,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-24T15:21:50Z","ServerKey":"us63"},{"ID":411,"VillageID":1438,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-24T15:40:19Z","ServerKey":"us63"},{"ID":412,"VillageID":172,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848936921,"OldTribeID":6,"Points":1731,"CreatedAt":"2023-01-24T15:44:08Z","ServerKey":"us63"},{"ID":413,"VillageID":172,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":1731,"CreatedAt":"2023-01-24T15:44:08Z","ServerKey":"us63"},{"ID":414,"VillageID":2494,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-24T16:24:30Z","ServerKey":"us63"},{"ID":415,"VillageID":477,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-24T16:34:17Z","ServerKey":"us63"},{"ID":416,"VillageID":255,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-24T17:59:14Z","ServerKey":"us63"},{"ID":417,"VillageID":1160,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-24T18:28:04Z","ServerKey":"us63"},{"ID":418,"VillageID":1971,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-24T18:39:00Z","ServerKey":"us63"},{"ID":419,"VillageID":3180,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-24T18:39:58Z","ServerKey":"us63"},{"ID":420,"VillageID":1488,"NewOwnerID":485721,"NewTribeID":50,"OldOwnerID":848951664,"OldTribeID":116,"Points":308,"CreatedAt":"2023-01-24T18:44:42Z","ServerKey":"us63"},{"ID":421,"VillageID":1058,"NewOwnerID":743702,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-01-24T18:49:21Z","ServerKey":"us63"},{"ID":422,"VillageID":3948,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":848954742,"OldTribeID":113,"Points":1391,"CreatedAt":"2023-01-24T18:56:57Z","ServerKey":"us63"},{"ID":423,"VillageID":1442,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":848949344,"OldTribeID":0,"Points":2792,"CreatedAt":"2023-01-24T19:16:40Z","ServerKey":"us63"},{"ID":424,"VillageID":582,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":848946508,"OldTribeID":111,"Points":1835,"CreatedAt":"2023-01-24T19:41:13Z","ServerKey":"us63"},{"ID":425,"VillageID":696,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":149791,"OldTribeID":0,"Points":2187,"CreatedAt":"2023-01-24T19:48:55Z","ServerKey":"us63"},{"ID":426,"VillageID":5785,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-24T19:53:58Z","ServerKey":"us63"},{"ID":427,"VillageID":5715,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-24T20:12:24Z","ServerKey":"us63"},{"ID":428,"VillageID":3417,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-01-24T20:16:16Z","ServerKey":"us63"},{"ID":429,"VillageID":1357,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-24T20:17:54Z","ServerKey":"us63"},{"ID":430,"VillageID":2422,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-24T20:17:58Z","ServerKey":"us63"},{"ID":431,"VillageID":1071,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-24T20:22:54Z","ServerKey":"us63"},{"ID":432,"VillageID":467,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-24T20:29:02Z","ServerKey":"us63"},{"ID":433,"VillageID":198,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-24T20:47:57Z","ServerKey":"us63"},{"ID":434,"VillageID":1232,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":537,"CreatedAt":"2023-01-24T20:54:52Z","ServerKey":"us63"},{"ID":435,"VillageID":1599,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-24T20:57:02Z","ServerKey":"us63"},{"ID":436,"VillageID":1599,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954240,"OldTribeID":6,"Points":120,"CreatedAt":"2023-01-24T20:57:02Z","ServerKey":"us63"},{"ID":438,"VillageID":2788,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-01-24T21:06:53Z","ServerKey":"us63"},{"ID":439,"VillageID":3725,"NewOwnerID":783836,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-24T21:15:12Z","ServerKey":"us63"},{"ID":440,"VillageID":822,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-24T21:18:02Z","ServerKey":"us63"},{"ID":441,"VillageID":2415,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-24T21:32:12Z","ServerKey":"us63"},{"ID":442,"VillageID":225,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-24T21:58:29Z","ServerKey":"us63"},{"ID":443,"VillageID":4180,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-01-24T22:20:43Z","ServerKey":"us63"},{"ID":444,"VillageID":2062,"NewOwnerID":848954138,"NewTribeID":64,"OldOwnerID":848945639,"OldTribeID":0,"Points":558,"CreatedAt":"2023-01-24T23:08:26Z","ServerKey":"us63"},{"ID":445,"VillageID":926,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-24T23:31:27Z","ServerKey":"us63"},{"ID":446,"VillageID":1944,"NewOwnerID":848909148,"NewTribeID":48,"OldOwnerID":848948642,"OldTribeID":0,"Points":310,"CreatedAt":"2023-01-24T23:33:12Z","ServerKey":"us63"},{"ID":447,"VillageID":312,"NewOwnerID":751946,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-24T23:48:59Z","ServerKey":"us63"},{"ID":448,"VillageID":2430,"NewOwnerID":848951321,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-24T23:49:23Z","ServerKey":"us63"},{"ID":449,"VillageID":553,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-25T00:26:17Z","ServerKey":"us63"},{"ID":450,"VillageID":295,"NewOwnerID":848953046,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-01-25T00:33:33Z","ServerKey":"us63"},{"ID":451,"VillageID":2432,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848953333,"OldTribeID":36,"Points":2486,"CreatedAt":"2023-01-25T01:13:00Z","ServerKey":"us63"},{"ID":452,"VillageID":3242,"NewOwnerID":741238,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-25T01:13:35Z","ServerKey":"us63"},{"ID":453,"VillageID":3814,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-01-25T01:49:03Z","ServerKey":"us63"},{"ID":454,"VillageID":3440,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":848938929,"OldTribeID":104,"Points":2871,"CreatedAt":"2023-01-25T01:52:45Z","ServerKey":"us63"},{"ID":455,"VillageID":1034,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":848913714,"OldTribeID":0,"Points":1512,"CreatedAt":"2023-01-25T01:56:10Z","ServerKey":"us63"},{"ID":456,"VillageID":2752,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":742615,"OldTribeID":0,"Points":1426,"CreatedAt":"2023-01-25T03:04:35Z","ServerKey":"us63"},{"ID":457,"VillageID":4640,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-25T03:50:37Z","ServerKey":"us63"},{"ID":458,"VillageID":1915,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-25T04:56:22Z","ServerKey":"us63"},{"ID":459,"VillageID":751,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1188,"CreatedAt":"2023-01-25T05:35:54Z","ServerKey":"us63"},{"ID":460,"VillageID":1904,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":743278,"OldTribeID":0,"Points":966,"CreatedAt":"2023-01-25T06:48:16Z","ServerKey":"us63"},{"ID":461,"VillageID":1513,"NewOwnerID":848911019,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-25T06:59:54Z","ServerKey":"us63"},{"ID":462,"VillageID":1434,"NewOwnerID":485721,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-25T07:15:11Z","ServerKey":"us63"},{"ID":463,"VillageID":1153,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-25T07:50:30Z","ServerKey":"us63"},{"ID":464,"VillageID":2368,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-25T08:07:25Z","ServerKey":"us63"},{"ID":465,"VillageID":282,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-25T08:18:44Z","ServerKey":"us63"},{"ID":466,"VillageID":2295,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-25T09:17:29Z","ServerKey":"us63"},{"ID":467,"VillageID":659,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":530862,"OldTribeID":32,"Points":2179,"CreatedAt":"2023-01-25T10:27:56Z","ServerKey":"us63"},{"ID":468,"VillageID":1897,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":374413,"OldTribeID":41,"Points":1383,"CreatedAt":"2023-01-25T10:48:07Z","ServerKey":"us63"},{"ID":469,"VillageID":277,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-25T10:51:52Z","ServerKey":"us63"},{"ID":470,"VillageID":1621,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":848953265,"OldTribeID":115,"Points":537,"CreatedAt":"2023-01-25T11:01:26Z","ServerKey":"us63"},{"ID":471,"VillageID":385,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-01-25T11:23:04Z","ServerKey":"us63"},{"ID":472,"VillageID":2854,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848950985,"OldTribeID":0,"Points":3650,"CreatedAt":"2023-01-25T11:48:08Z","ServerKey":"us63"},{"ID":473,"VillageID":2854,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":3650,"CreatedAt":"2023-01-25T11:48:08Z","ServerKey":"us63"},{"ID":474,"VillageID":1279,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":540,"CreatedAt":"2023-01-25T12:27:03Z","ServerKey":"us63"},{"ID":475,"VillageID":3624,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-25T12:33:04Z","ServerKey":"us63"},{"ID":476,"VillageID":2426,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":848954568,"OldTribeID":0,"Points":1598,"CreatedAt":"2023-01-25T13:18:00Z","ServerKey":"us63"},{"ID":477,"VillageID":1806,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":848954290,"OldTribeID":61,"Points":2320,"CreatedAt":"2023-01-25T13:20:15Z","ServerKey":"us63"},{"ID":478,"VillageID":3915,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848954738,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-25T14:01:04Z","ServerKey":"us63"},{"ID":479,"VillageID":1598,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-25T14:18:41Z","ServerKey":"us63"},{"ID":480,"VillageID":62,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-25T14:25:38Z","ServerKey":"us63"},{"ID":481,"VillageID":1039,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-25T14:29:59Z","ServerKey":"us63"},{"ID":482,"VillageID":5907,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":30,"CreatedAt":"2023-01-25T14:47:34Z","ServerKey":"us63"},{"ID":483,"VillageID":1245,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-25T15:09:01Z","ServerKey":"us63"},{"ID":484,"VillageID":1884,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-01-25T15:56:39Z","ServerKey":"us63"},{"ID":485,"VillageID":4937,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":848939177,"OldTribeID":0,"Points":1111,"CreatedAt":"2023-01-25T16:08:45Z","ServerKey":"us63"},{"ID":486,"VillageID":361,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-25T16:26:13Z","ServerKey":"us63"},{"ID":487,"VillageID":924,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2149,"CreatedAt":"2023-01-25T16:28:55Z","ServerKey":"us63"},{"ID":488,"VillageID":2845,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":848954614,"OldTribeID":53,"Points":598,"CreatedAt":"2023-01-25T16:31:42Z","ServerKey":"us63"},{"ID":489,"VillageID":1902,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-25T17:30:43Z","ServerKey":"us63"},{"ID":490,"VillageID":698,"NewOwnerID":767507,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-25T17:44:40Z","ServerKey":"us63"},{"ID":491,"VillageID":3105,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":848943612,"OldTribeID":0,"Points":720,"CreatedAt":"2023-01-25T18:05:38Z","ServerKey":"us63"},{"ID":492,"VillageID":720,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-25T18:10:29Z","ServerKey":"us63"},{"ID":493,"VillageID":1978,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-25T18:22:40Z","ServerKey":"us63"},{"ID":494,"VillageID":848,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":735360,"OldTribeID":22,"Points":2171,"CreatedAt":"2023-01-25T18:24:11Z","ServerKey":"us63"},{"ID":495,"VillageID":4328,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":848954805,"OldTribeID":0,"Points":342,"CreatedAt":"2023-01-25T19:12:59Z","ServerKey":"us63"},{"ID":496,"VillageID":1225,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-01-25T19:25:06Z","ServerKey":"us63"},{"ID":497,"VillageID":1398,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-25T19:47:23Z","ServerKey":"us63"},{"ID":498,"VillageID":435,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-25T19:51:41Z","ServerKey":"us63"},{"ID":499,"VillageID":2956,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":848950286,"OldTribeID":36,"Points":2302,"CreatedAt":"2023-01-25T20:07:20Z","ServerKey":"us63"},{"ID":500,"VillageID":1467,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-25T20:27:36Z","ServerKey":"us63"},{"ID":501,"VillageID":2045,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-25T20:37:09Z","ServerKey":"us63"},{"ID":502,"VillageID":3098,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-25T21:36:56Z","ServerKey":"us63"},{"ID":503,"VillageID":3272,"NewOwnerID":754270,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-25T21:52:21Z","ServerKey":"us63"},{"ID":504,"VillageID":237,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":848950888,"OldTribeID":77,"Points":2009,"CreatedAt":"2023-01-25T22:07:10Z","ServerKey":"us63"},{"ID":505,"VillageID":1235,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":585,"CreatedAt":"2023-01-25T22:08:38Z","ServerKey":"us63"},{"ID":506,"VillageID":2905,"NewOwnerID":795932,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-25T22:21:36Z","ServerKey":"us63"},{"ID":507,"VillageID":554,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":5637,"CreatedAt":"2023-01-25T22:44:10Z","ServerKey":"us63"},{"ID":508,"VillageID":240,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848953209,"OldTribeID":0,"Points":2370,"CreatedAt":"2023-01-25T22:46:23Z","ServerKey":"us63"},{"ID":509,"VillageID":4140,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":788487,"OldTribeID":0,"Points":1366,"CreatedAt":"2023-01-25T23:17:00Z","ServerKey":"us63"},{"ID":510,"VillageID":275,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848953891,"OldTribeID":17,"Points":2690,"CreatedAt":"2023-01-25T23:27:17Z","ServerKey":"us63"},{"ID":511,"VillageID":932,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-25T23:47:17Z","ServerKey":"us63"},{"ID":512,"VillageID":1068,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-01-25T23:59:36Z","ServerKey":"us63"},{"ID":513,"VillageID":2741,"NewOwnerID":795932,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-26T00:23:07Z","ServerKey":"us63"},{"ID":514,"VillageID":4265,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848954794,"OldTribeID":0,"Points":1875,"CreatedAt":"2023-01-26T00:23:28Z","ServerKey":"us63"},{"ID":515,"VillageID":36,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-26T00:26:15Z","ServerKey":"us63"},{"ID":516,"VillageID":2269,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-26T00:30:04Z","ServerKey":"us63"},{"ID":517,"VillageID":1991,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-26T00:39:53Z","ServerKey":"us63"},{"ID":518,"VillageID":1378,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":549,"CreatedAt":"2023-01-26T00:48:56Z","ServerKey":"us63"},{"ID":519,"VillageID":2558,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-26T00:55:37Z","ServerKey":"us63"},{"ID":520,"VillageID":1391,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":714,"CreatedAt":"2023-01-26T01:02:32Z","ServerKey":"us63"},{"ID":521,"VillageID":1705,"NewOwnerID":848935714,"NewTribeID":4,"OldOwnerID":848953912,"OldTribeID":0,"Points":2362,"CreatedAt":"2023-01-26T01:49:15Z","ServerKey":"us63"},{"ID":522,"VillageID":2865,"NewOwnerID":848925398,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-26T01:58:50Z","ServerKey":"us63"},{"ID":523,"VillageID":3220,"NewOwnerID":848929352,"NewTribeID":146,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-26T02:05:40Z","ServerKey":"us63"},{"ID":524,"VillageID":1226,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":554,"CreatedAt":"2023-01-26T02:23:09Z","ServerKey":"us63"},{"ID":525,"VillageID":1316,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848945039,"OldTribeID":14,"Points":2536,"CreatedAt":"2023-01-26T02:52:30Z","ServerKey":"us63"},{"ID":526,"VillageID":2345,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":848941749,"OldTribeID":0,"Points":556,"CreatedAt":"2023-01-26T02:55:20Z","ServerKey":"us63"},{"ID":527,"VillageID":3267,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":781094,"OldTribeID":30,"Points":5081,"CreatedAt":"2023-01-26T02:58:21Z","ServerKey":"us63"},{"ID":528,"VillageID":3016,"NewOwnerID":848954604,"NewTribeID":105,"OldOwnerID":848939988,"OldTribeID":62,"Points":477,"CreatedAt":"2023-01-26T03:09:07Z","ServerKey":"us63"},{"ID":529,"VillageID":1949,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-26T03:12:11Z","ServerKey":"us63"},{"ID":530,"VillageID":1341,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848946221,"OldTribeID":66,"Points":2126,"CreatedAt":"2023-01-26T03:26:52Z","ServerKey":"us63"},{"ID":531,"VillageID":2740,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":619293,"OldTribeID":36,"Points":2021,"CreatedAt":"2023-01-26T03:30:01Z","ServerKey":"us63"},{"ID":532,"VillageID":684,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-26T03:40:56Z","ServerKey":"us63"},{"ID":533,"VillageID":2918,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-01-26T04:17:15Z","ServerKey":"us63"},{"ID":534,"VillageID":3710,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":712365,"OldTribeID":0,"Points":297,"CreatedAt":"2023-01-26T04:21:34Z","ServerKey":"us63"},{"ID":535,"VillageID":652,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-26T05:02:20Z","ServerKey":"us63"},{"ID":536,"VillageID":949,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-26T05:15:19Z","ServerKey":"us63"},{"ID":537,"VillageID":648,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-26T05:33:20Z","ServerKey":"us63"},{"ID":538,"VillageID":1151,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":848942499,"OldTribeID":0,"Points":316,"CreatedAt":"2023-01-26T06:00:33Z","ServerKey":"us63"},{"ID":539,"VillageID":3359,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-01-26T06:09:10Z","ServerKey":"us63"},{"ID":540,"VillageID":5250,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-26T06:37:00Z","ServerKey":"us63"},{"ID":541,"VillageID":4274,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-01-26T06:58:36Z","ServerKey":"us63"},{"ID":542,"VillageID":799,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":605760,"OldTribeID":0,"Points":3744,"CreatedAt":"2023-01-26T07:07:13Z","ServerKey":"us63"},{"ID":543,"VillageID":278,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-26T07:23:59Z","ServerKey":"us63"},{"ID":544,"VillageID":189,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-26T07:48:09Z","ServerKey":"us63"},{"ID":545,"VillageID":226,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848951842,"OldTribeID":12,"Points":3400,"CreatedAt":"2023-01-26T08:07:19Z","ServerKey":"us63"},{"ID":546,"VillageID":1013,"NewOwnerID":848912363,"NewTribeID":151,"OldOwnerID":0,"OldTribeID":0,"Points":1949,"CreatedAt":"2023-01-26T08:14:02Z","ServerKey":"us63"},{"ID":547,"VillageID":3037,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-26T08:20:02Z","ServerKey":"us63"},{"ID":548,"VillageID":346,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-01-26T08:42:33Z","ServerKey":"us63"},{"ID":549,"VillageID":1669,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-26T08:45:31Z","ServerKey":"us63"},{"ID":550,"VillageID":1886,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-26T08:47:58Z","ServerKey":"us63"},{"ID":551,"VillageID":4083,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-26T08:50:00Z","ServerKey":"us63"},{"ID":552,"VillageID":3935,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T09:24:26Z","ServerKey":"us63"},{"ID":553,"VillageID":2792,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954609,"OldTribeID":50,"Points":2608,"CreatedAt":"2023-01-26T09:47:44Z","ServerKey":"us63"},{"ID":554,"VillageID":3312,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-26T11:01:51Z","ServerKey":"us63"},{"ID":555,"VillageID":930,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":776842,"OldTribeID":105,"Points":4175,"CreatedAt":"2023-01-26T11:03:59Z","ServerKey":"us63"},{"ID":556,"VillageID":1329,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":588,"CreatedAt":"2023-01-26T11:04:19Z","ServerKey":"us63"},{"ID":557,"VillageID":536,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-01-26T11:12:32Z","ServerKey":"us63"},{"ID":558,"VillageID":3387,"NewOwnerID":848952403,"NewTribeID":66,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-26T12:05:20Z","ServerKey":"us63"},{"ID":559,"VillageID":557,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848913779,"OldTribeID":17,"Points":1976,"CreatedAt":"2023-01-26T12:35:10Z","ServerKey":"us63"},{"ID":560,"VillageID":1612,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-26T12:43:29Z","ServerKey":"us63"},{"ID":561,"VillageID":1146,"NewOwnerID":848912363,"NewTribeID":151,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-01-26T13:43:05Z","ServerKey":"us63"},{"ID":562,"VillageID":3433,"NewOwnerID":848953962,"NewTribeID":27,"OldOwnerID":589825,"OldTribeID":0,"Points":10316,"CreatedAt":"2023-01-26T13:56:16Z","ServerKey":"us63"},{"ID":563,"VillageID":666,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T13:57:56Z","ServerKey":"us63"},{"ID":564,"VillageID":3542,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-26T14:00:54Z","ServerKey":"us63"},{"ID":565,"VillageID":2383,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-26T14:30:59Z","ServerKey":"us63"},{"ID":566,"VillageID":3926,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-26T14:36:59Z","ServerKey":"us63"},{"ID":567,"VillageID":1925,"NewOwnerID":729548,"NewTribeID":65,"OldOwnerID":780353,"OldTribeID":66,"Points":622,"CreatedAt":"2023-01-26T14:40:33Z","ServerKey":"us63"},{"ID":568,"VillageID":1767,"NewOwnerID":374049,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-01-26T15:05:21Z","ServerKey":"us63"},{"ID":569,"VillageID":736,"NewOwnerID":848953915,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-01-26T15:46:53Z","ServerKey":"us63"},{"ID":570,"VillageID":879,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-26T16:01:05Z","ServerKey":"us63"},{"ID":571,"VillageID":2574,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-26T16:14:03Z","ServerKey":"us63"},{"ID":572,"VillageID":1494,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848951817,"OldTribeID":32,"Points":2606,"CreatedAt":"2023-01-26T16:18:17Z","ServerKey":"us63"},{"ID":573,"VillageID":1285,"NewOwnerID":848881759,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":614,"CreatedAt":"2023-01-26T16:26:57Z","ServerKey":"us63"},{"ID":574,"VillageID":1504,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-26T17:18:35Z","ServerKey":"us63"},{"ID":575,"VillageID":1988,"NewOwnerID":848954368,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-26T17:25:41Z","ServerKey":"us63"},{"ID":576,"VillageID":1013,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848912363,"OldTribeID":151,"Points":2024,"CreatedAt":"2023-01-26T17:30:03Z","ServerKey":"us63"},{"ID":577,"VillageID":875,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-26T17:38:17Z","ServerKey":"us63"},{"ID":578,"VillageID":2237,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-26T17:41:09Z","ServerKey":"us63"},{"ID":579,"VillageID":2285,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T17:54:12Z","ServerKey":"us63"},{"ID":580,"VillageID":587,"NewOwnerID":848952324,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-26T18:30:48Z","ServerKey":"us63"},{"ID":581,"VillageID":503,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-26T18:41:24Z","ServerKey":"us63"},{"ID":582,"VillageID":253,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":304576,"OldTribeID":14,"Points":2568,"CreatedAt":"2023-01-26T18:54:23Z","ServerKey":"us63"},{"ID":583,"VillageID":2010,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848942994,"OldTribeID":0,"Points":644,"CreatedAt":"2023-01-26T19:13:49Z","ServerKey":"us63"},{"ID":584,"VillageID":3433,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848953962,"OldTribeID":27,"Points":10292,"CreatedAt":"2023-01-26T19:22:41Z","ServerKey":"us63"},{"ID":585,"VillageID":2159,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":848943096,"OldTribeID":0,"Points":618,"CreatedAt":"2023-01-26T19:28:30Z","ServerKey":"us63"},{"ID":586,"VillageID":828,"NewOwnerID":767507,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-26T19:51:40Z","ServerKey":"us63"},{"ID":587,"VillageID":103,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-26T19:52:26Z","ServerKey":"us63"},{"ID":588,"VillageID":3811,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-26T19:58:53Z","ServerKey":"us63"},{"ID":589,"VillageID":3127,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-26T20:48:11Z","ServerKey":"us63"},{"ID":590,"VillageID":2859,"NewOwnerID":848925398,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-01-26T21:11:58Z","ServerKey":"us63"},{"ID":591,"VillageID":1178,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":590,"CreatedAt":"2023-01-26T21:29:51Z","ServerKey":"us63"},{"ID":592,"VillageID":3657,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848919274,"OldTribeID":0,"Points":947,"CreatedAt":"2023-01-26T21:46:00Z","ServerKey":"us63"},{"ID":593,"VillageID":2473,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-01-26T21:49:19Z","ServerKey":"us63"},{"ID":594,"VillageID":681,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-26T22:02:49Z","ServerKey":"us63"},{"ID":595,"VillageID":3363,"NewOwnerID":848953207,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-26T22:23:51Z","ServerKey":"us63"},{"ID":596,"VillageID":3198,"NewOwnerID":848953270,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-01-26T22:26:46Z","ServerKey":"us63"},{"ID":597,"VillageID":604,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":1305,"CreatedAt":"2023-01-26T22:55:38Z","ServerKey":"us63"},{"ID":598,"VillageID":4536,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-01-26T22:56:08Z","ServerKey":"us63"},{"ID":599,"VillageID":1918,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-26T23:07:36Z","ServerKey":"us63"},{"ID":600,"VillageID":3400,"NewOwnerID":848954594,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-26T23:11:43Z","ServerKey":"us63"},{"ID":601,"VillageID":183,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":3302,"CreatedAt":"2023-01-26T23:17:48Z","ServerKey":"us63"},{"ID":602,"VillageID":3030,"NewOwnerID":848952960,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-26T23:20:46Z","ServerKey":"us63"},{"ID":603,"VillageID":3263,"NewOwnerID":848951962,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-26T23:40:00Z","ServerKey":"us63"},{"ID":604,"VillageID":2489,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848954571,"OldTribeID":36,"Points":656,"CreatedAt":"2023-01-26T23:50:32Z","ServerKey":"us63"},{"ID":605,"VillageID":3375,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-27T00:25:54Z","ServerKey":"us63"},{"ID":606,"VillageID":1793,"NewOwnerID":848953964,"NewTribeID":2,"OldOwnerID":848954223,"OldTribeID":32,"Points":2813,"CreatedAt":"2023-01-27T00:33:18Z","ServerKey":"us63"},{"ID":607,"VillageID":543,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-27T00:50:12Z","ServerKey":"us63"},{"ID":608,"VillageID":2566,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848949508,"OldTribeID":36,"Points":2188,"CreatedAt":"2023-01-27T00:51:19Z","ServerKey":"us63"},{"ID":609,"VillageID":1655,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-01-27T01:06:56Z","ServerKey":"us63"},{"ID":610,"VillageID":173,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-27T01:08:32Z","ServerKey":"us63"},{"ID":611,"VillageID":3148,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":1210,"CreatedAt":"2023-01-27T01:18:48Z","ServerKey":"us63"},{"ID":612,"VillageID":1299,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-27T01:40:00Z","ServerKey":"us63"},{"ID":613,"VillageID":243,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":848937060,"OldTribeID":13,"Points":3051,"CreatedAt":"2023-01-27T01:42:56Z","ServerKey":"us63"},{"ID":614,"VillageID":2636,"NewOwnerID":789838,"NewTribeID":66,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-27T01:44:47Z","ServerKey":"us63"},{"ID":615,"VillageID":5024,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-27T01:51:05Z","ServerKey":"us63"},{"ID":616,"VillageID":4687,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-27T02:20:26Z","ServerKey":"us63"},{"ID":617,"VillageID":2528,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-27T03:00:03Z","ServerKey":"us63"},{"ID":618,"VillageID":2373,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":848949114,"OldTribeID":0,"Points":589,"CreatedAt":"2023-01-27T03:14:05Z","ServerKey":"us63"},{"ID":619,"VillageID":2302,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":848940746,"OldTribeID":0,"Points":488,"CreatedAt":"2023-01-27T03:16:47Z","ServerKey":"us63"},{"ID":620,"VillageID":3089,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954537,"OldTribeID":36,"Points":1545,"CreatedAt":"2023-01-27T03:49:25Z","ServerKey":"us63"},{"ID":621,"VillageID":4301,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-27T04:12:44Z","ServerKey":"us63"},{"ID":622,"VillageID":2369,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848917443,"OldTribeID":122,"Points":5598,"CreatedAt":"2023-01-27T04:17:59Z","ServerKey":"us63"},{"ID":623,"VillageID":306,"NewOwnerID":525543,"NewTribeID":15,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-27T04:56:20Z","ServerKey":"us63"},{"ID":624,"VillageID":1288,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-01-27T05:27:43Z","ServerKey":"us63"},{"ID":625,"VillageID":252,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-27T05:37:08Z","ServerKey":"us63"},{"ID":626,"VillageID":260,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":764159,"OldTribeID":105,"Points":2745,"CreatedAt":"2023-01-27T05:39:42Z","ServerKey":"us63"},{"ID":627,"VillageID":2213,"NewOwnerID":744969,"NewTribeID":122,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-27T05:47:10Z","ServerKey":"us63"},{"ID":628,"VillageID":2898,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":423944,"OldTribeID":0,"Points":1075,"CreatedAt":"2023-01-27T05:47:19Z","ServerKey":"us63"},{"ID":629,"VillageID":2365,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":848949191,"OldTribeID":0,"Points":614,"CreatedAt":"2023-01-27T05:56:27Z","ServerKey":"us63"},{"ID":630,"VillageID":4455,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":848954824,"OldTribeID":113,"Points":1165,"CreatedAt":"2023-01-27T05:57:58Z","ServerKey":"us63"},{"ID":631,"VillageID":1477,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-01-27T06:06:02Z","ServerKey":"us63"},{"ID":632,"VillageID":2719,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-01-27T06:52:41Z","ServerKey":"us63"},{"ID":633,"VillageID":4284,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-01-27T07:09:07Z","ServerKey":"us63"},{"ID":634,"VillageID":2035,"NewOwnerID":620806,"NewTribeID":97,"OldOwnerID":848949101,"OldTribeID":0,"Points":406,"CreatedAt":"2023-01-27T07:12:10Z","ServerKey":"us63"},{"ID":635,"VillageID":2129,"NewOwnerID":756854,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-01-27T07:17:41Z","ServerKey":"us63"},{"ID":636,"VillageID":1921,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-01-27T07:33:34Z","ServerKey":"us63"},{"ID":637,"VillageID":3145,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":848943232,"OldTribeID":0,"Points":1051,"CreatedAt":"2023-01-27T07:36:49Z","ServerKey":"us63"},{"ID":638,"VillageID":3591,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-27T07:37:58Z","ServerKey":"us63"},{"ID":639,"VillageID":3936,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":469425,"OldTribeID":15,"Points":1829,"CreatedAt":"2023-01-27T07:43:11Z","ServerKey":"us63"},{"ID":640,"VillageID":2058,"NewOwnerID":848954221,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-27T07:49:15Z","ServerKey":"us63"},{"ID":641,"VillageID":871,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":754636,"OldTribeID":22,"Points":3539,"CreatedAt":"2023-01-27T08:10:11Z","ServerKey":"us63"},{"ID":642,"VillageID":2205,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-27T08:11:01Z","ServerKey":"us63"},{"ID":643,"VillageID":735,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-27T08:34:33Z","ServerKey":"us63"},{"ID":644,"VillageID":3072,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-27T08:44:01Z","ServerKey":"us63"},{"ID":645,"VillageID":3584,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-27T09:29:19Z","ServerKey":"us63"},{"ID":646,"VillageID":1704,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-27T09:38:45Z","ServerKey":"us63"},{"ID":647,"VillageID":1377,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-27T09:39:32Z","ServerKey":"us63"},{"ID":648,"VillageID":1377,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":114,"CreatedAt":"2023-01-27T09:40:22Z","ServerKey":"us63"},{"ID":649,"VillageID":2821,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":848939549,"OldTribeID":42,"Points":3640,"CreatedAt":"2023-01-27T10:04:22Z","ServerKey":"us63"},{"ID":650,"VillageID":2821,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":568,"OldTribeID":32,"Points":3640,"CreatedAt":"2023-01-27T10:04:22Z","ServerKey":"us63"},{"ID":651,"VillageID":2359,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-27T10:04:24Z","ServerKey":"us63"},{"ID":652,"VillageID":1405,"NewOwnerID":377337,"NewTribeID":3,"OldOwnerID":848949034,"OldTribeID":0,"Points":549,"CreatedAt":"2023-01-27T11:44:14Z","ServerKey":"us63"},{"ID":653,"VillageID":3398,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848951960,"OldTribeID":97,"Points":3474,"CreatedAt":"2023-01-27T11:55:53Z","ServerKey":"us63"},{"ID":654,"VillageID":2696,"NewOwnerID":785871,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-27T12:26:02Z","ServerKey":"us63"},{"ID":655,"VillageID":3725,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":783836,"OldTribeID":0,"Points":453,"CreatedAt":"2023-01-27T12:35:16Z","ServerKey":"us63"},{"ID":656,"VillageID":3735,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-27T12:58:10Z","ServerKey":"us63"},{"ID":657,"VillageID":1943,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-01-27T13:00:00Z","ServerKey":"us63"},{"ID":658,"VillageID":1292,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":646,"CreatedAt":"2023-01-27T13:20:16Z","ServerKey":"us63"},{"ID":659,"VillageID":4561,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":706486,"OldTribeID":99,"Points":1080,"CreatedAt":"2023-01-27T13:27:13Z","ServerKey":"us63"},{"ID":660,"VillageID":4247,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-27T13:33:24Z","ServerKey":"us63"},{"ID":661,"VillageID":1130,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":3706,"CreatedAt":"2023-01-27T13:36:50Z","ServerKey":"us63"},{"ID":662,"VillageID":2534,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-27T13:42:57Z","ServerKey":"us63"},{"ID":663,"VillageID":2588,"NewOwnerID":848954594,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-27T13:47:39Z","ServerKey":"us63"},{"ID":664,"VillageID":1105,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848935714,"OldTribeID":4,"Points":3586,"CreatedAt":"2023-01-27T14:10:00Z","ServerKey":"us63"},{"ID":665,"VillageID":2780,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-01-27T14:20:13Z","ServerKey":"us63"},{"ID":666,"VillageID":2780,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":785504,"OldTribeID":86,"Points":199,"CreatedAt":"2023-01-27T14:20:25Z","ServerKey":"us63"},{"ID":667,"VillageID":3099,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":848952889,"OldTribeID":0,"Points":1301,"CreatedAt":"2023-01-27T14:21:12Z","ServerKey":"us63"},{"ID":668,"VillageID":4836,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848954331,"OldTribeID":17,"Points":1167,"CreatedAt":"2023-01-27T14:30:04Z","ServerKey":"us63"},{"ID":669,"VillageID":1460,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":848950783,"OldTribeID":0,"Points":549,"CreatedAt":"2023-01-27T14:49:27Z","ServerKey":"us63"},{"ID":670,"VillageID":721,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-27T15:19:12Z","ServerKey":"us63"},{"ID":671,"VillageID":4019,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-01-27T15:49:13Z","ServerKey":"us63"},{"ID":672,"VillageID":825,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-27T16:01:42Z","ServerKey":"us63"},{"ID":673,"VillageID":1098,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-27T16:08:01Z","ServerKey":"us63"},{"ID":674,"VillageID":1701,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-27T16:29:34Z","ServerKey":"us63"},{"ID":675,"VillageID":2887,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-27T16:38:15Z","ServerKey":"us63"},{"ID":676,"VillageID":2320,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":848949115,"OldTribeID":0,"Points":570,"CreatedAt":"2023-01-27T16:54:19Z","ServerKey":"us63"},{"ID":677,"VillageID":3355,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-27T17:01:37Z","ServerKey":"us63"},{"ID":678,"VillageID":1192,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":676,"CreatedAt":"2023-01-27T17:19:31Z","ServerKey":"us63"},{"ID":679,"VillageID":3455,"NewOwnerID":848952960,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-27T17:25:02Z","ServerKey":"us63"},{"ID":680,"VillageID":2906,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-27T17:29:38Z","ServerKey":"us63"},{"ID":681,"VillageID":2448,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-27T17:31:17Z","ServerKey":"us63"},{"ID":682,"VillageID":2434,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-27T17:35:48Z","ServerKey":"us63"},{"ID":683,"VillageID":377,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-27T17:37:28Z","ServerKey":"us63"},{"ID":684,"VillageID":377,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848954208,"OldTribeID":2,"Points":133,"CreatedAt":"2023-01-27T17:37:37Z","ServerKey":"us63"},{"ID":685,"VillageID":73,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-27T17:53:02Z","ServerKey":"us63"},{"ID":686,"VillageID":900,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-27T18:03:32Z","ServerKey":"us63"},{"ID":687,"VillageID":2924,"NewOwnerID":848954594,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-27T18:12:06Z","ServerKey":"us63"},{"ID":688,"VillageID":1919,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-01-27T18:35:25Z","ServerKey":"us63"},{"ID":689,"VillageID":2165,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-27T18:42:32Z","ServerKey":"us63"},{"ID":690,"VillageID":940,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":780940,"OldTribeID":99,"Points":3126,"CreatedAt":"2023-01-27T18:51:35Z","ServerKey":"us63"},{"ID":691,"VillageID":787,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-27T19:08:49Z","ServerKey":"us63"},{"ID":692,"VillageID":2511,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":776340,"OldTribeID":0,"Points":581,"CreatedAt":"2023-01-27T19:13:03Z","ServerKey":"us63"},{"ID":693,"VillageID":3725,"NewOwnerID":783836,"NewTribeID":0,"OldOwnerID":415671,"OldTribeID":85,"Points":434,"CreatedAt":"2023-01-27T19:17:12Z","ServerKey":"us63"},{"ID":694,"VillageID":2928,"NewOwnerID":848954604,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-27T19:19:50Z","ServerKey":"us63"},{"ID":695,"VillageID":6065,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-27T19:28:52Z","ServerKey":"us63"},{"ID":696,"VillageID":3107,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-27T19:38:13Z","ServerKey":"us63"},{"ID":697,"VillageID":2350,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-01-27T20:18:42Z","ServerKey":"us63"},{"ID":698,"VillageID":192,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-01-27T20:19:57Z","ServerKey":"us63"},{"ID":699,"VillageID":1277,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-27T20:56:07Z","ServerKey":"us63"},{"ID":700,"VillageID":1018,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-27T21:28:57Z","ServerKey":"us63"},{"ID":701,"VillageID":1607,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-01-27T21:32:46Z","ServerKey":"us63"},{"ID":702,"VillageID":314,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":754653,"OldTribeID":22,"Points":2779,"CreatedAt":"2023-01-27T21:50:13Z","ServerKey":"us63"},{"ID":703,"VillageID":990,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-27T22:06:29Z","ServerKey":"us63"},{"ID":704,"VillageID":1705,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":2721,"CreatedAt":"2023-01-27T22:18:00Z","ServerKey":"us63"},{"ID":705,"VillageID":2844,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-27T23:01:07Z","ServerKey":"us63"},{"ID":706,"VillageID":3202,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-27T23:01:55Z","ServerKey":"us63"},{"ID":707,"VillageID":2460,"NewOwnerID":848951321,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-27T23:43:23Z","ServerKey":"us63"},{"ID":708,"VillageID":60,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848951962,"OldTribeID":97,"Points":2591,"CreatedAt":"2023-01-27T23:57:15Z","ServerKey":"us63"},{"ID":709,"VillageID":4753,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848951879,"OldTribeID":99,"Points":1225,"CreatedAt":"2023-01-28T00:28:37Z","ServerKey":"us63"},{"ID":710,"VillageID":3225,"NewOwnerID":848954138,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-28T00:52:17Z","ServerKey":"us63"},{"ID":711,"VillageID":2987,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-01-28T01:08:24Z","ServerKey":"us63"},{"ID":712,"VillageID":1113,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-28T01:15:33Z","ServerKey":"us63"},{"ID":713,"VillageID":2694,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-01-28T01:27:27Z","ServerKey":"us63"},{"ID":714,"VillageID":4913,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-01-28T01:59:30Z","ServerKey":"us63"},{"ID":715,"VillageID":701,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-28T02:41:02Z","ServerKey":"us63"},{"ID":716,"VillageID":1352,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-01-28T02:41:52Z","ServerKey":"us63"},{"ID":717,"VillageID":239,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":588,"CreatedAt":"2023-01-28T02:48:05Z","ServerKey":"us63"},{"ID":718,"VillageID":1264,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-28T02:49:13Z","ServerKey":"us63"},{"ID":719,"VillageID":1408,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":626,"CreatedAt":"2023-01-28T03:10:44Z","ServerKey":"us63"},{"ID":720,"VillageID":1408,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":230556,"OldTribeID":48,"Points":626,"CreatedAt":"2023-01-28T03:10:44Z","ServerKey":"us63"},{"ID":721,"VillageID":1385,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":843,"CreatedAt":"2023-01-28T03:32:06Z","ServerKey":"us63"},{"ID":722,"VillageID":688,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-28T03:40:03Z","ServerKey":"us63"},{"ID":723,"VillageID":627,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":1659,"CreatedAt":"2023-01-28T03:45:00Z","ServerKey":"us63"},{"ID":724,"VillageID":500,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":758134,"OldTribeID":22,"Points":2313,"CreatedAt":"2023-01-28T03:55:22Z","ServerKey":"us63"},{"ID":725,"VillageID":1479,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-01-28T03:56:00Z","ServerKey":"us63"},{"ID":726,"VillageID":3450,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":675021,"OldTribeID":0,"Points":1184,"CreatedAt":"2023-01-28T04:16:51Z","ServerKey":"us63"},{"ID":727,"VillageID":2972,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-01-28T04:21:25Z","ServerKey":"us63"},{"ID":728,"VillageID":533,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-28T04:26:01Z","ServerKey":"us63"},{"ID":729,"VillageID":1730,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-28T04:29:12Z","ServerKey":"us63"},{"ID":730,"VillageID":1241,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-28T04:45:33Z","ServerKey":"us63"},{"ID":731,"VillageID":533,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":848936921,"OldTribeID":6,"Points":175,"CreatedAt":"2023-01-28T04:48:06Z","ServerKey":"us63"},{"ID":732,"VillageID":5501,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-01-28T05:03:12Z","ServerKey":"us63"},{"ID":733,"VillageID":1883,"NewOwnerID":755121,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-01-28T05:09:05Z","ServerKey":"us63"},{"ID":734,"VillageID":1260,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-01-28T05:14:26Z","ServerKey":"us63"},{"ID":735,"VillageID":3232,"NewOwnerID":58945,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":61,"Points":4004,"CreatedAt":"2023-01-28T06:11:27Z","ServerKey":"us63"},{"ID":736,"VillageID":974,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-01-28T06:12:11Z","ServerKey":"us63"},{"ID":737,"VillageID":688,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954266,"OldTribeID":35,"Points":199,"CreatedAt":"2023-01-28T06:42:11Z","ServerKey":"us63"},{"ID":738,"VillageID":2360,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-28T06:47:19Z","ServerKey":"us63"},{"ID":739,"VillageID":2149,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":848947369,"OldTribeID":0,"Points":565,"CreatedAt":"2023-01-28T06:59:45Z","ServerKey":"us63"},{"ID":740,"VillageID":726,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-28T07:09:40Z","ServerKey":"us63"},{"ID":741,"VillageID":349,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-28T07:12:25Z","ServerKey":"us63"},{"ID":742,"VillageID":1424,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":848949056,"OldTribeID":42,"Points":1734,"CreatedAt":"2023-01-28T07:14:08Z","ServerKey":"us63"},{"ID":743,"VillageID":1108,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":848935817,"OldTribeID":0,"Points":3415,"CreatedAt":"2023-01-28T07:15:18Z","ServerKey":"us63"},{"ID":744,"VillageID":1108,"NewOwnerID":153367,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":85,"Points":3415,"CreatedAt":"2023-01-28T07:15:18Z","ServerKey":"us63"},{"ID":745,"VillageID":1408,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":640,"CreatedAt":"2023-01-28T07:34:18Z","ServerKey":"us63"},{"ID":746,"VillageID":423,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848954201,"OldTribeID":35,"Points":4198,"CreatedAt":"2023-01-28T07:40:27Z","ServerKey":"us63"},{"ID":747,"VillageID":6554,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-01-28T07:43:41Z","ServerKey":"us63"},{"ID":748,"VillageID":520,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":775654,"OldTribeID":105,"Points":2374,"CreatedAt":"2023-01-28T07:49:08Z","ServerKey":"us63"},{"ID":749,"VillageID":2118,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-01-28T07:53:20Z","ServerKey":"us63"},{"ID":750,"VillageID":1099,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848934831,"OldTribeID":35,"Points":4413,"CreatedAt":"2023-01-28T07:58:21Z","ServerKey":"us63"},{"ID":751,"VillageID":1662,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-28T08:24:14Z","ServerKey":"us63"},{"ID":752,"VillageID":3269,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-28T08:51:09Z","ServerKey":"us63"},{"ID":753,"VillageID":6418,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-28T08:55:37Z","ServerKey":"us63"},{"ID":754,"VillageID":1776,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-28T10:12:43Z","ServerKey":"us63"},{"ID":755,"VillageID":4691,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":769092,"OldTribeID":0,"Points":1807,"CreatedAt":"2023-01-28T10:17:44Z","ServerKey":"us63"},{"ID":756,"VillageID":1652,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-01-28T10:55:11Z","ServerKey":"us63"},{"ID":757,"VillageID":533,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":61,"Points":175,"CreatedAt":"2023-01-28T11:15:20Z","ServerKey":"us63"},{"ID":758,"VillageID":1215,"NewOwnerID":667167,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":808,"CreatedAt":"2023-01-28T11:25:15Z","ServerKey":"us63"},{"ID":759,"VillageID":1108,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":153367,"OldTribeID":85,"Points":3415,"CreatedAt":"2023-01-28T11:52:20Z","ServerKey":"us63"},{"ID":760,"VillageID":3112,"NewOwnerID":848934532,"NewTribeID":138,"OldOwnerID":848951632,"OldTribeID":105,"Points":1710,"CreatedAt":"2023-01-28T12:08:50Z","ServerKey":"us63"},{"ID":761,"VillageID":3565,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848934812,"OldTribeID":42,"Points":1094,"CreatedAt":"2023-01-28T12:36:02Z","ServerKey":"us63"},{"ID":762,"VillageID":2115,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":792503,"OldTribeID":0,"Points":3222,"CreatedAt":"2023-01-28T12:39:32Z","ServerKey":"us63"},{"ID":763,"VillageID":1663,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953539,"OldTribeID":32,"Points":3035,"CreatedAt":"2023-01-28T12:49:09Z","ServerKey":"us63"},{"ID":764,"VillageID":5508,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-01-28T13:07:12Z","ServerKey":"us63"},{"ID":765,"VillageID":679,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":848954475,"OldTribeID":73,"Points":1877,"CreatedAt":"2023-01-28T13:14:15Z","ServerKey":"us63"},{"ID":766,"VillageID":2431,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-28T13:29:54Z","ServerKey":"us63"},{"ID":767,"VillageID":4070,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-01-28T13:49:52Z","ServerKey":"us63"},{"ID":768,"VillageID":3,"NewOwnerID":848954218,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-28T14:02:08Z","ServerKey":"us63"},{"ID":769,"VillageID":106,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-28T14:41:52Z","ServerKey":"us63"},{"ID":770,"VillageID":3030,"NewOwnerID":58945,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":61,"Points":385,"CreatedAt":"2023-01-28T14:43:46Z","ServerKey":"us63"},{"ID":771,"VillageID":3455,"NewOwnerID":58945,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":61,"Points":199,"CreatedAt":"2023-01-28T14:44:05Z","ServerKey":"us63"},{"ID":772,"VillageID":3147,"NewOwnerID":848954662,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-28T15:04:31Z","ServerKey":"us63"},{"ID":773,"VillageID":2311,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-28T15:04:45Z","ServerKey":"us63"},{"ID":774,"VillageID":6460,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-01-28T15:29:29Z","ServerKey":"us63"},{"ID":775,"VillageID":1035,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-01-28T15:46:41Z","ServerKey":"us63"},{"ID":776,"VillageID":5601,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-01-28T15:50:17Z","ServerKey":"us63"},{"ID":777,"VillageID":842,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-01-28T15:51:41Z","ServerKey":"us63"},{"ID":778,"VillageID":4549,"NewOwnerID":7536,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-28T15:56:39Z","ServerKey":"us63"},{"ID":779,"VillageID":4478,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-28T16:16:15Z","ServerKey":"us63"},{"ID":780,"VillageID":3336,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-01-28T16:21:32Z","ServerKey":"us63"},{"ID":781,"VillageID":3609,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848950849,"OldTribeID":0,"Points":2830,"CreatedAt":"2023-01-28T16:34:32Z","ServerKey":"us63"},{"ID":782,"VillageID":2606,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-28T16:35:53Z","ServerKey":"us63"},{"ID":783,"VillageID":943,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-28T17:13:43Z","ServerKey":"us63"},{"ID":784,"VillageID":242,"NewOwnerID":170853,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-28T17:49:18Z","ServerKey":"us63"},{"ID":785,"VillageID":1930,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-28T18:16:22Z","ServerKey":"us63"},{"ID":786,"VillageID":2710,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-28T18:41:21Z","ServerKey":"us63"},{"ID":787,"VillageID":403,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-28T18:43:11Z","ServerKey":"us63"},{"ID":788,"VillageID":3759,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":755829,"OldTribeID":152,"Points":2378,"CreatedAt":"2023-01-28T18:58:31Z","ServerKey":"us63"},{"ID":789,"VillageID":3353,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-28T19:10:24Z","ServerKey":"us63"},{"ID":790,"VillageID":2260,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":1110,"CreatedAt":"2023-01-28T19:18:03Z","ServerKey":"us63"},{"ID":791,"VillageID":92,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-28T19:56:59Z","ServerKey":"us63"},{"ID":792,"VillageID":1881,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-28T19:57:34Z","ServerKey":"us63"},{"ID":793,"VillageID":5097,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-01-28T20:00:07Z","ServerKey":"us63"},{"ID":794,"VillageID":5595,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-01-28T20:04:01Z","ServerKey":"us63"},{"ID":795,"VillageID":5684,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-28T20:27:36Z","ServerKey":"us63"},{"ID":796,"VillageID":1549,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-28T20:37:08Z","ServerKey":"us63"},{"ID":797,"VillageID":1680,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-01-28T20:46:25Z","ServerKey":"us63"},{"ID":798,"VillageID":4154,"NewOwnerID":302611,"NewTribeID":97,"OldOwnerID":848954775,"OldTribeID":0,"Points":2830,"CreatedAt":"2023-01-28T20:47:11Z","ServerKey":"us63"},{"ID":799,"VillageID":484,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-28T21:06:24Z","ServerKey":"us63"},{"ID":800,"VillageID":1211,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":730,"CreatedAt":"2023-01-28T21:18:15Z","ServerKey":"us63"},{"ID":801,"VillageID":6233,"NewOwnerID":604194,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-01-28T21:35:52Z","ServerKey":"us63"},{"ID":802,"VillageID":1368,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-28T21:42:34Z","ServerKey":"us63"},{"ID":803,"VillageID":1540,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848952403,"OldTribeID":66,"Points":4097,"CreatedAt":"2023-01-28T21:46:58Z","ServerKey":"us63"},{"ID":804,"VillageID":1940,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-28T22:13:43Z","ServerKey":"us63"},{"ID":805,"VillageID":1188,"NewOwnerID":848945118,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":880,"CreatedAt":"2023-01-28T22:32:47Z","ServerKey":"us63"},{"ID":806,"VillageID":1681,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-01-28T22:38:41Z","ServerKey":"us63"},{"ID":807,"VillageID":2657,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-01-28T22:47:10Z","ServerKey":"us63"},{"ID":808,"VillageID":5440,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":775730,"OldTribeID":131,"Points":873,"CreatedAt":"2023-01-28T22:57:46Z","ServerKey":"us63"},{"ID":809,"VillageID":2605,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-28T23:03:28Z","ServerKey":"us63"},{"ID":810,"VillageID":2897,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-28T23:10:00Z","ServerKey":"us63"},{"ID":811,"VillageID":2126,"NewOwnerID":848943740,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-01-28T23:24:15Z","ServerKey":"us63"},{"ID":812,"VillageID":4731,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-28T23:29:36Z","ServerKey":"us63"},{"ID":813,"VillageID":130,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-01-28T23:32:38Z","ServerKey":"us63"},{"ID":814,"VillageID":4025,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-28T23:35:09Z","ServerKey":"us63"},{"ID":815,"VillageID":390,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":629,"CreatedAt":"2023-01-29T00:22:12Z","ServerKey":"us63"},{"ID":816,"VillageID":5084,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-29T00:32:14Z","ServerKey":"us63"},{"ID":817,"VillageID":2908,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1724,"CreatedAt":"2023-01-29T00:35:13Z","ServerKey":"us63"},{"ID":818,"VillageID":2759,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":748935,"OldTribeID":83,"Points":614,"CreatedAt":"2023-01-29T00:43:04Z","ServerKey":"us63"},{"ID":819,"VillageID":3429,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-01-29T00:52:07Z","ServerKey":"us63"},{"ID":820,"VillageID":300,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-29T00:55:02Z","ServerKey":"us63"},{"ID":821,"VillageID":4522,"NewOwnerID":848954131,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-01-29T00:57:24Z","ServerKey":"us63"},{"ID":822,"VillageID":3033,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-29T01:03:53Z","ServerKey":"us63"},{"ID":823,"VillageID":4851,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848954603,"OldTribeID":17,"Points":1620,"CreatedAt":"2023-01-29T01:07:08Z","ServerKey":"us63"},{"ID":824,"VillageID":650,"NewOwnerID":848931764,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-29T01:22:07Z","ServerKey":"us63"},{"ID":825,"VillageID":2513,"NewOwnerID":795932,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-01-29T01:55:53Z","ServerKey":"us63"},{"ID":826,"VillageID":139,"NewOwnerID":848953401,"NewTribeID":64,"OldOwnerID":848917074,"OldTribeID":0,"Points":3848,"CreatedAt":"2023-01-29T02:10:38Z","ServerKey":"us63"},{"ID":827,"VillageID":1021,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":37720,"OldTribeID":24,"Points":491,"CreatedAt":"2023-01-29T02:14:33Z","ServerKey":"us63"},{"ID":828,"VillageID":4154,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":302611,"OldTribeID":97,"Points":2927,"CreatedAt":"2023-01-29T02:19:06Z","ServerKey":"us63"},{"ID":829,"VillageID":4154,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848947293,"OldTribeID":85,"Points":2927,"CreatedAt":"2023-01-29T02:19:06Z","ServerKey":"us63"},{"ID":830,"VillageID":5695,"NewOwnerID":848954539,"NewTribeID":131,"OldOwnerID":334769,"OldTribeID":0,"Points":404,"CreatedAt":"2023-01-29T02:25:57Z","ServerKey":"us63"},{"ID":831,"VillageID":5232,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848954029,"OldTribeID":0,"Points":562,"CreatedAt":"2023-01-29T02:34:23Z","ServerKey":"us63"},{"ID":832,"VillageID":808,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-29T02:35:24Z","ServerKey":"us63"},{"ID":833,"VillageID":1063,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-29T02:51:34Z","ServerKey":"us63"},{"ID":834,"VillageID":2740,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848951023,"OldTribeID":86,"Points":2046,"CreatedAt":"2023-01-29T02:51:44Z","ServerKey":"us63"},{"ID":835,"VillageID":433,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-29T03:21:06Z","ServerKey":"us63"},{"ID":836,"VillageID":1994,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-01-29T03:30:15Z","ServerKey":"us63"},{"ID":837,"VillageID":2480,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-29T03:37:55Z","ServerKey":"us63"},{"ID":838,"VillageID":1296,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":980,"CreatedAt":"2023-01-29T03:55:50Z","ServerKey":"us63"},{"ID":839,"VillageID":131,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-29T03:58:27Z","ServerKey":"us63"},{"ID":840,"VillageID":146,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-29T04:03:23Z","ServerKey":"us63"},{"ID":841,"VillageID":1350,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-29T04:07:17Z","ServerKey":"us63"},{"ID":842,"VillageID":1891,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":848954548,"OldTribeID":0,"Points":2139,"CreatedAt":"2023-01-29T04:14:39Z","ServerKey":"us63"},{"ID":843,"VillageID":3929,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-01-29T04:19:38Z","ServerKey":"us63"},{"ID":844,"VillageID":587,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848952324,"OldTribeID":4,"Points":376,"CreatedAt":"2023-01-29T04:46:38Z","ServerKey":"us63"},{"ID":845,"VillageID":214,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-01-29T04:55:32Z","ServerKey":"us63"},{"ID":846,"VillageID":2565,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-01-29T04:56:39Z","ServerKey":"us63"},{"ID":847,"VillageID":2037,"NewOwnerID":848954368,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-01-29T04:59:13Z","ServerKey":"us63"},{"ID":848,"VillageID":1834,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-29T05:03:15Z","ServerKey":"us63"},{"ID":849,"VillageID":3159,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848954643,"OldTribeID":65,"Points":3147,"CreatedAt":"2023-01-29T05:11:03Z","ServerKey":"us63"},{"ID":850,"VillageID":287,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-01-29T05:11:24Z","ServerKey":"us63"},{"ID":851,"VillageID":3615,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":783836,"OldTribeID":0,"Points":2621,"CreatedAt":"2023-01-29T05:23:39Z","ServerKey":"us63"},{"ID":852,"VillageID":3615,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":2621,"CreatedAt":"2023-01-29T05:23:39Z","ServerKey":"us63"},{"ID":853,"VillageID":1803,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954288,"OldTribeID":24,"Points":2041,"CreatedAt":"2023-01-29T05:36:34Z","ServerKey":"us63"},{"ID":854,"VillageID":1645,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-01-29T05:37:34Z","ServerKey":"us63"},{"ID":855,"VillageID":794,"NewOwnerID":751946,"NewTribeID":158,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-29T05:39:18Z","ServerKey":"us63"},{"ID":856,"VillageID":4151,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":848954774,"OldTribeID":0,"Points":3675,"CreatedAt":"2023-01-29T06:40:00Z","ServerKey":"us63"},{"ID":857,"VillageID":3056,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-29T07:13:40Z","ServerKey":"us63"},{"ID":858,"VillageID":3056,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848890745,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-29T07:13:40Z","ServerKey":"us63"},{"ID":859,"VillageID":1747,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-29T08:25:24Z","ServerKey":"us63"},{"ID":860,"VillageID":6507,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-01-29T08:54:49Z","ServerKey":"us63"},{"ID":861,"VillageID":2910,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-29T08:58:03Z","ServerKey":"us63"},{"ID":862,"VillageID":1928,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":756854,"OldTribeID":25,"Points":3224,"CreatedAt":"2023-01-29T09:50:13Z","ServerKey":"us63"},{"ID":863,"VillageID":4973,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-01-29T09:59:17Z","ServerKey":"us63"},{"ID":864,"VillageID":872,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-01-29T10:30:32Z","ServerKey":"us63"},{"ID":865,"VillageID":54,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-01-29T10:31:06Z","ServerKey":"us63"},{"ID":866,"VillageID":2926,"NewOwnerID":848954553,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-29T10:32:58Z","ServerKey":"us63"},{"ID":867,"VillageID":3012,"NewOwnerID":848953207,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-29T11:10:26Z","ServerKey":"us63"},{"ID":868,"VillageID":2253,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-29T11:20:11Z","ServerKey":"us63"},{"ID":869,"VillageID":326,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":37720,"OldTribeID":24,"Points":3348,"CreatedAt":"2023-01-29T11:21:24Z","ServerKey":"us63"},{"ID":870,"VillageID":2541,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-01-29T11:35:23Z","ServerKey":"us63"},{"ID":871,"VillageID":2386,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-01-29T11:53:06Z","ServerKey":"us63"},{"ID":872,"VillageID":3125,"NewOwnerID":795044,"NewTribeID":64,"OldOwnerID":848943201,"OldTribeID":0,"Points":1044,"CreatedAt":"2023-01-29T11:55:32Z","ServerKey":"us63"},{"ID":873,"VillageID":3132,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":58945,"OldTribeID":0,"Points":7044,"CreatedAt":"2023-01-29T12:08:33Z","ServerKey":"us63"},{"ID":874,"VillageID":5822,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":848953215,"OldTribeID":148,"Points":582,"CreatedAt":"2023-01-29T12:16:28Z","ServerKey":"us63"},{"ID":875,"VillageID":1677,"NewOwnerID":769106,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":414,"CreatedAt":"2023-01-29T12:50:24Z","ServerKey":"us63"},{"ID":876,"VillageID":320,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848946235,"OldTribeID":22,"Points":3719,"CreatedAt":"2023-01-29T12:55:16Z","ServerKey":"us63"},{"ID":877,"VillageID":1444,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-01-29T13:02:23Z","ServerKey":"us63"},{"ID":878,"VillageID":2344,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-29T13:03:38Z","ServerKey":"us63"},{"ID":879,"VillageID":1716,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848953936,"OldTribeID":4,"Points":3244,"CreatedAt":"2023-01-29T13:32:13Z","ServerKey":"us63"},{"ID":880,"VillageID":4109,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-29T13:55:42Z","ServerKey":"us63"},{"ID":881,"VillageID":4348,"NewOwnerID":647002,"NewTribeID":0,"OldOwnerID":848954810,"OldTribeID":153,"Points":1687,"CreatedAt":"2023-01-29T14:23:03Z","ServerKey":"us63"},{"ID":882,"VillageID":2219,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-01-29T14:28:36Z","ServerKey":"us63"},{"ID":883,"VillageID":5405,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-29T14:35:11Z","ServerKey":"us63"},{"ID":884,"VillageID":2338,"NewOwnerID":848937132,"NewTribeID":5,"OldOwnerID":848945587,"OldTribeID":0,"Points":445,"CreatedAt":"2023-01-29T14:38:18Z","ServerKey":"us63"},{"ID":885,"VillageID":3030,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":58945,"OldTribeID":0,"Points":525,"CreatedAt":"2023-01-29T14:55:26Z","ServerKey":"us63"},{"ID":886,"VillageID":3030,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":61,"Points":525,"CreatedAt":"2023-01-29T14:55:26Z","ServerKey":"us63"},{"ID":887,"VillageID":4365,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848954814,"OldTribeID":97,"Points":2780,"CreatedAt":"2023-01-29T14:59:32Z","ServerKey":"us63"},{"ID":888,"VillageID":2410,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-29T15:04:55Z","ServerKey":"us63"},{"ID":889,"VillageID":4457,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-29T15:29:55Z","ServerKey":"us63"},{"ID":890,"VillageID":3639,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848954399,"OldTribeID":4,"Points":2748,"CreatedAt":"2023-01-29T15:33:00Z","ServerKey":"us63"},{"ID":891,"VillageID":2278,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-01-29T15:50:44Z","ServerKey":"us63"},{"ID":892,"VillageID":2530,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-29T16:09:50Z","ServerKey":"us63"},{"ID":893,"VillageID":413,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-29T16:22:05Z","ServerKey":"us63"},{"ID":894,"VillageID":2444,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-01-29T16:31:00Z","ServerKey":"us63"},{"ID":895,"VillageID":868,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":754270,"OldTribeID":105,"Points":2808,"CreatedAt":"2023-01-29T16:58:33Z","ServerKey":"us63"},{"ID":896,"VillageID":504,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":848893845,"OldTribeID":0,"Points":1705,"CreatedAt":"2023-01-29T17:30:11Z","ServerKey":"us63"},{"ID":897,"VillageID":3824,"NewOwnerID":848941569,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-29T17:49:36Z","ServerKey":"us63"},{"ID":898,"VillageID":4519,"NewOwnerID":848953962,"NewTribeID":27,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-29T18:04:05Z","ServerKey":"us63"},{"ID":899,"VillageID":1423,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-29T18:09:25Z","ServerKey":"us63"},{"ID":900,"VillageID":3594,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-01-29T18:11:11Z","ServerKey":"us63"},{"ID":901,"VillageID":1414,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":848949037,"OldTribeID":0,"Points":521,"CreatedAt":"2023-01-29T18:17:56Z","ServerKey":"us63"},{"ID":902,"VillageID":1992,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":440548,"OldTribeID":25,"Points":2162,"CreatedAt":"2023-01-29T18:30:32Z","ServerKey":"us63"},{"ID":903,"VillageID":3236,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":848954650,"OldTribeID":66,"Points":4005,"CreatedAt":"2023-01-29T18:41:43Z","ServerKey":"us63"},{"ID":904,"VillageID":1896,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-01-29T18:45:29Z","ServerKey":"us63"},{"ID":905,"VillageID":2323,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":848932022,"OldTribeID":0,"Points":575,"CreatedAt":"2023-01-29T18:54:43Z","ServerKey":"us63"},{"ID":906,"VillageID":3051,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":620806,"OldTribeID":97,"Points":2492,"CreatedAt":"2023-01-29T19:05:13Z","ServerKey":"us63"},{"ID":907,"VillageID":5437,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":775729,"OldTribeID":131,"Points":3383,"CreatedAt":"2023-01-29T19:14:19Z","ServerKey":"us63"},{"ID":908,"VillageID":89,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-29T19:37:48Z","ServerKey":"us63"},{"ID":909,"VillageID":152,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-01-29T19:45:56Z","ServerKey":"us63"},{"ID":910,"VillageID":1184,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":632,"CreatedAt":"2023-01-29T19:54:32Z","ServerKey":"us63"},{"ID":911,"VillageID":3280,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-29T19:57:41Z","ServerKey":"us63"},{"ID":912,"VillageID":5753,"NewOwnerID":848954539,"NewTribeID":131,"OldOwnerID":345976,"OldTribeID":0,"Points":589,"CreatedAt":"2023-01-29T20:02:26Z","ServerKey":"us63"},{"ID":913,"VillageID":3923,"NewOwnerID":848945448,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-01-29T20:27:51Z","ServerKey":"us63"},{"ID":914,"VillageID":4900,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-01-29T20:31:26Z","ServerKey":"us63"},{"ID":915,"VillageID":3232,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":58945,"OldTribeID":0,"Points":3998,"CreatedAt":"2023-01-29T20:33:33Z","ServerKey":"us63"},{"ID":916,"VillageID":1745,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-29T20:51:14Z","ServerKey":"us63"},{"ID":917,"VillageID":6855,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-01-29T21:02:43Z","ServerKey":"us63"},{"ID":918,"VillageID":2495,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-01-29T21:07:42Z","ServerKey":"us63"},{"ID":919,"VillageID":2304,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-29T21:12:50Z","ServerKey":"us63"},{"ID":920,"VillageID":1490,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-29T21:21:17Z","ServerKey":"us63"},{"ID":921,"VillageID":4312,"NewOwnerID":647002,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-29T21:37:04Z","ServerKey":"us63"},{"ID":922,"VillageID":1728,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-29T21:49:31Z","ServerKey":"us63"},{"ID":923,"VillageID":4574,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":647002,"OldTribeID":0,"Points":4094,"CreatedAt":"2023-01-29T21:51:22Z","ServerKey":"us63"},{"ID":924,"VillageID":3821,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-29T22:05:57Z","ServerKey":"us63"},{"ID":925,"VillageID":5610,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-01-29T22:14:25Z","ServerKey":"us63"},{"ID":926,"VillageID":4367,"NewOwnerID":7536,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-29T22:30:25Z","ServerKey":"us63"},{"ID":927,"VillageID":1016,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-01-29T22:38:51Z","ServerKey":"us63"},{"ID":928,"VillageID":4908,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848953499,"OldTribeID":97,"Points":1740,"CreatedAt":"2023-01-29T22:40:55Z","ServerKey":"us63"},{"ID":929,"VillageID":1047,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848920804,"OldTribeID":0,"Points":2397,"CreatedAt":"2023-01-29T22:46:00Z","ServerKey":"us63"},{"ID":930,"VillageID":567,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-29T23:07:21Z","ServerKey":"us63"},{"ID":931,"VillageID":1149,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-01-29T23:46:40Z","ServerKey":"us63"},{"ID":932,"VillageID":1526,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-29T23:50:00Z","ServerKey":"us63"},{"ID":933,"VillageID":772,"NewOwnerID":848954021,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-01-29T23:52:35Z","ServerKey":"us63"},{"ID":934,"VillageID":3844,"NewOwnerID":707957,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-30T00:10:16Z","ServerKey":"us63"},{"ID":935,"VillageID":1770,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-30T00:22:41Z","ServerKey":"us63"},{"ID":936,"VillageID":3232,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848954555,"OldTribeID":91,"Points":3998,"CreatedAt":"2023-01-30T00:24:29Z","ServerKey":"us63"},{"ID":937,"VillageID":3232,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":794964,"OldTribeID":61,"Points":3895,"CreatedAt":"2023-01-30T00:24:30Z","ServerKey":"us63"},{"ID":938,"VillageID":4364,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-30T00:26:58Z","ServerKey":"us63"},{"ID":939,"VillageID":2659,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-30T00:29:35Z","ServerKey":"us63"},{"ID":940,"VillageID":1625,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-30T00:42:37Z","ServerKey":"us63"},{"ID":941,"VillageID":953,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":783755,"OldTribeID":26,"Points":607,"CreatedAt":"2023-01-30T01:14:07Z","ServerKey":"us63"},{"ID":942,"VillageID":1579,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-01-30T01:19:05Z","ServerKey":"us63"},{"ID":943,"VillageID":1579,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":735108,"OldTribeID":20,"Points":160,"CreatedAt":"2023-01-30T01:19:05Z","ServerKey":"us63"},{"ID":944,"VillageID":1198,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":715,"CreatedAt":"2023-01-30T01:22:47Z","ServerKey":"us63"},{"ID":945,"VillageID":3104,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-01-30T01:34:11Z","ServerKey":"us63"},{"ID":946,"VillageID":1665,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-30T01:58:31Z","ServerKey":"us63"},{"ID":947,"VillageID":529,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-01-30T02:17:54Z","ServerKey":"us63"},{"ID":948,"VillageID":4463,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-30T02:27:07Z","ServerKey":"us63"},{"ID":949,"VillageID":3965,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848949884,"OldTribeID":0,"Points":1118,"CreatedAt":"2023-01-30T02:59:14Z","ServerKey":"us63"},{"ID":950,"VillageID":4444,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-01-30T03:03:17Z","ServerKey":"us63"},{"ID":951,"VillageID":1778,"NewOwnerID":848907165,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-30T03:10:38Z","ServerKey":"us63"},{"ID":952,"VillageID":365,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1031,"CreatedAt":"2023-01-30T03:18:09Z","ServerKey":"us63"},{"ID":953,"VillageID":1087,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":848933918,"OldTribeID":0,"Points":2244,"CreatedAt":"2023-01-30T03:25:15Z","ServerKey":"us63"},{"ID":954,"VillageID":358,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-30T03:49:45Z","ServerKey":"us63"},{"ID":955,"VillageID":6485,"NewOwnerID":848954539,"NewTribeID":131,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-01-30T04:23:24Z","ServerKey":"us63"},{"ID":956,"VillageID":5241,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-30T05:02:44Z","ServerKey":"us63"},{"ID":957,"VillageID":3471,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-01-30T05:09:40Z","ServerKey":"us63"},{"ID":958,"VillageID":4629,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-01-30T05:15:24Z","ServerKey":"us63"},{"ID":959,"VillageID":2288,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-30T05:32:25Z","ServerKey":"us63"},{"ID":960,"VillageID":1553,"NewOwnerID":848954366,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-30T06:03:53Z","ServerKey":"us63"},{"ID":961,"VillageID":91,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-30T06:12:23Z","ServerKey":"us63"},{"ID":962,"VillageID":2995,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-30T06:14:45Z","ServerKey":"us63"},{"ID":963,"VillageID":1620,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-01-30T06:33:01Z","ServerKey":"us63"},{"ID":964,"VillageID":1763,"NewOwnerID":848881936,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-01-30T06:40:36Z","ServerKey":"us63"},{"ID":965,"VillageID":3122,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848943140,"OldTribeID":0,"Points":909,"CreatedAt":"2023-01-30T06:59:26Z","ServerKey":"us63"},{"ID":966,"VillageID":2394,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-01-30T07:38:58Z","ServerKey":"us63"},{"ID":967,"VillageID":2314,"NewOwnerID":654379,"NewTribeID":64,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-01-30T07:39:43Z","ServerKey":"us63"},{"ID":968,"VillageID":1433,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-01-30T07:45:45Z","ServerKey":"us63"},{"ID":969,"VillageID":422,"NewOwnerID":848953915,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-30T08:17:19Z","ServerKey":"us63"},{"ID":970,"VillageID":5532,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-01-30T08:21:39Z","ServerKey":"us63"},{"ID":971,"VillageID":3474,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-01-30T08:34:54Z","ServerKey":"us63"},{"ID":972,"VillageID":1968,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-30T08:51:59Z","ServerKey":"us63"},{"ID":973,"VillageID":1521,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":6317,"CreatedAt":"2023-01-30T09:14:50Z","ServerKey":"us63"},{"ID":974,"VillageID":3344,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":848954662,"OldTribeID":53,"Points":3844,"CreatedAt":"2023-01-30T09:38:16Z","ServerKey":"us63"},{"ID":975,"VillageID":4012,"NewOwnerID":848954734,"NewTribeID":153,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-30T10:18:34Z","ServerKey":"us63"},{"ID":976,"VillageID":3426,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-01-30T10:30:00Z","ServerKey":"us63"},{"ID":977,"VillageID":2881,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-01-30T10:51:13Z","ServerKey":"us63"},{"ID":978,"VillageID":2503,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":848943908,"OldTribeID":91,"Points":3038,"CreatedAt":"2023-01-30T11:00:26Z","ServerKey":"us63"},{"ID":979,"VillageID":1244,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-30T11:02:21Z","ServerKey":"us63"},{"ID":980,"VillageID":3200,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":783322,"OldTribeID":5,"Points":3107,"CreatedAt":"2023-01-30T11:09:13Z","ServerKey":"us63"},{"ID":981,"VillageID":2989,"NewOwnerID":848909148,"NewTribeID":48,"OldOwnerID":514187,"OldTribeID":66,"Points":4165,"CreatedAt":"2023-01-30T11:26:49Z","ServerKey":"us63"},{"ID":982,"VillageID":3746,"NewOwnerID":848934532,"NewTribeID":138,"OldOwnerID":230548,"OldTribeID":0,"Points":3810,"CreatedAt":"2023-01-30T11:39:19Z","ServerKey":"us63"},{"ID":983,"VillageID":6491,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":56,"CreatedAt":"2023-01-30T11:51:54Z","ServerKey":"us63"},{"ID":984,"VillageID":3114,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-01-30T12:05:57Z","ServerKey":"us63"},{"ID":985,"VillageID":5694,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-01-30T12:09:39Z","ServerKey":"us63"},{"ID":986,"VillageID":1441,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-01-30T12:11:09Z","ServerKey":"us63"},{"ID":987,"VillageID":1441,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":183,"CreatedAt":"2023-01-30T12:11:09Z","ServerKey":"us63"},{"ID":989,"VillageID":803,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":613252,"OldTribeID":151,"Points":3178,"CreatedAt":"2023-01-30T12:12:01Z","ServerKey":"us63"},{"ID":990,"VillageID":2958,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-30T12:19:42Z","ServerKey":"us63"},{"ID":991,"VillageID":1121,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-01-30T13:29:00Z","ServerKey":"us63"},{"ID":992,"VillageID":1308,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-01-30T13:38:01Z","ServerKey":"us63"},{"ID":993,"VillageID":1219,"NewOwnerID":848937811,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":569,"CreatedAt":"2023-01-30T14:02:05Z","ServerKey":"us63"},{"ID":994,"VillageID":1698,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-30T14:03:43Z","ServerKey":"us63"},{"ID":995,"VillageID":1774,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848954138,"OldTribeID":0,"Points":2775,"CreatedAt":"2023-01-30T14:24:04Z","ServerKey":"us63"},{"ID":996,"VillageID":3067,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":409,"CreatedAt":"2023-01-30T14:34:01Z","ServerKey":"us63"},{"ID":997,"VillageID":6158,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-01-30T15:01:28Z","ServerKey":"us63"},{"ID":998,"VillageID":1556,"NewOwnerID":848952033,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-30T15:09:28Z","ServerKey":"us63"},{"ID":999,"VillageID":4015,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-30T15:18:22Z","ServerKey":"us63"},{"ID":1000,"VillageID":4015,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":170,"CreatedAt":"2023-01-30T15:18:23Z","ServerKey":"us63"},{"ID":1001,"VillageID":5105,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-01-30T15:50:34Z","ServerKey":"us63"},{"ID":1002,"VillageID":3783,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-30T15:53:58Z","ServerKey":"us63"},{"ID":1003,"VillageID":352,"NewOwnerID":848952032,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-30T15:56:47Z","ServerKey":"us63"},{"ID":1004,"VillageID":4402,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-30T15:56:51Z","ServerKey":"us63"},{"ID":1005,"VillageID":739,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-30T15:58:41Z","ServerKey":"us63"},{"ID":1006,"VillageID":2833,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-30T16:01:45Z","ServerKey":"us63"},{"ID":1007,"VillageID":911,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-30T16:02:56Z","ServerKey":"us63"},{"ID":1008,"VillageID":4015,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":171766,"OldTribeID":33,"Points":170,"CreatedAt":"2023-01-30T16:09:45Z","ServerKey":"us63"},{"ID":1009,"VillageID":2902,"NewOwnerID":848948640,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-30T16:22:06Z","ServerKey":"us63"},{"ID":1010,"VillageID":3,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954218,"OldTribeID":35,"Points":445,"CreatedAt":"2023-01-30T16:26:35Z","ServerKey":"us63"},{"ID":1011,"VillageID":2451,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-01-30T16:32:26Z","ServerKey":"us63"},{"ID":1012,"VillageID":2003,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":1418,"CreatedAt":"2023-01-30T16:37:45Z","ServerKey":"us63"},{"ID":1013,"VillageID":200,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-30T16:57:01Z","ServerKey":"us63"},{"ID":1014,"VillageID":752,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-30T16:57:58Z","ServerKey":"us63"},{"ID":1015,"VillageID":765,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-30T17:05:09Z","ServerKey":"us63"},{"ID":1016,"VillageID":2781,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-01-30T17:05:45Z","ServerKey":"us63"},{"ID":1017,"VillageID":3138,"NewOwnerID":848925398,"NewTribeID":42,"OldOwnerID":848943187,"OldTribeID":0,"Points":1015,"CreatedAt":"2023-01-30T17:09:00Z","ServerKey":"us63"},{"ID":1018,"VillageID":3138,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":848925398,"OldTribeID":42,"Points":991,"CreatedAt":"2023-01-30T17:10:13Z","ServerKey":"us63"},{"ID":1019,"VillageID":614,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-30T17:19:56Z","ServerKey":"us63"},{"ID":1020,"VillageID":1523,"NewOwnerID":701192,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-01-30T17:26:14Z","ServerKey":"us63"},{"ID":1021,"VillageID":2174,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-30T17:31:08Z","ServerKey":"us63"},{"ID":1022,"VillageID":1161,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":803,"CreatedAt":"2023-01-30T17:32:04Z","ServerKey":"us63"},{"ID":1023,"VillageID":1265,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":848943200,"OldTribeID":0,"Points":500,"CreatedAt":"2023-01-30T17:40:12Z","ServerKey":"us63"},{"ID":1024,"VillageID":51,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-30T17:51:41Z","ServerKey":"us63"},{"ID":1025,"VillageID":56,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848951975,"OldTribeID":0,"Points":1158,"CreatedAt":"2023-01-30T18:00:18Z","ServerKey":"us63"},{"ID":1026,"VillageID":938,"NewOwnerID":701261,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-01-30T18:11:06Z","ServerKey":"us63"},{"ID":1027,"VillageID":923,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-01-30T18:13:03Z","ServerKey":"us63"},{"ID":1028,"VillageID":923,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":212,"CreatedAt":"2023-01-30T18:13:03Z","ServerKey":"us63"},{"ID":1029,"VillageID":323,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":783836,"OldTribeID":0,"Points":4794,"CreatedAt":"2023-01-30T18:16:31Z","ServerKey":"us63"},{"ID":1030,"VillageID":101,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":298720,"OldTribeID":5,"Points":1885,"CreatedAt":"2023-01-30T18:19:19Z","ServerKey":"us63"},{"ID":1031,"VillageID":1572,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-30T18:21:19Z","ServerKey":"us63"},{"ID":1032,"VillageID":3134,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-30T18:21:26Z","ServerKey":"us63"},{"ID":1033,"VillageID":3889,"NewOwnerID":767834,"NewTribeID":105,"OldOwnerID":848952994,"OldTribeID":66,"Points":2023,"CreatedAt":"2023-01-30T18:23:28Z","ServerKey":"us63"},{"ID":1034,"VillageID":687,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-01-30T18:35:46Z","ServerKey":"us63"},{"ID":1035,"VillageID":977,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":2033,"CreatedAt":"2023-01-30T18:47:36Z","ServerKey":"us63"},{"ID":1036,"VillageID":3186,"NewOwnerID":848909148,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-01-30T18:52:36Z","ServerKey":"us63"},{"ID":1037,"VillageID":1648,"NewOwnerID":848907165,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-30T19:01:28Z","ServerKey":"us63"},{"ID":1038,"VillageID":1430,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-30T19:04:37Z","ServerKey":"us63"},{"ID":1039,"VillageID":2985,"NewOwnerID":848954008,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-01-30T19:10:17Z","ServerKey":"us63"},{"ID":1040,"VillageID":2512,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-30T19:12:35Z","ServerKey":"us63"},{"ID":1041,"VillageID":3256,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-30T19:23:07Z","ServerKey":"us63"},{"ID":1042,"VillageID":2264,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1432,"CreatedAt":"2023-01-30T19:46:08Z","ServerKey":"us63"},{"ID":1043,"VillageID":462,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-30T19:46:17Z","ServerKey":"us63"},{"ID":1044,"VillageID":2901,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":848952579,"OldTribeID":53,"Points":1032,"CreatedAt":"2023-01-30T20:01:24Z","ServerKey":"us63"},{"ID":1045,"VillageID":5127,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-01-30T20:05:35Z","ServerKey":"us63"},{"ID":1046,"VillageID":5480,"NewOwnerID":848940612,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-01-30T20:18:28Z","ServerKey":"us63"},{"ID":1047,"VillageID":2155,"NewOwnerID":848954361,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-30T20:30:30Z","ServerKey":"us63"},{"ID":1048,"VillageID":2885,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":848954117,"OldTribeID":0,"Points":5115,"CreatedAt":"2023-01-30T20:41:09Z","ServerKey":"us63"},{"ID":1049,"VillageID":3024,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-30T20:44:38Z","ServerKey":"us63"},{"ID":1050,"VillageID":443,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848911019,"OldTribeID":12,"Points":1462,"CreatedAt":"2023-01-30T20:46:42Z","ServerKey":"us63"},{"ID":1051,"VillageID":3306,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-01-30T20:57:01Z","ServerKey":"us63"},{"ID":1052,"VillageID":646,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":848951574,"OldTribeID":54,"Points":2207,"CreatedAt":"2023-01-30T20:59:09Z","ServerKey":"us63"},{"ID":1053,"VillageID":4745,"NewOwnerID":848952918,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-30T20:59:42Z","ServerKey":"us63"},{"ID":1054,"VillageID":2211,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":654379,"OldTribeID":64,"Points":1246,"CreatedAt":"2023-01-30T21:13:50Z","ServerKey":"us63"},{"ID":1055,"VillageID":1903,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-30T21:16:17Z","ServerKey":"us63"},{"ID":1056,"VillageID":3725,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":542,"CreatedAt":"2023-01-30T21:44:32Z","ServerKey":"us63"},{"ID":1057,"VillageID":1394,"NewOwnerID":848954096,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-01-30T21:45:41Z","ServerKey":"us63"},{"ID":1058,"VillageID":3725,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848951308,"OldTribeID":85,"Points":518,"CreatedAt":"2023-01-30T21:48:41Z","ServerKey":"us63"},{"ID":1059,"VillageID":6049,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-01-30T21:49:58Z","ServerKey":"us63"},{"ID":1060,"VillageID":640,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-30T21:50:47Z","ServerKey":"us63"},{"ID":1061,"VillageID":1735,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-01-30T22:15:03Z","ServerKey":"us63"},{"ID":1062,"VillageID":1307,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-30T22:22:23Z","ServerKey":"us63"},{"ID":1063,"VillageID":425,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-01-30T22:24:25Z","ServerKey":"us63"},{"ID":1064,"VillageID":4153,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-01-30T22:26:48Z","ServerKey":"us63"},{"ID":1065,"VillageID":1200,"NewOwnerID":848880663,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-30T22:32:20Z","ServerKey":"us63"},{"ID":1066,"VillageID":417,"NewOwnerID":848881936,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-30T22:41:35Z","ServerKey":"us63"},{"ID":1067,"VillageID":575,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-30T22:49:41Z","ServerKey":"us63"},{"ID":1068,"VillageID":138,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-01-30T23:09:39Z","ServerKey":"us63"},{"ID":1069,"VillageID":3746,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848934532,"OldTribeID":138,"Points":4022,"CreatedAt":"2023-01-30T23:16:25Z","ServerKey":"us63"},{"ID":1070,"VillageID":3746,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":848951632,"OldTribeID":105,"Points":4022,"CreatedAt":"2023-01-30T23:16:25Z","ServerKey":"us63"},{"ID":1071,"VillageID":1272,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":665,"CreatedAt":"2023-01-30T23:18:16Z","ServerKey":"us63"},{"ID":1072,"VillageID":407,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-01-30T23:48:44Z","ServerKey":"us63"},{"ID":1073,"VillageID":996,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-31T00:09:41Z","ServerKey":"us63"},{"ID":1074,"VillageID":3950,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T00:16:43Z","ServerKey":"us63"},{"ID":1075,"VillageID":3455,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":58945,"OldTribeID":0,"Points":316,"CreatedAt":"2023-01-31T00:17:37Z","ServerKey":"us63"},{"ID":1076,"VillageID":1069,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-01-31T00:52:25Z","ServerKey":"us63"},{"ID":1077,"VillageID":1231,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T01:03:25Z","ServerKey":"us63"},{"ID":1078,"VillageID":4291,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T01:13:35Z","ServerKey":"us63"},{"ID":1079,"VillageID":3712,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-01-31T01:19:48Z","ServerKey":"us63"},{"ID":1080,"VillageID":2105,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-01-31T01:29:12Z","ServerKey":"us63"},{"ID":1081,"VillageID":4725,"NewOwnerID":848951632,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-31T01:42:05Z","ServerKey":"us63"},{"ID":1082,"VillageID":4129,"NewOwnerID":775063,"NewTribeID":106,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-31T01:45:33Z","ServerKey":"us63"},{"ID":1083,"VillageID":633,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-01-31T02:10:30Z","ServerKey":"us63"},{"ID":1084,"VillageID":3570,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T02:10:59Z","ServerKey":"us63"},{"ID":1085,"VillageID":1315,"NewOwnerID":751946,"NewTribeID":158,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-01-31T02:11:09Z","ServerKey":"us63"},{"ID":1086,"VillageID":3167,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T02:15:23Z","ServerKey":"us63"},{"ID":1087,"VillageID":10,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":523530,"OldTribeID":1,"Points":2675,"CreatedAt":"2023-01-31T02:27:02Z","ServerKey":"us63"},{"ID":1088,"VillageID":3978,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-01-31T02:30:42Z","ServerKey":"us63"},{"ID":1089,"VillageID":2822,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-01-31T02:39:53Z","ServerKey":"us63"},{"ID":1090,"VillageID":5641,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":848930230,"OldTribeID":152,"Points":2411,"CreatedAt":"2023-01-31T03:30:04Z","ServerKey":"us63"},{"ID":1091,"VillageID":1117,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848937396,"OldTribeID":5,"Points":2065,"CreatedAt":"2023-01-31T03:32:43Z","ServerKey":"us63"},{"ID":1092,"VillageID":1025,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":526,"CreatedAt":"2023-01-31T03:39:56Z","ServerKey":"us63"},{"ID":1093,"VillageID":196,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-01-31T03:44:28Z","ServerKey":"us63"},{"ID":1094,"VillageID":104,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":461453,"OldTribeID":5,"Points":3355,"CreatedAt":"2023-01-31T03:50:20Z","ServerKey":"us63"},{"ID":1095,"VillageID":254,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-01-31T03:56:54Z","ServerKey":"us63"},{"ID":1096,"VillageID":1170,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-31T04:12:41Z","ServerKey":"us63"},{"ID":1097,"VillageID":305,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T04:15:55Z","ServerKey":"us63"},{"ID":1098,"VillageID":1489,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-31T04:24:09Z","ServerKey":"us63"},{"ID":1099,"VillageID":1534,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T04:40:53Z","ServerKey":"us63"},{"ID":1100,"VillageID":712,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-31T04:51:08Z","ServerKey":"us63"},{"ID":1101,"VillageID":4974,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848953565,"OldTribeID":0,"Points":1221,"CreatedAt":"2023-01-31T04:55:45Z","ServerKey":"us63"},{"ID":1102,"VillageID":4251,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-01-31T05:08:30Z","ServerKey":"us63"},{"ID":1103,"VillageID":4251,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":616498,"OldTribeID":48,"Points":122,"CreatedAt":"2023-01-31T05:08:30Z","ServerKey":"us63"},{"ID":1104,"VillageID":144,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-01-31T05:10:34Z","ServerKey":"us63"},{"ID":1105,"VillageID":1004,"NewOwnerID":795044,"NewTribeID":64,"OldOwnerID":848897316,"OldTribeID":0,"Points":1327,"CreatedAt":"2023-01-31T05:16:21Z","ServerKey":"us63"},{"ID":1106,"VillageID":1610,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-01-31T05:21:01Z","ServerKey":"us63"},{"ID":1107,"VillageID":1610,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":125,"CreatedAt":"2023-01-31T05:21:02Z","ServerKey":"us63"},{"ID":1108,"VillageID":755,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T05:22:54Z","ServerKey":"us63"},{"ID":1109,"VillageID":670,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-01-31T05:34:48Z","ServerKey":"us63"},{"ID":1110,"VillageID":3761,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T05:38:00Z","ServerKey":"us63"},{"ID":1111,"VillageID":814,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":654379,"OldTribeID":64,"Points":4795,"CreatedAt":"2023-01-31T05:50:28Z","ServerKey":"us63"},{"ID":1112,"VillageID":1006,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":701192,"OldTribeID":25,"Points":1155,"CreatedAt":"2023-01-31T05:53:13Z","ServerKey":"us63"},{"ID":1113,"VillageID":588,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848951434,"OldTribeID":25,"Points":5589,"CreatedAt":"2023-01-31T05:53:14Z","ServerKey":"us63"},{"ID":1114,"VillageID":482,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":701192,"OldTribeID":25,"Points":4279,"CreatedAt":"2023-01-31T05:53:14Z","ServerKey":"us63"},{"ID":1115,"VillageID":1588,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T06:04:09Z","ServerKey":"us63"},{"ID":1116,"VillageID":262,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-01-31T06:05:59Z","ServerKey":"us63"},{"ID":1117,"VillageID":1799,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-31T06:11:10Z","ServerKey":"us63"},{"ID":1118,"VillageID":1953,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-01-31T06:11:40Z","ServerKey":"us63"},{"ID":1119,"VillageID":5061,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-01-31T06:25:20Z","ServerKey":"us63"},{"ID":1120,"VillageID":1710,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-01-31T06:53:50Z","ServerKey":"us63"},{"ID":1121,"VillageID":3581,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":727631,"OldTribeID":42,"Points":5029,"CreatedAt":"2023-01-31T07:28:48Z","ServerKey":"us63"},{"ID":1122,"VillageID":3581,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":780339,"OldTribeID":74,"Points":5029,"CreatedAt":"2023-01-31T07:28:48Z","ServerKey":"us63"},{"ID":1123,"VillageID":2331,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-01-31T07:35:27Z","ServerKey":"us63"},{"ID":1124,"VillageID":464,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-01-31T07:49:53Z","ServerKey":"us63"},{"ID":1125,"VillageID":4495,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":302611,"OldTribeID":97,"Points":3421,"CreatedAt":"2023-01-31T07:50:42Z","ServerKey":"us63"},{"ID":1126,"VillageID":1278,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-01-31T08:03:56Z","ServerKey":"us63"},{"ID":1127,"VillageID":3958,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":848954744,"OldTribeID":114,"Points":3533,"CreatedAt":"2023-01-31T08:11:03Z","ServerKey":"us63"},{"ID":1128,"VillageID":2776,"NewOwnerID":848934532,"NewTribeID":138,"OldOwnerID":848940915,"OldTribeID":150,"Points":3811,"CreatedAt":"2023-01-31T08:20:18Z","ServerKey":"us63"},{"ID":1129,"VillageID":2418,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":683,"CreatedAt":"2023-01-31T08:31:17Z","ServerKey":"us63"},{"ID":1130,"VillageID":33,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848951977,"OldTribeID":41,"Points":2406,"CreatedAt":"2023-01-31T08:39:49Z","ServerKey":"us63"},{"ID":1131,"VillageID":1924,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-31T08:48:20Z","ServerKey":"us63"},{"ID":1132,"VillageID":4930,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-01-31T08:58:46Z","ServerKey":"us63"},{"ID":1133,"VillageID":910,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-01-31T09:23:32Z","ServerKey":"us63"},{"ID":1134,"VillageID":2367,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":654379,"OldTribeID":64,"Points":715,"CreatedAt":"2023-01-31T09:48:42Z","ServerKey":"us63"},{"ID":1135,"VillageID":1091,"NewOwnerID":848953956,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T09:56:09Z","ServerKey":"us63"},{"ID":1136,"VillageID":2934,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-01-31T10:03:43Z","ServerKey":"us63"},{"ID":1137,"VillageID":2935,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-01-31T10:36:08Z","ServerKey":"us63"},{"ID":1138,"VillageID":2769,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-31T10:36:44Z","ServerKey":"us63"},{"ID":1139,"VillageID":1251,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-01-31T10:42:01Z","ServerKey":"us63"},{"ID":1140,"VillageID":6220,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":619293,"OldTribeID":0,"Points":688,"CreatedAt":"2023-01-31T10:49:20Z","ServerKey":"us63"},{"ID":1141,"VillageID":2244,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-01-31T11:06:45Z","ServerKey":"us63"},{"ID":1142,"VillageID":2062,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":848954138,"OldTribeID":0,"Points":1151,"CreatedAt":"2023-01-31T11:14:06Z","ServerKey":"us63"},{"ID":1143,"VillageID":1633,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-01-31T11:15:22Z","ServerKey":"us63"},{"ID":1144,"VillageID":431,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-01-31T11:20:51Z","ServerKey":"us63"},{"ID":1145,"VillageID":1002,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-31T11:21:08Z","ServerKey":"us63"},{"ID":1146,"VillageID":2357,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-31T11:25:00Z","ServerKey":"us63"},{"ID":1147,"VillageID":4159,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-01-31T11:26:40Z","ServerKey":"us63"},{"ID":1148,"VillageID":6880,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":40,"CreatedAt":"2023-01-31T11:40:08Z","ServerKey":"us63"},{"ID":1149,"VillageID":795,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-01-31T11:52:27Z","ServerKey":"us63"},{"ID":1150,"VillageID":1030,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-01-31T11:56:45Z","ServerKey":"us63"},{"ID":1151,"VillageID":754,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":485721,"OldTribeID":50,"Points":4460,"CreatedAt":"2023-01-31T11:57:12Z","ServerKey":"us63"},{"ID":1152,"VillageID":1281,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-01-31T12:09:15Z","ServerKey":"us63"},{"ID":1153,"VillageID":1325,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":867,"CreatedAt":"2023-01-31T12:10:52Z","ServerKey":"us63"},{"ID":1154,"VillageID":5380,"NewOwnerID":653971,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-01-31T12:30:31Z","ServerKey":"us63"},{"ID":1155,"VillageID":1676,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-31T12:38:44Z","ServerKey":"us63"},{"ID":1156,"VillageID":922,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-01-31T13:22:35Z","ServerKey":"us63"},{"ID":1157,"VillageID":83,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-01-31T13:39:17Z","ServerKey":"us63"},{"ID":1158,"VillageID":165,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-01-31T13:47:29Z","ServerKey":"us63"},{"ID":1159,"VillageID":3870,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-01-31T14:01:13Z","ServerKey":"us63"},{"ID":1160,"VillageID":4693,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-31T14:05:45Z","ServerKey":"us63"},{"ID":1161,"VillageID":1575,"NewOwnerID":848951306,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-01-31T14:17:20Z","ServerKey":"us63"},{"ID":1162,"VillageID":2283,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848940741,"OldTribeID":0,"Points":431,"CreatedAt":"2023-01-31T14:25:53Z","ServerKey":"us63"},{"ID":1163,"VillageID":4768,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-31T14:58:39Z","ServerKey":"us63"},{"ID":1164,"VillageID":1683,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-01-31T15:01:01Z","ServerKey":"us63"},{"ID":1165,"VillageID":3018,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-01-31T15:24:07Z","ServerKey":"us63"},{"ID":1166,"VillageID":1691,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-01-31T15:24:39Z","ServerKey":"us63"},{"ID":1167,"VillageID":88,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-01-31T15:28:45Z","ServerKey":"us63"},{"ID":1168,"VillageID":1014,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-31T15:29:21Z","ServerKey":"us63"},{"ID":1169,"VillageID":227,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-01-31T15:51:18Z","ServerKey":"us63"},{"ID":1170,"VillageID":1715,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-01-31T15:53:31Z","ServerKey":"us63"},{"ID":1171,"VillageID":12,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-01-31T16:20:32Z","ServerKey":"us63"},{"ID":1172,"VillageID":2707,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-31T16:32:55Z","ServerKey":"us63"},{"ID":1173,"VillageID":3261,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":9370,"CreatedAt":"2023-01-31T16:35:57Z","ServerKey":"us63"},{"ID":1174,"VillageID":4428,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-01-31T16:40:25Z","ServerKey":"us63"},{"ID":1175,"VillageID":3047,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-31T16:53:41Z","ServerKey":"us63"},{"ID":1176,"VillageID":1591,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":848952957,"OldTribeID":41,"Points":3619,"CreatedAt":"2023-01-31T16:53:49Z","ServerKey":"us63"},{"ID":1177,"VillageID":3052,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-01-31T16:58:04Z","ServerKey":"us63"},{"ID":1178,"VillageID":638,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1217,"CreatedAt":"2023-01-31T16:59:20Z","ServerKey":"us63"},{"ID":1179,"VillageID":3161,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T17:18:40Z","ServerKey":"us63"},{"ID":1180,"VillageID":485,"NewOwnerID":744645,"NewTribeID":30,"OldOwnerID":701261,"OldTribeID":25,"Points":3364,"CreatedAt":"2023-01-31T17:21:32Z","ServerKey":"us63"},{"ID":1181,"VillageID":83,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":769838,"OldTribeID":6,"Points":212,"CreatedAt":"2023-01-31T17:25:33Z","ServerKey":"us63"},{"ID":1182,"VillageID":83,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":212,"CreatedAt":"2023-01-31T17:25:33Z","ServerKey":"us63"},{"ID":1184,"VillageID":1253,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-01-31T17:38:20Z","ServerKey":"us63"},{"ID":1185,"VillageID":3044,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-01-31T18:11:20Z","ServerKey":"us63"},{"ID":1186,"VillageID":4726,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":848954869,"OldTribeID":0,"Points":1202,"CreatedAt":"2023-01-31T18:11:54Z","ServerKey":"us63"},{"ID":1187,"VillageID":6029,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-01-31T18:23:40Z","ServerKey":"us63"},{"ID":1188,"VillageID":999,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-01-31T18:28:18Z","ServerKey":"us63"},{"ID":1189,"VillageID":2776,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":3811,"CreatedAt":"2023-01-31T18:28:29Z","ServerKey":"us63"},{"ID":1190,"VillageID":2750,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-01-31T18:42:42Z","ServerKey":"us63"},{"ID":1191,"VillageID":1683,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":552694,"OldTribeID":48,"Points":181,"CreatedAt":"2023-01-31T18:51:44Z","ServerKey":"us63"},{"ID":1192,"VillageID":2461,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-01-31T19:06:41Z","ServerKey":"us63"},{"ID":1193,"VillageID":469,"NewOwnerID":160994,"NewTribeID":24,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-31T19:22:16Z","ServerKey":"us63"},{"ID":1194,"VillageID":4187,"NewOwnerID":848953962,"NewTribeID":27,"OldOwnerID":848954781,"OldTribeID":106,"Points":2617,"CreatedAt":"2023-01-31T19:25:17Z","ServerKey":"us63"},{"ID":1195,"VillageID":1358,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848948022,"OldTribeID":15,"Points":2042,"CreatedAt":"2023-01-31T19:30:07Z","ServerKey":"us63"},{"ID":1196,"VillageID":2516,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-01-31T19:53:04Z","ServerKey":"us63"},{"ID":1197,"VillageID":3231,"NewOwnerID":848953207,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-01-31T20:01:13Z","ServerKey":"us63"},{"ID":1198,"VillageID":2764,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-01-31T20:04:01Z","ServerKey":"us63"},{"ID":1199,"VillageID":311,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":754627,"OldTribeID":22,"Points":2271,"CreatedAt":"2023-01-31T20:06:44Z","ServerKey":"us63"},{"ID":1200,"VillageID":7051,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-01-31T20:07:18Z","ServerKey":"us63"},{"ID":1201,"VillageID":1171,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":803,"CreatedAt":"2023-01-31T20:12:35Z","ServerKey":"us63"},{"ID":1202,"VillageID":952,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-01-31T20:23:14Z","ServerKey":"us63"},{"ID":1203,"VillageID":1772,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-01-31T20:26:17Z","ServerKey":"us63"},{"ID":1204,"VillageID":2890,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-01-31T20:29:16Z","ServerKey":"us63"},{"ID":1205,"VillageID":4857,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-01-31T20:36:29Z","ServerKey":"us63"},{"ID":1206,"VillageID":4225,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-01-31T20:36:49Z","ServerKey":"us63"},{"ID":1207,"VillageID":4010,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":763018,"OldTribeID":172,"Points":2973,"CreatedAt":"2023-01-31T21:06:07Z","ServerKey":"us63"},{"ID":1208,"VillageID":1434,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":485721,"OldTribeID":50,"Points":697,"CreatedAt":"2023-01-31T21:10:54Z","ServerKey":"us63"},{"ID":1209,"VillageID":3635,"NewOwnerID":848954719,"NewTribeID":0,"OldOwnerID":848951665,"OldTribeID":0,"Points":181,"CreatedAt":"2023-01-31T21:30:42Z","ServerKey":"us63"},{"ID":1210,"VillageID":3955,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":848945448,"OldTribeID":22,"Points":3434,"CreatedAt":"2023-01-31T21:38:08Z","ServerKey":"us63"},{"ID":1211,"VillageID":1496,"NewOwnerID":848910736,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-31T21:50:56Z","ServerKey":"us63"},{"ID":1212,"VillageID":3343,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-01-31T21:58:01Z","ServerKey":"us63"},{"ID":1213,"VillageID":2718,"NewOwnerID":848949493,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-01-31T21:59:38Z","ServerKey":"us63"},{"ID":1214,"VillageID":1507,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-01-31T22:19:28Z","ServerKey":"us63"},{"ID":1215,"VillageID":309,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-01-31T22:31:30Z","ServerKey":"us63"},{"ID":1216,"VillageID":5860,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-01-31T22:33:45Z","ServerKey":"us63"},{"ID":1217,"VillageID":1574,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-01-31T22:39:10Z","ServerKey":"us63"},{"ID":1218,"VillageID":1328,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-01-31T22:50:25Z","ServerKey":"us63"},{"ID":1219,"VillageID":2803,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-01-31T22:57:59Z","ServerKey":"us63"},{"ID":1220,"VillageID":4045,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-01-31T23:00:56Z","ServerKey":"us63"},{"ID":1221,"VillageID":3108,"NewOwnerID":741238,"NewTribeID":0,"OldOwnerID":755590,"OldTribeID":83,"Points":2806,"CreatedAt":"2023-01-31T23:05:19Z","ServerKey":"us63"},{"ID":1222,"VillageID":3193,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-01-31T23:06:45Z","ServerKey":"us63"},{"ID":1223,"VillageID":2872,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":848953938,"OldTribeID":0,"Points":2615,"CreatedAt":"2023-01-31T23:06:57Z","ServerKey":"us63"},{"ID":1224,"VillageID":3165,"NewOwnerID":848953270,"NewTribeID":0,"OldOwnerID":848943225,"OldTribeID":0,"Points":750,"CreatedAt":"2023-01-31T23:24:32Z","ServerKey":"us63"},{"ID":1225,"VillageID":2770,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-01-31T23:48:28Z","ServerKey":"us63"},{"ID":1226,"VillageID":813,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-01-31T23:57:29Z","ServerKey":"us63"},{"ID":1227,"VillageID":1305,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-01-31T23:57:36Z","ServerKey":"us63"},{"ID":1228,"VillageID":488,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848951321,"OldTribeID":25,"Points":4449,"CreatedAt":"2023-02-01T00:03:05Z","ServerKey":"us63"},{"ID":1229,"VillageID":488,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":848949948,"OldTribeID":30,"Points":4203,"CreatedAt":"2023-02-01T00:03:06Z","ServerKey":"us63"},{"ID":1230,"VillageID":272,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-01T00:08:10Z","ServerKey":"us63"},{"ID":1231,"VillageID":4567,"NewOwnerID":748168,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-01T00:12:02Z","ServerKey":"us63"},{"ID":1232,"VillageID":31,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-01T00:27:10Z","ServerKey":"us63"},{"ID":1233,"VillageID":7010,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":47,"CreatedAt":"2023-02-01T00:37:23Z","ServerKey":"us63"},{"ID":1234,"VillageID":1478,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848951595,"OldTribeID":0,"Points":1974,"CreatedAt":"2023-02-01T00:50:03Z","ServerKey":"us63"},{"ID":1235,"VillageID":4540,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848952918,"OldTribeID":172,"Points":2876,"CreatedAt":"2023-02-01T01:01:30Z","ServerKey":"us63"},{"ID":1236,"VillageID":1053,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-01T01:27:49Z","ServerKey":"us63"},{"ID":1237,"VillageID":316,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":3085,"CreatedAt":"2023-02-01T01:34:09Z","ServerKey":"us63"},{"ID":1238,"VillageID":847,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":2590,"CreatedAt":"2023-02-01T01:36:00Z","ServerKey":"us63"},{"ID":1239,"VillageID":847,"NewOwnerID":751946,"NewTribeID":158,"OldOwnerID":848954428,"OldTribeID":20,"Points":2556,"CreatedAt":"2023-02-01T01:36:02Z","ServerKey":"us63"},{"ID":1240,"VillageID":864,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":7290,"CreatedAt":"2023-02-01T01:36:09Z","ServerKey":"us63"},{"ID":1241,"VillageID":1291,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":2392,"CreatedAt":"2023-02-01T01:36:24Z","ServerKey":"us63"},{"ID":1242,"VillageID":1139,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-01T01:40:31Z","ServerKey":"us63"},{"ID":1243,"VillageID":1065,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848925814,"OldTribeID":88,"Points":1481,"CreatedAt":"2023-02-01T02:03:00Z","ServerKey":"us63"},{"ID":1244,"VillageID":1407,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-01T02:16:59Z","ServerKey":"us63"},{"ID":1245,"VillageID":742,"NewOwnerID":848952033,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-01T02:19:20Z","ServerKey":"us63"},{"ID":1246,"VillageID":312,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":1633,"CreatedAt":"2023-02-01T02:20:15Z","ServerKey":"us63"},{"ID":1247,"VillageID":4000,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":565794,"OldTribeID":97,"Points":3408,"CreatedAt":"2023-02-01T02:21:57Z","ServerKey":"us63"},{"ID":1248,"VillageID":4368,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848943280,"OldTribeID":0,"Points":1137,"CreatedAt":"2023-02-01T02:34:12Z","ServerKey":"us63"},{"ID":1249,"VillageID":1275,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-01T02:45:55Z","ServerKey":"us63"},{"ID":1250,"VillageID":4392,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-02-01T02:46:18Z","ServerKey":"us63"},{"ID":1251,"VillageID":5864,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-01T02:57:30Z","ServerKey":"us63"},{"ID":1252,"VillageID":454,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-01T03:00:33Z","ServerKey":"us63"},{"ID":1253,"VillageID":4074,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-01T03:01:23Z","ServerKey":"us63"},{"ID":1254,"VillageID":3341,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":548,"CreatedAt":"2023-02-01T03:13:43Z","ServerKey":"us63"},{"ID":1255,"VillageID":3235,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-01T03:18:36Z","ServerKey":"us63"},{"ID":1256,"VillageID":296,"NewOwnerID":321370,"NewTribeID":69,"OldOwnerID":681314,"OldTribeID":177,"Points":7297,"CreatedAt":"2023-02-01T03:25:36Z","ServerKey":"us63"},{"ID":1257,"VillageID":468,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":448111,"OldTribeID":166,"Points":2683,"CreatedAt":"2023-02-01T03:27:33Z","ServerKey":"us63"},{"ID":1258,"VillageID":4737,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-01T03:29:51Z","ServerKey":"us63"},{"ID":1259,"VillageID":1975,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-01T03:38:25Z","ServerKey":"us63"},{"ID":1260,"VillageID":2040,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-01T03:41:50Z","ServerKey":"us63"},{"ID":1261,"VillageID":1370,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-01T03:58:58Z","ServerKey":"us63"},{"ID":1262,"VillageID":2102,"NewOwnerID":848941404,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-01T04:01:01Z","ServerKey":"us63"},{"ID":1263,"VillageID":2316,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":848940748,"OldTribeID":0,"Points":480,"CreatedAt":"2023-02-01T04:21:59Z","ServerKey":"us63"},{"ID":1264,"VillageID":2563,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":577132,"OldTribeID":12,"Points":3191,"CreatedAt":"2023-02-01T04:26:00Z","ServerKey":"us63"},{"ID":1265,"VillageID":678,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-01T04:29:17Z","ServerKey":"us63"},{"ID":1266,"VillageID":3964,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-01T04:33:57Z","ServerKey":"us63"},{"ID":1267,"VillageID":5592,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-01T04:39:54Z","ServerKey":"us63"},{"ID":1268,"VillageID":1950,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":3070,"CreatedAt":"2023-02-01T04:41:36Z","ServerKey":"us63"},{"ID":1269,"VillageID":1786,"NewOwnerID":848949948,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-01T04:52:33Z","ServerKey":"us63"},{"ID":1270,"VillageID":2744,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-01T04:53:23Z","ServerKey":"us63"},{"ID":1271,"VillageID":1965,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-01T04:54:15Z","ServerKey":"us63"},{"ID":1272,"VillageID":847,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":751946,"OldTribeID":158,"Points":2576,"CreatedAt":"2023-02-01T04:56:41Z","ServerKey":"us63"},{"ID":1273,"VillageID":847,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848951549,"OldTribeID":20,"Points":2576,"CreatedAt":"2023-02-01T04:56:42Z","ServerKey":"us63"},{"ID":1274,"VillageID":711,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-01T04:59:04Z","ServerKey":"us63"},{"ID":1275,"VillageID":3831,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-01T05:04:16Z","ServerKey":"us63"},{"ID":1276,"VillageID":1046,"NewOwnerID":848894442,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-01T05:12:44Z","ServerKey":"us63"},{"ID":1277,"VillageID":597,"NewOwnerID":755121,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-02-01T05:29:54Z","ServerKey":"us63"},{"ID":1278,"VillageID":1517,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-01T05:33:13Z","ServerKey":"us63"},{"ID":1279,"VillageID":1848,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-01T05:33:36Z","ServerKey":"us63"},{"ID":1280,"VillageID":5836,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-01T05:53:18Z","ServerKey":"us63"},{"ID":1281,"VillageID":1815,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-01T06:00:04Z","ServerKey":"us63"},{"ID":1282,"VillageID":3561,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-01T06:29:34Z","ServerKey":"us63"},{"ID":1283,"VillageID":5488,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":848951105,"OldTribeID":136,"Points":1401,"CreatedAt":"2023-02-01T06:40:17Z","ServerKey":"us63"},{"ID":1284,"VillageID":863,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-01T06:45:11Z","ServerKey":"us63"},{"ID":1285,"VillageID":3164,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-01T06:53:55Z","ServerKey":"us63"},{"ID":1286,"VillageID":2214,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":990,"CreatedAt":"2023-02-01T07:04:45Z","ServerKey":"us63"},{"ID":1287,"VillageID":86,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-01T07:11:50Z","ServerKey":"us63"},{"ID":1288,"VillageID":2826,"NewOwnerID":291491,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-01T07:45:09Z","ServerKey":"us63"},{"ID":1289,"VillageID":3019,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":848943430,"OldTribeID":0,"Points":461,"CreatedAt":"2023-02-01T07:57:48Z","ServerKey":"us63"},{"ID":1290,"VillageID":676,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8792,"CreatedAt":"2023-02-01T08:00:01Z","ServerKey":"us63"},{"ID":1291,"VillageID":679,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":3324,"CreatedAt":"2023-02-01T08:00:03Z","ServerKey":"us63"},{"ID":1292,"VillageID":2077,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-01T08:10:00Z","ServerKey":"us63"},{"ID":1293,"VillageID":222,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-01T08:18:19Z","ServerKey":"us63"},{"ID":1294,"VillageID":2749,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8148,"CreatedAt":"2023-02-01T08:22:35Z","ServerKey":"us63"},{"ID":1295,"VillageID":955,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-01T08:24:07Z","ServerKey":"us63"},{"ID":1296,"VillageID":3323,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":541,"CreatedAt":"2023-02-01T08:34:50Z","ServerKey":"us63"},{"ID":1297,"VillageID":1237,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":585,"CreatedAt":"2023-02-01T08:44:42Z","ServerKey":"us63"},{"ID":1298,"VillageID":1946,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-01T08:51:00Z","ServerKey":"us63"},{"ID":1299,"VillageID":325,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-01T08:55:00Z","ServerKey":"us63"},{"ID":1300,"VillageID":5827,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-01T09:18:57Z","ServerKey":"us63"},{"ID":1301,"VillageID":918,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8356,"CreatedAt":"2023-02-01T09:31:51Z","ServerKey":"us63"},{"ID":1302,"VillageID":5528,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-01T09:38:52Z","ServerKey":"us63"},{"ID":1303,"VillageID":2204,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-01T09:54:08Z","ServerKey":"us63"},{"ID":1304,"VillageID":1275,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":780354,"OldTribeID":11,"Points":218,"CreatedAt":"2023-02-01T10:02:40Z","ServerKey":"us63"},{"ID":1305,"VillageID":1275,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":218,"CreatedAt":"2023-02-01T10:02:40Z","ServerKey":"us63"},{"ID":1307,"VillageID":3326,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-01T10:15:21Z","ServerKey":"us63"},{"ID":1308,"VillageID":1793,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":3634,"CreatedAt":"2023-02-01T10:20:30Z","ServerKey":"us63"},{"ID":1309,"VillageID":1154,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1009,"CreatedAt":"2023-02-01T10:57:18Z","ServerKey":"us63"},{"ID":1310,"VillageID":64,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-01T10:59:09Z","ServerKey":"us63"},{"ID":1311,"VillageID":3962,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":775063,"OldTribeID":106,"Points":3191,"CreatedAt":"2023-02-01T11:00:01Z","ServerKey":"us63"},{"ID":1312,"VillageID":3962,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":785871,"OldTribeID":0,"Points":3191,"CreatedAt":"2023-02-01T11:00:01Z","ServerKey":"us63"},{"ID":1313,"VillageID":877,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-01T11:03:05Z","ServerKey":"us63"},{"ID":1314,"VillageID":1275,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":151032,"OldTribeID":20,"Points":194,"CreatedAt":"2023-02-01T11:14:01Z","ServerKey":"us63"},{"ID":1315,"VillageID":7244,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-01T11:14:02Z","ServerKey":"us63"},{"ID":1316,"VillageID":340,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-01T11:16:36Z","ServerKey":"us63"},{"ID":1317,"VillageID":781,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":5356,"CreatedAt":"2023-02-01T11:34:36Z","ServerKey":"us63"},{"ID":1318,"VillageID":802,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-01T12:06:21Z","ServerKey":"us63"},{"ID":1319,"VillageID":3140,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-01T12:07:52Z","ServerKey":"us63"},{"ID":1320,"VillageID":1787,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848954221,"OldTribeID":105,"Points":4893,"CreatedAt":"2023-02-01T12:16:22Z","ServerKey":"us63"},{"ID":1321,"VillageID":2567,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-01T12:50:00Z","ServerKey":"us63"},{"ID":1322,"VillageID":1635,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-01T12:54:37Z","ServerKey":"us63"},{"ID":1323,"VillageID":1566,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-01T13:31:37Z","ServerKey":"us63"},{"ID":1324,"VillageID":4771,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-01T13:36:09Z","ServerKey":"us63"},{"ID":1325,"VillageID":399,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-01T13:40:40Z","ServerKey":"us63"},{"ID":1326,"VillageID":1156,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-01T14:14:39Z","ServerKey":"us63"},{"ID":1327,"VillageID":4702,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-01T14:27:37Z","ServerKey":"us63"},{"ID":1328,"VillageID":569,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848934532,"OldTribeID":0,"Points":2726,"CreatedAt":"2023-02-01T14:29:14Z","ServerKey":"us63"},{"ID":1329,"VillageID":2452,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":0,"Points":5223,"CreatedAt":"2023-02-01T14:53:15Z","ServerKey":"us63"},{"ID":1330,"VillageID":5763,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-01T14:53:30Z","ServerKey":"us63"},{"ID":1331,"VillageID":3452,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-01T14:55:51Z","ServerKey":"us63"},{"ID":1332,"VillageID":4254,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-01T15:04:14Z","ServerKey":"us63"},{"ID":1333,"VillageID":710,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-01T15:09:54Z","ServerKey":"us63"},{"ID":1334,"VillageID":2378,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-01T15:10:30Z","ServerKey":"us63"},{"ID":1335,"VillageID":6148,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-01T15:27:15Z","ServerKey":"us63"},{"ID":1336,"VillageID":2811,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":773019,"OldTribeID":50,"Points":1832,"CreatedAt":"2023-02-01T15:27:21Z","ServerKey":"us63"},{"ID":1337,"VillageID":1722,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-01T15:31:35Z","ServerKey":"us63"},{"ID":1338,"VillageID":512,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-01T15:34:50Z","ServerKey":"us63"},{"ID":1339,"VillageID":512,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":209,"CreatedAt":"2023-02-01T15:54:24Z","ServerKey":"us63"},{"ID":1343,"VillageID":1497,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-01T15:54:31Z","ServerKey":"us63"},{"ID":1344,"VillageID":1497,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":171,"CreatedAt":"2023-02-01T15:54:32Z","ServerKey":"us63"},{"ID":1345,"VillageID":1066,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-01T15:58:08Z","ServerKey":"us63"},{"ID":1346,"VillageID":2841,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848954610,"OldTribeID":53,"Points":3211,"CreatedAt":"2023-02-01T16:11:12Z","ServerKey":"us63"},{"ID":1347,"VillageID":1674,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":3108,"CreatedAt":"2023-02-01T16:23:47Z","ServerKey":"us63"},{"ID":1348,"VillageID":935,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-01T16:28:12Z","ServerKey":"us63"},{"ID":1349,"VillageID":1206,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-01T16:36:05Z","ServerKey":"us63"},{"ID":1350,"VillageID":1624,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848953270,"OldTribeID":0,"Points":5706,"CreatedAt":"2023-02-01T16:36:32Z","ServerKey":"us63"},{"ID":1351,"VillageID":1624,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848940894,"OldTribeID":11,"Points":5706,"CreatedAt":"2023-02-01T16:36:32Z","ServerKey":"us63"},{"ID":1352,"VillageID":2237,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":0,"Points":619,"CreatedAt":"2023-02-01T16:52:21Z","ServerKey":"us63"},{"ID":1353,"VillageID":2358,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1471,"CreatedAt":"2023-02-01T16:55:15Z","ServerKey":"us63"},{"ID":1354,"VillageID":3302,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-01T17:00:45Z","ServerKey":"us63"},{"ID":1355,"VillageID":3520,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-01T17:07:15Z","ServerKey":"us63"},{"ID":1356,"VillageID":772,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848954021,"OldTribeID":35,"Points":333,"CreatedAt":"2023-02-01T17:09:15Z","ServerKey":"us63"},{"ID":1357,"VillageID":235,"NewOwnerID":755121,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-01T17:10:23Z","ServerKey":"us63"},{"ID":1358,"VillageID":5580,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-01T17:14:25Z","ServerKey":"us63"},{"ID":1359,"VillageID":5379,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-01T17:19:19Z","ServerKey":"us63"},{"ID":1360,"VillageID":1043,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-02-01T17:37:18Z","ServerKey":"us63"},{"ID":1361,"VillageID":612,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-01T17:39:32Z","ServerKey":"us63"},{"ID":1362,"VillageID":607,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-01T17:45:14Z","ServerKey":"us63"},{"ID":1363,"VillageID":490,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-01T17:50:22Z","ServerKey":"us63"},{"ID":1364,"VillageID":490,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":165,"CreatedAt":"2023-02-01T17:50:22Z","ServerKey":"us63"},{"ID":1365,"VillageID":962,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-01T18:00:13Z","ServerKey":"us63"},{"ID":1366,"VillageID":1177,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-01T18:11:07Z","ServerKey":"us63"},{"ID":1367,"VillageID":975,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":795932,"OldTribeID":22,"Points":6796,"CreatedAt":"2023-02-01T18:14:15Z","ServerKey":"us63"},{"ID":1368,"VillageID":756,"NewOwnerID":848929146,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-01T18:16:28Z","ServerKey":"us63"},{"ID":1369,"VillageID":611,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-01T18:35:58Z","ServerKey":"us63"},{"ID":1370,"VillageID":266,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-01T18:39:27Z","ServerKey":"us63"},{"ID":1371,"VillageID":289,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-01T18:52:48Z","ServerKey":"us63"},{"ID":1372,"VillageID":93,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-01T19:01:32Z","ServerKey":"us63"},{"ID":1373,"VillageID":3904,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-01T19:13:09Z","ServerKey":"us63"},{"ID":1374,"VillageID":114,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-01T19:16:54Z","ServerKey":"us63"},{"ID":1375,"VillageID":395,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-01T19:17:28Z","ServerKey":"us63"},{"ID":1376,"VillageID":1684,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-01T19:19:53Z","ServerKey":"us63"},{"ID":1377,"VillageID":24,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-01T19:58:13Z","ServerKey":"us63"},{"ID":1378,"VillageID":344,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":6967,"CreatedAt":"2023-02-01T20:16:36Z","ServerKey":"us63"},{"ID":1379,"VillageID":2188,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-01T20:20:46Z","ServerKey":"us63"},{"ID":1380,"VillageID":4302,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848954799,"OldTribeID":110,"Points":3450,"CreatedAt":"2023-02-01T20:26:02Z","ServerKey":"us63"},{"ID":1381,"VillageID":1546,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-01T20:40:52Z","ServerKey":"us63"},{"ID":1382,"VillageID":302,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-01T20:41:10Z","ServerKey":"us63"},{"ID":1383,"VillageID":3984,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-01T20:49:46Z","ServerKey":"us63"},{"ID":1384,"VillageID":1181,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":893,"CreatedAt":"2023-02-01T20:51:13Z","ServerKey":"us63"},{"ID":1385,"VillageID":5469,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-01T20:53:31Z","ServerKey":"us63"},{"ID":1386,"VillageID":2393,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-01T20:55:56Z","ServerKey":"us63"},{"ID":1387,"VillageID":562,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-01T21:02:02Z","ServerKey":"us63"},{"ID":1388,"VillageID":4438,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-01T21:16:19Z","ServerKey":"us63"},{"ID":1389,"VillageID":1855,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-01T21:24:20Z","ServerKey":"us63"},{"ID":1390,"VillageID":2814,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-01T21:55:54Z","ServerKey":"us63"},{"ID":1391,"VillageID":4501,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-02-01T21:56:24Z","ServerKey":"us63"},{"ID":1392,"VillageID":4348,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":647002,"OldTribeID":0,"Points":1176,"CreatedAt":"2023-02-01T22:01:32Z","ServerKey":"us63"},{"ID":1393,"VillageID":4348,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":264792,"OldTribeID":138,"Points":1176,"CreatedAt":"2023-02-01T22:01:32Z","ServerKey":"us63"},{"ID":1394,"VillageID":2058,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848954221,"OldTribeID":105,"Points":596,"CreatedAt":"2023-02-01T22:22:10Z","ServerKey":"us63"},{"ID":1395,"VillageID":989,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-01T22:22:40Z","ServerKey":"us63"},{"ID":1396,"VillageID":1088,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-01T22:28:23Z","ServerKey":"us63"},{"ID":1397,"VillageID":4150,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-01T22:41:52Z","ServerKey":"us63"},{"ID":1398,"VillageID":819,"NewOwnerID":848954598,"NewTribeID":27,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-01T22:42:09Z","ServerKey":"us63"},{"ID":1399,"VillageID":3112,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":848934532,"OldTribeID":0,"Points":2249,"CreatedAt":"2023-02-01T22:52:01Z","ServerKey":"us63"},{"ID":1400,"VillageID":1581,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-01T22:53:09Z","ServerKey":"us63"},{"ID":1401,"VillageID":2185,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-01T23:03:03Z","ServerKey":"us63"},{"ID":1402,"VillageID":1127,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-01T23:06:16Z","ServerKey":"us63"},{"ID":1403,"VillageID":1012,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-01T23:06:18Z","ServerKey":"us63"},{"ID":1404,"VillageID":1456,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-01T23:11:30Z","ServerKey":"us63"},{"ID":1405,"VillageID":4376,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-01T23:12:29Z","ServerKey":"us63"},{"ID":1406,"VillageID":3755,"NewOwnerID":848954768,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-01T23:16:07Z","ServerKey":"us63"},{"ID":1407,"VillageID":5373,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-02T00:01:19Z","ServerKey":"us63"},{"ID":1408,"VillageID":1603,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-02T00:25:19Z","ServerKey":"us63"},{"ID":1409,"VillageID":719,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1221,"CreatedAt":"2023-02-02T00:30:34Z","ServerKey":"us63"},{"ID":1410,"VillageID":1382,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-02T00:32:19Z","ServerKey":"us63"},{"ID":1411,"VillageID":375,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-02T01:05:18Z","ServerKey":"us63"},{"ID":1412,"VillageID":6133,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-02T01:12:22Z","ServerKey":"us63"},{"ID":1413,"VillageID":1404,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-02T01:18:16Z","ServerKey":"us63"},{"ID":1414,"VillageID":363,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T01:19:39Z","ServerKey":"us63"},{"ID":1415,"VillageID":4415,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-02T01:23:23Z","ServerKey":"us63"},{"ID":1416,"VillageID":343,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-02T01:32:00Z","ServerKey":"us63"},{"ID":1417,"VillageID":1642,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-02T01:32:33Z","ServerKey":"us63"},{"ID":1418,"VillageID":3600,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-02T01:35:04Z","ServerKey":"us63"},{"ID":1419,"VillageID":1107,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-02T01:36:56Z","ServerKey":"us63"},{"ID":1420,"VillageID":7078,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-02T02:16:07Z","ServerKey":"us63"},{"ID":1421,"VillageID":1476,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-02T02:16:50Z","ServerKey":"us63"},{"ID":1422,"VillageID":3765,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":715,"CreatedAt":"2023-02-02T02:25:22Z","ServerKey":"us63"},{"ID":1423,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":897,"CreatedAt":"2023-02-02T02:28:35Z","ServerKey":"us63"},{"ID":1424,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":873,"CreatedAt":"2023-02-02T02:29:39Z","ServerKey":"us63"},{"ID":1425,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":873,"CreatedAt":"2023-02-02T02:30:38Z","ServerKey":"us63"},{"ID":1426,"VillageID":568,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-02T02:48:15Z","ServerKey":"us63"},{"ID":1427,"VillageID":1384,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":670,"CreatedAt":"2023-02-02T02:50:00Z","ServerKey":"us63"},{"ID":1428,"VillageID":1384,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":670,"CreatedAt":"2023-02-02T02:50:00Z","ServerKey":"us63"},{"ID":1429,"VillageID":5676,"NewOwnerID":848924974,"NewTribeID":4,"OldOwnerID":848955018,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-02T02:51:11Z","ServerKey":"us63"},{"ID":1430,"VillageID":4794,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-02T02:53:32Z","ServerKey":"us63"},{"ID":1431,"VillageID":609,"NewOwnerID":848953956,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-02T02:57:11Z","ServerKey":"us63"},{"ID":1432,"VillageID":6861,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-02T03:00:50Z","ServerKey":"us63"},{"ID":1433,"VillageID":1056,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-02-02T03:11:18Z","ServerKey":"us63"},{"ID":1434,"VillageID":1488,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":887,"CreatedAt":"2023-02-02T03:13:07Z","ServerKey":"us63"},{"ID":1435,"VillageID":4218,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-02T03:14:04Z","ServerKey":"us63"},{"ID":1436,"VillageID":2600,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":358211,"OldTribeID":0,"Points":2312,"CreatedAt":"2023-02-02T04:17:45Z","ServerKey":"us63"},{"ID":1437,"VillageID":1036,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-02T04:20:40Z","ServerKey":"us63"},{"ID":1438,"VillageID":3699,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-02T04:24:19Z","ServerKey":"us63"},{"ID":1439,"VillageID":961,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":146,"CreatedAt":"2023-02-02T04:30:19Z","ServerKey":"us63"},{"ID":1440,"VillageID":2697,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-02T04:32:57Z","ServerKey":"us63"},{"ID":1441,"VillageID":3184,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":153367,"OldTribeID":185,"Points":1841,"CreatedAt":"2023-02-02T04:47:23Z","ServerKey":"us63"},{"ID":1442,"VillageID":2733,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-02T04:49:26Z","ServerKey":"us63"},{"ID":1443,"VillageID":3095,"NewOwnerID":351605,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-02-02T04:49:31Z","ServerKey":"us63"},{"ID":1444,"VillageID":2186,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":769106,"OldTribeID":0,"Points":4171,"CreatedAt":"2023-02-02T05:20:26Z","ServerKey":"us63"},{"ID":1445,"VillageID":5279,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":848943091,"OldTribeID":0,"Points":762,"CreatedAt":"2023-02-02T05:48:19Z","ServerKey":"us63"},{"ID":1446,"VillageID":2049,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848945641,"OldTribeID":0,"Points":690,"CreatedAt":"2023-02-02T05:49:21Z","ServerKey":"us63"},{"ID":1447,"VillageID":4431,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-02T05:53:09Z","ServerKey":"us63"},{"ID":1448,"VillageID":7155,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-02T06:00:10Z","ServerKey":"us63"},{"ID":1449,"VillageID":3938,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-02T06:03:13Z","ServerKey":"us63"},{"ID":1450,"VillageID":3137,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-02T06:04:41Z","ServerKey":"us63"},{"ID":1451,"VillageID":1459,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-02T06:28:26Z","ServerKey":"us63"},{"ID":1452,"VillageID":1459,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848936929,"OldTribeID":6,"Points":187,"CreatedAt":"2023-02-02T06:28:26Z","ServerKey":"us63"},{"ID":1453,"VillageID":1136,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":3152,"CreatedAt":"2023-02-02T06:30:23Z","ServerKey":"us63"},{"ID":1454,"VillageID":4711,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-02-02T06:36:37Z","ServerKey":"us63"},{"ID":1455,"VillageID":1748,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":848954021,"OldTribeID":35,"Points":4301,"CreatedAt":"2023-02-02T06:49:07Z","ServerKey":"us63"},{"ID":1456,"VillageID":3981,"NewOwnerID":848954698,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-02T06:49:59Z","ServerKey":"us63"},{"ID":1457,"VillageID":239,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":1214,"CreatedAt":"2023-02-02T07:09:18Z","ServerKey":"us63"},{"ID":1458,"VillageID":4411,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-02T07:22:54Z","ServerKey":"us63"},{"ID":1459,"VillageID":6055,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-02T07:26:58Z","ServerKey":"us63"},{"ID":1460,"VillageID":959,"NewOwnerID":848952101,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-02T07:29:12Z","ServerKey":"us63"},{"ID":1461,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":525543,"OldTribeID":15,"Points":2391,"CreatedAt":"2023-02-02T07:33:34Z","ServerKey":"us63"},{"ID":1462,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":2391,"CreatedAt":"2023-02-02T07:33:34Z","ServerKey":"us63"},{"ID":1463,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":2111,"CreatedAt":"2023-02-02T07:33:35Z","ServerKey":"us63"},{"ID":1464,"VillageID":1246,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848916830,"OldTribeID":20,"Points":2111,"CreatedAt":"2023-02-02T07:34:01Z","ServerKey":"us63"},{"ID":1465,"VillageID":1246,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848916830,"OldTribeID":20,"Points":2111,"CreatedAt":"2023-02-02T07:34:01Z","ServerKey":"us63"},{"ID":1466,"VillageID":766,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":525543,"OldTribeID":15,"Points":4551,"CreatedAt":"2023-02-02T07:45:50Z","ServerKey":"us63"},{"ID":1467,"VillageID":1586,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-02T08:11:00Z","ServerKey":"us63"},{"ID":1468,"VillageID":6510,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-02T08:21:50Z","ServerKey":"us63"},{"ID":1469,"VillageID":2654,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":8630,"CreatedAt":"2023-02-02T08:22:15Z","ServerKey":"us63"},{"ID":1470,"VillageID":2817,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-02T08:30:11Z","ServerKey":"us63"},{"ID":1471,"VillageID":2034,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-02T08:31:29Z","ServerKey":"us63"},{"ID":1472,"VillageID":1207,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":2361,"CreatedAt":"2023-02-02T08:42:57Z","ServerKey":"us63"},{"ID":1473,"VillageID":1164,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-02T08:50:48Z","ServerKey":"us63"},{"ID":1474,"VillageID":4931,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":848907435,"OldTribeID":0,"Points":1715,"CreatedAt":"2023-02-02T08:58:39Z","ServerKey":"us63"},{"ID":1475,"VillageID":1743,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-02T09:13:34Z","ServerKey":"us63"},{"ID":1476,"VillageID":2163,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848954221,"OldTribeID":105,"Points":3041,"CreatedAt":"2023-02-02T09:15:00Z","ServerKey":"us63"},{"ID":1477,"VillageID":4752,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-02T09:18:03Z","ServerKey":"us63"},{"ID":1478,"VillageID":74,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848894948,"OldTribeID":42,"Points":2483,"CreatedAt":"2023-02-02T09:25:01Z","ServerKey":"us63"},{"ID":1479,"VillageID":1627,"NewOwnerID":848954361,"NewTribeID":183,"OldOwnerID":848953280,"OldTribeID":25,"Points":2921,"CreatedAt":"2023-02-02T09:32:51Z","ServerKey":"us63"},{"ID":1480,"VillageID":4936,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-02T09:52:58Z","ServerKey":"us63"},{"ID":1481,"VillageID":516,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-02T11:31:59Z","ServerKey":"us63"},{"ID":1482,"VillageID":516,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":848929146,"OldTribeID":183,"Points":161,"CreatedAt":"2023-02-02T11:31:59Z","ServerKey":"us63"},{"ID":1483,"VillageID":2885,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":5184,"CreatedAt":"2023-02-02T11:41:24Z","ServerKey":"us63"},{"ID":1484,"VillageID":656,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848952488,"OldTribeID":32,"Points":2619,"CreatedAt":"2023-02-02T11:47:54Z","ServerKey":"us63"},{"ID":1485,"VillageID":467,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848952488,"OldTribeID":32,"Points":791,"CreatedAt":"2023-02-02T12:05:26Z","ServerKey":"us63"},{"ID":1486,"VillageID":4090,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":848954766,"OldTribeID":0,"Points":2346,"CreatedAt":"2023-02-02T12:19:15Z","ServerKey":"us63"},{"ID":1487,"VillageID":3152,"NewOwnerID":707957,"NewTribeID":0,"OldOwnerID":848953793,"OldTribeID":65,"Points":4555,"CreatedAt":"2023-02-02T12:19:24Z","ServerKey":"us63"},{"ID":1488,"VillageID":1084,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":817,"CreatedAt":"2023-02-02T12:37:09Z","ServerKey":"us63"},{"ID":1489,"VillageID":3888,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-02T12:43:34Z","ServerKey":"us63"},{"ID":1490,"VillageID":2900,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-02T13:06:27Z","ServerKey":"us63"},{"ID":1491,"VillageID":5662,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-02-02T13:08:42Z","ServerKey":"us63"},{"ID":1492,"VillageID":3009,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-02T13:12:18Z","ServerKey":"us63"},{"ID":1493,"VillageID":4038,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T13:21:39Z","ServerKey":"us63"},{"ID":1494,"VillageID":2584,"NewOwnerID":270197,"NewTribeID":41,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-02T13:25:35Z","ServerKey":"us63"},{"ID":1495,"VillageID":2348,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":848949121,"OldTribeID":0,"Points":622,"CreatedAt":"2023-02-02T13:37:16Z","ServerKey":"us63"},{"ID":1496,"VillageID":1858,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-02T14:08:11Z","ServerKey":"us63"},{"ID":1497,"VillageID":1283,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-02T14:23:47Z","ServerKey":"us63"},{"ID":1498,"VillageID":205,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-02T14:26:20Z","ServerKey":"us63"},{"ID":1499,"VillageID":694,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-02T14:41:40Z","ServerKey":"us63"},{"ID":1500,"VillageID":1636,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-02T14:46:13Z","ServerKey":"us63"},{"ID":1501,"VillageID":2096,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-02T14:52:00Z","ServerKey":"us63"},{"ID":1502,"VillageID":3101,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-02T14:55:03Z","ServerKey":"us63"},{"ID":1503,"VillageID":2398,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-02T14:55:31Z","ServerKey":"us63"},{"ID":1504,"VillageID":4041,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-02T15:04:46Z","ServerKey":"us63"},{"ID":1505,"VillageID":6716,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-02T15:13:22Z","ServerKey":"us63"},{"ID":1506,"VillageID":6311,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-02T15:18:33Z","ServerKey":"us63"},{"ID":1507,"VillageID":5871,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":802,"CreatedAt":"2023-02-02T15:24:03Z","ServerKey":"us63"},{"ID":1508,"VillageID":248,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-02T15:26:22Z","ServerKey":"us63"},{"ID":1509,"VillageID":1049,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-02T15:34:01Z","ServerKey":"us63"},{"ID":1510,"VillageID":3999,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-02T15:37:45Z","ServerKey":"us63"},{"ID":1511,"VillageID":637,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-02T16:20:58Z","ServerKey":"us63"},{"ID":1512,"VillageID":4396,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-02T16:21:40Z","ServerKey":"us63"},{"ID":1513,"VillageID":2230,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-02T16:38:55Z","ServerKey":"us63"},{"ID":1514,"VillageID":3892,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":848954131,"OldTribeID":0,"Points":3818,"CreatedAt":"2023-02-02T16:41:58Z","ServerKey":"us63"},{"ID":1515,"VillageID":4422,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T16:52:31Z","ServerKey":"us63"},{"ID":1516,"VillageID":2547,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":1726,"CreatedAt":"2023-02-02T16:54:50Z","ServerKey":"us63"},{"ID":1517,"VillageID":1876,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-02T17:08:49Z","ServerKey":"us63"},{"ID":1518,"VillageID":5996,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":848916248,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-02T17:22:30Z","ServerKey":"us63"},{"ID":1519,"VillageID":4226,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":605271,"OldTribeID":0,"Points":975,"CreatedAt":"2023-02-02T17:24:10Z","ServerKey":"us63"},{"ID":1520,"VillageID":5266,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-02T17:30:27Z","ServerKey":"us63"},{"ID":1521,"VillageID":833,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-02T17:45:02Z","ServerKey":"us63"},{"ID":1522,"VillageID":197,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-02T17:50:33Z","ServerKey":"us63"},{"ID":1523,"VillageID":6348,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-02T17:51:05Z","ServerKey":"us63"},{"ID":1524,"VillageID":236,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-02T17:53:13Z","ServerKey":"us63"},{"ID":1525,"VillageID":4808,"NewOwnerID":848954749,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-02T17:58:32Z","ServerKey":"us63"},{"ID":1526,"VillageID":5465,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-02T18:14:55Z","ServerKey":"us63"},{"ID":1527,"VillageID":6079,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-02T18:24:40Z","ServerKey":"us63"},{"ID":1528,"VillageID":2319,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-02T18:41:21Z","ServerKey":"us63"},{"ID":1529,"VillageID":1736,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-02T18:46:38Z","ServerKey":"us63"},{"ID":1530,"VillageID":3872,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-02T19:23:31Z","ServerKey":"us63"},{"ID":1531,"VillageID":5569,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-02T19:32:31Z","ServerKey":"us63"},{"ID":1532,"VillageID":1433,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":578,"CreatedAt":"2023-02-02T19:36:23Z","ServerKey":"us63"},{"ID":1533,"VillageID":1693,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-02T19:37:02Z","ServerKey":"us63"},{"ID":1534,"VillageID":401,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-02T19:37:57Z","ServerKey":"us63"},{"ID":1535,"VillageID":867,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-02T19:44:43Z","ServerKey":"us63"},{"ID":1536,"VillageID":3558,"NewOwnerID":707957,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-02T19:51:42Z","ServerKey":"us63"},{"ID":1537,"VillageID":6434,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-02T19:53:57Z","ServerKey":"us63"},{"ID":1538,"VillageID":6463,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-02T20:04:27Z","ServerKey":"us63"},{"ID":1539,"VillageID":1933,"NewOwnerID":732810,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-02T20:06:51Z","ServerKey":"us63"},{"ID":1540,"VillageID":5721,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-02T20:23:51Z","ServerKey":"us63"},{"ID":1541,"VillageID":4396,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":848954266,"OldTribeID":35,"Points":291,"CreatedAt":"2023-02-02T20:27:46Z","ServerKey":"us63"},{"ID":1542,"VillageID":185,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-02T20:28:46Z","ServerKey":"us63"},{"ID":1543,"VillageID":4868,"NewOwnerID":848924572,"NewTribeID":104,"OldOwnerID":848954889,"OldTribeID":152,"Points":1559,"CreatedAt":"2023-02-02T20:44:20Z","ServerKey":"us63"},{"ID":1544,"VillageID":2853,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-02-02T21:11:15Z","ServerKey":"us63"},{"ID":1545,"VillageID":1436,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-02T21:17:29Z","ServerKey":"us63"},{"ID":1546,"VillageID":438,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-02T21:20:09Z","ServerKey":"us63"},{"ID":1547,"VillageID":479,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-02T21:20:29Z","ServerKey":"us63"},{"ID":1548,"VillageID":2324,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-02T21:21:47Z","ServerKey":"us63"},{"ID":1549,"VillageID":3165,"NewOwnerID":679915,"NewTribeID":11,"OldOwnerID":848953270,"OldTribeID":0,"Points":928,"CreatedAt":"2023-02-02T21:35:55Z","ServerKey":"us63"},{"ID":1550,"VillageID":2646,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-02T21:43:48Z","ServerKey":"us63"},{"ID":1551,"VillageID":2827,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":868,"CreatedAt":"2023-02-02T21:48:44Z","ServerKey":"us63"},{"ID":1552,"VillageID":6360,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-02T22:01:07Z","ServerKey":"us63"},{"ID":1553,"VillageID":1656,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":848953495,"OldTribeID":0,"Points":3472,"CreatedAt":"2023-02-02T22:09:26Z","ServerKey":"us63"},{"ID":1554,"VillageID":4819,"NewOwnerID":848949067,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-02-02T22:19:00Z","ServerKey":"us63"},{"ID":1555,"VillageID":5675,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-02T22:21:45Z","ServerKey":"us63"},{"ID":1556,"VillageID":3270,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":0,"Points":6292,"CreatedAt":"2023-02-02T22:50:25Z","ServerKey":"us63"},{"ID":1557,"VillageID":839,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-02T22:54:50Z","ServerKey":"us63"},{"ID":1558,"VillageID":527,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":8867,"CreatedAt":"2023-02-02T23:09:26Z","ServerKey":"us63"},{"ID":1559,"VillageID":1462,"NewOwnerID":848907165,"NewTribeID":30,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-02T23:09:48Z","ServerKey":"us63"},{"ID":1560,"VillageID":6373,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-02T23:31:05Z","ServerKey":"us63"},{"ID":1561,"VillageID":3007,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":848951416,"OldTribeID":0,"Points":2161,"CreatedAt":"2023-02-02T23:38:24Z","ServerKey":"us63"},{"ID":1562,"VillageID":1242,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":829,"CreatedAt":"2023-02-02T23:45:30Z","ServerKey":"us63"},{"ID":1563,"VillageID":1312,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848944627,"OldTribeID":105,"Points":3365,"CreatedAt":"2023-02-02T23:46:59Z","ServerKey":"us63"},{"ID":1564,"VillageID":4544,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":357794,"OldTribeID":29,"Points":3968,"CreatedAt":"2023-02-02T23:50:38Z","ServerKey":"us63"},{"ID":1565,"VillageID":5087,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-03T00:05:18Z","ServerKey":"us63"},{"ID":1566,"VillageID":3729,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-03T00:11:15Z","ServerKey":"us63"},{"ID":1567,"VillageID":1592,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-03T00:28:17Z","ServerKey":"us63"},{"ID":1568,"VillageID":5824,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-03T00:45:31Z","ServerKey":"us63"},{"ID":1569,"VillageID":4644,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-03T00:49:33Z","ServerKey":"us63"},{"ID":1570,"VillageID":168,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-03T00:51:28Z","ServerKey":"us63"},{"ID":1571,"VillageID":299,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":3042,"CreatedAt":"2023-02-03T00:51:58Z","ServerKey":"us63"},{"ID":1572,"VillageID":299,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":411608,"OldTribeID":138,"Points":3042,"CreatedAt":"2023-02-03T00:51:58Z","ServerKey":"us63"},{"ID":1573,"VillageID":2797,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-03T01:01:25Z","ServerKey":"us63"},{"ID":1574,"VillageID":6642,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-03T01:05:13Z","ServerKey":"us63"},{"ID":1575,"VillageID":6659,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-02-03T01:22:00Z","ServerKey":"us63"},{"ID":1576,"VillageID":973,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-03T01:24:23Z","ServerKey":"us63"},{"ID":1577,"VillageID":1936,"NewOwnerID":848937132,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-03T01:40:50Z","ServerKey":"us63"},{"ID":1578,"VillageID":4847,"NewOwnerID":744059,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-03T01:41:22Z","ServerKey":"us63"},{"ID":1579,"VillageID":3277,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-03T01:43:05Z","ServerKey":"us63"},{"ID":1580,"VillageID":3197,"NewOwnerID":848881027,"NewTribeID":53,"OldOwnerID":848953907,"OldTribeID":0,"Points":1953,"CreatedAt":"2023-02-03T01:48:25Z","ServerKey":"us63"},{"ID":1581,"VillageID":7068,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-03T01:56:01Z","ServerKey":"us63"},{"ID":1582,"VillageID":6642,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848947757,"OldTribeID":74,"Points":59,"CreatedAt":"2023-02-03T02:09:35Z","ServerKey":"us63"},{"ID":1583,"VillageID":182,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-03T02:15:19Z","ServerKey":"us63"},{"ID":1584,"VillageID":3174,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-03T02:32:48Z","ServerKey":"us63"},{"ID":1585,"VillageID":5771,"NewOwnerID":848951612,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-03T02:34:24Z","ServerKey":"us63"},{"ID":1586,"VillageID":1508,"NewOwnerID":848949948,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":8599,"CreatedAt":"2023-02-03T02:40:44Z","ServerKey":"us63"},{"ID":1587,"VillageID":969,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-03T03:01:41Z","ServerKey":"us63"},{"ID":1588,"VillageID":3078,"NewOwnerID":848952875,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-03T03:11:02Z","ServerKey":"us63"},{"ID":1589,"VillageID":613,"NewOwnerID":848952005,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-03T03:19:22Z","ServerKey":"us63"},{"ID":1590,"VillageID":398,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-03T03:19:41Z","ServerKey":"us63"},{"ID":1591,"VillageID":6261,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-03T03:22:23Z","ServerKey":"us63"},{"ID":1592,"VillageID":299,"NewOwnerID":795044,"NewTribeID":69,"OldOwnerID":411608,"OldTribeID":138,"Points":3018,"CreatedAt":"2023-02-03T03:44:53Z","ServerKey":"us63"},{"ID":1593,"VillageID":6742,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-03T03:48:27Z","ServerKey":"us63"},{"ID":1594,"VillageID":334,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-03T04:02:10Z","ServerKey":"us63"},{"ID":1595,"VillageID":5351,"NewOwnerID":848945828,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-03T04:04:50Z","ServerKey":"us63"},{"ID":1596,"VillageID":1432,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-03T04:26:56Z","ServerKey":"us63"},{"ID":1597,"VillageID":549,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-03T04:33:52Z","ServerKey":"us63"},{"ID":1598,"VillageID":929,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-03T04:34:10Z","ServerKey":"us63"},{"ID":1599,"VillageID":891,"NewOwnerID":848950001,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-03T04:40:23Z","ServerKey":"us63"},{"ID":1600,"VillageID":600,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-03T04:41:45Z","ServerKey":"us63"},{"ID":1601,"VillageID":3910,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-03T04:51:13Z","ServerKey":"us63"},{"ID":1602,"VillageID":1125,"NewOwnerID":848952033,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-03T04:52:55Z","ServerKey":"us63"},{"ID":1603,"VillageID":167,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-03T04:54:26Z","ServerKey":"us63"},{"ID":1604,"VillageID":6440,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-03T04:59:33Z","ServerKey":"us63"},{"ID":1605,"VillageID":3263,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-03T05:34:15Z","ServerKey":"us63"},{"ID":1606,"VillageID":6042,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-03T05:44:28Z","ServerKey":"us63"},{"ID":1607,"VillageID":1216,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-03T05:50:36Z","ServerKey":"us63"},{"ID":1608,"VillageID":4683,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-03T06:00:30Z","ServerKey":"us63"},{"ID":1609,"VillageID":4683,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":848954762,"OldTribeID":119,"Points":132,"CreatedAt":"2023-02-03T06:00:30Z","ServerKey":"us63"},{"ID":1610,"VillageID":1158,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848954368,"OldTribeID":0,"Points":3930,"CreatedAt":"2023-02-03T06:04:25Z","ServerKey":"us63"},{"ID":1611,"VillageID":5490,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-03T06:06:30Z","ServerKey":"us63"},{"ID":1612,"VillageID":1135,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-03T06:15:51Z","ServerKey":"us63"},{"ID":1613,"VillageID":2564,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-03T06:17:41Z","ServerKey":"us63"},{"ID":1614,"VillageID":6240,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-03T06:24:59Z","ServerKey":"us63"},{"ID":1615,"VillageID":7058,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":54,"CreatedAt":"2023-02-03T06:34:47Z","ServerKey":"us63"},{"ID":1616,"VillageID":615,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":557,"CreatedAt":"2023-02-03T06:36:56Z","ServerKey":"us63"},{"ID":1617,"VillageID":6246,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-03T06:42:32Z","ServerKey":"us63"},{"ID":1618,"VillageID":5016,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":160994,"OldTribeID":24,"Points":6597,"CreatedAt":"2023-02-03T06:44:15Z","ServerKey":"us63"},{"ID":1619,"VillageID":3152,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":0,"Points":4567,"CreatedAt":"2023-02-03T06:45:54Z","ServerKey":"us63"},{"ID":1620,"VillageID":5016,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848941179,"OldTribeID":35,"Points":6501,"CreatedAt":"2023-02-03T07:06:26Z","ServerKey":"us63"},{"ID":1621,"VillageID":6194,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-03T07:08:35Z","ServerKey":"us63"},{"ID":1622,"VillageID":6389,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-03T07:08:42Z","ServerKey":"us63"},{"ID":1623,"VillageID":1106,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-03T07:48:40Z","ServerKey":"us63"},{"ID":1624,"VillageID":606,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-03T07:55:43Z","ServerKey":"us63"},{"ID":1625,"VillageID":5317,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-03T08:13:31Z","ServerKey":"us63"},{"ID":1626,"VillageID":606,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":848953046,"OldTribeID":35,"Points":194,"CreatedAt":"2023-02-03T08:38:04Z","ServerKey":"us63"},{"ID":1627,"VillageID":506,"NewOwnerID":848951914,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-03T08:44:04Z","ServerKey":"us63"},{"ID":1628,"VillageID":4337,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-03T08:55:25Z","ServerKey":"us63"},{"ID":1629,"VillageID":1482,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848951612,"OldTribeID":35,"Points":5911,"CreatedAt":"2023-02-03T09:20:32Z","ServerKey":"us63"},{"ID":1630,"VillageID":581,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-03T09:32:05Z","ServerKey":"us63"},{"ID":1631,"VillageID":1055,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-03T09:47:48Z","ServerKey":"us63"},{"ID":1632,"VillageID":26,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-03T09:50:46Z","ServerKey":"us63"},{"ID":1633,"VillageID":4472,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-03T09:56:09Z","ServerKey":"us63"},{"ID":1634,"VillageID":1512,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":848952099,"OldTribeID":41,"Points":2990,"CreatedAt":"2023-02-03T10:06:57Z","ServerKey":"us63"},{"ID":1635,"VillageID":723,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-03T10:10:58Z","ServerKey":"us63"},{"ID":1636,"VillageID":1234,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-03T10:23:34Z","ServerKey":"us63"},{"ID":1637,"VillageID":6032,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-03T10:31:12Z","ServerKey":"us63"},{"ID":1638,"VillageID":2988,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-03T11:08:57Z","ServerKey":"us63"},{"ID":1639,"VillageID":1376,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-03T11:45:21Z","ServerKey":"us63"},{"ID":1640,"VillageID":4268,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848947609,"OldTribeID":47,"Points":3171,"CreatedAt":"2023-02-03T12:04:21Z","ServerKey":"us63"},{"ID":1641,"VillageID":1708,"NewOwnerID":848954598,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-03T12:04:47Z","ServerKey":"us63"},{"ID":1642,"VillageID":1668,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-03T12:12:36Z","ServerKey":"us63"},{"ID":1643,"VillageID":3700,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":744059,"OldTribeID":53,"Points":3148,"CreatedAt":"2023-02-03T12:18:53Z","ServerKey":"us63"},{"ID":1644,"VillageID":379,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-03T12:19:30Z","ServerKey":"us63"},{"ID":1645,"VillageID":5374,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-03T12:38:30Z","ServerKey":"us63"},{"ID":1646,"VillageID":38,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-03T12:51:42Z","ServerKey":"us63"},{"ID":1647,"VillageID":4058,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-03T13:52:33Z","ServerKey":"us63"},{"ID":1648,"VillageID":2919,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-03T14:05:52Z","ServerKey":"us63"},{"ID":1649,"VillageID":2332,"NewOwnerID":848952270,"NewTribeID":61,"OldOwnerID":848932020,"OldTribeID":0,"Points":535,"CreatedAt":"2023-02-03T14:12:47Z","ServerKey":"us63"},{"ID":1650,"VillageID":2217,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":2732,"CreatedAt":"2023-02-03T14:32:46Z","ServerKey":"us63"},{"ID":1651,"VillageID":3906,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-03T14:36:44Z","ServerKey":"us63"},{"ID":1652,"VillageID":4199,"NewOwnerID":262676,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-03T14:37:10Z","ServerKey":"us63"},{"ID":1653,"VillageID":2454,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848931274,"OldTribeID":0,"Points":2086,"CreatedAt":"2023-02-03T15:40:31Z","ServerKey":"us63"},{"ID":1654,"VillageID":6019,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":74,"CreatedAt":"2023-02-03T15:41:50Z","ServerKey":"us63"},{"ID":1655,"VillageID":1194,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-03T15:49:15Z","ServerKey":"us63"},{"ID":1656,"VillageID":1294,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-03T15:54:38Z","ServerKey":"us63"},{"ID":1657,"VillageID":3268,"NewOwnerID":771856,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-03T15:56:23Z","ServerKey":"us63"},{"ID":1658,"VillageID":1849,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":6807,"CreatedAt":"2023-02-03T16:00:00Z","ServerKey":"us63"},{"ID":1659,"VillageID":854,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":5094,"CreatedAt":"2023-02-03T16:00:00Z","ServerKey":"us63"},{"ID":1660,"VillageID":1319,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":9056,"CreatedAt":"2023-02-03T16:00:01Z","ServerKey":"us63"},{"ID":1661,"VillageID":550,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":9358,"CreatedAt":"2023-02-03T16:00:01Z","ServerKey":"us63"},{"ID":1662,"VillageID":1778,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":848907165,"OldTribeID":30,"Points":1776,"CreatedAt":"2023-02-03T16:00:13Z","ServerKey":"us63"},{"ID":1663,"VillageID":447,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-03T16:04:52Z","ServerKey":"us63"},{"ID":1664,"VillageID":1808,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-03T16:08:42Z","ServerKey":"us63"},{"ID":1665,"VillageID":2614,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848949681,"OldTribeID":76,"Points":4052,"CreatedAt":"2023-02-03T16:11:28Z","ServerKey":"us63"},{"ID":1666,"VillageID":1827,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-03T16:15:11Z","ServerKey":"us63"},{"ID":1667,"VillageID":4245,"NewOwnerID":223156,"NewTribeID":104,"OldOwnerID":848954385,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-03T16:15:36Z","ServerKey":"us63"},{"ID":1668,"VillageID":5393,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":608574,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-03T16:32:24Z","ServerKey":"us63"},{"ID":1669,"VillageID":5393,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":848946770,"OldTribeID":152,"Points":150,"CreatedAt":"2023-02-03T16:35:11Z","ServerKey":"us63"},{"ID":1670,"VillageID":1862,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":160994,"OldTribeID":24,"Points":1981,"CreatedAt":"2023-02-03T16:36:35Z","ServerKey":"us63"},{"ID":1671,"VillageID":1187,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-03T16:38:48Z","ServerKey":"us63"},{"ID":1672,"VillageID":3968,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":763098,"OldTribeID":114,"Points":5057,"CreatedAt":"2023-02-03T17:11:59Z","ServerKey":"us63"},{"ID":1673,"VillageID":1155,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-03T17:25:17Z","ServerKey":"us63"},{"ID":1674,"VillageID":750,"NewOwnerID":848954321,"NewTribeID":2,"OldOwnerID":848953964,"OldTribeID":0,"Points":2098,"CreatedAt":"2023-02-03T17:45:19Z","ServerKey":"us63"},{"ID":1675,"VillageID":3968,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":848954140,"OldTribeID":85,"Points":5033,"CreatedAt":"2023-02-03T17:46:43Z","ServerKey":"us63"},{"ID":1676,"VillageID":4067,"NewOwnerID":272678,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-03T17:48:44Z","ServerKey":"us63"},{"ID":1677,"VillageID":1009,"NewOwnerID":848954361,"NewTribeID":183,"OldOwnerID":701192,"OldTribeID":25,"Points":1665,"CreatedAt":"2023-02-03T18:07:04Z","ServerKey":"us63"},{"ID":1678,"VillageID":5614,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-03T18:17:14Z","ServerKey":"us63"},{"ID":1679,"VillageID":4560,"NewOwnerID":325451,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-03T18:34:33Z","ServerKey":"us63"},{"ID":1680,"VillageID":1375,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":699,"CreatedAt":"2023-02-03T18:56:42Z","ServerKey":"us63"},{"ID":1681,"VillageID":1466,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-03T19:00:03Z","ServerKey":"us63"},{"ID":1682,"VillageID":1779,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-03T19:11:31Z","ServerKey":"us63"},{"ID":1683,"VillageID":4485,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":848954832,"OldTribeID":134,"Points":3257,"CreatedAt":"2023-02-03T19:31:35Z","ServerKey":"us63"},{"ID":1684,"VillageID":164,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-03T19:33:11Z","ServerKey":"us63"},{"ID":1685,"VillageID":1702,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":698,"CreatedAt":"2023-02-03T19:33:42Z","ServerKey":"us63"},{"ID":1686,"VillageID":5142,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1858,"CreatedAt":"2023-02-03T19:36:28Z","ServerKey":"us63"},{"ID":1687,"VillageID":821,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-03T19:44:38Z","ServerKey":"us63"},{"ID":1688,"VillageID":5045,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-03T19:46:00Z","ServerKey":"us63"},{"ID":1689,"VillageID":2765,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-03T19:49:57Z","ServerKey":"us63"},{"ID":1690,"VillageID":3585,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":270197,"OldTribeID":41,"Points":2967,"CreatedAt":"2023-02-03T19:59:59Z","ServerKey":"us63"},{"ID":1691,"VillageID":3198,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":1258,"CreatedAt":"2023-02-03T20:15:49Z","ServerKey":"us63"},{"ID":1692,"VillageID":1475,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-03T20:17:45Z","ServerKey":"us63"},{"ID":1693,"VillageID":700,"NewOwnerID":377337,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-03T20:30:31Z","ServerKey":"us63"},{"ID":1694,"VillageID":17,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-03T20:37:27Z","ServerKey":"us63"},{"ID":1695,"VillageID":4237,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-03T21:01:31Z","ServerKey":"us63"},{"ID":1696,"VillageID":7291,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-03T21:50:42Z","ServerKey":"us63"},{"ID":1697,"VillageID":541,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":848879567,"OldTribeID":0,"Points":5313,"CreatedAt":"2023-02-03T21:56:40Z","ServerKey":"us63"},{"ID":1698,"VillageID":5950,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-03T21:59:33Z","ServerKey":"us63"},{"ID":1699,"VillageID":2741,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":795932,"OldTribeID":22,"Points":1259,"CreatedAt":"2023-02-03T22:02:49Z","ServerKey":"us63"},{"ID":1700,"VillageID":4976,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-03T22:25:47Z","ServerKey":"us63"},{"ID":1701,"VillageID":308,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-03T23:01:36Z","ServerKey":"us63"},{"ID":1702,"VillageID":3650,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-03T23:19:36Z","ServerKey":"us63"},{"ID":1703,"VillageID":3914,"NewOwnerID":540123,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-03T23:36:58Z","ServerKey":"us63"},{"ID":1704,"VillageID":2299,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":848940747,"OldTribeID":0,"Points":462,"CreatedAt":"2023-02-04T00:07:05Z","ServerKey":"us63"},{"ID":1705,"VillageID":890,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-04T00:07:06Z","ServerKey":"us63"},{"ID":1706,"VillageID":274,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-04T00:13:56Z","ServerKey":"us63"},{"ID":1707,"VillageID":299,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":795044,"OldTribeID":69,"Points":3018,"CreatedAt":"2023-02-04T00:34:49Z","ServerKey":"us63"},{"ID":1708,"VillageID":1018,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":848944627,"OldTribeID":105,"Points":326,"CreatedAt":"2023-02-04T00:43:43Z","ServerKey":"us63"},{"ID":1709,"VillageID":2180,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-04T00:53:14Z","ServerKey":"us63"},{"ID":1710,"VillageID":672,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-04T00:59:23Z","ServerKey":"us63"},{"ID":1711,"VillageID":4833,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":223156,"OldTribeID":104,"Points":3199,"CreatedAt":"2023-02-04T01:03:27Z","ServerKey":"us63"},{"ID":1712,"VillageID":2305,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848953064,"OldTribeID":25,"Points":3000,"CreatedAt":"2023-02-04T01:26:20Z","ServerKey":"us63"},{"ID":1713,"VillageID":1243,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-04T01:34:04Z","ServerKey":"us63"},{"ID":1714,"VillageID":2168,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-04T01:41:22Z","ServerKey":"us63"},{"ID":1715,"VillageID":5065,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848953267,"OldTribeID":0,"Points":1924,"CreatedAt":"2023-02-04T01:47:00Z","ServerKey":"us63"},{"ID":1716,"VillageID":736,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848953915,"OldTribeID":35,"Points":1523,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1717,"VillageID":1467,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848954199,"OldTribeID":35,"Points":2782,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1718,"VillageID":426,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954190,"OldTribeID":35,"Points":6174,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1719,"VillageID":77,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":5431,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1720,"VillageID":429,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":8289,"CreatedAt":"2023-02-04T02:00:00Z","ServerKey":"us63"},{"ID":1721,"VillageID":1709,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953915,"OldTribeID":35,"Points":4047,"CreatedAt":"2023-02-04T02:00:01Z","ServerKey":"us63"},{"ID":1722,"VillageID":504,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848954362,"OldTribeID":35,"Points":3358,"CreatedAt":"2023-02-04T02:03:01Z","ServerKey":"us63"},{"ID":1723,"VillageID":1075,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848930169,"OldTribeID":163,"Points":4354,"CreatedAt":"2023-02-04T02:06:00Z","ServerKey":"us63"},{"ID":1724,"VillageID":1075,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":729178,"OldTribeID":48,"Points":4354,"CreatedAt":"2023-02-04T02:06:00Z","ServerKey":"us63"},{"ID":1725,"VillageID":7368,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-04T02:06:55Z","ServerKey":"us63"},{"ID":1726,"VillageID":1812,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-04T02:13:28Z","ServerKey":"us63"},{"ID":1727,"VillageID":932,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":2484,"CreatedAt":"2023-02-04T02:22:40Z","ServerKey":"us63"},{"ID":1728,"VillageID":4308,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848937378,"OldTribeID":0,"Points":980,"CreatedAt":"2023-02-04T02:31:33Z","ServerKey":"us63"},{"ID":1729,"VillageID":6497,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848952889,"OldTribeID":0,"Points":1032,"CreatedAt":"2023-02-04T02:45:36Z","ServerKey":"us63"},{"ID":1730,"VillageID":158,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-04T02:58:13Z","ServerKey":"us63"},{"ID":1731,"VillageID":1289,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":735,"CreatedAt":"2023-02-04T03:32:29Z","ServerKey":"us63"},{"ID":1732,"VillageID":1988,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":848954368,"OldTribeID":0,"Points":1739,"CreatedAt":"2023-02-04T03:34:12Z","ServerKey":"us63"},{"ID":1733,"VillageID":3066,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-04T03:57:45Z","ServerKey":"us63"},{"ID":1734,"VillageID":7520,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-04T03:58:38Z","ServerKey":"us63"},{"ID":1735,"VillageID":4916,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-04T04:07:19Z","ServerKey":"us63"},{"ID":1736,"VillageID":1616,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-04T04:12:40Z","ServerKey":"us63"},{"ID":1737,"VillageID":5618,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-04T04:22:21Z","ServerKey":"us63"},{"ID":1738,"VillageID":14,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-04T04:40:07Z","ServerKey":"us63"},{"ID":1739,"VillageID":808,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":160994,"OldTribeID":24,"Points":844,"CreatedAt":"2023-02-04T04:53:42Z","ServerKey":"us63"},{"ID":1740,"VillageID":808,"NewOwnerID":848941179,"NewTribeID":35,"OldOwnerID":848941179,"OldTribeID":35,"Points":844,"CreatedAt":"2023-02-04T04:53:42Z","ServerKey":"us63"},{"ID":1741,"VillageID":245,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-04T04:55:52Z","ServerKey":"us63"},{"ID":1742,"VillageID":1969,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848937132,"OldTribeID":5,"Points":4508,"CreatedAt":"2023-02-04T05:00:12Z","ServerKey":"us63"},{"ID":1743,"VillageID":1969,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":503636,"OldTribeID":138,"Points":4307,"CreatedAt":"2023-02-04T05:00:13Z","ServerKey":"us63"},{"ID":1744,"VillageID":645,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954190,"OldTribeID":35,"Points":2254,"CreatedAt":"2023-02-04T05:30:17Z","ServerKey":"us63"},{"ID":1745,"VillageID":805,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-04T05:54:33Z","ServerKey":"us63"},{"ID":1746,"VillageID":1463,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-04T05:56:25Z","ServerKey":"us63"},{"ID":1747,"VillageID":939,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-04T06:00:22Z","ServerKey":"us63"},{"ID":1748,"VillageID":905,"NewOwnerID":377337,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-04T06:17:37Z","ServerKey":"us63"},{"ID":1749,"VillageID":3015,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-04T06:18:17Z","ServerKey":"us63"},{"ID":1750,"VillageID":7497,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-04T06:27:23Z","ServerKey":"us63"},{"ID":1751,"VillageID":650,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848931764,"OldTribeID":35,"Points":654,"CreatedAt":"2023-02-04T06:37:05Z","ServerKey":"us63"},{"ID":1752,"VillageID":135,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-04T06:41:17Z","ServerKey":"us63"},{"ID":1753,"VillageID":3245,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-04T06:43:45Z","ServerKey":"us63"},{"ID":1754,"VillageID":1692,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848954362,"OldTribeID":35,"Points":3763,"CreatedAt":"2023-02-04T06:44:13Z","ServerKey":"us63"},{"ID":1755,"VillageID":1152,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-04T07:18:40Z","ServerKey":"us63"},{"ID":1756,"VillageID":6917,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848954029,"OldTribeID":0,"Points":901,"CreatedAt":"2023-02-04T07:20:16Z","ServerKey":"us63"},{"ID":1757,"VillageID":522,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-04T07:42:29Z","ServerKey":"us63"},{"ID":1758,"VillageID":1874,"NewOwnerID":848954362,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-04T07:42:57Z","ServerKey":"us63"},{"ID":1759,"VillageID":556,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-04T08:15:40Z","ServerKey":"us63"},{"ID":1760,"VillageID":1597,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848954437,"OldTribeID":12,"Points":745,"CreatedAt":"2023-02-04T08:17:41Z","ServerKey":"us63"},{"ID":1761,"VillageID":1346,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-04T08:33:46Z","ServerKey":"us63"},{"ID":1762,"VillageID":688,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954266,"OldTribeID":35,"Points":1879,"CreatedAt":"2023-02-04T08:58:12Z","ServerKey":"us63"},{"ID":1763,"VillageID":2029,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":423,"CreatedAt":"2023-02-04T09:15:45Z","ServerKey":"us63"},{"ID":1764,"VillageID":5473,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-04T09:54:40Z","ServerKey":"us63"},{"ID":1765,"VillageID":971,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-04T09:58:48Z","ServerKey":"us63"},{"ID":1766,"VillageID":2692,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":789838,"OldTribeID":66,"Points":5510,"CreatedAt":"2023-02-04T10:00:37Z","ServerKey":"us63"},{"ID":1767,"VillageID":4405,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-04T10:26:12Z","ServerKey":"us63"},{"ID":1768,"VillageID":5748,"NewOwnerID":848955132,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-02-04T10:30:27Z","ServerKey":"us63"},{"ID":1769,"VillageID":1863,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848954437,"OldTribeID":12,"Points":2754,"CreatedAt":"2023-02-04T11:04:25Z","ServerKey":"us63"},{"ID":1770,"VillageID":5764,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-04T11:07:46Z","ServerKey":"us63"},{"ID":1771,"VillageID":608,"NewOwnerID":848929146,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":439,"CreatedAt":"2023-02-04T11:30:31Z","ServerKey":"us63"},{"ID":1772,"VillageID":3794,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-04T12:37:10Z","ServerKey":"us63"},{"ID":1773,"VillageID":491,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":717336,"OldTribeID":0,"Points":847,"CreatedAt":"2023-02-04T12:42:13Z","ServerKey":"us63"},{"ID":1774,"VillageID":4651,"NewOwnerID":848954723,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-04T12:47:52Z","ServerKey":"us63"},{"ID":1775,"VillageID":1794,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-04T12:55:41Z","ServerKey":"us63"},{"ID":1776,"VillageID":1129,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-04T13:33:17Z","ServerKey":"us63"},{"ID":1777,"VillageID":4370,"NewOwnerID":848905385,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-04T13:35:37Z","ServerKey":"us63"},{"ID":1778,"VillageID":688,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":151032,"OldTribeID":20,"Points":1894,"CreatedAt":"2023-02-04T13:51:26Z","ServerKey":"us63"},{"ID":1779,"VillageID":688,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":1894,"CreatedAt":"2023-02-04T13:51:26Z","ServerKey":"us63"},{"ID":1780,"VillageID":5229,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":35,"Points":7207,"CreatedAt":"2023-02-04T14:00:01Z","ServerKey":"us63"},{"ID":1781,"VillageID":6256,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":783504,"OldTribeID":188,"Points":2422,"CreatedAt":"2023-02-04T14:03:21Z","ServerKey":"us63"},{"ID":1782,"VillageID":6256,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":848929097,"OldTribeID":76,"Points":2422,"CreatedAt":"2023-02-04T14:03:21Z","ServerKey":"us63"},{"ID":1783,"VillageID":1337,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-04T14:16:35Z","ServerKey":"us63"},{"ID":1784,"VillageID":6937,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-04T14:17:33Z","ServerKey":"us63"},{"ID":1785,"VillageID":4454,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-04T14:52:53Z","ServerKey":"us63"},{"ID":1786,"VillageID":3901,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-04T15:07:45Z","ServerKey":"us63"},{"ID":1787,"VillageID":3032,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-04T15:16:39Z","ServerKey":"us63"},{"ID":1788,"VillageID":6317,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-04T15:16:53Z","ServerKey":"us63"},{"ID":1789,"VillageID":1687,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-04T15:35:47Z","ServerKey":"us63"},{"ID":1790,"VillageID":5414,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-04T15:48:59Z","ServerKey":"us63"},{"ID":1791,"VillageID":6015,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-04T15:58:13Z","ServerKey":"us63"},{"ID":1792,"VillageID":1962,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-04T16:26:42Z","ServerKey":"us63"},{"ID":1793,"VillageID":1740,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953915,"OldTribeID":0,"Points":3086,"CreatedAt":"2023-02-04T16:31:31Z","ServerKey":"us63"},{"ID":1794,"VillageID":1740,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848954504,"OldTribeID":2,"Points":3062,"CreatedAt":"2023-02-04T16:31:32Z","ServerKey":"us63"},{"ID":1795,"VillageID":225,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954266,"OldTribeID":35,"Points":4106,"CreatedAt":"2023-02-04T16:33:00Z","ServerKey":"us63"},{"ID":1796,"VillageID":7128,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-04T16:52:15Z","ServerKey":"us63"},{"ID":1797,"VillageID":436,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954170,"OldTribeID":35,"Points":4975,"CreatedAt":"2023-02-04T16:55:56Z","ServerKey":"us63"},{"ID":1798,"VillageID":436,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":616498,"OldTribeID":48,"Points":4975,"CreatedAt":"2023-02-04T16:55:56Z","ServerKey":"us63"},{"ID":1799,"VillageID":733,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-04T16:58:33Z","ServerKey":"us63"},{"ID":1800,"VillageID":3776,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-04T16:59:53Z","ServerKey":"us63"},{"ID":1801,"VillageID":6209,"NewOwnerID":226713,"NewTribeID":91,"OldOwnerID":848955101,"OldTribeID":134,"Points":1159,"CreatedAt":"2023-02-04T17:00:11Z","ServerKey":"us63"},{"ID":1802,"VillageID":3675,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":848954709,"OldTribeID":0,"Points":870,"CreatedAt":"2023-02-04T17:01:32Z","ServerKey":"us63"},{"ID":1803,"VillageID":1959,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-04T17:30:50Z","ServerKey":"us63"},{"ID":1804,"VillageID":4275,"NewOwnerID":848941569,"NewTribeID":91,"OldOwnerID":786347,"OldTribeID":0,"Points":538,"CreatedAt":"2023-02-04T17:31:23Z","ServerKey":"us63"},{"ID":1805,"VillageID":671,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-04T17:36:25Z","ServerKey":"us63"},{"ID":1806,"VillageID":767,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-04T17:40:54Z","ServerKey":"us63"},{"ID":1807,"VillageID":5113,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-04T17:45:15Z","ServerKey":"us63"},{"ID":1808,"VillageID":5968,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848955057,"OldTribeID":176,"Points":1467,"CreatedAt":"2023-02-04T17:56:10Z","ServerKey":"us63"},{"ID":1809,"VillageID":2571,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-04T18:17:51Z","ServerKey":"us63"},{"ID":1810,"VillageID":2497,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-04T18:20:18Z","ServerKey":"us63"},{"ID":1811,"VillageID":279,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-04T18:30:31Z","ServerKey":"us63"},{"ID":1812,"VillageID":1841,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848954362,"OldTribeID":35,"Points":5187,"CreatedAt":"2023-02-04T18:32:32Z","ServerKey":"us63"},{"ID":1813,"VillageID":181,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-04T18:33:56Z","ServerKey":"us63"},{"ID":1814,"VillageID":181,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":211,"CreatedAt":"2023-02-04T18:33:56Z","ServerKey":"us63"},{"ID":1815,"VillageID":1844,"NewOwnerID":321370,"NewTribeID":69,"OldOwnerID":848954368,"OldTribeID":0,"Points":6977,"CreatedAt":"2023-02-04T18:45:52Z","ServerKey":"us63"},{"ID":1816,"VillageID":1484,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-04T19:04:30Z","ServerKey":"us63"},{"ID":1817,"VillageID":1484,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":848910455,"OldTribeID":4,"Points":222,"CreatedAt":"2023-02-04T19:04:50Z","ServerKey":"us63"},{"ID":1818,"VillageID":5804,"NewOwnerID":848954078,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-04T19:13:28Z","ServerKey":"us63"},{"ID":1819,"VillageID":5221,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-04T19:19:24Z","ServerKey":"us63"},{"ID":1820,"VillageID":3692,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-04T19:25:10Z","ServerKey":"us63"},{"ID":1821,"VillageID":2556,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":848928204,"OldTribeID":88,"Points":967,"CreatedAt":"2023-02-04T19:59:19Z","ServerKey":"us63"},{"ID":1822,"VillageID":2171,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-04T20:02:30Z","ServerKey":"us63"},{"ID":1823,"VillageID":2171,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":237,"CreatedAt":"2023-02-04T20:02:30Z","ServerKey":"us63"},{"ID":1824,"VillageID":3716,"NewOwnerID":848943308,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-04T20:07:59Z","ServerKey":"us63"},{"ID":1825,"VillageID":1639,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-04T20:14:05Z","ServerKey":"us63"},{"ID":1826,"VillageID":4357,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-04T20:42:27Z","ServerKey":"us63"},{"ID":1827,"VillageID":3882,"NewOwnerID":272678,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-04T21:27:05Z","ServerKey":"us63"},{"ID":1828,"VillageID":1740,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":848954504,"OldTribeID":2,"Points":3112,"CreatedAt":"2023-02-04T21:43:18Z","ServerKey":"us63"},{"ID":1829,"VillageID":1872,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-04T21:53:17Z","ServerKey":"us63"},{"ID":1830,"VillageID":1772,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848910736,"OldTribeID":35,"Points":632,"CreatedAt":"2023-02-04T21:55:56Z","ServerKey":"us63"},{"ID":1831,"VillageID":199,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":4428,"CreatedAt":"2023-02-04T22:48:53Z","ServerKey":"us63"},{"ID":1832,"VillageID":1252,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-04T23:00:40Z","ServerKey":"us63"},{"ID":1833,"VillageID":1427,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-04T23:16:22Z","ServerKey":"us63"},{"ID":1834,"VillageID":1548,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-04T23:34:01Z","ServerKey":"us63"},{"ID":1835,"VillageID":2738,"NewOwnerID":848852584,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-04T23:49:59Z","ServerKey":"us63"},{"ID":1836,"VillageID":4516,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-04T23:52:43Z","ServerKey":"us63"},{"ID":1837,"VillageID":5004,"NewOwnerID":748168,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-04T23:54:18Z","ServerKey":"us63"},{"ID":1838,"VillageID":3923,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-05T00:06:01Z","ServerKey":"us63"},{"ID":1839,"VillageID":1844,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":321370,"OldTribeID":69,"Points":6903,"CreatedAt":"2023-02-05T00:11:15Z","ServerKey":"us63"},{"ID":1840,"VillageID":486,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":264,"CreatedAt":"2023-02-05T00:51:28Z","ServerKey":"us63"},{"ID":1841,"VillageID":364,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-05T00:52:51Z","ServerKey":"us63"},{"ID":1842,"VillageID":1321,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-05T01:03:55Z","ServerKey":"us63"},{"ID":1843,"VillageID":1271,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-05T01:06:25Z","ServerKey":"us63"},{"ID":1844,"VillageID":1735,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848954266,"OldTribeID":35,"Points":1131,"CreatedAt":"2023-02-05T01:08:00Z","ServerKey":"us63"},{"ID":1845,"VillageID":3156,"NewOwnerID":848942307,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-05T01:09:56Z","ServerKey":"us63"},{"ID":1846,"VillageID":6,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-05T01:14:51Z","ServerKey":"us63"},{"ID":1847,"VillageID":481,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-05T01:26:10Z","ServerKey":"us63"},{"ID":1848,"VillageID":1734,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-05T01:34:20Z","ServerKey":"us63"},{"ID":1849,"VillageID":3878,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-05T01:35:15Z","ServerKey":"us63"},{"ID":1850,"VillageID":824,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-05T01:41:36Z","ServerKey":"us63"},{"ID":1851,"VillageID":4844,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-05T01:48:12Z","ServerKey":"us63"},{"ID":1852,"VillageID":5822,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":35,"Points":1458,"CreatedAt":"2023-02-05T02:00:00Z","ServerKey":"us63"},{"ID":1853,"VillageID":5411,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-05T02:05:10Z","ServerKey":"us63"},{"ID":1854,"VillageID":1064,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-05T02:07:52Z","ServerKey":"us63"},{"ID":1855,"VillageID":2636,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":789838,"OldTribeID":66,"Points":1732,"CreatedAt":"2023-02-05T02:12:02Z","ServerKey":"us63"},{"ID":1856,"VillageID":2132,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-05T02:16:01Z","ServerKey":"us63"},{"ID":1857,"VillageID":1761,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-05T02:35:07Z","ServerKey":"us63"},{"ID":1858,"VillageID":7030,"NewOwnerID":848947293,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-05T02:52:39Z","ServerKey":"us63"},{"ID":1859,"VillageID":304,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-05T02:53:43Z","ServerKey":"us63"},{"ID":1860,"VillageID":3995,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-05T02:56:30Z","ServerKey":"us63"},{"ID":1861,"VillageID":4612,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-05T03:07:19Z","ServerKey":"us63"},{"ID":1862,"VillageID":7125,"NewOwnerID":775730,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-02-05T03:14:23Z","ServerKey":"us63"},{"ID":1863,"VillageID":5980,"NewOwnerID":848954655,"NewTribeID":163,"OldOwnerID":848955059,"OldTribeID":0,"Points":479,"CreatedAt":"2023-02-05T03:22:56Z","ServerKey":"us63"},{"ID":1864,"VillageID":173,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":35,"Points":1457,"CreatedAt":"2023-02-05T03:23:00Z","ServerKey":"us63"},{"ID":1865,"VillageID":3031,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":848935728,"OldTribeID":53,"Points":4172,"CreatedAt":"2023-02-05T04:03:01Z","ServerKey":"us63"},{"ID":1866,"VillageID":4311,"NewOwnerID":848954361,"NewTribeID":183,"OldOwnerID":848954465,"OldTribeID":0,"Points":3457,"CreatedAt":"2023-02-05T04:04:21Z","ServerKey":"us63"},{"ID":1867,"VillageID":1443,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":701261,"OldTribeID":25,"Points":1740,"CreatedAt":"2023-02-05T04:20:03Z","ServerKey":"us63"},{"ID":1868,"VillageID":6247,"NewOwnerID":848946291,"NewTribeID":0,"OldOwnerID":848950167,"OldTribeID":176,"Points":2037,"CreatedAt":"2023-02-05T04:23:47Z","ServerKey":"us63"},{"ID":1869,"VillageID":4876,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-05T04:33:01Z","ServerKey":"us63"},{"ID":1870,"VillageID":1260,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848954190,"OldTribeID":35,"Points":1541,"CreatedAt":"2023-02-05T04:33:56Z","ServerKey":"us63"},{"ID":1871,"VillageID":2602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-05T04:45:38Z","ServerKey":"us63"},{"ID":1872,"VillageID":432,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848954199,"OldTribeID":35,"Points":8118,"CreatedAt":"2023-02-05T04:45:40Z","ServerKey":"us63"},{"ID":1873,"VillageID":3891,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-05T04:46:17Z","ServerKey":"us63"},{"ID":1874,"VillageID":1215,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":667167,"OldTribeID":24,"Points":1340,"CreatedAt":"2023-02-05T04:46:25Z","ServerKey":"us63"},{"ID":1875,"VillageID":1502,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848952005,"OldTribeID":4,"Points":3378,"CreatedAt":"2023-02-05T04:52:39Z","ServerKey":"us63"},{"ID":1876,"VillageID":5828,"NewOwnerID":334822,"NewTribeID":163,"OldOwnerID":848943251,"OldTribeID":0,"Points":539,"CreatedAt":"2023-02-05T05:17:29Z","ServerKey":"us63"},{"ID":1877,"VillageID":1081,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-05T05:27:13Z","ServerKey":"us63"},{"ID":1878,"VillageID":2454,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2062,"CreatedAt":"2023-02-05T05:40:01Z","ServerKey":"us63"},{"ID":1879,"VillageID":1256,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-02-05T06:12:28Z","ServerKey":"us63"},{"ID":1880,"VillageID":7204,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-05T06:22:20Z","ServerKey":"us63"},{"ID":1881,"VillageID":1773,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-05T06:26:43Z","ServerKey":"us63"},{"ID":1882,"VillageID":1085,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-05T06:39:21Z","ServerKey":"us63"},{"ID":1883,"VillageID":2818,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848951415,"OldTribeID":46,"Points":2483,"CreatedAt":"2023-02-05T06:43:56Z","ServerKey":"us63"},{"ID":1884,"VillageID":42,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-05T07:13:45Z","ServerKey":"us63"},{"ID":1885,"VillageID":4135,"NewOwnerID":848954776,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-05T07:24:00Z","ServerKey":"us63"},{"ID":1886,"VillageID":1470,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-05T07:25:34Z","ServerKey":"us63"},{"ID":1887,"VillageID":1168,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":918,"CreatedAt":"2023-02-05T07:32:06Z","ServerKey":"us63"},{"ID":1888,"VillageID":1168,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":918,"CreatedAt":"2023-02-05T07:32:06Z","ServerKey":"us63"},{"ID":1889,"VillageID":502,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-05T07:40:18Z","ServerKey":"us63"},{"ID":1890,"VillageID":2108,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-05T07:46:59Z","ServerKey":"us63"},{"ID":1891,"VillageID":1293,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-05T07:47:58Z","ServerKey":"us63"},{"ID":1892,"VillageID":4384,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":848888672,"OldTribeID":134,"Points":1233,"CreatedAt":"2023-02-05T07:50:53Z","ServerKey":"us63"},{"ID":1893,"VillageID":7033,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-05T07:54:08Z","ServerKey":"us63"},{"ID":1894,"VillageID":1678,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-05T08:01:51Z","ServerKey":"us63"},{"ID":1895,"VillageID":1820,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-05T08:02:23Z","ServerKey":"us63"},{"ID":1896,"VillageID":1230,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-05T08:17:59Z","ServerKey":"us63"},{"ID":1897,"VillageID":1484,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":848910455,"OldTribeID":4,"Points":265,"CreatedAt":"2023-02-05T08:34:54Z","ServerKey":"us63"},{"ID":1898,"VillageID":774,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-05T08:47:51Z","ServerKey":"us63"},{"ID":1899,"VillageID":4244,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-05T09:17:06Z","ServerKey":"us63"},{"ID":1900,"VillageID":980,"NewOwnerID":848949948,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":3360,"CreatedAt":"2023-02-05T09:37:12Z","ServerKey":"us63"},{"ID":1901,"VillageID":332,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":667167,"OldTribeID":24,"Points":5178,"CreatedAt":"2023-02-05T09:38:27Z","ServerKey":"us63"},{"ID":1902,"VillageID":4835,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":145,"CreatedAt":"2023-02-05T09:56:19Z","ServerKey":"us63"},{"ID":1903,"VillageID":1048,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-05T10:00:24Z","ServerKey":"us63"},{"ID":1904,"VillageID":2476,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848931764,"OldTribeID":35,"Points":3450,"CreatedAt":"2023-02-05T10:30:01Z","ServerKey":"us63"},{"ID":1905,"VillageID":2476,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848940894,"OldTribeID":11,"Points":3450,"CreatedAt":"2023-02-05T10:30:01Z","ServerKey":"us63"},{"ID":1906,"VillageID":7231,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-05T10:46:13Z","ServerKey":"us63"},{"ID":1907,"VillageID":1086,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-05T11:24:06Z","ServerKey":"us63"},{"ID":1908,"VillageID":6479,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-05T11:29:36Z","ServerKey":"us63"},{"ID":1909,"VillageID":6810,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-05T11:34:03Z","ServerKey":"us63"},{"ID":1910,"VillageID":192,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":848954196,"OldTribeID":35,"Points":2051,"CreatedAt":"2023-02-05T11:45:00Z","ServerKey":"us63"},{"ID":1911,"VillageID":2589,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848912046,"OldTribeID":41,"Points":1873,"CreatedAt":"2023-02-05T11:48:42Z","ServerKey":"us63"},{"ID":1912,"VillageID":5439,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-05T12:03:08Z","ServerKey":"us63"},{"ID":1913,"VillageID":2912,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848945000,"OldTribeID":66,"Points":7162,"CreatedAt":"2023-02-05T12:21:11Z","ServerKey":"us63"},{"ID":1914,"VillageID":5995,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-05T12:27:37Z","ServerKey":"us63"},{"ID":1915,"VillageID":4228,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-05T12:29:32Z","ServerKey":"us63"},{"ID":1916,"VillageID":629,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-05T12:31:55Z","ServerKey":"us63"},{"ID":1917,"VillageID":2820,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-05T13:22:29Z","ServerKey":"us63"},{"ID":1918,"VillageID":3031,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848954700,"OldTribeID":32,"Points":4237,"CreatedAt":"2023-02-05T13:44:04Z","ServerKey":"us63"},{"ID":1919,"VillageID":136,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848881936,"OldTribeID":5,"Points":3242,"CreatedAt":"2023-02-05T13:46:29Z","ServerKey":"us63"},{"ID":1920,"VillageID":136,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":503636,"OldTribeID":138,"Points":3242,"CreatedAt":"2023-02-05T13:46:29Z","ServerKey":"us63"},{"ID":1921,"VillageID":565,"NewOwnerID":697760,"NewTribeID":34,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-05T13:51:09Z","ServerKey":"us63"},{"ID":1922,"VillageID":84,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-05T13:59:23Z","ServerKey":"us63"},{"ID":1923,"VillageID":1994,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848954190,"OldTribeID":35,"Points":1214,"CreatedAt":"2023-02-05T14:22:42Z","ServerKey":"us63"},{"ID":1924,"VillageID":4013,"NewOwnerID":848881027,"NewTribeID":0,"OldOwnerID":533169,"OldTribeID":53,"Points":1285,"CreatedAt":"2023-02-05T14:41:44Z","ServerKey":"us63"},{"ID":1925,"VillageID":5203,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848954945,"OldTribeID":127,"Points":1075,"CreatedAt":"2023-02-05T14:52:12Z","ServerKey":"us63"},{"ID":1926,"VillageID":2589,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":848954611,"OldTribeID":32,"Points":1902,"CreatedAt":"2023-02-05T15:29:40Z","ServerKey":"us63"},{"ID":1927,"VillageID":2589,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":741494,"OldTribeID":2,"Points":1902,"CreatedAt":"2023-02-05T15:29:40Z","ServerKey":"us63"},{"ID":1929,"VillageID":2589,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":741494,"OldTribeID":2,"Points":1849,"CreatedAt":"2023-02-05T15:29:42Z","ServerKey":"us63"},{"ID":1930,"VillageID":6058,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-05T15:36:44Z","ServerKey":"us63"},{"ID":1931,"VillageID":66,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":208,"CreatedAt":"2023-02-05T15:42:07Z","ServerKey":"us63"},{"ID":1932,"VillageID":7097,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":751295,"OldTribeID":189,"Points":3199,"CreatedAt":"2023-02-05T15:55:30Z","ServerKey":"us63"},{"ID":1933,"VillageID":2327,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-05T15:58:09Z","ServerKey":"us63"},{"ID":1934,"VillageID":5494,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-05T16:03:01Z","ServerKey":"us63"},{"ID":1935,"VillageID":5992,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":848945639,"OldTribeID":0,"Points":662,"CreatedAt":"2023-02-05T16:10:17Z","ServerKey":"us63"},{"ID":1936,"VillageID":966,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":788057,"OldTribeID":0,"Points":2789,"CreatedAt":"2023-02-05T16:33:10Z","ServerKey":"us63"},{"ID":1937,"VillageID":7930,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":38,"CreatedAt":"2023-02-05T16:42:20Z","ServerKey":"us63"},{"ID":1938,"VillageID":1068,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848910736,"OldTribeID":198,"Points":2118,"CreatedAt":"2023-02-05T16:48:10Z","ServerKey":"us63"},{"ID":1939,"VillageID":370,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-05T16:52:38Z","ServerKey":"us63"},{"ID":1940,"VillageID":1847,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":727,"CreatedAt":"2023-02-05T16:57:29Z","ServerKey":"us63"},{"ID":1941,"VillageID":3119,"NewOwnerID":848951653,"NewTribeID":65,"OldOwnerID":848943139,"OldTribeID":0,"Points":1010,"CreatedAt":"2023-02-05T17:34:00Z","ServerKey":"us63"},{"ID":1942,"VillageID":5565,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-05T17:37:14Z","ServerKey":"us63"},{"ID":1943,"VillageID":644,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-05T17:48:18Z","ServerKey":"us63"},{"ID":1944,"VillageID":1883,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":2300,"CreatedAt":"2023-02-05T18:04:27Z","ServerKey":"us63"},{"ID":1945,"VillageID":4850,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-05T18:05:40Z","ServerKey":"us63"},{"ID":1946,"VillageID":5146,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848924974,"OldTribeID":4,"Points":3812,"CreatedAt":"2023-02-05T18:13:20Z","ServerKey":"us63"},{"ID":1947,"VillageID":5146,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":750685,"OldTribeID":76,"Points":3532,"CreatedAt":"2023-02-05T18:13:21Z","ServerKey":"us63"},{"ID":1948,"VillageID":2335,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":550,"CreatedAt":"2023-02-05T18:26:29Z","ServerKey":"us63"},{"ID":1949,"VillageID":682,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":848953285,"OldTribeID":0,"Points":1889,"CreatedAt":"2023-02-05T18:41:34Z","ServerKey":"us63"},{"ID":1950,"VillageID":5342,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":682,"CreatedAt":"2023-02-05T19:04:04Z","ServerKey":"us63"},{"ID":1951,"VillageID":415,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-05T19:36:15Z","ServerKey":"us63"},{"ID":1952,"VillageID":6258,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-05T19:37:22Z","ServerKey":"us63"},{"ID":1953,"VillageID":1233,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-05T19:39:19Z","ServerKey":"us63"},{"ID":1954,"VillageID":7760,"NewOwnerID":455512,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-02-05T19:40:33Z","ServerKey":"us63"},{"ID":1955,"VillageID":1284,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-05T19:47:09Z","ServerKey":"us63"},{"ID":1956,"VillageID":221,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-05T19:59:40Z","ServerKey":"us63"},{"ID":1957,"VillageID":816,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-05T20:02:18Z","ServerKey":"us63"},{"ID":1958,"VillageID":3523,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-05T20:05:14Z","ServerKey":"us63"},{"ID":1959,"VillageID":332,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936926,"OldTribeID":0,"Points":5188,"CreatedAt":"2023-02-05T20:05:59Z","ServerKey":"us63"},{"ID":1960,"VillageID":5234,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-05T20:15:06Z","ServerKey":"us63"},{"ID":1961,"VillageID":1411,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":567,"CreatedAt":"2023-02-05T20:35:32Z","ServerKey":"us63"},{"ID":1962,"VillageID":704,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-05T21:13:57Z","ServerKey":"us63"},{"ID":1963,"VillageID":4713,"NewOwnerID":848949067,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-05T21:47:35Z","ServerKey":"us63"},{"ID":1964,"VillageID":1850,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-05T21:48:00Z","ServerKey":"us63"},{"ID":1965,"VillageID":7075,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-05T21:53:17Z","ServerKey":"us63"},{"ID":1966,"VillageID":2162,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-05T21:59:46Z","ServerKey":"us63"},{"ID":1967,"VillageID":3920,"NewOwnerID":848954812,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-05T22:05:37Z","ServerKey":"us63"},{"ID":1968,"VillageID":1458,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-05T22:38:00Z","ServerKey":"us63"},{"ID":1969,"VillageID":4419,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-05T22:47:19Z","ServerKey":"us63"},{"ID":1970,"VillageID":1770,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1074,"CreatedAt":"2023-02-05T22:52:51Z","ServerKey":"us63"},{"ID":1971,"VillageID":3008,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-05T22:57:11Z","ServerKey":"us63"},{"ID":1972,"VillageID":1263,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-05T22:58:49Z","ServerKey":"us63"},{"ID":1973,"VillageID":2364,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-05T23:14:56Z","ServerKey":"us63"},{"ID":1974,"VillageID":2312,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":508,"CreatedAt":"2023-02-05T23:18:48Z","ServerKey":"us63"},{"ID":1975,"VillageID":1637,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-05T23:43:06Z","ServerKey":"us63"},{"ID":1976,"VillageID":1525,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-05T23:43:30Z","ServerKey":"us63"},{"ID":1977,"VillageID":5556,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-05T23:48:08Z","ServerKey":"us63"},{"ID":1978,"VillageID":8083,"NewOwnerID":848954608,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-06T00:03:59Z","ServerKey":"us63"},{"ID":1979,"VillageID":7351,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-06T00:12:46Z","ServerKey":"us63"},{"ID":1980,"VillageID":1379,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-06T00:16:10Z","ServerKey":"us63"},{"ID":1981,"VillageID":6249,"NewOwnerID":226713,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-06T00:16:57Z","ServerKey":"us63"},{"ID":1982,"VillageID":2537,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-06T00:46:52Z","ServerKey":"us63"},{"ID":1983,"VillageID":1057,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":297,"CreatedAt":"2023-02-06T00:57:51Z","ServerKey":"us63"},{"ID":1984,"VillageID":771,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-06T01:00:15Z","ServerKey":"us63"},{"ID":1985,"VillageID":3496,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-06T01:03:11Z","ServerKey":"us63"},{"ID":1986,"VillageID":3222,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":848954648,"OldTribeID":130,"Points":1520,"CreatedAt":"2023-02-06T01:20:02Z","ServerKey":"us63"},{"ID":1987,"VillageID":4680,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-06T01:22:45Z","ServerKey":"us63"},{"ID":1988,"VillageID":2179,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-06T01:33:33Z","ServerKey":"us63"},{"ID":1989,"VillageID":4029,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-06T01:44:32Z","ServerKey":"us63"},{"ID":1990,"VillageID":422,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":733,"CreatedAt":"2023-02-06T01:51:37Z","ServerKey":"us63"},{"ID":1991,"VillageID":7994,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-06T02:16:44Z","ServerKey":"us63"},{"ID":1992,"VillageID":1311,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-06T02:28:12Z","ServerKey":"us63"},{"ID":1993,"VillageID":4340,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-06T03:15:36Z","ServerKey":"us63"},{"ID":1994,"VillageID":749,"NewOwnerID":848949948,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-06T03:25:02Z","ServerKey":"us63"},{"ID":1995,"VillageID":622,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-06T03:27:15Z","ServerKey":"us63"},{"ID":1996,"VillageID":1429,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-06T03:31:03Z","ServerKey":"us63"},{"ID":1997,"VillageID":285,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-06T03:34:07Z","ServerKey":"us63"},{"ID":1998,"VillageID":1480,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-06T03:50:31Z","ServerKey":"us63"},{"ID":1999,"VillageID":1403,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-06T04:31:51Z","ServerKey":"us63"},{"ID":2000,"VillageID":3461,"NewOwnerID":848954555,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-06T04:35:50Z","ServerKey":"us63"},{"ID":2001,"VillageID":4403,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":6167,"CreatedAt":"2023-02-06T04:51:24Z","ServerKey":"us63"},{"ID":2002,"VillageID":901,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":767831,"OldTribeID":0,"Points":2002,"CreatedAt":"2023-02-06T04:56:25Z","ServerKey":"us63"},{"ID":2003,"VillageID":1020,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-06T05:07:42Z","ServerKey":"us63"},{"ID":2004,"VillageID":2343,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-06T05:18:46Z","ServerKey":"us63"},{"ID":2005,"VillageID":5712,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-06T05:19:00Z","ServerKey":"us63"},{"ID":2006,"VillageID":2914,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-06T05:27:46Z","ServerKey":"us63"},{"ID":2007,"VillageID":448,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848954218,"OldTribeID":35,"Points":7376,"CreatedAt":"2023-02-06T05:32:39Z","ServerKey":"us63"},{"ID":2008,"VillageID":953,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":848951612,"OldTribeID":35,"Points":1227,"CreatedAt":"2023-02-06T05:37:05Z","ServerKey":"us63"},{"ID":2009,"VillageID":4499,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":848924572,"OldTribeID":152,"Points":3301,"CreatedAt":"2023-02-06T05:56:58Z","ServerKey":"us63"},{"ID":2010,"VillageID":1336,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":368,"CreatedAt":"2023-02-06T06:04:01Z","ServerKey":"us63"},{"ID":2011,"VillageID":4044,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-06T06:12:27Z","ServerKey":"us63"},{"ID":2012,"VillageID":1578,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-06T06:55:46Z","ServerKey":"us63"},{"ID":2013,"VillageID":4690,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-06T07:03:52Z","ServerKey":"us63"},{"ID":2014,"VillageID":2411,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-06T07:14:45Z","ServerKey":"us63"},{"ID":2015,"VillageID":337,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-06T07:23:05Z","ServerKey":"us63"},{"ID":2016,"VillageID":4403,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":572558,"OldTribeID":48,"Points":6143,"CreatedAt":"2023-02-06T07:38:58Z","ServerKey":"us63"},{"ID":2017,"VillageID":1940,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848954170,"OldTribeID":35,"Points":1338,"CreatedAt":"2023-02-06T07:46:00Z","ServerKey":"us63"},{"ID":2018,"VillageID":3135,"NewOwnerID":848941569,"NewTribeID":91,"OldOwnerID":848943213,"OldTribeID":0,"Points":1006,"CreatedAt":"2023-02-06T07:57:54Z","ServerKey":"us63"},{"ID":2019,"VillageID":3211,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-06T08:24:32Z","ServerKey":"us63"},{"ID":2020,"VillageID":459,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-06T08:30:01Z","ServerKey":"us63"},{"ID":2021,"VillageID":2436,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-06T08:32:53Z","ServerKey":"us63"},{"ID":2022,"VillageID":2477,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-06T08:53:01Z","ServerKey":"us63"},{"ID":2023,"VillageID":2980,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-06T09:03:57Z","ServerKey":"us63"},{"ID":2024,"VillageID":540,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-06T09:04:06Z","ServerKey":"us63"},{"ID":2025,"VillageID":151,"NewOwnerID":848951914,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-06T09:18:37Z","ServerKey":"us63"},{"ID":2026,"VillageID":4307,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-06T09:29:02Z","ServerKey":"us63"},{"ID":2027,"VillageID":2607,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":848954360,"OldTribeID":25,"Points":982,"CreatedAt":"2023-02-06T09:36:56Z","ServerKey":"us63"},{"ID":2028,"VillageID":5172,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-06T09:45:09Z","ServerKey":"us63"},{"ID":2029,"VillageID":4141,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-06T09:58:36Z","ServerKey":"us63"},{"ID":2030,"VillageID":654,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-06T10:01:08Z","ServerKey":"us63"},{"ID":2031,"VillageID":3951,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":742729,"OldTribeID":0,"Points":1754,"CreatedAt":"2023-02-06T10:05:35Z","ServerKey":"us63"},{"ID":2032,"VillageID":3951,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":848954637,"OldTribeID":11,"Points":1730,"CreatedAt":"2023-02-06T10:05:39Z","ServerKey":"us63"},{"ID":2033,"VillageID":2755,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848950265,"OldTribeID":46,"Points":2387,"CreatedAt":"2023-02-06T10:15:03Z","ServerKey":"us63"},{"ID":2034,"VillageID":2547,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2242,"CreatedAt":"2023-02-06T10:22:07Z","ServerKey":"us63"},{"ID":2035,"VillageID":132,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":795044,"OldTribeID":69,"Points":5785,"CreatedAt":"2023-02-06T10:24:26Z","ServerKey":"us63"},{"ID":2036,"VillageID":3283,"NewOwnerID":699876,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-06T10:27:35Z","ServerKey":"us63"},{"ID":2037,"VillageID":11,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-06T10:37:35Z","ServerKey":"us63"},{"ID":2038,"VillageID":6635,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-06T10:41:33Z","ServerKey":"us63"},{"ID":2039,"VillageID":4798,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-06T10:44:09Z","ServerKey":"us63"},{"ID":2040,"VillageID":6259,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":589825,"OldTribeID":182,"Points":6540,"CreatedAt":"2023-02-06T10:51:57Z","ServerKey":"us63"},{"ID":2041,"VillageID":6259,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":775729,"OldTribeID":105,"Points":6540,"CreatedAt":"2023-02-06T10:51:57Z","ServerKey":"us63"},{"ID":2042,"VillageID":1528,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-06T10:57:22Z","ServerKey":"us63"},{"ID":2043,"VillageID":2584,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":575,"CreatedAt":"2023-02-06T11:01:21Z","ServerKey":"us63"},{"ID":2044,"VillageID":4206,"NewOwnerID":848954776,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":172,"CreatedAt":"2023-02-06T11:02:36Z","ServerKey":"us63"},{"ID":2045,"VillageID":1700,"NewOwnerID":848937811,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-06T11:05:09Z","ServerKey":"us63"},{"ID":2046,"VillageID":1835,"NewOwnerID":744645,"NewTribeID":183,"OldOwnerID":848954360,"OldTribeID":25,"Points":2869,"CreatedAt":"2023-02-06T11:28:37Z","ServerKey":"us63"},{"ID":2047,"VillageID":4868,"NewOwnerID":780325,"NewTribeID":11,"OldOwnerID":848924572,"OldTribeID":152,"Points":1737,"CreatedAt":"2023-02-06T11:31:29Z","ServerKey":"us63"},{"ID":2048,"VillageID":557,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":4544,"CreatedAt":"2023-02-06T11:54:29Z","ServerKey":"us63"},{"ID":2049,"VillageID":6377,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":392186,"OldTribeID":188,"Points":1776,"CreatedAt":"2023-02-06T12:20:43Z","ServerKey":"us63"},{"ID":2050,"VillageID":249,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":383,"CreatedAt":"2023-02-06T12:37:16Z","ServerKey":"us63"},{"ID":2051,"VillageID":4086,"NewOwnerID":848952678,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-06T13:04:45Z","ServerKey":"us63"},{"ID":2052,"VillageID":1157,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-06T13:39:11Z","ServerKey":"us63"},{"ID":2053,"VillageID":344,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":7374,"CreatedAt":"2023-02-06T13:42:49Z","ServerKey":"us63"},{"ID":2054,"VillageID":7660,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-02-06T13:44:18Z","ServerKey":"us63"},{"ID":2055,"VillageID":1564,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848952757,"OldTribeID":42,"Points":2720,"CreatedAt":"2023-02-06T13:58:58Z","ServerKey":"us63"},{"ID":2056,"VillageID":1134,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848941179,"OldTribeID":35,"Points":8153,"CreatedAt":"2023-02-06T14:22:48Z","ServerKey":"us63"},{"ID":2057,"VillageID":1795,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848941179,"OldTribeID":35,"Points":3950,"CreatedAt":"2023-02-06T14:22:48Z","ServerKey":"us63"},{"ID":2058,"VillageID":4173,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":848954779,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-06T14:35:51Z","ServerKey":"us63"},{"ID":2059,"VillageID":116,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-06T14:45:40Z","ServerKey":"us63"},{"ID":2060,"VillageID":1,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848950001,"OldTribeID":22,"Points":8491,"CreatedAt":"2023-02-06T15:11:00Z","ServerKey":"us63"},{"ID":2061,"VillageID":4317,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-06T15:28:24Z","ServerKey":"us63"},{"ID":2062,"VillageID":2140,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":744969,"OldTribeID":25,"Points":2731,"CreatedAt":"2023-02-06T15:35:07Z","ServerKey":"us63"},{"ID":2063,"VillageID":3488,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-06T15:36:31Z","ServerKey":"us63"},{"ID":2064,"VillageID":2217,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2708,"CreatedAt":"2023-02-06T15:53:44Z","ServerKey":"us63"},{"ID":2065,"VillageID":1683,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1040,"CreatedAt":"2023-02-06T16:18:08Z","ServerKey":"us63"},{"ID":2066,"VillageID":5870,"NewOwnerID":848955133,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-06T16:19:15Z","ServerKey":"us63"},{"ID":2067,"VillageID":190,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-06T16:37:43Z","ServerKey":"us63"},{"ID":2068,"VillageID":7774,"NewOwnerID":455512,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-06T16:57:50Z","ServerKey":"us63"},{"ID":2069,"VillageID":4722,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-06T17:15:34Z","ServerKey":"us63"},{"ID":2070,"VillageID":2957,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-06T17:25:10Z","ServerKey":"us63"},{"ID":2071,"VillageID":317,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848943308,"OldTribeID":22,"Points":6717,"CreatedAt":"2023-02-06T17:30:28Z","ServerKey":"us63"},{"ID":2072,"VillageID":660,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-06T17:32:29Z","ServerKey":"us63"},{"ID":2073,"VillageID":1402,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":613,"CreatedAt":"2023-02-06T17:51:32Z","ServerKey":"us63"},{"ID":2074,"VillageID":1534,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-06T18:20:41Z","ServerKey":"us63"},{"ID":2075,"VillageID":1060,"NewOwnerID":114434,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-06T18:27:23Z","ServerKey":"us63"},{"ID":2076,"VillageID":4960,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-06T18:39:00Z","ServerKey":"us63"},{"ID":2077,"VillageID":463,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-06T18:50:13Z","ServerKey":"us63"},{"ID":2078,"VillageID":2654,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":9065,"CreatedAt":"2023-02-06T18:55:40Z","ServerKey":"us63"},{"ID":2079,"VillageID":2654,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":9065,"CreatedAt":"2023-02-06T18:56:30Z","ServerKey":"us63"},{"ID":2080,"VillageID":1683,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":848909148,"OldTribeID":20,"Points":1016,"CreatedAt":"2023-02-06T19:06:04Z","ServerKey":"us63"},{"ID":2081,"VillageID":2700,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-06T19:07:35Z","ServerKey":"us63"},{"ID":2082,"VillageID":4897,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-06T19:11:33Z","ServerKey":"us63"},{"ID":2083,"VillageID":798,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-06T19:19:14Z","ServerKey":"us63"},{"ID":2084,"VillageID":2175,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-06T19:35:44Z","ServerKey":"us63"},{"ID":2085,"VillageID":410,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-06T19:42:47Z","ServerKey":"us63"},{"ID":2086,"VillageID":2347,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-06T19:58:14Z","ServerKey":"us63"},{"ID":2087,"VillageID":1431,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-06T20:10:08Z","ServerKey":"us63"},{"ID":2088,"VillageID":1683,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848883123,"OldTribeID":12,"Points":1036,"CreatedAt":"2023-02-06T20:14:10Z","ServerKey":"us63"},{"ID":2089,"VillageID":1683,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":1036,"CreatedAt":"2023-02-06T20:14:10Z","ServerKey":"us63"},{"ID":2091,"VillageID":2695,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":291491,"OldTribeID":65,"Points":3213,"CreatedAt":"2023-02-06T20:32:08Z","ServerKey":"us63"},{"ID":2092,"VillageID":4310,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-06T20:41:20Z","ServerKey":"us63"},{"ID":2093,"VillageID":69,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-06T20:51:39Z","ServerKey":"us63"},{"ID":2094,"VillageID":1769,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-06T21:13:12Z","ServerKey":"us63"},{"ID":2095,"VillageID":6114,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-06T21:13:54Z","ServerKey":"us63"},{"ID":2096,"VillageID":4602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-06T21:15:24Z","ServerKey":"us63"},{"ID":2097,"VillageID":4602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":173,"CreatedAt":"2023-02-06T21:15:24Z","ServerKey":"us63"},{"ID":2099,"VillageID":318,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-06T21:51:53Z","ServerKey":"us63"},{"ID":2100,"VillageID":1674,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":3770,"CreatedAt":"2023-02-06T22:04:50Z","ServerKey":"us63"},{"ID":2101,"VillageID":4386,"NewOwnerID":848913418,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-06T22:13:04Z","ServerKey":"us63"},{"ID":2102,"VillageID":174,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-06T22:19:12Z","ServerKey":"us63"},{"ID":2103,"VillageID":4582,"NewOwnerID":848954768,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-06T22:28:18Z","ServerKey":"us63"},{"ID":2104,"VillageID":4379,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-06T22:41:58Z","ServerKey":"us63"},{"ID":2105,"VillageID":1909,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-06T22:55:58Z","ServerKey":"us63"},{"ID":2106,"VillageID":4988,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-06T23:20:57Z","ServerKey":"us63"},{"ID":2107,"VillageID":590,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":848951434,"OldTribeID":25,"Points":3058,"CreatedAt":"2023-02-06T23:24:53Z","ServerKey":"us63"},{"ID":2108,"VillageID":590,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":744645,"OldTribeID":85,"Points":3058,"CreatedAt":"2023-02-06T23:24:53Z","ServerKey":"us63"},{"ID":2109,"VillageID":2548,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-06T23:29:04Z","ServerKey":"us63"},{"ID":2110,"VillageID":1717,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-06T23:35:51Z","ServerKey":"us63"},{"ID":2111,"VillageID":7733,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-07T00:05:13Z","ServerKey":"us63"},{"ID":2112,"VillageID":52,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-07T00:19:22Z","ServerKey":"us63"},{"ID":2113,"VillageID":7739,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-07T00:25:50Z","ServerKey":"us63"},{"ID":2114,"VillageID":6450,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-07T00:36:27Z","ServerKey":"us63"},{"ID":2115,"VillageID":2213,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":744969,"OldTribeID":25,"Points":1140,"CreatedAt":"2023-02-07T00:43:45Z","ServerKey":"us63"},{"ID":2116,"VillageID":1712,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-07T00:49:35Z","ServerKey":"us63"},{"ID":2117,"VillageID":1236,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-07T01:03:51Z","ServerKey":"us63"},{"ID":2118,"VillageID":1532,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-07T01:15:56Z","ServerKey":"us63"},{"ID":2119,"VillageID":1317,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-07T01:18:14Z","ServerKey":"us63"},{"ID":2120,"VillageID":3614,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-07T01:36:58Z","ServerKey":"us63"},{"ID":2121,"VillageID":545,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T01:45:22Z","ServerKey":"us63"},{"ID":2122,"VillageID":7015,"NewOwnerID":334822,"NewTribeID":163,"OldOwnerID":231006,"OldTribeID":0,"Points":884,"CreatedAt":"2023-02-07T01:46:03Z","ServerKey":"us63"},{"ID":2123,"VillageID":2031,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-07T01:49:49Z","ServerKey":"us63"},{"ID":2124,"VillageID":6616,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-07T01:52:52Z","ServerKey":"us63"},{"ID":2125,"VillageID":2800,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-07T02:11:09Z","ServerKey":"us63"},{"ID":2126,"VillageID":189,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952032,"OldTribeID":25,"Points":1518,"CreatedAt":"2023-02-07T02:14:32Z","ServerKey":"us63"},{"ID":2127,"VillageID":734,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-07T02:14:41Z","ServerKey":"us63"},{"ID":2128,"VillageID":4602,"NewOwnerID":848952678,"NewTribeID":61,"OldOwnerID":848953068,"OldTribeID":85,"Points":287,"CreatedAt":"2023-02-07T02:17:59Z","ServerKey":"us63"},{"ID":2129,"VillageID":298,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-07T02:26:08Z","ServerKey":"us63"},{"ID":2130,"VillageID":7776,"NewOwnerID":848954668,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-07T02:38:31Z","ServerKey":"us63"},{"ID":2131,"VillageID":5033,"NewOwnerID":848940295,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-07T02:39:27Z","ServerKey":"us63"},{"ID":2132,"VillageID":1569,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-07T02:45:03Z","ServerKey":"us63"},{"ID":2133,"VillageID":1076,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-07T03:08:43Z","ServerKey":"us63"},{"ID":2134,"VillageID":1344,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-07T03:12:06Z","ServerKey":"us63"},{"ID":2135,"VillageID":150,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-07T03:32:15Z","ServerKey":"us63"},{"ID":2136,"VillageID":4847,"NewOwnerID":848881027,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-07T04:02:33Z","ServerKey":"us63"},{"ID":2137,"VillageID":675,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-07T04:02:54Z","ServerKey":"us63"},{"ID":2138,"VillageID":5074,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-07T04:23:25Z","ServerKey":"us63"},{"ID":2139,"VillageID":1622,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-07T04:37:21Z","ServerKey":"us63"},{"ID":2140,"VillageID":8064,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-07T04:37:48Z","ServerKey":"us63"},{"ID":2141,"VillageID":3391,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-07T04:45:00Z","ServerKey":"us63"},{"ID":2142,"VillageID":3391,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848954640,"OldTribeID":2,"Points":308,"CreatedAt":"2023-02-07T04:45:00Z","ServerKey":"us63"},{"ID":2143,"VillageID":3391,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848954640,"OldTribeID":2,"Points":308,"CreatedAt":"2023-02-07T04:45:02Z","ServerKey":"us63"},{"ID":2144,"VillageID":4946,"NewOwnerID":848938594,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-07T05:00:07Z","ServerKey":"us63"},{"ID":2145,"VillageID":2575,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":744969,"OldTribeID":25,"Points":7534,"CreatedAt":"2023-02-07T05:10:03Z","ServerKey":"us63"},{"ID":2146,"VillageID":1087,"NewOwnerID":848953046,"NewTribeID":35,"OldOwnerID":848910736,"OldTribeID":198,"Points":3082,"CreatedAt":"2023-02-07T05:25:40Z","ServerKey":"us63"},{"ID":2147,"VillageID":2525,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848954466,"OldTribeID":83,"Points":4754,"CreatedAt":"2023-02-07T05:39:31Z","ServerKey":"us63"},{"ID":2148,"VillageID":4510,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-07T05:56:51Z","ServerKey":"us63"},{"ID":2149,"VillageID":5602,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":848947928,"OldTribeID":14,"Points":1152,"CreatedAt":"2023-02-07T06:17:19Z","ServerKey":"us63"},{"ID":2150,"VillageID":5755,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-07T06:21:41Z","ServerKey":"us63"},{"ID":2151,"VillageID":1255,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-07T06:34:41Z","ServerKey":"us63"},{"ID":2152,"VillageID":4314,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-07T06:51:55Z","ServerKey":"us63"},{"ID":2153,"VillageID":775,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-07T06:54:33Z","ServerKey":"us63"},{"ID":2154,"VillageID":673,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-07T07:22:38Z","ServerKey":"us63"},{"ID":2155,"VillageID":231,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-07T07:26:06Z","ServerKey":"us63"},{"ID":2156,"VillageID":8018,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":35,"CreatedAt":"2023-02-07T07:36:04Z","ServerKey":"us63"},{"ID":2157,"VillageID":1094,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-07T07:46:30Z","ServerKey":"us63"},{"ID":2158,"VillageID":6916,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-07T08:04:37Z","ServerKey":"us63"},{"ID":2159,"VillageID":1677,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":687,"CreatedAt":"2023-02-07T08:08:30Z","ServerKey":"us63"},{"ID":2160,"VillageID":440,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-07T08:10:29Z","ServerKey":"us63"},{"ID":2161,"VillageID":6151,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-07T08:14:02Z","ServerKey":"us63"},{"ID":2162,"VillageID":381,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-07T08:25:43Z","ServerKey":"us63"},{"ID":2163,"VillageID":3860,"NewOwnerID":848913418,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-07T08:33:54Z","ServerKey":"us63"},{"ID":2164,"VillageID":244,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T08:35:47Z","ServerKey":"us63"},{"ID":2165,"VillageID":7087,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-07T08:43:19Z","ServerKey":"us63"},{"ID":2166,"VillageID":1621,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":848954170,"OldTribeID":35,"Points":1643,"CreatedAt":"2023-02-07T08:44:20Z","ServerKey":"us63"},{"ID":2167,"VillageID":397,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-07T09:21:48Z","ServerKey":"us63"},{"ID":2168,"VillageID":1999,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-07T09:46:21Z","ServerKey":"us63"},{"ID":2169,"VillageID":2729,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-07T10:23:22Z","ServerKey":"us63"},{"ID":2170,"VillageID":500,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":848941179,"OldTribeID":35,"Points":4824,"CreatedAt":"2023-02-07T10:33:55Z","ServerKey":"us63"},{"ID":2171,"VillageID":4102,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-07T10:50:59Z","ServerKey":"us63"},{"ID":2172,"VillageID":5954,"NewOwnerID":848954762,"NewTribeID":119,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-07T11:10:54Z","ServerKey":"us63"},{"ID":2173,"VillageID":893,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-07T11:17:16Z","ServerKey":"us63"},{"ID":2174,"VillageID":99,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-07T11:18:48Z","ServerKey":"us63"},{"ID":2175,"VillageID":1138,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-07T11:29:29Z","ServerKey":"us63"},{"ID":2176,"VillageID":8181,"NewOwnerID":848945828,"NewTribeID":105,"OldOwnerID":848953097,"OldTribeID":137,"Points":464,"CreatedAt":"2023-02-07T11:31:29Z","ServerKey":"us63"},{"ID":2177,"VillageID":873,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-07T11:42:05Z","ServerKey":"us63"},{"ID":2178,"VillageID":873,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":792025,"OldTribeID":48,"Points":272,"CreatedAt":"2023-02-07T11:42:05Z","ServerKey":"us63"},{"ID":2179,"VillageID":4330,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-07T11:44:44Z","ServerKey":"us63"},{"ID":2180,"VillageID":3002,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-07T11:52:09Z","ServerKey":"us63"},{"ID":2181,"VillageID":1657,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-07T12:14:05Z","ServerKey":"us63"},{"ID":2182,"VillageID":354,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-07T12:26:36Z","ServerKey":"us63"},{"ID":2183,"VillageID":1004,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":795044,"OldTribeID":69,"Points":2113,"CreatedAt":"2023-02-07T12:34:18Z","ServerKey":"us63"},{"ID":2184,"VillageID":1939,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-07T12:46:15Z","ServerKey":"us63"},{"ID":2185,"VillageID":3932,"NewOwnerID":848954732,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-07T13:07:45Z","ServerKey":"us63"},{"ID":2186,"VillageID":4791,"NewOwnerID":786164,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-07T13:13:31Z","ServerKey":"us63"},{"ID":2187,"VillageID":3604,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T13:14:50Z","ServerKey":"us63"},{"ID":2188,"VillageID":4154,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":6995,"CreatedAt":"2023-02-07T13:30:01Z","ServerKey":"us63"},{"ID":2189,"VillageID":2261,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":299,"CreatedAt":"2023-02-07T13:33:02Z","ServerKey":"us63"},{"ID":2190,"VillageID":2388,"NewOwnerID":848953309,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-07T13:36:32Z","ServerKey":"us63"},{"ID":2191,"VillageID":1141,"NewOwnerID":848910455,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-07T13:43:31Z","ServerKey":"us63"},{"ID":2192,"VillageID":4051,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":4219,"CreatedAt":"2023-02-07T13:52:23Z","ServerKey":"us63"},{"ID":2193,"VillageID":3892,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":4418,"CreatedAt":"2023-02-07T13:53:29Z","ServerKey":"us63"},{"ID":2194,"VillageID":2732,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-07T13:54:45Z","ServerKey":"us63"},{"ID":2195,"VillageID":4139,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-07T13:56:27Z","ServerKey":"us63"},{"ID":2196,"VillageID":475,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-07T14:00:50Z","ServerKey":"us63"},{"ID":2197,"VillageID":6243,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-07T14:08:40Z","ServerKey":"us63"},{"ID":2198,"VillageID":2618,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-07T14:12:14Z","ServerKey":"us63"},{"ID":2199,"VillageID":3976,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":85,"Points":9432,"CreatedAt":"2023-02-07T14:23:36Z","ServerKey":"us63"},{"ID":2200,"VillageID":96,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-07T14:34:45Z","ServerKey":"us63"},{"ID":2201,"VillageID":4710,"NewOwnerID":848954812,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-07T14:36:01Z","ServerKey":"us63"},{"ID":2202,"VillageID":1793,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":4523,"CreatedAt":"2023-02-07T14:46:13Z","ServerKey":"us63"},{"ID":2203,"VillageID":3689,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-07T15:44:08Z","ServerKey":"us63"},{"ID":2204,"VillageID":2611,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-07T15:57:07Z","ServerKey":"us63"},{"ID":2205,"VillageID":5071,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-07T16:06:56Z","ServerKey":"us63"},{"ID":2206,"VillageID":100,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-07T16:20:48Z","ServerKey":"us63"},{"ID":2207,"VillageID":3876,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":4126,"CreatedAt":"2023-02-07T16:21:16Z","ServerKey":"us63"},{"ID":2208,"VillageID":339,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-07T16:27:14Z","ServerKey":"us63"},{"ID":2209,"VillageID":539,"NewOwnerID":848937811,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-07T16:41:37Z","ServerKey":"us63"},{"ID":2210,"VillageID":1619,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-07T16:58:02Z","ServerKey":"us63"},{"ID":2211,"VillageID":1060,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":114434,"OldTribeID":61,"Points":300,"CreatedAt":"2023-02-07T17:04:50Z","ServerKey":"us63"},{"ID":2212,"VillageID":5761,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-07T17:18:55Z","ServerKey":"us63"},{"ID":2213,"VillageID":95,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-07T17:20:15Z","ServerKey":"us63"},{"ID":2214,"VillageID":5821,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-07T17:21:47Z","ServerKey":"us63"},{"ID":2215,"VillageID":2948,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-07T17:22:17Z","ServerKey":"us63"},{"ID":2216,"VillageID":555,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-07T17:38:23Z","ServerKey":"us63"},{"ID":2217,"VillageID":4613,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":407332,"OldTribeID":64,"Points":3312,"CreatedAt":"2023-02-07T17:52:35Z","ServerKey":"us63"},{"ID":2218,"VillageID":948,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-07T17:55:50Z","ServerKey":"us63"},{"ID":2219,"VillageID":3313,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":989,"CreatedAt":"2023-02-07T18:00:42Z","ServerKey":"us63"},{"ID":2220,"VillageID":8338,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-07T18:01:23Z","ServerKey":"us63"},{"ID":2221,"VillageID":631,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-07T18:18:27Z","ServerKey":"us63"},{"ID":2222,"VillageID":6817,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-07T18:24:52Z","ServerKey":"us63"},{"ID":2223,"VillageID":2492,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":456,"CreatedAt":"2023-02-07T18:33:10Z","ServerKey":"us63"},{"ID":2224,"VillageID":110,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-07T18:50:35Z","ServerKey":"us63"},{"ID":2225,"VillageID":4142,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-07T18:52:38Z","ServerKey":"us63"},{"ID":2226,"VillageID":1342,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-07T19:00:50Z","ServerKey":"us63"},{"ID":2227,"VillageID":1845,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-07T19:06:28Z","ServerKey":"us63"},{"ID":2228,"VillageID":1606,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-07T19:35:49Z","ServerKey":"us63"},{"ID":2229,"VillageID":4005,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":2638,"CreatedAt":"2023-02-07T19:44:50Z","ServerKey":"us63"},{"ID":2230,"VillageID":1867,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-07T19:49:08Z","ServerKey":"us63"},{"ID":2231,"VillageID":81,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":484,"CreatedAt":"2023-02-07T20:00:04Z","ServerKey":"us63"},{"ID":2232,"VillageID":4441,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-07T20:03:43Z","ServerKey":"us63"},{"ID":2233,"VillageID":697,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-07T20:17:40Z","ServerKey":"us63"},{"ID":2234,"VillageID":7981,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-07T20:25:32Z","ServerKey":"us63"},{"ID":2235,"VillageID":3546,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":848954695,"OldTribeID":0,"Points":802,"CreatedAt":"2023-02-07T20:47:22Z","ServerKey":"us63"},{"ID":2236,"VillageID":3286,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-07T20:48:10Z","ServerKey":"us63"},{"ID":2237,"VillageID":2724,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":485,"CreatedAt":"2023-02-07T20:53:03Z","ServerKey":"us63"},{"ID":2238,"VillageID":3125,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":795044,"OldTribeID":69,"Points":2117,"CreatedAt":"2023-02-07T21:03:13Z","ServerKey":"us63"},{"ID":2239,"VillageID":4089,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":2790,"CreatedAt":"2023-02-07T21:08:22Z","ServerKey":"us63"},{"ID":2240,"VillageID":2,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-07T21:09:08Z","ServerKey":"us63"},{"ID":2241,"VillageID":1043,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":848941179,"OldTribeID":35,"Points":950,"CreatedAt":"2023-02-07T21:19:02Z","ServerKey":"us63"},{"ID":2242,"VillageID":324,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-07T21:19:59Z","ServerKey":"us63"},{"ID":2243,"VillageID":7890,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-02-07T21:29:25Z","ServerKey":"us63"},{"ID":2244,"VillageID":5651,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848954669,"OldTribeID":173,"Points":5648,"CreatedAt":"2023-02-07T21:37:33Z","ServerKey":"us63"},{"ID":2245,"VillageID":2515,"NewOwnerID":848953946,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":348,"CreatedAt":"2023-02-07T21:45:52Z","ServerKey":"us63"},{"ID":2246,"VillageID":3992,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-07T21:46:27Z","ServerKey":"us63"},{"ID":2247,"VillageID":4759,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-07T21:48:43Z","ServerKey":"us63"},{"ID":2248,"VillageID":5894,"NewOwnerID":772572,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-07T21:52:40Z","ServerKey":"us63"},{"ID":2249,"VillageID":7726,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-07T22:21:07Z","ServerKey":"us63"},{"ID":2250,"VillageID":1381,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":599,"CreatedAt":"2023-02-07T22:28:55Z","ServerKey":"us63"},{"ID":2251,"VillageID":6405,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-07T22:38:51Z","ServerKey":"us63"},{"ID":2252,"VillageID":4605,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-07T22:48:41Z","ServerKey":"us63"},{"ID":2253,"VillageID":1190,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-07T23:09:40Z","ServerKey":"us63"},{"ID":2254,"VillageID":2982,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-07T23:10:57Z","ServerKey":"us63"},{"ID":2255,"VillageID":4186,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-07T23:23:05Z","ServerKey":"us63"},{"ID":2256,"VillageID":2161,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-07T23:27:38Z","ServerKey":"us63"},{"ID":2257,"VillageID":786,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-07T23:34:43Z","ServerKey":"us63"},{"ID":2258,"VillageID":510,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-07T23:54:03Z","ServerKey":"us63"},{"ID":2259,"VillageID":3059,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-08T00:03:01Z","ServerKey":"us63"},{"ID":2260,"VillageID":21,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-08T00:07:17Z","ServerKey":"us63"},{"ID":2261,"VillageID":2522,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-08T00:19:14Z","ServerKey":"us63"},{"ID":2262,"VillageID":3266,"NewOwnerID":848883123,"NewTribeID":12,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-08T00:22:51Z","ServerKey":"us63"},{"ID":2263,"VillageID":7870,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":46,"CreatedAt":"2023-02-08T00:23:32Z","ServerKey":"us63"},{"ID":2264,"VillageID":1567,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":848952807,"OldTribeID":5,"Points":2863,"CreatedAt":"2023-02-08T00:36:31Z","ServerKey":"us63"},{"ID":2265,"VillageID":7691,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-08T00:37:52Z","ServerKey":"us63"},{"ID":2266,"VillageID":601,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-08T00:44:27Z","ServerKey":"us63"},{"ID":2267,"VillageID":4365,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":4211,"CreatedAt":"2023-02-08T00:53:21Z","ServerKey":"us63"},{"ID":2268,"VillageID":5369,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848954078,"OldTribeID":152,"Points":3982,"CreatedAt":"2023-02-08T01:05:32Z","ServerKey":"us63"},{"ID":2269,"VillageID":3125,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":463920,"OldTribeID":20,"Points":2141,"CreatedAt":"2023-02-08T01:29:53Z","ServerKey":"us63"},{"ID":2270,"VillageID":5739,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-08T01:32:26Z","ServerKey":"us63"},{"ID":2271,"VillageID":342,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-08T01:33:41Z","ServerKey":"us63"},{"ID":2272,"VillageID":218,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-08T01:38:30Z","ServerKey":"us63"},{"ID":2273,"VillageID":2903,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-08T01:40:59Z","ServerKey":"us63"},{"ID":2274,"VillageID":1372,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":674,"CreatedAt":"2023-02-08T02:25:20Z","ServerKey":"us63"},{"ID":2275,"VillageID":7650,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-02-08T02:50:51Z","ServerKey":"us63"},{"ID":2276,"VillageID":2501,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-08T02:55:29Z","ServerKey":"us63"},{"ID":2277,"VillageID":1510,"NewOwnerID":540645,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-08T03:14:21Z","ServerKey":"us63"},{"ID":2278,"VillageID":4495,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":4791,"CreatedAt":"2023-02-08T03:30:06Z","ServerKey":"us63"},{"ID":2279,"VillageID":2282,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-08T03:39:01Z","ServerKey":"us63"},{"ID":2280,"VillageID":2282,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":503636,"OldTribeID":138,"Points":349,"CreatedAt":"2023-02-08T03:39:03Z","ServerKey":"us63"},{"ID":2281,"VillageID":535,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-08T03:39:27Z","ServerKey":"us63"},{"ID":2282,"VillageID":6671,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":792503,"OldTribeID":210,"Points":1424,"CreatedAt":"2023-02-08T03:40:16Z","ServerKey":"us63"},{"ID":2283,"VillageID":191,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-08T03:58:55Z","ServerKey":"us63"},{"ID":2284,"VillageID":3020,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-08T04:12:33Z","ServerKey":"us63"},{"ID":2285,"VillageID":5484,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":848954987,"OldTribeID":22,"Points":4959,"CreatedAt":"2023-02-08T04:17:31Z","ServerKey":"us63"},{"ID":2286,"VillageID":2416,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":848949187,"OldTribeID":0,"Points":546,"CreatedAt":"2023-02-08T04:31:43Z","ServerKey":"us63"},{"ID":2287,"VillageID":3268,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":771856,"OldTribeID":42,"Points":938,"CreatedAt":"2023-02-08T04:34:01Z","ServerKey":"us63"},{"ID":2288,"VillageID":352,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":848952032,"OldTribeID":25,"Points":1667,"CreatedAt":"2023-02-08T04:38:58Z","ServerKey":"us63"},{"ID":2289,"VillageID":6858,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-08T04:50:59Z","ServerKey":"us63"},{"ID":2290,"VillageID":6858,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":135,"CreatedAt":"2023-02-08T04:50:59Z","ServerKey":"us63"},{"ID":2291,"VillageID":1359,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-08T05:10:00Z","ServerKey":"us63"},{"ID":2292,"VillageID":270,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-08T05:17:24Z","ServerKey":"us63"},{"ID":2293,"VillageID":3993,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":848954749,"OldTribeID":53,"Points":5463,"CreatedAt":"2023-02-08T05:30:14Z","ServerKey":"us63"},{"ID":2294,"VillageID":7679,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-08T05:30:46Z","ServerKey":"us63"},{"ID":2295,"VillageID":592,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-08T05:41:27Z","ServerKey":"us63"},{"ID":2296,"VillageID":7510,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-08T05:51:40Z","ServerKey":"us63"},{"ID":2297,"VillageID":220,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-08T05:58:03Z","ServerKey":"us63"},{"ID":2298,"VillageID":2572,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":729548,"OldTribeID":182,"Points":3895,"CreatedAt":"2023-02-08T06:00:19Z","ServerKey":"us63"},{"ID":2299,"VillageID":4982,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-08T06:12:36Z","ServerKey":"us63"},{"ID":2300,"VillageID":6469,"NewOwnerID":848954201,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-08T06:46:47Z","ServerKey":"us63"},{"ID":2301,"VillageID":4461,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848954826,"OldTribeID":0,"Points":393,"CreatedAt":"2023-02-08T06:58:44Z","ServerKey":"us63"},{"ID":2302,"VillageID":4870,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-08T07:07:07Z","ServerKey":"us63"},{"ID":2303,"VillageID":3907,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-08T07:17:54Z","ServerKey":"us63"},{"ID":2304,"VillageID":5106,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-08T07:45:24Z","ServerKey":"us63"},{"ID":2305,"VillageID":3575,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":848954698,"OldTribeID":105,"Points":5552,"CreatedAt":"2023-02-08T07:50:01Z","ServerKey":"us63"},{"ID":2306,"VillageID":5365,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-08T07:55:02Z","ServerKey":"us63"},{"ID":2307,"VillageID":6970,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-08T08:05:24Z","ServerKey":"us63"},{"ID":2308,"VillageID":2395,"NewOwnerID":848951964,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-08T08:06:11Z","ServerKey":"us63"},{"ID":2309,"VillageID":3158,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-08T08:08:25Z","ServerKey":"us63"},{"ID":2310,"VillageID":5058,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-08T08:09:50Z","ServerKey":"us63"},{"ID":2311,"VillageID":589,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-08T08:40:59Z","ServerKey":"us63"},{"ID":2312,"VillageID":155,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-08T08:50:46Z","ServerKey":"us63"},{"ID":2313,"VillageID":4908,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":848947293,"OldTribeID":0,"Points":3877,"CreatedAt":"2023-02-08T08:55:01Z","ServerKey":"us63"},{"ID":2314,"VillageID":3574,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-08T09:05:32Z","ServerKey":"us63"},{"ID":2315,"VillageID":5542,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":2109,"CreatedAt":"2023-02-08T10:15:45Z","ServerKey":"us63"},{"ID":2316,"VillageID":1131,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-08T10:27:54Z","ServerKey":"us63"},{"ID":2317,"VillageID":609,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848953956,"OldTribeID":35,"Points":886,"CreatedAt":"2023-02-08T10:36:45Z","ServerKey":"us63"},{"ID":2318,"VillageID":1496,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":613,"CreatedAt":"2023-02-08T11:12:24Z","ServerKey":"us63"},{"ID":2319,"VillageID":4599,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-08T11:37:14Z","ServerKey":"us63"},{"ID":2320,"VillageID":649,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952101,"OldTribeID":34,"Points":5103,"CreatedAt":"2023-02-08T11:45:19Z","ServerKey":"us63"},{"ID":2321,"VillageID":649,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":5103,"CreatedAt":"2023-02-08T11:45:19Z","ServerKey":"us63"},{"ID":2322,"VillageID":1498,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848951964,"OldTribeID":3,"Points":3442,"CreatedAt":"2023-02-08T11:57:32Z","ServerKey":"us63"},{"ID":2323,"VillageID":67,"NewOwnerID":848945118,"NewTribeID":183,"OldOwnerID":848952764,"OldTribeID":3,"Points":4866,"CreatedAt":"2023-02-08T12:33:15Z","ServerKey":"us63"},{"ID":2324,"VillageID":3981,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":848954698,"OldTribeID":105,"Points":1584,"CreatedAt":"2023-02-08T12:52:55Z","ServerKey":"us63"},{"ID":2325,"VillageID":4676,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-08T13:08:28Z","ServerKey":"us63"},{"ID":2326,"VillageID":834,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-08T13:08:43Z","ServerKey":"us63"},{"ID":2327,"VillageID":6941,"NewOwnerID":848955145,"NewTribeID":162,"OldOwnerID":848955217,"OldTribeID":206,"Points":2341,"CreatedAt":"2023-02-08T13:25:36Z","ServerKey":"us63"},{"ID":2328,"VillageID":893,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":387,"CreatedAt":"2023-02-08T13:34:06Z","ServerKey":"us63"},{"ID":2329,"VillageID":4526,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-08T13:39:07Z","ServerKey":"us63"},{"ID":2330,"VillageID":4793,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-08T14:02:53Z","ServerKey":"us63"},{"ID":2331,"VillageID":3536,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-08T14:22:18Z","ServerKey":"us63"},{"ID":2332,"VillageID":8004,"NewOwnerID":848954744,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-08T14:34:35Z","ServerKey":"us63"},{"ID":2333,"VillageID":495,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-08T14:37:26Z","ServerKey":"us63"},{"ID":2334,"VillageID":1320,"NewOwnerID":718150,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-08T14:49:02Z","ServerKey":"us63"},{"ID":2335,"VillageID":4512,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-08T15:10:18Z","ServerKey":"us63"},{"ID":2336,"VillageID":1238,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":1046,"CreatedAt":"2023-02-08T15:15:10Z","ServerKey":"us63"},{"ID":2337,"VillageID":250,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-08T15:16:43Z","ServerKey":"us63"},{"ID":2338,"VillageID":1302,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-08T16:02:39Z","ServerKey":"us63"},{"ID":2339,"VillageID":6783,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-08T16:37:06Z","ServerKey":"us63"},{"ID":2340,"VillageID":1386,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-08T16:43:31Z","ServerKey":"us63"},{"ID":2341,"VillageID":5064,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-08T16:51:35Z","ServerKey":"us63"},{"ID":2342,"VillageID":7173,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-08T16:58:55Z","ServerKey":"us63"},{"ID":2343,"VillageID":4246,"NewOwnerID":348613,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-08T17:08:41Z","ServerKey":"us63"},{"ID":2344,"VillageID":3412,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-08T17:10:40Z","ServerKey":"us63"},{"ID":2345,"VillageID":3069,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-08T17:12:49Z","ServerKey":"us63"},{"ID":2346,"VillageID":3647,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-08T17:16:36Z","ServerKey":"us63"},{"ID":2347,"VillageID":1830,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-08T17:16:42Z","ServerKey":"us63"},{"ID":2348,"VillageID":2142,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-08T17:24:31Z","ServerKey":"us63"},{"ID":2349,"VillageID":3875,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-08T17:27:49Z","ServerKey":"us63"},{"ID":2350,"VillageID":7487,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-08T17:28:51Z","ServerKey":"us63"},{"ID":2351,"VillageID":7485,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848955313,"OldTribeID":0,"Points":584,"CreatedAt":"2023-02-08T17:30:26Z","ServerKey":"us63"},{"ID":2352,"VillageID":5272,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-08T17:36:55Z","ServerKey":"us63"},{"ID":2353,"VillageID":5272,"NewOwnerID":848890745,"NewTribeID":0,"OldOwnerID":604194,"OldTribeID":174,"Points":141,"CreatedAt":"2023-02-08T17:39:45Z","ServerKey":"us63"},{"ID":2354,"VillageID":4469,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-08T17:47:35Z","ServerKey":"us63"},{"ID":2355,"VillageID":8572,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-08T17:49:36Z","ServerKey":"us63"},{"ID":2356,"VillageID":3632,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848951653,"OldTribeID":65,"Points":4264,"CreatedAt":"2023-02-08T17:58:58Z","ServerKey":"us63"},{"ID":2357,"VillageID":2731,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":848954598,"OldTribeID":0,"Points":5570,"CreatedAt":"2023-02-08T18:24:19Z","ServerKey":"us63"},{"ID":2358,"VillageID":201,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-08T18:26:57Z","ServerKey":"us63"},{"ID":2359,"VillageID":2250,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-08T18:31:59Z","ServerKey":"us63"},{"ID":2360,"VillageID":6632,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-08T18:41:24Z","ServerKey":"us63"},{"ID":2361,"VillageID":363,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":498,"CreatedAt":"2023-02-08T18:54:00Z","ServerKey":"us63"},{"ID":2362,"VillageID":5091,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":848954298,"OldTribeID":130,"Points":663,"CreatedAt":"2023-02-08T18:54:32Z","ServerKey":"us63"},{"ID":2363,"VillageID":3111,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-08T19:09:51Z","ServerKey":"us63"},{"ID":2364,"VillageID":8319,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":47,"CreatedAt":"2023-02-08T19:23:39Z","ServerKey":"us63"},{"ID":2365,"VillageID":1660,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-08T19:26:36Z","ServerKey":"us63"},{"ID":2366,"VillageID":1995,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":733,"CreatedAt":"2023-02-08T19:32:30Z","ServerKey":"us63"},{"ID":2367,"VillageID":5377,"NewOwnerID":848954894,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-08T19:52:22Z","ServerKey":"us63"},{"ID":2368,"VillageID":1148,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-08T19:54:35Z","ServerKey":"us63"},{"ID":2369,"VillageID":1203,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-08T20:13:50Z","ServerKey":"us63"},{"ID":2370,"VillageID":945,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-08T20:14:15Z","ServerKey":"us63"},{"ID":2371,"VillageID":4595,"NewOwnerID":848954768,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-08T20:24:59Z","ServerKey":"us63"},{"ID":2372,"VillageID":3347,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-08T20:25:34Z","ServerKey":"us63"},{"ID":2373,"VillageID":7682,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-08T20:51:03Z","ServerKey":"us63"},{"ID":2374,"VillageID":7294,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-08T20:57:38Z","ServerKey":"us63"},{"ID":2375,"VillageID":4715,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-08T21:12:46Z","ServerKey":"us63"},{"ID":2376,"VillageID":213,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-08T21:21:00Z","ServerKey":"us63"},{"ID":2377,"VillageID":82,"NewOwnerID":554600,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-08T21:31:55Z","ServerKey":"us63"},{"ID":2378,"VillageID":434,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-08T22:08:33Z","ServerKey":"us63"},{"ID":2379,"VillageID":5272,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848890745,"OldTribeID":174,"Points":144,"CreatedAt":"2023-02-08T22:08:53Z","ServerKey":"us63"},{"ID":2380,"VillageID":981,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":9621,"CreatedAt":"2023-02-08T22:27:16Z","ServerKey":"us63"},{"ID":2381,"VillageID":4829,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-08T22:35:30Z","ServerKey":"us63"},{"ID":2382,"VillageID":3865,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-08T22:40:56Z","ServerKey":"us63"},{"ID":2383,"VillageID":4447,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-08T22:59:27Z","ServerKey":"us63"},{"ID":2384,"VillageID":1316,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":5299,"CreatedAt":"2023-02-08T23:00:01Z","ServerKey":"us63"},{"ID":2385,"VillageID":1560,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":4289,"CreatedAt":"2023-02-08T23:00:04Z","ServerKey":"us63"},{"ID":2386,"VillageID":1091,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848953956,"OldTribeID":35,"Points":941,"CreatedAt":"2023-02-08T23:21:40Z","ServerKey":"us63"},{"ID":2387,"VillageID":2121,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-08T23:24:26Z","ServerKey":"us63"},{"ID":2388,"VillageID":2241,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-08T23:26:46Z","ServerKey":"us63"},{"ID":2389,"VillageID":653,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952033,"OldTribeID":34,"Points":5329,"CreatedAt":"2023-02-08T23:45:39Z","ServerKey":"us63"},{"ID":2390,"VillageID":653,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":5329,"CreatedAt":"2023-02-08T23:45:39Z","ServerKey":"us63"},{"ID":2391,"VillageID":2152,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848950262,"OldTribeID":0,"Points":1567,"CreatedAt":"2023-02-08T23:49:49Z","ServerKey":"us63"},{"ID":2392,"VillageID":1749,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":242,"CreatedAt":"2023-02-08T23:52:29Z","ServerKey":"us63"},{"ID":2393,"VillageID":2589,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":848954611,"OldTribeID":32,"Points":2289,"CreatedAt":"2023-02-08T23:54:06Z","ServerKey":"us63"},{"ID":2394,"VillageID":7988,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-09T00:06:30Z","ServerKey":"us63"},{"ID":2395,"VillageID":690,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-09T00:11:56Z","ServerKey":"us63"},{"ID":2396,"VillageID":5389,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-09T00:14:21Z","ServerKey":"us63"},{"ID":2397,"VillageID":1032,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-09T00:33:07Z","ServerKey":"us63"},{"ID":2398,"VillageID":460,"NewOwnerID":848883478,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-09T00:43:10Z","ServerKey":"us63"},{"ID":2399,"VillageID":532,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-09T00:55:15Z","ServerKey":"us63"},{"ID":2400,"VillageID":1604,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-09T01:17:52Z","ServerKey":"us63"},{"ID":2401,"VillageID":439,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":848953956,"OldTribeID":35,"Points":5966,"CreatedAt":"2023-02-09T01:29:50Z","ServerKey":"us63"},{"ID":2402,"VillageID":5241,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":848954987,"OldTribeID":22,"Points":1478,"CreatedAt":"2023-02-09T01:36:01Z","ServerKey":"us63"},{"ID":2403,"VillageID":2319,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":848852584,"OldTribeID":25,"Points":1051,"CreatedAt":"2023-02-09T01:36:45Z","ServerKey":"us63"},{"ID":2404,"VillageID":1604,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":132,"CreatedAt":"2023-02-09T01:40:42Z","ServerKey":"us63"},{"ID":2405,"VillageID":7464,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-09T01:48:38Z","ServerKey":"us63"},{"ID":2406,"VillageID":5399,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-09T01:51:07Z","ServerKey":"us63"},{"ID":2407,"VillageID":2944,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-09T01:56:43Z","ServerKey":"us63"},{"ID":2408,"VillageID":2702,"NewOwnerID":848952270,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1986,"CreatedAt":"2023-02-09T02:04:06Z","ServerKey":"us63"},{"ID":2409,"VillageID":6045,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-09T02:14:28Z","ServerKey":"us63"},{"ID":2410,"VillageID":5678,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-09T02:46:55Z","ServerKey":"us63"},{"ID":2411,"VillageID":3223,"NewOwnerID":768161,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":285,"CreatedAt":"2023-02-09T02:52:47Z","ServerKey":"us63"},{"ID":2412,"VillageID":180,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-09T02:57:09Z","ServerKey":"us63"},{"ID":2413,"VillageID":5813,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":659,"CreatedAt":"2023-02-09T03:03:54Z","ServerKey":"us63"},{"ID":2414,"VillageID":1268,"NewOwnerID":573851,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-09T03:20:40Z","ServerKey":"us63"},{"ID":2415,"VillageID":729,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-09T03:33:48Z","ServerKey":"us63"},{"ID":2416,"VillageID":3085,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-09T03:43:42Z","ServerKey":"us63"},{"ID":2417,"VillageID":6119,"NewOwnerID":785504,"NewTribeID":86,"OldOwnerID":334822,"OldTribeID":0,"Points":3318,"CreatedAt":"2023-02-09T03:56:33Z","ServerKey":"us63"},{"ID":2418,"VillageID":3282,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-09T04:15:09Z","ServerKey":"us63"},{"ID":2419,"VillageID":6022,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-09T05:13:49Z","ServerKey":"us63"},{"ID":2420,"VillageID":6759,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-09T05:26:56Z","ServerKey":"us63"},{"ID":2421,"VillageID":5303,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-09T05:35:05Z","ServerKey":"us63"},{"ID":2422,"VillageID":3085,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848890745,"OldTribeID":174,"Points":190,"CreatedAt":"2023-02-09T06:09:19Z","ServerKey":"us63"},{"ID":2423,"VillageID":1533,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848952324,"OldTribeID":4,"Points":5656,"CreatedAt":"2023-02-09T06:13:00Z","ServerKey":"us63"},{"ID":2424,"VillageID":3340,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-09T06:25:30Z","ServerKey":"us63"},{"ID":2425,"VillageID":3841,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-09T06:50:14Z","ServerKey":"us63"},{"ID":2426,"VillageID":6644,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-09T07:04:58Z","ServerKey":"us63"},{"ID":2427,"VillageID":2099,"NewOwnerID":848941404,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-09T07:24:21Z","ServerKey":"us63"},{"ID":2428,"VillageID":5452,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-09T07:29:33Z","ServerKey":"us63"},{"ID":2429,"VillageID":5926,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-09T07:39:53Z","ServerKey":"us63"},{"ID":2430,"VillageID":5771,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":848951612,"OldTribeID":35,"Points":1541,"CreatedAt":"2023-02-09T07:46:50Z","ServerKey":"us63"},{"ID":2431,"VillageID":3622,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-09T07:50:55Z","ServerKey":"us63"},{"ID":2432,"VillageID":8031,"NewOwnerID":848955238,"NewTribeID":170,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-09T07:56:01Z","ServerKey":"us63"},{"ID":2433,"VillageID":2944,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":848890745,"OldTribeID":174,"Points":181,"CreatedAt":"2023-02-09T08:16:20Z","ServerKey":"us63"},{"ID":2434,"VillageID":893,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":731,"CreatedAt":"2023-02-09T08:17:16Z","ServerKey":"us63"},{"ID":2435,"VillageID":6602,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":88,"CreatedAt":"2023-02-09T08:22:11Z","ServerKey":"us63"},{"ID":2436,"VillageID":808,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1443,"CreatedAt":"2023-02-09T08:23:27Z","ServerKey":"us63"},{"ID":2437,"VillageID":5720,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":848954210,"OldTribeID":0,"Points":1482,"CreatedAt":"2023-02-09T08:30:10Z","ServerKey":"us63"},{"ID":2438,"VillageID":742,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952033,"OldTribeID":34,"Points":1094,"CreatedAt":"2023-02-09T08:39:33Z","ServerKey":"us63"},{"ID":2439,"VillageID":2944,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":181,"CreatedAt":"2023-02-09T08:54:05Z","ServerKey":"us63"},{"ID":2440,"VillageID":646,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":3575,"CreatedAt":"2023-02-09T08:59:00Z","ServerKey":"us63"},{"ID":2441,"VillageID":2587,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-09T09:04:22Z","ServerKey":"us63"},{"ID":2442,"VillageID":6592,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-09T09:06:21Z","ServerKey":"us63"},{"ID":2443,"VillageID":1125,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848952033,"OldTribeID":34,"Points":699,"CreatedAt":"2023-02-09T09:20:12Z","ServerKey":"us63"},{"ID":2444,"VillageID":893,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":693887,"OldTribeID":48,"Points":772,"CreatedAt":"2023-02-09T09:27:51Z","ServerKey":"us63"},{"ID":2445,"VillageID":893,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":707,"CreatedAt":"2023-02-09T09:27:52Z","ServerKey":"us63"},{"ID":2446,"VillageID":1418,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":3826,"CreatedAt":"2023-02-09T09:31:17Z","ServerKey":"us63"},{"ID":2447,"VillageID":3839,"NewOwnerID":348613,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-09T09:33:53Z","ServerKey":"us63"},{"ID":2448,"VillageID":4012,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":474,"CreatedAt":"2023-02-09T09:36:29Z","ServerKey":"us63"},{"ID":2449,"VillageID":6550,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-09T09:43:07Z","ServerKey":"us63"},{"ID":2450,"VillageID":7960,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-09T09:52:56Z","ServerKey":"us63"},{"ID":2451,"VillageID":1957,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":6052,"CreatedAt":"2023-02-09T10:00:00Z","ServerKey":"us63"},{"ID":2452,"VillageID":2704,"NewOwnerID":351605,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-09T10:57:43Z","ServerKey":"us63"},{"ID":2453,"VillageID":98,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-09T11:13:09Z","ServerKey":"us63"},{"ID":2454,"VillageID":3208,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-09T11:19:23Z","ServerKey":"us63"},{"ID":2455,"VillageID":451,"NewOwnerID":848953214,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-09T11:31:18Z","ServerKey":"us63"},{"ID":2456,"VillageID":4841,"NewOwnerID":351605,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-09T11:59:34Z","ServerKey":"us63"},{"ID":2457,"VillageID":5487,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-09T12:10:18Z","ServerKey":"us63"},{"ID":2458,"VillageID":57,"NewOwnerID":848953779,"NewTribeID":5,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-09T12:16:56Z","ServerKey":"us63"},{"ID":2459,"VillageID":1802,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":1761,"CreatedAt":"2023-02-09T12:24:57Z","ServerKey":"us63"},{"ID":2460,"VillageID":6710,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-02-09T12:30:40Z","ServerKey":"us63"},{"ID":2461,"VillageID":6199,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":423,"CreatedAt":"2023-02-09T12:54:24Z","ServerKey":"us63"},{"ID":2462,"VillageID":293,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":540645,"OldTribeID":163,"Points":6252,"CreatedAt":"2023-02-09T12:55:25Z","ServerKey":"us63"},{"ID":2463,"VillageID":3498,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-09T13:18:21Z","ServerKey":"us63"},{"ID":2464,"VillageID":1250,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":2676,"CreatedAt":"2023-02-09T13:20:43Z","ServerKey":"us63"},{"ID":2465,"VillageID":6818,"NewOwnerID":848955008,"NewTribeID":152,"OldOwnerID":848955201,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-09T13:28:41Z","ServerKey":"us63"},{"ID":2466,"VillageID":5808,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-09T13:38:00Z","ServerKey":"us63"},{"ID":2467,"VillageID":1873,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-09T13:43:52Z","ServerKey":"us63"},{"ID":2468,"VillageID":5520,"NewOwnerID":848955019,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-09T13:47:53Z","ServerKey":"us63"},{"ID":2469,"VillageID":4019,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":2733,"CreatedAt":"2023-02-09T13:49:15Z","ServerKey":"us63"},{"ID":2470,"VillageID":6698,"NewOwnerID":848951960,"NewTribeID":97,"OldOwnerID":848955179,"OldTribeID":0,"Points":1439,"CreatedAt":"2023-02-09T14:07:23Z","ServerKey":"us63"},{"ID":2471,"VillageID":2009,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-09T14:09:33Z","ServerKey":"us63"},{"ID":2472,"VillageID":6964,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-09T14:14:15Z","ServerKey":"us63"},{"ID":2473,"VillageID":6187,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-09T14:23:00Z","ServerKey":"us63"},{"ID":2474,"VillageID":4015,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":1798,"CreatedAt":"2023-02-09T14:24:51Z","ServerKey":"us63"},{"ID":2475,"VillageID":6948,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-09T14:26:58Z","ServerKey":"us63"},{"ID":2476,"VillageID":7109,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-09T14:37:30Z","ServerKey":"us63"},{"ID":2477,"VillageID":6892,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-09T15:12:22Z","ServerKey":"us63"},{"ID":2478,"VillageID":2044,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-09T15:27:19Z","ServerKey":"us63"},{"ID":2479,"VillageID":6175,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-09T15:27:21Z","ServerKey":"us63"},{"ID":2480,"VillageID":1580,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":848952875,"OldTribeID":0,"Points":7103,"CreatedAt":"2023-02-09T15:32:45Z","ServerKey":"us63"},{"ID":2481,"VillageID":1261,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":573,"CreatedAt":"2023-02-09T15:42:15Z","ServerKey":"us63"},{"ID":2482,"VillageID":7609,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":848907435,"OldTribeID":0,"Points":1228,"CreatedAt":"2023-02-09T15:45:00Z","ServerKey":"us63"},{"ID":2483,"VillageID":6628,"NewOwnerID":848955238,"NewTribeID":170,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-09T15:49:52Z","ServerKey":"us63"},{"ID":2484,"VillageID":3863,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":5160,"CreatedAt":"2023-02-09T15:57:02Z","ServerKey":"us63"},{"ID":2485,"VillageID":1054,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848925398,"OldTribeID":42,"Points":4470,"CreatedAt":"2023-02-09T16:40:56Z","ServerKey":"us63"},{"ID":2486,"VillageID":1112,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-09T17:02:38Z","ServerKey":"us63"},{"ID":2487,"VillageID":3567,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-09T17:04:21Z","ServerKey":"us63"},{"ID":2488,"VillageID":5196,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-09T17:10:03Z","ServerKey":"us63"},{"ID":2489,"VillageID":761,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-09T17:15:46Z","ServerKey":"us63"},{"ID":2490,"VillageID":761,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848941909,"OldTribeID":6,"Points":321,"CreatedAt":"2023-02-09T17:15:46Z","ServerKey":"us63"},{"ID":2491,"VillageID":6268,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-09T17:15:53Z","ServerKey":"us63"},{"ID":2492,"VillageID":2231,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":840,"CreatedAt":"2023-02-09T17:23:48Z","ServerKey":"us63"},{"ID":2493,"VillageID":5961,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-09T17:29:49Z","ServerKey":"us63"},{"ID":2494,"VillageID":257,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-09T17:40:31Z","ServerKey":"us63"},{"ID":2495,"VillageID":1527,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-09T17:48:24Z","ServerKey":"us63"},{"ID":2496,"VillageID":288,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":3024,"CreatedAt":"2023-02-09T17:49:50Z","ServerKey":"us63"},{"ID":2497,"VillageID":288,"NewOwnerID":114434,"NewTribeID":0,"OldOwnerID":398664,"OldTribeID":33,"Points":2877,"CreatedAt":"2023-02-09T17:54:42Z","ServerKey":"us63"},{"ID":2498,"VillageID":605,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":10466,"CreatedAt":"2023-02-09T17:55:50Z","ServerKey":"us63"},{"ID":2499,"VillageID":6067,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-09T17:58:50Z","ServerKey":"us63"},{"ID":2500,"VillageID":6530,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-09T18:17:47Z","ServerKey":"us63"},{"ID":2501,"VillageID":1725,"NewOwnerID":848945118,"NewTribeID":183,"OldOwnerID":848952032,"OldTribeID":25,"Points":3311,"CreatedAt":"2023-02-09T18:22:27Z","ServerKey":"us63"},{"ID":2502,"VillageID":3804,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-09T18:24:01Z","ServerKey":"us63"},{"ID":2503,"VillageID":4271,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-09T18:29:55Z","ServerKey":"us63"},{"ID":2504,"VillageID":5504,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-09T18:32:25Z","ServerKey":"us63"},{"ID":2505,"VillageID":1008,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-09T18:38:08Z","ServerKey":"us63"},{"ID":2506,"VillageID":5007,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-09T18:38:23Z","ServerKey":"us63"},{"ID":2507,"VillageID":1442,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":6388,"CreatedAt":"2023-02-09T18:49:36Z","ServerKey":"us63"},{"ID":2508,"VillageID":6284,"NewOwnerID":775744,"NewTribeID":187,"OldOwnerID":712365,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-09T18:53:30Z","ServerKey":"us63"},{"ID":2509,"VillageID":248,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":841,"CreatedAt":"2023-02-09T18:56:56Z","ServerKey":"us63"},{"ID":2510,"VillageID":849,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-09T19:11:23Z","ServerKey":"us63"},{"ID":2511,"VillageID":668,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-09T19:16:11Z","ServerKey":"us63"},{"ID":2512,"VillageID":3400,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":4378,"CreatedAt":"2023-02-09T19:21:53Z","ServerKey":"us63"},{"ID":2513,"VillageID":930,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":5029,"CreatedAt":"2023-02-09T19:26:17Z","ServerKey":"us63"},{"ID":2514,"VillageID":3407,"NewOwnerID":848881027,"NewTribeID":0,"OldOwnerID":751231,"OldTribeID":0,"Points":1907,"CreatedAt":"2023-02-09T19:43:10Z","ServerKey":"us63"},{"ID":2515,"VillageID":484,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":1806,"CreatedAt":"2023-02-09T19:47:20Z","ServerKey":"us63"},{"ID":2516,"VillageID":3030,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":3856,"CreatedAt":"2023-02-09T20:15:15Z","ServerKey":"us63"},{"ID":2517,"VillageID":7782,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-09T20:41:36Z","ServerKey":"us63"},{"ID":2518,"VillageID":878,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-09T20:42:44Z","ServerKey":"us63"},{"ID":2519,"VillageID":5,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-09T20:51:58Z","ServerKey":"us63"},{"ID":2520,"VillageID":481,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":645,"CreatedAt":"2023-02-09T20:52:54Z","ServerKey":"us63"},{"ID":2521,"VillageID":5080,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-09T21:05:13Z","ServerKey":"us63"},{"ID":2522,"VillageID":3190,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-09T21:15:57Z","ServerKey":"us63"},{"ID":2523,"VillageID":657,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":314,"CreatedAt":"2023-02-09T21:21:56Z","ServerKey":"us63"},{"ID":2524,"VillageID":5430,"NewOwnerID":789326,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-09T21:27:52Z","ServerKey":"us63"},{"ID":2525,"VillageID":3409,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-09T21:29:29Z","ServerKey":"us63"},{"ID":2526,"VillageID":6209,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":226713,"OldTribeID":91,"Points":2473,"CreatedAt":"2023-02-09T21:41:50Z","ServerKey":"us63"},{"ID":2527,"VillageID":3076,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-09T21:49:19Z","ServerKey":"us63"},{"ID":2528,"VillageID":6903,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-09T21:52:26Z","ServerKey":"us63"},{"ID":2529,"VillageID":2256,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848951321,"OldTribeID":25,"Points":1152,"CreatedAt":"2023-02-09T21:57:24Z","ServerKey":"us63"},{"ID":2530,"VillageID":5566,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-09T22:07:46Z","ServerKey":"us63"},{"ID":2531,"VillageID":6130,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-09T22:10:41Z","ServerKey":"us63"},{"ID":2532,"VillageID":3577,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-09T22:15:53Z","ServerKey":"us63"},{"ID":2533,"VillageID":3773,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-09T22:26:05Z","ServerKey":"us63"},{"ID":2534,"VillageID":4919,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-09T22:36:40Z","ServerKey":"us63"},{"ID":2535,"VillageID":1631,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-09T22:57:49Z","ServerKey":"us63"},{"ID":2536,"VillageID":2460,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848951321,"OldTribeID":25,"Points":533,"CreatedAt":"2023-02-09T23:01:11Z","ServerKey":"us63"},{"ID":2537,"VillageID":6973,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-09T23:05:15Z","ServerKey":"us63"},{"ID":2538,"VillageID":1587,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":848952953,"OldTribeID":42,"Points":1314,"CreatedAt":"2023-02-09T23:17:29Z","ServerKey":"us63"},{"ID":2539,"VillageID":693,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":5578,"CreatedAt":"2023-02-09T23:28:10Z","ServerKey":"us63"},{"ID":2540,"VillageID":4083,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3592,"CreatedAt":"2023-02-09T23:30:11Z","ServerKey":"us63"},{"ID":2541,"VillageID":5300,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":848943095,"OldTribeID":0,"Points":593,"CreatedAt":"2023-02-09T23:31:00Z","ServerKey":"us63"},{"ID":2542,"VillageID":481,"NewOwnerID":384998,"NewTribeID":86,"OldOwnerID":463920,"OldTribeID":20,"Points":645,"CreatedAt":"2023-02-10T00:14:00Z","ServerKey":"us63"},{"ID":2543,"VillageID":242,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":2249,"CreatedAt":"2023-02-10T00:25:57Z","ServerKey":"us63"},{"ID":2544,"VillageID":3548,"NewOwnerID":679915,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-10T00:27:39Z","ServerKey":"us63"},{"ID":2545,"VillageID":5795,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-10T00:40:30Z","ServerKey":"us63"},{"ID":2546,"VillageID":3906,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848954732,"OldTribeID":0,"Points":1081,"CreatedAt":"2023-02-10T01:05:15Z","ServerKey":"us63"},{"ID":2547,"VillageID":3544,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-10T01:06:38Z","ServerKey":"us63"},{"ID":2548,"VillageID":2878,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":6352,"CreatedAt":"2023-02-10T01:26:33Z","ServerKey":"us63"},{"ID":2549,"VillageID":2714,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-10T01:28:04Z","ServerKey":"us63"},{"ID":2550,"VillageID":204,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-10T01:33:19Z","ServerKey":"us63"},{"ID":2551,"VillageID":543,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":2438,"CreatedAt":"2023-02-10T01:44:30Z","ServerKey":"us63"},{"ID":2552,"VillageID":1348,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-10T01:56:45Z","ServerKey":"us63"},{"ID":2553,"VillageID":1278,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1898,"CreatedAt":"2023-02-10T01:58:04Z","ServerKey":"us63"},{"ID":2554,"VillageID":1278,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":1898,"CreatedAt":"2023-02-10T01:58:04Z","ServerKey":"us63"},{"ID":2555,"VillageID":2791,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-10T02:19:52Z","ServerKey":"us63"},{"ID":2556,"VillageID":2791,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":568,"OldTribeID":32,"Points":270,"CreatedAt":"2023-02-10T02:19:53Z","ServerKey":"us63"},{"ID":2557,"VillageID":5189,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-10T02:24:22Z","ServerKey":"us63"},{"ID":2558,"VillageID":2852,"NewOwnerID":848954597,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-10T03:00:08Z","ServerKey":"us63"},{"ID":2559,"VillageID":5666,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-10T03:05:09Z","ServerKey":"us63"},{"ID":2560,"VillageID":2698,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":11109,"CreatedAt":"2023-02-10T03:32:15Z","ServerKey":"us63"},{"ID":2561,"VillageID":812,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-10T03:36:56Z","ServerKey":"us63"},{"ID":2562,"VillageID":4056,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848913418,"OldTribeID":65,"Points":6251,"CreatedAt":"2023-02-10T03:58:10Z","ServerKey":"us63"},{"ID":2563,"VillageID":5048,"NewOwnerID":848954120,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-10T04:01:18Z","ServerKey":"us63"},{"ID":2564,"VillageID":4491,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-10T04:04:37Z","ServerKey":"us63"},{"ID":2565,"VillageID":7427,"NewOwnerID":848951960,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-10T04:15:06Z","ServerKey":"us63"},{"ID":2566,"VillageID":109,"NewOwnerID":50103,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-10T04:21:08Z","ServerKey":"us63"},{"ID":2567,"VillageID":2691,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":848952875,"OldTribeID":0,"Points":3865,"CreatedAt":"2023-02-10T04:26:11Z","ServerKey":"us63"},{"ID":2568,"VillageID":217,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-10T04:27:04Z","ServerKey":"us63"},{"ID":2569,"VillageID":718,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-10T04:29:14Z","ServerKey":"us63"},{"ID":2570,"VillageID":825,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":2362,"CreatedAt":"2023-02-10T04:49:04Z","ServerKey":"us63"},{"ID":2571,"VillageID":4552,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-10T04:54:33Z","ServerKey":"us63"},{"ID":2572,"VillageID":4641,"NewOwnerID":848935026,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":484,"CreatedAt":"2023-02-10T05:21:07Z","ServerKey":"us63"},{"ID":2573,"VillageID":3492,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-10T05:28:27Z","ServerKey":"us63"},{"ID":2574,"VillageID":9,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-10T05:35:19Z","ServerKey":"us63"},{"ID":2575,"VillageID":1891,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":4355,"CreatedAt":"2023-02-10T05:46:03Z","ServerKey":"us63"},{"ID":2576,"VillageID":4077,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-10T05:48:09Z","ServerKey":"us63"},{"ID":2577,"VillageID":2951,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-10T05:58:10Z","ServerKey":"us63"},{"ID":2578,"VillageID":794,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":751946,"OldTribeID":0,"Points":2108,"CreatedAt":"2023-02-10T06:00:11Z","ServerKey":"us63"},{"ID":2579,"VillageID":1010,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848902872,"OldTribeID":183,"Points":7404,"CreatedAt":"2023-02-10T06:38:49Z","ServerKey":"us63"},{"ID":2580,"VillageID":5015,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-10T06:43:30Z","ServerKey":"us63"},{"ID":2581,"VillageID":2491,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-10T06:59:31Z","ServerKey":"us63"},{"ID":2582,"VillageID":27,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-10T07:14:17Z","ServerKey":"us63"},{"ID":2583,"VillageID":1104,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-10T07:23:08Z","ServerKey":"us63"},{"ID":2584,"VillageID":3221,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":716656,"OldTribeID":85,"Points":3941,"CreatedAt":"2023-02-10T07:27:23Z","ServerKey":"us63"},{"ID":2585,"VillageID":6420,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848937060,"OldTribeID":203,"Points":2268,"CreatedAt":"2023-02-10T07:36:09Z","ServerKey":"us63"},{"ID":2586,"VillageID":7799,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-10T07:46:03Z","ServerKey":"us63"},{"ID":2587,"VillageID":4092,"NewOwnerID":848954776,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-10T07:50:02Z","ServerKey":"us63"},{"ID":2588,"VillageID":1350,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":1902,"CreatedAt":"2023-02-10T08:01:28Z","ServerKey":"us63"},{"ID":2589,"VillageID":7071,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-10T08:14:30Z","ServerKey":"us63"},{"ID":2590,"VillageID":5809,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1582,"CreatedAt":"2023-02-10T08:33:33Z","ServerKey":"us63"},{"ID":2591,"VillageID":4661,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-10T08:46:01Z","ServerKey":"us63"},{"ID":2592,"VillageID":4475,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-10T08:49:10Z","ServerKey":"us63"},{"ID":2593,"VillageID":4475,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":201,"CreatedAt":"2023-02-10T08:49:10Z","ServerKey":"us63"},{"ID":2594,"VillageID":474,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":573851,"OldTribeID":48,"Points":7599,"CreatedAt":"2023-02-10T09:00:00Z","ServerKey":"us63"},{"ID":2595,"VillageID":652,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":4115,"CreatedAt":"2023-02-10T09:00:00Z","ServerKey":"us63"},{"ID":2596,"VillageID":652,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":509533,"OldTribeID":6,"Points":4115,"CreatedAt":"2023-02-10T09:00:00Z","ServerKey":"us63"},{"ID":2597,"VillageID":2885,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":587894,"OldTribeID":48,"Points":9275,"CreatedAt":"2023-02-10T09:00:30Z","ServerKey":"us63"},{"ID":2598,"VillageID":2885,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":780339,"OldTribeID":74,"Points":9275,"CreatedAt":"2023-02-10T09:00:30Z","ServerKey":"us63"},{"ID":2599,"VillageID":1001,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848894442,"OldTribeID":34,"Points":7132,"CreatedAt":"2023-02-10T09:10:37Z","ServerKey":"us63"},{"ID":2600,"VillageID":583,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-10T09:19:49Z","ServerKey":"us63"},{"ID":2601,"VillageID":7994,"NewOwnerID":848954668,"NewTribeID":172,"OldOwnerID":767834,"OldTribeID":182,"Points":1340,"CreatedAt":"2023-02-10T09:38:47Z","ServerKey":"us63"},{"ID":2602,"VillageID":2325,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848943740,"OldTribeID":0,"Points":3700,"CreatedAt":"2023-02-10T09:42:54Z","ServerKey":"us63"},{"ID":2603,"VillageID":3203,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-10T09:44:05Z","ServerKey":"us63"},{"ID":2604,"VillageID":1001,"NewOwnerID":697760,"NewTribeID":34,"OldOwnerID":848880663,"OldTribeID":138,"Points":7108,"CreatedAt":"2023-02-10T09:47:12Z","ServerKey":"us63"},{"ID":2605,"VillageID":5202,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-10T10:02:56Z","ServerKey":"us63"},{"ID":2606,"VillageID":5459,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-10T10:04:15Z","ServerKey":"us63"},{"ID":2607,"VillageID":1806,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":170853,"OldTribeID":183,"Points":6401,"CreatedAt":"2023-02-10T10:16:13Z","ServerKey":"us63"},{"ID":2608,"VillageID":2702,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":2003,"CreatedAt":"2023-02-10T10:20:19Z","ServerKey":"us63"},{"ID":2609,"VillageID":7628,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-02-10T10:27:28Z","ServerKey":"us63"},{"ID":2610,"VillageID":6409,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":226713,"OldTribeID":91,"Points":4013,"CreatedAt":"2023-02-10T10:28:54Z","ServerKey":"us63"},{"ID":2611,"VillageID":551,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-10T10:35:12Z","ServerKey":"us63"},{"ID":2612,"VillageID":2588,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":3689,"CreatedAt":"2023-02-10T10:42:16Z","ServerKey":"us63"},{"ID":2613,"VillageID":832,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":8991,"CreatedAt":"2023-02-10T10:43:13Z","ServerKey":"us63"},{"ID":2614,"VillageID":2929,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848852584,"OldTribeID":25,"Points":6149,"CreatedAt":"2023-02-10T10:45:58Z","ServerKey":"us63"},{"ID":2615,"VillageID":5037,"NewOwnerID":351605,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-10T10:48:50Z","ServerKey":"us63"},{"ID":2616,"VillageID":288,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":114434,"OldTribeID":0,"Points":2901,"CreatedAt":"2023-02-10T10:50:44Z","ServerKey":"us63"},{"ID":2617,"VillageID":3584,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3103,"CreatedAt":"2023-02-10T10:52:00Z","ServerKey":"us63"},{"ID":2618,"VillageID":3542,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3409,"CreatedAt":"2023-02-10T10:52:00Z","ServerKey":"us63"},{"ID":2619,"VillageID":5299,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-10T10:53:06Z","ServerKey":"us63"},{"ID":2620,"VillageID":13,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-10T10:55:42Z","ServerKey":"us63"},{"ID":2621,"VillageID":800,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-10T11:02:25Z","ServerKey":"us63"},{"ID":2622,"VillageID":5749,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":848950729,"OldTribeID":0,"Points":2173,"CreatedAt":"2023-02-10T11:35:40Z","ServerKey":"us63"},{"ID":2623,"VillageID":708,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":2771,"CreatedAt":"2023-02-10T12:25:26Z","ServerKey":"us63"},{"ID":2624,"VillageID":515,"NewOwnerID":848941831,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-10T12:36:33Z","ServerKey":"us63"},{"ID":2625,"VillageID":2983,"NewOwnerID":848951023,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-10T12:50:15Z","ServerKey":"us63"},{"ID":2626,"VillageID":7065,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-10T12:54:00Z","ServerKey":"us63"},{"ID":2627,"VillageID":6027,"NewOwnerID":848953539,"NewTribeID":32,"OldOwnerID":848947837,"OldTribeID":134,"Points":2591,"CreatedAt":"2023-02-10T13:09:49Z","ServerKey":"us63"},{"ID":2628,"VillageID":695,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-10T13:35:41Z","ServerKey":"us63"},{"ID":2629,"VillageID":1491,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-10T14:04:24Z","ServerKey":"us63"},{"ID":2630,"VillageID":1491,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":252,"CreatedAt":"2023-02-10T14:04:25Z","ServerKey":"us63"},{"ID":2631,"VillageID":6649,"NewOwnerID":848955238,"NewTribeID":170,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-10T14:17:39Z","ServerKey":"us63"},{"ID":2632,"VillageID":1558,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-10T14:17:56Z","ServerKey":"us63"},{"ID":2633,"VillageID":216,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-10T14:18:07Z","ServerKey":"us63"},{"ID":2634,"VillageID":4191,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-10T14:22:08Z","ServerKey":"us63"},{"ID":2635,"VillageID":6570,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":754653,"OldTribeID":22,"Points":1259,"CreatedAt":"2023-02-10T14:28:35Z","ServerKey":"us63"},{"ID":2636,"VillageID":2991,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-10T15:01:49Z","ServerKey":"us63"},{"ID":2637,"VillageID":1524,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":3761,"CreatedAt":"2023-02-10T15:18:27Z","ServerKey":"us63"},{"ID":2638,"VillageID":2924,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":848954594,"OldTribeID":0,"Points":4121,"CreatedAt":"2023-02-10T15:20:26Z","ServerKey":"us63"},{"ID":2639,"VillageID":1869,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-10T15:35:31Z","ServerKey":"us63"},{"ID":2640,"VillageID":5269,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-10T15:36:27Z","ServerKey":"us63"},{"ID":2641,"VillageID":596,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-10T16:02:02Z","ServerKey":"us63"},{"ID":2642,"VillageID":6904,"NewOwnerID":848955141,"NewTribeID":152,"OldOwnerID":744663,"OldTribeID":0,"Points":1342,"CreatedAt":"2023-02-10T16:03:26Z","ServerKey":"us63"},{"ID":2643,"VillageID":483,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-10T16:03:35Z","ServerKey":"us63"},{"ID":2644,"VillageID":483,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":309,"CreatedAt":"2023-02-10T16:03:35Z","ServerKey":"us63"},{"ID":2645,"VillageID":1618,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-10T16:07:30Z","ServerKey":"us63"},{"ID":2646,"VillageID":1371,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-10T16:24:43Z","ServerKey":"us63"},{"ID":2647,"VillageID":1187,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1395,"CreatedAt":"2023-02-10T16:49:11Z","ServerKey":"us63"},{"ID":2648,"VillageID":5920,"NewOwnerID":218304,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-10T16:51:02Z","ServerKey":"us63"},{"ID":2649,"VillageID":617,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-10T17:21:03Z","ServerKey":"us63"},{"ID":2650,"VillageID":3021,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":6182,"CreatedAt":"2023-02-10T17:28:18Z","ServerKey":"us63"},{"ID":2651,"VillageID":858,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":8317,"CreatedAt":"2023-02-10T17:28:18Z","ServerKey":"us63"},{"ID":2652,"VillageID":5077,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-02-10T17:29:37Z","ServerKey":"us63"},{"ID":2653,"VillageID":1784,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-10T17:46:00Z","ServerKey":"us63"},{"ID":2654,"VillageID":4240,"NewOwnerID":389297,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-10T17:53:19Z","ServerKey":"us63"},{"ID":2655,"VillageID":1685,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-10T17:58:47Z","ServerKey":"us63"},{"ID":2656,"VillageID":5029,"NewOwnerID":848952732,"NewTribeID":91,"OldOwnerID":848917052,"OldTribeID":134,"Points":2517,"CreatedAt":"2023-02-10T17:59:57Z","ServerKey":"us63"},{"ID":2657,"VillageID":6094,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":163,"CreatedAt":"2023-02-10T18:08:31Z","ServerKey":"us63"},{"ID":2658,"VillageID":117,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-10T18:13:17Z","ServerKey":"us63"},{"ID":2659,"VillageID":1329,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848952270,"OldTribeID":0,"Points":2817,"CreatedAt":"2023-02-10T18:14:47Z","ServerKey":"us63"},{"ID":2660,"VillageID":2279,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":671,"CreatedAt":"2023-02-10T18:16:04Z","ServerKey":"us63"},{"ID":2661,"VillageID":4744,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-10T18:27:37Z","ServerKey":"us63"},{"ID":2662,"VillageID":1295,"NewOwnerID":848897874,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-10T18:45:58Z","ServerKey":"us63"},{"ID":2663,"VillageID":626,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-10T18:54:53Z","ServerKey":"us63"},{"ID":2664,"VillageID":4185,"NewOwnerID":848954723,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-10T19:02:02Z","ServerKey":"us63"},{"ID":2665,"VillageID":2744,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1533,"CreatedAt":"2023-02-10T19:09:38Z","ServerKey":"us63"},{"ID":2666,"VillageID":5025,"NewOwnerID":848938594,"NewTribeID":4,"OldOwnerID":558331,"OldTribeID":0,"Points":677,"CreatedAt":"2023-02-10T19:40:01Z","ServerKey":"us63"},{"ID":2667,"VillageID":4954,"NewOwnerID":780354,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-10T19:55:49Z","ServerKey":"us63"},{"ID":2668,"VillageID":6547,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":776340,"OldTribeID":0,"Points":1619,"CreatedAt":"2023-02-10T19:58:50Z","ServerKey":"us63"},{"ID":2669,"VillageID":3008,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":901,"CreatedAt":"2023-02-10T20:07:12Z","ServerKey":"us63"},{"ID":2670,"VillageID":6328,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-10T20:19:58Z","ServerKey":"us63"},{"ID":2671,"VillageID":1122,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-10T20:31:00Z","ServerKey":"us63"},{"ID":2672,"VillageID":1959,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1154,"CreatedAt":"2023-02-10T20:32:49Z","ServerKey":"us63"},{"ID":2673,"VillageID":292,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-10T20:36:01Z","ServerKey":"us63"},{"ID":2674,"VillageID":2544,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":297,"CreatedAt":"2023-02-10T20:37:31Z","ServerKey":"us63"},{"ID":2675,"VillageID":4937,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":848952875,"OldTribeID":0,"Points":3784,"CreatedAt":"2023-02-10T20:37:40Z","ServerKey":"us63"},{"ID":2676,"VillageID":1956,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-10T20:51:01Z","ServerKey":"us63"},{"ID":2677,"VillageID":3489,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":8044,"CreatedAt":"2023-02-10T20:52:30Z","ServerKey":"us63"},{"ID":2678,"VillageID":3355,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":348613,"OldTribeID":0,"Points":3622,"CreatedAt":"2023-02-10T20:52:30Z","ServerKey":"us63"},{"ID":2679,"VillageID":764,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-10T20:56:54Z","ServerKey":"us63"},{"ID":2680,"VillageID":6872,"NewOwnerID":848954774,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-02-10T20:59:06Z","ServerKey":"us63"},{"ID":2681,"VillageID":6689,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":848935817,"OldTribeID":0,"Points":1680,"CreatedAt":"2023-02-10T21:13:44Z","ServerKey":"us63"},{"ID":2682,"VillageID":2039,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-10T21:39:06Z","ServerKey":"us63"},{"ID":2683,"VillageID":7138,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":783836,"OldTribeID":0,"Points":1702,"CreatedAt":"2023-02-10T21:40:47Z","ServerKey":"us63"},{"ID":2684,"VillageID":578,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-10T21:42:15Z","ServerKey":"us63"},{"ID":2685,"VillageID":5781,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-10T21:45:21Z","ServerKey":"us63"},{"ID":2686,"VillageID":4910,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-10T21:52:34Z","ServerKey":"us63"},{"ID":2687,"VillageID":1783,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-10T22:03:05Z","ServerKey":"us63"},{"ID":2688,"VillageID":1367,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-10T22:03:49Z","ServerKey":"us63"},{"ID":2689,"VillageID":6249,"NewOwnerID":848952862,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1244,"CreatedAt":"2023-02-10T22:07:45Z","ServerKey":"us63"},{"ID":2690,"VillageID":3207,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-10T22:22:34Z","ServerKey":"us63"},{"ID":2691,"VillageID":6409,"NewOwnerID":848951672,"NewTribeID":93,"OldOwnerID":848952862,"OldTribeID":0,"Points":4096,"CreatedAt":"2023-02-10T22:23:17Z","ServerKey":"us63"},{"ID":2692,"VillageID":1506,"NewOwnerID":848954312,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-10T22:25:53Z","ServerKey":"us63"},{"ID":2693,"VillageID":3380,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-10T22:34:53Z","ServerKey":"us63"},{"ID":2694,"VillageID":5338,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-10T22:47:40Z","ServerKey":"us63"},{"ID":2695,"VillageID":5818,"NewOwnerID":627483,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-10T22:55:16Z","ServerKey":"us63"},{"ID":2696,"VillageID":1409,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-10T23:13:23Z","ServerKey":"us63"},{"ID":2697,"VillageID":1870,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-10T23:20:25Z","ServerKey":"us63"},{"ID":2698,"VillageID":1110,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-10T23:30:42Z","ServerKey":"us63"},{"ID":2699,"VillageID":5627,"NewOwnerID":789326,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-10T23:42:59Z","ServerKey":"us63"},{"ID":2700,"VillageID":3328,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-10T23:46:41Z","ServerKey":"us63"},{"ID":2701,"VillageID":3631,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-10T23:50:30Z","ServerKey":"us63"},{"ID":2702,"VillageID":2011,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-11T00:01:01Z","ServerKey":"us63"},{"ID":2703,"VillageID":7817,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":769,"CreatedAt":"2023-02-11T00:17:15Z","ServerKey":"us63"},{"ID":2704,"VillageID":4588,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-11T00:24:38Z","ServerKey":"us63"},{"ID":2705,"VillageID":3048,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-11T00:35:52Z","ServerKey":"us63"},{"ID":2706,"VillageID":3477,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-11T00:37:54Z","ServerKey":"us63"},{"ID":2707,"VillageID":3665,"NewOwnerID":679915,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-11T00:39:16Z","ServerKey":"us63"},{"ID":2708,"VillageID":5154,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-11T00:45:02Z","ServerKey":"us63"},{"ID":2709,"VillageID":7218,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-11T00:51:24Z","ServerKey":"us63"},{"ID":2710,"VillageID":3439,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-11T01:00:40Z","ServerKey":"us63"},{"ID":2711,"VillageID":3439,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":848951023,"OldTribeID":48,"Points":225,"CreatedAt":"2023-02-11T01:00:48Z","ServerKey":"us63"},{"ID":2712,"VillageID":8138,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-11T01:01:46Z","ServerKey":"us63"},{"ID":2713,"VillageID":1286,"NewOwnerID":848912363,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":314,"CreatedAt":"2023-02-11T01:14:05Z","ServerKey":"us63"},{"ID":2714,"VillageID":4116,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-11T01:18:29Z","ServerKey":"us63"},{"ID":2715,"VillageID":7816,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-11T01:35:28Z","ServerKey":"us63"},{"ID":2716,"VillageID":2126,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848943740,"OldTribeID":0,"Points":1083,"CreatedAt":"2023-02-11T01:51:21Z","ServerKey":"us63"},{"ID":2717,"VillageID":3366,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-11T01:51:28Z","ServerKey":"us63"},{"ID":2718,"VillageID":284,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-11T01:56:03Z","ServerKey":"us63"},{"ID":2719,"VillageID":1159,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-11T02:00:56Z","ServerKey":"us63"},{"ID":2720,"VillageID":5423,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-11T02:04:25Z","ServerKey":"us63"},{"ID":2721,"VillageID":838,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-11T02:13:53Z","ServerKey":"us63"},{"ID":2722,"VillageID":5946,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-11T02:13:59Z","ServerKey":"us63"},{"ID":2723,"VillageID":5276,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":848953281,"OldTribeID":0,"Points":1340,"CreatedAt":"2023-02-11T02:17:27Z","ServerKey":"us63"},{"ID":2724,"VillageID":3071,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-11T02:24:56Z","ServerKey":"us63"},{"ID":2725,"VillageID":7834,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":848955373,"OldTribeID":0,"Points":826,"CreatedAt":"2023-02-11T02:36:48Z","ServerKey":"us63"},{"ID":2726,"VillageID":1259,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-11T02:38:43Z","ServerKey":"us63"},{"ID":2727,"VillageID":1259,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":13512,"OldTribeID":20,"Points":224,"CreatedAt":"2023-02-11T02:38:43Z","ServerKey":"us63"},{"ID":2728,"VillageID":1878,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-11T02:41:48Z","ServerKey":"us63"},{"ID":2729,"VillageID":3305,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-11T02:47:56Z","ServerKey":"us63"},{"ID":2730,"VillageID":3063,"NewOwnerID":620806,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-11T02:50:18Z","ServerKey":"us63"},{"ID":2731,"VillageID":4264,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-11T02:58:06Z","ServerKey":"us63"},{"ID":2732,"VillageID":2947,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-11T03:00:44Z","ServerKey":"us63"},{"ID":2733,"VillageID":4801,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-11T03:28:04Z","ServerKey":"us63"},{"ID":2734,"VillageID":6127,"NewOwnerID":848955145,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-11T03:36:02Z","ServerKey":"us63"},{"ID":2735,"VillageID":8895,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-11T03:38:10Z","ServerKey":"us63"},{"ID":2736,"VillageID":1545,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-11T03:39:30Z","ServerKey":"us63"},{"ID":2737,"VillageID":7908,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":56,"CreatedAt":"2023-02-11T03:40:56Z","ServerKey":"us63"},{"ID":2738,"VillageID":3323,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":2220,"CreatedAt":"2023-02-11T03:46:58Z","ServerKey":"us63"},{"ID":2739,"VillageID":5758,"NewOwnerID":848954475,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-11T03:52:40Z","ServerKey":"us63"},{"ID":2740,"VillageID":2520,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-11T03:58:54Z","ServerKey":"us63"},{"ID":2741,"VillageID":5211,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-11T03:59:16Z","ServerKey":"us63"},{"ID":2742,"VillageID":371,"NewOwnerID":848925799,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-11T04:19:37Z","ServerKey":"us63"},{"ID":2743,"VillageID":4389,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-11T04:27:19Z","ServerKey":"us63"},{"ID":2744,"VillageID":4389,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":188,"CreatedAt":"2023-02-11T04:27:19Z","ServerKey":"us63"},{"ID":2745,"VillageID":620,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":478,"CreatedAt":"2023-02-11T04:52:18Z","ServerKey":"us63"},{"ID":2746,"VillageID":5281,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-11T04:56:41Z","ServerKey":"us63"},{"ID":2747,"VillageID":6543,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-11T05:08:37Z","ServerKey":"us63"},{"ID":2748,"VillageID":7169,"NewOwnerID":775730,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-11T05:14:48Z","ServerKey":"us63"},{"ID":2749,"VillageID":3732,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-11T05:23:31Z","ServerKey":"us63"},{"ID":2750,"VillageID":1972,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":651,"CreatedAt":"2023-02-11T05:26:40Z","ServerKey":"us63"},{"ID":2751,"VillageID":2406,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":1238,"CreatedAt":"2023-02-11T05:54:16Z","ServerKey":"us63"},{"ID":2752,"VillageID":4647,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-11T05:56:31Z","ServerKey":"us63"},{"ID":2753,"VillageID":2197,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-11T06:03:14Z","ServerKey":"us63"},{"ID":2754,"VillageID":5100,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-11T06:09:29Z","ServerKey":"us63"},{"ID":2755,"VillageID":6707,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":712074,"OldTribeID":0,"Points":1468,"CreatedAt":"2023-02-11T06:22:24Z","ServerKey":"us63"},{"ID":2756,"VillageID":2157,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-11T06:31:32Z","ServerKey":"us63"},{"ID":2757,"VillageID":1477,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":4122,"CreatedAt":"2023-02-11T06:53:03Z","ServerKey":"us63"},{"ID":2758,"VillageID":1309,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-11T06:55:58Z","ServerKey":"us63"},{"ID":2759,"VillageID":1309,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":176,"CreatedAt":"2023-02-11T06:55:58Z","ServerKey":"us63"},{"ID":2760,"VillageID":6145,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-11T07:00:45Z","ServerKey":"us63"},{"ID":2761,"VillageID":5096,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-11T07:10:14Z","ServerKey":"us63"},{"ID":2762,"VillageID":852,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-11T07:14:43Z","ServerKey":"us63"},{"ID":2763,"VillageID":1163,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-11T07:16:20Z","ServerKey":"us63"},{"ID":2764,"VillageID":145,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-11T07:18:54Z","ServerKey":"us63"},{"ID":2765,"VillageID":281,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-11T07:19:31Z","ServerKey":"us63"},{"ID":2766,"VillageID":965,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-11T07:50:14Z","ServerKey":"us63"},{"ID":2767,"VillageID":1444,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":2016,"CreatedAt":"2023-02-11T07:59:55Z","ServerKey":"us63"},{"ID":2768,"VillageID":8526,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-11T08:00:14Z","ServerKey":"us63"},{"ID":2769,"VillageID":1538,"NewOwnerID":848949204,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-11T08:38:19Z","ServerKey":"us63"},{"ID":2770,"VillageID":7288,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":848925848,"OldTribeID":134,"Points":1727,"CreatedAt":"2023-02-11T08:49:15Z","ServerKey":"us63"},{"ID":2771,"VillageID":4354,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848954812,"OldTribeID":65,"Points":3977,"CreatedAt":"2023-02-11T09:01:14Z","ServerKey":"us63"},{"ID":2772,"VillageID":160,"NewOwnerID":848947790,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-11T09:02:50Z","ServerKey":"us63"},{"ID":2773,"VillageID":6321,"NewOwnerID":848952862,"NewTribeID":93,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-11T09:04:38Z","ServerKey":"us63"},{"ID":2774,"VillageID":2003,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":587894,"OldTribeID":48,"Points":4891,"CreatedAt":"2023-02-11T09:11:56Z","ServerKey":"us63"},{"ID":2775,"VillageID":7183,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-11T09:18:35Z","ServerKey":"us63"},{"ID":2776,"VillageID":2139,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-11T09:29:08Z","ServerKey":"us63"},{"ID":2777,"VillageID":8912,"NewOwnerID":741238,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-11T10:17:51Z","ServerKey":"us63"},{"ID":2778,"VillageID":3322,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":474,"CreatedAt":"2023-02-11T10:25:50Z","ServerKey":"us63"},{"ID":2779,"VillageID":2003,"NewOwnerID":780339,"NewTribeID":74,"OldOwnerID":587894,"OldTribeID":48,"Points":4772,"CreatedAt":"2023-02-11T11:00:00Z","ServerKey":"us63"},{"ID":2780,"VillageID":2003,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":780339,"OldTribeID":74,"Points":4435,"CreatedAt":"2023-02-11T11:00:14Z","ServerKey":"us63"},{"ID":2781,"VillageID":3545,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-11T11:05:44Z","ServerKey":"us63"},{"ID":2782,"VillageID":1718,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-11T11:33:16Z","ServerKey":"us63"},{"ID":2783,"VillageID":968,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-11T11:39:56Z","ServerKey":"us63"},{"ID":2784,"VillageID":455,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":9148,"CreatedAt":"2023-02-11T11:46:21Z","ServerKey":"us63"},{"ID":2785,"VillageID":1095,"NewOwnerID":459451,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-11T12:09:56Z","ServerKey":"us63"},{"ID":2786,"VillageID":1935,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-11T12:09:56Z","ServerKey":"us63"},{"ID":2787,"VillageID":4832,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-11T12:23:11Z","ServerKey":"us63"},{"ID":2788,"VillageID":5640,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-11T12:43:06Z","ServerKey":"us63"},{"ID":2789,"VillageID":584,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-11T12:45:12Z","ServerKey":"us63"},{"ID":2790,"VillageID":573,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-11T12:53:40Z","ServerKey":"us63"},{"ID":2791,"VillageID":1501,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-11T12:54:46Z","ServerKey":"us63"},{"ID":2792,"VillageID":3741,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-11T13:09:54Z","ServerKey":"us63"},{"ID":2793,"VillageID":7390,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-11T13:20:32Z","ServerKey":"us63"},{"ID":2794,"VillageID":8879,"NewOwnerID":848948099,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-11T13:31:10Z","ServerKey":"us63"},{"ID":2795,"VillageID":3775,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-11T13:53:51Z","ServerKey":"us63"},{"ID":2796,"VillageID":127,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-11T13:54:57Z","ServerKey":"us63"},{"ID":2797,"VillageID":1768,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":881,"CreatedAt":"2023-02-11T14:04:34Z","ServerKey":"us63"},{"ID":2798,"VillageID":5722,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-11T14:09:56Z","ServerKey":"us63"},{"ID":2799,"VillageID":428,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-11T14:24:21Z","ServerKey":"us63"},{"ID":2800,"VillageID":6991,"NewOwnerID":848955238,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-02-11T14:25:55Z","ServerKey":"us63"},{"ID":2801,"VillageID":5688,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-11T14:33:59Z","ServerKey":"us63"},{"ID":2802,"VillageID":3372,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-11T14:55:31Z","ServerKey":"us63"},{"ID":2803,"VillageID":345,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-11T15:00:03Z","ServerKey":"us63"},{"ID":2804,"VillageID":5656,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-11T15:01:12Z","ServerKey":"us63"},{"ID":2805,"VillageID":7059,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848955238,"OldTribeID":216,"Points":3319,"CreatedAt":"2023-02-11T15:10:46Z","ServerKey":"us63"},{"ID":2806,"VillageID":5801,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":167,"CreatedAt":"2023-02-11T15:19:18Z","ServerKey":"us63"},{"ID":2807,"VillageID":442,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":365,"CreatedAt":"2023-02-11T15:33:00Z","ServerKey":"us63"},{"ID":2808,"VillageID":2979,"NewOwnerID":716656,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-11T15:33:04Z","ServerKey":"us63"},{"ID":2809,"VillageID":669,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-11T15:40:01Z","ServerKey":"us63"},{"ID":2810,"VillageID":414,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-11T15:40:47Z","ServerKey":"us63"},{"ID":2811,"VillageID":505,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-11T16:02:53Z","ServerKey":"us63"},{"ID":2812,"VillageID":4125,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":242,"CreatedAt":"2023-02-11T16:09:39Z","ServerKey":"us63"},{"ID":2813,"VillageID":7490,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-11T16:15:17Z","ServerKey":"us63"},{"ID":2814,"VillageID":3131,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-11T16:17:19Z","ServerKey":"us63"},{"ID":2815,"VillageID":7730,"NewOwnerID":1582,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-11T16:23:12Z","ServerKey":"us63"},{"ID":2816,"VillageID":3478,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-11T16:24:04Z","ServerKey":"us63"},{"ID":2817,"VillageID":7525,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":848955323,"OldTribeID":0,"Points":695,"CreatedAt":"2023-02-11T16:31:08Z","ServerKey":"us63"},{"ID":2818,"VillageID":1699,"NewOwnerID":848947757,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-11T16:36:45Z","ServerKey":"us63"},{"ID":2819,"VillageID":1790,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-11T16:47:54Z","ServerKey":"us63"},{"ID":2820,"VillageID":1324,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-11T17:01:20Z","ServerKey":"us63"},{"ID":2821,"VillageID":1339,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-11T17:01:46Z","ServerKey":"us63"},{"ID":2822,"VillageID":1413,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-11T17:01:51Z","ServerKey":"us63"},{"ID":2823,"VillageID":5278,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-11T17:56:11Z","ServerKey":"us63"},{"ID":2824,"VillageID":1572,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":3317,"CreatedAt":"2023-02-11T17:57:45Z","ServerKey":"us63"},{"ID":2825,"VillageID":7365,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-11T18:12:26Z","ServerKey":"us63"},{"ID":2826,"VillageID":7748,"NewOwnerID":1582,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-11T18:12:30Z","ServerKey":"us63"},{"ID":2827,"VillageID":4136,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848899662,"OldTribeID":127,"Points":3866,"CreatedAt":"2023-02-11T18:12:56Z","ServerKey":"us63"},{"ID":2828,"VillageID":1472,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-11T18:22:52Z","ServerKey":"us63"},{"ID":2829,"VillageID":7831,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":848955372,"OldTribeID":191,"Points":949,"CreatedAt":"2023-02-11T19:07:25Z","ServerKey":"us63"},{"ID":2830,"VillageID":4480,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-11T19:13:05Z","ServerKey":"us63"},{"ID":2831,"VillageID":4288,"NewOwnerID":272678,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-11T19:15:37Z","ServerKey":"us63"},{"ID":2832,"VillageID":8131,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-11T19:43:58Z","ServerKey":"us63"},{"ID":2833,"VillageID":4823,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-11T19:44:17Z","ServerKey":"us63"},{"ID":2834,"VillageID":7805,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-11T20:06:04Z","ServerKey":"us63"},{"ID":2835,"VillageID":2308,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":3147,"CreatedAt":"2023-02-11T20:11:32Z","ServerKey":"us63"},{"ID":2836,"VillageID":2829,"NewOwnerID":767834,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-11T20:45:21Z","ServerKey":"us63"},{"ID":2837,"VillageID":2559,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848943740,"OldTribeID":0,"Points":6135,"CreatedAt":"2023-02-11T21:05:56Z","ServerKey":"us63"},{"ID":2838,"VillageID":5786,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-11T21:09:11Z","ServerKey":"us63"},{"ID":2839,"VillageID":5786,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":45,"CreatedAt":"2023-02-11T21:09:11Z","ServerKey":"us63"},{"ID":2840,"VillageID":1971,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":2110,"CreatedAt":"2023-02-11T21:24:06Z","ServerKey":"us63"},{"ID":2841,"VillageID":7443,"NewOwnerID":848954744,"NewTribeID":172,"OldOwnerID":848933502,"OldTribeID":0,"Points":869,"CreatedAt":"2023-02-11T21:33:22Z","ServerKey":"us63"},{"ID":2842,"VillageID":1971,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":587894,"OldTribeID":48,"Points":2027,"CreatedAt":"2023-02-11T21:36:31Z","ServerKey":"us63"},{"ID":2843,"VillageID":3659,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-11T21:36:38Z","ServerKey":"us63"},{"ID":2844,"VillageID":3716,"NewOwnerID":539612,"NewTribeID":65,"OldOwnerID":848943308,"OldTribeID":22,"Points":779,"CreatedAt":"2023-02-11T22:03:10Z","ServerKey":"us63"},{"ID":2845,"VillageID":6482,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-11T22:03:49Z","ServerKey":"us63"},{"ID":2846,"VillageID":2966,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":285,"CreatedAt":"2023-02-11T22:10:10Z","ServerKey":"us63"},{"ID":2847,"VillageID":1672,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-11T22:28:05Z","ServerKey":"us63"},{"ID":2848,"VillageID":3304,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-11T22:35:05Z","ServerKey":"us63"},{"ID":2849,"VillageID":268,"NewOwnerID":848952522,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-11T22:37:41Z","ServerKey":"us63"},{"ID":2850,"VillageID":45,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-11T22:50:04Z","ServerKey":"us63"},{"ID":2851,"VillageID":2865,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":848925398,"OldTribeID":0,"Points":1773,"CreatedAt":"2023-02-11T22:54:00Z","ServerKey":"us63"},{"ID":2852,"VillageID":2810,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-11T22:55:05Z","ServerKey":"us63"},{"ID":2853,"VillageID":5292,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-11T23:00:39Z","ServerKey":"us63"},{"ID":2854,"VillageID":5292,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":117,"CreatedAt":"2023-02-11T23:00:39Z","ServerKey":"us63"},{"ID":2855,"VillageID":1697,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-11T23:16:58Z","ServerKey":"us63"},{"ID":2856,"VillageID":1649,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-11T23:17:02Z","ServerKey":"us63"},{"ID":2857,"VillageID":6835,"NewOwnerID":848908351,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-11T23:21:33Z","ServerKey":"us63"},{"ID":2858,"VillageID":1670,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-11T23:29:27Z","ServerKey":"us63"},{"ID":2859,"VillageID":6156,"NewOwnerID":848955067,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":1413,"CreatedAt":"2023-02-11T23:33:37Z","ServerKey":"us63"},{"ID":2860,"VillageID":885,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-12T00:00:00Z","ServerKey":"us63"},{"ID":2861,"VillageID":2064,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-12T00:00:49Z","ServerKey":"us63"},{"ID":2862,"VillageID":3638,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-12T00:16:10Z","ServerKey":"us63"},{"ID":2863,"VillageID":1061,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848925799,"OldTribeID":0,"Points":4222,"CreatedAt":"2023-02-12T00:41:02Z","ServerKey":"us63"},{"ID":2864,"VillageID":1933,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":2048,"CreatedAt":"2023-02-12T00:43:53Z","ServerKey":"us63"},{"ID":2865,"VillageID":1052,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-12T00:50:24Z","ServerKey":"us63"},{"ID":2866,"VillageID":7805,"NewOwnerID":775730,"NewTribeID":105,"OldOwnerID":848955081,"OldTribeID":172,"Points":176,"CreatedAt":"2023-02-12T00:55:51Z","ServerKey":"us63"},{"ID":2867,"VillageID":1941,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":626,"CreatedAt":"2023-02-12T01:09:14Z","ServerKey":"us63"},{"ID":2868,"VillageID":2337,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-12T01:09:25Z","ServerKey":"us63"},{"ID":2869,"VillageID":2371,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-12T01:15:20Z","ServerKey":"us63"},{"ID":2870,"VillageID":2423,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":321370,"OldTribeID":69,"Points":12154,"CreatedAt":"2023-02-12T01:16:06Z","ServerKey":"us63"},{"ID":2871,"VillageID":7537,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-12T01:30:25Z","ServerKey":"us63"},{"ID":2872,"VillageID":2103,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":652,"CreatedAt":"2023-02-12T01:44:14Z","ServerKey":"us63"},{"ID":2873,"VillageID":1182,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-12T01:48:25Z","ServerKey":"us63"},{"ID":2874,"VillageID":1182,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":306,"CreatedAt":"2023-02-12T01:48:25Z","ServerKey":"us63"},{"ID":2875,"VillageID":1182,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":463920,"OldTribeID":20,"Points":282,"CreatedAt":"2023-02-12T01:48:27Z","ServerKey":"us63"},{"ID":2876,"VillageID":5862,"NewOwnerID":848955008,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-12T01:53:09Z","ServerKey":"us63"},{"ID":2877,"VillageID":3457,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-12T02:01:56Z","ServerKey":"us63"},{"ID":2878,"VillageID":367,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-12T02:04:25Z","ServerKey":"us63"},{"ID":2879,"VillageID":1781,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-12T02:27:36Z","ServerKey":"us63"},{"ID":2880,"VillageID":1270,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-12T02:40:00Z","ServerKey":"us63"},{"ID":2881,"VillageID":6423,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-12T02:41:55Z","ServerKey":"us63"},{"ID":2882,"VillageID":480,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-12T02:48:45Z","ServerKey":"us63"},{"ID":2883,"VillageID":1017,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-12T03:00:01Z","ServerKey":"us63"},{"ID":2884,"VillageID":5141,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-12T03:05:29Z","ServerKey":"us63"},{"ID":2885,"VillageID":3246,"NewOwnerID":848949093,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":511,"CreatedAt":"2023-02-12T03:06:00Z","ServerKey":"us63"},{"ID":2886,"VillageID":3520,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":1578,"CreatedAt":"2023-02-12T03:15:16Z","ServerKey":"us63"},{"ID":2887,"VillageID":296,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":321370,"OldTribeID":69,"Points":11241,"CreatedAt":"2023-02-12T03:18:13Z","ServerKey":"us63"},{"ID":2888,"VillageID":5345,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-12T03:18:33Z","ServerKey":"us63"},{"ID":2889,"VillageID":7403,"NewOwnerID":455512,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-02-12T03:28:47Z","ServerKey":"us63"},{"ID":2890,"VillageID":8142,"NewOwnerID":848955157,"NewTribeID":162,"OldOwnerID":848955425,"OldTribeID":206,"Points":884,"CreatedAt":"2023-02-12T03:45:04Z","ServerKey":"us63"},{"ID":2891,"VillageID":1851,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-12T03:49:51Z","ServerKey":"us63"},{"ID":2892,"VillageID":3194,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":182,"Points":9329,"CreatedAt":"2023-02-12T04:00:00Z","ServerKey":"us63"},{"ID":2893,"VillageID":855,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":741238,"OldTribeID":182,"Points":4925,"CreatedAt":"2023-02-12T04:00:00Z","ServerKey":"us63"},{"ID":2894,"VillageID":1919,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":3942,"CreatedAt":"2023-02-12T04:05:45Z","ServerKey":"us63"},{"ID":2895,"VillageID":1541,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-12T04:14:22Z","ServerKey":"us63"},{"ID":2896,"VillageID":7675,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-12T04:18:41Z","ServerKey":"us63"},{"ID":2897,"VillageID":4626,"NewOwnerID":848905385,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-12T04:20:33Z","ServerKey":"us63"},{"ID":2898,"VillageID":6255,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-12T04:21:14Z","ServerKey":"us63"},{"ID":2899,"VillageID":123,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-12T04:26:37Z","ServerKey":"us63"},{"ID":2900,"VillageID":6171,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-12T04:31:23Z","ServerKey":"us63"},{"ID":2901,"VillageID":1907,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":3131,"CreatedAt":"2023-02-12T04:41:27Z","ServerKey":"us63"},{"ID":2902,"VillageID":1907,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":587894,"OldTribeID":48,"Points":3131,"CreatedAt":"2023-02-12T04:41:27Z","ServerKey":"us63"},{"ID":2903,"VillageID":310,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":278,"CreatedAt":"2023-02-12T04:45:09Z","ServerKey":"us63"},{"ID":2904,"VillageID":1819,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":9733,"CreatedAt":"2023-02-12T04:50:48Z","ServerKey":"us63"},{"ID":2905,"VillageID":2429,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848953610,"OldTribeID":34,"Points":3448,"CreatedAt":"2023-02-12T04:52:14Z","ServerKey":"us63"},{"ID":2906,"VillageID":6836,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848954548,"OldTribeID":0,"Points":379,"CreatedAt":"2023-02-12T04:58:52Z","ServerKey":"us63"},{"ID":2907,"VillageID":841,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":732810,"OldTribeID":0,"Points":10466,"CreatedAt":"2023-02-12T05:05:35Z","ServerKey":"us63"},{"ID":2908,"VillageID":3884,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-12T05:17:55Z","ServerKey":"us63"},{"ID":2909,"VillageID":2086,"NewOwnerID":848911465,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-12T05:22:33Z","ServerKey":"us63"},{"ID":2910,"VillageID":8697,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-12T05:25:21Z","ServerKey":"us63"},{"ID":2911,"VillageID":7552,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-12T05:38:53Z","ServerKey":"us63"},{"ID":2912,"VillageID":5867,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-12T06:01:38Z","ServerKey":"us63"},{"ID":2913,"VillageID":3242,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":741238,"OldTribeID":0,"Points":2848,"CreatedAt":"2023-02-12T06:20:20Z","ServerKey":"us63"},{"ID":2914,"VillageID":3876,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":5950,"CreatedAt":"2023-02-12T06:23:25Z","ServerKey":"us63"},{"ID":2915,"VillageID":3876,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":264792,"OldTribeID":138,"Points":5950,"CreatedAt":"2023-02-12T06:23:25Z","ServerKey":"us63"},{"ID":2916,"VillageID":61,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-12T06:28:00Z","ServerKey":"us63"},{"ID":2917,"VillageID":1763,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848881936,"OldTribeID":5,"Points":1648,"CreatedAt":"2023-02-12T06:30:13Z","ServerKey":"us63"},{"ID":2918,"VillageID":8750,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":47,"CreatedAt":"2023-02-12T06:36:28Z","ServerKey":"us63"},{"ID":2919,"VillageID":8230,"NewOwnerID":1582,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-12T06:36:31Z","ServerKey":"us63"},{"ID":2920,"VillageID":7461,"NewOwnerID":848938227,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-12T06:41:40Z","ServerKey":"us63"},{"ID":2921,"VillageID":80,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-12T06:44:10Z","ServerKey":"us63"},{"ID":2922,"VillageID":1175,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":248,"CreatedAt":"2023-02-12T06:47:23Z","ServerKey":"us63"},{"ID":2923,"VillageID":417,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":848881936,"OldTribeID":5,"Points":1367,"CreatedAt":"2023-02-12T07:03:44Z","ServerKey":"us63"},{"ID":2924,"VillageID":5524,"NewOwnerID":775955,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-12T07:27:25Z","ServerKey":"us63"},{"ID":2925,"VillageID":1742,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-12T07:39:23Z","ServerKey":"us63"},{"ID":2926,"VillageID":1333,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-12T08:01:54Z","ServerKey":"us63"},{"ID":2927,"VillageID":366,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-12T08:10:44Z","ServerKey":"us63"},{"ID":2928,"VillageID":963,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-12T08:13:01Z","ServerKey":"us63"},{"ID":2929,"VillageID":1741,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-12T08:27:22Z","ServerKey":"us63"},{"ID":2930,"VillageID":1486,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-12T08:38:00Z","ServerKey":"us63"},{"ID":2931,"VillageID":1823,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-12T08:45:33Z","ServerKey":"us63"},{"ID":2932,"VillageID":1823,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":594491,"OldTribeID":86,"Points":234,"CreatedAt":"2023-02-12T08:45:33Z","ServerKey":"us63"},{"ID":2933,"VillageID":8436,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":848955474,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-12T08:54:29Z","ServerKey":"us63"},{"ID":2934,"VillageID":1971,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":848952236,"OldTribeID":74,"Points":2015,"CreatedAt":"2023-02-12T09:06:42Z","ServerKey":"us63"},{"ID":2935,"VillageID":647,"NewOwnerID":848952024,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-12T09:16:36Z","ServerKey":"us63"},{"ID":2936,"VillageID":6434,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":772572,"OldTribeID":0,"Points":2136,"CreatedAt":"2023-02-12T09:19:32Z","ServerKey":"us63"},{"ID":2937,"VillageID":1301,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-12T09:37:59Z","ServerKey":"us63"},{"ID":2938,"VillageID":1807,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-12T09:41:37Z","ServerKey":"us63"},{"ID":2939,"VillageID":1746,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-12T09:54:25Z","ServerKey":"us63"},{"ID":2940,"VillageID":7105,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-12T09:55:56Z","ServerKey":"us63"},{"ID":2941,"VillageID":501,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-12T10:01:09Z","ServerKey":"us63"},{"ID":2942,"VillageID":2708,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-12T10:15:48Z","ServerKey":"us63"},{"ID":2943,"VillageID":4460,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-12T10:16:14Z","ServerKey":"us63"},{"ID":2944,"VillageID":714,"NewOwnerID":848929146,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-12T10:17:35Z","ServerKey":"us63"},{"ID":2945,"VillageID":770,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-12T10:23:39Z","ServerKey":"us63"},{"ID":2946,"VillageID":3188,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-12T10:28:33Z","ServerKey":"us63"},{"ID":2947,"VillageID":647,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848952024,"OldTribeID":163,"Points":197,"CreatedAt":"2023-02-12T11:15:13Z","ServerKey":"us63"},{"ID":2948,"VillageID":970,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-12T11:32:00Z","ServerKey":"us63"},{"ID":2949,"VillageID":133,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":416,"CreatedAt":"2023-02-12T11:49:28Z","ServerKey":"us63"},{"ID":2950,"VillageID":2351,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":654,"CreatedAt":"2023-02-12T11:52:29Z","ServerKey":"us63"},{"ID":2951,"VillageID":4370,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":848905385,"OldTribeID":0,"Points":570,"CreatedAt":"2023-02-12T11:55:59Z","ServerKey":"us63"},{"ID":2952,"VillageID":8908,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-12T12:07:04Z","ServerKey":"us63"},{"ID":2953,"VillageID":1899,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-12T12:07:59Z","ServerKey":"us63"},{"ID":2954,"VillageID":2006,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-12T12:11:05Z","ServerKey":"us63"},{"ID":2955,"VillageID":578,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":779484,"OldTribeID":48,"Points":601,"CreatedAt":"2023-02-12T12:11:13Z","ServerKey":"us63"},{"ID":2956,"VillageID":2806,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-12T12:36:03Z","ServerKey":"us63"},{"ID":2957,"VillageID":3460,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-12T12:41:52Z","ServerKey":"us63"},{"ID":2958,"VillageID":992,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-12T13:06:36Z","ServerKey":"us63"},{"ID":2959,"VillageID":4048,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-12T13:10:55Z","ServerKey":"us63"},{"ID":2960,"VillageID":2499,"NewOwnerID":848940914,"NewTribeID":150,"OldOwnerID":848954532,"OldTribeID":49,"Points":825,"CreatedAt":"2023-02-12T13:39:55Z","ServerKey":"us63"},{"ID":2961,"VillageID":1798,"NewOwnerID":848937811,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-12T13:48:00Z","ServerKey":"us63"},{"ID":2962,"VillageID":3428,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-12T13:48:52Z","ServerKey":"us63"},{"ID":2963,"VillageID":1836,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-12T13:50:00Z","ServerKey":"us63"},{"ID":2964,"VillageID":1202,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-12T13:52:46Z","ServerKey":"us63"},{"ID":2965,"VillageID":647,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":197,"CreatedAt":"2023-02-12T14:04:58Z","ServerKey":"us63"},{"ID":2966,"VillageID":2270,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":788,"CreatedAt":"2023-02-12T14:25:09Z","ServerKey":"us63"},{"ID":2967,"VillageID":3024,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":699876,"OldTribeID":0,"Points":2088,"CreatedAt":"2023-02-12T14:32:25Z","ServerKey":"us63"},{"ID":2968,"VillageID":2148,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-12T14:37:40Z","ServerKey":"us63"},{"ID":2969,"VillageID":3082,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-12T14:39:02Z","ServerKey":"us63"},{"ID":2970,"VillageID":4113,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-12T14:54:17Z","ServerKey":"us63"},{"ID":2971,"VillageID":7634,"NewOwnerID":302611,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-12T15:08:33Z","ServerKey":"us63"},{"ID":2972,"VillageID":2395,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-12T15:22:10Z","ServerKey":"us63"},{"ID":2973,"VillageID":3711,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":231,"CreatedAt":"2023-02-12T15:34:19Z","ServerKey":"us63"},{"ID":2974,"VillageID":5812,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-12T15:45:14Z","ServerKey":"us63"},{"ID":2975,"VillageID":3046,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-12T15:49:22Z","ServerKey":"us63"},{"ID":2976,"VillageID":374,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-12T15:52:10Z","ServerKey":"us63"},{"ID":2977,"VillageID":2794,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-12T15:58:28Z","ServerKey":"us63"},{"ID":2978,"VillageID":2598,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-12T16:04:02Z","ServerKey":"us63"},{"ID":2979,"VillageID":3315,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-12T16:09:35Z","ServerKey":"us63"},{"ID":2980,"VillageID":1145,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-12T16:11:24Z","ServerKey":"us63"},{"ID":2981,"VillageID":2205,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":848952875,"OldTribeID":0,"Points":2163,"CreatedAt":"2023-02-12T16:14:43Z","ServerKey":"us63"},{"ID":2982,"VillageID":3055,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-12T16:17:27Z","ServerKey":"us63"},{"ID":2983,"VillageID":523,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-12T16:25:09Z","ServerKey":"us63"},{"ID":2984,"VillageID":523,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":304,"CreatedAt":"2023-02-12T16:25:09Z","ServerKey":"us63"},{"ID":2986,"VillageID":7093,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-12T16:31:15Z","ServerKey":"us63"},{"ID":2987,"VillageID":6314,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":190,"CreatedAt":"2023-02-12T16:31:33Z","ServerKey":"us63"},{"ID":2988,"VillageID":5001,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-12T16:52:05Z","ServerKey":"us63"},{"ID":2989,"VillageID":6539,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":125,"CreatedAt":"2023-02-12T16:52:33Z","ServerKey":"us63"},{"ID":2990,"VillageID":7947,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-12T16:57:36Z","ServerKey":"us63"},{"ID":2991,"VillageID":8208,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-12T17:01:00Z","ServerKey":"us63"},{"ID":2992,"VillageID":7503,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-02-12T17:02:53Z","ServerKey":"us63"},{"ID":2993,"VillageID":7503,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":848949493,"OldTribeID":48,"Points":90,"CreatedAt":"2023-02-12T17:02:53Z","ServerKey":"us63"},{"ID":2996,"VillageID":2722,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-12T17:04:48Z","ServerKey":"us63"},{"ID":2997,"VillageID":4609,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-12T17:09:46Z","ServerKey":"us63"},{"ID":2998,"VillageID":2390,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-12T17:12:27Z","ServerKey":"us63"},{"ID":2999,"VillageID":2812,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-12T17:19:12Z","ServerKey":"us63"},{"ID":3000,"VillageID":1510,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":677,"CreatedAt":"2023-02-12T17:28:21Z","ServerKey":"us63"},{"ID":3001,"VillageID":8377,"NewOwnerID":848954719,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-02-12T17:41:22Z","ServerKey":"us63"},{"ID":3002,"VillageID":8495,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-12T18:04:40Z","ServerKey":"us63"},{"ID":3003,"VillageID":3779,"NewOwnerID":785871,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-12T18:09:54Z","ServerKey":"us63"},{"ID":3004,"VillageID":301,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-12T18:17:29Z","ServerKey":"us63"},{"ID":3005,"VillageID":3889,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":6928,"CreatedAt":"2023-02-12T18:28:00Z","ServerKey":"us63"},{"ID":3006,"VillageID":1879,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-12T18:29:19Z","ServerKey":"us63"},{"ID":3007,"VillageID":1932,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-12T18:41:13Z","ServerKey":"us63"},{"ID":3008,"VillageID":3288,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-12T18:49:26Z","ServerKey":"us63"},{"ID":3009,"VillageID":1905,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":431,"CreatedAt":"2023-02-12T18:57:43Z","ServerKey":"us63"},{"ID":3010,"VillageID":2655,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-12T19:00:08Z","ServerKey":"us63"},{"ID":3011,"VillageID":177,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-12T19:03:35Z","ServerKey":"us63"},{"ID":3012,"VillageID":2228,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-12T19:04:11Z","ServerKey":"us63"},{"ID":3013,"VillageID":3092,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-12T19:14:16Z","ServerKey":"us63"},{"ID":3014,"VillageID":3092,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":264792,"OldTribeID":138,"Points":331,"CreatedAt":"2023-02-12T19:14:16Z","ServerKey":"us63"},{"ID":3015,"VillageID":2370,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":245,"CreatedAt":"2023-02-12T19:22:15Z","ServerKey":"us63"},{"ID":3016,"VillageID":3199,"NewOwnerID":848952556,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-12T19:27:50Z","ServerKey":"us63"},{"ID":3017,"VillageID":7158,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-12T19:34:11Z","ServerKey":"us63"},{"ID":3018,"VillageID":2655,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":616498,"OldTribeID":48,"Points":389,"CreatedAt":"2023-02-12T19:40:06Z","ServerKey":"us63"},{"ID":3019,"VillageID":2655,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848954640,"OldTribeID":2,"Points":389,"CreatedAt":"2023-02-12T19:40:06Z","ServerKey":"us63"},{"ID":3022,"VillageID":2167,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-12T19:40:14Z","ServerKey":"us63"},{"ID":3023,"VillageID":809,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-12T19:46:47Z","ServerKey":"us63"},{"ID":3024,"VillageID":6951,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-12T19:57:29Z","ServerKey":"us63"},{"ID":3025,"VillageID":6940,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":128,"CreatedAt":"2023-02-12T20:02:42Z","ServerKey":"us63"},{"ID":3026,"VillageID":3483,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":339,"CreatedAt":"2023-02-12T20:08:36Z","ServerKey":"us63"},{"ID":3027,"VillageID":4564,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-12T20:11:14Z","ServerKey":"us63"},{"ID":3028,"VillageID":6761,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-12T20:25:47Z","ServerKey":"us63"},{"ID":3029,"VillageID":7578,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-12T20:27:41Z","ServerKey":"us63"},{"ID":3030,"VillageID":1519,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-12T20:29:41Z","ServerKey":"us63"},{"ID":3031,"VillageID":147,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":376,"CreatedAt":"2023-02-12T20:36:10Z","ServerKey":"us63"},{"ID":3032,"VillageID":2397,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-12T21:19:56Z","ServerKey":"us63"},{"ID":3033,"VillageID":5752,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-12T21:27:13Z","ServerKey":"us63"},{"ID":3034,"VillageID":2965,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-12T21:28:13Z","ServerKey":"us63"},{"ID":3035,"VillageID":3535,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-12T21:28:15Z","ServerKey":"us63"},{"ID":3036,"VillageID":7048,"NewOwnerID":514187,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-12T21:28:48Z","ServerKey":"us63"},{"ID":3037,"VillageID":8728,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-12T21:41:13Z","ServerKey":"us63"},{"ID":3038,"VillageID":7017,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-12T21:44:35Z","ServerKey":"us63"},{"ID":3039,"VillageID":7017,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848946291,"OldTribeID":76,"Points":130,"CreatedAt":"2023-02-12T21:44:35Z","ServerKey":"us63"},{"ID":3040,"VillageID":1647,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-12T21:47:06Z","ServerKey":"us63"},{"ID":3041,"VillageID":1361,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":618,"CreatedAt":"2023-02-12T21:48:00Z","ServerKey":"us63"},{"ID":3042,"VillageID":7847,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":848952862,"OldTribeID":0,"Points":5144,"CreatedAt":"2023-02-12T21:51:17Z","ServerKey":"us63"},{"ID":3043,"VillageID":7847,"NewOwnerID":848952862,"NewTribeID":0,"OldOwnerID":848952678,"OldTribeID":219,"Points":5144,"CreatedAt":"2023-02-12T21:51:17Z","ServerKey":"us63"},{"ID":3044,"VillageID":7215,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-12T21:52:32Z","ServerKey":"us63"},{"ID":3045,"VillageID":946,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":198,"CreatedAt":"2023-02-12T22:00:52Z","ServerKey":"us63"},{"ID":3046,"VillageID":3028,"NewOwnerID":509766,"NewTribeID":6,"OldOwnerID":848954261,"OldTribeID":38,"Points":2107,"CreatedAt":"2023-02-12T22:09:35Z","ServerKey":"us63"},{"ID":3047,"VillageID":7543,"NewOwnerID":848954608,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-12T22:29:58Z","ServerKey":"us63"},{"ID":3048,"VillageID":2855,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-12T22:45:50Z","ServerKey":"us63"},{"ID":3049,"VillageID":2504,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-12T22:47:38Z","ServerKey":"us63"},{"ID":3050,"VillageID":570,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-12T23:00:24Z","ServerKey":"us63"},{"ID":3051,"VillageID":2921,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-12T23:02:06Z","ServerKey":"us63"},{"ID":3052,"VillageID":1719,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":699,"CreatedAt":"2023-02-12T23:22:54Z","ServerKey":"us63"},{"ID":3053,"VillageID":2655,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848954640,"OldTribeID":2,"Points":370,"CreatedAt":"2023-02-12T23:23:49Z","ServerKey":"us63"},{"ID":3054,"VillageID":2313,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":310,"CreatedAt":"2023-02-12T23:27:55Z","ServerKey":"us63"},{"ID":3055,"VillageID":4312,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":2045,"CreatedAt":"2023-02-12T23:29:22Z","ServerKey":"us63"},{"ID":3056,"VillageID":2471,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-12T23:29:44Z","ServerKey":"us63"},{"ID":3057,"VillageID":5371,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-12T23:30:38Z","ServerKey":"us63"},{"ID":3058,"VillageID":2840,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":399,"CreatedAt":"2023-02-12T23:55:46Z","ServerKey":"us63"},{"ID":3059,"VillageID":7530,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-13T00:00:26Z","ServerKey":"us63"},{"ID":3060,"VillageID":41,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-13T00:20:00Z","ServerKey":"us63"},{"ID":3061,"VillageID":2389,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848953340,"OldTribeID":34,"Points":7219,"CreatedAt":"2023-02-13T00:21:35Z","ServerKey":"us63"},{"ID":3062,"VillageID":1180,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-13T00:26:12Z","ServerKey":"us63"},{"ID":3063,"VillageID":3435,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-13T00:28:52Z","ServerKey":"us63"},{"ID":3064,"VillageID":3758,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":300,"CreatedAt":"2023-02-13T00:29:56Z","ServerKey":"us63"},{"ID":3065,"VillageID":8139,"NewOwnerID":848954475,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":1212,"CreatedAt":"2023-02-13T00:34:36Z","ServerKey":"us63"},{"ID":3066,"VillageID":424,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-13T00:34:47Z","ServerKey":"us63"},{"ID":3067,"VillageID":746,"NewOwnerID":768042,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-13T00:39:03Z","ServerKey":"us63"},{"ID":3068,"VillageID":8015,"NewOwnerID":769180,"NewTribeID":182,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-13T00:44:30Z","ServerKey":"us63"},{"ID":3069,"VillageID":3738,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-13T00:48:21Z","ServerKey":"us63"},{"ID":3070,"VillageID":4568,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":790742,"OldTribeID":129,"Points":4037,"CreatedAt":"2023-02-13T00:53:35Z","ServerKey":"us63"},{"ID":3071,"VillageID":4400,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":539612,"OldTribeID":65,"Points":5436,"CreatedAt":"2023-02-13T00:56:48Z","ServerKey":"us63"},{"ID":3072,"VillageID":5117,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-13T00:59:03Z","ServerKey":"us63"},{"ID":3073,"VillageID":2254,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":637,"CreatedAt":"2023-02-13T01:00:37Z","ServerKey":"us63"},{"ID":3074,"VillageID":1577,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-13T01:06:00Z","ServerKey":"us63"},{"ID":3075,"VillageID":140,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-13T01:23:01Z","ServerKey":"us63"},{"ID":3076,"VillageID":1667,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-13T01:23:15Z","ServerKey":"us63"},{"ID":3077,"VillageID":830,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-13T01:32:34Z","ServerKey":"us63"},{"ID":3078,"VillageID":5593,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848953972,"OldTribeID":203,"Points":2111,"CreatedAt":"2023-02-13T01:36:51Z","ServerKey":"us63"},{"ID":3079,"VillageID":1565,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":367,"CreatedAt":"2023-02-13T01:41:21Z","ServerKey":"us63"},{"ID":3080,"VillageID":2202,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":696,"CreatedAt":"2023-02-13T01:43:59Z","ServerKey":"us63"},{"ID":3081,"VillageID":1280,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-13T01:44:24Z","ServerKey":"us63"},{"ID":3082,"VillageID":1824,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-13T02:10:13Z","ServerKey":"us63"},{"ID":3083,"VillageID":4147,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":848905385,"OldTribeID":0,"Points":4605,"CreatedAt":"2023-02-13T02:17:12Z","ServerKey":"us63"},{"ID":3084,"VillageID":4951,"NewOwnerID":848954978,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-13T02:19:42Z","ServerKey":"us63"},{"ID":3085,"VillageID":2472,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-13T02:28:28Z","ServerKey":"us63"},{"ID":3086,"VillageID":238,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-13T02:39:10Z","ServerKey":"us63"},{"ID":3087,"VillageID":1229,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":630,"CreatedAt":"2023-02-13T02:43:13Z","ServerKey":"us63"},{"ID":3088,"VillageID":2582,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":358,"CreatedAt":"2023-02-13T02:47:58Z","ServerKey":"us63"},{"ID":3089,"VillageID":7106,"NewOwnerID":848953499,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-13T02:55:40Z","ServerKey":"us63"},{"ID":3090,"VillageID":2453,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-13T02:56:07Z","ServerKey":"us63"},{"ID":3091,"VillageID":1565,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":744645,"OldTribeID":85,"Points":348,"CreatedAt":"2023-02-13T02:56:18Z","ServerKey":"us63"},{"ID":3092,"VillageID":68,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-13T03:03:24Z","ServerKey":"us63"},{"ID":3093,"VillageID":7,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":700102,"OldTribeID":15,"Points":6853,"CreatedAt":"2023-02-13T03:04:31Z","ServerKey":"us63"},{"ID":3094,"VillageID":6743,"NewOwnerID":848955211,"NewTribeID":65,"OldOwnerID":848955187,"OldTribeID":0,"Points":1936,"CreatedAt":"2023-02-13T03:12:18Z","ServerKey":"us63"},{"ID":3095,"VillageID":4964,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-13T03:44:22Z","ServerKey":"us63"},{"ID":3096,"VillageID":7041,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-13T03:49:56Z","ServerKey":"us63"},{"ID":3097,"VillageID":7268,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-13T03:51:19Z","ServerKey":"us63"},{"ID":3098,"VillageID":6820,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-13T03:57:47Z","ServerKey":"us63"},{"ID":3099,"VillageID":2326,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":697,"CreatedAt":"2023-02-13T04:01:22Z","ServerKey":"us63"},{"ID":3100,"VillageID":917,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-13T04:09:21Z","ServerKey":"us63"},{"ID":3101,"VillageID":7148,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-13T04:09:37Z","ServerKey":"us63"},{"ID":3102,"VillageID":3459,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-13T04:11:34Z","ServerKey":"us63"},{"ID":3103,"VillageID":4909,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":226,"CreatedAt":"2023-02-13T04:14:47Z","ServerKey":"us63"},{"ID":3104,"VillageID":4909,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":693802,"OldTribeID":138,"Points":226,"CreatedAt":"2023-02-13T04:14:47Z","ServerKey":"us63"},{"ID":3105,"VillageID":8432,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-02-13T04:15:05Z","ServerKey":"us63"},{"ID":3106,"VillageID":6367,"NewOwnerID":848954266,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-13T04:27:10Z","ServerKey":"us63"},{"ID":3107,"VillageID":7518,"NewOwnerID":848955150,"NewTribeID":162,"OldOwnerID":848955321,"OldTribeID":0,"Points":1693,"CreatedAt":"2023-02-13T04:29:28Z","ServerKey":"us63"},{"ID":3108,"VillageID":6415,"NewOwnerID":775729,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-13T04:30:11Z","ServerKey":"us63"},{"ID":3109,"VillageID":1397,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-13T05:13:41Z","ServerKey":"us63"},{"ID":3110,"VillageID":3011,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-13T05:35:17Z","ServerKey":"us63"},{"ID":3111,"VillageID":1960,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":741238,"OldTribeID":0,"Points":2829,"CreatedAt":"2023-02-13T06:02:14Z","ServerKey":"us63"},{"ID":3112,"VillageID":1871,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-13T06:05:10Z","ServerKey":"us63"},{"ID":3113,"VillageID":8423,"NewOwnerID":848955148,"NewTribeID":162,"OldOwnerID":848955471,"OldTribeID":206,"Points":775,"CreatedAt":"2023-02-13T06:09:37Z","ServerKey":"us63"},{"ID":3114,"VillageID":4992,"NewOwnerID":848953656,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":504,"CreatedAt":"2023-02-13T06:09:40Z","ServerKey":"us63"},{"ID":3115,"VillageID":1958,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":423,"CreatedAt":"2023-02-13T06:34:23Z","ServerKey":"us63"},{"ID":3116,"VillageID":1552,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-13T06:34:27Z","ServerKey":"us63"},{"ID":3117,"VillageID":3227,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-13T07:04:24Z","ServerKey":"us63"},{"ID":3118,"VillageID":6652,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-13T07:04:55Z","ServerKey":"us63"},{"ID":3119,"VillageID":418,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-13T07:08:00Z","ServerKey":"us63"},{"ID":3120,"VillageID":8743,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-13T07:12:38Z","ServerKey":"us63"},{"ID":3121,"VillageID":1240,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-13T07:49:28Z","ServerKey":"us63"},{"ID":3122,"VillageID":7198,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":267733,"OldTribeID":167,"Points":3283,"CreatedAt":"2023-02-13T07:55:00Z","ServerKey":"us63"},{"ID":3123,"VillageID":7572,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-13T08:04:20Z","ServerKey":"us63"},{"ID":3124,"VillageID":1661,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-13T08:11:43Z","ServerKey":"us63"},{"ID":3125,"VillageID":6508,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":848935714,"OldTribeID":4,"Points":3213,"CreatedAt":"2023-02-13T08:12:15Z","ServerKey":"us63"},{"ID":3126,"VillageID":3155,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-13T08:18:03Z","ServerKey":"us63"},{"ID":3127,"VillageID":7658,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":769180,"OldTribeID":182,"Points":3503,"CreatedAt":"2023-02-13T08:20:32Z","ServerKey":"us63"},{"ID":3128,"VillageID":3458,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-13T08:22:59Z","ServerKey":"us63"},{"ID":3129,"VillageID":8478,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-13T08:23:21Z","ServerKey":"us63"},{"ID":3130,"VillageID":1889,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-13T08:45:26Z","ServerKey":"us63"},{"ID":3131,"VillageID":1889,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":398664,"OldTribeID":33,"Points":244,"CreatedAt":"2023-02-13T08:45:26Z","ServerKey":"us63"},{"ID":3134,"VillageID":5028,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-13T08:47:21Z","ServerKey":"us63"},{"ID":3135,"VillageID":3680,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-13T08:50:44Z","ServerKey":"us63"},{"ID":3136,"VillageID":713,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-13T08:51:31Z","ServerKey":"us63"},{"ID":3137,"VillageID":2884,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":8723,"CreatedAt":"2023-02-13T08:56:01Z","ServerKey":"us63"},{"ID":3138,"VillageID":2506,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-13T09:03:19Z","ServerKey":"us63"},{"ID":3139,"VillageID":3061,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":422,"CreatedAt":"2023-02-13T09:06:47Z","ServerKey":"us63"},{"ID":3140,"VillageID":1067,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-13T09:08:04Z","ServerKey":"us63"},{"ID":3141,"VillageID":520,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":6519,"CreatedAt":"2023-02-13T09:14:28Z","ServerKey":"us63"},{"ID":3142,"VillageID":5383,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-13T09:18:44Z","ServerKey":"us63"},{"ID":3143,"VillageID":6091,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-13T09:29:50Z","ServerKey":"us63"},{"ID":3144,"VillageID":7839,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-13T09:36:57Z","ServerKey":"us63"},{"ID":3145,"VillageID":3458,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":271,"CreatedAt":"2023-02-13T09:46:17Z","ServerKey":"us63"},{"ID":3146,"VillageID":3679,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-13T09:48:16Z","ServerKey":"us63"},{"ID":3147,"VillageID":3697,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-13T09:52:46Z","ServerKey":"us63"},{"ID":3148,"VillageID":874,"NewOwnerID":509766,"NewTribeID":6,"OldOwnerID":761278,"OldTribeID":0,"Points":514,"CreatedAt":"2023-02-13T09:57:32Z","ServerKey":"us63"},{"ID":3149,"VillageID":3394,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-13T10:13:53Z","ServerKey":"us63"},{"ID":3150,"VillageID":6825,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":848954603,"OldTribeID":0,"Points":1910,"CreatedAt":"2023-02-13T10:14:51Z","ServerKey":"us63"},{"ID":3151,"VillageID":8651,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-13T10:23:55Z","ServerKey":"us63"},{"ID":3152,"VillageID":3608,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-13T10:27:38Z","ServerKey":"us63"},{"ID":3153,"VillageID":3837,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-13T10:30:53Z","ServerKey":"us63"},{"ID":3154,"VillageID":8190,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-13T10:33:46Z","ServerKey":"us63"},{"ID":3155,"VillageID":1682,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-13T10:51:29Z","ServerKey":"us63"},{"ID":3156,"VillageID":2389,"NewOwnerID":697760,"NewTribeID":0,"OldOwnerID":848880663,"OldTribeID":138,"Points":7229,"CreatedAt":"2023-02-13T10:52:08Z","ServerKey":"us63"},{"ID":3157,"VillageID":1725,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":3363,"CreatedAt":"2023-02-13T11:10:24Z","ServerKey":"us63"},{"ID":3158,"VillageID":4192,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-13T11:15:50Z","ServerKey":"us63"},{"ID":3159,"VillageID":8294,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-13T11:40:47Z","ServerKey":"us63"},{"ID":3160,"VillageID":9102,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-13T11:49:28Z","ServerKey":"us63"},{"ID":3161,"VillageID":4765,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-13T11:54:28Z","ServerKey":"us63"},{"ID":3162,"VillageID":1298,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-13T11:57:29Z","ServerKey":"us63"},{"ID":3163,"VillageID":5828,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":334822,"OldTribeID":0,"Points":2126,"CreatedAt":"2023-02-13T11:58:19Z","ServerKey":"us63"},{"ID":3164,"VillageID":8905,"NewOwnerID":848937255,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-13T11:58:50Z","ServerKey":"us63"},{"ID":3165,"VillageID":8162,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-13T12:03:45Z","ServerKey":"us63"},{"ID":3166,"VillageID":1617,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-13T12:08:44Z","ServerKey":"us63"},{"ID":3167,"VillageID":2711,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-13T12:16:22Z","ServerKey":"us63"},{"ID":3168,"VillageID":3112,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":6331,"CreatedAt":"2023-02-13T12:30:05Z","ServerKey":"us63"},{"ID":3169,"VillageID":378,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-13T12:35:03Z","ServerKey":"us63"},{"ID":3170,"VillageID":378,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848951549,"OldTribeID":20,"Points":317,"CreatedAt":"2023-02-13T12:35:35Z","ServerKey":"us63"},{"ID":3171,"VillageID":161,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-13T12:55:33Z","ServerKey":"us63"},{"ID":3172,"VillageID":7205,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848879972,"OldTribeID":167,"Points":2657,"CreatedAt":"2023-02-13T13:09:00Z","ServerKey":"us63"},{"ID":3173,"VillageID":2799,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":387,"CreatedAt":"2023-02-13T13:17:25Z","ServerKey":"us63"},{"ID":3174,"VillageID":3662,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":460,"CreatedAt":"2023-02-13T13:17:52Z","ServerKey":"us63"},{"ID":3175,"VillageID":748,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-13T13:39:06Z","ServerKey":"us63"},{"ID":3176,"VillageID":5767,"NewOwnerID":848955133,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-13T13:45:05Z","ServerKey":"us63"},{"ID":3177,"VillageID":836,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-13T14:01:40Z","ServerKey":"us63"},{"ID":3178,"VillageID":3619,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-13T14:02:50Z","ServerKey":"us63"},{"ID":3179,"VillageID":1543,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-13T14:08:45Z","ServerKey":"us63"},{"ID":3180,"VillageID":1690,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-13T14:12:00Z","ServerKey":"us63"},{"ID":3181,"VillageID":2280,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-13T14:15:23Z","ServerKey":"us63"},{"ID":3182,"VillageID":2753,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-13T15:02:20Z","ServerKey":"us63"},{"ID":3183,"VillageID":67,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":5012,"CreatedAt":"2023-02-13T15:20:02Z","ServerKey":"us63"},{"ID":3184,"VillageID":373,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848954366,"OldTribeID":0,"Points":8222,"CreatedAt":"2023-02-13T15:23:17Z","ServerKey":"us63"},{"ID":3185,"VillageID":5358,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-13T15:27:00Z","ServerKey":"us63"},{"ID":3186,"VillageID":3954,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-13T15:29:17Z","ServerKey":"us63"},{"ID":3187,"VillageID":2138,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-13T15:43:32Z","ServerKey":"us63"},{"ID":3188,"VillageID":4022,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-13T15:49:26Z","ServerKey":"us63"},{"ID":3189,"VillageID":3674,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-13T15:52:01Z","ServerKey":"us63"},{"ID":3190,"VillageID":2540,"NewOwnerID":768825,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-13T16:08:06Z","ServerKey":"us63"},{"ID":3191,"VillageID":7190,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-13T16:19:51Z","ServerKey":"us63"},{"ID":3192,"VillageID":1757,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848954096,"OldTribeID":35,"Points":7935,"CreatedAt":"2023-02-13T16:20:35Z","ServerKey":"us63"},{"ID":3193,"VillageID":7237,"NewOwnerID":848951672,"NewTribeID":93,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-13T16:29:05Z","ServerKey":"us63"},{"ID":3194,"VillageID":7303,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848951460,"OldTribeID":104,"Points":523,"CreatedAt":"2023-02-13T16:32:38Z","ServerKey":"us63"},{"ID":3195,"VillageID":3102,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":642506,"OldTribeID":0,"Points":7771,"CreatedAt":"2023-02-13T16:32:54Z","ServerKey":"us63"},{"ID":3196,"VillageID":7308,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-13T16:52:40Z","ServerKey":"us63"},{"ID":3197,"VillageID":129,"NewOwnerID":848937811,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-13T16:53:20Z","ServerKey":"us63"},{"ID":3198,"VillageID":599,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-13T17:04:42Z","ServerKey":"us63"},{"ID":3199,"VillageID":2450,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-13T17:07:20Z","ServerKey":"us63"},{"ID":3200,"VillageID":8218,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":1040,"CreatedAt":"2023-02-13T17:15:31Z","ServerKey":"us63"},{"ID":3201,"VillageID":8218,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":848954637,"OldTribeID":11,"Points":1016,"CreatedAt":"2023-02-13T17:15:33Z","ServerKey":"us63"},{"ID":3202,"VillageID":9142,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-13T17:16:01Z","ServerKey":"us63"},{"ID":3203,"VillageID":3716,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":539612,"OldTribeID":65,"Points":1139,"CreatedAt":"2023-02-13T17:19:05Z","ServerKey":"us63"},{"ID":3204,"VillageID":4986,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":848940295,"OldTribeID":187,"Points":3457,"CreatedAt":"2023-02-13T17:21:22Z","ServerKey":"us63"},{"ID":3205,"VillageID":4119,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-13T17:29:30Z","ServerKey":"us63"},{"ID":3206,"VillageID":1822,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":568,"CreatedAt":"2023-02-13T17:46:47Z","ServerKey":"us63"},{"ID":3207,"VillageID":1090,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":419,"CreatedAt":"2023-02-13T17:48:24Z","ServerKey":"us63"},{"ID":3208,"VillageID":2876,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-13T17:50:09Z","ServerKey":"us63"},{"ID":3209,"VillageID":1752,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-13T17:54:16Z","ServerKey":"us63"},{"ID":3210,"VillageID":3668,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-13T18:11:58Z","ServerKey":"us63"},{"ID":3211,"VillageID":5364,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-13T18:31:53Z","ServerKey":"us63"},{"ID":3212,"VillageID":1210,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-13T18:40:22Z","ServerKey":"us63"},{"ID":3213,"VillageID":2015,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-13T19:01:48Z","ServerKey":"us63"},{"ID":3214,"VillageID":3307,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-13T19:06:29Z","ServerKey":"us63"},{"ID":3215,"VillageID":1788,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":392,"CreatedAt":"2023-02-13T19:07:29Z","ServerKey":"us63"},{"ID":3216,"VillageID":2859,"NewOwnerID":848953937,"NewTribeID":74,"OldOwnerID":848925398,"OldTribeID":0,"Points":1292,"CreatedAt":"2023-02-13T19:10:37Z","ServerKey":"us63"},{"ID":3217,"VillageID":2341,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":629,"CreatedAt":"2023-02-13T19:16:05Z","ServerKey":"us63"},{"ID":3218,"VillageID":2341,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":629,"CreatedAt":"2023-02-13T19:16:05Z","ServerKey":"us63"},{"ID":3219,"VillageID":494,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":10728,"CreatedAt":"2023-02-13T19:26:39Z","ServerKey":"us63"},{"ID":3220,"VillageID":2747,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-13T19:28:19Z","ServerKey":"us63"},{"ID":3221,"VillageID":8972,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-13T19:34:12Z","ServerKey":"us63"},{"ID":3222,"VillageID":8972,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":327519,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-13T19:34:12Z","ServerKey":"us63"},{"ID":3223,"VillageID":8658,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-13T19:34:16Z","ServerKey":"us63"},{"ID":3224,"VillageID":2341,"NewOwnerID":848940915,"NewTribeID":150,"OldOwnerID":344518,"OldTribeID":20,"Points":605,"CreatedAt":"2023-02-13T19:39:48Z","ServerKey":"us63"},{"ID":3225,"VillageID":8972,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":327519,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-13T19:40:50Z","ServerKey":"us63"},{"ID":3226,"VillageID":8972,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":49,"CreatedAt":"2023-02-13T19:40:50Z","ServerKey":"us63"},{"ID":3227,"VillageID":8972,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":49,"CreatedAt":"2023-02-13T19:40:51Z","ServerKey":"us63"},{"ID":3228,"VillageID":7813,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-13T19:57:24Z","ServerKey":"us63"},{"ID":3229,"VillageID":1795,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":5654,"CreatedAt":"2023-02-13T19:59:45Z","ServerKey":"us63"},{"ID":3230,"VillageID":2754,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-13T20:01:49Z","ServerKey":"us63"},{"ID":3231,"VillageID":4513,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-13T20:06:07Z","ServerKey":"us63"},{"ID":3232,"VillageID":6317,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":772572,"OldTribeID":0,"Points":2133,"CreatedAt":"2023-02-13T20:35:41Z","ServerKey":"us63"},{"ID":3233,"VillageID":2739,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-13T20:36:14Z","ServerKey":"us63"},{"ID":3234,"VillageID":8841,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":46,"CreatedAt":"2023-02-13T20:38:42Z","ServerKey":"us63"},{"ID":3235,"VillageID":1626,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":7933,"CreatedAt":"2023-02-13T20:39:05Z","ServerKey":"us63"},{"ID":3236,"VillageID":6928,"NewOwnerID":848953499,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-13T20:39:41Z","ServerKey":"us63"},{"ID":3237,"VillageID":5985,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-13T20:39:54Z","ServerKey":"us63"},{"ID":3238,"VillageID":5477,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-13T20:40:49Z","ServerKey":"us63"},{"ID":3239,"VillageID":6536,"NewOwnerID":848955150,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-13T20:42:33Z","ServerKey":"us63"},{"ID":3240,"VillageID":3125,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":4184,"CreatedAt":"2023-02-13T20:46:14Z","ServerKey":"us63"},{"ID":3241,"VillageID":6350,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":120,"CreatedAt":"2023-02-13T20:48:25Z","ServerKey":"us63"},{"ID":3242,"VillageID":6967,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-13T20:49:27Z","ServerKey":"us63"},{"ID":3243,"VillageID":7664,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":87,"CreatedAt":"2023-02-13T20:52:56Z","ServerKey":"us63"},{"ID":3244,"VillageID":6033,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":584,"CreatedAt":"2023-02-13T21:28:54Z","ServerKey":"us63"},{"ID":3245,"VillageID":4425,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-13T21:29:31Z","ServerKey":"us63"},{"ID":3246,"VillageID":2315,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-13T21:44:57Z","ServerKey":"us63"},{"ID":3247,"VillageID":2268,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-13T22:04:31Z","ServerKey":"us63"},{"ID":3248,"VillageID":4677,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-13T22:05:16Z","ServerKey":"us63"},{"ID":3249,"VillageID":4677,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":780375,"OldTribeID":11,"Points":201,"CreatedAt":"2023-02-13T22:05:16Z","ServerKey":"us63"},{"ID":3250,"VillageID":6907,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848953936,"OldTribeID":4,"Points":1482,"CreatedAt":"2023-02-13T22:13:08Z","ServerKey":"us63"},{"ID":3251,"VillageID":6907,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":848954611,"OldTribeID":32,"Points":1482,"CreatedAt":"2023-02-13T22:13:08Z","ServerKey":"us63"},{"ID":3252,"VillageID":2591,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-13T22:15:29Z","ServerKey":"us63"},{"ID":3253,"VillageID":8366,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-13T22:21:49Z","ServerKey":"us63"},{"ID":3254,"VillageID":3740,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-13T22:54:11Z","ServerKey":"us63"},{"ID":3255,"VillageID":4613,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":5017,"CreatedAt":"2023-02-13T23:02:35Z","ServerKey":"us63"},{"ID":3256,"VillageID":243,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":9308,"CreatedAt":"2023-02-13T23:13:31Z","ServerKey":"us63"},{"ID":3257,"VillageID":3923,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":539612,"OldTribeID":65,"Points":1797,"CreatedAt":"2023-02-13T23:27:58Z","ServerKey":"us63"},{"ID":3258,"VillageID":3275,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-13T23:34:36Z","ServerKey":"us63"},{"ID":3259,"VillageID":3393,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":235,"CreatedAt":"2023-02-13T23:38:40Z","ServerKey":"us63"},{"ID":3260,"VillageID":1043,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":2430,"CreatedAt":"2023-02-13T23:44:01Z","ServerKey":"us63"},{"ID":3261,"VillageID":5018,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-14T00:08:12Z","ServerKey":"us63"},{"ID":3262,"VillageID":3168,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":848943250,"OldTribeID":0,"Points":1122,"CreatedAt":"2023-02-14T00:12:19Z","ServerKey":"us63"},{"ID":3263,"VillageID":5908,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":772572,"OldTribeID":0,"Points":8186,"CreatedAt":"2023-02-14T00:15:04Z","ServerKey":"us63"},{"ID":3264,"VillageID":3311,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-14T00:16:56Z","ServerKey":"us63"},{"ID":3265,"VillageID":6488,"NewOwnerID":848954201,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-14T00:22:16Z","ServerKey":"us63"},{"ID":3266,"VillageID":5130,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-14T00:22:58Z","ServerKey":"us63"},{"ID":3267,"VillageID":7585,"NewOwnerID":848955148,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-14T00:23:26Z","ServerKey":"us63"},{"ID":3268,"VillageID":7030,"NewOwnerID":848955237,"NewTribeID":216,"OldOwnerID":848947293,"OldTribeID":0,"Points":466,"CreatedAt":"2023-02-14T00:25:38Z","ServerKey":"us63"},{"ID":3269,"VillageID":5386,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-14T00:29:11Z","ServerKey":"us63"},{"ID":3270,"VillageID":7905,"NewOwnerID":848954437,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":66,"CreatedAt":"2023-02-14T00:41:27Z","ServerKey":"us63"},{"ID":3271,"VillageID":134,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-14T00:43:00Z","ServerKey":"us63"},{"ID":3272,"VillageID":6473,"NewOwnerID":848931759,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-14T01:18:06Z","ServerKey":"us63"},{"ID":3273,"VillageID":355,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-14T01:27:15Z","ServerKey":"us63"},{"ID":3274,"VillageID":208,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-14T01:28:32Z","ServerKey":"us63"},{"ID":3275,"VillageID":8606,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-14T01:40:16Z","ServerKey":"us63"},{"ID":3276,"VillageID":3196,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-14T02:02:02Z","ServerKey":"us63"},{"ID":3277,"VillageID":1400,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-14T02:09:40Z","ServerKey":"us63"},{"ID":3278,"VillageID":3196,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":241,"CreatedAt":"2023-02-14T02:09:56Z","ServerKey":"us63"},{"ID":3279,"VillageID":2843,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-14T02:17:25Z","ServerKey":"us63"},{"ID":3280,"VillageID":4939,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-14T02:26:38Z","ServerKey":"us63"},{"ID":3281,"VillageID":986,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-14T02:40:41Z","ServerKey":"us63"},{"ID":3282,"VillageID":4345,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":389297,"OldTribeID":0,"Points":5845,"CreatedAt":"2023-02-14T02:47:03Z","ServerKey":"us63"},{"ID":3283,"VillageID":7810,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":1060,"CreatedAt":"2023-02-14T02:53:56Z","ServerKey":"us63"},{"ID":3284,"VillageID":2895,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":564,"CreatedAt":"2023-02-14T03:14:10Z","ServerKey":"us63"},{"ID":3285,"VillageID":3955,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":539612,"OldTribeID":65,"Points":5362,"CreatedAt":"2023-02-14T03:20:46Z","ServerKey":"us63"},{"ID":3286,"VillageID":1439,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-14T03:20:59Z","ServerKey":"us63"},{"ID":3287,"VillageID":2594,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-14T03:37:09Z","ServerKey":"us63"},{"ID":3288,"VillageID":71,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-14T03:47:55Z","ServerKey":"us63"},{"ID":3289,"VillageID":7084,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-14T03:48:13Z","ServerKey":"us63"},{"ID":3290,"VillageID":1764,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":7372,"CreatedAt":"2023-02-14T03:48:40Z","ServerKey":"us63"},{"ID":3291,"VillageID":8756,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-14T04:01:30Z","ServerKey":"us63"},{"ID":3292,"VillageID":1789,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-14T04:04:23Z","ServerKey":"us63"},{"ID":3293,"VillageID":8827,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-14T04:11:36Z","ServerKey":"us63"},{"ID":3294,"VillageID":2122,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-14T04:14:58Z","ServerKey":"us63"},{"ID":3295,"VillageID":441,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-14T04:17:46Z","ServerKey":"us63"},{"ID":3296,"VillageID":8669,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":848955517,"OldTribeID":0,"Points":864,"CreatedAt":"2023-02-14T04:28:49Z","ServerKey":"us63"},{"ID":3297,"VillageID":7116,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-14T04:42:54Z","ServerKey":"us63"},{"ID":3298,"VillageID":2266,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-14T04:46:49Z","ServerKey":"us63"},{"ID":3299,"VillageID":664,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-14T04:49:28Z","ServerKey":"us63"},{"ID":3300,"VillageID":419,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-14T04:53:46Z","ServerKey":"us63"},{"ID":3301,"VillageID":8001,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-14T04:56:18Z","ServerKey":"us63"},{"ID":3302,"VillageID":7011,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":848939796,"OldTribeID":0,"Points":2216,"CreatedAt":"2023-02-14T04:57:26Z","ServerKey":"us63"},{"ID":3303,"VillageID":327,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-14T05:02:17Z","ServerKey":"us63"},{"ID":3304,"VillageID":542,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-14T05:08:51Z","ServerKey":"us63"},{"ID":3305,"VillageID":1028,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":11363,"CreatedAt":"2023-02-14T05:27:18Z","ServerKey":"us63"},{"ID":3306,"VillageID":1118,"NewOwnerID":848954354,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-14T05:32:33Z","ServerKey":"us63"},{"ID":3307,"VillageID":1748,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":6197,"CreatedAt":"2023-02-14T05:39:14Z","ServerKey":"us63"},{"ID":3308,"VillageID":392,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848951434,"OldTribeID":0,"Points":4064,"CreatedAt":"2023-02-14T05:44:13Z","ServerKey":"us63"},{"ID":3309,"VillageID":887,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":482,"CreatedAt":"2023-02-14T05:49:55Z","ServerKey":"us63"},{"ID":3310,"VillageID":8,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":468,"CreatedAt":"2023-02-14T06:05:56Z","ServerKey":"us63"},{"ID":3311,"VillageID":9435,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-14T06:11:58Z","ServerKey":"us63"},{"ID":3312,"VillageID":3318,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":229,"CreatedAt":"2023-02-14T06:32:32Z","ServerKey":"us63"},{"ID":3313,"VillageID":5923,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-14T06:37:44Z","ServerKey":"us63"},{"ID":3314,"VillageID":7907,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-14T06:45:07Z","ServerKey":"us63"},{"ID":3315,"VillageID":4328,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848949093,"OldTribeID":65,"Points":3751,"CreatedAt":"2023-02-14T06:46:29Z","ServerKey":"us63"},{"ID":3316,"VillageID":6181,"NewOwnerID":742669,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-14T06:49:14Z","ServerKey":"us63"},{"ID":3317,"VillageID":9420,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":27,"CreatedAt":"2023-02-14T06:58:09Z","ServerKey":"us63"},{"ID":3318,"VillageID":1089,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-14T06:59:14Z","ServerKey":"us63"},{"ID":3319,"VillageID":2831,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-14T07:07:03Z","ServerKey":"us63"},{"ID":3320,"VillageID":676,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":10495,"CreatedAt":"2023-02-14T07:24:25Z","ServerKey":"us63"},{"ID":3321,"VillageID":8041,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-14T07:28:25Z","ServerKey":"us63"},{"ID":3322,"VillageID":7329,"NewOwnerID":302611,"NewTribeID":0,"OldOwnerID":848938537,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-14T07:38:46Z","ServerKey":"us63"},{"ID":3323,"VillageID":2730,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-14T07:42:06Z","ServerKey":"us63"},{"ID":3324,"VillageID":1021,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":4129,"CreatedAt":"2023-02-14T07:42:47Z","ServerKey":"us63"},{"ID":3325,"VillageID":8802,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-02-14T07:45:45Z","ServerKey":"us63"},{"ID":3326,"VillageID":1032,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":767,"CreatedAt":"2023-02-14T08:02:09Z","ServerKey":"us63"},{"ID":3327,"VillageID":1514,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-14T08:18:24Z","ServerKey":"us63"},{"ID":3328,"VillageID":8237,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-14T08:26:33Z","ServerKey":"us63"},{"ID":3329,"VillageID":878,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":440,"CreatedAt":"2023-02-14T08:30:45Z","ServerKey":"us63"},{"ID":3330,"VillageID":3818,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":216,"CreatedAt":"2023-02-14T08:33:42Z","ServerKey":"us63"},{"ID":3331,"VillageID":1188,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":5376,"CreatedAt":"2023-02-14T08:37:57Z","ServerKey":"us63"},{"ID":3332,"VillageID":1387,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-14T08:48:55Z","ServerKey":"us63"},{"ID":3333,"VillageID":2281,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-14T08:59:41Z","ServerKey":"us63"},{"ID":3334,"VillageID":6977,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-14T09:06:17Z","ServerKey":"us63"},{"ID":3335,"VillageID":6086,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":775744,"OldTribeID":187,"Points":3945,"CreatedAt":"2023-02-14T09:11:05Z","ServerKey":"us63"},{"ID":3336,"VillageID":6086,"NewOwnerID":848955024,"NewTribeID":0,"OldOwnerID":848955024,"OldTribeID":0,"Points":3945,"CreatedAt":"2023-02-14T09:11:05Z","ServerKey":"us63"},{"ID":3337,"VillageID":1895,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":310,"CreatedAt":"2023-02-14T09:14:40Z","ServerKey":"us63"},{"ID":3338,"VillageID":3543,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848949093,"OldTribeID":65,"Points":5607,"CreatedAt":"2023-02-14T09:30:00Z","ServerKey":"us63"},{"ID":3339,"VillageID":3166,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-14T09:31:26Z","ServerKey":"us63"},{"ID":3340,"VillageID":1373,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-14T09:34:32Z","ServerKey":"us63"},{"ID":3341,"VillageID":1373,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":594491,"OldTribeID":86,"Points":271,"CreatedAt":"2023-02-14T09:34:33Z","ServerKey":"us63"},{"ID":3342,"VillageID":2690,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-14T09:43:56Z","ServerKey":"us63"},{"ID":3343,"VillageID":5450,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":679,"CreatedAt":"2023-02-14T09:49:58Z","ServerKey":"us63"},{"ID":3344,"VillageID":3302,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848949093,"OldTribeID":65,"Points":1142,"CreatedAt":"2023-02-14T09:50:14Z","ServerKey":"us63"},{"ID":3345,"VillageID":2971,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-14T09:54:03Z","ServerKey":"us63"},{"ID":3346,"VillageID":2849,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-14T10:06:27Z","ServerKey":"us63"},{"ID":3347,"VillageID":4383,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-14T10:06:57Z","ServerKey":"us63"},{"ID":3348,"VillageID":4893,"NewOwnerID":848953656,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":218,"CreatedAt":"2023-02-14T10:09:20Z","ServerKey":"us63"},{"ID":3349,"VillageID":7820,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-14T10:20:06Z","ServerKey":"us63"},{"ID":3350,"VillageID":2837,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":848954553,"OldTribeID":53,"Points":6812,"CreatedAt":"2023-02-14T10:25:09Z","ServerKey":"us63"},{"ID":3351,"VillageID":5103,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-14T10:35:28Z","ServerKey":"us63"},{"ID":3352,"VillageID":1097,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-14T10:45:27Z","ServerKey":"us63"},{"ID":3353,"VillageID":3241,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-14T10:48:45Z","ServerKey":"us63"},{"ID":3354,"VillageID":1829,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-14T10:49:18Z","ServerKey":"us63"},{"ID":3355,"VillageID":6195,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-14T10:50:52Z","ServerKey":"us63"},{"ID":3356,"VillageID":2964,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-14T11:06:09Z","ServerKey":"us63"},{"ID":3357,"VillageID":7507,"NewOwnerID":848942248,"NewTribeID":0,"OldOwnerID":848955318,"OldTribeID":0,"Points":1495,"CreatedAt":"2023-02-14T11:08:00Z","ServerKey":"us63"},{"ID":3358,"VillageID":1079,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-14T11:32:03Z","ServerKey":"us63"},{"ID":3359,"VillageID":2583,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-14T11:39:35Z","ServerKey":"us63"},{"ID":3360,"VillageID":2402,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-14T11:50:50Z","ServerKey":"us63"},{"ID":3361,"VillageID":1436,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":230556,"OldTribeID":48,"Points":1986,"CreatedAt":"2023-02-14T11:51:16Z","ServerKey":"us63"},{"ID":3362,"VillageID":2072,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":8144,"CreatedAt":"2023-02-14T11:53:29Z","ServerKey":"us63"},{"ID":3363,"VillageID":2802,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-14T12:03:17Z","ServerKey":"us63"},{"ID":3364,"VillageID":1707,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-14T12:17:01Z","ServerKey":"us63"},{"ID":3365,"VillageID":2524,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-14T12:27:20Z","ServerKey":"us63"},{"ID":3366,"VillageID":9494,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-14T12:33:09Z","ServerKey":"us63"},{"ID":3367,"VillageID":3941,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-14T12:40:41Z","ServerKey":"us63"},{"ID":3368,"VillageID":1893,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":848954366,"OldTribeID":0,"Points":3086,"CreatedAt":"2023-02-14T13:07:27Z","ServerKey":"us63"},{"ID":3369,"VillageID":1167,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-14T13:17:51Z","ServerKey":"us63"},{"ID":3370,"VillageID":1310,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-14T13:20:50Z","ServerKey":"us63"},{"ID":3371,"VillageID":2038,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":648,"CreatedAt":"2023-02-14T13:27:41Z","ServerKey":"us63"},{"ID":3372,"VillageID":4189,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-14T13:33:34Z","ServerKey":"us63"},{"ID":3373,"VillageID":8802,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":848953962,"OldTribeID":2,"Points":106,"CreatedAt":"2023-02-14T13:34:31Z","ServerKey":"us63"},{"ID":3374,"VillageID":8285,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":421691,"OldTribeID":222,"Points":2053,"CreatedAt":"2023-02-14T13:42:15Z","ServerKey":"us63"},{"ID":3375,"VillageID":3006,"NewOwnerID":620806,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-14T13:44:27Z","ServerKey":"us63"},{"ID":3376,"VillageID":326,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":8390,"CreatedAt":"2023-02-14T13:46:54Z","ServerKey":"us63"},{"ID":3377,"VillageID":8533,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-14T13:47:23Z","ServerKey":"us63"},{"ID":3378,"VillageID":2298,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-14T13:57:55Z","ServerKey":"us63"},{"ID":3379,"VillageID":1772,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":3093,"CreatedAt":"2023-02-14T14:38:38Z","ServerKey":"us63"},{"ID":3380,"VillageID":8976,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-14T14:39:46Z","ServerKey":"us63"},{"ID":3381,"VillageID":2894,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-14T14:43:08Z","ServerKey":"us63"},{"ID":3382,"VillageID":8520,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-14T14:48:06Z","ServerKey":"us63"},{"ID":3383,"VillageID":2962,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-14T14:50:26Z","ServerKey":"us63"},{"ID":3384,"VillageID":636,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-14T15:08:13Z","ServerKey":"us63"},{"ID":3385,"VillageID":4421,"NewOwnerID":848953539,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":500,"CreatedAt":"2023-02-14T15:14:12Z","ServerKey":"us63"},{"ID":3386,"VillageID":5408,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":220,"CreatedAt":"2023-02-14T15:16:47Z","ServerKey":"us63"},{"ID":3387,"VillageID":3602,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-14T15:23:58Z","ServerKey":"us63"},{"ID":3388,"VillageID":6789,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-14T15:38:12Z","ServerKey":"us63"},{"ID":3389,"VillageID":5400,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848954976,"OldTribeID":42,"Points":4295,"CreatedAt":"2023-02-14T15:50:00Z","ServerKey":"us63"},{"ID":3390,"VillageID":5400,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848946291,"OldTribeID":76,"Points":4295,"CreatedAt":"2023-02-14T15:50:00Z","ServerKey":"us63"},{"ID":3391,"VillageID":1792,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-14T15:58:37Z","ServerKey":"us63"},{"ID":3392,"VillageID":3212,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-14T15:58:51Z","ServerKey":"us63"},{"ID":3393,"VillageID":9108,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-14T16:06:51Z","ServerKey":"us63"},{"ID":3394,"VillageID":259,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":381,"CreatedAt":"2023-02-14T16:10:17Z","ServerKey":"us63"},{"ID":3395,"VillageID":8141,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-14T16:18:52Z","ServerKey":"us63"},{"ID":3396,"VillageID":8141,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":848930230,"OldTribeID":209,"Points":89,"CreatedAt":"2023-02-14T16:18:52Z","ServerKey":"us63"},{"ID":3397,"VillageID":2585,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":500,"CreatedAt":"2023-02-14T16:18:56Z","ServerKey":"us63"},{"ID":3398,"VillageID":1424,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":6587,"CreatedAt":"2023-02-14T16:43:00Z","ServerKey":"us63"},{"ID":3399,"VillageID":3027,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-14T16:43:33Z","ServerKey":"us63"},{"ID":3400,"VillageID":2796,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-14T16:45:23Z","ServerKey":"us63"},{"ID":3401,"VillageID":9108,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":781432,"OldTribeID":198,"Points":115,"CreatedAt":"2023-02-14T17:00:05Z","ServerKey":"us63"},{"ID":3402,"VillageID":169,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":9244,"CreatedAt":"2023-02-14T17:01:20Z","ServerKey":"us63"},{"ID":3403,"VillageID":5427,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-14T17:21:35Z","ServerKey":"us63"},{"ID":3404,"VillageID":5094,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-14T17:40:39Z","ServerKey":"us63"},{"ID":3405,"VillageID":8110,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-14T17:41:59Z","ServerKey":"us63"},{"ID":3406,"VillageID":1167,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":848953401,"OldTribeID":138,"Points":236,"CreatedAt":"2023-02-14T18:11:51Z","ServerKey":"us63"},{"ID":3407,"VillageID":655,"NewOwnerID":848953670,"NewTribeID":0,"OldOwnerID":848953209,"OldTribeID":0,"Points":967,"CreatedAt":"2023-02-14T18:21:32Z","ServerKey":"us63"},{"ID":3408,"VillageID":8028,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-14T18:28:00Z","ServerKey":"us63"},{"ID":3409,"VillageID":3076,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":767834,"OldTribeID":0,"Points":1554,"CreatedAt":"2023-02-14T18:28:15Z","ServerKey":"us63"},{"ID":3410,"VillageID":3901,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":1644,"CreatedAt":"2023-02-14T18:28:43Z","ServerKey":"us63"},{"ID":3411,"VillageID":5611,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-14T18:36:51Z","ServerKey":"us63"},{"ID":3412,"VillageID":5611,"NewOwnerID":262676,"NewTribeID":215,"OldOwnerID":262676,"OldTribeID":215,"Points":266,"CreatedAt":"2023-02-14T18:36:51Z","ServerKey":"us63"},{"ID":3413,"VillageID":1395,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":734,"CreatedAt":"2023-02-14T18:37:40Z","ServerKey":"us63"},{"ID":3414,"VillageID":282,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":5420,"CreatedAt":"2023-02-14T19:01:01Z","ServerKey":"us63"},{"ID":3415,"VillageID":4873,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-14T19:15:44Z","ServerKey":"us63"},{"ID":3416,"VillageID":1817,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":450,"CreatedAt":"2023-02-14T19:21:08Z","ServerKey":"us63"},{"ID":3417,"VillageID":2401,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-14T19:24:17Z","ServerKey":"us63"},{"ID":3418,"VillageID":6764,"NewOwnerID":848949884,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-14T19:24:30Z","ServerKey":"us63"},{"ID":3419,"VillageID":3975,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-14T19:34:56Z","ServerKey":"us63"},{"ID":3420,"VillageID":1082,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-14T19:35:30Z","ServerKey":"us63"},{"ID":3421,"VillageID":4809,"NewOwnerID":848953200,"NewTribeID":53,"OldOwnerID":848945602,"OldTribeID":0,"Points":686,"CreatedAt":"2023-02-14T19:38:07Z","ServerKey":"us63"},{"ID":3422,"VillageID":1109,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-14T19:40:07Z","ServerKey":"us63"},{"ID":3423,"VillageID":1625,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":2105,"CreatedAt":"2023-02-14T19:41:21Z","ServerKey":"us63"},{"ID":3424,"VillageID":8169,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-14T19:46:54Z","ServerKey":"us63"},{"ID":3425,"VillageID":1335,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848945118,"OldTribeID":183,"Points":9223,"CreatedAt":"2023-02-14T19:46:57Z","ServerKey":"us63"},{"ID":3426,"VillageID":5166,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-14T19:47:21Z","ServerKey":"us63"},{"ID":3427,"VillageID":8701,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-14T19:47:36Z","ServerKey":"us63"},{"ID":3428,"VillageID":7579,"NewOwnerID":848954996,"NewTribeID":172,"OldOwnerID":848955018,"OldTribeID":0,"Points":1793,"CreatedAt":"2023-02-14T19:48:32Z","ServerKey":"us63"},{"ID":3429,"VillageID":2028,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-14T19:55:37Z","ServerKey":"us63"},{"ID":3430,"VillageID":7715,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-14T19:59:21Z","ServerKey":"us63"},{"ID":3431,"VillageID":2265,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-14T20:20:43Z","ServerKey":"us63"},{"ID":3432,"VillageID":7991,"NewOwnerID":302745,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":62,"CreatedAt":"2023-02-14T20:20:51Z","ServerKey":"us63"},{"ID":3433,"VillageID":3901,"NewOwnerID":270449,"NewTribeID":65,"OldOwnerID":848914361,"OldTribeID":20,"Points":1523,"CreatedAt":"2023-02-14T20:21:30Z","ServerKey":"us63"},{"ID":3434,"VillageID":5921,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":866,"CreatedAt":"2023-02-14T20:29:27Z","ServerKey":"us63"},{"ID":3435,"VillageID":2496,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":383,"CreatedAt":"2023-02-14T20:32:23Z","ServerKey":"us63"},{"ID":3436,"VillageID":3898,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-14T20:40:14Z","ServerKey":"us63"},{"ID":3437,"VillageID":1320,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":1979,"CreatedAt":"2023-02-14T20:40:57Z","ServerKey":"us63"},{"ID":3438,"VillageID":3476,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-14T20:41:21Z","ServerKey":"us63"},{"ID":3439,"VillageID":4758,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-14T20:48:43Z","ServerKey":"us63"},{"ID":3440,"VillageID":4979,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-14T20:58:07Z","ServerKey":"us63"},{"ID":3441,"VillageID":109,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":853,"CreatedAt":"2023-02-14T21:02:27Z","ServerKey":"us63"},{"ID":3442,"VillageID":5396,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-14T21:10:47Z","ServerKey":"us63"},{"ID":3443,"VillageID":7193,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-14T21:12:52Z","ServerKey":"us63"},{"ID":3444,"VillageID":402,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-14T21:17:16Z","ServerKey":"us63"},{"ID":3445,"VillageID":3786,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-14T21:21:13Z","ServerKey":"us63"},{"ID":3446,"VillageID":4244,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":1768,"CreatedAt":"2023-02-14T21:24:34Z","ServerKey":"us63"},{"ID":3447,"VillageID":6080,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":746,"CreatedAt":"2023-02-14T21:26:59Z","ServerKey":"us63"},{"ID":3448,"VillageID":8173,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":848955431,"OldTribeID":0,"Points":578,"CreatedAt":"2023-02-14T21:27:16Z","ServerKey":"us63"},{"ID":3449,"VillageID":2931,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-14T21:27:31Z","ServerKey":"us63"},{"ID":3450,"VillageID":7141,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-14T21:34:30Z","ServerKey":"us63"},{"ID":3451,"VillageID":2470,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-14T21:42:03Z","ServerKey":"us63"},{"ID":3452,"VillageID":437,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":334,"CreatedAt":"2023-02-14T21:46:09Z","ServerKey":"us63"},{"ID":3453,"VillageID":1127,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1399,"CreatedAt":"2023-02-14T21:52:52Z","ServerKey":"us63"},{"ID":3454,"VillageID":8617,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-14T21:54:21Z","ServerKey":"us63"},{"ID":3455,"VillageID":1659,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":253,"CreatedAt":"2023-02-14T21:56:16Z","ServerKey":"us63"},{"ID":3456,"VillageID":8155,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-14T21:58:43Z","ServerKey":"us63"},{"ID":3457,"VillageID":7378,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-14T22:01:42Z","ServerKey":"us63"},{"ID":3458,"VillageID":616,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-14T22:05:44Z","ServerKey":"us63"},{"ID":3459,"VillageID":7406,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-14T22:21:40Z","ServerKey":"us63"},{"ID":3460,"VillageID":4532,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":254,"CreatedAt":"2023-02-14T22:46:37Z","ServerKey":"us63"},{"ID":3461,"VillageID":1811,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-14T22:48:41Z","ServerKey":"us63"},{"ID":3462,"VillageID":1417,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":390,"CreatedAt":"2023-02-14T23:00:37Z","ServerKey":"us63"},{"ID":3463,"VillageID":2178,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-14T23:02:40Z","ServerKey":"us63"},{"ID":3464,"VillageID":6807,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-14T23:09:00Z","ServerKey":"us63"},{"ID":3465,"VillageID":3781,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-14T23:13:04Z","ServerKey":"us63"},{"ID":3466,"VillageID":2576,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-14T23:15:23Z","ServerKey":"us63"},{"ID":3467,"VillageID":1976,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-14T23:18:46Z","ServerKey":"us63"},{"ID":3468,"VillageID":6502,"NewOwnerID":776842,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-14T23:18:59Z","ServerKey":"us63"},{"ID":3469,"VillageID":435,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":4089,"CreatedAt":"2023-02-14T23:23:30Z","ServerKey":"us63"},{"ID":3470,"VillageID":435,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":4089,"CreatedAt":"2023-02-14T23:23:30Z","ServerKey":"us63"},{"ID":3471,"VillageID":2107,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-14T23:24:11Z","ServerKey":"us63"},{"ID":3472,"VillageID":4756,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-14T23:26:56Z","ServerKey":"us63"},{"ID":3473,"VillageID":9272,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-14T23:31:51Z","ServerKey":"us63"},{"ID":3474,"VillageID":2067,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-14T23:35:05Z","ServerKey":"us63"},{"ID":3475,"VillageID":853,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-14T23:45:57Z","ServerKey":"us63"},{"ID":3476,"VillageID":7622,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-14T23:50:02Z","ServerKey":"us63"},{"ID":3477,"VillageID":7700,"NewOwnerID":327519,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-15T00:21:06Z","ServerKey":"us63"},{"ID":3478,"VillageID":8173,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":751295,"OldTribeID":209,"Points":554,"CreatedAt":"2023-02-15T00:22:51Z","ServerKey":"us63"},{"ID":3479,"VillageID":8374,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-15T00:29:34Z","ServerKey":"us63"},{"ID":3480,"VillageID":7142,"NewOwnerID":848945448,"NewTribeID":0,"OldOwnerID":848955254,"OldTribeID":0,"Points":1473,"CreatedAt":"2023-02-15T00:30:15Z","ServerKey":"us63"},{"ID":3481,"VillageID":7358,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-15T00:31:15Z","ServerKey":"us63"},{"ID":3482,"VillageID":457,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T00:31:31Z","ServerKey":"us63"},{"ID":3483,"VillageID":6140,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":708,"CreatedAt":"2023-02-15T00:32:13Z","ServerKey":"us63"},{"ID":3484,"VillageID":210,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-15T00:36:10Z","ServerKey":"us63"},{"ID":3485,"VillageID":7340,"NewOwnerID":848929097,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":81,"CreatedAt":"2023-02-15T00:39:32Z","ServerKey":"us63"},{"ID":3486,"VillageID":121,"NewOwnerID":848883478,"NewTribeID":25,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-15T00:48:40Z","ServerKey":"us63"},{"ID":3487,"VillageID":5643,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-15T00:50:21Z","ServerKey":"us63"},{"ID":3488,"VillageID":6438,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-15T00:52:42Z","ServerKey":"us63"},{"ID":3489,"VillageID":1496,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":2379,"CreatedAt":"2023-02-15T01:09:43Z","ServerKey":"us63"},{"ID":3490,"VillageID":152,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":3619,"CreatedAt":"2023-02-15T01:14:12Z","ServerKey":"us63"},{"ID":3491,"VillageID":3696,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-15T01:43:35Z","ServerKey":"us63"},{"ID":3492,"VillageID":4436,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":694,"CreatedAt":"2023-02-15T01:58:52Z","ServerKey":"us63"},{"ID":3493,"VillageID":650,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":3758,"CreatedAt":"2023-02-15T02:01:36Z","ServerKey":"us63"},{"ID":3494,"VillageID":7049,"NewOwnerID":791583,"NewTribeID":76,"OldOwnerID":731385,"OldTribeID":167,"Points":3227,"CreatedAt":"2023-02-15T02:03:00Z","ServerKey":"us63"},{"ID":3495,"VillageID":2807,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":768161,"OldTribeID":0,"Points":5584,"CreatedAt":"2023-02-15T02:09:15Z","ServerKey":"us63"},{"ID":3496,"VillageID":1088,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1377,"CreatedAt":"2023-02-15T02:24:53Z","ServerKey":"us63"},{"ID":3497,"VillageID":3861,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-02-15T02:26:06Z","ServerKey":"us63"},{"ID":3498,"VillageID":3861,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":848954140,"OldTribeID":85,"Points":279,"CreatedAt":"2023-02-15T02:26:06Z","ServerKey":"us63"},{"ID":3499,"VillageID":2615,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-15T02:32:26Z","ServerKey":"us63"},{"ID":3500,"VillageID":6385,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-15T02:46:40Z","ServerKey":"us63"},{"ID":3501,"VillageID":2775,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":540,"CreatedAt":"2023-02-15T02:51:44Z","ServerKey":"us63"},{"ID":3502,"VillageID":3617,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-15T03:03:50Z","ServerKey":"us63"},{"ID":3503,"VillageID":3671,"NewOwnerID":776073,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-15T03:04:24Z","ServerKey":"us63"},{"ID":3504,"VillageID":7860,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-15T03:24:53Z","ServerKey":"us63"},{"ID":3505,"VillageID":1592,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1421,"CreatedAt":"2023-02-15T03:26:13Z","ServerKey":"us63"},{"ID":3506,"VillageID":3961,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-15T03:33:51Z","ServerKey":"us63"},{"ID":3507,"VillageID":2051,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-15T03:34:07Z","ServerKey":"us63"},{"ID":3508,"VillageID":6214,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-15T03:38:05Z","ServerKey":"us63"},{"ID":3509,"VillageID":8468,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-15T04:02:42Z","ServerKey":"us63"},{"ID":3510,"VillageID":8056,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-15T04:17:07Z","ServerKey":"us63"},{"ID":3511,"VillageID":8639,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-15T04:19:33Z","ServerKey":"us63"},{"ID":3512,"VillageID":7919,"NewOwnerID":302611,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-02-15T04:25:40Z","ServerKey":"us63"},{"ID":3513,"VillageID":9591,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":29,"CreatedAt":"2023-02-15T04:25:46Z","ServerKey":"us63"},{"ID":3514,"VillageID":3800,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-15T04:26:46Z","ServerKey":"us63"},{"ID":3515,"VillageID":3541,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-15T04:35:39Z","ServerKey":"us63"},{"ID":3516,"VillageID":197,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":1576,"CreatedAt":"2023-02-15T04:36:48Z","ServerKey":"us63"},{"ID":3517,"VillageID":1323,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-15T04:38:22Z","ServerKey":"us63"},{"ID":3518,"VillageID":840,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-15T04:40:52Z","ServerKey":"us63"},{"ID":3519,"VillageID":8173,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":737871,"OldTribeID":11,"Points":518,"CreatedAt":"2023-02-15T04:52:14Z","ServerKey":"us63"},{"ID":3520,"VillageID":1832,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":9168,"CreatedAt":"2023-02-15T04:55:00Z","ServerKey":"us63"},{"ID":3521,"VillageID":1186,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":6634,"CreatedAt":"2023-02-15T04:55:10Z","ServerKey":"us63"},{"ID":3522,"VillageID":5897,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-15T04:58:41Z","ServerKey":"us63"},{"ID":3523,"VillageID":158,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":2726,"CreatedAt":"2023-02-15T04:59:59Z","ServerKey":"us63"},{"ID":3524,"VillageID":158,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848941909,"OldTribeID":6,"Points":2726,"CreatedAt":"2023-02-15T04:59:59Z","ServerKey":"us63"},{"ID":3525,"VillageID":1587,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":2399,"CreatedAt":"2023-02-15T05:00:00Z","ServerKey":"us63"},{"ID":3526,"VillageID":1544,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848952522,"OldTribeID":105,"Points":9224,"CreatedAt":"2023-02-15T05:00:00Z","ServerKey":"us63"},{"ID":3527,"VillageID":1544,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":766625,"OldTribeID":6,"Points":9224,"CreatedAt":"2023-02-15T05:00:00Z","ServerKey":"us63"},{"ID":3528,"VillageID":3106,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-15T05:00:46Z","ServerKey":"us63"},{"ID":3529,"VillageID":4301,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":4624,"CreatedAt":"2023-02-15T05:01:06Z","ServerKey":"us63"},{"ID":3530,"VillageID":3901,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":1593,"CreatedAt":"2023-02-15T05:02:28Z","ServerKey":"us63"},{"ID":3531,"VillageID":3484,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-15T05:08:23Z","ServerKey":"us63"},{"ID":3532,"VillageID":6215,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848954794,"OldTribeID":0,"Points":1550,"CreatedAt":"2023-02-15T05:13:38Z","ServerKey":"us63"},{"ID":3533,"VillageID":5208,"NewOwnerID":717445,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-15T05:14:02Z","ServerKey":"us63"},{"ID":3534,"VillageID":6673,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-15T05:17:58Z","ServerKey":"us63"},{"ID":3535,"VillageID":450,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":387,"CreatedAt":"2023-02-15T05:20:27Z","ServerKey":"us63"},{"ID":3536,"VillageID":7177,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-15T05:20:49Z","ServerKey":"us63"},{"ID":3537,"VillageID":4035,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":373,"CreatedAt":"2023-02-15T05:39:15Z","ServerKey":"us63"},{"ID":3538,"VillageID":7028,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848953499,"OldTribeID":0,"Points":3873,"CreatedAt":"2023-02-15T05:46:50Z","ServerKey":"us63"},{"ID":3539,"VillageID":1276,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":581,"CreatedAt":"2023-02-15T05:58:36Z","ServerKey":"us63"},{"ID":3540,"VillageID":4626,"NewOwnerID":848938594,"NewTribeID":91,"OldOwnerID":848905385,"OldTribeID":0,"Points":385,"CreatedAt":"2023-02-15T06:16:36Z","ServerKey":"us63"},{"ID":3541,"VillageID":632,"NewOwnerID":848952114,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-15T06:35:02Z","ServerKey":"us63"},{"ID":3542,"VillageID":1641,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-15T06:42:09Z","ServerKey":"us63"},{"ID":3543,"VillageID":6533,"NewOwnerID":776842,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-15T06:49:29Z","ServerKey":"us63"},{"ID":3544,"VillageID":7894,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-15T06:59:45Z","ServerKey":"us63"},{"ID":3545,"VillageID":9242,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-15T07:04:28Z","ServerKey":"us63"},{"ID":3546,"VillageID":1934,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":781,"CreatedAt":"2023-02-15T07:09:47Z","ServerKey":"us63"},{"ID":3547,"VillageID":493,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-15T07:15:08Z","ServerKey":"us63"},{"ID":3548,"VillageID":137,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-15T07:16:31Z","ServerKey":"us63"},{"ID":3549,"VillageID":1128,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-15T07:16:34Z","ServerKey":"us63"},{"ID":3550,"VillageID":5544,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-15T07:19:55Z","ServerKey":"us63"},{"ID":3551,"VillageID":7549,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-15T07:21:33Z","ServerKey":"us63"},{"ID":3552,"VillageID":4122,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-15T07:31:44Z","ServerKey":"us63"},{"ID":3553,"VillageID":396,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":9791,"CreatedAt":"2023-02-15T07:49:10Z","ServerKey":"us63"},{"ID":3554,"VillageID":2534,"NewOwnerID":848953992,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-15T08:42:14Z","ServerKey":"us63"},{"ID":3555,"VillageID":3929,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":747735,"OldTribeID":65,"Points":3577,"CreatedAt":"2023-02-15T09:00:34Z","ServerKey":"us63"},{"ID":3556,"VillageID":1414,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":768825,"OldTribeID":105,"Points":2571,"CreatedAt":"2023-02-15T09:01:54Z","ServerKey":"us63"},{"ID":3557,"VillageID":356,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":7799,"CreatedAt":"2023-02-15T09:03:02Z","ServerKey":"us63"},{"ID":3558,"VillageID":2182,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":814,"CreatedAt":"2023-02-15T09:09:25Z","ServerKey":"us63"},{"ID":3559,"VillageID":3848,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-15T09:15:29Z","ServerKey":"us63"},{"ID":3560,"VillageID":7513,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-15T09:17:37Z","ServerKey":"us63"},{"ID":3561,"VillageID":2258,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-15T09:42:08Z","ServerKey":"us63"},{"ID":3562,"VillageID":8422,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-15T09:48:44Z","ServerKey":"us63"},{"ID":3563,"VillageID":1023,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-15T09:57:39Z","ServerKey":"us63"},{"ID":3564,"VillageID":3043,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-15T10:16:45Z","ServerKey":"us63"},{"ID":3565,"VillageID":3918,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":270449,"OldTribeID":65,"Points":7252,"CreatedAt":"2023-02-15T10:25:27Z","ServerKey":"us63"},{"ID":3566,"VillageID":3918,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":7252,"CreatedAt":"2023-02-15T10:25:27Z","ServerKey":"us63"},{"ID":3567,"VillageID":6560,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-15T10:28:15Z","ServerKey":"us63"},{"ID":3568,"VillageID":7261,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-15T10:31:15Z","ServerKey":"us63"},{"ID":3569,"VillageID":7261,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":604194,"OldTribeID":174,"Points":161,"CreatedAt":"2023-02-15T10:31:15Z","ServerKey":"us63"},{"ID":3570,"VillageID":741,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-15T10:31:45Z","ServerKey":"us63"},{"ID":3571,"VillageID":880,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-15T10:35:25Z","ServerKey":"us63"},{"ID":3572,"VillageID":7157,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":114,"CreatedAt":"2023-02-15T10:45:09Z","ServerKey":"us63"},{"ID":3573,"VillageID":7474,"NewOwnerID":715075,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-15T10:45:49Z","ServerKey":"us63"},{"ID":3574,"VillageID":2599,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-15T10:49:56Z","ServerKey":"us63"},{"ID":3575,"VillageID":2196,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":2883,"CreatedAt":"2023-02-15T10:50:16Z","ServerKey":"us63"},{"ID":3576,"VillageID":2975,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-15T10:55:42Z","ServerKey":"us63"},{"ID":3577,"VillageID":7719,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-15T11:01:48Z","ServerKey":"us63"},{"ID":3578,"VillageID":1191,"NewOwnerID":594491,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":259,"CreatedAt":"2023-02-15T11:15:20Z","ServerKey":"us63"},{"ID":3579,"VillageID":8037,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":90,"CreatedAt":"2023-02-15T11:19:41Z","ServerKey":"us63"},{"ID":3580,"VillageID":3201,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-15T11:23:19Z","ServerKey":"us63"},{"ID":3581,"VillageID":3719,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-15T11:27:30Z","ServerKey":"us63"},{"ID":3582,"VillageID":3552,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-15T11:43:42Z","ServerKey":"us63"},{"ID":3583,"VillageID":195,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-15T11:49:56Z","ServerKey":"us63"},{"ID":3584,"VillageID":3361,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T11:51:49Z","ServerKey":"us63"},{"ID":3585,"VillageID":7719,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":781432,"OldTribeID":198,"Points":176,"CreatedAt":"2023-02-15T11:53:04Z","ServerKey":"us63"},{"ID":3586,"VillageID":7435,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":327519,"OldTribeID":0,"Points":7439,"CreatedAt":"2023-02-15T12:00:00Z","ServerKey":"us63"},{"ID":3587,"VillageID":7435,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":339555,"OldTribeID":74,"Points":7439,"CreatedAt":"2023-02-15T12:00:00Z","ServerKey":"us63"},{"ID":3588,"VillageID":3560,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-15T12:11:19Z","ServerKey":"us63"},{"ID":3589,"VillageID":602,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-15T12:39:22Z","ServerKey":"us63"},{"ID":3590,"VillageID":602,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":587894,"OldTribeID":48,"Points":348,"CreatedAt":"2023-02-15T12:39:34Z","ServerKey":"us63"},{"ID":3591,"VillageID":1209,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":371,"CreatedAt":"2023-02-15T12:54:35Z","ServerKey":"us63"},{"ID":3592,"VillageID":4523,"NewOwnerID":848947885,"NewTribeID":187,"OldOwnerID":848952345,"OldTribeID":7,"Points":3391,"CreatedAt":"2023-02-15T13:10:27Z","ServerKey":"us63"},{"ID":3593,"VillageID":509,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-15T13:18:16Z","ServerKey":"us63"},{"ID":3594,"VillageID":1000,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-15T13:23:45Z","ServerKey":"us63"},{"ID":3595,"VillageID":979,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":320,"CreatedAt":"2023-02-15T13:26:20Z","ServerKey":"us63"},{"ID":3596,"VillageID":958,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-15T13:38:34Z","ServerKey":"us63"},{"ID":3597,"VillageID":8244,"NewOwnerID":848955438,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-15T13:39:32Z","ServerKey":"us63"},{"ID":3598,"VillageID":8872,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-15T13:41:16Z","ServerKey":"us63"},{"ID":3599,"VillageID":5789,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-15T13:41:48Z","ServerKey":"us63"},{"ID":3600,"VillageID":8603,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":122,"CreatedAt":"2023-02-15T13:45:57Z","ServerKey":"us63"},{"ID":3601,"VillageID":5759,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":263554,"OldTribeID":83,"Points":2596,"CreatedAt":"2023-02-15T13:50:00Z","ServerKey":"us63"},{"ID":3602,"VillageID":985,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-15T13:50:26Z","ServerKey":"us63"},{"ID":3603,"VillageID":3805,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-15T14:02:24Z","ServerKey":"us63"},{"ID":3604,"VillageID":1084,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848952522,"OldTribeID":105,"Points":4016,"CreatedAt":"2023-02-15T14:06:46Z","ServerKey":"us63"},{"ID":3605,"VillageID":1749,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":861,"CreatedAt":"2023-02-15T14:12:37Z","ServerKey":"us63"},{"ID":3606,"VillageID":5050,"NewOwnerID":848954941,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-15T14:17:27Z","ServerKey":"us63"},{"ID":3607,"VillageID":3843,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-15T14:36:41Z","ServerKey":"us63"},{"ID":3608,"VillageID":2751,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1060,"CreatedAt":"2023-02-15T14:48:49Z","ServerKey":"us63"},{"ID":3609,"VillageID":470,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-15T15:00:18Z","ServerKey":"us63"},{"ID":3610,"VillageID":3379,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-15T15:01:18Z","ServerKey":"us63"},{"ID":3611,"VillageID":3379,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":848909148,"OldTribeID":20,"Points":169,"CreatedAt":"2023-02-15T15:02:48Z","ServerKey":"us63"},{"ID":3614,"VillageID":1132,"NewOwnerID":848954090,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-15T15:14:39Z","ServerKey":"us63"},{"ID":3615,"VillageID":2926,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":848954553,"OldTribeID":53,"Points":1651,"CreatedAt":"2023-02-15T15:25:56Z","ServerKey":"us63"},{"ID":3616,"VillageID":2926,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":848948640,"OldTribeID":227,"Points":1651,"CreatedAt":"2023-02-15T15:25:56Z","ServerKey":"us63"},{"ID":3617,"VillageID":3406,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":280,"CreatedAt":"2023-02-15T15:26:44Z","ServerKey":"us63"},{"ID":3618,"VillageID":5736,"NewOwnerID":848955156,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-15T15:32:06Z","ServerKey":"us63"},{"ID":3619,"VillageID":5669,"NewOwnerID":848954668,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-15T15:36:46Z","ServerKey":"us63"},{"ID":3620,"VillageID":5851,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-15T15:46:14Z","ServerKey":"us63"},{"ID":3621,"VillageID":3349,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-15T15:49:52Z","ServerKey":"us63"},{"ID":3622,"VillageID":674,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-15T15:54:43Z","ServerKey":"us63"},{"ID":3623,"VillageID":7751,"NewOwnerID":848955237,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-15T16:03:35Z","ServerKey":"us63"},{"ID":3624,"VillageID":4238,"NewOwnerID":758872,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":557,"CreatedAt":"2023-02-15T16:20:18Z","ServerKey":"us63"},{"ID":3625,"VillageID":8578,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":65,"CreatedAt":"2023-02-15T16:21:05Z","ServerKey":"us63"},{"ID":3626,"VillageID":9010,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":57,"CreatedAt":"2023-02-15T16:28:02Z","ServerKey":"us63"},{"ID":3627,"VillageID":2094,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-15T16:30:34Z","ServerKey":"us63"},{"ID":3628,"VillageID":680,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":399,"CreatedAt":"2023-02-15T16:36:59Z","ServerKey":"us63"},{"ID":3629,"VillageID":7853,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":140,"CreatedAt":"2023-02-15T16:53:08Z","ServerKey":"us63"},{"ID":3630,"VillageID":8739,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-15T16:56:01Z","ServerKey":"us63"},{"ID":3631,"VillageID":6198,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-15T17:06:44Z","ServerKey":"us63"},{"ID":3632,"VillageID":4096,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-15T17:08:44Z","ServerKey":"us63"},{"ID":3633,"VillageID":6139,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-15T17:30:09Z","ServerKey":"us63"},{"ID":3634,"VillageID":360,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":310,"CreatedAt":"2023-02-15T17:34:50Z","ServerKey":"us63"},{"ID":3635,"VillageID":7943,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-15T17:52:12Z","ServerKey":"us63"},{"ID":3636,"VillageID":931,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-15T17:52:20Z","ServerKey":"us63"},{"ID":3637,"VillageID":204,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":2109,"CreatedAt":"2023-02-15T18:04:11Z","ServerKey":"us63"},{"ID":3638,"VillageID":1762,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":416,"CreatedAt":"2023-02-15T18:04:11Z","ServerKey":"us63"},{"ID":3639,"VillageID":1446,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-15T18:06:31Z","ServerKey":"us63"},{"ID":3640,"VillageID":3117,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-15T18:08:04Z","ServerKey":"us63"},{"ID":3641,"VillageID":931,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":344518,"OldTribeID":20,"Points":301,"CreatedAt":"2023-02-15T18:08:50Z","ServerKey":"us63"},{"ID":3642,"VillageID":2427,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-15T18:24:20Z","ServerKey":"us63"},{"ID":3643,"VillageID":1286,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":879,"CreatedAt":"2023-02-15T18:31:07Z","ServerKey":"us63"},{"ID":3644,"VillageID":4826,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-15T18:33:55Z","ServerKey":"us63"},{"ID":3645,"VillageID":777,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":221,"CreatedAt":"2023-02-15T18:36:04Z","ServerKey":"us63"},{"ID":3646,"VillageID":1177,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":5146,"CreatedAt":"2023-02-15T18:37:12Z","ServerKey":"us63"},{"ID":3647,"VillageID":2428,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-15T18:43:24Z","ServerKey":"us63"},{"ID":3648,"VillageID":3334,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T18:55:01Z","ServerKey":"us63"},{"ID":3649,"VillageID":4240,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":1085,"CreatedAt":"2023-02-15T18:57:23Z","ServerKey":"us63"},{"ID":3650,"VillageID":2836,"NewOwnerID":571769,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-15T19:06:13Z","ServerKey":"us63"},{"ID":3651,"VillageID":1146,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":7598,"CreatedAt":"2023-02-15T19:16:35Z","ServerKey":"us63"},{"ID":3652,"VillageID":184,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-15T19:22:34Z","ServerKey":"us63"},{"ID":3653,"VillageID":1485,"NewOwnerID":848936718,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":648,"CreatedAt":"2023-02-15T19:26:40Z","ServerKey":"us63"},{"ID":3654,"VillageID":1360,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-15T19:34:13Z","ServerKey":"us63"},{"ID":3655,"VillageID":533,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":848912363,"OldTribeID":0,"Points":7268,"CreatedAt":"2023-02-15T19:34:18Z","ServerKey":"us63"},{"ID":3656,"VillageID":763,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":509766,"OldTribeID":0,"Points":6636,"CreatedAt":"2023-02-15T19:35:30Z","ServerKey":"us63"},{"ID":3657,"VillageID":5681,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-15T19:47:43Z","ServerKey":"us63"},{"ID":3658,"VillageID":942,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-15T19:49:09Z","ServerKey":"us63"},{"ID":3659,"VillageID":7964,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-15T19:54:15Z","ServerKey":"us63"},{"ID":3660,"VillageID":1428,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949204,"OldTribeID":105,"Points":11898,"CreatedAt":"2023-02-15T19:59:42Z","ServerKey":"us63"},{"ID":3661,"VillageID":6557,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-15T20:00:29Z","ServerKey":"us63"},{"ID":3662,"VillageID":4167,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-15T20:09:06Z","ServerKey":"us63"},{"ID":3663,"VillageID":9711,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":27,"CreatedAt":"2023-02-15T20:12:26Z","ServerKey":"us63"},{"ID":3664,"VillageID":3206,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-15T20:26:26Z","ServerKey":"us63"},{"ID":3665,"VillageID":7299,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":302611,"OldTribeID":0,"Points":4264,"CreatedAt":"2023-02-15T20:32:17Z","ServerKey":"us63"},{"ID":3666,"VillageID":7377,"NewOwnerID":848955348,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-15T20:33:10Z","ServerKey":"us63"},{"ID":3667,"VillageID":2286,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":655,"CreatedAt":"2023-02-15T20:33:13Z","ServerKey":"us63"},{"ID":3668,"VillageID":8415,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-15T20:36:46Z","ServerKey":"us63"},{"ID":3669,"VillageID":4719,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-15T20:36:52Z","ServerKey":"us63"},{"ID":3670,"VillageID":3250,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-15T20:38:32Z","ServerKey":"us63"},{"ID":3671,"VillageID":533,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":7244,"CreatedAt":"2023-02-15T20:42:23Z","ServerKey":"us63"},{"ID":3672,"VillageID":2078,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":448,"CreatedAt":"2023-02-15T21:16:13Z","ServerKey":"us63"},{"ID":3673,"VillageID":1522,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-15T21:16:30Z","ServerKey":"us63"},{"ID":3674,"VillageID":5626,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-15T21:19:52Z","ServerKey":"us63"},{"ID":3675,"VillageID":8885,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":75,"CreatedAt":"2023-02-15T21:20:15Z","ServerKey":"us63"},{"ID":3676,"VillageID":7281,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-15T21:22:30Z","ServerKey":"us63"},{"ID":3677,"VillageID":3329,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-15T21:25:23Z","ServerKey":"us63"},{"ID":3678,"VillageID":102,"NewOwnerID":848916830,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-15T21:31:47Z","ServerKey":"us63"},{"ID":3679,"VillageID":3276,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-15T21:33:38Z","ServerKey":"us63"},{"ID":3680,"VillageID":3310,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-15T21:39:20Z","ServerKey":"us63"},{"ID":3681,"VillageID":202,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949204,"OldTribeID":105,"Points":6928,"CreatedAt":"2023-02-15T22:13:22Z","ServerKey":"us63"},{"ID":3682,"VillageID":1217,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-15T22:15:24Z","ServerKey":"us63"},{"ID":3683,"VillageID":2203,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-15T22:17:48Z","ServerKey":"us63"},{"ID":3684,"VillageID":3929,"NewOwnerID":747735,"NewTribeID":65,"OldOwnerID":767507,"OldTribeID":138,"Points":3830,"CreatedAt":"2023-02-15T22:27:35Z","ServerKey":"us63"},{"ID":3685,"VillageID":5576,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-15T22:29:39Z","ServerKey":"us63"},{"ID":3686,"VillageID":3444,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":425,"CreatedAt":"2023-02-15T22:34:23Z","ServerKey":"us63"},{"ID":3687,"VillageID":1045,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-15T22:36:29Z","ServerKey":"us63"},{"ID":3688,"VillageID":4942,"NewOwnerID":848951609,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-15T22:36:39Z","ServerKey":"us63"},{"ID":3689,"VillageID":294,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-15T22:38:08Z","ServerKey":"us63"},{"ID":3690,"VillageID":3385,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-15T22:46:14Z","ServerKey":"us63"},{"ID":3691,"VillageID":804,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-15T22:47:19Z","ServerKey":"us63"},{"ID":3692,"VillageID":778,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":9865,"CreatedAt":"2023-02-15T22:55:36Z","ServerKey":"us63"},{"ID":3693,"VillageID":5543,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-15T22:58:01Z","ServerKey":"us63"},{"ID":3694,"VillageID":6846,"NewOwnerID":848908351,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-15T23:00:38Z","ServerKey":"us63"},{"ID":3695,"VillageID":8709,"NewOwnerID":848953907,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-15T23:02:59Z","ServerKey":"us63"},{"ID":3696,"VillageID":7727,"NewOwnerID":751295,"NewTribeID":209,"OldOwnerID":735360,"OldTribeID":152,"Points":2620,"CreatedAt":"2023-02-15T23:12:05Z","ServerKey":"us63"},{"ID":3697,"VillageID":263,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848948099,"OldTribeID":185,"Points":4556,"CreatedAt":"2023-02-15T23:15:38Z","ServerKey":"us63"},{"ID":3698,"VillageID":4620,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-15T23:18:11Z","ServerKey":"us63"},{"ID":3699,"VillageID":6251,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-15T23:30:20Z","ServerKey":"us63"},{"ID":3700,"VillageID":86,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":848912363,"OldTribeID":0,"Points":5681,"CreatedAt":"2023-02-15T23:39:23Z","ServerKey":"us63"},{"ID":3701,"VillageID":6408,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-15T23:45:47Z","ServerKey":"us63"},{"ID":3702,"VillageID":7197,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-15T23:48:10Z","ServerKey":"us63"},{"ID":3703,"VillageID":6376,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-15T23:58:00Z","ServerKey":"us63"},{"ID":3704,"VillageID":1559,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-15T23:59:29Z","ServerKey":"us63"},{"ID":3705,"VillageID":9062,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":50,"CreatedAt":"2023-02-16T00:03:55Z","ServerKey":"us63"},{"ID":3706,"VillageID":519,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-16T00:12:36Z","ServerKey":"us63"},{"ID":3707,"VillageID":882,"NewOwnerID":848954208,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-16T00:44:59Z","ServerKey":"us63"},{"ID":3708,"VillageID":4745,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":420,"CreatedAt":"2023-02-16T00:50:27Z","ServerKey":"us63"},{"ID":3709,"VillageID":8862,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-16T01:02:20Z","ServerKey":"us63"},{"ID":3710,"VillageID":4171,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-16T01:04:24Z","ServerKey":"us63"},{"ID":3711,"VillageID":5445,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":181,"CreatedAt":"2023-02-16T01:05:59Z","ServerKey":"us63"},{"ID":3712,"VillageID":6023,"NewOwnerID":848954052,"NewTribeID":4,"OldOwnerID":0,"OldTribeID":0,"Points":399,"CreatedAt":"2023-02-16T01:23:05Z","ServerKey":"us63"},{"ID":3713,"VillageID":3883,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":2098,"CreatedAt":"2023-02-16T01:24:13Z","ServerKey":"us63"},{"ID":3714,"VillageID":1428,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":11945,"CreatedAt":"2023-02-16T01:31:25Z","ServerKey":"us63"},{"ID":3715,"VillageID":3528,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-16T01:40:01Z","ServerKey":"us63"},{"ID":3716,"VillageID":4968,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":780097,"OldTribeID":127,"Points":1335,"CreatedAt":"2023-02-16T01:40:21Z","ServerKey":"us63"},{"ID":3717,"VillageID":406,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-16T01:46:49Z","ServerKey":"us63"},{"ID":3718,"VillageID":2985,"NewOwnerID":848955253,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-16T01:47:14Z","ServerKey":"us63"},{"ID":3719,"VillageID":313,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":50103,"OldTribeID":0,"Points":6964,"CreatedAt":"2023-02-16T01:58:42Z","ServerKey":"us63"},{"ID":3720,"VillageID":8447,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":61,"CreatedAt":"2023-02-16T02:14:09Z","ServerKey":"us63"},{"ID":3721,"VillageID":1872,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":760,"CreatedAt":"2023-02-16T02:15:11Z","ServerKey":"us63"},{"ID":3722,"VillageID":4505,"NewOwnerID":758872,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-16T03:38:51Z","ServerKey":"us63"},{"ID":3723,"VillageID":6283,"NewOwnerID":848932635,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-16T03:40:45Z","ServerKey":"us63"},{"ID":3724,"VillageID":6915,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-16T03:42:24Z","ServerKey":"us63"},{"ID":3725,"VillageID":7789,"NewOwnerID":848954814,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-16T03:44:29Z","ServerKey":"us63"},{"ID":3726,"VillageID":7355,"NewOwnerID":848942248,"NewTribeID":0,"OldOwnerID":848955296,"OldTribeID":104,"Points":530,"CreatedAt":"2023-02-16T03:46:18Z","ServerKey":"us63"},{"ID":3727,"VillageID":6874,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-16T03:48:10Z","ServerKey":"us63"},{"ID":3728,"VillageID":3570,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":747735,"OldTribeID":65,"Points":3323,"CreatedAt":"2023-02-16T03:48:34Z","ServerKey":"us63"},{"ID":3729,"VillageID":5842,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-16T03:55:51Z","ServerKey":"us63"},{"ID":3730,"VillageID":1696,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-16T04:02:07Z","ServerKey":"us63"},{"ID":3731,"VillageID":5982,"NewOwnerID":848955156,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-16T04:03:32Z","ServerKey":"us63"},{"ID":3732,"VillageID":1059,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-16T04:12:09Z","ServerKey":"us63"},{"ID":3733,"VillageID":7634,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":302611,"OldTribeID":0,"Points":977,"CreatedAt":"2023-02-16T04:16:43Z","ServerKey":"us63"},{"ID":3734,"VillageID":5884,"NewOwnerID":848954926,"NewTribeID":66,"OldOwnerID":848945636,"OldTribeID":0,"Points":743,"CreatedAt":"2023-02-16T04:17:42Z","ServerKey":"us63"},{"ID":3735,"VillageID":3105,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":848954555,"OldTribeID":219,"Points":3850,"CreatedAt":"2023-02-16T04:20:35Z","ServerKey":"us63"},{"ID":3736,"VillageID":2748,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":432,"CreatedAt":"2023-02-16T04:24:35Z","ServerKey":"us63"},{"ID":3737,"VillageID":5068,"NewOwnerID":848952732,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-16T04:32:12Z","ServerKey":"us63"},{"ID":3738,"VillageID":3098,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":5045,"CreatedAt":"2023-02-16T04:35:14Z","ServerKey":"us63"},{"ID":3739,"VillageID":3787,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":747735,"OldTribeID":65,"Points":8855,"CreatedAt":"2023-02-16T04:41:01Z","ServerKey":"us63"},{"ID":3740,"VillageID":5052,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-16T04:54:21Z","ServerKey":"us63"},{"ID":3741,"VillageID":267,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":768825,"OldTribeID":105,"Points":5932,"CreatedAt":"2023-02-16T04:58:00Z","ServerKey":"us63"},{"ID":3742,"VillageID":267,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":5932,"CreatedAt":"2023-02-16T04:58:00Z","ServerKey":"us63"},{"ID":3743,"VillageID":3266,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":848883123,"OldTribeID":12,"Points":1504,"CreatedAt":"2023-02-16T05:00:07Z","ServerKey":"us63"},{"ID":3744,"VillageID":9278,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-16T05:00:07Z","ServerKey":"us63"},{"ID":3745,"VillageID":3290,"NewOwnerID":848954127,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":385,"CreatedAt":"2023-02-16T05:00:45Z","ServerKey":"us63"},{"ID":3746,"VillageID":1656,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848954354,"OldTribeID":105,"Points":6147,"CreatedAt":"2023-02-16T05:01:17Z","ServerKey":"us63"},{"ID":3747,"VillageID":3979,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":758230,"OldTribeID":105,"Points":4689,"CreatedAt":"2023-02-16T05:01:29Z","ServerKey":"us63"},{"ID":3748,"VillageID":4576,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-16T05:12:43Z","ServerKey":"us63"},{"ID":3749,"VillageID":5672,"NewOwnerID":848955157,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-16T05:12:56Z","ServerKey":"us63"},{"ID":3750,"VillageID":3647,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":835,"CreatedAt":"2023-02-16T05:22:58Z","ServerKey":"us63"},{"ID":3751,"VillageID":3271,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-16T05:23:39Z","ServerKey":"us63"},{"ID":3752,"VillageID":1481,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":509766,"OldTribeID":0,"Points":1621,"CreatedAt":"2023-02-16T05:24:04Z","ServerKey":"us63"},{"ID":3753,"VillageID":8582,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-16T05:27:25Z","ServerKey":"us63"},{"ID":3754,"VillageID":5323,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-16T05:44:00Z","ServerKey":"us63"},{"ID":3755,"VillageID":4592,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-16T05:51:18Z","ServerKey":"us63"},{"ID":3756,"VillageID":5088,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":848950197,"OldTribeID":4,"Points":5905,"CreatedAt":"2023-02-16T05:56:00Z","ServerKey":"us63"},{"ID":3757,"VillageID":1428,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949948,"OldTribeID":85,"Points":11957,"CreatedAt":"2023-02-16T05:57:00Z","ServerKey":"us63"},{"ID":3758,"VillageID":1460,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848954354,"OldTribeID":105,"Points":5636,"CreatedAt":"2023-02-16T05:58:48Z","ServerKey":"us63"},{"ID":3759,"VillageID":4003,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":593,"CreatedAt":"2023-02-16T05:59:51Z","ServerKey":"us63"},{"ID":3760,"VillageID":3929,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":747735,"OldTribeID":65,"Points":3875,"CreatedAt":"2023-02-16T06:04:35Z","ServerKey":"us63"},{"ID":3761,"VillageID":3947,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-16T06:06:42Z","ServerKey":"us63"},{"ID":3762,"VillageID":3010,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":563,"CreatedAt":"2023-02-16T06:20:29Z","ServerKey":"us63"},{"ID":3763,"VillageID":6317,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":2553,"CreatedAt":"2023-02-16T06:22:05Z","ServerKey":"us63"},{"ID":3764,"VillageID":3562,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1162,"CreatedAt":"2023-02-16T06:31:05Z","ServerKey":"us63"},{"ID":3765,"VillageID":7144,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-16T06:33:17Z","ServerKey":"us63"},{"ID":3766,"VillageID":6434,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":3262,"CreatedAt":"2023-02-16T07:18:09Z","ServerKey":"us63"},{"ID":3767,"VillageID":738,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-16T07:21:29Z","ServerKey":"us63"},{"ID":3768,"VillageID":2868,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-16T07:35:37Z","ServerKey":"us63"},{"ID":3769,"VillageID":6679,"NewOwnerID":848954201,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-16T07:40:56Z","ServerKey":"us63"},{"ID":3770,"VillageID":1680,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848949204,"OldTribeID":105,"Points":5251,"CreatedAt":"2023-02-16T07:52:14Z","ServerKey":"us63"},{"ID":3771,"VillageID":1680,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848951306,"OldTribeID":183,"Points":5227,"CreatedAt":"2023-02-16T07:52:58Z","ServerKey":"us63"},{"ID":3772,"VillageID":1680,"NewOwnerID":848951306,"NewTribeID":183,"OldOwnerID":848951306,"OldTribeID":183,"Points":5227,"CreatedAt":"2023-02-16T07:53:10Z","ServerKey":"us63"},{"ID":3773,"VillageID":1332,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":848945072,"OldTribeID":15,"Points":2338,"CreatedAt":"2023-02-16T08:14:54Z","ServerKey":"us63"},{"ID":3774,"VillageID":6832,"NewOwnerID":302745,"NewTribeID":187,"OldOwnerID":848896640,"OldTribeID":0,"Points":704,"CreatedAt":"2023-02-16T08:15:32Z","ServerKey":"us63"},{"ID":3775,"VillageID":241,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-16T08:24:10Z","ServerKey":"us63"},{"ID":3776,"VillageID":5310,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":201,"CreatedAt":"2023-02-16T08:26:46Z","ServerKey":"us63"},{"ID":3777,"VillageID":1750,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-16T08:27:22Z","ServerKey":"us63"},{"ID":3778,"VillageID":9288,"NewOwnerID":848955495,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-16T08:52:18Z","ServerKey":"us63"},{"ID":3779,"VillageID":3413,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-16T09:26:50Z","ServerKey":"us63"},{"ID":3780,"VillageID":446,"NewOwnerID":848937811,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-16T09:36:55Z","ServerKey":"us63"},{"ID":3781,"VillageID":7668,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-16T09:42:10Z","ServerKey":"us63"},{"ID":3782,"VillageID":2909,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-16T09:43:46Z","ServerKey":"us63"},{"ID":3783,"VillageID":6382,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":247,"CreatedAt":"2023-02-16T09:49:44Z","ServerKey":"us63"},{"ID":3784,"VillageID":7096,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-16T10:04:15Z","ServerKey":"us63"},{"ID":3785,"VillageID":7096,"NewOwnerID":848946770,"NewTribeID":152,"OldOwnerID":848946770,"OldTribeID":152,"Points":205,"CreatedAt":"2023-02-16T10:04:23Z","ServerKey":"us63"},{"ID":3786,"VillageID":7454,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-16T10:09:36Z","ServerKey":"us63"},{"ID":3787,"VillageID":8104,"NewOwnerID":334822,"NewTribeID":0,"OldOwnerID":848955415,"OldTribeID":0,"Points":630,"CreatedAt":"2023-02-16T10:22:26Z","ServerKey":"us63"},{"ID":3788,"VillageID":7590,"NewOwnerID":848944627,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-16T10:23:46Z","ServerKey":"us63"},{"ID":3789,"VillageID":1495,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":489,"CreatedAt":"2023-02-16T10:27:19Z","ServerKey":"us63"},{"ID":3790,"VillageID":793,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":588,"CreatedAt":"2023-02-16T10:28:17Z","ServerKey":"us63"},{"ID":3791,"VillageID":1571,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-16T10:31:32Z","ServerKey":"us63"},{"ID":3792,"VillageID":4808,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":848954749,"OldTribeID":53,"Points":2316,"CreatedAt":"2023-02-16T10:40:25Z","ServerKey":"us63"},{"ID":3793,"VillageID":3519,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-16T10:45:31Z","ServerKey":"us63"},{"ID":3794,"VillageID":5792,"NewOwnerID":848954475,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-16T11:11:35Z","ServerKey":"us63"},{"ID":3795,"VillageID":585,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":175,"CreatedAt":"2023-02-16T11:12:58Z","ServerKey":"us63"},{"ID":3796,"VillageID":585,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":175,"CreatedAt":"2023-02-16T11:12:58Z","ServerKey":"us63"},{"ID":3797,"VillageID":7122,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-16T11:22:41Z","ServerKey":"us63"},{"ID":3798,"VillageID":1326,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-16T11:28:14Z","ServerKey":"us63"},{"ID":3799,"VillageID":3587,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-16T11:28:21Z","ServerKey":"us63"},{"ID":3800,"VillageID":7757,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-16T11:29:50Z","ServerKey":"us63"},{"ID":3801,"VillageID":276,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-16T11:34:42Z","ServerKey":"us63"},{"ID":3802,"VillageID":6520,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":134,"CreatedAt":"2023-02-16T11:37:14Z","ServerKey":"us63"},{"ID":3803,"VillageID":280,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-16T11:37:17Z","ServerKey":"us63"},{"ID":3804,"VillageID":7500,"NewOwnerID":848951960,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-16T11:40:56Z","ServerKey":"us63"},{"ID":3805,"VillageID":3025,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":135,"CreatedAt":"2023-02-16T11:41:50Z","ServerKey":"us63"},{"ID":3806,"VillageID":3620,"NewOwnerID":848952556,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-16T11:48:04Z","ServerKey":"us63"},{"ID":3807,"VillageID":3859,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-16T12:02:34Z","ServerKey":"us63"},{"ID":3808,"VillageID":4636,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-16T12:21:01Z","ServerKey":"us63"},{"ID":3809,"VillageID":2573,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":449,"CreatedAt":"2023-02-16T12:26:41Z","ServerKey":"us63"},{"ID":3810,"VillageID":2059,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":8434,"CreatedAt":"2023-02-16T12:31:42Z","ServerKey":"us63"},{"ID":3811,"VillageID":4336,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-16T12:31:53Z","ServerKey":"us63"},{"ID":3812,"VillageID":1393,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-16T12:35:10Z","ServerKey":"us63"},{"ID":3813,"VillageID":8271,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-16T12:42:49Z","ServerKey":"us63"},{"ID":3814,"VillageID":6520,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":775955,"OldTribeID":227,"Points":134,"CreatedAt":"2023-02-16T12:43:15Z","ServerKey":"us63"},{"ID":3815,"VillageID":9358,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-16T12:47:56Z","ServerKey":"us63"},{"ID":3816,"VillageID":6740,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":848951960,"OldTribeID":210,"Points":4231,"CreatedAt":"2023-02-16T12:47:59Z","ServerKey":"us63"},{"ID":3817,"VillageID":7442,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-16T12:50:26Z","ServerKey":"us63"},{"ID":3818,"VillageID":1447,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-16T13:03:10Z","ServerKey":"us63"},{"ID":3819,"VillageID":7458,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":155,"CreatedAt":"2023-02-16T13:13:33Z","ServerKey":"us63"},{"ID":3820,"VillageID":421,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":509,"CreatedAt":"2023-02-16T13:30:18Z","ServerKey":"us63"},{"ID":3821,"VillageID":8585,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-16T13:31:16Z","ServerKey":"us63"},{"ID":3822,"VillageID":7830,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-16T14:06:13Z","ServerKey":"us63"},{"ID":3823,"VillageID":4481,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-16T14:08:27Z","ServerKey":"us63"},{"ID":3824,"VillageID":8025,"NewOwnerID":848955438,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-16T14:10:59Z","ServerKey":"us63"},{"ID":3825,"VillageID":7641,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":848912100,"OldTribeID":222,"Points":1439,"CreatedAt":"2023-02-16T14:21:45Z","ServerKey":"us63"},{"ID":3826,"VillageID":1951,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-16T14:33:59Z","ServerKey":"us63"},{"ID":3827,"VillageID":1951,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":213,"OldTribeID":61,"Points":370,"CreatedAt":"2023-02-16T14:34:14Z","ServerKey":"us63"},{"ID":3828,"VillageID":4660,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-16T14:35:44Z","ServerKey":"us63"},{"ID":3829,"VillageID":8753,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-16T14:47:00Z","ServerKey":"us63"},{"ID":3830,"VillageID":8753,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":604194,"OldTribeID":174,"Points":103,"CreatedAt":"2023-02-16T14:47:08Z","ServerKey":"us63"},{"ID":3831,"VillageID":5912,"NewOwnerID":717445,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-16T14:48:13Z","ServerKey":"us63"},{"ID":3832,"VillageID":7704,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-16T14:48:20Z","ServerKey":"us63"},{"ID":3833,"VillageID":874,"NewOwnerID":848954240,"NewTribeID":6,"OldOwnerID":509766,"OldTribeID":0,"Points":523,"CreatedAt":"2023-02-16T14:52:14Z","ServerKey":"us63"},{"ID":3834,"VillageID":6831,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":186,"CreatedAt":"2023-02-16T14:58:21Z","ServerKey":"us63"},{"ID":3835,"VillageID":4304,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":164,"CreatedAt":"2023-02-16T15:00:24Z","ServerKey":"us63"},{"ID":3836,"VillageID":1368,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":3765,"CreatedAt":"2023-02-16T15:00:38Z","ServerKey":"us63"},{"ID":3837,"VillageID":684,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":5377,"CreatedAt":"2023-02-16T15:00:39Z","ServerKey":"us63"},{"ID":3838,"VillageID":8505,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-02-16T15:02:30Z","ServerKey":"us63"},{"ID":3839,"VillageID":1680,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":848951306,"OldTribeID":183,"Points":5403,"CreatedAt":"2023-02-16T15:06:59Z","ServerKey":"us63"},{"ID":3840,"VillageID":1680,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":848954361,"OldTribeID":85,"Points":5403,"CreatedAt":"2023-02-16T15:06:59Z","ServerKey":"us63"},{"ID":3842,"VillageID":1632,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-16T15:17:48Z","ServerKey":"us63"},{"ID":3843,"VillageID":7020,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-16T15:27:20Z","ServerKey":"us63"},{"ID":3844,"VillageID":8066,"NewOwnerID":769781,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":84,"CreatedAt":"2023-02-16T15:29:21Z","ServerKey":"us63"},{"ID":3845,"VillageID":7438,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-16T15:30:21Z","ServerKey":"us63"},{"ID":3846,"VillageID":1680,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848954361,"OldTribeID":85,"Points":5379,"CreatedAt":"2023-02-16T15:40:37Z","ServerKey":"us63"},{"ID":3847,"VillageID":5552,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-16T15:53:16Z","ServerKey":"us63"},{"ID":3848,"VillageID":9139,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":52,"CreatedAt":"2023-02-16T15:58:36Z","ServerKey":"us63"},{"ID":3849,"VillageID":9448,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-16T15:59:05Z","ServerKey":"us63"},{"ID":3850,"VillageID":5553,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-16T16:07:06Z","ServerKey":"us63"},{"ID":3851,"VillageID":1916,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":8361,"CreatedAt":"2023-02-16T16:09:20Z","ServerKey":"us63"},{"ID":3852,"VillageID":1916,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":848881759,"OldTribeID":183,"Points":8361,"CreatedAt":"2023-02-16T16:09:20Z","ServerKey":"us63"},{"ID":3853,"VillageID":6495,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":158,"CreatedAt":"2023-02-16T16:19:51Z","ServerKey":"us63"},{"ID":3854,"VillageID":1882,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-16T16:21:38Z","ServerKey":"us63"},{"ID":3855,"VillageID":6780,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-16T16:23:53Z","ServerKey":"us63"},{"ID":3856,"VillageID":9660,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-16T16:25:30Z","ServerKey":"us63"},{"ID":3857,"VillageID":1392,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":406,"CreatedAt":"2023-02-16T16:29:15Z","ServerKey":"us63"},{"ID":3858,"VillageID":449,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-16T16:32:22Z","ServerKey":"us63"},{"ID":3859,"VillageID":526,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-16T16:35:53Z","ServerKey":"us63"},{"ID":3860,"VillageID":5901,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":848951187,"OldTribeID":152,"Points":1188,"CreatedAt":"2023-02-16T16:53:04Z","ServerKey":"us63"},{"ID":3861,"VillageID":93,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":1818,"CreatedAt":"2023-02-16T17:07:37Z","ServerKey":"us63"},{"ID":3862,"VillageID":5853,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-16T17:12:03Z","ServerKey":"us63"},{"ID":3863,"VillageID":1611,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":6682,"CreatedAt":"2023-02-16T17:13:57Z","ServerKey":"us63"},{"ID":3864,"VillageID":7244,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":3377,"CreatedAt":"2023-02-16T17:14:19Z","ServerKey":"us63"},{"ID":3865,"VillageID":1896,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":4049,"CreatedAt":"2023-02-16T17:14:44Z","ServerKey":"us63"},{"ID":3866,"VillageID":2449,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-16T17:19:20Z","ServerKey":"us63"},{"ID":3867,"VillageID":9396,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-16T17:30:09Z","ServerKey":"us63"},{"ID":3868,"VillageID":1916,"NewOwnerID":848929146,"NewTribeID":61,"OldOwnerID":848881759,"OldTribeID":183,"Points":8356,"CreatedAt":"2023-02-16T17:31:16Z","ServerKey":"us63"},{"ID":3869,"VillageID":149,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":9742,"CreatedAt":"2023-02-16T17:43:21Z","ServerKey":"us63"},{"ID":3870,"VillageID":7598,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-16T17:46:28Z","ServerKey":"us63"},{"ID":3871,"VillageID":2140,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":848953214,"OldTribeID":3,"Points":4382,"CreatedAt":"2023-02-16T17:47:11Z","ServerKey":"us63"},{"ID":3872,"VillageID":3057,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-16T17:47:21Z","ServerKey":"us63"},{"ID":3873,"VillageID":3339,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-16T17:48:08Z","ServerKey":"us63"},{"ID":3874,"VillageID":3891,"NewOwnerID":848953704,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":875,"CreatedAt":"2023-02-16T17:49:11Z","ServerKey":"us63"},{"ID":3875,"VillageID":857,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":1959,"CreatedAt":"2023-02-16T18:00:15Z","ServerKey":"us63"},{"ID":3876,"VillageID":2267,"NewOwnerID":848940915,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":468,"CreatedAt":"2023-02-16T18:08:12Z","ServerKey":"us63"},{"ID":3877,"VillageID":3706,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-16T18:30:00Z","ServerKey":"us63"},{"ID":3878,"VillageID":8410,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":607873,"OldTribeID":222,"Points":1165,"CreatedAt":"2023-02-16T18:38:37Z","ServerKey":"us63"},{"ID":3879,"VillageID":1238,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":848952522,"OldTribeID":105,"Points":2357,"CreatedAt":"2023-02-16T18:50:51Z","ServerKey":"us63"},{"ID":3880,"VillageID":198,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949204,"OldTribeID":105,"Points":6071,"CreatedAt":"2023-02-16T18:52:13Z","ServerKey":"us63"},{"ID":3881,"VillageID":4567,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":748168,"OldTribeID":42,"Points":3869,"CreatedAt":"2023-02-16T19:01:06Z","ServerKey":"us63"},{"ID":3882,"VillageID":1428,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":11940,"CreatedAt":"2023-02-16T19:07:04Z","ServerKey":"us63"},{"ID":3883,"VillageID":1461,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":552,"CreatedAt":"2023-02-16T19:08:22Z","ServerKey":"us63"},{"ID":3884,"VillageID":1389,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":234,"CreatedAt":"2023-02-16T19:12:59Z","ServerKey":"us63"},{"ID":3885,"VillageID":1428,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":848949948,"OldTribeID":85,"Points":11916,"CreatedAt":"2023-02-16T19:15:18Z","ServerKey":"us63"},{"ID":3886,"VillageID":3522,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-16T19:24:02Z","ServerKey":"us63"},{"ID":3887,"VillageID":6522,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-16T19:28:42Z","ServerKey":"us63"},{"ID":3888,"VillageID":171,"NewOwnerID":766397,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-16T19:52:30Z","ServerKey":"us63"},{"ID":3889,"VillageID":6590,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-16T19:54:05Z","ServerKey":"us63"},{"ID":3890,"VillageID":2861,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":381,"CreatedAt":"2023-02-16T19:54:09Z","ServerKey":"us63"},{"ID":3891,"VillageID":5975,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-16T19:58:17Z","ServerKey":"us63"},{"ID":3892,"VillageID":8744,"NewOwnerID":848937255,"NewTribeID":209,"OldOwnerID":848955313,"OldTribeID":0,"Points":992,"CreatedAt":"2023-02-16T20:01:49Z","ServerKey":"us63"},{"ID":3893,"VillageID":1115,"NewOwnerID":848936929,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-16T20:12:01Z","ServerKey":"us63"},{"ID":3894,"VillageID":4002,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-16T20:12:14Z","ServerKey":"us63"},{"ID":3895,"VillageID":7316,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-16T20:16:57Z","ServerKey":"us63"},{"ID":3896,"VillageID":6498,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-16T20:20:35Z","ServerKey":"us63"},{"ID":3897,"VillageID":518,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-16T20:27:37Z","ServerKey":"us63"},{"ID":3898,"VillageID":4767,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":293,"CreatedAt":"2023-02-16T21:15:26Z","ServerKey":"us63"},{"ID":3899,"VillageID":1353,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":526,"CreatedAt":"2023-02-16T21:18:17Z","ServerKey":"us63"},{"ID":3900,"VillageID":1854,"NewOwnerID":848952024,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-16T21:25:49Z","ServerKey":"us63"},{"ID":3901,"VillageID":5605,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":217,"CreatedAt":"2023-02-16T21:29:00Z","ServerKey":"us63"},{"ID":3902,"VillageID":7393,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-16T21:30:30Z","ServerKey":"us63"},{"ID":3903,"VillageID":6093,"NewOwnerID":632648,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-16T21:33:55Z","ServerKey":"us63"},{"ID":3904,"VillageID":1539,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":718150,"OldTribeID":0,"Points":9697,"CreatedAt":"2023-02-16T21:34:26Z","ServerKey":"us63"},{"ID":3905,"VillageID":716,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-16T21:35:59Z","ServerKey":"us63"},{"ID":3906,"VillageID":1281,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":2655,"CreatedAt":"2023-02-16T21:46:38Z","ServerKey":"us63"},{"ID":3907,"VillageID":2790,"NewOwnerID":848909148,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":435,"CreatedAt":"2023-02-16T21:58:01Z","ServerKey":"us63"},{"ID":3908,"VillageID":5547,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":132,"CreatedAt":"2023-02-16T22:00:28Z","ServerKey":"us63"},{"ID":3909,"VillageID":6612,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-16T22:02:49Z","ServerKey":"us63"},{"ID":3910,"VillageID":2131,"NewOwnerID":848954410,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":243,"CreatedAt":"2023-02-16T22:11:38Z","ServerKey":"us63"},{"ID":3911,"VillageID":1216,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":1981,"CreatedAt":"2023-02-16T22:14:14Z","ServerKey":"us63"},{"ID":3912,"VillageID":5145,"NewOwnerID":848952236,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-16T22:15:49Z","ServerKey":"us63"},{"ID":3913,"VillageID":6466,"NewOwnerID":848955067,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":100,"CreatedAt":"2023-02-16T22:20:08Z","ServerKey":"us63"},{"ID":3914,"VillageID":371,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":446,"CreatedAt":"2023-02-16T22:36:47Z","ServerKey":"us63"},{"ID":3915,"VillageID":371,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":446,"CreatedAt":"2023-02-16T22:36:47Z","ServerKey":"us63"},{"ID":3916,"VillageID":2835,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-16T22:38:37Z","ServerKey":"us63"},{"ID":3917,"VillageID":1754,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":8156,"CreatedAt":"2023-02-16T22:48:25Z","ServerKey":"us63"},{"ID":3918,"VillageID":3583,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-02-16T22:54:41Z","ServerKey":"us63"},{"ID":3919,"VillageID":6638,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-16T23:00:30Z","ServerKey":"us63"},{"ID":3920,"VillageID":3749,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-16T23:02:57Z","ServerKey":"us63"},{"ID":3921,"VillageID":919,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-16T23:11:42Z","ServerKey":"us63"},{"ID":3922,"VillageID":4484,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-16T23:14:22Z","ServerKey":"us63"},{"ID":3923,"VillageID":3764,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":339,"CreatedAt":"2023-02-16T23:35:42Z","ServerKey":"us63"},{"ID":3924,"VillageID":9085,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":76,"CreatedAt":"2023-02-16T23:37:41Z","ServerKey":"us63"},{"ID":3925,"VillageID":1193,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-17T00:00:25Z","ServerKey":"us63"},{"ID":3926,"VillageID":9151,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":73,"CreatedAt":"2023-02-17T00:01:01Z","ServerKey":"us63"},{"ID":3927,"VillageID":7258,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-17T00:01:28Z","ServerKey":"us63"},{"ID":3928,"VillageID":498,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":409,"CreatedAt":"2023-02-17T00:02:45Z","ServerKey":"us63"},{"ID":3929,"VillageID":230,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":420,"CreatedAt":"2023-02-17T00:05:38Z","ServerKey":"us63"},{"ID":3930,"VillageID":348,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-17T00:06:06Z","ServerKey":"us63"},{"ID":3931,"VillageID":456,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-17T00:09:15Z","ServerKey":"us63"},{"ID":3932,"VillageID":2340,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":507,"CreatedAt":"2023-02-17T00:13:43Z","ServerKey":"us63"},{"ID":3933,"VillageID":3563,"NewOwnerID":848951023,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-17T00:32:43Z","ServerKey":"us63"},{"ID":3934,"VillageID":4742,"NewOwnerID":785504,"NewTribeID":20,"OldOwnerID":627483,"OldTribeID":86,"Points":8946,"CreatedAt":"2023-02-17T00:34:25Z","ServerKey":"us63"},{"ID":3935,"VillageID":1169,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-17T00:37:46Z","ServerKey":"us63"},{"ID":3936,"VillageID":2536,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-17T00:40:47Z","ServerKey":"us63"},{"ID":3937,"VillageID":1132,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":848954090,"OldTribeID":105,"Points":412,"CreatedAt":"2023-02-17T00:47:23Z","ServerKey":"us63"},{"ID":3938,"VillageID":4529,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-17T00:52:40Z","ServerKey":"us63"},{"ID":3939,"VillageID":9340,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-17T00:52:46Z","ServerKey":"us63"},{"ID":3940,"VillageID":2420,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-17T00:59:09Z","ServerKey":"us63"},{"ID":3941,"VillageID":8591,"NewOwnerID":848953915,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":102,"CreatedAt":"2023-02-17T01:08:19Z","ServerKey":"us63"},{"ID":3942,"VillageID":2200,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-17T01:11:23Z","ServerKey":"us63"},{"ID":3943,"VillageID":9584,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":45,"CreatedAt":"2023-02-17T01:25:41Z","ServerKey":"us63"},{"ID":3944,"VillageID":2886,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-17T01:34:45Z","ServerKey":"us63"},{"ID":3945,"VillageID":1595,"NewOwnerID":848953670,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-17T01:35:19Z","ServerKey":"us63"},{"ID":3946,"VillageID":2437,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-17T01:48:53Z","ServerKey":"us63"},{"ID":3947,"VillageID":5112,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-17T01:56:26Z","ServerKey":"us63"},{"ID":3948,"VillageID":613,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-17T02:05:22Z","ServerKey":"us63"},{"ID":3949,"VillageID":6136,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":189,"CreatedAt":"2023-02-17T02:06:32Z","ServerKey":"us63"},{"ID":3950,"VillageID":1651,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":432,"CreatedAt":"2023-02-17T02:15:51Z","ServerKey":"us63"},{"ID":3951,"VillageID":783,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-17T02:23:35Z","ServerKey":"us63"},{"ID":3952,"VillageID":9901,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":26,"CreatedAt":"2023-02-17T02:41:52Z","ServerKey":"us63"},{"ID":3953,"VillageID":1866,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-17T02:44:49Z","ServerKey":"us63"},{"ID":3954,"VillageID":6682,"NewOwnerID":848954814,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-17T03:02:16Z","ServerKey":"us63"},{"ID":3955,"VillageID":1029,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-17T03:06:15Z","ServerKey":"us63"},{"ID":3956,"VillageID":1024,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-17T03:16:10Z","ServerKey":"us63"},{"ID":3957,"VillageID":6424,"NewOwnerID":848941569,"NewTribeID":219,"OldOwnerID":848955133,"OldTribeID":0,"Points":5311,"CreatedAt":"2023-02-17T03:17:31Z","ServerKey":"us63"},{"ID":3958,"VillageID":6264,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-17T03:22:06Z","ServerKey":"us63"},{"ID":3959,"VillageID":6264,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":173,"CreatedAt":"2023-02-17T03:22:18Z","ServerKey":"us63"},{"ID":3960,"VillageID":7527,"NewOwnerID":848954437,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-17T03:25:07Z","ServerKey":"us63"},{"ID":3961,"VillageID":941,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-17T03:25:18Z","ServerKey":"us63"},{"ID":3962,"VillageID":1810,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":316,"CreatedAt":"2023-02-17T03:26:10Z","ServerKey":"us63"},{"ID":3963,"VillageID":1124,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-17T03:26:46Z","ServerKey":"us63"},{"ID":3964,"VillageID":198,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":6162,"CreatedAt":"2023-02-17T03:27:47Z","ServerKey":"us63"},{"ID":3965,"VillageID":198,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":6162,"CreatedAt":"2023-02-17T03:27:47Z","ServerKey":"us63"},{"ID":3966,"VillageID":198,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":6076,"CreatedAt":"2023-02-17T03:27:49Z","ServerKey":"us63"},{"ID":3967,"VillageID":4861,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":748168,"OldTribeID":42,"Points":7858,"CreatedAt":"2023-02-17T03:32:54Z","ServerKey":"us63"},{"ID":3968,"VillageID":2942,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-17T03:36:01Z","ServerKey":"us63"},{"ID":3969,"VillageID":7375,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-17T03:44:35Z","ServerKey":"us63"},{"ID":3970,"VillageID":492,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-17T03:46:44Z","ServerKey":"us63"},{"ID":3971,"VillageID":2376,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":779,"CreatedAt":"2023-02-17T03:56:13Z","ServerKey":"us63"},{"ID":3972,"VillageID":7258,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":693750,"OldTribeID":33,"Points":115,"CreatedAt":"2023-02-17T03:56:21Z","ServerKey":"us63"},{"ID":3973,"VillageID":7258,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":1582,"OldTribeID":61,"Points":107,"CreatedAt":"2023-02-17T03:56:23Z","ServerKey":"us63"},{"ID":3974,"VillageID":53,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-17T04:00:41Z","ServerKey":"us63"},{"ID":3975,"VillageID":5894,"NewOwnerID":848953992,"NewTribeID":0,"OldOwnerID":772572,"OldTribeID":0,"Points":1164,"CreatedAt":"2023-02-17T04:02:33Z","ServerKey":"us63"},{"ID":3976,"VillageID":998,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-17T04:08:05Z","ServerKey":"us63"},{"ID":3977,"VillageID":4281,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-17T04:12:22Z","ServerKey":"us63"},{"ID":3978,"VillageID":2819,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-17T04:40:27Z","ServerKey":"us63"},{"ID":3979,"VillageID":5236,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-17T04:42:18Z","ServerKey":"us63"},{"ID":3980,"VillageID":8103,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-17T04:44:01Z","ServerKey":"us63"},{"ID":3981,"VillageID":5433,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-17T04:46:29Z","ServerKey":"us63"},{"ID":3982,"VillageID":5703,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-17T04:46:48Z","ServerKey":"us63"},{"ID":3983,"VillageID":9609,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":40,"CreatedAt":"2023-02-17T04:48:13Z","ServerKey":"us63"},{"ID":3984,"VillageID":351,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-17T04:59:05Z","ServerKey":"us63"},{"ID":3985,"VillageID":3755,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848954768,"OldTribeID":219,"Points":4439,"CreatedAt":"2023-02-17T04:59:59Z","ServerKey":"us63"},{"ID":3986,"VillageID":4104,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848954768,"OldTribeID":219,"Points":9492,"CreatedAt":"2023-02-17T04:59:59Z","ServerKey":"us63"},{"ID":3987,"VillageID":1493,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-17T05:07:39Z","ServerKey":"us63"},{"ID":3988,"VillageID":2510,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":348,"CreatedAt":"2023-02-17T05:18:34Z","ServerKey":"us63"},{"ID":3989,"VillageID":2354,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":265,"CreatedAt":"2023-02-17T05:23:58Z","ServerKey":"us63"},{"ID":3990,"VillageID":1615,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-17T05:29:37Z","ServerKey":"us63"},{"ID":3991,"VillageID":6200,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-17T05:33:57Z","ServerKey":"us63"},{"ID":3992,"VillageID":7769,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-17T05:51:53Z","ServerKey":"us63"},{"ID":3993,"VillageID":9111,"NewOwnerID":231006,"NewTribeID":212,"OldOwnerID":0,"OldTribeID":0,"Points":67,"CreatedAt":"2023-02-17T05:55:35Z","ServerKey":"us63"},{"ID":3994,"VillageID":2510,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":693802,"OldTribeID":138,"Points":348,"CreatedAt":"2023-02-17T06:08:31Z","ServerKey":"us63"},{"ID":3995,"VillageID":2510,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":780947,"OldTribeID":3,"Points":348,"CreatedAt":"2023-02-17T06:08:31Z","ServerKey":"us63"},{"ID":3996,"VillageID":8559,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-17T06:09:17Z","ServerKey":"us63"},{"ID":3997,"VillageID":1042,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-17T06:14:40Z","ServerKey":"us63"},{"ID":3998,"VillageID":1839,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-17T06:19:50Z","ServerKey":"us63"},{"ID":3999,"VillageID":916,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-17T06:21:19Z","ServerKey":"us63"},{"ID":4000,"VillageID":202,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":766625,"OldTribeID":6,"Points":7264,"CreatedAt":"2023-02-17T06:24:40Z","ServerKey":"us63"},{"ID":4001,"VillageID":3295,"NewOwnerID":848950123,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":461,"CreatedAt":"2023-02-17T06:26:29Z","ServerKey":"us63"},{"ID":4002,"VillageID":3919,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-17T06:33:09Z","ServerKey":"us63"},{"ID":4003,"VillageID":2381,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-17T06:35:07Z","ServerKey":"us63"},{"ID":4004,"VillageID":1220,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-17T06:44:45Z","ServerKey":"us63"},{"ID":4005,"VillageID":5647,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":848955012,"OldTribeID":0,"Points":3375,"CreatedAt":"2023-02-17T06:45:42Z","ServerKey":"us63"},{"ID":4006,"VillageID":9121,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-17T06:52:23Z","ServerKey":"us63"},{"ID":4007,"VillageID":6402,"NewOwnerID":848953551,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-17T07:02:36Z","ServerKey":"us63"},{"ID":4008,"VillageID":7251,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":166,"CreatedAt":"2023-02-17T07:06:12Z","ServerKey":"us63"},{"ID":4009,"VillageID":9747,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":44,"CreatedAt":"2023-02-17T07:07:49Z","ServerKey":"us63"},{"ID":4010,"VillageID":35,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-17T07:14:41Z","ServerKey":"us63"},{"ID":4011,"VillageID":6026,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-17T07:22:46Z","ServerKey":"us63"},{"ID":4012,"VillageID":249,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":848949204,"OldTribeID":105,"Points":1717,"CreatedAt":"2023-02-17T07:37:51Z","ServerKey":"us63"},{"ID":4013,"VillageID":6813,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-17T07:43:49Z","ServerKey":"us63"},{"ID":4014,"VillageID":2400,"NewOwnerID":848940914,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-17T07:43:54Z","ServerKey":"us63"},{"ID":4015,"VillageID":2862,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-17T07:44:22Z","ServerKey":"us63"},{"ID":4016,"VillageID":4657,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-17T07:55:20Z","ServerKey":"us63"},{"ID":4017,"VillageID":1420,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-17T08:04:12Z","ServerKey":"us63"},{"ID":4018,"VillageID":3555,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-17T08:10:47Z","ServerKey":"us63"},{"ID":4019,"VillageID":8409,"NewOwnerID":848953915,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":93,"CreatedAt":"2023-02-17T08:14:47Z","ServerKey":"us63"},{"ID":4020,"VillageID":5430,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":789326,"OldTribeID":42,"Points":1232,"CreatedAt":"2023-02-17T08:18:06Z","ServerKey":"us63"},{"ID":4021,"VillageID":1555,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-17T08:22:41Z","ServerKey":"us63"},{"ID":4022,"VillageID":1555,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":375,"CreatedAt":"2023-02-17T08:22:41Z","ServerKey":"us63"},{"ID":4023,"VillageID":1584,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-17T08:37:39Z","ServerKey":"us63"},{"ID":4024,"VillageID":2590,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-17T08:43:33Z","ServerKey":"us63"},{"ID":4025,"VillageID":2498,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-17T09:00:17Z","ServerKey":"us63"},{"ID":4026,"VillageID":273,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":481,"CreatedAt":"2023-02-17T09:02:00Z","ServerKey":"us63"},{"ID":4027,"VillageID":5877,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-17T09:02:04Z","ServerKey":"us63"},{"ID":4028,"VillageID":3917,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-17T09:15:49Z","ServerKey":"us63"},{"ID":4029,"VillageID":1100,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":284,"CreatedAt":"2023-02-17T09:32:40Z","ServerKey":"us63"},{"ID":4030,"VillageID":5330,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-17T09:35:31Z","ServerKey":"us63"},{"ID":4031,"VillageID":2154,"NewOwnerID":230556,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":355,"CreatedAt":"2023-02-17T09:38:05Z","ServerKey":"us63"},{"ID":4032,"VillageID":2510,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":780947,"OldTribeID":3,"Points":336,"CreatedAt":"2023-02-17T09:45:08Z","ServerKey":"us63"},{"ID":4033,"VillageID":2262,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-17T09:59:47Z","ServerKey":"us63"},{"ID":4034,"VillageID":1861,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":362,"CreatedAt":"2023-02-17T10:06:04Z","ServerKey":"us63"},{"ID":4035,"VillageID":1861,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848936921,"OldTribeID":6,"Points":362,"CreatedAt":"2023-02-17T10:06:12Z","ServerKey":"us63"},{"ID":4036,"VillageID":6073,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":96,"CreatedAt":"2023-02-17T10:06:19Z","ServerKey":"us63"},{"ID":4037,"VillageID":732,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-17T10:11:18Z","ServerKey":"us63"},{"ID":4038,"VillageID":552,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-17T10:45:07Z","ServerKey":"us63"},{"ID":4039,"VillageID":4215,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":365,"CreatedAt":"2023-02-17T11:00:09Z","ServerKey":"us63"},{"ID":4040,"VillageID":44,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-17T11:32:28Z","ServerKey":"us63"},{"ID":4041,"VillageID":8642,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":63,"CreatedAt":"2023-02-17T11:52:58Z","ServerKey":"us63"},{"ID":4042,"VillageID":3397,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-17T11:58:53Z","ServerKey":"us63"},{"ID":4043,"VillageID":1208,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-17T12:13:19Z","ServerKey":"us63"},{"ID":4044,"VillageID":6072,"NewOwnerID":848940612,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-17T12:21:14Z","ServerKey":"us63"},{"ID":4045,"VillageID":7320,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":130,"CreatedAt":"2023-02-17T12:25:44Z","ServerKey":"us63"},{"ID":4046,"VillageID":8176,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":83,"CreatedAt":"2023-02-17T12:33:27Z","ServerKey":"us63"},{"ID":4047,"VillageID":9125,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":58,"CreatedAt":"2023-02-17T12:53:53Z","ServerKey":"us63"},{"ID":4048,"VillageID":6486,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-17T12:56:22Z","ServerKey":"us63"},{"ID":4049,"VillageID":264,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-17T13:17:28Z","ServerKey":"us63"},{"ID":4050,"VillageID":3752,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-17T13:46:12Z","ServerKey":"us63"},{"ID":4051,"VillageID":8291,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-17T13:47:06Z","ServerKey":"us63"},{"ID":4052,"VillageID":2262,"NewOwnerID":848936718,"NewTribeID":3,"OldOwnerID":848890745,"OldTribeID":174,"Points":292,"CreatedAt":"2023-02-17T13:47:44Z","ServerKey":"us63"},{"ID":4053,"VillageID":2262,"NewOwnerID":848936718,"NewTribeID":3,"OldOwnerID":848936718,"OldTribeID":3,"Points":292,"CreatedAt":"2023-02-17T13:47:44Z","ServerKey":"us63"},{"ID":4054,"VillageID":4579,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-17T13:48:27Z","ServerKey":"us63"},{"ID":4055,"VillageID":6156,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848955067,"OldTribeID":42,"Points":2179,"CreatedAt":"2023-02-17T14:00:01Z","ServerKey":"us63"},{"ID":4056,"VillageID":6030,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":848955067,"OldTribeID":42,"Points":3296,"CreatedAt":"2023-02-17T14:00:01Z","ServerKey":"us63"},{"ID":4057,"VillageID":1070,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":583,"CreatedAt":"2023-02-17T14:14:01Z","ServerKey":"us63"},{"ID":4058,"VillageID":2129,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-17T14:31:43Z","ServerKey":"us63"},{"ID":4059,"VillageID":532,"NewOwnerID":848954428,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":5428,"CreatedAt":"2023-02-17T14:34:43Z","ServerKey":"us63"},{"ID":4060,"VillageID":2531,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-17T14:38:15Z","ServerKey":"us63"},{"ID":4061,"VillageID":2858,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-17T14:50:05Z","ServerKey":"us63"},{"ID":4062,"VillageID":8233,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-17T14:50:31Z","ServerKey":"us63"},{"ID":4063,"VillageID":4064,"NewOwnerID":552694,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":277,"CreatedAt":"2023-02-17T14:51:00Z","ServerKey":"us63"},{"ID":4064,"VillageID":8345,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-17T14:53:29Z","ServerKey":"us63"},{"ID":4065,"VillageID":7400,"NewOwnerID":790095,"NewTribeID":197,"OldOwnerID":619204,"OldTribeID":225,"Points":3919,"CreatedAt":"2023-02-17T15:13:45Z","ServerKey":"us63"},{"ID":4066,"VillageID":3932,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-17T15:32:17Z","ServerKey":"us63"},{"ID":4067,"VillageID":1516,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-17T15:44:26Z","ServerKey":"us63"},{"ID":4068,"VillageID":4539,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-17T15:46:55Z","ServerKey":"us63"},{"ID":4069,"VillageID":6007,"NewOwnerID":848947885,"NewTribeID":187,"OldOwnerID":848955063,"OldTribeID":208,"Points":1542,"CreatedAt":"2023-02-17T15:53:42Z","ServerKey":"us63"},{"ID":4070,"VillageID":249,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":848881759,"OldTribeID":183,"Points":1734,"CreatedAt":"2023-02-17T15:59:09Z","ServerKey":"us63"},{"ID":4071,"VillageID":358,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":6703,"CreatedAt":"2023-02-17T15:59:45Z","ServerKey":"us63"},{"ID":4072,"VillageID":7248,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-17T16:15:31Z","ServerKey":"us63"},{"ID":4073,"VillageID":6201,"NewOwnerID":848954894,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":184,"CreatedAt":"2023-02-17T16:25:43Z","ServerKey":"us63"},{"ID":4074,"VillageID":1675,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-17T16:44:30Z","ServerKey":"us63"},{"ID":4075,"VillageID":258,"NewOwnerID":213,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":355,"CreatedAt":"2023-02-17T16:47:40Z","ServerKey":"us63"},{"ID":4076,"VillageID":1176,"NewOwnerID":766397,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-17T17:03:43Z","ServerKey":"us63"},{"ID":4077,"VillageID":4866,"NewOwnerID":714184,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-17T17:06:08Z","ServerKey":"us63"},{"ID":4078,"VillageID":7540,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-17T17:10:09Z","ServerKey":"us63"},{"ID":4079,"VillageID":8291,"NewOwnerID":848930230,"NewTribeID":209,"OldOwnerID":848930230,"OldTribeID":209,"Points":121,"CreatedAt":"2023-02-17T17:47:07Z","ServerKey":"us63"},{"ID":4080,"VillageID":8542,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":95,"CreatedAt":"2023-02-17T17:49:35Z","ServerKey":"us63"},{"ID":4081,"VillageID":389,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-17T18:03:32Z","ServerKey":"us63"},{"ID":4082,"VillageID":1399,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1189,"CreatedAt":"2023-02-17T18:07:02Z","ServerKey":"us63"},{"ID":4083,"VillageID":5866,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-17T18:07:34Z","ServerKey":"us63"},{"ID":4084,"VillageID":6720,"NewOwnerID":848950849,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-17T18:13:25Z","ServerKey":"us63"},{"ID":4085,"VillageID":7546,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-17T18:13:27Z","ServerKey":"us63"},{"ID":4086,"VillageID":8588,"NewOwnerID":284001,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":126,"CreatedAt":"2023-02-17T18:22:57Z","ServerKey":"us63"},{"ID":4087,"VillageID":4212,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-17T18:26:35Z","ServerKey":"us63"},{"ID":4088,"VillageID":5284,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-17T18:29:12Z","ServerKey":"us63"},{"ID":4089,"VillageID":6972,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":192,"CreatedAt":"2023-02-17T18:29:22Z","ServerKey":"us63"},{"ID":4090,"VillageID":3272,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":225,"CreatedAt":"2023-02-17T18:30:37Z","ServerKey":"us63"},{"ID":4091,"VillageID":3531,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":339,"CreatedAt":"2023-02-17T18:33:12Z","ServerKey":"us63"},{"ID":4092,"VillageID":6994,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-17T18:51:25Z","ServerKey":"us63"},{"ID":4093,"VillageID":8406,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-17T19:08:50Z","ServerKey":"us63"},{"ID":4094,"VillageID":8690,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-17T19:09:18Z","ServerKey":"us63"},{"ID":4095,"VillageID":7413,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-17T19:12:59Z","ServerKey":"us63"},{"ID":4096,"VillageID":2721,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":480,"CreatedAt":"2023-02-17T19:14:58Z","ServerKey":"us63"},{"ID":4097,"VillageID":1300,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-17T19:17:21Z","ServerKey":"us63"},{"ID":4098,"VillageID":3368,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-17T19:26:54Z","ServerKey":"us63"},{"ID":4099,"VillageID":8569,"NewOwnerID":848955438,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":64,"CreatedAt":"2023-02-17T19:31:12Z","ServerKey":"us63"},{"ID":4100,"VillageID":6809,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":244,"CreatedAt":"2023-02-17T19:31:20Z","ServerKey":"us63"},{"ID":4101,"VillageID":1513,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848911019,"OldTribeID":12,"Points":2120,"CreatedAt":"2023-02-17T19:42:41Z","ServerKey":"us63"},{"ID":4102,"VillageID":6762,"NewOwnerID":848955222,"NewTribeID":185,"OldOwnerID":848955191,"OldTribeID":0,"Points":2421,"CreatedAt":"2023-02-17T19:58:54Z","ServerKey":"us63"},{"ID":4103,"VillageID":5709,"NewOwnerID":848955129,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-17T20:05:48Z","ServerKey":"us63"},{"ID":4104,"VillageID":3230,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":496,"CreatedAt":"2023-02-17T20:11:28Z","ServerKey":"us63"},{"ID":4105,"VillageID":3392,"NewOwnerID":848954719,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":602,"CreatedAt":"2023-02-17T20:13:02Z","ServerKey":"us63"},{"ID":4106,"VillageID":8398,"NewOwnerID":790095,"NewTribeID":197,"OldOwnerID":0,"OldTribeID":0,"Points":112,"CreatedAt":"2023-02-17T20:19:12Z","ServerKey":"us63"},{"ID":4107,"VillageID":565,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":697760,"OldTribeID":0,"Points":2139,"CreatedAt":"2023-02-17T20:25:53Z","ServerKey":"us63"},{"ID":4108,"VillageID":3885,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":215,"CreatedAt":"2023-02-17T20:54:49Z","ServerKey":"us63"},{"ID":4109,"VillageID":7272,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":176,"CreatedAt":"2023-02-17T20:55:35Z","ServerKey":"us63"},{"ID":4110,"VillageID":3146,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":426,"CreatedAt":"2023-02-17T21:15:58Z","ServerKey":"us63"},{"ID":4111,"VillageID":8481,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-17T21:31:51Z","ServerKey":"us63"},{"ID":4112,"VillageID":3797,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-17T21:35:31Z","ServerKey":"us63"},{"ID":4113,"VillageID":3403,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-17T21:52:13Z","ServerKey":"us63"},{"ID":4114,"VillageID":1366,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-17T22:14:06Z","ServerKey":"us63"},{"ID":4115,"VillageID":8525,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":72,"CreatedAt":"2023-02-17T22:18:58Z","ServerKey":"us63"},{"ID":4116,"VillageID":538,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":768825,"OldTribeID":105,"Points":3961,"CreatedAt":"2023-02-17T22:30:47Z","ServerKey":"us63"},{"ID":4117,"VillageID":9805,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":34,"CreatedAt":"2023-02-17T22:35:45Z","ServerKey":"us63"},{"ID":4118,"VillageID":8312,"NewOwnerID":848954832,"NewTribeID":134,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-17T22:45:47Z","ServerKey":"us63"},{"ID":4119,"VillageID":8645,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":107,"CreatedAt":"2023-02-17T23:04:38Z","ServerKey":"us63"},{"ID":4120,"VillageID":188,"NewOwnerID":848889826,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-17T23:06:33Z","ServerKey":"us63"},{"ID":4121,"VillageID":3279,"NewOwnerID":848954700,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-17T23:15:17Z","ServerKey":"us63"},{"ID":4122,"VillageID":6823,"NewOwnerID":848954199,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-17T23:17:03Z","ServerKey":"us63"},{"ID":4123,"VillageID":2098,"NewOwnerID":780375,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-17T23:24:23Z","ServerKey":"us63"},{"ID":4124,"VillageID":7472,"NewOwnerID":339555,"NewTribeID":74,"OldOwnerID":565794,"OldTribeID":97,"Points":2702,"CreatedAt":"2023-02-17T23:25:03Z","ServerKey":"us63"},{"ID":4125,"VillageID":5676,"NewOwnerID":848946291,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1078,"CreatedAt":"2023-02-17T23:33:00Z","ServerKey":"us63"},{"ID":4126,"VillageID":7045,"NewOwnerID":848954998,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":165,"CreatedAt":"2023-02-17T23:40:34Z","ServerKey":"us63"},{"ID":4127,"VillageID":1469,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":283,"CreatedAt":"2023-02-17T23:45:38Z","ServerKey":"us63"},{"ID":4128,"VillageID":6906,"NewOwnerID":514187,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-17T23:55:32Z","ServerKey":"us63"},{"ID":4129,"VillageID":5627,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":789326,"OldTribeID":42,"Points":951,"CreatedAt":"2023-02-17T23:59:00Z","ServerKey":"us63"},{"ID":4130,"VillageID":7113,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":106,"CreatedAt":"2023-02-18T00:05:08Z","ServerKey":"us63"},{"ID":4131,"VillageID":1212,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":427,"CreatedAt":"2023-02-18T00:10:29Z","ServerKey":"us63"},{"ID":4132,"VillageID":8377,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":848954719,"OldTribeID":32,"Points":316,"CreatedAt":"2023-02-18T00:16:46Z","ServerKey":"us63"},{"ID":4133,"VillageID":8377,"NewOwnerID":848952488,"NewTribeID":32,"OldOwnerID":787586,"OldTribeID":74,"Points":292,"CreatedAt":"2023-02-18T00:16:49Z","ServerKey":"us63"},{"ID":4134,"VillageID":1080,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":389,"CreatedAt":"2023-02-18T00:17:59Z","ServerKey":"us63"},{"ID":4135,"VillageID":2255,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":406,"CreatedAt":"2023-02-18T00:20:07Z","ServerKey":"us63"},{"ID":4136,"VillageID":3922,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-18T00:32:54Z","ServerKey":"us63"},{"ID":4137,"VillageID":6006,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":170,"CreatedAt":"2023-02-18T00:40:56Z","ServerKey":"us63"},{"ID":4138,"VillageID":6930,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":143,"CreatedAt":"2023-02-18T00:53:34Z","ServerKey":"us63"},{"ID":4139,"VillageID":265,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":368,"CreatedAt":"2023-02-18T00:56:17Z","ServerKey":"us63"},{"ID":4140,"VillageID":2112,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":1108,"CreatedAt":"2023-02-18T00:59:05Z","ServerKey":"us63"},{"ID":4141,"VillageID":5420,"NewOwnerID":848954539,"NewTribeID":105,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-18T01:19:47Z","ServerKey":"us63"},{"ID":4142,"VillageID":5599,"NewOwnerID":848953200,"NewTribeID":53,"OldOwnerID":848955003,"OldTribeID":0,"Points":492,"CreatedAt":"2023-02-18T01:23:07Z","ServerKey":"us63"},{"ID":4143,"VillageID":3827,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-18T01:30:53Z","ServerKey":"us63"},{"ID":4144,"VillageID":7361,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":99,"CreatedAt":"2023-02-18T01:38:19Z","ServerKey":"us63"},{"ID":4145,"VillageID":3988,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-18T01:38:51Z","ServerKey":"us63"},{"ID":4146,"VillageID":7694,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":91,"CreatedAt":"2023-02-18T01:49:47Z","ServerKey":"us63"},{"ID":4147,"VillageID":5986,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":779,"CreatedAt":"2023-02-18T01:52:19Z","ServerKey":"us63"},{"ID":4148,"VillageID":3058,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-18T01:59:24Z","ServerKey":"us63"},{"ID":4149,"VillageID":2425,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-18T02:01:58Z","ServerKey":"us63"},{"ID":4150,"VillageID":4008,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-18T02:16:02Z","ServerKey":"us63"},{"ID":4151,"VillageID":7232,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":848952960,"OldTribeID":0,"Points":3932,"CreatedAt":"2023-02-18T02:43:15Z","ServerKey":"us63"},{"ID":4152,"VillageID":2568,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-18T02:54:24Z","ServerKey":"us63"},{"ID":4153,"VillageID":2353,"NewOwnerID":848940915,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":344,"CreatedAt":"2023-02-18T02:55:43Z","ServerKey":"us63"},{"ID":4154,"VillageID":3330,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":848950123,"OldTribeID":0,"Points":2807,"CreatedAt":"2023-02-18T02:57:53Z","ServerKey":"us63"},{"ID":4155,"VillageID":6384,"NewOwnerID":848955121,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-18T02:59:09Z","ServerKey":"us63"},{"ID":4156,"VillageID":7421,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":848955305,"OldTribeID":184,"Points":1854,"CreatedAt":"2023-02-18T03:06:10Z","ServerKey":"us63"},{"ID":4157,"VillageID":7421,"NewOwnerID":848954607,"NewTribeID":32,"OldOwnerID":848954607,"OldTribeID":32,"Points":1854,"CreatedAt":"2023-02-18T03:06:10Z","ServerKey":"us63"},{"ID":4158,"VillageID":1058,"NewOwnerID":848929146,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":439,"CreatedAt":"2023-02-18T03:23:19Z","ServerKey":"us63"},{"ID":4159,"VillageID":1731,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-18T03:40:12Z","ServerKey":"us63"},{"ID":4160,"VillageID":2128,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-18T03:54:48Z","ServerKey":"us63"},{"ID":4161,"VillageID":4350,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-18T03:57:29Z","ServerKey":"us63"},{"ID":4162,"VillageID":1396,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-18T03:59:09Z","ServerKey":"us63"},{"ID":4163,"VillageID":6648,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-18T04:14:10Z","ServerKey":"us63"},{"ID":4164,"VillageID":8523,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":79,"CreatedAt":"2023-02-18T04:14:27Z","ServerKey":"us63"},{"ID":4165,"VillageID":9445,"NewOwnerID":848955043,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":59,"CreatedAt":"2023-02-18T04:18:07Z","ServerKey":"us63"},{"ID":4166,"VillageID":5880,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-18T04:21:06Z","ServerKey":"us63"},{"ID":4167,"VillageID":5880,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":848954609,"OldTribeID":50,"Points":203,"CreatedAt":"2023-02-18T04:21:07Z","ServerKey":"us63"},{"ID":4168,"VillageID":9978,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":27,"CreatedAt":"2023-02-18T04:22:44Z","ServerKey":"us63"},{"ID":4169,"VillageID":4985,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-18T04:24:30Z","ServerKey":"us63"},{"ID":4170,"VillageID":7917,"NewOwnerID":848954832,"NewTribeID":134,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-18T04:33:23Z","ServerKey":"us63"},{"ID":4171,"VillageID":1062,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-18T04:38:56Z","ServerKey":"us63"},{"ID":4172,"VillageID":1119,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-18T05:01:14Z","ServerKey":"us63"},{"ID":4173,"VillageID":3462,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":385,"CreatedAt":"2023-02-18T05:07:56Z","ServerKey":"us63"},{"ID":4174,"VillageID":28,"NewOwnerID":573851,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-18T05:08:22Z","ServerKey":"us63"},{"ID":4175,"VillageID":6362,"NewOwnerID":776842,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":213,"CreatedAt":"2023-02-18T05:13:27Z","ServerKey":"us63"},{"ID":4176,"VillageID":1981,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":405,"CreatedAt":"2023-02-18T05:15:40Z","ServerKey":"us63"},{"ID":4177,"VillageID":4734,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-18T05:17:56Z","ServerKey":"us63"},{"ID":4178,"VillageID":8362,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-18T05:21:46Z","ServerKey":"us63"},{"ID":4179,"VillageID":1970,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":466,"CreatedAt":"2023-02-18T05:22:45Z","ServerKey":"us63"},{"ID":4180,"VillageID":8135,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-18T05:31:22Z","ServerKey":"us63"},{"ID":4181,"VillageID":2346,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":368,"CreatedAt":"2023-02-18T05:50:57Z","ServerKey":"us63"},{"ID":4182,"VillageID":6735,"NewOwnerID":848954539,"NewTribeID":239,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-18T05:58:11Z","ServerKey":"us63"},{"ID":4183,"VillageID":5148,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-18T05:59:33Z","ServerKey":"us63"},{"ID":4184,"VillageID":691,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":347,"CreatedAt":"2023-02-18T06:15:41Z","ServerKey":"us63"},{"ID":4185,"VillageID":7786,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":142,"CreatedAt":"2023-02-18T06:41:59Z","ServerKey":"us63"},{"ID":4186,"VillageID":9202,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-18T06:42:00Z","ServerKey":"us63"},{"ID":4187,"VillageID":5598,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":348,"CreatedAt":"2023-02-18T06:45:05Z","ServerKey":"us63"},{"ID":4188,"VillageID":8288,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-18T06:52:35Z","ServerKey":"us63"},{"ID":4189,"VillageID":5359,"NewOwnerID":848929146,"NewTribeID":6,"OldOwnerID":554600,"OldTribeID":0,"Points":6342,"CreatedAt":"2023-02-18T07:01:55Z","ServerKey":"us63"},{"ID":4190,"VillageID":976,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-18T07:31:12Z","ServerKey":"us63"},{"ID":4191,"VillageID":8183,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-18T07:34:00Z","ServerKey":"us63"},{"ID":4192,"VillageID":1396,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848936921,"OldTribeID":6,"Points":277,"CreatedAt":"2023-02-18T07:37:06Z","ServerKey":"us63"},{"ID":4193,"VillageID":1396,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":761474,"OldTribeID":33,"Points":277,"CreatedAt":"2023-02-18T07:37:06Z","ServerKey":"us63"},{"ID":4194,"VillageID":5957,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":219,"CreatedAt":"2023-02-18T07:39:35Z","ServerKey":"us63"},{"ID":4195,"VillageID":3381,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-18T07:47:08Z","ServerKey":"us63"},{"ID":4196,"VillageID":119,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":432,"CreatedAt":"2023-02-18T07:58:24Z","ServerKey":"us63"},{"ID":4197,"VillageID":3653,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-18T08:20:14Z","ServerKey":"us63"},{"ID":4198,"VillageID":6694,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-18T08:33:47Z","ServerKey":"us63"},{"ID":4199,"VillageID":2513,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":795932,"OldTribeID":22,"Points":802,"CreatedAt":"2023-02-18T08:47:44Z","ServerKey":"us63"},{"ID":4200,"VillageID":1529,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-18T08:52:30Z","ServerKey":"us63"},{"ID":4201,"VillageID":9015,"NewOwnerID":848937255,"NewTribeID":198,"OldOwnerID":249275,"OldTribeID":104,"Points":794,"CreatedAt":"2023-02-18T08:53:51Z","ServerKey":"us63"},{"ID":4202,"VillageID":5143,"NewOwnerID":848949067,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-18T09:06:50Z","ServerKey":"us63"},{"ID":4203,"VillageID":2389,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":697760,"OldTribeID":0,"Points":8475,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4204,"VillageID":1001,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":697760,"OldTribeID":0,"Points":9047,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4205,"VillageID":829,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":697760,"OldTribeID":0,"Points":6350,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4206,"VillageID":829,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":6350,"CreatedAt":"2023-02-18T09:15:00Z","ServerKey":"us63"},{"ID":4207,"VillageID":5650,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":203,"CreatedAt":"2023-02-18T09:22:04Z","ServerKey":"us63"},{"ID":4208,"VillageID":7400,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":790095,"OldTribeID":197,"Points":3871,"CreatedAt":"2023-02-18T09:51:49Z","ServerKey":"us63"},{"ID":4209,"VillageID":7400,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":649035,"OldTribeID":74,"Points":3871,"CreatedAt":"2023-02-18T09:51:49Z","ServerKey":"us63"},{"ID":4210,"VillageID":6748,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-18T10:05:49Z","ServerKey":"us63"},{"ID":4211,"VillageID":6748,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":848951632,"OldTribeID":138,"Points":123,"CreatedAt":"2023-02-18T10:05:49Z","ServerKey":"us63"},{"ID":4212,"VillageID":126,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-18T10:11:36Z","ServerKey":"us63"},{"ID":4213,"VillageID":2943,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-18T10:18:56Z","ServerKey":"us63"},{"ID":4214,"VillageID":3816,"NewOwnerID":848954719,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-18T10:32:09Z","ServerKey":"us63"},{"ID":4215,"VillageID":9634,"NewOwnerID":848951609,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":36,"CreatedAt":"2023-02-18T10:33:16Z","ServerKey":"us63"},{"ID":4216,"VillageID":1755,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-18T10:39:07Z","ServerKey":"us63"},{"ID":4217,"VillageID":692,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-18T10:46:26Z","ServerKey":"us63"},{"ID":4218,"VillageID":7297,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-18T10:48:15Z","ServerKey":"us63"},{"ID":4219,"VillageID":1989,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":449,"CreatedAt":"2023-02-18T10:50:00Z","ServerKey":"us63"},{"ID":4220,"VillageID":1313,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-18T10:54:27Z","ServerKey":"us63"},{"ID":4221,"VillageID":2060,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-18T10:55:22Z","ServerKey":"us63"},{"ID":4222,"VillageID":336,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":304,"CreatedAt":"2023-02-18T11:04:16Z","ServerKey":"us63"},{"ID":4223,"VillageID":297,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-18T11:13:23Z","ServerKey":"us63"},{"ID":4224,"VillageID":1947,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":384998,"OldTribeID":86,"Points":8155,"CreatedAt":"2023-02-18T11:21:18Z","ServerKey":"us63"},{"ID":4225,"VillageID":619,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-18T11:26:10Z","ServerKey":"us63"},{"ID":4226,"VillageID":1297,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-18T11:26:14Z","ServerKey":"us63"},{"ID":4227,"VillageID":315,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":484,"CreatedAt":"2023-02-18T11:29:24Z","ServerKey":"us63"},{"ID":4228,"VillageID":1115,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":517,"CreatedAt":"2023-02-18T11:32:27Z","ServerKey":"us63"},{"ID":4229,"VillageID":643,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-18T11:34:47Z","ServerKey":"us63"},{"ID":4230,"VillageID":5870,"NewOwnerID":848941569,"NewTribeID":219,"OldOwnerID":848955133,"OldTribeID":0,"Points":2407,"CreatedAt":"2023-02-18T11:42:34Z","ServerKey":"us63"},{"ID":4231,"VillageID":559,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-18T11:50:14Z","ServerKey":"us63"},{"ID":4232,"VillageID":8212,"NewOwnerID":375649,"NewTribeID":32,"OldOwnerID":848935728,"OldTribeID":0,"Points":1577,"CreatedAt":"2023-02-18T11:50:43Z","ServerKey":"us63"},{"ID":4233,"VillageID":2977,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":448,"CreatedAt":"2023-02-18T11:53:21Z","ServerKey":"us63"},{"ID":4234,"VillageID":1542,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":404,"CreatedAt":"2023-02-18T11:55:17Z","ServerKey":"us63"},{"ID":4235,"VillageID":6351,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":159,"CreatedAt":"2023-02-18T11:56:56Z","ServerKey":"us63"},{"ID":4236,"VillageID":5275,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-18T12:13:37Z","ServerKey":"us63"},{"ID":4237,"VillageID":3013,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":563,"CreatedAt":"2023-02-18T12:21:06Z","ServerKey":"us63"},{"ID":4238,"VillageID":3013,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":848945162,"OldTribeID":33,"Points":563,"CreatedAt":"2023-02-18T12:21:06Z","ServerKey":"us63"},{"ID":4239,"VillageID":1077,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-18T12:38:11Z","ServerKey":"us63"},{"ID":4240,"VillageID":1724,"NewOwnerID":848933579,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-18T12:49:42Z","ServerKey":"us63"},{"ID":4241,"VillageID":1412,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-18T12:50:00Z","ServerKey":"us63"},{"ID":4242,"VillageID":780,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":475,"CreatedAt":"2023-02-18T12:56:21Z","ServerKey":"us63"},{"ID":4243,"VillageID":5107,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":848954926,"OldTribeID":66,"Points":4312,"CreatedAt":"2023-02-18T12:57:35Z","ServerKey":"us63"},{"ID":4244,"VillageID":1313,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":848936921,"OldTribeID":6,"Points":418,"CreatedAt":"2023-02-18T13:12:58Z","ServerKey":"us63"},{"ID":4245,"VillageID":1313,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":761474,"OldTribeID":33,"Points":418,"CreatedAt":"2023-02-18T13:12:58Z","ServerKey":"us63"},{"ID":4246,"VillageID":8298,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":788057,"OldTribeID":104,"Points":1679,"CreatedAt":"2023-02-18T13:16:46Z","ServerKey":"us63"},{"ID":4247,"VillageID":7877,"NewOwnerID":715075,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-18T13:30:46Z","ServerKey":"us63"},{"ID":4248,"VillageID":7345,"NewOwnerID":775729,"NewTribeID":239,"OldOwnerID":848955100,"OldTribeID":182,"Points":3236,"CreatedAt":"2023-02-18T13:31:27Z","ServerKey":"us63"},{"ID":4249,"VillageID":5253,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":261,"CreatedAt":"2023-02-18T13:37:48Z","ServerKey":"us63"},{"ID":4250,"VillageID":6479,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":2333,"CreatedAt":"2023-02-18T13:44:28Z","ServerKey":"us63"},{"ID":4251,"VillageID":1801,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-18T13:47:41Z","ServerKey":"us63"},{"ID":4252,"VillageID":1720,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-18T13:50:03Z","ServerKey":"us63"},{"ID":4253,"VillageID":4234,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":274,"CreatedAt":"2023-02-18T14:03:03Z","ServerKey":"us63"},{"ID":4254,"VillageID":2798,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-18T14:08:54Z","ServerKey":"us63"},{"ID":4255,"VillageID":4866,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":714184,"OldTribeID":0,"Points":438,"CreatedAt":"2023-02-18T14:09:47Z","ServerKey":"us63"},{"ID":4256,"VillageID":1005,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":357,"CreatedAt":"2023-02-18T14:10:25Z","ServerKey":"us63"},{"ID":4257,"VillageID":1254,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":651,"CreatedAt":"2023-02-18T14:16:51Z","ServerKey":"us63"},{"ID":4258,"VillageID":5834,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848955039,"OldTribeID":134,"Points":1811,"CreatedAt":"2023-02-18T14:17:51Z","ServerKey":"us63"},{"ID":4259,"VillageID":1041,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":390,"CreatedAt":"2023-02-18T14:17:55Z","ServerKey":"us63"},{"ID":4260,"VillageID":5834,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848945233,"OldTribeID":91,"Points":1787,"CreatedAt":"2023-02-18T14:18:03Z","ServerKey":"us63"},{"ID":4261,"VillageID":5538,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":319,"CreatedAt":"2023-02-18T14:37:47Z","ServerKey":"us63"},{"ID":4262,"VillageID":10139,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-18T14:43:19Z","ServerKey":"us63"},{"ID":4263,"VillageID":5991,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":187,"CreatedAt":"2023-02-18T14:53:30Z","ServerKey":"us63"},{"ID":4264,"VillageID":2580,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-18T14:55:28Z","ServerKey":"us63"},{"ID":4265,"VillageID":10087,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-18T15:01:53Z","ServerKey":"us63"},{"ID":4266,"VillageID":3432,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":489,"CreatedAt":"2023-02-18T15:12:28Z","ServerKey":"us63"},{"ID":4267,"VillageID":1221,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-18T15:26:17Z","ServerKey":"us63"},{"ID":4268,"VillageID":8036,"NewOwnerID":749328,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":161,"CreatedAt":"2023-02-18T15:27:01Z","ServerKey":"us63"},{"ID":4269,"VillageID":2693,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-18T15:30:47Z","ServerKey":"us63"},{"ID":4270,"VillageID":8367,"NewOwnerID":848955348,"NewTribeID":209,"OldOwnerID":751295,"OldTribeID":198,"Points":6281,"CreatedAt":"2023-02-18T15:30:56Z","ServerKey":"us63"},{"ID":4271,"VillageID":9236,"NewOwnerID":231006,"NewTribeID":212,"OldOwnerID":0,"OldTribeID":0,"Points":80,"CreatedAt":"2023-02-18T15:33:32Z","ServerKey":"us63"},{"ID":4272,"VillageID":1818,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-18T15:34:08Z","ServerKey":"us63"},{"ID":4273,"VillageID":1797,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-18T15:34:37Z","ServerKey":"us63"},{"ID":4274,"VillageID":2111,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-18T15:40:20Z","ServerKey":"us63"},{"ID":4275,"VillageID":1797,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848949948,"OldTribeID":85,"Points":342,"CreatedAt":"2023-02-18T15:54:22Z","ServerKey":"us63"},{"ID":4276,"VillageID":7037,"NewOwnerID":848884869,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-18T16:15:20Z","ServerKey":"us63"},{"ID":4277,"VillageID":1500,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":356,"CreatedAt":"2023-02-18T16:19:58Z","ServerKey":"us63"},{"ID":4278,"VillageID":2455,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-18T16:20:52Z","ServerKey":"us63"},{"ID":4279,"VillageID":7930,"NewOwnerID":848954504,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":2646,"CreatedAt":"2023-02-18T16:23:36Z","ServerKey":"us63"},{"ID":4280,"VillageID":7278,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":154,"CreatedAt":"2023-02-18T16:32:59Z","ServerKey":"us63"},{"ID":4281,"VillageID":2763,"NewOwnerID":576637,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-18T16:42:53Z","ServerKey":"us63"},{"ID":4282,"VillageID":899,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-18T16:51:47Z","ServerKey":"us63"},{"ID":4283,"VillageID":5331,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":211,"CreatedAt":"2023-02-18T16:54:20Z","ServerKey":"us63"},{"ID":4284,"VillageID":5937,"NewOwnerID":848954637,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-18T16:58:04Z","ServerKey":"us63"},{"ID":4285,"VillageID":3265,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-18T17:13:58Z","ServerKey":"us63"},{"ID":4286,"VillageID":7616,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-18T17:15:10Z","ServerKey":"us63"},{"ID":4287,"VillageID":2961,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-18T17:17:05Z","ServerKey":"us63"},{"ID":4288,"VillageID":5653,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":242,"CreatedAt":"2023-02-18T17:24:33Z","ServerKey":"us63"},{"ID":4289,"VillageID":3170,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":362,"CreatedAt":"2023-02-18T17:26:42Z","ServerKey":"us63"},{"ID":4290,"VillageID":883,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":9041,"CreatedAt":"2023-02-18T17:41:25Z","ServerKey":"us63"},{"ID":4291,"VillageID":7165,"NewOwnerID":848955311,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":209,"CreatedAt":"2023-02-18T17:44:09Z","ServerKey":"us63"},{"ID":4292,"VillageID":6101,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-18T17:51:06Z","ServerKey":"us63"},{"ID":4293,"VillageID":564,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":322,"CreatedAt":"2023-02-18T17:51:51Z","ServerKey":"us63"},{"ID":4294,"VillageID":759,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":327,"CreatedAt":"2023-02-18T18:08:20Z","ServerKey":"us63"},{"ID":4295,"VillageID":2793,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-18T18:15:57Z","ServerKey":"us63"},{"ID":4296,"VillageID":9741,"NewOwnerID":787899,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":48,"CreatedAt":"2023-02-18T18:21:18Z","ServerKey":"us63"},{"ID":4297,"VillageID":6964,"NewOwnerID":848954640,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":1958,"CreatedAt":"2023-02-18T18:38:26Z","ServerKey":"us63"},{"ID":4298,"VillageID":1179,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-18T18:39:07Z","ServerKey":"us63"},{"ID":4299,"VillageID":9815,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":37,"CreatedAt":"2023-02-18T18:41:50Z","ServerKey":"us63"},{"ID":4300,"VillageID":1273,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":276,"CreatedAt":"2023-02-18T18:42:12Z","ServerKey":"us63"},{"ID":4301,"VillageID":3456,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":117,"CreatedAt":"2023-02-18T18:42:50Z","ServerKey":"us63"},{"ID":4302,"VillageID":4176,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-18T18:45:12Z","ServerKey":"us63"},{"ID":4303,"VillageID":1671,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":390,"CreatedAt":"2023-02-18T18:51:31Z","ServerKey":"us63"},{"ID":4304,"VillageID":8549,"NewOwnerID":848941179,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-18T18:55:49Z","ServerKey":"us63"},{"ID":4305,"VillageID":4821,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-18T19:05:04Z","ServerKey":"us63"},{"ID":4306,"VillageID":7304,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":182,"CreatedAt":"2023-02-18T19:12:53Z","ServerKey":"us63"},{"ID":4307,"VillageID":3094,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-18T19:13:07Z","ServerKey":"us63"},{"ID":4308,"VillageID":8812,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":104,"CreatedAt":"2023-02-18T19:17:31Z","ServerKey":"us63"},{"ID":4309,"VillageID":7123,"NewOwnerID":848954608,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-18T19:18:01Z","ServerKey":"us63"},{"ID":4310,"VillageID":3494,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-18T19:30:23Z","ServerKey":"us63"},{"ID":4311,"VillageID":3475,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":220600,"OldTribeID":0,"Points":1602,"CreatedAt":"2023-02-18T19:30:54Z","ServerKey":"us63"},{"ID":4312,"VillageID":1331,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":391,"CreatedAt":"2023-02-18T19:42:20Z","ServerKey":"us63"},{"ID":4313,"VillageID":10107,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-18T19:42:58Z","ServerKey":"us63"},{"ID":4314,"VillageID":8899,"NewOwnerID":782908,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-18T19:44:07Z","ServerKey":"us63"},{"ID":4315,"VillageID":8429,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-18T19:50:14Z","ServerKey":"us63"},{"ID":4316,"VillageID":2998,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-18T19:53:51Z","ServerKey":"us63"},{"ID":4317,"VillageID":48,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":295,"CreatedAt":"2023-02-18T20:12:26Z","ServerKey":"us63"},{"ID":4318,"VillageID":5449,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-18T20:17:38Z","ServerKey":"us63"},{"ID":4319,"VillageID":1197,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":476,"CreatedAt":"2023-02-18T20:19:42Z","ServerKey":"us63"},{"ID":4320,"VillageID":964,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":475,"CreatedAt":"2023-02-18T20:22:22Z","ServerKey":"us63"},{"ID":4321,"VillageID":2294,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-18T20:24:07Z","ServerKey":"us63"},{"ID":4322,"VillageID":2699,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":523,"CreatedAt":"2023-02-18T20:26:25Z","ServerKey":"us63"},{"ID":4323,"VillageID":1213,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-18T20:30:13Z","ServerKey":"us63"},{"ID":4324,"VillageID":1775,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":250,"CreatedAt":"2023-02-18T20:40:34Z","ServerKey":"us63"},{"ID":4325,"VillageID":7676,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":35,"CreatedAt":"2023-02-18T20:50:45Z","ServerKey":"us63"},{"ID":4326,"VillageID":1239,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-18T20:58:36Z","ServerKey":"us63"},{"ID":4327,"VillageID":2380,"NewOwnerID":848954223,"NewTribeID":88,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-18T21:02:59Z","ServerKey":"us63"},{"ID":4328,"VillageID":2380,"NewOwnerID":848954223,"NewTribeID":88,"OldOwnerID":848954223,"OldTribeID":88,"Points":402,"CreatedAt":"2023-02-18T21:02:59Z","ServerKey":"us63"},{"ID":4329,"VillageID":1980,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-18T21:03:52Z","ServerKey":"us63"},{"ID":4330,"VillageID":1224,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-18T21:08:51Z","ServerKey":"us63"},{"ID":4331,"VillageID":3487,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":505,"CreatedAt":"2023-02-18T21:20:19Z","ServerKey":"us63"},{"ID":4332,"VillageID":1601,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":382,"CreatedAt":"2023-02-18T21:23:07Z","ServerKey":"us63"},{"ID":4333,"VillageID":1921,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":848954366,"OldTribeID":0,"Points":927,"CreatedAt":"2023-02-18T21:25:58Z","ServerKey":"us63"},{"ID":4334,"VillageID":3177,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":416,"CreatedAt":"2023-02-18T21:27:23Z","ServerKey":"us63"},{"ID":4335,"VillageID":1349,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":427,"CreatedAt":"2023-02-18T21:33:02Z","ServerKey":"us63"},{"ID":4336,"VillageID":3500,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-18T21:37:42Z","ServerKey":"us63"},{"ID":4337,"VillageID":321,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-18T21:43:17Z","ServerKey":"us63"},{"ID":4338,"VillageID":1455,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":272,"CreatedAt":"2023-02-18T21:51:15Z","ServerKey":"us63"},{"ID":4339,"VillageID":5123,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-18T22:02:15Z","ServerKey":"us63"},{"ID":4340,"VillageID":2229,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":454,"CreatedAt":"2023-02-18T22:08:57Z","ServerKey":"us63"},{"ID":4341,"VillageID":2703,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-18T22:13:45Z","ServerKey":"us63"},{"ID":4342,"VillageID":2716,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":237,"CreatedAt":"2023-02-18T22:19:47Z","ServerKey":"us63"},{"ID":4343,"VillageID":1723,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-18T22:25:14Z","ServerKey":"us63"},{"ID":4344,"VillageID":1723,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":257,"CreatedAt":"2023-02-18T22:25:14Z","ServerKey":"us63"},{"ID":4346,"VillageID":859,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-18T22:25:59Z","ServerKey":"us63"},{"ID":4347,"VillageID":1144,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":513,"CreatedAt":"2023-02-18T22:29:07Z","ServerKey":"us63"},{"ID":4348,"VillageID":3649,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-18T22:36:47Z","ServerKey":"us63"},{"ID":4349,"VillageID":5541,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-18T22:42:31Z","ServerKey":"us63"},{"ID":4350,"VillageID":1537,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-18T22:47:33Z","ServerKey":"us63"},{"ID":4351,"VillageID":1415,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":266,"CreatedAt":"2023-02-18T22:51:25Z","ServerKey":"us63"},{"ID":4352,"VillageID":1311,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3055,"CreatedAt":"2023-02-18T22:52:39Z","ServerKey":"us63"},{"ID":4353,"VillageID":1274,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-18T22:55:32Z","ServerKey":"us63"},{"ID":4354,"VillageID":3084,"NewOwnerID":794964,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":336,"CreatedAt":"2023-02-18T22:56:44Z","ServerKey":"us63"},{"ID":4355,"VillageID":5133,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-18T22:58:18Z","ServerKey":"us63"},{"ID":4356,"VillageID":7014,"NewOwnerID":848955442,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-18T23:01:53Z","ServerKey":"us63"},{"ID":4357,"VillageID":6088,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-18T23:09:52Z","ServerKey":"us63"},{"ID":4358,"VillageID":1589,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-18T23:10:25Z","ServerKey":"us63"},{"ID":4359,"VillageID":7619,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-18T23:22:40Z","ServerKey":"us63"},{"ID":4360,"VillageID":785,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":538,"CreatedAt":"2023-02-18T23:33:17Z","ServerKey":"us63"},{"ID":4361,"VillageID":8545,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":86,"CreatedAt":"2023-02-18T23:43:03Z","ServerKey":"us63"},{"ID":4362,"VillageID":2417,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":404,"CreatedAt":"2023-02-18T23:48:43Z","ServerKey":"us63"},{"ID":4363,"VillageID":1843,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":262,"CreatedAt":"2023-02-19T00:01:41Z","ServerKey":"us63"},{"ID":4364,"VillageID":1843,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":262,"CreatedAt":"2023-02-19T00:01:41Z","ServerKey":"us63"},{"ID":4365,"VillageID":8966,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":71,"CreatedAt":"2023-02-19T00:06:04Z","ServerKey":"us63"},{"ID":4366,"VillageID":5021,"NewOwnerID":848953992,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-19T00:06:25Z","ServerKey":"us63"},{"ID":4367,"VillageID":9656,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":55,"CreatedAt":"2023-02-19T00:14:47Z","ServerKey":"us63"},{"ID":4368,"VillageID":2240,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":418,"CreatedAt":"2023-02-19T00:17:47Z","ServerKey":"us63"},{"ID":4369,"VillageID":9891,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":37,"CreatedAt":"2023-02-19T00:20:29Z","ServerKey":"us63"},{"ID":4370,"VillageID":1908,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-19T00:22:31Z","ServerKey":"us63"},{"ID":4371,"VillageID":3087,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-19T00:30:03Z","ServerKey":"us63"},{"ID":4372,"VillageID":1998,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":467,"CreatedAt":"2023-02-19T00:32:36Z","ServerKey":"us63"},{"ID":4373,"VillageID":7792,"NewOwnerID":848954611,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":108,"CreatedAt":"2023-02-19T00:32:56Z","ServerKey":"us63"},{"ID":4374,"VillageID":3844,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":66,"Points":2167,"CreatedAt":"2023-02-19T00:38:02Z","ServerKey":"us63"},{"ID":4375,"VillageID":5685,"NewOwnerID":787334,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-19T00:43:13Z","ServerKey":"us63"},{"ID":4376,"VillageID":1525,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":2776,"CreatedAt":"2023-02-19T00:44:45Z","ServerKey":"us63"},{"ID":4377,"VillageID":1525,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":2776,"CreatedAt":"2023-02-19T00:44:45Z","ServerKey":"us63"},{"ID":4378,"VillageID":5971,"NewOwnerID":218304,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":191,"CreatedAt":"2023-02-19T00:49:09Z","ServerKey":"us63"},{"ID":4379,"VillageID":5646,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":289,"CreatedAt":"2023-02-19T00:51:09Z","ServerKey":"us63"},{"ID":4380,"VillageID":638,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":848936921,"OldTribeID":6,"Points":7287,"CreatedAt":"2023-02-19T01:00:00Z","ServerKey":"us63"},{"ID":4381,"VillageID":1546,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":7227,"CreatedAt":"2023-02-19T01:00:00Z","ServerKey":"us63"},{"ID":4382,"VillageID":314,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":9511,"CreatedAt":"2023-02-19T01:00:00Z","ServerKey":"us63"},{"ID":4383,"VillageID":26,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":4642,"CreatedAt":"2023-02-19T01:00:07Z","ServerKey":"us63"},{"ID":4384,"VillageID":26,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":4642,"CreatedAt":"2023-02-19T01:00:07Z","ServerKey":"us63"},{"ID":4385,"VillageID":1683,"NewOwnerID":616498,"NewTribeID":48,"OldOwnerID":848936921,"OldTribeID":6,"Points":3617,"CreatedAt":"2023-02-19T01:00:07Z","ServerKey":"us63"},{"ID":4386,"VillageID":709,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-19T01:00:41Z","ServerKey":"us63"},{"ID":4387,"VillageID":763,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":848954240,"OldTribeID":6,"Points":6622,"CreatedAt":"2023-02-19T01:00:46Z","ServerKey":"us63"},{"ID":4388,"VillageID":908,"NewOwnerID":782308,"NewTribeID":76,"OldOwnerID":771856,"OldTribeID":42,"Points":10755,"CreatedAt":"2023-02-19T01:03:04Z","ServerKey":"us63"},{"ID":4389,"VillageID":662,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":357,"CreatedAt":"2023-02-19T01:03:11Z","ServerKey":"us63"},{"ID":4390,"VillageID":1473,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":246,"CreatedAt":"2023-02-19T01:09:00Z","ServerKey":"us63"},{"ID":4391,"VillageID":7736,"NewOwnerID":848949252,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-19T01:14:00Z","ServerKey":"us63"},{"ID":4392,"VillageID":1274,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":766625,"OldTribeID":6,"Points":374,"CreatedAt":"2023-02-19T01:15:50Z","ServerKey":"us63"},{"ID":4393,"VillageID":1289,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3697,"CreatedAt":"2023-02-19T01:20:29Z","ServerKey":"us63"},{"ID":4394,"VillageID":633,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":6614,"CreatedAt":"2023-02-19T01:29:15Z","ServerKey":"us63"},{"ID":4395,"VillageID":5770,"NewOwnerID":714184,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":321,"CreatedAt":"2023-02-19T01:31:11Z","ServerKey":"us63"},{"ID":4396,"VillageID":5555,"NewOwnerID":848953197,"NewTribeID":53,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-19T01:38:01Z","ServerKey":"us63"},{"ID":4397,"VillageID":4907,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":260,"CreatedAt":"2023-02-19T01:39:02Z","ServerKey":"us63"},{"ID":4398,"VillageID":3480,"NewOwnerID":442099,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-19T01:54:15Z","ServerKey":"us63"},{"ID":4399,"VillageID":1964,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-19T01:56:10Z","ServerKey":"us63"},{"ID":4400,"VillageID":5137,"NewOwnerID":374049,"NewTribeID":183,"OldOwnerID":0,"OldTribeID":0,"Points":292,"CreatedAt":"2023-02-19T02:01:55Z","ServerKey":"us63"},{"ID":4401,"VillageID":2809,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":452,"CreatedAt":"2023-02-19T02:04:29Z","ServerKey":"us63"},{"ID":4402,"VillageID":5915,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":1483,"CreatedAt":"2023-02-19T02:04:53Z","ServerKey":"us63"},{"ID":4403,"VillageID":6744,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-19T02:09:22Z","ServerKey":"us63"},{"ID":4404,"VillageID":7387,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":141,"CreatedAt":"2023-02-19T02:26:23Z","ServerKey":"us63"},{"ID":4405,"VillageID":603,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":258,"CreatedAt":"2023-02-19T02:26:32Z","ServerKey":"us63"},{"ID":4406,"VillageID":4549,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":7536,"OldTribeID":119,"Points":1577,"CreatedAt":"2023-02-19T02:26:55Z","ServerKey":"us63"},{"ID":4407,"VillageID":2735,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":458,"CreatedAt":"2023-02-19T02:31:29Z","ServerKey":"us63"},{"ID":4408,"VillageID":5894,"NewOwnerID":848954015,"NewTribeID":2,"OldOwnerID":848953992,"OldTribeID":0,"Points":1598,"CreatedAt":"2023-02-19T02:32:23Z","ServerKey":"us63"},{"ID":4409,"VillageID":2517,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-19T02:34:07Z","ServerKey":"us63"},{"ID":4410,"VillageID":6100,"NewOwnerID":848954196,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":214,"CreatedAt":"2023-02-19T02:37:08Z","ServerKey":"us63"},{"ID":4411,"VillageID":2116,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-19T02:48:28Z","ServerKey":"us63"},{"ID":4412,"VillageID":874,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848954240,"OldTribeID":6,"Points":506,"CreatedAt":"2023-02-19T02:48:30Z","ServerKey":"us63"},{"ID":4413,"VillageID":2551,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":435,"CreatedAt":"2023-02-19T02:48:37Z","ServerKey":"us63"},{"ID":4414,"VillageID":3299,"NewOwnerID":848881027,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":437,"CreatedAt":"2023-02-19T02:50:26Z","ServerKey":"us63"},{"ID":4415,"VillageID":2828,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-19T02:53:29Z","ServerKey":"us63"},{"ID":4416,"VillageID":6470,"NewOwnerID":848954814,"NewTribeID":210,"OldOwnerID":0,"OldTribeID":0,"Points":397,"CreatedAt":"2023-02-19T02:53:57Z","ServerKey":"us63"},{"ID":4417,"VillageID":7727,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":751295,"OldTribeID":0,"Points":2883,"CreatedAt":"2023-02-19T02:54:54Z","ServerKey":"us63"},{"ID":4418,"VillageID":1585,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":494,"CreatedAt":"2023-02-19T02:58:29Z","ServerKey":"us63"},{"ID":4419,"VillageID":4667,"NewOwnerID":848955001,"NewTribeID":169,"OldOwnerID":0,"OldTribeID":0,"Points":275,"CreatedAt":"2023-02-19T03:03:12Z","ServerKey":"us63"},{"ID":4420,"VillageID":5728,"NewOwnerID":848949344,"NewTribeID":42,"OldOwnerID":0,"OldTribeID":0,"Points":183,"CreatedAt":"2023-02-19T03:27:06Z","ServerKey":"us63"},{"ID":4421,"VillageID":1048,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3075,"CreatedAt":"2023-02-19T03:28:58Z","ServerKey":"us63"},{"ID":4422,"VillageID":1648,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":1231,"CreatedAt":"2023-02-19T03:31:08Z","ServerKey":"us63"},{"ID":4423,"VillageID":224,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-19T03:43:19Z","ServerKey":"us63"},{"ID":4424,"VillageID":4699,"NewOwnerID":848954854,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-19T03:49:22Z","ServerKey":"us63"},{"ID":4425,"VillageID":634,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":7570,"CreatedAt":"2023-02-19T04:00:45Z","ServerKey":"us63"},{"ID":4426,"VillageID":846,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-19T04:16:27Z","ServerKey":"us63"},{"ID":4427,"VillageID":2085,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":268,"CreatedAt":"2023-02-19T04:19:51Z","ServerKey":"us63"},{"ID":4428,"VillageID":1481,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848954240,"OldTribeID":6,"Points":1720,"CreatedAt":"2023-02-19T04:21:14Z","ServerKey":"us63"},{"ID":4429,"VillageID":1481,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848914361,"OldTribeID":20,"Points":1720,"CreatedAt":"2023-02-19T04:21:14Z","ServerKey":"us63"},{"ID":4430,"VillageID":1599,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848954240,"OldTribeID":6,"Points":2974,"CreatedAt":"2023-02-19T04:38:03Z","ServerKey":"us63"},{"ID":4431,"VillageID":862,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-19T04:39:35Z","ServerKey":"us63"},{"ID":4432,"VillageID":9148,"NewOwnerID":848941179,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":60,"CreatedAt":"2023-02-19T04:48:51Z","ServerKey":"us63"},{"ID":4433,"VillageID":8013,"NewOwnerID":848953907,"NewTribeID":187,"OldOwnerID":848947609,"OldTribeID":47,"Points":233,"CreatedAt":"2023-02-19T04:49:47Z","ServerKey":"us63"},{"ID":4434,"VillageID":430,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-19T04:52:10Z","ServerKey":"us63"},{"ID":4435,"VillageID":38,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":8189,"CreatedAt":"2023-02-19T04:54:22Z","ServerKey":"us63"},{"ID":4436,"VillageID":4602,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":3707,"CreatedAt":"2023-02-19T04:59:59Z","ServerKey":"us63"},{"ID":4437,"VillageID":990,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":3390,"CreatedAt":"2023-02-19T05:00:33Z","ServerKey":"us63"},{"ID":4438,"VillageID":9465,"NewOwnerID":848953915,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":51,"CreatedAt":"2023-02-19T05:04:45Z","ServerKey":"us63"},{"ID":4439,"VillageID":7711,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":123,"CreatedAt":"2023-02-19T05:13:19Z","ServerKey":"us63"},{"ID":4440,"VillageID":7926,"NewOwnerID":282832,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-19T05:18:06Z","ServerKey":"us63"},{"ID":4441,"VillageID":2892,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-19T05:23:54Z","ServerKey":"us63"},{"ID":4442,"VillageID":1923,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-19T05:24:42Z","ServerKey":"us63"},{"ID":4443,"VillageID":1462,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-19T05:34:35Z","ServerKey":"us63"},{"ID":4444,"VillageID":1842,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":401,"CreatedAt":"2023-02-19T05:42:45Z","ServerKey":"us63"},{"ID":4445,"VillageID":1911,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-19T05:45:08Z","ServerKey":"us63"},{"ID":4446,"VillageID":4950,"NewOwnerID":604194,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-19T05:49:10Z","ServerKey":"us63"},{"ID":4447,"VillageID":784,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":498,"CreatedAt":"2023-02-19T06:03:29Z","ServerKey":"us63"},{"ID":4448,"VillageID":8565,"NewOwnerID":780485,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":98,"CreatedAt":"2023-02-19T06:29:35Z","ServerKey":"us63"},{"ID":4449,"VillageID":7054,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":207,"CreatedAt":"2023-02-19T06:29:39Z","ServerKey":"us63"},{"ID":4450,"VillageID":251,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":418,"CreatedAt":"2023-02-19T06:43:59Z","ServerKey":"us63"},{"ID":4451,"VillageID":4165,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-19T06:52:57Z","ServerKey":"us63"},{"ID":4452,"VillageID":6018,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":223,"CreatedAt":"2023-02-19T07:02:23Z","ServerKey":"us63"},{"ID":4453,"VillageID":1116,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":342,"CreatedAt":"2023-02-19T07:07:21Z","ServerKey":"us63"},{"ID":4454,"VillageID":1116,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":848880663,"OldTribeID":138,"Points":342,"CreatedAt":"2023-02-19T07:07:21Z","ServerKey":"us63"},{"ID":4455,"VillageID":4350,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":438,"CreatedAt":"2023-02-19T07:12:55Z","ServerKey":"us63"},{"ID":4456,"VillageID":4350,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":438,"CreatedAt":"2023-02-19T07:12:55Z","ServerKey":"us63"},{"ID":4457,"VillageID":5745,"NewOwnerID":848954810,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":206,"CreatedAt":"2023-02-19T07:21:11Z","ServerKey":"us63"},{"ID":4458,"VillageID":1196,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-19T07:24:41Z","ServerKey":"us63"},{"ID":4459,"VillageID":5237,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-19T07:27:10Z","ServerKey":"us63"},{"ID":4460,"VillageID":2216,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":386,"CreatedAt":"2023-02-19T07:42:02Z","ServerKey":"us63"},{"ID":4461,"VillageID":3371,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-19T08:18:16Z","ServerKey":"us63"},{"ID":4462,"VillageID":6230,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":605760,"OldTribeID":0,"Points":2142,"CreatedAt":"2023-02-19T08:20:58Z","ServerKey":"us63"},{"ID":4463,"VillageID":920,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-19T08:29:59Z","ServerKey":"us63"},{"ID":4464,"VillageID":4602,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":848953039,"OldTribeID":85,"Points":3736,"CreatedAt":"2023-02-19T08:37:07Z","ServerKey":"us63"},{"ID":4465,"VillageID":818,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-19T08:43:43Z","ServerKey":"us63"},{"ID":4466,"VillageID":707,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-19T08:48:32Z","ServerKey":"us63"},{"ID":4467,"VillageID":3028,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":2107,"CreatedAt":"2023-02-19T09:09:24Z","ServerKey":"us63"},{"ID":4468,"VillageID":10157,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-19T09:11:06Z","ServerKey":"us63"},{"ID":4469,"VillageID":850,"NewOwnerID":848951549,"NewTribeID":20,"OldOwnerID":848953670,"OldTribeID":0,"Points":4659,"CreatedAt":"2023-02-19T09:18:26Z","ServerKey":"us63"},{"ID":4470,"VillageID":6499,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":194,"CreatedAt":"2023-02-19T09:33:00Z","ServerKey":"us63"},{"ID":4471,"VillageID":1215,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":3171,"CreatedAt":"2023-02-19T09:40:00Z","ServerKey":"us63"},{"ID":4472,"VillageID":990,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":572558,"OldTribeID":48,"Points":3424,"CreatedAt":"2023-02-19T09:49:03Z","ServerKey":"us63"},{"ID":4473,"VillageID":990,"NewOwnerID":848936926,"NewTribeID":6,"OldOwnerID":848936926,"OldTribeID":6,"Points":3424,"CreatedAt":"2023-02-19T09:49:03Z","ServerKey":"us63"},{"ID":4474,"VillageID":1258,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":373,"CreatedAt":"2023-02-19T09:55:20Z","ServerKey":"us63"},{"ID":4475,"VillageID":3627,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-19T09:57:30Z","ServerKey":"us63"},{"ID":4476,"VillageID":207,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":290,"CreatedAt":"2023-02-19T10:04:24Z","ServerKey":"us63"},{"ID":4477,"VillageID":7669,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848955348,"OldTribeID":209,"Points":3581,"CreatedAt":"2023-02-19T10:05:01Z","ServerKey":"us63"},{"ID":4478,"VillageID":8367,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848955348,"OldTribeID":209,"Points":6303,"CreatedAt":"2023-02-19T10:05:03Z","ServerKey":"us63"},{"ID":4479,"VillageID":8367,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848940894,"OldTribeID":11,"Points":6303,"CreatedAt":"2023-02-19T10:05:03Z","ServerKey":"us63"},{"ID":4480,"VillageID":1623,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":350,"CreatedAt":"2023-02-19T10:06:04Z","ServerKey":"us63"},{"ID":4481,"VillageID":1686,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":638,"CreatedAt":"2023-02-19T10:06:53Z","ServerKey":"us63"},{"ID":4482,"VillageID":889,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":479,"CreatedAt":"2023-02-19T10:09:42Z","ServerKey":"us63"},{"ID":4483,"VillageID":7977,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":127,"CreatedAt":"2023-02-19T10:11:01Z","ServerKey":"us63"},{"ID":4484,"VillageID":945,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":1850,"CreatedAt":"2023-02-19T10:15:10Z","ServerKey":"us63"},{"ID":4485,"VillageID":5126,"NewOwnerID":653971,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":256,"CreatedAt":"2023-02-19T10:20:36Z","ServerKey":"us63"},{"ID":4486,"VillageID":1914,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-19T10:36:53Z","ServerKey":"us63"},{"ID":4487,"VillageID":1730,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":4951,"CreatedAt":"2023-02-19T10:46:51Z","ServerKey":"us63"},{"ID":4488,"VillageID":1730,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":4951,"CreatedAt":"2023-02-19T10:46:51Z","ServerKey":"us63"},{"ID":4489,"VillageID":3722,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-19T11:04:48Z","ServerKey":"us63"},{"ID":4490,"VillageID":4403,"NewOwnerID":848954006,"NewTribeID":2,"OldOwnerID":775955,"OldTribeID":227,"Points":10125,"CreatedAt":"2023-02-19T11:20:21Z","ServerKey":"us63"},{"ID":4491,"VillageID":8076,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":109,"CreatedAt":"2023-02-19T11:27:51Z","ServerKey":"us63"},{"ID":4492,"VillageID":990,"NewOwnerID":572558,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":3366,"CreatedAt":"2023-02-19T11:34:12Z","ServerKey":"us63"},{"ID":4493,"VillageID":8386,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-19T11:40:19Z","ServerKey":"us63"},{"ID":4494,"VillageID":369,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":8783,"CreatedAt":"2023-02-19T11:41:25Z","ServerKey":"us63"},{"ID":4495,"VillageID":2774,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":363,"CreatedAt":"2023-02-19T11:46:47Z","ServerKey":"us63"},{"ID":4496,"VillageID":333,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":297,"CreatedAt":"2023-02-19T11:46:57Z","ServerKey":"us63"},{"ID":4497,"VillageID":515,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":2105,"CreatedAt":"2023-02-19T11:49:04Z","ServerKey":"us63"},{"ID":4498,"VillageID":5185,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-19T11:49:05Z","ServerKey":"us63"},{"ID":4499,"VillageID":2439,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":450,"CreatedAt":"2023-02-19T11:53:11Z","ServerKey":"us63"},{"ID":4500,"VillageID":2984,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":451,"CreatedAt":"2023-02-19T11:54:19Z","ServerKey":"us63"},{"ID":4501,"VillageID":4340,"NewOwnerID":848951308,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":3835,"CreatedAt":"2023-02-19T12:03:48Z","ServerKey":"us63"},{"ID":4502,"VillageID":4519,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":848953962,"OldTribeID":2,"Points":4935,"CreatedAt":"2023-02-19T12:07:57Z","ServerKey":"us63"},{"ID":4503,"VillageID":5462,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-19T12:20:52Z","ServerKey":"us63"},{"ID":4504,"VillageID":3028,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":2117,"CreatedAt":"2023-02-19T12:39:06Z","ServerKey":"us63"},{"ID":4505,"VillageID":1452,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":429,"CreatedAt":"2023-02-19T12:50:04Z","ServerKey":"us63"},{"ID":4506,"VillageID":7971,"NewOwnerID":153367,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":205,"CreatedAt":"2023-02-19T13:01:04Z","ServerKey":"us63"},{"ID":4507,"VillageID":8123,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":116,"CreatedAt":"2023-02-19T13:01:46Z","ServerKey":"us63"},{"ID":4508,"VillageID":1613,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":298,"CreatedAt":"2023-02-19T13:10:40Z","ServerKey":"us63"},{"ID":4509,"VillageID":750,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":2291,"CreatedAt":"2023-02-19T13:14:51Z","ServerKey":"us63"},{"ID":4510,"VillageID":6016,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":3830,"CreatedAt":"2023-02-19T13:19:10Z","ServerKey":"us63"},{"ID":4511,"VillageID":6611,"NewOwnerID":568,"NewTribeID":32,"OldOwnerID":0,"OldTribeID":0,"Points":162,"CreatedAt":"2023-02-19T13:38:31Z","ServerKey":"us63"},{"ID":4512,"VillageID":7595,"NewOwnerID":848955238,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-19T13:41:43Z","ServerKey":"us63"},{"ID":4513,"VillageID":5911,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":263,"CreatedAt":"2023-02-19T13:53:06Z","ServerKey":"us63"},{"ID":4514,"VillageID":4781,"NewOwnerID":848954131,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":288,"CreatedAt":"2023-02-19T14:00:17Z","ServerKey":"us63"},{"ID":4515,"VillageID":3182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-19T14:09:35Z","ServerKey":"us63"},{"ID":4516,"VillageID":3103,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":405,"CreatedAt":"2023-02-19T14:09:57Z","ServerKey":"us63"},{"ID":4517,"VillageID":8633,"NewOwnerID":749328,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":68,"CreatedAt":"2023-02-19T14:15:46Z","ServerKey":"us63"},{"ID":4518,"VillageID":4261,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-19T14:28:54Z","ServerKey":"us63"},{"ID":4519,"VillageID":82,"NewOwnerID":848881759,"NewTribeID":183,"OldOwnerID":554600,"OldTribeID":240,"Points":1035,"CreatedAt":"2023-02-19T14:32:51Z","ServerKey":"us63"},{"ID":4520,"VillageID":3003,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-19T14:41:45Z","ServerKey":"us63"},{"ID":4521,"VillageID":1509,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":355,"CreatedAt":"2023-02-19T14:42:25Z","ServerKey":"us63"},{"ID":4522,"VillageID":8817,"NewOwnerID":769781,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-19T14:44:07Z","ServerKey":"us63"},{"ID":4523,"VillageID":4261,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":796360,"OldTribeID":138,"Points":255,"CreatedAt":"2023-02-19T15:03:16Z","ServerKey":"us63"},{"ID":4524,"VillageID":548,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":449,"CreatedAt":"2023-02-19T15:16:16Z","ServerKey":"us63"},{"ID":4525,"VillageID":4267,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":199,"CreatedAt":"2023-02-19T15:18:11Z","ServerKey":"us63"},{"ID":4526,"VillageID":290,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-19T15:24:13Z","ServerKey":"us63"},{"ID":4527,"VillageID":9981,"NewOwnerID":848953962,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":33,"CreatedAt":"2023-02-19T15:30:51Z","ServerKey":"us63"},{"ID":4528,"VillageID":8737,"NewOwnerID":848954437,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-02-19T15:35:15Z","ServerKey":"us63"},{"ID":4529,"VillageID":4042,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-19T15:48:58Z","ServerKey":"us63"},{"ID":4530,"VillageID":7653,"NewOwnerID":848910736,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-19T15:49:20Z","ServerKey":"us63"},{"ID":4531,"VillageID":2334,"NewOwnerID":785871,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":252,"CreatedAt":"2023-02-19T15:49:38Z","ServerKey":"us63"},{"ID":4532,"VillageID":2413,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":428,"CreatedAt":"2023-02-19T15:54:18Z","ServerKey":"us63"},{"ID":4533,"VillageID":2005,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":404,"CreatedAt":"2023-02-19T16:04:05Z","ServerKey":"us63"},{"ID":4534,"VillageID":5409,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":1034,"CreatedAt":"2023-02-19T16:08:10Z","ServerKey":"us63"},{"ID":4535,"VillageID":5409,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":848953068,"OldTribeID":85,"Points":1034,"CreatedAt":"2023-02-19T16:08:10Z","ServerKey":"us63"},{"ID":4537,"VillageID":4360,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":255,"CreatedAt":"2023-02-19T16:10:18Z","ServerKey":"us63"},{"ID":4538,"VillageID":8448,"NewOwnerID":848954218,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":89,"CreatedAt":"2023-02-19T16:15:00Z","ServerKey":"us63"},{"ID":4539,"VillageID":275,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":9643,"CreatedAt":"2023-02-19T16:32:10Z","ServerKey":"us63"},{"ID":4540,"VillageID":275,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":693887,"OldTribeID":48,"Points":9643,"CreatedAt":"2023-02-19T16:32:10Z","ServerKey":"us63"},{"ID":4541,"VillageID":2556,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":5140,"CreatedAt":"2023-02-19T16:37:53Z","ServerKey":"us63"},{"ID":4542,"VillageID":1103,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":358,"CreatedAt":"2023-02-19T16:39:37Z","ServerKey":"us63"},{"ID":4543,"VillageID":744,"NewOwnerID":848937811,"NewTribeID":240,"OldOwnerID":0,"OldTribeID":0,"Points":384,"CreatedAt":"2023-02-19T16:44:52Z","ServerKey":"us63"},{"ID":4544,"VillageID":750,"NewOwnerID":848953926,"NewTribeID":2,"OldOwnerID":779484,"OldTribeID":48,"Points":2346,"CreatedAt":"2023-02-19T16:53:13Z","ServerKey":"us63"},{"ID":4545,"VillageID":9673,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-19T16:58:20Z","ServerKey":"us63"},{"ID":4546,"VillageID":1599,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":848945433,"OldTribeID":138,"Points":2672,"CreatedAt":"2023-02-19T17:06:33Z","ServerKey":"us63"},{"ID":4547,"VillageID":6647,"NewOwnerID":848890745,"NewTribeID":174,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-19T17:09:06Z","ServerKey":"us63"},{"ID":4548,"VillageID":6841,"NewOwnerID":649035,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-19T17:31:10Z","ServerKey":"us63"},{"ID":4549,"VillageID":5554,"NewOwnerID":848954978,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-19T17:40:41Z","ServerKey":"us63"},{"ID":4550,"VillageID":7648,"NewOwnerID":848955388,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":150,"CreatedAt":"2023-02-19T17:44:47Z","ServerKey":"us63"},{"ID":4551,"VillageID":1375,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":3858,"CreatedAt":"2023-02-19T17:54:24Z","ServerKey":"us63"},{"ID":4552,"VillageID":5354,"NewOwnerID":848954762,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":200,"CreatedAt":"2023-02-19T17:57:40Z","ServerKey":"us63"},{"ID":4553,"VillageID":2236,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-19T18:04:26Z","ServerKey":"us63"},{"ID":4554,"VillageID":6934,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-19T18:04:40Z","ServerKey":"us63"},{"ID":4555,"VillageID":5967,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-19T18:13:34Z","ServerKey":"us63"},{"ID":4556,"VillageID":4360,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":171766,"OldTribeID":33,"Points":269,"CreatedAt":"2023-02-19T18:21:20Z","ServerKey":"us63"},{"ID":4557,"VillageID":4360,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":580805,"OldTribeID":76,"Points":269,"CreatedAt":"2023-02-19T18:21:20Z","ServerKey":"us63"},{"ID":4560,"VillageID":1833,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":6581,"CreatedAt":"2023-02-19T18:28:46Z","ServerKey":"us63"},{"ID":4561,"VillageID":1140,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":343,"CreatedAt":"2023-02-19T18:31:52Z","ServerKey":"us63"},{"ID":4562,"VillageID":2033,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":307,"CreatedAt":"2023-02-19T18:32:03Z","ServerKey":"us63"},{"ID":4563,"VillageID":1362,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":257,"CreatedAt":"2023-02-19T18:32:19Z","ServerKey":"us63"},{"ID":4564,"VillageID":1140,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":766625,"OldTribeID":6,"Points":319,"CreatedAt":"2023-02-19T18:39:47Z","ServerKey":"us63"},{"ID":4565,"VillageID":3770,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":335,"CreatedAt":"2023-02-19T18:47:01Z","ServerKey":"us63"},{"ID":4566,"VillageID":4283,"NewOwnerID":763018,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":441,"CreatedAt":"2023-02-19T18:47:13Z","ServerKey":"us63"},{"ID":4567,"VillageID":7420,"NewOwnerID":848954607,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":160,"CreatedAt":"2023-02-19T18:47:35Z","ServerKey":"us63"},{"ID":4568,"VillageID":909,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":373,"CreatedAt":"2023-02-19T18:48:22Z","ServerKey":"us63"},{"ID":4569,"VillageID":1511,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-19T18:51:27Z","ServerKey":"us63"},{"ID":4570,"VillageID":1653,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":249,"CreatedAt":"2023-02-19T18:51:36Z","ServerKey":"us63"},{"ID":4571,"VillageID":143,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":473,"CreatedAt":"2023-02-19T18:52:31Z","ServerKey":"us63"},{"ID":4572,"VillageID":1640,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":848953377,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-19T18:54:35Z","ServerKey":"us63"},{"ID":4573,"VillageID":7236,"NewOwnerID":848955388,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":139,"CreatedAt":"2023-02-19T18:55:28Z","ServerKey":"us63"},{"ID":4574,"VillageID":8412,"NewOwnerID":848941179,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":129,"CreatedAt":"2023-02-19T19:01:36Z","ServerKey":"us63"},{"ID":4575,"VillageID":1765,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":329,"CreatedAt":"2023-02-19T19:07:04Z","ServerKey":"us63"},{"ID":4576,"VillageID":3533,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":188,"CreatedAt":"2023-02-19T19:11:14Z","ServerKey":"us63"},{"ID":4577,"VillageID":6237,"NewOwnerID":218304,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-19T19:12:56Z","ServerKey":"us63"},{"ID":4578,"VillageID":1051,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":489,"CreatedAt":"2023-02-19T19:54:32Z","ServerKey":"us63"},{"ID":4579,"VillageID":1738,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-19T19:56:30Z","ServerKey":"us63"},{"ID":4580,"VillageID":453,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":453,"CreatedAt":"2023-02-19T19:57:34Z","ServerKey":"us63"},{"ID":4581,"VillageID":2728,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-19T20:01:52Z","ServerKey":"us63"},{"ID":4582,"VillageID":3862,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":325,"CreatedAt":"2023-02-19T20:06:18Z","ServerKey":"us63"},{"ID":4583,"VillageID":1926,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":397,"CreatedAt":"2023-02-19T20:10:10Z","ServerKey":"us63"},{"ID":4584,"VillageID":3144,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-19T20:16:57Z","ServerKey":"us63"},{"ID":4585,"VillageID":8353,"NewOwnerID":848955149,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":1655,"CreatedAt":"2023-02-19T20:24:57Z","ServerKey":"us63"},{"ID":4586,"VillageID":2838,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-19T20:34:02Z","ServerKey":"us63"},{"ID":4587,"VillageID":3676,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-19T20:37:31Z","ServerKey":"us63"},{"ID":4588,"VillageID":9003,"NewOwnerID":848941179,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-19T20:40:12Z","ServerKey":"us63"},{"ID":4589,"VillageID":6142,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-19T20:42:30Z","ServerKey":"us63"},{"ID":4590,"VillageID":5031,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":232,"CreatedAt":"2023-02-19T20:55:53Z","ServerKey":"us63"},{"ID":4591,"VillageID":187,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":424,"CreatedAt":"2023-02-19T20:56:18Z","ServerKey":"us63"},{"ID":4592,"VillageID":3049,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-19T21:00:29Z","ServerKey":"us63"},{"ID":4593,"VillageID":2560,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-19T21:02:02Z","ServerKey":"us63"},{"ID":4594,"VillageID":9045,"NewOwnerID":787586,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":94,"CreatedAt":"2023-02-19T21:11:29Z","ServerKey":"us63"},{"ID":4595,"VillageID":4779,"NewOwnerID":848952450,"NewTribeID":74,"OldOwnerID":848951609,"OldTribeID":42,"Points":4377,"CreatedAt":"2023-02-19T21:15:00Z","ServerKey":"us63"},{"ID":4596,"VillageID":1875,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":376,"CreatedAt":"2023-02-19T21:17:29Z","ServerKey":"us63"},{"ID":4597,"VillageID":8613,"NewOwnerID":848954170,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":97,"CreatedAt":"2023-02-19T21:20:44Z","ServerKey":"us63"},{"ID":4598,"VillageID":9780,"NewOwnerID":757723,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":39,"CreatedAt":"2023-02-19T21:22:05Z","ServerKey":"us63"},{"ID":4599,"VillageID":1290,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":425,"CreatedAt":"2023-02-19T21:22:41Z","ServerKey":"us63"},{"ID":4600,"VillageID":4669,"NewOwnerID":272255,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":251,"CreatedAt":"2023-02-19T21:36:02Z","ServerKey":"us63"},{"ID":4601,"VillageID":4572,"NewOwnerID":848938594,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-19T21:48:19Z","ServerKey":"us63"},{"ID":4602,"VillageID":9096,"NewOwnerID":848955412,"NewTribeID":198,"OldOwnerID":848945039,"OldTribeID":104,"Points":1205,"CreatedAt":"2023-02-19T21:49:03Z","ServerKey":"us63"},{"ID":4603,"VillageID":3683,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-19T22:08:13Z","ServerKey":"us63"},{"ID":4604,"VillageID":1465,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":456,"CreatedAt":"2023-02-19T22:09:47Z","ServerKey":"us63"},{"ID":4605,"VillageID":10219,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-19T22:19:08Z","ServerKey":"us63"},{"ID":4606,"VillageID":1658,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":326,"CreatedAt":"2023-02-19T22:26:10Z","ServerKey":"us63"},{"ID":4607,"VillageID":2856,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":457,"CreatedAt":"2023-02-19T22:27:31Z","ServerKey":"us63"},{"ID":4608,"VillageID":5453,"NewOwnerID":848954322,"NewTribeID":2,"OldOwnerID":848953197,"OldTribeID":53,"Points":3385,"CreatedAt":"2023-02-19T22:29:51Z","ServerKey":"us63"},{"ID":4609,"VillageID":2616,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":437,"CreatedAt":"2023-02-19T22:34:07Z","ServerKey":"us63"},{"ID":4610,"VillageID":2742,"NewOwnerID":780947,"NewTribeID":3,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-19T22:36:28Z","ServerKey":"us63"},{"ID":4611,"VillageID":1437,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":376,"CreatedAt":"2023-02-19T22:37:23Z","ServerKey":"us63"},{"ID":4612,"VillageID":1900,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":419,"CreatedAt":"2023-02-19T22:39:41Z","ServerKey":"us63"},{"ID":4613,"VillageID":3634,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-19T22:52:47Z","ServerKey":"us63"},{"ID":4614,"VillageID":1629,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":6174,"CreatedAt":"2023-02-19T22:55:44Z","ServerKey":"us63"},{"ID":4615,"VillageID":1629,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":779484,"OldTribeID":48,"Points":6174,"CreatedAt":"2023-02-19T22:55:44Z","ServerKey":"us63"},{"ID":4616,"VillageID":1266,"NewOwnerID":463920,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":359,"CreatedAt":"2023-02-19T22:57:00Z","ServerKey":"us63"},{"ID":4617,"VillageID":10301,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-19T22:58:12Z","ServerKey":"us63"},{"ID":4618,"VillageID":9723,"NewOwnerID":848942053,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":49,"CreatedAt":"2023-02-19T23:01:49Z","ServerKey":"us63"},{"ID":4619,"VillageID":2363,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":581,"CreatedAt":"2023-02-19T23:02:50Z","ServerKey":"us63"},{"ID":4620,"VillageID":951,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-19T23:02:56Z","ServerKey":"us63"},{"ID":4621,"VillageID":2490,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-19T23:06:06Z","ServerKey":"us63"},{"ID":4622,"VillageID":9426,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":78,"CreatedAt":"2023-02-19T23:09:04Z","ServerKey":"us63"},{"ID":4623,"VillageID":2069,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":477,"CreatedAt":"2023-02-19T23:12:39Z","ServerKey":"us63"},{"ID":4624,"VillageID":2385,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":831,"CreatedAt":"2023-02-19T23:28:34Z","ServerKey":"us63"},{"ID":4625,"VillageID":324,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":848936929,"OldTribeID":6,"Points":3353,"CreatedAt":"2023-02-19T23:29:37Z","ServerKey":"us63"},{"ID":4626,"VillageID":4504,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-19T23:38:48Z","ServerKey":"us63"},{"ID":4627,"VillageID":1123,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":636,"CreatedAt":"2023-02-19T23:42:10Z","ServerKey":"us63"},{"ID":4628,"VillageID":2616,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":796360,"OldTribeID":138,"Points":437,"CreatedAt":"2023-02-19T23:50:23Z","ServerKey":"us63"},{"ID":4629,"VillageID":2616,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":848943092,"OldTribeID":20,"Points":437,"CreatedAt":"2023-02-19T23:50:23Z","ServerKey":"us63"},{"ID":4630,"VillageID":3846,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-19T23:53:47Z","ServerKey":"us63"},{"ID":4631,"VillageID":1744,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-19T23:54:41Z","ServerKey":"us63"},{"ID":4632,"VillageID":5453,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":848954322,"OldTribeID":2,"Points":3409,"CreatedAt":"2023-02-19T23:56:37Z","ServerKey":"us63"},{"ID":4633,"VillageID":4091,"NewOwnerID":848945162,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-19T23:57:12Z","ServerKey":"us63"},{"ID":4634,"VillageID":2446,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":402,"CreatedAt":"2023-02-20T00:25:30Z","ServerKey":"us63"},{"ID":4635,"VillageID":2408,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":338,"CreatedAt":"2023-02-20T00:29:48Z","ServerKey":"us63"},{"ID":4636,"VillageID":8173,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":751295,"OldTribeID":0,"Points":669,"CreatedAt":"2023-02-20T00:48:49Z","ServerKey":"us63"},{"ID":4637,"VillageID":937,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":333,"CreatedAt":"2023-02-20T00:49:45Z","ServerKey":"us63"},{"ID":4638,"VillageID":937,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":213,"OldTribeID":6,"Points":333,"CreatedAt":"2023-02-20T00:49:45Z","ServerKey":"us63"},{"ID":4639,"VillageID":2160,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-20T00:51:46Z","ServerKey":"us63"},{"ID":4640,"VillageID":1421,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":817,"CreatedAt":"2023-02-20T00:53:02Z","ServerKey":"us63"},{"ID":4641,"VillageID":4253,"NewOwnerID":848954854,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":286,"CreatedAt":"2023-02-20T00:55:27Z","ServerKey":"us63"},{"ID":4642,"VillageID":7013,"NewOwnerID":848934831,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":168,"CreatedAt":"2023-02-20T00:59:17Z","ServerKey":"us63"},{"ID":4643,"VillageID":6286,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-20T01:01:10Z","ServerKey":"us63"},{"ID":4644,"VillageID":7603,"NewOwnerID":848955311,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":193,"CreatedAt":"2023-02-20T01:11:02Z","ServerKey":"us63"},{"ID":4645,"VillageID":2785,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":2254,"CreatedAt":"2023-02-20T01:21:22Z","ServerKey":"us63"},{"ID":4646,"VillageID":1449,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":410,"CreatedAt":"2023-02-20T01:24:02Z","ServerKey":"us63"},{"ID":4647,"VillageID":6523,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":179,"CreatedAt":"2023-02-20T01:39:10Z","ServerKey":"us63"},{"ID":4648,"VillageID":6111,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":171,"CreatedAt":"2023-02-20T01:40:26Z","ServerKey":"us63"},{"ID":4649,"VillageID":7446,"NewOwnerID":848945448,"NewTribeID":0,"OldOwnerID":848951588,"OldTribeID":187,"Points":2135,"CreatedAt":"2023-02-20T01:58:59Z","ServerKey":"us63"},{"ID":4650,"VillageID":405,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-20T02:01:23Z","ServerKey":"us63"},{"ID":4651,"VillageID":2338,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":952,"CreatedAt":"2023-02-20T02:13:57Z","ServerKey":"us63"},{"ID":4652,"VillageID":7954,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":131,"CreatedAt":"2023-02-20T02:14:15Z","ServerKey":"us63"},{"ID":4653,"VillageID":10065,"NewOwnerID":325451,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":43,"CreatedAt":"2023-02-20T02:16:31Z","ServerKey":"us63"},{"ID":4654,"VillageID":1821,"NewOwnerID":459451,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-20T02:17:21Z","ServerKey":"us63"},{"ID":4655,"VillageID":1821,"NewOwnerID":459451,"NewTribeID":0,"OldOwnerID":459451,"OldTribeID":0,"Points":346,"CreatedAt":"2023-02-20T02:17:21Z","ServerKey":"us63"},{"ID":4656,"VillageID":7939,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":197,"CreatedAt":"2023-02-20T02:21:00Z","ServerKey":"us63"},{"ID":4657,"VillageID":2509,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":452,"CreatedAt":"2023-02-20T02:24:21Z","ServerKey":"us63"},{"ID":4658,"VillageID":4091,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":848945162,"OldTribeID":33,"Points":338,"CreatedAt":"2023-02-20T02:26:25Z","ServerKey":"us63"},{"ID":4659,"VillageID":8861,"NewOwnerID":848941179,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":82,"CreatedAt":"2023-02-20T02:27:02Z","ServerKey":"us63"},{"ID":4660,"VillageID":2500,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-20T02:35:28Z","ServerKey":"us63"},{"ID":4661,"VillageID":8965,"NewOwnerID":848955400,"NewTribeID":162,"OldOwnerID":0,"OldTribeID":0,"Points":119,"CreatedAt":"2023-02-20T02:45:22Z","ServerKey":"us63"},{"ID":4662,"VillageID":8341,"NewOwnerID":848955008,"NewTribeID":152,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-20T02:46:26Z","ServerKey":"us63"},{"ID":4663,"VillageID":1435,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-20T02:51:41Z","ServerKey":"us63"},{"ID":4664,"VillageID":2199,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-20T02:55:21Z","ServerKey":"us63"},{"ID":4665,"VillageID":572,"NewOwnerID":779484,"NewTribeID":48,"OldOwnerID":848941831,"OldTribeID":0,"Points":10141,"CreatedAt":"2023-02-20T02:58:23Z","ServerKey":"us63"},{"ID":4666,"VillageID":2433,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":450,"CreatedAt":"2023-02-20T03:01:08Z","ServerKey":"us63"},{"ID":4667,"VillageID":1936,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":282,"CreatedAt":"2023-02-20T03:01:31Z","ServerKey":"us63"},{"ID":4668,"VillageID":8889,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-20T03:02:55Z","ServerKey":"us63"},{"ID":4669,"VillageID":1464,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":323,"CreatedAt":"2023-02-20T03:03:00Z","ServerKey":"us63"},{"ID":4670,"VillageID":7246,"NewOwnerID":848950849,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":148,"CreatedAt":"2023-02-20T03:05:56Z","ServerKey":"us63"},{"ID":4671,"VillageID":8023,"NewOwnerID":749328,"NewTribeID":187,"OldOwnerID":0,"OldTribeID":0,"Points":138,"CreatedAt":"2023-02-20T03:07:13Z","ServerKey":"us63"},{"ID":4672,"VillageID":8783,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":70,"CreatedAt":"2023-02-20T03:24:23Z","ServerKey":"us63"},{"ID":4673,"VillageID":8149,"NewOwnerID":848955129,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":92,"CreatedAt":"2023-02-20T03:28:34Z","ServerKey":"us63"},{"ID":4674,"VillageID":2297,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":377,"CreatedAt":"2023-02-20T03:34:25Z","ServerKey":"us63"},{"ID":4675,"VillageID":4494,"NewOwnerID":351605,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":317,"CreatedAt":"2023-02-20T03:41:03Z","ServerKey":"us63"},{"ID":4676,"VillageID":2883,"NewOwnerID":693802,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":415,"CreatedAt":"2023-02-20T03:41:43Z","ServerKey":"us63"},{"ID":4677,"VillageID":2864,"NewOwnerID":848953401,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":592,"CreatedAt":"2023-02-20T03:42:56Z","ServerKey":"us63"},{"ID":4678,"VillageID":5636,"NewOwnerID":714184,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":157,"CreatedAt":"2023-02-20T03:46:12Z","ServerKey":"us63"},{"ID":4679,"VillageID":610,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":401,"CreatedAt":"2023-02-20T03:49:48Z","ServerKey":"us63"},{"ID":4680,"VillageID":7836,"NewOwnerID":270197,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":152,"CreatedAt":"2023-02-20T03:51:16Z","ServerKey":"us63"},{"ID":4681,"VillageID":2208,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-20T03:52:46Z","ServerKey":"us63"},{"ID":4682,"VillageID":3533,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":848945162,"OldTribeID":33,"Points":231,"CreatedAt":"2023-02-20T04:01:51Z","ServerKey":"us63"},{"ID":4683,"VillageID":22,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":313,"CreatedAt":"2023-02-20T04:11:54Z","ServerKey":"us63"},{"ID":4684,"VillageID":2616,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":848943092,"OldTribeID":20,"Points":437,"CreatedAt":"2023-02-20T04:13:08Z","ServerKey":"us63"},{"ID":4685,"VillageID":1218,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":296,"CreatedAt":"2023-02-20T04:16:05Z","ServerKey":"us63"},{"ID":4686,"VillageID":1554,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":848936926,"OldTribeID":6,"Points":4723,"CreatedAt":"2023-02-20T04:20:00Z","ServerKey":"us63"},{"ID":4687,"VillageID":1554,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":276237,"OldTribeID":48,"Points":4723,"CreatedAt":"2023-02-20T04:20:00Z","ServerKey":"us63"},{"ID":4690,"VillageID":2613,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":369,"CreatedAt":"2023-02-20T04:28:42Z","ServerKey":"us63"},{"ID":4691,"VillageID":3228,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":372,"CreatedAt":"2023-02-20T04:30:52Z","ServerKey":"us63"},{"ID":4692,"VillageID":6266,"NewOwnerID":848954266,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":308,"CreatedAt":"2023-02-20T04:34:11Z","ServerKey":"us63"},{"ID":4693,"VillageID":10356,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":32,"CreatedAt":"2023-02-20T04:42:54Z","ServerKey":"us63"},{"ID":4694,"VillageID":2990,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":408,"CreatedAt":"2023-02-20T04:43:13Z","ServerKey":"us63"},{"ID":4695,"VillageID":1248,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":294,"CreatedAt":"2023-02-20T04:44:49Z","ServerKey":"us63"},{"ID":4696,"VillageID":1248,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":398664,"OldTribeID":33,"Points":294,"CreatedAt":"2023-02-20T04:50:52Z","ServerKey":"us63"},{"ID":4697,"VillageID":2036,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":397,"CreatedAt":"2023-02-20T04:56:30Z","ServerKey":"us63"},{"ID":4698,"VillageID":2014,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":596,"CreatedAt":"2023-02-20T05:01:00Z","ServerKey":"us63"},{"ID":4699,"VillageID":1166,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":315,"CreatedAt":"2023-02-20T05:05:43Z","ServerKey":"us63"},{"ID":4700,"VillageID":6146,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":121,"CreatedAt":"2023-02-20T05:09:19Z","ServerKey":"us63"},{"ID":4701,"VillageID":2057,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":332,"CreatedAt":"2023-02-20T05:14:22Z","ServerKey":"us63"},{"ID":4702,"VillageID":7034,"NewOwnerID":848932635,"NewTribeID":198,"OldOwnerID":848955233,"OldTribeID":0,"Points":1213,"CreatedAt":"2023-02-20T05:17:29Z","ServerKey":"us63"},{"ID":4703,"VillageID":476,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":469,"CreatedAt":"2023-02-20T05:24:06Z","ServerKey":"us63"},{"ID":4704,"VillageID":6453,"NewOwnerID":568,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-20T05:48:16Z","ServerKey":"us63"},{"ID":4705,"VillageID":635,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":388,"CreatedAt":"2023-02-20T05:50:18Z","ServerKey":"us63"},{"ID":4706,"VillageID":6398,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":224,"CreatedAt":"2023-02-20T06:08:06Z","ServerKey":"us63"},{"ID":4707,"VillageID":5079,"NewOwnerID":717445,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":270,"CreatedAt":"2023-02-20T06:09:03Z","ServerKey":"us63"},{"ID":4708,"VillageID":1294,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":7972,"CreatedAt":"2023-02-20T06:14:46Z","ServerKey":"us63"},{"ID":4709,"VillageID":7605,"NewOwnerID":848955204,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-20T06:18:18Z","ServerKey":"us63"},{"ID":4710,"VillageID":2257,"NewOwnerID":848910455,"NewTribeID":91,"OldOwnerID":0,"OldTribeID":0,"Points":466,"CreatedAt":"2023-02-20T06:45:48Z","ServerKey":"us63"},{"ID":4711,"VillageID":7023,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":136,"CreatedAt":"2023-02-20T06:51:03Z","ServerKey":"us63"},{"ID":4712,"VillageID":5581,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":848954999,"OldTribeID":169,"Points":919,"CreatedAt":"2023-02-20T07:03:38Z","ServerKey":"us63"},{"ID":4713,"VillageID":5006,"NewOwnerID":676986,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":279,"CreatedAt":"2023-02-20T07:13:16Z","ServerKey":"us63"},{"ID":4714,"VillageID":6739,"NewOwnerID":848955211,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":204,"CreatedAt":"2023-02-20T07:21:51Z","ServerKey":"us63"},{"ID":4715,"VillageID":2190,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":762,"CreatedAt":"2023-02-20T07:27:26Z","ServerKey":"us63"},{"ID":4716,"VillageID":4342,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":301,"CreatedAt":"2023-02-20T07:32:40Z","ServerKey":"us63"},{"ID":4717,"VillageID":58,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-20T07:32:43Z","ServerKey":"us63"},{"ID":4718,"VillageID":58,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":848948254,"OldTribeID":6,"Points":370,"CreatedAt":"2023-02-20T07:32:43Z","ServerKey":"us63"},{"ID":4719,"VillageID":10317,"NewOwnerID":848954190,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":28,"CreatedAt":"2023-02-20T07:46:52Z","ServerKey":"us63"},{"ID":4720,"VillageID":1304,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-20T08:01:27Z","ServerKey":"us63"},{"ID":4721,"VillageID":5263,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-20T08:03:10Z","ServerKey":"us63"},{"ID":4722,"VillageID":6287,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":848951646,"OldTribeID":0,"Points":2025,"CreatedAt":"2023-02-20T08:11:21Z","ServerKey":"us63"},{"ID":4723,"VillageID":2189,"NewOwnerID":848940914,"NewTribeID":150,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-20T08:15:38Z","ServerKey":"us63"},{"ID":4724,"VillageID":641,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848953950,"OldTribeID":6,"Points":8647,"CreatedAt":"2023-02-20T08:20:27Z","ServerKey":"us63"},{"ID":4725,"VillageID":641,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":848927565,"OldTribeID":138,"Points":8647,"CreatedAt":"2023-02-20T08:20:27Z","ServerKey":"us63"},{"ID":4726,"VillageID":641,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848927565,"OldTribeID":138,"Points":8606,"CreatedAt":"2023-02-20T08:21:00Z","ServerKey":"us63"},{"ID":4727,"VillageID":6805,"NewOwnerID":264108,"NewTribeID":172,"OldOwnerID":334769,"OldTribeID":0,"Points":2364,"CreatedAt":"2023-02-20T08:21:08Z","ServerKey":"us63"},{"ID":4728,"VillageID":2597,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":706,"CreatedAt":"2023-02-20T08:21:41Z","ServerKey":"us63"},{"ID":4729,"VillageID":797,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":463,"CreatedAt":"2023-02-20T08:36:37Z","ServerKey":"us63"},{"ID":4730,"VillageID":1044,"NewOwnerID":848954597,"NewTribeID":227,"OldOwnerID":848919642,"OldTribeID":42,"Points":1538,"CreatedAt":"2023-02-20T08:36:53Z","ServerKey":"us63"},{"ID":4731,"VillageID":7506,"NewOwnerID":848949884,"NewTribeID":163,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-20T08:37:45Z","ServerKey":"us63"},{"ID":4732,"VillageID":641,"NewOwnerID":848953950,"NewTribeID":6,"OldOwnerID":848953950,"OldTribeID":6,"Points":8606,"CreatedAt":"2023-02-20T08:57:40Z","ServerKey":"us63"},{"ID":4733,"VillageID":8575,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":101,"CreatedAt":"2023-02-20T09:24:18Z","ServerKey":"us63"},{"ID":4734,"VillageID":5050,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":848954941,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-20T09:36:01Z","ServerKey":"us63"},{"ID":4735,"VillageID":5362,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":195,"CreatedAt":"2023-02-20T09:46:33Z","ServerKey":"us63"},{"ID":4736,"VillageID":194,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":302,"CreatedAt":"2023-02-20T09:47:39Z","ServerKey":"us63"},{"ID":4737,"VillageID":2013,"NewOwnerID":411608,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":467,"CreatedAt":"2023-02-20T09:54:00Z","ServerKey":"us63"},{"ID":4738,"VillageID":5629,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":230,"CreatedAt":"2023-02-20T10:16:15Z","ServerKey":"us63"},{"ID":4739,"VillageID":1639,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":779484,"OldTribeID":48,"Points":4384,"CreatedAt":"2023-02-20T10:29:56Z","ServerKey":"us63"},{"ID":4740,"VillageID":5011,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-20T10:41:55Z","ServerKey":"us63"},{"ID":4741,"VillageID":2071,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-20T10:43:08Z","ServerKey":"us63"},{"ID":4742,"VillageID":3586,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-20T10:58:49Z","ServerKey":"us63"},{"ID":4743,"VillageID":1892,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":354,"CreatedAt":"2023-02-20T11:14:14Z","ServerKey":"us63"},{"ID":4744,"VillageID":3335,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":624,"CreatedAt":"2023-02-20T11:14:45Z","ServerKey":"us63"},{"ID":4745,"VillageID":6190,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":178,"CreatedAt":"2023-02-20T11:18:16Z","ServerKey":"us63"},{"ID":4746,"VillageID":6190,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":178,"CreatedAt":"2023-02-20T11:18:16Z","ServerKey":"us63"},{"ID":4747,"VillageID":4705,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":311,"CreatedAt":"2023-02-20T11:40:59Z","ServerKey":"us63"},{"ID":4748,"VillageID":5933,"NewOwnerID":848950496,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":287,"CreatedAt":"2023-02-20T11:56:13Z","ServerKey":"us63"},{"ID":4749,"VillageID":2063,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":496,"CreatedAt":"2023-02-20T12:17:13Z","ServerKey":"us63"},{"ID":4750,"VillageID":34,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":387,"CreatedAt":"2023-02-20T12:30:38Z","ServerKey":"us63"},{"ID":4751,"VillageID":2253,"NewOwnerID":848951817,"NewTribeID":32,"OldOwnerID":848954366,"OldTribeID":0,"Points":340,"CreatedAt":"2023-02-20T12:57:35Z","ServerKey":"us63"},{"ID":4752,"VillageID":1093,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-20T12:58:18Z","ServerKey":"us63"},{"ID":4753,"VillageID":5182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":227,"CreatedAt":"2023-02-20T13:21:00Z","ServerKey":"us63"},{"ID":4754,"VillageID":515,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":779484,"OldTribeID":48,"Points":2014,"CreatedAt":"2023-02-20T13:23:22Z","ServerKey":"us63"},{"ID":4755,"VillageID":515,"NewOwnerID":509533,"NewTribeID":6,"OldOwnerID":509533,"OldTribeID":6,"Points":2014,"CreatedAt":"2023-02-20T13:23:22Z","ServerKey":"us63"},{"ID":4756,"VillageID":6411,"NewOwnerID":791583,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":180,"CreatedAt":"2023-02-20T13:29:52Z","ServerKey":"us63"},{"ID":4757,"VillageID":5182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":227,"CreatedAt":"2023-02-20T13:32:42Z","ServerKey":"us63"},{"ID":4759,"VillageID":5182,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":227,"CreatedAt":"2023-02-20T13:32:43Z","ServerKey":"us63"},{"ID":4760,"VillageID":9325,"NewOwnerID":848953915,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":77,"CreatedAt":"2023-02-20T13:34:26Z","ServerKey":"us63"},{"ID":4761,"VillageID":928,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-20T13:54:43Z","ServerKey":"us63"},{"ID":4762,"VillageID":2272,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-20T13:59:57Z","ServerKey":"us63"},{"ID":4763,"VillageID":6863,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":228,"CreatedAt":"2023-02-20T14:04:32Z","ServerKey":"us63"},{"ID":4764,"VillageID":6656,"NewOwnerID":848929352,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":156,"CreatedAt":"2023-02-20T14:06:26Z","ServerKey":"us63"},{"ID":4765,"VillageID":3757,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":398,"CreatedAt":"2023-02-20T14:09:29Z","ServerKey":"us63"},{"ID":4766,"VillageID":967,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-20T14:10:58Z","ServerKey":"us63"},{"ID":4767,"VillageID":9490,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-20T14:15:01Z","ServerKey":"us63"},{"ID":4768,"VillageID":6776,"NewOwnerID":848955081,"NewTribeID":172,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-20T14:42:36Z","ServerKey":"us63"},{"ID":4769,"VillageID":1112,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":955,"CreatedAt":"2023-02-20T14:44:28Z","ServerKey":"us63"},{"ID":4770,"VillageID":1689,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":405,"CreatedAt":"2023-02-20T14:44:34Z","ServerKey":"us63"},{"ID":4771,"VillageID":8297,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":133,"CreatedAt":"2023-02-20T14:46:26Z","ServerKey":"us63"},{"ID":4772,"VillageID":1576,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":239,"CreatedAt":"2023-02-20T14:50:05Z","ServerKey":"us63"},{"ID":4773,"VillageID":6944,"NewOwnerID":848955211,"NewTribeID":65,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-20T15:35:30Z","ServerKey":"us63"},{"ID":4774,"VillageID":9490,"NewOwnerID":848952678,"NewTribeID":219,"OldOwnerID":848952678,"OldTribeID":219,"Points":103,"CreatedAt":"2023-02-20T15:41:33Z","ServerKey":"us63"},{"ID":4775,"VillageID":5883,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":173,"CreatedAt":"2023-02-20T15:52:54Z","ServerKey":"us63"},{"ID":4776,"VillageID":8963,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":69,"CreatedAt":"2023-02-20T15:52:57Z","ServerKey":"us63"},{"ID":4777,"VillageID":3281,"NewOwnerID":848952556,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":1136,"CreatedAt":"2023-02-20T16:01:29Z","ServerKey":"us63"},{"ID":4778,"VillageID":1664,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-20T16:11:22Z","ServerKey":"us63"},{"ID":4779,"VillageID":2189,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848940914,"OldTribeID":150,"Points":511,"CreatedAt":"2023-02-20T16:14:56Z","ServerKey":"us63"},{"ID":4780,"VillageID":2189,"NewOwnerID":848945433,"NewTribeID":138,"OldOwnerID":848945433,"OldTribeID":138,"Points":511,"CreatedAt":"2023-02-20T16:14:56Z","ServerKey":"us63"},{"ID":4782,"VillageID":5179,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":848954941,"OldTribeID":35,"Points":3714,"CreatedAt":"2023-02-20T16:17:12Z","ServerKey":"us63"},{"ID":4783,"VillageID":8626,"NewOwnerID":848937255,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":85,"CreatedAt":"2023-02-20T16:24:53Z","ServerKey":"us63"},{"ID":4784,"VillageID":728,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":525,"CreatedAt":"2023-02-20T16:27:01Z","ServerKey":"us63"},{"ID":4785,"VillageID":8392,"NewOwnerID":848955519,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-20T16:28:56Z","ServerKey":"us63"},{"ID":4786,"VillageID":1394,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":3039,"CreatedAt":"2023-02-20T16:35:16Z","ServerKey":"us63"},{"ID":4787,"VillageID":1365,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-20T16:36:07Z","ServerKey":"us63"},{"ID":4788,"VillageID":1267,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":440,"CreatedAt":"2023-02-20T16:43:28Z","ServerKey":"us63"},{"ID":4789,"VillageID":72,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-20T16:49:01Z","ServerKey":"us63"},{"ID":4790,"VillageID":4673,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-20T16:50:02Z","ServerKey":"us63"},{"ID":4791,"VillageID":4359,"NewOwnerID":285101,"NewTribeID":66,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-20T16:55:35Z","ServerKey":"us63"},{"ID":4792,"VillageID":4602,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848952678,"OldTribeID":219,"Points":3844,"CreatedAt":"2023-02-20T16:59:58Z","ServerKey":"us63"},{"ID":4793,"VillageID":4602,"NewOwnerID":848953039,"NewTribeID":85,"OldOwnerID":848953039,"OldTribeID":85,"Points":3844,"CreatedAt":"2023-02-20T16:59:58Z","ServerKey":"us63"},{"ID":4794,"VillageID":927,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":153,"CreatedAt":"2023-02-20T17:06:11Z","ServerKey":"us63"},{"ID":4795,"VillageID":2421,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":349,"CreatedAt":"2023-02-20T17:08:02Z","ServerKey":"us63"},{"ID":4796,"VillageID":7424,"NewOwnerID":848955238,"NewTribeID":216,"OldOwnerID":0,"OldTribeID":0,"Points":149,"CreatedAt":"2023-02-20T17:08:53Z","ServerKey":"us63"},{"ID":4797,"VillageID":5964,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":240,"CreatedAt":"2023-02-20T17:08:56Z","ServerKey":"us63"},{"ID":4798,"VillageID":2184,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-20T17:09:58Z","ServerKey":"us63"},{"ID":4799,"VillageID":8177,"NewOwnerID":737871,"NewTribeID":11,"OldOwnerID":848904254,"OldTribeID":209,"Points":2382,"CreatedAt":"2023-02-20T17:11:26Z","ServerKey":"us63"},{"ID":4800,"VillageID":3039,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":352,"CreatedAt":"2023-02-20T17:12:40Z","ServerKey":"us63"},{"ID":4801,"VillageID":6205,"NewOwnerID":775955,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":144,"CreatedAt":"2023-02-20T17:25:08Z","ServerKey":"us63"},{"ID":4802,"VillageID":1394,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":151032,"OldTribeID":20,"Points":3015,"CreatedAt":"2023-02-20T17:30:25Z","ServerKey":"us63"},{"ID":4803,"VillageID":2158,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":425,"CreatedAt":"2023-02-20T17:40:32Z","ServerKey":"us63"},{"ID":4804,"VillageID":9885,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":41,"CreatedAt":"2023-02-20T17:59:32Z","ServerKey":"us63"},{"ID":4805,"VillageID":9885,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":781432,"OldTribeID":198,"Points":41,"CreatedAt":"2023-02-20T18:00:47Z","ServerKey":"us63"},{"ID":4806,"VillageID":6223,"NewOwnerID":693256,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":185,"CreatedAt":"2023-02-20T18:15:12Z","ServerKey":"us63"},{"ID":4807,"VillageID":4967,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":196,"CreatedAt":"2023-02-20T18:18:48Z","ServerKey":"us63"},{"ID":4808,"VillageID":9999,"NewOwnerID":848949493,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":42,"CreatedAt":"2023-02-20T18:34:37Z","ServerKey":"us63"},{"ID":4809,"VillageID":2300,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":521,"CreatedAt":"2023-02-20T18:52:58Z","ServerKey":"us63"},{"ID":4810,"VillageID":1820,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":848953950,"OldTribeID":6,"Points":7416,"CreatedAt":"2023-02-20T18:56:17Z","ServerKey":"us63"},{"ID":4811,"VillageID":2372,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-20T18:59:49Z","ServerKey":"us63"},{"ID":4812,"VillageID":3281,"NewOwnerID":848953299,"NewTribeID":32,"OldOwnerID":848952556,"OldTribeID":76,"Points":1126,"CreatedAt":"2023-02-20T19:13:21Z","ServerKey":"us63"},{"ID":4813,"VillageID":4236,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-20T19:14:07Z","ServerKey":"us63"},{"ID":4814,"VillageID":827,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-20T19:15:45Z","ServerKey":"us63"},{"ID":4815,"VillageID":261,"NewOwnerID":769838,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":436,"CreatedAt":"2023-02-20T19:28:24Z","ServerKey":"us63"},{"ID":4816,"VillageID":597,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":3417,"CreatedAt":"2023-02-20T19:47:39Z","ServerKey":"us63"},{"ID":4817,"VillageID":2207,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":434,"CreatedAt":"2023-02-20T19:47:41Z","ServerKey":"us63"},{"ID":4818,"VillageID":8682,"NewOwnerID":769781,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":118,"CreatedAt":"2023-02-20T19:54:05Z","ServerKey":"us63"},{"ID":4819,"VillageID":3744,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-20T20:00:39Z","ServerKey":"us63"},{"ID":4820,"VillageID":3068,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":541,"CreatedAt":"2023-02-20T20:03:15Z","ServerKey":"us63"},{"ID":4821,"VillageID":5583,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":291,"CreatedAt":"2023-02-20T20:05:33Z","ServerKey":"us63"},{"ID":4822,"VillageID":1538,"NewOwnerID":766625,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":667,"CreatedAt":"2023-02-20T20:08:13Z","ServerKey":"us63"},{"ID":4823,"VillageID":1306,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":210,"CreatedAt":"2023-02-20T20:13:11Z","ServerKey":"us63"},{"ID":4824,"VillageID":235,"NewOwnerID":503636,"NewTribeID":138,"OldOwnerID":755121,"OldTribeID":5,"Points":1498,"CreatedAt":"2023-02-20T20:15:55Z","ServerKey":"us63"},{"ID":4825,"VillageID":2570,"NewOwnerID":767507,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":379,"CreatedAt":"2023-02-20T20:16:06Z","ServerKey":"us63"},{"ID":4826,"VillageID":4222,"NewOwnerID":848951632,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":411,"CreatedAt":"2023-02-20T20:18:04Z","ServerKey":"us63"},{"ID":4827,"VillageID":677,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":455,"CreatedAt":"2023-02-20T20:25:02Z","ServerKey":"us63"},{"ID":4828,"VillageID":2561,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":305,"CreatedAt":"2023-02-20T20:25:30Z","ServerKey":"us63"},{"ID":4829,"VillageID":7445,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":151,"CreatedAt":"2023-02-20T20:41:29Z","ServerKey":"us63"},{"ID":4830,"VillageID":1499,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-20T20:44:48Z","ServerKey":"us63"},{"ID":4831,"VillageID":3449,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":554,"CreatedAt":"2023-02-20T20:54:45Z","ServerKey":"us63"},{"ID":4832,"VillageID":9694,"NewOwnerID":848955032,"NewTribeID":207,"OldOwnerID":848953477,"OldTribeID":229,"Points":1133,"CreatedAt":"2023-02-20T21:09:19Z","ServerKey":"us63"},{"ID":4833,"VillageID":2375,"NewOwnerID":848880663,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":396,"CreatedAt":"2023-02-20T21:11:48Z","ServerKey":"us63"},{"ID":4834,"VillageID":2095,"NewOwnerID":744645,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":378,"CreatedAt":"2023-02-20T21:30:55Z","ServerKey":"us63"},{"ID":4835,"VillageID":6036,"NewOwnerID":769092,"NewTribeID":185,"OldOwnerID":218304,"OldTribeID":0,"Points":7125,"CreatedAt":"2023-02-20T21:38:54Z","ServerKey":"us63"},{"ID":4836,"VillageID":5314,"NewOwnerID":848954140,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":341,"CreatedAt":"2023-02-20T21:41:09Z","ServerKey":"us63"},{"ID":4837,"VillageID":357,"NewOwnerID":848948254,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-20T21:45:43Z","ServerKey":"us63"},{"ID":4838,"VillageID":661,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":407,"CreatedAt":"2023-02-20T21:50:45Z","ServerKey":"us63"},{"ID":4839,"VillageID":1453,"NewOwnerID":782322,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-20T21:55:20Z","ServerKey":"us63"},{"ID":4840,"VillageID":8918,"NewOwnerID":693750,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":53,"CreatedAt":"2023-02-20T21:57:02Z","ServerKey":"us63"},{"ID":4841,"VillageID":7795,"NewOwnerID":787899,"NewTribeID":11,"OldOwnerID":0,"OldTribeID":0,"Points":113,"CreatedAt":"2023-02-20T21:57:16Z","ServerKey":"us63"},{"ID":4842,"VillageID":1605,"NewOwnerID":848951061,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":366,"CreatedAt":"2023-02-20T22:04:04Z","ServerKey":"us63"},{"ID":4843,"VillageID":8355,"NewOwnerID":848954607,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":147,"CreatedAt":"2023-02-20T22:05:58Z","ServerKey":"us63"},{"ID":4844,"VillageID":8764,"NewOwnerID":848940894,"NewTribeID":11,"OldOwnerID":848930230,"OldTribeID":209,"Points":5939,"CreatedAt":"2023-02-20T22:08:06Z","ServerKey":"us63"},{"ID":4845,"VillageID":2172,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":487,"CreatedAt":"2023-02-20T22:08:28Z","ServerKey":"us63"},{"ID":4846,"VillageID":3423,"NewOwnerID":264792,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":360,"CreatedAt":"2023-02-20T22:12:46Z","ServerKey":"us63"},{"ID":4847,"VillageID":3121,"NewOwnerID":848942432,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":364,"CreatedAt":"2023-02-20T22:16:04Z","ServerKey":"us63"},{"ID":4848,"VillageID":2949,"NewOwnerID":848951176,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":303,"CreatedAt":"2023-02-20T22:21:32Z","ServerKey":"us63"},{"ID":4849,"VillageID":1814,"NewOwnerID":344518,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":443,"CreatedAt":"2023-02-20T22:39:02Z","ServerKey":"us63"},{"ID":4850,"VillageID":3558,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":707957,"OldTribeID":66,"Points":4732,"CreatedAt":"2023-02-20T22:42:51Z","ServerKey":"us63"},{"ID":4851,"VillageID":3558,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":790183,"OldTribeID":138,"Points":4732,"CreatedAt":"2023-02-20T22:42:51Z","ServerKey":"us63"},{"ID":4852,"VillageID":4367,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":7536,"OldTribeID":119,"Points":768,"CreatedAt":"2023-02-20T22:45:13Z","ServerKey":"us63"},{"ID":4853,"VillageID":4241,"NewOwnerID":848954776,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-20T22:46:03Z","ServerKey":"us63"},{"ID":4854,"VillageID":1737,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":442,"CreatedAt":"2023-02-20T22:49:10Z","ServerKey":"us63"},{"ID":4855,"VillageID":6621,"NewOwnerID":848954201,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":233,"CreatedAt":"2023-02-20T22:49:25Z","ServerKey":"us63"},{"ID":4856,"VillageID":7312,"NewOwnerID":693887,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":177,"CreatedAt":"2023-02-20T23:02:59Z","ServerKey":"us63"},{"ID":4857,"VillageID":1369,"NewOwnerID":848948640,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":554,"CreatedAt":"2023-02-20T23:13:22Z","ServerKey":"us63"},{"ID":4858,"VillageID":1536,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":365,"CreatedAt":"2023-02-20T23:15:34Z","ServerKey":"us63"},{"ID":4859,"VillageID":8686,"NewOwnerID":1582,"NewTribeID":61,"OldOwnerID":0,"OldTribeID":0,"Points":124,"CreatedAt":"2023-02-20T23:20:31Z","ServerKey":"us63"},{"ID":4860,"VillageID":4525,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":361,"CreatedAt":"2023-02-20T23:24:20Z","ServerKey":"us63"},{"ID":4861,"VillageID":4903,"NewOwnerID":848954987,"NewTribeID":22,"OldOwnerID":0,"OldTribeID":0,"Points":318,"CreatedAt":"2023-02-20T23:27:22Z","ServerKey":"us63"},{"ID":4862,"VillageID":2608,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-20T23:49:50Z","ServerKey":"us63"},{"ID":4863,"VillageID":625,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":447,"CreatedAt":"2023-02-20T23:51:09Z","ServerKey":"us63"},{"ID":4864,"VillageID":394,"NewOwnerID":848952932,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":459,"CreatedAt":"2023-02-20T23:56:14Z","ServerKey":"us63"},{"ID":4865,"VillageID":113,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":374,"CreatedAt":"2023-02-20T23:56:58Z","ServerKey":"us63"},{"ID":4866,"VillageID":5301,"NewOwnerID":848935026,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-21T00:02:23Z","ServerKey":"us63"},{"ID":4867,"VillageID":8325,"NewOwnerID":848955490,"NewTribeID":209,"OldOwnerID":0,"OldTribeID":0,"Points":169,"CreatedAt":"2023-02-21T00:06:44Z","ServerKey":"us63"},{"ID":4868,"VillageID":3957,"NewOwnerID":415671,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":241,"CreatedAt":"2023-02-21T00:09:11Z","ServerKey":"us63"},{"ID":4869,"VillageID":1973,"NewOwnerID":213,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":444,"CreatedAt":"2023-02-21T00:09:45Z","ServerKey":"us63"},{"ID":4870,"VillageID":3826,"NewOwnerID":848953965,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-21T00:15:22Z","ServerKey":"us63"},{"ID":4871,"VillageID":2243,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":394,"CreatedAt":"2023-02-21T00:15:43Z","ServerKey":"us63"},{"ID":4872,"VillageID":8718,"NewOwnerID":781432,"NewTribeID":198,"OldOwnerID":0,"OldTribeID":0,"Points":105,"CreatedAt":"2023-02-21T00:16:21Z","ServerKey":"us63"},{"ID":4873,"VillageID":3808,"NewOwnerID":580805,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-21T00:16:39Z","ServerKey":"us63"},{"ID":4874,"VillageID":960,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":299,"CreatedAt":"2023-02-21T00:18:21Z","ServerKey":"us63"},{"ID":4875,"VillageID":866,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":345,"CreatedAt":"2023-02-21T00:18:36Z","ServerKey":"us63"},{"ID":4876,"VillageID":1888,"NewOwnerID":792025,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":672,"CreatedAt":"2023-02-21T00:25:27Z","ServerKey":"us63"},{"ID":4877,"VillageID":2079,"NewOwnerID":741494,"NewTribeID":2,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-21T00:34:04Z","ServerKey":"us63"},{"ID":4878,"VillageID":537,"NewOwnerID":848943607,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":222,"CreatedAt":"2023-02-21T00:41:19Z","ServerKey":"us63"},{"ID":4879,"VillageID":6293,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":351,"CreatedAt":"2023-02-21T00:56:43Z","ServerKey":"us63"},{"ID":4880,"VillageID":3686,"NewOwnerID":848952556,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":389,"CreatedAt":"2023-02-21T00:59:32Z","ServerKey":"us63"},{"ID":4881,"VillageID":2475,"NewOwnerID":785871,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":392,"CreatedAt":"2023-02-21T01:01:38Z","ServerKey":"us63"},{"ID":4882,"VillageID":5162,"NewOwnerID":848952288,"NewTribeID":86,"OldOwnerID":0,"OldTribeID":0,"Points":375,"CreatedAt":"2023-02-21T01:02:25Z","ServerKey":"us63"},{"ID":4883,"VillageID":902,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-21T01:17:34Z","ServerKey":"us63"},{"ID":4884,"VillageID":6626,"NewOwnerID":848945233,"NewTribeID":91,"OldOwnerID":848955166,"OldTribeID":0,"Points":1059,"CreatedAt":"2023-02-21T01:17:54Z","ServerKey":"us63"},{"ID":4885,"VillageID":5175,"NewOwnerID":848953068,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":271,"CreatedAt":"2023-02-21T01:20:53Z","ServerKey":"us63"},{"ID":4886,"VillageID":2712,"NewOwnerID":735108,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":426,"CreatedAt":"2023-02-21T01:24:46Z","ServerKey":"us63"},{"ID":4887,"VillageID":4009,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":281,"CreatedAt":"2023-02-21T01:30:43Z","ServerKey":"us63"},{"ID":4888,"VillageID":1356,"NewOwnerID":729178,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":312,"CreatedAt":"2023-02-21T01:32:09Z","ServerKey":"us63"},{"ID":4889,"VillageID":4079,"NewOwnerID":375649,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":331,"CreatedAt":"2023-02-21T01:35:02Z","ServerKey":"us63"},{"ID":4890,"VillageID":2043,"NewOwnerID":848941404,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":269,"CreatedAt":"2023-02-21T01:35:59Z","ServerKey":"us63"},{"ID":4891,"VillageID":2271,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":451,"CreatedAt":"2023-02-21T01:54:17Z","ServerKey":"us63"},{"ID":4892,"VillageID":66,"NewOwnerID":848941909,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":1772,"CreatedAt":"2023-02-21T01:56:51Z","ServerKey":"us63"},{"ID":4893,"VillageID":1474,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":0,"OldTribeID":0,"Points":380,"CreatedAt":"2023-02-21T02:12:14Z","ServerKey":"us63"},{"ID":4894,"VillageID":2874,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":400,"CreatedAt":"2023-02-21T02:21:28Z","ServerKey":"us63"},{"ID":4895,"VillageID":3438,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":324,"CreatedAt":"2023-02-21T02:24:19Z","ServerKey":"us63"},{"ID":4896,"VillageID":5940,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":174,"CreatedAt":"2023-02-21T02:33:00Z","ServerKey":"us63"},{"ID":4897,"VillageID":5940,"NewOwnerID":171766,"NewTribeID":33,"OldOwnerID":171766,"OldTribeID":33,"Points":174,"CreatedAt":"2023-02-21T02:33:00Z","ServerKey":"us63"},{"ID":4898,"VillageID":381,"NewOwnerID":848936921,"NewTribeID":6,"OldOwnerID":587894,"OldTribeID":48,"Points":4641,"CreatedAt":"2023-02-21T02:50:24Z","ServerKey":"us63"},{"ID":4899,"VillageID":25,"NewOwnerID":151032,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":412,"CreatedAt":"2023-02-21T02:50:52Z","ServerKey":"us63"},{"ID":4900,"VillageID":7015,"NewOwnerID":848932635,"NewTribeID":198,"OldOwnerID":334822,"OldTribeID":0,"Points":3458,"CreatedAt":"2023-02-21T02:51:34Z","ServerKey":"us63"},{"ID":4901,"VillageID":2938,"NewOwnerID":761474,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-21T02:52:55Z","ServerKey":"us63"},{"ID":4902,"VillageID":4066,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":330,"CreatedAt":"2023-02-21T03:10:21Z","ServerKey":"us63"},{"ID":4903,"VillageID":2447,"NewOwnerID":848954361,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":456,"CreatedAt":"2023-02-21T03:18:58Z","ServerKey":"us63"},{"ID":4904,"VillageID":2777,"NewOwnerID":796360,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":370,"CreatedAt":"2023-02-21T03:24:15Z","ServerKey":"us63"},{"ID":4905,"VillageID":3035,"NewOwnerID":848954604,"NewTribeID":0,"OldOwnerID":0,"OldTribeID":0,"Points":382,"CreatedAt":"2023-02-21T03:24:50Z","ServerKey":"us63"},{"ID":4906,"VillageID":2002,"NewOwnerID":848943092,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":328,"CreatedAt":"2023-02-21T03:34:25Z","ServerKey":"us63"},{"ID":4907,"VillageID":5940,"NewOwnerID":742669,"NewTribeID":91,"OldOwnerID":171766,"OldTribeID":33,"Points":174,"CreatedAt":"2023-02-21T03:34:44Z","ServerKey":"us63"},{"ID":4908,"VillageID":2832,"NewOwnerID":587894,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":435,"CreatedAt":"2023-02-21T03:45:08Z","ServerKey":"us63"},{"ID":4909,"VillageID":6009,"NewOwnerID":848954609,"NewTribeID":50,"OldOwnerID":0,"OldTribeID":0,"Points":267,"CreatedAt":"2023-02-21T03:46:01Z","ServerKey":"us63"},{"ID":4910,"VillageID":3120,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":353,"CreatedAt":"2023-02-21T03:48:32Z","ServerKey":"us63"},{"ID":4911,"VillageID":6392,"NewOwnerID":848955105,"NewTribeID":185,"OldOwnerID":0,"OldTribeID":0,"Points":212,"CreatedAt":"2023-02-21T04:00:57Z","ServerKey":"us63"},{"ID":4912,"VillageID":6025,"NewOwnerID":848954655,"NewTribeID":35,"OldOwnerID":0,"OldTribeID":0,"Points":236,"CreatedAt":"2023-02-21T04:12:40Z","ServerKey":"us63"},{"ID":4913,"VillageID":7066,"NewOwnerID":410165,"NewTribeID":85,"OldOwnerID":0,"OldTribeID":0,"Points":919,"CreatedAt":"2023-02-21T04:16:11Z","ServerKey":"us63"},{"ID":4914,"VillageID":869,"NewOwnerID":398664,"NewTribeID":33,"OldOwnerID":0,"OldTribeID":0,"Points":395,"CreatedAt":"2023-02-21T04:26:19Z","ServerKey":"us63"},{"ID":4915,"VillageID":2201,"NewOwnerID":13512,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":470,"CreatedAt":"2023-02-21T04:37:07Z","ServerKey":"us63"},{"ID":4916,"VillageID":5402,"NewOwnerID":848943381,"NewTribeID":97,"OldOwnerID":0,"OldTribeID":0,"Points":309,"CreatedAt":"2023-02-21T04:38:37Z","ServerKey":"us63"},{"ID":4917,"VillageID":9629,"NewOwnerID":284001,"NewTribeID":216,"OldOwnerID":848955431,"OldTribeID":0,"Points":658,"CreatedAt":"2023-02-21T04:39:29Z","ServerKey":"us63"},{"ID":4918,"VillageID":4344,"NewOwnerID":848954820,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":389,"CreatedAt":"2023-02-21T04:42:22Z","ServerKey":"us63"},{"ID":4919,"VillageID":4352,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":483,"CreatedAt":"2023-02-21T04:49:58Z","ServerKey":"us63"},{"ID":4920,"VillageID":3727,"NewOwnerID":848894236,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":356,"CreatedAt":"2023-02-21T04:56:38Z","ServerKey":"us63"},{"ID":4921,"VillageID":4093,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848941569,"OldTribeID":219,"Points":9625,"CreatedAt":"2023-02-21T05:00:00Z","ServerKey":"us63"},{"ID":4922,"VillageID":3824,"NewOwnerID":848949948,"NewTribeID":85,"OldOwnerID":848941569,"OldTribeID":219,"Points":5823,"CreatedAt":"2023-02-21T05:00:00Z","ServerKey":"us63"},{"ID":4923,"VillageID":6603,"NewOwnerID":848884869,"NewTribeID":209,"OldOwnerID":848943156,"OldTribeID":0,"Points":238,"CreatedAt":"2023-02-21T05:00:19Z","ServerKey":"us63"},{"ID":4924,"VillageID":3799,"NewOwnerID":262676,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":337,"CreatedAt":"2023-02-21T05:03:41Z","ServerKey":"us63"},{"ID":4925,"VillageID":4452,"NewOwnerID":790183,"NewTribeID":138,"OldOwnerID":7536,"OldTribeID":119,"Points":4151,"CreatedAt":"2023-02-21T05:16:14Z","ServerKey":"us63"},{"ID":4926,"VillageID":8044,"NewOwnerID":739630,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":110,"CreatedAt":"2023-02-21T05:21:00Z","ServerKey":"us63"},{"ID":4927,"VillageID":1352,"NewOwnerID":848947314,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":686,"CreatedAt":"2023-02-21T05:30:08Z","ServerKey":"us63"},{"ID":4928,"VillageID":9171,"NewOwnerID":848934867,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":115,"CreatedAt":"2023-02-21T05:32:19Z","ServerKey":"us63"},{"ID":4929,"VillageID":1483,"NewOwnerID":276237,"NewTribeID":48,"OldOwnerID":0,"OldTribeID":0,"Points":306,"CreatedAt":"2023-02-21T05:33:45Z","ServerKey":"us63"},{"ID":4930,"VillageID":7287,"NewOwnerID":776810,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":137,"CreatedAt":"2023-02-21T05:36:14Z","ServerKey":"us63"},{"ID":4931,"VillageID":2946,"NewOwnerID":848947757,"NewTribeID":227,"OldOwnerID":0,"OldTribeID":0,"Points":437,"CreatedAt":"2023-02-21T05:40:00Z","ServerKey":"us63"},{"ID":4932,"VillageID":6397,"NewOwnerID":746070,"NewTribeID":74,"OldOwnerID":0,"OldTribeID":0,"Points":202,"CreatedAt":"2023-02-21T05:47:04Z","ServerKey":"us63"},{"ID":4933,"VillageID":9158,"NewOwnerID":848955563,"NewTribeID":185,"OldOwnerID":848955598,"OldTribeID":0,"Points":778,"CreatedAt":"2023-02-21T05:53:56Z","ServerKey":"us63"},{"ID":4935,"VillageID":8655,"NewOwnerID":282832,"NewTribeID":167,"OldOwnerID":0,"OldTribeID":0,"Points":111,"CreatedAt":"2023-02-21T05:59:44Z","ServerKey":"us63"},{"ID":4936,"VillageID":8610,"NewOwnerID":750685,"NewTribeID":76,"OldOwnerID":0,"OldTribeID":0,"Points":103,"CreatedAt":"2023-02-21T06:09:41Z","ServerKey":"us63"},{"ID":4937,"VillageID":1111,"NewOwnerID":848927565,"NewTribeID":138,"OldOwnerID":0,"OldTribeID":0,"Points":964,"CreatedAt":"2023-02-21T06:12:15Z","ServerKey":"us63"},{"ID":4938,"VillageID":5288,"NewOwnerID":848914361,"NewTribeID":20,"OldOwnerID":0,"OldTribeID":0,"Points":273,"CreatedAt":"2023-02-21T06:21:26Z","ServerKey":"us63"}] \ No newline at end of file diff --git a/internal/service/testdata/syncennoblements/stage2/us63.tribalwars.us/interface.phpget_conquer_extended1676958836 b/internal/service/testdata/syncennoblements/stage2/us63.tribalwars.us/interface.phpget_conquer_extended1676958836 new file mode 100644 index 0000000..32165ff --- /dev/null +++ b/internal/service/testdata/syncennoblements/stage2/us63.tribalwars.us/interface.phpget_conquer_extended1676958836 @@ -0,0 +1,5 @@ +9158,1676958836,848955563,848955598,0,185,778 +8655,1676959184,282832,0,0,167,111 +8610,1676959781,750685,0,0,76,103 +1111,1676959935,848927565,0,0,138,964 +5288,1676960486,848914361,0,0,20,273 diff --git a/internal/watermill/watermillamqptest/watermillamqptest.go b/internal/watermill/watermillamqptest/watermillamqptest.go new file mode 100644 index 0000000..e6fd13c --- /dev/null +++ b/internal/watermill/watermillamqptest/watermillamqptest.go @@ -0,0 +1,205 @@ +package watermillamqptest + +import ( + "fmt" + "net" + "net/url" + "os" + "time" + + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermilltest" + "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-amqp/v2/pkg/amqp" + "github.com/cenkalti/backoff/v4" + "github.com/ory/dockertest/v3" + "github.com/ory/dockertest/v3/docker" + "github.com/stretchr/testify/require" +) + +type RabbitMQ struct { + connectionString *url.URL + resource *dockertest.Resource +} + +type rabbitMQConfig struct { + repo string + tag string + ttl uint +} + +type RabbitMQOption func(cfg *rabbitMQConfig) + +const rabbitMQDefaultTTL = 60 + +func newRabbitMQConfig(opts ...RabbitMQOption) *rabbitMQConfig { + cfg := &rabbitMQConfig{ + repo: "rabbitmq", + tag: "3.12.10-alpine", + ttl: rabbitMQDefaultTTL, + } + + for _, opt := range opts { + opt(cfg) + } + + return cfg +} + +func WithRabbitMQTTL(ttlSeconds uint) RabbitMQOption { + return func(cfg *rabbitMQConfig) { + cfg.ttl = ttlSeconds + } +} + +func WithRabbitMQImage(image string) RabbitMQOption { + return func(cfg *rabbitMQConfig) { + cfg.repo, cfg.tag = docker.ParseRepositoryTag(image) + } +} + +// NewRabbitMQ constructs a new RabbitMQ resource. If the env variable 'TESTS_RABBITMQ_CONNECTION_STRING' is set, +// this function doesn't run a new Docker container and uses the value of this variable as a connection string, +// otherwise this function runs a new RabbitMQ instance in a Docker container. +// This function is intended for use in TestMain. +func NewRabbitMQ(pool *dockertest.Pool, opts ...RabbitMQOption) (*RabbitMQ, error) { + cfg := newRabbitMQConfig(opts...) + + if connString := os.Getenv("TESTS_RABBITMQ_CONNECTION_STRING"); connString != "" { + u, err := url.ParseRequestURI(connString) + if err != nil { + return nil, err + } + + return &RabbitMQ{ + connectionString: u, + }, nil + } + + u := &url.URL{ + Scheme: "amqp", + User: url.UserPassword("rmq", "rmq"), + Path: "/", + } + + pw, _ := u.User.Password() + + resource, err := pool.RunWithOptions(&dockertest.RunOptions{ + Repository: cfg.repo, + Tag: cfg.tag, + Env: []string{ + fmt.Sprintf("RABBITMQ_DEFAULT_USER=%s", u.User.Username()), + fmt.Sprintf("RABBITMQ_DEFAULT_PASS=%s", pw), + }, + }, func(config *docker.HostConfig) { + config.AutoRemove = true + config.RestartPolicy = docker.RestartPolicy{ + Name: "no", + } + }) + if err != nil { + return nil, fmt.Errorf("couldn't run rabbitmq: %w", err) + } + + if err = resource.Expire(cfg.ttl); err != nil { + return nil, err + } + + u.Host, err = getHostPort(resource, "5672/tcp") + if err != nil { + return nil, err + } + + return &RabbitMQ{ + connectionString: u, + resource: resource, + }, nil +} + +const ( + rabbitMQOpenConnBackOffMaxInterval = 5 * time.Second + rabbitMQOpenConnBackOffMaxElapsedTime = 30 * time.Second +) + +func (rmq *RabbitMQ) NewConnection(tb watermilltest.TestingTB) *amqp.ConnectionWrapper { + tb.Helper() + + require.NotNil(tb, rmq, "rabbit mq resource not property initialized") + require.NotNil(tb, rmq.connectionString, "rabbit mq resource not properly initialized") + + connConfig := amqp.ConnectionConfig{AmqpURI: rmq.connectionString.String()} + + bo := backoff.NewExponentialBackOff() + bo.MaxInterval = rabbitMQOpenConnBackOffMaxInterval + bo.MaxElapsedTime = rabbitMQOpenConnBackOffMaxElapsedTime + require.NoError(tb, backoff.Retry(func() error { + conn, err := amqp.NewConnection(connConfig, watermill.NopLogger{}) + if err != nil { + return err + } + _ = conn.Close() + return nil + }, bo)) + + conn, err := amqp.NewConnection(connConfig, watermill.NopLogger{}) + require.NoError(tb, err) + tb.Cleanup(func() { + _ = conn.Close() + }) + + return conn +} + +func (rmq *RabbitMQ) Close() error { + if rmq != nil && rmq.resource != nil { + if err := rmq.resource.Close(); err != nil { + return err + } + } + + return nil +} + +type TopicNameGenerator func(topic string) string + +func NewPubSub( + tb watermilltest.TestingTB, + conn *amqp.ConnectionWrapper, + queueNameGenerator amqp.QueueNameGenerator, + exchangeAndRoutingKeyNameGenerator TopicNameGenerator, +) (*amqp.Publisher, *amqp.Subscriber) { + tb.Helper() + + cfg := amqp.NewNonDurablePubSubConfig("", queueNameGenerator) + cfg.Consume.NoRequeueOnNack = true + cfg.Consume.Qos.PrefetchCount = 1 + cfg.Exchange.GenerateName = exchangeAndRoutingKeyNameGenerator + cfg.QueueBind.GenerateRoutingKey = exchangeAndRoutingKeyNameGenerator + + publisher, err := amqp.NewPublisherWithConnection(cfg, watermill.NopLogger{}, conn) + require.NoError(tb, err) + tb.Cleanup(func() { + _ = publisher.Close() + }) + + subscriber, err := amqp.NewSubscriberWithConnection(cfg, watermill.NopLogger{}, conn) + require.NoError(tb, err) + tb.Cleanup(func() { + _ = subscriber.Close() + }) + + return publisher, subscriber +} + +func getHostPort(resource *dockertest.Resource, id string) (string, error) { + dockerURL := os.Getenv("DOCKER_HOST") + if dockerURL == "" { + return resource.GetHostPort(id), nil + } + + u, err := url.Parse(dockerURL) + if err != nil { + return "", err + } + + return net.JoinHostPort(u.Hostname(), resource.GetPort(id)), nil +} diff --git a/internal/watermillmsg/ennoblement.go b/internal/watermill/watermillmsg/ennoblement.go similarity index 100% rename from internal/watermillmsg/ennoblement.go rename to internal/watermill/watermillmsg/ennoblement.go diff --git a/internal/watermillmsg/marshaler.go b/internal/watermill/watermillmsg/marshaler.go similarity index 100% rename from internal/watermillmsg/marshaler.go rename to internal/watermill/watermillmsg/marshaler.go diff --git a/internal/watermillmsg/marshaler_json.go b/internal/watermill/watermillmsg/marshaler_json.go similarity index 100% rename from internal/watermillmsg/marshaler_json.go rename to internal/watermill/watermillmsg/marshaler_json.go diff --git a/internal/watermillmsg/marshaler_json_test.go b/internal/watermill/watermillmsg/marshaler_json_test.go similarity index 92% rename from internal/watermillmsg/marshaler_json_test.go rename to internal/watermill/watermillmsg/marshaler_json_test.go index efeb432..f208592 100644 --- a/internal/watermillmsg/marshaler_json_test.go +++ b/internal/watermill/watermillmsg/marshaler_json_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "gitea.dwysokinski.me/twhelp/corev3/internal/watermillmsg" + "gitea.dwysokinski.me/twhelp/corev3/internal/watermill/watermillmsg" "github.com/ThreeDotsLabs/watermill" "github.com/google/uuid" "github.com/stretchr/testify/assert" diff --git a/internal/watermillmsg/player.go b/internal/watermill/watermillmsg/player.go similarity index 100% rename from internal/watermillmsg/player.go rename to internal/watermill/watermillmsg/player.go diff --git a/internal/watermillmsg/server.go b/internal/watermill/watermillmsg/server.go similarity index 100% rename from internal/watermillmsg/server.go rename to internal/watermill/watermillmsg/server.go diff --git a/internal/watermillmsg/tribe.go b/internal/watermill/watermillmsg/tribe.go similarity index 100% rename from internal/watermillmsg/tribe.go rename to internal/watermill/watermillmsg/tribe.go diff --git a/internal/watermillmsg/village.go b/internal/watermill/watermillmsg/village.go similarity index 100% rename from internal/watermillmsg/village.go rename to internal/watermill/watermillmsg/village.go diff --git a/internal/watermill/watermilltest/testing_tb.go b/internal/watermill/watermilltest/testing_tb.go new file mode 100644 index 0000000..1e6b97d --- /dev/null +++ b/internal/watermill/watermilltest/testing_tb.go @@ -0,0 +1,9 @@ +package watermilltest + +// TestingTB is a subset of the API provided by both *testing.T and *testing.B. +type TestingTB interface { + Helper() + Errorf(format string, args ...interface{}) + FailNow() + Cleanup(f func()) +} diff --git a/internal/watermill/watermilltest/watermilltest.go b/internal/watermill/watermilltest/watermilltest.go new file mode 100644 index 0000000..01d3e96 --- /dev/null +++ b/internal/watermill/watermilltest/watermilltest.go @@ -0,0 +1,84 @@ +package watermilltest + +import ( + "context" + "time" + + "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill/message" + "github.com/ThreeDotsLabs/watermill/pubsub/gochannel" + "github.com/stretchr/testify/require" +) + +type Registerer interface { + Register(router *message.Router) +} + +func RunRouter(tb TestingTB, rs ...Registerer) *message.Router { + tb.Helper() + return RunRouterWithContext(tb, context.Background(), rs...) +} + +const routerCloseTimeout = 10 * time.Second + +//nolint:revive +func RunRouterWithContext(tb TestingTB, ctx context.Context, rs ...Registerer) *message.Router { + tb.Helper() + + router, err := message.NewRouter(message.RouterConfig{CloseTimeout: routerCloseTimeout}, watermill.NopLogger{}) + require.NoError(tb, err) + tb.Cleanup(func() { + _ = router.Close() + }) + + for _, r := range rs { + r.Register(router) + } + + go func() { + require.NoError(tb, router.Run(ctx)) + }() + <-router.Running() + + return router +} + +type MiddlewareRegisterer struct { + H message.HandlerMiddleware +} + +var _ Registerer = MiddlewareRegisterer{} + +func (m MiddlewareRegisterer) Register(router *message.Router) { + router.AddMiddleware(m.H) +} + +func NewWaitForHandlerMiddleware(handlerName string) (MiddlewareRegisterer, <-chan struct{}) { + ch := make(chan struct{}) + return MiddlewareRegisterer{ + H: func(h message.HandlerFunc) message.HandlerFunc { + return func(msg *message.Message) ([]*message.Message, error) { + if message.HandlerNameFromCtx(msg.Context()) != handlerName { + return h(msg) + } + + result, err := h(msg) + if len(result) == 0 && err == nil { + close(ch) + } + return result, err + } + }, + }, ch +} + +func NewPubSub(tb TestingTB) *gochannel.GoChannel { + tb.Helper() + + pubSub := gochannel.NewGoChannel(gochannel.Config{Persistent: true}, watermill.NopLogger{}) + tb.Cleanup(func() { + _ = pubSub.Close() + }) + + return pubSub +}